diff --git a/.gitattributes b/.gitattributes index 2bbba377bbc55c8083a5802ac1aaf6697aa1e063..05472302426c50d5fad6c4c99969e5ec780a55e6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2203,3 +2203,4 @@ output/preprocess/Parkinsons_Disease/gene_data/GSE101534.csv filter=lfs diff=lfs output/preprocess/Chronic_kidney_disease/GSE66494.csv filter=lfs diff=lfs merge=lfs -text output/preprocess/Chronic_kidney_disease/gene_data/GSE180393.csv filter=lfs diff=lfs merge=lfs -text output/preprocess/Bipolar_disorder/GSE62191.csv filter=lfs diff=lfs merge=lfs -text +output/preprocess/Eczema/GSE123088.csv filter=lfs diff=lfs merge=lfs -text diff --git a/output/preprocess/Eczema/GSE123088.csv b/output/preprocess/Eczema/GSE123088.csv new file mode 100644 index 0000000000000000000000000000000000000000..ff89c8b8427a1d69e30c7feaa7d55672dc876189 --- /dev/null +++ b/output/preprocess/Eczema/GSE123088.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606dd189b14daca7fb28c9c93944796970a8fede139c569197e905f1d5d0bce3 +size 55765473 diff --git a/output/preprocess/Epilepsy/code/GSE65106.py b/output/preprocess/Epilepsy/code/GSE65106.py new file mode 100644 index 0000000000000000000000000000000000000000..9a094b87b1e0d2476c65c1a799ef29c721f31a5c --- /dev/null +++ b/output/preprocess/Epilepsy/code/GSE65106.py @@ -0,0 +1,216 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Epilepsy" +cohort = "GSE65106" + +# Input paths +in_trait_dir = "../DATA/GEO/Epilepsy" +in_cohort_dir = "../DATA/GEO/Epilepsy/GSE65106" + +# Output paths +out_data_file = "./output/z3/preprocess/Epilepsy/GSE65106.csv" +out_gene_data_file = "./output/z3/preprocess/Epilepsy/gene_data/GSE65106.csv" +out_clinical_data_file = "./output/z3/preprocess/Epilepsy/clinical_data/GSE65106.csv" +json_path = "./output/z3/preprocess/Epilepsy/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +# Determine data availability based on provided background and characteristics +is_gene_available = True # Whole-genome microarray gene expression profiling +trait_row = None # Trait of interest is Epilepsy; this dataset is ASD and excluded seizure disorders +age_row = 3 # 'donor age' +gender_row = 4 # 'donor sex' + +# Conversion functions +def _extract_value(x): + if x is None: + return None + try: + s = str(x) + except Exception: + return None + if ':' in s: + s = s.split(':', 1)[1] + return s.strip() + +def convert_trait(x): + # Binary: 1 = Epilepsy, 0 = Non-epilepsy + v = _extract_value(x) + if v is None or v == '': + return None + v_low = v.lower() + # Heuristics for epilepsy mentions + epilepsy_terms = ['epilepsy', 'seizure', 'temporal lobe epilepsy', 'tle', 'absence epilepsy', 'partial epilepsy'] + if any(term in v_low for term in epilepsy_terms): + return 1 + # If explicitly normal/control/ASD/WT/etc., treat as non-epilepsy + non_epilepsy_terms = ['normal', 'control', 'wt', 'asd', 'autism'] + if any(term in v_low for term in non_epilepsy_terms): + return 0 + return None + +def convert_age(x): + # Continuous age in years; non-numeric (e.g., embryonic) -> None + v = _extract_value(x) + if v is None or v == '': + return None + v_low = v.lower() + if 'embryonic' in v_low or 'fetal' in v_low: + return None + try: + return float(v) + except Exception: + # try to extract leading numeric + import re + m = re.search(r'[-+]?\d*\.?\d+', v) + if m: + try: + return float(m.group(0)) + except Exception: + return None + return None + +def convert_gender(x): + # Binary: Female=0, Male=1 + v = _extract_value(x) + if v is None or v == '': + return None + v_low = v.lower() + if v_low.startswith('male'): + return 1 + if v_low.startswith('female'): + return 0 + return None + +# Initial filtering and save metadata +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# Clinical feature extraction (skip if trait not available) +if trait_row is not None: + selected_clinical = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + clinical_preview = preview_df(selected_clinical, n=5) + # Save clinical features + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical.to_csv(out_clinical_data_file, index=True) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# Identifiers like '7892501' are Affymetrix probe set IDs (numeric), not HGNC gene symbols. +requires_gene_mapping = True +print(f"requires_gene_mapping = ({requires_gene_mapping})") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify appropriate columns for probe IDs and gene symbols in the annotation +probe_col = 'ID' +# Prefer 'gene_assignment' for symbols; fall back to 'mrna_assignment' if needed +gene_symbol_col = 'gene_assignment' if 'gene_assignment' in gene_annotation.columns else ( + 'mrna_assignment' if 'mrna_assignment' in gene_annotation.columns else None +) + +if gene_symbol_col is None: + raise ValueError("No suitable gene symbol column found in annotation (expected 'gene_assignment' or 'mrna_assignment').") + +# Build mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_symbol_col) + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +# 1. Normalize gene symbols and save gene-level data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2-6. Linkage and downstream steps only if trait data is available; otherwise, record metadata and stop. +is_trait_available = (trait_row is not None) + +if is_trait_available and 'selected_clinical' in globals(): + # Link clinical and genetic data + linked_data = geo_link_clinical_genetic_data(selected_clinical, normalized_gene_data) + + # Handle missing values + linked_data = handle_missing_values(linked_data, trait) + + # Bias check and remove biased demographic features + is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + + # Final validation and save metadata + is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: Clinical features linked and processed." + ) + + # Save linked data only if usable + if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) +else: + # Trait not available: perform final validation only to record metadata; do not link or save linked data + _ = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=False, + is_biased=False, + df=normalized_gene_data.T, + note="INFO: Trait 'Epilepsy' is not recorded in this ASD cohort; clinical linking skipped." + ) \ No newline at end of file diff --git a/output/preprocess/Epilepsy/code/GSE74571.py b/output/preprocess/Epilepsy/code/GSE74571.py new file mode 100644 index 0000000000000000000000000000000000000000..c32ca0042b9826f7589216afdbd228333e17af5b --- /dev/null +++ b/output/preprocess/Epilepsy/code/GSE74571.py @@ -0,0 +1,123 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Epilepsy" +cohort = "GSE74571" + +# Input paths +in_trait_dir = "../DATA/GEO/Epilepsy" +in_cohort_dir = "../DATA/GEO/Epilepsy/GSE74571" + +# Output paths +out_data_file = "./output/z3/preprocess/Epilepsy/GSE74571.csv" +out_gene_data_file = "./output/z3/preprocess/Epilepsy/gene_data/GSE74571.csv" +out_clinical_data_file = "./output/z3/preprocess/Epilepsy/clinical_data/GSE74571.csv" +json_path = "./output/z3/preprocess/Epilepsy/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import re + +# 1) Gene Expression Data Availability +is_gene_available = True # Based on series summary indicating gene expression profiling on GSCs + +# 2) Variable Availability and Data Type Conversion + +# From the provided Sample Characteristics Dictionary: +# {0: ['cell/tissue type: ...'], 1: ['culture type: ...']} +# There is no explicit or inferable Epilepsy status, age, or gender information. + +trait_row = None +age_row = None +gender_row = None + +# Conversion helpers +def _after_colon(value: str) -> str: + if value is None: + return '' + parts = str(value).split(':', 1) + return parts[1].strip().lower() if len(parts) > 1 else str(value).strip().lower() + +def convert_trait(value): + # Binary: 1 = Epilepsy case, 0 = non-epilepsy control + v = _after_colon(value) + if not v: + return None + # Positive epilepsy indicators + if any(term in v for term in ['epilepsy', 'epileptic', 'seizure', 'tle', 'temporal lobe epilepsy']): + return 1 + # Clear control indicators + if any(term in v for term in ['control', 'healthy', 'non-epileptic', 'non epileptic', 'no epilepsy']): + return 0 + # Ambiguous disease terms (e.g., GBM) are not epilepsy; avoid forcing to 0 without context + return None + +def convert_age(value): + # Continuous: extract numeric age in years if present + v = _after_colon(value) + if not v: + return None + m = re.search(r'(\d+(\.\d+)?)', v) + if m: + try: + return float(m.group(1)) + except Exception: + return None + return None + +def convert_gender(value): + # Binary: female -> 0, male -> 1 + v = _after_colon(value) + if not v: + return None + if v in ['female', 'f', 'woman', 'girl', 'wmn']: + return 0 + if v in ['male', 'm', 'man', 'boy']: + return 1 + return None + +# 3) Save Metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (skip because trait_row is None) +# If in future data becomes available: +# if trait_row is not None: +# selected = geo_select_clinical_features( +# clinical_df=clinical_data, +# trait=trait, +# trait_row=trait_row, +# convert_trait=convert_trait, +# age_row=age_row, +# convert_age=convert_age, +# gender_row=gender_row, +# convert_gender=convert_gender +# ) +# preview = preview_df(selected, n=5) +# selected.to_csv(out_clinical_data_file, index=True) \ No newline at end of file diff --git a/output/preprocess/Epilepsy/code/TCGA.py b/output/preprocess/Epilepsy/code/TCGA.py new file mode 100644 index 0000000000000000000000000000000000000000..710ee058227d3b84c7383b459ebb4589cd3570cf --- /dev/null +++ b/output/preprocess/Epilepsy/code/TCGA.py @@ -0,0 +1,53 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Epilepsy" + +# Input paths +tcga_root_dir = "../DATA/TCGA" + +# Output paths +out_data_file = "./output/z3/preprocess/Epilepsy/TCGA.csv" +out_gene_data_file = "./output/z3/preprocess/Epilepsy/gene_data/TCGA.csv" +out_clinical_data_file = "./output/z3/preprocess/Epilepsy/clinical_data/TCGA.csv" +json_path = "./output/z3/preprocess/Epilepsy/cohort_info.json" + + +# Step 1: Initial Data Loading +import os + +# Step 1: Select the most relevant TCGA cohort directory for the trait "Epilepsy" +synonyms = ["epilepsy", "seizure", "seizures", "ictal", "epileptic"] +all_dirs = [d for d in os.listdir(tcga_root_dir) if os.path.isdir(os.path.join(tcga_root_dir, d))] +matched_dirs = [d for d in all_dirs if any(s in d.lower() for s in synonyms)] + +selected_cohort_dirname = None +if matched_dirs: + # Prefer exact 'epilepsy' match if present; otherwise take the first matched + prioritized = sorted(matched_dirs, key=lambda d: (0 if "epilepsy" in d.lower() else 1, d.lower())) + selected_cohort_dirname = prioritized[0] + +if selected_cohort_dirname is None: + print("No suitable TCGA cohort found for the trait 'Epilepsy'. Skipping this trait.") + # Record unusable dataset status + _ = validate_and_save_cohort_info( + is_final=False, + cohort="TCGA", + info_path=json_path, + is_gene_available=False, + is_trait_available=False + ) + clinical_df = None + gene_df = None +else: + # Step 2: Identify clinical and genetic data file paths + cohort_dir = os.path.join(tcga_root_dir, selected_cohort_dirname) + clinical_file_path, genetic_file_path = tcga_get_relevant_filepaths(cohort_dir) + + # Step 3: Load both files as DataFrames + clinical_df = pd.read_csv(clinical_file_path, sep='\t', index_col=0, low_memory=False, compression='infer') + gene_df = pd.read_csv(genetic_file_path, sep='\t', index_col=0, low_memory=False, compression='infer') + + # Step 4: Print column names of the clinical data + print(list(clinical_df.columns)) \ No newline at end of file diff --git a/output/preprocess/Epilepsy/gene_data/GSE199759.csv b/output/preprocess/Epilepsy/gene_data/GSE199759.csv index 5c96cf294454a09e246fad310dc820f55b0a5e1a..a400c6f94343e6464a8a21789a9bd8c780752c88 100644 --- a/output/preprocess/Epilepsy/gene_data/GSE199759.csv +++ b/output/preprocess/Epilepsy/gene_data/GSE199759.csv @@ -1,103 +1 @@ -ID,GSM5984016,GSM5984017,GSM5984018,GSM5984019,GSM5984020,GSM5984021,GSM5984022,GSM5984023,GSM5984024,GSM5984025,GSM5984026,GSM5984027,GSM5984028,GSM5984029,GSM5984030,GSM5984031,GSM5984032,GSM5984033,GSM5984034,GSM5984035,GSM5984036,GSM5984037,GSM5984038,GSM5984039,GSM5984040 -A2ML1,-5.0603805,-3.7812428,-3.6631508,-4.109809,-3.8587713,-3.5930219,-4.490974,-4.3031635,-3.208416,-4.582319,-3.3812447,-3.5965142,-3.7585878,-2.928594,-2.872188,-1.1039696,-2.4899487,-2.4995818,-3.7593775,-3.1711535,-3.5947657,-2.747736,-3.0448432,-3.8759775,-4.0852747 -A4GALT,-1.7683821,-1.9622822,-1.7939067,-1.3063498,-1.3852987,-2.450118,-1.774756,-1.7259665,-1.5607686,-2.4001632,-2.1647158,-2.2580414,-4.300986,-3.585343,-1.9080658,-1.4024825,-2.8209352,-3.9656296,-1.3022623,-4.418452,-1.3821878,-3.6736636,-3.455083,-3.4636517,-2.547381 -AKAP4,3.7417364,3.480812,3.5530586,3.4801798,3.3479729,3.9426384,3.7758665,3.6065435,4.09863,4.162154,3.717309,3.3785677,3.9541054,3.8520432,3.736002,3.9748878,4.205145,4.064996,3.4801512,3.5895405,3.241249,3.7557192,4.2269144,3.8101177,3.4586945 -ARID2,-2.6798697,-2.5276594,-2.2530107,-3.2358217,-2.49831,-2.3390212,-2.4517398,-2.95537,-1.9904518,-2.0659075,-1.3423176,-1.4213543,-2.0433426,-1.6748772,-1.8702517,-0.6617451,-1.864984,-1.1319752,-2.4111624,-1.6218386,-1.7719316,-1.2252584,-2.0252814,-1.8186898,-2.0057435 -ASCC2,-3.3553357,-1.2852459,-1.5014758,-2.9991784,-1.786932,-2.739201,-4.3411613,-3.432331,-3.6765585,-2.19982,-3.2936954,-4.2360687,-3.1315002,-1.9391232,-2.5173035,-1.1784859,-1.9945555,-2.8981667,-2.4825172,-6.105052,-4.5192766,-4.3320265,-4.079235,-2.5185142,-4.063537 -ATF7IP,-2.947196,-4.412384,-3.514485,-3.1242418,-3.3725224,-4.3325577,-4.0823884,-3.9385643,-4.6257825,-4.8591833,-4.1142263,-4.2994857,-3.111559,-1.6767435,-3.0617213,-2.6995654,-2.990213,-2.6005192,-4.130119,-6.7968817,-6.8616643,-4.563813,-4.3898416,-5.2235146,-5.4429784 -ATP6V0D1,-1.7829375,-3.9933152,-3.3769822,-2.788393,-3.3985481,-3.7052383,-2.3409119,-2.3864164,-3.4887056,-2.9749131,-2.588059,-3.0455108,-2.5458422,-1.708775,-2.489521,-1.5581698,-2.4676986,-2.1774964,-2.9326634,-3.3572464,-1.9299769,-2.080471,-2.5872388,-3.9474688,-3.5824337 -AVIL,-0.16482067,-0.809474,-0.96407604,-0.92655563,-0.9153795,-0.4148569,-0.893445,-0.69970703,-0.74034023,-0.3167429,-0.018641472,-0.887146,-0.34176064,0.6120949,-0.06810284,0.6253958,0.22262001,0.4663887,-0.8347025,-0.29446507,-0.7968197,-0.0839653,-0.22068024,-0.89472675,-1.6996512 -C11orf68,-4.3835993,-3.8961067,-3.9383817,-3.7539601,-4.2367706,-4.7726374,-3.8802657,-3.621933,-4.4103804,-4.1559925,-4.0868382,-4.7178206,-2.9851847,-2.9985304,-2.9609613,-3.0066648,-3.2480178,-3.3521905,-4.297116,-6.2090297,-5.3435407,-5.795953,-5.2807674,-5.0016527,-5.1680098 -CCDC8,-1.8504777,-1.3804665,-1.2996168,-1.7854409,-1.528779,-1.0656109,-2.0239344,-1.9040947,-2.3835487,-1.9478807,-2.4390717,-2.0541506,-1.088788,-0.64507294,-1.6883388,-0.81048775,-1.1300611,-1.1491222,-1.4522924,-1.7473779,-1.554491,-0.34681034,-0.16363144,-1.7087269,-1.6749792 -CCL1,-4.7879796,-2.5028863,-1.8121896,-1.3314843,-1.5831828,-2.225634,-3.0010276,-2.2517452,-1.221746,-2.5627508,-3.1827035,-2.7814507,-3.3466501,-2.5620732,-3.1756678,-3.1728988,-2.7941508,-3.2183337,-2.4316654,-2.1795974,-3.3685622,-1.8921361,-2.4198694,-2.235642,-2.6366272 -CD109,0.86255455,0.77608204,0.8289547,0.5767231,0.7714281,1.344389,0.7258892,0.7632427,1.9973564,1.6245852,1.36798,1.0740404,1.371213,1.6714258,1.6011286,2.1766949,1.6886282,1.6031904,0.92252827,0.8252888,1.475317,1.5876179,1.6573477,1.0114021,0.42642212 -CD8A,-1.5585995,-1.6234145,-2.022696,-2.076425,-1.6787949,-1.5317373,-2.0936537,-2.0462813,-1.6653724,-1.8806129,-1.8033261,-2.163066,-2.0756845,-0.95136213,-1.8225751,-0.9011698,-1.2384295,-1.0536399,-1.7480221,-2.1733875,-2.3054295,-1.5311508,-1.5638242,-1.7524676,-2.5137358 -CENPK,-1.9887357,-2.6838417,-2.9322839,-2.5305614,-2.009922,-2.199645,-2.3806453,-2.497795,-1.4593983,-2.457325,-0.7504635,-0.5781946,-1.7870336,-0.4846053,-1.285327,-0.65431976,-1.0700717,-0.714262,-1.7480145,-0.8372431,-0.6093035,-0.6829405,-1.0730362,-1.6211224,-1.6431952 -CENPV,-1.6705713,-0.88896847,-0.6388922,-0.9276781,-0.88716507,-0.9937825,-1.2964239,-1.1253586,-1.3144097,-0.7757797,-1.325551,-1.9358907,-1.1059561,-0.5282073,-1.2114372,-0.3309555,-0.3962698,-0.80544615,-1.0660877,-2.0100102,-2.14043,-1.3557162,-0.4611082,-1.4770737,-1.568636 -CKAP4,-3.3117485,-3.0535479,-2.335835,-1.6237321,-2.2719712,-3.0663385,-2.6371446,-3.1369777,-4.390237,-2.3278913,-4.836965,-4.805159,-3.2845101,-2.3563566,-3.2773075,-1.9392271,-2.6553435,-3.5550733,-2.4485054,-3.1927772,-3.6547909,-3.465331,-4.326194,-2.3876433,-4.2612743 -CMC4,-0.55748177,-0.8528414,-1.132227,-0.84935474,-0.9884968,-0.74525833,-0.46340942,-0.5515251,-0.98068666,-0.9199667,-0.5270643,-0.7713537,-0.4011383,0.4753971,-0.158247,1.3272915,0.34671688,0.67173195,-0.96053314,-1.3889751,-1.0778484,-0.053131104,-0.33448887,-0.9931555,-1.6033363 -CNTNAP1,0.057948112,-0.56516457,-1.0331964,-0.77948666,-0.6417179,-0.30146122,-0.22401047,-0.45709038,-0.23637581,-0.660347,-0.49609756,-0.16784859,-0.8442116,-0.07304382,-0.13508987,0.09883118,0.14271355,0.4445982,-0.3697815,-0.63183594,0.120695114,-0.10475445,0.21338177,-0.16024208,-0.49489212 -CYP2B6,-2.2876782,-1.0210075,-1.7780232,-1.1653738,-1.4909797,-2.2275386,-1.8267689,-1.131465,-1.8092647,-2.3443084,-2.8010082,-2.7548308,-2.5152297,-1.5844617,-1.8501649,-1.0757723,-2.1396623,-2.1528988,-1.8166056,-0.89184,-3.529581,-1.3020048,-1.4522762,-0.9380722,-2.3939872 -DCTN4,2.3150902,2.119564,2.5808268,1.9371138,2.0306845,2.2240906,1.8970184,2.126317,1.8219242,2.526847,1.540309,1.4784842,2.4842577,2.8295765,2.271164,2.9872818,2.9744415,2.707656,1.834382,1.123702,0.9407425,2.2293587,2.623516,2.2704,1.7763472 -DDX17,-1.1065359,-1.3361864,-1.4302378,-1.3131576,-1.2342062,-1.8184257,-0.37124157,-0.90354824,-1.9192448,-1.6677237,-2.0886726,-1.5678172,-1.0821342,-1.2080579,-2.9619431,-2.2912965,-0.71636105,-1.6809411,-1.5634613,-2.16322,-1.900527,-0.778903,-1.1983509,-2.291298,-1.9159627 -DENND2B,-1.3507504,-0.13756943,-0.05255413,-0.7166624,-0.10295868,-0.4795599,-0.97588253,-0.899518,-0.01406765,-0.7496691,-0.45613956,0.2130909,-0.29325485,0.092513084,-0.7656622,-0.10852146,-0.58821917,-0.1553731,-0.6192169,-2.267374,-1.5507722,-1.4726257,-0.34667397,-1.307157,-0.6049204 -EIF3A,-3.2728450999999996,-3.00270605,-2.9826951,-3.57522545,-2.73187975,-2.4369929,-3.36372515,-3.5090824000000005,-1.84702656,-2.74826335,-2.44559885,-3.1627175999999997,-3.6812061,-1.88450095,-1.95470335,-2.3374782,-1.90933685,-2.92085145,-2.4426837,-3.6467176,-2.6652384000000002,-2.632122,-2.02501513,-3.61799665,-3.1269705 -EP300,-1.4219556,-1.3789587,-1.3748655,-1.9044847,-1.8286695,-2.0525603,-2.3406324,-1.8081627,-2.0683208,-1.3767915,-2.1614332,-2.2096968,-1.6175032,-0.93731594,-1.5392766,-1.607523,-1.257597,-0.87550545,-2.1180153,-0.9687462,-2.9068432,-1.8500233,-2.9104776,-1.5247345,-3.2340293 -EP400,2.206256,2.5221825,2.3661442,2.7328815,2.8368073,1.9280443,2.1563501,2.5412025,2.6783218,1.7396889,2.1339636,2.495696,1.7646275,-1.238512,1.5161953,1.1374655,0.31485367,0.75855637,1.8148909,1.7361336,2.406742,1.1686335,0.0532341,2.6957932,2.63655 -EXOSC3,0.8921976,0.735487,0.27308464,0.45484734,0.5107527,0.4659853,0.6034622,0.4390087,0.6922445,0.3722887,0.84189415,0.9338465,0.050980568,0.84969425,1.3223362,1.7800789,1.0456238,0.86774254,0.7707796,0.80988884,1.251647,1.0002432,0.5738764,0.50185776,0.8626175 -EXOSC6,-2.1609888,-2.8133488,-3.6481643,-3.277182,-2.8948321,-4.305608,-3.1442366,-3.076367,-3.2243886,-3.6336722,-3.7870178,-3.4197145,-4.559766,-2.3328156,-1.9803629,-0.89991474,-1.6627774,-2.4430127,-2.5624166,-3.152298,-2.476348,-2.104072,-3.65583,-4.207381,-3.3913722 -EXOSC8,1.779624,1.5261555,1.1368904,0.8452263,1.6509447,-0.20444107,1.5387936,0.30620766,-0.39866638,0.5649595,-0.31795025,0.93284035,-1.0348148,-0.24638891,0.25548363,2.029725,1.1662436,-0.45435047,1.4717808,-2.1716986,1.2904873,0.14787388,-0.5383959,-1.6923618,-0.599905 -FRMD3,0.9296818,2.5415716,2.0139208,2.658368,2.5794983,2.8841372,2.1186123,2.0842295,0.9519615,2.328785,0.6545477,0.6528559,1.8698273,2.3743162,0.78828526,1.5898991,2.8238726,1.9054079,2.1396742,0.4067831,1.0073338,2.6806297,1.8079805,1.6228333,2.044654 -GATAD2B,-3.0375452,-3.9246378,-2.7162385,-3.928307,-2.7842903,-3.046441,-2.4730544,-2.6357236,-2.4819288,-2.9653363,-2.0521073,-2.267323,-2.7865667,-1.8413973,-2.3551435,-1.255907,-1.7795186,-2.0136056,-3.1181011,-1.3305893,-1.6867657,-1.2343097,-2.862875,-1.745223,-3.8668265 -GEMIN4,-2.4647827,-2.514069,-3.0695515,-3.3439927,-3.0735564,-2.4835482,-3.7682261,-3.0988002,-3.2447605,-2.8601103,-3.1634412,-4.3552113,-2.7443824,-2.0375419,-1.7675037,-1.2297039,-2.403287,-2.6715055,-2.372611,-2.4564018,-4.1395664,-2.721601,-3.4473462,0.18791103,-2.8588529 -GOLIM4,-2.0863953,-3.377222,-3.2129955,-3.1111484,-3.251676,-2.2512488,-3.4664173,-3.5297208,-2.953065,-3.092681,-2.8555298,-3.039877,-2.7652078,-1.3113451,-2.0157084,-0.4156208,-1.8004642,-1.6959634,-2.742073,-3.6862402,-3.079073,-2.0275583,-2.61664,-2.7356648,-3.6509523 -H3C9P,-3.8760538,-4.2028155,-3.4044719,-4.4735413,-4.78402,-3.4161272,-4.31337,-4.6684523,-2.4439359,-3.4745817,-2.2035336,-3.836688,-3.332295,-3.4483366,-2.6847801,-2.1971235,-3.411961,-3.5010648,-4.1814294,-2.2702675,-2.4860559,-2.8882017,-2.9121866,-3.908465,-4.6937976 -H3P10,3.1629515,4.024496,3.8848295,3.8964243,4.0490065,3.9917202,3.8306093,4.166013,4.5894394,3.9228535,3.272626,3.532175,3.2170134,2.9349213,3.2652044,3.2929134,3.017313,2.5613422,3.824253,3.0717697,3.5699492,3.4878864,2.988575,3.9925995,3.786745 -H3P11,0.118821144,-0.552618,-0.42336082,-0.5263386,-0.3154049,-0.5518036,-1.0686388,0.08796692,-1.8151336,-0.30031586,-1.1896782,-1.2329736,-0.52809334,-0.881547,-1.0588388,-1.0597801,-0.432137,-0.68905497,-0.3056383,-0.24771595,-1.1815958,-1.0206046,-1.1726775,-0.71199703,-1.0347652 -H3P12,-1.6482048,-0.36242676,-1.2417021,0.10468006,-0.45571136,-2.0802317,-2.0316095,-1.5713749,-0.11336994,-0.9014492,-1.5787153,-1.252451,-1.4539824,0.096601486,-0.33380032,0.5070076,-0.8894682,-0.112306595,-0.48901367,-3.5261006,-1.650456,-0.8123846,-0.2749691,-1.4388876,-1.911582 -H3P13,-0.76815367,0.23287773,-0.254323,0.5004797,-0.12890434,-0.8219948,-0.51501274,-0.57452106,0.6179018,-0.16930485,-0.5502653,-0.21926403,-0.03675556,0.5260639,0.18685627,0.71001625,0.122820854,0.1441698,-0.042087555,-1.0809355,-0.2668209,0.28165913,0.37725735,-0.43414307,-0.055701256 -H3P14,0.34837723,1.6777077,0.78243256,2.124837,1.6752167,0.54621124,0.045448303,0.32555485,2.6077147,1.2978611,1.3509407,1.6458101,0.5618458,1.2428284,0.9971981,1.2516136,0.18939018,1.182065,1.3091955,-0.66446877,1.3856077,1.0669947,1.9279737,1.3300896,0.9291811 -H3P16,-1.7236176,-0.680563,-1.317131,-1.2363968,-0.8627548,-1.146421,-0.9977541,-1.1959982,-1.2667041,-0.8448744,-0.8416109,-1.0096169,-1.1534157,-0.39124537,-1.0175619,-0.7302904,-0.19950008,0.27273083,-1.3827057,-1.6698141,-1.7066064,-1.012353,-0.5962162,-0.889822,-1.5559406 -H3P19,-3.4817605,-3.8678136,-3.4340796,-4.8043375,-3.4429917,-3.600307,-5.008458,-4.592385,-1.4970021,-2.3917446,-1.367302,-2.1454096,-3.3330388,-2.7415752,-1.8890667,-1.3562608,-3.1984463,-3.7555962,-3.0444317,-1.2096939,-0.6311407,-2.483265,-3.3675303,-4.3926296,-4.3451467 -H3P22,-0.35166168,0.28062344,0.29047394,-0.5241909,0.04175949,-0.23333263,0.50341797,-0.61962795,-0.6598358,0.14792442,0.049552917,-0.665143,0.26089668,0.36888027,0.052096367,0.5730629,0.28029537,0.4305601,-0.24028015,-0.5794096,-0.33320427,-0.44474316,-0.13541412,-0.090084076,-0.037550926 -H3P23,-3.786625,-3.5378132,-3.6138272,-3.7128258,-3.6793714,-3.6215677,-3.3108244,-3.7316475,-1.9024601,-3.2558794,-2.1292553,-3.278741,-3.1224594,-2.570447,-2.457796,-1.8257899,-2.8209662,-2.4985666,-3.3381767,-2.6479125,-1.6080928,-2.2818203,-2.5233073,-3.1883912,-3.121707 -H3P24,-2.4304671,-2.885223,-3.1108537,-2.8555255,-2.5225582,-2.3761463,-2.7584472,-3.0509896,-1.5310893,-3.1271658,-1.5486107,-2.0594544,-2.5851169,-2.1354938,-1.7626157,-1.6125407,-2.078248,-2.483059,-2.3174844,-2.2038903,-1.3393955,-1.7764444,-2.021779,-2.4734354,-2.2317972 -H3P27,-2.8973746,-2.8370647,-2.5040617,-2.9780283,-2.5160036,-2.2499561,-2.2178946,-2.8205166,-2.2804704,-2.476925,-1.8837113,-2.3385963,-3.0193086,-2.1962652,-2.1442232,-0.724782,-2.4382029,-2.789772,-2.3315678,-2.8561234,-2.5228748,-2.4257622,-2.1183233,-2.3328414,-2.4390416 -H3P28,-0.08210468,-0.69119453,-0.9288969,-0.771225,-0.92964363,-0.32362175,-1.1767054,-1.0159378,-1.0812507,-0.69817734,-1.3444653,-1.247025,-1.3380842,-0.043774605,-0.8436508,0.1368761,-0.18187141,-0.23954725,-0.7520399,-2.5553074,-1.7076764,-0.5935278,-0.54487705,-1.3133183,-1.9800949 -H3P30,-1.4595575,-2.5752711,-2.666801,-2.2868886,-2.670434,-2.8465028,-4.077838,-2.6155577,-4.102567,-2.6931329,-3.096262,-3.6954312,-3.0072746,-1.8649931,-3.0837631,-2.2868981,-2.2260695,-2.3872552,-2.465972,-3.782631,-3.5464368,-2.9358249,-3.2683525,-1.7089696,-4.0699053 -H3P33,-3.71657,-2.7704678,-2.836782,-2.9958205,-2.7883043,-2.434822,-2.9870877,-2.692222,-2.8267422,-2.6968646,-3.0033827,-3.5892043,-2.6813598,-1.5037932,-2.724288,-1.2852154,-1.9816337,-1.749589,-3.0998826,-4.0720463,-3.868763,-2.1152725,-2.0384846,-1.7963839,-3.7942924 -H3P37,-2.535008,-3.906745,-3.6869116,-3.1080008,-3.3003874,-3.996841,-4.960901,-3.883336,-2.558486,-3.6086345,-2.3254457,-2.6059437,-2.6856713,-1.8431253,-2.3697882,-2.4780493,-4.310782,-3.906318,-3.5154529,-2.4727712,-2.524603,-3.6048903,-6.10395,-2.4232874,-2.790835 -H3P38,-1.120441,-3.523107,-3.0233293,-2.8030891,-3.0119348,-3.3410583,-2.9793549,-4.6952477,-2.1978636,-3.9171925,-0.78495693,-1.1807241,-1.1400404,-2.3779688,-1.0491238,-1.9410868,-5.850545,-4.759824,-2.8532424,-0.19743347,-0.25144005,-3.0444617,-6.970093,-1.4736376,-0.24742126 -H3P39,-2.4712195,-3.4154978,-3.2989888,-2.9300823,-3.1977286,-3.3340883,-3.2482967,-3.29672,-2.6869912,-3.7996411,-2.1517572,-3.2381492,-2.041132,-1.4031549,-1.9928775,-1.4924212,-2.326994,-2.2752204,-3.358055,-2.212184,-2.186656,-3.0156999,-3.3063898,-2.5916357,-2.034926 -H3P40,-0.6896124,-1.9843926,-2.2447343,-1.5172181,-1.6966743,-1.9438095,-2.5972557,-2.3140817,-0.5322037,-2.0372472,0.013230324,-0.5061493,-0.12067032,0.88706875,-0.42491436,0.55229664,-1.3244748,-0.16566372,-1.4289746,0.58226967,0.012366295,-0.009976387,-1.7627592,0.09175396,-0.04300785 -H3P43,-1.2283711,-0.9608698,-0.8124924,-0.8237114,-0.9610071,-0.796608,-0.9032068,-0.893178,-0.56445885,-0.52586555,-0.09753132,-0.54950714,-1.0998478,-0.10195255,-0.05629444,0.46330547,-0.42472935,-0.2841735,-0.6942787,-0.54021645,-0.2731352,-0.5185194,0.07833862,-1.0238199,-1.420434 -H3P44,-0.93073416,-1.3107824,-1.5387406,-1.4931054,-1.7165036,-1.3274264,-1.5982523,-1.7993441,-0.9471159,-1.1022396,-0.40996265,-1.0300045,-1.6318741,-0.39232826,-0.7581701,-0.17810345,-0.56371164,-0.53896284,-1.153902,-0.8086157,-0.6082468,-0.34635353,-0.5803156,-1.4492936,-1.5595207 -H3P45,-1.2014508,-1.6438289,-0.86570454,-1.3430433,-0.94428444,-1.5743995,-1.8390007,-0.8391819,-5.2948127,-1.2980957,-3.369228,-4.3280187,-0.7830343,-2.3584752,-3.7052078,-3.4763312,-1.9407248,-2.2396011,-2.0131807,-1.1573496,-3.1514306,-2.075171,-1.9990387,1.1485701,-1.9644017 -H3P5,-4.701174,-2.023265,-2.282362,-3.645863,-2.4169693,-4.7796054,-4.400659,-3.438591,-2.0298548,-4.483681,-4.555165,-3.9971557,-4.3928685,-0.8131099,0.35885906,1.2167416,-0.9497161,-0.69243,-0.8978014,-6.368207,-3.0031862,-2.6484618,-4.447288,-4.8093553,-4.7127566 -H3P6,-3.0053606,-0.7485094,-0.74493694,-1.4106975,-0.6932545,-2.8184648,-1.0004606,-1.5954409,-1.8807569,-2.0427823,-3.3174787,-2.033152,-2.926711,-2.6740928,-0.9909344,-1.6986208,-3.0876484,-3.131023,-1.7617693,-3.9360247,-2.1706252,-3.0083537,-3.3446164,-3.3283062,-2.3056283 -H3P8,1.5605526,1.4138975,1.5276346,1.70362,0.8424549,1.1091566,1.1730394,1.6902189,1.9358091,0.5237713,0.26294613,1.0504856,0.20002651,0.39560032,0.81533813,-0.43380165,0.67685795,0.15053606,1.5147057,0.6052246,1.364728,0.9524307,0.5835428,0.8835411,0.8782387 -H3P9,2.778741,2.4473705,2.0896873,2.4110107,2.4459,2.456234,2.6382475,3.0760756,1.8793688,2.5840921,1.6466722,2.143403,1.6255693,0.5901871,1.7372751,0.91744804,1.9640713,0.77248764,2.847478,2.8099003,2.5013332,1.6567678,1.1831589,2.2919893,2.5540953 -HERC1,0.1112487499999999,0.21727800000000008,-0.45884945,-0.06162785000000004,-0.21588035000000005,0.10391094999999995,-0.1671739000000001,-0.1294875499999999,-0.4514572499999998,-0.3908992000000001,0.21789334999999999,-1.08531715,0.9133629999999999,0.449136475,0.5734198500000001,-0.12930320000000006,-0.019529600000000036,0.8927305,-0.3938822500000001,-1.47549627,-0.6066761,0.12137264999999986,0.08831405000000014,0.08453035000000009,-0.42067149999999986 -HERC2,-1.3558259,-1.5100479,-1.6507797,-1.9286599,-1.6496754,-1.6347027,-1.6921701,-1.5019722,-1.9724879,-1.4418163,-2.10647,-2.0738325,-1.2415676,-0.13247585,-1.0595684,-0.67293453,-0.748888,-0.35694408,-1.8296733,-3.6043558,-2.960453,-1.373898,-1.368732,-2.0954428,-2.6343699 -IMMT,0.506686685,1.10550929,1.3802252,1.09335804,1.3765120400000002,0.8411836500000001,0.8398995149999999,1.04360436,1.5885586649999999,0.91556168,1.098311415,1.081968805,1.18074892,1.74214505,1.3593940500000001,1.87347935,1.55251885,1.33265925,1.43422889,0.884887205,0.948767175,1.54106855,1.15290501,0.9962959224999999,1.07561063 -MED25,-0.39754963,-1.0721884,-1.3724766,-1.0171385,-1.1244516,-1.0200009,-1.2547998,-0.95774174,-1.4551978,-0.95567703,-1.4689717,-1.7616768,-1.0116348,0.33555508,-0.7068758,-0.02587986,-0.1267891,-0.05987978,-1.2803731,-2.9207058,-2.6081052,-1.4312034,-1.595058,-1.7291803,-2.4413 -MICOS13,1.4801226,2.0945606,1.8653517,1.0572815,1.5047283,1.6158447,2.2216854,1.1203814,0.3766451,1.3952827,2.8289595,4.032633,2.306983,0.4402113,2.9527388,1.318717,2.6366625,2.1783733,1.5378389,2.9509277,2.6947498,1.3923988,1.7421188,2.2516546,3.5521622 -NBN,-1.3671165,-1.0358448,-0.86011124,-0.7183771,-0.77064323,-0.5592985,-1.0580187,-0.8282366,-0.21473312,-0.6960888,-1.6089053,-1.0891867,-1.602684,-0.61303806,-0.17631245,0.4754076,-0.6628251,-0.6127815,-0.7062168,-2.3093972,-0.8672581,-1.8114762,-1.6023917,-1.5174665,-1.8869648 -NREP,-2.6544237,-2.1666732,-1.6228504,-0.88461494,-1.2171459,-1.5649233,-2.323072,-1.4069319,-3.2926025,-0.81414986,-2.3181763,-3.0808291,-1.316885,-1.5329309,-2.263917,-1.8510227,-1.8419409,-0.993588,-2.3870573,-2.6769338,-3.1568213,-2.3328905,-2.769898,-4.3013883,-3.2495346 -NSUN5,-3.843028,-3.1717877,-2.061183,-3.812912,-1.6063099,-4.1904488,-3.327879,-2.650608,-5.021612,-3.0253162,-5.654264,-4.1898355,-3.2440486,-3.2363834,-3.3722663,-2.3522196,-2.3183784,-5.2657933,-3.1885152,-0.6073885,-5.0433044,-4.065819,-2.3309422,-3.235139,-4.6490884 -PARP4,-2.6575818,-3.018506,-2.5888824,-3.1099958,-2.4790878,-3.1850295,-2.977798,-2.7566862,-2.0447283,-2.8098125,-3.031839,-3.0467553,-2.3346572,-1.3081393,-2.0451365,-0.7613659,-1.4715943,-1.9699521,-2.8894272,-4.796636,-4.233842,-2.807671,-2.5856729,-3.4986367,-3.5856843 -PELP1,-0.31276417,-0.6056099,-0.62588024,-1.406487,-0.8146372,-1.4765062,-0.6180382,-0.50604534,-1.1242657,-1.0421505,-1.6649318,-1.994997,-0.2041645,-0.16986418,-0.5321026,0.3426838,-0.34304428,-0.81780386,-0.8069477,0.069563866,-1.9118476,-0.23250389,-0.6660824,-1.0218983,-0.05621147 -PHB2,1.2781181,0.7703152,1.0794373,0.65952015,1.066186,1.0861597,0.8649626,0.93487453,1.3127985,1.1178226,1.3333645,0.743618,1.0741434,2.6223183,1.7014275,2.1150799,2.1958685,2.1957283,1.177597,0.95867825,1.0748777,2.0673876,2.08813,0.73352337,0.7003565 -PIK3R4,1.5865107,1.887536,1.7066736,1.357727,1.4096079,1.6998653,2.0440903,1.4147635,1.8307028,1.9034262,2.0515146,2.1727915,1.5247021,1.4094238,1.6866436,1.0327597,1.3877792,1.206707,1.5271435,1.6466951,1.924305,1.244977,0.8570099,1.9546967,1.7294807 -PIK3R5,-2.5522866,-1.5274143,-1.4926572,-2.2439737,-2.2333765,-2.1507645,-2.8839545,-2.4325867,-2.8107219,-2.1458445,-2.2145085,-3.130125,-2.8258214,-1.0740609,-1.8786888,-0.5446024,-1.6906891,-1.7089257,-2.297995,-3.3941927,-2.8297758,-2.36017,-2.1714845,-3.0666728,-3.4089417 -PLBD2,0.28774834,0.94585323,1.3232813,-0.3903923,0.5693073,0.5907812,1.5181303,1.9796333,-2.2893934,0.3360405,1.6847095,1.3967781,1.7153978,0.7136564,-0.010919571,1.2868547,-0.14916801,1.1707058,0.5845909,0.6518345,-0.24318218,0.004423142,-0.6778741,0.6571913,-0.21194649 -POM121,0.5640402,0.2794323,0.49732876,0.42366123,0.53339005,0.77688026,0.3721218,0.5117445,0.5938568,0.7163725,1.1030836,1.211751,0.45205402,0.61271286,0.81160164,1.1597128,0.74816895,0.891798,0.45997906,0.5532274,0.7512579,0.6426363,0.5823889,0.75677204,0.4405241 -PPP1R10,0.061976433,0.3084612,1.2081242,-0.33730602,-0.13553524,0.45788574,-0.3088932,-0.18496895,-0.25271416,0.79391575,0.7151108,-0.10418224,0.42586994,1.1171036,0.23860073,1.0998116,0.9457474,0.8384886,-0.3300953,-0.5291176,-0.715785,0.1163187,0.5008669,-0.03502941,-0.44084454 -PPP1R12C,-2.2340093,-4.386175,-4.62963,-2.7165613,-3.0475464,-2.4850526,-3.22331,-2.878141,-5.1390038,-2.7409,-1.9010534,-3.7777796,-3.1485047,-2.77065,-3.7755442,-3.3973827,-3.886808,-3.2475657,-2.7584305,-2.775268,-3.8956237,-2.767458,-4.3641367,-4.637122,-5.139879 -PRKDC,4.8105173,4.4831676,4.352833,4.357258,4.451868,4.684948,4.5342035,4.577262,4.492882,4.5521145,4.795824,4.8986626,4.17313,3.7880287,4.803664,4.1882668,4.445717,4.3026752,4.5708656,4.7668476,5.0985794,4.132949,4.589141,4.8817863,4.7568483 -PSMD1,-2.8632312,-3.6603365,-3.22718,-3.599115,-3.3831277,-3.5525723,-3.5816011,-3.614449,-2.1440554,-4.067902,-2.1700397,-3.1363783,-2.9295702,-2.5915556,-0.90456104,-1.2256832,-1.9715629,-2.2644095,-2.9502983,1.7301893,-0.7615881,-2.146977,-3.1661606,-2.0776215,-3.0129933 -QRFP,-2.7525482,-3.5154428,-3.157403,-2.9740586,-3.4012332,-3.2094154,-3.3780727,-2.7188907,-3.5655718,-2.9409523,-3.4779963,-3.023666,-3.1536765,-2.3415627,-2.8277693,-2.4162307,-2.5831375,-2.3822837,-3.4488678,-3.3390155,-3.8219085,-2.5603309,-2.9551926,-4.579433,-3.9880605 -RALY,1.4563246,1.8403025,3.2951078,1.5047827,2.7073832,2.4825964,2.9084997,2.747408,2.7704334,2.0492477,2.3526936,2.819934,1.5609303,0.6155319,1.3882389,0.8698082,1.8062286,1.0409336,3.0098448,2.6245203,2.0910273,1.7421885,1.4974728,2.410674,2.4093256 -RHOBTB2,-1.832253,-1.5063133,-1.1796112,-2.0472245,-1.1299891,-1.7516255,-1.4074392,-1.5722122,-3.604165,-1.750031,-2.7742982,-1.9944539,-0.8755007,-2.0892873,-2.886025,-0.549284,-1.530571,-2.966803,-1.4637151,0.06523323,-2.2328343,0.3050251,-1.2314453,-0.99544144,-2.0939555 -RPLP2,1.838069,1.7674246,1.8997841,2.0884075,1.3108244,1.3802509,1.387578,2.0119143,2.2999077,1.1393471,0.68625927,1.3202934,0.30909443,0.9546604,1.1092682,-0.18908882,0.8832998,0.39875984,1.9353056,0.88450336,1.5642748,0.8896923,0.61433697,1.0629921,1.0816231 -RSF1,-1.9206858,-2.0386362,-2.5290918,-1.9147143,-2.0851574,-2.1139932,-2.388914,-2.6027975,-2.6254125,-1.6757421,-2.5134974,-2.5765715,-2.7340755,-1.2037468,-1.8349524,-2.202115,-1.3093348,-1.1327233,-2.3713279,-4.199798,-3.2804532,-2.5657983,-2.7961206,-3.28787,-3.425675 -S100A12,-0.9795666,-0.9169264,-0.23578262,-0.013917923,0.2592907,-0.78363705,-0.36348343,-0.7209549,-0.5189924,-0.8074198,-0.7965107,-1.0794001,-2.5327435,-1.2082634,-0.98039246,-0.010405541,-1.3736186,-1.7495494,-0.014544487,-3.1103253,-0.4738741,-2.046773,-1.5395403,-2.5390606,-1.6717491 -SCYL1,-2.138184,-2.4742022,-2.4220552,-2.504921,-2.3639393,-2.158101,-2.54491,-2.4341693,-2.6346302,-2.1286092,-2.5238352,-2.6321597,-2.404005,-0.78158617,-1.8274136,-0.39675522,-1.0209389,-1.2877941,-2.3106766,-3.533145,-3.085709,-2.2657595,-1.8376751,-2.8786135,-3.2072406 -SIGLEC7,0.45037937,0.9903393,1.4872494,-0.20650578,0.700799,0.76119804,1.6480417,2.1803875,-2.0673366,0.48643398,1.7836437,1.5580864,1.8397713,0.9367533,0.18220043,1.426486,0.3484497,1.481451,0.6404333,0.7880945,-0.07780647,0.46734905,-0.17970085,0.76915264,-0.14917946 -SIRPA,-1.567164,-2.0889678,-1.6160421,-1.419179,-1.5017767,-2.0089493,-2.2745671,-1.7945971,-2.9211173,-2.003963,-1.1488419,-1.4289799,-1.8757253,-1.0734673,-2.3038468,-0.37960148,-1.3829088,-1.2769704,-2.0179715,-1.1492691,-0.53282547,-0.5650749,-1.5571823,-0.81377983,-2.560566 -SKP2,-1.6367321,-1.0694561,-1.1327934,-1.1050458,-1.1601195,-0.8655729,-1.4605293,-1.4517121,-0.38599586,-0.81640625,-1.1279116,-0.92416763,-1.6233187,-0.46342182,0.14515305,0.39041138,-0.5679369,-0.5792532,-0.5688925,-0.5346832,-0.8868704,-1.6325145,-1.6236186,-1.2999673,-1.6626186 -SLC10A4,2.1612272,2.9653177,3.316104,2.5996532,3.0798712,3.2202082,3.3031092,3.3397093,3.8420649,2.8132124,2.0399055,2.6822891,2.0106106,1.2159233,2.095913,1.4557066,1.8570032,1.0514975,3.3811302,1.9441919,2.3621464,2.2662497,2.6914654,3.1353292,3.013692 -SLC10A5,-0.014458656,0.8496609,1.0471411,0.90099716,1.4783392,1.0958843,0.8233795,0.96562386,1.912466,0.92652893,0.62596416,0.47899914,-0.059116364,-1.0356293,0.068899155,-0.32632637,-0.5652399,-1.8235297,1.1831369,0.3220482,0.5996084,-0.058831215,0.93300724,1.230155,1.0552378 -SLC10A7,-0.9832463,-0.06646252,-0.16755009,0.22119904,0.769969,0.51374626,-0.7300091,0.04800892,0.3726282,0.08155918,0.4201193,-0.005788803,-0.9647503,0.3618784,0.44333935,0.6320772,-0.41966343,0.4169569,0.1529913,-2.1949787,0.70668125,-0.5108681,-1.0237126,-1.6348019,0.017000198 -STAT2,-0.49074745,-1.3185997,-1.096096,-1.0748825,-0.9660187,-0.8599701,-1.3527851,-1.0012197,-1.7432408,-1.0074339,-1.9169521,-2.0952868,-0.91782475,-0.22719336,-0.81662846,-0.54617023,-0.52378464,-0.40653658,-1.3327303,-3.2376451,-3.0048714,-1.8075533,-1.6795645,-1.6235418,-2.6000438 -STXBP1,-0.61876106,-0.71982,-0.5972185,-0.4529152,-0.52488136,-0.6273174,-0.8471451,-0.90009594,0.66257,-0.3740635,0.45323658,0.12947178,-0.41966534,0.34312057,0.13851929,0.6311264,-0.12590027,-0.07662964,-0.42781067,-0.2625494,0.7462559,0.45916653,0.5588074,0.04758644,-0.52272034 -SYF2,-3.7854567,-4.6311564,-2.3888035,-4.033697,-4.048156,-3.4443402,-3.6040425,-4.294682,-3.933671,-3.9472861,-2.3932576,-3.0150914,-4.16758,-3.0453386,-2.6257248,-1.982028,-2.6854029,-3.109676,-3.40441,-3.1578922,-3.288519,-3.1972628,-2.4317136,-5.2635403,-4.2593794 -TCF12,0.3933096,1.1712837,1.1927576,0.60725975,1.3627825,-0.12587166,-0.7550602,0.5071621,-2.691166,0.6981678,-2.5162988,-1.5842562,-0.24387836,-2.8886795,-2.2705765,-1.9631081,-0.07928276,-2.4902778,0.7218399,0.49437618,-1.5591474,-2.6083221,-2.2858577,0.7673292,-1.6518345 -TMED9,-0.8429804,-0.27010727,-0.56217194,-0.627635,-0.5583706,-0.6051607,-0.3369236,-0.2297926,-0.80725384,-0.18383884,-0.34996986,-0.533659,-0.1966238,0.22755527,-0.20144272,0.73785686,0.30351162,0.09365511,-0.64953995,-1.381876,-1.0571995,-0.22433949,-0.23695374,-0.6250067,-1.0813112 -TP53BP1,-2.4532495,-1.4690571,-1.9768343,-2.598464,-2.4302258,-1.5352068,-2.805304,-2.5475187,-2.4068308,-1.7335682,-2.2052627,-1.7738285,-1.9737711,-1.6521254,-1.8851748,-1.823328,-1.951149,-1.263134,-2.6410646,-3.6440883,-3.480844,-1.6386347,-2.338715,-2.2863898,-3.110221 -UBR4,-5.666684,-2.9719338,-2.5243802,-2.0259795,-2.4838972,-2.6990705,-3.5819635,-2.218319,-3.9261832,-2.8966994,-4.77277,-4.621647,-4.2476077,-2.7787461,-4.6005325,-3.2112536,-3.0609307,-4.7999687,-3.4225202,-6.576048,-6.2218294,-3.8687663,-2.3844953,-4.2610536,-6.067845 -UBXN2B,-1.2430329,-1.3407459,-1.1740885,-1.1938701,-1.4363222,-1.227838,-1.4682436,-1.3390856,0.14845467,-1.4699359,0.06992245,-0.23861217,-0.7142248,0.28921127,-0.32892227,0.32052898,-0.24151039,-0.16046715,-1.3247943,-0.04263401,-0.17340946,-0.18067646,0.1395092,-0.42342186,-1.0376854 -UPK3B,1.743084,1.4452248,1.1479502,1.1459122,1.2307568,1.4222012,1.5184784,0.8902874,1.3479872,1.6714697,1.9560966,1.6090555,0.9911642,1.8639345,2.0044565,2.3542824,1.6656418,1.6554298,1.4086657,1.8645315,2.1438227,1.5526285,1.2194691,1.3667173,0.9906368 -USE1,3.306407,3.3272896,3.15913,3.1353416,3.2443361,3.3585558,3.5317593,3.474306,3.391698,3.4201927,3.612423,3.9309168,2.8174114,3.3504314,3.3953552,3.064395,3.2703161,3.433978,3.3317976,3.350089,3.4349937,3.510275,4.0564938,3.8109207,3.338314 -ZC3H12D,-2.0860105,-1.9535084,-1.8340406,-2.362392,-2.0383344,-1.7143817,-1.9987903,-2.3675466,1.8938017,-1.760787,-1.0060482,-1.8275056,-1.8505378,-0.89105797,-1.4130716,-0.10095596,-0.94480515,-1.0448942,-1.6161385,-1.1525288,-0.8864069,-0.9663749,-0.9704876,-2.3378024,-2.6291208 -ZNF398,-4.0970597,-3.5297546,-3.4323487,-3.5309024,-3.3309321,-4.1229386,-3.6333404,-4.1616035,-3.3457546,-4.267276,-3.6161513,-4.0436945,-4.3293295,-1.9774194,-1.7139125,-0.986948,-2.7029362,-2.4590259,-2.6680126,-3.561699,-3.6502604,-2.342462,-3.197341,-4.619508,-4.899833 +Gene,GSM5984016,GSM5984017,GSM5984018,GSM5984019,GSM5984020,GSM5984021,GSM5984022,GSM5984023,GSM5984024,GSM5984025,GSM5984026,GSM5984027,GSM5984028,GSM5984029,GSM5984030,GSM5984031,GSM5984032,GSM5984033,GSM5984034,GSM5984035,GSM5984036,GSM5984037,GSM5984038,GSM5984039,GSM5984040 diff --git a/output/preprocess/Esophageal_Cancer/GSE75241.csv b/output/preprocess/Esophageal_Cancer/GSE75241.csv index cd162e3a167283efd4916c3b0e3a649be7e3112a..db9df9f2ca0bec558f4c28c38b82e053fd724e6a 100644 --- a/output/preprocess/Esophageal_Cancer/GSE75241.csv +++ b/output/preprocess/Esophageal_Cancer/GSE75241.csv @@ -1,31 +1,31 @@ -,Esophageal_Cancer,A1BG,A1BG-AS1,A1CF,A2M,A2ML1,A4GALT,A4GNT,AAA1,AAAS,AACS,AADAC,AADACL2,AADAT,AAGAB,AAK1,AAMDC,AAMP,AANAT,AAR2,AARS1,AARS2,AARSD1,AASDH,AASDHPPT,AASS,AATF,ABAT,ABCA1,ABCA10,ABCA11P,ABCA12,ABCA13,ABCA17P,ABCA2,ABCA3,ABCA4,ABCA5,ABCA6,ABCA7,ABCA8,ABCA9,ABCB1,ABCB10,ABCB11,ABCB4,ABCB5,ABCB6,ABCB7,ABCB8,ABCB9,ABCC1,ABCC10,ABCC11,ABCC12,ABCC13,ABCC2,ABCC3,ABCC4,ABCC5,ABCC6,ABCC6P1,ABCC6P2,ABCC8,ABCC9,ABCD1,ABCD2,ABCD3,ABCD4,ABCE1,ABCF1,ABCF2,ABCF3,ABCG1,ABCG2,ABCG4,ABCG5,ABCG8,ABHD1,ABHD10,ABHD11,ABHD12,ABHD12B,ABHD13,ABHD14A,ABHD14B,ABHD15,ABHD16A,ABHD16B,ABHD17A,ABHD17AP1,ABHD17B,ABHD18,ABHD2,ABHD3,ABHD4,ABHD5,ABHD6,ABHD8,ABI1,ABI2,ABI3,ABI3BP,ABITRAM,ABL1,ABL2,ABLIM1,ABLIM2,ABLIM3,ABO,ABR,ABRA,ABRACL,ABRAXAS1,ABRAXAS2,ABT1,ABTB1,ABTB2,ABTB3,ACAA1,ACAA2,ACACA,ACACB,ACAD10,ACAD11,ACAD8,ACAD9,ACADL,ACADM,ACADS,ACADSB,ACADVL,ACAN,ACAP1,ACAP2,ACAP3,ACAT1,ACAT2,ACBD3,ACBD4,ACBD5,ACBD6,ACBD7,ACCS,ACCSL,ACD,ACE,ACE2,ACER1,ACER2,ACER3,ACHE,ACIN1,ACKR1,ACKR3,ACKR4,ACLY,ACMSD,ACO1,ACO2,ACOT1,ACOT11,ACOT12,ACOT13,ACOT2,ACOT4,ACOT7,ACOT8,ACOT9,ACOX1,ACOX2,ACOX3,ACOXL,ACP1,ACP2,ACP3,ACP4,ACP5,ACP6,ACP7,ACR,ACRBP,ACRV1,ACSBG1,ACSBG2,ACSF2,ACSF3,ACSL1,ACSL3,ACSL4,ACSL5,ACSL6,ACSM1,ACSM2A,ACSM2B,ACSM3,ACSM5,ACSM6,ACSS1,ACSS2,ACSS3,ACTA1,ACTA2,ACTB,ACTC1,ACTG1,ACTG2,ACTL6A,ACTL6B,ACTL7A,ACTL7B,ACTL8,ACTL9,ACTMAP,ACTN1,ACTN2,ACTN3,ACTN4,ACTR10,ACTR1A,ACTR1B,ACTR2,ACTR3,ACTR3B,ACTR3C,ACTR5,ACTR6,ACTR8,ACTRT1,ACTRT2,ACTRT3,ACVR1,ACVR1B,ACVR2A,ACVR2B,ACVRL1,ACY1,ACY3,ACYP1,ACYP2,ADA,ADA2,ADAD1,ADAD2,ADAM10,ADAM11,ADAM12,ADAM15,ADAM17,ADAM18,ADAM19,ADAM2,ADAM20,ADAM21,ADAM21P1,ADAM22,ADAM23,ADAM28,ADAM29,ADAM30,ADAM32,ADAM33,ADAM3A,ADAM5,ADAM6,ADAM7,ADAM8,ADAM9,ADAMDEC1,ADAMTS1,ADAMTS10,ADAMTS12,ADAMTS13,ADAMTS14,ADAMTS15,ADAMTS16,ADAMTS17,ADAMTS18,ADAMTS19,ADAMTS2,ADAMTS20,ADAMTS3,ADAMTS4,ADAMTS5,ADAMTS6,ADAMTS7,ADAMTS8,ADAMTS9,ADAMTSL1,ADAMTSL3,ADAMTSL4,ADAMTSL4-AS1,ADAMTSL5,ADAP1,ADAP2,ADAR,ADARB1,ADARB2,ADAT1,ADAT2,ADAT3,ADCK1,ADCK2,ADCK5,ADCY1,ADCY10,ADCY2,ADCY3,ADCY4,ADCY5,ADCY6,ADCY7,ADCY8,ADCY9,ADCYAP1,ADCYAP1R1,ADD1,ADD2,ADD3,ADGRA1,ADGRA2,ADGRA3,ADGRB1,ADGRB2,ADGRB3,ADGRD1,ADGRD2,ADGRE1,ADGRE2,ADGRE3,ADGRF1,ADGRF2P,ADGRF3,ADGRF4,ADGRF5,ADGRG1,ADGRG2,ADGRG3,ADGRG4,ADGRG5,ADGRG6,ADGRG7,ADGRL1,ADGRL2,ADGRL3,ADGRL4,ADGRV1,ADH1A,ADH1B,ADH1C,ADH4,ADH5,ADH6,ADH7,ADHFE1,ADI1,ADIG,ADIPOQ,ADIPOR1,ADIPOR2,ADIRF,ADISSP,ADK,ADM,ADM2,ADM5,ADNP,ADNP2,ADO,ADORA1,ADORA2A,ADORA2B,ADORA3,ADPGK,ADPRH,ADPRHL1,ADPRM,ADPRS,ADRA1A,ADRA1B,ADRA1D,ADRA2A,ADRA2B,ADRA2C,ADRB1,ADRB2,ADRB3,ADRM1,ADSL,ADSS1,ADSS2,ADTRP,AEBP1,AEBP2,AEN,AFAP1,AFAP1-AS1,AFAP1L1,AFAP1L2,AFDN,AFDN-DT,AFF1,AFF2,AFF3,AFF4,AFG1L,AFG2A,AFG2B,AFG3L1P,AFG3L2,AFM,AFP,AFTPH,AGA,AGAP1,AGAP10P,AGAP11,AGAP2,AGAP3,AGAP4,AGAP5,AGAP6,AGAP7P,AGAP9,AGBL1,AGBL2,AGBL3,AGBL4,AGBL5,AGER,AGFG1,AGFG2,AGGF1,AGK,AGL,AGMAT,AGMO,AGO1,AGO2,AGO3,AGO4,AGPAT1,AGPAT2,AGPAT3,AGPAT4,AGPAT4-IT1,AGPAT5,AGPS,AGR2,AGR3,AGRP,AGT,AGTPBP1,AGTR1,AGTR2,AGTRAP,AGXT,AGXT2,AHCTF1,AHCY,AHCYL1,AHCYL2,AHDC1,AHI1,AHNAK,AHNAK2,AHR,AHRR,AHSA1,AHSA2P,AHSG,AHSP,AICDA,AIDA,AIF1,AIF1L,AIFM1,AIFM2,AIFM3,AIG1,AIM2,AIMP1,AIMP2,AIP,AIPL1,AIRE,AIRIM,AJAP1,AJM1,AJUBA,AK1,AK2,AK3,AK4,AK5,AK7,AK8,AK9,AKAP1,AKAP10,AKAP11,AKAP12,AKAP13,AKAP14,AKAP3,AKAP4,AKAP5,AKAP6,AKAP7,AKAP8,AKAP8L,AKAP9,AKIP1,AKIRIN1,AKIRIN2,AKNA,AKNAD1,AKR1A1,AKR1B1,AKR1B10,AKR1B15,AKR1C1,AKR1C2,AKR1C3,AKR1C4,AKR1D1,AKR1E2,AKR7A2,AKR7A2P1,AKR7A3,AKR7L,AKT1,AKT1S1,AKT2,AKT3,AKTIP,ALAD,ALAS1,ALAS2,ALB,ALCAM,ALDH16A1,ALDH18A1,ALDH1A1,ALDH1A2,ALDH1A3,ALDH1B1,ALDH1L1,ALDH2,ALDH3A1,ALDH3A2,ALDH3B1,ALDH3B2,ALDH5A1,ALDH6A1,ALDH7A1,ALDH8A1,ALDH9A1,ALDOA,ALDOAP2,ALDOB,ALDOC,ALG1,ALG10,ALG10B,ALG11,ALG12,ALG13,ALG14,ALG1L1P,ALG2,ALG3,ALG5,ALG6,ALG8,ALG9,ALK,ALKAL1,ALKAL2,ALKBH1,ALKBH2,ALKBH3,ALKBH4,ALKBH5,ALKBH6,ALKBH7,ALKBH8,ALLC,ALMS1,ALMS1P1,ALOX12,ALOX12B,ALOX15,ALOX15B,ALOX5,ALOX5AP,ALOXE3,ALPG,ALPI,ALPK1,ALPK2,ALPK3,ALPL,ALPP,ALS2,ALS2CL,ALX1,ALX3,ALX4,ALYREF,AMACR,AMBN,AMBP,AMBRA1,AMD1,AMDHD1,AMDHD2,AMELX,AMELY,AMER1,AMER2,AMER3,AMFR,AMH,AMHR2,AMIGO1,AMIGO2,AMIGO3,AMMECR1,AMMECR1L,AMN,AMN1,AMOT,AMOTL1,AMOTL2,AMPD1,AMPD2,AMPD3,AMPH,AMT,AMTN,AMY1A,AMY1B,AMY1C,AMY2A,AMY2B,AMZ2,AMZ2P1,AN,ANAPC1,ANAPC10,ANAPC11,ANAPC13,ANAPC15,ANAPC16,ANAPC2,ANAPC4,ANAPC5,ANG,ANGEL1,ANGEL2,ANGPT1,ANGPT2,ANGPT4,ANGPTL1,ANGPTL2,ANGPTL3,ANGPTL4,ANGPTL5,ANGPTL6,ANGPTL7,ANGPTL8,ANK1,ANK2,ANK3,ANKAR,ANKDD1A,ANKEF1,ANKFN1,ANKFY1,ANKH,ANKHD1,ANKK1,ANKLE1,ANKMY1,ANKMY2,ANKRA2,ANKRD1,ANKRD10,ANKRD11,ANKRD12,ANKRD13A,ANKRD13B,ANKRD13C,ANKRD13C-DT,ANKRD13D,ANKRD16,ANKRD17,ANKRD18A,ANKRD18B,ANKRD2,ANKRD20A1,ANKRD20A11P,ANKRD20A2P,ANKRD20A3P,ANKRD20A4P,ANKRD20A8P,ANKRD22,ANKRD23,ANKRD26,ANKRD26P1,ANKRD27,ANKRD28,ANKRD29,ANKRD30A,ANKRD30B,ANKRD30BL,ANKRD30BP2,ANKRD33,ANKRD34B,ANKRD35,ANKRD36,ANKRD36B,ANKRD36BP1,ANKRD36BP2,ANKRD37,ANKRD39,ANKRD40,ANKRD40CL,ANKRD42,ANKRD44,ANKRD45,ANKRD46,ANKRD49,ANKRD50,ANKRD52,ANKRD53,ANKRD54,ANKRD55,ANKRD6,ANKRD60,ANKRD7,ANKRD9,ANKS1A,ANKS1B,ANKS3,ANKS4B,ANKS6,ANKZF1,ANLN,ANO1,ANO10,ANO2,ANO3,ANO4,ANO5,ANO7,ANOS1,ANP32A,ANP32A-IT1,ANP32B,ANP32CP,ANP32D,ANP32E,ANPEP,ANTKMT,ANTXR1,ANTXR2,ANXA1,ANXA10,ANXA11,ANXA13,ANXA2,ANXA2P1,ANXA2P2,ANXA2P3,ANXA2R,ANXA3,ANXA4,ANXA5,ANXA6,ANXA7,ANXA9,AOAH,AOC2,AOC3,AOPEP,AOX1,AP1AR,AP1B1,AP1G1,AP1G2,AP1M1,AP1M2,AP1S1,AP1S2,AP1S3,AP2A1,AP2A2,AP2B1,AP2M1,AP2S1,AP3B1,AP3B2,AP3D1,AP3M1,AP3M2,AP3S1,AP3S2,AP4B1,AP4E1,AP4M1,AP4S1,AP5M1,AP5S1,AP5Z1,APAF1,APBA1,APBA2,APBA3,APBB1,APBB1IP,APBB2,APBB3,APC,APC2,APCDD1,APCDD1L,APCS,APEH,APEX1,APEX2,APH1A,APH1B,API5,APIP,APLF,APLN,APLNR,APLP1,APLP2,APMAP,APOA1,APOA2,APOA4,APOA5,APOB,APOBEC1,APOBEC2,APOBEC3A,APOBEC3B,APOBEC3C,APOBEC3D,APOBEC3F,APOBEC3G,APOBEC3H,APOBEC4,APOBR,APOC1,APOC1P1,APOC2,APOC3,APOC4,APOD,APOE,APOF,APOH,APOL1,APOL2,APOL3,APOL4,APOL5,APOL6,APOLD1,APOM,APOO,APOOL,APP,APPBP2,APPL1,APPL2,APRG1,APRT,APTX,AQP1,AQP10,AQP11,AQP2,AQP3,AQP4,AQP4-AS1,AQP5,AQP6,AQP7,AQP7P1,AQP8,AQP9,AQR,AR,ARAF,ARAP1,ARAP2,ARAP3,ARB2A,ARCN1,AREG,AREL1,ARF1,ARF3,ARF4,ARF5,ARF6,ARFGAP1,ARFGAP2,ARFGAP3,ARFGEF1,ARFGEF2,ARFGEF3,ARFIP1,ARFIP2,ARFRP1,ARG1,ARG2,ARGLU1,ARHGAP1,ARHGAP10,ARHGAP11A,ARHGAP11B,ARHGAP12,ARHGAP15,ARHGAP17,ARHGAP18,ARHGAP19,ARHGAP20,ARHGAP21,ARHGAP22,ARHGAP24,ARHGAP25,ARHGAP26,ARHGAP27,ARHGAP28,ARHGAP29,ARHGAP30,ARHGAP32,ARHGAP33,ARHGAP35,ARHGAP36,ARHGAP4,ARHGAP42,ARHGAP44,ARHGAP45,ARHGAP5,ARHGAP5-AS1,ARHGAP6,ARHGAP8,ARHGAP9,ARHGDIA,ARHGDIB,ARHGDIG,ARHGEF1,ARHGEF10,ARHGEF10L,ARHGEF11,ARHGEF12,ARHGEF15,ARHGEF16,ARHGEF17,ARHGEF18,ARHGEF19,ARHGEF2,ARHGEF25,ARHGEF26,ARHGEF28,ARHGEF3,ARHGEF35,ARHGEF37,ARHGEF38,ARHGEF39,ARHGEF4,ARHGEF40,ARHGEF5,ARHGEF6,ARHGEF7,ARID1A,ARID1B,ARID3A,ARID3B,ARID3C,ARID4A,ARID4B,ARID5A,ARIH1,ARIH2,ARK2C,ARK2N,ARL1,ARL10,ARL11,ARL13B,ARL14,ARL14EP,ARL15,ARL17A,ARL17B,ARL2,ARL2BP,ARL3,ARL4A,ARL4C,ARL4D,ARL5B,ARL6,ARL6IP1,ARL6IP4,ARL6IP5,ARL6IP6,ARL8A,ARL8B,ARL9,ARLN,ARMC1,ARMC10,ARMC12,ARMC2,ARMC3,ARMC5,ARMC6,ARMC7,ARMC8,ARMC9,ARMCX1,ARMCX2,ARMCX3,ARMCX4,ARMCX5,ARMCX5-GPRASP2,ARMCX6,ARMH1,ARMH3,ARMH4,ARMT1,ARNT,ARNT2,ARPC1A,ARPC1B,ARPC2,ARPC4,ARPC5,ARPC5L,ARPIN-AP3S2,ARPP19,ARPP21,ARR3,ARRB1,ARRB2,ARRDC1,ARRDC1-AS1,ARRDC2,ARRDC3,ARRDC4,ARSA,ARSB,ARSD,ARSF,ARSG,ARSJ,ARSK,ARSL,ART1,ART3,ART4,ART5,ARTN,ARV1,ARVCF,ARX,AS3MT,ASAH1,ASAH2,ASAH2B,ASAP1,ASAP1-IT1,ASAP2,ASAP3,ASB1,ASB10,ASB11,ASB12,ASB13,ASB14,ASB15,ASB16,ASB16-AS1,ASB17,ASB18,ASB2,ASB3,ASB4,ASB5,ASB6,ASB7,ASB8,ASB9,ASB9P1,ASCC1,ASCC2,ASCC3,ASCL1,ASCL2,ASCL3,ASCL4,ASF1A,ASF1B,ASGR1,ASGR2,ASH1L,ASH2L,ASIC1,ASIC2,ASIC3,ASIC4,ASIC5,ASIP,ASL,ASNS,ASNSD1,ASPA,ASPDH,ASPH,ASPHD1,ASPHD2,ASPM,ASPN,ASPRV1,ASPSCR1,ASRGL1,ASTE1,ASTL,ASTN1,ASTN2,ASXL1,ASXL2,ASZ1,ATAD1,ATAD2,ATAD2B,ATAD3A,ATAD3B,ATAD3C,ATAD5,ATAT1,ATCAY,ATE1,ATF1,ATF2,ATF3,ATF4,ATF5,ATF6,ATF6B,ATF7,ATF7IP,ATF7IP2,ATG10,ATG101,ATG12,ATG13,ATG14,ATG16L1,ATG2B,ATG3,ATG4A,ATG4C,ATG4D,ATG5,ATG7,ATG9A,ATG9B,ATIC,ATL1,ATL2,ATL3,ATM,ATMIN,ATN1,ATOH1,ATOH7,ATOH8,ATOSB,ATOX1,ATP10A,ATP10B,ATP10D,ATP11AUN,ATP11B,ATP11C,ATP12A,ATP13A1,ATP13A2,ATP13A3,ATP13A4,ATP13A5,ATP1A1,ATP1A2,ATP1A3,ATP1A4,ATP1B1,ATP1B2,ATP1B3,ATP1B4,ATP23,ATP2A1,ATP2A2,ATP2A3,ATP2B1,ATP2B2,ATP2B3,ATP2B4,ATP2C1,ATP2C2,ATP4A,ATP4B,ATP5F1A,ATP5F1B,ATP5F1C,ATP5F1D,ATP5F1E,ATP5F1EP2,ATP5IF1,ATP5MC1,ATP5MC2,ATP5MC3,ATP5ME,ATP5MG,ATP5MGL,ATP5MJ,ATP5MK,ATP5PB,ATP5PD,ATP5PF,ATP5PO,ATP6,ATP6AP1,ATP6AP2,ATP6V0A1,ATP6V0A2,ATP6V0A4,ATP6V0B,ATP6V0C,ATP6V0D1,ATP6V0D2,ATP6V0E1,ATP6V0E2,ATP6V1A,ATP6V1B1,ATP6V1B2,ATP6V1C1,ATP6V1C2,ATP6V1D,ATP6V1E1,ATP6V1E2,ATP6V1F,ATP6V1G1,ATP6V1G2,ATP6V1G3,ATP6V1H,ATP7A,ATP7B,ATP8,ATP8A1,ATP8A2,ATP8B1,ATP8B2,ATP8B3,ATP8B4,ATP8B5P,ATP9B,ATPAF2,ATPSCKMT,ATR,ATRAID,ATRIP,ATRN,ATRNL1,ATRX,ATXN1,ATXN10,ATXN2,ATXN2L,ATXN3,ATXN7,ATXN7L1,ATXN7L2,ATXN7L3B,ATXN8,ATXN8OS,AUH,AUNIP,AUP1,AURKA,AURKAP1,AURKB,AURKC,AUTS2,AVEN,AVIL,AVL9,AVP,AVPI1,AVPR1A,AVPR2,AWAT2,AXDND1,AXIN1,AXIN2,AXL,AZGP1,AZGP1P1,AZI2,AZIN1,AZU1,B2M,B3GALNT1,B3GALNT2,B3GALT1,B3GALT2,B3GALT4,B3GALT5,B3GALT5-AS1,B3GALT6,B3GAT1,B3GAT2,B3GAT3,B3GLCT,B3GNT2,B3GNT3,B3GNT4,B3GNT5,B3GNT6,B3GNT7,B3GNT8,B3GNT9,B3GNTL1,B4GALNT1,B4GALNT2,B4GALNT3,B4GALNT4,B4GALT1,B4GALT2,B4GALT3,B4GALT4,B4GALT5,B4GALT6,B4GALT7,B4GAT1,B9D1,B9D2,BAALC,BAALC-AS2,BAAT,BABAM1,BABAM2,BACE1,BACE2,BACH1,BACH2,BAD,BAG1,BAG2,BAG3,BAG4,BAG5,BAG6,BAGE,BAGE2,BAGE3,BAGE4,BAGE5,BAHCC1,BAHD1,BAIAP2,BAIAP2L1,BAIAP2L2,BAIAP3,BAK1,BAMBI,BANF1,BANF2,BANK1,BANP,BAP1,BARD1,BARHL1,BARHL2,BARX1,BARX2,BASP1,BATF,BATF2,BATF3,BAX,BAZ1A,BAZ1B,BAZ2A,BAZ2B,BBC3,BBLN,BBOF1,BBOX1,BBS1,BBS10,BBS12,BBS2,BBS4,BBS5,BBS7,BBS9,BBX,BCAM,BCAN,BCAP29,BCAP31,BCAR1,BCAR3,BCAS1,BCAS2,BCAS3,BCAS4,BCAT1,BCAT2,BCCIP,BCDIN3D,BCHE,BCKDHB,BCKDK,BCL10,BCL11A,BCL11B,BCL2,BCL2A1,BCL2L1,BCL2L10,BCL2L11,BCL2L12,BCL2L13,BCL2L14,BCL2L2,BCL3,BCL6,BCL6B,BCL7B,BCL7C,BCL9,BCL9L,BCLAF1,BCO1,BCO2,BCOR,BCORL1,BCR,BCS1L,BDH1,BDH2,BDKRB1,BDKRB2,BDNF,BDP1,BECN1,BEGAIN,BEND2,BEND4,BEND5,BEND6,BEND7,BEST1,BEST2,BEST3,BEST4,BET1,BET1L,BEX1,BEX2,BEX3,BFAR,BFSP1,BFSP2,BGLAP,BGN,BHLHA15,BHLHE22,BHLHE40,BHLHE41,BHMT,BHMT2,BICC1,BICD1,BICD2,BICDL1,BICRA,BID,BIK,BIN1,BIN2,BIN3,BIRC2,BIRC3,BIRC5,BIRC6,BIRC7,BIRC8,BIVM,BLCAP,BLID,BLK,BLM,BLMH,BLNK,BLOC1S1,BLOC1S2,BLOC1S3,BLOC1S4,BLOC1S5,BLOC1S6,BLTP1,BLTP2,BLTP3A,BLTP3B,BLVRA,BLVRB,BLZF1,BMAL1,BMAL2,BMERB1,BMF,BMI1,BMP1,BMP10,BMP15,BMP2,BMP2K,BMP3,BMP4,BMP5,BMP6,BMP7,BMP8A,BMP8B,BMPER,BMPR1A,BMPR1B,BMPR2,BMS1,BMS1P1,BMX,BNC1,BNC2,BNIP1,BNIP2,BNIP3,BNIP3L,BNIPL,BOC,BOD1,BOD1L1,BOD1L2,BOK,BOK-AS1,BOLA1,BOLL,BORA,BORCS5,BORCS6,BORCS7,BPESC1,BPGM,BPHL,BPI,BPIFA1,BPIFA2,BPIFA3,BPIFA4P,BPIFB1,BPIFB2,BPIFB3,BPIFB4,BPIFB6,BPIFC,BPNT1,BPNT2,BPTF,BRAF,BRAP,BRAT1,BRCA1,BRCA2,BRCC3,BRD1,BRD2,BRD3,BRD3OS,BRD4,BRD7P3,BRD8,BRD9,BRDT,BRF1,BRF2,BRI3,BRI3BP,BRICD5,BRINP2,BRINP3,BRIP1,BRIX1,BRK1,BRME1,BRMS1,BRMS1L,BRPF1,BRS3,BRSK1,BRSK2,BRWD1,BRWD1-AS2,BRWD3,BSCL2,BSDC1,BSG,BSN,BSND,BSPRY,BST1,BST2,BTAF1,BTBD1,BTBD10,BTBD16,BTBD2,BTBD3,BTBD6,BTBD7,BTBD8,BTBD9,BTC,BTD,BTF3,BTF3L4,BTF3P11,BTF3P9,BTG1,BTG2,BTG3,BTG4,BTK,BTLA,BTN1A1,BTN2A1,BTN2A2,BTN2A3P,BTN3A1,BTN3A2,BTN3A3,BTNL2,BTNL3,BTNL8,BTNL9,BTRC,BUB1,BUB1B,BUB3,BUD13,BUD23,BUD31,BYSL,BZW1,BZW2,C10orf126,C10orf53,C10orf55,C10orf62,C10orf67,C10orf71,C10orf88,C10orf90,C10orf95,C11orf16,C11orf21,C11orf24,C11orf40,C11orf42,C11orf54,C11orf58,C11orf65,C11orf68,C11orf71,C11orf87,C11orf91,C11orf98,C12orf42,C12orf43,C12orf50,C12orf54,C12orf57,C12orf60,C12orf75,C12orf76,C14orf119,C14orf132,C14orf39,C14orf93,C15orf32,C15orf39,C15orf40,C15orf48,C16orf46,C16orf54,C16orf74,C16orf78,C16orf82,C16orf87,C16orf89,C17orf107,C17orf50,C17orf58,C17orf75,C17orf78,C17orf99,C18orf15,C18orf21,C18orf32,C19orf12,C19orf18,C19orf25,C19orf33,C19orf44,C19orf47,C19orf48P,C19orf53,C19orf73,C1GALT1,C1GALT1C1,C1QA,C1QB,C1QBP,C1QC,C1QL1,C1QL2,C1QL3,C1QTNF1,C1QTNF2,C1QTNF3,C1QTNF4,C1QTNF5,C1QTNF6,C1QTNF7,C1QTNF8,C1QTNF9,C1QTNF9B,C1R,C1RL,C1S,C1orf105,C1orf115,C1orf116,C1orf159,C1orf162,C1orf174,C1orf198,C1orf21,C1orf210,C1orf216,C1orf220,C1orf226,C1orf35,C1orf43,C1orf50,C1orf52,C1orf54,C1orf56,C1orf74,C1orf87,C1orf94,C2,C20orf141,C20orf144,C20orf173,C20orf203,C20orf204,C20orf96,C21orf58,C21orf91,C21orf91-OT1,C22orf15,C22orf23,C22orf31,C22orf39,C22orf46P,C2CD2,C2CD2L,C2CD3,C2CD4A,C2CD4B,C2CD5,C2CD6,C2orf15,C2orf42,C2orf49,C2orf69,C2orf88,C3,C3AR1,C3orf18,C3orf20,C3orf22,C3orf33,C3orf36,C3orf38,C3orf49,C3orf52,C3orf62,C4A,C4B,C4BPA,C4BPB,C4orf17,C4orf33,C4orf36,C4orf46,C4orf50,C5,C5AR1,C5AR2,C5orf15,C5orf22,C5orf24,C5orf34,C5orf46,C5orf58,C6,C6orf118,C6orf136,C6orf141,C6orf147,C6orf15,C6orf47,C6orf58,C6orf62,C6orf89,C7,C7orf25,C7orf33,C8A,C8B,C8G,C8orf17,C8orf33,C8orf34,C8orf44,C8orf48,C8orf58,C8orf76,C8orf82,C9,C9orf153,C9orf163,C9orf40,C9orf43,C9orf50,C9orf72,C9orf78,C9orf85,CA1,CA10,CA11,CA12,CA13,CA14,CA2,CA3,CA4,CA5A,CA5B,CA5BP1,CA6,CA7,CA8,CA9,CAAP1,CAB39,CAB39L,CABCOCO1,CABIN1,CABLES1,CABP1,CABP2,CABP4,CABP5,CABP7,CABS1,CABYR,CACHD1,CACNA1A,CACNA1B,CACNA1C,CACNA1D,CACNA1E,CACNA1F,CACNA1G,CACNA1G-AS1,CACNA1H,CACNA1I,CACNA1S,CACNA2D1,CACNA2D2,CACNA2D3,CACNA2D4,CACNB1,CACNB2,CACNB3,CACNB4,CACNG1,CACNG2,CACNG3,CACNG4,CACNG5,CACNG6,CACNG7,CACNG8,CACUL1,CACYBP,CAD,CADM1,CADM2,CADM3,CADM4,CADPS,CADPS2,CAGE1,CALB1,CALB2,CALCA,CALCB,CALCOCO1,CALCOCO2,CALCR,CALCRL,CALD1,CALHM1,CALHM2,CALHM3,CALHM4,CALHM5,CALM1,CALM2,CALM3,CALML3,CALML4,CALML5,CALML6,CALN1,CALR,CALR3,CALU,CALY,CAMK1,CAMK1D,CAMK1G,CAMK2A,CAMK2B,CAMK2D,CAMK2G,CAMK2N1,CAMK2N2,CAMK4,CAMKK1,CAMKK2,CAMKMT,CAMKV,CAMLG,CAMP,CAMSAP1,CAMSAP2,CAMTA1,CAMTA2,CAND1,CANT1,CANX,CAP1,CAP2,CAPG,CAPN1,CAPN10,CAPN11,CAPN12,CAPN13,CAPN15,CAPN2,CAPN3,CAPN5,CAPN6,CAPN7,CAPN9,CAPNS1,CAPNS2,CAPRIN1,CAPRIN2,CAPS,CAPS2,CAPSL,CAPZA1,CAPZA2,CAPZA3,CAPZB,CARD10,CARD11,CARD14,CARD16,CARD17P,CARD18,CARD19,CARD6,CARD8,CARD9,CARF,CARHSP1,CARINH,CARM1,CARMIL1,CARMIL3,CARNMT1,CARNS1,CARS1,CARS2,CARTPT,CASC2,CASC3,CASD1,CASK,CASKIN1,CASKIN2,CASP1,CASP10,CASP12,CASP14,CASP2,CASP3,CASP4,CASP5,CASP6,CASP7,CASP8,CASP8AP2,CASP9,CASQ1,CASQ2,CASR,CASS4,CAST,CASTOR1,CASTOR3P,CASZ1,CAT,CATIP,CATSPER1,CATSPER2,CATSPER2P1,CATSPER3,CATSPERB,CATSPERD,CATSPERE,CATSPERG,CATSPERZ,CAV1,CAV2,CAV3,CAVIN1,CAVIN2,CAVIN3,CBARP,CBFA2T2,CBFA2T3,CBFB,CBL,CBLB,CBLC,CBLL1,CBLL2,CBLN1,CBLN2,CBLN3,CBLN4,CBR1,CBR3,CBR4,CBS,CBX1,CBX2,CBX3,CBX4,CBX5,CBX6,CBX7,CBX8,CBY1,CBY2,CC2D1A,CC2D1B,CC2D2B,CCAR1,CCAR2,CCBE1,CCDC102A,CCDC102B,CCDC106,CCDC107,CCDC110,CCDC112,CCDC115,CCDC116,CCDC117,CCDC12,CCDC120,CCDC121,CCDC122,CCDC124,CCDC125,CCDC126,CCDC127,CCDC13,CCDC134,CCDC136,CCDC137,CCDC138,CCDC14,CCDC140,CCDC141,CCDC142,CCDC144A,CCDC144BP,CCDC144CP,CCDC144NL,CCDC146,CCDC148,CCDC149,CCDC15,CCDC150,CCDC158,CCDC159,CCDC169,CCDC17,CCDC170,CCDC171,CCDC172,CCDC174,CCDC177,CCDC178,CCDC18,CCDC181,CCDC183,CCDC185,CCDC186,CCDC190,CCDC191,CCDC196,CCDC197,CCDC198,CCDC22,CCDC24,CCDC25,CCDC26,CCDC27,CCDC28A,CCDC28B,CCDC3,CCDC30,CCDC32,CCDC33,CCDC34,CCDC38,CCDC40,CCDC42,CCDC43,CCDC47,CCDC50,CCDC51,CCDC54,CCDC57,CCDC59,CCDC6,CCDC60,CCDC62,CCDC63,CCDC65,CCDC68,CCDC69,CCDC7,CCDC70,CCDC71,CCDC73,CCDC77,CCDC78,CCDC8,CCDC80,CCDC81,CCDC82,CCDC83,CCDC85B,CCDC85C,CCDC86,CCDC87,CCDC88A,CCDC88B,CCDC88C,CCDC89,CCDC9,CCDC90B,CCDC91,CCDC92,CCDC93,CCDC97,CCDC9B,CCER1,CCHCR1,CCIN,CCK,CCKAR,CCKBR,CCL1,CCL11,CCL13,CCL14,CCL15,CCL16,CCL17,CCL18,CCL19,CCL2,CCL20,CCL21,CCL22,CCL23,CCL24,CCL25,CCL26,CCL27,CCL28,CCL4,CCL4L1,CCL4L2,CCL5,CCL7,CCL8,CCM2,CCM2L,CCN1,CCN2,CCN4,CCN5,CCN6,CCNA1,CCNA2,CCNB1,CCNB1IP1,CCNB2,CCNB3,CCNC,CCND1,CCND2,CCND3,CCNDBP1,CCNE1,CCNE2,CCNF,CCNG1,CCNG2,CCNH,CCNI,CCNJ,CCNJL,CCNK,CCNL1,CCNL2,CCNO,CCNP,CCNQ,CCNT1,CCNT2,CCNY,CCNYL1,CCP110,CCPG1,CCR1,CCR10,CCR2,CCR3,CCR4,CCR6,CCR7,CCR9,CCRL2,CCS,CCSAP,CCSER1,CCSER2,CCT2,CCT3,CCT4,CCT5,CCT6A,CCT6B,CCT7,CCT8,CCT8L2,CD101,CD109,CD14,CD151,CD160,CD163,CD163L1,CD164,CD164L2,CD177,CD180,CD19,CD1A,CD1B,CD1C,CD1D,CD1E,CD2,CD200,CD200R1,CD200R1L,CD207,CD209,CD22,CD226,CD24,CD244,CD247,CD248,CD27,CD274,CD276,CD28,CD2AP,CD2BP2,CD300A,CD300C,CD300E,CD300LB,CD300LD,CD300LD-AS1,CD300LF,CD300LG,CD302,CD320,CD33,CD34,CD36,CD37,CD38,CD3D,CD3E,CD3G,CD4,CD40,CD40LG,CD44,CD46,CD47,CD48,CD5,CD52,CD53,CD55,CD58,CD59,CD5L,CD6,CD63,CD68,CD69,CD7,CD70,CD72,CD74,CD79A,CD79B,CD80,CD81,CD82,CD83,CD84,CD86,CD8A,CD8B,CD9,CD93,CD96,CD99,CD99L2,CDA,CDADC1,CDAN1,CDC123,CDC14A,CDC14B,CDC16,CDC20,CDC20B,CDC23,CDC25A,CDC25B,CDC25C,CDC26,CDC27,CDC34,CDC37,CDC37L1,CDC40,CDC42,CDC42BPA,CDC42BPB,CDC42BPG,CDC42EP1,CDC42EP2,CDC42EP3,CDC42EP4,CDC42EP5,CDC42SE1,CDC42SE2,CDC45,CDC5L,CDC6,CDC7,CDC73,CDCA2,CDCA3,CDCA4,CDCA5,CDCA7,CDCA7L,CDCA8,CDCP1,CDCP2,CDH1,CDH10,CDH11,CDH12,CDH13,CDH15,CDH16,CDH17,CDH18,CDH19,CDH2,CDH20,CDH22,CDH23,CDH24,CDH26,CDH3,CDH4,CDH5,CDH6,CDH7,CDH8,CDH9,CDHR1,CDHR2,CDHR3,CDHR4,CDHR5,CDIN1,CDIP1,CDIPT,CDK1,CDK10,CDK11A,CDK11B,CDK12,CDK13,CDK14,CDK15,CDK16,CDK17,CDK18,CDK19,CDK2,CDK20,CDK2AP1,CDK2AP2,CDK3,CDK4,CDK5,CDK5R1,CDK5R2,CDK5RAP1,CDK5RAP2,CDK5RAP3,CDK6,CDK7,CDK8,CDK9,CDKAL1,CDKL1,CDKL2,CDKL3,CDKL5,CDKN1A,CDKN1B,CDKN1C,CDKN2A,CDKN2A-AS1,CDKN2AIP,CDKN2AIPNL,CDKN2B,CDKN2B-AS1,CDKN2C,CDKN2D,CDKN3,CDO1,CDON,CDPF1,CDR1,CDR2,CDR2L,CDRT15L2,CDRT15P2,CDRT4,CDS1,CDS2,CDSN,CDT1,CDV3,CDX1,CDX2,CDX4,CDYL,CDYL2,CEACAM1,CEACAM19,CEACAM20,CEACAM21,CEACAM3,CEACAM4,CEACAM5,CEACAM6,CEACAM7,CEACAM8,CEBPA,CEBPB,CEBPD,CEBPE,CEBPG,CEBPZ,CECR2,CECR7,CEL,CELA1,CELA2A,CELA2B,CELA3A,CELA3B,CELF1,CELF2,CELF3,CELF4,CELF5,CELF6,CELP,CELSR1,CELSR2,CELSR3,CEMIP,CEMIP2,CEMP1,CENATAC,CEND1,CENPA,CENPB,CENPBD1P,CENPC,CENPE,CENPF,CENPH,CENPI,CENPK,CENPL,CENPM,CENPN,CENPO,CENPP,CENPQ,CENPS-CORT,CENPT,CENPU,CENPV,CENPX,CEP104,CEP112,CEP120,CEP128,CEP135,CEP15,CEP162,CEP164,CEP170,CEP170B,CEP170P1,CEP19,CEP192,CEP20,CEP250,CEP290,CEP350,CEP41,CEP43,CEP44,CEP55,CEP57,CEP57L1,CEP63,CEP68,CEP70,CEP72,CEP76,CEP83,CEP85,CEP85L,CEP89,CEP95,CEP97,CEPT1,CER1,CERCAM,CERK,CERKL,CERS1,CERS2,CERS3,CERS4,CERS5,CERS6,CERT1,CES2,CES3,CES4A,CES5A,CETN1,CETN2,CETN3,CETP,CFAP100,CFAP107,CFAP141,CFAP157,CFAP161,CFAP184,CFAP20,CFAP206,CFAP20DC,CFAP251,CFAP263,CFAP298,CFAP299,CFAP300,CFAP36,CFAP410,CFAP418,CFAP43,CFAP44,CFAP45,CFAP46,CFAP52,CFAP53,CFAP54,CFAP57,CFAP61,CFAP65,CFAP68,CFAP69,CFAP70,CFAP73,CFAP74,CFAP77,CFAP91,CFAP92,CFAP97,CFB,CFD,CFDP1,CFH,CFHR1,CFHR2,CFHR3,CFHR4,CFHR5,CFI,CFL1,CFL1P1,CFL2,CFLAR,CFP,CFTR,CGA,CGAS,CGB2,CGB5,CGB7,CGB8,CGGBP1,CGN,CGNL1,CGREF1,CGRRF1,CH25H,CHAC1,CHAC2,CHAD,CHAF1A,CHAF1B,CHAMP1,CHAT,CHCHD1,CHCHD10,CHCHD2,CHCHD3,CHCHD4,CHCHD5,CHCHD6,CHCHD7,CHCT1,CHD1,CHD1L,CHD2,CHD3,CHD4,CHD5,CHD6,CHD9,CHDH,CHEK1,CHEK2,CHERP,CHFR,CHGA,CHGB,CHI3L1,CHI3L2,CHIA,CHIC2,CHID1,CHIT1,CHKA,CHKB,CHKB-CPT1B,CHL1,CHLSN,CHM,CHML,CHMP1A,CHMP1B,CHMP2A,CHMP2B,CHMP4A,CHMP4B,CHMP4C,CHMP5,CHMP6,CHMP7,CHN1,CHN2,CHODL,CHORDC1,CHP2,CHPF,CHPF2,CHPT1,CHRAC1,CHRD,CHRDL1,CHRDL2,CHRFAM7A,CHRM1,CHRM2,CHRM3,CHRM4,CHRM5,CHRNA1,CHRNA10,CHRNA2,CHRNA3,CHRNA4,CHRNA5,CHRNA6,CHRNA7,CHRNA9,CHRNB1,CHRNB2,CHRNB3,CHRNB4,CHRND,CHRNE,CHRNG,CHST1,CHST10,CHST11,CHST12,CHST13,CHST14,CHST2,CHST3,CHST4,CHST5,CHST6,CHST7,CHST8,CHST9,CHSY1,CHSY3,CHTF18,CHTF8,CHTOP,CHUK,CHURC1,CIAO1,CIAO2A,CIAO2B,CIAO3,CIAPIN1,CIART,CIB1,CIB2,CIB3,CIBAR1,CIBAR1P2,CIBAR2,CIC,CIDEA,CIDEB,CIDEC,CIDECP1,CIITA,CILK1,CILP,CILP2,CIMAP1A,CIMAP1B,CIMAP1C,CIMAP1D,CIMAP2,CIMAP3,CIMIP1,CIMIP2A,CIMIP4,CIMIP5,CIMIP6,CINP,CIP2A,CIPC,CIR1,CIRBP,CIRBP-AS1,CIROZ,CISD1,CISD2,CISD3,CISH,CIT,CITED1,CITED2,CITED4,CIZ1,CKAP2,CKAP2L,CKAP4,CKAP5,CKB,CKLF,CKM,CKMT2,CKS1B,CKS2,CLASP1,CLASP2,CLASRP,CLBA1,CLC,CLCA1,CLCA2,CLCA3P,CLCA4,CLCC1,CLCF1,CLCN1,CLCN2,CLCN3,CLCN4,CLCN5,CLCN6,CLCN7,CLCNKA,CLCNKB,CLDN1,CLDN10,CLDN11,CLDN12,CLDN14,CLDN15,CLDN16,CLDN17,CLDN18,CLDN19,CLDN2,CLDN20,CLDN23,CLDN3,CLDN4,CLDN5,CLDN6,CLDN7,CLDN8,CLDN9,CLDND1,CLDND2,CLEC10A,CLEC11A,CLEC12A,CLEC12B,CLEC14A,CLEC17A,CLEC18A,CLEC18B,CLEC18C,CLEC1A,CLEC1B,CLEC20A,CLEC2A,CLEC2B,CLEC2D,CLEC3A,CLEC3B,CLEC4A,CLEC4C,CLEC4D,CLEC4E,CLEC4F,CLEC4G,CLEC4GP1,CLEC4M,CLEC5A,CLEC6A,CLEC7A,CLEC9A,CLECL1P,CLGN,CLHC1,CLIC1,CLIC2,CLIC3,CLIC4,CLIC5,CLIC6,CLINT1,CLIP1,CLIP2,CLIP3,CLIP4,CLK1,CLK2,CLK2P1,CLK3,CLK4,CLMN,CLMP,CLN5,CLN6,CLN8,CLNK,CLNS1A,CLOCK,CLP1,CLPB,CLPP,CLPS,CLPSL2,CLPTM1,CLPTM1L,CLPX,CLRN1,CLRN1-AS1,CLRN3,CLSPN,CLSTN1,CLSTN2,CLSTN3,CLTA,CLTB,CLTC,CLTCL1,CLTRN,CLU,CLUAP1,CLUHP3,CLUL1,CLVS1,CLXN,CLYBL,CMA1,CMAHP,CMAS,CMBL,CMC1,CMC2,CMC4,CMIP,CMKLR1,CMKLR2,CMPK1,CMPK2,CMSS1,CMTM1,CMTM2,CMTM3,CMTM4,CMTM5,CMTM6,CMTM7,CMTM8,CMTR1,CMTR2,CMYA5,CNBD1,CNBD2,CNBP,CNDP1,CNDP2,CNEP1R1,CNFN,CNGA1,CNGA2,CNGA3,CNGB1,CNGB3,CNIH1,CNIH2,CNIH3,CNIH4,CNKSR1,CNKSR2,CNKSR3,CNMD,CNN1,CNN2,CNN3,CNNM1,CNNM2,CNNM3,CNNM4,CNOT1,CNOT10,CNOT11,CNOT2,CNOT3,CNOT4,CNOT6,CNOT6L,CNOT7,CNOT8,CNOT9,CNP,CNPPD1,CNPY2,CNPY3,CNPY4,CNR1,CNR2,CNRIP1,CNST,CNTD1,CNTF,CNTFR,CNTLN,CNTN1,CNTN2,CNTN4,CNTN5,CNTN6,CNTNAP1,CNTNAP2,CNTNAP4,CNTNAP5,CNTRL,CNTROB,COA1,COA3,COA4,COA5,COA7,COA8,COASY,COBL,COBLL1,COCH,COG1,COG2,COG3,COG4,COG5,COG6,COG7,COG8,COIL,COL10A1,COL11A1,COL11A2,COL12A1,COL13A1,COL14A1,COL15A1,COL16A1,COL17A1,COL18A1,COL18A1-AS1,COL19A1,COL1A1,COL1A2,COL20A1,COL21A1,COL22A1,COL23A1,COL24A1,COL25A1,COL26A1,COL27A1,COL2A1,COL3A1,COL4A1,COL4A2,COL4A3,COL4A4,COL4A5,COL4A6,COL5A1,COL5A2,COL5A3,COL6A1,COL6A2,COL6A3,COL6A5,COL7A1,COL8A1,COL8A2,COL9A1,COL9A2,COL9A3,COLCA1,COLEC10,COLEC11,COLEC12,COLGALT1,COLGALT2,COLQ,COMMD1,COMMD10,COMMD2,COMMD3,COMMD4,COMMD5,COMMD6,COMMD8,COMMD9,COMP,COMT,COMTD1,COP1,COPA,COPB1,COPB2,COPE,COPG1,COPG2,COPRS,COPS2,COPS3,COPS4,COPS5,COPS6,COPS7A,COPS7B,COPS8,COPS9,COPZ1,COPZ2,COQ10A,COQ10B,COQ2,COQ3,COQ4,COQ6,COQ7,COQ8A,COQ8B,COQ9,CORIN,CORO1A,CORO1B,CORO1C,CORO2A,CORO2B,CORO6,CORO7,CORT,COTL1,COX10,COX11,COX14,COX15,COX16,COX17,COX18,COX19,COX20,COX3,COX4I1,COX4I2,COX5A,COX5B,COX6A2,COX6B1,COX6B2,COX6C,COX7A1,COX7A2,COX7A2L,COX7B,COX7B2,COX7C,COX8A,COX8C,CP,CPA1,CPA2,CPA3,CPA4,CPA5,CPA6,CPAMD8,CPAP,CPAT1,CPB1,CPB2,CPD,CPE,CPEB1,CPEB2,CPEB3,CPEB4,CPED1,CPLANE1,CPLANE2,CPLX1,CPLX2,CPLX3,CPLX4,CPM,CPN1,CPN2,CPNE1,CPNE2,CPNE3,CPNE4,CPNE5,CPNE6,CPNE7,CPNE8,CPNE9,CPO,CPOX,CPPED1,CPQ,CPS1,CPS1-IT1,CPSF1,CPSF2,CPSF3,CPSF4,CPSF6,CPSF7,CPT1A,CPT1B,CPT1C,CPT2,CPVL,CPXCR1,CPXM1,CPXM2,CPZ,CR1,CR1L,CR2,CRABP1,CRABP2,CRACDL,CRACR2A,CRACR2B,CRADD,CRAMP1,CRAT,CRB1,CRB2,CRB3,CRBN,CRCP,CRCT1,CREB1,CREB3,CREB3L1,CREB3L2,CREB3L3,CREB3L4,CREB5,CREBBP,CREBL2,CREBRF,CREBZF,CREG1,CREG2,CRELD1,CRELD2,CREM,CRH,CRHBP,CRHR1,CRHR2,CRIM1,CRIP1,CRIP2,CRIP3,CRIPT,CRIPTO,CRIPTO3,CRISP1,CRISP2,CRISP3,CRISPLD1,CRISPLD2,CRK,CRKL,CRLF1,CRLF3,CRLS1,CRMA,CRMP1,CRNKL1,CRNN,CROCC,CROCCP2,CROCCP3,CROT,CRP,CRSP8P,CRTAC1,CRTAM,CRTAP,CRTC1,CRTC2,CRTC3,CRX,CRY1,CRY2,CRYAA,CRYAB,CRYBA1,CRYBA2,CRYBA4,CRYBB1,CRYBB2,CRYBB2P1,CRYBB3,CRYBG2,CRYGA,CRYGB,CRYGC,CRYGD,CRYGEP,CRYGN,CRYGS,CRYL1,CRYM,CRYZ,CRYZL1,CS,CSAD,CSAG1,CSAG2,CSAG3,CSDC2,CSDE1,CSE1L,CSF1,CSF1R,CSF2,CSF2RB,CSF3,CSF3R,CSGALNACT1,CSGALNACT2,CSH1,CSH2,CSHL1,CSK,CSKMT,CSMD1,CSMD2,CSMD3,CSN1S1,CSN1S2AP,CSN2,CSN3,CSNK1A1,CSNK1A1L,CSNK1D,CSNK1E,CSNK1G1,CSNK1G2,CSNK1G2-AS1,CSNK1G3,CSNK2A1,CSNK2A2,CSNK2A3,CSNK2B,CSPG4,CSPG5,CSPP1,CSRNP1,CSRNP2,CSRNP3,CSRP1,CSRP2,CSRP3,CST1,CST11,CST12P,CST2,CST3,CST4,CST5,CST6,CST7,CST8,CST9,CST9L,CSTA,CSTB,CSTF1,CSTF2,CSTF2T,CSTF3,CSTL1,CSTPP1,CT45A1,CT45A2,CT45A3,CT45A5,CTAG2,CTAGE1,CTAGE3P,CTAGE7P,CTBP1,CTBP1-DT,CTBP2,CTBS,CTC1,CTCF,CTCFL,CTD,CTDNEP1,CTDP1,CTDSP1,CTDSP2,CTDSPL,CTDSPL2,CTF1,CTH,CTHRC1,CTIF,CTLA4,CTNNA1,CTNNA2,CTNNA3,CTNNAL1,CTNNB1,CTNNBIP1,CTNNBL1,CTNND1,CTNND2,CTNS,CTPS1,CTPS2,CTR9,CTRB1,CTRB2,CTRC,CTRL,CTSA,CTSB,CTSC,CTSD,CTSF,CTSG,CTSH,CTSK,CTSL,CTSLP8,CTSO,CTSS,CTSV,CTSW,CTSZ,CTTN,CTTNBP2,CTTNBP2NL,CTU1,CTXN1,CUBN,CUEDC1,CUEDC2,CUL1,CUL2,CUL3,CUL4A,CUL4B,CUL5,CUL7,CUL9,CUTA,CUTC,CUX1,CUZD1,CWC15,CWC25,CWC27,CWF19L1,CWF19L2,CWH43,CX3CL1,CX3CR1,CXADR,CXADRP2,CXCL1,CXCL10,CXCL11,CXCL12,CXCL13,CXCL14,CXCL16,CXCL17,CXCL2,CXCL3,CXCL5,CXCL6,CXCL8,CXCL9,CXCR1,CXCR2,CXCR2P1,CXCR3,CXCR4,CXCR5,CXCR6,CXXC1,CXXC4,CXXC5,CYB561,CYB561A3,CYB561D1,CYB561D2,CYB5A,CYB5B,CYB5D1,CYB5D2,CYB5R1,CYB5R2,CYB5R3,CYB5R4,CYB5RL,CYBA,CYBB,CYBC1,CYBRD1,CYC1,CYCS,CYFIP1,CYFIP2,CYGB,CYLC2,CYLD,CYP11A1,CYP11B1,CYP11B2,CYP17A1,CYP19A1,CYP1A1,CYP1A2,CYP1B1,CYP1B1-AS1,CYP20A1,CYP21A1P,CYP21A2,CYP24A1,CYP26A1,CYP26B1,CYP26C1,CYP27A1,CYP27B1,CYP27C1,CYP2A13,CYP2A6,CYP2A7,CYP2A7P1,CYP2B6,CYP2B7P,CYP2C18,CYP2C19,CYP2C8,CYP2C9,CYP2D6,CYP2D7,CYP2E1,CYP2F1,CYP2G1P,CYP2J2,CYP2R1,CYP2S1,CYP2U1,CYP2W1,CYP39A1,CYP3A4,CYP3A43,CYP3A5,CYP3A7,CYP46A1,CYP4A11,CYP4A22,CYP4B1,CYP4F11,CYP4F12,CYP4F2,CYP4F22,CYP4F3,CYP4F8,CYP4V2,CYP4X1,CYP4Z1,CYP4Z2P,CYP51A1,CYP7A1,CYP7B1,CYP8B1,CYREN,CYRIA,CYRIB,CYS1,CYSLTR1,CYSLTR2,CYSTM1,CYTH1,CYTH2,CYTH3,CYTH4,CYTL1,CYTOR,CYYR1,CZIB,D2HGDH,DAAM1,DAAM2,DAB1,DAB2,DAB2IP,DACH1,DACH2,DACOR1,DACT1,DACT2,DACT3,DAD1,DAD1P1,DAG1,DAGLA,DAGLB,DALRD3,DAND5,DAO,DAOA,DAOA-AS1,DAP,DAP3,DAPK1,DAPK2,DAPK3,DAPP1,DARS1,DARS2,DAW1,DAXX,DAZ1,DAZ2,DAZ3,DAZ4,DAZAP1,DAZAP2,DAZL,DBF4,DBF4B,DBH,DBH-AS1,DBI,DBIL5P,DBIL5P2,DBN1,DBNDD1,DBNDD2,DBNL,DBP,DBR1,DBT,DBX2,DCAF1,DCAF10,DCAF11,DCAF12,DCAF12L1,DCAF13,DCAF15,DCAF16,DCAF17,DCAF4,DCAF4L1,DCAF4L2,DCAF5,DCAF6,DCAF7,DCAF8,DCAKD,DCANP1,DCBLD1,DCBLD2,DCC,DCD,DCDC1,DCDC2,DCHS1,DCHS2,DCK,DCLK1,DCLK2,DCLRE1A,DCLRE1B,DCLRE1C,DCN,DCP1A,DCP1B,DCP2,DCPS,DCST1,DCST2,DCSTAMP,DCT,DCTD,DCTN1,DCTN2,DCTN3,DCTN4,DCTN5,DCTN6,DCTPP1,DCUN1D1,DCUN1D2,DCUN1D3,DCUN1D4,DCUN1D5,DCX,DCXR,DDA1,DDAH1,DDAH2,DDB1,DDB2,DDC,DDHD1,DDHD2,DDI1,DDI2,DDIAS,DDIT3,DDIT4,DDIT4L,DDO,DDOST,DDR1,DDR2,DDRGK1,DDT,DDX1,DDX10,DDX17,DDX18,DDX19A,DDX19B,DDX20,DDX21,DDX23,DDX24,DDX25,DDX27,DDX28,DDX31,DDX39A,DDX3X,DDX3Y,DDX4,DDX42,DDX43,DDX46,DDX47,DDX49,DDX5,DDX50,DDX51,DDX52,DDX53,DDX54,DDX55,DDX56,DDX59,DDX6,DDX60,DEAF1,DECR1,DECR2,DEDD,DEDD2,DEF6,DEF8,DEFA4,DEFA5,DEFA6,DEFA8P,DEFB1,DEFB109A,DEFB109B,DEFB117,DEFB118,DEFB119,DEFB121,DEFB123,DEFB125,DEFB126,DEFB127,DEFB128,DEFB129,DEFB132,DEGS1,DEGS2,DEK,DELE1,DELEC1,DELYQ11,DENND10,DENND10P1,DENND11,DENND1A,DENND1B,DENND1C,DENND2B,DENND2C,DENND2D,DENND3,DENND4A,DENND4B,DENND4C,DENND5A,DENND5B,DENND6A,DENR,DEPDC1,DEPDC1B,DEPDC4,DEPDC5,DEPDC7,DEPP1,DEPTOR,DERA,DERL1,DERL2,DERL3,DES,DESI2,DET1,DEUP1,DEXI,DFFA,DFFB,DGAT2,DGAT2L6,DGAT2L7P,DGCR11,DGCR2,DGCR6,DGCR6L,DGCR8,DGKA,DGKB,DGKD,DGKE,DGKG,DGKH,DGKI,DGKQ,DGKZ,DGLUCY,DGUOK,DHCR24,DHCR7,DHCR7-DT,DHDDS,DHDH,DHFR,DHFR2,DHH,DHODH,DHPS,DHRS1,DHRS11,DHRS12,DHRS13,DHRS2,DHRS3,DHRS4,DHRS4L1,DHRS4L2,DHRS7,DHRS7B,DHRS9,DHTKD1,DHX15,DHX16,DHX29,DHX30,DHX32,DHX33,DHX34,DHX35,DHX36,DHX37,DHX38,DHX40,DHX57,DHX58,DHX8,DHX9,DIABLO,DIAPH1,DIAPH2,DIAPH3,DICER1,DIDO1,DIMT1,DIO1,DIO2,DIO3,DIO3OS,DIP2A,DIP2B,DIP2C,DIPK1A,DIPK1B,DIPK2A,DIRAS1,DIRAS2,DIRAS3,DIRC1,DIS3,DIS3L,DIS3L2,DISC1,DISP2,DIXDC1,DKC1,DKK1,DKK2,DKK3,DKK4,DKKL1,DLAT,DLC1,DLD,DLEC1,DLEU1,DLEU2,DLEU2L,DLEU7,DLG1,DLG2,DLG3,DLG4,DLG5,DLGAP1,DLGAP2,DLGAP4,DLGAP5,DLK1,DLK2,DLL1,DLL3,DLL4,DLST,DLX1,DLX2,DLX3,DLX4,DLX5,DLX6,DMAC1,DMAC2,DMAC2L,DMAP1,DMBT1,DMBX1,DMC1,DMD,DMGDH,DMKN,DMP1,DMPK,DMRT1,DMRT2,DMRT3,DMRTA1,DMRTB1,DMRTC1,DMRTC1B,DMRTC2,DMTF1,DMTN,DMWD,DMXL1,DMXL2,DNAAF1,DNAAF10,DNAAF11,DNAAF19,DNAAF2,DNAAF3,DNAAF4,DNAAF8,DNAH1,DNAH10,DNAH10OS,DNAH11,DNAH12,DNAH14,DNAH17,DNAH2,DNAH3,DNAH5,DNAH6,DNAH7,DNAH8,DNAH9,DNAI1,DNAI2,DNAI3,DNAI4,DNAI7,DNAJA1,DNAJA1P5,DNAJA2,DNAJA3,DNAJA4,DNAJB1,DNAJB11,DNAJB12,DNAJB13,DNAJB14,DNAJB2,DNAJB3,DNAJB4,DNAJB5,DNAJB6,DNAJB7,DNAJB8,DNAJB9,DNAJC1,DNAJC10,DNAJC11,DNAJC12,DNAJC13,DNAJC14,DNAJC15,DNAJC16,DNAJC17,DNAJC18,DNAJC19,DNAJC2,DNAJC21,DNAJC22,DNAJC24,DNAJC25,DNAJC27,DNAJC28,DNAJC3,DNAJC30,DNAJC4,DNAJC5,DNAJC5B,DNAJC5G,DNAJC6,DNAJC7,DNAJC8,DNAJC9,DNAL1,DNAL4,DNALI1,DNASE1,DNASE1L1,DNASE1L2,DNASE1L3,DNASE2,DNASE2B,DND1,DNER,DNHD1,DNLZ,DNM1,DNM1L,DNM1P41,DNM1P46,DNM2,DNM3,DNMBP,DNMBP-AS1,DNMT1,DNMT3A,DNMT3B,DNMT3L,DNPEP,DNPH1,DNTT,DNTTIP1,DNTTIP2,DOC2A,DOC2B,DOCK1,DOCK10,DOCK11,DOCK2,DOCK3,DOCK4,DOCK5,DOCK6,DOCK7,DOCK8,DOCK8-AS1,DOCK9,DOHH,DOK1,DOK2,DOK3,DOK4,DOK5,DOK6,DOK7,DOLK,DOLPP1,DONSON,DOP1A,DOP1B,DOT1L,DPAGT1,DPCD,DPEP1,DPEP2,DPEP3,DPF1,DPF2,DPF3,DPH1,DPH2,DPH3,DPH3P1,DPH5,DPH6,DPH7,DPM1,DPM2,DPM3,DPP10,DPP3,DPP4,DPP6,DPP7,DPP8,DPP9,DPPA2,DPPA3,DPPA3P2,DPPA4,DPT,DPY19L2,DPY19L2P1,DPY19L2P2,DPY19L2P4,DPY19L3,DPY19L4,DPY30,DPYD,DPYS,DPYSL2,DPYSL3,DPYSL4,DPYSL5,DQX1,DR1,DRAM1,DRAM2,DRAP1,DRAXIN,DRC1,DRC3,DRC7,DRD1,DRD2,DRD3,DRD4,DRD5,DRG1,DRG2,DRICH1,DROSHA,DRP2,DSC1,DSC2,DSC3,DSCAM,DSCAML1,DSCC1,DSCR10,DSCR4,DSCR8,DSCR9,DSE,DSEL,DSG1,DSG2,DSG3,DSG4,DSN1,DSP,DSPP,DST,DSTN,DSTNP2,DSTYK,DTD1,DTD2,DTL,DTNA,DTNB,DTNBP1,DTWD1,DTWD2,DTX1,DTX2,DTX3,DTX3L,DUOX1,DUOX2,DUOXA1,DUOXA2,DUS1L,DUS2,DUS3L,DUS4L,DUSP1,DUSP10,DUSP11,DUSP12,DUSP13A,DUSP14,DUSP15,DUSP16,DUSP18,DUSP19,DUSP2,DUSP21,DUSP22,DUSP23,DUSP26,DUSP29,DUSP3,DUSP4,DUSP5,DUSP5P1,DUSP6,DUSP7,DUSP8,DUSP9,DUT,DUXA,DUXAP10,DVL1,DVL2,DVL3,DXO,DYDC1,DYDC2,DYM,DYNAP,DYNC1H1,DYNC1I1,DYNC1I2,DYNC1LI1,DYNC1LI2,DYNC2I1,DYNC2I2,DYNC2LI1,DYNLL1,DYNLL2,DYNLRB1,DYNLRB2,DYNLT1,DYNLT2,DYNLT2B,DYNLT3,DYNLT5,DYRK1A,DYRK1B,DYRK2,DYRK3,DYRK4,DYSF,DYTN,DZANK1,DZIP1,DZIP1L,DZIP3,E2F1,E2F2,E2F3,E2F4,E2F5,E2F6,E2F7,E2F8,E4F1,EAF1,EAF2,EAPP,EARS2,EBAG9,EBF1,EBF2,EBF4,EBI3,EBLN2,EBNA1BP2,EBP,EBPL,ECD,ECE1,ECE2,ECEL1,ECEL1P2,ECH1,ECHDC1,ECHDC2,ECHDC3,ECHS1,ECI1,ECI2,ECM1,ECM2,ECPAS,ECRG4,ECSIT,ECT2,EDA,EDA2R,EDAR,EDARADD,EDC3,EDC4,EDDM3A,EDDM3B,EDEM1,EDEM2,EDEM3,EDF1,EDIL3,EDN1,EDN2,EDN3,EDNRA,EDNRB,EDRF1,EEA1,EED,EEF1A1,EEF1A1P9,EEF1A2,EEF1AKMT1,EEF1AKMT2,EEF1AKMT3,EEF1B2,EEF1D,EEF1DP3,EEF1E1,EEF2,EEF2K,EEF2KMT,EEFSEC,EEIG1,EEPD1,EFCAB10,EFCAB11,EFCAB12,EFCAB13,EFCAB2,EFCAB3,EFCAB5,EFCAB6,EFCAB7,EFCC1,EFEMP1,EFEMP2,EFHB,EFHC1,EFHC2,EFHD1,EFHD2,EFL1,EFNA1,EFNA2,EFNA3,EFNA4,EFNA5,EFNB1,EFNB2,EFNB3,EFR3B,EFS,EFTUD2,EGF,EGFL6,EGFL7,EGFL8,EGFLAM,EGFR,EGLN1,EGLN2,EGLN3,EGR1,EGR2,EGR3,EGR4,EHBP1,EHD1,EHD2,EHD3,EHD4,EHF,EHHADH,EHMT1,EHMT2,EI24,EID1,EID2,EID2B,EID3,EIF1,EIF1AD,EIF1AX,EIF1AY,EIF1B,EIF2A,EIF2AK1,EIF2AK2,EIF2AK3,EIF2AK4,EIF2B1,EIF2B2,EIF2B3,EIF2B4,EIF2B5,EIF2S1,EIF2S2,EIF2S3,EIF3A,EIF3B,EIF3D,EIF3E,EIF3G,EIF3H,EIF3I,EIF3J,EIF3K,EIF3L,EIF3M,EIF4A1,EIF4A2,EIF4A3,EIF4B,EIF4E,EIF4E2,EIF4E3,EIF4EBP1,EIF4EBP2,EIF4EBP3,EIF4ENIF1,EIF4G1,EIF4G2,EIF4G3,EIF4H,EIF5,EIF5A,EIF5A2,EIF5B,EIF6,EIPR1,ELAC1,ELAC2,ELANE,ELAPOR1,ELAPOR2,ELAVL1,ELAVL2,ELAVL3,ELAVL4,ELF1,ELF2,ELF3,ELF4,ELF5,ELK1,ELK3,ELK4,ELL,ELL2,ELL3,ELMO1,ELMO2,ELMO3,ELMOD1,ELMOD2,ELMOD3,ELN,ELOA,ELOA2,ELOA3BP,ELOA3CP,ELOB,ELOC,ELOF1,ELOVL1,ELOVL2,ELOVL3,ELOVL4,ELOVL5,ELOVL6,ELP1,ELP2,ELP3,ELP4,ELP5,ELP6,ELSPBP1,EMB,EMBP1,EMC1,EMC10,EMC2,EMC3,EMC4,EMC6,EMC7,EMC8,EMC9,EMCN,EMD,EME1,EMG1,EMID1,EMILIN1,EMILIN2,EMILIN3,EML1,EML2,EML3,EML4,EML5,EMP1,EMP2,EMP3,EMSY,EMX1,EMX2,EN1,EN2,ENAH,ENAM,ENC1,ENDOD1,ENDOG,ENDOU,ENG,ENGASE,ENHO,ENKD1,ENKUR,ENO1,ENO2,ENO3,ENOPH1,ENOSF1,ENOX1,ENOX2,ENPEP,ENPP1,ENPP2,ENPP3,ENPP4,ENPP5,ENPP6,ENPP7,ENSA,ENTHD1,ENTPD1,ENTPD2,ENTPD3,ENTPD4,ENTPD5,ENTPD6,ENTPD7,ENTPD8,ENTR1,ENTREP1,ENTREP3,ENY2,EOGT,EOMES,EP300,EP400,EP400P1,EPAS1,EPB41,EPB41L1,EPB41L2,EPB41L3,EPB41L4A,EPB41L4A-AS1,EPB41L4B,EPB41L5,EPB42,EPC1,EPC2,EPCAM,EPCIP,EPDR1,EPG5,EPGN,EPHA1,EPHA10,EPHA2,EPHA3,EPHA4,EPHA5,EPHA6,EPHA7,EPHA8,EPHB1,EPHB2,EPHB3,EPHB4,EPHB6,EPHX1,EPHX2,EPHX3,EPHX4,EPM2A,EPM2AIP1,EPN1,EPN2,EPN3,EPO,EPOR,EPPIN,EPRS1,EPS15,EPS15L1,EPS8,EPS8L1,EPS8L2,EPS8L3,EPSTI1,EPX,EPYC,EQTN,ERAL1,ERAP1,ERAP2,ERAS,ERBB2,ERBB3,ERBB4,ERBIN,ERC1,ERC2,ERC2-IT1,ERCC1,ERCC2,ERCC3,ERCC4,ERCC5,ERCC6,ERCC6L,ERCC6L2,ERCC6L2-AS1,ERCC8,EREG,ERF,ERG,ERG28,ERGIC1,ERGIC2,ERGIC3,ERH,ERI1,ERI2,ERI3,ERICH1,ERICH3,ERICH5,ERICH6,ERICH6B,ERLEC1,ERLIN1,ERLIN2,ERMAP,ERN1,ERN2,ERO1A,ERO1B,ERP27,ERP29,ERP44,ERRFI1,ERV3-1,ERVFRD-1,ERVK-19,ERVV-1,ERVV-2,ERVW-1,ESAM,ESCO1,ESD,ESF1,ESM1,ESPL1,ESPN,ESPNL,ESPNP,ESR1,ESR2,ESRG,ESRP1,ESRP2,ESRRA,ESRRB,ESRRG,ESS2,ESX1,ESYT1,ESYT2,ESYT3,ETAA1,ETF1,ETFA,ETFB,ETFBKMT,ETFDH,ETFRF1,ETHE1,ETNK1,ETNK2,ETNPPL,ETS1,ETS2,ETV1,ETV3,ETV3L,ETV4,ETV5,ETV6,ETV7,EVA1A,EVA1B,EVA1C,EVC,EVC2,EVI2A,EVI2B,EVI5,EVI5L,EVL,EVPL,EVPLL,EVX1,EWSAT1,EWSR1,EXD1,EXD2,EXD3,EXO1,EXO5,EXOC1,EXOC2,EXOC3,EXOC3-AS1,EXOC3L1,EXOC3L2,EXOC4,EXOC5,EXOC6,EXOC7,EXOC8,EXOG,EXOSC1,EXOSC10,EXOSC2,EXOSC3,EXOSC4,EXOSC5,EXOSC6,EXOSC7,EXOSC8,EXOSC9,EXPH5,EXT1,EXT2,EXTL1,EXTL2,EXTL3,EYA1,EYA2,EYA3,EYA4,EYS,EZH1,EZH2,EZR,F10,F11,F11R,F12,F13A1,F13B,F2,F2R,F2RL1,F2RL2,F2RL3,F3,F5,F7,F8,F8A1,F8A2,F8A3,F9,FA2H,FAAH,FAAH2,FAAP100,FAAP20,FAAP24,FABP1,FABP2,FABP3,FABP4,FABP5,FABP6,FABP7,FABP9,FADD,FADS1,FADS2,FADS3,FADS6,FAF1,FAF2,FAH,FAHD1,FAHD2A,FAHD2B,FAIM,FAIM2,FAM106A,FAM106C,FAM107A,FAM107B,FAM110A,FAM110B,FAM110D,FAM111A,FAM111B,FAM114A1,FAM114A2,FAM117A,FAM117B,FAM118A,FAM118B,FAM120A,FAM120AOS,FAM120B,FAM120C,FAM124A,FAM124B,FAM131A,FAM131B,FAM131C,FAM133A,FAM133B,FAM135A,FAM135B,FAM136A,FAM13A,FAM13B,FAM13C,FAM149B1,FAM151A,FAM151B,FAM153A,FAM153B,FAM153CP,FAM156A,FAM156B,FAM161B,FAM162A,FAM163A,FAM167A,FAM167A-AS1,FAM167B,FAM168A,FAM168B,FAM169BP,FAM170A,FAM171A2,FAM171B,FAM174A,FAM174B,FAM174C,FAM177A1,FAM177B,FAM178B,FAM180A,FAM181A,FAM181B,FAM182A,FAM182B,FAM184A,FAM186B,FAM187B,FAM193A,FAM199X,FAM200A,FAM200C,FAM204A,FAM209A,FAM209B,FAM20A,FAM20B,FAM210A,FAM210B,FAM215A,FAM216A,FAM216B,FAM217A,FAM217B,FAM218A,FAM219A,FAM219B,FAM220BP,FAM221A,FAM222A,FAM222B,FAM223A,FAM227B,FAM228A,FAM230C,FAM234A,FAM241A,FAM241B,FAM24B,FAM25A,FAM25C,FAM25G,FAM27E5,FAM30A,FAM32A,FAM3A,FAM3B,FAM3D,FAM43A,FAM43B,FAM47A,FAM47B,FAM47E,FAM50A,FAM50B,FAM53A,FAM53B,FAM53C,FAM72A,FAM72B,FAM72C,FAM72D,FAM74A3,FAM74A4,FAM76A,FAM76B,FAM78A,FAM81A,FAM81B,FAM83A,FAM83C,FAM83D,FAM83E,FAM83F,FAM83G,FAM83H,FAM86C1P,FAM86DP,FAM89A,FAM89B,FAM8A1,FAM90A1,FAM90A10,FAM90A5,FAM90A7,FAM90A8,FAM90A9,FAM91A1,FAM98A,FAM98B,FAM98C,FAM9A,FAM9B,FAM9C,FAN1,FANCA,FANCB,FANCC,FANCD2,FANCD2OS,FANCE,FANCF,FANCG,FANCI,FANCL,FANCM,FANK1,FAP,FAR1,FAR2,FARP1,FARP2,FARS2,FARSA,FARSB,FAS,FAS-AS1,FASLG,FASN,FASTK,FASTKD1,FASTKD2,FASTKD3,FASTKD5,FAT1,FAT2,FAT4,FATE1,FAU,FAXC,FAXDC2,FBF1,FBH1,FBL,FBLIM1,FBLN1,FBLN2,FBLN5,FBLN7,FBN1,FBN2,FBN3,FBP1,FBP2,FBRS,FBRSL1,FBXL12,FBXL13,FBXL14,FBXL16,FBXL17,FBXL18,FBXL19,FBXL19-AS1,FBXL2,FBXL20,FBXL21P,FBXL22,FBXL3,FBXL4,FBXL5,FBXL6,FBXL7,FBXL8,FBXL9P,FBXO10,FBXO11,FBXO15,FBXO16,FBXO17,FBXO2,FBXO21,FBXO22,FBXO24,FBXO25,FBXO27,FBXO28,FBXO3,FBXO30,FBXO31,FBXO32,FBXO33,FBXO34,FBXO36,FBXO39,FBXO4,FBXO40,FBXO42,FBXO44,FBXO46,FBXO5,FBXO6,FBXO7,FBXO8,FBXO9,FBXW10,FBXW10B,FBXW11,FBXW12,FBXW2,FBXW4,FBXW4P1,FBXW5,FBXW7,FBXW8,FBXW9,FCAMR,FCAR,FCER1A,FCER1G,FCER2,FCF1,FCGBP,FCGR1A,FCGR1BP,FCGR2A,FCGR2B,FCGR2C,FCGR3A,FCGR3B,FCGRT,FCHO1,FCHO2,FCHSD1,FCHSD2,FCMR,FCN1,FCN2,FCN3,FCRL1,FCRL2,FCRL3,FCRL4,FCRL5,FCRL6,FCRLA,FCRLB,FCSK,FDCSP,FDFT1,FDPS,FDX1,FDX2,FDXACB1,FDXR,FECH,FEM1A,FEM1B,FEM1C,FEN1,FER,FER1L6-AS1,FER1L6-AS2,FERD3L,FERMT1,FERMT2,FERMT3,FERRY3,FES,FETUB,FEV,FEZ1,FEZ2,FEZF1,FEZF2,FFAR1,FFAR2,FFAR3,FFAR4,FGA,FGB,FGD1,FGD2,FGD3,FGD4,FGD5,FGD6,FGF1,FGF10,FGF11,FGF12,FGF13,FGF14,FGF17,FGF18,FGF19,FGF2,FGF20,FGF21,FGF22,FGF23,FGF3,FGF4,FGF5,FGF6,FGF7,FGF7P3,FGF7P6,FGF8,FGF9,FGFBP1,FGFBP2,FGFBP3,FGFR1,FGFR1OP2,FGFR2,FGFR3,FGFR4,FGFRL1,FGG,FGGY,FGL1,FGL2,FGR,FH,FHDC1,FHIP1B,FHIP2A,FHIP2B,FHIT,FHL1,FHL2,FHL3,FHL5,FHOD1,FIBCD1,FIBIN,FIBP,FICD,FIG4,FIGLA,FIGN,FIGNL1,FILIP1,FILIP1L,FIP1L1,FIRRM,FIS1,FITM1,FITM2,FIZ1,FJX1,FKBP10,FKBP11,FKBP14,FKBP15,FKBP1A,FKBP1B,FKBP2,FKBP3,FKBP4,FKBP5,FKBP6,FKBP7,FKBP8,FKBP9,FKBP9P1,FKBPL,FKRP,FKSG29,FKTN,FLACC1,FLAD1,FLCN,FLI1,FLII,FLJ13224,FLJ20712,FLJ30679,FLJ33534,FLJ37201,FLJ40288,FLJ42393,FLJ43315,FLJ46875,FLNA,FLNB,FLNC,FLOT1,FLOT2,FLRT1,FLRT2,FLRT3,FLT1,FLT3,FLT3LG,FLT4,FLVCR1,FLVCR1-DT,FLVCR2,FLYWCH1,FLYWCH2,FMC1-LUC7L2,FMN2,FMNL1,FMNL2,FMNL3,FMO1,FMO3,FMO4,FMO5,FMO9P,FMOD,FMR1,FMR1NB,FN1,FN3K,FN3KRP,FNBP1,FNBP1L,FNBP4,FNDC11,FNDC3A,FNDC3B,FNDC4,FNDC5,FNDC7,FNDC8,FNDC9,FNIP1,FNTA,FNTB,FOCAD,FOLH1,FOLH1B,FOLR1,FOLR2,FOLR3,FOS,FOSB,FOSL1,FOSL2,FOXA1,FOXA2,FOXA3,FOXB1,FOXC1,FOXC2,FOXD1,FOXD2,FOXD3,FOXD3-AS1,FOXD4,FOXD4L1,FOXD4L3,FOXD4L4,FOXD4L5,FOXD4L6,FOXE1,FOXE3,FOXF1,FOXF2,FOXG1,FOXH1,FOXI1,FOXI2,FOXJ1,FOXJ2,FOXJ3,FOXK2,FOXL1,FOXL2,FOXM1,FOXN1,FOXN2,FOXN3,FOXN3-AS2,FOXN4,FOXO1,FOXO3,FOXO3B,FOXO4,FOXP1,FOXP2,FOXP3,FOXP4,FOXQ1,FOXR1,FOXR2,FOXRED1,FOXRED2,FOXS1,FPGS,FPGT,FPR1,FPR2,FPR3,FRA10AC1,FRAS1,FRAT1,FRAT2,FRAXE,FREM1,FREM2,FRG1,FRK,FRMD1,FRMD3,FRMD4A,FRMD5,FRMD6,FRMD7,FRMD8,FRMPD1,FRMPD2,FRMPD2B,FRS2,FRS3,FRY,FRYL,FRZB,FSAF1,FSCB,FSCN1,FSCN2,FSCN3,FSD1,FSD1L,FSHB,FSHMD1A,FSHR,FSIP1,FSIP2,FST,FSTL3,FSTL4,FSTL5,FTCD,FTH1,FTH1P3,FTH1P5,FTHL17,FTL,FTMT,FTO,FTSJ1,FTSJ3,FUBP1,FUBP3,FUCA1,FUCA2,FUNDC1,FUNDC2,FUNDC2P2,FUOM,FURIN,FUS,FUSE,FUT1,FUT10,FUT11,FUT2,FUT3,FUT4,FUT5,FUT6,FUT7,FUT8,FUT9,FUZ,FXN,FXR1,FXR2,FXYD1,FXYD2,FXYD3,FXYD4,FXYD5,FXYD6,FXYD7,FYB1,FYB2,FYCO1,FYN,FYTTD1,FZD1,FZD10,FZD2,FZD3,FZD4,FZD5,FZD6,FZD7,FZD8,FZD9,FZR1,G0S2,G2E3,G3BP1,G3BP2,G6PC1,G6PC2,G6PC3,G6PD,GAA,GAB1,GAB2,GAB3,GABARAP,GABARAPL1,GABARAPL2,GABARAPL3,GABBR1,GABBR2,GABPA,GABPB1,GABPB2,GABRA1,GABRA2,GABRA3,GABRA4,GABRA5,GABRA6,GABRB1,GABRB2,GABRB3,GABRD,GABRE,GABRG1,GABRG2,GABRG3,GABRP,GABRQ,GABRR1,GABRR2,GAD1,GAD2,GADD45A,GADD45B,GADD45G,GADD45GIP1,GADL1,GAGE1,GAGE12B,GAGE12C,GAGE12D,GAGE12E,GAGE12F,GAGE12G,GAGE12H,GAGE12I,GAGE12J,GAGE13,GAGE2A,GAGE2B,GAGE2C,GAGE2D,GAGE2E,GAGE4,GAGE5,GAGE6,GAGE7,GAGE8,GAK,GAL,GAL3ST1,GAL3ST2,GAL3ST3,GAL3ST4,GALC,GALE,GALK1,GALK2,GALM,GALNS,GALNT1,GALNT10,GALNT11,GALNT12,GALNT13,GALNT14,GALNT15,GALNT17,GALNT18,GALNT2,GALNT3,GALNT4,GALNT5,GALNT6,GALNT7,GALNT8,GALNT9,GALNTL5,GALNTL6,GALP,GALR1,GALR2,GALR3,GALT,GAMT,GAN,GANAB,GANC,GAP43,GAPDHP62,GAPDHS,GAPT,GAPVD1,GAR1,GAREM1,GARIN1B,GARIN2,GARIN3,GARIN4,GARIN5A,GARIN5B,GARIN6,GARNL3,GARRE1,GART,GAS1,GAS2,GAS2L1,GAS2L2,GAS2L3,GAS5,GAS6,GAS7,GAS8,GAS8-AS1,GASK1A,GASK1B,GAST,GATA1,GATA2,GATA3,GATA4,GATA5,GATA6,GATAD1,GATAD2A,GATAD2B,GATB,GATC,GATD1,GATD1-DT,GATD3,GATM,GBA1LP,GBA2,GBA3,GBE1,GBF1,GBGT1,GBP1,GBP2,GBP3,GBP4,GBP5,GBP6,GBP7,GBX2,GC,GCA,GCAT,GCC1,GCC2,GCDH,GCFC2,GCG,GCGR,GCH1,GCHFR,GCK,GCKR,GCLC,GCLM,GCM1,GCM2,GCNA,GCNT1,GCNT2,GCNT2P1,GCNT3,GCNT4,GCOM1,GCSAM,GCSAML,GDA,GDAP1,GDAP1L1,GDAP2,GDE1,GDF1,GDF10,GDF11,GDF15,GDF2,GDF3,GDF5,GDF6,GDF7,GDF9,GDI1,GDI2,GDNF,GDPD1,GDPD2,GDPD3,GDPD4,GDPD5,GEM,GEMIN4,GEMIN5,GEMIN6,GEMIN7,GEMIN8,GEMIN8P4,GEN1,GET1,GET3,GET4,GFAP,GFER,GFI1,GFI1B,GFM1,GFM2,GFOD1,GFOD2,GFOD3P,GFPT1,GFPT2,GFRA1,GFRA2,GFRA3,GFRA4,GFRAL,GFUS,GGA1,GGA2,GGA3,GGACT,GGCT,GGCX,GGH,GGN,GGNBP1,GGNBP2,GGPS1,GGT1,GGT3P,GGT5,GGT6,GGT7,GGT8P,GGTA1,GGTLC1,GGTLC2,GGTLC3,GH1,GH2,GHDC,GHITM,GHR,GHRH,GHRHR,GHRL,GHSR,GID4,GID8,GIGYF1,GIGYF2,GIMAP1,GIMAP2,GIMAP4,GIMAP5,GIMAP6,GIMAP7,GIMAP8,GIN1,GINM1,GINS1,GINS2,GINS3,GINS4,GIP,GIPC1,GIPC2,GIPC3,GIPR,GIT1,GIT2,GJA1,GJA10,GJA3,GJA4,GJA5,GJA9,GJB1,GJB2,GJB3,GJB4,GJB5,GJB6,GJB7,GJC1,GJC2,GJC3,GJD2,GJD3,GJD4,GK,GK2,GK3,GK5,GKAP1,GKN1,GKN2,GLA,GLB1,GLB1L,GLB1L2,GLB1L3,GLCCI1,GLCE,GLDC,GLDN,GLE1,GLG1,GLI1,GLI2,GLI3,GLI4,GLIPR1,GLIPR1L1,GLIPR1L2,GLIPR2,GLIS1,GLIS2,GLIS3,GLIS3-AS1,GLMN,GLMP,GLO1,GLOD4,GLP1R,GLP2R,GLRA1,GLRA2,GLRA3,GLRA4,GLRB,GLRX,GLRX2,GLRX3,GLRX5,GLS,GLS2,GLT1D1,GLT6D1,GLT8D1,GLT8D2,GLTP,GLUD1,GLUD2,GLUL,GLYAT,GLYATL1,GLYATL2,GLYCTK,GLYR1,GM2A,GMCL1,GMCL2,GMDS,GMEB1,GMEB2,GMFB,GMFG,GMIP,GML,GMNN,GMPPA,GMPPB,GMPR,GMPR2,GMPS,GNA11,GNA12,GNA13,GNA14,GNA15,GNAI1,GNAI2,GNAI3,GNAL,GNAO1,GNAQ,GNAS,GNAT1,GNAT2,GNAZ,GNB1,GNB1L,GNB2,GNB3,GNB4,GNB5,GNE,GNG10,GNG11,GNG12,GNG13,GNG2,GNG3,GNG4,GNG5,GNG7,GNG8,GNGT1,GNGT2,GNL1,GNL2,GNL3,GNL3L,GNL3LP1,GNLY,GNMT,GNPAT,GNPDA1,GNPDA2,GNPNAT1,GNPTAB,GNPTG,GNRH1,GNRH2,GNRHR,GNRHR2,GNS,GOLGA1,GOLGA2,GOLGA2P5,GOLGA3,GOLGA4,GOLGA5,GOLGA6L1,GOLGA6L10,GOLGA6L2,GOLGA6L3P,GOLGA6L5P,GOLGA6L6,GOLGA6L9,GOLGA7,GOLGA8A,GOLGA8B,GOLGB1,GOLIM4,GOLM1,GOLM2,GOLPH3,GOLPH3L,GOLT1A,GOLT1B,GON4L,GON7,GOPC,GORAB,GORASP1,GORASP2,GOSR1,GOSR2,GOT1,GOT1L1,GOT2,GP1BA,GP1BB,GP2,GP5,GP6,GP9,GPA33,GPAA1,GPALPP1,GPAM,GPANK1,GPAT2,GPAT3,GPAT4,GPATCH1,GPATCH11,GPATCH2,GPATCH2L,GPATCH3,GPATCH4,GPATCH8,GPBAR1,GPBP1,GPBP1L1,GPC1,GPC2,GPC3,GPC4,GPC5,GPC6,GPCPD1,GPD1,GPD1L,GPD2,GPER1,GPHA2,GPHB5,GPHN,GPI,GPIHBP1,GPKOW,GPLD1,GPM6A,GPM6B,GPN1,GPN2,GPN3,GPNMB,GPR101,GPR107,GPR108,GPR119,GPR12,GPR132,GPR135,GPR137,GPR137B,GPR139,GPR141,GPR142,GPR143,GPR146,GPR148,GPR15,GPR150,GPR151,GPR152,GPR153,GPR155,GPR156,GPR157,GPR158,GPR15LG,GPR160,GPR161,GPR162,GPR17,GPR171,GPR173,GPR174,GPR176,GPR179,GPR18,GPR180,GPR182,GPR183,GPR19,GPR20,GPR21,GPR22,GPR25,GPR26,GPR27,GPR3,GPR31,GPR32,GPR34,GPR35,GPR37,GPR37L1,GPR39,GPR4,GPR45,GPR50,GPR52,GPR55,GPR6,GPR61,GPR62,GPR63,GPR65,GPR68,GPR75,GPR75-ASB3,GPR78,GPR82,GPR83,GPR84,GPR85,GPR87,GPR88,GPRASP1,GPRASP2,GPRC5A,GPRC5B,GPRC5C,GPRC5D,GPRC6A,GPRIN1,GPRIN3,GPS1,GPS2,GPSM1,GPSM2,GPSM3,GPT,GPT2,GPX1,GPX2,GPX3,GPX4,GPX5,GPX6,GPX7,GPX8,GRAMD1A,GRAMD1B,GRAMD1C,GRAMD2B,GRAMD4,GRAP,GRAP2,GRAPL,GRB10,GRB14,GRB2,GREB1,GREB1L,GREM1,GREM2,GRHL1,GRHL2,GRHL3,GRHPR,GRIA1,GRIA2,GRIA3,GRIA4,GRID1,GRID2,GRIK1,GRIK1-AS1,GRIK1-AS2,GRIK2,GRIK3,GRIK4,GRIK5,GRIN1,GRIN2A,GRIN2B,GRIN2C,GRIN2D,GRIN3A,GRINA,GRIP1,GRK2,GRK3,GRK4,GRK5,GRK6,GRK7,GRM1,GRM2,GRM3,GRM4,GRM5,GRM6,GRM7,GRM8,GRN,GRP,GRPEL1,GRPEL2,GRPR,GRSF1,GRTP1,GRWD1,GRXCR2,GSC,GSC2,GSDMB,GSDMC,GSDMD,GSDME,GSE1,GSG1,GSG1L,GSK3A,GSK3B,GSKIP,GSN,GSN-AS1,GSPT1,GSPT2,GSR,GSS,GSTA1,GSTA2,GSTA3,GSTA4,GSTA5,GSTA7P,GSTCD,GSTK1,GSTM1,GSTM2,GSTM3,GSTM4,GSTM5,GSTO1,GSTO2,GSTP1,GSTT1,GSTT4,GSTTP2,GSTZ1,GSX1,GSX2,GTDC1,GTF2A1,GTF2A1L,GTF2A2,GTF2B,GTF2E1,GTF2E2,GTF2F1,GTF2F2,GTF2H1,GTF2H3,GTF2H4,GTF2H5,GTF2I,GTF2IP1,GTF2IRD1,GTF2IRD2,GTF2IRD2B,GTF3A,GTF3C1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C6,GTPBP1,GTPBP10,GTPBP2,GTPBP3,GTPBP4,GTPBP8,GTSCR1,GTSE1,GTSF1,GTSF1L,GUCA1A,GUCA1B,GUCA1C,GUCA2A,GUCA2B,GUCD1,GUCY1A1,GUCY1A2,GUCY1B1,GUCY1B2,GUCY2C,GUCY2D,GUCY2EP,GUCY2F,GUF1,GUK1,GULP1,GUSB,GUSBP1,GUSBP4,GXYLT1,GXYLT2,GYG1,GYG2,GYPA,GYPB,GYPC,GYPE,GYS1,GYS2,GZF1,GZMA,GZMB,GZMH,GZMK,GZMM,H1-0,H1-1,H1-10,H1-2,H1-3,H1-4,H1-5,H1-6,H1-7,H1-8,H1-9P,H2AB1,H2AB2,H2AB3,H2AC1,H2AC11,H2AC12,H2AC13,H2AC14,H2AC15,H2AC16,H2AC17,H2AC20,H2AC21,H2AC25,H2AC4,H2AC6,H2AC7,H2AC8,H2AJ,H2AX,H2AZ1,H2AZ2,H2BC1,H2BC10,H2BC11,H2BC12,H2BC12L,H2BC14,H2BC15,H2BC17,H2BC18,H2BC21,H2BC26,H2BC3,H2BC4,H2BC5,H2BC6,H2BC7,H2BC8,H2BC9,H2BP1,H2BW1,H2BW2,H2BW4P,H3-3B,H3-4,H3-5,H3C1,H3C10,H3C11,H3C12,H3C13,H3C14,H3C2,H3C3,H3C4,H3C6,H3C7,H3C8,H3P20,H4C1,H4C13,H4C16,H4C2,H4C3,H4C4,H4C5,H4C6,H4C7,H4C8,H4C9,H6PD,HAAO,HABP2,HABP4,HACD1,HACD2,HACD3,HACD4,HACE1,HACL1,HADH,HADHA,HADHB,HAGH,HAGHL,HAL,HAMP,HAND1,HAND2,HAND2-AS1,HAO1,HAO2,HAP1,HAPLN1,HAPLN2,HAPLN3,HAPLN4,HAPSTR1,HARBI1,HARS1,HARS2,HAS1,HAS2,HAS3,HASPIN,HAT1,HAUS1,HAUS2,HAUS3,HAUS4,HAUS5,HAUS6,HAUS7,HAUS8,HAVCR1,HAVCR2,HAX1,HBB,HBD,HBE1,HBEGF,HBG2,HBM,HBP1,HBQ1,HBS1L,HBZ,HCAR1,HCAR2,HCAR3,HCCS,HCFC1,HCFC1R1,HCFC2,HCG11,HCG27,HCG4,HCG9,HCK,HCLS1,HCN1,HCN2,HCN3,HCN4,HCP5,HCRT,HCRTR1,HCRTR2,HCST,HDAC1,HDAC10,HDAC11,HDAC2,HDAC3,HDAC4,HDAC5,HDAC6,HDAC7,HDAC8,HDAC9,HDC,HDDC2,HDDC3,HDGF,HDGFL1,HDGFL2,HDGFL3,HDHD2,HDHD3,HDHD5,HDLBP,HDX,HEATR1,HEATR3,HEATR4,HEATR5A,HEATR6,HEATR9,HEBP1,HEBP2,HECA,HECTD1,HECTD2,HECTD3,HECTD4,HECW1,HEG1,HELB,HELLS,HELQ,HELZ,HELZ2,HEMGN,HEMK1,HENMT1,HEPACAM,HEPACAM2,HEPH,HEPN1,HERC1,HERC2,HERC2P2,HERC2P3,HERC2P9,HERC3,HERC4,HERC5,HERC6,HERPUD1,HERPUD2,HES1,HES2,HES4,HES6,HES7,HESX1,HEXA,HEXA-AS1,HEXB,HEXD,HEXIM1,HEXIM2,HEY1,HEY2,HEYL,HFE,HFM1,HGF,HGFAC,HGS,HGSNAT,HHAT,HHATL,HHEX,HHIP,HHIPL1,HHIPL2,HHLA1,HHLA2,HIBADH,HIBCH,HIC1,HIC2,HID1,HIF1A,HIF1AN,HIF3A,HIGD1A,HIGD1AP1,HIGD1B,HIGD2A,HIKESHI,HILPDA,HINFP,HINT1,HINT2,HINT3,HIP1,HIP1R,HIPK1,HIPK2,HIPK3,HIPK4,HIRA,HIRIP3,HIVEP1,HIVEP2,HIVEP3,HJURP,HJV,HK1,HK2,HK3,HKDC1,HLA-B,HLA-C,HLA-DMA,HLA-DMB,HLA-DOA,HLA-DOB,HLA-DPA1,HLA-DPB1,HLA-DPB2,HLA-DQA2,HLA-DQB2,HLA-DRA,HLA-DRB1,HLA-DRB3,HLA-DRB4,HLA-DRB5,HLA-DRB6,HLA-E,HLA-F,HLA-L,HLCS,HLF,HLTF,HLX,HM13,HMBOX1,HMBS,HMCES,HMCN1,HMG20A,HMG20B,HMGA1,HMGA2,HMGB2,HMGB3,HMGB4,HMGCL,HMGCLL1,HMGCR,HMGCS1,HMGCS2,HMGN1,HMGN2,HMGN2P46,HMGN3,HMGN4,HMGN5,HMGXB3,HMGXB4,HMHB1,HMMR,HMOX1,HMOX2,HMX1,HMX3,HNF1A,HNF1A-AS1,HNF1B,HNF4A,HNF4G,HNMT,HNRNPA0,HNRNPA1,HNRNPA1L2,HNRNPA1P10,HNRNPA1P27,HNRNPA1P6,HNRNPA2B1,HNRNPAB,HNRNPD,HNRNPDL,HNRNPF,HNRNPH1,HNRNPH2,HNRNPH3,HNRNPK,HNRNPL,HNRNPLL,HNRNPM,HNRNPR,HNRNPU,HNRNPUL1,HNRNPUL2,HOATZ,HOGA1,HOMER1,HOMER2,HOMER3,HOMEZ,HOOK1,HOOK2,HOOK3,HOPX,HORMAD1,HORMAD2,HOXA1,HOXA10,HOXA11,HOXA13,HOXA2,HOXA3,HOXA4,HOXA5,HOXA6,HOXA7,HOXA9,HOXB1,HOXB13,HOXB2,HOXB3,HOXB4,HOXB5,HOXB6,HOXB7,HOXB8,HOXB9,HOXC10,HOXC11,HOXC12,HOXC13,HOXC4,HOXC5,HOXC6,HOXC8,HOXC9,HOXD1,HOXD10,HOXD11,HOXD12,HOXD13,HOXD3,HOXD4,HOXD8,HOXD9,HP,HP1BP3,HPCA,HPCAL1,HPCAL4,HPD,HPDL,HPF1,HPGD,HPGDS,HPN,HPR,HPRT1,HPS1,HPS3,HPS4,HPS5,HPS6,HPSE,HPSE2,HPX,HR,HRAS,HRC,HRCT1,HRG,HRH1,HRH2,HRH3,HRH4,HRK,HROB,HS1BP3,HS2ST1,HS3ST1,HS3ST2,HS3ST3A1,HS3ST3B1,HS3ST4,HS3ST5,HS6ST2,HS6ST3,HSBP1,HSCB,HSD11B1,HSD11B1L,HSD11B2,HSD17B1,HSD17B10,HSD17B11,HSD17B12,HSD17B13,HSD17B14,HSD17B2,HSD17B3,HSD17B4,HSD17B6,HSD17B7,HSD17B7P2,HSD17B8,HSD3B1,HSD3B2,HSD3B7,HSD3BP4,HSDL1,HSDL2,HSF1,HSF2,HSF2BP,HSF4,HSH2D,HSP90AA1,HSP90AB1,HSP90AB3P,HSP90AB4P,HSP90B1,HSP90B2P,HSP90B3P,HSPA12A,HSPA12B,HSPA13,HSPA14,HSPA1A,HSPA1B,HSPA1L,HSPA2,HSPA4,HSPA4L,HSPA5,HSPA6,HSPA7,HSPA8,HSPA9,HSPB1,HSPB2,HSPB2-C11orf52,HSPB3,HSPB6,HSPB7,HSPB8,HSPB9,HSPBAP1,HSPBP1,HSPD1,HSPE1,HSPG2,HSPH1,HTATIP2,HTATSF1,HTN1,HTN3,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,HTR2A,HTR2B,HTR2C,HTR3A,HTR3B,HTR3C,HTR3D,HTR3E,HTR4,HTR5A,HTR6,HTR7,HTRA1,HTRA2,HTRA3,HTRA4,HTT,HUNK,HUS1,HUS1B,HUWE1,HVCN1,HYAL1,HYAL2,HYAL3,HYAL4,HYCC1,HYCC2,HYDIN,HYI,HYLS1,HYMAI,HYOU1,IAH1,IAPP,IARS1,IARS2,IBSP,IBTK,ICA1,ICA1L,ICAM1,ICAM2,ICAM3,ICAM4,ICAM5,ICE2,ICMT,ICMT-DT,ICOS,ICOSLG,ID1,ID2,ID2B,ID3,ID4,IDE,IDH1,IDH2,IDH3A,IDH3B,IDH3G,IDI1,IDI2,IDI2-AS1,IDNK,IDO1,IDO2,IDS,IDUA,IER2,IER3,IER3IP1,IER5,IER5L,IFFO1,IFI16,IFI27,IFI27L1,IFI27L2,IFI30,IFI35,IFI44,IFI44L,IFI6,IFIH1,IFIT1,IFIT2,IFIT3,IFIT5,IFITM1,IFITM2,IFITM3,IFITM4P,IFNA1,IFNA10,IFNA13,IFNA14,IFNA16,IFNA17,IFNA2,IFNA21,IFNA4,IFNA5,IFNA6,IFNA7,IFNA8,IFNAR1,IFNAR2,IFNB1,IFNE,IFNG,IFNGR1,IFNGR2,IFNK,IFNL1,IFNL2,IFNL3,IFNLR1,IFNW1,IFRD1,IFRD2,IFT122,IFT140,IFT172,IFT20,IFT22,IFT25,IFT27,IFT43,IFT46,IFT52,IFT56,IFT57,IFT70A,IFT70B,IFT74,IFT80,IFT81,IFT88,IFTAP,IGBP1,IGDCC3,IGDCC4,IGF1,IGF1R,IGF2,IGF2-AS,IGF2BP1,IGF2BP2,IGF2BP3,IGF2R,IGFALS,IGFBP1,IGFBP2,IGFBP3,IGFBP4,IGFBP5,IGFBP6,IGFBP7,IGFL1,IGFL2,IGFL3,IGFL4,IGFLR1,IGFN1,IGHA1,IGHA2,IGHD,IGHD2-15,IGHE,IGHG1,IGHG2,IGHG3,IGHG4,IGHM,IGHMBP2,IGHV2-70,IGHV3-23,IGHV3-48,IGHV4-31,IGHV4-59,IGHV5-78,IGHV7-81,IGIP,IGK,IGKC,IGKJ1,IGKJ2,IGKJ3,IGKJ4,IGKV1-12,IGKV1-13,IGKV1-5,IGKV1-8,IGKV1D-17,IGKV1D-22,IGKV1D-37,IGKV1D-42,IGKV1D-43,IGKV1D-8,IGKV2-40,IGKV2D-10,IGKV2D-14,IGKV2D-18,IGKV2D-19,IGKV2D-23,IGKV2D-24,IGKV2D-26,IGKV2D-28,IGKV2D-30,IGKV2D-38,IGKV2D-40,IGKV3-31,IGKV3-7,IGKV3D-11,IGKV3D-15,IGKV3D-20,IGKV3D-25,IGKV4-1,IGKV5-2,IGKV6D-21,IGKV6D-41,IGLC1,IGLC7,IGLL1,IGLL3P,IGLL5,IGLV1-36,IGLV1-40,IGLV1-44,IGLV10-54,IGLV2-11,IGLV2-18,IGLV2-23,IGLV3-12,IGLV3-16,IGLV3-19,IGLV3-22,IGLV3-25,IGLV3-27,IGLV4-3,IGLV4-60,IGLV4-69,IGLV5-37,IGLV5-45,IGLV6-57,IGLV7-43,IGLV7-46,IGLV8-61,IGSF1,IGSF10,IGSF11,IGSF21,IGSF22,IGSF3,IGSF6,IGSF8,IGSF9,IGSF9B,IH,IHH,IHO1,IK,IKBIP,IKBKB,IKBKE,IKBKG,IKZF1,IKZF2,IKZF3,IKZF4,IKZF5,IL10,IL10RA,IL10RB,IL11,IL11RA,IL12A,IL12B,IL12RB1,IL12RB2,IL13,IL13RA1,IL13RA2,IL15,IL15RA,IL16,IL17A,IL17B,IL17C,IL17D,IL17F,IL17RA,IL17RB,IL17RC,IL17RD,IL17RE,IL17REL,IL18,IL18BP,IL18R1,IL18RAP,IL19,IL1A,IL1B,IL1F10,IL1R1,IL1R2,IL1RAP,IL1RAPL1,IL1RAPL2,IL1RL1,IL1RL2,IL1RN,IL2,IL20,IL20RA,IL20RB,IL21,IL21R,IL22,IL22RA1,IL22RA2,IL23A,IL23R,IL24,IL25,IL26,IL27RA,IL2RA,IL2RB,IL2RG,IL3,IL31,IL31RA,IL32,IL34,IL36A,IL36B,IL36G,IL36RN,IL37,IL4,IL4I1,IL4R,IL5,IL5RA,IL6,IL6R,IL6ST,IL7,IL7R,IL9,ILDR1,ILDR2,ILF2,ILF3,ILK,ILKAP,ILRUN,ILVBL,IMMP1L,IMMP2L,IMMT,IMP3,IMP4,IMPA1,IMPA2,IMPACT,IMPDH1,IMPDH2,IMPG1,IMPG2,INA,INAFM1,INAVA,INCA1,INCENP,INE1,INF2,ING1,ING2,ING3,ING4,ING5,INGX,INHA,INHBA,INHBB,INHBC,INHBE,INIP,INKA1,INKA2,INMT,INO80,INO80B,INO80C,INO80D,INO80E,INPP1,INPP4A,INPP4B,INPP5A,INPP5B,INPP5D,INPP5E,INPP5F,INPP5J,INPP5K,INPPL1,INS,INS-IGF2,INSIG1,INSIG2,INSL3,INSL4,INSL5,INSL6,INSM1,INSM2,INSR,INSRR,INTS1,INTS10,INTS11,INTS12,INTS13,INTS14,INTS15,INTS2,INTS3,INTS4,INTS4P1,INTS4P2,INTS5,INTS6,INTS6L,INTS7,INTS8,INTS9,INTU,INVS,IP6K1,IP6K2,IP6K3,IPCEF1,IPMK,IPO11,IPO13,IPO4,IPO5,IPO7,IPO8,IPO9,IPPK,IPW,IQCA1,IQCB1,IQCC,IQCD,IQCE,IQCF1,IQCF2,IQCG,IQCH,IQCJ,IQCK,IQCN,IQGAP1,IQGAP2,IQGAP3,IQSEC1,IQSEC3,IQUB,IRAG1,IRAG2,IRAK1,IRAK2,IRAK3,IRAK4,IREB2,IRF1,IRF2,IRF2BP1,IRF2BP2,IRF2BPL,IRF3,IRF4,IRF5,IRF6,IRF7,IRF8,IRF9,IRGC,IRGQ,IRS1,IRS2,IRS4,IRX1,IRX2,IRX2-DT,IRX3,IRX4,IRX5,IRX6,ISCA1,ISCA2,ISCU,ISG15,ISG20,ISG20L2,ISL1,ISL2,ISLR,ISLR2,ISM2,ISOC1,ISOC2,ISY1,ISYNA1,ITCH,ITFG1,ITFG2,ITGA1,ITGA10,ITGA11,ITGA2,ITGA2B,ITGA3,ITGA4,ITGA5,ITGA6,ITGA7,ITGA8,ITGA9,ITGAE,ITGAL,ITGAM,ITGAV,ITGAX,ITGB1,ITGB1BP1,ITGB1BP2,ITGB2,ITGB3,ITGB3BP,ITGB4,ITGB5,ITGB6,ITGB7,ITGB8,ITGBL1,ITIH1,ITIH2,ITIH3,ITIH4,ITIH5,ITIH6,ITK,ITLN1,ITLN2,ITM2A,ITM2B,ITM2C,ITPA,ITPK1,ITPKA,ITPKB,ITPKC,ITPR1,ITPR2,ITPR3,ITPRID1,ITPRID2,ITPRIP,ITPRIPL1,ITSN1,ITSN2,IVD,IVL,IVNS1ABP,IWS1,IYD,IZUMO1,IZUMO2,IZUMO4,JADE1,JADE2,JADE3,JAG1,JAG2,JAGN1,JAK1,JAK2,JAK3,JAKMIP1,JAKMIP2,JAKMIP3,JAM2,JAM3,JAML,JARID2,JAZF1,JCHAIN,JDP2,JHY,JKAMP,JMJD1C,JMJD4,JMJD6,JMJD7,JMJD8,JMY,JOSD1,JOSD2,JPH1,JPH2,JPH3,JPH4,JPT2,JPX,JRK,JRKL,JSRP1,JTB,JUN,JUNB,JUND,JUP,KAAG1,KALRN,KANK1,KANK2,KANK3,KANK4,KANSL1,KANSL1L,KANSL2,KANSL3,KARS1,KASH5,KAT2A,KAT2B,KAT5,KAT6A,KAT6B,KAT7,KAT8,KATNA1,KATNAL1,KATNAL2,KATNB1,KAZALD1,KAZN,KBTBD11,KBTBD12,KBTBD2,KBTBD3,KBTBD4,KBTBD6,KBTBD7,KBTBD8,KCMF1,KCNA1,KCNA10,KCNA2,KCNA3,KCNA4,KCNA5,KCNA6,KCNA7,KCNAB1,KCNAB2,KCNAB3,KCNB1,KCNB2,KCNC1,KCNC2,KCNC3,KCNC4,KCND1,KCND2,KCND3,KCNE1,KCNE2,KCNE3,KCNE4,KCNE5,KCNF1,KCNG1,KCNG2,KCNG3,KCNG4,KCNH1,KCNH2,KCNH3,KCNH4,KCNH5,KCNH6,KCNH7,KCNH8,KCNIP1,KCNIP2,KCNIP3,KCNIP4,KCNIP4-IT1,KCNJ1,KCNJ10,KCNJ11,KCNJ12,KCNJ13,KCNJ14,KCNJ15,KCNJ16,KCNJ18,KCNJ2,KCNJ3,KCNJ4,KCNJ5,KCNJ5-AS1,KCNJ6,KCNJ8,KCNJ9,KCNK1,KCNK10,KCNK12,KCNK13,KCNK15,KCNK16,KCNK17,KCNK18,KCNK2,KCNK3,KCNK4,KCNK5,KCNK6,KCNK7,KCNK9,KCNMA1,KCNMB1,KCNMB2,KCNMB4,KCNN1,KCNN2,KCNN3,KCNN4,KCNQ1,KCNQ1DN,KCNQ2,KCNQ3,KCNQ4,KCNQ5,KCNRG,KCNS1,KCNS2,KCNS3,KCNT2,KCNU1,KCNV1,KCNV2,KCP,KCTD1,KCTD10,KCTD11,KCTD12,KCTD13,KCTD14,KCTD15,KCTD17,KCTD18,KCTD2,KCTD20,KCTD21,KCTD3,KCTD4,KCTD5,KCTD6,KCTD7,KCTD8,KCTD9,KDELR1,KDELR2,KDELR3,KDF1,KDM1A,KDM2A,KDM2B,KDM3A,KDM3B,KDM4A,KDM4B,KDM4C,KDM4D,KDM5A,KDM5B,KDM5C,KDM5D,KDM6A,KDM6B,KDM8,KDR,KDSR,KEAP1,KEL,KERA,KGD4,KHDC1,KHDC1L,KHDC4,KHDRBS1,KHDRBS2,KHDRBS3,KHK,KHNYN,KHSRP,KIAA0040,KIAA0087,KIAA0232,KIAA0319,KIAA0319L,KIAA0408,KIAA0513,KIAA0586,KIAA0753,KIAA0825,KIAA0930,KIAA1191,KIAA1217,KIAA1328,KIAA1549,KIAA1549L,KIAA1586,KIAA1614,KICS2,KIDINS220,KIF11,KIF12,KIF13A,KIF13B,KIF14,KIF15,KIF16B,KIF17,KIF18A,KIF19,KIF1A,KIF1B,KIF1C,KIF20A,KIF20B,KIF21A,KIF21B,KIF22,KIF23,KIF24,KIF25,KIF25-AS1,KIF26A,KIF26B,KIF27,KIF2A,KIF2B,KIF2C,KIF3A,KIF3B,KIF3C,KIF4A,KIF4B,KIF5A,KIF5B,KIF5C,KIF6,KIF7,KIF9,KIFAP3,KIFBP,KIFC2,KIFC3,KIN,KIR2DL1,KIR2DL2,KIR2DL3,KIR2DL4,KIR2DL5A,KIR2DL5B,KIR2DS1,KIR2DS2,KIR2DS3,KIR2DS4,KIR2DS5,KIR3DL1,KIR3DL2,KIR3DP1,KIR3DS1,KIR3DX1,KIRREL1,KIRREL2,KIRREL3,KIRREL3-AS3,KISS1,KISS1R,KIT,KITLG,KIZ,KL,KLB,KLC1,KLC2,KLC3,KLC4,KLF1,KLF10,KLF11,KLF12,KLF13,KLF14,KLF15,KLF16,KLF17,KLF2,KLF3,KLF4,KLF5,KLF6,KLF7,KLF8,KLF9,KLHDC1,KLHDC10,KLHDC2,KLHDC3,KLHDC4,KLHDC7A,KLHDC7B,KLHDC8A,KLHDC8B,KLHDC9,KLHL1,KLHL10,KLHL11,KLHL12,KLHL13,KLHL14,KLHL17,KLHL18,KLHL2,KLHL20,KLHL21,KLHL22,KLHL23,KLHL24,KLHL25,KLHL26,KLHL28,KLHL29,KLHL3,KLHL30,KLHL30-AS1,KLHL31,KLHL32,KLHL34,KLHL35,KLHL36,KLHL4,KLHL40,KLHL41,KLHL42,KLHL5,KLHL6,KLHL7,KLHL8,KLHL9,KLK1,KLK10,KLK11,KLK12,KLK13,KLK14,KLK15,KLK2,KLK3,KLK4,KLK5,KLK6,KLK7,KLK8,KLK9,KLKB1,KLKP1,KLRA1P,KLRB1,KLRC1,KLRC2,KLRC3,KLRC4,KLRD1,KLRF1,KLRG1,KLRG2,KLRK1,KMO,KMT2A,KMT2B,KMT2C,KMT2E,KMT5A,KMT5B,KMT5C,KNCN,KNDC1,KNG1,KNL1,KNTC1,KPNA1,KPNA2,KPNA3,KPNA4,KPNA5,KPNA6,KPNB1,KPTN,KRAS,KRBA1,KRBA2,KRBOX4,KRBOX5,KRCC1,KREMEN1,KREMEN2,KRI1,KRIT1,KRR1,KRT1,KRT10,KRT10-AS1,KRT12,KRT13,KRT14,KRT15,KRT16,KRT16P2,KRT16P3,KRT17,KRT18,KRT19,KRT2,KRT20,KRT222,KRT23,KRT24,KRT25,KRT26,KRT27,KRT28,KRT3,KRT31,KRT32,KRT33A,KRT33B,KRT34,KRT35,KRT36,KRT37,KRT38,KRT39,KRT4,KRT40,KRT5,KRT6A,KRT6B,KRT6C,KRT7,KRT71,KRT72,KRT73,KRT74,KRT75,KRT76,KRT77,KRT78,KRT79,KRT8,KRT80,KRT81,KRT82,KRT83,KRT84,KRT85,KRT86,KRT9,KRTAP1-1,KRTAP1-3,KRTAP1-5,KRTAP10-1,KRTAP10-10,KRTAP10-11,KRTAP10-12,KRTAP10-2,KRTAP10-4,KRTAP10-5,KRTAP10-6,KRTAP10-7,KRTAP10-8,KRTAP10-9,KRTAP11-1,KRTAP12-1,KRTAP12-2,KRTAP12-3,KRTAP12-4,KRTAP13-1,KRTAP13-2,KRTAP13-3,KRTAP13-4,KRTAP15-1,KRTAP16-1,KRTAP17-1,KRTAP19-1,KRTAP19-2,KRTAP19-3,KRTAP19-4,KRTAP19-5,KRTAP19-6,KRTAP19-7,KRTAP2-1,KRTAP2-2,KRTAP2-4,KRTAP20-1,KRTAP20-2,KRTAP20-4,KRTAP21-1,KRTAP21-2,KRTAP23-1,KRTAP26-1,KRTAP27-1,KRTAP3-1,KRTAP3-2,KRTAP3-3,KRTAP4-1,KRTAP4-11,KRTAP4-12,KRTAP4-2,KRTAP4-3,KRTAP4-4,KRTAP4-5,KRTAP4-6,KRTAP4-7,KRTAP4-8,KRTAP4-9,KRTAP5-1,KRTAP5-11,KRTAP5-2,KRTAP5-3,KRTAP5-4,KRTAP5-5,KRTAP5-6,KRTAP5-7,KRTAP5-8,KRTAP5-9,KRTAP6-1,KRTAP6-2,KRTAP6-3,KRTAP7-1,KRTAP8-1,KRTAP9-1,KRTAP9-2,KRTAP9-3,KRTAP9-4,KRTAP9-6,KRTAP9-8,KRTAP9-9,KRTCAP2,KRTCAP3,KRTDAP,KSR2,KTI12,KTN1,KXD1,KY,KYAT1,KYAT3,KYNU,L1CAM,L1CAM-AS1,L1TD1,L2HGDH,L3HYPDH,L3MBTL1,L3MBTL2,L3MBTL3,L3MBTL4,LACC1,LACRT,LACTB,LACTB2,LAD1,LAG3,LAGE3,LAIR1,LAIR2,LALBA,LAMA1,LAMA2,LAMA3,LAMA4,LAMA5,LAMB1,LAMB2,LAMB3,LAMB4,LAMC1,LAMC2,LAMC3,LAMP1,LAMP2,LAMP3,LAMP5,LAMTOR1,LAMTOR2,LAMTOR3,LAMTOR5,LANCL1,LANCL2,LANCL3,LAP3,LAPTM4A,LAPTM4B,LAPTM5,LARGE1,LARGE2,LARP1,LARP1B,LARP4,LARP4B,LARP6,LARP7,LARS1,LARS2,LAS1L,LASP1,LAT,LAT2,LATS1,LATS2,LAX1,LAYN,LBH,LBP,LBR,LBX1,LBX2,LCA5,LCA5L,LCAT,LCE1A,LCE1B,LCE1C,LCE1D,LCE1E,LCE1F,LCE2A,LCE2B,LCE2C,LCE2D,LCE3A,LCE3B,LCE3C,LCE3D,LCE3E,LCE4A,LCE5A,LCK,LCLAT1,LCMT1,LCMT2,LCN1,LCN10,LCN12,LCN15,LCN2,LCN6,LCN8,LCN9,LCNL1,LCOR,LCORL,LCP1,LCP2,LCT,LCTL,LDAF1,LDAH,LDB1,LDB2,LDB3,LDHA,LDHAL6A,LDHAL6B,LDHB,LDHC,LDHD,LDLR,LDLRAD2,LDLRAD3,LDLRAD4,LDLRAP1,LDOC1,LEAP2,LECT2,LEF1,LEFTY1,LEFTY2,LEKR1,LEMD1,LEMD3,LENEP,LENG1,LENG8,LENG9,LEO1,LEP,LEPR,LEPROT,LEPROTL1,LETM1,LETM2,LETMD1,LFNG,LGALS1,LGALS12,LGALS13,LGALS14,LGALS16,LGALS17A,LGALS2,LGALS3,LGALS3BP,LGALS4,LGALS8,LGALSL,LGI1,LGI2,LGI3,LGI4,LGMN,LGR4,LGR5,LGR6,LGSN,LGTN,LHB,LHCGR,LHFPL1,LHFPL2,LHFPL3,LHFPL4,LHFPL5,LHFPL6,LHFPL7,LHPP,LHX1,LHX2,LHX3,LHX4,LHX5,LHX6,LHX8,LHX9,LIAS,LIAT1,LIF,LIFR,LIG1,LIG3,LIG4,LILRA1,LILRA2,LILRA3,LILRA4,LILRA5,LILRA6,LILRB1,LILRB2,LILRB3,LILRB4,LILRB5,LILRP2,LIM2,LIMA1,LIMCH1,LIMD1,LIMD2,LIME1,LIMK1,LIMK2,LIMS1,LIMS2,LIMS3,LIN28A,LIN28B,LIN37,LIN54,LIN7A,LIN7B,LIN7C,LIN9,LINC00029,LINC00051,LINC00052,LINC00114,LINC00115,LINC00158,LINC00161,LINC00173,LINC00174,LINC00189,LINC00200,LINC00205,LINC00208,LINC00242,LINC00243,LINC00260,LINC00265,LINC00269,LINC00299,LINC00301,LINC00303,LINC00304,LINC00305,LINC00308,LINC00310,LINC00311,LINC00312,LINC00313,LINC00314,LINC00315,LINC00319,LINC00324,LINC00334,LINC00336,LINC00339,LINC00467,LINC00469,LINC00471,LINC00472,LINC00473,LINC00474,LINC00477,LINC00479,LINC00482,LINC00518,LINC00526,LINC00528,LINC00574,LINC00575,LINC00588,LINC00593,LINC00597,LINC00612,LINC00615,LINC00652,LINC00852,LINC00869,LINC01121,LINC01465,LINC01547,LINC01551,LINC01554,LINC01555,LINC01559,LINC01565,LINC01587,LINC01590,LINC01600,LINC01602,LINC02210,LINC02605,LINC02694,LINC02870,LINC02872,LINC02873,LINC02875,LINC02897,LINC02899,LINC02905,LINC02907,LINC02908,LINC02914,LINC02915,LINC02961,LINC03040,LINC03042,LINGO1,LINGO2,LINGO4,LINS1,LIPA,LIPC,LIPE,LIPF,LIPG,LIPH,LIPI,LIPT1,LITAF,LIX1,LIX1L,LKAAEAR1,LLCFC1,LLGL1,LLGL2,LLPH,LMAN1,LMAN1L,LMAN2,LMAN2L,LMBR1,LMBR1L,LMBRD1,LMCD1,LMF1,LMF2,LMLN,LMNA,LMNB1,LMNB2,LMNTD1,LMNTD2,LMO1,LMO2,LMO3,LMO4,LMO7,LMOD1,LMOD3,LMTK2,LMX1A,LMX1B,LNP1,LNPEP,LNPK,LNX1,LNX2,LOC100288966,LOC102724197,LOC102724428,LOC107228383,LOC108281177,LONP1,LONP2,LONRF1,LONRF2,LONRF3,LOX,LOXHD1,LOXL1,LOXL2,LOXL3,LOXL4,LPA,LPAL2,LPAR1,LPAR2,LPAR3,LPAR4,LPAR5,LPAR6,LPCAT1,LPCAT2,LPCAT3,LPCAT4,LPGAT1,LPIN1,LPIN2,LPIN3,LPL,LPO,LPP,LPXN,LRAT,LRATD1,LRATD2,LRBA,LRCH1,LRCH2,LRCH3,LRCH4,LRFN3,LRFN4,LRFN5,LRG1,LRGUK,LRIF1,LRIG1,LRIG2,LRIG3,LRIT1,LRIT3,LRMDA,LRP1,LRP10,LRP11,LRP12,LRP1B,LRP2,LRP2BP,LRP3,LRP5,LRP5L,LRP6,LRP8,LRPAP1,LRPPRC,LRR1,LRRC1,LRRC10,LRRC14,LRRC15,LRRC17,LRRC18,LRRC19,LRRC2,LRRC20,LRRC23,LRRC24,LRRC25,LRRC27,LRRC28,LRRC3,LRRC31,LRRC32,LRRC34,LRRC36,LRRC37A,LRRC37A2,LRRC37A3,LRRC37A4P,LRRC37B,LRRC37BP1,LRRC39,LRRC3B,LRRC4,LRRC40,LRRC41,LRRC42,LRRC43,LRRC45,LRRC46,LRRC47,LRRC49,LRRC4C,LRRC52,LRRC55,LRRC56,LRRC57,LRRC59,LRRC61,LRRC69,LRRC7,LRRC70,LRRC71,LRRC75A,LRRC75B,LRRC8A,LRRC8B,LRRC8C,LRRC8D,LRRC8E,LRRC9,LRRCC1,LRRFIP1,LRRFIP2,LRRIQ1,LRRIQ3,LRRK1,LRRN1,LRRN2,LRRN3,LRRN4,LRRN4CL,LRRTM1,LRRTM2,LRRTM3,LRRTM4,LRSAM1,LRTM1,LRTM2,LRTOMT,LRWD1,LSAMP,LSG1,LSM1,LSM10,LSM11,LSM14A,LSM14B,LSM2,LSM3,LSM4,LSM5,LSM6,LSM7,LSMEM1,LSMEM2,LSP1,LSR,LSS,LST1,LTA,LTA4H,LTB,LTB4R,LTB4R2,LTBP1,LTBP2,LTBP3,LTBP4,LTBR,LTC4S,LTF,LTK,LTN1,LTO1,LTV1,LUC7L,LUC7L2,LUC7L3,LUM,LURAP1,LURAP1L,LUZP1,LUZP2,LUZP4,LUZP6,LVRN,LXN,LY6D,LY6E,LY6G5B,LY6G5C,LY6G6C,LY6G6D,LY6G6E,LY6G6F,LY6H,LY6K,LY6S-AS1,LY75,LY86,LY86-AS1,LY9,LY96,LYAR,LYG1,LYG2,LYL1,LYN,LYNX1,LYPD1,LYPD2,LYPD3,LYPD4,LYPD5,LYPD6,LYPD6B,LYPLA1,LYPLA2,LYPLA2P1,LYPLAL1,LYRM1,LYRM2,LYRM4,LYRM7,LYRM9,LYSMD1,LYSMD2,LYSMD3,LYSMD4,LYST,LYVE1,LYZ,LYZL4,LYZL6,LZIC,LZTFL1,LZTR1,LZTS1,LZTS2,M1AP,M6PR,MAB21L1,MAB21L2,MAB21L3,MAB21L4,MACC1,MACF1,MACIR,MACROD1,MACROD2,MACROH2A1,MACROH2A2,MAD1L1,MAD2L1,MAD2L1BP,MAD2L2,MADCAM1,MADD,MAEA,MAEL,MAF,MAF1,MAFA,MAFB,MAFF,MAFG,MAFK,MAG,MAGEA1,MAGEA10,MAGEA11,MAGEA12,MAGEA2,MAGEA2B,MAGEA4,MAGEA5P,MAGEA8,MAGEB1,MAGEB10,MAGEB17,MAGEB18,MAGEB2,MAGEB3,MAGEB4,MAGEB6,MAGEC1,MAGEC2,MAGEC3,MAGED1,MAGED2,MAGEE1,MAGEE2,MAGEF1,MAGEH1,MAGEL2,MAGI1,MAGI2,MAGI3,MAGIX,MAGOH,MAGOH2P,MAGOHB,MAGT1,MAIP1,MAK,MAK16,MAL,MAL2,MALAT1,MALL,MALSU1,MALT1,MAMDC2,MAMDC4,MAML1,MAML2,MAML3,MAMLD1,MAMSTR,MAN1A1,MAN1A2,MAN1B1,MAN1C1,MAN2A1,MAN2A2,MAN2B1,MAN2B2,MAN2C1,MANBA,MANBAL,MANEA,MANEAL,MANF,MANSC1,MAOA,MAOB,MAP10,MAP1A,MAP1B,MAP1LC3A,MAP1LC3B,MAP1S,MAP2,MAP2K1,MAP2K2,MAP2K3,MAP2K4,MAP2K5,MAP2K6,MAP2K7,MAP3K10,MAP3K11,MAP3K12,MAP3K13,MAP3K14,MAP3K15,MAP3K19,MAP3K2,MAP3K20,MAP3K3,MAP3K4,MAP3K5,MAP3K6,MAP3K7,MAP3K7CL,MAP3K8,MAP3K9,MAP4,MAP4K1,MAP4K2,MAP4K3,MAP4K4,MAP4K5,MAP6,MAP6D1,MAP7,MAP7D1,MAP7D2,MAP9,MAPDA,MAPK1,MAPK10,MAPK11,MAPK12,MAPK13,MAPK14,MAPK15,MAPK1IP1L,MAPK3,MAPK4,MAPK6,MAPK7,MAPK8,MAPK8IP1,MAPK8IP2,MAPK8IP3,MAPK9,MAPKAP1,MAPKAPK2,MAPKAPK3,MAPKAPK5,MAPKAPK5-AS1,MAPRE1,MAPRE2,MAPRE3,MAPT,MARCHF1,MARCHF10,MARCHF2,MARCHF3,MARCHF5,MARCHF6,MARCHF7,MARCHF8,MARCHF9,MARCKS,MARCKSL1,MARCO,MARF1,MARK1,MARK2,MARK3,MARK4,MARS2,MARVELD1,MARVELD3,MAS1,MAS1L,MASP1,MASP2,MAST1,MAST2,MAST4,MASTL,MAT1A,MAT2A,MAT2B,MATCAP1,MATK,MATN1,MATN2,MATN3,MATN4,MATR3,MAU2,MAVS,MAX,MAZ,MB,MB21D2,MBD1,MBD2,MBD3,MBD3L1,MBD4,MBD5,MBD6,MBIP,MBL1P,MBL2,MBLAC1,MBLAC2,MBNL1,MBNL2,MBNL3,MBOAT1,MBOAT2,MBOAT7,MBP,MBTD1,MBTPS1,MBTPS2,MC1R,MC2R,MC3R,MC4R,MC5R,MCAM,MCAT,MCC,MCCC1,MCCC2,MCEE,MCEMP1,MCF2,MCF2L,MCF2L2,MCFD2,MCHR1,MCHR2,MCL1,MCM10,MCM2,MCM3,MCM3AP,MCM3AP-AS1,MCM4,MCM5,MCM6,MCM7,MCM8,MCM9,MCMBP,MCMDC2,MCOLN1,MCOLN2,MCOLN3,MCPH1,MCRIP1,MCRIP2,MCRS1,MCTP1,MCTP2,MCTS1,MCTS2,MCU,MCUB,MCUR1,MDC1,MDFI,MDFIC,MDGA1,MDGA2,MDH1,MDH1B,MDH2,MDK,MDM1,MDM2,MDM4,MDN1,MDP1,MDS2,ME1,ME2,ME3,MEA1,MEAF6,MEAK7,MECOM,MECP2,MECR,MED1,MED10,MED11,MED12,MED12L,MED13,MED13L,MED14,MED15,MED16,MED17,MED18,MED19,MED20,MED21,MED23,MED24,MED25,MED26,MED27,MED28,MED29,MED30,MED31,MED4,MED6,MED7,MED8,MED9,MEDAG,MEF2A,MEF2B,MEF2C,MEF2D,MEFV,MEGF10,MEGF11,MEGF8,MEGF9,MEI1,MEIOB,MEIOC,MEIS1,MEIS2,MEIS3,MEIS3P2,MELK,MELTF,MEMO1,MEN1,MEOX1,MEOX2,MEP1A,MEP1B,MEPCE,MEPE,MERTK,MESD,MESP1,MEST,MET,METAP1,METAP1D,METAP2,METRN,METRNL,METTL1,METTL13,METTL14,METTL15,METTL16,METTL17,METTL18,METTL21A,METTL22,METTL24,METTL25,METTL25B,METTL26,METTL27,METTL2A,METTL2B,METTL3,METTL4,METTL5,METTL6,METTL8,METTL9,MEX3B,MEX3C,MEX3D,MFAP1,MFAP2,MFAP3,MFAP3L,MFAP4,MFAP5,MFF,MFGE8,MFHAS1,MFN1,MFN2,MFNG,MFRP,MFSD1,MFSD10,MFSD11,MFSD12,MFSD13A,MFSD14A,MFSD14B,MFSD14CP,MFSD2A,MFSD2B,MFSD3,MFSD4A,MFSD4B,MFSD5,MFSD6,MFSD6L,MFSD8,MFSD9,MGAM,MGARP,MGAT1,MGAT2,MGAT3,MGAT4A,MGAT4B,MGAT4C,MGAT5,MGAT5B,MGC12916,MGC16025,MGC2889,MGC34796,MGLL,MGME1,MGMT,MGP,MGRN1,MGST1,MGST2,MGST3,MIA,MIA2,MIB1,MIB2,MICAL1,MICAL2,MICALL1,MICALL2,MICB,MICOS10,MICOS10-NBL1,MICOS13,MICU1,MICU2,MICU3,MID1,MID1IP1,MID2,MIDEAS,MIEF1,MIEF2,MIEN1,MIER1,MIER2,MIER3,MIF,MIF4GD,MIGA1,MIGA2,MIIP,MILR1,MINDY1,MINDY2,MINDY3,MINDY4,MINK1,MINPP1,MIOS,MIOX,MIP,MIPEP,MIPOL1,MIR1-1,MIR1-1HG,MIR103A1,MIR105-1,MIR105-2,MIR106B,MIR107,MIR10A,MIR10B,MIR1181,MIR1225,MIR1227,MIR1234,MIR1247,MIR1257,MIR126,MIR128-1,MIR128-2,MIR1281,MIR1282,MIR1287,MIR129-1,MIR129-2,MIR1292,MIR1298,MIR1307,MIR130B,MIR133A2,MIR133B,MIR137,MIR138-2,MIR139,MIR140,MIR147B,MIR148B,MIR149,MIR152,MIR153-1,MIR153-2,MIR15A,MIR15B,MIR16-1,MIR16-2,MIR17,MIR17HG,MIR185,MIR186,MIR188,MIR18A,MIR1909,MIR190A,MIR191,MIR196A1,MIR196A2,MIR19A,MIR19B1,MIR200A,MIR200B,MIR202,MIR206,MIR20A,MIR21,MIR211,MIR2110,MIR218-1,MIR218-2,MIR22,MIR22HG,MIR23B,MIR24-1,MIR25,MIR26A1,MIR26A2,MIR26B,MIR27B,MIR2861,MIR301A,MIR30B,MIR30C1,MIR30D,MIR30E,MIR31,MIR3120,MIR3128,MIR3189,MIR32,MIR330,MIR331,MIR33A,MIR34A,MIR3667HG,MIR423,MIR4260,MIR4287,MIR429,MIR4315-1,MIR4315-2,MIR4321,MIR455,MIR503,MIR504,MIR555,MIR564,MIR567,MIR572,MIR573,MIR589,MIR598,MIR600HG,MIR601,MIR604,MIR621,MIR630,MIR632,MIR635,MIR636,MIR637,MIR639,MIR646HG,MIR650,MIR658,MIR659,MIR664A,MIR671,MIR7-1,MIR7-2,MIR7-3,MIR7-3HG,MIR711,MIR873,MIR877,MIR9-1,MIR9-1HG,MIR92A1,MIR93,MIR935,MIR936,MIR939,MIR941-1,MIR941-2,MIR941-3,MIR943,MIR98,MIRLET7F2,MIRLET7G,MIS12,MIS18A,MIS18BP1,MISP,MITD1,MITF,MIXL1,MKI67,MKKS,MKLN1,MKNK2,MKRN1,MKRN2,MKRN3,MKRN9P,MKS1,MKX,MLANA,MLC1,MLEC,MLF1,MLF2,MLH1,MLH3,MLIP,MLKL,MLLT1,MLLT10,MLLT11,MLLT3,MLLT6,MLN,MLNR,MLPH,MLST8,MLX,MLXIP,MLXIPL,MLYCD,MMAA,MMAB,MMACHC,MMADHC,MMD,MMD2,MME,MMEL1,MMGT1,MMP1,MMP10,MMP11,MMP12,MMP13,MMP14,MMP15,MMP16,MMP17,MMP19,MMP2,MMP20,MMP21,MMP23A,MMP23B,MMP24,MMP25,MMP26,MMP27,MMP28,MMP3,MMP7,MMP8,MMP9,MMRN1,MMRN2,MMS19,MMS22L,MMUT,MN1,MNAT1,MND1,MNDA,MNS1,MNT,MNX1,MOAP1,MOB1A,MOB1B,MOB2,MOB3A,MOB3B,MOB4,MOCOS,MOCS1,MOCS2,MOCS3,MOG,MOGAT1,MOGAT2,MOGAT3,MOGS,MOK,MON1A,MON1B,MON2,MORC1,MORC2,MORC2-AS1,MORC3,MORC4,MORF4,MORF4L1,MORF4L2,MORN1,MORN2,MORN3,MORN4,MORN5,MOS,MOSMO,MOSPD1,MOSPD2,MOSPD3,MOV10,MOV10L1,MOXD1,MPC1,MPC2,MPDU1,MPDZ,MPG,MPHOSPH10,MPHOSPH6,MPHOSPH8,MPHOSPH9,MPI,MPIG6B,MPL,MPLKIP,MPND,MPO,MPP1,MPP2,MPP3,MPP4,MPP7,MPPE1,MPPED2,MPRIP,MPST,MPV17,MPV17L,MPV17L2,MPZ,MPZL1,MPZL2,MPZL3,MR1,MRAP,MRAP2,MRAS,MRC2,MRE11,MREG,MRFAP1,MRFAP1L1,MRGBP,MRGPRD,MRGPRF,MRGPRG,MRGPRG-AS1,MRGPRX1,MRGPRX2,MRGPRX3,MRGPRX4,MRI1,MRLN,MRM1,MRM2,MRM3,MRNIP,MRO,MROH2B,MROH7-TTC4,MROH8,MROH9,MRPL1,MRPL10,MRPL11,MRPL12,MRPL13,MRPL14,MRPL15,MRPL16,MRPL17,MRPL18,MRPL19,MRPL2,MRPL21,MRPL22,MRPL23,MRPL24,MRPL27,MRPL28,MRPL3,MRPL30,MRPL32,MRPL33,MRPL34,MRPL35,MRPL37,MRPL38,MRPL39,MRPL4,MRPL40,MRPL41,MRPL42,MRPL42P5,MRPL43,MRPL44,MRPL45,MRPL45P2,MRPL46,MRPL47,MRPL48,MRPL49,MRPL50,MRPL51,MRPL52,MRPL53,MRPL54,MRPL55,MRPL57,MRPL58,MRPL9,MRPS10,MRPS11,MRPS12,MRPS14,MRPS15,MRPS16,MRPS17,MRPS18A,MRPS18B,MRPS18C,MRPS2,MRPS21,MRPS22,MRPS23,MRPS24,MRPS25,MRPS26,MRPS27,MRPS28,MRPS30,MRPS31,MRPS33,MRPS34,MRPS35,MRPS5,MRPS6,MRPS7,MRPS9,MRRF,MRS2,MRTFA,MRTFB,MRTO4,MS4A1,MS4A10,MS4A12,MS4A14,MS4A15,MS4A2,MS4A4A,MS4A4E,MS4A5,MS4A6A,MS4A6E,MS4A7,MS4A8,MSANTD2,MSANTD3,MSANTD4,MSC,MSH2,MSH3,MSH4,MSH5,MSH6,MSI1,MSI2,MSL1,MSL2,MSL3,MSLN,MSMB,MSMO1,MSMP,MSN,MSR1,MSRA,MSRB1,MSRB2,MSRB3,MSS51,MST1R,MSTN,MSTO1,MSTO2P,MSX1,MSX2,MSX2P1,MT1A,MT1B,MT1DP,MT1E,MT1F,MT1G,MT1H,MT1HL1,MT1IP,MT1JP,MT1L,MT1M,MT1P3,MT1X,MT2A,MT3,MT4,MTA1,MTA2,MTA3,MTAP,MTARC1,MTARC2,MTBP,MTCH1,MTCH2,MTCL1,MTCL2,MTCL3,MTCP1,MTDH,MTERF1,MTERF2,MTERF3,MTERF4,MTF2,MTFMT,MTFP1,MTFR1,MTFR1L,MTFR2,MTG1,MTG2,MTHFD1,MTHFD1L,MTHFD2,MTHFD2L,MTHFR,MTHFS,MTHFSD,MTIF2,MTIF3,MTLN,MTM1,MTMR1,MTMR10,MTMR11,MTMR12,MTMR14,MTMR2,MTMR3,MTMR4,MTMR6,MTMR8,MTMR9,MTMR9LP,MTNAP1,MTNR1A,MTNR1B,MTO1,MTOR,MTPAP,MTPN,MTR,MTRES1,MTREX,MTRF1,MTRF1L,MTRFR,MTRNR2L1,MTRR,MTSS1,MTSS2,MTTP,MTURN,MTUS1,MTUS2,MTX1,MTX2,MUC1,MUC13,MUC15,MUC17,MUC20,MUC21,MUC22,MUC4,MUC7,MUCL1,MUCL3,MUL1,MUS81,MUSK,MUSTN1,MUTYH,MVB12A,MVB12B,MVD,MVK,MVP,MX1,MX2,MXD1,MXD3,MXD4,MXI1,MXRA5,MXRA7,MXRA8,MYADM,MYADML,MYB,MYBBP1A,MYBL2,MYBPC1,MYBPC2,MYBPC3,MYBPH,MYC,MYCBP,MYCBP2,MYCBPAP,MYCL,MYCN,MYCNOS,MYCT1,MYD88,MYDGF,MYEF2,MYEOV,MYF5,MYF6,MYG1,MYH1,MYH10,MYH11,MYH13,MYH14,MYH2,MYH3,MYH4,MYH6,MYH7,MYH7B,MYH8,MYH9,MYL1,MYL10,MYL11,MYL12A,MYL2,MYL3,MYL4,MYL5,MYL6,MYL6B,MYL7,MYL9,MYLIP,MYLK,MYLK2,MYLK3,MYNN,MYO10,MYO15A,MYO15B,MYO18A,MYO18B,MYO19,MYO1A,MYO1B,MYO1C,MYO1D,MYO1E,MYO1F,MYO1H,MYO3A,MYO3B,MYO5A,MYO5B,MYO5C,MYO6,MYO7A,MYO7B,MYO9A,MYO9B,MYOC,MYOCD,MYOD1,MYOF,MYOG,MYOM1,MYOM2,MYOM3,MYORG,MYOT,MYOZ1,MYOZ2,MYOZ3,MYPN,MYRF,MYRFL,MYRIP,MYSM1,MYT1,MYT1L,MZF1,MZT2A,MZT2B,N4BP1,N4BP2,N4BP2L1,N4BP2L2,N4BP2L2-IT2,N4BP3,N6AMT1,NAA10,NAA15,NAA16,NAA20,NAA25,NAA35,NAA38,NAA40,NAA50,NAA60,NAA80,NAAA,NAALAD2,NAALADL1,NAALADL2,NAB1,NAB2,NABP1,NABP2,NACA,NACA2,NACA4P,NACC1,NACC2,NADK,NADK2,NADSYN1,NAE1,NAF1,NAGA,NAGK,NAGLU,NAGPA,NAGS,NAIF1,NALCN,NALF2,NAMPT,NANOG,NANOGNB,NANOGP1,NANOS1,NANP,NANS,NAP1L1,NAP1L2,NAP1L3,NAP1L4,NAP1L5,NAPA,NAPB,NAPEPLD,NAPG,NAPRT,NAPSA,NAPSB,NARF,NARS1,NARS2,NASP,NAT1,NAT10,NAT14,NAT16,NAT2,NAT8,NAT8B,NAT8L,NAT9,NATD1,NAV1,NAV2,NAV3,NAXD,NAXE,NBAS,NBEA,NBEAL1,NBEAL2,NBL1,NBN,NBPF1,NBPF10,NBPF11,NBPF12,NBPF14,NBPF15,NBPF22P,NBPF3,NBPF4,NBPF6,NBPF7P,NBPF8,NBPF9,NBR1,NBR2,NCALD,NCAM1,NCAM2,NCAN,NCAPD2,NCAPD3,NCAPG,NCAPG2,NCAPH,NCAPH2,NCBP1,NCBP2,NCBP3,NCCRP1,NCDN,NCEH1,NCF2,NCF4,NCK1,NCK2,NCKAP1,NCKAP1L,NCKAP5,NCKAP5L,NCKIPSD,NCL,NCLN,NCOA1,NCOA2,NCOA3,NCOA4,NCOA5,NCOA6,NCOA7,NCOR1,NCOR1P1,NCOR2,NCR1,NCR2,NCR3,NCS1,NCSTN,ND1,ND3,ND4,ND4L,ND5,ND6,NDC1,NDC80,NDE1,NDEL1,NDFIP1,NDFIP2,NDN,NDNF,NDP,NDRG1,NDRG2,NDRG3,NDRG4,NDST1,NDST2,NDST3,NDST4,NDUFA1,NDUFA10,NDUFA11,NDUFA12,NDUFA13,NDUFA2,NDUFA3,NDUFA4,NDUFA4L2,NDUFA5,NDUFA6,NDUFA7,NDUFA8,NDUFA9,NDUFAB1,NDUFAF1,NDUFAF2,NDUFAF3,NDUFAF4,NDUFAF5,NDUFAF6,NDUFAF7,NDUFB1,NDUFB10,NDUFB11,NDUFB2,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,NDUFC1,NDUFC2,NDUFS1,NDUFS2,NDUFS3,NDUFS4,NDUFS5,NDUFS6,NDUFS7,NDUFS8,NDUFV1,NDUFV1-DT,NDUFV3,NEB,NEBL,NECAB1,NECAB2,NECAB3,NECAP1,NECAP2,NECTIN1,NECTIN2,NECTIN3,NECTIN4,NEDD1,NEDD4,NEDD4L,NEDD8,NEDD9,NEFH,NEFL,NEFM,NEGR1,NEIL1,NEIL2,NEIL3,NEK1,NEK10,NEK11,NEK2,NEK3,NEK4,NEK5,NEK6,NEK7,NEK8,NEK9,NELFA,NELFCD,NELFE,NELL1,NELL2,NEMF,NENF,NEO1,NEPRO,NES,NET1,NETO1,NETO2,NEU1,NEU2,NEU3,NEU4,NEURL1,NEURL2,NEURL3,NEURL4,NEUROD1,NEUROD2,NEUROD4,NEUROD6,NEUROG1,NEUROG2,NEUROG3,NEXN,NEXN-AS1,NF1,NF1P5,NF2,NFAM1,NFASC,NFAT5,NFATC1,NFATC2,NFATC2IP,NFATC3,NFATC4,NFE2,NFE2L1,NFE2L2,NFE2L3,NFE4,NFIA,NFIB,NFIC,NFIL3,NFIX,NFKB1,NFKB2,NFKBIA,NFKBIB,NFKBID,NFKBIE,NFKBIL1,NFKBIZ,NFRKB,NFS1,NFU1,NFX1,NFXL1,NFYA,NFYB,NFYC,NGB,NGDN,NGEF,NGF,NGFR,NGLY1,NGRN,NHEJ1,NHERF1,NHERF2,NHERF4,NHLH1,NHLH2,NHLRC1,NHLRC2,NHLRC4,NHP2,NHS,NHSL3,NIBAN1,NIBAN2,NIBAN3,NICN1,NID1,NID2,NIF3L1,NIFK,NIM1K,NIN,NINJ1,NINJ2,NINL,NIP7,NIPA1,NIPA2,NIPAL1,NIPAL2,NIPAL3,NIPBL,NIPSNAP1,NIPSNAP2,NIPSNAP3A,NIPSNAP3B,NISCH,NIT1,NIT2,NKAIN1,NKAIN2,NKAIN3,NKAIN4,NKAP,NKAPD1,NKAPP1,NKD1,NKD2,NKG7,NKIRAS1,NKIRAS2,NKPD1,NKRF,NKTR,NKX2-1,NKX2-2,NKX2-3,NKX2-5,NKX2-8,NKX3-1,NKX3-2,NKX6-1,NKX6-2,NKX6-3,NLE1,NLGN1,NLGN2,NLGN3,NLGN4X,NLGN4Y,NLK,NLN,NLRC3,NLRC4,NLRC5,NLRP1,NLRP10,NLRP11,NLRP12,NLRP13,NLRP14,NLRP2,NLRP3,NLRP4,NLRP5,NLRP6,NLRP7,NLRP8,NLRP9,NLRX1,NMB,NMBR,NMD3,NME1,NME1-NME2,NME2,NME3,NME4,NME5,NME6,NME7,NME8,NME9,NMI,NMNAT1,NMNAT2,NMNAT3,NMRAL1,NMRK1,NMRK2,NMT1,NMT2,NMU,NMUR1,NMUR2,NNAT,NNMT,NNT,NOA1,NOB1,NOC2L,NOC3L,NOC4L,NOCT,NOD1,NOD2,NODAL,NOG,NOL10,NOL11,NOL12,NOL3,NOL4,NOL4L,NOL6,NOL7,NOL8,NOL9,NOLC1,NONO,NOP10,NOP14,NOP16,NOP2,NOP53,NOP56,NOP58,NOP9,NOS1,NOS1AP,NOS2,NOS3,NOSIP,NOSTRIN,NOTCH1,NOTCH2,NOTCH2NLB,NOTCH3,NOTCH4,NOTO,NOVA1,NOVA2,NOX1,NOX3,NOX4,NOX5,NOXA1,NOXO1,NOXRED1,NPAP1,NPAS1,NPAS2,NPAS3,NPAS4,NPAT,NPBWR1,NPBWR2,NPC1,NPC1L1,NPC2,NPDC1,NPEPL1,NPEPPS,NPFF,NPFFR1,NPFFR2,NPHP1,NPHP3,NPHP4,NPHS1,NPHS2,NPIPB15,NPIPB3,NPL,NPLOC4,NPM1,NPM2,NPM3,NPNT,NPPA,NPPB,NPPC,NPR1,NPR2,NPR3,NPRL2,NPRL3,NPSR1,NPTN,NPTX1,NPTX2,NPTXR,NPVF,NPW,NPY,NPY1R,NPY2R,NPY5R,NPY6R,NQO1,NQO2,NR0B1,NR0B2,NR1D1,NR1D2,NR1H2,NR1H3,NR1H4,NR1I2,NR1I3,NR2C1,NR2C2,NR2C2AP,NR2E1,NR2E3,NR2F1,NR2F2,NR2F6,NR3C1,NR3C2,NR4A1,NR4A2,NR4A3,NR5A1,NR5A2,NR6A1,NRAP,NRAS,NRBF2,NRBP1,NRBP2,NRCAM,NRDC,NRDE2,NREP,NRF1,NRG1,NRG2,NRG4,NRGN,NRIP1,NRIP2,NRIP3,NRK,NRL,NRM,NRN1,NRN1L,NRP1,NRP2,NRROS,NRSN1,NRSN2,NRTN,NRXN1,NRXN2,NRXN3,NSD1,NSD2,NSD3,NSDHL,NSF,NSFL1C,NSFP1,NSG1,NSG2,NSL1,NSMAF,NSMCE1,NSMCE2,NSMCE3,NSMCE4A,NSRP1,NSUN2,NSUN3,NSUN4,NSUN5,NSUN5P1,NSUN5P2,NSUN6,NSUN7,NT5C,NT5C1A,NT5C1B,NT5C2,NT5C3A,NT5C3B,NT5DC1,NT5DC2,NT5DC3,NT5DC4,NT5E,NT5M,NTAN1,NTAQ1,NTF3,NTF4,NTHL1,NTM,NTM-AS1,NTMT1,NTN1,NTN3,NTN4,NTN5,NTNG1,NTNG2,NTPCR,NTRK1,NTRK2,NTRK3,NTS,NTSR1,NTSR2,NUAK1,NUAK2,NUB1,NUBP1,NUBP2,NUBPL,NUCB2,NUCKS1,NUDC,NUDCD1,NUDCD2,NUDCD3,NUDT1,NUDT10,NUDT11,NUDT12,NUDT13,NUDT14,NUDT15,NUDT16,NUDT16L1,NUDT16L2P,NUDT17,NUDT18,NUDT2,NUDT21,NUDT22,NUDT3,NUDT4,NUDT4B,NUDT5,NUDT6,NUDT8,NUDT9,NUDT9P1,NUF2,NUFIP1,NUFIP2,NUMA1,NUMB,NUMBL,NUP107,NUP133,NUP153,NUP155,NUP160,NUP210,NUP210L,NUP210P1,NUP214,NUP35,NUP37,NUP42,NUP43,NUP50,NUP54,NUP58,NUP62,NUP62CL,NUP88,NUP93,NUP98,NUPR1,NUSAP1,NUTF2,NUTM1,NVL,NXF1,NXF2,NXF2B,NXF3,NXF4,NXF5,NXN,NXNL1,NXNL2,NXPE1,NXPE2,NXPE3,NXPE4,NXPH1,NXPH2,NXPH3,NXPH4,NXT1,NXT2,NYAP1,NYNRIN,NYX,OAF,OARD1,OAS1,OAS2,OAS3,OASL,OAT,OAZ1,OAZ2,OAZ3,OBI1,OBP2A,OBP2B,OBSCN,OBSL1,OCA2,OCEL1,OCIAD1,OCIAD2,OCM,OCM2,OCRL,ODAD1,ODAD2,ODAD3,ODAD4,ODAM,ODAPH,ODC1,ODF1,ODF2,ODF2L,ODF4,ODR4,OFCC1,OFD1,OGA,OGDH,OGDHL,OGFOD1,OGFOD2,OGFOD3,OGFR,OGFRL1,OGG1,OGN,OGT,OIP5,OIT3,OLA1,OLAH,OLFM1,OLFM2,OLFM3,OLFM4,OLFML1,OLFML2A,OLFML2B,OLFML3,OLIG1,OLIG2,OLIG3,OLR1,OMA1,OMD,OMG,OMP,ONECUT1,ONECUT2,OOEP,OOSP1,OOSP2,OPA1,OPA3,OPALIN,OPCML,OPHN1,OPLAH,OPN1LW,OPN1MW,OPN1MW2,OPN1SW,OPN3,OPN4,OPN5,OPRD1,OPRK1,OPRL1,OPRM1,OPRPN,OPTC,OPTN,OR10A2,OR10A3,OR10A4,OR10A5,OR10A6,OR10A7,OR10AD1,OR10D1P,OR10G4,OR10G6,OR10G7,OR10G8,OR10G9,OR10H1,OR10H2,OR10H3,OR10H4,OR10H5,OR10J1,OR10J3,OR10J5,OR10K1,OR10K2,OR10Q1,OR10R2,OR10R3P,OR10S1,OR10T2,OR10V1,OR10W1,OR10X1,OR10Z1,OR11A1,OR11H4,OR11H6,OR11L1,OR12D2,OR12D3,OR13A1,OR13C2,OR13C3,OR13C5,OR13C8,OR13C9,OR13D1,OR13F1,OR13H1,OR13J1,OR14A16,OR14A2,OR1A1,OR1A2,OR1B1,OR1C1,OR1D2,OR1D4,OR1D5,OR1E1,OR1E2,OR1F1,OR1G1,OR1I1,OR1J1,OR1J2,OR1J4,OR1L1,OR1L3,OR1L4,OR1L6,OR1L8,OR1M1,OR1N1,OR1N2,OR1Q1,OR1S1,OR1S2,OR2A12,OR2A14,OR2A2,OR2A25,OR2A5,OR2AE1,OR2AG1,OR2AJ1,OR2AK2,OR2AT4,OR2B11,OR2B2,OR2B3,OR2B6,OR2C1,OR2C3,OR2D2,OR2D3,OR2F1,OR2F2,OR2G2,OR2G3,OR2H1,OR2H2,OR2J3,OR2K2,OR2L13,OR2L2,OR2L3,OR2L8,OR2M1P,OR2M2,OR2M3,OR2M4,OR2M5,OR2M7,OR2S2,OR2T12,OR2T33,OR2T8,OR2V2,OR2W1,OR2W3,OR2W5P,OR2Z1,OR3A1,OR3A2,OR3A3,OR3A4P,OR4A15,OR4A16,OR4A5,OR4B1,OR4C11,OR4C12,OR4C15,OR4C16,OR4C3,OR4C6,OR4D1,OR4D10,OR4D11,OR4D2,OR4D5,OR4D6,OR4D9,OR4E2,OR4F6,OR4K1,OR4K13,OR4K14,OR4K17,OR4L1,OR4M1,OR4M2,OR4N2,OR4N3P,OR4N4,OR4N5,OR4P4,OR4S1,OR4S2,OR4X1,OR4X2,OR51A2,OR51A4,OR51A7,OR51B2,OR51B4,OR51B5,OR51B6,OR51D1,OR51E1,OR51E2,OR51F1,OR51F2,OR51G1,OR51G2,OR51I1,OR51I2,OR51L1,OR51M1,OR51Q1,OR51S1,OR51T1,OR51V1,OR52A1,OR52A4P,OR52A5,OR52B4,OR52B6,OR52D1,OR52E2,OR52E4,OR52E5,OR52E6,OR52E8,OR52H1,OR52I2,OR52J3,OR52K1,OR52K2,OR52L1,OR52M1,OR52N1,OR52N2,OR52N4,OR52N5,OR52R1,OR52W1,OR56A1,OR56A3,OR56A4,OR56B1,OR56B4,OR5A1,OR5A2,OR5AC2,OR5AK2,OR5AN1,OR5AP2,OR5AR1,OR5AS1,OR5AU1,OR5B12,OR5B21,OR5D13,OR5D14,OR5I1,OR5K1,OR5K2,OR5L1,OR5L2,OR5M1,OR5M10,OR5M11,OR5M3,OR5M8,OR5M9,OR5P2,OR5P3,OR5T1,OR5T2,OR5T3,OR5V1,OR5W2,OR6A2,OR6B1,OR6B2,OR6B3,OR6C1,OR6C2,OR6C3,OR6C74,OR6C76,OR6F1,OR6K2,OR6K3,OR6K6,OR6M1,OR6N1,OR6N2,OR6Q1,OR6S1,OR6T1,OR6V1,OR6W1P,OR6X1,OR6Y1,OR7A10,OR7A17,OR7A5,OR7C1,OR7C2,OR7D4,OR7E125P,OR7E154P,OR7E5P,OR7G1,OR7G2,OR7G3,OR8A1,OR8B12,OR8B4,OR8B8,OR8D1,OR8D2,OR8D4,OR8G1,OR8G2P,OR8G5,OR8H1,OR8H2,OR8H3,OR8I2,OR8J1,OR8J3,OR8K1,OR8K3,OR8K5,OR8S1,OR8U1,OR8U3,OR8U8,OR8U9,OR9A2,OR9A4,OR9G1,OR9G4,OR9G9,OR9H1,OR9I1,OR9K2,OR9Q1,OR9Q2,ORAI1,ORAI2,ORAI3,ORC1,ORC2,ORC3,ORC4,ORC5,ORC6,ORM1,ORM2,ORMDL1,ORMDL2,ORMDL3,OS9,OSBP,OSBP2,OSBPL10,OSBPL11,OSBPL1A,OSBPL2,OSBPL3,OSBPL5,OSBPL6,OSBPL7,OSBPL8,OSBPL9,OSCAR,OSCP1,OSER1,OSGEP,OSGEPL1,OSGIN1,OSGIN2,OSM,OSMR,OSR1,OSR2,OSTC,OSTCP1,OSTF1,OSTM1,OSTN,OTC,OTOA,OTOF,OTOGL,OTOP1,OTOP2,OTOP3,OTOR,OTOS,OTP,OTUB1,OTUB2,OTUD4,OTUD5,OTUD6A,OTUD6B,OTUD7A,OTUD7B,OTULIN,OTULINL,OTX1,OTX2,OVCA2,OVCH1,OVCH2,OVGP1,OVOL1,OVOL2,OVOS2,OXA1L,OXCT1,OXCT2,OXER1,OXGR1,OXNAD1,OXR1,OXSM,OXSR1,OXT,OXTR,P2RX1,P2RX2,P2RX3,P2RX4,P2RX5,P2RX6,P2RX7,P2RY1,P2RY10,P2RY11,P2RY12,P2RY13,P2RY14,P2RY2,P2RY4,P2RY6,P3H1,P3H2,P3H3,P3H4,P4HA1,P4HA2,P4HA3,P4HTM,PA2G4,PAAF1,PABIR1,PABIR2,PABIR3,PABPC1P2,PABPC3,PABPC4,PABPC5,PABPN1,PABPN1L,PACC1,PACRG,PACRGL,PACS1,PACS2,PACSIN1,PACSIN2,PACSIN3,PADI1,PADI2,PADI3,PADI4,PADI6,PAEP,PAF1,PAFAH1B1,PAFAH1B2,PAFAH1B3,PAFAH2,PAG1,PAGE1,PAGE2,PAGE2B,PAGE4,PAGE5,PAGR1,PAH,PAICS,PAIP1,PAIP2,PAK1,PAK1IP1,PAK2,PAK3,PAK4,PAK5,PAK6,PALB2,PALD1,PALLD,PALM,PALM2AKAP2,PALMD,PALS1,PALS2,PAM,PAM16,PAMR1,PAN2,PAN3,PANK1,PANK2,PANK3,PANK4,PANX1,PANX2,PANX3,PAOX,PAPLN,PAPOLA,PAPOLB,PAPOLG,PAPPA,PAPPA-AS1,PAPPA2,PAPSS1,PAPSS2,PAQR3,PAQR4,PAQR5,PAQR6,PAQR7,PAQR8,PAQR9,PARD3,PARD3B,PARD6A,PARD6B,PARD6G,PARG,PARK7,PARL,PARM1,PARN,PARP1,PARP10,PARP11,PARP12,PARP14,PARP15,PARP16,PARP2,PARP3,PARP4,PARP6,PARP8,PARP9,PARPBP,PARS2,PART1,PARVA,PARVB,PARVG,PASD1,PASK,PATE1,PATE2,PATE3,PATJ,PATL1,PATZ1,PAWR,PAX1,PAX2,PAX3,PAX4,PAX5,PAX6,PAX7,PAX8,PAX9,PAXBP1,PAXIP1,PAXX,PBK,PBLD,PBOV1,PBRM1,PBX1,PBX2,PBX3,PBX4,PBXIP1,PC,PCAT4,PCBD1,PCBD2,PCBP1,PCBP2,PCBP3,PCBP4,PCCA,PCCB,PCDH1,PCDH10,PCDH11X,PCDH11Y,PCDH12,PCDH15,PCDH17,PCDH18,PCDH20,PCDH7,PCDH8,PCDH9,PCDHA1,PCDHA10,PCDHA11,PCDHA12,PCDHA13,PCDHA2,PCDHA3,PCDHA4,PCDHA5,PCDHA6,PCDHA7,PCDHA8,PCDHA9,PCDHAC1,PCDHAC2,PCDHB1,PCDHB10,PCDHB11,PCDHB12,PCDHB13,PCDHB14,PCDHB15,PCDHB16,PCDHB17P,PCDHB18P,PCDHB19P,PCDHB2,PCDHB3,PCDHB4,PCDHB5,PCDHB6,PCDHB7,PCDHB8,PCDHB9,PCDHGA1,PCDHGA10,PCDHGA11,PCDHGA12,PCDHGA2,PCDHGA3,PCDHGA4,PCDHGA5,PCDHGA6,PCDHGA7,PCDHGA8,PCDHGA9,PCDHGB1,PCDHGB2,PCDHGB3,PCDHGB4,PCDHGB5,PCDHGB6,PCDHGB7,PCDHGB8P,PCDHGC3,PCDHGC4,PCDHGC5,PCED1A,PCED1B,PCF11,PCGF1,PCGF2,PCGF3,PCGF5,PCGF6,PCID2,PCIF1,PCK1,PCK2,PCLAF,PCLO,PCM1,PCMT1,PCMTD1,PCMTD2,PCNA,PCNA-AS1,PCNP,PCNT,PCNX1,PCNX2,PCNX4,PCOLCE,PCOLCE2,PCOTH,PCP2,PCP4,PCSK1,PCSK1N,PCSK2,PCSK4,PCSK5,PCSK6,PCSK7,PCSK9,PCTP,PCYOX1,PCYOX1L,PCYT1A,PCYT1B,PDAP1,PDC,PDCD10,PDCD11,PDCD1LG2,PDCD2,PDCD2L,PDCD4,PDCD5,PDCD6,PDCD6IP,PDCD7,PDCL,PDCL2,PDCL3,PDE10A,PDE11A,PDE1A,PDE1B,PDE1C,PDE2A,PDE3A,PDE3B,PDE4A,PDE4B,PDE4C,PDE4D,PDE4DIP,PDE5A,PDE6A,PDE6B,PDE6C,PDE6D,PDE6G,PDE6H,PDE7A,PDE7B,PDE8A,PDE8B,PDE9A,PDF,PDGFA,PDGFB,PDGFC,PDGFD,PDGFRA,PDGFRB,PDGFRL,PDHA1,PDHA2,PDHB,PDHX,PDIA2,PDIA3,PDIA4,PDIA5,PDIA6,PDIK1L,PDILT,PDK1,PDK2,PDK3,PDK4,PDLIM1,PDLIM2,PDLIM3,PDLIM4,PDLIM5,PDP1,PDP2,PDPK1,PDPN,PDPR,PDRG1,PDS5A,PDS5B,PDSS1,PDSS2,PDX1,PDXDC1,PDXK,PDXP,PDYN,PDZD11,PDZD2,PDZD4,PDZD7,PDZD8,PDZD9,PDZK1,PDZK1IP1,PDZK1P1,PDZRN3,PDZRN4,PEA15,PEAK3,PEBP1,PEBP4,PECAM1,PECR,PEDS1,PEF1,PEG10,PEG3,PELI1,PELI2,PELI3,PELO,PELP1,PEMT,PENK,PEPD,PER1,PER2,PER3,PERM1,PERP,PES1,PET117,PEX1,PEX10,PEX11A,PEX11B,PEX11G,PEX12,PEX13,PEX14,PEX16,PEX19,PEX2,PEX26,PEX3,PEX5,PEX5L,PEX6,PEX7,PF4,PF4V1,PFAS,PFDN1,PFDN2,PFDN4,PFDN5,PFDN6,PFKFB1,PFKFB2,PFKFB3,PFKFB4,PFKL,PFKM,PFKP,PFN1,PFN2,PFN4,PGA3,PGA4,PGA5,PGAM2,PGAM5,PGAP1,PGAP2,PGAP3,PGAP4,PGAP6,PGBD1,PGBD2,PGBD3,PGBD4,PGBD5,PGC,PGCKA1,PGD,PGF,PGGHG,PGGT1B,PGK1,PGK2,PGLS,PGLYRP1,PGLYRP2,PGLYRP3,PGLYRP4,PGM1,PGM2,PGM2L1,PGM3,PGM5,PGM5P2,PGP,PGPEP1,PGR,PGRMC1,PGRMC2,PGS1,PHACTR2,PHACTR3,PHAF1,PHAX,PHB1,PHB2,PHC1,PHC2,PHC3,PHETA1,PHEX,PHF1,PHF10,PHF11,PHF12,PHF13,PHF14,PHF19,PHF2,PHF20,PHF20L1,PHF21A,PHF21B,PHF23,PHF3,PHF5A,PHF6,PHF7,PHF8,PHGDH,PHIP,PHKA1,PHKA2,PHKB,PHKG1,PHKG2,PHLDA1,PHLDA2,PHLDA3,PHLDB1,PHLDB2,PHLDB3,PHLPP1,PHOSPHO1,PHOSPHO2,PHOX2A,PHOX2B,PHPT1,PHTF1,PHTF2,PHYH,PHYHD1,PHYHIP,PHYHIPL,PHYKPL,PI15,PI16,PI3,PI4K2A,PI4K2B,PI4KA,PI4KAP1,PI4KAP2,PI4KB,PIANP,PIAS1,PIAS2,PIAS3,PIAS4,PIBF1,PICALM,PICK1,PID1,PIDD1,PIERCE1,PIEZO1,PIEZO2,PIF1,PIGA,PIGB,PIGC,PIGF,PIGG,PIGH,PIGK,PIGL,PIGM,PIGN,PIGO,PIGP,PIGQ,PIGR,PIGS,PIGT,PIGU,PIGV,PIGW,PIGX,PIGY,PIGZ,PIH1D1,PIH1D2,PIK3AP1,PIK3C2A,PIK3C2B,PIK3C2G,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3IP1,PIK3R1,PIK3R2,PIK3R3,PIK3R4,PIK3R5,PIKFYVE,PILRA,PILRB,PIM1,PIM2,PIMREG,PIN1,PIN1P1,PIN4,PINK1,PINX1,PIP,PIP4K2A,PIP4K2B,PIP4K2C,PIP4P1,PIP4P2,PIP5K1A,PIP5K1B,PIP5K1C,PIP5K1P1,PIP5KL1,PIPOX,PIPSL,PIR,PISD,PITHD1,PITPNA,PITPNB,PITPNC1,PITPNM1,PITPNM2,PITPNM3,PITRM1,PITX1,PITX2,PITX3,PIWIL1,PIWIL2,PIWIL3,PIWIL4,PJA1,PJA2,PKD1,PKD1L1,PKD1L1-AS1,PKD1L2,PKD1L3,PKD1P1,PKD1P3,PKD2,PKD2L1,PKD2L2,PKDREJ,PKHD1,PKHD1L1,PKIA,PKIB,PKIG,PKLR,PKM,PKMYT1,PKN1,PKN2,PKN3,PKNOX1,PKNOX2,PKP1,PKP2,PKP3,PKP4,PLA1A,PLA2G10,PLA2G12A,PLA2G12B,PLA2G15,PLA2G1B,PLA2G2A,PLA2G2D,PLA2G2E,PLA2G2F,PLA2G3,PLA2G4A,PLA2G4B,PLA2G4C,PLA2G4D,PLA2G4E,PLA2G4F,PLA2G5,PLA2G6,PLA2G7,PLA2R1,PLAA,PLAAT1,PLAAT2,PLAAT3,PLAAT4,PLAAT5,PLAC1,PLAC4,PLAC8,PLAG1,PLAGL1,PLAGL2,PLAT,PLAU,PLAUR,PLB1,PLBD1,PLBD2,PLCB1,PLCB2,PLCB3,PLCB4,PLCD1,PLCD3,PLCD4,PLCE1,PLCG1,PLCG2,PLCH2,PLCL1,PLCL2,PLCXD2,PLCZ1,PLD1,PLD2,PLD3,PLD4,PLD5,PLD6,PLEC,PLEK,PLEK2,PLEKHA1,PLEKHA3,PLEKHA4,PLEKHA5,PLEKHA6,PLEKHA7,PLEKHA8,PLEKHA8P1,PLEKHB1,PLEKHB2,PLEKHF1,PLEKHF2,PLEKHG2,PLEKHG4B,PLEKHG5,PLEKHG6,PLEKHG7,PLEKHH1,PLEKHH2,PLEKHH3,PLEKHJ1,PLEKHM1,PLEKHM1P1,PLEKHM2,PLEKHN1,PLEKHO1,PLEKHO2,PLEKHS1,PLG,PLGLA,PLGLB1,PLGLB2,PLGRKT,PLIN1,PLIN2,PLIN3,PLIN5,PLK1,PLK2,PLK3,PLK4,PLLP,PLN,PLOD1,PLOD2,PLOD3,PLP1,PLP2,PLPBP,PLPP1,PLPP2,PLPP3,PLPP5,PLPP6,PLPP7,PLPPR1,PLPPR2,PLPPR3,PLPPR4,PLRG1,PLS1,PLS3,PLSCR1,PLSCR2,PLSCR3,PLSCR4,PLTP,PLVAP,PLXDC1,PLXDC2,PLXNA1,PLXNA2,PLXNA3,PLXNA4,PLXNB1,PLXNB3,PLXNC1,PLXND1,PM20D1,PMAIP1,PMCH,PMCHL1,PMCHL2,PMEL,PMEPA1,PMF1,PMFBP1,PML,PMM1,PMM2,PMP2,PMP22,PMPCA,PMPCB,PMS1,PMS2,PMS2CL,PMS2P1,PMS2P11,PMS2P3,PMS2P6,PMVK,PNCK,PNISR,PNKD,PNKP,PNLDC1,PNLIP,PNLIPRP1,PNLIPRP2,PNMA1,PNMA2,PNMA3,PNMA5,PNMA6A,PNMA8A,PNMT,PNN,PNO1,PNOC,PNP,PNPLA1,PNPLA2,PNPLA3,PNPLA4,PNPLA5,PNPLA6,PNPLA7,PNPLA8,PNPO,PNPT1,PNRC1,POC1A,POC1B,POC5,PODN,PODNL1,PODXL,PODXL2,POF1B,POFUT1,POFUT2,POGK,POGLUT1,POGLUT2,POGLUT3,POGZ,POLA1,POLA2,POLB,POLD1,POLD2,POLD3,POLD4,POLDIP2,POLDIP3,POLE,POLE2,POLE3,POLE4,POLG,POLG2,POLH,POLI,POLK,POLL,POLM,POLN,POLQ,POLR1A,POLR1B,POLR1C,POLR1D,POLR1E,POLR1F,POLR1G,POLR1H,POLR1HASP,POLR2A,POLR2B,POLR2C,POLR2D,POLR2E,POLR2F,POLR2G,POLR2H,POLR2I,POLR2J,POLR2J2,POLR2J3,POLR2J4,POLR2K,POLR2L,POLR3A,POLR3B,POLR3C,POLR3D,POLR3E,POLR3F,POLR3G,POLR3GL,POLR3H,POLR3K,POLRMT,POM121,POM121C,POM121L10P,POM121L12,POM121L1P,POM121L4P,POM121L8P,POM121L9P,POMC,POMGNT1,POMGNT2,POMK,POMP,POMT1,POMT2,POMZP3,PON1,PON2,PON3,POP1,POP4,POP5,POP7,POPDC1,POPDC2,POPDC3,POR,PORCN,POSTN,POT1,POTEA,POTEB,POTEC,POTEE,POTEF,POTEG,POTEH,POTEJ,POTEKP,POTEM,POU1F1,POU2AF1,POU2AF2,POU2F1,POU2F2,POU2F3,POU3F1,POU3F2,POU3F3,POU3F4,POU4F1,POU4F2,POU4F3,POU5F1,POU5F1B,POU5F1P3,POU5F1P4,POU5F2,POU6F2,PP2D1,PPA1,PPA2,PPAN,PPARA,PPARD,PPARG,PPARGC1A,PPARGC1B,PPAT,PPBP,PPBPP2,PPCDC,PPCS,PPDPF,PPDPFL,PPEF1,PPEF2,PPFIA1,PPFIA2,PPFIA3,PPFIBP1,PPFIBP2,PPHLN1,PPIA,PPIB,PPIC,PPID,PPIE,PPIF,PPIG,PPIH,PPIL1,PPIL2,PPIL3,PPIL4,PPIP5K1,PPIP5K2,PPL,PPM1A,PPM1B,PPM1D,PPM1E,PPM1F,PPM1G,PPM1H,PPM1J,PPM1K,PPM1L,PPM1M,PPM1N,PPME1,PPOX,PPP1CA,PPP1CB,PPP1CC,PPP1R10,PPP1R11,PPP1R12A,PPP1R12B,PPP1R12C,PPP1R13B,PPP1R13L,PPP1R14A,PPP1R14B,PPP1R14C,PPP1R14D,PPP1R15A,PPP1R15B,PPP1R16A,PPP1R16B,PPP1R17,PPP1R18,PPP1R1A,PPP1R1B,PPP1R1C,PPP1R2,PPP1R21,PPP1R26,PPP1R27,PPP1R2B,PPP1R2C,PPP1R2P1,PPP1R35,PPP1R36,PPP1R37,PPP1R3A,PPP1R3B,PPP1R3C,PPP1R3D,PPP1R3E,PPP1R42,PPP1R7,PPP1R8,PPP1R9B,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R2D,PPP2R3A,PPP2R3C,PPP2R5A,PPP2R5B,PPP2R5C,PPP2R5D,PPP2R5E,PPP3CA,PPP3CB,PPP3CC,PPP3R1,PPP3R2,PPP4C,PPP4R1,PPP4R2,PPP4R3A,PPP4R3B,PPP4R3C,PPP4R4,PPP5C,PPP6C,PPP6R1,PPP6R2,PPP6R3,PPRC1,PPT1,PPT2,PPTC7,PPWD1,PPY,PPY2P,PQBP1,PRAC1,PRADC1,PRAF2,PRAM1,PRAME,PRAMEF1,PRAMEF13,PRAMEF14,PRAMEF2,PRAMENP,PRAP1,PRB1,PRB3,PRB4,PRC1,PRCC,PRCD,PRCP,PRDM1,PRDM10,PRDM11,PRDM12,PRDM13,PRDM14,PRDM15,PRDM16,PRDM2,PRDM4,PRDM5,PRDM7,PRDM8,PRDM9,PRDX1,PRDX2,PRDX3,PRDX4,PRDX5,PRDX6,PREB,PRECSIT,PRELID1,PRELID2,PRELID3A,PRELID3B,PRELP,PREP,PREPL,PREX1,PREX2,PRF1,PRG2,PRG3,PRG4,PRH1,PRH2,PRICKLE1,PRICKLE2,PRICKLE3,PRICKLE4,PRIM1,PRIM2,PRIMA1,PRIMPOL,PRINS,PRKAA1,PRKAA2,PRKAB1,PRKAB2,PRKACA,PRKACB,PRKACG,PRKAG1,PRKAG2,PRKAG3,PRKAR1A,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKCI,PRKCQ,PRKCSH,PRKCZ,PRKD1,PRKD2,PRKD3,PRKDC,PRKG1,PRKG2,PRKN,PRKRA,PRKRIP1,PRKX,PRKY,PRL,PRLH,PRLHR,PRLR,PRM1,PRM2,PRM3,PRMT1,PRMT2,PRMT3,PRMT5,PRMT6,PRMT7,PRMT8,PRMT9,PRND,PRNP,PRNT,PROC,PROCA1,PROCR,PRODH,PRODH2,PROK1,PROK2,PROKR1,PROKR2,PROM1,PROM2,PROP1,PRORP,PROS1,PROSER1,PROSER2,PROSER3,PROX1,PROZ,PRP4K,PRPF18,PRPF19,PRPF3,PRPF31,PRPF38A,PRPF38B,PRPF39,PRPF4,PRPF40A,PRPF40B,PRPF6,PRPF8,PRPH,PRPH2,PRPS1,PRPS1L1,PRPS2,PRPSAP1,PRPSAP2,PRR11,PRR12,PRR13,PRR14,PRR14L,PRR15,PRR15L,PRR16,PRR18,PRR19,PRR22,PRR23C,PRR27,PRR3,PRR30,PRR34,PRR35,PRR4,PRR5,PRR5L,PRR7,PRRC1,PRRC2A,PRRC2B,PRRC2C,PRRG1,PRRG2,PRRG3,PRRG4,PRRT1,PRRT2,PRRT3,PRRX1,PRRX2,PRSS1,PRSS12,PRSS16,PRSS2,PRSS21,PRSS22,PRSS23,PRSS27,PRSS3,PRSS30P,PRSS33,PRSS35,PRSS36,PRSS38,PRSS3P2,PRSS41,PRSS42P,PRSS45P,PRSS48,PRSS50,PRSS53,PRSS54,PRSS55,PRSS57,PRSS58,PRSS8,PRTFDC1,PRTN3,PRUNE1,PRUNE2,PRX,PRXL2A,PRXL2B,PRY,PRY2,PSAP,PSAT1,PSCA,PSD,PSD2,PSD3,PSD4,PSEN1,PSEN2,PSENEN,PSG1,PSG10P,PSG11,PSG2,PSG3,PSG4,PSG5,PSG6,PSG7,PSG8,PSG9,PSIP1,PSKH1,PSKH2,PSMA1,PSMA2,PSMA3,PSMA4,PSMA5,PSMA7,PSMA8,PSMB1,PSMB10,PSMB2,PSMB3,PSMB4,PSMB5,PSMB6,PSMB7,PSMB8,PSMB9,PSMC2,PSMC3,PSMC3IP,PSMC4,PSMC5,PSMD1,PSMD10,PSMD11,PSMD12,PSMD13,PSMD14,PSMD2,PSMD3,PSMD4,PSMD5,PSMD6,PSMD7,PSMD8,PSMD9,PSME1,PSME2,PSME3,PSME3IP1,PSME4,PSMF1,PSMG1,PSMG2,PSMG3,PSMG4,PSORS1C1,PSORS1C2,PSPC1,PSPH,PSPN,PSRC1,PSTK,PSTPIP1,PSTPIP2,PTAFR,PTBP1,PTBP2,PTBP3,PTCD1,PTCD2,PTCD3,PTCH2,PTCHD1,PTCHD4,PTCRA,PTDSS1,PTDSS2,PTEN,PTENP1,PTER,PTF1A,PTGDR,PTGDR2,PTGDS,PTGER1,PTGER2,PTGER3,PTGER4,PTGES,PTGES2,PTGFR,PTGFRN,PTGIR,PTGIS,PTGR1,PTGR2,PTGR3,PTGS1,PTGS2,PTH,PTH1R,PTH2,PTH2R,PTHLH,PTK2,PTK2B,PTK6,PTK7,PTMA,PTMAP5,PTMS,PTN,PTOV1,PTP4A1,PTP4A2,PTP4A3,PTPA,PTPDC1,PTPMT1,PTPN1,PTPN11,PTPN12,PTPN13,PTPN14,PTPN18,PTPN2,PTPN21,PTPN22,PTPN23,PTPN3,PTPN4,PTPN5,PTPN6,PTPN7,PTPN9,PTPRA,PTPRB,PTPRC,PTPRCAP,PTPRD,PTPRE,PTPRF,PTPRG,PTPRH,PTPRJ,PTPRK,PTPRM,PTPRN,PTPRN2,PTPRO,PTPRR,PTPRS,PTPRT,PTPRU,PTPRZ1,PTRH1,PTRH2,PTRHD1,PTS,PTTG1,PTTG1IP,PTTG2,PTTG3P,PTX3,PUDP,PUF60,PUM1,PUM2,PUM3,PURA,PURB,PURG,PUS1,PUS10,PUS3,PUS7,PUS7L,PUSL1,PVALB,PVR,PVRIG,PWAR1,PWAR5,PWARSN,PWP1,PWP2,PWWP2B,PWWP3A,PWWP3B,PXDC1,PXDNL,PXK,PXMP2,PXMP4,PXN,PXT1,PXYLP1,PYCARD,PYCR2,PYCR3,PYDC1,PYGB,PYGL,PYGM,PYGO1,PYGO2,PYHIN1,PYM1,PYROXD1,PYROXD2,PYY,PYY2,PZP,QARS1,QDPR,QKI,QNG1,QPCT,QPCTL,QPRT,QRFP,QRFPR,QRICH1,QRICH2,QRSL1,QSER1,QSOX1,QSOX2,QTRT1,QTRT2,R3HCC1L,R3HDM1,R3HDM2,R3HDM4,R3HDML,RAB10,RAB11A,RAB11B,RAB11FIP1,RAB11FIP2,RAB11FIP3,RAB11FIP4,RAB11FIP5,RAB13,RAB14,RAB15,RAB17,RAB18,RAB1A,RAB1B,RAB1C,RAB20,RAB21,RAB22A,RAB23,RAB24,RAB25,RAB26,RAB27A,RAB27B,RAB28,RAB29,RAB2A,RAB2B,RAB30,RAB31,RAB32,RAB33A,RAB33B,RAB34,RAB35,RAB36,RAB37,RAB38,RAB39B,RAB3A,RAB3B,RAB3C,RAB3D,RAB3GAP2,RAB3IL1,RAB3IP,RAB40A,RAB40AL,RAB40B,RAB40C,RAB42,RAB43,RAB44,RAB4A,RAB4B,RAB5A,RAB5B,RAB5C,RAB5IF,RAB6A,RAB6B,RAB6C,RAB7A,RAB7B,RAB8A,RAB8B,RAB9A,RAB9B,RAB9BP1,RABAC1,RABEP1,RABEP2,RABEPK,RABGAP1,RABGAP1L,RABGEF1,RABGGTA,RABGGTB,RABIF,RABL2A,RABL2B,RABL6,RAC1,RAC2,RAC3,RACGAP1,RACGAP1P1,RACK1,RAD1,RAD17,RAD18,RAD21,RAD21L1,RAD23A,RAD23B,RAD50,RAD51,RAD51AP1,RAD51B,RAD51C,RAD51D,RAD52,RAD54B,RAD54L,RAD54L2,RAD9A,RADIL,RAE1,RAET1E,RAET1G,RAET1K,RAET1L,RAF1,RAG1,RAG2,RAI1,RAI14,RAI2,RALA,RALB,RALBP1,RALGAPA1,RALGAPA2,RALGAPB,RALGDS,RALGPS1,RALGPS2,RALY,RALYL,RAMP1,RAMP2,RAMP3,RAN,RANBP10,RANBP17,RANBP2,RANBP3,RANBP3L,RANBP9,RANGAP1,RANGRF,RAP1A,RAP1B,RAP1GAP,RAP1GAP2,RAP1GDS1,RAP2A,RAP2B,RAP2C,RAPGEF1,RAPGEF2,RAPGEF3,RAPGEF4,RAPGEF5,RAPGEF6,RAPGEFL1,RAPH1,RAPSN,RARA,RARB,RARG,RARRES1,RARRES2,RARS1,RARS2,RASA1,RASA2,RASA3,RASA4,RASA4B,RASA4CP,RASAL1,RASAL2,RASAL3,RASD1,RASD2,RASEF,RASGEF1A,RASGEF1B,RASGEF1C,RASGRF1,RASGRF2,RASGRP1,RASGRP2,RASGRP3,RASGRP4,RASIP1,RASL10A,RASL10B,RASL11A,RASL11B,RASL12,RASSF1,RASSF2,RASSF3,RASSF4,RASSF5,RASSF6,RASSF7,RASSF8,RASSF9,RAVER1,RAVER2,RAX,RAX2,RB1,RB1CC1,RBAK,RBBP4,RBBP5,RBBP6,RBBP7,RBBP8,RBBP8NL,RBBP9,RBCK1,RBFA,RBFOX1,RBFOX2,RBIS,RBKS,RBL1,RBL2,RBM10,RBM11,RBM12,RBM12B,RBM12B-AS1,RBM14,RBM15,RBM15B,RBM17,RBM18,RBM19,RBM22,RBM23,RBM24,RBM25,RBM26,RBM27,RBM28,RBM3,RBM33,RBM38,RBM39,RBM4,RBM41,RBM42,RBM43,RBM44,RBM45,RBM46,RBM47,RBM48,RBM4B,RBM5,RBM6,RBM7,RBM8A,RBMS1,RBMS2,RBMS3,RBMX,RBMX2,RBMXL1,RBMXL2,RBMXL3,RBMY1A1,RBMY1A3P,RBMY1B,RBMY1D,RBMY1E,RBMY1F,RBMY1J,RBMY2FP,RBMY3AP,RBP1,RBP2,RBP3,RBP4,RBP5,RBP7,RBPJ,RBPJL,RBPJP3,RBPMS,RBPMS2,RBSN,RBX1,RC3H2,RCAN1,RCAN2,RCAN3,RCBTB1,RCBTB2,RCC1,RCC1L,RCC2,RCD1,RCE1,RCHY1,RCL1,RCN1,RCN2,RCN3,RCOR1,RCOR2,RCOR3,RCSD1,RCVRN,RD3,RDH10,RDH11,RDH12,RDH13,RDH14,RDH16,RDH5,RDH8,RDM1,RDX,REC8,RECK,RECQL,RECQL4,RECQL5,REDIC1,REEP1,REEP2,REEP3,REEP4,REEP5,REEP6,REG1A,REG1B,REG1CP,REG3A,REG3G,REG4,REL,RELA,RELB,RELCH,RELL1,RELL2,RELN,RELT,REM1,REM2,REN,RENBP,REPIN1,REPS1,REPS2,RER1,RERE,RERG,RERGL,RESF1,REST,RET,RETN,RETNLB,RETREG1,RETREG2,RETREG3,RETSAT,REV1,REV3L,REX1BD,REXO1,REXO1L1P,REXO1L2P,REXO2,RFC1,RFC2,RFC3,RFC4,RFC5,RFESD,RFFL,RFK,RFLNA,RFPL1,RFPL1S,RFPL2,RFPL3,RFT1,RFTN1,RFTN2,RFWD3,RFX1,RFX2,RFX3,RFX4,RFX5,RFX6,RFX7,RFX8,RFXANK,RFXAP,RGCC,RGL1,RGL2,RGL3,RGL4,RGMA,RGMB,RGN,RGP1,RGPD1,RGPD3,RGPD4,RGR,RGS1,RGS10,RGS11,RGS12,RGS13,RGS14,RGS16,RGS17,RGS18,RGS19,RGS2,RGS20,RGS22,RGS3,RGS4,RGS5,RGS6,RGS7,RGS8,RGS9,RGS9BP,RGSL1,RHAG,RHBDD1,RHBDD2,RHBDD3,RHBDF1,RHBDF2,RHBDL1,RHBDL2,RHBDL3,RHBG,RHCE,RHCG,RHD,RHEB,RHEBL1,RHNO1,RHO,RHOA,RHOB,RHOBTB1,RHOBTB2,RHOBTB3,RHOC,RHOD,RHOF,RHOG,RHOH,RHOJ,RHOQ,RHOT1,RHOT2,RHOU,RHOV,RHOXF1,RHOXF2,RHOXF2B,RHPN1,RHPN1-AS1,RHPN2,RIBC1,RIBC2,RIC1,RIC3,RIC8A,RIC8B,RICTOR,RIDA,RIF1,RIGI,RILP,RILPL1,RIMBP2,RIMKLA,RIMKLB,RIMOC1,RIMS1,RIMS2,RIMS3,RIMS4,RIN1,RIN2,RIN3,RING1,RINL,RINT1,RIOK1,RIOK2,RIOK3,RIOX1,RIOX2,RIPK1,RIPK2,RIPK3,RIPK4,RIPOR1,RIPOR2,RIPOR3,RIPPLY1,RIPPLY3,RIT1,RIT2,RITA1,RLBP1,RLF,RLIG1,RLIM,RLN1,RLN2,RLN3,RMC1,RMDN1,RMDN2,RMDN3,RMI1,RMI2,RMND1,RMND5B,RN7SL2,RN7SL263P,RNA28S5,RNASE1,RNASE11,RNASE12,RNASE2,RNASE2CP,RNASE3,RNASE4,RNASE6,RNASE7,RNASE8,RNASE9,RNASEH1,RNASEH2A,RNASEH2B,RNASEH2C,RNASEK,RNASEK-C17orf49,RNASEL,RNASET2,RND1,RND2,RND3,RNF10,RNF103,RNF103-CHMP3,RNF11,RNF111,RNF112,RNF113A,RNF113B,RNF114,RNF115,RNF121,RNF122,RNF123,RNF125,RNF126,RNF126P1,RNF128,RNF13,RNF130,RNF133,RNF135,RNF138,RNF138P1,RNF139,RNF14,RNF141,RNF144A,RNF144B,RNF145,RNF146,RNF148,RNF149,RNF152,RNF166,RNF167,RNF168,RNF169,RNF17,RNF170,RNF175,RNF181,RNF182,RNF183,RNF185,RNF186,RNF19A,RNF19B,RNF2,RNF20,RNF207,RNF208,RNF212,RNF213,RNF214,RNF216,RNF216P1,RNF217,RNF220,RNF24,RNF25,RNF26,RNF31,RNF32,RNF32-DT,RNF34,RNF38,RNF39,RNF4,RNF40,RNF41,RNF43,RNF44,RNF6,RNF7,RNF8,RNFT1,RNFT2,RNGTT,RNH1,RNLS,RNMT,RNPC3,RNPEP,RNPEPL1,RNPS1,RNU1-1,RNU11,RNU12-2P,RNU2-2,RNU4-3P,RNU5D-1,RNU5E-1,RNU6-1,RNU7-1,RNU7-55P,RNY1,RNY5,RO60,ROBO1,ROBO3,ROBO4,ROCK1,ROCK1P1,ROCK2,ROGDI,ROM1,ROPN1,ROPN1B,ROPN1L,ROR1,ROR2,RORA,RORB,RORC,ROS1,RP1,RP1L1,RP2,RP9,RP9P,RPA1,RPA2,RPA3,RPA4,RPAIN,RPAP1,RPAP2,RPAP3,RPE,RPE65,RPF1,RPF2,RPGR,RPGRIP1,RPH3A,RPH3AL,RPIA,RPL10,RPL10L,RPL11,RPL13,RPL13AP17,RPL13AP3,RPL13P5,RPL14,RPL15,RPL17,RPL18,RPL19,RPL21P19,RPL21P44,RPL22,RPL23,RPL23A,RPL23AP32,RPL23AP53,RPL23AP64,RPL23AP7,RPL23AP82,RPL24,RPL26,RPL27,RPL27A,RPL28,RPL30,RPL31,RPL32,RPL32P3,RPL34,RPL35,RPL35A,RPL36,RPL36AL,RPL36AP40,RPL37,RPL37A,RPL38,RPL39,RPL39L,RPL39P5,RPL3L,RPL4,RPL41,RPL5,RPL6,RPL7A,RPL8,RPL9,RPL9P11,RPLP0,RPLP0P2,RPLP2,RPN1,RPN2,RPP14,RPP21,RPP25,RPP25L,RPP30,RPP38,RPP38-DT,RPP40,RPRD1A,RPRD1B,RPRD2,RPRM,RPRML,RPS10P7,RPS11,RPS12,RPS13,RPS14,RPS14P3,RPS15,RPS15A,RPS15AP10,RPS16,RPS16P5,RPS17,RPS18,RPS18P9,RPS19,RPS19BP1,RPS2,RPS20,RPS20P27,RPS21,RPS23,RPS24,RPS25,RPS26,RPS27,RPS27L,RPS28,RPS29,RPS2P32,RPS3A,RPS4X,RPS4Y1,RPS4Y2,RPS5,RPS6,RPS6KA1,RPS6KA2,RPS6KA3,RPS6KA4,RPS6KA5,RPS6KA6,RPS6KB1,RPS6KB2,RPS6KC1,RPS6KL1,RPS7,RPS9,RPSA,RPSA2,RPSAP15,RPSAP52,RPTOR,RPUSD1,RPUSD2,RPUSD3,RPUSD4,RRAD,RRAGA,RRAGB,RRAGC,RRAGD,RRAS,RRAS2,RRBP1,RREB1,RRH,RRM1,RRM2,RRM2B,RRN3,RRN3P1,RRN3P2,RRN3P3,RRP1,RRP12,RRP15,RRP1B,RRP36,RRP7A,RRP7BP,RRP8,RRP9,RRS1,RS1,RSAD1,RSAD2,RSBN1,RSBN1L,RSC1A1,RSF1,RSKR,RSL1D1,RSL24D1,RSPH1,RSPH10B,RSPH10B2,RSPH14,RSPH3,RSPH6A,RSPH9,RSPO1,RSPO2,RSPO3,RSPRY1,RSRC1,RSRC2,RSRP1,RSU1,RTBDN,RTCA,RTCB,RTEL1,RTF1,RTF2,RTKN,RTKN2,RTL10,RTL4,RTL6,RTL8A,RTL8B,RTL8C,RTL9,RTN1,RTN2,RTN3,RTN4,RTN4IP1,RTN4R,RTN4RL1,RTN4RL2,RTP1,RTP2,RTP3,RTP4,RTP5,RTRAF,RTTN,RUBCN,RUBCNL,RUFY1,RUFY2,RUFY3,RUFY4,RUNDC1,RUNDC3A,RUNDC3B,RUNX1,RUNX1-IT1,RUNX1T1,RUNX2,RUNX3,RUSC1,RUSC1-AS1,RUSF1,RUVBL1,RUVBL2,RWDD1,RWDD2A,RWDD2B,RWDD3,RWDD4,RXFP1,RXFP2,RXFP3,RXFP4,RXRA,RXRB,RXRG,RXYLT1,RYBP,RYK,RYR1,RYR2,RYR3,S100A10,S100A11,S100A12,S100A13,S100A14,S100A16,S100A6,S100A7,S100A7A,S100A8,S100A9,S100B,S100G,S100P,S100PBP,S100Z,S1PR1,S1PR2,S1PR3,S1PR4,S1PR5,SAA1,SAA2,SAA3P,SAA4,SAAL1,SAC3D1,SACM1L,SACS,SAE1,SAFB,SAFB2,SAG,SAGE1,SALL1,SALL2,SALL3,SALL4,SAMD1,SAMD10,SAMD11,SAMD12,SAMD14,SAMD3,SAMD4A,SAMD4B,SAMD7,SAMD8,SAMD9,SAMD9L,SAMHD1,SAMM50,SAMSN1,SAMTOR,SANBR,SAP130,SAP18,SAP25,SAP30,SAP30BP,SAP30L,SAPCD1,SAPCD2,SAR1A,SAR1B,SARAF,SARDH,SARM1,SARNP,SARS2,SART1,SART3,SASH1,SASH3,SASS6,SAT1,SAT2,SATB1,SATB2,SAV1,SAXO1,SAXO4,SAXO5,SAYSD1,SBDS,SBDSP1,SBF1,SBF2,SBNO1,SBNO2,SBSN,SBSPON,SC5D,SCAF1,SCAF11,SCAF4,SCAF8,SCAI,SCAMP1,SCAMP2,SCAMP3,SCAMP4,SCAMP5,SCAND1,SCAND2P,SCAND3,SCAP,SCAPER,SCARA3,SCARA5,SCARB1,SCARB2,SCARF1,SCARF2,SCARNA1,SCARNA10,SCARNA11,SCARNA12,SCARNA14,SCARNA16,SCARNA21,SCARNA22,SCARNA23,SCARNA27,SCARNA3,SCARNA4,SCARNA5,SCARNA6,SCARNA7,SCARNA8,SCARNA9L,SCCPDH,SCD,SCD5,SCEL,SCFD1,SCFD2,SCG2,SCG3,SCG5,SCGB1A1,SCGB1D1,SCGB1D2,SCGB1D4,SCGB2A1,SCGB2A2,SCGB3A1,SCGB3A2,SCGN,SCHIP1,SCIMP,SCIN,SCLT1,SCLY,SCMH1,SCML1,SCML2,SCML4,SCN10A,SCN11A,SCN1A,SCN1B,SCN2A,SCN2B,SCN3A,SCN3B,SCN4A,SCN4B,SCN5A,SCN7A,SCN8A,SCN9A,SCNM1,SCNN1A,SCNN1B,SCNN1D,SCNN1G,SCO1,SCO2,SCOC,SCP2,SCP2D1,SCPEP1,SCRG1,SCRIB,SCRN1,SCRN2,SCRN3,SCRT2,SCT,SCTR,SCUBE1,SCUBE2,SCUBE3,SCYL1,SCYL2,SCYL3,SDAD1,SDC1,SDC2,SDC3,SDC4,SDCBP,SDCBP2,SDCCAG8,SDE2,SDF2,SDF2L1,SDF4,SDHA,SDHAF2,SDHAF3,SDHAF4,SDHAP1,SDHAP2,SDHB,SDHC,SDHD,SDK1,SDK2,SDR16C5,SDR39U1,SDR42E1,SDR9C7,SDS,SDSL,SEC11A,SEC11C,SEC13,SEC14L1,SEC14L2,SEC14L3,SEC14L4,SEC14L5,SEC16B,SEC1P,SEC22A,SEC22B,SEC22C,SEC23A,SEC23B,SEC23IP,SEC24A,SEC24B,SEC24C,SEC24D,SEC31A,SEC31B,SEC61A1,SEC61A2,SEC61G,SEC62,SEC63,SECISBP2,SECISBP2L,SECTM1,SEH1L,SEL1L,SEL1L3,SELE,SELENBP1,SELENOF,SELENOH,SELENOI,SELENOK,SELENOM,SELENON,SELENOO,SELENOP,SELENOS,SELENOT,SELENOV,SELENOW,SELL,SELP,SELPLG,SEM1,SEMA3A,SEMA3B,SEMA3C,SEMA3D,SEMA3E,SEMA3F,SEMA3G,SEMA4A,SEMA4B,SEMA4C,SEMA4D,SEMA4F,SEMA4G,SEMA5A,SEMA5B,SEMA6A,SEMA6B,SEMA6C,SEMA6D,SEMA7A,SEMG1,SEMG2,SENP1,SENP2,SENP3,SENP5,SENP6,SENP7,SENP8,SEPHS1,SEPHS2,SEPSECS,SEPTIN1,SEPTIN10,SEPTIN11,SEPTIN12,SEPTIN14,SEPTIN14P20,SEPTIN3,SEPTIN4,SEPTIN5,SEPTIN6,SEPTIN7,SEPTIN8,SEPTIN9,SERAC1,SERBP1,SERF1A,SERF1B,SERF2,SERF2-C15ORF63,SERGEF,SERHL,SERHL2,SERINC1,SERINC2,SERINC3,SERINC4,SERINC5,SERP1,SERP2,SERPINA1,SERPINA10,SERPINA12,SERPINA13P,SERPINA2,SERPINA3,SERPINA4,SERPINA5,SERPINA6,SERPINA7,SERPINA9,SERPINB1,SERPINB10,SERPINB11,SERPINB12,SERPINB13,SERPINB2,SERPINB3,SERPINB4,SERPINB5,SERPINB6,SERPINB7,SERPINB8,SERPINB9,SERPINC1,SERPIND1,SERPINE1,SERPINE2,SERPINF1,SERPINF2,SERPING1,SERPINH1,SERPINI1,SERPINI2,SERTAD1,SERTAD2,SERTAD3,SERTAD4,SERTAD4-AS1,SERTM1,SESN1,SESN2,SESN3,SESTD1,SET,SETBP1,SETD2,SETD3,SETD4,SETD5,SETD6,SETD7,SETD9,SETDB1,SETDB2,SETMAR,SETX,SEZ6,SEZ6L,SEZ6L2,SF1,SF3A1,SF3A2,SF3A3,SF3B1,SF3B2,SF3B3,SF3B4,SF3B5,SF3B6,SFI1,SFMBT1,SFN,SFPQ,SFR1,SFRP1,SFRP2,SFRP4,SFRP5,SFSWAP,SFT2D1,SFT2D2,SFT2D3,SFTA2,SFTA3,SFTPB,SFTPC,SFTPD,SFXN1,SFXN2,SFXN3,SFXN4,SFXN5,SGCA,SGCB,SGCD,SGCE,SGCG,SGCZ,SGF29,SGIP1,SGK1,SGK2,SGK3,SGMS1,SGMS2,SGO1,SGO2,SGPL1,SGPP1,SGPP2,SGSH,SGSM2,SGSM3,SGTA,SGTB,SH2B1,SH2B2,SH2B3,SH2D1A,SH2D1B,SH2D2A,SH2D3A,SH2D3C,SH2D4A,SH2D4B,SH2D6,SH3BGR,SH3BGRL,SH3BGRL2,SH3BGRL3,SH3BP1,SH3BP2,SH3BP4,SH3BP5,SH3BP5L,SH3D21,SH3GL1,SH3GL1P1,SH3GL1P2,SH3GL2,SH3GL3,SH3GLB1,SH3GLB2,SH3KBP1,SH3PXD2A,SH3PXD2B,SH3RF1,SH3RF2,SH3TC1,SH3TC2,SH3YL1,SHANK1,SHANK2,SHANK2-AS3,SHARPIN,SHB,SHBG,SHC1,SHC3,SHC4,SHCBP1,SHCBP1L,SHD,SHF,SHFL,SHH,SHISA2,SHISA4,SHISA5,SHISA6,SHISA7,SHISAL2A,SHKBP1,SHLD1,SHLD2,SHLD2P1,SHLD2P3,SHMT1,SHMT2,SHOC1,SHOC2,SHOX2,SHPK,SHPRH,SHQ1,SHROOM1,SHROOM2,SHROOM3,SHTN1,SI,SIAE,SIAH1,SIAH2,SIAH3,SIDT1,SIDT2,SIGIRR,SIGLEC1,SIGLEC10,SIGLEC11,SIGLEC12,SIGLEC14,SIGLEC15,SIGLEC5,SIGLEC6,SIGLEC7,SIGLEC8,SIGLEC9,SIGLECL1,SIGMAR1,SIK1,SIK2,SIK3,SIKE1,SIL1,SIM1,SIM2,SIMC1,SIN3A,SIN3B,SINHCAF,SIPA1,SIPA1L1,SIPA1L2,SIRPA,SIRPB1,SIRPB2,SIRPD,SIRPG,SIRT1,SIRT2,SIRT3,SIRT4,SIRT5,SIRT6,SIRT7,SIT1,SIVA1,SIX1,SIX2,SIX3,SIX4,SIX5,SIX6,SKA1,SKA2,SKA2P1,SKA3,SKAP1,SKAP2,SKI,SKIC2,SKIC3,SKIC8,SKIDA1,SKIL,SKOR1,SKP1,SKP2,SLA,SLA2,SLAIN1,SLAIN2,SLAMF1,SLAMF6,SLAMF7,SLAMF8,SLAMF9,SLBP,SLC10A1,SLC10A2,SLC10A3,SLC10A4,SLC10A5,SLC10A6,SLC10A7,SLC11A1,SLC11A2,SLC12A1,SLC12A2,SLC12A3,SLC12A4,SLC12A5,SLC12A6,SLC12A7,SLC12A8,SLC12A9,SLC13A1,SLC13A2,SLC13A3,SLC13A4,SLC13A5,SLC14A1,SLC14A2,SLC15A1,SLC15A2,SLC15A3,SLC15A4,SLC16A1,SLC16A10,SLC16A12,SLC16A13,SLC16A14,SLC16A2,SLC16A3,SLC16A4,SLC16A5,SLC16A6,SLC16A8,SLC16A9,SLC17A1,SLC17A2,SLC17A3,SLC17A4,SLC17A5,SLC17A6,SLC17A7,SLC17A8,SLC17A9,SLC18A1,SLC18A2,SLC18A3,SLC18B1,SLC19A1,SLC19A2,SLC19A3,SLC19A4P,SLC1A1,SLC1A2,SLC1A3,SLC1A4,SLC1A5,SLC1A6,SLC1A7,SLC20A1,SLC20A2,SLC22A1,SLC22A10,SLC22A11,SLC22A12,SLC22A13,SLC22A14,SLC22A15,SLC22A16,SLC22A17,SLC22A18,SLC22A18AS,SLC22A2,SLC22A20P,SLC22A23,SLC22A24,SLC22A25,SLC22A3,SLC22A4,SLC22A5,SLC22A6,SLC22A7,SLC22A8,SLC22A9,SLC23A1,SLC23A2,SLC23A3,SLC24A1,SLC24A2,SLC24A3,SLC24A4,SLC24A5,SLC25A1,SLC25A10,SLC25A11,SLC25A12,SLC25A13,SLC25A14,SLC25A15,SLC25A16,SLC25A17,SLC25A18,SLC25A19,SLC25A2,SLC25A20,SLC25A21,SLC25A22,SLC25A23,SLC25A24,SLC25A25,SLC25A26,SLC25A27,SLC25A28,SLC25A29,SLC25A3,SLC25A31,SLC25A32,SLC25A33,SLC25A34,SLC25A35,SLC25A36,SLC25A37,SLC25A39,SLC25A4,SLC25A40,SLC25A41,SLC25A42,SLC25A43,SLC25A44,SLC25A45,SLC25A46,SLC25A47,SLC25A48,SLC25A5,SLC25A51,SLC25A52,SLC26A1,SLC26A10P,SLC26A11,SLC26A2,SLC26A3,SLC26A4,SLC26A5,SLC26A6,SLC26A7,SLC26A8,SLC26A9,SLC27A1,SLC27A2,SLC27A3,SLC27A4,SLC27A5,SLC27A6,SLC28A1,SLC28A2,SLC28A3,SLC29A1,SLC29A2,SLC29A3,SLC29A4,SLC2A1,SLC2A10,SLC2A11,SLC2A12,SLC2A13,SLC2A14,SLC2A2,SLC2A3,SLC2A4,SLC2A4RG,SLC2A5,SLC2A7,SLC2A8,SLC2A9,SLC30A1,SLC30A10,SLC30A2,SLC30A3,SLC30A4,SLC30A5,SLC30A6,SLC30A7,SLC30A8,SLC30A9,SLC31A1,SLC31A2,SLC32A1,SLC33A1,SLC34A1,SLC34A2,SLC35A1,SLC35A2,SLC35A3,SLC35A4,SLC35A5,SLC35B1,SLC35B2,SLC35B3,SLC35B4,SLC35C1,SLC35C2,SLC35D1,SLC35D2,SLC35E1,SLC35E2B,SLC35E3,SLC35E4,SLC35F2,SLC35F3,SLC35F5,SLC35F6,SLC35G1,SLC35G2,SLC35G3,SLC35G4,SLC35G5,SLC35G6,SLC36A1,SLC36A2,SLC36A3,SLC36A4,SLC37A1,SLC37A2,SLC37A3,SLC37A4,SLC38A1,SLC38A10,SLC38A11,SLC38A2,SLC38A3,SLC38A4,SLC38A5,SLC38A6,SLC38A7,SLC38A9,SLC39A1,SLC39A11,SLC39A12,SLC39A13,SLC39A14,SLC39A2,SLC39A3,SLC39A4,SLC39A5,SLC39A6,SLC39A7,SLC39A8,SLC39A9,SLC3A1,SLC3A2,SLC40A1,SLC41A1,SLC41A2,SLC41A3,SLC43A1,SLC43A2,SLC43A3,SLC44A1,SLC44A2,SLC44A3,SLC44A4,SLC44A5,SLC45A2,SLC45A3,SLC45A4,SLC46A1,SLC46A2,SLC46A3,SLC47A1,SLC47A2,SLC48A1,SLC49A3,SLC49A4,SLC4A1,SLC4A10,SLC4A11,SLC4A1AP,SLC4A2,SLC4A3,SLC4A4,SLC4A5,SLC4A7,SLC4A8,SLC4A9,SLC50A1,SLC51B,SLC52A1,SLC52A2,SLC52A3,SLC5A1,SLC5A10,SLC5A11,SLC5A12,SLC5A2,SLC5A3,SLC5A4,SLC5A5,SLC5A6,SLC5A7,SLC5A8,SLC66A1,SLC66A2,SLC66A3,SLC6A1,SLC6A10P,SLC6A11,SLC6A12,SLC6A13,SLC6A14,SLC6A15,SLC6A16,SLC6A18,SLC6A19,SLC6A2,SLC6A20,SLC6A3,SLC6A4,SLC6A5,SLC6A6,SLC6A7,SLC6A8,SLC6A9,SLC7A1,SLC7A10,SLC7A11,SLC7A13,SLC7A14,SLC7A2,SLC7A3,SLC7A4,SLC7A5,SLC7A5P1,SLC7A5P2,SLC7A6,SLC7A6OS,SLC7A7,SLC7A8,SLC7A9,SLC8A1,SLC8A3,SLC8B1,SLC9A1,SLC9A2,SLC9A3,SLC9A5,SLC9A6,SLC9A7,SLC9A8,SLC9A9,SLC9B1,SLC9B2,SLC9C2,SLCO1A2,SLCO1B1,SLCO1B3,SLCO1B3-SLCO1B7,SLCO1C1,SLCO2A1,SLCO2B1,SLCO3A1,SLCO4A1,SLCO4C1,SLCO5A1,SLCO6A1,SLED1,SLF1,SLF2,SLFN11,SLFN12,SLFN13,SLFN5,SLFNL1,SLIRP,SLIRP-OT1,SLIT1,SLIT2,SLIT3,SLITRK1,SLITRK2,SLITRK3,SLITRK4,SLITRK5,SLITRK6,SLK,SLMAP,SLN,SLPI,SLTM,SLU7,SLURP1,SLX4,SLX9,SMAD1,SMAD2,SMAD3,SMAD4,SMAD5,SMAD5-AS1,SMAD6,SMAD7,SMAD9,SMAGP,SMAP1,SMAP2,SMARCA1,SMARCA2,SMARCA4,SMARCA5,SMARCAD1,SMARCAL1,SMARCB1,SMARCC1,SMARCC2,SMARCD1,SMARCD2,SMARCD3,SMARCE1,SMC1A,SMC1B,SMC2,SMC3,SMC4,SMC5,SMC6,SMCHD1,SMCO4,SMCP,SMCR5,SMCR8,SMDT1,SMG1,SMG5,SMG6,SMG6-IT1,SMG7,SMG8,SMG9,SMIM10L2B,SMIM10L3,SMIM11,SMIM12,SMIM14,SMIM15,SMIM19,SMIM29,SMIM3,SMIM43,SMIM7,SMIM8,SMNDC1,SMO,SMOC1,SMOC2,SMOX,SMPD1,SMPD2,SMPD3,SMPD4,SMPDL3A,SMPDL3B,SMPX,SMR3A,SMR3B,SMTN,SMTNL2,SMU1,SMUG1,SMURF1,SMURF2,SMYD1,SMYD2,SMYD3,SMYD4,SMYD5,SNAI1,SNAI2,SNAI3,SNAP23,SNAP25,SNAP29,SNAP47,SNAP91,SNAPC1,SNAPC2,SNAPC3,SNAPC4,SNAPC5,SNAPIN,SNCA,SNCAIP,SNCB,SNCG,SND1,SND1-IT1,SNED1,SNF8,SNHG11,SNHG12,SNHG20,SNHG28,SNHG29,SNHG3,SNHG32,SNHG4,SNHG7,SNIP1,SNN,SNORA1,SNORA10,SNORA11C,SNORA12,SNORA13,SNORA14B,SNORA16A,SNORA16B,SNORA17A,SNORA17B,SNORA18,SNORA19,SNORA20,SNORA21,SNORA23,SNORA25,SNORA28,SNORA29,SNORA2A,SNORA2B,SNORA2C,SNORA30,SNORA31,SNORA32,SNORA35,SNORA36A,SNORA36B,SNORA36C,SNORA37,SNORA38,SNORA38B,SNORA4,SNORA40,SNORA41,SNORA44,SNORA46,SNORA48,SNORA49,SNORA50A,SNORA51,SNORA53,SNORA54,SNORA55,SNORA56,SNORA58,SNORA59A,SNORA59B,SNORA5A,SNORA5B,SNORA5C,SNORA60,SNORA61,SNORA63,SNORA64,SNORA66,SNORA67,SNORA70,SNORA70E,SNORA70F,SNORA71E,SNORA72,SNORA73A,SNORA74A,SNORA74B,SNORA75,SNORA77,SNORA7A,SNORA7B,SNORA8,SNORA80B,SNORA80E,SNORA81,SNORC,SNORD10,SNORD103A,SNORD103B,SNORD105,SNORD107,SNORD108,SNORD109A,SNORD109B,SNORD11,SNORD110,SNORD115-1,SNORD115-2,SNORD115-3,SNORD115-4,SNORD115-5,SNORD115-6,SNORD115-7,SNORD115-8,SNORD115-9,SNORD116-1,SNORD116-2,SNORD116-3,SNORD116-4,SNORD116-5,SNORD116-6,SNORD116-7,SNORD116-8,SNORD116-9,SNORD117,SNORD12C,SNORD13P3,SNORD19B,SNORD2,SNORD20,SNORD21,SNORD23,SNORD24,SNORD36A,SNORD36B,SNORD36C,SNORD37,SNORD3F,SNORD41,SNORD44,SNORD45A,SNORD45B,SNORD45C,SNORD47,SNORD49A,SNORD5,SNORD51,SNORD52,SNORD54,SNORD56,SNORD56B,SNORD57,SNORD58A,SNORD58B,SNORD59A,SNORD59B,SNORD6,SNORD62A,SNORD62B,SNORD63,SNORD64,SNORD65,SNORD67,SNORD68,SNORD74,SNORD75,SNORD76,SNORD78,SNORD80,SNORD82,SNORD84,SNORD86,SNORD88B,SNORD88C,SNORD89,SNORD94,SNORD95,SNORD96A,SNORD96B,SNORD97,SNPH,SNRK,SNRNP200,SNRNP25,SNRNP27,SNRNP35,SNRNP40,SNRNP48,SNRNP70,SNRPA,SNRPA1,SNRPB,SNRPB2,SNRPC,SNRPD1,SNRPD2,SNRPD3,SNRPF,SNRPN,SNTA1,SNTB1,SNTB2,SNTG1,SNU13,SNUPN,SNURF,SNW1,SNX1,SNX10,SNX11,SNX12,SNX13,SNX14,SNX15,SNX16,SNX17,SNX18,SNX19,SNX2,SNX20,SNX21,SNX22,SNX24,SNX25,SNX27,SNX29,SNX29P1,SNX3,SNX30,SNX31,SNX32,SNX33,SNX4,SNX5,SNX6,SNX7,SNX8,SNX9,SOAT1,SOAT2,SOBP,SOCS1,SOCS2,SOCS3,SOCS4,SOCS5,SOCS6,SOD1,SOD2,SOD3,SOHLH2,SON,SORBS1,SORBS2,SORBS3,SORCS1,SORCS2,SORCS3,SORD,SORL1,SORT1,SOS1,SOS2,SOST,SOSTDC1,SOWAHA,SOX1,SOX10,SOX11,SOX12,SOX13,SOX14,SOX15,SOX17,SOX18,SOX2,SOX2-OT,SOX21,SOX3,SOX30,SOX4,SOX5,SOX6,SOX7,SOX8,SOX9,SP1,SP100,SP110,SP140,SP140L,SP2,SP3,SP4,SP5,SP6,SP7,SP8,SP9,SPA17,SPACA1,SPACA3,SPACA4,SPACA5,SPACA5B,SPACA6,SPACA7,SPACA9,SPACDR,SPAG1,SPAG11A,SPAG11B,SPAG16,SPAG17,SPAG4,SPAG5,SPAG6,SPAG7,SPAG8,SPAG9,SPAM1,SPANXA1,SPANXA2,SPANXB1,SPANXC,SPANXD,SPANXN5,SPARC,SPARCL1,SPART,SPAST,SPATA1,SPATA12,SPATA13,SPATA16,SPATA17,SPATA18,SPATA19,SPATA2,SPATA20,SPATA21,SPATA22,SPATA24,SPATA25,SPATA2L,SPATA3,SPATA31D1,SPATA31D3,SPATA31D4,SPATA31D5P,SPATA31E1,SPATA31G1,SPATA31H1,SPATA32,SPATA33,SPATA4,SPATA46,SPATA6,SPATA6L,SPATA7,SPATA8,SPATA9,SPATC1,SPATC1L,SPATS1,SPATS2,SPATS2L,SPC24,SPC25,SPCS1,SPCS3,SPDEF,SPDL1,SPDYA,SPDYE1,SPDYE2,SPDYE2B,SPDYE3,SPDYE5,SPDYE6,SPDYE7P,SPDYE8,SPECC1,SPECC1L,SPEF1,SPEF2,SPEG,SPEM1,SPEM2,SPEN,SPESP1,SPG11,SPG21,SPG7,SPHK1,SPHK2,SPI1,SPIB,SPIC,SPICE1,SPIN1,SPIN2A,SPIN2B,SPIN3,SPINDOC,SPINK1,SPINK14,SPINK4,SPINK5,SPINK6,SPINK7,SPINT1,SPINT2,SPINT3,SPINT4,SPIRE1,SPMAP2,SPMIP10,SPMIP2,SPMIP4,SPMIP5,SPMIP6,SPMIP8,SPMIP9,SPN,SPNS1,SPNS2,SPNS3,SPO11,SPOCD1,SPOCK1,SPOCK2,SPOCK3,SPON1,SPON2,SPOP,SPOPL,SPOUT1,SPP1,SPP2,SPPL2A,SPPL2B,SPPL2C,SPPL3,SPR,SPRED1,SPRED2,SPRING1,SPRN,SPRNP1,SPRR1A,SPRR1B,SPRR2A,SPRR2B,SPRR2C,SPRR2D,SPRR2E,SPRR2F,SPRR3,SPRR4,SPRTN,SPRY1,SPRY2,SPRY4,SPRYD3,SPRYD4,SPRYD7,SPSB1,SPSB2,SPSB3,SPSB4,SPTA1,SPTAN1,SPTB,SPTBN1,SPTBN2,SPTBN4,SPTBN5,SPTLC1,SPTLC2,SPTLC3,SPTSSA,SPTSSB,SPTY2D1,SPX,SPZ1,SQLE,SQOR,SQSTM1,SRA1,SRARP,SRBD1,SRC,SRCAP,SRCIN1,SRD5A1,SRD5A1P1,SRD5A2,SRD5A3,SREBF1,SREBF2,SREK1,SREK1IP1,SRF,SRFBP1,SRGAP1,SRGAP3,SRGN,SRI,SRL,SRM,SRMS,SRP14,SRP19,SRP54,SRP68,SRP72,SRP9,SRPK1,SRPK2,SRPK3,SRPRA,SRPRB,SRPX,SRPX2,SRR,SRRD,SRRM1,SRRM2,SRRM3,SRRM4,SRRM5,SRRT,SRSF1,SRSF10,SRSF11,SRSF12,SRSF2,SRSF3,SRSF4,SRSF5,SRSF6,SRSF7,SRSF9,SRXN1,SRY,SS18,SS18L1,SS18L2,SSB,SSBP1,SSBP2,SSBP3,SSBP4,SSC4D,SSH1,SSH2,SSH3,SSMEM1,SSNA1,SSPN,SSPOP,SSR1,SSR2,SSR3,SSR4,SSR4P1,SSRP1,SST,SSTR1,SSTR2,SSTR3,SSTR4,SSTR5,SSU72,SSUH2,SSX1,SSX2,SSX2B,SSX2IP,SSX3,SSX4,SSX4B,SSX5,SSX6P,SSX7,SSX8P,ST13,ST13P4,ST13P5,ST14,ST18,ST20,ST20-AS1,ST3,ST3GAL1,ST3GAL2,ST3GAL3,ST3GAL4,ST3GAL5,ST3GAL6,ST6GAL1,ST6GAL2,ST6GALNAC1,ST6GALNAC2,ST6GALNAC3,ST6GALNAC4,ST6GALNAC5,ST6GALNAC6,ST7,ST7-OT3,ST7L,ST8SIA1,ST8SIA2,ST8SIA3,ST8SIA4,ST8SIA5,STAB1,STAB2,STAC,STAC2,STAC3,STAG1,STAG2,STAG3,STAG3L4,STAM,STAM2,STAMBP,STAMBPL1,STAP1,STAP2,STAR,STARD10,STARD13,STARD3,STARD3NL,STARD4,STARD5,STARD6,STARD7,STARD8,STAT1,STAT2,STAT3,STAT4,STAT5A,STAT5B,STAT6,STATH,STAU1,STAU2,STBD1,STC1,STC2,STEAP1,STEAP2,STEAP3,STEAP4,STH,STIL,STIM1,STIM2,STIMATE,STING1,STIP1,STK10,STK11,STK11IP,STK16,STK17A,STK17B,STK24,STK25,STK26,STK3,STK31,STK32A,STK32B,STK32C,STK33,STK35,STK36,STK38,STK38L,STK39,STK4,STK40,STKLD1,STMN1,STMN2,STMN3,STMN4,STN1,STOM,STOML1,STOML2,STOML3,STON1,STON2,STOX1,STPG1,STPG2,STPG4,STRA6,STRA8,STRADA,STRADB,STRAP,STRBP,STRC,STRIP1,STRIP2,STRN,STRN3,STRN4,STS,STT3A,STT3B,STUB1,STUM,STX10,STX11,STX12,STX16,STX17,STX18,STX19,STX1A,STX1B,STX2,STX3,STX4,STX5,STX6,STX7,STX8,STXBP1,STXBP2,STXBP3,STXBP4,STXBP5,STXBP6,STYK1,STYX,STYXL1,SUB1,SUCLA2,SUCLG1,SUCLG2,SUCNR1,SUCO,SUDS3,SUFU,SUGCT,SUGP1,SUGP2,SUGT1,SUGT1P1,SUGT1P3,SULF1,SULF2,SULT1A1,SULT1A2,SULT1B1,SULT1C2,SULT1C4,SULT1E1,SULT2A1,SULT2B1,SULT4A1,SUMF1,SUMF2,SUMO1,SUMO1P1,SUMO1P3,SUMO2,SUMO3,SUMO4,SUN1,SUN2,SUN3,SUN5,SUOX,SUPT16H,SUPT20H,SUPT3H,SUPT4H1,SUPT5H,SUPT6H,SUPT7L,SUPV3L1,SURF6,SUSD1,SUSD2,SUSD3,SUSD6,SUV39H1,SUV39H2,SUZ12,SUZ12P1,SV2A,SV2B,SVBP,SVEP1,SVIL,SVOPL,SWAP70,SWSAP1,SWT1,SYAP1,SYBU,SYCE1,SYCE1L,SYCP1,SYCP2,SYCP2L,SYCP3,SYDE1,SYF2,SYK,SYMPK,SYN1,SYN2,SYN3,SYNC,SYNCRIP,SYNDIG1,SYNDIG1L,SYNE1,SYNE2,SYNE3,SYNE4,SYNGAP1,SYNGR1,SYNGR2,SYNGR3,SYNGR4,SYNJ1,SYNJ2,SYNJ2BP,SYNM,SYNPO,SYNPO2L,SYNPR,SYNRG,SYP,SYPL1,SYPL2,SYS1,SYT1,SYT10,SYT11,SYT12,SYT13,SYT14,SYT14P1,SYT16,SYT17,SYT2,SYT3,SYT4,SYT5,SYT6,SYT7,SYT8,SYT9,SYTL1,SYTL2,SYTL4,SYTL5,SYVN1,SZRD1,SZT2,TAAR1,TAAR2,TAAR5,TAAR6,TAAR8,TAAR9,TAB1,TAB2,TAB3,TAC1,TAC3,TAC4,TACC1,TACC2,TACC3,TACO1,TACR1,TACR2,TACR3,TACSTD2,TADA1,TADA2A,TADA3,TAF1,TAF10,TAF11,TAF12,TAF13,TAF15,TAF1A,TAF1B,TAF1C,TAF1D,TAF1L,TAF2,TAF4,TAF5,TAF5L,TAF6,TAF6L,TAF7,TAF7L,TAF8,TAF9,TAF9B,TAFA1,TAFA2,TAFA3,TAFA4,TAFA5,TAGAP,TAGLN,TAGLN2,TAGLN3,TAL1,TAL2,TALDO1,TAMALIN,TAMALIN-AS1,TAMM41,TANGO2,TANK,TAOK1,TAOK2,TAOK3,TAP1,TAP2,TAPBP,TAPBPL,TAPT1,TARBP1,TARBP2,TARDBP,TARP,TARS1,TARS2,TARS3,TAS1R1,TAS1R2,TAS2R1,TAS2R10,TAS2R13,TAS2R14,TAS2R16,TAS2R19,TAS2R20,TAS2R3,TAS2R31,TAS2R38,TAS2R39,TAS2R4,TAS2R40,TAS2R41,TAS2R46,TAS2R5,TAS2R50,TAS2R60,TAS2R7,TAS2R8,TAS2R9,TASOR,TASOR2,TASP1,TAT,TATDN1,TATDN2,TAX1BP1,TAX1BP3,TBATA,TBC1D1,TBC1D10A,TBC1D10B,TBC1D13,TBC1D14,TBC1D15,TBC1D16,TBC1D17,TBC1D19,TBC1D2,TBC1D20,TBC1D21,TBC1D22A,TBC1D22B,TBC1D23,TBC1D24,TBC1D26,TBC1D28,TBC1D29P,TBC1D2B,TBC1D3,TBC1D31,TBC1D32,TBC1D3B,TBC1D3C,TBC1D3F,TBC1D3G,TBC1D3H,TBC1D3I,TBC1D3P2,TBC1D4,TBC1D5,TBC1D7,TBC1D8,TBC1D8B,TBC1D9B,TBCA,TBCB,TBCC,TBCCD1,TBCD,TBCE,TBCEL,TBCK,TBK1,TBKBP1,TBL1X,TBL1XR1,TBL1Y,TBL2,TBL3,TBP,TBPL1,TBPL2,TBR1,TBRG1,TBRG4,TBX10,TBX19,TBX2,TBX20,TBX21,TBX22,TBX3,TBX4,TBX5,TBX6,TBXA2R,TBXAS1,TC2N,TCAF1,TCAIM,TCAP,TCEA1,TCEA2,TCEA3,TCEAL1,TCEAL2,TCEAL3,TCEAL4,TCEAL6,TCEAL7,TCEAL8,TCEAL9,TCEANC,TCEANC2,TCERG1,TCERG1L,TCF12,TCF15,TCF19,TCF20,TCF21,TCF25,TCF3,TCF4,TCF7,TCF7L1,TCF7L2,TCFL5,TCHH,TCHP,TCIM,TCIRG1,TCL1A,TCL1B,TCL6,TCN1,TCN2,TCOF1,TCP1,TCP10L,TCP10L2,TCP10L3,TCP11,TCP11L1,TCP11L2,TCTA,TCTE1,TCTN1,TCTN2,TCTN3,TDG,TDH,TDO2,TDP1,TDP2,TDRD1,TDRD10,TDRD3,TDRD5,TDRD6,TDRD7,TDRD9,TDRKH,TDRP,TEAD1,TEAD2,TEAD3,TEAD4,TEC,TECPR1,TECPR2,TECR,TECRL,TECTA,TECTB,TEDC1,TEDC2,TEDDM1,TEF,TEFM,TEK,TEKT1,TEKT2,TEKT3,TEKT4,TEKT5,TEKTL1,TELO2,TEN1-CDK3,TENM1,TENT2,TENT4A,TENT4B,TENT5A,TENT5B,TENT5C,TENT5D,TEP1,TEPSIN,TERB1,TERB2,TERC,TERF1,TERF2,TERF2IP,TERT,TES,TESC,TESK1,TESK2,TESMIN,TESPA1,TET1,TET2,TET3,TEX10,TEX101,TEX11,TEX12,TEX13A,TEX13B,TEX14,TEX15,TEX19,TEX2,TEX26,TEX261,TEX264,TEX28,TEX29,TEX30,TEX35,TEX44,TEX47,TEX55,TEX56P,TEX9,TF,TFAM,TFAP2A,TFAP2B,TFAP2C,TFAP2D,TFAP2E,TFAP4,TFB1M,TFB2M,TFCP2,TFCP2L1,TFDP1,TFDP2,TFDP3,TFE3,TFEB,TFEC,TFF1,TFF2,TFF3,TFG,TFIP11,TFPI,TFPI2,TFPT,TFR2,TFRC,TG,TGDS,TGFA,TGFB1,TGFB1I1,TGFB2,TGFB3,TGFBI,TGFBR1,TGFBR2,TGFBR3,TGFBRAP1,TGIF1,TGIF2,TGIF2LX,TGIF2LY,TGM1,TGM2,TGM3,TGM4,TGM5,TGM6,TGM7,TGOLN2,TGS1,TH,THADA,THAP1,THAP10,THAP11,THAP12,THAP2,THAP3,THAP5,THAP6,THAP7,THAP8,THAP9,THBD,THBS1,THBS2,THBS3,THBS4,THEM4,THEM5,THEM6,THEMIS2,THG1L,THNSL1,THNSL2,THOC1,THOC2,THOC5,THOC6,THOC7,THOP1,THPO,THRA,THRAP3,THRB,THRSP,THSD1,THSD1P1,THSD4,THTPA,THUMPD1,THUMPD2,THUMPD3,THY1,THYN1,TIA1,TIAL1,TIAM1,TIAM2,TICAM1,TICAM2,TICRR,TIE1,TIFA,TIFAB,TIGAR,TIGD1,TIGD2,TIGD3,TIGD4,TIGD5,TIGD6,TIGD7,TIGIT,TIMD4,TIMELESS,TIMM10,TIMM10B,TIMM13,TIMM17A,TIMM17B,TIMM21,TIMM22,TIMM23,TIMM23B,TIMM29,TIMM44,TIMM50,TIMM8A,TIMM8B,TIMM9,TIMMDC1,TIMP1,TIMP2,TIMP3,TIMP4,TINAG,TINAGL1,TINCR,TINF2,TIPARP,TIPIN,TIPRL,TIRAP,TJAP1,TJP1,TJP2,TJP3,TK1,TK2,TKFC,TKT,TKTL1,TKTL2,TLCD1,TLCD3A,TLCD3B,TLCD4,TLCD5,TLDC2,TLE1,TLE2,TLE3,TLE4,TLE5,TLE6,TLK1,TLK2,TLL1,TLL2,TLN1,TLN2,TLNRD1,TLR1,TLR10,TLR2,TLR3,TLR4,TLR5,TLR6,TLR7,TLR8,TLR9,TLX1,TLX1NB,TLX2,TLX3,TM2D1,TM2D2,TM2D3,TM4SF1,TM4SF18,TM4SF19,TM4SF20,TM4SF4,TM4SF5,TM6SF1,TM6SF2,TM7SF2,TM7SF3,TM9SF1,TM9SF2,TM9SF3,TM9SF4,TMA16,TMBIM1,TMBIM4,TMBIM6,TMC1,TMC2,TMC3,TMC4,TMC5,TMC6,TMC7,TMC8,TMCC1,TMCC2,TMCC3,TMCO1,TMCO3,TMCO4,TMCO5A,TMCO6,TMED1,TMED10,TMED10P1,TMED2,TMED3,TMED4,TMED5,TMED6,TMED7,TMED8,TMEFF1,TMEFF2,TMEM100,TMEM101,TMEM102,TMEM104,TMEM105,TMEM106B,TMEM106C,TMEM107,TMEM108,TMEM109,TMEM11,TMEM115,TMEM116,TMEM117,TMEM119,TMEM120A,TMEM120B,TMEM121,TMEM121B,TMEM123,TMEM125,TMEM126A,TMEM126B,TMEM127,TMEM128,TMEM129,TMEM130,TMEM131L,TMEM132A,TMEM132D,TMEM132E,TMEM132E-DT,TMEM134,TMEM135,TMEM138,TMEM139,TMEM140,TMEM141,TMEM143,TMEM144,TMEM145,TMEM147,TMEM14A,TMEM14B,TMEM14C,TMEM14EP,TMEM150A,TMEM151A,TMEM151B,TMEM154,TMEM156,TMEM158,TMEM160,TMEM161A,TMEM161B,TMEM163,TMEM164,TMEM165,TMEM167A,TMEM168,TMEM169,TMEM17,TMEM170A,TMEM171,TMEM174,TMEM175,TMEM176A,TMEM176B,TMEM177,TMEM178A,TMEM179,TMEM179B,TMEM18,TMEM182,TMEM183A,TMEM183BP,TMEM184A,TMEM184B,TMEM184C,TMEM185A,TMEM185B,TMEM186,TMEM187,TMEM19,TMEM190,TMEM191A,TMEM191B,TMEM191C,TMEM192,TMEM196,TMEM198,TMEM199,TMEM200A,TMEM200B,TMEM204,TMEM205,TMEM207,TMEM208,TMEM209,TMEM213,TMEM214,TMEM215,TMEM216,TMEM217,TMEM219,TMEM220,TMEM221,TMEM222,TMEM229B,TMEM230,TMEM231,TMEM234,TMEM237,TMEM241,TMEM242,TMEM243,TMEM245,TMEM248,TMEM249,TMEM25,TMEM252,TMEM254,TMEM255A,TMEM255B,TMEM256,TMEM258,TMEM259,TMEM26,TMEM260,TMEM263,TMEM266,TMEM267,TMEM268,TMEM270,TMEM272,TMEM30A,TMEM31,TMEM33,TMEM35A,TMEM37,TMEM38A,TMEM38B,TMEM39A,TMEM39B,TMEM40,TMEM41A,TMEM42,TMEM43,TMEM44,TMEM45A,TMEM45B,TMEM47,TMEM50B,TMEM51,TMEM51-AS1,TMEM52B,TMEM53,TMEM54,TMEM59,TMEM59L,TMEM60,TMEM61,TMEM62,TMEM63A,TMEM65,TMEM67,TMEM68,TMEM69,TMEM70,TMEM71,TMEM74,TMEM74B,TMEM79,TMEM80,TMEM81,TMEM86A,TMEM86B,TMEM87A,TMEM87B,TMEM88,TMEM8B,TMEM9,TMEM91,TMEM92,TMEM94,TMEM95,TMEM97,TMEM98,TMEM9B,TMF1,TMIE,TMIGD1,TMIGD2,TMLHE,TMOD1,TMOD2,TMOD3,TMOD4,TMPO,TMPPE,TMPRSS11A,TMPRSS11B,TMPRSS11D,TMPRSS11E,TMPRSS11F,TMPRSS12,TMPRSS13,TMPRSS15,TMPRSS2,TMPRSS3,TMPRSS4,TMPRSS5,TMPRSS6,TMPRSS9,TMSB10,TMSB15A,TMSB15B,TMSB4X,TMSB4XP1,TMSB4XP8,TMSB4Y,TMT1A,TMT1B,TMTC1,TMTC2,TMTC3,TMTC4,TMUB1,TMUB2,TMX1,TMX2,TMX3,TMX4,TNC,TNF,TNFAIP1,TNFAIP2,TNFAIP3,TNFAIP6,TNFAIP8,TNFAIP8L1,TNFAIP8L2,TNFAIP8L3,TNFRSF10A,TNFRSF10B,TNFRSF10C,TNFRSF10D,TNFRSF11A,TNFRSF11B,TNFRSF12A,TNFRSF13B,TNFRSF13C,TNFRSF14,TNFRSF17,TNFRSF18,TNFRSF19,TNFRSF1A,TNFRSF1B,TNFRSF21,TNFRSF25,TNFRSF4,TNFRSF6B,TNFRSF8,TNFRSF9,TNFSF10,TNFSF11,TNFSF12,TNFSF13,TNFSF13B,TNFSF14,TNFSF15,TNFSF18,TNFSF4,TNFSF8,TNFSF9,TNIK,TNIP1,TNIP2,TNIP3,TNK1,TNK2,TNKS,TNKS1BP1,TNKS2,TNMD,TNNC1,TNNC2,TNNI1,TNNI2,TNNI3,TNNI3K,TNNT1,TNNT2,TNNT3,TNP1,TNP2,TNPO1,TNPO2,TNPO3,TNR,TNRC6A,TNRC6B,TNRC6C,TNS1,TNS2,TNS3,TNS4,TNXA,TNXB,TOB1,TOB2,TOE1,TOGARAM1,TOGARAM2,TOLLIP,TOM1,TOM1L1,TOM1L2,TOMM20,TOMM20L,TOMM22,TOMM34,TOMM40,TOMM40L,TOMM5,TOMM6,TOMM7,TOMM70,TONSL,TOP1,TOP1MT,TOP1P1,TOP2A,TOP2B,TOP3A,TOP3B,TOP6BL,TOPBP1,TOPORS,TOR1A,TOR1AIP1,TOR1AIP2,TOR1B,TOR2A,TOR3A,TOX,TOX2,TOX4,TP53,TP53AIP1,TP53BP1,TP53BP2,TP53I11,TP53I13,TP53I3,TP53INP1,TP53INP2,TP53RK,TP53TG1,TP53TG5,TP63,TP73,TPBG,TPCN1,TPCN2,TPD52,TPD52L1,TPD52L2,TPD52L3,TPGS1,TPGS2,TPH1,TPH2,TPI1,TPI1P2,TPK1,TPM1,TPM2,TPM3,TPMT,TPO,TPP1,TPP2,TPPP,TPPP2,TPPP3,TPR,TPRA1,TPRG1,TPRG1L,TPRKB,TPRN,TPRX1,TPRXL,TPSD1,TPSG1,TPST1,TPST2,TPT1,TPTE,TPTE2,TPTE2P2,TPTE2P3,TPX2,TRA2A,TRA2B,TRABD,TRAC,TRADD,TRAF1,TRAF2,TRAF3,TRAF3IP1,TRAF3IP2,TRAF3IP3,TRAF4,TRAF5,TRAF6,TRAF7,TRAFD1,TRAIP,TRAJ17,TRAK1,TRAK2,TRAM1,TRAM1L1,TRAM2,TRAP1,TRAPPC1,TRAPPC10,TRAPPC11,TRAPPC12,TRAPPC13,TRAPPC14,TRAPPC2,TRAPPC2L,TRAPPC3,TRAPPC4,TRAPPC5,TRAPPC6A,TRAPPC6B,TRAPPC8,TRAPPC9,TRARG1,TRAT1,TRAV20,TRAV8-3,TRBV10-2,TRBV20OR9-2,TRBV27,TRBV29-1,TRBV5-4,TRDMT1,TRDN,TREH,TREM1,TREM2,TREML1,TREML2,TREML3P,TREML4,TREML5P,TRERF1,TREX1,TREX2,TRGC1,TRGC2,TRGV11,TRGV3,TRGV9,TRH,TRHDE,TRHR,TRIAP1,TRIB1,TRIB2,TRIB3,TRIL,TRIM10,TRIM11,TRIM13,TRIM14,TRIM15,TRIM16,TRIM16L,TRIM17,TRIM2,TRIM21,TRIM22,TRIM23,TRIM24,TRIM25,TRIM26,TRIM27,TRIM28,TRIM29,TRIM3,TRIM31,TRIM32,TRIM33,TRIM34,TRIM35,TRIM36,TRIM37,TRIM38,TRIM39,TRIM39-RPP21,TRIM4,TRIM40,TRIM41,TRIM42,TRIM44,TRIM45,TRIM46,TRIM47,TRIM48,TRIM49,TRIM49B,TRIM49C,TRIM49D2,TRIM5,TRIM50,TRIM51,TRIM51BP,TRIM52,TRIM53AP,TRIM53BP,TRIM54,TRIM55,TRIM56,TRIM58,TRIM59,TRIM6,TRIM60,TRIM61,TRIM62,TRIM63,TRIM64,TRIM64B,TRIM65,TRIM67,TRIM68,TRIM69,TRIM7,TRIM71,TRIM72,TRIM73,TRIM74,TRIM8,TRIM9,TRIML1,TRIML2,TRIO,TRIOBP,TRIP10,TRIP11,TRIP12,TRIP13,TRIP4,TRIP6,TRIR,TRIT1,TRMO,TRMT1,TRMT10A,TRMT10B,TRMT10C,TRMT11,TRMT112,TRMT12,TRMT13,TRMT1L,TRMT2A,TRMT2B,TRMT44,TRMT5,TRMT6,TRMT61A,TRMT61B,TRMT9B,TRMU,TRNAU1AP,TRNP1,TRNT1,TRO,TROAP,TRPA1,TRPC1,TRPC3,TRPC4,TRPC4AP,TRPC5,TRPC6,TRPC7,TRPM1,TRPM2,TRPM3,TRPM4,TRPM5,TRPM6,TRPM7,TRPM8,TRPS1,TRPT1,TRPV1,TRPV2,TRPV3,TRPV4,TRPV5,TRPV6,TRRAP,TRUB1,TRUB2,TRX-CAT1-2,TSACC,TSBP1,TSC1,TSC2,TSC22D1,TSC22D2,TSC22D3,TSC22D4,TSEN15,TSEN2,TSEN34,TSEN54,TSFM,TSG101,TSGA10,TSGA10IP,TSGA13,TSHB,TSHR,TSHZ1,TSHZ2,TSHZ3,TSKS,TSKU,TSLP,TSN,TSNARE1,TSNAX,TSNAXIP1,TSPAN1,TSPAN10,TSPAN11,TSPAN12,TSPAN13,TSPAN14,TSPAN15,TSPAN16,TSPAN17,TSPAN18,TSPAN2,TSPAN3,TSPAN31,TSPAN32,TSPAN33,TSPAN4,TSPAN5,TSPAN6,TSPAN7,TSPAN8,TSPAN9,TSPEAR,TSPEAR-AS2,TSPO,TSPOAP1,TSPY26P,TSPYL1,TSPYL2,TSPYL4,TSPYL5,TSPYL6,TSR1,TSR2,TSR3,TSSC4,TSSK1B,TSSK2,TSSK3,TSSK4,TSSK6,TST,TSTD1,TSTD2,TTBK2,TTC1,TTC12,TTC13,TTC14,TTC16,TTC17,TTC19,TTC21B,TTC22,TTC23,TTC23L,TTC27,TTC28,TTC28-AS1,TTC29,TTC3,TTC31,TTC33,TTC34,TTC36,TTC38,TTC39A,TTC39B,TTC39C,TTC4,TTC5,TTC8,TTC9B,TTC9C,TTF1,TTF2,TTI1,TTI2,TTK,TTL,TTLL1,TTLL10,TTLL11,TTLL12,TTLL13,TTLL2,TTLL3,TTLL4,TTLL5,TTLL6,TTLL7,TTN,TTPA,TTPAL,TTR,TTTY10,TTTY11,TTTY12,TTTY13,TTTY14,TTTY15,TTTY5,TTYH1,TTYH2,TTYH3,TUB,TUBA1A,TUBA1B,TUBA1C,TUBA3C,TUBA3D,TUBA3E,TUBA4A,TUBA4B,TUBA8,TUBAL3,TUBB,TUBB1,TUBB2A,TUBB2B,TUBB3,TUBB4A,TUBB4B,TUBB6,TUBB7P,TUBB8,TUBBP5,TUBD1,TUBE1,TUBG1,TUBG2,TUBGCP2,TUBGCP3,TUBGCP4,TUBGCP5,TUBGCP6,TUFM,TUFT1,TUG1,TULP1,TULP2,TULP3,TULP4,TUSC1,TUSC2,TUSC3,TUT1,TUT4,TUT7,TVP23A,TVP23B,TVP23C-CDRT4,TWF1,TWF2,TWIST1,TWSG1,TXK,TXLNA,TXLNB,TXLNG,TXN2,TXNDC11,TXNDC12,TXNDC15,TXNDC17,TXNDC2,TXNDC5,TXNDC8,TXNDC9,TXNIP,TXNL1,TXNL4A,TXNL4B,TXNRD1,TXNRD2,TXNRD3,TYK2,TYMP,TYMS,TYMSOS,TYR,TYRL,TYRO3,TYRO3P,TYROBP,TYRP1,TYSND1,TYW1,TYW1B,TYW3,TYW5,U2AF1,U2AF1L4,U2AF2,UACA,UAP1,UAP1L1,UBA1,UBA2,UBA3,UBA5,UBA52,UBA6,UBA7,UBAC1,UBAC2,UBALD1,UBALD2,UBAP1,UBAP2,UBAP2L,UBASH3A,UBASH3B,UBB,UBC,UBD,UBE2A,UBE2B,UBE2C,UBE2D1,UBE2D2,UBE2D3,UBE2D4,UBE2DNL,UBE2E1,UBE2E2,UBE2E3,UBE2E4P,UBE2F,UBE2G1,UBE2G2,UBE2H,UBE2I,UBE2J1,UBE2J2,UBE2K,UBE2L1,UBE2L3,UBE2L6,UBE2M,UBE2MP1,UBE2N,UBE2NL,UBE2O,UBE2Q1,UBE2Q2,UBE2Q2P1,UBE2Q2P2,UBE2R2,UBE2T,UBE2U,UBE2V1,UBE2V2,UBE2W,UBE2Z,UBE3A,UBE3B,UBE3C,UBE3D,UBE4A,UBE4B,UBFD1,UBIAD1,UBL3,UBL4A,UBL4B,UBL5,UBL7,UBLCP1,UBN1,UBOX5,UBP1,UBQLN1,UBQLN2,UBQLN3,UBQLN4,UBQLNL,UBR1,UBR2,UBR3,UBR4,UBR5,UBR7,UBTD1,UBTD2,UBTF,UBXN1,UBXN10,UBXN11,UBXN2A,UBXN4,UBXN6,UBXN7,UBXN8,UCHL1,UCHL3,UCHL5,UCK1,UCK2,UCKL1,UCKL1-AS1,UCMA,UCN,UCN2,UCN3,UCP1,UCP2,UCP3,UEVLD,UFC1,UFD1,UFL1,UFM1,UFSP1,UFSP2,UGCG,UGDH,UGGT1,UGGT2,UGP2,UGT1A1,UGT1A10,UGT1A3,UGT1A4,UGT1A5,UGT1A6,UGT1A7,UGT1A8,UGT1A9,UGT2A1,UGT2A2,UGT2A3,UGT2B10,UGT2B11,UGT2B15,UGT2B17,UGT2B28,UGT2B4,UGT2B7,UGT3A1,UGT3A2,UGT8,UHMK1,UHRF1,UHRF2,UIMC1,ULBP1,ULBP2,ULBP3,ULK1,ULK2,ULK3,ULK4,UMOD,UMODL1,UMODL1-AS1,UMPS,UNC119,UNC119B,UNC13B,UNC13D,UNC45A,UNC45B,UNC50,UNC5B,UNC5C,UNC5CL,UNC5D,UNC79,UNC80,UNC93A,UNC93B1,UNG,UNKL,UPB1,UPF1,UPF2,UPF3A,UPF3B,UPK1A,UPK1B,UPK2,UPK3A,UPK3B,UPP1,UPP2,UPRT,UQCC1,UQCC2,UQCC3,UQCC6,UQCR10,UQCR11,UQCRB,UQCRC1,UQCRC2,UQCRFS1,UQCRQ,URB1,URB1-AS1,URB2,URGCP,URI1,URM1,UROC1,UROD,UROS,USB1,USE1,USF1,USF2,USH1C,USH1G,USH2A,USHBP1,USO1,USP1,USP10,USP11,USP12,USP13,USP14,USP15,USP16,USP18,USP2,USP20,USP21,USP24,USP25,USP26,USP28,USP29,USP3,USP30,USP31,USP32,USP33,USP34,USP36,USP37,USP38,USP39,USP4,USP40,USP41P,USP44,USP45,USP46,USP47,USP48,USP49,USP5,USP50,USP51,USP53,USP54,USP6,USP6NL,USP7,USP8,USP9X,USP9Y,USPL1,UST,UTF1,UTP11,UTP14A,UTP14C,UTP15,UTP18,UTP20,UTP23,UTP25,UTP3,UTP4,UTP6,UTRN,UTS2,UTS2B,UTS2R,UTY,UVRAG,UVSSA,UXS1,UXT,VAC14,VAMP1,VAMP2,VAMP3,VAMP4,VAMP5,VAMP8,VANGL1,VAPA,VAPB,VARS1,VARS2,VASH1,VASH2,VASN,VASP,VAT1,VAT1L,VAV1,VAV2,VAV3,VAX1,VAX2,VBP1,VCAM1,VCAN,VCF1,VCF2,VCL,VCP,VCPIP1,VCPKMT,VCX,VCX2,VCX3A,VCX3B,VDAC1,VDAC2,VDAC3,VDR,VEGFA,VEGFB,VEGFC,VEGFD,VENTX,VEPH1,VEZF1,VEZT,VGF,VGLL1,VGLL2,VGLL3,VGLL4,VHL,VHLL,VIL1,VILL,VIM,VIP,VIPAS39,VIPR1,VIPR2,VIRMA,VIT,VKORC1,VKORC1L1,VLDLR,VMO1,VMP1,VN1R1,VN1R10P,VN1R2,VN1R3,VN1R5,VNN1,VNN2,VNN3P,VOPP1,VPREB1,VPREB3,VPS11,VPS13A,VPS13B,VPS13C,VPS13D,VPS16,VPS18,VPS25,VPS26A,VPS26B,VPS26C,VPS28,VPS29,VPS33A,VPS33B,VPS35,VPS35L,VPS36,VPS37A,VPS37B,VPS37C,VPS37D,VPS39,VPS41,VPS45,VPS4A,VPS4B,VPS50,VPS52,VPS53,VPS54,VPS72,VPS8,VPS9D1,VRK1,VRK2,VRK3,VRTN,VSIG1,VSIG10,VSIG2,VSIG4,VSIR,VSNL1,VSTM1,VSTM2A,VSTM2L,VSTM4,VSX1,VSX2,VTA1,VTCN1,VTI1A,VTI1B,VTN,VWA1,VWA2,VWA3A,VWA3B,VWA5A,VWA5B1,VWA7,VWC2,VWC2L,VWCE,VWF,VXN,WAC,WAPL,WARS1,WARS2,WAS,WASF1,WASF2,WASF3,WASH2P,WASH3P,WASH5P,WASH7P,WASHC1,WASHC3,WASHC4,WASHC5,WASL,WBP11,WBP11P1,WBP1L,WBP2,WBP2NL,WBP4,WDCP,WDFY1,WDFY2,WDFY3,WDFY3-AS2,WDFY4,WDHD1,WDPCP,WDR1,WDR11,WDR12,WDR13,WDR17,WDR18,WDR19,WDR20,WDR24,WDR25,WDR26,WDR27,WDR3,WDR31,WDR33,WDR35,WDR36,WDR37,WDR4,WDR41,WDR44,WDR45,WDR45B,WDR46,WDR47,WDR49,WDR53,WDR54,WDR55,WDR59,WDR5B,WDR6,WDR62,WDR64,WDR7,WDR70,WDR72,WDR73,WDR74,WDR75,WDR76,WDR77,WDR81,WDR82,WDR83,WDR83OS,WDR86,WDR87,WDR88,WDR89,WDR90,WDR91,WDR93,WDSUB1,WDTC1,WEE1,WFDC1,WFDC10A,WFDC10B,WFDC11,WFDC12,WFDC13,WFDC2,WFDC3,WFDC5,WFDC6,WFDC8,WFDC9,WFIKKN1,WFIKKN2,WFS1,WHR1,WHRN,WIF1,WIPF1,WIPF3,WIPI1,WIPI2,WLS,WNK1,WNK2,WNK3,WNK4,WNT1,WNT10A,WNT10B,WNT11,WNT16,WNT2,WNT2B,WNT3,WNT3A,WNT4,WNT5A,WNT5B,WNT6,WNT7A,WNT7B,WNT8A,WNT8B,WNT9A,WNT9B,WRAP53,WRAP73,WRN,WRNIP1,WSB1,WSB2,WSCD1,WSCD2,WT1,WT1-AS,WTAP,WWC1,WWC2,WWC2-AS2,WWC3,WWOX,WWP1,WWP2,WWTR1,XAB2,XAF1,XAGE3,XAGE5,XBP1,XCL1,XCL2,XCR1,XDH,XG,XGY2,XIAP,XIRP1,XIRP2,XK,XKR3,XKR5,XKR6,XKR8,XKRX,XPA,XPC,XPNPEP1,XPNPEP2,XPNPEP3,XPO1,XPO4,XPO5,XPO6,XPO7,XPOT,XPR1,XRCC1,XRCC2,XRCC3,XRCC4,XRCC5,XRCC6,XRN1,XRN2,XRRA1,XXYLT1,XYLB,XYLT1,XYLT2,YAE1,YAF2,YAP1,YARS1,YARS2,YBX1,YBX2,YBX3,YBX3P1,YEATS2,YEATS4,YES1,YIF1A,YIF1B,YIPF1,YIPF2,YIPF3,YIPF4,YIPF5,YIPF6,YIPF7,YJEFN3,YJU2,YJU2B,YKT6,YLPM1,YME1L1,YPEL1,YPEL2,YPEL3,YPEL4,YPEL5,YTHDC1,YTHDC2,YTHDF1,YTHDF2,YTHDF3,YWHAB,YWHAE,YWHAG,YWHAH,YWHAH-AS1,YWHAQ,YWHAQP8,YWHAZ,YY1,YY1AP1,YY2,ZACN,ZAN,ZAP70,ZAR1,ZBBX,ZBED10P,ZBED2,ZBED3,ZBED4,ZBED5,ZBED6,ZBP1,ZBTB1,ZBTB10,ZBTB11,ZBTB12,ZBTB14,ZBTB16,ZBTB17,ZBTB18,ZBTB2,ZBTB20,ZBTB21,ZBTB22,ZBTB25,ZBTB26,ZBTB3,ZBTB32,ZBTB33,ZBTB34,ZBTB37,ZBTB39,ZBTB4,ZBTB40,ZBTB41,ZBTB43,ZBTB44,ZBTB45,ZBTB46,ZBTB47,ZBTB48,ZBTB49,ZBTB5,ZBTB6,ZBTB7A,ZBTB7B,ZBTB7C-AS2,ZBTB8A,ZBTB8B,ZBTB8OS,ZBTB9,ZC2HC1A,ZC2HC1C,ZC3H10,ZC3H11A,ZC3H12A,ZC3H12D,ZC3H13,ZC3H14,ZC3H15,ZC3H18,ZC3H18-AS1,ZC3H3,ZC3H6,ZC3H7A,ZC3H7B,ZC3H8,ZC3HAV1,ZC3HAV1L,ZC3HC1,ZC4H2,ZCCHC10,ZCCHC12,ZCCHC13,ZCCHC14,ZCCHC17,ZCCHC2,ZCCHC24,ZCCHC3,ZCCHC4,ZCCHC7,ZCCHC8,ZCCHC9,ZCRB1,ZCWPW1,ZDHHC1,ZDHHC11,ZDHHC12,ZDHHC13,ZDHHC14,ZDHHC15,ZDHHC16,ZDHHC17,ZDHHC18,ZDHHC19,ZDHHC2,ZDHHC20,ZDHHC21,ZDHHC22,ZDHHC23,ZDHHC24,ZDHHC3,ZDHHC4,ZDHHC5,ZDHHC6,ZDHHC7,ZDHHC8,ZDHHC8BP,ZDHHC9,ZEB1,ZEB2,ZER1,ZFAND1,ZFAND2A,ZFAND2B,ZFAND3,ZFAND4,ZFAND5,ZFAND6,ZFAT,ZFC3H1,ZFHX2,ZFHX3,ZFHX4,ZFP1,ZFP14,ZFP2,ZFP28,ZFP3,ZFP30,ZFP36,ZFP36L1,ZFP36L2,ZFP37,ZFP41,ZFP42,ZFP64,ZFP69,ZFP69B,ZFP82,ZFP90,ZFP91,ZFP91-CNTF,ZFPL1,ZFPM1,ZFPM2,ZFR,ZFTRAF1,ZFX,ZFY,ZFYVE1,ZFYVE16,ZFYVE19,ZFYVE21,ZFYVE26,ZFYVE27,ZFYVE28,ZFYVE9,ZG16,ZG16B,ZGLP1,ZGPAT,ZGRF1,ZHX1,ZHX2,ZHX3,ZIC1,ZIC2,ZIC3,ZIC4,ZIC5,ZIM2,ZIM3,ZKSCAN1,ZKSCAN3,ZKSCAN4,ZKSCAN5,ZKSCAN7,ZKSCAN8,ZMAT1,ZMAT2,ZMAT3,ZMAT4,ZMAT5,ZMIZ1,ZMIZ2,ZMPSTE24,ZMYM1,ZMYM2,ZMYM3,ZMYM4,ZMYM5,ZMYM6,ZMYND10,ZMYND11,ZMYND12,ZMYND15,ZMYND19,ZMYND8,ZNF10,ZNF100,ZNF101,ZNF106,ZNF107,ZNF112,ZNF114,ZNF117,ZNF12,ZNF121,ZNF124,ZNF131,ZNF132,ZNF133,ZNF134,ZNF135,ZNF136,ZNF137P,ZNF138,ZNF14,ZNF140,ZNF141,ZNF142,ZNF143,ZNF146,ZNF148,ZNF154,ZNF155,ZNF157,ZNF16,ZNF160,ZNF165,ZNF169,ZNF17,ZNF174,ZNF175,ZNF177,ZNF18,ZNF180,ZNF181,ZNF184,ZNF185,ZNF189,ZNF19,ZNF195,ZNF197,ZNF2,ZNF20,ZNF200,ZNF202,ZNF204P,ZNF205,ZNF207,ZNF208,ZNF211,ZNF212,ZNF213,ZNF214,ZNF215,ZNF217,ZNF219,ZNF22,ZNF22-AS1,ZNF221,ZNF222,ZNF223,ZNF224,ZNF225,ZNF226,ZNF227,ZNF23,ZNF230,ZNF232,ZNF233,ZNF234,ZNF235,ZNF236,ZNF239,ZNF24,ZNF248,ZNF25,ZNF250,ZNF252P,ZNF252P-AS1,ZNF253,ZNF254,ZNF256,ZNF257,ZNF26,ZNF260,ZNF263,ZNF264,ZNF266,ZNF267,ZNF268,ZNF271P,ZNF273,ZNF274,ZNF276,ZNF277,ZNF28,ZNF280A,ZNF280B,ZNF280C,ZNF280D,ZNF281,ZNF282,ZNF285,ZNF286A,ZNF286B,ZNF287,ZNF295-AS1,ZNF296,ZNF29P,ZNF3,ZNF30,ZNF300,ZNF300P1,ZNF302,ZNF304,ZNF317,ZNF318,ZNF32,ZNF32-AS2,ZNF320,ZNF321P,ZNF324,ZNF324B,ZNF326,ZNF329,ZNF330,ZNF331,ZNF333,ZNF334,ZNF335,ZNF337,ZNF33A,ZNF33B,ZNF34,ZNF341,ZNF343,ZNF345,ZNF346,ZNF347,ZNF35,ZNF350,ZNF354A,ZNF354B,ZNF354C,ZNF358,ZNF362,ZNF365,ZNF366,ZNF367,ZNF37A,ZNF37BP,ZNF382,ZNF383,ZNF384,ZNF385A,ZNF385B,ZNF385C,ZNF385D,ZNF394,ZNF395,ZNF396,ZNF397,ZNF398,ZNF407,ZNF408,ZNF41,ZNF410,ZNF414,ZNF415,ZNF416,ZNF417,ZNF418,ZNF419,ZNF420,ZNF423,ZNF425,ZNF426,ZNF428,ZNF429,ZNF43,ZNF430,ZNF431,ZNF432,ZNF433,ZNF436,ZNF436-AS1,ZNF438,ZNF439,ZNF44,ZNF440,ZNF441,ZNF442,ZNF443,ZNF444,ZNF445,ZNF446,ZNF449,ZNF45,ZNF451,ZNF454,ZNF460,ZNF461,ZNF462,ZNF467,ZNF468,ZNF469,ZNF470,ZNF471,ZNF473,ZNF474,ZNF479,ZNF48,ZNF480,ZNF483,ZNF485,ZNF487,ZNF488,ZNF490,ZNF491,ZNF492,ZNF493,ZNF496,ZNF497,ZNF500,ZNF501,ZNF502,ZNF503,ZNF503-AS2,ZNF506,ZNF507,ZNF510,ZNF511,ZNF512,ZNF512B,ZNF513,ZNF514,ZNF516,ZNF517,ZNF519,ZNF521,ZNF524,ZNF525,ZNF526,ZNF528,ZNF529,ZNF530,ZNF532,ZNF534,ZNF536,ZNF540,ZNF541,ZNF542P,ZNF543,ZNF544,ZNF546,ZNF547,ZNF548,ZNF549,ZNF550,ZNF551,ZNF552,ZNF554,ZNF555,ZNF556,ZNF557,ZNF558,ZNF559,ZNF560,ZNF561,ZNF562,ZNF563,ZNF564,ZNF565,ZNF566,ZNF567,ZNF568,ZNF569,ZNF56P,ZNF57,ZNF570,ZNF571,ZNF572,ZNF573,ZNF574,ZNF575,ZNF576,ZNF577,ZNF578,ZNF579,ZNF580,ZNF581,ZNF582,ZNF583,ZNF584,ZNF585A,ZNF585B,ZNF586,ZNF587,ZNF589,ZNF592,ZNF593,ZNF595,ZNF596,ZNF597,ZNF598,ZNF600,ZNF605,ZNF606,ZNF607,ZNF610,ZNF611,ZNF613,ZNF614,ZNF615,ZNF616,ZNF618,ZNF619,ZNF620,ZNF621,ZNF622,ZNF623,ZNF624,ZNF625,ZNF626,ZNF627,ZNF638,ZNF639,ZNF641,ZNF644,ZNF646,ZNF649,ZNF652,ZNF653,ZNF654,ZNF655,ZNF658,ZNF658B,ZNF66,ZNF660,ZNF662,ZNF663P,ZNF664,ZNF665,ZNF667,ZNF668,ZNF669,ZNF670,ZNF671,ZNF672,ZNF675,ZNF676,ZNF677,ZNF678,ZNF679,ZNF680,ZNF681,ZNF682,ZNF683,ZNF684,ZNF687,ZNF688,ZNF689,ZNF69,ZNF691,ZNF692,ZNF695,ZNF696,ZNF697,ZNF699,ZNF7,ZNF70,ZNF700,ZNF701,ZNF702P,ZNF703,ZNF705A,ZNF705D,ZNF705G,ZNF706,ZNF707,ZNF709,ZNF71,ZNF710,ZNF711,ZNF713,ZNF714,ZNF718,ZNF721,ZNF725P,ZNF728,ZNF729,ZNF732,ZNF735,ZNF737,ZNF738,ZNF74,ZNF740,ZNF746,ZNF747,ZNF749,ZNF750,ZNF75A,ZNF75D,ZNF76,ZNF761,ZNF763,ZNF764,ZNF765,ZNF767P,ZNF768,ZNF77,ZNF770,ZNF771,ZNF772,ZNF773,ZNF774,ZNF775,ZNF776,ZNF777,ZNF778,ZNF781,ZNF782,ZNF783,ZNF784,ZNF785,ZNF786,ZNF787,ZNF788P,ZNF789,ZNF79,ZNF790,ZNF791,ZNF792,ZNF793,ZNF799,ZNF8,ZNF80,ZNF800,ZNF804A,ZNF804B,ZNF805,ZNF808,ZNF81,ZNF812P,ZNF813,ZNF814,ZNF818P,ZNF821,ZNF823,ZNF826P,ZNF827,ZNF83,ZNF830,ZNF833P,ZNF835,ZNF836,ZNF839,ZNF84,ZNF841,ZNF843,ZNF844,ZNF845,ZNF846,ZNF85,ZNF850,ZNF852,ZNF862,ZNF875,ZNF876P,ZNF879,ZNF880,ZNF883,ZNF891,ZNF90,ZNF91,ZNF92,ZNF93,ZNF98,ZNF99,ZNFX1,ZNG1A,ZNG1B,ZNG1C,ZNG1E,ZNG1F,ZNHIT1,ZNHIT2,ZNHIT3,ZNHIT6,ZNRD2,ZNRF1,ZNRF2,ZNRF4,ZP1,ZP2,ZP3,ZP4,ZPBP,ZPBP2,ZPLD1,ZPR1,ZRANB1,ZRANB2,ZRANB3,ZRSR2,ZRSR2P1,ZSCAN1,ZSCAN10,ZSCAN12,ZSCAN16,ZSCAN18,ZSCAN2,ZSCAN20,ZSCAN21,ZSCAN22,ZSCAN25,ZSCAN26,ZSCAN29,ZSCAN30,ZSCAN31,ZSCAN32,ZSCAN4,ZSCAN5A,ZSCAN5B,ZSCAN5C,ZSCAN9,ZSWIM1,ZSWIM2,ZSWIM3,ZSWIM8,ZSWIM9,ZUP1,ZW10,ZWILCH,ZWINT,ZXDA,ZXDB,ZXDC,ZYG11A,ZYG11B,ZYX,ZZEF1,ZZZ3 -GSM1946756,0.0,2.011265,2.011265,1.5660233333333335,4.41636,6.2221,2.5638967105263157,1.6998166666666668,7.510320637254901,4.43974,3.186916666666667,2.466645,2.307185,3.3906,4.43702,1.865232,1.484496,5.0383,2.5021133333333334,2.267795,4.91678,5.3744499999999995,3.869825,2.443965,1.855828,4.33428,4.59319,4.409285,0.7240483333333333,1.5675483333333333,1.9262266666666668,2.1910625,1.8155125,1.11024,0.69596,3.10492,1.53129,1.9714075,1.1761575,2.1861525,1.1059825,1.0685775,1.1128740000000001,1.487162,0.925874,0.91105,0.7476659999999999,1.1954314285714285,1.7098939999999998,1.824798,1.522166,2.06556,1.694828,18.3446775,0.382554,0.8438399999999999,1.127496,1.75551,1.490892,1.7372779999999999,1.0796428571428571,1.0796428571428571,1.0796428571428571,1.1703966666666668,1.0010999999999999,4.74626125,1.186795,2.435675,2.0331675,2.6346,0.987357,2.2956475,2.270275,2.1270275,1.4744075,2.0441025,1.556535,1.7004525,2.45842,3.67981,4.381915,4.869965,1.5645366666666665,4.71266,4.380288333333334,4.12785,4.13438,1.04367875,7.39652,0.603771875,0.603771875,2.2947625,1.0822642857142857,16.243965,4.859345,5.28005,5.54885,4.376985,4.18587,5.32645,0.45924000000000004,2.2604249999999997,1.68844,2.3777325,4.577855,3.715305,1.536325,3.1985766666666664,3.4950666666666668,2.62569,3.6661333333333332,3.5217,4.735425,2.9362380000000003,4.573335,3.0292933333333334,0.7225472727272727,1.642484,2.75725,4.89615,4.603755,0.560843125,3.5836,3.75821,0.84181,4.479405,1.6986914285714283,2.139065,2.759275,2.043775,4.11838,5.7046,3.42758,2.81174,3.3507,3.0261899999999997,4.17512,3.084186666666667,5.74775,3.362015,4.358415,3.26003,2.211455,3.64875,2.5633,6.9359633333333335,3.508915,3.62749,5.70075,3.16035,5.08995,0.7841922222222223,9.63789619047619,3.61083,1.9633833333333335,1.9087899999999998,3.3402333333333334,2.35945,4.68342,5.50165,2.1585775,5.102790833333334,2.794955,4.621625,2.1585775,2.7130799999999997,4.384255,5.18877,4.14106,8.9539,3.56785,5.11695,2.96866,5.0195,4.476275,1.8384,8.22317,4.351195,3.96788,4.182705,3.62366,3.417545,2.237745,6.389565,2.35314,3.970755,4.07099,5.15105,5.1965,3.952325,1.54901,2.768915,2.97311,1.601075,1.601075,5.776089761904762,3.112565,1.8985200000000002,4.128945,4.665235,2.66625,1.508595,0.8142033333333333,5.5029,2.95664,6.899,3.30175,3.988395,3.723665,3.12017,3.80918,3.510115,3.95761,3.972455,5.89665,2.81328,3.677895,9.113136666666666,4.81324,3.5704666666666665,3.0942900000000004,2.79865,3.9530999999999996,4.3513158333333335,1.9615225,2.7438300000000004,2.21575,1.730788,1.6608266666666667,2.600956666666667,1.7527775,1.926435,3.0055266666666665,2.75792,2.33576,2.72308,4.380288333333334,3.47311,3.18551,3.505425,4.41533,1.2703833333333334,2.543725,2.842612,2.13322,2.5728033333333333,2.21048,3.4065999999999996,1.801702,1.3212066666666666,2.6079166666666667,0.6570199999999999,1.6276366666666666,0.5225388888888889,0.5225388888888889,1.4535033333333331,2.744123333333333,2.1976833333333334,1.3118166666666666,1.5421566666666668,0.32280615384615385,2.750583333333333,0.6570199999999999,1.2422333333333333,0.19852675675675674,1.45218,2.0218375,3.3557666666666663,2.5909,2.3045166666666668,2.5303833333333334,2.16609,2.3997633333333335,2.5012,2.4082866666666667,2.2190499999999997,2.718386666666667,1.9647566666666665,2.68526,4.121295,0.68402,1.8232833333333334,2.5447566666666668,1.9935833333333333,3.3372633333333335,1.5135239999999999,2.583343333333333,2.2122533333333334,4.273353333333334,2.0374466666666664,7.211578095238096,1.6469714285714285,2.879716666666667,2.0180875,2.2033725,3.4099,1.9516175,1.9228875,4.154195,2.6288,2.19124,3.79772,4.200835,4.310895,3.695165,2.31987,3.313155,4.525864666666667,3.783695,3.972675,4.15116,4.496165,3.078345,4.445005,3.400735,0.90451625,4.81617,1.2361583333333332,4.83014,3.790015,5.797581999999999,3.757725,4.279045,0.951525,2.22238,3.541915,4.15169,0.80685,1.1849418376068375,2.010833095238095,3.3350185714285714,5.5299949999999995,5.554993,2.246815,3.125195,5.12375,0.33538285714285715,3.519315,2.355385,0.9917525,4.34332,2.063025,11.831859999999999,1.3478,1.4389275,2.1326300000000002,2.398555,2.0072892105263156,4.8135042105263155,0.3364042105263158,1.7424866666666665,2.771236666666667,1.04889,3.706,0.9870142857142856,5.15595,3.89523,2.097583333333333,6.0457,5.68515,2.570425,1.1476771428571428,4.35171,4.800435,4.332665,0.8708836363636364,8.067309999999999,3.01151,4.434395,2.6905433333333337,2.4870766666666664,4.65651,2.52323,2.6381133333333335,2.1398699999999997,2.5209333333333332,3.28355,2.9865633333333332,0.342903125,4.03022,3.868935,3.83546,3.90148,4.522285,6.150748999999999,4.14007,1.6656975,5.43375,4.50909,4.31783,4.292265,1.1917766666666667,2.60222,3.2518333333333334,2.690136666666667,15.736,3.513035,3.76905,4.153715,5.75935,2.803055,5.118540138888888,1.6838175,0.7670477777777778,2.8004,3.355275,3.656295,4.120065,6.551878333333334,2.9652100000000003,2.198955,2.16646,3.4439666666666664,4.36282,2.27695,0.3626201785714286,2.784827173913044,1.9349,1.130335,0.46982126552795034,0.5770223524844721,0.3626201785714286,0.3626201785714286,0.3626201785714286,1.210235,1.336185,0.81709,1.4790125,4.2035800000000005,0.21396500000000002,11.324229361471861,3.205023333333333,2.8642466666666664,4.12196,4.223795,3.94554,2.08812,4.777895,4.0313843333333335,4.212065,3.90637,0.6457761538461538,3.4951666666666665,4.174307692307692,0.59112,3.494505,2.97227,4.58511,0.5463154545454546,1.87357,4.288375,3.412295,1.9019775,1.7979766666666668,1.5233966666666667,3.2201833333333334,4.005675,2.96831,2.8522966666666663,5.11305,5.7803,4.834515,3.3509333333333333,3.489535,6.812474999999999,3.8966999999999996,5.07085,0.4015290476190476,3.1401299999999996,3.932568333333333,2.00254,2.67146,2.845455,5.28494,0.5868675,2.9279,4.450995,4.01613,1.04072,4.654335,2.96558,4.99935,3.076446666666667,4.09771,3.505525,4.304145,1.184975,3.335755,2.7897433333333335,4.62389,3.91301,4.287895,5.9405,4.41575,2.624585,5.14176,2.3469,3.045655,3.1564200000000002,2.7386866666666667,2.822153333333333,2.23135,1.8306080000000002,1.5681200000000002,2.0353133333333333,0.8061428571428572,1.5340733333333334,2.4071766666666665,1.9873466666666666,3.1076766666666664,3.181086666666667,2.8554566666666665,0.8624866666666667,5.0227,3.3902666666666668,5.43440625,2.658439583333333,3.0180066666666665,2.9785866666666667,1.9544333333333332,1.9544333333333332,2.7380272727272725,2.7380272727272725,3.5958140584415585,0.5376542857142858,1.70861,2.0704033333333336,3.655666666666667,2.1959414285714285,2.1959414285714285,2.1959414285714285,7.35974363095238,4.2669080952380956,0.9635545454545454,2.78803,4.9048791666666665,2.307415,4.67872,3.144295,2.28719,3.860255,3.0880033333333334,3.174246666666667,1.19348875,1.93062,3.120786666666667,2.4839966666666666,2.551746666666667,5.54905,4.119433333333333,3.8378666666666668,4.919363333333333,1.9252500000000001,2.510406666666667,3.1895966666666666,0.9940944444444444,2.168953333333333,4.728738666666667,7.960369999999999,1.54022,2.93598,4.833795,1.8163340000000001,1.784335,1.784335,1.0144925,4.83679,7.53895,4.132645,5.125204,4.590705,1.6890666666666665,4.093315,3.212155,4.71311,5.052623333333333,0.35963473684210523,2.92503,2.630435,3.86158,3.81273,1.8284759999999998,1.9158275,2.5422,4.32296,3.980585,3.2168,2.47849,1.443426,6.96613,5.1909,5.196,3.524405,5.6613,4.361445,4.98126,3.96379,3.749955,1.992245,1.0948571428571428,2.781725,4.032825,3.82161,5.7422,5.709715,2.40205,1.5775266666666665,2.69363,2.7470233333333334,2.9455766666666663,0.6808878571428572,2.119085,3.650645,1.12878625,5.1464,3.224655,6.101725,1.2443046969696971,1.2443046969696971,4.098095,3.74303,3.827965,5.6568,2.7701433333333334,2.3198233333333333,3.9867,3.143635,2.16059,3.4688,2.43981,4.18354,3.390715,3.507155,4.59518,1.0415455555555555,2.52949,4.2891,4.679915,3.232305,2.47792,1.820915,0.7340311111111111,0.7340311111111111,0.7340311111111111,0.7340311111111111,1.4743461111111111,3.7690449999999998,3.7690449999999998,1.73184,7.08774,3.481765,4.193025,2.9730399999999997,2.663675,4.665255,3.944405,4.948495,5.22185,1.6868975,3.936395,3.71201,2.595915,3.027655,3.405625,2.46269,4.031,1.726205,5.0403,1.621255,3.4791700000000008,2.933485,1.7709225,1.1815666666666667,2.760925,4.40737,1.1922000000000001,0.8240555555555555,3.64388,1.2505475,4.9261566666666665,4.37419,1.3613157142857144,3.56887,0.7543266666666667,2.6011933333333332,2.446473333333333,2.309813333333333,2.6315,4.01903,2.8805199999999997,4.90793,5.59785,4.336385,4.497755,2.094035,1.306442857142857,3.956745,5.0739,1.4038925,1.4038925,4.02387,0.26511066666666666,2.4191,0.26511066666666666,0.26511066666666666,0.26511066666666666,0.26511066666666666,5.3933,2.68999,3.057535,3.53618,3.1838200000000003,4.57838,2.6196699999999997,0.93252,0.93252,0.8605216666666666,0.8605216666666666,3.80851,1.70425,4.446835,1.5165610714285715,1.5165610714285715,5.1954,0.465135,2.628275,7.418025,4.65819,3.270295,3.431085,0.96536375,2.262485,2.0585725,4.652075,4.41002,4.2104,3.824435,1.2681228571428573,2.58705,1.963455,7.60836,1.72957,4.48425,4.818405,2.906795,3.88274,6.22233,7.86655,4.083435,4.623305,4.18421,2.44899,3.139935,2.30805,2.29143,1.81699,3.916705,3.618555,5.596385,6.30376,4.012575,1.06216,1.87412,3.833595,3.84304,2.1094375,4.429815,3.55675,4.689933333333333,1.7060166666666667,3.9247,1.6329566666666666,6.3551400000000005,2.7870633333333337,2.39404,2.3172133333333336,2.50077,3.12157,3.3226633333333333,3.2829833333333336,2.88353,3.417866666666667,1.969772,3.76785,3.095425,3.20149,0.3812875,2.879855,4.031275,2.68095,5.63995,4.93864,4.559665,6.8075209999999995,4.540885,2.1919933333333335,4.37798,5.161,1.6207183333333333,4.88555,5.41685,5.114,4.826855,3.16036,5.61045,5.0244,3.737605,5.347339333333333,7.675447500000001,4.048685,1.2146433333333333,1.4336133333333334,2.61001,1.9338259999999998,4.47072,4.01416,5.1374675,2.4708366666666666,2.4652933333333333,2.733836666666667,2.4543866666666667,2.3881033333333335,0.9607244444444445,0.5066005882352941,4.09814,4.05761,3.5736333333333334,4.10357,2.912375,3.3442666666666665,5.289033333333333,2.988,0.5704452941176471,2.984515,5.68225,1.9013075,1.619068,3.83629,3.210615,2.4870433333333333,3.844666666666667,3.912745,2.718593333333333,2.3039466666666666,2.4023933333333334,2.4233933333333333,2.669095,4.174178333333334,5.093633333333334,7.015857416666666,1.390554,4.642805,3.3315129166666666,5.062758916666667,2.5569,3.08919,2.37613,2.0846666666666667,1.421185,1.421185,2.6868533333333335,2.37632,2.7517,3.997725,1.678804,2.28705,1.838625,0.516765625,3.707625,0.6280291666666666,1.0246725,3.44398,4.325615,3.7639,1.67018,4.541375,3.04888,0.8163357142857143,4.410255,3.8805690476190473,3.2011633333333336,2.499955,5.0954,0.27778827586206895,2.1663215,3.17645,1.5051825,3.5991,6.8098,2.35005,1.36301,3.97865,3.87491,2.782413333333333,2.782413333333333,3.474555,2.89758,4.900305,5.4480933333333335,4.961815,0.9673599999999999,2.90724,2.4874266666666665,4.443435,5.2204,5.1307,4.92,4.3609333333333336,3.8356,3.7263,3.4890333333333334,4.139233333333333,3.0521733333333336,3.0444366666666665,0.6362557142857143,2.45925,2.481815,3.78071,3.18347,3.156826666666667,0.7392783333333334,2.851005,4.2139135,4.580285,5.7515,4.849975,1.9889225,1.9889225,0.815044,3.17222,4.440525,3.883985,4.417517142857143,3.40487,4.760805,0.5811045454545455,3.08116,3.7939,4.37121,3.8549125,0.8166728571428571,2.741105,4.018675,5.6748,3.84421,5.0488,2.704245,4.15869,1.4189,1.0018685714285716,2.7362699999999998,5.2972,4.15439,3.178775,1.4349166666666668,3.982635,2.54705,2.76385,2.8066180000000003,3.06781,4.554273333333334,3.042526666666667,1.7094919999999998,3.593666666666667,1.4795123809523811,2.968116666666667,2.57381,2.39119,2.8702533333333338,2.8051766666666667,2.2583066666666665,2.7308266666666667,3.498195,3.24288,3.408892333333333,2.415836666666667,1.80687,4.050538333333334,3.0651766666666664,2.40325,3.408892333333333,2.3186933333333335,0.7976890909090909,2.405465,0.9854777777777779,2.223085,1.497865,0.9155272727272727,1.765255,1.7746625,2.67324225,2.743175,4.674295,1.4134275,4.7031,3.17511,1.599962,2.4119433333333333,2.58391,1.6564633333333332,2.8201366666666665,2.7173866666666666,2.5259293181818183,1.9376075,1.783932,3.548666666666667,2.2587966666666666,2.9191916666666664,3.1715633333333333,3.1171733333333336,3.7387333333333337,2.024766666666667,4.1597333333333335,3.4303333333333335,3.774266666666667,2.8375866666666667,3.5361333333333334,3.7634333333333334,2.0228266666666666,10.1073,4.305845,4.389995,3.32173,2.762245,2.00645,4.02682,1.708614,4.017795,4.427515,1.357142,2.40338,1.11815,2.415833333333333,1.6686500000000002,2.4152366666666665,4.90343,3.0848333333333335,3.603055,5.0869,0.78146125,1.4692180000000001,0.979249,3.59497,10.617986666666667,3.5251333333333332,6.6741,1.982305,5.14455,4.43044,2.4926975,5.219,0.2898529411764706,0.8273171428571429,4.88033,4.35676,7.113115,1.928165,4.29194,5.96925,4.522075,4.673025,3.53429,4.52147,3.515145,5.817488333333333,3.689265,3.198495,3.13753,2.26659,1.9675799999999999,1.4197752291666668,2.4691,4.102445,4.861375,1.537406,9.14575,1.8422333333333334,2.9339933333333335,1.0628600000000001,1.0628600000000001,7.332672083333334,3.00387,2.1953825,2.180725,2.6105533333333333,2.1312466666666667,1.0651433333333333,3.548684166666667,2.6471766666666667,0.6208657142857142,1.7356766666666665,3.1991120000000004,3.1991120000000004,1.0943033333333334,2.570073333333333,2.3220733333333334,2.6979533333333334,1.3125225,1.7766133333333334,4.813118666666666,2.7219266666666666,2.7128,1.168075,1.168075,4.00647,5.6898,4.55198,3.42892,3.918965,6.27652,2.700385,2.936916666666667,2.84703,4.03145,1.1609516666666666,3.3815000000000004,2.561625,3.755625,2.1476533333333334,4.844725,3.55397,4.2594,3.671225,5.555022999999999,1.0045611111111112,2.0477525,1.96486,3.71928,4.46309,3.683655,4.06227,3.706745,2.61238,1.6676,4.192305,3.382075,3.371085,2.4184633333333334,0.84916625,3.38622,4.28236,4.824985,1.2137766666666667,2.953193333333333,2.5865266666666664,1.91638,1.7221829411764706,1.7221829411764706,1.13635,2.090943333333333,1.0833485714285715,1.379794,4.60692,4.357795,0.47872380952380955,3.47694,3.3584333333333336,3.99152,5.3842,0.4136115,8.89838,5.517,2.65626,3.97949,4.51857,5.507264285714285,4.9466,6.80645,0.685710909090909,2.80033,5.34685,2.8728933333333333,1.709855,1.99619,4.61777,5.1857225,2.4353889285714283,3.280913333333333,3.142633333333333,1.9773425,4.52651,10.84835,8.51320625,3.9657999999999998,4.463245,3.119205,3.05572,3.946165,1.89607,2.971626666666667,3.70485,5.0104,4.974325,5.12451,6.860633333333334,2.4326266666666667,3.87506,4.6364,4.584705,4.904575,7.568576666666667,4.1756,6.114,3.505135,3.07679,2.92979,5.93965,3.780415,5.13015,2.15039,3.1560133333333336,3.322525,6.1026,4.173145,4.213815,1.466768,0.90628375,2.438245,0.5729053333333333,3.81602,3.642885,3.4849,2.89135,2.1273833333333334,2.960275,2.552375,2.895646,1.80656,3.01574,2.85675,2.3340725,2.56285,3.7754639999999995,1.2946133333333334,2.7527983333333337,5.2227,3.7706999999999997,1.114435,2.7332466666666666,3.74418,3.7215619999999996,1.54445,5.65635,5.5259,2.1710533333333335,3.0264866666666665,30.3544705948447,3.3163300000000002,1.7137333333333336,4.007133333333333,1.54908,2.59754,2.8732233333333332,3.476233333333333,1.9929,2.7794,2.0234275,3.7110225000000003,3.5018333333333334,2.4456625,1.491985,2.2473199999999998,2.880775,0.3827681818181818,1.1501725,2.8280766666666666,1.688724,3.45767,1.54445,2.111083333333333,25.398883444444447,5.2916,3.93763,3.60718,2.358015,2.41941,2.68735,2.32855,3.496915,5.235609,5.31445,1.564654,1.8227879999999999,2.08709,2.3685650000000003,3.769210833333333,5.2794,4.637735,4.43637,0.18569978723404257,4.937005,4.680831666666666,3.80121,8.87574,1.060685,1.060685,2.96951,3.0191,5.53155,1.93682,1.037721111111111,4.56242,1.8776775,4.046525,4.135395,3.32498,4.129595,3.95536,5.04245,2.852815,0.7138422222222222,3.17002,2.2334066666666668,4.28224,7.687785,4.255385,1.73632,1.73632,6.905107500000001,4.69616,4.173895,5.77315,2.0399066666666665,5.248059166666667,1.3657933333333334,1.6628633333333334,2.99661,1.9896900000000002,2.852655,2.74395,3.824385,4.4457125,4.106825,5.45795,2.3689175,2.702125,1.85654,2.7641,2.4538525,2.06222,2.086355,4.818514166666667,1.8378725,3.451267619047619,2.40821,3.1992133333333332,2.61473,1.8554766666666669,1.4377,0.936638,2.5602133333333335,3.8399,0.720853,4.524775,1.751915,5.78591125,1.9479425,1.53274,1.50587,1.4865466666666667,5.598626666666666,1.9087260000000001,3.094863333333333,3.668066666666667,1.2766625,1.7472625,4.833725333333334,3.21998,2.00467,3.5158,2.818656666666667,2.9522033333333333,1.2744298214285714,0.25932499999999997,0.25932499999999997,0.25932499999999997,0.25932499999999997,0.25932499999999997,3.991835,2.62922,2.452065,3.454266666666667,1.3486016666666665,2.65305,3.105643333333333,2.3546766666666668,3.50136,3.04709,1.6492866666666668,2.913653333333333,3.1229333333333336,2.16204,1.9947725,3.70741,2.7296,3.7093666666666665,4.96629,2.6530366666666665,2.65965,2.531363333333333,10.905438333333333,4.91206,4.48732,4.977395,4.381005,2.856176666666667,5.0914,4.129495,4.12549,5.370253333333334,3.983795,2.85133,2.2709275,3.32717,4.984033999999999,3.50519,16.792078714285715,1.116385,4.2788,0.8579411111111112,1.2549375,2.864825,4.688135,4.124145,4.326675,1.632625,2.3671825,4.24341,2.0827633333333333,4.441225,3.2716010714285715,2.67127,0.645565,2.820766666666667,4.682565,2.45034,2.3100975,2.2224975,20.191234166666668,1.348728,1.3679625,2.6898466666666665,0.2875507692307692,1.78263,2.8173933333333334,1.9669066666666666,3.0213566666666662,2.735625,7.631743333333333,1.90204,2.527275,2.2012025,2.07652,1.5984866666666668,3.4083,3.165025,4.020385,3.2756833333333333,1.9332325,2.633394166666667,3.1502213888888893,4.96352,0.4196216666666666,3.7392333333333334,3.0237700000000003,3.07622,2.08453,3.60671,3.57281,1.50559,2.3384199999999997,2.16191,1.4901333333333333,1.8247,3.493625,3.28844,0.7704483333333334,3.34371,4.92921,4.100955,2.285586,2.285586,2.8685533333333333,4.323955,3.16844,3.361035,2.3165,0.8952109090909091,4.550635,3.61198,6.23045,3.794485,2.369634,2.369634,1.245095,3.247515,5.08445,4.24802,4.194125,3.0051733333333335,2.272953333333333,4.42075,3.475645,4.12049,2.909753333333333,2.8272633333333332,4.2708173333333335,3.1923166666666667,2.6746700000000003,1.9219866666666665,3.494505,2.64105,1.6392233333333335,3.7227,3.38701,4.362915,3.6603,4.660235,4.36473,6.43513475,3.97866,2.1239999999999997,4.73146,2.92501,7.317995,2.5216966666666667,1.3154183333333334,4.260755,3.661,4.843565,0.4954328571428572,0.8727666666666667,3.57863,3.59955,2.1078168181818184,4.21699,2.901125,2.97937,9.1967,1.9279199999999999,1.195022,3.67354,2.72178,3.45435,4.597595,6.339891666666667,3.126231666666667,2.1230433333333334,2.9775833333333335,1.7693266666666665,3.3450333333333333,8.793519819376026,0.951709761904762,1.0315175,4.757275,0.439178,1.66106,2.201995,3.049575,3.06505,2.885375,4.352185,2.32594,13.34234,5.118270000000001,2.488135,2.488135,4.249065,0.8326250000000001,5.235463333333334,3.89715,4.119605,5.536498333333333,3.465315,4.747215,1.3538366666666668,2.801295,2.861075,2.65636,3.10777,2.791105,3.10587,3.602175,3.59071,3.132995,3.028315,4.393285,4.291995,4.622755,2.9852133333333337,3.3358666666666665,4.825426666666667,4.26601,18.01402392857143,11.935299404761906,3.2961992857142857,0.6883691666666666,1.4525714285714284,4.381175,3.590125,3.0333991666666664,1.919065,0.8332444444444445,0.6472783333333333,0.6473142857142857,2.0712825,1.6110119999999999,5.15285,3.362633333333333,0.7077436363636364,3.34568,2.32437,1.6583475,1.8065760000000002,6.591713333333333,1.529586,4.400595,2.92783,2.9338266666666666,2.18062,2.6238,2.5823199999999997,0.7872827272727272,2.629825,3.1284500000000004,3.9172200000000004,2.96415,4.714964999999999,3.653715,3.479645,2.43489,3.459725,6.625187499999999,2.1411175,2.4629375,2.550325,1.595425,2.547775,2.06308,2.6288,0.921026,1.3760475,1.02008,2.726835,4.197375,6.1249,5.5961,3.07324,2.267085,2.87385,3.406333333333333,7.525816666666667,1.1291933333333333,0.38322,3.233365,2.1667666666666667,1.454856,3.331792,1.209284,1.8247763333333333,3.938575,2.9269246666666664,1.216115,1.8754866666666665,3.944701666666666,3.646665,4.55933,4.02788,2.02715,5.0124,3.87432,0.7671961538461538,4.684995,4.020835,4.3421891666666665,3.27812,2.376825,1.333784,1.15443,3.595995,2.720955,3.32864,3.9754,2.688665,2.61819,3.29032,3.825935,4.45427,2.39977,2.709015,4.31214,5.73065,0.56221875,4.312965,1.8207175,3.53613,4.0841666666666665,1.979325,3.19339,2.1998925,1.97967,2.555305,2.2446083333333333,1.7163733333333333,4.55381,3.755585,1.2754628571428572,6.85724,1.0091400000000001,3.574335,1.6702933333333334,4.63675,4.0851,3.3239033333333334,3.15823,4.18399,8.33551,2.94245,3.560695,3.691145,3.68194,1.673885,7.91367,3.70672,3.946055,1.82424,4.25728,2.92923,1.06496125,2.07192,4.050255,2.179455,4.17263,4.86154,4.135025,4.51363,2.18695,5.00675,3.959495,3.3943,2.33775,1.596646,4.59345,6.21225,4.58625,4.57377,3.013455,2.1586075,3.965415,3.384485,1.158607857142857,4.18555,4.795099166666667,3.74163,2.798145,3.703875,0.4302428571428571,0.4302428571428571,4.782045,4.06,4.21353,2.20709,3.6358,5.83365,0.838519,4.128555,4.756635,4.67652,4.756275,4.953585,1.7942825,3.06738,2.1465175,4.375605,0.67625,4.00674,4.13155,2.693735,2.8576833333333336,4.263695,2.32317,3.283855,60.17807910606061,3.281485,2.5874200000000003,1.7035425,3.31258,3.943065,0.7920575,0.9833875,2.2104525,2.2104525,1.316754,3.261665,2.24546,3.7662009999999997,7.49041,2.8279666666666667,1.2656185714285715,1.3499549999999998,2.6850633333333334,3.9995683333333334,0.8936820000000001,1.87164,1.323174,1.88971,4.12437,4.358235,3.18003,20.78739174891775,3.83679,3.94731,3.3324,2.1740233333333334,2.945135,3.25906,2.550925,5.40495,1.481598,4.036,3.289669892857143,5.835758194444445,1.99338,2.68801,1.96464,4.663865,2.3907633333333336,2.220385,2.1097333333333332,3.5632949999999997,3.321345,3.558765,3.88227,4.38658,2.525575,2.561065,2.88573,2.76022,2.87221,2.22576,2.020585,3.50739,1.2024966666666665,3.704475,4.673195,2.66878,4.88871,4.85683,4.704658333333333,1.9657733333333332,2.450875,2.686645,2.83808,4.12575,3.18984,4.56199,0.7313457142857143,3.89747,2.951635,3.819895,2.3977175,1.7763839999999997,3.640686666666667,1.1949666666666667,2.7782,4.420055,1.112126,3.6864,3.5119,4.585475,6.5476575,2.06173,2.89997,2.6497699999999997,3.8841666666666668,2.933533333333333,2.629815333333333,3.28801,2.4335166666666668,2.4376533333333334,1.3661966666666665,2.1709225,2.1709225,1.9220133333333334,2.0887766666666665,1.7788733333333333,2.585026666666667,3.84663,5.58075,4.635995,1.660995,4.421015,3.761345,3.563145,4.208815,1.958785,1.96812,4.6592199999999995,1.9682,4.211496666666667,3.980055,3.561035,2.44441,3.6799156250000005,3.247945,3.02593,3.529055,0.14850877551020408,2.4361266666666666,7.66183,1.5539720000000001,3.446835,2.852065,1.00721,1.149975,1.90271,3.902885,2.87307,6.918695,3.6333,3.708895,3.124915,2.67106,3.389585,3.47519,4.00454,3.43799,2.8582366666666665,5.36875,4.062755,4.23451,2.5367166666666665,2.04178,3.461385,4.468595,2.721775,2.92429,2.14708,2.56859,3.93421,3.761685,2.71256,4.436425,5.3281,2.75356,4.45516,3.96815,3.615715,4.543055,3.51028,3.24482,5.3671,4.709795,5.30055,5.1124,4.307705,5.3446075,4.279265,3.838605,1.312782,6.6653,2.39747,4.4043,4.188875,4.006895,3.1064399999999996,1.9756766666666667,2.3037033333333334,2.4523766666666664,1.0179,3.3795333333333333,3.699066666666667,3.144743333333333,2.105516666666667,3.793115,4.285345,2.54179,0.5432400000000001,4.54906,4.562275,5.1278,4.610185,3.72293,4.64682,5.09505,4.857735,1.4122999999999999,0.9378,2.7372333333333336,4.946315,5.80145,0.492750625,2.815245,2.5115866666666666,3.249425,4.549785,3.8083666666666667,2.0499125,5.64135,3.624795,4.57827,3.066225,6.29965,5.1098,6.9429775,0.5421575,4.04513,0.838664,2.331415,4.1457,3.2864166666666663,1.25973,2.2471,4.2762,3.574125,4.345475,1.89602,2.0596125,3.421425,4.558305,4.329515,3.76138,1.6621479999999997,1.1751037142857141,6.0758,2.3025075,7.7001875,4.46185,3.637185,2.260245,1.5804825,4.26644,4.60532,1.7924433333333332,2.47101,2.521125,2.4361266666666666,6.698659166666667,3.090915,2.8032566666666665,3.9556325,4.011125,2.0725966666666666,3.25632,6.9189475,4.17656,5.2878,0.5207772727272727,3.27008,4.13329,4.861222857142857,3.913705,4.272995,2.9584,2.760995,3.355245,2.85598,3.6146991666666666,1.941122,5.473307,4.682595,5.14585,4.00331,3.430285,3.2622466666666665,2.291425,1.3153275,0.92342,2.768465,2.391025,1.07989,2.66959,5.18485,4.918155,3.795515,4.11058,16.47332952380952,3.94857,4.4946,3.836765,0.7178141666666668,5.12635,4.634845,3.919395,4.8956,5.1801,2.930655,3.61033,3.32778,1.4732239999999999,3.0857,4.877115,3.3917333333333333,1.511394,3.652775,4.8343,3.929475,4.990835,4.794065,5.50355,3.85773,2.61462,4.13155,4.232215,2.552255,3.0283933333333333,3.0402466666666665,1.60252125,5.00065,2.7148842857142856,2.0385766666666667,4.008205,2.295045,4.24854,4.050538333333334,2.169295,2.81553,4.260825,3.71487,4.309925,4.466165,4.864635,4.894455,3.116665,5.29755,2.7304483333333334,3.8158,3.31055,1.53782,4.32847,1.030805,4.40195,3.02048,0.9368985714285715,3.71923,2.05618,6.433635000000001,2.4734005238095236,2.4734005238095236,2.4734005238095236,0.7099000000000001,1.1511216666666666,1.813595,3.37572,5.45619,3.426753888888889,1.88716,2.0861175,1.7449633333333334,3.795835,2.39869,0.4413469230769231,1.67203,2.1291375,2.8636,1.86322,2.583965,2.276985,2.07622,3.86997,3.018406666666667,4.2986,2.860655,1.925215,6.507,2.040395,4.32505,3.87009,6.555138333333334,1.6364633333333334,3.59808,3.81331,3.704085,4.11138,2.7032,1.9778275,3.92727,5.895662333333333,2.0351,3.53198,3.097325,1.9712575,4.83253,4.128045,2.6150166666666665,2.1879,3.6041225,5.757553571428572,6.03805,3.13943,2.39908,2.766365,3.162105,2.77857,3.99862,1.37193,2.840195,4.66842,0.7713825,3.443225,3.884195,3.7402,3.12021,2.40374,3.331205,2.064945,4.594665,8.143663333333333,4.43132,3.41063,3.20209,1.00298625,4.536405,2.38662,4.21713,5.5452325,4.015235,4.041855,11.394680000000001,4.716515,4.025605,1.529925,0.6902833333333334,2.772605,3.89212,3.44012,3.63182,2.115693333333333,2.5592266666666665,2.118106666666667,1.12712,1.12712,2.0007766666666664,2.37902,1.88859,2.2594966666666667,2.7460066666666667,3.5985333333333336,2.3942566666666667,2.8555733333333335,1.4313666666666667,2.2400866666666666,2.1422966666666667,2.0202066666666667,1.5124825,2.5025,0.6401533333333334,9.702720000000001,0.6401533333333334,3.26281,2.023511666666667,1.8858433333333335,4.220765,4.26011,3.741065,4.25865,2.1789866666666664,2.9674866666666664,3.234056,2.07236,3.2646266666666666,3.0092266666666667,2.5221966666666664,2.7859433333333334,1.6917933333333333,5.53015,6.1687223809523815,3.2156000000000002,3.429133333333333,3.2055166666666666,2.5813099999999998,2.6810766666666663,1.11024,3.5705333333333336,3.626633333333333,4.036055,6.11605,4.298525,2.80618,3.5705333333333336,3.0008866666666667,4.219467777777778,4.31508,2.6062333333333334,3.657565,3.25695,3.102176666666667,4.766875,3.1846566666666667,3.86274,6.0664050000000005,2.16489,2.5731033333333335,1.6021733333333332,1.42175,5.101570000000001,3.5533316666666668,2.5155600000000002,2.13502,1.93056,4.45103,3.73849,2.71076,3.4127333333333336,3.31943,3.5076,3.5402,3.5419,3.2087800000000004,0.56092375,3.7866999999999997,2.6453966666666666,2.7003633333333332,3.48547,4.51931,4.448455,4.920905,2.64228,4.139141666666666,1.1589866666666666,2.951916666666667,2.951916666666667,5.50075,3.09027,3.82069,3.92623,1.5976,3.32762,3.69132,1.1509214285714287,3.9143545,3.0712703333333335,2.192950333333333,0.348627,4.279215,3.12958,6.59471,3.42767,6.22495,3.410445,3.84489,4.032805,1.6811470833333333,3.17398,3.957875,3.435295,3.4357333333333333,2.92529,5.616524999999999,2.138175,0.99192625,1.9276600000000002,1.68422,5.55198,2.30789,2.446493333333333,1.784265,4.3641,3.941495,3.823745,0.607554,4.326765,3.854415,2.8249933333333335,2.8213666666666666,3.0441266666666666,3.267812777777778,4.2596533333333335,1.91145,0.6637473684210526,0.8174928571428571,3.5851666666666664,4.30272,6.302725000000001,4.808205,4.80604,5.546,1.4248171428571428,4.0841666666666665,2.20405,1.02058125,5.2153,6.0853,3.200885,4.878805,3.996505,6.569668333333334,4.0842,6.331148333333333,3.69707,2.5072775,5.88525,10.05683241025641,2.4110766666666668,0.688795,3.180835,4.260805,2.231605,6.27155,3.980635,4.4108,2.7101466666666667,2.7101466666666667,5.75235,3.42355,4.007875,5.1428,3.7330850952380956,2.354876857142857,1.179435,4.984645,2.66268,5.2737675,3.65896,4.492735,2.661405,2.14028,4.56763,4.85229,3.5271333333333335,4.058505,4.452585,27.65743880952381,1.8680475,2.63515,2.3393675,1.6286633333333331,2.54833,1.103657142857143,2.862636666666667,3.0119000000000002,3.4370999999999996,3.22392,0.6248923076923076,3.14921,3.90338,2.93459,3.2434999999999996,3.72,5.68844,4.687205,3.942135,3.61306,3.8007508333333333,3.89259,3.5693333333333332,1.6877325,1.0029333333333332,1.4807233333333334,2.2259033333333336,1.4921866666666668,2.9354,2.4548433333333333,2.43257,2.1639500000000003,2.70554,2.010655,1.8149266666666666,2.83204,4.231055,3.644445,4.03505,1.335612,3.572433333333333,2.4842233333333334,3.70873,2.18555,2.69896,2.40197,1.4302599999999999,4.27212,6.561623333333333,2.739465,3.63467,4.076445,2.615775,3.326389166666667,3.3695,3.55119,4.624845,0.30652343629343637,0.30652343629343637,5.0657,5.2155,3.05628,3.020715,5.3735,4.485275,0.6392946153846153,4.93559,4.44037,3.66138,6.4492,4.590255,7.26748,14.086658333333334,12.688769102564102,4.348525,4.3003,2.5291200000000003,0.6026707692307692,2.5822433333333334,4.441715,1.3300133333333333,4.721875,3.5916,2.8515800000000002,2.1217333333333332,1.9562166666666665,4.89946,5.0323,8.929879404761905,5.0235,4.04156,7.276716931818182,3.38133,3.2576066666666663,1.4229575,5.443255,1.933055,2.4240166666666667,2.744236666666667,0.26538375,2.957235,3.46379,4.5530225,0.841926,1.2011433333333332,3.957235,0.5682750000000001,0.5682750000000001,3.0388183333333334,3.446633333333333,3.341666666666667,3.831085,4.237735,5.55285,3.796435,4.169155,2.864985,3.07794,2.591623333333333,0.9401083333333333,2.888306666666667,3.00274,3.17957,7.10031,2.80222,9.6206,3.11015,6.7436,3.18074,2.3141525,2.518675,2.81265,1.8584125,2.4086875,2.1217575,3.432375,2.39064,3.9211074999999997,2.852815,4.047671666666666,4.047671666666666,2.767975,2.767975,8.879058333333333,2.5835066666666666,0.8148,2.59723,2.4816233333333333,2.555356666666667,3.9211074999999997,1.956974,1.950534,1.553072,4.551465,3.92965,1.711635,4.38259,4.04747,5.766182777777777,6.69328,2.30287,4.207305,6.2332,3.90999,2.97662,2.2316,3.46992,3.37324393939394,4.198305,5.336211666666667,7.371258,3.66675,2.962745,1.15866,4.32602,3.6370926666666668,3.719665,3.7831625000000004,4.380755,2.329925,2.5281166666666666,6.30589,2.98356,1.389402,5.41375,3.758985,2.72967,5.15635,2.72967,2.743115,3.711525,5.12975,1.0324285714285715,4.061742222222223,4.707855,3.43304,1.324645,1.68096,3.984765,3.89161,2.471175,6.385365,3.97855,3.853825,4.12859,4.441955,1.4180025,3.905775,2.51546,3.63545,4.031505,3.73094,4.865845,3.083545,3.92336,4.869915,2.012966,1.86453,3.2537766666666665,3.7031666666666667,3.5337666666666667,2.84408,3.5659666666666667,3.1370799999999996,5.59355,3.377195,3.584135,2.899505,1.9107466666666666,3.6135333333333333,2.1265666666666667,3.08603,3.18782,2.85299,0.67625,2.1113725,1.7756733333333334,3.306405,1.8065200000000001,3.4878270000000002,4.097745,1.235032,3.0199425,4.617235,0.88214,1.3123033333333334,3.39602,3.893595,3.715845,1.9729,1.7016033333333331,3.58392,2.513961666666667,1.7039533333333334,2.859925,1.863395,1.1721840000000001,1.35683,6.451575,3.365255,2.241715,2.44331,2.3760025,3.74827,0.8814125,0.3401078571428572,0.7831914285714285,5.06465,1.8820037142857142,4.56084,2.0933925,1.9355584285714287,3.2169230000000004,1.2813645714285715,1.0797724285714285,0.729086,0.5868985714285715,2.876005,6.46415,2.95376,3.438605,0.3445628571428571,3.540135,17.95197419047619,3.224545,7.112181703379953,1.06622875,1.06622875,1.06622875,1.06622875,5.882298333333333,4.064675,4.552765,2.19668,3.087155,4.7125,5.5618,4.01145,3.50055,4.155065,3.953735,3.914745,3.7840473333333335,4.03051,4.953485,3.912325,4.71698,3.61023,4.19059,2.57675,3.50106,3.422755,3.91736,3.801715,4.39741,3.11158,2.509825,2.467033333333333,4.06143,1.2587992857142858,3.808805,2.47253,3.3222120000000004,4.135025,4.490635,3.08384,2.87834,4.449315,3.10273,3.23165,5.39875,4.79848,3.261375,3.51137,1.721452,1.721452,1.967735,4.618775,3.95794,5.5181260000000005,5.14875,3.5887,6.522,4.82891,2.1371375,9.2651,5.46955,6.6101975,4.41548,2.79983,3.20928,0.2629337931034483,0.87404375,4.215165333333333,3.57355,4.683455,2.9933633333333334,5.679308333333333,4.85985,0.5708792857142857,2.753395,0.440531,1.734939523809524,3.463685,2.237855,3.814645,3.86991,3.264015,3.458825,3.43341,3.72188,3.509045,3.678415,3.81972,2.19523,1.734939523809524,2.816935,2.0700775,3.884955,2.282945,3.89639,3.592745,1.673885,4.4385,2.78599,1.2832266666666667,5.1241,4.61904,4.236295,2.7096400000000003,2.9492999999999996,4.16915,2.0315833333333333,1.413408,2.51756,2.5434666666666668,2.63598,2.06011,4.82299,3.303515,4.9647925,3.879511428571429,4.81533,4.162455,1.601052,5.24855,4.42465,5.52035,4.17644,6.80603,1.9804475,4.775285,3.777915,3.184525,1.7440325,1.75643,3.819075,4.34761,2.5045266666666666,2.77074375,3.4349475,3.4349475,2.769413333333333,3.1689433333333334,3.40973,3.962565,3.725995,0.7650069230769231,3.209295,4.4763,5.054353333333333,2.78656,3.060695,1.7847775,2.8444,3.442485,2.23052,4.67069,3.070095,4.848765,1.9453500000000001,1.0120363636363636,6.34836,3.734585,3.4911,3.160433333333333,1.7262080000000002,30.071091523809525,3.925475,3.39852,5.61825,4.29509,0.8519583333333333,7.208565,1.94145,5.68705,1.4762133333333332,4.234015,5.219925,3.71697,3.235785,2.3244475,3.5052,4.91675,2.0694375,2.7276000000000002,3.753965,2.4347,2.65764,6.2466,2.288265,6.2294,1.15664625,4.382885,3.598215,3.91187,5.15145,2.98662,2.4843699999999997,4.116115,4.488415,3.7698975,3.7698975,5.9134,1.5711575,4.3041,6.84372,3.481545,4.025485,3.17733,5.2739,3.62764,4.18467,1.40205,2.297905,4.349925,4.308605,5.29295,4.44785,2.77992,9.30181,3.08736,3.69562,1.715,3.62464,2.2984633333333333,2.71567,2.1102333333333334,1.3190433333333333,2.5529433333333333,0.9154014285714285,1.1321128571428571,1.1321128571428571,1.1321128571428571,1.8342133333333335,0.54407,3.88125,1.2189466666666666,2.36916,0.9758066666666667,1.7256366666666667,2.66159,2.126446666666667,0.74923875,1.6955633333333333,1.47398,2.3542533333333333,1.657924,1.657924,1.7056433333333334,1.9818766666666667,0.970698,1.8880733333333335,1.7290366666666666,1.1623166666666667,2.22506,1.944025,5.74705,1.984705,5.6775,17.527672083333336,6.64237,3.327825,3.683861666666667,3.4523333333333333,2.7011633333333336,2.6691800000000003,2.955856666666667,0.7343141666666666,0.9877549999999999,0.9877549999999999,0.6634875,2.3729033333333334,3.57917,3.272805,1.523492,5.0462,3.933055,2.46522,3.91938,5.15675,3.82289,4.24045,3.5192666666666668,3.286485,3.490245,5.5925,3.1415366666666666,5.12035,0.515107,0.515107,2.3283,2.85911,4.75202,3.520705,3.871265,4.785725,7.583712,7.72971,3.69692,2.320615,4.316275,3.40982,2.5058333333333334,2.3356,3.702475,1.3288733333333334,3.742165,2.447645,1.6235025,3.580033333333333,3.55682,2.0184825,5.336211666666667,1.5812025,3.608366666666667,3.43577,1.1451185714285714,3.6902333333333335,2.8223000000000003,4.52112,1.15182,1.742175,2.26871,2.1109925,1.686905,2.5136,1.9564875,1.9379875,4.212965,4.610085,2.288305,1.801885,1.5084099999999998,3.6118,2.0257066666666668,2.76455,4.757115,7.2916,2.5738325,3.09018,3.469145,3.55903,2.42881,5.17115,4.14421,3.084385,1.37495,4.31708,2.25978,3.169233333333333,2.52733,3.435175,5.00275,5.68915,2.34071,2.7311099999999997,2.822286666666667,3.349933333333333,2.0244666666666666,1.541102,5.60075,3.4621999999999997,2.239584727272727,3.1729833333333333,3.0680533333333333,2.3573033333333333,3.3114933333333334,3.1817266666666666,3.5307666666666666,5.2102,4.290745,2.96142,4.810505,3.26451,2.310115,3.513785,3.825085,4.167685,6.1060300000000005,1.899032,3.86991,2.378535,2.56679,3.697565,0.55596625,2.311005,2.29575,3.29267,2.72188,2.22756,2.777025,0.6159779999999999,2.708906666666667,4.399905,2.49932,4.238075,2.3767533333333333,3.99047,1.9108675,4.479605,4.261815,2.04344,2.75133,6.920415,3.93811,4.55229,4.85671,6.950579659090909,4.39617,4.328735,2.15611,4.562885,2.88431,1.88453,1.929085,2.1876266666666666,1.0008314285714286,2.5726366666666665,2.36971,2.6038099999999997,3.3150099999999996,1.7820399999999998,3.18814,1.8941966666666668,4.24766,5.03124,1.02960125,1.7863766666666667,2.5209266666666665,2.8339700000000003,1.9833033333333334,1.0858866666666667,5.4662766666666665,2.12585,2.67036,2.682093333333333,2.4765133333333336,2.7050300000000003,3.122805,2.24889,2.756406666666667,2.1966266666666665,4.02414,3.3931,3.916485,3.011753333333333,2.99748,0.683453,1.8422166666666666,2.1278825,1.99658,2.5744766666666665,1.126005,2.7022,2.95971,3.97591,2.035816666666667,3.40712,3.246415,5.02985,3.244225,0.613175,2.07496,2.6055033333333335,3.3166966666666666,0.7573818181818183,2.7256633333333333,3.3676,3.5446333333333335,3.00956,3.3690758333333335,3.727475,3.7002666666666664,3.0633166666666667,2.0310875,5.62705,5.3478,5.15285,5.3187,5.63825,1.75617,3.451055,3.7997,3.4059333333333335,3.11098,2.7258,3.8552,3.4240999999999997,2.927756666666667,13.931365,4.38181,1.0712300000000001,2.6950833333333333,1.5057420000000001,3.323463333333333,3.2399233333333335,2.31338,5.613965,6.651103333333333,2.1998266666666666,0.826109,4.08015,3.3899333333333335,3.04187,4.7886,5.30815,5.6889,4.90714,3.499,1.925855,6.4183675000000004,1.15866,6.428895000000001,4.77364,2.42306,3.9925,7.267036666666667,5.8533,2.2034933333333333,1.488205,2.0180875,6.941165,1.54445,2.9732066666666666,2.5802449999999997,4.217035277777778,5.51535,4.31286,6.3295,3.640705,5.0179,3.753825,9.340250000000001,4.8675,5.9143,2.35284,2.647325,10.983694999999999,3.43408,2.46187,2.5076566666666666,1.5756633333333332,2.86045,3.1406066666666668,0.6962675,1.089132,1.086172857142857,3.29845,7.124113333333334,3.030575333333333,1.3390566666666668,4.87434,3.841905,0.58548,4.738075,4.267515,5.08225,3.45909,3.13723,2.6146066666666665,4.22994,9.905529999999999,1.8197225,3.8979299999999997,4.223065,4.33736,3.718045,0.8331333333333334,3.6349666666666667,4.0126,1.69845,2.4654433333333334,2.3271866666666665,2.5710266666666666,2.1239733333333333,2.16976,2.198225,5.931455,5.0681,3.6873,4.880811666666666,1.6323266666666667,2.3466525,5.04865,4.407785,4.555475,4.14833,4.579305,4.9083,1.721452,3.776355,7.671428333333333,1.2204283333333332,1.6069433333333334,2.4986,2.5330966666666668,2.7743800000000003,4.778549166666667,0.8174928571428571,2.39321,3.306125,6.11215,4.468355,2.2596133333333333,2.8804433333333335,2.0494225,0.53803125,2.2245575,2.876365,7.78036,4.320235,4.56832,0.868028,4.5703000000000005,9.24741775,10.528071666666666,3.2652,1.20780875,3.634865,3.52209,2.57611,5.360952666666666,4.784585,3.853255,2.0040175,3.8285666666666667,2.2295866666666666,2.52033,0.7735245454545455,0.3893686666666667,2.55492,3.32988,2.0848079999999998,3.41458,3.0932166666666667,3.661,5.34845,1.517718,2.9366,2.000585,2.000585,2.23688,3.156625,6.59105,2.69421,2.2986999999999997,3.361333333333333,3.4616000000000002,4.234765,4.56881,4.358,4.11741,4.09365,4.312085,7.08095,7.913153333333334,1.949395,2.282713333333333,2.884183333333333,0.8950999999999999,0.6812866666666667,3.96392,2.393375,5.1389,2.92022,2.990273333333333,1.835308,1.5040225,3.78887,4.362995,4.378565,1.9324666666666666,1.3783933333333334,2.65887,2.009576666666667,2.570186666666667,1.16463,1.16463,2.7184633333333337,4.775425,2.63923,3.155665,3.627355,2.060715,20.01573984848485,3.688985,5.3802924999999995,4.344245,4.21612,3.93826,3.69611,5.59315,6.2260475,0.8638016666666667,0.8638016666666667,0.8638016666666667,2.7221533333333334,1.7498714285714285,3.4346666666666668,4.374765,4.03134,3.20507,4.231455,4.617505,0.8039044444444445,2.0009166666666665,2.20766,5.9595175,3.3193675000000002,3.96873,4.98495,1.979325,2.0129466666666667,2.31622,0.51524125,0.802886,1.92651,2.05857,3.00064,13.494375,2.57083,5.25165,0.7485214285714286,9.59129,5.6298,3.801015,4.29695,2.74655,5.582,2.74655,2.771764,3.124655,3.820065,3.508205,4.020615,4.22243,3.41003,5.7111,6.60834,1.8133100000000002,2.288658,2.725525,26.661549745817247,1.440836,6.16665,3.729494,3.919725,4.232605,4.576835,2.775505,2.70919,2.31144,6.74805,7.10295,4.667605,4.666925,4.333575,1.8859925,2.02734,4.226535,0.3493630769230769,0.3493630769230769,0.3493630769230769,0.3493630769230769,4.16897,3.2496583333333335,0.9687199999999999,1.8836533333333334,1.1576444444444443,4.36382,2.4653033333333334,2.3304525,7.200423333333333,3.2066033333333333,0.17729655172413794,20.684008,4.734918333333333,1.78478,1.309956142857143,2.1459,1.9726400000000002,2.315125,4.53158,3.16662,3.47561,4.234645,2.174513333333333,7.4322775000000005,2.742395,2.00209,3.68369,5.9433,8.638983333333334,4.38102,0.30466829268292683,3.5671,3.911915,3.0264966666666666,2.018375,3.17433,1.6193183333333332,1.6193183333333332,4.108535,5.677362499999999,11.278843333333334,8.983325,0.6396555555555555,2.525,3.747815,3.163535,3.978035,3.456855,1.54354,1.54354,3.249915,4.05828,2.87932,3.732575,4.467845,5.28755,6.835685,2.18264,4.79562,4.247515,2.64136,2.9131133333333334,3.053623333333333,4.943465,4.345985,5.6093,4.296615,4.535215,3.881925,4.29374,4.22292,5.21065,2.688746666666667,3.1199999999999997,1.1237439999999999,4.419675,4.12829,3.769475,1.6851340000000001,1.9182566666666665,3.4975666666666663,2.8206966666666666,2.3998066666666666,4.45855,1.7453,2.15224,3.6777333333333337,3.5950333333333333,2.303996666666667,1.83472,4.0526333333333335,3.0713000000000004,4.1249,3.7538333333333336,2.1552933333333333,2.6074033333333335,1.9071633333333333,4.066245,3.1500233333333334,38.74700525,2.2135712727272727,2.2135712727272727,2.53763,2.73676,2.02785,1.8310966666666666,2.878816666666667,1.85391,0.8022461538461538,5.0438,6.629795,4.15255,4.07642,5.5554,1.8979333333333335,4.39195,1.7565300000000001,5.01415,4.85148,5.6718,4.1282,1.6877325,3.96405,4.65527,4.68584,4.897655,5.34005,4.01404,3.4356333333333335,2.8339266666666667,2.0191475,1.86823,4.54284,2.41278,3.8191075000000003,3.8191075000000003,2.2456133333333335,1.5722666666666667,2.07474,2.5845833333333332,2.3100066666666668,5.16074,2.7308566666666665,1.1777566666666666,1.1777566666666666,2.5293966666666665,1.9351,2.5398033333333334,2.63184,2.468663333333333,2.42237,2.1900066666666667,2.12926475,2.895351892857143,1.538895892857143,0.7660871428571429,62.16481491865079,2.646402,3.4949999999999997,2.336724,0.9319179999999999,3.7029026666666667,1.559708,1.559708,3.1213800000000003,2.9466466666666666,0.77280875,3.0669466666666665,5.5362366666666665,3.3194133333333333,2.414973333333333,2.8873766666666665,2.136413333333333,2.633262,0.29842,3.1424533333333335,0.781272,2.5449533333333334,1.140094,1.140094,3.09817,1.9779579999999999,2.8848566666666664,1.7431606666666666,3.5625,1.7431606666666666,2.15435,2.62615,3.0516733333333335,1.320242,1.320242,3.0892033333333333,1.46193,3.3366666666666664,2.1493800000000003,4.28107,3.435505,12.306248333333333,6.990605,3.10718,2.609725,3.84753,5.1663,5.39465,2.7096283333333333,4.02796,3.643495,2.267,4.01675,3.2324933333333337,2.7699166666666666,4.96594,2.21635,1.0674685714285714,3.7388616666666663,2.8309466666666663,2.956715,0.7805385714285714,2.71336,3.46529,4.097,4.303475,6.5962,2.0827633333333333,1.88016,4.16214,4.369665,2.3475025,2.64533,1.9440799999999998,2.161874666666667,0.894118,5.10295,4.444185,3.66285,4.1091,3.0940433333333335,5.08695,5.1743,2.791066666666667,1.7412,0.5085446666666666,13.9371275,0.5092663636363637,0.5092663636363637,0.5092663636363637,3.0848766666666667,3.8429,0.5092663636363637,6.858793333333334,4.222713333333333,0.723177,0.723177,3.5071,3.1965,2.73806,4.19891,4.827035,4.149826,2.1477174999999997,4.845338666666667,3.489945,3.5234288690476188,4.65427,2.95206575,2.524075,2.369585,2.762525,1.62244,3.3456683333333332,3.0053066666666663,2.2964575,2.1076725,1.923845,1.8263333333333334,1.6480275,2.68115,1.095981111111111,2.4332925,0.60548,5.08325,1.71549,0.6764433333333333,2.0515675,7.861401666666667,2.66434,2.014342,3.2576549999999997,7.31607,2.50867,4.491835,3.0113,5.89314,3.5427,3.671935,4.03695,4.12149,3.02711,4.243458333333333,1.12762,4.19737,2.4557033333333336,2.4915266666666667,2.407845,2.2972,2.14024,1.24471375,5.6572,0.9155272727272727,5.05725,5.45135,5.23335,5.354,3.7754,2.50132,1.9353500000000001,2.9166566666666665,3.04017,2.51409,3.714366666666667,2.714525,4.63815,1.752542,40.389564444444446,4.774895,2.3908666666666667,2.57648,2.900463333333333,1.6775466666666665,6.165641666666668,4.13562,2.353146666666667,3.480566666666667,2.2995433333333333,1.6158,5.20495,0.7784214285714286,4.307142142857143,1.2937614285714287,3.4433333333333334,3.4263333333333335,2.9376433333333334,1.4147875,4.782821333333334,1.7256879999999999,1.7256879999999999,2.4481333333333333,2.90119375,3.4347,3.4991,1.4009366666666667,2.8953333333333333,2.705906666666667,6.435128499999999,2.921413333333333,3.6657583333333332,0.9923583333333333,1.4255133333333332,3.0307433333333336,0.90216,5.279368333333334,3.3548333333333336,2.8628433333333336,3.6837666666666666,2.90892,2.741873333333333,3.3456333333333332,1.7164533333333332,2.3760025,2.646916666666667,3.4675333333333334,2.44476,3.8343333333333334,2.3762666666666665,0.615112,9.739158974358975,2.81521,5.2833,5.03165,2.7746833333333334,3.0029233333333334,1.37218,2.22438,2.02137,1.37218,4.00002,0.47242875,0.47242875,1.1316825,1.1316825,0.87211,0.87211,2.41609,2.99222,2.42838,1.37185,1.9175,3.633305,3.095995,4.68112,5.31365,1.9496580000000001,4.27152,2.38124,4.7191591452991455,1.469825,1.469825,1.787625,1.728218,3.860265,2.05286,4.54193,1.632625,2.65805,0.5464969230769231,1.1958157142857144,2.0874275,2.32291,1.8917775,1.33118,4.40037,4.321,2.295316666666667,2.4832666666666667,1.3521,0.6920066666666668,2.3719066666666664,3.36705,2.762893333333333,4.606765,5.15125,5.2037,3.83504,6.69116,1.5570316666666668,5.89251,1.866735,4.63857,4.65676,5.752295999999999,3.4935333333333336,2.330435,1.7829975,1.93174,1.93174,2.430795,2.430795,4.321725,5.7994,0.9142699999999999,3.878555,3.38132,3.40861,2.7511733333333335,1.37915,2.814966666666667,4.228155,4.170935,1.698298,6.61305,5.1461,1.7835766666666668,1.3288375,3.93909,4.201020000000001,3.53915,3.536815,3.925455,0.6287507142857143,3.6012,3.1858233333333335,2.66175,2.80814,2.2885133333333334,3.5841666666666665,1.5309857142857144,1.5309857142857144,1.5309857142857144,2.991046666666667,3.01491,3.270573333333333,3.430075535714286,2.350665,1.187272857142857,3.2833900000000003,3.2217033333333336,1.4162985714285714,2.8413733333333333,2.70926,1.4173428571428572,2.7792333333333334,2.9429933333333334,2.9385100000000004,2.668813333333333,2.54101,1.9530425,3.2265366666666666,4.7770953333333335,4.04263,0.990804,1.491418,0.605251,3.7156333333333333,8.833905,3.033466666666667,3.43984,3.473933333333333,4.236036666666666,1.8974,7.645116666666666,6.727813333333333,2.690913333333333,2.3189251428571427,3.912615,4.788435,1.526648,1.257616,1.300474,2.15308,10.888066666666667,2.6065566666666666,3.046046666666667,2.983961,3.86873,2.1182966666666667,1.1844175,5.28785,1.0757416666666666,3.3315546153846154,4.94496,3.061105,3.3100066666666668,3.12106,4.99391,1.17632,2.1179425,1.9826293333333331,1.9826293333333331,3.816005,5.68965,8.404265,4.32333,3.448985,4.845495,1.7784625,2.3132458333333332,4.47653,3.83307,3.796955,1.518,2.879986666666667,3.495195,3.736535,2.4593825,3.920455,3.696625,3.85907,4.071395,3.849395,3.91916,5.45915,3.2162,2.4721699999999998,4.31861,3.056705,3.876335,1.96255,2.46404,2.670605,5.7112,2.50297,3.243129147727273,1.6905675,2.368225,3.355185,2.14713,2.0612275,0.8837833333333333,0.8837833333333333,1.79728,3.5563930303030307,3.991275,2.8991900000000004,4.59917,3.090133333333333,2.50892,0.97438375,2.69212,1.4426925,4.39367,4.12257,0.8955554166666667,1.8800775,3.9259,2.9755925,1.6365325,1.6035933333333334,5.082745714285714,1.0342083333333334,2.78925,3.25517,2.77038,2.419665,2.732797,2.03103,0.98921,2.882015,3.02533,3.36307,1.4163633333333332,1.4617333333333333,1.791235,4.495,2.16911,4.63407,4.61186,4.67085,6.1388,5.3026,4.11874,6.105575,4.149915714285714,0.8084954545454545,3.07629,4.322755,3.748525,0.47204999999999997,0.911228,3.048815,4.15358,4.805225,4.408595,3.3269675,2.661415,4.66375,1.7693059999999998,2.65375,4.514405,4.22119,3.284145,2.869825,3.701545,4.83027,2.86677,5.22546,0.9486190000000001,3.1227,2.71511,4.564095,4.34415,4.396515,2.1992599999999998,2.538505,2.7979,1.9255633333333335,5.1488,3.165285,1.4015014285714287,2.692215,3.9046424999999996,1.424658,6.089955,1.820666,2.55971,13.59956835537562,2.84041,1.50204,1.63889,2.10804,5.570978333333334,1.6621479999999997,4.172434666666667,0.6679215384615385,3.389666666666667,4.21738,7.484755,2.4519466666666667,2.86865,2.86865,4.73793,4.294775,3.420645,3.384895,4.84982,5.14015,2.424095,3.2779566666666664,4.86547,1.24096,2.674376666666667,4.57529,4.100105,3.49972,2.394136666666667,3.66243,3.538245,6.047026666666667,6.3065325,0.695894,4.04793,3.262305,3.8407999999999998,4.38157,3.843475,3.855765,1.441716,4.921355,2.33303,2.743115,4.16225,4.32848,4.36407,0.8732852857142857,2.811716666666667,9.433463333333332,1.5471766666666669,2.13396038961039,2.373205,3.913865,3.567065,3.25035,0.6623527272727272,2.3766425,1.703515,2.2277625,4.34097,5.29605,2.75863,9.150685,2.4094233333333333,2.7225300000000003,1.0655,4.47771,5.08075,2.095365,5.370253333333334,2.766845,3.175785,5.1522,4.444615,4.75132,2.07481,1.603815,1.603815,2.765025,3.19983,4.6832525,1.4200125,6.082174999999999,1.38809,3.847475,1.3109633333333333,8.750571833333334,4.984175,2.80719,4.324945,3.569945,3.79851,1.1628816666666666,2.015295,3.601433333333333,3.0176433333333335,3.350633333333333,3.6450333333333336,3.671315,2.82298,3.10873,3.35834,1.5058725,2.531363333333333,1.9145,2.9103600000000003,2.012446666666667,5.215629166666667,3.2465533333333334,1.7571866666666667,2.8029533333333334,3.290065,3.18071,6.5033,6.1641,2.936545,3.554405,2.969915,3.066,2.84985,1.2007233333333334,0.9988060000000001,6.554455000000001,3.03457,6.13025,4.477755,6.5978,2.889455,2.76345,6.65985,2.417945,0.41530055555555556,5.6456,2.821205,3.778525,3.4004333333333334,1.4315,4.053525,1.061302,4.560065,0.90020625,1.4189299999999998,2.7991766666666664,2.37945,2.7220814285714288,3.642295,4.96206,6.177983333333334,6.177983333333334,5.454000000000001,5.454000000000001,4.64624,2.9873766666666666,4.418155,0.98358875,5.9008,3.66301,3.691966666666667,4.022705,3.76358,4.59534,1.91933,4.91535,3.257034,2.86182,4.20738,2.63057,4.73873,5.18085,3.61806,3.325235,5.0285,3.723,5.89285,2.852685,2.5410733333333333,6.0362,4.202255,2.882146666666667,6.200703333333333,1.63975,2.08409,4.737005,4.26754,5.0591,3.891425,1.9879285,1.9879285,13.180444253968254,12.8349,5.0717,3.108515,2.9432766666666668,4.571095,4.659235,2.6559466666666665,3.2620833333333334,3.132205,4.124266666666666,3.6871333333333336,4.92901,1.92727,8.487639999999999,2.468575,2.045485,5.8869,2.35809,5.077,4.282645,4.600685,0.7578333333333334,3.318205,3.600685,0.8798920000000001,2.906935,3.6020208333333334,1.45498,1.95235,2.822853333333333,2.65408,2.329613333333333,3.1779266666666666,2.3074333333333334,0.4715728571428572,2.5192366666666666,2.73103,2.7987800000000003,3.2197033333333334,1.500896,3.01115,7.12153,4.407155,2.2811533333333336,2.036426666666667,2.5739300000000003,3.648025,2.51262,3.5921415000000003,18.922195000000002,5.5224,3.460983,4.417085,3.81473,5.559555,1.73824,5.90865,1.57254,4.5668,4.54568,5.4026,4.9063,0.9529600526315789,6.6607,2.37618,4.937395,2.76257,4.285805,3.721085,2.713395,2.14274,1.554014,1.8715925,4.429195,4.6343,2.11556,1.812205,3.159103333333333,3.9926683333333335,3.1125333333333334,6.3248,1.9492175,3.41503,4.56513,4.1137,4.175915,2.91347,4.108585,4.92833,4.016705,2.74893,2.74893,5.6266227777777775,2.0167533333333334,2.664756666666667,3.87112,1.7675699999999999,7.391685,3.748585,4.490366666666667,4.390233333333334,4.249185,1.8163340000000001,4.240045,5.5995,3.689435,1.999415,3.44503,3.37452,1.112365,1.3621325,1.2769766666666666,0.6747716666666667,1.6358666666666668,0.9316433333333333,4.633765,0.9438855555555556,2.4949966666666668,1.6810466666666668,1.7597775,1.0447333333333333,1.9196925,2.2152775,1.60882,3.02904,2.63922,4.6526000000000005,1.5304200000000001,2.5765,3.184003333333333,2.9975,2.2898433333333332,4.498330833333334,4.547145,4.8867925,19.479849,2.5075,2.17082,0.6475907692307692,0.6237280000000001,4.20836,1.974456,4.035565,5.4184,6.668074833333334,3.61552,3.573195,4.05612,3.3457000000000003,3.3093566666666665,3.08656,3.9471000000000003,3.3262366666666665,6.5942,3.55932,0.946186,1.10893625,5.4552,3.0033499999999997,2.605766666666667,2.196963333333333,2.2505633333333335,5.5456,4.84719,2.4291625,1.1359033333333333,3.17965,4.90796,8.513946666666667,5.014768958333333,4.23478,3.950365,5.3966,4.73111,4.354,4.919015,3.87143,5.3447,1.728,5.79765,1.6051428571428572,5.21,0.7433066666666667,5.08495,5.52465,6.23445,6.2055,4.78092,5.68105,5.8174,6.405682499999999,1.9742499999999998,1.5485428571428572,5.6556,3.43354,6.462246666666667,5.06445,5.449325,5.002,6.252,1.3613157142857144,4.369855,5.3176,4.2073,4.76095,5.632,2.7565,3.988385,3.16976,4.56886,0.995575,1.5289533333333332,1.401966,4.881695,4.13723,3.27606,1.88077,2.9922966666666664,1.67663,2.2064033333333333,0.3962733333333333,3.5818999999999996,1.6507619999999998,2.3207,2.9154699999999996,2.3814366666666666,3.1665266666666665,2.621525,2.480455,10.206986,3.976566666666667,1.8131634615384615,3.552455,0.9243727272727273,4.46552625,1.09988,1.756515,1.8709575,1.0511325,5.687266,1.1627830555555554,1.1627830555555554,1.1627830555555554,2.8476766666666666,1.886702,4.86856,3.140675,1.407795,1.5480625,2.319335,1.361375,2.13886,5.4264425,0.84727,4.259875,4.198105,3.09506,0.9871942857142857,2.158846,1.986395,1.986395,1.4996133333333335,3.5819925,4.57912,5.0623,5.5566,4.280455,5.40435,2.90475,2.0303525,2.868725,5.1149,3.12835,4.11238,1.014645,3.9285358333333336,5.4037,1.91686,4.2663,3.1508933333333338,4.671355,4.762765,2.85099,6.99755,6.36515,3.9093,4.510295,4.228435,3.232135,8.05842,4.04811,5.798078333333333,3.34027,2.708766666666667,5.34895,2.58115,5.8605,4.4807,2.6766400000000004,3.313895,3.84958,1.3361266666666667,10.5498925,4.13393,3.06184,15.323923095238097,4.43087,1.7577133333333332,2.8550133333333334,2.01474,2.459465,3.263835,2.6756183333333334,2.9461,2.70525,3.055635,4.19278,6.405305,1.3019233333333333,2.0174825,4.26445,4.40945,4.868045,2.31296,0.5669706666666666,4.620485,4.259695,2.0941825,1.280955,4.586675,4.54952,0.9168777777777777,3.769165,12.549650833333333,1.2997035714285716,0.40111357142857146,3.5449,4.672725,1.0488444444444445,3.690535,4.090165,6.405578333333334,1.2955783333333333,3.303195,4.018205,3.36986,4.422495,4.494285,4.337185,8.198165,3.13565,4.226855,5.83315,16.26009375,3.5621825,2.929125,1.1695875,2.27482,1.311835,2.0617475,1.2455725,2.04155,1.6894225,2.0116625,2.4001675,2.33169,2.141625,5.51625,4.410925,5.93955,3.134325,5.761713333333334,2.9254333333333338,5.069,3.430266666666667,1.23739375,3.742505,2.013815,2.7478160000000003,5.0144,4.847855,4.878295,4.28733,3.3504,3.7056,2.48232,3.808935,3.776935,2.22383,1.916245,3.5042666666666666,4.587965,2.907645,2.3680600000000003,12.359626666666667,0.7167866666666666,2.674015,4.91145,2.573475,1.07199,2.72169,7.347555,7.100053333333333,4.438365,4.126445,4.11819,2.09179,2.33217,2.847979666666667,2.050116666666667,3.8623450000000004,5.15375,4.138085,0.47344800000000004,6.24265,3.3179700000000003,3.4092000000000002,3.4713666666666665,6.23305,9.03609025,4.314709,1.01429125,2.162345,2.31859,3.68143,2.57053,4.11357,4.6017,3.630333333333333,2.73555,4.021475,4.258305,3.75533,4.3674333333333335,1.91775,3.785105,5.0659,5.71175,3.21997,1.834745,2.24756,29.77545878205128,1.4874975,1.4874975,2.227463333333333,4.6904753333333336,3.90919,4.60496,3.181785,3.03253,4.739465,3.0731566666666663,4.15433,3.0731566666666663,3.59296,1.8563633333333334,1.5645366666666665,6.0838,2.697675,4.77674,3.301145,2.658825,6.366581666666667,2.1120466666666666,4.647315,5.3191,3.665135,3.388655,4.94262,2.0575,4.82322,3.390715,7.50469,5.629720833333334,2.831125,3.9278,4.515185,2.08739,2.795996666666667,3.6572333333333336,0.41030214285714284,3.04312,9.95137,3.916885,3.589655,4.924235,3.3511491666666666,3.0514,1.31537,4.0516,5.4267,3.25761,2.42463,4.73187,3.79903,4.33856,4.399135,2.78335,2.78335,4.15244,2.866555,2.6157404545454543,2.16403,4.78789,4.0953,1.0192057142857143,3.578385,5.08335,2.9868633333333334,6.8888300000000005,7.8919,1.503582,4.266915,4.889165,7.034926,0.706614,7.64355,3.5480508333333334,0.6171918181818182,5.29475,5.24995,5.0305,4.255005,4.67404,4.27106,5.0229,3.851675,4.010655,4.3965,5.3664,4.73963,4.834695,3.9329,2.46827,4.09384,2.844765,0.931771,4.46593,2.396715,1.752495,4.400175,4.59555,5.7577,1.05579,4.901976666666666,2.9009,2.6951366666666665,1.8837825,1.2354433333333332,11.738199166666668,2.3573166666666667,2.8972166666666666,1.8974966666666668,3.7618395238095235,5.554836666666667,6.163408333333333,2.64035,1.9230966666666667,2.08284,2.08284,2.08284,1.37788,3.72467,3.891525,3.558285,4.61207,8.176485,4.01726,1.158838,2.249865,3.027735,2.73011,1.8306080000000002,4.08973,2.9486,1.3364500000000001,3.0620366666666663,5.281754285714285,5.7322925,3.98757,4.07571,3.1558733333333335,5.1766,4.50393,5.316043333333333,1.666,1.666,4.01679,3.79654,2.679281,2.679281,3.765775,1.176057142857143,4.8712,3.258865,4.18805,3.928565,4.07072,3.299656666666667,1.077402857142857,4.27676,5.2839,4.0657,4.86377,4.953645,4.893605,4.400705,1.9592825,1.444275,3.453355,3.751405,3.28284,4.449835,2.087715,2.9202950000000003,5.67705,2.91614,4.853125,7.380675,2.266789583333334,2.9657899999999997,4.388294761904762,5.102790833333334,1.65461,1.9927435714285715,0.936335,1.9927435714285715,1.9307933333333331,1.9307933333333331,1.57824,5.1969,3.17265,4.215395,2.46025,3.71139,1.48072,5.32925,3.11459,1.65183,2.9063866666666667,3.42566,3.85595,6.177744,4.638545,1.311642,0.8184083333333333,3.654565,7.667306666666667,2.4565766666666664,3.633565,3.64435,3.64435,2.33034,3.37581,3.14437,1.4033137662337662,3.1588433333333334,3.18836,3.043805,4.36599,3.910785,1.6468525,3.22734,4.49257,4.88816,5.02635,4.360465,1.8411175,2.047425,1.2760333333333334,2.3373325,3.316225,1.9246825,4.39309,3.32629,3.40509,4.210215,5.0386,2.27086,0.9610920000000001,1.7527533333333334,1.49709,1.1757,5.0251,4.00393,1.1237439999999999,0.2144021739130435,0.2144021739130435,0.2144021739130435,3.72539,5.5772916666666665,4.40148,5.2826,4.85659,5.41365,5.18185,4.44952,2.9214,3.63906,1.6869825,4.857645,4.071865,3.871445,4.17536,4.156525,0.7108663636363637,0.7108663636363637,0.7108663636363637,0.7108663636363637,1.0187599999999999,1.0187599999999999,4.0822,3.909085,3.79931,2.774015,2.62456,6.0868,4.987945,5.66365,4.385245,3.04571,2.5576233333333334,9.90007,1.583518,1.583518,4.147955,5.3732,3.3336333333333332,0.47242875,0.47242875,0.47242875,0.47242875,0.47242875,0.47242875,4.921786666666666,5.19505,3.63383,4.39854,2.7670316666666666,2.7670316666666666,2.77285,3.2286633333333334,2.51522,2.88342,3.39659,7.085267333333333,1.437914,4.56612,3.60698,3.858585,9.292193333333334,2.296046666666667,2.725875,0.9797028571428571,2.069225,5.30655,2.88295,0.9113925,2.8414900000000003,4.12326,5.55035,2.703725,4.7201975,0.8142033333333333,1.9585133333333333,4.856545,4.701525,2.904634,2.6586933333333334,2.2038100000000003,1.387075,7.21115,3.407166666666667,1.9894733333333334,3.240305,2.711725,3.536705,3.57709,2.6652400000000003,3.2402033333333335,5.962,1.4453683333333334,4.20799,5.1784,3.334005,3.98625,1.9455333333333333,2.985895,3.78087,3.630965,2.89309,4.86154,4.63115,2.7810366666666666,1.95441,2.8880033333333333,2.7990066666666666,2.8579333333333334,0.7848263636363636,2.1769575,8.1771075,0.454575,2.9153533333333335,1.5137366666666667,2.5498600000000002,3.4150666666666667,2.79834,1.287288888888889,1.75046,2.694596666666667,2.1591375,3.656705,2.05228,2.80288,1.4827833333333331,3.1234580000000003,1.9363975,1.1237985714285714,2.8836433333333336,2.152135,2.3020533333333333,2.6698566666666665,3.1758966666666666,3.24157,3.4244333333333334,3.212376666666667,2.8565733333333334,3.1805,2.6915833333333334,2.7657,1.6567566666666667,2.3684266666666667,2.5423733333333334,1.6687833333333335,3.1841733333333333,3.8532385714285713,2.904723333333333,2.5836433333333333,2.95588,3.585733333333333,4.664166666666667,3.0785466666666665,1.8333442857142854,1.8333442857142854,2.43381,1.1359725,2.511625,3.2916583333333334,4.518500833333333,2.82145,2.10254,2.1226175,2.063455,3.71038,2.986975,4.00106,3.7284,1.76791,2.37664,4.86729,1.209908,1.209908,2.32364,0.65628,2.65178,1.74774,1.74774,2.5451466666666667,2.4665966666666668,3.10922,2.6302849999999998,1.9466225,5.707506666666667,3.8760250000000003,3.8760250000000003,3.708905,3.176935,2.30818,2.96334,2.43456,2.87895,5.1413075,0.46857666666666664,0.681164,4.177155,2.33289,2.958525,6.456423333333333,3.612855,1.629588,5.052623333333333,4.6622,4.20534,4.3065,5.403,4.82865,13.95612,3.622685,1.5610466666666667,2.94414,3.829995,4.96097,2.9045,4.036945,4.333735,3.649295,3.73691,2.836323333333333,2.88819,2.6824166666666667,2.466693333333333,2.466693333333333,4.09742,2.93782,3.035695,3.403075,2.376205,2.589885,2.21089,1.9098175,1.9922875,2.0957275,1.6873575,3.498497,3.371715,2.6677,6.9202975,3.27283,2.28192,1.92356,3.360755,3.921315,3.58834,3.1094543750000003,3.45386,3.2072,4.308835,3.79278,3.88468,3.984805,3.3687500000000004,3.61459,0.6054533333333333,0.6054533333333333,0.6054533333333333,3.48784,2.258305,5.69855,2.34869,3.805555,7.0950983333333335,2.8365666666666667,0.3552346153846154,5.5811,0.770713,4.25692,1.84991,3.56809,1.986775,4.285825,5.441473333333333,4.45902,4.12675,2.7457433333333334,2.7945499999999996,1.5210016666666668,2.56473,0.3851226315789474,0.5385376470588235,2.63304,1.40144,1.9271125,3.904225,2.65225,4.80043,2.81611,3.0436066666666663,3.46333,5.42374,1.7765475,0.9256514285714286,2.276015,3.678294,1.2482005844155843,4.695095,3.97802,3.790835,2.7074533333333335,4.31492,2.58305,2.4986099999999998,2.43531,2.307415,2.512163333333333,2.1906125,3.1074066666666664,2.4330866666666666,5.4867,2.554725,2.05688,2.174706666666667,4.901597333333333,3.342332,3.342332,2.502193333333333,3.945375,2.34381,3.456635,2.913065,0.5613873333333333,4.306785,1.881615,11.651747777777778,6.75434,2.91822,3.3119,3.27204,5.00134,2.857095,3.41288,0.26511066666666666,1.908065,3.5365,0.8269475000000001,3.81543,1.2742542857142856,4.54654,3.39167,2.97403,3.644425,3.490275,2.25032,4.48282,3.765865,3.6315,6.9281,5.02725,2.8654466666666667,3.0103266666666664,1.6167500000000001,1.89875,4.22322,3.91373,3.84785,2.36641,3.509495,1.401576,2.8912,2.5421,3.57298,10.809805,3.64379,5.272271666666667,3.83749,4.02952,1.0399311111111111,4.856179,4.75741,2.53197,2.68178,2.79865,3.367566666666667,2.39521,1.66064,1.87278,3.901545,1.668518,2.8018199999999998,5.010252,2.82973,1.2129207142857144,1.2129207142857144,3.596115,2.9934405,2.9934405,3.1626066666666666,2.7980633333333333,3.322485641025641,3.8376,3.3602666666666665,2.668423333333333,2.3043066666666667,2.5868533333333334,3.1119866666666667,2.265915,2.4001766666666664,1.637178,5.732938000000001,9.154212333333334,0.4180138461538461,0.4180138461538461,0.4180138461538461,0.5212424825174825,0.5212424825174825,0.4180138461538461,2.9809933333333336,2.9750333333333336,4.152223333333334,1.3876799999999998,1.7793925,3.29596,2.5006833333333334,3.07728,2.4148566666666667,2.9301133333333333,3.4219333333333335,6.788315000000001,3.0565366666666667,2.52853,2.9173633333333338,4.676845,2.491356666666667,3.377166666666667,5.90512,2.423,3.3846666666666665,1.3340249999999998,1.3340249999999998,2.76905,0.5189584210526316,2.1989,2.7096966666666664,2.7924466666666667,3.3167666666666666,2.3128933333333332,1.5005466666666667,2.63676,2.7979233333333333,2.4020266666666665,4.324955,2.466829333333333,3.500525,2.45897,3.83288,0.506752,7.1946666666666665,2.9500279999999997,2.9500279999999997,7.744172777777777,1.78327,1.8281366666666665,3.0799033333333337,4.39822,2.3921533333333334,1.8933366666666667,2.5476566666666667,1.400805,3.5295666666666663,1.7859866666666668,3.0380804999999995,1.4483225,0.2723022727272727,0.2723022727272727,4.95866,3.89411,4.259125,3.0495966666666665,2.629815,3.34739,1.3291866666666667,5.5104,3.77344,3.009275,1.8355575,1.128385,2.279265,3.0799033333333337,2.578395,2.06125,5.6189599999999995,3.55209,4.32375,3.80317,2.606235,0.683075,7.1450875,2.059325,1.6165175,3.5829,4.021845,2.23913,1.7450666666666665,4.58214,4.239065,3.229786666666667,3.1486033333333334,4.165515,4.340965,3.6153333333333335,2.5100240000000005,2.5100240000000005,4.100005,4.78509,5.6053,6.3783900000000004,2.678193333333333,3.93617,1.4206885714285715,2.50325,5.4040626666666665,3.738515,1.8647960000000001,5.15015,3.425045,3.582285,2.21514,4.168895,4.71497,4.606515,4.55719,2.436713333333333,2.5609800000000003,3.6179,2.1231766666666667,2.558575,2.5805966666666666,2.54394,0.8122909999999999,2.226975,2.8724266666666662,2.076699333333333,4.585695,4.522635,4.7061,3.79141,3.68158,4.7734125,12.553404999999998,4.791825,3.852885,4.3495,4.01195,4.53461,2.4167733333333334,3.279642,3.6172,1.21932125,2.864395,2.958675,4.594015,5.51235,4.316905,3.522933333333333,3.068986666666667,2.391426666666667,4.234666666666667,3.9669925,3.637,3.9669925,2.2365575,2.275263333333333,2.446841666666667,2.1668925,2.6096866666666667,1.8432266666666666,0.8029566666666667,1.2344266666666666,1.94283,2.0196433333333332,1.6149866666666668,1.27913,1.6699966666666668,2.686476666666667,1.541038,3.0165466666666667,1.3220733333333332,1.6406666666666665,2.677295,2.5161266666666666,2.570683333333333,2.24701,2.3445,3.326935,2.287525,2.8787833333333332,3.068706666666667,2.5076933333333336,3.0269600000000003,3.0222375,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,5.133,3.018005,0.9967385714285715,3.127663333333333,2.6553633333333333,2.794983333333333,3.5192,3.2617333333333334,4.674115,3.428922,1.5984099999999999,3.0799033333333337,1.8606166666666668,1.021295,0.9410740000000001,1.6418016666666666,0.8823,0.7877241666666667,1.285792,3.12997,1.55928,1.64043,1.8880616666666667,2.3536255555555554,1.2390616666666667,1.2611366666666666,1.636665,0.94413,1.2784633333333333,0.7547566666666666,0.8843780000000001,3.347125,3.57291,4.162265,4.590025,3.99859,3.0760400000000003,4.90914,3.500033333333333,2.0499125,3.31492,2.0585725,3.49592,2.172613333333333,0.8484245454545455,4.24853,4.94089,2.1214166666666667,1.313695,2.95084,3.422945,3.5819925,2.96716,2.72238,0.91986,2.3278025,5.078927500000001,3.801205,2.4794,1.5251849999999998,3.775855,1.84387,0.5821772727272727,4.30183,4.480885,4.15669,2.520465,1.434784,3.263975,4.396145,2.641713333333333,2.60528,2.5167533333333334,2.6314933333333332,2.7523966666666664,2.8514133333333334,3.0434066666666664,1.2761625,2.568625,2.511276666666667,5.1038,4.25335,3.579255,4.52725,16.27794756691919,4.568665,4.491527333333333,2.73205,4.299375,5.07435,1.547584,2.398035,2.5701566666666666,6.32019,4.195905,4.00059,6.48635,2.5701566666666666,3.903015,2.06418,2.2642966666666666,2.928976666666667,2.7325233333333334,1.3233483333333333,4.320945,3.684785,2.453705,4.303895,2.507756666666667,2.930806666666667,3.660675,3.28628,4.849605,3.909285,2.74837,3.556045,2.60088,2.499136666666667,1.25905,1.25905,3.0933566666666668,2.6091866666666665,0.3904142857142857,4.624423,0.9548220000000001,2.67403,3.794655,0.5693374999999999,4.760715,8.489716666666666,1.86453,3.60431,3.627405,2.670533333333333,3.272545,2.41429,3.1703,3.343265,4.223575,3.088675,3.8804,0.9989583333333334,11.654345,2.72228,2.94045,5.90455,2.609775,3.90081,7.5644350000000005,4.25535,4.290895,3.637365,4.13884,5.6009225,1.5419275,2.84055,4.650555,3.782966666666667,1.8814240000000002,3.82793,3.661145,3.604355,4.06255,4.27941,3.81217,2.5289383333333335,4.32585,3.6775,5.3144,3.64434,2.1784433333333335,2.3348833333333334,2.13762,3.0794433333333333,1.2984799999999999,3.6776,0.8580163636363636,3.164073333333333,3.128,2.6999433333333336,1.60747,4.306075,4.02017,4.211905,1.960655,4.650175,3.82228,0.7366237692307693,0.33718576923076926,4.3438,5.3279,0.9345,0.33718576923076926,4.48111,0.7366237692307693,0.7366237692307693,0.33718576923076926,5.5212916666666665,2.4817966666666664,2.369613333333333,5.5761,3.1656,3.190995,0.7891966666666667,3.211495,3.828915,4.56834,5.8066,2.1040925,0.73,4.4245075,2.244936666666667,1.413576,2.0157475,1.0614657142857142,2.3129433333333336,2.23016,3.64932,5.2476,2.7142433333333336,3.0186466666666667,2.8295999999999997,2.193233333333333,2.92129,4.37393375,1.695095,1.9884725,3.96296,5.1407,2.1902331944444446,5.27225,2.828075,4.180485,4.085775,3.0672,1.1831475,3.24005,6.981,3.85766,3.492085,5.3417,6.6544,2.29066,3.21934,4.577755,3.200025,3.389895,8.3732,3.732835,4.7418475,2.33656,1.1007225,2.5660633333333336,1.81591,2.109415,1.787735,4.184935,0.6453121428571428,3.137175,3.823565,1.8985,2.900423333333333,5.2629,3.379775,3.126815,4.32667,5.2841,9.411339,2.6485566666666664,2.55396,1.695008,1.5189966666666666,1.29009,1.37159,2.9707033333333333,2.55467,2.8549366666666667,4.509249487179487,1.62183,2.55471,5.0708,5.5062,3.688085,3.38046,2.949875,2.515235,2.094,2.03105,1.9207599999999998,1.9406,2.987345,3.7294,4.918455,5.19585,3.958015,5.451865416666666,3.347975,2.562005,6.5302395833333335,3.130445,8.930005000000001,4.869941666666667,4.869941666666667,5.612975,1.65435,1.3626125,1.3090766666666667,0.736973,4.90008,3.8279,3.307245,3.307245,2.14328,4.44863,4.430565,4.42624,4.043755,2.83469,2.60803,3.637655,3.0616566666666665,5.276656666666667,3.59616,0.7676781818181818,5.3269,5.0889,4.090395,4.970495,3.023505,6.3118,4.313225,0.8322461538461539,5.4707,7.324960000000001,3.223065,5.7617,5.7453,3.44294,2.68475,3.66149,6.01425,2.09347,5.8239,1.85174,4.49552,2.620433333333333,2.36985,0.9486190000000001,3.16482,5.95295,3.45537,3.927415,2.08997,4.83077,7.968181666666667,3.499815,4.32929,2.404135,2.627015,0.849037,4.885865,1.6328316666666665,3.4669274999999997,3.4669274999999997,3.808025,2.3713366666666666,3.032443333333333,3.795285,1.7916175,3.12852,3.3306466666666665,3.23574,2.86823,4.02987,3.475165,1.812845,3.3063800000000003,2.1444075,3.0862866666666666,2.0009533333333334,3.0759399999999997,3.2209966666666667,1.4531285714285715,1.2838466666666666,0.49444166666666667,1.3326483333333334,0.49444166666666667,0.49444166666666667,1.2838466666666666,0.49444166666666667,3.4434,2.7314619999999996,2.7314619999999996,2.8480966666666667,4.190625,3.93217,4.34633,5.31325,5.23575,3.62343,4.05203,4.124535,2.01323,2.3952793333333333,2.3798133333333333,0.8143463636363637,5.53045,3.067073333333333,3.1223266666666665,5.74545,3.8896325000000003,5.3474,3.38329,2.6175833333333336,3.04971,3.395615,2.5370066666666666,2.9379033333333333,2.0350766666666664,5.2541,0.8350455555555556,3.787435,1.122872857142857,3.59641,3.16923,2.9425933333333334,4.03624,4.041295,3.903985,4.551315,3.965565,3.92873,4.37011,4.259845,2.5539,2.72095,3.3199,4.237435,2.67855,3.22539,2.664645,3.095,3.3620666666666668,3.40112,4.6596,4.892805,3.935575,68.59098377172828,2.7408975,3.85418,16.193249333333334,4.087555,3.0930933333333335,2.0595766666666666,1.8555133333333333,2.6521466666666664,4.3881,3.0027666666666666,4.301220833333333,5.80495,3.33476,7.656393333333333,5.1125,2.23256,3.36323,3.673705,3.421805,1.8377120000000002,1.16212875,4.73961,2.84296,6.0291266666666665,3.59085,2.2466566666666665,3.51688,3.932915,4.546525,3.12113,5.790015,4.457995,3.50313,2.93134,2.5516,2.79913,6.3799,2.683415,3.565805,4.318183333333334,1.2110583333333333,3.03459,5.0799725,4.21632,3.16185,3.606465,2.97253,4.081915,3.234385,3.2351,2.510895,4.49722,3.149555,2.869155,4.445005,9.69224,3.2092500000000004,4.138775,5.57788,3.09657,2.4449,4.041375625,2.398426666666667,2.946236666666667,2.9286700000000003,3.467245,3.369845,3.014265,3.29407,3.5136,4.15631,3.832775,4.232405,3.651475,3.399585,3.774245,2.6979533333333334,2.6979533333333334,6.861675,1.82385,3.25658,3.3194,2.315605,4.733215,4.100685,3.07934,3.31423,5.4325,5.9159775,0.6601036363636363,3.99033,2.26903,2.8845733333333334,2.57803,5.0954,2.7161566666666666,2.0156375,1.15664625,2.0635083333333335,4.197055,5.0786,4.08245,5.77845,5.6809,5.6014,2.48277,1.88589,3.717335,2.73614,2.87257,2.0078,1.3167516666666665,2.7789066666666664,3.1912333333333334,1.598406,2.5302633333333335,2.2889102857142856,3.3832010714285716,2.832685,4.94814,3.414285,1.3780225,2.756875,3.40208,5.97545,4.882765,5.6248,4.684685,2.0103266666666664,1.5344566666666666,0.6111800000000001,1.55664,3.56105,2.531895,3.5534316666666665,1.3797466666666667,2.431745,2.290005,3.408085,3.48021,3.829075,4.026145,1.657585,1.437595,1.938845,2.0770125,1.4265225,2.53955,6.949775666666667,4.880275,3.65689,3.03607,6.943925,4.53925,3.214845,3.080625,3.29162,2.77364,3.862145,2.3367466666666665,7.30406,0.8919266666666666,3.035345,6.5654,4.06961,4.758385,6.2734,1.52926,3.22546,3.0329433333333333,2.863706666666667,1.44183,4.024935,8.53036,3.29284,5.19685,3.983365,3.289525,4.66519,0.8755799999999999,2.78899,5.3451,6.3239600000000005,5.28635,5.5039,2.939415,3.7978,2.465593333333333,5.1698,4.84469,3.6488169047619046,3.6488169047619046,0.5646285714285714,3.7131666666666665,0.8324,0.6555783333333333,1.818,3.6239000000000003,4.204394000000001,5.715394,3.165433333333333,3.3880939999999997,3.147596666666667,2.6361933333333334,3.07414,4.5821,3.1362216666666667,1.931535,1.931535,3.790745,3.044093333333333,2.741206666666667,3.557025,3.4949,0.5322344444444445,3.3321400000000003,2.61916,2.5887333333333333,2.8303133333333332,2.560325,2.5901166666666664,3.223193333333333,2.923,0.813345,2.7494366666666665,6.186365904761905,2.10826,7.338509166666666,1.573924,1.573924,3.433811,3.3516,3.36,2.931976666666667,1.7700859999999998,1.2984814285714286,3.24352,3.4287666666666667,1.51687,1.5269857142857144,2.850096666666667,2.77522,2.6239066666666666,1.892655,1.854175,2.59108,2.285305,2.72459,3.45015,1.84356,3.665815,3.196025,6.863637,3.252015,1.64572,2.95204,2.59283,2.15507,4.026665,2.54174,2.651625,7.20184,0.8241307692307692,0.6933400000000001,4.518765,1.409426,1.409426,3.891185,2.547375,4.43893,3.261835,1.2948566666666668,2.2856106666666665,2.6163233333333333,2.3175006666666667,5.0927,4.673455,2.5993233333333334,2.2096566666666666,1.4346678571428573,1.4346678571428573,2.3991866666666666,3.926855,4.016633333333333,5.64345,3.114406666666667,4.82837,4.37009,6.7117,4.50068,2.56265,2.8463733333333336,2.6310266666666666,2.6834733333333336,0.7104077777777777,0.7104077777777777,0.7104077777777777,3.208275,4.26486,3.62929,1.05638,1.05638,4.859845,5.89495,6.47139,21.940490944444445,11.1718,7.7802,3.091675,5.71,2.3806925,4.28751,2.53273,3.2774300000000003,4.180366666666667,5.202134,2.06542,2.189545,6.53652,2.04272,2.04272,6.3385,3.19093,4.40121,1.95845,4.770415166666667,4.47864,3.276865,4.866775,3.561845,1.0067666666666668,5.7715,8.72705,1.0067666666666668,1.95845,2.1905933333333336,0.736172,0.736172,1.784018,2.232416666666667,1.784018,4.35933,5.60435,6.13655,8.80815,1.95845,11.665465500000002,5.89485,5.63975,2.3806925,3.250205,4.317815,8.29874,3.1223,3.855815,5.8835,3.29348,4.65589,6.0668,4.46958,4.84933,4.725305,2.76251,4.92641,3.503595,4.59136,4.362125,0.7988675,1.4747540000000001,2.979115,5.59245,4.47893,2.82973,2.1970625,3.97522,4.766725,5.7592,5.1956,5.172,4.413105,3.08849,4.1896,3.70763,2.0778975,4.9549325,1.98706,2.65878,3.499845,1.5484766666666667,3.984675,3.967675,3.63379,5.31835,3.016955,6.67939,0.9687255555555555,3.51475,2.1777,1.2471614285714288,5.146077999999999,1.4890433333333333,1.5491733333333333,2.6202566666666667,2.7619015,2.8983866666666667,2.808536666666667,1.7522125,0.7308981818181818,2.1466533333333335,2.470465,3.651535,0.6924823076923077,5.506878333333334,1.7216433333333334,1.22964,3.2172533333333333,1.22964,3.88551,0.9221909090909091,4.462585,3.2088433333333337,1.934365,4.7820339999999995,4.519094,4.519094,4.69602,2.506575,3.014993333333333,2.9050499999999997,1.500896,3.614,3.61565,2.06432,0.6971133333333334,7.012228974358974,2.74345,4.039745,4.177395,7.65007,2.386625,4.219825,3.83114,3.12958,3.742095,5.4696,6.336080000000001,4.28747,4.900385,5.30985,2.9826866666666665,4.74753,4.195465,4.336265,1.0889744444444445,0.471115,3.12021,3.3825000000000003,2.68918,5.4622,3.74066,4.158395,4.535005,5.15055,4.48252,4.171305,1.19336,2.181255,8.635159999999999,2.3358133333333333,1.8918966666666668,4.04544,11.662567916666667,1.5284825,4.771015,6.41035,5.17865,3.5649333333333337,2.2777933333333333,3.2740833333333335,4.16308,1.102385,3.042593333333333,3.37287,0.34772684210526317,2.0625966666666664,4.46461,4.29907,2.277725,4.148715,2.92861,5.1162725,1.3239033333333332,0.5620336363636363,3.792369166666667,1.1911614285714285,1.044525,1.044525,1.044525,1.044525,1.6570150000000001,2.8058899999999998,1.87174,3.307513333333333,5.39275,3.503833333333333,5.1395,3.3337,4.320155,3.58242,3.988805,1.4178166666666667,6.762095,2.48787,4.716575,5.302193333333333,5.16575,5.064655833333333,2.3523366666666665,2.324406666666667,2.639456666666667,3.14138,1.1909666666666667,4.464715,2.63579,4.89934,2.8771299999999997,2.2906833333333334,3.80776,3.312095,2.93922,2.4954033333333334,2.7067366666666666,1.51683,0.39422666666666667,4.018035,3.393575,4.11333,3.47988,3.930315,5.89885,4.266745,0.5390492307692308,3.3823619999999996,7.3613653333333335,2.0248433333333336,1.95416,5.602095,6.12735,2.656283333333333,4.776305,4.958365,4.176575,3.86943,4.2896,5.3522,5.67795,5.31695,3.64317,5.248923,1.482722,1.6414983333333335,4.179785,3.96561,3.852005,3.21826,5.4908,5.0034,3.867235,3.401905,15.301214659658381,1.2583345385232745,1.19054875,1.9577332954545454,0.504303125,0.45470400000000005,1.31035,0.3053382352941177,1.342094,3.32262,1.578036,0.9593916666666668,1.11348875,0.5098575,1.11348875,1.11348875,0.5098575,0.8579461538461538,0.5999878571428571,2.70613,2.625176666666667,4.643625,3.62475,2.812143333333333,2.7592,4.143625,4.7392,4.993865,2.9109,4.2814,0.6690092857142858,2.3585706666666666,7.938181666666667,4.18617,6.786020000000001,2.615355,4.19706,2.33314,5.3743,5.6969,3.83742,4.336985,2.91509,1.0653116666666667,4.23583,4.80978,1.206438,1.31799,1.5627233333333335,2.4363,2.0125800000000003,5.4844,5.4435,2.2743,2.2743,3.6186947222222225,6.48927,2.11897,0.6649163636363636,0.7603671428571428,1.9566333333333334,3.3806,0.9612942857142857,0.9612942857142857,0.9612942857142857,0.37599461538461537,1.0674685714285714,2.9657,6.10895,3.7829333333333337,4.1726675,5.1983,1.01976,3.5277666666666665,3.252076666666667,3.905533333333333,5.82505,2.5369633333333335,7.408166666666666,4.9008,1.1076422222222222,3.7814666666666668,1.82725,2.60735,2.33076,7.162391666666666,3.3143733333333336,4.39831,2.2240975,4.65261,4.444015,5.0243,0.5200305555555556,1.9654299999999998,1.4011966666666666,2.513943333333333,3.9957166666666666,2.1001333333333334,2.762166666666667,2.3308133333333334,2.53084,2.5239966666666667,2.7610733333333335,2.7395133333333335,2.92735,1.3983700000000001,2.3556833333333334,1.9484133333333336,2.74293,2.4789166666666667,2.0268375,1.75816,1.8443633333333331,1.63244,3.077395,2.222443333333333,1.9181666666666668,2.15525,2.394676666666667,2.3305466666666668,0.73337,0.73337,0.73337,2.46392,2.047536666666667,3.02277,2.2792966666666667,2.49512,2.014013333333333,3.87892,3.4537199999999997,1.3305433333333332,2.41736,2.7534500000000004,3.8309300000000004,1.5762285714285713,7.108131666666667,4.43728,3.16325,4.082135,3.56059,1.470265,0.7730285714285714,3.2286,3.82918,3.8309300000000004,4.22846,4.2091,4.514775,2.8754899999999997,3.962695,4.090235,0.979468,2.753755,3.260425,4.9374400000000005,4.83135,3.56772,3.159625,2.526535,2.2350833333333333,2.32222,0.6461241666666667,5.147885833333333,2.698875,3.956285,2.7511466666666666,3.8478966666666667,3.27158,2.43867,3.1100689999999998,3.1100689999999998,2.614786666666667,2.10155,2.62867,2.0235433333333335,4.17048,1.391152,2.52594,3.798075,4.09642,3.96758,5.29505,3.665465,2.5633,2.09484,3.29426,2.85009,2.65852,5.1406,2.655165,0.9060971428571428,0.9060971428571428,4.48826,3.8610939999999996,0.916504,4.532365,0.916504,3.901415,4.931715,4.857935,3.145755,3.28159,6.3135025,4.10831,5.8186,0.8655499999999999,0.8655499999999999,2.13322,4.62393,1.5581800000000001,3.06575,3.41436,1.1242814285714287,4.01099,3.97078,5.5398,5.5398,1.0871983333333333,5.2766,5.37145,5.272,6.1449,2.014905,2.014905,6.9948,0.992009090909091,7.1136,1.9543425,6.3238175000000005,2.58272,2.4233066666666665,3.368815,2.31964,2.16553,2.3051666666666666,2.98704,2.4625790476190477,6.292197999999999,1.7545439999999999,5.27965,2.8856566666666663,2.6068700000000002,1.842665,2.275,3.427265,3.516005,3.41135,2.73895,2.195155,2.17631,2.48344,1.064232,3.334905,2.252325,3.266535,2.1529585,2.1529585,3.054645,2.0375533333333333,3.78443,3.424895,4.974495,7.156293333333334,4.124295,3.521595,6.365438,2.0485633333333335,3.353963333333333,2.2597533333333333,1.5186142857142857,1.69982,4.223645,1.531845,0.50167375,0.6126183333333334,4.776795,4.917145,2.888175,0.9121466666666667,3.057195,3.014943333333333,4.87257,1.801702,1.86722,1.1840333333333333,4.743055,2.417965,4.59239,0.753577,4.22793,5.0732,3.5675,4.48723,3.490805,3.844095,2.8896800000000002,5.4524,3.605695,2.11492,2.882846666666667,6.126728333333332,6.13689,0.73384,3.616955,4.27769,5.48625,3.6627666666666667,3.880933333333333,3.00205,3.19286,3.6971333333333334,6.31444,2.77522,2.6376720000000002,3.85654,3.66257,2.298835,2.636875,8.436866666666667,4.46979,1.8879333333333335,4.903015,4.5245,1.811678,3.86369,1.3549375,1.7222000000000002,4.521755,3.843315,4.99177,2.5184433333333334,3.64029,3.2781,5.13205,3.995765,3.53888,3.124435,4.254265,4.09028,3.98205,1.0933563846153846,1.0933563846153846,7.53541,0.8920275,1.9583441865079365,0.8920275,0.7192850000000001,0.3744722222222222,2.6776291865079367,2.478675,0.5675457142857143,1.9583441865079365,1.930755,3.269235,2.110083472222222,3.462605,4.78525,7.565641666666666,1.994785,2.27345,2.25401,4.5529,5.7907,2.12912,1.7627425,1.03835,2.8010925,4.164565,2.6318,4.506885,6.510674999999999,0.4194738888888889,3.736745,0.715136,2.652696666666667,2.22501,3.606585,1.2314816666666666,4.049765,4.55332,4.015435,2.8777,3.933755,5.14304,1.74168,3.361935,0.5940723076923077,2.489915,2.512235,1.14598,2.959433333333333,2.4667233333333334,2.5357833333333333,3.54977,8.24828,2.921039393939394,3.69936,3.36089,7.204675,5.511381666666667,3.210506666666667,4.270045,3.537225,5.6269,4.22474,5.23365,4.244945,4.135045,4.802185,4.080866666666666,1.5589475,1.9666466666666667,2.2168566666666667,3.919765,2.4884166666666667,0.19852675675675674,0.19852675675675674,0.19852675675675674,30.293218952380954,0.19852675675675674,3.1143017567567566,0.19852675675675674,0.19852675675675674,0.19852675675675674,3.3079400900900895,4.23708,0.19852675675675674,0.19852675675675674,0.19852675675675674,0.19852675675675674,0.19852675675675674,2.760245,5.779,3.057995,0.21791358974358976,0.21791358974358976,4.486196666666666,4.0251325,3.9496158333333335,3.225180166666666,4.028561904761905,7.957933333333334,11.4471167016317,6.358009333333333,8.081626666666667,7.593073964285715,2.76905,6.225714761904762,4.460908333333334,4.378908878205128,0.21791358974358976,7.911688,6.654626857142857,6.924298333333334,2.90075,9.109843964285714,14.722038273809524,18.01595277930403,56.423606657243084,116.50930268262049,1.3340249999999998,3.3846666666666665,3.338325,3.9117968545688546,0.21791358974358976,1.6293784615384614,8.666160208333332,14.141457714285714,19.61463861111111,47.544417168755224,13.313297797619049,3.195,0.22868172413793106,0.22868172413793106,4.499956666666667,2.74277,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,5.58138,0.22868172413793106,0.22868172413793106,0.22868172413793106,2.66697,1.92289,3.615865,3.68508,4.185218333333333,5.09725,2.11538,4.14104,4.15449,3.17803,1.46631,3.569415,1.0198416666666665,2.280515,2.03581,5.124133333333333,5.92784,2.7891866666666663,5.848254555555556,0.5411911111111112,0.49696799999999997,2.4905133333333334,2.7800700000000003,3.01581,4.11657,3.4995666666666665,7.34745625,3.66804,3.56349,3.426825,4.018335,3.089175,3.19942,5.76185,1.83949,0.44422076923076925,0.8473245454545455,4.13874,1.7633275,3.79425,3.73565,4.424005,3.510225,2.39064,2.7102,0.6212273333333334,0.756076,4.240225,2.71562,5.87405,3.65523,3.9729716666666666,2.82497,3.578135,5.92405,3.96822,3.36046,0.8464400000000001,2.9915533333333335,4.440285,2.332875,0.97499,1.6171966666666666,4.127465,6.2722,1.90794,3.158595,3.580355,5.6025,2.54317,2.411426666666667,2.78531,4.918095,2.385425,4.406275,0.7356128571428571,2.1789666666666667,3.495785,1.910145,6.09362,3.44541,4.11245,4.54313,2.83605,2.131505,0.5283436363636363,4.625655,4.66908,6.73145,3.348505,5.1504,5.22165,2.867265,2.86335,1.2112414285714286,5.1853,1.949425,2.7514,8.511025,4.15321,5.42515,3.35901,0.9347699999999999,2.97333,1.1939785714285713,3.200475,6.20315,5.0009,4.971905,3.679945,5.08875,4.551885,1.69373,1.6921333333333333,5.0271,3.06888,3.3586333333333336,2.504525,5.23225,4.38401,1.4456733333333334,3.611166666666667,2.81956,2.780605,4.08805,9.2023,4.580195,1.7536375,4.718435,6.27667,4.4143625,3.97034,3.91834,3.92179,4.381465,8.22495,2.3327833333333334,3.25236,3.35393,4.23444,2.743235,3.179345,4.753685,4.27825,3.506055,3.956947333333334,18.881515333333333,2.7513733333333334,2.67934,3.4296333333333333,5.563238666666667,1.16352375,4.280525,1.9554108333333333,5.05195,1.4020383333333333,4.208835,4.258205,3.753785,0.95835125,4.461415,4.42036,1.65236,4.573399393939394,4.521845,1.0214771428571428,3.553895,2.09635,2.286,1.662165,4.29758,3.855015,3.865975,3.63905,2.9500933333333332,4.43703,8.067155,4.495255,4.583425,4.83502,3.1266233333333333,4.04528,4.91218,6.396721,0.91515,0.91515,4.442615,4.90367,2.2507766666666664,1.41253,7.1902550000000005,4.06469,3.48078,3.87354,4.643125,4.338595,3.525785,3.92997,6.750313,4.106316666666666,4.60161,4.90952,1.4712857142857143,2.788475,4.3746,4.66018,3.66675,0.20402833333333334,1.490085,2.06367,2.4749466666666664,2.1338933333333334,0.9537911111111111,1.438095,1.4503725,2.2866866666666668,0.6134444444444445,1.0135657142857144,1.9090075,3.86267,4.010533333333333,2.26775,2.6208266666666664,2.8708566666666666,2.7600533333333335,0.6746179999999999,0.93321125,2.775305,4.675455,4.62837,3.098395,4.55989,4.763465,4.64108,2.04376,4.260575,4.926595,4.409795,6.19885,3.673985,0.48222176470588235,5.1561,4.55335,4.001925,4.978575,3.432155,1.888402,3.95182,4.08028,2.90713,5.255626666666667,4.408925,1.3890516666666668,5.255626666666667,4.24371,6.6520399999999995,3.704095,1.1949666666666667,3.784265,5.01645,4.212625,2.612556666666667,5.0181,1.443715,2.014185,3.321905,3.392615,0.8103644444444444,4.831135,4.79611,3.45441,3.92714,3.4510666666666663,3.1004566666666666,1.7300999999999997,1.713855,3.132705,3.460095,3.19224,2.44006,2.3337475,2.012966,3.84495,1.4393714285714285,0.8123722222222223,5.62407,3.924595,1.551548,2.74257,2.25707,3.0532033333333337,6.025535,2.1960983333333335,0.8290240000000001,2.61149,4.457555,2.0860833333333333,4.086645,5.15645,5.22095,4.67258,4.254725,4.641075,2.168153333333333,2.25089,1.67106,2.2036533333333335,1.898655,2.35247,2.22847,1.775505,2.723115,2.953285,3.45684,6.5753,4.53364,4.08332,4.3916,4.016945,3.73675,5.2383,0.88929375,3.1390266666666666,4.73218,1.1752179999999999,0.673,5.37785,3.608925,2.4949066666666666,3.6868624999999997,6.1394,5.31085,0.9699030000000001,1.2333957142857144,0.7341188888888889,4.130730833333334,2.3112333333333335,2.8114833333333333,1.1806485714285715,2.6602033333333335,2.7144366666666664,5.47135,4.56857,4.312025,5.3082,4.49976,1.2805683333333333,3.693575,1.68297,3.584725,3.76417,3.36451,2.71325,3.3581333333333334,2.7067266666666665,3.608,3.993195,3.05798,2.5174,8.828520000000001,10.24311,4.068865,1.4626000000000001,5.27275,4.120525,4.66058,4.404665,3.893995,3.880755,3.46392,4.169545,3.552460625,5.12362,3.82075,3.761195,4.594635,1.791768,4.69992,5.6758,4.64592,3.32335,3.2576549999999997,7.4393650000000004,0.7934183333333333,2.539356666666667,2.79292,2.360933333333333,5.02745,3.185885,1.3026283333333333,4.143895,3.3670000000000004,3.811585,4.699905,4.075680833333333,6.58428,3.2554233333333333,2.882766666666667,3.14081,2.77129,3.964815,1.8764466666666666,2.1289866666666666,2.98897,3.908985,3.7147183333333333,1.967235,1.5472725,3.2860014285714287,3.1611504999999998,0.9488088888888888,2.587693333333333,2.587693333333333,1.40101,5.84065,3.112095,3.592165,3.61247,3.358825,3.44441,3.3735,3.322525,3.17756,2.21807,0.5410106666666666,3.214035,5.7575325,3.129365,3.7392,3.22471,4.08969,4.045395,3.087465,2.547785,3.75461,3.68831,3.186695,3.11227,3.73602,2.64643,4.018285,3.832935,8.95444,3.50383,3.654835,3.003475,4.03062,4.07088,3.624535,2.38251,3.738925,2.6597350000000004,2.778405,2.95825,3.233705,3.75357,1.6933266666666666,1.6933266666666666,2.222905,3.08784,3.37141,1.539368,2.336935,3.344755,1.906382,2.899785,1.539368,4.44237,3.05186,3.9098954999999997,3.02703,3.29735,2.31225,3.258345,4.091245,4.234445,3.52245,4.526905,3.80491,4.2505,3.626185,3.04695,3.33457,2.953465,3.785085,2.66959,3.80927,5.30535,4.081245,3.768585,0.29882043478260867,3.55031,0.4405966666666667,3.651915,3.684995,2.923045,3.5252,3.790835,6.149608333333333,3.414665,2.5880199999999998,2.4168,2.81554,0.628721,6.754736666666667,3.160575,3.37595,3.741105,1.94511,2.875245,3.360935,3.37189,6.713609999999999,4.60344,5.06885,4.7507,4.34392,4.13215,3.967095,1.4852400000000001,1.634522,3.840785,4.490735,5.7173324999999995,2.4434033333333334,4.98098,2.00018,3.588566666666667,3.97945,1.8581819047619046,4.07413,5.13982,3.4991333333333334,3.8320666666666665,2.80213,4.37718,4.824085,3.509866666666667,4.41961,4.44682,4.81923,4.293885,4.434885,4.17435,3.15845,4.400775,2.647325,3.3757,3.3757,4.61771,2.5294433333333335,3.828385,2.5067066666666666,4.4987,3.3559666666666668,3.559025,1.7913,1.8911433333333332,1.2024966666666665,1.2024966666666665,1.565434,3.470466666666667,1.6953033333333334,2.832543333333333,4.053625,5.10405,3.2948533333333336,3.966425,6.10722,2.96754,2.829735,2.93759,1.5725633333333333,4.22348,4.100575,6.483585,1.61818,5.2186,5.71465,3.3795333333333333,3.25145,4.174925,6.89258,1.99606,2.3729775,4.075555,0.45373714285714284,3.96502,4.103915,4.182655,4.45044,3.023955,1.377596,1.70764,3.960875,3.34685,2.4133566666666666,3.757495,4.752475,5.0801,1.0395125,3.247775,4.67819,3.671605,4.59885,2.5518,5.26203,3.8707,1.577534,3.569635,1.24353,2.7448200000000003,7.531750000000001,3.346355,0.6687718181818182,3.399845,3.98011,3.839745,1.7972625,1.7972625,5.088873333333333,5.8006,2.93649,0.49377777777777776,1.970035,4.545278333333334,4.443755,4.47601,1.780238,2.9460466666666663,3.482425,1.1800194078947368,1.1800194078947368,1.1800194078947368,0.7706514912280702,1.335528157894737,0.5648766666666667,1.1800194078947368,0.7706514912280702,0.2527331578947368,0.8176098245614035,0.2527331578947368,0.5179183333333334,0.5179183333333334,0.5179183333333334,0.5179183333333334,1.1034425,1.030015,2.3930166666666666,2.386365,1.14335,6.38305,2.69721,6.146599999999999,2.60898,3.42501,2.808495,3.519975,2.7236725,4.58681,2.8043633333333333,3.99939,4.09035,4.769555,2.18502,3.98888,4.810865,4.12671,3.16702,4.834165,3.50326,4.505065,5.5375,5.2131,6.2592,5.2262,1.11477375,4.48761,3.83954,2.9251,15.07638,4.619675,5.0415,2.68493,7.56368,4.01194,4.56388,4.71176,3.06877,1.060685,2.58332,3.940365,4.33402,3.62233,3.38105,4.13372,3.0238133333333335,4.32157,4.612585,4.235775,6.497728333333333,7.458219999999999,1.2494514285714284,3.70022,3.97677,4.13865,3.620595,3.398305,7.27349,2.88001,2.80027,2.624455,3.994445,3.844855,4.601025,2.387045,1.820355,0.906144,4.35112,3.586775,3.671375,3.85596,3.508175,4.969765,3.81003,6.488,5.8905,5.56525,6.789,3.80116,3.183105,3.22299,3.44066,1.869315,4.44093,6.01095,6.59585,5.885536666666667,5.885536666666667,2.349555,1.869315,2.057675,3.50911,0.7349950000000001,1.5774825,0.8424875,1.51383,2.719925,0.343919,3.01569,4.139605,1.51383,2.934071,11.10387,6.592147499999999,2.314985,1.03917,1.7278399999999998,4.60834,4.27394,5.90991419047619,1.96634,2.11163,3.747255,3.541805,4.6554,1.5702533333333333,5.47015,3.5543333333333336,3.342915,5.22225,7.2746960000000005,3.877495,2.4354575,2.7885866666666668,1.5353533333333333,3.94007,5.42879,1.755614,5.7259,4.441485,5.9768550000000005,0.5308913333333334,4.600136666666667,5.14395,5.68665,2.51403,2.837065,7.28745,8.673516666666666,6.5426,2.199316666666667,2.199316666666667,2.199316666666667,4.817185,4.68532,5.7074,3.49491,2.799325,2.5748486842105263,4.30461,5.47875,2.6002495000000003,1.981715,2.6002495000000003,7.2436495,4.913209999999999,4.952290714285715,6.81569,4.952290714285715,4.952290714285715,3.6421357142857143,7.31236,5.590667,2.944662,2.944662,2.639535,7.0927,2.906965,3.56495,5.532799166666667,5.532799166666667,5.532799166666667,7.630285000000001,3.6774575,3.44503,3.7745325,3.559485,0.8643325,7.631036666666667,2.717826666666667,6.5141,3.563745,12.988021666666667,4.85282,5.516640833333334,6.90658,2.6086650000000002,3.540375,1.1277933333333332,5.516640833333334,3.474625,1.66255,1.66255,3.142225,5.3067975,1.850755,4.780926666666667,0.8467119999999999,1.4059266666666668,0.8467119999999999,1.9317975,2.6974669999999996,5.388437,3.588085,1.4059266666666668,3.20937,4.83948,0.98866,3.56792,4.481965,2.276305,4.3166400000000005,2.923345,3.41248,2.780165,0.9949939999999999,3.838495,2.25493,2.24929,1.7031333333333334,3.0875983333333332,3.85258,2.683295,3.80187,1.2759477777777777,1.2759477777777777,1.2759477777777777,4.06893,3.1505566666666667,3.1505566666666667,3.383265,3.890015,2.4170000000000003,1.339825,1.339825,3.004785,4.6350075,0.8285625,1.6209366666666665,2.868075,1.2780533333333333,2.8989899999999995,0.9949939999999999,0.9949939999999999,1.838258333333333,0.9949939999999999,3.027641666666667,0.62728,3.027641666666667,6.0738183333333335,3.489105,2.3348733333333334,1.820707222222222,0.5887516666666667,2.409458888888889,3.474735,2.409458888888889,1.0120222222222222,3.36951,3.996555,3.932485,3.798435,2.53003,3.76962,1.8401566666666669,0.8476140277777777,0.40081625,0.8476140277777777,0.4467977777777778,0.8476140277777777,0.8476140277777777,4.22953,4.39206,6.36895,3.493305,4.45538,4.466345,5.12265,3.44076,3.782055,1.354072857142857,3.2947900000000003,4.4206916666666665,3.886405,1.4417266666666666,2.76698,3.766635,3.825,4.12331,3.515425,3.971185,3.807275,3.14792,4.385515,2.2326366666666666,6.05245,3.638935,3.744615,4.688389285714286,0.9999867857142857,2.063485,3.195935,6.03096,3.95095,3.237195,3.0409,4.16888,7.2217633333333335,3.1052733333333333,3.448485,2.7542733333333334,3.76937,4.031095,5.57115,5.47565,4.35994,3.070405,5.09645,4.639435,3.471766666666667,4.029165,3.3115133333333335,2.29679,2.4270033333333334,4.809585,6.5071,5.14305,5.0614,3.93376,4.89222,5.7903,0.5230023076923077,7.471415,4.353515,3.54146,3.701885,4.856865,3.997355,3.0009200000000003,2.4367175,1.36494,0.5699346153846154,1.767016,3.0781766666666663,3.327935,3.170245,3.77794,3.8476,11.388178333333334,3.81569,3.927965,2.972155,0.6978416666666667,5.47888,3.1671333333333336,1.4935066666666668,4.660640000000001,5.621588333333333,2.454455,8.15699,4.642025,2.275944,2.275944,2.275944,4.25172,9.08018,3.469375,2.72845,2.72845,3.418115,10.1986,1.035635,4.78833,4.39585,4.223195,2.742103333333333,2.2815,4.51903,3.78296,6.3633,6.15729,3.972705,2.97041,3.855845,4.441190000000001,3.394952,1.2326375,2.94083,6.14052,3.3516825,5.03395,0.92755,3.719533333333333,2.2527933333333334,2.6029233333333335,1.774975,1.78885,2.21497,5.42915,2.10576,4.558295,5.43975,1.7545439999999999,4.670775,3.81133,4.809635,3.1396333333333337,2.31066,2.73741,4.39089,4.053016666666666,4.053016666666666,1.1710775,1.5095599999999998,2.88101,4.415002333333334,2.239584727272727,4.864901333333333,1.8037379999999998,2.8335033333333333,2.125253333333333,1.592755,1.592755,4.792255,7.4670966666666665,1.8318899999999998,2.93877,2.1847425,4.62528,3.14353,0.8073600000000001,2.89005,0.8073600000000001,2.824785,3.31898,5.052,5.0909,3.747305,4.669293333333334,6.0102,2.363945,1.7922766666666667,2.6476,2.273216666666667,6.2156,5.03895,2.495865,4.158865,2.80038,4.33127,1.06622875,1.146226,1.8611266666666666,1.3237933333333334,2.58718,2.70443,2.25125,2.60006,2.682075,4.38714,2.6039133333333333,2.4140166666666665,2.76197,2.410066666666667,2.7607233333333334,2.66743,1.9853966666666667,2.4673133333333332,3.91373,3.955045,3.156405,3.23256,2.7972866666666665,2.21041,2.044015,1.17985,0.2865125,0.13650652173913044,2.117923333333333,1.8516700000000001,0.13650652173913044,3.696894855072464,2.037385,0.13650652173913044,5.748887291666667,2.162961666666667,5.96506,3.41371,3.2132966666666665,2.5802033333333334,2.9125,2.1964525,4.343265,2.9314199999999997,3.2567733333333333,0.4323005263157895,4.0303683333333336,2.652800526315789,3.127685,1.756635,2.46001,4.59334,2.35943,7.9551549999999995,5.32315,3.30533,3.92648,6.60871,5.78424,1.7585933333333335,4.19037,2.045365,1.93814,6.20779,8.10328,1.0237100000000001,2.09616,3.721515,2.57555,2.88734,3.021495,2.672155,4.732984999999999,2.49563,3.198785,3.27555,3.18689,7.52598,1.30773,2.06024,3.08533,3.347165,1.8143799999999999,3.406995,1.3768,3.8707,3.453345,6.46707,3.40691,9.264415,3.478315,1.551172,1.7253233333333335,3.0061,5.61079,1.582035,1.67143,5.73181,3.422275,4.094435,2.829535,2.0129699999999997,3.17878,10.3627,5.2945,6.48426,3.4752,2.280205,2.201475,2.43666,2.88001,3.334435,1.7542833333333334,1.5860266666666665,2.5588833333333336,3.580185,1.7793925,3.407175,2.546975,4.040525,3.77523,3.19821,1.1911916666666666,2.484705,1.2347733333333333,1.405648,1.53831,3.26503,3.5496,3.64195,2.775725,3.751465,3.995985,2.847485,1.444156,3.51776,3.425045,3.07039,1.827165,3.129525,3.44554,1.5435025,3.384425,1.57615,4.0083,4.214095,4.853945,2.804845,4.101905,1.666795,3.49956,5.2871,1.66642,1.0574457142857143,3.4501666666666666,2.817035,4.09399,4.190285,2.926395,4.604145,4.916155,2.4595433333333334,5.41485,5.4077075,6.58745,3.95013,6.634334333333333,3.886835,1.6963833333333334,2.6698133333333334,4.56452,4.690955,2.643623333333333,7.399634,1.227852857142857,3.416066666666667,2.122145,1.732442,2.39104,2.81059,0.36386928571428573,2.71323,3.7161666666666666,3.45289,2.465095,3.369533333333333,2.3511,2.4180533333333334,2.2471525,9.14825,4.98797,1.911816,5.2675,2.3537125,0.7366237692307693,2.786576666666667,7.385429333333333,1.81983,4.55495875,6.312216666666667,1.7095825,1.62526,1.441595,4.70947,3.20779,4.377135,3.82661,2.3890533333333335,3.6235,0.8796900000000001,2.65874,3.786245,4.11218,5.01425,2.90681,4.95591,5.1782,4.112595,4.894405,5.68925,4.665775,4.27689,5.3859,1.9316020000000003,1.91686,2.84072,3.406335,1.1437222222222223,4.149795,2.0891766666666665,3.3645333333333336,4.14177,3.3603,2.6181966666666665,1.4814666666666667,2.9484766666666666,2.7736688888888885,2.6931266666666667,2.92808,2.01347,2.513375,2.405085,4.06651,4.23886,3.923295,4.74536,3.557145,2.444355,3.05894,4.97545,3.846633333333333,4.63869,3.35989,2.30967,4.435081666666667,1.7004166666666667,4.102195,4.785680833333333,5.950310833333333,3.94943,4.535105,5.39525,3.338566666666667,3.9305266666666667,4.574545,3.297035,3.719639,3.4053,1.3793225,3.295495,1.74746,2.187305,4.77738,4.99915,3.719639,4.005805,3.44478,1.5581800000000001,3.661745,2.08622,2.54174,2.035985,2.78948,1.5577918181818182,1.5577918181818182,1.5577918181818182,0.5883218181818182,0.7892855555555556,2.119777222222222,1.1031625,3.669365,1.3975633333333333,4.042225,5.19735,4.61548,3.27127,4.0166,3.241895,5.00815,1.554705,3.08371,2.6701,3.32789,5.848687,4.175405,5.46855,4.167615,0.975615,2.23384,1.2944366666666667,3.797785,4.008815,4.20181,5.2336,4.851625,4.17067,4.71765,3.6749,1.703105,1.1586716666666665,5.300226666666667,1.0760711111111112,1.2676633333333334,2.636773333333333,8.04757,2.822135,3.757145,3.14145,5.57573,1.643865,1.0035133333333335,1.5196775,3.208825,3.609595,3.87287,3.707685,1.90271,6.1653400000000005,2.9755366666666667,0.9120225,4.866435,3.04395,2.7190366666666663,2.3278066666666666,3.5718333333333336,5.543750000000001,2.701943333333333,3.2544033333333338,3.4475,2.59375,2.824316666666667,2.90917,2.74486,2.06925,4.551855,4.62609,5.04225,1.0021077777777778,0.764934,3.9055999999999997,2.64393,1.08394375,2.77074375,3.702395,4.25874,7.002000000000001,4.62328,3.5602666666666667,1.7583680000000002,3.52309,3.71167,2.950623333333333,2.5112557142857144,4.21195,2.84909,4.881983333333333,0.8867411111111111,3.331025,1.726734,3.660695,4.09062,2.132735,1.0268175,3.210975,0.428351,3.010965,6.73995,5.3405,2.771764,1.483828,3.575366666666667,0.8074166666666667,2.56514,0.8074166666666667,4.0372,4.223855,1.36961,1.784265,5.111348333333334,1.8676033333333333,3.77361,3.15484,3.86473,1.270016,1.5573966666666665,3.84994,5.19915,5.36135,2.9286700000000003,2.622575,3.213425,1.59422,2.580875,1.817545,1.945215,4.331645,1.4344222222222223,1.4344222222222223,3.3552,4.5420766666666665,8.557601666666667,4.672063333333333,7.85805,2.341415,3.77756,4.03697,1.7008999999999999,3.6757091666666666,4.027475,2.933295,5.5756,3.025965,2.534235,2.832383333333333,3.79416,1.08089125,4.13311,4.48842,1.1600583333333334,7.915486666666666,2.7292,3.162915,3.5913233333333334,5.07645,4.68822,3.7649495833333333,2.5873766666666667,2.78895,1.9729766666666666,3.7251999999999996,2.3122225,2.156165,7.409181333333333,3.2872333333333335,2.89216,4.271655,22.771010637362636,0.6949000000000001,2.747125,4.528865,4.59235,8.47381,4.922775,4.409285,4.571695,6.948023333333333,3.54975,1.6186233333333335,4.724211666666666,3.239675,1.131396,1.131396,1.131396,2.37117625,1.649,3.30117,1.5181525,2.945905,1.52926,2.585185,2.63837,3.01846,1.5181525,3.24036,2.674395,4.213455,4.905481666666667,4.983395,0.76126,3.314165,2.80217,4.657855,3.520635,2.882855,2.3121825,1.7022425,2.25389,1.4460760000000001,3.752675,1.6576375,4.52244,11.475478666666667,2.802713333333333,2.393105,4.98716,4.704033333333333,4.4685,6.40965,2.2205,5.511381666666667,4.736575,1.0455816666666666,1.1929085714285714,6.431043,4.01326,2.371125,3.69405,1.8565275,4.199395,4.97935,4.495715,4.00251,1.357307142857143,4.257325,4.73545,4.770995,6.343997,3.496155,5.16735,4.525395,4.37698,5.1604,3.687533333333333,5.05405,1.935405,3.340115,3.082285,3.162925,4.200835,6.2288,4.45586,2.8012200000000003,3.5036,9.04152,4.831215,3.29509,3.560095,3.17731,4.35774,4.30287,4.617515,6.756043333333334,3.408575,2.6857366666666667,4.074884166666667,2.423325,4.30334,2.3408666666666664,6.4332475,1.6579016666666666,4.50499,4.84153,11.9007175,0.4910907142857143,4.44933,4.92398,0.6555242857142857,3.728135,3.9017,4.205925,0.9614990000000001,4.982635,4.877303333333333,2.622263333333333,10.038338333333334,3.29092,1.8731233333333333,2.40638,3.295685,6.0076,0.5712975,3.90124,2.01833,5.4694,0.7298030769230769,4.20248,5.7095,6.02505,3.55117,6.8150975,4.52105,3.624715,2.5303400000000003,2.752883333333333,4.275345,4.66653,5.00795,5.03815,5.45435,3.22907,6.848035,2.820375,3.171477,1.9750375,4.2865,2.338506666666667,1.5674066666666666,3.07624,2.92416,3.2232466666666664,3.4144,3.626,3.09383,2.677896666666667,5.66205,3.1099933333333336,3.77476,5.0005,2.6392266666666666,1.1497000000000002,3.1478633333333335,2.9682566666666665,3.927825,2.8171033333333333,3.01115,4.911391666666667,2.043956666666667,1.70024,3.0993,3.751655,4.36926,1.09338,4.313355,3.32225,4.121766666666667,2.8753833333333336,4.8561545,3.9573,3.33449,3.921815,1.622985,3.796465,0.66030625,4.710695,4.855375,16.77192,3.10357,1.1942266666666665,4.062875,0.6367785714285714,2.704825,4.39977,1.82427,1.2403514285714288,3.61927,4.563195,3.1588233333333338,0.8250983333333334,2.49429,7.92376,3.947385,5.58055,5.0441,5.1547,3.04955,3.7886333333333333,3.1538233333333334,7.014573333333333,4.05575,5.05625,2.1333425,0.4482494444444445,2.20848,2.93685,2.56007,3.62004,3.77272,2.8933233333333335,4.74511,0.6784658333333334,4.70979,3.68565,2.96741,1.15862,2.7155,2.0008233333333334,4.606745,3.896915,2.09687,1.6469714285714285,3.522695,4.31323,4.366705,6.331921666666666,2.1543466666666666,4.78063,4.333905,3.91448,1.928584,3.9086,6.208408333333333,4.98145,2.4399,4.770295,2.921665,2.652765,4.009035,3.945355,1.3589149999999999,4.655775,2.1196433333333333,2.7711733333333335,5.312976666666667,5.312976666666667,5.17655,1.844542,4.92302,0.911815,1.74778,5.005,2.6971266666666662,1.4871800000000002,3.1703200000000002,0.8798920000000001,4.308033333333333,4.303975,2.89132,5.07415,4.286545,3.89501,5.2891725,3.527465,3.7006,2.8897033333333333,2.39822,2.576075,2.8457500000000002,4.31097,1.5807521978021974,2.9727099999999997,4.324515,4.904185,2.2787979166666665,4.21902,4.670215,4.851435,3.517466666666667,5.3532,5.1895,5.1385,5.0268,3.77138,3.621435,3.69111,4.508715,5.58345,4.77898,4.998375,4.37987,4.57078,0.6812866666666667,4.953725,4.765945,3.88897,7.267035,4.309755,3.91714,4.391845,4.86679,3.450465,3.64685,2.1077875,4.452992500000001,1.8172275,1.26553,3.67749,2.056153333333333,2.5192799999999997,3.799244,3.3300466666666666,2.94389,1.1348733333333334,1.9712575,4.380445,3.579245,1.88682,1.88682,3.56893,1.5697839999999998,3.19811,4.406505,3.382805,3.739565,1.4319666666666666,2.089455,3.47367,1.88081,4.145125,4.4313,4.4803,3.960005,6.631383333333334,2.71465,3.676505,4.686695,4.401135,3.3180333333333336,4.070015,4.130455,4.367325,2.183555,2.65495,4.478145,3.82912,3.61475,3.71261,1.6158,3.7968,4.210945,4.520385,4.15905,3.9115925000000002,3.9115925000000002,3.0310366666666666,4.10874,4.331505,3.968965,1.717154,7.61908,3.92677,4.867775,4.410715,4.269685,3.835385,5.02275,2.973235,3.193035,2.82841,5.0094,1.8219740000000002,4.547125,5.661680555555556,5.19115,0.720769,4.795099166666667,1.13674,4.7522,4.753115,4.547875,4.170285,5.18975,3.7096,3.7096,0.88515,2.1906125,4.914315,3.57501,4.154585,4.889525,5.65,3.314505,4.268515,1.4164,2.58423,1.67673,1.24203375,4.319868,0.817999,2.603543333333333,3.0820233333333333,1.2628566666666667,2.1662175,2.681673333333333,1.3766749999999999,6.33643,1.9812075,2.5067266666666668,5.2893,1.92222,2.7584733333333333,2.933685,4.55945,3.6633999999999998,3.2855066666666666,4.080033333333334,1.653434,2.1389775,4.45597,0.6490842857142857,2.1764933333333336,2.4182483333333336,3.1282933333333336,2.8146566666666666,1.1514585714285714,0.8248033333333334,2.46527,4.17208,1.1783642857142858,2.2955975,1.2416175,5.384975,2.233875,5.14325,4.414075,4.39989,4.91077,5.20675,4.24945,4.29421,1.4697033333333334,3.8673,1.697378,2.4916466666666666,1.2000157142857142,4.273495,2.0933925,6.914282,4.137265,3.90612,1.438414,6.9104350000000005,3.76823,1.5825866666666668,4.197925,3.228675,3.87478,3.31001,1.9796475,1.9796475,3.379633333333333,1.2344266666666666,1.2344266666666666,1.928584,2.8388233333333335,2.0268375,1.3305433333333332,3.5271333333333335,1.06032625,2.9759333333333333,2.3466525,1.8974,1.52649,2.17082,2.0616825,0.2898529411764706,2.4930075,1.234945,2.3381933333333333,2.125253333333333,2.5633,1.0674766666666669,1.064232,3.7706999999999997,3.1008766666666667,1.9796475,1.7633275,2.0309933333333334,2.5254533333333335,2.4274766666666667,1.8884899999999998,3.3239033333333334,1.0712300000000001,3.3199,2.6950833333333333,2.5831933333333335,1.54745,1.050986,2.4919325,1.050986,2.4919325,0.69360125,0.69360125,0.47998722222222223,2.272675,2.4843699999999997,0.69360125,2.22093,2.332883333333333,2.3475025,1.63244,0.73337,0.69360125,0.69360125,1.635342,1.635342,2.0218375,1.7633275,0.69360125,2.30706,0.46368615384615386,3.018406666666667,2.0093666666666667,2.49642,2.5335033333333334,2.5335033333333334,0.3812875,0.3812875,1.928584,1.9726400000000002,2.1459,1.962998,0.3812875,3.5916,2.501525,1.6375319999999998,0.6264625,1.6375319999999998,0.6264625,8.74857,2.4519466666666667,4.017333333333333,2.670533333333333,3.0366033333333333,3.1508933333333338,2.8886333333333334,3.521333333333333,2.5516,1.6993525,2.7352733333333332,3.1052733333333333,2.3544899999999997,1.635342,2.564550158730159,2.564550158730159,2.7701433333333334,2.12585,4.22901,2.28192,3.3815000000000004,2.663676666666667,1.481598,2.390665,2.350665,0.7848263636363636,1.71044,3.676895,1.728218,3.1361266666666663,2.5866266666666666,2.743175,3.89,1.6680833333333334,3.5824,3.0940433333333335,4.2067000000000005,1.210116,0.22868172413793106,1.2681228571428573,1.2681228571428573,1.037721111111111,2.9933633333333334,3.905533333333333,2.690136666666667,2.1789533333333333,2.1789533333333333,2.1278825,1.57615,0.987357,1.7039600000000001,1.7039600000000001,0.69360125,1.928584,2.8582366666666665,3.3150099999999996,2.3466525,2.1992599999999998,2.1992599999999998,2.1992599999999998,1.083018888888889,1.5186142857142857,1.5186142857142857,2.5123,2.802466666666667,2.5370325,4.015295,2.5062133333333336,2.4469499999999997,3.49246,3.900065,6.916752499999999,3.763135,4.52386,4.067333333333333,13.4722575,4.90731,3.47432,0.9356575,3.876585,3.605735,2.34239,3.704545,5.0332,5.6895826666666665,5.9496,0.4752529411764706,3.92221,3.27076,3.91366,2.45775,4.42565,4.40337,3.8027,8.31758,3.53454,3.909445,3.986845,3.2565186363636363,7.985419692307692,3.2477133333333335,2.6365666666666665,3.64421,4.170585,4.98281,3.81348,6.814284000000001,3.96803,1.37711,2.773695,0.90323875,4.851135,2.78628,2.684805,4.030445,4.207425,2.741625,4.615375,3.88985,8.4614,3.950365,4.548876,2.4384533333333334,5.05133,3.086465,1.4188125,1.4188125,3.452655,3.966675,2.267855,2.165165,4.09864,2.88451,2.81941,1.92566,2.0603175,2.879955,2.5488566666666665,1.13888875,3.307395,4.772335,8.4043,1.5825179999999999,2.798235,2.94055,3.237945,2.7945433333333334,8.19649,4.1439,3.5908333333333338,2.8931166666666663,4.01556,3.3608,2.9061133333333333,3.157643333333333,4.06081,3.92639,4.315255,4.17964,0.404532,1.4934866666666666,2.4615133333333334,1.7829975,4.481295,3.375895,2.7342833333333334,2.21157,4.70448,3.77255875,2.0940625,2.28475,0.9680799999999999,2.203145,2.46452,2.46452,5.27265,1.894975,2.849683333333333,2.335503333333333,2.0133933333333336,1.70386,3.11618,3.84107,4.9155,4.4214,5.0026,4.72847,2.78261,2.95815,2.06316,4.805745,5.4508,1.9622733333333333,2.9550366666666665,2.23173,2.4164833333333333,3.9757333333333333,2.4903033333333333,5.0309,3.818335,3.56296,4.255945,2.9362666666666666,3.616465,4.074025,2.24465,2.5460966666666667,0.4141228571428571,3.862766666666667,2.6092400000000002,2.9686,6.1326,4.65532,5.746339166666667,1.9016225,1.5843766666666665,3.054875,5.27125,6.48315,5.9944,3.02929,2.2582633333333333,3.287945,2.2036333333333333,4.537405,2.27961,2.274455,5.33185,4.99267,4.502785,1.71309,1.922715,1.055372,1.055372,1.086976,0.93532,0.677978,1.885246,4.345365,10.243850833333333,3.885095,4.29937,4.07298,5.6775424999999995,2.623935,1.65851,3.442196666666667,2.90527,3.63793,2.46636,2.6327766666666665,2.854456666666667,3.2118599999999997,2.3405833333333335,3.1806366666666666,3.3022666666666667,3.040843333333333,3.3917,3.3609333333333336,2.9721533333333334,2.7022933333333334,3.10549,2.3854,3.1365200000000004,3.0019666666666667,2.8706099999999997,3.3998000000000004,2.18294,5.639423047619047,3.236966666666667,4.143396,3.18553,3.0730166666666663,3.6836333333333333,2.802073333333333,2.9443133333333336,3.1175833333333336,3.1381599999999996,3.3371666666666666,3.2718666666666665,1.9778275,2.69764,2.8499866666666667,2.918175,2.918175,3.3277300000000003,3.03266,2.480376666666667,2.7857966666666667,3.2138566666666666,4.177333333333333,2.8297066666666666,2.693925,2.7312666666666665,2.848133333333333,4.5108625,4.9657,1.61513,3.566933333333333,3.6366,3.3379380000000003,3.263873333333333,3.738566666666667,3.5433,2.7794266666666663,3.3372580000000003,1.921894,2.9362380000000003,3.4235,3.358966666666667,2.5823,2.4292700000000003,3.878833333333333,2.9506,3.0786200000000004,2.4023075,1.1992716666666667,3.31113,2.6897233333333332,2.12916,2.544925,3.19349,3.1561,1.972626,5.631578,2.42505,0.9166359999999999,4.563755,1.8778291666666664,1.6574933333333333,4.407685,3.71354,3.275745,2.37392,1.4217875,3.546795,3.319145,2.72764,0.42294600000000004,2.14767,0.42294600000000004,2.062425,1.4217875,2.675685,3.759855,2.381865,3.19499,3.38263,0.49424666666666667,2.9677133333333336,0.926775,0.4294976470588235,3.941595,3.917585,4.78709,2.521125,5.4501,4.145065,3.723085,2.28389,3.9928333333333335,1.675334,5.82595,2.695345,4.264165,4.679455,2.9084066666666666,1.913,2.1276633333333335,1.346425,1.823635,0.8943625,0.8943625,4.472575,2.27223,6.049165,2.1434725,2.403765,1.92687,2.18369525,1.5736225,4.652555,3.6947875,2.121165,2.305703333333333,2.18369525,2.04928,3.4858877500000003,1.8741137500000002,5.814813333333333,2.1434725,3.28366,3.474485,3.0669866666666667,5.5601,4.84459,1.933055,2.048975,2.313805,2.323505,4.85246,5.43415,1.9519775,3.702765,1.5725633333333333,1.5812025,5.35485,10.18675,2.008173333333333,2.27795,2.4069966666666667,4.30875,4.200785,1.85408,4.70839,4.65109,2.564615,39.56301860714286,2.865936666666667,3.09276,0.4407,4.905491666666666,2.2042966666666666,0.9526944444444444,3.73915,3.65204,1.9471425,1.85314,2.3798566666666665,3.93456,1.3759485714285715,3.2286633333333334,3.73661,4.70681,0.9170210000000001,4.978215,4.934935,4.93111,3.0038666666666667,1.5957375,3.8218375000000004,4.45276,3.73727,3.134245,3.61166,3.963285,11.869339191919192,2.7836433333333335,3.210975,4.02658,2.780545,4.358685,3.2557,2.28187,2.95488,5.27105,4.81617,5.36515,4.94426,2.454815,3.516635,4.355435,3.595095,4.6783,4.60749,0.12214239130434783,2.30523,5.3344,2.73571,1.5596050000000001,1.1634499999999999,1.1634499999999999,2.468235,2.690865,2.735555,1.7095120000000001,2.86,4.390665,2.60616,4.477198333333333,0.5704721428571429,4.55263,3.56356,4.704585,4.808565,4.63835,1.23322,1.12110125,4.308166666666667,2.954753333333333,2.991766666666667,3.938804,4.126075,6.271395,5.3746,3.837735,3.595175,2.1671741666666664,1.5245566666666666,4.389905,0.31706666666666666,3.362715,3.77592,3.96634,14.39162,1.81537625,3.2840733333333336,0.63222875,4.52394,8.50652,3.33313,1.8271033333333333,5.88955,3.0995033333333333,1.064497777777778,4.389055,2.70595,3.036435,4.75526,3.483691527777778,1.0806575,6.62508,0.73703375,5.02575,3.278361277777778,1.4091575,2.113765527777778,3.24483,3.24483,3.94725,4.39357125,1.3593625,2.44573,2.82955,3.56951,2.88336,2.64449,3.226065,3.404215,6.703780666666667,6.31105,3.969845,3.316015,4.4589,4.622685,3.540525,3.385555,3.541745,4.097335,4.55244,2.5437066666666666,2.5591566666666665,1.6460733333333335,2.2993366666666666,2.316075,1.54229,3.355933333333333,3.5905,3.4749666666666665,3.127143333333333,2.5964899999999997,1.46631,1.5893300000000001,0.47719636363636364,2.810026666666667,1.6197714285714286,1.9822375,3.4318666666666666,2.5648733333333333,2.5761833333333333,1.00907875,2.304115,2.58253,2.82221,3.571695,5.1417,3.8843,2.942825,2.25104,3.37522,4.29934,2.48942,3.97087,2.071585,3.82979,2.820205,4.061155,1.3835199999999999,0.6166210000000001,2.3726775,3.333305,3.13407,3.972385,4.5503,8.574445,3.26953,2.3432833333333334,1.8129766666666667,1.7910879999999998,1.7910879999999998,2.8923966666666665,2.51338,5.0128,4.87459,3.604835,4.98956,4.488925,4.45251,3.2294625000000003,4.23519,8.105504999999999,2.49053,0.50167375,3.273756666666667,1.3190266666666666,1.0181214285714286,1.8490633333333333,0.781434,2.115845,5.164,5.08905,5.82113,0.96749,6.99343,2.0007,1.5482116666666668,2.50955,4.193945,3.32887,2.43827,3.7619,3.04215,4.1902,2.8956466666666665,2.7230333333333334,2.96085,6.67044,2.496745,3.972555,3.949556666666667,3.6082266666666665,1.5510466666666665,1.13376,4.31568,2.8217133333333333,3.29182,5.65227,2.68266,2.095705,2.4287275,3.353105,3.733966666666667,2.34516,3.9249675,3.133226666666667,5.2634,2.36333275,1.8127875,4.918995,5.48465,4.7018,4.304125,1.5728033333333336,2.36978,1.976145,3.317395,1.6746100000000002,0.9111250000000001,2.6811325,2.1020375,2.0025975,4.258115,0.8036075,5.7490375,1.4125675,0.7882445454545455,3.4776333333333334,4.193015,0.6678271428571428,3.274403,3.203338125,0.8248033333333334,4.598265,0.18072833333333332,0.18072833333333332,0.18072833333333332,0.18072833333333332,0.18072833333333332,0.18072833333333332,1.854516,3.904045,1.854516,1.854516,1.8217466666666666,0.18072833333333332,0.18072833333333332,3.2393466666666666,2.61482,3.347905,3.29679,2.317065,3.5543,1.3910442857142857,1.6733660000000001,3.394952,1.461492,2.8183666666666665,2.660540888888889,6.019643333333334,4.23705,4.12094,6.5654,4.561665,4.43892,3.690315,4.108935,7.3079875,4.034866666666667,3.7410666666666668,2.5114266666666665,5.29638,2.6203233333333333,2.1313325,1.8653166666666667,4.68187,5.55215,5.10935,5.26995,5.59695,4.438265,4.6877,0.7361554545454545,0.7184357142857143,0.7184357142857143,4.680805,2.3826933333333336,3.900395,1.0392442857142856,4.563445,1.4689999999999999,2.3164166666666666,2.5948599999999997,4.536766666666667,4.536766666666667,6.86205,4.48323,1.4079816666666665,9.985201666666667,2.95191,1.2535888888888889,4.99726,5.01265,3.773685,3.021955,2.78235,4.3670333333333335,0.7839733333333334,3.252636666666667,3.3060533333333333,3.8813333333333335,3.2574233333333336,1.5018399999999998,1.4625899999999998,4.640763333333333,3.215666666666667,3.0419733333333334,3.4471333333333334,5.285585,3.2862475,0.76305,1.7485600000000001,3.7249666666666665,2.172515,3.807733333333333,3.3867999999999996,3.1264633333333336,3.5428333333333337,3.0857466666666666,2.5384100000000003,1.0986533333333333,2.9965266666666666,2.5278633333333334,3.603385,3.234405,3.878325,2.71393,3.235113333333333,2.762975,1.534644,1.9705666666666666,2.859841904761905,3.567766666666667,1.839496,3.1369900000000004,1.8426833333333335,3.7292,5.33813,4.859336666666667,2.56055,2.5458,2.758375,2.4629925,1.6336142857142857,2.219755,3.3356785714285713,2.4219425,3.5281333333333333,2.938425,3.7826666666666666,3.096395,1.3039111111111112,1.2580675,1.7907,2.16662,2.952503333333333,3.4499,5.2011,7.61463,2.746895,5.2818,3.940925,15.640524666666666,0.4993605,11.092794999999999,0.85914,3.237595,2.530483333333333,1.9370399999999999,2.923645,1.5983420000000002,1.444156,2.49795,1.2315099999999999,2.796479333333333,1.98877,2.9374933333333337,2.1183333333333336,2.7394966666666662,1.5759400000000001,0.6402975,3.294356666666667,2.4705966666666668,3.10638,1.083018888888889,3.5574333333333334,0.7328183333333333,0.35534615384615387,1.98942,4.66892,4.493775,4.565565,0.7859627272727273,4.015235,4.681255,1.133615,2.371405,5.249193333333333,3.354735,3.77323,3.889085,3.90434,1.88488,3.940015,2.7161566666666666,2.918715,3.474425,2.7997,2.888545,3.87713,3.21579,3.56624,2.08604,3.366225,4.684675,1.2441633333333333,4.667655,2.2227775,4.01431,5.194976666666667,1.93119,2.7790199999999996,2.9623666666666666,6.014851666666667,2.4748,3.30485,5.21925,4.017333333333333,4.054865,1.82512,2.6575,4.507235,3.6167,3.966475,3.6178333333333335,3.1986333333333334,2.861416666666667,4.150566666666667,3.1338966666666668,2.6611166666666666,2.6799999999999997,0.43231277777777777,2.4026875,2.1560125,4.60493,4.7892,3.1299833333333336,2.8755366666666666,3.2230366666666668,7.91024,3.6262525,3.96917,2.979006666666667,4.02307,3.13541,3.6367891666666665,2.86882,2.19764,2.7451633333333336,6.41115,4.58062,2.1052733333333333,3.317305,3.025775,2.59878,4.656824,1.763438,6.100896666666666,3.818205,4.87298,4.78261,6.337,3.698275,6.747495,3.594115,3.29577,0.6569142857142857,2.3215475,1.5587175,2.9862933333333337,3.2024012500000003,3.98972,3.831295,5.3353,2.620913333333333,4.71862,3.6791666666666667,3.8626,3.2798200000000004,4.629915,4.542675,4.507945,2.591746666666667,5.62221,4.53689,1.4243966666666665,5.2581,3.53665,2.74598,2.25629,2.27943,4.522324,1.3052528571428572,2.36686,1.9749675,3.822445,4.295455,2.50871,3.28477,2.9138780000000004,2.54449,4.01568,1.317682,2.2602233333333333,2.37999,2.801826666666667,2.4887133333333336,2.6666899999999996,2.7238,4.0246,2.9680066666666662,2.7990766666666667,4.105935,2.398465,3.73694,3.60212,1.2922354545454546,1.2922354545454546,4.579105,2.8657,1.8591475,1.298235,2.20067,1.9950675,1.2560499999999999,1.5222133333333332,0.651602,1.6113366666666666,1.4888033333333333,2.9300200000000003,2.25316,1.8456400000000002,2.0196733333333334,2.3371033333333333,1.4558900000000001,1.8010933333333332,1.79765,2.5559,4.07659,2.86006,2.9404266666666667,2.685275,5.578049999999999,2.892775,4.206705,4.00058625,2.077655,4.09001,2.962375,1.91953,3.59917,2.1943625,2.839635,3.67225,1.98657,4.1485,3.798455,4.1884,3.3715333333333333,0.8257355555555556,4.97298,3.831475,3.32842,3.71201,2.36618,4.54694,4.78105,5.08263375,9.233128333333333,3.77113,4.434695,2.9528433333333335,3.65141,4.569695,2.60145,2.778125,4.126615,2.2457675,5.653404999999999,1.86511,2.733545,6.411491666666667,3.134183333333333,4.2776119999999995,1.2982185714285712,4.532285,4.737655,3.1531866666666666,4.6536,5.0394,6.34563,15.875914642857143,0.628929411764706,1.0674766666666669,3.2629333333333332,4.2577,3.659165,2.1465175,3.400395,4.059005,4.796295,2.538625,4.62371,1.7836166666666669,1.7836166666666669,5.37565,0.7596900000000001,1.7811240000000002,3.03255,4.005215,0.37599461538461537,1.9350533333333333,4.039383083333334,1.1466516666666666,3.0037933333333338,2.72466,2.939595,7.71587,2.5127966666666666,3.6279333333333335,1.9826499999999998,2.2529666666666666,3.9851875,3.52965,3.557735,7.269122333333334,1.987325,2.8644,4.53591,6.62281,1.9633666666666667,2.308683333333333,2.62092,1.35876,2.49115,1.7178,3.95217,3.74509,1.56485,1.9465013333333334,1.9465013333333334,2.80002,5.58155,4.13791,3.877685,4.48088,4.326425,3.24922,3.77187,4.273965,3.469595,4.330273333333333,4.020515,4.498895,0.885931,0.363033125,5.20115,3.872285,2.43138,7.98014,1.5250633333333334,4.7377,3.928755,0.362935,2.1105066666666668,1.30942,1.88249,1.9305,5.437278,3.2451,3.08092,4.91225,5.31125,4.594225,0.6009815384615385,2.058515,0.604894,5.817591666666667,1.510772,4.897915,1.98076,3.1811425,3.317585,4.052675,4.06717,5.1202,0.8728172727272727,3.099105,3.91766,1.908065,1.69559,3.723735,3.095855,3.77378,3.8487025,5.416904761904761,4.63527,5.6487,2.7521799999999996,0.6075566666666666,3.4565,3.751115,0.5620846153846154,3.865955,3.804375,4.080905,2.685405,2.6412766666666667,5.52185,3.178135,3.2855,2.169675,3.986225,1.6204740000000002,3.27184,3.743445,0.6032684615384615,3.94359,3.855335,3.164365,3.85001,4.33419,2.712565,3.82716,0.6302730000000001,3.06164,3.7516355555555556,4.61655,3.6185333333333336,2.57225,3.4674333333333336,2.57225,5.0225,3.13479,2.9742633333333335,1.5348133333333334,3.0716433333333337,1.80186,4.266895,2.887723333333333,5.22692,3.1598466666666667,2.7381499999999996,3.0390566666666667,2.383000892857143,2.383000892857143,2.383000892857143,2.2885033333333333,1.0575833333333333,4.544225,2.37176,1.6759266666666666,4.0822666666666665,2.4479533333333334,3.075606666666667,4.14734,5.39475,3.63156,1.94145,1.034862,4.094345,1.934082,2.2803733333333334,2.943985,3.300915,2.0485975,3.46642,2.745035,1.674092,4.83037,4.17432,3.461455,3.75038,0.7511822222222223,2.425733333333333,4.399915,7.563345,3.90807,3.02798,2.68861,3.44323,3.781705,1.64881,2.5031,4.6671,2.13451,4.32597,3.50263,5.47515,8.496073333333333,4.070875,3.76602,3.36293,4.723505,3.98759,3.3232575000000004,3.3232575000000004,3.997635,3.87235,4.112585,4.11051,4.17332,4.43161,4.04224,1.12653,4.256085,4.26132,5.34065,7.76884,5.1152,3.616985333333333,1.7343433333333333,1.4776033333333334,2.38850875,4.84779,3.908855,5.14559,2.32895,4.603935,5.10545,5.10365,4.82421,3.02983,3.72283,4.2104,5.28555,4.66523,3.87518,6.757876666666666,4.69618,2.3430066666666667,5.3256,4.06218,4.04282,3.75857,4.592005,0.7723254545454545,4.22287,4.5219,1.2112414285714286,1.256072,5.0963,4.72272,9.0138365,5.25875,4.59893,5.99815,2.9378,2.57546,5.0549,1.59287,1.59287,2.667835,1.6176166666666667,2.9342941666666666,3.2907100000000002,1.948045,4.151495909090909,1.3548866666666666,1.982775,5.7409025,3.3694216666666668,3.52341,3.04271,4.111345,4.091295,3.0076199999999997,1.0309055555555555,4.02166,2.88559,3.9687,4.167255,3.6634633333333335,5.37595,4.863075,4.78049,3.96232,5.3877,6.46905,4.689105,3.33071,3.524355,1.8759725,1.8759725,3.853795,3.744215,2.49842,2.7103066666666664,2.090734090909091,2.55693,1.8792833333333334,1.8792833333333334,4.488995,3.525225,2.126165,3.58179,2.707925,1.801735,1.204475,1.0603077777777778,2.668175,0.44607684210526316,0.8815544444444444,2.849965,3.857485,0.43311727272727274,4.112035,1.9551459999999998,5.4765,3.438215,7.3936275,4.321775,5.302193333333333,4.60325,5.1837,4.09451,1.873265,1.912626,3.97277,3.014365,3.766415,1.3801500000000002,3.38522,4.460605,2.656955,2.592345,2.544995,4.1851,3.358785,3.158225,3.846965,3.65155,3.40459,3.263715,1.0674685714285714,1.904865,2.279215,3.196185,4.25017,7.57766,0.90216,1.5579733333333332,1.5579733333333332,1.916378,3.920035,2.73259,3.06082,5.4931149999999995,2.9290866666666666,1.2867875,1.2867875,1.2867875,2.779805,2.934071,4.715695,3.23982,4.17714,3.37994,3.6498,2.983465,3.2464083333333336,3.685175,4.091565,2.89947,1.2560499999999999,2.948835,2.89947,3.67648,1.4416833333333334,1.95822,1.934935,5.596879333333334,2.893935,6.1706710000000005,5.596879333333334,3.276736,1.8086166666666665,1.8086166666666665,2.50633,5.25971,1.8086166666666665,2.05613,5.66779,2.475045,2.729045,4.48098,3.654135,4.22323,1.86984,3.148875,4.74204,2.1071633333333333,2.34136,3.92038,1.86984,2.4433,1.98229,5.95086,2.58461,1.11809,2.441685,3.27231,3.126186333333333,1.95282,1.940293,3.61584,1.8662313333333334,1.643635,3.27514,2.24622,3.2774,3.70125,2.2294066666666668,2.505655,2.04592,6.25222,2.23528,3.031455,3.35011,3.35011,8.839453333333333,1.0573733333333333,2.80974,2.51106,3.102685,2.327455,1.1664233333333334,1.1664233333333334,3.71147,2.303075,6.460175,1.959095,3.497905,3.44889,6.73185,2.69986,2.43283,5.189655,5.189655,2.30525,1.6204225,1.19396,1.19396,1.6204225,1.7960099999999999,1.2065533333333334,1.1899366666666666,1.4826300000000001,2.0529466666666667,3.796915,1.935775,3.13429,3.05277,2.803475,2.78526,3.03967,2.28976,3.322866666666666,3.322866666666666,6.01302,2.382735,3.00126,3.14828,3.47127,2.65674,2.798365,2.793195,5.7164275,2.0952025,1.4582030000000001,1.275763,2.170508,5.50044,4.011048000000001,3.44759,3.21568,1.83522,1.83522,1.83522,4.11862,2.43616,1.1899366666666666,3.187025,3.565815,1.255175,5.4537125,3.1340225,6.44279,3.7012,1.69431,3.49276,2.5929733333333336,1.999025,3.41596,4.00998,3.28386,1.589305,2.167545,2.793495,3.17937,5.13262,2.03588,3.412265,2.88528,5.85438,4.16159,2.05846,2.17849,5.63151,5.22182,4.98175,5.50267,0.97902,0.97902,2.5887160000000002,2.5887160000000002,0.859886,5.22537,2.79016,5.30482,4.43512,4.79391,2.213055,4.286875,4.286875,2.138585,3.366815,3.70299,1.22964,4.30255,3.25279,3.03678,2.72758,4.5519,2.384595,2.218745,3.347795,2.87196,2.985885,4.56942,2.62794,1.59246,3.55973,5.67169,5.36519,4.52208,2.86668,3.41913,2.81596,5.21666,2.68409,3.43117,2.50404,6.91025,3.94507,2.29072,2.43489,2.58431,4.61476,2.412825,2.85039,2.830695,7.29477,4.63873,3.11064,2.80509,2.23081,6.55981,2.956285,3.065075,4.82964,2.95329,3.00126,2.39824,3.03782,1.8839966666666665,1.96442,1.6382899999999998,1.73184,1.7835766666666668,2.0717733333333332,1.53831,2.15546,1.86796,1.8839966666666665,3.80149,3.75705,2.07797,1.63595,1.63595,3.8744733333333334,3.8744733333333334,2.8005066666666663,2.8005066666666663,3.017945,2.01853,1.71212,4.32573,2.2032100000000003,2.2032100000000003,2.3906325,2.3906325,3.09734,1.805575,4.40677,2.32635,3.194815,1.9606066666666668,1.9606066666666668,1.804725,3.92521,5.43075,1.4416833333333334,4.3527,2.2294066666666668,2.258965,3.71372,3.115935,1.841375,2.276115,6.86689,2.195945,5.93714,3.26298,3.48583,3.103995,2.643005,6.16188,3.05977,2.590535,2.5992042307692307,2.81456,5.27278,3.57689,1.520112,1.520112,3.57023,4.87909,4.70542,5.29931,2.750795,2.866975,1.853925,2.930645,1.813605,2.808725,1.95572,0.760694,0.760694,0.760694,1.9975208333333332,4.923183333333333,1.9975208333333332,2.4958,3.43084,1.63691,2.266255,4.46692,3.12614,5.09711,1.8039399999999999,5.0941,1.8039399999999999,1.8039399999999999,2.153895,1.77354,2.311505,6.15204,2.311505,2.50233,4.07333,2.182895,1.656035,2.67507,2.9898066666666665,3.1930891666666668,3.059203333333333,3.53545,1.3557566666666665,4.119735,0.7448681818181818,4.32613,4.249615,2.7508625,2.7508625,0.7443254545454546,3.961,2.6632266666666666,5.6256,4.994845,4.087315,5.2837,4.15147,3.959495,5.19735,4.113335,4.21495,3.861555,3.89657,5.10995,5.025,3.41826,3.39539,4.14307,2.4184466666666666,1.1922000000000001,4.383755,3.540125,3.418195,1.33551,3.802495,3.821955,6.26272,1.17012,5.3208,4.170965,2.183865,2.05599,3.20834,3.567575,1.67444,1.520112,3.937275,5.01255,2.790665,4.66949,3.0362,1.13971,2.93587,1.2220742857142857,3.10059,2.1138333333333335,3.1595833333333334,1.8885675,2.46369,4.16666,3.21347,4.50157,3.409545,2.2277625,4.98748,4.32527,3.069795,5.38555,4.24951,2.726226666666667,5.71435,4.86909,3.126231666666667,2.6367966666666667,2.734075,3.1746933333333334,3.0835933333333334,2.8506400000000003,4.710485,4.25783,3.75821,2.4310233333333335,2.6593566666666666,2.413603333333333,2.4927766666666664,2.29743,2.3399566666666667,2.31313,2.28182,1.38996,2.998419666666667,1.1834025,1.8470525,1.5970425,2.763,1.5312575,1.889585,3.890015,4.664355,1.959785,3.99961,3.77337,6.004398333333333,2.0448133333333334,1.59985,6.78595,3.217285,4.74507,4.11315,3.789365,2.072125,3.55022,2.4875625,3.020525,4.367585,0.7178141666666668,4.10134,2.14084,0.797050909090909,4.935605,4.40177,4.062365,1.7983357142857144,4.734155,5.5213,2.6770533333333333,2.743016666666667,2.4830566666666667,2.202463333333333,0.58463,3.1410633333333333,2.989275,4.827155,2.4488025,2.01118,3.697745,1.033175,1.799255,1.799255,2.824985,1.799255,4.068735,2.83416,4.459385,4.38079,5.8506,13.618915833333332,3.221083333333333,4.831165,2.740735,4.634385,3.124265,6.70574,2.929266666666667,4.710495,4.877915,3.80636,1.1372233333333333,4.648825,3.07807,2.6606466666666666,0.9888155555555556,2.1300625,3.322005,7.144465,4.342775,2.8388233333333335,4.59044,3.379633333333333,4.17081,4.573985,4.50684,2.88766,2.89064,3.95344,5.7762,2.450955,4.4226,2.041365,2.041365,3.12003,4.97077,1.13754875,4.141266666666667,2.2196125,4.56702,2.52547,2.4366766666666666,2.8770133333333336,2.3416633333333334,0.7074592857142857,3.500205,2.823933333333333,5.17435,4.7072,0.23600875,5.0736,4.53745,4.026295,6.783878333333333,3.08179,2.8733866666666668,2.1839866666666667,3.1038366666666666,3.0092666666666665,1.3786966666666667,2.8759766666666664,2.57828,1.3790733333333334,3.2960433333333334,3.06319,2.7186066666666666,3.107013333333333,1.36179,4.2525,2.286435,4.94368,3.96181,3.78302,1.6247299999999998,2.5416766666666666,1.2644725,2.040995,1.2644725,5.09625,3.559366666666667,1.5292400000000002,2.34932,4.050825,3.82638,2.947465,3.910085,0.35128550000000003,1.4236658333333334,3.84088,4.243145,6.2639,2.1034775,2.802376666666667,3.0089900000000003,2.4291233333333335,2.63485,3.62373,4.849485,2.4168975,2.3480433333333335,2.8383333333333334,2.6810833333333335,2.6422433333333335,4.328595,2.205755,4.32451,3.776440833333333,5.90175,7.697145000000001,0.7393933333333333,0.8164859999999999,4.097165,6.605315,1.9863199999999999,3.505945,1.4195216666666668,1.4195216666666668,3.458075,0.4449444444444445,3.551905,3.693615,2.667145,3.905335,3.26258,2.65659,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,2.29716,3.05088,3.9246516666666666,3.162961666666667,4.4068275,6.023475416666667,2.84229,2.21901,0.9731516666666667,3.422675,0.68576375,5.334205,3.115195,2.15878,0.68576375,2.641705,2.681085,0.8734675,3.81117375,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,4.2082,1.5567375,4.594495,4.421005,1.7262080000000002,4.821725,4.29306,5.376,4.889005,3.5121128571428573,3.310035,4.50511,2.074685,5.44266,4.424585,0.7506857142857143,1.4232928571428574,1.3586071428571427,3.3396666666666666,3.3396666666666666,2.99012,3.869065,4.517655,3.61737,4.02807,2.8496966666666665,1.9952966666666667,0.4302428571428571,4.096565,3.08717,2.70766,4.24806,3.2911,3.11309375,5.0107,4.562315,6.6058825,4.17641,4.565385,5.80335,4.39082,1.2967714285714287,3.09494,5.1947,33.49826589141414,1.252805,4.4202,3.03112,4.55261,4.089305,5.1397,5.096,0.4015290476190476,5.2895,4.49991,2.0200175,1.90054,3.91099,1.582035,2.512035,2.149685,1.7254825,2.86401,2.4274766666666667,2.82349,2.74103,0.6016792307692308,3.170585,3.770445,0.3703231578947368,2.5455466666666666,2.5854,2.73174,3.86521,1.846255,4.39094,4.0422,3.098745,3.6395,3.056195,4.27838,2.93425,3.894105,2.15611,5.1947,3.553135,3.271045,2.85728,1.766478,3.786485,3.465545,7.050926666666666,3.41637,4.832485,6.299237499999999,5.307513,2.291425,4.55386,5.989212500000001,7.58412,2.55506,2.46631,4.81046,5.600783333333333,4.389055,3.43387,5.372835,2.68355,1.66662,2.136975,60.06487115644504,5.02615,4.337175,2.619,0.8305580000000001,3.11673,2.89344,3.4383,0.8325222222222223,4.67883,0.7849644444444445,7.670967857142857,1.934082,3.4128666666666665,1.7506160000000002,2.72885,2.56019,3.03904,2.4157800000000003,2.29545,3.5338999999999996,1.5099600000000002,5.358345,4.0881,1.270245,2.91174,1.39081,1.5168125,7.65278,5.90675,3.503875,4.29289,5.2616499999999995,1.3978057142857143,3.480566666666667,3.16469,1.6069325,5.55935,3.57517,4.007695,1.713855,2.912605833333333,3.4705333333333335,3.94628,5.5776,4.54026,4.46377,2.509525,3.89992,4.5309333333333335,3.1799,1.44049,4.395455,3.3176366666666666,4.28916,5.01775,3.903535,3.903,4.750125,4.350235,4.3156,4.502045,4.035195,3.1792233333333333,3.943635,4.196825,3.1396,4.133615,3.749225,1.4669599999999998,1.4669599999999998,4.312165,4.788935,5.0915,3.673295,4.60388,3.4098333333333333,2.73429,4.59753,5.3905,0.7243772727272727,5.47105,6.8168825,5.56495,5.6575,1.1148666666666667,3.118,1.0442483333333332,1.0442483333333332,1.0442483333333332,3.66343,3.485,2.64473,3.4751,0.962216,4.992805,5.265,3.01681,1.5857375,2.09179,4.089355,3.87659,3.731,3.340118,6.76995,3.54912,2.52085,4.78871,6.9086,2.21878,4.11144,3.78742,3.27418,5.41775,4.106015,4.960675,6.16195,3.08904,3.729858888888889,1.7928866666666667,1.7928866666666667,0.7077436363636364,8.365663999999999,2.17355,5.91605,5.56035,4.19899,5.05175,3.68675,2.9936716666666663,4.76385,7.6683787500000005,5.709586666666667,2.2874866666666667,4.336825,0.988678,3.737465,2.0445733333333336,0.8754855555555555,1.2236014285714287,2.7340666666666666,2.9458966666666666,2.8115,1.14461,2.6521433333333335,3.08919,0.9219133333333333,2.788273333333333,3.1933966666666667,1.666734,1.751284,2.9995366666666663,3.0313966666666663,2.8382566666666666,2.483826666666667,1.7724579999999999,5.1463,4.425585,4.06584,4.347365,5.2573,3.24732,4.36942,6.4181,5.1545,4.26269,3.851185,10.59624,8.550625,2.884453333333333,3.46173,1.8454566666666665,3.823925,3.23275,4.415955,1.0423,3.912255,3.35463,1.52865,3.805515,2.9657899999999997,4.260885,2.893605,3.864275,6.5973,7.72256,3.965455,1.5252283333333334,1.5252283333333334,1.5252283333333334,4.83353,1.1688633333333334,1.4685625,0.47047555555555554,4.400763333333333,2.98509,3.615955,1.0199500000000001,1.20652125,3.04525,4.307775,3.796905,16.65790769047619,4.1137375,4.56245,6.135555,2.8497800000000004,3.59692,3.17832,0.9157166666666667,1.5355,3.858315,3.577,4.56667,4.596135,4.47219,3.85496,2.754665777777778,3.380205,5.29155,0.552995,4.68434,2.229065,4.5503,4.797865,3.5816,2.41369,4.004231666666667,1.82249,3.685835,6.28735,3.0299366666666665,3.4011,4.063475,4.11879,4.58871,3.898675,3.50717,4.27106,4.757545,4.857595,3.76156,4.59357,3.90641,1.15211,1.409185,5.917262333333333,6.19325,4.144415,4.95864,2.463305,2.7489600000000003,2.76702,5.616253333333333,1.9912325,2.005435,3.005326666666667,2.94131,3.3451,4.50149,3.142555,5.175296666666666,1.1501275,4.58302,0.969195,4.044285,3.32716,1.6841516666666667,4.481995,0.9569144444444445,5.0852,5.7006,5.0694,4.336455,3.8076499999999998,3.932995,2.99546,5.22705,5.95635,2.981883,4.033475,2.38614,2.639565,1.997745,2.53187,3.29059,5.09745,1.06032625,4.444125,1.330335,3.37219,1.6017333333333335,1.06032625,0.19852675675675674,3.731285,3.073205,2.266789583333334,1.94106,2.70544,1.1009475,3.96064,3.46889,4.760165,2.5922966666666665,6.20825,6.6363125,2.6929533333333335,3.4324666666666666,2.6686033333333334,0.82585,2.4945999999999997,6.22055,4.407585,5.5011,4.805695,2.07407,1.43494,4.0130075000000005,1.5956175,2.11999,1.7014675,1.743005,1.7501475,1.9776575,2.0213175,2.29946,1.797095,1.4626000000000001,1.3794025,2.040765,2.6796,2.2800975,2.2224866666666667,0.5303166666666667,1.24801,2.825976666666667,3.363633333333333,1.9812075,1.8046466666666667,1.55082,3.875635,2.2412199999999998,2.668145,3.20768,5.4599,3.77811,3.014943333333333,4.33507,1.666202720588235,3.66654125,23.66335,4.5919533333333336,5.85015,4.326015,2.25585,3.91296,4.76063,2.140995,4.97934,3.250716666666667,0.7976675,3.10506,4.62262,3.82667,4.104095,1.4669966666666667,2.0331533333333334,2.37432,2.18207,1.4845857142857142,3.4823,4.902115,4.252825,3.228185,4.018135,4.858905,3.52586,4.682465,1.2705625,3.22381,4.146485,4.91692,1.8060680000000002,3.2088,1.7739500000000001,1.7739500000000001,3.60749,4.6982,3.0051233333333336,3.05607,4.259755,3.852925,6.6241775,4.552125,2.274755,1.5355,2.72061,4.317995,2.9759333333333333,2.564550158730159,2.564550158730159,3.3881666666666668,4.905715,3.68879,5.071900555555556,2.35415,3.2797866666666664,0.6210466666666666,0.6210466666666666,0.6210466666666666,3.54627,3.800195,4.086476666666667,5.7121,2.513375,4.795095,4.91396,4.967455,3.31987,5.19635,2.536775,1.349852857142857,4.359705,3.90694,0.49383,4.22,4.827005,1.5879516666666669,5.1413,4.959275,4.62534,4.43847,3.856565,2.85598,4.502325,1.691338,4.38921,1.6064666666666667,4.2476,5.94335,1.1541225,3.117135,7.050815,3.70967,3.3310633333333333,2.2197025,3.852725,5.768,3.1089300000000004,7.716006666666667,4.094245,2.17332,3.1230233333333337,2.7404333333333333,2.5796666666666668,2.7650799999999998,1.8317233333333334,5.2154,0.6429366666666666,1.9032125,1.9032125,3.046015,3.71555,2.3165,3.117215,4.36551,4.9334,4.587155,1.3364500000000001,4.677718809523809,4.458085,4.81665,3.696815,4.060501166666667,3.5657885,0.49471266666666663,2.7220814285714288,0.96205625,0.49471266666666663,4.208325,0.8465,4.158685,3.880335,6.5788530000000005,2.1504733333333332,1.04165,1.137464,2.23755,2.9385833333333333,1.5569566666666665,2.4645766666666664,3.327965,3.745865,2.0505999999999998,2.3501566666666664,4.414955,3.21104125,4.045625,6.10515,3.44275,4.927745,6.685693333333333,4.676715,3.586805,4.43203,3.70731,4.49924,5.1025,5.93716,5.2777,2.377003333333333,0.998418888888889,3.756595,3.87784,3.962775,4.39121,4.158485,5.1556,2.6203433333333335,2.5017666666666667,3.0628833333333336,2.4802,2.1581733333333335,2.8835866666666665,3.1208066666666667,2.497383333333333,3.780215,5.4796,4.230305,5.3751,2.582996666666667,3.2858033333333334,2.89855,0.7102978571428571,4.12208,3.767025,4.55364,3.0344166666666665,5.494143333333334,3.17732,4.562545,3.971275,0.5944692307692307,0.5487978571428571,4.367165,2.7619015,3.095915,4.629595,4.488865,1.700646,5.3422,4.2577,2.6286133333333335,2.67156,2.33279,2.1325416666666666,3.514466666666667,3.2710266666666663,3.1241,3.0200633333333333,3.4949,2.639375,3.112826666666667,3.7648333333333333,4.386025,0.5276825,0.5276825,0.5276825,3.225180166666666,3.455633333333333,3.6591666666666662,2.753073333333333,2.9367033333333334,1.12653,2.9937666666666662,3.0427,1.8606975,2.6568533333333333,2.39216,0.9731322222222223,2.898375,4.687375,9.746607916666667,1.5169464166666666,0.6133390000000001,3.86673,0.6133390000000001,0.6133390000000001,0.6133390000000001,0.6133390000000001,2.1802575,3.910384,3.989025,4.977375,6.0358,2.8319033333333334,2.7815166666666666,2.9164262499999998,3.263605,4.83179,1.052475,2.327296666666667,3.09558,2.529506666666667,2.85717,3.651505,2.2034933333333333,2.378015,1.1622444444444444,4.93734,2.85034,3.41652,0.8668975,0.57756,0.57756,0.9092549999999999,1.7761524999999998,0.9092549999999999,0.9092549999999999,0.31192,0.31192,0.9092549999999999,1.4757933333333335,2.4933433333333332,3.102445,3.07433,2.58662,2.7014633333333333,3.24265,2.7721733333333334,4.521075,3.609395,1.89148,2.2385066666666664,1.7621125,0.17196493372606772,0.17196493372606772,0.17196493372606772,0.17196493372606772,2.49044,2.4480166666666667,0.885764,5.25935,0.7852972727272728,1.669228,4.5530225,5.2209,4.28581,2.74259,4.416245,3.849695,1.7266833333333331,1.1900625,3.83067,4.56781,6.3006,2.34389,1.37425,1.8972066666666667,3.0934933333333334,1.4870999999999999,2.7532766666666664,2.934336666666667,3.25672,4.40274,4.08095,3.0742,4.99793,2.41299,4.105465,5.76255,3.997765,4.119695,4.68311,5.288403333333333,4.125449166666666,3.0109945714285713,5.032086666666666,4.36086,6.56255,4.44624,4.52771,2.2753,3.00686,4.18549,4.855315,4.440105,3.858155,3.655415,4.020885,3.88402,2.47724,5.44095,3.547925,7.5136325,6.12465,5.88625,4.850735,1.4621142857142857,0.995433,0.6295146153846154,1.761356,4.828735,5.5114,4.007445,1.6507619999999998,4.175405,2.94128,5.0277,5.3713,6.160077,4.20448,3.105385,1.6273579999999999,5.2774825,3.953575,3.13496,1.714515,0.99793,3.80719,3.24606,3.515955,3.58653,2.268495,4.463475,1.5609566666666668,2.9492100000000003,2.385235,4.77277,6.0124,4.92754,2.2240975,1.52651,5.70335,2.9238033333333333,8.92252,2.906175,5.2209,5.86435,4.685335,5.3732,3.55838,5.23895,2.1998075,4.05897,5.0665320000000005,2.578825,4.2939,4.509365,7.12077,5.3216,3.2849866666666667,4.20356,3.849975,3.21104125,3.66743,5.1593,5.79545,2.547375,3.0395966666666667,3.3647666666666667,2.32919,2.475615,4.388,5.9065,5.17625,4.67119,5.0126,4.43332,4.949905,0.6475907692307692,3.091836666666667,1.2470414285714286,31.440432033385093,2.747875,4.5359,2.96958,4.64634,1.6796019999999998,2.528653333333333,3.06918,1.5345900000000001,1.5345900000000001,1.5345900000000001,1.5345900000000001,1.53459,3.40517,0.35511444444444445,7.800195416666667,0.35511444444444445,4.38629,4.927605,2.0191475,5.36875,2.920675,3.9984546666666665,2.3147333333333333,2.5209699999999997,2.7335933333333333,2.174603333333333,0.6293446153846154,2.61468,0.7536041666666667,3.294973333333333,2.1951233333333335,2.426932,1.1977716666666667,2.426932,6.1296,7.97584,4.760975,4.206585,5.55855,5.9671,7.42431,3.22367,1.44183,1.44183,2.4075,5.155,3.71422,4.530085,6.023443333333333,4.084985,2.61472,4.121915,3.44041,3.55532,2.22189,0.8259719999999999,2.62251,3.847615,4.0416,5.2108244444444445,2.0099525,3.66872,1.250626,3.258025,1.210996,3.3795333333333333,3.05172,2.6320433333333333,3.3115,2.73907,5.0211,0.6914184615384615,3.482005,3.631933333333333,2.661773333333333,2.368723333333333,4.1621625,3.4904666666666664,2.03966,4.85865125,3.57753,4.986695,3.954115,3.566825,5.75435,5.02285,2.2360366666666667,5.64205,2.3694438333333334,1.8351133333333334,3.1198266666666665,2.5896966666666668,3.024846666666667,2.48069,1.8169266666666666,3.3165104090909088,4.298655,3.1874712499999998,2.4353700000000003,2.4353700000000003,2.523455,3.88147,4.070535,0.7024363636363636,3.24256,3.344395,9.0561,0.8708836363636364,4.38611,3.81847,5.49115,3.74374,3.76928,2.290995,4.10997,2.833075,5.70115,2.748241666666667,3.87129,2.7414366666666665,3.731865,2.4863633333333333,3.64994,3.782925,3.93637,5.284063,3.284615,2.118605,5.2201,2.56881,4.58711,4.766015,4.756815,4.477275,4.00479,2.968425,2.1725033333333332,2.8919200000000003,2.62307,2.7495500000000006,3.1991833333333335,2.7209280952380954,4.9688099999999995,2.947086666666667,2.5799733333333332,6.694826666666668,5.190578333333334,3.84785,3.136696666666667,3.8285666666666667,4.0931,3.445365,2.0583325,3.8491375000000003,5.0545,4.79042,1.4685766666666666,4.08672,2.5451466666666667,6.9110949999999995,4.78339,8.932524444444445,4.136135,3.722855,2.1428,4.13891,5.7164375,7.80547,4.19003,5.80957,3.74327,3.271715,3.80215,1.763438,4.324642,1.4349166666666668,3.674615,4.63047,3.4191333333333334,0.8399,9.128723333333333,1.2354888888888889,1.943425,2.45159,1.86686,3.4964333333333335,1.35437,3.68717,3.655335,2.3804933333333334,4.301,1.2026675,3.74342,1.3853466666666667,3.0169055,3.894335,5.63545,1.6303375,5.901047083333333,2.4651696666666667,8.03954,4.421465,2.8356,3.98351,3.3464,1.2319020833333334,7.70753,3.0746,3.298845,2.43452,4.118545,2.145525,3.0199425,2.17079,4.02676,1.34212,5.6163,2.77958,4.157665,0.813189,1.9074213333333334,3.789655,5.1073,5.20801875,1.524578,1.524578,5.8067,4.422935,5.4415,3.8081,3.40702,8.586885,4.493885,5.54485,4.100325,2.46001,2.2483413965693804,0.37159749999999997,0.19869548387096775,0.61671770609319,1.2600261904761905,0.6614083410138248,0.19869548387096775,1.4120125000000001,0.41802222222222224,1.6316236904761905,2.02873020609319,2.0321475,2.2494075,2.2810266666666665,5.2662,6.375323333333333,5.02695,5.4163,4.708535,5.09325,1.2333066666666668,5.0033,3.955425,5.74715,5.1254,5.0771,5.7606,5.86075,5.5281,1.31956,1.4079542857142857,1.877158,6.062937,1.332492,5.3833,4.875855,7.027258333333333,4.946605,5.55245,4.641035,4.677635,2.6025,5.41505,5.3699,4.381766666666667,5.1785,6.159159166666667,5.6707,3.81789625,4.317545,3.778866666666667,0.991789,3.6862666666666666,4.360865,1.2263225,3.646333333333333,5.06575,4.441955,4.957545,2.506175,3.189835,2.8434399999999997,4.69861,2.2080825,3.78969,1.28382,3.230955,3.77638,4.046105,4.220855,3.361545,0.6036316666666667,6.23945,1.0044625,3.822835,3.079776666666667,3.718925,2.05093,3.81977,3.783188205128205,3.3409,4.47733,15.47016676190476,5.30613,2.1586075,8.26105,1.4657925,3.77529,2.944646666666667,2.7786933333333335,2.114263333333333,0.21039521739130435,2.7826466666666665,4.36419,1.786768,2.2276000000000002,3.3968000000000003,1.848735,2.2719,1.5834285714285714,3.52615,4.76506,4.672645,3.19232,0.45373714285714284,2.360603333333333,4.71479,2.81107,3.93407,4.50333,4.319835,5.44135,0.47758882352941173,2.4786333333333332,2.4786333333333332,5.23445,4.77891,4.82241,2.690975,3.6649666666666665,2.8782300000000003,5.07265,3.621475,5.498823888888889,4.56322,4.46913,4.964435,2.690575,1.9014060000000002,4.35899,4.11189,3.974895,3.55588,1.8085920000000002,4.556615,4.436055,3.78339,4.596425,3.83472,4.05446,0.6247433333333333,3.082495,0.6716875,3.1953833333333335,3.519465,4.227215,17.92556523809524,3.58764,3.826425,2.5929733333333336,0.9525925,2.16569,2.5831933333333335,1.54745,2.34732,2.45621,4.644655,2.253546666666667,3.842545,4.547055,2.1113725,4.4612,2.8453933333333334,4.691225,4.98062,5.3803,1.71196,1.68368,2.143955,4.878,4.810875,1.1465222222222222,5.253,4.020515,5.64135,4.753975,1.7126866666666667,4.58739,3.486645,3.770725,3.998375,4.238095,3.17768,0.59154125,7.766831666666667,1.4791940000000001,0.20402833333333334,0.20402833333333334,0.20402833333333334,4.99097,4.08258,2.7037766666666667,4.22192,2.93719,4.0859,4.419422857142857,4.270025,8.387535,3.981785,6.786631666666667,0.9273225,0.81460625,2.33431,4.38174,4.26551,2.2418299999999998,5.2198,5.61525,3.46027,3.488015,4.40531,2.2882233333333333,4.97314,4.76047,2.3381933333333333,2.9765099999999998,3.064666666666667,2.701105,6.03505,3.766495,0.6646892857142858,3.57713,3.65276,4.138445,5.001423333333333,4.85987,2.945235,5.44475,3.65633,13.608714583333333,4.836185,6.961926666666667,2.53687,6.399544,4.339145,4.11546,2.0616825,2.2918345833333333,9.62637,2.29549,4.348633333333333,4.165233333333333,3.710233333333333,3.1861266666666666,3.0511133333333333,2.101835,2.1943775,2.9991466666666664,1.791768,3.9820666666666664,2.3757066666666664,2.5965700000000003,3.430066666666667,3.5994333333333333,2.432,2.432,2.48551,3.615,3.4561333333333333,2.1969866666666666,3.248893333333333,4.197633333333333,2.7279033333333333,2.80176,3.8668333333333336,2.358493333333333,2.0204675,3.9201333333333337,2.8753166666666665,1.6186019999999999,4.187166666666667,2.340203333333333,2.560783333333333,2.89404,2.2343,3.5398666666666667,5.755565,2.447366666666667,3.875633333333333,1.92616,10.440615333333334,1.9775466666666668,1.7137266666666668,2.06764,1.037721111111111,1.5957219999999999,4.56766,2.7850780000000004,2.7850780000000004,1.6548500000000002,1.5125766666666667,3.4855333333333336,3.78449,2.1831833333333335,1.5074416666666668,1.653434,4.655030666666667,3.6559333333333335,4.004066666666667,8.45015,2.95761,2.46237,3.26953,4.2683,2.0204675,3.2491833333333333,2.73673,3.5452999999999997,3.512120833333333,0.8763175,3.3036585,3.013533333333333,2.8026466666666665,4.007535,3.31005,0.6696718181818182,1.8581819047619046,5.3105,2.542193,3.341333333333333,1.5527316666666666,1.5527316666666666,2.07622,3.712666666666667,0.965954,2.2173625,4.493773333333333,4.493773333333333,0.6434142857142857,5.904406,3.51509,4.025365,4.77204,1.23617,3.3044700000000002,3.6008,5.186754166666667,5.590991,2.3084233333333333,0.660187,2.5660866666666666,2.6222166666666666,3.055148,2.2182066666666667,2.3915633333333335,2.9435933333333337,2.3430875,2.4903233333333334,0.7990018181818183,5.08635,4.972794,1.3012483333333333,1.7117,5.5749,2.15001,1.61388,4.111235,1.400002,3.476885,2.6228,3.6516,8.905459166666667,4.64319,4.469895,5.2318,2.408614,0.790502,1.922242,6.806566666666667,1.7427166666666667,4.21808,3.82388,3.54505,21.389306833333332,3.2212433333333332,1.33331,1.13829,3.1034666666666664,1.5497266666666667,4.2776119999999995,5.24115,3.3387915,3.3221433333333334,1.47225,1.4598683333333333,2.8973166666666668,0.580859375,3.7020666666666666,3.6424,3.1312800000000003,2.5923136666666666,2.5173466666666666,2.8359,1.95439,3.0568733333333333,1.668518,3.807933333333333,1.5244183333333332,3.95409,3.89809,2.2788233333333334,5.3918,3.23371,3.96838,5.25365,4.540995,3.09647,2.9470333333333336,2.322506666666667,1.06969,1.06969,1.06969,2.4482775,3.3317033333333335,2.694266666666667,2.55993,2.3156966666666667,2.0123425,3.66815,4.731665,3.74732,6.58647,3.17074,2.591875,1.8970475,0.9495533333333334,2.482346666666667,3.96553,2.4718433333333336,2.642516666666667,2.366033333333333,2.3402866666666666,2.618256666666667,2.8004766666666665,2.7917466666666666,2.74373,2.2721433333333336,3.248193333333333,2.0632266666666665,2.169245,1.694315,1.491245,3.0443166666666666,2.9309766666666666,2.043055,3.90969,5.2668,2.9080866666666663,2.452828653846154,5.440426666666666,4.159895,4.770515,5.45885,4.6508,4.27987,6.3537525,1.20390375,4.21935,2.63972,5.1849,5.0139,3.60346,3.6295,2.2336725,7.54546,3.60992,0.8331333333333334,7.36213,4.97742,5.684238333333333,4.5385,2.95206575,1.75592,5.0451,4.20414,4.350585,5.05235,2.436585,4.20403,4.540235,1.7621125,3.92375,2.8851,1.3686916666666666,4.737065,0.6234647058823529,4.008986666666667,3.54534,4.52428,3.05433,1.664135,3.51011,1.937555,1.49515,2.7559566666666666,3.172703333333333,3.246926666666667,7.196268205128206,1.78007,6.422570416666667,9.606885,6.2090275,2.99369,1.354072857142857,2.92432,1.354072857142857,2.8341433333333335,2.1157733333333333,0.26671764705882356,1.1316888970588235,0.26671764705882356,0.26671764705882356,0.26671764705882356,1.1316888970588235,1.1316888970588235,0.26671764705882356,0.86497125,4.12985,3.528065,3.274215,3.35711,3.43021,3.98601,2.8899380000000003,1.6283280000000002,6.788315000000001,2.8603366666666665,4.00669,2.6347533333333333,1.0344545454545455,1.2207425,4.516045,3.54661,1.138011111111111,1.4565519999999998,0.7596736363636364,3.0332892467532466,4.19865,4.96039,3.5307666666666666,5.4364625,0.59818,4.34859,3.068375,3.059506666666667,2.4766266666666668,3.7952333333333335,2.51825,2.845133333333333,2.6882699999999997,3.054005,3.72531,5.15135,5.0174,2.26174,4.931845,4.428015,3.17074,3.802105,3.51402,0.34853799999999996,4.882705,3.57203,3.095005,3.11475,4.21085,3.832535,1.92948,3.066795,3.87883,8.873194999999999,4.87345,5.38845,4.62906,3.9368825000000003,1.0647575,2.176755,2.21747,1.35842,1.8217466666666666,4.945155,5.4071,4.081305,5.1193,3.340118,2.6302849999999998,0.9270833333333334,3.980565,1.2358466666666665,1.1503216666666667,3.224775,3.67119,4.71733,1.2806625,2.458396666666667,8.788086666666667,3.1079399999999997,3.0655416666666664,0.896215,4.101015,12.26959,3.419715,4.24343,3.175995,2.875465,4.536025,5.03865,2.06996,4.40198,0.5887453846153846,4.696245,2.22093,1.6591875,1.6591875,3.5399333333333334,4.26415,1.52598,4.134095,1.2762957142857143,3.77747,2.7145591666666666,3.3633,4.83037,3.51333,3.8675976666666667,2.68095,2.7268426666666667,2.7268426666666667,10.975415,0.713544,2.72231,3.2213733333333336,2.13145,1.999625,0.8861,1.419765,1.1086,2.00746,4.752225,2.503065,4.195965,2.0714466666666667,4.007945,3.979515,1.6896166666666668,2.013815,1.0432333333333335,5.988541083333333,2.0259475,2.147835,1.675334,1.755614,1.13829,2.461638333333333,3.569185,2.3067733333333336,3.12644,2.52577,2.6926166666666664,1.7978066666666666,3.09258,2.5125766666666665,1.5995166666666665,1.8629033333333334,2.6581233333333336,2.5631366666666664,2.4244833333333333,1.1123800000000001,2.5033600000000003,1.98349,2.4374933333333333,0.3143078947368421,0.3965,2.3365,2.1891333333333334,3.06007,3.0807166666666665,2.738235,4.92053,5.5077,4.406375,4.62006,4.413005,3.997745,2.7623599999999997,3.811,0.711760909090909,0.07453772727272727,7.01175,0.07453772727272727,3.301305,3.003885,4.98746,3.560435,6.2555,4.613765,2.0454333333333334,2.4802500000000003,0.930815,4.907835,6.1913,3.084146666666667,5.32405,1.9086625,3.5202,1.94803,3.0372733333333333,3.190443333333333,4.03955,4.879308333333333,3.311385,2.1085066666666665,2.1085066666666665,4.07039,7.74399,3.403595,2.159996666666667,2.36945,4.47537,3.050435,4.898095,3.562495,1.0251955555555556,4.22062,2.666183333333333,2.7234033333333336,4.22464,1.0913533333333334,2.449786666666667,3.99764,3.47186,4.844755,2.91797,2.87791,3.892595,3.94206,4.31681,4.82761,4.10851,3.2225686111111114,3.76923,2.8842466666666664,2.8324266666666666,2.6298966666666668,3.9391,4.37814,3.0891566666666663,5.0599325,4.304385,3.70519,5.46965,4.366345,3.455155,1.431156,1.40205,4.056025,3.4953000000000003,1.53212,2.7571133333333333,3.188105,3.213896666666667,4.061742222222223,3.1747099999999997,2.3460349999999996,12.650227944444445,2.29493,1.8393640000000002,4.504145,1.005438,3.17752,3.71034,4.629795,2.977415,1.2027666666666665,2.2944166666666668,2.5922966666666665,1.484496,4.455955,0.9553775,0.9553775,3.572716666666667,1.5544366666666667,2.0182800000000003,1.6868975,3.197895,4.86356,2.05427,2.741375,3.42843,2.756766666666667,2.8960166666666667,2.02688,6.19605,5.3814,3.535795,0.7034607692307693,4.116985,3.582655,1.0096545454545454,5.4447,3.3617666666666666,8.423916666666667,4.931365,4.667765,3.61756,1.46431,3.121745,4.756635,4.682385,3.9604,3.415595,4.314155,3.64143,3.5178,3.5178,4.235885,2.7001516666666667,4.161455,1.81389,5.482980416666667,5.296591666666667,1.5879516666666669,4.69613,1.05989,5.6585,3.88596,4.791455,4.641705,4.13673,2.62875,2.569075,4.176825,4.261015,4.882485,3.9833,1.750105,1.383588,4.26611,2.0959600000000003,5.4069,3.035075,3.70799,7.33416,4.015815,4.442735,5.1683,3.9683,4.77289,8.267779999999998,3.9754,3.173365,9.490404999999999,3.7286,0.6011128571428571,2.0505156776556777,4.63758,0.6004793333333333,4.8154,4.16431,4.69756,4.532955,3.23506,3.41395,4.535155,4.730565,2.595925,0.6979428571428572,4.610195,4.426975,4.304015,4.212375,2.8512066666666667,4.31466,3.529085,0.700622,3.504405,4.05333,2.47021,3.1543733333333335,4.008335,2.2161408333333337,5.46495,5.14355,3.8609299999999998,3.2092533333333333,5.678605833333334,5.678605833333334,8.507813333333333,2.0184,0.8814125,0.8814125,24.125113333333335,2.57105,7.617893333333333,0.362935,1.30942,3.1351933333333335,1.0049,3.70644,3.794585,2.1972575,2.1972575,4.19403,4.71058,3.67364,2.6918466666666667,2.6918466666666667,3.56433,4.19769,3.843385,3.4967333333333332,2.097776666666667,2.502337916666667,3.937691,2.074875,3.60071,2.8751833333333336,2.8850089285714287,2.8850089285714287,3.31062,0.8506977777777778,2.5433933333333334,1.5146466666666667,3.3491666666666666,2.8285766666666667,2.8737333333333335,2.622126666666667,4.71131,2.36551,3.064166666666667,5.95328,1.336482,2.236985,3.129085,2.45825,4.0801,5.787965317460318,1.3972966666666666,3.7124333333333333,2.4252175,5.09187,6.37924,1.568195,4.90099,5.032698,3.2629268571428574,4.597,1.0564085714285716,1.8060680000000002,3.00013,3.8403147619047617,1.3243883333333333,2.3671825,1.58018,1.860116,2.17864,3.71441,5.3001475000000005,1.0455816666666666,1.4015014285714287,2.8706099999999997,13.34822,4.4407733333333335,2.74338,1.1608628571428572,2.5966204761904765,0.9781371428571429,3.18553,3.9216816666666667,5.0424,3.4514666666666667,5.4551,1.390955,3.6836333333333333,3.96146,2.802073333333333,3.985858888888889,1.9801766666666667,1.0415455555555555,2.4534466666666668,2.856173333333333,6.691536666666667,2.955180857142857,2.568983333333333,0.723177,4.7377,3.5483333333333333,1.194546,5.759269166666667,2.0302025,2.1989,5.47335,1.2786777777777778,3.03693,1.0031181818181818,3.109863333333333,4.25141,2.96846,3.0399966666666667,2.1979666666666664,2.5582333333333334,4.58758,4.68735,5.0726,1.69982,4.52139,4.006645,4.353723333333334,3.3379380000000003,2.3643,4.121556,1.018886,2.851111904761905,4.191755,2.72095,4.117979166666666,1.361375,2.7794266666666663,1.952102,1.952102,7.6636050000000004,3.1480633333333334,5.20079,3.4009850000000004,1.7389299999999999,2.7497390476190477,4.5467450000000005,5.7541166666666665,8.237843333333334,4.791277333333333,2.62581175,1.7800633333333333,1.9567778333333334,4.012823333333333,3.79338,1.49565,2.0168075,2.349123392857143,1.229045,3.1561,19.32433633333333,3.1668766666666666,2.8929633333333338,3.005133333333333,2.96603,2.584146666666667,2.1348,3.2994966666666667,3.6563,2.558246666666667,2.5983199999999997,5.631578,2.42505,4.450958857142857,2.762696857142857,2.375998857142857,1.4160966666666666,3.789485555555556,2.1386525,4.03585,4.84823,3.92305,3.4201991666666665,3.1720633333333335,2.28931,3.5370666666666666,3.7132,3.4231,3.3111333333333337,0.8332672727272729,5.36915,2.465615,3.233,2.793508888888889,1.9821825,2.16276,2.16276,3.363903333333333,1.9070183333333333,4.82057,4.364675,3.61198,4.49648,4.851585,4.638915,4.638915,4.02768,3.0313033333333332,4.66158,2.866925,1.6691880000000001,2.4275966666666666,4.492455,3.99465,2.830375,3.718865,5.3873475,3.7451333333333334,6.43757944047619,3.05297,0.876508,0.876508,3.36373,4.790095,3.85461,3.3372580000000003,2.39283,1.7988166666666665,1.6502800000000002,3.03049,5.85643,1.4872883333333335,3.901195,3.6818666666666666,3.86341,5.25345,4.9845,4.772306625000001,3.27945,2.2639325,4.323015,4.055815,2.09347,1.1007099999999999,3.98454,2.7638,6.196233333333334,3.4324333333333334,2.673885,3.29152,3.7106,3.63624,4.573765,3.03443,4.51596,3.89474,4.2267,3.766085,3.538685,3.552135,4.143935,2.7118333333333333,4.53903,3.17747,4.771925,0.6139022222222222,2.3239575,1.850195,2.193685,1.8535225,2.619013333333333,2.684336666666667,2.25911,4.36264,5.69629,1.8414866666666667,4.05488,4.34998,2.41735,5.587623333333333,3.9645241666666666,4.52142,5.0028,7.212113333333333,2.08211,2.8864533333333333,1.81085,2.8210633333333335,1.759765,1.738065,3.994585,3.64659,5.3888,1.0085133333333334,3.02153,4.21011,2.2413275,5.15545,3.677355,2.57356,3.7288666666666668,3.28555,2.037555,1.884389,2.529175,3.195,3.338325,1.965195,2.924017142857143,2.924017142857143,3.573,3.4611,20.21962023809524,1.0978066666666666,5.364043333333333,1.83001,1.9139,3.640265,3.733765,1.8914825,3.723335,4.441135,1.3693166666666667,1.3693166666666667,1.1952366666666667,1.7300033333333333,2.3813999999999997,3.1571766666666665,4.568978333333334,3.59695,3.4639666666666664,0.48716210526315795,3.3928221052631575,1.98587,2.21505,4.56597,3.38644,4.053695,3.548405,4.592635,4.43433,2.052365,3.661895,5.600783333333333,2.227355,3.4769,5.20995,2.27981,4.795705,5.93785,1.3330028571428572,1.9294160000000002,3.6063333333333336,0.7462557142857144,3.171943333333333,3.272995,4.79506,4.944675,2.7736688888888885,7.755269999999999,2.9567200000000002,2.758793333333333,0.4294976470588235,4.25593,5.362717857142857,3.2522357142857143,5.4723,3.793975,2.489319777777778,1.7693059999999998,5.35741775,4.257685,4.27635,2.833425,2.01767,3.787025,4.0334666666666665,2.9455333333333336,1.9340825,3.9482141666666664,6.2373775,2.720155,3.794155,3.521905,3.946875,1.577,1.577,3.2306966666666668,3.0590833333333336,4.69192,4.86537,6.7227,3.261525,2.90275,2.174515,1.5715866666666667,1.3665857142857143,4.878495,5.6325875,5.2051,5.84025,4.34646,6.5863700000000005,3.96811,2.8351733333333335,3.910779333333333,2.229156666666667,3.0518632500000002,1.6752340000000001,4.28269,2.3544899999999997,3.85555,5.1583,4.05764,2.7620833333333334,2.9238033333333333,1.3910442857142857,2.509825,3.7791,2.098,0.579763125,3.11158,2.668616666666667,2.497383333333333,2.3663666666666665,2.0310875,1.565434,0.685710909090909,0.685710909090909,3.5543333333333336,1.7522125,2.4291625,3.01278,5.902,4.042805,6.06745,4.455625,4.3925,2.064994,1.2221133333333334,2.550395,3.520895,0.9408475,3.2496774999999998,3.016005,2.993295,2.253615,4.005605,2.68968,2.07609,1.0135657142857144,3.269105,7.83512,3.501005,1.5753635714285714,4.344885,3.43024,2.80785,3.50966,2.78845,1.7639066666666665,1.040745,3.764205,2.428541666666667,2.2273533333333333,1.64861,2.3312566666666665,2.2645133333333334,2.4855633333333333,2.8773987500000002,1.2849533333333334,1.8905566666666667,1.0226325,6.09603,5.765,5.8653,4.113985,4.73912,2.9982433333333334,1.7209158119658121,4.82041,4.920725,2.548235,5.3346,2.04898,4.63462,1.0018855555555557,3.99181,3.99584,1.8919125,7.71538,3.537855,1.85399,1.8783375,1.801425,2.547075,3.4369333333333336,1.2482005844155843,3.088063333333333,5.694,3.42384,3.97935,5.47125,5.4316,5.66175,0.89677375,4.187615,4.383855,4.204555,4.77567,3.7099,4.6354,5.1066,2.905005,1.5596050000000001,1.5596050000000001,5.22275,6.149716666666667,3.27265,2.6266366666666667,3.985805,4.60191,1.5391759999999999,4.314875,5.5407,3.564995,4.00424,2.8950766666666667,2.920363333333333,4.97372,2.4082391249999997,10.639716022046581,1.9541700000000002,0.78867375,2.5741666666666667,1.72127,2.50325,2.2208575,1.882642,2.8526233333333333,5.13055,5.52215,2.9839599999999997,1.69775,6.4970992857142855,1.4206885714285715,3.162293333333333,0.5226190476190476,4.117290000000001,5.62425,3.619315,4.75542,11.23292,5.40015,3.1640866666666665,3.3683666666666667,4.566005,3.215593333333333,4.755025,0.89743375,1.076945,0.80138,5.7163,4.16783,1.864638,4.739781333333333,4.474765,6.6289,4.86448,4.976625,4.36439,6.1435,3.95614,5.00935,3.29903,1.196072,4.245445,5.40655,2.73721,4.039985,3.189925,2.61771,1.223085,5.0479,3.937615,1.2531375,3.5713000000000004,2.9550699999999996,2.4570366666666668,2.4516266666666664,2.50143,2.896646666666667,0.7078354545454546,2.363766666666667,2.6552533333333335,2.616686666666667,1.93407,3.0867533333333337,1.86964,1.4277766666666667,2.4273925,2.008945,2.0968425,3.3111766666666664,2.9027733333333336,0.675129,2.7885299999999997,3.28002,4.593765,2.35512,3.813415,5.62275,5.1074,3.475735,3.936125,1.3586071428571427,3.311285,2.5915077777777777,4.315216666666667,2.78876625,4.69644,5.26915,4.884865,4.263175,4.303166666666667,1.090708,1.090708,2.2592809615384617,1.6810625,4.120965,2.630544,2.630544,5.019,5.88455,3.07405,1.234945,1.6174857142857142,5.9251,3.504915,2.4770666666666665,3.273305,2.82225,3.23522,2.4770666666666665,4.47822,3.29944,3.1131675,2.826315,1.96848,3.05883,6.7013,2.859365,5.02635,4.69621,6.81275,6.12795,6.67695,6.67695,5.5715,4.82499,0.4942984615384616,5.1869,4.880475,3.02621,2.898755,8.194801666666667,2.8784033333333334,4.192225,3.753995,2.9273666666666665,4.69615,2.245765,3.336785,3.1539866666666665,3.6555666666666666,2.43643,1.33072,1.33072,3.62401,3.84228,4.803675,1.761356,1.5189,48.06076295454545,2.54266,0.8585454545454546,3.1657766666666665,1.8404225,3.24478,2.833536666666667,3.1454633333333333,2.931875,2.7189300000000003,2.052563333333333,1.0284375,4.6401,3.190855,3.5274,3.907405,5.2632,5.05215,5.04225,5.3655,5.50465,4.78364,5.61885,6.19514,4.99454,5.5252,2.1124825,3.83373,6.7733,5.31515,3.383325,4.14577,3.25665,2.32661,3.95546,4.633355,2.95658,3.9739,1.62816,4.22925,1.317682,3.272965,3.865395,3.52201,6.5090224999999995,4.096105,1.9641925,4.09503,3.79289,3.9306,0.8821325,2.6839,2.838925,4.464060952380953,1.150055,4.66532,1.3036925,6.04535,0.6938144444444444,3.89747,10.134693333333333,4.608405,3.538385,3.37964,1.9025833333333333,4.31537,5.47355,3.0570866666666667,4.483735,9.2754225,3.3933,2.0061566666666666,2.75421,2.783,2.7471666666666668,2.779090083333333,2.34576,2.5542166666666666,3.00459,2.6879000000000004,3.027393333333333,3.434595,2.2703133333333336,1.5394933333333334,4.783471333333333,3.9044000000000003,2.6104,4.920899333333334,2.8850766666666665,1.0661275,2.1806675,2.878913333333333,5.361215,2.819975,2.119777222222222,2.119777222222222,1.619225,1.6582325,2.1602,1.92851,5.898505,4.5123025000000005,2.2057725,2.8993066666666665,3.5452999999999997,2.1243725,0.56765,2.7010166666666664,1.91183,0.5553030769230769,3.895305,2.4489875,2.63405,3.76278,3.569615333333333,2.4132599999999997,1.5756533333333334,1.1512233333333333,2.11712,3.536825,3.72562,4.214510000000001,2.78086,4.05061,3.74429,1.099909090909091,9.4114,2.630685,3.40207,1.2616875,2.725163333333333,2.41837,2.41837,2.41837,5.09505,5.53765,1.590815,5.32305,1.39849,5.599806666666667,1.58749,4.243195,4.234315,4.214475,4.927405,4.68314,1.889015,8.588875,3.92661,5.0355,3.54225,4.088838333333333,3.20701,3.0398633333333334,3.78044,2.568773333333333,4.292286428571429,4.462535833333333,1.55111,4.003125,1.55111,3.6396,4.439895833333333,5.1260425,4.439895833333333,1.8202233333333335,5.72155,4.551605,4.36161,2.786576666666667,2.970556666666667,4.243865,3.16406,4.988535,0.5080992857142858,2.994616666666667,2.9932533333333335,5.227563333333333,4.793,2.3900075,4.810875,6.30252,3.32006,2.935935,2.796,2.23048,3.968945,4.105995,4.59086,2.67671,3.827565,0.8583489999999999,5.337,3.360825,4.164595,2.3676633333333332,3.03635,2.32002,2.7340633333333333,2.74342,2.7681233333333335,3.114765,2.501525,2.501525,4.5108625,3.13202,4.533615,11.551662499999999,0.9651255555555556,4.6179,2.5159966666666667,2.27673,2.7243733333333338,1.4685625,7.2090293333333335,3.411566666666667,3.797755,3.8436000000000003,2.193026666666667,3.942,4.490816027777778,2.5230633333333334,0.4432872222222222,1.547544,1.5011625,5.01265,2.77189,3.23319,3.745475833333333,3.4278808333333335,2.445575,5.1354,4.58599,3.725005,4.594185,2.173485,3.97218,2.5254533333333335,5.47888,3.120145,5.0863,4.20922,4.122045,4.247115,1.93529,3.867485,3.6853,3.165506666666667,3.569765,2.912125,3.168405,3.70608,3.167505,2.648496666666667,4.59573,1.6445166666666668,3.624685,2.88364,4.36473,4.25901,3.7311,4.89526,2.51328,4.16894,5.34405,4.029755,3.2414733333333334,2.21177,3.002715,2.408045,0.8595633333333333,4.51312,2.11579,3.4168,2.787585,4.136665,3.31486,3.07822,3.132155,4.19011,4.586943333333333,4.108285,2.90853,1.6903866666666667,3.55163,2.429525,0.9527522222222221,4.24222,8.882825,3.50363,3.646455,4.16406,4.81846,3.77539,2.10182,4.0661,3.970975,3.192365,3.22555,3.738505,0.63227875,1.2674528571428572,6.3961250000000005,1.73036,2.69418,4.933982,2.506175,2.304935,2.69469,7.96404,2.644005,3.95864,3.8185,0.7664522222222222,3.50283,2.59694,3.929165,4.083375,6.017738333333334,0.667538,3.215705,9.69188,3.138325,1.064497777777778,5.185510833333334,4.823985,5.27775,4.212605,4.697765,3.14614,2.5866266666666666,7.163505,0.820864,3.514825,4.16217,3.142965,4.20491,2.32592,4.25836,1.5970950000000002,4.33241,4.058885,3.92217,1.6919475,4.62597,4.430265,2.35331,2.088875,2.37864,1.194546,4.154035,3.3387915,1.4444919999999999,8.152225,5.7853,4.41145,4.13587,3.496955,4.331385,1.3905557142857143,4.419445,3.9526,5.4281,3.76112,2.4779666666666667,6.562764551282052,0.93719,0.93719,2.59999,0.9531442857142858,4.23102,2.56629,1.0568375,1.8016933333333334,0.40842666666666666,6.324014999999999,0.975615,2.76724,3.935895,4.026815,3.57256,4.2447,5.5762,5.5923075,3.084405,3.202285,2.39776,4.229195,4.36583,4.259845,3.87607,3.82402,6.2283,4.19181,4.268978333333333,5.059235,3.712105,3.4469374999999998,2.28943,3.4469374999999998,6.858051,41.4998034978355,3.75637,3.456165,2.924193333333333,4.18185,4.464625,3.433465,3.523365,3.9276,4.529375,4.304055,1.6764166666666667,4.95122,2.61146,4.850035,5.20365,4.835675,2.338086666666667,4.443095,3.898945,3.26787,1.530942,0.6353130769230769,1.731852,3.6788333333333334,2.84714,1.3360375,2.97749,2.671613333333333,2.7438266666666666,3.5649333333333337,2.9076633333333333,1.47038,2.7501700000000002,3.8472000000000004,1.9223760038610038,2.7660366666666665,3.257034,3.020046666666667,2.5847233333333333,3.5233333333333334,1.1845777777777777,3.626015,4.08406,1.2215766666666668,1.2215766666666668,1.2215766666666668,1.2215766666666668,2.8579133333333333,2.064243333333333,2.473805,3.49096,4.737925,4.940975,4.304915,4.299985,5.82405,4.600255,2.33363,6.16135,4.15451,2.58656,3.61232,2.981425,4.208355,4.331885,0.7121953846153846,1.4538142857142857,1.5558533333333333,4.181285,3.83042,4.56727,3.976805,5.9527616666666665,2.32776,4.61039,1.5380316666666667,3.683155,5.26525,1.5504833333333332,5.2315,0.6960466666666667,4.4436,1.193772,1.1004975,3.81629,4.125015,5.2994,5.2384,5.97595,4.284295,1.460724,4.64614,1.48542,3.65971,2.974725,2.489319777777778,1.89454,3.075515,1.3118683333333332,3.484485,4.78298,2.928316666666667,5.62285,121.70924980411255,0.4808922222222222,4.58297,2.4340466666666667,4.650075,4.10747,3.191395,1.526525,0.3832547619047619,2.850875,3.79268,5.3669,3.428275,3.6903,4.35134,4.53327,5.1074,8.320453333333333,0.6979166666666666,2.67567,0.9749075,11.244036,3.029765,3.64666,0.9347566666666667,2.157685,2.71649,2.0944525,3.12602,3.1412033333333333,2.59755,4.4196675,3.01237,2.2670866666666667,2.233163333333333,4.38217,3.729965,2.932325,3.631295,3.763815,3.36948,2.3324333333333334,3.91684,4.15476,3.0841,0.9678688888888889,2.597933333333333,4.4196675,4.854165,5.4069,4.12124,4.97813,1.934515,11.0373,4.332785,2.721085,3.779825,5.3424,0.5815613333333334,0.5815613333333334,4.2273825,4.2273825,3.2709,3.5785666666666667,1.779161590909091,0.5743608333333333,2.92774,4.405335,4.200985,3.26477,4.0005,5.3993375,4.840365,2.2076425,4.585575,2.2356775,2.67735,4.260501666666666,1.74425,2.07959,0.48228857142857146,1.2458345714285715,1.2458345714285715,1.871365,4.331245,4.20813,4.8742,6.504336,2.720325,3.11241,1.929875,1.877545,3.98128,3.750695,4.898596666666667,2.347725,4.898596666666667,4.74977,3.618355,5.90235,3.821445,2.4332133333333332,2.0093666666666667,2.49642,1.3837275,1.40006,1.553505,1.8692275,1.598695,1.7882875,3.9489,4.716455,2.400485,7.0439,2.9736233333333337,4.42865,3.403125,4.354215,2.9967166666666665,3.05759,6.324753333333333,3.3194966666666663,4.672332666666667,3.1785866666666664,1.40332,2.5163333333333333,2.5807466666666667,2.22919,5.94145,4.4457125,4.82124,12.559769301812223,0.7484891666666668,2.02218,2.34648,1.6714259999999999,1.2532257142857142,2.522675,2.47119,2.47713,2.466935,0.7352415384615385,1.9158375,0.5433736842105263,4.655085,1.89932,3.970045,4.675315,2.4919325,5.76453,4.183925,7.60362,4.071275,3.01771,3.265125,4.72498,4.825935,2.743863619047619,4.506025,2.155525,2.155525,4.87958,3.954935,4.069485,4.05916,3.32629,3.98048,5.08855,5.0908,4.69645,4.27466,4.47724,4.393945,2.600515,4.914805,1.1911916666666666,4.78368,4.601265,2.5332766666666666,2.17784,4.74317,1.5049700000000001,5.10035,1.8825525,5.592365,4.379735,3.84891,1.51794,3.3471933333333332,3.3471933333333332,12.30097,3.95271,4.21029,1.1150325,4.3330079999999995,2.19208,1.46429,2.3322825,1.6546675,2.0048475,1.7811240000000002,3.05122,5.78355,1.81977,4.9537,4.692184999999999,5.3387,2.09101,2.427365,3.268945,4.386785,5.4514,3.92794,6.967065,3.181236666666667,2.598736666666667,0.37163888888888885,3.760595,4.24046,3.3496,6.17102,2.606263333333333,3.086883333333333,1.241095,1.5621683333333334,0.579763125,1.547544,2.923,1.46803,1.508415,0.66030625,1.394142,4.632945,2.34324,0.6261284615384616,1.59235,1.68286,1.6851340000000001,1.2955783333333333,2.01009,1.5621683333333334,2.578825,1.394142,1.394142,0.6261284615384616,1.6051428571428572,2.51142,1.3243883333333333,2.788475,0.6261284615384616,2.7565,2.51142,1.3026283333333333,1.3026283333333333,1.3026283333333333,1.916986,1.2464975,0.6261284615384616,1.064232,1.1844175,1.037721111111111,1.865232,2.704825,0.8399,2.2457675,1.5485428571428572,0.6261284615384616,1.7675699999999999,1.5621683333333334,2.0244666666666666,1.9742499999999998,0.8985900000000001,2.0244666666666666,1.0674766666666669,2.35331,2.4287275,2.4875625,1.1844175,2.18294,1.3118683333333332,1.3118683333333332,0.8991109090909091,0.8991109090909091,0.8991109090909091,1.241095,1.5621683333333334,1.5485428571428572,1.59235,1.0133871428571428,1.9742499999999998,1.53801,1.6186019999999999,2.04344,1.241095,2.74338,12.863055,0.66030625,2.59754,1.8653166666666667,2.438245,0.9781371428571429,0.9781371428571429,0.6261284615384616,1.0603077777777778,1.565434,1.5485428571428572,1.8143439999999997,1.9742499999999998,1.1465222222222222,1.1465222222222222,1.669228,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,3.2629333333333332,1.0674766666666669,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.3827681818181818,55.01808233116883,1.521465,1.6328316666666665,1.5485428571428572,1.8653166666666667,1.0133871428571428,0.628929411764706,0.723177,0.723177,0.723177,0.723177,4.390233333333334,16.6704975,3.3891333333333336,0.5821772727272727,1.615418,1.615418,1.615418,0.5821772727272727,2.923,0.6261284615384616,1.7675699999999999,1.508415,2.53152,1.0674766666666669,2.3900075,1.0674766666666669,1.657784,1.657784,2.1273833333333334,2.1273833333333334,0.6261284615384616,2.00846,2.00846,0.992009090909091,0.20402833333333334,2.923,1.4762133333333332,2.4252175,0.5821772727272727,0.5821772727272727,0.5821772727272727,0.5821772727272727,0.5821772727272727,1.8653166666666667,0.3827681818181818,1.0674766666666669,2.18695,2.18695,2.569075,3.079776666666667,0.6434142857142857,0.6434142857142857,3.4688,4.2073,1.23617,3.523066666666667,1.0064899999999999,2.6179,2.0184,1.0913533333333334,3.01445,1.9693525,3.2092533333333333,5.2198,2.420515,1.1689222222222222,4.251365,4.288655,2.703086666666667,1.683416,2.288957769230769,4.689545,1.5742933333333333,2.688383333333333,2.889836666666667,3.1050799999999996,2.48347,6.100896666666666,4.067435,0.20402833333333334,3.0848666666666666,4.968855,3.387545,4.5561,4.28625,4.49445,2.81871,1.783932,4.604745,4.661335,4.399435,4.771835,5.22835,3.233075,0.7197650000000001,6.781375,1.5278066666666668,3.018522,4.562065,2.5739466666666666,2.5739466666666666,0.8385018181818182,1.89454,3.8976,3.13117,5.2451,4.22404,4.641085,5.3329,1.0899557142857144,4.651885,5.4775,6.928683611111111,2.298556666666667,4.271735,3.861675,4.08105,3.897115,4.00766,4.341895,5.983504999999999,5.2287,4.383041666666666,3.6506,4.513488333333333,7.399953,2.0164475,2.0966241025641024,2.842893333333333,1.7836166666666669,2.772133333333333,1.8382533333333333,5.20495,2.9234066666666667,6.0613,1.952924,4.98775,4.064515,3.25504,4.40394,3.80039,2.5172866666666667,2.7658166666666664,2.705416666666667,2.6000433333333333,2.5557933333333334,1.704,2.7377933333333337,2.8440066666666666,2.17152,2.17152,4.4526,2.9142433333333333,1.9536,2.92076,1.9643866666666667,2.5277,3.0740366666666668,2.7201400000000002,2.9458,5.34495,4.08994,3.961425,3.4329586666666665,3.4329586666666665,4.001865,3.22287,3.94919,4.455,4.20651,3.516915,3.26834,7.53976,1.9985525,1.97686,3.32207,3.255945,1.2146733333333333,1.2146733333333333,3.578385,1.702545,4.02603,3.692315,3.43336,2.1706765,2.1424699166666663,0.55997,3.679085,3.919655,1.8707325,2.480295,4.14824,1.1883133333333333,4.764555,1.2286033333333333,0.4135235714285714,0.5445107142857143,21.454943357142856,0.5445107142857143,0.4135235714285714,0.6754978571428571,9.480251666666668,2.587833333333333,3.76089,4.35021,3.4623549999999996,2.815465,4.1276278571428575,2.23819,2.30716,3.59646,3.11429,3.88929,4.119175,3.585415,2.2316,3.22144,3.46086,3.93196,3.214215,1.102986,1.102986,1.102986,1.102986,3.35536,2.808825,3.16814,1.7907166666666667,1.1656483333333334,2.46514,3.69879,3.633355,2.988405,3.015195,2.689355,2.7145591666666666,3.937015,4.19948,1.12559,2.65384,1.0474999999999999,2.54867,1.7121366666666666,3.794966666666667,5.13265,2.4438866666666668,4.070695,3.9773,0.843334761904762,0.2693214285714286,0.2693214285714286,0.5740133333333334,0.2693214285714286,0.2693214285714286,0.2693214285714286,0.5740133333333334,4.37321,7.333426666666666,3.613755,0.53805625,3.690135,7.823865,3.30697,3.151566666666667,1.1466516666666666,4.62879,5.37535,4.351275,4.839295,1.6890319999999999,4.54983,2.2388233333333334,2.3409133333333334,3.590215,5.3797,0.8103314285714286,0.8103314285714286,3.53626,2.8008066666666664,1.995695,3.72456,2.660535,6.70465,2.99182,6.28265,6.0358,5.6193,3.040525,1.657625,4.208355,3.517035,2.24236,3.64721,2.99403,1.80229,1.1655883333333332,4.089965,3.431795,5.001423333333333,6.113315,1.5245566666666666,4.057615,1.1833666666666667,2.537783333333333,3.270245,4.046525,0.3894971428571429,3.3212,4.03164,0.914525,2.76913,7.52152,3.80846,2.19617,5.765077,4.405275,3.684395,1.3948016666666665,5.449846666666667,2.7718333333333334,3.0113,3.6927,2.02519,2.02519,6.40755,6.40755,3.721733928571429,3.721733928571429,10.9377,3.721733928571429,3.721733928571429,4.419605039682541,6.87,3.908695,3.5480508333333334,2.8639466666666666,4.066345,3.657145,3.2211700000000003,3.1028300000000004,4.827035,3.11037,2.6555566666666666,3.242236666666667,2.2733133333333333,2.708325,4.94161,7.429795,6.313815,5.0796,3.81409,4.002015,6.7978179999999995,5.41165,4.31463,3.95575,4.23093,2.353613333333333,2.261265,2.26673,5.8524,5.6831,4.5651775,4.15801,2.3140466666666666,2.6278099999999998,6.846945,1.916986,2.54136,3.4101,3.4101,3.194055,5.01875,0.7654691666666666,3.521333333333333,3.85665,2.973216666666667,10.11103,4.363535,2.706386666666667,2.317743333333333,4.83001,5.83995,3.0383,5.49515,2.6409166666666666,4.422155,2.9410777142857145,4.336545,5.32005,4.950545,1.0342083333333334,3.5678,1.020545,2.490666666666667,4.938462367647059,7.7475933333333336,2.38904,3.25713,7.099581666666667,1.81983,4.438705,5.62525,3.527605,3.760645,2.19192,4.6069,2.41013625,0.4472615384615385,5.1901,2.82718,3.5824,4.98337,4.887655,5.37715,6.82636,4.73955,5.4075,7.2696625,54.22206833333333,4.729685,3.8503,4.797255,5.91655,4.527455,5.0393,4.06569,4.581875,1.910905,3.85463,4.033355,4.627135,2.64652,4.937795,3.776965,1.66116,5.6754,6.285,7.17664,5.4934,3.30898,4.64282,3.349895,3.18189,3.584645,4.38058,3.83513,6.71482,2.77205,1.0862671428571429,2.4171375000000004,0.582064,0.582064,3.26284,0.582064,2.3893966428571427,2.3893966428571427,3.1414246428571433,4.5100795,4.877869142857143,2.4171375000000004,4.8130299999999995,2.5773525,1.381595,5.569,2.140805,6.937091333333333,5.588363333333334,11.000045454545454,3.316606666666667,2.478873333333333,0.20602545454545454,1.950755,2.15035,0.897435,1.272155,2.7730366666666666,2.194045,2.4896175,0.593297,27.12533125,1.852065,0.7856461538461539,2.44888,2.44888,0.39587555555555554,1.67478,3.1798525,1.380525,1.795475,1.6326375,4.171155,2.87281,1.9763633333333335,2.4412066666666665,1.1290033333333334,1.98084,1.5581216666666666,5.350797333333333,3.735715,6.770548333333334,2.5287,3.3016233333333336,0.9540500000000001,2.322385,5.1485,6.0401,3.0536600000000003,2.1789133333333335,5.372925833333333,2.0251925,2.4542966666666666,4.13874,1.0007966666666668,3.637,2.3393333333333333,5.639,4.76295,6.30835,3.33993,4.1714775,4.1714775,5.21085,1.92196,5.5432,2.9102266666666665,1.6869825,3.045375,3.33973,5.8228800000000005,4.03888,2.73929,3.3588,3.00677,1.0600871428571428,5.20895,0.9400475,5.53341,4.35797,7.605373999999999,4.24104,4.38974,4.08564,8.412666666666667,4.48223,4.921835,1.16754,0.7099285714285715,4.641535,4.34012,2.197065,3.19376,3.22797,4.269635,2.10096,5.1433,2.4461633333333332,5.38715,5.2547,5.60695,4.533995,4.783715,3.05728,6.6571175,3.468605,4.56954,3.44936,4.350045,5.6281920238095235,0.5936207142857143,3.7123000000000004,1.7288633333333332,0.5322344444444445,4.164405,2.24165,0.9949675,2.06108,5.93845,3.66307,2.2789,2.6851366666666667,2.735246666666667,4.93559,4.07738,1.677417380952381,4.22689,2.27908,3.7738,4.48339,5.0797,3.1314275,3.7222333333333335,3.9025,1.981474,7.35499,4.69091,4.524965,5.2317,2.185125,4.49378,4.732095,4.049255,3.888135,10.819405,3.352235,4.763988333333334,4.75585,4.505315,2.3729775,4.360815,4.020445,4.61404,3.2564766666666665,4.27445,1.4938525,3.1816,3.43183,3.986125,5.04895,1.797522,4.047465,3.1953833333333335,5.4151,3.15319,1.610855,4.31889,4.598335,1.0566375,2.976305,2.7117633333333333,4.532347333333333,1.745666,1.5704466666666665,1.07074,3.07305,4.70035,5.5513650000000005,3.6497425000000003,3.223575,2.46938,2.01102,1.92371,1.5805933333333335,5.97915,2.958685,1.89329,0.8622692307692308,19.97987376282051,3.152015,3.0681241666666663,4.48673,3.8518676923076924,1.3408733333333334,2.6491223333333336,2.8370754545454546,1.25473,1.8692733333333333,4.355845,4.918115,3.5432033333333335,2.924755,5.48125,4.751645,7.182752499999999,4.646261666666667,4.709705,3.69283,2.68384,3.98141,4.04222,3.5703666666666667,3.99176,1.9566375,5.10945,8.39568,3.33669,2.831635,3.10196,0.53922,3.1361266666666663,2.06542,2.316775,4.31396,3.209015,5.20075,3.641485,2.925685,2.21157,1.69791,0.765996,1.4443866666666667,1.2021833333333334,4.03191,3.814205,4.65683,4.64817,7.39219,2.2899533333333335,1.4231019999999999,2.3380966666666665,7.88626,3.162,2.8644,3.08173,4.593445,3.4496175,3.574785,1.52043,4.501535,4.715585,4.25699,4.083655,3.612615,4.217165,4.176445,3.711805,4.297375,4.855265,2.175935,3.3970000000000002,3.18527,5.4579,2.90136,4.149826,2.80936,2.96001,2.39785,2.24646,2.1295800000000003,2.8760586666666668,2.8760586666666668,2.02381,2.723966666666667,2.3331,2.3389433333333334,2.17306,4.12196,2.42278,2.8906899999999998,2.90002,1.64067,4.41879,2.82359,3.876405,2.6559399999999997,5.17325,5.1937,4.887695833333334,2.47328,2.49746,2.994425,2.854225,2.24117,2.83507,1.8602625,2.663075,2.72825,6.770142666666667,4.384175,3.73862,0.6123875,4.371045,3.940865,4.18014,3.2057,3.891025,3.7740675,6.29355,4.32156,3.242575,2.7667221428571427,2.1565666666666665,2.48246,1.6898,1.711628,1.7201239999999998,2.0904599999999998,1.8336425,1.2694166666666666,4.140181999999999,0.6261284615384616,0.5336666666666666,2.05606,1.52649,1.469408,1.4305566666666667,2.2630142424242425,1.4441050000000002,1.7464680000000001,0.61322875,168.92686068465642,0.5180113333333334,2.01388,1.094834,1.237685,2.087915,1.521825,1.97383,2.29966,1.7098625,6.5727,3.023115,3.440057142857143,1.9894533333333333,3.19515,1.2878766666666668,1.2878766666666668,5.980825,0.47998722222222223,2.1902725,3.4206,3.05831,0.836629090909091,0.6154117647058823,1.185960153846154,1.0080363636363636,2.265895,4.04114,2.0825675,2.115775,2.3679333333333332,5.051385111111111,1.0835733333333333,4.518885,3.52807,3.494745,6.95849,1.8936833333333334,2.947775,2.694475,3.814217,2.2119,3.007645,2.72004,3.39811,4.067410000000001,2.891795,6.77098,2.52092,2.67761,3.377165,1.43229,2.808915,2.86304,2.741525,1.742105,1.606955,2.344305,4.353405,5.619723333333333,2.904205,2.92572,1.33919,4.247705,3.744666666666667,3.917733333333333,2.964245,25.094124471611725,2.575228666666667,2.6198833333333336,3.0484666666666667,3.4377,3.30974,5.711943333333334,3.1139500000000004,2.29997,3.4385666666666665,3.5437333333333334,2.15377,3.2813700000000003,3.4233666666666664,3.1720133333333336,1.7137333333333336,1.6466687500000001,0.5682750000000001,2.2434499999999997,2.0527675,0.22045,2.2961733333333334,2.612865,0.22045,0.22045,2.1838166666666665,0.22045,0.22045,0.22045,0.22045,2.8330800000000003,2.6831066666666668,0.5668223076923077,3.311012857142857,1.44566,1.9648219999999998,5.45905,4.386025,6.002542500000001,2.0258075,5.0409,2.1042925,2.6070733333333336,1.30968,5.856843333333334,2.84797,5.9551625,0.8583333333333334,1.3429525,4.662905,4.70677,35.63399778729604,1.59811,1.4149033333333334,2.35317,2.3448575,0.8991109090909091,2.3820866666666665,2.26851,2.6909899999999998,1.9048166666666668,2.470076666666667,1.6522983333333334,2.699396666666667,2.391766666666667,2.1794566666666664,2.65441,2.4522066666666666,4.073635,3.6112,1.0902542857142856,4.13806,4.08741,19.915080500000002,2.7426133333333333,3.0612933333333334,2.538413333333333,0.744656,3.2815220000000003,1.508296,3.2815220000000003,2.4405433333333333,2.6554166666666665,3.013033333333333,1.6869825,1.9003175,4.38981,4.01779,5.08985,4.31267,1.7309,5.0136,1.6367175,4.95278,4.001309619047619,4.33601,0.7489936363636364,2.0080825,2.0858075,2.75863,3.379795,1.11566875,3.34652,1.916038,2.0076933333333336,1.063084,1.063084,3.0160666666666667,2.58146,4.364845,29.322713750000002,6.35471,1.8957866666666667,3.6157233333333334,0.38150399999999995,5.992592500000001,5.96425,2.74757,3.391095,5.385525,3.720765,1.15002375,4.73707,1.282992,2.76656,4.49708,4.6427,2.10974,3.2049,4.438475,2.369865,2.9399575000000002,4.28435,1.2773633333333334,2.48204125,3.8348,5.3321000000000005,2.4730666666666665,3.037596666666667,2.7728366666666666,4.178615,4.00789,4.14276,4.2067000000000005,1.758195,5.97874,2.594675,1.7695440000000002,4.120545,5.77761,4.122765,3.45564,0.757765,3.069795,3.541825,2.02795,4.715040666666667,2.76066,3.981785,2.8776433333333333,3.365,2.58235,3.2590533333333336,2.9950733333333335,3.2745599999999997,4.18374,5.6246,3.68717,1.7512,4.00824,4.10403,1.894445,1.904405,1.7527775,4.112836111111111,4.49517,5.326423854166666,4.06909,3.4263666666666666,3.798005,3.1402433333333337,1.33305,2.980975,3.109545,2.96927,4.52581,4.48515,4.52911,3.174475,1.85337,1.46794,1.521395,3.544545,2.392725,2.16379,3.41225,5.10175,1.581235,5.1876,1.3882314285714286,1.9051225,3.206585,3.1783,2.982895,3.663685,3.045765,1.79009,0.9529600526315789,3.45411,3.7435033333333334,4.518505,8.631841666666666,2.6724266666666665,3.011426666666667,1.55304,2.7810566666666667,2.7962366666666667,1.127605,3.07478,2.7126,3.3378,4.0234,2.9858733333333336,6.985989999999999,3.109413333333333,0.7508863636363636,1.8513533333333332,3.46277,3.334095,3.38716,3.579966666666667,2.6809510000000003,2.89899,2.69941,1.9268114285714286,3.86469,2.473961111111111,3.34249,2.203866666666667,4.874395,4.93924,4.313045,3.369035,3.53767,0.947601111111111,4.86259,3.00512,2.6376833333333334,4.584185,2.6249933333333333,2.7342833333333334,0.38044285714285714,0.38044285714285714,4.4268,4.01271,7.06955,3.076745,4.70359,3.616235,3.17435,4.83861,4.238385,1.0450375,4.02311,2.6536166666666667,4.018501666666666,2.981996666666667,3.1223,1.7881866666666666,3.3269675,2.3025100000000003,2.88637,2.5137266666666664,2.81837,1.9507433333333333,22.387064321475627,4.198545,4.08206,3.975785,3.20932,4.5118875,3.466055,4.550255,4.254825,3.99684,3.54231,3.969775,2.7000733333333335,2.9379266666666664,2.9358633333333333,3.014993333333333,2.857813333333333,4.216645,3.57018,4.91225,5.0108,4.43197,1.32087,1.48,1.48,4.95739,3.968585,2.6787766666666664,2.3473466666666667,3.0266,3.293875,3.43842,7.877528333333334,3.2928333333333337,3.6202,2.9468249999999996,5.20115,1.6619433333333333,6.083185,2.44908,3.00357,1.71549,3.854355,2.991355,6.80803,3.40871,2.653135,4.26417,3.88428,1.407455,2.59295,1.64048,7.673795,4.08962,6.728993333333333,2.242935,4.17683,3.71066,4.10736,5.20335,3.6689000000000003,3.6689000000000003,2.0912,4.386855,5.0403,2.356915,6.626352857142858,1.7344425,5.69,8.433812666666666,3.5833666666666666,4.302065333333333,2.3276133333333333,1.979015,0.524705625,4.34257,2.636175,2.795425,3.9045199999999998,2.4016225,2.53503,3.491915,5.83165,5.1948,4.88077,4.808825,4.210175,2.180655,1.0425454545454544,2.90967,3.21983,2.742103333333333,5.1001,4.061095,3.27729,2.58534,1.9294160000000002,4.29112,1.02479875,5.2149,1.0217466666666666,5.34675,3.37058,4.905965,4.976145,3.151,3.229825,3.1631033333333334,2.332883333333333,4.34055,3.076075,2.39492,3.701445,4.7216,5.8522066666666674,4.604865,1.77119,3.54195,3.03215,5.483725,1.913975,1.913975,2.8742033333333334,2.364453333333333,2.4360866666666667,2.5892633333333333,0.87564,5.90535,3.387615,2.045485,2.365665,2.63157,3.68665,2.714305,3.72679,5.1039,5.30225,4.917585,6.1536,5.9133,1.330125,3.78185,1.11585,2.588125,4.371866666666667,2.55105,3.03956,3.24337,4.387045,3.443685,0.45181315789473686,4.6676,4.15751,4.83854,3.269395,4.60264,5.454,4.27526,4.035515,1.763795,4.50623,2.049605,4.378666666666667,4.378666666666667,6.52945,5.6508,5.3536,5.2337,2.789845,1.6619433333333333,4.254195,1.9187733333333332,1.6508900000000002,2.12187,4.17979,4.13361,4.333005,8.0958,1.6218616666666668,5.15835,1.24763,3.169425,5.7104,1.99,4.64203,2.6997466666666665,4.969655,3.487335,4.752145,3.084146666666667,4.213815,4.08565,6.0097,4.30565,4.010955,3.944565,5.8237,4.16698,4.57826,3.63362,4.32604,6.959486666666667,3.52187,7.17835,3.320245,5.3723,6.1654775,4.405115,3.62541,1.696735,5.5003,3.87753,0.9155899999999999,8.90907,6.0214,5.106,3.0322741666666664,5.2166,2.811555,1.694772,4.04236,1.12559,6.1879,2.875495,4.604835,5.43705,4.32919,4.3013,2.1527333333333334,4.3143,5.1563,1.564165,7.192408333333333,3.06912,3.347135,5.0841,4.043265,2.13344,4.45191,3.67149,3.84065,2.8657166666666662,3.981665,3.697845,5.34,4.716925,3.249745,1.9176925,1.9176925,7.468328333333333,1.4535714285714287,5.21335,4.2745,5.2915,3.484475,3.6811,5.1467,3.954555,0.9413766666666666,0.9413766666666666,0.9413766666666666,3.607285,3.22607,3.923445,4.461067777777778,2.79461,1.4558883333333332,4.389155,2.0861175,2.6465,4.021075,4.719575,1.92211,2.1382000000000003,5.27818,3.66974,2.79644,4.38323,1.6576375,1.948045,3.312796666666667,2.71712,5.10785,1.413408,1.610258,1.0294025,4.042265,3.552325,2.799326666666667,3.0366033333333333,5.4206,1.75046,2.01978,3.176795,1.6530857142857143,3.23812,3.622935,2.517825,5.45405,5.4655,2.76492,4.336625,3.685955,3.40497,3.623695,4.05451,3.447395,6.63214,5.4231,1.9207599999999998,1.8263333333333334,3.466375,4.664165,4.147235,4.064595,2.9538266666666666,4.100395,6.1484,5.15295,2.663676666666667,5.4327,4.039945,3.65704,8.4256125,3.887025,0.7297954545454545,3.960135,4.1055825,2.403775,3.99848,3.724466666666667,5.8078,3.896615,3.730215,3.835885,4.293775,4.63386,4.569665,2.7822,3.966405,4.988955,4.055745,2.584885,3.08258,6.35051,5.38685,2.0663799999999997,3.198145,4.185218333333333,3.846245,5.10005,4.35519,2.5294433333333335,0.8575611111111111,4.547883636363637,6.4292074999999995,3.38411,4.76324,3.64129,6.645941666666667,3.84599,3.7459000000000002,2.943576666666667,3.888055,2.006015,3.48069,4.292155,2.5673555,3.96297,5.7646,1.41139,4.83253,0.6453121428571428,6.3322,6.15905,6.3459,6.0725,1.7533666666666667,1.7427599999999999,4.69541,1.913905,5.7794,0.536045,6.0188,3.205305,1.528218,6.276965,6.461,0.9030025,1.6391745000000002,1.1634600000000002,1.1634600000000002,1.1634600000000002,2.1622866666666667,4.81197,3.60657,3.486965,4.012135,5.228,3.89674,1.935512,4.178185,5.1608,0.30466829268292683,3.69867,4.643825,4.51754,39.22593918939394,5.778708333333334,5.03575,11.380079333333333,3.01275,4.25947,7.095713333333333,3.035575,4.92751,4.02018,4.194385,8.999775,3.97322,2.6283133333333333,2.69919,4.691685,4.149905,3.3784,4.321225,1.98368,4.542855,4.24836,6.800806,4.191035,5.3977,2.3610625,4.26876,0.52557125,1.4379333333333333,3.431055,6.28505,2.844115,1.2306033333333333,1.2306033333333333,3.24091,3.875495,3.99485,2.928135,1.66339,3.735775,4.20615,1.7380425,3.1765033333333332,1.6766159999999999,1.83404,4.01972,4.45897,2.12949,4.598365,2.35814,2.11013,3.686345,3.645575,4.065785,3.90972,6.244629333333333,2.466829333333333,3.960985,0.7098690909090909,0.6600266666666667,3.71808,2.308415,8.811083333333332,3.3891333333333336,5.0545,1.6636225,4.39832,1.5338933333333333,3.86482,4.326115,2.5247800000000002,3.683125,5.2656,0.4136115,0.4136115,3.7225,3.1521266666666663,2.9107466666666664,3.809695,3.73094,5.3763,1.002709090909091,10.22691,10.522784999999999,2.01009,4.7221275,4.69501,4.81193,3.64874,2.5847966666666666,2.05228,2.0099525,10.220555000000001,2.2471525,2.7020633333333333,3.667716,4.709805,3.667716,2.2095575,3.005596666666667,2.9065100000000004,0.70722,5.4364625,2.94019,2.6978633333333337,4.07014,8.80049,10.112210000000001,4.41574,3.931995,4.054235,6.5910325,1.933985,1.4001125,26.332355833333335,4.300735,3.95264,1.0051,4.4135,4.0911,4.94039,4.32929,5.3523,5.809336666666667,3.03337,2.13165,0.6600176470588235,0.7297958333333333,4.709495,5.1801,1.3709449999999999,4.4427183333333335,0.9094083333333334,3.6534999999999997,1.4303833333333333,4.24836,5.8819,1.90884,2.433045,2.37974,4.01318,2.96338,0.3982238888888889,3.860795,3.58921,2.729433333333333,3.295545,4.89784,3.0025433333333336,4.04111,3.019415,4.165595,8.33436,4.71421,7.897444999999999,2.734675,2.6390833333333332,4.49161,4.664422500000001,4.390605,4.45261,3.728005,4.652455,1.2038225,3.2950608333333333,3.2972359285714283,0.726312,1.48,1.48,4.44669,7.4407950000000005,0.8448923076923076,4.831075,0.9336916666666667,2.84245,2.3394333333333335,2.5164097727272727,6.539506666666667,2.4800999999999997,1.1503333333333332,2.58203,1.20781125,2.0193533333333336,3.196266666666667,3.090915,3.3195533333333334,2.454293333333333,0.9336916666666667,4.465495,4.38578,5.53695,2.8038,3.945355,2.11932,5.8574,4.895585,4.5278,2.9193,3.47452,2.1942,1.65158,4.031615,2.741975,4.317255,5.5637,1.5386380000000002,4.673235,2.9948866666666665,6.41861,3.529145,3.13952,0.9336916666666667,2.376775,3.7443,7.558695111111111,2.4565633333333334,1.814238,2.4565633333333334,0.4295641666666667,1.366076,3.53323,2.800975,1.741215,3.568805,3.884547,0.617092,0.617092,0.617092,8.155345,1.564654,0.7308981818181818,36.001412106060606,1.902695111111111,0.6978711111111111,3.14869,0.6978711111111111,3.73502,2.034785,2.451225,2.522536666666667,5.22995,4.175545,4.671455,2.421186666666667,0.8950857142857143,4.307405,3.408466666666667,5.02745,1.0321257142857143,2.9973,2.9973,3.85552,4.396015,3.711075,4.959567692307693,3.27078,4.80465,5.2746,1.816038,1.06164875,5.3266,6.6111,3.762935,0.692501,4.411705,4.174143333333333,0.93297125,4.486115,2.486565,4.101765,4.3458,1.8894515151515152,1.8894515151515152,4.21965,3.37381,0.8868666666666667,3.111455,3.0427733333333333,3.228765,4.016405,4.385605,0.40159,0.2803952941176471,0.2803952941176471,0.2803952941176471,0.6819852941176471,0.5942376923076923,0.658847,0.2803952941176471,0.2803952941176471,6.830220000000001,0.2803952941176471,0.6819852941176471,3.54688,1.2583475,4.721225,1.1899366666666666,0.5940723076923077,0.93297125,2.621685,2.703725,4.04322,3.041215,0.2803952941176471,0.2803952941176471,4.32798,3.762015,4.09232,2.55773,3.94172,1.541102,3.93081,0.658847,0.658847,4.575925,3.13983,2.71983,2.89397,3.8228299999999997,1.0026199999999998,0.8918,10.866795,1.3013,3.81512,4.55918,5.0452,2.05254,0.3927269565217391,0.88487,2.8565466666666666,3.353475,3.28884,4.49978,1.440522,5.94735,3.60202,5.2409225,4.17553,3.016016666666667,2.9692966666666667,6.4848,2.70231,4.904025,4.187155,3.9773,5.82989,0.5564766666666666,4.16712,3.4403333333333332,2.09232,0.6887011111111111,4.014585,4.35502,2.81877,2.323505,2.17892,5.1812,2.758455,2.834425,1.01857,0.46368615384615386,3.963625,0.35099600000000003,0.7685327272727274,3.956065,3.13119,4.125725,2.7124,5.6713,4.323435,6.158008666666667,3.5682,3.397635,4.54891,1.4935325,5.1591375,1.7915579999999998,4.13999,2.396065,5.985313333333334,2.52884,0.9755119999999999,4.53973,6.983207500000001,6.633335416666666,3.528166666666667,0.8136774999999999,2.8324466666666663,4.43614,4.203125,4.48029,4.572165,4.130925,5.048,2.955815,4.176995,1.75617,2.21224,1.4459,3.98605,9.482975,3.31672,3.68716,5.964,2.731275,4.22218,2.5443599999999997,2.983961,3.29715,2.821255,3.32945,3.45841,3.39507,5.3168,5.78635,3.996835,4.705835,4.927455,3.91657,2.59654,5.2334,7.754075,0.91027,3.84962,4.079665,4.816185,5.66,4.956345,2.58569,8.120885,2.4391666666666665,3.39303,6.04445,3.75137,4.247185,2.18516,1.7873675,3.02077,2.12668,1.9454399999999998,3.0265066666666667,4.07093,4.601895,4.10582,3.60053,4.988901666666667,3.43147,3.05933,3.964255,5.83685,2.9009,5.6292488333333335,3.89701,3.99509,3.582205,8.06313,3.81825,3.6802,4.292565,4.874535,3.12244,10.9021,1.3357216666666665,2.25716,3.853975,2.6637833333333334,2.6637833333333334,1.99087,7.740846666666666,0.8749833333333333,3.097125,0.90323875,2.01978,4.491975,5.168,4.2945,4.33624,2.823,3.36359,3.978255,3.813525,4.145015,2.946415,2.6057266666666665,4.214475,4.98716,3.50911,4.37668,1.630976,1.635342,2.672686666666667,5.66685,2.19764,1.7199366666666667,1.982305,4.32162,4.81588,3.06282,2.786745,0.5088111111111111,2.36001,7.782085,3.36658,1.4905333333333333,0.86497125,1.19159,1.9833800000000001,2.14309,0.7892783333333333,2.10453,4.3553025,3.927685,4.648315,2.447626666666667,1.8885275,6.4292875,3.13565,2.0078633333333333,2.0078633333333333,2.0078633333333333,6.662743333333333,2.273476666666667,3.456345,2.525735,0.47348,1.089086,2.45982,5.9576,0.4482494444444445,3.628105,3.9278775,5.7242,2.9713594444444444,0.4482494444444445,2.9713594444444444,0.98825875,1.2166460000000001,5.7184,4.028045,6.834922499999999,4.17243,4.848095,3.838625,4.17591,5.0181,5.14495,6.0868,3.758515,3.40665,5.06195,4.70742,4.12223,4.417765,4.529255,1.33168,2.64129,1.2376475,2.13451,3.2005483333333333,1.543055,7.308305,5.483725,2.6764366666666666,4.480195,2.96818,4.784165,2.72604,4.33961,4.953565,9.374735000000001,5.23395,4.50492,2.39732,2.891585,2.1239999999999997,0.53922,2.1968715555555556,5.6969,5.41475,5.17205,4.56037,0.5442033333333334,1.9984575,1.4491675,4.32161,0.7650069230769231,6.586295,2.036305,1.1225,1.1225,3.944202,2.0575,3.1323933333333334,2.60059,4.57762,3.662545,3.662545,4.760815,5.801948333333334,2.820396666666667,2.4134266666666666,3.27399,4.751605,1.9109760000000002,2.7737233333333333,5.6612,5.25775,4.804885,4.277125,3.881263333333333,4.99437,3.4915325,3.2012199999999997,2.34381,4.170415,5.2357,3.24105,4.90416,5.55545,2.1403233333333334,2.53531,6.18265,6.96925,1.19706,2.6783,2.3398125,2.68369,2.3849175,2.573925,2.6307289999999997,1.0516633333333332,1.8856075,2.6414,2.29139,2.372001666666667,2.372001666666667,3.043488,3.0169,2.2401376923076923,2.62365,2.3729575,2.07134,1.603006666666667,5.1348775,14.894363166666666,2.8403333333333336,3.4534333333333334,1.8228760000000002,1.8228760000000002,1.62394,1.62394,2.9325533333333333,3.6771666666666665,2.9145066666666666,1.9649725,1.9649725,3.9597333333333338,2.60362,1.10873,1.3978057142857143,3.0798233333333336,2.9928399999999997,3.5314666666666668,2.6846864285714283,3.352066666666667,3.2229533333333333,0.6977369999999999,2.712375,3.6971863333333332,7.12153,4.75536,5.54055,4.35941,3.449545,4.94028,4.463665,2.9955966666666662,4.158295,1.387075,3.25578,5.8383,5.2571,2.73035,1.3619866666666667,3.0048,2.54318,3.0979466666666666,1.59408,0.7133192857142857,3.2170366666666665,4.70041,4.696295,4.053265,4.83443,3.06627,2.1760533333333334,3.2867191666666664,2.4840766666666667,3.3909333333333334,3.1186333333333334,3.2893333333333334,2.7289600000000003,2.2610766666666664,3.687466666666667,2.9547333333333334,5.2764,4.815545,5.197285,5.197285,3.391345,3.92189,3.76786,3.74952,2.71445,4.516025,3.44044,3.1075433333333335,6.2361,0.7611941666666667,5.04515,4.891175,2.55349,5.301901666666667,3.607666666666667,1.7553666666666665,1.3499042857142858,2.1690033333333334,1.02328,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.5696257142857143,0.5696257142857143,1.211035,0.8170033333333333,1.6307133333333332,0.9054085714285713,0.9054085714285713,1.19452,0.4361933333333333,0.37994,1.221575,1.49701,2.6707633333333334,2.4009725,6.538568333333333,2.99703,3.84239,3.463801666666667,4.972794,1.3012483333333333,4.718615,4.03582,4.84334,3.1556,1.504854,4.340596153846154,3.82043,4.55569,4.525915,3.196545,5.09775,4.64509,4.6602,1.26499,4.0008,4.76,3.20792,2.3445566666666666,3.47025,2.47327,3.30249,4.41439,3.06574,4.9541,8.654505,3.24066,4.92818,4.417915,4.409325,2.6708166666666666,4.65416,1.0672271428571427,4.13487,3.45651,2.09654,1.2342775,2.910065,1.3188,0.5140146666666666,3.4435333333333333,4.235695,5.20612,3.6968333333333336,2.4335875,2.798805,4.800025,4.0031,4.44944,2.682775,2.2582633333333333,4.021935,4.120855,3.95375,5.2084,4.365625,3.68783,4.530935,3.0793466666666665,4.29325,2.1462241666666664,4.568715,5.1783,3.210415,4.337975,2.529255,3.8605,5.61255,4.227235,5.22705,4.58241,4.935825,2.3167866666666668,5.0958,4.920895,4.98775,2.1659625,1.1562525,4.08708,4.522915,4.350555,4.948655,1.856375,4.079555,2.458445,5.0903,4.54934,4.69411,2.4565125,4.30462,4.89002,4.396335,2.63651,4.81923,4.685355,5.32095,3.72996,2.1659625,2.28968,2.921075,5.07045,4.17349,4.286145,3.518365,4.8769,2.33012,6.87989,4.939925,4.664715,5.359498666666666,5.1561,5.3977,3.4630462499999997,2.4800283333333333,2.4800283333333333,4.047165,3.53068,4.553335,2.20693,3.0043875,1.0144925,2.799936666666667,3.045083333333333,2.5170333333333335,3.09247,4.394455,2.9315166666666665,5.4777,2.7183233333333336,4.470795,4.764215,1.977075,4.20649,1.7139566666666666,2.708466666666667,4.055465,0.885556,4.95413,4.537975,5.959465,4.531825,5.6038,1.2936942857142857,4.593745,6.42675,8.58896,3.2853399999999997,3.308953333333333,1.9096039999999999,0.813345,3.82241,1.0194485714285715,5.03185,4.502555,5.61765,3.157245,3.613545,1.147382857142857,3.654675,3.530145,4.36753,4.10361,2.997955,2.78266,2.46294,4.283655,4.793535,5.7874,4.45994,3.62282,0.34307777777777776,0.34307777777777776,0.34307777777777776,0.34307777777777776,5.61955,2.96904,6.23015,3.0975633333333334,5.1343,4.553945,3.63435,2.176725,2.5820633333333336,1.4102833333333333,5.0559,2.8886333333333334,4.19476,3.96181,3.341465,1.67443,1.1491825,4.458335,2.551805,6.034974999999999,3.76545,4.875845,2.15305,1.4973866666666666,0.8628922222222222,3.364215,4.451315,3.3231,2.145525,8.05941,4.76466,3.49523,2.30706,0.390598,3.59626,2.899855,2.032685,1.87792,2.82166,2.8801,2.2759,2.8782300000000003,3.18316,3.32605,4.45417,3.846765,4.08726,3.541005,5.881391666666667,0.6247433333333333,4.565035,5.6267,5.15005,4.785075,3.2665566666666668,5.13025,4.528905,4.316725,5.442076666666667,5.44455,4.76018,4.606695,3.74308,4.933775,2.879765,8.98913,5.0586,4.24357,4.782805,5.02935,5.7044,3.573985,1.1138555555555554,5.890386666666666,3.49335,4.6998,1.3871016666666665,4.390275,3.95545,7.0504516666666674,4.611235,3.14664,2.017333333333333,4.554815,1.9430420000000002,1.02298875,4.089035,6.1299,1.8485266666666667,2.3276566666666665,2.864803333333333,3.10208,3.51316,3.60883,5.15055,1.7706733333333335,4.2202,4.2139135,3.3604,3.7671666666666668,3.729595,2.92905,2.610125,1.934935,2.4782433333333334,2.6755633333333333,4.284755,0.55997,2.5947733333333334,4.16909,2.96501,3.5996666666666663,4.593575,5.69325,3.981605,16.887214424242423,2.5471766666666666,4.111766666666667,1.49565,0.8851790909090909,0.8851790909090909,0.8851790909090909,0.8851790909090909,0.8851790909090909,4.677055,4.89835,4.916465,9.190717,2.43525,2.43525,4.5941,4.566520833333333,1.3120275,2.156143333333333,3.92907,2.4686025,2.495985,2.274835,2.9289,3.7871059999999996,1.7964675,3.479675,0.82165,2.906893333333333,2.868346666666667,3.03055,1.4615833333333335,3.23931,2.30186,0.94008,2.7523066666666662,2.6656066666666667,1.2803111111111112,2.4687233333333336,2.88294,2.2323066666666667,4.45394,1.8563433333333332,3.0778233333333334,2.09616,2.73817,1.1535555555555554,2.8827366666666667,4.792302,3.6488666666666667,1.04253375,3.0811266666666666,1.342715,2.42928,2.3881099999999997,4.790736666666666,3.0518733333333334,2.4666200000000003,4.65657,2.7084499999999996,2.22967,2.93709,2.524,1.8141733333333334,2.8333333333333335,3.17277,3.14793,2.6319433333333335,3.154146666666667,2.663186666666667,2.5123,3.5864875000000005,3.5864875000000005,2.927286666666667,2.020566666666667,1.8705666666666667,2.583883333333333,5.483583333333333,2.9276966666666664,2.0049066666666664,1.6788875,2.9542333333333333,4.318575,2.4778,1.07607,2.690663333333333,1.5341033333333334,3.242096666666667,2.1994700000000003,2.5599966666666667,2.10238,2.9430533333333333,1.219166,1.5550266666666666,1.4861533333333332,4.236726666666667,2.587896666666667,3.89046,1.0294922222222223,4.10526,2.062273333333333,2.212965,1.7998020000000001,1.6680833333333334,3.1884200000000003,23.47834701948052,7.368633333333333,2.6507133333333335,3.6640525,2.6860966666666664,10.033369333333333,3.09038,1.0034975,2.5939566666666667,2.3503366666666667,2.074333333333333,2.6665466666666666,2.5693699999999997,2.5568833333333334,0.918294,3.1285633333333336,2.4916133333333335,3.0203399999999996,2.649833333333333,2.6546499999999997,2.1040533333333333,2.2771133333333333,2.812163333333333,2.65611,2.06466,1.552284,5.350976666666667,4.646185,2.318,3.004075,2.282973333333333,2.3980200000000003,8.062091666666667,1.9638366666666667,4.997495,2.28289,1.9716975,7.64297,2.9373566666666666,2.7533066666666666,2.4902575,1.8884899999999998,1.4971784615384616,3.2305466666666667,3.0556699999999997,4.24875,1.581175,3.7403999999999997,1.499435,1.499435,4.287465,4.660275,2.810477142857143,2.810477142857143,5.915446666666666,3.50177,0.42245499999999997,11.957837463369962,1.27132,0.9279871428571429,3.7556966666666662,1.4494028205128204,1.9745075,6.188296666666667,3.74395,0.7259981818181818,2.1578466666666665,4.969672545454546,2.4638436666666665,4.20718,1.3580528571428572,5.57205,5.22045,5.12185,3.3154565,1.888402,2.34586,2.58994,2.43446,2.23712,5.030916666666667,4.696935,4.351515,1.750105,4.659955,3.950065,3.6456,2.119985,4.96201,2.5003800000000003,9.0397,6.76405,1.876705,2.2888,1.7367339999999998,4.558333333333334,4.558333333333334,3.086016666666667,2.810636666666667,3.024589166666667,4.91462,9.7531,4.240655,2.4655875,5.2543,4.249865,5.13385,2.03238,0.8494975,1.32133,4.540385,4.734325,3.668366666666667,2.8194733333333333,3.844466666666667,2.1875266666666664,4.10592,4.67696,3.405925,5.4603,3.2266600000000003,3.741886,3.3813666666666666,3.29051,3.4385333333333334,6.25165,2.989275,5.33105,4.789195,3.48439,3.3588,3.3588,5.8474375,11.8842075,3.5751333333333335,6.310992499999999,7.421480555555556,3.61489,2.50731,4.03346,1.3069433333333333,3.77629,2.46943,2.943146666666667,3.0125266666666666,3.3201666666666667,2.06608,2.393686666666667,2.72491,2.46312,3.0592666666666664,3.1020333333333334,3.92576,2.699066666666667,2.9176233333333332,3.861285,2.83394,2.582273333333333,1.163535,2.059765,2.8033699999999997,2.4457633333333333,2.523746666666667,2.44002,3.5647,2.30857,2.3117366666666666,2.71029,2.983973333333333,2.70412,2.8825000000000003,2.52802,3.175046666666667,2.8247033333333333,3.2809660000000003,2.625436666666667,2.438546666666667,2.3519133333333335,2.6136133333333333,2.71781,3.5483333333333333,3.32835,2.686315,1.9262475,1.9262475,0.7651283333333333,1.52043,4.01263,3.098565,2.6327000000000003,2.06608,3.168433333333333,1.2439785714285716,2.74187,0.5767100000000001,3.5101,3.150346666666667,3.21972,2.96663,2.486476666666667,2.5972466666666665,2.9338033333333335,2.6830866666666666,3.4022,4.6484,1.5287739999999999,2.7428733333333333,2.3969766666666668,1.7874999999999999,2.0697300000000003,2.8500266666666665,2.6797133333333334,1.6666640000000001,2.515076666666667,2.599483333333333,2.65342,2.6994666666666665,2.85118,2.98169,3.13499,1.3453375,2.7542033333333333,2.33235,3.6458999999999997,3.8901,1.959345,1.9825566666666665,3.29556,2.56122,3.3839333333333332,2.6662966666666668,2.3715966666666666,5.370525,3.4321333333333333,2.0522266666666664,1.506822,3.3256200000000002,6.226753333333333,3.104976666666667,3.5770999999999997,3.0070833333333336,3.00221,4.586465333333333,1.586652,1.1406,2.16966,1.8984895833333333,4.68033,2.9412266666666667,3.2647333333333335,3.118793333333333,3.2668166666666667,2.3522000000000003,3.4765,2.41941,1.6375319999999998,2.9006966666666667,3.56821,3.600885,3.18808,3.738305,1.684145,2.697365,3.48955,3.33426,2.5016333333333334,3.7785666666666664,3.9773,3.8261333333333334,1.365725,5.581898000000001,3.22584625,1.46326,3.347095,3.600645,2.820405,3.91438,1.899032,1.899032,3.1593633333333333,2.962483333333333,2.80615,5.15095,4.307985,4.2779826666666665,1.1958959999999998,3.0683900000000004,2.6050066666666667,4.22119,3.0976966666666663,5.03526,2.56013,2.42226,2.561926666666667,3.703675,3.942075,1.629588,3.0861366666666665,2.89425,2.3977175,4.355285,1.3409116666666667,3.03478,4.16735,2.68487,3.539925,3.974215,1.6069325,1.63975,2.3949875,1.054475,1.9989435714285715,1.921585,0.4499478571428571,3.943665,2.470675,4.48592,4.191795,2.880845,4.6592199999999995,3.469633333333333,3.0495666666666668,3.5469666666666666,2.570316666666667,3.369533333333333,2.7616833333333335,3.210763333333333,2.29725,0.6865176923076923,2.39702,0.6297499999999999,1.9430133333333333,2.4976566666666664,3.2132,3.1561866666666667,1.3886866666666666,1.3302525,4.21383,4.576985,3.37842,3.4681825,3.156985,1.834745,3.935975,8.227033333333333,3.337835,5.619352500000001,1.5245575,3.90585,1.9815375,4.106925,3.56018,1.785055,4.14341,3.41508,4.010165,4.14637,2.1433425,4.08568,6.365135,5.0882,3.56495,3.055915,1.68286,1.9677675,3.77135,3.307615,3.22248,3.719305,3.56427,3.467495,1.5956275,3.650555,3.135775,1.8011925,4.2050375,1.0545583333333333,3.311505,1.6623375,4.09899,4.671635,3.663935,2.8458075000000003,3.62699,3.503925,1.9297375,2.2718225,3.89,2.40817,5.695987499999999,4.13665,4.411775,2.40861,2.899655,4.498,4.423365,2.374152,2.374152,5.8202826666666665,3.7134210000000003,2.579275,2.959735,2.020556666666667,2.80704,3.312065,3.7282841666666666,2.623621,3.29431,0.926474,3.77872,3.112265,4.101935,2.656795,1.5448175,1.426185,3.221315,5.8375509999999995,5.5166275,3.54886,1.6096375,4.292985,3.652445,0.777165,2.98284,1.411816,5.312985,1.4037016666666666,3.931355,2.07153,1.3886866666666666,3.16582,2.754715,4.733775,6.902265,4.171475,4.5577525,2.37012,2.84323,4.22812,3.834335,4.19403,4.391115,1.0528375,1.6466687500000001,1.07839375,2.584245,2.214645,4.90767,1.07839375,4.327595,2.204145,1.57807,1.57807,1.8011925,3.9365,4.364835,3.77002,1.494052,1.494052,0.9394066666666667,3.06,2.113295,5.98517,4.30642,3.70169,2.8861566666666665,0.9910657142857142,3.529235,2.760265,4.26473,3.695255,3.8787400000000005,3.8787400000000005,3.408485,3.99723,1.8354175,2.72044,0.9665666666666666,1.9626833333333333,3.59078,2.51865,3.3333791666666666,3.3333791666666666,2.845305,4.512805,4.20438,3.535245,3.53752,4.006365,2.6829533333333333,4.448675833333334,3.074365,3.95896,8.176739999999999,5.1374,2.68894,3.20305,3.0526,4.653955,3.1234580000000003,7.481997499999999,4.700675,4.764195,3.58534,3.79125,3.670535,4.636345,4.65542,2.126665,4.70349,6.265201666666666,2.554385,2.146513777777778,3.30967,3.34842,3.643635,5.9767,2.19192,2.3974866666666665,3.0621,3.1386725,3.04311,7.526904,1.509655,4.771293333333333,4.771293333333333,3.24783,3.5882674999999997,3.106455,2.24144,5.40962,4.407303,2.0445646666666666,3.948725,4.077205,3.512314166666667,2.85131,2.99061,6.14363,3.382215,5.45545,3.20129,4.56432,4.082205,3.839045,2.962483333333333,2.1783,2.877625,3.806235,2.9698,3.3886116666666664,2.918515,6.264853333333333,2.520395,1.8250225,3.3178758333333334,2.36649,3.95986,2.75122,0.777165,3.48036,4.01045,3.979125,5.9582025000000005,2.964955,3.18017,2.9476633333333333,2.9476633333333333,4.018245833333333,4.21238,3.75129,2.0748075,5.7774,2.137915,4.513595,3.664675,8.03719,2.7666066666666667,1.2441633333333333,3.170935,4.561365,0.64331375,3.882215,3.052605,3.007865,3.075155,4.28176,2.1692033333333334,2.415765,9.120615,3.42967,2.980005,1.4037016666666666,3.72197,2.695505,2.5036525,4.13281,5.323415000000001,1.625985,1.20524,1.0752866666666667,4.186435,3.97127,3.66244,3.587815,3.587815,1.5956275,2.254155,3.3196708333333333,0.9669433333333333,3.079795,1.05492,1.684145,3.50436,3.437865,2.800045,2.52672,2.723650833333333,4.480925,3.85643,3.24695,3.17125,2.896695,4.263765,6.7425,4.020285,0.89883,2.484025,8.6114,4.63535,4.0789,1.089185,5.006565,1.4127733333333332,3.7038275,3.7038275,3.98989,8.545728333333333,0.8865555555555555,4.639535,4.60507,2.4157366666666666,4.19037,3.71819,2.18803,9.628876666666667,1.80887,2.45792,3.28141,1.6959633333333333,4.066745416666667,3.18189,3.58092,3.646766,2.93883,3.082345,1.08494,7.30459,4.089695,3.934155,3.90866,1.998715,2.8458075000000003,4.152774166666667,3.70963,0.6424476923076923,3.99506,3.945115,4.76474,2.0960125,1.480616,4.132375,4.14677,9.15894,0.7289153846153845,0.801395,0.801395,1.88835,1.3364099999999999,1.434784,1.7317333333333333,4.689465,1.2661866666666668,0.89827,4.0536200000000004,3.500665,1.2022875,3.207005,4.628405,3.937395,0.778214,1.85511,9.66051,3.3087716666666664,3.348675,3.162535,1.8625325,2.5128333333333335,2.673665,4.397555,4.211905,3.84546,0.9048785714285714,1.351688,0.912021,4.2094325,4.35646,4.108105,0.9669433333333333,1.697664,3.81288,2.2517060714285715,4.833379166666667,1.0522375,4.62156,0.6353633333333334,0.6353633333333334,0.6353633333333334,9.89936,3.902085,1.05492,3.83605,4.67171,2.81857,3.17389,4.85153,2.92711,1.9262266666666668,2.2880133333333332,0.778214,1.5553789999999998,0.5298233333333333,0.8063666666666666,1.4291233333333333,3.88824,3.717055,2.0647625,7.298225,4.809159166666666,0.6248177777777778,6.1876,5.115406666666667,3.34176,4.420485,8.127920333333334,3.8499822023809522,4.809159166666666,4.578849083333333,2.34747,4.18372,3.600455,7.56072,3.486985,0.390598,1.521696,3.95956,1.766148,1.20524,4.040015,2.43394,1.716675,3.22391,1.669896,4.47958,4.34383,4.070155,4.7213,6.3598,2.606525,3.81787,1.411816,2.3680075,3.518645,3.300565,2.0445646666666666,4.051305,2.550285,4.948995,2.929435,2.348695,3.2813791666666665,1.6441700000000001,3.551685,0.9669433333333333,2.22031575,1.0752866666666667,1.712605,3.559295,1.509655,1.4291233333333333,2.0040425,3.24849,7.68159,0.9048785714285714,1.089185,1.361488,3.60174,3.812475,1.361488,3.95874,2.3680075,0.64331375,0.9669433333333333,1.88835,1.411816,0.4499478571428571,1.66116,4.178928,2.4157366666666666,1.3980716666666666,2.97518,1.365725,1.80887,2.779655,2.2880133333333332,4.62153,2.779655,0.777165,2.9446890000000003,2.2764525,0.10322863636363637,0.10322863636363637,0.10322863636363637,0.10322863636363637,0.10322863636363637,3.2905233333333332,2.7661866666666666,2.708493333333333,3.0642266666666664,4.68368,4.21903,1.7998020000000001,3.822515,3.744225,2.20948,4.82733125,2.72806,2.42314,2.479685,2.679315,4.596405,8.845550000000001,2.272675,2.0317866666666666,3.006158214285714,0.9518057142857143,1.3809533333333333,2.366826666666667,2.10113,1.5420775,2.7617966666666667,2.16784,2.6431633333333333,2.58783,2.6518633333333335,3.75211,3.416795,2.5946000000000002,1.3297599999999998,3.78854,3.63081,1.5510766666666667,1.301342,1.301342,1.301342,3.504565,2.6687966666666667,1.1016566666666667,2.23109,1.3668514285714284,4.41038,1.61414,6.448413333333334,3.3516825,2.5367833333333336,3.169768,3.169768,5.148249999999999,2.99055,4.653105,4.939115,2.249905,3.1550966666666667 -GSM1946757,1.0,1.94616,1.94616,1.5305933333333333,4.980305,5.57905,2.6713065789473682,1.6644933333333334,8.3420606127451,4.64762,3.02379,2.02597,2.102645,3.729695,4.12704,1.7841619999999998,1.505662,4.942205,2.370303333333333,2.4242375,4.99109,5.146448333333334,4.00496,2.666495,1.753332,3.60602,4.99924,4.147645,0.7463299999999999,1.4917633333333333,1.8918483333333334,2.0651975,2.534625,1.2286671428571427,0.7239874999999999,3.2286496428571425,1.52725,1.577985,1.2092,2.12553,0.97955,1.051095,1.077358,1.5255699999999999,0.8886139999999999,0.92189,0.783514,1.0779228571428572,1.7173919999999998,1.7939699999999998,1.512348,2.11604,1.721376,17.935232000000003,0.37012999999999996,0.8027900000000001,1.1251659999999999,1.8894860000000002,1.795262,1.803582,1.045662857142857,1.045662857142857,1.045662857142857,1.1445433333333332,1.305558,4.7797075,1.037535,2.1777375,2.0861425,2.585125,0.9861409999999999,2.31634,2.33457,2.1135125,1.388115,1.8364575,1.604435,1.6860175,2.6731433333333334,4.320735,4.711445,4.91013,1.4506033333333335,4.577475,4.846673333333333,4.09794,4.34853,1.025555,7.46203,0.6028925,0.6028925,1.9795725,1.1216314285714286,16.6462,4.25874,5.2466,4.488825,4.050115,4.031705,5.2248,0.5034844444444445,2.1967845833333337,1.6320025,2.2944375,4.759975,4.6204,1.11585625,3.28347,2.6486466666666666,2.32041,3.500666666666667,3.51151,4.81809,3.0083504999999997,4.543555,2.9815066666666667,0.7521136363636365,1.647618,1.9933775,4.31419,3.491945,0.560771875,3.660265,3.8665,0.936425,3.95172,1.6828712987012988,2.15586,2.52625,2.0404325,3.82136,5.4105,3.253645,2.7016266666666664,3.1783566666666663,2.9908133333333335,4.024045,2.9792400000000003,5.67545,3.44266,4.658955,3.5878,2.47554,3.51083,2.44876,6.964223333333333,3.678715,2.825275,3.47675,2.996695,4.687905,0.7599,9.337472857142856,3.324735,2.21749,1.8315183333333334,3.6032666666666664,2.32409,4.487305,5.5622,1.9761275,5.018481666666666,2.775175,4.733165,1.9761275,2.5573,4.496795,5.226283333333333,5.78895,8.185468333333333,3.30038,4.1907,2.988675,5.03475,4.533285,1.4355316666666667,8.12573,4.31451,4.051045,3.60952,3.567395,3.651685,2.224675,5.968685,2.2262,4.486185,4.12561,4.87617,4.526905,4.696105,1.3499416666666668,2.744715,2.87721,2.0334975,2.0334975,5.922771000000001,2.994895,1.9155066666666667,4.07157,4.448885,2.975595,1.4714366666666667,1.1233555555555557,5.47675,2.64691,6.88855,4.71181,4.50117,3.78108,3.09715,3.930465,3.46895,3.838135,4.16438,6.5222,2.78714,3.49711,9.034673333333334,4.695795,3.407666666666667,3.1660233333333334,2.8922399999999997,3.8244333333333334,3.9523391666666665,1.4127425,2.9750366666666666,2.3015233333333334,1.65611,1.65822,2.6553833333333334,1.73115,2.2098125,2.9513266666666667,2.71968,2.4704533333333334,2.94335,4.846673333333333,3.39828,4.22087,3.47357,4.64074,1.3321983333333334,2.021085,2.829265142857143,2.05086,2.52568,2.8203866666666664,3.3817333333333335,1.9123819999999998,1.3481366666666668,2.801906666666667,0.64345,1.70852,0.511108888888889,0.511108888888889,1.71971,1.9269733333333334,3.2499300000000004,1.2613966666666667,1.4842033333333333,0.3807176923076923,2.6851133333333332,0.64345,1.20943,0.2128783783783784,1.4582433333333331,2.1203975,3.6726666666666667,2.7482933333333333,2.23875,2.56052,3.173916666666667,2.36465,2.5679333333333334,2.8307466666666667,2.238163333333333,2.5490333333333335,1.84225,2.7302,4.789785,0.8006766666666666,1.8484433333333332,2.763056666666667,2.098193333333333,3.64715,1.484312,2.46635,2.3471433333333334,4.310583333333334,1.9523533333333332,6.75023238095238,1.6281857142857141,2.67292,2.322135,1.926385,3.6684666666666668,2.39067,1.84294,4.375045,2.6259900000000003,2.14779,3.828305,4.463205,4.460785,3.75434,2.280845,3.363895,5.318296666666666,3.714815,4.27541,3.92116,4.316455,3.03774,4.52138,3.37977,0.90103375,4.72234,1.2434216666666666,4.794155,3.721815,6.437364,3.98474,4.22422,1.0219975,2.14928,3.382925,3.963685,0.8229014285714286,1.3639861965811968,1.997995238095238,2.0653377142857146,4.88838,5.501548,1.883,3.498745,5.41115,0.32612214285714286,3.49012,2.326985,0.9484875,4.313575,1.9773,12.69392,0.945845,2.2184375,2.5554099999999997,2.43834,1.8908451315789474,4.552665131578948,0.30384263157894736,1.7099,2.9788833333333335,1.0070175,2.7274766666666665,0.8736071428571428,4.58306,3.904715,2.0559266666666667,5.8156,5.52625,2.2269225,1.2337557142857143,4.442393333333333,5.6186,4.20706,0.9290090909090908,8.546483333333335,3.1003833333333333,4.89317,2.6461900000000003,2.5865033333333334,4.829,2.6026000000000002,2.7717166666666664,2.2316266666666666,2.47343,3.748145,2.9470533333333333,0.334164375,4.37562,3.695925,3.77335,3.863265,4.440865,6.27557,4.106485,1.6394975,5.43895,4.808625,4.306155,4.929405,1.2125416666666666,3.224466666666667,3.404,2.4921433333333334,16.173285,3.249635,3.900155,4.739295,4.98936,2.72312,5.2437023611111115,2.35654,0.7538422222222222,2.4845225,3.50193,4.06803,3.74995,6.430415,2.91437,2.18062,2.177535,3.5577,4.380665,2.314175,0.3710445386904762,2.4475807608695654,1.9071875,1.13208875,0.4813736691252588,0.5917027995600415,0.3710445386904762,0.3710445386904762,0.3710445386904762,1.1133125,1.5118825,0.83238,1.466775,4.521952499999999,0.21198235294117646,11.501829004329004,2.9716966666666664,2.859476666666667,4.4169,4.399255,4.129735,2.206635,4.78648,4.112884333333334,4.92611,4.067035,0.6607500000000001,3.32298,4.000352820512821,0.6141864285714286,3.53588,3.388033333333333,4.64212,0.6111727272727273,1.808565,4.471155,3.433815,2.179315,1.8528833333333334,1.5687499999999999,3.561533333333333,3.9776,3.055845,2.8195599999999996,5.55395,5.4641,4.56766,3.2579166666666666,3.83622,6.735266666666667,3.978566666666667,5.9695,0.4123047619047619,3.2097833333333337,4.333745,1.93388,2.76955,2.8142899999999997,5.844233333333333,0.6347775,1.689405,4.440475,3.9176,1.008052857142857,4.369175,3.795095,5.2565,3.2857066666666666,4.75933,3.4608,4.293105,1.1872316666666667,3.597305,2.7225900000000003,4.927965,4.156485,4.730215,5.5545,4.352,2.821265,4.88667,2.2068066666666666,3.048875,3.3803666666666667,2.90342,2.9505733333333333,2.4833433333333335,1.7901399999999998,1.56046,2.059676666666667,0.8222028571428571,1.7810866666666667,2.4755333333333334,2.2034133333333332,3.12776,3.3397666666666663,3.001113333333333,0.892301111111111,4.89394,3.344466666666667,5.40236875,2.63459875,3.024266666666667,3.4659666666666666,1.0125183333333332,1.0125183333333332,2.4639340259740257,2.4639340259740257,3.0110197402597403,0.49665428571428566,1.7350066666666668,2.8409766666666667,3.661633333333333,2.105057142857143,2.105057142857143,2.105057142857143,7.417787857142858,4.161622380952381,0.9024654545454546,3.524075,4.797953333333334,2.1050575,4.43897,3.138075,2.22455,5.5038,3.0902233333333338,3.25574,1.1803,1.8253966666666666,3.3162966666666667,3.10934,2.4649733333333335,5.0095,2.81245,3.5849333333333333,4.334813333333333,1.4796766666666665,2.4668266666666665,3.2183833333333336,0.7518,2.0484133333333334,4.123581333333334,7.8891225,1.4409225,2.82607,4.9824,1.915446,2.0651975,2.0651975,1.0466525,5.02125,7.387035,4.043205,6.089816,4.43653,1.7841833333333332,4.49391,3.396505,4.70986,4.4344149999999996,0.36161421052631576,2.80063,2.52991,4.31852,3.785595,1.810966,1.9849925,2.7998,4.886705,3.95436,3.115915,2.47249,1.700116,6.90928,4.216995,4.42233,3.363775,4.041135,4.123125,4.41569,3.79709,3.5951200000000005,1.9206,1.2413528571428571,2.853985,3.81868,3.77032,5.515720000000001,5.443020000000001,2.16671,2.0639366666666668,2.651116666666667,2.701726666666667,2.8998933333333334,0.6662292857142856,2.26973,3.499905,1.04774,4.71104,3.14393,6.0184175,1.1976690909090908,1.1976690909090908,3.73193,3.720235,3.69759,5.21505,2.72915,2.26442,3.847505,3.9506,2.0525025,3.16046,2.51737,4.064235,3.8073725000000005,3.24255,4.234985,0.9782333333333333,2.55856,4.432885,4.27349,3.294295,2.6228933333333333,5.31095,0.7716277777777778,0.7716277777777778,0.7716277777777778,0.7716277777777778,1.5515327777777776,3.9737774999999997,3.9737774999999997,1.6048933333333333,7.551186666666666,3.74218,4.5524,3.17341,3.092475,5.24575,4.059635,4.86067,5.0959,2.1138175,4.46281,4.19153,2.73716,4.45683,3.352825,2.541765,5.1163,1.87028,5.213,1.58037,3.566707083333333,3.010835,1.730535,1.1895333333333333,2.90109,4.781525,1.4884499999999998,0.8386866666666667,4.055625,1.2022,4.964314666666667,5.2377,1.2998928571428572,3.65644,0.75811,2.6472599999999997,2.8648633333333335,2.4375666666666667,2.682095,4.59357,2.851906666666667,4.69667,4.82356,4.469555,4.44509,2.05881,1.265127142857143,4.141925,5.2863,1.5097975,1.5097975,4.095805,0.24704466666666666,2.03807,0.24704466666666666,0.24704466666666666,0.24704466666666666,0.24704466666666666,3.61594,2.6844933333333336,3.75507,3.43651,3.230916666666667,4.593515,2.3932800000000003,0.978605,0.978605,1.0347566666666668,1.0347566666666668,3.551045,1.944765,3.639815,1.6319482142857145,1.6319482142857145,4.68193,0.5082157142857143,2.2425625,7.325058333333333,5.2949,3.13425,3.31934,0.91400125,2.28071,2.1404975,4.57915,4.40723,4.074285,3.796615,1.2547042857142858,2.470175,1.830725,7.44288,1.93069,4.559955,4.72152,2.63873,3.84669,6.09632,8.21223,4.13171,5.72935,6.6833,2.14149,3.05939,2.287415,2.2629,1.770765,3.826125,3.61189,5.532368333333333,6.36691,4.354585,1.0402733333333334,1.67096,4.479445,4.151275,2.110405,5.6128,4.60573,4.471633333333333,1.7139966666666666,3.5189333333333335,1.54328,6.17642,2.65021,2.33892,2.1615166666666665,2.49423,3.427633333333333,3.5797666666666665,3.693,3.291816666666667,3.3156166666666667,1.487976,3.71854,3.116765,3.368135,0.41344450000000005,2.87113,4.30364,2.2428,5.26845,5.2029,4.62136,6.678303,4.81882,2.2410133333333335,3.783205,5.2177,1.578855,5.84635,5.5464,4.717125,4.43423,3.08152,5.52525,4.79906,4.35329,5.661580000000001,7.3604375,3.63117,1.4092366666666667,1.5286133333333334,2.968805,1.9474779999999998,4.726785,4.04853,5.3516275,2.48962,2.8716666666666666,2.78515,2.4754833333333335,2.33641,1.1455555555555557,0.5205782352941177,3.9068,3.93181,3.23826,4.203865,2.86687,3.295436666666667,5.498261666666667,2.84219,0.5875935294117647,3.512135,5.55935,1.9753225,1.702508,3.801195,3.307025,2.5613366666666666,3.8964666666666665,4.665345,2.5763599999999998,2.3292066666666664,2.2672966666666667,2.37061,2.629795,4.124623333333333,5.0102925,7.00008725,1.9086120000000002,4.99286,3.4819641666666667,5.4937785,2.76043,3.053535,2.383165,2.1902733333333333,1.219035,1.219035,2.5960033333333334,2.37732,2.74611,3.48592,1.7595580000000002,2.121725,1.86513,0.550095625,3.80474,0.5961775,0.90764375,3.39578,4.055785,4.34833,1.6876675,4.8773,2.80025,0.9115642857142857,4.22789,3.8575733333333337,3.324066666666667,2.55454,4.95856,0.2691151724137931,2.330280833333333,3.151565,1.38833,3.54872,4.082315,2.29033,1.30046,3.805505,3.73818,2.7740299999999998,2.7740299999999998,3.44058,3.530205,5.01025,5.28569,4.77159,1.192788888888889,2.5914699999999997,2.549463333333333,4.511825,5.0492,5.2883,4.95543,4.329933333333334,3.502266666666667,3.6117000000000004,3.3759333333333337,3.8831666666666664,3.1874599999999997,2.823093333333333,0.6967464285714285,2.554975,2.581725,4.0595,2.974576666666667,3.0784133333333332,0.7637383333333333,2.487005,3.4890784999999997,4.574035,5.2536,3.75598,2.4590125,2.4590125,0.937443,3.146395,4.33257,4.34228,5.630597857142857,3.05399,5.30145,0.5784845454545455,3.12141,3.881345,4.17301,3.2940891666666667,0.8804485714285715,4.170935,3.935585,4.50721,3.85793,5.2261,2.6577,4.201895,1.8045375,1.0092914285714285,2.8601799999999997,5.1716,3.754045,3.073735,1.455855,3.88805,2.5849,2.60875,2.7210597777777776,3.1516,5.282713333333334,2.831573333333333,1.7976959999999997,3.4000333333333335,1.4301305952380952,2.8912533333333332,2.8286366666666667,2.2006675,2.972856666666667,2.9257899999999997,2.6129166666666666,2.01351,3.905705,2.710103333333333,2.655793666666667,2.48278,1.849835,4.290471666666667,2.7554966666666663,2.488723333333333,2.655793666666667,2.282993333333333,0.8161209090909091,2.468305,1.0103977777777777,2.2993275,1.489665,0.868230909090909,1.8875925,1.9652225,2.7611845,2.600075,4.537125,1.4625625,3.71358,2.90265,1.5752599999999999,2.039,3.0953166666666667,1.4349100000000001,2.9710033333333334,3.0825833333333335,2.4061452272727273,1.9499525,1.8562360000000002,3.5984,2.463443333333333,2.8496766666666664,3.25881,2.62275,3.795666666666667,2.178033333333333,4.467,3.4757,3.8344,3.17971,3.673166666666667,3.5297,2.0109333333333335,8.02577,4.850635,4.94471,3.36438,2.87862,1.99203,3.9128,1.6776820000000001,4.039795,4.620565,1.459008,2.4183066666666666,1.1094883333333334,2.4443066666666664,1.6852866666666666,2.4019633333333332,4.920913333333333,2.9496066666666665,3.60144,4.776365,0.83417125,1.539602,1.02562,3.558895,11.518451666666667,4.1818,6.30305,1.9625575,5.1066,4.032305,2.4238825,5.8278,0.28136470588235296,0.8027928571428572,4.1475,4.89522,7.00718,2.137425,4.70245,5.3671,4.57633,4.57861,3.811245,4.335115,2.826455,5.251106666666667,5.17515,3.62557,3.37174,1.97783,2.24437,1.4372527083333333,2.36613,4.13104,5.0722,1.550072,8.79187,2.3715733333333335,2.70623,0.9744300000000001,0.9744300000000001,7.665230833333334,3.007195,2.4549225,2.169435,2.74985,2.1828600000000002,1.0221799999999999,3.0751841666666664,2.88607,0.6198699999999999,1.7588666666666668,3.2448119999999996,3.2448119999999996,1.1127366666666667,2.5401133333333332,2.2749633333333334,2.9448233333333333,1.378695,1.7207833333333333,4.865751333333333,2.56658,2.463515,1.3855975,1.3855975,4.71664,4.873105,4.778305,2.96455,3.55841,5.92962,2.86958,3.043283333333333,3.395633333333333,3.943555,1.10288,3.577366666666667,2.725725,4.312005,2.13045,4.77852,3.534705,4.23829,3.583295,5.294487,1.0580077777777777,2.0147975,1.7048,3.52234,4.8821,3.898545,3.69375,5.01735,3.90904,1.7594175,4.390905,3.34429,3.734425,2.379723333333333,0.8299675,3.269805,4.849705,5.016,1.1917666666666666,3.1537933333333332,3.3096300000000003,1.9650966666666667,1.787348725490196,1.787348725490196,1.2152716666666665,2.69299,1.0833314285714286,1.3154,4.699645,4.5199,0.517204761904762,3.57867,3.4367,3.833415,5.4118,0.4077805,8.784945,5.29005,3.27145,3.919525,4.233415,5.346629285714286,4.54614,6.8534749999999995,0.6887763636363636,2.9710366666666665,5.39235,2.3541333333333334,1.8927,1.9903980000000001,4.757525,5.16539375,2.249376607142857,2.6797166666666663,3.3206,1.85576,5.00105,10.87895,8.511828333333334,3.699533333333333,4.98405,3.0983058333333333,2.945055,3.857525,1.625364,2.74343,3.68918,3.673135,4.56644,4.86235,6.287376666666667,2.8861633333333336,5.3715,4.685295,5.1672,5.4252,4.5420533333333335,3.8395275,6.3839,3.38464,3.10724,2.905595,6.19995,3.61457,5.84285,2.01013,3.3231533333333334,3.319735,5.76325,4.11883,4.437275,1.4816340000000001,0.89752375,2.93,0.6305313333333333,4.370055,3.54591,3.491635,2.69735,2.0527833333333336,3.0369,2.4934025,2.9574920000000002,1.841082,2.95058625,2.90025,2.3076325,2.41827,3.589366,1.1454316666666666,2.699069166666667,5.3507,3.7321666666666666,0.9194625,2.703696666666667,3.6659116666666667,3.660743,1.5483875,5.56345,5.46975,2.0829,2.842143333333333,30.33602962627732,3.2460966666666664,1.61283,3.5904666666666665,1.75517,2.5167200000000003,2.8566933333333338,3.3963666666666668,1.96801,3.01245,2.4057,3.1571735,2.770653333333333,2.203515,1.7344125,2.1732,2.7531,0.37855545454545453,1.0624525,2.6752033333333336,1.51058,3.34414,1.5483875,1.8970900000000002,25.652800055555556,4.994505,4.75957,3.7299,2.579,2.3106875,2.5755833333333333,2.3028125,3.972465,5.656029,5.90245,1.600524,2.1413,2.119795,2.6777883333333334,3.6479825,5.3796,4.538585,4.593185,0.20270191489361702,4.883225,4.985844166666666,3.698405,7.9863,1.0371325,1.0371325,3.166373333333333,3.402935,5.7289,2.2424666666666666,1.1310444444444443,5.41375,1.8701775,4.31153,3.926855,3.40535,4.341205,3.829165,4.850475,3.060235,0.7041533333333333,3.07147,2.1937291666666665,4.506495,7.52095,4.6999,2.1638933333333332,2.1638933333333332,6.5402375,5.21015,4.062315,6.04685,2.23967,5.363016666666667,1.3532966666666668,1.5065266666666668,2.8200266666666667,2.0963233333333333,2.95576,2.9545033333333333,3.693495,4.071175,4.498225,5.32995,2.19664,2.104905,1.907735,2.551475,2.1243875,2.088985,1.939715,4.883216666666667,1.8757425,3.751619523809524,2.6153833333333334,3.15174,2.840533333333333,1.80672,1.5116857142857143,0.969965,2.65116,3.7129,0.734754,4.632995,1.6879,5.9078075000000005,1.926975,1.7935225,1.54365,1.4845266666666666,5.67413,1.868816,3.222096666666667,3.7535666666666665,1.30245,2.02406,4.836650000000001,3.1223266666666665,2.81758,3.6097,3.281163333333333,2.8740400000000004,1.2009155357142858,0.26043083333333333,0.26043083333333333,0.26043083333333333,0.26043083333333333,0.26043083333333333,4.40265,2.754573333333333,2.354045,3.6575333333333333,1.3255083333333333,2.59836,2.93608,2.8970866666666666,3.26607,2.808195,2.10221,2.992226666666667,3.0403333333333333,2.24437,1.9509475,3.6956,2.786773333333333,2.9134499999999997,5.34265,2.61712,2.65017,2.54187,10.629298333333333,5.142,4.74973,4.82077,3.901995,2.8576833333333336,5.1078,3.64176,5.04225,5.464488333333334,3.973575,3.129615,2.49221,3.595865,4.949167428571428,3.868515,17.76517055952381,1.24652375,4.689985,0.8518444444444444,1.19723375,2.8707,4.83224,4.28575,3.482105,1.3309933333333335,2.47243,4.38065,3.15251,4.619015,3.2674207142857146,2.6966533333333333,0.9437516666666667,2.8828633333333333,4.803215,2.2891275,2.456265,2.2432675,19.256100833333335,1.6380019999999997,1.2581625,2.56564,0.30742615384615385,1.8443375,2.7118,1.9698233333333333,2.8743,2.6456,7.801563333333333,1.9104825,2.54325,2.2667625,2.1387275,1.57507,3.3146133333333334,2.834445,2.96965,3.301273333333333,1.956615,2.4679495833333336,3.1040924999999997,4.459765,0.5217975,3.3410666666666664,2.76835,3.01132,2.0784225,3.549261,3.43495,1.52181,2.29301,2.181693333333333,1.5068933333333332,1.7767066666666667,3.538225,3.289825,0.7413116666666667,3.18099,5.61515,4.11463,2.14371,2.14371,3.210013333333333,4.955855,3.657505,3.235405,2.357775,1.1164181818181818,3.970055,3.51164,6.15755,5.07905,2.2613700000000003,2.2613700000000003,1.9111125,3.40084,4.952465,3.31252,4.096955,3.249446666666667,2.51781,4.40264,3.37247,4.27452,3.2054533333333333,3.5171666666666668,4.5148779999999995,3.342366666666667,2.5840633333333334,1.8966333333333332,3.823075,2.6808,1.5870866666666668,3.609645,4.228465,3.986645,2.35836,4.39254,4.131215,6.6647465,3.827495,2.1101,5.1096,3.05006,7.36747,2.6205066666666665,1.2829316666666666,4.44044,3.0682233333333335,4.438245,0.6523985714285715,0.9064166666666668,3.827155,3.793395,2.313427878787879,5.14105,2.860495,2.769645,11.658164,1.760914,1.179718,3.45749,2.6703,3.514955,4.886545,7.048995,3.1097399999999995,2.12479,3.0423333333333336,1.7690766666666666,3.442766666666667,8.294292257799672,0.8252071428571428,1.0139275,5.17735,0.48179733333333336,1.6505475,2.2485775,3.046275,3.248175,1.85642,3.844905,2.493885,13.677880000000002,4.90819,2.2334425,2.2334425,4.594835,0.8172383333333334,5.5832299999999995,4.036975,3.86378,6.080393333333333,3.35408,5.14245,1.4367566666666667,2.739405,2.55354,2.49623,2.98636,2.591575,3.139965,3.482735,3.53463,2.90643,2.85496,2.867655,4.42421,4.825475,2.9704866666666665,3.3078766666666666,4.966570833333333,4.491725,18.482142380952382,13.127545714285715,3.0755149999999998,0.6741833333333332,1.4436142857142857,4.717285,3.5104,2.8513950961538463,2.05626,0.8359322222222222,0.7014533333333333,0.6314585714285714,2.1845925,1.7820239999999998,5.214541666666666,3.2775499999999997,0.7080463636363636,3.354995,2.434215,2.15698,1.9532219999999998,6.15465,1.485822,4.374285,3.468445,2.9528,2.355405,2.6064133333333332,2.5435466666666664,0.7612172727272728,2.60693,2.8499533333333336,3.7453779999999997,2.945456666666667,4.741125,3.598245,3.219265,1.87736,3.585935,6.23937,2.1766225,2.451435,2.2903675,1.581575,2.7078,2.428085,2.76845,0.926268,1.5721825,0.9050475,2.6319,4.19263,5.91505,5.81145,2.94018,2.312595,3.110175,3.429133333333333,8.066189999999999,1.1557899999999999,0.372321875,2.737305,2.0756,1.535452,3.501761,1.291642,1.9669836666666667,4.245025,2.936208666666667,1.19799,1.8677866666666667,3.8726016666666663,3.55362,4.40512,4.98581,2.5233,5.50475,3.864135,0.8012615384615385,5.08835,3.81137,4.256129583333333,3.4453333333333336,2.301695,1.276578,1.2658375,3.394895,2.79067,3.23126,4.43675,2.58757,2.561733333333333,3.241255,3.650185,4.82049,2.31782,2.693605,4.222005,6.2428,0.53917,4.35632,1.789755,3.46786,4.0139000000000005,2.020335,3.01805,2.05959,2.02557,2.652995,2.6672933333333333,1.9782166666666667,5.85905,3.54349,1.290782857142857,6.30605,1.0127366666666666,4.17198,1.6049499999999999,4.28842,3.98793,2.5143366666666664,3.04979,4.03738,9.12978,2.8808,3.51361,3.852535,3.66604,1.6366425,7.66314,3.71223,4.45366,1.692815,4.15448,3.082405,1.135135,2.0412600000000003,4.254305,2.21804,4.21712,4.72629,4.2646525,4.44053,2.3613225,5.2655,3.722265,3.5492666666666666,2.3220433333333332,1.842588,5.15855,6.27585,5.00945,4.67417,3.06504,2.39919,5.21735,3.44581,1.2069185164835163,3.92648,4.6691400000000005,4.1354,2.760035,3.56535,0.5017628571428572,0.5017628571428572,6.3704,5.3574,5.91585,2.133625,4.15994,5.09215,0.824244,4.262885,5.1619,4.649445,3.976775,3.832765,1.8690925,3.27918,2.1661025,4.38413,0.708625,3.927485,4.39229,2.941115,3.0571099999999998,4.838845,2.288575,3.2328,58.30226002597403,3.210495,2.6074733333333335,1.6655225,3.18779,3.93643,0.7900075,0.95416625,2.32761,2.32761,1.281574,3.046405,2.23937,3.6071584999999997,7.27645,2.46345,1.1456300000000001,1.3702266666666667,2.6881266666666668,3.957034166666667,0.9760329999999999,1.95066,1.081182,1.968525,3.907395,4.304685,3.02758,22.571369264069265,4.6,3.957365,3.137975,2.15966,3.359475,3.511015,2.557825,5.25149,1.739836,4.142515,3.307936698412698,6.174289027777778,2.05609,2.580915,1.821095,4.54372,2.4492566666666664,2.4224675,2.17709,3.822036111111111,3.532525,3.215985,4.26508,4.710455,2.440425,2.7969,3.17533,2.6106,2.9881611111111113,2.203885,1.9356925,3.389515,1.1607166666666666,3.896215,4.52501,2.696515,4.437195,4.444605,4.886331666666667,2.21993,2.40141,2.644645,2.79368,3.97485,3.28796,4.68604,0.7045957142857143,4.220922666666667,2.76724,4.23872,2.35136,1.818346,4.008761666666667,1.2833777777777777,2.775485,4.323805,1.102036,3.46262,3.601075,4.543995,5.7035075,2.031045,2.79002,2.668293333333333,3.8714,2.3581066666666666,2.738414666666667,3.4566,2.3618433333333333,2.3892933333333333,1.2868633333333335,2.153085,2.153085,1.8537566666666667,2.0562066666666667,1.7036133333333332,3.6809999999999996,3.80326,5.0695,3.385425,1.48666,4.38864,4.18494,3.402085,4.116055,1.8624425,1.76787,4.51572,1.82861,4.127585,4.019505,3.517445,2.460906666666667,3.68284625,3.10537,3.013855,3.428615,0.14152448979591836,3.0925,7.6287400000000005,1.481428,3.418525,2.999755,0.99922,1.132355,1.88259,4.232695,2.8202,6.777365,3.309585,3.63029,2.82491,2.618895,3.627315,3.33277,3.891865,3.302195,2.7814433333333333,5.36915,4.48582,4.8224,2.326346666666667,1.9781625,3.41722,4.201315,2.64995,3.01421,2.2308,3.511155,3.343035,3.736175,2.65776,4.162195,5.18395,2.784395,3.56035,5.12185,3.5169,4.761415,3.369045,3.032385,7.04138,4.41771,5.85505,5.0441,3.683765,5.39617,3.683975,3.58695,1.27454,6.6985,2.23827,5.0618,4.15265,4.09561,3.5460999999999996,2.0786633333333335,2.2638066666666665,2.4364933333333334,1.02843,3.2754499999999998,3.272273333333333,3.0432133333333335,1.9894433333333332,3.756455,4.42654,2.5767933333333333,0.5495033333333333,4.478035,4.63219,4.519835,5.19435,3.764135,4.49061,5.02545,4.565865,1.4069,0.9231076923076924,2.35307,4.94074,5.3866,0.479431875,2.815525,2.5030733333333335,3.21731,4.442225,3.8732333333333333,1.94859,3.936805,2.999565,4.435125,2.96894,6.0721,3.70313,6.889515,0.6339816666666667,4.2557,0.7509159999999999,2.30738,3.9476999999999998,3.3998666666666666,1.2037666666666667,2.1383,4.41208,3.552595,4.050275,1.9164266666666665,1.9811875,2.79933,4.967905,3.58486,3.91574,1.632732,1.1986498571428572,5.496,2.3339775,7.6156749999999995,4.332175,3.496205,2.1136825,1.610675,4.052225,4.73599,1.7813166666666669,2.400375,2.59975,3.0925,6.634759166666667,3.1199583333333334,2.7165866666666667,3.8976141666666666,3.047225,1.9933233333333333,3.759275,6.833537499999999,4.15873,4.958435,0.6214163636363637,3.827955,4.307415,4.356099642857143,4.34821,4.02439,3.023775,2.677935,3.243485,2.88522,3.6836618333333337,1.6068079999999998,5.050168,4.60685,5.17265,3.86849,3.276715,3.399700833333333,2.2878675,1.3319275,0.87625,2.715335,2.77201,1.0507333333333333,2.62917,6.3765,5.5505,3.63691,4.77335,15.608763571428572,4.746055,4.429935,4.294905,0.6983991666666666,5.40095,4.647635,4.975935,4.751095,5.1689,2.342665,3.647645,3.250775,1.5146359999999999,3.08526,3.955725,2.488913333333333,1.414994,3.804725,4.8086,3.984455,5.58025,4.635395,5.7316,4.31195,2.935696666666667,4.202045,4.294815,2.574065,2.9601366666666666,3.0453166666666664,1.7141116666666667,5.1368,2.8087110714285717,1.8887333333333334,4.108435,2.77553,4.361885,4.290471666666667,2.042905,2.79711,4.1542,3.50107,4.23965,4.210935,4.196025,5.015381,3.316885,5.21715,2.528375,3.92528,4.482545,1.540152,4.55251,1.0581166666666666,4.202385,3.17345,1.1483342857142858,3.649155,2.056295,6.631845,2.4127599999999996,2.4127599999999996,2.4127599999999996,0.7125233333333334,1.3861416666666668,1.74537,3.4246,6.37471,3.459715,1.94204,2.2824975,1.7014266666666666,3.751375,2.40164,0.4187584615384615,1.602145,2.10841,2.8418,1.725245,3.363765,2.41785,2.059525,3.82119,2.7668133333333333,3.05658,3.416605,1.915545,6.61494,1.97442,4.17515,3.782675,6.8029633333333335,1.5333966666666665,3.54603,4.021825,3.780125,4.969115,2.704555,2.1065725,3.701515,6.428297166666667,2.22737,3.577635,3.147845,2.04202,4.82644,4.722275,2.7273599999999996,2.201725,3.8160225,5.975875714285714,5.6923,2.97256,2.349815,2.634795,2.89144,3.187995,3.44338,1.481725,2.655595,4.621995,0.7530275,4.336415,3.839455,3.74992,4.9354,2.36445,3.695725,1.94658,4.60881,7.9612549999999995,4.441545,3.26076,4.808495,0.96967625,4.8158,2.247075,4.254685,5.4545325,5.4359,4.30891,10.749105,4.61322,3.950985,1.4901625,0.7008308333333333,2.594415,3.898115,3.433415,3.638685,2.0592566666666667,2.457126666666667,2.367316666666667,1.1140649999999999,1.1140649999999999,1.8890066666666667,2.334373333333333,3.1071000000000004,2.8492633333333335,3.2161233333333334,3.7870333333333335,3.040343333333333,2.6149999999999998,1.3407833333333334,2.3156833333333333,2.080573333333333,1.8439533333333333,1.403315,2.68445,0.8045,9.54757625,0.8045,3.3300733333333334,1.9128383333333334,2.126256666666667,4.629335,4.090305,4.604595,5.0395,2.74354,2.8245733333333334,3.2890059999999997,3.2243999999999997,3.6153,3.19894,3.1300066666666666,3.348466666666667,1.6768766666666668,5.4126,7.291492761904761,2.672973333333333,3.4017,3.0106633333333335,2.65136,2.77407,1.2286671428571427,3.282996666666667,3.1463466666666666,4.015075,6.08415,4.342815,2.9587133333333333,3.552,3.23092,4.4158655555555555,4.127355,2.59883,3.79705,3.101433333333333,3.0865299999999998,4.86807,2.76564,4.423315,6.245966666666666,2.7329333333333334,2.6060466666666664,1.6605766666666666,1.47068,4.964583333333334,3.3471116666666667,2.529456666666667,2.0737366666666666,1.9736133333333334,4.55488,3.95532,2.48432,3.5129,3.259126666666667,3.5888666666666666,3.806233333333333,3.7611333333333334,4.0071666666666665,0.63344375,3.790566666666667,2.600443333333333,2.5793133333333333,3.15598,5.27705,4.911595,5.48385,2.561625,4.64653,1.22769,2.73136,2.73136,4.015035,3.58196,3.631405,3.38208,1.6348,3.06173,3.859125,0.8989771428571428,3.7745135000000003,2.8150687142857143,1.8650829999999998,0.356423,3.37827,3.365815,6.559385,3.157675,5.35145,3.191595,3.842855,4.049705,1.7595654166666665,2.90666,4.94835,3.288045,3.1439466666666664,2.89345,5.85211,2.11473,0.982235,1.87517,1.5822833333333335,5.26951,2.3541733333333332,2.3750566666666666,1.7239075,4.77698,3.86979,3.985195,0.509355,4.25677,4.60197,2.751136666666667,2.467,2.90868,3.2953041666666665,4.263306666666667,1.4888866666666667,0.6811894736842106,0.7985857142857142,3.802466666666667,4.317005,5.951313333333333,4.6574,4.99107,5.33035,1.4846714285714284,4.0139000000000005,2.1959233333333334,0.97889375,5.2254,6.04195,3.170025,4.723325,3.980605,7.017683333333334,4.034766666666667,6.609436666666667,3.71644,2.7288763888888887,6.0233,10.00095983974359,2.6374166666666667,0.74147,3.716875,4.29211,2.218425,6.58845,4.37683,4.004225,2.8107433333333334,2.8107433333333334,3.650245,3.79728,4.09163,5.32295,4.017420857142858,2.4840017142857143,1.1873625,5.86005,2.551905,5.51898375,3.631735,5.83545,3.370185,2.1884125,5.05075,4.731045,3.4626333333333332,3.953095,4.577375,28.663502023809524,2.09719,2.701975,2.2153225,1.6341583333333334,2.7052633333333334,1.5998428571428571,3.26923,2.9461633333333332,3.2699133333333332,3.23908,0.6713023076923077,3.244543333333333,4.817195,3.59177,3.405466666666667,4.918475,6.42803,5.19065,4.544105,3.801485,4.201671666666667,4.44253,3.4471000000000003,1.72634,0.9066416666666667,1.41395,3.911766666666667,1.7994899999999998,4.046233333333333,2.3949700000000003,2.27679,1.7273133333333333,3.493075,3.03825,1.91834,2.909925,4.068075,3.663965,4.16148,1.57117,4.078633333333333,2.4996566666666666,3.889675,2.30803,2.62081,2.910225,1.5113966666666665,4.14277,6.5235666666666665,2.96731,3.6978,3.95547,2.5675,3.041990833333333,3.5675333333333334,4.857685,4.70231,0.31108342985842985,0.31108342985842985,5.085,5.2491,5.2267,2.83315,5.58525,4.63497,0.7579476923076923,4.799505,4.866535,3.76193,6.20565,4.527375,7.47151,13.537035,13.053008205128204,4.01938,4.290105,2.6998933333333333,0.6381315384615385,2.7273266666666665,5.6793,1.303685,4.62904,3.5316333333333336,2.9816266666666666,2.087876666666667,1.9177133333333334,4.670115,3.890535,8.993389047619047,5.3231,4.027725,6.869816704545454,3.263845,2.719773333333333,1.4317725,5.121454999999999,2.338915,2.57342,2.7732799999999997,0.344965625,2.955595,3.250955,4.908549166666667,1.4719659999999999,1.3640683333333332,3.97132,0.6033540000000001,0.6033540000000001,2.9143620833333337,2.70247,3.815533333333333,4.39868,4.395985,5.48875,3.77683,4.09397,2.843145,3.032166666666667,2.522346666666667,0.6540741666666666,2.6189899999999997,2.85195,2.964785,5.83962,2.898085,5.493265,1.94158,2.906165,2.95316,2.0837425,2.91755,3.180575,1.6708,2.3491625,2.0410925,3.23872,2.431335,3.795185,2.868955,4.081475833333333,4.081475833333333,2.6922275,2.6922275,8.773763,2.4711066666666666,0.8071759999999999,2.5779799999999997,2.5087966666666666,2.4912666666666667,3.795185,1.960854,1.96606,1.6815740000000001,3.70516,4.37621,1.7524225,4.34428,3.99683,6.55796,6.667836666666666,2.3237466666666666,4.54402,9.22849,5.1318,3.78029,2.9562033333333333,4.307955,3.886240606060606,4.472525,5.256233333333333,8.239236666666667,3.42342375,3.56995,1.2233166666666666,4.49506,3.870975333333333,4.357215,3.8276508333333332,4.53227,2.912665,2.7153666666666667,7.91553,3.8568,1.489316,6.17764,3.759535,3.3461,5.0049,3.3461,3.49403,4.150875,5.0624,1.0636128571428571,3.6441,4.992725,3.69343,1.3462816666666668,1.764845,5.04525,4.285075,2.82164,7.06444,4.88413,4.348755,4.670615,4.19309,1.517945,4.29266,2.78839,3.943755,4.46902,4.585695,4.817705,3.018495,4.90023,5.02985,2.1246833333333335,1.8005125,3.8903666666666665,2.8982966666666665,3.14364,3.0251366666666666,3.5327,2.8700666666666668,4.34554,3.17864,3.566025,2.920415,1.7653366666666666,3.485533333333333,2.12076,2.97124,3.135,2.854135,0.708625,2.1573625,1.8686666666666667,3.29237,1.9550360000000002,3.467397,3.652705,1.488364,3.262985,4.338075,0.800798,1.3950466666666665,4.5135,3.793895,4.84253,1.97866,1.6300333333333334,3.55972,2.3600241666666664,1.7202033333333333,2.860165,1.86382,1.196094,1.3641975,6.242845,3.52465,2.300305,2.322055,2.3552325,3.747085,0.862725,0.34040857142857145,0.7822785714285715,5.20345,2.0441860000000003,4.135375,2.2156175,1.9614791428571432,3.2251037142857144,1.2636245714285714,1.0095571428571428,0.6620199999999999,0.6125485714285714,2.6358708333333336,6.4013,2.863285,4.31235,0.30288464285714284,3.410925,18.555437857142856,3.12289,7.334038355477856,1.0800075,1.0800075,1.0800075,1.0800075,6.148558333333333,3.748665,3.05464,2.3171500000000003,3.400495,2.97722,4.037105,3.939695,3.44338,4.60704,4.26763,4.166855,3.6817246666666668,4.056085,4.81405,5.3699,4.81665,3.43763,4.511205,2.78134,3.887695,3.23037,3.831335,4.0539,4.52399,3.2212533333333333,2.6621,2.46628,4.579265,1.3441192857142856,3.774335,3.12536,3.348542666666667,4.2646525,3.794655,3.010425,2.95395,4.874015,4.464875,3.18224,5.22115,4.644715,3.39692,3.841745,1.8564399999999999,1.8564399999999999,1.375495,4.569665,3.776095,5.808749,5.04715,3.5151183333333336,6.25305,4.665485,2.1504975,9.323654999999999,5.43995,6.3316525,4.302445,3.0655066666666664,4.28616,0.2514641379310345,0.86877875,3.984566,3.36522,5.1551,3.07997,6.208066666666667,5.32415,0.5680828571428571,2.58031,0.455037,1.7260097619047619,3.486795,2.561455,4.38838,3.546125,3.302575,3.47132,3.290415,3.53679,3.36905,3.50624,4.085175,2.3699,1.7260097619047619,2.680475,2.0384925,3.603285,2.38711,3.56368,3.58054,1.6366425,4.402405,2.874555,1.3996233333333334,5.4953,4.76807,4.16789,2.9710866666666664,3.11987,4.815925,1.8285866666666666,1.42037,2.35641,2.6011666666666664,2.5063666666666666,1.9150766666666668,5.39375,3.52769,5.098039999999999,4.011372857142857,4.90316,4.27798,1.791192,5.1038,4.402935,5.2583,4.164525,6.694925,1.606055,4.647765,4.42916,3.05323,2.110575,1.6878333333333335,3.841905,4.50952,2.25682,2.192177916666667,3.2522225000000002,3.2522225000000002,2.8326366666666662,3.0615466666666666,3.323185,4.00101,3.45426,0.8301923076923077,3.39531,4.21407,5.0464633333333335,2.978755,2.99761,1.7572625,2.8638,3.49732,2.389675,4.6079,4.14783,4.151655,1.9705633333333334,1.0294272727272729,6.19501,3.56156,3.7596333333333334,3.6460333333333335,1.9420179999999998,30.074255833333336,4.609685,3.192685,4.893195,4.45053,0.8906333333333333,7.8237,2.565525,5.35755,1.6927666666666665,4.819955,5.585251666666666,3.595655,3.032735,2.09431,3.9977,4.78649,2.1795125,2.7601333333333335,3.76511,2.813205,2.50643,5.6108,2.03917,2.82255,1.12833875,4.35052,3.56076,3.98321,4.153615,3.27761,2.33564,4.364095,4.641015,3.71206,3.71206,6.58375,2.679675,4.25839,7.5706,3.369275,4.385775,4.11194,2.29501,3.51528,4.14177,1.3572525,2.607335,4.341455,4.30644,4.58421,4.34628,2.628865,7.898746666666667,2.51707,3.69627,1.7057428571428572,3.56855,2.0626933333333333,2.6452966666666664,2.9488129166666663,1.4656133333333334,2.5893333333333333,0.9249085714285714,1.0735857142857144,1.0735857142857144,1.0735857142857144,1.84178,0.55701625,3.7883,1.1578066666666667,3.10096,1.1214883333333334,1.7624366666666667,2.577453333333333,2.247716666666667,0.763245,1.75585,1.6726833333333333,2.3588066666666667,1.6388000000000003,1.6388000000000003,1.5682433333333332,1.9616466666666668,1.137036,1.7718633333333333,1.5567633333333333,1.1970133333333333,2.109025,2.335465,5.6546,1.8010025,4.169605,18.23270533333333,6.70542,3.38462,3.30405,3.1076,2.92052,2.7688466666666667,3.00418,0.7562566666666667,1.05441,1.05441,0.6413375,2.4732266666666667,4.39271,5.1841,1.6993580000000001,5.1269,3.747365,2.43663,3.788165,4.89731,3.825875,5.3787,3.542033333333333,3.263665,3.345525,5.53445,3.5022,4.40235,0.5190210000000001,0.5190210000000001,2.23258,3.283755,5.34885,3.736225,4.321775,4.56122,6.8807100000000005,7.943760000000001,3.33298,2.740935,4.18366,4.070545,2.5445733333333336,2.303605,3.090935,1.5376966666666665,3.777975,2.47247,1.8319025,3.199683333333333,4.66723,1.8851375,5.256233333333333,1.783425,3.6098666666666666,3.668665,0.8480257142857143,3.4524333333333335,2.829886666666667,5.35515,1.1342366666666666,1.6520225,2.549425,2.1281175,1.65589,2.49595,2.49617,2.0442625,4.09942,4.20424,2.54594,1.796885,1.4524100000000002,3.720333333333333,1.9630433333333333,2.4010825,4.460005,5.471,2.1195458333333335,3.02798,3.46091,3.748645,2.366545,5.57425,4.031405,3.274955,1.4948875,4.281765,2.196665,2.9453133333333334,2.53035,3.85783,5.1122,5.28485,2.3139600000000002,2.9531533333333333,2.9291199999999997,3.3487333333333336,1.95085,1.55294,5.0989,3.2708266666666668,2.2416454545454547,3.11932,2.90906,2.5323733333333336,3.555566666666667,3.2384766666666667,3.5418333333333334,5.0414,3.97204,2.9601366666666666,5.1851,3.637285,2.320605,3.523125,3.992225,3.76667,5.8438435,1.79462,3.77857,3.132565,2.41574,3.677445,0.53971875,2.318755,2.236815,3.597335,2.8686,2.090935,2.731035,0.736782,2.84991,4.93278,2.2945825,5.0261,2.3579133333333333,3.98686,2.02453,4.226085,3.638515,1.580152,3.05129,6.8856175,4.19174,4.43316,4.804615,7.019250795454545,4.765215,4.48396,2.1800725,4.862265,4.0441,2.26348,1.902605,4.2007,0.98878,2.179996666666667,2.7061433333333333,2.809293333333333,3.881933333333333,1.798962,3.167685,1.9084633333333334,6.205,6.941202499999999,1.01579625,1.78625,2.6129966666666666,2.788866666666667,2.0362033333333334,1.0805016666666667,5.662326666666667,2.271305,2.6759833333333334,3.8114333333333335,2.973046666666667,3.290233333333333,3.147125,2.259183333333333,3.0186333333333333,2.37052,4.38031,4.4798,3.98905,3.8190666666666666,3.7316000000000003,1.04556,1.71837,2.328085,2.0874466666666667,2.57974,1.1343349999999999,2.7129499999999998,2.9427800000000004,3.120055,1.9932333333333334,3.44773,3.967185,5.8812,3.276505,0.6054875000000001,2.01678,2.7109566666666667,3.5749333333333335,0.8389745454545454,2.7346533333333336,3.5031619999999997,3.9195333333333333,2.9848700000000004,3.2221141666666666,3.667145,3.5192,2.9459700000000004,2.10362,5.7303,5.87665,5.07875,5.1832,5.71145,1.7266966666666665,3.481265,3.951833333333333,3.4794666666666667,2.9916633333333333,2.9610633333333336,3.9351333333333334,3.7071666666666663,2.93346,14.312806666666667,4.214395,1.00882,3.1885999999999997,1.519632,3.121836666666667,3.1641266666666668,2.4185766666666666,5.4335016666666665,6.574069166666667,2.3565066666666667,0.916873,4.26489,3.3648666666666665,3.04321,4.74215,4.996515,5.5645,4.848105,3.35726,2.012755,6.42056,1.2233166666666666,6.418525000000001,4.87968,2.7325933333333334,3.71366,7.545275,5.97495,2.263456666666667,1.6225816666666668,2.322135,7.3972516666666674,1.5483875,3.036706666666667,2.5551,4.282305833333333,5.36025,4.19509,6.497,4.08387,5.2445,3.705675,8.90936,5.23645,5.5302,3.65009,2.57255,11.17935,3.46553,5.0188,2.44704,1.62456,1.8468566666666666,2.80381,0.68786375,1.23692,1.0762228571428571,4.181055,6.806146666666667,3.2059433333333334,1.5502533333333333,5.2356,3.30953,0.567424,4.085415,3.251005,4.02621,3.885425,3.59921,2.597863333333333,4.14116,9.967015,1.778115,3.8315875,3.317545,4.524035,3.7841,0.884775,3.5465,4.042933333333333,1.6500666666666666,2.502553333333333,2.2612633333333334,2.6961999999999997,2.69946,2.16069,2.238645,6.114822857142857,4.11636,4.5128,4.87655,1.58852,2.491775,5.1466,4.73446,4.863255,4.197515,4.696285,4.760795,1.8564399999999999,3.947695,7.288805,1.1131083333333334,1.6116000000000001,2.6050733333333334,2.319573333333333,2.7270266666666667,4.8043825,0.7985857142857142,2.41147,3.1332,4.14441,4.280615,2.3516366666666664,2.84951,1.8777275,0.551573125,2.326685,2.88102,7.577545000000001,4.23841,4.828375,0.880152,3.1640266666666665,9.407024166666666,11.453431666666667,3.64604,1.174035,3.40332,3.702385,2.8889266666666664,5.479811333333334,5.14735,4.218905,2.011455,3.746033333333333,2.11728,2.55172,0.7523299999999999,0.41456666666666664,2.45989,3.301395,2.0082413333333333,3.370355,3.5757666666666665,4.990245,5.1051,1.513048,3.2628,2.12082,2.12082,2.186625,2.826165,2.74362,2.7348966666666663,2.8661733333333337,3.449666666666667,3.383366666666667,4.06823,4.33273,4.843605,4.07691,4.08083,4.627075,3.89468,8.102448333333333,2.0436,2.315043333333333,2.4768733333333333,0.9167000000000001,0.6952858333333333,4.11445,2.21415,5.5636,2.8620033333333335,3.1817266666666666,1.8172799999999998,1.3659625,3.5284,4.15936,4.249725,1.4868016666666666,1.3370066666666667,2.6159333333333334,1.9423566666666667,2.5335433333333333,1.0717628571428572,1.0717628571428572,2.7068333333333334,3.985535,2.862545,3.060035,3.49926,2.129805,19.670802454545456,3.741525,5.545719999999999,4.17749,3.69877,4.18898,3.787555,5.3381,5.925057499999999,1.226625,1.226625,1.226625,2.66368,1.6990142857142858,3.753766666666667,4.34591,4.113555,3.52203,4.208345,4.19228,0.8571366666666667,2.615596666666667,3.0498166666666666,6.0079775,3.3623175,4.08861,4.34325,2.020335,1.9962966666666666,2.35996,0.51550875,0.793428,1.776445,1.92903,3.04769,12.538523333333334,2.5207133333333336,5.15775,0.7306928571428571,9.527875,5.76015,3.72427,4.443325,2.765025,5.70685,2.765025,2.6333,4.412635,3.851865,3.92573,3.822665,4.268515,3.521995,5.775,6.5489820000000005,1.73442,2.279526,2.681355,27.84195335842986,1.438772,6.10395,3.718298,3.878605,4.189535,4.43279,2.634855,2.855185,2.282555,5.55675,6.5645,5.1488,4.377725,4.373865,2.0199725,2.602185,4.09795,0.8402846153846154,0.8402846153846154,0.8402846153846154,0.8402846153846154,3.973945,3.1114349999999997,0.9535633333333333,1.7558166666666668,1.1501333333333335,4.54358,2.463556666666667,2.46158,7.226291666666667,3.2669833333333336,0.17275689655172413,20.582688333333333,4.430705,1.7657800000000001,1.346105,2.24286,1.97901,2.75625,4.579065,3.16525,4.918875,4.16312,2.29179,7.1745875,2.6975,1.91637,4.575615,6.1081,8.006053333333334,4.71434,0.2717487804878049,3.54876,4.12446,2.90561,2.125185,2.9198466666666665,1.605385,1.605385,3.980245,5.5816300000000005,11.925499166666667,9.34395,0.6452055555555556,2.53622,4.10245,3.118235,4.1791,5.30865,1.893952,1.893952,3.58059,4.361125,3.0323766666666665,3.60962,5.2731,5.5943,5.270702,1.950322,4.751265,4.166085,2.639955,3.0127333333333333,3.3290466666666667,5.07225,4.66841,5.12835,4.28755,4.26705,3.78048,4.417475,4.17057,5.4042,2.89754,3.4674,1.12326,4.265025,4.300105,3.798645,1.8320180000000001,2.0910866666666665,2.1319466666666664,3.1999600000000004,1.9887433333333335,4.3103,1.91095,3.051025,3.8751333333333338,3.7919666666666667,2.44908,2.92444,3.4276666666666666,3.2946233333333335,2.660553333333333,4.599845,2.09851,2.6745066666666664,2.2796966666666667,6.0746,3.689633333333333,40.55256475,2.0881529090909092,2.0881529090909092,2.4230666666666667,3.4305333333333334,2.0701733333333334,1.7340266666666666,2.85179,1.7783,0.71191,4.78271,7.4033875,4.12521,3.88793,4.728395,1.8915499999999998,4.181885,1.8209779999999998,4.832985,4.735585,5.83105,4.059205,1.72634,4.057805,4.944775,4.837275,5.51395,5.65415,4.03255,3.5414333333333334,2.7094,2.114405,1.81204,4.469575,1.9905933333333332,3.718025,3.718025,2.1658566666666665,1.5830266666666668,2.85004,2.4907833333333333,2.60917,5.16852,2.69975,1.1541033333333333,1.1541033333333333,3.27085,1.9828000000000001,2.5023433333333336,2.55866,2.5549766666666667,2.36273,2.35473,2.149262,2.9016634285714287,1.5411614285714288,0.7524014285714287,58.73817601984127,2.347944,1.72637,1.9139239999999997,0.810394,3.2474,1.585402,1.585402,2.24687,3.0471266666666668,0.78876,2.1351466666666665,6.250096666666668,3.775,2.520986666666667,2.7714533333333335,2.005123333333333,2.598322666666667,0.2939725,2.18184,0.7401760000000001,2.46755,1.277582,1.277582,2.21566,1.6391339999999999,2.078953333333333,1.2419413333333333,2.7089366666666668,1.2419413333333333,2.04367,3.026806666666667,3.324313333333333,1.338936,1.338936,3.1023099999999997,1.4179233333333334,2.6408366666666665,2.1590599999999998,4.699555,4.07518,12.791421833333334,7.303329999999999,3.13503,2.70858,4.20748,5.015,5.33545,2.89528,4.505155,3.52613,2.3212366666666666,3.76227,3.2105,2.74767,4.82037,2.1975266666666666,1.100982857142857,3.9318275,2.8184299999999998,2.7942,0.7680342857142858,2.49124,3.58018,4.64752,4.28899,6.6685,3.15251,1.9951059999999998,4.17702,4.62114,2.40227,2.670373333333333,1.9266333333333332,2.090434666666667,0.895348,5.50045,4.855015,4.76052,3.76063,3.275043333333333,3.985375,5.41815,3.2106933333333334,1.7613,0.5200406666666667,15.718114333333332,0.5032454545454546,0.5032454545454546,0.5032454545454546,3.010666666666667,3.7544,0.5032454545454546,7.602256666666666,4.471086666666666,0.70424,0.70424,2.8988866666666664,3.23997,2.984255,4.178825,4.17917,4.1773945,2.0953105,4.704703333333333,3.910505,3.489363809523809,4.45974,2.96802625,2.4248225,2.2707825,2.5659,1.6218075,3.6642591666666666,3.08995,2.34927,2.122345,1.986665,1.7330333333333332,1.550145,2.510275,1.1683555555555556,2.516475,0.6058557142857143,5.14855,1.73214,0.9048166666666666,2.629825,7.749063333333333,2.49165,2.011025,3.16548,7.45572,3.031955,5.20445,3.00975,5.8935,3.943325,4.0435,4.461495,5.2504,2.9839866666666666,4.47457,1.1598171428571429,4.43953,2.44687,2.7578366666666665,2.54163,2.26012,2.18452,1.2430625,5.13385,0.868230909090909,4.716715,5.21135,5.3103,5.7625,3.7898,2.5749866666666668,1.908596,3.09191,2.8187333333333338,2.357675,3.6732333333333336,2.6476,3.91358,1.7822179999999999,40.46934126984127,5.0094,2.37637,3.18825,3.5451333333333337,1.55342,5.583986666666667,4.180385,2.539,4.0565,2.2380166666666668,1.609675,5.3855,0.79655,5.288953571428571,1.3887714285714285,3.4866333333333333,3.551966666666667,2.9082866666666667,1.4378125,5.00226,1.728586,1.728586,2.58938,3.0090624999999998,3.3555333333333333,3.7680666666666665,1.3841400000000001,3.1458,2.7129066666666666,6.410563499999999,3.0013666666666663,3.46209,0.93189,1.3904066666666666,3.0064733333333336,1.067768,5.186695,3.623466666666667,2.9003200000000002,3.7002,3.3537666666666666,2.6749766666666663,3.289453333333333,1.7096833333333334,2.3552325,2.55612,3.531966666666667,2.6804566666666667,3.6750333333333334,2.7447766666666666,0.5822193333333333,9.758586282051283,2.7107500000000004,5.34615,5.1783,2.756596666666667,2.874563333333333,1.3815775,2.130923333333333,2.31054,1.3815775,2.718075,0.437800625,0.437800625,1.0262825,1.0262825,0.8862175,0.8862175,2.848555,2.991415,2.85345,1.434495,1.75453,3.674455,2.88266,4.838945,4.70115,2.1758800000000003,4.32295,2.12029,4.758537863247863,1.3770575,1.3770575,2.524315,1.828484,3.6302616666666667,1.99805,4.562195,1.3309933333333335,2.1189575,0.6441707692307692,1.2754942857142857,2.23373,2.279615,2.366155,1.41283,4.848905,4.047445,2.9180233333333336,2.6796666666666664,1.4297433333333334,0.6722683333333334,2.448446666666667,4.1517,2.43886,4.93559,5.51955,5.22935,3.843655,6.74444,1.6840666666666666,6.2165,1.81202,4.65273,4.68793,5.945277000000001,2.6404633333333334,2.34815,1.770675,1.8463360000000002,1.8463360000000002,2.3780675,2.3780675,4.30016,4.905545,0.930194,4.50553,3.794315,3.411495,3.06438,1.617765,2.7977366666666668,4.07199,4.447505,1.806476,6.4945,6.42755,1.7746433333333334,1.18854875,3.93631,4.119806666666666,4.002115,3.50342,4.03382,0.6906635714285715,3.013123333333333,3.061783333333333,2.6685833333333338,2.9157733333333336,2.1651266666666666,3.5815,1.5148571428571427,1.5148571428571427,1.5148571428571427,3.036303333333333,3.3606,2.1681766666666666,3.5636890952380953,2.358705,1.2126214285714287,3.0328199999999996,3.2603766666666663,1.3826657142857144,2.95148,2.7197833333333334,1.2441242857142856,3.0747233333333335,2.9029333333333334,2.9650499999999997,3.047416666666667,2.8763466666666666,1.986885,3.3444333333333334,5.1824580000000005,4.094465,0.91327,1.6792200000000002,0.748302,3.6024,9.460329999999999,2.90301,3.276075,2.16826,4.222790833333334,1.8903275,7.588446666666667,6.45352,2.99966,2.534418,4.561275,4.5913,1.529776,1.19662,1.2454779999999999,1.971925,11.275703333333333,2.8155933333333336,2.87688,3.1081046666666667,3.885385,2.462223333333333,1.2233125,4.74147,1.2251416666666668,3.766526153846154,3.5524,3.3735,3.1656033333333333,3.438375,4.995975,1.1732850000000001,2.033395,2.171222666666667,2.171222666666667,3.70229,5.5214,6.5908775,3.624615,3.66481,5.1245,1.7336875,2.2738766666666668,4.749985,4.886785,3.755005,1.5168416666666669,2.9928266666666663,3.455995,3.90103,2.5417,3.975045,3.723815,3.411085,4.031625,4.332045,4.514335,5.5639,3.270443333333333,2.4533733333333334,4.39267,2.94878,3.7927,1.93414,2.632835,2.51028,5.52385,2.413555,3.1935702840909093,1.59577,2.60039,3.261485,2.1814875,2.0584725,0.7505633333333334,0.7505633333333334,1.7258175,3.9593684848484845,4.19912,2.7817233333333333,4.167875,3.9057866666666667,2.479059142857143,1.028355,2.72695,1.664505,4.70191,4.1529,0.8848704166666668,1.77105,3.830285,2.8777375,1.5340375,1.6063633333333334,5.10664,1.0330783333333333,2.87694,3.108135,2.695,2.73037,2.750187,2.06147,0.9828975,2.77625,2.855315,3.404455,1.3658166666666667,1.4981799999999998,1.764235,4.35362,2.15572,4.301705,4.64508,4.240305,5.5454,5.44265,4.23338,5.998245,4.245120952380953,0.7950554545454545,2.735205,4.065725,4.167635,0.3813954545454546,0.9325939999999999,2.940425,4.042255,4.955645,4.521785,3.334044642857143,2.962085,4.97165,1.757066,2.65925,4.42171,4.3155025,3.65918,2.940885,4.40723,5.0656,2.796375,5.7152125,0.956882,3.426345,2.4751,4.549555,4.38996,4.652535,2.03404,2.592535,2.83997,2.0405466666666667,4.922575,3.468225,1.5593000000000001,3.056605,4.31545,1.45363,5.622195,2.01398,2.51358,13.725351301619433,3.173643333333333,1.4798499999999999,1.5280316666666665,2.411,5.535575,1.632732,4.123441333333333,0.7541076923076923,3.146183333333333,4.116615,7.49062,2.50599,2.8947000000000003,2.8947000000000003,5.21805,4.48813,3.807865,3.218805,4.87796,5.24195,2.416815,3.5657666666666668,4.945245,1.28169,2.4212866666666666,4.98425,3.924375,4.450255,2.4653266666666664,3.301415,4.1348,7.464231666666667,6.28919,0.8527939999999999,3.65689,3.148695,3.7032333333333334,4.180545,4.117985,3.77986,1.483108,4.42688,2.507285,2.93432,4.183155,4.26766,4.16852,0.9452343571428572,2.694623333333333,7.017457333333333,1.5517466666666666,1.9999081818181819,2.2889,3.82521,3.415775,3.19407,0.6850054545454545,2.456575,1.6327,2.2703425,4.45535,5.502343333333333,3.1413599999999997,10.366825,2.9251633333333333,2.793153333333333,1.13323,4.569095,5.3062,2.084475,5.464488333333334,3.0341,3.146575,5.5259,4.325515,4.911465,2.436165,1.6909675,1.6909675,2.774235,3.40595,5.613675833333334,1.4488125,7.175133333333333,1.47764,3.925685,1.6814333333333333,8.927097999999999,4.97242,2.71421,6.16375,4.87447,3.78627,1.1183016666666667,1.944375,3.7011000000000003,3.05232,3.531833333333333,3.5440666666666663,3.714475,2.758495,3.119685,3.19959,1.5876375,2.53648,1.9291,2.8288466666666667,1.9188066666666668,5.113080833333333,3.3884666666666665,1.75309,3.1333266666666666,3.36826,3.159785,5.6167,6.1478,2.933695,3.484215,4.050205,3.036235,2.78547,1.1747066666666666,0.932522,6.935840000000001,3.129505,3.150865,5.5877,6.10765,2.68659,3.3905666666666665,6.22505,2.504285,0.48880777777777773,5.74365,3.779865,4.069085,3.5791,1.4088914285714285,5.2362,1.082278,4.87489,0.8968125,1.7185333333333332,2.5053199999999998,2.467076666666667,2.4342194285714287,3.779965,5.47295,5.158423333333333,5.158423333333333,3.8728475,3.8728475,4.645345,2.84154,4.49028,1.07728625,5.7395,4.257845,3.4976000000000003,4.46694,3.68656,4.55288,1.8676775,4.66359,3.006432,3.064105,4.19298,2.471165,4.142345,5.1679,3.607155,3.265905,4.886995,3.49055,4.47215,3.33417,3.4863666666666666,6.13525,3.99167,2.939693333333333,6.832276666666667,1.52203,2.1257975,4.62084,4.474345,5.29695,3.736495,1.9564180000000002,1.9564180000000002,14.271936182539683,4.75725,5.4226,3.779835,2.9057971794871795,4.855645,4.481505,2.9199133333333336,3.297636666666667,3.56086,3.7975999999999996,3.659266666666667,5.0557,2.082455,7.92334,2.331125,1.9825275,4.86787,2.381215,4.98629,4.091615,4.49237,0.9320266666666667,3.677325,3.81908,0.8728859999999999,2.929705,5.071678333333333,1.494206,2.387163333333333,2.989603333333333,2.7107500000000004,2.4397699999999998,3.3014766666666664,2.5956333333333332,0.5148792857142858,2.88246,2.6441266666666667,2.82398,3.1008066666666667,1.48953,3.2746033333333333,7.00779,4.26497,2.380873333333333,1.90981,2.5230633333333334,3.69275,2.63837,3.720794,18.8252475,5.6757,3.440354,5.7958,3.748015,5.268916666666667,1.4808766666666668,5.8448,1.6095416666666666,3.86546,4.245365,5.2394,5.13105,0.9585665263157894,4.58269,2.747715,5.11505,2.63762,4.55678,4.910565,2.7248,2.003153333333333,1.4847139999999999,1.9380925,4.26158,4.739625,2.124555,1.63711,2.9944900000000003,4.308508333333333,3.2337133333333337,6.01395,2.01644,4.139525,4.77551,3.67309,4.995585,3.138705,4.288505,4.553235,4.008915,2.8607,2.8607,5.656140000000001,2.0938766666666666,2.944933333333333,3.852445,1.631426,7.809455,3.47635,4.36883,4.497466666666667,4.398065,1.915446,4.585185,4.926085,3.6515,2.1399175,3.83545,3.317715,1.05294,1.6206225,1.19891,0.66539,1.5785333333333333,1.0631566666666667,4.478555,1.0801544444444444,2.95055,1.69682,1.88662,1.04348,1.98666,2.424285,1.541545,3.4553999999999996,2.7588866666666667,4.988946666666667,1.7173166666666668,2.2248625,3.4979,3.26824,2.44345,4.335700833333334,4.262445,5.277105,20.32771175,2.7139933333333333,2.2095625,0.5934338461538462,0.625456,5.301925,1.9990359999999998,4.02373,5.97325,6.741851500000001,4.452525,3.65583,4.129895,3.4349000000000003,3.1503433333333333,3.558033333333333,3.1007700000000002,3.3575666666666666,6.04485,4.018705,0.944003,1.1130025,5.2735,3.5084999999999997,2.57641,2.0981666666666667,2.178716666666667,5.5374,4.73217,2.4743,1.0598633333333334,3.375875,5.30765,9.098206666666666,5.659740416666667,4.295725,4.60309,5.00025,4.649345,4.376575,4.65754,4.04015,5.4325,1.861,5.959,1.6384142857142856,5.3444,0.7324266666666667,5.4799,5.64385,6.3741,6.25355,4.75407,5.6786,6.01885,6.4252775,1.9028166666666666,1.6876285714285715,5.635,3.659515,6.454996666666666,4.776065,5.324408333333333,5.20185,5.8712,1.2998928571428572,3.99776,5.1534,3.9918,4.751325,5.3829,2.6796,3.954915,4.29529,4.2042,0.9329416666666667,1.5547116666666667,1.400996,4.67009,4.031505,3.290665,2.6752466666666668,2.9623899999999996,1.5651366666666666,2.1604733333333335,0.37648583333333335,3.5064333333333333,1.6408840000000002,2.2248816666666666,3.15549,1.9360366666666666,3.14789,2.4017375,2.64115,10.224853333333334,3.4217333333333335,1.7542966666666664,4.420415,0.8257009090909091,4.59458625,1.14758,1.7957375,1.886345,1.01387125,5.625753,1.1398505555555556,1.1398505555555556,1.1398505555555556,3.1722633333333334,1.7938960000000002,4.895675,2.87495,1.43497,1.689745,2.117605,1.4145125,1.8256080000000001,5.601330833333334,0.9088622222222222,4.789915,4.48297,3.3950666666666667,0.9819271428571429,2.163769,2.33894,2.33894,1.594775,3.612299166666667,4.708665,4.62469,5.80455,4.29757,5.54235,2.8977733333333333,2.2911825,2.6091,5.29845,3.83852,4.71147,1.01455,3.9605091666666667,5.4263,1.8487125,3.625855,2.91543,4.508285,5.28105,2.239785,5.8587,6.4089,5.18185,4.65239,4.161295,3.18857,8.0463,3.98602,6.524428333333333,3.4487,3.08478,4.988435,2.6263366666666665,3.16016,4.753165,2.99426,3.09049,3.910625,1.5562966666666667,10.7145625,5.85975,3.178845,15.478236765873017,4.01005,1.8038699999999999,2.9770233333333334,3.0282,3.03046,4.102895,2.172419722222222,2.7805,2.453965,2.95094,4.16232,6.1688600000000005,1.2325,2.19525,4.22726,3.54341,5.36615,2.1368325,0.6217539999999999,4.52264,4.31974,2.2145825,1.10259,4.721955,4.973425,0.94139,3.814015,12.904043333333334,1.2725648571428572,0.37427285714285713,3.6671,4.33292,1.0243755555555554,4.682155,3.71251,4.40201,1.3751499999999999,3.666695,3.79543,3.206415,4.67208,4.338255,5.19955,8.3226,3.15881,3.87712,2.84021,15.60359375,3.454195,2.5128,1.59015,1.98381,1.29733,1.8253575,1.3151175,1.9816825,1.6925925,2.1574475,2.3640975,2.720425,1.9165425,4.95329,3.710225,3.20443,3.223555,5.572488333333333,2.661513333333333,4.79813,3.31094,1.133685,3.677015,2.04714,2.7326386666666664,4.955505,4.815485,4.78644,3.705885,2.6655,3.0171766666666664,2.4330166666666666,4.18365,3.70186,2.240405,1.85212,3.5551,5.18255,3.063175,2.348876666666667,11.937786666666666,0.6000153333333333,2.572785,4.758235,2.652018,1.1309960000000001,2.824555,7.440616666666667,7.227666666666666,4.57059,4.29533,4.095175,2.1729475,2.480875,2.9374886666666664,2.0855266666666665,3.844408333333334,5.35545,4.59823,0.45049799999999995,6.0764,3.2024899999999996,3.4450333333333334,3.8469333333333338,6.50195,9.75267475,4.3841735,1.07887625,2.322945,2.28441,3.599805,2.560365,3.98176,5.18935,3.599933333333333,3.120416666666667,3.998575,4.061875,3.643125,4.1376333333333335,2.3114866666666667,3.478415,4.90126,5.53765,3.9414,1.189485,2.2367666666666666,28.570624564102566,1.38932,1.38932,2.300336666666667,3.9459159999999995,3.89951,4.946695,3.939455,3.27583,4.182085,3.0875033333333337,4.19059,3.0875033333333337,3.477175,1.8338566666666667,1.4506033333333335,5.6656,2.19742,4.798365,3.216655,2.65353,6.130118333333333,1.9919566666666666,4.930585,5.5324,3.597495,3.979515,4.392815,1.9296700000000002,4.609145,3.8073725000000005,6.385388333333333,5.371666666666666,2.77795,4.23717,4.33344,2.097795,3.2661833333333337,3.7860333333333336,0.508915,3.4344333333333332,10.223103333333333,4.879995,4.73158,5.434,3.2432891666666666,3.56319,1.3304114285714286,4.193275,5.39325,3.267335,2.65615,4.781,3.93796,4.1953,4.349435,2.2358425,2.2358425,3.96453,3.005265,2.717079772727273,1.801795,4.925025,4.006865,1.247272857142857,3.859005,4.94557,2.8414433333333338,7.200075,7.67982,1.459978,4.171385,5.0859,7.114827999999999,0.750509,7.432980000000001,3.5269916666666665,0.6405854545454545,5.3628,5.5395,5.21355,4.43458,4.673955,4.52088,4.98493,4.00437,4.317935,4.55174,4.04714,5.65715,4.97358,3.838375,3.513895,4.53398,2.79015,0.728316,4.607085,2.445745,1.721175,4.622015,4.562515,5.3967,0.9974528571428571,4.946893333333334,2.988,2.6332566666666666,1.966135,1.2136066666666667,11.804406666666667,2.8633633333333335,2.7662099999999996,2.3175733333333333,3.7031461904761906,6.064450000000001,6.278223333333333,2.6092333333333335,1.98503,2.14104,2.14104,2.14104,1.3700333333333334,3.53415,3.774015,3.33243,4.69845,8.156839999999999,4.45833,1.1377000000000002,2.29923,3.53554,5.2911,1.7901399999999998,4.38596,2.78421,1.4288333333333334,3.5807,7.331957142857142,6.9065650000000005,4.49378,3.883655,3.3514666666666666,5.07995,4.390775,4.859391666666667,1.7417475,1.7417475,4.29454,3.79319,2.7298966666666664,2.7298966666666664,3.776435,1.1490071428571427,5.0964,3.286245,4.1395,4.150175,3.332575,3.3844,0.9918614285714286,4.20172,4.88117,4.2563,4.440545,5.10705,4.888625,4.52895,1.9462325,1.4779575,3.069375,3.730735,3.24155,4.15574,2.085085,3.6764025,4.95932,2.690315,4.6415,8.844014999999999,2.254786666666667,2.776746666666667,4.547743333333333,5.018481666666666,1.5065025,1.9982454761904762,0.9599183333333333,1.9982454761904762,1.84285,1.84285,1.55387,4.916875,3.12688,4.34289,2.403945,3.85713,1.7338666666666667,5.2968,3.050015,1.648835,2.785826666666667,3.75882,3.30503,6.054403,4.602835,1.4150800000000001,0.932605,3.6261,6.36419,2.390773333333333,3.447225,3.485055,3.485055,2.221215,3.30566,3.013735,1.388613831168831,3.0967266666666666,3.82949,3.247935,4.793785,3.9864675,1.6355125,3.76146,4.882365,4.86534,5.23885,4.33898,2.0633475,2.07315,1.2371999999999999,2.4432075,3.441895,1.928505,3.72839,3.4508666666666667,2.990665,4.008925,4.884295,2.501155,1.16573,1.8067533333333332,1.472955,1.1717777777777778,4.90553,4.104275,1.12326,0.22065826086956522,0.22065826086956522,0.22065826086956522,3.524785,5.9577,4.422735,5.434,2.57371,3.7243,4.67132,4.389885,2.546445,3.56573,1.64425,5.24115,3.86743,3.920225,4.52833,4.083385,0.8811072727272727,0.8811072727272727,0.8811072727272727,0.8811072727272727,0.97811,0.97811,4.074535,4.14769,3.553785,2.817095,2.57968,5.3837,3.443115,5.31975,4.233265,2.728493333333333,2.43581,9.6219,1.9949860000000001,1.9949860000000001,4.42008,5.3377,3.183146666666667,0.437800625,0.437800625,0.437800625,0.437800625,0.437800625,0.437800625,5.188313333333333,4.707365,3.847375,4.40882,2.6637424999999997,2.6637424999999997,2.74554,3.2826013333333335,2.7311533333333333,3.43978,3.762035,7.488899999999999,1.4363519999999999,4.874315,3.57475,4.34676,10.223406666666667,2.8628699999999996,3.210985,0.93074,3.575855,4.748395,3.03382,1.2166,2.758986666666667,4.289755,5.56125,2.568125,4.958268055555556,1.1233555555555557,2.001716666666667,4.83563,4.75009,3.0269044999999997,2.48012,2.5209699999999997,1.4724633333333335,8.278028333333333,3.3917333333333333,2.0881233333333333,3.117735,2.82083,3.78174,4.18396,2.6985333333333332,3.4067000000000003,6.13815,1.4995783333333332,4.954405,5.1431,3.69352,3.96637,3.058263333333333,3.716635,3.71088,3.612965,2.826395,4.558275,4.64795,2.82742,2.28739875,2.9724166666666663,2.65238,2.8123133333333334,0.8037327272727274,2.148505,8.117075,0.50254625,3.2601600000000004,1.5962233333333333,2.51368,3.4715000000000003,3.1198633333333334,1.2188444444444444,1.7969460000000002,2.7109633333333334,2.12185,3.626215,2.05136,3.2042866666666665,1.4673733333333334,3.4480199999999996,2.0221975,1.1144457142857143,2.918203333333333,2.0559125,2.3827333333333334,3.10839,2.5935099999999998,3.2175833333333332,3.4078999999999997,3.2300066666666667,2.9115699999999998,3.4623666666666666,2.7489933333333334,2.427935,1.7069933333333334,2.5550366666666666,3.0588433333333334,1.6951066666666668,3.0820333333333334,3.8987057142857138,2.65064,3.067903333333333,2.9222900000000003,3.6329,4.564595,2.8146400000000003,1.6343228571428572,1.6343228571428572,2.1967525,1.15666,2.4520325,3.3070183333333336,4.479629583333334,2.723875,1.8826175,2.0869125,2.0706525,3.691655,3.119095,3.920995,4.523265,1.7488625,2.5594733333333335,3.620545,1.44225,1.44225,2.906825,0.6580976923076923,3.2358738461538463,2.3841375,2.3841375,2.941333333333333,2.3702833333333335,2.465523333333333,2.5989733333333334,2.795825,6.32624,3.7337175,3.7337175,3.62224,3.188175,2.236825,3.00593,2.49712,3.06021,5.286885,0.4908516666666667,0.6832320000000001,4.115005,5.12435,2.9526,6.809281666666667,3.498905,1.6730360000000002,4.4344149999999996,4.576025,3.95962,4.29778,5.1995,4.84221,13.6162305,3.55636,1.6102966666666667,2.860545,3.75561,5.7375,4.01015,4.111305,4.67527,3.66389,3.17456,2.77571,4.01881,2.9170133333333332,2.412993333333333,2.412993333333333,4.086005,3.44455,3.05292,3.14371,2.3135,2.479345,2.0955475,1.854665,1.9638025,2.0142225,1.73435,3.9057355,4.017615,2.432915,6.597172499999999,3.7687,2.267866666666667,1.6913433333333332,3.4076,3.84085,4.57393,3.172047291666667,3.534745,3.1628,4.1816,3.607915,4.362605,4.27558,3.577488,3.417595,0.6623233333333333,0.6623233333333333,0.6623233333333333,3.33518,2.25744,4.53704,3.782305,3.653795,7.654376481481481,3.03858,0.36115384615384616,5.2995,0.765761,4.375242857142856,1.884025,3.80197,1.73663,4.492975,5.7118,4.33288,4.70014,2.73666,2.8229399999999996,1.6181916666666665,2.589933333333333,0.5132421052631578,0.5734405882352941,2.8924333333333334,1.40581,2.0252475,3.76106,4.413195,4.98567,2.62258,2.8896683333333333,3.46557,5.12258,2.0210275,0.9867642857142858,2.476555,3.256126,1.3713032467532464,5.06045,3.702555,3.95316,2.7113666666666667,4.64741,3.171666666666667,2.6440033333333335,2.962566666666667,2.1050575,2.5595733333333333,2.3047775,3.13461,2.42637,5.822845333333333,2.63665,1.9259066666666669,2.54661,4.972224000000001,3.3872740000000006,3.3872740000000006,2.273023333333333,3.904145,2.3463125,3.809585,2.9902,0.5679339999999999,4.597995,1.9988725,11.791715555555555,6.87406,2.93053,3.095265,3.381395,4.85995,2.812295,3.622395,0.24704466666666666,1.838995,4.093566666666667,0.9239583333333333,4.0377,1.2812742857142858,4.70737,3.309025,4.80221,4.39017,4.114315,2.10483,4.67262,3.79538,4.4619,7.02159,4.20198,2.9272566666666666,2.940656666666667,1.589392,1.92129,4.431205,5.16035,4.0540975,2.72045,3.577135,1.5946479999999998,2.82818,2.255515,4.47814,11.061733333333333,3.6253,9.172643333333333,4.128495,4.511795,0.9909466666666665,4.826426,4.88479,2.5336866666666666,3.0717,3.7814666666666668,2.9067366666666667,2.33058,1.7844733333333334,1.8136833333333333,3.70986,1.727274,3.129023333333333,5.269892,2.7379700000000002,1.016992142857143,1.016992142857143,3.57735,3.130262,3.130262,3.7032666666666665,2.8683633333333334,3.340926153846154,3.8731333333333335,2.8237633333333334,2.676023333333333,2.3070533333333336,2.4012,3.1193500000000003,2.3333225,2.52534,1.616622,5.719172,9.500457833333332,0.4770569230769231,0.4770569230769231,0.4770569230769231,0.5952319230769231,0.5952319230769231,0.4770569230769231,3.18665,2.9385600000000003,4.232466666666667,1.50347,1.760915,3.340864,2.348986666666667,2.9659866666666663,2.221363333333333,3.17498,3.606733333333333,7.261333333333333,3.156553333333333,2.443243333333333,3.7444333333333333,3.54597,3.236613333333333,3.5031666666666665,5.27868,2.2556499999999997,3.472633333333333,1.3701283333333334,1.3701283333333334,2.467286666666667,0.5352631578947369,2.05798,2.6893700000000003,2.7609133333333333,3.5429333333333335,2.20497,1.417,2.6351733333333334,2.8962800000000004,2.2287733333333333,4.878325,2.5185286666666666,3.561595,3.06833,4.493385,0.5484880000000001,7.864595,2.937014,2.937014,8.041154722222222,1.7270733333333332,2.8712966666666664,2.9904566666666668,4.64456,2.3806,1.8931733333333334,2.5136266666666667,1.3689775,3.4488,1.7464266666666666,2.965621,1.32763,0.2683586363636363,0.2683586363636363,4.82741,3.990235,3.73037,3.043896666666667,2.665765,3.50335,1.2057200000000001,6.56355,3.883995,2.91195,1.847315,1.37154,2.03484,2.9904566666666668,2.532535,2.062075,6.2038150000000005,5.6662,5.5133,3.46615,2.4656,0.6718783333333334,7.2808375,2.05958,1.4019525,3.468295,4.218305,2.115505,1.8822833333333333,4.56359,4.2912,3.377133333333333,3.1519333333333335,4.54713,4.54281,3.6410666666666667,2.51136,2.51136,4.581635,5.11135,5.7545,6.529066666666667,2.6512766666666665,4.159435,1.3062414285714286,2.150065,4.283863333333334,3.792125,1.84452,3.88014,3.4618175,4.62119,2.0614,4.344425,4.863635,5.2275,4.591165,2.3684600000000002,2.65617,4.042766666666666,2.01045,2.826825,3.16844,2.50116,0.8004300000000001,1.94356,2.62147,2.284265,4.591425,4.84016,4.16341,3.996545,4.52119,5.2569675,10.36382,5.6299,4.261105,4.30094,3.954635,4.773645,3.0506499999999996,3.1050336666666665,3.604566666666667,1.25435,2.686455,2.830315,4.7791,4.875315,4.89574,2.8177,2.4165233333333336,2.225966666666667,4.0764000000000005,3.9198049999999998,3.528,3.9198049999999998,2.4329229999999997,2.1854766666666667,2.428186666666667,2.46842,2.8950933333333335,1.8119366666666668,0.7956599999999999,1.583755,1.70285,1.9240133333333331,1.5997666666666666,1.2956566666666667,1.6860333333333333,2.6003066666666665,1.510926,3.189553333333333,1.3332233333333334,1.6165666666666667,2.77442,3.1231266666666664,2.5334666666666665,2.4923933333333332,2.4315466666666667,3.249515,2.14302,2.85722,3.0863133333333335,2.3986966666666665,3.0306533333333334,3.36386,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,4.83277,3.333355,1.0153185714285715,3.18084,2.5760733333333334,2.905606666666667,4.52572,2.928013333333333,4.59993,3.916043333333333,1.7374759999999998,3.16785,1.6774666666666667,1.062315,0.963927,1.183135,0.8985233333333333,0.7652308333333333,1.34024,3.26066,1.800334,1.7304166666666667,1.8811794444444443,2.3564133333333332,1.0764583333333333,1.2964566666666666,1.4032600000000002,0.91328,1.24716,0.7140666666666666,0.9106479999999999,3.30632,3.55625,4.0389,4.31293,4.096995,2.9758566666666666,4.275135,3.7962000000000002,1.94859,3.516915,2.1404975,3.516595,1.9889033333333332,0.7913272727272727,4.31865,4.88425,2.0679966666666667,1.212935,2.81016,3.28572,3.612299166666667,2.8915466666666667,2.476125,0.8980675,2.210435,4.9469325,3.96746,2.329235,1.4915066666666668,3.715695,2.13829,0.6755472727272728,4.61301,3.7854,3.897225,2.399045,1.3573439999999999,4.524375,4.255845,2.5749566666666666,2.53118,2.4091533333333333,2.5852933333333334,2.7064166666666662,2.9500933333333332,3.4690999999999996,1.22725125,2.7304,2.3580533333333333,5.04125,4.14973,3.517005,4.30808,15.794868176767677,4.2744175,4.709640666666667,3.05252,4.26314,5.10345,1.567892,2.615675,2.5284866666666668,6.4443850000000005,4.18172,4.965925,4.248435,2.5284866666666668,3.90657,2.14852,2.5435766666666666,2.781003333333333,2.7209466666666664,1.2595699999999999,4.37932,4.14835,2.62596,4.21586,2.3792433333333336,2.547,3.68608,3.1249,4.745205,4.152385,2.724375,3.520725,2.509505,2.5271399999999997,1.106118,1.106118,2.5529733333333335,1.9555566666666666,0.20919107142857143,5.635040999999999,0.909902,3.193985,4.23307,0.5603266666666666,4.529515,8.053576666666666,1.8005125,3.589965,3.692555,2.515676666666667,3.25145,2.2451,3.09884,3.50089,4.10711,3.04888,4.0693,1.0181333333333333,11.429117666666667,2.56119,2.86388,4.124575,2.535005,4.03238,8.104943333333333,4.43523,4.237225,4.00244,4.266695,5.832805,1.57233,3.299023333333333,4.474085,3.8510000000000004,1.8645900000000002,3.802815,3.778945,3.597515,3.77783,4.582285,3.686835,2.41681,3.724515,3.5874,5.0985,5.13945,2.11199,2.37636,2.1017966666666665,3.0005633333333335,1.2157266666666666,3.5633,0.8290509090909091,3.1763066666666666,3.01376,2.7040333333333333,1.6367649999999998,4.445495,4.682265,4.15839,1.882695,4.865715,4.22882,0.7196957435897435,0.3355230769230769,4.628265,4.036705,1.06059625,0.3355230769230769,2.979815,0.7196957435897435,0.7196957435897435,0.3355230769230769,5.92769,2.73903,2.5049533333333334,5.48155,4.62278,2.99236,0.7828177777777777,3.166955,3.805435,4.704585,5.5162,2.2399025,0.6928399999999999,4.313174999999999,2.27651,1.416924,2.058925,1.0604871428571427,2.2793733333333335,2.2796366666666668,3.498805,5.6536,3.4633333333333334,3.5091666666666668,2.96287,2.7466166666666667,2.87121,3.9671337499999995,1.3963625,1.94032,4.022445,5.37605,2.0395079166666665,5.8815,2.72707,4.29065,3.9515,2.86581,1.1791425,3.006785,6.48815,4.029185,4.365635,5.1183,6.11965,2.64342,4.91395,4.422535,3.089505,3.41942,8.27642,3.7127,4.5574525,2.26042,1.1562,2.3963266666666665,1.808535,2.1627,1.89752,4.468785,0.6886471428571428,3.503625,4.107955,1.8857133333333334,2.8844600000000002,5.21915,3.164955,3.544665,4.472995,5.67445,9.646196999999999,2.66254,3.0616033333333337,1.6974740000000001,1.8387,1.1962833333333334,1.3861166666666669,2.9073766666666665,2.510683333333333,3.0520633333333334,5.178086346153846,1.6229825,2.60943,5.1182,5.2573,3.794,3.33453,2.88196,2.54313,1.99472,2.029,1.8375566666666667,1.920075,3.38073,3.83885,5.0819,5.25035,5.25855,5.569035,3.21589,2.53913,6.439700416666667,4.363615,7.59663,4.79221,4.79221,5.420696666666666,1.6411233333333335,1.3200775,1.3182233333333333,0.722395,4.645655,3.6783333333333332,3.3999475,3.3999475,1.9051040000000001,4.437545,4.465445,4.83935,4.307375,2.86214,2.72468,3.858275,3.012453333333333,4.7928991666666665,3.56498,0.8656654545454546,5.69495,5.16765,5.3561,5.4057,2.79922,5.7023,4.562355,0.8518076923076923,5.06635,6.54067,3.06212,5.52705,5.83885,3.422745,2.658695,3.95605,6.3466,2.039215,5.9052,1.840665,4.686455,2.9964600000000003,1.8041175,0.956882,3.66776,5.734,3.22196,3.969375,1.9479499999999998,3.439285,7.983645,3.30361,4.04146,2.652145,2.58352,0.860229,4.921025,1.5322916666666666,3.316018333333333,3.316018333333333,4.28832,2.3636166666666667,3.3330966666666666,3.946385,1.923945,3.2395933333333335,3.27981,3.3656666666666664,3.139895,3.94423,2.598945,1.8244725,3.5269999999999997,2.1014225,2.8583866666666666,1.9447400000000001,2.879023333333333,2.9377600000000004,1.4782285714285714,1.18937,0.5797316666666666,1.271105,0.5797316666666666,0.5797316666666666,1.18937,0.5797316666666666,3.6445666666666665,3.131124,3.131124,2.9510733333333334,5.35955,4.94542,4.659605,5.4699,4.914385,3.32499,4.3523,4.37698,2.1960425,2.8921086666666667,2.8131066666666666,0.7692381818181818,5.20395,2.8641400000000004,3.1257066666666664,5.39185,3.6530275,5.3088,3.311785,2.58069,2.97249,3.36986,2.4374766666666665,2.8836366666666664,2.05143,5.58125,0.91601,3.969375,1.1676742857142857,3.668495,2.29804,3.1969433333333335,4.233695,4.37449,4.251995,4.84502,4.06647,3.89547,4.540095,4.2965,2.49897,2.70145,3.2265099999999998,4.24044,2.66892,4.653965,2.6851,3.99301,3.2004866666666665,3.29052,3.70145,4.55964,4.144155,67.9437288923299,2.7035425,4.176055,16.657213,4.110375,2.945126666666667,2.0246666666666666,1.8926633333333334,2.61835,4.795655,2.9506200000000002,4.7073275,5.379,3.28159,7.508036666666666,5.21405,2.442465,3.141545,4.035845,3.41639,1.8140999999999998,1.21253875,4.679705,3.33074,5.935476666666666,3.48963,2.6665733333333335,3.622675,3.02295,4.51594,3.265925,5.5327475,4.72841,3.72231,3.083955,2.3190025,3.613555,4.32137,2.522605,4.059965,4.4134975,1.1879683333333333,2.70531,4.982677499999999,3.988265,4.480605,3.559445,2.844035,4.879365,3.109765,3.284695,3.7963,4.417415,3.338285,2.588035,4.523885,9.025575,3.2056633333333333,4.12216,6.27133,2.974995,2.576375,4.013181875,1.9419666666666666,2.982693333333333,2.96144,3.44736,3.124735,2.85742,3.574,3.309155,4.02689,3.86085,4.16063,3.298885,3.512215,3.80034,2.9448233333333333,2.9448233333333333,6.582666666666666,1.663445,3.051655,3.075935,2.44144,4.86077,4.15879,2.961385,3.07193,4.30533,6.3454500000000005,0.7373545454545455,3.61005,2.46522,2.8812866666666666,2.627353333333333,5.25605,2.73522,1.9979375,1.12833875,2.0248304545454547,4.057675,3.755615,4.024755,5.25715,3.743635,6.18765,2.48422,1.74071,4.321235,3.60178,3.1568233333333335,2.0103466666666665,1.1379883333333334,2.63313,3.2141633333333335,1.557642,2.30214,2.256212,3.6359424999999996,2.7287,4.788265,3.323715,1.3732725,5.6464,3.39493,4.474275,4.904455,4.46568,4.556935,1.9583166666666667,1.4564366666666666,0.6017657142857143,1.4661433333333334,3.375885,2.77962,3.647541666666667,1.4387166666666669,2.36524,2.42199,3.3337,3.368825,3.71461,4.069266666666667,1.94682,1.3844275,1.8885425,2.0438,1.405465,2.61335,6.762610166666667,4.820235,3.84353,2.951315,8.14351,4.64131,3.19721,3.058055,3.369135,2.65902,3.84948,2.2619700000000003,7.39336,0.8831166666666667,3.034205,6.08095,4.21709,4.61166,5.10045,1.4797966666666669,3.2802000000000002,2.7783833333333336,2.8297733333333333,1.8542375,4.032635,8.65758,3.400985,3.57678,4.17473,4.77642,4.421425,0.8770383333333333,2.7468766666666666,5.37935,6.72016,4.34936,5.3955,2.88963,3.7228999999999997,2.3242866666666666,5.1619,4.95913,3.8464937857142854,3.8464937857142854,0.6055142857142857,3.19261,0.954362,0.6296849999999999,2.086375,3.635,3.335406,4.763970285714286,2.7080633333333335,2.9253422857142857,3.0848176190476186,2.8339433333333335,3.0896566666666665,4.457533333333333,2.982765833333333,1.8117575,1.8117575,3.77245,2.9001266666666665,2.8006166666666665,3.747525,3.423166666666667,0.68764,3.1576866666666668,2.5406833333333334,2.810513333333333,3.0313033333333332,2.3604925,2.79281,3.454,2.962146666666667,0.815216,2.6231833333333334,6.075335523809525,2.1013,7.256408,1.5430160000000002,1.5430160000000002,3.4735001666666667,3.1004199999999997,3.3610333333333333,3.0288166666666663,1.789876,1.3327985714285713,3.0609699999999997,3.281276666666667,1.6701,1.3563485714285715,2.8633100000000002,2.812754,2.731473333333333,1.98859,2.117155,3.4565,2.23323,2.90859,3.223415,1.73535,3.594005,3.021855,6.610543999999999,4.30025,1.809355,3.769145,2.638635,2.096325,4.07307,2.6464966666666667,2.654885,6.953765000000001,0.8003615384615385,0.53437,4.67796,1.526638,1.526638,3.5165,2.4993325,4.726755,3.215075,1.2797433333333335,2.4362053333333336,2.8962533333333336,2.419580333333333,5.1784,2.631955,2.7197333333333336,2.76319,1.6209321428571428,1.6209321428571428,2.1809366666666667,3.8735,3.9964333333333335,4.56033,3.4045,5.1367,5.07695,6.9257,5.1796,2.70588,2.7279033333333333,2.5991166666666667,2.675213333333333,0.7393211111111111,0.7393211111111111,0.7393211111111111,3.22919,4.36856,3.692205,0.924285,0.924285,5.39255,6.3253,6.90162,22.52362077777778,13.2126,8.64775,3.514375,5.8208,2.35173,4.36254,2.4924,3.2955733333333335,4.285566666666667,5.598551333333333,1.97911,1.676185,6.3586,1.3649,1.3649,6.6106,3.455045,4.55781,1.7506925,4.130784500000001,5.3556,3.94241,5.09375,3.529725,1.2361433333333334,6.1159,9.02804,1.2361433333333334,1.7506925,2.10325,0.792504,0.792504,1.7723859999999998,2.3865633333333336,1.7723859999999998,4.777735,6.05455,6.54705,9.96149,1.7506925,11.740385166666666,6.329,6.2654,2.35173,3.0856,4.634625,8.96588,3.183158333333333,4.12932,6.19895,3.179165,5.00805,6.30265,4.808265,4.9076,4.07658,2.54847,4.351855,4.03074,5.17425,4.370365,0.77826,1.5438560000000001,3.10447,5.9772,4.39398,2.7379700000000002,2.080785,4.140025,5.0525,5.88945,5.2919,5.23355,4.364605,3.073775,4.09211,3.62975,2.070215,4.99127,2.012885,2.655835,3.64958,2.0770766666666667,3.902995,4.607485,3.567715,5.1454,2.85915,6.137496666666666,0.922478888888889,3.40337,3.891625,1.427272857142857,5.7854149999999995,1.5998716666666668,1.5214566666666667,2.8483133333333335,2.8048535,3.4056333333333337,2.9213400000000003,2.15473,0.7445209090909092,2.33733,2.497815,4.08765,0.7180661538461539,5.27981,1.57867,1.14135,3.1640533333333334,1.14135,3.86439,0.8578145454545454,4.438735,3.1412366666666665,1.764295,4.384129,4.2364415,4.2364415,4.408675,2.57885,3.1558333333333337,2.638853333333333,1.48953,3.786905,3.812455,1.9543,0.7224316666666667,7.079814487179487,2.75847,3.679445,4.22408,7.197,2.3786175,4.01581,3.77329,3.133625,3.716115,5.5529,6.5407675,4.24689,4.939205,5.19305,2.8875533333333334,4.868635,4.11057,4.554725,1.0624177777777777,0.5225307142857143,3.101605,3.3907000000000003,2.7887166666666663,5.73075,3.75219,4.281805,5.08515,4.712285,3.85748,4.244785,1.15633,2.075815,9.479355,2.128136666666667,1.9693933333333333,3.6917414285714285,11.987330654761905,1.4872675,5.10325,6.0724,4.791895,3.3122966666666667,2.37439,3.18967,3.719335,1.1644050000000001,3.101343333333333,3.73228,0.45193052631578945,2.1718366666666666,4.927335,4.38879,2.179675,4.13004,3.262455,4.984975,1.2877666666666667,0.6001299999999999,3.697208333333333,1.1443128571428571,1.1080075,1.1080075,1.1080075,1.1080075,1.4968283333333332,2.9745033333333333,1.9117566666666665,2.50759,5.039,3.6636333333333333,4.960505,3.56461,4.358465,3.466645,3.936675,1.3916733333333333,6.92549,2.026435,5.2433,5.325753333333333,4.780685,5.200334166666666,2.9649199999999998,2.3062866666666664,2.704166666666667,3.47015,1.2038533333333332,4.405455,2.63124,4.9828,3.2424033333333333,2.4504,3.778475,3.323675,2.940815,2.5413433333333333,2.87255,1.47829,0.40310666666666667,4.85083,2.854045,4.16571,3.204515,3.777175,5.7509,4.122795,0.52377,3.509896,7.417538,1.93984,1.967802,5.542795,5.69985,2.7365266666666668,4.66395,5.1215,4.04279,4.99186,4.098515,4.974905,4.9412,5.17755,3.43873,5.2111165,1.603958,1.7095166666666666,4.42027,4.45979,4.45086,3.15936,5.30175,5.32055,3.88696,3.307545,15.29685750020267,1.309377054574639,1.17340875,2.012890568181818,0.51279875,0.48086666666666666,1.368075,0.31124705882352943,1.362356,3.1454533333333337,1.38163,0.969575,1.13863,0.5365875,1.13863,1.13863,0.5365875,0.8435999999999999,0.6996135714285714,2.86696,2.8380533333333333,3.813795,4.849945,2.8246966666666666,2.7123,4.63621,4.78008,5.31015,3.26838,4.052225,0.7369071428571429,2.4207506666666667,8.654604166666667,4.889545,6.83506,2.66476,4.143085,2.27364,4.550105,5.2784,3.068545,4.258065,2.77025,0.9965266666666667,4.14429,5.12235,1.0285360000000001,1.40379,1.53351,2.3385166666666666,2.4539466666666665,4.118995,4.9504,2.260725,2.260725,3.5446058333333332,6.47451,2.0426333333333333,0.6426363636363637,0.79941,2.1358,3.3042033333333336,0.9647357142857143,0.9647357142857143,0.9647357142857143,0.3558192307692308,1.100982857142857,3.07395,5.70475,3.7815999999999996,4.255794166666667,5.34795,1.01861,3.4252000000000002,3.3222233333333335,3.9417333333333335,5.94335,2.90148,7.502233333333333,5.0894,1.1546888888888889,3.8729666666666667,1.797428,2.392635,2.270443333333333,6.632846666666667,2.9852266666666663,4.47392,2.168525,3.304485,4.224245,5.09465,0.4231477777777778,2.1483466666666664,1.3473166666666667,2.57824,3.9499386666666667,2.08008,2.7630866666666667,2.19618,2.57775,2.560486666666667,2.8239066666666663,2.8667433333333334,3.1897866666666665,1.306142,2.2398700000000002,2.394626666666667,2.812556666666667,2.6064833333333333,2.0894625,1.75668,1.8167233333333332,1.764235,3.359175,2.3043766666666667,2.1933866666666666,2.20832,2.3563,2.601156666666667,0.7765211111111111,0.7765211111111111,0.7765211111111111,2.4909133333333333,2.3681566666666667,2.9787533333333336,2.816126666666667,2.59253,1.9838866666666668,3.871585,3.5051900000000002,1.2919566666666666,2.6095966666666666,2.719556666666667,3.478553333333333,1.6448857142857143,7.11335,4.56471,3.14877,3.845265,3.46793,1.51563,0.4215271428571428,2.76057,3.778895,3.478553333333333,4.99788,4.25622,5.132,2.75952,4.446295,4.16452,0.7550790000000001,2.674615,3.278585,5.6040383333333335,4.495225,3.534415,3.17045,2.52264,2.5165133333333336,2.5317166666666666,0.6129125,5.194845833333334,2.621925,4.51593,2.8174433333333333,3.8345933333333333,2.767886666666667,2.4003833333333335,2.9291366666666665,2.9291366666666665,2.4520833333333334,2.0955666666666666,2.35007,2.024286666666667,3.945845,1.3579459999999999,2.771005,3.801895,3.96618,3.75012,4.75827,4.56947,2.44876,2.16559,3.363945,3.309685,2.694145,4.694955,2.873275,0.9714885714285714,0.9714885714285714,4.643205,3.955415,0.9801399999999999,4.778215,0.9801399999999999,3.953425,4.42457,5.1997,3.462755,3.39351,6.32132,4.287840000000001,6.19245,0.8834785714285714,0.8834785714285714,2.05086,4.66041,1.45766,3.20275,4.4605,1.095057142857143,4.714805,4.22698,5.245,5.245,1.137645,5.17055,4.715,3.772715,6.2175,2.19635,2.19635,6.8056,0.9461181818181817,6.8491,1.90412,6.062335,2.677345,2.3879766666666664,3.42012,1.439622,2.059276666666667,2.58933,2.9131366666666665,2.358990238095238,6.31091,2.04046,5.2371,2.9114233333333335,2.6664,1.938215,2.293385,3.192995,3.47583,3.698165,2.658095,2.067145,2.00859,2.50879,1.050624,3.131735,2.042695,3.263075,2.1398295000000003,2.1398295000000003,2.997265,2.07723,3.860105,3.99432,5.25375,7.69178,4.75687,3.597395,6.306547833333333,1.9194433333333334,3.3119933333333336,2.1798266666666666,1.4545285714285714,1.724075,4.294355,1.5932333333333333,0.503085625,0.6964566666666667,4.432005,4.095085,2.80638,0.9699255555555555,3.067265,2.3650466666666667,4.791025,1.9123819999999998,1.80842,1.1723000000000001,4.96734,2.48334,4.36001,0.6218130000000001,4.123159583333333,4.89374,4.029695,4.23634,3.282225,3.820995,3.0359700000000003,5.40535,3.81719,2.2669633333333334,2.761086666666667,6.265691666666666,6.5156525,0.8218025,3.97954,3.98224,5.1141,3.2859766666666665,3.3800333333333334,2.714775,3.3427000000000002,3.747033333333333,6.1623675,2.812754,2.5508534999999997,3.5732,4.80769,2.356225,2.6776,8.440353333333332,4.298995,2.064833333333333,5.114,4.527045,1.83432,3.863615,1.4292875,1.5330714285714286,4.775045,4.38101,5.51245,2.9735066666666667,3.460035,4.49773,6.0852,4.093465,4.25245,3.43843,4.787095,4.142545,4.32441,0.9762501538461539,0.9762501538461539,8.44256,0.960145,2.0618925,0.960145,0.744335,0.3286,2.8062275000000003,2.348295,0.52573,2.0618925,1.86265,3.10099,2.2804975,3.336265,4.80298,7.976633333333334,1.76473,2.65092,2.57167,5.30045,5.80835,1.95863,1.5293825,1.1057325,2.635115,4.11014,2.545865,4.29127,6.2830425000000005,0.47884944444444444,3.973485,0.768802,3.0983133333333335,2.612675,4.007275,1.21607,4.373135,4.56015,4.491635,3.072305,4.33744,5.1702275,1.7172575,3.886895,0.6755238461538462,2.841075,3.02423,1.302376,2.9076066666666667,2.4559966666666666,2.5140166666666666,3.584605,9.559515000000001,3.1516606060606063,3.59938,3.372275,8.14955,5.562834166666667,3.437533333333333,3.98165,3.50258,5.2942,4.985825,6.2337,4.82932,4.875455,6.33885,3.3655333333333335,1.80441,1.9840600000000002,2.4236733333333333,4.053735,2.44224,0.2128783783783784,0.2128783783783784,0.2128783783783784,30.42236814285714,0.2128783783783784,2.9695783783783782,0.2128783783783784,0.2128783783783784,0.2128783783783784,3.220441711711712,4.747615,0.2128783783783784,0.2128783783783784,0.2128783783783784,0.2128783783783784,0.2128783783783784,3.162845,4.57293,2.978965,0.3199076923076923,0.3199076923076923,4.240263333333333,4.3169835,4.177270833333333,3.5035725,4.00774380952381,8.198533333333334,11.135077771173272,6.591001333333334,7.960513333333333,6.677551125,2.467286666666667,5.999860952380953,4.550398333333334,4.670441762820513,0.3199076923076923,8.603211,6.6592902857142855,7.233041666666667,2.669175,9.210389625,15.315149196428571,18.904609228479853,57.01123372244259,118.13621947395497,1.3701283333333334,3.472633333333333,3.085225,4.129283427284428,0.3199076923076923,1.7172121794871795,8.157513333333334,14.493271666666667,20.035791944444444,48.97958153571428,13.080163458333333,2.841325,0.2587234482758621,0.2587234482758621,4.452396666666667,2.6993066666666667,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,7.43059,0.2587234482758621,0.2587234482758621,0.2587234482758621,2.871865,1.9115133333333334,3.89639,3.754235,4.001600833333333,5.2514,2.457005,4.50977,4.468665,3.124605,1.4301033333333333,3.51428,1.0058566666666666,2.1110825,2.526806666666667,5.766636666666667,6.060700000000001,2.846463333333333,5.594797944444444,0.3506238888888889,0.4712953333333333,2.4898866666666666,2.9499566666666666,3.083635,4.12561,3.4440333333333335,7.776232500000001,3.703055,3.26047,3.37729,4.019805,2.98132,3.23609,5.09315,1.949325,0.47629307692307693,0.8878527272727272,4.165637500000001,1.7892275,3.765785,3.617515,4.491715,3.39482,2.431335,2.60203,0.5732786666666667,0.727532,4.098755,2.6414566666666666,4.790435,4.217415,3.958455,2.97287,3.621605,6.40985,5.2106,3.19132,0.8567372727272727,3.8471666666666664,4.672235,2.128515,0.981855,1.4846899999999998,3.56329,5.17065,1.860955,3.646455,3.40471,5.489,2.51655,2.39218,2.169285,4.00487,2.753525,3.532685,0.69485,2.77901,3.296545,1.78805,6.117186666666667,4.185745,4.203455,4.573305,2.830325,2.019425,0.5521509090909091,4.817145,4.135375,3.748425,2.67184,6.0705,3.88119,2.92217,2.777375,1.2768057142857143,4.783665,1.988185,2.71487,9.658605,4.07935,5.10105,3.3534,0.9877422222222223,3.066455,1.1417442857142857,3.27613,6.3543,5.2917,5.17855,3.72723,4.804275,4.427985,1.8312725,1.9170166666666668,5.2084,2.954446666666667,3.3631333333333333,2.538825,5.01945,4.671515,1.4657016666666667,3.7447,2.79247,2.74089,3.500425,9.46602,4.74815,1.7422775,4.777315,6.38296,4.7455275,4.01408,3.914255,3.939295,4.92557,7.89075,2.36789,3.142685,6.1034,4.528835,2.804235,3.016465,4.774195,3.90175,3.48941,4.147566666666666,18.759674666666665,2.79257,2.2177466666666668,3.228543333333333,5.810794666666666,0.92603625,4.36792,2.1884466666666667,5.18415,1.44923,4.14657,4.389165,4.45668,0.96763125,4.59947,5.1966,1.659415,4.811075606060607,4.405555,1.1260357142857143,3.630965,1.896615,2.47405,1.66017,4.23713,3.823645,4.47471,3.6554,3.0593066666666666,5.0898,8.08648,4.821725,4.90873,4.863655,3.229086666666667,4.44379,5.2371,6.535176,0.956404,0.956404,4.46799,4.823105,2.0791999999999997,1.47589,7.392710000000001,4.475565,3.50702,4.22088,4.565945,4.363235,3.536345,3.84451,6.4500589999999995,4.07438,4.378735,5.06685,1.5452285714285714,2.88725,4.51905,5.2495,3.42342375,0.2102911111111111,1.4084525,2.3107875,2.5534966666666667,2.03458,1.0078655555555556,1.499275,1.26945,2.5373433333333333,0.6365288888888889,1.3534128571428572,2.004855,3.752885,3.9059333333333335,2.6638466666666667,3.27173,3.039903333333333,2.7763266666666664,0.673192,0.94692125,2.723235,4.75522,4.55491,4.2465,3.99351,4.262155,5.2306,2.1159600000000003,4.29971,5.172,5.0208,6.4334325,3.799155,0.46418470588235294,6.0594,4.449335,4.23702,5.1279,3.295725,1.9772459999999998,4.222875,4.485695,2.91587,5.147779166666666,4.500055,1.4572716666666665,5.147779166666666,4.64187,6.633302499999999,3.6007,1.2833777777777777,3.90395,4.799245,4.16694,2.5287633333333335,5.0431,1.5001875,1.9661375,4.96103,3.409265,0.7984611111111111,4.330025,4.703005,3.66152,4.36701,3.3933666666666666,3.2541499999999997,1.8947120000000002,2.2055075,3.17894,4.25786,3.9071,2.4093,2.701575,2.1246833333333335,5.93445,1.6719714285714284,0.8111,5.42907,4.14412,1.51847,2.6777933333333332,2.3141066666666665,3.15053,6.377031666666666,2.341053333333333,0.900468,2.439775,4.79126,2.4634466666666666,4.856205,6.44805,5.5737,5.15725,3.98852,5.9058,2.4700933333333333,2.2386166666666667,1.6468766666666665,2.0945533333333333,1.8894,2.268143333333333,2.1864433333333335,1.683035,2.685225,3.02387,3.371395,6.46915,5.55465,4.20978,4.652895,4.02093,4.317215,4.43226,0.9098675,2.6470966666666667,5.77365,1.169808,0.7347133333333333,4.73353,3.399225,2.49832,3.4042575,5.50382,3.449695,1.12439,1.2090657142857142,0.67821,4.0192425,2.16253,2.8326,1.1486657142857144,3.148846666666667,2.21189,6.22985,5.03695,4.430945,5.53175,3.6919,1.2913166666666667,3.58982,1.6877066666666665,3.41851,4.153135,3.70998,2.39935,3.19286,2.7839733333333334,4.037255,3.68415,3.257265,2.675325,8.67319,10.3965775,4.606155,1.3148185714285714,5.16645,4.140175,5.2974,4.43498,4.10664,3.865265,3.438905,4.073145,3.695949895833333,5.34536,3.690645,3.93961,4.52985,1.868976,5.44975,5.7413,4.66324,3.23765,3.16548,6.588675,0.646885,2.7574666666666663,2.71331,2.3978633333333335,5.2046,3.16064,1.29209,4.362655,3.4557333333333333,3.62981,5.1551,3.4643516666666665,6.58469,3.4987999999999997,2.9932933333333334,3.3070033333333337,3.0387133333333334,4.35297,2.6945766666666664,2.12169,3.2220133333333334,3.97674,3.4786116666666667,1.904815,1.528405,4.0461446428571435,2.9840419999999996,0.9152133333333333,2.8480366666666663,2.8480366666666663,1.187205,5.8256,3.1176,3.272095,3.43916,3.309745,3.42422,3.40182,3.01677,3.220915,2.0983633333333334,0.5665613333333333,3.253165,5.86461,3.015035,3.579965,3.1847,3.96891,4.1479,3.11018,3.245995,3.75329,3.650315,3.180115,3.132425,3.7036,2.5919766666666666,4.026865,3.88815,8.72975,3.3506,3.570305,2.94177,3.96015,4.04236,3.564825,2.31343,3.51674,2.5707199999999997,3.047795,3.00585,3.131605,3.885615,1.7495366666666667,1.7495366666666667,2.279135,3.000305,3.317515,1.555562,2.42789,3.365555,1.694912,2.876075,1.555562,3.883,3.027375,3.72947925,3.06434,3.37925,2.30754,3.57981,3.960025,4.641215,3.658165,4.3904,3.774285,4.223775,3.637255,3.004865,3.113645,2.98408,3.8836,2.62917,3.55084,4.54799,3.976865,3.624305,0.32916913043478263,3.442495,0.43618833333333334,3.57004,3.54445,2.878815,3.60679,4.341075,5.911764999999999,3.188395,2.53465,2.30833,2.7446133333333336,0.772489,6.343673333333333,2.975865,3.47376,5.04375,2.04432,2.72961,3.168635,3.210515,6.653995,3.64007,4.3912,5.10165,4.55015,4.28592,3.491455,1.46085,1.6915900000000001,3.70266,4.37278,5.22775,2.22905,4.651775,1.7976,3.27124,3.47096,1.9189945238095238,4.02343,5.512615,3.6488666666666667,3.882433333333333,3.4938333333333333,4.492175,5.1284,3.4308333333333336,4.176895,5.1363,4.857005,4.249565,4.563655,4.38471,3.437305,4.835775,2.57255,3.2884433333333334,3.2884433333333334,4.495415,2.51952,3.69496,2.4480133333333334,4.84652,3.3371,3.545795,1.78241,1.7389666666666665,1.1607166666666666,1.1607166666666666,1.724146,3.6353000000000004,1.69932,3.579466666666667,4.726485,5.244922,3.4063666666666665,5.48305,6.04482,2.81853,2.74538,2.913346666666667,1.6595333333333333,3.856125,4.42871,6.1831575,1.6042833333333333,5.3544,5.45875,3.4192,3.511755,4.239385,7.30471,2.1649533333333335,2.404115,4.03604,0.4450571428571429,4.815695,4.14464,4.36456,4.257015,4.56129,1.782234,1.8970600000000002,3.920935,4.75633,2.3792266666666664,3.72815,4.79074,4.603865,1.24952875,4.146835,3.756735,3.87008,4.992315,3.0038,5.534411666666666,3.77628,1.542098,3.540925,1.22875,2.8017566666666665,7.6454466666666665,3.31489,0.8600636363636363,3.478715,4.47697,4.18709,2.0697075,2.0697075,4.8915,6.0082,2.92106,0.4991744444444444,1.9241725,4.157788333333333,4.73536,4.56956,1.820984,2.92235,3.622735,1.1560357894736841,1.1560357894736841,1.1560357894736841,0.7784749561403508,1.3007849561403508,0.5223099999999999,1.1560357894736841,0.7784749561403508,0.2740557894736842,0.7963657894736842,0.2740557894736842,0.5044191666666666,0.5044191666666666,0.5044191666666666,0.5044191666666666,1.0617955000000001,1.3768875,2.3134200000000003,2.2879316666666667,1.056565,6.2117,2.63681,5.704943333333333,2.5404533333333332,4.23235,2.78138,3.290765,2.8359616666666665,4.641935,2.6875666666666667,4.140565,4.027045,5.28275,2.5254,3.73101,5.39795,4.06924,3.108985,4.80006,3.31156,4.3243,5.24255,4.98028,6.0838,5.3822,1.3739875,2.957105,3.925515,3.135935,15.584485,4.984495,4.965975,2.6682,7.28185,4.00393,3.885895,4.17173,3.33551,1.0371325,2.504265,4.451435,4.395025,4.35723,3.242155,4.080415,2.7122833333333336,3.560505,4.685845,4.604935,6.587511666666667,8.054198333333334,1.5000714285714287,3.396615,4.15381,4.07613,3.66075,3.364625,7.20184,2.57475,2.897155,2.515875,3.85502,3.70694,4.881525,2.37055,1.75026,0.8694559999999999,4.861175,4.771645,3.70581,4.247285,3.49447,4.81679,3.765705,6.0181,4.96814,3.27301,3.90118,4.51866,3.04857,3.22491,3.25847,1.789845,3.76712,4.60838,5.4929,5.304119999999999,5.304119999999999,2.387455,1.789845,2.191245,3.100825,0.7194583333333333,1.5544533333333335,0.834995,1.51104,3.01926,0.320747,2.94564,4.188125,1.51104,3.2118089999999997,11.1791725,6.8393425,2.2843108333333335,1.23067,1.7690533333333331,4.433165,4.261845,6.1794877619047615,1.9464875,2.20274,4.9551,4.304225,4.712725,2.04862,5.34745,3.4393999999999996,3.794915,5.26415,7.35856,3.82575,2.30368,2.7741933333333333,1.6722533333333331,4.15078,5.5181175,1.703416,5.25395,4.393635,6.195548,0.6049473333333334,4.926466666666666,3.71292,3.945925,2.99318,2.743995,4.753325,9.060416666666667,5.46355,2.0006666666666666,2.0006666666666666,2.0006666666666666,6.2547,4.491565,4.77971,2.981815,2.628525,2.474684210526316,4.22027,3.053315,2.4707179999999997,1.81981,2.4707179999999997,6.717078,4.415553333333333,4.140155476190476,6.80454,4.140155476190476,4.140155476190476,2.996957142857143,6.6706,5.4671069999999995,2.8479019999999995,2.8479019999999995,2.462985,4.20272,2.762445,3.460675,5.374639999999999,5.374639999999999,5.374639999999999,7.195185,3.47883,3.330685,3.5803624999999997,3.4246774999999996,0.87944,6.902559999999999,2.487006666666667,3.70873,3.12581,12.964437666666667,4.03901,5.4891483333333335,6.57003,2.5857133333333335,3.304745,1.12087,5.4891483333333335,3.479255,1.575305,1.575305,3.09345,5.199380833333334,1.6605425,4.682968333333333,0.828318,1.397775,0.828318,1.9141875,2.4888605,5.384093,3.46327,1.397775,3.20005,4.80196,0.932695,3.404375,4.08773,2.041825,4.311778333333334,2.026355,3.1583,3.084445,1.018206,3.686385,2.312685,2.28203,1.6010266666666666,2.9928816666666664,3.71404,2.76091,3.57115,1.2433922222222222,1.2433922222222222,1.2433922222222222,3.074745,2.3578733333333335,2.3578733333333335,2.831335,3.84307,2.4943133333333334,1.1821075,1.1821075,3.032215,4.21913,0.748985,1.3726733333333332,2.80575,1.39344,2.766113333333333,1.018206,1.018206,1.9185583333333334,1.018206,2.9782900000000003,0.7395616666666666,2.9782900000000003,5.938737083333334,3.627925,2.4305733333333333,1.7285048611111111,0.690505,2.4190098611111113,3.418275,2.4190098611111113,0.9215711111111111,3.678185,3.711805,3.733495,3.337205,2.595505,3.65072,1.71361,0.90157125,0.53255125,0.90157125,0.36902,0.90157125,0.90157125,4.5092,5.47175,6.20785,3.466905,4.66582,5.14405,5.39445,3.7538,4.430145,1.349117142857143,3.4478000000000004,4.138368333333333,3.776385,1.24948,2.80723,4.14714,3.99245,3.938155,3.84705,3.26727,3.286085,3.18287,4.47648,2.696896666666667,5.7217,3.70497,4.074405,4.656716428571428,0.8886269285714284,1.98195,3.8346,6.60252,5.00725,4.524145,3.23411,5.06175,8.475033333333334,4.209066666666667,3.089815,3.6009333333333333,6.4997,3.98906,5.4079,5.49675,4.35926,3.456465,5.7105,4.92323,3.2214233333333335,3.945395,3.3841,2.7659,2.1132433333333336,4.910215,6.5738,5.99865,5.3568,3.904525,5.2567,5.5747,0.5088961538461538,7.012065,4.470675,4.562,4.25656,4.789665,3.879365,2.9088133333333333,2.566325,1.3506266666666666,0.5770561538461538,1.8894380000000002,3.015973333333333,3.451445,3.96534,5.06195,3.828325,11.727128333333333,3.714635,3.86948,2.86953,0.6690550000000001,6.022766666666667,3.072233333333333,1.63689,4.709123333333333,5.791598333333333,2.719365,8.17835,4.282765,2.37819,2.37819,2.37819,4.40922,9.05573,3.107265,2.500875,2.500875,3.013805,9.84993,1.0272325,5.4407,4.453565,4.4299,2.82433,2.12059,4.227195,3.75717,6.0698,5.71635,3.769375,2.86346,3.84443,4.13528,3.5204090000000003,1.254525,3.13782,6.05438,3.5328099999999996,4.595975,1.02635625,3.8206666666666664,2.3944199999999998,2.5708033333333336,1.841175,1.7408733333333333,2.0988599999999997,5.75105,1.93926,4.078035,5.8998,2.04046,4.78876,3.884005,4.61313,3.253603333333333,2.21581,2.71164,3.704715,4.042963333333333,4.042963333333333,1.127415,2.8560133333333333,2.849653333333333,4.288849,2.2416454545454547,4.844366666666668,1.82498,3.034883333333333,2.1449933333333333,1.6550875,1.6550875,5.1288,7.333663333333333,1.91307,3.10519,2.490825,6.5703,2.940695,0.702214,2.831655,0.702214,2.671065,3.202205,5.06775,4.39621,3.67544,4.849945,5.6705,2.197115,1.8684966666666665,2.4595466666666668,2.306156666666667,6.286,5.0682,5.79885,4.045975,2.756185,4.705685,1.0800075,1.1076359999999998,1.8058333333333334,1.5280083333333332,2.5549666666666666,2.7877166666666664,2.3020133333333335,3.24517,2.70454,4.361315,2.6590133333333332,2.3531633333333333,2.6692666666666667,2.44048,2.78039,2.618793333333333,1.94411,2.4523699999999997,3.858015,3.318775,4.105355,3.779055,2.9143866666666667,2.4398575,1.8858925,1.148225,0.2746955,0.16037239130434783,2.07218,1.99036,0.16037239130434783,3.9427115579710144,2.283325,0.16037239130434783,5.752554930555555,2.3490433333333334,6.03657,3.23152,3.262776666666667,2.1449933333333333,3.03223,2.2545025,4.406205,3.0546133333333336,3.0822933333333338,0.4699736842105264,3.992605,2.369123684210526,2.90282,1.8489,2.528,4.06685,2.46593,7.49031,5.50325,4.02306,3.74941,6.31724,6.01583,1.67375,4.231895833333333,1.97787,1.92244,6.74636,9.24256,1.1422166666666667,2.015945,3.50778,2.570665,2.94975,3.23191,2.911375,3.8316974999999998,2.29517,3.17874,3.38329,3.235345,7.35697,1.2907633333333333,1.9794,2.83402,3.325225,1.8879966666666668,3.40377,1.457265,3.733025,3.3473,7.06612,3.61532,8.955235,3.770315,1.573858,1.6885666666666665,3.166795,6.56266,1.6434,1.5341633333333335,5.3537,3.34872,3.97693,2.603135,2.1351,3.027155,10.86281,5.03083,6.32297,3.39711,2.378615,2.069235,2.733875,2.91373,3.27714,1.8729500000000001,1.5562966666666667,2.4198233333333334,3.54775,1.760915,3.37924,2.83886,3.011805,3.692445,3.374355,1.3568533333333335,2.50595,1.2933999999999999,1.385318,1.529755,3.065465,3.214465,3.662045,2.827985,3.68877,3.92432,2.79194,1.525984,3.476725,3.4618175,3.133225,1.73986,3.10275,3.61231,1.5000625,3.41934,1.6432133333333334,3.938585,3.79505,5.41305,2.45813,3.83569,1.66864,3.396105,3.882535,1.71566,1.0576957142857144,3.9561333333333333,2.755225,4.919475,4.140185,3.0417,4.751855,4.46847,2.2487833333333334,5.3634,5.2695549999999995,6.2738,4.089765,6.561613333333333,3.66211,1.7011333333333332,2.9077533333333334,4.639535,4.98301,2.6644,7.600198,1.3150514285714288,3.6851333333333334,2.08961,1.7452999999999999,2.41613,2.64785,0.3680764285714285,2.6756499999999996,2.8737366666666664,3.482345,2.429495,3.4472666666666663,2.31954,2.57294,2.29358,8.700735,4.802505,1.51113,4.972855,2.4909614782608696,0.7196957435897435,2.569593333333333,7.344264666666667,1.702984,4.60725125,6.2825516666666665,1.9420375,1.576355,1.32825,5.3714,3.137655,4.545785,4.540135,2.4874300000000003,3.866645,0.908982,3.003192,3.54095,4.364225,5.49835,2.866415,4.90811,4.23677,5.18115,5.96695,6.2349,4.789435,4.69675,4.319,1.558706,1.8487125,2.93956,3.321135,1.2064777777777778,4.15206,3.0454733333333333,3.32368,4.107995,3.0715733333333333,2.891156666666667,1.5355400000000001,3.25829,2.7037838888888888,2.9936333333333334,2.899623333333333,1.9236366666666667,1.5646425,2.289235,4.44544,5.0131,4.265945,4.787965,3.433805,2.339695,3.148595,5.1662,3.389,4.542615,4.628495,2.240465,4.505951666666666,1.7338066666666665,4.18152,5.118500833333333,6.190263690476191,4.507715,4.762345,5.40495,3.602,4.1147275,4.038775,3.288675,3.863471,4.082755,1.6917875,3.111715,1.68816,2.15411,4.311295,5.6008475,3.863471,4.04112,3.546225,1.45766,3.768925,2.13654,2.6464966666666667,2.133365,2.69154,1.507779393939394,1.507779393939394,1.507779393939394,0.45619272727272725,0.8083322222222222,2.342127222222222,1.1566275,3.57478,1.20781,4.51724,5.03605,4.758765,3.112115,4.10026,3.08554,5.0098,1.911875,2.961595,2.56581,3.291315,5.794385,4.566735,5.40885,3.948425,0.97529,2.22654,1.2433733333333332,3.81265,3.96157,4.33188,5.4662,4.7376,5.16895,5.5022,4.24997,1.690825,1.732,5.386010000000001,0.9813555555555555,1.2873433333333333,2.76354,8.495989999999999,3.2605,3.625125,3.29322,5.6247325,1.6904925,0.9986166666666666,1.5828875,3.245185,3.507205,3.829485,3.64581,1.88259,7.573845,3.0775233333333336,1.09708625,5.03665,3.0960900000000002,2.8127999999999997,2.4757866666666666,3.6968666666666667,6.167190833333333,2.9875133333333337,3.0357833333333333,3.6323000000000003,2.96304,2.8033466666666667,2.997306666666667,2.782575,1.9761025,4.390905,4.761475,4.60341,1.0192655555555554,0.715595,3.650066666666667,2.62855,1.00737625,2.192177916666667,5.95115,5.1356,7.167475,4.947925,3.811833333333333,1.726708,3.31539,3.66376,2.9452466666666663,3.0740594285714287,4.07131,2.8599266666666665,4.972391999999999,0.9612277777777778,5.5714,1.777824,4.304275,4.39888,1.93866,0.917615,2.93075,0.423976,2.88264,5.88645,6.10395,2.6333,1.47498,2.65863,0.7682588888888888,2.5904700000000003,0.7682588888888888,3.889945,4.2293,1.4092275,1.7239075,4.989733333333334,1.7789733333333333,3.604005,3.88965,3.65023,1.223052,1.6049633333333333,3.96652,5.22275,5.0885,2.96144,2.0004525,2.643775,1.60731,2.1935325,1.823895,2.0414575,4.343495,1.424388888888889,1.424388888888889,3.52106,4.672069333333333,7.700588333333334,5.0195566666666664,7.729495,2.030885,3.82079,4.17928,1.5777416666666666,3.5628066666666665,4.10893,3.476145,5.84545,3.08342,2.43346,2.9184533333333333,4.148105,1.067395,3.83566,4.634585,1.0974533333333334,8.24204,2.68628,3.309815,2.9821508333333333,3.75621,3.935845,4.1485658333333335,2.20785,2.7964466666666667,1.8879299999999999,3.4984333333333333,2.613775,2.2391925,7.885376,3.2962433333333334,3.3914666666666666,4.23357,22.576991554945057,0.6637446666666666,2.768685,4.255235,4.652795,8.39683,4.668635,4.2804,4.43925,7.277585,3.412775,1.8682766666666666,5.601565,4.102325,1.236434,1.236434,1.236434,2.35328125,1.63551,3.19863,1.568455,2.93964,1.4797966666666669,2.463365,2.63768,2.94785,1.568455,3.134245,2.540835,4.202005,4.7421766666666665,4.864795,0.7716816666666667,3.211285,2.66399,4.85852,3.818735,2.747165,2.0565225,1.69198,2.0005825,1.379516,3.928815,1.4600425,4.96614,11.982485666666665,2.69357,2.38164,5.435934166666667,2.665156666666667,4.3191999999999995,6.22715,1.89915,5.562834166666667,4.69429,1.2296583333333333,1.1588399999999999,6.462493,4.702695,1.9441375,3.671575,1.8729575,4.640135,4.8726,4.670635,3.9079,1.3291885714285716,4.12293,5.2707,4.701005,6.248163999999999,4.54909,5.5873,4.877845,4.175615,4.990495,2.68317,4.621895,1.9681375,3.38711,3.25931,4.226885,3.687025,6.0868,4.550235,2.1519,3.2261633333333335,8.801590000000001,4.476685,3.01557,3.6044,3.248875,4.554075,4.330375,4.742315,7.332341666666666,3.90614,2.5512166666666665,4.093120833333334,2.321535,4.575975,2.8520366666666668,6.4628725000000005,1.6832333333333331,4.59827,4.574125,11.735814999999999,0.4614385714285714,4.51916,4.28491,0.6719928571428572,3.56208,4.08853,4.587765,0.90373,5.11335,4.8074433333333335,2.63099,9.897454999999999,3.32719,1.88548,3.062215,3.978215,5.81645,0.5679725,3.849295,2.1674375,4.53863,0.6490269230769231,4.2284,5.6099,5.37085,3.55454,6.8892925,4.30353,3.679085,2.407223333333333,2.777556666666667,4.330345,4.75838,5.02055,5.2337,4.95351,3.1601866666666667,7.036576666666667,2.953375,3.3303205,2.0917425,3.58663,2.545173333333333,1.5301266666666666,3.1247566666666664,2.851183333333333,2.8897066666666666,3.7585333333333337,3.303516666666667,3.305813333333333,2.6907,5.50425,3.1889233333333333,3.757215,5.0582,3.1214933333333335,1.0637833333333333,3.1771700000000003,2.8740633333333334,3.562465,3.28393,3.111883333333333,4.77699,2.08182,1.6561825,2.998395,3.756265,4.664775,1.1008325,5.0907,3.044165,3.8942666666666668,3.04616,4.739848,4.13414,3.28182,3.92139,1.79414,3.774625,0.6716875,4.563575,5.03805,15.626181212121212,3.3475,1.112865,4.506835,0.6129764285714286,2.580125,4.39664,1.867795,1.3472242857142855,3.43972,4.26331,3.4197666666666664,0.7000766666666666,2.461855,7.7134,3.833805,5.83265,5.3386,4.257285,3.1116733333333335,3.321196666666667,3.223456666666667,6.564911666666666,4.26224,5.20075,2.150585,0.44667833333333334,2.158595,3.0027,1.72521,2.40173,4.24867,2.737816666666667,4.87091,0.6730916666666666,4.453405,3.43883,3.100025,1.3268266666666666,2.6140433333333335,2.01507,4.71443,3.903945,2.135065,1.6281857142857141,4.33179,5.1518,4.75239,6.290765,2.22036,5.5402,4.85373,4.39328,2.35906,5.10755,5.9328,5.4404,2.908005,4.83219,2.90749,2.42589,4.38327,4.240535,1.3443333333333334,4.43965,2.777176666666667,2.916933333333333,5.144183333333333,5.144183333333333,5.0729,1.969744,4.633025,1.003025,1.716932,4.79099,2.47822,1.4007333333333334,3.3709666666666664,0.8728859999999999,4.2523333333333335,4.30908,2.91914,4.74997,4.27216,3.865045,5.8556775000000005,3.479035,2.849653333333333,3.1425066666666663,2.3439866666666664,2.549625,2.9950433333333333,4.255495,1.3059727472527471,3.131016666666667,4.45712,5.16285,2.3604858333333336,4.251765,4.577335,4.8308333333333335,3.4990666666666663,5.4189,5.3402,5.1631,5.00865,3.74344,3.37646,3.512045,4.242155,5.6877,4.921255,5.1291,4.30012,4.52151,0.6952858333333333,5.003,4.63859,4.43125,6.8614675,4.379025,4.088775,4.197055,4.3672,3.70858,3.878305,2.11435625,4.4400975,1.9514375,1.3247785714285716,3.697595,2.1752733333333336,2.49012,3.589388666666667,2.9751333333333334,3.13714,1.0837066666666666,2.04202,3.829395,3.825,1.876205,1.876205,4.369915,1.90487,3.11318,4.42297,3.8053,3.63186,1.4741033333333335,2.009875,3.6515641666666667,1.89087,3.777095,4.479225,4.42011,4.1555,8.41091,2.526425,3.65418,4.68997,4.163175,2.9260133333333336,4.03483,4.370985,4.380955,2.345545,2.717076666666667,4.786655,4.09805,3.789075,4.112435,1.609675,3.998695,4.66369,4.53839,4.39446,3.9390549999999998,3.9390549999999998,3.3065541666666665,4.287955,4.60184,4.002145,1.6243120000000002,7.655755000000001,3.877935,5.49605,4.44622,4.291055,5.25935,4.688955,2.94583,3.4233,4.638145,5.2771,2.07698,5.6323,5.574958333333333,5.18995,0.7167589999999999,4.6691400000000005,1.00198,5.17,4.74106,4.92426,4.25188,5.392,3.5503,3.5503,0.84823,2.3047775,5.17725,4.476445,4.162565,3.83316,5.04835,3.28285,4.047025,1.2875383333333332,2.817965,1.5964275,1.17246,4.481666666666667,0.899455,2.297966666666667,3.0769233333333332,1.1366766666666666,2.153355,2.60104,1.3207166666666665,6.21219,1.7696275,2.3869599999999997,3.778695,2.3686175,2.7029433333333333,3.534665,4.576515,2.8945066666666666,2.890563333333333,4.283066666666667,1.585094,2.0439708333333333,4.509405,0.6526771428571428,2.37984,2.82035,3.05696,2.991816666666667,1.267737142857143,0.8546916666666666,2.4319866666666665,4.085655,1.2417285714285715,2.287575,1.4314475,5.297245833333333,2.0609625,4.514535,4.698055,4.424615,4.69501,5.27505,4.42929,4.24505,1.40153,3.8251333333333335,1.697288,2.8832233333333335,1.1404328571428572,4.50596,2.2156175,5.474376,3.661045,4.0816,1.64482,6.7318925,4.74016,1.4731283333333334,4.077825,3.003335,3.904855,4.110755,1.961325,1.961325,3.3887,1.583755,1.583755,2.35906,2.5334666666666665,2.0894625,1.2919566666666666,3.4626333333333332,1.07556625,3.107886666666667,2.491775,1.8903275,1.6141500000000002,2.2095625,2.1544375,0.28136470588235296,2.54225,1.1821566666666665,2.5369766666666664,2.1449933333333333,2.44876,1.0814155555555556,1.050624,3.7321666666666666,2.7870333333333335,1.961325,1.7892275,2.0750266666666666,2.48335,2.551676666666667,1.713194,2.5143366666666664,1.00882,3.2265099999999998,3.1885999999999997,2.5357933333333333,1.527006,1.108066,2.6048,1.108066,2.6048,0.738655,0.738655,0.47759555555555555,2.349255,2.33564,0.738655,2.219135,2.6100566666666665,2.40227,1.764235,0.7765211111111111,0.738655,0.738655,1.66128,1.66128,2.1203975,1.7892275,0.738655,2.39476,0.46068,2.7668133333333333,2.207806666666667,3.480066666666667,2.3014466666666666,2.3014466666666666,0.41344450000000005,0.41344450000000005,2.35906,1.97901,2.24286,2.0205200000000003,0.41344450000000005,3.5316333333333336,2.624925,1.6324,0.613573125,1.6324,0.613573125,10.7913,2.50599,3.4662,2.515676666666667,3.1614966666666664,2.91543,2.8822166666666664,3.3874333333333335,2.3190025,1.6554675,2.85816,4.209066666666667,2.3107,1.66128,2.2272612698412697,2.2272612698412697,2.72915,2.271305,4.273565,2.267866666666667,3.577366666666667,2.8112033333333333,1.739836,2.4450325,2.358705,0.8037327272727274,1.5692525,3.04592,1.828484,3.4445,2.7342066666666667,2.600075,3.8707999999999996,1.6694666666666667,3.6245333333333334,3.275043333333333,4.0568,1.546046,0.2587234482758621,1.2547042857142858,1.2547042857142858,1.1310444444444443,3.07997,3.9417333333333335,2.4921433333333334,2.05437,2.05437,2.328085,1.6432133333333334,0.9861409999999999,1.7182933333333335,1.7182933333333335,0.738655,2.35906,2.7814433333333333,3.881933333333333,2.491775,2.03404,2.03404,2.03404,1.04757,1.4545285714285714,1.4545285714285714,2.39957,3.061106666666667,2.626618207070707,4.607035,2.6281966666666667,2.4221166666666667,3.92929,3.828085,7.8499725,4.61533,4.626465,3.9905333333333335,12.909767500000001,4.64266,3.534885,0.9148075,4.104255,3.081195,2.28963,3.579485,4.88172,8.260380333333334,6.2652,0.49855941176470586,4.4171,2.59493,3.78001,2.4568025,4.815475,4.22415,4.66849,8.52231,3.18322,3.80641,3.897685,3.2924213636363637,7.984465794871795,3.1487266666666667,2.630806666666667,3.58875,3.962725,4.669325,4.08115,6.4350179999999995,5.4384,1.337998,3.491655,0.88982375,5.11265,5.662,5.0925,5.28665,6.1849,4.37079,5.30125,4.017935,9.01881,3.924355,4.815327,3.9959666666666664,4.74637,2.93186,1.300305,1.300305,3.37268,3.87367,2.136305,2.090415,5.01745,3.828755,6.5776,2.21779,2.8754,3.084395,2.4836833333333335,1.18429,4.21908,4.534135,8.85227,1.735306,3.334025,3.51956,3.439475,2.749356666666667,8.08716,4.14631,3.6098,3.160963333333333,3.88459,3.6942,2.99236,2.8307333333333333,3.864855,3.732975,4.069355,4.228755,0.39954999999999996,1.4131966666666667,2.3808599999999998,1.770675,4.700445,3.471135,2.5927966666666666,2.2213475,4.408305,3.7911795,2.210855,2.43485,0.907699,2.15454,2.453953333333333,2.453953333333333,5.13815,1.8690525,2.80111,2.2736300000000003,2.09257,1.6730233333333333,2.85142,4.02247,3.87206,3.902635,5.01915,4.7021,2.818385,2.0979366666666666,1.8708580000000001,5.17255,5.2685233333333334,2.53791,2.958903333333333,2.0942225,2.38738,4.121323333333333,2.6658133333333334,4.865135,3.700795,3.438075,4.70263,2.96302,3.58554,4.205885,2.281356666666667,2.5051533333333333,0.4120864285714286,3.1132933333333335,2.46463,2.82057,5.91545,4.74198,6.032211666666667,2.059635,1.5582566666666666,3.13991,5.5621,5.6905,4.237645,3.1671633333333333,2.2265566666666667,3.752065,2.3170533333333334,4.94077,2.4893566666666667,1.863065,5.0557,4.87479,5.53075,1.712535,1.8904,1.02613,1.02613,1.0149240000000002,0.8771771428571429,0.9435439999999999,1.8581571428571428,4.498685,11.098706666666667,3.98071,4.40167,4.09339,5.4998425,2.692375,1.6537266666666666,3.5390441666666668,2.81479,4.3564,2.63616,2.7805433333333336,2.9392933333333335,3.3945333333333334,2.4906200000000003,3.1759133333333334,3.591366666666667,3.114516666666667,3.3613999999999997,3.5673333333333335,2.969416666666667,2.7620799999999996,3.8592999999999997,2.344656666666667,3.10188,3.28668,2.9050333333333334,3.3784333333333336,2.2764800000000003,5.114907714285714,3.2348233333333334,4.4878626666666666,3.276096666666667,3.144906666666667,3.8049666666666666,2.8041766666666668,2.784136666666667,3.1580600000000003,3.077,3.3916,3.1297033333333335,2.1065725,2.70459,2.7190366666666663,3.08065,3.08065,3.072756666666667,3.20342,3.1539866666666665,2.7173766666666666,3.3154766666666666,4.382133333333333,2.7185066666666664,2.74805,2.741376666666667,2.92047,4.959045833333334,5.035,1.6795666666666669,2.9405033333333335,3.4537,3.389304,3.4318333333333335,3.6956666666666664,3.5917333333333334,3.6596333333333333,3.263658,1.9944199999999999,3.0083504999999997,3.6183,3.4904666666666664,2.62786,2.7738533333333333,3.9909666666666666,2.914956666666667,3.261623333333333,2.321755,1.4125883333333331,3.5582,2.8322866666666666,2.2727933333333334,2.565525,3.308873333333333,3.0690066666666667,2.04516,5.677488,2.431296666666667,0.935267,4.430185,1.94000875,1.7034,4.44874,3.719825,3.212185,2.325215,1.6530075,3.370025,2.47883,3.433125,0.44428349999999994,2.071925,0.44428349999999994,1.985955,1.6530075,2.642715,3.81552,2.849125,3.55694,4.07936,0.6002393333333333,2.9413366666666665,0.898295,0.4519276470588235,4.906925,3.836135,4.81831,2.59975,5.74195,3.98889,3.64852,2.71318,3.4502666666666664,1.717934,6.27985,3.514915,3.83557,4.508245,2.91757,2.1128766666666667,2.1106700000000003,1.3643666666666665,1.816165,1.0543125,1.0543125,4.417275,2.5999733333333332,6.301833333333333,2.237585,2.276595,1.908715,2.096442,2.59415,4.639935,4.75548,2.16133,2.2670233333333334,2.096442,2.137435,3.4446195,1.9833875,6.306513333333333,2.237585,3.2392775,3.586075,3.3768999999999996,5.3373,4.77533,2.338915,2.0104525,2.32302,3.57356,4.81834,5.03835,1.955605,4.174555,1.6595333333333333,1.783425,5.67365,11.058266666666666,2.03244,2.74293,2.206836666666667,4.678655,4.195575,2.0483425,5.31045,4.37563,3.387135,39.50485711904762,2.98718,3.307026666666667,0.5044716666666667,4.957726666666667,2.3069633333333335,0.9271566666666666,4.125515,3.819055,2.2366875,1.819205,2.3691133333333334,3.96553,1.3670957142857143,3.2826013333333335,4.58459,4.80094,0.8999900000000001,4.964265,4.44606,5.2965,3.022733333333333,1.3486075,3.992725,4.478205,4.135175,3.199145,3.533665,3.920585,12.111846919191919,3.0429933333333334,2.93075,4.609295,2.740425,4.41093,3.706535,2.688325,3.047005,5.07905,5.21735,5.3617,4.854695,2.51044,3.93564,4.878865,3.54412,4.69635,4.65508,0.10276510869565217,2.27594,2.939155,2.81012,1.1422433333333333,0.5473258333333334,0.5473258333333334,1.8689225,2.76375,4.3526,1.199464,2.85197,4.425405,2.57553,4.421976666666667,0.5963714285714286,4.51247,3.807725,4.471595,4.052115,4.657075,1.0116225,0.9920575,3.4596,2.9271933333333333,2.9050466666666668,4.424446939393939,5.18575,6.1354,5.5083,5.0982,3.507345,2.15558,1.54606,5.30045,0.311432,3.21662,3.7051,4.031725,14.146259999999998,1.9304325,3.0728899999999997,0.75129,4.367755,8.700725,3.3595,1.7315066666666665,5.3576,3.2782999999999998,1.0243044444444445,3.79763,2.79806,2.99564,4.75765,3.3099683611111113,1.03979375,7.297751666666667,0.71215625,4.77934,3.102429611111111,1.3545075,2.0272106944444443,3.1615325,3.1615325,3.80894,4.199311416666667,1.422775,2.37952,2.62865,3.6221,2.470755,2.47326,3.240005,3.31115,6.469522666666666,6.0647,4.010985,3.27218,5.05695,3.694595,4.00839,3.303705,3.478165,4.345265,5.5882,2.4827533333333336,2.6054766666666667,1.5311266666666665,2.2698199999999997,2.4493825,1.5192325,3.6663,3.7393666666666667,3.6116333333333333,3.25703,2.6418166666666667,1.4301033333333333,1.49451,0.45458,3.486166666666667,1.228892857142857,1.625235,2.9315866666666666,2.587823333333333,2.58968,0.98695,2.4034975,2.590955,2.756805,3.42989,5.78525,3.76261,2.768125,2.239446666666667,3.3713,4.10287,2.51725,2.831105,1.92111,3.828985,2.713915,3.770655,1.2999766666666666,0.606872,2.433535,3.26773,3.097475,3.87085,4.448804,8.452364000000001,3.205603333333333,2.34605,1.9405766666666666,1.875114,1.875114,2.62075,2.611143333333333,5.13185,4.58267,3.83944,4.65694,4.23586,4.34813,3.383165833333333,4.108685,8.1210875,2.378225,0.503085625,3.07426,1.2521933333333333,1.00249,1.9803499999999998,0.8451739999999999,2.1871675,4.584815,5.2086,5.7049425,1.0717925,7.14908,1.949666,1.50232,2.61588,4.7479,3.7747333333333333,2.5725,3.77832,3.195116666666667,3.5098333333333334,2.9953833333333333,2.7710066666666666,3.0135066666666668,6.895795,2.52233,3.848525,3.604625,3.8637266666666665,1.6451866666666666,1.34229,4.32203,2.8546866666666664,3.04092,6.1370925,2.646375,2.16335,2.445635,3.66201,3.2356366666666667,2.5918933333333336,4.576506666666667,2.9399033333333335,4.328125,2.5361651666666667,1.86114,5.26135,5.28215,4.768315,4.59767,1.56975,2.428405,2.04764,3.35137,1.6673866666666666,0.97996,2.7794950000000003,2.10617,2.0634925,4.051965,0.9007999999999999,6.653074999999999,1.816895,0.7432009090909091,3.7177666666666664,4.67385,0.7719714285714286,3.26166,2.830120625,0.8546916666666666,5.1168,0.20169333333333336,0.20169333333333336,0.20169333333333336,0.20169333333333336,0.20169333333333336,0.20169333333333336,1.956552,4.059945,1.956552,1.956552,1.7717733333333332,0.20169333333333336,0.20169333333333336,3.332883333333333,2.58956,3.881785,3.20768,2.32731,3.44896,1.7137571428571428,1.844026,3.5204090000000003,1.675882,3.248226666666667,2.7573315555555555,5.913356666666667,4.53651,4.125755,4.60943,4.41571,4.516875,4.708235,3.92893,7.5279662499999995,3.7708666666666666,3.582266666666667,2.6220666666666665,4.586543333333333,2.5465533333333332,2.18735,1.8576333333333332,4.83693,4.75645,4.436885,5.3897,5.54705,4.637045,4.984365,0.8541254545454545,0.7424714285714286,0.7424714285714286,4.793035,2.3256833333333335,3.77548,1.0247742857142856,5.0423,1.5009571428571429,2.3425333333333334,2.60652,4.5752999999999995,4.5752999999999995,6.8798,4.226915,1.5950383333333333,12.093086666666666,3.522266666666667,1.1329777777777776,4.928205,4.69642,3.667015,3.031165,2.801055,4.700933333333333,0.6752400000000001,3.6247333333333334,3.0193766666666666,3.26534,3.190376666666667,1.4822133333333334,1.4544366666666668,4.755650833333333,3.0998966666666665,2.9577899999999997,3.3842666666666665,5.259870833333333,3.4267875,0.699596,1.8252433333333336,3.4926,2.4900900000000004,3.798633333333333,3.2970633333333335,3.2021433333333333,3.7878333333333334,3.0938866666666667,2.395496666666667,0.97151,2.9742366666666666,2.4970466666666664,3.84079,3.551555,4.317055,2.759116666666667,3.3502333333333336,2.5979,1.523336,1.91632,2.0671440476190472,3.7792333333333334,1.872392,3.1395133333333334,1.8165333333333333,4.0112,5.0509275,4.706539333333334,2.3238775,2.6174,2.633575,2.513325,1.589357142857143,2.4991575,3.1847260714285714,2.37678,3.5568000000000004,2.919015,3.607955,3.43398,0.9312444444444444,1.289005,1.7390525,2.3196625,2.9627966666666663,3.419233333333333,4.74952,7.379005,3.16425,4.68864,4.49247,15.545809,0.49804649999999995,11.22652,1.0616366666666666,2.914635,3.2700366666666665,1.9371066666666668,2.84277,1.506364,1.525984,2.903116666666667,1.310698,2.7305200000000003,2.1174399999999998,3.5820000000000003,2.49941,2.723516666666667,1.5179933333333333,0.77296,3.339733333333333,2.4780166666666665,3.3425999999999996,1.04757,3.786,0.7325283333333333,0.3482476923076923,2.47951,4.51033,5.09445,4.584565,0.945609090909091,4.052725,4.57909,1.3381925,2.52005,5.405873333333334,3.255395,3.89786,3.83601,3.765115,1.9708825,3.927655,2.73522,2.835945,3.48775,2.70961,2.74596,3.8385,3.17456,3.54754,2.90003,3.368165,5.35265,1.2732066666666666,4.363915,2.2082925,4.148715,4.513413333333333,2.314445,2.8906766666666663,3.0256900000000004,5.652586666666667,2.48793,3.2498,5.78135,3.4662,4.60337,1.6986633333333332,2.5451,5.3263,3.4333333333333336,5.3608,3.3770666666666664,3.6126,3.2514066666666666,4.339466666666667,3.0877133333333333,2.816926666666667,2.8562133333333333,0.4391361111111111,2.531025,2.09614,4.9541,4.90496,3.0288533333333336,2.72466,3.2564666666666664,9.15552,3.5533681250000004,3.850805,3.3000566666666664,4.53508,3.15172,4.003299166666666,2.713506666666667,2.1708575,3.00076,5.3903,4.59397,2.0612833333333334,3.193885,2.91153,2.5916099999999997,5.064873333333334,1.6984179999999998,6.053026666666666,4.181,4.66529,4.141065,5.4705,3.554435,6.976143333333333,4.53504,4.057935,0.67169,2.2856225,1.6813575,3.1617933333333332,3.66380375,3.904555,3.79949,5.35425,2.9401966666666666,4.728,2.7396166666666666,3.401533333333333,3.0507866666666668,5.03695,4.607985,6.45855,2.7702766666666663,5.917854999999999,4.306635,1.4702849999999998,5.69815,3.546615,2.785695,2.190645,2.15453,4.873506666666667,1.2050642857142857,2.4803333333333333,2.044465,4.201645,4.42436,2.5026533333333334,3.2354566666666664,3.2111903333333336,2.735383333333333,4.12965,1.341396,2.2099166666666665,2.2951,2.6979399999999996,2.43484,2.8064766666666667,2.66994,4.003675,2.8571833333333334,2.7904633333333333,4.298315,2.312325,4.408335,3.522945,1.4278912121212124,1.4278912121212124,4.486935,3.0573099999999998,1.71365,1.3531325,2.2184775,2.09641,1.1659599999999999,1.4127866666666666,0.64141,1.5566833333333332,1.5125533333333332,2.8399433333333337,2.2617933333333333,1.6951566666666666,1.9246333333333334,2.3045,1.3811200000000001,1.7838566666666666,1.75167,2.175025,4.096845,2.80777,3.0363066666666665,2.83225,5.90195,3.0697,4.006105,3.9842875000000006,1.985435,3.71231,3.3828,1.86625,3.44338,2.27776,2.735275,3.688675,2.3378525,3.82138,3.02291,4.05929,3.512866666666667,0.9408022222222221,4.5538,3.866465,3.310715,3.57293,3.090666666666667,5.0398,5.09015,5.444017499999999,9.032567499999999,4.085465,4.34874,2.9890566666666665,3.87639,4.794295,2.544695,2.822095,4.24988,2.26136,5.524847,1.78233,2.530575,7.772786666666667,2.8783733333333337,3.8545040000000004,1.3131542857142857,4.6733,4.749775,3.124033333333333,4.691265,5.0031,6.146967,17.0253775,0.666464705882353,1.0814155555555556,3.2671966666666665,3.991075,3.69624,2.1661025,3.5514,4.099605,4.901285,2.347745,4.831645,1.59615,1.59615,5.0294,0.7478154545454546,1.88983,2.955655,3.84429,0.3558192307692308,1.9541266666666666,4.669251333333333,1.1133,3.00957,2.7271533333333333,3.09287,7.57552,2.4707433333333335,3.4286,1.9400266666666666,2.1695066666666665,4.273125,3.51522,3.187465,6.765055333333334,1.79217,3.100325,4.42908,6.9363,1.7097333333333333,2.1778233333333334,2.5417,1.39165,2.816405,1.9586099999999997,3.995665,3.72102,1.5038025,1.9551066666666665,1.9551066666666665,2.7869833333333336,5.50325,4.176271666666667,3.77387,4.757225,4.221605,3.02087,3.629135,4.070905,3.661945,4.689421666666667,4.396375,4.522715,0.8947269999999999,0.360965625,5.42465,3.902305,2.44441,8.19486,1.5843,4.8918,4.04162,0.31440166666666663,2.0756033333333335,1.3191866666666667,1.8794199999999999,1.2722866666666668,5.295762,2.97321,2.95162,5.283875,5.2359,4.626415,0.5905646153846154,1.902235,0.5995510000000001,5.531291666666666,1.589808,5.0388,2.1934475,3.3561587499999996,3.09383,4.094735,4.172345,4.682575,0.9775727272727273,2.93652,4.01604,1.838995,1.689495,3.57338,3.118165,3.25208,3.70939,5.340314285714285,4.559825,5.40255,2.9515933333333333,0.55387,3.534966666666667,3.990205,0.6898315384615384,4.01235,4.49271,3.90572,2.62907,2.624823333333333,5.8424,3.026895,3.468595,2.23558,3.93926,1.92057,5.0954,3.57595,0.6888446153846155,4.960835,3.86352,3.20374,3.715385,4.3507,2.71028,3.86696,0.632161,2.86294,3.9304699999999997,4.970495,3.3098333333333336,2.31776,3.550133333333333,2.31776,3.74632,2.9182,3.5324000000000004,1.7165833333333333,3.08864,2.31982,4.719085,3.04428,5.741383333333333,3.29467,3.119806666666667,3.17727,2.4781025,2.4781025,2.4781025,2.6888666666666663,0.9362866666666667,4.74498,2.40064,1.6750666666666667,3.6877333333333335,2.7877666666666667,3.3412333333333333,4.756025,5.3369,3.653405,2.565525,1.9349,4.061925,2.06306,2.6689566666666664,2.73378,3.609395,2.05535,4.06206,2.65187,1.692618,4.84641,4.133695,2.552725,3.59892,0.7399355555555556,2.375723333333333,4.664435,7.513695,5.0387,2.95745,2.72497,3.31351,3.854625,2.3543525,2.1921425,5.11515,2.33852,4.46181,4.31648,4.71991,8.769919999999999,4.037725,4.34115,3.378955,4.838715,4.4988,3.6313075,3.6313075,3.90526,4.018773333333333,4.399605,4.20537,4.251275,4.316835,3.90247,1.15128,4.25229,4.125425,5.5685,7.735155,5.1,3.6284193333333334,1.9260433333333333,1.5486783333333334,2.50814125,4.687335,3.62987,4.82008,3.3536,4.878395,4.978145,6.01845,4.95152,3.1616066666666662,4.063875,4.56577,5.19415,5.37995,3.981795,6.561375,4.53591,2.2919199999999997,4.98656,4.22203,4.1731,3.780075,4.942655,0.7704345454545455,4.96695,4.97737,1.2768057142857143,1.4779820000000001,5.2334,5.01765,8.878222000000001,5.49,5.71285,6.1984,2.89488,2.7477533333333333,5.17915,1.6670175,1.6670175,2.54955,1.5747833333333334,2.8817258333333333,3.6803333333333335,1.9380125,4.260632272727273,1.3114033333333335,1.88184,6.772030000000001,3.0969533333333334,3.566275,2.894305,4.059235,4.409305,3.1103233333333336,1.1298333333333332,3.937985,2.5654766666666666,3.917335,4.27318,3.754815,4.45594,4.77397,4.733045,3.74181,5.32525,6.57025,4.429235,3.18327,3.907395,1.9200225,1.9200225,3.831215,4.35251,2.268353333333333,2.85462,2.116165303030303,2.6682433333333333,1.7180133333333334,1.7180133333333334,4.477415,3.27046,2.108925,3.56649,2.727845,2.87395,1.2316825,1.346411111111111,2.696175,0.47956736842105263,0.8573655555555555,2.46569,4.398865,0.42981545454545456,4.23038,1.89603,5.4088,3.33213,7.291915,4.208735,5.325753333333333,5.01685,5.08885,4.084795,1.829745,1.874398,5.0121,2.834815,3.83149,1.2317466666666668,4.33006,4.590245,2.810945,2.680925,3.34844,4.60364,3.663525,3.70369,3.86056,3.517385,3.27817,3.802,1.100982857142857,2.222815,2.1705,2.63195,4.37243,7.32509,1.067768,1.50513,1.50513,2.00736,3.845825,2.70525,3.026905,5.201325,2.879303333333333,1.174235,1.174235,1.174235,2.859895,3.2118089999999997,4.57073,3.15861,4.19232,3.433455,3.721255,2.935265,3.1728474999999996,3.5605,4.25180375,2.4302875,1.1659599999999999,3.004875,2.4302875,3.4292,1.4011666666666667,1.8948166666666666,1.670265,5.472042,2.53418,5.826312,5.472042,3.2921319999999996,1.85473,1.85473,2.68825,5.1889,1.85473,2.04666,5.75447,2.28218,2.6165,4.87287,3.475815,4.34728,1.92968,3.161255,4.78762,1.9127266666666667,2.1368,3.79703,1.92968,2.48073,1.906635,5.80459,2.5611,1.093098,2.460105,3.11006,3.4119713333333332,1.99486,2.062548,3.7578,1.9581313333333332,1.764505,3.14347,2.21612,3.25247,3.7046,2.318843333333333,2.736855,2.266845,6.3951,2.338045,2.782515,3.24177,3.24177,8.7263,1.01645,2.93298,2.49795,2.972265,2.28725,1.39836,1.39836,2.93442,1.89783,6.135755,2.302295,3.33631,2.967185,6.2279,2.674115,2.47598,5.919625,5.919625,2.4322,1.51399,1.3156625,1.3156625,1.51399,2.0180333333333333,1.4435433333333334,1.1569399999999999,1.6324966666666667,1.71476,3.79584,1.753775,3.11662,2.786605,3.01322,2.71448,2.753555,2.31775,3.3330408333333335,3.3330408333333335,6.02655,2.37712,2.962185,2.578795,3.500225,2.356865,2.670765,2.4921,5.40031,1.758395,1.487271,1.2812043333333332,2.150279333333333,5.32121,3.937786,3.31959,3.369495,1.68408,1.68408,1.68408,5.02136,2.4392,1.1569399999999999,3.083125,3.373975,1.302725,5.2873149999999995,3.1469300000000002,6.14236,3.19636,1.679655,3.13733,2.8598733333333333,2.246495,3.279015,3.12943,3.19369,1.573115,2.66969,2.54686,3.153225,5.02711,1.828675,3.138205,2.56336,5.45068,4.59274,1.8793,2.270025,5.56868,4.95228,5.33411,5.13029,0.919284,0.919284,2.4563889999999997,2.4563889999999997,0.689854,4.83058,2.81721,5.40203,4.371,4.8372,2.02727,4.100693333333334,4.100693333333334,2.339455,3.279285,3.34293,1.14135,4.69371,3.12264,3.143585,2.713385,4.64998,2.34652,2.34666,3.12258,2.96332,2.88749,5.12114,2.576595,1.921215,3.575835,5.44116,5.61775,4.45888,2.552035,3.45617,2.473645,5.14867,2.53995,3.07656,1.98447,6.8475,3.97253,2.103095,2.583705,2.46798,4.81817,2.231235,2.75931,2.362975,7.37576,4.95526,3.029035,2.176625,2.311635,6.40663,2.85903,3.358055,5.60148,2.732325,2.943725,2.486255,2.871525,1.8083099999999999,1.80866,1.69794,1.6048933333333333,1.7746433333333334,2.0073,1.529755,2.228153333333333,1.74722,1.8083099999999999,3.81942,3.9549,2.114825,1.63093,1.63093,4.157243333333334,4.157243333333334,3.0965166666666666,3.0965166666666666,2.60968,2.07733,1.75137,3.52612,2.15013,2.15013,2.4438975,2.4438975,2.95256,2.04835,4.50174,2.247585,3.218775,1.9951833333333333,1.9951833333333333,1.634865,3.75457,4.96881,1.4011666666666667,4.02564,2.318843333333333,2.221025,4.26231,3.142535,1.86739,2.3044,6.8285,2.147665,6.09775,2.979155,3.31098,3.04101,2.561205,6.24648,3.06445,2.102195,2.610294615384616,2.609765,4.5476,3.461135,1.5119719999999999,1.5119719999999999,3.51934,4.95745,4.41702,4.91938,2.60255,2.9722,1.78249,2.89529,1.60937,2.60387,1.79022,0.74391,0.74391,0.74391,1.9310025,5.05767,1.9310025,2.280635,3.426035,1.666705,2.09279,4.12109,3.47853,4.89152,1.60856,4.81342,1.60856,1.60856,2.173085,1.943035,2.41603,5.7756,2.41603,2.33064,3.56184,2.00413,1.729975,2.731095,3.05176,3.363150833333333,3.137116666666667,3.99465,1.3811633333333333,4.89039,0.7218281818181818,5.1705,4.748022499999999,2.5878699999999997,2.5878699999999997,0.7084145454545454,3.7086333333333332,2.695116666666667,5.46285,4.857115,3.870935,5.48715,4.39555,4.248535,4.71694,4.763195,4.35634,3.68255,3.880335,4.87004,5.2386,3.325745,3.34222,4.107925,2.62913,1.4884499999999998,4.1495,4.135015,3.27415,1.7186857142857142,3.83627,4.03577,6.2143825,1.1255325,4.508195,4.290655,2.11457,1.92321,3.233045,3.56029,1.639825,1.5119719999999999,3.72349,3.573845,2.61281,4.6373,3.074835,1.10392,2.8680833333333333,1.2133214285714284,2.96781,1.8948733333333332,3.3549,1.819175,2.6462666666666665,4.382685,3.31532,4.4808,3.27193,2.2703425,4.68306,4.07627,3.036045,4.625735,4.29717,2.7470833333333338,6.1141,4.565755,3.1097399999999995,2.687053333333333,2.42954,2.9786533333333334,3.1933733333333336,2.8365833333333335,4.68604,4.116205,3.813895,2.3983633333333336,2.5917600000000003,2.3348999999999998,2.8036600000000003,2.4676233333333335,2.3054900000000003,2.22945,1.7566375,1.2862125,3.1080266666666665,1.11893,1.768345,1.7767125,2.77645,1.58392,1.93745,4.5222,5.4542,2.11157,4.165905,5.65485,7.357968333333334,2.08015,1.5587680000000002,6.50245,4.12549,4.341065,4.03724,3.845095,2.01474,3.423635,2.652825,2.94472,4.558445,0.6983991666666666,4.11159,1.9664933333333332,0.8049463636363636,5.07325,4.583445,3.885615,1.8760989285714285,4.51501,3.65512,2.61825,2.4004366666666668,2.5050733333333333,2.1174033333333333,0.599128,2.9026599999999996,2.981025,4.853005,2.618875,1.8695375,4.414165,1.01056,1.7740833333333335,1.7740833333333335,2.685835,1.7740833333333335,4.289885,2.745885,4.94636,4.244095,5.90495,13.207031666666667,3.111076666666667,5.09995,2.68007,4.489525,2.9134,6.731815,3.10821,4.593505,5.0264,3.69328,1.5350383333333333,4.763905,2.85444,2.8179200000000004,1.1506333333333334,2.13448,3.458805,7.335616666666667,4.476165,2.5334666666666665,4.508595,3.3887,4.42857,5.09075,4.3809,2.61431,2.83947,4.10352,5.7453,2.50681,5.0782,2.1722525,2.1722525,3.143775,4.952415,1.12516,4.242907333333333,2.4901,3.386425,2.6395933333333335,2.36781,2.72175,2.29921,0.7049414285714286,3.50291,2.6291733333333336,5.0532,4.15796,0.2459140625,5.3883,4.682675,3.8765,7.18541,3.4177666666666666,2.9419966666666664,2.326023333333333,3.2284466666666667,3.4210333333333334,1.4311466666666668,2.908193333333333,3.0497433333333333,1.4787866666666665,3.401733333333333,3.22857,2.92879,3.15049,1.370955,4.271115,2.14051,5.2914,4.362895,3.592585,1.58309,2.5136533333333335,1.25688,1.79646,1.25688,4.95554,3.6033000000000004,1.670044,2.3709275,3.844645,3.68232,2.96947,3.76995,0.342659,1.5255104166666669,4.028895,4.083755,5.02595,2.02104,2.9246466666666664,3.12045,3.2700366666666665,2.55515,3.166385,4.56362,2.068525,2.23564,2.81613,2.8415266666666668,2.739466666666667,4.29624,2.13774,4.357005,3.7850975,5.75485,7.7853225,0.7210066666666667,0.845762,4.10124,6.875344999999999,1.651042,3.80427,1.396575,1.396575,3.42578,0.4326588888888889,3.82,4.22047,2.4579,3.845935,3.163335,2.62106,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,2.368905,3.67874,5.000773333333333,3.3650583333333333,4.3226325,6.4450545833333335,3.23731,2.1441333333333334,0.9901983333333333,3.52282,0.70987625,4.845795833333334,2.7016625,3.416725,0.70987625,2.492855,2.86224,1.0471825,4.45666625,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,5.0289,1.74501,4.23985,4.63294,1.9420179999999998,4.34062,4.48744,5.42535,5.132334999999999,3.9236514285714286,3.184435,4.5317,2.421155,4.64757,4.829625,0.783,1.6481857142857144,1.4538714285714285,3.8623,3.8623,2.996325,3.73791,5.19975,4.145625,4.61491,3.4576,2.2630733333333333,0.5017628571428572,4.158725,2.93931,2.67811,4.320165,3.23413,3.18337,4.98128,4.184125,6.6467575,4.35693,5.08485,5.34545,4.41372,1.2802971428571428,3.204985,4.554255333333334,34.536113100288595,1.3138933333333334,4.347845,3.897925,4.60321,4.232655,4.15252,5.36805,0.4123047619047619,4.84134,4.25592,2.060255,1.94881,3.81223,1.6434,2.610305,2.3462,1.6917125,2.86745,2.551676666666667,3.25537,4.18442,0.63609,4.336265,3.71525,0.38323684210526315,2.576513333333333,2.91379,2.618235,3.815485,1.763265,4.61692,3.84749,3.123405,5.03105,3.179245,4.39158,2.88476,3.729975,2.1800725,4.554255333333334,3.72709,4.369325,2.87587,1.744996,4.99105,4.60897,6.840038333333333,3.42474,4.454355,6.4536175,5.121067,2.2878675,4.911575,6.861597499999999,7.341716,2.54665,2.527065,5.1827,5.685103333333334,4.477975,3.831605,5.548575,2.517725,2.156105,2.017935,59.20640550036243,5.63485,4.139045,2.454975,1.0501099999999999,3.3747000000000003,2.9881533333333334,3.4539000000000004,0.99154,4.856875,0.7908577777777778,7.946556428571428,2.06306,3.3754000000000004,1.8521519999999998,2.655415,2.37875,3.1550499999999997,2.40866,2.292386666666667,3.30458,1.4844266666666668,5.285705833333333,3.862033333333333,1.4236725,2.4084,1.3751266666666666,1.4331,7.18388,5.50375,3.205905,4.939815,5.38293,1.4970285714285716,3.3811999999999998,3.69867,1.6088475,5.5232,3.545525,3.982535,2.2055075,3.0153624999999997,3.779533333333333,3.794775,5.3318,4.5802,4.357355,2.2444825,3.79759,4.4552000000000005,3.0157066666666665,1.631612,4.49565,3.4468,4.051635,4.80246,3.98749,4.094855,4.819315,4.21951,4.182565,4.608815,4.51307,2.9855699999999996,3.845305,4.471565,3.18491,4.183225,3.71032,1.5893525,1.5893525,4.49639,4.636945,5.35655,4.47,4.5932,3.3935333333333335,2.834055,4.24748,5.8357,0.7991345454545455,5.32165,6.837702500000001,5.5755,5.7483,1.1498333333333333,3.113385,0.8901483333333333,0.8901483333333333,0.8901483333333333,3.57359,3.3401333333333336,2.77538,3.3529666666666667,0.9125030000000001,4.965605,5.04245,3.082295,1.54021,2.1729475,4.51781,3.76037,3.819375,3.103564,5.4995,5.0288,2.5525266666666666,4.51704,6.8217,2.32498,4.10412,3.627125,3.075765,4.69123,4.330305,4.873625,5.57935,3.70418,3.686765555555555,1.8618333333333332,1.8618333333333332,0.7080463636363636,8.821364,2.069005,6.1033,5.27015,4.46423,4.292085,3.759505,3.0632116666666667,4.70885,7.5434175,5.886783333333334,2.28279,4.46711,1.0996700000000001,3.62908,1.9639966666666666,0.9295111111111112,1.2014714285714285,2.815303333333333,3.1924566666666667,2.807453333333333,1.2912257142857142,2.75892,3.158023333333333,0.9919544444444445,2.9538766666666665,3.2271633333333334,1.621454,1.646512,3.3493,3.1242199999999998,3.1588433333333334,2.46515,1.593898,4.44088,4.81822,3.77556,4.51678,4.793955,3.434025,4.689855,5.84775,4.58163,4.12299,4.223385,12.670491666666667,7.929740000000001,2.8874033333333333,3.630665,2.0552766666666664,3.719585,3.11467,4.50035,1.08183,4.283165,4.53852,1.219115,3.47147,2.776746666666667,4.232655,4.136105,3.709065,6.59115,7.128973333333333,3.903175,1.5286283333333335,1.5286283333333335,1.5286283333333335,4.72306,1.3154516666666667,1.374625,0.4738205555555555,4.396426666666667,3.00853,4.27259,1.01359,1.15729625,4.279145,4.367915,3.8839,17.18063498809524,4.236135,4.42736,6.253035000000001,2.7285166666666663,3.80733,3.678185,0.9178366666666666,1.493675,4.556105,3.997235,4.4361,3.99218,4.70773,4.21137,2.726992444444444,3.32438,5.3569,0.6116349999999999,5.1366,2.39986,4.138655,5.3339,3.445233333333333,2.533603333333333,3.845553333333333,1.5172866666666665,4.364985,6.56495,2.6311966666666664,2.33962,4.06272,4.5018,4.74438,4.01878,3.54493,3.96925,4.770105,4.668375,3.761065,4.96602,3.833805,1.1116785714285713,1.6353325,6.5292604999999995,5.25485,4.37256,5.1862,2.437405,2.8976166666666665,2.769633333333333,5.083836666666667,2.0373325,2.072025,3.06192,3.13335,2.9716299999999998,4.602445,3.807065,5.2138,1.1567925,4.479565,0.889335,4.00124,3.421375,1.60351,4.646705,0.9342155555555556,4.645265,5.1226,4.75355,4.055325,3.646323333333333,3.79798,2.8351866666666665,5.42305,4.58694,3.0411035,3.891485,2.37651,2.607635,1.95025,2.621375,3.61021,4.930535,1.07556625,4.3886400000000005,1.302225,3.21548,1.5697633333333334,1.07556625,0.2128783783783784,3.978615,2.972005,2.254786666666667,1.7869033333333333,2.82349,1.0731925,3.45786,3.373185,4.85487,2.5840333333333336,6.17965,7.299845,2.995573333333333,3.3389,2.6472666666666664,0.926755,2.26816,6.15505,4.83672,4.823175,4.690895,2.1233033333333333,1.5601900000000002,3.8033275,1.595075,2.2829325,1.65037,1.58924,1.6192025,1.9448775,2.022665,1.899795,1.9914125,1.3148185714285714,1.5015425,1.902435,2.48107,1.77016,2.34091,0.5351086666666667,1.7201119999999999,3.2477766666666668,3.202976666666667,1.7696275,1.8955033333333333,1.6190825,3.97023,2.18193,2.86109,2.837315,3.576025,4.840715,2.3650466666666667,4.33332,1.7726133088235296,4.35947125,22.46018,4.609733333333333,4.72361,4.42395,3.29719,3.80007,4.77796,2.90576,4.31497,3.28539,0.73972375,3.122215,5.10545,3.824135,4.086785,1.7436533333333333,2.18506,2.3095433333333335,2.19018,1.3519428571428571,3.2824833333333334,5.21545,4.127795,3.28284,4.13562,5.3259,4.33279,5.5144,1.4043625,3.526655,4.157975,4.70419,1.514466,2.7047833333333333,1.8277649999999999,1.8277649999999999,3.618455,4.551245,2.777336666666667,3.1561233333333334,4.432965,3.815215,6.4699975,3.91101,2.21949,1.493675,3.99876,4.1846,3.107886666666667,2.2272612698412697,2.2272612698412697,3.3031333333333333,4.479315,4.04515,5.232471666666667,3.76264,3.626859777777778,0.6236677777777778,0.6236677777777778,0.6236677777777778,3.789275,3.73924,4.307083333333333,5.0423,1.5646425,5.66565,4.51865,4.772105,4.09439,5.26425,2.67794,1.6167285714285715,5.32615,5.3001,0.46228714285714284,4.266033333333334,5.36585,1.5921816666666666,5.6153,5.4191,4.651355,4.072375,3.757885,2.77447,4.543375,1.6550799999999999,4.351805,1.5699249999999998,4.176425,5.9641,1.16886875,3.133525,7.32117,4.046475,3.8053666666666666,2.27604,4.4665,5.83465,3.7927,6.205733333333333,4.63835,2.2165233333333334,3.0808233333333335,2.85496,2.9543966666666663,3.0978366666666663,1.8297866666666665,4.59544,0.577515,1.8422025,1.8422025,3.061185,6.18235,2.357775,3.04033,4.55168,4.62913,4.277935,1.4288333333333334,5.486494470238095,4.42345,5.48165,3.690325,4.391455,3.878745,0.51271,2.4342194285714287,1.038145,0.51271,4.10327,0.83983,4.25357,3.983715,6.851108,2.16601,1.0078025,1.1123319999999999,2.21637,2.9673766666666666,1.4945833333333332,2.4211133333333335,3.250275,3.278005,2.0723733333333336,2.32391,4.46867,3.34346,4.03038,5.5008,3.379585,4.75889,6.7699300000000004,4.67819,3.403135,4.427775,3.6753,4.13057,5.14485,6.5703025,5.5469,2.6171666666666664,1.01684,4.105275,4.021175,4.31102,5.04905,3.866295,4.78301,3.0304699999999998,2.6466866666666666,3.1798933333333337,2.680426666666667,2.68666,2.9121166666666665,3.364966666666667,2.648216666666667,4.190835,5.16425,4.531235,5.689,2.665906666666667,3.27518,2.819275,0.7168214285714286,4.41357,4.425005,4.564465,3.1452333333333335,5.803416666666667,3.722305,4.32192,4.588415,0.6343576923076923,0.5639907142857143,4.49334,2.8048535,3.63877,4.483715,4.563745,1.661222,5.395,4.489845,2.7882933333333333,2.570136666666667,2.2310025,2.0797379166666667,3.4057999999999997,3.5468666666666664,3.1858733333333333,2.99202,3.4795,2.70455,3.3959333333333332,3.980866666666667,4.750417499999999,0.5705375,0.5705375,0.5705375,3.5035725,3.8719333333333332,3.2029866666666664,2.819516666666667,2.5321766666666665,1.15128,3.3588666666666662,3.0074733333333334,2.058005,2.4956733333333334,2.42471,0.9125300000000001,2.9221766666666666,4.683515,9.889709,1.555415,0.5678639999999999,3.66787,0.5678639999999999,0.5678639999999999,0.5678639999999999,0.5678639999999999,2.1430975,4.315074,3.86923,5.60455,5.95055,2.7910233333333334,3.01069,3.1885174999999997,3.9959049999999996,5.50355,1.8389,2.3473866666666665,3.179926666666667,2.603823333333333,3.2248699999999997,4.75168,2.263456666666667,4.21227,1.1512444444444445,4.564965,5.51215,4.395925,0.86501,0.631695,0.631695,0.9942564782608696,1.8592664782608694,0.9942564782608696,0.9942564782608696,0.3992934782608696,0.3992934782608696,0.9942564782608696,1.4540366666666669,2.4597233333333333,2.932565,3.1801566666666665,2.6164133333333335,2.5872033333333335,3.111963333333333,2.745096666666667,4.44791,3.49818,1.905005,2.26171,1.7723275,0.18770788107511044,0.18770788107511044,0.18770788107511044,0.18770788107511044,2.48097,2.77933,0.833346,5.6838,0.8140727272727273,1.7195900000000002,4.908549166666667,4.99748,3.2358,2.80421,4.51608,4.563295,1.8521166666666666,1.2066025,3.498855,4.513655,5.9492,2.463255,1.4380933333333334,1.8708633333333333,3.8323,1.4762766666666665,2.66286,3.1601766666666666,2.81447,4.35719,4.046785,3.0544,4.18761,2.4517433333333334,4.419965,5.195,4.053385,4.41238,4.755965,4.9216966666666675,4.192676666666666,3.2433937142857143,5.228888333333333,4.36712,4.91992,4.542835,4.771665,2.17015,3.07324,4.131685,4.93224,4.242155,3.96386,3.109005,3.157665,3.87781,2.48035,5.32595,3.764985,7.227074999999999,5.94235,5.8341,4.78822,1.373557142857143,1.01045,0.6399330769230769,1.7369379999999999,4.40237,5.2088,3.895335,1.6408840000000002,4.80087,2.873295,4.979615,5.18335,6.16413,4.05035,3.037355,1.7933299999999999,5.1872375,3.94501,3.146795,1.6884925,1.1681775,3.91974,3.178405,3.6146325,3.678685,2.1442,4.8578,1.6318833333333334,2.91869,2.388795,4.633705,3.695225,4.76641,2.168525,1.533485,5.18135,2.94908,8.91544,2.7018,5.09625,5.658,4.214745,4.86599,3.352365,3.604455,2.3867575,4.132245,5.635285,2.381485,4.80484,4.816065,7.206805,5.18945,3.890233333333333,4.46716,4.595765,3.34346,3.56404,5.0212,5.1475,2.4993325,3.1511066666666667,3.5503666666666667,2.286835,4.86024,4.46708,5.7212,4.946155,4.59298,5.04775,4.533065,5.564,0.5934338461538462,3.3417333333333334,1.2490828571428572,31.4301105525578,2.214665,4.392065,2.916215,4.354525,1.7314019999999999,2.4408533333333335,3.5052511904761907,1.6330711904761905,1.6330711904761905,1.6330711904761905,1.6330711904761905,1.87218,3.343405,0.3863211111111111,7.485227500000001,0.3863211111111111,4.94773,4.981335,2.114405,5.0009,2.71535,3.878096666666667,2.3076033333333332,2.263523333333333,2.71311,2.0937266666666665,0.6406292307692307,2.588016666666667,0.7338,2.888396666666667,2.201686666666667,2.3449619999999998,1.2017233333333335,2.3449619999999998,5.92905,7.669625,5.1739,4.51075,5.17795,5.88665,7.687443333333334,3.094085,1.8542375,1.8542375,2.36619,5.18165,3.792345,4.89859,6.162661666666667,4.40837,2.69869,4.47147,3.34047,3.25249,2.21391,0.942998,1.935455,4.732575,4.588035,5.2338988888888895,1.8948625,4.506525,1.460454,3.399115,1.442052,3.4192,3.4378333333333333,1.90147,2.8982666666666668,3.252276666666667,4.88509,0.6567261538461538,3.47313,3.5774000000000004,2.794,2.3060033333333334,4.28468,3.1851566666666664,2.2059866666666665,5.94071125,3.626135,4.825825,3.864485,3.549135,4.980465,5.0925,2.1007633333333335,6.10715,2.3431651666666666,2.052773333333333,3.14335,2.9983533333333336,3.5111333333333334,2.866495,1.8242766666666668,3.140539196969697,4.241005,3.4582725,2.3275836666666665,2.3275836666666665,2.52421,3.875925,3.94871,0.6484963636363636,2.925305,3.03438,8.24392,0.9290090909090908,4.351505,3.66413,5.50215,3.405675,3.874555,2.16823,3.72164,2.806425,6.28965,2.6606475,3.99069,2.55062,4.639915,2.4715433333333334,3.560425,3.761275,4.215585,5.1542829999999995,3.20494,1.998505,4.166655,2.4503233333333334,4.522455,4.79083,4.56619,4.48322,4.188455,2.89744,2.1183433333333332,2.8055,2.7301533333333334,2.88435,3.3137066666666666,2.7018750000000002,4.994503333333333,2.941073333333333,2.768886666666667,6.8005691666666666,5.18110875,4.0540975,3.3675333333333337,3.9893,4.038925,3.51915,2.3094175,4.3032225,5.31295,4.60143,1.5223699999999998,5.365,2.941333333333333,6.6942725,4.872585,8.294353888888889,4.018845,2.480455,2.252375,4.060755,5.744125,7.63692,4.94103,5.83791,3.930575,3.205525,4.022635,1.6984179999999998,4.438218,1.455855,3.72756,4.766965,3.352066666666667,0.8385333333333334,9.142978333333334,1.2511555555555556,1.7764925,2.328183333333333,1.8200733333333332,2.9095633333333333,1.3820033333333335,3.522095,3.42678,3.1518333333333337,4.308605,1.0610916666666668,4.66104,1.360775,2.4129476666666667,3.726905,4.156945,1.9633875,4.8658975,1.8844210000000001,7.63505,4.316965,2.74837,3.880175,3.303615,1.1787741666666667,7.32336,3.01199,3.359085,2.24762,3.99991,2.284145,3.262985,2.25917,3.9996,1.3590525,5.01935,3.02535,4.118985,0.87776,1.917365,3.796765,5.07545,5.268258749999999,1.324468,1.324468,5.94455,4.468655,4.330155,3.749515,3.444265,10.48985,4.587725,5.6676,4.01926,2.528,1.9803789080901177,0.3515775,0.17667870967741933,0.6018842652329749,1.0269171428571429,0.6296158525345622,0.17667870967741933,1.2222,0.42520555555555556,1.378494642857143,1.8240842652329747,2.22128,2.21624,2.13001,5.72055,6.8356449999999995,5.187,5.34405,4.35538,5.41695,1.1784700000000001,5.2297,4.11426,5.89085,5.4277,5.5979,5.88465,5.60555,5.5828,1.355005,1.5411714285714286,2.0324400000000002,5.972149,1.433794,5.2036,4.69098,7.006102916666666,5.07355,5.45795,4.47861,4.675165,2.53265,5.49355,5.61325,4.26361,5.09185,5.518034166666666,5.6595,3.87945375,4.175335,3.961766666666667,0.9968349999999999,3.6536333333333335,4.45407,1.41595,3.9053,5.0682,4.19309,5.27025,2.4370925,3.45985,2.5770833333333334,4.899475,2.772,3.78996,1.299425,3.299185,3.764965,4.613595,4.59175,3.30596,0.6727558333333333,6.02775,1.064015,3.603735,3.2608333333333337,3.7068,2.0351399999999997,3.79647,3.7077141025641027,3.7342333333333335,4.42592,14.575381690476192,5.114806666666667,2.39919,8.20731,1.56021,3.717385,2.73771,2.7857233333333333,2.3898766666666664,0.21585565217391306,3.012696666666667,4.82007,1.794904,2.3993366666666667,3.5837333333333334,1.8592725,2.3861733333333333,0.9012757142857143,3.22531,4.659985,4.25838,5.10805,0.4450571428571429,2.36435,4.40853,4.02886,5.75455,5.27955,4.709045,4.544225,0.5364800000000001,2.482133333333333,2.482133333333333,5.6033,4.38937,4.90718,2.4141925,3.9248999999999996,3.6138333333333335,4.80113,4.2469,5.509248333333333,4.850705,4.555735,5.20635,2.5705,2.21138,4.383605,4.24919,3.792555,3.46195,1.7527460000000001,4.243875,4.36418,3.73913,5.30125,3.903305,4.478315,0.663092,3.113575,0.6881166666666667,3.1601433333333335,3.20248,4.917615,19.101173809523807,4.22219,3.780635,2.8598733333333333,1.2489875,2.9062533333333334,2.5357933333333333,1.527006,2.44378,2.4865,4.54901,2.14852,4.483585,5.6499,2.1573625,4.713495,2.92094,4.342435,5.47855,5.63615,1.6514,1.864995,2.58956,4.914515,5.05585,1.179311111111111,5.57015,3.86282,5.27195,4.7101,1.6386133333333335,4.462135,3.551955,3.451775,5.32535,4.211945,3.01913,0.6097875,7.639390000000001,1.495228,0.2102911111111111,0.2102911111111111,0.2102911111111111,4.905085,4.03394,2.6360266666666665,4.49796,2.87282,4.43498,4.931880714285715,4.201781666666667,8.553133333333333,4.08838,7.360328333333333,0.880885,0.9679625,2.4061025,4.84811,4.38458,2.1257333333333333,5.525,5.53285,3.3416,3.303135,4.569325,2.3212733333333335,4.13391,5.193047,2.5369766666666664,2.839066666666667,3.2515633333333334,2.62201,6.08645,3.70238,0.7001942857142858,3.98553,3.8904,4.39657,4.761303333333333,4.80219,3.610165,5.2473,3.48899,13.813152291666666,5.03,6.7604162500000005,2.6835633333333333,6.786645,4.661375,4.22392,2.1544375,2.33863875,9.66533,2.1752733333333336,4.013766666666666,3.6808666666666667,3.754766666666667,2.62644,3.14039,2.1087575,2.066715,2.9037566666666668,1.868976,3.7171333333333334,2.4916266666666664,2.5757333333333334,3.2478933333333333,3.5767,2.30896,2.30896,2.5725933333333333,3.4277333333333337,3.3680333333333334,2.8371366666666664,2.9922,3.521266666666667,2.753833333333333,2.6937233333333332,3.3915333333333333,2.4095566666666666,2.3142025,3.7743333333333333,3.15054,1.75618,3.8836999999999997,2.6036366666666666,2.46636,2.83709,2.44106,3.153696666666667,5.6068,2.3207033333333333,3.8326333333333333,1.9023033333333332,10.378802,2.0863366666666665,1.84513,1.9862100000000003,1.1310444444444443,1.6799320000000002,4.418093333333333,2.694668,2.694668,1.698984,1.5418916666666667,3.6692566666666666,4.096738333333334,2.1553833333333334,1.5219950000000002,1.585094,4.162279333333333,3.0870599999999997,4.082433333333333,7.931416666666667,3.1320485714285717,2.4121333333333332,3.5313420496894414,4.206266666666667,2.3142025,3.1833633333333338,3.2561166666666668,3.049386666666667,3.428014166666667,0.8970875,3.431651,3.0692066666666666,2.7117799999999996,4.11982,3.32265,0.7156918181818182,1.9189945238095238,4.546285,2.555705,3.057893333333333,1.6260666666666665,1.6260666666666665,2.059525,3.8273666666666664,1.09704,2.28365,4.843396666666666,4.843396666666666,0.6424809523809524,6.414567,3.64491,4.361865,5.5581,1.2160457142857144,3.455966666666667,3.4965333333333333,5.695144166666667,6.985870333333333,3.1647966666666663,0.8213329999999999,2.8900166666666665,2.7230966666666667,3.2645546666666667,2.8628133333333334,2.6158533333333334,2.9035266666666666,2.407965,2.4970166666666667,0.8382927272727273,3.10549,4.516704857142857,1.3754883333333332,1.460942857142857,5.2148,2.49755,1.572675,4.572695,1.8241140000000002,3.480565,2.4820075,3.31095,8.621170833333334,4.8967125000000005,4.715775,5.33265,2.4658320000000002,0.7066939999999999,1.725922,7.174313333333333,1.7291633333333334,3.999625,3.91216,3.59725,20.721738666666667,3.0162633333333333,1.4198633333333335,1.0786775,3.14649,1.5469466666666667,3.8545040000000004,5.2616,3.4143304999999997,3.124973333333333,1.77236,1.3532633333333333,2.9267566666666665,0.557273125,3.254966666666667,3.6231333333333335,3.0726766666666667,2.571176,2.4945033333333333,2.6239133333333333,1.9861000000000002,3.1953133333333334,1.727274,3.3767333333333336,1.5705799999999999,3.67644,4.166465,2.503413333333333,4.630535,4.168635,4.27601,4.997855,4.82317,3.076833333333333,2.9075133333333336,2.680426666666667,1.2492642857142857,1.2492642857142857,1.2492642857142857,2.00546,3.0124999999999997,2.5766,2.51646,2.9016033333333335,1.461835,4.588805,4.56377,3.657415,6.471875000000001,3.579145,2.4749125,1.83065,1.0491,2.3388066666666667,3.659855,2.43333,2.6054533333333336,2.08197,2.556173333333333,2.50962,2.80815,2.7796766666666666,2.8427733333333336,2.6302166666666666,2.802326666666667,2.2815233333333333,2.0915,1.9411275,1.097565,3.0953700000000004,3.1817733333333336,1.9457875,3.84702,5.4399,3.143963333333333,2.606246923076923,5.636475,4.44031,4.683145,5.45235,5.28355,4.118285,6.780810000000001,1.23136625,4.202175,2.617015,4.99695,5.6572,3.43019,4.744815,2.41113,7.157275,2.312935,0.884775,8.30897,4.92743,6.0395015476190475,4.68508,2.96802625,1.880465,5.27145,4.105195,4.39401,5.2885,2.507935,4.27643,4.646355,1.7723275,4.152905,2.681575,1.390525,4.926695,0.651129411764706,4.231029166666667,3.862235,4.68041,3.239765,1.71323,3.517995,1.999215,1.2033125,3.178046666666667,3.4122333333333335,3.181596666666667,6.9227808974358975,1.652365,6.491793749999999,9.74901,6.543895,3.71679,1.349117142857143,3.1265699999999996,1.349117142857143,2.79433,2.1404,0.2874717647058823,1.1278305147058822,0.2874717647058823,0.2874717647058823,0.2874717647058823,1.1278305147058822,1.1278305147058822,0.2874717647058823,0.84035875,4.698065,3.490975,3.20824,3.200645,3.737385,2.972475,3.047083333333333,1.5906,7.261333333333333,2.508766666666667,3.95948,2.5418366666666667,1.0519818181818181,1.251525,4.34254,3.75747,1.0690844444444445,1.690444,0.6805618181818182,3.109822432900433,4.194065,5.1366,3.5418333333333334,5.773551666666667,0.6003276923076923,4.15996,3.249985,3.26409,2.8544933333333335,3.4507333333333334,2.45045,3.0235766666666666,2.6392366666666667,3.120975,3.670745,5.53955,5.0097,1.457544,4.51773,4.65504,3.070435,3.76235,3.229245,0.379258,5.19245,3.648905,3.296875,3.383692,4.64665,3.75342,1.832235,3.06137,3.984325,9.16254,5.1492,5.3202,4.35834,4.1432649999999995,0.88313,2.104685,1.949775,1.17691,1.7717733333333332,5.26315,5.3613,4.440435,4.19326,3.103564,2.5989733333333334,0.9513116666666667,4.55428,1.2356466666666666,1.1699033333333333,3.216335,3.56329,4.5406,1.2609125,2.6615733333333336,8.5862,3.091396666666667,3.01511,0.85913,4.280765,12.173996666666667,3.37821,4.04247,3.18828,3.71597,4.78048,5.0769,1.9507480000000001,4.278215,0.6407446153846154,4.70877,2.219135,2.2451025,2.2451025,3.3721666666666668,4.618895,1.6655116666666665,5.08075,1.6017714285714286,4.160095,2.6577783333333334,3.1662466666666664,4.69406,3.506145,3.402284,2.2428,2.6137765,2.6137765,11.295605,0.786132,3.84148,3.3784666666666667,2.10234,2.1898,0.96802,1.3658575,1.2036385714285716,2.018685,4.94731,2.67109,4.394895,2.12856,4.72142,4.247285,1.57542,2.04714,1.0231366666666666,5.31846975,1.9390875,2.13705,1.717934,1.703416,1.0786775,2.3382474999999996,3.397855,2.6400799999999998,3.1291266666666666,2.38914,2.59304,1.63743,2.97275,2.8256933333333336,1.4120799999999998,1.9124933333333332,3.04015,3.1390466666666668,2.4777533333333333,1.11067,2.5483733333333336,2.2128433333333333,2.56602,0.3518242105263158,0.4043191666666666,2.34314,2.2038933333333333,2.87489,3.16228,2.7724,4.819965,5.41,4.342835,4.728295,4.621875,4.01621,2.500436666666667,3.7305,0.6644936363636363,0.06796204545454546,5.99155,0.06796204545454546,3.51581,3.265155,5.7069,3.504515,6.0511,4.67483,2.16981,2.8173433333333335,1.3397233333333334,5.7612,5.2058,2.94176,4.68518,2.01367,4.018205,2.2012209782608694,3.1623866666666665,3.285503333333333,4.188115,4.552466666666667,3.27842,2.1047166666666666,2.1047166666666666,3.98113,7.64572,3.80533,2.11145,2.45211,4.18365,2.696525,4.95448,3.800395,1.1509888888888888,4.74068,2.8636166666666667,2.6154733333333335,4.29098,1.0162266666666666,2.292406666666667,3.95162,4.28439,5.05925,2.9354,3.14598,3.90721,3.839275,4.211855,5.4589,4.178855,3.3154455555555553,3.59491,3.361166666666667,2.834766666666667,2.549933333333333,3.447433333333333,4.54767,2.9373299999999998,4.5900075,4.86571,3.198785,4.80205,4.57036,3.58637,1.492522,1.3572525,4.059985,3.2310166666666666,1.5835866666666665,2.5160133333333334,3.271315,3.530366666666667,3.6441,2.8904866666666664,2.2389400000000004,12.934605777777778,1.8972166666666668,1.7444220000000001,5.1338,1.013554,3.0951299999999997,4.33573,5.0138,3.43741,0.9908044444444444,2.3127999999999997,2.5840333333333336,1.505662,5.55245,0.982215,0.982215,3.5033133333333333,1.5734966666666665,1.9298166666666667,2.1138175,3.370775,3.179355,2.26732,2.558755,3.54655,3.0818833333333333,3.2050366666666665,2.02752,6.0405,5.9271,3.630705,0.7026215384615385,3.495555,3.176105,0.8643681818181819,4.74003,3.04529,8.14774,4.316265,4.494395,3.582985,1.4749775,2.984325,5.0431,4.943035,5.15545,4.162005,4.23434,2.876285,3.549466666666667,3.549466666666667,4.97172,2.811558333333333,4.638735,1.75403,5.30403625,5.273721666666667,1.5921816666666666,5.01625,1.03142,4.85955,3.873045,5.6325,4.575935,3.98207,2.526485,2.408945,4.72893,4.36359,4.6895,4.351325,1.8893225,1.343178,4.330685,2.4406866666666667,5.44765,2.90752,3.40946,6.510575,4.087575,5.31215,5.50915,4.523955,4.441025,8.305045,3.32399,3.187095,9.82724,3.82843,0.6305464285714286,2.1113700183150184,5.2751,0.6462093333333333,5.02795,4.030505,4.96063,4.61706,3.47268,3.6845,4.38028,4.53045,2.1152725,0.6823492857142857,4.707275,4.412055,4.258945,4.22385,2.796673333333333,4.839415,3.254685,0.623598,3.72365,4.101,2.33619,2.8404366666666667,3.99965,2.1387525000000003,5.2897,4.85278,3.9606624999999998,3.294363333333333,5.709906666666667,5.709906666666667,8.649196666666667,2.01982,0.862725,0.862725,24.901796666666666,3.1412,8.429786666666667,0.31440166666666663,1.3191866666666667,3.363,1.0734400000000002,3.71088,3.877305,2.30301,2.30301,4.781065,4.794075,3.502805,2.707221666666667,2.707221666666667,3.50858,4.216245,4.573235,2.810283333333333,1.9664866666666667,2.46407,6.846707,2.112155,3.528215,2.4231833333333332,3.2927896428571426,3.2927896428571426,3.488933333333333,0.8679766666666667,2.550126666666667,1.6419233333333334,3.4187333333333334,2.976103333333333,3.051,2.66797,4.579175,2.346145,3.16315,5.997826000000001,1.4061400000000002,2.15235,3.0073,2.3534333333333333,3.866815,6.295133888888889,1.3155733333333333,3.901033333333333,2.410235,4.98865,6.57156,1.4179225,4.784599999999999,5.286502666666666,3.2978902857142858,4.6312,1.038327142857143,1.514466,3.229445,3.6552042857142855,1.4485183333333334,2.47243,1.6446675,1.5470840000000001,2.420035,3.37903,4.91924,1.2296583333333333,1.5593000000000001,2.9050333333333334,12.117460000000001,4.725453333333334,2.8498799999999997,1.1866128571428571,2.5954730952380953,0.9780614285714285,3.276096666666667,4.065486666666667,4.95028,3.26728,5.38625,1.46768,3.8049666666666666,4.0197,2.8041766666666668,3.76237,2.7731066666666666,0.9782333333333333,2.421203333333333,2.8147966666666666,5.78644,3.2311644285714287,2.461176666666667,0.70424,4.8918,3.6336666666666666,1.277768,5.913434166666667,2.2237675,2.05798,5.86785,1.3345,2.823096666666667,0.9878090909090909,2.9945833333333334,4.340255,3.1065066666666667,3.160106666666667,2.1771366666666667,2.2861466666666668,4.70609,4.764375,5.1172,1.721005,4.376105,3.705665,4.342186666666667,3.389304,2.6409966666666667,3.912431333333333,0.9172480000000001,2.6872719047619045,4.6716,2.70145,4.16990625,1.4145125,3.6596333333333333,1.957958,1.957958,7.121848333333333,3.2070333333333334,5.199498333333334,3.5628516666666665,1.8287833333333332,2.8643076190476187,4.679283333333333,6.020583333333334,8.287771666666668,4.971707,2.6145075,1.7193500000000002,2.1653021666666667,4.272303333333333,3.68453,1.516454,1.7896725,2.243816785714286,1.1865125,3.0690066666666667,19.117341666666665,3.634733333333333,2.81897,2.8950266666666664,2.9042833333333333,2.83469,1.4273333333333333,3.1868266666666667,3.2259433333333334,2.800466666666667,2.5601833333333333,5.677488,2.431296666666667,4.049434,2.53856,2.032654,1.85651,4.008365555555556,2.09822,4.372055,4.76483,3.87848,2.9048274999999997,3.2538066666666663,2.33709,3.3279333333333336,2.60235,3.995566666666667,3.3905999999999996,0.834049090909091,4.8956,2.61511,3.3091633333333337,2.8889433333333336,2.20802,2.2129362500000003,2.2129362500000003,3.5770045833333333,2.061099583333333,4.6251,4.44189,4.11185,4.494505,4.37791,4.67774,4.67774,3.910995,3.022403333333333,4.702645,2.64579,1.6870699999999998,2.62614,4.645535,4.102235,2.57195,3.7945,5.62599,3.9841333333333337,6.234712607142857,2.84894,0.9584699999999999,0.9584699999999999,3.318265,4.62869,3.711095,3.263658,2.3743766666666666,1.7891599999999999,1.6555133333333334,3.0756200000000002,6.531892000000001,1.47651,4.102725,3.6824999999999997,3.80305,5.05515,4.741045,4.950662541666667,3.4205666666666663,2.350955,4.740935,3.825855,2.039215,1.134736,4.249085,2.567975,5.2654950000000005,2.6975200000000004,2.66936,3.174855,3.740355,3.52508,4.765395,3.1359,4.542005,4.202805,4.4469,3.661885,3.39847,3.617885,4.191075,2.6245133333333333,4.863945,3.72581,4.681615,0.6385033333333333,2.236955,1.9405975,2.038225,1.862025,2.6351466666666665,2.5221833333333334,1.7715333333333334,5.25665,7.51498,1.8754233333333332,4.34355,4.80565,2.3873,5.959251666666667,4.200149166666667,4.91028,4.99542,7.023476666666666,2.2493733333333332,2.8109800000000003,2.01398,2.7045366666666664,1.75335,1.703925,3.90618,3.58916,4.97623,0.9996266666666666,2.985185,4.2779,2.34162,5.76225,3.588965,2.584685,3.729566666666667,3.2959,1.9556075,1.7746635,2.926675,2.841325,3.085225,2.003895,3.1839285714285714,3.1839285714285714,3.43145,3.2173,19.505205535714286,1.1366766666666666,4.895635,2.181495,1.91772,3.62651,4.14706,2.0507325,3.76101,4.383425,2.5025,2.5025,1.1776866666666665,2.402336666666667,2.9847133333333336,3.0897433333333333,4.344356666666667,4.19889,3.567633333333333,0.50908,3.464023333333333,2.0076233333333335,3.472005,4.50947,3.218825,3.81602,3.865455,4.58582,4.01967,1.9858775,3.06946,5.685103333333334,2.294735,3.93507,4.94772,2.166795,4.43671,5.26965,1.3669285714285715,1.870524,3.6717,0.8159614285714286,3.1832733333333336,3.77809,4.655825,4.875135,2.7037838888888888,8.037896666666667,2.8938966666666666,2.8908400000000003,0.4519276470588235,4.34534,5.197725952380952,2.859851904761905,5.6349,3.74332,2.4938402222222225,1.757066,5.18238325,4.4307,4.190715,1.80619,1.99765,4.553085,3.959433333333333,2.9548799999999997,1.7077125,4.3532416666666665,7.49381,2.58111,3.658545,3.453315,4.08684,1.3741542857142857,1.3741542857142857,3.1535166666666665,3.1456966666666664,4.600925,5.1184,5.99515,3.862155,2.650625,2.1533875,1.51882,1.3261114285714286,4.89151,6.0826575,5.35815,5.25885,4.487645,6.283564999999999,4.164705,2.8222966666666665,3.9386693333333334,2.3503333333333334,2.9794085,1.571682,4.68496,2.3107,4.337325,5.4361,4.088645,2.792526666666667,2.94908,1.7137571428571428,2.6621,4.1163,2.0350775,0.558276875,3.2212533333333333,2.8829,2.648216666666667,2.25873,2.10362,1.724146,0.6887763636363636,0.6887763636363636,3.4393999999999996,2.15473,2.4743,4.69232,5.88325,4.620815,3.91014,4.42492,4.43986,2.084541333333333,1.2356966666666667,3.34949,3.305965,0.940895,3.1382450000000004,2.80444,2.98435,2.18941,4.067575,2.67239,2.046203333333333,1.3534128571428572,3.598365,6.112775,3.823295,1.7251891071428571,5.03275,2.757745,2.54814,3.33242,2.812225,1.77547,1.0280375,3.85662,2.4431141666666667,2.1806033333333334,1.6060833333333333,2.2305800000000002,2.1848366666666665,2.4660266666666666,2.6477025,1.2285633333333335,1.9531766666666668,1.0649525,6.4092275,4.24556,4.62355,4.02565,4.18765,2.96642,1.7921178632478632,4.51208,4.672,2.620165,5.527,1.98707,4.43401,1.1284555555555555,4.16689,3.520315,1.74744,7.71509,3.61853,1.816285,1.8675425,1.926035,2.6172,3.13739,1.3713032467532464,3.3320966666666667,5.28535,4.40798,4.487855,6.03495,5.7131,4.483015,0.99390125,4.596855,4.51613,4.05134,4.90522,4.276543333333333,4.651125,5.56885,2.774305,1.1422433333333333,1.1422433333333333,5.2772,5.847063333333333,3.02742,2.9603533333333334,4.502635,4.51369,1.613876,4.0079,4.021905,3.56962,3.83086,3.0086600000000003,2.7156966666666666,4.707235,2.3692428750000003,10.923717264681397,1.9564933333333334,0.82128125,2.427706666666667,1.699795,2.150065,2.3391575,1.702376,3.2585466666666663,5.74585,5.30815,3.08318,1.5466233333333335,6.371489047619048,1.3062414285714286,3.00558,0.5119428571428571,4.059586666666667,5.584,3.74955,6.3841,13.473875,5.4921,3.25779,3.0770166666666667,4.5579,3.0635866666666662,5.11525,1.12757875,1.267195,0.6865218181818181,5.98575,4.013635,1.769498,4.598786666666667,5.3791,6.4454,4.930535,4.05272,4.390655,6.29785,3.82885,4.996335,3.91543,1.1296,4.197875,5.9107,4.27864,4.222865,5.17665,4.191275,1.20948,4.36219,3.907275,1.22567375,3.4730666666666665,3.0069266666666667,2.32978,2.761623333333333,2.433406666666667,3.3135033333333332,0.7108763636363636,3.457133333333333,2.7399533333333337,2.61463,2.62071,2.9819633333333333,1.824755,1.4438266666666666,2.4581075,2.1288325,2.1661975,3.335366666666667,2.8558966666666667,0.781698,2.5364400000000002,3.57686,4.675135,2.5106433333333333,3.647395,5.76175,5.5569,3.25042,3.885505,1.4538714285714285,4.10596,2.505575,3.910751666666667,2.7979837499999998,4.724275,4.826975,5.3228,3.68269,4.1639,0.861724,0.861724,2.2605675,1.6884275,4.761185,2.4718725,2.4718725,5.26255,5.66195,3.131825,1.1821566666666665,1.5115,5.86065,3.53148,3.2309666666666668,3.28089,2.970635,3.194905,3.2309666666666668,6.371945,3.24995,3.1672899999999995,2.789815,2.02729,3.047995,5.61975,3.368605,2.394235,3.551185,5.2712,5.08145,5.2170275,5.2170275,5.50285,4.356135,0.7631046153846154,4.36636,4.750275,2.946145,2.558035,10.5345,3.2649933333333334,4.877475,3.691835,3.5498333333333334,5.72405,2.489965,3.1797425,2.9924733333333333,3.5032666666666668,2.6662466666666664,1.8526420000000001,1.8526420000000001,3.56136,3.609035,3.96025,1.870384,1.850826,48.46956818181818,2.6128033333333334,0.8584181818181819,3.20478,1.719215,3.2736433333333337,2.8211933333333334,2.849883333333333,2.710775,2.8858366666666666,2.170853333333333,0.95495,4.65466,3.23283,3.42608,4.11284,5.1705,5.03725,5.15175,5.57275,5.58405,4.9653,5.76645,6.14692,4.959645,5.6866,2.0023375,3.7056,6.2704,5.51735,3.94942,4.016075,5.34835,2.675655,3.750095,4.4875,3.0967000000000002,3.684533333333333,1.64214,3.5659,1.341396,3.304585,3.797625,3.52732,6.5929375,4.30204,2.3548875,4.660915,3.736295,3.785575,1.18966125,3.037065,3.943075,4.303695833333333,1.2878325,5.04345,1.5439,6.1773,0.7279633333333333,4.220922666666667,10.547763333333332,4.355435,4.2699,4.02009,1.8890833333333334,4.416255,4.901085,2.900236666666667,4.43668,9.368959166666667,3.4365666666666663,2.4181133333333333,2.777503333333333,3.0503366666666665,2.8694699999999997,2.7230100833333335,1.8181200000000002,2.532783333333333,3.12706,2.68215,3.0198300000000002,3.37975,2.224413333333333,1.6482466666666669,4.623936,2.2433333333333336,2.52652,5.101848666666667,2.90936,1.18523625,1.960715,2.79733,5.673446428571429,2.6096,2.342127222222222,2.342127222222222,1.52812,1.474615,2.06996,1.7867159999999997,6.029925,4.23032,2.58535,2.9937733333333334,3.3751333333333338,2.1282525,0.5771866666666666,2.0445333333333333,1.9008575,0.679103076923077,3.8449,2.600425,2.55985,3.646145,4.1689758333333335,2.573046666666667,2.3081566666666666,1.4051683333333334,2.074505,3.40742,3.84007,4.1583775,2.7527899999999996,4.52954,3.988495,1.0744181818181817,8.669425,2.64026,3.273315,1.2952875,2.8990633333333338,2.36352,2.36352,2.36352,4.423595,5.7562,1.933645,5.19555,1.4340920000000001,5.665986666666667,1.6655200000000001,4.158965,4.12693,3.983605,4.49733,4.91701,1.84397,7.6901150000000005,4.540885,4.911715,3.27147,3.724433333333333,3.118673333333333,3.2651866666666667,3.869765,2.5266866666666665,4.469250714285715,4.3382266666666665,1.5258075,3.960175,1.5258075,3.230175,4.285030833333334,4.8935949999999995,4.285030833333334,1.7182633333333335,5.69,5.18535,4.54484,2.569593333333333,2.9984033333333335,4.16356,3.09884,4.234205,0.469715,3.176156666666667,3.099206666666667,5.508978333333333,4.767715,2.41752,4.09794,7.13415,3.53163,3.18531,2.756345,2.2388,4.331045,3.897505,4.69998,2.36836,3.97053,0.902321,5.03275,3.240915,4.251965,2.58287,3.06358,2.229696666666667,2.8069100000000002,2.7788500000000003,2.7980533333333333,3.81178,2.624925,2.624925,4.959045833333334,2.894305,4.73799,11.924525,0.9497488888888888,4.517935,2.2707200000000003,2.22409,3.1316400000000004,1.374625,7.496823833333333,3.6344999999999996,3.85536,3.6087283333333335,1.7091333333333332,3.7147666666666663,4.571611166666667,2.3318933333333334,0.442535,1.7733139999999998,1.64269,5.22115,2.661965,3.229995,3.7224150000000003,3.3593441666666664,2.45872125,5.00665,4.285265,3.98202,4.4459,2.11395,5.0714,2.48335,6.022766666666667,3.035515,4.6723,5.2055,4.29542,4.56009,1.97448,3.75302,3.694585,2.6896799999999996,3.32735,2.712315,3.124335,3.626235,3.692205,2.7556133333333332,4.80859,1.9368999999999998,3.798815,2.77308,4.040375,3.780875,3.82528,5.12595,2.761775,4.160935,3.203565,3.99219,1.9123533333333331,2.077465,2.910315,2.28928,0.8525683333333333,4.3386,1.95703,3.496375,2.639245,4.13271,3.277155,2.68377,3.161415,4.28349,4.704302,4.06245,3.101025,1.3795233333333332,3.94282,2.44439,1.0041044444444445,5.27235,9.0596,3.29286,3.584255,4.972,4.97049,4.336385,1.94711,3.97818,3.910045,3.25521,3.144195,3.375805,0.63710125,1.3407499999999999,5.9555375,1.6365625,2.653975,5.127184,2.4370925,2.21316,2.650445,10.5065,4.397865,4.058525,3.69266,0.7598811111111111,3.31688,2.52286,3.808455,4.94244,6.28157,0.657235,3.31304,7.55004,3.0758,1.0243044444444445,5.0324725,4.84616,5.358,4.453675,5.0453,3.230715,2.7342066666666667,7.492155,0.868477,3.404625,4.261935,3.25914,3.821765,2.214295,4.28708,1.5097966666666667,4.354065,3.692915,3.990705,1.6729525,4.61035,4.539805,2.296305,2.11356,2.706,1.277768,4.03866,3.4143304999999997,1.7691620000000001,11.1533,5.60655,4.403705,4.695365,3.42852,4.196385,0.8972257142857142,4.42338,3.912435,5.0137,3.685285,2.43641,6.670817158119657,0.794035,0.794035,2.5584666666666664,0.9323928571428571,3.981495,2.8787000000000003,1.04605,1.7347400000000002,0.4123941666666667,7.1534825,0.97529,2.7332,3.524845,4.123615,2.68585,4.685595,5.01885,5.45796,2.813755,3.14703,2.293,4.502225,4.88962,4.339525,3.855635,3.69953,6.84395,4.195615,4.225588888888889,6.093805,3.55147,4.0545525,2.37128,4.0545525,7.037952,40.64216613311689,3.68718,3.4632,2.913116666666667,3.893875,4.70113,3.56642,3.38983,3.849755,4.169695,4.237695,1.7892833333333333,5.2475,2.64326,4.589155,5.03925,4.91623,2.2909200000000003,4.821115,3.760315,4.20303,1.536572,0.5973630769230769,1.7149819999999998,3.28208,3.13658,1.340975,3.1945533333333334,2.530893333333333,2.8064066666666663,2.807173333333333,3.1405966666666667,1.337082,2.724816666666667,3.772066666666667,1.9482096911196911,2.8257366666666663,3.006432,3.0704700000000003,2.6856833333333334,3.5368333333333335,1.08296,3.99295,3.996535,1.1043100000000001,1.1043100000000001,1.1043100000000001,1.1043100000000001,2.829606666666667,2.0537566666666667,2.44747,3.67765,4.021725,4.39256,4.52211,4.475315,5.73575,4.78498,2.21419,6.07095,3.60583,2.52028,3.557225,4.118095,4.14586,4.282745,0.8086076923076924,1.4163542857142857,1.5623033333333334,4.82095,5.5696,3.574005,4.01292,6.0298,2.20528,5.1778,1.4852699999999999,4.63471,5.39135,1.6500366666666666,5.3404,0.8018025,5.04165,1.427872,1.3233375,3.94059,4.47621,4.979195,5.571,5.1815,3.473915,1.438562,4.245085,1.5473175,3.905915,3.243195,2.4938402222222225,1.7592625,3.656545,1.2035283333333333,3.25178,4.328365,2.8801566666666667,5.59,122.50370485461761,0.46415999999999996,4.69688,2.5743633333333333,4.718005,4.447015,2.67403,1.53616,0.34207190476190474,2.765715,3.700415,5.50815,2.920115,3.855145,4.562765,4.68959,4.67842,8.1555,0.6636733333333333,4.1974,0.9590425,12.69286,2.86568,3.52751,0.9828677777777778,2.15914,2.646135,2.1519225,2.91551,3.540366666666667,2.2586166666666667,4.605465,2.9741966666666664,2.2784133333333334,2.1634433333333334,3.77614,4.564705,2.879665,3.62686,3.801305,3.78659,2.3821333333333334,3.77961,3.147185,2.995425,1.025298888888889,2.5705766666666667,4.605465,4.070925,5.21455,4.0516,3.952575,1.820015,10.607890000000001,5.93775,2.602265,3.3619,5.33855,0.60448,0.60448,4.43528,4.43528,4.04822,3.6797,1.7513252272727273,0.6081325,2.87331,4.336,4.275965,3.972475,3.8719,5.5624375,4.91839,2.1043775,4.61325,1.9394525,2.868965,5.2881175,1.769575,2.44777,0.5453557142857143,2.5065817142857143,2.5065817142857143,1.88987,3.84944,4.19273,5.19345,6.597869,2.51669,3.0236,1.92664,2.282745,4.216880833333333,3.899295,4.41452,2.22236,4.41452,5.52165,3.565815,5.9624,3.80244,2.3919433333333333,2.207806666666667,3.480066666666667,1.4278125,1.3590475,1.5068475,1.6134825,1.684915,2.7634,3.555633333333333,4.72071,2.420285,6.93135,2.745786666666667,4.41393,2.1041175,4.245355,3.063053333333333,2.9916199999999997,6.481843333333334,3.3296200000000002,4.884862666666666,3.1411366666666667,1.3777425,2.559563333333333,2.794753333333333,2.2452133333333335,4.44876,4.071175,4.835915,12.728927454164255,0.7546575,2.02490125,2.3957225,1.647006,1.2674014285714286,2.494965,2.4757,2.42608,2.44701,0.7202907692307693,2.025325,0.5376842105263158,4.902985,1.88223,4.838925,5.10535,2.6048,6.328732499999999,4.89071,7.95228,3.89848,2.93998,3.10705,4.559335,4.569695,3.058049714285714,4.60619,2.101705,2.101705,4.945105,4.140605,4.67853,3.93322,3.4508666666666667,4.05277,4.97256,4.233695,4.32958,5.05765,4.502035,4.37115,2.4963,4.842865,1.3568533333333335,4.840085,4.626265,2.46779,2.1694233333333335,4.56117,1.3310583333333332,4.72604,1.7390425,5.61885997826087,3.71342,3.972945,1.50173,3.332373333333333,3.332373333333333,12.14422,3.91045,4.09799,1.08561125,4.681173,2.556475,1.44691,2.573225,1.902415,2.106135,1.88983,3.14037,6.73075,1.6994925,5.1267,4.606318333333333,4.99066,2.2422475,2.733495,3.929365,4.743075,5.11495,3.87994,6.457388333333333,3.3025800000000003,2.2535366666666667,0.4223061111111111,3.759895,3.845865,3.4884,6.5870999999999995,2.5654600000000003,3.14466,1.2714533333333333,1.6022966666666667,0.558276875,1.7733139999999998,3.101925,1.5600133333333333,1.7644166666666665,0.6716875,1.3000859999999999,4.67006,2.2914975,0.6780376923076923,1.5480833333333335,1.6692575,1.8320180000000001,1.3751499999999999,2.2022825,1.6022966666666667,2.381485,1.3000859999999999,1.3000859999999999,0.6780376923076923,1.6384142857142856,2.58522,1.4485183333333334,2.88725,0.6780376923076923,2.6796,2.58522,1.29209,1.29209,1.29209,1.9049779999999998,1.2740875,0.6780376923076923,1.050624,1.2233125,1.1310444444444443,1.7841619999999998,2.580125,0.8385333333333334,2.26136,1.6876285714285715,0.6780376923076923,1.631426,1.6022966666666667,1.95085,1.9028166666666666,0.898292,1.95085,1.0814155555555556,2.296305,2.445635,2.652825,1.2233125,2.2764800000000003,1.2035283333333333,1.2035283333333333,0.9554181818181818,0.9554181818181818,0.9554181818181818,1.2714533333333333,1.6022966666666667,1.6876285714285715,1.5480833333333335,0.96647,1.9028166666666666,1.661808,1.75618,1.580152,1.2714533333333333,2.8498799999999997,12.049995,0.6716875,2.5167200000000003,1.8576333333333332,2.93,0.9780614285714285,0.9780614285714285,0.6780376923076923,1.346411111111111,1.724146,1.6876285714285715,1.7992380000000001,1.9028166666666666,1.179311111111111,1.179311111111111,1.7195900000000002,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,3.2671966666666665,1.0814155555555556,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.37855545454545453,56.396224373737375,1.445505,1.5322916666666666,1.6876285714285715,1.8576333333333332,0.96647,0.666464705882353,0.70424,0.70424,0.70424,0.70424,4.497466666666667,16.370936666666665,3.4232,0.6755472727272728,1.65741,1.65741,1.65741,0.6755472727272728,3.101925,0.6780376923076923,1.631426,1.7644166666666665,2.64846,1.0814155555555556,2.41752,1.0814155555555556,1.6594760000000002,1.6594760000000002,2.0527833333333336,2.0527833333333336,0.6780376923076923,2.00448,2.00448,0.9461181818181817,0.2102911111111111,3.101925,1.6927666666666665,2.410235,0.6755472727272728,0.6755472727272728,0.6755472727272728,0.6755472727272728,0.6755472727272728,1.8576333333333332,0.37855545454545453,1.0814155555555556,2.3613225,2.3613225,2.408945,3.2608333333333337,0.6424809523809524,0.6424809523809524,3.16046,3.9918,1.2160457142857144,3.0148466666666667,1.03423,2.6677,2.01982,1.0162266666666666,3.28036,2.02598,3.294363333333333,5.24905,2.479635,1.2639333333333334,4.522635,4.38086,2.6441433333333335,1.8033819999999998,2.212787076923077,4.592095,1.869176111111111,2.7119166666666668,2.8569166666666668,3.2791933333333336,2.505885,6.053026666666666,4.47479,0.2102911111111111,3.1884599999999996,4.54407,5.04045,4.260945,4.028535,4.92126,2.9386266666666665,1.8562360000000002,4.20618,4.53337,4.387175,4.318825,4.915755,3.161005,0.6581033333333334,6.684654999999999,1.2297183333333332,3.055448,4.95561,2.55831,2.55831,0.8125718181818182,1.7592625,3.073765,2.98965,4.600575,4.52905,4.972855,5.59165,1.1666485714285713,4.81445,5.1164,7.268856111111111,2.245153333333333,4.24021,4.610665,3.659935,4.567105,4.283325,4.967395,5.3602975,5.1322,5.058871666666667,3.543365,4.292126666666666,7.471204999999999,1.67652,1.9643702564102563,3.0123200000000003,1.7310800000000002,2.7034466666666668,1.8172300000000001,5.20905,3.5427999999999997,4.8034,2.0207,4.99716,3.764675,4.18204,4.34523,3.78469,2.4285633333333334,2.7569700000000004,2.7241366666666664,2.736306666666667,2.4513633333333336,1.6121566666666667,2.691966666666667,2.7975666666666665,2.0149,2.0149,3.84617,2.8234066666666666,1.96049,3.07849,2.0161366666666667,2.6761933333333334,3.018356666666667,2.6385866666666664,3.5333666666666663,5.2568,4.37237,4.030345,3.523754666666666,3.523754666666666,4.048965,3.3412,5.28855,4.412535,3.954905,3.33037,3.208205,7.3902,1.7902175,1.94649,3.38928,2.998345,1.2501633333333333,1.2501633333333333,3.50618,1.87739,3.8261466666666664,3.709465,3.381695,2.3750555,2.382466083333333,0.5228125,2.76791,4.056955,2.22105,2.44791,4.36996,1.3232466666666667,5.1402,1.2189933333333334,0.40872785714285714,0.5695710714285714,21.99368980654762,0.5695710714285714,0.40872785714285714,0.7304142857142857,11.077413333333332,2.91804,3.651695,4.76009,3.6685875,2.778805,4.464272857142857,2.30684,3.088245,3.38977,2.891935,4.04794,4.977035,3.50516,2.235435,3.268655,3.81274,3.86408,3.122925,1.0820210000000001,1.0820210000000001,1.0820210000000001,1.0820210000000001,3.32105,2.7409,3.1225,1.7111599999999998,1.1588566666666666,2.43628,3.660685,4.01717,2.703735,4.142025,2.502225,2.6577783333333334,3.927295,4.15325,1.0954283333333332,2.96115,1.04315,2.83248,2.087336666666667,3.6978000000000004,4.940325,2.4275800000000003,4.11226,4.407500000000001,0.7951367460317461,0.21847785714285714,0.21847785714285714,0.5766588888888889,0.21847785714285714,0.21847785714285714,0.21847785714285714,0.5766588888888889,4.53421,7.243398333333333,3.51482,0.61376,3.7644,7.193385,3.238065,3.3651999999999997,1.1133,4.828725,5.33005,4.500735,5.01735,1.6416799999999998,4.673925,2.151386666666667,2.2479906666666665,3.973,5.432,0.7649214285714285,0.7649214285714285,3.28131,2.8214433333333333,2.427135,3.24055,2.462455,4.50922,3.060665,1.75642,5.58715,5.52295,2.58854,1.77945,4.297725,3.446995,2.26764,3.47525,3.59784,1.7822475,1.1191016666666667,3.87014,3.389195,4.761303333333333,6.148621666666667,1.54606,3.833685,1.1413766666666667,2.5156199999999997,3.94532,3.92773,0.3905585714285714,4.03619,4.610855,0.9632970000000001,2.7435033333333334,7.591511666666667,5.8898,2.29632,6.79608,4.434775,3.6752,1.4437018333333334,5.369003333333334,3.4432333333333336,3.4246666666666665,3.4288666666666665,1.8263566666666666,1.8263566666666666,5.1820275,5.1820275,3.0914124999999997,3.0914124999999997,7.08534,3.0914124999999997,3.0914124999999997,3.745440277777778,3.993065,3.624145,3.5269916666666665,3.0023733333333333,5.04235,4.077075,3.1998599999999997,2.79795,4.661455,3.1687433333333335,2.8282066666666665,3.0631733333333333,2.311996666666667,2.683615,4.99657,7.495480000000001,7.2058675,4.28847,3.60323,3.924055,6.751958,5.2223,4.25457,4.30024,3.311605,2.5183133333333334,2.073785,2.007215,5.90555,5.61055,4.4469025,4.077015,2.25862,2.8797599999999997,7.146738333333333,1.9049779999999998,2.4836833333333335,3.5596333333333336,3.5596333333333336,3.25671,5.3012,0.7812633333333333,3.3874333333333335,3.824725,2.75916,10.0180175,4.21314,2.656363333333333,2.8689733333333334,5.46175,6.17495,2.88234,5.38025,2.4971200000000002,4.507625,2.7966145714285715,4.588795,5.1686,5.26555,1.0330783333333333,3.4715666666666665,1.2883375,2.54543,4.870694029411765,7.58099,2.9700233333333332,2.8241666666666667,6.893296666666666,1.702984,4.452615,5.5283,3.522115,3.61906,2.136136666666667,4.839895,2.5045900000000003,0.4906030769230769,5.30345,2.873385,3.6245333333333334,4.97998,5.0035,5.0535,7.086187499999999,5.0272,5.35715,6.86034,53.69849666666667,4.59998,4.01767,4.84609,6.06315,4.483115,4.412865,4.1902,4.680115,1.90263,4.149255,4.081285,4.497985,2.718335,5.04865,4.316835,1.6399979999999998,5.624,6.62765,7.130163333333333,5.23045,3.29185,4.764065,3.209965,3.219145,3.48123,4.187495,3.62819,5.7255,2.71105,1.0762571428571428,2.4294787500000004,0.5842259999999999,0.5842259999999999,3.363155,0.5842259999999999,2.47472875,2.47472875,3.2125487500000003,4.52833875,4.93707,2.4294787500000004,4.352831666666667,2.4133791666666666,1.3412566666666665,4.93147,2.016125,7.455218666666667,5.817216666666667,11.95309815909091,3.2933533333333336,2.825223333333333,0.23725424242424242,1.844156,2.7579,0.99521125,1.5962633333333331,2.62595,1.7972525,2.749475,0.618855,28.269174166666666,2.1159125,0.7889538461538461,2.6116333333333333,2.6116333333333333,0.4190872222222222,2.3968325,3.1638775,1.306965,1.8325025,1.589825,4.17415,2.813155,2.4166833333333333,2.310566666666667,1.1036599999999999,2.22294,1.7354833333333335,5.7536505,3.949745,6.671641666666667,2.372255,3.2154000000000003,0.9377166666666666,2.125665,4.9214,6.32373,3.671533333333333,2.5414033333333332,5.851280833333334,2.3709475,2.6194533333333334,4.165637500000001,1.0725866666666668,3.6001666666666665,2.2981166666666666,5.74725,4.889725,6.22405,3.654855,4.58738,4.58738,4.988845,2.674295,5.67265,2.6822733333333333,1.64425,5.4692,3.941725,6.3596639999999995,5.193,3.106586666666667,2.729423333333333,2.751715,1.330935714285714,4.964725,1.02654875,5.4371833333333335,4.70763,7.557715999999999,4.38157,4.503375,4.10662,8.422268333333335,5.00525,5.2549,1.11453,0.6963764285714286,4.7621,5.096,2.508205,3.22346,3.32905,4.356395,2.661915,4.98274,2.4243433333333333,4.951175,5.36165,4.15125,4.791755,4.177325,2.594595,7.008881499999999,3.563175,4.88372,3.34893,3.895605,5.673518333333334,0.6031700000000001,3.7698666666666667,1.69625,0.68764,3.771225,2.347,1.0873225,1.923305,6.11861,3.921485,2.34875,2.5339633333333333,2.57654,4.78724,3.62464,1.882661904761905,4.02076,2.572973333333333,3.4564,4.666765,5.119,3.050413333333333,3.810333333333333,3.7493,1.933716,7.27742,4.774145,3.89653,4.792565,2.26861,4.075255,4.645855,2.757485,4.10978,10.439675000000001,3.853705,4.354091666666666,4.723095,4.43172,2.404115,4.28735,4.25825,4.99758,3.1512966666666666,4.15641,1.6938875,2.72537,3.984575,3.115875,5.1804,1.6247440000000002,4.41426,3.0816733333333333,5.0444,3.1065,2.38555,4.179,4.344905,1.04638875,3.847055,2.583056666666667,4.520265333333334,1.7254079999999998,1.7090666666666667,1.1347125,5.4046,5.93075,5.77413,3.7144950000000003,2.514705,2.37353,2.02065,2.82969,1.5210233333333332,4.427765,2.783075,1.8990575,1.0880384615384615,20.47308678846154,2.82368,3.1044316666666667,4.900471666666666,3.92565641025641,1.49874,2.749106666666667,2.9802822727272726,1.196236,1.8718433333333333,3.45109,5.4184,3.7539483333333337,3.790415,5.5372,4.681595,7.164797500000001,5.014190833333333,5.06015,3.73319,2.4892233333333333,3.88701,3.962115,3.5912333333333333,4.02366,2.1050675,5.4202,9.32211,4.050145,2.840075,3.910185,0.54074375,3.4445,2.0163766666666665,2.39151,4.17584,3.726075,4.876485,3.648175,2.86672,2.2213475,1.609045,1.18692,1.4052499999999999,1.1864666666666668,4.126425,4.19646,4.23821,4.837725,7.15342,2.2819166666666666,1.408098,2.3611999999999997,7.891016666666667,3.328555,3.100325,3.11005,5.15155,3.6839075,3.45365,1.5627739999999999,4.311755,4.84656,4.190035,3.924495,3.585275,4.260825,4.49575,3.777875,4.57075,3.52445,2.17906,3.1556200000000003,3.45669,5.56265,2.822225,4.1773945,2.96436,2.849055,2.8055299999999996,2.2242,2.074943333333333,2.3942953333333334,2.3942953333333334,1.9007966666666667,2.8568033333333336,2.3060566666666666,2.2848833333333336,1.9215733333333331,4.03178,2.4306633333333334,3.063563333333333,2.7579833333333332,1.6717633333333335,4.242165,2.81543,3.31363,1.7003533333333334,5.0957,5.48005,4.920802777777777,2.65875,2.24575,2.956135,2.6159,2.06323,2.881575,1.9465725,2.567675,2.3578225,6.624463833333333,4.3144525,3.66835,0.559639375,4.11106,4.31327,4.121595,3.07874,3.814545,3.8244508333333336,5.69075,4.566165,3.671265,2.789025,2.0875546666666667,2.40014,1.665492,1.823866,1.358338,2.1124,1.69621,1.3346349999999998,4.083807142857143,0.6780376923076923,0.4968266666666667,2.1731000000000003,1.6141500000000002,1.501748,1.5474816666666669,2.4810406060606063,1.4558366666666667,1.703322,0.55877875,171.00505492317077,0.4973606666666667,1.902132,1.05982,1.1851225,2.08141,1.49459,2.05642,2.4320166666666667,2.1745975,6.80205,3.148075,3.757562380952381,1.9407233333333334,2.854525,1.246885,1.246885,6.01471,0.47759555555555555,2.2637075,3.4723333333333333,3.0169366666666666,0.7884172727272727,0.6429764705882353,1.2223589743589742,1.0818727272727273,2.579175,3.889825,2.25225,2.083455,2.3554233333333334,4.636814277777778,1.0676255555555556,4.544845,3.801535,3.577135,6.7761,1.8003033333333331,3.11499,3.08715,4.127328,2.40473,3.949775,3.610845,3.598385,5.030725,3.073195,5.87695,2.762895,2.54112,3.40193,1.988875,2.903035,3.244545,2.85142,1.71077,1.59947,2.18746,4.672605,5.881093333333333,3.277515,2.939385,1.406945,4.12643,3.472633333333333,3.5214,2.825315,25.109251834859588,2.1863599999999996,2.750526666666667,2.9446999999999997,3.3904333333333336,3.1659366666666666,6.07296,3.1204300000000003,2.6923366666666664,3.2227933333333336,3.3878333333333335,2.09285,3.32189,3.1130033333333333,3.2896300000000003,1.61283,1.7614990000000001,0.6033540000000001,2.2036633333333335,2.0896175,0.21675125,2.8224433333333336,3.240255,0.21675125,0.21675125,1.9264845833333333,0.21675125,0.21675125,0.21675125,0.21675125,3.0639533333333335,2.81306,0.5604192307692307,3.539800357142857,1.5988975,1.927966,5.12565,4.750417499999999,6.08961,2.239975,5.26185,2.24807,2.7159933333333335,1.4092500000000001,5.827960000000001,2.7438300000000004,6.1062625,0.948975,1.2561725,4.824985,4.69493,35.498840024558774,1.7310400000000001,1.3454366666666668,2.29348,2.2207875,0.9554181818181818,2.3589466666666667,2.634323333333333,2.73537,1.9472766666666665,2.4400366666666664,1.5968200000000001,3.0047433333333333,2.3798533333333336,2.3343433333333334,2.5053533333333333,2.41447,4.145945,2.4777066666666667,1.182197142857143,3.67826,4.06313,20.346611777777778,2.8747666666666665,3.2803400000000003,2.7097200000000004,0.861262,3.159722,1.6586731111111113,3.159722,2.54209,2.3782099999999997,3.0732733333333333,1.74309,1.8749875,4.411565,3.96603,5.18855,4.26625,1.635166,5.3196,1.624515,4.8383,4.050558666666666,5.02055,0.810150909090909,2.1947025,2.440835,3.1413599999999997,3.3034,0.98850125,4.57731,2.00584,1.9994066666666666,1.019862,1.019862,2.066126666666667,2.8841633333333334,4.632855,30.61151375,6.1576249999999995,1.90165,3.6197033333333337,0.3887173333333333,6.6850325,5.07345,2.5768766666666667,3.28871,5.65746,4.39749,1.23558375,4.24356,1.1949640000000001,3.511175,4.873705,4.768245,2.026215,3.088085,4.559755,2.35013,3.3930645,3.93038,1.2967366666666666,2.678310416666667,3.71371,4.79972,2.7526966666666666,2.7737166666666666,3.209516666666667,3.037645,3.94119,4.198255,4.0568,1.77471,6.05066,2.520365,1.7480740000000001,4.058245,5.39802,4.041005,3.441515,0.7701825,2.907125,3.58451,2.0517,4.781029666666667,2.765995,3.828035,2.879073333333333,3.2781833333333332,3.16354,3.241796666666667,3.5163333333333333,3.1913866666666664,4.565915,4.468915,4.17416,1.59639,4.42447,4.274415,1.84869,1.88063,1.73115,4.193092777777778,4.580335,5.364284895833333,3.996485,3.7574,3.57111,3.3995333333333337,1.5115566666666667,3.072695,2.895895,4.250795,4.724205,4.4411,4.685345,2.67843,1.83687,1.566935,1.3908575,3.47419,2.360885,2.145545,3.128145,4.568645,1.65706,5.1002,1.3949371428571429,1.722325,3.142285,3.562895,2.871825,3.545365,2.974325,1.86667,0.9585665263157894,3.23167,3.56666,4.99556,8.202153333333333,2.2832500000000002,2.9386166666666664,1.5598466666666668,2.7397266666666664,2.9336633333333335,1.297715,3.3372333333333333,2.6809833333333333,3.2076766666666665,4.113366666666667,3.467366666666667,7.039951666666667,3.0075633333333336,0.7539472727272727,2.0008500000000002,3.23929,3.160095,3.32892,3.4648333333333334,2.520455,3.6637,2.822735,1.835506,3.954485,2.874631111111111,3.65696,2.3365899999999997,4.651145,5.1843,4.923725,5.43165,4.128605,1.4297444444444443,5.17645,3.3943,2.83365,4.393765,2.7309866666666665,3.231116666666667,0.40745714285714285,0.40745714285714285,3.4249816666666666,5.44365,3.717675,3.13671,3.966865,3.50294,3.06983,4.798335,4.62822,1.013445,4.543795,2.991263333333333,4.642298333333333,3.0320466666666666,3.183158333333333,2.0145066666666667,3.334044642857143,2.727376666666667,2.95398,2.447223333333333,2.8136433333333333,2.112153333333333,23.41011608580369,5.99745,5.2758,4.35942,3.258905,5.0890925,3.23597,4.59707,4.54761,4.10996,4.659745,3.768565,2.6650566666666666,3.24371,2.9512366666666665,3.1558333333333337,2.8631166666666665,4.317,3.525705,5.283875,5.17515,4.084645,1.244106,1.751424,1.751424,3.99133,3.87013,2.751136666666667,2.51342,3.0724133333333334,4.67118,3.06172,8.306191666666667,3.345266666666667,2.9022666666666663,3.5756483333333335,4.633285,1.6507333333333334,6.2461025,2.480636666666667,2.89293,1.73214,3.83407,3.1515,6.82798,3.618225,2.471975,4.515425,4.28249,1.51989,2.63973,1.6602233333333334,7.9992935,4.01259,6.50727,2.2495925,4.123385,3.626055,4.046055,5.09845,3.748466666666667,3.748466666666667,2.0248775,4.37564,5.15935,2.38573,6.221614285714285,1.8403,5.7911,9.687250666666667,3.6090666666666666,5.278198000000001,2.31157,1.98741,0.679375,3.99238,2.68105,2.63455,3.9901135,2.555,2.29898,3.84333,5.14085,4.568725,3.9434,5.53635,4.23363,2.2859375,1.0339363636363637,2.94127,3.4489,2.82433,4.99872,3.8954,4.15854,3.04281,1.870524,4.74587,1.0161125,4.881215,0.9512844444444445,5.2156,3.334565,4.887765,5.282815,2.955165,3.095435,3.5419,2.6100566666666665,4.28273,3.802425,2.41138,5.49265,3.869555,6.316816666666666,5.3917,2.5391,3.577775,3.41639,5.448358333333333,1.84823,1.84823,2.8529633333333333,2.3413033333333333,2.6259033333333335,2.8979366666666664,0.8790509999999999,6.6113,3.64664,1.9825275,2.19613,2.553445,3.523625,2.73576,3.714165,4.112935,5.10075,5.3963,6.0625,5.9175,1.38565,4.38488,1.0732583333333332,2.46234,4.232833333333333,2.4258,2.964395,3.157355,4.427455,2.943575,0.45198,4.30738,4.135725,4.81352,3.44668,4.443655,5.7734,4.688045,3.811495,1.71128,4.685895,2.11062,4.412833333333333,4.412833333333333,6.4117,5.2084,5.6832,5.1733,2.57232,1.6507333333333334,4.655365,2.2573233333333333,1.6458300000000001,1.877235,4.31512,4.23771,4.222755,8.03008,1.7584666666666668,5.52395,1.3532716666666669,3.621555,5.81885,1.98462,4.52992,2.5629066666666667,4.461505,3.40848,4.778215,2.94176,4.182675,4.01461,6.6031,3.871905,4.04369,3.8954,5.236,4.027055,4.5317,3.710635,4.161265,8.097963333333333,3.356825,6.9452,3.071095,5.2438,6.601865454545454,4.745665,3.463385,1.9896175,5.46775,3.925575,0.7595966666666666,9.81785,6.2549,5.06605,2.9959249999999997,5.08535,2.828835,1.728214,3.87145,1.0954283333333332,5.3094,2.98824,4.69952,5.46485,4.60716,4.25415,2.2503800000000003,4.35652,5.4681,1.572975,7.172968333333333,3.05431,3.88342,5.12635,3.55708,2.1536,4.394545,4.13199,4.371785,2.8732633333333335,3.99206,3.718605,5.70745,5.02155,3.53526,1.9542475,1.9542475,7.021094999999999,1.5369285714285714,5.1285,4.134925,5.48185,3.644195,4.00647,5.0085,3.79343,0.8630116666666666,0.8630116666666666,0.8630116666666666,3.327645,3.231745,3.89155,4.356122222222222,2.961695,1.4797366666666667,4.98291,2.2824975,2.677705,4.17257,5.32495,1.4619,2.18762,5.41792,4.160125,2.659185,4.41287,1.4600425,1.9380125,3.2456066666666668,2.73498,5.6893,1.42037,1.6016020000000002,1.07320125,4.021105,3.440455,3.1056566666666665,3.1614966666666664,5.5079,1.7969460000000002,2.05658,3.0266,1.4824428571428572,4.56813,3.63303,2.631625,5.61675,5.55735,3.068775,5.06245,4.24018,3.40399,4.39075,4.244495,3.571605,6.56402,5.3005,1.8375566666666667,1.7330333333333332,3.401055,3.9959,3.996465,4.661875,3.2601833333333334,4.418235,4.737555,5.04315,2.8112033333333333,5.41195,4.16931,5.36335,6.59452,5.0082,0.7075336363636363,3.894065,3.9566383333333337,2.40889,3.875585,3.7683999999999997,5.81715,3.80307,4.041375,3.830525,4.51803,5.10115,4.86472,4.030085,4.447135,5.11685,4.257835,2.70348,2.784635,6.4905,4.115985,1.7096699999999998,3.381905,4.001600833333333,3.716905,5.3317,4.90148,2.51952,0.9097844444444445,4.210423939393939,6.2463049999999996,4.00158,4.877,3.515955,7.676613333333333,4.468105,3.2886966666666666,2.8450399999999996,3.686435,2.03598,3.31236,4.60154,2.5081625,4.11059,5.6593,1.4649225,4.96083,0.6886471428571428,4.078035,2.388805,5.62715,3.56957,0.7219133333333333,1.6296633333333332,3.763635,1.90322,3.186745,0.5941733333333333,5.38565,3.06443,1.513558,6.1289175,6.775,1.0012075,1.7937115000000001,1.2579179999999999,1.2579179999999999,1.2579179999999999,2.0539066666666668,3.185335,3.74761,3.047995,3.448575,5.16675,4.228055,1.989274,4.15125,5.6079,0.2717487804878049,3.676815,4.70954,5.9595,41.065428295454545,5.235025833333334,5.90185,13.024678666666667,5.34485,4.6531,7.58615,3.218825,4.277095,4.703515,5.50985,9.898505,4.77087,2.4001233333333336,2.842365,5.6502,3.89346,3.761465,4.46535,2.15816,4.805655,4.44511,7.087816,4.35711,5.02275,2.3218075,4.14149,0.54642375,1.4186783333333333,3.965775,6.1543,2.989375,1.2743733333333334,1.2743733333333334,3.866655,3.79675,4.273505,4.006665,2.2078,3.51946,4.17205,1.6483825,3.0801866666666666,1.7817519999999998,2.56264,4.24877,4.488335,2.4679025,4.366875,2.2250525,2.121885,3.61651,3.536985,4.00284,3.70299,6.364658666666667,2.5185286666666666,4.50183,0.7255781818181818,0.6488766666666667,3.81897,2.16062,9.0259,3.4232,5.017,1.6475625,4.424335,1.64032,4.24883,4.425155,2.6433233333333335,4.807605,6.30595,0.4077805,0.4077805,3.572533333333333,3.051353333333333,2.8167500000000003,3.92622,3.626305,4.58474,0.8644627272727273,10.989403333333334,9.4414,2.2022825,4.95685,4.69242,5.01935,3.34063,2.5731766666666664,2.05136,1.8948625,10.3349675,2.29358,2.7589,3.8741079999999997,5.5974,3.8741079999999997,2.88125,2.989943333333333,3.02417,0.7023509090909091,5.773551666666667,3.4086,2.6512333333333333,4.137535,9.03552,9.551715,4.48138,3.879125,4.53317,6.7470375,1.9896475,1.3588,26.769993333333332,3.721685,4.28757,0.939818,4.00448,4.23199,3.701315,4.12028,3.989825,5.794136666666667,3.2047333333333334,1.99847,0.6906823529411765,0.7714541666666667,5.2738,4.368745,1.6980666666666666,4.682545,0.8371416666666667,3.692066666666667,1.4081866666666667,4.185705,5.74495,1.99083,2.45675,2.432885,3.84815,3.12385,0.5202027777777778,4.36177,3.656225,2.5054333333333334,3.26439,5.0973,3.137786666666667,4.05002,3.12527,4.446045,9.14674,4.88067,6.344720000000001,2.616925,2.7241999999999997,4.183,4.1489675,4.04994,4.384645,3.673635,5.3881,1.14735625,3.1935308333333334,3.174538357142857,0.633618,1.751424,1.751424,5.5666,7.262951666666666,0.8509538461538462,4.92653,0.8895133333333334,2.8006266666666666,2.6734633333333337,2.4196070454545455,6.9255555555555555,2.4611533333333333,1.2040555555555554,2.53681,1.17723375,2.4131666666666667,3.145716666666667,3.1199583333333334,3.02193,2.57781,0.8895133333333334,4.42366,4.293625,5.9347,2.959095,4.838615,2.18186,5.7994,4.54553,4.362695,2.9327366666666665,3.227595,2.2130325,1.632525,4.160835,2.7279,4.112845,5.4786,1.830842,4.52464,2.7001833333333334,6.40233,3.489905,2.604855,0.8895133333333334,2.37547,3.25819,7.107330944444445,2.3957533333333334,1.3518560000000002,2.3957533333333334,0.5018874999999999,1.172526,3.46545,4.1804,1.8351475,3.62181,3.841786,0.650766,0.650766,0.650766,7.645054999999999,1.600524,0.7445209090909092,36.09426269264069,1.7552217777777779,0.6540277777777779,2.8815925,0.6540277777777779,3.875335,2.8533,2.307935,2.441593333333333,5.7541,5.34735,4.44401,2.293556666666667,0.8885914285714286,4.35556,3.1106233333333333,4.73159,1.0229700000000002,2.550175,2.550175,3.80432,4.440075,3.79302,4.71519,3.3537,4.40762,5.03955,1.632844,1.0993975,5.53895,5.9487,3.831125,0.67892,4.50821,4.117394166666667,0.79599625,4.701655,2.335485,4.46033,3.98296,1.8056757575757576,1.8056757575757576,4.783955,3.373805,0.8620622222222223,2.95903,3.12842,3.334255,4.026395,4.865645,0.50468,0.3008352941176471,0.3008352941176471,0.3008352941176471,0.8055152941176471,0.5792,0.677679,0.3008352941176471,0.3008352941176471,7.240905,0.3008352941176471,0.8055152941176471,3.619375,1.28914,4.617415,1.1569399999999999,0.6755238461538462,0.79599625,2.600445,2.568125,3.821125,2.956595,0.3008352941176471,0.3008352941176471,4.640585,3.727365,4.31098,2.6077,3.87048,1.55294,3.723495,0.677679,0.677679,4.761425,3.006405,2.766695,2.848665,4.478140333333333,0.9775069999999999,0.7455261538461537,10.100655,1.20837125,4.95073,4.07763,5.26,2.0456,0.38469086956521736,0.8750025,2.9887833333333336,3.169495,3.333025,4.571635,1.572276,6.17415,3.98716,5.4190625,4.515705,2.99586,2.9975566666666666,6.133265,2.9852433333333335,5.2358,4.2065,4.407500000000001,5.89175,0.5519686666666667,4.328115,3.1276200000000003,2.133296666666667,0.6503633333333334,4.23361,4.52583,3.862255,2.390475,2.248535,5.2265,2.677505,2.789675,0.976252,0.46068,3.953595,0.3430933333333333,0.7879954545454545,3.83965,2.80342,5.1048,2.651695,5.5122,4.252955,6.299653666666666,3.833075,3.507515,4.582405,1.5302975,4.8730525,1.992748,4.118565,2.414515,5.993416666666667,2.64835,1.0585499999999999,4.56165,6.934075,6.586270833333333,3.209633333333333,0.8801916666666667,2.7580500000000003,4.73216,4.02314,4.557485,4.597095,4.06424,4.98736,2.81742,4.1347,1.7266966666666665,2.24733,1.4039033333333333,4.03158,9.65426,4.47315,3.52919,5.7686,2.750395,4.25819,2.63841,3.1081046666666667,3.25621,3.977975,3.372685,3.45747,3.254675,5.4721,5.48585,5.17745,4.54929,4.788905,4.21704,4.521305,5.183,7.843775,0.9000877777777778,3.76945,4.513095,4.46351,5.08325,4.28426,3.63086,9.19712,2.4330066666666665,3.235065,5.74605,3.65907,4.31567,2.0047,1.7630575,2.70436,2.989786666666667,2.0991166666666667,2.979756666666667,3.92983,4.59577,3.96826,3.4213,4.681883333333333,3.426025,3.27541,3.9416775,5.0469,2.988,5.500575833333333,4.44639,3.729585,3.596035,8.34457,4.007015,3.564665,4.55984,4.957925,3.705325,8.13577,1.2318966666666666,2.213055,4.215565,2.660363333333333,2.660363333333333,1.96411,7.792153333333333,0.9324455555555556,3.692615,0.88982375,2.05658,4.470285,3.55236,3.99635,4.4161,2.8717466666666667,3.92394,4.112505,3.70717,4.3802,3.027715,2.760196666666667,4.61205,5.435934166666667,4.348095,4.74222,1.704852,1.66128,2.545246666666667,5.41245,2.1708575,1.7180533333333334,1.9625575,4.384235,5.04275,2.820945,2.552965,0.5134155555555555,2.15053,7.827405,3.21428,1.4160899999999998,0.84035875,1.1472133333333334,1.8076633333333334,2.0353125,0.736695,1.9686066666666668,4.2243355000000005,4.16462,5.31105,2.4007533333333333,2.0884275,7.220682500000001,2.830175,2.19475,2.19475,2.19475,6.412496666666668,2.1701633333333334,3.674565,2.43864,0.49207999999999996,1.11641,1.889825,5.384539999999999,0.44667833333333334,3.702375,3.915779166666667,4.93632,3.015651666666667,0.44667833333333334,3.015651666666667,1.06876875,1.2805659999999999,5.8567,4.354385,7.3792075,4.55145,5.1903,3.900395,4.20558,5.04175,4.238845,5.9274,3.691975,3.29191,5.34395,4.874965,4.089435,4.32792,5.807,1.3665966666666665,2.917923333333333,1.151615,2.33852,3.1188865277777778,1.4154865277777777,6.8597025,5.448358333333333,2.8379849999999998,4.936635,2.73752,4.77337,3.366585,4.551155,4.63863,9.405929166666667,5.8003,4.65198,2.0618375,2.68945,2.1101,0.54074375,2.118512,5.19595,4.97393,4.82868,4.429735,0.5198513333333333,1.992,1.37672,4.48346,0.8301923076923077,7.1423775,2.0420275,1.0446525,1.0446525,3.7235660000000004,1.9296700000000002,3.433866666666667,3.70454,4.722575,3.685495,3.685495,5.00065,5.5096799999999995,2.771513333333333,2.5610133333333334,3.3166700000000002,4.27297,1.885472,2.8441233333333336,5.55385,5.9237,4.788735,4.42552,3.8524833333333333,4.967685,3.5466208333333333,3.2899700000000003,2.3463125,4.035625,5.35145,3.1633625,4.80428,5.68185,2.079076666666667,2.6170633333333333,6.3375,6.9051,1.365988,2.60385,2.186025,3.22195,2.3371975,2.47029,2.733545,1.0341833333333335,1.82758,2.4077875,2.20522,2.50938,2.50938,2.9427375,2.712925,2.0639955769230767,2.5689,2.405755,2.0189,1.580916,4.7675325,14.66342,2.6439,3.4061,1.8103500000000001,1.8103500000000001,1.52784,1.52784,3.0304300000000004,3.7379,2.8864433333333337,1.8825825,1.8825825,3.866633333333333,3.197673333333333,1.1251333333333333,1.4970285714285716,3.204916666666667,3.0742066666666665,3.824066666666667,2.698072857142857,3.142053333333333,3.2399233333333335,0.721096,2.508225,3.5544689999999997,7.00779,4.93119,4.553975,4.493645,3.333915,4.794435,4.393215,2.6765133333333337,4.453545,1.4724633333333335,3.1701366666666666,5.87645,4.87533,2.55294,1.4311266666666667,2.85337,2.93178,3.100956666666667,1.4893183333333333,0.7478,3.3895,5.151809166666666,4.76266,4.58368,4.91622,3.0842466666666666,2.11668,3.2254300000000002,2.6349933333333335,3.339066666666667,3.1244066666666668,3.5075333333333334,2.761703333333333,2.3542833333333335,3.5101333333333335,2.948323333333333,5.15925,4.970975,5.422069166666667,5.422069166666667,3.31811,4.13853,3.74958,3.50359,2.846535,4.83948,3.303395,3.4393666666666665,6.10775,0.7462933333333334,5.0695,4.820935,2.5740000000000003,4.822799166666666,3.0322433333333336,1.62022,1.331307142857143,2.55472,1.01548,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.5904771428571428,0.5904771428571428,1.178485,0.8191411111111111,1.5844525252525252,1.0546257142857143,1.0546257142857143,1.1744514141414142,0.4100011111111111,0.36531777777777774,1.2256925,1.5535925,3.2648200000000003,2.569125,6.934925,3.0923133333333332,4.18345,4.333101666666666,4.516704857142857,1.3754883333333332,4.73309,4.585715,4.21192,3.31832,1.446132,4.043226538461539,3.545075,4.79089,4.475875,2.79584,4.04452,4.434135,4.550795,1.203154,3.8845,5.0421,3.19807,2.43327,3.401425,2.331305,3.160105,3.657475,3.1992933333333333,5.06535,8.641335,3.199785,4.833715,4.564265,4.444681666666667,2.7544033333333338,3.510445,0.8698557142857143,3.888725,3.32877,1.824738,1.04147625,2.82197,1.1127816666666666,0.5408533333333333,3.5061666666666667,4.119285,5.14996,3.551933333333333,2.3826925,2.995095,4.885825,3.9739,4.41898,2.4122625,2.2265566666666667,3.93537,4.1299,4.137935,5.45515,4.43859,3.668185,4.74931,3.06622,4.537005,2.2169920833333334,4.691935,5.54855,3.216565,3.98326,2.4636,3.68677,5.73845,4.63215,5.40745,5.39685,5.3447,2.6565233333333333,4.889065,4.50205,4.73602,2.1596425,0.98112,4.085925,4.75609,4.575645,4.860385,1.85472,4.52238,1.93057,4.985935,4.37404,5.07925,2.3415975,4.61004,5.2275,4.409225,2.845736666666667,4.26052,4.917355,4.805435,3.66461,2.1596425,2.46,2.921175,4.716875,3.838755,4.35651,3.590795,5.02785,2.34391,6.68235,4.72349,4.541965,5.130341097222222,4.684267500000001,5.18185,3.57417,2.4325616666666665,2.4325616666666665,4.419935,4.064955,4.46414,2.19959,3.1518975,1.0466525,2.6076466666666667,3.3298633333333334,2.548903333333333,3.4438,5.17285,2.7680233333333333,5.6504,2.859363333333333,4.263535,4.6277875,1.732065,4.091325,1.5782033333333334,2.8315699999999997,4.00688,0.9117770000000001,5.0862,4.76673,6.7192050000000005,4.56607,5.4999,1.4525285714285714,4.54277,6.0177,8.72693,3.0680933333333336,3.4121,1.870138,0.815216,3.929465,1.0616514285714287,3.970385,4.53969,4.79113,3.272845,3.722985,1.4296142857142857,3.103405,3.501035,4.34157,4.432495,4.435015,5.08265,2.4038475,4.149655,5.264,5.52645,4.747755,3.737875,0.31900555555555554,0.31900555555555554,0.31900555555555554,0.31900555555555554,5.35995,2.835955,6.35545,2.9943333333333335,5.56585,4.739835,3.929025,2.2531,2.4588466666666666,1.5976633333333332,5.78985,2.8822166666666664,4.12733,3.370565,3.40241,1.659885,1.16043875,4.480865,2.378725,6.176716666666667,3.81569,6.05395,2.288175,1.5537133333333333,0.8959388888888888,3.19801,4.925315,3.05882,2.284145,8.418755,4.330735,3.31887,2.39476,0.442776,3.46276,2.867655,2.217,1.830905,3.89621,3.12383,3.02436,4.045366666666667,2.834745,3.338405,4.374975,3.722375,4.729915,4.072075,5.682903333333333,0.663092,4.55474,5.4336,5.1808,4.60125,3.233423333333333,5.3518,4.14408,3.99906,5.188838333333333,5.3532,4.632425,4.69278,3.91224,3.983135,2.764305,8.74178,5.0973,4.494,4.82558,4.96618,4.75057,3.930055,0.9906055555555555,5.576655833333334,3.732805,4.99173,1.3482450000000001,4.20397,4.7145,7.92362,4.538025,3.125885,2.14095,3.90995,1.549996,1.0992775,4.205875,6.16535,1.9183933333333334,2.4179366666666664,2.82085,3.96621,3.466985,3.66474,5.0742,2.0424433333333334,3.98878,3.4890784999999997,3.350235,3.7142,3.84527,2.77145,2.5975,1.670265,2.44801,2.6753433333333336,4.31007,0.5228125,2.5115366666666668,3.97855,2.9894,3.7014,4.56406,5.41725,3.953375,16.418332015151513,2.00454,4.040533333333333,1.516454,0.8281281818181818,0.8281281818181818,0.8281281818181818,0.8281281818181818,0.8281281818181818,4.603615,4.74559,5.3033,9.1683415,2.58135,2.58135,4.51007,4.323862500000001,1.2551425,2.33527,4.496225,2.39608,2.190665,2.10298,2.943945,3.7252566666666667,2.29732,4.270965,0.79965,3.0060300000000004,2.7956233333333333,2.93561,1.4268066666666668,3.3457000000000003,2.3573666666666666,0.939285,2.831113333333333,2.67318,1.151388888888889,2.5933633333333335,2.7139233333333332,2.1347133333333335,4.421443333333333,2.3393433333333333,3.119946666666667,2.015945,2.5961366666666668,1.04562,2.85952,4.794418666666666,3.5296333333333334,1.00776875,2.79201,1.3099175,2.5882466666666666,3.1950800000000004,4.482401666666667,3.07325,2.6371466666666667,4.717741333333334,2.88226,2.12602,2.7825,2.7307333333333332,2.20553,2.66608,3.3802333333333334,3.1848433333333332,2.935643333333333,2.848943333333333,2.7288633333333334,2.39957,3.6366495,3.6366495,2.9872533333333333,1.9966166666666665,1.8136733333333332,2.81157,5.40328,2.93838,1.9271099999999999,1.61944,3.018266666666667,4.754775,2.31232,1.042516,2.7692793333333334,1.5026066666666666,2.532826666666667,2.20568,2.7922366666666663,2.10197,3.5892666666666666,1.211252,1.47267,1.5268166666666667,4.247655,2.5234666666666667,4.065195,0.9510911111111111,4.036695,2.0584633333333335,2.4574775,1.7507940000000002,1.6694666666666667,3.20103,23.819676807359308,6.932880000000001,2.57164,3.327545833333333,2.28304,10.481219333333332,3.18881,0.98325375,2.60207,2.3685233333333335,2.2001133333333334,2.695793333333333,2.65238,2.590803333333333,0.871205,3.10922,2.4604233333333334,2.96842,2.9190666666666663,3.01999,2.055756666666667,2.2119166666666668,2.800326666666667,2.4914066666666668,2.185635,1.6118919999999999,6.216808333333334,4.69659,2.468275,2.770925,2.2694533333333333,2.4136166666666665,7.836449166666667,1.8311066666666667,5.37215,1.8691825,1.8949775,7.16019,2.8119666666666667,2.65569,2.746425,1.713194,1.4754857692307692,3.384066666666667,3.03584,4.338885,1.42217,3.5792333333333333,1.6731025,1.6731025,3.816845,4.7587,2.838604285714286,2.838604285714286,5.895003333333333,3.381385,0.41612,10.798013946886448,1.2149766666666666,0.9333328571428572,3.5333458333333336,1.4808235897435897,1.541625,6.30501,3.728025,0.8078390909090909,2.0711233333333334,5.095489151515151,2.6421666666666663,4.48441,1.353407142857143,5.55325,5.67385,4.81008,3.62134575,1.9772459999999998,2.81519,2.79689,2.75413,2.17028,5.130963333333334,4.984475,4.898995,1.8893225,4.748975,3.97037,2.96645,2.43683,5.1939,2.5591566666666665,8.16732,6.854475,2.0340825,2.09491,1.682776,4.4910000000000005,4.4910000000000005,3.5121333333333333,3.1374999999999997,2.997335,5.07335,9.85324,4.04969,2.501425,5.15525,4.30603,5.0764,1.9258440000000001,0.8698,1.3181933333333333,4.597335,4.88188,3.6237333333333335,3.026096666666667,3.917566666666667,2.1346633333333336,3.336865,4.37988,3.396105,5.4067,3.2210966666666665,4.222089333333333,3.595,3.15536,3.5319333333333334,6.1671,2.981025,5.41155,5.0432,3.389335,3.362725,3.362725,5.774279166666667,12.176243333333334,3.639866666666667,6.128995,7.522772777777778,3.61358,2.4705166666666667,3.908155,1.29095,3.6755,2.59605,2.9605633333333334,3.05236,3.325616666666667,2.1522200000000002,2.34189,3.1631400000000003,2.7508166666666667,3.1932899999999997,3.0790133333333336,3.995195,2.4346533333333333,2.9480533333333336,3.71412,2.979146666666667,2.8488466666666667,1.24134875,2.089575,3.6106,2.4984033333333335,2.465003333333333,2.4275233333333333,3.588366666666667,2.4650466666666664,2.52015,2.775703333333333,3.15766,2.865406666666667,3.4446666666666665,2.4834833333333335,3.1991533333333333,2.8150366666666664,3.364832,2.6716233333333332,2.438753333333333,2.396036666666667,2.32694,2.6900133333333334,3.3345000000000002,3.157016666666667,2.79503,2.0848675,2.0848675,0.91321,1.5627739999999999,4.255205,3.25526,2.6472533333333335,2.1522200000000002,3.6357,1.3539557142857144,2.9028533333333333,0.6015006666666667,2.465176666666667,3.155616666666667,3.258365,3.00433,3.0862200000000004,2.916676666666667,3.113573333333333,2.8996933333333335,3.3664,4.50256,1.576276,2.5256633333333336,2.243916666666667,1.68917,2.0477466666666664,3.0299933333333335,2.7624333333333335,1.7975059999999998,2.5579,2.51201,2.705503333333333,2.824806666666667,2.78711,2.8779266666666667,3.3047733333333333,1.42861,2.9673466666666664,2.3947566666666664,3.7710333333333335,3.3356666666666666,1.8498875,1.6353666666666669,3.5167,2.8345066666666665,3.2918866666666666,2.60603,2.98095,5.4498,2.5324433333333336,1.8885033333333334,1.572,3.2967066666666667,5.982316666666667,3.4188666666666667,3.105116666666667,2.926213333333333,3.116013333333333,4.693606666666667,1.59457,1.1983000000000001,2.81729,1.9672570833333334,4.515345,3.3259133333333337,3.407,2.9452866666666666,3.0545466666666665,2.552376666666667,3.3076033333333332,2.3106875,1.6324,2.9178800000000003,3.40984,3.7742700000000005,3.40579,4.03125,1.8485475,2.816355,3.61024,2.26619,2.5239233333333333,3.1727166666666666,4.0133,3.9446,1.704285,5.943274000000001,3.4595637499999996,1.611605,3.84888,3.609775,2.79114,4.76341,1.79462,1.79462,3.1928,2.9269833333333337,3.27009,5.5729,4.474545,4.228420666666667,1.112674,2.843916666666667,2.5709033333333333,4.3155025,3.05721,4.293580666666667,2.6507466666666666,2.3247,2.8202266666666667,3.568165,4.289305,1.6730360000000002,3.1378866666666667,3.54367,2.35136,4.235235,1.2651033333333335,4.29332,4.297845,2.592925,3.605285,3.983565,1.6088475,1.52203,2.4585975,1.0367433333333334,2.065803333333333,2.1586725,0.4386614285714286,4.33104,2.3054,4.26123,4.28804,2.715745,4.51572,3.4078999999999997,3.1607066666666666,3.4791000000000003,2.7095633333333335,3.4440000000000004,2.7270366666666668,3.27689,2.2874833333333333,0.6879846153846153,2.3171866666666667,0.6749521428571429,1.9146166666666666,2.3903166666666666,3.1937233333333332,2.9604533333333336,1.4560533333333332,1.3861725,3.698255,4.898805,3.76845,4.094155,3.164515,1.189485,4.187065,7.23238,3.885615,6.1128225,1.444655,4.260875,1.8969,3.733895,3.894575,1.738195,4.251475,3.708965,3.937605,4.197745,2.0986225,4.305705,7.2303975000000005,5.4813,3.440205,3.267485,1.6692575,2.0352575,4.43006,3.255885,3.02062,3.76516,3.514775,3.755985,1.755475,3.817225,3.452045,2.0197525,4.12143,0.7506133333333334,3.58411,1.67991,4.236725,4.605448333333333,3.645,2.7567975000000002,3.65893,3.443655,1.95128,2.3346325,3.8707999999999996,2.3623,5.773899999999999,4.02551,4.335685,2.35808,3.136425,5.15905,4.15457,2.9240260000000005,2.9240260000000005,6.174997333333334,4.0458765,2.7941225000000003,3.172955,2.2267633333333334,3.016635,3.429435,3.806626666666667,2.8548115000000003,3.63298,1.013122,3.75685,3.24378,4.313135,2.66961,1.459085,1.636785,3.92482,6.226151,5.5408375,3.50558,1.69893,3.619935,3.39156,0.8384683333333333,2.974175,1.297724,5.45443,1.388425,4.206235,2.2473375,1.4560533333333332,3.09505,3.13735,4.397925,7.001498333333333,4.709015,4.215096666666667,2.430425,2.8818,4.709545,4.133995,4.79251,4.465425,1.25498,1.7614990000000001,1.158145,2.7606,2.10494,4.489395,1.158145,4.722805,2.471025,1.6855475,1.6855475,2.0197525,3.76311,4.448345,4.31899,1.7283680000000001,1.7283680000000001,1.0214866666666667,3.12668,2.05491,5.938325,4.273315,3.782075,2.688606666666667,1.0093357142857142,3.61921,2.700035,4.28187,4.064685,4.18183,4.18183,4.038195,3.875145,2.11773,2.64561,0.9205366666666666,1.7615800000000001,3.353755,2.464843333333333,3.4181275,3.4181275,2.859895,4.777915,4.737205,2.994135,3.4503,4.20447,2.8251033333333333,4.763353333333333,2.79796,4.13704,8.671315,4.933465,2.66736,3.253365,3.091,4.902765,3.4480199999999996,7.517525,4.662342,4.432045,3.53047,3.60015,3.72474,4.46082,4.71681,2.12309,4.070795,6.176095833333333,2.515455,2.241827333333333,3.330165,3.268255,3.10585,3.85263,2.136136666666667,2.35479,2.288175,3.0530675,2.4138433333333333,7.683139333333333,1.2876025,4.71293,4.71293,3.381705,3.6926175,2.87993,2.3980099999999998,4.7999,3.929774,2.1349773333333335,3.87718,4.176515,3.4685466666666667,3.292595,3.124425,6.4378383333333336,3.213885,4.932085,3.38545,4.338785,3.99179,3.58768,2.9269833333333337,2.3923833333333335,2.402845,4.373595,3.31687,3.48862,3.076125,6.418995,2.381245,1.91735,3.3885899999999998,2.4392566666666666,3.836765,2.73476,0.8384683333333333,3.173985,4.418825,3.836595,5.89203,3.249105,3.225355,3.02707,3.02707,3.735240833333333,4.608165,3.935865,2.3619075,6.0895624999999995,2.1016925,4.471475,3.594255,7.90204,2.8340899999999998,1.2732066666666666,3.531365,4.500315,0.64263375,4.044,3.05051,3.03004,3.225905,4.705175,2.085996666666667,2.43331,8.91565,3.273745,2.54952,1.388425,3.094405,2.845575,2.389455,3.88625,5.4144925,1.7128475,1.2197366666666667,0.9405833333333334,4.12398,3.88263,3.57675,3.8719099999999997,3.8719099999999997,1.755475,2.24427,2.9364,0.84429,2.5363,1.07121,1.8485475,3.82251,3.855135,3.25055,2.77723,2.5924733333333334,4.01723,3.936905,3.207655,3.38051,2.50625,4.136585,6.63707,3.959135,0.9772,2.306881,8.54206,4.625975,4.294415,1.0093225,5.825613333333333,1.3888433333333332,3.7933275,3.7933275,3.721405,8.336415833333334,0.8333955555555556,4.56578,4.66074,1.95181,4.231895833333333,3.213755,2.175825,9.014032666666667,1.71113,2.5026433333333333,3.209345,1.61669,3.9710014166666667,3.06729,3.96096,3.795802,3.090985,3.433715,1.0431066666666666,7.70283,3.98379,4.0493,4.48467,2.1221075,2.7567975000000002,3.8232916666666665,4.120305,0.6623546153846154,4.424885,4.556955,5.00175,2.08156,1.471112,4.43334,4.330185,9.80126,0.5521792307692308,0.774255,0.774255,1.6694566666666668,1.3215833333333333,1.3573439999999999,1.7830133333333331,4.562915,1.1717666666666666,0.8345842857142857,4.030495,3.696955,1.502105,3.10857,4.64137,3.731695,0.703056,1.68909,10.62359,3.355125,3.906405,2.37424,1.5200375,2.4113966666666666,2.83064,4.5728,4.34509,3.887225,0.9315742857142857,1.50747,0.940427,4.833485,4.28652,4.095715,0.84429,1.7830559999999998,3.82215,2.2261817857142856,4.358546666666667,1.005935,4.787385,0.6438083333333333,0.6438083333333333,0.6438083333333333,10.01765,4.30452,1.07121,4.039395,4.242915,2.988835,4.8748,4.080738333333334,2.27975,1.8918483333333334,1.76026,0.703056,1.5415243333333333,0.5263833333333333,0.7813150000000001,1.2308183333333333,4.464745,3.661125,2.0779825,7.34996,4.839270833333333,0.6979833333333334,4.911315,5.043153333333334,3.39302,4.383055,7.7914536666666665,3.8728454761904763,4.839270833333333,4.512962416666666,2.42985,4.282765,3.65271,7.274545,3.60672,0.442776,1.543844,3.98298,1.7348919999999999,1.2197366666666667,4.2781,2.3218533333333333,1.75413,3.23588,1.6854600000000002,4.33227,4.34105,4.10044,4.7041,5.83587,2.927555,3.868205,1.297724,2.3682725,3.798675,2.993615,2.1349773333333335,4.040765,2.47836,4.807205,2.98404,2.286295,3.2586025000000003,1.442466,3.45734,0.84429,2.1708457500000002,0.9405833333333334,1.437105,3.60083,1.2876025,1.2308183333333333,2.278035,2.571715,8.13478,0.9315742857142857,1.0093225,1.422494,3.67875,4.0029,1.422494,3.800025,2.3682725,0.64263375,0.84429,1.6694566666666668,1.297724,0.4386614285714286,1.6399979999999998,4.189052,1.95181,1.39691,2.73078,1.704285,1.71113,2.5603266666666666,1.76026,4.26903,2.5603266666666666,0.8384683333333333,2.694376,2.51015,0.118175,0.118175,0.118175,0.118175,0.118175,3.5053666666666667,2.604103333333333,2.95955,2.8478933333333334,4.782795,3.88574,1.7507940000000002,3.641745,3.71005,2.118275,5.0911475,2.657875,2.425955,2.339655,2.73687,4.402315,8.4982,2.349255,2.32312,2.956388571428571,0.9122185714285714,1.3526,2.37732,1.9072466666666665,1.45483,2.64541,2.21309,2.796053333333333,3.0014533333333335,2.5961166666666666,3.967735,3.808485,2.8661433333333335,1.316592,3.10979,3.65629,1.4693800000000001,1.333036,1.333036,1.333036,3.52288,2.776893333333333,1.1340066666666666,2.1982266666666668,1.240344285714286,4.381745,1.5808866666666666,6.613073333333333,3.5328099999999996,2.8383633333333336,3.1055460000000004,3.1055460000000004,5.517483333333333,2.837885,4.652875,4.98337,2.23852,3.3249766666666667 -GSM1946758,0.0,1.979805,1.979805,1.6285166666666668,4.21716,6.36235,2.6174003947368423,1.5565633333333333,7.600346936274509,4.57574,3.23556,2.255665,2.051035,3.413785,4.34597,1.845392,1.5213480000000001,5.0333,2.47446,2.3100325,4.51596,5.446015,3.945125,2.353705,1.8157419999999997,4.208395,4.68692,4.384635,0.6992933333333333,1.539344722222222,1.8629138888888888,1.8162375,1.619015,1.1437000000000002,0.6884666666666667,3.1171875,1.5403375,1.886145,1.231935,2.13673,1.10029,1.06048,1.0948259999999999,1.49353,0.894122,0.92498,0.76149,1.1939757142857144,1.6263580000000002,1.8266300000000002,1.5644360000000002,2.01422,1.673272,18.672211249999997,0.377626,0.81861,1.10422,1.8249900000000001,1.390234,1.685716,1.0678085714285714,1.0678085714285714,1.0678085714285714,1.1491083333333334,0.984068,4.60935875,1.145045,2.3201175,2.04049,2.409615,0.9693630000000001,2.21769,2.2681775,2.1615775,1.4591875,2.163255,1.5529775,1.697905,2.4226633333333334,3.75154,4.64707,5.394,1.9472466666666666,4.59759,4.464815,4.3259,4.132915,1.07777875,7.43105,0.57958625,0.57958625,2.3439775,1.0919171428571428,16.194139999999997,4.88678,5.42615,5.8152,4.1769,4.297305,5.53485,0.4627811111111111,2.2924816666666668,1.77259,2.3887725,4.577085,3.76844,1.576525,3.073866666666667,3.9385999999999997,2.83324,3.7556666666666665,3.450875,4.6632,2.8306690000000003,4.700925,2.952446666666667,0.7133872727272728,1.7547799999999998,2.59545,4.876095,4.30641,0.55525,3.644355,3.833635,0.75120375,4.465085,1.6968299999999998,2.399425,2.77355,2.1267475,4.02537,5.85315,3.311605,2.6874933333333337,3.293863333333333,3.07123,4.347345,2.9505933333333334,5.47735,3.40048,4.471005,3.26258,2.339495,3.62549,2.4881325,6.794483333333334,3.50272,3.67622,5.79475,3.240795,4.85582,0.7652,9.880010714285714,3.546495,2.01428,1.8309033333333333,3.25379,2.35324,4.954085,5.58825,2.136155,5.009143333333333,2.753685,4.39441,2.136155,3.2020166666666667,4.34486,5.240905833333334,3.80568,9.05655,3.768685,4.92441,2.87289,4.972065,4.41334,1.7741833333333332,8.16715,4.39519,4.14926,3.78161,3.62898,3.298645,2.25396,5.966895,2.29214,4.075065,4.004555,5.10835,4.892725,3.707035,1.417035,2.719905,3.11377,1.744715,1.744715,6.233040428571428,3.137745,1.9975066666666665,4.421335,4.577195,2.73713,1.4791566666666667,0.8472555555555555,6.84335,2.70632,7.00735,3.020555,3.91255,3.735095,3.181015,3.96141,3.57032,3.88534,4.20073,5.5326,2.81168,3.615535,9.12255,5.01265,3.5607666666666664,3.131346666666667,2.6628266666666667,3.935833333333333,4.424974166666667,1.9349775,2.741573333333333,2.2251766666666666,1.698502,1.8286499999999999,2.675613333333333,1.73684,1.877165,2.9366766666666666,2.748423333333333,2.353146666666667,2.6769433333333335,4.464815,3.46261,3.25358,3.62929,4.71733,1.1952183333333333,2.28997,2.9143322857142855,2.0772,2.6097233333333336,2.0640899999999998,3.371066666666667,1.664214,1.2976533333333333,2.56428,0.6912,1.6801266666666665,0.5510633333333333,0.5510633333333333,1.4871100000000002,2.69396,2.1483333333333334,1.26783,1.5355999999999999,0.31439076923076925,2.7077666666666667,0.6912,1.3070566666666668,0.19686783783783784,1.4505133333333333,1.99174,3.4587333333333334,2.0961233333333333,2.220543333333333,2.5255433333333333,2.1676066666666665,2.33163,2.5170933333333334,2.3174566666666667,2.23062,2.7290266666666665,1.9377666666666666,2.743055,4.09268,0.6633233333333334,1.7786033333333335,2.5486633333333333,1.9397466666666665,3.4554133333333334,1.502874,2.5773266666666665,2.1936966666666664,4.322743333333333,2.02483,7.582203333333334,1.6671,3.0004899999999997,2.1129175,2.05685,3.3583,1.95859,1.9195575,4.07919,2.64323,2.0726025,3.934175,4.15252,4.306645,3.74032,2.238595,3.257225,4.427372666666667,3.831255,3.98014,4.2611,4.33674,3.08033,4.50307,3.53022,0.87459625,4.86649,1.232035,4.875875,3.774675,5.773236000000001,3.66902,4.27373,0.94693,2.18494,3.478115,4.113415,0.7952957142857143,1.1791253846153846,2.067692380952381,3.6463914285714285,5.26023,5.5258769999999995,2.1745,3.03455,5.1635,0.3339892857142857,3.4147,2.284155,0.96920875,5.0835,1.912175,11.794184999999999,1.249295,1.3333925,1.9273999999999998,2.303465,2.0724552631578947,4.9069102631578945,0.34886526315789473,1.7143566666666665,2.863466666666667,0.9570125,3.6501,1.075737142857143,5.28435,3.90878,2.163273333333333,6.2747,5.8331,2.86935,1.1245985714285713,4.509218333333333,5.55465,4.267945,0.8646436363636364,8.051876666666667,2.902426666666667,4.40511,2.65769,2.508103333333333,4.628275,2.2376400000000003,2.6231933333333335,2.16726,2.4537166666666668,3.199595,2.9822133333333336,0.34456375,3.93502,3.783315,3.92627,3.77055,4.61509,6.081765000000001,4.12254,1.7205425,5.6936,4.56444,4.41079,4.198265,1.0436683333333334,2.5882633333333334,3.1796433333333334,2.609573333333333,15.88214,2.967475,3.85647,4.393925,5.82155,2.796755,5.1477804166666665,1.7165075,0.7627033333333333,2.7649,3.39908,3.624815,4.20582,6.492165,2.9508833333333335,2.2786,2.146565,3.3933,4.50612,2.3368125,0.3736445386904762,3.25075,1.922875,1.15680125,0.5643445386904762,0.7550445386904763,0.3736445386904762,0.3736445386904762,0.3736445386904762,1.134185,1.3585675,0.810905,1.465765,4.382194999999999,0.2225879411764706,11.411847121212121,3.4735666666666667,2.8287266666666664,4.17747,4.123775,3.906965,2.144445,4.69402,3.920316333333333,4.13807,3.98198,0.6892,3.3385,4.166302564102564,0.5568557142857143,3.57874,2.8042433333333334,4.465665,0.5460090909090909,1.71403,4.455205,3.323925,1.9416175,1.7820833333333335,1.6911566666666669,3.207316666666667,3.97027,3.03408,2.8306833333333334,5.7752,5.4835,4.98435,3.4340333333333333,3.56085,6.734958333333333,3.8694333333333333,4.895925,0.4248142857142857,3.2591966666666665,4.068901666666667,2.0446466666666665,2.700225,2.7896858333333334,5.482843333333333,0.5702925,2.98915,4.455895,4.482505,1.04542,4.8229,2.727525,4.82461,3.1136233333333334,4.30296,3.40866,4.325595,1.1663416666666666,3.316045,2.6000033333333334,4.874985,4.038925,4.594205,5.81305,4.500205,2.65061,5.35718,2.358773333333333,3.169105,3.172273333333333,2.7464666666666666,2.77454,2.2550033333333332,1.824748,1.63645,2.1371966666666666,0.7632199999999999,1.4443666666666666,2.3204266666666666,1.9679266666666668,3.07696,3.311106666666667,2.7894733333333335,0.9784488888888888,5.064,3.4547333333333334,5.2988558333333335,2.5767291666666665,3.0796233333333336,2.9044866666666667,1.7655833333333335,1.7655833333333335,2.5938545454545454,2.5938545454545454,3.377281331168831,0.5388942857142858,1.7306800000000002,2.3952566666666666,3.7265333333333337,2.2062607142857145,2.2062607142857145,2.2062607142857145,7.592377916666667,4.528263333333333,0.9906545454545455,2.44539,5.0283925,2.3917875,4.599185,3.24798,2.24485,3.66973,3.0539,3.1619733333333335,1.0760725,1.9054933333333333,3.2740266666666664,2.5004233333333334,2.6023833333333335,5.70295,4.183333333333334,3.8882999999999996,5.1540566666666665,1.8866333333333334,2.6840266666666666,3.240413333333333,1.0443033333333334,2.1534233333333335,4.718353333333333,7.98323,1.54958,2.976145,4.935595,1.801486,1.849205,1.849205,0.9893875,4.821345,7.874995,4.1149,4.899556,4.495655,1.7779666666666667,4.087205,3.200705,4.75029,5.198493333333333,0.35750473684210526,2.849175,2.698545,4.1665,3.826115,1.864826,1.91902,2.576275,4.320265,4.25015,3.113835,2.47217,1.4069639999999999,6.86253,5.5814,4.053415,3.53075,5.65365,5.03005,4.387525,3.513795,3.590045,1.9392475,1.0763114285714286,2.751235,3.971705,3.65844,5.5292925,5.673755,2.444995,1.7775299999999998,2.6799166666666667,2.72878,3.0169866666666665,0.7198571428571429,2.1669,3.687335,1.126105,4.933845,3.19447,5.9489625,1.3370363636363636,1.3370363636363636,4.16021,3.750495,3.703755,5.6425,2.76586,2.3130266666666666,3.695885,3.3514,2.1467675,3.4187666666666665,2.554136666666667,4.165825,3.5795775,3.71005,4.61179,1.0791866666666667,2.680055,4.26049,5.17925,3.27396,2.5147266666666668,1.69378,0.75928,0.75928,0.75928,0.75928,1.5026466666666667,3.8826674999999997,3.8826674999999997,1.8252,7.056096666666667,3.325745,4.00132,3.0244700000000004,2.72425,4.856655,4.091625,4.85707,5.3626,1.68334,4.046775,3.723735,2.716805,3.126115,3.404515,2.403245,3.96174,1.848885,4.683825,1.6172,3.4953104166666664,3.01597,1.8522,1.1643216666666667,2.75511,4.3984,1.26677,0.8417966666666667,3.62867,1.4260125,4.946186,4.303485,1.3139699999999999,3.531375,0.7362877777777778,2.6292466666666665,2.4901466666666665,2.52994,2.656465,4.03503,2.899010833333333,4.887125,5.61475,4.296865,4.434915,2.410175,1.3286614285714287,4.006775,5.0198,1.45945,1.45945,4.08053,0.25731,2.4225566666666665,0.25731,0.25731,0.25731,0.25731,5.14145,2.6555866666666668,3.26174,3.48431,3.21794,4.330145,2.724413333333333,0.924105,0.924105,0.8884416666666667,0.8884416666666667,3.73801,1.905485,4.363185,1.7118028571428572,1.7118028571428572,4.72319,0.5388071428571429,2.83065,7.3977466666666665,4.90087,3.211935,3.461175,0.96647125,2.314195,2.02375,4.69831,4.27123,4.381,3.87742,1.2958314285714285,2.728785,2.014335,7.53536,1.720555,4.472545,4.6957,2.95494,3.914105,6.45287,7.84554,4.091135,4.511555,3.6356,2.4696025,3.163985,2.390065,2.290855,1.89655,3.809125,3.580635,5.513566666666667,6.75556,4.29903,1.0039766666666667,2.10775,3.62468,3.738385,2.1313675,4.177565,3.139275,4.7272,1.7260766666666667,4.186266666666667,1.6098999999999999,6.48612,2.82452,2.42252,2.39606,2.18831,3.437466666666667,3.3356333333333335,3.2327833333333333,2.6911400000000003,3.4491,2.1586,3.35662,3.056825,3.090865,0.383158,2.855775,3.973075,2.6214,5.655,5.0844,4.64938,6.927788,5.05595,2.1197399999999997,4.2338,5.2893,1.6333583333333335,4.7443,5.57775,5.38075,4.783275,3.314295,5.5133,5.15025,3.975995,5.406362000000001,7.9341,4.36083,1.210685,1.4257266666666668,2.708995,1.910838,4.513465,4.07684,5.127845,2.55934,2.3743666666666665,2.7348733333333333,2.4423966666666668,2.2798133333333332,0.9733077777777778,0.5074441176470588,3.875405,4.06196,3.6319666666666666,4.05333,2.845095,3.1893499999999997,5.400526666666666,3.0566533333333332,0.5952176470588235,3.11105,5.54965,1.8717,1.679476,3.806655,3.27573,2.483353333333333,3.7736666666666667,4.03349,2.74268,2.25584,2.4280666666666666,2.592416666666667,2.63439,4.3814866666666665,5.071366666666666,6.42960775,1.447968,4.94035,3.3318329166666665,5.09236125,2.599763333333333,2.89085,2.378285,1.79688,1.431615,1.431615,2.5691200000000003,2.3403133333333335,2.7801066666666667,4.400875,1.622682,2.11836,2.026935,0.4615725,3.532145,0.581635,0.94644375,3.45448,4.18204,3.47675,1.7297675,4.758085,3.071623333333333,0.7888214285714286,4.4084,3.8656176190476192,3.3040299999999996,2.442705,5.08475,0.27989275862068963,2.1683491666666668,3.20216,1.424055,3.710735,6.6649,2.41121,1.4375466666666668,4.074505,3.89851,2.87536,2.87536,3.611265,2.73189,4.711595,5.79299,5.13265,0.9935999999999999,2.7547266666666665,2.4281099999999998,4.58303,5.23955,5.2665,4.841885,4.374933333333334,3.9122333333333335,3.7311666666666667,3.6918333333333333,4.1901,3.063193333333333,3.1159266666666667,0.6105728571428571,2.38957,2.407975,3.793275,3.005236666666667,3.2752499999999998,0.7495791666666666,2.690285,4.2645100000000005,4.782645,5.83655,5.4305,1.913015,1.913015,0.8424060000000001,2.91479,4.61489,3.7934,4.763011428571429,3.36997,4.803175,0.5824863636363636,3.059,3.726135,4.06877,4.042818333333334,0.7929457142857144,2.820805,3.894545,5.67595,3.79863,5.04095,2.747095,4.12513,1.5427075,1.0338957142857141,2.7109966666666665,5.5754,4.6565,3.119225,1.4366683333333334,3.984375,2.508325,2.6683,2.757598222222222,3.0586366666666667,4.5520233333333335,3.110136666666667,1.81615,3.5122666666666666,1.4431345238095237,2.959373333333333,2.5537033333333334,2.37024,2.87181,3.1375733333333335,2.41907,2.806233333333333,3.632235,3.1097066666666664,3.4588726666666663,2.50305,1.756545,4.113803333333333,2.9653266666666664,2.4264233333333336,3.4588726666666663,2.0662833333333332,0.8134627272727273,2.4229025,1.0489066666666667,2.27379,1.593055,0.9465545454545455,1.802575,1.7309825,2.65623825,2.73255,4.71145,1.5536175,5.0079,3.2271433333333337,1.62075,2.2021533333333334,2.552376666666667,1.6709800000000001,2.7921899999999997,2.8046466666666667,2.225936818181818,1.629205,1.8012799999999998,3.6039666666666665,2.2825866666666665,2.8873572222222226,3.2543699999999998,3.2252466666666666,3.5226666666666664,2.1073,4.1768,3.5157000000000003,3.7916666666666665,2.917426666666667,3.5078,3.6501333333333332,1.8904333333333332,10.58615,4.29872,4.274375,3.36559,2.73399,2.015695,4.034715,1.708334,4.063745,4.292225,1.3339919999999998,2.54873,1.1631316666666667,2.3980366666666666,1.76258,2.4397766666666665,5.126335,3.2297100000000003,3.630225,5.02585,0.7789175,1.479398,0.9905889999999999,3.581445,10.095738333333333,3.4763,6.8059,2.06193,5.18625,4.416495,2.55265,5.0899,0.28147,0.8515928571428572,4.59734,4.37266,7.5380725,2.0402725,4.284425,5.7701,4.663605,4.83171,3.34157,4.58351,3.467085,5.865996666666667,3.69666,3.199965,3.08451,2.2492266666666665,1.92305,1.3870764583333335,2.4858,3.891685,4.64565,1.566498,9.0085,2.1873633333333333,2.9609741666666665,1.093058,1.093058,7.233264166666666,3.03934,2.3581325,2.199155,2.6922866666666665,2.2025333333333332,1.1438333333333335,3.6439624999999998,2.6686266666666665,0.5876042857142857,1.8510499999999999,3.365412,3.365412,1.19051,2.51303,2.23966,2.7299283333333335,1.3776625,1.7664066666666667,4.679888,2.7033533333333337,2.73415,1.2492825,1.2492825,4.1041,5.90785,4.40065,3.23188,3.81688,6.03784,2.877025,2.8786799999999997,3.11183,3.96533,1.1324033333333332,3.3014200000000002,2.60885,3.704245,2.154993333333333,4.830485,3.569195,4.41053,3.760535,5.601088,0.9400944444444446,1.9208175,1.912895,3.641775,4.37327,3.65326,3.672415,3.55119,2.27543,1.7584775,4.28926,3.48758,3.360725,2.4085533333333333,0.83354125,3.338985,4.327965,4.796135,1.18296,2.801633333333333,2.4849533333333333,2.0493866666666665,1.8944580392156862,1.8944580392156862,1.3107733333333333,2.02833,1.1036771428571428,1.3899139999999999,4.488855,4.2033,0.4877952380952381,3.353045,3.4422333333333337,3.95846,5.36815,0.4140125,9.26856,5.55355,3.22389,4.034845,4.57716,5.509065714285715,5.14005,6.9856750000000005,0.689509090909091,2.7717333333333336,5.22745,2.89034,1.80941,2.0392,4.441165,5.1282075,2.4434744642857145,3.5934666666666666,2.99572,2.08539,4.21824,10.9458,8.49108125,4.0048,4.53117,3.107885,3.240225,3.867845,1.9463259999999998,3.0194799999999997,3.619965,4.546655,4.882455,5.14249,6.682693333333333,2.2032233333333333,4.566115,4.6676,4.781985,4.491155,7.49689,4.0527299999999995,5.8737,3.36731,3.034965,2.87075,5.74275,3.672475,5.05615,2.198375,3.161096666666667,3.35737,5.80935,4.03606,3.68584,1.4538639999999998,0.90155625,2.355145,0.5588653333333333,3.79476,3.673765,3.516375,2.9016,2.1534833333333334,2.95605,2.655225,3.023434,1.848434,3.0615025,2.835775,2.318255,2.5681,3.750376,1.3414733333333333,2.855035833333333,5.2654,3.808666666666667,1.2762825,2.8149599999999997,3.7764241666666667,3.7364420000000003,1.5249,5.69065,5.3532,2.1973733333333336,2.9682933333333335,30.580360311931535,3.330913333333333,1.78725,3.9560666666666666,1.5418166666666666,2.64498,2.9739466666666665,3.3427000000000002,1.9961975,2.766275,1.931165,3.9129255,3.615266666666667,2.4972275,1.3637025,2.2765,2.904375,0.3777745454545455,1.1613225,2.9174,1.646978,3.37313,1.5249,2.01797,25.544898166666666,5.1301,3.67405,3.568325,2.501495,2.5473,2.6522566666666667,2.30111,3.593645,5.029317,5.28965,1.589142,1.753752,2.119005,2.4490233333333333,3.7687675,5.3587,4.92114,4.539595,0.18979617021276596,4.99593,4.778149166666667,3.825445,8.98607,1.0395325,1.0395325,2.98453,2.86752,5.57225,1.9621833333333334,1.0138933333333333,4.51628,1.9136975,4.19298,4.32618,3.314285,4.00433,4.02158,5.5066,3.065535,0.7064822222222222,3.26014,2.1234525,4.337365,7.884005,4.09243,1.9344033333333333,1.9344033333333333,6.9382850000000005,4.74272,4.20537,5.31115,2.2448799999999998,5.151263333333333,1.3730799999999999,1.3933099999999998,2.998836666666667,2.21527,3.17948,2.711596666666667,3.751535,4.46341,4.00451,5.45035,2.2477775,2.8018,1.91292,2.52965,2.4812025,2.0533075,2.0971225,4.882729166666667,1.85222,3.3700719047619048,2.3449933333333335,3.0049833333333336,2.64576,1.8575,1.4242171428571428,0.965708,2.3870066666666667,4.0924000000000005,0.757872,4.701115,1.7408625,5.840778333333334,1.98801,1.510655,1.6202275,1.5159066666666667,5.7130027777777785,1.8987159999999998,3.051543333333333,3.695266666666667,1.224165,1.7488525,5.005966,3.23376,2.03084,3.599133333333333,2.88953,2.90475,1.2923298214285714,0.28719,0.28719,0.28719,0.28719,0.28719,3.89982,2.76709,2.5494,3.458066666666667,1.3707,2.66877,3.026123333333333,2.03481,3.62779,2.965145,1.7336833333333335,3.034186666666667,3.230033333333333,2.0875275,1.997375,3.63435,2.7450033333333335,3.8305333333333333,5.1671,2.645303333333333,2.6224133333333333,2.5971933333333332,10.96983,4.744645,4.37565,5.158,4.313035,2.83876,5.17745,4.05798,4.62203,5.552396666666667,4.02542,3.07755,2.2977475,3.51107,5.073238714285714,3.50823,16.98169588095238,1.1067475,4.2484,0.854991111111111,1.2821625,2.892575,4.622315,4.245825,4.857115,1.64511,2.4285975,4.305115,2.1344433333333335,4.66073,3.1869796428571426,2.67552,0.6164933333333333,2.9629133333333333,4.75777,2.4402325,2.3764175,2.1427075,20.19823,1.349272,1.3859625,2.7008233333333336,0.2772976923076923,1.7863575,2.882766666666667,1.9637633333333333,2.97524,2.68865,7.5419358333333335,1.86815,2.51285,2.229645,2.1345925,1.6158299999999999,3.3478999999999997,3.153905,4.441665,3.1717633333333333,1.94584,2.68648,3.22041,4.981285,0.44950333333333337,3.7282666666666664,3.06076,2.980735,2.005285,3.7521190000000004,3.521335,1.5724133333333334,2.310583333333333,2.1754700000000002,1.3803866666666667,1.88216,3.402605,3.32753,0.7685466666666666,3.248795,4.907385,4.22793,2.2591340000000004,2.2591340000000004,3.104146666666667,4.535955,3.236185,3.412815,2.31501,0.9199090909090909,4.27505,3.629395,6.1622,3.691315,2.25033,2.25033,1.43804,3.54988,5.09125,4.265935,4.282415,2.9432766666666663,2.33283,4.38926,3.345085,4.193935,2.84864,2.2322233333333332,4.109493333333333,3.04797,2.582473333333333,1.94878,3.690225,2.7713,1.5241033333333334,3.69278,3.2642,4.529885,3.7054666666666667,5.14,4.42923,6.388254249999999,3.95252,2.0864000000000003,4.64818,2.594275,7.10018,2.5554833333333336,1.2741233333333333,4.486805,3.957966666666667,4.86694,0.6155292857142857,0.8665333333333334,3.58032,3.557435,2.1526643939393937,4.2727,2.87136,3.02235,9.11985,1.92759,1.233792,3.64619,2.578895,3.373605,5.03005,6.2390099999999995,3.1584999999999996,2.1203266666666667,3.078606666666667,1.79031,3.29334,8.559499039408866,0.8586221428571429,1.0083775,4.76441,0.4599646666666667,1.58797,2.0523425,3.136475,3.108475,2.979325,4.81567,2.355475,12.78594,5.193720000000001,2.516575,2.516575,4.11307,0.8167716666666666,4.960713333333333,3.980325,4.21344,5.889293333333333,3.43835,5.49755,1.3857483333333331,2.73365,2.6139,2.704215,3.09137,2.58091,3.15781,3.550435,3.53002,3.03534,3.04461,3.341115,4.208,4.314715,3.07029,3.2540133333333334,4.761460833333334,4.27928,18.429595714285714,11.798812976190476,3.274402142857143,0.7048825,1.4757,4.43626,3.52465,3.1447183974358976,2.049665,0.8714588888888889,0.6679916666666667,0.6331671428571429,2.1001175,1.6196860000000002,5.20768,3.279693333333333,0.7190500000000001,3.387235,2.457285,1.7030025,1.7261399999999998,6.697420000000001,1.562192,4.56793,3.023695,2.9715399999999996,2.31773,2.6285766666666666,2.56915,0.780839090909091,3.38893,3.09305,4.036259333333334,3.0747533333333332,4.726476666666667,3.65109,3.296145,2.4616325,3.464375,5.5092175,2.073355,2.4407425,2.577275,1.6423575,2.582875,2.1114675,2.787275,0.955929,1.35176,1.0403975,2.984195,4.229485,6.13855,5.4496,2.904765,2.39251,2.8789,3.2798133333333332,7.589106666666666,1.2490366666666668,0.363785,3.02226,2.04637,1.495838,3.4471290000000003,1.268402,1.8697103333333334,3.947238333333333,2.940072,1.2149699999999999,1.8078200000000002,3.613085,3.52841,4.449725,3.959215,2.0215,5.0141,4.03426,0.7690315384615385,4.538075,3.91096,4.382815416666666,3.274563333333333,2.39898,1.352942,1.2549625,3.49232,2.6569,3.303285,3.902005,2.812875,2.628013333333333,3.25742,3.682925,4.54929,2.37999,2.80638,4.23366,5.75075,0.57264375,4.61182,1.8229225,3.35161,4.165866666666667,1.752305,3.119495,2.1503775,2.18532,2.630495,2.4116825000000004,1.6732266666666666,4.26432,3.54812,1.2788257142857142,7.26267,1.06317,3.83418,1.7196566666666666,4.65752,4.0535,3.3903,3.261765,3.84002,8.45856,3.013485,3.700945,3.651975,3.631345,1.696835,8.0588,3.71253,4.03871,1.466715,4.154175,3.06532,1.0396675,2.10524,4.15748,2.30858,4.144045,4.997215000000001,4.2248925,4.575565,2.2960575,5.35075,4.061475,3.5810333333333335,2.4609133333333335,1.495042,3.934585,6.0874,4.115735,4.495565,3.12614,2.245055,3.975945,3.389715,1.1906456043956044,4.203295,4.75983,3.771145,2.823545,3.58351,0.5776342857142858,0.5776342857142858,4.48335,4.077705,3.92013,2.2636,3.655555,6.12075,0.8284670000000001,3.63863,4.69085,4.514405,4.805695,4.929135,1.8374975,3.082055,2.113675,4.46503,0.68956875,4.066565,4.10048,2.48973,2.901816666666667,4.220515,2.285515,3.246985,60.26061904545455,3.071555,2.63752,1.6070025,3.23728,3.993495,0.84764,0.974385,2.2093275,2.2093275,1.314136,3.215,2.22785,3.7962545,7.41953,3.0023866666666668,1.2721257142857143,1.3556716666666666,2.76744,4.0637775000000005,0.933133,1.94238,1.2009919999999998,1.9543825,4.24246,4.055055,3.163755,20.607108902597403,3.347625,3.868155,3.282895,2.182793333333333,2.935125,3.368545,2.4870875,5.39605,1.4245139999999998,4.00515,3.3201701706349205,5.882037916666667,1.967535,2.65625,1.87524,3.99119,2.342843333333333,2.186445,2.11781,3.715305555555555,3.46854,3.34409,3.84131,4.26034,2.527825,2.603125,3.045795,2.91799,3.008075555555555,2.215945,2.1177425,3.44826,1.1655849999999999,3.7497,4.48416,2.510335,4.77336,4.89547,5.425283333333333,1.97147,2.406565,2.65042,2.804865,3.90528,3.346615,4.668755,0.7057857142857143,3.893837333333334,3.04218,3.845355,2.3812425,1.8129639999999998,4.03565,1.1725444444444444,2.876245,4.363635,1.137994,3.67487,3.583525,4.750475,6.3536725,2.039095,2.90557,2.673716666666667,3.879566666666667,2.8657266666666668,2.63872,2.9694866666666666,2.42723,2.471836666666667,1.3773233333333332,2.059655,2.059655,1.9402866666666665,2.15502,1.7896066666666668,2.5736733333333333,3.88113,5.60405,4.620515,1.632565,4.35376,4.225765,3.609355,4.184425,1.9022775,1.94333,4.6538691666666665,1.85098,4.249888333333333,3.91154,3.54622,2.4092533333333335,3.69909,3.20094,3.06421,3.551735,0.14681489795918368,2.4134733333333336,7.6597,1.512384,3.423275,3.083705,0.9987014285714286,1.0718216666666667,1.8971,3.818235,2.85716,7.0499849999999995,3.777045,3.76033,3.003575,2.76788,3.357715,3.441555,3.93639,3.464385,2.8605066666666663,5.4628,4.08991,4.257665,2.5492,1.875125,3.430985,4.33652,2.66966,2.7932,2.114625,2.48814,4.26303,3.889055,2.682715,4.69425,5.2768,2.650545,3.940745,3.85659,3.646435,4.387855,3.422855,3.354955,4.99912,4.661515,4.9972,5.2097,4.39051,5.1725825,4.23109,4.14529,1.282334,6.4733,2.450835,4.123785,4.119715,3.91389,3.2514866666666666,1.9959066666666667,2.2191199999999998,2.41751,0.9860070000000001,3.457966666666667,3.9029000000000003,3.1412633333333333,1.95777,3.68813,4.236835,2.687193333333333,0.5444891666666667,4.43038,4.608665,5.1027,4.66907,3.631905,4.63945,4.942185,5.10135,1.3783777777777777,0.9473384615384616,2.9666033333333335,5.3029,5.9264,0.49231625,2.82454,2.5013,3.29351,4.534365,3.8446,2.095005,5.2948,3.933475,4.407385,3.07139,6.56805,5.2377,6.8683125,0.57756,4.220915,0.81586,2.37363,4.113833333333333,3.142416666666667,1.1445966666666667,2.35108,4.237335,3.49512,4.298095,1.9887,2.1049175,3.6077,4.31194,4.23067,3.756615,1.6876460000000002,1.1613964285714284,6.1412,2.2201225,7.752275,4.300005,3.51087,2.2504325,1.6041675,4.067,4.734625,1.7494633333333331,2.40981,2.57145,2.4134733333333336,6.590325833333333,3.0577666666666667,2.7763066666666667,4.0936175,3.91685,1.9622566666666668,3.08954,7.0390775,4.563415,5.0507,0.5232181818181818,3.43224,3.9963,4.848155,3.82172,4.43052,2.987935,2.681975,3.240165,2.74309,3.5373583333333336,2.07056,5.39326,4.807095,5.0858,3.91409,3.42774,3.298426666666667,2.33094,1.2746025,0.9189025,2.79137,2.5269,1.10211,2.65848,5.11295,4.954065,3.79286,4.133725,16.957338095238093,4.01447,4.492305,4.05692,0.6963341666666666,4.98513,4.56975,4.103945,4.86995,5.21355,2.368695,3.616,3.312205,1.450304,3.252935,4.84559,3.1754466666666663,1.5002499999999999,3.71077,5.146,3.944315,4.823175,4.80781,5.3091,3.951315,2.7879,4.236825,4.21503,2.747445,3.05411,3.0262933333333333,1.6101333333333334,4.90024,2.7207857142857144,2.0362066666666667,3.975445,2.14402,4.33211,4.113803333333333,2.34814,2.640975,4.54802,3.73932,4.576575,4.448705,5.1237,4.86616,3.15724,5.4662,2.852426666666667,3.44069,4.510445,1.553164,4.518955,1.0417833333333333,4.462395,3.093525,0.9540414285714285,3.705915,2.02726,6.47825,2.4453680476190476,2.4453680476190476,2.4453680476190476,0.683015,1.1966683333333334,1.87151,3.43912,5.93155,3.348238888888889,1.94238,2.12644,1.74624,3.821455,2.352975,0.41622384615384617,1.682595,2.085795,2.80165,1.90376,2.468365,2.42574,2.076815,3.86516,2.9998299999999998,2.81688,2.944765,2.074735,6.57585,2.03735,4.4047,3.8631,6.365221666666667,1.7312333333333332,3.59097,3.94801,3.58252,3.877545,2.810885,1.985535,3.887175,5.7668585,1.93217,3.68856,3.173905,2.0260325,4.716715,4.377725,2.47313,2.150435,3.600015,5.7546992857142865,6.14695,3.145405,2.506345,2.75175,3.004235,2.65315,4.09512,1.40546,2.77464,4.65488,0.9303325,3.631275,3.961925,3.889415,3.0259,2.48262,3.199625,1.996505,4.48105,8.043905,4.541505,3.438115,3.145205,1.008595,4.48786,2.35969,4.31891,5.592395,4.05754,4.49064,10.652989999999999,4.88636,4.06286,1.491035,0.6817433333333334,2.90403,3.79553,3.298995,3.60283,2.148213333333333,2.3915333333333333,2.12909,1.1884333333333335,1.1884333333333335,1.90227,2.4892866666666666,1.9836266666666666,2.246026666666667,3.4344333333333332,2.554603333333333,2.26399,2.8398299999999996,1.3689366666666667,2.285293333333333,2.0532166666666667,1.9026833333333333,1.58114,2.6131699999999998,0.7268849999999999,9.768191666666667,0.7268849999999999,3.1436433333333333,2.0172233333333334,1.6980266666666666,4.37547,4.275825,3.683075,4.34846,2.1734966666666664,2.9339666666666666,3.262480666666667,2.0473166666666667,3.1989133333333335,2.9024733333333335,2.6560566666666667,2.9441166666666665,1.74352,5.4714,6.352819714285714,3.3656,3.3323666666666667,3.3270366666666664,2.6218533333333336,2.6129000000000002,1.1437000000000002,3.6036333333333332,3.6072333333333333,3.95901,6.10635,4.212335,2.83797,3.5408000000000004,2.9650866666666666,4.171906666666667,4.14007,2.61193,3.586885,3.2384866666666667,3.0208833333333334,4.80524,3.162186666666667,3.7453,5.9969149999999996,1.8437766666666666,2.408916666666667,1.4816066666666667,1.4340866666666667,4.846523333333333,3.296343333333333,2.408576666666667,2.0708766666666665,2.1537466666666667,4.41619,3.628415,2.91275,3.3782666666666668,3.202196666666667,3.4632666666666663,3.421,3.5103666666666666,3.1028066666666665,0.56678,3.6904333333333335,2.541116666666667,2.7139433333333334,3.36663,4.05568,3.965505,5.16275,2.651485,3.792988333333333,1.1255333333333333,2.9195366666666662,2.9195366666666662,4.066165,2.857455,3.73073,3.9332,1.762435,3.382215,3.78361,1.1156885714285714,3.7088866666666664,3.0675640476190478,2.258208333333333,0.389335,4.471355,2.917035,6.49211,2.885805,6.3889,3.36449,3.795715,3.73204,1.6162562500000002,3.098615,4.135265,3.02183,3.4683666666666664,2.997263333333333,5.3897224999999995,2.1298225,0.99111625,1.8467166666666666,1.7227033333333335,5.43315,2.336203333333333,2.4121200000000003,1.7384725,4.313645,3.886625,3.82364,0.566557,4.10746,3.92819,2.46826,2.536486666666667,2.7525033333333333,3.1707344444444443,3.9621433333333336,1.54334,0.6466894736842106,0.7590642857142856,3.4177666666666666,3.86289,5.943933333333334,4.57301,4.11005,5.4805,1.2918914285714287,4.165866666666667,2.201303333333333,0.96925,5.0948,6.1155,2.609795,4.815005,4.04582,6.705316666666667,3.6720333333333333,6.630491666666666,3.83574,2.452167222222222,5.95195,10.185511006410257,2.5162400000000003,0.633645,3.02746,4.150945,2.10643,6.09845,3.847745,3.6604,2.6632000000000002,2.6632000000000002,5.9602,3.34127,4.007535,5.0439,3.7618103809523813,2.3586074285714287,1.10996125,4.92221,2.649765,5.3022025,3.58064,4.183125,2.839785,2.1284775,4.53318,5.1769,3.6029666666666667,4.071395,4.284115,27.589003214285714,1.933265,2.62305,2.3508325,1.7171166666666666,2.5001266666666666,1.0293357142857142,2.8095866666666667,3.1070166666666665,3.5401666666666665,3.02197,0.6056553846153846,3.0582333333333334,3.682545,2.82186,3.1983200000000003,3.5763,5.815815,4.693225,4.096755,3.64164,3.88138,4.05615,3.5,1.7059725,0.9700583333333334,1.4090366666666665,2.282646666666667,1.5639866666666666,2.79518,2.4537,2.3248,2.121846666666667,2.67711,2.06048,1.81196,3.04856,4.285085,3.62512,3.90675,1.32094,3.410933333333333,2.4795166666666666,3.5931,2.1371166666666666,2.627,2.461855,1.4672866666666666,4.393155,6.520058333333333,2.741865,3.594685,3.982085,2.6309,3.3164708333333333,3.5596,3.94709,4.712045,0.31167385456885455,0.31167385456885455,4.995735,5.17085,3.267945,2.88139,5.4563,4.266785,0.6398007692307692,4.95236,4.3479,3.78546,6.56365,4.776065,7.87855,14.235826666666666,12.918385897435899,4.37346,4.309125,2.47948,0.6198592307692308,2.6333766666666665,4.43867,1.3818000000000001,4.77553,3.5196,2.8231800000000002,2.1483333333333334,2.1465666666666667,4.888985,5.25065,8.878322976190477,5.0675,4.011425,7.54294071969697,3.324115,3.3692333333333333,1.4952075,5.531956666666667,1.94949,2.41574,2.735473333333333,0.2551290625,2.8903,3.760135,4.757461666666667,0.772222,1.1815066666666667,3.868535,0.546609,0.546609,2.6463441666666667,3.308396666666667,3.267136666666667,3.767495,4.2387,5.572,3.868595,4.18255,2.814595,3.1181966666666665,2.64386,0.8990166666666667,2.6891200000000004,2.919105,3.09511,7.203474999999999,2.729225,9.633475,3.148875,6.23735,3.04404,2.24956,2.5129,2.774375,1.7636175,2.25521,1.8056675,3.37802,2.38059,4.124555000000001,2.92547,4.061580833333333,4.061580833333333,2.862781666666667,2.862781666666667,8.680035333333333,2.5042266666666664,0.794784,2.5859533333333333,2.4402133333333333,2.519413333333333,4.124555000000001,1.9169820000000002,1.8346019999999998,1.526176,3.78509,3.765555,1.6531925,4.517085,4.09549,5.824265,6.5617350000000005,2.26076,4.11688,6.11482,4.02182,3.1435,2.1876933333333333,3.260455,3.385192121212121,4.075495,5.1752641666666666,7.421472666666666,3.4729687499999997,2.95037,1.143875,4.465265,4.046128666666666,3.65316,3.803306666666667,4.387225,2.73473,2.50286,6.562049999999999,2.987365,1.440396,5.54127,3.82336,2.5218966666666667,5.34905,2.5218966666666667,2.80665,3.71591,5.04175,1.0320157142857143,4.085773333333334,4.509785,3.60534,1.3046,1.706235,3.82362,3.965895,2.494235,6.47233,4.147275,3.884125,4.138565,4.52186,1.3933325,3.831435,2.53642,3.6607,4.051705,3.648235,4.778125,3.108865,3.731195,4.98471,1.849609,1.829975,3.2783533333333335,3.7783333333333338,3.5145666666666666,2.9254700000000002,3.4827999999999997,3.1363266666666667,5.5241,3.32297,3.662555,2.857845,1.9697166666666668,3.5757,2.0424166666666665,3.033395,3.09926,2.981125,0.68956875,2.16348,1.7795366666666668,3.26476,1.819362,3.5752599999999997,4.50596,1.179246,3.1264025,4.583725,0.7451920000000001,1.34831,3.169935,3.93631,3.53399,1.95294,1.7614333333333334,3.37785,2.506708333333333,1.6896333333333333,2.797595,1.88875,1.178258,1.3562825,6.34271,3.258945,2.174515,2.46,2.4369825,3.69318,0.83657,0.34690714285714286,0.78613,4.83975,1.7841291428571429,4.980215,2.181245,1.7499097142857143,2.9404582857142856,1.1905485714285713,0.9867937142857144,0.650298,0.5745685714285714,2.578505,6.3908,3.143205,3.75716,0.353675,3.57995,17.635556238095237,3.067755,6.986501232517482,1.0845025,1.0845025,1.0845025,1.0845025,5.813410833333333,4.101065,4.84067,2.152276666666667,3.10758,4.11036,5.6016,3.630655,3.441265,4.32811,3.975935,3.92634,3.7767453333333334,4.32794,5.06455,4.16612,4.47769,3.461345,4.186815,2.6398433333333333,3.495545,3.30914,3.694555,3.74368,4.289985,3.1976433333333336,2.4405975,2.4704433333333333,4.124305,1.2384514285714285,3.782315,2.54826,3.4689506666666663,4.2248925,4.462855,3.09587,2.733555,4.237875,2.917215,3.19385,5.34085,4.902275,3.148885,3.619365,1.7649519999999999,1.7649519999999999,1.9723125,4.74245,3.88801,5.229407,5.274,3.649995,6.56875,4.77113,2.22422,9.446655,5.30105,6.4588825,4.593315,2.8503399999999997,2.79648,0.25527758620689656,0.92852875,4.21945,3.528095,4.620375,2.889813333333333,5.957258333333334,4.892585,0.5724864285714286,2.850745,0.48352700000000004,1.7292766666666668,3.308255,1.88329,3.61637,3.724,3.36171,3.411095,3.503305,3.693005,3.46688,3.597765,3.547925,2.16359,1.7292766666666668,2.80864,2.1030575,3.75749,2.291695,4.226395,3.482675,1.696835,4.382415,2.948435,1.2802550000000001,4.61796,4.6153,4.244035,2.7482866666666665,2.934483333333333,4.226655,1.9460966666666666,1.4084160000000001,2.3280533333333335,2.51004,2.5829633333333333,2.1893166666666666,4.790525,3.2255,5.0208458333333335,3.9209185714285715,4.805625,4.00496,1.6899539999999997,5.20535,4.5795,5.3212,4.291945,6.768995,1.732565,4.80406,3.400645,3.229345,1.794735,1.7842033333333334,3.93319,4.42578,2.7001566666666665,2.762265833333333,3.27779,3.27779,2.6180566666666665,3.1216500000000003,3.32885,3.9092,3.632895,0.7111423076923077,3.179575,4.42829,5.203678888888889,3.08548,2.97609,1.7793875,2.787195,3.408125,2.09786,4.575695,3.01611,5.00025,1.8539366666666668,1.0318727272727273,6.36646,3.59274,3.3927,3.1060866666666667,1.82167,30.679444642857142,3.988785,3.38825,6.00375,4.58965,0.8712333333333334,7.174650000000001,1.87975,5.67,1.4390133333333335,4.250655,5.192101666666667,3.65924,3.241,2.16681,3.595333333333333,4.88759,2.0109475,2.7937366666666663,3.723425,2.579675,2.528125,5.9543,2.221495,6.36625,1.0771525,4.242415,3.54223,3.82711,5.0571,2.91723,2.23623,4.06031,4.495915,3.62669,3.62669,5.53125,2.24139,4.242435,6.38288,3.467375,4.019565,3.11091,5.42595,3.49158,4.089195,1.3143275,2.13115,4.2707,4.331725,5.6036,4.265715,2.597365,9.532680000000001,3.167445,3.7906,1.7021857142857144,3.52042,2.2458933333333335,2.65941,1.98217375,1.3149433333333334,2.5504533333333335,0.9522957142857144,1.0610357142857143,1.0610357142857143,1.0610357142857143,1.8674033333333335,0.57133375,3.88386,1.2938699999999999,2.64235,0.8659500000000001,1.85522,2.6631266666666664,2.0242466666666665,0.7529125,1.66156,1.4516833333333334,2.3582033333333334,1.61463,1.61463,1.6346866666666668,1.79511,0.887392,1.8364866666666666,1.7015233333333333,1.1657533333333332,2.429565,2.09978,5.919,1.937595,5.83315,17.068239916666666,6.5132449999999995,3.446925,3.6886533333333333,3.4678,2.763576666666667,2.6227066666666667,2.96994,0.7167091666666666,0.982123,0.982123,0.68525625,2.3838500000000002,3.811735,3.26486,1.550108,5.0304,3.853745,2.442155,3.979135,5.21035,3.980695,4.248045,3.5396,3.16853,3.449265,5.7007,3.12281,4.862905,0.525946,0.525946,2.24384,2.59018,4.697175,3.45906,3.84161,4.853775,7.56175,7.48672,3.65909,2.51725,4.569295,3.48609,2.5752166666666665,2.3706,3.81675,1.3281133333333333,4.010675,2.433095,1.6705525,3.5683333333333334,3.82254,2.04225,5.1752641666666666,1.6281375,3.571733333333333,3.174625,1.0557228571428572,3.6329333333333333,2.76389,4.310435,1.1542316666666668,1.7661675,2.292855,2.14171,1.6696,2.4438825,1.8810575,1.9664125,4.188775,4.401825,2.47962,1.839615,1.5133933333333334,3.5136000000000003,2.06694,2.72685,4.67489,7.3487,2.5067416666666666,2.927345,3.471865,3.575365,2.36718,5.0052,4.076115,3.198585,1.341575,4.54031,2.29047,3.3403666666666667,2.513135,3.59172,5.0024,5.5645,2.40854,2.7414633333333334,2.760543333333333,3.5151,2.03785,1.475662,5.42675,3.4967333333333332,2.2901730909090907,3.18789,2.96344,2.39085,3.3714333333333335,3.110863333333333,3.4519,5.3014,4.389565,2.9749733333333332,4.920675,3.246615,2.375055,3.501985,3.818805,4.34918,6.294344000000001,1.84489,3.92338,2.478745,3.17772,3.582875,0.56539875,2.290425,2.198545,3.383,2.691645,2.21134,2.77755,0.6248630000000001,2.7609,4.387775,2.542225,4.356265,2.4593633333333336,4.04333,2.038605,4.57789,4.42511,2.09408,2.792335,7.0560575,3.974585,4.404015,4.94785,6.959596704545454,4.365185,4.29776,2.1615225,4.49667,2.79216,1.8679533333333334,1.9155775,1.9665800000000002,1.0015442857142858,2.5787566666666666,2.34918,2.6082266666666665,3.368066666666667,1.7760179999999999,3.238125,1.9125466666666666,4.159695,4.831335,1.02409375,1.8306666666666667,2.50259,2.81561,1.94378,1.0923800000000001,5.48122,2.171045,2.642583333333333,2.55448,2.412923333333333,2.6689566666666664,3.129025,2.24368,2.5817566666666667,2.130996666666667,3.93147,3.43537,3.900925,3.2270033333333337,3.0556966666666665,0.686557,1.9124166666666669,2.15324,2.0197033333333336,2.56514,1.1360266666666667,2.70994,2.962203333333333,3.92897,2.048826666666667,3.389155,3.0827,4.965735,3.207815,0.5968591666666666,2.1558599999999997,2.86826,3.325036666666667,0.8068227272727273,2.7889866666666667,3.393116,3.2028266666666667,2.9418933333333332,3.3173899999999996,3.74659,3.7703666666666664,3.1376866666666667,2.070465,5.6031,5.08955,5.02335,5.6432,5.62525,1.7678533333333333,3.23499,3.7373333333333334,3.3798333333333335,2.885923333333333,2.76268,3.99,3.7124,2.9063033333333332,13.987383333333334,4.417075,1.19899,2.80911,1.559216,3.1576566666666666,3.20705,2.3165400000000003,5.632455,6.6645311666666665,2.34056,0.8586389999999999,4.190965,3.4878666666666667,3.004135,4.659965,5.42025,5.6835,4.85167,3.52043,1.93204,6.427725,1.143875,6.576467500000001,4.846835,2.5374966666666667,3.858395,7.319086666666667,5.9328,2.12497,1.46835,2.1129175,7.126338333333334,1.5249,2.96097,2.6001866666666666,4.149704444444445,5.7719,4.36344,6.4491,3.573075,5.265,3.79513,9.36156,4.934535,5.888,2.4827,2.578425,11.236965,3.426025,2.371675,2.47367,1.65167,2.1918833333333336,3.6648333333333336,0.68335125,1.164556,1.0874285714285714,3.26182,6.972743333333333,3.0223793333333333,1.36967,4.62902,3.99557,0.5757749999999999,4.5373,4.276395,4.89484,3.365945,3.358465,2.7368666666666663,4.15739,9.99175,1.875665,4.058475,4.03709,4.608915,3.632135,0.8729666666666667,3.603066666666667,4.113866666666667,1.7196833333333332,2.4266866666666664,2.3642266666666667,2.5456133333333333,2.2655166666666666,2.1609633333333336,2.198515,5.8118807142857145,5.3189,3.52785,4.981198333333333,1.7480833333333334,2.3912075,4.842275,4.446845,4.577345,4.288325,4.63901,4.69423,1.7649519999999999,3.621535,7.787800000000001,1.1715583333333333,1.8129833333333334,2.5000033333333334,2.4928233333333334,2.85346,4.7396598333333335,0.7590642857142856,2.43553,3.431005,6.3913,4.59848,2.2223866666666665,2.9157433333333334,2.0349775,0.560695,2.5537,2.85596,7.766484999999999,4.30766,4.385265,0.905883,4.745066666666667,9.24473475,10.820635000000001,3.34592,1.19828125,3.64093,3.58431,2.53669,5.330132,4.876185,3.95401,2.0018975,3.8308666666666666,2.170036666666667,2.6059366666666666,0.7693172727272728,0.3996,2.37819,3.43206,2.1152961666666665,3.37017,3.048386666666667,3.789905,5.34955,1.50552,3.0327366666666666,2.32688,2.32688,2.203885,3.39762,6.737,2.6422033333333332,2.3607299999999998,3.3783666666666665,3.4553,4.31218,4.48692,4.36407,4.12056,4.08676,4.20425,7.0702,7.99214,2.05539,2.19198,3.0549033333333333,0.8901116666666667,0.6863608333333334,4.327735,2.315365,5.4058,2.923643333333333,3.0993166666666667,1.837012,1.4636725,4.037235,4.34288,4.366245,2.1114166666666665,1.3121166666666666,2.659656666666667,2.04432,2.607083333333333,1.115592857142857,1.115592857142857,2.7079,5.2825,2.98162,2.949525,3.388275,2.07668,19.996374545454547,3.82663,5.176355,4.53119,4.13831,3.91102,3.68698,5.67155,6.278874999999999,0.8656133333333332,0.8656133333333332,0.8656133333333332,2.6840733333333335,1.7433571428571428,3.4669666666666665,4.05959,3.758015,3.305345,4.03686,4.587715,0.80049,2.10896,2.16605,5.741270999999999,3.179671,3.9635059999999998,5.0387,1.752305,1.9837566666666666,2.2988500000000003,0.524785,0.870552,1.8428,2.037915,2.78646,13.058116666666667,2.6204266666666665,5.4416,0.7842785714285715,9.59527,5.67495,3.60611,4.15591,2.7178,5.4429,2.7178,2.811084,3.33207,3.884205,3.527755,4.2057,4.37982,3.47709,5.8878,6.7272739999999995,1.8427066666666667,2.3354039999999996,2.6967,26.732581425997427,1.4867279999999998,6.42095,3.822132,3.874065,4.399105,4.255385,2.747255,2.861285,2.54084,6.7521,7.162,4.733075,4.68313,4.271285,1.90346,2.21795,4.30242,0.3321030769230769,0.3321030769230769,0.3321030769230769,0.3321030769230769,4.05474,3.2381816666666667,0.9531366666666666,1.8888833333333332,1.1629444444444443,4.34645,2.47004,2.3597575,7.188931666666667,3.1905566666666663,0.1798655172413793,20.631401,4.770266666666667,1.7523360000000001,1.347845714285714,2.16668,1.99637,2.29944,4.699525,3.81416,3.45486,4.336975,2.0434933333333336,7.351929999999999,2.75526,1.953745,4.268745,5.84875,8.773060000000001,4.22575,0.3006463414634146,3.53012,3.94495,2.771796666666667,2.0268175,2.98071,1.6121866666666669,1.6121866666666669,3.99439,5.9383925,11.309236666666667,9.093924999999999,0.5796166666666667,2.42578,3.88697,3.20431,5.55885,3.430195,1.327456,1.327456,3.435205,3.82141,2.9135066666666667,3.61085,4.373,5.39625,6.850445000000001,2.28262,4.71909,4.147305,2.581815,3.072786666666667,3.0113066666666666,4.76094,4.323835,5.42945,4.21718,4.55349,3.888685,4.33026,4.247015,5.4432,2.567016666666667,3.155193333333333,1.10246,4.55909,4.16329,3.71585,1.682534,1.8924,3.5637000000000003,2.7440766666666665,2.1540166666666667,4.2256800000000005,1.7159666666666666,1.9600225,2.53727,1.92943,2.2527266666666668,1.9163866666666667,4.074066666666667,3.200153333333333,4.267233333333333,3.292885833333333,1.91763,2.6255433333333333,1.9982833333333332,4.028415,2.0509733333333333,37.84857516666666,2.1577640000000002,2.1577640000000002,2.52379,2.2992333333333335,2.18861,1.70791,2.9830366666666666,1.8186933333333333,0.8166230769230769,5.04205,6.958435,4.15871,3.839175,5.5434,1.90175,4.419805,1.8074059999999998,4.98743,4.856805,5.6977,4.05597,1.7059725,3.953865,3.858985,4.493225,4.45326,5.26015,3.912695,3.635666666666667,2.65188,2.0006025,1.85138,4.478965,2.564826666666667,3.808275,3.808275,2.2809666666666666,1.5344499999999999,2.13379,2.5180533333333335,2.2845999999999997,5.00871,2.7094066666666667,1.138275,1.138275,2.2425366666666666,1.9617266666666666,2.5252466666666664,2.6409733333333336,2.580013333333333,2.3716566666666665,2.213443333333333,2.1833165,3.0067265,1.6455525,0.82341,61.81251273611111,2.56625,3.3503666666666665,2.465528,0.9515739999999999,3.843424,1.5939640000000002,1.5939640000000002,3.1537100000000002,2.9581700000000004,0.8221425,2.9795433333333334,5.60668,3.3224633333333333,2.3441966666666665,2.8176,2.1239066666666666,2.6279719999999998,0.29948875,3.4128000000000003,0.797542,2.564503333333333,1.333086,1.333086,3.288866666666667,1.448814,2.7449399999999997,1.6222493333333332,3.4438666666666666,1.6222493333333332,2.1280533333333334,2.52655,3.26026,1.3288980000000001,1.3288980000000001,2.9174433333333334,1.4286866666666667,3.228823333333333,2.207003333333333,4.411825,3.89004,12.208505083333334,6.9514,3.45547,2.516915,3.85867,5.4503,5.58865,2.70182,3.88606,3.673295,2.3504666666666667,4.147115,3.4061,2.8059066666666665,4.867295,2.142916666666667,1.0600985714285713,3.7594075,2.94485,2.90997,0.7895157142857142,2.698685,3.50727,4.129005,4.34127,6.5917,2.1344433333333335,1.857378,4.40486,4.33893,2.367485,2.3922983333333336,1.9308733333333334,2.2016293333333334,0.959456,4.996835,4.40674,3.692495,3.774425,3.0064266666666666,5.2127,5.0969,2.7990566666666665,1.71839,0.5256846666666667,14.792055333333334,0.5302045454545454,0.5302045454545454,0.5302045454545454,3.09383,4.022166666666666,0.5302045454545454,6.8921399999999995,4.38835,0.708943,0.708943,3.4339666666666666,3.333805,2.953485,4.36485,5.1025,4.2353525,2.2747450000000002,4.7892980000000005,3.223005,3.5322606547619047,4.68067,2.8808517499999997,2.458035,2.4448125,2.802425,1.5396,3.3253975000000002,2.986333333333333,2.3266575,2.06757,2.03187,1.7920166666666668,1.6039675,2.72715,1.0718055555555557,2.517925,0.6070321428571429,5.41655,1.65667,0.6539091666666667,2.0831525,7.807668333333333,2.600605,2.0507015,3.246115,7.2952,2.41769,4.29383,3.070465,5.95557,3.237515,3.839645,4.04089,4.45047,3.0235866666666666,4.388999999999999,1.1522042857142856,4.267175,2.4252366666666667,2.52529,2.53911,2.32026,2.21016,1.2726875,5.7704,0.9465545454545455,4.944915,5.57995,5.02215,5.3635,3.551966666666667,2.4080833333333334,2.0045200000000003,3.0063099999999996,2.9965566666666668,2.539815,3.9144666666666663,2.751775,5.05165,1.855756,40.4790726984127,4.941605,2.4191933333333333,2.3852366666666667,2.9089833333333335,1.6794833333333334,5.965666666666667,3.859625,2.39029,3.347766666666667,2.3702466666666666,1.6297175,5.12165,0.7876071428571428,4.4947735714285715,1.3026700000000002,3.30421,3.2464766666666667,2.8268733333333333,1.4292125,4.496026,1.705386,1.705386,2.3885633333333334,2.8131316666666666,3.3830666666666667,3.3821,1.4358166666666667,2.8989333333333334,2.72315,6.3760683333333334,2.836203333333333,4.062601666666667,1.4933766666666666,1.39229,3.025673333333333,0.9189,5.205164999999999,3.4398999999999997,2.9001333333333332,3.5102666666666664,2.8700200000000002,2.7477466666666666,3.30846,1.7637466666666668,2.4369825,2.5528766666666667,3.4849,2.4957266666666666,3.7584666666666666,2.0945766666666668,0.6328606666666666,10.0027025,2.7708033333333333,5.32485,5.1245,2.7848100000000002,3.0596099999999997,1.39207,2.24585,2.10727,1.39207,4.148905,0.447848125,0.447848125,1.413895,1.413895,0.86963,0.86963,2.49878,3.21761,2.433325,1.642875,1.69587,3.77102,2.873785,4.738045,5.48055,1.891046,4.44179,2.405355,4.634868974358975,1.70208,1.70208,1.90043,1.7456140000000002,3.7110416666666666,2.01283,4.50284,1.64511,2.708025,0.5411884615384616,1.1842742857142858,2.1014375,2.2580975,1.94297,1.358475,4.3382,4.478395,2.14539,2.48657,1.35571,0.7211841666666667,2.4689799999999997,3.40228,2.9735033333333334,4.751575,5.11845,4.956295,3.755925,6.613804999999999,1.5223266666666666,6.257095,1.83086,4.643715,4.659035,5.712921,3.2758066666666665,2.38088,1.746905,1.967594,1.967594,2.4624175,2.4624175,4.34695,5.84215,0.8868600000000001,3.946055,3.45718,3.378675,2.6120933333333336,1.39144,2.80301,4.24309,4.232975,1.770024,6.57895,4.84661,1.7074433333333332,1.292025,4.024685,4.18139,3.49775,3.53296,4.037995,0.6769735714285714,3.9328000000000003,3.4687,2.7377599999999997,2.9259866666666667,2.235183333333333,3.784966666666667,1.5536428571428573,1.5536428571428573,1.5536428571428573,2.8834400000000002,3.082936666666667,3.3574,3.3435551904761907,2.3120775,1.2254085714285714,3.22976,3.19732,1.3710771428571429,2.739216666666667,2.7394,1.2713857142857141,2.58543,2.917173333333333,2.912126666666667,2.79879,2.507816666666667,1.9255225,3.168176666666667,4.680518,4.333175,0.961127,1.484902,0.5986130000000001,3.5793,9.038715,2.9706466666666667,3.36827,3.0749766666666667,4.297128333333333,1.892565,7.702926666666667,6.703953333333333,2.6893333333333334,2.210202285714286,3.9871,4.674945,1.587306,1.20223,1.401216,1.96162,10.809819999999998,2.755103333333333,3.094003333333333,2.853016666666667,3.727335,2.12649,1.14094,6.05875,1.1761633333333334,3.141242692307692,4.88996,3.063405,3.3653333333333335,3.08119,4.73891,1.1444483333333333,2.20338,1.962674,1.962674,3.921225,5.7894,9.5057675,4.3282,3.424875,4.765865,1.7483775,2.3380658333333333,4.5437,3.64558,3.8331,1.5656916666666667,2.93572,3.529865,3.78388,2.4678425,3.86422,3.73851,3.726435,4.053665,3.99784,3.91037,5.59725,3.312136666666667,2.5152733333333335,4.39079,2.99131,3.793795,2.01947,2.49319,2.577995,5.62225,2.514705,3.243919147727273,1.67963,2.431065,3.22894,2.17676,2.0777425,0.8927683333333333,0.8927683333333333,1.75516,3.743409090909091,4.1203,2.94563,4.37111,3.1460275,2.5139662857142855,0.97756875,3.26228,1.48056,4.30197,4.071335,0.9016004166666667,1.9043375,3.975625,3.00152,1.596995,1.6053199999999999,5.131164285714286,0.9155533333333333,2.71587,3.170825,2.72694,2.44471,2.7494050000000003,2.066105,0.9910075,2.90138,3.02471,3.356575,1.5733333333333333,1.4946233333333332,1.81424,4.411615,2.23486,4.48146,4.61529,4.715435,6.2498,4.963755,4.02638,6.117395,3.9273442857142857,0.8064936363636364,3.109805,4.24281,3.722675,0.5041954545454546,0.9171860000000001,2.9512,3.848965,4.797665,4.178915,3.2036035714285713,2.90534,4.54158,1.762792,2.604975,4.4595,4.2787575,3.333635,2.962675,3.59484,4.522685,2.915235,5.2728375,0.9094,3.142135,2.938665,4.28181,4.45049,4.6256,2.2995200000000002,2.47929,3.011975,1.8979566666666667,4.970885,3.50466,1.3788171428571427,2.80052,4.0163675,1.421984,6.00479,1.878088,2.596436666666667,13.652214360098965,2.8373866666666667,1.4721566666666668,1.6293383333333333,2.0889666666666664,5.553979999999999,1.6876460000000002,4.080342333333333,0.6320538461538461,3.3215833333333333,3.732755,7.6378775,2.42053,2.909523333333333,2.909523333333333,4.63168,4.316205,3.51016,3.265715,4.865515,5.265,2.382085,3.201693333333333,4.53553,1.2422633333333333,2.448846666666667,4.593635,3.864505,2.88797,2.2257633333333335,3.776605,3.444215,6.111248333333334,6.41193,0.685137,4.166175,3.25077,3.8830333333333336,4.17175,3.939415,3.79262,1.4563739999999998,5.1771,2.37921,2.74415,4.20259,4.27409,4.539385,0.8807199285714286,2.657696666666667,9.016755666666667,1.5163516666666668,2.1754293506493507,2.343115,3.776495,3.552245,3.25029,0.6319372727272727,2.4040925,1.68625,2.2438075,4.34834,5.546843333333333,2.8571400000000002,9.067035,2.462616666666667,2.6761666666666666,1.08048,4.57571,5.0775,2.10729,5.552396666666667,2.707185,3.136415,5.4019,4.43689,4.840755,2.14408,1.566895,1.566895,2.77786,3.27931,4.735538333333333,1.475535,5.784791666666667,1.5573666666666668,3.667835,1.3080616666666667,8.708749,4.76143,2.744435,3.9854,3.71873,3.988905,1.112325,1.9936025,3.516766666666667,3.0713833333333334,3.3794,3.6884333333333337,3.655635,2.797135,3.185745,3.23944,1.47739,2.5518433333333332,1.9588666666666665,2.928796666666667,1.84523,5.264780833333333,3.2515300000000003,1.7556766666666668,2.818756666666667,3.317725,3.04343,6.37685,5.9233,2.95992,3.599425,2.9721,3.11691,2.87964,1.2570133333333333,1.018446,6.448485,2.980065,5.92735,4.4906,6.41925,2.85578,2.8577999999999997,6.6189,2.538,0.4198983333333333,5.73745,3.15616,3.76605,3.3682666666666665,1.4752857142857143,4.116035,1.057936,4.628775,0.90898875,1.3918133333333333,2.9893666666666667,2.4141933333333334,3.0064385714285717,3.5789,4.69184,6.0377616666666665,6.0377616666666665,4.8837425,4.8837425,4.759145,3.11998,4.50168,0.94540125,6.11805,3.375425,3.741733333333333,3.775745,3.793815,5.5962,1.9787325,5.08935,3.180844,2.849125,4.093605,2.635335,4.854325,5.2999,3.609175,3.44158,5.25795,3.92345,6.218,2.941415,2.5624166666666666,5.9479,4.168505,2.8376633333333334,6.1535416666666665,1.5353633333333334,2.1095225,4.85555,4.420655,5.06015,3.878055,1.997429,1.997429,13.176957404761906,12.5302,5.1094,3.248435,2.9959935897435894,4.504755,4.648785,2.6233866666666668,3.3151466666666667,3.10733,4.2819666666666665,3.6408666666666663,5.1143,2.036715,8.368756666666668,2.366885,1.94298,5.9943,2.40231,5.0741,4.44903,4.84068,0.7536333333333334,3.238025,3.49699,0.90242,2.996255,4.3025166666666665,1.4311719999999999,1.9423700000000002,2.8551,2.66745,2.2322433333333334,3.129443333333333,2.2821966666666667,0.4219342857142857,2.5546933333333333,2.7425800000000002,2.7977633333333336,3.1537466666666667,1.465916,3.066853333333333,7.212881666666667,4.47407,2.255716666666667,1.8952633333333333,2.5764366666666665,3.638325,2.41481,3.517923,18.029615,5.42125,3.4214260000000003,4.680705,3.784465,5.476295,1.63289,6.126,1.5176233333333335,4.842595,4.846945,5.514,4.98468,0.9865984210526315,6.80585,2.41352,4.86945,2.83223,4.402965,3.594805,2.864105,2.3981233333333334,1.529326,1.9329975,4.49703,4.72601,2.230685,1.66577,3.0561633333333336,4.021686666666667,2.82532,6.2788,2.0320175,3.272035,4.95402,4.596515,4.257005,2.74991,4.046625,4.871345,4.068965,2.6654466666666665,2.6654466666666665,5.764203888888888,2.0760666666666667,2.668623333333333,3.940875,1.746498,7.45559,3.54538,4.342636666666667,4.405266666666667,4.304965,1.801486,4.21254,5.66095,4.117455,2.0398025,3.613295,3.24238,1.3164775,1.3152325,1.2765,0.6813866666666667,1.7184766666666667,0.97548,4.61412,0.9406488888888889,2.5801966666666667,1.6024766666666668,1.8340125,1.0488033333333333,1.88275,2.26649,1.5595375,2.907923333333333,2.65677,4.820005,1.5320216666666668,2.65295,3.09422,2.891196666666667,2.32661,4.390831666666667,4.714295,4.893693333333333,19.10103425,2.826086666666667,2.19313,0.64421,0.615468,4.140931666666666,1.9735800000000001,4.148455,4.92121,6.930685333333333,3.58935,3.485855,3.96355,3.17638,3.2823933333333333,3.1079033333333332,3.9897666666666667,3.26797,6.638,3.77211,0.92663,1.1296725,5.3616,3.09018,2.5700133333333333,2.1384833333333333,2.1933966666666667,5.71075,4.98119,2.228745,2.3116333333333334,3.345,4.92433,8.517823333333334,5.1078149999999996,4.109815,4.092235,5.4327,4.69297,4.26256,4.80481,3.853445,5.19265,1.752255,5.67245,1.5886571428571428,5.0855,0.74532,5.0038,5.53485,6.1261,6.10105,4.64723,5.96925,6.00705,6.5381325,2.02975,1.5897000000000001,5.6104,3.932135,6.950088333333333,5.12895,5.5282675,5.07595,6.4563,1.3139699999999999,4.466355,5.29685,4.237933333333333,4.81023,5.09715,2.71255,4.00127,2.597945,4.33374,1.0020499999999999,1.589295,1.375636,4.900065,4.00498,3.225145,1.9430500000000002,2.9545433333333335,1.5023033333333335,2.178246666666667,0.38246,3.5512,1.632876,2.389385,2.96341,2.3035033333333335,3.1998533333333334,2.716925,2.501325,10.280649333333333,3.933533333333333,1.8466530769230771,3.49725,0.9266636363636365,4.4640362499999995,1.1696625,1.6338725,1.9442775,1.0663825,5.793937666666667,1.149112638888889,1.149112638888889,1.149112638888889,3.0147733333333337,1.870502,5.27985,3.11895,1.3784625,1.478415,2.1943025,1.304925,1.98272,5.405019166666667,0.8405366666666666,4.355055,4.347335,3.1798800000000003,1.0164442857142857,2.113675,1.84589,1.84589,1.4321566666666667,3.7854150000000004,4.412105,5.4375,5.77335,4.29132,5.3669,2.917173333333333,1.9696075,2.75627,5.23855,3.335185,4.1929,1.027665,3.9211899999999997,5.2896,1.86459,4.435535,3.0917033333333332,4.71476,4.647665,2.62237,7.08675,6.23115,3.789385,4.542225,4.282925,3.26562,7.92538,3.917485,5.322008333333334,3.30989,2.6997,5.205,2.6405499999999997,5.5621,4.282535,2.75217,3.170395,3.936675,1.2528066666666666,10.5845425,4.032555,3.166875,15.371940178571428,4.50246,1.7542966666666666,2.881963333333333,2.1109,2.31301,3.217925,2.559210486111111,2.86036,2.8218,2.97081,4.04623,6.316415000000001,1.3674566666666665,2.00009,4.15626,4.24913,4.666225,2.3617325,0.6055406666666666,4.431815,4.2175,2.08758,1.3612333333333335,4.55818,4.605245,0.8979144444444445,3.609455,12.454803333333334,1.2901937142857143,0.39079071428571427,3.4211333333333336,4.604883333333333,1.0986633333333333,3.5875,4.14552,6.347878333333333,1.2795783333333333,3.26711,3.89174,3.377645,4.445215,4.425895,4.108955,8.20141,3.0854,4.711425,5.7577,16.017345,3.5074449999999997,2.917025,1.11278,2.014465,1.2471475,2.20444,1.2561525,1.9920425,1.6710425,1.988575,2.4102625,2.3404925,2.17842,5.43955,4.60172,5.9034,3.07081,5.645738333333334,2.8701933333333334,5.05145,3.5472,1.2596125,3.82452,2.0452475,2.807938,4.58701,4.82591,4.967595,4.45576,3.6592000000000002,3.8625000000000003,2.42958,3.553525,3.78294,2.278105,1.80762,3.6171,4.208775,3.568505,2.4072666666666667,12.740713333333334,0.7236666666666667,2.685095,4.902065,2.4871879999999997,1.0717240000000001,2.82874,7.420726666666667,7.196246666666666,4.477505,3.927165,4.101115,2.1132275,2.189695,2.8524356666666666,2.0531466666666667,3.7788716666666664,5.25745,4.310705,0.46599866666666667,6.33805,3.3585333333333334,3.3117900000000002,3.7043,6.1776,8.94222175,4.633508,1.04867375,2.1395225,2.19383,3.764255,2.623355,4.14017,4.35681,3.5352333333333337,2.6480266666666665,4.05534,4.091675,3.712755,4.4336,1.7757833333333333,3.778865,5.2164,5.55505,3.230613333333333,2.2313625,2.2195833333333335,29.989854794871793,1.504555,1.504555,2.4706333333333332,5.417619999999999,3.91968,4.58172,3.05048,2.83555,4.9953,3.1273133333333334,4.20825,3.1273133333333334,3.50981,1.8737633333333334,1.9472466666666666,6.1162,2.7491,4.964525,3.281025,2.646185,6.528578333333334,2.0772866666666667,4.593575,5.38595,3.647985,3.445685,5.0213,2.1045000000000003,5.06695,3.5795775,7.483571666666666,5.464475833333333,2.8197,3.88577,4.230895,2.09919,2.4621366666666664,3.5088666666666666,0.4522285714285714,3.1941699999999997,10.05132,4.08217,3.605665,5.0382,3.275869166666667,3.1099,1.3126457142857144,4.213635,5.45585,3.27048,2.33256,4.19141,3.76488,4.36012,4.34862,2.955075,2.955075,4.110975,2.762515,2.547781590909091,1.993025,4.97173,4.075395,0.9585400000000001,3.634,4.847215,2.8734,7.1223425,7.77202,1.48217,4.185605,4.85298,6.862068,0.730896,7.76103,3.5904833333333332,0.6210254545454545,5.37575,5.2232,5.0011,4.38751,4.79782,4.442025,4.98071,3.83929,4.045475,4.47703,5.4991,4.71857,4.61102,3.873,2.792875,4.068045,4.24331,0.9590020000000001,4.6911,2.3172,1.703425,4.54377,4.233205,5.76395,1.047267142857143,4.966215,2.932975,2.69801,1.5989725,1.2145633333333332,11.486995833333333,2.239856666666667,3.0848933333333335,1.8375366666666666,3.721115238095238,5.355973333333333,6.038788333333334,2.637633333333333,2.007426666666667,2.17704,2.17704,2.17704,1.4504033333333333,3.90861,3.97909,3.46206,4.575675,8.207695000000001,4.173445,1.093224,2.21543,3.009235,2.149055,1.824748,4.07056,2.7284,1.4037366666666669,3.07761,5.493892142857143,5.905965,4.046615,4.100305,3.1535933333333332,5.163,4.614515,5.5535966666666665,1.9055575,1.9055575,4.02112,3.69277,2.704435666666667,2.704435666666667,3.925555,1.2981014285714285,5.13055,3.380875,4.33699,4.043965,3.92098,3.314493333333333,1.0562871428571428,4.34569,5.13835,4.19916,4.73843,4.94442,4.91409,4.47433,1.937405,1.44024,3.442015,3.8211,3.28459,4.44722,2.09006,2.8775,5.2537,2.84122,4.716545,7.423355,2.275393333333333,3.0544783333333334,4.375927142857142,5.009143333333333,1.6050975,2.048019523809524,0.9723466666666667,2.048019523809524,1.6144299999999998,1.6144299999999998,1.533802,5.1935,3.09222,3.86399,2.38026,3.82479,1.5177816666666668,5.4434,3.090525,1.6844375,3.1115166666666667,3.428165,3.824195,6.572245000000001,4.70248,1.2613400000000001,0.8249,3.66171,6.865858333333334,2.4653233333333335,3.75322,3.53011,3.53011,2.27795,3.43904,3.24273,1.4351877272727271,3.1393066666666667,3.370185,3.106955,4.371455,3.9599824999999997,1.580255,3.774705,4.40055,4.92453,5.14675,4.086075,1.7190825,2.176015,1.3598666666666668,2.2285275,3.605045,1.8870475,4.71755,3.2603266666666664,3.589425,4.20866,5.24535,1.89228,0.956006,1.8240733333333334,1.42294,1.1725222222222222,5.06755,4.031995,1.10246,0.3814,0.3814,0.3814,3.583265,5.803261666666667,4.58573,5.3442,5.01505,5.5025,4.685045,4.40872,2.686835,3.62077,1.62423,4.83578,4.197215,3.93949,4.418295,4.285475,0.7154354545454545,0.7154354545454545,0.7154354545454545,0.7154354545454545,0.937618,0.937618,4.049075,3.98871,3.542135,2.84697,2.45567,6.179,5.1057,5.55135,4.29896,3.123893333333333,2.55947,10.0776,1.62194,1.62194,4.010305,5.34185,3.2828866666666667,0.447848125,0.447848125,0.447848125,0.447848125,0.447848125,0.447848125,4.6146883333333335,5.00385,3.600595,4.550785,2.9283825,2.9283825,2.805425,3.3190749999999998,2.4791433333333335,2.738305,3.506125,7.032813666666666,1.375592,4.54732,3.74743,4.030665,9.234585,2.30881,2.673005,1.0125357142857143,1.949025,5.0308,2.87521,0.8793375,2.8341766666666666,4.272755,5.5267,2.68225,4.731081805555555,0.8472555555555555,1.9978766666666665,4.89619,4.8755,2.7573214999999998,2.437813333333333,2.00904,1.3888816666666666,7.004976666666668,3.4135000000000004,1.9588333333333334,3.143055,2.6240249999999996,3.47731,3.774915,2.7512066666666666,3.25733,5.98635,1.4420116666666667,4.32052,5.20775,3.40164,3.92764,1.98934,2.968005,3.763515,3.72342,2.88364,4.850735,4.51003,2.819523333333333,1.8319812500000001,2.8443199999999997,2.9130566666666664,2.8796866666666667,0.7875754545454545,2.1900575,8.338967499999999,0.471535,3.0234133333333335,1.5878466666666666,2.5874966666666666,3.3887,2.764803333333333,1.2668555555555556,1.7223,2.7282966666666666,2.13962,3.723865,2.03314,2.67724,1.4511466666666666,3.329058,2.089535,1.1304071428571427,2.9111999999999996,2.1602475,2.367176666666667,2.6910166666666666,3.352066666666667,3.15896,3.497733333333333,3.09717,2.8785966666666667,3.5706333333333333,2.7796766666666666,2.837225,1.7015933333333333,2.31214,2.6267766666666668,1.58859,3.239803333333333,3.8887538095238092,2.9595000000000002,2.41383,2.8806733333333336,3.6721333333333335,4.749915,3.1173300000000004,1.7817442857142858,1.7817442857142858,2.45316,1.0686525,2.44789,3.3650649999999995,4.601134999999999,2.78815,2.07153,2.08846,2.09101,3.65483,2.963285,3.74119,3.60491,1.750425,2.470476666666667,4.01492,1.105106,1.105106,1.9689975,0.5665184615384615,2.252256730769231,1.628365,1.628365,2.6823,2.4100733333333335,3.278036666666667,2.5875016666666664,2.00465,5.5384166666666665,3.8290725,3.8290725,3.57101,3.069015,2.257845,2.944925,2.550075,2.872455,5.0254475,0.4828491666666667,0.666736,4.196565,2.174035,2.956225,6.49292,3.76699,1.636758,5.198493333333333,4.68662,4.23426,4.326915,5.36915,5.14545,13.543415,3.618535,1.5842866666666666,3.00265,3.768,5.14205,2.84878,3.97485,4.28211,3.702245,3.49275,2.88514,2.86921,2.66404,2.4299933333333334,2.4299933333333334,3.90052,2.4879,3.09803,3.305235,2.297195,2.534715,2.2295575,1.88114,1.9651475,2.2338875,1.7076575,3.385867,3.355045,2.57935,7.2853575,3.45535,2.3267633333333335,1.90852,3.416565,3.921415,3.60999,3.1326718749999998,3.519655,3.211425,4.327485,3.61701,3.861485,3.98495,3.466417,3.52616,0.617115,0.617115,0.617115,3.39889,2.29527,5.541,2.509845,3.785675,7.005256666666667,2.7043166666666667,0.36421423076923076,5.4101,0.757897,4.247081428571429,1.850645,3.873925,1.870865,3.86413,5.218281666666667,4.249345,3.97623,2.761556666666667,2.95084,1.5065866666666665,2.78477,0.4029442105263158,0.5509305882352941,2.6995066666666667,1.3950133333333332,1.8892675,3.78359,2.8074,4.913905,2.79722,3.059708333333334,3.50335,5.79747,1.662905,0.9053814285714286,2.390735,3.792714,1.2306125974025974,4.98752,3.938405,3.726825,2.7654433333333333,4.390215,2.5399533333333335,2.5165666666666664,2.3866366666666665,2.3917875,2.710046666666667,2.17196,3.0291366666666666,2.50585,5.504363333333333,2.2761275,2.0267399999999998,2.17215,5.220993333333333,3.248686,3.248686,2.53908,3.921805,2.31204,3.474575,2.92109,0.56096,4.293995,1.8305025,11.8199,6.9236,2.826045,3.52977,3.35494,4.47969,2.73583,3.293525,0.25731,1.9205275,3.4415666666666667,0.814435,3.83012,1.33113,4.96921,3.32923,3.308375,3.582795,3.15693,2.28387,4.488385,3.76985,3.710705,6.59445,4.15207,2.8505333333333334,3.1501300000000003,1.626122,1.85549,4.132605,3.56883,3.82453,2.51041,3.23106,1.4080920000000001,2.98982,2.564735,3.473635,10.678906666666666,3.589765,5.235573333333333,3.867115,4.308425,1.0114822222222222,4.827724999999999,4.749525,2.51803,2.669146666666667,2.7840133333333337,3.6941333333333333,2.3978366666666666,1.7146466666666667,1.95882,3.728735,1.574726,2.86896,5.126954,2.8059600000000002,1.0747503571428572,1.0747503571428572,3.724635,2.9758315,2.9758315,3.0937133333333335,2.6919833333333334,3.3814164102564104,3.942766666666667,3.5187666666666666,2.71461,2.4205666666666668,2.4936333333333334,3.1179066666666664,2.2175575,2.5301899999999997,1.6393119999999999,5.7964269999999996,8.5930565,0.5039976923076923,0.5039976923076923,0.5039976923076923,0.6104631468531468,0.6104631468531468,0.5039976923076923,2.897623333333333,2.9997933333333333,4.09622,1.3951466666666665,1.7722475,3.3121479999999996,2.435486666666667,3.1682133333333335,2.4280500000000003,2.94697,3.4355666666666664,6.6252200000000006,3.0884533333333333,2.480653333333333,3.0181466666666665,4.8281,2.3575833333333334,3.353733333333333,5.65154,2.412783333333333,3.365766666666667,1.3747966666666667,1.3747966666666667,2.914566666666667,0.5312157894736842,2.3409033333333333,2.6441233333333334,2.8685766666666663,3.2862033333333334,2.33647,1.5548433333333334,2.69116,2.7466866666666667,2.3955933333333332,4.330205,2.4305406666666665,3.400975,2.55671,3.040465,0.5094879999999999,6.985351666666667,3.017918,3.017918,7.7698358333333335,1.7654966666666667,1.7555800000000001,3.0118766666666663,4.37094,2.35702,1.9675,2.6601733333333333,1.4172725,3.4537,1.8124399999999998,2.9673534999999998,1.3909225,0.2681809090909091,0.2681809090909091,4.84394,3.954815,3.799385,2.827366666666667,2.644735,3.30617,1.2546133333333334,5.5779,3.850735,2.95688,1.84752,1.1978441666666666,2.17992,3.0118766666666663,2.575395,2.08995,5.666869999999999,3.554075,4.34591,3.807195,2.1047,0.6876525,7.3035175,2.1200825,1.508675,3.642615,5.0848,2.27677,1.7628000000000001,4.783335,4.171625,3.169636666666667,3.14122,4.150805,4.18975,3.5032333333333336,2.557396,2.557396,3.987,4.81496,5.42375,6.310856666666667,2.6375533333333334,3.97253,1.5159714285714287,2.5285,5.543328,3.748105,1.874928,5.3604,3.4995200000000004,3.43505,2.10678,4.239635,4.75183,4.696155,4.63403,2.4954433333333332,2.6498666666666666,3.7470666666666665,2.0964033333333334,2.583975,2.680476666666667,2.39757,0.724013,2.39838,2.8696466666666667,1.8607696666666667,4.6675,4.525485,4.622985,3.67396,3.510415,4.645135,11.992915,4.689925,3.772465,4.324955,3.95849,4.66616,2.497736666666667,3.219905333333333,3.5917666666666666,1.227885,2.820015,2.79124,4.553525,5.4584,4.30317,3.526066666666667,3.2314066666666665,2.1936233333333335,4.3955,4.0572775,3.9061,4.0572775,2.20331725,2.2642233333333333,2.314636666666667,2.14808,2.64723,1.78229,0.7942016666666666,1.29137,1.9674666666666667,1.90219,1.5940133333333335,1.3487200000000001,2.0617533333333333,2.6262866666666667,1.524062,3.2176033333333334,1.2317,1.61127,2.659555,3.811533333333333,2.4510466666666666,2.05966,2.350703333333333,3.241025,2.260805,2.96227,3.262233333333333,2.4622433333333333,3.1058166666666662,3.059025,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,5.13205,2.86264,1.0449385714285715,3.09935,2.6102266666666667,2.91555,3.48733,3.457933333333333,4.56286,3.4704026666666667,1.557252,3.0245366666666667,1.8065833333333332,0.9708525,0.9518449999999999,1.7015333333333331,0.8470966666666667,0.7596725000000001,1.314886,3.285435,1.558574,1.5680883333333335,1.901885,2.348463888888889,1.294645,1.24326,1.5329316666666666,0.9486849999999999,1.261305,0.7330483333333334,0.8876139999999999,3.24818,3.49879,4.151435,4.55034,4.105865,3.17128,4.737465,3.443633333333333,2.095005,3.501935,2.02375,3.5143,2.0782599999999998,0.8462036363636364,4.24077,5.1764,2.09092,1.315875,2.950425,3.340955,3.7854150000000004,2.9868799999999998,2.75534,0.9312775,2.330095,5.002174999999999,3.822885,2.60617,1.5295866666666667,3.76337,1.825775,0.5861354545454546,4.394485,4.426695,4.3103,2.56498,1.449654,3.18686,4.39779,2.56521,2.570793333333333,2.47445,2.6484166666666664,2.72461,2.7864533333333337,3.029856666666667,1.2747625,2.5843,2.610716666666667,5.045,4.389455,3.653575,4.7445,16.429173564393942,4.4933625,4.642290666666668,2.82527,4.270495,5.0741,1.55971,2.054045,2.24697,6.094495,3.46908,3.129785,6.4351,2.24697,3.8766,2.00098,2.1298233333333334,2.94997,2.69682,1.344265,4.35594,3.46864,2.492585,4.30714,2.4450533333333335,3.20904,3.652765,3.5296,4.38229,3.65789,2.637945,3.48509,2.62517,2.48467,1.285652,1.285652,3.2439199999999997,2.51529,0.395625,4.6627089999999995,0.938884,2.73133,3.50992,0.5613233333333333,4.612935,8.231594999999999,1.829975,3.66899,3.55052,2.611616666666667,3.338675,2.288825,3.02796,3.56062,4.191035,3.058025,3.8943999999999996,0.985525,11.398926333333334,2.86918,2.866225,5.9984,2.564665,3.90291,7.498665,4.13863,4.05492,3.47964,4.16885,5.5715325,1.4306075,2.81289,4.664225,3.823566666666667,1.9813120000000002,3.848885,3.763855,3.690485,3.978035,3.9597,3.86948,2.4054,4.586275,3.74995,5.10335,3.214365,2.1379733333333335,2.2000100000000002,2.1131333333333333,3.02218,1.3050766666666667,3.6545,0.8999272727272728,3.30925,3.1662166666666667,2.6605333333333334,1.5161916666666666,4.086415,3.85511,4.15273,1.8693925,4.6152,3.70508,0.7476960769230769,0.33960807692307693,4.258305,5.3809,0.98288375,0.33960807692307693,4.460905,0.7476960769230769,0.7476960769230769,0.33960807692307693,5.816746666666667,2.4952866666666664,2.508853333333333,5.69185,3.61822,3.2736,0.8040177777777777,3.149035,3.655305,4.826435,5.8152,2.14402,0.724326923076923,4.225255833333334,2.037593333333333,1.245398,1.8117425,0.9675371428571429,2.233566666666667,2.20248,3.606175,5.24235,2.6671066666666667,3.194013333333333,2.83643,2.1620066666666666,2.991155,4.56294,1.6559,1.98788,3.86138,5.20375,2.162227222222222,5.00975,2.134885,4.179665,3.951975,2.74165,1.2294,3.246545,6.8168,3.865385,3.50698,5.3141,6.39885,2.394995,3.30881,4.64668,3.25858,3.232285,8.21984,3.711335,4.528124999999999,2.254705,1.079375,2.4839333333333333,1.93394,2.01752,1.908345,4.054075,0.6649714285714285,3.30932,3.834045,1.8555066666666666,3.153256666666667,4.9596,3.5295,2.78094,4.46796,4.947425,9.026852166666666,2.6239033333333333,2.548293333333333,1.6579260000000002,1.4424683333333332,1.2065966666666668,1.3985766666666668,2.5436799999999997,2.5437499999999997,2.811616666666667,4.365345192307692,1.6064675,2.42365,4.9734,5.39905,3.775835,3.4239,3.048435,2.586775,2.064725,2.081545,1.85903,1.97991,2.94456,3.715685,4.82876,5.16435,3.777675,5.434635833333333,3.268835,2.762705,6.508562916666667,3.020765,8.70164,4.853704166666667,4.853704166666667,5.847508333333334,1.5997833333333331,1.39154,1.4348866666666666,0.714902,5.08895,3.7944,3.27029,3.27029,2.34296,4.44591,4.335955,4.486175,3.89575,2.91609,2.67307,3.7605,3.0659733333333334,5.215770833333334,3.495,0.8047918181818182,4.97946,5.26245,4.00418,4.97984,3.44564,6.29265,4.23145,0.8555307692307692,5.1534,7.581635,3.029215,5.75025,5.93295,3.46413,2.71897,3.748295,6.02175,2.1371525,5.92175,1.917015,4.54544,2.5879166666666666,2.381945,0.9094,3.086625,6.1155,3.160975,3.676295,2.116233333333333,4.634865,7.947744999999999,3.52769,4.34988,2.5415,2.550155,0.845636,4.599145,1.6156166666666667,3.4303616666666668,3.4303616666666668,3.76364,2.34807,3.04672,3.95168,1.73211,3.0053666666666667,3.2900766666666663,3.2763766666666663,2.83451,4.05719,3.209845,1.84751,3.1553299999999997,2.1684375,3.1042166666666664,2.0488566666666665,3.079143333333333,3.1147899999999997,1.4428285714285713,2.0388533333333334,0.45893500000000004,1.3679033333333335,0.45893500000000004,0.45893500000000004,2.0388533333333334,0.45893500000000004,3.4328333333333334,2.766806,2.766806,2.8800600000000003,3.996035,3.819065,4.177285,5.3419,5.66155,3.43098,3.99954,4.09207,1.8968725,2.3450991666666665,2.4423033333333333,0.8460290909090908,5.53365,3.1245600000000002,3.0718,5.5027,3.9079475,5.11915,3.23613,2.6125633333333336,2.930395,3.361495,2.6774633333333333,2.807536666666667,2.0645233333333333,5.3525,0.8528488888888889,3.911965,1.1735957142857143,3.585,3.2866233333333335,2.9042866666666662,4.10809,3.912695,3.688525,4.573505,3.961635,3.868835,4.35418,4.184755,2.508225,2.7513,3.1983200000000003,4.19804,2.728035,3.314735,2.777065,2.99015,3.385,3.485595,4.81854,4.6609,3.95598,68.430410372003,2.6884616666666665,3.9941,16.361046666666667,4.027585,3.0171233333333336,2.1067933333333335,1.89478,2.6388433333333334,4.406975,2.9937633333333333,4.111155833333333,5.60925,3.326745,7.509836666666667,5.4249,2.38682,3.405785,3.545655,3.439545,1.917086,1.09976,4.636155,2.472695,5.948513333333333,3.581415,2.3643366666666665,3.506225,3.30679,4.55243,3.002845,5.5316475,4.45036,3.42341,2.97414,2.501,2.80769,6.16515,3.36856,3.61816,4.362852916666666,1.2169533333333333,2.44741,5.20349,3.477175,3.18289,3.710915,2.899025,3.97982,3.078525,2.75949,2.34972,4.359465,2.882085,2.94566,4.3692,9.271945,3.22801,4.197775,5.96576,3.250195,1.91966,4.09489625,2.2377233333333333,2.9342133333333336,2.944642,3.42507,3.408475,3.4047,3.108455,3.17074,4.06285,3.827895,4.220255,3.679375,3.070095,3.557715,2.7299283333333335,2.7299283333333335,7.03824,1.582775,3.16176,3.23444,2.343115,4.64599,4.16492,3.12528,3.458545,5.0591,6.1393575,0.6547609090909091,3.98775,2.206365,2.8899833333333333,2.3525633333333333,5.16305,2.728146666666667,2.136045,1.0771525,2.0509833333333334,4.285765,5.15935,4.19391,5.94895,5.675,5.82425,2.487535,1.9869066666666668,3.87853,2.66542,2.86102,2.003816666666667,1.3381666666666667,2.78154,3.1449033333333336,1.53145,2.3590433333333336,2.438155714285714,3.4235304945054943,2.75216,5.0507,3.308295,1.335845,2.772405,3.47993,5.9479,4.95605,5.7839,4.77017,1.9957,1.4491966666666667,0.6011414285714285,1.5581433333333334,3.51531,2.46036,3.586013333333333,1.4494433333333332,2.438185,2.30307,3.315525,3.51125,3.796445,4.084286666666666,1.6423975,1.37574,1.9153275,2.031165,1.38787,2.515675,6.95842425,4.913265,3.382105,2.88897,6.64406,4.67652,3.12904,3.02599,3.480045,2.5125,3.760825,2.3606700000000003,7.32769,0.8901233333333334,3.01739,6.6571,3.880865,4.724995,6.4478,1.4871800000000002,3.1167233333333333,3.0909166666666668,2.88152,1.43621,3.99736,8.58408,3.41554,5.08615,3.98198,3.261205,4.88399,0.9019050000000001,2.8124866666666666,5.4396,6.295603333333333,5.10995,5.7861,2.96492,3.7433333333333336,2.629696666666667,5.16435,4.95063,4.082593452380952,4.082593452380952,0.6926342857142858,3.6098,1.0314,0.8226016666666666,1.7896975,3.7851666666666666,3.682478,5.087376571428571,2.93535,3.2687525714285712,2.9724919047619043,2.7440466666666663,3.114403333333333,4.629166666666666,3.7680575000000003,2.0286075,2.0286075,3.98464,3.0377066666666668,2.7220600000000004,3.48618,3.4151333333333334,0.5739833333333333,3.3339,2.6375566666666668,2.4205099999999997,2.802846666666667,2.5907,2.4964033333333333,3.2394933333333333,2.841113333333333,0.819498,2.9614933333333333,6.584542666666666,2.10214,7.5340066666666665,1.6086459999999998,1.6086459999999998,3.4659680833333333,3.4705333333333335,3.3378333333333337,2.7946833333333334,1.73014,1.3368785714285714,3.1915433333333336,3.396433333333333,1.46021,1.609142857142857,2.8250466666666667,2.689094,2.671136666666667,1.8427,1.91839,2.59845,2.20635,2.759415,3.36347,1.595415,3.622165,3.06995,7.06656,3.279495,1.681615,2.939975,2.553215,2.134365,4.04236,2.2049166666666666,2.687175,6.934670000000001,0.8384307692307692,0.7533724999999999,4.49611,1.416746,1.416746,3.84488,2.39938,4.5214,3.245245,1.2968933333333335,2.396186,2.9307433333333335,2.393702666666667,5.1991,5.14945,2.57727,2.229906666666667,1.3774964285714286,1.3774964285714286,1.9019366666666666,3.821135,4.000066666666666,5.6028,3.117156666666667,4.83256,4.22616,6.4921,4.20915,2.47609,2.8072233333333334,2.6206333333333336,2.7156533333333335,0.7209655555555555,0.7209655555555555,0.7209655555555555,2.99087,4.08032,3.86605,0.8094225,0.8094225,4.79144,5.7353,6.38563,21.760571388888888,10.9088,7.72688,2.837325,5.71295,2.34734,4.295255,2.5276366666666665,3.26436,3.8711333333333333,5.201216666666666,2.19835,2.15444,6.11322,2.1962599999999997,2.1962599999999997,6.26725,3.04757,3.90005,2.14098,4.882153166666667,4.49758,3.587365,5.1407,3.463195,1.4709533333333333,5.7617,8.86697,1.4709533333333333,2.14098,2.0541933333333335,0.684228,0.684228,1.767624,2.3159300000000003,1.767624,4.360925,5.2651,6.0727,8.68392,2.14098,11.490774833333333,5.848,5.55665,2.34734,3.42247,4.319585,8.74897,2.9471725,3.798445,5.9177,3.252065,4.76755,6.0913,4.37185,4.897085,4.910595,2.23226,4.96533,3.683695,4.225615,4.510495,0.776185,1.456146,3.059395,5.316,4.42004,2.8059600000000002,2.08063,3.97305,4.783485,5.7592,5.3546,5.1649,4.38774,3.24122,4.280415,3.679325,2.02274,4.828670000000001,2.0445,2.66691,3.461805,1.6101999999999999,3.95642,4.01918,3.66801,5.33895,2.94949,6.675038333333333,0.9265988888888889,3.52821,2.089805,1.2235185714285712,5.163175,1.4031033333333334,1.6789766666666666,2.6381966666666665,2.7658465,2.9837399999999996,2.8076733333333332,1.7839475,0.7402527272727273,2.1558333333333333,2.76367,3.371705,0.7289092307692309,7.121636666666666,1.8324366666666665,1.1657579999999998,3.3003033333333334,1.1657579999999998,4.04564,0.9558454545454546,4.46343,3.2420466666666665,1.63936,4.814622,4.283022,4.283022,4.80178,2.4930975,3.0843733333333336,2.8206933333333333,1.465916,3.514865,3.773995,2.0723733333333336,0.6900041666666666,6.8102375641025645,2.753305,4.254625,4.31721,7.50371,2.2216225,4.103595,3.77644,3.114035,3.556235,5.43115,6.373165,4.46867,4.681015,5.2798,2.93065,4.947,4.32033,4.488185,1.0922411111111112,0.4700714285714286,3.12471,3.41,2.8974733333333336,5.44355,3.775395,4.266085,4.36527,5.2191,4.54949,4.37641,1.1968299999999998,2.3771,8.500754166666667,2.2767500000000003,1.8701733333333335,4.242699047619047,11.256438611111111,1.5698425,5.26955,6.5468,5.2133,3.5690000000000004,2.309956666666667,3.3377,4.311435,1.105175,3.1627433333333332,3.405115,0.33124315789473685,2.0819366666666665,4.65004,4.253885,2.240915,4.25172,2.79964,5.161308333333333,1.3152533333333334,0.5261881818181818,3.846055,1.161702857142857,1.03212125,1.03212125,1.03212125,1.03212125,1.6188183333333335,2.737023333333333,1.8029366666666666,3.33266,5.26615,3.5411333333333332,5.3197,3.66954,4.28543,3.57186,3.96087,1.42304,6.83766,2.503275,4.66218,5.248056666666667,5.12435,5.123940833333333,2.37812,2.561853333333333,2.614246666666667,3.178915,1.16866,4.480065,2.64775,5.0805,2.8457333333333334,2.4374366666666667,3.827625,3.255165,2.878865,2.49408,2.82874,1.46343,0.3967277777777778,4.323025,3.69957,4.14339,3.593315,3.815665,5.76305,4.54404,0.5334692307692308,3.149448,7.330574666666666,1.9288466666666666,2.25228,5.696548333333333,6.171,2.8476266666666668,4.976945,5.3026,4.185845,3.791525,4.251545,5.35975,5.5563,5.4029,3.424705,5.3394005,1.543146,1.5602150000000001,4.436545,4.046945,3.8939,3.24961,5.3703,4.714395,3.82986,3.32334,15.639724005281547,1.2321976565008024,1.05293375,1.7378182954545456,0.47951625,0.45555666666666667,1.19605,0.28562529411764703,1.265262,3.196483333333333,1.42054,0.853625,0.9977170833333333,0.47120083333333335,0.9977170833333333,0.9977170833333333,0.47120083333333335,0.8118307692307692,0.5417142857142857,2.714535,2.7293366666666667,4.64986,3.66621,2.79181,2.721475,4.146235,5.00285,4.87205,2.66526,4.332945,0.7052842857142857,2.3061553333333333,8.094676666666667,4.111175,6.667493333333334,2.83469,4.52737,2.34349,5.0953,5.3261,3.5266,4.132705,3.31283,1.0547833333333334,4.289845,4.696225,1.241368,1.306954,1.545215,2.41101,1.9934766666666668,5.9011,5.77645,2.2951725,2.2951725,3.5728508333333333,6.11269,2.1053,0.6602090909090909,0.78818,2.066196666666667,3.4092000000000002,0.9251414285714287,0.9251414285714287,0.9251414285714287,0.3746,1.0600985714285713,2.9008,6.08435,3.7901000000000002,4.0100175,5.14,0.991541,3.4547666666666665,3.11288,3.7808333333333333,5.62315,2.5373466666666666,7.4199166666666665,4.824345,1.08138,3.8805333333333336,1.920026,2.68418,2.3135666666666665,6.838353333333333,3.3725,4.42595,2.439705,4.47778,4.473725,4.86153,0.516115,2.14267,1.4047766666666668,2.6690166666666664,3.832846,2.07041,2.77117,2.525986666666667,2.5934733333333333,2.60413,2.842803333333333,2.77709,3.0598799999999997,1.337276,2.2205333333333335,1.9188466666666668,2.65926,2.5166833333333334,2.01718,1.7277133333333332,1.8525366666666667,1.605685,3.191425,2.1899566666666668,2.15349,2.1559399999999997,2.4208366666666667,2.426676666666667,0.8466255555555555,0.8466255555555555,0.8466255555555555,2.4318566666666666,2.21576,3.0572133333333333,2.1393999999999997,2.5302266666666666,2.0999,3.77327,3.3256683333333332,1.3332683333333333,2.438963333333333,2.7662533333333332,3.5486333333333335,1.5689285714285715,7.263461666666666,4.52319,3.13205,4.106155,3.513345,1.5362025,0.8319857142857143,3.13503,3.801715,3.5486333333333335,4.271425,4.374055,4.425705,2.8918533333333336,3.803275,4.234965,0.870234,2.60972,3.26329,4.94039,4.818395,3.50228,3.3244,2.45089,2.2363833333333334,2.3713233333333332,0.6364391666666667,5.30176125,2.794925,4.00073,2.7356533333333335,3.787236666666667,3.17818,2.4312566666666666,3.002642333333333,3.002642333333333,2.59118,2.09698,2.5326566666666666,2.1010266666666664,4.217575,1.477034,2.51758,3.784705,4.077225,4.039465,5.49685,3.58281,2.4881325,2.13594,3.131125,3.122045,2.629755,5.067,2.78419,1.1309585714285715,1.1309585714285715,4.61148,3.907179,0.972164,4.58995,0.972164,3.94781,4.91614,4.79696,3.09142,3.25495,6.381175,4.18327,5.84115,0.8385,0.8385,2.0772,4.451655,1.5845799999999999,2.867075,3.45037,1.1444814285714284,3.571645,3.969055,5.754525,5.754525,1.062665,5.5561,5.21145,5.0834,5.7935,2.0099975,2.0099975,7.0189,0.9300454545454545,7.25315,2.0037925,6.5825625,2.366595,2.4769166666666664,3.42952,2.3238399999999997,2.228403333333333,2.2972533333333334,3.06819,2.49575119047619,6.422082,1.7479140000000002,5.11035,3.0092199999999996,2.5860966666666667,1.75256,2.172095,3.14367,3.45117,3.463275,2.593415,2.27928,2.1003,2.726195,1.098082,3.129405,2.415,3.182965,2.0545584999999997,2.0545584999999997,2.998695,1.9332200000000002,3.57742,3.34483,5.03315,7.086705,4.032095,3.50274,6.436763166666667,2.0782633333333336,3.35959,2.2558933333333333,1.523642857142857,1.63765,4.008065,1.5569066666666667,0.5045225,0.6607183333333333,4.52511,4.951,2.91029,0.9415733333333333,2.848665,3.0339566666666666,4.720815,1.664214,1.86508,1.1341111111111113,4.64229,2.423305,4.682155,0.761995,4.153712916666667,3.87523,3.56047,4.41658,3.56339,3.781525,2.8796866666666667,5.3564,3.68476,1.8814,2.7411933333333334,6.1288599999999995,5.869517500000001,0.8129175,3.695545,4.6275,5.20205,3.7271666666666667,3.8855,2.68805,3.1762833333333336,3.8523333333333336,6.1800049999999995,2.689094,2.631357,4.112835,3.13677,2.3254,2.57025,8.39155,4.53633,1.9514333333333334,4.8258,4.738155,1.776984,3.931985,1.3232875,1.270592857142857,4.45524,3.56382,4.78716,2.6264933333333333,3.068835,3.09009,5.13405,3.754505,3.641525,3.102745,3.837835,4.062915,4.039765,1.1491300769230768,1.1491300769230768,7.85392,1.040935,2.184074365079365,1.040935,0.6795016666666666,0.35186222222222224,2.8635760317460317,2.148885,0.6885571428571428,2.184074365079365,1.852905,3.46835,2.175018888888889,3.37011,4.74284,7.521511666666667,2.076135,2.156475,2.20023,4.252335,5.6903,1.77581,1.6883525,0.993625,2.6819775,4.08004,2.43529,4.39154,6.394265000000001,0.4194333333333333,3.83566,0.702925,2.7916666666666665,2.290785,3.564235,1.27271,4.230615,4.79251,4.25282,2.7821,3.848885,5.051935,1.68234,3.44807,0.5826661538461538,2.43919,2.54576,1.170766,3.1322166666666664,2.4732833333333333,2.52519,3.8307,8.14887,2.8293230303030303,3.72036,3.430565,6.8303899999999995,5.490348333333333,3.0623133333333334,4.343295,3.41612,5.59155,4.083465,5.33585,4.53426,4.135715,4.56792,3.8508,1.5126825,1.93792,2.1500966666666668,3.647705,2.4448833333333333,0.19686783783783784,0.19686783783783784,0.19686783783783784,30.471453642857142,0.19686783783783784,3.0623928378378378,0.19686783783783784,0.19686783783783784,0.19686783783783784,3.303787837837838,4.232445,0.19686783783783784,0.19686783783783784,0.19686783783783784,0.19686783783783784,0.19686783783783784,2.96497,5.63909,3.08155,0.2258605128205128,0.2258605128205128,4.43323,4.048056916666667,3.9748929166666667,3.2552725833333334,3.9892061904761906,8.013,11.496306297202798,6.217093,8.28253,7.690397696428571,2.914566666666667,6.248286666666667,4.543488333333333,4.357461506410256,0.2258605128205128,8.101916,6.840707809523809,7.04227,2.89255,9.087270196428571,14.613988958333334,18.052527928113552,56.5921096285316,116.1020132964609,1.3747966666666667,3.365766666666667,3.395575,3.942998157014157,0.2258605128205128,1.6268619230769228,8.980255416666667,15.061671238095238,19.761008055555557,47.682776937343355,13.245414363095238,3.226325,0.23650689655172413,0.23650689655172413,4.551233333333333,2.7955566666666667,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,5.54872,0.23650689655172413,0.23650689655172413,0.23650689655172413,2.67228,1.84159,3.67853,3.644975,4.404788333333333,5.00615,1.833395,4.083145,4.2552,3.11138,1.62514,3.62478,1.0032666666666665,2.2581125,2.035953333333333,5.0336,5.973643333333333,2.7125533333333336,5.715702111111111,0.5352855555555556,0.4589486666666666,2.4847566666666667,2.8795466666666667,2.698635,4.0045,3.625766666666667,7.470505,3.766405,3.67001,3.376965,3.95125,3.142205,3.222885,5.7962,1.88217,0.43321461538461536,0.83431,4.3706775,1.725355,3.87045,3.66889,4.510385,3.48549,2.38059,2.672095,0.6274413333333333,0.741404,4.263875,2.7171966666666667,6.1956,3.607855,3.7837016666666665,2.491485,3.136025,5.63695,3.69762,3.231995,0.8659790909090909,3.1544066666666666,4.360145,2.2552,0.950035,1.5949466666666667,4.131315,6.4669,2.020445,2.988585,4.14892,5.71555,2.39383,2.3005166666666668,2.353975,4.942835,2.33445,3.95766,0.7090157142857143,2.063536666666667,3.319615,1.78422,6.261658333333333,3.034045,3.818005,4.370615,2.98995,2.323845,0.49751999999999996,4.31586,5.1598,6.76615,3.53748,4.108475,5.07445,2.818085,2.77486,1.21153,5.02745,1.920625,2.60623,8.47382,3.986475,5.3058,3.430025,0.7254733333333333,3.13796,1.2240942857142856,3.148525,6.07535,5.00285,4.99954,3.62873,5.2312,4.34377,1.7105625,1.6973933333333333,4.92627,3.0677766666666666,3.3224633333333333,2.488355,5.6153,4.6182,1.4457550000000001,3.627166666666667,2.804165,2.73572,4.0567,9.0303,4.735125,1.7545475,4.86871,6.49496,4.36071,3.98626,3.850915,3.8511,4.705655,8.13199,2.4749,3.196605,3.17845,4.192185,2.956825,3.181035,4.63241,4.362185,3.58003,3.995566666666667,18.924457666666665,2.8682933333333334,2.620503333333333,3.339933333333333,5.700382666666667,1.1720975,4.15303,2.128465,4.937395,1.3999300000000001,4.442695,4.296265,3.736925,0.95815125,4.595805,4.683805,1.736965,4.56628803030303,4.06852,1.0482157142857143,3.595055,1.964975,2.2026,1.566805,4.301275,3.84866,3.754005,3.596375,2.971106666666667,4.35543,8.029228333333332,4.41796,4.39465,4.865415,3.1685433333333335,4.002775,4.88532,6.573888,0.8983399999999999,0.8983399999999999,4.425685,4.847545,2.21397,1.38656,7.190564999999999,4.159395,3.6359,3.96767,4.661985,4.57054,3.554985,3.856175,6.278259,3.97391,4.57082,4.8571,1.4488285714285714,2.70815,4.45307,4.61622,3.4729687499999997,0.2146475,1.6069825,1.98041,2.5270333333333332,2.110113333333333,0.9507955555555555,1.1744875,1.4589325,2.41224,0.60607,1.0672514285714285,1.9676975,3.99474,3.9387000000000003,2.1084533333333333,2.5890766666666667,2.8779033333333337,2.8613233333333334,0.64535,0.91715875,2.94354,4.62255,4.41721,3.0108,4.59782,4.6916,4.27413,2.06878,4.295735,4.98902,4.41439,6.2802825,3.481635,0.4811405882352941,5.6474,4.5498,3.633665,5.03365,3.317075,1.973626,3.765495,4.088545,2.670235,5.266214166666666,4.408165,1.3985816666666666,5.266214166666666,4.05989,7.0543425,3.7287,1.1725444444444444,3.86927,5.0348,4.04211,2.5170966666666668,5.00245,1.4693825,2.01996,3.17183,3.43257,0.8016244444444445,4.827205,4.80631,3.463855,3.932915,3.5005333333333333,3.011843333333333,1.75213,1.559725,3.185945,3.400805,3.3213966666666668,2.43019,2.29589,1.849609,3.840405,1.3463071428571427,0.8336822222222222,5.63974,3.866525,1.44339,2.5473933333333334,2.2260933333333335,2.8106033333333333,5.993718333333334,2.225465555555555,0.8233750000000001,2.55796,4.294415,2.09274,3.8407,5.2062,5.2571,4.4684,4.27505,4.945685,2.1534766666666667,2.2387466666666667,1.7039333333333333,2.14155,1.8256775,2.3397099999999997,2.22389,1.5235025,2.650075,3.061895,4.33762,6.5273,4.39079,4.07489,4.458465,3.956575,3.80387,5.3498,0.87396375,3.046193333333333,4.620955,1.16547,0.6480506666666667,5.41535,3.529685,2.5965966666666667,3.7216075,6.21982,5.50555,0.938483,1.1616457142857144,0.7188122222222222,4.112174166666667,2.25237,2.787383333333333,1.2020128571428572,2.7286099999999998,2.7539200000000004,5.5053,4.681915,4.35122,5.28205,4.37328,1.2463466666666667,3.634045,1.6105366666666667,3.61059,3.7484,3.398055,2.5097133333333335,3.2928833333333336,2.725706666666667,4.190375,4.12315,3.385695,2.3533625,8.912385,10.242475,4.2743,1.3913371428571428,5.5158,4.02732,4.72709,4.51022,3.783405,3.911145,3.494045,4.157395,3.639505833333333,5.29919,3.88778,3.62667,4.60372,1.8090199999999999,4.860385,5.9422,5.01105,3.3438,3.246115,7.320914999999999,0.8311116666666667,2.555756666666667,2.714866666666667,2.334896666666667,5.0897,3.42601,1.3049166666666667,4.20352,3.381066666666667,3.79128,4.77665,4.1845783333333335,6.768784999999999,3.1612266666666664,2.94948,3.21557,2.8789200000000004,3.93415,2.0435466666666664,2.17464,3.0490833333333334,3.95634,3.7757050000000003,1.9313475,1.511435,3.1852871428571428,3.2297044999999995,0.9718077777777778,2.6353416666666662,2.6353416666666662,1.2338075,5.80595,3.14161,3.110405,3.58598,3.157075,3.3947,3.3667,3.186105,3.288965,2.315796666666667,0.5158633333333333,3.29362,5.5610599999999994,3.04531,3.791885,3.237385,4.14998,4.03524,3.12164,2.492495,3.78066,3.698805,3.24606,3.008115,3.69294,2.6171266666666666,3.924645,3.990315,8.71419,3.44314,3.757525,2.899045,3.98946,4.07557,3.590185,2.333425,3.739465,2.6291225000000003,2.794925,2.85009,3.217385,3.706315,1.7128333333333332,1.7128333333333332,2.28266,3.077725,3.24737,1.5340820000000002,2.41369,3.42573,1.784876,2.91171,1.5340820000000002,4.298865,2.97933,3.87194475,3.01616,3.61412,2.43509,3.248485,4.03341,4.22593,3.49934,4.445635,3.79485,4.281555,3.578905,3.02194,3.15813,2.957945,3.88197,2.65848,3.80653,5.36305,4.17744,3.83386,0.2917391304347826,3.545655,0.43193666666666664,3.82665,3.628225,2.91241,3.48925,3.80805,5.966008333333333,3.238125,2.6013266666666666,2.3192233333333334,2.80078,0.637369,6.757266666666666,3.278345,3.448635,3.432025,1.9295,2.52598,3.25917,3.13587,6.7437450000000005,4.75397,5.1458,4.82071,4.389795,4.32362,3.89233,1.4738116666666665,1.61579,3.86563,4.70886,5.833012500000001,2.6236566666666667,4.921555,2.07727,3.4934,3.77683,1.9213616666666666,4.067785,4.891065,3.5564999999999998,3.7886,2.64531,4.63139,4.70099,3.5401000000000002,4.36757,4.48905,4.910525,4.3473,4.54291,4.066785,3.14274,4.271895,2.578425,3.2988866666666667,3.2988866666666667,4.399435,2.4662866666666665,3.992255,2.2336233333333335,4.48194,3.285553333333333,3.588615,1.8027,1.9884166666666667,1.1655849999999999,1.1655849999999999,1.6325220000000003,3.4057,1.6505966666666667,2.707356666666667,4.006615,5.159461,3.3270433333333336,4.049695,5.66406,2.84511,2.71935,3.01245,1.5851199999999999,4.14592,4.131115,6.578305,1.6664,5.4083,5.62405,3.4384333333333337,3.4644,4.126815,6.11813,2.0292666666666666,2.37238,4.039515,0.47063428571428567,3.79254,4.06233,4.506245,4.263565,2.93584,1.336794,1.6980799999999998,3.92364,3.399535,2.3501133333333333,3.748355,4.894585,5.2553,1.0470525,3.37452,5.03665,3.61041,4.68621,2.4773133333333335,5.27866,3.78714,1.568192,3.73299,1.224,2.7699599999999998,7.129501666666666,3.258065,0.6715927272727273,3.294515,4.016275,3.861695,1.83693,1.83693,5.309951666666667,5.538,2.902525,0.4818444444444444,1.96406,4.411355833333333,4.15819,4.44406,1.7898319999999999,2.9725466666666667,3.48245,1.2363759868421051,1.2363759868421051,1.2363759868421051,0.7508422368421053,1.3282305701754384,0.5773883333333333,1.2363759868421051,0.7508422368421053,0.27585473684210526,0.8532430701754385,0.27585473684210526,0.47498749999999995,0.47498749999999995,0.47498749999999995,0.47498749999999995,1.0463971666666667,1.04474125,2.342783333333333,2.3752633333333333,1.1368516666666666,6.560816666666667,2.6813266666666666,5.997226666666666,2.6239966666666668,3.69572,2.784595,3.36625,2.8454525,4.62753,2.8175566666666665,4.04873,4.016485,4.51124,2.176675,3.71847,4.71512,4.071215,3.142625,4.8842,3.35616,4.50337,5.57275,5.21555,6.2562,5.28275,1.07378875,4.80317,3.764105,3.031365,15.919535,4.628695,5.33055,2.7644,7.37431,3.917675,4.355395,4.845105,3.21439,1.0395325,2.5895,3.828415,4.34703,3.604845,3.08283,4.156255,2.9226233333333336,4.338295,4.609475,4.246935,6.562376666666667,7.353585000000001,1.3098871428571428,3.70944,4.13137,3.93324,3.641825,3.658985,6.99778,2.851045,2.782835,2.558195,4.032435,3.938135,4.752785,2.474695,1.7400425,0.8265079999999999,4.395815,3.270465,3.482855,4.04272,3.46527,4.94066,3.812905,6.53455,6.11125,5.4297,6.7982,3.75286,3.22024,3.262975,3.300135,1.8125375,4.70018,5.7824,5.90095,5.320238333333334,5.320238333333334,2.35357,1.8125375,1.957465,3.151545,0.7259166666666667,1.5353191666666666,0.8094025,1.4782875,2.6106,0.359095,2.82936,4.103515,1.4782875,2.942512,11.126595,6.5621675,2.3168299999999995,1.0176500000000002,1.7590466666666666,4.54464,4.37046,5.6787151428571425,1.9718625,2.21733,3.70404,3.35011,4.541025,1.5664666666666667,5.2232,3.553266666666667,3.36866,5.05695,7.175962,3.925705,2.4251625,2.778116666666667,1.8409566666666668,4.11806,5.35877,1.844728,5.60055,4.39538,6.045065,0.51598,4.512625,4.667125,4.845095,2.913255,2.994605,7.3314,8.107966666666666,6.7293,2.0988666666666664,2.0988666666666664,2.0988666666666664,5.308,4.807565,6.58675,3.395665,2.755615,2.724187105263158,4.22648,5.77295,2.6298585,1.81924,2.6298585,7.2265685,4.9617,4.4791759523809525,9.08946,4.4791759523809525,4.4791759523809525,3.315804285714286,7.09405,5.4509360000000004,2.780376,2.780376,2.54096,7.13295,3.11696,3.55525,5.359059166666667,5.359059166666667,5.359059166666667,7.60616,3.6746800000000004,3.454755,3.787955,3.57991,0.8757925,7.731083333333333,2.7693833333333333,6.82785,3.71795,12.664382,4.88166,5.490409166666667,6.84259,2.605575,3.412305,1.0785716666666667,5.490409166666667,3.404815,1.752785,1.752785,2.93455,5.140453333333333,1.778355,4.653583333333334,0.8280160000000001,1.3859599999999999,0.8280160000000001,1.87283,2.606371,5.115901,3.652865,1.3859599999999999,3.214425,4.751925,0.96695,3.490085,4.430155,2.288065,3.98534,2.64461,3.0617,2.97019,0.986178,3.732445,2.457215,2.09975,1.69658,3.10335,4.17389,2.63055,3.821305,1.2515377777777779,1.2515377777777779,1.2515377777777779,4.14998,3.16766,3.16766,3.15883,3.78444,2.11812,1.27308,1.27308,2.991815,5.2050825,0.7905725,1.30209,2.861375,1.18021,2.4823,0.986178,0.986178,1.8672533333333332,0.986178,3.1512933333333333,0.6120266666666666,3.1512933333333333,5.850544166666667,3.37642,2.2843433333333336,1.8287530555555556,0.660695,2.4894480555555556,3.272885,2.4894480555555556,0.9849955555555555,3.22887,4.05034,3.919175,3.75363,2.614485,3.80723,1.8522233333333336,0.8186294444444444,0.464305,0.8186294444444444,0.35432444444444444,0.8186294444444444,0.8186294444444444,4.52138,4.35905,5.07365,3.32717,4.362115,4.405315,5.20955,3.544165,3.936875,1.2898485714285715,2.908526666666667,4.399055833333334,3.936675,1.3484733333333334,2.7565500000000003,3.844305,3.886205,4.13674,3.39626,4.155345,3.714375,3.16259,4.34215,2.2882933333333333,6.1834,3.546065,3.96799,4.356352142857142,0.8668676428571428,2.13811,3.25491,5.95269,3.976005,3.20759,3.048056666666667,4.07159,7.255796666666667,3.0369566666666667,4.26531,2.7887066666666667,3.759445,4.043355,5.66025,5.4773,4.595015,2.89437,5.55605,4.667985,3.4834333333333336,4.217785,3.27136,2.2864625,2.44548,4.70705,6.46895,5.1388,4.703325,3.925215,4.901725,5.7118,0.5192130769230769,7.423185,4.42578,3.64242,3.762675,4.608715,4.1382,2.9445533333333334,2.55245,1.3267416666666667,0.5693569230769231,1.8142399999999999,3.1863566666666667,3.16719,3.9205,3.781285,3.75883,10.708918333333333,3.84008,3.937575,2.995825,0.7367833333333333,5.657246666666667,2.8992,1.5784633333333333,4.477663333333333,5.349545,2.450345,7.79813,4.558435,2.352328,2.352328,2.352328,4.20699,9.05816,3.925695,3.232925,3.232925,3.31398,9.96401,0.999365,4.66295,4.4582,4.17426,2.7188466666666664,2.23459,4.1758,3.94024,6.4644,5.997954999999999,3.875665,2.79122,3.84874,4.475474999999999,3.3624845,1.12770625,2.7051933333333333,6.10582,3.3267875,5.37445,0.99130625,3.7602666666666664,2.3072466666666664,2.5613033333333335,1.7706625,1.7749433333333335,2.127056666666667,5.75285,2.245785,4.651395,5.3716,1.7479140000000002,4.98849,3.706125,4.82005,3.3333999999999997,2.375735,2.723595,4.209665,4.163455,4.163455,1.1314625,1.5602066666666667,2.786113333333333,4.43386,2.2901730909090907,4.870176000000001,1.739706,2.69284,2.0874566666666667,1.6405025,1.6405025,4.595675,7.426796666666666,1.8971099999999999,2.96679,2.201095,4.609255,3.21159,0.82879,2.78197,0.82879,2.63725,3.28899,5.5408,5.4859,3.71466,4.617544166666667,5.59625,2.44121,1.8168833333333334,2.92553,2.2210199999999998,6.0337,4.965385,2.53544,3.94149,2.5435,4.576355,1.0845025,1.108266,1.8816166666666667,1.2483899999999999,2.5403733333333336,2.77858,2.2823433333333334,2.8028066666666667,2.5139,4.674105,2.645636666666667,2.435636666666667,2.79935,2.4601633333333335,2.8026466666666665,2.6506666666666665,1.92832,2.5240833333333335,4.178295,4.2975,3.23708,2.90797,2.826966666666667,2.2728025,1.8980975,1.1739666666666666,0.2961205,0.13172391304347827,2.1046766666666668,1.8269433333333334,0.13172391304347827,3.5917022463768116,1.911725,0.13172391304347827,5.710420277777777,2.11519,6.18311,3.39149,3.353566666666667,2.6141133333333335,2.9638166666666668,2.206505,4.326595,2.9579966666666664,3.3095266666666667,0.4081478947368421,4.017173333333333,2.711997894736842,2.982725,1.828375,2.5759,4.292025,2.32081,7.915855,5.2338,3.295095,3.756715,6.18969,6.05987,1.74731,4.1418808333333335,2.168475,2.060665,6.65937,7.86724,1.1465533333333333,2.0975925,3.716865,2.55237,2.955235,3.09674,2.71719,4.958285,2.34999,3.102855,3.29717,3.11839,7.66786,1.3403533333333335,2.05669,2.92502,3.408305,1.7553833333333333,3.331605,1.566315,3.821965,3.25838,6.68375,3.31401,9.0395225,3.422925,1.607514,1.7337266666666666,3.119965,6.09932,1.592935,1.7242566666666665,5.38782,3.38378,4.007815,2.606305,2.0776166666666667,3.195265,10.488295,5.04052,6.30572,3.38885,2.421265,2.135985,2.68244,2.921535,3.532445,1.6239483333333335,1.6091766666666667,2.54332,3.529315,1.7722475,3.23612,2.76741,4.10397,3.710445,3.602425,1.2099183333333332,2.57028,1.10273,1.431692,1.895365,3.4553,3.398985,3.78786,2.648715,3.63609,3.96636,3.25577,1.45,3.45471,3.4995200000000004,3.10479,1.663445,3.284985,3.45794,1.522805,3.230615,1.6209166666666668,3.99574,3.96749,4.715665,2.59864,3.93179,1.70984,3.34506,5.5926,1.783735,1.0851428571428572,3.569933333333333,2.66577,4.431105,4.25307,2.9948,4.683755,4.873365,2.258836666666667,5.2789,5.539645,6.6033,4.08602,6.377002666666667,4.06258,1.7137166666666666,2.776426666666667,4.572235,4.65383,2.6002,6.964792,1.1736185714285714,3.4039333333333333,2.17292,1.7701059999999997,2.432656666666667,2.790506666666667,0.3843292857142857,2.6491000000000002,3.9857,3.482665,2.46264,3.4553666666666665,2.3115633333333334,2.43934,2.138875,8.92687,4.795165,2.04388,5.39725,2.4943477826086955,0.7476960769230769,2.7789133333333336,7.260768,1.778004,4.524246250000001,6.232403333333334,1.7082025,1.621355,1.38779,3.801675,3.215215,4.35666,3.9014800000000003,2.37512,3.63123,0.9266260000000001,2.6500559999999997,3.918365,4.128365,4.91856,3.051715,5.01735,4.470885,4.15633,5.07855,5.78065,4.824515,4.113525,5.6843,1.7178999999999998,1.86459,2.77865,3.383855,1.1376,3.8873,2.2862633333333333,3.4821333333333335,4.446005,3.2395099999999997,2.53249,1.5023733333333331,3.052766666666667,2.8396058333333336,2.67135,2.83299,2.0219733333333334,2.1896725,2.38291,3.71115,4.345635,3.80824,4.681705,3.550705,2.353615,3.04322,4.88433,3.9882000000000004,4.61494,3.288915,2.25533,4.499358333333333,1.7825533333333334,4.10661,4.8591516666666665,5.974744523809523,3.84244,4.23364,5.3845,3.1411166666666666,3.9765741666666665,4.552255,3.29308,3.8106539999999995,3.455665,1.281495,3.296575,1.66124,2.190815,5.16935,5.2461625000000005,3.8106539999999995,3.993595,3.443145,1.5845799999999999,3.672945,1.970855,2.2049166666666666,2.013165,2.715735,1.6194001515151515,1.6194001515151515,1.6194001515151515,0.5967318181818182,0.8168744444444445,2.219871111111111,1.112925,3.650585,1.3948600000000002,3.786035,5.28195,4.578655,3.217825,4.119475,3.153925,4.971735,1.6627275,3.00604,2.68922,3.352265,5.973146,4.254385,5.23025,4.262515,0.9673375,2.245075,1.2706433333333333,3.72735,4.008985,4.20359,5.11655,4.44418,3.8125,4.336035,3.6421,1.70548,1.1551883333333333,5.320893333333333,1.0735066666666666,1.4067566666666667,2.7688966666666666,8.35116,3.04179,3.796155,2.93993,5.5663175,1.5820525,0.9900933333333333,1.48288,3.20423,3.487905,3.94553,3.768505,1.8971,6.725455,2.8970266666666666,0.90404875,4.675785,2.9993433333333335,2.6307633333333333,2.4265733333333332,3.547166666666667,5.656760833333334,2.7863900000000004,3.14408,3.5603,2.4858733333333336,2.7794233333333334,2.8960933333333334,3.080465,2.009515,4.823375,4.70361,5.16085,1.02073,0.7316469999999999,3.9125333333333336,2.5864333333333334,1.0470325,2.762265833333333,3.67662,4.315465,7.016895,4.672015,3.6026000000000002,1.7579879999999999,3.644385,3.76974,2.774376666666667,2.5934197142857145,4.02392,2.81147,4.923258666666667,0.8923933333333333,3.16456,1.736212,3.96081,4.24436,2.1351,1.0147175,3.128675,0.41420899999999994,3.30397,6.5826,5.2778,2.811084,1.473566,4.056466666666666,0.7646955555555555,2.402413333333333,0.7646955555555555,4.007975,4.518355,1.302235,1.7384725,5.021725,1.7707499999999998,3.5518,2.745645,3.56406,1.273126,1.6023433333333335,4.02638,4.306225,5.3169,2.944642,2.7593,3.205975,1.6306675,2.113675,1.8208025,1.86053,4.46201,1.440911111111111,1.440911111111111,3.393775,4.82584,8.274911666666666,4.57649,8.234225,2.13833,3.862855,3.968745,1.6726999999999999,3.6056875,3.876205,2.796165,5.02445,3.055555,2.60344,2.9024099999999997,3.869395,1.09682125,4.18266,4.653155,1.1535783333333334,7.941363333333333,2.720595,3.323545,3.4994899999999998,5.35555,4.88771,3.4612625,2.4165266666666665,2.87505,2.0324466666666665,3.7687666666666666,2.4064925,2.1716175,7.5075346666666665,3.4281,2.92643,4.22649,22.631270080586084,0.6894666666666667,2.5667,4.53467,4.60489,8.52405,4.84286,4.575485,4.595915,6.877193333333333,3.62072,1.5825500000000001,4.863945,3.301065,1.16195,1.16195,1.16195,2.3879562500000002,1.6839925,3.339445,1.5454275,2.974175,1.4871800000000002,2.676425,2.65422,3.023225,1.5454275,3.348885,2.61926,4.192855,4.797513333333334,5.0934,0.7694058333333333,3.37148,2.657165,4.652685,3.637075,2.98743,2.396675,1.672885,2.430675,1.444026,3.691175,1.7323625,4.470605,10.910915,2.781523333333333,2.36798,4.821446666666667,4.7899666666666665,4.513466666666667,6.57405,2.30385,5.490348333333333,4.503435,1.0271766666666666,1.1993957142857143,6.462333,4.20785,2.3807625,3.75563,1.927405,3.742515,4.78,4.48743,4.01887,1.3129285714285714,4.306805,4.79426,4.69532,6.317736,3.469715,5.385,4.397,4.431685,5.047,3.6039,4.906,2.0416975,3.38586,3.108735,3.159535,4.50892,6.16225,4.438095,2.766106666666667,3.664,9.039719999999999,4.943795,3.285856666666667,3.634315,3.34981,4.52811,4.22831,4.67019,6.660091666666666,3.633065,2.7853866666666662,4.1334599999999995,2.390525,4.23151,2.28699,6.47555,1.6150383333333334,4.71077,4.78807,11.9223575,0.5150542857142857,4.3203,5.23305,0.6441128571428572,3.600095,3.930085,4.06298,0.946451,4.90974,4.86539,2.6260866666666667,9.940393333333333,3.1953133333333334,1.8462399999999999,2.3139,3.431575,6.07485,0.5786766666666666,3.901045,2.002905,5.49735,0.7194392307692308,4.15642,5.7584,6.1813,3.532885,6.4564475,4.76163,3.5726837499999995,2.6322300000000003,2.7407766666666666,4.29198,4.46103,5.0519,4.94508,5.3577,3.2321266666666664,6.866881666666666,2.746625,3.090801,2.0588675,4.177705,2.1487866666666666,1.5836,3.1654233333333335,2.9886199999999996,3.292146666666667,3.431233333333333,3.6586,3.2101566666666668,2.6479633333333332,5.71735,3.1595866666666663,3.772245,5.10675,2.7233199999999997,1.1636,3.1075533333333336,2.9988533333333334,3.889065,2.9263600000000003,3.206436666666667,4.623773333333333,1.9548033333333334,1.6599925,2.97373,3.730685,4.385925,1.09254375,4.19466,3.310455,4.092966666666666,3.0077466666666663,4.774822,3.899505,3.346835,4.07129,1.520135,3.832485,0.6512375,4.756495,5.044,17.153175454545455,3.2175933333333333,1.1201266666666667,3.917415,0.6392957142857142,2.68455,4.43588,1.97124,1.2338471428571427,3.797285,4.61123,3.134306666666667,0.7187916666666667,2.646695,8.01002,3.79148,5.5034,4.88413,5.2587,3.255193333333333,3.7321000000000004,3.2241766666666667,7.127976666666667,3.92691,5.0691,2.082775,0.43942,2.024905,3.15898,1.8333,3.850075,3.731275,2.8911599999999997,4.975665,0.6917049999999999,4.630685,3.797895,3.04854,1.16358,2.7260233333333335,1.9936999999999998,4.869525,3.908555,2.247195,1.6671,3.48487,4.348635,4.342165,6.189731666666667,2.1230166666666666,4.677825,4.368665,3.822895,1.9060479999999997,3.77979,6.021538333333334,4.83142,2.70954,4.860725,2.63757,2.6261,3.93388,3.971965,1.3463450000000001,4.86145,2.02772,2.7660033333333334,5.2196750000000005,5.2196750000000005,5.50575,1.596284,4.907975,0.9190375,1.78943,5.1356,2.5633766666666666,1.4192033333333332,3.1268833333333332,0.90242,4.324933333333333,4.68041,2.987405,5.01955,3.9338,3.76643,5.526315,3.62049,3.6995,2.772873333333333,2.4457400000000002,2.78275,2.9045433333333333,4.449695,1.6370569230769234,3.0066066666666664,4.47188,4.78404,2.3155808333333336,4.14331,4.676935,4.74913,3.4936000000000003,5.3286,4.99368,5.28225,4.96056,3.809995,3.889355,3.689335,4.4961,5.5272,4.67752,4.93601,4.644565,4.63005,0.6863608333333334,5.01755,4.53248,3.908395,7.249560000000001,4.128615,3.96804,4.200585,4.76109,3.6866,3.64634,2.1220962500000002,4.4678775,1.7091475,1.3285457142857144,3.6636,2.0595933333333334,2.4695633333333333,3.874562,3.4691666666666667,2.91984,1.1356066666666667,2.0260325,4.639325,3.88419,1.8586175,1.8586175,3.584085,1.6167919999999998,3.1563866666666667,4.537965,3.47204,3.778595,1.48845,2.05412,3.5594574999999997,1.981425,4.039855,4.337425,4.47253,4.01627,6.771413333333333,2.733275,3.73352,4.64213,4.439865,3.351433333333333,4.338645,4.14428,4.31292,2.33914,2.5772933333333334,4.62108,3.854485,3.605225,3.788745,1.6297175,3.85479,4.402855,4.5909,4.20956,3.7747675,3.7747675,3.1424625,4.060845,4.288765,4.011115,1.6948619999999999,7.345345,3.95667,4.971855,4.35006,4.2665,3.582065,4.919605,2.8433,3.2649,2.83154,5.03905,1.859318,4.287405,5.41841,5.12165,0.711602,4.75983,1.17373,4.88312,4.63012,4.46493,3.93345,5.12535,3.6770666666666667,3.6770666666666667,0.8550840000000001,2.17196,4.91435,3.510655,3.951645,5.2178,5.27605,3.320485,4.07869,1.3542916666666667,2.67307,1.67095,1.276925,4.3311106666666666,0.8704230000000001,2.4153333333333333,3.0870200000000003,1.18298,2.04793,2.6915366666666665,1.3329583333333332,6.34876,2.043895,2.58561,5.6371,1.9593825,2.78275,2.990035,4.631135,3.7978,3.2731866666666662,3.9849333333333337,1.741172,2.1790616666666667,4.280435,0.6557564285714286,2.178533333333333,2.3385766666666665,3.21243,2.7927,1.1112185714285714,0.8416,2.4638066666666667,4.200465,1.3040571428571428,2.2162525,1.1922,5.507651666666667,2.211405,5.0607,4.40731,4.346205,5.2021,5.36685,4.086845,4.24632,1.440825,3.9741,1.74298,2.51449,1.2102514285714285,4.39226,2.181245,7.2194,4.41466,3.91596,1.46627,6.991585,3.51448,1.5400533333333335,4.171225,3.128225,3.89795,3.32195,1.98453,1.98453,3.1044466666666666,1.29137,1.29137,1.9060479999999997,2.825293333333333,2.01718,1.3332683333333333,3.6029666666666667,1.07033375,3.1702266666666667,2.3912075,1.892565,1.5030766666666666,2.19313,2.118055,0.28147,2.46273,1.26204,2.396306666666667,2.0874566666666667,2.4881325,1.0582433333333334,1.098082,3.808666666666667,3.2086966666666665,1.98453,1.725355,1.6351033333333334,2.50859,2.3886233333333333,1.86557,3.3903,1.19899,3.1983200000000003,2.80911,2.5220466666666668,1.555234,0.987194,2.5718,0.987194,2.5718,0.71125625,0.71125625,0.48766,2.2703825,2.23623,0.71125625,2.2105775,2.3870299999999998,2.367485,1.605685,0.8466255555555555,0.71125625,0.71125625,1.64854,1.64854,1.99174,1.725355,0.71125625,2.24622,0.46899153846153846,2.9998299999999998,1.9874,2.4384466666666667,2.52344,2.52344,0.383158,0.383158,1.9060479999999997,1.99637,2.16668,2.06276,0.383158,3.5196,2.506575,1.670984,0.6303,1.670984,0.6303,8.66489,2.42053,4.063433333333333,2.611616666666667,3.010623333333333,3.0917033333333332,2.9081566666666667,3.5919666666666665,2.501,1.6395525,2.6894333333333336,3.0369566666666667,2.4051066666666667,1.64854,2.670764126984127,2.670764126984127,2.76586,2.171045,4.187115,2.3267633333333335,3.3014200000000002,2.7045999999999997,1.4245139999999998,2.45468,2.3120775,0.7875754545454545,1.66071,3.770375,1.7456140000000002,3.21207,2.5232033333333335,2.73255,3.9863999999999997,1.6030266666666666,3.4967,3.0064266666666666,4.2721,1.2282579999999998,0.23650689655172413,1.2958314285714285,1.2958314285714285,1.0138933333333333,2.889813333333333,3.7808333333333333,2.609573333333333,2.1126366666666665,2.1126366666666665,2.15324,1.6209166666666668,0.9693630000000001,1.6872800000000001,1.6872800000000001,0.71125625,1.9060479999999997,2.8605066666666663,3.368066666666667,2.3912075,2.2995200000000002,2.2995200000000002,2.2995200000000002,1.1020966666666667,1.523642857142857,1.523642857142857,2.4484525,2.8357833333333335,2.650727051767677,3.90003,2.4886166666666667,2.4973,3.64567,3.71673,6.78636,3.708645,4.41755,4.1731,13.6416325,4.842585,3.391965,1.0036325,4.171835,3.347165,2.375455,3.708975,5.1008,6.3399486666666665,6.1426,0.47912,3.99597,2.972165,4.03331,2.460215,4.634705,4.44746,4.23723,8.522525,3.599375,4.00844,3.93894,3.3159500000000004,7.976951589743589,3.2651166666666662,2.6397,3.75543,3.809385,5.0718,4.093915,6.57949,3.663425,1.33938,2.784735,0.9050925,4.70622,2.71176,2.66497,3.99537,3.085235,2.769865,4.797345,3.990425,8.08109,3.960675,4.626381,2.4776333333333334,5.01544,2.82958,0.9690325,0.9690325,3.39996,3.86733,2.22787,2.16314,4.21308,2.735645,3.38038,1.857545,1.92481,2.807605,2.39556,1.1659275,3.318825,4.71439,8.32647,1.619098,2.769835,3.109265,3.422765,2.78924,8.32124,4.09268,3.4372666666666665,2.8656900000000003,4.06726,3.30767,3.062343333333333,3.1634266666666666,3.99047,3.779885,4.531075,4.20991,0.4056686666666666,1.52166,2.4312833333333335,1.746905,4.52843,3.609775,2.75607,2.27214,4.582045,3.78492825,2.1451125,2.355645,0.916269,2.24848,2.5581866666666664,2.5581866666666664,5.24415,1.87964,3.072173333333333,2.294556666666667,2.2304333333333335,1.7540233333333333,3.146145,4.05641,5.0749,4.428565,5.223,4.76845,2.745515,3.00571,2.0444400000000003,4.80757,5.466023333333334,1.95217,2.9563333333333333,2.1172775,2.42503,3.9032999999999998,2.490276666666667,5.39275,3.790675,3.5187,4.338045,3.0209833333333336,3.609465,4.18121,2.2713933333333336,2.5381466666666666,0.40683142857142857,3.8638666666666666,2.78622,3.378415,6.14225,4.710635,5.853035,1.939655,1.5772000000000002,3.041315,5.18845,6.448,5.9677,3.03336,2.1725566666666665,3.886065,2.1634466666666667,4.733355,2.2540566666666666,2.2807475,5.15805,4.79359,4.5175,1.645215,1.8881225,1.05949,1.05949,1.206316,0.9210200000000001,0.801998,1.846756,4.318505,10.35272,4.068585,4.362605,4.03286,5.9919525,2.644785,1.6622833333333331,3.4096091666666664,2.920775,4.84531,2.432586666666667,2.6867733333333335,2.8922833333333333,3.200226666666667,2.31438,3.1003233333333333,3.18155,3.027863333333333,3.4878666666666667,3.386366666666667,2.9135333333333335,2.7323166666666663,3.28314,2.4199566666666668,3.303803333333333,3.0617699999999997,2.9790500000000004,3.3655333333333335,2.08376,5.583521523809524,3.083043333333333,4.136712666666666,3.2335,2.999413333333333,3.817066666666667,2.9250833333333333,2.797966666666667,3.10181,3.23744,3.4397,3.3106733333333334,1.985535,2.7291066666666666,2.784746666666667,2.923775,2.923775,3.2897233333333333,3.06335,2.5396666666666667,2.7444366666666666,3.0683433333333334,4.2645,2.80706,2.7576,2.7163133333333334,2.8258666666666667,4.536988333333333,4.913935,1.6613783333333334,3.5341666666666662,3.7239,3.390858,3.2631866666666665,3.7048666666666663,3.5644666666666667,2.91872,3.3961040000000002,1.9592199999999997,2.8306690000000003,3.5453666666666668,3.4067333333333334,2.5362466666666665,2.58473,3.8604333333333334,2.9107033333333336,3.148903333333333,2.4853675,1.1705583333333334,3.17679,2.559346666666667,2.192693333333333,2.45049,3.160966666666667,3.150513333333333,1.9731560000000001,5.6647799999999995,2.41154,0.948704,4.298485,1.9006254166666667,1.6537733333333333,4.44996,4.27719,3.332375,2.3463,1.3457275,3.382585,2.941485,2.629205,0.396204,2.11637,0.396204,1.820905,1.3457275,2.67508,3.93703,2.3672975,3.446105,3.27266,0.47037266666666666,2.9215233333333335,0.92959,0.44097470588235294,3.69107,3.90747,4.950245,2.57145,5.2843,4.25846,3.84473,2.181395,3.8971999999999998,1.7081140000000001,5.72035,2.32062,4.330425,4.600135,3.3369999999999997,1.9584633333333334,2.0770399999999998,1.3393,1.84404,0.8864575,0.8864575,4.369705,2.216886666666667,5.999826666666667,2.3141125,2.69199,2.28922,2.2770785,2.20236,5.99505,4.2497325,2.0473725,2.0640933333333336,2.2770785,2.59788,3.9034185,2.2137624999999996,5.750388333333333,2.3141125,3.323575,3.51418,3.133153333333333,5.6332,4.87641,1.94949,2.0651525,2.282565,2.46211,4.853835,5.44715,1.969625,3.780245,1.5851199999999999,1.6281375,5.26485,10.378408333333333,2.14326,2.2868133333333334,2.49222,4.145605,4.281445,1.9038725,4.665865,4.90279,2.806365,39.55747542857143,2.8405466666666666,3.0616066666666666,0.40924722222222226,4.6217250000000005,2.262723333333333,0.9243033333333334,3.974635,3.74193,1.89723,1.8907075,2.37594,3.846565,1.4281485714285715,3.3190749999999998,3.683605,4.717745,0.918032,5.01555,5.12695,4.917625,2.84226,1.6440725,3.771935,4.55506,3.832955,3.134825,3.63205,3.897515,11.824212222222222,2.793763333333333,3.128675,4.03945,2.79882,4.373165,3.513975,2.335495,3.204825,5.52375,4.64337,5.20035,5.19905,2.43882,3.783035,4.56136,3.661445,4.65357,4.421065,0.12106195652173914,2.282295,5.29385,2.717905,1.7183166666666667,1.167425,1.167425,2.27463,2.630375,2.772375,1.862884,2.82839,4.455125,2.60326,4.4072241666666665,0.5739357142857143,4.830545,3.67736,4.95602,4.77344,4.594825,1.222745,1.03691,4.3768,2.966476666666667,3.103006666666667,3.9456700606060604,4.41688,6.188409999999999,5.33935,3.963955,3.45067,2.1253758333333335,1.5158416666666668,4.42654,0.30254,3.374355,3.787815,3.881655,14.393606666666667,1.9853025,3.1828800000000004,0.7559025,4.598775,8.330975,3.181515,1.8645133333333332,5.73265,3.1510433333333334,1.0654044444444444,4.94706,2.771765,2.84719,4.879725,3.4402733055555554,1.0931875,6.688861666666667,0.74730375,5.1331,3.2138985555555557,1.410955,2.108658638888889,3.2535875,3.2535875,4.03458,4.3798994166666665,1.3284875,2.33711,2.82379,3.61411,3.06186,2.66277,3.08648,3.485035,6.702079333333334,6.4978,3.998995,3.257365,4.59369,4.64347,3.352455,3.421735,3.51203,3.90282,4.50751,2.523023333333333,2.6322,1.6440616666666665,2.315186666666667,2.2939825,1.5383775,3.147536666666667,3.5441333333333334,3.5129333333333332,3.0857500000000004,2.53403,1.62514,1.6939733333333333,0.4565027272727273,2.64864,1.6415285714285714,1.9005475,3.5808666666666666,2.4825466666666665,2.6186700000000003,1.0126375,2.2524075,2.50872,2.8002,3.608225,5.47825,3.77617,2.9256,2.2463466666666667,3.41524,4.38937,2.36437,5.2451,1.92599,3.71652,2.75175,3.930225,1.32689,0.628362,2.2839025,3.34557,3.148565,4.153545,4.90974,8.959315,3.3783,2.2396366666666667,1.8318366666666668,1.794666,1.794666,2.86068,2.5570533333333336,4.936105,4.543415,3.54689,4.983145,4.30692,4.32231,3.1694674999999997,4.40549,7.924497499999999,2.509275,0.5045225,3.1985799999999998,1.3539166666666667,1.0372514285714287,1.9503366666666666,0.857382,2.1119475,5.2977,5.1458,5.99767,0.94027,7.28753,2.029,1.5396033333333332,2.31924,4.118875,3.3480000000000003,2.371055,3.746885,2.982226666666667,4.2548,2.9247266666666665,2.8164433333333334,3.0219733333333334,6.9292750000000005,2.50957,3.88466,3.8310750000000002,3.5107774999999997,1.47928,1.112595,4.277855,2.802656666666667,3.3673,5.7202625000000005,2.624785,2.295085,2.38326,3.277455,3.8564666666666665,2.40312,3.920233333333333,3.02457,5.6175,2.4473485,1.869675,4.846445,5.3422,4.74867,3.93399,1.6630666666666667,2.3401625,1.9212875,3.38674,1.65046,0.9133683333333332,2.657665833333333,2.10386,2.03927,4.287435,0.761415,5.70305,1.346185,0.7982618181818182,3.550466666666667,4.04975,0.6696014285714286,3.3471605,3.172616875,0.8416,4.4118,0.17873071428571427,0.17873071428571427,0.17873071428571427,0.17873071428571427,0.17873071428571427,0.17873071428571427,1.91836,3.757065,1.91836,1.91836,1.8348766666666665,0.17873071428571427,0.17873071428571427,3.5056,2.6943366666666666,3.61631,3.29008,2.30021,3.51331,1.4274471428571427,1.6779879999999998,3.3624845,1.404866,2.6856500000000003,2.6359666666666666,5.840473333333334,4.03996,4.176355,6.6868,4.52879,4.806745,3.728925,3.926255,7.277929583333334,3.997866666666667,3.683866666666667,2.28309,5.251643333333334,2.59071,2.1143625,1.7632833333333335,4.686655,5.23765,5.23025,5.194,5.60065,4.607795,4.74637,0.7201681818181819,0.7189285714285714,0.7189285714285714,4.776655,2.367863333333333,3.60753,1.0159514285714286,4.50424,1.4413857142857143,2.3600166666666667,2.65986,4.3466,4.3466,6.96335,4.601335,1.3646533333333333,10.227891666666666,2.990346666666667,1.2776666666666667,5.2262,5.3842,3.91277,3.18948,2.61514,4.343366666666666,0.8096733333333332,3.4129666666666663,3.3468666666666667,3.819733333333333,3.18939,1.5301200000000001,1.47435,4.886278333333333,3.224156666666667,3.27703,3.4484,5.32158,3.4396958333333334,0.799607,2.0524766666666667,3.7916000000000003,2.2537016666666667,3.701833333333333,3.4332666666666665,3.2008166666666664,3.5005333333333333,3.119946666666667,2.698866666666667,1.1911666666666667,3.09708,2.54801,3.58172,3.12964,3.62374,2.722936666666667,3.4056333333333337,2.992175,1.645224,2.169513333333333,2.7294061904761904,3.5741333333333336,1.828876,3.2825,1.8454166666666667,3.8249333333333335,5.183283333333334,4.90606,2.4956875,2.55525,2.8538,2.3777475,1.6662571428571429,2.2264825,3.415497142857143,2.479245,3.647766666666667,2.924135,3.8414083333333338,3.19594,1.3071333333333335,1.271305,1.7794475,2.229205,3.1312766666666665,3.542733333333333,5.04175,7.7568,2.749135,5.22895,3.830525,15.510264333333334,0.52697,10.996405,0.8127466666666667,3.27101,2.8958866666666663,2.2224533333333336,2.821265,1.6091259999999998,1.45,2.390076666666667,1.2521879999999999,2.8116693333333336,2.0413799999999998,2.867426666666667,2.143143333333333,2.68168,1.48067,0.668295,3.12416,2.4678666666666667,3.0440066666666667,1.1020966666666667,3.5798666666666663,0.7210108333333333,0.3613346153846154,2.2005,4.58049,4.773805,4.496615,0.7695345454545456,4.011825,4.567535,1.1309325,2.54425,5.235755833333333,3.346005,3.89931,4.148705,3.978385,1.89428,3.817405,2.728146666666667,2.951455,3.535275,2.74469,2.710435,3.864005,3.25649,3.75954,2.169655,3.374665,4.60655,1.9554633333333333,4.565265,2.2118575,4.14323,5.16042,1.9652825,2.6585199999999998,3.11121,6.049943333333333,2.44352,3.37289,5.13525,4.063433333333333,3.81504,1.9547800000000002,2.837775,4.851045,3.6089,4.310395,3.7383333333333333,3.1418666666666666,2.8521733333333334,4.051,3.2209633333333336,2.7149699999999997,2.7541966666666666,0.44675944444444443,2.382225,2.20809,4.702705,4.74289,3.130076666666667,2.677403333333333,3.161913333333333,8.164075,3.65628,3.807785,3.0489833333333336,4.18897,3.165305,3.7135033333333336,2.6952366666666667,2.28797,2.70261,6.4622,4.688935,2.1078,3.353155,3.190935,2.6092233333333334,4.67612,1.74282,6.188783333333333,4.038045,4.94549,4.517785,6.5413,3.616515,6.808241666666667,3.5654,3.206295,0.6329314285714285,2.23597,1.55021,2.979816666666667,3.4867962500000003,3.90893,4.041935,5.24935,2.7534233333333336,4.77346,3.6506333333333334,3.9502666666666664,3.3146966666666664,4.50332,4.729375,4.673645,2.9378433333333334,5.635676666666667,4.694655,1.4591316666666667,5.2809,3.526225,2.670555,2.22467,2.3666066666666667,4.627613333333334,1.3238957142857142,2.36482,1.989,3.764315,4.230575,2.61757,3.4763,3.025022,2.467093333333333,3.913275,1.371786,2.321946666666667,2.3446433333333334,2.8111866666666665,2.5547933333333335,2.6592766666666665,2.7034233333333333,3.994985,2.9292366666666667,2.8056099999999997,4.139775,2.208295,3.85728,3.573045,1.6961062121212123,1.6961062121212123,4.603455,2.8023933333333333,1.7944475,1.3142525,2.0632575,2.08005,1.25597,1.51123,0.646948,1.5923066666666665,1.5559066666666668,2.96195,2.111596666666667,1.73686,1.9579733333333333,2.3125833333333334,1.45549,1.77088,1.89426,2.5015,4.00743,2.859995,2.88519,2.710275,5.727775,3.0175,4.34205,4.005410833333333,2.01448,3.987935,2.910115,1.878985,3.61157,1.9190975,2.996005,3.66346,1.93604,4.548615,4.1506,4.09802,3.4307,0.8429477777777777,5.0224,3.862115,3.344345,4.095815,2.404063333333333,4.591815,4.77558,5.0584412500000004,9.209523333333333,3.720415,4.43722,2.916593333333333,3.696505,4.48731,2.361395,2.712385,4.016315,2.1673525,6.033135000000001,1.849362,2.800315,5.877688333333333,2.9896966666666667,4.286296,1.2734485714285715,4.483405,4.532075,3.2452466666666666,4.78091,4.821825,6.653235,15.952540654761906,0.6510470588235294,1.0582433333333334,3.068376666666667,3.94543,3.6047,2.113675,3.309825,4.04838,4.87488,2.461605,4.722245,1.7075500000000001,1.7075500000000001,5.2644,0.7531300000000001,1.812856,3.158595,3.863065,0.3746,1.97881,4.0953514166666665,1.139115,3.1018600000000003,2.7196866666666666,2.973635,7.53514,2.5645000000000002,3.9629333333333334,1.9943733333333336,2.217706666666667,3.9136375,3.13344,3.478615,7.0791303333333335,1.877435,2.870725,4.587865,6.8058175,1.9670666666666667,2.3461066666666666,2.6080799999999997,1.39815,2.461395,1.6395974999999998,3.913285,3.48034,1.4614925,1.885705,1.885705,2.8770466666666668,5.59635,3.9508433333333333,3.865495,4.56457,4.54742,3.14989,3.714945,4.9431,3.48188,4.544826666666667,3.537385,4.42513,0.9132960000000001,0.35877625,5.2848,3.84627,2.4531633333333334,7.93641,1.57465,4.7148666666666665,3.974935,0.35530083333333334,1.96586,1.3857466666666667,1.87665,1.9058333333333335,5.534692,3.17029,3.234455,4.98925,4.689625,4.766465,0.5866646153846153,2.03173,0.600857,5.762358333333333,1.456412,4.95494,2.001045,3.26600125,3.295405,4.02357,4.11951,5.3877,0.8776981818181819,3.282275,3.845945,1.9205275,1.6172325,3.594375,3.080965,3.66027,3.867385,5.49302380952381,4.677595,5.71685,2.780143333333333,0.5158755555555555,3.410966666666667,3.690425,0.5930261538461539,3.95467,3.856935,4.06016,4.007745,2.7302700000000004,5.08675,3.19581,3.159355,2.152605,3.75752,1.649238,3.48119,3.77282,0.5905038461538461,3.72767,3.8865,3.24459,3.79816,4.416435,2.766585,3.86343,0.623076,3.0985933333333335,3.7228066666666666,4.57835,3.6286666666666663,2.6263,3.485,2.6263,4.813555,2.958795,3.06995,1.5525833333333334,3.192626666666667,1.8389325,4.237485,2.836203333333333,5.203923333333334,3.1615300000000004,2.6950800000000004,3.0459066666666668,2.387507321428571,2.387507321428571,2.387507321428571,2.371843333333333,1.1212933333333333,4.606155,2.4341166666666667,1.6782733333333333,4.113266666666667,2.3558333333333334,3.144576666666667,4.144345,5.6745,3.64401,1.87975,1.040844,4.00265,2.00758,2.25675,3.01802,3.34681,2.12079,3.42047,2.87453,1.6394480000000002,4.84341,4.258685,3.677935,3.682125,0.7390111111111111,2.401456666666667,4.502505,7.4427,3.89482,3.032545,2.88846,3.417085,3.798835,1.699785,2.4496325,4.69159,2.19166,4.493015,3.595235,5.35615,8.652543333333334,4.12455,3.49966,3.377265,4.84063,4.094565,3.365685,3.365685,3.955605,4.063173333333333,4.291935,4.06004,4.286745,4.597025,4.115725,1.12116875,4.27684,4.123475,5.3694,8.006335,5.00885,3.7130506666666667,1.7741866666666668,1.5918416666666666,2.48686375,4.9045,3.886705,4.79936,2.2683866666666668,4.462175,5.0733,5.3145,5.0912,3.0067833333333334,3.580125,4.046855,5.13055,4.444155,3.951485,6.520503333333334,4.52541,2.257963333333333,5.5443,3.922575,4.027405,3.7321,4.75614,0.7579181818181818,4.2056,4.50086,1.21153,1.2827899999999999,4.96927,4.720055,8.996847,5.0512,4.64984,6.00195,2.910795,2.573366666666667,5.091,1.6195325,1.6195325,2.703285,1.62099,2.90293,3.3735999999999997,1.9470575,4.205474545454545,1.4313099999999999,2.143415,5.536825,3.33683,3.56923,3.10243,4.03855,3.96725,2.952576666666667,1.02478,4.006185,3.16513,3.874595,4.150565,3.6684583333333336,5.5837,4.94235,4.827705,3.66066,5.40775,6.51785,4.766605,3.20892,3.31698,2.0583475,2.0583475,3.85156,3.894825,2.5257833333333335,2.726843333333333,2.152050303030303,2.6528533333333333,1.7775766666666666,1.7775766666666666,4.470775,3.45989,2.19174,3.70599,2.82577,1.862755,1.18725,0.9839211111111111,2.62768,0.4603626315789474,0.8467311111111111,2.655625,3.738835,0.42331090909090907,4.01619,1.988228,5.30155,3.379785,7.3584974999999995,4.387225,5.248056666666667,4.89495,5.1614,4.12636,1.798045,1.89435,3.8584,2.95254,3.78954,1.3085266666666666,3.133135,4.29588,2.69687,2.64643,2.51308,4.360055,3.29504,3.153945,3.934525,3.587465,3.36912,3.201375,1.0600985714285713,1.835535,2.429315,2.9402,4.406405,7.44744,0.9189,1.5398533333333333,1.5398533333333333,1.8274979999999998,4.013355,2.78484,2.98665,5.3488575,2.8991566666666664,1.3362475,1.3362475,1.3362475,2.784665,2.942512,4.52111,3.227275,4.28245,3.303055,3.63128,2.98762,3.1277958333333333,3.656445,4.37656625,2.6106525,1.25597,2.94833,2.6106525,3.44885,1.4827366666666668,1.6679233333333334,2.0333675,5.401542,2.903185,6.156257,5.401542,3.253072,1.7233649999999998,1.7233649999999998,2.49304,6.11253,1.7233649999999998,2.279985,5.54183,2.18566,2.60032,4.78042,3.44269,3.89686,2.1537933333333332,3.119805,4.73849,2.0898233333333334,2.314505,4.192,2.1537933333333332,2.464335,1.965065,6.03171,2.484025,1.0876519999999998,2.496985,3.302555,3.1534538333333333,2.088075,2.0300405,3.65171,1.7214013333333333,1.70766,3.306525,2.293845,3.26939,3.30195,2.0915066666666666,2.99297,2.42853,5.9328,2.354335,3.424815,3.359155,3.359155,8.387863333333334,0.9740533333333333,2.6946,2.380905,2.843925,2.17189,1.3091866666666667,1.3091866666666667,3.59189,2.33073,6.5390049999999995,2.221665,3.70134,3.532085,6.38097,2.683805,2.446415,6.288815,6.288815,2.431075,1.529235,1.262225,1.262225,1.529235,2.10257,1.33122,1.1717,1.4909666666666668,1.9879166666666668,3.727235,1.773455,3.14339,3.06334,2.57236,2.796855,2.877905,2.506005,3.148645,3.148645,6.17287,2.267125,2.844005,2.8574,3.412575,2.55558,3.02722,2.54095,5.4842425,1.9767775,1.5591616666666666,1.2822066666666667,2.2159383333333333,5.54599,4.071671666666666,3.4462416666666664,2.985455,1.7113675,1.7113675,1.7113675,4.34687,2.43036,1.1717,3.168835,3.60745,1.310065,5.27436,3.0907850000000003,6.31545,3.43802,1.851415,3.38034,2.4887333333333332,2.076685,3.43606,4.68566,3.51373,1.96843,2.509865,2.47425,2.927285,5.2361,1.988305,3.40691,2.544155,5.92173,4.63463,1.786575,2.56798,5.44583,4.91127,5.18332,5.82663,1.0372400000000002,1.0372400000000002,2.292412,2.292412,0.769832,5.34248,2.99897,5.06468,4.60501,5.3278,2.261625,4.346016666666666,4.346016666666666,2.077925,3.403695,3.645895,1.1657579999999998,4.22627,3.13938,3.190085,2.386735,4.51823,2.53648,2.052005,3.154915,2.914005,3.008645,5.42066,2.547905,1.844905,3.85425,5.40338,5.40845,4.18263,2.686975,3.25548,2.30241,5.4118,2.60014,3.67495,2.26004,6.18276,3.49982,2.47374,2.535965,2.61575,4.91241,2.33453,2.82243,2.7224,7.07147,5.26623,3.070345,2.05972,2.20481,6.61304,3.35151,3.442355,5.53958,2.901165,2.73266,2.742415,3.033395,1.7753366666666668,1.998315,1.96152,1.8252,1.7074433333333332,2.09992,1.895365,1.99114,1.74633,1.7753366666666668,4.07142,4.51643,2.015355,1.6213950000000001,1.6213950000000001,3.44905,3.44905,3.063793333333333,3.063793333333333,2.94135,2.11839,1.764345,3.79746,2.179265,2.179265,2.27263,2.27263,3.08356,1.86056,4.35131,2.197905,2.86672,1.8857333333333333,1.8857333333333333,1.52835,3.98834,5.67536,1.4827366666666668,3.85532,2.0915066666666666,2.178435,4.0124,3.079625,1.966915,2.07963,6.20001,2.21409,5.6719,3.039255,3.288775,3.083485,2.681655,6.29529,3.2323,2.287125,2.538245769230769,2.88042,6.60563,3.597665,1.5059,1.5059,4.11353,5.19892,4.68069,5.15742,2.848225,2.807845,1.6608,3.07092,1.58811,2.60495,1.796465,0.790306,0.790306,0.790306,2.1504325,4.9038,2.1504325,2.219215,3.51104,1.596045,2.00991,4.60298,3.49045,5.27415,1.5695866666666667,4.81191,1.5695866666666667,1.5695866666666667,2.20132,1.81741,2.228065,6.63479,2.228065,2.449515,4.00448,2.044455,1.781715,2.65099,3.0187899999999996,3.1221283333333334,3.214166666666667,3.445875,1.3606966666666667,4.065595,0.7581272727272726,4.204155,4.2896175,2.6508825,2.6508825,0.7376227272727273,3.9673,2.728173333333333,5.62255,4.929935,4.26758,5.44515,4.08498,4.255915,5.25275,4.182985,4.30733,3.748335,3.91042,5.04335,5.051,3.24452,3.56443,4.23905,2.6700966666666663,1.26677,4.33402,3.55351,3.381365,1.2526871428571429,3.77174,3.873655,6.3104125,1.1850125,5.55405,4.131475,2.13078,1.960385,3.206355,3.5447,1.77358,1.5059,4.203415,4.98546,2.609815,4.687085,3.07111,1.17011,3.17835,1.2100371428571428,3.1073833333333334,1.9844,2.97996,1.9071075,2.6887899999999996,4.131535,3.036345,4.49718,3.042995,2.2438075,4.9066,4.48814,3.099065,5.53375,4.33118,2.6264766666666666,6.1376,4.792555,3.1584999999999996,2.617176666666667,2.44771,2.9748099999999997,3.137026666666667,2.7730566666666667,4.64041,4.248405,3.734465,2.38306,2.596833333333333,2.4475433333333334,2.4290833333333333,2.2616533333333333,2.3726066666666665,2.18439,2.2744175,1.1055075,2.9950836666666665,1.1339925,1.7364325,1.6702025,2.7209,1.588485,1.8324125,3.78737,4.08304,1.9462875,3.90116,3.984875,6.341231666666666,2.067346666666667,1.613532,6.57285,3.63915,4.47179,4.558175,4.13968,2.088655,3.62466,2.471045,3.048375,4.52393,0.6963341666666666,4.121115,2.10605,0.7821554545454545,5.02665,4.37978,3.867565,1.855906607142857,4.892225,6.04715,2.755576666666667,3.25294,2.50981,2.04224,0.589283,3.191003333333333,3.017325,4.970085,2.4787725,2.0907425,3.537035,1.172055,1.8051016666666668,1.8051016666666668,2.85038,1.8051016666666668,4.24894,2.728435,4.58894,4.21403,5.70685,13.141976666666666,3.0868066666666665,4.92833,2.71195,4.740665,3.038,6.645975,2.9170833333333337,4.606145,4.63311,3.799445,1.1643116666666666,4.81071,3.22941,2.66309,1.0108199999999998,2.14086,3.34692,7.2899883333333335,4.422965,2.825293333333333,4.70696,3.1044466666666666,4.2055,4.41082,4.421935,2.73091,2.90195,4.0441,5.7339,2.571955,4.32539,2.0327775,2.0327775,3.13181,4.87842,1.20005375,4.02358,2.15064,4.6645,2.5823933333333335,2.4501399999999998,3.14434,2.19812,0.7426142857142857,3.528105,2.7846233333333337,5.4971,4.594895,0.2338140625,5.22175,4.57609,3.976305,6.729420000000001,2.9891900000000002,2.880926666666667,2.2331666666666665,3.0335666666666667,2.7292133333333335,1.3362333333333334,3.034803333333333,2.6423733333333335,1.3946383333333332,3.3821666666666665,3.1132000000000004,2.659616666666667,2.94688,1.2749055555555557,4.315335,2.73287,5.27645,3.88058,3.785065,1.60817,2.4967799999999998,1.3329325,1.80687,1.3329325,4.906385,3.5559666666666665,1.5785420000000001,2.40521,3.903875,3.756195,2.923575,3.833955,0.359289,1.4148558333333332,3.810285,4.170365,6.39505,1.8692425,2.7734466666666666,3.0789000000000004,2.30167,2.85446,3.56445,4.72118,2.5111,2.227203333333333,3.12705,2.59134,2.7161566666666666,4.32221,2.039415,4.828225,3.795259166666667,6.2187,7.6455874999999995,0.7303522222222223,0.833467,4.141545,6.723025,2.0265999999999997,3.569115,1.463035,1.463035,3.407755,0.4477855555555556,3.53121,4.002285,2.76516,3.9641,3.18135,2.59651,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,2.065085,2.80589,3.99669,3.1061549999999998,4.35646,5.68307375,2.90408,2.0789066666666667,0.91742,3.37385,0.81887875,5.174939166666666,3.0960324999999997,2.19798,0.81887875,2.36206,2.747,0.865795,3.92616875,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,4.31716,1.590695,4.66868,4.62427,1.82167,4.669705,4.313795,5.18225,4.827475,3.4990960714285713,3.332235,4.349785,2.04746,5.352955,4.36655,0.7484428571428571,1.4599428571428572,1.3743642857142857,3.2950933333333334,3.2950933333333334,2.9905749999999998,3.935005,4.315505,3.568315,4.06562,2.838063333333333,1.93876,0.5776342857142858,4.105865,3.17047,2.619055,4.082875,3.296525,3.0815762500000003,5.0753,4.481705,6.534392500000001,4.177835,4.9423,5.5939,4.49862,1.292835714285714,3.049715,5.314893333333333,33.75538039430015,1.1955366666666667,4.407025,3.17064,4.57503,4.16859,5.21045,4.898355,0.4248142857142857,5.382,4.535015,1.98592,1.91667,3.361635,1.592935,2.473155,2.61392,1.7127325,2.83025,2.3886233333333333,2.7916,2.640925,0.6008853846153847,3.08455,3.821865,0.36937947368421054,2.50985,2.651,2.955755,3.868725,1.829955,4.52009,3.9752,3.111585,3.587705,3.038975,4.242105,2.88743,3.84506,2.1615225,5.314893333333333,3.45515,3.527085,2.8232,1.748834,3.790655,3.37664,6.96016,3.518815,4.809975,6.500305,5.201566,2.33094,4.37908,5.87635,7.549328,2.5484833333333334,2.481755,4.728695,5.676780000000001,4.432015,3.36252,5.493358333333333,2.74415,1.67096,2.142405,60.84093890627304,4.96296,4.278705,2.5748,0.8745390000000001,2.7603866666666668,3.0327866666666665,3.4258333333333333,0.8286555555555556,4.507275,0.7607677777777778,7.603751071428571,2.00758,3.3332533333333334,1.781838,2.635915,2.6440533333333334,3.1266599999999998,2.412786666666667,2.2401966666666664,3.350433333333333,1.60923,5.364819166666667,3.936166666666667,1.4286525,2.74724,1.4556433333333334,1.5189125,7.62756,6.0121,3.415305,4.024105,5.2774975,1.4858428571428572,3.5269666666666666,3.216385,1.667405,5.713,3.589755,3.90425,1.559725,2.9394733333333334,3.613466666666667,4.09334,5.56835,4.234805,4.37286,2.16008,3.759815,4.536933333333333,3.09364,1.473374,4.248245,3.3885666666666663,4.106175,5.15945,3.97926,4.00312,4.447,4.4012,4.270225,4.592305,4.09479,3.2234433333333334,3.850135,4.30663,3.18527,4.278065,3.845295,1.443485,1.443485,4.33891,4.819745,5.0154,3.64107,4.92517,3.3047833333333334,2.723605,5.00615,5.5274,0.7437881818181818,5.48095,6.7471925,5.5632,5.76705,1.0738133333333333,2.998285,0.8674499999999999,0.8674499999999999,0.8674499999999999,3.72321,3.4746,2.6621166666666665,3.5808666666666666,0.97219,5.16155,5.48545,3.03516,1.6546525,2.1132275,4.158495,3.685205,3.745685,3.857338,6.7994,3.678485,2.5853800000000002,4.68789,6.9369,2.24311,4.30149,3.674525,3.159005,5.39675,4.171755,5.27315,5.7727,3.228275,3.575337777777778,1.9114833333333332,1.9114833333333332,0.7190500000000001,8.864889999999999,2.07331,5.70745,5.5835,4.284525,5.60425,3.79821,3.060931666666667,4.537465,7.6719349999999995,5.669556666666667,2.553713333333333,4.356605,0.9996409999999999,3.77858,1.9284299999999999,0.9175222222222222,1.200902857142857,2.69168,3.013453333333333,2.854556666666667,1.0897428571428571,2.6674133333333336,3.07736,0.9215455555555556,2.72161,3.2911133333333336,1.649878,1.851672,2.9594233333333335,3.1094566666666665,2.8853933333333335,2.4794933333333335,1.7735499999999997,5.28005,4.31186,4.17551,4.413345,5.3563,3.084575,4.54473,6.5786,5.18795,4.583755,3.963405,9.939281666666666,8.756920000000001,3.0156899999999998,3.573155,1.9638833333333334,3.80091,3.267855,4.604215,1.02559,3.803525,3.999525,1.6277466666666667,4.14038,3.0544783333333334,4.455465,3.01844,3.771005,6.51105,7.857266666666667,3.91672,1.540955,1.540955,1.540955,4.800105,1.1383983333333334,1.5050875,0.48882388888888895,4.422065416666666,3.0078333333333336,3.698905,1.0078900000000002,1.16313,2.995195,4.32812,3.73282,16.57905573809524,4.084545,4.556315,6.03714,2.81485,3.448785,3.24709,0.9387588888888888,1.5440175,3.906945,3.510195,4.293905,4.685285,4.41507,4.16067,2.770576666666667,3.58054,5.3366,0.5503199999999999,4.730635,2.3231175,3.95455,4.87049,3.5118666666666667,2.3510166666666668,4.283501666666666,2.3055166666666667,3.611815,6.00055,3.0517299999999996,3.79438,4.314505,4.03444,4.5678,3.87762,3.27177,4.03575,4.86898,4.90464,3.62969,4.39032,3.787195,1.1158442857142856,1.40727,5.999653333333333,6.2102,4.06499,4.937155,2.583325,2.7288599999999996,2.6385166666666664,5.710613333333333,1.9064925,2.00406,2.9728766666666666,3.0650833333333334,3.3930000000000002,4.52241,3.05963,5.108593333333333,1.17849,4.672885,0.9283716666666666,4.00618,3.31485,1.7529933333333334,4.463655,0.9711388888888889,4.99687,5.72595,4.879355,4.149885,3.941063333333333,3.951415,3.100146666666667,5.17955,6.1361,2.8300199999999998,4.000265,2.411275,2.5995,2.01195,2.627945,3.28036,5.14395,1.07033375,4.4032775,1.3086875,3.34734,1.6355266666666666,1.07033375,0.19686783783783784,3.82097,3.01368,2.275393333333333,1.88784,2.72048,1.0807475,4.021315,3.57604,4.96795,2.54293,6.27995,6.48742,2.68378,3.3414,2.66227,0.823205,2.4170000000000003,6.1886,4.273015,5.60955,4.86652,2.06756,1.3008466666666667,3.854205,1.6605325,2.142755,1.74115,2.51665,1.6914525,1.8840175,1.9566625,2.088325,1.86603,1.3913371428571428,1.3212875,1.941805,1.7781125,2.194045,2.2602800000000003,0.5460066666666666,1.046502,2.7781066666666665,3.2682233333333333,2.043895,1.8592166666666667,1.5036,3.85948,2.1949866666666664,2.734815,3.306575,5.5463,3.745845,3.0339566666666666,4.53404,1.6313696323529414,3.7705625000000005,23.173257,4.56756,5.97575,4.21027,2.10384,3.841295,4.903505,2.314925,5.0366,3.464933333333333,0.81275,3.34452,4.55543,3.78771,4.150575,1.6093433333333333,2.016896666666667,2.4718066666666667,2.040345,1.5073857142857143,3.4999000000000002,5.01805,4.12433,3.249795,3.915535,4.92869,3.34607,4.75368,1.2502,3.222575,4.087265,4.725945,1.8214359999999998,3.342,1.81149625,1.81149625,3.593045,4.761115,2.96853,3.013453333333333,3.88529,3.919925,6.56216,4.824015,2.20508,1.5440175,2.868225,4.336965,3.1702266666666667,2.670764126984127,2.670764126984127,3.3889333333333336,4.988925,3.66668,5.0769866666666665,2.398705,3.315154888888889,0.6650988888888889,0.6650988888888889,0.6650988888888889,3.48902,3.81446,4.049763333333333,5.7986,2.1896725,4.99504,4.84474,5.4409,3.337175,5.3272,2.27254,1.3398257142857144,4.157785,3.964425,0.4931628571428571,4.335066666666667,4.933535,1.5685733333333334,4.9789,5.0134,4.499115,4.30213,3.73865,2.89833,4.366595,1.6750139999999998,4.435685,1.5799116666666666,4.19188,5.9896,1.17685375,3.046455,7.0103775,3.957955,3.307256666666667,2.1006525,3.78795,5.6051,3.045616666666667,7.535746666666666,4.094155,2.18595,3.1140066666666666,2.73417,2.3548899999999997,2.7308833333333333,1.8218533333333333,4.61251,0.5684233333333334,1.9474974999999999,1.9474974999999999,3.169425,3.73551,2.31501,3.17208,4.39295,5.2338,4.427625,1.4037366666666669,4.366238726190476,4.45267,4.83091,3.578885,4.2841585,3.8386405000000003,0.44551799999999997,3.0064385714285717,1.1392125,0.44551799999999997,4.37526,0.8280544444444444,4.210715,3.98131,6.5638760000000005,2.05277,1.01833,1.1515520000000001,2.33568,3.031216666666667,1.6670766666666665,2.43815,3.41037,3.770605,1.9667700000000001,2.31199,4.443855,3.0060337500000003,3.985915,5.76695,3.40332,5.0695,6.7073133333333335,4.723735,3.527815,4.545725,3.760665,4.219675,5.239,5.685875,5.4687,2.4359766666666665,0.9915488888888889,3.725105,3.92108,4.234005,4.170065,4.223645,5.32835,2.63829,2.5658600000000003,3.0791833333333334,2.4062266666666665,2.0845833333333332,2.8954733333333333,3.182593333333333,2.4516466666666665,3.89481,4.904575,4.234875,5.42515,2.631413333333333,3.5846999999999998,2.9601,0.7514714285714286,4.175665,3.822095,4.56077,2.9600233333333335,5.3809000000000005,3.29924,4.8503,4.046265,0.5946023076923077,0.561195,4.36732,2.7658465,3.13051,4.523395,4.170905,1.7184979999999999,5.42835,4.38322,2.5503833333333334,2.6669766666666668,2.333645,2.1118408333333334,3.5535333333333337,3.07147,3.175456666666667,3.06458,3.5493,2.611225,3.10354,3.746866666666667,4.29159,0.53932625,0.53932625,0.53932625,3.2552725833333334,3.536466666666667,3.6404,2.7548333333333335,2.85755,1.12116875,2.95361,3.14373,1.86882,2.6404466666666666,2.3780666666666668,1.0119633333333333,2.86362,4.637285,10.0289945,1.5675642499999998,0.709124,3.67021,0.709124,0.709124,0.709124,0.709124,2.141145,3.9957495,4.050985,4.81994,6.0602,2.8198633333333336,2.8278966666666663,3.1258512499999997,3.233033333333333,4.61698,1.0033783333333333,2.27862,3.263476666666667,2.52664,2.8780933333333336,3.619545,2.12497,2.300565,1.1196555555555556,5.22505,2.610725,3.603845,0.87623,0.67622,0.67622,0.9418977826086956,1.8181277826086957,0.9418977826086956,0.9418977826086956,0.3208247826086956,0.3208247826086956,0.9418977826086956,1.5240666666666665,2.4742966666666666,2.95079,3.025206666666667,2.5140566666666664,2.6244666666666667,3.3170266666666666,2.7391366666666666,4.521955,3.80295,1.89045,2.2270333333333334,1.7044225,0.192413985640648,0.192413985640648,0.192413985640648,0.192413985640648,2.4045433333333333,2.462153333333333,0.8942819999999999,5.1131,0.7983690909090909,1.6730519999999998,4.757461666666667,5.48335,4.257725,2.939855,4.40046,3.444395,1.7422666666666666,1.17843,3.82048,4.5975,6.70435,2.31902,1.3761066666666668,1.8716766666666667,3.0167033333333335,1.5071166666666667,2.75053,2.945463333333333,3.3840333333333334,4.397185,4.070265,3.0443,5.00735,2.574806666666667,4.18035,5.6264,3.94725,4.270565,4.65237,5.331556666666666,4.679329166666666,3.0126842857142857,4.940461666666667,4.38248,6.6732,4.62444,4.48236,2.2595475,3.00428,4.2744,4.91686,4.375915,3.985175,3.873545,4.039855,4.04889,2.4636633333333333,5.60855,3.482855,7.5983675,6.09175,5.90055,4.932905,1.5011142857142856,0.9587389999999999,0.6351269230769231,1.810504,5.15025,5.63125,4.08737,1.632876,4.058965,2.923365,5.2599,5.28945,6.183826,4.17413,2.97699,1.6567859999999999,5.2123175,3.952675,3.147,1.7354825,0.948,3.94304,3.439385,3.6851275,3.618345,2.210285,4.3944,1.7364666666666666,2.9309233333333338,2.516865,4.5271,6.00765,4.837395,2.439705,1.643405,5.60325,2.9466966666666665,8.7227,2.8615,5.24095,5.97525,4.583145,5.4176,3.72408,4.955285,2.2541725,3.86654,4.9747,2.5802,4.196825,4.62384,7.536735,5.0749,3.1209666666666664,4.118725,4.094055,3.0060337500000003,3.472265,5.23065,5.7818,2.39938,3.013036666666667,3.3180566666666667,2.31944,2.51319,4.412725,5.98765,5.0922,4.61714,4.91474,4.323015,4.839095,0.64421,3.17531,1.19979,31.55340528720238,2.56468,4.651895,2.998655,4.533625,1.712866,2.4697133333333334,3.090762023809524,1.5558345238095237,1.5558345238095237,1.5558345238095237,1.5558345238095237,1.5349275,3.244305,0.3467166666666667,7.869506805555556,0.3467166666666667,4.413785,5.0455,2.0006025,5.4597,2.915175,3.9490206666666667,2.41192,2.5826566666666664,2.7195633333333333,2.0883499999999997,0.6244284615384615,2.6041766666666666,0.7369383333333334,3.3973999999999998,2.2754033333333332,2.494754,1.1900683333333333,2.494754,6.2719,8.349440000000001,4.766785,4.349085,5.89435,6.1129,7.373678333333333,3.357765,1.43621,1.43621,2.4027433333333335,5.14295,3.60712,4.315165,6.30454,3.935695,2.737555,3.791255,3.461755,3.563085,2.1396,1.120028,2.21562,3.860235,4.062525,5.371652222222222,2.0587125,3.870215,1.302856,3.18184,1.271522,3.4384333333333337,2.9400099999999996,3.01866,3.412266666666667,3.119866666666667,4.90345,0.6960230769230769,3.43263,3.6530666666666662,2.6231766666666667,2.36881,4.16820875,3.3796999999999997,2.0263466666666665,4.72079,3.512625,5.10205,4.060665,3.671645,5.7798,5.0526,2.1814,5.6352,2.383103666666667,1.7990566666666667,3.13958,2.43097,2.9383233333333334,2.579615,1.8948566666666666,3.256543454545455,4.37354,3.3863399999999997,2.4164956666666666,2.4164956666666666,2.475235,4.016015,3.83335,0.6279572727272728,3.107645,3.305305,8.85075,0.8646436363636364,4.60465,3.42048,5.82895,3.62354,3.8448,2.336545,3.909945,2.987085,5.44875,2.65001,3.83711,2.7596166666666666,3.649725,2.7369866666666667,3.625795,3.72115,3.87285,5.410731,3.29161,1.98561,5.2255,2.5002066666666667,4.53672,4.72759,4.8368,4.700605,4.02872,2.802205,2.2548333333333335,2.8810633333333335,2.679486666666667,2.8129000000000004,3.21392,2.7909661904761904,4.958071666666667,2.8882100000000004,2.4909966666666667,6.665465833333334,4.960545,3.82453,3.108696666666667,3.7932333333333332,4.046235,3.59891,2.0845725,3.9073325,4.9454,5.0988,1.4495733333333334,4.37815,2.6823,7.3541375,4.838865,8.75075388888889,4.074255,4.02411,2.071465,4.126035,5.8218025,7.80587,4.84662,5.65084,3.91118,3.35743,3.83028,1.74282,4.783188,1.4366683333333334,3.68152,4.660575,3.426,0.858,9.389686666666666,1.2013444444444443,2.0470575,2.50437,1.9608400000000001,3.5384333333333333,1.3552583333333335,3.61962,3.64762,2.435966666666667,4.33107,1.1418141666666666,3.67698,1.4120666666666668,3.0147941666666664,3.848985,5.14505,1.474375,5.989117916666666,2.4652866666666666,8.16083,4.44054,2.78194,3.968485,3.315325,1.1925370833333333,7.64421,2.930575,3.327955,2.333925,4.079775,2.1905,3.1264025,2.243995,4.006625,1.350835,6.02065,2.923095,4.182945,0.8963829999999999,1.8716780000000002,3.819215,4.946465,5.1908225,1.45958,1.45958,5.8174,4.4278,6.0278,3.8,3.406035,9.540600000000001,4.42293,5.4895,3.88485,2.5759,2.1185509411162315,0.37795100000000004,0.20632129032258065,0.6131901792114696,1.1274097619047618,0.6767627188940092,0.20632129032258065,1.287511,0.4068688888888889,1.505360761904762,1.9007011792114696,1.9260675,2.3537425,2.203066666666667,5.3145,6.25442,4.73057,5.2916,4.34445,5.0273,1.2598666666666667,4.837645,3.95756,5.6863,5.0575,5.1424,5.4586,6.0626,5.45345,1.2793016666666668,1.3199771428571427,1.8202559999999999,6.046583,1.2808579999999998,5.42925,4.769495,6.951304583333334,4.86781,5.40875,4.510375,4.59675,2.45484,5.2464,5.3778,4.437966666666666,5.05305,5.871605833333334,5.46335,3.90232875,4.25052,3.8335000000000004,1.01183,3.7012666666666667,4.69969,1.1582,3.7495,4.74024,4.52186,4.868305,2.450135,3.210285,2.6058333333333334,4.5796,2.1916325,3.810435,1.27058,3.2012,3.69677,3.930155,4.607555,3.35971125,0.6024308333333334,6.12825,1.0003875,3.649,2.931713333333333,3.68526,1.9778833333333334,3.838905,3.7489428205128204,3.2776333333333336,4.52271,15.853809404761906,5.32351,2.245055,8.48594,1.4486925,3.70854,2.946956666666667,2.8281066666666668,2.05431,0.20410391304347827,2.674523333333333,4.339005,1.7548819999999998,2.20247,3.199336666666667,1.84473,2.2130966666666665,1.5892428571428572,3.39198,4.848655,4.549385,3.08978,0.47063428571428567,2.3382333333333336,4.447375,2.76037,3.81365,4.604045,4.37203,5.53885,0.47776294117647056,2.5131533333333334,2.5131533333333334,5.4236,4.918265,4.906895,2.68015,3.4952666666666663,2.8211999999999997,5.27075,3.61704,5.569087777777778,4.6706,4.376465,4.67183,2.6226,1.9706620000000001,4.52024,4.00511,3.962675,3.70812,1.7990279999999998,5.03075,4.41144,3.76597,4.517555,3.804745,4.21493,0.6398793333333334,3.023295,0.5628449999999999,3.1546800000000004,3.299185,4.363725,17.93514619047619,3.45402,3.77662,2.4887333333333332,0.97533,2.2306066666666666,2.5220466666666668,1.555234,2.358805,2.49152,4.69848,2.2436833333333333,3.862545,3.97536,2.16348,4.40113,2.9941,4.72398,4.93194,5.43835,1.60585,1.448485,2.263575,4.728675,4.83619,1.148011111111111,5.24835,3.80547,5.54715,4.722805,1.6552566666666666,4.66132,3.433185,3.712955,3.87468,4.11021,3.1161433333333335,0.59165,7.370520000000001,1.50726,0.2146475,0.2146475,0.2146475,4.800115,4.079715,2.6959666666666666,4.287365,2.926,4.759835,4.3647478571428575,4.05823,8.6796,4.25629,6.984736666666667,0.8417925,0.7651675,2.343435,4.462855,4.34513,2.217713333333333,5.3202,5.50655,3.411705,3.614455,4.384915,2.22502,4.90266,4.723299,2.396306666666667,2.8329766666666667,2.958626666666667,2.70762,6.0348,3.84279,0.6434621428571429,3.848935,3.07677,4.154385,4.8526066666666665,5.04715,2.8435,5.39885,3.80495,13.490133750000002,4.73088,7.008095583333333,2.45118,6.500758,4.313615,3.951645,2.118055,2.3129591666666665,9.97143,2.29306,4.3005,4.158033333333333,3.7813666666666665,3.3262066666666663,2.858916666666667,2.0764925,2.2543825,3.1143733333333334,1.8090199999999999,3.9341666666666666,2.3840033333333333,2.5788033333333336,3.456566666666667,3.4791000000000003,2.53186,2.53186,2.4327133333333335,3.5747666666666666,3.4276666666666666,2.2613933333333334,3.246166666666667,4.3431,2.7652633333333334,2.8473466666666667,3.8445,2.418956666666667,2.0370125,4.006966666666666,2.9809566666666663,1.766346,4.0002,2.17496,2.4799933333333333,2.9187600000000002,2.2003250000000003,3.3996,5.778866666666667,2.32201,3.7466333333333335,1.9237266666666668,10.795031999999999,1.9371933333333333,1.8160666666666667,2.08042,1.0138933333333333,1.582782,4.765016666666666,2.762162,2.762162,1.691994,1.589945,3.47749,3.916386666666667,2.2122566666666668,1.5770366666666666,1.741172,4.714348666666667,3.7669,4.094966666666667,8.40089,2.977692857142857,2.5401166666666666,3.2985176397515525,4.3479,2.0370125,3.342333333333333,2.766856666666667,3.5221666666666667,3.3773899999999997,0.87796,3.3356405,2.92796,2.8413233333333334,4.06825,3.330026666666667,0.664540909090909,1.9213616666666666,5.30985,2.48203,3.2971466666666664,1.7183166666666667,1.7183166666666667,2.076815,3.884288333333333,0.9441940000000001,2.18069,4.55917,4.55917,0.6543571428571429,5.80339,3.46762,3.960645,4.755415,1.225604285714286,3.3871,3.5437666666666665,5.2230791666666665,5.6685099999999995,2.2580633333333333,0.6649510000000001,2.6668566666666664,2.5818066666666666,3.098457333333333,2.2780133333333334,2.3981266666666667,2.9163599999999996,2.363575,2.4952733333333335,0.8084381818181818,5.0134,4.904676857142857,1.30397,1.7884428571428572,5.6289,2.17054,1.65602,4.053815,1.5067460000000001,3.52945,2.5986,3.6385,9.050548333333333,4.6836416666666665,4.45464,5.1624,2.418372727272727,0.793052,1.941214,6.9646099999999995,1.70346,3.96162,3.937435,3.532585,21.32168075,3.31258,1.4016466666666665,1.07261125,3.1301799999999997,1.4355066666666667,4.286296,5.15685,3.2933935,3.4116666666666666,1.3194033333333333,1.4662233333333334,2.8251500000000003,0.5861825,3.4879333333333338,3.8026999999999997,3.0059666666666662,2.4238786666666665,2.49819,2.8036966666666667,2.0426366666666667,2.844913333333333,1.574726,3.8104999999999998,1.4623783333333333,3.91197,3.94855,2.7152333333333334,5.42455,3.215885,3.96163,5.00815,4.381885,3.0768400000000002,2.893546666666667,2.3258966666666665,1.070747142857143,1.070747142857143,1.070747142857143,2.3407525,3.5825333333333336,2.59679,2.488916666666667,2.1252133333333334,1.9766125,3.650565,5.40295,3.68369,6.601875,3.0962,2.64485,1.8773125,0.9332400000000001,2.4404333333333335,4.12717,2.489203333333333,2.617523333333333,2.4460533333333334,2.4398,2.576566666666667,2.8307633333333335,2.7067200000000002,2.7707333333333337,2.22575,3.5490666666666666,2.1668366666666667,2.224375,1.6237525,1.7826725,3.096856666666667,3.0048166666666667,2.030105,3.794825,5.1371,2.8996833333333334,2.4389586538461536,5.8779,4.05853,4.80338,5.51665,4.71554,4.35087,6.286054999999999,1.2429975,4.24617,2.642745,5.30415,5.0056,3.733045,3.623355,2.3050425,7.9786,2.92455,0.8729666666666667,7.82795,4.97616,5.616716904761905,4.52638,2.8808517499999997,1.7467425,5.08205,4.297595,4.59627,5.28255,2.444825,4.13485,4.507095,1.7044225,3.89815,2.8421,1.3796816666666667,4.616845,0.6213176470588235,4.2734000000000005,3.494805,4.728565,3.069455,1.698705,3.37646,2.102615,1.45625,2.776393333333333,3.4005666666666667,3.2714866666666667,7.20410358974359,1.9136825,6.635813333333333,9.42979,6.298467499999999,2.998985,1.2898485714285715,2.873806666666667,1.2898485714285715,2.8097666666666665,2.171463333333333,0.3304970588235294,1.1972408088235293,0.3304970588235294,0.3304970588235294,0.3304970588235294,1.1972408088235293,1.1972408088235293,0.3304970588235294,0.86674375,4.24453,3.36997,3.182675,3.34813,3.467845,4.42893,2.791819666666667,1.620066,6.6252200000000006,3.154443333333333,4.110265,2.6561166666666667,1.0277727272727273,1.22616625,4.468315,3.4995,1.125622222222222,1.552014,0.761439090909091,3.0793294025974025,4.167105,5.0693,3.4519,5.430110833333334,0.563513076923077,4.373105,3.1646,2.9981166666666668,2.4188300000000003,3.5668666666666664,2.4926266666666668,3.0096233333333333,2.6596766666666665,3.07473,3.702245,4.635055,4.524795,2.14938,5.23265,4.24339,2.940225,3.951745,3.493795,0.36662733333333336,5.0457,3.56848,3.056905,3.041684,4.240055,3.96853,1.96994,3.145595,3.79702,8.38583,5.13555,5.40055,4.89532,3.768275,0.78887,2.153505,2.04725,1.556645,1.8348766666666665,4.379345,5.5803,4.12675,4.94737,3.857338,2.5875016666666664,0.9361483333333332,3.99022,1.2225433333333333,1.114205,3.165205,3.681145,4.680385,1.296725,2.5787233333333335,8.860666666666667,3.2838133333333333,2.9528375000000002,0.8537175,3.72804,12.197016666666666,3.38578,4.128085,3.122615,3.01248,4.657845,5.04745,2.09624,4.26478,0.55962,4.752195,2.2105775,1.93278,1.93278,3.5289333333333333,4.27596,1.5481466666666668,3.995355,1.2511085714285712,3.81947,2.7156841666666667,3.5182333333333333,4.98261,3.463985,3.830076666666667,2.6214,2.7642016666666667,2.7642016666666667,11.028735000000001,0.710244,2.792785,3.2025400000000004,2.1576775,2.0099525,0.9015571428571428,1.4026775,1.2187585714285714,1.94058,4.888605,2.458895,4.2637475,2.0161633333333335,4.0733,3.991595,1.7434166666666666,2.0452475,1.0725233333333333,6.094795833333334,2.043225,2.20067,1.7081140000000001,1.844728,1.07261125,2.41687625,3.57695,1.8558766666666668,3.1379699999999997,2.5676733333333335,2.7137233333333337,1.7278866666666666,3.1264566666666664,2.538116666666667,1.76731,1.7850666666666666,2.8521633333333334,2.7107666666666668,2.3559066666666664,1.1279033333333335,2.536166666666667,2.052853333333333,2.3062733333333334,0.30978526315789473,0.4087241666666667,2.3636033333333333,2.1942766666666667,3.433975,3.26635,2.79226,4.82471,5.4715,4.32887,4.749565,4.27272,4.10573,2.9805166666666665,3.747115,0.7078690909090909,0.060077954545454545,7.0413,0.060077954545454545,3.46981,2.98166,5.3158,3.5133,6.409,4.65296,2.0164966666666664,2.4862233333333332,0.9791083333333334,5.231,6.4033,3.2060066666666667,5.42605,1.763415,3.57333,2.004132282608696,3.0842033333333334,3.2128200000000002,4.008255,5.04255,3.2045,2.1747333333333336,2.1747333333333336,4.10032,7.77901,3.42139,2.1860466666666665,2.35492,4.502145,3.150325,4.978905,3.57061,0.9794522222222223,4.257045,2.467356666666667,2.80146,4.226615,1.154085,2.4147666666666665,3.95986,3.453825,4.81172,2.90915,2.921115,3.910855,3.994225,4.40048,5.00515,4.330895,3.1973277777777778,3.80331,3.0029566666666665,2.71196,2.5968666666666667,3.9949,4.32385,2.9944,4.996064166666667,4.17229,3.61827,5.44975,4.4235,3.402895,1.428272,1.3143275,4.07991,3.416166666666667,1.61303,2.892916666666667,3.180475,3.1957066666666667,4.085773333333334,2.99889,2.1688158333333334,12.45764625,2.5063133333333334,1.8224620000000002,4.594425,1.052652,3.2018633333333333,3.70478,4.79248,3.15993,1.2207444444444446,2.293266666666667,2.54293,1.5213480000000001,4.16154,0.95739,0.95739,3.4908033333333335,1.5746900000000001,1.9161133333333333,1.68334,3.040345,6.0117,2.1629,2.7767,3.3973850000000003,2.75128,2.8269300000000004,2.0074,6.3025,5.7366,3.683995,0.731613076923077,3.4678,3.61951,1.0299818181818183,5.6611,3.3041766666666668,8.476076666666668,5.02285,4.766045,3.57737,1.455145,3.10782,4.885855,4.525825,3.96827,3.740845,4.42671,3.563035,3.5330666666666666,3.5330666666666666,4.230195,2.6301083333333333,4.18141,1.50479,5.68120375,5.378278333333333,1.5685733333333334,4.43477,1.0307499999999998,5.7695,4.002865,5.1587,4.587185,4.159315,2.617115,2.44435,4.250455,4.353235,5.12805,4.02696,1.8171925,1.3969260000000001,4.557815,2.08779,5.225,3.291825,3.55018,8.090385,3.83138,4.41619,5.43715,3.930735,4.67305,8.400575,4.30152,3.049785,9.187125,3.882085,0.5898542857142858,2.0559782173382173,4.53629,0.5996533333333333,4.715945,4.219905,4.980355,4.61606,3.198835,3.591275,4.642535,4.87719,2.85885,0.7078749999999999,4.684745,4.416345,4.510515,4.2729,2.836883333333333,4.464975,3.54851,0.639462,3.385975,3.979575,2.576925,3.28097,4.082925,2.2425499999999996,5.7568,5.27705,3.9908825,3.2016899999999997,5.5954775,5.5954775,8.64075,1.9983239999999998,0.83657,0.83657,24.026872333333333,2.669875,7.727211666666667,0.35530083333333334,1.3857466666666667,3.0020566666666664,0.9623459999999999,3.72267,3.768275,2.129655,2.129655,4.04099,5.10575,3.63426,2.4943583333333335,2.4943583333333335,3.50238,4.53573,3.82312,3.4476666666666667,2.0433766666666666,2.5605408333333335,3.90107,2.04016,3.554385,2.88495,2.773069642857143,2.773069642857143,3.377333333333333,0.8561477777777777,2.48534,1.6213866666666668,3.2990733333333337,2.91138,2.8794866666666667,2.6121933333333334,4.649995,2.315905,2.9860399999999996,5.224642,1.314198,2.26497,3.116405,2.5219,4.169485,5.737402888888888,1.4829466666666666,3.826033333333333,2.5206,4.90906,6.76481,1.5612675,5.182206666666667,4.900192,3.3528411428571427,4.626633333333333,1.075672857142857,1.8214359999999998,2.99734,3.82833,1.239685,2.4285975,1.60768,1.772656,2.574905,3.704854,5.3595065,1.0271766666666666,1.3788171428571427,2.9790500000000004,13.35669,4.6417166666666665,2.6383199999999998,1.1279185714285715,2.533745952380952,0.9922242857142857,3.2335,4.166086666666667,4.924565,3.4375666666666667,5.56965,1.52258,3.817066666666667,3.91709,2.9250833333333333,3.8771533333333337,1.9494133333333332,1.0791866666666667,2.5394533333333333,2.75588,7.51784,2.820775142857143,2.681316666666667,0.708943,4.7148666666666665,3.685866666666667,0.869848,5.673818333333333,1.967785,2.3409033333333333,5.32385,1.237188888888889,2.9162666666666666,1.0224363636363636,3.045666666666667,4.28253,3.0528366666666664,3.0749999999999997,2.1529666666666665,2.5038233333333335,4.554205,4.752405,5.33645,1.6890125,4.56027,3.64122,4.372529999999999,3.390858,2.6301733333333335,3.997581333333333,0.923038,2.8777004761904763,4.845735,2.7513,4.090720833333333,1.304925,2.91872,1.964806,1.964806,7.45002,3.099906666666667,5.219925833333333,3.428773333333333,1.7727466666666667,2.805715238095238,4.574588333333333,5.4900166666666665,8.760841666666668,4.821897,2.66466775,2.1049866666666666,1.9192711666666666,4.125216666666667,3.834125,1.529306,1.9598475,3.1792162499999996,1.242585,3.150513333333333,18.993419666666668,3.0914033333333335,2.85182,2.824996666666667,2.9362166666666667,2.40708,2.3163199999999997,3.0428566666666668,3.6369666666666665,2.44535,2.6515400000000002,5.6647799999999995,2.41154,4.942412857142857,2.9554348571428566,2.786552857142857,1.53204,3.753112222222222,2.1664925,4.05066,5.0068,3.97814,3.0883216666666664,3.2072766666666666,2.3580133333333335,3.465866666666667,3.6636,3.436166666666667,3.3798999999999997,0.81675,5.35075,2.473405,3.1891933333333333,2.7377044444444443,1.9685375,2.0814404166666667,2.0814404166666667,3.262947083333333,1.8730104166666668,4.700425,4.27335,3.53001,4.355245,4.71988,4.5738,4.5738,4.152945,3.0097766666666668,4.61866,2.72516,1.652878,2.236873333333333,4.429645,3.957725,2.7102,3.64912,5.502947499999999,3.7866,6.310978678571428,3.011255,0.858496,0.858496,3.379615,4.88284,3.82142,3.3961040000000002,2.410816666666667,1.7934766666666666,1.54191,2.99504,5.916287,1.507155,4.361805,3.7289333333333334,3.7563,5.11095,4.882925,4.7744201041666665,3.3708666666666667,2.3797275,4.337865,4.084755,2.1371525,1.10672,4.1557,2.8141,6.734633333333333,3.920533333333333,2.65185,3.363135,3.66331,3.71876,4.563135,3.06877,4.511745,3.976955,4.31026,3.762755,3.331735,3.61134,3.789315,2.6357133333333334,4.455505,3.245065,4.88964,0.6204977777777778,2.34478,1.8172075,2.149615,1.847075,2.596153333333333,2.634533333333333,1.9430033333333334,4.40205,5.21572,1.9256833333333334,3.786765,4.265055,2.469335,5.656055,4.1195925,4.504685,5.01165,7.276503333333333,2.0341133333333334,2.9967699999999997,1.9015700000000002,2.77432,1.827165,1.79982,3.98702,3.439,5.4823,1.0214033333333332,3.09923,4.32761,2.21367,5.27245,3.687715,2.53437,3.7777333333333334,3.435225,2.1439925,1.8992165,2.6612,3.226325,3.395575,2.06278,2.6722014285714284,2.6722014285714284,3.5846,3.4507,20.133822797619047,1.08544,5.159880833333333,1.8666075,1.8891233333333333,3.65323,3.777735,1.815905,3.90708,4.6043,1.3958933333333334,1.3958933333333334,1.3090266666666668,1.7688566666666665,2.39739,3.1217233333333336,4.498993333333333,3.40672,3.6107,0.4936468421052631,3.43738350877193,1.9024133333333333,2.22547,4.6548300000000005,3.448605,4.04655,3.50712,4.587195,4.743625,2.02198,4.02893,5.676780000000001,2.032895,3.66073,5.26165,2.16404,4.90102,6.12905,1.340032857142857,1.945628,3.5681333333333334,0.6595171428571429,3.25657,3.3165,4.95759,5.01405,2.8396058333333336,7.908166666666666,3.047826666666667,2.8167333333333335,0.44097470588235294,4.19764,5.2558428571428575,3.165685714285714,5.49795,3.769935,2.515512222222222,1.762792,5.4392715,4.360925,4.143085,2.905575,1.9444125,3.599415,4.052333333333333,2.979006666666667,1.99678,4.0759316666666665,6.449125,2.7729,3.867175,3.48028,4.041075,1.605442857142857,1.605442857142857,3.242043333333333,3.042403333333333,4.4649,4.731365,6.4639,3.69707,2.83505,2.2138825,1.5266666666666666,1.390997142857143,4.925885,5.8166925,5.0644,6.0607,4.400305,6.569252499999999,3.55086,2.8531833333333334,3.881336666666667,2.064153333333333,3.038753,1.625054,4.538415,2.4051066666666667,3.956655,4.83858,4.10317,2.7441766666666667,2.9466966666666665,1.4274471428571427,2.4405975,3.8107,1.9003075,0.6180225,3.1976433333333336,2.62071,2.4516466666666665,2.2562366666666667,2.070465,1.6325220000000003,0.689509090909091,0.689509090909091,3.553266666666667,1.7839475,2.228745,3.152655,6.0073,4.0992,6.22895,4.421555,4.459805,2.0820369999999997,1.3080633333333334,2.52735,4.311165,0.9482425,3.3441725,2.879575,2.80652,2.127515,4.039565,2.718445,2.08456,1.0672514285714285,3.38089,8.302545,3.611735,1.5887723214285714,4.424355,3.234175,2.88467,3.384875,2.811315,1.74486,0.98989,3.795245,2.4074866666666668,2.2176966666666664,1.6045,2.2492033333333334,2.3141633333333336,2.4815633333333333,2.804385,1.2321066666666667,1.82969,1.03397,6.392195,5.6857,6.08755,3.924695,4.50057,3.01074,1.6241289743589742,4.76388,5.14485,2.594265,5.25255,2.05195,4.743825,0.9733666666666667,4.10283,4.212985,1.95224,7.6546,3.56154,1.84984,1.992905,1.75838,2.60295,3.4981666666666666,1.2306125974025974,2.9665,5.6268,3.44939,3.94955,5.51355,5.467,5.836,0.9109925,4.133135,4.456955,4.2379,4.779725,4.0862099999999995,4.75647,4.77751,2.881235,1.7183166666666667,1.7183166666666667,5.2467,6.023093333333334,3.584675,2.59554,3.993615,4.64436,1.594182,4.164195,5.20495,3.571925,4.075285,2.915176666666667,2.8687799999999997,4.965175,2.4828485000000002,10.626299006601242,1.9498166666666668,0.7536175,2.5718866666666664,1.6802625,2.5285,2.120545,1.938864,2.8218266666666665,4.98626,5.49905,2.8919099999999998,1.6894,6.338099047619047,1.5159714285714287,2.9481866666666665,0.5187428571428571,4.135833333333333,5.5193,3.53097,4.38744,11.588745,5.1637,3.1591566666666666,3.5662000000000003,4.38747,3.06762,4.491525,0.85530125,1.0355883333333333,0.83062,5.5926,4.137125,1.746722,4.712085333333333,4.493905,6.64395,4.87789,5.1769,4.30507,6.00995,3.8819,5.2917,3.32377,1.180452,3.71423,5.43295,2.92229,4.01086,2.90425,2.570375,1.216295,5.06405,3.918205,1.29865,3.4374333333333333,2.9213566666666666,2.6377333333333333,2.56763,2.475286666666667,3.0641433333333334,0.7032645454545454,2.2946633333333333,2.590943333333333,2.58182,1.89111,3.208323333333333,2.001055,1.4864433333333331,2.4103575,2.0181675,2.1673425,3.383433333333333,2.8717466666666667,0.661562,2.9455299999999998,3.65105,4.703945,2.34205,3.742705,5.27145,5.00595,3.36309,3.86438,1.3743642857142857,3.377245,2.5226194444444445,4.277078333333334,2.7081237500000004,4.84165,5.4548,4.86231,4.173105,4.2058,0.8675280000000001,0.8675280000000001,2.257318076923077,1.672705,4.15934,2.5361125,2.5361125,4.818515,6.15785,3.0835,1.26204,1.5364,5.80995,3.61283,2.35003,3.18276,2.82324,3.12224,2.35003,4.4116325,3.19122,3.06046375,2.70026,2.08017,2.915415,6.57315,3.27024,3.353035,4.53016,6.64365,6.5804,6.637449999999999,6.637449999999999,5.58645,4.92601,0.5554561538461539,4.9959,4.470715,2.951595,2.82087,8.21383,2.9854299999999996,3.96969,3.676155,2.6343466666666666,4.67981,2.482125,3.329845,3.1266033333333336,3.647866666666667,2.5255566666666667,1.5730439999999999,1.5730439999999999,3.76092,3.99957,5.6796,1.8293679999999999,1.507302,48.15426746212121,2.58875,0.8563945454545454,3.2366533333333334,1.8661275,3.3159233333333336,2.81934,3.0467666666666666,3.1556,2.7830266666666668,2.05153,1.01762875,4.43351,3.20571,3.590415,3.83992,5.288,5.19075,5.0333,5.1576,5.27715,4.84481,5.67585,6.29279,5.0396,5.477,2.0729875,3.778345,6.66225,5.2045,3.51922,4.326435,3.595995,2.347835,3.864875,4.690385,3.004383333333333,3.9370666666666665,1.609598,4.378665,1.371786,3.179975,3.843235,3.58645,6.34101,4.10026,1.99409,4.2718,4.0332,3.946605,0.951695,2.798545,2.936785,4.39802119047619,1.1770575,4.672855,1.283265,5.8425,0.6949622222222223,3.893837333333334,10.089283333333332,4.338665,3.353485,3.270025,1.8699000000000001,4.266605,5.5454,3.057646666666667,4.563855,9.431830833333333,3.5254333333333334,2.0502833333333332,2.83662,2.78838,2.7042300000000004,2.7667301666666666,1.9987233333333334,2.4815833333333335,3.252133333333333,2.71027,3.1415633333333335,3.3447,2.2613499999999997,1.6796499999999999,5.004034666666667,4.0353666666666665,2.614,5.069011333333334,2.8193333333333332,1.07827125,2.1340025,3.018003333333333,5.4090807142857145,3.039125,2.219871111111111,2.219871111111111,1.57626,1.6617825,2.14496,1.946116,5.9640675000000005,4.4785825,2.1592425,2.8878766666666666,3.7283666666666666,2.0496775,0.6222991666666667,2.3446166666666666,1.907695,0.5433623076923078,3.894605,2.56115,2.6131,3.69838,3.621719333333333,2.446473333333333,1.6197133333333333,1.20754,2.095165,3.414755,3.63767,4.2490475,2.8183966666666667,4.12897,3.80076,1.1298363636363637,8.850235,2.58585,3.267675,1.2783375,2.8914866666666668,2.3444275,2.3444275,2.3444275,5.0405,5.54695,1.597585,5.0267,1.399032,5.475056666666667,1.514038,4.15912,4.250465,4.1124,5.0822,4.660195,1.871105,8.87958,3.878585,5.1233,3.404205,4.035893333333334,3.2502,3.01547,3.81132,2.47159,4.32761,4.2889875,1.6068075,3.94744,1.6068075,3.48791,4.5156775,4.9393475,4.5156775,1.7912733333333335,5.7654,4.491765,4.52219,2.7789133333333336,2.9531033333333334,4.166495,3.10855,5.3446,0.5087521428571429,3.0774333333333335,3.026336666666667,5.0000925,4.82637,2.3607875,4.748165,6.537668333333333,3.24476,2.899255,2.73397,2.1305533333333333,3.92841,4.226235,4.753735,2.411825,3.869295,0.874601,5.4346,3.29686,4.272515,2.2278166666666666,3.04935,2.1899466666666667,2.798996666666667,2.7813,2.75076,3.31787,2.506575,2.506575,4.536988333333333,2.903515,4.80381,11.6890875,0.9535044444444445,4.49369,2.575746666666667,2.33108,2.60409,1.5050875,7.281217,3.3791333333333333,3.58003,3.6654099999999996,2.361073333333333,3.9587,4.142021638888889,2.0145766666666667,0.5213511111111111,1.438008,1.4187225,4.836465,2.893905,3.3413,3.7479066666666663,3.466570833333333,2.35498875,4.97693,4.547695,3.71456,4.556565,2.22498,3.744985,2.50859,5.657246666666667,3.10012,5.2634,4.04625,4.360285,4.307445,1.89723,3.883395,3.612655,3.1292233333333335,3.59739,2.8826,3.083285,3.5874,4.053005,2.6567433333333335,4.482825,1.4754683333333334,3.488235,2.78311,4.35429,4.28475,3.88724,4.751725,2.485235,4.07874,5.0179,4.1652,3.1771666666666665,2.03765,3.006765,2.34559,0.876055,4.45034,2.1376,3.523565,2.689315,4.061295,3.117195,2.917935,3.146245,3.91155,4.5498579999999995,3.936455,2.853165,1.4798099999999998,3.53315,2.46528,0.9455111111111112,4.210475,8.83569,3.36305,3.592925,4.075275,5.1164,3.756555,2.1224,4.019415,3.875995,3.139965,3.213855,3.742845,0.6143025,1.2698257142857143,6.4735625,1.7581325,2.686735,4.903461,2.450135,2.26688,2.63939,7.80593,2.62101,4.05541,3.778165,0.7655,3.44956,2.60895,3.814825,4.017045,6.0681899999999995,0.674388,3.288275,10.2159,3.18072,1.0654044444444444,5.187282083333333,4.712105,5.47605,4.214405,4.418425,3.293995,2.5232033333333335,7.440055,0.8229939999999999,3.46809,4.048245,3.13813,4.17808,2.50454,4.343125,1.7140833333333332,4.12669,4.081995,4.03515,1.64636,4.691405,4.69907,2.37075,2.16014,2.25923,0.869848,4.14477,3.2933935,1.44569,8.51132,6.0156,4.57871,4.253205,3.51267,4.42692,1.4878857142857143,4.253315,3.975555,5.26995,3.76185,2.322086666666667,6.555451538461539,0.953525,0.953525,2.55953,0.9169385714285714,4.181335,2.7162933333333332,1.032615,1.7292133333333333,0.408485,6.302715,0.9673375,2.66887,3.817235,4.04842,3.591085,4.1475,5.35065,5.598715,3.44128,3.140605,2.406095,3.847575,4.40496,4.26104,3.95034,3.668645,6.0555,4.41405,4.380305555555555,5.324738,3.717485,3.294565,2.32898,3.294565,6.851623,41.466053696969695,3.871095,3.467185,2.9608133333333337,4.28867,4.357575,3.429085,3.545105,3.871815,4.49152,4.097735,1.6343183333333335,4.59989,2.65946,4.76577,5.0603,5.05455,2.4127733333333334,4.25172,3.832665,3.2468,1.4935399999999999,0.6475653846153846,1.8581800000000002,3.7264666666666666,2.899566666666667,1.2770125,2.9137733333333333,2.6424333333333334,2.7395899999999997,3.7248,3.0149399999999997,1.4255879999999999,2.726793333333333,3.8041,1.931206332046332,2.867043333333333,3.180844,2.95251,2.6362099999999997,3.4465333333333334,1.1719,3.597905,4.019075,1.267175,1.267175,1.267175,1.267175,2.785818787878788,2.0114533333333333,2.41228,3.284465,5.0427,5.0951,4.13574,4.38898,5.5269,4.511625,2.309105,5.9263,4.31971,3.16904,3.85688,3.10558,4.186385,4.20089,0.7132423076923077,1.4444857142857142,1.5935033333333333,4.201335,3.834515,4.53734,4.026555,5.982025,2.29672,4.46035,1.51978,3.391585,5.11975,1.54565,5.22085,0.7187891666666667,4.381265,1.1542780000000001,1.18374375,3.631535,3.9453,5.22325,5.0868,6.019,4.450385,1.507038,2.7246,1.4262075,3.77859,2.99776,2.515512222222222,1.9960875,3.153415,1.2944066666666667,3.2821,4.97839,2.951703333333333,5.862,121.32762282521645,0.4768411111111111,4.801535,2.4025833333333333,4.88827,4.08959,3.721285,1.527245,0.3472952380952381,2.799525,3.723425,5.28775,3.48634,3.456525,4.34062,4.340345,4.10382,8.515080000000001,0.6928377777777778,2.698945,0.9641625,10.908356,3.13883,3.60725,0.9266433333333334,2.308925,2.735285,2.08281,3.4362,3.28581,2.8049233333333334,4.40039,2.999053333333333,2.3443566666666666,2.238156666666667,4.37619,3.49887,3.01066,3.59049,3.775955,3.35542,2.2497700000000003,3.83973,4.002495,3.028565,0.8955222222222221,2.520843333333333,4.40039,4.613915,5.47715,4.158765,3.479605,1.83635,10.470279999999999,4.26935,2.68559,4.114895,5.3493,0.5589633333333333,0.5589633333333333,4.1861975000000005,4.1861975000000005,3.134155,3.643166666666667,1.819309772727273,0.5562291666666667,2.872195,4.341205,4.15623,3.468445,4.112075,5.3468125,4.56298,2.1444875,4.721305,2.1395125,2.75571,4.197848333333333,1.721545,2.047325,0.47704857142857143,1.2135985714285715,1.2135985714285715,1.88058,4.186255,4.609635,4.79743,6.630735,2.68218,3.053585,1.864225,1.96038,3.93794,3.748805,4.8209599999999995,2.58144,4.8209599999999995,4.59187,3.57505,5.9459,3.777795,2.4128000000000003,1.9874,2.4384466666666667,1.4512775,1.4407475,1.526095,1.8605725,1.587075,1.6833775,3.9941333333333335,4.59624,2.36384,6.7666,3.04204,4.406365,3.3695,4.229365,2.887696666666667,2.892863333333333,6.131846666666667,3.3961,4.670352666666666,3.13088,1.3178475,2.503836666666667,2.57069,2.2867633333333335,6.36915,4.46341,4.764505,12.568377939078465,0.7829808333333333,1.9768815000000002,2.20403,1.6084900000000002,1.3234542857142857,2.55515,2.42721,2.5045,2.394685,0.7498761538461539,1.9708475,0.5325421052631579,4.434945,1.909205,3.868015,4.408545,2.5718,5.6759225,4.090695,7.3192,4.048615,2.77329,3.058585,4.824345,4.90175,2.837957333333333,4.562545,2.17096,2.17096,5.05325,3.959535,4.330425,4.10292,3.2603266666666664,3.965485,4.813085,5.2682,4.630365,4.351985,4.48386,4.211655,2.37485,5.1651,1.2099183333333332,4.719455,4.694335,2.4699166666666668,2.17906,4.93326,1.5368683333333333,5.0634,1.7575375,5.978575615942029,3.809745,4.062075,1.6128666666666664,2.94552,2.94552,11.79118,4.027615,4.545385,1.143645,4.417932,2.3858475,1.4513975,2.3309075,1.7111575,2.0245775,1.812856,2.95797,5.84975,1.738195,4.97394,4.6552075,5.63665,2.194405,2.451225,3.490405,4.396235,5.53195,3.879835,7.3557500000000005,3.1567333333333334,2.8332466666666662,0.3608783333333333,3.81665,4.606045,3.2769866666666663,6.113991666666666,2.6136066666666666,3.2025166666666665,1.2363266666666666,1.6179916666666667,0.6180225,1.438008,3.007775,1.5218,1.4964016666666666,0.6512375,1.4289239999999999,4.63166,2.375835,0.6264192307692308,1.5301799999999999,1.6830325,1.682534,1.2795783333333333,1.969035,1.6179916666666667,2.5802,1.4289239999999999,1.4289239999999999,0.6264192307692308,1.5886571428571428,2.4176200000000003,1.239685,2.70815,0.6264192307692308,2.71255,2.4176200000000003,1.3049166666666667,1.3049166666666667,1.3049166666666667,1.897832,1.227145,0.6264192307692308,1.098082,1.14094,1.0138933333333333,1.845392,2.68455,0.858,2.1673525,1.5897000000000001,0.6264192307692308,1.746498,1.6179916666666667,2.03785,2.02975,0.8994030000000001,2.03785,1.0582433333333334,2.37075,2.38326,2.471045,1.14094,2.08376,1.2944066666666667,1.2944066666666667,0.9082509090909091,0.9082509090909091,0.9082509090909091,1.2363266666666666,1.6179916666666667,1.5897000000000001,1.5301799999999999,0.9507842857142857,2.02975,1.45801,1.766346,2.09408,1.2363266666666666,2.6383199999999998,12.864587499999999,0.6512375,2.64498,1.7632833333333335,2.355145,0.9922242857142857,0.9922242857142857,0.6264192307692308,0.9839211111111111,1.6325220000000003,1.5897000000000001,1.811852,2.02975,1.148011111111111,1.148011111111111,1.6730519999999998,0.2146475,0.2146475,0.2146475,0.2146475,3.068376666666667,1.0582433333333334,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.3777745454545455,54.67663591774892,1.4887325,1.6156166666666667,1.5897000000000001,1.7632833333333335,0.9507842857142857,0.6510470588235294,0.708943,0.708943,0.708943,0.708943,4.405266666666667,16.189551666666667,3.3627000000000002,0.5861354545454546,1.55244,1.55244,1.55244,0.5861354545454546,3.007775,0.6264192307692308,1.746498,1.4964016666666666,2.5423999999999998,1.0582433333333334,2.3607875,1.0582433333333334,1.7641839999999998,1.7641839999999998,2.1534833333333334,2.1534833333333334,0.6264192307692308,2.02752,2.02752,0.9300454545454545,0.2146475,3.007775,1.4390133333333335,2.5206,0.5861354545454546,0.5861354545454546,0.5861354545454546,0.5861354545454546,0.5861354545454546,1.7632833333333335,0.3777745454545455,1.0582433333333334,2.2960575,2.2960575,2.44435,2.931713333333333,0.6543571428571429,0.6543571428571429,3.4187666666666665,4.237933333333333,1.225604285714286,3.4619,0.983395,2.519625,1.9983239999999998,1.154085,3.038956666666667,1.9217675,3.2016899999999997,5.24675,2.197315,1.1973777777777779,4.18215,4.12053,2.6670366666666667,1.7451,2.406168076923077,4.364285,1.7982325000000001,2.7046433333333333,2.99133,3.1433199999999997,2.41874,6.188783333333333,4.238205,0.2146475,2.9645166666666665,5.18475,3.49526,4.62535,4.54793,4.480555,2.774126666666667,1.8012799999999998,4.63074,4.733955,4.4234,4.725965,5.236,3.199265,0.7398258333333333,6.795904999999999,1.6823166666666667,3.146166,4.57993,2.57145,2.57145,0.8532763636363636,1.9960875,4.03851,3.044225,5.2358,4.06567,4.657055,5.1231,1.091327142857143,4.71749,5.72255,6.766367152777778,2.24871,4.28313,3.908155,3.999665,3.72538,3.98524,4.341745,6.1880625,5.1602,3.9759933333333333,3.538125,4.481235,7.392182,1.929625,1.9266641025641027,2.815243333333333,1.73722,2.6414666666666666,1.8562466666666666,5.06045,2.9570900000000004,6.05485,1.9503499999999998,5.1045,4.029235,3.599785,4.39863,3.80923,2.5430433333333333,2.769743333333333,2.731393333333333,2.58102,2.46772,1.6653233333333333,2.64255,2.7997366666666665,2.21278,2.21278,4.321215,2.94701,1.9793066666666668,3.0004566666666665,2.053873333333333,2.59739,3.008456666666667,2.68783,3.1412266666666664,5.30065,4.124955,3.917885,3.3298313333333334,3.3298313333333334,4.098075,3.2121733333333338,3.89079,4.45608,4.211465,3.45434,3.271755,7.48247,2.1348075,2.00336,3.4192,3.315385,1.31396,1.31396,3.58631,1.828035,4.081679333333334,3.736545,3.533855,2.279384,2.1668469999999997,0.5635058333333333,3.75232,3.978215,1.9377575,2.42025,4.237895,1.2827366666666666,4.58527,1.2082966666666668,0.4375892857142857,0.5802510714285714,21.46246302777778,0.5802510714285714,0.4375892857142857,0.7229128571428571,9.079416666666667,2.523563333333333,3.65891,4.309835,3.5293725,2.719105,4.115069285714286,2.127775,2.35111,3.86288,3.262005,4.130915,4.50564,3.491455,2.304405,3.191935,3.506935,3.982585,3.09423,1.15798,1.15798,1.15798,1.15798,3.39046,2.830935,3.301275,1.7362533333333332,1.1956383333333334,2.479935,3.78408,3.949555,3.1405,3.22712,2.594615,2.7156841666666667,3.894635,4.11887,1.144045,2.71984,1.09794,2.71695,1.91315,3.7827,5.01275,2.4271433333333334,3.759855,3.8042800000000003,0.8135090476190477,0.2335057142857143,0.2335057142857143,0.5800033333333334,0.2335057142857143,0.2335057142857143,0.2335057142857143,0.5800033333333334,4.633915,7.575453333333334,3.56961,0.539655,3.642185,7.4186700000000005,3.4056,3.14603,1.139115,4.573625,5.46185,4.4408,4.99123,1.670878,4.51474,2.3026433333333336,2.2913673333333335,3.62248,5.3216,0.8112214285714286,0.8112214285714286,3.57788,2.793723333333333,1.93564,3.37139,2.96059,6.7792,2.87487,6.65185,6.054,5.50295,2.403905,1.65501,4.739235,3.370525,2.180875,3.66893,3.08831,1.8407325,1.1288033333333334,4.040945,3.274405,4.8526066666666665,6.092851666666667,1.5158416666666668,3.989305,1.1539333333333335,2.4994166666666664,3.185685,3.744715,0.3982671428571428,3.519805,4.064055,0.9223459999999999,2.611873333333333,7.69065,2.919895,1.971585,5.613786,4.414335,3.68741,1.3829766666666667,5.55825,2.7873133333333335,3.112496666666667,3.5454333333333334,1.7660366666666667,1.7660366666666667,6.45685,6.45685,3.7167625,3.7167625,9.85502,3.7167625,3.7167625,4.386351388888889,6.86675,3.457195,3.5904833333333332,2.9740466666666667,4.546665,3.51951,3.16028,3.189296666666667,4.74797,3.2003766666666666,2.6476266666666666,3.5778,2.28678,2.70139,5.1116,7.3397,6.387905,4.963445,3.823995,4.0515,6.999976,5.2428,4.443115,3.867915,4.677695,2.40732,2.27996,2.155025,5.2323,5.64695,4.675475,4.18395,2.323113333333333,2.5513933333333334,6.83732,1.897832,2.55625,3.3878,3.3878,3.17482,5.21775,0.7579075,3.5919666666666665,3.75282,2.9629100000000004,10.3307,4.14919,2.994096666666667,2.39457,4.357355,5.99155,3.047885,5.52475,2.576163333333333,4.614945,2.9275648571428574,4.43511,5.46365,4.84068,0.9155533333333333,3.5471,1.02464625,2.5357133333333333,4.840164897058823,7.606253333333333,2.57297,3.494533333333333,7.167870000000001,1.778004,4.64539,5.69245,3.604485,3.691285,2.2686733333333335,4.651275,2.33405875,0.4419376923076923,5.06345,2.932395,3.4967,5.04155,4.81147,5.64925,6.7066875,4.62888,5.47385,7.22734,54.372769999999996,4.762425,3.85085,4.58197,5.5815,4.344925,5.2426,4.350675,4.720455,1.894765,3.998265,4.05859,4.732015,2.644775,5.1156,3.784785,1.6280740000000002,5.30935,6.2683,7.109361666666667,5.48465,3.294165,4.67891,3.09887,3.200785,3.418295,4.246125,3.785595,7.16893,2.796275,1.0750142857142857,2.3677900000000003,0.553216,0.553216,3.190095,0.553216,2.474820285714286,2.474820285714286,3.150414285714286,4.686976,5.133450285714286,2.3677900000000003,4.749318333333333,2.6098058333333336,1.4513233333333335,5.57735,2.144325,7.205218666666667,5.855946666666667,10.835688863636364,3.243063333333333,2.58786,0.2143330303030303,1.926665,2.00419,0.8595775,1.33234,2.8502266666666665,2.1905425,2.6971,0.571389,26.66215833333333,1.8467625,0.8152538461538461,2.4690499999999997,2.4690499999999997,0.401685,1.6528975,3.1391275,1.378735,1.559055,1.6527775,4.01695,2.89179,1.94084,2.431103333333333,1.1076716666666666,1.933285,1.5094866666666666,5.431705833333333,3.729905,6.9192816666666666,2.493865,3.4427,0.9700316666666667,2.454255,5.1643,6.447065,3.2592766666666666,2.2117999999999998,5.2648850000000005,1.996135,2.282716666666667,4.3706775,1.08945,3.513333333333333,2.3260066666666668,5.05225,4.90825,6.02405,3.046985,4.04918,4.04918,5.2133,1.69453,5.4302,2.87059,1.62423,2.90664,3.27153,5.052948166666667,3.877005,2.7664266666666664,2.9044266666666663,2.861435,1.038007142857143,5.18955,0.90824875,5.56061,4.287525,7.75126,4.504845,4.515245,4.107395,8.213436666666666,4.33514,4.511045,1.20465,0.7226571428571429,4.564555,4.323725,2.320405,3.17876,3.308305,4.218025,2.19353,4.924465,2.6255433333333333,5.32385,5.36555,5.5226,4.31635,4.83102,2.79848,6.604395,3.44425,4.237535,3.33755,4.86071,5.467683928571429,0.5827978571428571,3.7352333333333334,1.7045966666666665,0.5739833333333333,4.274915,2.77197,1.065325,1.939815,5.81206,3.5697,2.274795,2.7866933333333335,2.703673333333333,5.06085,4.104895,1.684132380952381,4.144835,2.2257933333333333,3.7474666666666665,4.27097,5.16445,3.1300858333333332,3.6443333333333334,3.7353,2.04656,7.44834,4.97522,4.29466,5.2209,2.2103875,4.485725,4.751945,3.593495,3.876175,10.964535,3.434765,4.4267433333333335,4.719505,4.9105,2.37238,4.45322,4.300325,5.08865,3.3795333333333333,4.080665,1.5393025,3.0674766666666664,3.41656,4.003385,5.1204,1.9597460000000002,4.021395,3.2341033333333336,5.3579,3.32582,1.83304,3.857335,4.471525,1.0828,2.92589,2.798806666666667,4.578030666666667,1.729702,1.4651433333333335,1.246245,3.6189,5.1998,5.60475,3.665095,3.188455,2.368325,2.103,1.96745,1.63685,6.00635,2.99984,1.94917,0.8862615384615384,20.44038725,3.040285,3.3294925,4.489798333333334,4.1226899999999995,1.2601966666666666,2.7512245,2.9943861363636364,1.189024,1.84841,4.40667,4.78868,3.6016733333333333,3.14101,5.5381,4.808075,7.0609675,4.660395833333333,4.602895,3.627685,2.69605,4.025805,3.78233,3.8491666666666666,4.087455,1.9741575,4.951155,9.00246,3.303165,2.81037,3.451885,0.57977625,3.21207,2.0829366666666664,2.404065,4.3339,3.277285,5.13095,3.72106,2.980705,2.27214,1.670365,0.764468,1.40595,1.2606633333333332,3.91924,3.906885,4.673775,4.65965,7.45551,2.24165,1.421218,2.37559,7.701321666666667,3.11338,2.870725,3.01147,4.557915,3.36918,3.6069,1.5860319999999999,4.775015,4.793145,4.220955,3.91797,3.569665,4.263935,4.55527,3.90712,4.337525,5.64425,2.137065,3.4181333333333335,2.84495,5.3172,2.98503,4.2353525,2.77306,2.918135,2.1558966666666666,2.2519733333333334,2.1266000000000003,2.407198333333333,2.407198333333333,1.9211600000000002,3.0246433333333336,2.3139366666666668,2.31848,1.9619666666666669,4.0641,2.36335,2.9369833333333335,2.8699399999999997,1.7020766666666667,4.51549,2.7653,3.837845,2.8031666666666664,5.0139,5.3678,4.832351666666666,2.772595,2.063575,2.74118,2.15997,2.20952,2.7065,1.9127075,2.6872,2.8189,6.9033929999999994,4.3837375,3.702495,0.607965625,4.37443,3.9668,4.232545,3.097085,3.94299,3.717135,6.3583,4.40008,3.42053,2.769425714285714,2.1786324444444443,2.49102,1.680552,1.7568639999999998,1.620422,2.0655799999999997,1.8750575,1.2881166666666666,4.179424285714285,0.6264192307692308,0.5536044444444445,1.9782160000000002,1.5030766666666666,1.4441000000000002,1.4240233333333334,2.2650812121212125,1.4437333333333333,1.617252,0.61490375,167.87929209817713,0.5122633333333334,2.0206,1.0065680000000001,1.2118275,2.11804,1.49536,1.9751725,2.203393333333333,1.6694675,6.5893,3.09636,3.33752380952381,1.9801266666666668,3.19455,1.27058,1.27058,5.8011725,0.48766,2.146515,3.3231033333333335,3.1017233333333336,0.8337545454545455,0.5533670588235294,1.1333405128205127,0.9935727272727273,2.2458875,3.935385,1.96333,2.174825,2.4318566666666666,4.889043888888889,0.9960355555555557,4.346575,3.54793,3.504075,6.67353,1.81266,2.82135,2.424385,4.016198,2.212965,2.648305,3.501,3.45099,4.46221,2.8891,5.88859,2.508415,2.77588,3.41544,1.540025,2.621125,2.959575,2.908015,1.71423,1.508735,2.50326,4.100455,5.35592,2.812055,2.828945,1.36235,4.2892,3.898,4.213966666666667,2.870465,25.287464597832724,2.741013333333333,2.7100500000000003,3.0531166666666665,3.4735333333333336,3.317183333333333,5.742366666666667,3.21482,2.4852,3.5035000000000003,3.5276333333333336,2.1606566666666667,3.25808,3.4212333333333333,3.1242966666666665,1.78725,1.539414,0.546609,2.31225,2.00581,0.227553125,2.2515533333333333,2.59224,0.227553125,0.227553125,2.1946197916666668,0.227553125,0.227553125,0.227553125,0.227553125,2.8877333333333333,2.6061633333333334,0.5607676923076923,3.2115585714285713,1.5514625,1.9909500000000002,5.5401,4.29159,6.117979999999999,2.04405,4.94522,2.05186,2.905196666666667,1.3255985714285714,5.813493333333334,2.9091199999999997,6.07766,0.8665083333333333,1.47889,4.64607,4.750625,35.48528692304917,1.581738,1.4054433333333334,2.321756666666667,2.3639875,0.9082509090909091,2.4485333333333332,2.5194433333333333,2.6330533333333332,1.9125833333333333,2.4490166666666666,1.7268483333333333,2.5759466666666664,2.3811666666666667,2.25985,2.69351,2.3875733333333335,3.93593,3.3704666666666667,1.10253,4.13828,4.11642,19.981870555555556,2.8100566666666666,3.26324,2.69102,0.8691340000000001,2.967826,1.640412888888889,2.967826,2.371303333333333,2.5834366666666666,2.804486666666667,1.654575,2.0161225,4.252905,3.96655,5.23805,4.316915,1.599794,5.1416,1.57834,4.98938,4.076481571428571,4.54231,0.7471118181818182,2.001005,2.0966425,2.8571400000000002,3.37273,1.089635,2.925155,1.96489,1.9928833333333333,1.052732,1.052732,3.2168666666666668,2.58609,4.375985,28.62953,6.409495,1.90546,3.6101966666666665,0.37032600000000004,6.2168849999999996,6.13705,2.7739266666666667,3.34879,5.390795,3.71378,1.1803275,4.43806,1.256866,2.311435,4.5856,4.80056,2.051375,3.093565,4.61248,2.64445,2.692862,4.256135,1.3122866666666666,2.5117808333333334,3.76999,5.461825,2.4325533333333333,3.0734266666666668,2.8101066666666665,4.02137,3.98496,4.124245,4.2721,1.725045,6.2704,2.609325,1.7588519999999999,4.129995,5.64052,4.14805,3.64971,0.73320875,2.93656,3.531535,1.8928,4.69965,2.667245,3.89202,2.8657333333333335,3.3971,2.60692,3.2557066666666667,2.99676,3.0229266666666668,4.20025,5.61995,3.48493,1.77517,3.978845,4.307445,1.880995,2.12286,1.73684,4.003982777777778,4.56611,5.245894583333334,4.036415,3.4179333333333335,3.64046,3.235056666666667,1.4316066666666665,3.15511,3.009285,3.151715,4.66037,4.495535,4.39524,2.94075,1.90649,1.59024,1.5476725,3.47495,2.421115,2.337005,3.426095,5.1815,1.549615,5.2346,1.4097185714285714,1.85885,3.12775,3.044285,2.901135,3.66611,3.027595,1.62716,0.9865984210526315,3.4726,3.9781883333333337,4.37935,8.881865000000001,2.9918833333333335,3.18543,1.6121333333333334,2.7142166666666667,2.759866666666667,1.1491683333333333,2.90396,2.7141066666666664,3.167313333333333,3.9273000000000002,3.11852,6.93065,3.10692,0.7498518181818181,1.7062933333333332,3.25428,3.343275,3.4754,3.6038666666666668,2.6325,2.79804,2.559525,2.006329857142857,3.84643,2.460286111111111,3.356865,2.0619533333333333,4.768675,5.19805,4.206435,3.451975,3.635655,0.8568755555555555,4.690455,2.8396600000000003,2.8177966666666667,4.4402,2.6673533333333332,2.8073766666666664,0.4691571428571429,0.4691571428571429,4.242923333333334,3.966265,7.0412,3.03931,4.456795,3.62617,3.12667,4.71083,4.138325,1.046375,3.943675,2.6829666666666667,4.320764166666667,3.1064666666666665,2.9471725,2.0095,3.2036035714285713,2.3367999999999998,2.8078833333333333,2.60737,2.8983666666666665,1.86162,21.965735312582346,3.89405,4.05597,4.03278,3.208055,4.32963,3.46261,4.64639,4.003055,3.969155,3.6903,4.04017,2.6577633333333335,2.7930166666666665,2.9393733333333336,3.0843733333333336,2.9577333333333335,4.266395,3.48862,4.98925,5.07,4.405595,1.25996,1.527714,1.527714,5.11915,4.026635,2.6309766666666667,2.3143466666666668,2.9301600000000003,3.287675,3.67845,7.634483333333334,3.1848833333333335,3.5185,2.9661383333333333,5.4985,1.5639933333333333,6.074175,2.418813333333333,2.826363333333333,1.65667,3.894135,2.92654,6.27778,3.24395,2.55564,4.220505,4.023247333333333,1.4477975,2.437246666666667,1.5615066666666666,7.4817345,4.19094,6.882365,2.289205,4.09349,3.80223,4.206975,5.21925,3.4674666666666667,3.4674666666666667,2.106885,4.33857,5.1032,2.48098,6.737145714285714,1.60939,5.8889,8.481809,3.6748333333333334,4.149108,2.2366766666666664,2.00401,0.538889375,4.601015,2.621275,2.698875,3.7196695,2.328125,2.51421,3.625965,5.9703,5.4103,5.3696,4.79259,4.45674,2.3302,1.0470727272727272,2.83452,3.261155,2.7188466666666664,5.1902,3.963555,2.99815,2.89643,1.945628,4.244515,1.03988,5.20345,1.048482222222222,5.65605,3.29475,4.89327,5.0058,3.13688,3.180285,3.1386233333333333,2.3870299999999998,4.41742,2.89654,2.49571,3.725195,4.87649,5.800355,4.525855,1.6290975,3.391875,2.925695,5.420315,1.9157,1.9157,2.9116066666666662,2.3864433333333332,2.381413333333333,2.925186666666667,0.8383290000000001,6.08075,3.199395,1.94298,2.253095,2.855235,3.763495,2.579675,3.773025,5.18565,5.592,4.787215,6.03645,5.8117,1.316025,3.670585,1.1089499999999999,2.48586,4.415933333333333,2.696485,3.03631,3.212685,4.967585,3.031375,0.44575631578947367,4.67031,4.11334,4.96582,3.25129,5.2354,5.3716,4.325825,4.263555,1.958525,4.61442,2.0905275,4.268966666666667,4.268966666666667,6.4435,5.6567,5.5778,5.00455,2.66426,1.5639933333333333,4.311285,1.9768166666666669,1.64835,1.996735,4.20182,4.153555,4.367755,7.80006,1.6161,5.31435,1.312305,3.19055,6.0055,2.047195,4.839325,2.67327,4.61521,3.327395,4.902695,3.2060066666666667,4.229645,4.02504,5.86715,4.196565,3.967735,3.982465,6.02205,4.02648,4.56269,3.63409,4.12645,7.103423333333334,3.500045,7.08509,3.368195,5.5351,6.132360454545455,4.48634,3.620675,1.58243,5.68665,4.020425,0.8806255555555556,8.47991,6.05485,4.96594,2.976825,5.1408,2.99562,1.7553180000000002,3.89994,1.144045,6.09125,2.809445,4.513865,5.40465,4.42798,4.13746,2.1097233333333336,4.445505,5.15735,1.84218,7.159355,2.99688,3.62431,4.956655,4.20624,2.00371,4.49244,3.531995,3.774455,2.8524766666666665,3.91385,3.78371,5.33125,4.758095,3.28443,1.77722,1.77722,7.500443333333333,1.4477,5.25415,4.31408,5.0091,3.622595,3.63845,4.995645,3.8822,0.9599883333333333,0.9599883333333333,0.9599883333333333,3.648445,3.146725,3.80371,4.490876222222223,2.784425,1.4410933333333331,4.302985,2.12644,2.7036,3.98035,4.516655,1.9696075,2.16498,5.89731,4.02535,2.90197,4.42572,1.7323625,1.9470575,3.3559,2.690525,5.2521,1.4084160000000001,1.610986,1.0594475,4.13886,3.630825,2.99196,3.010623333333333,5.43165,1.7223,2.0637475,3.118485,1.6825142857142856,3.0951,3.56146,2.3944525,5.89585,5.5212,2.79138,4.38425,3.788295,3.46343,3.512995,4.064335,3.68258,6.43904,5.0093,1.85903,1.7920166666666668,3.48093,4.64837,4.11654,3.87028,2.9217666666666666,4.126225,6.26555,4.89047,2.7045999999999997,5.32065,3.983375,3.94766,8.370989999999999,3.62769,0.7290854545454546,3.92868,4.182671666666667,2.486435,4.12358,3.939766666666667,5.84155,3.89721,3.860905,3.704365,4.400015,4.569135,4.467165,2.981305,3.91928,4.951615,3.930085,2.81059,3.19599,6.31029,5.3461,2.05626,3.111005,4.404788333333333,3.91086,4.868805,4.157695,2.4662866666666665,0.9010411111111112,4.443414848484848,6.745135,3.622605,4.891655,3.538355,6.905706666666667,3.92777,3.6644666666666663,2.8534166666666665,3.733715,1.963445,3.344455,4.45806,2.5348075,4.25573,6.09285,1.41095,4.701545,0.6649714285714285,6.2197,6.19595,5.9599,6.1838,1.4386983333333332,1.7661833333333332,4.59081,1.95076,5.7011,0.53689,5.96095,3.166195,1.5376020000000001,6.239105,6.5202,0.8500825,1.5343105,1.2875320000000001,1.2875320000000001,1.2875320000000001,2.25559,4.952765,3.5578,3.4168,4.16823,5.1336,3.86824,1.954272,4.35739,5.05415,0.3006463414634146,3.544855,4.66089,4.20316,38.866422984848484,5.942158333333333,4.915165,10.971439333333333,2.80632,4.18091,7.068898333333333,2.973805,5.00155,3.90161,4.21323,8.98541,3.83194,2.6920966666666666,2.74328,4.75984,4.37355,3.436565,4.344405,1.934055,4.49688,4.007045,6.794395999999999,4.15883,5.15645,2.333835,4.217985,0.520676875,1.4155,3.34538,5.9027,2.994635,1.2334816666666668,1.2334816666666668,2.89249,3.870845,4.295255,2.57136,1.6206933333333333,3.53044,4.101985,1.84247,3.384933333333333,1.654946,1.76783,3.94988,4.499345,2.1363525,4.76656,2.3302125,2.239435,3.78968,3.52519,4.00405,3.84052,6.156690666666667,2.4305406666666665,3.90049,0.7631854545454545,0.679685,3.87529,2.23936,8.613016666666667,3.3627000000000002,5.08675,1.66166,4.63684,1.5336883333333333,4.073185,4.501065,2.5912366666666666,3.70174,5.0829,0.4140125,0.4140125,3.8480000000000003,3.2780133333333334,2.9570666666666665,3.799765,3.682525,5.5097,1.0442909090909092,10.782361666666667,10.99145,1.969035,4.60741,4.701185,4.965195,3.579135,2.5578433333333335,2.03314,2.0587125,9.966335,2.138875,2.7357633333333333,3.670732,4.73298,3.670732,2.27961,2.929396666666667,2.8901,0.7384736363636364,5.430110833333334,2.8627266666666666,2.7309066666666664,4.134415,8.59984,10.55292,4.0183,4.104865,4.266105,6.540525,1.8747025,1.4382625,26.510591666666667,4.61441,3.997055,1.03286,4.840435,4.11087,5.4312,4.59543,5.28865,5.637883333333333,3.0611333333333337,2.0700966666666667,0.6633764705882353,0.7356341666666667,4.53261,5.26005,1.3687783333333332,4.352975,0.92145,3.6995,1.5594033333333333,4.33792,5.9601,1.967865,2.483925,2.517545,3.790835,2.800165,0.4328761111111111,3.9106,3.59617,2.8616533333333334,3.2766,4.967765,2.9393733333333336,4.18687,3.056575,4.609935,8.36798,4.971335,8.284905,2.679525,2.572363333333333,4.476865,4.4771275,4.5831,4.36436,3.74146,4.75543,1.20628875,3.3054083333333333,3.3936735714285713,0.79716,1.527714,1.527714,4.53766,7.535711666666666,0.8167384615384615,4.75792,0.9007966666666666,3.0122133333333334,2.3508166666666668,2.612141818181818,6.279288888888889,2.5009466666666667,1.1349555555555557,2.3466366666666665,1.2801625,1.9049533333333333,3.2201833333333334,3.0577666666666667,3.3353,2.44838,0.9007966666666666,4.503065,4.68153,5.49555,2.67269,3.961835,2.1125,5.9562,4.821325,4.463265,2.97941,3.33449,2.2192625,1.50713,4.18708,2.70215,4.588475,5.63245,1.662372,4.62207,2.9981299999999997,6.497755,3.641885,2.445565,0.9007966666666666,2.445015,3.375,7.308440555555555,2.3007633333333333,1.87298,2.3007633333333333,0.43412083333333334,1.106896,4.112785,2.38936,1.722295,3.54745,3.8099309999999997,0.633196,0.633196,0.633196,7.710139999999999,1.589142,0.7402527272727273,35.333344045454545,1.942818888888889,0.6695888888888889,2.946225,0.6695888888888889,3.74864,1.953195,2.438415,2.548033333333333,5.0035,4.164285,4.607905,2.3753800000000003,0.8624085714285714,4.35182,3.318016666666667,5.204,1.02722,2.933925,2.933925,3.80344,4.59145,3.8246,5.176076538461539,3.07479,4.72398,5.3893,1.859054,1.095085,5.34125,6.5974,3.82329,0.679489,4.60286,4.11713,0.983235,4.46261,2.37989,3.9968,4.3787,1.9093863636363637,1.9093863636363637,4.168445,3.390095,0.9204977777777779,2.96198,3.07422,3.271875,3.97923,4.45413,0.51401,0.2754682352941176,0.2754682352941176,0.2754682352941176,0.7894782352941176,0.6153515384615384,0.6481779999999999,0.2754682352941176,0.2754682352941176,6.70906,0.2754682352941176,0.7894782352941176,3.51699,1.2972775,4.74718,1.1717,0.5826661538461538,0.983235,2.518945,2.68225,4.036515,3.026335,0.2754682352941176,0.2754682352941176,4.40265,3.730895,4.143935,2.6882,4.00834,1.475662,3.822305,0.6481779999999999,0.6481779999999999,4.90229,3.09369,2.686715,2.768745,3.8907266666666667,1.09567,0.9502153846153847,10.64141,1.2832625,3.85451,4.61007,5.0993,2.11652,0.3967426086956522,0.89876625,2.8336066666666664,3.226,3.321605,4.37341,1.386952,6.0918,3.522755,5.113155,4.20445,3.015423333333333,2.9010533333333335,6.5936699999999995,2.6850633333333334,4.679115,4.13716,3.8042800000000003,5.95461,0.550444,4.45368,3.5058333333333334,2.0918233333333336,0.6882688888888889,4.111805,4.71812,2.791325,2.36886,2.097845,5.12465,2.721325,2.77788,0.9774160000000001,0.46899153846153846,3.894145,0.34632,0.7761563636363636,3.957985,3.13766,4.11494,2.62836,5.5842,4.34723,6.154074666666666,3.560565,3.361525,4.39151,1.5553875,5.1671675,1.7612320000000001,4.060875,2.409295,5.916476666666666,2.50636,1.0184279999999999,4.64737,7.146889999999999,6.87250875,3.686033333333333,0.8097808333333334,2.8744899999999998,4.537715,3.97131,4.61605,4.61716,4.192365,5.18935,3.05922,4.24306,1.7678533333333333,2.32675,1.4779200000000001,4.08634,9.550415000000001,3.083775,3.69322,5.9081,2.61073,4.19812,2.5554866666666665,2.853016666666667,3.34957,3.34188,3.496145,3.26237,3.36159,5.15535,5.91265,3.920765,4.688935000000001,4.814995,3.90383,2.633895,5.16645,7.784000000000001,0.9200744444444445,4.163435,3.99688,4.83558,5.57725,5.3328,2.48949,8.22593,2.4189833333333333,3.60566,6.0757,3.76066,4.341365,2.21174,1.803505,3.031556666666667,2.18512,2.0752099999999998,2.97148,4.40422,4.62475,4.07128,3.31915,4.727643333333333,3.39299,3.11131,3.9790849999999995,5.70025,2.932975,5.509150833333334,3.94313,3.957345,3.75642,7.46849,3.82308,3.64627,4.29837,4.845525,3.25333,10.7793,1.347075,2.170855,3.841135,2.7655933333333333,2.7655933333333333,1.958165,7.995761666666667,0.8939277777777777,3.246575,0.9050925,2.0637475,4.57159,5.1336,3.976115,4.25217,2.792533333333333,3.462525,4.048355,3.887755,4.28368,2.988805,2.5204866666666668,4.289415,4.821446666666667,3.419265,4.40476,1.686836,1.64854,2.7258266666666664,5.73875,2.28797,1.7047366666666666,2.06193,4.35006,4.7924,2.974475,2.64886,0.46094,2.353095,7.6017,3.346875,1.53808,0.86674375,1.1947566666666667,1.8589033333333334,2.3325325,1.3080533333333333,2.08778,4.3710455,3.891755,4.608865,2.4577966666666664,2.02042,6.323105,2.953225,2.2822899999999997,2.2822899999999997,2.2822899999999997,6.446963333333333,2.2364966666666666,3.586645,2.514665,0.473,1.175,2.396065,5.6516850000000005,0.43942,3.61631,3.9728541666666666,5.94215,3.0808033333333333,0.43942,3.0808033333333333,0.93576125,1.211064,5.8248,4.118375,6.6456175,4.09015,4.92164,3.90149,4.18782,5.12985,5.7034,6.08925,3.80685,3.32719,5.1704,4.637765,4.1959,4.57412,4.525655,1.3770449999999999,2.6664,1.23241125,2.19166,3.144089722222222,1.4903163888888888,7.261345,5.420315,2.6105783333333337,4.337295,2.895385,4.771585,2.865995,4.1717,5.1108,9.225185,5.2668,4.42241,2.44926,2.927155,2.0864000000000003,0.57977625,2.1865093333333334,5.97205,5.32525,5.0524,4.80839,0.5051433333333333,1.99648,1.4350675,4.30404,0.7111423076923077,6.738025,2.03641,1.16101,1.16101,3.9750020000000004,2.1045000000000003,3.027896666666667,2.640065,4.63125,3.7875325,3.7875325,4.19279,5.880423333333333,2.7537299999999996,2.5280533333333333,3.358966666666667,4.7891,1.7952359999999998,2.69887,5.68085,5.24535,4.788375,4.1834,3.9424200000000003,4.46111,3.5008566666666665,3.190846666666667,2.31204,4.174015,5.41275,3.37907,5.2132,5.5857,2.0542133333333332,2.5527466666666667,6.1601,7.029,1.167036,2.746975,2.3626125,2.6929200000000004,2.24038,2.578125,2.7924055,1.07376,1.930435,2.6323,2.40489,2.467716666666667,2.467716666666667,3.1044405,3.105,2.29399,2.6721,2.423325,2.00518,1.564350666666667,5.1498675,15.115817166666666,3.0119566666666664,3.3186066666666663,1.785808,1.785808,1.61983,1.61983,2.9307933333333334,3.7172666666666667,2.9819433333333336,2.019595,2.019595,4.0407,2.5488766666666667,1.0501233333333333,1.4858428571428572,3.0237833333333337,3.0098333333333334,3.7115666666666667,2.6483978571428572,3.417566666666667,3.101706666666667,0.6960379999999999,2.654025,3.640223,7.212881666666667,4.857515,5.63285,4.457465,3.36515,4.825915,4.71325,2.7872733333333333,4.29719,1.3888816666666666,3.24365,5.69485,5.1823,2.79797,1.2793366666666668,3.00346,2.4136433333333334,2.99917,1.5288566666666668,0.7057528571428572,3.1154333333333333,4.6498425,4.77957,4.35571,4.852705,3.1035500000000003,2.1747333333333336,3.285915833333333,2.603616666666667,3.3119866666666664,3.215403333333333,3.3538,2.6901200000000003,2.2638866666666666,3.7031666666666667,2.8579399999999997,5.29855,4.68925,5.208474166666667,5.208474166666667,3.546455,3.80383,3.71926,3.705575,2.7901,4.243185,3.36091,3.0756933333333336,6.24095,0.7524058333333333,5.175,4.788765,2.5653366666666666,5.607530000000001,3.5984,1.8071166666666667,1.2276557142857143,2.16356,1.02674,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.5383214285714286,0.5383214285714286,1.18524,0.812197638888889,1.6282029924242425,0.9638228571428571,0.9638228571428571,1.1899041035353535,0.4382988888888889,0.39336444444444446,1.234245,1.4433825,2.58761,2.323625,6.467183333333333,3.0986966666666667,3.83653,3.3688266666666666,4.904676857142857,1.30397,4.89221,4.235125,5.17385,3.224965,1.50271,4.226428076923077,3.699975,4.47362,4.5363,3.26532,4.9798,4.69247,4.654705,1.211174,3.839095,4.797225,3.053745,2.3544533333333333,3.39413,2.62504,3.353115,4.425705,3.07076,4.68344,8.859490000000001,3.27562,4.970925,4.32066,4.42833,2.622386666666667,4.55494,1.0067985714285714,4.53801,3.328815,2.33992,1.3255625,2.857635,1.3238683333333332,0.5244433333333334,3.5988666666666664,4.3236,5.197726666666666,3.6405666666666665,2.540875,2.647435,4.79571,3.9977666666666667,4.51326,2.651175,2.1725566666666665,4.03466,3.89091,4.143355,5.16135,4.492855,3.713215,4.63386,3.2041,4.33092,2.2260999999999997,4.61599,5.2228,3.24602,4.389795,2.489235,3.812495,5.54855,4.069805,5.332,4.81438,4.87043,2.3802033333333332,4.966465,4.91852,4.84139,2.2380375,1.1734025,4.151,4.808975,4.13733,5.1009,1.835315,4.164985,2.27438,4.95304,4.72807,4.682055,2.2464775,4.136225,4.523375,4.386735,2.544563333333333,5.01135,4.733225,5.2427,3.900335,2.2380375,2.30782,2.92172,4.95314,3.937155,4.241855,3.48569,4.81998,2.49747,6.96209,5.3641,4.720345,5.3316937569444445,5.2009725,5.20225,3.6568924999999997,2.934595,2.934595,3.907085,3.71836,4.490045,2.1516425,2.924875,0.9893875,2.605516666666667,2.9464333333333332,2.4568666666666665,3.0854933333333334,4.305135,2.846103333333333,5.4016,2.582056666666667,4.48937,4.59972,1.988015,4.18405,2.82945,2.6466833333333333,3.98894,0.8869960000000001,5.2932,4.652095,6.2733574999999995,4.7228,5.4162,1.275577142857143,4.70179,6.5429,8.569995,3.2434333333333334,3.31857,1.9215440000000001,0.819498,3.8339,1.0250514285714287,5.11655,4.50166,5.9306,3.25786,4.324175,1.1776557142857143,3.644845,3.5727,4.28519,4.09938,3.02742,2.747745,2.4032525,4.46247,4.708,5.5903,4.401755,3.709975,0.3515511111111111,0.3515511111111111,0.3515511111111111,0.3515511111111111,5.4644,2.991065,6.17125,3.170503333333333,5.09105,4.720865,3.50884,2.31118,2.4631066666666666,1.4249233333333333,5.2441,2.9081566666666667,4.18199,3.973995,3.44566,1.65775,1.1714925,4.521275,2.434745,5.925998333333333,3.995795,4.566545,2.23508,1.587015,0.8987822222222223,3.36992,4.35779,3.630605,2.1905,7.761015,4.778355,3.48312,2.24622,0.525952,3.293395,2.411465,2.14928,1.9068,2.777725,2.82809,2.30994,2.9357633333333335,2.86888,3.46419,4.566355,3.73595,4.115275,3.25803,5.795261666666667,0.6398793333333334,4.557595,5.6873,5.01655,4.816835,3.4670666666666663,5.25085,4.596465,4.19268,5.4746749999999995,5.44355,4.77873,4.7502,3.7303075,5.27505,2.97566,8.85231,5.0698,4.272805,4.78861,5.26855,5.7152,3.48769,1.1566333333333334,5.916663333333334,3.384695,4.940155,1.40693,4.356395,3.826895,6.769425,4.83316,3.104215,1.9116366666666667,5.0118,2.18806,0.90248875,4.51015,6.0862,1.9464866666666667,2.3981166666666667,2.777893333333333,3.17085,3.545875,3.78086,5.1066,1.8420699999999999,4.347365,4.2645100000000005,3.340655,3.705766666666667,3.726575,2.909185,2.66456,2.0333675,2.4358866666666668,2.63774,4.30572,0.5635058333333333,2.563146666666667,4.423965,3.016925,3.6414666666666666,4.438975,5.193,3.98287,16.691073575757578,2.56371,4.149866666666667,1.529306,0.896170909090909,0.896170909090909,0.896170909090909,0.896170909090909,0.896170909090909,4.98853,4.6625,4.84032,9.21004,2.473985,2.473985,4.702455,4.790623333333333,1.31879,2.21429,3.94422,2.38503,2.3219575,2.23146,2.969325,3.708517333333333,1.7887275,3.64109,0.8297928571428572,2.85307,2.8169033333333338,3.068156666666667,1.4600033333333335,3.185636666666667,2.28435,0.980355,2.80232,2.7149,1.2903333333333333,2.48205,2.6886666666666668,2.2245166666666667,4.389744666666667,1.8125466666666668,2.867376666666667,2.0975925,2.715543333333333,1.1214666666666666,2.8130433333333333,4.833192666666667,3.5080666666666667,1.0654525,3.0690666666666666,1.322905,2.46162,2.3915933333333332,4.768231666666667,3.0913833333333334,2.4112466666666665,4.772128666666666,2.6165533333333335,2.183085,2.81314,2.59144,1.6288633333333333,2.86303,3.2056299999999998,3.0383633333333333,2.55898,3.1181033333333334,2.64704,2.4484525,3.7677605000000005,3.7677605000000005,2.9398666666666666,2.07,1.8448666666666667,2.5555566666666665,5.454863333333334,2.8339266666666667,1.9252933333333333,1.710765,3.0624633333333335,4.361525,2.400866666666667,1.116376,2.7506893333333333,1.51751,4.0950999999999995,2.0826,2.5034033333333334,2.1276800000000002,3.068403333333333,1.297628,1.68037,1.5033066666666668,4.259755,2.5224699999999998,3.930425,1.047711111111111,4.14138,2.01003,2.04258,1.74331,1.6030266666666666,3.3177566666666665,23.32520046753247,7.561533333333333,2.5831133333333334,3.609445,2.837896666666667,10.008488,3.040126666666667,0.99577125,2.5538266666666667,2.3646066666666665,2.0191433333333335,2.8388766666666663,2.590593333333333,2.5079366666666667,0.9479960000000001,3.0974566666666665,2.624276666666667,2.9983966666666664,2.65884,2.6770300000000002,2.1344333333333334,2.221373333333333,2.8678899999999996,2.6212,2.107125,1.585196,5.188416666666667,4.52916,2.4407425,3.0334,2.232063333333333,2.46763,8.243518333333334,1.9795233333333335,4.828205,2.485705,1.9426825,7.58554,2.9374000000000002,2.87323,2.46516,1.86557,1.5246892307692308,3.24485,3.181103333333333,4.012355,1.518835,3.6569000000000003,1.2994225,1.2994225,4.096595,3.81411,3.5751999999999997,3.5751999999999997,6.004083333333333,3.429115,0.417261,11.967454764957264,1.21654,0.92323,3.8345766666666665,1.4661239316239314,1.9002675,6.11098,3.845165,0.7569236363636364,2.1127366666666667,4.945608727272727,2.4715766666666665,4.12072,1.2932042857142856,5.45995,5.09265,4.984905,3.268289,1.973626,2.3087133333333334,2.5938,2.4043566666666667,2.1738399999999998,5.141133333333333,4.326015,4.258295,1.8171925,4.701905,3.941105,3.2820966666666664,2.2177825,4.88532,2.4847,8.857676666666666,6.604817499999999,1.9324475,2.12214,1.7371500000000002,4.650066666666667,4.650066666666667,3.082076666666667,2.82465,2.9684133333333333,4.905475,9.783395,4.2606,2.518325,5.50755,4.272995,5.2032,2.0185199999999996,0.816115,1.3424950000000002,4.55132,4.89463,3.7209333333333334,2.7820400000000003,3.8348999999999998,2.1228599999999997,4.12682,4.98234,3.427575,5.36965,3.184196666666667,3.5797653333333335,3.3626666666666662,3.3365666666666667,3.4042333333333334,6.21635,3.017325,5.3782,4.81711,3.406215,3.323975,3.323975,6.049402499999999,12.015803333333333,3.7114999999999996,6.117475,7.404606666666667,3.55761,2.4193966666666666,3.946485,1.2520900000000001,3.783235,2.67185,2.990153333333333,2.9970700000000003,3.228123333333333,2.17182,2.3192166666666667,2.7346333333333335,2.4810466666666664,2.99412,3.0307066666666667,3.952545,2.4914366666666665,2.9031633333333335,3.90906,2.7468833333333333,2.53793,1.14813,2.0613325,2.8002033333333336,2.368936666666667,2.5937733333333335,2.4254633333333335,3.5452999999999997,2.382146666666667,2.52279,2.5385133333333334,3.12877,2.684196666666667,2.8458666666666663,2.61544,3.2442333333333333,2.902623333333333,3.358288,2.58961,2.4244233333333334,2.41731,2.8205766666666663,2.6231133333333334,3.5233666666666665,3.3485,2.665025,1.93261,1.93261,0.7471800000000001,1.5860319999999999,4.22256,3.332,2.593053333333333,2.17182,3.0154366666666665,1.1984442857142859,2.75202,0.5813186666666667,3.4141999999999997,3.1684699999999997,3.19795,2.9917,2.5851366666666666,2.5846933333333335,3.0286899999999997,2.6573533333333335,3.3716666666666666,4.494406666666666,1.535934,2.8545166666666666,2.483216666666667,1.78017,2.17095,2.8799533333333334,2.73298,1.682846,2.5068699999999997,2.59471,2.726993333333333,2.6873400000000003,2.874913333333333,2.91423,3.14682,1.36606,2.797276666666667,2.3216933333333336,3.705966666666667,3.8506,2.0812025,2.235536666666667,3.4233,2.5118533333333333,3.4179,2.5633433333333335,2.995206666666667,5.445600000000001,3.2760233333333333,2.1028566666666664,1.53849,3.309886666666667,6.347146666666666,3.0077533333333335,3.6648,2.9037333333333333,3.0675833333333333,4.631504,1.6122039999999997,1.1660444444444444,2.0752266666666666,1.7994166666666667,4.73987,2.913743333333333,3.2205366666666664,3.1149766666666667,3.226433333333333,2.3560766666666666,3.551766666666667,2.5473,1.670984,2.8835633333333335,3.471765,3.7084799999999998,3.339615,3.684105,1.701065,2.837765,3.46155,3.60922,2.4089300000000002,3.9398999999999997,4.034033333333333,3.8552,1.407825,5.564591,3.31725125,1.50532,3.37318,3.53825,2.99242,3.947725,1.84489,1.84489,3.260313333333333,2.95511,2.895455,5.10025,4.34657,4.4396466666666665,1.59258,3.2957466666666666,2.5088766666666666,4.2787575,3.11901,4.978396666666667,2.6893733333333336,2.41581,2.6083066666666666,3.442025,3.884995,1.636758,3.0341633333333333,2.77352,2.3812425,4.48892,1.36955,2.89715,4.23878,2.719395,3.49945,4.040655,1.667405,1.5353633333333334,2.455395,1.1711716666666667,2.1352959523809525,1.8762325,0.4562714285714286,3.971725,2.51068,4.77539,4.370835,2.841345,4.6538691666666665,3.4626,3.1024766666666665,3.4525333333333332,2.4531300000000003,3.3533000000000004,2.832246666666667,3.1703833333333336,2.4087733333333334,0.680826923076923,2.278896666666667,0.63421,2.0208333333333335,2.423973333333333,3.157773333333333,3.1922266666666665,1.4587433333333333,1.3659075,4.40344,4.47284,3.23094,3.59039,3.13453,2.2313625,4.016895,7.872554444444444,3.398715,5.564355,1.7183675,3.9025,1.9965475,4.227065,3.52332,2.21493,4.159655,3.49721,4.021105,4.231325,2.19776,4.148035,6.12861,4.992775,3.352695,3.325125,1.6830325,2.104145,3.85582,3.300395,3.30089,3.748725,3.63316,3.68122,1.6747625,3.72515,3.131145,1.7753925,4.191835,1.0762083333333334,3.36895,1.6742775,4.1149,4.709371666666667,3.65419,2.9633849999999997,3.67025,3.477695,1.9322875,2.3152775,3.9863999999999997,1.88261,5.9123925,4.387905,4.480975,2.877345,2.673345,4.541385,4.56057,2.468902,2.468902,5.859066333333333,4.054048,2.89288,2.928445,2.046953333333333,2.8556,3.19011,3.7519641666666668,2.6784455,3.393795,0.9577859999999999,3.92151,3.130015,4.12789,2.793815,1.598535,1.447385,3.028455,6.080522,5.681324999999999,3.57718,1.58521,4.48903,3.87022,0.85902,2.96975,1.409348,5.3457574999999995,1.5014200000000002,3.859795,2.005665,1.4587433333333333,3.35358,2.98117,4.80821,6.835743333333333,4.085365,4.9552466666666675,2.3147,2.899605,4.145865,3.909795,4.209765,4.38687,1.058035,1.539414,0.992805,2.658435,2.0268,4.879875,0.992805,4.36002,2.48216,1.58689,1.58689,1.7753925,3.969725,4.295975,3.89299,1.587176,1.587176,1.0175833333333333,3.241015,2.102885,6.0932200000000005,4.24578,3.837485,2.8247466666666665,1.0086442857142857,3.48283,2.960395,4.24585,3.825045,3.9558649999999997,3.9558649999999997,3.40331,4.0926,1.9172,2.746055,0.9720844444444445,2.1579200000000003,3.69168,2.36858,3.3030266666666668,3.3030266666666668,2.854195,4.56223,4.58912,3.874595,3.450535,4.00606,2.6022866666666666,4.4358691666666665,3.1573,3.951445,8.456895,5.0847,2.62955,3.198255,3.06161,4.546215,3.329058,7.712235,4.708534,4.83755,3.520965,3.887295,3.7562,4.730825,4.740045,2.90223,4.8373,6.892393333333333,2.77982,2.090263111111111,3.24821,3.28784,3.84779,6.1929,2.2686733333333335,2.61607,3.27346,3.610985,3.613766666666667,7.425855333333334,1.666335,4.913918333333333,4.913918333333333,3.356315,3.9183858333333337,3.15959,2.4947333333333335,5.47452,4.522049,2.1490240000000003,3.939945,4.10389,3.495916666666667,3.03357,3.04162,6.062111666666667,3.254165,5.2689,3.211075,4.872685,4.101525,3.760225,2.95511,2.296,3.17242,3.98785,2.84457,3.07998,2.882525,6.196763333333333,2.642575,1.8671125,3.2680925,2.37041,3.98374,2.802395,0.85902,3.74379,4.13943,3.96554,6.0248525,2.956275,3.201655,2.9983833333333334,2.9983833333333334,3.8272749999999998,4.24821,3.76462,2.0537775,5.8802075,2.1398775,4.489645,3.63242,7.94005,2.75497,1.9554633333333333,3.172205,4.432235,0.64101875,4.046705,3.67463,3.21343,3.116775,4.32249,2.0518566666666667,2.56441,8.90321,3.50622,3.343435,1.5014200000000002,3.875205,2.721195,2.36357,4.17997,5.3484825,1.6429425,1.21414,1.1000916666666667,4.292045,4.492525,3.746585,3.4829774999999996,3.4829774999999996,1.6747625,2.37827,3.314841944444445,0.9773244444444446,3.12571,1.1085175,1.701065,3.12719,3.501345,2.89595,2.728,2.8736283333333335,4.345825,3.86966,3.103125,2.91767,2.91775,4.40936,6.716075,4.096095,0.937785,2.5904755,8.66426,4.658835,4.056055,1.0754275,5.14192,1.44693,3.8477425,3.8477425,3.845935,9.206624999999999,0.8840322222222222,4.87412,4.471575,2.4161466666666667,4.1418808333333335,3.85019,2.1721475,9.951671333333334,1.865935,2.41371,3.456015,1.6482633333333334,4.249077583333333,3.35198,3.318665,3.691699333333333,2.931885,3.12773,1.1619383333333333,7.01061,4.173805,4.01106,3.908955,1.9457575,2.9633849999999997,4.450555,3.847475,0.6325007692307693,3.806985,4.20457,4.59996,2.0920075,1.5215859999999999,4.13472,4.19408,8.87593,0.7054661538461539,0.8769875,0.8769875,1.9416666666666667,1.4218666666666666,1.449654,1.7672100000000002,4.808325,1.2897766666666668,0.8942142857142857,4.021739999999999,3.255305,1.1836075,3.193145,4.893545,4.112315,0.7770859999999999,2.13454,9.024405,3.241735,3.395855,3.53508,1.665985,2.49066,2.378195,4.55683,4.348745,3.829465,0.8793971428571429,1.4619300000000002,0.93668,4.2136825,4.296885,4.01006,0.9773244444444446,1.699024,4.02475,2.3030496428571428,5.010635833333334,0.9982775,4.70683,0.7606799999999999,0.7606799999999999,0.7606799999999999,10.100404999999999,3.87506,1.1085175,3.89615,4.740685,2.80416,3.2817,5.858844166666667,3.196595,1.8629138888888888,2.6374833333333334,0.7770859999999999,1.6361059999999998,0.4825722222222222,0.731725,1.5769266666666668,4.16691,3.72816,2.10293,7.404546666666667,4.903885,0.6430811111111111,6.1496,5.24669,3.446465,4.473,7.574458333333334,3.8570519047619047,4.903885,4.509212083333334,2.4444966666666668,4.16879,3.745565,7.396295,3.4327,0.525952,1.447182,3.778955,1.7500499999999999,1.21414,3.917515,2.3731466666666665,1.72115,3.350755,1.6894120000000001,4.47359,4.44559,3.99063,4.734535,6.43663,2.395025,3.911065,1.409348,2.3211425,3.356075,3.26254,2.1490240000000003,4.14393,2.310355,5.054,2.9376,2.25038,3.4151175,1.736018,3.35556,0.9773244444444446,2.12963875,1.1000916666666667,1.56236,3.61916,1.666335,1.5769266666666668,2.035865,3.64311,7.86613,0.8793971428571429,1.0754275,1.3655760000000001,3.557715,3.795075,1.3655760000000001,3.94951,2.3211425,0.64101875,0.9773244444444446,1.9416666666666667,1.409348,0.4562714285714286,1.6280740000000002,4.300566666666667,2.4161466666666667,1.3255866666666667,2.95436,1.407825,1.865935,2.944443333333333,2.6374833333333334,5.0644,2.944443333333333,0.85902,2.8991809999999996,2.1807,0.10646545454545454,0.10646545454545454,0.10646545454545454,0.10646545454545454,0.10646545454545454,3.26736,2.7695166666666666,2.8695066666666666,2.8412100000000002,4.66509,4.38947,1.74331,3.69211,3.570995,2.15497,5.02061625,2.65271,2.449435,2.44765,2.663915,4.55377,8.573333333333334,2.2703825,1.9914333333333334,3.102700357142857,0.9741528571428572,1.3702699999999999,2.3691666666666666,2.0527333333333333,1.481315,2.8839466666666667,2.2226166666666667,2.580443333333333,2.6990766666666666,2.6681866666666667,3.64631,3.625465,2.6343166666666664,1.354684,3.84676,3.63961,1.5546733333333334,1.33345,1.33345,1.33345,3.53401,2.81779,1.0518466666666666,2.3082933333333333,1.355092857142857,4.28936,1.5267566666666665,6.567643333333333,3.3267875,2.6755533333333332,3.126264,3.126264,5.2459,3.1929,4.487535,5.0284,2.17935,3.041323333333333 -GSM1946759,1.0,2.05452,2.05452,1.5425933333333333,4.178945,5.5344,2.605555263157895,1.6674366666666665,7.851880906862745,4.48658,3.11637,2.020895,2.14041,3.05485,4.308535,1.831278,1.5108380000000001,5.04485,2.5770666666666666,2.3984325,4.888375,5.294886666666667,3.92828,2.16782,1.7306260000000002,3.70338,4.92317,4.341695,0.7701583333333333,1.5052691666666667,1.6797183333333334,2.4127325,2.141805,1.25667,0.7039483333333334,3.2096575,1.5698475,1.3868975,1.123745,2.13086,1.0082775,1.0552975,1.04801,1.472524,0.9326079999999999,0.924508,0.764084,1.1350885714285714,1.6459759999999999,1.8014420000000002,1.52195,2.07206,1.68343,18.00320075,0.3817506666666667,0.818706,1.239924,1.711188,1.566292,1.9121359999999998,1.08521,1.08521,1.08521,1.1606266666666667,1.154784,4.69544875,1.1074,2.12301,2.0785175,2.56415,1.00121,2.38076,2.394085,2.2652475,1.3275275,1.97484,1.60158,1.6859825,2.4909866666666667,3.7349,4.724985,4.712405,1.5948033333333334,4.569925,4.8409233333333335,4.27783,4.141925,1.04540625,7.72074,0.617515,0.617515,2.15139,1.0332871428571428,15.650155000000002,4.463815,5.25775,5.20195,4.247015,4.20317,5.0539,0.4817166666666666,2.17612375,1.5299775,2.26645,4.842215,4.47804,1.3799625,3.0203466666666667,3.2942066666666663,2.3977666666666666,3.4441333333333333,3.447195,4.49072,2.6309604999999996,4.489085,2.976986666666667,0.7407054545454546,1.664168,2.421415,4.751045,3.72874,0.533089375,3.398005,3.752555,0.7894425,4.108245,1.6510942857142858,2.26719,2.2955975,2.0579925,2.991765,5.3883,3.434475,2.6963000000000004,3.1390833333333332,3.0499266666666665,3.89675,2.7846333333333333,5.5327,3.40505,4.19429,3.362965,2.467895,3.595805,2.4685025,7.083031666666667,3.618925,3.10612,4.369865,3.095805,4.73565,0.8085711111111111,9.608306666666667,3.58858,2.12682,1.9340000000000002,3.5531333333333333,2.32035,4.5305,5.5536,2.1410025,4.784525,2.80422,4.64578,2.1410025,2.68741,4.87486,5.130795833333334,4.762865,8.215811666666667,3.37131,4.56403,3.00183,4.96108,4.74799,1.4783816666666667,8.28502,4.537695,4.035535,4.51801,3.583425,3.49447,2.338825,6.212445,2.2309,3.75404,4.0608,4.97695,4.5162,4.41916,1.2455633333333334,2.75748,2.970075,1.7264475,1.7264475,5.990795761904762,3.106725,1.8735466666666667,4.009095,4.47931,2.74768,1.4940300000000002,0.9230411111111112,6.8593,2.82477,6.84485,3.4824,4.469865,3.82109,3.098095,3.91963,3.63558,3.882495,4.211985,6.50875,2.865875,3.69663,9.048283333333334,4.657235,3.675966666666667,3.07987,2.62027,3.8465000000000003,4.076015,1.559675,2.8611299999999997,1.9092666666666667,1.651454,1.8273933333333332,2.6224333333333334,1.7427275,2.15837,2.8394633333333332,2.5103766666666667,2.446286666666667,2.816603333333333,4.8409233333333335,3.62551,3.653705,3.148395,4.864995,1.2968333333333333,2.103425,2.931138857142857,2.0845,2.60935,2.3203733333333334,3.403833333333333,1.824116,1.3624066666666668,2.61238,0.651966,1.5406000000000002,0.5104788888888889,0.5104788888888889,1.5625366666666667,2.7129999999999996,2.34661,1.39081,1.57087,0.31566461538461543,2.74414,0.651966,1.2456366666666667,0.23283621621621622,1.4352233333333333,2.1536925,3.6075666666666666,2.5842933333333336,2.3778433333333333,2.55607,2.3487,2.4009966666666664,2.52975,2.6808366666666665,2.25075,2.64649,1.92024,2.7425,4.25846,0.7003783333333334,1.85329,2.616826666666667,1.8917633333333335,3.44454,1.560152,2.58882,2.22134,4.31478,2.0438266666666665,7.256231904761905,1.6414285714285715,2.8757633333333334,2.22948,2.3326,3.547833333333333,2.330965,1.9279325,4.303235,2.61771,2.1693425,4.04197,4.12477,4.467,4.02268,2.32391,3.457415,4.866064,3.837805,3.844745,3.995935,4.62792,3.09393,4.345915,3.6137,0.91789375,4.826725,1.3011533333333334,4.27444,3.853605,5.857027,3.834365,4.270355,0.98354125,2.2015,3.530105,4.125835,0.9245442857142857,1.3983799572649571,2.4297542857142855,3.027166285714286,5.1087525,5.479876,2.0733825,3.21449,5.49415,0.3267292857142857,4.164955,2.34231,0.96966875,4.11199,2.112865,13.016594999999999,1.17340875,1.6103725,2.1228433333333334,2.40233,1.9704252631578947,4.582990263157895,0.31295526315789474,1.6545966666666667,2.9017766666666667,1.0407225,2.6646966666666665,0.9202885714285715,4.97211,4.07132,2.0864533333333335,5.9642,5.4032,2.618475,1.2033657142857144,4.376313333333334,5.14255,4.39966,0.9562,7.667693333333334,2.7780633333333333,4.475925,2.69055,2.6937599999999997,4.795965,2.445613333333333,2.7884700000000002,2.258903333333333,2.50915,3.126305,3.06755,0.35431375,4.613365,3.867955,3.890075,3.857265,4.445275,6.052078,4.036905,1.760655,5.88855,4.917495,4.216445,4.12835,1.30417,2.93678,3.2742533333333337,2.80214,16.300105000000002,3.36071,4.071045,4.57375,5.2305,2.67367,5.180601111111111,2.090555,0.7759722222222222,2.569375,3.33449,3.8514,3.62756,6.561771666666666,2.9408766666666666,2.25322,2.15486,3.2844433333333334,4.31605,2.36229,0.37404238095238096,2.8184828260869565,1.9781475,1.1485475,0.47404629399585924,0.5740502070393375,0.37404238095238096,0.37404238095238096,0.37404238095238096,1.1382275,1.3489425,0.8058275,1.5125125,4.345965,0.22012705882352943,11.305990974025974,3.1493566666666664,2.759206666666667,4.03981,3.779235,4.14941,2.144695,4.681755,3.957582666666667,4.26769,3.5753,0.6933953846153845,3.465533333333333,3.9090087179487183,0.6372442857142857,3.65785,2.9806233333333334,4.464165,0.48802090909090906,1.87505,4.689685,3.332595,1.9255575,1.8446033333333334,1.6362433333333335,3.6511333333333336,4.016,3.02852,2.8622033333333334,5.52295,5.51,4.748085,3.1352499999999996,3.340875,6.490225000000001,3.7386,5.2576,0.4127247619047619,3.4042,4.05537,1.9819833333333332,2.58754,2.7873475,5.213521666666667,0.6224091666666667,2.475205,4.2612,3.871675,1.0658271428571429,4.521595,3.94876,4.850575,3.4377999999999997,4.554045,3.4994,4.38697,1.19245,3.587785,2.78976,4.8397,4.528155,4.30832,5.5722,4.49287,2.622505,4.92945,2.26335,2.542605,3.0184466666666663,2.55621,2.56864,2.4489033333333334,1.7010079999999999,1.5081833333333332,2.0310366666666666,0.8409171428571429,1.60882,2.279853333333333,1.9983366666666667,3.0942000000000003,3.3963,2.5953766666666667,0.9506533333333334,5.106,3.3703000000000003,5.3571220833333335,2.62547875,3.0605266666666666,3.4625,1.7643833333333332,1.7643833333333332,2.7255285714285717,2.7255285714285717,3.408676428571429,0.5037114285714286,1.7739066666666667,2.0634266666666665,3.5861666666666667,2.176430476190476,2.176430476190476,2.176430476190476,7.608146011904761,4.537022857142857,0.9808727272727272,3.002375,4.633369166666666,2.1751,4.830545,3.173705,2.364855,4.38022,3.122533333333333,3.19074,0.73083125,1.9510833333333333,3.7868666666666666,2.5940133333333333,2.50256,5.43345,3.2733666666666665,3.316853333333333,4.742196666666667,1.8648833333333332,2.42203,2.7587966666666666,1.0230066666666666,2.18227,4.249705333333334,8.076985,1.539235,2.980145,4.276525,1.9700520000000001,1.7906475,1.7906475,0.9489825,4.99108,7.7720199999999995,4.040855,5.707587,4.50049,1.9735333333333334,4.029425,3.164225,4.905025,4.851086666666666,0.35910315789473685,2.98727,2.618345,4.28177,3.98283,1.907682,2.0518125,2.5971,4.416665,4.03822,2.89374,2.568945,1.45398,6.88905,4.50732,5.0616,3.496795,5.17675,4.593375,5.09785,4.45674,3.7859925,1.981575,1.0161014285714285,2.8271,3.94583,4.38407,5.7675675,5.574035,2.28672,1.8251333333333333,2.6830233333333333,2.7790199999999996,3.04276,0.6039928571428571,2.267605,3.65254,1.1395575,4.679675,3.356825,6.08817,1.3484990909090908,1.3484990909090908,3.998645,3.826155,3.839025,5.37685,2.8272,2.283393333333333,3.74676,4.08632,2.2547725,3.573933333333333,2.5883966666666667,4.181745,3.6358525,3.46202,4.686035,1.0117166666666666,2.48841,4.560575,4.900105,3.91206,2.5714799999999998,2.54203,0.5588955555555555,0.5588955555555555,0.5588955555555555,0.5588955555555555,1.2811738888888886,3.677245,3.677245,1.73153,7.279115,3.30078,4.049715,3.0557,2.7577,4.680595,4.092435,4.848705,5.2382,1.8129975,4.76034,3.557955,2.55238,3.75589,3.41318,2.69051,3.981045,1.8373,4.95559,1.65574,3.6641174999999997,3.07023,1.816895,1.1998716666666667,2.76622,3.851995,1.25245,0.8491211111111111,3.497905,1.241435,4.927879333333333,4.607235,1.3021314285714285,3.55224,0.7771811111111111,2.65453,2.4659633333333333,2.2656266666666665,2.740995,4.21691,2.8908508333333334,4.320355,5.061,4.62704,4.278235,2.225925,1.3340014285714286,4.28653,4.862075,1.3691,1.3691,4.1282,0.2261446666666667,2.0606966666666664,0.2261446666666667,0.2261446666666667,0.2261446666666667,0.2261446666666667,5.1032,2.724906666666667,3.052965,3.42072,3.234776666666667,4.173185,2.69333,0.9585425,0.9585425,1.0629866666666665,1.0629866666666665,3.854895,1.77904,3.804335,1.6758380357142855,1.6758380357142855,4.64461,0.5625471428571428,2.3459325,7.617786666666667,4.793815,3.165395,3.61895,0.8984175,2.27019,1.99492,4.50511,4.173175,4.344245,3.904615,1.365667142857143,2.613405,1.9606825,7.54518,1.71242,4.716815,4.822855,2.715475,3.85146,6.15051,7.607215,4.160575,5.12105,6.1703,2.3813425,3.122335,2.47605,2.370305,1.86647,3.88378,3.16628,5.816811666666666,6.43903,4.00407,1.1389566666666666,1.977285,3.88342,4.56148,2.1959925,4.83455,4.81122,4.635166666666667,1.7680833333333332,3.8956666666666666,1.6566566666666667,6.208073333333333,2.6923866666666663,2.3068400000000002,2.3868533333333333,2.232145,3.29417,3.4158333333333335,3.5872666666666664,2.92879,3.3337,1.647126,3.62194,3.095165,3.203905,0.3683535,2.9508,3.79753,2.588925,5.34305,5.1209,4.837055,6.580808000000001,5.74345,2.2610333333333332,4.177875,5.2987,1.6047533333333333,5.1265,5.97475,5.37095,4.461135,3.234325,5.5986,4.79724,4.10182,5.292032666666667,7.81865,3.57555,1.1736183333333334,1.5551183333333334,2.767765,1.7670280000000003,4.348395,4.174675,5.1581600000000005,2.4316633333333333,2.47125,2.8645566666666666,2.4627399999999997,2.3695033333333333,1.2051555555555555,0.5220482352941176,3.55125,4.041435,3.1731,4.25339,2.989095,3.21048,5.720656666666667,3.1970466666666666,0.5925411764705882,3.288585,5.51555,1.865685,1.612104,3.829265,3.33215,2.5027633333333332,3.9760333333333335,4.39747,2.6958466666666667,2.294426666666667,2.3744433333333332,2.499503333333333,2.66541,4.177013333333333,5.168798333333333,7.7912675,1.93952,4.837425,3.19819875,5.37665075,2.6751966666666664,3.09166,2.243515,2.36459,1.4311575,1.4311575,2.59067,2.38775,2.7986633333333333,3.492545,1.727108,2.184235,1.94382,0.502506875,3.72754,0.5518916666666667,0.95010875,3.58404,4.002325,4.09567,1.7133475,4.62796,2.41887,0.8833857142857143,3.83213,3.698444285714286,3.000163333333333,2.375355,5.15955,0.27481,2.2641134999999997,3.28872,1.4429,3.74389,6.5117,2.26891,1.3062466666666668,3.96741,3.84215,2.8035266666666665,2.8035266666666665,3.616505,4.70514,4.457075,5.197895,4.989325,1.0151144444444444,2.6425199999999998,2.504156666666667,4.02934,4.97794,6.30585,5.0308,4.4040333333333335,3.8094,3.7421333333333333,3.5940999999999996,3.948366666666667,3.1867,3.09146,0.6266578571428572,2.20861,2.3041375,3.641655,2.94035,3.3034733333333333,0.780455,2.43907,4.2229565000000004,4.295535,5.85295,4.284455,1.7455475,1.7455475,0.809986,3.208725,4.496415,3.817425,4.714697142857143,3.11073,5.38685,0.60857,3.035495,3.98286,4.09846,3.5923508333333327,0.7883842857142858,2.76068,3.973565,4.9772,3.830475,4.923995,2.806445,4.209565,1.33415,1.0141257142857143,2.878386666666667,4.912875,4.293025,3.08997,1.5555833333333335,4.005405,2.520775,2.53935,2.7483031111111114,3.15785,4.669613333333333,2.9445200000000002,1.732768,3.2748933333333334,1.482037738095238,2.96376,2.571613333333333,2.3221025,2.786846666666667,3.0039766666666665,2.4704966666666666,2.11407,3.56401,2.9828566666666667,3.0867473333333333,2.4488966666666667,1.820455,4.295495,2.9751100000000004,2.5380433333333334,3.0867473333333333,2.0948033333333336,0.7934409090909091,2.3889575,0.9978111111111111,2.3527325,1.5444075,0.9291272727272727,1.6148525,1.805095,2.7874272500000004,2.51235,4.75454,1.5161375,3.955965,2.822843333333333,1.699472,2.26667,2.5745566666666666,1.6164933333333333,2.73128,2.55089,1.8027311363636362,1.3419975,1.9469999999999998,3.4116,2.35842,2.838738333333333,3.0502966666666667,3.0280233333333335,3.635066666666667,2.0823766666666668,4.2653,3.4685,3.7410333333333337,3.0512,3.5114666666666667,3.6281666666666665,1.8221666666666667,8.791595,4.23316,4.79383,3.380795,2.91213,1.94275,4.0042,1.7205100000000002,4.1401,4.32837,1.39568,2.43265,1.1267483333333332,2.2695466666666664,1.6750133333333332,2.26966,4.9418050000000004,2.9834433333333332,3.652175,4.90666,0.7508175,1.436826,1.00746,3.5362,11.723766666666666,4.3414,6.6244,1.98391,5.1896,4.622785,2.54305,5.0214,0.2879505882352941,0.8349285714285715,4.962655,4.825765,7.6037475,2.2047475,4.37847,5.3287,4.94466,4.86953,3.788155,4.151175,2.99702,5.039673333333333,4.184235,3.183995,3.16834,2.21247,1.9987033333333333,1.396230875,2.43691,4.269305,4.78495,1.610992,9.09193,1.8539899999999998,2.811633333333333,1.01919,1.01919,7.530433333333333,3.192585,2.4196475,2.0078425,2.7963299999999998,2.1166233333333335,1.08462,3.0703316666666667,2.74342,0.6099542857142858,1.7520766666666667,3.26903,3.26903,1.1481766666666666,2.5202166666666668,2.36306,2.543783333333333,1.4093475,1.772,5.054876,2.6401866666666667,2.527625,1.262245,1.262245,4.14115,5.49925,4.487605,3.264635,3.76025,5.87243,2.77776,2.7917166666666664,3.4709333333333334,4.09341,1.1690016666666667,3.2194366666666667,2.472165,3.83775,2.1593166666666668,4.749465,3.646965,4.42573,3.67546,5.556937,1.0071388888888888,1.9733825,1.801545,3.58887,4.6224075,4.053265,3.844155,3.970905,2.409965,1.7476825,4.22242,3.44433,3.31517,2.4892533333333335,0.85512,3.48369,4.41011,4.573455,1.14,2.92064,2.8711800000000003,1.9004333333333332,1.8435276470588238,1.8435276470588238,1.24971,2.0351833333333333,1.0469471428571429,1.4137879999999998,4.33222,4.43406,0.4826857142857143,3.3417,3.3643666666666667,4.031525,5.3522,0.4138625,8.812985000000001,5.5091,2.886715,3.62626,4.679315,5.397692142857143,5.05835,6.455015,0.7039518181818182,2.72954,5.213,2.77216,1.86382,2.0572,4.45788,5.4265425,2.3571273214285715,2.9278366666666664,3.3971666666666667,1.61375,4.23956,11.07265,8.024175833333333,3.832433333333333,4.94938,3.178720833333333,3.140715,3.98338,1.877326,3.2604366666666666,3.684835,3.95159,4.935155,5.25592,6.5958733333333335,2.7643633333333333,3.7438,4.72288,4.99162,5.60645,6.234603333333333,3.8202024999999997,6.1878,3.495235,2.898485,2.90425,5.538,3.724445,5.24185,2.17399,3.1278133333333336,3.370145,5.78995,4.16211,4.379115,1.489758,0.9181325,2.609175,0.5966206666666667,4.69696,3.66044,3.573595,2.76395,2.0972833333333334,3.04845,2.644575,3.0106659999999996,1.902598,2.99722375,2.821,2.2792775,2.603825,3.706256,1.09172,2.4749825000000003,5.20505,3.733366666666667,1.141,2.8041,3.655190833333333,3.67984,1.4646125,5.69665,5.2627,2.1834633333333335,2.994756666666667,30.561842975511418,3.5277666666666665,1.7327166666666667,3.9009,1.76521,2.61374,2.8455833333333334,3.247576666666667,2.0216325,2.80795,2.1956125,3.486885,3.158353333333333,2.3647,1.5701275,2.24272,2.78415,0.3876695454545454,1.141935,2.7312366666666663,1.5266199999999999,3.50052,1.4646125,1.8987633333333334,25.389267888888885,4.61815,4.3828,3.61308,2.58238,2.3154625,2.49785,2.2251925,3.599055,5.164864,5.39845,1.612724,1.792958,2.171985,2.54747,3.8724008333333337,5.12565,4.675945,4.57898,0.1752021276595745,4.819595,5.089169166666666,3.82521,8.75751,1.084595,1.084595,2.8919200000000003,3.23756,5.80435,2.094082222222222,1.0365922222222224,5.0687,1.91496,4.10635,3.86692,3.32521,4.145665,3.955905,4.94855,3.03792,0.72524,3.244335,2.1723666666666666,4.48421,7.7074549999999995,4.114515,2.27598,2.27598,6.8243525,4.658245,4.212755,5.5381,1.7385400000000002,5.424851666666667,1.4925266666666666,1.3208166666666667,2.908776666666667,2.0077000000000003,2.96222,2.807726666666667,3.8079,4.2967475,4.5133,5.4382,2.426735,2.396335,1.9493825,2.782325,2.2903275,2.0637325,2.08037,4.724716666666667,1.89717,3.8091976190476187,2.4131766666666667,3.3786666666666663,2.81774,1.8796866666666665,1.5187000000000002,1.02127,2.337893333333333,3.740133333333333,0.761978,4.97716,1.8980975,5.868964166666666,1.925715,1.532315,1.4899775,1.5669633333333335,5.800131111111111,1.683894,2.9417833333333334,3.660433333333333,1.2052075,1.81708,5.060304,3.029033333333333,2.8451466666666665,3.5854,2.99629,2.8128966666666666,1.2509953571428571,0.26628583333333333,0.26628583333333333,0.26628583333333333,0.26628583333333333,0.26628583333333333,4.26108,2.7382666666666666,2.4044725,3.5497666666666667,1.4138,2.6697433333333334,3.402233333333333,2.9010466666666663,3.64396,2.919875,1.67995,3.0863066666666668,3.3108,2.1243425,1.9891725,3.8593,2.9038233333333334,3.3431333333333337,5.56765,2.73397,2.6448933333333335,2.6149,10.915969166666667,4.981185,4.37546,4.939445,3.684825,2.8748533333333337,5.1514,3.28808,3.321135,5.797421666666667,3.60237,3.04545,2.070675,3.55417,5.008300428571429,3.696555,17.245168678571428,1.199545,4.351565,0.87356,1.23610125,3.07395,4.8845,4.3083,3.871515,1.44676,2.1971725,4.31214,2.7284733333333335,4.67755,3.164160714285714,2.65918,0.6019566666666667,2.6321666666666665,5.31305,2.290675,2.327955,2.3501825,19.543375833333332,1.823298,1.3306875,2.601523333333333,0.29654153846153847,1.8600025,2.8343866666666666,1.9363299999999999,2.8955933333333337,2.762525,7.2701725,1.9373225,2.509575,2.34508,2.1645575,1.591515,3.16443,2.897435,3.133745,2.82673,1.9528875,2.6501475,3.2385280555555553,4.920725,0.3898908333333333,4.0281,3.15142,3.0024,1.97314,3.521983,3.545925,1.5274,2.3105100000000003,2.17699,1.4421466666666667,1.7659733333333334,3.694685,3.343675,0.777625,3.44235,5.18055,4.29685,2.296518,2.296518,3.19751,4.938255,3.232185,3.35414,2.2885625,0.8912854545454546,4.277435,3.653785,5.995,4.467725,2.340798,2.340798,1.3591425,3.84267,5.17395,3.65006,4.22481,3.3392666666666666,2.2460133333333334,4.639815,3.48472,4.0853,2.7833433333333333,2.5182533333333335,4.322711333333333,2.9503299999999997,2.7007,1.9800133333333332,3.637395,2.8527,1.6623266666666667,3.79569,3.510715,4.36601,3.1620233333333334,4.58426,4.288265,6.53868725,4.00593,2.20606,4.7026,2.638655,7.043115,2.54845,1.2626033333333333,4.40404,3.5098333333333334,4.53133,0.5797735714285714,0.8964833333333333,3.616905,3.681765,2.062656818181818,4.518735,2.80552,2.917195,10.889,1.99005,1.258956,3.33287,2.548585,4.043575,4.260375,6.487369999999999,3.1503799999999997,2.135733333333333,3.0812566666666665,1.993,3.3097333333333334,8.317871001642036,0.8218307142857143,1.0310925,5.2829,0.42638533333333334,1.706475,2.046555,2.94675,3.0191,2.59515,3.887425,2.573775,12.61886,5.225555,2.52025,2.52025,4.321875,0.8371566666666667,5.2051333333333325,4.410475,4.054975,5.50218,3.573265,4.75623,1.4715216666666666,2.817215,2.654995,2.72003,3.0165,2.61608,3.049875,3.628275,3.6833,3.07374,2.952695,4.11477,4.28232,4.52655,2.74013,3.0983933333333336,4.9962816666666665,4.499525,17.73005285714286,11.961725714285715,3.138529285714286,0.6790866666666666,1.4216985714285715,4.676385,3.479845,3.1010597756410254,2.02219,0.8301522222222223,0.6687408333333332,0.6284528571428571,2.179445,1.6177420000000002,5.3464833333333335,3.3551,0.7115381818181818,3.48275,2.52765,1.7180825,1.849766,6.51714,1.540932,5.20225,2.97955,3.00125,2.357985,2.6585466666666666,2.5761,0.7032154545454545,2.953515,2.70602,3.982861333333333,3.026313333333333,4.865263333333333,3.68642,3.487925,2.23845,3.639845,7.4809225,1.9932775,2.29936,2.3928875,1.5946225,2.67975,2.1208175,2.853675,0.922129,1.2802575,0.94754375,2.756215,4.018105,6.04755,5.24145,2.70636,2.44782,2.96375,3.4303666666666666,7.612635,1.2514566666666667,0.361433125,2.79059,2.13418,1.5501099999999999,3.4558609999999996,1.236304,1.769839333333333,3.839996666666667,2.664286,1.2257133333333334,1.8500366666666668,3.8018366666666665,3.61909,4.444625,4.50647,2.19065,5.2493,3.751125,0.7667876923076923,4.95582,4.210755,4.404815416666667,3.5490999999999997,2.446705,1.327576,1.44673,3.50091,2.765405,3.32004,3.88288,2.72718,2.7943700000000002,3.295975,3.87671,5.31265,2.27463,2.721615,3.69739,5.73465,0.561365,4.8348,1.7223225,3.71941,4.0864666666666665,1.87037,3.11289,2.25197,1.927395,2.6422,2.565624166666667,1.8959733333333333,4.717755,3.657665,1.3369700000000002,7.00832,1.0167766666666667,3.666365,1.71314,4.491915,3.89144,2.8383833333333333,3.195205,4.057875,9.52825,2.897165,3.72562,3.886615,3.688205,1.7340325,7.99876,3.725195,3.953415,1.498575,4.258855,3.159355,1.01635875,1.8929719999999999,4.291555,2.14817,4.267345,4.932847499999999,4.29982,4.763715,2.47119,5.3501,4.04323,3.1409633333333336,2.034476666666667,1.6499780000000002,4.753275,6.2515,4.997385,4.69397,3.19072,2.01952,4.70802,3.40217,1.070399010989011,4.247175,4.8200183333333335,4.016555,2.6736,3.664995,0.4858357142857143,0.4858357142857143,5.3273,4.79443,5.31725,2.315145,3.758495,5.4119,0.848944,3.97477,4.897895,4.69672,4.618455,4.49212,1.9017975,3.1438,2.1759375,4.54621,0.6921125,4.1172,4.24796,2.73162,2.979393333333333,4.4633,2.342315,3.32377,60.26790473809524,3.302895,2.593253333333333,1.700925,3.441435,4.032555,0.77300375,0.99741125,1.899,1.899,1.34281,3.28312,2.18501,3.8984035,7.31643,2.965056666666667,1.2147928571428572,1.44865,2.7552733333333332,4.093373333333333,0.9199849999999999,1.893545,0.9357279999999999,1.91673,4.076835,4.021275,3.050325,22.069098333333333,4.94312,3.913265,3.33697,2.18434,2.945255,3.372145,2.3173,5.30736,1.6372060000000002,4.01519,3.3351167420634917,5.992402777777778,1.97768,2.69434,1.972585,3.61119,2.3934366666666667,2.2103,2.1716933333333333,3.266220555555556,4.33055,3.577355,3.98566,4.133355,2.55555,2.433585,3.025755,2.80284,2.9516905555555555,2.296775,1.92258,3.725405,1.2165383333333333,3.792985,4.47809,2.548125,4.738165,4.77499,4.973003333333334,2.15629,2.28163,2.72429,2.830605,4.1292,3.52498,4.737335,0.7029614285714285,3.7016506666666666,2.999595,3.90545,2.3861375,1.793534,4.03198,1.204122222222222,3.06472,4.355915,1.100904,3.685985,3.52527,4.58491,5.763805,2.076405,2.952525,2.55959,3.7133333333333334,2.3272733333333333,2.653122,3.6724333333333337,2.4218366666666666,2.4648600000000003,1.39204,1.9233425,1.9233425,1.9326299999999998,2.1185266666666664,1.7306066666666666,3.29846,3.600225,5.5237,3.307615,1.632495,4.439485,3.749245,3.64745,4.26419,1.97655,1.93853,4.797997499999999,1.87648,4.380781666666667,3.474205,3.61945,2.4712133333333335,3.73576,3.12162,3.08516,3.523055,0.1457569387755102,2.30086,7.68832,1.5218120000000002,3.48252,2.976345,1.0249342857142858,1.0368683333333333,1.9286825,4.154245,2.92425,7.051515,3.29413,3.683705,2.99743,2.703175,3.57563,3.49582,4.00762,3.46065,2.9064533333333333,5.45395,4.09612,4.403265,2.2257366666666667,2.0746825,3.484155,4.36165,2.72479,2.788395,2.176685,2.476555,3.96594,3.76033,2.746985,4.239395,4.695835,2.71397,3.455495,4.113815,3.585385,4.49067,3.58884,2.983855,6.22499,4.51499,5.09665,5.25345,4.426255,5.1077175,4.113465,3.88689,1.378464,6.60415,2.41894,4.756015,4.247485,4.07983,2.92324,2.1619533333333334,2.3372566666666668,2.4647633333333334,0.9358879999999999,3.373466666666667,3.2099666666666664,3.164123333333333,2.2717933333333336,3.742305,4.46035,2.4410966666666667,0.5583066666666666,4.517215,4.69952,4.817445,4.79307,3.558585,4.57802,4.723015,4.837895,1.4035444444444445,0.9625153846153847,2.8589866666666666,5.4202,5.8413,0.496183125,2.963475,2.5975333333333332,3.342585,4.469635,3.8567,1.940705,4.343165,3.600275,4.07865,3.056545,6.3275,4.48738,6.91304,0.6474316666666667,4.124715,0.73514,2.40688,4.0743,3.0114066666666663,1.3103066666666667,2.2903,4.59819,3.587855,4.20991,1.8155700000000001,1.946735,3.051795,4.88944,3.876825,3.752315,1.6960760000000001,1.1609057142857142,6.28845,2.1824825,8.034775,4.298195,3.63924,2.04972,1.595905,4.094555,4.882575,1.7021199999999999,2.347265,2.42722,2.30086,6.742604166666666,3.1796499999999996,2.7958466666666664,3.7623050000000005,3.351145,1.9376833333333332,5.18235,6.8310249999999995,4.45368,5.08265,0.5453399999999999,3.577795,4.07316,4.583774285714286,3.723365,4.137645,3.05756,2.752915,3.344925,3.26267,3.646605166666667,1.86901,5.2222,4.62478,4.96019,3.96341,3.422985,3.2694474999999996,2.3170325,1.359035,1.017545,2.865615,2.494615,1.089895,2.671863333333333,6.15085,5.29305,3.60547,4.6245,16.798527857142858,4.24234,4.506,4.014335,0.7192875,5.021,4.62933,4.4748,5.3196,5.3729,2.744485,3.65347,3.312965,1.4808439999999998,3.222865,4.629435,3.1217733333333335,1.3391199999999999,4.16224,4.783945,3.942005,5.265,4.6952,5.21085,4.42779,2.65773,4.202125,4.318565,2.456055,3.0479833333333333,3.0509500000000003,1.6565858333333332,4.849855,2.727980714285714,1.9819366666666667,4.028765,2.16802,4.318005,4.295495,2.146535,2.553625,4.35718,3.665505,4.566865,4.298295,4.56937,4.850095,3.07572,5.6815,2.5288733333333333,3.406945,3.786995,1.55548,4.73243,1.0522483333333332,4.39784,3.18837,0.9125214285714286,3.809025,2.089115,6.774015,2.353292380952381,2.353292380952381,2.353292380952381,0.7458316666666667,1.0444833333333332,1.773895,3.490435,5.84268,3.4188044444444445,1.83267,2.2876,1.6412000000000002,3.73751,2.370695,0.3816576923076923,1.74753,2.1902925,2.941145,1.794195,2.7443,2.32947,2.1211525,3.964885,2.653303333333333,2.84189,2.851515,1.886055,6.59421,2.105065,4.3024,4.021495,6.0371033333333335,1.6166099999999999,3.67391,3.439555,3.964905,4.69006,2.631965,2.0065425,3.87135,5.823665,1.87932,3.658755,3.1839,1.87782,4.583035,4.468545,2.61649,2.22889,3.68751,5.449882857142858,5.64285,3.16908,2.45959,2.71744,2.907385,3.19532,4.01854,1.28581,2.79655,4.700945,0.8006275,3.779605,4.01072,3.79457,3.2483,2.35773,3.07109,2.01135,4.86735,8.022153333333334,5.1962,3.423615,3.763045,1.00406375,4.667295,2.54034,4.45777,5.5304725,4.477635,4.4384,11.42175,4.80183,3.858,1.5297925,0.6907708333333332,2.83415,3.94998,3.516315,3.677935,2.19356,2.35988,2.3112933333333334,1.1638416666666667,1.1638416666666667,1.9931166666666666,2.3792066666666667,3.6511,2.2872533333333336,3.1724333333333337,3.7815,2.5960566666666667,2.840363333333333,1.43029,2.4507666666666665,2.1395566666666666,1.8786399999999999,1.500345,2.3605633333333333,0.7563766666666667,10.001882083333333,0.7563766666666667,4.0811,2.022555,2.2544833333333334,4.97438,4.30093,4.069905,4.23107,2.21519,2.908386666666667,3.185640666666666,3.4440000000000004,3.4032999999999998,3.229013333333333,2.6968866666666664,3.00366,1.63859,5.236,6.779442666666666,3.31153,3.5612999999999997,2.966953333333333,3.16633,2.6366166666666664,1.25667,3.5066666666666664,3.1840433333333333,3.980525,5.77325,4.348775,2.947173333333333,3.5208333333333335,2.9763033333333335,4.148558888888889,4.31953,2.7154433333333334,4.20083,3.07896,2.92797,4.76665,3.0292066666666666,3.711015,5.3943650000000005,2.96326,2.5777366666666666,1.5739366666666665,1.5137533333333335,5.404566666666667,3.2660416666666667,2.6235166666666667,2.166803333333333,2.3218099999999997,4.6671,3.87719,2.612365,3.214283333333333,3.28219,3.6463,3.7089666666666665,3.6411,3.28802,0.54999875,3.9359333333333333,2.45418,2.58006,3.4878,4.717155,5.22445,5.90975,2.664245,4.220291666666666,1.1573016666666667,2.8455966666666668,2.8455966666666668,4.59999,3.376775,3.80414,3.62356,1.75468,3.191595,3.84058,0.9255014285714286,3.7694615000000002,2.7759634761904763,1.9003263333333333,0.368693,3.48893,3.323055,6.679935,2.97929,5.8146,3.16476,3.82436,3.78395,1.7664229166666667,3.086515,5.1084,3.401225,3.108363333333333,3.2266100000000004,5.9365575,2.1688925,1.05490375,2.06285,1.6627366666666665,5.29974,2.3866566666666666,2.43223,1.5836625,4.85983,3.88656,3.74634,0.557242,4.21534,3.99689,2.6296466666666665,2.397936666666667,2.704026666666667,3.233517777777778,3.753593333333333,1.47801,0.6792894736842104,0.74935,3.8554,4.47109,6.022748333333333,4.39292,5.0533,5.4035,1.3710257142857143,4.0864666666666665,2.2204333333333333,0.99617625,5.0801,6.18675,3.74755,4.87036,4.22006,7.0278133333333335,3.9185666666666665,6.6671499999999995,3.7974,2.5975336111111114,6.2276,10.223344083333334,2.7405066666666666,0.6726099999999999,3.594245,4.05718,2.207165,6.3214,4.074885,3.46536,2.9349866666666666,2.9349866666666666,5.7925,3.313985,4.150475,5.1154,3.8090461904761908,2.474125714285714,1.03822125,5.87455,2.727185,5.54377875,3.8604,4.63097,3.31869,2.0748125,4.40749,5.14935,3.663233333333333,3.825545,4.11713,28.600916666666667,2.0878425,2.65335,2.3065275,1.75805,2.9622166666666665,1.32315,2.9298866666666665,3.03863,3.4004999999999996,3.2781633333333335,0.6980161538461539,3.0325233333333332,4.220755,2.87633,3.13771,3.89212,6.496065,5.231,5.00265,4.072075,4.210641666666667,4.323105,3.7027,1.695045,0.9882833333333334,1.3952200000000001,3.07872,1.5278,3.478733333333333,2.4704633333333335,2.3508133333333334,1.7792533333333334,2.739555,2.098405,1.7676833333333333,2.967975,4.225405,3.659135,4.20299,1.397022,4.273033333333333,2.56196,3.726555,2.2822566666666666,2.566495,3.097855,1.4659933333333333,3.892985,6.814626666666666,3.076295,3.729995,4.035365,2.502125,3.2200225,3.7787,4.09972,4.54762,0.3154266473616474,0.3154266473616474,5.0592,5.139,4.31867,2.97548,5.33005,4.28892,0.7051284615384615,4.414115,4.610335,3.718285,6.54825,4.76808,7.416,14.409791666666667,12.740575897435896,4.3747,4.44251,2.6024233333333333,0.5740792307692307,2.368186666666667,5.3549,1.2691066666666666,4.37507,3.6608,2.7524866666666665,2.0818233333333334,1.90137,4.77674,4.32473,9.444010714285714,5.2123,4.0457,7.211892045454546,3.489435,3.103673333333333,1.470775,5.4457241666666665,1.9601575,2.4501166666666667,2.7898333333333336,0.30254375,2.879335,3.413425,4.847930833333333,0.7859320000000001,1.4418183333333332,4.04842,0.5950230000000001,0.5950230000000001,2.833029166666667,3.0915533333333336,3.343033333333333,5.39335,4.44796,5.58165,3.86244,4.24894,3.007395,3.167206666666667,2.6960833333333336,0.8416250000000001,3.124886666666667,2.94304,3.18931,7.070780000000001,3.058965,8.461775,2.848825,4.815845,3.025605,2.3365725,2.934175,2.96615,1.769435,2.345195,1.8512175,3.728265,2.61605,3.876905,2.844385,4.128471666666666,4.128471666666666,2.7401899999999997,2.7401899999999997,8.9507095,2.44643,0.827629,2.6562333333333332,2.51026,2.5208666666666666,3.876905,2.04668,1.9190619999999998,1.5551679999999999,3.899355,4.170685,1.745315,4.29626,4.07949,6.093207222222222,6.480758333333333,2.2876733333333332,3.72625,7.22029,4.28802,3.175155,2.66515,3.553775,3.8600821212121215,4.434285,5.338635,7.555300666666667,3.53918,3.00345,1.1524683333333334,4.50587,3.965238666666667,3.786035,3.9069683333333334,4.3241,2.46817,2.4088333333333334,7.21769,2.934875,1.293834,5.07619,3.88143,2.93373,5.497,2.93373,2.9238,3.6502,4.56373,1.0616542857142857,3.790117777777778,4.51182,3.83232,1.2670916666666667,1.670485,4.50458,3.78562,2.54211,6.411845,4.25284,3.33508,4.21364,4.2659,1.3108,4.02632,2.6339,3.745015,3.737635,3.6987,4.745615,3.072395,4.85707,5.1277,2.0563103333333332,1.8973975,3.7251666666666665,3.64,3.4916,2.975023333333333,3.5182,2.9158333333333335,4.87262,3.271355,3.45287,2.962585,1.8144200000000001,3.7420333333333335,1.8135700000000001,3.084045,3.15086,2.93269,0.6921125,2.4689825,1.8225166666666668,3.31567,1.9837520000000002,3.4144430000000003,3.968715,1.351264,3.1147275,4.436295,0.845782,1.22685,3.45575,3.87357,3.581295,1.987345,1.65169,3.57365,2.475671666666667,1.69768,3.123255,1.879355,1.208554,1.38232,6.5028950000000005,3.120225,2.11493,2.45496,2.4364975,3.915675,0.88017875,0.336805,0.7645642857142858,5.02285,1.94061,4.68895,2.1443925,1.8807455714285715,3.101071,1.2203254285714284,1.0681615714285715,0.727478,0.5782614285714286,2.725555,6.7948,3.162025,3.80999,0.3365992857142857,3.673525,18.263329,3.09236,7.725610822261071,1.09975375,1.09975375,1.09975375,1.09975375,5.408073333333333,3.89881,3.68514,2.1276033333333335,2.877685,3.79579,5.2337,3.832485,3.506365,4.4834,4.17845,3.739405,3.7810593333333333,3.99543,5.0782,4.171355,4.89195,3.507045,4.333995,2.8025533333333335,3.75826,3.370155,3.73973,3.89638,4.175355,3.0419866666666664,2.5579,2.5231833333333333,3.942795,1.2039985714285715,3.91197,2.7904400000000003,3.4468693333333333,4.29982,4.03821,3.119705,2.962765,4.36134,4.114575,3.304655,5.02325,4.96937,3.33228,4.34416,1.692198,1.692198,1.9880925,4.79165,3.558995,5.694107,5.3151,3.5662749999999996,6.4001,4.87006,2.243155,9.195755,4.91116,6.0875375,4.59181,2.8695533333333336,3.193975,0.25474620689655175,0.8126075,3.5624173333333333,3.536,5.12655,3.1033166666666667,5.4416416666666665,4.783005,0.5763635714285714,2.786885,0.501943,1.7153359523809524,3.5249,2.676715,4.097905,3.74086,3.318995,3.483985,3.48144,3.62521,3.308375,3.691245,3.773405,2.597695,1.7153359523809524,2.7738,2.131185,3.66955,2.35355,3.804245,3.65557,1.7340325,4.474085,4.645145,1.2852116666666666,5.7962,4.914765,4.29356,2.857056666666667,3.1778133333333334,4.371785,1.9591333333333332,1.417456,2.39189,2.59911,2.6287533333333335,1.9988966666666668,5.0383,3.389825,5.306233333333333,4.119835714285714,4.87387,4.02915,1.765148,5.44535,4.454275,5.2328,4.262325,7.211885,1.596755,4.868945,4.06972,3.15866,1.9164125,1.7234833333333333,3.96117,4.513505,2.5407533333333334,2.5694791666666665,3.429865,3.429865,2.598666666666667,2.7989833333333336,3.326865,4.00181,3.58794,0.8515076923076923,3.28003,4.38586,4.644670555555556,2.841105,3.04094,1.7869975,2.912295,3.580825,2.22008,4.67114,4.042185,4.67029,1.6774966666666666,0.9841454545454545,6.29689,3.66172,3.3538333333333337,3.2859533333333335,1.95417,30.061529309523813,3.951035,3.33406,5.45945,4.526325,0.8863,7.162100000000001,2.25726,5.5825,1.6486716666666668,4.815885,5.544008333333333,3.762625,3.058515,2.1716425,3.8682,4.90266,2.093145,2.76568,4.042685,2.889545,2.572515,6.0241,2.076115,5.0711,1.12114875,4.599795,3.59743,4.08522,4.683295,2.97631,2.253766666666667,4.128185,4.81598,3.7358625,3.7358625,6.12075,1.6837225,4.23882,6.854783333333334,3.357285,4.247265,3.09793,4.66127,3.595515,4.20669,1.42651,2.334065,4.31351,4.294015,5.4303,4.445945,2.69476,8.962236666666666,2.618675,3.93546,1.7077428571428572,3.612995,2.1786366666666668,2.7058433333333336,2.4133699999999996,1.34534,2.518403333333333,1.1864642857142855,1.1164028571428573,1.1164028571428573,1.1164028571428573,1.8055933333333334,0.57097,3.914235,1.17981,2.39934,0.9218133333333333,1.77328,2.6658733333333333,2.3056733333333335,0.77012375,1.8788133333333334,1.8646233333333333,2.3614333333333333,1.6643640000000002,1.6643640000000002,1.7465833333333334,2.1249833333333332,1.10605,1.9900333333333335,1.5399266666666669,1.2002066666666666,2.040105,2.017765,6.0269,1.64513,5.19375,17.921071,6.460955,3.430635,3.5155033333333336,3.262363333333333,2.8802299999999996,2.705303333333333,2.7146833333333333,0.6687691666666667,0.985671,0.985671,0.65255,2.2898133333333335,4.349975,5.60685,1.519348,5.227,3.72274,2.514115,4.08305,4.674085,4.11528,4.537615,3.6362666666666663,3.35737,3.47614,5.71165,3.2293633333333336,4.494535,0.517829,0.517829,2.305305,3.026315,4.975045,3.533645,4.18262,4.70472,7.794922,7.3785,3.648285,2.30089,4.06402,3.384535,2.5236433333333332,2.43572,3.378435,1.3597533333333331,3.26352,2.452805,1.6111225,3.451366666666667,4.07406,2.1550675,5.338635,1.6495275,3.6654,3.572575,0.9907357142857143,3.4548666666666663,2.9872633333333334,4.82703,1.1467433333333334,1.763315,2.46773,2.1433925,1.7151725,2.4765125,2.2244275,1.961625,4.38648,4.222785,2.50934,1.81585,1.5039766666666667,3.6582000000000003,1.9819866666666668,2.633225,4.339085,7.17985,2.163125833333333,3.07772,3.58921,3.8451,2.385455,5.14225,4.34116,3.08465,1.4703625,4.37736,2.21866,2.77706,2.55105,3.6334,5.2465,5.00965,2.1810533333333333,2.72535,2.7219833333333336,3.5180000000000002,1.8714333333333333,1.46485,5.48975,3.27074,2.322532727272727,3.03464,2.996446666666667,2.33988,3.137783333333333,3.2111966666666665,3.5665999999999998,5.23095,4.05012,2.9746,4.97051,3.46643,2.383755,3.51983,3.90773,3.5886,5.8260705,1.8856439999999999,4.039885,2.478265,4.86659,3.75639,0.56043,2.318945,2.23226,3.427225,2.85948,2.176875,2.755425,0.578917,2.77172,4.78421,2.3040875,4.494215,2.4017500000000003,4.216245,2.0424,4.50305,4.08189,1.820884,2.916525,6.660465,4.060735,4.13656,4.737895,7.138888636363637,4.070855,4.476905,2.1595225,4.127635,2.89876,1.8884999999999998,1.9542,3.890833333333333,1.0135742857142858,2.2662066666666667,2.41191,2.6865066666666664,3.749233333333333,1.793534,3.314145,1.9145633333333334,4.624915,5.2218824999999995,1.04931375,1.827,2.58695,2.863793333333333,1.9924533333333334,1.0993783333333333,5.820101666666667,2.27668,2.7055233333333333,2.7932799999999998,2.794503333333333,3.0541666666666667,3.19168,2.2391166666666664,3.288933333333333,2.5104233333333332,4.244655,3.825215,4.0992,3.3322599999999998,3.2990366666666664,0.750957,1.7449566666666667,2.2540575,2.0365066666666665,2.658326666666667,1.136975,2.7359333333333336,2.9952199999999998,3.307825,2.0804066666666667,3.42086,3.30169,5.85565,3.179155,0.6168033333333334,2.12548,2.7856366666666665,3.361166666666667,0.7529518181818182,2.774376666666667,3.398564,3.086983333333333,2.822203333333333,3.3543483333333333,3.79659,3.883266666666667,3.0965433333333334,2.0340275,5.62005,4.950195,4.93099,5.62745,5.6093,1.8045799999999999,3.410235,3.6810666666666667,3.283986666666667,2.965246666666667,2.6581333333333332,4.242,3.800933333333333,3.02204,14.19654,4.37949,1.1325100000000001,2.667643333333333,1.452072,3.090426666666667,3.2004133333333336,2.2543233333333332,5.745358333333334,6.401970833333333,2.0687,0.8483370000000001,4.187805,3.4346,3.05342,5.0035,5.29655,5.8356,4.59902,3.490275,2.015985,6.665347499999999,1.1524683333333334,6.4827775,4.64152,2.2882866666666666,3.619255,6.911613333333333,5.8491,2.2736,1.4369983333333334,2.22948,6.368343333333334,1.4646125,2.8760433333333335,2.626195,4.310390277777778,5.7587,4.372795,6.34955,3.65779,5.01805,3.839785,8.22922,4.99862,5.77915,2.311845,2.587075,11.216303333333332,3.615205,2.454145,2.5134666666666665,1.6435000000000002,2.393056666666667,3.0390333333333337,0.689065,1.001802,1.0973185714285714,3.36484,7.012203333333334,2.9212153333333335,1.3521933333333334,4.79886,3.552525,0.575519,4.303545,3.396275,4.442935,3.557965,3.377535,2.7242566666666668,4.20873,10.13954,1.821815,4.0640525,4.08389,4.279875,3.80259,0.8657499999999999,3.6746666666666665,3.9013666666666666,1.69543,2.4955666666666665,2.3722666666666665,2.64034,2.6632966666666666,2.2311033333333334,2.30077,6.133177857142858,4.58562,3.919255,4.659278333333333,1.7194233333333333,2.41635,4.87639,4.482775,5.1782,4.318435,4.772185,4.37242,1.692198,3.79487,7.426966666666667,1.2613816666666666,1.6213833333333334,2.4030566666666666,2.49233,2.78,4.856034416666667,0.74935,2.398105,3.37538,5.7378,4.472285,2.2997033333333334,2.9138800000000002,1.902245,0.564865625,2.582075,2.898395,7.763055,4.353715,4.16545,0.9600569999999999,4.621133333333334,9.278467416666667,11.102070000000001,3.272415,1.1766475,3.604545,3.360445,2.872833333333333,5.31381,5.09695,3.736815,1.9023175,3.7177666666666664,2.28117,2.5540033333333336,0.7889227272727273,0.4016473333333333,2.40112,3.40456,1.907303,3.45436,3.095273333333333,3.56153,5.0178,1.4994640000000001,2.8800066666666666,2.3152925,2.3152925,2.209975,2.954575,4.366535,2.6621466666666667,2.5376733333333332,3.3283,3.6149,4.453675,4.20037,4.278995,4.147965,4.06708,3.937405,6.6202,7.828352499999999,1.8896175,2.27121,2.4472833333333335,0.92582,0.7682866666666667,3.918935,2.185975,5.41265,2.929133333333333,3.1522900000000003,1.8483440000000002,1.5614925,3.583865,4.24064,4.29323,2.0035166666666666,1.3269033333333333,2.6450299999999998,2.10868,2.6002966666666665,1.1001257142857142,1.1001257142857142,2.805073333333333,4.6795,3.005515,3.08828,3.404835,1.91501,18.682377545454546,3.93667,5.5472875,4.335125,3.816155,3.8765,3.32145,5.3674,5.8543575,0.9353416666666666,0.9353416666666666,0.9353416666666666,2.7615933333333333,1.6726285714285714,3.5787999999999998,4.2455,4.10559,3.410125,4.5763,4.63604,1.0116755555555554,2.3611999999999997,2.58392,5.902219,3.220519,3.982424,4.59567,1.87037,2.0247800000000002,2.3832133333333334,0.51931875,0.83177,1.90747,2.0409,2.814915,12.95025,2.62783,5.29435,0.7834071428571429,9.298745,5.93495,3.823165,4.010135,2.54115,5.5778,2.54115,2.79478,4.05525,3.88429,3.51542,4.1886,4.34061,3.37097,5.69465,6.767182,1.7235333333333334,2.5316,2.88595,26.201210361647362,1.505818,6.35275,4.037418000000001,3.95026,4.727315,4.856425,2.835035,2.78825,2.52697,6.38435,7.0205,4.811525,4.636365,4.233235,1.9231475,1.891785,4.165015,0.401,0.401,0.401,0.401,4.228565,3.180063333333333,0.95858,1.8626699999999998,1.1799666666666666,4.44633,2.5027733333333333,2.27525,7.109541666666667,3.0715833333333333,0.1800489655172414,20.6370165,4.592201666666667,1.7910879999999998,1.3411742857142857,2.14486,1.9633859999999999,2.3576825,4.71486,3.03061,3.7622,4.174835,2.2702266666666664,7.205965,2.780625,1.978855,3.51071,5.9508,8.38036,4.482285,0.2887073170731707,3.617725,4.32733,2.9254366666666667,1.9923125,2.814553333333333,1.6139666666666665,1.6139666666666665,4.098215,5.954644999999999,12.135721666666667,9.18675,0.6758666666666666,2.5162,3.794795,3.272725,4.75133,3.751995,1.8775939999999998,1.8775939999999998,3.40405,3.94066,3.00825,3.64458,4.901715,5.8213,5.61305,2.1406400000000003,4.848425,4.35668,2.60292,3.0245200000000003,3.30649,4.752145,4.26687,5.1256,4.206465,3.68653,3.43462,4.30698,3.92283,5.5408,2.5829133333333334,3.396266666666667,1.0519560000000001,4.097035,4.47148,3.650465,1.79689,1.7959466666666666,3.3666,2.76403,2.1595999999999997,4.202645,1.6398483333333334,2.97195,3.32507,2.5143666666666666,2.210636666666667,1.6585966666666667,4.291533333333333,3.2986966666666664,3.7622666666666666,4.41357,2.129086666666667,2.7114966666666667,2.50192,6.2973,2.31506,41.51725366666667,2.647900909090909,2.647900909090909,2.4907166666666667,2.83835,2.1999166666666667,1.6948133333333333,3.11452,1.8921666666666666,0.7496053846153846,4.921095,7.42018,4.203095,3.99541,5.4517,1.9249666666666665,4.106905,1.799146,5.68805,4.888885,5.9566,4.084165,1.695045,4.188945,4.640335,4.74002,3.941125,5.36045,4.073705,3.4992,2.7581233333333333,2.055275,1.85743,4.12876,2.1291866666666666,3.8082925000000003,3.8082925000000003,2.2635833333333335,1.5811533333333332,2.211246666666667,2.45147,2.5280533333333333,5.1826,2.5511233333333334,1.1958849999999999,1.1958849999999999,3.1167866666666666,1.9539966666666666,2.665576666666667,2.6625,2.4723366666666666,2.9471399999999996,2.6292766666666667,2.27785825,3.084021107142857,1.6094091071428571,0.8061628571428571,59.690998025793654,2.313236,2.8549333333333333,2.149446,0.907652,3.3654140000000003,1.609804,1.609804,2.99141,3.2048366666666666,0.80324625,2.6994966666666667,5.20875,3.4860666666666664,2.2605066666666667,2.8916066666666667,2.078066666666667,2.427604,0.287015,2.7791633333333334,0.691144,2.5284400000000002,1.266934,1.266934,2.3885733333333334,1.395828,2.162996666666667,1.246414,3.4721666666666664,1.246414,2.112303333333333,2.28028,2.965393333333333,1.284416,1.284416,2.976406666666667,1.4223566666666667,2.5813866666666665,2.22023,4.622295,4.115075,12.793846583333334,7.003215,3.17604,2.59376,4.44854,5.11565,5.59095,2.8890066666666665,4.61334,3.85594,2.46148,3.80149,3.2858066666666663,2.8671900000000003,4.5016,2.2229566666666667,1.0200371428571429,3.9909816666666664,2.8950766666666667,2.948505,0.8110571428571428,2.611675,3.64486,4.03835,4.36934,6.69515,2.7284733333333335,1.9069559999999999,3.86119,4.586105,2.380175,2.433745833333333,2.04636,2.215456666666667,0.9569300000000001,5.21475,4.585425,3.687055,3.79334,3.319733333333333,4.827565,5.201,3.205076666666667,1.7295633333333333,0.5377746666666667,14.3380825,0.5133927272727272,0.5133927272727272,0.5133927272727272,3.1293733333333336,3.7802666666666664,0.5133927272727272,7.28889,4.43126,0.729363,0.729363,3.2094400000000003,3.22509,3.01476,4.80765,4.828165,4.259853,2.2465574999999998,4.717330666666667,3.24289,3.368796488095238,4.83221,2.86118975,2.2835375,2.2621325,2.576325,1.6423375,3.4062858333333335,3.0573333333333337,2.336095,2.10338,2.106395,1.8311333333333335,1.609165,2.6557,1.0393144444444444,2.4467575,0.589875,5.0283,1.7522725,0.8106108333333334,2.4664175,7.944185000000001,2.578185,2.038378,3.325595,7.35587,2.47724,4.264575,3.000305,5.99403,3.19804,3.88953,3.781805,4.04829,3.017163333333333,4.493461666666667,1.0949342857142856,4.171405,2.4838366666666665,2.51726,2.54355,2.429055,2.2675,1.2947125,5.51415,0.9291272727272727,4.89309,5.52115,4.9056,5.9855,3.662933333333333,2.38469,2.1413,2.846463333333333,3.08802,2.481535,3.6961999999999997,2.788,3.431005,1.670768,40.42211694444445,4.737975,2.40266,2.8780366666666666,2.9757833333333337,1.54115,5.607718333333334,4.645915,2.4002933333333334,3.627133333333333,2.2926233333333332,1.6926025,5.32235,0.7827000000000001,4.355764285714286,1.2804785714285714,3.3678000000000003,3.21443,2.872673333333333,1.40675,4.680842666666667,1.7237079999999998,1.7237079999999998,2.5058700000000003,2.9749283333333336,3.3938,3.6823333333333337,1.4123400000000002,3.058566666666667,2.712963333333333,6.459693166666667,3.01703,3.765350833333333,1.3235433333333333,1.41267,2.7786933333333335,0.9183479999999999,5.249080000000001,3.769066666666667,2.944176666666667,3.5014000000000003,2.928036666666667,2.7958933333333333,2.9912566666666667,1.7218333333333333,2.4364975,2.6057099999999997,3.6400333333333332,2.380743333333333,3.5132,2.9551200000000004,0.5844633333333333,9.698468974358974,2.81261,5.41435,5.28935,2.7866933333333335,2.9611133333333335,1.3304875,2.282,2.16452,1.3304875,4.356795,0.4567675,0.4567675,1.217605,1.217605,0.79289,0.79289,2.582015,3.02342,2.4981,1.59425,1.767735,3.74012,3.030085,4.603105,5.2163,1.958126,4.259225,2.42181,4.741407692307693,1.62536,1.62536,1.86415,1.8275099999999997,3.6636675,2.0254175,4.429125,1.44676,2.4130675,0.6127307692307692,1.0743085714285714,2.1926275,2.0945525,2.141335,1.3281925,4.437855,4.30118,2.42639,2.78613,1.3557866666666667,0.6912933333333333,2.39846,3.65371,2.544356666666667,4.875365,5.46295,4.70793,3.947125,6.65621,1.59387,5.878855,1.76606,4.89129,4.93504,5.757339,3.6512333333333333,2.381055,1.7426075,2.0014,2.0014,2.43761,2.43761,4.317015,5.3547,0.91867,4.41563,2.860285,3.379755,2.5767599999999997,1.401855,2.884733333333333,4.295765,4.042765,1.9183540000000001,6.5031,5.51655,1.9400033333333333,1.2643,4.00945,4.000216666666667,3.53897,3.6178,4.0391,0.6944942857142857,3.7338,3.2334766666666668,2.68207,2.93745,2.31338,3.6662666666666666,1.5489857142857144,1.5489857142857144,1.5489857142857144,3.2422299999999997,3.0592133333333336,3.3022633333333338,3.4508320833333332,2.318315,1.2375900000000002,3.121506666666667,3.2843,1.3241057142857142,2.896316666666667,2.8259966666666667,1.1455985714285715,2.7056633333333333,2.9565300000000003,2.9674533333333333,2.40407,2.52916,2.0120625,2.936723333333333,4.827748,4.40583,0.9539690000000001,1.490784,0.567077,3.5787,8.850985,2.944546666666667,3.21827,3.113156666666667,4.47853,1.98829,7.55784,6.562786666666666,2.6948266666666663,2.4801668571428572,3.933405,4.50418,1.596786,1.191504,1.30935,2.096575,10.60146,2.451703333333333,2.944623333333333,2.9774846666666663,4.34521,2.122123333333333,1.224,4.434535,1.0810516666666665,3.1745857692307693,4.22873,3.37523,3.09116,3.319715,4.96441,1.1844266666666667,2.0029025,1.839592,1.839592,3.856195,5.3497,7.093109999999999,3.873155,3.41365,4.939615,1.7676225,2.3711025,4.71878,4.138135,3.825965,1.5096749999999999,2.9044933333333334,3.56945,4.068835,2.4974775,4.177475,3.92951,3.740745,4.118265,4.074205,3.946765,5.68635,3.3602666666666665,2.3287299999999997,4.3832,3.021275,3.90133,2.05417,2.477485,2.548815,6.0442,2.54516,3.2061565340909093,1.726255,2.464095,3.292625,2.1521625,2.108055,0.77648,0.77648,1.774045,3.580729393939394,4.036985,2.9552099999999997,3.943965,3.4066875000000003,2.537896857142857,0.9741725,2.83878,1.662095,4.48033,4.23023,0.9071479166666667,1.8393925,3.904235,2.9526874999999997,1.5912475,1.6474399999999998,4.963194285714287,0.9302316666666667,2.8498,3.286935,2.789975,2.49424,2.765961,2.01507,0.98621,2.90783,2.980855,3.47188,1.39068,1.4698533333333332,1.852265,4.371425,2.08788,4.184095,4.748445,4.226715,6.0755,5.44045,4.10914,6.221204999999999,3.965871904761905,0.8032581818181818,2.83649,3.842815,5.15185,0.5095090909090909,0.868604,3.05009,4.17651,4.54434,4.33227,3.261828214285714,2.70466,4.44879,1.663976,2.561425,4.30428,4.22428,3.48795,2.898935,4.117425,4.75787,2.920975,5.2253799999999995,0.924283,3.096025,2.46832,4.3805,4.50246,4.70382,2.20682,2.567495,2.876295,2.051536666666667,4.771105,3.53027,1.4501857142857144,2.79923,4.04621,1.4466480000000002,5.94616,2.09226,2.66461,13.924495970535313,2.96592,1.4325066666666666,1.5301466666666668,2.6368966666666664,5.575073333333333,1.6960760000000001,3.974428333333333,0.7465723076923076,3.177633333333333,4.09715,7.55361,2.6132433333333336,3.0296333333333334,3.0296333333333334,5.03315,4.27248,4.218015,3.334375,4.983505,5.312,2.45527,3.3445,4.73549,1.2446383333333333,2.7713133333333335,4.285185,3.48644,4.292025,2.3952233333333335,3.53592,3.90067,6.771713333333334,6.430285,0.779809,3.70459,3.186095,3.5729666666666664,4.308445,3.97591,3.915085,1.777392,4.920605,2.37727,2.855525,4.257555,4.543575,4.77114,0.9004060714285714,2.5138766666666665,8.280360333333334,1.559305,2.113701948051948,2.2839875,3.855555,3.6072,3.34226,0.7280972727272726,2.52495,1.6909125,2.189475,4.573045,5.534402666666667,2.921016,9.315715,2.3403066666666668,2.8485066666666667,1.09514,4.92772,5.22505,2.11895,5.797421666666667,2.910995,3.29133,5.4586,4.08632,4.995925,2.157095,1.5965,1.5965,2.74593,3.264875,4.696463333333334,1.46697,5.962008333333333,1.36995,3.60923,1.4558900000000001,8.710930833333332,5.02,2.735455,4.373695,4.22415,4.10722,1.1464633333333334,1.99059,3.5262666666666664,3.0999199999999996,3.3905333333333334,4.037833333333333,3.83093,2.837215,3.13055,3.396575,1.59943,2.5502966666666667,1.9582233333333334,2.91906,1.9523733333333333,5.40845,3.2786033333333333,1.8732233333333335,2.74989,3.361415,3.798145,6.34725,6.02625,3.11423,3.61828,3.70188,3.042095,2.91708,1.2623466666666667,1.009986,6.902675,2.77794,5.5889,5.12225,6.38975,2.885275,3.1066599999999998,6.456,2.56289,0.4342733333333333,5.48375,3.19965,3.656095,3.3895666666666666,1.4841714285714287,4.760775,1.0934620000000002,4.617815,0.8997775,1.2119333333333333,2.727403333333333,2.435356666666667,2.578113142857143,3.65562,4.98811,5.824164166666666,5.824164166666666,4.7073025,4.7073025,4.792785,3.1410733333333334,4.422615,1.103935,5.9932,4.013505,3.6092,4.0117,3.779885,4.92642,1.9558525,5.2306,3.2356920000000002,2.82168,4.27347,2.55909,4.884855,5.12535,3.605795,3.439575,4.769805,3.983455,5.27875,3.219725,3.491433333333333,6.4694,4.085605,2.93521,6.302573333333333,1.5495133333333333,2.2757775,5.02785,4.445915,5.5073,3.927125,1.9776775,1.9776775,13.54227930952381,10.9467,5.3901,3.703775,2.9381364102564103,4.731955,4.450055,2.5617366666666666,3.4077333333333333,2.79542,3.7114666666666665,3.5127333333333333,5.14095,1.981555,7.940965,2.43639,2.2957075,5.38225,2.380315,4.70468,4.249685,4.720315,0.8556288888888889,3.47108,3.890135,0.838262,2.78134,3.9060825,1.44337,2.07899,3.0618366666666668,2.5985766666666668,2.5098,3.345133333333333,2.3960833333333333,0.44114642857142855,2.799416666666667,2.6009233333333333,2.86842,3.2415266666666667,1.371684,2.8554933333333334,7.28919,4.47027,2.35024,2.04968,2.597933333333333,3.82999,2.39766,3.742404,18.75095,5.3952,3.2762210000000005,5.17765,3.88062,5.41726,1.4937500000000001,5.82805,1.3831216666666668,4.198605,4.60245,5.28135,4.98421,0.9833683684210526,5.8881,2.47231,4.58285,2.75135,4.50215,4.2974,2.82048,2.1786066666666666,1.496232,1.9161325,4.41131,4.741425,2.30306,1.632395,3.1033633333333337,4.273673333333334,2.978806666666667,6.23795,1.9715875,4.08197,4.344395,3.735105,5.1506,2.74288,3.89786,4.46835,3.894225,2.727513333333333,2.727513333333333,5.78664,1.9289399999999999,2.4176466666666667,3.95559,1.747674,7.5464,3.610335,4.57698,4.3838333333333335,4.26179,1.9700520000000001,4.537545,5.0833,3.664875,2.2183225,3.528365,3.39495,1.01949,1.220165,1.23381,0.6902716666666667,1.5689966666666668,0.92346,4.584375,1.0616366666666666,2.915846666666667,1.5846033333333331,1.5291375,0.958565,1.9769375,2.49812,1.5941475,3.1758566666666668,2.6911633333333334,4.992701666666667,1.575335,2.495875,3.5911333333333335,3.3363666666666667,2.353543333333333,4.527027500000001,4.64903,5.100395,20.094950666666666,2.448726666666667,2.2631475,0.6292630769230769,0.636725,4.651133333333333,1.9793220000000002,4.173305,5.1094,7.064030333333333,4.211015,3.54571,4.0825,3.067633333333333,3.6569333333333334,3.6034333333333333,3.361133333333333,3.5971666666666664,6.2255,3.65718,0.9467610000000001,1.133765,4.98311,3.0490866666666663,2.543696666666667,2.12712,2.23035,5.663,5.4908,2.0348425,1.8570900000000001,3.354805,4.929715,9.00365,5.41405125,3.978515,4.19258,5.26665,4.901765,4.34979,4.675965,4.01711,5.4975,1.503145,5.57095,1.5489714285714287,5.45025,0.7607866666666666,4.950235,5.63445,6.1242,6.17615,4.50481,5.93895,5.7626,6.5020775,1.8919666666666668,1.6231142857142857,5.5884,3.39654,6.38628,5.12205,5.290066666666666,5.34205,6.11235,1.3021314285714285,4.370575,5.5965,4.0788,4.64888,5.6484,2.655425,4.082695,3.840165,4.55811,1.0238333333333334,1.5558166666666666,1.3184960000000001,4.76809,4.099885,3.461205,2.3313866666666665,3.0125266666666666,1.8037233333333333,2.23632,0.37355999999999995,3.27286,1.57421,2.195675,3.0957166666666667,2.1068966666666666,3.163266666666667,2.5974,2.5007,10.363640666666667,3.7812666666666668,1.7560711538461538,3.75013,0.8555827272727273,4.34964875,1.1608775,1.613255,1.90935,1.03941875,5.620631333333334,1.1443211111111111,1.1443211111111111,1.1443211111111111,3.062253333333333,1.788116,5.48455,3.07915,1.4062025,1.5505325,2.2079175,1.361575,1.671472,5.282553333333333,0.8205077777777778,4.18553,4.08939,3.2890366666666666,1.0212299999999999,2.211199,1.81573,1.81573,1.521505,3.7784949999999995,4.469475,5.0888,5.4572,4.225295,5.0322,2.99011,2.0620775,2.69766,5.5535,3.362575,4.837915,1.04486625,3.9923281250000002,5.4706,1.91019,3.930245,2.9351299999999996,4.45899,4.68936,2.53998,6.5915,6.00655,5.19615,4.94033,4.337435,3.305245,8.48388,4.122985,6.317781666666667,3.36761,2.757293333333333,5.2252,2.7113766666666668,4.70474,4.570695,2.78954,3.304495,4.00347,1.6874433333333334,10.690562499999999,5.23735,3.30382,15.553279662698412,4.11929,1.7711933333333334,2.833676666666667,2.156915,2.223395,3.35547,2.5510909027777773,2.802,2.626075,2.921095,4.18566,5.86062,1.2563566666666668,2.147445,4.412405,4.539175,4.433655,2.1480475,0.640928,5.0416,4.310265,2.37539,1.21325,4.84971,4.83502,0.9075811111111111,3.715675,12.368255833333333,1.289405,0.40302000000000004,3.6950333333333334,4.363668333333333,0.9824977777777778,4.235645,4.06364,5.177983333333334,1.2391133333333333,3.64714,4.15171,3.3278,4.082855,4.118135,4.72148,8.53359,3.244915,3.93759,5.45505,15.9678725,3.5224599999999997,2.78165,1.136865,2.149545,1.21652,1.8343224999999999,1.2911525,2.0160625,1.7087125,2.345185,2.5078,2.683125,2.009085,5.0094,3.724115,5.37125,3.182265,5.4731033333333325,2.666443333333333,5.1749,3.3388000000000004,1.23134,3.838535,2.0747225,2.762774,4.577185,4.653515,4.850815,3.246095,3.0791233333333334,3.4251666666666662,2.4581733333333333,4.310395,3.82617,2.280965,2.01448,3.6015333333333337,4.349385,3.685095,2.4496566666666664,11.935026666666666,0.6343753333333333,2.66973,4.600525,2.636393,1.068266,2.900155,7.854616666666667,7.525385,4.68773,3.96855,3.759615,1.9527325,2.380725,2.7399713333333335,1.9711033333333334,3.7522933333333333,6.5332,4.583715,0.52073,6.2606,3.5386,3.3250933333333332,3.6954333333333333,6.45975,8.5872235,4.0486635,1.042305,2.22992,2.26362,3.76157,2.56475,4.04512,4.386215,3.5043333333333333,2.68214,3.832355,4.20501,3.77359,4.099633333333333,1.79026,4.21384,5.03695,5.4819,3.6514666666666664,1.592175,2.2368799999999998,29.439200871794874,1.40679,1.40679,2.4082433333333335,4.359222666666667,3.704215,4.480455,2.814445,3.17901,4.237665,3.0946166666666666,4.285245,3.0946166666666666,3.492295,1.8900133333333333,1.5948033333333334,5.88315,2.59845,4.97079,3.377875,2.59744,6.773166666666667,1.9934133333333335,4.99269,5.07865,3.65687,3.396775,4.77455,1.9574000000000003,4.94593,3.6358525,6.85946,5.200549166666667,2.83845,4.038805,4.547375,2.16999,2.9428733333333335,3.8674666666666666,0.4013185714285714,3.1496933333333335,10.098343333333332,4.201535,4.05304,5.3901,3.2783366666666667,3.229245,1.3320014285714286,4.24818,5.5288,3.27241,2.38116,4.761705,3.767945,4.46571,4.52043,2.6003,2.6003,4.20289,2.893755,2.64623,1.751145,4.767615,4.110485,1.1145157142857143,3.613605,4.467205,2.77847,7.017362500000001,7.93224,1.481314,4.27336,4.577745,6.598948,0.679562,7.457116666666666,3.493545,0.6059281818181819,5.36595,5.2531,5.5526,4.333625,5.2363,4.620475,5.0041,3.846055,3.998395,4.647915,4.500655,5.57475,5.18895,3.966855,2.821015,4.58691,3.009715,0.810075,4.24837,2.477315,1.660315,3.90168,4.22231,5.57175,1.0230285714285714,4.9668399999999995,2.97965,2.7346333333333335,1.954495,1.2312666666666667,12.090744166666667,2.6142833333333333,3.140563333333333,1.8915033333333333,3.8078085714285717,5.97696,6.551493333333333,2.6800866666666665,1.8788533333333335,2.23416,2.23416,2.23416,1.41091,3.707765,3.806425,3.06169,4.566335,8.225565,4.191675,1.225864,2.30042,3.100795,3.31252,1.7010079999999999,4.66687,2.82496,1.3963433333333333,3.7855000000000003,7.046314285714286,6.5795375,4.61676,4.05066,3.1314100000000002,5.3539,4.49994,5.4024,1.8960175,1.8960175,3.78459,3.80143,2.7127333333333334,2.7127333333333334,3.89392,1.240052857142857,4.97496,3.33252,4.267925,3.921855,3.97739,3.1263533333333338,1.005877142857143,4.35034,4.64714,4.190885,4.637245,4.87459,4.786675,4.33195,2.0462225,1.4722025,3.34986,3.95244,3.24907,4.489045,2.117105,2.9088425,4.85318,2.8003,4.941055,7.46299,2.3219908333333334,2.8154633333333337,4.321892380952381,4.784525,1.616925,2.147935,1.0552949999999999,2.147935,1.7108466666666666,1.7108466666666666,1.51227,4.690495,3.20215,3.894805,2.37459,3.764975,1.5749016666666666,5.49615,3.050825,1.7275225,2.8657500000000002,3.412,3.791195,6.101017,4.74915,1.156954,0.8418683333333333,3.586405,6.648085,2.398946666666667,3.635525,3.67224,3.67224,2.29881,3.443725,3.192545,1.3953748051948052,3.432166666666667,3.77149,3.179485,4.314545,4.02483,1.6268325,3.68625,4.661115,4.780855,5.2778,4.35111,1.8828925,1.99671,1.3188666666666666,2.3395675,3.407005,1.9678275,4.118865,3.303876666666667,2.81339,4.14485,5.01685,1.42509,0.9703379999999999,1.8109333333333335,1.360625,1.162511111111111,4.99876,4.053995,1.0519560000000001,0.20000782608695652,0.20000782608695652,0.20000782608695652,3.57608,5.720081666666667,4.473345,5.76925,3.7742,4.288375,5.39075,4.525545,2.7401,3.59208,1.5906875,4.77205,3.932815,4.037945,4.363945,4.36725,0.76632,0.76632,0.76632,0.76632,1.032886,1.032886,4.01697,3.58344,3.571515,2.861115,2.683525,6.5081,4.76271,5.20985,4.270035,3.1437633333333337,2.5428566666666668,9.86516,1.7482099999999998,1.7482099999999998,4.843225,5.91115,3.2777233333333338,0.4567675,0.4567675,0.4567675,0.4567675,0.4567675,0.4567675,4.974153333333334,4.962455,3.28728,4.454005,2.8260258333333335,2.8260258333333335,2.693205,2.7081306666666665,2.630993333333333,2.96477,3.465285,6.493582,1.409008,4.809565,3.36475,4.16509,9.512901666666668,2.4369166666666664,2.806865,0.9252942857142857,2.3478,4.46151,3.48861,0.92606375,2.8104866666666664,4.43195,5.74905,2.6306,4.801055277777778,0.9230411111111112,1.9046833333333335,4.80243,4.8478,2.8066355,2.38168,2.02257,1.3284316666666667,8.042641666666666,3.463033333333333,1.92565,3.197025,2.7399516666666663,3.56995,3.616535,2.730506666666667,3.333206666666667,6.0061,1.5435133333333333,4.437265,5.14215,3.5602,3.968015,2.1208199999999997,3.1217,3.799995,3.650895,2.85593,4.759145,4.691985,2.978543333333333,1.9432375,2.927296666666667,2.7716833333333333,2.79775,0.8526427272727273,2.25953,8.18052,0.523220625,3.1708499999999997,1.8946833333333333,2.6375066666666664,3.051766666666667,2.7489566666666665,1.2171666666666665,1.830562,2.6674100000000003,2.1785525,3.717825,2.03374,2.6927800000000004,1.46047,3.064064,2.22514,1.1929571428571428,2.739293333333333,2.0950175,2.32369,2.48626,3.23122,3.10207,3.3718333333333335,3.0846400000000003,2.9862966666666666,2.9567433333333333,2.8050566666666668,2.424685,1.6714733333333334,2.38802,2.5078533333333333,1.7051233333333335,3.0913166666666663,4.022747142857142,2.99578,2.628486666666667,3.043286666666667,3.5983,4.5126083333333336,2.929463333333333,1.73788,1.73788,2.3653625,1.1674375,2.3646975,3.260075,4.5859375,2.790975,1.94106,2.0468525,2.1159275,3.747585,3.660845,3.63611,5.06605,1.799525,2.4407366666666666,3.79423,1.2284760000000001,1.2284760000000001,2.972825,0.7175369230769231,3.3315934615384615,2.3097075,2.3097075,2.8891066666666667,2.4917366666666667,2.830163333333333,2.8027583333333332,2.2677625,6.801208333333333,3.919965,3.919965,3.518165,3.083025,2.282255,2.95478,2.546795,2.980525,5.2407925,0.49467833333333333,0.714855,4.13501,2.608185,2.9251,6.7576,3.44683,1.700612,4.851086666666666,4.46592,3.85488,4.33076,5.2461,4.70313,13.526357,3.368055,1.7853966666666665,2.965025,3.94135,5.58565,3.425425,4.203315,4.43337,3.70563,3.195455,2.883013333333333,4.292365,2.7625766666666665,2.451093333333333,2.451093333333333,3.97102,3.586555,3.061825,3.217585,2.38595,2.541435,2.2721925,1.8928175,2.0492475,1.9612225,1.70348,3.5611835000000003,3.43532,2.52103,6.976799999999999,3.409095,2.3996833333333334,1.8440066666666668,3.53482,3.990695,3.70514,3.029639375,3.454355,3.25445,4.309135,3.71917,3.845085,4.003985,3.3544169999999998,3.60815,0.6348233333333334,0.6348233333333334,0.6348233333333334,3.539385,2.401015,5.669,2.665145,3.72041,7.328689814814815,2.900456666666667,0.3256015384615385,5.1836,0.8087030000000001,4.341201428571429,1.912745,3.752175,1.80583,4.246725,5.682281666666667,4.308965,3.913285,2.8057166666666666,2.73269,1.5197683333333334,2.6722466666666667,0.5186215789473684,0.6159235294117648,2.9404966666666668,1.4375333333333333,2.0821775,3.93378,2.931515,5.3786,2.72716,2.864148333333333,3.498525,7.08857,1.793695,0.9570328571428571,2.171595,3.2629080000000004,1.2313145454545456,5.2823,3.923755,3.58206,2.7621566666666664,4.940245,2.6297566666666667,2.6906,3.1559666666666666,2.1751,2.514953333333333,2.1638925,3.2282100000000002,2.4148166666666664,5.8372980000000005,2.2357025,1.9916133333333335,2.2166133333333335,4.965858,3.180836,3.180836,2.457946666666667,3.978815,2.2930525,3.091915,2.866355,0.609014,4.31491,1.92787,11.283897777777778,7.47456,3.00141,3.286105,3.358525,4.83953,2.8822,3.39485,0.2261446666666667,1.86736,4.147233333333333,0.94875,3.96362,1.409402857142857,4.963465,3.31881,4.826395,4.58583,3.450705,2.217515,4.58391,3.832975,3.97362,6.91418,4.3444,3.026593333333333,3.15484,1.6150980000000001,2.078795,4.502795,4.788745,3.9727224999999997,2.817385,3.312425,1.347772,2.88822,2.43093,3.48824,10.763318333333334,3.692245,6.803895000000001,3.66358,4.299645,1.0108866666666667,4.626046,4.626715,2.5805166666666666,2.48439,3.4603333333333333,3.07878,2.38017,1.7777133333333335,2.00788,3.71508,1.590066,2.7382166666666667,5.157514666666666,2.61741,1.1469925,1.1469925,3.62252,3.1687065,3.1687065,3.7309,2.889696666666667,4.168594102564103,3.5655666666666668,3.1128966666666664,2.8268466666666665,2.354766666666667,2.4673633333333336,3.1348833333333332,2.27934,2.7193966666666665,1.665912,5.882572,8.539317166666667,0.5012315384615385,0.5012315384615385,0.5012315384615385,0.5774331293706294,0.5774331293706294,0.5012315384615385,3.0444,3.0224166666666665,4.227435,1.475475,1.7750325,3.38151,2.46341,3.0300433333333334,2.3578966666666665,3.3810000000000002,3.536466666666667,6.458613333333334,3.146036666666667,2.49552,3.7453000000000003,4.174275,2.7803233333333335,3.232203333333333,5.85831,2.3645033333333334,3.3877333333333333,1.3875466666666665,1.3875466666666665,2.566263333333333,0.5039305263157895,2.026003333333333,2.742226666666667,2.9642133333333334,3.1966366666666666,2.314103333333333,1.58442,2.7353566666666667,2.9060566666666667,2.29783,4.929185,2.3493743333333335,4.211635,3.569445,4.265745,0.46197699999999997,6.772333333333333,2.956448,2.956448,7.898552222222222,1.76048,1.8103333333333333,3.0256000000000003,3.37997,2.43693,1.9591133333333335,2.6057166666666665,1.4365275,3.3001733333333334,1.80162,3.1096385,1.426515,0.2728190909090909,0.2728190909090909,4.644595,3.97818,3.430015,2.921673333333333,2.631825,3.46136,1.2754066666666668,6.7561,3.8106,2.886435,1.8733025,1.1376183333333334,2.049045,3.0256000000000003,2.486765,2.061755,5.576285,5.09425,5.31515,3.76046,2.373705,0.6934741666666667,6.70966,2.0339575,1.4925125,3.631675,4.904385,2.24269,1.7720333333333331,4.78623,4.11487,3.3224366666666665,3.113496666666667,4.1886,4.237635,3.355566666666667,2.60874,2.60874,4.7745,5.21625,5.644,6.435933333333333,2.6815266666666666,4.024665,1.3801414285714286,2.424455,4.851095333333333,3.850945,1.856852,4.56673,3.4263125,3.762835,2.184895,4.44452,4.58727,4.96379,4.6099,2.4972166666666666,2.64928,3.7687666666666666,2.1231533333333332,2.751625,2.64403,2.5989133333333334,1.02488,1.986465,2.778233333333333,2.3354566666666665,4.699885,4.45443,4.470505,3.87974,3.329265,5.1010100000000005,11.642769999999999,5.2253,3.85177,4.59225,4.03141,4.798805,3.5621666666666667,2.933917666666667,3.7799666666666667,1.2281725,2.82559,3.00847,4.590675,5.61785,4.56344,3.1740999999999997,2.79392,2.3028999999999997,4.245533333333333,4.0858875,3.5625,4.0858875,2.210611,2.2460733333333334,2.2546150000000003,2.25516,2.6115866666666667,1.8512766666666665,0.8305466666666667,1.3300133333333333,1.7133766666666668,2.07405,1.6453766666666667,1.3337066666666668,1.6816166666666668,2.704803333333333,1.530196,3.3518000000000003,1.2746666666666666,1.6413533333333332,2.768605,2.28057,2.6991366666666665,2.1525266666666667,2.399723333333333,3.217165,2.291085,2.9275466666666667,3.1308866666666666,2.5033166666666666,3.1599633333333332,3.18737,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,4.95585,4.2054,1.0401928571428571,3.2085033333333333,2.6547666666666667,2.754516666666667,3.6677,3.087346666666667,4.52534,3.531938,1.482208,3.2614,1.6874,1.09207125,0.911848,1.2210750000000001,0.9082566666666666,0.7977025000000001,1.327434,3.32013,1.839772,1.7359166666666666,1.9733561111111109,2.3009405555555555,1.0056183333333333,1.4940583333333333,1.4503883333333334,0.95031,1.2870966666666666,0.7416616666666668,0.93298,3.416525,3.62982,4.18914,4.504935,4.03665,3.0061066666666663,4.213575,3.7311666666666667,1.940705,3.725835,1.99492,3.661165,2.10777,0.8051063636363637,4.270255,5.128,2.3525633333333333,1.3048925,2.884005,3.41213,3.7784949999999995,3.0201933333333333,2.616655,0.941025,2.0824025,5.27528,3.803975,2.45945,1.6036033333333333,3.84364,1.8133175,0.6550054545454546,4.228725,4.066505,3.975225,2.729845,1.426288,3.63861,4.55691,2.6104,2.59572,2.599206666666667,2.6701333333333337,2.7428899999999996,2.9674133333333335,3.1163066666666666,1.3361625,2.644675,2.5837933333333334,5.26815,4.397615,3.64624,4.56951,15.902007650252525,4.56106,4.564691333333333,2.777895,3.76567,5.13685,1.501774,2.219995,2.2435733333333334,6.179685,3.030955,3.86402,5.4924,2.2435733333333334,4.093315,2.103335,2.33509,2.9230633333333333,2.7034066666666665,1.2171016666666665,4.487515,3.55534,2.57297,4.22977,2.24699,2.7898599999999996,3.79123,3.213175,4.317175,4.254445,2.7771,3.578755,2.81815,2.4025866666666666,1.163802,1.163802,2.43587,2.374616666666667,0.3326917857142857,4.895816,0.949254,3.139305,4.12384,0.5879333333333333,4.572235,7.919423333333333,1.8973975,3.630755,3.917645,2.63363,3.43547,2.320795,3.142915,3.561475,4.20819,3.15539,4.1747000000000005,0.9988916666666667,11.762677666666667,2.60197,2.945705,5.296,2.639165,4.3043,7.809811666666667,4.23352,4.380935,3.87153,4.343155,5.585077500000001,1.6234525,2.58219,4.44554,3.872666666666667,2.02358,3.811475,3.800935,3.78567,3.999635,4.095495,3.718025,2.5343866666666663,4.195725,3.74224,5.1275,4.95321,2.1823266666666665,2.309466666666667,2.1801833333333334,3.0932633333333333,1.3465766666666665,3.697433333333333,0.8818090909090909,3.08646,3.0323166666666665,2.6657100000000002,1.5983333333333334,4.15908,3.995815,4.214865,1.895505,4.556885,3.72129,0.7293141282051281,0.3345734615384615,4.52494,4.743965,0.93252375,0.3345734615384615,2.997705,0.7293141282051281,0.7293141282051281,0.3345734615384615,5.980033333333333,2.579833333333333,2.4528866666666667,5.4017,3.27302,3.302,0.809188888888889,3.129825,3.8787,4.368375,5.48415,2.2321,0.6943807692307692,4.248969166666667,2.031966666666667,1.312222,1.9054725,1.0214485714285715,2.1580933333333334,2.273146666666667,3.315575,4.94769,2.8712133333333334,3.4296,2.8938400000000004,2.4287566666666667,2.92202,4.37689375,1.5560825,1.955705,4.02883,5.3401,2.044764861111111,5.4621,2.667725,4.20199,4.22625,3.087135,1.1935075,3.16038,6.76445,4.059005,3.849315,5.3765,6.50555,2.3485,4.317175,4.640275,3.15495,3.392845,8.25167,3.861375,4.6095825,2.243355,1.100055,2.32047,1.768555,2.232095,1.87679,4.817535,0.6995935714285714,3.361865,3.730715,1.9307666666666667,2.8888133333333332,4.3826,3.98802,2.76761,4.528515,5.17065,9.990943666666668,2.667206666666667,2.96753,1.712914,1.9507666666666665,1.2349566666666667,1.3393466666666667,3.2142,2.4372333333333334,3.1102333333333334,4.520859487179488,1.55455,2.3844766666666666,5.0576,5.6526,3.620265,3.57668,3.00876,2.672685,2.09767,2.005095,1.8396866666666665,1.99792,3.62858,3.700445,5.056,5.2933,4.13205,5.2512783333333335,3.623035,2.57122,6.426875833333333,3.29247,8.401125,4.752090833333333,4.752090833333333,5.561864999999999,1.6008833333333332,1.3594625,1.2971933333333332,0.730548,5.0015,3.9993,3.3130699999999997,3.3130699999999997,1.925482,4.49846,4.434775,4.638085,4.403035,2.9258,2.739575,3.90705,3.1408233333333335,5.323425833333333,3.72258,0.84023,5.39635,5.359,5.34885,4.843225,2.8725,6.2239,4.810405,0.8785153846153846,5.0566,7.193235,3.129835,5.27075,5.86285,3.5607,2.704145,3.767565,6.15095,2.147055,6.19115,1.880485,4.8063,2.712986666666667,1.963775,0.924283,3.4152,5.96435,3.37301,3.81182,2.1868133333333333,4.977435,7.87756,3.44792,4.32671,2.70475,2.47324,0.861626,4.806285,1.529305,3.5738833333333337,3.5738833333333337,3.96603,2.3604,3.081383333333333,4.27244,1.6694875,3.29214,3.017723333333333,3.3114033333333333,2.832045,4.029835,3.16749,1.861095,3.3149200000000003,2.0788175,2.989796666666667,1.9298433333333334,2.9814000000000003,2.8967233333333335,1.38864,1.70003,0.42584833333333333,1.3371933333333335,0.42584833333333333,0.42584833333333333,1.70003,0.42584833333333333,3.390233333333333,2.110296,2.110296,2.6936033333333333,4.71686,3.81066,4.388815,5.1747,4.949655,3.478355,4.27811,4.04031,2.03136,2.5287848333333334,2.536113333333333,0.8050345454545454,5.54635,2.91122,3.0701066666666663,5.3009,3.8137600000000003,5.2753,3.30518,2.6387233333333335,3.06024,3.4656,2.5934566666666665,2.8573066666666667,2.04252,5.5547,0.8417933333333333,3.777995,1.1984614285714286,3.73512,3.1120733333333335,3.246783333333333,4.03804,3.81947,4.040085,4.645845,4.08669,4.064015,4.14202,4.296385,2.4140775,2.591375,3.2957,4.244085,2.685685,2.971265,2.75736,3.239865,3.0071133333333333,3.41075,3.726675,4.586085,4.03717,68.23888207062382,2.7217291666666665,4.22472,16.345764333333335,4.10475,2.9508733333333335,1.95856,1.95566,2.5315433333333335,4.423685,3.0755866666666667,4.2580825,5.51835,3.11156,7.756806666666666,5.41505,2.249485,3.30164,4.79925,3.48978,1.892814,1.07844375,4.61863,2.71438,6.123628333333333,3.917645,2.45993,3.51891,3.48248,4.55548,3.33846,5.75512,4.9091,3.428995,2.86214,2.523325,2.894385,6.2821,2.8186,3.999495,4.44392375,1.2127166666666667,2.50915,5.1454825,2.884825,3.9987,3.671145,2.70979,4.29034,3.071445,3.44679,3.27044,4.465075,2.811815,2.894175,4.57225,9.708025000000001,3.2414166666666664,4.2089,6.3585,3.130195,2.409675,4.064428125,2.4345966666666667,2.923806666666667,3.297968,3.588965,3.35134,4.419605,3.23163,3.38874,4.12328,3.916505,4.34887,4.00519,3.63942,3.966045,2.543783333333333,2.543783333333333,6.81729,1.61001,3.22501,3.48626,2.33089,4.56845,4.24107,2.96332,3.05724,5.73415,6.1102925,0.6639827272727273,3.54321,2.30148,3.0417966666666665,2.5651800000000002,5.3008,2.7515733333333334,2.085895,1.12114875,2.109432575757576,4.16866,4.47067,4.092265,5.58175,5.65405,6.176,2.500185,1.89142,3.85978,2.76553,3.1414866666666668,2.0174499999999997,1.1740683333333333,2.5985066666666667,3.2625233333333337,1.617706,2.2512833333333333,2.394748857142857,3.595085054945055,3.590685,4.94007,3.39149,1.49363,4.19445,3.500405,5.41595,4.81784,5.3246,4.66819,1.9846233333333334,1.8723866666666666,0.6276357142857142,1.55734,3.73794,2.539495,3.607588333333333,1.3985733333333332,2.53219,2.32749,3.472815,3.592015,3.861565,4.18256,1.6377125,1.438015,1.944795,2.0749725,1.4604725,2.691575,6.534448833333332,4.917385,4.19734,2.963005,7.683959999999999,5.0751,3.16104,3.164775,3.518635,2.882355,3.71994,2.3195966666666665,7.49326,0.9036783333333333,3.116595,6.46655,4.086445,4.88445,6.07045,1.52841,3.1004533333333337,2.965196666666667,3.0330266666666668,1.594405,4.02955,8.67573,3.18745,5.3602,4.06591,4.847915,4.638195,0.9029766666666666,2.8179133333333333,5.5111,6.264989999999999,4.9142,5.1152,2.981695,3.7550333333333334,2.48038,4.585745,4.946825,3.713087119047619,3.713087119047619,0.6395442857142858,3.1928,0.910232,0.7096183333333334,1.865905,3.6006666666666667,2.87421,3.9768300000000005,2.4759100000000003,2.5651720000000005,2.6682566666666667,3.06643,2.9203666666666668,4.5935999999999995,3.4730041666666667,1.8417275,1.8417275,3.821095,3.0191966666666663,2.782033333333333,3.8683,3.3394666666666666,0.548278888888889,3.220663333333333,2.4775466666666666,2.7036333333333338,2.81073,2.562025,2.419853333333333,3.134256666666667,2.791166666666667,0.837875,2.7672233333333334,6.353754190476191,2.05398,7.465535000000001,1.584848,1.584848,3.3596090000000003,3.234996666666667,3.2219466666666663,2.6686933333333336,1.756994,1.3506457142857144,3.29656,3.3794,1.5049333333333335,1.511,2.8787933333333338,2.8286700000000002,2.6376,2.02588,2.071685,2.645015,2.233495,2.718165,3.42963,1.61177,3.73958,3.36954,7.11064,4.053745,1.6911975,3.536415,2.5509,2.214285,4.037735,2.5959766666666666,2.71364,6.605475,0.8527384615384614,0.5554525,4.468145,1.412156,1.412156,3.56291,2.360865,4.793715,3.274085,1.2999466666666668,2.592904,2.71442,2.5065573333333333,5.30385,3.609005,2.634256666666667,2.0969333333333333,1.3751078571428572,1.3751078571428572,2.0401666666666665,3.938545,4.0625,5.109,3.206886666666667,4.89047,4.42411,6.7589,4.80875,2.550715,2.784213333333333,2.68169,2.7536400000000003,0.7719066666666667,0.7719066666666667,0.7719066666666667,3.18488,4.404435,4.230295,0.7052275,0.7052275,5.39595,6.31985,6.7902,22.436952,11.9546,8.45026,3.36858,5.74545,2.413315,4.53072,2.6871266666666664,3.2544966666666664,4.200433333333334,5.497428666666667,2.104045,1.785105,6.60172,2.12502,2.12502,6.5832,3.30481,4.46366,1.87054,4.751297666666667,5.08885,3.151065,5.1306,3.66523,1.3983866666666664,6.0075,9.30264,1.3983866666666664,1.87054,2.106133333333333,0.742632,0.742632,1.6777460000000002,2.343026666666667,1.6777460000000002,4.45171,5.80945,6.32785,9.26166,1.87054,11.489106000000001,6.0037,5.26475,2.413315,3.02867,4.449575,9.02279,3.1831408333333338,3.878495,6.30215,3.212505,4.821945,6.11145,4.396615,4.931485,4.576345,2.66843,5.0083,4.049835,4.344705,4.337845,0.81864,1.5269,3.14845,5.346,4.646195,2.61741,1.8432075,3.83242,4.9147,5.49255,5.03745,5.21895,4.50235,3.414835,4.299755,3.81739,2.1269,5.1353,2.016305,2.649455,3.5496,1.6739166666666667,3.969685,4.21342,3.681345,5.18065,2.958665,6.716796666666667,0.9317722222222221,3.51098,4.468505,1.4893857142857143,5.417337,1.4581566666666665,1.5576433333333333,2.69093,2.7580995,3.079083333333333,2.8305466666666668,1.825435,0.7929245454545455,2.185563333333333,2.603835,3.83741,0.7354676923076924,5.749821666666667,1.6537566666666665,1.21903,3.909333333333333,1.21903,4.00361,0.8884036363636363,4.577725,3.0140733333333336,1.876025,4.644108,4.6753979999999995,4.6753979999999995,4.828075,2.583925,3.2695483333333333,2.50384,1.371684,3.830175,3.72277,2.035413333333333,0.7627066666666668,7.206044358974359,2.785595,3.868355,4.48616,7.62794,2.388645,4.0887,3.841815,3.17254,3.749185,5.57665,6.7211275,4.328005,4.760255,5.5397,3.0236199999999998,4.405745,3.93257,4.51752,1.0581488888888888,0.4653764285714286,3.162895,3.2849866666666667,2.835433333333333,5.6977,3.923705,4.351195,4.58534,4.840845,4.12049,4.698,1.17654,2.39868,8.891200000000001,2.2284133333333336,1.9230633333333333,3.9295414285714285,11.40933875,1.5196875,5.5122,6.2958,4.89292,3.277756666666667,2.21161,3.2617733333333336,3.75676,1.1037166666666667,3.03119,3.37724,0.357921052631579,1.9676133333333334,4.46462,4.45024,2.353815,4.16814,3.089095,5.040495,1.2822566666666666,0.551769090909091,3.758238333333333,1.09995,0.98761,0.98761,0.98761,0.98761,1.5984366666666665,2.7260733333333333,2.1487000000000003,3.414566666666667,5.1438,3.5281000000000002,5.0314,3.91123,4.41276,3.68707,4.026665,1.4319633333333333,7.065685,2.493085,4.961195,5.206806666666667,4.622875,5.057600833333334,2.341886666666667,2.318583333333333,2.67441,3.19757,1.1806766666666666,4.7939066666666665,2.6939166666666665,5.041,2.9257566666666666,2.30302,3.861075,3.35335,2.97986,2.492426666666667,2.831463333333333,1.482525,0.40276222222222224,4.276425,3.301625,4.171915,3.46646,3.92529,6.0335,4.31804,0.5415130769230769,3.331792,7.359542,1.97081,2.05694,5.491286666666666,5.27415,2.729816666666667,4.843235,5.0745,3.909235,4.10434,4.418535,5.0046,5.3617,5.00915,3.590245,5.4853195,1.586916,1.6031683333333333,4.176755,4.012385,4.35989,3.231125,5.2715,5.444,3.917415,3.42088,16.001741065652514,1.3021666827180312,1.16242125,1.9264230681818182,0.50953375,0.47108133333333335,1.22725125,0.29761470588235295,1.329322,2.884306666666667,1.426924,0.941825,1.0708425,0.4964125,1.0708425,1.0708425,0.4964125,0.8382615384615384,0.6156807142857142,2.736215,2.7159033333333333,3.50438,4.11058,2.8615100000000004,2.758525,4.02144,5.4653,4.971915,2.79856,4.093525,0.7564214285714286,2.408268,8.3697925,4.16811,7.052655,2.77063,4.162785,2.351885,5.0027,4.956035,3.16569,4.29643,2.31233,1.0261733333333334,3.8106,4.87856,0.9882899999999999,1.2980399999999999,1.5434533333333331,2.357416666666667,2.5111266666666667,5.09665,5.8072,2.3079775,2.3079775,3.6246794444444443,6.67244,2.1501533333333334,0.6575727272727273,0.7586685714285714,2.0058700000000003,3.3813666666666666,0.8226057142857143,0.8226057142857143,0.8226057142857143,0.37108461538461535,1.0200371428571429,3.013825,6.10985,3.7983666666666664,4.0437025,5.2409,0.967657,3.4430333333333336,3.0811466666666667,3.9208,5.7767,2.5423899999999997,7.362933333333334,4.911565,1.1076166666666667,3.7817333333333334,1.796048,2.568315,2.3163033333333334,6.913821666666667,3.4627,4.95658,2.1979025,4.07357,4.36509,4.63404,0.4886272222222222,2.076496666666667,1.3856933333333332,2.6822466666666664,4.015143999999999,2.1303566666666667,2.7368,2.29291,2.60965,2.5833133333333334,2.74995,2.7641466666666665,2.8880733333333333,1.3587339999999999,2.3153900000000003,2.1427166666666664,2.6296933333333334,2.3519433333333333,2.0702825,1.7935633333333334,1.9269266666666667,1.62209,3.21036,2.263993333333333,2.3804233333333333,2.2309033333333335,2.398633333333333,2.727543333333333,0.7863655555555555,0.7863655555555555,0.7863655555555555,2.53839,2.21936,3.0450433333333335,3.10723,2.7628866666666667,2.0818266666666667,4.09167,3.40182,1.3209733333333333,2.6018766666666666,2.8119866666666664,3.803716666666667,1.5435142857142858,7.529941666666668,4.83196,3.255675,4.148655,3.65756,1.5236625,0.6195107142857142,2.823605,3.844,3.803716666666667,4.19667,4.220835,4.33983,2.85956,3.53516,4.31126,0.8323740000000001,2.730885,3.38769,5.015193333333333,4.820225,3.579415,3.20566,2.538205,2.657043333333333,2.5841066666666666,0.6417683333333334,5.6516745833333335,2.635125,4.18782,2.7611966666666667,3.749041666666667,3.16196,2.4455033333333334,2.971072,2.971072,2.54439,2.26168,2.4821766666666667,2.0277166666666666,3.77759,1.4251559999999999,2.561695,3.981595,3.970505,3.978875,5.38825,4.14991,2.4685025,2.218835,3.30617,4.215835,2.805775,4.60262,2.839945,0.9273942857142857,0.9273942857142857,4.40303,3.938283,0.987528,4.80669,0.987528,3.906565,4.29534,5.03755,3.08683,3.30761,6.4261225,4.281139166666667,5.9603,0.8802714285714286,0.8802714285714286,2.0845,4.484215,1.4496650000000002,3.03455,3.73921,1.11822,4.038125,4.02425,5.43,5.43,0.9709216666666666,5.15205,4.87381,4.889425,6.11245,2.1479675,2.1479675,7.15015,0.9568545454545454,7.2259,1.9367325,6.0233875,2.688255,2.4697333333333336,3.46985,2.11412,2.2402266666666666,2.4236400000000002,3.11147,2.3696230952380954,6.437319,1.9377,5.35435,2.98842,2.6013033333333335,1.61949,2.07213,3.343875,3.55739,3.60747,2.796835,2.340125,2.12792,2.463235,1.091494,3.32223,2.12103,3.234255,2.1121475,2.1121475,3.00908,2.1161499999999998,3.856315,3.888895,5.23105,7.621790000000001,4.26261,3.52314,6.2536155,1.9378466666666665,3.2639755555555556,2.1391533333333332,1.5369428571428572,1.6804725,4.036535,1.6377633333333332,0.52833,0.9668133333333334,4.55872,4.626275,2.807905,0.9599833333333332,2.79586,2.4413233333333335,4.908875,1.824116,1.95297,1.1205555555555557,4.52445,2.455425,4.221965,0.669416,4.101095416666666,4.855995,3.68022,4.473785,3.5537,3.869595,2.6858166666666663,5.4679,3.66168,2.20703,2.804373333333333,6.059495,6.44602,0.93237,4.093795,4.183865,4.933505,3.4084,3.8064666666666667,2.8118,3.09159,3.9391,6.15015,2.8286700000000002,2.6765559999999997,3.45855,3.2687,2.31269,2.55995,8.516733333333333,4.75071,2.1019,4.713585,4.78829,1.8698260000000002,3.936745,1.389625,1.769557142857143,4.63675,3.73982,5.63825,3.0614600000000003,4.39618,5.06385,6.70415,4.40772,5.1146,3.87855,4.967455,3.943795,4.384025,1.100623153846154,1.100623153846154,7.75414,0.8838475,1.9052083928571428,0.8838475,0.76618,0.36078,2.6713883928571427,2.496945,0.5492371428571429,1.9052083928571428,2.1101,3.28815,2.12215125,3.47928,4.222885,7.419079999999999,2.121705,2.20047,2.072675,4.92722,5.88945,1.91788,1.7637525,1.38794,3.1516925000000002,4.261055,2.67318,4.02367,6.6084700000000005,0.40882944444444447,3.82218,0.68033,2.6903666666666664,2.555675,3.75592,1.2762683333333333,4.494905,4.54579,4.24919,2.81695,4.342115,5.130599999999999,1.61598,3.026395,0.5308330769230769,2.419525,2.41576,1.15986,3.0300499999999997,2.51419,2.5389500000000003,3.88098,8.37867,3.032451212121212,3.68775,3.410105,8.02239,5.440141666666666,3.1906933333333334,4.092805,3.653195,5.31585,4.75408,5.48955,3.855115,5.14955,5.5765,2.7048233333333336,1.5967975,1.9898066666666667,2.2220866666666668,3.97019,2.4680166666666667,0.23283621621621622,0.23283621621621622,0.23283621621621622,30.59127828571429,0.23283621621621622,2.9844612162162165,0.23283621621621622,0.23283621621621622,0.23283621621621622,3.4401928828828834,4.388825,0.23283621621621622,0.23283621621621622,0.23283621621621622,0.23283621621621622,0.23283621621621622,3.549,5.20136,3.05226,0.3233846153846154,0.3233846153846154,4.2649946666666665,4.558073333333334,4.138646666666667,3.1716575555555555,4.0241533333333335,7.971679999999999,11.250782220279719,6.494622,8.048373333333332,7.107347142857143,2.566263333333333,6.12214619047619,4.479416666666667,4.390796057692308,0.3233846153846154,7.7811710000000005,6.550272095238095,7.042481666666667,3.039,8.365920642857143,15.163242738095239,17.857075476190477,56.61477414593413,115.88461415670115,1.3875466666666665,3.3877333333333333,3.347675,4.108142012870013,0.3233846153846154,1.7349623076923075,8.708320833333334,14.257789976190477,19.66396,49.04587432999165,13.365574476190476,3.02935,0.27885862068965517,0.27885862068965517,4.6716033333333336,2.79838,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,7.4187,0.27885862068965517,0.27885862068965517,0.27885862068965517,2.790315,1.8670433333333334,3.549105,3.736655,4.315003333333333,5.2551,2.36578,4.592935,4.44085,3.18723,1.5129266666666668,3.704305,1.0083433333333334,2.2135425,2.27548,5.272273333333333,5.982446666666666,2.89582,5.646196888888889,0.4475777777777778,0.578326,2.4172733333333336,2.7407766666666666,3.14929,4.319305,3.2161399999999998,8.022727499999998,3.687895,3.03575,3.44306,4.003005,3.35025,3.356275,5.95435,2.694155,0.4601392307692308,0.8648545454545455,4.199195,1.776515,3.763045,3.79084,4.65125,3.42495,2.61605,2.66021,0.6057426666666667,0.762532,4.299255,2.664606666666667,4.75604,3.74796,4.262818333333334,2.8258,3.45348,6.5173,6.1587,3.324505,0.8235927272727271,3.8425,4.97893,2.227755,0.9825825,1.8367633333333335,3.7993,6.25735,1.84469,3.57547,3.64074,5.3844,2.3721,2.3930966666666666,2.261655,4.495045,2.432215,4.303735,0.6812542857142857,3.241483333333333,3.412715,1.828435,6.494973333333333,3.833785,3.941355,4.634985,2.94701,1.938555,0.5626363636363636,4.801015,4.126795,6.35,3.381775,6.49085,5.3154,2.883955,2.73145,1.276882857142857,5.65665,2.069825,2.688725,9.33367,4.560385,5.1715,3.05684,1.1851777777777779,3.041845,1.1524571428571428,3.294905,6.31335,5.10275,5.2139,3.76226,5.14315,4.380925,1.641245,1.6869866666666666,4.902575,2.895683333333333,3.5793666666666666,2.3428775,5.11945,4.25072,1.5209566666666667,3.702033333333333,2.89683,2.74783,3.44654,9.57305,4.814165,1.7592825,4.713195,5.96903,4.724622500000001,4.004155,3.93704,3.85142,4.683695,7.900715,2.4803133333333336,3.24762,5.7472,4.48762,2.9836,3.2232,4.32486,4.39308,3.54768,4.121429333333333,18.713869333333335,2.9299199999999996,2.415643333333333,3.217166666666667,5.821374333333333,1.04853,4.50065,2.2495991666666666,4.90738,1.3618883333333331,4.146845,4.48408,3.922215,0.9603525,4.492915,4.633125,1.7156325,4.748083712121212,4.052725,1.1111685714285715,3.61964,2.13274,2.428055,1.573465,4.298995,3.90621,3.805555,3.698795,3.0591000000000004,4.326695,8.13232,4.675945,4.694115,4.647425,3.272683333333333,3.768765,4.910925,6.402139,0.941986,0.941986,4.72073,4.39398,2.13619,1.3253933333333332,7.3374500000000005,4.110955,3.314875,3.86803,4.64386,4.467545,3.57551,3.90492,6.007328,3.91826,4.661235,5.2909,1.5038857142857143,2.6816,4.3159,4.92728,3.53918,0.1854763888888889,1.8106325,2.020805,2.540366666666667,2.047823333333333,1.0143033333333333,1.5160825,1.4525325,2.45552,0.5949944444444444,1.2122600000000001,1.8887425,3.81737,3.8109,2.399716666666667,2.7609600000000003,2.9959133333333337,2.8687799999999997,0.68808,0.9368825,2.744575,5.16095,4.863595,3.22295,3.95985,4.13722,4.33872,2.09018,4.37641,5.16275,4.648415,6.6596475,3.78151,0.48457999999999996,5.9501,4.8727,3.963705,5.2078,3.306715,1.995272,4.33717,4.30734,2.787855,5.2709158333333335,4.443095,1.4229516666666668,5.2709158333333335,3.97947,6.7379125,3.692235,1.204122222222222,4.099665,4.66968,4.53812,2.5951066666666667,5.3055,1.52477,2.0235825,3.288295,3.449055,0.8061577777777778,4.44755,4.979775,3.61163,4.002285,3.2062266666666663,2.9560866666666663,1.8111979999999999,1.6242775,3.19608,3.51656,3.5207333333333337,2.4484333333333335,2.720825,2.0563103333333332,5.57495,1.6346,0.8352966666666667,5.4275,3.99797,1.4558820000000001,2.5913733333333333,2.514013333333333,3.28524,7.033048333333333,2.4678233333333335,0.846328,2.645415,4.681655,2.2849266666666668,4.06781,5.8957,5.3685,5.02905,4.047125,4.948655,2.17582,2.3034066666666666,1.6600533333333332,2.1861133333333336,1.9165275,2.33536,2.24104,1.5969125,2.764395,3.02874,3.297075,6.4338,5.1451,4.051055,4.75947,4.0133,4.01506,4.92417,0.897365,2.7395066666666668,5.31475,1.192648,0.71344,5.0945,3.620375,2.5741833333333335,3.4723437500000003,5.73254,5.5409,0.975221,1.2043128571428572,0.7079777777777778,4.2086508333333335,2.2681299999999998,2.9168966666666667,1.1790371428571427,3.1278166666666665,2.5441533333333335,5.4391,4.921665,4.537275,5.35675,3.55942,1.2874299999999999,3.74421,1.6887233333333331,3.516305,3.50046,3.333485,2.562796666666667,3.3424666666666667,2.75296,5.2232,3.912465,3.31036,2.435015,8.457514999999999,10.880257499999999,4.35427,1.35134,5.4265,3.73049,5.2251,4.578915,4.296205,3.92599,3.49548,4.262665,3.7961278125000004,4.44038,3.766265,3.434145,4.66462,1.8539100000000002,5.2024,5.9593,4.77309,3.2883,3.325595,7.08999,0.7317575000000001,2.6358266666666665,2.75203,2.4000366666666664,4.691775,2.94867,1.2293,4.433605,3.4790666666666668,3.728345,4.627995,3.881265,7.11615,3.0585566666666666,2.5608766666666667,2.959543333333333,2.9975533333333337,4.128135,2.09737,2.134586666666667,3.0258933333333338,4.003535,3.6058366666666664,1.9603025,1.5290175,3.3854675,2.9787660000000002,0.9729755555555555,2.5424283333333335,2.5424283333333335,1.38872,5.5844,3.188525,3.299545,3.471075,3.195035,3.50207,3.44698,3.27034,3.260625,2.0970400000000002,0.5518973333333334,3.280045,5.9227375,3.147765,3.72943,3.218805,4.0569,4.257665,3.16815,2.82194,4.285,3.72782,3.17945,3.041705,3.61416,2.6662,4.13803,3.95409,8.99688,3.450555,3.68084,3.02942,4.09275,4.190735,3.66953,2.451735,3.665315,2.5995549999999996,2.90581,2.961655,3.2,3.783595,1.70624,1.70624,2.27558,3.264425,3.31553,1.599602,2.44439,3.461445,1.919704,2.8048,1.599602,3.665635,3.118065,3.97958675,2.900145,3.378495,2.337875,3.160775,4.09369,4.57858,3.89424,4.451565,3.958895,4.29096,3.797915,3.133905,3.344505,2.978725,3.94725,2.671863333333333,3.58977,5.4073,4.184595,3.7985,0.31173304347826086,3.53534,0.4503791666666667,4.099335,3.73213,2.91239,3.58347,4.235055,6.011793333333333,3.26138,2.61585,2.4165933333333336,2.81493,0.8169700000000001,5.698083333333333,3.183355,3.533895,3.95159,2.0666,2.52023,3.420615,3.312195,6.79927,4.1879,5.0353,4.771875,4.494715,4.617235,3.73693,1.4818916666666666,1.697032,3.610025,4.47072,5.428415,2.5354466666666666,4.308435,1.952395,3.5732,3.34942,1.9819911904761907,4.18201,4.7409025,3.6762333333333337,3.8803,3.0501833333333335,4.482005,4.94035,3.3419666666666665,4.297365,4.274455,4.83667,4.221445,4.503655,3.742875,3.068995,4.378015,2.587075,3.2183466666666667,3.2183466666666667,3.76527,2.57297,3.883695,2.29326,4.61321,3.1840466666666667,3.477185,1.76551,1.6746533333333333,1.2165383333333333,1.2165383333333333,1.592146,3.4928666666666666,1.7631033333333335,3.4358,3.74148,5.2760175,3.4143666666666665,4.71824,5.73139,2.760665,2.80783,2.9428199999999998,1.6009133333333334,4.17331,4.00197,6.244972499999999,1.6520233333333334,5.80305,5.5594,3.2028133333333333,3.24956,4.28931,7.11117,1.99278,2.504125,3.746565,0.4736885714285714,3.890445,4.152885,4.613855,4.38632,3.37448,1.5129160000000001,1.6215140000000001,4.05174,3.921755,2.408253333333333,3.794355,4.58894,4.835625,1.20395375,3.39607,3.945645,3.767945,5.016,2.6602166666666665,5.12639,3.8011,1.592558,3.63331,1.2675666666666667,2.6909899999999998,7.1225216666666675,3.2931,0.7412299999999999,3.27993,4.278845,4.209075,2.1320875,2.1320875,4.766558333333333,5.65535,2.89627,0.501588888888889,1.9567275,4.459229166666666,4.458615,4.195705,1.821472,3.0880566666666667,3.41146,1.260181842105263,1.260181842105263,1.260181842105263,0.8100085087719298,1.3598035087719298,0.549795,1.260181842105263,0.8100085087719298,0.2923968421052631,0.8421918421052632,0.2923968421052631,0.5176116666666667,0.5176116666666667,0.5176116666666667,0.5176116666666667,1.1386638333333334,1.3125125,2.44223,2.3406949999999997,1.0981033333333332,6.444515,2.69031,5.303231666666667,2.2724966666666666,3.4178,2.929145,3.32358,2.851414166666667,5.25755,2.90528,4.04201,4.161545,5.069,2.22736,3.861505,4.712205,4.158495,3.258,5.25125,3.411755,4.48209,5.22255,4.61502,6.06625,5.387,1.3378,3.88294,3.77336,2.50444,14.409115,4.39698,5.23025,2.76256,7.71582,4.175645,3.99905,5.06355,3.16776,1.084595,2.49424,3.761065,4.20753,4.369835,3.34662,4.180295,2.9741066666666662,4.172195,4.53873,4.272245,6.920528333333333,7.8920650000000006,1.2602200000000001,3.785115,4.117025,3.809275,3.674955,3.386235,7.30519,3.00778,2.954095,2.51532,3.96082,4.009685,4.698415,2.419925,1.8071425,0.889454,4.868145,4.621675,3.7096,4.175415,3.65264,4.53367,3.775445,6.6205,5.7704,4.79413,6.4357,3.90818,3.19856,3.245745,3.435615,1.8773675,5.8935,6.66045,6.67985,6.530308333333333,6.530308333333333,2.37102,1.8773675,1.93991,2.766155,0.73314,1.5199099999999999,0.78677,1.330745,2.40443,0.307604,3.089025,4.166055,1.330745,3.082307,10.86923,6.51853,2.1931198333333333,1.161,1.7832366666666666,4.23985,4.36999,5.894451380952381,2.02122,2.200785,4.052535,3.339635,4.64749,1.6629033333333334,5.1184,3.4525333333333332,3.235815,5.09705,6.882788000000001,4.050235,2.3367325,2.8354733333333333,1.6798033333333333,3.642665,5.247465,1.5333679999999998,5.50955,4.57736,6.2925249999999995,0.5227086666666667,4.880366666666667,3.96391,4.53748,2.55227,2.761745,7.15655,9.555066666666667,5.6566,2.2612666666666668,2.2612666666666668,2.2612666666666668,6.32015,5.05435,5.67695,3.057,2.69285,2.532551052631579,4.535395,4.46356,2.5561154999999998,1.71116,2.5561154999999998,7.014365499999999,4.665553333333333,4.61916619047619,6.695,4.61916619047619,4.61916619047619,3.406572857142857,6.81189,5.8963470000000004,3.2493920000000003,3.2493920000000003,2.572825,5.03115,2.906745,3.545125,5.1387025,5.1387025,5.1387025,7.656145,3.6709825,3.49142,3.67121,3.5478825,0.9876525,7.306513333333333,2.64096,5.8342,3.46978,12.913253333333333,4.7184,5.5682825000000005,6.93791,2.6193033333333333,3.377655,1.1293416666666667,5.5682825000000005,3.468355,1.676675,1.676675,2.82964,5.2674725,1.7796225,4.743186666666667,0.848901,1.3827866666666668,0.848901,1.9070725,2.6285235,5.404420999999999,3.766365,1.3827866666666668,3.06924,4.8239175,0.9329225,3.4392,4.323835,2.23653,4.04619,2.12013,3.327415,3.104525,0.9600479999999999,3.75087,2.048075,2.08478,1.6040999999999999,2.99094,3.77553,2.73389,3.724935,1.3893022222222222,1.3893022222222222,1.3893022222222222,3.66785,2.7462633333333333,2.7462633333333333,2.86049,4.000585,2.23599,1.2905275,1.2905275,3.191045,4.4894300000000005,0.885515,1.4087066666666666,2.82989,1.319855,2.7285616666666663,0.9600479999999999,0.9600479999999999,1.8951108333333333,0.9600479999999999,3.2565808333333335,0.7028216666666666,3.2565808333333335,6.224487916666667,3.54913,2.5408933333333334,1.7695301388888889,0.60239,2.3719201388888886,3.23504,2.3719201388888886,0.9523188888888888,3.31197,4.056265,3.86227,3.664785,2.76047,3.734255,1.9785033333333333,0.9017490277777778,0.41200125,0.9017490277777778,0.4897477777777778,0.9017490277777778,0.9017490277777778,4.58275,4.500035,6.51165,3.43605,4.600815,4.46656,5.65225,3.48062,4.05265,1.2060785714285716,3.3399666666666668,4.563395833333333,3.908955,1.4112566666666666,2.6922433333333333,3.974285,3.862555,4.15213,3.627195,3.31213,3.43102,3.200595,4.37719,2.3284066666666665,6.1315,3.69378,4.171845,4.9973978571428574,1.1555283571428572,2.15908,3.78838,6.01965,4.57979,3.39,3.1522666666666663,4.78814,7.806111666666666,3.8884666666666665,3.08979,3.3488666666666664,6.24105,4.05227,5.5591,5.17675,5.2717,2.988865,5.6366,4.74046,3.456466666666667,4.21158,3.079003333333333,2.2163425,2.1275133333333334,4.89018,6.39425,5.8573,5.65335,4.68403,5.5646,5.9069,0.4715607692307692,7.091044999999999,4.28651,4.57356,3.51341,4.69437,4.15568,3.0816,2.6807,1.3448083333333332,0.6097661538461538,1.732106,2.9782433333333334,3.44058,3.942745,4.08217,3.92923,11.695471666666666,3.836395,3.89199,2.55937,0.6871016666666666,6.018456666666667,3.1277933333333334,1.5609233333333332,4.688716666666666,5.733863333333334,2.60607,8.61892,5.22065,3.3453919999999995,3.3453919999999995,3.3453919999999995,5.4046,9.57054,4.24513,3.332625,3.332625,3.217155,9.88246,1.018735,4.89757,4.60807,4.02008,2.8015833333333333,2.2614233333333336,4.510365,3.87521,5.8755,6.045153333333333,3.89849,2.87294,3.89739,4.0642325,3.3302829999999997,1.2632375,3.3411000000000004,6.17796,3.3044225000000003,5.0019,0.92108125,3.7893000000000003,2.2102566666666665,2.57664,1.8122625,1.8117866666666667,2.105166666666667,6.4614,2.181155,4.22174,5.9138,1.9377,5.0056,3.82874,4.657215,2.9732266666666667,2.231795,2.678585,3.612845,4.099775,4.099775,1.13669,1.6047200000000001,2.67127,4.391364,2.322532727272727,4.777115333333333,1.755602,2.64884,2.2011766666666666,1.654985,1.654985,4.924635,7.320238333333333,2.0598733333333334,2.86375,2.2155475,5.7073,3.19029,0.856312,2.883075,0.856312,2.62235,3.379645,4.965285,5.60415,3.658765,4.650616666666666,5.77755,2.367455,2.1189066666666667,2.4023,2.2570866666666665,6.10475,4.593585,2.486975,3.749515,2.834125,4.3597,1.09975375,1.129108,1.8976466666666667,1.5497183333333335,2.624756666666667,2.8336566666666667,2.29459,2.5940066666666666,2.843725,4.33756,2.696013333333333,2.454823333333333,2.7729033333333333,2.44966,2.81486,2.666513333333333,1.9518766666666665,2.5649133333333336,3.82589,3.877785,3.594395,3.081915,2.9003099999999997,2.14576,2.043345,1.3116083333333333,0.3347155,0.17904304347826086,2.106133333333333,2.4175,0.17904304347826086,4.189457210144927,2.337865,0.17904304347826086,6.006945277777778,2.4479333333333333,6.15208,3.53704,3.5766666666666667,2.2002366666666666,2.8900900000000003,2.2621825,4.41316,3.2311533333333333,3.388833333333333,0.42607736842105265,4.04523,2.554260701754386,2.95482,1.86126,2.631475,3.997815,2.505345,7.93759,4.907445,3.34375,3.71741,6.62669,6.36279,1.6456833333333334,3.9635233333333333,2.06552,1.92898,5.96757,8.55875,1.2203633333333335,2.06721,3.71214,2.548625,2.947485,3.184595,2.62678,3.7468275,2.456605,3.14366,3.37037,3.183965,7.78548,1.2800966666666667,1.985225,2.98454,3.403345,1.7687099999999998,3.54618,1.497905,3.81774,3.42852,6.65516,3.439425,8.996725,3.526205,1.5456239999999999,1.6861533333333334,3.105315,6.78347,1.996035,1.5150266666666665,6.0082,3.55492,4.0351,2.862875,2.0298666666666665,3.199635,10.713305,5.2227,6.70681,3.54623,2.184195,2.17819,2.62046,2.98165,3.11417,1.78955,1.6592766666666667,2.4967333333333332,3.51331,1.7750325,3.383795,2.91974,3.796835,3.81833,3.1087,1.1600466666666667,2.60558,1.0560133333333332,1.269318,1.464775,3.26558,3.645185,3.58134,2.67939,3.745425,4.071,2.88513,1.50188,3.53053,3.4263125,3.1423,1.794595,3.171165,3.476235,1.513125,3.48991,1.81505,3.943265,3.797,4.684345,2.59818,3.943815,1.72765,3.868915,4.57123,1.68494,1.0663628571428572,4.029466666666667,2.74983,4.713385,4.329045,3.122425,4.650745,4.484835,2.2271566666666667,5.20125,5.49843,6.62445,4.40925,5.949971666666666,3.86712,1.5278366666666667,2.55198,4.866255,4.905895,2.70866,7.3318080000000005,1.250937142857143,3.704266666666667,2.077845,1.753858,2.4084499999999998,2.753156666666667,0.3803992857142857,2.7144033333333333,3.3829,3.477675,2.49674,3.3287,2.31536,2.5361833333333332,2.0681,8.68818,4.974275,1.642198,4.904215,2.4521713260869564,0.7293141282051281,2.70665,8.000814,1.821482,4.52148125,6.075441666666666,1.57125,1.5749925,1.42902,4.75347,3.225585,4.372525,4.13075,2.49879,3.615095,0.861516,2.6265893333333334,3.653375,4.17475,5.6804,2.6453,4.980755,3.945135,5.0146,4.949065,6.1396,4.495555,4.41357,4.607,1.623674,1.91019,2.79771,3.38599,1.1891555555555557,4.19415,2.7238100000000003,3.422833333333333,4.22323,3.080883333333333,2.6059733333333335,1.4945066666666669,3.2358266666666666,2.7670338888888892,2.8288533333333334,2.9909133333333333,1.95381,2.0380075,2.350745,4.04505,4.723675,4.00999,4.09484,3.56663,2.2998,3.172855,4.832705,3.7050666666666667,4.56364,4.612415,2.2779,4.465396666666667,1.7040266666666666,4.48162,5.154040833333333,6.2541665476190476,4.61256,4.75281,5.5526,3.094063333333333,4.054696666666667,4.482375,3.342895,3.8002564999999997,3.567415,1.3643825,3.2463,1.698295,2.241955,4.67543,5.6349025,3.8002564999999997,4.21101,3.331525,1.4496650000000002,3.81955,2.03982,2.5959766666666666,2.063085,2.76419,1.457375303030303,1.457375303030303,1.457375303030303,0.46073363636363635,0.6894877777777778,1.9507577777777776,1.0875775,3.64574,1.3336566666666665,3.956535,5.21825,4.941895,3.295635,4.086915,3.18829,4.90272,1.7308975,3.01738,2.741775,3.44052,5.859903,4.227715,5.4756,4.10232,0.98278,2.243815,1.2505433333333333,3.89506,3.988825,4.3971,5.507,4.69149,5.29295,5.14725,4.15189,1.68919,1.21763,5.22794,0.9959077777777777,1.20832,2.44708,8.167785,2.77626,3.77922,2.79363,5.623545,1.691575,1.01165,1.463815,3.259,3.46999,3.965755,3.708275,1.9286825,6.437234999999999,3.2927733333333333,0.94584875,5.1366,3.022683333333333,2.8108833333333334,2.5136233333333333,3.512866666666667,5.678400833333333,2.9103999999999997,3.01694,3.8523333333333336,2.7202466666666667,2.8733400000000002,2.976793333333333,2.91406,1.99025,4.645385,4.888305,4.825595,1.0642,0.730477,3.6805333333333334,2.7080800000000003,1.0679525,2.5694791666666665,4.98165,4.58223,7.51005,4.64788,4.081733333333333,1.7844039999999999,3.53828,3.76441,2.67478,2.878376,3.979275,2.7747733333333335,4.738208,0.7775466666666666,4.30658,1.732848,4.129095,4.436685,1.94879,1.02528,3.0857,0.435225,2.621485,6.6157,5.75335,2.79478,1.484326,3.25771,0.7736488888888888,2.5585166666666668,0.7736488888888888,3.99199,4.761505,1.417735,1.5836625,5.2937916666666665,1.8982066666666666,3.54341,3.53994,3.910035,1.302524,1.6010166666666665,4.112445,5.1281,5.23895,3.297968,2.090885,3.19015,1.6351475,2.812975,1.8295925,1.882445,3.952995,1.4090666666666667,1.4090666666666667,3.17663,4.870643333333334,8.0731325,5.185253333333334,7.161345,2.143495,3.795045,4.06447,1.5901316666666665,3.519405,4.02293,3.114545,5.71785,3.14782,2.73585,2.81556,3.558405,1.1585525,4.027565,4.60755,1.2801616666666666,8.141536666666667,2.684395,3.19019,3.1815666666666664,4.59219,3.8747,3.896270416666667,2.4434366666666665,2.84267,1.9800466666666667,3.6417,2.38386,2.2490825,7.646792666666666,3.331996666666667,3.308873333333333,4.220295,22.28603434065934,0.6833066666666666,2.6874,4.406535,4.62754,8.74544,4.846625,4.387365,4.49258,7.382505,3.589425,1.53333,4.795288333333334,3.668785,1.153,1.153,1.153,2.4486575,1.725055,3.261095,1.59596,3.14462,1.52841,2.625365,2.571005,2.93668,1.59596,3.32884,2.69398,4.291245,4.91506,4.956145,0.7898016666666666,3.273565,2.856985,5.04265,3.628535,2.935915,2.205525,1.693755,1.95773,1.431984,3.89773,1.508195,4.82293,11.168525666666667,2.646943333333333,2.401455,5.0793775,4.4813,4.391266666666667,6.14105,2.1281833333333333,5.440141666666666,4.441375,1.0083866666666668,1.190652857142857,6.627214,3.61494,1.975045,4.368655,1.95289,4.401545,4.502025,4.665255,4.00033,1.323847142857143,3.93403,4.949945,4.71294,6.133628,4.356705,5.4934,4.013645,4.117705,5.1775,3.0830066666666665,4.62837,1.88155,3.377595,3.158215,3.937925,3.913555,6.02525,4.519165,2.61132,3.4874333333333336,9.047665,4.74018,3.0317600000000002,3.457705,2.78944,4.593415,4.461285,5.2189,6.781734999999999,3.546315,2.6349,4.169108333333334,2.375245,4.396515,3.099603333333333,6.380387499999999,1.5248633333333332,4.31307,4.66961,11.62805,0.4855192857142857,4.550605,4.751415,0.6798278571428572,3.61494,4.495745,3.917495,1.0651,4.552895,5.041806666666667,2.81272,10.015503333333333,3.4677000000000002,1.8616533333333332,2.946585,3.297005,6.0153,0.5440958333333333,4.006615,2.2704125,5.0142,0.7018284615384616,4.251575,5.4946,5.88155,3.587195,6.447747499999999,4.316775,3.39707,2.594866666666667,2.8551633333333335,4.3222,4.70644,5.24415,5.19295,5.48675,3.1822933333333334,6.887933333333333,2.812275,3.2334945,2.0621,3.643425,2.462336666666667,1.5603933333333335,3.18376,2.893276666666667,2.91507,3.337566666666667,3.4080333333333335,3.0853066666666664,2.8070033333333337,5.54195,3.2991266666666665,3.817355,4.71531,2.96742,1.140088888888889,3.2456033333333334,3.055593333333333,3.95732,3.4075666666666664,3.2028466666666664,4.774706666666667,2.0371966666666665,1.7142875,3.002805,3.818925,4.55101,1.16172,4.478035,3.17679,4.022766666666667,2.8956766666666667,4.722239,3.97799,3.34577,3.60604,1.637265,3.87532,0.64770625,4.486455,4.818095,16.54470090909091,3.532666666666667,1.3266466666666668,4.70212,0.6645371428571429,2.564725,4.54292,1.80601,1.2274114285714286,3.396115,4.425235,3.1301799999999997,0.6844683333333333,2.60955,7.99096,3.717695,5.5278,4.86814,4.28074,3.1495366666666667,3.660066666666667,3.3610666666666664,7.1187000000000005,3.49483,4.960175,2.0829575,0.47057166666666667,2.165425,3.214485,2.216355,3.07723,4.21834,2.9732266666666667,4.98337,0.6460491666666667,4.53447,3.617895,3.348105,1.1736033333333333,2.6243633333333336,2.06824,4.81251,3.96876,2.161745,1.6414285714285715,3.999725,4.77753,4.59909,6.110125,2.14783,5.06265,4.776635,4.22507,2.29998,3.871485,5.663931666666667,5.00695,2.35874,4.96773,2.67695,2.568985,3.905565,4.15688,1.3859316666666668,4.64399,2.759396666666667,2.6745133333333335,5.009341666666667,5.009341666666667,5.11315,1.7763120000000001,4.771315,0.930515,1.908192,4.825285,2.53609,1.4048100000000001,3.0729633333333335,0.838262,4.335866666666667,4.748805,2.73776,4.70254,3.753635,3.71827,5.47522,3.494915,3.435833333333333,3.0362733333333334,2.4256766666666665,2.820575,2.8779466666666664,4.580215,1.425505934065934,3.1171933333333333,4.61516,5.13325,2.32367625,4.17245,4.590395,4.769758333333334,3.247503333333333,5.1131,4.866425,5.5547,4.89646,3.58608,3.54415,3.80091,4.46201,5.63205,4.357215,4.857995,4.55324,4.66307,0.7682866666666667,4.991785,4.836705,4.26243,7.0383925,3.936545,3.813125,4.04818,4.65861,3.615785,3.722565,2.1104325,4.59969,1.83244,1.3189414285714285,4.227625,2.09706,2.5228033333333335,3.8034766666666666,3.160346666666667,3.073115,1.14033,1.87782,4.01437,3.307985,1.881425,1.881425,3.83254,1.795476,3.2054533333333333,4.91348,3.411785,3.76039,1.5123633333333333,1.953065,3.673795,2.0488,3.7236,4.44172,4.508265,4.09359,7.6274033333333335,2.654,3.66791,4.456275,4.423245,3.177913333333333,4.212565,4.430915,4.054485,2.168945,2.4163366666666666,4.60151,3.868695,3.61891,4.075545,1.6926025,3.285435,4.476895,4.724285,4.311685,3.8773275,3.8773275,3.28964,3.931325,4.63689,4.00875,1.718684,7.85733,3.993505,5.20105,4.44893,4.151905,4.75321,4.8396,3.11701,3.00148,3.032065,5.19675,1.894444,4.893495,5.748437777777777,5.1846,0.769234,4.8200183333333335,1.05476,5.45745,4.15115,5.1801,4.364475,5.43965,3.5765666666666664,3.5765666666666664,0.9200969999999999,2.1638925,5.34235,3.493145,3.83575,4.672425,4.90304,3.498455,4.040685,1.3820783333333333,3.22548,1.6787175,1.23539875,4.476119333333333,0.8262660000000001,2.15002,3.29182,1.2351366666666668,2.150725,2.717033333333333,1.31259,6.40055,1.7994825,2.552773333333333,4.75348,1.914615,2.765476666666667,3.27537,4.70686,3.9453666666666667,2.812656666666667,3.9326333333333334,1.6419380000000001,2.0557350000000003,4.049765,0.6552057142857143,2.7449033333333333,3.03869,3.351233333333333,2.859196666666667,1.2294885714285715,0.8728583333333333,2.5068966666666666,4.379705,1.2164428571428572,2.0234275,1.1955075,5.4521,2.25221,4.735045,4.766415,4.450075,4.76803,5.63405,4.11025,4.336645,1.3922866666666665,4.083333333333333,1.657198,2.6639166666666667,1.1929285714285716,4.63224,2.1443925,6.176411,3.829805,3.697025,1.565996,6.8862325,3.9772,1.4212166666666668,4.0849,3.056855,3.59205,2.938575,2.0152825,2.0152825,3.29628,1.3300133333333333,1.3300133333333333,2.29998,2.61015,2.0702825,1.3209733333333333,3.663233333333333,1.07303375,3.3457666666666666,2.41635,1.98829,1.5252583333333334,2.2631475,2.20228,0.2879505882352941,2.4180025,1.1548749999999999,2.367176666666667,2.2011766666666666,2.4685025,1.0794455555555555,1.091494,3.733366666666667,3.0277166666666666,2.0152825,1.776515,2.31117,2.53803,2.4492966666666667,1.768844,2.8383833333333333,1.1325100000000001,3.2957,2.667643333333333,2.61016,1.5598940000000001,0.916132,2.24909,0.916132,2.24909,0.719355,0.719355,0.5171138888888889,2.333295,2.253766666666667,0.719355,2.2542075,2.3653866666666667,2.380175,1.62209,0.7863655555555555,0.719355,0.719355,1.6793420000000001,1.6793420000000001,2.1536925,1.776515,0.719355,2.2908999999999997,0.4684184615384615,2.653303333333333,2.077173333333333,2.77671,2.5224266666666666,2.5224266666666666,0.3683535,0.3683535,2.29998,1.9633859999999999,2.14486,2.03664,0.3683535,3.6608,2.3685,1.627674,0.596645,1.627674,0.596645,9.6613,2.6132433333333336,3.9905333333333335,2.63363,2.9538966666666666,2.9351299999999996,2.8059133333333333,3.5581,2.523325,1.727915,2.43634,3.8884666666666665,2.3699766666666666,1.6793420000000001,2.3505338095238093,2.3505338095238093,2.8272,2.27668,4.264245,2.3996833333333334,3.2194366666666667,2.6871466666666666,1.6372060000000002,2.5426,2.318315,0.8526427272727273,1.63395,3.296915,1.8275099999999997,3.1216066666666666,2.7342099999999996,2.51235,3.6743666666666663,1.4160083333333333,3.385666666666667,3.319733333333333,4.1535,1.424512,0.27885862068965517,1.365667142857143,1.365667142857143,1.0365922222222224,3.1033166666666667,3.9208,2.80214,2.1494233333333335,2.1494233333333335,2.2540575,1.81505,1.00121,1.7348266666666667,1.7348266666666667,0.719355,2.29998,2.9064533333333333,3.749233333333333,2.41635,2.20682,2.20682,2.20682,1.0993555555555554,1.5369428571428572,1.5369428571428572,2.421405,2.7057633333333335,2.6543421906565654,3.724265,2.58633,2.5123433333333334,3.393455,3.88008,7.2669675,3.672285,4.146465,3.864466666666667,13.0439775,4.673975,3.56031,0.9230175,3.87317,3.20408,2.292415,3.75317,5.23665,7.870288666666667,6.5303,0.474564705882353,4.06434,2.799605,3.865485,2.528125,4.38185,4.10385,3.477875,8.252265,3.50213,3.981,3.942915,3.376113181818182,8.199638307692307,3.3669666666666664,2.692323333333333,3.52956,3.6645,4.823665,4.226365,6.248318,4.403395,1.381874,3.409455,0.89870625,4.91537,6.29575,4.59272,4.12268,5.6602,3.720035,5.1185,4.03037,9.57038,4.07878,4.764369,2.9696433333333334,5.20392,3.091715,1.05638,1.05638,3.45126,4.184145,2.311,2.10598,4.574975,4.836795,3.22554,1.929705,2.709675,3.0145,2.556923333333333,1.1909875,3.447035,4.36622,8.73779,1.720526,3.229665,3.65139,2.875865,2.82157,8.2492,4.10706,3.3502333333333336,2.7963799999999996,3.99165,3.7209,3.26684,2.851366666666667,4.03893,3.802945,4.352715,4.218845,0.398932,1.46734,2.2397966666666664,1.7426075,4.85137,3.698,2.8471666666666664,2.2180125,4.119615,4.01539225,2.30769,2.3434,0.8656119999999999,2.4781875,2.5791933333333334,2.5791933333333334,5.53925,1.8946825,2.7898133333333335,2.3371566666666665,2.2289333333333334,1.7665666666666666,3.02061,4.319035,4.221785,3.78471,5.32745,4.793745,2.799995,2.4835233333333333,1.8192540000000001,4.78649,5.4968,2.03936,3.01965,2.0044275,2.7418633333333333,3.7700416666666667,2.2788333333333335,5.17325,3.78581,3.526775,4.55738,3.0228533333333334,3.658295,4.120615,2.259796666666667,2.4337133333333334,0.41566,3.4120333333333335,2.55924,2.76376,5.9308,4.84019,6.058036666666666,2.00377,1.7296666666666667,3.13657,5.44025,6.332,5.4785,3.015233333333333,2.2752733333333333,3.46464,2.2831533333333334,4.323055,2.04773,2.34225,5.2118,4.6584,5.0879,1.7419925,1.9320225,1.0359159999999998,1.0359159999999998,1.161324,0.8715957142857143,0.807408,1.9047157142857143,4.314835,10.838717500000001,4.50837,4.572005,3.987845,5.665775,2.62382,1.7114,3.5908249999999997,2.9031,4.15727,2.5963600000000002,2.6259966666666665,3.3155900000000003,3.288413333333333,2.507213333333333,3.2742966666666664,3.5414666666666665,3.14654,3.5934666666666666,3.3072466666666664,2.931513333333333,2.75652,3.3567,2.5044333333333335,3.1147633333333338,3.1299200000000003,2.906966666666667,3.503766666666667,2.11328,5.192507523809523,3.3342333333333336,3.9022706666666664,3.2825,2.9480566666666665,3.8724000000000003,2.8566633333333336,2.719003333333333,3.260893333333333,3.2565733333333333,3.6481,3.0496866666666667,2.0065425,2.7706766666666667,2.625863333333333,3.0426,3.0426,3.20612,3.3281899999999998,2.60296,2.9464733333333335,2.9894,4.423533333333333,2.8108166666666663,2.83345,2.7005266666666667,2.962953333333333,4.511583333333333,4.892275,1.6997,3.27844,3.6840333333333333,3.4624379999999997,3.3533666666666666,3.7306666666666666,3.547166666666667,3.1765933333333334,3.319738,1.9248819999999998,2.6309604999999996,3.8183666666666665,3.391033333333333,2.4990799999999997,2.5774066666666666,4.064066666666666,2.916166666666667,3.0745566666666666,2.4186675,1.2453016666666665,3.226623333333333,2.5270033333333335,2.0890033333333333,2.502425,3.3350000000000004,3.1806666666666668,2.0638,5.575931333333333,2.4565366666666666,0.8771169999999999,4.25767,1.9556,1.6090200000000001,4.68418,3.88563,3.360455,2.335315,1.4864875,3.50821,2.569,3.44654,0.421228,2.117515,0.421228,2.00466,1.4864875,2.842015,3.723685,2.601975,3.229005,5.0205,0.499384,2.7310766666666666,0.9363825,0.42910529411764703,4.13914,3.94261,4.80765,2.42722,5.24545,4.132935,3.82442,2.48306,3.7961666666666667,1.686438,6.3576,2.838725,3.932475,5.21135,2.9931,1.8964866666666669,2.1150866666666666,1.4770450000000002,1.81406,0.924805,0.924805,4.57776,2.4638033333333333,6.289973333333333,2.246055,1.898145,2.244655,2.2018435,2.29917,3.879705,4.456815000000001,2.157645,2.33044,2.2018435,2.29689,3.5164809999999997,1.894765,5.9285049999999995,2.246055,3.3415875,3.34799,3.3542666666666663,5.4221,4.40438,1.9601575,1.953715,2.27703,2.898495,4.8813,5.44215,2.011945,3.863035,1.6009133333333334,1.6495275,5.5651,10.29754,2.04468,2.5128866666666667,2.2661433333333334,4.345285,4.243195,2.0888625,4.867995,4.520755,2.785835,39.41553333333333,2.9891366666666666,3.312056666666667,0.4974333333333333,5.039479166666666,2.6078333333333332,0.9692488888888889,3.983155,3.687715,1.909805,1.68241,2.362483333333333,3.863935,1.3702928571428572,2.7081306666666665,4.11114,4.42588,0.9343489999999999,4.74899,4.69313,4.892685,2.7227366666666666,1.357015,3.77595,4.548455,3.73136,3.290705,3.657295,4.078835,12.035760404040403,2.6187333333333336,3.0857,4.45611,2.569125,4.411255,3.234175,2.853945,3.05527,5.4277,4.746625,5.66275,4.99131,2.537025,3.90659,3.916005,3.604965,4.84583,4.55345,0.10431695652173914,2.35709,4.452385,2.79102,1.4473016666666665,1.0155333333333334,1.0155333333333334,1.8985475,2.761755,4.141025,1.390952,2.882236666666667,4.83191,2.557935,4.4730675,0.5940464285714285,4.84003,3.495055,4.86978,4.307115,4.68374,1.34835,1.3041375,4.069766666666667,2.944523333333333,3.0373866666666665,4.219365121212121,3.537645,6.2823150000000005,5.455,4.73256,3.5924,2.0623750000000003,1.55241,5.68415,0.30994200000000005,3.413135,3.80327,4.115305,14.588389999999999,1.9322425,2.92296,0.738735,4.515135,8.47457,3.248825,1.7296166666666668,5.9492,3.4111999999999996,1.0379544444444444,3.83533,3.01858,2.94495,4.84288,3.398889027777778,1.11659625,7.091938333333333,0.73255125,4.70171,3.1764692777777777,1.3861475,2.0997016944444447,3.2820675,3.2820675,3.821705,4.293902083333334,1.493625,2.39943,2.739285,3.60224,2.89973,2.562745,3.22882,3.44285,6.677182666666667,6.44105,4.092975,3.375885,4.49668,3.913575,3.563275,3.430885,3.58926,3.945365,5.04475,2.53634,2.53737,1.5631116666666667,2.327393333333333,2.494105,1.5465375,3.5531333333333333,3.5869666666666666,3.3394999999999997,3.1478933333333337,2.77867,1.5129266666666668,1.51623,0.45827727272727276,3.297413333333333,1.4395714285714285,1.5006175,3.08886,2.5124366666666664,2.7133000000000003,0.91842125,2.3847125,2.632255,2.82794,3.594855,5.4561,3.7951,2.861395,2.2687466666666665,3.51376,4.083665,2.39725,3.498115,1.89337,3.82227,2.793065,3.804815,1.3270066666666667,0.621948,2.18157,3.37,3.2208,3.924705,4.93214,8.95604,3.2440266666666666,2.22902,1.5811466666666665,1.6675419999999999,1.6675419999999999,2.8187333333333338,2.378976666666667,5.4405,4.70882,3.262135,4.447615,4.07429,3.9314,3.1656525,4.514335,7.9003499999999995,2.452985,0.52833,2.90281,1.2780433333333334,1.0425814285714285,1.6554433333333334,0.793542,2.197875,5.11845,5.3461,5.7708,0.99974,7.3611,2.1036,1.5790766666666667,2.7188466666666664,4.3305,3.22448,2.3568725,3.845955,3.2116900000000004,4.137366666666667,2.9632733333333334,2.8070166666666663,3.00464,6.75675,2.52762,4.03102,4.058133333333333,3.7916566666666665,1.5428166666666667,1.231295,4.425005,2.74119,3.11988,5.49875,2.54228,2.16896,2.3707925,3.083645,3.691466666666667,2.37445,4.278511666666667,2.9453833333333335,5.05,2.466316583333333,1.8669025,4.75926,5.2918,4.74244,4.17757,1.4873566666666667,2.4342775,2.0739775,3.450905,1.5646133333333332,0.9261416666666666,2.787681666666667,2.11595,2.1182875,4.113875,0.8961749999999999,6.150665,2.02131,0.7766490909090908,3.9031000000000002,3.912915,0.6341214285714286,3.1719945000000003,3.092291875,0.8728583333333333,4.4045,0.16251333333333334,0.16251333333333334,0.16251333333333334,0.16251333333333334,0.16251333333333334,0.16251333333333334,1.955214,3.75464,1.955214,1.955214,1.9013833333333334,0.16251333333333334,0.16251333333333334,3.1018966666666667,2.470876666666667,3.397425,3.36159,2.286705,3.571905,1.595114285714286,1.69088,3.3302829999999997,1.4168100000000001,3.0828699999999998,2.748188,5.39917,4.50625,3.88092,6.2897,4.64062,4.369255,4.942425,4.3127,7.0235883333333335,3.8648000000000002,3.4752333333333336,2.3368933333333333,4.91735,2.637,2.051765,1.8515,5.05075,4.812665,4.55718,5.11785,5.3299,4.546305,4.703085,0.7107445454545455,0.6685478571428571,0.6685478571428571,4.681455,2.4124033333333332,3.8131,1.0234028571428573,5.51505,1.4537,2.2960333333333334,2.58932,4.230066666666667,4.230066666666667,6.79245,4.450225,1.4866783333333335,11.27454,3.3386333333333336,1.2323,5.2256,4.82679,3.50024,3.06344,2.75118,4.654433333333333,0.73562,3.5065666666666666,3.3269466666666667,3.7843,3.09126,1.5000933333333333,1.4391066666666665,4.569425833333334,3.07769,3.14175,3.3244966666666667,5.2291799999999995,3.46663,0.798354,1.7486333333333333,3.4522999999999997,2.4998233333333335,3.739333333333333,3.4705666666666666,3.1623633333333334,3.7373666666666665,3.197756666666667,2.48028,0.9899333333333334,3.1984999999999997,2.545193333333333,3.46966,3.26934,3.83836,2.6915866666666663,3.4587333333333334,2.84035,1.563772,2.14959,2.737330476190476,3.6408666666666663,1.7144739999999998,3.3201199999999997,1.82725,4.106733333333334,5.213450833333334,4.959848,2.3100375,2.52685,2.8782,2.4339125,1.6022571428571428,2.185515,3.463147857142857,2.53545,3.6595666666666666,2.81698,3.732226,3.066165,1.058721111111111,1.2885,1.8004775,2.2984425,3.4867333333333335,3.5216999999999996,5.12855,7.4839825,2.90338,4.972055,3.88019,15.032988666666666,0.5108900000000001,11.5926125,0.9620822222222222,3.28912,2.44645,2.0689733333333336,2.945775,1.6042079999999999,1.50188,2.6293233333333332,1.1709939999999999,2.8272053333333336,1.9912599999999998,3.0828,2.1315633333333333,2.6749233333333335,1.4906499999999998,0.7764383333333332,3.182423333333333,2.4152366666666665,3.04935,1.0993555555555554,3.6189666666666667,0.7440208333333334,0.3583884615384615,2.423626666666667,4.017955,4.96822,4.17349,0.8097136363636364,4.053305,4.777895,1.1096025,2.77285,5.476070833333333,3.529995,4.268405,3.98176,3.978935,1.975455,3.8944,2.7515733333333334,2.90201,3.565145,2.659775,2.859875,3.81819,3.274465,3.780425,2.01458,3.44014,4.54972,1.2214633333333333,4.529565,2.284595,3.944195,4.873648333333334,2.1298925,2.729033333333333,3.2074266666666666,5.877846666666667,2.50391,3.39757,5.39805,3.9905333333333335,4.521745,2.0021,2.620175,4.517835,3.519833333333333,4.5122,3.3732333333333333,3.4035666666666664,3.2838966666666667,4.1995,3.3471666666666664,2.7423233333333332,3.0020133333333336,0.4424633333333333,2.39078,2.13359,4.789685,4.83597,2.88011,2.5932933333333335,3.25094,8.25817,3.4541500000000003,4.017635,3.09689,4.12575,3.32576,3.7651775,2.5806033333333334,2.2632325,2.7169733333333332,6.2269,4.67211,2.2384033333333333,3.28787,3.080435,2.7052,4.253821333333334,1.7617920000000002,6.419793333333333,3.995745,4.895425,4.49812,6.00895,3.64938,6.8114550000000005,3.966055,3.36087,0.6457085714285714,2.3605125,1.5725975,2.8665233333333333,3.714165,4.046245,3.80912,5.5335,2.83178,4.81302,3.3439333333333336,3.4758,2.9725633333333334,4.60458,4.93678,5.1309,2.492426666666667,5.744298333333333,4.45802,1.5453716666666668,5.3017,3.601695,2.74419,2.23876,2.260753333333333,4.3572386666666665,1.1208685714285713,2.43155,1.9972975,3.889825,4.34818,2.507476666666667,3.4267333333333334,3.0657306666666666,2.324586666666667,3.94698,1.3879860000000002,2.3135,2.3815233333333334,2.9409500000000004,2.515023333333333,2.718476666666667,2.70669,4.110735,2.91991,2.8334499999999996,4.19216,2.31729,3.96212,3.57889,1.6053266666666666,1.6053266666666666,4.487165,2.9685400000000004,1.7654,1.3949475,2.1418875,1.9892975,1.6153819999999999,1.4358733333333333,0.681213,1.5929633333333333,1.49418,3.000913333333333,2.33359,1.8130899999999999,1.9460366666666669,2.382546666666667,1.72524,1.8118033333333334,1.8339266666666667,2.3001225,4.334555,2.869065,2.8584300000000002,2.772475,5.871700000000001,3.099225,4.203205,4.2153599999999996,1.944365,3.961275,2.9916,1.88116,3.505205,1.9468025,2.86453,3.71204,2.078165,4.765285,3.087705,4.149265,3.3430666666666666,0.85568,4.136005,3.89308,3.27332,3.768745,2.73002,4.38156,4.613725,5.2700724999999995,9.259554166666668,3.87955,4.47547,3.422833333333333,3.695425,4.471155,2.41111,2.78418,4.164705,2.1312925,5.822025,1.8184,2.70098,8.0444,3.004846666666667,4.07124,1.20598,4.552405,4.68544,3.2222833333333334,4.51706,4.8557,6.5985,15.886322202380953,0.6291058823529412,1.0794455555555555,3.227983333333333,4.124035,3.69696,2.1759375,3.254215,4.083385,5.01375,2.360815,4.941335,1.7139499999999999,1.7139499999999999,5.4131,0.7560809090909092,1.9386040000000002,2.923805,3.92173,0.37108461538461535,1.90445,4.1891885,1.1574766666666667,3.0813633333333335,2.75156,2.899555,7.97771,2.5527333333333333,3.647733333333333,2.0021666666666667,2.26059,3.6303775,3.69871,3.51713,6.897144166666667,1.8750275,2.9552,4.531175,6.8323825,1.8029666666666666,2.16037,2.5868733333333336,1.46063,2.462215,1.66520375,3.99099,3.991605,1.494345,1.9146589999999999,1.9146589999999999,2.51863,5.47945,3.7597766666666668,3.91214,5.1569,5.30915,3.279755,3.70166,4.11047,3.542395,4.405341666666667,3.334835,4.322365,0.934511,0.369555,5.1968,4.01095,2.532836666666667,8.21276,1.5821166666666666,4.738,4.162615,0.3556958333333333,2.0739366666666665,1.3071266666666668,1.88268,1.6607683333333334,5.514304,3.25816,3.19263,4.5785425,4.23576,4.662095,0.6137284615384615,1.975815,0.603266,5.89447,1.4413360000000002,4.89753,2.23539,3.3912387500000003,3.2497,4.118375,4.190665,5.18825,0.9046290909090909,3.061175,4.064865,1.86736,1.748255,3.645575,3.061855,3.645775,3.84696,5.370295238095238,4.80069,5.46175,2.8839333333333332,0.7713955555555556,3.4725,3.66775,0.6591023076923077,3.9658,4.622725,4.019195,2.646645,2.71881,5.48155,3.269715,3.451585,2.21952,4.03528,1.8916,3.399025,3.82531,0.6581869230769232,4.48479,3.95884,3.244015,3.63978,4.446145,2.66582,3.879715,0.61188,3.02998,3.8257555555555554,4.37074,3.6478,2.2686675,3.4234666666666667,2.2686675,4.883895,3.039545,3.1162466666666666,1.6069416666666667,3.276203333333333,2.08334,4.089555,2.8357200000000002,5.100256666666667,3.213843333333333,2.6467199999999997,2.982136666666667,2.4689305357142857,2.4689305357142857,2.4689305357142857,2.2084766666666664,1.0003900000000001,4.563985,2.38678,1.6777533333333334,3.811866666666667,2.4982,3.221693333333333,3.68972,5.64955,3.777135,2.25726,1.8280319999999999,3.89606,2.02492,2.5302966666666666,2.97923,3.650375,2.144605,3.491155,2.725635,1.800326,4.615395,4.278365,3.175085,3.709435,0.7627266666666667,2.47871,5.02965,7.71068,3.51246,3.054285,2.648335,4.20433,3.781455,1.8252675,2.31753,4.506885,2.1698475,4.59458,3.720245,4.009325,8.686486666666667,4.157885,4.179805,3.5746,5.0834,4.2539,3.37418,3.37418,3.62813,3.812218333333333,4.38679,3.89715,4.163855,4.617045,4.053545,1.1785225,4.32033,4.029935,5.1682,8.166665,4.86577,3.6301726666666667,1.8364266666666669,1.5669616666666668,2.57761875,4.850045,3.829715,4.98359,2.58499,4.267545,4.720545,5.14135,5.1955,3.3258233333333336,3.72787,4.239615,5.19565,5.0016,4.131425,6.378833333333333,4.5713,2.2728333333333333,5.0085,4.031405,4.042385,3.91493,4.65829,0.7706709090909091,4.3179,4.646095,1.276882857142857,1.56676,4.85887,4.98078,8.77826,4.736995,4.893695,6.4416,2.86503,2.6706733333333332,5.24945,1.8817175,1.8817175,2.601765,1.6242433333333333,2.9621283333333333,3.560966666666667,1.953515,4.296574090909091,1.34765,2.14258,5.854665,3.32591,3.59003,2.99643,4.01796,4.1533,3.1138166666666667,1.0826277777777777,4.06514,2.5911566666666666,3.931065,4.59731,3.6108333333333333,5.7551,5.49485,5.2087,5.2437,4.80618,6.5908,4.58032,3.283375,3.47122,2.15925,2.15925,3.92301,3.759275,2.4245,2.7474233333333333,2.2721843939393938,2.987163333333333,2.1748533333333335,2.1748533333333335,4.16625,3.452285,2.13863,3.63692,2.731755,1.916405,1.244525,1.4852999999999998,2.8087,0.49571947368421054,0.8515822222222222,2.69606,3.77268,0.44987090909090904,3.817985,1.8248719999999998,5.55835,3.481285,6.939814999999999,4.24529,5.206806666666667,4.944745,4.405025,4.22677,1.83777,1.883464,4.253125,2.95728,3.718925,1.2736466666666666,3.427705,5.431,2.77577,2.533715,2.606385,4.385475,3.59038,3.349455,4.00235,3.648225,3.468255,4.267655,1.0200371428571429,1.8501,2.42161,3.01224,4.338285,7.87626,0.9183479999999999,1.5836633333333332,1.5836633333333332,1.863998,3.952405,2.76711,2.971565,4.96157,2.8727366666666665,1.20097,1.20097,1.20097,3.042945,3.082307,4.68234,3.169825,4.219925,3.355955,3.704145,2.95008,3.302875,3.68046,4.23068125,2.5610175,1.6153819999999999,3.130955,2.5610175,3.78542,1.4153733333333334,1.8480633333333334,1.9338925,5.410078,2.953845,6.291722999999999,5.410078,3.337878,1.7894633333333334,1.7894633333333334,2.639995,5.39115,1.7894633333333334,2.334315,5.65838,2.252495,2.765705,5.16146,3.641105,4.30893,1.89936,3.3488,4.67087,2.2134833333333335,2.23702,4.35628,1.89936,2.501215,2.06028,6.10936,2.58658,1.174256,2.490785,3.280005,3.283385833333333,1.829795,2.0356025,4.20352,1.971493333333333,1.904005,3.234465,2.215555,3.302675,3.5523,2.2470233333333334,2.609545,2.33539,6.64683,2.362865,3.27133,3.27631,3.27631,8.65488,0.9387099999999999,3.1035,2.549175,3.1183,2.278515,1.2479133333333332,1.2479133333333332,3.3298,2.027285,7.2832550000000005,2.152495,3.472275,3.30485,6.28875,2.546325,2.50449,5.99215,5.99215,2.25455,1.4443325,1.2076525,1.2076525,1.4443325,2.06443,1.4360666666666668,1.1958166666666667,1.5398433333333335,1.9932999999999998,3.659945,1.80539,3.58762,2.883095,2.844225,2.793675,2.78104,2.318465,3.315376666666667,3.315376666666667,5.97348,2.35964,2.88429,2.905765,3.25428,2.383195,2.72922,2.50444,5.8720125,2.0405875,1.522495,1.3034266666666667,2.2324616666666666,5.75618,4.063835,3.4703749999999998,3.23832,1.813695,1.813695,1.813695,5.54876,2.44593,1.1958166666666667,3.30674,3.400625,1.36228,5.33582,3.1390599999999997,6.36479,3.3011,1.755895,3.426625,3.088786666666667,2.445815,3.61593,5.06102,3.2573,1.852665,2.25366,2.921735,3.1495,5.13378,1.947105,3.298475,2.57812,5.92838,4.6223,1.93322,2.343815,5.55544,5.05901,5.01757,5.73294,1.114276,1.114276,2.193352,2.193352,0.781272,5.53975,3.2887,5.30516,4.09246,5.18226,2.149265,4.316343333333333,4.316343333333333,2.18668,3.312275,3.660535,1.21903,4.49069,3.38169,3.100685,2.672605,4.49195,2.59818,1.8448,3.4292,2.852425,3.064525,4.84774,2.53705,1.89517,3.69155,5.97108,5.78854,4.29775,2.76378,3.84289,2.22815,5.12573,2.55806,3.64823,2.002385,6.60003,3.89262,2.47354,3.0564,2.28317,4.93714,2.308125,2.69356,2.977955,7.25155,5.09152,3.333635,2.202765,2.10945,6.70773,3.19267,3.08232,4.75478,2.93676,2.847455,2.67024,3.12995,1.9020000000000001,2.0205,1.8371333333333333,1.73153,1.9400033333333333,1.92425,1.464775,2.0617666666666667,1.72262,1.9020000000000001,3.94006,3.91351,2.04785,1.7012800000000001,1.7012800000000001,3.812286666666666,3.812286666666666,2.929333333333333,2.929333333333333,2.782675,2.199,1.75769,3.58314,2.134985,2.134985,2.3726599999999998,2.3726599999999998,2.828,1.95789,4.49371,2.188525,3.41782,2.0022933333333333,2.0022933333333333,1.717275,3.91258,5.09316,1.4153733333333334,4.50052,2.2470233333333334,2.152645,4.1947,3.176985,1.83887,2.56587,6.09016,2.175405,5.75766,3.259455,3.404665,3.064145,2.634245,6.61019,3.34142,2.411475,2.657077692307692,2.9145,5.35166,3.56554,1.530874,1.530874,4.47192,5.17826,4.72611,5.33574,2.85465,2.753955,2.001425,2.96579,1.68063,2.73474,1.871725,0.85662,0.85662,0.85662,1.8952816666666665,4.8196666666666665,1.8952816666666665,2.10675,3.6390149999999997,1.57773,2.09865,4.73766,3.49183,5.12518,1.7082033333333333,5.16349,1.7082033333333333,1.7082033333333333,1.984575,1.795405,2.402445,5.9073,2.402445,2.48133,4.20944,2.14558,1.951785,2.680235,3.17688,3.5324325,3.0172233333333334,3.86908,1.3450666666666666,3.962555,0.7186845454545454,5.03515,4.314455,2.5051949999999996,2.5051949999999996,0.66808,3.9371666666666667,2.5700499999999997,5.4657,5.0597,4.12341,5.2465,4.000565,4.121875,4.91126,4.379975,4.299365,3.936705,3.879765,4.528775,5.1731,3.45607,3.355725,3.83757,2.7057966666666666,1.25245,4.340395,4.052295,4.440955,1.6260571428571429,3.967845,4.12173,6.394885,1.124735,4.817815,4.24888,2.088615,1.98911,3.26466,3.62888,1.609365,1.530874,3.809405,4.012305,2.69009,4.779615,3.07145,1.18232,3.1819733333333335,1.23187,3.044496666666667,2.0324233333333335,3.2053833333333333,1.891065,2.56685,4.1082,3.314205,4.470535,3.217065,2.189475,4.73824,4.34148,3.07613,5.645,4.134925,2.7343466666666667,6.1757,4.22363,3.1503799999999997,2.6174733333333333,2.41794,2.99121,2.7451033333333332,2.76533,4.792355,4.15742,3.765125,2.4644133333333333,2.6234866666666665,2.43662,2.6432966666666666,2.56333,2.3809333333333336,2.1573066666666665,2.1485,1.2907975,3.0448756666666665,1.1796175,1.94242,1.6425825,2.622175,1.580885,2.05449,4.103575,5.07555,1.9805825,4.08291,4.40435,6.434258333333333,2.17755,1.5273400000000001,6.8498,3.47436,4.139705,3.76679,3.45761,2.037515,3.58426,2.4021975,3.067165,4.503955,0.7192875,4.24243,2.04752,0.7759481818181818,5.36825,4.663105,4.03871,1.8384878571428571,4.94793,4.698655,2.72654,2.57588,2.52486,2.12841,0.62827,3.10895,2.954025,5.07205,2.6175,1.9540925,4.06381,1.1300075,1.9117916666666668,1.9117916666666668,2.75552,1.9117916666666668,4.50086,2.77517,4.712725,4.50533,5.8478,13.183528333333333,3.1822533333333336,5.13665,2.723155,4.75164,3.006345,6.41208,2.9526299999999996,4.64738,4.656305,3.809695,1.2707116666666667,4.709255,2.9171133333333334,2.8637766666666664,1.0432788888888889,2.1313475,3.36508,6.685840000000001,4.080575,2.61015,4.18248,3.29628,4.35668,5.16715,4.44553,2.948925,2.8983633333333336,4.14744,5.5198,2.499845,4.51755,2.137045,2.137045,3.111685,4.652995,1.004275,4.19468,2.536475,4.47784,2.599833333333333,2.3082966666666667,2.6943933333333336,2.2999199999999997,0.6747492857142857,3.45834,2.6625466666666666,5.18205,4.443615,0.23668,5.2544,4.75421,3.724175,6.879935,3.26003,2.867013333333333,2.0516,3.3611,2.98413,1.32295,2.7767633333333333,2.68955,1.3567716666666667,3.1417,3.2526533333333334,2.6337266666666665,3.2726366666666666,1.1884177777777778,4.3752,2.403105,4.863945,4.69321,3.777495,1.63312,2.5489433333333333,1.3119725,1.85567,1.3119725,4.594975,3.5924333333333336,1.630744,2.264965,3.977425,3.86137,3.08396,3.853465,0.3693025,1.3624058333333333,3.90758,4.212645,5.6548,1.85852,2.730933333333333,3.3953666666666664,2.4423733333333333,2.44639,3.17116,4.361885,2.0119025,1.9531433333333332,2.9605766666666664,2.7512000000000003,2.6195,4.770695,1.9957,4.445225,3.740665,5.89625,7.61912,0.8410411111111111,0.906565,3.45678,6.57923,1.8857500000000003,3.55669,1.5891199999999999,1.5891199999999999,3.44267,0.45093222222222223,3.60402,3.891055,2.64524,4.16872,3.28989,2.569305,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,1.974255,3.16316,4.414008333333333,3.1225483333333335,4.263482499999999,5.964565833333333,2.91201,2.0223033333333333,0.9569133333333334,3.456705,0.6659875,5.111135833333333,3.0888324999999996,2.289765,0.6659875,3.036525,2.753465,0.8907525,4.0708874999999995,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,4.28498,1.6392225,4.38082,4.794835,1.95417,4.584095,4.01448,5.31555,4.8091550000000005,3.581389642857143,3.24941,4.512055,2.117695,5.2799700000000005,3.99582,0.7519785714285714,1.3058857142857143,1.2388185714285715,3.2988999999999997,3.2988999999999997,2.8517900000000003,3.76259,4.85756,3.97999,4.06589,3.0337266666666665,1.9979333333333333,0.4858357142857143,4.11531,3.106355,2.76102,4.34112,3.32228,3.0633075,4.40381,4.362965,6.47346,4.33012,4.342245,5.4539,4.66699,1.3926200000000002,3.06109,5.276636666666667,34.00657510064935,1.1987666666666665,4.56515,3.63332,4.42235,4.223485,4.03516,5.1535,0.4127247619047619,5.05075,4.26209,1.9104325,1.7769,3.720075,1.996035,2.450575,2.1601,1.7351675,2.835325,2.4492966666666667,2.823805,3.271725,0.62129,3.848575,3.81627,0.3471563157894737,2.672423333333333,2.531515,2.756835,3.88911,1.87465,4.60953,4.02557,3.256085,4.15046,3.0532,4.592665,2.894455,3.799125,2.1595225,5.276636666666667,3.85217,4.194,2.819175,1.62071,4.010535,3.47263,6.9694183333333335,3.42918,4.51162,6.185715,5.179727,2.3170325,4.63552,6.647724999999999,7.35913,2.35005,2.66955,4.780165,5.450773333333333,3.84404,3.291395,5.1939,2.444305,1.6572525,2.340565,60.493722825691684,5.21325,4.179915,2.520725,1.0580500000000002,2.8044,3.055153333333333,3.352266666666667,0.8348477777777777,4.584415,0.7470155555555555,7.685519642857143,2.02492,3.4280666666666666,1.884094,2.738735,2.59956,2.677163333333333,2.439976666666667,2.2994133333333333,3.2994566666666665,1.4994566666666669,5.607700833333333,4.082533333333333,1.5251675,2.7020233333333334,1.38002,1.4881625,7.57571,5.7286,3.29782,4.770585,5.16887,1.5355285714285714,3.5889,3.26519,1.7140425,4.90792,3.546995,4.22109,1.6242775,3.0089875,3.7124,4.00021,5.47135,4.10877,4.241845,1.8569375,3.88632,4.498633333333333,3.3405,1.3703319999999999,3.97816,3.4355666666666664,4.00463,5.1564,4.035075,3.66039,4.434155,4.425245,4.432075,4.59386,4.11329,3.232336666666667,3.59541,5.16545,3.19398,4.156775,3.6194,1.3865824999999998,1.3865824999999998,4.30212,4.978515,5.40455,3.85056,4.715685,3.495566666666667,2.792605,4.656775,5.7128,0.724470909090909,5.2566,6.738507500000001,5.7044,5.7951,1.0445422222222223,3.11731,0.9712616666666666,0.9712616666666666,0.9712616666666666,3.72826,3.5851333333333333,2.5441266666666666,3.4250333333333334,0.915131,4.558415,5.1706,3.02845,1.5065525,1.9527325,3.810045,4.47118,3.783765,3.285932,6.4087,4.865475,2.6470366666666667,4.51019,6.9814,2.401225,4.317405,3.786195,3.20244,5.13055,4.71611,5.13125,5.82145,4.550265,3.44688,1.9119666666666666,1.9119666666666666,0.7115381818181818,8.502588,2.13424,6.203,5.45575,4.535595,4.35506,3.74255,3.0139716666666665,4.480835,7.5834,5.738063333333333,2.1373866666666665,4.572135,1.01261,3.776365,1.9435733333333334,0.9319055555555555,1.1450171428571427,2.6267366666666665,3.00904,2.80353,1.146297142857143,2.7201633333333333,3.0174866666666667,0.9156077777777778,2.9289400000000003,3.3313166666666665,1.698028,1.80585,2.84306,3.3445,2.53649,2.5197433333333334,1.7006599999999998,4.558605,4.30162,3.93867,4.272405,4.829045,3.25073,4.70845,6.17045,5.29785,4.502025,4.037975,11.801621666666668,8.332944999999999,2.7070266666666662,3.61743,1.9981133333333334,3.81108,3.217135,4.575435,1.0031233333333334,3.76821,3.708845,1.36838,3.77205,2.8154633333333337,4.39345,3.80913,3.912085,6.97545,7.632153333333333,3.970375,1.52051,1.52051,1.52051,4.703005,1.1847999999999999,1.3781875,0.46215611111111105,4.5235891666666666,3.0769366666666667,3.41402,0.9402200000000001,1.1414575,3.38836,4.345945,3.7941,16.931355321428573,4.043565,4.55863,6.0864875000000005,2.56086,3.637485,2.99125,0.9627055555555556,1.4475075,4.100245,3.514285,4.288495,3.927155,4.44264,3.97022,2.8150542222222223,3.469765,5.11705,0.575885,4.708725,2.34893,4.392115,5.3113,3.4813666666666667,2.5322999999999998,4.011839999999999,1.65606,4.033585,5.8675,2.7363999999999997,2.65553,3.97602,4.315485,4.141835,4.268695,3.498355,3.984755,4.70736,4.818605,3.598545,4.567095,4.12034,1.0843971428571428,1.805845,6.474149,5.75235,4.47052,5.1595,2.656125,2.8640133333333337,2.83663,5.346453333333334,2.0060225,2.11084,2.8399666666666668,3.30288,3.4065666666666665,4.72504,3.516645,5.199145,1.162565,4.64731,0.9068483333333334,4.204005,3.38,1.6679650000000001,4.016555,0.9927,4.84348,5.5166,5.0242,4.57643,3.8999541666666664,4.00867,2.9333533333333333,5.29205,5.70465,2.8934855,4.009295,2.4241,2.59123,2.04297,2.463005,3.99153,5.10305,1.07303375,4.5570775,1.4481275,3.318875,1.5898433333333333,1.07303375,0.23283621621621622,3.581535,3.085475,2.3219908333333334,1.9275900000000001,2.69355,1.0858975,3.708375,3.452245,4.833725,2.57104,6.5411,7.440059999999999,2.9846466666666664,3.110746666666667,2.7981700000000003,0.8440960000000001,2.38265,6.19435,4.656405,5.2912,4.88433,2.09691,1.4308633333333332,3.8834750000000002,1.6763775,2.306505,1.738465,1.7170325,1.6869825,1.9778525,2.37589,1.9586275,1.995895,1.35134,1.4307625,2.14191,2.74745,2.148845,2.303783333333333,0.5245173333333333,1.7359259999999999,2.9076533333333336,3.0627333333333335,1.7994825,1.9520066666666667,1.597145,3.58308,2.2558366666666667,2.716055,2.92515,4.16299,3.51347,2.4413233333333335,4.19821,1.7353043382352942,4.538423750000001,24.963538,4.5553566666666665,5.22335,4.51342,2.353616666666667,3.878025,5.06475,2.21148,4.80186,3.391766666666667,0.80184375,3.05056,4.890695,4.336725,4.201445,1.4916,2.06181,2.4050533333333335,2.3733,1.296172857142857,3.4854000000000003,5.20895,4.229065,3.44409,4.001645,5.17185,4.919625,6.16025,1.21867375,3.12283,4.12845,4.855635,1.575546,2.8250766666666665,1.80855375,1.80855375,3.584165,4.827395,2.8757366666666666,2.9046366666666668,4.515695,3.999145,6.790285,4.398685,2.22838,1.4475075,2.71345,4.28338,3.3457666666666666,2.3505338095238093,2.3505338095238093,3.4132,4.746885,4.020175,5.38943611111111,2.385025,3.226946,0.6003566666666666,0.6003566666666666,0.6003566666666666,3.398625,3.83071,4.433025,5.7011,2.0380075,5.6994,4.82593,4.932035,3.363285,4.597335,2.36706,1.495242857142857,4.394305,5.22255,0.478595,4.248566666666666,4.85053,1.5438266666666667,5.2363,4.85132,4.362505,4.18507,3.87077,2.80885,4.83147,1.689924,4.380125,1.65956,3.52856,6.1874,1.21385875,3.113595,7.48732,3.487205,4.087366666666667,2.2407725,3.71512,5.37745,3.5402,6.688563333333333,4.552485,2.2827633333333335,3.0361,2.85891,2.7070566666666664,2.9489699999999996,1.8187033333333333,4.830975,0.56342,1.9351224999999999,1.9351224999999999,3.119545,5.34665,2.2885625,3.186655,4.57433,4.63786,4.408,1.3963433333333333,5.004273583333333,4.532535,5.12935,3.516625,4.204174833333333,3.7190895,0.4850853333333333,2.578113142857143,1.1497825,0.4850853333333333,4.316555,0.8472577777777778,3.865555,4.20914,6.749654,2.23088,1.0687975,1.12345,2.38497,3.1295333333333333,1.7351133333333333,2.450736666666667,3.370705,3.535915,2.11387,2.3998233333333334,4.364865,3.2400425,4.050255,6.1715,3.658235,4.810525,6.914798333333334,3.989705,3.65435,4.474505,3.73476,4.311425,4.94352,6.1973275,5.38815,2.62916,0.9564422222222222,3.81934,3.846595,4.139265,4.780095,4.034925,4.455105,2.8823733333333332,2.62175,3.038513333333333,2.5333433333333333,2.4607566666666667,2.694656666666667,3.1450066666666667,2.460053333333333,4.34254,5.0216,4.49296,5.81605,2.946213333333333,3.5969333333333338,2.87155,0.7419357142857143,4.259875,4.185355,4.562175,3.1266533333333335,5.4793166666666675,3.156305,4.452555,3.855555,0.5664492307692307,0.5672064285714286,4.403555,2.7580995,3.114975,4.696685,4.38102,1.714528,5.0717,4.29286,2.730653333333333,2.7643166666666663,2.319075,2.090930833333333,3.334766666666667,3.0685066666666665,3.2337666666666665,3.1906166666666667,3.6624666666666665,2.75675,3.390966666666667,3.972766666666667,4.41722,0.60218,0.60218,0.60218,3.1716575555555555,3.628033333333333,3.7009333333333334,2.9139433333333336,2.4986333333333333,1.1785225,3.0905799999999997,3.2439699999999996,1.8178575,2.8068000000000004,2.3002033333333336,1.0220233333333333,3.0332183333333336,4.76701,10.223025583333333,1.5628928333333334,0.613634,3.877745,0.613634,0.613634,0.613634,0.613634,2.1626275,4.1116304999999995,4.111235,5.1005,5.9462,2.7762933333333333,3.03935,3.1341625,3.538526666666667,4.978275,1.2225416666666666,2.4339833333333334,3.2318700000000002,2.5070833333333336,3.4003666666666668,4.2312,2.2736,4.197455,1.1474444444444445,4.711585,3.08234,3.3378,0.8487125,0.633747,0.633747,0.9697118260869566,1.8184243260869564,0.9697118260869566,0.9697118260869566,0.32843782608695654,0.32843782608695654,0.9697118260869566,1.4092366666666667,2.4859466666666665,3.137065,3.1190466666666663,2.5970366666666664,2.665033333333333,3.2491066666666666,2.7911566666666663,4.53245,3.653145,1.922995,2.31324,1.7508475,0.18966266016200298,0.18966266016200298,0.18966266016200298,0.18966266016200298,2.5584166666666666,2.5706599999999997,0.859828,5.0336,0.8049081818181818,1.7361339999999998,4.847930833333333,5.5182,4.119935,2.802125,4.45934,3.777295,1.9269299999999998,1.2324875,3.6485,4.21445,6.3115,2.299075,1.35265,1.8975,3.7626666666666666,1.4649133333333333,2.78538,3.0645866666666666,2.987436666666667,4.30775,3.89719,3.113825,4.862515,2.71035,4.1226,5.95245,3.979185,4.4026,4.888595,5.126786666666666,4.513379166666667,2.9248388571428574,4.816495,4.23134,5.83605,4.12553,4.229045,2.06981,3.061305,4.327045,5.0272,4.398375,4.093045,3.32801,3.43606,3.807195,2.4389766666666666,5.8887,3.69756,7.6479550000000005,5.66675,5.71515,4.95071,1.4769857142857143,0.924474,0.6180207692307692,1.842336,4.69282,5.3606,3.98176,1.57421,4.505805,3.042825,5.18775,5.12995,6.269947999999999,4.09571,3.09563,1.80404,5.3657325,4.005495,3.07939,1.6515975,0.98240625,4.01115,3.403335,3.3815075,3.66202,2.24124,4.81475,1.67173,3.00342,2.54138,4.274945,5.07635,4.90878,2.1979025,1.55312,5.38105,2.9099466666666665,8.879,2.7885,4.755155,5.8617,4.380025,5.03325,3.426365,5.4592,2.27161,4.111775,4.905829,2.2814475,4.93691,4.452645,7.67235,5.0871,3.4433333333333334,3.962735,3.75252,3.2400425,3.62591,5.4235,5.68355,2.360865,3.028423333333333,3.3058333333333336,2.30336,4.383555,4.45807,5.8096,5.3134,4.76868,4.893205,4.54424,5.16775,0.6292630769230769,3.15451,1.1537514285714285,31.346426718599034,2.512555,4.6036,3.04342,4.687065,1.753932,2.5296566666666664,3.3494716666666666,1.6352966666666666,1.6352966666666666,1.6352966666666666,1.6352966666666666,1.714175,3.53591,0.35729333333333335,7.710641249999999,0.35729333333333335,4.538405,5.1411,2.055275,5.4413,2.669425,4.016947333333333,2.4259066666666667,2.445393333333333,2.7443633333333337,2.1440366666666666,0.6410215384615385,2.6499533333333334,0.7052200000000001,3.0589166666666667,2.2081733333333333,2.465592,1.2642516666666668,2.465592,6.14505,8.169215000000001,4.607795,4.627075,5.73625,6.0025,7.618236666666666,3.277625,1.594405,1.594405,2.41939,4.87449,3.651175,4.493855,5.861951666666666,4.349865,2.635175,3.92633,3.494095,3.445085,2.17491,1.13987,1.90581,4.177665,4.4725,5.281236666666667,1.984905,4.115095,1.346384,3.364075,1.205462,3.2028133333333333,3.04045,2.13292,3.1278,3.4363333333333332,4.90655,0.6500746153846154,3.55172,3.6029,2.372813333333333,2.37787,4.07761875,3.3057133333333333,1.94088,5.1918325,3.54192,5.09665,3.89611,3.69761,5.4031,5.1098,2.382163333333333,5.8476,2.3714709999999997,1.7987666666666666,3.1837433333333336,2.6301533333333333,3.1153133333333334,2.519665,1.7857166666666666,3.175261681818182,4.308185,3.6154174999999995,2.2427263333333336,2.2427263333333336,2.49401,3.981135,4.17985,0.5711372727272728,3.3304,3.188625,8.7683,0.9562,4.21232,3.579655,5.5532,3.73424,3.91455,2.295915,3.65143,2.94591,6.2552,2.721645,4.032095,2.6500833333333333,4.021675,2.4277333333333333,3.66263,3.79138,5.4586,5.083589,3.30957,2.02004,5.1907,2.51968,4.526195,4.45487,4.604705,4.72983,4.05185,2.84775,2.2528466666666667,2.7824233333333335,2.49645,2.9627250000000003,3.21659,2.801614047619047,5.029098333333333,2.9433966666666667,2.44962,6.5721041666666675,4.987487916666667,3.9727224999999997,3.1332866666666668,3.8412,4.07021,3.59885,2.582275,4.471755,5.4968,4.534375,1.3798966666666665,4.691945,2.8891066666666667,7.29142,5.1334,8.551784999999999,4.14963,3.3674,2.274435,4.142735,6.026795,8.01047,4.46791,6.04357,4.087175,3.331145,4.080405,1.7617920000000002,4.864515,1.5555833333333335,3.822355,4.764795,3.368866666666667,0.8562416666666667,9.750741666666666,1.2540333333333333,1.86168,2.4963933333333332,1.8807166666666666,3.2948299999999997,1.3588533333333332,3.719325,3.42837,2.4934366666666667,4.446215,1.1998775,3.629985,1.3617683333333332,2.8806935,3.86831,5.38,1.89938,5.776011666666666,2.3184393333333335,8.01958,4.44837,2.991885,4.04966,3.36475,1.3469679166666666,7.57282,3.015815,3.345895,2.447315,4.13522,2.3731975,3.1147275,2.27077,4.017805,1.3780175,5.71705,3.629455,4.291965,0.9075810000000001,1.9239353333333333,3.887705,4.99802,5.34554125,1.50458,1.50458,5.88955,3.94492,5.15595,3.7774,3.46756,8.239435,4.671905,5.58695,4.041905,2.631475,2.2243066021505378,0.368483,0.19618193548387097,0.6548386021505377,1.200985,0.6611619354838709,0.19618193548387097,1.4631154999999998,0.45865666666666666,1.569468,2.1179541021505375,1.902465,2.33885,2.11382,5.1599,6.683809999999999,4.9557,5.3323,4.594345,5.35175,1.26914,4.95266,3.941025,5.8029,5.56025,5.47125,5.8479,5.89775,5.7587,1.2641866666666666,1.4356428571428572,2.0647200000000003,6.486356,1.357856,5.69415,4.50531,6.97225625,5.1464,5.4214,4.241085,4.689005,2.60415,5.81375,5.5129,4.633956666666666,4.75573,5.670170000000001,5.50465,3.89449,4.35745,3.894,1.01694,3.7203999999999997,4.422,1.20826,3.7368666666666663,5.0361,4.2659,5.26355,2.52695,3.17922,2.6346133333333333,4.51391,2.24061,3.68796,1.3591199999999999,3.10803,3.869385,4.382955,5.2229,3.34927625,0.6065841666666667,5.9673,1.06597625,3.5124,2.885683333333333,3.711275,2.0655466666666666,3.94931,3.749566923076923,3.5813,4.665525,15.099691642857143,5.3099066666666666,2.01952,8.47898,1.50073,3.927915,2.8773233333333335,2.8874933333333335,2.225566666666667,0.2036295652173913,2.88668,5.0574,1.843906,2.19828,3.5651333333333333,1.8925075,2.2807833333333334,1.334232857142857,3.272795,4.60743,4.05663,5.09675,0.4736885714285714,2.4023066666666666,4.70398,2.740665,5.49585,4.74111,4.431935,4.81508,0.5188982352941176,2.5510566666666668,2.5510566666666668,5.63325,3.66629,5.04425,2.633875,3.5144333333333333,3.21218,5.24615,3.790665,5.925270555555556,4.978635,4.369725,5.0403,2.472285,1.941266,4.391485,4.086185,3.90991,3.610615,1.817792,4.12895,4.43442,3.820325,4.51704,3.882835,4.09842,0.599164,2.993545,0.6600783333333333,3.171473333333333,3.49274,4.553215,18.678300476190476,4.269595,3.92563,3.088786666666667,1.0413225,2.4183833333333333,2.61016,1.5598940000000001,2.35594,2.503395,5.03945,2.2593633333333334,4.14235,4.891885,2.4689825,4.616835,2.6892366666666665,4.244975,5.49285,5.5125,1.601995,1.758365,3.05943,4.626005,5.0076,1.1551666666666667,4.939865,3.74027,5.72345,4.919135,1.74766,4.676365,3.423335,3.49917,5.179,3.854055,3.10352,0.6404075,8.217536666666668,1.433494,0.1854763888888889,0.1854763888888889,0.1854763888888889,4.93343,4.2306,2.67844,4.33867,2.757425,4.6804,4.303995714285715,4.070963333333333,8.631183333333333,4.01148,7.395386666666667,0.854255,0.81635625,2.526625,4.84586,4.602935,2.2123166666666667,5.3885,5.8732,3.51413,3.314665,4.45201,2.2964233333333333,4.48262,4.7272935,2.367176666666667,2.859246666666667,3.0796500000000004,2.667345,5.80735,3.757415,0.6559864285714285,3.53211,3.36819,4.42316,4.952893333333334,4.85542,3.14641,5.2049,3.6003,13.79535875,4.621995,6.904127083333333,2.7696433333333332,6.591504,4.44477,3.85515,2.20228,2.3151462499999997,10.4565,2.3841733333333335,4.121066666666667,3.8402333333333334,3.7167999999999997,2.976573333333333,2.83607,2.1393225,2.1396225,3.0981233333333336,1.8539100000000002,3.722566666666667,2.4875833333333333,2.5865766666666667,3.1833233333333335,3.442833333333333,2.5626,2.5626,2.6532733333333334,3.281333333333333,3.4469,2.5483733333333336,3.4217666666666666,4.062033333333333,2.71908,2.656683333333333,3.5429666666666666,2.216886666666667,2.296115,3.7414666666666663,2.9198133333333334,1.85868,4.3674333333333335,2.53478,2.5319933333333333,2.92267,2.417925,3.236803333333333,5.806488333333333,2.3932100000000003,3.9966000000000004,1.8962166666666667,10.762138666666665,2.672966666666667,1.95809,2.07846,1.0365922222222224,1.6738019999999998,4.5718966666666665,2.683752,2.683752,1.596216,1.5660366666666665,3.669411666666667,3.9714116666666666,2.280886666666667,1.4309933333333333,1.6419380000000001,4.500661333333333,3.27995,4.117,8.227926666666667,2.892902857142857,2.39646,3.2213406832298137,4.278066666666667,2.296115,3.315716666666667,2.9992300000000003,3.3847,3.4462033333333335,0.84791,3.559041,2.90569,2.8102733333333334,4.446925,2.93223,0.659429090909091,1.9819911904761907,5.18515,2.5136645,3.1930066666666668,1.6115199999999998,1.6115199999999998,2.1211525,3.6776766666666667,1.10483,2.176605,4.69099,4.69099,0.6550952380952381,6.157465999999999,3.41376,4.097315,5.0719,1.2492185714285713,3.5131666666666668,3.4333666666666667,5.313599166666666,6.062559666666667,2.8173166666666667,0.728158,2.41038,2.6404366666666665,3.165536666666667,2.55669,2.50294,2.9354566666666666,2.45237,2.545706666666667,0.8337427272727272,4.310745,4.745945142857142,1.28431,1.7000571428571427,5.30905,2.272815,1.77442,4.167145,1.675956,3.56676,2.4514075,3.6264333333333334,8.732073333333334,4.346940833333334,4.16034,4.991675,2.362955818181818,0.698082,1.831224,7.2309866666666665,1.7459366666666665,4.243455,3.7989,3.545075,21.189815833333334,3.2001066666666667,1.3787666666666667,1.0805725,3.185976666666667,1.4365666666666668,4.07124,5.64785,3.42492,3.251383333333333,1.2067933333333334,1.4504533333333332,2.8348866666666663,0.5661775,3.27974,3.7838666666666665,2.894833333333333,2.614684,2.4588566666666667,2.939216666666667,2.05593,2.9247833333333335,1.590066,3.2091366666666663,1.5122083333333334,3.85316,4.257515,2.1767833333333333,4.995585,3.15369,4.107265,5.18715,4.250935,3.0824599999999998,2.69694,2.4386733333333335,1.1684557142857144,1.1684557142857144,1.1684557142857144,2.34792,3.1488866666666664,2.6130733333333334,2.5135033333333334,2.8994033333333333,1.68003,3.928795,4.378745,3.761665,6.537129999999999,3.48316,2.46546,1.9446625,0.9620233333333333,2.58145,4.003025,2.5565599999999997,2.7147966666666665,2.3128233333333332,2.4125866666666664,2.5945899999999997,2.87377,2.83422,2.9546266666666665,2.3695366666666664,3.153283333333333,2.0124400000000002,2.2501,2.0891625,1.07576,3.1397366666666664,2.80266,2.0173125,3.94916,5.0382,2.6933933333333333,2.398530576923077,5.648581666666667,4.103865,4.53961,5.45315,4.5035,4.28656,5.9925675,1.20293625,4.234125,2.653245,5.22615,5.3731,3.53351,3.78322,2.1734425,7.500265,2.29286,0.8657499999999999,7.63172,5.00883,5.937093095238096,4.64401,2.86118975,1.8439525,4.98209,4.418915,4.730835,4.987695,2.4747,4.121855,4.428975,1.7508475,3.95663,2.740275,1.3188283333333333,4.987525,0.6115176470588235,4.382433333333333,4.01503,4.834695,2.986355,1.710525,3.39668,2.10022,1.375275,2.67641,3.5099666666666667,3.09948,6.926954615384615,1.4850475,6.341328333333333,9.706119999999999,5.56115,3.30272,1.2060785714285716,2.728953333333333,1.2060785714285716,2.8580666666666663,2.1938766666666667,0.2559135294117647,1.1272672794117646,0.2559135294117647,0.2559135294117647,0.2559135294117647,1.1272672794117646,1.1272672794117646,0.2559135294117647,0.87135375,5.0657,3.439315,3.30572,3.3768,3.667625,3.473215,2.6179346666666667,1.640412,6.458613333333334,2.62602,4.131865,2.6796133333333336,1.0128000000000001,1.20877875,4.791265,3.567045,1.05247,1.5472759999999999,0.7356863636363635,3.0272103484848483,4.232225,5.22155,3.5665999999999998,5.5236175,0.5452523076923077,4.283335,2.9312625,2.9347100000000004,2.623206666666667,3.5139666666666667,2.5284166666666668,2.8635266666666666,2.6780266666666663,3.077325,3.84242,5.3656,5.0834,2.0642,4.755455,4.32663,3.66595,3.743475,3.40917,0.35780999999999996,4.78543,3.640245,3.02007,3.0360959999999997,4.43187,3.748625,1.901505,3.08643,3.9209,7.92814,4.96093,5.2564,4.676925,4.00204,0.88305,2.074975,2.17494,1.348265,1.9013833333333334,4.57306,5.8544,4.53732,4.26392,3.285932,2.8027583333333332,0.9524516666666667,4.308515,1.242215,1.1903466666666667,3.256705,3.81959,4.570825,1.19571,2.5404733333333334,8.688816666666668,3.0467633333333333,2.9086366666666668,0.94447,3.90181,11.962546666666666,3.460765,4.20348,3.33419,2.76824,4.683005,4.91687,1.9903279999999999,4.1136,0.5814569230769231,4.88632,2.2542075,1.9869575,1.9869575,3.5506333333333333,4.36122,1.6301583333333334,4.296385,1.5422428571428572,3.9845,2.516471666666667,3.22604,4.84264,3.55533,3.842321666666667,2.588925,2.7493716666666668,2.7493716666666668,11.359835,0.902912,2.781555,3.3024566666666666,2.13058,2.1879075,0.7942271428571429,1.4192975,1.252402857142857,2.01688,4.59602,2.529915,4.54035,2.0061033333333333,3.777705,4.169785,1.645665,2.0747225,1.0746983333333333,5.713911499999999,2.034055,2.17466,1.686438,1.5333679999999998,1.0805725,2.2976741666666665,3.626,2.34679,3.1061533333333333,2.4551933333333333,2.6956966666666666,1.6671766666666665,3.098523333333333,2.4581433333333336,1.51865,1.8956766666666667,3.1965033333333337,3.4982666666666664,2.6236966666666666,1.1244566666666667,2.5152633333333334,1.9546966666666667,2.286216666666667,0.31819,0.40808,2.3501,2.208626666666667,3.00356,3.1913366666666665,2.76272,4.78805,5.6867,4.51742,4.80789,4.543825,4.042155,2.6953266666666664,3.73772,0.7009709090909091,0.061634999999999995,6.6637,0.061634999999999995,3.200545,2.997465,5.6867,3.559405,6.2029,4.67843,2.168083333333333,2.6691266666666666,1.0927533333333332,6.05705,6.0919,3.2036033333333336,5.415,2.09816,3.810175,2.1087178260869566,2.82415,3.2854533333333333,4.181095,4.763516666666666,3.232935,2.1817366666666667,2.1817366666666667,4.11116,7.57007,3.87902,2.11944,2.4775199999999997,4.040065,2.810635,5.06195,3.606945,1.0890288888888888,4.33485,2.5281333333333333,2.99016,4.28086,1.0443,2.3394666666666666,3.953945,3.812135,4.59425,2.951625,3.357505,4.193415,4.024255,4.82282,4.754325,4.19066,3.2543647222222223,3.78151,3.1311166666666668,2.934863333333333,2.57403,3.411766666666667,4.57239,3.1252366666666664,4.796555000000001,4.88916,3.4164,5.0541,4.61682,3.851835,1.469006,1.42651,4.00293,3.209163333333333,1.6154566666666668,2.8330266666666666,3.32646,3.0684466666666665,3.790117777777778,2.9495400000000003,2.1742575000000004,12.883954416666667,2.2992333333333335,1.7490200000000002,4.64785,0.95889,3.2634933333333334,3.52174,4.75849,2.95505,1.1486111111111112,2.2744166666666668,2.57104,1.5108380000000001,5.2933,0.99567,0.99567,4.02979,1.9710566666666667,2.058733333333333,1.8129975,3.3941,4.736845,1.93237,2.971275,3.4261950000000003,3.078806666666667,2.7998933333333333,2.30424,6.308,5.8037,3.121335,0.6917776923076923,4.069915,3.37442,0.8848136363636364,5.08455,2.9285333333333337,7.8075583333333345,4.622675,4.62568,3.634805,1.4507025,3.11624,4.95259,5.02305,4.23768,4.423825,4.41707,3.04248,3.657033333333333,3.657033333333333,4.05424,2.7095175,4.697635,1.86802,5.596222916666667,5.244456666666666,1.5438266666666667,4.70617,1.0242900000000001,5.28815,4.154785,5.077,4.625325,3.83435,2.657475,2.675575,4.10258,4.38533,4.74106,4.477465,1.9988725,1.344954,4.34926,2.0778733333333332,5.2371,2.993745,3.53159,7.763069999999999,3.98094,4.53499,5.29285,4.098775,4.16383,8.300105,3.753025,3.108535,9.490525,3.717535,0.62133,2.109650854700855,4.399455,0.6252186666666667,4.583905,4.22022,4.981335,4.76066,3.38351,3.862935,4.605255,4.34958,2.59625,0.7032257142857142,4.78775,4.557025,3.97677,4.431285,2.4160166666666667,4.351475,3.386395,0.664384,3.30161,3.78578,2.4911575,2.972246666666667,3.72772,2.1657391666666665,5.2487,5.1429,4.066262500000001,3.2579533333333335,5.59758,5.59758,8.59363,1.9723140000000001,0.88017875,0.88017875,24.761204,2.750825,8.075331666666667,0.3556958333333333,1.3071266666666668,2.8898333333333333,0.976456,3.7781,3.950955,2.096755,2.096755,4.129475,4.696845,3.44341,2.6437483333333334,2.6437483333333334,3.667855,4.07268,4.572055,2.994756666666667,2.0053366666666665,2.4633045833333336,4.7469790000000005,2.096245,3.64439,2.5652433333333335,3.054635,3.054635,3.3110733333333333,0.8583166666666666,2.5657866666666664,1.6755433333333334,3.17933,2.99475,2.91084,2.42909,4.536945,2.30761,3.0017899999999997,5.532661,1.296672,2.22395,3.133215,2.471086666666667,3.877785,5.805710428571428,1.42784,3.7118,2.50315,5.24203,6.67668,1.6943675,4.774076666666666,4.832883333333333,2.9568054285714287,4.664433333333333,1.09264,1.575546,2.848925,3.617712857142857,1.3646533333333333,2.1971725,1.6977525,1.6708279999999998,2.35246,3.513422,5.0199745,1.0083866666666668,1.4501857142857144,2.906966666666667,13.581325,4.926073333333333,2.6954000000000002,1.0690285714285714,2.6211052380952387,0.9539885714285715,3.2825,4.328041666666667,5.0622,3.5655666666666668,5.6148,1.324735,3.8724000000000003,3.978475,2.8566633333333336,3.73072,2.57972,1.0117166666666666,2.65197,2.6561866666666667,6.118180000000001,3.1068247142857146,2.6633299999999998,0.729363,4.738,3.7742,1.020722,5.834569999999999,2.07287,2.026003333333333,5.77545,1.2893,2.92191,1.0152181818181818,2.90779,4.2724,2.984973333333333,3.1043800000000004,2.262913333333333,2.57818,4.50372,4.903915,4.864085,1.6525025,4.56367,3.46091,4.294183333333333,3.4624379999999997,2.5820266666666667,4.647447333333333,0.9911139999999999,2.9728561904761905,5.2218,2.591375,4.131454166666667,1.361575,3.1765933333333334,1.996686,1.996686,7.455326666666667,3.266306666666667,5.51417,3.5341966666666664,1.8689133333333334,2.7427238095238096,4.66687,5.523366666666666,8.528220000000001,4.862904,2.6559817500000005,1.3619700000000001,2.0183308333333336,4.229006666666667,3.87564,1.511824,2.0953525,2.9259837499999994,1.086255,3.1806666666666668,19.105338333333336,3.520566666666667,2.872063333333333,2.9646633333333337,3.27073,2.3284466666666668,1.6807733333333335,2.8767766666666668,3.5743333333333336,2.6590133333333332,2.560243333333333,5.575931333333333,2.4565366666666666,4.6065248571428565,2.7419988571428573,2.481044857142857,1.6579966666666666,3.9869022222222217,2.29297,4.104185,4.97199,3.81316,3.0081033333333336,3.2082533333333334,2.4066899999999998,3.4584333333333332,3.0610700000000004,3.9879,3.3960000000000004,0.8073318181818181,5.1916,2.425635,3.169636666666667,2.8457294444444443,1.960995,2.123112916666667,2.123112916666667,3.56493125,2.158489583333333,4.720045,4.64841,3.632415,4.57682,4.72822,4.90925,4.90925,3.977575,3.2629133333333336,4.75345,2.745155,1.632882,3.550333333333333,4.2208,3.71674,2.512975,3.582025,5.5215525,3.8491666666666666,6.103904178571429,3.086485,0.889308,0.889308,3.393325,4.565,3.872875,3.319738,2.442956666666667,1.8857666666666668,1.5622133333333332,2.8978966666666666,6.049726,1.3533033333333335,3.983855,3.6827,3.978615,4.984825,5.25605,4.623011979166667,3.2093666666666665,2.3979975,4.847245,3.027705,2.147055,1.1425,4.39077,2.802375,6.221608333333333,3.419233333333333,2.72163,3.30532,3.96005,3.58146,4.760375,3.086195,4.69721,4.41613,4.374295,3.755605,3.559435,3.65891,3.805595,2.6752300000000004,4.28644,3.28828,5.07705,0.7075233333333333,2.2826275,1.65629,1.8840325,1.887545,2.6521033333333333,2.7715,1.8491666666666668,4.80392,5.3754,1.8190099999999998,4.34561,4.52242,2.456545,5.74446,4.250840833333333,5.0751,5.2469,7.2713383333333335,2.08146,2.961926666666667,1.8647433333333332,2.49929,1.74188,1.77115,4.135805,3.77645,5.47995,0.9850177777777778,3.19628,4.2905,2.2403425,5.43535,3.705475,2.631265,3.7523666666666666,3.376275,2.0647825,1.9995285,2.649025,3.02935,3.347675,2.0388125,3.5764714285714287,3.5764714285714287,3.55595,3.417875,20.085113214285713,1.1065066666666665,5.274609166666666,1.9589625,1.9417499999999999,3.740295,4.31625,1.9605475,3.805465,4.67583,1.474965,1.474965,1.1732,1.8073933333333334,2.3544633333333334,3.219583333333333,4.13295,3.9344,3.6898,0.49942263157894734,3.4578592982456144,2.0392266666666665,2.6807,4.7990125,3.33724,4.0319,3.7263,4.796965,4.421445,2.0595075,3.313725,5.450773333333333,2.150035,3.952505,5.19825,2.165775,4.45121,5.78515,1.3299728571428573,1.862656,3.6183333333333336,0.8584085714285715,2.88143,3.29592,4.94086,4.693385,2.7670338888888892,8.100859999999999,2.9186099999999997,2.8794466666666665,0.42910529411764703,4.423635,5.260049047619048,3.0510980952380953,5.20155,3.82975,2.459655111111111,1.663976,5.596939000000001,4.7011,4.054155,2.423115,2.0313,4.013675,3.9654000000000003,2.9235,1.835645,4.391136666666666,6.2767800000000005,2.740295,3.84827,3.5963,4.023225,1.591314285714286,1.591314285714286,3.22066,2.89573,4.20067,5.0374,6.5836,3.353815,2.6748,2.1937725,1.4156566666666668,1.3390771428571429,4.687475,5.8930625,5.11235,5.654,4.664705,6.7727025,3.468335,2.9197,3.805118666666667,2.187323333333333,3.05820075,1.526916,4.045335,2.3699766666666666,4.29732,5.0146,4.17041,2.7543933333333332,2.9099466666666665,1.595114285714286,2.5579,4.1126,1.9756125,0.56122875,3.0419866666666664,2.7264,2.460053333333333,2.37092,2.0340275,1.592146,0.7039518181818182,0.7039518181818182,3.4525333333333332,1.825435,2.0348425,3.44063,5.7513,4.482435,5.08735,4.233245,4.311925,2.17416,1.2535666666666667,2.949345,3.390925,0.9395625,3.6067975,3.075015,2.89046,2.14496,4.082205,2.59831,2.08775,1.2122600000000001,3.416345,6.23415,3.74183,1.6839819642857141,4.588185,3.687725,2.65752,3.481425,2.83359,1.7852133333333333,1.016675,3.820325,2.460405,2.2696866666666664,1.66019,2.3937733333333333,2.24236,2.4649233333333336,2.82531,1.2596800000000001,1.8722833333333335,1.0435,6.6280975,4.71954,5.2084,4.553925,4.65801,2.94515,1.7962576923076923,4.36032,4.63161,2.5571,4.748935,2.103605,4.565655,1.1456222222222223,4.089975,3.85659,1.8726025,8.02114,3.66533,1.88234,1.744095,1.8125975,2.831725,3.15354,1.2313145454545456,3.0845466666666668,5.70775,3.9174,4.385765,5.91455,5.6739,5.33505,0.91352375,4.19276,4.50813,4.289035,4.976765,3.88209,4.88817,5.2252,2.921755,1.4473016666666665,1.4473016666666665,5.16555,5.735481666666667,2.5562,2.9773666666666667,4.05565,4.447615,1.6060459999999999,4.33212,5.39215,3.84954,4.00975,2.92006,2.708016666666667,5.11115,2.46891075,10.86267754963174,1.9974433333333332,0.82406875,2.5293666666666668,1.6876075,2.424455,2.174915,1.793746,3.143333333333333,5.19855,5.1593,2.8358566666666665,1.6844666666666666,6.142604047619048,1.3801414285714286,2.939693333333333,0.514,4.077693333333333,5.75795,3.6798,4.92166,11.708685,5.3031,3.03819,2.9389566666666664,4.82256,2.9611199999999998,4.92048,1.01167,1.14854,0.7130181818181819,5.81015,4.146655,1.6964759999999999,4.737740666666666,4.82026,6.53285,4.915635,4.671575,4.39541,6.2702,3.951475,5.4125,4.36619,1.230452,4.385175,5.7547,3.227325,4.144425,5.1653,3.274995,1.2286575,4.90606,4.008865,1.23657375,3.6104000000000003,2.98462,2.4339,2.762896666666667,2.4463133333333333,2.9786300000000003,0.7159090909090909,2.8972166666666666,2.821563333333333,2.6341266666666665,2.2093866666666666,3.3126233333333333,1.746555,1.42157,2.3362025,2.1316775,2.2035,3.5058333333333334,2.9027766666666666,0.621238,2.5272966666666665,3.43995,4.854135,2.1518533333333334,3.68482,5.1369,4.9963,3.35572,3.80419,1.2388185714285715,4.19735,2.5221116666666665,4.204288333333333,2.8032425,4.54824,5.0566,5.091,3.73488,4.1222666666666665,0.931618,0.931618,2.263673653846154,1.6624775,4.08977,2.6484435,2.6484435,4.77317,6.37935,3.09525,1.1548749999999999,1.5472571428571429,5.9174,3.60202,3.4799,3.350135,2.812955,3.22919,3.4799,7.0000575000000005,3.222675,3.07135625,2.87953,2.0387,3.11309,6.55685,3.01809,2.66653,2.691765,6.21045,6.0286,6.6289,6.6289,5.5965,4.629995,0.6885092307692309,4.675765,4.88404,2.954,2.98649,10.354966666666666,3.1827633333333334,3.95783,3.748715,2.9252599999999997,6.0724,2.29181,3.271485,3.0446666666666666,3.2672000000000003,2.55759,1.410684,1.410684,3.699155,3.47495,4.850115,1.770242,1.653086,47.787639431818185,2.73608,0.8281981818181818,3.3421333333333334,1.7152525,3.29747,2.8269033333333335,3.0233633333333336,3.038605,2.7171133333333333,1.7782600000000002,0.94555875,4.42417,3.31442,3.586305,4.320015,5.2425,5.14975,5.2798,5.35145,5.2717,5.22705,5.5409,6.4330425,5.1598,5.38535,2.11469,3.591635,6.87295,5.2676,3.564275,3.947995,3.38447,2.403655,3.962135,4.517425,3.0970033333333333,3.7680000000000002,1.64114,3.730895,1.3879860000000002,3.31286,3.94734,3.68342,6.80598,4.09887,2.2280625,4.40633,4.14693,3.97644,0.89487375,2.736975,2.938455,4.3165547619047615,1.196855,4.85207,1.2983475,5.88645,0.7278155555555555,3.7016506666666666,10.26467,4.29593,3.71958,3.49152,1.7913333333333332,4.563255,5.47845,3.1302733333333332,4.287575,9.500993611111111,3.5803333333333334,2.1997133333333334,2.859306666666667,3.1271766666666667,2.96669,2.6293246666666668,2.055963333333333,2.9401966666666666,3.32897,2.71651,2.9001099999999997,3.39324,2.3243533333333333,1.6575766666666667,4.240443333333333,2.9979133333333334,2.68546,5.215324,2.8769233333333335,1.14524625,2.00984,2.90001,5.334846428571428,2.847075,1.9507577777777776,1.9507577777777776,1.615725,1.5144125,2.16538,1.888026,6.03615,4.2155675,2.500575,3.08488,3.7255000000000003,1.99958,0.5676083333333334,2.1136933333333334,1.94553,0.5901946153846154,3.882675,2.63195,2.6172,3.701615,3.9680091666666666,3.0556,1.5941733333333332,1.210585,2.15933,3.576415,3.786435,4.467105,2.8729633333333333,4.244345,3.85808,1.1561727272727274,9.145205,2.68138,3.31366,1.312825,2.782806666666667,2.3365125,2.3365125,2.3365125,4.24069,5.69225,1.58577,4.863605,1.443366,5.59446,1.424466,4.24428,4.219345,4.30952,4.204715,4.43719,1.90936,8.303867499999999,3.82683,5.06665,3.442345,3.8879099999999998,3.0302466666666668,2.965286666666667,3.933555,2.508716666666667,4.543007857142857,4.396111666666667,1.66248,3.981715,1.66248,3.360055,4.4958325,4.990525,4.4958325,1.7701166666666666,6.0523,4.809635,4.253525,2.70665,2.937856666666667,4.40146,3.26042,4.43266,0.5265792857142857,2.9534866666666666,3.2122233333333337,5.2925375,5.04815,2.4965075,4.781075,6.775195,3.77432,3.4022,2.766405,2.1645600000000003,3.788825,3.97087,4.77627,2.61141,3.950195,0.9122629999999999,5.1095,3.3873,4.309705,2.6059366666666666,3.1297099999999998,2.38532,2.989243333333333,2.824726666666667,2.85604,3.34614,2.3685,2.3685,4.511583333333333,2.824845,4.56143,11.6013875,0.9631500000000001,4.21323,2.4056933333333332,2.2672233333333334,2.88668,1.3781875,6.821998666666667,3.7545,3.893875,3.723403333333333,1.9913733333333334,3.8593666666666664,4.210460138888889,1.9663766666666669,0.44518611111111117,1.61748,1.5087225,4.913,2.884075,3.30074,3.954888333333334,3.528366666666667,2.3657612500000003,4.87258,4.520595,4.388765,4.28588,2.19584,3.957325,2.53803,6.018456666666667,3.16746,4.415155,4.29335,4.590715,4.571025,1.98945,3.887895,3.5957,2.87076,3.991615,2.78197,3.143045,3.98546,3.16467,2.719003333333333,4.730085,1.9076166666666667,3.934565,2.717145,4.472675,3.224385,3.90503,4.86124,2.53412,4.126645,3.738395,4.102395,2.5876533333333334,2.132425,3.066185,2.35198,0.8818216666666667,4.448205,2.0195,3.48305,2.773765,4.097265,3.55768,2.84506,3.257285,3.619445,4.7836273333333335,4.26697,3.317255,1.4349333333333334,3.62028,2.548005,1.0026044444444446,4.81459,9.415939999999999,3.374545,3.65837,4.85897,5.0119,3.882475,2.04405,4.051525,3.97996,3.27727,3.302685,3.35416,0.656025,1.2404842857142857,6.148874999999999,1.60821,2.756235,4.934674,2.52695,2.356535,2.693695,8.33288,3.168385,4.06717,3.830415,0.7870222222222222,3.521605,2.59626,3.88693,4.220205,6.024828333333334,0.615783,3.38169,8.87561,3.2423,1.0379544444444444,5.307349583333334,4.68518,5.505,4.20737,4.791835,3.084185,2.7342099999999996,7.13701,0.895412,3.54995,4.15024,3.307145,4.019245,2.192235,4.45228,1.5966366666666667,4.42091,4.063185,3.93205,1.5851075,4.804265,4.728515,2.2797775,2.088065,2.571675,1.020722,4.15165,3.42492,1.50582,9.685265000000001,6.01015,4.40632,4.17473,3.60352,4.314315,1.4504,4.500595,3.967555,5.26045,3.818935,2.4772366666666668,6.618453568376068,0.7821925,0.7821925,2.61783,0.9458942857142858,4.244685,2.6529000000000003,1.0295425,1.8175966666666667,0.416755,6.5318275,0.98278,2.82074,4.60209,4.088055,2.770875,4.21757,5.7421,5.614845,2.8806,3.175815,2.53115,5.08485,5.07495,4.62443,3.7368,4.07831,6.63965,4.023655,4.476123333333333,4.969622,3.83669,4.463705,2.384015,4.463705,7.175034,40.65832579978355,3.65749,3.56511,3.11551,4.90599,4.48181,3.482675,3.58979,3.93993,4.05694,3.97323,1.630915,5.02685,2.68196,4.61945,4.85743,5.20175,2.4191166666666666,4.369805,3.972875,3.97409,1.4418380000000002,0.6585738461538462,1.51807,3.777566666666667,2.6413266666666666,1.2758375,3.28699,2.4797066666666665,2.9029966666666667,3.4133999999999998,3.0026233333333336,1.473934,2.2908033333333333,3.920733333333333,1.8554843951093953,2.77487,3.2356920000000002,3.1027666666666662,2.6566566666666667,3.3177333333333334,1.1685222222222222,3.90282,4.041245,1.1941,1.1941,1.1941,1.1941,2.9272127272727273,2.06018,2.64082,3.13387,4.23699,4.73666,4.47622,4.46623,5.625,4.711065,2.306935,6.0439,3.74506,2.619945,3.9934,3.44318,4.441975,4.193095,0.8038384615384615,1.3474871428571429,1.5562666666666667,4.954565,4.6947,3.773345,4.217455,6.191216666666667,2.289073333333333,4.82283,1.5962766666666666,4.119905,5.17635,1.5719866666666666,5.70935,0.6718783333333334,4.846295,1.312614,1.2598125,3.75431,4.61864,4.927765,5.026,5.74135,3.80738,1.4710800000000002,3.225975,1.4853525,3.87711,3.28928,2.459655111111111,1.82677,2.88502,1.184045,3.30698,4.9426,2.9709266666666667,5.65845,122.02868573124098,0.47429111111111116,4.653775,2.4355333333333333,4.89733,4.30917,2.68839,1.5577125,0.3771561904761905,2.84039,3.799275,5.50095,3.1684,3.543215,4.68339,4.30944,5.3419,8.422366666666667,0.7027488888888889,3.20783,0.9907475,11.74713,3.0695,3.653885,0.9629488888888889,2.20309,2.68486,2.1345575,3.167073333333333,3.1445133333333337,2.340883333333333,4.428725,3.2565000000000004,2.28965,2.2747433333333333,4.95622,3.948845,3.000605,3.63877,3.848785,3.475565,2.3939933333333334,3.952125,3.17095,3.05569,0.9842033333333333,2.6164833333333335,4.428725,4.44568,5.1179,4.05502,4.69013,1.867515,10.93467,5.38655,2.813925,3.669285,5.68125,0.5698506666666667,0.5698506666666667,4.5084275,4.5084275,3.733865,3.7773,1.8037672727272727,0.5640625,2.977715,4.369295,4.50066,3.415715,3.98697,5.6105975,4.83039,2.0707175,4.340625,1.898285,2.7697,4.880675833333333,1.748615,2.37809,0.5444957142857143,2.0901837142857143,2.0901837142857143,1.90212,3.96406,4.05425,4.75583,6.641396,2.74731,3.159765,1.963565,2.077415,3.9313333333333333,3.610825,4.473293333333333,2.22551,4.473293333333333,4.763435,3.717335,6.0269,3.972765,2.39721,2.077173333333333,2.77671,1.4462425,1.4653375,1.5213825,1.7437275,1.5797475,1.7215,3.6214,4.58908,2.52716,6.87725,2.7184666666666666,4.1499,2.938275,4.238015,3.1517433333333336,2.9889200000000002,5.7682199999999995,3.3092733333333335,4.464219333333333,3.18259,1.423515,2.5310566666666667,2.68789,2.429683333333333,5.65655,4.2967475,4.780405,12.29359223785425,0.660975,1.9329917499999998,2.29467,1.516714,1.30302,2.634025,2.4482825,2.37209,2.46811,0.7367069230769231,1.9219225,0.4882010526315789,4.65177,1.881565,3.74079,4.445355,2.24909,5.334335,3.955535,7.6438,3.637055,2.91581,2.99356,4.55378,4.501065,2.6697000952380954,4.73067,2.09924,2.09924,5.04955,3.736325,4.3655,4.099555,3.303876666666667,3.992205,4.999115,4.724075,4.318695,4.171095,4.59733,4.599075,2.51217,4.955625,1.1600466666666667,4.781225,4.551005,2.498526666666667,2.1468000000000003,4.79335,1.3624333333333334,4.88296,1.9247775,6.04881115942029,4.052075,3.863305,1.6016133333333336,3.2707141666666666,3.2707141666666666,13.155470000000001,3.96172,4.162845,1.10719125,4.683401,2.32851,1.44159,2.3336575,1.825845,2.0661075,1.9386040000000002,3.47607,6.39875,1.805955,4.894165,4.657190833333333,5.4114,2.2974675,2.64551,3.907295,4.68161,5.2836,4.070985,7.133913333333334,3.05149,2.7224866666666667,0.4028361111111111,4.012215,4.089835,3.328273333333333,6.090958333333333,2.546456666666667,3.2021833333333336,1.2800483333333335,1.5040783333333334,0.56122875,1.61748,2.89955,1.5715583333333332,1.4865633333333335,0.64770625,1.2790380000000001,4.558585,2.4442725,0.5807615384615384,1.6671666666666667,1.7241375,1.79689,1.2391133333333333,1.9673975,1.5040783333333334,2.2814475,1.2790380000000001,1.2790380000000001,0.5807615384615384,1.5489714285714287,2.46482,1.3646533333333333,2.6816,0.5807615384615384,2.655425,2.46482,1.2293,1.2293,1.2293,1.91551,1.0941525,0.5807615384615384,1.091494,1.224,1.0365922222222224,1.831278,2.564725,0.8562416666666667,2.1312925,1.6231142857142857,0.5807615384615384,1.747674,1.5040783333333334,1.8714333333333333,1.8919666666666668,0.886385,1.8714333333333333,1.0794455555555555,2.2797775,2.3707925,2.4021975,1.224,2.11328,1.184045,1.184045,1.0111272727272729,1.0111272727272729,1.0111272727272729,1.2800483333333335,1.5040783333333334,1.6231142857142857,1.6671666666666667,0.9692528571428571,1.8919666666666668,1.662934,1.85868,1.820884,1.2800483333333335,2.6954000000000002,12.314029999999999,0.64770625,2.61374,1.8515,2.609175,0.9539885714285715,0.9539885714285715,0.5807615384615384,1.4852999999999998,1.592146,1.6231142857142857,1.817702,1.8919666666666668,1.1551666666666667,1.1551666666666667,1.7361339999999998,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,3.227983333333333,1.0794455555555555,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.3876695454545454,53.93979596825397,1.4851225,1.529305,1.6231142857142857,1.8515,0.9692528571428571,0.6291058823529412,0.729363,0.729363,0.729363,0.729363,4.3838333333333335,16.131839166666666,3.4683666666666664,0.6550054545454546,1.5772819999999999,1.5772819999999999,1.5772819999999999,0.6550054545454546,2.89955,0.5807615384615384,1.747674,1.4865633333333335,2.5997399999999997,1.0794455555555555,2.4965075,1.0794455555555555,1.407834,1.407834,2.0972833333333334,2.0972833333333334,0.5807615384615384,2.1185400000000003,2.1185400000000003,0.9568545454545454,0.1854763888888889,2.89955,1.6486716666666668,2.50315,0.6550054545454546,0.6550054545454546,0.6550054545454546,0.6550054545454546,0.6550054545454546,1.8515,0.3876695454545454,1.0794455555555555,2.47119,2.47119,2.675575,2.885683333333333,0.6550952380952381,0.6550952380952381,3.573933333333333,4.0788,1.2492185714285713,3.321486666666667,1.01554,2.604625,1.9723140000000001,1.0443,3.1318533333333334,1.948655,3.2579533333333335,5.3899,2.402755,1.222688888888889,4.215125,4.486785,2.67868,1.846854,2.3773134615384612,4.78274,1.5512513888888888,2.8242133333333332,3.03626,3.2604133333333336,2.499815,6.419793333333333,4.128415,0.1854763888888889,3.0598766666666664,4.859325,4.311675,4.39839,4.467165,4.47695,2.659613333333333,1.9469999999999998,3.885125,4.641505,4.506755,4.58258,4.89732,3.21742,0.6853508333333332,6.890335,1.37185,3.045104,4.702325,2.72917,2.72917,0.8066518181818182,1.82677,3.20105,3.132715,4.76644,4.09573,4.623305,5.1054,1.0754728571428571,4.77351,5.0833,7.099725972222222,2.303193333333333,4.270795,4.77179,3.851305,4.78734,3.961485,4.18163,5.4329,4.900525,4.6351016666666665,3.65539,4.3661650000000005,7.335929,1.762425,1.9880684615384614,2.8359233333333336,1.7405766666666667,2.77136,1.9188733333333332,5.2493,2.842833333333333,5.2207,1.8022719999999999,4.801505,4.0038,3.057115,4.37988,3.874365,2.5024166666666665,2.8066033333333333,2.781826666666667,2.685313333333333,2.42918,1.7018000000000002,2.7326433333333333,2.892113333333333,1.8751719999999998,1.8751719999999998,4.06247,2.9614966666666667,1.9980033333333334,3.10913,2.1559333333333335,2.215196666666667,3.057123333333333,2.7250433333333333,3.2011966666666667,4.854625,4.47719,4.35316,3.5320026666666666,3.5320026666666666,3.79895,3.1208500000000003,4.25087,4.569115,3.93582,3.438895,3.331655,7.58309,1.92204,1.989885,3.407635,3.204295,1.50348,1.50348,3.525585,1.865455,3.922094,3.823605,3.280125,2.255096,2.2403313333333337,0.5183274999999999,3.025765,3.923095,1.9994075,2.4635,4.17326,1.1552366666666667,4.732135,1.27965,0.39278214285714286,0.5382378571428572,21.716222503968254,0.5382378571428572,0.39278214285714286,0.6836935714285715,9.643306666666668,2.4386033333333335,3.530065,4.131995,3.3992050000000003,2.78088,4.245870714285714,2.29207,2.431945,3.33544,2.994945,4.26597,4.381125,3.65914,2.25083,3.239965,3.55894,4.10054,3.13992,1.1257169999999999,1.1257169999999999,1.1257169999999999,1.1257169999999999,3.45829,2.944325,3.178405,1.8723766666666668,1.19693,2.452255,3.73649,3.210575,2.78675,3.17864,2.65216,2.516471666666667,3.992935,4.09156,1.1250116666666667,2.875636666666667,1.07964,2.84187,2.22808,3.7568333333333332,5.2654,2.5396533333333333,4.088925,3.78967,0.8184765873015872,0.23854214285714284,0.23854214285714284,0.5799344444444444,0.23854214285714284,0.23854214285714284,0.23854214285714284,0.5799344444444444,4.36977,7.526109999999999,3.58174,0.51818125,3.76244,7.505375,3.25206,3.1383766666666664,1.1574766666666667,4.18671,5.3517,4.41915,5.11575,1.648514,4.93629,2.1562433333333333,2.296170666666667,3.517155,5.22805,0.7896414285714286,0.7896414285714286,3.4417,3.02681,1.888405,3.72583,2.60806,6.0784,3.33139,6.0982,5.65235,5.65575,2.74208,1.699835,4.52844,3.441495,2.38725,3.61067,3.030035,1.858275,1.16475,4.049195,3.49021,4.952893333333334,6.493858333333333,1.55241,4.005215,1.1106166666666668,2.67432,3.783325,3.94632,0.399995,3.401485,3.9783,0.849966,2.7898933333333336,8.002876666666667,4.133635,2.178315,5.674883,4.4631,3.717335,1.3530383333333331,5.53783,2.94019,3.116376666666667,3.5045,2.0507666666666666,2.0507666666666666,6.40175,6.40175,3.6607642857142855,3.6607642857142855,10.1921,3.6607642857142855,3.6607642857142855,4.32606873015873,6.69065,3.979435,3.493545,2.6379033333333335,4.55902,4.31451,3.18265,3.161906666666667,4.53027,3.2313166666666664,2.770566666666667,3.156336666666667,2.29786,2.68303,5.01535,7.47635,6.8357525,4.70125,3.764185,4.03597,6.321774,5.23395,4.027045,4.177425,3.48401,2.1865,2.214795,2.08716,6.04725,5.77015,4.646285000000001,4.418255,2.44106,2.51777,7.0905233333333335,1.91551,2.5690166666666667,3.4187333333333334,3.4187333333333334,3.22434,5.0793,0.7536041666666667,3.5581,3.61879,2.7445166666666663,10.3474,4.11526,2.7822933333333335,2.3590666666666666,5.76665,6.36495,3.01965,6.0233,2.64006,4.656755,2.957653714285714,4.28511,5.0684,4.785555,0.9302316666666667,3.5015666666666667,1.3047625,2.59261,4.862383977941176,7.544936666666667,3.2434433333333335,2.903113333333333,6.746328333333333,1.821482,4.61,5.55545,3.5881,3.75343,2.189713333333333,4.892775,2.3136200000000002,0.4549869230769231,5.1135,2.92429,3.385666666666667,4.74931,4.72498,4.89708,6.2211475,4.570725,5.585,7.1659025000000005,54.099957,4.519765,3.997105,4.759215,6.07355,4.32841,4.718085,3.50744,4.82357,1.950595,4.07698,4.03551,4.61486,2.58096,5.33545,4.399165,1.6730820000000002,5.60645,6.59985,7.047275000000001,5.7393,3.369905,5.00695,3.289425,3.28006,3.642625,4.326635,3.810855,7.03789,2.789575,1.09649,2.4226475,0.56733,0.56733,3.117885,0.56733,2.5885869285714285,2.5885869285714285,3.246138928571429,4.6837955,5.147659428571428,2.4226475,4.496148333333333,2.5978633333333336,1.3744533333333333,5.42065,2.177725,8.072054666666666,6.248756666666667,12.020387075757576,3.778,2.8180933333333336,0.23221090909090908,1.7763969999999998,2.4754033333333334,0.9402825,1.540805,2.5790266666666666,1.914675,2.7233,0.597799,28.059022083333332,1.91618,0.8237,2.5701300000000002,2.5701300000000002,0.398435,1.826035,3.110005,1.3350825,2.0617675,1.649435,4.282915,2.88095,1.9882666666666668,2.4188966666666665,1.138405,1.898865,1.4293116666666668,5.52905525,4.10754,6.960891666666667,2.35474,3.4579,0.9808666666666667,2.47605,5.03575,6.216335,3.5155999999999996,2.240866666666667,5.9110925000000005,2.3076925,2.4357133333333336,4.199195,1.0390466666666667,3.671466666666667,2.344863333333333,5.47015,4.885625,6.21775,3.33925,4.115482500000001,4.115482500000001,4.995335,1.65198,5.6193,2.672636666666667,1.5906875,4.303295,4.419665,6.639889166666666,4.864915,3.0596599999999996,3.2153333333333336,2.730315,1.1025914285714287,5.0862,0.96598875,5.6724466666666675,4.72538,8.1296,4.719075,4.55953,4.14188,8.567366666666667,4.97143,5.2793,1.15008,0.74575,4.36795,4.644355,2.18118,3.278845,3.33349,4.494885,2.134085,4.70415,2.4463433333333335,4.97469,5.28715,5.13125,4.418085,4.58995,3.052495,6.809659999999999,3.47149,5.27575,3.47637,4.03927,5.880518928571428,0.6191478571428571,3.8569333333333335,1.7086566666666665,0.548278888888889,4.68079,2.25834,1.06148125,1.85181,6.04568,4.36659,2.33383,2.5902366666666667,2.6363600000000003,5.38285,3.430595,1.6234449999999998,4.225155,2.988426666666667,3.3821,4.65747,5.15855,2.900103333333333,3.7444,3.6771666666666665,2.0498000000000003,7.47279,5.24115,4.39533,4.99338,2.2460825,3.983165,4.642005,2.957965,4.17042,10.712235,3.873355,4.492098333333333,5.11615,5.03175,2.504125,4.123485,3.988835,5.1803,3.2167266666666667,3.87597,1.4599375,2.83521,3.342865,3.62814,4.849615,1.880566,4.046665,2.9319966666666666,5.11165,2.9106366666666665,1.8345,3.9954,4.18082,1.06428125,3.659535,2.6939466666666667,4.524456666666667,1.5548920000000002,1.49143,1.10742,3.902595,5.41665,5.7040049999999995,3.7002349999999997,3.39449,2.43927,1.954655,1.95627,1.5668066666666667,5.8537,2.92136,1.9002625,0.9398538461538462,19.97260762179487,3.103955,2.763306666666667,4.060555,4.20390641025641,1.32398,2.826220833333333,2.9774329545454545,1.337072,1.9019933333333334,3.777725,5.08115,3.6544766666666666,3.37425,5.239,4.83532,7.0027825,4.654388333333333,4.69115,3.78008,2.6767866666666666,3.930735,3.84447,3.548766666666667,4.12184,1.976965,4.64802,8.41156,3.35886,2.71617,3.58571,0.566435,3.1216066666666666,2.0220866666666666,2.2746275,4.370165,3.291375,4.744145,3.53378,2.9634,2.2180125,1.65608,0.738846,1.42365,1.2870566666666667,4.10478,3.597695,4.21775,4.775605,7.407,2.3007133333333334,1.4272399999999998,2.4471666666666665,7.542838333333334,3.198175,2.9552,3.033625,4.47509,3.6972675,3.525425,1.625076,4.459965,5.1456,4.29365,4.007105,3.4167,4.182535,4.462785,3.7909,4.75408,3.9888,2.221655,2.9701400000000002,3.134645,5.5647,2.597005,4.259853,2.888235,2.93241,2.4043366666666666,2.3226733333333334,2.1126666666666667,2.713267,2.713267,1.9917633333333333,2.6753033333333334,2.407853333333333,2.335506666666667,1.9835500000000001,4.24447,2.3429433333333334,2.964933333333333,2.8354733333333333,1.73866,4.32738,2.653165,3.45758,2.3660633333333334,5.3201,5.3838,4.788191666666666,2.48772,2.323815,2.81972,2.63694,2.175905,2.93069,1.9751075,2.4615775,2.643175,6.936963833333333,4.3182025,3.691385,0.551871875,4.15013,4.19665,4.20474,3.12666,3.904015,3.799963333333334,6.1976,4.242675,3.238915,2.8453292857142856,2.1086866666666664,2.54216,1.6865860000000001,1.678474,1.574708,1.926888,1.824315,1.1508333333333334,4.225632857142857,0.5807615384615384,0.5450166666666667,2.10772,1.5252583333333334,1.464142,1.5206866666666665,2.5201274242424243,1.4696033333333334,1.6847660000000002,0.6027675,169.66634487693108,0.49545,1.9136600000000001,1.058824,1.2541275,2.1747375,1.51936,2.00382,2.509133333333333,1.823665,7.00035,3.35156,3.480958095238096,1.7710466666666667,3.025275,1.2804933333333333,1.2804933333333333,5.809465,0.5171138888888889,2.25485,3.16642,3.17158,0.7726545454545455,0.5978882352941176,1.1651236410256411,1.056181818181818,2.568475,3.77663,2.0300625,2.1757175,2.14507,4.527248944444445,1.0009533333333334,4.219445,3.40826,3.535625,7.21293,1.9537766666666665,2.839845,2.766765,4.12552,2.21792,3.116825,3.14009,3.37574,4.8572,3.071705,6.06192,2.07099,2.55419,3.069655,1.76787,2.47844,3.21319,2.884555,1.57282,1.68358,2.299355,3.971795,5.458766666666667,2.839195,2.826925,1.277545,4.300035,3.3981,4.0086,2.98195,24.83607048382174,2.532338666666667,2.890613333333333,3.1085499999999997,3.4557333333333333,2.9479933333333332,6.04472,3.0607666666666664,2.313,3.497533333333333,3.21634,2.15817,3.2590466666666664,3.23179,2.907106666666667,1.7327166666666667,1.5596717500000001,0.5950230000000001,2.2998933333333333,2.0529825,0.2768075,2.44739,2.644125,0.2768075,0.2768075,2.0797741666666667,0.2768075,0.2768075,0.2768075,0.2768075,2.8931966666666664,2.3936933333333332,0.5753161538461539,3.1464510714285714,1.60493,2.02386,5.42315,4.41722,6.1989775,2.2093375,4.835695,2.216125,2.4856233333333333,1.294427142857143,5.47146,2.764086666666667,6.037495,0.9387249999999999,1.3936,4.972215,4.895095,35.37583498651349,1.605412,1.3722766666666668,2.387896666666667,2.2760625,1.0111272727272729,2.3879,2.404666666666667,2.71752,2.5217199999999997,2.4497466666666665,1.6619733333333333,2.754243333333333,2.3899133333333333,2.186386666666667,2.6911,2.384863333333333,4.266245,3.169226666666667,1.1540685714285714,3.68274,4.15132,19.037361444444446,2.82333,2.5027500000000003,2.7369800000000004,0.785082,3.3323,1.5687064444444445,3.3323,2.3826,2.19186,3.0694666666666666,1.498835,1.9616375,4.445165,4.053425,5.0434,4.351575,1.5887600000000002,5.20925,1.6326525,4.75607,4.13909780952381,4.589475,0.7764836363636364,2.1516025,2.0572825,2.921016,3.36485,1.01709375,4.184215,1.9546379999999999,2.1341433333333333,1.0420260000000001,1.0420260000000001,2.4478966666666664,2.9187966666666667,4.832735,29.55156875,6.454115,1.9615766666666667,3.77248,0.37343466666666664,6.5295274999999995,4.939605,2.8458,3.318055,5.255497500000001,3.477965,1.2231175,4.46257,1.2723900000000001,3.271915,4.753085,4.76623,2.071535,3.114105,4.15629,3.161135,3.3210334999999995,4.0624,1.312,2.5776149999999998,3.89919,4.61296,2.8671366666666667,3.004913333333333,3.4151000000000002,3.334215,4.038715,4.305485,4.1535,1.6996,6.05482,2.65188,1.816084,4.24772,5.78134,4.058295,3.32624,0.70621625,2.94334,3.61946,2.117385,4.721704666666667,2.798405,3.998035,2.9572333333333334,3.2413566666666664,2.58363,3.1509866666666664,3.1309766666666667,3.0711933333333334,4.589635,5.13435,4.01532,1.72676,4.231445,4.199275,1.89489,1.89755,1.7427275,4.2004938888888885,4.67784,5.18492875,4.10283,3.558,3.72118,3.3991333333333333,1.3105900000000001,3.15905,2.99761,3.47747,4.532185,4.580595,4.377575,2.776935,1.857645,1.601745,1.54554,3.586345,2.390575,2.151985,3.31077,4.5432,1.5983,5.37265,1.41695,1.8407225,3.30615,3.18033,2.91466,3.675445,3.07208,1.646925,0.9833683684210526,2.615695,3.569436666666667,4.49687,8.613418333333334,2.2896733333333334,2.9825700000000004,1.6265133333333335,2.7878133333333337,2.9668433333333333,1.055285,2.9954666666666667,2.55932,2.956053333333333,4.031066666666667,2.999686666666667,6.886636666666667,3.207356666666667,0.7735581818181818,1.7757233333333333,3.25935,3.40558,3.43544,3.5809333333333337,2.682793,2.95417,5.83245,1.991809714285714,3.92727,2.7985211111111106,3.434365,1.9105299999999998,5.18685,5.6205,4.52939,4.43097,3.865995,1.3729333333333333,4.700035,3.243513333333333,2.46836,4.728295,2.7613466666666664,3.1828133333333333,0.4451528571428572,0.4451528571428572,4.0112016666666666,4.776175,6.4615,3.249415,4.308645,3.63759,3.261345,4.857065,4.400945,1.03819875,3.770495,2.697763333333333,4.274524166666667,3.1890199999999997,3.1831408333333338,1.79108,3.261828214285714,2.68064,2.7786000000000004,2.637566666666667,2.863963333333333,1.8815533333333334,23.734983608860343,4.95147,4.15867,3.959175,3.25314,4.178705,3.43653,4.493585,4.702595,3.99638,3.537845,4.0706,2.61772,2.5978233333333334,3.11279,3.2695483333333333,2.7691933333333334,4.35948,3.601155,4.5785425,4.93996,4.281465,1.312048,1.718766,1.718766,4.2952,4.059315,2.601836666666667,2.2587266666666665,2.9602766666666667,3.66145,3.300915,7.553395,3.11326,3.2537766666666665,2.9556883333333333,4.98242,1.5691066666666666,5.9646975,2.467353333333333,2.566996666666667,1.7522725,4.30291,2.85901,6.21685,3.400015,2.61443,4.372375,3.95094,1.448755,2.6488066666666668,1.6588366666666667,7.8285695,4.493185,6.707438333333332,2.37077,4.14929,3.747645,3.87157,5.34465,3.5433333333333334,3.5433333333333334,2.16423,4.57327,5.3245,2.75883,6.3031685714285715,1.7543475,5.96825,9.349791666666668,3.2468800000000004,4.48656,2.3305433333333334,1.9291,0.6417,4.32513,2.783625,2.5696,3.9593645000000004,2.3443425,2.3166466666666667,3.76342,5.2275,4.923005,4.38869,5.2789,4.375455,2.33878,1.0577,3.01848,3.383195,2.8015833333333333,5.0549,4.01349,3.10916,2.679575,1.862656,4.58436,1.0127325,5.0469,1.0036455555555555,5.3886,3.324035,4.867025,4.77299,3.70831,3.314075,3.2759766666666668,2.3653866666666667,4.38271,3.390565,2.42368,4.404395,3.95164,6.527353333333334,4.21597,2.042,3.38,3.22403,5.474310000000001,1.92543,1.92543,2.898963333333333,2.4362633333333332,2.3422466666666666,2.78454,0.8511380000000001,6.03125,3.14919,2.2957075,2.303535,2.51208,3.7957,2.58494,3.738925,4.653415,5.18395,5.12905,5.84995,5.5763,1.3513875,3.78732,1.10155,2.2957025,4.248066666666666,2.528495,3.06172,3.185115,4.36997,3.251285,0.4636384210526316,4.68692,4.173565,4.75805,3.380995,5.161,5.47355,4.32529,3.8462,1.85494,4.86817,2.07521,4.3842,4.3842,6.3521,5.418,5.8102,5.34205,2.689595,1.5691066666666666,4.821005,2.4574866666666666,1.6616233333333332,2.092785,4.29031,4.224205,4.501005,8.3164,1.5045516666666667,5.3748,1.3067616666666666,3.36065,6.24325,1.96983,4.930835,2.277093333333333,4.3673,3.362405,4.62081,3.2036033333333336,4.267435,4.019545,6.04405,4.13089,3.6048,3.820065,5.76985,3.936945,4.475855,3.69258,4.198225,8.096453333333333,3.539935,7.27713,3.27658,5.4522,5.937276590909091,5.0781,3.61882,2.0030125,5.88715,3.92601,0.690131111111111,8.32033,6.2507,4.551235,3.0264625,4.95032,2.847425,1.79041,4.095515,1.1250116666666667,5.7974,3.3282,4.837305,5.6086,4.8266,3.911885,2.20583,4.69575,5.28845,1.7044,6.32294,3.07543,3.724695,5.0576,3.99873,2.277445,4.48922,4.33634,4.33981,3.0806633333333333,4.017745,3.812795,5.78475,4.72777,3.483705,1.9177525,1.9177525,7.349805,1.5646142857142855,5.119,4.50716,5.51105,3.508235,3.890425,4.715855,3.85982,0.96618,0.96618,0.96618,3.74617,3.245175,3.94822,4.416785111111111,2.567035,1.4999583333333335,4.30628,2.2876,2.584395,4.08496,4.677785,1.8528675,2.1724799999999997,5.42329,4.017615,2.769095,4.34896,1.508195,1.953515,3.307983333333333,2.71141,5.2933,1.417456,1.582956,1.02334625,4.21822,3.3149,2.834956666666667,2.9538966666666666,5.65995,1.830562,2.0603975,3.24241,1.5874000000000001,3.127575,3.774525,2.582325,6.00415,5.5931,2.829315,4.379005,3.944395,3.4642,3.47815,4.17027,3.65357,6.62271,5.0957,1.8396866666666665,1.8311333333333335,3.549445,4.40137,4.28884,3.897285,3.1310599999999997,4.186215,6.04635,5.4096,2.6871466666666666,5.3372,4.26546,4.599295,8.133189999999999,3.75709,0.6471581818181819,4.227235,4.077780833333334,2.55668,3.969265,4.148366666666667,5.59055,3.948715,3.645605,3.765685,4.01544,4.7173,4.6669,3.32152,3.88902,5.09725,4.16788,3.549815,2.901865,6.53155,5.01345,1.8538419999999998,3.021805,4.315003333333333,3.87219,4.814,4.44785,2.57297,0.8686144444444444,4.313041212121212,6.58528,3.859765,4.650295,3.55503,7.118566666666666,3.4945,3.4489666666666667,2.6697699999999998,3.79776,2.08621,3.405725,4.478835,2.549389,3.723585,5.28275,1.4951475,4.649605,0.6995935714285714,5.46835,4.68613,5.997,5.7168,1.490245,1.7173766666666666,4.55572,1.93029,4.558555,0.5395408333333334,5.71545,3.168305,1.535206,6.3990849999999995,6.9054,0.84817,1.590802,1.27079,1.27079,1.27079,2.2388733333333333,3.896665,3.633765,5.0109,3.627115,4.929585,3.920425,2.00122,4.10463,5.08645,0.2887073170731707,3.39657,4.31357,5.68155,40.038848060606064,5.592648333333334,4.9605,12.792608666666666,4.02145,4.361465,7.85413,3.24263,4.798275,4.386625,5.07925,11.103825,3.78669,2.4139,2.827905,6.1373,4.3238,3.814185,4.312865,2.01739,4.54396,3.846195,7.0984940000000005,4.674535,5.30515,2.38703,4.289765,0.525210625,1.4501666666666668,3.674405,6.20065,2.985205,1.2952299999999999,1.2952299999999999,3.560695,3.96674,3.657015,2.75075,1.6517433333333333,3.614735,4.279085,1.620545,3.32612,1.799652,2.4428366666666665,4.14009,4.72454,2.0690725,4.88513,2.1893375,2.201165,3.68056,3.62844,4.13525,3.89789,6.1377093333333335,2.3493743333333335,4.437495,0.7198881818181818,0.656235,3.779525,2.24101,8.672833333333333,3.4683666666666664,4.90546,1.6819475,4.28865,1.526565,3.8096,3.87616,2.57098,4.05718,5.61,0.4138625,0.4138625,3.3486999999999996,3.2016766666666663,2.8859766666666666,3.47635,3.7143,5.30895,0.9921636363636364,9.252631666666666,9.509625,1.9673975,4.9194725,4.788935,5.3388,3.49684,2.72923,2.03374,1.984905,9.645420000000001,2.0681,2.763253333333333,3.621852,4.822925,3.621852,2.25657,2.651873333333333,2.9095866666666663,0.7374045454545454,5.5236175,2.9765266666666665,2.42998,4.25368,8.747209999999999,9.91862,4.381365,4.26055,4.687775,7.070995,2.044035,1.3706,25.752129166666666,4.15751,4.03981,1.0337999999999998,4.176935,4.19672,4.399985,4.21795,4.479045,5.740356666666667,2.8397066666666664,2.0769766666666665,0.7032823529411765,0.741175,5.3179,4.575515,1.4385933333333334,4.228368333333333,0.8694333333333333,3.8326,1.3705133333333333,4.23999,5.8024,1.767805,2.511735,2.37561,3.87675,3.073085,0.4654244444444444,4.13766,3.569915,2.7111466666666666,3.3164,5.0193,2.8758866666666667,4.147595,3.1023,4.12118,8.62812,4.953615,7.284585,2.573675,2.65633,4.514765,4.4018275,4.32445,4.509905,3.735555,5.3341,1.298125,3.0319991666666666,3.2018966428571427,0.600562,1.718766,1.718766,5.1586,7.0583583333333335,0.8523538461538462,5.04135,0.8675383333333334,3.118626666666667,2.665626666666667,2.431467727272727,6.752698888888888,2.491206666666667,1.1943888888888887,2.4611566666666667,1.266875,2.140566666666667,2.9566233333333334,3.1796499999999996,3.1159266666666667,2.59158,0.8675383333333334,4.5099,4.032185,5.5154,2.558575,4.653735,2.1829,5.9796,4.617155,4.278335,2.927713333333333,3.011085,2.3258725,1.3942075,4.395745,2.754875,4.45785,5.76665,1.669904,4.338245,2.7072000000000003,6.16843,3.549015,2.322225,0.8675383333333334,2.264215,4.43738,7.058225611111111,2.33753,1.680816,2.33753,0.40889166666666665,1.222462,3.571065,4.889785,1.96864,3.719445,3.999258,0.6207779999999999,0.6207779999999999,0.6207779999999999,7.535119999999999,1.612724,0.7929245454545455,36.02081857142857,1.7632564444444445,0.6653044444444444,2.7639924999999996,0.6653044444444444,3.74165,1.995295,2.52501,2.5496833333333333,5.95655,4.299585,4.368245,2.3713233333333332,0.8756,4.507775,2.9229633333333336,5.07485,1.0368885714285714,2.797275,2.797275,3.877125,3.78606,4.00466,5.020579230769231,2.95972,4.336725,5.29985,1.7415859999999999,1.1336575,5.40955,6.3933,3.931775,0.684225,4.39223,4.050542500000001,0.90965375,4.49837,2.61559,3.758225,3.980525,1.845920404040404,1.845920404040404,4.419315,3.57991,0.9065277777777777,3.09029,3.06725,3.30481,4.046305,4.70604,0.47103285714285714,0.29561529411764703,0.29561529411764703,0.29561529411764703,0.7666481512605041,0.6030992307692308,0.686167,0.29561529411764703,0.29561529411764703,6.899965,0.29561529411764703,0.7666481512605041,3.606455,1.3001275,4.583185,1.1958166666666667,0.5308330769230769,0.90965375,2.747075,2.6306,3.98656,3.178025,0.29561529411764703,0.29561529411764703,4.448995,3.779655,3.77837,2.564925,3.997905,1.46485,3.84132,0.686167,0.686167,4.64872,3.13859,2.88331,3.06228,4.05587,1.02071,0.8447153846153845,10.449605,1.23552625,4.2191,4.372825,5.41055,2.0788599999999997,0.37940391304347826,0.82566375,3.04635,2.993925,3.10562,4.52846,1.27507,6.3352,4.11412,4.9150725,4.060355,3.1219633333333334,2.877876666666667,6.134758333333333,2.738466666666667,4.835905,4.29597,3.78967,5.9300999999999995,0.5555653333333334,4.165275,3.3242,1.9670366666666668,0.6691733333333334,4.283145,4.99016,2.644795,2.456005,2.173035,5.1661,2.691695,2.796535,0.9968260000000001,0.4684184615384615,4.02989,0.35701466666666665,0.7947827272727274,4.01548,3.243185,4.050155,2.75401,5.06315,4.642295,6.273391999999999,3.668625,4.14526,4.108925,1.5302575,5.0034475,1.953776,4.09832,2.514025,5.999840000000001,2.767025,1.0191839999999999,4.53963,6.91929,6.64602125,3.4717000000000002,0.7979658333333334,2.83665,4.81805,4.036595,4.745725,4.6299,4.087955,4.537235,2.73264,4.26785,1.8045799999999999,2.373325,1.42839,4.033375,9.777445,3.575705,3.65351,5.91015,3.16963,4.216015,2.5406633333333333,2.9774846666666663,3.302045,3.120865,3.69906,3.3402,3.30352,5.45475,5.79385,4.55728,4.686545000000001,5.44545,3.946845,2.734265,5.0851,7.929975000000001,0.9232433333333332,4.090865,4.19739,4.761105,5.16595,4.969905,2.11002,9.32888,2.4815633333333333,3.442405,5.90775,3.73945,4.33282,2.1044,1.8041675,2.7215133333333337,2.182533333333333,2.1177466666666667,2.929273333333333,4.44825,4.725065,4.128695,3.524885,5.013096666666667,3.329965,3.15371,3.8777,5.4966,2.97965,5.413019,4.124575,3.96274,3.349655,8.20552,3.71766,3.68207,4.385385,4.55186,3.235975,9.61119,1.2638399999999999,2.218025,3.71176,2.5644966666666664,2.5644966666666664,1.943415,7.785293333333334,0.9008055555555556,3.43194,0.89870625,2.0603975,4.337635,4.959965,3.83411,4.067925,2.9584166666666665,3.488145,4.02515,3.911385,4.387565,2.906615,2.676066666666667,4.465885,5.0793775,3.65277,4.853415,1.565136,1.6793420000000001,2.7646033333333335,5.55445,2.2632325,1.8109033333333333,1.98391,4.532945,4.66183,3.01741,2.923645,0.5090222222222223,2.32204,8.046545,3.223205,1.50764,0.87135375,1.27498,2.012723333333333,2.2794575,1.0056566666666666,2.112696666666667,4.4548155,4.317295,5.6154,2.4465033333333333,1.9628375,6.3276175,2.919475,2.0848916666666666,2.0848916666666666,2.0848916666666666,6.850883333333334,2.3461166666666666,3.68964,2.943775,0.46787599999999996,1.1080679999999998,2.608525,6.228625,0.47057166666666667,3.832675,4.0067474999999995,5.87225,3.0102183333333334,0.47057166666666667,3.0102183333333334,0.923015,1.106504,6.06365,4.17791,6.880380000000001,4.01338,4.93759,3.70813,4.16461,5.32505,4.88766,6.11705,3.736575,3.41736,5.35985,4.558725,4.45037,4.51783,5.10995,1.4161533333333332,2.71189,1.11753,2.1698475,3.1235580555555558,1.5145380555555557,6.87423,5.474310000000001,2.8079,4.78328,2.72841,4.693095,2.820275,4.359265,5.12475,9.411729166666667,5.74145,4.540045,2.3208525,2.88052,2.20606,0.566435,2.243710666666667,5.87645,5.0449,4.832615,4.69599,0.5611553333333333,2.009695,1.405,4.50398,0.8515076923076923,6.9177375,2.0599625,1.123975,1.123975,3.7455160000000003,1.9574000000000003,3.685833333333333,2.47739,4.738225,3.6833850000000004,3.6833850000000004,3.91558,5.5006933333333325,2.758153333333333,2.3676766666666667,3.4678,3.831765,1.921724,2.892493333333333,5.48405,5.32975,4.72487,4.13248,3.9727533333333334,4.565215,3.433073333333333,3.419866666666667,2.2930525,4.14021,5.24815,3.1370125,5.0985,5.64065,2.0752466666666667,2.94285,6.22565,6.8696,1.1609859999999999,2.53655,2.2026375,2.931646666666667,2.155045,2.620875,2.6188655,1.039908888888889,1.9736375,2.690375,2.42951,2.5264100000000003,2.5264100000000003,3.1996664999999997,2.868075,2.1925105769230773,2.57725,2.4244525,1.907098,1.5284423333333332,5.142367500000001,15.0410805,2.9517733333333336,3.5342000000000002,1.845738,1.845738,1.4610750000000001,1.4610750000000001,2.97313,3.7759,3.0098000000000003,1.936215,1.936215,3.771933333333333,2.93219,1.1094233333333332,1.5355285714285714,2.9513833333333337,2.9251566666666666,3.6971666666666665,2.4274033333333334,3.12861,3.1928033333333334,0.713632,2.5323,3.4907156666666666,7.28919,4.932235,4.25426,4.769915,3.542385,4.93147,4.564375,2.9615833333333335,4.30978,1.3284316666666667,3.2724433333333334,5.5936,5.27395,2.639545,1.2886683333333333,2.885575,2.6210466666666665,2.87431,1.5276466666666666,0.7104778571428572,3.1844066666666664,4.7494733333333325,5.0288,4.665325,4.71266,3.147486666666667,2.0344966666666666,3.371030833333333,2.4532766666666666,3.2489633333333336,3.1728466666666666,3.5469666666666666,2.48961,2.3551933333333332,3.7338666666666662,2.7876266666666667,5.33545,5.0949,5.265618333333334,5.265618333333334,3.39927,4.01317,3.81104,3.901085,2.87468,4.562025,3.31542,2.897273333333333,6.01805,0.8335916666666666,5.17625,4.712,2.63306,5.038735833333334,3.3151433333333333,1.6802000000000001,1.313862857142857,2.1289666666666665,0.9530390000000001,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.5472442857142857,0.5472442857142857,1.2037275,0.8365384722222222,1.6844716035353535,0.9729471428571428,0.9729471428571428,1.2501893813131313,0.43428222222222224,0.4065722222222222,1.2342725,1.5013625,2.59293,2.392995,6.90208,3.205303333333333,3.99145,3.18743,4.745945142857142,1.28431,4.82402,3.816205,4.612585,3.26878,1.534068,4.2143007692307695,3.68841,4.69952,4.55159,3.058325,4.3302,4.479395,4.5786,1.268144,3.918985,4.50417,3.196145,2.4193433333333334,3.46793,2.482695,3.316285,4.229345,3.146853333333333,4.58934,8.759795,3.251965,5.02185,4.3131,4.183198333333333,2.2160366666666667,3.656385,0.8822442857142857,3.992355,3.42457,1.964496,1.23555375,2.825045,1.0099733333333334,0.5336413333333333,3.704966666666667,4.411355,5.2346466666666664,3.7111666666666667,2.4946425,2.77009,4.852865,3.9205666666666663,4.469245,2.67075,2.2752733333333333,4.245055,4.23752,4.293205,5.12135,4.656835,3.74808,4.733495,3.26214,4.74095,2.2360420833333334,4.812335,5.255,3.250265,4.087615,2.50753,3.814945,5.32215,4.13766,5.3086,4.69788,4.948925,2.6971600000000002,5.01735,5.04945,4.416795,2.34905,1.2247975,4.154995,4.74685,4.274085,4.565145,1.89568,4.065725,2.11246,4.85692,4.430285,5.13875,2.26361,4.07147,4.61289,4.372845,2.55043,4.638755,4.80826,4.84251,3.665555,2.34905,2.25666,2.888595,4.403745,3.571595,3.884055,3.5781,5.19355,2.229835,6.92167,4.79906,4.07193,5.199662916666667,4.79279,5.0161,3.2714475,2.5275600000000003,2.5275600000000003,4.025045,3.89992,4.543535,2.1415775,2.8555574999999997,0.9489825,2.6552266666666666,2.9078466666666665,2.4107499999999997,3.3257600000000003,4.450125,2.8344466666666666,5.72985,2.6632333333333333,3.65053,4.2553025,1.96104,4.19698,2.37495,3.093783333333333,4.0723,0.929265,5.10945,4.888625,6.588900000000001,4.48222,5.3124,1.35475,4.61141,6.50065,8.484065000000001,3.1499400000000004,3.4533666666666663,1.957406,0.837875,3.83837,1.0114757142857143,4.49245,4.7754,5.2722,3.23685,3.88376,1.4421285714285716,3.413245,3.712955,4.48276,4.18638,3.0326,3.43097,2.292035,4.509495,5.00655,5.6938,4.281755,3.529145,0.34244111111111114,0.34244111111111114,0.34244111111111114,0.34244111111111114,5.5021,2.81396,6.17715,3.1757066666666667,5.427,5.34665,4.51485,2.192775,2.5541266666666664,1.4408033333333332,5.0743,2.8059133333333333,4.23259,4.220305,3.49514,1.557435,1.1764275,4.63491,2.588815,5.98302,3.835745,5.44715,2.274645,1.5998533333333331,0.8530688888888889,3.31875,4.60454,3.137175,2.3731975,8.296655,4.44915,3.477435,2.2908999999999997,0.478166,3.45297,2.89361,2.10324,1.94887,3.516675,4.07942,3.03581,3.213506666666667,3.084665,3.3309,4.3492,3.215155,4.08043,3.33602,5.477515,0.599164,4.562575,5.58325,4.83152,4.659265,3.3490333333333333,5.24095,4.31583,4.050385,5.3014133333333335,5.1846,4.35378,4.22338,3.6987550000000002,4.527055,3.239685,9.05366,4.861915,4.114135,4.464405,5.1449,5.1021,3.517395,1.0500733333333332,5.625566666666667,3.27858,5.12485,1.4680566666666666,4.328195,4.297005,7.138506666666666,4.796325,3.258705,2.6132866666666668,3.66211,1.769866,1.03318625,4.103315,5.7504,1.95789,2.3732133333333336,2.922746666666667,3.110195,3.621475,3.734125,4.877505,1.7194733333333332,4.14188,4.2229565000000004,3.434795,3.746866666666667,3.589875,2.826435,2.63258,1.9338925,2.451216666666667,2.66487,4.38083,0.5183274999999999,2.63539,3.97222,2.993785,3.4591333333333334,4.20341,5.3659,3.736025,16.76888866666667,2.40367,3.8524666666666665,1.511824,0.8459399999999999,0.8459399999999999,0.8459399999999999,0.8459399999999999,0.8459399999999999,4.41446,4.482895,5.19965,10.023793000000001,2.665075,2.665075,4.53016,4.4998825,1.3097325,1.9136866666666668,3.955285,2.3087625,2.27966,2.183965,3.13157,3.799795333333333,2.0069675,3.55145,0.8231428571428571,2.599676666666667,2.87397,2.90636,1.4038300000000001,3.348966666666667,2.1286833333333335,0.935215,2.861603333333333,2.753216666666667,1.120011111111111,2.5261766666666667,2.7454433333333337,2.01774,4.39386,1.84967,3.00807,2.06721,2.776683333333333,1.0634544444444445,2.98417,4.856378666666667,3.461133333333333,1.0858925,2.91438,1.311755,2.743463333333333,2.9173266666666664,4.786146666666667,3.0749166666666667,2.4845166666666665,4.613523333333333,2.7866366666666664,2.18267,2.5969466666666667,2.724066666666667,1.8115733333333335,2.783246666666667,3.6081,3.1100600000000003,2.7540066666666667,3.308666666666667,2.6671600000000004,2.421405,3.7421679999999995,3.7421679999999995,2.977653333333333,2.0587233333333335,1.8515233333333334,2.609436666666667,5.510706666666667,2.9332933333333333,1.98809,1.6077675,3.0217166666666664,4.207465,2.4229966666666667,1.035204,2.751874,1.48658,3.8157333333333336,2.097323333333333,2.5154033333333334,2.1669766666666668,4.242666666666667,1.246864,1.5759133333333333,1.55284,4.327473333333333,2.57409,4.291025,1.020151111111111,4.12951,1.9371099999999999,2.265725,1.833618,1.4160083333333333,3.30995,23.819306924242426,7.074390000000001,2.6463633333333334,3.5373391666666665,2.33998,9.965569333333335,3.1906266666666667,1.00606875,2.63861,2.3442266666666667,2.118036666666667,2.7046433333333333,2.571683333333333,2.5948333333333333,0.933202,2.8811133333333334,2.41164,2.9731166666666664,2.9907800000000004,3.1068200000000004,2.13939,2.2430133333333333,2.85132,2.5753833333333334,2.16642,1.612744,5.27436,4.92597,2.3736425,2.8208,2.277406666666667,2.4156366666666664,8.056791666666667,1.9248666666666667,4.87175,2.2608775,2.037265,7.18583,3.00807,2.6664600000000003,2.626,1.768844,1.4935842307692309,3.2875033333333334,3.2735133333333333,4.044195,1.40048,3.7527666666666666,1.59049,1.59049,3.922965,4.183555,3.211906,3.211906,5.75065,3.463645,0.40787000000000007,11.379905735653235,1.1939833333333334,0.9572157142857144,3.6505,1.4883208547008546,1.8446125,5.823043333333334,3.66695,0.7485181818181819,2.132756666666667,4.942077333333334,2.6053111666666666,3.93635,1.3622585714285713,5.8506,4.95568,4.76338,3.57889775,1.995272,2.5060733333333336,2.871613333333333,2.50305,2.12504,5.1017600000000005,4.164285,4.25688,1.9988725,5.05485,3.82516,3.1511066666666667,2.2226375,5.0705,2.3214466666666667,8.44731,6.8615725,2.05928,2.513465,1.7146439999999998,4.732366666666667,4.732366666666667,3.5239333333333334,2.7925133333333334,3.0153458333333334,5.6345,10.1130475,4.246555,2.575775,5.3746,3.85669,5.25235,1.941974,0.8285425,1.3514799999999998,4.68754,4.946935,3.9372666666666665,2.77417,3.6419,2.0990699999999998,3.742745,4.553765,3.33288,5.12465,3.0130933333333334,3.4444420000000004,3.4568666666666665,3.2562200000000003,3.335266666666667,6.0862,2.954025,5.5583,5.2683,3.62922,3.36825,3.36825,5.6092675,11.784789166666666,3.5782666666666665,6.063867500000001,7.456957777777777,3.664435,2.5309766666666667,3.96096,1.2574433333333335,3.817605,2.3704325,2.99977,3.1045966666666662,3.024706666666667,2.1001000000000003,2.45979,2.672696666666667,2.5174933333333334,2.9085933333333336,3.152253333333333,3.66582,2.4963633333333335,2.9714066666666668,3.878515,2.8999466666666667,2.2430600000000003,1.13045375,2.0773075,3.075606666666667,2.396596666666667,2.4377400000000002,2.47525,3.1994633333333335,2.2282800000000003,2.4196766666666667,2.6709066666666668,2.8940433333333337,2.7298733333333334,2.81453,2.51717,3.07107,2.88773,3.534284,2.6565766666666666,2.46217,2.33453,2.3344033333333334,2.391366666666667,3.350633333333333,3.26717,2.98129,1.99818,1.99818,0.7321333333333334,1.625076,3.61899,3.16672,2.5113233333333334,2.1001000000000003,3.5167333333333333,1.1927328571428573,2.571966666666667,0.5848306666666667,3.4785,3.141033333333333,3.35364,3.0161700000000002,2.3123066666666667,2.5968533333333332,3.1767333333333334,2.7453466666666664,3.4125333333333336,4.725913333333333,1.53657,2.4265766666666666,2.3924733333333332,1.7893833333333333,2.16634,2.7772666666666663,2.81541,1.733932,2.64144,2.6363600000000003,2.6222933333333334,2.62618,2.63768,2.8042266666666666,3.1241,1.3611775,2.8709066666666665,2.3430066666666667,3.8716333333333335,3.4684333333333335,2.18521,1.7544933333333335,3.5996666666666663,2.40494,3.5462333333333333,2.6865133333333335,2.3426066666666667,4.7827775,2.9347999999999996,2.0449066666666664,1.497818,3.579966666666667,6.004720000000001,3.287803333333333,3.4918,2.796836666666667,3.08222,4.861522666666667,1.598616,1.1666555555555556,2.1173233333333332,1.8076295833333333,4.6148,2.9573133333333335,3.29743,3.006373333333333,3.1598400000000004,2.2281,3.0313199999999996,2.3154625,1.627674,2.6450633333333333,3.498315,3.7043675,3.27207,3.7491,1.521785,2.75079,3.26359,2.7277,2.1633566666666666,3.6474666666666664,3.9446,3.7846666666666664,1.25265,5.786379,3.9813425000000002,1.5712666666666666,3.40997,3.29384,2.756205,4.04962,1.8856439999999999,1.8856439999999999,3.4529666666666667,2.9830900000000002,2.902085,5.09455,4.366185,4.200471333333333,1.420248,2.905343333333333,2.38715,4.22428,3.0804899999999997,4.983796666666667,2.6829066666666663,2.392846666666667,2.7154000000000003,3.62893,3.733995,1.700612,3.14106,2.844715,2.3861375,4.456865,1.3064916666666666,3.448975,4.460265,2.66324,3.596625,4.146815,1.7140425,1.5495133333333333,2.4815725,1.05696,2.0355342857142857,2.0134725,0.4491642857142857,3.855015,2.15814,4.635425,4.259795,2.84893,4.797997499999999,3.24964,3.2938466666666666,3.486166666666667,2.4830566666666667,3.082473333333333,2.819983333333333,3.025063333333333,2.084983333333333,0.6544300000000001,2.3322933333333333,0.5952957142857143,1.9460233333333334,2.4584733333333335,3.4198,2.9718699999999996,1.3318333333333332,1.2285125,3.74509,4.41302,3.149305,3.428925,3.483985,1.592175,3.91141,6.744335555555555,3.66403,5.595212500000001,1.554685,3.854765,1.785965,3.95053,3.27668,1.795525,4.019725,2.81127,3.64388,3.459605,2.1937325,3.96511,6.025270000000001,4.868475,3.45259,3.017985,1.7241375,1.8785575,3.142,3.27833,3.09158,3.440425,3.70267,3.327315,1.602065,3.44472,2.984365,1.6132,3.91683,0.9936250000000001,3.155345,1.677625,3.417205,4.623985,3.65731,2.74444,3.795215,3.35998,1.84702,2.36417,3.6743666666666663,1.487415,5.46106,4.16494,4.447935,2.46146,2.507075,4.604335,4.39747,2.557922,2.557922,5.652909,3.6422065,2.5321825000000002,2.85095,2.0015,2.60136,3.260435,3.6959649999999997,2.491219,3.47822,0.9944219999999999,3.45557,2.93652,4.08182,2.50349,1.498455,1.324985,2.863245,5.863537,5.4123475,3.53379,1.40184,3.74327,3.085245,0.8051550000000001,2.80033,1.151056,5.459535,1.3626766666666665,3.5072,2.02329,1.3318333333333332,2.83889,2.695745,4.36146,7.012138333333333,3.9916,4.06284,2.36881,2.849875,3.92349,3.459105,4.51457,4.504025,1.07164,1.5596717500000001,0.96464875,2.198395,2.21373,4.749515,0.96464875,4.737625,2.057,1.5565475,1.5565475,1.6132,3.697775,4.33534,3.75019,1.5188380000000001,1.5188380000000001,0.79393,2.82092,2.0948475,6.1118525,3.99144,3.39554,2.7724733333333336,1.0348857142857144,3.493985,2.81268,4.30575,3.63969,3.521,3.521,3.465695,4.00074,1.8588425,2.45165,0.9702333333333334,1.6603933333333334,3.572075,2.31054,3.408969166666666,3.408969166666666,2.90351,4.673255,4.296895,3.338115,3.444945,4.11639,2.5210500000000002,4.1812775,2.60805,3.442335,9.009640000000001,4.981075,2.718845,3.196305,2.996905,4.78694,3.064064,7.737175,4.579848,4.54684,3.40984,3.9649,3.468295,4.522885,4.733725,2.25465,4.13362,5.785776666666667,2.634715,2.078208666666667,2.888615,3.217255,3.30497,5.26515,2.189713333333333,1.9503933333333334,2.44042,2.6765925,2.50124,6.7216320000000005,1.4857475,4.775666666666666,4.775666666666666,3.192075,3.6846791666666667,2.933335,2.3060766666666668,4.43209,4.0642689999999995,2.002504,3.97192,4.006255,3.54195,2.935745,2.96551,5.890255,3.330395,5.115,2.844245,4.44532,4.183995,3.102505,2.9830900000000002,1.9213166666666668,2.67077,4.0098,2.949745,2.9831416666666666,3.230075,5.966108333333334,2.385115,1.757435,3.145411666666667,2.3308633333333333,3.617195,2.660105,0.8051550000000001,2.892775,4.33209,3.92057,6.0398575,3.01302,2.993605,3.02892,3.02892,3.5327025,4.110455,3.608155,2.2335,5.7033000000000005,2.184575,4.4476,3.574965,8.18896,2.79153,1.2214633333333333,3.02787,4.499275,0.5133675,4.17454,2.82274,2.887745,3.076495,4.491285,2.1898133333333334,2.49527,8.973295,3.49601,2.865245,1.3626766666666665,3.60075,2.58703,2.1804437500000002,3.87899,5.207902499999999,1.5607775,1.1049016666666667,0.9416066666666666,4.14933,3.79402,3.604515,3.3702425,3.3702425,1.602065,2.257615,2.9705280555555555,0.8566155555555555,2.83092,0.9436725,1.521785,2.97205,3.21731,2.37063,2.48923,2.3334683333333333,4.04013,3.32218,2.87545,3.299945,2.675735,4.36874,6.8101,4.044125,0.87936125,2.4322660000000003,8.66854,4.74556,4.27657,1.058135,4.473001666666667,1.4521600000000001,3.4294450000000003,3.4294450000000003,3.642645,7.832285,0.8455377777777778,4.730515,4.89832,2.1792433333333334,3.9635233333333333,3.67629,2.2746325,8.642866,1.612245,2.3270933333333335,3.045495,1.6243633333333334,3.7395635,3.095305,3.22984,3.151256,2.74966,3.280465,1.1086833333333332,7.22757,4.05604,4.00821,3.926795,1.8940525,2.74444,3.67401,3.583285,0.5997576923076923,4.28372,4.140265,4.446,2.08972,1.2532260000000002,3.99283,4.27328,7.8167,0.7481776923076923,0.8290525,0.8290525,1.7889866666666665,1.3926,1.426288,1.8142766666666665,4.591675,1.1997266666666666,0.8459171428571429,4.0626299999999995,3.541135,1.335,3.310835,4.48835,2.431545,0.724326,1.71759,9.53661,3.513891666666667,3.473875,2.20389,1.3631025,2.4850333333333334,2.538475,4.516665,4.51328,3.888145,0.8788871428571429,1.423922,0.9324600000000001,4.40642,4.413755,4.19141,0.8566155555555555,1.680882,4.110585,2.2574896428571427,4.2830725,1.0574525,4.697775,0.7161766666666667,0.7161766666666667,0.7161766666666667,9.52272,3.97781,0.9436725,3.87693,4.60355,2.619705,3.1491,3.94932,2.551305,1.6797183333333334,1.7438033333333334,0.724326,1.529481,0.5259666666666667,0.7847516666666667,1.3405416666666667,3.30807,3.820565,1.9549325,7.30481,4.981403333333334,0.5092066666666667,5.6285,5.16794,3.25825,4.441805,7.793707,3.6992694047619046,4.981403333333334,4.434509500000001,2.27506,4.4883,3.76379,6.696505,3.58562,0.478166,1.569002,3.850395,1.7864339999999999,1.1049016666666667,4.147555,2.3486833333333332,1.653405,3.11546,1.677938,4.456,4.490125,4.14442,4.714515,5.82996,2.528135,3.95806,1.151056,2.2427125,3.2258,3.060725,2.002504,4.06103,2.540965,4.6668,2.89049,2.291785,3.2776366666666665,1.511846,3.26467,0.8566155555555555,1.9777895,0.9416066666666666,1.52112,3.65816,1.4857475,1.3405416666666667,2.2975,2.623685,7.29756,0.8788871428571429,1.058135,1.259836,3.60019,3.44754,1.259836,3.94662,2.2427125,0.5133675,0.8566155555555555,1.7889866666666665,1.151056,0.4491642857142857,1.6730820000000002,4.111847333333333,2.1792433333333334,1.3347366666666665,2.87008,1.25265,1.612245,2.6087116666666663,1.7438033333333334,4.30282,2.6087116666666663,0.8051550000000001,2.689156,2.4453175,0.0762015909090909,0.0762015909090909,0.0762015909090909,0.0762015909090909,0.0762015909090909,3.4943000000000004,2.821923333333333,2.8785066666666665,2.79937,5.5402,3.91106,1.833618,3.762335,3.66222,2.22546,5.0847575,3.779975,2.41785,2.418655,2.754065,4.823305,8.038818333333333,2.333295,1.98719,3.138420714285714,0.9652557142857142,1.3919216666666667,2.4339066666666667,2.0394200000000002,1.4321675,2.7167966666666667,2.231126666666667,2.6279333333333335,2.8877433333333333,2.6708433333333335,3.93272,3.60204,2.585323333333333,1.312628,3.55616,3.74307,1.4962933333333333,1.295394,1.295394,1.295394,3.449665,2.85712,1.13432,2.334616666666667,1.287872857142857,4.40441,1.4771633333333334,6.3725000000000005,3.3044225000000003,2.70499,3.133426,3.133426,5.3145766666666665,3.279425,4.41531,5.3138,2.0772775,3.076826666666667 -GSM1946760,0.0,1.9645725,1.9645725,1.5630899999999999,4.48979,6.41355,2.2827939473684213,1.7596299999999998,7.290424019607843,4.30143,3.1561766666666666,2.635715,2.38513,3.340125,4.25898,1.8991,1.50299,4.952935,2.430006666666667,2.248015,4.508335,5.45197,3.73883,2.412255,1.7459219999999998,4.02505,4.542765,4.28217,0.6351325,1.519678888888889,1.905413888888889,1.72265,1.61127,1.0535428571428571,0.6883825,3.016250357142857,1.56116,1.9466025,1.260125,2.1042275,1.1160175,1.095185,1.141362,1.503308,0.940936,0.9298819999999999,0.773634,1.1886457142857143,1.603932,1.827322,1.495704,1.9695699999999998,1.6797920000000002,18.42891691666667,0.37554933333333335,0.811992,1.046548,1.7566199999999998,1.354022,1.680088,1.0390314285714286,1.0390314285714286,1.0390314285714286,1.12838,0.999574,4.672233749999999,1.08526,2.4473475,1.979145,2.414515,0.9792059999999999,2.199605,2.25813,1.89083,1.5133625,1.9876175,1.6210475,1.753455,2.4604766666666666,3.73136,4.85807,5.2102,1.5671233333333332,4.49958,4.283486666666667,4.142705,3.9234,1.0672025,7.47398,0.585179375,0.585179375,2.21576,1.07918,16.19842,4.849815,5.2849,5.90995,4.231605,4.08787,5.425,0.45902166666666666,2.3349633333333335,1.89289,2.282685,4.35024,3.773165,1.558775,3.3115466666666666,3.763033333333333,3.004096666666667,3.4994666666666667,3.453405,4.827385,2.754422,4.54131,2.8795066666666664,0.7324363636363637,1.8692060000000001,2.6069,5.12625,3.44471,0.54426375,3.570505,3.813085,0.813565,4.636315,1.7356172727272727,2.374725,2.92965,2.087505,3.90591,5.85675,3.30281,2.55633,3.4476,3.1085499999999997,4.19822,2.8896833333333336,5.63705,3.367015,4.39758,3.144395,2.19265,3.635325,2.3768975,6.73535,3.45426,3.52981,5.80815,3.10309,4.94882,0.8108422222222222,9.683031428571429,3.706685,1.9214333333333335,1.74946,3.1623366666666666,2.44768,4.75032,5.48465,2.272125,5.128185833333333,2.893375,4.202175,2.272125,3.05635,4.40048,5.2231966666666665,3.57376,8.9937,3.85305,5.08015,3.0177,4.874885,4.273905,1.8352833333333332,8.05777,4.253285,3.96321,3.50615,3.57731,3.328045,2.257165,5.953984999999999,2.2241,3.93272,3.91414,4.980995,5.06295,3.52858,1.3972783333333334,2.826345,2.840965,1.833375,1.833375,5.95396738095238,3.04344,1.8967066666666668,4.25228,4.399035,2.602775,1.528005,0.8408144444444444,6.98335,2.64652,6.945,3.384735,3.79504,3.85643,2.869285,3.97374,3.58603,3.919375,3.93484,5.75965,2.88684,3.650325,9.21744,4.805605,3.567933333333333,3.0308466666666667,2.69666,3.964166666666667,4.404218333333334,1.899735,2.66567,2.0551733333333333,1.778568,1.70812,2.6168066666666667,1.7534375,1.8487275,2.9877366666666667,2.8304666666666667,2.3643366666666665,2.6724333333333337,4.283486666666667,3.388815,3.260075,3.325905,4.198675,1.1816666666666666,2.109895,2.8425742857142855,2.06208,2.5126766666666667,2.12076,3.3474,1.7382560000000002,1.3805399999999999,2.6776400000000002,0.624934,1.8346633333333333,0.49585888888888885,0.49585888888888885,1.5121666666666667,2.4213400000000003,2.06218,1.4050333333333331,1.4942733333333333,0.3180169230769231,2.7187333333333332,0.624934,1.29754,0.18826702702702702,1.45924,1.99488,3.4193,2.0124,2.1366633333333334,2.504863333333333,2.3029633333333335,2.3417866666666667,2.4671066666666666,2.27389,2.267376666666667,2.6610466666666666,1.8782966666666667,2.795125,4.2046,0.6305933333333333,1.8422366666666665,2.550666666666667,1.9742833333333334,3.47269,1.461182,2.56137,2.1866766666666666,4.293963333333333,1.9540466666666667,7.198922857142858,1.6704428571428571,2.9159133333333336,2.18006,1.93613,3.2983499999999997,1.846595,1.88927,3.98092,2.6675633333333333,2.0711325,3.661515,4.08855,4.389385,3.760075,2.307955,3.369745,4.330994666666667,3.949455,3.93835,4.11675,4.331295,3.04392,4.419075,3.346765,0.90851625,4.889255,1.2326333333333335,4.9362,3.733885,5.876424,3.7083,4.29714,0.97065125,2.23877,3.45969,4.034285,0.77281,1.1257516666666667,1.9677680952380956,3.888222857142857,5.772337500000001,5.685002,2.2660075,3.27555,5.06705,0.33342,3.37198,2.292805,0.937615,4.665635,2.00851,10.605004999999998,1.3416875,1.374775,2.239446666666667,2.35662,2.211993684210526,5.324808684210526,0.4025236842105263,1.7089733333333335,2.7640700000000002,1.0300025,3.7976666666666667,1.0822357142857144,5.1006,3.85189,2.1538233333333334,6.35,5.79065,2.954325,1.1092328571428571,4.199870000000001,4.83423,4.20491,0.8431954545454545,7.828763333333334,2.7721133333333334,4.21913,2.6469733333333334,2.4910033333333335,4.43714,2.28085,2.4894666666666665,2.2065266666666665,2.36408,3.18288,2.9522733333333337,0.332385,4.049725,3.724445,3.820825,3.91115,4.48876,6.108917,4.08621,1.6977625,5.60125,4.258245,4.40956,4.223635,1.0778833333333333,2.6914766666666665,3.0767166666666665,2.5032833333333335,16.054075,3.297705,3.84341,4.19571,5.89225,2.957555,5.1255774999999995,1.61022,0.7984100000000001,2.751375,3.280305,3.59427,4.1471,6.324436666666667,2.8528866666666666,2.30107,2.09119,3.4446333333333334,4.959845,2.291395,0.3618643452380952,3.2933484782608695,1.8740575,1.14778875,0.53137608436853,0.7008878234989647,0.3618643452380952,0.3618643452380952,0.3618643452380952,1.097115,1.2440875,0.8729675,1.4946375,4.3053225,0.2196305882352941,11.223095243506494,3.6751666666666662,2.7984000000000004,4.035995,4.050345,3.8508,2.07836,4.61179,4.020727333333333,4.17736,3.874055,0.6575976923076923,3.3089833333333334,4.096710512820513,0.5414207142857143,3.6181,2.8797200000000003,4.3036,0.5533554545454545,1.778325,4.392185,3.48845,1.8386075,1.85133,1.6775366666666667,3.1273133333333334,4.039065,3.123545,2.87248,5.672,5.5091,4.920295,3.352233333333333,3.430825,6.8867416666666665,3.9383666666666666,4.994915,0.42934047619047616,3.079,4.05059,2.0567800000000003,2.566995,2.69609,5.554591666666667,0.57558,2.883925,4.19448,4.31266,1.0150014285714286,4.842515,2.747635,4.831995,3.0150133333333335,4.079085,3.47083,4.25559,1.2033716666666667,3.37583,2.74096,4.70222,4.116635,4.49069,5.91235,4.652215,2.74829,5.03986,2.345403333333333,3.168235,3.07237,2.5732766666666667,2.71752,2.3282666666666665,1.829004,1.44665,2.07145,0.7944385714285714,1.4942166666666665,2.32352,1.9994966666666667,3.01852,3.2774699999999997,2.8862799999999997,0.8331766666666667,5.1207,3.4423666666666666,5.30414375,2.66332375,3.059013333333333,2.844303333333333,1.6232233333333335,1.6232233333333335,2.4119757142857146,2.4119757142857146,3.255924642857143,0.5134471428571429,1.8068066666666667,2.18961,3.7350333333333334,2.235740714285714,2.235740714285714,2.235740714285714,7.34751880952381,4.3187709523809525,0.9502636363636363,2.773515,4.934116666666666,2.358555,4.780305,3.155035,2.378855,4.44782,2.929396666666667,3.0585133333333334,1.07102375,1.8934333333333333,2.8270933333333335,2.2479733333333334,2.62486,5.63275,4.320166666666666,3.8617333333333335,5.0555666666666665,1.9472666666666667,2.7141,3.07324,0.9337899999999999,2.1994766666666665,4.707869333333333,7.845574999999999,1.497075,2.87119,4.80387,1.7329440000000003,1.6211675,1.6211675,0.98073,4.667675,7.615145,3.89715,5.167619,4.45695,1.7051666666666667,3.9636,3.01866,4.543335,5.163153333333334,0.36776315789473685,2.787305,2.672415,4.005545,3.87958,1.796834,1.92286,2.42352,4.183045,3.99875,3.065765,2.43894,1.4246919999999998,6.96593,5.3623,3.95872,3.390025,5.2424,4.584315,4.357045,3.512375,3.6568775000000002,2.02498,1.0999542857142857,2.67274,3.9622,3.794895,5.6818575,5.767212499999999,2.4802575,1.7389700000000001,2.6962333333333333,2.73291,2.9304733333333335,0.7559142857142858,2.32586,3.559525,1.09611,5.00285,3.25988,5.885555,1.258565606060606,1.258565606060606,4.11206,3.78788,3.941015,5.71345,2.7755433333333333,2.25319,3.83809,2.93173,2.18272,3.3791666666666664,2.5246733333333333,4.13432,3.3136925,3.6994,4.587085,1.1021455555555555,2.69464,4.2806,3.96444,3.316575,2.5083866666666665,1.650445,0.8253222222222223,0.8253222222222223,0.8253222222222223,0.8253222222222223,1.5880955555555558,3.6151174999999998,3.6151174999999998,1.6474900000000001,6.784531666666666,3.028085,4.189945,3.0747133333333334,2.6674,4.638505,3.946495,4.92652,5.17665,1.666265,3.8711,3.65179,2.51644,3.23322,3.293795,2.72372,4.1878,1.855775,4.53747,1.659265,3.360155,3.18156,1.8351025,1.1315533333333334,2.95394,4.446055,1.197466,0.8294722222222223,3.425815,1.353845,4.911384666666667,4.339525,1.3409042857142857,3.54443,0.7235066666666667,2.644343333333333,2.47897,2.3472833333333334,2.520185,3.75191,2.8236833333333333,4.846775,5.43865,4.316825,4.39561,2.1607975,1.2714542857142859,3.80313,5.00635,1.4109275,1.4109275,4.01317,0.29105533333333333,2.361,0.29105533333333333,0.29105533333333333,0.29105533333333333,0.29105533333333333,5.21665,2.7293866666666666,3.024825,3.39837,3.10446,4.419205,2.56073,0.8802,0.8802,0.946565,0.946565,3.76985,1.759655,4.60367,1.43479375,1.43479375,6.19853,0.5461085714285715,2.4244425,7.350806666666666,4.51408,3.199845,3.497515,0.97382625,2.163065,1.9539,4.53218,4.152845,4.207195,3.918045,1.2611214285714285,2.77266,1.9587125,7.27205,1.7689,4.44685,4.715685,3.014495,3.85055,6.0186,7.791129999999999,4.06496,4.2084,4.089045,2.4311375,3.152545,2.26237,2.27679,1.849735,3.878325,3.479415,5.494691666666666,6.58987,4.001605,1.0463666666666667,1.473745,3.701775,3.666975,2.096745,4.20907,3.159135,4.735766666666667,1.7929199999999998,4.100266666666667,1.5559266666666665,6.498846666666667,2.9667066666666666,2.48648,2.3486,2.37422,3.7045,3.226183333333333,3.2918766666666666,2.728173333333333,3.338366666666667,2.2807,3.16048,3.07584,3.16052,0.383598,2.91154,3.782175,2.6045,5.6428,4.86128,4.516935,6.698789,4.68388,2.1456633333333333,4.332955,5.1544,1.5747833333333334,4.69109,5.63995,5.0198,4.77051,3.182355,5.4195,5.0221,3.833345,5.370378666666666,7.3997675,4.438545,1.1919250000000001,1.41275,2.606005,1.8242740000000002,4.45304,4.057055,4.6006875,2.51985,2.3272866666666667,2.6302166666666666,2.35757,2.1905633333333334,0.9382900000000001,0.5029670588235294,4.01317,4.033775,3.7421333333333333,4.01494,3.05337,3.2914366666666663,5.172805,2.8970766666666665,0.5712947058823529,2.906755,5.44115,1.4582125,1.6442219999999999,3.66603,3.198845,2.4842400000000002,3.751533333333333,3.847955,2.6890199999999997,2.3735133333333334,2.317903333333333,2.4801033333333335,2.75931,4.222655,4.9964025,6.560855999999999,1.303342,4.61297,3.11876,4.7966999999999995,2.329143333333333,2.861085,2.237545,2.007756666666667,1.3794025,1.3794025,2.5986166666666666,2.2443766666666667,2.7349766666666664,4.811095,1.637992,2.33598,1.86831,0.43415375,3.505065,0.5573616666666666,0.8691725,3.356415,3.995975,3.490185,1.691795,4.43527,3.14519,0.7952428571428571,4.257335,3.819530952380952,3.2335333333333334,2.616405,4.80541,0.26226172413793103,2.1850003333333334,3.24791,1.45065,3.684845,6.6157,2.30625,1.3491566666666666,3.91645,3.829445,2.631796666666667,2.631796666666667,3.46754,2.44459,4.653885,5.459295,4.931945,0.9254233333333334,2.8731066666666667,2.45497,4.388155,5.19715,5.6526,4.84341,4.396,3.795,3.7977333333333334,3.5471,4.1753,2.96575,3.0615400000000004,0.592135,2.3842275,2.41579,4.026035,3.071146666666667,3.2185233333333336,0.7399983333333333,3.3832,3.909662,4.82942,5.72285,5.1824,1.7535475,1.7535475,0.8215389999999999,3.065565,4.615735,3.591775,3.963187142857143,3.229855,4.79883,0.5824845454545454,3.06878,3.47766,4.32464,3.909585833333333,0.7422357142857142,3.117945,4.038735,5.7508,3.7334,4.83527,2.69803,4.057305,1.368215,0.97176,2.682123333333333,5.47545,4.734455,3.007015,1.4010883333333333,3.767025,2.456365,2.72335,2.7605348888888885,2.9543033333333333,4.582073333333334,3.17219,1.8056899999999998,3.544966666666667,1.4382141666666668,2.92182,2.47424,2.305275,2.834963333333333,3.122536666666667,2.29218,2.99717,3.693795,3.11854,3.675935,2.3798266666666668,2.054145,4.00901,3.0942399999999997,2.4314966666666664,3.675935,2.0501066666666667,0.7892618181818182,2.41625,1.032221111111111,2.2013575,1.511705,0.9351727272727272,1.79095,1.8125025,2.6690085000000003,2.7068,4.61443,1.501565,4.890075,3.0905833333333335,1.635136,2.3867766666666665,2.43649,1.7447100000000002,2.6230933333333333,2.79894,2.4199875,1.8220575,1.7686620000000002,3.567833333333333,2.1399066666666666,2.956,3.2148966666666667,3.0383999999999998,3.5718333333333336,2.0747233333333335,4.0988999999999995,3.3807666666666667,3.788933333333333,2.7293133333333333,3.4124666666666665,3.735633333333333,1.9959866666666668,10.79495,4.087405,4.33101,3.43744,2.88054,1.984575,3.95791,1.675922,4.027715,4.291315,1.39171,2.3466133333333334,1.0991116666666667,2.23327,1.6107766666666665,2.4001066666666664,4.883635,3.0195133333333337,3.658075,4.983175,0.74076,1.44924,0.971622,3.48633,10.208133333333333,3.3226099999999996,6.792,2.0729525,5.25735,4.32611,2.4352425,4.86961,0.2919394117647059,0.8316028571428572,4.346405,4.1357,7.2937625,2.0514625,4.40483,6.11,4.59344,4.6144,3.38007,4.476875,3.52965,5.792971666666667,3.539615,3.061035,3.17449,2.1257966666666666,1.9051266666666666,1.4362830833333333,2.494613333333333,3.992605,4.625805,1.545216,9.09026,1.8493700000000002,2.96706,1.029484,1.029484,7.052410833333333,2.829215,2.438375,2.2464575,2.5926666666666667,2.20588,1.16838,3.597265,2.5315766666666666,0.6227842857142857,1.7765066666666665,3.2963699999999996,3.2963699999999996,1.1241133333333333,2.627266666666667,2.2112233333333333,2.8229800000000003,1.348995,1.8294033333333333,4.582945333333333,2.66286,2.625175,1.30608,1.30608,3.91153,5.6697,4.431525,3.25887,3.786385,5.59414,2.815905,2.8541000000000003,2.6859,4.034895,1.14549,3.3889333333333336,2.598075,3.7768,2.081253333333333,4.99709,3.62965,4.30091,3.473595,5.564074000000001,0.9202822222222221,1.9354125,2.03991,3.525825,4.265115,3.69792,3.89119,3.23119,2.550015,1.79049,4.059835,3.214715,3.32626,2.4853433333333332,0.84485875,3.340225,4.164125,4.838835,1.2130866666666666,2.848803333333333,2.3488666666666664,1.7562300000000002,1.859459705882353,1.859459705882353,1.281265,1.8795333333333335,1.122857142857143,1.3278219999999998,4.421885,4.247075,0.47367095238095236,3.52276,3.5248666666666666,3.80429,5.45225,0.42435349999999994,9.296455,5.5749,2.56911,3.937225,4.54112,5.3699264285714285,5.00245,6.826655000000001,0.6979081818181818,2.7741866666666666,5.2452,2.7620566666666666,1.7641325,1.92578,4.38731,5.20398375,2.4378294642857146,3.3922666666666665,3.049996666666667,1.8596375,4.48917,10.8008,8.34590625,4.0064,4.33236,3.14085,3.03497,3.922245,1.846466,3.0797866666666667,3.566555,4.910355,4.81887,4.85794,6.805133333333334,2.1039133333333333,4.049135,4.56148,5.03485,4.532335,7.792565,4.1245625,5.9,3.479165,2.89917,2.9593,6.0325,3.67023,4.866295,2.067495,3.0899933333333336,3.215525,5.82185,3.95129,3.781165,1.495074,0.88973,2.42951,0.5419226666666667,4.04546,3.58845,3.44801,2.795775,2.1135333333333333,2.8623,2.54535,2.880586,1.809222,3.005865,2.771575,2.23478,2.517375,3.801872,1.2552583333333334,2.8412233333333337,4.973555,3.7499000000000002,1.2096125,2.716953333333333,3.6328975000000003,3.632491,1.5559125,5.7199,5.38795,2.0776600000000003,2.830856666666667,30.022195069704804,3.382733333333333,1.7297666666666667,3.9697999999999998,1.5733533333333334,2.6225,2.93301,3.456566666666667,2.0285425,2.770725,1.8653325,4.251225,3.3362,2.5156,1.4733675,2.24418,2.879225,0.3837604545454545,1.1443025,2.7897966666666663,1.6959240000000002,3.33756,1.5559125,2.055613333333333,25.07324161111111,5.0024,3.87809,3.532545,2.37816,2.48964,2.5687333333333333,2.3089075,3.56209,5.089358000000001,5.2624,1.596918,1.728222,2.04764,2.35367,3.8152783333333335,5.12485,4.802255,4.32826,0.18538617021276596,5.03885,4.878229166666667,3.81811,8.73732,1.0771925,1.0771925,2.9288633333333336,2.677275,5.5189,1.8743144444444446,1.0414355555555557,4.2315,1.9027875,4.13148,3.839785,3.423855,4.00227,3.939045,5.2226,2.691455,0.6779877777777777,3.02042,2.19645,4.22929,7.724959999999999,4.15142,1.8187533333333334,1.8187533333333334,6.90241,4.746105,3.992585,5.28035,2.06414,5.186170000000001,1.5052899999999998,1.4754933333333333,3.0403566666666664,2.0436033333333334,2.82563,2.7142633333333333,3.76381,4.4654025,3.793095,5.4297,2.2972125,2.708075,1.8335325,2.64975,2.4078825,2.1319725,2.0684875,4.883365833333333,1.78331,3.3129971428571428,2.2905633333333335,3.0432466666666667,2.5774500000000002,1.6703700000000001,1.3995099999999998,0.930453,2.6665266666666665,3.9393666666666665,0.703864,4.57599,1.7160975,5.63800875,1.9210775,1.5007175,1.416245,1.5184433333333331,5.5146016666666675,1.890894,2.886646666666667,3.6623,1.22816375,1.82664,4.825096666666667,3.2277066666666667,2.0320966666666664,3.485333333333333,2.812246666666667,2.8163300000000002,1.2805319642857143,0.2803791666666667,0.2803791666666667,0.2803791666666667,0.2803791666666667,0.2803791666666667,3.682785,2.5610866666666667,2.60645,3.4541,1.4301199999999998,2.6436100000000002,3.0925,2.0538000000000003,3.213875,2.758165,1.7299066666666667,2.930616666666667,3.13551,2.0878,1.980885,3.75052,2.7751633333333334,3.8102,4.9871,2.519276666666667,2.5524333333333336,2.5517066666666666,10.898106666666667,4.739295,4.459535,5.0085,4.48909,2.81526,5.00295,3.73629,4.631335,5.355188333333333,3.794885,2.980255,2.275315,3.21578,4.956804571428572,3.374355,16.94271769047619,1.0762725,4.13221,0.8787977777777778,1.3170875,2.82095,4.548065,4.42722,5.0201,1.6664866666666667,2.406575,4.210755,1.9407733333333335,4.379755,3.1540325,2.548646666666667,0.5910466666666666,2.8613633333333333,4.59469,2.3812275,2.4000975,2.163415,20.19136,1.2320600000000002,1.3604125,2.6480566666666667,0.2955803846153846,1.7393175,2.8009500000000003,1.9529566666666665,2.9544533333333334,2.5831,7.485422499999999,1.862225,2.48783,2.159125,2.07933,1.629615,3.3468,3.102385,3.703825,3.2748899999999996,1.91231,2.6566783333333337,3.134763611111111,4.83387,0.4523525,3.6219,3.030056666666667,2.88609,2.036,3.6243499999999997,3.53868,1.5864466666666666,2.3376633333333334,2.235256666666667,1.4237166666666665,1.7558166666666668,3.40115,3.210095,0.717385,3.38422,4.77535,4.111895,2.25803,2.25803,2.7898133333333335,4.05961,3.198495,3.392085,2.2856725,0.8791127272727273,4.32508,3.617095,6.09685,3.686795,2.413328,2.413328,1.255645,3.34381,5.002,4.24977,4.21619,2.9012700000000002,2.2622433333333336,4.267715,3.091975,4.164745,2.7818766666666668,2.052776666666667,3.8753053333333334,3.0625533333333332,2.616373333333333,1.8882199999999998,3.499525,2.61985,1.6226666666666667,3.799985,3.06031,4.31936,3.7725000000000004,5.1798,4.21668,6.29250825,3.95422,2.1032800000000003,4.379015,2.64619,6.99912,2.4556533333333332,1.2018733333333333,4.62943,3.7264,4.940505,0.44958714285714285,0.8368916666666667,3.537755,3.568575,2.0120407575757575,4.42933,2.83412,2.795415,8.958894,1.967734,1.281898,3.459675,2.61201,3.42883,4.894475,6.3700849999999996,3.14635,2.12737,2.93056,1.8728333333333333,3.2877666666666667,8.494218727422004,0.826469761904762,0.9805125,4.3496,0.4416966666666667,1.6334525,2.06092,3.0214,3.097425,3.0577,4.597375,2.24342,13.17684,5.0171399999999995,2.5613,2.5613,4.184785,0.8637516666666666,4.79886,3.93993,4.137615,5.5515,3.59347,5.53105,1.3700866666666667,2.698545,2.716585,2.555885,2.96588,2.608515,2.992595,3.515335,3.51427,3.015885,2.90125,3.128625,3.979665,4.33197,2.9490233333333333,3.30313,4.721615833333334,4.277875,18.16324642857143,11.408655833333334,3.242165714285714,0.7019408333333333,1.4603714285714287,4.391425,3.504195,3.067458301282051,2.02132,0.8585422222222223,0.6525975,0.6353814285714285,2.0180175,1.587624,5.213351666666667,3.1833033333333334,0.7092727272727273,3.38744,2.41168,1.6147,1.743926,6.783060000000001,1.55941,4.39422,2.84529,2.9717966666666666,2.17625,2.5577666666666667,2.5615666666666668,0.7739981818181818,2.81253,3.069706666666667,3.919623333333333,3.0412966666666663,4.639186666666666,3.721585,3.4001,2.44376,3.538925,5.52705,2.1140125,2.43758,2.494755,1.57899,2.4203675,2.0980375,2.706025,0.91625,1.3963425,1.01871375,3.073835,4.288715,6.067,5.3951,3.020495,2.428225,2.6982,3.310726666666667,7.205473333333334,1.1078033333333333,0.357695625,2.888515,2.129793333333333,1.4909000000000001,3.417015,1.255578,1.7214946666666666,3.7526866666666665,2.738638,1.2555583333333333,1.8604633333333334,3.913783333333333,3.672715,4.28196,3.62281,1.793205,4.792415,3.80855,0.7636576923076923,4.5868,3.97486,4.43509625,3.2042366666666666,2.220645,1.2352919999999998,1.1823225,3.588745,2.6544,3.29826,3.88514,2.568695,2.6527766666666666,3.16872,3.60605,4.18594,2.41241,2.748265,4.268805,5.5556,0.53201625,4.388265,1.7835625,3.37563,4.114033333333333,1.9369575,3.039795,2.06518,1.977325,2.450795,2.240708333333333,1.7667133333333334,3.82294,3.68015,1.2775314285714285,7.00647,1.03349,3.469875,1.65424,4.49929,3.95025,3.1546000000000003,2.948925,3.98171,8.25323,2.89822,3.566035,3.543915,3.615275,1.6841725,7.86857,3.566,3.80165,1.424735,4.179665,2.951105,1.00156375,1.994162,3.97047,2.148485,4.00873,5.01265,4.017962499999999,4.43366,2.076955,5.0688,3.90883,3.4560666666666666,2.42557,1.46522,4.184905,5.85355,3.83929,4.49687,3.309855,2.18832,3.79342,3.40579,1.2321904395604397,4.154495,4.64412,3.800995,2.889325,3.55374,0.5400242857142857,0.5400242857142857,4.320885,3.75455,3.939715,2.277255,3.802165,6.3052,0.8390470000000001,3.931985,4.65189,4.669735,4.80805,4.758015,1.845965,3.11706,2.1672075,4.452935,0.67435,4.048285,4.14303,2.805625,2.88354,4.263675,2.3508,3.363765,59.97023988095238,3.26752,2.5759633333333336,1.6729625,3.18176,3.922795,0.7831875,0.9588675,2.01727,2.01727,1.301636,3.21484,2.26465,3.699496,6.95821,2.8072666666666666,1.2209314285714286,1.292885,2.6650633333333333,4.032098333333334,0.7846529999999999,1.967745,1.248862,1.968705,4.281865,4.160105,3.22733,20.417313261904763,3.07131,4.0181,3.277435,2.2620333333333336,2.873635,3.248345,2.5232,5.61664,1.452216,4.054785,3.371843765873016,5.881351111111111,1.934185,2.576065,1.93774,4.3645,2.4108133333333335,2.19217,2.10981,3.559123888888889,3.3477,3.35045,3.798965,4.333915,2.5014,2.60408,3.08129,2.77051,2.934058888888889,2.24062,2.1023525,3.581725,1.1956166666666668,3.774075,4.574525,2.59263,4.73689,4.816235,5.4022,2.013736666666667,2.470135,2.75447,2.85585,3.95073,3.62267,4.62683,0.8029557142857142,3.961787333333333,3.005595,3.834895,2.3024325,1.76935,3.8112733333333333,1.1112,2.934485,4.117675,1.107842,3.63768,3.474255,4.467325,6.173045,2.11597,2.775675,2.6086766666666668,3.6905666666666668,2.9829633333333336,2.740856,3.11523,2.5746066666666665,2.431156666666667,1.3495833333333334,2.0589225,2.0589225,2.0139533333333333,2.0321533333333335,1.7785733333333333,2.6165333333333334,3.835915,5.69025,4.69526,1.568875,4.203835,4.18545,3.46626,4.14323,1.897495,1.88812,4.6542225,1.7446,4.190026666666666,3.75724,3.566635,2.3908533333333333,3.6446168749999996,3.272215,3.090545,3.445725,0.14634897959183674,2.3774533333333334,7.598965,1.4975580000000002,3.503055,3.390065,1.0245157142857144,1.178345,1.8637325,3.852915,2.808365,6.86311,3.48034,3.71654,2.983105,2.67767,3.397255,3.367375,4.003825,3.39909,2.798023333333333,5.43805,4.03675,4.132245,2.396873333333333,2.0215325,3.58218,4.418065,2.768365,2.95616,2.094315,2.529095,4.48183,3.75768,2.695885,4.63268,5.16955,2.794675,3.81268,3.938315,3.57035,4.33195,3.32909,3.365435,5.72572,4.71542,5.038,4.8541,4.487475,5.1670075,4.359575,4.029255,1.304922,6.5046,2.491255,4.201305,4.112205,3.901825,3.1644799999999997,2.0190333333333332,2.23581,2.5202966666666664,1.00016,3.342033333333333,4.002633333333333,3.223046666666667,2.0182266666666666,3.657255,4.1078,2.649573333333333,0.5616108333333333,4.47887,4.66223,4.981855,4.698065,3.81985,4.492535,4.82371,4.9417,1.3704666666666665,0.9494307692307692,2.8595733333333335,5.3364,5.8817,0.500945,2.92493,2.48534,3.414,4.44525,4.052966666666666,2.0605675,5.38285,3.490735,4.427775,3.16569,6.40245,5.0187,6.887152499999999,0.5319925,4.183515,0.8112999999999999,2.290875,4.128566666666667,3.0469033333333333,1.2583633333333333,2.3317,4.197215,3.527445,4.291895,2.123886666666667,2.055545,2.95367,4.4136,4.11622,3.64006,1.65018,1.2089564285714287,6.10375,2.202125,7.536490000000001,4.159735,3.54039,2.1795675,1.5945,3.998995,4.520705,1.8018833333333333,2.36007,2.519925,2.3774533333333334,6.481609166666667,2.9868233333333336,2.7711733333333335,4.179431666666667,3.97998,1.9235366666666665,3.1618,6.9182525,4.56486,5.26335,0.4903436363636363,3.35883,3.87979,4.789987857142857,3.823955,4.36135,2.986875,2.84572,3.38666,2.792225,3.5285645,1.970678,5.576838,4.831535,4.6553,4.012,3.317565,3.3028025000000003,2.2878375,1.319975,0.9180275,2.80388,2.49851,1.08977,2.60088,5.09195,4.71605,3.87186,3.97369,16.891889642857144,3.87195,4.53569,3.9245,0.6909025,4.98704,4.33938,4.18649,4.743645,5.2783,2.562985,3.65085,3.328835,1.50672,3.179575,4.54469,3.2961833333333335,1.492236,3.63022,4.901135,3.900245,4.719165,4.76548,5.19585,3.96683,2.653846666666667,4.1052,3.927365,2.63082,3.0129699999999997,3.069483333333333,1.5245383333333333,4.68294,2.6294192857142855,2.1198533333333334,3.90758,2.101025,4.245825,4.00901,2.3174,2.74525,4.604945,3.685595,4.350525,4.447635,4.892575,4.718737,3.31566,5.35245,2.7391550000000002,3.443125,4.54547,1.594006,4.146965,1.0755016666666666,4.395905,2.97569,0.9544371428571429,3.82325,2.06621,6.430815000000001,2.324254142857143,2.324254142857143,2.324254142857143,0.6762416666666667,1.2057883333333332,1.75258,3.49838,5.51286,3.410172222222222,1.995335,2.04276,1.6610033333333334,3.9517,2.429225,0.4140692307692308,1.73075,2.1614775,2.839415,1.79795,2.25397,2.471725,2.038725,3.912305,3.07002,3.63592,3.06644,1.927545,6.34139,1.918605,4.27701,3.828185,5.999090000000001,1.5807466666666665,3.681225,3.85724,3.725205,4.17065,2.85536,1.931255,3.83613,5.642015000000001,2.010475,3.50057,3.14469,1.88081,4.64139,4.18575,2.45024,2.29643,3.6246975,5.413645,6.0816,2.948295,2.33709,2.654845,2.91555,2.60605,4.299575,1.2837875,2.83387,4.669685,0.7741825,3.284995,3.88583,3.70972,3.264535,2.291685,3.10538,2.007805,4.529615,7.961318333333334,4.21455,3.384035,3.17884,0.9885975,4.30087,2.256715,4.307435,5.534685,3.98635,4.16424,11.29248,4.66673,4.083625,1.46812,0.7034158333333332,2.529175,3.904915,3.59313,3.62684,2.1468633333333336,2.292473333333333,2.08224,1.1716733333333333,1.1716733333333333,1.9927833333333334,2.349676666666667,1.81131,2.2955366666666666,2.6451266666666666,2.29964,2.5268133333333336,2.71484,1.4441533333333334,2.4824066666666664,2.1231033333333333,2.00295,1.5209175,2.50689,0.5888950000000001,9.411409583333333,0.5888950000000001,3.0635766666666666,2.0331833333333336,1.7906433333333334,4.271905,4.31301,3.84429,4.39028,2.17914,2.891086666666667,3.3265686666666667,1.97076,2.9361633333333335,2.657363333333333,2.48904,2.41146,1.6453166666666668,5.52535,6.285223523809524,3.13973,3.3981,3.270016666666667,2.5555933333333334,2.4140266666666665,1.0535428571428571,3.5339333333333336,3.5642,3.940965,6.06565,4.198565,2.8512233333333334,3.5332333333333334,3.0392166666666665,4.184435555555556,4.3674,2.5404666666666667,3.26954,3.2075033333333334,3.085836666666667,4.74294,3.3392,3.35817,5.80979,1.8932399999999998,2.7344266666666663,1.4003166666666667,1.49038,4.6615,3.3838783333333335,2.27053,2.14567,2.10417,4.353115,3.74826,2.718395,3.4016,3.05462,3.3972333333333338,3.3412333333333333,3.4583666666666666,3.0612433333333335,0.58012,3.5925,2.426633333333333,2.66037,3.38533,4.29648,4.0916,4.96539,2.73336,3.811015,1.04671,2.8866433333333332,2.8866433333333332,4.029855,2.85303,3.68647,4.33617,1.822345,3.4559,3.722245,1.3011914285714286,3.6170150000000003,3.1383274285714284,2.247956,0.368706,4.797615,2.815125,6.343109999999999,2.803505,6.40705,3.250595,3.791175,3.832325,1.6479616666666668,2.90291,3.84986,3.3792,3.5374666666666665,2.9269700000000003,5.4350125,2.1037075,0.93767375,1.8855433333333333,1.6818333333333333,5.00743,2.3051766666666667,2.37141,1.8010425,4.201435,3.87127,4.089905,0.5163610000000001,3.91375,3.794745,2.3927166666666664,2.3760133333333333,2.3740733333333335,3.1183125,3.87484,1.5788333333333335,0.6429736842105264,0.803,3.4002666666666665,3.704055,5.765333333333333,4.68834,3.977265,5.4391,1.3446771428571427,4.114033333333333,2.2313733333333334,0.95425625,5.2621,5.9333,2.315395,4.783845,3.92302,6.345865,3.9055,6.1559116666666664,3.710585,2.358326111111111,5.7656,10.169361384615385,2.479416666666667,0.6734060000000001,3.117765,4.108145,2.260845,6.20865,3.725785,3.55236,2.6822933333333334,2.6822933333333334,5.8036,3.24518,3.902465,4.812175,3.631043857142857,2.2673877142857144,1.06136375,4.480375,2.68697,5.185740000000001,3.433545,3.8568,2.575145,1.97762,4.37832,4.98321,3.5402,3.9341,4.27311,27.00103107142857,1.884095,2.57795,2.3739525,1.6495416666666667,2.5685933333333333,0.9797185714285714,2.6823566666666667,2.98743,3.474833333333333,2.77965,0.5882523076923077,3.09665,3.180735,2.661515,3.256693333333333,3.476275,5.25253,4.66897,3.62706,3.549305,3.7504199999999996,3.8084,3.466366666666667,1.72493,1.0006166666666667,1.4098733333333333,2.2330200000000002,1.5216033333333332,2.782363333333333,2.475773333333333,2.38803,1.8185799999999999,2.708545,2.002265,1.8134033333333335,3.28187,4.315505,3.58863,3.929175,1.3675700000000002,3.2130666666666667,2.4704099999999998,3.6945,2.25968,2.63132,2.3261,1.44337,4.07961,6.656655,2.85818,3.79067,3.98305,2.630375,3.2690508333333335,3.4317666666666664,3.22,4.519125,0.32272626769626767,0.32272626769626767,4.830405,5.33845,3.19931,2.89889,5.3199,4.250945,0.6498169230769231,4.969205,4.106765,3.59014,6.2808,4.51259,7.31111,13.821760833333332,12.561564230769228,4.41597,4.32346,2.4112899999999997,0.5938892307692307,2.58568,4.19752,1.3669799999999999,4.624495,3.488766666666667,2.8550799999999996,2.0797866666666667,2.0480666666666667,4.86835,5.0159,9.136957500000001,5.3573,3.99265,7.575196666666667,3.35768,3.567466666666667,1.56709,5.468719999999999,1.91452,2.3583633333333336,2.67013,0.2287278125,3.034775,3.42869,4.472915,0.8412919999999999,1.1519166666666667,3.95572,0.560398,0.560398,2.8419837500000003,3.455966666666667,3.1460899999999996,3.865445,4.19948,5.53005,3.90491,4.182755,2.883775,3.237413333333333,2.4718166666666668,0.9170250000000001,2.68824,2.834575,2.93236,6.95279,2.73432,9.71035,3.17615,4.88755,2.88919,2.235265,2.412915,2.7307,1.8028675,2.2877575,1.9541825,3.3504,2.3100825,4.0446675,2.619635,4.024870833333333,4.024870833333333,2.8725233333333335,2.8725233333333335,8.578169833333334,2.3977233333333334,0.825553,2.53964,2.44427,2.5164866666666668,4.0446675,1.907754,1.9316140000000002,1.566484,3.92201,3.947375,1.618795,4.51802,4.15377,5.586702222222223,6.343821666666667,2.1724566666666667,4.35382,5.51171,3.545375,2.879245,1.85461,3.140905,3.282823333333334,4.056945,5.087983333333334,7.3027413333333335,3.389095,3.28453,1.1580966666666666,4.29448,3.7842006666666665,3.569945,3.720083333333333,4.285535,2.317315,2.4193266666666666,6.15935,2.981585,1.3563779999999999,5.43264,3.698665,2.557376666666667,5.10215,2.557376666666667,2.57199,3.40706,4.942175,1.0274571428571428,4.002143333333333,4.57234,3.585165,1.2589816666666667,1.706645,3.19075,3.81841,2.54247,6.5719433333333335,3.926045,3.61612,4.10505,4.3842550000000005,1.370945,3.75804,2.582465,3.557305,3.9109,3.49858,4.75262,3.22918,3.860185,4.414555,1.9103676666666667,1.8198975,3.08494,3.7144,3.2975,2.7766866666666665,3.5404999999999998,3.0990633333333335,5.6122,3.41401,3.487585,2.86258,1.7849933333333334,3.4088666666666665,2.0786233333333333,2.99382,3.27009,2.910255,0.67435,2.0300525,1.7362533333333332,3.477445,1.755574,3.513623,4.520905,1.1630800000000001,3.0591475,4.366845,0.845162,1.3091233333333332,3.228455,3.85978,3.32347,1.928415,1.7431566666666667,3.5895,2.4212491666666667,1.6507666666666667,2.851355,1.79892,1.227258,1.346235,6.74422,3.137615,2.20121,2.32275,2.341175,3.7725,0.83324,0.35216357142857146,0.7869900000000001,4.742015,1.7738938571428569,4.843135,2.05288,1.718965,2.9865627142857143,1.267597714285714,1.079633,0.746838,0.5994357142857142,2.472713333333333,6.3176,2.97712,4.55292,0.3574178571428571,3.583785,17.469310095238097,3.25426,6.7808607762237765,1.07440625,1.07440625,1.07440625,1.07440625,5.772453333333333,4.23137,4.54438,2.1969233333333333,2.959605,4.247905,5.4577,3.788555,3.46084,4.047245,3.62174,3.62896,3.6512886666666664,3.994845,5.06245,3.69559,4.492735,3.498765,4.28301,2.6186766666666665,3.6025,3.29388,3.77556,3.649815,4.33008,3.0789733333333333,2.43979,2.529526666666667,4.01972,1.3075214285714285,3.792215,2.26593,3.2113259999999997,4.017962499999999,4.38682,3.045345,2.76651,4.48284,3.098025,3.26822,5.3965,4.611785,3.396235,3.408555,1.6855660000000001,1.6855660000000001,1.7792975,4.665345,3.72784,5.581127,5.1511,3.6047316666666664,6.5182,4.912035,2.1461225,9.36754,5.2837,6.2265975000000005,4.43393,2.81142,2.998765,0.2600803448275862,0.81569375,3.9750440000000005,3.26197,4.705355,2.9394033333333334,6.045351666666667,4.97752,0.5735057142857143,2.81777,0.474563,1.6631192857142858,3.151655,2.271755,3.91573,3.64649,3.27594,3.55061,3.36987,3.66516,3.364875,3.559215,3.06249,2.2205,1.6631192857142858,2.936595,2.077625,3.72361,2.34706,3.971105,3.60324,1.6841725,4.479255,2.731195,1.3009133333333334,4.37419,4.667115,4.30684,2.637286666666667,2.9995700000000003,4.16862,1.9186533333333333,1.36944,2.464393333333333,2.4428966666666665,2.57821,2.0770866666666667,4.680735,3.432605,4.8796175,3.6731742857142855,4.812775,3.851575,1.6224319999999999,5.2471,4.27087,5.2847,4.127555,6.706485,2.0982625,4.625675,3.138205,3.16069,1.7475275,1.7172633333333334,3.86165,4.306595,2.4058633333333335,2.6423929166666666,3.6378125,3.6378125,2.589836666666667,3.060363333333333,3.354725,3.92412,3.62481,0.6941453846153846,3.22613,4.317295,5.1577866666666665,2.78954,2.893265,1.8045575,2.814305,3.56157,2.30235,4.42182,2.75887,5.11455,1.9650433333333333,1.0253272727272729,6.23021,3.74964,3.1973566666666664,2.9511066666666665,1.7610540000000001,30.284666059523808,3.792445,3.38802,5.90025,4.495135,0.839375,6.564405,1.818455,5.63985,1.3896666666666666,4.16243,5.007265,3.70182,3.37007,2.0408575,3.2116733333333336,4.888065,2.0197775,2.7256066666666663,3.547305,2.409065,2.65271,6.05845,2.36475,6.41525,1.07651375,4.233085,3.60694,3.979555,5.10095,2.959675,2.3437933333333336,4.107675,4.488405,3.7900574999999996,3.7900574999999996,5.99155,2.3159925,4.411295,6.4691,3.37327,4.04121,3.246135,5.11015,3.599385,4.180945,1.33074,2.351695,4.37545,4.32301,5.95035,4.328305,2.463725,9.274553333333333,3.00932,3.606725,1.7617285714285715,3.53808,2.1473566666666666,2.62541,1.9813483333333335,1.1969666666666667,2.57875,0.9214814285714287,1.0976457142857143,1.0976457142857143,1.0976457142857143,1.8001666666666667,0.551185,3.965095,1.12567,2.2353066666666668,0.8382566666666666,1.7195600000000002,2.7356466666666663,1.8713966666666666,0.70534625,1.58997,1.4101800000000002,2.44843,1.6476359999999999,1.6476359999999999,1.63634,1.7850066666666666,0.92616,1.6890366666666665,1.5720966666666667,1.29461,2.268915,2.134275,5.8885,1.6091375,5.69635,17.064690916666667,6.66118,3.285145,3.611485,3.4821333333333335,2.7808333333333333,2.6397833333333334,3.108703333333333,0.7223041666666666,0.987408,0.987408,0.64915625,2.4240766666666667,3.491905,3.288755,1.533968,4.764365,4.081435,2.496305,3.64298,5.28065,3.958225,4.05051,3.4888333333333335,3.33321,3.640435,5.6888,3.0358433333333337,4.886875,0.517352,0.517352,2.149895,2.73193,4.64797,3.536045,3.675215,4.813055,7.690036,7.52855,3.58703,2.28951,4.139625,3.23965,2.488523333333333,2.186135,3.66393,1.3053966666666665,3.86685,2.20164,1.51824,3.5565333333333338,3.68817,2.03125,5.087983333333334,1.585485,3.3876000000000004,2.91359,1.0829142857142857,3.5661666666666663,2.7973733333333333,4.132665,1.095225,1.69903,2.1777325,2.146815,1.65509,2.3750425,1.8832275,1.973205,4.220605,4.394435,2.481335,1.800505,1.4162133333333333,3.5288,1.96115,2.5281,4.690565,7.2226,3.0050841666666663,2.90049,3.56738,3.5094,2.404785,4.773955,3.953085,3.12877,1.330275,4.783835,2.25976,3.3913666666666664,2.51393,3.54525,4.806265,5.74915,2.1661333333333332,2.607413333333333,2.746863333333333,3.3539999999999996,2.0315166666666666,1.54433,5.4454,3.4149999999999996,2.241553090909091,3.2019066666666665,2.93267,2.52643,3.246446666666667,3.001023333333333,3.4514666666666667,5.2315,4.475,2.8749300000000004,4.81929,3.161555,2.320315,3.532085,4.00972,4.209095,6.0278175,1.81449,3.8305,2.38372,3.49181,3.74599,0.5784175,2.220105,2.350035,3.273205,2.75099,2.18237,2.81278,0.577733,2.62801,4.310445,2.4034675,4.15356,2.45504,4.018035,1.9703225,4.418705,4.515135,2.10244,2.816535,7.051270000000001,3.804835,4.40509,4.96278,7.044624204545455,4.19358,4.25202,2.0909625,4.292835,2.849135,1.9156033333333333,1.9418075,2.1133566666666668,0.9763828571428571,2.6158,2.3370166666666665,2.6564633333333334,3.267136666666667,1.764022,3.17655,1.9237533333333332,4.190775,5.2362,1.019925,1.9183966666666665,2.48356,2.898766666666667,1.9734833333333333,1.0982183333333333,5.453903333333334,2.0622475,2.61116,2.7714499999999997,2.4072833333333334,2.648823333333333,3.170495,2.2683733333333334,2.68603,2.1010133333333334,3.94891,3.53745,3.8579,3.0151966666666667,2.96077,0.727811,1.7586166666666667,2.16377,2.0101400000000003,2.55955,1.158155,2.7362300000000004,2.936616666666667,3.559445,2.03797,3.541685,3.073915,4.8119,3.26559,0.6286508333333333,2.14378,2.8033099999999997,3.22964,0.7247790909090909,2.697843333333333,3.4061719999999998,3.119783333333333,2.80443,3.2455691666666664,3.708905,3.8133,3.1059,2.0550275,5.52925,4.977235,5.0414,5.53625,5.6309,1.8362299999999998,2.94785,3.6722333333333332,3.2514466666666664,2.8386533333333333,2.618986666666667,3.8714999999999997,3.4794,2.86487,13.539235,4.321105,1.09585,2.650186666666667,1.500148,3.3308466666666665,3.1845866666666667,2.1662333333333335,5.3812375,6.560226166666666,2.2182733333333333,0.8504479999999999,4.13157,3.4059000000000004,3.150095,4.48863,5.3707,5.64045,4.42749,3.52124,1.8693,6.406252500000001,1.1580966666666666,6.0726675,4.62281,2.2456733333333334,4.183775,7.100994999999999,5.79445,2.2210466666666666,1.3916199999999999,2.18006,7.113045,1.5559125,2.8970966666666667,2.5146550000000003,4.044758888888889,5.7967,4.38122,6.4353,3.52185,4.972625,3.64965,8.27269,4.75284,5.72945,2.59281,2.635525,11.138136666666666,3.472315,2.575225,2.46929,1.73996,1.96424,3.4255,0.69847,1.07668,1.0878742857142858,3.085155,6.88218,3.00441,1.41019,4.64552,3.975605,0.566324,4.831315,4.43072,5.3069,3.52572,3.256365,2.69444,4.2529,10.447605,1.8383475,3.854335,3.580965,4.53678,3.84898,0.81076,3.531166666666667,4.1072,1.84734,2.5175,2.3030866666666667,2.4951133333333333,2.013333333333333,2.198803333333333,2.17185,5.8374435714285715,5.34745,3.62906,5.132916666666667,1.6990966666666667,2.29297,4.61512,4.288695,4.551995,4.05268,4.47115,4.676295,1.6855660000000001,3.707085,7.439066666666667,1.265375,1.6371200000000001,2.464846666666667,2.3635433333333333,2.886976666666667,4.767992333333333,0.803,2.44564,3.45545,6.47685,4.71709,2.155273333333333,2.8512766666666667,1.9944825,0.538903125,2.2311575,3.06652,7.67693,4.362995,4.435825,0.9083690000000001,4.7540000000000004,9.110135083333333,10.452521666666666,3.237005,1.19596125,3.6151,3.51133,2.6278966666666665,5.260548666666667,4.54783,4.29149,2.0350375,3.7553,2.179603333333333,2.5630666666666664,0.7547027272727272,0.3533386666666667,2.43956,3.61558,2.030276333333333,3.339335,3.138006666666667,4.316905,5.55315,1.523194,3.0422333333333333,2.0193275,2.0193275,2.15561,3.69052,6.90075,2.6175366666666666,2.363846666666667,3.268333333333333,3.3983000000000003,4.139505,4.19731,4.182745,4.08645,4.1461,4.119895,7.20685,8.1525575,1.9864075,2.416,3.00962,0.9189466666666667,0.6733525,4.48674,2.284245,5.12855,2.9052966666666666,3.0031833333333338,1.698336,1.42665,4.100055,4.366835,4.298755,2.1495166666666665,1.2892633333333332,2.7182166666666667,1.9663866666666667,2.5068566666666667,1.1474842857142857,1.1474842857142857,2.7570566666666667,5.10005,2.95869,3.305915,3.59667,2.079715,19.942471954545454,3.9063,5.46105,4.046345,4.439685,3.92369,3.705375,5.61875,6.1413150000000005,0.7458066666666667,0.7458066666666667,0.7458066666666667,2.7087733333333333,1.7447,3.3585333333333334,3.940005,4.079975,3.138195,3.94324,4.543575,0.8032133333333333,1.9530200000000002,2.1606533333333333,5.920156666666667,3.32163,3.962386666666667,4.995535,1.9369575,2.0334033333333332,2.3734466666666667,0.5000725,0.808832,1.659095,2.07118,2.89329,13.266011666666667,2.5221766666666667,5.43875,0.7518214285714285,9.07314,5.60895,3.718745,4.08842,2.68235,5.2762,2.68235,2.8339980000000002,3.30386,3.837755,3.486475,4.116085,4.190085,3.43302,5.76875,6.651590000000001,1.7537533333333333,2.23423,2.691405,26.12499391055341,1.5924939999999999,6.3326,3.8267239999999996,3.891675,4.632795,4.03996,2.813715,2.71637,2.14286,6.78875,7.2069,4.48636,4.88883,4.096845,1.858255,1.85496,4.216645,0.4368484615384615,0.4368484615384615,0.4368484615384615,0.4368484615384615,4.087365,3.1835916666666666,0.86709,1.8169966666666666,1.1569666666666665,4.343665,2.4302733333333335,2.3242875,6.932586666666666,3.12076,0.1676706896551724,20.256258333333335,4.633616666666667,1.7747160000000002,1.2957925714285714,2.14946,1.9504259999999998,2.217555,4.519715,3.27189,3.470245,4.423735,2.1489166666666666,7.5062325,2.81616,1.90787,4.524495,5.86655,8.638676666666667,4.109435,0.3024390243902439,3.611845,3.982815,2.749216666666667,1.9460125,2.898823333333333,1.6271133333333332,1.6271133333333332,4.1151,5.659912500000001,11.154430833333334,9.1208,0.5810833333333334,2.4210599999999998,3.74828,3.15201,4.835585,3.649815,1.23682,1.23682,3.39476,3.95641,2.8872466666666665,3.58313,4.22839,5.2879,6.96375,2.28268,4.63725,4.18179,2.580435,2.9957666666666665,2.88936,4.88089,4.14276,5.62895,4.1828,4.39517,3.769495,4.29742,4.22152,5.3865,2.54198,3.14752,1.091796,4.282305,4.08604,3.71056,1.6089759999999997,1.96556,3.7058666666666666,2.8231033333333335,2.145383333333333,4.15817,1.7633166666666666,1.8452125,2.52846,2.20012,2.4263266666666667,1.6783433333333333,3.8627333333333334,3.01549,4.2576,3.2674825,2.1017766666666664,2.6081666666666665,1.94825,3.370635,2.3630833333333334,37.30991933333333,2.1309880000000003,2.1309880000000003,2.4516133333333334,2.4132333333333333,2.1003633333333336,1.5601566666666666,2.8276166666666662,1.65256,0.8170692307692308,5.05825,6.6158575,4.26099,3.920655,5.3047,1.8256500000000002,4.12571,1.789768,5.10495,4.85021,5.56915,4.040365,1.72493,3.843065,3.93132,4.355435,4.57498,5.19715,3.907845,3.4629666666666665,2.61891,1.96757,1.81826,4.334955,2.42836,3.759445,3.759445,2.1425733333333334,1.48205,2.10583,2.4295033333333333,2.0932366666666664,5.34598,2.6872933333333333,1.1725066666666668,1.1725066666666668,2.0215466666666666,1.8584633333333331,2.6054066666666666,2.5891433333333334,2.492173333333333,2.3705700000000003,2.21254,2.124689,2.8858975714285715,1.5474235714285713,0.7612085714285713,61.79411460515873,2.50533,3.5352,2.401056,0.82524,4.080782666666667,1.565556,1.565556,3.201193333333333,2.9738933333333333,0.786215,3.25414,5.401526666666666,3.2370433333333337,2.4444,2.9480866666666667,2.0521266666666667,2.7870359999999996,0.29221375,3.11931,0.7545759999999999,2.497456666666667,1.109446,1.109446,3.423166666666667,1.97821,2.8069333333333333,1.7795020000000001,3.5629333333333335,1.7795020000000001,2.1386166666666666,2.5670466666666667,3.0551066666666666,1.418478,1.418478,3.0503,1.4129133333333332,3.21259,2.3349266666666666,4.35374,3.445215,11.88299875,7.05518,3.1495,2.40196,3.92141,5.28375,5.5796,2.722384166666667,3.66989,3.765195,2.2611166666666667,3.907585,3.163046666666667,2.8290166666666665,4.870935,2.22763,1.0434171428571428,3.6737737500000005,2.8040000000000003,2.855975,0.7862214285714285,2.481515,3.41193,4.094705,4.310455,6.6148,1.9407733333333335,1.8339919999999998,4.387115,4.565845,2.354335,2.5075691666666664,1.9473933333333333,2.0418933333333333,0.81477,5.0607,4.39709,3.437165,3.74658,3.0305,5.3348,5.07675,2.7025233333333336,1.7200633333333333,0.5095406666666666,14.389491166666666,0.5142490909090909,0.5142490909090909,0.5142490909090909,2.9326933333333334,3.8768,0.5142490909090909,6.95275,4.25171,0.7080460000000001,0.7080460000000001,3.3254966666666665,3.22134,2.92496,4.36886,4.917085,4.144942,2.4281225,4.973551333333333,3.27674,3.538674642857143,4.7487,2.91983225,2.3879775,2.3967425,2.731625,1.6575275,3.3647825000000005,2.9388366666666665,2.3196525,2.049905,1.9095325,1.7796166666666666,1.63507,2.647275,1.0563411111111112,2.423645,0.6105392857142856,5.17665,1.729475,0.6408291666666667,2.052235,7.73412,2.530445,1.9865525,3.3505975,7.18125,2.548825,4.187755,2.96205,6.06372,3.27904,3.92622,4.333875,4.085945,3.05965,4.238668333333334,1.1257242857142857,3.945785,2.4730333333333334,2.6078766666666664,2.572675,2.274965,2.0058599999999998,1.269825,5.60195,0.9351727272727272,4.927755,5.65385,5.1771,5.1246,3.8008,2.4286600000000003,1.937376,2.8874033333333333,2.8059066666666665,2.442215,3.7721666666666667,2.682275,5.0341,1.860172,39.92179373015873,4.50084,2.46972,2.31675,2.838366666666667,1.61428,6.272816666666667,3.543695,2.45524,3.2893266666666663,2.260283333333333,1.7078825,5.07555,0.7825285714285714,4.334495714285715,1.2308128571428572,3.4600666666666666,3.2789800000000002,2.7241633333333333,1.41725,4.373450666666667,1.635706,1.635706,2.38374,2.756474166666667,3.3419333333333334,3.3508333333333336,1.3620733333333332,2.85228,2.5571633333333335,6.228741666666667,2.72665,3.5479149999999997,0.98249,1.4511233333333333,2.9959233333333333,0.93606,5.23519,3.4184666666666668,2.82314,3.5441333333333334,2.769,2.6954100000000003,3.31456,1.6633666666666667,2.341175,2.3960733333333333,3.4812999999999996,2.508853333333333,3.7283333333333335,2.0105933333333335,0.6325780000000001,9.761080448717948,2.7063633333333335,5.23335,4.999565,2.7735,3.0853866666666665,1.232865,2.229763333333333,2.11856,1.232865,4.38604,0.452325,0.452325,1.24482,1.24482,0.79708,0.79708,2.248895,2.94393,2.19936,1.264715,1.731595,3.614875,2.830935,4.656405,5.36505,1.826144,4.34512,2.312615,4.54425094017094,1.4604625,1.4604625,2.56568,1.620396,3.8683066666666663,1.964315,4.24675,1.6664866666666667,2.6356,0.5501115384615385,1.092067142857143,2.090175,2.26939,1.8040025,1.30091,4.175425,4.170445,2.0332233333333334,2.3313366666666666,1.3325566666666666,0.6983833333333332,2.1862033333333333,3.262125,2.84042,4.432975,4.948335,4.8996,3.75861,6.668464999999999,1.4910483333333333,5.8959150000000005,1.81782,4.36554,4.603195,5.763929,3.3628,2.30551,1.75418,1.921992,1.921992,2.44862,2.44862,4.18932,5.87305,0.9349999999999999,3.86984,3.21202,3.46038,2.562133333333333,1.4114525,2.8404166666666666,4.22962,4.07425,1.731886,6.6567,4.86237,1.8278933333333331,1.3092125,3.93064,3.982223333333333,3.4892,3.55091,3.795415,0.648115,3.765233333333333,3.5401333333333334,2.73244,2.8459766666666666,2.1806933333333336,3.7662666666666667,1.5390142857142857,1.5390142857142857,1.5390142857142857,2.927303333333333,3.03661,3.4115333333333333,3.258904583333333,2.3224925,1.2274942857142859,3.2829599999999997,3.1555433333333336,1.40139,2.6852533333333333,2.6353833333333334,1.2087185714285713,2.6122,2.8041300000000002,2.9047466666666666,2.66147,2.4917666666666665,1.959605,3.2142366666666664,4.6551746666666665,4.052555,1.01479,1.439724,0.494668,3.5627666666666666,8.882315,2.936006666666667,3.469445,3.2178766666666667,4.224645000000001,1.843865,7.47656,6.602086666666667,2.5933466666666667,2.185770571428572,3.915905,4.673325,1.54642,1.206762,1.399586,2.02603,10.495103333333333,2.5817666666666668,3.1144766666666666,2.9296456666666666,3.795145,2.11923,1.0870375,4.62576,1.1406266666666667,3.1601338461538466,4.4298,3.1907,3.2025,3.08801,4.708595,1.1994416666666667,2.063815,1.8823050000000001,1.8823050000000001,3.801345,5.7753,8.984475,4.29394,3.27402,4.60085,1.800595,2.3674458333333335,4.519695,3.225365,3.7389,1.5726266666666666,2.8908,3.42324,3.7641,2.3383,4.085355,3.8162,3.74729,4.03692,4.0903,3.92997,5.3761,3.0960933333333336,2.4946733333333335,4.29681,2.88653,3.92879,1.872535,2.37244,2.73382,5.83985,2.572435,3.231558806818182,1.6797675,2.500205,3.115755,2.1318825,2.11089,0.8357266666666666,0.8357266666666666,1.72619,3.551156363636364,4.03022,2.869263333333333,4.50837,2.9445775000000003,2.4462462857142855,0.96083125,2.74495,1.36647,3.982255,4.018335,0.8815662500000001,1.83159,4.045025,2.9164375,1.5787475,1.6161033333333332,5.014364285714286,1.1463583333333334,2.710885,3.24395,2.68971,2.444045,2.922942,2.08956,1.013455,2.810035,2.938895,3.3564,1.43072,1.4821633333333333,1.77812,4.47658,2.083665,4.473915,4.496725,4.47446,6.0533,5.1049,4.07497,5.996585,3.9687204761904766,0.8083636363636363,2.884325,4.42029,3.605065,0.49450909090909095,0.919846,3.00141,4.1329,4.67525,4.208815,3.217945,2.74932,4.57968,1.6941,2.484385,4.481255,4.37781,3.16325,2.95953,3.716795,4.58324,2.94603,5.1327750000000005,0.89301,3.312225,2.6776,4.360195,4.44632,4.43422,2.2084,2.614075,3.11616,1.95028,4.871875,3.449235,1.3185042857142857,2.658705,3.807235,1.460288,5.689584999999999,1.7714200000000002,2.49905,13.60090699280252,2.7670333333333335,1.4812566666666667,1.6331833333333332,2.15504,5.492495,1.65018,3.9980523333333338,0.6787500000000001,3.2541733333333336,4.17362,7.549994999999999,2.7546866666666667,2.83901,2.83901,4.41813,4.216465,3.402875,3.25578,4.76741,4.88058,2.3021,3.16654,4.587965,1.1966533333333333,2.2441999999999998,4.390165,3.856995,2.797805,2.2765366666666664,3.940765,3.501435,6.134881666666667,6.238792500000001,0.684901,4.07053,3.39918,3.938466666666667,4.26109,3.92808,3.599105,1.36411,4.920285,2.35332,2.8195,4.23867,4.23879,4.33899,0.8492944285714286,2.6953266666666664,9.177671333333333,1.4845816666666665,2.049872337662338,2.2634425,3.82594,3.38901,3.228945,0.6398490909090909,2.30656,1.67047,2.1838975,4.23026,5.263699333333333,2.6914059999999997,8.990095,2.3710066666666667,2.67494,1.06248,4.42803,5.1526,2.19351,5.355188333333333,2.672305,3.304615,5.2593,4.34203,4.71275,2.227865,1.4602475,1.4602475,2.768045,3.331325,4.8835775,1.4665075,6.167695,1.57095,3.760725,1.2737033333333334,8.823480166666666,4.678175,2.69926,4.28498,3.74886,3.757105,1.1735933333333333,1.9571275,3.4684666666666666,3.000776666666667,3.423133333333333,3.6426,3.90921,2.924205,3.150675,3.324145,1.4612725,2.536706666666667,1.97269,2.8575533333333336,1.9567133333333333,5.135731666666667,3.1587,1.82426,2.7734400000000003,3.25563,3.255475,6.4668,5.9413,2.97353,3.55137,2.78821,3.10588,2.832475,1.1468266666666667,0.947614,6.33944,2.95469,6.0805,4.79022,6.5697,2.8898,2.72087,6.6813,2.619635,0.42529944444444445,5.61965,3.045835,3.825575,3.2166933333333336,1.3812385714285715,3.98152,1.0154239999999999,4.50692,0.8798925,1.3952900000000001,2.85248,2.3726033333333336,2.967137142857143,3.353175,4.70966,6.123680833333333,6.123680833333333,5.106412499999999,5.106412499999999,4.555045,3.00081,4.41752,0.97322875,6.1527,3.670495,3.6842333333333332,3.69495,3.797245,4.920335,1.905045,5.1255,3.039408,2.90919,4.27244,2.57675,4.6935,5.2242,3.53353,3.44177,5.2471,4.064695,6.13605,2.847445,2.30838,5.8664,4.000055,2.8026199999999997,5.906078333333333,1.5593133333333336,2.136315,4.852265,4.220645,4.938035,3.917005,2.0440635,2.0440635,12.637379444444445,11.656,4.965015,3.325015,2.9996630769230768,4.384965,4.611635,2.645516666666667,3.15108,2.98548,4.212533333333334,3.628633333333333,5.06885,1.973445,8.239686666666667,2.486645,1.9329975,5.94715,2.471745,5.0931,4.32455,4.68739,0.7432177777777778,3.16251,3.55245,0.9324960000000001,2.853105,4.142699166666667,1.480102,1.9571966666666667,2.865883333333333,2.671943333333333,2.2447500000000002,2.986776666666667,2.3546866666666664,0.4361807142857143,2.312203333333333,2.6618133333333334,2.7834533333333336,3.1993500000000004,1.4116199999999999,2.9857,6.92051,4.49549,2.4019833333333334,1.9307633333333334,2.4993333333333334,3.56824,2.553485,3.5281455,18.0312675,5.2409,3.4056800000000003,4.622585,3.84526,5.553461666666666,1.5912166666666667,5.7888,1.44285,4.97787,3.953155,5.3842,4.942385,0.9920521052631579,6.7535,2.32084,4.794155,2.68037,4.103725,3.356445,2.69687,2.0631133333333334,1.509266,1.87479,4.293845,4.59942,2.134295,1.80418,3.0786233333333333,3.875155,2.9543666666666666,6.1812,1.8789225,3.90083,4.55326,4.471805,4.072585,3.1436,3.98842,4.911915,3.799105,2.7860066666666667,2.7860066666666667,5.4591038888888885,1.7559933333333333,2.4798433333333336,3.78784,1.720394,7.035985,3.46993,4.4153,4.2671,4.115565,1.7329440000000003,4.0898,5.4784,3.911705,2.0863925,3.477115,3.428415,1.1764975,1.3709375,1.2092533333333333,0.6920066666666668,1.6425866666666666,0.909135,4.66939,0.9565655555555556,2.49025,1.7134833333333335,1.8009275,1.007755,1.9873225,2.2099875,1.5315475,2.8791166666666665,2.64634,4.816265,1.525155,2.68985,2.9612499999999997,2.9159433333333333,2.2279633333333333,4.496670833333333,4.43821,4.693523333333333,19.656335666666667,2.55376,2.1557025,0.6855438461538461,0.6366780000000001,4.169698333333334,2.01276,4.034845,4.93175,6.6067745,3.518015,3.46268,4.121675,3.163866666666667,3.2078733333333336,3.0456,3.9544333333333337,3.3076933333333334,6.66365,3.58744,0.9184150000000001,1.11056375,5.17355,3.0146766666666664,2.5038233333333335,2.0696866666666667,2.235106666666667,5.67375,4.757795,2.314165,1.0570166666666667,3.145145,4.863005,8.362763333333334,5.083997291666666,4.245015,3.88355,5.154,4.52005,4.17027,4.88117,3.83775,5.1272,2.11531,5.5473,1.6045571428571428,5.01135,0.729,4.864055,5.442,6.02965,6.054,4.71762,5.8685,5.64815,6.124232500000001,1.9890999999999999,1.5762,5.5271,3.69618,6.65624,5.11975,5.458164999999999,5.16605,6.4245,1.3409042857142857,4.39146,5.35095,4.2558,4.7985,5.1153,2.675425,3.84587,2.738515,4.4713,1.0101916666666666,1.5731,1.3435679999999999,4.690125,3.99342,3.37869,2.1199733333333333,2.8572966666666666,1.5331666666666666,2.12055,0.3946433333333333,3.5912,1.6629740000000002,2.3398683333333334,2.7965199999999997,2.33642,3.08083,2.668875,2.42863,10.102746666666667,3.952666666666667,1.7848375641025642,3.641835,0.9325,4.44880375,1.0871825,1.690205,1.92192,1.0778475,5.6972249999999995,1.1484391666666667,1.1484391666666667,1.1484391666666667,2.867383333333333,1.9154399999999998,5.09305,3.168175,1.3818475,1.50057,2.30213,1.3059875,1.97552,5.100051666666666,0.7834477777777777,4.154675,4.1743,2.9082033333333333,0.9792528571428571,2.0592414999999997,1.9294775,1.9294775,1.5058233333333335,3.624345833333333,4.575755,5.6893,5.7591,4.279715,5.2852,2.8241533333333333,1.8979,3.01506,5.045,3.177765,3.898365,1.01364375,3.9167618749999997,5.35265,1.873925,4.11252,3.0574166666666667,4.6733,4.783535,2.622885,7.1257,6.37135,3.909515,4.41537,4.313335,3.13985,7.79727,4.052155,5.379978333333334,3.589495,2.877966666666667,5.2926,2.6009366666666667,5.5632,4.39461,2.65677,3.102005,3.9382,1.3057233333333333,10.4107425,3.64191,2.98164,14.995689166666667,4.263825,1.6689333333333334,2.689643333333333,1.976485,2.44527,2.9912,2.498885277777778,3.088315,2.948415,3.1094,3.967705,5.7708200000000005,1.15367,1.93495,4.14043,4.38829,4.97179,2.3464475,0.5622573333333333,4.20545,4.17145,1.992025,1.3633816666666665,4.52847,4.40724,0.8745400000000001,3.679415,12.268140833333334,1.260915,0.38776499999999997,3.4382,4.62867,1.0690844444444445,3.80191,4.07862,6.546805,1.290455,3.197455,3.96638,3.38275,4.406495,4.492185,4.23244,8.3523,3.238,4.285405,5.8216,16.33587,3.555105,2.88575,1.2409475,2.0337975,1.3791,2.32006,1.29272,2.0223875,1.696675,2.0325275,2.44571,2.2932825,2.2020775,5.45,4.433175,5.79495,3.147205,5.5971,2.82107,4.93892,3.437466666666667,1.23912,3.79048,1.9693025,2.6289693333333335,4.664895,4.98191,4.89134,4.31438,3.5536999999999996,3.7988,2.5317633333333336,3.54792,3.70608,2.290425,1.873855,3.4216333333333337,4.13167,3.83478,2.3510666666666666,12.445546666666665,0.7437933333333333,2.679735,5.079,2.4615799999999997,1.085144,2.92897,7.22514,7.03158,4.39641,3.74054,4.12901,2.0548,2.08782,2.818370333333333,2.036093333333333,3.8037216666666662,5.3862,4.15235,0.447282,6.04895,3.3124333333333333,3.320593333333333,3.448933333333333,5.98605,8.807177750000001,4.3239365,0.99245125,2.17469,2.307095,3.70007,2.58108,4.11164,4.531045,3.541233333333333,2.6417266666666666,3.99671,4.15053,3.70434,4.314466666666667,1.8219733333333332,2.91755,4.990985,5.53865,3.2191466666666666,2.3740575,2.26351,29.61401817948718,1.4435375,1.4435375,2.23655,5.025253333333334,3.81864,4.29695,3.007685,2.926005,4.581265,3.163873333333333,4.272355,3.163873333333333,3.592785,1.8461866666666669,1.5671233333333332,6.01415,2.670125,4.749315,3.277265,2.63729,6.484975,1.96777,4.54829,5.42075,3.58627,3.3818,5.0406,1.9812819999999998,4.97712,3.3136925,7.366630000000001,5.556519166666666,2.8708,3.87807,5.26535,2.11341,2.46659,3.4296666666666664,0.421045,3.1611499999999997,10.121929999999999,3.79328,3.316915,4.858315,3.211545,3.186895,1.3372242857142855,3.95485,5.48655,3.33172,2.048635,4.157155,3.951865,4.19027,4.177345,2.932475,2.932475,4.17591,2.781315,2.556450909090909,1.970135,4.829725,4.05648,0.9274257142857143,3.618605,5.0014,2.76951,6.9447875,7.62204,1.478262,4.17167,4.84125,6.755429,0.659,7.653723333333334,3.56093,0.6237909090909091,5.29955,5.2439,4.607535,4.24672,4.588845,4.28452,5.05045,3.749365,3.77061,4.309075,5.61975,4.50834,4.508895,3.9947,2.548895,3.964965,3.65393,0.945139,4.721015,2.38833,1.79788,4.551085,4.30005,6.0178,1.0593085714285715,5.072331666666667,2.996225,2.7131966666666667,1.785705,1.2924433333333334,11.241895,2.21951,2.999306666666667,1.9057333333333333,3.7106409523809525,5.775406666666667,6.167496666666667,2.556216666666667,1.9286966666666665,2.1241,2.1241,2.1241,1.3028566666666668,3.59163,3.987515,3.40064,4.45728,8.188704999999999,3.86682,1.1103640000000001,2.36985,3.544595,2.1576,1.829004,3.920565,2.84235,1.3367833333333332,2.9313300000000004,4.70991,5.5712325,3.908485,4.016805,3.107196666666667,5.06545,4.42862,5.410810000000001,1.925945,1.925945,4.017765,3.69013,2.5435186666666665,2.5435186666666665,4.082125,1.1435371428571428,4.763,3.454555,4.32019,3.83822,3.64328,3.2651166666666662,1.019127142857143,4.123375,4.906705,4.28098,4.73005,4.71746,4.903985,4.551225,1.937385,1.4231125,3.53054,3.72185,3.35343,4.33554,2.083745,2.81384,5.42815,2.615475,4.895285,7.33205,2.2532058333333334,2.9520416666666667,4.241480952380952,5.128185833333333,1.5443875,1.9992785714285715,0.9864,1.9992785714285715,1.95734,1.95734,1.551742,5.05265,3.16081,3.48537,2.42825,3.94907,1.48576,5.4197,3.140725,1.752495,2.7761933333333335,3.55908,3.93775,6.5793349999999995,4.554625,1.29232,0.8418633333333333,3.61654,7.2576,2.36815,3.606145,3.58846,3.58846,2.33821,3.30021,3.10229,1.4261982467532468,3.085513333333333,3.3492,2.659945,4.257945,3.863315,1.58657,3.408535,4.332315,4.7113,5.0415,4.30018,1.66804,2.09729,1.31115,2.152285,3.496605,1.82643,4.56214,3.1785433333333333,3.67008,4.057465,5.21495,1.45071,0.939228,1.8700666666666665,1.457075,1.1594888888888888,5.0335,3.90661,1.091796,0.33902347826086954,0.33902347826086954,0.33902347826086954,3.481475,5.527303333333333,4.43262,5.04015,5.11515,5.64675,4.68786,4.46769,2.701815,3.754335,1.573225,4.623435,3.963145,3.86438,4.219915,4.2051,0.6228536363636364,0.6228536363636364,0.6228536363636364,0.6228536363636364,0.9501,0.9501,4.081885,3.783835,3.52305,2.680245,2.59813,5.68015,4.78065,5.71895,4.262295,2.9970133333333333,2.52924,9.82559,1.45791,1.45791,4.07042,5.3038,3.2902466666666665,0.452325,0.452325,0.452325,0.452325,0.452325,0.452325,4.68347,5.09115,3.29135,4.398165,2.7841416666666667,2.7841416666666667,2.637195,3.2111333333333327,2.35433,2.623905,3.355255,6.964271999999999,1.471922,4.490145,3.5136,3.81117,8.547506666666667,2.3100333333333336,2.55877,0.9567814285714286,2.000205,5.11685,2.96814,0.817755,2.8573533333333336,3.98844,5.37775,2.656675,4.598533611111112,0.8408144444444444,1.9924966666666668,4.740715,4.60393,2.7914585,2.4671166666666666,2.1354866666666665,1.376285,6.869064999999999,3.458933333333333,2.0671466666666665,3.0467,2.626926666666667,3.571775,3.72525,2.7134933333333335,3.1470033333333336,5.7156,1.4443416666666666,4.30982,5.14595,3.50786,3.988025,2.0351266666666668,3.011015,3.69554,4.050495,2.887495,4.78352,4.53113,2.7518266666666666,1.94004625,2.857886666666667,2.851983333333333,2.88737,0.8066881818181819,2.084845,8.096575,0.466369375,3.092843333333333,1.5570266666666666,2.44508,3.324953333333333,2.6783,1.2743666666666666,1.709346,2.73176,2.13162,3.662655,1.991592,2.7637199999999997,1.4589433333333333,3.067618,1.9127475,1.1451628571428571,2.76605,2.0563425,2.4553233333333333,2.6573466666666667,2.8966833333333333,3.2748333333333335,3.4888333333333335,3.1354066666666665,2.81556,3.3748666666666662,2.7212666666666667,2.699425,1.7133033333333334,2.2714233333333333,2.56175,1.6704433333333333,3.147536666666667,3.888139523809524,2.8608933333333333,2.37684,2.87747,3.5477000000000003,4.682174999999999,3.0338066666666665,1.9605599999999996,1.9605599999999996,2.4543225,1.1625725,2.4395775,3.298986666666667,4.558861666666667,2.715475,2.1183225,1.9582525,2.073185,3.762785,2.970625,3.7199,3.44961,1.78375,2.1642433333333333,4.189135,1.1764160000000001,1.1764160000000001,2.05651,0.605643076923077,2.3593315384615385,1.66131,1.66131,2.59667,2.3735399999999998,3.3870666666666662,2.6294,1.885505,5.65904,3.8398575,3.8398575,3.654615,3.138125,2.18641,3.05445,2.556615,2.85711,5.1813725,0.46808083333333333,0.685232,4.101985,2.318225,2.9646,6.7483683333333335,3.686,1.58362,5.163153333333334,4.535625,3.99757,4.22508,5.3397,4.75273,13.6891575,3.567585,1.6041133333333333,2.85453,3.86605,4.83432,2.868835,3.82547,4.13782,3.590965,4.567895,2.8784433333333332,2.605085,2.73657,2.5376866666666666,2.5376866666666666,3.85093,2.640045,2.92997,3.363535,2.428355,2.58762,2.12796,1.9314775,1.9402425,2.1665025,1.731685,3.353693,3.269555,2.767445,6.740914999999999,3.29979,2.31271,1.8791933333333333,3.5493,3.9942,3.59331,3.2320860416666664,3.318615,3.18296,4.239435,3.557245,3.874595,3.979255,3.4192869999999997,3.16239,0.63637,0.63637,0.63637,3.34826,2.290555,5.4697,2.38648,3.731065,6.750157962962962,2.684113333333333,0.3555073076923077,5.2688,0.778731,4.328980952380952,1.87999,3.777535,1.816975,3.989685,5.330743333333333,4.24028,4.09706,2.6960533333333334,2.8145233333333333,1.4811433333333335,2.7026233333333334,0.3790394736842105,0.5408505882352941,2.6219533333333334,1.4367599999999998,1.84692,3.779885,2.73791,4.80149,2.8706133333333335,3.0399883333333335,3.578715,6.10648,1.682935,0.9560457142857143,2.36053,3.7839639999999997,1.220722987012987,4.829635,3.874995,3.41093,2.6931966666666667,4.08664,2.5426866666666665,2.417656666666667,2.51384,2.358555,2.5745633333333333,2.2440925,3.1225633333333334,2.3665499999999997,5.325106666666667,2.3976775,1.9150433333333332,2.1557133333333334,4.914264666666667,3.3236480000000004,3.3236480000000004,2.5608233333333335,3.91308,2.2781775,3.1969,3.15297,0.5755326666666666,4.2177,1.82868,12.04660888888889,6.96437,2.911975,3.05699,3.46819,4.53537,2.88893,3.463185,0.29105533333333333,1.9529175,3.3915666666666664,0.8270925,3.927575,1.281857142857143,4.467625,3.306835,3.202765,3.45826,3.348245,2.190725,4.32862,3.85674,3.597915,6.73468,4.02543,2.7871566666666667,3.0062166666666665,1.60165,1.98848,4.08252,3.44053,3.6629899999999997,2.750075,3.74233,1.336672,3.02356,2.657345,3.70357,10.493746666666667,3.62353,5.779516666666667,3.683755,4.225445,0.9817766666666667,4.960154999999999,5.0444,2.4827033333333333,2.5779666666666667,2.7488200000000003,3.5554666666666663,2.4551166666666666,1.7983366666666667,1.9344333333333334,3.86323,1.593576,2.75487,5.089231999999999,2.72254,1.0513639285714287,1.0513639285714287,3.671015,2.8491280000000003,2.8491280000000003,2.9826566666666667,2.841583333333333,3.281830769230769,3.8176,3.4026,2.6789366666666665,2.2388266666666667,2.4126833333333333,3.162263333333333,2.2273875,2.48666,1.689856,5.879746,8.770346833333333,0.48795846153846156,0.48795846153846156,0.48795846153846156,0.5876098251748252,0.5876098251748252,0.48795846153846156,2.8191333333333333,3.0574266666666667,4.146443333333333,1.4095000000000002,1.760635,3.2872440000000003,2.4645366666666666,3.113633333333333,2.3770666666666664,2.78839,3.4248999999999996,6.517786666666666,3.038816666666667,2.518333333333333,2.63044,4.66592,2.3651766666666667,3.279973333333333,5.47989,2.3850166666666666,3.3425,1.4525249999999998,1.4525249999999998,2.8532333333333333,0.5145678947368421,2.3423066666666665,2.5922300000000003,2.82067,3.271053333333333,2.2518866666666666,1.3947266666666664,2.5621666666666667,2.661633333333333,2.3510133333333334,4.157745,2.3901786666666665,3.279305,2.26592,3.44275,0.514046,7.203428333333333,2.9526339999999998,2.9526339999999998,7.705579999999999,1.7229766666666666,1.7801466666666668,2.991046666666667,4.57492,2.45607,1.9162766666666666,2.6111,1.3907725,3.5725,1.7170699999999999,3.068322,1.356645,0.2623768181818182,0.2623768181818182,4.883795,3.962165,3.45789,2.870506666666667,2.69737,3.29421,1.2679766666666665,5.1714,3.853535,2.980125,1.782055,1.0835308333333333,2.19504,2.991046666666667,2.758525,2.059565,6.1060550000000005,3.750895,4.205025,4.116515,2.42737,0.67525,7.1851175000000005,2.096235,1.6366925,3.48149,4.597195,2.297295,1.6369533333333333,4.81207,4.0583,3.1481,3.0545033333333333,4.08358,4.03746,3.3943333333333334,2.604654,2.604654,3.76969,4.81142,5.23775,6.202603333333333,2.6375933333333332,3.912865,1.5167714285714287,2.608575,5.456947333333333,3.68331,1.8495139999999999,5.26925,3.3469300000000004,3.439045,2.122705,4.08191,4.544215,4.42241,4.48432,2.537436666666667,2.4771933333333336,3.5721000000000003,1.9605566666666665,2.423625,2.516506666666667,2.444643333333333,0.682024,2.356245,3.0040033333333334,1.8417523333333334,4.798775,4.625035,4.7289,3.771335,3.32716,4.6306175,12.001735,4.63914,3.8559,4.26514,4.0852,4.53785,2.3239300000000003,3.1646133333333335,3.5534666666666666,1.24755125,2.75303,2.945395,4.26431,5.4192,4.236545,3.5797000000000003,3.16324,2.205293333333333,4.334333333333333,4.1319824999999994,3.6530666666666662,4.1319824999999994,2.2293589999999996,2.2547966666666666,2.3667983333333336,2.1195075,2.577783333333333,1.9067733333333334,0.8252266666666667,1.313045,2.0669033333333333,1.97109,1.65012,1.38073,1.68475,2.6861033333333335,1.514736,3.10043,1.3928533333333333,1.61841,2.695685,3.9446999999999997,2.39925,2.126133333333333,2.429396666666667,3.293195,2.149765,2.7640333333333333,3.3828,2.45186,3.0523233333333333,3.12677,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,5.1606,2.89321,1.0394128571428571,3.1713966666666664,2.6311466666666665,2.8568700000000002,3.352205,3.460366666666667,4.524085,3.2652846666666666,1.508292,2.9411166666666664,1.81525,0.98359875,0.936295,1.6500199999999998,0.8382566666666666,0.8046000000000001,1.311142,3.301175,1.5034319999999999,1.5993533333333334,2.019972222222222,2.3001449999999997,1.5364783333333334,1.203535,1.5698583333333334,0.9028633333333334,1.2138733333333334,0.765755,0.92548,3.18866,3.489725,4.08337,4.51719,3.9327,2.982153333333333,4.78676,3.4314666666666667,2.0605675,3.570925,1.9539,3.413075,2.12087,0.853969090909091,4.26179,4.857325,2.077576666666667,1.2525775,3.03945,3.424435,3.624345833333333,2.96013,2.58701,0.86949875,2.384185,4.8702725000000004,3.656935,2.44967,1.486175,3.72019,1.8589975,0.5803,4.23739,4.274435,3.983925,2.56526,1.437284,3.470465,4.501195,2.557253333333333,2.620886666666667,2.4522566666666665,2.6674433333333334,2.7550633333333336,2.80785,3.0729366666666666,1.22019875,2.639475,2.5840833333333335,4.91944,4.344435,3.66586,4.579255,16.286201669191918,4.6173,4.479403333333333,2.792085,4.152945,4.93008,1.469374,2.0699175,2.31094,5.8244975,3.91767,3.22227,6.56415,2.31094,4.065645,2.132995,2.0498499999999997,2.87777,2.7474066666666666,1.4140216666666667,4.102145,3.702115,2.52347,4.254985,2.4759266666666666,3.4080999999999997,3.76263,3.577855,4.70531,3.900755,2.801025,3.587175,2.59661,2.59193,1.24621,1.24621,3.489933333333333,2.6298366666666664,0.38391785714285714,4.723205999999999,0.91234,2.622465,3.6382,0.56339,4.681615,7.971576666666667,1.8198975,3.594905,3.6516,2.75703,3.169825,2.40623,3.0115,3.51961,4.333955,3.12452,3.8353333333333333,0.9695833333333334,11.696940333333334,2.63039,2.863035,5.92865,2.61257,3.80768,7.398253333333334,4.12881,4.083495,3.542365,3.98107,5.3132675,1.4904475,2.6551033333333334,4.319305,3.747,1.9778559999999998,3.764545,3.56452,3.58588,3.965575,3.933615,3.930665,2.4978766666666665,4.16349,3.7436,5.1678,3.335765,2.20848,2.272953333333333,2.188,3.0250066666666666,1.3446033333333334,3.4647,0.86902,3.195066666666667,3.1850400000000003,2.5199933333333333,1.521465,4.257565,3.890965,4.13087,1.9262525,4.565895,3.68935,0.7325661025641026,0.3433807692307692,4.20991,5.41035,0.94812375,0.3433807692307692,4.476215,0.7325661025641026,0.7325661025641026,0.3433807692307692,5.704913333333334,2.461003333333333,2.36007,5.4025,3.214295,3.17317,0.8187944444444445,3.272845,3.88702,4.73369,5.80105,2.1686925,0.7392884615384615,4.37946,2.05721,1.210472,1.89007,1.0440157142857143,2.33702,2.266243333333333,3.45373,5.13995,2.3841533333333333,2.9266966666666665,2.754433333333333,2.3281966666666665,2.85695,4.3786625,1.59723,1.936745,3.806135,4.82772,2.1477569444444446,4.936975,2.875735,4.14866,3.988845,3.02116,1.2479725,3.12942,6.69335,3.81442,3.483575,5.1354,6.3688,2.48595,3.16263,4.61554,3.234165,3.40393,8.28544,3.80594,4.530565,2.43809,1.2053575,2.5709033333333333,1.903615,2.629705,3.039225,4.07035,0.6592821428571429,3.13099,3.80398,1.7995733333333332,2.9471833333333333,4.923325,3.21215,2.652725,4.13401,5.01905,9.0921445,2.70398,2.5227666666666666,1.6725539999999999,1.459465,1.2238966666666666,1.4039466666666665,2.5353533333333336,2.574176666666667,2.720136666666667,4.132187115384616,1.5834025,2.3220966666666665,4.912025,5.21495,3.68011,3.484845,2.95054,2.66797,2.0125,2.148925,1.8845933333333333,1.92652,2.809335,3.724845,4.68416,5.00315,3.914905,5.325707083333333,3.17678,2.573895,6.377337916666667,3.173255,8.499855,4.9007175,4.9007175,5.451653333333334,1.6255533333333334,1.3276875,1.4036566666666666,0.738291,4.87483,3.7872333333333335,3.291405,3.291405,2.31352,4.481885,4.30113,4.247335,3.729915,2.83347,2.665255,3.29695,3.0124999999999997,5.247976666666666,3.616745,0.7586527272727271,5.02,4.89068,3.89616,4.851645,3.6861,6.1716,4.094565,0.8395,5.33655,6.571833333333333,3.284045,5.6702,5.82455,3.51682,2.9705,3.646225,6.017,2.023405,5.86675,1.833,4.458605,2.43739,2.4090825,0.89301,3.291955,6.05615,3.55172,3.60955,2.009583333333333,5.2823,8.046710000000001,3.378665,4.35053,2.498215,2.69772,0.8400779999999999,4.807125,1.5749183333333334,3.4568866666666667,3.4568866666666667,3.611285,2.3258199999999998,2.9060699999999997,3.717435,1.751115,2.8502166666666664,3.2383333333333333,3.1523066666666666,2.878065,4.09384,3.156435,1.8826725,3.13726,2.060105,3.1149233333333335,1.9711833333333333,3.0761066666666665,3.19598,1.4236585714285714,1.8353166666666667,0.53042,1.3340416666666668,0.53042,0.53042,1.8353166666666667,0.53042,3.4539333333333335,2.8668,2.8668,2.8611766666666667,4.24667,3.74256,4.056725,5.3095,5.61525,3.51327,3.97322,4.11403,1.8835175,2.3073111666666666,2.3449433333333336,0.8142827272727273,5.5078,3.00534,3.0164833333333334,5.51365,3.8901525,4.60617,3.28538,2.5964533333333333,2.92608,3.431375,2.6199,2.8329066666666667,2.07687,5.2944,0.8289144444444445,3.666325,1.1925985714285716,3.76468,3.3069066666666664,2.8535733333333333,4.007985,3.987225,3.67063,4.5622,4.030955,3.851675,4.31936,4.36666,2.602275,2.76125,3.2768533333333334,4.2707,2.64682,2.882305,2.62348,2.947735,3.2721466666666665,3.373665,4.83511,4.70342,4.04495,67.97824825396826,2.7401524999999998,3.70813,15.646776666666668,4.227005,3.0454399999999997,2.34884,1.96335,2.6292166666666668,4.2957725,3.0079100000000003,3.86733,5.6023,3.31373,7.440636666666666,5.23245,2.550095,3.21101,3.632855,3.440755,1.83092,1.0395375,4.641315,2.39802,6.045038333333334,3.586555,2.3163933333333335,3.54882,2.93562,4.66448,3.211235,5.687385,4.398505,3.60822,3.036855,2.49562,2.717265,6.09385,2.496185,3.55059,4.292550416666667,1.2371283333333334,2.426855,5.0156975,3.177815,3.042115,3.601065,2.793325,3.52928,2.961555,2.77043,2.690715,4.387585,3.026025,3.16561,4.44721,9.29235,3.2312999999999996,4.17541,5.41095,2.98635,1.97347,4.16862,2.0063333333333335,2.8899266666666663,2.83928,3.22322,3.27564,2.95902,3.45858,3.324805,4.249985,3.87828,4.26419,3.753695,3.131255,3.57508,2.8229800000000003,2.8229800000000003,7.199021666666667,1.675925,2.960335,3.11534,2.26005,4.814605,4.269415,3.005385,3.26381,4.98067,5.915792499999999,0.623889090909091,4.210915,2.331345,2.92562,2.492426666666667,5.1043,2.6307566666666666,1.96335,1.07651375,2.0724109090909093,4.274775,5.18905,4.073185,5.7355,5.7253,5.6466,2.586545,2.0027933333333334,3.714565,2.647815,2.824996666666667,1.81149,1.31127,2.72995,3.0340966666666667,1.560928,2.34909,2.329312285714286,3.4447431043956045,2.77932,4.831315,3.34488,1.3653475,3.02752,3.62321,6.02445,4.81847,5.7517,4.638355,1.9740533333333332,1.4983766666666665,0.5982942857142858,1.4928466666666667,3.45701,2.59536,3.5864100000000003,1.4050500000000001,2.450975,2.37212,3.48777,3.53852,3.80577,4.08416,1.61004,1.392135,1.87729,2.01507,1.28626,2.4490775,7.071167583333334,4.848725,3.29395,3.003315,6.990715,4.553055,3.28398,3.140875,3.441275,2.7539,3.61465,2.2798366666666667,7.41362,0.9048033333333333,3.14308,6.6375,3.918805,4.564565,6.1471,1.4931866666666667,3.0865333333333336,2.8665000000000003,2.8144299999999998,1.510835,3.905045,8.41563,3.25129,5.0406,4.031495,3.075035,4.822385,0.8583883333333334,2.8102366666666665,5.24555,6.308693333333332,5.12025,5.92965,2.94092,3.7296666666666667,2.4330233333333333,4.908435,4.64653,4.028855428571428,4.028855428571428,0.6774114285714286,3.4665666666666666,0.986524,0.662235,1.723135,3.722766666666667,3.370176,4.673906,2.6134,3.135958,2.88089,2.6105666666666667,2.91801,4.5667,3.4795283333333336,1.88836,1.88836,3.93723,3.00749,2.769816666666667,3.578305,3.3945333333333334,0.57196,3.2800233333333337,2.65281,2.5886566666666666,2.717893333333333,2.528875,2.38171,3.12495,2.70532,0.8265079999999999,2.8604966666666667,6.365895714285714,2.1119,7.3817208333333335,1.59063,1.59063,3.4328154166666667,3.5089,3.3102866666666664,2.7815066666666666,1.6792500000000001,1.2937714285714286,3.216143333333333,3.3374666666666664,1.4771150000000002,1.558142857142857,2.8221666666666665,2.6445480000000003,2.6343833333333335,1.73018,1.780075,2.649645,2.133065,2.94311,3.47517,1.71326,3.78496,3.165775,6.816985,3.364895,1.61304,2.983965,2.50113,2.10729,3.97215,2.30113,2.55143,7.0539125,0.8222846153846154,0.8008816666666667,4.59089,1.44732,1.44732,3.739395,2.3691825,4.21713,3.12437,1.3418533333333331,2.3568540000000002,2.8226333333333335,2.3849306666666665,4.907455,5.22845,2.6067266666666664,1.9899133333333332,1.2928042857142856,1.2928042857142856,1.83852,3.769215,3.995433333333333,5.30635,3.0261666666666667,4.478135,4.110165,6.50635,4.096335,2.60284,2.765826666666667,2.716286666666667,2.69604,0.6982066666666666,0.6982066666666666,0.6982066666666666,3.29135,4.07548,3.622815,0.88283,0.88283,4.881765,5.23685,6.20184,21.26228,10.4552,7.89734,2.85764,5.66985,2.3703575,4.03699,2.5277600000000002,3.1458399999999997,3.8047,5.10358,2.19665,1.993095,5.96867,2.2461200000000003,2.2461200000000003,6.04675,3.11205,3.781875,2.1413275,4.74533,4.638135,3.41773,5.03205,3.12075,0.9770133333333333,5.73925,8.96889,0.9770133333333333,2.1413275,2.05796,0.75166,0.75166,1.7446840000000001,2.21284,1.7446840000000001,4.220175,5.18625,5.7657,7.90008,2.1413275,11.437693166666666,5.60545,5.31785,2.3703575,3.42308,4.128805,8.45846,3.0648400000000002,3.476,5.6202,3.51031,4.397185,5.9253,4.252265,4.90521,4.733875,2.501445,5.3345,3.231275,4.40176,4.471325,0.76248,1.460272,2.88485,5.6564,4.649805,2.72254,2.0734925,4.016775,4.510625,5.81355,5.37935,5.0176,4.347055,3.70516,4.204465,3.81636,2.163885,4.94874,1.91526,2.78641,3.44006,1.6858966666666666,4.06917,3.729535,3.516105,5.4319,2.98286,6.6871833333333335,0.9426788888888888,3.40311,1.97763,1.1209742857142857,4.7173680000000004,1.4054083333333331,1.6589633333333333,2.5060033333333336,2.806066,2.8546099999999996,2.7475133333333335,1.56436,0.70843,2.10933,2.579805,3.56386,0.7013692307692309,6.265333333333333,1.7222133333333334,1.215384,3.26636,1.215384,3.844185,0.9883454545454545,4.429215,3.2561633333333333,1.49696,4.247811,4.191846,4.191846,4.59913,2.3906275,2.9426233333333336,2.7950266666666668,1.4116199999999999,3.84635,3.97713,2.1355633333333333,0.6871158333333334,6.9423258974358975,2.8898,4.347075,4.26351,7.62874,2.1066275,4.18413,3.85487,3.20426,3.52386,5.4177,6.15371,4.409505,4.71919,5.1994,2.9345166666666667,4.853725,4.252665,4.47188,1.0343388888888887,0.48775857142857143,3.027695,3.30346,2.75907,5.23525,3.92651,4.065545,4.239485,5.1016,4.26547,3.889955,1.1899,2.21075,8.343789166666667,2.2061733333333335,2.0096366666666667,3.9485119047619044,11.158111706349207,1.53743,4.834585,6.5358,5.22175,3.6220666666666665,2.2722233333333333,3.2473733333333334,4.17582,1.1257516666666667,3.3288233333333337,3.216955,0.2948805263157895,2.18129,4.2965,4.08253,2.21955,4.110695,2.82497,4.961923333333333,1.41042,0.5322272727272727,3.5515033333333332,1.1429399999999998,0.99736375,0.99736375,0.99736375,0.99736375,1.6534266666666666,2.665853333333333,1.8667066666666667,3.3626,5.356,3.7114,5.1635,3.835735,4.347425,3.649595,3.95692,1.50697,6.38582,2.38413,4.322335,5.18446,5.2303,4.8829674999999995,2.17978,2.4206499999999997,2.6443933333333334,3.119305,1.2392333333333332,4.828465,2.70189,5.01085,2.8261299999999996,2.3458033333333335,3.86857,3.342155,2.971525,2.4211933333333335,2.75451,1.4719875,0.38916,4.11505,3.651125,4.069175,3.54357,3.76731,5.68235,4.152,0.5250261538461538,3.0821620000000003,7.005705333333334,1.8729433333333334,2.0506,5.510785,5.2604,2.6851599999999998,4.706855,4.998185,4.37876,3.92314,4.26561,5.45115,5.62685,5.21075,3.566555,5.16181,1.462314,1.63628,4.585575,4.00682,3.732255,3.27185,5.36555,4.90703,3.836395,3.297575,15.370990532572922,1.2666437493311933,1.09336625,1.8101626136363638,0.5110675,0.48904866666666663,1.3659125,0.32380588235294117,1.322086,3.5778666666666665,1.751224,0.8945833333333333,1.0156145833333332,0.4843133333333333,1.0156145833333332,1.0156145833333332,0.4843133333333333,0.8223384615384616,0.5146307142857143,2.75432,2.6486666666666667,4.37263,3.601825,2.8588733333333334,2.72915,4.15895,4.639925,4.824295,2.721765,4.18345,0.6731278571428572,2.3384053333333332,8.0765375,3.904125,6.516663333333334,2.680955,4.361415,2.340415,5.3913,5.29535,3.730615,4.15848,3.17138,1.06284,4.36097,4.62686,1.166674,1.239768,1.5012116666666666,2.46072,1.8589833333333334,5.33425,5.74275,2.28716,2.28716,3.5942805555555553,6.31433,2.0549033333333333,0.6564018181818182,0.7934885714285714,2.4650833333333333,3.291043333333333,0.9066728571428572,0.9066728571428572,0.9066728571428572,0.35657923076923076,1.0434171428571428,2.868525,5.94295,3.743066666666667,4.073315833333333,5.0046,0.994912,3.4788666666666668,3.1268466666666668,3.8006666666666664,5.44235,2.47463,7.2815650000000005,4.681175,1.0980366666666665,3.7334,1.91004,2.53721,2.2857600000000002,6.843064999999999,3.2913866666666665,4.35131,2.2879725,4.592465,4.5994,5.09645,0.527241111111111,3.118316666666667,1.3576066666666666,2.6012633333333333,3.965705333333333,2.0748866666666665,2.810373333333333,2.4270366666666665,2.5881666666666665,2.6116333333333333,2.7595533333333333,2.7434666666666665,2.7753599999999996,1.3549120000000001,2.28616,1.9559066666666667,3.24719,2.6016233333333334,2.1344225,1.7127299999999999,1.7631966666666665,1.643395,3.111135,2.1120933333333336,1.9674166666666668,2.10975,2.300733333333333,2.2758133333333332,0.8020288888888889,0.8020288888888889,0.8020288888888889,2.3359799999999997,2.1353233333333335,3.05242,2.362556666666667,2.5622133333333332,2.126653333333333,3.92474,3.5609333333333333,1.3374266666666665,2.4747066666666666,2.7521466666666665,3.6562133333333335,1.5720285714285716,7.052383333333333,4.36522,3.25722,4.068765,3.63616,1.4280775,0.8435214285714286,3.196035,3.706685,3.6562133333333335,3.924415,4.093345,4.31106,2.8486966666666667,3.827535,4.16799,0.9092879999999999,2.604155,3.188005,4.880983333333333,4.607115,3.4988,3.076815,2.54136,2.1358533333333334,2.3913233333333332,0.6250175,5.2463516666666665,2.753625,3.747085,2.7697066666666665,3.8038799999999995,3.5022333333333333,2.4048066666666665,2.879307333333333,2.879307333333333,2.5696600000000003,2.1858766666666667,2.42124,2.03062,4.08031,1.400696,2.655335,3.725255,3.89332,3.876875,5.2133,3.45633,2.3768975,2.12897,3.11553,2.831635,2.619395,5.1098,2.44812,0.7791057142857143,0.7791057142857143,4.517945,3.9470470000000004,0.9620520000000001,4.24676,0.9620520000000001,3.85742,4.706435,4.834065,3.013205,3.18833,6.276905,4.17384,5.6765,0.8624285714285714,0.8624285714285714,2.06208,4.365966666666667,1.4865666666666666,2.8794,3.329535,1.09845,3.51493,3.900575,5.761875,5.761875,1.0154716666666668,5.7167,5.32645,5.05195,6.0389,2.06945,2.06945,6.94145,0.928590909090909,7.2687,1.99939,6.5685,2.685335,2.4641100000000002,3.56036,2.36382,2.1233066666666667,2.3445466666666666,2.970546666666667,2.4391273809523812,6.111136,1.78571,5.0057,2.8961133333333335,2.5382366666666667,1.827565,2.199595,3.260645,3.45272,3.64081,2.81762,2.34177,2.117375,2.680925,1.091374,3.29857,2.48658,3.23099,2.2856235,2.2856235,3.14093,2.14643,3.84656,3.204355,4.946085,7.025885000000001,4.228815,3.581475,6.337735499999999,2.01984,3.3390911111111112,2.26652,1.4762857142857142,1.6212125,4.25447,1.5427283333333335,0.5014475,0.6517783333333333,4.639945,4.73059,2.774775,0.9449077777777778,2.720795,3.07461,4.810245,1.7382560000000002,1.697555,1.117911111111111,4.59492,2.50283,4.57517,0.743473,4.032550416666666,4.126995,3.49667,4.32808,3.5563,3.73545,2.7668533333333336,5.41695,3.56302,1.72107,2.7430066666666666,5.967665,6.2952075,0.7866575,3.663205,4.575195,5.2212,3.6395666666666666,3.7351666666666667,2.634575,3.1344999999999996,3.757566666666667,6.5115375,2.6445480000000003,2.6460095,3.943595,3.058,2.45842,2.528075,8.576913333333334,4.56167,1.8929166666666666,4.68575,4.77168,1.7381579999999999,3.777835,1.25795,1.555142857142857,4.317605,3.844185,4.528645,2.5208066666666666,3.229195,3.17094,4.605795,3.950475,3.253485,2.896405,3.71155,3.914565,3.8176799999999997,1.0228191538461537,1.0228191538461537,7.60407,0.801155,1.8725442063492064,0.801155,0.6524133333333334,0.3825577777777778,2.5249575396825397,2.217875,0.48607142857142854,1.8725442063492064,2.10818,3.439005,2.038886111111111,3.4412,4.769345,7.257941666666667,1.935715,2.08057,1.93719,4.14565,5.59325,1.96006,1.66676,0.8126275,2.4793875,4.095975,2.60469,4.360235,6.3872125,0.42919277777777776,3.793005,0.726598,2.7174600000000004,2.1808825,3.47379,1.2212516666666666,3.96992,4.52388,3.93801,2.723345,3.821555,4.735765,1.69637,3.368075,0.5741361538461539,2.337455,2.277685,1.12731,2.986636666666667,2.4676633333333333,2.4662966666666666,3.5452,8.094595,2.916678181818182,3.77245,3.308175,7.29269,5.376459166666667,3.200396666666667,4.09111,3.505745,5.6556,4.201255,5.09805,4.885345,4.19519,4.79874,3.9209333333333336,1.6228,1.8871866666666666,2.17657,3.693755,2.5010166666666667,0.18826702702702702,0.18826702702702702,0.18826702702702702,29.773788166666666,0.18826702702702702,3.136642027027027,0.18826702702702702,0.18826702702702702,0.18826702702702702,3.1736736936936936,4.14788,0.18826702702702702,0.18826702702702702,0.18826702702702702,0.18826702702702702,0.18826702702702702,2.860625,5.15889,3.28422,0.19343435897435898,0.19343435897435898,4.3885266666666665,3.90613675,3.98030875,3.2620704166666665,3.808011904761905,7.887370000000001,11.466001604506603,6.306998,8.163546666666667,7.872303428571429,2.8532333333333333,6.238061428571429,4.352303333333333,4.213724679487179,0.19343435897435898,7.752496666666667,6.591926476190476,7.14225,2.83455,9.247853928571429,13.744427142857143,18.22978262820513,55.81336293772894,114.99839893635531,1.4525249999999998,3.3425,3.39685,3.784462132561133,0.19343435897435898,1.5258755128205128,8.905912708333332,14.917169761904761,19.576763333333332,47.097465204051794,13.529571761904762,3.284875,0.22435896551724138,0.22435896551724138,4.5870299999999995,2.7627699999999997,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,4.71661,0.22435896551724138,0.22435896551724138,0.22435896551724138,2.598355,1.9833766666666666,3.886785,3.75232,4.038985,4.885065,1.8667775,4.010465,4.25034,3.03405,1.5028933333333334,3.642285,1.06701,2.353375,1.8806966666666665,4.934516666666666,5.84092,2.7324266666666666,5.566925333333334,0.5630833333333334,0.446004,2.39345,2.7856666666666663,3.058245,3.857365,3.490866666666667,7.37830625,3.719445,4.061425,3.55978,3.8712,2.95682,3.40521,5.798,1.848065,0.44834615384615384,0.8122863636363636,4.2293650000000005,1.768985,3.8788,3.74358,4.4693,3.65839,2.3100825,2.65614,0.6335893333333333,0.735144,4.268995,2.6665433333333333,6.1903,3.528375,3.71668,2.54086,3.059115,6.30755,3.709845,3.318975,0.7956445454545455,2.9030199999999997,4.325565,2.2327,0.900335,1.5578,4.22598,6.5232,1.91432,3.004805,3.55394,5.80815,2.639095,2.290853333333333,2.346975,4.603865,2.49524,4.033805,0.7045899999999999,2.22247,3.342305,1.76275,5.981228333333333,2.940835,3.701295,4.34196,2.975155,2.165675,0.5176372727272727,4.286435,5.0602,6.77255,3.58226,3.90576,4.978885,2.849185,2.857695,1.164794285714286,4.8593,2.01393,2.67948,8.42022,4.095615,5.2351,3.203595,0.7234755555555555,3.08044,1.2142442857142857,3.219635,6.03665,4.81068,4.941495,3.568245,5.1948,4.308815,1.65625,1.6922366666666668,4.87299,2.9367033333333334,3.232136666666667,2.4435375,5.43665,4.35365,1.4417200000000001,3.4789333333333334,2.9251,2.8589,3.803135,9.08594,4.72816,1.7342775,4.626105,6.43818,4.3342975,3.99961,3.884015,3.966535,4.744805,8.25887,2.4355966666666666,3.225875,3.36591,4.26539,2.856725,3.168405,4.52443,4.373505,3.636015,3.981592,18.704135666666666,2.90587,2.68758,3.3822666666666668,5.476344,1.19325125,4.00953,2.128385833333333,5.006,1.3867666666666667,4.160655,4.173685,3.45376,0.95642125,4.636675,4.53293,1.7292575,4.645935681818182,4.335185,1.0179928571428571,3.510085,1.674785,2.47336,1.49452,4.233015,3.73331,3.722815,3.75338,2.9692366666666667,4.238615,8.102613333333334,4.4288,4.139515,4.71186,3.04162,3.80386,4.780285,6.423671,0.959986,0.959986,4.38171,4.821575,2.1819433333333333,1.3733766666666665,7.135949999999999,3.971315,3.66892,3.69847,4.75098,4.391055,3.659625,4.077815,6.619454999999999,3.90967,4.48192,4.67207,1.3726685714285713,2.581175,4.263315,4.46583,3.389095,0.20072555555555555,1.472025,2.0825625,2.56385,2.1122666666666667,0.94671,1.2845025,1.373285,2.341886666666667,0.5793188888888889,1.065332857142857,1.8932375,4.057925,3.9934,2.0494499999999998,2.5162633333333333,2.8177566666666665,2.791603333333333,0.70009,0.9222775,3.19243,4.39738,4.2932,2.738235,4.67085,4.581075,4.637755,2.05254,4.359305,4.929105,4.324405,6.0712525,3.66969,0.4895923529411764,5.51255,4.48368,3.563685,4.83192,3.13548,1.8987500000000002,3.781535,4.081925,2.687955,5.302419166666667,4.507825,1.4284716666666668,5.302419166666667,4.04671,6.873727499999999,3.68935,1.1112,3.850895,4.858455,4.28167,2.71419,4.875885,1.4858875,1.96788,3.51457,3.33814,0.8014100000000001,4.689,4.77893,3.40246,3.772995,3.5132666666666665,2.9961300000000004,1.72404,1.6567475,3.240305,3.368855,3.3788,2.36373,2.15971,1.9103676666666667,3.715005,1.37274,0.8148877777777778,5.37741,3.99848,1.4310779999999999,2.448803333333333,2.1374033333333333,2.977266666666667,5.765693333333333,2.1714422222222227,0.8385009999999999,2.432495,4.261875,2.1008566666666666,3.954225,5.0136,5.3051,4.40145,4.27424,5.5193,2.128976666666667,2.3133500000000002,1.6597666666666668,2.243723333333333,1.95312,2.33611,2.1902066666666666,1.5646425,2.601125,3.02645,3.74895,6.45625,4.333755,3.953895,4.28031,3.930705,3.845505,5.22325,0.8907675,3.1397099999999996,4.67574,1.183614,0.6372106666666667,5.0687,3.577705,2.5098,3.65999,6.088150000000001,5.71115,0.935656,1.15926,0.7074444444444444,4.081568333333333,2.2257866666666666,2.7418099999999996,1.1967357142857142,2.6820066666666666,2.6485433333333335,5.394,4.59284,4.375215,5.32565,4.305455,1.2164933333333334,3.70307,1.67451,3.548425,3.852065,3.252725,2.3948533333333333,3.391166666666667,2.6976999999999998,3.54088,3.961355,3.06094,2.25602,8.926324999999999,10.2236175,4.067565,1.3142485714285714,5.4429,4.16471,4.84433,4.4796,3.62464,3.77653,3.39376,4.18753,3.4917098958333335,4.49166,3.8557,3.490415,4.626305,1.778018,4.8671,5.7514,4.853505,3.337575,3.3505975,7.42257,0.8018933333333332,2.546533333333333,2.6985266666666665,2.4253033333333334,5.05915,3.474335,1.25181,4.142555,3.329223333333333,3.67861,4.511945,4.159584166666667,6.53597,3.0866666666666664,2.9235100000000003,3.2377466666666668,2.75712,3.75981,1.9819533333333332,2.1106233333333333,2.9503733333333333,3.887815,3.88159125,1.9919825,1.580945,3.266694642857143,2.956797,0.9120699999999999,2.534091666666667,2.534091666666667,1.31737,5.8161,3.15341,3.328955,3.605565,3.1156,3.428455,3.39604,3.0099,3.2484,2.428386666666667,0.5277026666666667,3.22937,5.7548575,3.16164,3.794755,3.27018,4.03613,4.01611,3.322205,2.81505,3.69198,3.702605,3.167855,3.07637,3.805675,2.587563333333333,4.14007,3.780795,8.68895,3.408365,3.668735,3.0586,4.079015,4.016385,3.616445,2.26504,3.645925,2.6497525,2.92845,3.10165,3.131275,3.915195,1.7176566666666666,1.7176566666666666,2.13665,3.13253,3.017725,1.536008,2.473885,3.326545,1.715632,2.91443,1.536008,3.992725,3.05096,3.827868,3.16977,3.329745,2.20351,3.1621,4.103165,4.05911,3.323215,4.62673,3.802835,4.18625,3.70591,3.1833,3.14305,3.03455,4.007225,2.60088,3.7573,5.236,4.15241,3.73861,0.28312739130434783,3.53469,0.46211,3.59706,3.581355,3.056705,3.589925,3.77712,6.254673333333333,3.57385,2.56171,2.271733333333333,2.8643,0.6624019999999999,6.7298,3.193325,3.45381,3.61021,2.000375,2.58508,3.286365,3.356245,6.76884,4.534165,5.0823,4.441065,4.26824,4.18459,3.752515,1.3900933333333334,1.67941,3.83729,4.349515,5.8634925,2.54424,5.0257,2.039045,3.4377333333333335,3.79755,1.931227380952381,4.16045,4.7632449999999995,3.4116,3.6977333333333333,2.3353366666666666,4.48453,4.501235,3.479433333333333,4.27978,4.563035,4.99422,4.25159,4.407675,3.96213,2.792925,4.20676,2.635525,3.279503333333333,3.279503333333333,4.61924,2.4472,3.86024,2.4862699999999998,4.400025,3.2476299999999996,3.66743,1.86387,2.0185066666666667,1.1956166666666668,1.1956166666666668,1.7268940000000002,3.30231,1.7297500000000001,2.66722,3.80869,5.0750720000000005,3.201506666666667,3.815335,5.88348,3.01859,2.8538,3.0012933333333334,1.60628,4.059765,3.962185,6.237920000000001,1.5914366666666666,5.12045,5.7404,3.4078,3.33184,4.286185,6.41789,1.94892,2.36937,3.853185,0.5016442857142857,3.38283,4.025375,4.31117,4.3604,2.71452,1.246646,1.6245920000000003,4.071425,2.77128,2.3526633333333336,3.854265,5.0278,5.18885,0.95262,3.023355,5.019,3.61646,4.43243,2.40338,4.97114,3.927845,1.610884,3.432815,1.2856333333333334,2.7759766666666668,7.161958333333333,3.16609,0.6174736363636364,3.34529,3.906255,3.747325,1.5902675,1.5902675,4.785456666666667,5.62255,2.943905,0.5147444444444444,1.925165,4.498814166666667,4.282525,4.256435,1.826284,2.936256666666667,3.282475,1.239093355263158,1.239093355263158,1.239093355263158,0.7679937719298247,1.331787105263158,0.5637933333333334,1.239093355263158,0.7679937719298247,0.2770321052631579,0.8408254385964913,0.2770321052631579,0.4909616666666667,0.4909616666666667,0.4909616666666667,0.4909616666666667,1.0359348333333334,1.02216625,2.3402233333333333,2.2973683333333335,1.0920933333333334,6.33789,2.63264,5.499555,2.22012,3.70234,2.67434,3.482595,2.7811441666666665,4.47953,2.8538200000000002,4.055025,4.010185,4.471515,2.175265,3.94816,4.625315,4.1467,3.23824,4.70188,3.51179,4.507735,5.5851,5.08815,6.21215,5.36,1.13001,4.736395,3.95106,2.99556,15.93308,4.46468,5.2594,2.6988033333333337,7.83776,3.97269,4.19387,4.797965,3.261565,1.0771925,2.34293,3.73579,4.315705,3.170025,3.1419,4.07261,3.0036766666666668,4.67151,4.60722,4.429915,6.473543333333334,7.203428333333333,1.441957142857143,3.760375,3.975255,4.01384,3.700175,3.621505,7.37168,2.82113,2.837355,2.61647,3.857045,3.79607,4.58485,2.3542,1.811195,0.917696,4.222075,3.39012,3.575585,3.8274,3.39888,4.80283,4.10565,6.37845,6.0318,4.702275,6.63525,3.67237,3.06328,3.1405,3.343655,1.78865,4.324475,5.5014,6.1065,5.508051666666667,5.508051666666667,2.4684,1.78865,2.03727,3.022265,0.6874349999999999,1.47607,0.788635,1.403955,2.594075,0.36779,2.785335,4.167625,1.403955,2.978412,10.592305,6.4423575,2.3531391666666663,1.05223,1.68175,4.471945,4.180325,5.719015571428572,1.9537375,2.264905,3.40149,3.217205,4.685405,1.4847066666666666,5.29265,3.5582666666666665,3.167885,5.18605,7.132254,3.833645,2.3914925,2.788883333333333,1.8233966666666666,3.57784,5.337552499999999,1.815868,5.6401,4.38712,5.733785,0.5157459999999999,4.440881666666667,4.91918,4.57515,2.41867,2.69265,7.35215,7.584866666666667,6.5953,2.0268166666666665,2.0268166666666665,2.0268166666666665,4.71463,5.05545,6.2906,3.74132,2.650615,2.476858947368421,4.227475,4.352055,2.472936,1.79807,2.472936,6.948056,4.9906500000000005,4.797852142857143,7.26156,4.797852142857143,4.797852142857143,3.6277171428571426,6.98121,5.495008,2.791278,2.791278,2.572475,7.15665,3.14038,3.534075,5.478707916666666,5.478707916666666,5.478707916666666,8.45783,3.611255,3.47152,3.6719125,3.5406625,0.81159125,7.764893333333333,2.774243333333333,6.81915,3.695655,12.745868666666667,5.1356,5.551919166666667,6.479,2.648085,3.360795,1.0821616666666667,5.551919166666667,3.402035,1.6599975,1.6599975,2.899185,5.2729808333333335,1.715955,4.771536666666666,0.8307119999999999,1.4112033333333331,0.8307119999999999,1.9126475,2.546667,5.173787,3.88253,1.4112033333333331,3.072615,4.7529075,0.9335475,3.56401,4.362225,2.12588,3.7512583333333334,2.485425,3.13819,2.999795,0.9517720000000001,3.66015,1.954495,2.20662,1.53114,3.055945,3.88457,2.411975,3.89428,1.3264222222222222,1.3264222222222222,1.3264222222222222,4.08912,3.23836,3.23836,2.435535,3.695165,1.9109833333333333,1.36129,1.36129,3.189415,5.00861,0.86932,1.4041466666666667,2.82077,1.266395,2.670541666666667,0.9517720000000001,0.9517720000000001,1.8578575000000002,0.9517720000000001,3.058814166666667,0.706625,3.058814166666667,5.834945833333334,3.363165,2.4414666666666665,1.7446658333333334,0.6330633333333333,2.3777291666666667,3.56236,2.3777291666666667,0.9448533333333332,3.14748,4.05806,3.867675,3.48366,2.3866,3.819355,1.7607266666666668,0.8304420833333334,0.41680875,0.8304420833333334,0.41363333333333335,0.8304420833333334,0.8304420833333334,4.38248,4.36012,4.870035,3.36486,4.41005,4.389785,5.0825,3.54555,3.73802,1.3400642857142857,2.59182,4.183084166666666,3.93041,1.4410466666666668,2.7124366666666666,3.829905,3.80301,4.019665,3.298785,4.013885,3.535185,3.14594,4.30601,2.3070233333333334,6.01435,3.459105,3.681675,4.283569285714286,0.8430557857142857,1.945665,3.05176,6.31835,3.73494,3.346375,2.9464233333333336,4.207605,7.377811666666666,2.99377,4.27654,2.7827866666666665,3.86406,4.034185,5.6489,5.4674,4.134465,2.905325,5.313,4.62721,3.4931666666666668,4.197135,3.30369,2.285395,2.3693766666666667,4.761635,6.5868,4.632335,4.56082,3.73142,4.66984,5.6233,0.5154907692307693,7.30763,4.55016,3.45674,3.71246,4.588385,3.90072,2.8960333333333335,2.4368,1.28393,0.57816,1.793606,3.21787,3.248855,3.831825,3.811435,4.01261,12.077298333333333,3.75585,4.023355,3.167625,0.6618016666666667,5.369743333333333,3.01381,1.4928299999999999,4.50664,5.8245249999999995,2.810715,8.2225,4.569795,2.321408,2.321408,2.321408,4.33382,9.23433,3.7563,2.58715,2.58715,3.35585,10.1025,0.98228,4.51189,4.42122,4.433815,2.65451,2.1794966666666666,4.24541,3.729915,6.5114,6.022916666666667,3.846825,2.900185,3.7376,4.410755,3.248934,1.12941625,2.622673333333333,6.34358,3.0972150000000003,5.1365,0.95971375,3.6629666666666663,2.3080666666666665,2.5516633333333334,1.74465,1.6980466666666667,2.1329433333333334,5.06855,1.94825,4.220855,5.60445,1.78571,4.595375,3.75114,4.551065,3.163726666666667,2.437135,2.766995,4.21726,4.175273333333333,4.175273333333333,1.2242525,1.62009,2.7773766666666666,4.590562666666667,2.241553090909091,4.862202666666667,1.6990760000000003,2.66635,2.16322,1.679285,1.679285,4.404915,7.280008333333333,1.9498433333333332,2.8655033333333333,2.2685375,4.72358,3.03124,0.80473,2.851195,0.80473,2.52933,3.22454,5.48545,5.32185,3.751645,4.643625833333333,5.79,2.324675,1.8384166666666666,3.130903333333333,2.2078433333333334,6.20015,4.65368,2.39055,4.08162,2.77895,4.242495,1.07440625,1.15601,1.7417166666666668,1.263585,2.6341966666666665,2.7957133333333335,2.231106666666667,2.9054366666666667,2.567435,4.400565,2.58034,2.3989066666666665,2.745093333333333,2.4644133333333333,2.8800333333333334,2.64502,1.98522,2.5881433333333335,3.911495,3.59348,2.932485,3.30727,2.736056666666667,2.16217,1.8415875,1.0337916666666667,0.2648415,0.13048065217391305,2.12487,1.75256,0.13048065217391305,3.440385652173913,1.955285,0.13048065217391305,5.666146736111111,2.1605916666666665,6.28039,3.37699,3.16797,2.577906666666667,2.773896666666667,2.1378325,4.31815,2.953063333333333,3.1654966666666664,0.397348947368421,4.088941666666667,2.683198947368421,3.08414,1.80172,2.481685,4.37556,2.323865,7.7253799999999995,5.1175,3.132585,3.66728,6.5219,5.87623,1.6612433333333334,4.3017775,2.151055,1.923955,6.57607,8.03682,1.1003433333333332,2.090935,3.74177,2.50297,2.884265,3.074845,2.78877,4.150275,2.378535,3.16149,3.1995,3.301715,7.52379,1.3258566666666667,2.076095,2.94483,3.243195,1.8541999999999998,3.38576,1.40258,3.81759,3.290665,6.05716,3.352905,9.2832025,3.40683,1.541926,1.6949500000000002,2.94764,5.99143,1.6136125,1.47661,5.57264,3.3182,3.96805,2.92179,2.062046666666667,2.99754,10.474635,5.3446,6.59385,3.474205,2.20412,2.11494,2.64312,2.709725,3.23527,1.6829333333333334,1.6554733333333334,2.4867033333333333,3.41686,1.760635,3.496435,2.794535,4.16721,3.784675,3.84065,1.1397333333333333,2.731225,1.0746166666666668,1.392348,1.62061,3.421645,3.320025,3.49496,2.774485,3.655475,3.972945,2.95949,1.48117,3.576105,3.3469300000000004,3.20618,1.62216,3.13694,3.56412,1.402475,3.307025,1.52553,3.994755,3.823515,4.4457,2.631225,3.93429,2.99905,3.25542,5.7739,1.70882,1.0754371428571428,3.5682666666666667,2.782575,4.24577,4.092645,3.084745,4.418135,4.80645,2.1810933333333336,5.3606,5.3835525,6.6141,4.081555,6.500660666666667,4.007875,1.7691666666666668,2.8218266666666665,4.41495,4.5359,2.6358266666666665,7.263434,1.1208614285714285,3.21595,2.14958,1.720508,2.2904566666666666,2.7740333333333336,0.38230285714285717,2.72831,3.9331333333333336,3.53868,2.46222,3.465066666666667,2.3570166666666665,2.41519,2.172195,9.377604999999999,4.883585,2.05286,5.30555,2.377817586956522,0.7325661025641026,2.7986066666666667,7.177740666666667,1.685908,4.47535625,6.039693333333333,1.669735,1.6543075,1.36442,3.494265,3.158255,4.35125,3.7352675,2.43627,3.56007,1.01712,2.94105,4.14926,4.06585,4.70016,2.984885,4.92462,4.676515,4.000665,4.863375,5.4754,4.78797,3.860655,5.8535,1.7233740000000002,1.873925,2.870775,3.282435,1.1047444444444445,3.661045,2.0957433333333335,3.3356,4.261575,3.29027,2.5026966666666666,1.52032,3.0218666666666665,2.833026388888889,2.614133333333333,2.8540733333333335,1.9383133333333333,2.0089975,2.371685,4.05446,4.231935,3.858365,4.603885,3.56429,2.43086,2.968835,5.03305,3.8793,4.593335,3.170825,2.305995,4.636495,1.84159,3.990725,4.6651525,5.812636785714286,3.78979,4.29553,5.4036,3.1010666666666666,3.7961891666666667,4.51584,3.2586,3.7892425000000003,3.48881,1.3656975,3.329105,1.703215,2.26376,4.72212,4.8849725,3.7892425000000003,3.873125,3.432035,1.4865666666666666,3.49472,2.1371,2.30113,2.136835,2.612095,1.6291333333333333,1.6291333333333333,1.6291333333333333,0.59793,0.8013566666666666,2.09948,1.04815,3.72118,1.3768083333333332,3.82009,5.1681,4.564905,3.19717,3.956,3.173105,4.92324,1.509965,3.096885,2.63743,3.359875,5.784668,4.204645,5.16295,4.111905,1.010855,2.42295,1.2561666666666667,3.909295,3.873965,4.261445,5.1987,4.605015,3.756035,4.409905,3.64366,1.663955,1.0466,5.45012,1.097788888888889,1.2044233333333334,2.50489,7.96743,3.148185,3.885065,2.801325,5.579665,1.64998,1.0409733333333333,1.4528825,3.240645,3.67717,3.872225,3.78567,1.8637325,6.36299,2.908963333333333,0.91469625,4.756965,3.00337,2.60743,2.3922133333333333,3.4887,5.650738333333333,2.5369733333333335,3.1699566666666663,3.4443333333333332,2.38421,2.679133333333333,2.7571833333333333,2.850675,2.0393825,4.71443,4.60516,4.93461,1.042778888888889,0.760581,3.8403333333333336,2.71185,1.01769625,2.6423929166666666,3.906995,4.066165,6.90617,4.61939,3.498533333333333,1.7834240000000001,3.58842,3.72286,2.781523333333333,2.540856857142857,3.944485,2.8310600000000004,4.9177,0.8868722222222222,3.21641,1.743544,3.57631,4.06817,1.765625,0.964625,3.102225,0.43929,3.20303,6.70735,5.29595,2.8339980000000002,1.491052,3.8315333333333332,0.7792844444444444,2.6364633333333334,0.7792844444444444,3.90048,4.43366,1.3971875,1.8010425,5.035011666666667,1.8434866666666665,3.570695,2.780135,3.587375,1.218898,1.58023,3.930515,4.386805,5.20345,2.83928,2.939925,3.2314,1.535905,2.3015575,1.8263075,1.9368975,4.447015,1.4494,1.4494,3.43269,4.645336,8.333369166666667,3.976143333333334,7.89465,2.03755,3.89473,3.953545,1.69435,3.5248125000000003,4.14694,3.264905,4.45343,3.06799,2.50629,2.8790766666666667,3.927175,1.04395625,4.112455,4.38984,1.1455316666666666,7.852543333333333,2.751365,3.116195,3.5407566666666663,5.27115,5.30685,3.63381,2.425733333333333,2.832326666666667,2.09071,3.7784333333333335,2.20376,2.1956525,7.209907333333334,3.2489166666666667,2.85388,4.274725,22.210980514652015,0.6861333333333334,2.77619,4.45329,4.61531,8.53564,4.689125,4.66214,4.544935,7.1655,3.536225,1.5913333333333333,4.74104,3.08822,1.136172,1.136172,1.136172,2.35435,1.6723725,3.24184,1.534545,3.065875,1.4931866666666667,2.612055,2.54113,2.86375,1.534545,3.110925,2.65517,4.125936666666667,4.781255,4.82063,0.7457824999999999,3.184935,2.90838,4.605655,3.41426,2.816415,2.4570525,1.723735,2.3543925,1.4161759999999999,3.531025,1.6082325,4.34704,10.640227666666666,2.7729933333333334,2.365135,4.771353333333334,4.798266666666667,4.5582666666666665,6.6242,2.28585,5.376459166666667,4.365115,1.1168383333333334,1.1814057142857144,6.518229,4.546175,2.42028,3.68683,1.89348,3.84434,4.821265,4.534855,4.01251,1.3550228571428573,4.12607,4.425745,4.67019,6.235812,3.48753,5.44445,4.46545,4.445185,5.1095,3.548,4.85591,1.9033825,3.38041,3.091455,3.226845,4.476635,6.41735,4.27606,2.89945,3.5784333333333334,8.98798,4.735635,3.2303366666666666,3.42247,2.927575,4.409575,4.22766,4.566025,6.6062433333333335,3.9391,2.6352433333333334,3.9173025,2.591365,4.197485,2.2619833333333332,6.2212875,1.6911500000000002,4.33364,4.514645,11.852857499999999,0.502925,4.21207,4.9664,0.6573585714285715,3.585515,3.78563,4.174565,0.944136,4.82814,4.824973333333333,2.6565966666666667,9.970301666666668,3.2728266666666666,1.80657,2.405515,3.654775,5.9826,0.55787,3.843725,1.942255,5.42785,0.7140546153846153,4.18285,5.69365,6.1429,3.477005,6.447897500000001,4.62368,3.4377199999999997,2.537733333333333,2.74403,4.280065,4.363585,4.859255,4.964275,5.44485,3.1183566666666667,6.621641666666667,2.729525,3.0566115,1.95302,4.21616,2.28505,1.55593,3.0050333333333334,2.95083,3.22912,3.4838666666666662,3.6906,2.98946,2.5578966666666667,5.4497,3.1009966666666666,3.74944,4.997845,2.5805866666666666,1.1624444444444444,3.1197233333333334,2.899043333333333,3.82927,2.6927866666666667,3.130293333333333,4.82854,2.10897,1.759995,3.099895,3.679675,4.365315,1.10551625,4.18762,3.17832,4.105266666666666,2.8821166666666667,4.818999,3.869245,3.44964,4.06455,1.643355,3.77799,0.64760625,4.590835,4.88701,17.113927575757575,2.965536666666667,1.1758333333333333,3.947,0.6245635714285714,2.698925,4.258855,1.882945,1.213067142857143,3.670545,4.455615,3.070093333333333,0.6898016666666668,2.49102,8.27402,3.91107,5.446,5.1064,5.0294,3.0790433333333334,3.7532333333333336,3.241096666666667,7.533206666666667,3.765695,4.8619,1.981105,0.4476588888888889,2.052355,2.887125,2.29096,3.35123,3.58174,2.9247433333333333,4.7935,0.7027525,4.59417,3.70337,2.6891,1.14048,2.67949,2.048436666666667,4.95706,3.90666,2.24298,1.6704428571428571,3.248275,4.267395,4.20846,6.113131666666666,2.1739666666666664,4.603895,4.13264,3.634565,1.890418,3.619435,6.076443333333334,4.72955,2.56568,4.866345,2.87809,2.66074,3.8844,3.84014,1.325065,4.632885,2.14656,2.56181,5.204603333333333,5.204603333333333,5.3457,1.488156,4.986975,0.86864375,1.7967520000000001,5.20145,2.7045600000000003,1.3854,3.1295066666666664,0.9324960000000001,4.242566666666667,4.44361,2.80643,4.984805,4.165495,3.859445,5.1502925,3.56004,3.7043,2.7590233333333334,2.4181033333333333,2.6948,2.9789866666666662,4.283395,1.7593921978021978,2.9423866666666663,4.43815,4.6798,2.1955329166666666,4.060385,4.524595,4.926066666666666,3.466833333333333,5.1838,4.905265,5.1981,4.79543,3.57953,3.60142,3.65951,4.406195,5.4628,4.8033,4.811175,4.502405,4.593835,0.6733525,4.96364,4.3671,3.925705,7.048439999999999,4.073385,3.791265,4.23097,4.81742,3.40662,3.65881,2.05551625,4.448577500000001,1.8313425,1.3715014285714286,3.434485,2.1094166666666667,2.46468,3.5934999999999997,3.3102866666666664,2.571135,1.13269,1.88081,4.611945,3.725705,1.863215,1.863215,3.024745,1.6270520000000002,3.16445,4.248975,3.430535,3.758955,1.4999466666666665,1.95454,3.4414333333333333,2.048285,3.73652,4.25493,4.395515,4.08642,7.062913333333334,2.635475,3.757225,4.450245,4.347845,3.1973000000000003,4.10842,4.063775,4.344115,1.826595,2.4852766666666666,4.280415,3.82026,3.71325,3.666765,1.7078825,3.700825,4.30445,4.473335,4.256355,3.74142,3.74142,3.037505,3.82534,4.07329,3.791325,1.633994,7.2163775,3.909985,4.814345,4.233975,4.218455,3.85664,5.13105,2.941215,3.76383,2.669455,4.975085,1.7912620000000001,4.09293,5.475297777777778,5.02385,0.673684,4.64412,1.19092,4.77335,4.82425,4.36344,3.915465,5.15705,3.723933333333333,3.723933333333333,0.8107960000000001,2.2440925,4.74042,3.541705,3.888455,5.07525,5.46235,3.271485,4.15091,1.37586,2.70291,1.71189,1.26275,4.1817546666666665,0.8383470000000001,2.5392366666666666,3.0307033333333333,1.1595366666666667,2.2123525,2.65617,1.2218933333333333,6.67247,1.926395,2.6181733333333335,5.59805,1.85163,2.65361,3.158915,4.501585,3.208553333333333,3.3410333333333333,4.0889999999999995,1.688946,2.1350958333333336,4.15272,0.6551978571428572,2.09299,2.3038233333333333,3.04834,2.9124199999999996,1.1422471428571428,0.83595,2.3814333333333333,4.131525,1.156755714285714,2.2123925,1.229745,5.376123333333333,2.25054,5.1366,4.347105,4.185265,5.3165,5.18325,4.067985,4.37001,1.471965,3.9201333333333337,1.67916,2.44094,1.1799171428571429,4.405525,2.05288,7.2161100000000005,4.19577,3.89117,1.421932,6.866522499999999,3.382805,1.5209566666666667,4.091195,3.151295,3.8479,3.14817,1.98667,1.98667,3.1981800000000002,1.313045,1.313045,1.890418,2.82969,2.1344225,1.3374266666666665,3.5402,1.04933625,3.08652,2.29297,1.843865,1.4728733333333333,2.1557025,1.9845125,0.2919394117647059,2.4448475,1.1881783333333333,2.2451233333333334,2.16322,2.3768975,1.0439644444444445,1.091374,3.7499000000000002,3.1487233333333333,1.98667,1.768985,1.9724000000000002,2.48481,2.4649533333333333,1.863278,3.1546000000000003,1.09585,3.2768533333333334,2.650186666666667,2.6125633333333336,1.583018,0.97317,2.4703375,0.97317,2.4703375,0.6566625,0.6566625,0.4766138888888889,2.3150475,2.3437933333333336,0.6566625,2.1692975,2.2647066666666666,2.354335,1.643395,0.8020288888888889,0.6566625,0.6566625,1.702766,1.702766,1.99488,1.768985,0.6566625,2.2571000000000003,0.4552784615384615,3.07002,2.0705666666666667,2.54236,2.46884,2.46884,0.383598,0.383598,1.890418,1.9504259999999998,2.14946,1.967928,0.383598,3.488766666666667,2.251835,1.5703239999999998,0.622690625,1.5703239999999998,0.622690625,7.07254,2.7546866666666667,4.022566666666667,2.75703,2.8732166666666665,3.0574166666666667,2.8433333333333333,3.4863999999999997,2.49562,1.6726775,2.7312133333333333,2.99377,2.27306,1.702766,2.633874603174603,2.633874603174603,2.7755433333333333,2.0622475,4.202775,2.31271,3.3889333333333336,2.7406066666666664,1.452216,2.4012825,2.3224925,0.8066881818181819,1.6550375,3.78513,1.620396,3.1267666666666667,2.48524,2.7068,3.9415999999999998,1.6830666666666667,3.4529,3.0305,4.2331666666666665,1.253112,0.22435896551724138,1.2611214285714285,1.2611214285714285,1.0414355555555557,2.9394033333333334,3.8006666666666664,2.5032833333333335,2.1122633333333334,2.1122633333333334,2.16377,1.52553,0.9792059999999999,1.6793766666666665,1.6793766666666665,0.6566625,1.890418,2.798023333333333,3.267136666666667,2.29297,2.2084,2.2084,2.2084,1.0900788888888888,1.4762857142857142,1.4762857142857142,2.40469,2.8352,2.493462702020202,3.73388,2.4132366666666667,2.42979,3.67067,3.97572,6.3657725,3.486855,4.440245,3.927,13.429617499999999,4.799925,3.458675,1.0194075,3.823515,3.303285,2.33879,3.576075,4.990315,6.136615666666667,5.8091,0.4697894117647059,3.845655,2.92623,3.822175,2.43189,4.400885,4.32698,3.819085,8.213845,3.610575,3.706275,4.004695,3.253572727272727,7.976484358974359,3.190773333333333,2.6989133333333335,3.61056,3.873105,4.898525,3.88574,6.669271,3.30436,1.3836600000000001,2.96036,0.91643375,4.78261,2.488205,2.68912,3.89969,2.45653,2.51265,4.55651,3.82531,8.66528,3.928515,4.463155,2.4720299999999997,4.85207,2.967675,1.2893525,1.2893525,3.353795,3.802155,2.16262,2.19547,4.01019,2.70166,2.74041,1.926915,1.8556975,3.198245,2.53687,1.10125625,2.998995,4.8777,8.23611,1.504684,2.750365,3.111185,2.901435,2.8035433333333333,8.40874,4.158135,3.467,2.8163933333333335,4.07078,3.2012033333333334,2.8763199999999998,3.1656,3.75797,3.82281,4.385765,4.27331,0.4084326666666667,1.5285833333333334,2.284333333333333,1.75418,4.59014,3.50258,2.69444,2.215475,4.553915,3.752584,2.08036,2.158655,0.911378,2.12549,2.4011533333333333,2.4011533333333333,5.0584,1.926015,2.8882100000000004,2.284333333333333,2.03775,1.6193733333333336,3.12635,3.70429,4.87421,4.620075,5.0991,4.69764,2.738345,2.89946,2.10808,4.68586,5.3036449999999995,1.8913933333333333,2.8910733333333334,2.13626,2.1261433333333333,3.74116,2.23405,5.08745,3.79433,3.541975,4.328825,2.9154533333333332,3.598065,4.08466,2.2502066666666667,2.450626666666667,0.42187785714285714,3.7447666666666666,2.590263333333333,2.929125,6.1122,4.593645,5.633420833333333,1.8102225,1.5567783333333332,3.215445,5.06535,6.3482,5.9871,2.8409099999999996,2.203863333333333,3.37958,2.0798033333333334,4.65506,2.115936666666667,2.2706125,5.086,4.84186,4.211255,1.8410975,1.91409,1.032456,1.032456,1.180458,0.8884528571428572,0.65888,1.7147768571428572,4.342555,9.576644166666666,3.859395,4.314205,3.98995,5.9650075000000005,2.67371,1.69937,3.4309358333333333,2.85866,4.90201,2.2258533333333332,2.4742466666666667,2.7810166666666665,3.065746666666667,2.2655166666666666,3.1068166666666666,3.258853333333333,2.8583166666666666,3.3805333333333336,3.3195366666666666,2.7951333333333337,2.6900433333333336,3.0342866666666666,2.3589433333333334,3.02675,2.9586733333333335,2.883453333333333,3.2693999999999996,2.04054,5.62631580952381,3.0294133333333337,4.235984,3.2184000000000004,3.078773333333333,3.695133333333333,2.748836666666667,2.6718733333333335,2.9927499999999996,3.1731366666666667,3.371033333333333,3.07936,1.931255,2.6581966666666665,2.6342066666666666,2.764975,2.764975,3.2700366666666665,3.0404233333333335,2.4148733333333334,2.706296666666667,2.95337,4.1071,2.7657166666666666,2.66055,2.6574533333333332,2.85322,4.153513333333334,4.837035,1.5783533333333333,3.5252666666666665,3.7060666666666666,3.218804,3.2096199999999997,3.6292666666666666,3.3889666666666667,3.0153266666666667,3.417722,1.855518,2.754422,3.3472333333333335,3.3300133333333335,2.5140233333333333,2.3959,3.8219333333333334,2.90225,3.01395,2.3594225,1.136565,3.1920133333333336,2.6111866666666668,2.20534,2.32685,2.9587866666666667,3.0568066666666667,1.88825,5.60956,2.373396666666667,0.887293,4.39771,1.8372870833333335,1.6227716666666667,4.37211,3.593225,3.3145,2.326905,1.3187775,3.34079,2.647105,3.26857,0.380682,2.050685,0.380682,1.905145,1.3187775,2.59994,3.707435,2.0742725,3.39582,3.165465,0.4743306666666667,2.790703333333333,0.9496175,0.44508411764705885,3.662985,3.77394,4.847355,2.519925,5.2693,4.17158,3.765305,2.026465,4.0507333333333335,1.63327,5.1915,2.215525,4.35725,4.191775,2.94403,1.8632433333333334,2.009403333333333,1.3732816666666665,1.72434,0.8674375,0.8674375,4.487545,2.2153133333333335,5.9213933333333335,2.392925,2.21649,2.04126,2.3208157500000004,2.4468525,6.4297,4.6005725,2.15372,2.01481,2.3208157500000004,3.094795,4.16668325,2.53034125,5.535885,2.392925,3.35989,3.485145,3.001943333333333,5.62335,4.78152,1.91452,2.069645,2.317695,2.34946,4.80303,5.2623,1.9214425,3.704865,1.60628,1.585485,5.2492,9.994003333333334,1.9404700000000001,1.9863666666666668,2.5624566666666664,4.058915,3.950175,1.8441375,4.771735,4.54189,2.415135,38.92209509523809,2.8317933333333336,2.9169466666666666,0.40948,4.493226666666667,2.1152166666666665,0.9183733333333333,3.57955,3.69036,1.8285175,1.9132875,2.4060266666666665,3.73531,1.3859185714285716,3.2111333333333327,3.639725,4.673025,0.924539,4.732725,5.0489,4.76552,2.69898,1.602555,3.741695,4.519565,3.612985,3.157595,3.584125,3.981515,11.646181616161616,2.7028,3.102225,3.96011,2.829535,4.33363,3.238895,2.710215,2.92902,5.27975,4.5668,5.042,4.99295,2.42208,3.700005,4.379915,3.564885,4.705965,4.341135,0.1275576086956522,2.389585,5.39005,2.70292,1.8315833333333333,1.1755333333333333,1.1755333333333333,2.39967,2.7085,2.689025,2.17366,2.999356666666667,4.32678,2.548615,4.53069,0.5745164285714285,4.47278,3.45639,4.67643,4.548825,4.43246,1.18583875,1.0496925,4.403766666666667,2.9448166666666666,3.0848433333333336,3.8297757878787877,4.30452,6.0483725,5.3892,3.91843,3.5493,2.1075083333333335,1.4915283333333333,4.06564,0.30882133333333334,3.264805,3.74188,4.134575,14.227996666666666,1.77336625,3.2119966666666664,0.52539375,4.616735,8.82699,3.30532,1.8005566666666668,5.895,3.08018,1.0161255555555555,5.2513,2.78343,3.05465,4.58401,3.2686049444444447,0.99295625,6.541,0.7379525,5.1305,3.0152804444444445,1.33625,2.0682756111111114,3.191095,3.191095,3.91076,4.126153833333333,1.3357125,2.466035,2.82784,3.594745,3.462855,2.48382,3.412565,3.462145,6.8212486666666665,6.3573,3.879005,3.311055,4.456765,4.51298,3.62023,3.34828,3.471995,3.92122,4.536725,2.50683,2.56168,1.6366066666666665,2.29343,2.24824,1.52609,3.02518,3.6157,3.5543,3.2007733333333337,2.4578866666666666,1.5028933333333334,1.5247633333333335,0.48266272727272724,2.4932933333333334,1.6615428571428572,1.9371075,3.6199666666666666,2.4459066666666667,2.68317,1.00201,2.22862,2.63952,2.80278,3.524855,5.3012,3.864525,2.95826,2.2714666666666665,3.455335,4.464815,2.549895,3.273765,1.98627,3.90208,2.68749,3.89735,1.3046033333333333,0.644814,2.376705,3.2165,3.21686,3.915065,5.0331,9.132725,3.3291066666666667,2.3362066666666665,1.79364,1.7836580000000002,1.7836580000000002,2.924603333333333,2.4915266666666667,4.720325,4.639785,3.54626,4.865405,4.31536,4.311365,3.15756,4.052765,7.9261325000000005,2.5701,0.5014475,3.2586066666666667,1.2857066666666668,1.0107185714285714,2.10165,0.752507,2.0859075,5.54395,4.83586,5.930095,0.917795,7.62213,1.9607500000000002,1.5295116666666668,2.5667833333333334,3.96317,3.2929033333333333,2.3216325,3.785375,2.9769733333333335,4.256866666666666,2.83302,2.6963333333333335,2.961456666666667,6.455415,2.42823,3.855305,3.780425,3.5079291666666665,1.4580466666666665,1.131855,4.284255,2.7667066666666664,3.1407633333333336,5.21152,2.57277,2.088335,2.3470325,3.288705,3.7762,2.23853,3.8858475,2.96007,5.57095,2.381576,1.82406,4.70809,5.38035,4.311805,3.80885,1.5131266666666667,2.26231,1.81808,3.40106,1.6825933333333334,0.9341750000000001,2.7447525,2.21888,1.89368,4.39802,0.6666116666666667,5.6978325,1.4038325,0.7888427272727273,3.472633333333333,4.05832,0.6445285714285715,3.3310535000000003,3.218243125,0.83595,4.37571,0.1774607142857143,0.1774607142857143,0.1774607142857143,0.1774607142857143,0.1774607142857143,0.1774607142857143,1.978062,3.850655,1.978062,1.978062,1.8819533333333334,0.1774607142857143,0.1774607142857143,3.501666666666667,2.6867666666666667,3.73509,3.28288,2.22978,3.48138,1.30504,1.52367,3.248934,1.3867340000000001,2.532783333333333,2.5568442222222223,5.663263333333333,4.031985,3.9687,6.5739,4.38612,4.27484,3.741825,3.71387,7.307284583333334,3.9799,3.7904999999999998,2.2433733333333334,5.28835,2.6010566666666666,2.06463,1.7527166666666665,4.44723,5.4089,5.2013,5.14595,5.5767,4.258225,4.731165,0.6820781818181818,0.7081828571428571,0.7081828571428571,4.66605,2.25205,3.85408,1.0231528571428572,4.11876,1.4740857142857142,2.3478,2.6302600000000003,4.579666666666667,4.579666666666667,6.9298,4.603455,1.2995783333333333,9.205888333333334,2.80163,1.2459111111111112,5.08735,5.26175,3.53122,3.230915,2.74622,4.2246,0.8214333333333333,3.1982266666666668,3.18979,3.8467000000000002,3.1604500000000004,1.5453366666666666,1.4762733333333333,4.5784575,3.171326666666667,3.06488,3.4332666666666665,5.172935833333334,3.3940341666666667,0.788493,1.9140833333333334,3.8005999999999998,2.2209016666666668,3.7123666666666666,3.3448333333333333,3.0637000000000003,3.3159433333333332,2.9599433333333334,2.493516666666667,1.2988333333333333,3.1346666666666665,2.45296,3.408025,3.24691,3.80811,2.6970899999999998,3.2719833333333335,2.8559,1.566784,2.1729433333333334,2.5535961904761906,3.5341,1.7884239999999998,3.1746433333333335,1.7625166666666667,3.695066666666667,5.1931899999999995,4.985860000000001,2.4521125,2.57725,2.753125,2.4065975,1.6267285714285715,2.229975,3.1843796428571425,2.4132025,3.5032,2.769645,3.7189620000000003,3.100255,1.319888888888889,1.3161125,1.7484225,2.1341725,2.973936666666667,3.5607666666666664,5.01115,7.833625,2.76137,5.4535,3.623495,15.297644666666667,0.519755,11.0974175,0.8072744444444444,3.27604,3.25666,2.4735633333333333,3.002845,1.608052,1.48117,2.28136,1.249276,2.89943,1.8967366666666667,2.7597,2.19976,2.6400133333333335,1.5046366666666666,0.6009416666666666,3.206213333333333,2.47252,2.94685,1.0900788888888888,3.4821666666666666,0.7379675,0.35055000000000003,2.1575866666666665,4.62036,4.49302,4.37021,0.7536881818181819,4.042315,4.500825,1.076715,2.3478025,5.2501225,3.381455,3.572915,4.18555,3.789655,1.8947675,3.85585,2.6307566666666666,2.99986,3.55101,2.687865,2.742355,3.94577,3.282315,3.593275,2.205125,3.348,4.442575,1.3548966666666666,4.442555,2.2226425,4.18804,5.333196666666667,1.9117675,2.8423266666666667,2.9377033333333333,5.772941666666667,2.445613333333333,3.177625,4.9267,4.022566666666667,3.988955,1.8719633333333334,2.813275,4.451845,3.4983,3.65984,3.634866666666667,3.1088633333333333,2.8623499999999997,3.9312,3.1828299999999996,2.6535966666666666,2.73364,0.43598055555555554,2.3514275,2.127295,4.50521,4.720125,3.09906,2.70708,3.25395,7.725595,3.502985625,3.88246,2.79996,4.1399,3.00922,3.5691491666666666,2.746836666666667,2.1530225,2.7388166666666667,6.34475,4.66526,2.0299566666666666,3.423975,3.201065,2.673553333333333,4.615005333333333,1.71651,6.005233333333333,3.9075,4.834965,4.409285,6.51765,3.59571,6.743871666666666,3.76494,3.20541,0.6236571428571428,2.2402125,1.52611,2.9295266666666664,3.111075,4.12385,4.0305,5.1052,2.5337466666666666,4.652015,3.744066666666667,3.849133333333333,3.3684333333333334,4.64612,4.30826,4.50322,2.7544966666666664,5.651713333333333,4.5248,1.4766033333333333,5.27175,3.556685,2.84082,2.28596,2.2527833333333334,4.458052666666667,1.2517642857142857,2.3915366666666666,1.9418075,3.93998,4.15441,2.6259166666666665,3.3123966666666664,2.939092,2.3104466666666665,4.05369,1.305622,2.2448266666666665,2.2858933333333336,2.85223,2.5440166666666664,2.6112066666666665,2.71504,4.015245,2.912076666666667,2.7657366666666667,3.98057,2.266635,3.681065,3.54343,1.0270784848484849,1.0270784848484849,4.62629,2.7336466666666666,1.76006,1.340285,1.9657425,1.995265,1.260148,1.3686733333333334,0.633571,1.5968499999999999,1.4702933333333332,2.9982233333333332,2.223883333333333,1.7157666666666669,1.9459366666666666,2.2823966666666666,1.47015,1.76102,1.7526266666666668,2.5372,3.8536,2.854785,2.82325,2.569975,5.294275,2.7243,4.1584,3.8329858333333338,1.98572,4.04377,2.96235,1.900735,3.70965,1.8345425,2.94857,3.63364,1.8485125,4.45278,3.905565,4.037405,3.29421,0.7897799999999999,4.810885,3.988065,3.40478,4.03827,2.292656666666667,4.36678,4.80526,4.82741875,9.018126666666667,3.571585,4.24567,2.86975,3.657735,4.61657,2.10605,2.604085,3.970625,2.12754,5.89758,1.842372,2.67611,5.739185,2.82548,4.239802,1.2434514285714287,4.444085,4.402905,3.05457,4.89692,4.81984,6.40127,15.671380119047619,0.6280176470588235,1.0439644444444445,3.012453333333333,3.88486,3.377045,2.1672075,3.151045,4.14816,4.903425,2.575875,4.331645,1.7313333333333334,1.7313333333333334,5.19935,0.7625109090909091,1.699468,2.99384,3.95159,0.35657923076923076,1.9267233333333333,3.8477431666666666,1.1225116666666668,2.991403333333333,2.7189599999999996,2.909315,7.65157,2.5422533333333335,3.7726666666666664,1.94433,2.2818333333333336,3.80749,3.54178,3.31561,7.310746333333333,1.993105,2.810025,4.47905,6.61181,1.9612166666666668,2.273213333333333,2.5807866666666666,1.4211066666666667,2.490115,1.69366375,3.97501,3.26579,1.50858,1.832706,1.832706,2.9115566666666663,5.64605,4.061516666666667,3.847445,4.27649,4.489885,3.20034,3.780655,4.29607,3.57743,4.25294,3.9500525,4.422825,0.8657159999999999,0.370940625,5.2997,3.794455,2.53221,7.91733,1.5433000000000001,4.634266666666666,4.121055,0.35989333333333334,2.11401,1.3659533333333334,1.8697166666666665,2.073583333333333,5.34689,2.98871,3.278165,4.972182500000001,5.3219,4.647015,0.5807430769230769,1.93872,0.611695,5.738036666666667,1.434828,4.979375,1.928295,3.1545087499999998,3.12349,4.200755,4.100475,5.21595,0.8522,3.26349,3.878935,1.9529175,1.684985,3.723825,3.226885,3.56341,3.7809,5.431233333333333,4.491175,5.68245,2.7380833333333334,0.5632955555555555,3.3829999999999996,3.58946,0.5586361538461538,3.93136,3.806925,4.15117,3.579915,2.68364,4.978875,3.130465,2.901505,2.074165,3.915915,1.6143699999999999,3.45926,3.724365,0.57417,3.564205,3.83853,3.176965,3.647225,4.318395,2.774755,3.82396,0.607574,3.0324533333333332,3.636372222222222,4.597525,3.5698000000000003,2.551325,3.4293666666666667,2.551325,4.594715,3.10352,2.9570866666666666,1.5028966666666665,3.00215,1.8066,3.907,2.805453333333333,5.172153333333333,3.139696666666667,2.750833333333333,2.9812,2.2348617857142856,2.2348617857142856,2.2348617857142856,2.3106266666666664,1.1215566666666665,4.47188,2.4703833333333334,1.7802666666666667,4.1509,2.4696000000000002,2.9723400000000004,4.069625,5.635,3.41665,1.818455,1.092112,3.930265,1.9369399999999999,2.2114833333333332,2.84847,3.35946,2.03524,3.54699,2.71813,1.5712519999999999,4.86047,4.170485,3.95059,3.62262,0.7593611111111112,2.4258833333333336,4.403555,7.73278,3.98199,2.957755,3.162225,3.41119,3.849645,1.5783125,2.49637,4.66482,2.0769975,4.341835,3.040345,5.39185,8.440353333333334,4.124995,3.30585,3.150785,4.92669,3.98241,3.194325,3.194325,3.732045,3.8605866666666664,4.14088,3.86344,4.215155,4.41371,4.09076,1.135725,4.205495,4.244575,5.153,7.955745,4.970435,3.6416459999999997,1.7264799999999998,1.4781683333333333,2.41790875,4.803265,3.78631,4.90042,2.11793,4.373475,5.1666,5.19755,4.775665,2.9322933333333334,3.416145,4.09703,5.14035,4.462935,3.68391,6.502425,4.73799,2.21291,5.19295,3.9161,3.830405,3.78467,4.558555,0.7625172727272727,4.117165,4.32763,1.164794285714286,1.192336,4.807985,4.625365,8.846464000000001,4.94286,4.12913,5.7937,2.835615,2.5080733333333334,5.0539,1.6740025,1.6740025,2.71468,1.5707933333333333,2.8551433333333334,3.2292633333333334,1.9599925,4.124010454545455,1.3914866666666665,1.987115,5.569207499999999,3.3790066666666663,3.630885,3.13545,4.08583,3.923305,2.9036066666666667,0.9690177777777778,4.006515,3.037176666666667,3.87486,4.042065,3.714705,5.63355,4.938725,4.563475,3.514355,4.997155,6.47395,4.60842,3.278015,3.1854,1.7878475,1.7878475,3.88853,3.807085,2.4373066666666667,2.6624166666666667,2.0799436363636365,2.5607,1.7756699999999999,1.7756699999999999,4.26909,3.497935,2.018005,3.5273,2.69881,1.94991,1.234545,1.00622,2.708425,0.4440126315789474,0.86605,2.809275,3.930255,0.4415918181818182,3.99476,1.955564,5.3746,3.3848,7.363715,4.20568,5.18446,4.813235,5.3177,4.12392,2.01857,1.8699839999999999,3.55694,2.92382,3.7788,1.24196,3.175825,3.99589,2.75994,2.664565,2.537365,4.195605,3.39084,3.29215,3.851575,3.597205,3.49396,3.07005,1.0434171428571428,1.787495,2.38619,2.953925,4.343235,7.51496,0.93606,1.6130366666666667,1.6130366666666667,1.8333659999999998,3.77313,2.79693,2.95059,5.46608,2.8979733333333333,1.1683675,1.1683675,1.1683675,2.89788,2.978412,4.586355,3.19871,4.33754,3.273225,3.540975,3.12111,3.3290841666666666,3.65937,4.18808875,2.6352475,1.260148,2.626235,2.6352475,3.48228,1.1952566666666666,1.8412933333333334,1.8913,5.647164,2.70341,6.061824,5.647164,3.3584140000000002,1.728345,1.728345,2.536415,5.87522,1.728345,2.308985,5.54428,2.32761,2.532635,4.9452,3.531145,4.19341,1.9879666666666667,3.128665,4.10729,2.14338,2.22795,3.76374,1.9879666666666667,2.51188,1.932125,5.98274,2.59278,1.12587,2.49307,3.34763,3.354114,1.955125,2.095414,3.96188,1.894184,1.781055,3.08126,2.08932,3.06019,3.5391,2.15699,2.430305,2.175485,6.48785,2.47495,3.37218,3.20088,3.20088,8.520903333333333,1.1078033333333333,2.83036,2.147515,2.754005,2.320725,1.21025,1.21025,3.54689,1.90628,6.55127,2.20998,3.59963,3.11794,5.46721,2.51872,2.19237,5.7485,5.7485,2.516905,1.6322925,1.2922525,1.2922525,1.6322925,2.0320733333333334,1.3855933333333335,1.1858600000000001,1.56055,2.0717833333333333,3.861915,1.789545,3.19986,2.7912,2.670215,2.86609,2.89634,2.093475,3.2470825000000003,3.2470825000000003,5.96452,2.520455,2.841355,3.09823,3.287365,2.32558,2.85171,2.439105,5.2253825,1.9318225,1.6005639999999999,1.345749,2.337989,5.64138,4.211095666666667,3.6027716666666665,3.122815,1.83245,1.83245,1.83245,4.92266,2.414275,1.1858600000000001,3.311415,3.50231,1.2378175,5.06647,2.9716175,6.26955,3.45618,1.718255,3.475855,2.2721899999999997,2.187795,3.102465,4.18202,3.13718,1.514535,2.476835,2.88837,2.84871,5.24652,1.96802,3.357785,2.781985,5.77153,4.45019,1.814175,2.284005,4.98864,4.97475,5.35217,5.51437,1.064192,1.064192,2.2518469999999997,2.2518469999999997,0.6785319999999999,4.9595,3.42756,4.57882,3.88364,5.01817,2.04841,4.259058333333334,4.259058333333334,2.14713,3.355415,3.527975,1.215384,4.52095,3.17889,2.94857,2.41574,4.46814,2.21674,1.783415,3.220965,2.6459,2.907735,5.00089,2.52093,1.55043,3.621885,5.82051,5.50208,4.40544,2.473505,3.40154,2.0057,5.06481,2.44668,3.47827,1.909555,6.74746,3.79867,2.194395,2.73265,2.045735,4.45137,2.214595,2.73626,2.537785,6.59668,4.77154,3.292515,1.96524,2.416015,6.48943,2.881555,2.89603,5.24186,2.86816,2.769035,2.586015,2.94001,1.7728533333333332,2.03872,1.46959,1.6474900000000001,1.8278933333333331,1.87597,1.62061,2.0135833333333335,1.87839,1.7728533333333332,3.55483,4.16688,1.970735,1.6376249999999999,1.6376249999999999,3.4604266666666668,3.4604266666666668,3.0464466666666663,3.0464466666666663,2.891245,2.260525,1.774815,3.71078,2.14482,2.14482,2.2958675,2.2958675,3.18906,2.1083,4.39521,2.330485,3.380745,2.11081,2.11081,1.82674,4.23457,5.07289,1.1952566666666666,4.10739,2.15699,1.78881,4.18199,3.122245,1.828285,2.498785,7.09646,2.173705,5.6761,3.02271,3.35425,3.08752,2.38811,6.08707,3.12753,1.90336,2.45489,2.804015,5.8513,3.49116,1.523078,1.523078,3.4896,4.43569,4.61366,5.34993,2.76594,2.575975,1.49542,2.925505,1.541505,2.87162,1.78826,0.751884,0.751884,0.751884,1.8683675,4.88708,1.8683675,2.177065,3.6324300000000003,1.611865,1.990005,4.04393,3.56514,4.95156,1.5384533333333332,4.74729,1.5384533333333332,1.5384533333333332,2.35987,1.88263,2.18591,5.68595,2.18591,2.47219,3.89844,1.930375,1.75275,2.765865,2.98204,3.2832766666666666,3.1449433333333334,3.54878,1.3389033333333333,3.912935,0.7330518181818182,4.126875,4.266145,2.5424075000000004,2.5424075000000004,0.7070109090909091,3.9139,2.634743333333333,5.65815,4.86951,3.963105,5.47765,4.13611,4.09697,5.30895,4.6006,4.201075,3.690635,3.813275,4.968715,5.1011,3.386455,3.52674,4.11927,2.414356666666667,1.197466,4.29704,3.47364,3.257775,1.2093742857142857,3.737475,4.05696,6.234465,1.138615,5.29265,4.14061,1.98526,1.876825,3.11699,3.649435,1.58828,1.523078,3.994855,4.952405,2.63755,4.779595,3.154195,1.1193300000000002,2.869816666666667,1.2357157142857143,3.1538466666666665,1.8347733333333334,3.0093,1.8674125,2.67935,3.994455,3.02556,4.56382,3.21642,2.1838975,4.74954,4.04799,3.1012,5.16365,4.151495,2.66325,5.96555,4.862525,3.14635,2.6085333333333334,2.875165,2.9333766666666663,3.257683333333333,2.715476666666667,5.053,4.21395,3.847575,2.3013833333333333,2.5603233333333333,2.4317066666666665,2.20651,2.24829,2.3317466666666666,2.1753466666666665,2.2721925,1.231135,3.005011333333333,1.182275,1.765355,1.6875775,2.71845,1.5564275,1.7170175,3.797585,4.57018,1.9023375,3.95143,3.600365,6.3182,1.9912866666666666,1.6200040000000002,6.4452,3.370935,4.631355,4.099665,3.94648,2.048805,3.547255,2.3443325,2.927565,4.23701,0.6909025,3.967675,2.29765,0.7929963636363637,4.814185,4.29878,4.128565,1.82504,4.581845,5.99015,2.745036666666667,3.138393333333333,2.5668833333333336,2.2068933333333334,0.571727,3.07845,2.90405,4.678525,2.3300675,2.07535,3.41816,1.0194925,1.770435,1.770435,2.759025,1.770435,4.04419,2.70575,4.321575,4.458325,5.80165,13.235118333333334,3.0992033333333335,4.83208,2.61947,4.58412,2.99356,6.30734,2.9442733333333333,4.645485,4.891765,3.876365,1.1480483333333333,4.87473,3.2051433333333335,2.5764366666666665,1.02321,2.1281775,3.14786,6.92437,4.403325,2.82969,4.583895,3.1981800000000002,4.264535,4.11273,4.378375,2.872785,2.8278666666666665,3.882095,5.66355,2.69097,4.322345,1.639725,1.639725,3.153195,4.804645,1.175235,4.132270666666667,2.043035,4.651225,2.63197,2.56676,3.2476599999999998,2.32531,0.7219785714285714,3.456075,2.7336899999999997,5.4342,4.509025,0.22519625,4.87692,4.3023,4.093295,6.6552283333333335,2.8920433333333335,2.8545366666666667,2.0618633333333336,3.0661633333333334,2.6207766666666665,1.37945,2.86927,2.5525433333333334,1.3564116666666666,3.2991200000000003,3.018463333333333,2.5746866666666666,2.83812,1.2542466666666667,4.33457,2.829295,4.840105,3.77518,3.67619,1.56217,2.54061,1.225095,1.688785,1.225095,5.10045,3.3795333333333333,1.513182,2.425165,3.978125,3.73888,2.986205,3.91705,0.3478175,1.3258170833333334,3.883575,4.268945,6.3857,1.7517025,2.7733233333333334,3.02646,1.9288366666666665,2.806325,3.75905,4.788005,2.49179,2.2212733333333334,2.8341499999999997,2.589496666666667,2.65338,4.29477,2.113515,4.440205,3.823058333333333,6.28495,7.24209,0.7439977777777778,0.806099,3.90127,6.55313,2.10764,3.612665,1.2921933333333333,1.2921933333333333,3.61641,0.44576333333333334,3.524415,3.73923,2.60211,3.97028,3.18578,2.497735,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,2.57705,2.763925,3.5276916666666667,3.0469016666666664,5.029465,5.878380416666666,2.8876,2.0546533333333334,0.9484666666666667,3.47318,0.73567875,5.089390833333334,3.0347375000000003,2.27391,0.73567875,2.465765,2.79439,0.962445,3.86777875,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,4.16891,1.5415025,4.65075,4.537455,1.7610540000000001,4.775375,4.04011,5.1827,4.705688333333333,3.358118928571429,3.22034,4.437595,1.746305,5.57174,4.50795,0.7437142857142858,1.4410428571428573,1.3318242857142857,3.1159433333333335,3.1159433333333335,3.01488,3.82885,4.1235,3.68022,4.0646,2.929873333333333,2.0022433333333334,0.5400242857142857,4.14437,2.98063,2.735395,4.25346,3.22194,3.0137375,5.19445,4.47149,6.604865,4.25385,4.571235,5.7436,4.47095,1.2686814285714285,3.002795,5.241126666666666,33.06328079148629,1.2313333333333334,4.19746,3.06663,4.58954,3.94978,5.29725,4.788165,0.42934047619047616,5.44855,4.351135,1.8983525,2.05556,3.56797,1.6136125,2.54359,2.443445,1.70373,2.91636,2.4649533333333333,2.8047,2.62619,0.591306923076923,3.135185,3.76549,0.3612121052631579,2.55673,2.81849,3.30852,3.90224,1.784085,4.40388,3.898205,3.152335,3.47043,3.048805,4.136595,3.09215,3.73446,2.0909625,5.241126666666666,3.343085,3.357185,2.844295,1.7311039999999998,3.89485,3.707655,6.6441,3.435175,4.740865,5.8371775,5.1687009999999995,2.2878375,4.34556,5.7818575,7.745369999999999,2.55164,2.40172,4.8377,5.578423333333333,4.238835,3.27042,5.2339649999999995,2.772775,1.67051,2.2019975,60.30297440543761,5.19115,4.19765,2.554725,0.8369479999999999,2.6890666666666667,2.8653099999999996,3.4331,0.8078355555555556,4.227205,0.7986588888888888,7.361418928571429,1.9369399999999999,3.2453333333333334,1.7542300000000002,2.55238,2.50156,3.3790999999999998,2.42171,2.25427,3.3594666666666666,1.5389033333333335,5.365973333333334,3.9282333333333335,1.43774,3.0001866666666666,1.3631466666666665,1.5357875,7.40645,6.08865,3.31567,4.23527,5.129967499999999,1.406297142857143,3.4962,3.34591,1.6392475,5.85795,3.42636,3.69107,1.6567475,2.8943891666666666,3.461233333333333,4.03695,5.9061,4.71266,4.57427,2.523025,3.881485,4.5578,2.94511,1.43684,4.28607,3.3463999999999996,3.87259,4.997535,3.802385,3.71718,4.685555,4.43764,4.212335,4.539215,3.962245,3.0899033333333334,3.926935,4.107445,3.233245,4.126325,3.7439,1.553315,1.553315,4.138345,4.81869,5.02,3.36107,4.756455,3.3039066666666668,2.843505,4.95506,5.48755,0.7389754545454544,5.3094,6.4279150000000005,5.5801,5.58645,0.9727122222222222,3.20993,1.232815,1.232815,1.232815,3.747625,3.365,2.6622066666666666,3.3768,0.97584,4.98619,5.3066,3.0397,1.5816275,2.0548,3.95395,3.74385,4.34736,3.5172999999999996,6.791,3.552405,2.45098,4.67574,6.8189,2.380695,4.12779,3.76808,3.094285,5.52515,5.0322,5.02125,5.8139,2.942485,3.5623099999999996,1.9309566666666667,1.9309566666666667,0.7092727272727273,8.355278,2.04736,5.69295,5.64655,4.086285,5.785,3.81012,3.0107583333333334,4.669495,7.59204,5.643281666666667,2.6571433333333334,4.39284,0.9907030000000001,3.74385,1.9298033333333333,0.8887466666666666,1.223752857142857,2.5739266666666665,2.9316433333333336,2.890836666666667,1.0938271428571429,2.5846833333333334,2.98594,0.907711111111111,2.7818966666666665,3.13002,1.662678,1.830774,2.9052633333333335,2.9089566666666666,2.76994,2.4640299999999997,1.704826,5.32425,4.44649,3.88364,4.30833,5.1667,3.212415,4.46198,6.4995,5.0639,4.372035,3.87406,10.137276666666667,8.706865,3.0395133333333333,3.57705,1.9312333333333334,3.798255,3.3119,4.62178,1.0098583333333333,3.745805,3.47861,1.62327,4.054705,2.9520416666666667,4.33201,2.862415,3.95754,6.6765,7.79561,3.875125,1.4910833333333333,1.4910833333333333,1.4910833333333333,4.649025,1.14945,1.4748125,0.4540766666666667,4.357868333333333,2.9068133333333335,3.597265,0.964758,1.11048875,3.147555,4.177945,3.650185,16.464335976190476,4.247485,4.543785,6.0882325,2.666,3.255845,3.34693,0.9263811111111111,1.42589,3.808755,3.66886,4.44579,4.63535,4.36086,3.843415,2.68179,3.59169,5.19485,0.5391600000000001,4.571885,2.2665575,4.041075,4.688215,3.3773666666666666,2.492226666666667,3.993293333333333,1.9472733333333334,3.457825,6.05095,3.0978366666666663,3.700505,4.35181,4.134565,4.62676,3.8483,3.2966,4.58801,4.92202,4.67993,3.688325,4.502885,3.715165,1.1179471428571428,1.469705,6.050232333333333,6.19395,3.794055,4.79871,2.504275,2.8059266666666667,2.6971166666666666,5.630836666666667,1.840875,2.11979,2.8643666666666667,2.92511,3.29806,4.50849,3.02754,5.301753333333333,1.1501725,4.744185,0.9430166666666667,3.937305,3.34659,1.6926483333333335,4.239875,0.9771466666666667,5.06385,5.606,4.973565,3.796525,3.73207,3.80686,2.97057,5.11025,6.00755,2.826378,4.007835,2.405275,2.6329,1.966855,2.56585,3.13301,5.0442,1.04933625,4.4755875,1.3337875,3.327105,1.5901500000000002,1.04933625,0.18826702702702702,3.69303,2.92622,2.2532058333333334,1.9074499999999999,2.735845,1.1241475,3.846325,3.610445,4.80744,2.61423,6.0734,6.2911649999999995,2.6396866666666665,3.4636,2.5970733333333333,0.799482,2.3281,6.2124,4.192025,5.6238,4.842935,2.1637366666666664,1.2827333333333333,3.8381375,1.59939,2.182355,1.714215,2.572075,1.75522,1.938765,1.9791475,2.0676825,1.8810925,1.3142485714285714,1.349305,1.881345,1.8514675,2.20257,2.3862366666666666,0.5274953333333333,1.046926,2.924576666666667,3.311,1.926395,1.7983833333333334,1.52897,3.60632,2.217913333333333,2.53637,3.43789,5.3163,3.591885,3.07461,4.279505,1.5216221323529413,3.6435899999999997,23.2686575,4.60037,5.7657,4.16967,2.28549,3.763435,4.730505,2.23481,5.2236,3.27022,0.79541625,3.471675,4.495405,3.72451,4.15141,1.5265633333333335,1.9968733333333333,2.46124,2.35621,1.5462428571428573,3.3570333333333333,4.827515,4.12938,3.326855,4.04097,4.98574,3.260875,4.579725,1.221885,3.10031,4.09187,5.0252,1.87752,3.294086666666667,1.74359625,1.74359625,3.540465,5.05375,3.04919,3.0620066666666665,3.711325,3.900845,6.70852,4.80915,2.286445,1.42589,2.88838,4.295465,3.08652,2.633874603174603,2.633874603174603,3.255716666666667,5.0223,3.435835,4.996777222222222,2.285845,3.580975555555556,0.6399255555555556,0.6399255555555556,0.6399255555555556,3.13205,3.72743,3.7608233333333336,5.7491,2.0089975,4.39958,4.91258,4.990415,3.053375,5.26325,2.515995,1.29559,3.90813,3.894775,0.4676492857142857,4.126366666666667,4.75947,1.5123566666666666,5.07825,4.994655,4.4356,4.359945,3.79269,2.85033,4.281775,1.674766,4.311875,1.5870283333333333,4.414405,6.09395,1.16368625,3.21337,6.6495025000000005,3.631535,3.0052633333333336,2.131015,3.84608,5.75195,3.003573333333333,7.627725,4.187975,2.260693333333333,3.112823333333333,2.7046533333333334,2.436193333333333,2.82487,1.8920733333333333,4.51681,0.5563933333333334,2.0331675000000002,2.0331675000000002,3.108855,3.43348,2.2856725,2.87259,4.09379,5.3604,4.266495,1.3367833333333332,4.590813375,4.30014,4.723835,3.593925,4.0959365000000005,3.6325765,0.46336,2.967137142857143,1.05201125,0.46336,4.317225,0.8182355555555555,4.259805,4.01311,6.475422,2.2064833333333334,1.04448,1.108416,2.263995,2.8648366666666667,1.5754833333333333,2.4293633333333333,3.290875,3.27955,1.98342,2.263133333333333,4.340315,2.99733875,4.043575,5.9158,3.439605,5.186,6.534693333333333,4.590105,3.554975,4.54212,3.716165,4.37735,4.858745,5.65981,5.4487,2.3704566666666667,0.9490033333333332,3.50973,3.981395,3.985255,4.46095,4.177825,5.3365,2.492906666666667,2.536026666666667,3.0241399999999996,2.3251566666666665,1.9737366666666667,2.9002966666666663,3.15234,2.31291,3.658715,4.78388,4.12399,5.1994,2.520373333333333,3.543533333333333,2.84925,0.7254285714285714,3.990035,3.377595,4.20126,2.8903033333333332,5.106426666666667,3.1921,4.53593,3.833645,0.5779338461538461,0.5345378571428572,4.334735,2.806066,3.043145,4.524985,4.25986,1.6902180000000002,5.2873,4.08834,2.561246666666667,2.5994699999999997,2.2572125,2.1643229166666664,3.5112,3.07443,2.96362,2.9331533333333333,3.4492999999999996,2.5492,2.9441133333333336,3.7121666666666666,4.21188,0.55540875,0.55540875,0.55540875,3.2620704166666665,3.6436666666666664,3.5034666666666667,2.614176666666667,2.8535466666666665,1.135725,2.9450133333333333,2.999613333333333,1.7575175,2.634236666666667,2.4853866666666664,0.9477744444444445,2.7343583333333337,4.59309,9.66633025,1.529505,0.555844,3.788095,0.555844,0.555844,0.555844,0.555844,2.1932675,3.8929065,3.940175,4.76113,6.0634,2.773046666666667,2.676876666666667,3.0071725,3.2400933333333333,4.458205,1.0002083333333334,2.296116666666667,3.20809,2.487693333333333,2.9244866666666667,3.76196,2.2210466666666666,2.496975,1.1756555555555555,5.4864,2.886485,3.54104,0.8687575,0.632827,0.632827,0.8762330869565218,1.7449905869565216,0.8762330869565218,0.8762330869565218,0.30075608695652173,0.30075608695652173,0.8762330869565218,1.5141200000000001,2.4002433333333335,2.956545,3.0773499999999996,2.500506666666667,2.61936,3.2701733333333336,2.8510766666666663,4.64622,3.57139,1.889515,2.3307800000000003,1.81187,0.1803558413107511,0.1803558413107511,0.1803558413107511,0.1803558413107511,2.54836,2.4840633333333333,0.9651759999999999,5.0155,0.7799727272727274,1.638128,4.472915,5.1147,3.949885,3.13609,4.477155,3.487225,1.7568933333333332,1.18032,3.795275,4.56768,6.5684,2.352125,1.39219,1.9014566666666666,2.9327199999999998,1.4271066666666667,2.7338833333333334,2.8241866666666664,3.2565000000000004,4.26185,4.00465,2.98115,4.924645,2.47118,3.998195,5.2421,3.919955,4.18475,4.32873,5.31091,4.623964166666667,3.0039160000000003,4.978275,4.41501,6.7046,4.56033,4.557455,2.341035,2.93744,4.179955,4.84702,4.384025,4.01771,3.9134,4.094685,3.95475,2.4043466666666666,5.33765,3.539665,7.5678,6.1003,5.68425,4.9419,1.4627,0.962832,0.6487992307692309,1.7897539999999998,4.90593,5.45515,3.97679,1.6629740000000002,4.09955,2.90158,5.25875,5.49855,6.16984,4.22668,3.21789,1.6010940000000002,5.2735,3.943215,2.953745,1.76975,0.96637875,3.763005,3.226005,3.656975,3.544285,2.27626,4.444575,1.7056933333333333,2.9275066666666665,2.533775,4.496775,6.22265,4.85393,2.2879725,1.44175,5.64535,2.867226666666667,8.46867,2.88045,5.2513,5.95295,4.48191,5.43035,3.59427,5.04895,2.1947275,3.86736,4.95505,2.4709075,4.105465,4.41497,7.22719,5.0066,3.1560166666666665,4.0142,3.853065,2.99733875,3.421635,5.1893,5.70015,2.3691825,2.9672466666666666,3.380266666666667,2.109635,2.582255,4.161115,5.646,4.956115,4.56543,4.91779,4.218855,4.642695,0.6855438461538461,3.1000666666666667,1.2242257142857143,31.32843451293996,2.445285,4.492775,3.129775,4.4919,1.599572,2.4208066666666666,3.042107738095238,1.546690238095238,1.546690238095238,1.546690238095238,1.546690238095238,1.4954175,3.32705,0.3040833333333333,7.699963888888889,0.3040833333333333,3.952155,4.946945,1.96757,5.25495,2.910325,3.8949173333333333,2.3355166666666665,2.3042700000000003,2.7624166666666667,2.1145333333333336,0.6092138461538462,2.6582033333333333,0.7540616666666667,3.4314666666666667,2.1382733333333332,2.486092,1.2147283333333332,2.486092,6.30165,8.01928,4.323735,4.23486,5.82735,6.2164,7.387486666666667,3.141255,1.510835,1.510835,2.3420433333333333,5.03925,3.801615,4.43234,6.10142,3.81855,2.76048,3.781035,3.411455,3.49521,2.14403,0.618438,2.21227,3.665385,4.161195,5.102003333333333,2.1006525,3.49849,1.211854,3.183765,1.288774,3.4078,3.0201266666666666,3.02182,3.5027000000000004,2.9819999999999998,4.817615,0.6708107692307692,3.476235,3.5688666666666666,2.5811466666666667,2.449263333333333,4.183551875,3.3859999999999997,2.08887,4.376693749999999,3.638325,5.16685,4.144795,3.575405,5.7681,5.05255,2.06619,5.57555,2.379452666666667,1.7373333333333332,3.1227933333333335,2.445536666666667,2.86183,2.486405,1.8982,3.4602158636363636,4.248595,3.38266125,2.3328876666666667,2.3328876666666667,2.52629,4.081925,4.013115,0.66331,3.256935,3.13774,8.73139,0.8431954545454545,4.386615,3.31063,5.503,3.70771,3.726465,2.20808,3.925335,2.785455,5.30385,2.6289783333333334,3.82191,2.7005466666666664,3.721635,2.66522,3.579775,3.781375,3.94621,5.309977,3.28479,2.034635,5.16925,2.6075866666666667,4.503145,4.75833,4.697085,4.449035,3.9629,2.89053,2.202856666666667,2.9217600000000004,2.61017,2.67975,3.278223333333333,2.7324659523809522,4.949956666666667,2.9609799999999997,2.47126,6.366346666666667,4.918665,3.6629899999999997,3.0558533333333333,3.7542666666666666,3.991945,3.57176,1.897725,3.69878,4.653905,4.8141,1.370645,3.525285,2.59667,6.65259,4.706055,8.833383333333334,4.060085,3.84262,2.149175,4.22908,5.5213875,7.54328,4.09402,5.53525,3.67937,3.39932,3.77664,1.71651,4.107343,1.4010883333333333,3.40773,4.70907,3.4368,0.835725,9.133771666666666,1.205688888888889,1.95423,2.4366866666666667,1.9225866666666667,3.441333333333333,1.4043666666666665,3.50219,3.837065,2.4115966666666666,4.24656,1.0944366666666667,3.98876,1.3992933333333333,2.8898206666666666,3.89164,4.687815,1.3851475,5.9040791666666665,2.2973356666666667,7.93221,4.32125,2.72995,3.952235,3.396725,1.1489858333333334,7.33799,3.01078,3.353355,2.356,4.17581,2.091155,3.0591475,2.29825,4.01536,1.4040575,5.85445,2.63722,4.123675,0.801201,1.9058316666666666,3.77027,4.73731,5.19058375,1.483938,1.483938,5.82405,3.83008,5.97145,3.80029,3.550585,9.2305,4.37255,5.5602,4.063895,2.481685,2.060494000768049,0.3685845,0.19364354838709677,0.6128035483870967,1.0791059523809525,0.6525278341013825,0.19364354838709677,1.259087,0.41916,1.4476904523809524,1.8718905483870967,1.82316,2.2475075,2.28311,5.0418,6.189356666666667,4.642405,4.97929,4.216015,4.907655,1.19152,4.82092,3.818045,5.4364,4.91547,5.0422,5.21395,5.80125,5.4232,1.1839533333333334,1.2384671428571428,1.894108,5.80577,1.31599,5.3893,4.627575,6.852261666666667,4.74764,5.31005,4.401215,4.49449,2.4292025,5.29135,5.25115,4.580751666666666,4.915675,5.951785833333334,5.50575,3.751565,4.25244,3.630133333333333,0.934403,3.573566666666667,4.204665,1.14116625,3.5902666666666665,4.43581,4.3842550000000005,4.970375,2.4503425,3.34332,2.711843333333333,4.458515,2.1412625,3.80262,1.2620683333333333,3.123005,3.614115,3.59262,4.865075,3.3296158333333334,0.5875483333333333,6.00925,1.00435,3.60166,2.9493766666666663,3.760735,1.9396000000000002,3.9015,3.8078061538461543,3.1545966666666665,4.299995,15.721931761904763,5.450576666666667,2.18832,8.2565,1.40421,3.722735,3.0191433333333335,2.83372,1.96204,0.22291347826086957,2.8248266666666666,4.35096,1.6986640000000002,2.197756666666667,3.1369366666666667,1.793145,2.2624366666666664,1.5529285714285714,3.327975,4.684645,4.962685,3.2414,0.5016442857142857,2.3775066666666667,4.641875,2.884375,3.64314,4.452255,4.24438,5.51295,0.4773994117647059,2.534126666666667,2.534126666666667,5.1252,5.11555,4.64803,2.650225,3.4943666666666666,2.8682933333333334,5.1262,3.45079,5.244435,4.451725,4.2943,5.0655,2.6159,1.9348120000000002,4.44564,3.85965,3.98298,3.18094,1.817934,5.2839,4.454445,3.77197,4.31038,3.80119,3.847905,0.61819,3.0563,0.5734775,3.0506533333333334,3.282425,3.988475,17.50562142857143,3.52397,3.751615,2.2721899999999997,0.99222,2.2628833333333334,2.6125633333333336,1.583018,2.296425,2.48578,4.615225,2.1875733333333334,3.86072,4.16552,2.0300525,4.390655,2.9717466666666668,4.52671,4.572285,5.3312,1.500355,1.6934,2.536265,4.838375,4.70921,1.1619666666666668,5.349,3.73718,5.59995,4.732205,1.60987,4.542905,3.59565,3.39471,3.83662,3.97109,3.2262033333333338,0.54970125,7.431514999999999,1.485104,0.20072555555555555,0.20072555555555555,0.20072555555555555,4.660525,3.883035,2.7608833333333336,4.146965,2.74657,4.526895,4.433172857142857,3.9998066666666667,8.457650000000001,3.994335,6.546525,0.8757225,0.7301275,2.2776825,4.32825,4.19886,2.19524,5.3494,5.43825,3.442335,3.251815,4.262665,2.2465766666666664,4.740835,4.609508,2.2451233333333334,2.93503,2.9318500000000003,2.637585,6.0269,3.76006,0.6581771428571429,3.57502,3.149705,4.102475,4.80092,5.0775,2.80637,5.52985,3.608345,13.444799375,4.56721,6.83588475,2.3655033333333333,6.285337,4.198165,3.96583,1.9845125,2.2080295833333334,9.5462,2.1826433333333335,4.344133333333334,4.1704,3.7943,3.567133333333333,2.81357,2.071905,2.1962375,3.0639066666666666,1.778018,3.9600000000000004,2.2654566666666667,2.678043333333333,3.4059333333333335,3.4969333333333332,2.4379999999999997,2.4379999999999997,2.476173333333333,3.5218666666666665,3.3401,2.1978033333333333,3.1905466666666666,4.245933333333333,2.7156599999999997,2.7567266666666668,3.7971333333333335,2.2998966666666667,2.0120875,3.9972,2.9048433333333334,1.5445499999999999,3.7769,2.37254,2.3098633333333334,2.851793333333333,2.198135,3.343,5.581646666666667,2.27893,3.7424999999999997,1.7701366666666667,10.227296333333333,1.9715566666666666,1.85895,2.0864000000000003,1.0414355555555557,1.565988,4.316873333333334,2.683638,2.683638,1.61593,1.46648,3.6368533333333333,3.677103333333333,2.306763333333333,1.4966949999999999,1.688946,4.727442666666667,3.680733333333333,4.040233333333333,8.348866666666666,2.8433957142857142,2.7208633333333334,3.144151801242236,4.335233333333333,2.0120875,3.2613533333333335,2.7050433333333337,3.488766666666667,3.3436316666666666,0.840795,3.1776560000000003,2.7939433333333334,2.7864400000000002,3.90945,3.23157,0.6888772727272727,1.931227380952381,5.1809,2.5559035000000003,3.3645666666666667,1.6766166666666666,1.6766166666666666,2.038725,3.851026666666667,0.863406,2.15569,4.22263,4.22263,0.6534380952380953,5.777506,3.530055,3.789375,4.645215,1.1823700000000001,3.203583333333333,3.516,4.9633883333333335,4.859764,1.8670200000000001,0.659046,2.31451,2.52611,2.8712093333333333,2.1641333333333335,2.34937,2.93596,2.296625,2.53702,0.7743718181818182,4.66333,4.941890285714285,1.2797516666666666,1.7757142857142856,5.48495,2.10009,1.51888,3.922075,1.572628,3.60366,2.685625,3.5622666666666665,9.05555,4.564713333333334,4.356455,5.1719,2.298721272727273,0.8069940000000001,1.9886320000000002,6.841946666666667,1.8203966666666667,4.249195,3.814525,3.674325,20.89471041666667,3.2009233333333333,1.3795400000000002,1.09387125,3.09073,1.5337266666666667,4.239802,5.035,3.1590805,3.4166000000000003,0.9663400000000001,1.48301,2.75194,0.56628,3.4255333333333335,3.726566666666667,2.9976833333333333,2.4964833333333334,2.6330966666666664,2.830626666666667,2.040036666666667,2.8583166666666666,1.593576,3.7692666666666668,1.4246416666666668,3.88581,3.91044,2.6333366666666667,5.38115,3.15888,4.011595,4.9744,4.469095,3.095083333333333,2.981973333333333,2.2774300000000003,1.1002257142857144,1.1002257142857144,1.1002257142857144,2.3813375,3.576366666666667,2.616076666666667,2.4866366666666666,2.157156666666667,1.972905,3.355,5.27985,3.767995,6.511035,3.187325,2.385915,1.810525,0.9810633333333333,2.4206066666666666,3.910925,2.56422,2.58134,2.40798,2.4151966666666667,2.506,2.8146133333333334,2.69396,2.72142,2.1798466666666667,3.3889666666666667,2.0819,2.222875,1.59953,1.77283,3.0180866666666666,3.0467566666666666,1.974105,3.83031,5.1072,2.948536666666667,2.4564765384615384,6.063106666666666,4.08889,4.65768,5.5258,4.44878,4.31519,6.090882499999999,1.19207375,4.149515,2.606315,5.2103,5.01885,3.840305,3.36563,2.23467,7.62727,2.308135,0.81076,7.53335,5.44454,5.753614523809524,4.543275,2.91983225,1.6796625,5.0217,4.15867,4.341265,5.10255,2.56833,4.148,4.346545,1.81187,3.864725,2.849375,1.4083566666666665,4.480585,0.6132,4.0594383333333335,3.318595,4.5772,2.946095,1.71461,3.444655,1.910165,1.484225,2.8268066666666667,3.2203466666666665,3.2973700000000004,7.321682692307693,1.5780825,6.454246250000001,9.777925,5.844575,3.10798,1.3400642857142857,2.79284,1.3400642857142857,2.8036066666666666,2.119756666666667,0.32006999999999997,1.1601525,0.32006999999999997,0.32006999999999997,0.32006999999999997,1.1601525,1.1601525,0.32006999999999997,0.8400825,4.14303,3.39562,3.18797,3.213805,3.540095,4.18863,2.888758333333333,1.626016,6.517786666666666,3.23273,4.051075,2.69496,1.0279909090909092,1.201545,4.40081,3.636965,1.162588888888889,1.44682,0.7247781818181818,2.988124090909091,4.269405,5.1006,3.4514666666666667,5.271680833333333,0.5511815384615384,4.101575,3.045325,2.79011,2.5000666666666667,3.5939,2.4476166666666668,2.9609633333333334,2.6708866666666666,3.10133,3.653795,4.758155,4.52075,2.12094,4.919995,4.265065,3.07458,3.963975,3.4325,0.3208326666666667,4.93291,3.49821,3.087395,2.996468,4.194665,3.954455,1.889005,3.1996,3.92776,8.15836,5.08825,5.4688,4.54842,4.2842025,1.0795275,2.18862,2.27275,1.27858,1.8819533333333334,4.64509,5.4774,4.031235,4.980305,3.5172999999999996,2.6294,0.9527233333333333,3.826775,1.222035,1.107375,3.31755,3.45163,4.5295,1.28765,2.57965,8.82375,3.251416666666667,2.8985933333333334,0.8533,3.56766,12.170946666666667,3.365925,4.15209,3.12579,2.91859,4.63808,4.997285,2.0311,4.28185,0.5631538461538461,4.659655,2.1692975,1.7179875,1.7179875,3.4776000000000002,4.10842,1.52508,3.597795,1.185247142857143,3.549145,2.6342258333333333,3.389533333333333,4.90938,3.473675,3.7957419999999997,2.6045,2.6603895,2.6603895,11.25136,0.695484,3.0283,3.18774,2.1124125,1.9545325,0.8583628571428571,1.3848675,1.1003014285714285,2.09626,4.580155,2.47647,4.1390400000000005,2.0103033333333333,4.10471,3.824775,1.7192833333333333,1.9693025,1.0357016666666665,6.058429666666667,2.06875,2.14136,1.63327,1.815868,1.09387125,2.507892916666667,3.557235,1.9603933333333332,3.0562666666666662,2.5339199999999997,2.72826,1.7275133333333335,3.1251266666666666,2.609453333333333,2.11649,1.7880466666666666,2.680353333333333,2.63188,2.4153466666666668,1.15561,2.4697733333333334,2.1349666666666667,2.5544,0.3041278947368421,0.41271416666666666,2.32749,2.1223533333333333,3.246625,3.108406666666667,2.796645,4.76657,5.47135,4.283585,4.67994,4.255035,3.836485,2.99706,3.766055,0.8003990909090909,0.06982886363636363,6.97005,0.06982886363636363,3.38851,2.83506,4.96174,3.49551,6.37195,4.616675,2.0750966666666666,2.5245433333333334,1.0179916666666666,5.05815,6.15365,3.5427999999999997,5.3148,1.7273925,3.718555,1.8266785869565219,3.071873333333333,3.1634499999999997,4.05878,4.942241666666667,3.25157,2.352116666666667,2.352116666666667,4.11058,7.36483,3.324935,2.1204199999999997,2.406006666666667,4.35245,3.18657,4.7619,3.302945,1.0005755555555556,4.01613,2.4812499999999997,2.58532,4.16865,1.126325,2.3455133333333333,3.94335,3.511015,4.78891,3.0403,2.816265,3.88495,3.88054,4.14668,4.83707,3.987945,3.228341388888889,3.75573,2.7612633333333334,2.6936033333333333,2.5463466666666665,4.026033333333333,4.10126,3.008513333333333,5.0323025,4.321235,3.73077,5.1414,4.24032,3.472225,1.403926,1.33074,4.012115,3.4537333333333335,1.5752233333333334,2.7480100000000003,3.20552,3.1337233333333336,4.002143333333333,3.0992933333333332,2.3556083333333335,12.43577461111111,2.326913333333333,1.8306080000000002,4.33447,1.01881,3.1706800000000004,3.5476,4.56552,3.045605,1.220488888888889,2.2702666666666667,2.61423,1.50299,4.296975,0.9367875,0.9367875,3.365,1.3975433333333334,1.9674566666666669,1.666265,2.964715,5.0851,2.03417,2.62467,3.4602816666666665,2.6088566666666666,2.7289499999999998,1.9493500000000001,6.26415,5.44585,3.763575,0.6567476923076924,3.87205,3.39836,1.0908454545454545,5.54905,3.4370666666666665,8.584766666666667,4.908605,4.68414,3.555845,1.3695975,3.1459,4.637835,4.473005,3.758535,3.19863,4.37211,3.3083,3.467166666666667,3.467166666666667,4.128555,2.7044333333333332,4.01548,1.930595,5.341975833333333,5.156551666666666,1.5123566666666666,4.553055,1.0141,5.51725,3.89468,4.91198,4.61389,4.186575,2.712865,2.506025,4.11715,4.157555,4.942925,3.952475,1.75938,1.353624,4.390795,2.008106666666667,5.28315,2.94694,3.534725,7.4137200000000005,4.10817,4.42422,4.921635,3.689695,4.410095,8.543565000000001,4.23881,3.222645,8.99454,3.56104,0.5927164285714286,2.058436855921856,4.413015,0.5829679999999999,4.66549,4.16951,4.5039,4.382295,3.277015,3.70081,4.419405,4.87068,2.922375,0.7133964285714286,4.62601,4.23223,4.47129,4.285625,2.8015033333333332,4.474945,3.53981,0.6974980000000001,3.36091,4.191885,2.528425,3.2128866666666664,3.97909,2.2235033333333334,5.59085,5.26825,3.8293600000000003,3.171193333333333,5.406257500000001,5.406257500000001,8.454783333333333,2.06094,0.83324,0.83324,23.357545,2.514,7.513643333333333,0.35989333333333334,1.3659533333333334,3.0313466666666664,0.9444440000000001,3.657775,3.68451,2.098695,2.098695,4.06954,4.93849,3.569055,2.733156666666667,2.733156666666667,3.51106,4.05978,3.5499,3.5523000000000002,1.9731533333333333,2.5444291666666663,3.9102469999999996,2.100795,3.45316,2.7970366666666666,2.824329642857143,2.824329642857143,3.2221933333333332,0.8542788888888889,2.5233066666666666,1.4325966666666667,3.16464,2.7249199999999996,2.8480733333333332,2.399176666666667,4.54656,2.38777,2.9736100000000003,5.4009409999999995,1.265458,2.15597,3.03116,2.5561133333333332,4.12548,5.687198619047618,1.3680833333333335,3.6635000000000004,2.3596575,5.22136,6.21481,1.3543175,5.05673,4.874726666666667,3.2113931428571427,4.567833333333334,1.0128785714285715,1.87752,2.84069,3.8791180952380957,1.3255533333333334,2.406575,1.78089,1.801354,2.113435,3.6620179999999998,5.2436454999999995,1.1168383333333334,1.3185042857142857,2.883453333333333,12.99305,4.45619,2.5878799999999997,1.1439357142857143,2.5295509523809523,1.0148442857142856,3.2184000000000004,3.8976733333333335,4.823695,3.3746666666666667,5.38105,1.448085,3.695133333333333,4.168755,2.748836666666667,3.774018888888889,1.7131766666666666,1.1021455555555555,2.50595,2.986423333333333,6.747549999999999,2.7779055714285716,2.4879533333333335,0.7080460000000001,4.634266666666666,3.5027666666666666,1.225878,5.518365833333333,2.0041325,2.3423066666666665,5.3704,1.2363888888888888,2.9296133333333336,0.9970545454545454,2.8376900000000003,4.168725,2.7850533333333334,3.022726666666667,2.205366666666667,2.54288,4.277495,4.535165,5.17075,1.7520375,4.447785,3.91019,4.110919999999999,3.218804,2.6808933333333336,3.968120666666667,0.986224,2.756750476190476,4.48298,2.76125,3.9679120833333332,1.3059875,3.0153266666666667,1.96889,1.96889,7.527995,3.0851433333333333,4.910652499999999,3.3115500000000004,1.70454,2.6993252380952377,4.385863333333333,5.43,8.513601666666666,4.643865666666667,2.6399992500000002,1.7954933333333332,1.9599924999999998,4.2152666666666665,3.751045,1.436214,1.9215075,2.253100714285714,1.0450825,3.0568066666666667,18.509108333333334,2.93913,3.0059733333333334,2.8336900000000003,2.8340333333333336,2.3735666666666666,1.9478733333333331,2.96227,3.5780999999999996,2.48327,2.5631933333333334,5.60956,2.373396666666667,4.638561428571428,2.8977334285714287,2.4947814285714287,1.3745433333333335,3.669278888888889,2.0975275,3.90801,4.98248,3.74785,3.25192,3.09761,2.2038766666666665,3.4795,3.5531666666666664,3.3770333333333333,3.3057366666666668,0.834870909090909,5.36745,2.40177,3.0266333333333333,2.6195505555555556,1.8380675,2.0093320833333332,2.0093320833333332,3.16124875,1.8158154166666667,4.698635,4.2699,3.38095,4.215115,4.76665,4.5066475,4.5066475,3.870485,2.9317966666666666,4.600955,2.72077,1.616476,2.4323099999999998,4.40264,4.02478,2.82755,3.445425,5.3257674999999995,3.6389333333333336,6.186349571428572,2.837105,0.861538,0.861538,3.358015,4.929135,3.801825,3.417722,2.4758,1.8162200000000002,1.5657066666666666,2.8652533333333334,5.80445,1.4767266666666667,4.422105,3.6229666666666667,3.87914,5.0518,4.92418,4.753867458333334,3.255713333333333,2.276745,4.336765,4.15176,2.023405,1.0980219999999998,3.83803,2.705925,6.349958333333333,3.6440333333333332,2.640755,3.225445,3.595555,3.489195,4.601475,2.995285,4.477415,3.65894,4.25249,3.839085,3.624075,3.62101,4.08436,2.6541166666666665,4.158385,3.01331,5.31075,0.5841533333333334,2.415045,1.853255,2.198645,1.89084,2.63041,2.5861733333333334,1.8153166666666667,4.44033,5.19842,1.8718666666666666,3.89639,4.28496,2.4201025,6.104578333333333,3.9472091666666667,4.28798,4.884365,7.082995,1.9669133333333333,2.66477,1.81423,2.7974533333333333,1.775655,1.741975,4.05859,3.737245,5.3117,1.0263977777777777,3.1185,4.13245,2.2816325,5.0532,3.63064,2.60354,3.6712666666666665,3.4646,2.14558,1.8714595,2.77595,3.284875,3.39685,2.050095,2.1328057142857144,2.1328057142857144,3.607425,3.48545,20.55487869047619,1.01821,5.445703333333333,1.80087,1.9759533333333332,3.77604,3.5176,1.8078675,3.749535,4.519175,1.18435,1.18435,1.1423966666666667,1.7598033333333334,2.2055233333333333,3.11448,4.586971666666667,3.27632,3.4623333333333335,0.4770336842105263,3.3702070175438594,1.99412,2.104655,4.3747975,3.347705,3.914225,3.31858,4.48968,4.584295,2.0349,3.795075,5.578423333333333,2.373075,3.47832,5.08815,2.2762,4.894105,6.37215,1.4725714285714286,1.982716,3.450533333333333,0.6414428571428571,3.2535933333333333,3.327635,4.92333,4.854725,2.833026388888889,7.747565,2.98849,2.838373333333333,0.44508411764705885,4.128225,5.1993925,3.0779183333333333,5.3663,3.748875,2.4544435555555557,1.6941,5.29475075,4.27492,4.15428,2.98525,1.9683025,3.632775,4.152666666666667,2.8089600000000003,1.9561125,4.193769166666667,5.9138825,2.60013,3.81043,3.41821,3.958115,1.6132285714285715,1.6132285714285715,3.1797233333333335,2.9030966666666664,4.41248,4.57057,6.6692,3.31884,2.828,2.1665625,1.5263233333333333,1.3642271428571429,4.933665,5.427605,5.06235,5.91455,4.410545,6.4184175,3.37659,2.7700866666666664,3.99615,2.1231766666666667,3.017379,1.6101500000000002,4.31006,2.27306,3.822465,4.934785,4.07782,2.6979933333333332,2.867226666666667,1.30504,2.43979,3.604033333333333,1.79963,0.606749375,3.0789733333333333,2.5462933333333333,2.31291,2.31202,2.0550275,1.7268940000000002,0.6979081818181818,0.6979081818181818,3.5582666666666665,1.56436,2.314165,3.24141,5.7577,4.072565,6.2726,4.322205,4.37976,2.0411433333333333,1.1777666666666666,2.38044,4.587405,0.930115,3.2463100000000003,2.949735,2.905175,2.191385,4.078905,2.91641,1.9830633333333332,1.065332857142857,3.18189,8.87481,3.41543,1.5597625,4.30305,3.29839,2.64463,3.38184,2.85438,1.7887533333333332,1.0216375,3.807485,2.4250708333333333,2.1406466666666666,1.6395966666666668,2.2449566666666665,2.2445733333333333,2.3492266666666666,2.876385,1.2645266666666666,1.7818466666666666,1.0563525,6.4305575,5.8099,5.85575,3.99183,4.5225,2.950113333333333,1.5941376068376067,4.65306,5.0428,2.426985,4.917185,2.02706,4.59399,0.976098888888889,3.956015,4.037265,1.875825,7.75565,3.6405,1.832735,1.8436175,1.8289075,2.5323,3.4300333333333337,1.220722987012987,2.97879,5.794,3.373365,4.02629,5.50745,5.51065,5.79965,0.895035,4.11503,4.375785,4.216595,4.827215,3.9945283333333332,4.634905,4.5038,2.974425,1.8315833333333333,1.8315833333333333,5.05055,5.89643,3.78429,2.6501233333333336,3.81955,4.727325,1.492972,3.92151,5.18175,3.48807,3.99161,2.8153066666666664,2.773566666666667,4.8941,2.403583375,10.66079359336252,1.90141,0.71113,2.6364433333333332,1.71155,2.608575,2.1036475,1.915166,2.71101,4.711335,5.4348,2.8495500000000002,1.6365183333333333,6.270478214285714,1.5167714285714287,2.8483133333333335,0.5284095238095239,3.966826666666667,5.5062,3.438335,4.383785,11.420425,5.3041,3.0610466666666665,3.5098000000000003,4.24536,3.0027399999999997,4.633555,0.83964875,1.1258933333333332,0.8090881818181818,5.5715,4.324185,1.822492,4.792361333333334,4.26858,6.73305,4.73391,4.77876,4.210395,5.88925,3.845955,5.11275,2.914465,1.220538,3.698065,5.4276,2.81652,4.119005,2.568695,2.894495,1.22926,5.1445,4.01779,1.2769875,3.313833333333333,2.909406666666667,2.5806366666666665,2.5221933333333335,2.4480933333333335,3.2333233333333333,0.71604,2.4580366666666666,2.60803,2.6072466666666667,1.9179599999999999,2.7690300000000003,1.85997,1.4216766666666667,2.293,2.0326625,2.062105,3.3760999999999997,2.8668666666666667,0.676905,2.7486633333333335,3.04305,4.43522,2.3030066666666666,3.63509,5.6114,4.87935,3.33339,3.86316,1.3318242857142857,3.190525,2.464358333333333,4.212935,2.66079875,4.843995,5.41385,4.57307,4.28783,4.197966666666667,1.005838,1.005838,2.1999242307692306,1.603265,3.96331,2.6231715,2.6231715,4.93449,6.33805,3.0425,1.1881783333333333,1.5533428571428571,5.9225,3.36804,2.2853933333333334,3.179535,2.671425,3.19029,2.2853933333333334,4.4091925,3.14544,2.9979529166666663,2.78068,2.051685,2.982165,6.70545,3.47541,4.855065,4.65964,6.68005,6.6365,6.671175,6.671175,5.6704,4.815525,0.55111,5.30755,4.184425,3.050645,2.75913,8.123216666666668,2.67857,4.120875,3.59047,2.617363333333333,4.431785,2.266875,3.2645575,3.127273333333333,3.449533333333333,2.6476933333333332,1.341324,1.341324,3.716185,3.82,4.739215,1.7551359999999998,1.361224,47.232967083333335,2.5749033333333333,0.8453299999999999,3.1450566666666666,1.81447,3.30958,2.843593333333333,3.04395,2.97649,2.7172066666666663,2.01092,1.00061125,4.435465,3.208475,3.49493,3.74119,5.1333,5.0247,4.971015,5.1515,5.28675,4.59765,5.44215,6.1536575000000004,4.99319,5.4009,2.036685,3.92945,6.6943,5.21635,3.39115,3.815235,3.88705,2.5161,3.886485,4.58623,2.9077033333333335,4.0563,1.6250399999999998,4.81883,1.305622,3.29238,3.90598,3.600455,6.1053275,3.773125,1.95138,4.090635,3.9217,3.85186,0.8937125,2.839065,2.926795,4.446469523809524,1.129255,4.425485,1.3750025,5.82935,0.69616,3.961787333333333,9.880315833333333,4.444015,3.199115,3.023425,1.9030333333333334,4.048255,5.2942,3.0152866666666664,4.45265,9.168038888888889,3.6077999999999997,2.101863333333333,2.7224833333333334,2.8026133333333334,2.71271,2.6857283333333335,2.6914599999999997,2.56268,3.03576,2.59193,3.1373033333333336,3.367735,2.3167866666666668,1.5536866666666667,4.907240666666667,4.159,2.62736,4.910153333333334,2.7400800000000003,0.977055,2.14575,3.0187666666666666,5.481909285714286,2.959,2.09948,2.09948,1.6027875,1.7504875,2.16866,1.947426,5.7730500000000005,4.4162125,1.9545175,3.0211566666666667,3.7036,2.1239775,0.6388533333333334,2.6326966666666665,1.8704425,0.55191,3.867,2.449695,2.558775,3.560215,3.4524353333333333,2.3709266666666666,1.52505,1.03768,2.23423,3.407615,3.72885,4.05464,2.87692,3.999865,3.699465,1.0946727272727272,8.73752,2.599685,3.29983,1.2447575,2.8063933333333337,2.323315,2.323315,2.323315,4.99196,5.2238,1.496355,5.04825,1.44431,5.523933333333334,1.523236,4.10821,4.325005,3.99557,5.06175,4.50278,1.940605,8.595590000000001,3.883135,4.982365,3.484075,4.0637300000000005,3.2732533333333333,3.036583333333333,3.78601,2.426606666666667,4.319989285714286,4.240381666666667,1.5770575,3.852765,1.5770575,3.37544,4.3871075,4.89025,4.3871075,1.8195066666666666,5.44735,4.64957,4.38169,2.7986066666666667,2.884743333333333,4.2455,3.32832,5.3375,0.5079657142857142,2.9728266666666667,2.92426,4.867586666666666,4.716575,2.4050575,4.824965,5.96266,3.237015,2.72237,2.84309,1.94224,3.87464,3.934625,4.511385,2.159255,3.810335,0.8480719999999999,5.69675,3.248235,4.156075,2.153983333333333,3.1371800000000003,2.402503333333333,2.7404433333333333,2.6674100000000003,2.7348266666666667,2.696255,2.251835,2.251835,4.153513333333334,2.70303,4.726745,11.598012500000001,0.9551666666666667,4.476265,2.4161333333333332,2.302306666666667,2.7103066666666664,1.4748125,7.447506666666667,3.191466666666667,3.542555,3.617253333333333,2.32053,4.024333333333334,4.107805861111111,2.05038,0.4420872222222222,1.446342,1.5185225,4.872455,2.80242,3.30552,3.6520650000000003,3.482245,2.2750825,4.93675,4.50765,3.79605,4.62815,2.125135,3.66577,2.48481,5.369743333333333,3.036485,5.3276,4.09377,4.20584,4.29151,2.00503,3.731875,3.467545,3.22277,3.425825,2.77032,2.996645,4.03926,4.16208,2.568826666666667,4.38968,1.3262216666666666,3.661445,2.77604,4.17167,4.098365,3.98301,4.99179,2.618225,4.14959,5.0073,4.11227,3.0320933333333335,2.12133,3.045315,2.34402,0.8777366666666667,4.4959,2.00856,3.441795,2.59643,4.04143,3.378205,3.06895,3.10273,3.897095,4.453612000000001,4.21332,2.90704,1.61719,3.231585,2.337155,0.9277311111111111,4.189955,8.572289999999999,3.44687,3.693815,4.046335,5.206,3.815615,2.109835,3.936055,3.929955,3.29917,3.33886,3.8459,0.6405375,1.2273385714285714,6.193785,1.607035,2.71425,4.8024000000000004,2.4503425,2.192085,2.671035,7.73563,2.694675,3.99837,3.721835,0.7929499999999999,3.28818,2.587465,3.844395,3.697285,6.222216666666666,0.661932,3.24584,9.80962,3.018395,1.0161255555555555,4.928064583333333,4.54249,5.16405,4.0463,4.57074,3.079985,2.48524,7.1288149999999995,0.799176,3.37496,4.08023,3.096875,4.08697,2.082085,4.07362,1.7013,3.893025,3.92348,3.985505,1.68031,4.465905,4.359355,2.346315,2.11998,2.16798,1.225878,4.29068,3.1590805,1.40917,8.159804999999999,5.7053,4.51597,4.21787,3.509865,4.334635,1.4604142857142857,4.201175,3.93851,5.09615,3.69142,2.4960733333333334,6.57108329059829,1.1315375,1.1315375,2.65667,0.8987471428571429,4.0502,3.0822566666666664,1.0643875,1.73407,0.42313,6.1305075,1.010855,2.79877,3.81811,3.96094,3.524025,4.057655,5.3159,5.4661975,3.410455,3.04222,2.28686,3.751245,4.339735,4.154635,3.863225,3.7406,6.0221,4.061565,4.317742777777778,5.928627,3.68022,3.2093125000000002,2.284345,3.2093125000000002,6.816222,41.746345766233766,3.756835,3.55702,2.834543333333333,4.22795,4.440505,3.601465,3.55951,3.93735,4.383275,4.105475,1.6492683333333333,4.852625,2.770615,4.698505,4.997685,4.946375,2.41846,4.359535,4.00366,3.35034,1.481788,0.6270815384615385,1.858378,3.599266666666667,2.846996666666667,1.269275,2.81108,2.63299,2.66225,3.7712333333333334,2.9051833333333335,1.3748900000000002,2.542263333333333,3.740066666666667,1.9312119433719435,2.824953333333333,3.039408,2.89005,2.6272466666666667,3.5224666666666664,1.1643222222222223,3.56558,4.05259,1.2599316666666667,1.2599316666666667,1.2599316666666667,1.2599316666666667,2.927712121212121,2.1155466666666665,2.51801,3.24023,4.93859,5.07835,4.070155,4.22563,5.51615,4.4865,2.37708,5.651,4.51011,2.5574,3.8288,2.998765,4.06492,4.29512,0.7117484615384615,1.4341714285714284,1.5510400000000002,4.075245,3.94034,4.590675,3.92366,5.972561666666667,2.2573666666666665,3.933375,1.5418066666666668,3.56401,5.0277,1.53369,5.1531,0.6834975,4.299705,1.093324,1.1571225,3.594855,3.99394,4.89425,4.86542,6.0354,4.2774,1.485678,4.758765,1.5106,3.550525,3.086455,2.4544435555555557,1.97167,3.52982,1.2085683333333332,3.484795,4.875175,3.0193766666666666,5.98555,119.57486820400433,0.49325444444444444,4.64294,2.4865166666666667,4.80197,4.169735,3.564285,1.54754,0.3267095238095238,2.73241,3.86914,5.2541,3.245265,3.56307,4.369865,4.06815,4.82041,8.28664,0.68231,2.674245,0.9639325,10.264949999999999,3.021725,3.540305,0.8827366666666667,2.2198,2.661315,2.1359275,3.355566666666667,3.1386833333333333,2.63802,4.243005,3.00304,2.218933333333333,2.214913333333333,3.91042,3.252715,2.85981,3.66068,3.854465,3.24893,2.40118,3.94902,4.13223,2.90698,0.9421277777777779,2.6210466666666665,4.243005,4.8156,5.3301,4.073285,3.772955,1.8535,10.72624,4.08536,2.48594,3.92695,4.90449,0.548776,0.548776,4.1958025,4.1958025,2.91669,3.485666666666667,1.7892027272727273,0.5750833333333333,2.855695,4.266685,4.065525,3.500845,4.0153,5.23388,4.533785,2.0516075,4.775825,2.158775,2.80131,4.1319925,1.78635,2.047645,0.48546285714285714,1.1631148571428571,1.1631148571428571,1.90293,4.42869,4.32017,4.775555,7.046112,2.764445,2.94664,1.89981,1.940775,4.010144166666667,3.59144,4.482353333333334,2.239155,4.482353333333334,4.488145,3.77912,5.9764,3.83254,2.3533666666666666,2.0705666666666667,2.54236,1.4207875,1.41711,1.51821,1.8977675,1.56393,1.869555,4.015066666666667,4.750755,2.45277,6.7747,2.94834,4.42325,3.366475,4.01586,2.7805199999999997,2.8385166666666666,6.2604766666666665,3.32193,4.525748,3.0718599999999996,1.328495,2.51221,2.4612166666666666,2.2798633333333336,6.23225,4.4654025,4.47644,12.20656425298824,0.7351483333333334,2.0147555,2.1830375,1.6128240000000003,1.2639785714285714,2.48462,2.4180075,2.456405,2.27931,0.7298761538461539,1.9193525,0.5010189473684211,4.49749,1.787025,3.438795,4.27871,2.4703375,5.565494999999999,3.906905,7.33157,4.01073,2.87566,2.99824,4.739345,4.88088,2.5869637142857145,4.54571,2.1142375,2.1142375,5.07525,3.73104,4.070065,3.96718,3.1785433333333333,3.8206,4.954995,5.3295,4.617595,4.46192,4.57583,4.35552,2.62435,4.96732,1.1397333333333333,4.68191,4.664545,2.48963,2.2578733333333334,4.6977,1.4856183333333333,5.0441,1.8671475,6.060200253623188,4.12665,3.99095,1.4099833333333331,3.2624483333333334,3.2624483333333334,11.977395000000001,3.892405,4.50588,1.12492125,4.402949,2.1970775,1.450425,2.3216375,1.6808175,1.9329925,1.699468,3.09082,5.5376,1.7511375,4.911215,4.535236666666667,5.5386,2.1344875,2.777155,3.084225,4.168685,5.49125,3.87411,7.264003333333333,3.2172533333333333,2.604013333333333,0.38999,3.842515,4.640095,3.2900899999999997,6.40752,2.6760099999999998,2.9342666666666664,1.2239683333333333,1.6447450000000001,0.606749375,1.446342,2.90805,1.51877,1.4930433333333333,0.64760625,1.314848,4.75154,2.370515,0.6405930769230769,1.3615133333333331,1.668675,1.6089759999999997,1.290455,2.0321975,1.6447450000000001,2.4709075,1.314848,1.314848,0.6405930769230769,1.6045571428571428,2.3926600000000002,1.3255533333333334,2.581175,0.6405930769230769,2.675425,2.3926600000000002,1.25181,1.25181,1.25181,1.846482,1.2152475,0.6405930769230769,1.091374,1.0870375,1.0414355555555557,1.8991,2.698925,0.835725,2.12754,1.5762,0.6405930769230769,1.720394,1.6447450000000001,2.0315166666666666,1.9890999999999999,0.8731500000000001,2.0315166666666666,1.0439644444444445,2.346315,2.3470325,2.3443325,1.0870375,2.04054,1.2085683333333332,1.2085683333333332,0.8850618181818182,0.8850618181818182,0.8850618181818182,1.2239683333333333,1.6447450000000001,1.5762,1.3615133333333331,1.0052685714285714,1.9890999999999999,1.508262,1.5445499999999999,2.10244,1.2239683333333333,2.5878799999999997,12.8708975,0.64760625,2.6225,1.7527166666666665,2.42951,1.0148442857142856,1.0148442857142856,0.6405930769230769,1.00622,1.7268940000000002,1.5762,1.819376,1.9890999999999999,1.1619666666666668,1.1619666666666668,1.638128,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,3.012453333333333,1.0439644444444445,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.3837604545454545,54.48137943290043,1.4951375,1.5749183333333334,1.5762,1.7527166666666665,1.0052685714285714,0.6280176470588235,0.7080460000000001,0.7080460000000001,0.7080460000000001,0.7080460000000001,4.2671,15.953134166666668,3.3833,0.5803,1.606286,1.606286,1.606286,0.5803,2.90805,0.6405930769230769,1.720394,1.4930433333333333,2.45928,1.0439644444444445,2.4050575,1.0439644444444445,1.606836,1.606836,2.1135333333333333,2.1135333333333333,0.6405930769230769,1.95386,1.95386,0.928590909090909,0.20072555555555555,2.90805,1.3896666666666666,2.3596575,0.5803,0.5803,0.5803,0.5803,0.5803,1.7527166666666665,0.3837604545454545,1.0439644444444445,2.076955,2.076955,2.506025,2.9493766666666663,0.6534380952380953,0.6534380952380953,3.3791666666666664,4.2558,1.1823700000000001,3.4203666666666668,0.9827980000000001,2.38894,2.06094,1.126325,2.892493333333333,1.8909925,3.171193333333333,5.1374,2.487155,1.170211111111111,4.090625,4.351545,2.41491,1.6938859999999998,2.3267007692307695,4.239045,1.7346405555555555,2.6503566666666667,2.979813333333333,3.1229633333333333,2.55222,6.005233333333333,3.805275,0.20072555555555555,2.9522933333333334,4.9371,3.45425,4.58352,4.336525,4.42425,2.7821,1.7686620000000002,4.423375,4.621285,4.291355,4.67143,5.29095,3.195705,0.7114716666666667,6.618015,1.7117166666666668,2.964728,4.428675,2.5221633333333333,2.5221633333333333,0.8313409090909091,1.97167,3.993075,3.033585,4.999555,4.03593,4.37077,4.988215,1.0085814285714285,4.795775,5.85955,6.63978,2.2177266666666666,4.37725,3.688965,4.005875,3.551855,3.81331,4.280205,6.083735,4.89137,4.254996666666666,3.747445,4.365803333333334,7.284377,2.0167375,2.353793846153846,2.8863833333333333,1.7630933333333332,2.7131333333333334,1.79263,5.14625,2.9349166666666666,6.1877,1.923086,5.0024,3.926575,3.68019,4.498165,3.76168,2.5491466666666667,2.83554,2.7038266666666666,2.7100299999999997,2.50109,1.618645,2.8150633333333333,2.8232033333333333,2.2470600000000003,2.2470600000000003,4.36697,2.9149100000000003,1.9876666666666667,2.9888266666666667,1.9852366666666665,2.54965,2.98183,2.6797066666666667,3.027233333333333,5.23855,3.93817,3.76353,3.4086153333333336,3.4086153333333336,4.05409,3.2308266666666667,3.87922,4.57217,4.00195,3.53496,3.37744,7.76714,2.032735,2.028105,3.23662,3.24312,1.15463,1.15463,3.49624,1.68936,4.026559333333333,3.782845,4.036495,2.107228,2.034634,0.5892158333333334,3.42927,3.88589,1.7734675,2.347285,4.358805,1.18246,4.667295,1.2974433333333333,0.42365785714285714,0.5658035714285714,21.008415669642854,0.5658035714285714,0.42365785714285714,0.7079492857142857,9.648968333333332,2.7511533333333333,3.522915,4.17967,3.4920975,2.788055,4.037339285714285,2.305295,2.34527,3.71148,2.98249,4.02054,4.31221,3.68595,2.204465,3.18158,3.539785,3.85953,3.13464,1.055604,1.055604,1.055604,1.055604,3.41403,2.79143,3.31015,1.7230533333333333,1.27281,2.59554,3.81331,3.74608,2.79919,2.99268,2.4185,2.6342258333333333,4.01968,4.089685,1.167165,2.529123333333333,1.09073,2.573916666666667,1.5611866666666667,3.7245333333333335,4.989005,2.5041533333333335,3.657225,3.8111933333333337,0.8434116666666667,0.21574500000000002,0.21574500000000002,0.6276666666666667,0.21574500000000002,0.21574500000000002,0.21574500000000002,0.6276666666666667,4.77034,7.500603333333333,3.449055,0.54305375,3.762605,7.414175,3.20098,3.20307,1.1225116666666668,4.511675,5.31865,4.24217,4.740845,1.6115179999999998,4.55333,2.11888,2.258128666666667,3.53607,5.2693,0.7974928571428571,0.7974928571428571,3.541325,2.741016666666667,1.989735,3.31898,2.83925,6.8706,3.05393,6.70425,6.18215,5.4622,2.75187,1.695035,3.99778,3.44809,2.260485,3.9084,3.14864,1.83721,1.1446966666666667,4.025785,3.436435,4.80092,5.847505,1.4915283333333333,3.984035,1.14388,2.515826666666667,3.276195,3.80591,0.4064957142857143,3.5498,4.29423,0.899987,2.64549,7.529356666666667,3.0049,2.23357,5.328278,4.351975,3.74281,1.3638033333333333,5.456426666666667,2.4841166666666665,2.930763333333333,3.4918333333333336,1.95202,1.95202,6.54265,6.54265,3.6600053571428575,3.6600053571428575,10.2507,3.6600053571428575,3.6600053571428575,4.346926468253968,7.03825,3.625245,3.56093,3.3373000000000004,3.867155,3.32965,3.222103333333333,3.0814966666666668,4.5821,3.11905,2.6166466666666666,3.4901666666666666,2.30576,2.781425,5.06615,7.332934999999999,6.73778,5.01135,3.756745,3.99893,6.9150220000000004,5.35185,4.470625,3.58466,4.408755,2.38306,2.262455,2.240165,5.32385,5.6759,4.7885100000000005,4.27028,2.4169033333333334,2.4747,6.8075383333333335,1.846482,2.526546666666667,3.4159,3.4159,3.143645,4.95084,0.7545533333333333,3.4863999999999997,3.81377,2.961956666666667,10.218955000000001,4.18075,3.1150866666666666,2.3973299999999997,4.10951,5.8094,2.927415,5.26805,2.5941433333333332,4.48601,2.966865142857143,4.32499,5.33975,4.719315,1.1463583333333334,3.5464,0.97355,2.4556533333333332,4.93343219117647,8.381203333333334,2.48283,3.4709333333333334,6.598635,1.685908,4.69314,5.65095,3.522815,3.642505,2.0599166666666666,4.64925,2.2515549999999998,0.43795307692307694,5.07835,2.97174,3.4529,5.08205,4.837365,5.572,6.510505,4.61494,5.4167,7.273225,54.247065,4.5664,3.80316,4.53734,5.4042,4.412815,5.20395,4.352525,4.51396,1.925135,3.70921,3.84977,4.654305,2.62924,4.92771,3.72631,1.67865,5.3242,6.1675,7.131071666666667,5.1585,3.299795,4.335005,3.42706,3.11758,3.6191,4.241725,3.82315,6.3669,2.7362,1.0962714285714286,2.3560024999999998,0.605414,0.605414,3.149105,0.605414,2.3610170714285714,2.3610170714285714,3.088191071428571,4.5406185,4.920864571428572,2.3560024999999998,4.643419166666667,2.4846441666666665,1.3274466666666667,5.60655,2.05808,6.511900000000001,5.27984,10.68654181818182,3.19314,2.4436633333333333,0.21078181818181818,1.877115,2.0771666666666664,0.884675,1.24607,2.9734700000000003,2.364775,2.497885,0.601402,26.506194166666667,1.89878,0.8428307692307692,2.4695533333333333,2.4695533333333333,0.395,1.6373075,3.12663,1.3783125,1.586145,1.6071975,4.00065,2.790165,2.0365266666666666,2.3142866666666664,1.0776433333333333,1.94679,1.494065,5.441883583333333,3.96024,6.65608,2.5157,3.3287933333333335,0.8889966666666668,3.02952,5.0903,6.179595,2.96379,2.1864,5.2177991666666665,1.9896725,2.39206,4.2293650000000005,1.00698,3.3933999999999997,2.3117733333333335,4.988595,4.76647,5.9397,3.10157,3.8854100000000003,3.8854100000000003,5.2091,2.106275,5.41025,2.85216,1.573225,3.027035,3.35696,5.2760411666666664,3.768095,2.7856366666666665,3.2233066666666663,2.779595,1.05639,5.14035,0.89551125,5.509483333333334,4.232445,7.55761,4.1752,4.35103,4.1042,8.293783333333334,4.223075,4.61254,1.18469,0.7108642857142857,4.409485,4.28453,2.26038,3.108265,3.360915,4.17144,2.15393,4.78997,2.508296666666667,5.4723,5.3261,5.7276,4.29558,5.1344,3.02194,6.346936,3.630605,4.520715,3.22246,4.695815,5.276422023809523,0.5720857142857143,3.5625999999999998,1.6936333333333333,0.57196,4.023345,2.326685,0.9927375,2.14369,6.10574,3.554545,2.4797,2.69984,2.78172,4.74171,4.09254,1.7016621428571428,4.267455,2.1852233333333335,3.8125999999999998,4.100375,5.0652,3.1630683333333334,3.5897666666666663,3.7538,2.02196,7.55059,4.792335,4.149255,5.45155,2.188745,4.44326,4.768595,3.857855,3.889925,10.78269,3.036015,4.163455,4.63574,4.665005,2.36937,4.65067,3.999935,4.740615,3.27772,4.10896,1.4555625,3.1275099999999996,3.32987,3.609675,4.95682,1.938018,4.11645,2.99626,5.35005,3.291166666666667,2.11285,4.10193,4.43971,1.03423125,3.04963,2.6573466666666667,4.543878666666666,1.68221,1.6512,1.09061,3.238295,5.44665,5.2872175,3.4769949999999996,3.50317,2.470665,2.04024,1.914835,1.53841,6.0337,2.935985,1.917715,0.8612076923076923,19.811838205128204,3.04205,3.0474341666666667,4.344791666666667,3.8304030769230772,1.4468233333333334,2.7910751666666664,2.827986136363636,1.342166,1.8253266666666665,4.24417,4.632555,3.4237916666666663,3.046515,5.4989,4.756745,6.9435125,4.695131666666667,4.493205,3.58494,2.59003,3.9664,3.954485,3.7468333333333335,3.8177,1.8580075,4.727925,8.86322,3.36773,2.70644,3.16066,0.557195,3.1267666666666667,2.09487,2.32808,4.221635,3.21796,5.1051,3.69141,2.821545,2.215475,1.73213,0.7706999999999999,1.4460300000000001,1.2349666666666665,3.871555,3.77448,4.61477,4.560875,7.10482,2.3246233333333333,1.402246,2.403696666666667,7.71854,3.165445,2.810025,3.099345,4.545985,3.29148,3.60027,1.520322,4.61811,4.95853,4.06749,3.90131,3.510745,4.18972,4.33204,3.856755,4.324025,4.11637,2.26598,3.301766666666667,3.19501,5.3675,3.085395,4.144942,2.690035,2.84914,2.23393,2.261293333333333,2.0382466666666668,2.655251333333333,2.655251333333333,1.9560933333333335,2.8535166666666663,2.4128433333333335,2.2978433333333332,1.8867200000000002,4.07217,2.37187,2.7659366666666667,3.0463733333333334,1.6463533333333331,4.491405,2.676415,4.118445,2.2874733333333332,5.13075,5.2204,4.861226388888889,2.83309,2.362805,3.08186,2.551415,2.187705,2.672695,1.8125775,2.71505,2.76935,6.767766833333333,4.310105,3.628135,0.627225,4.504005,3.71102,3.871575,3.30813,3.855855,3.726605833333333,6.4522,4.43418,3.322005,2.7100685714285713,2.0976173333333334,2.46826,1.6778279999999999,1.78128,1.5279500000000001,1.994604,1.88131,1.2427650000000001,4.091566285714285,0.6405930769230769,0.5265333333333334,1.9415400000000003,1.4728733333333333,1.368376,1.3941416666666668,2.2279454545454547,1.3910266666666666,1.689488,0.57362125,166.39952126296578,0.47799,1.934008,1.102094,1.1456675,2.1512975,1.56178,1.9521875,2.3107633333333335,1.754585,6.41815,3.162275,3.445193333333333,1.9756066666666667,3.233875,1.2578883333333333,1.2578883333333333,5.8979725,0.4766138888888889,2.1810625,3.249,3.0825766666666667,0.8309727272727273,0.5317852941176471,1.176949435897436,0.9868909090909092,2.346625,4.110925,2.000945,2.00604,2.35157,4.887635111111111,1.0222433333333332,4.227595,3.355085,3.74271,6.95527,1.9431399999999999,2.875505,2.043,3.2783629999999997,2.34282,2.834935,2.38937,3.45663,4.56215,3.19648,6.41707,2.805455,2.566895,3.456295,1.863385,2.80852,2.43099,3.04702,1.69716,1.55584,2.007985,4.261795,5.204998333333333,2.420455,2.804385,1.39723,4.24032,3.986133333333333,4.017,2.791415,24.617662025030526,2.610129333333333,2.5883266666666667,2.9563433333333333,3.433566666666667,3.23306,5.475533333333333,3.1724633333333334,2.3799533333333334,3.30524,3.4956333333333336,2.1596466666666667,3.171526666666667,3.481733333333333,3.18662,1.7297666666666667,1.65757425,0.560398,2.20192,1.96838,0.20005875,2.224743333333333,2.578845,0.20005875,0.20005875,2.161275416666667,0.20005875,0.20005875,0.20005875,0.20005875,2.6857699999999998,2.56611,0.5484253846153846,3.188110714285714,1.4313225,1.9514179999999999,5.6291,4.21188,6.011805,1.93578,4.82445,2.04626,2.8164266666666666,1.315837142857143,5.714316666666667,2.8559033333333335,5.8141799999999995,0.8399083333333334,1.23919,4.680515,4.65988,34.81055156718282,1.563752,1.3499833333333333,2.319453333333333,2.37196,0.8850618181818182,2.3698900000000003,2.51579,2.6890733333333334,1.9934366666666667,2.46657,1.5981733333333334,2.4760866666666668,2.3087066666666667,2.2253866666666666,2.6425533333333333,2.36741,3.945315,3.4500333333333333,1.0611557142857142,3.922855,4.027575,19.44333177777778,2.7414799999999997,3.2350066666666666,2.457856666666667,0.775902,3.1617819999999996,1.5294664444444444,3.1617819999999996,2.4064533333333333,2.3101966666666667,2.7055566666666664,1.60109,1.9339625,4.265865,4.00434,5.0786,4.353345,1.650972,4.959875,1.644955,5.0127,3.9602961904761904,4.28607,0.7431754545454545,2.00789,2.08423,2.6914059999999997,3.419085,1.0992325,3.49496,1.825358,2.046883333333333,1.027634,1.027634,2.79819,2.57715,4.315535,27.96498,6.166065,1.9735033333333334,3.713303333333333,0.3909026666666667,5.726935,6.16225,2.764863333333333,3.38182,5.3068475,3.46215,1.12921,4.412255,1.313964,2.72712,4.38101,4.4041,2.05125,3.285745,4.621755,2.625705,2.727236,4.21223,1.2642966666666666,2.4296983333333335,3.815555,5.4251000000000005,2.4049,3.104953333333333,2.6678566666666668,4.14333,4.10477,3.960745,4.2331666666666665,1.78862,5.92005,2.511575,1.734122,4.085755,6.08532,4.075865,3.2992,0.72252125,2.899355,3.536825,1.937235,4.926745333333334,2.924365,3.903955,2.83779,3.3966999999999996,2.61075,3.225846666666667,2.8761766666666664,3.1504033333333332,4.284135,5.5636,3.49593,1.68857,3.827155,4.122565,1.776765,1.94506,1.7534375,3.9033777777777776,4.47443,5.17845,4.078965,3.3690333333333338,3.591845,3.0548800000000003,1.3779533333333334,2.973545,2.83189,2.97873,4.992605,4.63071,4.123555,2.8972,1.89332,1.61584,1.3944325,3.54925,2.35182,2.18924,3.29276,5.02305,1.683225,5.09555,1.3641185714285715,1.7949575,3.24816,2.85395,3.09316,3.80106,3.22999,1.63041,0.9920521052631579,3.2742,4.841308333333333,4.030295,8.822151666666667,3.0224233333333337,2.98467,1.63933,2.76708,2.6211166666666665,1.1613983333333333,2.9206066666666666,2.5689433333333334,3.2487999999999997,3.822366666666667,3.0149399999999997,6.731656666666667,2.9854066666666665,0.7450963636363636,1.72522,3.81615,3.42502,3.421625,3.571633333333333,2.5379050000000003,3.30287,2.63908,1.9623672857142855,3.936665,2.518582222222222,3.49589,2.059563333333333,4.70191,4.78493,4.285085,3.46286,3.52321,0.8892399999999999,4.526475,2.85795,2.80102,4.589945,2.81985,2.6714633333333335,0.4235271428571429,0.4235271428571429,4.145365,3.829655,7.0058,3.196415,4.69063,3.59159,3.50998,4.80961,4.069845,1.05252375,3.946975,2.54874,4.014998333333334,2.80259,3.0648400000000002,1.8887333333333334,3.217945,2.4089266666666664,2.7881433333333336,2.5642566666666666,2.792753333333333,1.93919,22.063521492753623,3.77615,4.081915,4.132925,3.325985,4.5317050000000005,3.75351,4.52403,4.20537,3.741385,3.141805,3.780225,2.5315666666666665,2.802713333333333,2.87454,2.9426233333333336,2.91028,4.20194,3.611835,4.972182500000001,5.04705,4.171465,1.28266,1.3725960000000001,1.3725960000000001,4.81891,3.723975,2.5825566666666666,2.28136,2.8911933333333333,3.298755,3.668725,7.650961666666667,3.163726666666667,3.5401333333333334,3.050791666666667,5.329,1.57011,5.67355,2.480986666666667,2.8689466666666665,1.729475,3.710135,3.13931,6.02901,2.923065,2.807095,4.275705,4.322024666666667,1.5251525,2.56704,1.5984466666666668,7.076384,3.974925,6.733385,2.144625,3.939315,3.78462,3.909905,5.0307,3.2865466666666667,3.2865466666666667,2.1202825,4.20245,4.791355,2.30179,6.534464285714286,1.5539625,5.86205,8.550449666666667,3.657966666666667,4.363312666666667,2.3603533333333333,1.964345,0.534663125,4.42518,2.51855,2.77975,3.555204,2.317925,2.3152033333333333,3.71068,6.01475,5.44215,5.5452,4.373825,4.11681,2.2186125,1.015272727272727,2.86269,3.289915,2.65451,4.97264,3.99996,3.231535,2.42623,1.982716,4.196,1.003825,5.1061,1.00896,5.34385,3.23845,4.741645,4.88176,3.052325,3.115915,3.024953333333333,2.2647066666666666,4.125125,3.108415,2.52581,3.61439,4.842045,5.402903333333333,4.58757,1.64272,3.362375,2.81003,5.493923333333333,1.869915,1.869915,2.8897066666666666,2.45703,2.4904699999999997,2.5996533333333334,0.825442,6.14385,3.486685,1.9329975,2.394525,2.60927,3.5356,2.57991,3.669235,5.05295,5.1721,4.728085,6.1156,5.8216,1.3205875,3.679265,1.1278916666666667,2.451395,4.421966666666667,2.530255,2.991765,3.17702,4.524925,2.885995,0.45170263157894736,4.68985,4.04182,4.9611,3.358145,4.663275,5.3507,4.163835,4.288995,1.743085,4.5931,2.021995,4.231433333333333,4.231433333333333,6.346,5.54545,5.58685,4.98361,2.55359,1.57011,4.02891,1.9134533333333332,1.6093833333333334,2.10884,4.03003,4.069715,4.28257,7.67396,1.6058333333333332,4.94631,1.1908483333333333,3.157005,5.88355,1.9711525,4.793,2.60818,4.62582,3.291015,4.8329,3.5427999999999997,4.22041,3.932705,5.79145,4.18557,3.534485,3.828945,5.96455,4.00598,4.46598,3.74442,4.162155,6.802241666666667,3.49342,6.95716,3.298335,5.32385,5.877196590909091,4.184425,3.72545,1.6988775,5.46375,3.79008,0.8959533333333334,8.53655,5.94575,4.786415,3.0140425000000004,5.19325,3.30833,1.6868659999999998,3.887695,1.167165,6.24565,2.962935,4.63918,5.3626,4.171545,3.955925,2.187316666666667,4.47619,5.00715,1.533915,7.218193333333334,3.171005,3.354845,4.973785,4.294825,2.47838,4.4207,3.472625,3.78035,2.7641766666666663,4.05613,3.660135,5.222,4.71246,3.28926,1.81532,1.81532,7.613985,1.3558171428571428,5.1918,4.17985,5.00505,3.37748,3.43159,4.83416,3.91166,0.8076483333333333,0.8076483333333333,0.8076483333333333,3.68916,3.129625,3.93675,4.443775555555556,2.73393,1.45683,4.379595,2.04276,2.77078,3.89065,4.573715,1.9286575,2.16962,5.06365,3.68925,3.43395,4.314905,1.6082325,1.9599925,3.287573333333333,2.545835,5.0137,1.36944,1.6443940000000001,1.00842125,3.85546,3.434695,2.7934900000000003,2.8732166666666665,5.46325,1.709346,2.02712,2.958785,1.646442857142857,3.104985,3.42688,2.2844975,5.6487,5.4531,2.667245,4.211835,3.30418,3.28237,3.31108,3.7661,3.65357,6.98287,5.2352,1.8845933333333333,1.7796166666666666,3.414785,4.796355,4.046805,3.53611,2.9204666666666665,4.039365,6.15765,4.961525,2.7406066666666664,5.35495,3.956595,3.999525,8.116695,4.26284,0.72041,3.94776,4.355270833333333,2.256185,4.134,3.750833333333333,5.94125,3.921485,3.94736,3.75311,4.33419,4.523625,4.36979,2.8611,3.710155,4.97211,3.93861,2.393045,2.895715,6.35604,5.4839,2.12984,3.207335,4.038985,3.64508,4.871295,4.074895,2.4472,0.8630622222222222,4.445042121212121,5.9958525,3.416035,4.67686,3.50304,6.592270000000001,3.54186,3.6801666666666666,2.895326666666667,3.89066,1.99065,3.18155,4.24025,2.455937,3.96362,6.1599,1.4763725,4.6605,0.6592821428571429,6.27815,6.46485,6.10415,6.29775,1.6034533333333334,1.6178466666666667,4.446265,1.796,5.27405,0.5147933333333333,5.85785,3.109605,1.515404,6.09248,6.50575,0.7798125,1.5314725,1.320998,1.320998,1.320998,2.0280766666666667,4.998445,3.49652,3.226865,3.97265,5.04955,3.65906,1.944282,4.26702,4.86016,0.3024390243902439,3.430695,4.35557,4.53207,38.38458232575758,5.63412,4.956705,10.855085666666668,3.20066,4.06759,7.05159,3.19929,5.23055,3.73429,3.85984,9.159635,3.708605,2.71245,2.50691,4.563245,4.065975,3.52013,4.38787,1.963455,4.52441,4.148295,6.6852990000000005,4.02529,5.0924,2.39612,4.293695,0.50266625,1.4483483333333333,3.309315,6.0569,2.873265,1.2064033333333333,1.2064033333333333,2.995505,3.80017,4.003945,2.711855,1.66325,3.37972,4.21102,1.8447725,3.4202,1.564584,1.7208666666666668,4.0196,4.55905,2.0971425,4.642285,2.2883825,2.060185,3.74454,3.684945,4.105715,3.88269,5.987438666666666,2.3901786666666665,3.760275,0.7780427272727273,0.6535366666666667,3.89602,2.125955,8.71295,3.3833,4.9816,1.68316,4.5852,1.4760233333333332,3.86595,4.532715,2.603423333333333,3.757845,4.6758,0.42435349999999994,0.42435349999999994,3.835433333333333,3.1728133333333335,2.96612,3.69164,3.803145,5.3939,1.0455636363636365,9.968673333333333,10.7498,2.0321975,4.5284925000000005,4.47695,4.68325,3.68085,2.519956666666667,1.991592,2.1006525,10.34433,2.172195,2.6631566666666666,3.588072,4.473375,3.588072,1.971395,2.9093466666666665,2.75642,0.7271336363636364,5.271680833333333,2.873276666666667,2.74925,3.98021,9.084575,10.6616,4.038805,3.89782,4.21933,6.378075,1.87157,1.39615,26.026111666666665,4.29736,3.82903,1.01035,4.496365,3.980395,5.5126,4.74163,5.66815,5.568286666666666,2.995896666666667,2.0977133333333335,0.6456176470588235,0.735035,4.56283,5.22935,1.3449866666666666,4.214518333333333,0.9319500000000001,3.6607333333333334,1.46002,4.298325,5.85085,1.7603,2.45223,2.331185,3.85635,2.72121,0.4093016666666667,3.83378,3.60949,2.83339,3.45512,4.801065,2.868306666666667,4.174595,3.05086,4.66561,8.533886666666668,4.888715,8.239215,2.7688,2.6038,4.310475,4.30826,4.32401,4.285565,3.74343,4.646425,1.1732225,3.2350874999999997,3.2866734285714285,0.775922,1.3725960000000001,1.3725960000000001,3.90651,7.656988333333333,0.8232615384615385,4.57585,0.8509816666666666,2.9827866666666663,2.1834599999999997,2.625243409090909,6.2081333333333335,2.4743066666666667,1.1285666666666667,2.35234,1.24344875,2.02357,3.22172,2.9868233333333336,3.16377,2.45413,0.8509816666666666,4.52767,4.97916,5.3255,2.75131,3.853555,2.03916,5.77155,4.83226,4.493445,2.9791733333333332,3.28836,2.2083425,1.46993,4.055465,2.64725,4.35415,5.5812,1.563592,4.63837,2.91496,6.4237883333333325,3.45874,2.44166,0.8509816666666666,2.304805,3.31812,7.400551777777778,2.31604,1.7953839999999999,2.31604,0.41453083333333335,1.228246,3.600645,2.775405,1.646885,3.6448,3.9385010000000005,0.619531,0.619531,0.619531,8.42146,1.596918,0.70843,35.119083714285715,1.9178051111111112,0.6869211111111111,2.96983,0.6869211111111111,3.833215,1.993395,2.607785,2.59091,5.27005,3.9501,4.421815,2.388453333333333,0.8956814285714286,4.361545,3.27434,4.933755,1.0466985714285715,3.087275,3.087275,3.838415,4.79411,3.49102,4.562491153846154,3.255295,4.78785,5.06865,1.8169920000000002,1.06366375,5.1777,6.6092,3.816585,0.706852,4.24015,4.175608333333333,0.89747,4.395745,2.41831,3.804975,4.38124,1.9416978787878787,1.9416978787878787,4.03312,3.454245,0.8966633333333333,3.108445,2.8958133333333334,3.26694,4.063655,4.34487,0.47833571428571425,0.27818,0.27818,0.27818,0.7565157142857142,0.5595361538461538,0.674007,0.27818,0.27818,6.932745000000001,0.27818,0.7565157142857142,3.68439,1.29746,4.905595,1.1858600000000001,0.5741361538461539,0.89747,2.53917,2.656675,3.948065,3.181405,0.27818,0.27818,4.36389,3.825015,4.149115,2.52914,4.09345,1.54433,3.77561,0.674007,0.674007,5.0439,3.083885,2.86729,3.0275,3.8696433333333333,1.09209,0.9437230769230769,10.451945,1.286625,3.52922,4.632815,4.95961,2.02872,0.3646465217391304,0.85919875,2.7938566666666667,3.242815,3.15497,4.24171,1.35953,5.80905,3.37991,4.95377,4.039915,2.86314,2.8233266666666665,6.707775,2.541533333333333,4.56811,4.11009,3.8111933333333337,6.0664750000000005,0.5318080000000001,4.604605,3.4616333333333333,2.1289966666666666,0.6926888888888889,3.86965,4.6398,2.869265,2.46938,2.136035,5.0716,2.75316,2.75708,0.9980040000000001,0.4552784615384615,3.84072,0.32946533333333333,0.7755718181818182,3.9496,2.95047,3.884425,2.731845,5.5497,4.21694,6.1193773333333334,3.516335,3.292415,4.20785,1.59062,5.2333750000000006,1.760424,3.74214,2.3128775,5.686466666666666,2.531015,1.051776,4.48275,6.936485,6.692996249999999,3.499033333333333,0.8103824999999999,2.9187966666666667,4.18086,3.96301,4.36149,4.428445,3.995315,4.983465,3.104205,4.07947,1.8362299999999998,2.216355,1.37214,3.846825,9.61589,2.994695,3.568595,5.82855,2.812875,4.084935,2.536093333333333,2.9296456666666666,3.36496,3.111515,3.767895,3.20698,3.53406,4.94572,5.79955,4.020205,4.612285,4.875935,3.88465,2.752135,5.0428,7.4357275000000005,0.9023944444444444,4.144165,3.91612,4.756495,5.78055,5.17875,2.61383,7.07639,2.3954299999999997,3.270985,5.99275,3.71077,4.32841,2.2332,1.7334125,3.1696333333333335,2.099056666666667,2.14825,2.84826,4.23398,4.48174,4.002165,3.55757,5.02506,3.5251,3.07248,3.8454675,5.9127,2.996225,5.303243666666666,3.803255,3.815475,3.66398,7.75519,3.89179,3.60209,4.27596,4.81788,3.089435,11.1192,1.2869066666666666,2.17007,3.67915,2.7310033333333332,2.7310033333333332,2.10317,7.6927916666666665,0.8990455555555555,3.058745,0.91643375,2.02712,4.04862,5.10135,3.81197,4.0052,2.7997566666666667,3.241555,3.741365,3.859525,4.115255,2.9409,2.5252733333333333,4.06492,4.771353333333334,3.137995,4.20773,1.5699400000000001,1.702766,2.658256666666667,5.56455,2.1530225,1.7398,2.0729525,4.256595,4.510925,3.00862,2.642375,0.4712611111111111,2.33007,7.429975000000001,3.18415,1.4774133333333335,0.8400825,1.22644,2.05775,2.0917325,0.7460249999999999,2.0309833333333334,4.3188115,3.898495,4.666525,2.4090366666666667,2.0322,6.34478,2.903475,2.306173333333333,2.306173333333333,2.306173333333333,6.576833333333333,2.2885,3.33686,2.479695,0.45854,1.071364,2.3465175,5.8507725,0.4476588888888889,3.674085,3.9782075,5.9384,3.1516555555555557,0.4476588888888889,3.1516555555555557,0.9058125,1.215122,5.57935,4.002525,6.5898925,3.8978,4.58124,3.58002,4.05144,4.82912,5.51485,6.19015,3.88107,3.33807,5.07155,4.568915,4.03765,4.46271,4.16524,1.321445,2.590926666666667,1.2957,2.0769975,3.116605416666667,1.49383375,6.8009375,5.493923333333333,2.6810566666666666,4.048725,3.0393,4.726795,2.95609,4.151855,4.713,9.33519,5.16765,4.337395,2.33456,2.730485,2.1032800000000003,0.557195,2.1402057777777777,6.15995,5.26725,4.945885,4.33141,0.5739746666666666,1.9664025,1.4249825,4.149425,0.6941453846153846,6.074277499999999,2.0039075,1.0785775,1.0785775,3.8967219999999996,1.9812819999999998,2.9063266666666667,2.60817,4.526705,3.486405,3.486405,4.22924,5.833493333333333,2.7696799999999997,2.4008,3.2843033333333334,5.10965,1.8657620000000001,2.71523,5.6462,4.938365,4.77211,4.216185,3.8859683333333335,4.505195,3.506260833333333,3.0066633333333335,2.2781775,4.295185,5.2507,3.2336762500000003,5.1032,5.5357,2.0001466666666667,2.3463166666666666,5.9417,6.99475,1.176154,2.7367,2.410065,2.5731566666666668,2.464535,2.527825,2.6617515,1.0375133333333333,1.91624,2.6702,2.38303,2.3324266666666666,2.3324266666666666,2.9743749999999998,3.044075,2.228510576923077,2.723225,2.343555,2.01146,1.568068,5.179385,15.039768166666667,2.904363333333333,3.1226000000000003,1.808852,1.808852,1.627425,1.627425,2.838276666666667,3.728666666666667,2.8175166666666667,2.0042225,2.0042225,3.8859999999999997,2.28876,1.1046166666666666,1.406297142857143,3.0132066666666666,2.9144466666666666,3.5444999999999998,2.5939016666666666,3.377966666666667,3.0957399999999997,0.667814,2.67475,3.5948360000000004,6.92051,4.6963,5.58195,4.233555,3.41239,4.795015,4.53845,2.826356666666667,4.08697,1.376285,3.16848,5.643,5.16735,2.558465,1.158445,2.919105,2.37966,3.0661400000000003,1.5546283333333333,0.7134128571428572,3.0489266666666666,4.4005608333333335,4.78354,4.00905,4.708485,3.0003166666666665,2.154246666666667,3.2997225,2.5465033333333333,3.27967,3.09646,3.3042166666666666,2.5818533333333336,2.26485,3.5374,2.94111,5.0906,4.593725,5.1330358333333335,5.1330358333333335,3.431175,3.91083,3.823155,3.55444,2.71852,4.08289,3.22012,3.0026333333333333,6.2743,0.7620933333333334,5.42205,4.61958,2.60364,5.1470424999999995,3.4166666666666665,1.7751833333333333,1.2703157142857144,2.07022,1.01832,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.5687300000000001,0.5687300000000001,1.16479,0.8307122222222223,1.6930126262626264,0.9303728571428571,0.9303728571428571,1.2646304040404042,0.4283822222222222,0.3444622222222222,1.2100075,1.4741375,2.5762300000000002,2.247805,6.2054366666666665,2.9825233333333334,3.82188,3.122095,4.941890285714285,1.2797516666666666,4.681955,3.96223,4.96486,3.17816,1.488116,4.189808076923077,3.680655,4.36279,4.192745,2.674905,4.924435,4.77461,4.56894,1.223822,3.925505,4.785275,3.228255,2.4185733333333332,3.3467,2.434175,3.324125,4.462975,2.9549566666666665,4.47526,8.786460000000002,3.237515,4.930385,4.2832,4.269801666666666,2.6294033333333333,4.75097,0.9379585714285714,4.210255,3.32144,2.33134,1.19309,2.913425,1.3212283333333332,0.5032353333333334,3.518266666666667,4.09012,5.1193333333333335,3.6055333333333333,2.4339375,2.80792,4.7208,3.9047,4.44223,2.63715,2.203863333333333,3.87089,3.942885,4.081145,4.91953,4.12908,3.73188,4.54612,3.0078099999999997,4.02562,2.2173616666666662,4.586575,5.17535,3.185895,4.305425,2.56254,3.854685,5.60585,4.01796,5.11615,4.74201,4.914765,2.3105766666666665,4.839545,4.872035,4.67526,2.13793,1.14955625,3.985755,4.67761,4.127555,5.1556,1.79012,3.81349,2.20354,5.01155,4.494885,4.60535,2.30886,4.15529,4.66761,4.27738,2.613566666666667,4.76739,4.64983,5.2316,3.755345,2.13793,2.20045,3.00751,5.1331,3.93676,4.11247,3.51735,4.847385,2.174835,6.66458,5.50665,4.671835,5.271439375,5.159595,5.12245,3.29138625,2.40817,2.40817,3.87003,3.40714,4.463475,2.1776175,2.84022,0.98073,2.630196666666667,2.875496666666667,2.3826533333333333,3.034466666666667,4.249495,2.8708733333333334,5.2602,2.52984,4.52942,4.888315,2.06977,4.050825,1.6898600000000001,2.56035,4.16106,0.9116690000000001,5.08285,4.4943,5.9950399999999995,4.66845,5.5661,1.2754028571428573,4.653985,6.4223,8.506775000000001,3.1685133333333333,3.239466666666667,1.901644,0.8265079999999999,3.79919,1.0193828571428571,5.0225,4.40588,5.81245,3.12178,3.67034,1.091702857142857,3.541655,3.55259,4.36546,3.76431,3.017875,2.91545,2.369195,4.171475,4.811445,5.61315,4.454465,3.680925,0.3923688888888889,0.3923688888888889,0.3923688888888889,0.3923688888888889,5.5515,3.00153,6.11265,3.02918,5.0586,4.553215,3.668125,2.06535,2.4643366666666666,1.4563433333333335,4.94046,2.8433333333333333,4.258075,3.927275,3.56064,1.640815,1.15186875,4.349385,2.43969,6.088321666666667,4.34272,4.889245,2.225625,1.5330916666666665,0.9050833333333332,3.270735,4.32935,3.653285,2.091155,8.047785000000001,4.666675,3.3452,2.2571000000000003,0.477412,3.6232,2.869905,2.02018,2.05028,2.721385,2.787775,2.434955,2.948566666666667,3.067865,3.412695,4.591665,3.775225,4.23891,3.02258,5.870106666666667,0.61819,4.4975,5.6093,4.98586,4.51933,3.3951666666666664,5.1534,4.52519,4.144915,5.378301666666666,5.33515,4.54027,4.54451,3.7602375,5.21775,3.077105,8.94413,5.02,4.30748,4.72781,4.96184,5.698,3.496055,1.1523666666666665,5.993024999999999,3.377665,4.73141,1.4059383333333333,4.44017,3.423495,6.803448333333334,4.72925,3.0243,1.98694,5.1106,2.15946,0.88749875,4.436695,6.14545,1.89081,2.3916333333333335,2.7286366666666666,3.023685,3.52037,3.669955,5.25215,1.7155166666666668,4.3302,3.909662,3.214335,3.7650666666666663,3.56924,2.88299,2.747155,1.8913,2.5028133333333336,2.7223966666666666,4.44519,0.5892158333333334,2.5521766666666665,4.175195,3.03864,3.5521333333333334,4.496905,4.92424,3.89095,16.45562690909091,2.4940633333333335,4.094666666666667,1.436214,0.9026009090909092,0.9026009090909092,0.9026009090909092,0.9026009090909092,0.9026009090909092,4.71326,4.752245,4.75173,9.073937,2.3912225,2.3912225,4.57882,4.757729166666667,1.3303625,2.041193333333333,3.8255,2.40513,2.3399375,2.2473125,3.00317,3.664606,1.6452325,3.52338,0.8509714285714286,2.7983700000000002,2.7807666666666666,3.0218233333333333,1.4761666666666666,3.0573866666666665,2.2171233333333333,0.96284125,2.6780266666666663,2.6266833333333333,1.3093444444444444,2.457273333333333,2.668146666666667,2.161486666666667,4.38727,1.8304133333333334,2.899426666666667,2.090935,2.703606666666667,1.1126555555555555,2.798503333333333,4.667668666666667,3.4819333333333335,1.04960625,2.9897533333333333,1.3491375,2.38729,2.3563899999999998,4.783523333333333,3.0392033333333335,2.42635,4.722664,2.55257,2.14111,2.799186666666667,2.486153333333333,1.6032866666666665,2.7665066666666664,3.075003333333333,3.0159866666666666,2.3801200000000002,3.0333366666666666,2.5581,2.40469,3.6947200000000002,3.6947200000000002,3.000363333333333,1.9815399999999999,1.8419299999999998,2.3887533333333333,5.339766666666667,2.9235933333333333,1.9055666666666669,1.7667975,3.025176666666667,4.318115,2.3524266666666667,1.020102,2.645118666666667,1.5474566666666665,3.6199999999999997,2.0439700000000003,2.5144866666666665,2.0285033333333335,3.0533866666666665,1.219516,1.5959199999999998,1.3813766666666665,4.192306666666666,2.573123333333333,4.174855,1.0605255555555555,3.993945,1.9846766666666669,1.985625,1.769462,1.6830666666666667,3.3625000000000003,22.86107982034632,7.7523,2.61736,3.454468333333333,3.03504,10.010087333333333,3.1158699999999997,0.964665,2.4924166666666667,2.4299666666666666,2.0998633333333334,3.04964,2.59787,2.55806,0.9729699999999999,3.1922333333333337,2.584163333333333,3.0272066666666664,2.7766466666666667,2.460383333333333,2.1460933333333334,2.091806666666667,2.921113333333333,2.5799933333333334,2.0438,1.60747,5.1722850000000005,4.643265,2.3013125,2.978875,2.23142,2.45758,8.13862,1.88579,4.860305,2.501425,1.95213,7.59759,2.9123466666666666,2.8777833333333334,2.517925,1.863278,1.4685426923076923,3.252803333333333,3.0342333333333333,4.137735,1.46107,3.5619666666666667,1.62398,1.62398,4.21411,4.024345,2.843165714285714,2.843165714285714,5.887893333333333,3.57885,0.421838,11.837437094017094,1.1445433333333332,0.92204,3.907284166666667,1.4657204273504274,1.9078525,6.068759999999999,3.71386,0.7113363636363637,2.15881,4.828513575757576,2.3779766666666666,3.905955,1.3057571428571428,5.2496,5.04595,4.89049,3.1219687499999997,1.8987500000000002,2.2703466666666667,2.4742366666666666,2.3307366666666667,2.17844,5.105896666666667,4.516025,4.138465,1.75938,4.64091,4.231655,3.319706666666667,2.08136,4.94087,2.5215633333333334,9.00316,6.501545,1.765885,2.13647,1.7178280000000001,4.5402,4.5402,2.9792666666666663,2.7023266666666665,2.880844166666667,4.70928,9.545815,4.356325,2.43264,5.51125,4.220805,5.1688,1.9993200000000002,0.8516925,1.3274683333333333,4.379335,4.82941,3.6567666666666665,2.7709799999999998,3.8178666666666667,2.1621866666666665,4.15353,4.968315,3.29145,5.6518,3.342,3.654995333333333,3.3026700000000004,3.390333333333333,3.447366666666667,6.23105,2.90405,5.4756,4.65974,3.338555,3.29185,3.29185,5.7584124999999995,12.123695833333333,3.7401666666666666,5.941715,7.417116111111111,3.65673,2.512916666666667,4.0172,1.2994766666666666,3.762345,2.611825,2.9769566666666667,2.974816666666667,3.2364333333333337,2.0652,2.35918,2.7607466666666665,2.477743333333333,2.9863633333333333,3.140693333333333,3.82238,2.58897,2.9348899999999998,3.805875,2.8395200000000003,2.6737333333333333,1.11997,2.062695,2.800463333333333,2.4119733333333335,2.5397066666666666,2.409543333333333,3.4992666666666667,2.32933,2.490953333333333,2.4759766666666665,2.9389333333333334,2.673883333333333,2.8093233333333334,2.53684,3.1502700000000003,2.8236233333333334,3.2827919999999997,2.6391933333333335,2.4958933333333335,2.34499,2.7741233333333333,2.5323733333333336,3.5215,3.4251,2.491095,1.941795,1.941795,0.834425,1.520322,3.98248,3.203555,2.50819,2.0652,2.98392,1.21031,2.700203333333333,0.5646053333333333,3.3861333333333334,3.0701733333333334,3.205155,2.9654366666666667,2.6679033333333333,2.399286666666667,2.92588,2.608286666666667,3.3141366666666667,4.504426666666666,1.503514,2.84459,2.4145266666666667,1.7426733333333333,2.0588533333333334,2.8052799999999998,2.6783033333333335,1.6584240000000001,2.5162166666666668,2.5542266666666666,2.6670599999999998,2.5577099999999997,2.753406666666667,2.89643,3.1292766666666663,1.36451,2.74536,2.3410100000000003,3.549466666666667,3.8464666666666667,1.9658775,2.1713299999999998,3.1778933333333335,2.3373399999999998,3.3927666666666667,2.695316666666667,2.89995,5.39395,3.4166666666666665,2.116006666666667,1.61211,3.21912,6.355543333333333,2.919286666666667,3.59,2.8024966666666664,2.9200933333333334,4.539227333333334,1.530694,1.1717888888888888,2.112573333333333,1.75631375,4.634775,2.7999266666666665,3.09999,3.16025,3.26838,2.132686666666667,3.5294000000000003,2.48964,1.5703239999999998,2.9272266666666664,3.55021,3.5401499999999997,3.315865,3.58579,1.67146,2.816855,3.467195,3.42664,2.3675833333333336,3.7154000000000003,3.981533333333333,3.9559333333333337,1.304715,5.526099,3.191225,1.4333533333333335,3.32576,3.328805,2.95545,3.61148,1.81449,1.81449,3.1181666666666668,2.8990033333333334,3.013125,5.1407,4.23433,4.13515,1.1425800000000002,3.1514966666666666,2.501253333333333,4.37781,3.08668,4.856086666666666,2.6516433333333334,2.4226033333333334,2.6044966666666665,3.50399,3.34815,1.58362,3.0506466666666667,2.76159,2.3024325,4.427075,1.3272883333333334,2.83853,4.16174,2.612435,3.60245,3.986235,1.6392475,1.5593133333333336,2.439285,1.1204583333333333,2.1493211904761904,1.9210325,0.4671214285714286,3.79455,2.550775,4.545985,4.32907,2.89409,4.6542225,3.32673,3.1522466666666666,3.529333333333333,2.4566433333333335,3.3265999999999996,2.6860433333333336,3.0787999999999998,2.3520366666666668,0.6787076923076923,2.3964766666666666,0.6192442857142858,1.97524,2.36281,3.10437,3.1783699999999997,1.37442,1.4404825,4.213435,4.350545,3.410185,3.45198,2.994445,2.3740575,4.04407,7.657226666666666,3.439845,5.525335,1.5949825,3.858685,2.00109,4.165205,3.47863,2.17939,4.006175,3.083815,3.768825,4.181225,2.1476325,4.08656,6.004655,4.981925,3.43887,3.048045,1.668675,2.0092775,3.607895,3.44574,3.13846,3.550605,3.509955,3.4756,1.570545,3.633115,3.12103,1.6908575,4.243425,1.0654000000000001,3.20514,1.621025,4.022295,4.595088333333334,3.679805,2.7694975,3.541585,3.235395,1.90239,2.2491075,3.9415999999999998,2.35371,5.7845949999999995,4.337775,4.45257,2.336005,2.49279,4.49598,4.339345,2.1447580000000004,2.1447580000000004,5.644395,3.7989075000000003,2.6704274999999997,2.874855,1.9557900000000001,2.777535,3.2185,3.574125,2.6395875,3.271915,0.958782,3.739,3.0529,4.04499,2.664725,1.5566975,1.4031,3.055055,5.896739,5.7267875,3.71751,1.5404975,4.283455,3.771215,0.8109133333333333,2.978855,1.390338,5.3410575,1.46586,3.92284,2.0487775,1.37442,3.152805,3.356375,4.697635,6.632765,3.98552,4.856490833333334,2.145185,2.729075,4.21979,3.70001,4.20694,4.27209,0.9194,1.65757425,1.09717625,2.566345,2.14173,4.858305,1.09717625,4.38997,2.1893,1.6054725,1.6054725,1.6908575,4.0024,4.290715,3.77915,1.430422,1.430422,0.96252,3.47583,2.069095,6.020185,4.29915,3.78387,2.871776666666667,0.9821714285714286,3.502465,2.85346,4.191255,3.555875,3.7385850000000005,3.7385850000000005,3.415895,3.955375,1.89686,2.80545,0.9699688888888889,2.13876,3.56911,2.4323366666666666,3.296784166666667,3.296784166666667,2.848585,4.43306,4.362255,3.742075,3.52753,3.827685,2.5470166666666665,4.267589166666666,2.755725,3.910355,8.27888,4.833775,2.791125,3.11999,3.104265,4.769525,3.067618,7.2538575000000005,4.516007,4.73256,3.496955,3.74631,3.547455,4.647355,4.59383,2.540965,4.670605,6.460335833333334,2.65372,2.1578713333333335,2.99602,3.288365,3.8512,5.91005,2.0599166666666666,2.651876666666667,2.9539,3.3995050000000004,3.5905666666666662,7.144202,1.52599,4.878081666666667,4.878081666666667,3.197025,3.7538291666666668,3.08674,2.3638966666666668,5.101,4.457267,2.074182,3.785835,3.9882,3.4258391666666665,2.867665,2.945975,5.87371,3.530445,5.46545,3.127825,4.605645,4.18716,3.70636,2.8990033333333334,2.19822,2.92553,3.75814,2.926705,3.4282933333333334,2.597335,6.026391666666667,2.526825,1.81536,3.157913333333333,2.3161333333333336,3.773105,2.69355,0.8109133333333333,3.803175,3.99246,3.866305,5.9564,3.016785,3.22176,2.950836666666667,2.950836666666667,3.8950241666666665,4.129455,3.733455,1.9655525,5.7326175,2.0744825,4.6287,3.73246,7.83469,2.815443333333333,1.3548966666666666,3.19296,4.455635,0.6280925,3.881315,3.58162,2.92297,2.976875,4.110945,2.033793333333333,2.28919,9.315735,3.35665,2.948595,1.46586,3.737,2.65066,2.3562575,4.03856,5.3081499999999995,1.60868,1.174275,1.14472,4.37794,4.659865,3.684845,3.1782500000000002,3.1782500000000002,1.570545,2.284465,3.242974166666667,0.9749966666666666,3.04926,1.0426175,1.67146,3.19384,3.49144,2.72102,2.473195,2.6733358333333337,4.854935,3.716015,3.115205,2.85059,2.748315,4.090835,6.8100000000000005,3.946345,0.92280875,2.6159525,8.67583,4.49185,3.94299,1.0894025,5.014075,1.3945916666666667,3.73398,3.73398,3.755905,8.779330833333333,0.8288022222222222,4.60857,4.42861,2.5130166666666667,4.3017775,3.84838,2.1126625,9.896799999999999,1.833465,2.41679,3.38036,1.6904166666666667,4.206565,3.31542,3.17194,3.418639333333333,2.937215,2.9979,1.0913783333333333,7.31665,4.021895,3.919235,3.854635,1.87042,2.7694975,4.1567675,3.642505,0.6319976923076923,3.694425,4.122315,4.62332,2.0576525,1.399846,3.917785,4.17112,9.12371,0.70411,0.6703,0.6703,1.7319566666666668,1.4035333333333335,1.437284,1.7210833333333333,4.67754,1.2479033333333334,0.8370428571428572,3.955305,3.41155,1.1782175,3.25053,4.734255,3.9244,0.71088,1.9472,9.56906,3.5063283333333333,3.471815,3.29459,1.7637775,2.55456,2.528165,4.408695,4.155705,3.60521,0.9069971428571428,1.36805,0.928825,4.2172625,4.32608,4.17441,0.9749966666666666,1.6930679999999998,3.8424,2.296929642857143,5.2201275,1.0460975,4.77353,0.5872216666666666,0.5872216666666666,0.5872216666666666,10.127345,3.934505,1.0426175,3.789935,4.77602,2.78486,3.212665,5.549589166666666,3.256655,1.905413888888889,2.589323333333333,0.71088,1.521793333333333,0.4937688888888889,0.8115783333333333,1.4834316666666665,4.09696,3.62178,2.004705,7.4381933333333325,4.8071391666666665,0.6544033333333333,6.1684,4.7301866666666665,3.29303,4.503665,7.460775333333333,3.8618619047619047,4.8071391666666665,4.313697833333333,2.439973333333333,4.069335,3.55697,7.181015,3.30452,0.477412,1.503468,3.80586,1.7682099999999998,1.174275,3.84278,2.3418,1.6646,3.15938,1.7011040000000002,4.42662,4.22731,4.07611,4.694435,5.78216,2.57067,3.77328,1.390338,2.272985,3.26438,3.19035,2.074182,4.07987,2.567175,5.1181,3.00775,2.41451,3.3686475,1.8540400000000001,3.35157,0.9749966666666666,2.1444345,1.14472,1.589915,3.44587,1.52599,1.4834316666666665,1.914465,3.72805,7.58701,0.9069971428571428,1.0894025,1.293226,3.458765,3.63668,1.293226,3.887385,2.272985,0.6280925,0.9749966666666666,1.7319566666666668,1.390338,0.4671214285714286,1.67865,4.276903333333333,2.5130166666666667,1.3777116666666667,3.06261,1.304715,1.833465,2.7532733333333335,2.589323333333333,4.862875,2.7532733333333335,0.8109133333333333,2.59376,2.3276525,0.09965136363636364,0.09965136363636364,0.09965136363636364,0.09965136363636364,0.09965136363636364,3.1898966666666664,2.7338233333333335,2.6696066666666667,2.9879266666666666,4.57191,4.32208,1.769462,3.757675,3.577425,2.06364,4.9323075,2.7693,2.45115,2.35512,2.79313,4.484605,8.39625,2.3150475,1.9604166666666665,3.059107142857143,0.9800871428571429,1.3761516666666667,2.3758733333333333,2.0053966666666665,1.5831625,2.755053333333333,2.0839966666666667,2.48266,2.60859,2.67386,3.64448,3.57761,2.5617466666666666,1.292392,3.717335,3.56178,1.4750133333333333,1.2446,1.2446,1.2446,3.547435,2.710843333333333,1.1858966666666666,2.1320533333333334,1.3487057142857142,4.28474,1.6006733333333332,6.13457,3.0972150000000003,2.3848,3.0322560000000003,3.0322560000000003,5.2186,3.21377,4.594725,4.89437,2.1743725,2.976383333333333 -GSM1946761,1.0,1.938865,1.938865,1.4964333333333333,5.7037,5.61075,2.552894736842105,1.5189933333333334,8.000517794117647,4.652885,3.0920533333333338,2.13177,2.221755,3.669235,4.351725,1.9402920000000001,1.47855,5.01455,2.42172,2.4514275,5.3385,5.307618333333334,3.945915,2.436975,1.810292,4.062875,5.04295,4.257225,0.8093766666666666,1.6152961111111113,1.9494727777777778,2.2702625,2.2625725,1.2230214285714285,0.7406483333333332,3.2188264285714285,1.473895,1.743995,1.313115,2.08624,1.220785,1.2041825,1.152072,1.4446059999999998,0.8664759999999999,0.920088,0.7921039999999999,1.2044314285714286,1.786054,1.783474,1.519316,2.02022,1.7673200000000002,18.329976333333335,0.37167,0.8049099999999999,1.1311120000000001,1.710024,1.8416720000000002,2.05222,1.0400357142857142,1.0400357142857142,1.0400357142857142,1.1081066666666668,1.3240539999999998,4.87277625,1.0688275,2.2344,2.112355,2.562275,1.04476,2.3144925,2.439875,2.1120425,1.3727525,1.8466325,1.51539,1.5944025,2.39105,4.40498,4.845915,4.969905,1.4715266666666666,4.68983,4.536196666666667,4.026345,4.114045,1.1508075,7.52709,0.58280625,0.58280625,2.26566,1.14932,16.4293,4.446675,5.08375,5.1626,4.0968,4.0777,5.34545,0.47859,2.4147579166666664,1.7694225,2.401675,4.99617,4.43722,1.3567125,2.9372133333333337,2.9701133333333334,2.980316666666667,3.4652,3.18692,4.88873,2.7827585,4.479815,3.126163333333333,0.7353563636363636,1.660914,2.3316025,4.50241,3.858995,0.570863125,3.68014,3.829385,0.86296625,4.29641,1.751644155844156,2.12513,2.5765,2.1735075,3.407655,5.48975,3.269675,2.8296466666666666,3.316406666666667,2.9021566666666665,4.00494,2.5832633333333335,5.72365,3.28731,4.968585,3.431195,2.728885,3.636045,2.4012475,6.737236666666667,3.683405,3.61142,4.31702,3.33551,4.70619,0.79066,9.344665714285714,3.840275,2.2000933333333332,2.0320183333333333,3.6075,2.42279,4.648505,5.602,2.1921575,4.902739166666667,2.77125,4.91328,2.1921575,2.795693333333333,4.472385,5.16453,5.3469,8.37495,3.39135,4.54737,2.92551,5.36975,4.904335,1.6302133333333335,7.82083,4.51224,4.16474,3.530465,3.612295,3.540725,2.233035,6.111079999999999,2.26865,4.480005,4.1423,5.25745,4.81001,4.587885,1.7168166666666667,2.66935,2.823545,1.83914,1.83914,5.970421428571428,3.072875,1.83209,4.408695,4.49667,3.12878,1.4304716666666666,1.1853666666666667,6.92265,3.301965,6.94005,4.68902,4.573795,3.63706,3.121105,3.746375,3.488635,3.790155,4.113975,6.12465,2.71214,3.627805,9.055393333333333,4.566435,3.492766666666667,3.1747300000000003,2.7717500000000004,3.8467000000000002,4.328133333333334,1.7653,2.6649766666666665,2.2733633333333336,1.7470919999999999,1.7116033333333334,2.50961,1.7497575,2.13247,3.191466666666667,2.6240633333333334,2.3937433333333336,3.019433333333333,4.536196666666667,3.71262,3.723925,3.44668,5.14595,1.4515616666666666,2.10328,2.821179142857143,2.1352,2.52759,2.6753400000000003,3.4267,1.9161740000000003,1.2818966666666667,2.81968,0.633792,1.5781833333333333,0.49992111111111115,0.49992111111111115,1.6475166666666665,2.7821833333333337,2.61574,1.4430733333333334,1.4315933333333335,0.3402446153846154,2.6990766666666666,0.633792,1.25364,0.2467424324324324,1.4135666666666669,2.1114175,3.4708666666666663,3.0411900000000003,2.5635133333333333,2.5692033333333333,2.68497,2.3457866666666667,2.4958966666666664,2.62656,2.1884033333333335,2.5512799999999998,1.8828666666666667,2.585025,4.651465,0.698565,1.9884666666666666,2.6397133333333334,2.1102666666666665,3.61801,1.508282,2.5092866666666667,2.50973,4.2135,2.0311266666666667,6.699420952380953,1.6838142857142857,2.6551633333333333,2.09441,2.17017,3.7974,2.01596,1.9852225,4.588235,2.5967233333333333,2.1169975,4.079865,4.19978,4.278105,3.640605,2.21176,3.335215,5.069283333333333,4.12881,3.74585,4.15959,4.448815,2.93819,4.49658,3.45678,0.872025,4.89452,1.3153,4.716005,3.693215,6.121807,3.828335,4.074235,0.946015,2.129615,3.71137,3.962015,1.0493428571428571,1.4796988034188034,2.2101645238095236,3.4883705714285713,5.0714375,5.500363,2.2088075,4.075245,5.62315,0.3236357142857143,3.68603,2.330475,0.9857875,4.235295,2.033165,12.075765,1.2368875,1.816215,3.0724400000000003,2.3674,2.1307663157894736,5.164551315789474,0.3875563157894737,1.7234866666666668,2.984833333333333,0.9632225,3.0420233333333333,0.9394128571428572,5.4054,3.993655,2.05279,5.87415,5.39205,2.5804,1.1652985714285715,4.106109999999999,4.85754,4.15222,0.9222454545454546,8.08702,2.77077,4.574515,2.6476933333333332,2.5859900000000002,4.847325,2.592216666666667,2.93891,2.2537266666666667,2.4290066666666665,3.283915,2.9721966666666666,0.34038375,3.904405,3.620365,3.866475,3.621355,4.546465,6.0854170000000005,4.055585,1.721335,5.8309,4.53564,4.45883,4.6213,1.3817766666666669,3.004723333333333,3.2529800000000004,2.62135,16.643485,4.038075,3.78774,4.315605,5.10115,2.513165,5.170844861111111,1.8703425,0.7514722222222222,2.577425,3.284315,4.06943,3.683855,6.399030000000001,2.9225666666666665,2.078395,2.045455,3.4016,4.96232,2.334055,0.38873933035714286,2.851388695652174,1.970585,1.13449,0.5242336781832299,0.6597280260093168,0.38873933035714286,0.38873933035714286,0.38873933035714286,1.14391,1.42259,0.8177075,1.41473,4.573105,0.21240529411764705,11.61527987012987,3.229426666666667,2.8458400000000004,4.364385,4.189775,4.10901,2.36771,4.53895,4.193440333333333,4.56017,3.907165,0.725316923076923,3.294226666666667,4.107033076923077,0.5598535714285714,3.15233,2.85337,4.61491,0.7418727272727274,1.82101,4.19062,3.95129,1.88867,1.7833266666666667,1.54427,3.6265666666666667,3.83049,2.96375,2.8441333333333336,5.3523,5.62625,4.69793,3.036096666666667,3.82901,6.0604,3.4644,5.8921,0.4177766666666667,3.3691333333333335,4.172596666666666,1.9797900000000002,2.472625,2.8046625,5.353723333333334,0.709705,2.364445,4.965905,4.151515,1.0099457142857142,4.42607,4.72114,5.0694,3.3487333333333336,4.52187,3.458785,4.1941,1.1719933333333332,3.4871,2.71651,4.678135,4.110855,4.69881,5.71865,4.20004,2.576605,5.21231,2.8236333333333334,2.817275,3.3744,2.8779833333333333,2.8595133333333336,2.3801633333333334,1.81336,1.5712133333333334,2.2002466666666667,0.8129928571428572,1.67526,2.2575866666666666,1.99725,3.143186666666667,3.3610666666666664,2.959046666666667,0.8733866666666666,5.1123,3.3227333333333333,5.551411249999999,2.7202479166666667,3.070456666666667,3.366433333333333,1.561285,1.561285,2.3043335064935064,2.3043335064935064,3.0358556493506494,0.4789342857142857,1.6261400000000001,2.9561666666666664,3.542066666666667,2.156394761904762,2.156394761904762,2.156394761904762,7.522618630952381,4.379594761904762,0.9731818181818181,4.25344,4.7834924999999995,2.26044,4.63149,3.09197,2.148845,4.84538,3.0862499999999997,3.185916666666667,0.93821,1.8893000000000002,3.23348,3.0386166666666665,2.5112533333333333,5.742,3.492366666666667,3.651066666666667,4.796283333333333,1.84335,2.673973333333333,2.989183333333333,1.0049844444444445,2.08754,4.0712,7.7325525,1.4825525,2.87764,4.121135,1.954824,1.9261275,1.9261275,1.08582625,4.719595,7.83499,4.068495,6.463609,4.71678,1.9030666666666667,4.291415,3.43322,4.594965,5.06303,0.34299894736842107,2.89271,2.56059,4.34003,4.083815,1.8336480000000002,1.9748825,2.6676,4.50611,3.975325,3.16697,2.45568,1.665486,6.74967,4.15196,4.50074,3.61172,4.41888,5.04315,5.2893,3.919625,3.64213,1.862995,1.2344385714285713,2.90049,3.849355,4.012,5.505125,5.639005,2.127485,2.29137,2.5657666666666668,2.723793333333333,2.963783333333333,0.6414092857142857,2.14594,3.55414,1.09654,4.90056,3.24053,6.1026925,1.2737701515151514,1.2737701515151514,4.203765,3.665935,3.643305,5.4766,2.71819,2.2318000000000002,3.933445,3.46466,2.1098375,3.290566666666667,2.613156666666667,3.968455,3.2795075000000002,4.194665,4.182675,0.9932311111111112,2.504235,4.469455,4.36227,3.24743,2.4601866666666665,4.341275,0.8590411111111111,0.8590411111111111,0.8590411111111111,0.8590411111111111,1.7062594444444446,3.87929,3.87929,1.63819,7.291821666666667,3.78832,4.484805,3.3826666666666667,2.506425,4.85296,3.897895,4.808815,5.50055,1.7086075,4.534785,4.1513,3.22076,4.50878,3.290285,2.7945,5.0322,1.829075,4.481805,1.53121,3.4952058333333333,3.024915,1.7869975,1.2200016666666667,2.997185,4.861925,1.3712,0.8327977777777779,4.141545,1.2785975,5.360728,5.1331,1.3035871428571428,3.612245,0.7551655555555556,2.63615,2.7345433333333333,2.4315366666666667,2.546075,4.62743,2.8901258333333333,4.569455,5.11605,4.34424,4.369275,2.31868,1.2479071428571429,4.18082,5.06365,1.4290025,1.4290025,4.06785,0.22318733333333332,2.1325333333333334,0.22318733333333332,0.22318733333333332,0.22318733333333332,0.22318733333333332,5.0479,2.6133933333333332,3.452565,3.53279,3.0299066666666667,4.474845,2.599606666666667,0.9657325,0.9657325,0.7678699999999999,0.7678699999999999,3.56736,2.316135,3.894245,1.675852857142857,1.675852857142857,5.06097,0.5490735714285714,2.1908075,7.437478333333333,5.1427,3.042125,3.34313,1.026935,2.136395,2.039095,4.46412,4.44885,4.493135,3.72547,1.308377142857143,2.56102,1.98887,7.34608,1.795675,4.29776,4.9379,2.66974,3.866015,6.26952,7.66971,3.94652,5.04955,6.01155,2.15154,3.24489,2.46323,2.662765,1.900225,3.708755,4.615605,5.413021666666666,6.49689,4.341055,1.0091166666666667,1.456615,4.084535,4.220665,2.1595025,5.2801,4.865435,4.6569,1.7040733333333333,3.7405000000000004,1.7470100000000002,6.287873333333334,2.6719033333333333,2.38394,2.169096666666667,2.36713,3.2073933333333335,3.5673,3.7731999999999997,3.4422333333333337,3.4410000000000003,1.651506,4.31722,3.508635,3.599435,0.3828175,2.95426,4.109755,2.5473,5.3957,5.0435,4.737825,6.52712,5.34585,2.32069,4.09101,5.0709,1.58356,5.19835,6.0752,5.14645,4.55625,3.328505,5.41585,5.0421,3.976765,5.496253333333334,7.5050550000000005,3.871295,1.17008,1.5360416666666667,2.658145,1.82886,4.61993,4.058765,5.508767499999999,2.5099833333333335,2.6759633333333332,2.6891366666666667,2.40219,2.65108,1.0899,0.5050470588235294,3.763455,3.92447,3.6314666666666664,3.981625,2.91137,3.2551,5.588368333333333,3.3110700000000004,0.5707264705882352,3.479615,5.53595,1.7411425,1.537226,3.62465,3.97334,2.4696666666666665,3.9939666666666667,4.686375,2.6226233333333333,2.2106533333333336,2.30539,2.4677866666666666,2.591435,4.1723333333333334,5.0076608333333334,7.992161666666667,2.21444,5.27875,3.9934150000000006,6.505516,3.3360333333333334,3.2644,2.18813,2.032506666666667,1.31272,1.31272,2.6773866666666666,2.288386666666667,2.8272600000000003,5.13435,1.6891079999999998,2.159565,1.775325,0.63789375,3.907125,0.6888608333333334,1.203385,3.36775,4.75307,4.53867,1.6107275,4.813015,3.17895,0.8997785714285714,4.430455,3.6764995238095244,3.178506666666667,2.54583,4.898585,0.28509241379310346,2.576747666666667,3.153395,1.3753075,3.543945,6.38865,2.257775,1.4156233333333335,3.689365,3.721575,2.6982233333333334,2.6982233333333334,3.485715,4.28385,4.670235,5.348246666666666,5.4271,0.9622088888888888,2.8068500000000003,2.720413333333333,4.169375,5.13905,5.4229,5.05595,4.399,3.8824666666666663,3.7853333333333334,3.4699333333333335,3.9520999999999997,3.1704233333333334,2.9896766666666665,0.66203,2.516525,2.4223525,3.90197,3.10069,3.1958066666666665,0.7334508333333334,2.310085,3.674555,4.75159,5.5414,4.36501,2.05551,2.05551,0.9139889999999999,3.644685,4.54918,4.2191,4.826988571428571,3.205845,5.55735,0.6079736363636363,3.56814,4.376775,4.4021,3.5191299999999996,0.9522828571428572,3.78474,4.111885,5.13745,3.707455,5.0442,2.66321,4.29031,1.5770425,1.0206142857142857,2.74094,4.975265,3.917995,3.111475,1.518355,4.1539,2.4858225,2.891,2.7341993333333336,3.057026666666667,4.515023333333334,2.86571,1.801904,3.5156666666666667,1.4894735714285714,2.8956999999999997,2.5906266666666666,2.28194,2.9114133333333334,3.034996666666667,2.6806300000000003,2.31338,3.76386,3.0185033333333333,3.5660366666666663,2.2168,1.74337,4.184581666666666,2.8763533333333338,2.52699,3.5660366666666663,2.6281033333333332,0.8268163636363636,2.4273025,1.0175466666666668,2.1442875,1.5333675,0.9400727272727273,1.6970375,2.01702,2.7669267499999997,2.634225,4.708825,1.5328675,4.14719,3.0132933333333334,1.540086,2.444193333333333,2.8560766666666666,2.0406866666666668,2.855566666666667,2.85584,2.818752045454546,2.0869175,1.78704,3.601433333333333,2.5120299999999998,2.9524394444444444,3.0968699999999996,2.9983466666666665,3.924166666666667,2.2354366666666667,4.3709,3.6003000000000003,3.9680999999999997,2.8885166666666664,3.5341,3.527233333333333,1.8206333333333333,9.29832,4.66148,4.57839,3.202455,2.83922,1.91625,3.859675,1.73253,4.142385,4.71575,1.485512,2.6373633333333335,1.2200533333333332,2.67004,1.66328,2.47861,5.011746666666666,3.1895000000000002,3.582025,4.766525,0.72697625,1.513264,0.9668100000000001,3.85771,11.546381666666667,4.3703666666666665,6.6108,2.00709,5.1852,4.31487,2.442905,5.24565,0.2726182352941176,0.7831757142857143,4.811965,4.866375,7.2422275,2.1670275,4.65008,5.7767,4.605535,4.621835,4.20134,5.1899,3.05557,5.4950833333333335,4.15072,3.43987,3.294445,1.9335533333333332,1.9086566666666667,1.4393376875000001,2.31802,3.999425,4.86765,1.573998,8.84351,1.9462766666666667,2.7466808333333335,1.042422,1.042422,7.722704583333334,3.216445,2.503675,2.101765,2.6523666666666665,2.0184633333333335,1.0645166666666668,3.278853333333333,2.8739233333333334,0.5575428571428571,1.75096,3.3986620000000003,3.3986620000000003,1.1077166666666667,2.44041,2.333346666666667,2.8500183333333333,1.3608,1.7078,4.868032666666666,2.77931,2.65765,1.4197175,1.4197175,4.19043,5.3046,4.599605,3.34647,3.753375,5.71921,2.76697,2.9609433333333333,3.489966666666667,3.911515,1.1308966666666667,3.3493666666666666,2.546975,3.70433,2.0900666666666665,4.64475,3.492195,4.23342,3.691155,5.276857,1.1135777777777778,2.004465,1.832715,3.49328,4.726559999999999,3.66863,3.897,4.132045,4.872455,1.682005,4.283565,3.364775,3.774755,2.3521199999999998,0.80799375,3.25283,4.66918,5.04705,1.18504,2.97296,3.0813366666666666,2.0685733333333336,1.7889039215686273,1.7889039215686273,1.2079833333333332,2.2932166666666665,1.107287142857143,1.3497460000000001,4.35279,4.717785,0.5088476190476191,4.292005,3.4492666666666665,4.14834,5.5406,0.425504,9.266815000000001,5.64885,3.63896,4.14026,4.980845,5.5096428571428575,4.97303,6.66344,0.7095236363636364,2.8805633333333334,5.4573,2.7995566666666662,1.9852475,1.9928439999999998,4.51755,5.2646637499999995,2.4053739285714286,2.830026666666667,3.242706666666667,1.7626925,4.928795,10.5038,8.49036375,3.8120999999999996,4.764065,3.145813333333334,3.023165,3.873,1.785422,2.9045733333333335,3.857535,4.3161,4.758125,4.8809,6.5008799999999995,2.87833,2.96936,4.80025,4.908645,5.5235,5.814703333333334,4.772725,6.3302,3.26453,2.6992,2.88068,5.83475,3.680275,5.7313,2.08997,3.1276666666666664,3.39798,5.97655,4.211845,4.30886,1.4373179999999999,0.89066375,2.663625,0.6708200000000001,4.11928,3.546515,3.400255,2.754725,2.16235,2.991375,2.4906925,2.924322,1.77227,3.01881375,2.84165,2.163785,2.518025,3.584282,1.2641966666666666,2.6445141666666667,5.15695,3.6920333333333333,1.1960925,2.7706866666666667,3.6928725,3.614539,1.57535,5.88625,5.7694,2.1426333333333334,2.8414033333333335,31.123832017340504,3.5404999999999998,1.7068,3.9679,1.6002599999999998,2.6064599999999998,2.84299,3.487833333333333,1.9484325,2.76415,2.414155,3.7503615,2.967226666666667,2.4144175,1.4718175,2.2229,2.893325,0.3937909090909091,1.03985,2.95519,1.680996,3.390295,1.57535,2.247473333333333,25.567764888888888,5.0853,4.21734,3.52259,2.6069,2.3837325,2.47681,2.248315,3.767215,5.838994,5.6537,1.592274,2.01538,2.284795,2.5815216666666667,3.7277941666666665,5.28195,4.85672,4.514595,0.18796170212765956,4.973395,5.099794166666666,3.6132,10.1456,0.9824,0.9824,2.9689266666666665,3.461885,5.5663,2.1047933333333333,1.076438888888889,5.4163,1.8927125,4.194285,4.084585,3.84022,4.19602,3.83273,4.62781,3.133595,0.7099166666666666,3.175145,2.1205608333333332,4.32149,7.914249999999999,4.836095,2.5297,2.5297,6.7426675,5.1162,3.98414,5.96905,2.4862699999999998,5.252040833333333,1.3441133333333333,1.4099133333333331,2.88382,1.9635766666666665,2.80598,2.8649233333333335,3.641695,4.140775,4.06138,5.3097,2.29206,2.4970725,1.84412,2.82775,2.2442025,2.095135,1.9900925,4.822646666666667,1.8471525,3.6344180952380953,2.3102733333333334,3.0708800000000003,2.66452,1.73066,1.454157142857143,0.960962,2.5303366666666665,3.936733333333333,0.74394,4.835115,1.791185,6.037992083333332,2.0053675,1.5270325,1.5345,1.52707,5.764765555555556,1.9140380000000001,3.0163166666666665,3.580633333333333,1.2189975,1.7864725,4.75652,3.11281,2.766716666666667,3.4695666666666667,2.753133333333333,2.960736666666667,1.221860714285714,0.4788225,0.4788225,0.4788225,0.4788225,0.4788225,4.19382,2.74527,2.42379,3.6886666666666668,1.34234,2.56009,3.5012333333333334,3.3852666666666664,3.459605,2.86595,1.8593733333333333,3.080713333333333,3.2585466666666663,2.1355025,1.8882125,3.54349,2.8528266666666666,3.368733333333333,5.3645,2.91122,2.717216666666667,2.648563333333333,11.15282,4.8784,4.757625,5.14835,4.188725,2.7512333333333334,5.0305,4.092725,3.9277,5.6345833333333335,4.14349,3.36127,2.2863325,3.585475,5.019393,3.691015,17.83174645238095,1.283,4.944435,0.8390866666666666,1.3093125,3.133625,4.811975,3.887875,4.366165,1.4489083333333335,2.512675,4.218155,2.575343333333333,4.81221,3.116776785714286,2.7508733333333333,0.7674866666666667,2.718586666666667,4.601985,2.3206675,2.4019825,2.19142,19.354085833333333,1.7140419999999998,1.3132125,2.3087966666666664,0.3079438461538461,1.8651625,2.79602,2.1230466666666667,2.7949966666666666,2.662975,7.652285833333333,1.9683375,2.537875,2.1880725,2.20677,1.5834599999999999,3.3338666666666668,3.27178,4.0484,3.156473333333333,2.0295025,2.52386875,3.128844166666667,4.573755,0.44197833333333336,3.4258666666666664,2.9075466666666667,2.92727,2.0961725,3.7125345000000003,3.58352,1.6438833333333334,2.2392233333333333,2.153776666666667,1.5045533333333332,2.56058,3.7478,3.16151,0.7533116666666667,3.212075,5.28055,4.303275,2.30273,2.30273,3.3607333333333336,4.83638,3.20267,3.286315,2.298545,1.0925454545454547,3.87229,3.6168,5.8035,4.32509,2.349914,2.349914,1.8821775,3.824035,4.987435,3.797385,4.12159,3.0745799999999996,2.4556766666666667,4.406585,3.914095,4.09291,2.9504033333333335,2.8878133333333333,4.610909333333334,3.309806666666667,2.5847700000000002,1.9026100000000001,3.78827,2.880425,1.6130066666666665,3.606295,3.90818,4.253815,3.3264066666666667,4.967085,4.23464,6.86461875,3.95892,2.22648,4.65537,2.97648,7.28565,2.7706,1.2967366666666666,4.35489,3.4567333333333337,4.600085,0.5883207142857143,0.8027091666666667,3.675155,3.88583,2.5032269696969696,4.70815,2.86824,2.92352,10.351574000000001,1.899594,1.218902,4.001335,2.601925,3.523875,5.10065,6.717535,3.0598599999999996,2.122263333333333,3.1433233333333335,2.1217966666666666,3.475433333333333,8.827485706075533,0.8499888095238095,1.00651,4.91469,0.49205,1.6172525,2.30797,2.736025,2.9271,2.535025,4.05451,2.50865,13.554660000000002,5.14633,2.39503,2.39503,4.289875,0.7518433333333333,5.2996,3.910665,3.91908,5.540001666666667,3.53762,4.713545,1.3630733333333334,2.7525,2.639185,2.53957,2.96422,2.72333,3.00312,3.405325,3.537135,2.92368,2.88379,2.81091,4.268905,4.891455,3.08757,3.226646666666667,4.813251666666667,4.275875,19.101940714285714,12.524158452380952,3.185065714285714,0.6841058333333333,1.5510857142857142,4.600325,3.47237,3.084371217948718,2.491845,0.8523722222222223,0.7324816666666667,0.8149242857142857,2.1604125,1.6292719999999998,5.341865,3.266196666666667,0.7052109090909091,3.3051,2.38365,2.1292925,1.840276,6.374826666666667,1.521232,4.61432,2.90544,2.99381,2.321515,2.5219733333333334,2.547216666666667,0.7578409090909091,3.00479,3.0040999999999998,3.909112,3.02122,4.957018333333333,3.510115,3.359655,2.15274,3.765005,8.61975,2.0619725,2.44186,2.351705,1.566705,2.520025,2.441595,2.6999,0.9043319999999999,1.3710525,1.0160375,2.92603,4.20821,5.79535,5.77685,3.04944,2.292595,3.014925,3.6814,7.52244,1.2222566666666668,0.4234775,3.01321,2.0215733333333334,1.6431280000000001,3.707768,1.344116,2.1971613333333333,4.769413333333333,3.4643246666666663,1.1732583333333333,1.8169666666666666,4.027356666666666,3.613245,4.3129,4.440205,2.20274,5.1251,3.860745,0.8202692307692309,5.0375,3.884915,4.38660625,3.407633333333333,2.28865,1.273466,1.4349,3.35776,2.7906,3.170785,3.97184,2.62086,2.7338533333333337,3.105115,3.614985,4.751685,2.30283,2.663635,3.939465,5.7082,0.54122375,4.387495,1.9028525,3.516295,4.0236,2.0048475,3.11596,2.2313125,2.002225,3.06556,2.6353675,1.7205199999999998,4.86574,3.59096,1.2951357142857145,6.88311,1.0568666666666666,3.698575,1.6652733333333334,4.447065,3.93261,2.758763333333333,3.217045,4.14534,9.05061,2.777805,3.615595,3.60165,3.503955,1.677785,7.85459,3.526325,4.281595,1.56217,4.22547,3.0083,1.04067,2.0133199999999998,4.23471,2.01852,4.03217,4.64173,4.237155,4.60052,2.3931575,5.2434,3.810305,3.1176066666666666,2.6301033333333335,2.03166,5.4672,6.21405,5.6624,4.56034,2.99258,2.551975,4.597835,3.60064,1.134900824175824,4.06486,4.709013333333333,4.317965,2.691185,3.59674,0.47869,0.47869,5.94205,4.564625,6.1771,2.24892,3.85004,5.4026,0.8116619999999999,4.843,4.988415,4.83708,4.59505,4.367525,1.8478675,2.80104,2.0742225,4.417625,0.68456875,3.95836,4.272415,2.791375,2.8879933333333336,4.456815,2.187805,3.134685,60.302289673160175,3.37026,2.51909,1.4408125,3.103625,3.736905,0.8649325,0.9716225,2.0393975,2.0393975,1.2608739999999998,3.09088,2.63241,3.9618670000000002,7.16933,2.9153233333333333,1.2036157142857142,1.3197066666666666,2.6612566666666666,3.975251666666667,0.840683,1.80236,1.1666560000000001,2.05092,4.065295,4.05764,3.07298,21.801951601731602,4.76397,3.79921,3.07707,2.223246666666667,3.393705,3.01742,2.45685,4.95689,1.6947459999999999,4.236255,3.4806165595238094,6.402562638888888,1.998035,2.592025,1.812265,4.629125,2.3619,2.1042425,2.0748166666666665,4.008843333333333,4.242435,3.46951,4.316195,4.664105,2.5566,2.89403,2.87113,2.763295,2.983328333333333,2.130515,2.0668825,3.47967,1.1456983333333333,3.711235,4.67241,2.48591,5.1632,4.912375,5.232423333333333,2.238933333333333,2.398215,2.631475,2.73264,3.95411,3.25444,4.99643,0.7266585714285715,4.22898,2.868485,3.60176,2.3494,1.7854299999999999,3.810853333333333,1.2113666666666667,2.972005,4.322535,1.10974,3.48306,3.64029,4.65819,6.1106549999999995,2.059785,2.83942,2.678686666666667,3.513666666666667,2.5626333333333333,2.54385,3.4335,2.3548066666666667,2.4111266666666666,1.3879000000000001,2.1943275,2.1943275,1.8492233333333334,2.0510966666666666,1.7539166666666668,2.8039400000000003,3.834995,5.5691,3.8537,1.616175,4.37843,3.604715,3.40866,4.077495,1.907595,1.8362,4.514765000000001,1.78196,4.30614,4.73628,3.508575,2.409796666666667,3.61142125,3.132295,2.939905,3.433665,0.14348530612244897,2.82897,7.643095000000001,1.5110379999999999,3.28319,4.326055,1.0064428571428572,1.0836716666666668,1.903125,3.952125,2.93323,6.687819999999999,3.358835,3.60393,2.76272,2.613165,3.97698,3.18211,3.97406,3.44017,2.80031,5.32535,4.219155,4.50075,2.520516666666667,2.0068025,3.41959,4.34365,2.615695,3.868335,2.125205,2.559575,3.61563,3.74527,2.656535,4.66985,5.1728,2.67263,4.39923,4.786105,3.351545,4.7222,3.317705,2.61213,8.41322,4.460295,5.36405,5.1938,4.30592,5.2717375,5.7425,3.644415,1.224692,6.76825,2.329515,5.00925,4.069395,4.333005,3.02595,2.05246,2.2098333333333335,2.363636666666667,0.96351,3.4136,3.675966666666667,3.073176666666667,2.11531,3.80966,4.508625,2.485463333333333,0.52722,4.27127,4.54669,4.762285,4.823865,3.738885,4.49397,5.29775,4.82258,1.4350777777777777,0.9374307692307693,2.864406666666667,5.3287,5.567,0.485976875,2.80219,2.4370933333333333,4.238775,4.42002,3.8891333333333336,1.9052275,4.551115,3.433125,4.30089,3.061855,6.2218,4.77859,6.8787725,0.58551,4.49338,0.8934939999999999,2.168615,4.066233333333334,3.1408566666666666,1.2327566666666667,2.3017600000000003,4.29853,3.62446,4.18167,2.5665533333333332,2.20898,2.9579,5.09025,4.196705,4.23933,1.661028,1.2398995714285714,5.67055,2.278985,7.6518975000000005,4.538305,3.464165,2.211175,1.5996175,4.34991,4.556965,1.7303166666666667,2.285905,2.551575,2.82897,6.687468333333333,3.0225516666666667,2.86244,4.775533333333334,3.945795,1.9770033333333332,4.175935,7.16524,4.731745,5.1681,0.6006845454545454,4.076225,4.3979,4.826709642857143,3.98034,4.39394,2.92666,2.813295,3.207435,2.841395,3.4932663333333336,1.7925719999999998,6.035447,4.586635,4.75338,3.723295,3.351415,3.23704,2.24107,1.2801925,1.0197775,2.750075,2.56523,1.0891633333333333,2.6010266666666664,5.795,5.0877,3.455795,4.31685,16.205339285714285,4.46599,4.349675,4.45299,0.7069424999999999,5.2292,4.59614,4.69201,4.6667,5.8616,2.24414,3.5677,3.26887,1.5457560000000001,3.019405,4.51228,3.0589566666666665,1.526846,4.213645,4.91988,4.22383,5.26075,4.87191,5.6592,4.46725,2.889936666666667,4.287615,4.12284,2.659035,3.0092866666666667,2.9780533333333334,1.9210908333333334,5.17255,2.6912399999999996,1.9012466666666665,4.030505,2.634975,4.11627,4.184581666666666,2.17855,2.721505,4.295805,3.65569,4.82553,4.33974,4.47564,4.7715689999999995,3.057795,5.4001,2.59292,3.62188,3.93047,1.530278,4.40966,1.05458,4.403665,3.05026,1.2115842857142858,3.702545,2.082295,6.441095,2.594787476190476,2.594787476190476,2.594787476190476,0.83792,1.4934383333333334,1.770125,3.517435,6.18172,3.338608888888889,1.93016,2.2200825,1.93111,3.706785,2.366115,0.41770538461538465,1.65542,2.05741,3.058815,1.883045,2.857015,2.39534,2.02837,3.687125,2.81798,3.14225,3.33568,1.84636,6.45245,1.99996,4.304435,3.91546,6.328303333333333,1.5824866666666668,3.473565,3.643605,3.66029,4.479265,3.045275,2.0632275,3.739875,5.997116500000001,2.182955,3.640795,3.047455,1.935225,4.89261,4.94103,2.5054366666666668,2.10839,3.84381,6.086311428571428,6.03925,3.620555,2.363405,2.53656,2.90298,2.91606,3.870655,1.3675275,2.80373,4.512695,0.7906325,3.918595,3.84784,3.990015,4.77733,2.31406,3.37561,1.94515,4.36994,7.91324,4.52419,3.447,3.872225,0.97798625,4.558135,2.4046,4.329975,5.12951,4.099795,4.46888,11.1676,4.84953,3.730585,1.4403425,0.7016583333333334,2.61307,3.792635,3.42499,3.566705,2.09941,3.2831766666666664,2.41885,1.1452666666666667,1.1452666666666667,1.89511,2.4148333333333336,3.9671000000000003,2.7371533333333335,3.9530333333333334,3.287456666666667,3.071203333333333,2.89629,1.3704433333333332,2.6051866666666665,2.0926,2.2944166666666668,1.446975,2.1018766666666666,0.7782583333333334,9.905684166666667,0.7782583333333334,3.7941000000000003,2.10265,2.5243966666666666,4.52629,4.21955,4.830495,4.989615,2.7380533333333332,2.8459299999999996,3.1965760000000003,2.177286666666667,3.5303,3.1850666666666663,2.83154,3.03524,1.6218866666666667,5.2045,7.105425047619047,3.17638,3.6018000000000003,3.0144933333333337,2.83047,2.86191,1.2230214285714285,3.5107666666666666,3.19906,4.005835,5.95965,4.386585,2.998366666666667,3.6157,3.4066333333333336,4.216933333333333,4.257885,2.62987,4.518605,3.4726666666666666,3.09156,4.89154,2.9901199999999997,4.21388,6.718371666666666,3.111893333333333,2.32374,1.7441933333333333,1.5205266666666668,5.277093333333333,3.3530483333333336,2.6531033333333336,1.9676133333333334,2.2302500000000003,4.50724,3.809165,3.205715,3.149313333333333,3.4406,3.5498999999999996,3.5246,3.8499,3.2765299999999997,0.53258125,3.8071,2.5249266666666665,2.4591766666666666,3.5122,4.67893,5.27905,5.76765,2.533495,5.13195,1.16754,2.765663333333333,2.765663333333333,4.27952,3.619795,3.680195,3.939965,1.628015,3.255165,3.71713,1.1385328571428572,4.027019166666666,3.467953619047619,2.2567393333333334,0.47503599999999996,3.840125,3.643835,6.635565,3.35247,5.9754,3.22108,4.017095,4.250735,1.9797716666666667,3.546615,4.79336,3.47067,3.374366666666667,2.993983333333333,5.9593799999999995,2.176215,1.06750625,1.9560633333333335,1.6767,5.12209,2.4616466666666668,2.38474,2.029345,4.667095,4.28758,4.6103,0.634444,4.711195,4.25888,2.9375033333333334,2.8263933333333333,3.1816033333333333,3.667498888888889,4.188553333333333,1.5121466666666665,0.6619631578947368,0.8259071428571428,3.9676333333333336,4.51844,6.22417,4.826345,5.4365,5.48975,1.3538557142857144,4.0236,2.17068,1.0080525,5.62305,6.1362,3.28437,4.864415,4.14926,7.304198333333333,4.5181,7.105475,3.757405,2.8763405555555552,6.3946,10.182016262820513,2.65652,0.781119,4.18592,4.35886,2.33568,6.4054,4.91787,3.94086,3.0493633333333334,3.0493633333333334,5.3076,3.70214,3.966595,5.2583,4.0783130000000005,2.494446,1.10929125,5.5535,2.58705,5.5707675000000005,3.855575,5.2417,3.023785,2.11592,4.721335,4.80152,3.6008666666666667,4.099665,4.39232,28.607326904761905,2.260565,2.625475,2.240985,1.66096,2.63918,1.4207985714285714,2.9109266666666667,3.026726666666667,3.439833333333333,3.374966666666667,0.7357669230769232,3.313496666666667,4.548085,3.22675,3.23921,4.03905,6.10473,4.927225,4.35483,3.976225,4.1499925,4.3516,3.4331,1.690185,0.9795166666666667,1.4000666666666666,3.158,2.15403,3.18294,2.4379399999999998,2.27827,1.8286566666666666,3.241215,1.97691,1.82542,2.878585,4.110145,3.791835,3.983865,1.451462,4.194133333333333,2.40628,4.394435,2.6498033333333333,2.5805,3.00878,1.42559,3.536865,6.373811666666667,2.876265,3.641055,3.925465,2.5499,3.2044266666666665,3.5885,4.92328,4.59207,0.29957809523809525,0.29957809523809525,5.09115,5.2897,3.932205,2.98306,5.9408,4.663835,0.7104476923076923,4.596725,5.10005,3.859285,6.4841,4.656895,7.67784,13.99027,13.539183205128206,4.077755,4.19506,2.7289733333333337,0.6343115384615385,2.70694,5.0441,1.2415083333333332,4.603415,3.675133333333333,3.044833333333333,2.05504,1.8399966666666667,4.7662949999999995,4.276515,9.334260119047618,4.95883,4.043915,7.1774458333333335,3.135945,3.0841433333333335,1.392445,5.257018333333333,2.086375,2.5928233333333335,2.6943633333333334,0.2829875,2.8756,3.56141,4.6369050000000005,1.26021,1.3540083333333335,3.80778,0.5779340000000001,0.5779340000000001,3.16428625,3.1073166666666663,3.5191666666666666,4.291935,4.34829,5.7305,3.64102,4.133135,2.82399,3.1871166666666664,2.9907566666666665,0.851625,2.77352,2.80811,3.068365,6.83961,3.085115,9.0098,2.8407,4.79306,2.915365,2.2216775,2.774375,2.9889,1.6541425,2.4749275,2.1890775,3.83205,2.601725,4.8953475,2.787775,3.884280833333333,3.884280833333333,2.691971666666667,2.691971666666667,8.849605833333333,2.7676466666666664,0.780455,2.48549,2.4417633333333333,2.4950566666666667,4.8953475,1.953064,1.9760259999999998,1.520926,4.40017,4.583265,1.7085225,4.45468,3.95402,6.548527777777778,6.76117,2.36123,4.23392,7.17259,4.77902,3.293335,2.8071066666666664,3.682065,3.628347575757576,4.389455,5.564534999999999,7.886379999999999,3.54156125,3.51675,1.2045416666666666,4.376515,4.1086133333333335,4.39432,3.8084708333333332,4.537485,3.231835,2.6712933333333333,6.978149999999999,3.517615,1.187526,5.96933,3.733525,2.8803900000000002,5.1218,2.8803900000000002,3.63345,3.92612,4.7738,1.0751971428571427,3.8405144444444446,4.627705,3.93665,1.3077483333333333,1.8038275,4.269835,3.929025,2.65831,7.089026666666667,4.333695,4.214055,4.418955,4.3751625,1.50629,4.274585,2.828805,3.82508,4.28051,4.46287,4.96316,3.11588,4.74595,4.711655,2.2457,1.79668,3.637366666666667,3.4593333333333334,3.4088,3.2039299999999997,3.5269999999999997,2.85801,5.0248,3.122575,3.661055,2.80848,1.8132400000000002,3.7000333333333333,1.9524366666666666,2.875715,3.023905,2.704855,0.68456875,2.265335,1.7368966666666665,3.11167,2.01948,3.4437670000000002,3.526275,1.3706200000000002,3.375835,4.592735,0.76022,1.30549,3.371375,3.80102,3.85269,2.145085,1.85571,3.38479,2.3999633333333334,1.6897733333333333,3.24564,1.913625,1.178472,1.35688,6.18201,3.24366,2.475185,2.55257,2.485505,3.58985,0.81954625,0.328405,0.7841714285714286,5.12145,2.4523444285714286,4.56202,2.050225,2.3850372857142856,3.823474714285714,1.4384374285714285,1.1509912857142857,0.715032,0.5659314285714286,3.49275,6.5926,2.971195,4.109265,0.3450146428571429,3.683525,18.537422714285714,2.947795,7.492974895687645,1.03314625,1.03314625,1.03314625,1.03314625,5.811516666666667,3.95554,3.655685,2.1381733333333335,3.106745,4.096595,4.38643,3.402715,3.385615,4.494745,4.264425,4.2543,3.6390126666666665,4.19196,4.940725,4.243515,4.830885,3.521105,4.224935,2.7112233333333333,4.33899,3.195985,4.011,3.88131,4.39516,3.3955333333333333,2.649925,2.4132000000000002,4.32893,1.2823785714285716,3.679985,2.839636666666667,3.4462393333333337,4.237155,4.063385,3.04312,2.894005,4.996045,3.98835,3.043145,5.2328,4.86422,3.120565,3.78664,1.725482,1.725482,1.959515,4.66731,4.51736,5.991645999999999,5.0222,3.815586666666667,6.45515,4.407415,2.16693,9.478539999999999,4.741045,6.663517499999999,4.47325,2.8716733333333333,4.40943,0.2700993103448276,0.7691775,3.872944666666667,3.87667,4.84774,3.23372,6.025793333333334,5.34655,0.549435,2.936095,0.521568,1.794792857142857,3.20911,2.020585,3.963135,3.75819,3.18191,3.436555,3.290045,3.583005,3.3041,3.48779,3.773725,2.366425,1.794792857142857,2.823515,2.077235,3.438035,2.18702,4.52647,3.45906,1.677785,4.275,3.32924,1.38472,5.43525,4.69857,4.144235,2.9260466666666667,2.9828799999999998,4.665555,1.9926466666666667,1.3795959999999998,2.354483333333333,2.61332,2.56676,2.0462666666666665,5.1455,3.523595,5.067838333333334,3.963463571428571,4.83292,4.11961,1.7905719999999998,5.37495,4.63723,5.2461,4.318165,6.51481,1.8202875,4.752395,3.227755,2.991085,2.1890125,1.6238566666666667,3.873745,4.43053,2.2897866666666666,2.5359304166666665,3.3594074999999997,3.3594074999999997,2.9174366666666667,3.14305,3.327785,3.883315,3.317365,0.8270384615384615,3.236025,4.16882,5.195920277777778,3.05676,3.039945,1.726895,2.63555,3.402565,2.191925,4.433545,4.2145,4.597365,1.9575466666666665,0.9908909090909092,6.0118,3.46355,3.8087666666666666,3.3267133333333336,1.8889479999999998,30.232565428571426,4.342685,3.262465,5.0516,4.41755,0.8606833333333334,7.53492,2.065895,5.5884,1.5782016666666667,4.8979,5.800835,3.581865,3.05606,2.2024375,3.8987,4.882305,2.0287425,2.7010966666666665,3.67133,3.23036,2.496315,5.9687,2.04367,5.51925,1.16260125,4.27717,3.463015,3.91886,4.829465,3.45862,2.238793333333333,4.282015,4.892415,3.597525,3.597525,6.5885,1.72233,4.228565,7.141283333333334,3.140915,4.30486,3.30971,3.832745,3.33715,4.020235,1.30892,2.24203,4.153805,4.25707,5.91485,4.35429,2.305005,9.345016666666666,2.742665,3.72196,1.7407428571428571,3.404645,2.1568733333333334,2.6568566666666666,2.679672083333333,1.6544800000000002,2.720473333333333,0.9461528571428571,0.97983,0.97983,0.97983,1.9674233333333333,0.53314875,3.88415,1.1962133333333334,2.6035766666666667,1.12785,1.7143533333333334,2.560076666666667,2.36861,0.7475225,1.9031966666666669,1.8988266666666667,2.3421133333333333,1.6192039999999999,1.6192039999999999,1.5822533333333333,1.9301899999999999,1.161048,2.5332500000000002,1.63433,1.1963166666666667,2.27825,2.27311,5.97615,2.198855,4.904595,17.859689833333334,6.913595000000001,3.540615,3.558926666666667,3.3115400000000004,2.92123,2.7482433333333334,2.88551,0.7240533333333333,0.974572,0.974572,0.64459375,2.5294033333333332,4.04023,4.383695,1.615542,5.03065,3.57304,2.47474,3.500745,4.86964,4.051965,4.1366,3.543366666666667,3.20785,3.237725,5.7316,3.719333333333333,4.66877,0.501,0.501,2.382175,3.251835,5.2044,3.40016,4.220445,4.793665,7.122185999999999,7.81593,3.6895,2.78282,4.92148,3.98089,2.4509133333333333,2.34587,3.09848,1.3632966666666666,3.78124,2.584945,1.90282,3.32889,4.594745,2.0479325,5.564534999999999,1.755275,3.564,4.139765,1.0933371428571428,3.4725,3.2653933333333334,5.0697,1.1638,1.7581625,2.4151375,2.217805,1.65789,2.529425,2.1349875,1.917895,5.0093,4.370575,2.71245,1.89286,1.5131033333333335,3.6969999999999996,2.07323,2.689375,4.45844,6.8696,2.7790083333333335,2.84539,3.401425,3.57363,2.41505,4.910315,3.90273,3.167555,1.4511625,4.397575,2.358155,2.9460766666666665,2.459665,3.978705,5.0074,5.47765,2.3343433333333334,2.746786666666667,2.89995,3.4684333333333335,1.9438833333333332,1.519622,5.2697,3.5790666666666664,2.231697090909091,3.1416566666666665,3.1494233333333335,2.445463333333333,3.1880433333333333,3.2596133333333337,3.6012,5.3472,3.94662,3.19604,5.63905,3.225225,2.31311,3.382525,3.969235,3.82122,6.136554500000001,1.833002,3.730085,3.086715,3.958555,3.557715,0.5554475,2.23181,2.203635,3.378,2.75837,2.104835,2.762475,0.675592,2.82868,4.77416,2.42402,4.12547,2.496516666666667,4.30303,2.01263,4.72904,3.883715,1.8858260000000002,2.66014,7.372344999999999,4.272005,4.446935,4.943155,7.537047840909091,4.344095,4.587295,2.0902125,4.705715,3.307645,1.9049233333333333,1.8596725,3.6117333333333335,0.9744700000000001,2.47593,2.9103066666666666,2.62175,3.4469666666666665,1.818516,3.284385,1.8363800000000001,5.8849,6.7519124999999995,1.01460375,1.79767,2.60055,2.774096666666667,2.00787,1.0624283333333333,5.646343333333333,2.227765,2.64922,3.7590333333333334,3.0887466666666668,3.30224,2.9814,2.1216266666666668,3.24058,2.4637533333333335,4.280135,4.265515,3.90811,3.5439333333333334,3.4286,1.00719,1.7552566666666667,2.25397,2.15939,2.6168299999999998,1.1398583333333334,2.7035066666666663,2.899983333333333,4.08151,1.9591066666666668,3.34455,3.442485,5.7959,3.162765,0.5932916666666667,1.995034,2.71266,3.5925,0.8616236363636364,2.9518133333333334,3.576104,3.3434000000000004,2.80688,3.267164166666667,3.71208,3.9606333333333335,3.0071133333333333,2.151675,5.654,5.1194,5.3377,5.5373,5.79325,1.7049966666666665,3.468375,3.5940333333333334,3.4461666666666666,2.9114466666666665,2.8217166666666667,4.013433333333333,3.6097333333333332,2.95148,14.028371666666667,4.16069,1.13707,2.6643966666666667,1.6989439999999998,3.24667,3.1983766666666664,2.2947466666666667,5.697058333333333,6.311891666666667,2.4538333333333333,0.885797,4.345545,3.3935,3.0033,5.47255,5.24295,5.8608,4.922715,3.593005,1.933045,6.4377975,1.2045416666666666,6.6818425,4.802305,2.5787400000000003,4.54738,7.012093333333334,5.91365,2.2003666666666666,1.50908,2.09441,7.100888333333334,1.57535,2.913263333333333,2.62667,4.183101944444444,6.0133,4.175965,6.35885,3.57689,5.1821,3.688505,8.05279,5.01435,5.75305,2.38015,2.607275,11.460301666666666,3.13394,4.005755,2.33395,1.57628,2.972656666666667,3.0835033333333333,0.6486225,1.309012,1.0721942857142857,3.87856,6.883886666666666,3.2103020000000004,1.5744999999999998,5.0273,4.55408,0.5607249999999999,4.265805,3.73831,4.61892,4.487535,3.619945,2.6035166666666667,4.11702,9.484290000000001,1.768655,3.6770525000000003,4.518295,4.403055,3.785005,0.8788166666666667,3.5422,3.9040666666666666,1.63898,2.5243233333333333,2.26969,2.5370966666666668,2.7882266666666666,2.054186666666667,2.034425,6.021877857142857,4.838745,4.498355,4.357406666666667,1.5421966666666667,2.4477225,4.822295,4.746175,5.1349,4.574205,4.492605,4.952085,1.725482,3.74042,7.382943333333333,1.4504116666666667,1.67962,2.66038,2.58115,2.76378,4.794336833333333,0.8259071428571428,2.475905,3.42608,6.12485,4.38377,2.3501366666666668,2.7886633333333335,1.97929,0.559860625,2.3493825,2.79243,7.569134999999999,4.15562,4.32835,0.901052,4.4093333333333335,9.30345975,11.477229999999999,3.399245,1.17235,3.41497,3.463215,2.70528,5.347096666666666,4.96705,4.36923,1.9527275,3.810233333333333,2.1580766666666666,2.5009866666666665,0.7813772727272728,0.46375666666666665,2.5041,3.254295,2.0066,3.22878,3.353066666666667,4.322155,5.30255,1.420536,3.1970433333333332,2.0588275,2.0588275,2.212,2.87886,5.89215,2.7045666666666666,3.06755,3.3674666666666666,3.5587666666666666,4.142375,4.254605,4.58423,3.96962,3.917085,4.38289,6.77965,7.677945833333333,1.9153475,2.178263333333333,3.0789766666666663,0.87,0.7081916666666667,3.92892,2.320055,5.38155,2.9178333333333337,3.05721,1.874382,1.4041025,3.748635,4.151775,4.19488,2.0419666666666667,1.3102633333333333,2.5743833333333335,2.0686433333333336,2.5033566666666665,1.0792771428571428,1.0792771428571428,2.7442233333333337,4.362705,2.832905,2.95485,3.320075,2.339285,19.486067575757577,3.606535,5.4775475,4.0375,3.803185,3.89512,3.65666,5.62495,6.561377499999999,1.0596966666666667,1.0596966666666667,1.0596966666666667,2.6570833333333335,1.7318857142857145,3.526533333333333,4.88121,4.744875,3.32123,4.565195,4.510165,0.9247466666666667,2.54779,2.7944533333333332,5.8495981666666665,3.2645014999999997,3.9926606666666666,4.67864,2.0048475,1.9566633333333332,2.283673333333333,0.5216975,0.829222,1.819485,1.94591,2.790475,12.896833333333333,2.4975533333333333,5.34185,0.7351714285714286,9.65323,5.77755,3.710445,4.323465,2.7881,5.568,2.7881,2.846094,3.37918,3.697525,3.867295,3.92514,4.67151,3.39123,5.932,6.883077999999999,1.77239,3.1635199999999997,2.624,27.564950928571427,1.664338,6.4424,4.827858,3.80101,4.277075,4.560095,2.668905,2.71795,2.36224,6.38815,7.0105,4.746795,4.9242,4.584245,2.1013325,1.905665,4.32341,0.8038076923076923,0.8038076923076923,0.8038076923076923,0.8038076923076923,4.118685,3.25975,1.11492,1.8116933333333334,1.1843333333333335,4.497825,2.3895399999999998,2.3071675,7.3284633333333336,3.271186666666667,0.17012310344827586,20.582371166666668,4.539586666666667,1.733552,1.3150989285714285,2.3299399999999997,1.93625,2.4147175,4.542215,3.300345,4.409925,4.091795,2.4873333333333334,7.1468,2.64569,1.94354,3.74451,6.01235,8.125533333333333,4.674315,0.2941951219512195,3.50045,4.36251,3.0297433333333337,2.1770025,2.915983333333333,1.546075,1.546075,4.057025,5.649775,12.068920833333333,9.383125,0.6560666666666667,2.6457,4.182285,3.1913,5.62135,5.36045,1.989696,1.989696,4.269955,4.81358,2.6240799999999997,3.80537,4.97077,5.9222,5.929335,2.1137,4.552015,4.160015,2.7949,3.023703333333333,3.170196666666667,4.949525,4.574915,5.0176,4.356555,4.44228,3.846555,4.442815,4.25896,5.71585,2.5333833333333335,3.3201966666666665,1.133046,4.01207,4.348045,3.63753,1.804604,2.0432266666666665,3.0585466666666665,3.264863333333333,2.8198066666666666,4.596573333333334,1.7009166666666669,2.937725,3.9042999999999997,3.434466666666667,2.5360366666666665,2.9026599999999996,4.202133333333333,3.6399333333333335,3.8673333333333333,4.925924999999999,2.08577,2.8709233333333333,2.55126,5.896,3.3942,42.809285083333336,2.529794,2.529794,2.51239,2.825623333333333,2.07669,1.8184433333333334,2.99837,1.94698,0.7739461538461538,5.09365,7.121717500000001,4.356355,3.996265,4.91033,1.9377666666666666,4.407525,1.8710280000000001,5.2575,4.67408,5.72935,4.084505,1.690185,4.280375,5.61215,4.744895,4.98926,5.4586,3.964345,3.284413333333333,2.91708,2.3244925,1.94837,4.401555,2.0710533333333334,3.7173724999999997,3.7173724999999997,2.1324133333333335,1.5622066666666665,2.0340933333333333,2.38982,2.467886666666667,4.90017,2.6158533333333334,1.1329783333333332,1.1329783333333332,3.21306,1.9194766666666665,2.5422,2.645383333333333,2.4497,2.48306,2.2170366666666665,2.1128547500000003,2.882837607142857,1.444971607142857,0.7699828571428571,60.60202691468254,2.713164,2.9031033333333336,2.1249320000000003,0.8582700000000001,3.4830853333333334,1.550324,1.550324,2.57885,2.8575700000000004,0.67498875,2.75089,5.383776666666667,3.7312999999999996,2.58732,2.712683333333333,2.188973333333333,2.465758,0.2934925,2.850016666666667,0.700348,2.464566666666667,1.27635,1.27635,3.1323666666666665,1.8355899999999998,2.2971633333333332,1.392072,2.81536,1.392072,2.1326666666666667,2.9009133333333335,3.4594666666666662,1.6401800000000002,1.6401800000000002,2.8229066666666665,1.3854899999999999,3.1274533333333334,2.19798,4.92822,4.32775,12.981827166666667,7.13654,4.034885,2.76106,4.288715,5.2471,5.5672,2.7413225,4.650495,3.923475,2.410206666666667,4.497945,3.279123333333333,2.7290266666666665,4.39487,2.2790433333333335,1.0623757142857142,4.28836875,3.0716099999999997,3.231175,0.7835257142857143,2.538985,3.562835,3.79942,4.233745,6.5751,2.575343333333333,1.885004,4.104785,4.55579,2.276065,2.542164166666667,1.9553,2.1965373333333336,0.905634,5.4777,4.48656,4.087885,3.875175,3.2510600000000003,4.662255,4.945635,2.9582566666666668,1.68584,0.54781,15.231506,0.5048154545454545,0.5048154545454545,0.5048154545454545,3.07906,4.138433333333333,0.5048154545454545,7.3573450000000005,4.54809,0.706328,0.706328,3.144083333333333,3.206105,2.84792,4.34671,4.47018,4.220892,2.2699849999999997,4.837566,3.807905,3.5263019642857145,4.68664,2.94408625,2.44062,2.308055,2.6428,1.59148,3.34906,3.027476666666667,2.5567,2.069385,2.06026,1.8649166666666668,1.5515,2.707,1.1014022222222222,2.68825,0.6091871428571428,5.2359,1.7010175,0.7513941666666667,2.4892625,7.75666,2.640815,2.052287,3.107335,7.50689,2.50323,4.524615,3.50485,5.81721,3.71166,4.02479,4.514825,5.44585,3.065796666666667,4.631995,1.1761471428571428,4.059395,2.3392633333333333,2.5339466666666666,2.484125,2.33154,2.1429,1.2181125,5.4923,0.9400727272727273,4.79104,5.6124,4.957185,5.5356,3.9147,2.5668966666666666,2.02098,2.93348,2.8671699999999998,2.53851,3.5689666666666664,2.771375,4.319915,1.766122,40.8504176984127,4.704085,2.3387,2.8372566666666668,2.9645733333333335,1.5291033333333335,5.774118333333334,3.88218,2.88903,3.3694,2.2282699999999998,1.6344825,5.6032,0.8284785714285714,5.610570714285714,1.3505871428571428,3.3356999999999997,3.443766666666667,3.0087566666666667,1.406625,4.864273333333333,1.6639659999999998,1.6639659999999998,2.6681266666666663,2.953520833333333,3.652433333333333,3.719,1.3769266666666666,2.9680400000000002,2.7441833333333334,6.5180725,3.0435666666666665,3.698261666666667,1.0307866666666667,1.3628566666666666,3.0809599999999997,0.8746079999999999,5.400086666666667,3.6016,2.92663,3.7884333333333333,2.997246666666667,2.71161,3.4775333333333336,1.7115600000000002,2.485505,2.599763333333333,3.5788333333333333,2.4583533333333336,3.6632,3.3503000000000003,0.5755560000000001,9.796587884615384,2.70932,5.2573,5.1262,2.75338,2.9216800000000003,1.3498275,2.131343333333333,2.116505,1.3498275,4.542855,0.45325625,0.45325625,1.10801,1.10801,0.8552975,0.8552975,2.579925,3.17168,2.578285,1.483925,1.832265,3.558055,2.86543,4.75085,4.739605,2.13054,4.20582,2.347405,4.912276239316239,1.613475,1.613475,2.15198,1.8380839999999998,3.941324166666667,2.04217,4.548395,1.4489083333333335,2.496955,0.65115,1.1752757142857142,2.11977,2.298595,2.2494975,1.4965275,4.521005,4.344175,2.67924,2.7020933333333335,1.4245599999999998,0.7089683333333333,2.29489,4.195655,2.64826,4.483435,5.6052,5.07015,3.983935,6.8059899999999995,1.5849433333333334,6.15926,1.68084,4.481045,4.796375,5.8972,3.0226166666666665,2.316205,1.6872925,1.973958,1.973958,2.421715,2.421715,4.49503,5.57345,0.8718999999999999,4.11588,3.75144,3.3641,2.8252366666666666,1.3783875,2.697226666666667,4.214835,4.375115,1.913946,6.49825,4.5321,1.85721,1.296475,3.80247,4.056326666666666,3.879385,3.457705,4.030495,0.6858471428571429,3.2196200000000004,2.9806500000000002,2.6246133333333335,3.0084,2.1490566666666666,3.8570333333333333,1.4979285714285715,1.4979285714285715,1.4979285714285715,3.10886,3.3371666666666666,2.7691700000000004,3.5446221904761908,2.3933875,1.2982985714285713,3.0848533333333332,3.23584,1.3218342857142857,3.0927466666666668,2.7333833333333337,1.1840714285714287,3.102933333333333,2.927583333333333,2.9823799999999996,2.8569166666666668,2.744846666666667,2.3848225,3.4096666666666664,5.032875333333333,4.54661,0.9153309999999999,1.593356,0.695506,3.6702666666666666,9.015435,2.9304900000000003,3.18209,2.86204,4.215838333333333,1.824595,7.580506666666667,6.610430000000001,2.925323333333333,2.6867091428571426,3.97558,4.718925,1.57372,1.167198,1.295476,2.16057,11.184286666666665,2.9041866666666665,2.9804999999999997,3.111409,3.758765,2.3604233333333333,1.25375,5.10715,1.1238949999999999,3.3898307692307696,3.890215,3.35922,3.1761666666666666,3.680455,5.48175,1.14273,2.0008875,2.0274,2.0274,3.71679,5.6495,7.21108,4.39951,3.30594,4.954515,1.7855575,2.245594166666667,4.64736,4.233695,3.836515,1.5587016666666667,2.899236666666667,3.50705,4.294235,2.436405,3.785125,3.581565,3.809455,3.97417,4.186055,3.936535,5.78915,3.18648,2.3824833333333335,4.394925,2.865645,3.760065,1.80788,2.616225,2.639235,5.3331,2.491645,3.396392840909091,1.647705,2.516945,3.58258,2.0170175,1.972035,0.733615,0.733615,1.7061025,4.085994545454545,3.93229,2.8831066666666665,4.24335,3.457883333333333,2.497487142857143,0.98746875,3.940775,1.628195,4.301825,4.04293,0.9278133333333334,1.7712575,3.91269,2.8920325,1.55485,1.61588,4.872542857142857,1.15071,2.789525,3.1846,2.867305,2.88004,2.8113789999999996,2.06979,0.973105,2.818245,2.89273,3.34639,1.3937933333333332,1.7454133333333333,1.851075,4.89943,2.193395,4.339945,4.65931,3.91177,5.94825,5.7686,4.286565,5.7887900000000005,4.122959047619048,0.7881072727272728,2.844465,4.84505,3.8973,0.4864681818181818,0.90909,2.84162,4.634815,5.22655,4.717945,3.2929510714285715,2.8395,4.932,1.874382,2.46386,4.69597,4.041017500000001,3.395245,2.89208,4.335945,4.70154,3.189375,5.3552225,0.9512409999999999,3.46849,2.47392,4.63165,4.21051,4.380215,2.08588,2.546705,2.720515,2.02325,5.0055,3.673695,1.523785714285714,3.067685,4.2604475,1.448306,5.8797,1.899646,2.548696666666667,13.703797343454792,3.29186,1.4405400000000002,1.5547583333333332,2.0738266666666667,5.620923333333334,1.661028,3.916848,0.6979330769230769,3.12899,4.08201,7.365925,2.430146666666667,2.8485533333333333,2.8485533333333333,5.1286,4.469155,4.01227,3.262495,5.0206,5.17355,2.36781,3.401733333333333,4.78995,1.24723,3.0640866666666664,4.54914,4.205365,3.89514,2.73606,3.37673,4.06076,6.959210000000001,6.1554275,0.796214,4.311735,3.225315,3.4257333333333335,4.26174,4.118605,4.067015,1.7952819999999998,4.55017,2.61662,2.80414,4.11954,4.306445,4.644075,0.9134537857142857,2.6666166666666666,8.248911666666668,1.493175,2.082742987012987,2.2364375,3.741205,3.54084,3.24369,0.6625127272727273,2.34921,1.6451925,2.275425,4.498435,5.400826666666667,2.93379,9.63992,2.56038,2.7872266666666667,1.1146,4.871545,5.3645,2.15775,5.6345833333333335,3.239735,3.07962,5.49675,4.50287,4.88442,2.125215,1.4992475,1.4992475,2.742795,3.5266,5.575210833333333,1.5486275,6.680808333333333,1.44205,4.031605,1.5478216666666667,8.6063995,4.87887,2.742735,5.3021,4.70816,3.74551,1.1635116666666667,1.9909975,3.5490666666666666,3.096363333333333,3.5474333333333337,3.680266666666667,3.72957,2.721405,3.204625,3.237105,1.5018425,2.4626933333333336,1.81534,2.8096,1.9023066666666668,5.256339166666667,3.473966666666667,1.7963666666666667,3.033943333333333,3.338385,2.827455,6.0499,5.8311,2.93037,3.51183,3.519175,3.08139,2.863065,1.2933433333333333,0.926506,6.527355,3.290235,5.0106,5.15675,6.2115,2.7736,3.255236666666667,6.3384,2.42201,0.5045388888888889,5.5023,3.371635,3.91651,3.3618666666666663,1.34479,5.192,1.19944,4.85003,0.9384275,1.4471366666666665,2.800743333333333,2.37729,2.567312857142857,3.96717,5.766,5.612174166666667,5.612174166666667,4.8993875,4.8993875,4.77781,3.053786666666667,4.48725,1.15678875,6.3215,4.354725,3.681233333333333,4.094805,3.66234,4.36277,2.0227325,4.732355,3.138838,2.935645,4.276965,2.540415,4.551715,5.27845,3.49844,3.205695,4.983735,3.938675,5.28635,2.997005,3.3363333333333336,6.0732,4.109215,2.8784833333333335,6.010401666666667,1.5766799999999999,2.1931175,4.556505,4.436105,5.49295,3.93061,1.9777295000000001,1.9777295000000001,13.810884519841268,9.52383,5.29965,3.623685,2.941794102564103,4.66862,4.64236,2.6488166666666664,3.361333333333333,3.195585,4.008,3.697233333333333,5.1827,2.01042,7.959505,2.272715,2.04759,5.19615,2.25457,5.0448,4.488935,5.1496,0.8609611111111111,3.45903,4.03122,0.9443619999999999,2.97038,4.15142,1.447606,2.4149866666666666,3.0155333333333334,2.6386966666666667,2.7426666666666666,3.3083733333333334,2.7160266666666666,0.5809664285714286,2.92811,2.810776666666667,2.859526666666667,3.1716599999999997,1.7293859999999999,2.9929066666666664,7.159633333333334,4.798975,2.67472,2.1695266666666666,2.58767,4.10287,2.478585,3.6997720000000003,18.74576,5.243,3.4181220000000003,5.68985,3.73042,5.16108,1.4691599999999998,6.04265,1.5356333333333334,4.206335,4.189125,5.17675,5.0109,0.9651357894736843,5.83085,3.03582,5.0988,2.649635,4.22894,4.746545,2.899005,2.2679733333333334,1.4881579999999999,2.2195625,4.36483,4.83899,2.321545,1.872615,2.9644433333333335,4.36229,3.0902700000000003,6.22515,2.607325,4.61437,4.502615,3.78059,4.89407,4.266855,4.17131,4.791345,3.87114,2.80116,2.80116,5.621117777777778,2.0807800000000003,2.5615200000000002,3.98489,1.6517279999999999,7.46819,3.44115,4.815696666666667,4.2649333333333335,4.518565,1.954824,4.53047,5.1388,3.68285,2.1354975,3.67088,3.279705,1.1709275,1.5831425,1.1816666666666666,0.684625,1.7493566666666667,1.05517,4.36692,1.156022222222222,2.885353333333333,1.5183433333333334,1.785115,0.9564633333333333,2.1801275,2.5659,1.5085525,3.2300533333333337,2.54226,4.483391666666667,1.5825283333333333,2.4414575,3.5201666666666664,3.12558,2.4069133333333332,4.242213333333334,4.388325,5.359428333333334,20.560898916666666,2.78096,2.1888575,0.6179223076923077,0.638678,4.3863916666666665,1.903238,4.13521,4.733545,7.499276833333333,4.03319,3.900675,3.862715,3.0683933333333333,3.1420600000000003,3.3040766666666666,3.500033333333333,3.3656333333333333,6.23645,4.24669,0.962495,1.1801925,5.2312,3.1878100000000003,2.692826666666667,2.0884466666666666,2.34103,5.77305,4.843835,2.69185,1.1214600000000001,3.406685,5.0658,9.040633333333334,5.955769583333334,4.40416,4.147195,5.3642,4.786905,4.336955,4.551365,4.18984,5.3455,2.10389,5.8742,1.5728285714285715,5.3151,0.7312466666666667,5.0136,5.43855,6.0879,6.1588,4.552495,5.97045,5.4117,6.2782825,2.02135,1.6568,5.8365,3.98912,6.763775,5.0822,5.233246666666666,4.91881,6.17435,1.3035871428571428,4.351335,5.49185,4.099266666666667,4.81322,5.0174,2.66115,3.87198,4.175035,4.43032,1.0458666666666667,1.6099583333333334,1.367726,5.03385,3.99513,3.61163,2.79398,3.127736666666667,1.5154966666666667,2.11618,0.3775283333333333,3.5888666666666666,1.698312,2.2715483333333335,3.4240333333333335,2.01855,3.2837266666666665,2.6229,2.613675,10.479159333333333,3.5767666666666664,1.6886747435897438,4.562025,0.862400909090909,4.64528,1.1025125,1.90966,2.0124725,1.05271875,5.625061666666667,1.1494430555555555,1.1494430555555555,1.1494430555555555,3.0786266666666666,1.57935,5.3685,3.028425,1.680145,1.5638925,1.8199175,1.48425,1.754478,5.470111666666667,0.8401222222222222,4.336375,4.120435,3.426266666666667,1.0186371428571428,2.1154655,2.1850725,2.1850725,1.6492566666666668,3.7666216666666665,4.575665,4.987725,5.54345,4.599545,5.44765,3.014303333333333,1.907035,3.53927,5.38285,3.52998,4.43742,1.05527875,3.941587708333333,5.29965,1.8242125,4.45786,2.9874433333333332,4.331675,5.2133,2.58563,6.7758,6.2915,5.12575,4.44056,4.20119,3.144205,8.0679,4.052885,6.36181,3.35415,3.089033333333333,4.90527,2.6520333333333332,4.30487,5.22135,2.8829666666666665,3.068975,3.726515,1.69906,11.0569475,3.97903,3.091175,15.552322678571429,4.257465,1.6918766666666667,3.3569333333333335,2.990685,2.87361,4.476865,2.4440480555555553,3.560505,3.98482,3.23019,4.012055,5.930375,1.2334533333333333,2.569875,4.052825,3.8865,5.0437,2.082195,0.622244,4.9753,4.17328,2.1812025,1.244685,4.593875,4.937275,0.9681466666666666,3.81622,12.758638333333334,1.3267927142857143,0.39828571428571424,3.6690666666666663,4.353611666666666,1.087678888888889,4.51921,4.05087,5.679351666666667,1.2507516666666667,3.578465,3.85184,3.303945,4.645745,4.62554,5.095,8.470755,3.125015,4.068395,4.9087,16.22036375,3.347165,2.715525,1.2536175,2.3426325,1.2137325,2.0900125000000003,1.5004625,1.9461125,1.6557,2.4290025,2.499695,2.629075,2.05772,5.1525,3.95454,4.864245,3.08835,5.634221666666667,2.7678666666666665,4.766975,3.3853333333333335,1.18930625,3.569845,1.964735,2.4657626666666665,4.97603,4.895805,4.795065,4.83585,2.918423333333333,3.2612633333333334,2.444313333333333,5.164,3.636075,2.26382,1.8145,3.7043666666666666,4.991885,4.981145,2.3286433333333334,11.894566666666666,0.6863266666666666,2.62363,5.02325,2.5054499999999997,1.012216,2.675495,7.277661666666667,6.964251666666667,4.609205,4.106885,4.070635,2.082505,2.73246,2.920628333333333,2.059693333333333,3.6719316666666666,4.783785,4.45066,0.52117,6.14235,3.4299999999999997,3.4226666666666667,3.7661333333333338,6.47635,9.106042,4.3509245,1.1267875,2.1792225,2.137745,3.46557,2.585325,4.10494,4.66424,3.484766666666667,2.7364466666666662,4.21057,4.18913,3.710295,4.0721,2.49197,4.66972,5.32115,5.75065,3.4639333333333333,2.0343825,2.1113066666666667,29.187183038461537,1.339385,1.339385,2.3384733333333334,4.431575333333333,3.86849,4.59581,3.310455,3.33997,4.28283,3.06372,4.047335,3.06372,3.709705,1.8989200000000002,1.4715266666666666,5.753,2.433705,4.709025,3.195005,2.72031,7.030451666666666,2.0039366666666667,5.005,5.0967,3.46615,3.52572,4.64527,1.962912,4.963875,3.2795075000000002,7.033579999999999,5.52318,2.650875,4.05299,4.68176,2.07385,3.2546533333333336,3.7985,0.4672307142857143,3.2320100000000003,9.70678,4.302015,4.463165,5.29825,3.612075,3.232525,1.3331,4.20603,5.29665,3.03058,3.082895,5.41705,4.06853,4.308625,4.594955,2.479475,2.479475,3.885365,2.87833,2.9811625,1.92994,4.925315,3.95996,1.19302,3.83224,4.80956,2.9450833333333333,7.654584999999999,7.67245,1.436566,4.23349,4.78412,6.87501,0.7958649999999999,7.62359,3.6887758333333327,0.6557218181818182,5.3625,5.4824,5.2135,4.495175,4.828705,4.712535,4.9566,3.87079,4.234225,4.902755,4.66562,5.7183,5.01025,3.753605,2.830965,4.34026,3.534115,0.9145350000000001,4.370855,2.81376,1.76111,4.329345,4.553235,5.52305,1.0605685714285715,4.93865,2.9792,2.5888233333333335,1.9460375,1.2182266666666666,11.914614166666667,3.2314666666666665,2.8708500000000003,2.8197500000000004,3.7024142857142857,5.749473333333333,5.969643333333334,2.6290366666666665,2.2384633333333332,2.2702999999999998,2.2702999999999998,2.2702999999999998,1.3625333333333334,3.73764,4.055145,3.690295,4.59317,7.986545,4.127695,1.012444,2.309295,3.2927,5.09755,1.81336,4.689975,2.60736,1.2875433333333333,3.8118,6.163901428571429,6.83242,4.47636,3.867525,3.2087733333333333,5.3257,4.634745,5.484125,1.91267,1.91267,4.487315,3.79614,2.619397,2.619397,3.746545,1.1844685714285714,5.13305,3.664645,4.03839,4.321525,4.21006,3.17853,1.0019757142857142,4.335635,4.771175,4.38926,4.88172,5.04845,4.998485,4.45646,2.162895,1.4791775,3.947275,3.720895,3.166905,4.17221,2.123405,3.5289925,4.85374,2.74471,4.82758,8.493504999999999,2.3954145833333333,3.1658866666666667,4.387415714285714,4.902739166666667,1.570475,2.0214211904761905,0.9769583333333333,2.0214211904761905,1.6502800000000002,1.6502800000000002,1.48904,4.599945,3.016385,3.74091,2.348875,3.91843,1.4561916666666666,5.34045,3.0556,1.64471,2.6762866666666665,4.361535,3.9686,6.271986,4.72337,1.277736,0.7762933333333333,3.56624,6.356168333333333,2.36491,3.39844,3.251975,3.251975,2.26767,3.42967,2.978245,1.4151945454545456,3.286936666666667,3.875425,3.469485,4.416885,3.8709800000000003,1.5524175,3.73654,4.73681,4.564055,5.0982,4.135675,1.73335,2.165725,1.3034833333333333,2.25802,3.41162,1.99882,3.93225,3.157196666666667,3.222035,3.87752,4.944615,3.00933,1.112928,1.82154,1.187575,1.1866333333333334,5.05935,3.974705,1.133046,0.2709886956521739,0.2709886956521739,0.2709886956521739,3.53407,5.9937233333333335,4.4713,5.17575,3.933725,4.44436,4.73676,4.231365,2.89178,3.64206,1.60901,5.04715,3.870365,3.834975,4.34583,4.223575,0.8270927272727273,0.8270927272727273,0.8270927272727273,0.8270927272727273,0.9448380000000001,0.9448380000000001,4.19241,3.84036,3.770445,2.783475,2.460805,5.2426,4.33553,5.04595,4.263135,3.0056,2.4983166666666667,9.46585,1.420434,1.420434,4.314245,5.28505,3.2431533333333333,0.45325625,0.45325625,0.45325625,0.45325625,0.45325625,0.45325625,5.08258,5.1593,3.57212,4.418855,2.6685350000000003,2.6685350000000003,2.69146,3.1192056666666668,2.78144,2.90286,4.090295,6.874953,1.331804,4.89876,3.958585,4.246805,10.213916666666666,2.535503333333333,2.965105,0.9346628571428571,3.134985,4.78479,3.75794,1.1782925,2.7936433333333333,4.458685,5.5893,2.602,5.0225325,1.1853666666666667,1.9959633333333333,4.601275,4.72299,2.9831205,2.48965,2.4851366666666665,1.44019,8.612895,3.5151333333333334,2.5945566666666666,3.03469,2.691531666666666,3.950855,3.882045,2.7262299999999997,3.4798666666666667,6.0194,1.4691833333333333,5.22815,5.05595,4.52258,3.92256,2.8329566666666666,2.98597,3.702515,3.812755,2.824725,4.427585,4.580805,2.870423333333333,2.04360875,2.85232,2.6562966666666665,2.8066999999999998,0.7847500000000001,2.08207,7.9499699999999995,0.47836125,3.095606666666667,1.4163266666666667,2.57252,3.24169,2.8730233333333337,1.2648555555555554,1.739188,2.7167066666666666,2.0926825,3.5753,2.10862,2.791933333333333,1.3531366666666667,3.167922,2.3046375,1.09712,2.98671,2.0383025,2.2597133333333335,2.72461,3.135453333333333,3.1816,3.2555566666666667,3.1167833333333337,2.959373333333333,3.372033333333333,2.7908566666666665,2.508425,1.6402633333333334,2.86919,2.7087299999999996,1.6447366666666667,3.0833766666666667,3.7768033333333335,2.8682466666666664,2.9948333333333337,3.2153066666666668,3.772733333333333,4.792680833333333,3.0526400000000002,1.8131257142857145,1.8131257142857145,2.33359,1.1410775,2.553825,3.29643,4.50007375,2.80225,2.0290375,2.1858925,2.1111075,3.55026,3.470095,3.684075,5.36085,1.739865,2.577733333333333,3.93,1.531738,1.531738,3.046675,0.7123961538461538,3.4028730769230773,2.648925,2.648925,2.993316666666667,2.509183333333333,2.86061,2.49124,2.24395,6.605905,3.8630699999999996,3.8630699999999996,3.932795,3.112765,2.310805,2.942185,2.369505,2.9975,4.908145,0.47321250000000004,0.6628860000000001,4.06345,2.443755,2.881225,6.482623333333333,3.69016,1.6501000000000001,5.06303,4.68799,4.00137,4.31118,5.3066,4.621755,13.496813,3.50179,1.6364400000000001,2.78163,3.773215,5.3389,3.9042,4.42214,4.407085,3.671405,3.10877,2.8343233333333333,3.574685,2.81503,2.22908,2.22908,3.9632,3.37884,2.98265,3.47137,2.32389,2.39706,2.282555,1.9628675,2.037135,1.998975,1.8021975,3.8171635,3.56873,2.728455,6.66505,3.70227,2.28484,1.8220166666666666,3.35443,3.783365,3.589795,3.1025718749999998,3.43889,3.19162,4.18286,3.51143,3.740695,3.833765,3.27417,3.43014,0.8069416666666666,0.8069416666666666,0.8069416666666666,3.2905,2.262055,4.975995,2.26013,3.606915,7.678335000000001,2.831326666666667,0.3607115384615385,5.3403,0.735674,4.373912857142857,1.873065,3.773065,1.73233,5.00895,5.838425,4.4552,3.898555,2.7442766666666665,2.87297,1.4980166666666666,2.4861833333333334,0.47100473684210525,0.5790435294117647,2.9361433333333333,1.5098,1.9743225,3.789875,3.169435,4.92385,2.927436666666667,2.94683,3.369225,5.67098,1.9449975,1.033707142857143,2.25956,3.5551880000000002,1.3076735064935066,5.1221,3.734805,3.719355,2.69247,4.087315,3.058453333333333,2.67545,2.8005066666666667,2.26044,2.847353333333333,2.12598,3.1143300000000003,2.3389533333333334,5.683610000000001,2.5841,1.9233966666666669,2.5354966666666665,4.9042113333333335,3.0842300000000002,3.0842300000000002,2.458813333333333,3.92951,2.2437625,3.603435,2.82671,0.6090906666666667,4.401015,2.2440825,11.706416666666666,7.26556,2.68245,3.08879,3.249885,4.97707,2.791145,3.4199,0.22318733333333332,2.0386625,4.0854333333333335,0.8640416666666666,3.849165,1.3949128571428573,5.1825,3.322365,3.650985,4.918785,4.139565,2.286925,4.646165,3.718205,4.279785,6.48318,4.200835,3.0321833333333337,3.245573333333333,1.623068,2.216035,4.640525,4.413495,4.1524225,2.676865,5.89205,1.591494,2.84889,2.55409,4.576415,11.000943333333334,3.52161,7.841233333333333,3.731255,4.58706,1.0096866666666666,4.88641,4.755615,2.546813333333333,2.938553333333333,3.7250666666666667,2.9725466666666667,2.279646666666667,1.6702000000000001,1.9034033333333333,3.59503,1.65611,3.1725433333333335,5.223238666666666,2.8167333333333335,1.0421007142857144,1.0421007142857144,3.49001,3.1965705,3.1965705,4.1106,3.18936,3.3246615384615383,3.628133333333333,3.4091,2.5599433333333335,2.3175433333333335,2.2993866666666665,3.0882799999999997,2.22526,2.4867,1.59127,5.63657,9.398097166666666,0.6326092307692307,0.6326092307692307,0.6326092307692307,0.7302910489510489,0.7302910489510489,0.6326092307692307,2.917403333333333,2.9246200000000004,4.371498333333333,1.5066249999999999,1.8684025,3.1346879999999997,2.3429933333333333,3.0278466666666666,2.31058,3.00596,3.5393000000000003,6.968543333333333,3.0718033333333334,2.5620533333333335,3.5311333333333335,4.483545,2.647213333333333,3.3610333333333333,5.64151,2.293273333333333,3.328583333333333,1.3374366666666668,1.3374366666666668,2.9092033333333336,0.5202394736842105,2.3524266666666667,2.7970900000000003,2.995063333333333,3.5217666666666667,2.32862,1.4529733333333334,2.684893333333333,2.97368,2.2901466666666668,4.708305,2.4995673333333337,4.09033,3.4314,4.853045,0.49103199999999997,7.187946666666667,3.0455959999999997,3.0455959999999997,7.770464722222222,1.7620633333333335,1.7028533333333333,3.209846666666667,4.46122,2.2725433333333336,2.027223333333333,2.9482866666666667,1.381795,3.3579333333333334,1.7664633333333333,2.9800605,1.33465,0.2652577272727273,0.2652577272727273,5.3049,3.773545,3.40678,3.084403333333333,3.25965,3.39941,1.26206,5.99885,3.65687,2.80549,1.80786,1.3674391666666668,2.211525,3.209846666666667,2.44661,1.99033,6.19581,4.031095,4.718475,4.50798,2.247085,0.6573058333333334,7.4858075,2.0344725,1.506525,3.36405,4.606275,2.028305,1.8371166666666667,4.662915,4.525955,3.467966666666667,3.228896666666667,4.583945,4.889205,3.5430333333333333,2.593276,2.593276,4.116815,5.01965,5.79455,6.696863333333334,2.8810966666666666,3.93672,1.3589157142857142,2.480995,4.832967333333333,3.810095,1.7740040000000001,4.316385,3.434055,4.52338,2.05531,4.02638,4.850055,5.2566,4.845965,2.3807733333333334,2.65441,3.9185,1.9785533333333334,2.82295,2.97207,2.452593333333333,0.9841710000000001,2.12745,2.7758366666666667,2.500036,4.713345,4.627655,4.86347,4.089535,4.057835,5.4538925,12.764225,5.5805,4.192,4.352315,3.94177,4.6238,3.283106666666667,3.126903333333334,3.751533333333333,1.2670875,2.80165,2.764665,5.026,5.5603,4.85532,3.2301066666666665,2.69194,2.49153,4.330466666666667,4.3039725,3.452366666666667,4.3039725,3.063209,2.36531,2.3931699999999996,2.363885,2.7304733333333338,1.7536666666666667,0.816985,1.6955833333333334,1.7357633333333335,1.94351,1.52473,1.2966733333333333,2.02162,2.9359266666666666,1.520394,3.3864666666666667,1.3083766666666665,2.2172533333333333,2.67329,4.1812,2.518263333333333,2.1847066666666666,2.3401833333333335,3.13567,2.189085,2.8310666666666666,3.10764,2.5173366666666666,2.9977066666666663,3.0480025,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,5.0018,3.50168,1.0036671428571429,3.07251,2.50208,3.0578133333333333,4.164685,3.04952,4.47874,3.711141333333333,1.831562,3.1880333333333333,1.6685166666666669,1.06155,0.92363,1.4525983333333334,0.8634266666666667,0.8414666666666667,1.3850580000000001,3.17576,1.6393239999999998,1.7676999999999998,1.79976,2.453152777777778,1.294545,1.490515,1.6082466666666668,0.9221383333333333,1.2298816666666668,0.6923433333333334,0.8200620000000001,3.200955,3.43684,3.83961,4.408185,4.13382,2.99259,4.33192,3.7163,1.9052275,3.662315,2.039095,3.45682,2.5228699999999997,0.8240045454545455,4.39505,4.68427,2.1041733333333332,1.2771475,2.843705,3.35642,3.7666216666666665,2.8504166666666664,2.51265,0.92585,2.1449425,5.088395,3.94607,2.3827,1.496465,3.69324,2.2101425,0.6700909090909092,4.64345,4.04498,4.126005,2.430045,1.323988,4.91581,4.302305,2.5907533333333332,2.5740866666666666,2.77945,2.7865133333333336,2.7357766666666667,2.84369,3.250446666666667,1.2777375,2.669675,2.485133333333333,5.22635,4.208655,3.545755,4.406605,16.017589238636365,4.372155,4.700484666666666,2.85207,3.969455,4.91779,1.584872,2.6981,2.7404333333333333,6.963635,4.821375,4.6496,5.772,2.7404333333333333,3.738785,2.04226,2.62245,2.7779866666666666,2.8184733333333334,1.2975166666666667,4.18281,3.743415,2.53655,4.126085,2.5420133333333332,2.7495166666666666,3.570025,3.135775,4.9102,3.84277,2.83311,3.4151,2.74213,2.67721,1.3288220000000002,1.3288220000000002,2.7976566666666667,2.12131,0.3125714285714286,5.602956,0.97059,2.8965,3.627205,0.5409291666666667,4.79535,8.455018333333333,1.79668,3.656835,3.78487,3.4255,3.229825,2.102625,2.89446,3.549035,4.04118,3.17437,4.0749,0.9972833333333333,11.399298666666667,2.871825,2.894815,4.940305,2.46479,3.910605,7.93167,4.70134,4.303125,3.98945,4.312545,5.50623,1.47072,3.1380700000000004,4.180025,3.8573,1.8872699999999998,3.77111,3.632655,3.69338,3.86744,4.5971,4.016975,2.3964783333333335,3.71632,3.66617,5.4439,4.53828,2.2260133333333334,2.3610466666666667,1.9304366666666668,2.9390633333333334,1.3354866666666665,3.6293,0.83143,3.3460666666666667,3.1199166666666667,2.513523333333333,1.5193349999999999,4.430385,4.832905,4.07788,1.8108975,4.590025,3.930015,0.7547412307692307,0.3470392307692308,4.49806,5.1029,1.00605375,0.3470392307692308,3.55617,0.7547412307692307,0.7547412307692307,0.3470392307692308,5.732798333333333,2.4490933333333333,2.54928,5.4464,2.841915,3.05716,0.7667455555555556,3.23026,3.71751,4.491095,5.386,2.244015,0.7263253846153847,4.744985833333333,2.7196866666666666,1.6342120000000002,2.2106125,1.168062857142857,2.7340433333333336,2.5309066666666666,3.65856,5.1611,3.1544233333333334,3.4793333333333334,2.9575066666666667,2.3906133333333335,2.925225,4.19120125,1.47972,2.0280625,3.97588,5.19475,2.175216388888889,5.2791,2.526945,4.117295,4.118775,3.426455,1.15692,3.122705,6.38325,3.82622,3.9525,5.04385,6.07745,2.561815,4.735275,4.47391,3.11208,3.051265,8.21953,3.669425,4.6461974999999995,2.258545,1.10766,2.4731,2.076275,2.211165,1.912795,4.913855,0.7323142857142857,3.461015,4.087285,1.8534733333333333,3.03974,4.74659,3.67112,2.73155,4.610655,5.48065,9.955502333333333,2.5908333333333333,2.9818933333333333,1.633918,1.9669166666666669,1.2188266666666667,1.6121366666666666,3.2341866666666665,2.4900800000000003,3.08282,4.643597692307693,1.52142,2.2689033333333333,5.2585,5.4465,3.8398,3.430355,2.8899,2.45012,2.072355,1.9823,1.9115133333333334,2.09344,3.70277,3.595515,4.83843,5.171,4.174805,5.617259166666667,3.47085,2.45206,6.368257083333333,4.4759,8.03455,4.7926225,4.7926225,5.464316666666667,1.5752466666666667,1.361485,1.3611533333333332,0.710268,4.987025,3.832333333333333,3.287045,3.287045,1.9961860000000002,4.578145,4.378985,4.488995,4.779645,2.881876666666667,2.69762,4.20061,3.082333333333333,5.0121641666666665,4.43971,0.7541281818181819,5.5918,5.2968,4.96195,5.35265,3.0989,5.9234,4.61437,0.8817923076923078,5.0067,7.050940000000001,3.635595,5.6195,5.831,3.37541,2.516045,3.8355,6.2958,2.10858,5.9971,1.843185,4.962625,2.60734,2.1960525,0.9512409999999999,4.403625,5.7853,3.324635,4.24207,2.0242999999999998,4.40839,8.185013333333332,3.65799,4.046585,2.735795,2.80258,0.880405,4.93735,1.5261149999999999,3.6671916666666666,3.6671916666666666,4.26454,2.2621433333333334,3.0770466666666665,4.20877,1.9350825,3.0872433333333333,3.352,3.2586,2.95864,3.85727,2.51384,1.73292,3.754566666666667,2.1236825,2.9032666666666667,2.02589,3.0717233333333334,2.954,1.4595857142857143,1.7028299999999998,0.45316833333333334,1.2869516666666667,0.45316833333333334,0.45316833333333334,1.7028299999999998,0.45316833333333334,3.3533666666666666,2.997286,2.997286,2.981446666666667,5.13175,5.0889,4.42731,5.4049,5.07495,3.40552,4.273225,4.206525,2.178655,2.5245141666666666,2.882963333333333,0.7952181818181819,5.48305,2.9607733333333335,3.1811399999999996,5.38865,3.7568099999999998,5.1656,3.291835,2.58503,2.964125,3.238905,2.4091666666666667,2.6026599999999998,1.99717,5.58195,0.8936222222222222,3.96687,1.207162857142857,3.5948,2.6408066666666667,2.998613333333333,4.15546,4.17599,4.17041,4.852045,4.033465,4.0487,4.53089,4.123125,2.553125,2.69185,3.3227499999999996,4.120115,4.261165,4.43984,2.64702,3.385235,3.4645333333333332,3.21654,4.103715,4.61706,4.09464,68.33445490764791,2.683385,3.887805,15.807202666666665,3.88878,3.023703333333333,1.97413,1.95482,2.591203333333333,4.680642499999999,3.04636,4.374983333333334,6.6481,3.270155,8.027105,5.2646,2.59373,2.914175,4.199205,3.438915,1.86666,1.2687875,4.48895,3.17891,6.051121666666667,3.74898,2.317633333333333,3.42007,3.235275,4.31454,3.07612,5.480505,4.369245,3.642535,3.31772,2.390165,3.89383,5.97385,2.903165,3.763565,4.530145833333333,1.0831366666666666,2.886155,5.3071525,3.92872,3.80397,3.526485,2.9878,4.31466,3.04016,3.843855,3.24719,4.3807,3.3099,2.99681,4.30894,9.400635000000001,3.1427266666666664,4.06567,6.18794,2.985455,3.18964,4.2488318750000005,2.2028366666666668,2.7906,3.3566000000000003,3.482695,3.233695,3.84071,3.161125,3.20199,4.02834,3.84708,4.14462,3.754395,4.091325,3.973875,2.8500183333333333,2.8500183333333333,6.733905,1.86589,3.181,3.80659,2.67382,5.1298,4.073895,3.08466,3.12811,5.44435,6.9281950000000005,0.8128081818181818,3.428905,2.32195,2.7971166666666663,2.734773333333333,5.2859,2.7410366666666666,1.9649575,1.16260125,2.0788304545454546,3.987965,4.45029,3.83177,6.13485,5.0186,5.8874,2.40116,1.72502,3.969865,3.86779,3.152143333333333,2.225023333333333,1.3225033333333334,2.6924766666666664,3.2997266666666665,1.678266,2.466413333333333,2.4245445714285716,3.6328082417582417,2.70383,5.097,3.3244,1.3604925,5.5339,3.52813,5.23,4.93174,4.93251,4.617475,1.87314,1.4049133333333332,0.6260528571428571,1.5137033333333332,3.528535,2.41681,3.352666666666667,1.2802666666666667,2.24959,2.297395,3.304715,3.448765,3.693145,3.969855,1.6369425,1.41048,1.9441175,2.1197775,1.464685,2.6721,6.98301675,4.83402,4.23188,2.881335,7.7274449999999995,4.83326,3.02614,2.908525,3.26601,2.61174,3.577945,2.2653466666666664,6.9961,0.8563933333333332,2.991985,6.83105,4.06779,4.655535,5.5453,1.4697033333333334,3.2397266666666664,3.01154,2.9023033333333337,1.5806425,3.91751,8.15637,4.037855,4.84666,4.10207,4.010065,4.650085,0.8685633333333334,2.7918833333333333,5.37665,6.487500000000001,4.78987,5.49895,2.817185,3.8200000000000003,2.4848,5.0174,4.96338,3.7106285714285714,3.7106285714285714,0.5830085714285714,3.364266666666667,0.8742800000000001,0.5812700000000001,1.82486,3.7877666666666667,3.1614240000000002,4.383864,2.2695766666666666,2.9658480000000003,2.9797333333333333,2.7604100000000003,2.700153333333333,4.4559,3.4743158333333333,1.8420425,1.8420425,3.864435,2.94853,2.6678533333333334,3.864615,3.3447666666666667,0.7026033333333334,3.294333333333333,2.577036666666667,2.9462466666666667,2.8012766666666664,2.4059375,2.477793333333333,3.1361566666666665,2.9568033333333332,0.849734,2.6821633333333335,6.2144029523809525,2.17884,7.77458,1.529852,1.529852,3.5423476666666667,3.2246166666666665,3.3810000000000002,2.9124166666666667,1.84815,1.3973885714285714,3.0937933333333336,3.3831333333333333,1.6432833333333334,1.5057571428571428,2.7842566666666664,2.790948,2.7488166666666665,1.830365,2.02864,5.74595,2.112445,2.62743,3.327775,1.69226,3.49528,2.9559,6.92394,4.409975,1.71625,3.766005,2.70369,2.04557,4.060235,2.70891,2.695075,7.3489225000000005,0.8211384615384615,0.6546816666666667,4.7269,1.387144,1.387144,4.12929,2.3571775,4.837185,3.27631,1.3043066666666667,2.1418366666666664,2.7828966666666664,2.206906666666667,4.975925,3.89816,2.8064766666666667,2.4506666666666668,1.5859371428571427,1.5859371428571427,2.4430533333333333,3.86403,3.8171999999999997,5.37135,3.168613333333333,5.20715,4.65445,6.9563,4.99785,2.53583,2.76247,2.6103633333333334,2.6320099999999997,0.7365777777777778,0.7365777777777778,0.7365777777777778,3.19299,4.600575,4.187355,0.9695,0.9695,5.72605,6.41175,7.71528,22.55956711111111,12.27,8.75673,3.64493,5.90865,2.4608175,4.694155,2.6967700000000003,3.3209433333333336,4.214166666666666,5.3817260000000005,1.967305,1.92737,6.9703,2.29826,2.29826,6.67,3.673195,4.36725,2.0962775,4.930992833333333,5.00985,2.857965,5.437,4.15471,0.8968833333333334,6.3591,9.42578,0.8968833333333334,2.0962775,2.0343266666666664,0.8800840000000001,0.8800840000000001,1.8621159999999999,2.28856,1.8621159999999999,4.813205,6.1227,6.5181,9.15365,2.0962775,11.670486,6.3338,5.15475,2.4608175,3.28016,4.90959,9.67436,3.103320833333333,3.890735,6.14205,3.393145,4.97415,6.4043,4.87358,5.37515,4.792175,2.43845,5.68835,4.151255,4.76316,4.42172,0.77526875,1.547476,3.04576,5.58805,4.71327,2.8167333333333335,1.949325,3.986455,4.96134,5.7752,5.2193,5.18675,4.31218,3.32188,4.26121,3.62428,2.013005,4.754385,1.932685,2.592155,3.615775,1.7712,3.835045,4.58968,3.564175,5.21295,2.89801,6.549863333333333,0.931861111111111,3.40725,3.572345,1.3487385714285713,5.810899,1.533595,1.5766166666666666,2.6022233333333333,2.9424125,3.0169033333333335,2.7900333333333336,2.03227,0.7964936363636365,2.33183,2.466475,4.48878,0.7188792307692308,6.6608,1.78942,1.170306,3.5081333333333333,1.170306,3.84787,0.9568090909090909,4.397185,3.1239600000000003,1.609185,4.471502,4.417497,4.417497,4.79228,2.6056,3.1889700000000003,2.7063466666666667,1.7293859999999999,3.672225,3.804395,1.96009,0.7904516666666667,7.500554230769231,2.6818,3.780535,4.049085,7.45535,2.6138,3.9827,3.668815,3.00442,3.89541,5.7796,6.339815,4.310525,4.88245,5.1453,2.841756666666667,4.61883,4.0547,4.64049,1.1851777777777779,0.5958342857142858,3.095055,3.3248800000000003,2.769156666666667,5.4798,3.72766,4.24146,4.85328,4.941455,4.54721,4.479115,1.14968,2.341925,9.269611666666666,2.24469,1.9600166666666665,3.663456666666667,12.192068353174603,1.5113975,4.912155,6.1501,4.797935,3.148073333333333,2.30138,3.1720633333333335,4.189705,1.0851466666666667,3.3760999999999997,4.013315,0.38601473684210524,2.32044,4.939145,4.5218,2.174885,4.098105,3.4248,4.8913408333333335,1.2702266666666666,0.6293836363636364,3.6211141666666666,1.196702857142857,1.0564025,1.0564025,1.0564025,1.0564025,1.5271949999999999,2.8404399999999996,2.754633333333333,3.6491333333333333,5.6387,3.5985666666666667,5.2543,3.72148,4.37043,3.474845,3.87447,1.5185966666666666,7.503575,2.440925,5.15415,5.275036666666667,5.0633,5.0253033333333335,3.1328033333333334,2.4951866666666667,2.658873333333333,3.774975,1.1484366666666668,6.0728349999999995,2.4959599999999997,5.1026,3.04116,2.5361933333333333,3.62178,3.432715,2.889345,2.4378800000000003,2.7642399999999996,1.41734,0.4090111111111111,4.569075,3.36578,4.184005,3.39945,4.000605,6.00485,4.186215,0.5274815384615384,3.3822419999999997,7.646018666666667,1.9941566666666668,2.26962,5.369411666666666,4.74225,2.795256666666667,4.7717,5.3282,4.17095,4.51689,4.26756,5.1595,5.0822,4.87458,3.590705,5.429697000000001,1.46783,1.7251833333333335,4.36867,4.21559,4.36839,3.081245,5.18995,4.516885,3.786145,3.286075,16.166872058101074,1.378301943552702,1.4247125,2.351130681818182,0.530559375,0.5074093333333333,1.6316375,0.3759088235294118,1.338034,3.4612,1.57699,1.0779333333333334,1.0618104166666666,0.48098916666666663,1.0618104166666666,1.0618104166666666,0.48098916666666663,0.8980923076923077,0.6900278571428571,2.85153,2.7594666666666665,4.021865,4.65281,2.8263200000000004,2.6991,4.12649,4.82889,5.3336,3.557575,4.46221,0.7142757142857142,2.3465346666666664,8.857304166666667,4.78423,6.865053333333333,2.51521,4.244765,2.26147,4.87482,4.752095,3.132475,4.030395,3.092565,0.9996816666666667,4.25752,5.15625,1.2127219999999999,1.275606,1.6035233333333334,2.30605,2.4866366666666666,4.83693,5.3955,2.2547375,2.2547375,3.455570833333334,6.16053,2.0550200000000003,0.6336636363636363,0.99368,2.4209733333333334,3.4194333333333335,1.105457142857143,1.105457142857143,1.105457142857143,0.37602076923076927,1.0623757142857142,3.114825,6.2933,3.9049333333333336,4.226133333333333,5.5053,1.02798,3.695233333333333,3.3035533333333333,3.9613,5.77595,2.853073333333333,7.688583333333333,5.18725,1.1640222222222223,3.7785333333333333,1.8848120000000002,2.489035,2.21555,6.730981666666667,2.8866866666666664,4.691675,2.222835,4.12889,4.260355,4.725555,0.45470111111111117,3.0443533333333335,1.31388,2.57266,3.8241680000000002,2.1245966666666667,2.708016666666667,2.320466666666667,2.407993333333333,2.47532,2.698983333333333,2.6965800000000004,3.034333333333333,1.283288,2.14217,2.3683466666666666,3.0419466666666666,2.614,2.01075,1.71215,1.8536066666666666,1.748935,3.13389,2.4743166666666667,2.65976,2.3607733333333334,2.49012,2.8926833333333337,0.8146433333333333,0.8146433333333333,0.8146433333333333,2.3753366666666667,2.3245033333333334,2.9126066666666666,2.517046666666667,2.584303333333333,1.98395,4.01423,3.217461666666667,1.2750883333333334,2.56648,2.6714366666666667,3.41875,1.6051428571428572,7.026515,4.54285,3.17403,3.88591,3.399095,1.68281,0.70378,3.261355,3.678545,3.41875,4.652265,4.210785,5.42265,2.8523066666666668,3.869795,4.19775,0.8156599999999999,2.634225,3.31846,4.7410041666666665,4.586025,3.5237,3.16831,2.36484,2.45431,2.5568566666666666,0.6206416666666666,5.323786666666667,2.69915,4.39722,2.7319600000000004,3.767948333333333,3.156283333333333,2.3014966666666665,3.166649333333333,3.166649333333333,2.5464166666666666,2.034143333333333,2.68404,1.8925933333333333,4.289485,1.373466,2.737015,3.570735,4.031285,3.675645,5.36295,4.650055,2.4012475,2.112305,3.27239,3.11956,4.127105,4.804925,3.26642,1.0230357142857143,1.0230357142857143,4.517175,3.657026,0.9436859999999999,4.43435,0.9436859999999999,3.963005,4.662605,5.1498,3.312785,3.17964,6.2189525,4.488833333333334,6.29565,0.9179428571428572,0.9179428571428572,2.1352,4.679936666666666,1.4491366666666667,3.2308,3.93665,1.0696157142857143,4.07234,4.355755,6.161199999999999,6.161199999999999,1.1762466666666667,5.2404,5.10745,5.27985,6.3253,2.137815,2.137815,7.11475,0.9523,7.282,1.913875,6.401355,2.634185,2.402086666666667,3.432295,2.2678599999999998,2.1974199999999997,2.7040633333333335,2.96265,2.6855040476190477,6.434807,2.0357600000000002,5.76605,3.11734,2.8077900000000002,1.81064,2.057055,2.70118,3.3434,3.547055,2.627295,2.224885,2.17973,2.68453,1.100726,3.13497,2.08192,3.039465,1.982095,1.982095,2.96832,2.07541,3.75175,3.387965,5.16105,7.417048333333334,4.497325,3.494615,6.516565833333333,2.1417066666666664,3.3424899999999997,2.27452,1.5384285714285715,1.7597925,4.19171,1.6236666666666668,0.4816,0.647305,4.517255,4.313175,2.90445,0.9496211111111111,2.84297,2.8231566666666663,5.00545,1.9161740000000003,1.87014,1.212711111111111,4.748945,2.77849,4.355205,0.688931,4.37838375,5.62685,4.354985,4.50267,3.545215,3.670995,2.9615733333333334,5.39605,3.47471,2.648966666666667,2.690523333333333,6.268808333333333,6.79454,0.85314,4.374305,4.147585,5.13535,3.672266666666667,3.7147,2.875425,3.3316166666666667,3.9616666666666664,6.2083775,2.790948,2.5200915,3.72634,4.512535,2.40112,2.625175,8.305156666666667,5.0441,1.8916666666666666,5.00605,4.78467,1.809244,3.955745,1.4829625,1.8884714285714286,4.435925,3.866065,6.1637,3.6399333333333335,4.967255,5.97695,6.8798,4.96767,5.66425,4.48926,5.7603,4.730045,4.6594750000000005,1.155555230769231,1.155555230769231,8.69225,0.9873875,2.1428361904761903,0.9873875,0.7473900000000001,0.3810633333333333,2.8902261904761906,2.254845,0.49927285714285713,2.1428361904761903,1.820435,3.32676,2.3909533333333335,3.368775,4.66763,7.846586666666667,1.923235,2.30722,2.46611,5.16515,5.71905,2.003545,1.6734,1.92052,3.59392,4.10356,2.468545,4.61547,6.2559474999999996,0.4808233333333334,3.933465,0.752679,2.9635700000000003,2.6664,4.052175,1.2694383333333332,4.617795,4.4174625,4.22433,3.004915,4.604865,5.1605525,1.5605575,3.733135,0.6530507692307693,2.7647,2.640935,1.113084,3.12046,2.4030033333333334,2.5124566666666666,4.244885,9.08599,3.434735151515152,3.62876,4.65297,8.01146,5.6967175,3.3531333333333335,3.927745,3.525525,5.5676,5.53085,6.228,5.7343,4.50637,6.34065,3.4526333333333334,1.424585,1.83599,2.7423466666666667,4.09981,2.3327666666666667,0.2467424324324324,0.2467424324324324,0.2467424324324324,30.742056595238097,0.2467424324324324,2.8427424324324324,0.2467424324324324,0.2467424324324324,0.2467424324324324,3.3264757657657658,4.350265,0.2467424324324324,0.2467424324324324,0.2467424324324324,0.2467424324324324,0.2467424324324324,3.40703,4.88372,3.16331,0.3318333333333333,0.3318333333333333,4.298346,4.161003916666667,4.11943125,3.5794895833333333,3.924332857142857,7.977033333333333,11.452512191919192,6.486106666666666,8.230686666666667,6.98403025,2.9092033333333336,6.188819047619047,4.307783333333333,4.44938875,0.3318333333333333,8.372317,6.641097904761905,7.1525516666666675,2.732,9.22873475,15.486634464285714,18.99035798992674,57.88267270228138,117.55047064827983,1.3374366666666668,3.328583333333333,3.184375,4.071884216216216,0.3318333333333333,1.6446516666666668,8.407377916666668,15.172852833333334,20.34330611111111,49.4354185858396,12.961567583333334,2.97315,0.2966668965517241,0.2966668965517241,4.509483333333334,2.7131166666666666,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,8.71032,0.2966668965517241,0.2966668965517241,0.2966668965517241,2.994915,2.0605466666666667,3.754555,3.80317,4.049448333333333,5.3576,2.65015,4.126345,4.371925,3.2511,1.3994166666666665,3.362405,0.9828766666666667,2.21038,2.45877,5.757883333333333,6.25462,2.8659833333333338,5.985229166666667,0.488585,0.5714766666666667,2.49466,2.8413500000000003,3.275805,4.66814,3.3950666666666667,8.0398675,3.644945,3.207565,3.32742,4.18346,3.353335,2.95896,5.84035,3.90252,0.4765830769230769,0.9055845454545455,4.3640799999999995,1.7808475,3.62297,3.77732,4.33204,3.39744,2.601725,2.65633,0.5834406666666666,0.733823,4.184505,2.5592466666666667,4.987735,3.71946,4.12352,2.93176,3.601995,5.5857,5.35765,3.25861,0.85824,2.7677600000000004,4.856035,2.24155,1.0178875,1.66754,3.5977,6.01375,1.838215,3.48522,3.863135,5.6147,2.294865,2.4542800000000002,2.195795,4.168335,2.54969,4.35813,0.7015385714285715,2.97195,3.28463,1.737515,6.776233333333334,4.215125,4.486105,5.1922,2.80035,1.98495,0.5737190909090909,5.7093,4.85031,5.9624,2.576175,5.158,4.16197,2.82075,2.761565,1.3199514285714287,5.3474,1.94271,2.61597,9.509895,4.309445,5.4313,3.658975,1.0747844444444443,3.06734,1.2872957142857142,3.31101,6.33115,5.1347,5.08295,3.7185,5.47745,4.33645,1.7502925,1.7827933333333332,5.13585,2.9148300000000003,3.3984666666666663,2.503825,4.99082,4.05235,1.4278700000000002,3.4304,2.638605,2.823405,3.41833,9.2669,4.53952,1.753885,4.626755,7.29718,4.456497499999999,4.071955,3.945935,3.89982,5.0064,7.789705,2.41099,3.109965,5.34655,4.275335,2.726185,3.15584,5.03975,4.07721,3.59804,4.3876393333333334,18.269061666666666,2.7494366666666665,2.39731,3.2063633333333335,5.5249266666666665,1.1819675,4.4388,2.180315,4.84409,1.5027350000000002,4.460375,4.29062,3.708275,0.93309625,4.66853,4.379665,1.6626375,5.097372651515152,4.36775,1.06119,3.54192,2.062995,2.322305,1.58824,4.211455,3.69148,4.462535,3.59824,2.9484033333333333,4.399245,8.004501666666666,4.550805,4.43615,5.0269,3.237033333333333,4.1892,5.04275,6.249872,0.932872,0.932872,4.36599,4.736885,2.3874999999999997,1.53796,7.4513,4.18682,3.73873,4.0804,4.68765,4.411265,3.57794,4.16145,6.43732,4.127296666666666,4.530755,4.73191,1.4784000000000002,2.65375,4.48325,4.93249,3.54156125,0.19212305555555556,1.51224,2.3671875,2.4883866666666665,1.9532333333333334,1.0337788888888888,1.4280425,1.2960725,2.75473,0.5972688888888888,1.2972357142857143,2.16042,3.819355,3.897933333333333,2.5585033333333334,2.9237933333333337,2.9872933333333336,2.770573333333333,0.748166,0.96673125,3.09923,4.855415,4.347695,4.593595,4.516455,4.650255,5.1473,2.21804,4.37734,5.10485,4.71782,6.513097500000001,3.87887,0.4837429411764706,5.80675,4.90525,4.68221,5.38525,3.241215,2.0065,4.201495,3.943865,2.35248,5.047938333333333,4.480905,1.4644483333333334,5.047938333333333,4.345725,6.565425,3.666255,1.2113666666666667,4.04419,5.12695,4.522295,2.757843333333333,5.1089,1.4904625,2.0107075,4.64473,3.308035,0.7792566666666666,4.589355,4.955605,3.873945,4.575105,3.30884,3.2749900000000003,1.7495100000000001,2.09432,3.065885,3.90673,3.688133333333333,2.40227,2.671525,2.2457,5.47125,1.6420285714285714,0.8332933333333333,6.74071,4.4381,1.484764,2.8015633333333336,2.6435833333333334,3.4141999999999997,7.056903333333333,2.5394227777777774,0.8468009999999999,2.419035,5.17615,2.48942,4.60185,5.82705,5.32495,5.0571,4.29334,5.4274,2.2469633333333334,2.1670700000000003,1.6294833333333332,2.10244,1.875225,2.736273333333333,2.22055,1.747435,2.652035,2.9986,3.945755,6.51605,5.47705,4.21442,4.60674,3.85842,4.032445,4.775265,0.90116375,2.8147466666666667,5.16995,1.131512,0.70568,4.71674,3.385375,2.5193566666666665,3.4878750000000003,6.3864025,5.08785,0.987853,1.2123828571428572,0.6904344444444445,4.026778333333333,2.1474866666666665,2.6801600000000003,1.1873257142857143,3.18665,2.81208,5.674,4.927755,4.5021,5.556,4.18509,1.4394233333333333,3.59263,1.6127966666666669,3.47332,4.492535,3.749855,2.895656666666667,3.4768000000000003,2.9933333333333336,5.47375,4.225535,3.733305,2.4917,8.514814999999999,10.6618475,4.51516,1.1854099999999999,5.43455,4.353315,5.2112,4.37817,4.090275,3.84108,3.257845,4.076265,3.5871653125,7.49699,3.72102,3.5286,4.42395,1.87198,5.596,5.9572,4.75718,3.1941,3.107335,6.92389,0.7363016666666667,2.78516,2.663536666666667,2.252623333333333,5.10865,3.40727,1.3927916666666667,4.50592,3.4616666666666664,3.752795,4.87595,3.818369166666667,6.511386,3.15597,2.955,3.290896666666667,2.87106,3.925155,2.3920333333333335,2.26648,3.0808999999999997,4.024185,3.6276004166666667,1.8859675,1.518695,3.589794642857143,3.1537170000000003,0.9325755555555555,2.7388816666666664,2.7388816666666664,1.3336075,5.58845,2.95001,3.183745,3.579975,3.66603,3.333165,3.24085,3.233055,3.13022,2.23188,0.5657586666666667,3.257545,5.90895,3.15939,3.5932,3.131405,4.066,4.38668,3.19979,2.88972,4.023225,3.765835,3.08978,3.108005,3.737325,2.5495266666666665,3.8633,3.923365,8.71476,3.28741,3.662595,2.90326,3.99494,3.974605,3.539395,2.27464,3.55822,2.5568850000000003,2.814385,2.836965,2.977595,3.910255,1.6799733333333335,1.6799733333333335,2.16443,3.1272,3.1513,1.548306,2.182325,3.250375,1.876754,2.75736,1.548306,4.857725,2.923115,3.8902585,2.946715,3.357145,2.46194,3.607335,3.774395,4.218945,3.6308,4.292305,3.767955,4.08093,3.55767,2.85629,3.13975,2.986265,3.709735,2.6010266666666664,3.760575,5.00185,4.02687,3.531935,0.32461347826086956,3.61353,0.4375441666666667,3.62689,3.52174,2.78828,3.58134,3.795745,6.055555,3.255215,2.5619633333333334,2.2767166666666667,2.72288,0.768977,6.279563333333334,3.02912,3.24182,4.768265,2.39046,2.472185,3.26852,3.107605,6.56592,4.104705,5.07695,4.45645,4.69732,4.368005,3.70218,1.4367516666666666,1.6478519999999999,3.782835,4.549275,5.475735,2.3722966666666667,4.6727,1.83824,3.5093666666666667,3.618725,1.8253942857142857,3.89532,4.6958675,3.573066666666667,3.8211333333333335,3.0415666666666668,4.399485,5.04575,3.3185800000000003,4.281365,4.349625,4.945845,4.64844,4.377395,4.251695,3.06457,4.672995,2.607275,3.6017333333333332,3.6017333333333332,4.927345,2.7521966666666664,3.89324,2.8155633333333334,4.606725,3.3742666666666667,3.39133,1.84964,1.79558,1.1456983333333333,1.1456983333333333,1.7718440000000002,3.525166666666667,1.6328966666666667,2.6974633333333333,4.38237,5.157878500000001,3.3717666666666664,4.855865,5.78834,3.06239,2.831995,3.0717933333333334,1.56749,4.301985,4.05763,6.6404175,1.6838566666666666,5.53105,5.5343,3.4747333333333335,3.270095,4.312325,6.65446,2.20419,2.4406075,4.36716,0.49400000000000005,4.07337,3.930545,4.562585,4.116975,3.61826,1.525928,1.683132,3.86562,3.95821,2.4393266666666666,3.71235,4.56209,4.73028,1.1645475,3.635305,4.281835,3.842475,4.80248,2.84247,5.608123333333333,3.63582,1.4948700000000001,3.584515,1.2333100000000001,2.7439766666666667,7.805429999999999,3.220385,0.8028963636363637,3.61901,4.459575,3.989485,2.2226575,2.2226575,4.711531666666667,5.83525,2.75375,0.4946444444444445,1.930965,4.3112925,4.462935,4.382135,1.68672,2.9361266666666666,3.776585,1.1370386184210526,1.1370386184210526,1.1370386184210526,0.7402182017543859,1.3414165350877192,0.6011983333333334,1.1370386184210526,0.7402182017543859,0.2386773684210526,0.839875701754386,0.2386773684210526,0.5015408333333333,0.5015408333333333,0.5015408333333333,0.5015408333333333,1.0929255,1.18017875,2.2903933333333333,2.3162583333333333,1.09597,6.161918333333334,2.6171133333333336,6.495023333333333,2.780063333333333,3.89776,2.92811,3.165945,2.7982,4.65539,2.6748166666666666,4.167545,3.949425,5.19375,2.36079,4.14985,4.94141,4.03059,2.95928,4.726345,3.218465,4.44302,5.3897,4.89492,5.81515,5.32315,1.3019625,3.860855,4.25569,2.970875,15.4758,4.45667,5.364,2.7600700000000002,7.11619,3.981675,3.828215,4.666825,2.98724,0.9824,2.512865,4.159375,4.24946,4.53731,3.13751,3.925095,2.84892,4.3106,4.659725,4.23984,6.675858333333333,8.153195,1.4867142857142857,3.455885,4.017695,3.81495,3.602675,3.609975,6.85017,2.553665,2.931775,2.490875,3.904835,4.04433,4.62732,2.5599,1.6892,0.898568,4.502815,4.7994,4.03584,3.83196,3.76819,5.1357,4.19397,6.1364,5.491,3.83534,6.05615,3.59924,3.024065,3.238215,3.38069,1.73276,5.0584,6.3352,6.19765,6.301058333333334,6.301058333333334,2.51356,1.73276,2.231985,3.115275,0.76317,1.6194825000000002,0.8563125,1.4951,2.92288,0.391006,3.0751,4.04566,1.4951,3.4584585,10.9642825,6.562725,2.5041625,1.10682,1.7514433333333335,4.34691,4.29733,6.124005809523809,1.9413375,2.152745,4.051695,4.233435,4.90127,2.02662,5.2823,3.5873000000000004,3.200535,5.23785,7.109048,3.736535,2.34381,2.7267166666666665,1.8900133333333333,3.483615,5.27484,1.787368,5.3387,4.432255,6.146654,0.5665646666666666,5.49005,4.04074,4.968715,2.82515,2.728285,7.27405,8.973749999999999,6.87635,2.15535,2.15535,2.15535,5.68925,5.1677,5.45305,3.33041,2.720635,2.5082068421052632,4.826185,4.01933,2.46265,1.86754,2.46265,6.98411,4.510113333333333,4.507713571428571,6.4115,4.507713571428571,4.507713571428571,3.3689785714285714,6.6497,5.413061,2.830166,2.830166,2.496355,6.8668,2.862555,3.5765,5.554790000000001,5.554790000000001,5.554790000000001,7.6806350000000005,3.53516,3.29423,3.5379424999999998,3.4395925,0.93409,7.034906666666666,2.5247933333333332,5.9517,3.380355,13.216869333333333,4.583665,5.478813333333333,6.49772,2.6169183333333335,3.454555,1.08876,5.478813333333333,3.444205,1.752745,1.752745,2.85098,4.86173,1.63968,4.419626666666667,0.7883560000000001,1.2886666666666666,0.7883560000000001,1.73077,2.428036,4.959011,3.811305,1.2886666666666666,2.927295,4.62711,0.982425,3.46726,4.25649,2.019705,3.7826016666666664,2.194275,3.182475,3.025425,0.9526519999999999,3.628495,2.201305,2.141485,1.58772,3.01031,3.835355,2.75898,4.044675,1.1805522222222222,1.1805522222222222,1.1805522222222222,3.806125,2.832943333333333,2.832943333333333,2.46929,3.88724,1.9807966666666665,1.2753175,1.2753175,3.02019,4.2289625,0.8163175,1.58003,2.786485,1.2726216666666668,2.8526516666666666,0.9526519999999999,0.9526519999999999,2.0374791666666665,0.9526519999999999,3.3615625,0.643695,3.3615625,6.0453270833333335,3.29913,2.271236666666667,1.80532375,0.5635033333333334,2.3688270833333336,3.50594,2.3688270833333336,0.9391,3.216505,3.879715,3.737335,3.640095,2.607165,3.58015,1.95301,0.9564252777777777,0.5308375,0.9564252777777777,0.4255877777777778,0.9564252777777777,0.9564252777777777,4.771875,4.88257,4.456635,3.396645,4.5477,4.67478,5.2682,3.39124,3.74847,1.2642242857142858,3.3659666666666666,4.369181666666667,3.69612,1.3137333333333332,2.6294366666666664,4.021925,3.80582,4.19885,3.941565,4.10642,3.258945,3.05237,4.507275,2.7815433333333335,5.73395,3.71182,4.21648,5.7203921428571425,1.1840626428571428,2.09621,4.065515,7.45331,4.31575,4.603325,3.119616666666667,5.44575,8.09005,3.8442666666666665,3.321005,3.5071,5.70145,4.19185,5.72575,5.6986,5.9872,3.136235,4.99163,4.73338,3.3953,4.196465,3.1078033333333335,2.3476475,2.0833833333333334,5.05875,6.7126,6.0149,5.97225,4.3149,4.724885,5.7635,0.48876153846153847,7.65745,4.75084,4.45923,4.01369,4.729965,4.07209,3.3470666666666666,2.624725,1.3706683333333334,0.5805046153846154,1.798706,3.0403333333333333,3.73814,3.896325,4.73568,3.81224,11.34169,3.63653,3.960615,3.0056,0.7600899999999999,5.7069833333333335,2.6617866666666665,1.6012433333333334,4.26303,5.229661666666667,2.567875,7.1261,4.446165,2.14183,2.14183,2.14183,4.12201,8.83116,3.2635,2.1748475,2.1748475,3.28571,9.45258,1.04561625,5.21425,4.326085,4.10843,2.6430266666666666,2.06664,4.219865,3.772995,6.49455,5.803535,3.755195,2.86838,3.77101,4.1717875,3.6067004999999996,1.4210125,3.30381,5.68605,3.2648625,4.758765,0.95390125,3.714233333333333,2.673636666666667,2.50786,1.761425,1.71964,2.1153766666666667,5.9499,2.04133,4.11147,5.7106,2.0357600000000002,4.571495,3.959185,5.09755,3.3508333333333336,2.216485,2.774975,4.338825,3.9995600000000002,3.9995600000000002,1.1357225,2.42766,3.0668,4.434005666666667,2.231697090909091,4.833876,1.705566,2.652956666666667,2.0924733333333334,1.8089625,1.8089625,4.8064,7.43974,1.9221966666666666,3.0985533333333333,2.1421,6.13895,3.161755,0.711046,2.947505,0.711046,2.78947,3.310445,4.823115,6.3209,3.58078,4.838121666666667,5.4359,2.373035,2.0606633333333333,2.53928,2.2420466666666665,6.2831,4.586185,3.889975,3.917615,2.67953,4.415615,1.03314625,1.104918,2.1939466666666667,1.5533083333333335,2.5374866666666667,2.6918433333333334,2.143736666666667,3.5593333333333335,2.752775,4.346225,2.50736,2.8080366666666667,2.6953133333333334,2.2246833333333336,2.86843,2.69087,1.9577600000000002,2.44077,3.807195,3.76449,3.769155,4.17876,2.97409,2.206635,2.072515,1.3630166666666668,0.3098455,0.16084760869565218,2.1037133333333333,2.2607766666666667,0.16084760869565218,4.382759275362319,2.30822,0.16084760869565218,6.011272430555556,2.444825,6.40445,3.31285,3.830633333333333,2.4835266666666667,2.900183333333333,2.26997,4.23247,3.3246066666666665,3.29749,0.4539252631578947,3.865893333333333,2.5231752631578948,2.82064,1.728555,2.54645,4.212745,2.82168,7.499700000000001,4.99271,3.83487,3.74784,5.85254,5.83513,1.5808233333333332,4.057949166666667,2.025825,1.742635,6.78561,8.10154,1.14638,2.22524,3.55277,2.339975,2.841095,2.9799,2.53052,4.058525,2.229975,3.06897,3.38424,3.181415,7.43381,1.3457666666666668,1.949715,2.9714,3.30702,1.5437066666666668,3.400085,1.376055,3.65973,3.37695,6.78048,3.3842,8.4662575,3.603695,1.7723,1.6286966666666667,3.134905,6.92576,1.6659275,1.4516633333333333,5.30473,3.291435,3.89667,2.605705,2.1173800000000003,3.17552,10.411605,5.11958,6.22092,3.40933,2.24999,2.109005,2.52334,2.689535,3.07783,1.8326833333333334,1.50635,2.3879466666666667,3.47977,1.8684025,3.17508,2.62203,4.04377,3.70406,3.16887,1.2225966666666668,2.53032,1.1554566666666666,1.3922,1.5249,3.4681,3.383525,3.326485,2.810715,3.62985,3.803235,2.816525,1.4628619999999999,3.330055,3.434055,3.040695,1.67433,3.156265,3.32981,1.41867,3.40046,1.6001333333333332,3.83981,3.87945,5.0793,2.668745,3.89868,1.795445,3.883185,5.153,1.70617,1.07947,4.1270999999999995,2.53593,4.63211,4.10324,2.7443,4.701835,4.57239,2.629793333333333,5.48235,5.27555,6.65775,4.597965,6.859109999999999,3.9873,1.60014,2.818046666666667,4.63877,4.856105,2.92827,7.1648700000000005,1.2854342857142858,3.5370000000000004,2.125315,1.702946,2.3496200000000003,2.8209366666666664,0.37954499999999997,2.79081,3.3730666666666664,3.54669,2.41339,3.44,2.23028,2.5249533333333334,2.35328,9.034265,4.701205,1.7163840000000001,5.0027,2.4370472391304348,0.7547412307692307,2.933286666666667,7.519880000000001,1.7339099999999998,4.73660875,6.201208333333334,1.867185,1.60774,1.5494825,4.321825,3.13749,4.50392,4.2234725,2.545383333333333,3.784245,1.059508,2.832451333333333,4.225345,4.03718,4.991965,3.25522,4.48553,4.77067,5.09115,5.29215,5.92265,4.38281,4.688995,4.85517,1.693618,1.8242125,3.11863,3.33258,1.2115222222222224,4.48854,2.06268,3.2778500000000004,4.45951,3.1727633333333336,2.87547,1.6653833333333334,3.2880333333333334,2.795983611111111,2.742516666666667,2.76,1.9460666666666666,2.180905,2.321555,4.61199,4.689075,4.17946,4.93803,3.3674,2.2553,3.06955,5.4638,3.4713999999999996,4.412505,4.46182,2.21491,4.30114,1.6602,4.30171,4.982570833333334,6.061847976190476,4.306395,4.574635,5.9377,3.371233333333333,4.049768333333333,4.576345,3.21974,3.8035625,3.547265,1.4367125,3.25943,1.637525,2.27887,4.19411,5.546835,3.8035625,4.24882,3.44179,1.4491366666666667,3.43805,1.980315,2.70891,2.14297,2.68953,1.9009978787878787,1.9009978787878787,1.9009978787878787,0.7318345454545454,0.7964422222222223,2.220178888888889,1.1279625,3.526795,1.264535,4.092625,5.26875,4.70985,3.155885,4.004925,3.17717,5.071,1.8146275,2.86746,2.52011,3.103315,5.755281,4.27634,5.6015,4.00559,0.99528,2.213955,1.3362166666666668,3.624105,4.03189,4.13748,5.16265,4.981315,4.9213,5.07155,3.929905,1.644715,1.391095,5.453626666666667,0.99974,1.41171,2.66832,8.54654,3.510375,3.53831,3.115495,5.64457,1.733395,0.975225,1.43115,3.069685,3.66426,3.902515,3.74958,1.903125,5.847530000000001,3.1115566666666665,1.04400625,5.29225,2.9084866666666667,2.86281,2.3771333333333335,3.6525,5.890185833333334,2.8926366666666667,3.17066,3.6904,2.7682966666666666,3.1629066666666668,2.85951,2.922315,1.9046625,5.02055,5.01135,4.637395,1.130988888888889,0.74621,3.635566666666667,2.609453333333333,1.00170875,2.5359304166666665,5.00355,4.51446,6.961295,4.753955,3.6853,1.6990580000000002,3.418005,3.537795,2.8257966666666667,3.1121917142857143,4.202295,2.9179833333333334,5.039868,0.9237077777777779,5.6354,1.6891559999999999,5.009,4.522465,1.665135,1.0014875,3.037125,0.417215,3.171285,6.95605,6.6326,2.846094,1.483792,2.931706666666667,0.7284844444444444,2.48884,0.7284844444444444,3.88583,4.412065,1.4270125,2.029345,5.682485,1.7391500000000002,3.609475,4.290625,3.916405,1.247156,1.5999299999999999,3.879075,5.58715,5.0035,3.3566000000000003,2.33757,3.068625,1.5975575,2.18475,1.9378325,2.3327825,4.269015,1.3460222222222222,1.3460222222222222,3.388445,4.711040000000001,7.970986666666667,4.83817,6.959605,2.311975,3.40057,4.0934,1.6264633333333334,3.649970833333333,4.28829,3.759295,6.2829,2.851165,2.3758,2.9204833333333333,4.24866,1.12451375,3.990975,4.62073,1.1130183333333334,7.832420000000001,2.908375,3.098305,3.3234933333333334,4.53302,4.423285,3.99209125,2.5129633333333334,2.75276,1.93557,3.642533333333333,2.56685,2.151645,8.061919333333334,3.4905666666666666,3.3168233333333332,4.17524,23.243787214285714,0.6834666666666667,2.581555,4.2738,4.7841,8.32541,4.444875,4.10591,4.479115,7.352656666666666,3.45692,2.371443333333333,5.5954733333333335,4.444505,1.2577099999999999,1.2577099999999999,1.2577099999999999,2.9819924999999996,1.80327,3.253435,1.5274875,3.046365,1.4697033333333334,2.593445,2.69674,2.980795,1.5274875,3.2543,2.49619,4.288501666666667,4.881715,5.15355,0.8689916666666666,3.37607,2.69201,4.99067,4.52528,2.777065,2.17859,1.6621825,2.1271925,1.401114,3.999175,1.6764,4.724665,11.748856333333334,2.7674466666666664,2.513605,4.985783333333334,4.4911666666666665,4.4162333333333335,6.3291,2.06925,5.6967175,4.563625,1.0289599999999999,1.1684942857142857,6.454733,4.23548,2.147765,3.95862,1.9010525,4.79603,5.03785,4.78411,4.05832,1.3167414285714287,4.23359,5.02745,4.97349,6.016583,3.98795,6.10555,4.709395,4.132175,5.17735,3.412333333333333,4.77016,1.72619,3.27177,3.205065,4.24902,3.853565,6.3051,4.481265,2.4690133333333333,3.3589333333333333,8.786395,4.709345,3.15386,3.68679,3.66502,4.514665,4.264355,4.83802,7.18893,3.926575,2.7351500000000004,4.352335833333333,2.32528,4.60469,2.6788566666666664,6.63451,1.5659516666666666,4.49678,4.31629,11.722529999999999,0.4856614285714286,4.72109,4.42138,0.66042,3.65114,3.69042,4.504815,0.910929,4.702565,4.709843333333334,2.57126,9.87392,3.2885933333333335,2.0784366666666667,3.218695,3.60288,5.831,0.5705808333333333,3.816295,2.102965,5.1866,0.7402753846153847,4.11359,5.5677,5.41485,3.34114,6.24633,4.455185,3.708385,2.541043333333333,2.7353400000000003,4.22406,4.67618,4.99856,5.29155,5.03625,3.3836333333333335,7.296608333333333,2.878675,3.4613175000000003,2.51145,3.599905,2.93782,1.44689,3.123886666666667,3.02918,2.995293333333333,3.794233333333333,3.3556666666666666,3.3965333333333336,2.6775566666666664,5.5079,3.306976666666667,3.63104,5.1984,3.233836666666667,1.1046155555555555,3.1488766666666668,2.9244800000000004,3.84341,3.1866233333333334,3.18112,4.558915000000001,2.03005,1.7883425,2.91086,3.62589,4.69104,1.0927325,5.2065,3.11809,4.248666666666667,3.1812466666666666,4.777865,3.85083,3.190545,4.57566,1.732105,3.782845,0.66755625,4.543665,4.923205,16.36399696969697,3.217223333333333,1.255225,4.561105,0.6138399999999999,2.5975,4.45416,1.86746,1.4530142857142856,3.82729,4.739525,3.23955,0.7017816666666666,2.54571,7.68935,3.88484,5.8725,5.3873,4.97142,3.352866666666667,3.6283333333333334,3.347566666666667,6.774368333333333,4.038275,5.327,2.187175,0.4646544444444445,2.237085,3.036825,2.226485,2.71892,4.78967,3.0211366666666666,4.811495,0.7266308333333332,4.744725,3.577065,2.797265,1.1682633333333332,2.92342,1.9552100000000001,4.91961,3.914045,1.97847,1.6838142857142857,4.20875,5.1208,4.92087,6.2057649999999995,2.0983300000000003,5.1137,4.88129,4.14877,2.36432,4.498545,6.172461666666667,4.96599,2.376965,4.865325,3.259605,3.523215,4.046175,3.967285,1.3538766666666666,4.933605,2.5880566666666667,2.84863,5.594423333333333,5.594423333333333,4.927105,1.851964,4.77043,1.0202125,1.86651,4.98281,2.605303333333333,1.4264433333333333,3.1414000000000004,0.9443619999999999,4.3366999999999996,5.8226,3.369175,5.178,4.195355,3.81008,5.173864999999999,3.35619,3.13773,3.0939,2.4054266666666666,2.74615,2.951003333333333,4.37538,1.619601868131868,3.1767966666666667,4.56198,5.0027,2.3806133333333332,4.25454,4.974635,5.066691666666667,3.5749666666666666,5.42785,5.3668,5.34745,4.886465,3.69688,3.466885,3.569575,4.573795,5.40455,4.755525,5.08095,4.39966,4.62398,0.7081916666666667,4.961425,4.69576,4.10404,7.0739725,4.24449,3.990815,4.386505,4.715405,3.74701,4.036305,2.1500874999999997,4.451852499999999,2.2616425,1.3250357142857143,3.891605,2.0757600000000003,2.4420433333333333,3.5497259999999997,3.03364,3.232115,1.19728,1.935225,4.351805,4.079775,1.846425,1.846425,4.208505,1.7060300000000002,2.9845699999999997,4.36172,3.568265,3.768485,1.55898,2.067685,3.8066891666666667,1.97249,4.333095,4.453655,4.36494,4.317025,8.22724,2.664275,3.75251,4.693695,4.297545,2.96822,4.485035,4.36053,4.546375,2.25545,2.81397,4.461725,4.14923,3.703395,3.78754,1.6344825,3.72804,4.399135,4.511235,4.0614,4.1146525,4.1146525,3.157275,4.31084,4.26888,4.053515,1.592822,8.0357,3.92712,4.98596,4.31239,4.22004,5.1048,5.05975,3.039455,4.48966,3.3854,5.02155,2.12612,4.854545,5.813299444444445,5.3385,0.775521,4.709013333333333,1.16083,4.93639,4.719695,4.916325,4.105485,5.43295,3.8491,3.8491,0.895529,2.12598,4.682615,3.87991,3.994825,4.72457,5.11385,3.42462,4.200105,1.3039716666666668,3.206705,1.545595,1.228705,4.476150666666666,0.8501860000000001,2.8097133333333333,3.0273533333333336,1.24494,2.0371175,2.6151966666666664,1.4140933333333334,6.13415,1.8957325,2.2642533333333335,4.714075,2.177875,2.7530866666666665,4.56404,4.66529,2.738236666666667,3.20753,4.117333333333334,1.7363279999999999,2.128239166666667,4.35571,0.6171457142857143,2.2890366666666666,2.660928333333333,3.0770466666666665,2.956906666666667,1.426502857142857,0.8564416666666667,2.402903333333333,4.050965,1.2276514285714286,2.211675,1.2325025,5.668695,2.393725,4.98562,4.432015,4.37875,4.895315,5.3648,4.44629,4.439025,1.4402133333333333,3.895,1.6611719999999999,2.7311333333333336,1.1736814285714285,4.642435,2.050225,5.925386,3.842235,4.14715,1.725756,6.812685,4.63832,1.4693066666666665,3.97618,2.831325,4.01473,3.16657,1.9868225,1.9868225,3.1768666666666667,1.6955833333333334,1.6955833333333334,2.36432,2.64369,2.01075,1.2750883333333334,3.6008666666666667,1.06767125,3.1334233333333334,2.4477225,1.824595,1.4910716666666666,2.1888575,2.10263,0.2726182352941176,2.448525,1.1046116666666668,2.284196666666667,2.0924733333333334,2.4012475,1.0876233333333334,1.100726,3.6920333333333333,3.0748166666666665,1.9868225,1.7808475,1.8125733333333331,2.477866666666667,2.5267133333333334,1.819626,2.758763333333333,1.13707,3.3227499999999996,2.6643966666666667,2.46065,1.5536720000000002,0.97223,2.502125,0.97223,2.502125,0.72294625,0.72294625,0.5200905555555555,2.4878,2.238793333333333,0.72294625,2.1772825,2.4033466666666667,2.276065,1.748935,0.8146433333333333,0.72294625,0.72294625,1.625804,1.625804,2.1114175,1.7808475,0.72294625,2.3820799999999998,0.45755538461538464,2.81798,2.0225233333333335,2.631256666666667,2.54828,2.54828,0.3828175,0.3828175,2.36432,1.93625,2.3299399999999997,1.97422,0.3828175,3.675133333333333,2.4741025,1.662812,0.636075,1.662812,0.636075,8.39842,2.430146666666667,3.7946333333333335,3.4255,3.16502,2.9874433333333332,3.0146866666666665,3.4119333333333333,2.390165,1.71722,2.688523333333333,3.8442666666666665,2.3606333333333334,1.625804,2.416369841269841,2.416369841269841,2.71819,2.227765,4.25973,2.28484,3.3493666666666666,2.565436666666667,1.6947459999999999,2.577575,2.3933875,0.7847500000000001,1.60973,3.528385,1.8380839999999998,3.3016233333333336,2.48838,2.634225,3.7914999999999996,1.6813333333333331,3.6391666666666667,3.2510600000000003,4.0347,1.258748,0.2966668965517241,1.308377142857143,1.308377142857143,1.076438888888889,3.23372,3.9613,2.62135,2.084843333333333,2.084843333333333,2.25397,1.6001333333333332,1.04476,1.6216533333333334,1.6216533333333334,0.72294625,2.36432,2.80031,3.4469666666666665,2.4477225,2.08588,2.08588,2.08588,1.0710477777777778,1.5384285714285715,1.5384285714285715,2.4903625,3.2529566666666665,2.698969873737374,4.237115,2.7207266666666663,2.4679033333333336,3.696285,3.757285,7.336734999999999,4.07992,4.58029,3.6278666666666664,13.4009,4.58767,3.549735,0.86127,4.227555,3.72561,2.271705,3.615705,5.55995,8.083953333333334,6.20305,0.4980235294117647,4.015955,2.726415,4.174815,2.4544625,4.78125,4.359665,4.52906,8.519829999999999,3.214475,3.911475,4.09045,3.2619859090909094,8.15909476923077,3.32558,2.57983,3.660125,4.119295,4.921765,4.009865,6.212009,5.09305,1.309822,4.126935,0.871865,5.1048,6.091,4.86057,4.710115,5.7911,4.931545,5.22215,3.978945,9.057,3.864085,5.054703,3.838566666666667,4.9227,2.912045,0.893235,0.893235,3.37684,3.92882,2.217425,2.216145,4.342925,5.31085,5.9528,1.97026,2.6231,3.415695,2.6791533333333333,1.10194375,3.9092,4.63399,8.61439,1.6801359999999999,3.601945,4.1049,3.264995,2.8498466666666666,8.03715,4.204325,3.576033333333333,2.91701,3.953155,3.3960000000000004,3.151813333333333,3.07894,4.07903,3.911895,4.33108,4.434645,0.392146,1.4170999999999998,2.3675366666666666,1.6872925,4.741275,3.86616,2.6594333333333333,2.309025,4.618585,4.0713975,2.320805,2.34308,0.9123049999999999,2.6436,2.5532233333333334,2.5532233333333334,5.50945,1.9043475,3.0612833333333334,2.2132866666666664,2.09461,1.69398,2.65404,3.883325,4.54412,4.13853,4.964275,5.1819,2.87203,2.7396133333333332,1.940172,4.935725,5.3835516666666665,2.6548333333333334,2.8938400000000004,2.1100125,2.14608,4.004653333333334,2.7778899999999997,4.874555,3.607325,3.29472,4.61567,2.890193333333333,3.527695,4.636255,2.372123333333333,2.539676666666667,0.4022485714285714,3.469633333333333,2.75588,4.236815,5.8879,4.499575,6.136103333333333,2.116695,1.6546483333333333,3.106345,5.3852,6.26505,5.0835,3.2829333333333337,2.1774299999999998,3.2628,2.4859233333333335,4.69561,2.2629366666666666,2.020095,5.2191,4.985375,4.650115,1.68352,1.921185,1.0382339999999999,1.0382339999999999,1.0551819999999998,0.8555014285714285,0.78731,1.7087094285714286,4.441325,10.720770833333335,3.97404,4.552115,4.20922,5.8160625,2.58998,1.6168033333333334,3.6063791666666667,2.954635,3.65085,2.43448,2.7840900000000004,2.96107,3.3022533333333333,2.3960966666666668,3.4012,3.3866333333333336,2.9574700000000003,3.5673333333333335,3.3589333333333333,2.87987,2.816883333333333,3.3678000000000003,2.52867,2.9619166666666668,3.2040166666666665,2.963573333333333,3.5189333333333335,2.2196000000000002,5.312092666666667,3.2699200000000004,4.549224666666667,3.26782,3.1388533333333335,3.7671666666666668,2.86664,2.67463,3.13191,3.2167433333333335,3.4612,3.22238,2.0632275,2.6556266666666666,2.711676666666667,2.869175,2.869175,3.1571533333333335,3.267996666666667,2.3717466666666667,2.6327166666666666,3.2054033333333334,4.333666666666667,2.6741833333333336,2.679725,2.622526666666667,2.8524066666666665,4.905194166666667,5.1573,1.7156500000000001,3.1669766666666668,3.7401,3.447542,3.2816166666666664,3.766766666666667,3.5189,2.77908,3.3937340000000003,2.00752,2.7827585,3.6784,3.3068333333333335,2.607953333333333,2.767936666666667,3.8460666666666667,2.9183033333333337,3.247536666666667,2.376305,1.2688066666666666,3.302963333333333,2.7314233333333333,2.29147,2.49597,3.084016666666667,3.1332766666666667,2.00974,5.702005333333333,2.36414,0.9212899999999999,4.643395,1.9648724999999998,1.7063,4.683465,3.922455,3.318995,2.28702,1.7301025,3.34152,2.94858,4.094865,0.49859549999999997,2.0513,0.49859549999999997,1.821,1.7301025,2.562975,3.80984,2.564575,3.649495,4.213405,0.52393,2.8916299999999997,0.9368775,0.4669411764705882,4.286925,4.041865,4.813485,2.551575,5.92325,4.20442,3.86333,3.83745,3.8128333333333333,1.695738,6.4374,4.172,4.305045,4.82174,3.2020966666666664,2.13009,2.08265,1.3678566666666667,1.827325,0.929555,0.929555,4.422385,2.5377566666666667,6.173831666666667,2.3465225,2.324325,2.03078,2.22906775,2.3428275,5.3747,4.4612425,2.118415,1.93137,2.22906775,3.23095,3.8620177499999997,2.3108537499999997,5.25119,2.3465225,3.190315,3.34783,3.2338966666666664,5.52895,4.62506,2.086375,1.875535,2.205065,3.447165,4.96139,5.0086,2.0333625,3.94176,1.56749,1.755275,5.5915,11.047571666666666,2.1694466666666665,2.70477,2.2718599999999998,4.642145,4.39996,1.8857,4.981525,4.564675,2.911425,39.775310488095236,3.0006233333333334,3.15957,0.47671444444444444,5.088733333333334,2.3132466666666667,0.9635644444444443,4.46229,3.765215,2.0016825,1.97895,2.2503433333333334,4.199725,1.4575142857142858,3.1192056666666668,3.763995,4.62397,0.914578,4.68928,4.775615,4.98655,2.8050433333333333,1.46239,3.7521675,4.4699,3.682295,3.081435,3.571395,3.93624,12.082650909090908,3.014723333333333,3.037125,4.53181,2.64113,4.18411,3.518825,3.031195,3.229695,5.4263,5.26085,5.13705,5.02135,2.374965,3.37911,4.279795,3.5645,4.61001,4.17718,0.11082826086956521,3.646995,5.0591,2.670595,1.5560083333333334,1.0911166666666667,1.0911166666666667,2.4367175,2.68592,3.034935,1.441386,2.9711966666666663,4.436335,2.58384,4.324205,0.5748907142857143,4.38182,3.921085,4.42481,4.220395,4.697435,1.4768125,1.4806,3.9568,2.942043333333333,2.959426666666667,4.318459818181818,5.1553,5.966235,5.52185,4.80615,3.278105,2.195715,1.5837566666666667,5.3931,0.307618,3.345935,3.62479,3.823465,14.656006666666666,1.68359375,3.18908,0.52667375,4.33321,9.072355,3.218755,2.0768233333333335,5.7463,3.3600999999999996,1.034138888888889,5.0537,2.70043,3.077255,5.0069,3.311493722222222,1.183845,7.811276666666666,0.7245775,4.924015,3.099829222222222,1.367635,2.0485617222222223,3.109905,3.109905,3.734695,4.2098665,1.4288375,2.18676,2.66042,3.45642,3.199415,2.341365,3.204755,3.32969,6.4532419999999995,6.44355,3.81709,3.057615,5.3217,4.987795,3.95619,3.384525,3.44082,4.38025,5.07395,2.4703666666666666,2.5806,1.5175116666666666,2.24987,2.185145,1.5372325,3.4255,3.5583333333333336,3.353066666666667,3.06666,2.8558299999999996,1.3994166666666665,2.22549,0.4657509090909091,3.0443233333333333,1.4479857142857142,1.877335,3.1140899999999996,2.52961,2.48625,0.96553625,2.3970625,2.331835,2.98989,3.4115,5.55395,3.501645,3.01768,2.1212933333333335,3.314615,3.80453,2.423135,2.93207,1.854065,3.737665,2.73485,3.789945,1.32418,0.605912,2.3478,3.2193,3.042875,3.9124,4.87732,8.77326,3.2777933333333333,2.3604333333333334,1.96162,1.8992239999999998,1.8992239999999998,2.63718,2.5405266666666666,5.36055,4.72859,3.652715,4.584195,4.574915,4.493015,3.443415833333333,4.1068,8.03309,2.55595,0.4816,2.9229633333333336,1.30525,1.0198528571428571,2.50141,0.8076510000000001,2.2073175,4.950665,5.4816,5.97249,0.95294,7.19694,2.02128,1.5627266666666666,2.920583333333333,4.511295,3.0713233333333334,2.511925,3.945815,3.147536666666667,4.090833333333333,3.028966666666667,2.8881566666666667,2.8675466666666662,6.891109999999999,2.42369,3.99776,3.741503333333333,3.5945116666666665,1.3838366666666666,1.1908975,4.20872,2.7944666666666667,3.18359,6.0538875,2.63487,2.17699,2.493425,3.284185,3.686533333333333,2.4858433333333334,4.444748333333333,2.9995333333333334,5.2014,2.4370068333333332,1.848325,4.82911,5.4692,4.31379,4.49816,1.5592833333333334,2.3750175,1.95984,3.18849,1.46323,0.8609733333333334,2.6556258333333336,1.9759175,2.06812,4.208085,0.7388150000000001,6.1137225,1.6409525,0.7391000000000001,3.7293000000000003,4.392365,0.8170071428571429,3.0526025,2.931830625,0.8564416666666667,4.895275,0.18970571428571428,0.18970571428571428,0.18970571428571428,0.18970571428571428,0.18970571428571428,0.18970571428571428,1.906972,3.999965,1.906972,1.906972,1.82733,0.18970571428571428,0.18970571428571428,3.4379333333333335,2.847213333333333,3.946025,3.29761,2.237395,3.43412,1.5771714285714287,1.7733160000000001,3.6067004999999996,1.6024360000000002,3.2021866666666665,2.641541777777778,5.975746666666667,4.578265,4.456395,6.0469,4.39351,5.0368,4.69933,4.402345,7.254776249999999,3.6439,3.5521666666666665,2.9344133333333335,5.054456666666667,2.6211066666666665,2.0133675,1.8633666666666666,4.764945,5.1839,5.02045,5.42405,5.58415,4.66292,4.969505,0.8167945454545454,0.7327428571428571,0.7327428571428571,4.85029,2.3414466666666667,3.74494,1.0122128571428572,5.17215,1.5336714285714286,2.3454333333333333,2.62224,4.551633333333333,4.551633333333333,6.8752,5.17455,1.497895,11.697548333333334,3.3218866666666664,1.2154666666666667,5.1615,4.94576,3.5299,3.59125,2.66894,4.3448,0.7426999999999999,3.3622333333333336,3.0862700000000003,3.6552333333333333,3.1691833333333332,1.4740433333333334,1.3984866666666667,4.9333141666666664,3.09891,3.0088000000000004,3.4749,5.165574166666667,3.350128333333333,0.764867,2.05974,3.393133333333333,2.4505999999999997,3.6123,3.4321,3.3038566666666664,3.7105,3.157016666666667,2.36931,0.9161533333333334,3.012893333333333,2.4948833333333336,3.762935,3.49941,4.198105,2.6416999999999997,3.30851,2.944475,1.587122,1.8788666666666665,2.5514035714285717,3.6801333333333335,1.85012,3.2032666666666665,1.7289666666666665,3.9098333333333333,5.040261666666667,4.890208666666666,2.3796475,2.6415,2.725775,2.308695,1.653,2.517,3.0693714285714284,2.4198575,3.5519,2.81665,3.63626,3.2885,1.2377333333333334,1.2727175,1.73435,2.2267075,3.13583,3.61,4.915485,7.468584999999999,4.074075,4.973445,4.62605,15.876300666666666,0.490695,10.87412,1.0469033333333333,3.18806,2.7325700000000004,2.0155533333333335,3.00136,1.466768,1.4628619999999999,2.752473333333333,1.282814,2.6896953333333333,2.3193566666666667,3.239243333333333,2.6159233333333334,2.7602100000000003,1.4575533333333333,0.8045650000000001,3.1805333333333334,2.3921366666666666,2.91635,1.0710477777777778,3.5901666666666667,0.7561516666666667,0.3590015384615385,2.2134766666666668,4.35072,4.914645,4.79094,0.8933854545454545,4.003315,4.44763,1.0869025,2.5209,5.747411666666666,3.026605,3.73499,3.747745,3.828005,1.9016375,4.02042,2.7410366666666666,3.40377,3.39647,2.66584,2.594535,3.76479,2.96847,3.62581,3.2255,3.19316,4.967175,1.3015433333333333,4.53433,2.25695,4.271175,5.20497,2.0072975,3.0661066666666668,3.0771466666666663,5.736301666666666,2.522553333333333,3.292925,5.9696,3.7946333333333335,4.533505,1.8128566666666668,2.6104,4.985275,3.4629333333333334,4.64605,3.4676333333333336,3.3866666666666667,3.1721299999999997,3.9527666666666668,3.2402833333333336,2.6993566666666666,2.9485333333333332,0.44298777777777776,2.43239,2.15821,4.78988,4.65408,3.12318,2.8644366666666667,3.3769666666666667,8.730179999999999,3.501695,3.77573,3.0101,3.790965,3.08732,4.119786666666667,2.7532533333333333,2.31359,2.7732266666666665,6.12845,4.718575,1.9939066666666667,3.05433,2.890415,2.632093333333333,4.834778666666667,1.691076,6.259869999999999,4.2106,4.91065,4.55523,5.7736,3.54061,6.532731666666667,4.7441,4.033775,0.6559778571428572,2.350335,1.446285,2.9466,3.7341299999999995,3.98878,4.053585,5.3501,2.630063333333333,4.75351,3.3280100000000004,3.669966666666667,3.1512499999999997,4.852275,4.71265,4.96526,2.8775666666666666,5.921854999999999,4.368295,1.46031,5.7765,3.329585,3.72473,2.09285,2.2019333333333333,4.89653,1.2451128571428571,2.6312166666666665,2.011325,3.86342,4.579095,2.58454,3.3762333333333334,3.025688666666667,2.8977066666666667,4.213,1.305984,2.2445,2.2624833333333334,2.8194533333333336,2.4088266666666667,2.6698299999999997,2.6244833333333335,3.98893,2.8485833333333335,2.7109199999999998,4.013005,2.476165,4.20574,3.63507,1.329545303030303,1.329545303030303,4.639415,2.78378,1.7642375,1.3583525,2.3057375,2.2452725,1.0643340000000001,1.4066133333333333,0.6843250000000001,1.5937066666666666,1.4767599999999999,2.71973,2.4531133333333335,1.7633466666666668,1.8585366666666667,2.2941766666666665,1.9661799999999998,1.6556233333333334,1.7758099999999999,2.2620075,3.869,2.696555,3.12689,2.79855,5.74685,2.9483,4.036605,3.9161574999999997,2.15607,3.960945,3.10533,1.935685,3.405305,2.31992,2.688705,3.806815,2.0846475,4.687985,3.127445,3.979775,3.5734999999999997,0.8859344444444445,4.2571,3.68033,3.281545,3.901115,3.05532,4.909525,4.844465,5.24020375,8.8599625,3.88047,4.503215,3.116843333333333,3.844635,4.09545,2.525355,2.99223,4.54253,2.32694,5.94735,1.7466439999999999,2.56785,8.825281666666665,3.03402,4.153178,1.3205671428571428,4.6064,4.661445,3.453,4.737775,5.10595,6.703530000000001,17.229690119047618,0.6133941176470588,1.0876233333333334,3.26078,3.88665,3.371295,2.0742225,3.42361,4.05461,4.81721,3.046,5.00365,1.7010500000000002,1.7010500000000002,5.28315,0.7677154545454545,1.83696,3.03835,3.88147,0.37602076923076927,1.8307866666666666,4.21977925,1.1888216666666667,2.9349666666666665,2.6187,3.11225,7.44067,2.4242833333333333,3.2350266666666667,1.9460766666666667,2.174,4.13704,3.21414,3.063685,6.803544333333333,1.773375,2.979775,4.57729,6.78984,1.8276166666666667,2.33955,2.5471366666666664,1.30288,2.54807,1.79011,3.943235,3.51527,1.4627175,1.960041,1.960041,2.9179999999999997,5.79015,4.08173,3.57334,4.480675,5.4,2.92937,3.490795,4.096435,3.519795,4.36257,3.293585,4.33412,0.9266400000000001,0.346848125,5.3308,3.874975,2.44023,8.33344,1.5454066666666666,4.721233333333333,4.067025,0.3753125,1.9650100000000001,1.29203,1.9228533333333333,1.9429333333333334,5.425059,2.90027,3.10113,4.8617375,4.902025,4.782175,0.5984284615384615,1.97693,0.5921160000000001,5.656271666666667,1.5225659999999999,4.95397,2.21017,3.20155125,3.10465,4.282925,4.744725,5.14385,0.8636145454545455,3.226625,4.25573,2.0386625,1.8840475,3.55166,3.35736,3.596515,3.70232875,5.329052380952381,4.45713,5.61885,2.7185666666666664,0.8950988888888889,3.5322333333333336,3.837395,0.6477784615384615,4.05893,4.26964,3.95385,3.318995,2.6227266666666664,5.11655,3.36169,3.6243,2.14438,3.86041,1.858496,4.896865,3.76925,0.7566769230769231,4.5098,4.008845,3.11343,4.54278,4.24795,2.750155,3.746695,0.6509280000000001,3.13125,3.941247777777778,4.57147,3.501,2.517125,3.5404666666666667,2.517125,4.045885,2.90367,3.345966666666667,1.6610816666666668,3.297523333333333,2.00784,4.47244,2.831303333333333,5.419656666666667,3.4374000000000002,3.0738,3.1758900000000003,2.3451667857142855,2.3451667857142855,2.3451667857142855,2.724266666666667,1.1966416666666666,4.558945,2.3208100000000003,1.6209466666666668,3.8384666666666667,2.71062,3.1094633333333337,4.092455,4.950245,3.99641,2.065895,1.405158,3.942045,1.8536359999999998,2.44235,2.93022,3.39302,2.1098675,3.927095,2.498185,1.761046,4.992815,4.056415,4.297985,3.600435,0.726261111111111,2.3535633333333332,4.743425,7.383255,4.40949,2.998225,2.70718,3.35501,3.565475,2.064315,2.3094,5.21265,2.3571475,4.417165,3.69079,4.479835,8.980483333333332,4.04396,4.240105,3.510855,4.99927,4.165745,3.5257875,3.5257875,3.81795,3.93339,4.3887,3.853265,4.280445,4.337875,3.90301,1.14533125,4.156315,4.40415,5.3712,7.536315,5.163,3.9125560000000004,2.0106800000000002,1.6428783333333332,2.52461375,4.627025,3.97291,4.66595,2.76111,4.562865,5.11685,4.845535,4.94921,2.98722,4.364755,4.430545,5.4057,5.0991,3.83759,7.23635,4.45416,2.2161500000000003,5.1115,3.910865,4.20647,4.18739,4.76268,0.7678718181818183,4.442065,4.66914,1.3199514285714287,1.5909739999999999,5.12425,5.16135,9.106028,5.9323,4.98144,6.2586,2.85275,2.8269300000000004,5.0591,1.8911975,1.8911975,2.49553,1.5704166666666666,2.9065166666666666,3.6559000000000004,1.8783325,4.284644545454546,1.38967,2.141085,6.60327,3.307495,3.43105,2.72545,3.872305,4.480055,3.058253333333333,1.1468444444444446,3.85783,2.9694233333333333,3.87175,4.31369,3.6637883333333336,6.1097,6.27465,5.59415,5.0565,4.953085,6.60525,4.74843,3.132035,3.830065,1.87673,1.87673,3.701815,4.376165,2.2881733333333334,2.65965,2.3636807575757577,3.0857833333333335,1.7133,1.7133,4.541245,3.458525,2.354365,3.499125,2.762845,1.901775,1.1556975,1.2272222222222222,2.728375,0.4972031578947368,0.9063155555555557,2.723465,4.066385,0.44371000000000005,4.03933,1.9360779999999997,5.46055,3.371255,7.254127499999999,4.39194,5.275036666666667,5.0158,4.850415,4.059205,2.19387,1.9967359999999998,4.11026,3.002905,3.63035,1.2073766666666665,4.50346,4.761825,2.549815,4.75697,3.46726,4.489175,4.09459,4.02736,3.862785,3.51088,3.29047,4.306605,1.0623757142857142,2.51972,2.307685,2.36628,4.191935,7.57761,0.8746079999999999,1.6100766666666668,1.6100766666666668,1.969418,3.898375,2.67104,2.95108,6.0174925,2.778833333333333,1.1989175,1.1989175,1.1989175,2.70251,3.4584585,4.47367,3.09282,3.98474,3.227835,3.56983,2.81072,3.1157666666666666,3.51828,4.23128875,2.4728075,1.0643340000000001,3.08081,2.4728075,3.42142,1.53936,1.91303,2.2470575,5.50823,2.76634,6.11329,5.50823,3.34695,1.6312233333333332,1.6312233333333332,2.336115,5.73104,1.6312233333333332,2.23786,5.66999,2.205295,2.49313,4.73673,3.34471,4.0801,1.7647599999999999,3.369165,4.30014,1.9853066666666666,2.229475,3.74012,1.7647599999999999,2.620965,1.872535,5.69088,2.506485,1.02227,2.456045,3.15287,3.2410213333333333,1.874975,2.095098,3.70024,1.8006313333333335,1.645,3.073675,2.232735,3.16811,3.58587,1.8545466666666668,2.916575,2.463805,5.98012,2.18144,3.468215,3.37046,3.37046,8.746649999999999,1.00422,2.953265,2.570965,3.165065,2.272005,1.2442233333333335,1.2442233333333335,3.17944,2.176005,6.2746200000000005,2.19113,3.569305,3.24709,7.54449,2.3846,2.405745,5.51709,5.51709,2.384255,1.4513275,1.18673,1.18673,1.4513275,2.25347,1.29308,1.1795033333333333,1.5801566666666667,1.7755966666666667,3.69381,1.577545,3.06499,2.66836,2.913595,2.665715,2.780235,2.377645,3.3116416666666666,3.3116416666666666,6.05401,2.310775,2.85778,2.463905,3.320475,2.620025,2.91639,2.293415,5.09735,1.83389,1.3522103333333333,1.315922,2.0921203333333334,5.25036,3.7880736666666666,3.212061666666667,3.18747,1.85054,1.85054,1.85054,3.93805,2.543485,1.1795033333333333,2.932395,3.452845,1.306515,5.2453449999999995,3.1490650000000002,6.09249,3.57294,1.826645,3.218535,3.1333633333333335,2.156455,3.408885,4.25112,3.39499,1.57888,2.3635,3.048885,2.94743,4.73546,1.979625,3.0372,2.65328,5.17609,4.25575,2.10171,2.564575,4.89216,4.86053,5.25848,5.57068,0.94673,0.94673,2.38195,2.38195,0.67567,4.63505,3.09201,5.12443,3.98781,4.75687,2.18894,4.022736666666667,4.022736666666667,1.936945,3.19611,3.4293,1.170306,5.14596,3.21633,3.273015,2.67293,4.50888,2.33545,1.918755,3.18122,2.820325,3.02643,5.14527,2.69218,1.63104,3.68072,5.77497,5.10012,4.40407,2.53884,3.65332,2.25951,5.15416,2.68622,3.35291,2.37262,6.69409,4.28596,2.347,2.54295,2.390885,4.74508,2.356495,2.654215,2.72192,6.97555,4.61598,3.33633,2.153015,2.301215,5.97776,3.03137,3.04624,6.57971,3.06388,2.809965,2.55025,2.952545,1.9076266666666666,1.806495,1.3579133333333333,1.63819,1.85721,1.9865966666666666,1.5249,1.8578766666666666,1.76657,1.9076266666666666,3.80933,4.59597,2.02452,1.6360225,1.6360225,3.4918933333333335,3.4918933333333335,2.9404833333333333,2.9404833333333333,2.771415,1.734035,1.72772,4.02658,2.06278,2.06278,2.4016625,2.4016625,2.98984,1.94089,4.39033,2.10848,3.077865,1.93768,1.93768,1.43597,4.06246,6.14614,1.53936,4.5476,1.8545466666666668,1.879185,4.27413,2.97569,1.77404,2.53325,6.51353,2.026905,5.70921,2.99754,3.09024,3.05668,2.612475,6.5729,2.9325,1.998375,2.6671703846153845,2.721505,4.75469,3.518195,1.501824,1.501824,3.70044,5.04211,4.58238,5.3088,2.846425,2.70245,1.804135,3.015965,1.52828,2.685915,1.77725,1.003972,1.003972,1.003972,1.9477108333333335,4.908463333333334,1.9477108333333335,2.000395,3.4513100000000003,1.532105,2.02046,4.848,3.4805,5.38571,1.6086766666666668,4.41241,1.6086766666666668,1.6086766666666668,1.953985,2.050965,1.946485,5.42646,1.946485,2.29474,3.36669,1.990405,1.73061,2.68725,3.0793,3.8003991666666668,3.3266066666666667,3.92121,1.3988016666666667,4.31033,0.7545154545454547,4.794215,4.58604,2.5617175,2.5617175,0.7234045454545455,3.8941,2.9395066666666665,5.96475,4.945255,4.038435,4.820095,4.4508,3.995815,4.9325,4.468965,4.352685,3.48795,3.89552,4.810795,5.2715,3.298905,3.50647,3.983385,2.5550266666666666,1.3712,4.188615,4.084025,3.786475,1.5723142857142858,3.593995,4.2861,6.20775,1.127,4.826475,4.3355,2.1028,1.95418,3.199955,3.56145,1.778355,1.501824,3.728885,4.11644,2.54291,4.46573,2.99465,1.11615,2.6490466666666665,1.2953499999999998,3.04004,1.8374300000000001,3.2040866666666665,1.8324,2.64265,4.398675,3.824935,4.326415,3.265,2.275425,4.83426,4.28391,3.244025,4.85072,4.061715,2.7490133333333335,6.0384,4.500565,3.0598599999999996,2.60488,3.141215,2.96956,3.02197,2.6553733333333334,4.494065,4.11568,3.746595,2.4741500000000003,2.55064,2.3614966666666666,3.0197000000000003,2.4632833333333335,2.32313,2.699586666666667,2.01812,1.53857,3.030012666666667,1.32353,2.1208025,1.8095025,2.474405,1.543165,1.99681,4.29103,4.499225,1.97219,4.10464,4.453945,6.367196666666667,2.23123,1.551242,6.7414,3.307185,4.70686,4.84296,4.628035,1.896345,3.452535,2.54655,3.214885,4.390945,0.7069424999999999,4.03551,1.9302266666666668,0.8505136363636364,4.903595,4.35874,3.84622,1.9142175,4.717065,4.791265,2.9436633333333333,3.491766666666667,2.4624866666666665,2.0346533333333334,0.564611,3.107946666666667,3.032125,4.93297,2.524675,1.98994,4.442745,0.9824125,1.8601,1.8601,2.7528,1.8601,4.149505,2.721915,4.705965,4.2739,5.7997,12.838504166666667,3.2808166666666665,5.16725,2.747025,4.745385,3.15728,6.609195,3.0186166666666665,4.47598,4.872915,3.9258,1.3677366666666666,4.64294,2.967033333333333,2.7068100000000004,1.0430255555555557,2.1304875,3.920215,7.74082,4.66798,2.64369,4.415335,3.1768666666666667,4.410495,4.67426,4.507425,3.02924,2.7985366666666667,4.306995,5.8654,2.495365,4.71998,2.0943325,2.0943325,3.17677,4.67935,1.08820625,4.135314,2.3283575,3.88567,2.5452933333333334,2.4701733333333333,2.80048,2.229206666666667,0.6660057142857143,3.41961,2.6346066666666665,5.09425,4.27647,0.2405321875,5.5253,4.70319,4.90435,6.939451666666667,3.4489666666666667,2.91165,2.3229233333333332,3.6023,3.6203000000000003,1.4134166666666665,2.9271133333333332,2.7521966666666664,1.4349550000000002,3.516633333333333,3.3017733333333332,3.0074799999999997,3.6334666666666666,1.3207127777777778,4.32111,2.220845,5.17,4.52809,4.01049,1.6198733333333333,2.5442666666666667,1.1962025,1.732935,1.1962025,4.74787,3.5039,1.6152819999999999,2.40798,3.814655,3.733055,2.825475,3.732715,0.355906,1.5778308333333333,4.10358,4.12899,5.5888,2.097345,2.8584866666666664,3.1945366666666666,2.627963333333333,3.06467,3.179155,4.605345,2.546775,2.24466,2.9617566666666666,2.6255533333333334,2.75953,4.23165,2.050985,4.701645,3.597939166666667,5.8873,7.646025,0.8060222222222222,0.8077289999999999,3.914155,7.141299999999999,1.884442,3.33949,1.291505,1.291505,3.451625,0.45074111111111115,4.07594,4.68616,2.658685,4.603205,3.43121,2.743525,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,2.279445,3.0897,4.326156666666667,3.242716666666667,4.5363675,6.444415416666667,3.08149,2.2861333333333334,0.9337766666666667,3.32183,0.67147375,5.364718333333333,3.0785850000000003,3.255345,0.67147375,2.970005,2.74257,1.1845025,4.15034875,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,4.520095,1.6638925,4.38874,4.801135,1.8889479999999998,4.648335,4.406785,5.2075,5.013574166666666,3.6594017857142855,3.20542,4.617445,2.282825,6.23629,4.38932,0.7370714285714286,1.4616142857142855,1.41591,3.6620000000000004,3.6620000000000004,3.1903916666666667,3.838545,4.920845,3.804745,4.29992,3.7284666666666664,2.0733966666666666,0.47869,4.061665,3.599815,2.98307,3.936625,3.293555,3.0833612500000003,4.39075,4.019855,6.8307175,4.169745,5.0957,5.3139,4.47715,1.3402271428571428,3.123695,5.42587,35.15511934379509,1.2869133333333334,4.288435,4.098235,4.43238,4.080195,4.69808,5.03165,0.4177766666666667,4.98396,4.347765,2.095185,1.829455,3.57255,1.6659275,2.35451,2.34362,1.80729,2.86303,2.5267133333333334,3.323875,3.309535,0.6372776923076924,3.6791,3.65172,0.39675894736842104,2.62891,3.22275,2.527765,3.72851,1.77934,4.60471,3.730355,3.019115,4.574325,3.436525,4.514375,3.092155,4.06932,2.0902125,5.42587,3.668615,3.937675,3.02369,1.838804,4.811425,3.53052,6.8049333333333335,3.190135,4.507485,6.217717500000001,5.045301,2.24107,4.974535,6.961152500000001,7.979214000000001,2.546683333333333,2.490045,4.541345,5.722553333333333,4.249925,3.49962,5.440833333333333,2.362805,2.153015,2.23624,60.88645245915032,5.6383,4.27394,2.518625,1.06758,2.8509233333333337,3.09705,3.4278333333333335,0.9504744444444445,4.64911,0.746028888888889,7.692251785714285,1.8536359999999998,3.2483500000000003,1.757368,2.69662,2.58161,2.862553333333333,2.443756666666667,2.2010466666666666,3.2118599999999997,1.51642,5.627685833333334,4.313933333333334,1.3137525,2.6769366666666667,1.3592633333333335,1.470525,7.1928,5.8111,3.12291,5.76585,5.139695,1.475842857142857,3.6305666666666667,3.77707,1.6022825,4.9654,4.314935,3.84818,2.09432,3.0880783333333333,3.7991333333333333,3.86191,5.87195,4.254975,4.40248,2.284445,3.739525,4.460466666666666,3.2098566666666666,1.5948280000000001,4.37166,3.2858066666666663,4.07682,4.842955,3.8329,3.813325,4.657715,4.321375,4.26891,4.40094,4.487285,3.144933333333333,3.663745,4.4307,3.100505,3.970275,3.404275,1.6317650000000001,1.6317650000000001,4.404875,4.709015,5.3368,3.840505,4.70831,3.4306,2.898835,4.44658,5.42135,0.6970009090909092,5.2046,7.171595,5.6108,5.8112,1.0486122222222223,3.21545,0.92455,0.92455,0.92455,3.716665,3.5453666666666668,2.688023333333333,3.2228366666666663,0.9117660000000001,4.851705,5.04855,2.824455,1.61217,2.082505,3.992875,3.957695,3.537405,3.3013820000000003,6.2753,4.069195,2.705166666666667,4.69078,6.9017,2.133735,4.170895,3.60636,3.10313,4.617285,4.75867,4.77951,5.75605,4.02149,3.5447244444444443,2.0081233333333333,2.0081233333333333,0.7052109090909091,8.679478,2.11244,6.33965,5.6752,4.69653,4.848865,3.739745,3.0437866666666666,4.61241,7.58233,5.649816666666667,2.03877,4.486405,1.09166,3.703655,2.00544,0.942728888888889,1.1905414285714286,3.06924,3.200903333333333,2.78297,1.2336414285714288,2.7471300000000003,3.1836466666666667,0.9578433333333334,3.0577566666666667,3.321616666666667,1.631146,1.786118,3.07882,3.0110333333333332,3.12175,2.474553333333333,1.9041080000000001,5.7312,4.55693,4.225705,4.338615,4.92524,3.130725,4.778455,6.0861,5.14225,4.32016,4.19852,11.421848333333333,7.96266,2.8114166666666667,3.6439,2.1214,3.69243,3.030945,4.594775,1.2499766666666667,4.13529,3.68358,1.3630983333333333,3.61801,3.1658866666666667,4.387385,4.76126,3.72243,6.3731,7.17535,4.01244,1.6256616666666668,1.6256616666666668,1.6256616666666668,4.740675,1.106,1.4170875,0.4949255555555555,4.397134583333333,3.0021133333333334,3.88676,0.94683,1.11158625,3.24132,4.182465,4.08649,16.822662083333334,4.4966349999999995,4.53606,6.4778625,2.8354866666666667,3.55814,3.10688,0.9569733333333333,1.4869675,4.458505,3.890685,4.65884,4.17413,4.610915,4.086425,2.7279737777777777,3.66035,5.41445,0.61154,4.821595,2.23378,4.135915,5.80495,3.5732,2.4997266666666667,3.91384,1.7002933333333334,4.337815,6.0403,3.0277366666666663,2.840225,4.27463,4.64917,4.96638,3.9571,3.958785,4.122595,5.028,4.772515,4.84484,4.987355,3.913905,1.1743842857142857,2.00754,7.173715333333334,5.6179,4.770545,5.20475,2.539675,2.7775866666666666,2.626653333333333,5.486879999999999,1.8542825,2.019145,3.20849,3.23123,3.6140666666666665,4.48337,3.961355,4.840235,1.3626175,4.607665,0.8273816666666667,3.803465,3.55011,1.5307750000000002,4.524665,1.04244,4.799725,5.58,5.0607,4.398485,3.660541666666667,3.907695,2.8156733333333333,5.6058,5.43795,3.0075755,3.92814,3.204615,2.437905,1.923375,2.61782,3.89747,5.05895,1.06767125,4.3225375,1.2730675,3.269775,1.5821433333333335,1.06767125,0.2467424324324324,4.2575,2.9167,2.3954145833333333,1.8414933333333332,2.73719,1.05228,3.67814,3.51787,4.56392,2.45413,6.2889,7.0163275,2.877776666666667,3.308863333333333,2.62913,0.8472799999999999,2.2170366666666665,5.87145,4.413365,5.1283,4.815975,2.210713333333333,1.4885366666666666,3.8066449999999996,1.592455,2.3582025,1.7242525,1.7762975,1.68799,1.8322675,2.3591175,1.8715975,1.6485875,1.1854099999999999,1.7701625,1.8427925,2.1219275,2.1059775,2.28275,0.5418213333333333,1.8391639999999998,2.4338333333333333,3.3076133333333337,1.8957325,1.8025933333333333,1.58405,4.65147,2.16783,2.77304,2.928725,4.948965,5.0558,2.8231566666666663,4.569495,1.8085300735294119,4.63106375,24.8103425,4.792036666666666,5.32015,4.830795,2.993956666666667,4.13089,4.45293,2.687435,4.634425,3.0624933333333337,0.75919125,3.406495,4.668745,4.017055,4.04263,1.7906833333333332,2.3166800000000003,2.285693333333333,1.94824,1.4593428571428573,3.2144733333333337,5.8929,4.14408,3.151235,4.03017,5.03475,4.48487,5.2217,1.23720875,3.34659,4.21488,4.52521,1.725582,2.86502,1.7516725000000002,1.7516725000000002,3.53916,4.824645,2.9284833333333338,3.2046200000000002,4.13135,3.73657,6.5593275,4.146675,2.4462,1.4869675,3.19661,4.211575,3.1334233333333334,2.416369841269841,2.416369841269841,3.239933333333333,4.537985,4.198915,5.603247777777778,3.251155,3.436716888888889,0.6042655555555556,0.6042655555555556,0.6042655555555556,3.4822,3.69388,4.060946666666666,5.4136,2.180905,5.4366,4.95668,4.707055,3.81243,5.0452,3.13647,1.5527142857142857,4.8502,5.3273,0.47380357142857144,4.246366666666667,4.8628,1.7276166666666668,5.67195,5.73315,4.39671,4.50096,3.689265,2.859215,4.408605,1.6405,4.174185,1.7315333333333334,3.971215,5.9672,1.38605,3.32633,6.772215,4.44545,3.830833333333333,2.6189,4.47187,5.8408,3.6485,7.111443333333333,4.5408,2.137443333333333,3.1099200000000002,2.8297566666666665,3.17529,3.1568633333333334,1.76943,5.0923,0.5702316666666667,2.012455,2.012455,3.225315,4.974905,2.298545,3.108735,4.98117,4.390825,4.41426,1.2875433333333333,5.507422982142858,4.505235,5.33575,3.676265,4.31617,3.85774,0.45843,2.567312857142857,1.0741475,0.45843,4.16659,0.8315088888888889,4.325365,4.106855,6.556376,2.064626666666667,1.0476125,1.085816,2.15703,2.94618,1.56656,2.45517,3.310705,3.78846,1.92931,2.330443333333333,4.53321,3.2206437500000002,3.945965,5.67275,3.40035,4.82598,6.724818333333333,4.51258,3.44207,4.518665,3.65277,5.08035,5.29455,6.27234,5.40585,2.497386666666667,0.9858511111111111,4.26057,4.15897,4.093325,5.0425,4.63657,5.1268,2.9017633333333333,2.6001533333333335,3.170503333333333,2.69679,2.364266666666667,3.021103333333333,3.2053700000000003,2.6068366666666667,4.198735,4.8004,4.43772,5.41965,2.7138566666666666,3.3439333333333336,2.859725,0.7205357142857143,4.508195,3.791455,4.6565,3.0466200000000003,5.792466666666667,3.65826,4.58072,3.85259,0.6278515384615384,0.5430971428571428,4.19042,2.9424125,3.651755,4.818225,4.352135,1.787116,5.1463,4.286585,2.830223333333333,2.688916666666667,2.3950625,2.2050945833333335,3.5681999999999996,3.406166666666667,3.114986666666667,3.056703333333333,3.4684333333333335,2.70085,3.1475299999999997,4.061166666666667,4.340014999999999,0.58013125,0.58013125,0.58013125,3.5794895833333333,3.8340333333333336,3.589166666666667,2.8500933333333336,2.76304,1.14533125,3.0668633333333335,3.1758333333333333,1.9583025,2.3872766666666667,2.404246666666667,0.9969555555555556,3.0712366666666666,4.70873,9.69006825,1.54619375,0.6161920000000001,3.44363,0.6161920000000001,0.6161920000000001,0.6161920000000001,0.6161920000000001,2.12657,4.144381,4.028315,5.26505,6.21055,2.826093333333333,3.08243,3.28351625,3.76284,5.4257,1.48313,2.5714266666666665,3.2543699999999998,2.6135333333333333,3.2796833333333333,4.27144,2.2003666666666666,3.575505,1.2253555555555555,4.72581,5.06445,4.222785,0.9111625,0.578246,0.578246,0.9476387391304347,1.8588012391304347,0.9476387391304347,0.9476387391304347,0.3633617391304348,0.3633617391304348,0.9476387391304347,1.4318366666666666,2.5904766666666665,2.97686,3.17694,2.49796,2.66396,3.1252633333333333,2.6745900000000002,4.322895,3.60312,1.802495,2.2052566666666666,1.6756725,0.18087820508100147,0.18087820508100147,0.18087820508100147,0.18087820508100147,2.3663433333333335,2.4825933333333334,0.9050779999999999,5.30745,0.7856563636363636,1.7160160000000002,4.6369050000000005,4.998975,3.729505,3.92132,4.25321,3.954705,1.8475566666666667,1.107695,3.658105,4.40787,6.0148,2.269285,1.47858,1.8639700000000001,3.8970000000000002,1.4933933333333334,2.6625866666666664,2.9978933333333333,3.0338999999999996,4.89718,4.340995,3.114875,4.855965,2.7250099999999997,4.34889,5.30685,4.01562,4.777945,4.828735,5.147903333333334,4.675588333333333,3.0974774285714286,4.90756,4.51946,5.7461,4.37047,4.681615,2.32637,3.197105,4.168545,5.17505,4.25669,3.70392,3.88565,3.686845,3.96717,2.4691633333333334,5.11525,3.4823,7.4886175,6.00155,5.9896,5.03435,1.5021714285714285,1.03634,0.65453,1.8089479999999998,4.91498,4.98224,3.99052,1.698312,4.079185,2.98829,5.07975,5.31685,6.1834229999999994,4.210835,3.062325,1.7864619999999998,5.29041,3.928935,3.214895,1.7154975,0.9651175,3.878355,3.469295,3.5323925,3.61794,2.09526,4.66127,1.61019,2.9190833333333335,2.54088,4.203435,5.62865,4.831425,2.222835,1.59283,5.3871,3.0017533333333333,8.83985,2.8122,4.83397,5.7804,4.42613,4.91997,3.634325,4.62393,2.24869,4.292,5.103541,2.3790025,4.233375,4.65792,7.465425,4.7914,3.2823333333333333,4.23287,3.80805,3.2206437500000002,3.4982,5.1372,5.5403,2.3571775,3.1389099999999996,3.3314133333333333,2.339225,3.95967,4.575905,5.69705,5.13,4.58249,4.830595,4.37558,5.59775,0.6179223076923077,3.1918699999999998,1.2373171428571428,31.8356660526872,2.116785,4.51285,2.94921,4.262535,1.807744,2.3909533333333335,3.4758191666666667,1.5518016666666665,1.5518016666666665,1.5518016666666665,1.5518016666666665,1.9240175,3.387945,0.5256511111111111,7.914603194444445,0.5256511111111111,4.433695,4.963965,2.3244925,5.31665,2.60305,3.793307333333333,2.5259966666666664,2.4442866666666667,2.6676133333333336,2.093643333333333,0.6245715384615385,2.6086966666666664,0.7236791666666668,3.27844,2.2556566666666664,2.35336,1.2148816666666666,2.35336,6.15055,7.846210000000001,4.857455,4.45509,5.52495,5.98835,7.57015,2.99229,1.5806425,1.5806425,2.3686133333333332,4.962585,3.8521,4.38201,6.278186666666667,4.41487,3.08226,4.18298,3.31894,3.46107,2.177925,1.013936,1.85707,4.761665,3.955085,5.242102222222222,2.0089,4.373315,1.511798,3.139815,1.47789,3.4747333333333335,3.2628799999999996,2.7975966666666667,3.3659,3.1340966666666668,4.924275,0.6807623076923076,3.475765,3.6631,2.6288966666666664,2.2667266666666666,4.25811,3.179586666666667,2.891783333333333,5.60485125,4.00719,5.09245,3.90033,3.56657,5.24425,5.0211,2.570256666666667,5.9632,2.3354523333333335,2.3756666666666666,3.1996533333333335,2.97104,3.3056366666666666,3.05538,1.90639,3.131412303030303,4.200965,3.6078725,2.4787666666666666,2.4787666666666666,2.44084,3.95183,4.04882,0.6306,3.240135,3.05575,8.12273,0.9222454545454546,4.361955,3.572685,5.31625,3.88561,4.02657,2.19351,3.98714,2.926555,6.27095,2.75652,4.025855,2.6311466666666665,4.44978,2.83423,3.52786,3.768405,4.30137,4.943916,3.295045,1.99771,5.35245,2.453673333333333,4.440485,4.53583,4.907245,4.5738,4.03243,2.73657,2.13523,3.0070599999999996,2.8070466666666665,2.804975,3.3097100000000004,2.8158104761904763,5.036063333333333,3.0705266666666664,2.5943466666666666,6.8544133333333335,5.235111249999999,4.1524225,3.0968933333333335,4.010366666666667,3.93071,3.521865,2.4682875,4.0732825,5.0129,4.73573,1.4995333333333332,4.68998,2.993316666666667,6.988925,4.673065,9.032031666666667,4.061645,3.77952,2.540665,3.896435,5.754804999999999,7.53541,3.92494,5.9192,4.139325,3.18213,3.787195,1.691076,4.578586,1.518355,4.127385,4.616055,3.4327,0.8779333333333333,9.731796666666666,1.2446666666666666,1.8400325,2.30286,1.83507,3.3014566666666667,1.3139583333333333,3.566585,3.339955,3.1235466666666665,4.309535,1.0634908333333333,4.520145,1.3757599999999999,2.5976908333333335,4.856115,5.2902,1.9227425,5.581921666666666,2.1260783333333335,8.01511,4.320015,2.71911,3.93837,3.243845,1.2770029166666665,7.43634,2.93502,3.099235,2.43975,3.9411,2.14174,3.375835,2.05155,3.90589,1.2975525,5.29425,4.38673,4.055015,0.8662750000000001,2.1177493333333333,3.817765,4.990675,5.307855,1.460736,1.460736,6.3293,4.667115,5.189,3.641945,3.325,8.729695,4.255485,5.64125,4.104635,2.54645,1.9696521433691756,0.366777,0.1976690322580645,0.5737601433691756,1.029115,0.6249290322580645,0.1976690322580645,1.3600395,0.3760911111111111,1.395892,1.9337996433691758,2.1157525,2.279895,2.09708,5.2639,6.844613333333333,5.1987,5.49185,4.894885,5.29325,1.1646966666666667,5.08175,4.284005,6.0642,5.5344,5.57305,5.3253,6.02965,5.7658,1.53153,1.6615857142857142,2.19036,6.216079,1.463254,5.82255,4.75501,7.161460833333333,5.3661,5.43155,4.75906,4.72128,2.518275,5.6356,5.83385,4.450168333333333,5.14965,5.624180833333334,5.739,3.93163,4.312175,3.8699666666666666,1.01639,3.803933333333333,4.559475,1.27605,3.6900666666666666,4.820695,4.3751625,5.04155,2.3987725,3.5055,2.5559366666666667,4.70342,2.2267975,3.543505,1.2713966666666667,3.07185,3.803315,4.901245,5.60465,3.3921158333333334,0.6517366666666666,5.98255,1.0664625,3.507085,3.18179,3.550075,2.0159966666666667,3.74369,3.6064930769230767,3.7359333333333336,4.364865,15.739447761904762,5.535643333333334,2.551975,8.39959,1.5613425,3.581095,3.0850633333333337,2.7889133333333334,2.2602766666666665,0.24845826086956524,2.9753266666666662,5.446,1.81014,2.22193,3.5882,1.8727925,2.254586666666667,1.2910714285714284,3.70832,4.68308,4.687765,4.98103,0.49400000000000005,2.3619133333333333,4.389605,2.587455,4.0518,5.17025,4.356645,4.600965,0.55445,2.4470066666666668,2.4470066666666668,5.62305,4.593535,4.750105,2.639775,4.039733333333333,3.3437,5.15195,3.861555,5.630220555555555,4.795895,4.558595,5.1509,2.53075,2.0737200000000002,4.47367,4.21043,3.946945,3.707475,1.7627320000000002,4.6176,4.262865,3.66308,5.1555,3.92926,4.447965,0.648096,4.000865,0.7650433333333333,3.1876933333333333,3.192475,4.39906,19.080759047619047,4.171245,3.856525,3.1333633333333335,1.20455125,3.11632,2.46065,1.5536720000000002,2.48266,2.537605,5.29825,2.119423333333333,4.004855,4.64181,2.265335,4.782295,2.8170966666666666,4.41499,5.44005,5.6027,2.12136,1.986095,2.53442,5.38525,5.09845,1.1848555555555556,5.5307,3.942765,5.62935,4.795915,1.72394,4.556285,3.763115,3.629135,4.421705,4.192045,3.045716666666667,0.64477875,7.89232,1.535942,0.19212305555555556,0.19212305555555556,0.19212305555555556,4.90273,4.01687,2.4955266666666667,4.30088,3.28757,4.71482,4.386594285714286,4.222836666666667,8.988566666666667,4.23766,7.406158333333334,0.81296,0.90930375,2.54635,4.912045,4.377505,2.065446666666667,5.24125,5.21965,3.44467,4.41785,4.45911,2.48042,4.427315,4.9374020000000005,2.284196666666667,2.779733333333333,2.9392766666666668,2.731995,5.73455,3.82703,0.6700421428571428,3.966025,3.323665,4.22871,4.873226666666667,4.8779,3.114025,5.36195,3.534415,13.851629583333333,4.699495,6.654150833333333,2.7190499999999997,6.773835,4.852175,3.989245,2.10263,2.4499125,9.77435,2.17906,4.158966666666667,3.8744666666666667,3.7071,2.9359033333333335,2.9298466666666667,2.0881475,2.1611475,2.9071200000000004,1.87198,3.964566666666667,2.6819400000000004,2.6672833333333332,3.4677000000000002,3.4385,2.3486599999999997,2.3486599999999997,2.726573333333333,3.634066666666667,3.3422666666666667,2.7858733333333334,3.04757,3.9125,2.6790800000000004,2.797166666666667,3.5467,2.38663,2.2840175,3.848433333333333,2.911626666666667,1.64488,4.0874999999999995,2.6006933333333335,2.58099,2.900346666666667,2.4576116666666667,3.3891666666666667,5.853118333333333,2.4012166666666666,3.5474333333333337,1.8463933333333333,10.718797,1.9947100000000002,1.9723666666666666,1.9594460000000002,1.076438888888889,1.6344619999999999,4.869223333333333,2.656726,2.656726,1.632722,1.4617866666666668,3.376363333333333,4.16522,2.1399233333333334,1.5282116666666665,1.7363279999999999,4.433311333333333,3.363466666666667,4.204366666666666,8.43742,2.7504685714285713,2.37931,3.113830310559006,4.3549,2.2840175,3.3134566666666667,3.214366666666667,3.291446666666667,3.4698641666666665,0.8620775,3.3638719999999998,3.1684866666666665,2.7416633333333333,4.12822,3.2609999999999997,0.6645954545454545,1.8253942857142857,4.673015,2.6368155,3.22832,1.7372333333333334,1.7372333333333334,2.02837,3.7719699999999996,1.09708,2.1398,4.8299199999999995,4.8299199999999995,0.6518190476190476,6.178526000000001,3.59926,4.13102,5.1966,1.168537142857143,3.452366666666667,3.496033333333333,5.147265,6.591001666666667,2.7979866666666666,0.7279289999999999,2.9984,2.6095133333333336,3.054339333333333,2.5572933333333334,2.68909,3.07052,2.3600075,2.46237,0.83777,3.795545,4.696408,1.2775683333333332,1.5282,5.17245,2.28869,1.56866,4.419885,1.755436,3.7541,2.521275,3.3887666666666667,8.9935,4.276746666666667,4.893155,4.966785,2.466252,0.756463,1.77936,7.165846666666667,1.6632466666666668,4.17203,4.539385,3.729245,21.838074416666664,3.1026566666666664,2.1015133333333336,1.07965875,3.22368,1.4082933333333332,4.153178,5.25845,3.3841609999999998,3.3509333333333333,1.6933566666666666,1.3446683333333331,3.058196666666667,0.542525,3.27817,3.779033333333333,3.0793,2.6163689999999997,2.7119766666666667,2.6955500000000003,2.19415,2.9365733333333335,1.65611,3.4592666666666667,1.3672633333333335,3.81801,4.13033,3.0426633333333335,5.1822,3.312465,4.318535,5.0788,4.4339,3.0680133333333335,2.8639466666666666,2.6789799999999997,1.1552814285714288,1.1552814285714288,1.1552814285714288,2.2733375,3.14432,2.6363566666666665,2.5467733333333333,2.6891499999999997,1.8602825,4.50083,4.56355,3.5841,6.586779999999999,3.417225,2.3469375,1.8482225,1.2524666666666666,2.46657,3.985445,2.42972,2.5556933333333336,2.51327,2.55872,2.59921,2.8135433333333335,3.2285533333333336,2.881263333333333,2.75845,3.136863333333333,2.3010266666666666,2.13174,1.9391775,1.2731475,3.1260999999999997,3.061366666666667,1.9129925,3.784065,5.32205,3.081246666666667,2.5368242307692306,5.911568333333333,4.418225,4.7882,5.45605,4.530795,4.1407,6.3869675,1.27345,3.990865,2.621495,5.09905,5.47395,3.46607,4.307115,2.3440925,7.88353,2.234665,0.8788166666666667,8.86545,4.93403,5.895702976190476,4.7318,2.94408625,1.955975,5.2484,4.723825,4.61789,5.3279,2.516725,4.406255,4.619095,1.6756725,4.123275,2.685875,1.346985,5.01725,0.6426294117647059,4.224879166666667,3.953345,4.55448,3.22664,1.55673,3.47422,2.01384,1.41775,3.0221366666666665,3.3958333333333335,3.2264766666666667,6.988564743589744,1.6979275,6.6549958333333326,9.729185000000001,6.13531,4.056315,1.2642242857142858,3.2480499999999997,1.2642242857142858,2.7529833333333333,2.12526,0.2778676470588235,1.1122651470588236,0.2778676470588235,0.2778676470588235,0.2778676470588235,1.1122651470588236,1.1122651470588236,0.2778676470588235,0.8343975,5.4127,3.31674,3.134,3.292475,3.87439,3.454555,2.9518306666666665,1.580552,6.968543333333333,2.9951600000000003,4.171695,2.69215,0.9854727272727272,1.2817,4.588295,3.972575,1.0814877777777778,1.7732579999999998,0.747179090909091,3.2535964025974025,4.249935,5.34275,3.6012,5.30237,0.564263076923077,4.38438,3.66601,3.1217699999999997,2.7704533333333337,3.4507666666666665,2.4436233333333335,2.9190400000000003,2.6872733333333336,2.89471,3.58594,6.2692,4.93239,1.7444220000000001,4.575485,4.57009,3.80854,3.855665,3.376935,0.3414493333333333,4.92894,3.651185,3.486295,3.221152,4.502625,3.993835,1.900275,3.14817,3.76025,8.67491,4.99797,5.6838,4.210085,4.2035175,1.0608475,2.18535,2.12091,1.45242,1.82733,4.993605,5.39515,4.3746,4.471175,3.3013820000000003,2.49124,0.93498,3.989235,1.2187566666666667,1.0931433333333334,3.19322,3.77133,4.65737,1.23982,2.75243,8.563506666666667,3.132573333333333,3.2938066666666668,0.93072,4.016065,11.986983333333333,3.377795,3.961585,3.228315,3.377005,4.600085,5.1874,2.01546,4.129505,0.6083746153846155,4.746095,2.1772825,1.965705,1.965705,3.4553999999999996,4.53665,1.6740833333333331,4.766815,1.5664285714285715,4.239375,2.4875475,3.043226666666667,4.738095,3.50323,3.7136503333333333,2.5473,2.6138478333333337,2.6138478333333337,11.24624,0.810018,3.6736,3.4791333333333334,2.100945,1.9577,0.9644171428571429,1.3601225,1.2342814285714285,1.961365,4.640025,2.454825,4.445895,2.2278533333333335,4.346415,4.520745,1.6634816666666667,1.964735,1.0443816666666665,5.766030833333333,2.006015,2.26412,1.695738,1.787368,1.07965875,2.3771754166666668,3.560155,3.0036199999999997,2.9922299999999997,2.2843166666666668,2.6731766666666665,1.7455999999999998,3.022206666666667,2.7103066666666664,1.5796366666666666,2.043886666666667,3.13595,3.564833333333333,2.3957866666666665,1.13948,2.65888,2.447643333333333,3.3075799999999997,0.34202421052631576,0.3979533333333333,2.40476,2.3138666666666667,3.06231,3.075473333333333,2.66503,4.99214,6.1436,4.310485,4.673095,4.59234,3.96274,2.75183,3.753205,0.6614063636363636,0.0656934090909091,6.46815,0.0656934090909091,3.39576,3.154075,5.4269,3.380225,6.1648,5.14905,2.637023333333333,2.6012833333333334,1.540485,5.9776,5.5269,3.0526199999999997,5.2466,2.0403325,4.5883,2.118396739130435,3.06546,3.24582,4.555145,4.639983333333333,3.21633,2.11354,2.11354,4.04007,8.13353,4.1017,2.213156666666667,2.74873,4.364765,2.79073,4.912685,4.143715,1.0862966666666667,4.463825,2.76927,3.318906666666667,4.23149,1.11191,2.3411466666666665,3.78573,3.80568,4.83134,2.81089,3.218395,3.793165,3.810395,4.183485,5.30885,4.45932,3.2759075,3.62478,2.86828,2.911713333333333,2.7249033333333332,3.4091666666666662,4.405465,3.0608400000000002,5.158476666666666,4.960425,3.66472,5.04265,4.631265,3.980165,1.524896,1.30892,4.05589,3.179413333333333,1.6418933333333332,2.6900733333333338,3.17209,3.1070499999999996,3.8405144444444446,3.387366666666667,2.1861291666666665,12.795036805555556,2.0252933333333334,1.7699660000000002,4.425125,1.22977,3.28716,4.21259,4.7998,3.205525,1.1126666666666667,2.2947333333333333,2.45413,1.47855,5.6938,0.9566075,0.9566075,4.1332,2.0121733333333336,2.121026666666667,1.7086075,3.896675,4.04322,1.82541,2.734025,3.81953,3.0013433333333333,2.97045,1.985636,6.53965,5.91405,3.92969,0.7724384615384616,4.475715,3.56226,0.9407,5.2184,3.2974366666666666,8.420036666666666,4.5234,4.59915,3.495345,1.5107475,2.998985,5.21275,4.74099,3.78214,3.822265,4.348715,3.244445,3.4930333333333334,3.4930333333333334,4.729395,3.0912075000000003,4.99352,1.950385,5.420050833333333,5.484626666666667,1.7276166666666668,4.902575,1.04719,4.99182,4.02139,5.1686,4.77909,4.24806,2.60542,2.500425,4.57044,4.33614,4.963585,4.64307,1.8379175,1.38167,4.366115,2.0521766666666665,5.33705,3.07102,3.40061,7.343835,3.86376,5.1414,5.2311,4.3229,4.367735,8.44895,3.259295,3.081535,10.74175,3.611645,0.6292942857142857,2.1281724053724056,4.504485,0.6320033333333334,4.773425,4.17794,4.934015,4.600985,3.52492,4.0883,4.73194,4.829465,2.5202,0.7145,4.593055,4.78612,4.734435,4.45977,2.798273333333333,4.631625,3.53375,0.635168,3.571575,4.046675,2.354375,3.1167200000000004,3.934295,2.264225833333333,5.48115,5.0267,4.260384999999999,3.29754,5.63757,5.63757,8.86764,2.0067399999999997,0.81954625,0.81954625,24.785706666666666,2.610975,7.850918333333333,0.3753125,1.29203,3.06291,1.05082,3.556555,3.841775,2.251075,2.251075,4.756045,4.604375,3.410295,2.68796,2.68796,3.433325,3.78919,4.457735,3.0245166666666665,2.2493266666666667,2.4569433333333333,4.122195,2.04091,3.43774,3.0823966666666665,3.0022496428571426,3.0022496428571426,3.6089,0.87427,2.515563333333333,1.6838733333333333,3.245136666666667,2.78384,2.9759700000000002,2.6974433333333336,4.50693,2.28223,3.190023333333333,5.420219,1.434294,2.191535,3.078265,2.9292033333333336,3.93852,5.849980777777777,1.2475933333333333,3.6534,2.38893,4.95874,5.89659,1.550635,4.829486666666666,5.042914666666666,3.0737645714285713,4.6181,1.0444628571428571,1.725582,3.278935,3.6601490476190475,1.3458666666666668,2.512675,1.5857325,1.6744879999999998,2.055385,3.473802,5.085972,1.0289599999999999,1.523785714285714,2.963573333333333,12.47005,4.873773333333333,2.6901,1.1175457142857144,2.672284285714286,1.0373242857142857,3.26782,4.3529,4.63797,3.4027666666666665,5.29325,1.501555,3.7671666666666668,4.059385,2.86664,3.6678611111111112,2.739543333333333,0.9932311111111112,2.53822,2.5799233333333333,6.873348333333333,3.3487391428571427,2.5223066666666667,0.706328,4.721233333333333,3.5257666666666663,1.2446899999999999,5.726045833333334,2.1522125,2.3524266666666667,5.97365,1.3659777777777777,2.95874,1.0307454545454546,3.056623333333333,4.53122,2.8059066666666665,3.316603333333333,2.18247,2.6189733333333334,4.40622,4.75865,4.996795,1.571785,4.38556,3.63915,4.316343333333333,3.447542,2.4921233333333332,4.238263333333333,0.9641,2.7327347619047617,4.83177,2.69185,4.137763333333334,1.48425,2.77908,1.9271280000000002,1.9271280000000002,6.886003333333333,3.13116,5.202842499999999,3.544391666666667,1.8065033333333333,2.678315238095238,4.515991666666666,5.486533333333333,8.135761666666667,4.8776720000000005,2.6364585,2.2317,2.119915333333333,4.05701,3.665405,1.656222,2.2051975,2.3622057142857145,1.2119825,3.1332766666666667,18.967633333333332,3.427566666666667,3.064906666666667,2.9281333333333333,2.93891,2.7306733333333333,1.72761,3.09876,3.3310566666666666,2.6557566666666665,2.511553333333333,5.702005333333333,2.36414,4.313412857142858,2.706452857142857,2.318378857142857,1.56401,4.00255,2.157935,4.21666,4.77527,3.79693,3.0953625000000002,3.2323,2.58465,3.4189666666666665,3.143823333333333,3.7449,3.2971333333333335,0.8517036363636364,5.0476,2.46025,3.105536666666667,2.8845711111111108,2.132605,2.2728200000000003,2.2728200000000003,3.6268283333333335,2.1431283333333333,4.69466,4.406725,3.82033,4.474375,4.796565,4.770235,4.770235,4.086515,3.0623966666666664,5.16395,2.741655,1.588336,3.8615333333333335,4.466705,4.2956,2.654375,3.603065,5.8083,3.8190000000000004,6.168080083333333,2.67531,0.8225339999999999,0.8225339999999999,3.22789,4.552915,3.727775,3.3937340000000003,2.355933333333333,1.76989,2.1859866666666665,3.0308833333333336,6.65025,1.5229,4.471785,3.829966666666667,3.81953,5.06045,5.0754,4.8397133750000005,3.3139233333333333,2.3185625,4.49676,3.868115,2.10858,1.1263239999999999,4.43813,2.862725,6.418325,3.5556,2.668605,3.447765,3.76172,3.452465,4.63519,2.95795,4.524125,4.4169,4.221765,3.67116,3.4358,3.51301,5.3095,2.4711233333333333,4.398465,3.166485,4.96623,0.7328933333333334,2.274055,1.8553625,2.0256575,1.811975,2.92311,2.6735333333333333,1.8935899999999999,4.791525,6.04804,2.053853333333333,4.573035,4.650535,2.3198375,5.527313333333334,4.046138333333333,5.14995,5.1513,6.678356666666667,1.9612233333333335,2.7989933333333332,1.8621966666666667,3.0450233333333334,1.781035,1.757805,3.892205,3.53938,5.2075,1.0428455555555556,2.89459,4.86709,2.2807675,5.58485,3.665875,3.85537,3.718833333333333,3.356475,1.959475,1.816526,2.697525,2.97315,3.184375,1.915635,3.427785714285714,3.427785714285714,3.55565,3.31955,20.390422023809524,1.0868200000000001,5.503475833333333,2.1102425,1.8810900000000002,4.172495,4.032165,2.013605,3.706445,4.49841,1.4892766666666666,1.4892766666666666,1.23407,1.9497933333333333,2.3885733333333334,3.05937,4.607905,3.310695,3.7004,0.5282105263157895,3.5465405263157894,1.91439,3.408225,4.5955325,3.29504,3.810275,3.489715,4.4656,4.162925,1.9915025,4.24786,5.722553333333333,2.27396,3.702515,5.061,2.16562,4.466545,6.18515,1.6227142857142858,2.2961400000000003,3.600433333333333,0.9209314285714285,3.2442533333333334,3.651175,4.81977,4.89076,2.795983611111111,8.139533333333333,3.0690833333333334,3.073916666666667,0.4669411764705882,4.196265,5.210077738095238,2.932755476190476,5.42275,3.75879,2.613005777777778,1.874382,5.64988975,4.381405,4.3898,2.4062325,2.14432,4.400475,4.151133333333333,3.1228766666666665,2.03638,4.072954166666666,6.6010425,2.69671,3.72288,3.447285,4.184285,1.4526571428571429,1.4526571428571429,3.0758266666666665,3.0481833333333337,4.515135,4.90001,6.32215,3.404575,2.735875,2.145825,1.6365833333333333,1.353182857142857,4.930355,5.6702575,5.16265,5.57135,4.59742,6.4136925,3.853605,2.8431233333333332,3.862318,2.3373866666666667,2.9533045,1.5376400000000001,4.73274,2.3606333333333334,4.36834,5.36845,4.051305,2.6989533333333333,3.0017533333333333,1.5771714285714287,2.649925,3.8274333333333335,1.9367625,0.582463125,3.3955333333333333,2.8702,2.6068366666666667,2.5892166666666667,2.151675,1.7718440000000002,0.7095236363636364,0.7095236363636364,3.5873000000000004,2.03227,2.69185,4.252065,5.5863,4.81576,5.2672,4.006745,4.48162,2.559943333333333,1.2038066666666667,2.62247,3.881095,0.7880075,3.1723375,2.9136,3.093565,2.14904,3.84293,2.8695,1.9203433333333333,1.2972357142857143,4.348025,7.105105,3.921505,1.7348537499999999,4.813355,3.61542,2.936505,3.37568,2.640935,1.6870233333333333,0.993155,3.78858,2.3233116666666667,2.1058600000000003,1.62151,2.3161366666666665,2.16925,2.4138333333333333,2.7415287499999996,1.2762766666666667,1.9368033333333334,1.0323775,6.5066825,5.16175,4.94595,3.84594,4.08732,3.13132,1.7809562393162393,4.64052,4.649975,2.52205,5.9515,1.991325,4.45439,1.1331,4.039935,3.79882,1.7655175,7.26546,3.41772,1.82131,1.7853875,1.986975,2.565925,3.4410000000000003,1.3076735064935066,3.3048333333333333,5.69435,4.346055,4.505695,5.8678,5.8866,5.0711,0.96436875,4.528045,4.625935,4.18751,5.0918,4.163165,4.720395,5.1481,2.866475,1.5560083333333334,1.5560083333333334,5.2624,5.825161666666667,3.154625,3.031663333333333,4.21295,4.390055,1.5218500000000001,3.236835,4.801675,3.783095,4.23959,2.9060066666666664,2.7752233333333334,4.915545,2.416111125,11.11980663283775,1.8827233333333335,0.83993875,2.4626233333333336,1.8842825,2.480995,2.2640375,1.9018760000000001,2.9809033333333335,5.11415,5.44565,2.9260966666666666,1.5800183333333333,6.329330357142857,1.3589157142857142,3.2314333333333334,0.5192476190476191,3.989063333333333,5.87295,4.125955,4.522965,13.49795,5.46115,3.252496666666667,2.98279,4.98729,3.1113133333333334,5.1482,1.1909425,1.6106999999999998,0.7836781818181818,5.9653,4.217325,1.869888,4.787502,4.881005,6.4496,4.835935,5.325,4.47819,6.359,3.810955,5.5481,4.59829,1.6985800000000002,4.790835,5.99535,4.18601,3.990705,4.75449,4.08714,1.4249975,4.951555,3.81431,1.221725,3.4448333333333334,3.27876,2.4546933333333336,2.58378,2.25144,2.8016799999999997,0.6832318181818182,2.5347833333333334,2.6968599999999996,2.48843,2.1874533333333335,3.026726666666667,1.905055,1.3712766666666667,2.576875,2.32672,2.3328475,3.405333333333333,3.01248,0.7045,2.59193,3.942315,4.876855,2.4497533333333332,3.77296,5.231,5.2972,3.334375,3.882925,1.41591,3.77719,2.7233133333333335,3.975881666666667,2.97155125,4.65915,4.944615,5.25195,3.78511,4.174266666666667,0.848748,0.848748,2.217688076923077,1.633625,4.19613,2.6258435,2.6258435,4.904425,5.8799,3.096675,1.1046116666666668,1.4545,6.0261,3.41675,3.8548666666666667,3.248445,2.75332,3.18516,3.8548666666666667,6.7417050000000005,3.14807,3.1648395833333334,3.0373,1.91885,2.826405,6.3679,2.7773,3.34055,3.647135,6.1101,5.8203,6.384925,6.384925,5.31655,4.522285,0.5312615384615385,4.982905,4.91574,2.75554,2.785715,9.665116666666666,2.96617,5.44875,3.91769,3.6610333333333336,5.5678,2.50832,3.2238225,3.2235600000000004,3.2752866666666667,2.8691633333333333,1.7656939999999999,1.7656939999999999,3.541665,3.641965,4.716775,1.780802,1.6662780000000001,48.47563246212121,2.593243333333333,0.8516245454545455,3.2267433333333333,1.8185325,3.31882,2.7901333333333334,3.1169499999999997,2.995635,2.8236633333333336,2.07978,0.97477375,4.780195,3.184005,3.458375,4.134665,5.16885,5.0505,5.1183,5.51245,5.4296,4.8156,5.7406,6.2804475,5.0567,5.51995,2.0333025,3.81875,6.64125,5.5141,3.55565,3.937445,4.375235,2.71683,3.813555,4.714675,3.1825766666666664,3.8170333333333333,1.6338339999999998,3.69989,1.305984,3.116065,3.68617,3.502795,6.677842500000001,3.85855,2.1275525,4.151495,4.196775,3.87098,1.129785,2.997155,4.141365,4.350550476190476,1.1949275,4.873705,1.4888725,6.2537,0.7137955555555555,4.22898,10.383908333333332,4.516895,3.95087,3.43487,1.88375,4.333935,5.07015,3.1056866666666667,4.30802,9.252017777777779,3.4375666666666667,2.2687633333333332,2.7673366666666666,2.8798133333333333,3.0078899999999997,2.8307372500000003,1.8761366666666666,2.6374133333333334,2.9400833333333334,2.832216666666667,2.8848599999999998,3.247965,2.1705633333333334,1.6690166666666666,5.107755333333333,3.4555000000000002,2.61606,4.9188746666666665,2.8969833333333335,1.152315,2.12669,2.8924633333333336,5.14418,2.681175,2.220178888888889,2.220178888888889,1.5527225,1.4608375,2.06764,1.845964,6.317565,4.095135,2.522675,3.04334,3.3792000000000004,2.1649275,0.5389441666666667,2.59601,1.8612975,0.538263076923077,3.655225,2.554275,2.592375,3.5354,3.9225999999999996,2.783633333333333,1.6335133333333334,1.3219533333333333,2.05371,3.459595,3.643265,4.325435000000001,2.81405,4.11781,3.807375,1.1838636363636363,8.663535,2.642615,3.195315,1.3332125,3.0373366666666666,2.254155,2.254155,2.254155,4.70983,6.04895,1.72535,4.872395,1.4593,5.748609999999999,1.571534,4.205215,4.12115,4.09835,4.282015,4.541565,1.86549,9.0737375,4.145685,4.981745,3.361415,4.508791666666667,3.2553300000000003,3.1363233333333334,4.13148,2.9361766666666664,4.520096428571429,5.080564166666667,1.6583325,3.82528,1.6583325,3.49507,4.67574,5.3773725,4.67574,1.7297733333333334,5.9067,4.878105,4.50368,2.933286666666667,2.9706466666666667,4.400155,3.06778,4.712105,0.5445907142857143,3.07986,3.1138733333333337,5.233301666666666,4.76783,2.53525,4.454355,7.371703333333333,3.93959,3.259685,2.912885,2.2793533333333333,4.059225,3.897315,4.721385,2.44297,4.01086,0.8784890000000001,5.05605,3.62892,4.079905,2.8178733333333335,3.188356666666667,2.0844333333333336,2.926076666666667,2.740766666666667,2.7740299999999998,3.493615,2.4741025,2.4741025,4.905194166666667,3.38531,4.66004,11.724587499999998,0.9746888888888888,4.399835,2.4953866666666666,2.2397533333333333,3.195956666666667,1.4170875,7.5348915000000005,3.527533333333333,4.33497,3.992685,2.6246933333333335,3.8456333333333332,4.614345666666667,2.4430333333333336,0.47348000000000007,1.812068,1.375005,4.96035,2.667865,3.25033,3.91242,3.4561991666666665,2.5588125,4.194775,4.54411,4.10428,4.43535,2.18959,4.077475,2.477866666666667,5.7069833333333335,3.02814,4.6646,5.0427,4.200895,4.58488,1.92937,3.780305,3.92483,2.751863333333333,3.571415,2.783415,3.046715,3.788695,3.82999,2.9779433333333336,4.865235,1.8331666666666668,4.072255,2.915985,4.54334,4.016325,4.661035,5.0896,4.27626,4.08796,4.301405,3.95913,2.66696,2.029465,2.90583,2.27713,0.8284199999999999,4.11042,1.997855,3.33677,2.555475,4.107235,3.2267,3.137385,3.32854,3.984455,4.647596,4.152175,3.13607,1.4395166666666668,3.615395,2.48247,0.9739533333333333,4.992815,9.62386,3.200925,3.53171,4.55805,5.1243,3.63809,2.02286,3.926735,3.89136,3.18463,3.042405,3.66407,0.609015,1.2524014285714284,6.0512075,1.5931775,2.634365,4.87363,2.3987725,2.225755,2.623355,7.3732,2.935055,4.193395,3.70717,0.7333766666666667,3.354125,2.571305,3.7448,4.52907,5.996936666666667,0.674617,3.36988,8.20472,3.119365,1.034138888888889,5.252697916666667,4.78718,5.57685,4.291235,4.915675,3.719325,2.48838,7.475815000000001,0.84884,3.401995,4.30737,3.173695,3.963145,2.03619,4.20394,1.5254683333333334,4.52373,3.815705,3.906,1.8107225,4.917915,4.81312,2.381235,2.070345,2.571975,1.2446899999999999,4.074275,3.3841609999999998,1.737156,9.023505,5.7872,4.735775,4.5507,3.468255,4.278135,1.4662285714285714,4.499635,3.78154,5.0877,3.616555,2.334,6.593444230769231,0.9045225,0.9045225,2.47809,0.9035314285714285,4.07273,2.6025666666666667,1.069665,1.7739266666666669,0.41103,6.403705,0.99528,2.68744,3.96881,4.01197,3.305975,4.20895,5.2551,5.3520875,3.044565,3.00087,2.332275,4.722685,4.936065,4.2257,4.133325,3.614355,6.2459,4.34323,4.27913,5.778519,3.71215,3.9231425,2.353435,3.9231425,6.793442000000001,41.184247658008665,3.59367,3.327385,3.0457733333333334,4.76385,4.611975,3.27996,3.29194,3.726105,4.200325,4.411775,1.7918833333333335,5.45775,2.705585,4.674485,5.1416,5.14325,2.2647666666666666,5.0341,3.774875,3.669495,1.494302,0.6466723076923077,1.7132539999999998,3.572233333333333,3.2203999999999997,1.3695625,3.20557,2.7601633333333333,2.9934133333333333,3.3104033333333334,3.0913066666666666,1.555018,2.76647,3.723933333333333,1.908789761904762,2.9190199999999997,3.138838,3.0935433333333333,2.53656,3.208833333333333,1.1820777777777778,3.917965,3.906115,1.1437316666666668,1.1437316666666668,1.1437316666666668,1.1437316666666668,2.804731818181818,1.95076,2.417875,3.328255,4.68144,4.39721,4.699815,4.493595,6.1442,4.72506,2.287825,6.35495,3.479535,2.673815,3.726665,3.47345,4.395735,4.40161,0.7843230769230769,1.467042857142857,1.50592,4.45822,4.80133,4.07731,4.120365,6.162936666666667,2.2156933333333333,4.671965,1.7075166666666668,4.40559,5.16295,1.6013466666666665,5.7299,0.8311316666666667,4.8782,1.668916,1.24938625,3.86,4.84057,5.0595,5.326,5.9436,4.248805,1.504032,4.481495,1.5030475,3.531985,3.501475,2.613005777777778,1.789495,3.755535,1.4614399999999999,3.4845,4.494875,2.86896,5.92645,123.67024526605339,0.47677555555555556,4.390995,2.56425,4.77919,3.99826,2.74877,1.5021,0.34588857142857143,2.803915,3.6361,5.21375,2.46866,3.78717,4.56883,4.543275,4.25003,7.785036666666667,0.6679022222222222,2.93447,0.956885,11.8232,3.129175,3.605865,1.0380111111111112,2.143395,2.72686,2.142095,2.9115633333333335,3.19942,2.261746666666667,4.268345,2.6788633333333336,2.25194,2.16969,5.38825,3.705365,3.205495,3.51528,3.652175,3.389815,2.2404566666666668,3.77447,3.482995,2.992625,1.0841644444444443,2.5494499999999998,4.268345,4.81327,5.3031,3.921105,4.314955,1.77605,10.69717,4.316275,2.52666,3.47222,5.42345,0.5893726666666667,0.5893726666666667,4.436405000000001,4.436405000000001,4.349175,3.5623,1.7603529545454544,0.6595308333333333,2.86943,4.507695,4.344755,3.3677,3.844965,5.3843175,4.91168,2.4606725,4.597285,2.02576,2.670735,4.488288333333333,1.77039,2.550005,0.4873571428571429,1.7431331428571428,1.7431331428571428,1.955765,4.716505,4.707275,4.8632,6.086841,2.768035,3.35,1.98837,1.97308,4.307464166666667,3.856065,5.6265833333333335,2.88856,5.6265833333333335,5.44385,3.53338,6.0414,3.650835,2.3682833333333333,2.0225233333333335,2.631256666666667,1.40679,1.34141,1.510475,1.5563825,1.47151,2.1594575,3.627333333333333,4.55238,2.78864,6.45505,2.9751066666666666,4.629335,2.885525,4.141275,2.98184,3.1831600000000004,6.279263333333333,3.3851,4.775959333333334,3.179256666666667,1.287905,2.5408633333333333,2.721076666666667,2.3673066666666664,5.8195,4.140775,5.0136,13.29726114999036,0.7612516666666668,1.9899695,2.4111175,1.7672899999999998,1.2819157142857143,2.617325,2.47104,2.6191,2.5517,0.7609930769230769,1.9603875,0.5380368421052631,5.58035,1.917275,4.206375,4.64399,2.502125,6.0474625,4.38088,8.61617,3.734005,2.61431,2.9787,4.915555,4.76862,2.9418540952380954,4.651535,2.16074,2.16074,4.994945,4.047705,4.64731,4.003175,3.157196666666667,3.83239,5.0902,4.90157,4.55986,4.617895,4.350765,4.42245,2.23372,5.0281,1.2225966666666668,4.68288,4.39663,2.5070833333333336,2.3379266666666667,4.562435,1.4378166666666665,4.479105,1.7188275,6.001939239130435,3.815655,4.12233,1.6253733333333333,3.0721233333333338,3.0721233333333338,12.03446,3.838325,4.670385,1.1748625,4.8522099999999995,2.586975,1.378825,2.47885,1.7089625,2.0923775,1.83696,3.442765,6.2846,1.715015,5.0673,4.741629166666667,5.44285,2.2912175,2.136645,3.61789,4.273825,5.2645,3.975685,7.111373333333333,3.2241400000000002,2.9950166666666664,0.3897672222222222,3.682725,4.353115,3.3500333333333336,6.3844183333333335,2.5006,3.1096566666666665,1.1863316666666666,1.6923000000000001,0.582463125,1.812068,2.964725,1.59335,1.7775166666666669,0.66755625,1.376136,4.604055,2.4691575,0.5853423076923077,1.53094,1.563245,1.804604,1.2507516666666667,2.24209,1.6923000000000001,2.3790025,1.376136,1.376136,0.5853423076923077,1.5728285714285715,2.4623999999999997,1.3458666666666668,2.65375,0.5853423076923077,2.66115,2.4623999999999997,1.3927916666666667,1.3927916666666667,1.3927916666666667,1.8566299999999998,1.180235,0.5853423076923077,1.100726,1.25375,1.076438888888889,1.9402920000000001,2.5975,0.8779333333333333,2.32694,1.6568,0.5853423076923077,1.6517279999999999,1.6923000000000001,1.9438833333333332,2.02135,0.928507,1.9438833333333332,1.0876233333333334,2.381235,2.493425,2.54655,1.25375,2.2196000000000002,1.4614399999999999,1.4614399999999999,0.9520545454545455,0.9520545454545455,0.9520545454545455,1.1863316666666666,1.6923000000000001,1.6568,1.53094,0.9982771428571429,2.02135,1.56029,1.64488,1.8858260000000002,1.1863316666666666,2.6901,12.1233725,0.66755625,2.6064599999999998,1.8633666666666666,2.663625,1.0373242857142857,1.0373242857142857,0.5853423076923077,1.2272222222222222,1.7718440000000002,1.6568,1.7189299999999998,2.02135,1.1848555555555556,1.1848555555555556,1.7160160000000002,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,3.26078,1.0876233333333334,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.3937909090909091,56.092459012987014,1.4623725,1.5261149999999999,1.6568,1.8633666666666666,0.9982771428571429,0.6133941176470588,0.706328,0.706328,0.706328,0.706328,4.2649333333333335,16.653122916666668,3.4203666666666668,0.6700909090909092,1.699938,1.699938,1.699938,0.6700909090909092,2.964725,0.5853423076923077,1.6517279999999999,1.7775166666666669,2.64114,1.0876233333333334,2.53525,1.0876233333333334,1.5009359999999998,1.5009359999999998,2.16235,2.16235,0.5853423076923077,2.09624,2.09624,0.9523,0.19212305555555556,2.964725,1.5782016666666667,2.38893,0.6700909090909092,0.6700909090909092,0.6700909090909092,0.6700909090909092,0.6700909090909092,1.8633666666666666,0.3937909090909091,1.0876233333333334,2.3931575,2.3931575,2.500425,3.18179,0.6518190476190476,0.6518190476190476,3.290566666666667,4.099266666666667,1.168537142857143,3.24066,1.06448,2.521675,2.0067399999999997,1.11191,3.235056666666667,2.003985,3.29754,5.44595,2.45693,1.3094,4.53093,4.634825,2.6531233333333333,1.785892,2.353819230769231,4.828795,1.6384330555555555,2.6622,2.910106666666667,3.4037666666666664,2.443125,6.259869999999999,4.09947,0.19212305555555556,3.1344166666666666,4.81819,4.414905,4.522925,4.595215,4.6783,2.708396666666667,1.78704,3.882925,4.59842,4.190485,4.73372,5.2779,3.3422,0.66095,6.7004850000000005,1.3783216666666667,3.330496,4.723415,2.5625533333333332,2.5625533333333332,0.8026736363636363,1.789495,3.537875,3.02728,4.60507,4.373465,4.771025,5.15515,1.1195028571428571,4.506845,5.16975,7.347487152777777,2.2018333333333335,4.173745,4.24056,3.90381,4.749545,4.208875,4.465675,5.460115,5.0938,4.47546,3.741445,4.612805,7.316076,1.871335,2.020229743589743,2.8397166666666664,1.6952299999999998,2.78993,1.8234166666666667,4.912295,3.091136666666667,5.51875,2.02004,4.933695,3.962705,3.245105,4.22696,3.693875,2.4576466666666668,2.74706,2.662246666666667,2.71716,2.2495766666666666,1.6032183333333334,2.6948000000000003,2.895243333333333,2.15272,2.15272,4.19723,2.8447633333333333,1.9365666666666668,3.101366666666667,2.0942666666666665,2.3739466666666664,2.96077,2.5874433333333333,3.0842266666666664,5.3601,4.873265,4.775965,3.7462886666666666,3.7462886666666666,4.018685,3.243133333333333,4.43186,4.309325,3.945165,3.448575,3.303795,7.24613,2.2851525,1.92833,3.37562,3.18132,1.2667166666666667,1.2667166666666667,3.66821,1.758905,4.445021333333333,3.67885,3.46413,2.0380540000000003,2.1491653333333334,0.5546783333333333,3.258785,3.872135,2.184115,2.39313,4.47821,1.1157000000000001,4.84449,1.2444933333333335,0.4380807142857143,0.5856807142857143,21.994626229166666,0.5856807142857143,0.4380807142857143,0.7332807142857143,11.19331,3.3946,3.997685,4.515495,3.4504124999999997,2.5859,4.545495,2.25832,3.2205,3.700595,2.98365,4.23796,4.96212,3.48158,2.314755,3.094755,3.731395,3.820605,3.04572,1.058922,1.058922,1.058922,1.058922,3.344575,2.755115,2.908105,1.8162133333333335,1.382295,2.41901,3.570715,3.84125,2.73992,3.365395,2.55699,2.4875475,3.745715,4.11083,1.1264833333333333,3.2431366666666666,1.11378,2.847073333333333,2.17673,3.643333333333333,5.306,2.4786066666666664,4.26165,4.120690000000001,0.9126304761904761,0.33536714285714286,0.33536714285714286,0.5772633333333332,0.33536714285714286,0.33536714285714286,0.33536714285714286,0.5772633333333332,4.797525,7.347775,3.481975,0.5363475,3.764765,7.247674999999999,3.24965,3.3299366666666668,1.1888216666666667,4.518385,5.48315,4.335625,4.73062,1.6330660000000001,4.9259,2.2064366666666664,2.6394113333333333,4.038245,5.5566,0.8028457142857143,0.8028457142857143,3.531575,2.9860933333333333,2.393955,3.28854,2.88472,6.2178,2.743975,5.37565,5.7434,5.9394,2.284745,1.842055,4.51567,3.58442,2.06373,3.84218,3.60329,1.78201,1.1175783333333333,4.065705,3.151505,4.873226666666667,6.4031183333333335,1.5837566666666667,3.86601,1.11484,2.521243333333333,3.419105,4.27147,0.41826214285714286,4.564365,4.514295,0.979528,2.8459066666666666,7.7633833333333335,5.6397,2.04861,5.969048,4.57412,3.59312,1.4257116666666665,5.351593333333334,3.0492266666666663,3.08463,3.7882,1.9703099999999998,1.9703099999999998,6.2425999999999995,6.2425999999999995,3.5686660714285714,3.5686660714285714,8.85829,3.5686660714285714,3.5686660714285714,4.203589404761905,6.8344,3.328275,3.6887758333333327,3.188883333333333,4.42644,4.02777,3.4477666666666664,3.2527066666666666,4.416965,3.2025633333333334,2.55878,3.170446666666667,2.3122133333333332,2.59723,4.99299,7.520214999999999,6.7955825,4.595245,3.630655,3.899585,6.452976,5.1345,4.0912,4.001975,3.3833,2.26083,2.057635,2.12733,5.47715,5.18695,4.645135,4.18706,2.2218533333333332,2.62939,7.495688333333333,1.8566299999999998,2.5212566666666665,3.2988999999999997,3.2988999999999997,3.03919,5.01805,0.8408083333333334,3.4119333333333333,3.861475,2.7152,10.460175000000001,4.33247,2.9500566666666668,2.4007166666666664,5.7766,6.12375,3.06579,5.68635,2.6005733333333336,4.357005,2.9056974285714285,4.284755,5.3857,4.76754,1.15071,3.6844333333333332,1.13424,2.5160966666666664,5.235936411764706,8.097553333333334,2.5867566666666666,3.4258666666666664,6.922846666666667,1.7339099999999998,4.619315,5.5576,3.43145,3.56098,2.26735,4.84224,2.4709137500000002,0.4493153846153846,5.3158,2.890285,3.6391666666666667,5.31355,4.89942,5.1814,6.726697499999999,4.9609,5.46335,7.034767500000001,53.210791666666665,4.326655,3.91645,4.691985,5.89405,4.62106,5.1026,4.209745,4.84058,1.8749475,4.201555,4.11593,4.354805,2.523715,5.11565,3.987725,1.5989499999999999,5.6698,6.55565,7.32883,5.61285,3.17084,4.70921,3.04208,3.02697,3.600985,4.354205,3.62786,6.51816,2.765175,1.0584757142857142,2.3647255,0.6488940000000001,0.6488940000000001,3.56502,0.6488940000000001,2.5808515,2.5808515,3.2366455,4.3920215,4.898704,2.3647255,4.6204375,2.5946775000000004,1.3659100000000002,5.53205,2.07793,7.980118666666667,6.266076666666667,12.039516704545456,3.571066666666667,2.8927666666666667,0.22673878787878787,1.7741316666666664,2.6222566666666665,0.95255625,1.7678500000000001,2.5372733333333333,1.939455,2.7661,0.661639,28.25228375,1.9389825,0.7717076923076923,2.672086666666667,2.672086666666667,0.41183333333333333,1.991395,3.083665,1.3694775,2.111215,1.5655975,4.516785,2.82258,1.9564966666666666,2.28259,1.186025,2.288835,1.6721666666666666,6.115342833333333,4.01559,6.764398333333333,2.4287825,3.1562966666666665,1.0445766666666667,2.487755,4.95105,6.031295,3.0189833333333334,2.39125,5.838509166666666,2.4510425,2.6563066666666666,4.3640799999999995,1.1149033333333334,3.7992000000000004,2.4253766666666667,6.05545,5.6555,6.3521,3.565005,4.586935,4.586935,5.55675,1.866005,5.46795,2.8071266666666665,1.60901,4.36893,3.84893,5.694399833333334,4.84753,2.941606666666667,3.3856,2.4491,1.3498999999999999,4.86947,1.06405875,5.55346,5.10175,7.793304,4.56412,4.363285,4.06645,8.19497,4.92133,5.27775,1.1272,0.7074971428571429,4.93225,4.817435,2.3377,3.21449,3.23585,4.121715,2.22101,5.05965,2.506693333333333,5.3635,5.51695,5.00835,4.679405,4.67335,2.669525,6.9403179999999995,3.2722,4.594925,3.21785,3.88081,6.044879166666666,0.590605,3.798833333333333,1.71207,0.7026033333333334,4.06053,2.96362,1.02770625,2.09282,5.88464,4.49132,2.273165,2.7492866666666664,2.6980633333333333,4.879485,3.78023,1.7228014285714286,4.2026,2.44364,3.4751666666666665,4.34677,5.0429,3.3652816666666663,3.8514666666666666,3.7033,1.9928540000000001,7.23459,4.93368,4.185075,5.04575,2.301055,4.23817,4.728775,3.424385,3.91744,10.34217,4.036385,4.117846666666667,4.739855,4.52272,2.4406075,4.223105,4.254065,5.0157,3.26034,4.384135,1.78206,2.8066366666666664,3.32571,3.414075,4.80264,1.9187,4.330645,2.977536666666667,5.28765,3.0994833333333336,2.09511,4.05688,4.55252,1.02994375,2.98351,2.6247633333333336,4.567246666666667,1.715544,1.6706433333333335,1.2078275,4.998875,5.4742,5.88214,3.765445,2.95799,2.37927,2.180165,2.445655,1.45867,5.3348,3.058175,1.853475,0.9368,21.095984807692307,2.996775,3.233734166666667,4.566058333333333,4.078411282051282,1.3645333333333334,2.7199791666666666,2.9406820454545453,1.178702,1.8666633333333333,4.118265,4.990485,3.895944166666667,3.433775,5.53815,4.95008,7.239415000000001,4.9979625,5.04345,3.74583,2.9709266666666667,3.89102,4.012175,3.571733333333333,4.125465,2.1905675,4.88847,8.66397,3.3419,2.90055,3.62969,0.54408125,3.3016233333333336,2.096486666666667,2.32615,4.25256,3.32716,4.958545,3.78983,2.772515,2.309025,1.64243,1.011488,1.4363833333333333,1.2367133333333333,3.98683,4.002855,4.82975,4.82422,7.11756,2.1648533333333333,1.3734899999999999,2.4562033333333333,7.428366666666667,3.354895,2.979775,3.143605,4.715455,3.621215,3.521325,1.645656,4.3257,5.45585,4.179575,3.9213,3.678165,4.27405,4.66575,3.883995,4.458855,3.551215,2.147835,3.3497,3.15255,5.62675,2.649895,4.220892,4.58605,2.83671,2.838786666666667,2.228616666666667,2.0863366666666665,2.7971113333333335,2.7971113333333335,1.88067,3.0043399999999996,2.3240266666666667,2.328606666666667,2.0144366666666667,4.017745,2.3602866666666666,2.8829833333333332,2.7869266666666666,1.6864766666666666,4.24048,3.14087,3.78072,2.2872133333333333,5.16895,5.4022,4.882015555555555,2.582245,2.11602,2.87329,2.29045,2.046615,2.948505,1.849425,2.550375,2.48458,6.578376166666668,4.2648375000000005,3.641345,0.59135875,4.102905,4.342245,4.378035,3.21939,3.794215,3.6493641666666665,6.26435,4.40454,3.699085,2.6898789285714284,2.280371333333333,2.46862,1.7412500000000002,1.764374,1.590362,2.02424,1.89345,1.2863083333333334,4.0955391428571435,0.5853423076923077,0.5538233333333333,2.12846,1.4910716666666666,1.478516,1.5204333333333333,2.462096212121212,1.4659000000000002,1.673948,0.6183375,173.30868443837005,0.48831066666666667,2.02082,1.013082,1.28713,2.0336675,1.4629025,2.0008825,2.65441,2.0899925,6.9175,3.05087,3.7043899999999996,1.5373433333333333,3.05985,1.29008,1.29008,5.8465075,0.5200905555555555,2.328235,3.2731066666666666,3.0584166666666666,0.8116809090909091,0.6680235294117648,1.278501641025641,1.1527,2.8765,4.281975,2.1788125,2.2295675,2.52399,4.783350333333333,1.0591133333333334,4.27912,3.58015,3.417095,6.35037,1.8009333333333333,3.01384,2.60206,3.993531,2.222085,3.17896,3.365565,3.490775,4.830165,2.662665,7.0982,2.59141,2.263085,3.518555,1.847565,2.508185,3.0368,2.829955,1.80215,1.52926,2.43314,4.48303,5.908893333333333,3.072335,2.86968,1.45242,4.2774,3.579166666666667,4.165333333333334,2.799225,25.43701790598291,2.431867333333333,2.656353333333333,3.15512,3.419033333333333,3.285503333333333,6.156583333333334,3.1133466666666667,2.646383333333333,3.460566666666667,3.436033333333333,2.101386666666667,3.17352,3.3522,3.237363333333333,1.7068,1.7503115,0.5779340000000001,2.15722,2.1578925,0.18568,2.4671533333333335,2.7791,0.18568,0.18568,2.0132966666666667,0.18568,0.18568,0.18568,0.18568,2.7417766666666665,2.671393333333333,0.5754753846153846,3.2402482142857143,1.7118025,1.9474900000000002,5.2526,4.340014999999999,6.2021475,2.1154075,4.849705,2.0903875,2.91379,1.3361942857142857,5.988886666666666,2.79378,5.568440000000001,0.9331583333333334,1.22723,4.936025,4.682645,35.97942132933733,1.6579139999999999,1.3671333333333333,2.2480766666666665,2.458065,0.9520545454545455,2.28309,2.45297,2.7668633333333332,2.09727,2.4110833333333335,1.6783333333333332,2.861416666666667,2.36918,2.3150933333333334,2.4762666666666666,2.3536566666666667,4.41131,3.339,1.1796914285714286,4.004245,4.132585,20.008517722222223,2.9652433333333335,3.2023200000000003,2.63104,0.946322,2.9675659999999997,1.7363375555555556,2.9675659999999997,2.3835133333333336,2.49746,3.2125466666666664,1.6250375,1.9267175,4.401555,3.957465,5.3289,4.294135,1.78577,5.1993,1.8453775,4.85073,4.0463720952380955,5.02655,0.7149345454545455,2.1349125,2.183055,2.93379,3.320815,1.0768775,5.0486,2.01764,1.8933433333333334,1.0219580000000001,1.0219580000000001,2.6164,3.5401333333333334,4.656055,29.427714583333334,6.449305000000001,1.8703666666666667,3.5451633333333334,0.367578,6.7016175,5.3144,2.8502833333333335,3.253245,6.266287500000001,4.533885,1.21318,4.58243,1.290778,4.494095,4.82195,5.109,2.01312,2.996545,4.450775,2.452705,3.6498865,4.67886,1.2729366666666666,2.6088275000000003,3.83358,4.7993175,3.07006,3.12757,3.0130700000000004,3.253815,3.99791,4.162805,4.0347,1.602085,5.87257,2.4537,1.772046,4.090875,5.3865,4.033425,3.480945,0.88896125,2.83451,3.350895,2.00244,4.476637333333334,2.75541,3.823025,2.8502899999999998,3.3493,4.157275,3.2357666666666667,3.365766666666667,3.129433333333333,4.574165,4.86473,4.538875,1.82762,4.073495,4.219155,1.84612,1.87937,1.7497575,3.91715,4.658735,5.423978333333333,3.98009,3.6797,3.677995,3.516833333333333,1.3770083333333334,2.9576,3.0045,3.5147,4.48709,4.37969,4.60215,2.752165,1.93906,1.56951,1.5025575,3.61594,2.40276,2.13494,3.350515,4.79173,1.554825,5.23165,1.3602985714285716,1.7862275,3.193945,3.01634,2.916345,3.534825,2.936535,1.56375,0.9651357894736843,3.608075,3.9816483333333332,5.24885,8.460431666666667,2.436366666666667,3.117646666666667,1.5040566666666668,2.60506,2.88327,1.1568283333333333,3.2080266666666666,3.036936666666667,3.078003333333333,4.023533333333334,3.4138333333333333,6.959728333333334,3.0797333333333334,0.73281,2.291326666666667,3.442515,3.211145,3.3886,3.7316000000000003,2.6240289999999997,4.324565,3.96089,1.9600341428571428,3.85904,2.8804494444444444,4.018895,2.248416666666667,4.561945,5.11145,4.69735,4.40546,4.00681,1.2861444444444445,5.03675,3.2919533333333333,2.6755933333333335,4.665145,2.850963333333333,3.2055333333333333,0.38437857142857146,0.38437857142857146,3.8331283333333332,5.6322,6.23735,2.937065,4.033455,3.44036,3.014915,5.1973,4.66491,0.99460875,4.10031,2.7877433333333332,4.541730833333333,2.9814000000000003,3.103320833333333,2.174236666666667,3.2929510714285715,2.9740966666666666,2.84728,2.74157,2.7318866666666666,2.019623333333333,23.219174963438736,5.29415,5.08345,3.896045,3.192525,4.57841,3.31962,4.618335,4.88047,3.929735,4.014365,4.01218,2.7852433333333333,3.178376666666667,3.0180566666666664,3.1889700000000003,2.8296200000000002,4.235155,3.55626,4.8617375,5.1552,3.85566,1.209842,1.7217939999999998,1.7217939999999998,4.3814,3.85501,2.7128866666666664,2.4476066666666667,2.9179833333333334,4.79355,3.675205,8.061218333333333,3.1273733333333333,3.2619666666666665,3.0367283333333335,4.73696,1.625185,6.166650000000001,2.5347433333333336,2.635873333333333,1.7010175,4.37289,2.89812,7.40636,3.292585,2.645385,4.228265,3.878172666666667,1.5938275,2.6545,1.7386566666666667,8.4773075,4.360265,6.745188333333333,2.248415,4.20163,3.66497,3.799905,5.412,3.586266666666667,3.586266666666667,2.068285,4.329655,5.2216,2.817185,6.437712857142857,1.718395,6.02055,9.990758333333332,3.665433333333333,5.0073566666666665,2.17826,1.98103,0.67084375,4.29693,2.4687325,2.694825,3.9562425,2.42451,2.4700666666666664,3.986855,5.4496,5.07955,4.727835,5.6539,4.169425,2.2322275,1.0491181818181818,2.919085,3.01746,2.6430266666666666,5.31095,3.965335,3.74923,2.62893,2.2961400000000003,4.33084,1.00175125,5.0053,1.0097055555555556,5.43455,3.141865,4.798475,5.62077,3.552895,3.23291,3.423133333333333,2.4033466666666667,4.267545,3.9387,2.60165,4.841805,5.1846,6.9348833333333335,4.71801,2.0010325,4.224845,3.533445,5.393303333333334,1.809865,1.809865,2.79628,2.399853333333333,2.54289,2.7422233333333335,0.884974,5.9406,4.19476,2.04759,2.22754,2.583985,3.66118,3.029515,3.697725,4.29548,5.3735,5.04105,6.25915,5.8476,1.375325,4.01472,1.0775583333333334,2.568825,4.4699,2.628855,3.004395,3.087845,4.46902,3.58134,0.4716,4.51236,4.185975,4.97695,3.297705,4.847555,5.55435,4.440565,4.12185,1.83884,4.44609,2.052675,4.3008,4.3008,6.53225,5.343,5.73635,5.3428,2.7522,1.625185,4.61317,2.235716666666667,1.5789833333333334,2.147905,4.234405,4.17394,4.637605,7.65326,1.6844666666666666,5.65975,1.3685633333333334,3.512405,6.0029,2.061635,4.858585,2.69359,4.99331,3.657055,4.37548,3.0526199999999997,4.248375,4.032315,6.1891,3.9584,3.40955,3.774965,5.6936,4.032885,4.61955,3.522645,4.44671,7.752228333333333,3.422135,6.91257,3.080615,5.1011,5.996113181818181,4.729555,3.553185,2.392225,5.1717,3.832525,0.8284733333333334,7.99427,5.7942,4.97618,3.0488958333333334,5.2607,3.034465,1.7416139999999998,3.811715,1.1264833333333333,5.5991,3.32817,4.47331,5.4644,4.502925,4.0152,2.159406666666667,4.540045,5.3785,1.64708,7.552003333333333,2.96227,3.554435,5.33095,4.414035,2.03153,4.523095,4.725075,4.987045,2.85751,3.92335,3.68787,5.4775,4.74318,3.34548,1.906365,1.906365,7.227001666666666,1.5224285714285715,5.34645,4.66019,5.4788,3.74414,4.340155,5.3173,3.78107,0.8505866666666666,0.8505866666666666,0.8505866666666666,3.872315,2.81075,3.8307,4.687085777777778,2.755475,1.3885016666666665,5.1375,2.2200825,2.60959,4.122775,5.12595,1.8700975,2.25962,5.54869,3.684625,2.871255,4.30831,1.6764,1.8783325,3.3279333333333336,2.849,5.61925,1.3795959999999998,1.5792059999999999,1.06793875,3.81103,3.28819,3.22186,3.16502,5.5466,1.739188,1.963265,2.938095,1.5952857142857142,3.718515,3.75375,2.317385,5.7021,5.65325,2.72864,4.67367,4.589305,3.51188,3.699145,4.63277,3.568185,6.15249,5.28415,1.9115133333333334,1.8649166666666668,3.303645,4.78209,3.994725,4.301535,3.3472666666666666,4.378035,5.6685,5.3057,2.565436666666667,5.28065,3.996035,5.169,7.48611,5.1267,0.7328245454545456,4.294,4.164686666666666,3.13924,4.32589,3.8369,5.86005,3.842875,4.35493,3.43812,4.53135,5.16315,4.66356,3.802185,4.255515,5.13455,4.31496,3.634095,2.87551,6.32749,5.01725,1.837904,3.46101,4.049448333333333,3.82284,4.81703,3.869275,2.7521966666666664,0.886108888888889,4.370579090909091,6.1923125,4.4985,4.967135,3.400295,7.6010349999999995,4.160905,3.5277,2.8065366666666667,3.61485,1.976385,3.22536,4.45242,2.884573,4.180145,5.37845,1.4116825,5.14075,0.7323142857142857,5.57315,5.0656,5.54065,5.5359,1.3880233333333332,1.7261533333333334,4.44726,1.935845,4.67521,0.5969091666666667,6.13195,2.99006,1.49165,6.0470749999999995,6.8117,0.916735,1.7968190000000002,1.284746,1.284746,1.284746,2.1876933333333333,5.1367,3.828415,4.317185,3.87423,5.5538,4.148555,1.945636,4.35723,5.1592,0.2941951219512195,3.734075,4.81539,6.1507,41.981193409090906,5.6250875,5.59305,12.341634666666666,4.82221,4.19792,7.84923,3.255515,4.466495,4.25667,5.04435,10.48211,3.908525,2.5595266666666667,3.546005,5.89365,4.130835,3.729715,4.53517,2.09036,4.550015,4.330885,7.181088000000001,4.85244,5.4533,2.3495325,4.10347,0.52147875,1.4113416666666667,4.40378,6.6947,3.021195,1.387675,1.387675,4.315575,3.779435,4.82393,2.667475,1.9408966666666665,3.84107,4.291725,1.872885,3.211676666666667,1.756308,2.2573,4.175805,4.52622,2.150855,4.41638,2.22082,2.11439,3.470225,3.491,3.94071,3.7397,6.089777333333334,2.4995673333333337,3.93747,0.6608718181818182,0.6898308333333333,3.52153,2.13633,8.606013333333333,3.4203666666666668,5.11765,1.58957,4.666255,1.569615,4.27933,4.346785,2.78161,4.519445,5.63165,0.425504,0.425504,3.6010666666666666,3.08565,3.0436666666666667,3.78849,3.435485,5.03485,0.9590454545454545,10.468430000000001,9.85738,2.24209,4.520265,4.637745,5.1927,3.45194,2.5404966666666664,2.10862,2.0089,9.6275425,2.35328,2.804043333333333,3.823394,4.957055,3.823394,2.673,2.91459,3.04842,0.7619772727272728,5.30237,3.4234333333333336,2.6696033333333333,4.501805,8.755835,9.81909,4.601725,4.153585,4.67157,6.900725,2.0317875,1.3312625,27.42146333333333,4.160635,4.186495,0.984072,4.4353,4.07027,4.630385,4.653585,4.65446,5.77374,3.4139,1.9573066666666668,0.6897529411764706,0.7596916666666668,4.883425,4.698,1.69395,4.45641,0.8447833333333333,3.4869333333333334,1.3536266666666668,4.116365,5.50865,1.93754,2.45263,2.373,3.78021,3.000435,0.5495666666666668,4.16784,3.55197,2.8363,3.251995,5.3527,3.01214,3.966525,2.94727,5.63965,8.73587,5.0342,7.221655,2.6337,2.6758066666666664,4.064675,4.0927475,4.094015,4.364215,3.697775,4.95643,1.26675,3.3219416666666666,3.4383269285714286,0.770618,1.7217939999999998,1.7217939999999998,5.2372,7.501861666666667,0.8752307692307693,4.80696,0.9618933333333333,3.05293,2.61973,2.691215909090909,6.835576666666666,2.7432533333333335,1.1133666666666668,2.5614833333333333,1.2470425,2.4861400000000002,3.1168899999999997,3.0225516666666667,3.4718999999999998,2.5929966666666666,0.9618933333333333,4.29132,4.502405,5.8249,2.655025,4.94777,2.17158,6.03455,4.870465,4.48698,2.97958,3.434555,2.33813,1.601355,4.262385,2.705225,4.52597,5.5508,1.6870020000000001,4.543305,2.7036033333333336,6.583521666666667,3.42338,2.74749,0.9618933333333333,2.357805,3.83047,7.214477,2.42674,1.5342,2.42674,0.47513,1.232482,3.453735,4.7736,2.0285675,3.461565,3.6046120000000004,0.531487,0.531487,0.531487,8.34437,1.592274,0.7964936363636365,36.90848450649351,1.7416153333333333,0.6349233333333334,3.041735,0.6349233333333334,3.537805,2.02445,2.438525,2.697846666666667,5.725,4.78002,4.609645,2.4701233333333334,0.8741842857142857,4.44031,3.1046533333333333,5.21945,1.0923585714285715,2.84035,2.84035,3.730315,4.492375,4.375915,6.029583846153846,3.247465,4.566115,5.53015,1.958888,1.19675125,5.40295,6.3402,3.756425,0.921613,4.66732,4.204585,0.99744375,4.371185,2.529175,4.191675,4.775945,1.8950676767676768,1.8950676767676768,4.67528,3.31775,0.8987833333333334,2.925175,3.11881,3.394105,3.806185,4.964425,0.6044057142857142,0.2827735294117647,0.2827735294117647,0.2827735294117647,0.8871792436974789,0.6424838461538461,0.647648,0.2827735294117647,0.2827735294117647,7.26152,0.2827735294117647,0.8871792436974789,3.44737,1.2318425,4.65571,1.1795033333333333,0.6530507692307693,0.99744375,2.49729,2.602,4.102765,2.953705,0.2827735294117647,0.2827735294117647,4.407845,3.67409,4.55613,2.630145,3.668705,1.519622,3.684195,0.647648,0.647648,4.900955,3.07516,2.68943,2.98251,4.44428,1.0518800000000001,0.8206538461538462,10.251885000000001,1.258325,4.899475,4.437765,5.2269,2.11294,0.38211739130434785,0.8988775,2.9965433333333333,3.201155,3.473165,4.65836,1.435014,6.1832,3.76503,5.1413325,4.1989,2.9848233333333334,3.0381366666666665,6.342698333333334,2.65077,4.98288,4.14013,4.120690000000001,6.17931,0.5809953333333334,4.43745,3.128486666666667,2.0048766666666666,0.6476888888888889,4.364035,6.52771,3.210755,2.40113,2.235485,5.38945,2.75372,3.08005,0.926202,0.45755538461538464,4.036965,0.342048,0.7799272727272727,3.868485,3.144045,4.32561,2.58321,4.988725,4.095895,6.499459,3.72634,3.69826,4.430895,1.5287775,4.9165975,2.11306,4.07268,2.513775,6.022959999999999,2.552525,1.278702,4.54202,6.9968525,6.841209166666666,3.3741,0.9004083333333334,2.8275366666666666,4.83427,4.069495,4.523845,4.714565,4.60359,4.52103,3.11887,4.057785,1.7049966666666665,2.218725,1.3822366666666666,3.985415,9.232025,4.06016,3.51982,5.52265,2.704015,4.206735,2.6034533333333334,3.111409,3.258365,5.3984,3.70694,4.051105,3.608185,5.1025,5.64645,5.17745,4.511186,5.04825,4.240915,3.344025,5.6179,8.17125,0.8939688888888888,4.612105,4.50164,4.471855,5.27885,4.79239,2.237275,8.745750000000001,2.3847833333333335,3.33111,5.72565,3.62569,4.22839,2.1104,1.8427275,2.7946000000000004,2.22124,2.0061233333333335,3.112106666666667,4.58266,4.591505,3.94034,3.42148,5.018451666666667,3.439725,3.094965,3.8473625,5.72035,2.9792,6.005739666666667,4.146745,3.90601,3.784195,8.57434,4.390215,3.517045,4.524265,4.880265,3.40523,9.36403,1.30487,2.05239,4.028965,2.928786666666667,2.928786666666667,1.89728,7.885068333333333,0.9027988888888889,3.458985,0.871865,1.963265,4.38178,4.529525,3.88112,4.238205,2.98927,3.428425,4.328815,3.669225,4.359335,3.21311,2.81326,4.8521,4.985783333333334,3.90993,4.376605,1.6909800000000001,1.625804,2.7361166666666663,5.20375,2.31359,1.6747966666666667,2.00709,4.51734,4.783725,2.912635,2.93925,0.5632866666666667,2.346635,7.37725,3.117345,1.4119233333333332,0.8343975,1.20359,1.9453566666666668,2.0555575,0.7731716666666667,2.0006333333333335,4.2757305,4.3902,5.3687,2.4541633333333333,2.2746075,6.9769325,2.976325,2.0798466666666666,2.0798466666666666,2.0798466666666666,6.3567366666666665,2.136836666666667,3.604825,2.623995,0.4982,1.1520519999999999,2.0889475,5.4075025,0.4646544444444445,3.67828,3.8627450000000003,5.41245,3.0983311111111114,0.4646544444444445,3.0983311111111114,0.99594625,1.255376,5.9867,4.429965,6.8177075,4.399765,4.69715,3.65089,4.07896,5.0223,4.877155,6.28175,3.609775,3.270795,5.13985,4.54818,4.147245,4.51378,5.3391,1.3260699999999999,2.828163333333333,1.2333425,2.3571475,3.30803625,1.60173625,7.339255,5.393303333333334,2.881288333333333,5.0323,2.856605,5.04525,2.85325,4.74476,4.69022,9.5799725,5.8638,4.630855,2.2432975,2.687565,2.22648,0.54408125,2.146154888888889,6.21045,4.868125,4.750825,4.502855,0.620044,2.0914375,1.4321425,4.43707,0.8270384615384615,7.1076525,2.0368025,1.110235,1.110235,3.542262,1.962912,3.8266666666666667,2.703395,4.503515,3.4175275,3.4175275,4.78264,5.779956666666666,2.8130166666666665,2.5311566666666665,3.5234666666666663,4.331835,1.7073260000000001,2.80147,5.94605,5.2921,4.819585,4.490755,3.932455,4.677375,3.73639,3.248476666666667,2.2437625,4.10046,5.57065,3.0722112499999996,5.10465,5.72105,2.07777,2.5793566666666665,6.602,6.936,1.959354,2.7425,2.3007725,2.9010599999999998,2.58915,2.4968125,2.6314175,1.04749,1.8836475,2.499765,2.2364925,2.480455,2.480455,2.9817975,3.0002,2.227744615384615,2.671075,2.4459025,1.987766,1.5687956666666667,4.970855,14.9340925,3.0065066666666667,3.7889,1.7899619999999998,1.7899619999999998,1.6516466666666665,1.6516466666666665,3.11416,3.8363,2.9376599999999997,1.9559725,1.9559725,3.7992333333333335,2.9451433333333337,1.2591766666666666,1.475842857142857,3.0836799999999998,3.0497333333333336,3.926633333333333,2.629537857142857,3.3227499999999996,3.2291866666666666,0.674088,2.62815,3.563841,7.159633333333334,4.840505,4.811305,4.47375,3.46751,4.59908,4.586245,2.88893,4.446045,1.44019,3.256263333333333,5.8711,5.45595,2.69131,1.1297216666666667,2.958965,2.6466533333333335,3.1844433333333337,1.5592866666666667,0.7334642857142857,3.2607866666666667,5.108975,4.676885,4.39853,4.892785,2.9534599999999998,2.0239966666666667,3.322985,2.7511266666666665,3.3997333333333333,3.137843333333333,3.6293,2.5228966666666666,2.6790066666666665,3.5147666666666666,2.7752666666666665,5.2645,4.93215,5.0870575,5.0870575,3.21778,3.82719,3.718915,3.567075,2.645685,5.15845,3.180875,3.06101,6.139,0.7849241666666668,5.1397,4.899675,2.506743333333333,4.887830833333334,3.4064,1.7560333333333331,1.3813085714285713,2.524766666666667,0.9782719999999999,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.5356028571428572,0.5356028571428572,1.1554675,0.8359561111111111,1.6554608585858586,0.9901185714285715,0.9901185714285715,1.2255497474747474,0.42991111111111113,0.36685111111111113,1.196475,1.5328025,2.990396666666667,2.49349,7.258823333333333,3.1766799999999997,4.195855,3.5478083333333332,4.696408,1.2775683333333332,4.716085,4.37303,4.369745,3.409575,1.471234,4.009488846153846,3.505365,5.03195,4.600885,2.9294,4.402735,4.491075,4.571825,1.2149480000000001,4.072205,4.96839,3.31275,2.30124,3.23667,2.45072,3.13486,3.8419,3.1604033333333335,4.904615,8.597864999999999,3.1226,5.0223,4.58841,4.489005,2.8083766666666663,3.78195,0.9967628571428572,4.415265,3.155535,1.9386199999999998,1.07577375,2.747245,1.22786,0.5498166666666666,3.7901333333333334,4.188475,5.069190000000001,3.607466666666667,2.395315,3.397535,4.77331,3.8553333333333337,4.339165,2.574275,2.1774299999999998,3.95624,4.32628,4.25791,5.1391,4.55865,3.557975,4.797215,2.9892566666666665,4.59455,2.15743875,4.86269,5.2311,3.23459,3.9697,2.45425,3.66968,5.321,4.562405,5.47175,5.23535,5.0854,2.7205399999999997,5.34705,4.945535,4.700595,2.715475,1.003215,4.166725,4.81777,4.597105,4.83502,1.77778,4.487785,2.240215,5.17,4.685135,5.31755,2.3072875,4.53613,4.71818,4.53086,2.718446666666667,4.76214,5.11805,5.02905,3.784095,2.715475,2.281005,2.843925,4.589265,3.96753,4.30623,3.565845,5.1735,2.34514,6.7016,4.97879,4.402175,5.3135918888888884,4.80875,5.0903,3.4563274999999996,2.5104383333333335,2.5104383333333335,4.43699,4.15556,4.365945,2.2686375,3.2082162500000004,1.08582625,2.75296,3.10084,2.63732,3.3612333333333333,5.022,2.930563333333333,5.5375,2.7344633333333337,4.402085,4.61947,2.116145,4.089725,1.7051833333333333,2.7754766666666666,3.99507,0.905019,5.27555,4.918455,6.729055000000001,4.56529,5.46,1.2403499999999998,4.82923,6.41325,9.02072,3.2267266666666665,3.2589733333333335,1.9687480000000002,0.849734,4.1987,1.0191557142857142,4.50599,4.62134,5.0432,3.227395,4.182145,1.3240914285714285,3.579545,3.57077,4.2311,4.198075,4.68105,4.46748,2.685,4.72793,5.1943,5.91505,4.847705,3.587235,0.36554555555555557,0.36554555555555557,0.36554555555555557,0.36554555555555557,5.28565,2.76358,6.21855,3.16039,5.225,4.67513,3.68127,2.58048,2.4673933333333333,1.54622,5.52475,3.0146866666666665,3.92252,4.470765,3.30014,1.565085,1.14270875,4.54449,2.37459,6.788711666666667,3.853395,5.84735,2.15596,1.498055,0.8646811111111111,3.205005,4.76958,3.316255,2.14174,8.053715,4.147025,3.60103,2.3820799999999998,0.468733,3.47431,2.210805,2.10836,1.93616,3.430785,3.31685,2.607015,3.27002,2.957425,3.584895,4.63935,3.98107,4.361405,4.213985,5.731413333333334,0.648096,4.3875,5.75495,4.94206,4.4432,3.3558333333333334,5.4572,4.5342,4.38532,5.377345,5.4479,4.512295,4.40819,3.6975824999999998,4.53449,3.010065,8.66518,5.05755,4.343645,4.775015,4.825205,5.13215,3.824955,1.0975811111111111,5.981983333333333,3.54192,4.97684,1.4840799999999998,4.246405,4.200595,7.252933333333333,4.906305,3.02241,2.1451,4.30591,1.687272,1.180395,4.222685,6.1046,1.9507766666666668,2.2860066666666667,2.8489066666666667,4.224375,3.45996,3.66686,5.0655,2.30031,4.174675,3.674555,3.16097,3.5917333333333334,3.977645,2.830805,2.521935,2.2470575,2.35208,2.6609966666666667,4.25777,0.5546783333333333,2.482153333333333,4.40899,2.98734,3.6660333333333335,4.43086,5.93425,3.881495,17.317535666666664,2.56094,3.8105666666666664,1.656222,0.845,0.845,0.845,0.845,0.845,4.669495,5.01715,5.22595,9.404501999999999,2.54455,2.54455,4.55481,4.561815833333333,1.2162825,2.12169,4.189865,2.4795425,2.2811475,2.2514675,2.975985,3.846318,2.02927,3.875,0.8370285714285715,2.868323333333333,2.6706233333333333,3.028843333333333,1.7323733333333333,3.1739866666666665,2.584233333333333,0.937635,2.79335,2.772933333333333,1.1563,2.499756666666667,2.7414166666666664,2.20331,4.456047333333333,2.1069333333333335,3.0539,2.22524,2.7493233333333333,1.079691111111111,2.8495966666666668,4.890640666666666,3.4591,1.11825875,2.8678566666666665,1.2957125,2.732153333333333,2.695463333333333,4.642761666666667,2.9818466666666663,2.65123,4.796845333333334,2.74562,2.098565,2.75526,2.688413333333333,1.9234600000000002,2.83268,3.230176666666667,3.189413333333333,2.8229866666666665,3.2439699999999996,2.8383299999999996,2.4903625,3.8222815,3.8222815,2.8573566666666665,1.97508,1.8118699999999999,2.6469633333333333,5.53102,3.167456666666667,1.8861366666666666,1.62625,3.2849766666666667,4.47908,2.55467,0.986556,2.623216,1.51557,2.6713633333333333,2.2125533333333336,3.6336666666666666,2.04555,3.1633366666666665,1.177436,1.52321,1.4087699999999999,4.0591333333333335,2.5807466666666667,4.030455,1.0337866666666669,4.065465,2.0022699999999998,2.59345,1.7416519999999998,1.6813333333333331,3.3369999999999997,24.413754084415586,6.66953,2.6399,3.709055,2.4839233333333333,10.401447333333333,3.0968033333333334,0.99328625,2.5579466666666666,2.4378966666666666,2.3257533333333336,2.7433833333333335,2.6071166666666667,2.63848,0.961318,3.2250833333333335,2.6687833333333333,2.8778900000000003,2.9068199999999997,2.8073599999999996,2.016723333333333,2.1076366666666666,2.82659,2.4888,2.25852,1.668854,5.587065,4.788085,2.4874275,2.8766,2.18752,2.3081566666666666,8.065323333333332,1.8895433333333334,4.929655,2.151585,1.99735,7.46207,2.8968166666666666,2.7759533333333333,2.653325,1.819626,1.4714446153846152,3.3607,3.4934333333333334,4.272445,1.68014,3.7716999999999996,1.5591475,1.5591475,4.03205,4.55511,2.8218557142857144,2.8218557142857144,6.488553333333334,3.329425,0.410606,11.5657080006105,1.21618,0.9297757142857143,3.8614266666666666,1.4988781196581198,1.7294175,6.21528,3.701345,0.7395609090909091,2.116616666666667,4.97308606060606,2.6041250000000002,4.35239,1.3665242857142859,5.66255,5.18705,5.42635,3.72205625,2.0065,2.65209,2.64834,2.5980733333333332,2.2064399999999997,5.106103333333333,4.993985,4.90994,1.8379175,4.81841,3.92784,3.0966400000000003,2.43648,4.978005,2.838893333333333,8.215236666666666,7.1964925,1.9357925,2.60567,1.8381699999999999,4.468966666666667,4.468966666666667,3.3706,3.0602966666666664,3.1370649999999998,4.924405,9.46011,4.35324,2.4389475,5.5485,4.202555,5.22615,2.0458600000000002,0.84747,1.3182116666666668,4.478235,4.82105,3.7654,3.003906666666667,3.9294,2.0730866666666667,3.92137,4.381555,3.369265,5.8581,3.2303266666666666,4.0407166666666665,3.511533333333333,3.2440466666666663,3.526666666666667,6.2389,3.032125,5.5477,5.2404,3.1133,3.3605,3.3605,5.781376666666667,12.3127275,3.5744000000000002,6.14902,7.336495,3.52428,2.4311266666666667,3.812555,1.24301,3.66527,2.130835,2.9304,2.9482866666666667,3.385066666666667,2.15864,2.580103333333333,2.8586466666666666,2.9463899999999996,3.1658733333333333,3.087763333333333,4.11431,2.532966666666667,2.8592066666666667,4.08315,2.9616566666666664,3.0907666666666667,1.21314875,2.1085,2.92067,2.6436066666666664,2.5141633333333333,2.4142233333333336,3.735333333333333,2.48455,2.5180700000000003,2.8777266666666663,2.9812333333333334,2.9141366666666664,3.18938,2.6343466666666666,3.17128,2.76695,3.226712,2.6006233333333335,2.5225766666666667,2.3571433333333336,2.5541533333333333,2.53145,3.293113333333333,3.1827400000000003,2.521855,2.0250425,2.0250425,0.7007383333333334,1.645656,4.35029,3.10621,2.650113333333333,2.15864,3.4937,1.2987714285714287,2.873423333333333,0.5912906666666667,3.3144466666666665,3.2042533333333334,3.210895,2.9832633333333334,2.5583266666666664,2.7538866666666664,3.08827,2.59993,3.5140333333333333,5.107943333333333,1.54813,2.5191433333333335,2.401456666666667,1.7456333333333334,2.1502333333333334,2.9483099999999998,2.7957466666666666,1.7902239999999998,2.59679,2.65498,2.780303333333333,2.833223333333333,2.854293333333333,2.805336666666667,3.3634,1.4101725,2.956186666666667,2.3755466666666667,3.701333333333333,3.5334,2.023285,1.8998133333333334,3.4463666666666666,2.76009,3.451233333333333,2.56248,2.68927,5.137085,3.06935,2.1017,1.566178,3.3037566666666667,6.115119999999999,2.9626,3.403233333333333,2.844196666666667,3.287546666666667,4.601253333333333,1.56911,1.261388888888889,2.9168133333333333,1.9269808333333334,4.77051,3.1474966666666666,3.325223333333333,2.91487,3.283,2.56411,3.4882000000000004,2.3837325,1.662812,3.0466833333333336,3.35222,3.7329749999999997,4.069985,3.91369,1.5812625,2.645605,3.259,3.389765,2.5197433333333334,3.5544333333333333,4.051266666666667,3.8430666666666666,1.475515,5.683033,3.2740712500000004,1.5949716666666667,3.511215,3.396,2.997015,3.93503,1.833002,1.833002,3.20591,2.8934366666666667,3.75196,5.3265,4.200735,4.565868666666667,1.258332,2.979033333333333,2.5994366666666666,4.041017500000001,2.9882866666666668,4.738375333333334,2.7503733333333336,2.3115966666666665,2.593856666666667,3.355095,4.79765,1.6501000000000001,3.0827500000000003,3.28389,2.3494,4.781005,1.2550966666666665,3.91672,4.43167,2.588255,3.44078,4.11616,1.6022825,1.5766799999999999,2.5574,1.1722166666666667,2.2148409523809525,2.1399125,0.4220371428571429,4.50322,3.255625,4.43759,4.285775,2.7537,4.514765000000001,3.2247266666666667,3.294643333333333,3.5941666666666667,2.5210333333333335,3.2480166666666666,3.00543,3.3094900000000003,2.2310866666666667,0.6707807692307692,2.2570333333333332,0.6514878571428572,1.8794633333333335,2.4793866666666666,3.16903,3.082663333333333,1.4801866666666665,1.53155,3.945385,4.547,3.57576,3.3071624999999996,3.30093,2.0343825,4.070005,7.698028888888889,3.84923,5.8293800000000005,1.4466175,3.922605,1.88749,4.03805,4.006745,2.163905,4.021145,3.216365,4.005335,4.102675,2.1534175,4.076125,6.4525375,5.4193,3.38596,3.408875,1.563245,2.0336425,3.89639,3.47874,3.033915,3.60022,3.710235,3.86639,1.8049425,3.860995,3.405625,1.906945,4.496924999999999,0.9402916666666666,3.80341,1.6398425,4.341575,4.684525,3.70116,2.704645,3.93467,3.46542,2.170555,2.294215,3.7914999999999996,2.39652,5.8032449999999995,4.17721,4.438525,2.745665,2.77721,4.68968,4.20428,2.400066,2.400066,5.938406333333333,3.9483505,2.7528525000000004,3.101445,2.175333333333333,2.80379,3.503905,3.698365833333333,2.710248,3.630135,0.9348979999999999,3.90633,2.991455,3.98299,3.077375,1.521985,1.57833,3.31936,6.115086,5.4209075,3.387265,1.415985,3.890095,3.629515,0.8231616666666667,3.13694,1.151488,5.8370774999999995,1.5116833333333333,4.29108,2.058275,1.4801866666666665,3.22042,2.993255,4.33802,7.122465,4.51013,4.9029058333333335,2.64155,2.945025,4.83457,3.96778,4.77124,4.341935,0.9293775,1.7503115,1.1723775,2.45474,2.002245,4.55098,1.1723775,4.954005,2.324025,1.4341675,1.4341675,1.906945,4.06213,4.543525,4.14434,1.708334,1.708334,0.9575816666666667,3.22642,2.0742075,5.9164925,4.51569,3.56624,2.9712533333333333,1.0473014285714286,3.551595,2.677355,4.24677,3.82207,4.23798,4.23798,3.386575,3.997775,2.01834,2.495285,0.9793133333333333,2.17092,3.689585,2.5122966666666664,3.4508666666666667,3.4508666666666667,2.71803,4.724955,4.68284,3.27285,3.556925,4.239795,2.5801766666666666,4.569614166666667,2.911695,3.92793,8.957844999999999,5.0571,2.78188,3.13079,3.29071,5.0732,3.167922,7.186395,4.548563,4.473355,3.417055,3.80197,3.9577,4.602895,4.71781,2.38501,4.17803,6.335228333333333,2.596815,1.9816828888888889,2.93915,3.35792,3.54288,4.776445,2.26735,2.3155566666666667,2.8569,3.0762025,2.7072033333333336,7.249934666666666,1.5217,4.843563333333334,4.843563333333334,3.57401,3.8592733333333333,3.064505,2.578793333333333,5.54961,4.418721,2.144762666666667,3.828645,4.20528,3.3684275,3.21523,3.223605,6.3942499999999995,3.219015,5.2191,2.708975,4.48737,4.143715,3.85482,2.8934366666666667,2.0596633333333334,2.680725,4.316285,2.82052,2.92115,2.901735,6.381626666666667,2.603285,1.9413825,3.4516691666666666,2.52062,4.03615,2.69284,0.8231616666666667,3.267065,4.060145,3.85012,5.7896575,2.999975,2.669905,3.0257233333333335,3.0257233333333335,3.670975,4.44679,4.010275,2.0824375,6.51169,2.0404975,4.500395,3.785775,7.68172,2.7912466666666664,1.3015433333333333,3.58005,4.26663,0.71780375,3.879645,3.016415,3.012945,3.035815,4.574815,1.9463566666666667,2.46511,8.944795000000001,3.413945,2.726225,1.5116833333333333,3.28587,2.67842,2.4331725000000004,4.011045,5.154255,1.70822,1.2195183333333333,1.056265,4.13725,3.95167,3.48754,3.7215175,3.7215175,1.8049425,2.26023,2.9447288888888887,0.8594788888888889,2.794995,1.139115,1.5812625,3.107955,3.591325,2.459725,2.54701,2.4188850000000004,4.20263,3.74891,3.101375,3.017875,2.54097,4.24708,6.455335,3.98933,0.896125,2.5455735,8.53443,4.70279,3.848275,1.0558575,4.829678333333334,1.3750683333333333,3.3455425,3.3455425,3.493085,8.611011666666666,0.8348888888888889,4.680395,4.690175,2.0658766666666666,4.057949166666667,4.500945,2.1804675,9.953687666666667,1.8534725,2.2345866666666665,2.956205,1.6708366666666665,4.220958916666667,3.286415,3.530385,3.4310359999999998,3.174675,3.703745,1.1403466666666666,7.16282,4.067335,4.35034,4.21565,1.9500825,2.704645,3.628461666666667,3.9787,0.6655915384615384,4.568595,4.61135,4.952405,2.0152375,1.4071859999999998,4.480345,4.202875,8.32083,0.6403838461538461,1.0750575,1.0750575,1.63698,1.37399,1.323988,1.6974633333333333,4.786005,1.1627033333333332,0.8509671428571428,3.93124,3.55011,1.2853775,3.54275,4.6264,3.63498,0.62488,1.89989,10.315215,3.192845,3.629275,2.786465,1.563135,2.4028266666666664,2.774105,4.52073,4.30579,3.895685,0.8914785714285715,1.480692,0.914614,4.5694475,4.228295,3.97146,0.8594788888888889,1.8029579999999998,3.953575,2.1719585714285716,5.2102691666666665,1.0655725,4.67025,0.5720283333333334,0.5720283333333334,0.5720283333333334,10.045415,4.039975,1.139115,3.782125,4.489835,3.41159,3.483055,4.251855833333334,2.737565,1.9494727777777778,2.078256666666667,0.62488,1.4480416666666667,0.5158111111111111,0.771115,1.2095766666666667,3.46217,3.914725,2.1895575,7.3966666666666665,4.773344166666666,0.6532488888888889,5.6114,5.205633333333333,3.849205,4.648115,7.565635666666666,3.711788869047619,4.773344166666666,4.506594416666666,2.4571866666666664,4.31311,3.5763,6.8016499999999995,3.40655,0.468733,1.3284340000000001,3.803545,1.6632799999999999,1.2195183333333333,4.052245,2.2962766666666665,1.69417,3.32881,1.630648,4.404955,4.21676,4.10124,4.629825,6.48863,2.838395,3.9787,1.151488,2.326235,3.86625,3.09511,2.144762666666667,4.16105,2.456405,4.81205,2.799855,2.29915,3.404395833333333,1.755236,3.933935,0.8594788888888889,2.17796775,1.056265,1.882225,3.40069,1.5217,1.2095766666666667,2.3612325,3.075285,7.72012,0.8914785714285715,1.0558575,1.306602,3.598985,4.07903,1.306602,3.916295,2.326235,0.71780375,0.8594788888888889,1.63698,1.151488,0.4220371428571429,1.5989499999999999,4.081833333333333,2.0658766666666666,1.4070066666666667,2.986155,1.475515,1.8534725,2.6390883333333335,2.078256666666667,4.49192,2.6390883333333335,0.8231616666666667,2.665095,2.617525,0.09768181818181819,0.09768181818181819,0.09768181818181819,0.09768181818181819,0.09768181818181819,3.491766666666667,2.70264,2.6974633333333333,2.9642733333333333,4.981035,4.03266,1.7416519999999998,3.58538,3.455765,2.11245,5.15846375,2.57165,2.37449,2.40211,2.615905,4.44221,8.140496666666667,2.4878,2.06854,3.1215014285714284,0.9797714285714285,1.36447,2.24147,1.8902400000000001,1.4734425,2.660016666666667,2.2749533333333334,2.437116666666667,2.6885499999999998,2.659333333333333,4.006255,3.681205,2.624093333333333,1.213268,3.70852,3.70794,1.5021566666666668,1.3521079999999999,1.3521079999999999,1.3521079999999999,3.694435,2.757846666666667,1.0417699999999999,2.1918433333333334,1.2762414285714285,4.31598,1.5772633333333335,6.907426666666666,3.2648625,2.9783566666666665,3.1893659999999997,3.1893659999999997,5.507326666666667,2.961995,4.6294,5.22335,2.3649075,3.2567766666666667 -GSM1946762,0.0,1.9843175,1.9843175,1.6241933333333334,3.79537,6.2397,2.3776709210526317,1.7151966666666667,7.154597990196078,4.42427,3.0679,2.930095,2.458675,3.368975,4.1721,1.8113920000000001,1.494402,4.8683,2.58344,2.2488625,4.331525,5.296605,3.80913,2.238825,1.731962,3.94587,4.33813,4.3736,0.6160616666666666,1.5468055555555555,1.7574972222222223,1.8593125,1.538525,1.0998228571428572,0.6937016666666667,3.086842857142857,1.5561175,1.78045,1.1596825,2.121415,1.040165,1.0613,1.0832760000000001,1.476384,0.9176439999999999,0.9268000000000001,0.7625040000000001,1.1988257142857144,1.56156,1.837892,1.511378,1.956418,1.674964,18.221629166666666,0.381824,0.82241,1.094124,1.82938,1.417014,1.759808,1.0794614285714286,1.0794614285714286,1.0794614285714286,1.180355,0.965916,4.6008325,1.0689425,2.2939775,2.00614,2.3448475,0.925831,2.136305,2.1979725,2.03652,1.422575,2.0790125,1.6024225,1.725455,2.4989433333333335,3.682115,4.80809,5.38945,1.7874533333333333,4.383545,4.431715,4.15102,4.231115,1.06918,7.59537,0.611959375,0.611959375,2.235625,1.0374357142857142,15.686005000000002,4.92462,5.29825,5.7782,4.339295,4.250735,5.2183,0.4587794444444444,2.3255974999999998,1.802365,2.274055,4.36326,3.51834,1.5277375,3.2364266666666666,3.7891999999999997,3.07208,3.4820333333333333,3.579395,4.408715,2.7750440000000003,4.285265,2.9347066666666666,0.7185163636363636,1.7286059999999999,2.582925,4.97882,3.44367,0.530118125,3.594695,3.71597,0.79829375,4.509395,1.7194602597402597,2.133145,2.723975,2.10613,3.862935,5.80035,3.46263,2.67252,3.3334333333333332,3.0676400000000004,4.08048,2.8901533333333336,5.4744,3.48981,4.35659,3.16512,2.478975,3.73325,2.35838,6.938794999999999,3.52298,3.39398,5.861,3.131125,4.787385,0.7825044444444444,9.580272857142857,3.58528,1.8706866666666666,1.8850916666666668,3.086516666666667,2.52444,4.39707,5.51115,2.18103,5.104585,2.76806,4.295415,2.18103,2.9964566666666665,4.434155,5.236539166666667,3.49887,9.144833333333333,3.674845,5.01205,2.953075,4.932475,4.412775,1.7723166666666668,8.54246,4.246615,4.12566,3.740455,3.771605,3.339905,2.18801,6.169205,2.301685,3.874775,4.01992,4.95631,4.780575,3.200895,1.31904,2.797295,2.828895,1.8811825,1.8811825,5.986812047619048,3.099645,1.8744233333333333,4.354905,4.44876,2.72047,1.5042466666666667,0.7936977777777777,6.95725,2.981815,6.919,2.983675,3.87047,3.80821,3.224585,3.92206,3.550735,3.974165,4.08632,5.64355,2.891065,3.69729,9.111113333333334,4.610705,3.5299333333333336,3.096956666666667,2.74781,3.8698,4.342443333333334,1.82083,2.6562733333333335,2.0366933333333335,1.7087499999999998,1.7627433333333336,2.6969133333333333,1.7260625,1.7960475,2.846106666666667,2.5998466666666666,2.3663933333333333,2.7617833333333333,4.431715,3.518485,3.24542,3.43641,4.37874,1.1796200000000001,2.19609,2.898117142857143,1.9849640000000002,2.5742499999999997,2.19744,3.4,1.60895,1.3182733333333332,2.6705,0.660796,1.6160866666666667,0.5241766666666667,0.5241766666666667,1.4710666666666665,2.5894933333333334,2.1319733333333333,1.2587066666666666,1.5763033333333334,0.3043176923076923,2.791793333333333,0.660796,1.24458,0.19092297297297298,1.4888466666666667,2.0702225,3.5932999999999997,1.9692133333333333,2.134236666666667,2.5707666666666666,2.28595,2.4345133333333333,2.5576766666666666,2.3505266666666667,2.230523333333333,2.679233333333333,1.9772833333333333,2.74766,4.18207,0.6968683333333333,1.7858866666666666,2.5861933333333336,1.9184866666666667,3.4628799999999997,1.5144980000000001,2.6561966666666668,2.2034566666666664,4.36228,1.9944633333333333,7.325166190476191,1.6109428571428572,2.94342,2.1532525,1.96029,3.1784,1.8540675,1.92701,3.97195,2.5871333333333335,2.074625,3.83713,4.03042,4.41525,3.76695,2.322565,3.314365,4.278394,3.907435,3.97603,4.11167,4.31729,3.046975,4.43009,3.55198,0.91156625,4.788915,1.2581816666666665,4.792425,3.896345,5.798799000000001,3.828695,4.388645,0.9776725,2.243835,3.53348,4.17736,0.7994971428571428,1.1331225213675213,2.090467380952381,3.5603797142857143,5.35023,5.572046,2.162615,2.88939,4.98767,0.33881,3.48505,2.50982,0.98416625,4.74842,2.058965,11.279465,1.19617125,1.315015,1.8640266666666667,2.406865,1.921111315789474,4.435611315789473,0.3333463157894737,1.6987500000000002,2.9102033333333335,1.032135,3.7573333333333334,1.07022,5.13725,4.025835,2.1158266666666665,6.21845,5.66075,3.03065,1.1390814285714286,4.466685,5.2139,4.305785,0.8516263636363636,7.519293333333334,2.6916933333333333,4.42556,2.634446666666667,2.49384,4.44355,2.2995666666666668,2.4982466666666667,2.136913333333333,2.4804333333333335,3.16383,2.91638,0.350674375,3.94599,3.78072,3.86416,3.905895,4.55792,5.9920800000000005,4.146775,1.667815,5.6533,4.29286,4.525145,4.160485,1.0185083333333333,2.6602799999999998,3.0131666666666668,2.29507,16.349205,3.280115,3.971295,4.360265,5.68295,2.722705,5.1193502777777775,1.692325,0.7895255555555556,2.6763,3.260065,3.410215,3.83229,6.326671666666667,2.8014966666666665,2.353015,2.188905,3.30227,4.713675,2.3213875,0.36190254464285715,3.367120434782609,1.9396775,1.1529775,0.5301377620341615,0.6983729794254658,0.36190254464285715,0.36190254464285715,0.36190254464285715,1.1088075,1.2943275,1.0066125,1.5334275,4.3354125,0.22288088235294118,11.07915948051948,3.7334333333333336,2.7714766666666666,3.986365,3.917685,3.86256,2.21085,4.53715,3.869985,3.99031,3.89649,0.6694092307692308,3.330023333333333,4.169182051282052,0.53405,3.625365,2.6867099999999997,4.338825,0.48554363636363634,1.77345,4.5699,3.441465,1.8143225,1.8627200000000002,1.5096,3.1644433333333333,4.03003,3.076055,2.82869,5.7326,5.4519,4.81372,3.3379999999999996,3.383395,6.640733333333333,3.6924333333333332,4.79774,0.41883238095238096,2.9932966666666663,3.925335,2.07794,2.671515,2.9064474999999996,5.339746666666667,0.5900258333333334,2.851275,4.20714,4.34659,1.0570185714285716,4.73203,2.76941,4.638645,3.11338,4.165595,3.48504,4.37688,1.1633716666666667,3.415575,2.851036666666667,4.676435,4.0528,4.58751,5.80105,4.63802,2.76438,5.01364,2.4310766666666668,2.84981,3.084213333333333,2.501726666666667,2.5517066666666666,2.2810366666666666,1.712854,1.5589966666666666,2.04977,0.7891628571428572,1.4010433333333332,2.0409466666666667,1.9870633333333334,2.95266,3.21557,2.62745,0.9040877777777777,5.268,3.380433333333333,5.256635833333333,2.5527125,3.0623766666666667,2.9150233333333335,1.7072666666666667,1.7072666666666667,2.594051818181818,2.594051818181818,3.5046975324675325,0.5340157142857143,1.7825966666666666,2.1417333333333333,3.7449333333333334,2.179446904761905,2.179446904761905,2.179446904761905,7.381619226190477,4.369880952380952,0.9633363636363637,2.301375,4.9031075,2.406095,4.669205,3.27562,2.314315,4.02313,3.018853333333333,2.94643,1.109515,1.9499433333333334,3.5167333333333333,2.1466566666666664,2.5386633333333335,5.68695,4.250900000000001,3.8502666666666667,5.100783333333333,1.9816166666666666,2.7693166666666666,3.0234199999999998,0.94498,2.2448266666666665,4.682897333333334,8.02712,1.55597,3.054425,4.711885,1.750008,1.755165,1.755165,0.913895,4.57121,7.319905,3.990265,5.336983,4.284405,1.7379,3.751035,3.036325,4.48346,4.999843333333333,0.3675342105263158,2.948075,2.513285,3.81218,3.782295,1.8219239999999999,1.93163,2.480165,4.21771,4.174255,2.976775,2.54739,1.3498459999999999,6.65498,5.17835,4.63029,3.398285,5.34715,4.669755,4.35865,3.72289,3.8881525000000003,2.0271,1.063062857142857,2.725035,4.11955,3.8334,5.9152525,5.6511499999999995,2.44768,1.7152666666666667,2.798883333333333,2.8370933333333332,3.0654566666666665,0.697992142857143,2.07279,3.79205,1.10551875,4.87174,3.233915,6.2466099999999996,1.3577851515151516,1.3577851515151516,4.054375,3.808965,3.898735,5.6003,2.7990866666666663,2.2851,4.010295,2.949775,2.13504,3.3782,2.409796666666667,4.217965,3.285675,3.75636,4.47283,1.0828155555555556,2.611945,4.223195,4.68298,3.282,2.5787133333333334,1.572645,0.7881944444444444,0.7881944444444444,0.7881944444444444,0.7881944444444444,1.558646111111111,3.7065650000000003,3.7065650000000003,1.6941033333333333,6.515525,3.09442,4.21511,2.9373133333333334,2.76505,4.780205,4.02427,4.68027,5.16475,1.7678225,3.92509,3.620535,2.59438,3.047605,3.441855,2.52916,3.897515,1.75974,4.73209,1.6521,3.4025654166666666,3.093145,1.795045,1.1686933333333334,2.81099,4.354025,1.206636,0.8502144444444445,3.365275,1.3239825,4.79047,4.373455,1.2786557142857142,3.50944,0.7540066666666667,2.6005366666666667,2.4848266666666667,2.34867,2.62797,3.829345,2.771681666666667,4.60237,5.5499,4.371195,4.336505,1.9674,1.2656485714285715,3.99974,4.802545,1.3902325,1.3902325,4.11094,0.27060399999999996,2.5776600000000003,0.27060399999999996,0.27060399999999996,0.27060399999999996,0.27060399999999996,5.13785,2.69196,2.95697,3.78711,2.997866666666667,4.313165,2.5944933333333333,0.9371075,0.9371075,0.9307683333333333,0.9307683333333333,3.8697,1.888305,4.5148,1.49295125,1.49295125,4.92968,0.5242128571428571,2.70615,7.45571,4.69333,3.32991,3.27077,0.90765625,2.32029,1.9281825,4.28127,4.04847,4.081885,4.009715,1.3062742857142857,2.73864,1.8976375,7.66266,1.79867,4.501505,4.52206,2.96149,3.923135,6.34483,7.76032,4.02169,4.33563,4.10077,2.4003625,3.204815,2.308425,2.338015,1.855765,3.953685,3.41488,5.425201666666667,6.25606,4.040115,1.1238766666666666,2.360785,3.42899,3.723325,2.1777475,3.98537,3.0533,4.7099,1.7580933333333333,4.068366666666667,1.5388566666666668,6.416493333333333,2.86998,2.4355599999999997,2.32964,2.283765,3.4194666666666667,3.24637,3.2193733333333334,2.687836666666667,3.30282,2.33372,2.997985,3.095045,3.17193,0.38611650000000003,2.957285,3.66361,2.594275,5.42805,4.92988,4.533935,6.686781,4.52083,2.244823333333333,4.008865,5.2687,1.5658783333333333,4.342235,5.5678,5.25945,4.571455,3.224525,5.35585,4.91049,3.695285,5.309621333333333,7.394995,3.98907,1.1431516666666666,1.4049183333333335,2.56588,1.783486,4.38248,3.96605,4.683612500000001,2.5526666666666666,2.460996666666667,2.7120433333333334,2.4260633333333335,2.12888,0.9879833333333333,0.5129282352941177,3.625745,4.140065,3.632433333333333,4.1172,2.98676,3.3197799999999997,5.227378333333333,2.966756666666667,0.5739058823529412,3.0408,5.32755,1.6769175,1.6212620000000002,3.808595,3.23195,2.548713333333333,3.6344,3.69487,2.6993566666666666,2.2531666666666665,2.3322533333333335,2.50677,2.77714,4.255573333333333,5.162777500000001,6.0618636666666665,1.365784,4.522125,3.1644629166666665,4.852846583333333,2.3389266666666666,3.156295,2.322325,1.6873733333333334,1.4635475,1.4635475,2.721276666666667,2.3749233333333333,2.8085533333333337,3.87845,1.6751740000000002,2.259315,1.951405,0.40962375,3.49281,0.5582775,0.8442975,3.519065,3.66731,3.69672,1.7078325,4.519475,3.0628233333333337,0.7353071428571428,4.168875,3.7228585714285716,3.1889466666666664,2.514445,4.967075,0.26369827586206895,2.1528816666666666,3.18318,1.4726225,3.737425,6.6073,2.39978,1.4399666666666666,4.145955,3.87751,2.785246666666667,2.785246666666667,3.612125,2.461295,4.46081,5.610133333333334,5.01995,0.9522788888888889,2.74765,2.39256,4.33306,4.974235,5.40485,4.78302,4.3649,3.811866666666667,3.6674666666666664,3.558066666666667,4.075633333333333,2.96583,3.02376,0.577512857142857,2.26721,2.345775,3.563295,2.8538266666666665,3.18506,0.7331175,2.997555,3.9512944999999995,4.74471,5.7553,5.1372,1.7846575,1.7846575,0.7908229999999999,3.00358,4.608745,3.595155,4.07784,3.18824,4.424855,0.5709072727272727,3.03284,3.596875,4.3491,3.991181666666667,0.8147557142857142,2.68985,3.91839,5.504,3.868825,4.851035,2.79962,4.14153,1.5192175,0.9935642857142858,2.7070866666666666,5.3231,4.51592,3.150305,1.425795,3.95322,2.448165,2.525075,2.7965675555555554,3.022906666666667,4.691176666666666,3.10113,1.869892,3.3839333333333332,1.4911670238095238,2.9444533333333336,2.5316033333333334,2.32852,2.83656,2.9713999999999996,2.25163,2.7850866666666665,3.661585,2.94197,3.591895,2.3130966666666666,1.767365,4.128323333333333,3.04979,2.4463266666666668,3.591895,2.0541199999999997,0.7781572727272728,2.344085,1.0212244444444445,2.2308875,1.47649,0.9457636363636364,1.6081375,1.60537,2.72760625,2.6257,4.474425,1.5670325,4.99935,3.018053333333333,1.6186440000000002,2.2914133333333333,2.4429166666666666,1.67584,2.59877,2.7359266666666664,2.519379318181818,1.9677075,1.7927779999999998,3.6417,2.26152,2.8576361111111113,3.3100466666666666,3.0405833333333336,3.4736333333333334,2.050003333333333,4.058433333333333,3.506933333333333,3.7033666666666663,2.7769333333333335,3.4941333333333335,3.6748333333333334,1.7590766666666668,10.56475,3.95084,4.158315,3.34615,2.76947,2.05017,4.02761,1.6222660000000002,3.996445,4.17356,1.371572,2.48107,1.1128500000000001,2.2804233333333332,1.65949,2.32945,4.8932883333333335,3.1661266666666665,3.76306,4.819075,0.72839,1.4094760000000002,0.960551,3.587615,10.131408333333333,3.4037333333333333,6.75915,2.0745425,5.2133,4.08791,2.4466,4.83443,0.30329117647058823,0.8488242857142857,4.603465,4.06991,7.344735,1.966985,4.421785,5.7541,4.691175,4.59126,3.378495,4.29729,3.325155,5.810598333333333,3.450515,3.090575,2.990175,2.0869466666666665,1.9142400000000002,1.404414875,2.4971166666666664,4.11041,4.65359,1.567118,9.3814,1.8456966666666668,2.8972724999999997,0.956342,0.956342,6.99758125,2.911525,2.3466075,2.2214925,2.529593333333333,2.1858633333333333,1.2115533333333333,3.536505833333333,2.630133333333333,0.6086185714285713,1.7495,3.373202,3.373202,1.1518266666666668,2.5854399999999997,2.2768366666666666,2.589293333333333,1.350305,1.77803,4.604188,2.5994266666666666,2.62385,1.244665,1.244665,3.687895,5.86155,4.23013,3.27724,3.894695,5.56776,2.82651,2.91676,2.9623066666666666,4.126485,1.1581316666666666,3.15526,2.572275,3.828065,2.1851066666666665,4.934165,3.5506,4.39176,3.57076,5.491759999999999,0.9108399999999999,1.891215,1.776205,3.731205,4.18319,3.699965,3.815295,3.456925,2.47578,1.7338775,4.228755,3.359435,3.340475,2.5280666666666667,0.83798,3.37802,4.1451,4.70041,1.2228833333333333,2.7179066666666665,2.286233333333333,1.7952599999999999,1.7821909803921567,1.7821909803921567,1.1985633333333332,1.96396,1.13629,1.3794119999999999,4.349985,4.25937,0.47585142857142854,3.505145,3.5887333333333333,3.907555,5.2774,0.415949,9.303294999999999,5.4118,2.7302,3.90312,4.46598,5.372150714285715,4.954685,6.81649,0.6682554545454545,2.5968466666666665,5.2868,2.6692066666666663,1.69435,2.0274,4.40076,5.0228762499999995,2.450450714285714,3.6169666666666664,2.913156666666667,1.7988275,4.259435,10.47115,8.15292375,3.9931,4.448315,3.10629,3.305345,3.938185,1.8525459999999998,3.1446799999999997,3.726595,4.48611,4.669745,4.97836,6.605513333333334,2.0184366666666667,4.860465,4.461835,4.96169,4.35781,7.384538333333333,3.9791074999999996,5.8093,3.511285,2.9049,2.98518,5.79845,3.703495,4.856835,2.144825,3.1173566666666663,3.375445,5.6445,4.13414,3.41032,1.501134,0.92595875,2.3120475,0.5349533333333334,3.843365,3.64975,3.60607,2.84845,2.1263833333333335,2.957475,2.670475,3.0945240000000003,1.9399260000000003,3.1185287500000003,2.828625,2.2284825,2.61155,3.834452,1.2671816666666667,2.7919466666666666,5.0875,3.8844666666666665,1.185455,2.907723333333333,3.6872808333333333,3.712664,1.5425875,5.59135,5.12795,2.1112266666666666,2.9952966666666665,30.21287507069401,3.381266666666667,1.7565,3.937666666666667,1.6031066666666665,2.62162,2.9620833333333336,3.3485666666666667,2.022265,2.75225,1.757125,4.257595,3.2868666666666666,2.45586,1.47456,2.29652,2.876,0.378035,1.1478325,2.808073333333333,1.552502,3.397735,1.5425875,1.9514666666666667,25.291330000000002,5.09515,3.6212,3.57897,2.47487,2.4757225,2.55773,2.31092,3.4362,4.816327,5.3148,1.585382,1.635568,2.13262,2.2487083333333335,3.7899575,5.20455,4.65993,4.36069,0.16991021276595744,4.92503,4.7707925,3.853735,8.61723,1.0861325,1.0861325,2.9763966666666666,2.836045,5.57045,1.869731111111111,0.9730777777777777,4.479785,1.8949775,4.082685,3.85794,3.375365,4.035035,3.98177,4.93269,3.014805,0.7122233333333333,3.20037,2.2454091666666667,4.267085,7.817435,4.16115,1.6430766666666665,1.6430766666666665,6.86156,4.541285,4.271775,5.04845,2.2617833333333333,4.989474166666666,1.3613966666666668,1.50776,3.07231,2.41939,2.971705,2.7802466666666668,4.002155,4.3869925,3.853525,5.5456,2.2682775,2.80585,1.8760075,2.5641,2.4638675,1.9884525,2.177645,4.882511666666667,1.79503,3.500179523809524,2.443093333333333,2.8859100000000004,2.6814366666666665,1.7444333333333333,1.4278128571428572,0.952718,2.47857,3.944433333333333,0.6975629999999999,4.491325,1.761895,5.798595416666667,1.9170175,1.607155,1.45809,1.4624300000000001,5.606061666666667,1.866286,2.976483333333333,3.6344333333333334,1.188155,1.7335725,5.035344,3.2132966666666665,1.9492233333333333,3.4943000000000004,2.69413,2.7433666666666667,1.27627625,0.2575716666666667,0.2575716666666667,0.2575716666666667,0.2575716666666667,0.2575716666666667,3.54673,2.6980166666666663,2.6272,3.4236,1.4761533333333334,2.72458,2.9624966666666666,2.11635,3.575635,2.9824,1.7175566666666666,2.9466066666666664,3.2065,2.094855,2.0115875,3.75439,2.7675,3.8373000000000004,4.920145,2.5959066666666666,2.6162633333333334,2.526333333333333,10.828365,4.34574,4.29314,4.852935,4.179995,2.9675333333333334,5.1742,3.89396,4.513495,5.293193333333333,3.68128,3.027755,2.205035,3.277595,4.791174428571429,3.32986,16.951241928571427,1.05016875,4.17768,0.8694144444444444,1.2794125,2.788875,4.51451,4.297605,4.62065,1.5857266666666667,2.40101,4.2819,1.8766566666666666,4.564665,3.028788214285714,2.5568466666666665,0.6345983333333333,2.8803466666666666,4.696295,2.371525,2.36769,2.1325275,20.176878333333335,1.184982,1.371525,2.6564866666666664,0.27927115384615386,1.83584,2.8252466666666667,1.91446,2.9144733333333335,2.641275,7.1994325,1.92862,2.500375,2.25055,2.04704,1.5938016666666668,3.1914533333333335,3.18029,3.912855,2.97273,1.89847,2.6933070833333335,3.079901111111111,4.999165,0.42517333333333335,3.8043,3.0203,2.998035,1.9003275,3.647582,3.623055,1.5809133333333334,2.3652,2.1952966666666667,1.5079533333333333,1.7939100000000001,3.383395,3.393355,0.7959583333333334,3.41421,4.724195,4.013395,2.26978,2.26978,2.9929566666666667,4.042395,3.277875,3.387555,2.367475,0.8519436363636363,4.1426,3.67107,6.0658,3.6538,2.4088139999999996,2.4088139999999996,1.248685,3.494935,4.977835,4.33753,4.256575,3.0444633333333333,2.2394700000000003,4.349335,3.142375,4.020775,2.7947733333333336,2.084286666666667,4.255753333333333,2.91174,2.70724,1.9297633333333335,3.438735,2.584675,1.75819,3.807655,3.013975,4.291375,3.6309,5.2172,4.22089,6.138086250000001,3.93383,2.00406,4.39254,2.37983,6.89902,2.4458333333333333,1.15928,4.45963,3.7626333333333335,4.704335,0.54415,0.8060691666666666,3.559475,3.5918,1.9845375757575758,4.38411,2.998915,2.938845,8.608262,1.888072,1.251562,3.65942,2.64121,3.490365,5.0296,6.432684999999999,3.2373149999999997,2.146646666666667,2.8691333333333335,1.8064533333333335,3.1317799999999996,8.38003630541872,0.9448295238095239,0.98989,4.367415,0.45203133333333334,1.572585,2.0024675,2.996325,3.089,2.964075,4.72992,2.255215,12.353584999999999,5.14162,2.5414,2.5414,4.15679,0.8666333333333333,4.524190000000001,3.82764,4.225285,5.449401666666667,3.515285,5.73175,1.4099199999999998,2.74222,2.736595,2.647355,3.032595,2.663065,3.16461,3.602775,3.64598,3.05721,2.84586,3.01829,3.93533,4.146905,2.8196499999999998,3.213616666666667,4.664838333333334,4.247235,17.612046785714284,11.266453214285715,3.0668785714285716,0.6879883333333333,1.4587571428571429,4.53939,3.460635,3.0213558974358974,1.75225,0.8481611111111111,0.6448333333333334,0.6442128571428573,2.034495,1.586134,5.373463333333333,3.1335266666666666,0.7188863636363636,3.44676,2.36879,1.6625975,1.6784579999999998,6.717409999999999,1.563236,4.381675,2.666895,2.90775,2.31072,2.667173333333333,2.6011366666666667,0.7293172727272726,3.15815,2.8734033333333335,4.032792,3.01676,4.749925,3.78692,3.38245,2.503125,3.386525,5.901517500000001,2.007595,2.428255,2.4140875,1.60201,2.4615825,2.045365,2.75285,0.8680580000000001,1.35491,0.978705,3.094895,4.330025,6.1729,5.3464,3.1856,2.410975,2.764575,3.2105099999999998,7.178459999999999,1.2140199999999999,0.37796375,2.914845,2.08409,1.474294,3.427046,1.289704,1.7380426666666666,3.7292199999999998,2.724376,1.2418533333333335,1.86057,3.7888349999999997,3.695255,4.25914,3.849655,1.8955625,4.779145,3.766625,0.7598592307692308,4.605345,3.96915,4.357975833333334,3.224266666666667,2.4937,1.342338,1.159105,3.605555,2.61247,3.385375,3.81373,2.69542,2.8114500000000002,3.295275,3.854545,4.28012,2.45542,2.81568,4.24839,5.55525,0.53888625,4.567025,1.83846,3.57263,4.1372,1.8120075,3.19664,2.2403825,2.00694,2.532815,2.419313333333333,1.7670000000000001,4.414995,3.627805,1.2641428571428572,7.27631,1.0452333333333332,3.526215,1.7166966666666665,4.55389,3.95238,3.294093333333333,3.167735,4.18652,8.51266,2.92922,3.694445,3.60385,3.68435,1.7345,7.8582,3.63439,3.77878,1.791685,4.273515,3.075005,0.9641175,2.0463999999999998,4.171025,2.239025,3.957005,5.1484775,4.11051,4.5093,2.1073175,5.2441,3.97821,3.3815000000000004,2.2565933333333335,1.355652,4.12544,5.95995,3.82138,4.73306,3.129545,2.1343,3.955255,3.26973,1.1773059890109892,4.27608,4.786598333333333,3.9387,2.76832,3.66769,0.4730314285714286,0.4730314285714286,4.277465,3.90122,3.482485,2.214105,3.66646,6.1928,0.846378,4.02939,4.66947,4.61152,4.849045,4.780655,1.8975325,3.07961,2.14399,4.435225,0.68158125,4.011815,4.021315,2.48086,2.949593333333333,4.173065,2.42306,3.32114,60.03855915151515,3.378045,2.675523333333333,1.7774525,3.338155,3.834725,0.82309125,0.98519875,2.0319825,2.0319825,1.347634,3.32294,2.245585,3.566523,7.10152,2.870646666666667,1.2295185714285712,1.2565116666666667,2.7564733333333336,4.156538333333334,0.8600479999999999,1.930675,1.201052,1.938445,4.172205,3.88975,3.14534,20.573274603896103,3.03783,4.00624,3.253385,2.2706033333333333,2.76718,3.34716,2.4082825,5.66376,1.4453179999999999,4.05755,3.333267607142857,5.84132625,1.89218,2.70623,2.05399,4.2605,2.3594500000000003,2.2137075,2.1467566666666666,3.528905,3.37045,3.283335,3.88775,4.35986,2.46568,2.542855,3.053715,2.722735,2.951665,2.182285,2.10235,3.587345,1.1848866666666666,3.872285,4.532995,2.60323,4.70926,4.68246,5.104471666666667,1.8074633333333334,2.6139,2.760835,2.768385,4.11311,3.49312,4.667015,0.7859328571428571,3.8508173333333335,3.11415,3.74129,2.275705,1.815394,3.8084883333333335,1.133688888888889,2.59087,4.33042,1.120292,3.80942,3.45404,4.52308,6.247955000000001,2.010285,2.97168,2.6992166666666666,3.7720333333333333,2.998696666666667,2.7020239999999998,3.1781633333333335,2.5456566666666665,2.5011366666666666,1.4703466666666667,1.8813325,1.8813325,2.0919766666666666,2.1513633333333333,1.7976066666666668,2.5557,3.75074,5.60155,4.480955,1.59451,4.12639,4.438385,3.61617,4.34743,1.959295,1.863725,4.623601666666667,2.035455,4.285903333333334,3.54828,3.62827,2.45231,3.5747368749999997,3.24627,3.09094,3.523815,0.14971714285714285,2.2781933333333333,7.82916,1.5352299999999999,3.43506,3.142065,1.0188057142857143,1.1044133333333332,1.910415,3.812065,2.953515,7.174619999999999,3.512225,3.727755,2.964575,2.742535,3.454485,3.507275,3.98895,3.494275,2.9356266666666664,5.3138,3.95046,4.11198,2.4598633333333333,2.0970625,3.56422,4.52181,2.68265,2.74951,2.165035,2.579965,4.5096,3.781085,2.88935,4.477735,5.0208,2.7406,3.812845,3.684265,3.572765,4.507515,3.656345,2.7228,5.39057,4.655975,4.95897,4.911295,4.458525,5.17837,4.429825,4.24111,1.347438,6.36205,2.49069,3.956195,4.167435,3.94421,3.1520766666666664,1.9405566666666667,2.296676666666667,2.51138,0.9795429999999999,3.32412,4.041966666666666,3.1253466666666667,1.9009866666666666,3.73267,4.137125,2.5099,0.5416783333333334,4.40748,4.63884,4.92026,4.552635,3.68662,4.532315,4.608545,5.05995,1.3495777777777778,0.9452384615384616,2.8863833333333333,5.1774,5.8579,0.498064375,2.83516,2.5062133333333336,3.2576,4.47159,3.909966666666667,1.9498675,5.5091,3.366,4.2651,3.089205,6.43335,5.28335,6.655735,0.5632091666666666,4.290535,0.7688200000000001,2.33669,4.093733333333334,2.899983333333333,1.2692266666666667,2.32964,4.2768,3.544055,4.329775,2.07767,2.0244525,3.267525,4.57725,4.08761,3.57524,1.701076,1.1820757142857143,6.1141,2.13127,7.668872499999999,4.27365,3.602515,2.0874725,1.63805,4.02721,4.63361,1.71398,2.47406,2.44938,2.2781933333333333,6.624419166666666,3.102711666666667,2.8123299999999998,4.1021225,3.574335,1.94757,3.161945,6.962185,4.687385,5.0153,0.5126936363636364,3.36507,3.65348,4.702302857142857,3.657265,4.16361,2.997165,2.707915,3.422935,2.773055,3.3951445000000002,2.00396,5.391945,4.786265,4.95374,4.03735,3.457685,3.2914516666666667,2.32519,1.274635,0.90552,2.83103,2.48684,1.1175116666666667,2.6858733333333333,4.785595,4.49958,3.855965,3.83696,16.67355476190476,4.06213,4.57754,3.88493,0.7245583333333333,4.71954,4.18717,3.927175,4.864615,5.15605,2.584845,3.66548,3.408815,1.502848,3.14039,4.70556,3.25682,1.465128,3.693905,4.963975,3.94082,4.91493,4.77008,4.923985,3.79146,2.6491266666666666,4.263865,3.988515,2.47952,3.0406099999999996,3.04894,1.5662454166666668,4.62315,2.6338996428571426,2.0504466666666668,3.96808,2.35715,4.33938,4.128323333333333,2.144425,2.63047,4.552055,3.80093,4.3534,4.405115,4.91091,4.686729,3.05076,5.28965,2.824625,3.27388,4.214775,1.596986,4.346335,1.03393,4.415155,2.95367,0.9182285714285714,3.851435,2.006365,6.48417,2.3086409523809523,2.3086409523809523,2.3086409523809523,0.6658350000000001,1.23966,1.812195,3.48188,5.50968,3.639413888888889,1.9822,2.119045,1.78054,3.90581,2.328725,0.4292153846153846,1.75337,2.2505625,3.10297,1.88557,2.339335,2.482385,2.0743875,4.026345,2.8263833333333337,3.116595,2.87549,2.07112,6.55534,1.95054,4.312635,3.82051,6.1181833333333335,1.6274633333333333,3.754405,3.801305,3.759215,3.88997,2.74631,1.7894875,3.863815,5.603992,2.035345,3.59179,3.10502,1.873245,4.42005,4.280965,2.3234933333333334,2.34875,3.660585,5.128892142857143,6.0598,3.141735,2.427975,2.715995,3.070565,2.80972,4.171345,1.31574,2.78835,4.55641,0.78248,3.222005,3.95625,3.705965,3.0206,2.4209,3.02637,2.054425,4.564885,7.765600000000001,4.222275,3.40256,3.14726,1.009745,4.50029,2.396095,4.231995,5.533390000000001,3.742935,4.103805,11.334209999999999,4.69476,4.09113,1.568665,0.6917125,2.82919,3.838,3.50147,3.684,2.2078366666666667,2.4070133333333334,2.17868,1.1643216666666667,1.1643216666666667,1.9680366666666667,2.422613333333333,1.9216866666666668,2.2960566666666664,2.7839166666666664,2.3973999999999998,2.32749,2.76362,1.4403666666666668,2.100826666666667,2.1171533333333334,2.02093,1.4622725,2.5360566666666666,0.7454066666666667,9.521376666666667,0.7454066666666667,2.88524,2.026508333333333,1.8454033333333333,4.2086,4.29633,3.92829,4.477325,2.1978666666666666,2.9060466666666667,3.310646,2.0341833333333335,3.1455800000000003,2.8306299999999998,2.527676666666667,2.6867366666666666,1.7007633333333334,5.4703,6.247940666666667,2.881066666666667,3.4096666666666664,3.3889333333333336,2.6217900000000003,2.369076666666667,1.0998228571428572,3.6002333333333336,3.630433333333333,3.917225,6.1811,4.164455,2.85707,3.4356000000000004,2.9465866666666667,4.2044999999999995,4.394845,2.63339,3.519785,3.0491433333333333,2.9880366666666665,4.79614,3.2610233333333336,3.307005,5.705426666666666,1.6584666666666665,2.7990600000000003,1.58908,1.4020000000000001,4.519936666666666,3.3545016666666667,2.2365066666666666,2.074946666666667,2.1535366666666667,4.41156,3.728545,2.77509,3.307306666666667,2.9733933333333336,3.346,3.2748899999999996,3.4294333333333333,2.9891366666666666,0.57721375,3.6477,2.3572533333333334,2.6044266666666664,3.399145,3.958325,3.873985,4.964535,2.816665,3.8747966666666667,1.0805116666666665,2.86683,2.86683,4.07268,2.91893,3.75144,4.15747,1.64732,3.258925,3.77005,1.2024257142857144,3.507655833333333,3.1110456666666666,2.2778256666666663,0.42837899999999995,4.456675,2.638105,6.62461,2.97164,6.2401,3.41171,3.780085,3.666965,1.6460333333333332,2.73797,3.966865,3.26737,3.340866666666667,2.8320566666666664,5.384650000000001,2.13404,0.99854875,1.9491366666666667,1.7091433333333335,5.29008,2.2578533333333333,2.3789966666666666,1.7018625,4.371295,4.032975,3.799075,0.553738,4.059175,3.699365,2.3848833333333332,2.32101,2.3025533333333335,3.0804483333333335,3.7785133333333336,1.4714966666666667,0.6384473684210527,0.7787714285714286,3.3046233333333332,3.88427,5.894893333333333,4.81952,4.0472,5.3209,1.3212971428571427,4.1372,2.1675633333333333,0.9723325,5.2543,6.18665,2.27132,4.811955,4.101855,6.663170000000001,3.8785666666666665,6.356226666666666,3.80929,2.3006344444444444,5.701,10.146309602564102,2.5154533333333333,0.631417,3.136715,4.048085,2.24669,6.2257,3.67695,3.609,2.69964,2.69964,5.8687,3.278385,3.97771,4.795635,3.7685327142857137,2.3589654285714285,1.09166,4.876725,2.650345,5.140905,3.527465,3.99948,2.80654,2.107535,4.298585,4.956535,3.477933333333333,3.59896,4.19475,27.10922369047619,1.793735,2.530075,2.3445875,1.6979,2.6016133333333333,0.9651228571428572,2.77721,3.068713333333333,3.4294666666666664,2.916893333333333,0.5972707692307693,2.973663333333333,3.321435,2.59402,3.1106433333333334,3.587,5.7721875,4.54164,3.87561,3.654065,3.8032125,3.86694,3.385666666666667,1.7286825,0.9550000000000001,1.45505,2.1968666666666667,1.5754033333333333,2.7511033333333335,2.5042833333333334,2.4273466666666668,2.3460966666666665,2.734895,2.10624,1.8414866666666667,3.153055,4.360835,3.69754,4.059895,1.500346,3.1181300000000003,2.508576666666667,3.658725,2.096886666666667,2.68073,2.17428,1.43334,4.010425,6.6863,2.76602,3.61977,4.06766,2.621175,3.3911233333333333,3.4403,3.51972,4.618525,0.34312522522522526,0.34312522522522526,4.594535,5.12795,3.217815,2.923455,5.38805,4.059135,0.654626923076923,4.85335,4.210535,3.66949,6.2453,4.59255,7.5982,14.094954999999999,12.624740641025639,4.34327,4.360145,2.4157066666666664,0.5677423076923077,2.6002066666666668,4.111335,1.4678983333333333,4.545045,3.481733333333333,2.7518999999999996,2.09509,1.9927533333333332,4.7233350000000005,4.708565,8.618114880952382,4.99901,4.13536,7.392133636363637,3.326705,3.28486,1.52435,5.368603333333333,1.85637,2.4846366666666664,2.7538133333333334,0.247291875,2.999865,3.404385,4.61762,0.842454,1.1928433333333335,4.00305,0.581842,0.581842,3.0414250000000003,3.3299833333333333,3.170553333333333,3.833725,4.291565,5.6039,3.855535,4.28946,3.073265,3.1712833333333332,2.5748466666666667,0.8632833333333334,2.7097933333333333,2.946085,3.05366,6.945679999999999,2.837625,9.46725,3.07335,4.989145,2.97488,2.1977875,2.432135,2.756225,1.7505125,2.286375,1.92032,3.424315,2.321305,4.072535,2.841235,4.19714,4.19714,2.8540541666666663,2.8540541666666663,8.613340333333333,2.39793,0.821114,2.6412299999999997,2.5386933333333332,2.5949066666666667,4.072535,1.833296,1.8249659999999999,1.546634,3.498405,3.5847,1.900485,4.49284,4.25921,5.597061666666667,6.268226666666667,2.1295766666666665,4.076495,5.7167,3.279075,3.15909,2.153633333333333,3.13871,3.2193130303030304,4.196505,5.1078608333333335,7.284180666666667,3.39694875,2.934935,1.1721183333333334,4.40098,3.8945833333333333,3.491005,3.6563316666666665,4.25027,2.25487,2.3999166666666665,6.35431,2.8208,1.331464,5.30211,3.654545,2.54689,5.0237,2.54689,2.70845,3.494035,4.891475,1.0254157142857143,3.9118577777777777,4.244675,3.528385,1.2662083333333334,1.6599375,3.46519,3.715565,2.422645,6.302528333333333,3.92834,3.675615,4.041245,4.3307625000000005,1.259155,3.84168,2.186005,3.512165,3.82711,3.42353,4.651935,3.47794,3.710315,4.72527,1.9095123333333333,1.89374,3.0854666666666666,3.6377333333333333,3.4781,2.780806666666667,3.4215,3.067436666666667,5.5674,3.44659,3.624325,2.99619,1.8001233333333333,3.4270666666666667,1.9766533333333334,3.11993,3.141205,2.905625,0.68158125,2.125875,1.7908233333333332,3.338255,1.7679179999999999,3.453368,4.47844,1.1976559999999998,3.02682,4.309055,0.8605259999999999,1.32666,3.107305,3.95636,3.15029,1.97159,1.6900033333333333,3.527565,2.576620833333333,1.6942300000000001,2.83617,1.91588,1.1928100000000001,1.4091375,6.63623,3.221265,2.218065,2.497935,2.3979175,3.818525,0.92287875,0.3653407142857143,0.7731057142857143,4.77306,1.714014,5.0079,2.0400675,1.508800142857143,2.7580407142857144,1.2492405714285715,1.019574142857143,0.700192,0.5804885714285714,2.424150833333333,6.4055,3.09805,3.511765,0.35969285714285715,3.831815,17.666284428571426,3.120495,6.923542142773892,1.10875,1.10875,1.10875,1.10875,5.679719166666667,4.05407,4.593745,2.267793333333333,2.787855,4.41534,5.8034,3.681385,3.67624,4.158395,3.85095,3.650645,3.795994666666667,4.03269,5.10195,4.038165,4.59563,3.55795,4.4612,2.62121,3.19482,3.44935,3.436115,3.573395,4.01766,3.012966666666667,2.3373675,2.5197833333333333,3.93706,1.1989557142857143,3.784705,2.3440666666666665,3.340732,4.11051,4.364405,3.114855,2.780775,4.19337,2.88879,3.24086,5.2154,4.673495,3.3212,3.33472,1.756782,1.756782,1.6693575,4.719135,3.66178,5.4008769999999995,5.11705,3.4965500000000005,6.51245,4.689105,2.0921225,9.25301,5.38595,6.2961425,4.42878,2.7511500000000004,2.887025,0.25963103448275865,0.85060375,3.875334,3.618465,4.711215,2.925823333333333,5.997061666666667,4.897535,0.5800850000000001,2.641735,0.470171,1.7514733333333332,3.150085,2.16028,3.630225,4.15329,3.02919,3.459695,3.51749,3.730235,3.495005,3.68773,3.130745,2.48111,1.7514733333333332,2.87043,2.1653475,3.629385,2.30305,4.069425,3.658315,1.7345,4.509585,3.026705,1.292595,4.578585,4.72007,4.417545,2.9372433333333334,2.9952966666666665,4.118785,1.92533,1.411744,2.5568066666666667,2.60908,2.6079733333333333,2.0856833333333333,4.782815,3.30851,4.9414525000000005,3.7030142857142856,4.75186,3.66661,1.5344,5.1824,4.413535,5.42345,4.171785,6.607065,1.7701775,4.70748,3.36896,3.198085,1.7195525,1.8398466666666666,3.90906,4.42972,2.79594,2.685029583333333,3.4615025,3.4615025,2.6607600000000002,3.1330299999999998,3.409215,4.045795,3.692885,0.6813784615384615,3.2164,4.50116,4.963485833333333,2.992225,2.96983,1.803895,2.769855,3.61167,2.254355,4.361675,2.968125,4.829115,1.7800799999999999,1.0271727272727273,6.19335,3.73403,3.10364,2.9160166666666663,1.7281479999999998,30.25317761904762,3.834255,3.487445,6.0893,4.738095,0.8723666666666667,6.78705,1.8441075,5.6407,1.3643416666666666,4.78476,5.0475666666666665,3.777485,3.278635,2.0167725,3.35,4.77125,1.9977125,2.7615266666666667,3.534465,2.67779,2.594205,5.99465,2.24311,6.2972,1.0518725,4.306745,3.496365,3.9324,5.0235,3.03926,2.2001,4.07539,4.405095,3.6823775,3.6823775,5.74315,2.4769125,4.36814,6.183866666666667,3.41019,4.17059,3.13622,5.22435,3.52146,4.177415,1.3771425,2.07798,4.32873,4.444045,5.69685,4.416075,2.31282,9.328723333333333,2.792375,3.8637,1.7449571428571429,3.507045,2.1998,2.77615,2.19424375,1.36309,2.568706666666667,0.9343957142857143,1.1475071428571428,1.1475071428571428,1.1475071428571428,1.8794366666666666,0.56916375,3.98308,1.2448366666666668,2.559876666666667,0.8416433333333333,1.8559233333333334,2.688413333333333,2.0050666666666666,0.74727125,1.6890533333333335,1.5044933333333335,2.47632,1.6492460000000002,1.6492460000000002,1.7840033333333334,1.5277066666666668,0.878404,1.7617766666666668,1.5819433333333333,1.18197,2.281375,2.033715,5.9269,1.5056625,5.7551,17.243396583333332,6.43316,3.458505,3.6046799999999997,3.362633333333333,2.763756666666667,2.6853766666666665,2.976793333333333,0.7187450000000001,0.9613820000000001,0.9613820000000001,0.67941875,2.3880399999999997,3.54298,3.29111,1.488476,4.831625,3.97258,2.556945,3.50432,4.962925,3.797325,4.028475,3.5612999999999997,3.156405,3.632685,5.6841,3.0451533333333334,4.76061,0.5548040000000001,0.5548040000000001,2.33945,2.70129,4.46619,3.43569,3.827975,4.72221,7.664844,7.25839,3.53061,2.200275,4.07151,3.19933,2.52167,2.413855,3.878555,1.2956233333333333,3.766905,2.40902,1.56817,3.4780333333333338,3.369505,2.077725,5.1078608333333335,1.6624025,3.371166666666667,2.90789,1.0503985714285713,3.5964333333333336,2.7349033333333335,4.215975,1.1154316666666666,1.7188975,2.238545,2.0585675,1.7222175,2.4685475,1.92945,1.9368275,4.072825,4.376765,2.487085,1.703175,1.4683733333333333,3.5554333333333332,2.033263333333333,2.648325,4.62888,7.2101,2.1008299999999998,3.073205,3.49403,3.613395,2.526145,4.863005,3.95387,3.12771,1.3312625,4.570105,2.27975,3.376666666666667,2.497445,3.561995,4.906215,5.6745,2.2019166666666665,2.637443333333333,2.6920333333333333,3.2516966666666662,1.9728666666666665,1.464522,5.26845,3.3488666666666664,2.2173849090909092,3.031563333333333,2.892466666666667,2.3843799999999997,3.1105699999999996,2.944523333333333,3.4104666666666668,5.22345,4.2918,2.9337233333333335,4.74567,3.203595,2.36989,3.66956,3.88104,4.34956,6.1085270000000005,1.767172,4.023585,2.309715,3.546945,3.695195,0.5682425,2.298695,2.327565,3.35484,2.75834,2.27177,2.73553,0.5774790000000001,2.7026299999999996,4.33785,2.460945,4.255275,2.4112066666666667,3.746195,1.992085,4.52679,4.416245,2.06494,2.868075,6.904092500000001,3.80469,4.1767,4.835675,6.916789318181818,4.11097,4.24338,2.0608025,4.18879,3.02526,1.9466833333333333,1.9769775,2.01166,1.0122128571428572,2.4953933333333334,2.3458166666666664,2.6358366666666666,3.14782,1.776924,3.426615,1.9508866666666667,4.156415,5.06023,1.04970875,1.8260366666666668,2.5508,2.905203333333333,2.0214933333333334,1.0964383333333334,5.5420799999999995,2.141005,2.6805033333333337,2.60624,2.47489,2.7102466666666665,3.152625,2.27948,2.6933900000000004,2.18679,4.0583,3.4691,3.996305,3.0038766666666668,2.9974433333333335,0.688625,1.7741933333333335,2.123655,1.9626833333333333,2.56864,1.1662466666666667,2.7969633333333337,3.029363333333333,3.67504,2.058523333333333,3.358285,3.009325,4.91396,3.25928,0.6023191666666666,2.09124,2.7483766666666667,3.29824,0.7533209090909092,2.7932633333333334,3.425676,3.129096666666667,2.8821033333333332,3.4686125,3.80906,3.8661,3.1884033333333335,1.9614825,5.38315,4.770885,4.86098,5.56545,5.56405,1.90337,3.222095,3.6174,3.3026133333333334,2.8360033333333337,2.6346633333333336,3.9280000000000004,3.4483333333333337,2.87198,13.57091,4.422675,1.1064500000000002,2.63357,1.4646599999999999,3.1864333333333335,3.1989666666666667,2.2590833333333333,5.7473608333333335,6.4565893333333335,2.1530033333333334,0.8394600000000001,4.202705,3.4613333333333336,3.015775,4.65909,5.44045,5.65335,4.6739,3.583405,1.9950275,6.45899,1.1721183333333334,6.3138075,4.540845,2.3453633333333332,3.87769,6.986625,5.7932,2.1966233333333336,1.4421,2.1532525,6.7659400000000005,1.5425875,2.96154,2.5531133333333336,4.141399444444445,5.9333,4.40824,6.4317,3.63661,5.21605,3.78445,8.896560000000001,4.890685,5.9664,2.188025,2.45885,10.968076666666667,3.478705,2.378435,2.5154366666666665,1.5880566666666667,2.2804233333333332,3.4636333333333336,0.693875,1.0859999999999999,1.0955685714285714,3.104115,6.715773333333333,2.9855266666666664,1.42987,4.199845,3.63436,0.583261,4.52145,4.023125,4.88259,3.56288,3.12504,2.6740866666666663,4.259785,10.424455,1.832645,4.0107925,3.629435,4.523265,3.682715,0.8115983333333333,3.6392333333333333,4.009133333333334,1.7488333333333335,2.49278,2.28293,2.5516099999999997,1.8240699999999999,2.17786,2.30168,5.892627142857142,5.2684,3.421545,4.935383333333333,1.6256333333333333,2.328245,4.377735,4.253555,4.43013,3.920985,4.481075,4.571335,1.756782,3.748485,7.612328333333333,1.2180716666666667,1.6989400000000001,2.48335,2.4424433333333333,2.8592066666666667,4.7935661666666665,0.7787714285714286,2.49131,3.448475,6.59335,4.678595,2.1738566666666665,2.9406266666666667,2.098695,0.538641875,2.427605,2.94416,7.856615,4.43078,4.300895,0.84045,4.794133333333334,9.004749916666666,10.307931666666667,3.395355,1.14120875,3.64892,3.46837,2.60467,5.0929340000000005,4.56329,3.980955,1.9875575,3.7824333333333335,2.1921866666666667,2.5711566666666665,0.7718118181818181,0.3760593333333333,2.3658,3.451925,2.0448411666666666,3.437685,2.93986,4.010495,5.4317,1.527596,2.904526666666667,2.1642449999999998,2.1642449999999998,2.36806,3.564155,6.80905,2.73734,2.3628899999999997,3.2349099999999997,3.4351333333333334,4.293245,4.282725,4.066585,4.168345,4.06319,4.056965,7.15705,7.851988333333333,1.92925,2.2123633333333332,2.9133266666666664,0.9648516666666667,0.6947,4.453465,2.3044,5.17795,2.9657633333333333,3.0329599999999997,1.718194,1.54623,3.942725,4.278295,4.34917,2.0822333333333334,1.3262433333333334,2.73758,2.03662,2.6496033333333333,1.1716685714285713,1.1716685714285713,2.7461566666666664,4.999865,2.90201,3.320585,3.540405,2.206545,19.644831166666666,3.88166,5.4294275,4.36873,4.172105,4.077305,3.621515,5.67675,6.091710000000001,0.9315733333333333,0.9315733333333333,0.9315733333333333,2.8288933333333333,1.7272714285714286,3.2513,3.949755,3.898815,3.063955,4.122045,4.66655,0.8025833333333333,1.99888,2.1320666666666668,5.882220500000001,3.1515705,3.9270880000000004,5.08615,1.8120075,2.0366,2.3631333333333333,0.52234375,0.995308,1.792805,2.03028,3.146845,13.001721666666667,2.5662366666666667,5.28125,0.7681928571428571,9.200980000000001,5.62155,3.73091,4.02586,2.629425,5.1955,2.629425,2.7941960000000003,3.263285,3.923565,3.23911,4.01287,4.10855,3.50404,5.95675,6.699034,1.82204,2.442164,2.780595,25.975288582368083,1.5929579999999999,6.42425,4.035121999999999,3.8863,4.50488,4.3739,2.827275,2.747315,2.503095,6.825,7.1971,4.407595,4.69005,3.9937,1.7799,1.844835,4.16958,0.3366192307692308,0.3366192307692308,0.3366192307692308,0.3366192307692308,4.2299,3.167915,0.8588066666666667,1.7758,1.158677777777778,4.43972,2.5208333333333335,2.30727,6.974121666666667,3.0596033333333335,0.17363344827586208,20.257533166666665,4.688123333333333,1.777976,1.316402142857143,2.10272,1.967548,2.1376675,4.62856,3.517625,3.37071,4.409355,2.08683,7.3894425,2.759185,1.995245,4.919425,5.71795,8.582516666666667,3.9999,0.2970536585365854,3.641275,3.914485,2.69436,1.9409325,2.8736533333333334,1.6415166666666667,1.6415166666666667,4.083585,5.6972625,11.046268333333334,8.974599999999999,0.5869944444444444,2.46682,3.79205,3.256895,4.72219,3.413745,1.346846,1.346846,3.104655,3.652685,2.7522599999999997,3.554585,4.27117,5.1864,6.70158,2.2824,4.72955,4.27422,2.57984,3.0620266666666667,2.955666666666667,4.78935,4.014485,5.46105,4.044825,4.309155,3.602,4.36887,4.239995,5.4453,2.48848,3.0415766666666664,1.083688,4.343995,4.127735,3.347215,1.592788,1.7580566666666666,3.530666666666667,2.75058,2.0118933333333335,4.110726666666666,1.6099566666666665,1.9213,2.1817800000000003,2.00168,2.2055366666666667,1.6396899999999999,4.010266666666666,2.9701566666666666,4.022166666666666,3.2714499999999997,2.18038,2.703003333333333,1.9834933333333333,3.51569,1.9950666666666665,37.54779308333333,2.110311090909091,2.110311090909091,2.4736433333333334,2.36332,2.2369,1.6034033333333333,2.883736666666667,1.9418566666666666,0.7983230769230769,4.90433,6.699365,4.29613,3.997685,5.34655,1.8383166666666666,4.09631,1.8184999999999998,5.09005,5.02235,5.6898,3.727705,1.7286825,3.95189,3.89397,4.51927,4.692635,5.3079,3.75909,3.4364000000000003,2.65203,1.9925825,1.858235,4.231225,2.5726999999999998,3.8235225,3.8235225,2.2726966666666666,1.5542433333333332,2.2078466666666667,2.475636666666667,2.3776733333333335,5.60925,2.5601366666666667,1.1646750000000001,1.1646750000000001,2.0984933333333333,1.9398266666666668,2.5292866666666667,2.6062766666666666,2.498676666666667,2.39027,2.2064666666666666,2.326871,3.177518142857143,1.7278321428571428,0.8506471428571428,61.616575217261904,2.41329,3.26747,2.395816,0.887494,3.945698666666667,1.612778,1.612778,3.3462,3.20519,0.877185,3.04608,5.56382,3.2822333333333336,2.3256433333333333,2.8807500000000004,2.09476,2.5949799999999996,0.286788125,3.2172066666666663,0.78376,2.52067,1.273782,1.273782,3.3994666666666666,1.629394,2.6992499999999997,1.6583160000000001,3.538133333333333,1.6583160000000001,2.15202,2.5737366666666666,3.03122,1.3247339999999999,1.3247339999999999,2.779173333333333,1.4600433333333334,3.0091066666666664,2.190186666666667,4.36341,3.800715,11.843040916666666,6.958525,3.26395,2.69884,3.915985,5.2969,5.6141,2.6600441666666668,3.791305,3.90258,2.0252,3.84883,3.3283733333333334,2.8388633333333337,4.64547,2.206166666666667,1.0461,3.619660416666667,2.840396666666667,2.952525,0.7889328571428571,2.70195,3.491605,4.13523,4.42518,6.6057,1.8766566666666666,1.79013,4.367625,4.348255,2.44319,2.5110683333333332,2.013133333333333,2.1256233333333334,0.92875,5.0272,4.360105,3.5054,3.66753,2.9984800000000003,5.08135,5.01175,2.647746666666667,1.7773866666666667,0.5139646666666666,14.6025285,0.5219645454545454,0.5219645454545454,0.5219645454545454,3.0018733333333336,3.8898333333333333,0.5219645454545454,6.555211666666667,4.186226666666666,0.725987,0.725987,3.4776333333333334,3.34186,3.04262,4.434325,5.064,4.354098,2.3495725,4.923457333333333,3.090535,3.546589166666667,4.67342,2.8241250000000004,2.36776,2.392745,2.733175,1.7156525,3.2457216666666664,2.9590566666666667,2.267525,1.9926575,1.9748075,1.7356999999999998,1.65262,2.648125,1.0545733333333334,2.3592375,0.582365,5.03825,1.7741725,0.6488858333333333,2.0326825,7.874198333333333,2.7396,2.0111850000000002,3.321835,7.24807,2.493415,4.19556,3.06051,6.00216,3.194475,3.59119,3.932525,3.94758,2.9017199999999996,4.172996666666667,1.0682671428571429,4.157805,2.472776666666667,2.57233,2.650195,2.30259,2.15714,1.22694375,5.6236,0.9457636363636364,4.85281,5.46265,5.00625,5.31745,3.752466666666667,2.39327,1.972508,2.8416599999999996,2.77345,2.60711,3.863466666666667,2.7412,4.74647,1.911186,39.656121666666664,4.763295,2.485396666666667,2.20443,2.7907466666666667,1.56853,5.909525,3.60015,2.4669033333333332,3.2031066666666668,2.415716666666667,1.6816425,5.0743,0.7696357142857143,4.382601428571428,1.2193857142857143,3.438133333333333,3.2036599999999997,2.55957,1.391025,4.259995333333333,1.6193359999999999,1.6193359999999999,2.2997466666666666,2.6614125,3.2448599999999996,3.2444633333333335,1.3361666666666665,2.7583933333333337,2.5410533333333336,6.2234955,2.7299,3.818391666666667,1.4080216666666667,1.4582499999999998,2.859306666666667,0.9315200000000001,5.07517,3.27964,2.8605366666666665,3.4243,2.7404499999999996,2.722933333333333,3.140803333333333,1.8602299999999998,2.3979175,2.54007,3.4027999999999996,2.395016666666667,3.562333333333333,1.7478866666666668,0.6152813333333333,10.018015384615385,2.79256,5.22985,5.0062,2.8195866666666665,3.190023333333333,1.4236825,2.3110666666666666,2.135185,1.4236825,3.979175,0.452454375,0.452454375,1.3462825,1.3462825,0.92721,0.92721,2.37232,3.064575,2.43661,1.508705,1.649,3.656545,2.91088,4.76878,5.59125,1.834752,4.429275,2.36978,4.433629572649573,1.710185,1.710185,2.243445,1.6641400000000002,3.6352125,2.0052575,4.23156,1.5857266666666667,2.535925,0.5477976923076923,1.0665314285714287,2.10733,2.13451,1.816965,1.3254,4.03022,4.111165,2.0810566666666666,2.3924666666666665,1.38354,0.6879558333333334,2.3108,3.382765,2.862713333333333,4.558245,4.859365,4.58496,3.78083,6.5811175,1.463845,5.92741,1.78505,4.57757,4.57162,5.687505,3.402366666666667,2.417005,1.770335,1.9089099999999999,1.9089099999999999,2.447685,2.447685,4.21126,5.80995,0.902744,3.85982,3.257805,3.422165,2.378886666666667,1.4039175,2.8605699999999996,4.25625,4.108845,1.785246,6.5253,4.845295,1.90285,1.3121875,3.99461,3.9629833333333333,3.612255,3.60307,3.75734,0.655082142857143,3.5351,3.3866333333333336,2.722856666666667,2.8876633333333337,2.2190600000000003,3.744533333333333,1.530642857142857,1.530642857142857,1.530642857142857,2.86605,3.028143333333333,3.2322566666666668,3.269532369047619,2.1988625,1.1904857142857141,3.1391833333333334,3.157806666666667,1.3517257142857144,2.6136333333333335,2.6944733333333333,1.2635785714285714,2.4611966666666665,2.8453700000000004,2.8641199999999998,2.5412500000000002,2.3894466666666667,1.898115,3.0488933333333335,4.465222666666667,3.912275,0.929143,1.383384,0.532503,3.4716,8.675075,2.9216033333333336,3.32832,2.9343,4.371110833333334,1.8622875,7.37695,6.39856,2.620746666666667,2.1401825714285714,3.8736,4.591455,1.576466,1.191606,1.284864,1.96216,10.122240000000001,2.5569366666666666,3.0411133333333336,2.8644653333333334,3.898105,2.11449,1.04030375,5.78775,1.1037433333333333,3.4348888461538465,4.309925,3.299615,3.1727733333333332,3.059665,4.61717,1.1959766666666667,2.06606,1.8660133333333333,1.8660133333333333,3.86095,5.611,9.6232525,4.199505,3.455805,4.565675,1.764825,2.359495,4.545705,3.516545,3.82944,1.5565049999999998,2.854276666666667,3.660905,3.709275,2.3219875,4.05638,3.69514,3.8292,4.210815,3.880505,3.95047,5.59375,3.15447,2.472706666666667,4.342825,3.03815,3.855285,2.017135,2.482745,2.573345,5.81295,2.595995,3.190877727272727,1.68901,2.473075,3.319525,2.202435,2.0487075,0.90191,0.90191,1.823595,3.5682181818181817,4.12499,2.9081799999999998,4.28983,3.0168275,2.5279611428571434,0.93125875,2.826275,1.4757275,3.85464,4.150535,0.9102837500000001,1.87958,3.95635,2.911715,1.60446,1.6612466666666668,5.199758571428571,1.0623333333333334,2.743785,3.21387,2.76922,2.448935,2.807334,2.064635,1.0179475,2.88212,3.031125,3.43983,1.4380866666666667,1.5401566666666666,1.77033,4.191525,1.99414,4.273745,4.50304,4.39581,6.10285,4.892825,4.09425,6.161475,3.784324761904762,0.782850909090909,2.956225,4.20574,3.81948,0.4975227272727272,1.015592,2.93288,3.833125,4.606535,4.047255,3.244048928571429,2.839165,4.438305,1.701698,2.4627675,4.339175,4.2404399999999995,3.13959,2.88991,3.602015,4.445985,3.05796,4.8168999999999995,0.878982,3.19544,2.62656,3.994645,4.2914,4.66316,2.20578,2.45883,3.04721,1.9157,4.827055,3.29691,1.2943557142857143,2.29314,3.6750525,1.477336,5.918385,1.8248159999999998,2.6100166666666667,13.549578726945569,2.8527666666666662,1.4872100000000001,1.7337833333333332,2.1473833333333334,5.441355,1.701076,3.8313673333333336,0.6637523076923078,3.0933433333333333,4.27354,7.6256925,2.57725,2.77488,2.77488,4.4408,4.184665,3.429765,3.297945,4.76873,5.1684,2.4238,3.14249,4.34756,1.2767833333333334,2.3473533333333334,4.355355,3.79236,2.77971,2.1860833333333334,3.845475,3.333485,5.968493333333333,6.16876,0.6531520000000001,3.90397,3.216405,3.8056666666666668,4.2768,3.879185,3.754015,1.163634,4.94282,2.450105,2.938285,4.228765,4.229435,4.281175,0.847947,2.54911,8.942132999999998,1.4823233333333334,2.1018912987012985,2.2316725,3.990365,3.527995,3.291865,0.6589872727272726,2.3281725,1.715285,2.2020225,4.29889,5.301119333333334,2.759996,8.862504999999999,2.3750833333333334,2.6712399999999996,1.06501,4.503215,5.25325,2.17113,5.293193333333333,2.786555,3.315125,5.4001,4.17952,4.69719,2.14301,1.678315,1.678315,2.581705,3.15467,4.972314166666667,1.5500075,6.30839,1.4398166666666665,3.644755,1.2218316666666666,8.713768666666667,4.326155,2.784825,4.033235,3.630255,3.959495,1.1121566666666667,2.0018175,3.420166666666667,3.0342266666666666,3.4532333333333334,3.6632,3.96303,2.863485,3.23113,3.381225,1.6415575,2.6340666666666666,1.8927699999999998,2.931423333333333,2.0579266666666665,5.1139174999999994,3.1247900000000004,1.9021866666666665,2.692463333333333,3.321665,3.12056,6.21735,5.72725,2.960415,3.62716,2.835975,3.19584,2.938915,1.1652333333333333,1.034108,6.23864,2.986585,5.82605,4.39896,6.293,2.92895,2.7791033333333335,6.51015,2.63446,0.38990111111111114,5.6449,3.020835,3.685055,3.2427200000000003,1.3847914285714287,3.98572,1.02021,4.580315,0.903515,1.3321433333333335,2.85636,2.41148,2.872692857142857,3.58022,4.355015,5.7345491666666675,5.7345491666666675,5.066012499999999,5.066012499999999,4.66526,2.9153333333333333,4.378435,0.9456575,6.0344,3.30411,3.7302999999999997,3.812335,3.86591,5.17015,1.97174,4.92379,3.1191899999999997,2.881095,4.256675,2.72976,4.78732,5.29145,3.642285,3.57804,5.07735,4.02849,6.41885,2.783765,2.33472,5.92225,4.061655,2.94003,5.955895,1.6164133333333333,2.269955,4.84152,4.28763,5.03645,3.83672,2.049362,2.049362,12.855008126984126,11.9707,4.68194,3.31155,2.9368258974358974,4.26675,4.459425,2.5619033333333334,3.2447666666666666,3.036815,4.1574333333333335,3.5446666666666666,5.11435,2.01333,8.230476666666666,2.44938,1.927245,5.8293,2.305695,4.890755,4.41125,4.632985,0.7473733333333333,3.216515,3.549535,0.957234,3.007995,4.3675025000000005,1.4384359999999998,1.9048833333333333,2.8927266666666664,2.6985266666666665,2.0540166666666666,3.0138866666666666,2.24652,0.41471857142857144,2.3804166666666666,2.773146666666667,2.790203333333333,3.0845233333333333,1.43188,2.90882,6.952758333333334,4.47367,2.3058799999999997,2.0413799999999998,2.6186933333333333,3.7062,2.364995,3.4708400000000004,17.973365,5.4534,3.2771365,4.580585,3.759745,5.467561666666667,1.5741566666666669,5.98605,1.4634483333333332,4.98389,4.7132,5.44365,5.01585,0.9647303684210526,6.7492,2.37866,4.65157,2.81,4.28846,3.520255,2.864765,2.0842933333333336,1.477114,1.940385,4.312455,4.576415,2.085075,1.610485,3.0302966666666666,3.8869716666666667,2.745953333333333,6.20885,1.839245,3.618885,4.84826,4.405965,3.51389,2.732245,3.870465,4.60146,3.79471,2.6650266666666664,2.6650266666666664,6.05997,2.0924866666666664,2.4070266666666664,3.889045,1.7421820000000001,7.3739,3.646455,4.348136666666667,4.3043000000000005,4.07277,1.750008,4.06662,5.6821,4.251655,2.0371625,3.511585,3.39404,1.1029275,1.2315825,1.2316,0.722235,1.64203,0.9374833333333333,4.64435,0.91154,2.5814833333333334,1.6450733333333334,1.83218,1.0151516666666667,1.8966775,2.2149075,1.43541,2.89611,2.802293333333333,4.8281583333333336,1.5454583333333334,2.6456,2.951783333333333,2.7502433333333336,2.291263333333333,4.379208333333333,4.58796,4.712340833333333,19.045130416666666,2.627336666666667,2.218205,0.6605930769230769,0.6374,4.177466666666667,1.9958200000000001,4.0481,5.1143,6.986523333333334,3.592385,3.438295,4.118735,3.12616,3.3526666666666665,3.0685800000000003,4.0206333333333335,3.1855933333333333,6.5566,3.619285,0.904609,1.13032125,5.08515,3.0033499999999997,2.5274633333333334,2.02393,2.3144766666666667,5.77485,4.69337,2.16816,2.133453333333333,3.26443,4.86323,8.35758,4.6690974999999995,4.118395,3.837125,5.12555,4.5277,4.00218,4.864145,3.79569,4.91285,1.82244,5.57335,1.505542857142857,4.959535,0.7326733333333333,4.71172,5.41835,6.03705,6.09495,4.46939,6.04735,5.7459,6.15508,1.9705000000000001,1.5677,5.456,3.99438,6.168166666666666,5.1837,5.406720833333333,5.21325,6.3005,1.2786557142857142,4.294065,5.212,4.233766666666667,4.66464,5.08725,2.637875,4.15488,2.71323,4.102425,0.9794916666666666,1.5774,1.387152,4.62432,4.12129,3.41987,2.1009033333333336,2.8382233333333335,1.5744766666666665,2.2251333333333334,0.39334,3.4454333333333333,1.60915,2.3538116666666666,2.8225166666666666,2.407976666666667,3.14991,2.5965,2.4166175,10.10963,3.9177,1.79393,3.461815,0.8943181818181819,4.430715,1.1148075,1.5096725,1.93968,1.06257,5.680290333333334,1.14499125,1.14499125,1.14499125,2.890356666666667,1.932044,5.20075,3.10915,1.3137375,1.6368025,2.2867525,1.302025,1.965072,5.118588333333333,0.768921111111111,4.14824,3.965415,3.0755733333333333,1.0264885714285714,2.131842,1.8544475,1.8544475,1.39803,3.6545316666666663,4.38352,5.5724,5.71735,4.13842,5.28125,2.746396666666667,1.993935,2.75847,5.15485,3.156915,3.96067,1.043285,3.961294166666667,5.60145,1.93824,4.025075,2.9886700000000004,4.80333,4.551365,2.401435,7.03735,6.18215,3.619295,4.358555,4.384995,3.24587,8.21174,4.01881,5.128828333333333,3.440105,2.68689,5.12365,2.64879,5.45125,4.330475,2.7266166666666667,3.055885,3.973975,1.3886200000000002,10.4417,3.403805,3.177655,15.111801626984128,4.311315,1.771,2.7445799999999996,2.048055,2.298475,2.827475,2.5783617361111113,2.8855,2.769405,3.10601,4.32184,6.217495,1.25531,1.9250075,4.20694,4.443975,4.83316,2.26663,0.5637880000000001,4.34071,4.290575,2.0416075,1.3418433333333333,4.614865,4.31874,0.8499755555555555,3.74716,12.2244925,1.2630255714285714,0.40381357142857144,3.4179333333333335,4.555156666666667,1.062758888888889,3.63877,4.096445,6.3309283333333335,1.2258783333333334,3.24617,3.788695,3.335355,4.240055,4.376785,3.877885,7.863955,3.323805,4.341125,5.481,16.16376875,3.5332775,2.8958,1.1705225,1.8691475,1.23602,2.3747475,1.3058425,2.0555725,1.680035,2.0443575,2.37163,2.323885,2.2233,5.35295,4.36197,5.84345,3.202555,5.692691666666667,2.8249866666666663,5.01695,3.4483,1.24322875,3.942695,2.020605,2.7074566666666664,4.49778,5.00665,4.834365,4.48175,3.5377666666666667,3.759133333333333,2.5387033333333333,3.10066,3.81929,2.202715,1.85278,3.451966666666667,4.16555,2.8364,2.4240033333333333,12.385906666666667,0.70804,2.68883,4.77945,2.345139,1.062386,2.736145,7.382538333333333,7.054128333333334,4.369545,3.6275,3.959625,1.99623,2.09206,2.8403460000000003,2.05573,3.558438333333333,5.15135,4.25378,0.45322333333333337,6.09135,3.354433333333333,3.2098600000000004,3.5447333333333333,6.09455,8.58817325,4.3467745,1.01129875,2.1176575,2.419765,3.691475,2.612745,4.18984,4.44564,3.3633666666666664,2.533583333333333,4.131335,3.99651,3.81499,4.3623,1.7487833333333331,3.13168,5.19845,5.37,3.308483333333333,2.1710075,2.2502299999999997,29.91226982051282,1.4647875,1.4647875,2.5807466666666667,5.28276,3.637095,4.3206,2.72263,3.00048,4.38462,3.1591,4.26202,3.1591,3.55178,1.9020633333333334,1.7874533333333333,5.9952,2.649575,4.852065,3.39942,2.592225,6.419411666666667,2.1034533333333334,4.337565,5.3349,3.642725,3.298995,4.921935,2.0021999999999998,4.97889,3.285675,7.04092,5.320354166666667,2.887125,3.56548,5.0343,2.08658,2.311646666666667,3.422166666666667,0.4586678571428572,3.114193333333333,10.214713333333334,4.19206,3.335105,4.881045,3.331465,3.125425,1.3396571428571427,3.96719,5.63425,3.268965,2.29519,4.25809,3.574735,4.269545,4.345465,2.85195,2.85195,4.24026,2.98314,2.4910020454545454,1.92752,4.799215,4.112835,0.9555485714285714,3.727265,4.81834,2.7117133333333334,7.00357,7.78245,1.500114,4.31657,4.673165,6.510031,0.623466,7.600913333333333,3.3450125,0.5962754545454545,5.3067,5.2678,4.642255,4.29327,4.738195,4.410275,4.9744,3.739245,3.801865,4.12937,5.30485,4.528205,4.394205,3.89553,2.43585,3.91306,2.817925,0.950863,4.677525,2.401595,1.713385,4.460115,4.268855,5.7148,1.1098757142857143,4.87207,2.8768,2.745146666666667,1.5779925,1.2921566666666666,11.375616666666668,2.32678,2.9393933333333333,2.03516,3.7587385714285713,5.3682,6.040146666666667,2.667476666666667,1.9149466666666666,2.13836,2.13836,2.13836,1.35022,3.972185,3.94132,3.113575,4.63305,8.359684999999999,3.9872,1.19682,2.225575,3.11783,2.354115,1.712854,4.030515,2.655535,1.4009066666666667,2.9759700000000002,4.983942142857143,5.8479849999999995,4.0461,4.15911,3.1110366666666667,4.97923,4.461155,5.48726,1.9132825,1.9132825,4.191165,3.902575,2.739185,2.739185,4.04559,1.2451542857142857,4.903075,3.38525,4.400685,3.782325,3.52697,3.3227466666666667,1.0036085714285714,4.398915,4.948425,4.05693,4.56141,4.736655,4.95328,4.35003,1.879445,1.490645,3.486205,3.802835,3.409685,4.5029,2.17934,2.7312700000000003,5.2637,2.74137,5.05595,7.15042,2.292637083333333,2.9896716666666663,4.212609047619047,5.104585,1.552275,2.178577380952381,1.0928616666666666,2.178577380952381,1.7400266666666668,1.7400266666666668,1.5374560000000002,5.05115,3.19037,3.651675,2.304465,4.03602,1.53277,5.33445,3.071325,1.6919875,2.8329833333333334,3.477725,3.98399,6.669126,4.581825,1.219702,0.8710016666666666,3.69404,7.338371666666667,2.4357233333333332,3.763205,3.47278,3.47278,2.376225,3.394865,3.56702,1.3969431818181817,3.0443266666666666,3.21218,2.98256,4.187305,3.7821325,1.513535,3.424325,4.33671,4.56665,5.1078,4.449295,1.68496,2.17075,1.3014733333333333,2.153185,3.46807,1.86159,4.726385,3.2543366666666667,3.73888,4.202395,5.07985,1.87842,0.93679,1.9008366666666667,1.477055,1.1778555555555554,4.89183,4.07301,1.083688,0.3364704347826087,0.3364704347826087,0.3364704347826087,3.717745,5.64056,4.44129,5.21375,5.1593,5.49015,4.653675,4.50193,2.81455,3.848895,1.607245,4.614775,4.101245,3.90451,4.25879,4.131145,0.6678054545454546,0.6678054545454546,0.6678054545454546,0.6678054545454546,1.149844,1.149844,3.996685,3.6978,3.652195,2.888275,2.497795,5.99195,4.676715,5.7315,4.407415,3.003766666666667,2.5711066666666667,9.7098,1.540178,1.540178,3.817545,5.3726,3.309093333333333,0.452454375,0.452454375,0.452454375,0.452454375,0.452454375,0.452454375,4.519536666666667,4.827035,3.32828,4.52101,2.85119,2.85119,2.879335,3.201811,2.4239166666666665,2.411205,3.250735,6.966135666666666,1.4926679999999999,4.66787,3.302615,3.949655,8.667693333333332,2.16574,2.66555,0.9609985714285714,2.06244,4.87477,2.812855,0.8542725,2.7984333333333336,4.009925,5.36795,2.621625,4.550891527777778,0.7936977777777777,2.01411,4.728895,4.74307,2.806145,2.3271633333333335,2.07457,1.3463783333333332,6.867036666666667,3.3046699999999998,1.9813633333333334,3.194325,2.651483333333333,3.56848,3.75317,2.7364566666666668,3.1540700000000004,5.89795,1.4705716666666666,4.218725,5.29945,3.21741,3.82815,1.95739,2.9732,3.83169,3.80978,2.864245,4.75801,4.63118,2.7316566666666664,1.9352437500000002,2.818016666666667,2.959293333333333,2.8569366666666665,0.7932127272727272,2.125065,8.255355,0.45129125,2.9751499999999997,1.6113566666666665,2.6844533333333334,3.2663466666666667,2.6450299999999998,1.2557444444444446,1.7375440000000002,2.70128,2.1954525,3.68247,2.0405,2.5643033333333336,1.5123166666666668,3.125318,1.9569475,1.1422771428571428,2.7386266666666668,2.0018575,2.379086666666667,2.6904133333333333,3.0655066666666664,3.08794,3.3189499999999996,2.9438866666666663,2.794446666666667,3.2685333333333335,2.6758566666666668,2.69725,1.6194933333333335,2.342426666666667,2.57389,1.6600000000000001,3.1493366666666667,3.8858138095238095,2.8302366666666665,2.378033333333333,2.842443333333333,3.631066666666667,4.6509875,3.08502,1.7938085714285714,1.7938085714285714,2.39188,1.106095,2.3769275,3.3136849999999995,4.55580875,2.80455,2.0253575,2.02402,2.09261,3.689115,3.005355,4.04835,3.274955,1.826825,2.1351066666666667,4.050405,1.172696,1.172696,1.77843,0.5869469230769231,2.0719034615384615,1.6825125,1.6825125,2.56582,2.5012466666666664,3.15628,2.609195,1.942125,5.466123333333333,3.86624,3.86624,3.59724,3.06257,2.30379,2.801985,2.52225,2.900245,5.1289975,0.4765608333333333,0.701124,4.15611,2.4474,2.93595,6.5407,3.58318,1.629822,4.999843333333333,4.6404,4.004225,4.21813,5.2354,4.878375,13.6672295,3.41981,1.6517799999999998,2.90592,3.81979,4.7148,2.73656,3.929535,3.83946,3.738185,4.38601,2.92759,2.79202,2.53274,2.4358,2.4358,3.988065,2.760635,3.066565,3.667445,2.39549,2.520915,2.1379425,1.86318,1.9804975,2.175215,1.7005925,3.2668225,3.42946,2.60185,6.9900775,3.17423,2.3441533333333333,1.9831066666666668,3.64465,4.0453,3.610815,2.9772925,3.45402,3.275905,4.407985,3.647505,3.907095,4.04162,3.4112910000000003,3.420605,0.6602899999999999,0.6602899999999999,0.6602899999999999,3.58012,2.50056,5.56315,2.412155,3.883275,6.707231296296296,2.65187,0.344815,5.34275,0.774062,4.376089047619047,1.846585,3.495025,1.87012,3.87112,5.298603333333333,4.10247,3.95046,2.738,2.70971,1.4797033333333334,2.66552,0.3651684210526316,0.5363564705882353,2.5483333333333333,1.4106500000000002,1.8933675,3.94536,2.89355,4.89919,2.71015,3.076853333333333,3.62107,5.37822,1.6611575,0.9414228571428571,2.3471,3.63329,1.1955708441558441,5.22635,4.09122,3.541995,2.7555033333333334,4.185565,2.58787,2.38803,2.3449633333333333,2.406095,2.6086300000000002,2.3308625,3.1276466666666667,2.33527,5.296580666666666,2.10737,2.007573333333333,2.1381466666666666,4.909104666666667,3.3358980000000003,3.3358980000000003,2.5594433333333333,4.07401,2.3117725,3.133385,3.023225,0.5637453333333333,4.2807,1.7820175,11.63959,7.09295,3.04373,3.297795,3.414665,4.74411,2.861885,3.47081,0.27060399999999996,1.967845,3.262983333333333,0.8005683333333334,3.870075,1.3094557142857144,4.56372,3.541265,3.072415,3.35053,3.25862,2.22525,4.55316,3.77637,3.55596,6.86352,3.93359,2.853543333333333,3.08806,1.64979,1.943245,4.103105,3.502825,3.7294475,2.669605,3.272155,1.330232,2.994605,2.64811,3.5439,10.33663,3.629875,4.9134416666666665,3.76669,4.03942,0.9821022222222222,4.535538,4.744265,2.50821,2.4177433333333336,2.66352,3.7003333333333335,2.47152,1.6615633333333333,2.055973333333333,3.704335,1.483238,2.751863333333333,4.988466666666667,2.60746,1.1427635714285713,1.1427635714285713,3.637265,3.035749,3.035749,2.86354,2.8324466666666663,3.2394902564102566,3.7909333333333333,3.4517,2.779196666666667,2.3754933333333335,2.47858,3.21815,2.2789975,2.5105666666666666,1.70475,5.91658,8.554256666666667,0.5134138461538462,0.5134138461538462,0.5134138461538462,0.5896238461538462,0.5896238461538462,0.5134138461538462,2.88753,3.0929266666666666,4.104019999999999,1.3819166666666665,1.80636,3.424674,2.530386666666667,3.153233333333333,2.4716766666666667,2.81688,3.3599333333333337,6.859145,3.1032100000000002,2.5920799999999997,2.8597099999999998,4.688175,2.2287766666666666,3.369066666666667,5.97621,2.429996666666667,3.4003333333333337,1.4176283333333333,1.4176283333333333,2.8387666666666664,0.5109368421052632,2.34592,2.7217566666666664,2.8913466666666667,3.230366666666667,2.3036733333333332,1.3865166666666668,2.58825,2.7315,2.3868633333333333,4.19138,2.385043666666667,3.442255,2.35849,2.907305,0.46882799999999997,7.077873333333333,2.994834,2.994834,7.698425555555556,1.8026766666666667,1.7943266666666666,2.8434666666666666,4.216975,2.4334000000000002,1.9804566666666668,2.6775466666666667,1.446665,3.4321333333333333,1.95584,3.060962,1.4221425,0.27155863636363636,0.27155863636363636,4.58695,3.928755,3.2391,2.6329533333333335,2.684555,3.326575,1.3122033333333334,5.37765,3.94998,2.94354,1.8278575,1.1320508333333335,2.31415,2.8434666666666666,2.55949,2.08467,5.53938,3.531595,4.326185,3.830505,2.40376,0.6804925000000001,6.9327024999999995,1.902135,1.6338575,3.592275,5.11135,2.429135,1.6527633333333334,4.50842,3.800285,2.9503033333333337,2.9041200000000003,4.06305,3.949145,3.3954,2.589724,2.589724,4.11751,4.88915,5.0661,5.854423333333334,2.59381,3.684105,1.4571142857142856,2.570325,5.532236666666667,3.71563,1.91077,5.1923,3.55343,3.354475,2.32372,4.17346,4.54481,4.413295,4.385965,2.46122,2.58784,3.6794666666666664,2.0781633333333334,2.527075,2.3202233333333333,2.4554199999999997,0.655239,2.282975,2.8326733333333336,1.7459923333333336,4.64706,4.5816,4.709365,3.68405,3.205965,4.7079175,11.345735000000001,4.549905,3.744645,4.44326,4.12523,4.52509,2.589123333333333,3.0997446666666666,3.470166666666667,1.19341,2.92782,3.00774,4.23062,5.5094,4.293675,3.5018333333333334,3.151073333333333,2.21361,4.3495,3.921355,3.7215333333333334,3.921355,2.16433,2.2958166666666666,2.308325,1.97843,2.44679,1.8777866666666665,0.8410666666666667,1.3097033333333334,1.9701066666666665,1.97345,1.69273,1.3768733333333334,1.9880033333333333,2.776146666666667,1.516296,3.1491633333333335,1.32111,1.6337466666666665,2.78406,4.017566666666666,2.358956666666667,2.09675,2.3279633333333334,3.2146,2.27005,2.9551866666666666,3.288933333333333,2.430606666666667,3.1278733333333335,3.0903875000000003,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,5.04385,3.05338,1.0786428571428572,3.0917733333333337,2.7208799999999997,2.890613333333333,3.22139,3.3572666666666664,4.617795,3.228863333333333,1.46794,2.982863333333333,1.82825,0.9521425,0.92591,1.6537083333333333,0.8453283333333333,0.7953866666666666,1.3103500000000001,3.30439,1.582356,1.507275,1.8118394444444443,2.227616666666667,1.405335,1.242065,1.492595,0.9423583333333333,1.271165,0.7861716666666667,0.875746,3.41307,3.606585,4.21191,4.547695,4.05463,3.1297833333333336,4.509215,3.2897866666666666,1.9498675,3.554455,1.9281825,3.589905,2.1230166666666666,0.8140972727272726,4.173605,4.92665,2.1539733333333335,1.26304,3.07025,3.430035,3.6545316666666663,3.02613,2.774675,0.87201375,2.2451775,4.858890000000001,3.774295,2.413085,1.5074916666666667,3.815525,1.7872525,0.5715663636363636,4.33477,4.35395,4.030635,2.49263,1.44365,3.08464,4.590895,2.656946666666667,2.645773333333333,2.4658266666666666,2.6612766666666667,2.7744933333333335,2.8404833333333332,3.0422499999999997,1.221595,2.57345,2.5768633333333333,4.92834,4.31448,3.807225,4.61839,16.050608832070704,4.6268,4.523455333333333,2.68177,4.033685,4.851885,1.48699,1.8737975,2.1932833333333335,5.8427375,3.477905,3.08733,6.42175,2.1932833333333335,4.072575,2.047795,2.03607,3.0629299999999997,2.6051100000000003,1.1725216666666667,4.230595,3.521165,2.592995,4.33494,2.33034,3.4482,3.75588,3.56939,4.430265,3.74736,2.74114,3.565335,2.540375,2.434813333333333,1.234102,1.234102,3.3092633333333334,2.4465,0.38315,4.863498,0.866468,2.75688,3.349925,0.5615316666666667,4.37885,7.893681666666668,1.89374,3.66594,3.7409,2.6366466666666666,3.27161,2.38611,3.03753,3.708495,4.283175,3.12928,3.8600666666666665,0.9728416666666666,11.773115666666666,2.69777,2.95219,5.88735,2.63007,3.90579,7.686101666666667,3.9386,3.8357,3.34899,3.900295,5.3348275,1.4832925,2.526943333333333,4.53687,3.7546999999999997,1.941148,3.89512,3.699515,3.606705,4.052455,3.790335,3.708195,2.52197,4.31671,3.75322,4.87833,3.4462,2.1967466666666664,2.28251,1.9940033333333333,3.18036,1.4696266666666666,3.5207333333333337,0.8723372727272728,3.1766799999999997,3.1075433333333335,2.59281,1.5016150000000001,4.07641,4.06176,4.34325,1.9349275,4.418355,3.661955,0.7320719743589743,0.33087730769230767,4.284195,5.3484,0.9530525,0.33087730769230767,4.217315,0.7320719743589743,0.7320719743589743,0.33087730769230767,5.502618333333333,2.5191833333333333,2.36977,5.35735,3.276495,3.192265,0.8125566666666667,3.31466,3.868175,4.717705,5.7199,2.149845,0.7060615384615385,4.082250833333333,2.00745,1.2468460000000001,1.8532975,1.0095742857142858,2.1216166666666667,2.1843266666666667,3.437,5.22315,2.47312,3.0607399999999996,2.771646666666667,2.2230333333333334,2.994145,4.460331249999999,1.634325,1.9966375,3.937635,4.98943,2.0916556944444444,4.86634,2.629425,4.17389,4.08872,3.07727,1.21717,3.17604,6.66385,3.81217,3.381115,5.2217,6.36245,2.367925,3.2581,4.73809,3.164685,3.149195,8.47593,3.787885,4.5863525,2.49659,1.2334825,2.47649,1.786495,2.172245,2.22276,4.08873,0.6478371428571429,3.12967,3.90049,1.9223299999999999,3.020163333333333,4.856645,3.321305,2.68753,4.08528,4.659895,8.980359166666666,2.7009833333333333,2.38852,1.69632,1.3819616666666665,1.33592,1.3602033333333334,2.3527566666666666,2.6782800000000004,2.79162,4.404573782051282,1.6373825,2.2747699999999997,5.2508,5.27435,3.62047,3.51752,3.069105,2.443935,2.158295,2.170745,1.8679766666666666,1.92669,3.002315,3.654755,4.791785,5.15945,3.70577,5.1216225,3.372895,2.647675,6.413981249999999,3.137635,8.88369,4.822921666666667,4.822921666666667,5.734545000000001,1.6949066666666666,1.355385,1.5089333333333332,0.727248,4.77273,3.8752999999999997,3.238125,3.238125,2.27198,4.268985,4.387955,4.242905,3.829955,2.897183333333333,2.593315,3.57492,3.00351,5.13977,3.56082,0.7467681818181817,4.933875,4.99813,3.657965,4.78767,3.24905,6.29085,4.04519,0.8627538461538461,5.16225,7.101610000000001,3.23019,5.54555,5.8576,3.60484,2.637365,3.61288,6.04485,2.0435,5.8748,1.9124475,4.327305,2.53151,2.2715775,0.878982,3.23495,6.0386,3.366185,3.5876,2.1356699999999997,4.944725,8.157036666666666,3.480775,4.446535,2.522285,2.86434,0.827397,4.561725,1.565365,3.2973608333333333,3.2973608333333333,3.787055,2.38922,2.933946666666667,3.78502,1.7205675,2.7455766666666666,3.1770899999999997,3.2210466666666666,2.87761,4.16517,3.12666,1.906715,2.9696866666666666,2.04614,2.9842099999999996,1.9714,2.964093333333333,3.1317733333333333,1.4059485714285713,1.58331,0.8014383333333334,1.3419299999999998,0.8014383333333334,0.8014383333333334,1.58331,0.8014383333333334,3.3747333333333334,2.5933599999999997,2.5933599999999997,2.672803333333333,3.93307,3.705595,3.994245,5.2462,5.3653,3.52043,3.614065,3.769015,1.7971275,2.260573833333333,2.3150666666666666,0.7975427272727273,5.4389,2.89292,2.9655166666666664,5.4909,3.94329,4.760015,3.365305,2.5909233333333335,3.001745,3.371495,2.81749,2.9409799999999997,2.0523266666666666,5.2926,0.8136266666666666,3.510345,1.1809785714285714,3.695065,3.1912000000000003,2.84618,3.931325,3.895395,3.62329,4.232745,4.02548,3.65879,4.1178,4.33872,2.4438475,2.803725,3.2421733333333336,4.163505,2.687865,3.10996,2.733475,3.023635,3.253386666666667,3.447965,4.59005,4.54079,4.01857,67.89529084666722,2.7941191666666665,3.562725,15.944912333333333,4.19328,3.02727,2.3877266666666666,1.89679,2.602936666666667,4.288075,3.00615,3.8488499999999997,5.5791,3.403325,7.282071666666667,5.40885,2.42774,3.737255,3.685,3.493425,1.9041139999999999,1.09795625,4.820935,2.791795,6.172938333333333,3.646935,2.2841366666666665,3.475455,3.468655,4.57479,3.442975,5.704485,4.41549,3.493645,2.993505,2.47789,2.737535,6.0835,2.55286,3.60327,4.343887083333334,1.1972033333333334,2.4847,5.2222675,2.969645,2.93821,3.689495,2.94811,3.68712,3.165045,2.827895,3.118625,4.615685,2.75836,3.11174,4.50181,9.621785,3.2170433333333333,4.218375,4.94101,3.27557,1.7142,4.193919375,1.9903933333333335,2.95267,3.0166839999999997,3.500065,3.29402,3.086695,3.059675,3.159175,4.13591,3.932345,4.271235,3.768205,3.094425,3.522465,2.589293333333333,2.589293333333333,7.189661666666666,1.73375,3.214045,3.061135,2.402635,4.766075,4.224685,3.09147,3.34909,5.66505,5.935935,0.6559354545454545,4.340835,2.422475,2.95841,2.418903333333333,5.19,2.64647,2.02423,1.0518725,2.093381212121212,4.26114,5.14205,4.059945,6.0144,5.62105,5.94905,2.79284,2.01058,3.79896,2.62735,2.8775333333333335,1.94112,1.3044566666666666,2.6877066666666667,3.09666,1.556456,2.2547200000000003,2.3759674285714287,3.407162252747253,2.787525,4.86918,3.352925,1.3848625,2.85508,3.524805,5.8002,4.73443,5.83155,4.797645,2.0530933333333334,1.4168566666666667,0.61191,1.5311000000000001,3.462935,2.60856,3.7304649999999997,1.49394,2.332435,2.308965,3.47332,3.53668,3.89366,4.067983333333333,1.6395175,1.3558125,1.9413025,2.09558,1.4435275,2.513725,6.589827666666666,4.71675,3.315445,2.92235,6.721085,4.547625,3.212425,3.129095,3.606495,2.9848,3.763915,2.38273,7.47134,0.9056233333333333,3.11942,6.575,4.0814,4.50098,6.38425,1.4667133333333335,3.02839,2.8870166666666663,2.720143333333333,1.49196,4.11314,9.01698,3.311665,4.91386,4.03854,2.99952,4.757115,0.9145300000000001,2.83301,5.30325,6.195456666666667,4.98803,5.6457,2.8661,3.6194,2.475496666666667,4.92492,4.66402,4.100554642857142,4.100554642857142,0.6302771428571429,3.597466666666667,0.92117,0.552895,1.60866,3.7723666666666666,3.689274,5.144774,2.41973,3.368348,3.079963333333333,2.7558666666666665,3.1537433333333333,4.507766666666667,3.449843333333334,1.822985,1.822985,3.93779,3.0647800000000003,2.75306,3.379075,3.2375333333333334,0.5584155555555556,3.2566,2.4758999999999998,2.5613733333333335,2.6134933333333334,2.4917225,2.39972,3.0939033333333334,2.5940233333333333,0.811532,2.851763333333333,6.227172809523809,2.049,7.401074333333334,1.6315940000000002,1.6315940000000002,3.39744975,3.356733333333333,3.273343333333333,2.637896666666667,1.6445979999999998,1.307377142857143,3.3110233333333334,3.3402999999999996,1.3563966666666667,1.5841428571428573,2.8403733333333334,2.559388,2.67156,2.12121,1.78469,2.55309,2.06006,2.825255,3.469055,1.993945,3.76303,3.209855,6.886285,3.416695,1.71824,2.953255,2.840635,2.17575,4.1206,2.42686,2.66114,6.8875925,0.8389307692307693,0.7818158333333334,4.62126,1.439074,1.439074,3.57623,2.3507725,4.19121,3.29591,1.3769366666666667,2.3695060000000003,3.063363333333333,2.4162743333333334,4.902625,5.08585,2.540583333333333,1.9881233333333332,1.247107857142857,1.247107857142857,1.8008066666666667,3.879935,4.0922,5.5828,3.177706666666667,4.746875,4.227155,6.6015,4.483825,2.562215,2.88595,2.70436,2.7241700000000004,0.7213433333333333,0.7213433333333333,0.7213433333333333,3.202275,4.192515,3.86462,1.01514,1.01514,5.01645,5.7669,6.62676,21.795495166666665,10.967,8.17828,3.222465,5.70715,2.35817,4.337235,2.6218233333333334,3.1907533333333333,3.9177666666666666,5.239102666666667,2.321295,1.945325,6.28904,2.20878,2.20878,6.4494,3.16433,4.173235,2.129715,4.932156333333333,4.890815,3.70927,5.241,3.376455,1.9485466666666669,5.86165,8.6402,1.9485466666666669,2.129715,2.0358966666666665,0.9599360000000001,0.9599360000000001,1.719414,2.2282100000000002,1.719414,4.43659,5.54005,6.0925,8.52638,2.129715,11.2221715,6.03105,5.77115,2.35817,3.340735,4.3115,8.58617,3.198698333333333,3.390745,6.0227,3.079405,4.66246,6.04555,4.16112,5.03625,4.866095,2.60589,5.1281,3.38713,4.291145,4.368645,0.80649625,1.486314,2.992565,5.46545,4.476695,2.60746,2.03744,3.8958,4.57286,5.78565,5.41855,5.1448,4.49604,4.24543,4.15047,3.753025,2.1336825,4.9301075,2.11714,2.56022,3.4899,1.7071666666666667,3.93578,3.91905,3.72192,5.2237,2.737645,6.659208333333333,0.8952933333333333,3.47133,1.93794,1.1766142857142856,5.018225,1.351735,1.76759,2.44226,2.7419374999999997,2.971526666666667,2.8058366666666665,1.6451475,0.7268609090909091,2.23489,2.73916,3.59188,0.6934507692307693,6.853641666666666,2.0813966666666666,1.198904,3.3399,1.198904,3.89547,0.9565818181818181,4.634455,3.1477233333333334,2.07495,4.419332,4.286517,4.286517,4.6253,2.3842,3.0339816666666666,2.6722333333333332,1.43188,3.779155,3.87018,2.0266533333333334,0.7012550000000001,6.79569576923077,2.775475,4.262945,4.32516,7.69732,2.068235,4.320015,3.7731,3.161945,3.596205,5.3727,6.3143225,4.48009,4.61722,5.20005,2.9000866666666667,4.93065,4.21673,4.47506,1.0367600000000001,0.4865792857142857,3.227085,3.4125666666666667,2.8207166666666663,5.2458,3.91367,4.122725,3.800375,5.05005,4.458845,4.177255,1.18826,2.210915,8.059285833333334,2.1280966666666665,1.9578533333333334,3.907101428571429,10.992875456349207,1.5679975,5.2314,6.53815,5.1939,3.4929,2.21596,3.2552,4.051745,1.1052766666666667,3.1112300000000004,3.31333,0.28553263157894737,2.1282133333333335,4.16304,4.133705,2.291985,4.164145,2.8211,4.9032374999999995,1.1909133333333333,0.5316927272727273,3.7123241666666664,1.0773614285714286,0.99357875,0.99357875,0.99357875,0.99357875,1.6179583333333334,2.5502433333333334,1.8138966666666667,3.2768466666666662,5.24195,3.6183,5.1853,3.74657,4.34547,3.549185,4.018085,1.4997966666666667,6.45408,2.32632,4.470705,5.242816666666666,5.1144,5.018483333333333,2.3480166666666666,2.41671,2.644973333333333,3.188135,1.2290633333333334,4.387458333333334,2.6195533333333336,4.902285,2.79575,2.3143933333333333,3.845395,3.35415,2.99434,2.511406666666667,2.9084266666666667,1.5016075,0.40750444444444445,4.021345,3.50912,4.22861,3.545095,3.927195,5.50445,4.184,0.5512923076923077,3.053628,7.2155613333333335,2.0019133333333334,2.1600200000000003,5.724605,6.35875,2.7530066666666664,4.8484,5.21015,4.264895,3.78807,4.243035,5.2443,5.5102,5.06345,3.565615,5.052001000000001,1.485478,1.527645,4.407685,3.994165,3.93521,3.247875,5.2328,4.589905,3.910955,3.3768,15.385526661316213,1.2612314258962012,1.050465,1.7425104545454544,0.49254375,0.43722933333333336,1.453275,0.34202647058823527,1.294978,2.9153800000000003,1.67973,0.8992,1.0297166666666666,0.47674666666666665,1.0297166666666666,1.0297166666666666,0.47674666666666665,0.8110923076923077,0.5035114285714285,2.474265,2.6455866666666665,4.455285,3.54283,2.8535133333333333,2.70115,3.873165,4.861205,4.835905,2.678505,4.096225,0.6947092857142857,2.3607673333333334,7.951649166666667,4.092515,6.637696666666667,2.74676,4.2293,2.36889,5.0021,5.2437,3.44135,4.470635,2.99178,1.0422200000000001,4.23729,4.649585,1.097854,1.3309760000000002,1.4864466666666667,2.53136,1.8475733333333333,5.24475,5.81725,2.291965,2.291965,3.5997905555555554,6.61873,2.10039,0.6596799999999999,0.8000257142857142,2.189,3.279256666666667,0.8811942857142857,0.8811942857142857,0.8811942857142857,0.37243076923076923,1.0461,2.849975,5.9761,3.673666666666667,4.020206666666667,4.94097,0.96996,3.3316833333333338,2.8985833333333333,3.8034666666666666,5.51525,2.4701133333333334,7.134061666666667,4.480285,1.0338966666666667,3.7322,1.897122,2.72276,2.3707066666666665,6.509198333333334,3.3375,4.340685,2.2792075,4.23423,4.46431,4.81846,0.5321744444444445,2.8230466666666665,1.5072999999999999,2.743373333333333,4.052688666666667,2.09067,2.8708666666666667,2.53911,2.5771433333333333,2.6936033333333333,2.8279533333333333,2.8599266666666665,2.8848000000000003,1.342722,2.4092100000000003,2.0066966666666666,3.1491433333333334,2.6401866666666667,2.0966825,1.8812433333333332,1.9177833333333334,1.65428,3.276485,2.1903866666666665,2.225076666666667,2.2682800000000003,2.51864,2.4938,0.7917000000000001,0.7917000000000001,0.7917000000000001,2.4734233333333333,2.1543733333333335,3.0704100000000003,2.3990766666666667,2.5277333333333334,2.12382,3.888695,3.5326133333333334,1.3438333333333334,2.57763,2.763693333333333,3.7015700000000002,1.5638285714285713,7.255895,4.40183,3.306155,4.10684,3.53603,1.4570725,0.8508142857142857,2.97044,3.831255,3.7015700000000002,3.825655,4.27606,4.408815,2.8266233333333335,3.70503,4.18775,0.90557,2.66563,3.41262,4.934680833333333,4.719045,3.632285,3.15157,2.53699,2.1595366666666664,2.3921033333333335,0.6524075,5.166355,2.829775,3.98014,2.73911,3.7120283333333335,3.28089,2.542003333333333,2.92926,2.92926,2.6259633333333334,2.1003966666666667,2.42691,2.0750800000000003,3.992455,1.423262,2.686315,3.832025,4.05206,3.929875,5.2761,3.360795,2.35838,2.15201,3.28887,2.91447,2.68332,5.0531,2.71578,1.0172914285714285,1.0172914285714285,4.63429,3.999561,0.998626,4.380305,0.998626,3.71276,4.66953,4.790495,2.958585,3.25927,6.4295975,4.277398333333333,5.4493,0.8434,0.8434,1.9849640000000002,4.181478333333333,1.5026783333333331,2.6788,3.47522,1.1503428571428571,3.433905,3.73274,5.6223,5.6223,1.0485233333333335,5.26845,5.10895,4.835995,5.65035,2.0654425,2.0654425,6.8855,0.9175272727272727,7.24515,1.9770975,6.4507775,2.757545,2.493133333333333,3.39155,2.36524,2.3631533333333334,2.27915,2.9524066666666666,2.3922097619047618,6.274609,1.7393399999999999,4.471445,2.898213333333333,2.33052,1.87842,2.10561,3.403325,3.5941,3.527215,2.782165,2.21414,2.22747,2.48181,1.1022880000000002,3.45999,2.45924,3.324625,2.0577705,2.0577705,3.04149,2.15342,3.82187,3.46061,4.996535,7.12035,4.12897,3.57259,6.279408166666666,1.9943733333333336,3.362733333333334,2.2975600000000003,1.437542857142857,1.672775,4.18043,1.5557583333333334,0.502269375,0.6284283333333334,4.34171,4.725605,2.875675,0.9834566666666666,2.75939,3.027676666666667,4.50713,1.60895,1.83318,1.0845533333333333,4.552925,2.34378,4.441415,0.738398,4.107414583333333,3.9298,3.542685,4.492375,3.546735,3.867595,2.6487766666666666,5.35225,3.62956,1.6992233333333333,2.6587733333333334,5.999071666666667,5.9860875,0.7869875,3.648425,4.6221,5.12945,3.625166666666667,3.637233333333333,2.709925,3.1728633333333334,3.8571666666666666,6.1698949999999995,2.559388,2.712166,3.940775,3.05826,2.44664,2.5411,8.631166666666665,4.591065,1.9885833333333334,4.627255,4.83686,1.801532,3.784455,1.23622875,1.5935142857142857,4.478385,3.945025,4.672305,2.4760766666666667,2.71102,2.79316,4.61643,3.593905,3.1757,2.830795,3.445675,3.6063,3.787135,1.1551686923076923,1.1551686923076923,7.43058,0.8716425,2.275863650793651,0.8716425,0.6463833333333333,0.38466222222222224,2.9222469841269842,2.471665,0.7429514285714286,2.275863650793651,2.097895,3.296375,2.1792955555555555,3.6739,4.52609,6.911428333333333,2.238625,2.05966,2.226205,4.020125,5.64775,1.83864,1.7651075,1.1110125,2.8761200000000002,4.10517,2.605235,4.579785,6.3085725,0.43156055555555556,3.73868,0.694646,2.769553333333333,2.189415,3.70815,1.24769,3.997685,4.5642625,4.11215,2.769985,3.62595,4.768165,1.63839,3.199455,0.571736923076923,2.31342,2.31448,1.149226,3.0490766666666667,2.4817899999999997,2.5608333333333335,3.62107,7.7605949999999995,3.0266584848484848,3.822975,3.395915,7.01028,5.430386666666667,2.996703333333333,4.33766,3.533175,5.4952,4.19021,4.952425,4.759525,4.265135,4.396165,3.8307,1.5869,1.6685866666666669,2.1718466666666667,3.808415,2.5388066666666664,0.19092297297297298,0.19092297297297298,0.19092297297297298,29.852651476190477,0.19092297297297298,3.139222972972973,0.19092297297297298,0.19092297297297298,0.19092297297297298,3.2283596396396397,4.030585,0.19092297297297298,0.19092297297297298,0.19092297297297298,0.19092297297297298,0.19092297297297298,2.917715,5.05959,3.11633,0.17595051282051283,0.17595051282051283,4.475156666666667,3.9481265416666664,3.9246652083333338,3.272689430555556,3.9214723809523813,7.9783333333333335,11.403899893162395,6.315369333333334,8.242916666666666,7.9257395892857145,2.8387666666666664,6.279800476190475,4.397246666666667,4.2274690064102565,0.17595051282051283,8.08665,6.559562857142858,7.152098333333333,2.89845,9.014880089285715,14.002069851190477,17.990785391483517,57.067527104273175,114.21793705532212,1.4176283333333333,3.4003333333333337,3.374525,3.8975364388674385,0.17595051282051283,1.54220858974359,9.054986041666666,15.028034880952381,19.695936666666665,47.31055670802005,13.554307089285714,3.261325,0.23336344827586208,0.23336344827586208,4.83541,2.9332233333333337,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,5.62496,0.23336344827586208,0.23336344827586208,0.23336344827586208,2.68189,1.8778866666666667,3.964645,3.671435,4.666038333333333,4.96927,1.7722675,4.15499,4.186825,3.11717,1.57934,3.802585,1.028095,2.293775,1.95512,4.92223,5.979363333333333,2.7965066666666663,5.548059888888889,0.5333577777777778,0.4521786666666667,2.379863333333333,2.772013333333333,2.88883,3.798485,3.4684333333333335,7.39808,3.863995,3.95534,3.40267,3.94844,2.903195,3.24382,5.69055,1.896355,0.4458192307692308,0.8365827272727273,4.3803775,1.80544,3.73554,3.90371,4.53872,3.630945,2.321305,2.666595,0.630524,0.729685,4.32561,2.752243333333333,5.9785,3.602295,3.8046583333333333,2.398225,2.935035,6.5595,4.014865,3.37184,0.8095454545454545,3.00743,4.21519,2.268155,0.9733225,1.5636133333333333,3.979585,6.5275,2.10804,3.1142,3.909775,5.8498,2.534625,2.4729966666666665,2.08237,4.703245,2.49517,4.42728,0.6674257142857142,2.114383333333333,3.459705,1.784315,5.880216666666667,3.12244,3.72315,4.347895,3.05383,2.106175,0.5214263636363636,4.24134,4.961425,6.86325,3.533965,4.014105,4.718075,2.851885,2.86721,1.1567642857142857,4.79963,2.154285,2.73682,8.30376,4.05555,5.2928,3.275585,0.6602377777777778,3.13254,1.2113685714285716,3.140615,6.04045,4.74231,4.95486,3.60776,5.24575,4.2847,1.532395,1.6941633333333332,4.85848,2.9120866666666667,3.2483,2.3575675,5.40955,4.23956,1.4728933333333334,3.5408666666666666,2.83196,2.810215,3.949545,9.37864,4.58724,1.8312125,4.63625,5.9873,4.3111025000000005,4.009925,3.822765,3.842095,4.70153,8.217255,2.4378033333333335,3.416145,3.51058,4.316215,2.67057,3.175085,4.43121,4.30503,3.46392,4.016013333333333,18.503583,2.8406533333333335,2.6443966666666667,3.21036,5.612698,1.108735,4.022325,2.0988708333333332,4.82725,1.374595,4.15064,4.26036,3.45811,0.9630875,4.587955,4.451815,1.7282975,4.754955984848484,4.084635,0.9683200000000001,3.65431,1.968185,2.52383,1.856395,4.391055,3.91427,3.71119,3.730635,2.9919333333333333,4.327825,8.088218333333334,4.38994,4.04339,4.551135,3.0738466666666664,3.694915,4.734615,6.459484,1.063302,1.063302,4.49767,4.55079,2.1562466666666666,1.3900333333333332,6.9148,3.815615,3.58922,3.74261,4.493575,4.44545,3.703285,4.08452,5.7246939999999995,3.87746,4.41712,4.72885,1.3616371428571428,2.5101,4.021195,4.40954,3.39694875,0.1996752777777778,1.476445,2.044765,2.5344533333333334,2.1736999999999997,0.9647122222222223,1.4711625,1.50107,2.3130866666666665,0.6004322222222221,1.0357,1.809615,3.997375,3.842,2.0324933333333335,2.5441733333333336,2.89216,2.90301,0.66801,0.94693,3.133575,4.564045,4.600625,2.731595,4.587425,4.338585,4.13913,2.0366,4.32092,4.895595,4.259955,6.232655,3.694035,0.5012735294117646,5.40075,4.567135,3.64952,4.432975,3.327025,1.891488,3.652225,4.07551,3.03606,5.341768333333333,4.50471,1.406735,5.341768333333333,4.060885,6.9572899999999995,3.818875,1.133688888888889,3.65917,4.87491,4.147155,2.6366666666666667,4.796065,1.4480275,2.03645,3.129685,3.56412,0.8465222222222222,4.623835,4.929765,3.396975,3.91278,3.4112666666666667,2.9137233333333334,1.7314139999999998,1.5332975,3.183955,3.48496,3.199683333333333,2.454423333333333,2.1155325,1.9095123333333333,3.827275,1.2733657142857144,0.8286922222222223,5.51489,3.839815,1.47149,2.4727200000000003,2.1853833333333332,2.7797,6.150698333333333,2.244913888888889,0.809061,2.564905,4.301495,2.0563566666666664,3.67917,4.97571,5.4304,4.07007,4.217585,4.93441,2.1926200000000002,2.3004333333333333,1.7012866666666666,2.241233333333333,1.957925,2.2834766666666666,2.2336666666666667,1.53108,2.709765,3.05684,3.66706,6.4179,4.38045,4.0446,4.383885,3.963145,3.85674,5.07675,0.87627125,2.8664633333333334,4.71567,1.159704,0.630696,5.02625,3.439545,2.5236899999999998,3.48512,6.057052499999999,5.41165,0.9117369999999999,1.1165357142857144,0.7170955555555555,4.229397499999999,2.3571433333333336,2.8192466666666665,1.1656814285714285,2.6907766666666664,2.660156666666667,5.3523,4.51503,4.290675,5.105,4.11609,1.2516,3.749885,1.71979,3.59767,3.69597,3.36522,2.5007699999999997,3.26193,2.725543333333333,2.910125,4.027335,3.09133,2.233695,8.530835,10.11471,4.081855,1.3992900000000001,5.54395,3.726165,4.558935,4.53088,3.732535,3.87501,3.507065,4.38075,3.560444270833333,5.58419,3.78291,3.427345,4.653875,1.8207540000000002,4.803495,5.8689,4.92322,3.3147,3.321835,7.325480000000001,0.7908916666666667,2.5874533333333334,2.77411,2.3869633333333335,5.0241,3.33723,1.2298333333333333,4.08567,3.291596666666667,3.891195,4.669285,4.175519166666667,6.68102,3.0098633333333336,2.84702,3.184063333333333,2.68387,3.84161,2.0111399999999997,2.19561,3.0114066666666663,3.99434,3.7556375,2.0233275,1.5187575,3.1348764285714283,3.040022,0.9082233333333334,2.464478333333333,2.464478333333333,1.3545775,5.80675,3.14866,3.1814,3.7217,3.18534,3.49364,3.31397,3.14296,3.419825,2.25175,0.53471,3.36559,5.616485,3.21077,3.758825,3.267765,4.10819,3.97807,3.192885,2.50943,3.726745,3.809715,2.672135,2.845655,3.562735,2.705493333333333,4.145755,3.938055,8.791,3.288295,3.83145,2.946885,4.054835,4.180875,3.728815,2.348405,3.676585,2.6231524999999998,2.86714,3.036185,3.268265,3.770855,1.65582,1.65582,2.26736,3.23355,3.194485,1.627338,2.49509,3.50169,1.7197980000000002,2.819455,1.627338,4.08775,2.957305,3.834774,2.98377,3.559275,2.25015,3.242565,4.265325,4.16625,3.423695,4.69853,3.924285,4.413325,3.581315,3.16581,3.32505,2.8777,3.98715,2.6858733333333333,3.688735,5.1516,4.20521,3.74592,0.280424347826087,3.754415,0.450555,3.60924,3.69928,3.020775,3.46933,3.713465,5.7662716666666665,3.057775,2.6271133333333334,2.42893,2.8831433333333334,0.640064,6.474683333333333,3.246705,3.485995,3.44804,1.95382,2.57902,3.400925,3.386385,6.792915,4.71664,4.771565,4.47817,4.09022,4.182175,3.67554,1.4089816666666666,1.6571660000000001,3.752185,4.431295,5.770910000000001,2.48066,4.92266,1.69678,3.4491,3.741785,1.9226588095238095,4.130985,4.8626175,3.4615666666666667,3.637966666666667,2.56068,4.457085,4.46095,3.3528000000000002,4.343135,4.42377,4.786695,4.201435,4.44348,3.829865,3.0774,4.013275,2.45885,3.1380700000000004,3.1380700000000004,4.234445,2.5667266666666664,3.939995,2.2941533333333335,4.427295,3.236776666666667,3.81137,1.88123,2.09411,1.1848866666666666,1.1848866666666666,1.664272,3.2275566666666666,1.8195566666666665,2.7973666666666666,3.973485,5.162563,3.1923066666666666,3.770785,5.68791,2.971635,2.822175,3.00644,1.6250733333333331,4.118875,3.84816,6.2573625,1.6507133333333333,5.13885,5.81195,3.2601633333333333,3.448815,4.22042,6.90891,1.8170733333333333,2.307975,3.860125,0.4681385714285714,3.486825,4.10628,4.29462,4.05363,2.812105,1.270588,1.5891959999999998,4.044245,2.917815,2.4241333333333333,3.83101,4.83952,5.0819,1.03304,3.04604,4.591915,3.62504,4.67716,2.3631966666666666,5.0305100000000005,3.867805,1.559322,3.591325,1.21095,2.7190600000000003,6.874713333333333,3.22422,0.64014,3.051335,3.967335,3.827175,1.6439625,1.6439625,5.1662566666666665,5.37515,2.891985,0.4901844444444445,1.9437775,4.365543333333333,3.97916,4.298775,1.84306,2.9588666666666668,3.11488,1.1641415789473684,1.1641415789473684,1.1641415789473684,0.7362390789473684,1.252890745614035,0.5166516666666666,1.1641415789473684,0.7362390789473684,0.2539415789473684,0.770593245614035,0.2539415789473684,0.4822975,0.4822975,0.4822975,0.4822975,1.1127523333333333,1.0329675,2.3855866666666667,2.3313550000000003,1.0878050000000001,6.542845,2.76247,5.606401666666667,2.1182966666666667,3.449235,2.87784,3.437505,2.769505,4.54568,2.9046633333333336,4.016185,4.121575,4.209355,2.06674,3.69739,4.695455,4.18124,3.31967,4.79854,3.492145,4.551435,5.52945,5.08575,6.1055,5.30985,1.1152625,4.75522,3.767665,2.783425,16.004335,4.4841,5.2415,2.6935866666666666,7.79007,4.142105,4.39925,5.1354,3.361025,1.0861325,2.57858,3.705995,4.277195,3.057105,3.20114,4.155185,2.8929833333333335,4.434075,4.50431,4.21947,6.633336666666667,7.042163333333333,1.3767857142857143,3.86681,3.93889,3.753205,3.68353,3.592315,7.2475,2.919675,2.928145,2.60563,4.0015,3.87449,4.633915,2.444415,1.765535,0.877228,4.18282,3.420345,3.56489,3.84129,3.240655,4.780745,4.14324,6.41115,6.05455,4.868395,6.65025,3.7545,3.323395,3.38818,3.432985,1.8502825,4.46243,5.6742,6.39645,5.721908333333333,5.721908333333333,2.416105,1.8502825,2.02606,2.893755,0.6975566666666667,1.4242966666666668,0.72674,1.3907475,2.465805,0.373386,2.83917,4.208005,1.3907475,2.9779995,10.72808,6.3706225,2.2151576666666664,1.00128,1.7469299999999999,4.226065,4.432165,5.531962095238095,2.01554,2.221935,3.531065,3.323775,4.501395,1.8644933333333331,5.0749,3.470966666666667,3.25161,4.88796,6.96926,3.800915,2.2991375,2.8330266666666666,1.8164266666666666,3.562005,5.0521025,1.794106,5.6432,4.631145,5.959415,0.5047753333333334,4.2077350000000004,5.62265,4.92498,2.440605,2.898075,7.3232,7.891083333333333,6.6296,2.0338833333333333,2.0338833333333333,2.0338833333333333,4.85679,4.903625,6.2756,3.695115,2.74869,2.5509544736842105,4.564305,3.39047,2.551665,1.87204,2.551665,6.953075,4.950783333333334,4.973868095238096,7.61507,4.973868095238096,4.973868095238096,3.7182714285714287,7.32793,5.655001,2.941996,2.941996,2.59319,7.1074,3.040475,3.50595,5.400203750000001,5.400203750000001,5.400203750000001,7.446915,3.6171024999999997,3.56057,3.631895,3.5034525,0.84555375,7.752683333333334,2.8019,6.77095,3.59534,12.669162666666667,4.93215,5.5536208333333335,6.84458,2.6104716666666663,3.466415,1.0966316666666667,5.5536208333333335,3.402195,1.6716225,1.6716225,3.21208,5.322871666666667,1.7650625,4.90603,0.8879810000000001,1.4751633333333334,0.8879810000000001,1.892005,2.6530435,5.5786109999999995,4.014035,1.4751633333333334,3.105865,5.02833,1.08515,3.626115,4.3629,1.995335,4.003825,1.9961,3.276475,2.74685,0.9379419999999999,3.559545,2.435195,2.02603,1.8499633333333334,3.3165733333333334,4.093485,2.69045,3.558865,1.4006466666666668,1.4006466666666668,1.4006466666666668,3.82314,2.922803333333333,2.922803333333333,2.52895,3.824145,2.1111400000000002,1.2402775,1.2402775,2.913785,5.3819975,0.9052675,1.4435900000000002,2.822835,1.330495,2.7740850000000004,0.9379419999999999,0.9379419999999999,1.7683616666666666,0.9379419999999999,3.320281666666667,0.8407583333333334,3.320281666666667,6.05537,3.61924,2.4063433333333335,1.826518888888889,0.6129166666666667,2.439435555555556,3.66876,2.439435555555556,1.002938888888889,3.442765,3.92339,3.989955,3.582595,2.79252,3.815075,2.041656666666667,0.8996286111111111,0.4702775,0.8996286111111111,0.42935111111111113,0.8996286111111111,0.8996286111111111,4.55988,4.4558,5.9298,3.42192,4.239645,4.12429,5.2388,3.44418,3.796305,1.3664299999999998,2.3036733333333332,4.129734166666666,3.94023,1.3982066666666666,2.63598,3.87357,3.920215,4.02169,3.24502,3.912965,3.39848,3.14734,4.278595,2.147533333333333,6.0715,3.640005,3.842765,4.379955,0.9312739999999999,2.2573,3.22784,5.89673,3.785885,3.197335,3.0167066666666664,4.060745,7.013886666666666,2.867903333333333,3.83223,2.5483166666666666,3.69949,4.065545,5.55175,5.324,4.00133,3.099655,5.42355,4.62199,3.4675999999999996,4.238615,3.1923133333333333,2.253825,2.3348733333333334,4.728985,6.56015,4.49169,4.844775,3.92193,4.79591,5.57575,0.4927969230769231,7.06922,4.41468,3.669015,3.637175,4.413885,3.81922,2.8544300000000002,2.425215,1.3318833333333333,0.5695269230769231,1.7623380000000002,3.19499,3.090115,3.55306,3.60536,3.995935,11.514263333333332,3.900955,4.041975,2.87996,0.6676266666666667,5.41418,3.0837066666666666,1.6355433333333333,4.71925,5.821501666666666,2.737795,8.50525,4.749065,2.1572,2.1572,2.1572,4.697845,9.29434,3.36376,2.606025,2.606025,3.648715,10.3019,1.01919875,4.569835,4.40509,4.06769,2.8067666666666664,2.4632166666666664,4.409915,4.07098,6.45995,6.230016666666666,3.98618,2.90389,3.92241,4.147365,3.2287255000000004,1.1212275,2.6696066666666667,6.23386,3.1697474999999997,5.1787,0.87640125,3.684366666666667,2.1676333333333333,2.5782133333333332,1.75615,1.8113599999999999,2.14904,5.34045,1.98962,4.49779,5.3004,1.7393399999999999,4.70895,3.6762,4.720555,3.1834633333333335,2.235675,2.750895,4.019925,3.983881666666667,3.983881666666667,1.131635,1.5713666666666668,2.6212633333333333,4.389490333333333,2.2173849090909092,4.890863333333334,1.7580300000000002,2.5644466666666665,2.1497699999999997,1.5973875,1.5973875,4.29359,7.220573333333333,1.84589,2.8419066666666666,2.155805,4.675495,3.1142,0.8321,3.077025,0.8321,2.59972,3.40722,5.35555,5.249,3.89374,4.559395833333333,5.68685,2.34472,1.93797,3.249843333333333,2.26133,6.06155,4.67731,2.56516,3.989965,2.57552,4.33366,1.10875,1.140832,1.8397033333333335,1.2046516666666667,2.7083633333333332,2.62554,2.22908,2.64113,2.64445,4.559935,2.55377,2.4134466666666667,2.78311,2.36077,2.7681233333333335,2.7051166666666666,1.9647933333333334,2.6088766666666667,3.98556,3.615115,3.32092,2.553645,2.817816666666667,2.1165775,1.8499775,1.1998366666666667,0.303474,0.13473130434782607,2.1369700000000003,1.7892733333333333,0.13473130434782607,3.6185863043478257,1.8419875,0.13473130434782607,5.657890486111111,2.12269,6.19433,3.491435,3.119073333333333,2.5614333333333335,2.8237666666666663,2.18493,4.40841,2.9322433333333335,3.21132,0.3897878947368421,4.013293333333333,2.6503712280701754,3.04106,1.822725,2.5328,4.298175,2.618055,8.05732,4.93466,3.23996,3.912735,6.69811,6.14618,1.6921733333333335,4.152200000000001,2.115205,2.149015,6.49964,7.65439,1.3629833333333332,2.092075,4.001275,2.63613,2.807395,3.025385,2.553995,4.710085,2.482785,3.0921,3.24785,3.295085,7.71487,1.2514633333333334,2.0359,2.75751,3.21103,1.8978666666666666,3.45137,1.4542,3.75925,3.432105,6.51566,3.366605,9.4344675,3.383115,1.547436,1.6568433333333334,3.07846,5.53713,1.57645,1.5122833333333334,6.01275,3.548625,4.113315,2.71704,2.11645,3.303535,10.796185,5.0446,6.68158,3.503965,2.26287,2.329435,2.69444,2.984655,3.18506,1.5858100000000002,1.6470633333333333,2.6161733333333332,3.523015,1.80636,3.527485,2.75004,4.01355,3.882405,3.745705,1.07507,2.793285,1.0427166666666667,1.382542,1.65146,3.3584,3.59629,3.837795,2.7605,3.89597,4.035345,2.76344,1.460294,3.565145,3.55343,2.965375,1.813895,3.111035,3.54392,1.47806,3.44889,1.5949900000000001,4.21087,3.75632,4.35822,2.65641,3.95155,2.05114,3.30424,5.7131,1.73216,1.0861271428571428,3.4326666666666665,2.66969,4.22589,4.30208,3.089,4.558375,4.79064,2.2001933333333334,5.08225,5.490725,6.63465,3.885305,6.166697666666667,4.06513,1.6742666666666668,2.835096666666667,4.454645,4.63417,2.480446666666667,6.982022,1.1047542857142856,3.2432766666666666,2.146685,1.779232,2.416043333333333,2.7540333333333336,0.382005,2.761206666666667,3.8366333333333333,3.48016,2.778085,3.3310099999999996,2.3206700000000002,2.4561433333333333,2.08506,8.860579999999999,4.81181,2.05452,5.46995,2.4819489782608697,0.7320719743589743,2.57602,7.190747333333334,1.6486999999999998,4.3981475,5.906,1.5411325,1.6172525,1.39226,3.97491,3.21381,4.43708,3.906085,2.43078,3.70084,0.86966,2.7293499999999997,4.178265,4.158995,4.78361,2.706635,4.962645,4.300535,4.101045,4.726975,5.55305,5.00055,3.811335,5.75265,1.7559339999999999,1.93824,2.83081,3.410125,1.1120777777777777,3.761145,2.23264,3.257153333333333,4.29595,3.1260433333333335,2.4205799999999997,1.5505533333333332,2.9913399999999997,2.873781666666667,2.672416666666667,2.9348166666666664,1.9842366666666666,2.1789,2.384575,3.54346,4.291735,3.634015,4.528445,3.40531,2.39893,2.93472,4.86958,3.8948,4.54541,3.049785,2.259595,4.4651,1.71118,4.1232,4.726909166666667,5.898577738095238,3.58767,4.25423,5.25515,2.948753333333333,3.8529958333333334,4.567535,3.55925,3.8275215,3.51616,1.36663,3.20554,1.86909,2.35846,5.08445,5.06068,3.8275215,4.045105,3.43272,1.5026783333333331,3.510235,2.03929,2.42686,2.094345,2.76299,1.6039568181818185,1.6039568181818185,1.6039568181818185,0.5516718181818182,0.8047033333333333,2.0682883333333333,1.103305,3.763865,1.2659233333333333,3.68344,5.1837,4.450075,3.299995,4.050575,3.20215,4.886095,1.49315,3.069665,2.831045,3.347865,5.9156770000000005,4.033435,5.0222,4.089395,0.9757125,2.40663,1.2937366666666665,3.861395,3.89753,4.38168,5.04435,4.35706,3.694395,4.291825,3.68594,1.701675,1.1013916666666665,5.223456666666666,1.0586833333333334,1.3372033333333333,2.5554433333333333,8.11381,2.914055,3.839405,2.730825,5.7348300000000005,1.71016,1.0575433333333333,1.5502925,3.177315,3.648395,3.83011,3.817905,1.910415,6.680155,2.9264033333333335,0.9306425,4.475495,2.8541399999999997,2.67047,2.3705933333333333,3.4827666666666666,5.7231708333333335,2.6868499999999997,3.0799033333333337,3.4846333333333335,2.46832,2.7220633333333333,2.9394533333333333,2.693545,1.9795125,4.582215,4.585195,4.765855,1.0447133333333332,0.7445630000000001,3.8795333333333333,2.7009666666666665,1.01169625,2.685029583333333,3.32693,4.091195,6.976089999999999,4.62883,3.529666666666667,1.7997219999999998,3.547035,3.754335,2.6050633333333333,2.519974,3.62244,2.812856666666667,4.902066666666667,0.8362833333333334,2.74858,1.7991879999999998,3.743455,4.09174,1.94253,1.12002,3.097,0.433158,3.42309,6.7429,5.3503,2.7941960000000003,1.5496320000000001,3.979366666666667,0.8100811111111111,2.60843,0.8100811111111111,4.00955,4.692685,1.288045,1.7018625,5.229473333333333,1.8857233333333332,3.48079,2.556285,3.434825,1.237384,1.5529933333333332,4.16907,3.99807,5.27695,3.0166839999999997,2.86565,3.20335,1.6120225,2.3044775,1.8092375,1.8779525,4.50895,1.467311111111111,1.467311111111111,2.996945,4.839771333333333,8.135490833333334,4.27564,7.605,2.28853,3.911195,4.06653,1.6568066666666665,3.4448041666666667,3.779755,2.926675,4.613265,3.1163,2.566465,2.7221666666666664,3.728405,1.068855,4.15209,4.49158,1.148005,7.67251,2.784945,3.2988,3.6085383333333336,5.14405,4.91296,3.3122875,2.302653333333333,2.8132133333333336,2.0338499999999997,3.805633333333333,2.2990725,2.1538525,7.356066666666667,3.3202366666666667,2.942216666666667,4.45998,21.823760787545787,0.68406,2.763625,4.5169,4.54429,8.68414,4.643795,4.75446,4.409295,6.853388333333333,3.689045,1.6396233333333334,4.912623333333333,3.338215,1.190038,1.190038,1.190038,2.3122137499999997,1.63391,3.407565,1.5458825,3.17553,1.4667133333333335,2.61096,2.529475,2.93809,1.5458825,3.35723,2.738955,4.134993333333333,4.815763333333333,4.839725,0.7375833333333334,3.22852,2.83463,4.654175,3.526055,3.01829,2.34494,1.748855,2.35184,1.456304,3.477025,1.6627025,4.485705,10.748440833333333,2.741286666666667,2.4102,4.53867,4.792033333333333,4.4985333333333335,6.53725,2.2605833333333334,5.430386666666667,4.397755,0.97959,1.2188042857142858,6.536152,4.221055,2.360945,3.72434,1.90633,3.521705,4.58585,4.405365,4.00808,1.252012857142857,4.24885,4.672355,4.572895,6.282052,3.30883,5.42995,4.390845,4.457705,5.0797,3.4822333333333333,4.8426,1.945975,3.3436,3.0689,3.294465,4.608005,6.31775,4.532345,2.786566666666667,3.635733333333333,9.22899,4.64375,3.1655266666666666,3.500145,3.192855,4.46973,4.35942,4.541765,6.735566666666667,3.484375,2.6907866666666664,3.9230666666666667,2.398905,4.223085,2.1341233333333336,6.378450000000001,1.625555,4.41968,4.65326,11.699019999999999,0.4926871428571428,4.34884,4.961615,0.6354428571428572,3.670255,3.947585,4.01154,0.912234,4.668135,4.982246666666667,2.65881,9.846803333333334,3.2248133333333335,1.8272300000000001,2.33766,3.351325,5.927,0.583035,3.87229,2.0100125,5.44185,0.7020700000000001,4.205085,5.54375,6.13405,3.586575,6.34637,4.637565,3.5591825,2.55027,2.8235233333333336,4.3101,4.386125,4.87893,4.97658,5.54885,3.07668,6.558590000000001,2.533825,3.0288850000000003,1.8815925,4.123945,2.043486666666667,1.5518733333333332,3.1183566666666667,2.901533333333333,3.23794,3.3977,3.6650666666666667,3.0050033333333332,2.6057900000000003,5.4899,3.1965833333333333,3.815905,4.885685,2.543693333333333,1.1407777777777777,2.96612,2.9851233333333336,3.62297,2.7740733333333334,3.0126033333333333,4.71719,2.03097,1.6947,3.179095,3.82564,4.3347,1.08909625,4.142075,3.18394,3.9676666666666667,2.8934166666666665,4.7637215,3.991455,3.355815,3.91149,1.591415,3.89396,0.6275875,4.571715,4.98946,16.990314545454545,3.0545766666666663,1.1875583333333333,4.139595,0.6150007142857143,2.663625,4.36736,1.95263,1.2191271428571429,3.547975,4.526045,3.082316666666667,0.8086466666666667,2.57931,8.20126,3.85713,5.38055,4.837005,5.03395,3.18253,3.7494666666666667,3.1759,7.322121666666667,3.825855,4.95407,1.9087125,0.44892388888888884,2.28024,3.316865,2.08069,3.38881,3.634855,2.87717,4.750605,0.6876941666666667,4.38476,3.637175,2.604655,1.19979,2.70622,1.99007,4.91251,3.999635,2.265475,1.6109428571428572,3.314685,4.27003,4.238045,6.0446116666666665,2.1970966666666665,4.64445,4.35909,3.639405,1.89363,3.83187,5.945088333333333,4.544555,2.428375,5.02915,2.66542,2.619815,3.696175,3.91432,1.3764649999999998,4.693365,1.9773466666666666,2.4337633333333333,5.0110133333333335,5.0110133333333335,5.31195,1.456642,5.09395,0.8902375,1.7347639999999998,5.06905,2.50319,1.4616966666666666,3.0109666666666666,0.957234,4.290733333333333,4.937275,2.75561,4.69754,3.772055,3.582505,5.3233875,3.450695,3.6948333333333334,2.5484066666666667,2.3475233333333336,2.757425,2.9056200000000003,4.21633,1.6705271428571429,2.9324833333333333,4.37113,4.48416,2.0819691666666666,4.2929,4.52759,4.802441666666667,3.3032966666666668,5.10495,4.74277,5.27625,4.823895,3.52564,3.715505,3.66514,4.39911,5.3667,4.577925,4.79797,4.536705,4.607005,0.6947,4.95134,4.40399,3.918795,6.9980775,3.968295,3.67211,4.253905,4.724095,3.630535,3.570365,2.0225737500000003,4.4979925,1.749505,1.3223685714285713,3.691495,2.0764766666666667,2.5514966666666665,3.862422,3.3904333333333336,2.79942,1.15669,1.873245,4.55975,3.620365,1.8859625,1.8859625,3.296,1.608596,3.157773333333333,4.42361,3.641005,3.72752,1.44655,2.15119,3.4746733333333335,1.981245,4.081725,4.27328,4.54253,4.129155,6.622766666666667,2.663825,3.738885,4.301595,4.45272,3.1987966666666665,3.994435,3.86191,3.973355,1.805585,2.34653,4.464875,3.86083,3.564835,3.713245,1.6816425,3.69593,4.27248,4.49783,4.204985,3.7382999999999997,3.7382999999999997,3.035905,3.84202,4.01764,3.641615,1.607336,7.2718175,3.942595,4.876115,4.37323,3.95191,3.853765,4.874755,2.858365,3.05601,2.913145,5.0225,1.7881139999999998,4.08441,5.356012777777778,4.94738,0.717419,4.786598333333333,1.185,4.77034,4.57654,4.38241,4.1345,5.12495,3.6193666666666666,3.6193666666666666,0.850212,2.3308625,4.85491,3.462425,3.72636,5.00465,5.4338,3.33672,3.99809,1.3012599999999999,2.675975,1.640885,1.2926625,4.244988666666666,0.8642989999999999,2.3253633333333332,3.1352466666666667,1.2970966666666668,1.967555,2.7017100000000003,1.25024,6.64978,2.01284,2.50592,5.6414,1.8631625,2.747123333333333,2.77901,4.58132,3.7993,3.2710033333333333,3.9962,1.673762,2.1680183333333334,3.98592,0.6547757142857142,2.133036666666667,2.291781666666667,3.0974299999999997,2.848743333333333,1.1443814285714284,0.828445,2.4880166666666668,4.18202,1.1655642857142858,2.09212,1.21392,5.370324999999999,2.242025,5.03315,4.28868,4.158845,5.1651,5.2939,3.930775,4.195295,1.3219416666666668,3.9446,1.7298760000000002,2.4027499999999997,1.2100000000000002,4.487265,2.0400675,7.305680000000001,3.97521,3.766705,1.44832,6.9251499999999995,3.30718,1.449885,4.24041,3.025725,3.722535,3.037385,2.038745,2.038745,3.13988,1.3097033333333334,1.3097033333333334,1.89363,2.8799966666666665,2.0966825,1.3438333333333334,3.477933333333333,1.06593,3.1138399999999997,2.328245,1.8622875,1.4809316666666668,2.218205,1.9993875,0.30329117647058823,2.3552725,1.19008,2.3586233333333335,2.1497699999999997,2.35838,1.050318888888889,1.1022880000000002,3.8844666666666665,3.06603,2.038745,1.80544,2.1847866666666667,2.5262733333333336,2.437656666666667,1.79483,3.294093333333333,1.1064500000000002,3.2421733333333336,2.63357,2.608706666666667,1.559836,0.92853,2.571675,0.92853,2.571675,0.69919,0.69919,0.4728494444444445,2.221025,2.2001,0.69919,2.21269,2.32672,2.44319,1.65428,0.7917000000000001,0.69919,0.69919,1.66107,1.66107,2.0702225,1.80544,0.69919,2.23434,0.4828753846153846,2.8263833333333337,1.9736333333333331,2.5123633333333335,2.5498066666666666,2.5498066666666666,0.38611650000000003,0.38611650000000003,1.89363,1.967548,2.10272,2.0148,0.38611650000000003,3.481733333333333,2.31727,1.584272,0.625025,1.584272,0.625025,7.18763,2.57725,4.031733333333333,2.6366466666666666,2.908393333333333,2.9886700000000004,2.7919366666666665,3.4707666666666666,2.47789,1.6426675,2.53429,2.867903333333333,2.384723333333333,1.66107,2.6071296825396826,2.6071296825396826,2.7990866666666663,2.141005,4.27939,2.3441533333333333,3.15526,2.7997833333333335,1.4453179999999999,2.2616325,2.1988625,0.7932127272727272,1.712955,3.71679,1.6641400000000002,3.07315,2.4353599999999997,2.6257,3.8699999999999997,1.6543283333333332,3.483033333333333,2.9984800000000003,4.260933333333333,1.219942,0.23336344827586208,1.3062742857142857,1.3062742857142857,0.9730777777777777,2.925823333333333,3.8034666666666666,2.29507,2.0980866666666667,2.0980866666666667,2.123655,1.5949900000000001,0.925831,1.7382033333333335,1.7382033333333335,0.69919,1.89363,2.9356266666666664,3.14782,2.328245,2.20578,2.20578,2.20578,1.1024066666666665,1.437542857142857,1.437542857142857,2.3697575,2.594063333333333,2.6008962058080805,3.612175,2.53988,2.4473233333333333,3.67899,3.91039,6.4554100000000005,3.36274,4.23776,3.9888,13.466940000000001,4.722425,3.42711,0.96644,4.000595,3.330075,2.29524,3.72903,4.81085,6.148908333333333,5.8813,0.4699652941176471,3.6529,3.32914,3.77093,2.43675,4.406275,4.387685,3.85463,8.256855,3.568855,3.90133,4.029255,3.2834863636363636,7.843937538461539,3.074403333333333,2.6697366666666666,3.643445,3.546125,5.03355,3.79744,6.406691,3.19447,1.351802,2.747705,0.92623875,4.54293,2.723505,2.735425,3.974645,2.975865,2.631145,4.58997,3.891565,7.224175000000001,4.061015,4.726093,2.3349433333333334,5.01629,3.078995,1.1061025,1.1061025,3.50372,3.95875,2.261715,2.11979,4.064745,2.855135,3.05715,1.85771,1.90427,2.86594,2.487973333333333,1.1031275,3.215245,4.70609,8.47083,1.53366,2.61229,2.90999,3.085255,2.7831166666666665,8.48665,4.08435,3.4344,2.6656866666666668,3.98704,3.243346666666667,2.9036866666666667,3.116476666666667,3.850715,3.906185,4.280665,4.076175,0.391026,1.5252766666666666,2.38016,1.770335,4.452295,3.529005,2.6681566666666665,2.21306,4.33146,3.67567525,1.9952275,2.549865,0.870223,2.12328,2.56935,2.56935,4.91569,1.902355,2.7752833333333338,2.3877200000000003,2.0361733333333336,1.7209433333333333,3.178115,3.95534,4.66946,4.18317,5.23045,4.69068,2.92946,2.91283,2.03636,4.71914,5.360433333333334,1.8666966666666667,2.98058,2.06412,2.1427566666666666,3.659465,2.26529,5.1606,3.70098,3.53624,4.30185,2.97066,3.664925,3.992995,2.3432166666666667,2.60347,0.4233635714285714,3.6717666666666666,2.54644,3.008405,6.06695,4.70407,5.705494166666667,1.8804675,1.5438266666666667,3.058565,5.1021,6.30265,5.86315,2.8178966666666665,2.256676666666667,3.57358,2.240203333333333,4.528445,2.01179,2.292705,5.14215,4.68174,4.251465,1.74599,1.921915,1.0675620000000001,1.0675620000000001,1.217932,0.9032571428571429,0.770174,1.838733142857143,4.35399,9.8534925,3.89691,4.22374,4.061245,5.90604,2.645895,1.6696733333333331,3.2965616666666664,2.9904,4.89783,2.3146299999999997,2.5120833333333334,2.8484133333333332,3.1742000000000004,2.205836666666667,3.117703333333333,3.165703333333333,2.908466666666667,3.4443,3.3392,2.8357566666666667,2.6830833333333337,3.22532,2.424,3.1575333333333333,3.0397499999999997,2.9733933333333336,3.288123333333333,2.03692,5.540962476190476,3.087346666666667,4.142286,3.29179,3.0786866666666666,3.7974,2.8450966666666666,2.6247266666666667,3.0792866666666665,3.2835366666666665,3.4893,3.1106033333333336,1.7894875,2.7575533333333335,2.63712,2.848425,2.848425,3.3145233333333333,3.0762300000000002,2.4839266666666666,2.8054900000000003,2.90551,4.1718,2.8967833333333335,2.829475,2.7207833333333333,2.8814966666666666,4.363733333333333,4.812045,1.62042,3.4181333333333335,3.8423,3.324668,3.2454666666666667,3.6971666666666665,3.2718633333333336,2.9082266666666663,3.527584,1.858332,2.7750440000000003,3.4077,3.28075,2.5688333333333335,2.370296666666667,3.9289666666666663,2.8857166666666667,3.0877733333333333,2.3891025,1.0248983333333335,3.1677466666666665,2.53559,2.1172566666666666,2.401725,2.9577466666666665,3.0845766666666665,1.930518,5.546776,2.38224,0.889966,4.3491,1.8106775000000002,1.56462,4.331745,4.062385,3.35444,2.328875,1.3311525,3.44777,2.646555,2.61694,0.38329599999999997,2.106255,0.38329599999999997,1.81374,1.3311525,2.72149,3.746295,2.301315,3.10847,3.40135,0.4561733333333333,2.7420733333333334,0.95725,0.4453335294117647,3.577095,3.88681,4.954145,2.44938,5.33065,4.17742,3.844605,2.22327,3.9421666666666666,1.635062,5.13325,2.376595,4.26379,4.45091,2.97307,1.9043033333333332,2.070203333333333,1.320845,1.851515,1.0604175,1.0604175,4.52398,2.179256666666667,5.998546666666667,2.58905,2.42582,1.981465,2.35396225,2.755475,6.7936,4.930842500000001,2.1753675,2.3759633333333334,2.35396225,3.01268,4.72854475,2.9272787499999997,6.237403333333333,2.58905,3.39751,3.434635,3.0389366666666664,5.6127,4.78091,1.85637,2.0929325,2.36407,2.235985,4.83484,5.2556,1.8798875,3.713655,1.6250733333333331,1.6624025,5.2028,10.173353333333333,2.0332933333333334,2.0936866666666667,2.4397333333333333,3.942615,4.116865,1.8851675,4.67611,4.570775,2.895075,38.93882051190476,2.7825733333333336,2.94992,0.3953527777777778,4.557353333333333,2.0285266666666666,0.8986977777777777,3.89176,3.57691,1.792905,1.7942175,2.3640633333333336,3.652135,1.3830485714285714,3.201811,3.63575,4.731335,0.918366,4.802975,5.11335,4.75432,2.6617466666666667,1.5753925,3.75685,4.49324,3.524045,3.13666,3.66085,3.80522,11.446120252525251,2.6394800000000003,3.097,3.787715,2.87627,4.21,3.304645,2.975095,3.05907,5.3686,4.47405,4.952565,5.0226,2.58798,3.47674,4.21126,3.69892,4.696215,4.29947,0.12331086956521739,2.3703,5.06175,2.97259,1.6792166666666668,1.1758,1.1758,2.20807,2.628395,2.96944,1.9418579999999999,2.92116,4.482805,2.504985,4.610801666666667,0.5744992857142857,4.65702,3.45875,4.766985,4.61546,4.368215,1.1638725,1.04397375,4.350533333333334,2.962536666666667,3.0487966666666666,3.911400606060606,3.912175,6.0308600000000006,5.3951,3.82093,3.532125,2.1275608333333333,1.47535,4.482005,0.320832,3.36105,3.86166,4.02025,14.134530000000002,1.99593125,3.0369233333333336,0.77876125,4.58364,8.80805,3.43314,1.7399433333333334,5.78415,3.136893333333333,1.023772222222222,5.0583,2.97548,3.027455,4.75488,3.4526630555555555,0.9794425,6.644616666666667,0.7481475,4.91446,3.1999110555555554,1.3868975,2.131168388888889,3.3064325,3.3064325,3.94274,4.348041666666667,1.2844,2.451095,2.777855,3.779225,3.42047,2.530375,2.945305,3.40466,6.861035333333334,6.3473,4.211515,3.338375,4.63512,4.492115,3.562295,3.499495,3.56532,3.84242,4.1934,2.5731266666666666,2.6468166666666666,1.591385,2.3103433333333334,2.211455,1.565835,2.750023333333333,3.591833333333333,3.484166666666667,2.9344433333333337,2.5085366666666666,1.57934,1.60203,0.4687518181818182,2.4239266666666666,1.6088285714285713,1.8379525,3.4962999999999997,2.5035700000000003,2.6466366666666667,0.9375775,2.2214875,2.649715,2.84886,3.654095,5.2835,3.80975,2.99998,2.2650166666666665,3.40773,4.209445,2.452245,3.99826,1.950755,3.92361,2.82013,4.114935,1.3271666666666666,0.623554,2.2328,3.369805,3.15048,3.96275,5.07732,8.90079,3.323323333333333,2.2153300000000002,1.8200866666666666,1.740936,1.740936,2.92244,2.45395,4.779575,4.33622,3.389185,4.76275,4.011425,4.16718,3.0784808333333333,4.25071,7.781325,2.4968575,0.502269375,3.2837666666666667,1.3148066666666667,1.0333114285714287,1.9494933333333335,0.78249,2.058655,5.64605,4.995995,5.785810000000001,0.947135,7.51634,1.9520620000000002,1.5474766666666666,2.4012533333333335,3.768255,3.326283333333333,2.30087,3.431155,2.9677433333333334,4.191666666666666,2.9027600000000002,2.70631,2.9954,6.738815,2.531685,3.96051,3.787935,3.7345533333333334,1.5898233333333334,1.23921,4.385395,2.8876066666666667,3.17628,5.38208,2.50524,2.18788,2.352715,3.15783,3.8053333333333335,2.2958866666666666,3.6350266666666666,2.9228199999999998,5.44765,2.4270154166666664,1.8671875,4.69989,5.1903,4.318055,3.90125,1.4968333333333332,2.152895,1.93313,3.432105,1.5333533333333333,0.85175,2.641565,2.1013075,1.913845,4.30459,0.6935841666666667,5.5249725000000005,1.4031225,0.7581118181818183,3.5583666666666667,3.904325,0.65693,3.068023,3.1896649999999998,0.828445,4.178625,0.17530071428571428,0.17530071428571428,0.17530071428571428,0.17530071428571428,0.17530071428571428,0.17530071428571428,1.937366,3.896485,1.937366,1.937366,1.7714633333333334,0.17530071428571428,0.17530071428571428,3.3660666666666668,2.3771633333333333,3.44957,3.29808,2.29339,3.5874,1.335207142857143,1.550338,3.2287255000000004,1.366656,2.6943266666666665,2.639473777777778,5.43643,3.89502,3.837295,6.6003,4.364875,4.512665,3.654195,3.790095,7.229046666666667,4.0218,3.705833333333333,2.223,5.024756666666667,2.55865,2.0920575,1.6937,4.45421,5.14975,5.034,4.97133,5.47575,4.106825,4.587535,0.6956181818181818,0.6895835714285715,0.6895835714285715,4.768335,2.359183333333333,3.756525,1.0247942857142858,4.34639,1.4286142857142856,2.3368166666666665,2.61562,4.538833333333334,4.538833333333334,6.8829,4.79597,1.2933700000000001,9.537688333333334,2.8657066666666666,1.2299111111111112,5.0632,5.18765,3.694095,3.01809,2.58989,4.1473,0.8227066666666667,3.2867833333333336,3.4422333333333337,3.790233333333333,3.1381033333333335,1.49188,1.4110266666666667,4.824298333333333,3.2156533333333335,3.3038900000000004,3.4949,5.279254166666666,3.4710425000000003,0.802168,1.7865399999999998,3.7817333333333334,2.1338733333333333,3.735533333333333,3.491,3.0229700000000004,3.3333999999999997,3.050193333333333,2.430563333333333,0.9276666666666666,3.1150366666666667,2.457803333333333,3.450685,3.086415,3.652975,2.73358,3.36,3.035375,1.607678,2.0828433333333334,2.626996666666667,3.5290666666666666,1.79708,3.2985633333333335,1.7986333333333333,3.796666666666667,5.216018333333333,5.024320666666667,2.412605,2.5581,2.84315,2.4881575,1.6530285714285713,2.1757875,3.313036428571429,2.528225,3.5935333333333332,2.970865,3.735416,3.04718,1.2713444444444444,1.2962125,1.7584175,2.199015,2.9789033333333332,3.5750666666666664,4.93165,7.8928,2.67488,5.0648,3.59978,15.189641,0.518535,11.243735000000001,0.8311222222222222,3.476625,3.7778333333333336,3.12018,2.97336,1.627552,1.460294,2.3928933333333333,1.176732,2.834548,1.8833133333333334,2.8499766666666666,2.1571766666666665,2.5420366666666667,1.5866433333333332,0.6148933333333334,3.0023999999999997,2.464253333333333,2.7959066666666668,1.1024066666666665,3.4878,0.7364575000000001,0.3542746153846154,1.9144766666666666,4.26075,4.62556,4.321125,0.7587018181818181,3.9329,4.74869,1.1569425,2.385005,5.3140425,3.43147,3.804375,3.86252,3.877695,1.882875,3.889235,2.64647,3.279425,3.6252,2.869745,2.688695,3.86555,3.276745,3.70962,2.012515,3.554995,4.22806,1.4118700000000002,4.43527,2.27319,4.15813,5.157866666666667,1.9282475,2.6616500000000003,2.956253333333333,5.748871666666667,2.48087,3.120465,4.818335,4.031733333333333,4.122205,1.9264866666666667,2.75875,4.42396,3.539766666666667,3.89131,3.609833333333333,3.02183,2.9036233333333334,4.2107,3.185116666666667,2.68242,2.68487,0.4559866666666667,2.543475,2.0969025,4.393425,4.676865,2.9987033333333333,2.5841333333333334,3.1662433333333335,8.293625,3.627785,3.880285,2.8572666666666664,3.96961,2.973625,3.6578258333333338,2.7243366666666664,2.1699625,2.6651833333333332,6.29555,4.721595,2.12657,3.314615,3.058405,2.8012033333333335,4.322266666666667,1.7822559999999998,6.08058,3.89562,4.86554,4.21624,6.4688,3.68947,6.792433333333333,3.55239,3.181595,0.6180042857142858,2.17191,1.5083325,2.877273333333333,3.11293625,4.231595,4.05875,4.97567,2.617856666666667,4.4489,3.600733333333333,3.8127,3.31591,4.36633,4.59006,4.521285,2.7142366666666664,5.837925,4.52016,1.4619816666666667,5.32775,3.37769,2.67349,2.17341,2.35833,4.388528666666667,1.2453285714285713,2.33219,1.9998125,3.91964,4.29631,2.5609966666666666,3.3464666666666667,2.9868433333333333,2.31256,3.905235,1.3527,2.2602866666666666,2.3900833333333336,2.867456666666667,2.6004633333333333,2.5916533333333334,2.7542299999999997,3.990045,3.0876066666666664,2.83424,3.984195,2.142135,3.69257,3.589815,1.4451469696969697,1.4451469696969697,4.46602,2.7639033333333334,1.792905,1.2972625,1.9681325,2.0046275,1.373194,1.4974233333333336,0.654482,1.60789,1.4373966666666667,2.99204,2.2046433333333333,1.8511166666666667,1.9761366666666669,2.3548533333333332,1.4687533333333331,1.8066266666666666,1.9347233333333334,2.527225,3.801165,2.944575,2.8123733333333334,2.6265,5.52365,2.89715,4.336895,4.02083875,1.99012,4.048375,2.805,1.87636,3.53279,1.893315,2.89506,3.614945,1.855795,4.486775,3.95663,4.292395,3.27152,0.7922433333333333,4.94728,3.835655,3.34836,4.09095,2.3308833333333334,4.31854,4.830005,4.72864625,8.990900833333333,3.344915,4.397565,2.720803333333333,3.62731,4.32069,2.334055,2.92926,3.749735,2.05814,5.86059,1.85472,2.744055,5.697934999999999,2.8082666666666665,4.291568,1.188007142857143,4.200725,4.12723,3.0730133333333334,4.94009,4.631775,6.449835,15.323978928571428,0.6353176470588235,1.050318888888889,2.8604066666666665,3.672485,3.53082,2.14399,3.3009,4.15753,4.93327,2.48635,4.40731,1.67025,1.67025,5.12955,0.7649345454545454,1.724726,2.978815,4.053465,0.37243076923076923,1.99846,3.9177531666666665,1.167655,3.1000433333333333,2.80543,2.947945,8.23164,2.5935566666666667,3.846833333333333,2.03943,2.24788,3.6209375,3.47787,3.40452,7.1076231666666665,2.0532925,2.85465,4.55333,6.8127949999999995,1.913,2.3262666666666667,2.586793333333333,1.3616566666666667,2.494555,1.69024375,3.93889,3.90065,1.5488175,1.8610386666666665,1.8610386666666665,2.99741,5.43785,3.91271,3.88714,4.482305,4.19863,3.22082,3.748915,4.503055,3.50519,4.378466666666666,3.441055,4.435455,0.8894420000000001,0.36680625,5.30495,3.886235,2.4676566666666666,8.05602,1.60017,4.701833333333333,4.15135,0.36105666666666664,2.0564633333333333,1.3224500000000001,1.8753433333333334,2.0593166666666667,5.574336,3.198365,3.193145,4.9302725,4.906995,4.699165,0.5870784615384615,1.880825,0.604321,5.864878333333333,1.38334,4.939185,1.94463,3.22535125,3.25595,4.15627,3.959045,5.3245,0.8676663636363636,3.24485,3.863255,1.967845,1.664295,3.72128,3.06945,3.560135,3.83556625,5.323171428571428,4.58505,5.6392,2.8328666666666664,0.5328288888888889,3.2888966666666666,3.591845,0.5833630769230769,3.95129,3.86307,4.102365,3.415795,2.7255800000000003,4.781505,3.2242,3.081055,2.19043,3.88304,1.613616,3.47961,3.85515,0.5674230769230769,3.56454,3.93462,3.165345,3.81364,4.48864,2.686315,3.924565,0.618268,2.9545933333333334,3.6621699999999997,4.342785,3.5077,2.47631,3.4294,2.47631,4.965705,3.000675,2.9622566666666668,1.5034716666666668,3.1561299999999997,1.7637025,4.214865,2.8056066666666664,4.93704,3.0098800000000003,2.6420333333333335,3.0015933333333336,2.3106651785714285,2.3106651785714285,2.3106651785714285,2.18539,1.0893033333333333,4.633785,2.498883333333333,1.6984833333333331,4.0051,2.4530566666666664,3.05564,4.136805,5.684,3.239315,1.8441075,0.9713200000000001,4.059125,1.952004,2.148433333333333,3.096775,3.322125,2.02359,3.42453,2.70491,1.6275480000000002,4.94315,4.16749,3.168125,3.743435,0.7647066666666666,2.4278766666666667,4.361015,7.6956299999999995,3.932405,2.95337,3.08475,3.496755,3.906905,1.66187,2.3981925,4.43453,2.0727775,4.366285,3.202425,5.19175,8.307383333333334,4.088895,3.231275,3.42217,4.816485,4.02838,3.257815,3.257815,3.669505,4.059811666666667,4.18965,4.025465,4.238275,4.53214,4.012725,1.0955775,4.34337,4.090705,5.1479,7.975579999999999,4.89725,3.721667333333333,1.8826433333333332,1.4995016666666665,2.3206949999999997,4.974135,3.715265,4.96991,2.1454066666666667,4.105185,4.85362,5.1548,4.708985,3.00388,3.24856,3.93477,4.991115,4.25728,3.774705,6.63678,4.65611,2.39873,4.908035,3.941445,3.68499,3.676015,4.691555,0.7579609090909091,4.00156,4.22385,1.1567642857142857,1.22311,4.76834,4.62648,8.509467,5.3562,4.454085,5.9582,3.07765,2.47395,5.0465,1.72867,1.72867,2.67236,1.6916200000000001,3.0277175,3.21565,2.0332075,4.204096818181818,1.4020566666666667,2.19802,5.636575000000001,3.407636666666667,3.611345,3.08706,3.953495,4.03319,2.999306666666667,0.9898677777777779,4.08052,3.0993600000000003,4.06523,4.23031,3.7468516666666662,5.6571,4.525715,4.54051,3.7895,5.15385,6.5081,4.59716,3.39095,3.2225,1.877695,1.877695,3.80523,3.90683,2.5178066666666665,2.7743966666666666,2.1162301515151514,2.6421566666666667,1.6167933333333335,1.6167933333333335,4.16103,3.52105,2.196,3.659065,2.79318,1.995405,1.2011025,0.9353400000000001,2.728925,0.4368568421052632,0.8217944444444444,2.91507,3.53828,0.4352927272727273,3.767465,1.8708580000000001,5.24845,3.49245,7.00361,4.29569,5.242816666666666,4.77785,5.37865,4.156125,1.884765,1.870984,3.75317,3.02563,3.76982,1.2702066666666667,3.237415,4.305455,2.69821,2.65892,2.628735,4.23516,3.264295,2.820005,3.894045,3.574025,3.41062,2.97296,1.0461,1.81049,2.384515,2.752555,4.35012,7.57943,0.9315200000000001,1.56695,1.56695,1.791882,3.861865,2.70653,3.016225,5.34684,2.9265399999999997,1.34799,1.34799,1.34799,2.932115,2.9779995,4.93592,3.254495,4.1872,3.343955,3.63807,3.0539,3.3294875000000004,3.661315,4.2482612500000005,2.8500199999999998,1.373194,2.85227,2.8500199999999998,3.68807,1.3737566666666667,2.0246833333333334,1.836495,5.848276,3.130545,6.596011,5.848276,3.465466,1.6830499999999997,1.6830499999999997,2.67383,6.54055,1.6830499999999997,2.17913,5.61454,2.079595,2.587905,4.55322,3.67955,4.05234,2.0809366666666667,3.29149,5.01116,2.36776,2.442955,3.90773,2.0809366666666667,2.40915,1.89711,5.73786,2.64309,0.995156,2.554775,3.315095,3.356968666666667,1.8938,2.097122,4.46836,1.9403686666666666,1.566105,3.42755,2.345655,3.71105,3.67144,2.257476666666667,2.822225,2.08903,6.37578,2.45526,3.147625,3.36266,3.36266,8.726516666666667,0.8976666666666667,2.956815,2.575415,2.947275,2.4391,1.2723333333333333,1.2723333333333333,3.56451,1.935095,6.59759,2.38563,3.37078,3.093845,6.81075,2.588075,2.369165,5.879525,5.879525,2.22674,1.5037675,1.1904325,1.1904325,1.5037675,2.04845,1.3146733333333334,1.2039366666666667,1.5221433333333334,2.1022666666666665,3.6619,1.67678,3.42495,3.17727,2.69845,2.886505,2.92917,2.52035,3.275693333333334,3.275693333333334,5.95648,2.431215,3.000095,3.175185,3.08523,2.641405,2.85393,2.46984,5.040905,1.69847,1.474761,1.4083293333333333,2.2648943333333333,5.67273,4.080761,3.462565,3.368485,1.8995275,1.8995275,1.8995275,4.28265,2.54727,1.2039366666666667,2.995705,3.448875,1.295715,5.401625,3.175375,6.62376,3.56763,1.654605,3.45533,2.3096,2.282875,3.56395,4.59353,3.31936,1.66228,2.02128,2.930645,3.228315,5.601,2.12135,3.293785,2.710635,6.36616,4.84879,1.967365,1.992785,5.72149,5.11712,5.20239,5.27778,1.03178,1.03178,3.735463,3.735463,0.7603679999999999,5.38532,3.27978,4.86865,4.28826,5.14332,2.123215,4.280643333333334,4.280643333333334,2.166365,3.37007,3.60462,1.198904,4.57287,3.28941,3.187465,2.64586,4.40255,2.634215,1.78781,3.300695,2.94133,2.993935,5.51526,2.69704,1.88213,3.78419,6.55461,6.23682,4.28042,2.673235,3.49947,2.414595,5.08335,2.91668,3.41558,2.071225,6.15574,4.46761,2.21316,2.368135,2.4595,4.81542,2.44698,2.77101,2.81655,7.04503,4.08378,3.26384,2.220605,2.7023,6.73391,3.035915,2.66285,4.04646,3.027175,2.987605,2.60862,3.058045,1.8875866666666665,2.057145,1.9994266666666667,1.6941033333333333,1.90285,1.9233233333333333,1.65146,2.06271,1.744595,1.8875866666666665,4.57155,3.89199,2.139315,1.6038375,1.6038375,3.572873333333334,3.572873333333334,3.1566866666666664,3.1566866666666664,2.7146,2.26235,1.81637,4.72793,2.2211974999999997,2.2211974999999997,2.2719325,2.2719325,2.99903,2.043405,4.31711,2.18937,2.94541,1.8668133333333332,1.8668133333333332,1.68765,4.11366,5.82093,1.3737566666666667,4.12002,2.257476666666667,2.13481,4.02848,3.085375,1.80057,2.3114,5.68676,2.193485,6.30752,2.970495,3.28126,3.12648,2.859985,6.06159,2.95985,2.558695,2.5339761538461536,2.76773,6.12654,3.72428,1.508858,1.508858,3.57094,4.78139,4.77795,5.41084,2.70908,2.617125,1.898545,3.009115,1.635605,2.819905,1.76843,0.768858,0.768858,0.768858,2.1234458333333333,4.983443333333334,2.1234458333333333,2.04719,3.6254150000000003,1.670265,2.26531,4.54602,3.36574,5.42803,1.5690233333333332,5.40233,1.5690233333333332,1.5690233333333332,2.299055,1.839665,1.956345,5.45594,1.956345,2.49888,3.78925,2.306025,1.84602,2.802595,2.944433333333333,3.2098199999999997,3.2041733333333333,3.491695,1.2499133333333334,3.89158,0.7280536363636364,3.963155,4.3833375,2.5990599999999997,2.5990599999999997,0.7004281818181819,3.9103,2.5365733333333336,5.4176,4.737415,4.284765,5.28215,4.052485,4.1892,5.0698,4.14975,4.276475,3.76737,3.928635,4.75738,5.0397,3.27919,3.48888,4.1309,2.39213,1.206636,4.367395,3.234895,2.921005,1.1501214285714287,3.932705,4.03813,6.1752775,1.0267275,5.355,4.0273,2.239965,2.1148,3.211865,3.61846,1.666135,1.508858,3.911795,4.67337,2.83194,4.76211,3.140495,1.12782,2.9326133333333337,1.1588057142857142,3.0686666666666667,2.0069466666666664,2.9274966666666664,1.92883,2.5598366666666665,4.02786,3.138355,4.578775,3.382915,2.2020225,4.94339,4.29686,3.06257,5.39965,4.27819,2.7327133333333333,6.0894,4.68496,3.2373149999999997,2.64979,2.829815,2.9433433333333334,3.1871733333333334,2.5683966666666667,4.83176,4.38112,3.86702,2.4582466666666667,2.65551,2.4465133333333333,2.3300433333333332,2.2937766666666666,2.4067133333333333,2.1794733333333336,2.2932175,1.30824,2.987707666666667,1.1730825,1.70638,1.6362775,2.660975,1.6001275,1.8216175,3.796545,4.280335,1.9727525,4.019425,3.363445,6.1473249999999995,2.1169233333333333,1.6494520000000001,6.3841,3.406775,4.506915,4.36227,4.00854,2.00344,3.70543,2.3856025,2.95131,4.287755,0.7245583333333333,3.884935,2.2161033333333333,0.7555818181818182,4.763715,4.56152,4.07301,1.830075357142857,4.695955,5.9059,2.69786,3.16338,2.502213333333333,2.1611466666666668,0.594411,3.1559833333333334,2.93245,4.723725,2.487255,1.996995,3.254265,0.99408,1.9030683333333334,1.9030683333333334,2.736985,1.9030683333333334,4.11153,2.901945,4.40297,4.270275,5.74095,12.863884166666667,3.0383766666666667,4.75608,2.66955,4.719625,3.023635,6.4346274999999995,2.79933,4.93453,4.787905,3.90342,1.144005,4.75119,3.0325633333333335,2.40672,0.9460700000000001,2.148065,3.315825,7.053608333333333,4.197575,2.8799966666666665,4.545185,3.13988,4.173865,4.259065,4.885555,3.000805,2.8809533333333337,3.998665,5.55735,2.507585,4.167445,1.74982,1.74982,3.114115,4.70261,1.10874625,4.069832,2.042835,4.74296,2.63657,2.6366133333333335,3.079276666666667,2.4107433333333335,0.72135,3.430915,2.7649399999999997,5.323,4.48101,0.2257196875,4.988835,4.441545,4.09229,6.516923333333333,2.9054699999999998,2.8863800000000004,2.0737866666666664,2.88635,2.530206666666667,1.2624366666666667,2.9045433333333333,2.5623766666666667,1.3860400000000002,3.26515,3.0607399999999996,2.4751966666666667,2.6960033333333335,1.2050094444444446,4.350815,2.721305,5.07095,3.905765,3.792955,1.5981500000000002,2.5374466666666664,1.3663225,1.83569,1.3663225,4.769035,3.375,1.562228,2.374715,4.03694,3.876675,3.056175,3.96366,0.36460400000000004,1.3010416666666667,3.917755,4.42284,6.3772,1.836235,2.7255599999999998,3.12459,2.1059766666666664,2.7887,3.6423,4.493415,2.4412675,2.1843366666666664,2.8719,2.6536766666666667,2.6615866666666665,4.195595,1.939765,4.480775,3.647835,6.17705,7.431197500000001,0.7400077777777778,0.832755,3.839365,6.570749999999999,2.00356,3.572485,1.5232166666666669,1.5232166666666669,3.50398,0.44596777777777774,3.55026,3.533675,2.6054,3.848155,3.380965,2.83175,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,2.279875,2.926105,3.7136216666666666,3.1164816666666666,4.0009325,5.379011666666667,2.92495,2.0897566666666667,0.9299666666666666,3.138705,0.772055,5.083749166666667,2.9939925,2.173805,0.772055,2.137075,2.65975,0.7519675,3.769215,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,4.19883,1.571555,4.481435,4.589765,1.7281479999999998,4.823775,3.910585,5.26885,4.586378333333333,3.3914542857142855,3.27408,4.242745,1.872755,5.23944,4.35818,0.7418285714285714,1.4370142857142858,1.29622,3.2031500000000004,3.2031500000000004,2.924855,3.823805,4.039235,3.594495,3.975265,2.8323133333333335,1.9589533333333333,0.4730314285714286,4.314005,3.12036,2.687265,4.45924,3.413125,3.0847800000000003,5.05715,4.376525,6.491925,4.23188,4.590685,5.52675,4.4574,1.2505457142857141,3.09887,5.165843333333333,32.764096497474746,1.2051783333333332,4.05339,2.91643,4.545585,4.10742,5.04495,4.82799,0.41883238095238096,5.38385,4.393225,1.940795,1.953625,4.07143,1.57645,2.536295,2.274885,1.72206,2.730365,2.437656666666667,2.797235,2.62744,0.6074461538461539,3.004155,3.847025,0.3646573684210526,2.4953366666666668,2.699395,3.12528,3.93162,1.850405,4.40506,3.970405,3.041725,3.25667,2.980835,4.05224,2.981725,3.69761,2.0608025,5.165843333333333,3.5785,3.227295,2.82234,1.57877,3.7422,3.54005,6.719366666666667,3.51073,4.751425,5.8534675,5.305707,2.32519,4.320895,5.6047625,7.66263,2.510193333333333,2.59062,4.719285,5.751263333333334,4.026095,3.171685,5.383668333333333,2.763075,1.658055,2.2448225,60.00856403207774,4.979915,4.075475,2.5377,0.823321,2.56699,2.8049199999999996,3.3628,0.7655044444444444,4.38485,0.7805211111111111,7.684604285714286,1.952004,3.2347366666666666,1.761364,2.635525,2.5015,3.0104933333333332,2.4575066666666667,2.34198,3.2528066666666664,1.57772,5.313573333333334,3.9270333333333336,1.38654,2.62268,1.44306,1.5155875,7.83605,6.06255,3.45289,3.672555,5.117050000000001,1.456357142857143,3.5148333333333333,3.35291,1.6186325,5.54835,3.37693,3.943735,1.5332975,2.849995,3.6000666666666667,4.031455,5.6012,4.233025,4.398245,2.299715,3.706385,4.5335,2.9204166666666667,1.380834,4.039675,3.3518000000000003,4.113205,4.99659,4.11215,3.74245,4.487605,4.241955,4.28411,4.51484,3.700025,3.0505833333333334,3.860935,4.155165,3.173605,4.151125,3.74108,1.5685324999999999,1.5685324999999999,4.2077,4.92223,4.93552,3.53443,4.956795,3.3001466666666666,2.72047,5.20335,5.1345,0.7336072727272728,5.3969,6.364862500000001,5.51975,5.61845,1.019128888888889,3.15497,1.13079,1.13079,1.13079,3.98151,3.3496333333333332,2.5913633333333332,3.4643333333333337,0.976159,5.071,5.5382,2.8892,1.54595,1.99623,3.91836,3.83574,3.967975,3.3718640000000004,6.7565,3.45452,2.55094,4.488765,6.69335,2.30991,4.25793,3.844535,3.22306,5.4925,4.24131,5.03835,5.7442,3.104785,3.373966666666667,1.8948833333333335,1.8948833333333335,0.7188863636363636,8.699678,2.1141,5.7953,5.545,4.035805,5.61745,3.769065,2.9500666666666664,4.332915,7.56113375,5.572418333333333,2.46636,4.420365,0.963846,3.79845,1.9236133333333332,0.9265466666666666,1.1730185714285715,2.476,2.96231,2.91152,1.05734,2.5554366666666666,2.9781666666666666,0.8650988888888889,2.69318,3.1087666666666665,1.68988,1.793222,2.8107233333333332,2.9715433333333334,2.6487866666666666,2.53484,1.6500540000000001,5.26565,4.12411,3.845605,4.38259,5.1152,3.29324,4.436775,6.61785,5.14895,4.35329,3.894335,10.033893333333333,8.693835,2.8480733333333332,3.657365,2.0559933333333333,3.954845,3.26445,4.73121,0.9969566666666667,4.226905,3.567865,1.6034666666666666,3.892465,2.9896716666666663,4.41213,2.728455,3.88949,6.84135,7.938056666666666,3.941665,1.5107066666666666,1.5107066666666666,1.5107066666666666,4.708505,1.1568416666666665,1.46985,0.449485,4.3018841666666665,2.96564,3.36187,0.9600160000000001,1.09630375,3.115955,4.35047,3.67717,16.199322964285713,4.1489125,4.743715,5.8592175,2.6632966666666666,3.55957,3.271345,0.9061977777777778,1.1514525,3.711885,3.73516,4.328095,4.41022,4.262065,3.716245,2.7742737777777777,3.428755,5.17105,0.543345,4.48147,2.26353,3.746085,4.865755,3.457333333333333,2.4737433333333336,4.107173333333333,2.0170933333333334,3.589455,5.98055,3.0869199999999997,3.38397,4.066525,3.89986,4.55182,3.92641,3.339595,3.89177,4.649455,4.799775,3.46206,4.36672,3.83874,1.0623885714285715,1.32777,5.872471333333333,6.1361,4.01786,4.805775,2.5819,2.7350066666666666,2.8086,5.5733999999999995,1.8703025,2.027275,2.782633333333333,2.912736666666667,3.2194333333333334,4.51219,3.09791,4.986183333333333,1.19233,4.625075,0.8622733333333333,4.131445,3.39698,1.6484583333333334,4.55021,0.9514977777777778,4.95469,5.5751,4.681565,3.76405,3.7915725,3.89343,2.9889799999999997,4.942765,6.0962,2.8571615,4.118275,2.395165,2.63573,2.13068,2.48565,3.13136,4.95595,1.06593,4.561495,1.446745,3.41753,1.6661133333333333,1.06593,0.19092297297297298,3.61802,3.048865,2.292637083333333,1.9501433333333333,2.65477,1.10792,4.039725,3.60773,4.88097,2.56476,6.0805,6.425055,2.7213700000000003,3.301793333333333,2.647893333333333,0.778426,2.4625066666666666,6.0946,3.9298,5.54035,4.828745,2.09404,1.3611566666666668,3.9614599999999998,1.597755,2.1879575,1.7537575,2.855025,1.720325,1.93373,2.04996,2.006555,1.7267425,1.3992900000000001,1.3318875,1.9332425,1.706395,2.20294,2.33228,0.5455973333333334,0.982432,2.816683333333333,3.1766199999999998,2.01284,1.8243166666666666,1.566835,3.32367,2.3132033333333335,2.602055,3.23183,5.4976,3.81282,3.027676666666667,4.17701,1.5269482352941177,3.59983625,23.620494,4.69716,5.8293,4.025765,2.22825,3.868535,4.706525,2.227555,5.31005,3.3900666666666663,0.81113375,3.132755,4.43785,3.71157,4.17264,1.5126433333333333,1.95705,2.559903333333333,2.310145,1.5229428571428572,3.3936333333333333,4.944925,4.241685,3.395275,3.84227,4.794655,3.231135,4.548795,1.16887875,2.93146,4.099715,4.681125,1.82973,3.2112233333333333,1.74237125,1.74237125,3.70779,4.774995,2.94699,2.85976,3.962685,3.84716,6.7311725000000004,4.842635,2.31035,1.1514525,2.773405,4.34391,3.1138399999999997,2.6071296825396826,2.6071296825396826,3.336933333333333,4.987145,3.58306,5.097379444444444,2.487885,3.3669066666666665,0.6375566666666667,0.6375566666666667,0.6375566666666667,3.543535,3.901565,4.014768333333333,5.66015,2.1789,4.771105,4.92041,5.0584,3.32876,5.45765,2.50625,1.2933871428571428,3.905395,3.88263,0.4855035714285714,4.204,4.7179,1.4868633333333332,5.0994,4.87255,4.44116,4.18051,3.70178,2.917825,4.451045,1.719414,4.31843,1.549095,4.072635,5.87265,1.14970375,2.998505,7.101330000000001,3.844375,2.908393333333333,2.0880475,3.72757,5.654,2.972566666666667,7.41562,4.264695,2.2591733333333335,3.0987466666666665,2.74598,2.3852066666666665,2.77676,1.9003500000000002,5.04755,0.5527983333333334,2.022635,2.022635,3.29861,3.710985,2.367475,3.1232,4.084505,5.4355,4.10922,1.4009066666666667,4.454632785714286,4.18384,4.7164,3.615675,4.009810666666667,3.585832,0.42397866666666667,2.872692857142857,1.02217,0.42397866666666667,4.31082,0.8459533333333333,4.16605,3.921215,6.555377,2.1673233333333335,1.094055,1.136774,2.41703,2.8824633333333334,1.76828,2.47426,3.33972,3.644745,2.1279533333333336,2.3161766666666668,4.06335,2.8626787499999997,4.051525,5.60955,3.500765,5.17415,6.796501666666666,4.45999,3.60085,4.55717,3.824775,4.213175,4.8408,5.3692375,5.41375,2.44074,0.9159466666666667,3.52661,3.88984,4.18994,4.25285,4.121245,5.17235,2.448706666666667,2.50949,3.0245266666666666,2.25993,2.1250166666666668,2.9071166666666666,3.0820233333333333,2.25651,3.680015,4.22866,4.15497,5.2816,2.4428633333333334,3.5671,2.868975,0.7300857142857142,4.010065,3.502895,4.351855,2.710646666666667,5.210883333333333,3.052375,4.60038,3.77612,0.55413,0.5422014285714286,4.462755,2.7419374999999997,3.037095,4.317855,3.88701,1.6565699999999999,5.6107,3.947235,2.43434,2.6408833333333335,2.294035,2.049799166666667,3.3712,2.950673333333333,2.9823833333333334,2.99934,3.499166666666667,2.532725,2.99854,3.736966666666667,4.276515,0.564731875,0.564731875,0.564731875,3.272689430555556,3.4766,3.6934666666666662,2.5556766666666664,2.696126666666667,1.0955775,2.8669533333333335,2.966616666666667,1.6285425,2.6531333333333333,2.4007666666666667,0.9632655555555556,2.82554,4.64381,9.860349416666667,1.4710111666666668,0.602617,3.908605,0.602617,0.602617,0.602617,0.602617,2.175055,3.9930705,3.92586,4.63813,6.0267,2.78813,2.7402533333333334,3.0315849999999998,3.238121666666667,4.696245,1.0258716666666667,2.2235633333333333,3.2116566666666664,2.538136666666667,3.0287,3.50853,2.1966233333333336,2.350595,1.1543,4.926305,2.55764,3.42073,0.8810825,0.6629430000000001,0.6629430000000001,0.9379234782608695,1.8190059782608694,0.9379234782608695,0.9379234782608695,0.3513234782608695,0.3513234782608695,0.9379234782608695,1.5415933333333334,2.381883333333333,2.901065,2.97316,2.58452,2.5978333333333334,3.30831,2.7956,4.57434,3.795105,1.921315,2.2204333333333333,1.80017,0.17418437223858613,0.17418437223858613,0.17418437223858613,0.17418437223858613,2.5287666666666664,2.47134,0.912132,5.0616,0.7819590909090909,1.657156,4.61762,5.16725,4.37595,2.95427,4.48581,3.27459,1.6157733333333333,1.26038,3.648865,4.490345,6.61735,2.266675,1.3484633333333333,1.8805100000000001,2.86796,1.4586466666666666,2.751716666666667,2.7060433333333336,3.18214,4.171975,4.00754,2.99005,4.77813,2.39988,3.905315,5.38125,3.674365,4.22922,4.416565,5.249173333333333,4.414415,2.9200351428571434,4.7842666666666664,4.250715,6.54735,4.440355,4.42746,2.2209625,3.096315,4.21426,4.825505,4.43129,4.01531,3.960635,4.14133,4.04102,2.4172333333333333,5.18235,3.68814,7.64665,6.0697,5.66025,4.873235,1.4785428571428572,0.9182029999999999,0.6173076923076923,1.816838,4.828875,5.4645,4.17162,1.60915,4.05986,3.148695,5.2656,5.42045,6.243964,4.06801,3.180885,1.5753220000000001,5.42643,4.0157,2.98786,1.6690175,0.94606,3.923695,2.84553,3.5955075,3.70325,2.21205,4.520755,1.6689633333333334,2.9728066666666666,2.40656,4.45855,6.2237,4.846895,2.2792075,1.672225,5.63865,2.8206166666666665,8.6522,2.854975,5.06595,5.9202,4.332685,5.3428,3.63971,5.1779,2.180915,3.76845,4.669882,2.4666775,4.178155,4.42613,7.416785000000001,4.75867,3.0287166666666665,3.8642,4.07651,2.8626787499999997,3.620395,5.18485,5.62955,2.3507725,2.81766,3.26202,2.23444,2.48366,4.2652,5.6208,5.0084,4.59252,4.752035,4.104435,4.5533,0.6605930769230769,3.0150666666666663,1.1429399999999998,31.098816803204798,2.52923,4.586515,3.435625,4.58707,1.704732,2.47511,3.122852261904762,1.582179761904762,1.582179761904762,1.582179761904762,1.582179761904762,1.5406725,3.51262,0.3748111111111111,7.758503888888889,0.3748111111111111,4.178315,4.887895,1.9925825,5.1686,2.868425,4.025706666666667,2.3503833333333333,2.61917,2.79581,2.13451,0.6281361538461538,2.690103333333333,0.7392766666666667,3.394066666666667,2.0845,2.384792,1.19739,2.384792,6.2052,8.178555,4.466375,4.35417,5.7196,6.31715,7.389273333333334,3.11842,1.49196,1.49196,2.388526666666667,4.94292,3.76678,4.190485,6.019991666666667,3.8218,2.64068,3.7576,3.49521,3.4774,2.20616,0.72673,2.351395,3.6144,3.92378,5.211688888888888,2.15599,3.66693,1.1842460000000001,3.078855,1.22635,3.2601633333333333,2.8522533333333335,2.68891,3.388333333333333,2.8677499999999996,4.747775,0.63138,3.587305,3.5482,2.5364233333333335,2.4249266666666665,4.02541375,3.2339300000000004,2.05425,4.48983875,3.545555,5.1014,4.054195,3.722125,5.63045,4.99562,1.9704633333333332,5.4807,2.375121,1.78287,3.0805466666666668,2.2894133333333335,2.6989733333333334,2.543095,1.7977699999999999,3.3512886515151514,4.32929,3.27273,2.340468,2.340468,2.54842,4.043055,4.11652,0.5759945454545454,3.559485,3.10239,8.81956,0.8516263636363636,4.421875,3.35311,5.61725,3.3683,3.791875,2.41189,3.69155,2.9559,5.3554,2.5486208333333336,3.79461,2.7049466666666664,3.738925,2.6341633333333334,3.694455,3.813425,3.902755,5.141362,3.468955,1.980775,5.202,2.5772833333333334,4.45242,4.54575,4.5172,4.58152,3.9874,2.93063,2.2124333333333333,2.788206666666667,2.5187133333333334,2.7072249999999998,3.198423333333333,2.7271290476190475,4.818913333333333,2.7758266666666667,2.3733666666666666,6.384335,4.775377083333334,3.7294475,2.984636666666667,3.6708,4.066565,3.636805,1.856625,3.74823,4.781475,4.964975,1.3355916666666667,3.882215,2.56582,6.724597500000001,4.83939,8.151126111111111,4.22125,3.98702,2.2055,4.26593,5.898955000000001,8.0141,3.41484,5.82494,3.863255,3.4199,3.75212,1.7822559999999998,4.568755,1.425795,3.589365,4.630435,3.3209166666666667,0.8302533333333333,9.236765,1.1493666666666666,1.87737,2.5288566666666665,1.9568233333333334,3.2971,1.3838133333333333,3.71121,3.683655,2.3222833333333335,4.38332,1.0891408333333334,3.576205,1.4125249999999998,3.0077088333333335,3.967235,5.2055,1.4713375,5.85843,2.4780046666666666,7.72121,4.412035,2.99365,4.07114,3.492095,1.1656029166666668,7.77905,3.13412,3.093815,2.3708,4.28969,2.14253,3.02682,2.321275,3.98582,1.3264375,5.86655,2.67061,4.16239,0.8351089999999999,2.033338333333333,3.89009,4.740695,5.26096375,1.277552,1.277552,5.62375,4.032125,6.0408,3.73771,3.431125,9.218845,4.347915,5.3214,3.899805,2.5328,2.3540856807475676,0.4034815,0.1905083870967742,0.6193439426523297,1.331260238095238,0.6640869585253456,0.1905083870967742,1.384729,0.4288355555555555,1.7347417380952381,2.00407294265233,1.851975,2.2240875,2.15083,5.1578,6.0368683333333335,4.555995,5.0421,4.378885,4.976195,1.22091,4.793425,3.84141,5.3702,4.92318,5.3063,5.30305,5.87585,5.456,1.1972516666666666,1.2550085714285715,1.842946,5.8018659999999995,1.305636,5.4164,4.560215,6.721267500000001,4.760025,5.2253,4.208945,4.445675,2.41406,5.27995,5.23595,4.5281899999999995,4.76725,5.918584166666667,5.42395,3.78250875,4.26201,3.6231000000000004,1.00603,3.487966666666667,4.37951,1.1036975,3.6201000000000003,4.557125,4.3307625000000005,4.935055,2.476045,3.30638,2.6959066666666662,4.368195,2.1665325,3.876875,1.2703266666666666,3.32838,3.77182,3.800355,4.629775,3.3207079166666666,0.5694691666666667,5.93805,0.99647625,3.51137,2.8513133333333336,3.738075,2.15075,3.876945,3.849548205128205,3.236193333333333,4.346725,15.464351357142858,5.31859,2.1343,8.54574,1.4844075,3.80453,2.9622533333333334,2.92008,1.9893133333333333,0.20508434782608695,2.851483333333333,4.33023,1.76001,2.2326166666666665,3.0928233333333335,1.9001825,2.22687,1.448842857142857,3.18551,4.721645,4.83435,3.28842,0.4681385714285714,2.4265033333333332,4.76075,2.685725,3.918315,4.28193,4.550615,5.44715,0.46587,2.5308733333333335,2.5308733333333335,5.3336,5.01505,4.82312,2.566225,3.544833333333333,2.8205233333333335,5.15155,3.51368,5.341498333333334,4.407065,4.10397,4.755405,2.48517,1.867888,4.528745,3.749875,3.87476,3.31939,1.811844,5.1072,4.52979,3.88418,4.36767,3.771485,3.856755,0.6192326666666667,2.903645,0.5439633333333334,3.069763333333333,3.201185,4.119455,17.173056666666668,3.373095,3.695215,2.3096,0.914645,2.1473,2.608706666666667,1.559836,2.21394,2.44135,4.655765,2.2422866666666668,3.997845,4.144205,2.125875,4.34933,3.005786666666667,4.424865,4.867955,5.255,1.523525,1.773485,2.36079,4.525855,4.677345,1.103908888888889,5.18675,3.54047,5.4956,4.60331,1.72639,4.70226,3.3755,3.296245,3.67188,3.79882,3.1859633333333335,0.63237875,7.316393333333334,1.4101979999999998,0.1996752777777778,0.1996752777777778,0.1996752777777778,4.51726,3.824095,2.7390899999999996,4.228105,2.784835,4.53476,4.435154285714286,3.900386666666667,8.607033333333334,4.118955,6.88099,0.842945,0.78759375,2.448195,4.345055,4.234225,2.2722266666666666,5.24585,5.46565,3.51655,3.574975,4.266125,2.22251,4.82494,4.5910779999999995,2.3586233333333335,3.0727466666666667,2.949116666666667,2.70173,6.04885,3.628855,0.6348721428571429,3.354565,3.080005,4.192795,4.813926666666666,5.2821,2.94862,5.3988,3.63126,13.5158425,4.465095,6.809526333333333,2.326423333333333,6.323634,4.064035,3.7454,1.9993875,2.32511,9.57348,2.29715,4.3178,4.1052,3.7784,3.3363,2.848853333333333,2.100335,2.22608,3.0753566666666665,1.8207540000000002,3.8449333333333335,2.3897266666666668,2.6351466666666665,3.260123333333333,3.4240666666666666,2.4504200000000003,2.4504200000000003,2.49851,3.3899000000000004,3.2035733333333334,2.1888166666666664,3.3015566666666665,4.270133333333333,2.7669200000000003,2.6785633333333334,3.731833333333333,2.15597,1.95457,3.8971666666666667,2.8541333333333334,1.52743,3.7095333333333333,2.359906666666667,2.4957966666666667,2.79365,2.1659883333333334,3.3087166666666668,5.7613433333333335,2.25402,3.7734,1.8190366666666666,10.282179333333334,2.11898,1.7783066666666667,2.10982,0.9730777777777777,1.615586,4.2759366666666665,2.8077959999999997,2.8077959999999997,1.6341919999999999,1.5268666666666666,3.4825500000000003,3.723805,2.25254,1.5193349999999999,1.673762,4.634565333333333,3.5851333333333333,4.0422666666666665,8.296723333333333,2.881984285714286,2.4823233333333334,3.2333077639751555,4.357233333333333,1.95457,3.163483333333333,2.532286666666667,3.435033333333333,3.6012916666666666,0.878135,3.2999335,2.7078333333333333,2.8453700000000004,3.868255,3.0610466666666665,0.6599118181818182,1.9226588095238095,4.986295,2.505404,3.2804533333333334,1.66073,1.66073,2.0743875,3.775293333333333,0.9050610000000001,2.2397325,4.466953333333333,4.466953333333333,0.6606190476190476,5.6049929999999994,3.54766,3.78424,4.607185,1.2143857142857144,3.2681400000000003,3.4918,4.880596666666667,5.304175666666667,2.23415,0.6339940000000001,2.3712266666666664,2.58267,2.9780306666666667,2.1669233333333335,2.41374,2.7807566666666665,2.3214475,2.5236033333333334,0.76362,5.07225,5.026634285714286,1.29714,1.6992142857142858,5.4662,2.15472,1.611425,3.901425,1.381536,3.512735,2.6655,3.4344,8.828501666666666,4.133388333333333,4.198705,4.92685,2.2982063636363637,0.775846,1.862168,6.95552,1.84597,4.15947,4.1268,3.566635,21.182355,3.2045,1.3881,1.01809,3.0762666666666667,1.5571966666666668,4.291568,5.0728,3.339007,3.3599666666666668,1.23342,1.5291583333333334,2.8081933333333335,0.570526875,3.4503333333333335,3.730366666666667,3.0293533333333333,2.438484,2.44316,2.87966,1.9974533333333333,2.8970833333333332,1.483238,3.7159999999999997,1.3762183333333333,3.90734,3.830845,2.5381033333333334,5.3659,3.20271,4.050565,4.871765,4.44801,2.9573699999999996,2.88008,2.2794133333333333,1.1026042857142857,1.1026042857142857,1.1026042857142857,2.3183625,3.578333333333333,2.56941,2.546813333333333,2.2629266666666665,1.87539,4.05655,5.28545,3.81088,6.538195,3.207695,2.498065,1.900265,0.94509,2.50873,3.89367,2.4934066666666665,2.6556433333333334,2.45406,2.45669,2.6603866666666667,2.84381,2.8127600000000004,2.6564733333333335,2.189296666666667,3.463366666666667,2.1316966666666666,2.253595,1.6155675,1.66,3.0605166666666666,2.935166666666667,2.0410325,4.12757,4.903615,2.8083333333333336,2.393103846153846,5.503633333333333,3.764945,4.586465,5.3046,4.32292,4.390685,5.7864475,1.22386375,4.17904,2.76263,5.0266,5.05375,3.56972,3.409045,2.1889875,7.90187,2.73404,0.8115983333333333,7.28901,5.0842,5.460574880952381,4.370765,2.8241250000000004,1.6841425,4.82899,4.20196,4.34361,5.0851,2.49565,4.00794,4.17057,1.80017,3.80714,2.842175,1.3639983333333332,4.68168,0.5993058823529411,3.945220833333333,3.193885,4.544705,2.52682,1.77943,3.409695,2.064715,1.461175,2.68665,3.1209066666666665,3.2379866666666666,7.273531666666667,1.6114825,6.380683749999999,9.69679,5.3562449999999995,2.942845,1.3664299999999998,2.7511666666666668,1.3664299999999998,2.917343333333333,2.213373333333333,0.3192523529411765,1.2053723529411764,0.3192523529411765,0.3192523529411765,0.3192523529411765,1.2053723529411764,1.2053723529411764,0.3192523529411765,0.88612,4.040835,3.501575,3.231185,3.36529,3.56824,4.63004,2.691899,1.6420179999999998,6.859145,3.1659566666666668,4.136385,2.491913333333333,1.0335545454545454,1.17686875,4.447515,3.57949,1.1365555555555555,1.388656,0.7060790909090909,2.8537923073593077,4.26568,4.95236,3.4104666666666668,5.296155,0.5258661538461539,3.933495,2.74865625,2.7895299999999996,2.5039599999999997,3.3742666666666667,2.4816533333333335,2.8962766666666666,2.7376566666666666,3.036655,3.62645,4.600535,4.43947,2.12412,4.980615,4.34444,2.940565,3.920135,3.434035,0.3472606666666667,4.68176,3.53943,3.057045,2.872838,4.305865,4.04884,1.93698,3.087125,3.95333,8.094715,5.15815,5.43415,4.703695,3.8186775,0.8509175,2.21294,2.02421,1.3274,1.7714633333333334,4.24498,5.44315,4.01129,4.775175,3.3718640000000004,2.609195,0.9391516666666666,4.0075,1.2631483333333333,1.15223,3.372065,3.684675,4.543865,1.288525,2.4724266666666668,8.797600000000001,3.18481,2.9828333333333337,0.89279,3.386485,11.763633333333333,3.4509,4.20881,3.21267,2.876035,4.63048,5.0149,2.0394200000000002,4.225535,0.5291776923076923,4.67954,2.21269,1.7242275,1.7242275,3.4911666666666665,4.06021,1.55807,3.7695,1.2426657142857143,3.57857,2.5170175,3.344533333333333,4.80152,3.545725,3.9359450000000002,2.594275,2.9243925,2.9243925,10.698615,0.690433,2.69597,3.0322933333333335,2.13186,1.97542,0.8155357142857144,1.4609575,1.1251214285714286,2.109095,4.50529,2.52331,4.186635,2.02766,4.054645,3.89214,1.7217333333333331,2.020605,1.0990016666666667,6.0385445,2.032185,2.17363,1.635062,1.794106,1.01809,2.1906116666666664,3.659575,1.8969500000000001,3.1879333333333335,2.55587,2.7138266666666664,1.7256666666666665,3.1489166666666666,2.575133333333333,1.4956666666666667,1.7345166666666667,2.7233966666666665,2.727703333333333,2.5846033333333334,1.15455,2.553103333333333,2.0665033333333334,2.3451933333333335,0.3181521052631579,0.4047675,2.3712733333333333,2.15324,3.437015,3.0601866666666666,2.718735,4.69362,5.5322,4.427175,4.74658,4.188095,4.106295,2.816736666666667,3.87926,0.7689936363636364,0.06282977272727273,6.99085,0.06282977272727273,3.448645,3.05069,5.26675,3.53299,6.3171,4.557365,2.01219,2.52397,0.915375,5.37455,6.0732,3.3024833333333334,5.43775,1.716355,3.452535,1.9199359782608694,2.9865733333333337,3.2127166666666667,3.87272,4.9199,3.374035,2.4065600000000003,2.4065600000000003,4.19759,7.56478,3.51716,2.2011933333333333,2.4336699999999998,4.164965,3.00035,4.849205,3.42677,0.9537555555555556,3.896055,2.2549733333333335,2.6444433333333333,4.361665,1.0830766666666667,2.4558866666666668,4.00529,3.224405,4.64625,3.031605,2.76933,3.889895,3.900825,4.31208,4.828195,4.19171,3.1048061111111114,3.819115,2.7493266666666667,2.6590966666666667,2.4767266666666665,3.9062333333333332,4.172755,3.01158,4.986115,4.2524,3.79839,5.2148,4.391195,3.373555,1.453592,1.3771425,4.159525,3.3359666666666663,1.5404366666666667,2.8671900000000003,3.37907,3.0700800000000004,3.9118577777777777,2.856453333333333,2.1675725,12.383716472222222,2.0922966666666665,1.804544,4.35298,1.00106,3.1314100000000002,3.426915,4.61031,2.98742,1.2126555555555556,2.2843833333333334,2.56476,1.494402,4.158415,0.9611175,0.9611175,3.310203333333333,1.5686099999999998,1.7415933333333333,1.7678225,3.1294,6.02275,2.59462,2.84146,3.185365,2.7670166666666667,2.7195533333333333,2.0444,6.29945,5.6024,3.47582,0.7020746153846154,3.396035,3.53749,1.0860363636363637,5.59625,3.3156266666666667,8.228961666666667,4.85437,4.58693,3.607675,1.420665,3.078285,4.716325,4.437325,3.692715,3.40681,4.351375,3.0666,3.5218000000000003,3.5218000000000003,3.9656,2.7067491666666665,3.99688,1.901435,5.4719758333333335,5.199753333333333,1.4868633333333332,4.351305,0.983432,5.71545,4.01902,4.87268,4.62337,3.985085,2.66486,2.4139025,4.158865,4.356895,4.917555,3.951675,1.9086175,1.434698,4.383035,2.1080466666666666,5.34195,3.14507,3.575425,7.64667,3.989675,4.232355,5.2142,3.713485,4.15465,8.58376,4.11229,3.218115,8.693465,3.552025,0.5609464285714286,2.0030769413919414,4.462785,0.6095186666666667,4.723755,4.06557,4.628195,4.468625,3.289535,3.659355,4.34061,4.83444,2.6354,0.701835,4.43987,4.256175,4.247555,4.25269,2.71622,4.43309,3.351965,0.725534,3.422295,4.023905,2.522575,3.24446,3.696665,2.250375833333333,5.5612,5.265,3.718705,3.15817,5.386194166666667,5.386194166666667,8.50052,2.0273,0.92287875,0.92287875,23.603336666666667,2.61355,7.654613333333334,0.36105666666666664,1.3224500000000001,2.8840733333333333,0.936107,3.772555,3.85554,1.9151525,1.9151525,3.87492,5.033,3.643815,2.5560425,2.5560425,3.533445,4.26696,3.84005,3.4233,2.0401266666666666,2.530702916666667,3.890733,2.157575,3.643365,2.736283333333333,2.8429389285714284,2.8429389285714284,3.18773,0.8249888888888889,2.5052766666666666,1.64348,3.25928,2.7908000000000004,2.749053333333333,2.3942666666666668,4.32839,2.32927,3.002686666666667,5.227984,1.1698520000000001,2.29217,3.1198,2.6509033333333334,4.20842,5.855169174603174,1.3556266666666668,3.733833333333333,2.439795,5.14216,6.3131,1.611295,5.125213333333333,4.858270666666667,3.115262857142857,4.6391333333333336,1.0857157142857143,1.82973,3.0316,3.855800476190476,1.2397133333333332,2.40101,1.601905,1.796706,2.23372,3.669766,5.215716,0.97959,1.2943557142857143,2.9733933333333336,12.95101,4.569801666666666,2.63358,1.183,2.4884604761904763,0.9447871428571428,3.29179,3.98394,4.7893,3.4154999999999998,5.43575,1.63989,3.7974,4.2587,2.8450966666666666,3.707542222222222,1.9019933333333334,1.0828155555555556,2.589836666666667,2.8730166666666666,7.100233333333334,2.717695428571428,2.3700733333333335,0.725987,4.701833333333333,3.6198333333333337,1.075116,5.663109166666667,2.0172425,2.34592,5.27005,1.2026999999999999,2.7815999999999996,1.001509090909091,2.9313066666666665,4.19656,2.8390500000000003,2.96227,2.2993900000000003,2.4998833333333335,4.23314,4.60184,5.01565,1.663955,4.65586,3.98773,4.163783333333334,3.324668,2.7460833333333334,3.945280666666667,0.973314,2.8165947619047618,4.515,2.803725,3.9369158333333334,1.302025,2.9082266666666663,1.9092980000000002,1.9092980000000002,7.23215,3.1171966666666666,4.880106666666666,3.4127433333333332,1.7496866666666666,2.6666535714285713,4.501645000000001,5.60895,8.567311666666667,4.6546943333333335,2.67188725,1.9332633333333333,1.8840211666666666,4.179166666666667,3.78223,1.435362,1.9312825,3.068909285714286,1.3177075,3.0845766666666665,18.262287333333333,2.9554666666666667,2.8320266666666662,2.5876,2.88833,2.220613333333333,1.8526633333333333,2.8013366666666664,3.6438,2.38779,2.6275633333333333,5.546776,2.38224,4.695251428571429,2.8118374285714287,2.604011428571429,1.4053666666666667,3.6103288888888887,2.1229025,3.9214,5.0497,3.89058,3.2531266666666667,3.165926666666667,2.2117566666666666,3.4211333333333336,3.5249,3.3013066666666666,3.3048633333333335,0.7863272727272727,5.24295,2.413125,3.065803333333333,2.7052705555555554,1.8140175,1.9677358333333332,1.9677358333333332,3.1605791666666665,1.8756808333333335,4.653475,4.13237,3.39019,4.00727,4.557465,4.353835,4.353835,3.998425,2.9466566666666663,4.30949,2.829235,1.6650500000000001,2.1719399999999998,4.28689,3.881295,2.677625,2.979915,5.3341075,3.5863,6.217094988095238,2.82432,0.8522399999999999,0.8522399999999999,3.404045,4.84522,3.86605,3.527584,2.44585,1.8194133333333333,1.55054,2.86524,5.804212,1.42974,4.47707,3.6298999999999997,3.943885,4.99651,4.816465,4.7116555,3.21012,2.2685975,4.22468,3.92035,2.0435,1.125844,3.93361,2.800375,6.523175,3.7228,2.661625,3.34694,3.716275,3.56441,4.603235,3.04485,4.55368,3.90093,4.36495,3.774215,3.563315,3.611485,3.921895,2.6910433333333335,4.274755,2.99408,5.09505,0.5986511111111111,2.311355,1.7472,2.13132,1.91226,2.7326333333333337,2.6282466666666666,1.7990666666666666,4.29507,4.93875,1.9488133333333335,3.71675,4.386855,2.422125,6.055445000000001,3.99513375,4.23441,4.872205,7.127113333333334,1.9712133333333333,2.89672,1.84568,2.7071400000000003,1.85198,1.784425,4.148685,3.582685,5.2948,1.0149033333333335,3.166275,4.070925,2.162075,5.1414,3.7066,2.589295,3.733966666666667,3.454675,2.28399,1.86945,2.742375,3.261325,3.374525,1.9897275,2.3783014285714286,2.3783014285714286,3.610375,3.493725,20.554166130952378,1.0778066666666668,5.488396666666667,1.80363,1.8984699999999999,3.221325,3.84683,1.82772,3.78857,4.62023,1.2224066666666666,1.2224066666666666,1.2120666666666666,1.6725333333333332,2.143263333333333,3.2543966666666666,4.4394116666666665,3.302365,3.4360999999999997,0.46634368421052635,3.2900336842105258,1.9983899999999999,2.27082,4.443145,3.43978,4.088995,3.60525,4.559615,4.540245,2.0738275,3.860355,5.751263333333334,2.144955,3.64302,5.08515,2.248385,4.523785,6.04265,1.25863,1.8566680000000002,3.4820666666666664,0.6827114285714285,3.2262233333333334,3.139805,4.78308,4.921305,2.873781666666667,7.639023333333334,2.9175533333333337,2.8167500000000003,0.4453335294117647,4.264665,5.181830833333334,3.1060616666666667,5.35505,3.82553,2.4656408888888888,1.701698,5.298882750000001,4.209075,3.97211,2.948325,1.967425,3.477935,4.048266666666667,3.0020966666666666,1.91905,4.095545833333333,5.8385825,2.86082,3.93488,3.70314,3.90695,1.5642571428571428,1.5642571428571428,3.20893,2.87782,4.09989,4.665545,6.58945,3.5497,2.7495,2.1876375,1.4443833333333334,1.3335485714285713,4.805855,5.3436,5.06455,5.91325,4.454845,6.3666100000000005,3.37062,2.9068,3.96671,2.0627133333333334,3.01176525,1.543284,4.39573,2.384723333333333,3.890635,4.91005,4.16882,2.7941866666666666,2.8206166666666665,1.335207142857143,2.3373675,3.749033333333333,1.8522925,0.63725625,3.012966666666667,2.559763333333333,2.25651,2.3440766666666666,1.9614825,1.664272,0.6682554545454545,0.6682554545454545,3.470966666666667,1.6451475,2.16816,3.132025,5.6313,4.1961,6.18685,4.16609,4.23225,2.1391703333333334,1.2810333333333335,2.57747,5.13905,0.9234825,3.6805575,2.951275,2.84581,2.150875,4.09801,2.81962,2.002076666666667,1.0357,3.20657,8.61462,3.408815,1.5221660714285714,4.21727,3.24623,2.687385,3.37501,2.81614,1.76998,1.0300725,3.79649,2.4799525,2.2422033333333333,1.6675566666666668,2.3071066666666664,2.32155,2.4348966666666665,2.8369825,1.2271833333333333,1.8638933333333334,1.043085,6.4639975,5.58975,5.96525,4.006515,4.327235,2.8145433333333334,1.6190862393162393,4.637075,4.995705,2.453235,4.816825,2.085445,4.565525,0.915918888888889,4.0218,3.887885,1.9179225,8.32384,3.622255,1.8455975,2.04346,1.77774,2.578675,3.32101,1.1955708441558441,2.8379,5.63515,3.17252,3.9043,5.51345,5.3968,5.8057,0.87219125,3.92045,4.121305,4.079515,4.80461,3.971983333333333,4.668365,4.73517,3.024665,1.6792166666666668,1.6792166666666668,5.25755,5.5283999999999995,3.23687,2.6167866666666666,3.86305,4.50419,1.5625,3.978735,4.931025,3.623,4.028475,2.9159966666666666,2.6683066666666666,4.848025,2.4591802499999997,10.664806293451647,1.9342633333333332,0.76696875,2.581846666666667,1.71203,2.570325,2.0189125,1.8390239999999998,2.7726933333333332,4.7468,5.20115,2.72988,1.6480616666666668,6.1969279761904765,1.4571142857142856,2.7944666666666667,0.5058333333333334,4.103406666666666,5.38985,3.387355,4.168555,11.05752,5.066,2.9433566666666664,3.393966666666667,4.120855,2.82085,4.216885,0.8571275,1.0514233333333334,0.7990272727272728,5.5506,4.282975,1.729396,4.770066666666667,4.46651,6.8017,4.83572,4.929935,4.168305,5.99515,3.94189,5.1721,2.814725,1.191324,3.64851,5.30115,2.579565,4.081485,2.73875,2.39307,1.2308325,5.07975,3.97847,1.2993625,3.3562333333333334,2.9492266666666667,2.6085566666666664,2.5255300000000003,2.4823033333333333,2.9098433333333333,0.7066645454545455,2.395776666666667,2.690466666666667,2.60078,1.8284966666666669,3.0494066666666666,1.99768,1.5822900000000002,2.3341625,1.9897225,2.0278025,3.3392666666666666,2.81711,0.667339,2.66832,3.34372,4.58422,2.1991666666666667,3.729335,5.4667,4.77753,3.449845,3.790275,1.29622,3.2478,2.4751588888888887,4.252085,2.63927,4.63168,5.3988,4.541205,4.427915,4.1405,0.903492,0.903492,2.2840249999999997,1.680175,3.983745,2.6175335,2.6175335,4.754395,6.21135,3.050525,1.19008,1.5360714285714285,5.7545,3.64854,2.1712333333333333,3.233835,2.796405,3.310735,2.1712333333333333,4.633945000000001,3.375125,2.9754216666666666,2.810095,1.933,3.093265,6.66785,3.002095,3.68905,4.864695,6.57275,6.47845,6.6825,6.6825,5.36355,4.87641,0.530406923076923,5.0623,4.34929,2.943645,2.776115,8.114695000000001,2.9003633333333334,3.939785,3.61179,2.34414,4.247435,2.29582,3.3774349999999997,2.97081,3.5834333333333332,2.4589633333333336,1.38986,1.38986,3.764495,3.71095,5.55795,1.658248,1.532324,47.01831329545455,2.48252,0.8276245454545456,3.10289,1.76687,3.2726699999999997,2.8163733333333334,2.9607233333333336,2.917905,2.6554366666666667,2.0071533333333336,1.02365875,4.09082,3.34282,3.56958,3.83001,5.048,5.021,5.08575,5.09145,5.23435,4.581785,5.3547,6.182455,5.09175,5.2919,2.1001475,3.802795,6.643,4.97229,3.4112,4.00137,3.36767,2.449225,3.90892,4.552465,2.9643466666666662,3.8418666666666668,1.65129,4.427095,1.3527,3.231115,3.87627,3.5866,6.3725325,4.064055,1.855125,4.01659,3.93566,3.983595,0.8874,2.64306,2.780245,4.401997976190476,1.1827475,4.51338,1.35872,5.66305,0.709251111111111,3.8508173333333335,9.746065833333335,4.267875,3.37803,3.071145,1.79505,4.157825,5.3578,3.00151,4.518875,9.152357222222221,3.3468999999999998,2.0147633333333332,2.843083333333333,2.7191466666666666,2.8161666666666663,2.681259,2.84191,2.522886666666667,3.1601666666666666,2.771513333333333,3.002133333333333,3.4535,2.264213333333333,1.6639133333333334,4.689187333333333,3.983,2.59524,4.923394,2.7829599999999997,1.03745875,2.132765,2.991376666666667,5.373417142857143,2.97215,2.0682883333333333,2.0682883333333333,1.643735,1.6204275,2.18792,1.981636,5.765385,4.16573,2.0758575,2.996983333333333,3.722766666666667,2.04755,0.646765,2.611126666666667,1.947625,0.5710707692307693,3.86428,2.526075,2.606325,3.785995,3.5597214999999998,2.42527,1.6329500000000001,1.105985,2.221835,3.613485,3.84067,4.1488575,2.8524333333333334,4.168955,3.68031,1.0911272727272727,9.05672,2.77734,3.568365,1.258825,2.60825,2.280965,2.280965,2.280965,4.99853,5.3674,1.599525,4.907755,1.470402,5.509016666666667,1.47954,3.930305,4.388305,4.09609,4.802895,4.32274,1.96291,8.503695,3.749405,5.1024,3.59713,3.909365,3.283416666666667,3.121496666666667,3.89362,2.51805,4.284469285714286,4.36451,1.5892375,4.017185,1.5892375,3.53876,4.4938125,5.056385000000001,4.4938125,1.7669033333333333,5.6392,4.367255,4.18241,2.57602,2.874283333333333,4.1148,3.314365,5.46035,0.48780357142857145,2.8791366666666662,2.977403333333333,5.005251666666666,4.75615,2.361745,4.69495,5.932663333333334,3.30519,2.98657,2.98258,2.0650933333333334,3.63702,4.084265,4.58105,2.33452,3.880825,0.857803,5.6073,3.298605,4.05305,2.39125,3.16822,2.35311,2.88879,2.7878866666666666,2.80027,2.970235,2.31727,2.31727,4.363733333333333,2.77392,4.6908,11.617450000000002,0.9387711111111111,4.31553,2.42361,2.41025,2.6699333333333333,1.46985,7.131987166666667,3.3352,3.543345,3.5911391666666663,2.1413766666666665,3.9547333333333334,3.9778383055555557,1.81693,0.4516811111111111,1.431138,1.5043325,4.69869,2.937195,3.23167,3.7886708333333328,3.5218508333333336,2.21290125,4.792365,4.452605,3.72884,4.26521,2.26126,3.62432,2.5262733333333336,5.41418,3.150585,5.0616,4.03897,3.93053,4.33798,2.08029,3.893895,3.676605,3.230776666666667,3.610585,2.8704,3.15492,4.168115,3.73925,2.621653333333333,4.26476,1.31042,3.75827,2.83367,4.10524,4.24355,4.12568,4.79107,2.4148,4.2084,4.904,4.165485,2.9386566666666667,2.12928,2.980135,2.254085,0.8678266666666666,4.530035,2.12579,3.48711,2.697685,4.121535,3.61981,3.15599,3.35475,3.85935,4.516694,4.028835,2.816305,1.5477800000000002,3.166635,2.532765,0.8610833333333333,4.2031,8.666665,3.399,3.58032,3.878135,4.95848,3.80393,2.160285,4.082475,3.922125,3.26078,3.29462,3.76096,0.64019625,1.2524614285714286,6.418127500000001,1.7123575,2.66804,5.006380999999999,2.476045,2.275205,2.801435,7.24909,2.533465,3.952485,3.83591,0.7770522222222223,3.451175,2.681615,3.941385,3.65901,6.132088333333334,0.66866,3.36675,9.77172,3.173545,1.023772222222222,4.940171250000001,4.670495,5.28795,4.150605,4.38742,3.2764,2.4353599999999997,7.033645,0.770678,3.48185,4.01229,3.269825,4.036765,2.26067,4.15919,1.71505,4.13947,4.00936,3.88211,1.6533975,4.5251,4.64911,2.39214,2.10021,2.0635125,1.075116,4.242085,3.339007,1.4315419999999999,8.336925,5.77225,4.51794,4.229445,3.489145,4.275755,1.4444428571428571,4.05239,3.970775,5.0281,3.81097,2.4911033333333332,6.459427863247863,1.1130725,1.1130725,2.643123333333333,0.9246428571428572,4.18085,2.8469933333333333,1.0139825,1.69689,0.42017166666666667,6.05148,0.9757125,2.80639,3.58989,4.045265,3.42834,4.0882,5.4876,5.6548075,3.309465,3.20308,2.37191,3.73266,4.318895,4.220015,3.954095,3.63081,6.07945,4.064565,4.355869444444444,5.511788,3.527695,3.2307725,2.34961,3.2307725,7.027118,41.06937270779221,3.80932,3.44596,2.88041,4.16902,4.336415,3.56825,3.509115,3.831655,4.35847,4.04812,1.5860200000000002,4.607915,2.81351,4.624575,5.0912,5.11685,2.4100033333333335,4.21982,4.00491,3.37736,1.429118,0.6452230769230769,1.769416,3.6171666666666664,2.8852933333333333,1.25775,2.8215500000000002,2.57431,2.6216766666666667,3.6840666666666664,2.9494633333333335,1.293578,2.63712,3.6720333333333333,1.9650542792792793,2.7723633333333333,3.1191899999999997,2.903256666666667,2.65442,3.4192666666666667,1.1592666666666667,3.47856,4.058585,1.2925716666666667,1.2925716666666667,1.2925716666666667,1.2925716666666667,2.858794242424243,2.0931833333333336,2.49411,2.85186,4.97439,5.12245,3.962805,4.276915,5.36495,4.387755,2.351235,5.8166,3.943785,2.760115,3.95551,2.84003,4.07908,4.09247,0.7148992307692308,1.4157657142857143,1.5966833333333332,4.120665,3.7549,4.669805,4.003265,5.942521666666667,2.2911566666666667,4.049235,1.5001766666666667,3.42936,4.86573,1.6435866666666668,5.1145,0.6876233333333334,4.187815,1.14016,1.16568875,3.645425,3.84748,5.0113,4.87218,6.03405,4.315055,1.5015,4.85606,1.45447,3.60161,3.03749,2.4656408888888888,2.02379,3.057125,1.2803583333333333,3.48526,4.8104,3.0265833333333334,5.89095,119.19104057882394,0.502128888888889,4.88655,2.3343233333333333,4.787045,4.181895,3.28472,1.55702,0.30845047619047616,2.89567,3.81271,5.24305,3.53522,3.67088,4.41152,4.047315,4.370275,8.229066666666666,0.7019922222222221,2.554785,0.97438375,9.872308,3.08283,3.62724,0.9134677777777777,2.339475,2.740665,2.12675,3.2841299999999998,3.1858166666666663,2.7934866666666665,4.362679999999999,2.8844999999999996,2.2923833333333334,2.31209,3.090415,2.92684,2.931735,3.649555,3.849435,3.45341,2.31974,3.897,4.27267,3.16333,0.9172199999999999,2.5973133333333336,4.362679999999999,4.699955,5.25025,4.09169,3.637075,1.87443,10.763349999999999,4.14217,2.71564,4.382615,4.96115,0.5291553333333333,0.5291553333333333,4.05541,4.05541,3.04314,3.4873666666666665,1.8348725000000001,0.5480658333333334,2.8683,4.167535,4.10433,2.945285,4.01399,5.3884425,4.299855,2.1220175,4.734115,2.1129625,2.86265,3.9270533333333333,1.761685,2.00455,0.5064971428571429,1.193943142857143,1.193943142857143,1.9387,4.16844,4.2891,4.74555,6.444056,2.74206,3.164855,1.96196,1.94534,3.9226208333333332,3.46114,4.571156666666667,2.17886,4.571156666666667,4.294835,3.569515,5.9694,3.827325,2.4338633333333335,1.9736333333333331,2.5123633333333335,1.3955425,1.380125,1.5666625,1.9332475,1.66196,1.5811525,3.8870666666666662,4.424435,2.448745,6.6807,2.7570533333333334,4.25206,3.4064,4.15863,2.87261,2.7414533333333337,5.935243333333334,3.3857,4.501492,3.0475966666666667,1.434075,2.5511133333333333,2.5434366666666666,2.2676000000000003,6.3034,4.3869925,4.49561,12.0230277798824,0.7234933333333333,1.96221,2.0685225,1.5341580000000001,1.2676557142857143,2.52335,2.3117625,2.4198775,2.36267,0.7364815384615385,1.905205,0.5177794736842105,4.229565,1.945765,3.40817,4.08748,2.571675,5.3958525,3.63841,6.58616,3.87124,2.90052,2.92449,4.54465,4.96888,2.50608619047619,4.43963,2.0086725,2.0086725,4.872415,3.627905,4.1068,4.14741,3.2543366666666667,3.836495,4.87623,5.05005,4.55056,4.434955,4.61678,4.34063,2.56738,5.0086,1.07507,4.5235,4.63876,2.549586666666667,2.1520766666666664,4.70333,1.4862383333333333,5.06835,1.9381,6.166824311594203,4.076125,4.049685,1.5192633333333332,3.3730925000000003,3.3730925000000003,12.33668,3.977225,4.194635,1.0953025,4.229807,2.2968275,1.54529,2.31592,1.685065,1.959295,1.724726,3.150655,5.7579,1.8505175,4.79686,4.516353333333333,5.71365,2.163415,2.553865,3.19668,4.363795,5.49195,3.914875,7.086673333333334,3.2079,2.4955433333333334,0.39687833333333333,3.8309,4.731945,3.221133333333333,5.919558333333333,2.62977,3.016383333333333,1.229325,1.6474250000000001,0.63725625,1.431138,2.95445,1.4581266666666668,1.4738266666666666,0.6275875,1.387766,4.599395,2.3503225,0.5900546153846153,1.2851416666666666,1.6857375,1.592788,1.2258783333333334,1.92638,1.6474250000000001,2.4666775,1.387766,1.387766,0.5900546153846153,1.505542857142857,2.36906,1.2397133333333332,2.5101,0.5900546153846153,2.637875,2.36906,1.2298333333333333,1.2298333333333333,1.2298333333333333,1.7750139999999999,1.21329125,0.5900546153846153,1.1022880000000002,1.04030375,0.9730777777777777,1.8113920000000001,2.663625,0.8302533333333333,2.05814,1.5677,0.5900546153846153,1.7421820000000001,1.6474250000000001,1.9728666666666665,1.9705000000000001,0.859212,1.9728666666666665,1.050318888888889,2.39214,2.352715,2.3856025,1.04030375,2.03692,1.2803583333333333,1.2803583333333333,0.8872690909090909,0.8872690909090909,0.8872690909090909,1.229325,1.6474250000000001,1.5677,1.2851416666666666,0.9835185714285714,1.9705000000000001,1.6142219999999998,1.52743,2.06494,1.229325,2.63358,12.6244525,0.6275875,2.62162,1.6937,2.3120475,0.9447871428571428,0.9447871428571428,0.5900546153846153,0.9353400000000001,1.664272,1.5677,1.8620640000000002,1.9705000000000001,1.103908888888889,1.103908888888889,1.657156,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,2.8604066666666665,1.050318888888889,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.378035,53.004716775613275,1.47256,1.565365,1.5677,1.6937,0.9835185714285714,0.6353176470588235,0.725987,0.725987,0.725987,0.725987,4.3043000000000005,15.460576666666666,3.377266666666667,0.5715663636363636,1.548154,1.548154,1.548154,0.5715663636363636,2.95445,0.5900546153846153,1.7421820000000001,1.4738266666666666,2.5379,1.050318888888889,2.361745,1.050318888888889,1.60972,1.60972,2.1263833333333335,2.1263833333333335,0.5900546153846153,1.92977,1.92977,0.9175272727272727,0.1996752777777778,2.95445,1.3643416666666666,2.439795,0.5715663636363636,0.5715663636363636,0.5715663636363636,0.5715663636363636,0.5715663636363636,1.6937,0.378035,1.050318888888889,2.1073175,2.1073175,2.4139025,2.8513133333333336,0.6606190476190476,0.6606190476190476,3.3782,4.233766666666667,1.2143857142857144,3.402533333333333,0.962768,2.438175,2.0273,1.0830766666666667,2.75907,1.8649425,3.15817,5.17985,2.361715,1.1864222222222223,4.04733,4.340845,2.436243333333333,1.7603680000000002,2.363457307692308,4.394385,1.5692352777777778,2.7050433333333337,2.7621566666666664,3.004573333333333,2.48876,6.08058,3.810705,0.1996752777777778,2.8080200000000004,4.95333,3.437325,4.42221,4.339385,4.34214,2.7055566666666664,1.7927779999999998,4.377415,4.647675,4.405395,4.523055,5.2386,3.14257,0.7271091666666667,6.720905,1.6778333333333333,2.981286,4.357275,2.53784,2.53784,0.8260218181818182,2.02379,4.14293,3.14145,5.10945,4.070495,4.507645,5.0219,1.0662085714285714,4.67839,5.9022,6.574505416666666,2.3042766666666665,4.46123,4.008005,3.838665,3.566635,3.61546,4.29411,5.8188875,5.0164,4.150918333333333,3.69056,4.4751,7.045281999999999,1.92141,2.0037307692307693,2.9070199999999997,1.7977733333333334,2.83512,1.8934433333333331,5.18845,2.7421399999999996,6.0556,1.856502,4.897495,4.008865,3.790035,4.463195,3.893025,2.5283599999999997,2.7950033333333333,2.75572,2.6522366666666666,2.4726966666666668,1.6930333333333334,2.7911266666666665,2.8399966666666665,2.20228,2.20228,4.480205,2.945273333333333,2.0240966666666664,3.0300466666666668,2.064826666666667,2.5475,3.0059066666666667,2.7452633333333334,3.0672200000000003,5.1054,3.86729,3.77341,3.2270440000000002,3.2270440000000002,3.96489,3.1668866666666666,3.749,4.613905,3.9354,3.36057,3.489885,7.72001,1.9877975,2.028315,3.49639,3.354165,1.4043433333333333,1.4043433333333333,3.589405,1.93543,4.127526666666666,3.81477,3.665475,2.189715,2.0895141666666666,0.5691350000000001,3.453375,3.951485,1.8231675,2.365055,4.144715,1.1850666666666667,4.369475,1.2819566666666666,0.40273714285714285,0.5622467857142857,21.156313382936506,0.5622467857142857,0.40273714285714285,0.7217564285714285,9.214698333333335,2.45558,3.466665,4.08641,3.483785,2.761905,4.021116428571428,2.23854,2.230935,3.74911,3.35675,3.978595,4.52108,3.65911,2.328505,3.262365,3.464245,3.9259,3.20167,1.165064,1.165064,1.165064,1.165064,3.470345,2.950925,3.4122,1.80605,1.14737,2.52805,3.759425,3.808045,2.90486,3.03028,2.47201,2.5170175,4.039005,4.276785,1.122665,2.5189033333333333,1.07019,2.5980666666666665,1.7138499999999999,3.7472999999999996,4.908555,2.5153133333333333,3.408845,3.7194866666666666,0.8965884920634921,0.2729107142857143,0.2729107142857143,0.6236777777777778,0.2729107142857143,0.2729107142857143,0.2729107142857143,0.6236777777777778,4.579965,7.36978,3.640535,0.53938375,3.881665,7.816575,3.39852,3.0680333333333336,1.167655,4.290715,5.03045,4.18401,4.865855,1.676604,4.69366,2.1347666666666667,2.363538666666667,3.52559,5.14395,0.7851128571428572,0.7851128571428572,3.523425,2.846693333333333,1.836125,3.32865,2.65571,6.7871,2.41579,6.5912,6.16475,5.4156,2.59817,1.681905,4.981195,3.59766,2.3605,3.86768,3.061355,1.87149,1.18015,4.129275,3.51636,4.813926666666666,6.007223333333334,1.47535,4.027995,1.13968,2.5934033333333333,3.19457,3.86747,0.4012178571428571,3.474275,4.23029,0.868993,2.5455433333333333,7.527975,3.11999,2.22195,5.3294950000000005,4.32096,3.79805,1.3695616666666668,5.26823,2.55684,3.0443833333333337,3.4760666666666666,2.0780066666666666,2.0780066666666666,6.5768249999999995,6.5768249999999995,3.7281089285714284,3.7281089285714284,11.0468,3.7281089285714284,3.7281089285714284,4.370578928571429,6.97845,3.60236,3.3450125,2.9449966666666665,4.16383,3.580405,3.10791,3.1338333333333335,4.539205,3.17877,2.7334766666666668,3.4591999999999996,2.3057666666666665,2.69538,4.90544,7.3887599999999996,6.295825000000001,4.85826,3.830925,4.06744,6.770362,5.1124,4.46017,3.478225,4.55466,2.208223333333333,2.282705,2.220655,5.08545,5.5369,4.8031125,4.066935,2.2953733333333335,2.497666666666667,6.689500000000001,1.7750139999999999,2.56071,3.3933,3.3933,3.20644,5.2129,0.7561975,3.4707666666666666,3.695355,2.8640133333333337,10.084967500000001,3.929,2.920006666666667,2.46811,4.292265,5.9043,2.98849,5.35785,2.65744,4.69257,2.943832857142857,3.888545,5.2501,4.669815,1.0623333333333334,3.5048,0.96304625,2.47838,4.969443485294118,7.4562333333333335,2.3428733333333334,3.3891666666666667,6.590756666666667,1.6486999999999998,4.591645,5.53245,3.70661,3.722935,2.2391866666666664,4.589595,2.2303875,0.5272746153846154,5.02955,2.86987,3.483033333333333,4.906995,4.63327,5.5024,6.556305,4.46597,5.4511,7.2083224999999995,54.95466166666667,4.523275,3.91114,4.7825,5.2382,4.269325,5.204,4.284855,4.63749,1.9792675,3.76384,3.72046,4.686785,2.792395,5.04805,3.70537,1.6950800000000001,5.39145,6.2563,6.914669999999999,5.38755,3.324925,4.3012,3.15743,3.222425,3.671835,4.44216,3.929775,7.06494,2.759775,1.11417,2.5432425,0.6117239999999999,0.6117239999999999,3.126765,0.6117239999999999,2.649789642857143,2.649789642857143,3.3805896428571427,4.409402500000001,4.875407142857143,2.5432425,4.634633333333333,2.5216708333333333,1.3546533333333333,5.42575,2.05979,6.9024453333333335,5.717463333333333,10.60907659090909,3.0638900000000002,2.5592266666666665,0.2091157575757576,1.9065533333333333,1.9739433333333334,0.8963475,1.1653466666666665,2.94413,2.497335,2.58495,0.583421,26.761243333333333,1.8082225,0.7983615384615385,2.37373,2.37373,0.38545,1.63508,3.163985,1.2276275,1.5355075,1.630055,3.985035,2.942645,1.97021,2.4867966666666668,1.161765,1.869445,1.4139799999999998,5.397097583333333,3.689085,6.647727499999999,2.430215,3.3560666666666665,0.8926783333333334,2.59927,5.07515,6.186805,3.1458866666666663,2.1504966666666667,5.163800833333333,1.8863075,2.3240766666666666,4.3803775,1.0337333333333334,3.4058333333333333,2.317886666666667,4.57059,4.5182,5.90155,2.93648,3.9404275,3.9404275,5.1155,2.001335,5.2989,2.78955,1.607245,2.99223,3.25216,4.856086333333334,4.09432,2.6641366666666664,2.7195,2.85167,0.9951571428571429,4.98767,0.9127725,5.568843333333334,4.355645,7.45613,4.311025,4.31887,4.03484,8.127591666666666,3.999005,4.3899,1.19236,0.7216642857142858,4.32962,4.115155,2.103795,3.281045,3.2659,4.2497,2.210785,4.72779,2.483893333333333,5.2638,5.0649,5.67885,4.1851,4.93611,2.939025,6.547923,3.439765,4.261875,3.469245,4.872175,5.389151785714286,0.5996085714285714,3.664633333333333,1.8990266666666666,0.5584155555555556,3.744765,2.45858,1.01552625,2.00852,6.51711,3.64038,2.410205,2.6691066666666665,2.7574733333333334,4.73544,3.890685,1.6782088095238095,4.119635,2.11055,3.7072333333333334,3.96604,5.10405,2.9982391666666666,3.4745000000000004,3.7233,2.04508,7.38028,4.8293,4.24295,5.2206,2.16409,4.354715,4.76055,3.537675,3.86903,10.984145,3.2255,4.96215,4.641915,4.592785,2.307975,4.455605,4.06391,4.971795,3.344,4.006385,1.32399,2.9955200000000004,3.422715,3.62245,4.669705,1.918956,4.088535,3.0107766666666667,5.4898,3.1542066666666666,1.7595,3.817595,4.37037,1.03435875,2.979775,2.6904233333333334,4.4746793333333335,1.598798,1.6648333333333334,1.0225525,3.24072,5.6433,5.5073,3.6268325,3.019945,2.405755,2.02355,1.817025,1.5801866666666669,5.92965,2.944175,1.8971875,0.8904538461538463,19.90677337820513,3.023225,3.359091666666667,4.2379299999999995,3.8977335897435896,1.3074466666666666,2.7270638333333332,2.7884411363636366,1.285464,1.8460766666666668,4.373395,4.370705,3.501925,2.94773,5.3604,4.634765,6.688515,4.517540833333333,4.40684,3.693125,2.5717333333333334,4.0779,3.93731,3.603666666666667,3.871625,1.6904075,4.669385,8.54208,3.239985,2.846195,3.25915,0.60884375,3.07315,2.1086,2.265765,4.4315,3.10109,4.90052,3.64394,3.013035,2.21306,1.72447,0.761622,1.4809933333333334,1.2488066666666666,3.992205,3.85804,4.581455,4.578765,7.50782,2.3099966666666667,1.442972,2.2960133333333332,7.455401666666666,3.204195,2.85465,2.98976,4.171,3.2619125,3.533375,1.504142,4.8258,4.806865,4.21392,4.08737,3.33489,4.13134,4.19396,3.87972,4.301385,4.71197,2.24365,3.326893333333333,3.079765,5.2501,3.030645,4.354098,2.783895,3.02006,2.1966933333333336,2.25013,2.1463033333333335,2.4560993333333334,2.4560993333333334,2.0066366666666666,2.9214233333333333,2.3940633333333334,2.3636233333333334,2.13923,4.18629,2.3711866666666666,2.813826666666667,2.9468033333333334,1.75652,4.68358,2.6732,3.70277,2.2923533333333332,5.00035,5.2402,4.729828333333334,2.421565,2.31438,3.017645,2.7732,2.236905,2.922255,1.88575,2.6716,2.792725,6.8880550000000005,4.296165,3.816,0.601679375,4.24044,3.840445,3.955485,3.26095,3.857915,3.7240266666666666,6.2558,4.22738,3.18387,2.760972142857143,2.098628888888889,2.53246,1.686552,1.7110880000000002,1.3835520000000001,1.90631,1.71575,1.1636016666666666,4.211701142857143,0.5900546153846153,0.5540588888888889,1.8780000000000001,1.4809316666666668,1.4016899999999999,1.359255,2.2144201515151516,1.4227333333333334,1.604852,0.6023225,165.0083328075344,0.4909026666666667,1.971358,1.0703200000000002,1.159685,2.1795575,1.5385525,1.98453,2.2761,1.65085,6.39215,3.22087,3.3945804761904763,1.7864000000000002,3.194575,1.3097983333333334,1.3097983333333334,5.7108325,0.4728494444444445,2.1639225,3.10354,3.0457366666666665,0.8008254545454545,0.5214105882352941,1.0865401025641024,0.9798181818181818,2.3104125,3.940115,1.90037,2.1142275,2.192876666666667,4.7414435,0.9890066666666666,4.32482,3.44567,3.615595,6.95022,1.7168033333333332,3.07467,2.647525,3.378495,2.48103,2.99897,2.68366,3.24794,4.05569,2.801335,7.57548,2.27781,2.91495,3.39235,1.65585,2.61143,2.4153,2.92165,1.753975,1.466985,2.58933,4.0864,4.995611666666667,2.94358,2.914375,1.50216,4.144395,3.8333333333333335,4.040133333333333,3.006505,24.51599034004884,2.6596013333333337,2.59742,2.8834466666666665,3.470833333333333,3.01925,5.509830000000001,3.21087,2.2765766666666667,3.3697666666666666,3.4564333333333335,2.2694966666666665,3.21589,3.358033333333333,3.0042333333333335,1.7565,1.65008325,0.581842,2.3493333333333335,1.897515,0.21589375,2.1830066666666665,2.562875,0.21589375,0.21589375,2.12889375,0.21589375,0.21589375,0.21589375,0.21589375,2.6922466666666662,2.4831433333333335,0.5639046153846153,3.3043050000000003,1.3665275,1.948294,5.7265,4.276515,6.0429875,1.9581925,4.881885,2.0236275,2.55699,1.2745385714285715,5.549673333333333,2.868176666666667,5.990717500000001,0.8291033333333333,1.4405125,4.60619,4.678095,34.3605852986458,1.560268,1.3709266666666666,2.3316766666666666,2.3621375,0.8872690909090909,2.36572,2.4067066666666665,2.74273,1.9308500000000002,2.4571033333333334,1.6694266666666668,2.519223333333333,2.35514,2.264186666666667,2.7143366666666666,2.4231633333333336,3.929375,3.1756933333333333,1.1734257142857143,4.002665,4.05808,19.53614072222222,2.77187,3.2976266666666665,2.56311,0.800802,3.119484,1.5508942222222222,3.119484,2.2206,2.4816133333333332,2.6985233333333336,1.5309425,1.9521475,4.111335,4.092845,5.1145,4.460105,1.66515,4.933875,1.6314925,4.96844,4.021074809523809,4.248935,0.7575454545454545,2.0506925,2.0558725,2.759996,3.393705,1.05817125,2.79059,1.8666,1.934,1.052036,1.052036,2.4238633333333333,2.60649,4.292925,27.568507083333333,6.373785,1.9018666666666666,3.6433833333333334,0.39551,5.778074999999999,6.08415,2.7967766666666667,3.393295,5.29603,3.52857,1.1007,4.30272,1.313102,2.603325,4.516775,4.477165,2.130225,3.13372,4.512275,2.62443,2.6358295,4.177545,1.3064799999999999,2.422975,3.76213,5.2598,2.3943766666666666,3.0439433333333334,2.73106,3.932425,4.09213,3.94277,4.260933333333333,1.828515,6.01635,2.502075,1.7800920000000002,4.145355,5.84843,4.043735,3.345555,0.7063725,2.965875,3.57585,2.099935,4.963164,2.74545,3.94611,2.88512,3.4237333333333333,2.596295,3.22696,2.9334433333333334,2.9269866666666666,4.089325,5.45635,3.189315,1.799485,3.834775,4.134695,1.875965,1.914685,1.7260625,3.869035,4.4815,5.094619270833333,4.076745,3.294783333333333,3.658975,3.2330400000000004,1.4114449999999998,3.11829,2.939515,3.010535,4.753025,4.45446,4.071755,2.93224,1.89438,1.59986,1.4807825,3.726625,2.487655,2.196485,3.42478,5.11625,1.60228,5.06195,1.388907142857143,1.8185725,3.23085,2.838015,3.079525,3.81877,3.16722,1.767995,0.9647303684210526,2.87621,3.6520533333333334,4.058735,8.783456666666666,2.882963333333333,3.049716666666667,1.4854266666666665,2.8892733333333336,2.6375733333333335,1.1658883333333334,2.8399966666666665,2.49978,3.1966066666666664,3.8704,2.963533333333333,6.857175,3.037436666666667,0.7683727272727272,1.6979066666666667,3.782975,3.34043,3.49545,3.5553000000000003,2.4657159999999996,3.04869,2.736595,1.9699437142857141,3.885055,2.4601905555555557,3.44244,1.9909866666666665,4.861495,5.42585,4.337665,3.327395,3.578365,0.8690355555555556,4.47879,2.8107233333333332,2.7028466666666664,4.255285,2.67663,2.62429,0.5366914285714286,0.5366914285714286,4.260773333333333,3.888305,6.9665,3.03724,4.4068,3.63297,3.17376,4.66901,3.86626,1.06604,3.73387,2.6075433333333335,4.168823333333334,2.8856266666666666,3.198698333333333,1.8395299999999999,3.244048928571429,2.374573333333333,2.7636299999999996,2.5481766666666665,2.9148833333333335,1.9033033333333333,21.915676591567856,3.54543,3.96377,4.0911,3.29938,4.22124,3.573565,4.6124,4.1471,3.855025,3.272795,4.114325,2.475826666666667,2.595683333333333,2.8802866666666667,3.0339816666666666,2.8067733333333336,4.169755,3.503415,4.9302725,4.89807,4.252925,1.346754,1.45284,1.45284,4.75416,3.808095,2.48762,2.2454199999999997,2.8830333333333336,3.29961,3.432285,7.63048,3.1384399999999997,3.4060666666666664,3.083661666666667,5.4885,1.5402833333333332,5.8124025,2.47036,2.8696699999999997,1.7741725,3.4254,2.82679,6.20491,3.37881,2.619205,4.21201,4.177969333333333,1.483535,2.5090033333333333,1.64626,7.1926404999999995,4.27641,6.54933,2.22441,3.968825,3.79022,3.828995,5.0846,3.3307300000000004,3.3307300000000004,2.1064425,4.28081,4.86846,2.432755,6.549728571428572,1.60007,5.8296,8.384519333333333,3.6798333333333333,4.179782,2.26231,1.9958,0.574914375,4.417815,2.524275,2.7184,3.6202104999999998,2.2729425,2.367863333333333,3.679655,5.82015,5.25625,5.1489,4.5201,4.157135,2.26204,1.0325545454545455,2.916635,3.49745,2.8067666666666664,5.1071,4.05689,3.15192,2.47193,1.8566680000000002,4.149285,1.02453,5.11925,0.9913522222222222,5.4565,3.400235,4.822955,4.782385,3.045885,3.224635,2.9154733333333334,2.32672,4.22822,3.0582,2.48943,3.606425,4.696415,5.532138333333334,4.531395,1.54094,3.31078,3.068755,5.64311,1.9671275,1.9671275,2.98181,2.50405,2.4000966666666668,2.6734533333333332,0.829815,6.2505,3.16035,1.927245,2.344755,2.68167,3.57566,2.595385,3.733215,5.0845,5.1852,4.677805,5.93675,5.6605,1.267725,3.459225,1.1176583333333332,2.46332,4.343566666666667,2.56849,3.10001,3.203015,4.55825,3.0005,0.44089526315789473,4.62702,4.156885,4.943335,3.116975,4.57308,5.27395,4.246225,4.053495,1.951435,4.64732,2.1219925,4.1156,4.1156,6.2738,5.661,5.5982,4.834295,2.70336,1.5402833333333332,4.00696,1.9778566666666666,1.6503966666666667,1.960915,4.22742,4.044175,4.19247,8.14345,1.6107500000000001,5.16115,1.2438516666666668,3.18133,5.8383,1.965515,4.74229,2.6806099999999997,4.544065,3.301485,4.93976,3.3024833333333334,4.32336,4.081305,5.8431,4.34364,3.69773,3.753675,5.885,4.0583,4.545925,3.775565,3.956355,7.014573333333333,3.56953,7.2603,3.473665,5.4396,5.938430227272727,4.26344,3.65079,1.5954075,5.60695,3.99918,0.8367422222222223,8.19325,6.0513,5.0813,3.078543333333333,5.1129,2.92615,1.74894,4.089235,1.122665,5.9769,2.672965,4.682895,5.509,4.243725,4.01021,2.1089233333333333,4.281905,5.0231,1.689775,7.095793333333333,3.0591,3.519205,4.90258,4.403455,2.4729,4.47936,3.417675,3.73057,2.731786666666667,4.07549,3.862145,5.36295,4.667415,3.219375,1.83207,1.83207,7.496743333333333,1.4169214285714287,5.0452,4.151445,4.947715,3.42767,3.684675,4.856195,3.86432,0.870245,0.870245,0.870245,3.548775,3.281475,3.95062,4.417196888888888,2.763175,1.46717,4.21099,2.119045,2.82073,3.93989,4.38145,2.0213225,2.14526,5.73383,3.785095,3.09912,4.371725,1.6627025,2.0332075,3.27683,2.56524,5.0025,1.411744,1.6222239999999999,1.0453125,3.7865,3.53081,2.83182,2.908393333333333,5.34115,1.7375440000000002,2.051685,3.026715,1.6552714285714285,3.21813,3.5952,2.52645,5.8531,5.4996,2.827025,4.20968,3.273395,3.49668,3.22254,3.939925,3.533935,6.94875,5.07875,1.8679766666666666,1.7356999999999998,3.49044,4.756055,4.147585,3.372325,2.8797766666666664,4.12517,6.20035,4.95681,2.7997833333333335,5.2372,4.014355,4.24211,8.1289525,3.93648,0.6799290909090909,3.990805,4.169173333333333,2.45702,3.995625,3.8470999999999997,5.8706,4.00415,3.970365,3.83875,4.315885,4.41578,4.38184,2.806915,3.72592,5.03505,3.96529,2.33946,3.03474,6.3234,5.347,2.0492999999999997,2.911695,4.666038333333333,3.89652,4.6419,4.058645,2.5667266666666664,0.8849133333333333,4.332620303030303,6.5561675,3.70641,4.76622,3.612315,6.683203333333333,3.680945,3.564966666666667,2.6795666666666667,3.76293,2.250915,3.583735,4.23646,2.4661145,3.846505,5.9703,1.4002475,4.439945,0.6478371428571429,5.84355,6.3999,6.03095,6.2087,1.5465833333333334,1.73112,4.371915,1.904175,5.50475,0.5283633333333334,5.96675,3.27623,1.54953,6.228865000000001,6.62135,0.86626,1.8261960000000002,1.4001839999999999,1.4001839999999999,1.4001839999999999,2.3111833333333336,4.849635,3.63578,3.415185,3.960305,4.96053,3.728455,1.975214,4.206125,4.788265,0.2970536585365854,3.25461,4.25665,4.08108,38.47545720454546,5.437494166666667,5.04355,11.227354666666667,3.08201,4.14361,7.143673333333333,3.08228,4.99331,3.69152,3.781935,8.87254,3.92325,2.683453333333333,2.724655,4.611975,4.306355,3.72172,4.39093,1.86747,4.58174,4.16412,6.678580999999999,4.008945,4.643375,2.3669725,4.306955,0.517585,1.4549616666666667,3.275455,5.88935,2.97414,1.227595,1.227595,2.863895,3.88795,4.090985,2.414685,1.6196866666666667,3.612355,4.28058,1.7361825,3.4500333333333333,1.607498,1.8446533333333335,4.07606,4.568545,2.0111025,4.519205,2.204445,2.01977,3.59772,3.65392,4.13062,3.949825,6.051713666666666,2.385043666666667,3.86413,0.7336354545454546,0.6848191666666666,3.863935,2.38826,8.425256666666668,3.377266666666667,4.85764,1.710725,4.517645,1.4497933333333333,3.805225,4.210205,2.5764033333333334,3.71843,4.70167,0.415949,0.415949,3.7302666666666666,3.1513899999999997,2.892856666666667,3.47781,3.60565,5.34325,1.0408363636363636,9.618648333333333,10.58779,1.92638,4.713175,4.607525,4.670265,3.664975,2.465993333333333,2.0405,2.15599,9.9895775,2.08506,2.7241999999999997,3.516572,4.438395,3.516572,2.0284425,2.7523733333333333,2.71691,0.7134227272727273,5.296155,2.8271766666666664,2.5654166666666667,3.84165,8.79326,10.440115,3.90184,4.060585,4.173335,6.63997,1.9638875,1.3781375,25.847816666666667,4.285485,3.61802,1.0252000000000001,4.89887,4.09875,5.39485,4.567345,5.28665,5.583346666666667,3.0847466666666663,2.073803333333333,0.6470764705882353,0.7426566666666666,4.64463,5.1148,1.3507416666666667,4.033611666666666,0.9302,3.6418,1.4229200000000002,4.34957,5.83475,1.91097,2.37612,2.13243,3.83479,2.79646,0.39651,3.720415,3.58174,2.5505666666666666,3.35495,4.68554,2.7532766666666664,4.199275,3.313205,4.25947,8.01038,4.88271,7.576615,2.7118,2.606996666666667,4.63219,4.369755,4.51748,4.511275,3.842475,4.704375,1.20119,3.2076645833333335,3.248378857142857,0.710846,1.45284,1.45284,4.263795,7.288976666666667,0.8171538461538461,4.754165,0.8780066666666667,2.89791,2.2783599999999997,2.525497954545455,6.073982222222222,2.44661,1.1399222222222223,2.3539566666666665,1.23985875,1.8727566666666666,3.170873333333333,3.102711666666667,3.186443333333333,2.4571466666666666,0.8780066666666667,4.43534,4.843515,5.21655,2.75368,3.865725,2.08722,5.8886,4.673605,4.315775,2.9551366666666667,3.293345,2.23833,1.372535,4.17904,2.616475,4.46289,5.7661,1.65595,4.41874,2.8001666666666662,6.316085,3.619065,2.44638,0.8780066666666667,2.494695,3.65499,7.240823499999999,2.314583333333333,1.918568,2.314583333333333,0.414765,1.058816,3.808255,2.73691,1.7424075,3.538875,3.851316,0.6456959999999999,0.6456959999999999,0.6456959999999999,8.165715,1.585382,0.7268609090909091,34.81548331818182,1.812846,0.64247,2.9285975,0.64247,3.86045,1.972665,2.60162,2.3874166666666667,5.0979,4.01722,4.588225,2.4278233333333334,0.8916328571428572,4.13895,3.2182833333333334,5.0464,1.0596214285714285,2.899425,2.899425,3.89765,4.20894,3.318585,4.240920384615384,3.104095,4.73746,5.13375,1.761778,1.089295,5.21045,6.5608,3.875015,0.6911970000000001,4.425315,4.0709333333333335,0.88733875,4.356695,2.33043,3.70881,4.352585,1.8699590909090908,1.8699590909090908,4.034475,3.34986,0.8921455555555556,2.952495,2.888,3.2664,4.05776,4.31848,0.4117328571428572,0.3377276470588235,0.3377276470588235,0.3377276470588235,0.7494605042016806,0.5367353846153846,0.664955,0.3377276470588235,0.3377276470588235,6.937885,0.3377276470588235,0.7494605042016806,3.5295,1.2766925,4.58371,1.2039366666666667,0.571736923076923,0.88733875,2.524325,2.621625,3.828145,3.183865,0.3377276470588235,0.3377276470588235,4.36091,3.877835,3.93936,2.55455,4.21375,1.464522,4.044875,0.664955,0.664955,4.761285,3.21843,2.802915,3.02395,3.74066,1.07951,0.9412307692307693,10.09981,1.23356125,3.756495,4.45359,5.1607,2.03764,0.365884347826087,0.83114375,2.7845933333333335,3.149475,3.073405,3.94518,1.341004,5.83545,3.301375,4.77038,3.97796,2.9961533333333334,2.7872733333333333,6.501465,2.3478866666666667,4.443455,4.18303,3.7194866666666666,6.068955000000001,0.539156,4.43918,3.526666666666667,1.9966533333333334,0.7086566666666667,4.087065,4.37627,2.84116,2.350995,2.24747,4.97509,2.80513,2.805625,0.987052,0.4828753846153846,3.916165,0.35640133333333335,0.7616963636363636,4.03267,2.957355,3.74063,2.70693,5.225,4.358095,6.152685666666667,3.617625,3.36143,4.34145,1.5887425,5.2905975000000005,1.700132,3.988865,2.4741675,5.783426666666667,2.58376,1.027672,4.46971,6.900805,6.745577916666666,3.6112333333333333,0.7954991666666666,2.97059,4.41675,3.89697,4.573895,4.508375,3.95938,4.95648,2.916465,4.188365,1.90337,2.260375,1.4243833333333333,4.08434,9.562755,3.165705,3.746265,5.821,2.850085,3.88077,2.5532233333333334,2.8644653333333334,3.436005,3.008015,3.338885,2.815375,3.66773,4.67793,5.81525,4.082815,4.704295,4.865905,3.875555,2.652195,4.82154,7.523,0.9137766666666667,4.075675,4.088675,4.812735,5.55905,5.0694,2.37348,7.72175,2.46194,3.753855,5.90095,3.7834,4.47588,2.1516200000000003,1.7426625,3.04553,2.13532,2.0971100000000003,2.7604966666666666,4.101055,4.547145,3.992405,3.56074,4.807311666666667,3.534395,3.12,3.9341375,5.96515,2.8768,5.209847833333333,3.749995,3.770185,3.542325,7.63456,3.84993,3.734295,4.164255,4.675275,3.06267,11.1407,1.264305,2.36243,3.49219,2.6975833333333337,2.6975833333333337,1.93589,7.718260000000001,0.87165,2.984745,0.92623875,2.051685,4.17926,5.2286,3.799945,3.967245,2.669753333333333,3.067745,3.71599,3.98466,4.05264,2.893985,2.5098,3.9355,4.53867,3.271415,4.179095,1.64967,1.66107,2.6806966666666665,5.62,2.1699625,1.7415166666666666,2.0745425,4.20915,4.491505,3.089355,2.751315,0.5217733333333334,2.238205,7.178559999999999,3.263965,1.4905366666666666,0.88612,1.3588699999999998,2.0444466666666665,2.40689,1.2459866666666668,2.14662,4.5026589999999995,3.89896,4.660415,2.4658666666666664,1.8889975,7.0083975,2.87725,2.2028933333333334,2.2028933333333334,2.2028933333333334,6.37734,2.2278733333333336,3.65433,2.48436,0.465148,1.154598,2.2662175,5.771542500000001,0.44892388888888884,3.726955,3.948528333333334,5.71695,3.0899105555555555,0.44892388888888884,3.0899105555555555,0.88405,1.174886,5.7123,4.244435,6.658975,3.87446,4.54964,3.56049,4.10378,4.94949,5.53165,6.08645,3.89138,3.490875,4.99064,4.349025,4.151835,4.479285,4.45077,1.3406733333333334,2.4600166666666667,1.2347775,2.0727775,3.1610383333333334,1.5964183333333333,6.7248624999999995,5.64311,2.60678,4.07418,2.925795,4.598975,2.799275,3.853035,4.993645,9.242189166666666,5.05115,4.316445,2.4012275,2.907295,2.00406,0.60884375,2.1541084444444447,5.7098,5.2471,4.90064,4.10932,0.5492673333333333,1.994135,1.41466,4.237635,0.6813784615384615,6.3020575,2.0622175,1.0717125,1.0717125,3.9342439999999996,2.0021999999999998,3.033103333333333,2.569575,4.56693,3.4594725000000004,3.4594725000000004,4.121915,5.643511666666667,2.69558,2.5732766666666667,3.2316633333333336,4.72461,1.840792,2.8008666666666664,5.5243,4.94606,4.63546,4.0492,3.9895016666666665,4.27605,3.579225,3.0347899999999997,2.3117725,4.28428,5.4511,3.2895087499999995,4.94221,5.4714,2.09197,2.4368766666666666,6.0303,7.0115,1.1345,2.678475,2.450925,2.7300833333333334,2.1728075,2.5438,2.7013540000000003,1.044318888888889,1.948965,2.6591,2.29873,2.5537316666666667,2.5537316666666667,2.981015,3.003275,2.218774423076923,2.6275,2.36426,2.00348,1.5682546666666666,5.2010425,14.929523166666666,2.8925433333333337,3.1493266666666666,1.7774360000000002,1.7774360000000002,1.6495266666666666,1.6495266666666666,2.7519666666666667,3.7202333333333333,2.8497866666666667,1.9697975,1.9697975,3.964166666666667,2.576896666666667,1.1181066666666666,1.456357142857143,2.8967433333333332,2.7853366666666663,3.5094333333333334,2.472553095238095,3.2748666666666666,3.027416666666667,0.683795,2.5904,3.593013333333333,6.952758333333334,4.599005,5.41785,4.28319,3.44821,4.97821,4.56551,2.808923333333333,4.1294,1.3463783333333332,3.194793333333333,5.57495,5.18775,2.78672,1.1542583333333334,2.911665,2.2000466666666667,2.885946666666667,1.495395,0.6876992857142856,2.8948,4.343190833333333,4.801425,4.122565,4.60755,3.071016666666667,2.0887266666666666,3.2605174999999997,2.5173566666666667,3.19802,3.157916666666667,3.1975866666666666,2.558683333333333,2.2635066666666668,3.5393666666666665,2.8142666666666667,5.1942,4.66674,5.160720833333333,5.160720833333333,3.444595,4.110165,3.78218,3.82231,2.81142,4.17028,3.41281,2.91696,6.2183,0.7251124999999999,5.2675,4.573445,2.5715966666666668,5.199106666666667,3.5111333333333334,1.7640666666666667,1.162872857142857,1.9986033333333333,0.984036,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.5606671428571428,0.5606671428571428,1.212775,0.8822218055555556,1.7601679671717172,0.9197299999999999,0.9197299999999999,1.2884524116161615,0.4717155555555556,0.3843288888888889,1.19829,1.4473775,2.4665966666666668,2.1914875,6.176753333333333,2.95847,3.867035,3.4106266666666665,5.026634285714286,1.29714,4.78792,3.780205,5.2295,2.99105,1.54027,4.252935,3.730715,4.20608,4.36417,2.88614,4.7645,4.62822,4.55663,1.249242,3.8398,4.561775,3.19173,2.4272533333333333,3.422965,2.42632,3.42823,4.539825,3.0083800000000003,4.58957,8.996690000000001,3.326095,4.7761,4.026815,4.3102366666666665,2.529306666666667,4.800725,1.35091,4.345715,3.60885,2.2237999999999998,1.2637375,2.77434,1.3024933333333333,0.49378533333333335,3.6186000000000003,4.156115,5.26831,3.6190333333333338,2.5056,2.59511,4.824895,3.9530333333333334,5.10835,2.714725,2.256676666666667,4.107705,3.81895,3.98292,4.94674,4.231195,3.81754,4.60747,3.0110566666666667,4.164995,2.2398387499999997,4.51673,5.29395,3.27031,4.18573,2.531535,3.857905,5.4449,3.89562,5.10925,4.574905,4.837895,2.20673,4.73165,4.71922,4.514685,2.1394825,1.046935,4.013195,4.757335,3.91085,5.0153,1.894085,3.775425,2.206575,4.874915,4.523995,4.49463,2.2110625,4.064555,4.386105,4.18782,2.4458166666666665,4.723455,4.681555,5.1882,3.72614,2.1394825,2.38256,2.852765,5.02035,3.764125,3.971275,3.586985,4.768295,2.27349,6.89873,5.2918,4.46095,5.310845263888888,5.18065,4.93754,3.3335425,2.7618783333333337,2.7618783333333337,3.765165,3.512055,4.642565,2.1387325,2.7008375,0.913895,2.3965,2.85608,2.2566366666666666,2.9621166666666667,4.1078,2.7637966666666665,5.1344,2.42354,4.303775,4.590345,1.946325,4.268285,2.73865,2.51414,4.04584,0.868388,5.2198,4.54601,5.9305975,4.566315,5.51985,1.2665557142857142,4.581565,6.50755,8.179305,3.14288,3.1565666666666665,1.9079039999999998,0.811532,3.931145,1.0436828571428571,4.75948,4.53572,5.868,3.20952,3.928355,1.1267171428571428,3.541795,3.65814,4.45975,3.741765,3.037325,2.851205,2.3428925,4.24296,4.6716,5.48355,4.235615,3.465185,0.5289877777777777,0.5289877777777777,0.5289877777777777,0.5289877777777777,5.76905,2.76159,6.20825,3.0305033333333333,5.00765,4.71678,3.72719,2.31449,2.6101466666666666,1.4711833333333333,5.01755,2.7919366666666665,4.301545,3.612045,3.472495,1.57301,1.12655125,4.34272,2.546935,5.8577216666666665,4.03465,4.53328,2.53054,1.466995,0.8873166666666666,3.3248,4.02347,3.457345,2.14253,7.966985,4.48802,3.610095,2.23434,0.468643,3.47911,2.821985,2.0352,1.891225,2.646105,2.71247,2.320055,2.85885,2.88156,3.17486,4.52856,3.588675,3.931485,2.936145,5.66716,0.6192326666666667,4.47095,5.6178,4.81896,4.472395,3.3485,5.28775,4.37293,4.003955,5.263575,5.2609,4.478575,4.414905,3.7493475000000003,5.03995,2.896725,9.1682,4.77907,4.040175,4.578095,4.954635,5.52875,3.323235,1.123288888888889,5.897774999999999,3.358445,4.666025,1.41514,4.356455,3.40507,6.525285,4.62623,3.186995,1.91352,4.839755,2.14054,0.903725,4.29746,6.21705,1.8773600000000001,2.3809299999999998,2.8698,3.09489,3.598645,3.7475,5.08915,1.7269133333333333,4.252455,3.9512944999999995,3.30568,3.8477,3.72425,2.811175,2.6202,1.836495,2.5049766666666664,2.684093333333333,4.436315,0.5691350000000001,2.60552,4.10548,3.01127,3.506866666666667,4.1071,4.763985,3.855235,16.775503954545457,2.72363,4.1156,1.435362,0.8979054545454546,0.8979054545454546,0.8979054545454546,0.8979054545454546,0.8979054545454546,4.84726,4.57655,4.69322,9.055151500000001,2.36293,2.36293,4.46764,4.824145833333334,1.3894125,1.9538666666666666,3.70849,2.39552,2.30153,2.1519225,3.044175,3.7651379999999994,1.62248,3.484315,0.8188642857142857,2.797076666666667,2.7201066666666667,3.1198,1.4435833333333334,3.2080366666666666,2.21306,0.94565375,2.7751866666666665,2.6776133333333334,1.305288888888889,2.4002466666666664,2.4844133333333334,2.0079066666666665,4.38915,1.72895,2.72113,2.092075,2.683073333333333,1.1321555555555554,2.706993333333333,4.941698666666667,3.5267,1.0480875,3.0139766666666667,1.312995,2.3854366666666666,2.3668366666666665,4.8214533333333325,3.0007133333333336,2.36029,4.6183320000000005,2.6362799999999997,2.16496,2.641643333333333,2.4431,1.6709500000000002,2.748483333333333,3.05364,2.909026666666667,2.5020366666666667,3.0412133333333333,2.62724,2.3697575,3.7417764999999994,3.7417764999999994,3.001723333333333,2.01505,1.9428266666666667,2.330156666666667,5.583193333333334,2.93125,1.9625733333333333,1.6810375,3.006463333333333,4.275315,2.3633533333333334,1.057504,2.7361306666666665,1.5383333333333333,3.1538566666666665,2.2597466666666666,2.5087333333333333,2.1324666666666667,3.3067100000000003,1.23557,1.6888066666666666,1.5570300000000001,4.28894,2.6632666666666664,3.926025,1.0592877777777778,4.122565,1.9934833333333335,1.9755875,1.694464,1.6543283333333332,3.3024299999999998,22.974585093073593,7.488833333333333,2.66545,3.417275,2.7207866666666667,10.081993333333333,3.00557,1.01858625,2.53003,2.4744433333333333,2.0180433333333334,3.0212800000000004,2.57926,2.5602833333333335,0.970715,3.12963,2.6264266666666667,3.0464966666666666,2.8228066666666667,2.68425,2.0963966666666667,2.11842,2.9244833333333333,2.6465433333333332,2.1367275,1.552858,5.1216800000000005,4.509745,2.3436075,2.99805,2.3363766666666668,2.41976,8.178175,1.93102,4.825175,2.501375,1.908435,7.82692,2.85589,2.7256466666666666,2.4836,1.79483,1.5505923076923078,3.2020866666666667,2.9674833333333335,4.22831,1.54467,3.5243333333333333,1.373965,1.373965,4.140745,3.78729,3.4794142857142862,3.4794142857142862,5.61023,3.53461,0.43173399999999995,11.677784917582418,1.2378966666666666,0.9354285714285714,3.723028333333333,1.4421305128205129,1.9053775,5.894783333333333,3.709395,0.6986618181818182,2.22846,4.820406545454546,2.3918938333333335,3.735815,1.2665971428571428,5.2836,4.90726,4.808015,3.13629075,1.891488,2.2356833333333332,2.5967066666666665,2.2678833333333333,2.12512,5.276096666666666,4.292415,4.00103,1.9086175,4.75158,4.155305,3.148096666666667,2.10117,4.81848,2.46383,8.806370000000001,6.366905,1.839665,2.629595,1.745532,4.578366666666667,4.578366666666667,3.0034733333333334,2.53832,2.8558616666666667,4.828665,9.7991025,4.132145,2.4416225,5.51795,4.14782,5.10475,1.964408,0.833925,1.3451166666666667,4.54659,4.87961,3.6110333333333333,2.5834066666666664,3.6718333333333333,2.183143333333333,3.841825,5.0057,3.477635,5.4921,3.230786666666667,3.4963306666666667,3.1850199999999997,3.19745,3.3432999999999997,6.1109,2.93245,5.33805,4.62211,3.430355,3.317375,3.317375,5.5937175,11.999171666666667,3.7759666666666667,5.9320675,7.397318333333333,3.67069,2.49938,4.05712,1.2921133333333332,3.837055,2.6371,2.98141,2.8936466666666667,3.2557833333333335,2.09972,2.3531733333333333,2.6101366666666665,2.4816866666666666,2.88827,3.2290200000000002,3.844405,2.5808666666666666,2.9080366666666664,3.80373,2.6513666666666666,2.3916999999999997,1.0971175,2.0729375,2.6915766666666667,2.4158033333333333,2.53715,2.511406666666667,3.4143000000000003,2.2080933333333332,2.3749433333333334,2.4973566666666667,2.96398,2.6544833333333333,2.7115833333333335,2.4584699999999997,3.108086666666667,2.894503333333333,3.352558,2.5962733333333334,2.5044066666666667,2.26897,2.7236700000000003,2.4360666666666666,3.4578666666666664,3.312053333333333,2.725065,1.933175,1.933175,0.8024300000000001,1.504142,4.20443,3.220115,2.613496666666667,2.09972,3.10171,1.157697142857143,2.4799,0.543668,3.288206666666667,3.0551766666666667,3.434015,2.9773666666666667,2.5533766666666664,2.44532,2.8892866666666666,2.4441466666666667,3.207003333333333,4.32007,1.518922,2.717003333333333,2.42855,1.8595066666666666,2.20348,2.7659599999999998,2.5787033333333333,1.62316,2.5263433333333336,2.6445233333333333,2.54007,2.56689,2.65188,2.828943333333333,3.0988100000000003,1.3999125,2.801273333333333,2.4102866666666665,3.6534,3.7976666666666667,1.84249,2.0036166666666664,3.2704033333333338,2.4120766666666666,3.4050666666666665,2.6847999999999996,2.607466666666667,5.105779999999999,3.26486,2.073586666666667,1.54118,3.300883333333333,6.284086666666666,2.9074866666666668,3.5244999999999997,2.864266666666667,2.98574,4.650063333333334,1.5977999999999999,1.1188666666666667,1.9940733333333334,1.6923279166666667,4.627775,2.804743333333333,3.2073699999999996,3.1811366666666667,3.2919866666666664,2.0871033333333333,3.5464333333333333,2.4757225,1.584272,2.8115900000000003,3.566855,3.59503,3.212375,3.52006,1.6209875,2.837105,3.42646,3.033505,2.3377933333333334,3.8276333333333334,3.9467,3.839866666666667,1.318015,5.493355,3.30335875,1.4851833333333333,3.20215,3.16219,2.861985,3.55918,1.767172,1.767172,3.1644,3.00264,2.83792,4.96093,4.344305,4.1567446666666665,1.5534979999999998,3.2151333333333336,2.411626666666667,4.2404399999999995,3.0493066666666664,4.8096733333333335,2.6183533333333333,2.36706,2.44125,3.6468,3.799145,1.629822,3.0447966666666666,2.85202,2.275705,4.34005,1.3399183333333333,3.04348,4.23055,2.709725,3.56335,4.081705,1.6186325,1.6164133333333333,2.39615,1.0454583333333334,1.981339761904762,1.8686225,0.45576357142857143,3.818905,2.42741,4.28723,4.11736,2.832245,4.623601666666667,3.450466666666667,3.1190366666666667,3.407133333333333,2.324316666666667,3.2688466666666667,2.6999333333333335,3.0317333333333334,2.24509,0.6666015384615385,2.339653333333333,0.5944457142857144,1.9625000000000001,2.440166666666667,3.05851,3.097246666666667,1.3706800000000001,1.371895,4.297685,4.07959,2.870735,3.4125,3.21804,2.1710075,3.9687,6.849187777777778,3.57288,5.4299775,1.6154175,3.813595,1.893815,4.15101,3.278735,1.915385,3.727805,2.87054,3.63863,3.97161,2.09085,3.76268,5.7825125,4.87705,3.492445,2.788925,1.6857375,1.998415,3.61314,3.2375,3.1418,3.51419,3.600965,3.286445,1.50488,3.451535,3.002295,1.607585,4.1463525,1.0462,3.11626,1.618225,3.60604,4.521251666666666,3.62449,2.8638575,3.55658,3.202295,1.92539,2.2873175,3.8699999999999997,2.16212,5.663740000000001,4.18253,4.46079,2.52274,2.63549,4.3383,4.47009,2.2414180000000004,2.2414180000000004,5.784376666666667,3.7081225,2.5933225,2.94119,2.107486666666667,2.75287,3.27769,3.556675,2.6258675,3.28002,1.010178,3.532405,2.86658,4.098355,2.71581,1.5324825,1.369565,2.757335,5.990135,5.675660000000001,3.677245,1.45984,4.138155,3.556985,0.8455566666666666,2.76456,1.3255940000000002,5.23206,1.44159,3.83439,1.8382225,1.3706800000000001,3.0806,2.992595,4.58473,6.766441666666667,3.930115,4.254086666666666,2.482415,2.84346,4.017915,3.73037,4.13081,4.309105,1.057385,1.65008325,1.06824125,2.354,2.159445,4.908085,1.06824125,4.29318,2.43943,1.4828375,1.4828375,1.607585,3.594495,4.231855,3.8068,1.510006,1.510006,0.9524216666666666,3.12204,2.1229,6.068975,3.928845,3.657535,2.7282933333333332,0.96203,3.451725,2.95052,4.227815,3.52426,3.7183775,3.7183775,3.2596,3.99483,1.783675,2.672045,0.9656499999999999,1.7225466666666664,3.56589,2.3198833333333333,3.2929199999999996,3.2929199999999996,2.739935,4.68718,4.508885,3.897965,3.51537,3.939155,2.4052000000000002,4.19348,2.66293,3.527185,8.391275,5.0151,2.74626,3.217325,2.968715,4.55365,3.125318,7.689992500000001,4.471095,4.715595,3.248615,3.81259,3.56404,4.502295,4.827,2.373075,4.420395,6.354376666666667,2.623975,2.0419115555555556,3.022905,3.34156,3.70678,5.90275,2.2391866666666664,2.3441966666666665,2.84362,3.385865,3.457966666666667,6.815096,1.4568725,4.824075000000001,4.824075000000001,3.245585,3.7065025,3.111765,2.36347,4.87489,4.303911,2.157906,3.873135,3.964855,3.4821958333333334,2.842385,2.76338,5.626868333333333,3.40899,5.0273,2.862485,4.631145,4.33125,3.472495,3.00264,2.0492666666666666,2.694355,3.794185,2.927785,3.2800366666666667,2.85074,5.77622,2.450425,1.7404875,3.111460833333333,2.3772533333333334,3.786235,2.77086,0.8455566666666666,3.62201,4.10734,3.943315,6.019405,3.00734,3.070045,2.963013333333333,2.963013333333333,3.6551416666666663,3.85325,3.430445,2.028235,5.5639225,2.1016775,4.52099,3.561235,7.80192,2.8325533333333333,1.4118700000000002,2.94844,4.47669,0.57029625,3.966275,3.166905,2.84198,3.000475,4.25745,2.08213,2.450785,9.08444,3.530205,2.871925,1.44159,3.593105,2.709125,2.34212,4.052895,5.322785,1.6663,1.1593483333333332,1.0383850000000001,4.31443,4.05196,3.531155,3.178735,3.178735,1.50488,2.293075,3.088012777777778,0.8718477777777778,2.98869,1.02374,1.6209875,3.12147,3.329165,2.65863,2.6406,2.503365,4.33573,3.576475,3.08024,3.049535,2.757355,4.10526,6.99277,4.030405,0.896445,2.6860145,8.86128,4.72829,4.092965,1.0720975,4.636036666666667,1.3877433333333336,3.5353875,3.5353875,3.608625,8.55211,0.8485788888888889,4.729925,4.447215,2.29721,4.152200000000001,3.68271,2.152715,9.743623666666668,1.6253175,2.3140133333333335,3.308215,1.5938800000000002,4.208732416666667,3.017085,3.099125,3.2401706666666668,2.64826,3.40339,1.07524,7.23095,4.050155,3.74634,3.749105,1.912275,2.8638575,3.9794,3.60253,0.5994438461538462,3.793495,4.095245,4.43823,2.0797525,1.347154,4.031845,4.27261,8.62716,0.6814815384615385,0.9263175,0.9263175,1.8458266666666667,1.3535866666666667,1.44365,1.8661533333333333,4.683795,1.23336,0.8395557142857143,3.9859225,3.379885,1.2469675,3.33634,4.69941,3.716105,0.698824,1.91049,9.40994,3.491356666666667,3.268875,2.78764,1.596655,2.5585633333333333,2.611965,4.3647,4.49189,3.780765,0.8812728571428572,1.446566,0.9526830000000001,4.1096525,4.387235,4.22167,0.8718477777777778,1.7095559999999999,3.76358,2.2243053571428573,4.825634166666667,1.0270625,4.816165,0.6215183333333333,0.6215183333333333,0.6215183333333333,9.677605,3.826475,1.02374,3.80883,4.66538,2.80492,2.97198,5.471936666666667,2.77902,1.7574972222222223,2.048043333333333,0.698824,1.5443806666666666,0.5066455555555556,0.7701216666666667,1.4760350000000002,3.998685,3.691215,1.942345,7.435043333333334,4.97434,0.6023855555555556,6.08655,4.848753333333333,3.27834,4.488365,7.8514946666666665,3.7854989285714282,4.97434,4.4246109166666665,2.3806433333333334,4.1358,3.54138,7.03076,3.342385,0.468643,1.439526,3.889355,1.7732959999999998,1.1593483333333332,3.946345,2.3316866666666667,1.67292,3.082905,1.7093099999999999,4.49749,4.31005,3.969125,4.751075,6.11765,2.67396,3.521035,1.3255940000000002,2.1751125,3.30221,3.24575,2.157906,3.93647,2.397245,5.15035,2.95969,2.37999,3.3365675,1.7342220000000002,3.52444,0.8718477777777778,2.0628642499999996,1.0383850000000001,1.63069,3.54843,1.4568725,1.4760350000000002,1.9466425,3.24227,7.41088,0.8812728571428572,1.0720975,1.255042,3.520905,3.50956,1.255042,3.923065,2.1751125,0.57029625,0.8718477777777778,1.8458266666666667,1.3255940000000002,0.45576357142857143,1.6950800000000001,4.159765999999999,2.29721,1.34526,2.952405,1.318015,1.6253175,2.6934966666666664,2.048043333333333,4.970525,2.6934966666666664,0.8455566666666666,2.767474,2.04689,0.07621,0.07621,0.07621,0.07621,0.07621,3.30242,2.76841,2.6012066666666667,2.737076666666667,4.5551,4.43128,1.694464,3.8946,3.736715,2.21797,5.0108525,2.55434,2.504595,2.561125,2.72101,4.48434,7.809635,2.221025,1.9127233333333333,2.992862857142857,0.9257128571428571,1.38314,2.4103866666666667,2.03785,1.5070575,2.7672166666666667,2.1662433333333335,2.7094066666666667,2.5455466666666666,2.6047466666666668,3.56248,3.332075,2.5068033333333335,1.28105,3.55916,3.71263,1.5560666666666665,1.313072,1.313072,1.313072,3.535015,2.6774566666666666,1.0625166666666666,2.189686666666667,1.3310857142857144,4.24785,1.5120266666666666,6.063408333333333,3.1697474999999997,2.4282833333333333,3.128096,3.128096,5.2613199999999996,3.153845,4.530815,4.879135,2.0821075,2.950673333333333 -GSM1946763,1.0,2.0314325,2.0314325,1.6444166666666666,5.0727,5.7208,2.5200525000000003,1.7069133333333333,7.4480112990196075,4.4297,3.1457766666666664,2.24876,2.3526,3.061655,4.52038,1.8162500000000001,1.461984,4.85442,2.5182866666666666,2.3452775,4.857535,5.297503333333333,4.00833,2.139275,1.703014,3.880235,4.82802,4.30545,0.7109941666666666,1.5349411111111113,1.800821111111111,2.17414,1.6931075,1.1782814285714287,0.70206,3.1842339285714285,1.57827,1.655335,1.1921425,2.1710075,1.127855,1.075665,1.146546,1.470754,0.941584,0.94924,0.768482,1.2128542857142857,1.538648,1.7977440000000002,1.5268359999999999,1.9789999999999999,1.724256,17.5176995,0.38164533333333334,0.830106,1.112936,1.808412,1.5185980000000001,1.790598,1.0889357142857143,1.0889357142857143,1.0889357142857143,1.1644583333333334,1.1318920000000001,4.67742875,1.1552025,2.134495,2.035485,2.349475,1.0036,2.21626,2.23914,2.2070375,1.421025,1.989375,1.5703575,1.7203075,2.52144,3.749315,4.5445,4.919395,1.6987766666666666,4.315605,4.548821666666667,4.126935,4.164235,1.08481,7.91821,0.611891875,0.611891875,2.1310225,1.07636,16.32963,4.5658,5.3765,5.2683,4.176505,4.235545,5.25135,0.4256711111111111,2.3655079166666666,1.7986425,2.31556,4.563925,4.270095,1.4257875,3.1586233333333333,3.28194,2.816943333333333,3.2999500000000004,3.61226,4.443695,2.5415525,4.323215,3.0667666666666666,0.7463054545454546,1.5728579999999999,2.528675,4.694725,3.286055,0.54954625,3.594195,3.829085,0.73574125,4.091195,1.714418961038961,2.15639,2.543475,2.25143,3.523335,6.0533,3.4732,2.8886633333333336,3.1634433333333334,3.0310799999999998,3.634825,2.9026833333333335,5.58715,3.4321,4.491915,3.30394,2.382505,3.6798,2.3135225,6.9676833333333335,3.786415,3.202515,4.64462,3.116445,4.41408,0.7933444444444445,9.560267142857143,3.86986,2.0655033333333335,2.0713066666666666,3.4460333333333337,2.45242,4.259695,5.61355,2.1954775,5.044711666666666,2.839825,4.73692,2.1954775,2.81744,4.61595,5.158682499999999,4.678065,8.448820000000001,3.455205,4.765545,3.042935,5.06305,4.58195,1.6548216666666666,8.33271,4.64845,3.852175,3.968215,3.70193,3.61878,2.351245,6.38302,2.247515,3.780275,4.11871,4.891255,4.52591,3.59732,1.5337566666666669,2.83346,2.949475,1.808155,1.808155,5.760846857142857,3.178445,1.9591733333333332,4.263475,4.42437,2.75993,1.4835266666666669,1.104611111111111,6.83705,2.99776,6.78845,4.82604,4.048615,3.830735,3.444565,4.02427,3.50593,4.10106,4.10463,6.12275,2.86812,3.688905,9.13321,4.409625,3.3876333333333335,3.13831,2.755243333333333,3.785633333333333,4.211050833333333,1.6783475,2.6907033333333334,2.0710366666666666,1.6611160000000003,1.7367233333333332,2.7179133333333336,1.779295,1.9251175,2.9192033333333334,2.48658,2.4047666666666667,3.00426,4.548821666666667,3.52504,3.610735,3.39984,4.809915,1.4398616666666666,2.20667,2.899901428571429,2.1653,2.63074,2.318966666666667,3.5592,1.8009340000000003,1.3233866666666667,2.643126666666667,0.670878,1.6500866666666667,0.5190844444444445,0.5190844444444445,1.5020433333333332,2.687583333333333,2.3408933333333333,1.32224,1.5536866666666667,0.31404846153846155,2.8317433333333333,0.670878,1.2949566666666665,0.24498756756756754,1.4751866666666666,2.1902625,3.6131333333333333,2.7580899999999997,2.4136333333333333,2.578396666666667,2.3697866666666667,2.42752,2.6224000000000003,2.445656666666667,2.23826,2.729226666666667,1.92926,2.80449,4.38682,0.6821466666666667,1.8866633333333331,2.76043,1.98751,3.4381966666666663,1.57535,2.634113333333333,2.2531333333333334,4.351306666666667,2.1393,7.353040476190476,1.639757142857143,2.7979033333333336,2.18059,2.0899825,3.688133333333333,2.0791925,1.9517525,4.40253,2.5780366666666668,2.156475,3.985875,3.98568,4.411295,3.93816,2.356725,3.359955,4.774947333333333,4.07282,4.154425,4.01679,4.432655,3.05954,4.35481,3.58527,0.8996625,4.6078,1.2993416666666666,4.16146,3.88301,6.004198,3.519275,4.34332,0.97497875,2.24045,3.58352,4.191285,0.9140085714285714,1.3273409829059828,2.165319523809524,3.2936751428571425,5.2068449999999995,5.527950000000001,2.150535,3.434645,5.35615,0.335775,3.583455,2.400615,1.0306475,4.52554,2.04196,12.30232,1.176045,1.47251,2.4159,2.435705,2.0867117105263158,5.150706710526316,0.3643642105263158,1.6922233333333334,2.961596666666667,1.031,3.3848333333333334,0.98829,5.10965,4.07444,2.12603,5.95795,5.21925,2.505375,1.1659885714285714,4.217218333333333,4.893395,4.339685,0.8902336363636363,7.510148333333333,2.6672433333333334,4.23424,2.753,2.653303333333333,4.570755,2.5779,2.8537166666666667,2.19597,2.53003,3.075665,2.99108,0.3525975,3.967825,3.808035,4.06731,3.84483,4.513855,6.135400000000001,4.187865,1.7261925,5.6079,4.43362,4.474405,4.21986,1.0791783333333334,2.84306,3.0559,2.6477233333333334,15.955335000000002,3.2968,4.23088,4.513095,5.2975,2.688395,5.011734722222222,1.681945,0.7924644444444444,2.643925,3.335445,3.76773,3.66771,6.4966783333333336,2.9215433333333336,2.206985,2.087705,3.3310766666666667,4.58279,2.261105,0.3549678125,2.726918913043478,2.010215,1.13801375,0.46573976902173914,0.5765117255434783,0.3549678125,0.3549678125,0.3549678125,1.1579175,1.2937175,0.8380075,1.431355,4.30544,0.21733882352941178,10.918848430735931,3.3366333333333333,2.8203,3.96004,3.866215,4.085515,2.116675,4.62546,3.8679706666666664,4.296805,3.56465,0.6714576923076923,3.3600333333333334,4.15663076923077,0.5607564285714286,3.43751,2.8298533333333338,4.24582,0.46656545454545456,1.70659,4.387675,3.542565,1.812975,1.8365366666666667,1.69578,3.533466666666667,4.072405,3.01273,2.9282733333333333,5.22685,5.6326,4.64787,3.1534600000000004,3.542845,6.509075,3.6844,5.1719,0.4169652380952381,3.0133466666666666,3.9008666666666665,2.1112866666666665,2.85592,2.8332891666666664,5.344670000000001,0.6468208333333333,2.479865,4.40204,4.04836,1.0586657142857143,4.16793,4.18058,4.67344,3.280836666666667,4.6933,3.6192,4.44209,1.2001966666666666,3.74305,2.790243333333333,4.959795,4.21653,4.34504,5.62485,4.404615,2.687145,5.09854,2.36629,2.77296,3.03669,2.50325,2.5880466666666666,2.347376666666667,1.791366,1.49962,2.0299466666666666,0.8348985714285714,1.60745,2.1827533333333333,2.022393333333333,3.07616,3.269363333333333,2.791183333333333,0.9286333333333333,5.0023,3.21827,5.309658333333333,2.526718333333333,3.0972866666666667,3.136753333333333,1.5817466666666666,1.5817466666666666,2.5143096103896103,2.5143096103896103,3.2683406818181817,0.48915,1.7623066666666667,2.6964466666666667,3.7462666666666666,2.260724047619048,2.260724047619048,2.260724047619048,7.293828630952381,4.397544761904761,0.9502909090909092,2.9428,4.5370625,2.3012025,4.58146,3.2205,2.434015,4.28622,3.151816666666667,2.85272,0.86673375,1.9546266666666667,3.4795,2.43868,2.657556666666667,5.5198,3.9934666666666665,3.6708,4.94832,1.9783,2.7351666666666667,2.9243733333333335,0.9219188888888888,2.1415133333333336,4.331842666666667,7.86787,1.53052,2.912425,4.57866,1.926284,1.71765,1.71765,0.97718875,4.7279,7.114075,4.04163,5.7943940000000005,4.50367,1.8195666666666668,4.140965,3.01946,4.52614,4.570233333333333,0.36351,2.90877,2.52687,4.050655,3.76346,1.7575479999999999,1.958625,2.567325,4.351305,4.08431,2.95181,2.57407,1.446798,6.97831,5.2347,5.5096,3.724105,5.0334,4.48497,4.87503,4.47762,3.6897575,1.99113,1.0881242857142857,2.79539,4.06,3.859785,5.6808875,5.487495,2.292305,1.71415,2.78012,2.8152333333333335,3.0274133333333335,0.6315364285714286,2.15342,3.723735,1.07046375,4.77037,3.28804,6.1990725,1.3168090909090908,1.3168090909090908,3.781175,3.817205,3.69803,5.35535,2.8411766666666662,2.3040233333333333,3.911855,3.137425,2.16373,3.3653,2.34311,4.241685,3.33803,3.610735,4.2777,1.0257011111111112,2.592755,4.321945,4.5296,3.307095,2.53484,2.19526,0.7144266666666668,0.7144266666666668,0.7144266666666668,0.7144266666666668,1.442451666666667,3.7073625,3.7073625,1.6038,6.869071666666667,2.876585,4.40107,2.9160566666666665,3.038725,4.53819,4.05198,4.856175,5.31025,1.6002925,4.197055,3.67562,2.53921,3.79847,3.484355,2.601385,4.28864,1.815665,4.75939,1.595265,3.501549166666667,2.97721,1.8204175,1.197365,2.910175,4.22598,1.2089880000000002,0.8659344444444445,3.57799,1.2968825,4.897528666666666,4.469,1.3089571428571427,3.54293,0.7849711111111111,2.6121,2.4259999999999997,2.30172,2.7297,4.161115,2.837231666666667,4.546405,5.29945,4.414695,4.320635,2.1615875,1.309597142857143,3.942905,4.700895,1.4526325,1.4526325,4.171145,0.23742999999999997,2.3330933333333332,0.23742999999999997,0.23742999999999997,0.23742999999999997,0.23742999999999997,4.60243,2.7508433333333335,3.00605,3.54766,3.08215,4.166115,2.7660466666666665,0.9853025,0.9853025,0.9337333333333334,0.9337333333333334,3.71533,1.80972,3.97971,1.4911030357142858,1.4911030357142858,4.5602,0.5186378571428572,2.29658,7.711553333333333,4.789465,3.235165,3.450505,0.97251125,2.253225,1.87628,4.579265,3.983455,4.31521,3.94699,1.3579157142857141,2.698535,1.8713675,7.46385,1.868725,4.692655,4.835215,2.761465,3.92405,6.2999,7.840635,3.94462,4.987655,5.8689,2.21519,3.193015,2.31813,2.34834,1.857115,3.949065,3.499375,5.675543333333333,6.62332,3.995505,1.1871233333333333,1.817335,4.054155,4.258845,2.232595,4.56568,4.05933,4.629266666666667,1.7602833333333334,3.8445666666666667,1.6009533333333332,6.426446666666667,2.68092,2.37878,2.3512366666666664,2.294335,3.1576,3.532633333333333,3.493,3.1396933333333332,3.23917,2.00442,3.93269,3.053375,3.284315,0.3896925,2.957905,3.59753,2.5265,5.2796,4.88032,4.64765,6.682462,4.87334,2.0697533333333333,3.87039,5.15835,1.52529,4.774235,5.6882,5.2155,4.57662,3.289035,5.44335,4.683125,4.100875,5.341179333333333,7.7187,3.790745,1.238045,1.4845983333333335,2.572815,1.794132,4.45924,4.148125,4.7900425,2.51749,2.61586,2.770793333333333,2.51221,2.38579,1.0532911111111112,0.5108564705882352,3.67151,4.120315,3.6917666666666666,4.12228,2.822195,3.3480333333333334,5.414986666666667,3.0297733333333334,0.5641570588235294,3.16653,5.27735,1.4918775,1.531792,3.801925,3.61839,2.5853266666666666,3.6827,4.07498,2.7226666666666666,2.2924533333333335,2.3229166666666665,2.5251566666666667,2.70875,4.296531666666667,5.077849166666667,7.4547350833333335,1.9480060000000001,4.991,3.4518483333333334,5.621066,2.80035,3.07118,2.29144,1.9745733333333335,1.3697125,1.3697125,2.67952,2.395703333333333,2.8518733333333333,4.305245,1.739188,2.268315,1.882575,0.56132,3.6877,0.6539183333333333,1.07965625,3.461725,4.388845,3.708645,1.7338875,4.60539,2.969773333333333,0.8650857142857143,3.94903,3.644309523809524,3.228706666666667,2.53194,5.10775,0.2721224137931034,2.3803331666666665,3.2073,1.4280125,3.81135,6.5004,2.335785,1.3355,4.214105,3.870775,2.7932333333333332,2.7932333333333332,3.54667,2.82735,4.61448,5.400593333333333,5.04135,1.081768888888889,2.3576966666666666,2.4971366666666666,4.320115,4.85197,5.2155,4.714045,4.329066666666667,3.8778333333333332,3.589166666666667,3.4162666666666666,4.020566666666666,3.0620100000000003,2.9743833333333334,0.6239878571428571,2.2132075,2.3688125,3.51545,2.8390033333333338,3.123483333333333,0.7498333333333332,2.46241,3.8359855,4.41085,5.55675,4.292075,1.95955,1.95955,0.784827,3.180215,4.393015,3.9565,4.411969285714285,3.169255,4.98986,0.6004254545454546,3.069105,4.010195,4.228905,3.67419,0.7937057142857142,3.37208,4.235795,5.15545,3.88226,4.903325,2.77259,4.338205,1.33208,1.0073285714285716,2.843693333333333,4.981115,4.048955,3.18658,1.4587383333333335,4.14876,2.486925,2.704525,2.770192,3.1963733333333333,4.582793333333333,2.9712633333333334,1.7813120000000002,3.3290400000000004,1.4859278571428574,2.9855733333333334,2.7661866666666666,2.2687525,2.8102300000000002,3.057653333333333,2.4205799999999997,2.3064066666666667,3.734835,2.9124533333333336,3.425677666666667,2.5366,1.98969,4.169261666666666,2.9146033333333334,2.482063333333333,3.425677666666667,2.3362333333333334,0.7879490909090908,2.3661425,0.995851111111111,2.2225525,1.48832,0.9154727272727272,1.5540425,1.69929,2.766895,2.6728,4.508915,1.428625,4.151705,2.8192866666666667,1.580888,2.2101133333333336,2.5532133333333333,1.7959566666666669,2.69507,2.5972066666666667,2.2899197727272727,1.7800725,1.948818,3.4754666666666663,2.2349866666666665,2.8012888888888887,3.0579,2.9774833333333333,3.597766666666667,1.7932533333333334,4.227966666666666,3.5582999999999996,3.7472666666666665,2.774903333333333,3.455766666666667,3.5490333333333335,2.0246,8.75586,4.223635,4.415865,3.32555,2.838235,2.00762,4.108305,1.699654,4.11772,4.296245,1.3971,2.4913366666666668,1.1182,2.3772233333333332,1.7490633333333332,2.34171,4.98049,3.0693433333333338,3.75511,4.664225,0.75831625,1.4483000000000001,0.9777760000000001,3.642025,11.67697,4.3208,6.6064,1.97558,5.3136,4.169525,2.55825,5.30315,0.2907358823529412,0.8402071428571428,4.83292,4.54525,7.0823725,2.0836725,4.48438,5.4273,5.0163,4.64154,3.829835,4.40791,3.22346,5.5518849999999995,3.55197,3.21434,3.16664,2.2880833333333332,1.9503199999999998,1.336907,2.47148,4.207785,4.82899,1.6002800000000001,9.33078,1.7551066666666666,2.8055383333333332,1.104444,1.104444,7.268425833333334,2.97082,2.3499625,2.1017525,2.61884,2.208813333333333,0.9311733333333333,3.3330225,2.6494566666666666,0.6880228571428572,1.6906166666666669,3.3665580000000004,3.3665580000000004,1.16204,2.5475933333333334,2.40719,2.5082683333333335,1.3800425,1.8209866666666665,4.8516613333333325,2.776033333333333,2.65135,1.28321,1.28321,3.620645,5.46575,4.46783,3.33635,3.941505,5.68566,2.866705,2.9215400000000002,3.3402,4.20976,1.2118416666666667,3.3370333333333337,2.619775,3.853005,2.1944966666666668,4.89629,3.547925,4.20644,3.7977,5.443767,0.9917177777777777,1.9063175,1.89408,3.66667,4.20515,3.76107,3.74141,3.93289,3.37094,1.9336625,4.369115,3.61835,3.454685,2.5321000000000002,0.85353,3.57368,4.26719,4.698415,1.1668566666666667,2.678733333333333,2.6658633333333333,1.7672033333333335,1.8278167647058825,1.8278167647058825,1.234105,2.110393333333333,1.0907585714285715,1.4071339999999999,4.4009,4.65913,0.48031904761904765,3.75793,3.397266666666667,4.01928,5.46485,0.42645799999999995,9.01766,5.4051,3.15888,3.83307,4.595725,5.632107857142857,4.784305,6.4342625,0.68341,2.7178233333333335,5.2348,2.5544100000000003,1.71415,2.0397,4.30487,5.03252,2.4300530357142858,3.030333333333333,2.97584,1.689945,4.182575,11.0332,8.03235625,3.8003,4.44465,3.196673333333333,3.234015,3.912325,1.764284,3.0423466666666665,3.76473,4.434685,4.56866,5.12406,6.15684,2.2399033333333334,4.028775,4.60984,5.1194,4.923395,6.614559999999999,3.9867925,6.29855,3.4939,2.931725,2.9398,5.58215,3.871795,5.2913,2.05625,3.1456866666666667,3.38974,5.984,4.276995,3.92354,1.497366,0.9215525,2.6276,0.5384473333333334,4.073965,3.7259,3.54525,2.780575,2.149766666666667,2.968225,2.639075,2.933854,1.789362,3.0430900000000003,2.94925,2.162355,2.54855,3.735228,1.0796533333333334,2.549150833333333,5.01535,3.7436000000000003,1.1032675,2.728336666666667,3.7384683333333335,3.7825569999999997,1.5212375,5.54305,5.4637,2.137496666666667,2.9447433333333333,30.15393572116935,3.5094666666666665,1.7104833333333334,3.9823,2.0291333333333332,2.58538,2.9104766666666664,3.3738333333333332,2.0472575,2.778625,2.0159675,3.7799605,2.995696666666667,2.37676,1.48946,2.27996,2.842925,0.39699863636363636,1.118485,2.7080633333333335,1.49943,3.34939,1.5212375,1.99927,25.13664688888889,4.702585,3.963575,3.771205,2.498155,2.3733525,2.479293333333333,2.2903975,3.325005,4.966149,5.4949,1.597574,1.75629,2.19921,2.300796666666667,3.724475833333333,5.13015,4.463665,4.37187,0.18021829787234042,4.812355,4.914928333333333,3.831955,8.55894,1.0485525,1.0485525,2.9692833333333333,3.15345,5.70905,2.002936666666667,0.9994677777777778,5.4494,1.9554075,4.06084,3.99552,3.33287,4.032285,4.02983,4.55311,3.089055,0.7354888888888889,3.3655,2.1645783333333335,4.30783,7.870705,4.362475,2.103963333333333,2.103963333333333,6.4945175,4.363185,4.35082,5.93705,1.9900733333333334,5.01576,1.4356766666666667,1.4519566666666668,3.011506666666667,2.0502966666666667,2.950715,2.8455999999999997,3.90176,4.3136075,4.22398,5.6025,2.206215,2.505475,1.916935,2.585575,2.41288,2.125395,2.090115,4.821281666666666,1.8521275,3.583004285714286,2.468,3.1648899999999998,2.660903333333333,1.7469566666666667,1.4735,0.9641909999999999,2.47385,3.6804,0.678057,4.703735,1.8365975,5.9225329166666665,2.0260625,1.5554775,1.48132,1.5648633333333333,5.736766111111111,1.823048,2.9619233333333335,3.5322333333333336,1.21305625,1.825085,5.075113333333333,3.04969,2.35684,3.5597999999999996,2.8387333333333333,2.88226,1.2609810714285714,0.273495,0.273495,0.273495,0.273495,0.273495,3.55252,2.633573333333333,2.531925,3.500666666666667,1.4515149999999999,2.703936666666667,3.2701433333333334,2.8191066666666664,3.65371,2.99412,1.8394233333333334,3.007233333333333,3.1716933333333333,2.157935,2.04381,3.80228,2.82375,3.510733333333333,4.864965,2.7495966666666667,2.7308833333333333,2.659666666666667,10.87766,4.70368,4.438935,4.78678,3.8092,2.943303333333333,5.15485,3.32846,3.750145,5.688035,3.873105,3.11659,2.11802,3.65976,4.739202857142857,3.15787,17.490183559523807,1.04952125,4.477085,0.883,1.22509875,2.916525,4.69742,4.02773,4.20272,1.5036966666666667,2.3152175,4.284325,2.87325,4.55581,3.0184582142857144,2.6934966666666664,0.625925,2.6162466666666666,4.590225,2.240755,2.3892875,2.23588,19.75090833333333,1.494108,1.31535,2.62003,0.29730769230769233,1.87531,2.81957,1.9809166666666667,2.74155,2.7315,7.174356666666666,2.0408925,2.52765,2.30349,2.0191925,1.5547683333333333,3.1352166666666665,3.15356,3.329715,2.926966666666667,1.88082,2.58089375,3.0376133333333333,4.716035,0.39525000000000005,3.6526333333333336,3.0716066666666664,3.072135,1.96442,3.598119,3.758505,1.6248266666666666,2.330616666666667,2.2862733333333334,1.5170833333333331,1.7314833333333333,3.554805,3.4138,0.7917900000000001,3.355535,5.1754,4.040885,2.295578,2.295578,2.9393966666666667,4.393835,3.17983,3.463725,2.376225,0.9564909090909091,4.133915,3.674575,5.93105,3.94575,2.4769699999999997,2.4769699999999997,1.44361,3.403785,5.37535,4.11261,4.25671,3.2505400000000004,2.3852333333333333,4.51873,3.580275,4.14564,2.7833433333333333,2.41528,4.390817333333334,2.9248100000000004,2.7555,2.04506,3.35519,2.639,1.5291466666666667,3.864695,3.7377,3.936015,3.2896566666666662,4.739625,3.991385,6.4115435000000005,4.04189,2.13768,4.78992,2.42262,7.103384999999999,2.6175333333333333,1.1555600000000001,4.31009,3.4648333333333334,4.529915,0.5539857142857143,0.7935075,3.70033,3.792825,1.9764736363636364,4.672195,2.91917,2.873585,9.501486,1.7931560000000002,1.256376,3.6284,2.51691,3.64821,4.756865,6.807381666666666,3.259951666666667,2.15732,2.7598766666666665,1.9026666666666667,3.1346933333333333,8.71163948275862,0.9526183333333332,1.064525,5.0706,0.4498746666666667,1.653215,2.218145,2.6545,3.02135,2.73275,4.29066,2.35517,12.265575,5.43402,2.441915,2.441915,4.390495,0.8239383333333333,4.889736666666667,3.78303,4.08542,5.203211666666666,3.50959,4.854995,1.347245,2.80373,2.67579,2.66213,3.13093,2.76227,3.06543,3.571005,3.669555,3.086155,3.07511,3.505765,4.03775,4.33984,2.8070533333333336,2.940523333333333,4.643465,4.340915,17.825918571428574,11.813846547619049,3.0705892857142856,0.6598308333333334,1.4693714285714286,4.501235,3.48185,2.9681095512820512,2.44149,0.837878888888889,0.6596591666666667,0.6368371428571429,2.0857,1.585248,5.330283333333334,3.3618333333333332,0.7324154545454546,3.520755,2.31778,1.7286,1.704504,6.301493333333333,1.545684,4.86421,2.6438,2.8916533333333336,2.21316,2.6449866666666666,2.62188,0.7201181818181818,3.101405,2.7077233333333335,3.98991,2.990873333333333,4.879748333333334,3.71179,3.36531,2.368235,3.57295,7.7659175000000005,1.942405,2.4107225,2.3163675,1.6296075,2.4735925,2.1926775,2.847475,0.903077,1.3455275,0.94685375,2.799025,4.240395,6.1819,5.6348,2.847915,2.398195,2.985175,3.4073333333333333,7.516279999999999,1.2866466666666667,0.414806875,3.19981,2.0870933333333332,1.550962,3.479472,1.23437,2.0955513333333333,4.45395,3.2264313333333337,1.2133183333333333,1.9853033333333334,4.107043333333333,3.74606,4.133425,4.293715,2.10439,5.1049,3.690535,0.7916307692307692,4.98293,3.92474,4.092732083333333,3.2323299999999997,2.4065,1.3126419999999999,1.1067875,3.35171,2.79873,3.404185,3.52571,2.824255,2.6556133333333336,3.32634,3.807485,4.88309,2.265555,2.61868,3.909875,5.54695,0.54375875,4.56792,1.797655,3.51226,3.9340666666666664,1.9184,3.165805,2.2991775,2.026115,2.58759,2.485124166666667,1.7576666666666665,4.98238,3.524715,1.325447142857143,7.15095,1.0476866666666667,3.59884,1.6853,4.540515,4.163045,2.99198,3.282985,4.097035,8.97401,2.953485,3.661975,3.46556,3.654725,1.7469825,8.1485,3.593385,3.968785,1.75044,4.284145,3.202325,1.0047875,1.937216,4.166265,2.21332,4.22951,5.0425474999999995,4.12711,4.464445,2.2172525,5.0782,3.837715,3.1399000000000004,2.2334133333333335,1.78904,5.06575,6.0689,5.3672,4.81324,3.039785,2.3054725,4.16881,3.408795,1.1215564285714286,4.18705,4.888796666666666,3.842895,3.003235,3.74483,0.5727257142857143,0.5727257142857143,5.3167,4.219495,5.0482,2.4643,3.791855,5.73165,0.85096,4.14773,4.9593,4.62012,4.751205,4.604605,1.9324925,3.2233,2.2179475,4.532425,0.69598125,3.92473,4.154845,2.84592,2.9093433333333336,4.7676,2.342125,3.31542,59.63739044372294,3.30994,2.7217800000000003,1.74583,3.31209,3.978815,0.80891625,1.012295,2.089855,2.089855,1.3618919999999999,3.294805,2.38211,3.787535,7.2257,2.8564000000000003,1.2276342857142857,1.276295,2.8132566666666663,4.152881666666667,0.8561840000000001,1.85498,1.091398,1.9204675,3.90126,3.94686,3.156745,21.469141158008657,4.199185,3.983035,3.2619,2.3118,2.877315,3.407375,2.4481225,5.50793,1.5538399999999999,4.03096,3.41901325,5.894944722222222,1.911285,2.76354,1.883645,3.98927,2.40504,2.15427,2.1834700000000002,3.3973050000000002,3.776585,3.39003,4.1858,4.34198,2.5678,2.59729,3.059825,2.67693,2.883305,2.31236,2.02744,3.570015,1.2010566666666667,3.942225,4.646525,2.819085,4.65409,4.6757,5.411931666666667,1.8488533333333335,2.54305,2.69268,2.860375,4.21008,3.33799,4.67624,0.6961428571428572,3.96841,2.86929,3.842495,2.187265,1.7916340000000002,4.007573333333333,1.2040555555555554,2.90396,4.435925,1.0862500000000002,3.741285,3.1033,4.69156,5.8180475000000005,2.078955,2.941195,2.667116666666667,3.7385,2.480053333333333,2.629606,3.3965666666666667,2.4679766666666665,2.561716666666667,1.3250666666666666,1.903915,1.903915,2.013596666666667,2.085176666666667,1.81437,2.6712633333333335,3.57681,5.2913,3.704305,1.486665,4.27473,3.56916,3.55611,4.357705,1.9904325,1.89281,4.752025833333334,1.892325,4.319466666666667,3.778525,3.682825,2.4527666666666668,3.871426875,3.28965,3.120105,3.56309,0.14974714285714286,2.3336466666666666,7.823105,1.556022,3.483935,3.583415,1.0300114285714286,1.1017383333333333,1.93878,3.788235,3.023425,6.9355150000000005,3.368555,3.77332,3.03359,2.64591,3.50993,3.53787,4.064505,3.323715,2.850616666666667,5.3501,4.092785,4.300395,2.4397433333333334,2.119155,3.547205,4.71782,2.72372,2.964,2.084775,6.26555,4.00431,3.759375,2.797675,4.36943,4.86063,2.7247,4.053305,4.121535,3.568165,4.65281,3.59792,3.089785,6.36217,4.569225,5.0375,5.08355,4.222725,5.462155,4.156175,3.73462,1.350428,6.5862,2.37402,4.25894,4.16071,4.242755,2.90244,2.0162299999999997,2.360046666666667,2.5012466666666664,0.9080959999999999,3.2422866666666668,3.6922333333333337,3.21161,1.9901933333333333,3.73297,4.35993,2.53037,0.5628958333333333,4.45755,4.78264,4.66603,4.60138,3.67818,4.42728,4.704465,4.690315,1.3967999999999998,0.9714307692307693,2.6706133333333333,5.3067,5.9337,0.49015625,2.92195,2.54041,3.339615,4.459335,3.8047,1.8946025,5.08365,3.239215,4.054095,3.14019,6.2839,5.1209,6.62979,0.5300541666666666,4.23613,0.7509319999999999,2.417225,4.0894,2.850103333333333,1.2755266666666667,2.2924800000000003,4.340355,3.682995,4.237215,1.9531599999999998,1.989765,2.80298,4.863385,4.04857,3.68984,1.7024260000000002,1.1718564285714286,5.92755,2.07064,7.621454999999999,4.474185,3.65193,2.08071,1.6217325,4.08877,4.578215,1.8014533333333331,2.577935,2.483955,2.3336466666666666,6.699714166666666,3.1130966666666664,2.8092066666666664,3.942925,3.556205,1.9858233333333333,3.623195,6.862735000000001,4.44841,5.0049,0.4994427272727273,3.37695,4.212985,4.5957903571428576,3.947125,4.11359,3.05739,2.8252,3.340475,2.960035,3.472556166666667,1.8234559999999997,5.367416,4.65967,4.66547,3.94605,3.414335,3.2835725,2.2723075,1.432055,0.9378525,2.95037,2.44181,1.1184616666666667,2.67737,5.96315,5.0128,3.70746,4.64045,16.480622023809524,4.32844,4.627075,3.8783,0.7281583333333334,5.0973,4.22279,4.133445,4.929935,5.37605,2.51736,3.606755,3.323705,1.517496,3.23169,4.76551,2.9780433333333334,1.3503640000000001,3.796035,4.92208,3.972235,5.0437,4.734095,5.3171,4.20141,2.8646966666666667,4.21158,3.94389,2.634715,3.04795,3.000906666666667,1.7400095833333333,4.686575,2.6895260714285714,2.0692333333333335,4.03003,2.36026,4.393525,4.169261666666666,2.029475,2.677185,4.41082,3.66176,4.497175,4.36912,4.70495,4.812145,2.983135,5.21325,2.6364983333333334,3.308725,3.703065,1.5947520000000002,4.50318,1.10348,4.392565,3.10942,0.9444271428571429,3.798165,2.09702,6.49738,2.4298692380952382,2.4298692380952382,2.4298692380952382,0.6414533333333333,1.32599,1.79484,3.466125,5.43978,3.228161111111111,1.886325,2.080995,1.71859,3.88629,2.429375,0.40060384615384614,1.710205,2.21832,2.70188,1.80952,2.501555,2.387025,2.0685575,3.88196,2.7046200000000002,2.486645,2.844795,1.914265,6.72186,2.024105,4.32044,3.900865,6.224918333333333,1.6574200000000001,3.623915,3.51123,3.774635,4.116105,2.692195,1.92927,3.84464,5.711309166666667,1.956035,3.60906,3.245245,1.8277475,4.624045,4.38966,2.5802466666666666,2.09746,3.6530199999999997,5.635221428571429,5.56555,3.28432,2.469545,2.73913,2.986145,2.808225,3.84445,1.283435,2.752825,4.51931,0.773495,3.58259,3.9915,3.80198,3.887395,2.43633,3.214885,1.99069,4.663935,7.991933333333333,4.48308,3.51889,3.415635,1.0308725,4.643995,2.311275,4.449245,5.243665,3.82609,3.846225,11.253879999999999,4.74289,3.92431,1.4898625,0.7015224999999999,2.6525,3.86522,3.40741,3.753415,2.3161333333333336,2.938266666666667,2.19544,1.2397866666666666,1.2397866666666666,1.9709433333333333,2.41568,3.09242,2.78369,3.29734,2.5483933333333333,3.2358466666666668,2.97069,1.3853333333333333,3.30207,2.2023566666666667,1.9712699999999999,1.41356,2.4520033333333333,0.62979,9.817066666666667,0.62979,3.6010000000000004,2.0921366666666668,2.0514266666666665,4.69573,4.398175,4.324945,4.549275,2.2767933333333334,2.94682,3.168672,2.2952166666666667,3.267306666666667,3.18312,2.5604833333333334,3.14827,1.7399666666666667,5.1034,6.972018380952381,3.0143766666666667,3.5004000000000004,3.2291966666666667,2.57327,2.6895399999999996,1.1782814285714287,3.4261666666666666,3.3265666666666664,4.105735,5.79575,4.2321,2.907526666666667,3.5485333333333333,2.9732800000000004,4.109258888888888,4.43513,2.75924,3.43632,3.1223433333333332,2.880653333333333,4.640185,3.0655099999999997,3.559005,5.853541666666667,2.6617133333333336,2.7042633333333335,1.74718,1.45855,5.147456666666667,3.4686866666666667,2.692766666666667,2.08816,2.274766666666667,4.54341,3.818095,2.637875,3.04011,3.205156666666667,3.5372,3.4075,3.5910333333333333,3.0012733333333332,0.5454675,3.775233333333333,2.4574833333333332,2.71321,3.52212,4.433475,4.90191,5.3731,2.758655,4.557615,1.27691,2.8975666666666666,2.8975666666666666,5.0957,3.407325,3.98732,3.885145,1.757815,3.452615,3.92108,1.1296128571428572,3.8581851666666664,3.196045285714286,2.238871,0.36846100000000004,4.17816,3.818735,7.166855,3.122995,5.8515,3.298115,3.988465,4.008015,1.9806937500000001,3.08636,4.5904,3.435845,3.1899200000000003,2.995143333333333,5.713155,2.198575,0.96938625,2.020376666666667,1.6317733333333333,5.15283,2.4168933333333333,2.41715,1.8317625,4.559035,3.96953,4.30286,0.6115619999999999,4.649545,4.072295,2.8610466666666667,2.741963333333333,3.016113333333333,3.3179302777777777,3.97121,1.5212199999999998,0.6483631578947368,0.7663785714285715,3.4371666666666667,4.520825,6.199958333333333,5.24335,5.0429,5.30265,1.3728542857142858,3.9340666666666664,2.1609133333333332,1.01557625,5.11415,6.42645,3.08414,4.98088,4.180515,6.841688333333333,4.2764999999999995,7.227995,3.840395,2.673794444444445,6.0308,10.078842961538461,2.59791,0.741106,3.521615,4.4404,2.429925,6.29755,4.26446,3.978605,2.8404433333333334,2.8404433333333334,5.3665,3.373855,4.1313,4.86,3.797449952380952,2.3635865714285713,1.07895875,5.7939,2.69747,5.553416250000001,3.64757,4.664295,3.117675,2.0041125,4.346785,4.79073,3.6255333333333333,3.684125,4.352785,28.33359023809524,1.87054,2.55285,2.40431,1.639655,2.7769600000000003,1.1909285714285713,2.9412633333333336,3.083076666666667,3.3866,3.4945,0.6820876923076923,3.0896666666666666,4.256825,2.733905,3.19305,3.99571,5.85632,4.84354,4.647405,3.640545,3.9355858333333327,4.21844,3.3973,1.7293225,0.9836416666666666,1.4367066666666668,2.57774,1.5402433333333334,2.79914,2.51261,2.41569,2.28417,2.657575,1.98211,1.8044566666666666,2.954125,4.275985,3.73928,4.3722,1.472642,3.997866666666667,2.66164,4.04247,2.3599099999999997,2.56956,2.40884,1.4416633333333333,3.88722,6.727156666666667,2.848235,3.77644,4.08572,2.5517,3.2786100000000005,3.5338333333333334,3.651415,4.61463,0.32882085585585585,0.32882085585585585,4.62262,5.06465,4.770525,3.11644,5.33965,4.29505,0.6594253846153847,4.544795,4.696305,3.660715,6.3307,4.96762,7.50962,14.027581666666666,12.63884576923077,4.46161,4.425685,2.542456666666667,0.6013307692307692,2.5208133333333334,5.2257,1.3264433333333334,4.04334,3.5953666666666666,2.81846,2.1751400000000003,1.9151999999999998,4.8599499999999995,4.170215,9.007266547619048,4.95108,4.09063,7.127944015151515,3.39283,3.0397866666666666,1.444815,5.2336116666666666,1.950315,2.449196666666667,2.8321799999999997,0.284199375,3.08954,3.237515,4.6600649999999995,0.9143000000000001,1.2564516666666667,4.05472,0.6146429999999999,0.6146429999999999,3.0149583333333334,2.97635,3.3313633333333335,4.94059,4.310555,5.46555,3.92927,4.23997,2.985665,3.025596666666667,2.712126666666667,0.8369166666666666,3.067743333333333,2.894645,3.244205,6.93784,2.751945,9.178025,2.991775,5.4925,2.978885,2.306865,2.59785,2.97325,1.87942,2.280005,1.8662275,3.56281,2.4985625,4.00009,2.921665,4.29032,4.29032,2.8572908333333333,2.8572908333333333,8.722880333333332,2.5877466666666664,0.8252140000000001,2.57836,2.5844400000000003,2.5504666666666664,4.00009,1.9531939999999999,1.953266,1.5777240000000001,4.084785,4.081415,1.7866275,4.37087,4.11054,6.118075555555556,6.528856666666666,2.310846666666667,4.003775,6.05964,3.768755,3.24085,2.3173666666666666,3.495865,3.5086942424242427,4.313145,5.185325000000001,7.679487333333334,3.6157674999999996,3.273755,1.1774666666666667,4.42549,3.8912086666666665,3.854815,3.805239166666667,4.33918,2.40534,2.4815,6.42885,2.931635,1.282306,5.47831,3.703235,2.5827433333333336,5.05695,2.5827433333333336,2.80551,3.83928,4.692805,1.0354571428571429,3.7341022222222224,4.351815,3.425435,1.30995,1.6676525,4.254215,3.64762,2.637995,6.1684616666666665,4.01289,3.636425,4.475025,4.3513025,1.296155,4.02555,2.562615,3.573095,3.89605,3.42761,4.814755,3.321455,3.94034,4.844875,2.116395,1.88014,3.6312333333333338,3.7134,3.4463666666666666,2.87857,3.4546333333333332,2.9890066666666666,5.31285,3.29981,3.53456,2.911595,1.8134766666666666,3.3947333333333334,1.7457533333333333,3.04103,3.20633,3.01103,0.69598125,2.168975,1.8044166666666666,3.26853,1.892516,3.437266,3.739525,1.35422,3.1526425,4.583625,0.8918139999999999,1.2608633333333332,3.140635,3.832895,3.291255,1.977155,1.62606,3.625195,2.5056408333333335,1.7344166666666665,3.089925,1.914135,1.209506,1.382515,6.457155,3.111245,2.15371,2.402635,2.4493325,3.774085,0.89343,0.34744071428571427,0.8018371428571429,4.7262,2.108186857142857,4.93594,1.9967775,1.8883844285714286,3.2023484285714288,1.313964,1.0751224285714285,0.729996,0.57625,2.747990833333333,6.6631,3.027605,3.43635,0.3355903571428572,3.74771,18.059560714285716,3.0119,7.438302861888111,1.08154875,1.08154875,1.08154875,1.08154875,5.7821225,3.9491,3.75248,2.0602899999999997,2.723005,4.180155,4.94418,3.462595,3.464395,4.348535,4.25812,3.98448,3.7857786666666664,3.808555,5.0406,4.09201,4.578895,3.377765,4.37744,2.6033,3.35523,3.307305,3.614645,3.698935,4.35082,3.2404100000000002,2.372285,2.55924,4.016605,1.2714171428571428,3.909105,2.5482833333333335,3.4096913333333334,4.12711,4.357505,3.140175,2.89112,4.753595,3.748255,3.308475,4.90181,4.71547,3.616875,3.75896,1.7021540000000002,1.7021540000000002,1.9428625,4.73179,3.46442,5.427488,5.11685,3.495825,6.53335,4.39372,2.148915,9.01201,5.0118,6.141349999999999,4.401805,2.8821133333333333,3.476585,0.26908206896551723,0.83707,3.380570666666667,3.60071,4.774735,2.929346666666667,5.355923333333334,4.95829,0.5785107142857143,2.901475,0.539354,1.7463047619047618,3.25932,2.47992,3.767455,3.743485,3.20987,3.472885,3.43466,3.713075,3.413495,3.733065,3.55014,2.560725,1.7463047619047618,2.825945,2.4482675,3.721635,2.108745,4.04742,3.596795,1.7469825,4.52173,3.2936,1.3079633333333334,5.19805,4.802355,4.398235,2.8011766666666666,3.2209299999999996,4.105485,1.9685733333333333,1.396286,2.42286,2.7169133333333337,2.734586666666667,2.06115,5.0293,3.41542,5.149016666666667,3.865876428571428,4.92731,3.68903,1.5612819999999998,5.34155,4.75641,5.33415,4.223585,6.92244,1.6257725,5.0298,4.025065,3.155785,1.806405,1.6973466666666666,4.014045,4.454455,2.4374366666666667,2.7168566666666667,3.460755,3.460755,2.7044566666666667,3.03261,3.392125,4.054475,3.695385,0.8396,3.300295,4.451835,4.875167222222222,3.00195,3.09946,1.7670375,2.81011,3.60559,2.20551,4.357265,3.19106,4.433335,1.7284633333333332,1.0230818181818182,6.40394,3.742275,2.9056800000000003,2.97907,1.6899339999999998,30.07233401190476,4.08553,3.4815,5.3855,4.447235,0.8887083333333333,7.2475925,2.0344325,5.3495,1.4441833333333334,5.1523,5.164316666666666,3.72682,3.282975,1.996615,3.6516,4.81175,2.0644425,2.7432700000000003,3.536705,4.765055,2.587535,6.14925,2.252635,6.00205,1.102135,4.45262,3.63063,3.9499,4.74927,3.064175,2.4326333333333334,4.305915,4.686915,3.823505,3.823505,6.3209,1.79822,4.4176,7.617483333333333,3.51241,4.291635,3.246835,4.51265,3.52483,4.178385,1.362985,2.28928,4.40166,4.48654,5.45555,4.54358,2.737945,10.170133333333334,2.722185,3.73906,1.6814285714285713,3.647995,2.36058,2.759646666666667,2.3669174999999996,1.3776066666666666,2.619336666666667,0.9880828571428572,1.1252,1.1252,1.1252,1.8406566666666666,0.5865475,3.997755,1.21971,2.7343266666666666,0.9606883333333333,1.79517,2.6998466666666663,2.1085433333333334,0.79256,1.7611166666666669,1.6009,2.431416666666667,1.70487,1.70487,1.6601299999999999,1.7410133333333333,1.12406,1.9692666666666667,1.5889933333333335,1.29348,2.01412,2.01858,5.9044,1.6452725,5.29,17.82674625,6.947355,3.498215,3.558158333333333,3.365266666666667,2.8079966666666665,2.79062,2.8312000000000004,0.6454533333333333,1.01002,1.01002,0.6609875,2.3021266666666667,3.96366,3.793375,1.534928,5.09575,3.75058,2.51129,3.65659,4.54953,4.148785,4.72635,3.5432666666666663,3.19015,3.428405,5.6984,3.2225333333333332,4.808925,0.5276,0.5276,2.34905,3.089935,4.833845,3.517855,4.09221,4.36431,7.626438,7.317449999999999,3.59683,2.35883,4.761265,3.493865,2.520696666666667,2.438895,3.210795,1.27658,3.72066,2.787975,1.7102725,3.22982,3.66166,2.0671975,5.185325000000001,1.64449,3.6702,3.687345,1.0145,3.5343999999999998,2.980893333333333,4.302925,1.1317716666666666,1.77127,2.4171375,2.0998875,1.7029175,2.3534475,2.0302875,1.9992125,4.49538,4.33411,2.47985,1.749265,1.5208866666666667,3.5586333333333333,2.0549466666666665,2.700925,4.241945,7.071,2.179396666666667,3.089885,3.533325,3.760105,2.43617,4.911165,4.397825,3.117185,1.3862625,4.49303,2.291095,2.9050166666666666,2.57207,3.90419,4.951475,5.17125,2.3395566666666667,2.6983099999999998,2.9194066666666667,3.4158333333333335,1.9040833333333333,1.4377119999999999,5.394,3.4194666666666667,2.333016727272727,2.91297,2.934946666666667,2.3847366666666665,3.07727,3.1680466666666667,3.4334333333333333,5.2876,4.02394,3.0511766666666666,5.062,3.39559,2.345425,3.75623,4.01016,3.82457,5.945004,1.91724,3.97864,2.303195,3.872605,3.738475,0.57709125,2.324745,2.267475,3.444025,2.822885,2.17845,2.78106,0.599065,2.8577733333333337,4.51232,2.346885,4.68063,2.4126566666666664,4.06377,1.8963,4.49031,4.37237,1.896154,2.82953,6.834200000000001,3.905925,4.160235,4.852955,7.1613114772727275,3.976185,4.382125,2.092425,4.347115,3.009605,1.9280633333333332,1.9859125,2.91634,1.0245128571428572,2.36484,2.52998,2.6947266666666665,3.4781333333333335,1.821532,3.309255,1.9408066666666668,5.04185,5.84835,1.05545,1.80042,2.6702600000000003,2.92751,2.0580366666666667,1.138855,5.67526,2.24908,2.6907,3.22704,2.7418866666666664,2.9769633333333334,3.24338,2.2979966666666667,2.8832566666666666,2.2630766666666666,4.233555,3.77978,4.030885,3.295256666666667,3.2519266666666664,0.834881,1.8787633333333333,2.210985,2.03387,2.6502766666666666,1.1656016666666666,2.78294,3.04583,3.26727,2.0774833333333333,3.464455,3.498385,5.4044,3.164955,0.621735,1.976024,2.7043,3.3070566666666665,0.7414236363636363,2.9473766666666665,3.37376,3.1367233333333338,2.71335,3.2242033333333335,3.828665,3.8048333333333333,3.1147833333333335,1.88026,5.6526,4.77607,4.93496,5.6095,5.4587,1.8248633333333333,3.564805,3.7277,3.3534666666666664,2.7382899999999997,2.5829400000000002,3.9492,3.4586333333333332,2.728946666666667,13.524465000000001,4.24678,1.07756,3.0361499999999997,1.508088,3.031803333333333,3.03319,2.13128,5.838798333333333,6.403920666666666,2.2788833333333334,0.8658939999999999,4.381275,3.450366666666667,3.034305,5.2602,5.5615,5.75765,4.738915,3.577,2.0550575,6.529145,1.1774666666666667,6.21288,4.58927,2.366423333333333,3.957475,6.829646666666667,5.7272,2.2454233333333335,1.4317116666666667,2.18059,6.603756666666666,1.5212375,2.9539066666666667,2.5521483333333332,4.373864722222222,5.96625,4.281705,6.43015,3.77386,5.11315,3.83941,8.91868,4.782825,5.8504,2.470235,2.3926225,11.417116666666667,3.39831,2.589965,2.557986666666667,1.6134233333333334,2.964776666666667,2.9733533333333333,0.7064025,1.042826,1.106747142857143,3.28296,6.851946666666667,2.9484993333333334,1.4088266666666664,4.357535,3.803945,0.5816749999999999,4.35792,3.70817,4.572855,3.741615,3.102425,2.654996666666667,4.282445,10.067465,1.86693,3.951785,4.048105,4.280385,3.761325,0.8239191666666666,3.757,3.8102666666666667,1.68285,2.507073333333333,2.3561,2.6903233333333336,2.3451733333333333,2.21409,2.291085,5.792043571428572,4.74037,3.80546,4.598663333333333,1.6359733333333333,2.324875,4.695225,4.40592,4.81245,4.12792,4.57088,4.691665,1.7021540000000002,3.85463,7.279386666666667,1.29548,1.6213466666666667,2.5487366666666667,2.419376666666667,2.846386666666667,4.9195605,0.7663785714285715,2.769685,3.57441,5.94855,4.567725,2.2745966666666666,2.9608399999999997,2.018895,0.551626875,2.301845,2.9851,7.809754999999999,4.478135,4.160035,0.8797219999999999,4.622033333333333,9.046083083333333,10.400641666666667,3.432225,1.112255,3.589245,3.57199,2.6141633333333334,5.18071,4.632335,3.98069,1.8935175,3.9092000000000002,2.24957,2.5864833333333332,0.8025454545454545,0.390448,2.681155,3.41553,1.9197860000000002,3.401735,3.13617,4.58497,5.06785,1.56204,2.97959,2.041535,2.041535,2.232825,3.035375,6.0203,2.71381,2.808336666666667,3.192693333333333,3.4148,4.510255,4.008125,4.036325,4.17104,4.021615,4.04244,6.9515,8.06438,1.92715,2.33929,3.0265633333333333,0.9216483333333333,0.7231008333333334,4.01482,2.39965,5.22425,2.9611699999999996,3.0592366666666666,1.8253920000000001,1.5704025,3.8604,4.218495,4.4464,1.7913333333333332,1.3392566666666665,2.7264700000000004,2.0177333333333336,2.66666,1.1106328571428572,1.1106328571428572,2.8083299999999998,4.68667,2.87471,3.094685,3.455515,2.073885,19.37814696969697,3.78226,5.1300975,3.825895,4.01657,3.807595,3.47856,5.4179,6.1720675,0.8132683333333333,0.8132683333333333,0.8132683333333333,2.815106666666667,1.7182857142857144,3.332926666666667,4.3881,4.29241,3.07329,4.38381,4.408835,0.8283944444444444,2.20348,2.4264966666666665,5.927798666666666,3.296712,4.0921986666666665,4.937075,1.9184,2.007773333333333,2.35452,0.5250075,0.8293380000000001,1.995125,2.17915,3.028555,13.258871666666666,2.6457566666666668,5.0891,0.7337,9.8711875,5.69985,3.858435,3.958065,2.5778,5.225,2.5778,2.75882,3.67763,3.9317,3.232375,3.88557,4.14204,3.419925,6.0206,6.807584,1.7571833333333335,2.397884,2.698175,26.884872736808237,1.525058,6.46545,3.922942,4.113295,4.44862,4.728535,2.88543,2.836075,2.381695,6.3569,7.00685,4.534875,4.66311,4.03933,1.814265,1.8151,4.028655,0.4785492307692308,0.4785492307692308,0.4785492307692308,0.4785492307692308,4.277025,3.206335,1.0141066666666667,1.8224366666666667,1.1586888888888889,4.3743,2.546816666666667,2.2670075,7.397631666666667,3.1809333333333334,0.17601172413793104,20.449928166666666,4.7000866666666665,1.783614,1.2962575714285713,2.10696,1.9380220000000001,2.4285475,4.583655,3.098205,3.78186,4.032895,2.3930933333333333,7.2232075,2.70768,2.0078,3.77664,5.6461,8.501526666666667,4.210425,0.30216829268292683,3.667035,4.015475,2.80348,1.9295975,2.8667366666666667,1.6288816666666666,1.6288816666666666,4.166745,5.8663975,11.425415000000001,9.20375,0.6358999999999999,2.55994,3.903195,3.785355,4.88961,4.446705,1.74912,1.74912,3.412855,4.43876,2.7740666666666667,4.09882,4.88567,5.8868,5.87602,2.1033999999999997,4.8012,4.395165,2.676985,2.99414,3.0474033333333335,4.709895,4.139785,5.04145,4.031325,3.932625,3.461575,4.402565,4.37341,5.60115,2.500786666666667,3.24257,1.08107,4.1585,4.163005,3.62118,1.64694,1.82047,3.2005133333333333,2.8624733333333334,2.2871,4.412793333333333,1.6130833333333332,2.297305,3.4044666666666665,2.6915866666666663,2.36443,2.716896666666667,4.056433333333334,3.0734133333333333,3.7965666666666666,3.6826283333333336,2.0088666666666666,2.8363833333333335,2.0094766666666666,4.986415,3.181126666666667,41.74134575,2.104906727272727,2.104906727272727,2.621566666666667,2.6011333333333333,2.177043333333333,1.8541699999999999,2.9017666666666666,1.9703433333333333,0.7625323076923076,4.79556,7.3535875,4.25755,3.904175,5.1758,1.9007833333333333,4.68803,1.837472,5.3837,4.86527,5.7406,4.097415,1.7293225,4.266495,5.11655,4.78106,5.04635,5.4236,4.04073,3.3299533333333335,2.8133666666666666,2.1050125,1.85004,4.40177,2.4702866666666665,3.902805,3.902805,2.2883999999999998,1.5621033333333332,2.3855066666666667,2.52755,2.5221133333333334,5.13757,2.60834,1.1828233333333333,1.1828233333333333,2.7521166666666663,1.98658,2.6307633333333333,2.7299433333333334,2.6065633333333333,2.516436666666667,2.3453833333333334,2.23032625,3.0828362499999997,1.68350625,0.85251,61.118469125,2.332408,3.002463333333333,2.2506779999999997,0.8684559999999999,3.618768666666667,1.619252,1.619252,3.0728833333333334,3.11227,0.83099625,2.6473633333333333,5.25338,3.6460666666666666,2.3617133333333333,2.9167633333333334,1.9989266666666667,2.7224506666666666,0.288855,2.7759933333333335,0.758134,2.575023333333333,1.354968,1.354968,3.1275333333333335,1.51775,2.4721733333333336,1.4514746666666667,3.3981333333333335,1.4514746666666667,2.1291733333333336,2.5498066666666666,3.0399233333333338,1.352586,1.352586,2.9319699999999997,1.43412,2.82762,2.23831,4.48191,4.203175,12.469420416666665,7.082535,3.44098,2.79193,4.32006,5.1842,5.55515,2.6973125000000002,4.410655,3.9576,2.4315366666666667,4.254165,3.2576466666666666,2.8585233333333337,4.5201,2.2408233333333336,1.0257628571428572,3.936082916666666,2.9013766666666663,3.01827,0.7961085714285714,2.585995,3.486685,4.12728,4.458575,6.6098,2.87325,1.8672440000000001,4.103655,4.44468,2.39552,2.635765,2.061646666666667,2.1827413333333334,0.9071680000000001,5.24305,4.395695,3.9586,3.813435,3.1454866666666668,4.727285,4.896115,2.8890933333333333,1.7805166666666665,0.5344180000000001,13.972826666666666,0.5188881818181819,0.5188881818181819,0.5188881818181819,3.045553333333333,3.9499666666666666,0.5188881818181819,7.642205,4.39258,0.729329,0.729329,3.2986033333333338,3.203555,3.196625,4.32693,4.74564,4.2562605,2.2456525,4.7987053333333325,3.396495,3.4815925,4.88282,2.8090662500000003,2.16669,2.37309,2.5972,1.6491175,3.39834,3.021323333333333,2.1856625,1.91076,2.0037025,1.7703833333333332,1.670255,2.53765,1.062611111111111,2.476015,0.6127414285714285,4.817405,1.7923425,0.7584650000000001,2.01611,7.945550000000001,2.688615,2.0738965,3.2735149999999997,7.38069,2.52979,4.252335,3.01167,6.10878,3.4925,3.92154,3.93583,4.73704,2.827526666666667,3.9599833333333336,1.13079,4.13849,2.5053966666666665,2.677906666666667,2.681315,2.422445,2.14316,1.230515,5.42895,0.9154727272727272,4.932495,5.3214,4.943455,5.7183,3.6421666666666668,2.4593833333333333,1.995506,2.65374,2.706606666666667,2.555775,3.8855,2.740925,3.891605,1.825432,39.764266706349204,4.831905,2.4424366666666666,2.5888133333333334,2.95729,1.5473766666666666,5.791566666666666,3.981445,2.43135,3.15209,2.24254,1.6675375,5.40995,0.7807285714285713,4.589636428571429,1.3068085714285715,3.4248,3.28208,2.655186666666667,1.3920625,4.601523333333333,1.671916,1.671916,2.4659333333333335,2.7349750000000004,3.4997333333333334,3.5528333333333335,1.4410433333333332,2.909546666666667,2.75281,6.364194666666667,2.9426966666666665,3.8339600000000003,1.3153599999999999,1.4372,2.816456666666667,0.9360139999999999,5.276633333333333,3.3918,2.9076866666666668,3.5441000000000003,2.6007433333333334,2.8070299999999997,3.1002566666666667,1.7758200000000002,2.4493325,2.59616,3.516166666666667,2.4956733333333334,3.488566666666667,2.7890200000000003,0.5901833333333334,9.62293217948718,2.7442733333333336,5.3227,5.1031,2.79848,2.9705399999999997,1.37297,2.1915133333333334,2.142475,1.37297,4.17374,0.469270625,0.469270625,1.1200225,1.1200225,0.8423225,0.8423225,2.721515,3.092075,2.46008,1.3862,1.55495,3.70683,2.97048,4.5642,5.13475,2.02102,4.346995,2.37569,4.759765555555556,1.600935,1.600935,1.745365,1.72435,3.5627291666666667,2.063735,4.093685,1.5036966666666667,2.4136075,0.5690776923076923,1.1639471428571428,2.1579075,1.9979875,1.9147975,1.489035,4.203505,4.045715,2.29392,2.6875066666666663,1.3885800000000001,0.7026958333333333,2.1915666666666667,3.709705,2.498676666666667,4.53527,5.0852,4.65645,4.08534,7.0364,1.5628466666666665,6.1602049999999995,1.745185,4.64161,4.580875,5.7949150000000005,3.1607966666666667,2.46076,1.795775,1.93916,1.93916,2.483715,2.483715,4.32253,5.64315,0.9128700000000001,3.93053,3.167895,3.50704,2.692793333333333,1.4282325,2.8845266666666665,4.264875,4.194715,1.814838,6.63225,5.17295,1.82927,1.302325,3.95308,4.199213333333333,3.542015,3.63893,3.859575,0.6648357142857143,3.2815499999999997,3.05219,2.681343333333333,2.9985433333333336,2.3981600000000003,3.7029,1.5778857142857141,1.5778857142857141,1.5778857142857141,3.0469266666666663,3.2234966666666662,2.9241533333333334,3.4085091428571426,2.202785,1.2516157142857143,3.101433333333333,3.1730199999999997,1.3251757142857143,2.6435400000000002,2.694976666666667,1.2211614285714287,2.5431233333333334,2.9124666666666665,2.9461766666666667,2.5924066666666667,2.4752966666666665,2.110605,3.1847999999999996,4.6924280000000005,4.137435,0.9366009999999999,1.257266,0.555883,3.6629,8.71927,2.897873333333333,3.243075,2.747306666666667,4.360900833333333,1.9317675,7.57102,6.639616666666666,2.753023333333333,2.242361142857143,4.09263,4.519315,1.603472,1.20678,1.286078,2.072615,10.499046666666667,2.7233,2.88601,2.949447666666667,4.004375,2.1951300000000002,1.10766625,5.18205,1.0803116666666666,3.3655123076923075,4.153915,3.3524,3.0369333333333333,3.32933,4.95791,1.1901016666666666,2.06033,1.8498446666666668,1.8498446666666668,3.840475,5.38405,8.0357,4.023325,3.408025,4.48709,1.7695,2.3659691666666665,4.587875,4.142785,3.932475,1.6297183333333332,2.8746766666666663,3.61314,4.0505,2.3675375,3.982815,3.74949,3.671365,4.17077,4.14981,3.874205,5.51745,3.31381,2.3138633333333334,4.46697,2.986805,3.965375,1.96112,2.580445,2.619355,5.75595,2.58517,3.299703863636364,1.68379,2.51674,3.090385,2.175585,2.10164,0.7921083333333333,0.7921083333333333,1.783665,4.492089696969697,4.137975,2.8717400000000004,4.157515,3.332038333333333,2.5038774285714283,0.95143625,2.698435,1.59049,4.120385,4.20324,0.9218783333333334,1.888365,3.959365,3.000735,1.617455,1.61184,5.165272857142857,0.90999,2.807945,3.245165,2.866345,2.504845,2.820023,2.072875,0.99618,2.89921,3.09716,3.428915,1.3668066666666665,1.5338466666666666,1.74901,4.257085,2.29833,4.17211,4.685715,4.69344,5.9019,5.2517,3.976705,6.33023,3.952170476190476,0.7909254545454545,2.945175,4.11263,4.030245,0.4800090909090909,0.933762,3.10708,4.20204,4.764465,4.02643,3.4161464285714285,2.779195,4.457405,1.77085,2.3794,4.346375,4.1330775,3.14696,2.67266,3.851725,4.461605,2.80351,4.8121125,0.8990199999999999,3.33332,2.5299,4.12199,4.358705,4.64291,2.13844,2.58021,3.027975,2.00406,4.81608,3.30383,1.363222857142857,2.44306,3.89688,1.438736,5.801695,1.817288,2.6683866666666667,13.71346351034638,3.037573333333333,1.49334,1.6247266666666667,2.0815433333333333,5.6564483333333335,1.7024260000000002,3.8744300000000003,0.7001953846153846,3.0225500000000003,4.308365,7.58575,2.605163333333333,2.8682200000000004,2.8682200000000004,4.91405,4.240845,3.658465,3.481975,4.796885,5.2763,2.471545,3.273433333333333,4.5512,1.2392,2.7853266666666667,4.40245,3.91256,3.30907,2.48482,3.46305,3.632235,6.615925,6.145592499999999,0.647271,4.01877,3.332375,3.4984,4.379935,4.124525,4.05639,1.499892,4.727165,2.418345,2.86559,4.276205,4.522805,4.5636,0.9224627857142856,2.506466666666667,8.117160333333334,1.4759216666666666,2.1020115584415584,2.1291225,3.973325,3.568065,3.444805,0.7155554545454546,2.4853225,1.693025,2.1788675,4.44186,4.989582666666666,2.748216,8.83052,2.24262,2.7021333333333337,1.0685499999999999,4.58928,5.42765,2.113475,5.688035,2.825255,3.20625,5.61055,4.515295,4.78964,2.133055,1.6145075,1.6145075,2.625955,3.32286,5.430878333333333,1.520205,6.486905,1.4950533333333331,3.639015,1.3051766666666667,8.882043666666666,4.73792,2.73,4.651535,4.356745,3.92939,1.14948,2.02895,3.6120666666666668,3.1561,3.485,3.8277666666666668,3.92571,2.92762,3.16168,3.465405,1.5650575,2.5983633333333334,2.0119866666666666,2.967226666666667,2.0296133333333333,5.177181666666667,3.27942,1.7969566666666665,2.7222633333333337,3.36601,3.46585,6.29015,6.01405,3.068585,3.630415,2.90019,3.10358,2.79981,1.19132,0.983714,6.504405,3.114935,5.83625,4.71754,6.3047,3.517265,3.0408000000000004,6.57935,2.62315,0.44589666666666666,5.49905,3.071785,3.686035,3.1027733333333334,1.3671828571428573,4.8225,1.074242,4.602825,0.91547375,1.2355466666666668,2.87204,2.5090600000000003,2.618753285714286,3.610665,5.1711,5.987003333333334,5.987003333333334,5.08031,5.08031,4.7436,2.8937666666666666,4.58016,1.01119875,6.14695,3.72682,3.578666666666667,4.07611,3.792145,4.742125,1.94733,4.448665,3.156198,2.75954,4.30335,2.74334,4.76242,5.50835,3.62081,3.201035,4.78653,3.907665,5.66875,3.03728,2.867853333333333,6.09825,4.088045,3.0082299999999997,6.304688333333333,1.6074400000000002,2.2229725,4.54595,4.970615,4.989325,3.886575,2.0361469999999997,2.0361469999999997,13.097489194444446,11.2667,4.92079,3.72959,2.8088176923076924,4.40346,4.362925,2.5325266666666666,3.3323466666666666,2.921595,3.9696,3.594,5.04065,2.26432,7.944955,2.578615,2.094905,5.4204,2.34162,4.9433,4.335375,4.53997,0.7828522222222223,3.12634,3.84662,0.886158,2.88228,3.63022,1.4914999999999998,1.8555866666666667,2.9686966666666668,2.712756666666667,2.31306,3.2225699999999997,2.1312233333333332,0.3824821428571429,2.7040933333333332,2.67693,2.84084,3.126303333333333,1.6228459999999998,2.921393333333333,7.105861666666668,4.57097,2.4345066666666666,2.0308733333333335,2.6240633333333334,3.80248,2.448965,3.6729135,18.6235125,5.30305,3.2114314999999998,5.2524,3.8272,5.537438333333333,1.6089533333333332,6.00885,1.5088549999999998,4.46542,4.434235,5.2607,5.3461,0.9628114736842105,6.3165,2.52685,4.7553,2.84773,4.369625,4.22471,2.94076,2.1428533333333335,1.556566,1.9716575,4.423235,4.67769,2.376565,1.67234,2.9219000000000004,4.130185,2.9179600000000003,6.19455,2.2808975,3.959755,4.528065,3.912,4.107685,3.16225,3.97181,4.48555,3.823855,2.702863333333333,2.702863333333333,5.932094444444444,1.9793666666666667,2.3870066666666667,3.82764,1.7337900000000002,7.35646,3.633905,4.249803333333333,4.2927,4.303515,1.926284,4.320705,5.18765,3.835105,2.073305,3.664245,3.48089,1.08013,1.30483,1.2540533333333335,0.7362066666666666,1.5944233333333333,0.8853366666666668,4.55309,0.9880800000000001,2.6731200000000004,1.59337,1.611285,0.9669316666666666,2.07867,2.4062225,1.5547075,3.2687500000000003,2.7857966666666667,4.839236666666666,1.5954899999999999,2.4296125,3.3107333333333333,2.9362833333333334,2.3055,4.4456675,4.4992,5.0812566666666665,19.968957666666668,2.5724,2.2382875,0.6209723076923077,0.641699,4.2803249999999995,1.989574,4.00838,4.94837,7.146267666666666,3.834635,3.72863,4.145135,2.934893333333333,3.2869233333333336,3.179396666666667,3.7229666666666668,3.5434666666666668,6.30675,3.613115,0.930898,1.15409625,5.03825,3.204413333333333,2.5642633333333333,2.0772533333333336,2.2850466666666667,5.6706,5.0058,2.1545925,1.7823066666666667,3.22599,4.749085,8.680386666666667,5.348244375,4.06942,3.975515,5.30985,4.47241,4.20185,4.68383,3.758115,5.2783,1.47331,5.57445,1.5344857142857145,5.1673,0.75014,4.509865,5.5063,5.82805,6.25045,4.46556,6.0206,5.45515,5.990595000000001,2.02505,1.448257142857143,5.5516,3.55673,6.188375,5.075,5.327892500000001,5.16255,5.9491,1.3089571428571427,4.30939,5.16155,4.0528,4.576815,5.49765,2.536375,4.31375,3.451605,4.248275,0.9979583333333334,1.6144550000000002,1.306694,4.767235,4.20876,3.440515,2.3291066666666667,2.9714766666666663,1.7039900000000001,2.2262,0.41187166666666664,3.490133333333333,1.551654,2.2716633333333336,2.9711,2.310983333333333,3.1504499999999998,2.52915,2.624425,10.535286,3.7647,1.8731238461538462,3.87768,0.8340563636363637,4.53255375,1.12624,1.5807925,1.9792,1.0788375,5.6323186666666665,1.1260509722222223,1.1260509722222223,1.1260509722222223,3.0138,1.729344,5.26665,3.046575,1.3749025,1.496155,1.784255,1.354025,1.716572,5.268853333333333,0.7947433333333334,4.31687,3.90404,3.5887333333333333,0.9998757142857143,2.172061,2.0575225,2.0575225,1.5213283333333332,3.722248333333334,4.10219,4.983865,5.6318,4.13073,5.40065,2.809036666666667,2.0260825,3.125025,5.04745,3.449415,3.936385,1.03504125,4.067928958333333,5.6188,1.844835,4.00994,3.02018,4.66362,4.684645,2.39707,6.78735,6.17825,4.477765,4.24476,4.33861,3.162175,8.23517,4.052485,5.543315,3.39851,2.6497633333333335,4.982,2.6501633333333334,4.78545,4.83991,2.8272,3.270575,3.97987,1.8693733333333336,10.719815,3.76335,3.06755,14.973264880952382,4.052535,1.7321833333333334,2.872113333333333,2.08658,2.417455,4.10773,2.515154236111111,2.696035,2.667095,2.92176,4.190795,6.438745000000001,1.2717166666666666,2.2943325,4.321875,4.188905,4.76925,2.13068,0.559786,4.45893,4.282935,2.173895,1.2484016666666666,4.66173,4.54872,0.8961111111111111,3.96145,12.495546666666666,1.2645682857142857,0.38349428571428573,3.7264,4.362245,1.0982066666666668,3.94381,3.83994,5.68583,1.24496,3.81117,3.826845,3.385855,4.32909,4.25478,4.26567,8.51489,3.27285,3.927355,5.0249,15.992819375,3.6373675,2.79395,1.1884275,2.0311025,1.3145675,2.02702625,1.28921,2.0530175,1.67386,2.05885,2.40971,2.5133,2.11819,5.1905,4.120195,5.78705,3.25328,5.574698333333334,2.5679633333333336,4.912835,3.2899100000000003,1.22195875,3.842115,2.064465,2.788905333333333,4.587295,4.79149,4.77856,4.03039,3.1620933333333334,3.479233333333333,2.4647366666666666,4.447565,3.782305,2.281795,1.92242,3.5753,4.84846,3.038255,2.4228466666666666,11.810466666666667,0.6775066666666666,2.707915,4.730105,2.442791,1.079822,2.882165,7.52786,7.124140000000001,4.439625,3.893665,3.881715,1.9417825,2.223725,2.9287186666666667,2.1483066666666666,3.6841633333333332,4.83612,4.35938,0.5068146666666666,6.12295,3.3924333333333334,3.2560366666666667,3.5211333333333332,6.33875,8.60583075,4.207784500000001,0.98214625,2.2008575,2.27996,3.64043,2.6172,4.10918,4.268725,3.1761199999999996,2.68478,4.12311,4.07911,3.85179,4.0618,1.7737066666666665,3.44883,5.24315,5.5197,3.1311,1.8701775,2.210923333333333,29.414046833333334,1.41628,1.41628,2.5172866666666667,4.630918666666666,3.735915,4.379485,2.902155,3.18666,4.103895,3.17272,4.310675,3.17272,3.70053,1.9158033333333335,1.6987766666666666,5.695,2.49866,5.0236,3.29139,2.688375,6.705311666666667,2.04704,4.906035,5.0678,3.829215,3.258215,4.743315,1.9433219999999998,4.96564,3.33803,6.440208333333333,4.985408333333333,2.84135,3.771515,4.0418,2.20449,2.8924733333333332,3.8621,0.41818642857142857,3.2838933333333333,10.280333333333333,3.975865,3.5372,5.01915,3.4279708333333336,3.065415,1.3544714285714285,4.253425,5.50615,3.27191,2.505105,4.949235,3.55291,4.28938,4.46181,2.670075,2.670075,4.212545,2.858265,2.7838813636363637,1.850765,4.6396,4.073755,1.1019385714285714,3.58813,4.59649,2.69576,7.033815,7.8328,1.4962659999999999,4.399715,4.547955,6.5012170000000005,0.666513,7.369596666666666,3.464974166666667,0.6004490909090909,5.13825,5.3713,4.875865,4.16184,4.85329,4.77496,5.07255,3.74518,3.90579,4.43008,4.49741,4.917005,4.501835,3.961815,2.684785,4.15743,2.984575,0.870605,4.304745,2.38978,1.696765,4.143975,4.359085,5.6922,1.0602242857142856,5.004131666666666,2.995875,2.77797,2.057275,1.2275533333333333,11.709875,2.710376666666667,3.0861933333333336,2.168363333333333,3.8137638095238096,5.723206666666666,5.949935,2.65917,2.0140766666666665,2.20812,2.20812,2.20812,1.5258866666666666,3.87261,4.06826,3.22054,4.57203,8.327224999999999,4.245675,1.096108,2.47039,3.857455,5.7136,1.791366,4.54703,2.92974,1.40836,3.6918666666666664,6.387935,6.740155,4.508695,4.052825,3.1202,5.209,4.50727,5.351688333333333,1.947235,1.947235,3.919635,3.96882,2.7735073333333333,2.7735073333333333,4.07455,1.1308,5.0008,3.36668,4.301275,4.125975,4.59056,3.115686666666667,1.001587142857143,4.346265,4.7171,4.04517,4.588225,4.804965,4.9091,4.479275,1.9635675,1.520225,3.398,3.75956,3.37288,4.470205,2.140395,2.887345,5.109,2.758185,5.05075,7.05894,2.2703258333333336,2.985765,4.057359523809524,5.044711666666666,1.7319375,2.1454809523809524,1.0244666666666666,2.1454809523809524,1.8660866666666667,1.8660866666666667,1.5142039999999999,4.594825,3.24613,3.57014,2.44025,3.89668,1.5726466666666665,5.35265,3.067325,1.763145,2.7193666666666663,3.61981,3.713705,6.242943,4.903785,1.195116,0.8366816666666667,3.60014,6.958641666666667,2.475353333333333,3.61149,3.523355,3.523355,2.331855,3.394255,3.268945,1.391991948051948,3.0543566666666666,3.205225,2.701455,4.363325,4.0196175,1.7476675,3.685795,4.381715,4.43113,5.09745,4.47031,1.7093175,2.22681,1.3585433333333334,2.197515,3.547795,1.8565975,4.27859,3.2631200000000002,3.189445,4.194535,4.75901,1.65501,0.912632,1.7380833333333332,1.4187575,1.1651,5.00825,4.03297,1.08107,0.22154391304347826,0.22154391304347826,0.22154391304347826,3.48215,6.354299999999999,4.412795,5.14815,4.530155,4.84049,4.66794,4.473355,2.889915,3.8168,1.672655,4.890105,4.282245,3.99673,4.33505,4.1145,0.7781963636363636,0.7781963636363636,0.7781963636363636,0.7781963636363636,0.992812,0.992812,3.938275,3.75059,3.78125,2.80838,2.642975,5.9339,4.48377,5.41925,4.412385,2.9736966666666667,2.5848733333333334,9.63583,1.587002,1.587002,4.384575,5.51305,3.257626666666667,0.469270625,0.469270625,0.469270625,0.469270625,0.469270625,0.469270625,4.66713,4.83254,3.254385,4.464645,2.8630133333333334,2.8630133333333334,2.849895,3.0116686666666665,2.5631766666666667,2.938065,3.403105,6.792796,1.401254,4.85823,3.188435,3.98694,10.076625,2.3369233333333335,2.91572,0.9204142857142857,2.199335,4.514805,3.405705,0.9905425,2.735246666666667,4.285445,5.615,2.51305,4.739952777777778,1.104611111111111,1.9980133333333334,4.77514,4.73941,2.761998,2.2799033333333334,2.0854966666666668,1.3349266666666668,7.433714999999999,3.3884666666666665,2.1284433333333332,3.19015,2.7241999999999997,3.61375,3.9519,2.722103333333333,3.25944,5.9163,1.5347316666666666,4.51159,5.3073,3.810475,4.001705,2.3070233333333334,3.71562,3.84057,3.962045,2.90144,4.60506,4.707955,2.868323333333333,1.9068925,2.9077133333333336,2.8208933333333337,2.856643333333333,0.8092972727272727,2.1324425,8.0988525,0.476093125,2.9741133333333334,1.5531433333333335,2.7182633333333333,3.2108266666666663,2.7431099999999997,1.2150888888888889,1.788402,2.709656666666667,2.16774,3.76978,1.923228,2.59505,1.41186,2.971298,1.93434,1.2137328571428572,2.867793333333333,2.16471,2.4240633333333332,2.6676066666666665,3.0221,3.000916666666667,3.0534766666666666,3.07731,2.8756866666666667,2.8938166666666665,2.81087,2.4785325,1.7117566666666668,2.7839766666666663,2.6406666666666667,1.6116233333333332,3.02121,3.980356190476191,2.8989366666666663,2.6469,3.1641266666666668,3.631266666666667,4.508709166666667,2.8653166666666667,1.743757142857143,1.743757142857143,2.3320525,1.173455,2.3629625,3.2977633333333336,4.499027083333334,2.756375,1.92428,2.03233,2.125115,3.77727,3.15954,3.967795,4.747385,1.8439825,2.2603433333333336,3.973345,1.21849,1.21849,2.70405,0.6913900000000001,3.049745,2.05604,2.05604,2.7894433333333333,2.4750166666666664,2.7997266666666665,2.70185,2.4659525,6.262348333333334,3.9857224999999996,3.9857224999999996,3.565365,3.065765,2.378825,3.05623,2.58961,3.10574,5.3054825,0.49010166666666666,0.705994,4.15834,2.61776,2.90975,6.612805,3.465975,1.657772,4.570233333333333,4.81655,3.920965,4.27117,5.5264,4.683085,13.066409499999999,3.56975,1.6129766666666667,2.87004,3.9327,5.13455,3.32105,4.257695,3.907335,3.726015,3.381745,2.95185,3.40038,2.7065533333333334,2.4663866666666667,2.4663866666666667,4.053405,2.84854,3.21679,3.351635,2.36761,2.635415,2.0653025,1.951945,2.0008225,1.9433225,1.7779225,3.6027055,3.37796,2.81028,7.1110575,3.37852,2.3522466666666664,1.7027166666666667,3.61204,4.078435,3.64569,3.0397235416666666,3.530195,3.301295,4.469285,3.707355,3.98368,4.09285,3.3357289999999997,3.644195,0.6621916666666666,0.6621916666666666,0.6621916666666666,3.472705,2.3657,5.4702,2.5174,3.806735,6.980545185185186,2.7036233333333333,0.34701576923076927,5.3682,0.795785,4.350470952380952,1.899275,3.61215,1.831245,4.693025,5.64408,4.11119,3.751985,2.6605633333333336,2.6592766666666665,1.4952066666666666,2.4755766666666665,0.42727315789473685,0.5733123529411764,2.677486666666667,1.3926833333333333,2.065785,3.978705,3.04556,5.1122,2.8851266666666664,2.9851083333333333,3.50633,5.54203,1.7763075,1.0040099999999998,2.453755,3.358848,1.2426695454545456,5.36875,3.915495,3.307345,2.6536433333333336,4.30406,2.83581,2.5611333333333333,2.5482066666666667,2.3012025,2.3499733333333332,2.216705,3.278726666666667,2.362956666666667,5.326509333333333,2.329785,2.1091166666666665,2.1575166666666665,4.829379333333334,3.3220359999999998,3.3220359999999998,2.4644633333333332,3.88476,2.2967175,3.156035,2.834785,0.601774,4.348135,2.072255,11.406237777777777,7.10054,2.968285,2.973245,3.369655,4.79265,2.973735,3.395545,0.23742999999999997,2.0193775,3.6796666666666664,0.8863833333333333,4.1117,1.3267585714285715,4.87335,3.40013,3.588695,3.602255,3.45654,2.21492,4.53715,3.846125,3.68959,6.88089,4.351045,2.9276199999999997,3.08482,1.636442,1.89569,4.382245,3.979085,3.9697050000000003,2.72154,3.965555,1.363074,3.00887,2.394935,4.09467,10.505975,3.627445,6.752983333333333,3.752205,4.48943,0.996821111111111,4.430977,4.480985,2.6066266666666666,2.7193533333333337,3.1231333333333335,3.18507,2.422606666666667,1.8448066666666667,1.9526899999999998,3.84519,1.585418,2.7635566666666667,4.940315333333333,2.5291033333333335,1.0448246428571428,1.0448246428571428,3.67419,3.2402490000000004,3.2402490000000004,3.4270333333333336,2.94111,3.5498743589743587,3.624233333333333,3.1937599999999997,2.7573899999999996,2.3847466666666666,2.4928933333333334,3.1384733333333332,2.236335,2.6271066666666667,1.709218,5.878248,8.462324666666667,0.5552207692307692,0.5552207692307692,0.5552207692307692,0.6375189510489511,0.6375189510489511,0.5552207692307692,2.9649466666666666,3.0593299999999997,4.219251666666667,1.4285649999999999,1.76058,3.372928,2.42484,2.9720600000000004,2.34064,2.8653433333333336,3.4039,6.765788333333333,3.1372699999999996,2.58889,3.23127,4.387395,2.54098,3.5099,6.07273,2.4615666666666667,3.4069333333333334,1.4103416666666666,1.4103416666666666,2.5885333333333334,0.50269,2.2247533333333336,2.7576666666666667,2.7947166666666665,3.287506666666667,2.3336166666666665,1.58599,2.727456666666667,2.871066666666667,2.35957,4.537115,2.4276103333333334,3.53646,2.661465,4.33931,0.45604300000000003,6.76686,2.9456879999999996,2.9456879999999996,7.5709019444444445,1.7465233333333332,1.7644766666666667,2.8405799999999997,4.177265,2.442883333333333,1.9726766666666666,2.57355,1.402995,3.2919300000000002,1.7977733333333334,3.146918,1.37751,0.27579227272727275,0.27579227272727275,4.69346,3.85324,3.27216,2.8342566666666666,2.888,3.376895,1.2834166666666667,6.14915,3.971305,3.11118,1.868355,1.1572624999999999,2.454905,2.8405799999999997,2.621485,2.20161,5.625579999999999,4.229145,4.633375,3.80902,2.218955,0.6942533333333333,6.55153,2.02296,1.486895,3.528835,4.27673,2.26583,1.73245,4.693635,4.15757,3.1732633333333333,3.0462433333333334,4.787125,4.64399,3.464,2.6014660000000003,2.6014660000000003,4.14889,5.2146,5.60345,6.219506666666667,2.7065566666666663,3.652905,1.299652857142857,2.573075,5.041289333333333,3.85123,1.840336,4.56783,3.641405,3.639155,2.199325,4.212125,4.73077,4.52071,4.915585,2.4594533333333333,2.7466000000000004,3.908466666666667,2.08561,2.691775,2.7469533333333334,2.5545166666666668,0.8859429999999999,2.066815,2.7486533333333334,2.205758,4.27981,5.073,4.548885,3.83862,3.38908,5.1480250000000005,11.381195,4.969735,3.84365,4.49357,4.14129,4.67774,2.6607866666666666,2.9874496666666666,3.673966666666667,1.152005,2.925865,2.95847,4.463005,5.385,4.54187,3.2415000000000003,2.67325,2.319383333333333,4.4695,3.7668975,3.410966666666667,3.7668975,2.44285975,2.3190233333333334,2.4307000000000003,2.1286525,2.68298,1.76989,0.8357816666666666,1.38887,1.9381000000000002,2.0416433333333335,1.7220733333333333,1.3227499999999999,1.6771466666666666,2.7021599999999997,1.5618859999999999,3.0474833333333335,1.2944866666666666,1.6256166666666667,2.704725,3.6882333333333333,2.5153466666666664,2.26058,2.4461633333333332,3.208645,2.155205,2.7835900000000002,3.018456666666667,2.4772233333333333,3.098183333333333,3.1533075000000004,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,4.91853,3.99062,1.0312357142857143,3.1761633333333332,2.6558466666666667,2.8828866666666664,3.662655,3.0880433333333333,4.660415,3.3756019999999998,1.6352060000000002,3.0742733333333336,1.6407216666666666,1.07007375,0.877567,1.495045,0.8849633333333333,0.7863408333333334,1.361896,3.43216,1.6906759999999998,1.5988816666666665,1.7903672222222222,2.2421555555555557,1.3056783333333333,1.5643566666666666,1.4488766666666668,0.9299466666666666,1.2490216666666667,0.7610916666666667,0.908896,3.305465,3.661675,4.237045,4.613315,3.896485,3.0972066666666667,4.41001,3.6926666666666663,1.8946025,3.50757,1.87628,3.57803,2.4979133333333334,0.7800218181818181,4.117855,4.659485,2.1719399999999998,1.2765675,2.99593,3.34426,3.722248333333334,3.0332600000000003,2.790235,0.865985,2.10415,5.105615,3.83202,2.483575,1.560085,3.911235,1.947005,0.6196009090909091,4.74566,4.022815,3.872785,2.469005,1.424578,3.86826,4.679145,2.602863333333333,2.649036666666667,2.523683333333333,2.6600800000000002,2.7748033333333333,2.8817233333333334,3.2119366666666664,1.2367575,2.63105,2.4326333333333334,5.13485,4.145125,3.55884,4.499035,15.75468216919192,4.54249,4.312471333333334,2.79238,3.9653,4.787085,1.570232,2.5214,2.6190933333333333,6.701845,4.2224,4.100235,5.9788,2.6190933333333333,3.841455,2.046875,1.9704166666666667,2.9853199999999998,2.68877,1.1455716666666667,4.26526,3.364795,2.544645,4.29215,2.4656366666666667,3.0740366666666668,3.70192,3.301285,4.34742,3.57208,2.72723,3.54846,2.63276,2.465273333333333,1.24331,1.24331,3.086456666666667,2.436733333333333,0.3356060714285714,4.89833,1.02751,3.337865,3.740485,0.5803258333333333,4.48677,7.753288333333334,1.88014,3.793095,3.679935,2.6587433333333332,3.40672,2.46733,2.957445,3.56917,4.25237,3.12795,3.8925666666666667,0.9678833333333333,11.773145333333334,2.634775,3.371465,5.5895,2.665775,4.048365,7.738475,4.086065,4.06689,3.586005,4.04796,5.296905,1.51719,2.720413333333333,4.451155,3.9019,1.907852,3.89351,3.745505,3.880005,4.02976,4.09525,3.79987,2.54047,3.940605,3.751295,5.0505,3.854205,2.2739066666666665,2.4137166666666667,2.016993333333333,3.1301400000000004,1.3192166666666667,3.5179666666666667,0.8449763636363635,3.16118,3.0593966666666668,2.5620433333333335,1.4049533333333333,4.241385,4.103835,4.293745,1.9161025,4.449685,3.619135,0.7521987692307692,0.34614076923076925,4.527805,5.0492,0.951335,0.34614076923076925,3.619245,0.7521987692307692,0.7521987692307692,0.34614076923076925,5.770160000000001,2.68413,2.4302333333333332,5.26295,3.01501,3.418285,0.7951555555555555,3.31615,3.967975,4.35473,5.2934,2.1861375,0.6945615384615385,4.738455833333333,2.3382,1.449718,2.1451225,1.10121,2.4507233333333334,2.3573333333333335,3.374755,5.06125,2.863493333333333,3.24276,2.7920866666666666,2.3492966666666666,2.96257,4.426265,1.72987,2.04466,4.07135,5.24865,2.1621091666666667,5.0616,2.94716,4.03656,4.257105,3.44288,1.20437,3.20109,6.5805,3.877195,3.67951,5.17765,6.23215,2.525795,3.376265,4.56944,3.17518,3.37502,8.37441,3.79574,4.5028425,2.454285,1.144865,2.42093,1.843875,2.26444,1.870935,4.39255,0.6599071428571428,3.222165,3.81445,1.91632,2.97052,4.91564,3.529175,3.185475,4.363965,5.14225,9.452338833333332,2.72249,2.52817,1.730216,1.6073816666666667,1.2166866666666667,1.3322666666666667,2.856726666666667,2.5833266666666668,2.9806399999999997,4.30980141025641,1.662295,2.3486366666666667,5.27545,5.2193,3.594695,3.555595,3.000975,2.74705,2.06949,2.06567,1.8034466666666666,1.94386,3.552835,3.67828,4.947945,5.2361,3.87121,5.40302625,3.35468,2.59808,6.136997083333334,3.426565,8.69019,4.653400833333333,4.653400833333333,5.57657,1.5785233333333333,1.3282025,1.4563833333333334,0.740503,4.689895,3.9837000000000002,3.3264275000000003,3.3264275000000003,1.9764220000000001,4.43269,4.34701,4.346555,4.304985,2.88537,2.755355,3.90553,3.0555966666666667,5.159876666666667,3.82117,0.7660281818181819,5.1407,5.01145,4.556065,5.0423,3.144265,6.09715,4.386895,0.8637538461538461,4.963855,6.93627,3.26512,5.34675,5.6898,3.554115,2.605985,3.810245,6.22095,2.026355,6.0406,1.87261,4.1833,2.6989,2.008435,0.8990199999999999,3.486275,5.7879,3.442955,3.92447,2.0817200000000002,4.45473,8.132506666666666,3.635775,4.349275,2.50772,2.67966,0.851943,4.82174,1.4486916666666667,3.356868333333333,3.356868333333333,4.338085,2.3350233333333335,2.9467533333333336,4.08136,1.6554975,2.9427733333333332,3.147323333333333,3.3051399999999997,2.81632,3.9392,2.759555,1.877345,3.3674,2.09495,2.838286666666667,2.0410566666666665,2.989853333333333,2.764473333333333,1.3992557142857145,1.6556033333333333,0.42019,1.3124083333333334,0.42019,0.42019,1.6556033333333333,0.42019,3.416066666666667,2.447242,2.447242,2.6819566666666668,4.437105,4.195085,4.33776,5.2359,5.253,3.402915,3.83663,4.116985,1.9917725,2.4410730000000003,2.528636666666667,0.7737927272727273,5.2302,2.9331600000000004,3.00028,5.47365,3.9373825,4.87648,3.379315,2.6725366666666663,3.09861,3.534085,2.515566666666667,2.939776666666667,2.0690833333333334,5.43325,0.8416355555555556,3.78677,1.1967514285714285,3.68937,2.7948633333333333,3.0304599999999997,4.09544,4.190095,3.754885,4.448805,4.18828,3.82727,4.22157,4.29794,2.40424,2.71655,3.23175,4.26386,2.73838,3.257155,2.791885,3.145095,3.0830933333333337,3.56803,4.25046,4.452535,4.16418,68.72707471221834,2.7900458333333336,3.362175,15.832432999999998,4.14311,3.117513333333333,2.18674,1.90731,2.49276,4.357749999999999,3.0321233333333333,4.1195675000000005,6.00225,3.288385,7.395891666666667,5.3356,2.583315,3.392895,3.93641,3.369335,1.93991,1.15507375,4.8173,3.035335,6.049273333333334,3.69905,2.2557066666666667,3.47593,3.607105,4.65241,2.88528,5.8797875,4.70755,3.557335,3.00108,2.4957525,3.591055,6.23065,2.691935,3.597035,4.38560125,1.1963833333333334,2.65161,5.2060775,3.91212,3.14585,3.702035,2.981635,3.899475,3.08789,3.1712,3.10578,4.513125,3.024765,2.863055,4.54848,9.66522,3.26514,4.009615,6.75619,3.040735,2.43926,4.13362125,2.1346233333333333,3.01685,3.05714,3.58771,3.328425,2.99176,3.500535,3.317495,4.174305,3.99557,4.433235,3.065285,3.54587,3.907325,2.5082683333333335,2.5082683333333335,7.0585466666666665,1.77132,3.24633,3.306635,2.384165,4.74777,4.217965,3.09307,3.13561,5.3506,6.4032475,0.6848472727272727,4.06787,2.312385,3.0077166666666666,2.6496233333333334,5.3031,2.93529,2.0191925,1.102135,2.131131515151515,4.295265,4.65532,4.07936,5.8129,5.14985,6.0164,2.426365,1.9717033333333334,3.85791,2.86003,2.94712,1.99875,1.2020533333333334,2.4631766666666666,3.1825733333333335,1.692956,2.4300966666666666,2.4949245714285713,3.4580990384615387,2.78944,4.97053,3.415005,1.3615275,4.88176,3.531265,5.3662,4.71836,5.41165,4.604935,1.9923633333333333,1.4368266666666667,0.6044114285714286,1.5601233333333333,3.51133,2.55585,3.6803566666666665,1.4196166666666665,2.51728,2.288825,3.501325,3.521725,3.865845,4.0647975,1.69042,1.4472075,1.983705,2.164235,1.46649,2.594075,6.458032916666666,4.944515,3.781635,2.96214,7.1692149999999994,4.673505,3.127855,3.152045,3.600455,2.67316,3.9159,2.37277,7.51359,0.9297183333333333,3.091345,6.67265,4.120395,4.449795,6.04075,1.5301866666666666,2.8969400000000003,2.9736433333333334,2.9274533333333337,1.51411,4.061735,8.7057,3.616375,4.89791,4.08571,3.266145,4.665115,0.8648166666666667,2.8677733333333335,5.3509,6.224563333333333,4.873265,5.5431,2.98323,3.5627666666666666,2.5747066666666667,4.820665,4.706715,3.8689111904761906,3.8689111904761906,0.7065928571428571,3.2786866666666667,0.9231,0.6773483333333333,1.68886,3.698566666666667,3.209576,4.533587428571429,2.174323333333333,2.9250314285714287,3.0308514285714283,2.768026666666667,2.9824133333333336,4.634566666666667,3.3583541666666665,1.8125575,1.8125575,3.695275,3.0440766666666668,2.7421133333333336,3.649115,3.20339,0.5473811111111111,3.3449333333333335,2.5031266666666667,2.655953333333333,2.6734299999999998,2.52785,2.4662,3.00578,2.8104600000000004,0.81136,2.6454400000000002,6.44301161904762,2.1002400000000003,7.559023833333334,1.5649739999999999,1.5649739999999999,3.3046116666666667,3.2890833333333336,3.331383333333333,2.6102066666666666,1.705388,1.3399828571428571,3.2692,3.312326666666667,1.6789333333333334,1.5073857142857143,2.8808933333333333,2.68683,2.579686666666667,1.86801,1.9559375,3.22557,2.21131,2.783145,3.302375,1.9228,3.751675,3.32589,6.894195,3.680525,1.6890225,3.23159,2.592585,2.16997,4.128465,2.5325933333333333,2.66854,6.480029999999999,0.8378461538461538,0.6706925,4.672265,1.422458,1.422458,3.570565,2.258145,4.497045,3.23544,1.2873566666666667,2.423438,2.964646666666667,2.4421963333333334,4.934575,3.95798,2.56987,2.4043233333333336,1.5796292857142857,1.5796292857142857,2.34197,3.97078,3.9886666666666666,5.92425,3.10533,5.0444,4.552115,6.84295,4.68687,2.782925,2.850236666666667,2.6708133333333333,2.7226866666666667,0.7487444444444444,0.7487444444444444,0.7487444444444444,3.41346,4.449135,4.105825,1.13699,1.13699,5.32035,6.1994,6.61343,22.186124944444444,11.9783,8.40884,3.38889,5.83535,2.423675,4.670795,2.5402666666666667,3.231833333333333,4.1544,5.578264666666666,2.132065,2.036325,6.81126,2.2459800000000003,2.2459800000000003,6.6853,3.392125,4.27821,1.98787,5.112325666666667,4.96438,4.184315,5.3718,3.65614,1.3747166666666668,6.10715,9.12798,1.3747166666666668,1.98787,2.1428533333333335,0.861468,0.861468,1.770146,2.47304,1.770146,4.694455,5.975,6.36515,8.9261,1.98787,11.476271,6.25785,6.123,2.423675,3.22373,4.681715,8.95924,3.2041825000000004,3.80865,6.23745,3.24091,4.977515,6.2977,4.536105,5.13345,4.90273,2.584305,5.5292,3.888865,4.514145,4.41111,0.80123125,1.4941179999999998,3.03796,5.52355,4.818025,2.5291033333333335,1.871345,3.73249,4.51326,5.68515,5.1842,5.29725,4.58748,4.514685,4.51187,3.71439,2.1455825,4.9522675,1.974055,2.705555,3.7478,1.8024566666666668,4.121455,4.409685,3.82176,5.05665,2.906695,6.521541666666667,0.9156355555555555,3.56238,2.41404,1.2685014285714284,5.277493,1.3702833333333333,1.5994833333333334,2.81838,2.713778,2.9820233333333337,2.8435466666666667,1.72188,0.7509690909090909,2.2600533333333335,2.746295,4.09273,0.7276869230769231,5.045468333333334,1.6748433333333335,1.202408,3.4362999999999997,1.202408,4.00849,0.9082127272727273,4.549525,3.0192833333333335,2.03671,4.5509520000000006,4.2121595,4.2121595,4.74637,2.4374875,3.132105,2.6454,1.6228459999999998,3.86087,3.81534,2.02169,0.7500325,7.3418269230769235,2.78233,4.00281,4.273615,7.73985,2.4766575,4.255165,3.828075,3.066365,3.97178,5.5241,6.3953425,4.308765,4.584835,5.20155,2.9098699999999997,4.643405,4.15009,4.502185,1.0861188888888889,0.48675857142857143,3.32734,3.3376333333333332,2.8821166666666667,5.47835,3.933475,4.22278,4.39641,4.83429,4.24019,4.24857,1.13242,2.20364,8.261535,2.1100766666666666,1.9752366666666665,3.6005861904761907,11.458769186507936,1.5371025,4.786325,6.3601,4.886555,3.245416666666667,2.0707400000000002,3.307926666666667,3.774495,1.106235,2.9705933333333334,3.34699,0.3160873684210526,2.05593,4.29406,4.42982,2.28631,4.051435,2.97643,5.1202016666666665,1.3277833333333333,0.5543990909090909,3.792418333333334,1.1552614285714287,1.02395625,1.02395625,1.02395625,1.02395625,1.5455633333333332,2.4291233333333335,2.0105566666666665,3.4852000000000003,5.45315,3.4849333333333337,4.97122,3.675285,4.51894,3.781995,4.012155,1.46826,7.344925,2.52087,5.1065,5.3077733333333335,4.929335,5.004555833333333,2.4296366666666667,2.4708666666666668,2.691136666666667,3.307605,1.1718666666666666,4.975998333333333,2.710013333333333,4.9502,2.848003333333333,2.39346,3.870545,3.445415,3.011795,2.51961,2.835103333333333,1.522085,0.43869555555555556,4.322775,3.22249,4.1088,3.306865,3.8532,5.77815,3.859355,0.5568553846153846,3.318288,7.433874666666667,2.0236066666666668,2.09198,5.351428333333333,5.21435,2.675606666666667,4.92214,5.20235,3.75826,4.19669,4.227835,5.12845,5.0522,4.72696,3.65105,5.3299389999999995,1.5424039999999999,1.4819166666666668,4.073375,3.986385,4.03836,3.33367,5.05525,4.756935,3.99422,3.3549,15.55812009168734,1.3698960848047084,1.27265,2.1125727272727275,0.52599,0.4743806666666667,1.59565,0.3703911764705882,1.3590659999999999,3.159936666666667,1.579122,1.0165166666666667,1.0849875,0.45357749999999997,1.0849875,1.0849875,0.45357749999999997,0.8844615384615384,0.66776,2.942715,2.5345566666666666,3.993215,3.935025,2.872526666666667,2.664525,4.066325,4.97748,5.2764,2.853655,4.227625,0.7137578571428572,2.432021333333333,8.3783125,4.061115,6.95129,2.73374,4.05533,2.330275,5.045,4.999775,3.26843,4.57016,3.191345,0.9798133333333333,3.93502,4.903425,0.972742,1.348208,1.5001866666666668,2.393003333333333,2.190656666666667,5.1494,5.46865,2.3194025,2.3194025,3.658552777777778,6.46573,2.1307733333333334,0.6658963636363636,0.7567685714285715,2.0893466666666667,3.3625333333333334,0.9611,0.9611,0.9611,0.3737076923076923,1.0257628571428572,3.008375,6.0586,3.8099666666666665,4.071478333333333,5.3933,0.976802,3.3533333333333335,2.9442633333333332,3.9369333333333336,5.6465,2.47782,7.48215,4.846425,1.08325,3.7347,1.90819,2.610505,2.341666666666667,6.519165000000001,3.2718966666666667,4.697695,2.17866,3.99245,4.26814,4.49444,0.4860216666666667,3.0322899999999997,1.39848,2.507146666666667,4.117824,2.09016,2.7756866666666666,2.351033333333333,2.552233333333333,2.5470266666666666,2.891016666666667,2.8107433333333334,2.9268199999999998,1.443924,2.34792,2.0263533333333332,3.10633,2.6231766666666667,2.135755,1.8051066666666669,1.8249666666666666,1.73348,3.18033,2.321893333333333,2.1625733333333335,2.19785,2.563963333333333,2.552216666666667,0.78554,0.78554,0.78554,2.489786666666667,2.117793333333333,3.17891,2.445866666666667,2.5802133333333335,1.94229,3.922435,3.5508066666666664,1.3421833333333335,2.55872,2.8488733333333336,3.6205833333333333,1.5970571428571427,7.376998333333333,4.644435,3.227725,4.260635,3.63837,1.4408275,0.73045,3.590935,3.92051,3.6205833333333333,3.997735,4.14629,4.68539,2.816516666666667,3.64567,4.142065,0.8218780000000001,2.805425,3.349505,4.856965000000001,4.684545,3.63916,3.261615,2.52433,2.3651966666666664,2.4964566666666665,0.65581,5.324793333333334,2.75095,4.306925,2.73769,3.7219700000000002,3.1824066666666666,2.5143666666666666,2.898341333333333,2.898341333333333,2.6357399999999997,2.09761,2.55599,2.06757,4.07378,1.399318,2.57101,3.9587,4.10275,3.96299,5.0813,3.69827,2.3135225,2.214855,3.34741,3.55713,2.84267,4.820765,2.717265,0.8163814285714286,0.8163814285714286,4.736815,3.902171,0.981546,4.75707,0.981546,3.827125,4.473625,4.787735,3.140615,3.329075,6.376949999999999,4.3112475,5.66355,0.8732928571428572,0.8732928571428572,2.1653,4.495465,1.5429899999999999,2.952475,3.70823,1.1449257142857143,3.790025,3.87566,5.7715,5.7715,1.0026866666666667,5.66255,4.907235,4.81983,5.91935,2.0997175,2.0997175,7.01475,0.9632727272727273,7.2246,1.940625,6.146465,2.80079,2.48854,3.601695,2.17104,2.1948766666666666,2.4383399999999997,3.0614966666666668,2.523940714285714,6.300927,1.796072,4.855995,2.9142166666666665,2.497056666666667,1.80412,2.059975,3.405305,3.66063,3.65043,2.90148,2.35446,2.27951,2.62125,1.088696,3.415225,2.26357,3.194575,2.126896,2.126896,3.092325,2.1664033333333332,3.830465,3.674255,5.3346,7.293098333333333,4.332285,3.58628,6.317265,2.0544533333333335,3.262122222222222,2.2106166666666667,1.4412857142857143,1.8285825,4.48483,1.5920316666666665,0.5078075,0.6601549999999999,4.325035,4.45983,2.82529,0.952178888888889,2.73838,2.5242333333333336,4.768205,1.8009340000000003,1.85888,1.1210444444444443,4.377955,2.46835,4.27933,0.658342,3.940819583333333,4.703835,3.963545,4.60692,3.699965,3.89315,2.80761,5.5219,3.74408,2.295856666666667,2.5444299999999997,6.024395,6.3377300000000005,0.75633,4.05687,4.23225,4.84874,3.5894,3.763733333333333,2.96795,3.2715300000000003,3.8419333333333334,5.870832500000001,2.68683,2.6286535000000004,3.74736,4.14099,2.409555,2.4939975,8.599039999999999,4.77653,1.8737833333333331,4.497445,4.788625,1.8636,4.00354,1.4439625,1.8755714285714284,4.63658,4.152745,5.71355,3.0274433333333337,4.10865,4.72321,6.5735,4.175365,4.621775,3.304815,4.87223,4.119835,4.348245,1.1211083846153846,1.1211083846153846,8.11445,0.962155,2.002847857142857,0.962155,0.6720966666666667,0.43302,2.6749445238095237,2.263925,0.5140028571428571,2.002847857142857,2.05729,3.358735,2.1609416666666665,3.28251,4.343425,7.356851666666667,1.937625,2.24094,2.322885,4.833055,5.50505,1.93956,1.6879825,1.25562,2.9436025,4.133795,2.698035,3.931435,6.3482725,0.4207561111111111,3.798985,0.7030000000000001,2.737276666666667,2.266565,3.778025,1.2688366666666666,4.20077,4.6408325,3.769445,2.748675,3.40926,4.7627025,1.6485475,2.91615,0.5285876923076923,2.3241,2.26092,0.9690160000000001,3.0254999999999996,2.4930333333333334,2.5718566666666667,4.08863,9.16005,3.150844848484849,3.7797,3.49094,7.412325,5.34567,3.26859,4.19419,3.523,5.47665,5.09435,5.6261,4.714245,4.441935,5.83995,2.999913333333333,1.714965,1.8868,2.4519766666666665,4.11852,2.55496,0.24498756756756754,0.24498756756756754,0.24498756756756754,30.335613666666667,0.24498756756756754,3.0696625675675677,0.24498756756756754,0.24498756756756754,0.24498756756756754,3.3053542342342346,4.33678,0.24498756756756754,0.24498756756756754,0.24498756756756754,0.24498756756756754,0.24498756756756754,3.41078,5.39272,3.015935,0.3386153846153846,0.3386153846153846,4.246974,4.024462375000001,3.984614375,3.3737917083333335,3.928937619047619,7.998566666666666,11.250897062548562,6.221523333333334,8.121076666666667,7.635204267857143,2.5885333333333334,5.9997742857142855,4.306953333333333,4.500819775641025,0.3386153846153846,8.165832333333334,6.387641047619048,7.118215,3.030475,8.816619767857143,15.201741220238095,18.436011879578754,57.669530038743936,115.44669136308626,1.4103416666666666,3.4069333333333334,3.281325,3.8510759742599743,0.3386153846153846,1.6998310256410256,8.620713541666667,14.761840226190477,19.895464444444443,48.32155517251462,13.649660101190475,3.079325,0.2809844827586207,0.2809844827586207,4.614013333333332,2.8170566666666663,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,7.93515,0.2809844827586207,0.2809844827586207,0.2809844827586207,2.84098,1.8911766666666667,3.562345,3.845225,4.334316666666666,5.3351,2.4041575,4.19128,4.23394,3.27664,1.5115699999999999,3.71468,0.9862166666666666,2.2237425,1.9325466666666669,5.0079633333333335,6.076156666666667,2.8335833333333333,5.764831999999999,0.4863733333333334,0.486664,2.4357966666666666,2.6801566666666665,3.052725,4.484445,3.3714666666666666,7.724058749999999,3.848075,3.39307,3.40664,4.11565,3.708635,3.28152,5.4641,2.069145,0.4560915384615385,0.898109090909091,4.6003425,1.815895,3.857285,3.82469,4.650305,3.631935,2.4985625,2.761425,0.6130966666666667,0.719673,4.167935,2.6351999999999998,5.1564,3.95254,4.213545,2.662625,3.304965,6.1096,5.2906,3.31565,0.8555254545454546,3.4308666666666667,4.468965,2.35198,0.998675,1.9211600000000002,3.75806,6.11995,1.86588,3.18255,3.85243,5.592,2.62947,2.4755566666666664,2.306485,4.54074,2.49681,4.10946,0.6987357142857142,2.5289633333333335,3.504815,1.84492,5.9298416666666665,3.938985,4.125655,4.78954,2.926905,2.07514,0.638970909090909,5.0994,4.44496,6.43815,3.17809,5.20165,4.778065,2.83184,2.7689,1.2412114285714286,5.15155,1.945005,2.73673,9.064505,4.329765,5.1443,3.312095,0.8663377777777778,3.122965,1.2296657142857141,3.30791,6.3597,4.99656,5.0362,3.57793,5.22185,4.55185,1.5321175,1.5213966666666667,5.0203,3.0661666666666663,3.325976666666667,2.333795,5.1546,4.08701,1.4638600000000002,3.4257000000000004,2.80794,2.71894,3.838375,9.65804,4.656385,1.814935,4.78713,5.75018,4.360469999999999,4.03006,3.56415,3.788725,4.47244,8.14424,2.4313866666666666,3.406895,4.56008,4.40563,2.90008,3.28974,4.84754,4.327145,3.51363,4.225787333333334,18.414808999999998,2.840726666666667,2.4430166666666664,3.11547,5.671360666666667,1.11251375,4.357715,2.1258616666666668,4.84559,1.4747633333333334,4.398095,4.28423,3.57541,0.9622075,4.51438,4.81186,1.6473725,4.798217348484849,4.39728,1.0063628571428571,3.78994,2.04505,2.18743,1.46153,4.358835,3.89345,3.96513,3.79838,3.0365300000000004,4.35738,8.128108333333333,4.251815,4.11694,4.88651,3.1493466666666667,3.85289,4.891645,6.39361,1.010416,1.010416,4.597975,4.49773,2.07666,1.4328083333333332,6.940025,4.06574,3.14246,3.731765,4.469125,4.35014,3.53429,4.162025,5.595845000000001,4.001746666666667,4.59314,4.80009,1.413104285714286,2.515,3.96016,4.68451,3.6157674999999996,0.19304027777777777,1.5879825,2.10073,2.51635,2.1753033333333334,0.9565033333333334,1.5101525,1.41656,2.3152033333333333,0.6239488888888889,1.1513085714285716,1.9657875,3.9106,3.9725,2.4146266666666665,2.80274,2.9326966666666667,2.8760266666666667,0.66699,0.9834375,3.030325,4.69067,4.288225,2.972615,4.310625,4.510845,4.887455,2.06568,4.26651,5.02115,4.38406,6.46596,4.118745,0.4925770588235294,5.7097,4.830605,4.378985,5.30095,3.289935,1.999534,4.051895,4.0856,2.729875,5.256806666666667,4.58153,1.4465016666666666,5.256806666666667,4.054385,6.78351,3.66538,1.2040555555555554,3.744215,5.0409,4.4414,2.6830366666666667,5.08275,1.589585,2.0321725,3.905445,3.561325,0.8443622222222222,4.602095,5.0411,3.45889,4.201575,3.0920433333333333,2.9357666666666664,1.762776,1.7787575,3.19434,3.64094,3.5263000000000004,2.5019933333333335,2.5777,2.116395,4.91068,1.5966714285714285,0.8710266666666667,6.17408,4.16526,1.510128,2.798996666666667,2.41598,2.79016,6.7600750000000005,2.3211144444444445,0.814999,2.731035,4.979155,2.2764466666666667,4.063355,5.5756,5.3827,4.907645,4.39766,4.864535,2.1661766666666664,2.3003033333333334,1.7157166666666666,2.1570899999999997,1.93233,2.44043,2.27437,1.7119925,2.85943,3.142045,3.64018,6.41805,5.1818,4.116515,4.804305,4.137995,3.86962,4.7589,0.9112625,2.8026700000000004,5.09275,1.1629260000000001,0.6769733333333333,4.74573,3.6712,2.479303333333333,3.34604625,6.2027175,5.2735,0.937006,1.14094,0.7153822222222223,4.204630833333333,2.3486266666666666,2.82578,1.1479071428571428,3.3245299999999998,2.5253900000000002,5.3916,4.772275,4.33288,5.30855,3.91716,1.3039316666666667,3.784365,1.71619,3.621255,4.270105,3.52507,2.7997099999999997,3.2164300000000003,2.6023,5.2438,3.983995,3.12617,2.3892225,8.2692,10.3536275,4.22893,1.3534457142857141,5.39725,4.115085,4.88667,4.50249,3.76776,3.972245,3.547285,4.265295,3.703906770833333,3.98082,3.72435,3.467525,4.689275,1.851372,4.969735,5.82515,4.76367,3.3319,3.2735149999999997,7.21802,0.7269383333333334,2.789706666666667,2.81096,2.3930599999999997,4.95981,3.03661,1.2964683333333333,4.27988,3.417066666666667,3.786175,4.639935,3.9400983333333333,6.818555,3.056713333333333,2.6733933333333333,3.1106866666666666,2.8533666666666666,3.93697,1.85918,2.122873333333333,3.077393333333333,4.001885,3.6404941666666666,2.031585,1.516235,3.230399642857143,2.9213465000000003,0.9364222222222222,2.5999350000000003,2.5999350000000003,1.373325,5.58655,3.20309,3.40025,3.67616,3.398985,3.536475,3.44915,3.40952,3.14936,2.1934766666666667,0.5570846666666667,3.326755,5.815045,3.154075,3.73607,3.282915,4.05902,4.18205,3.2002,2.619305,4.124865,3.800125,3.30022,3.13876,3.57069,2.72409,4.206375,3.758755,9.03667,3.477185,3.7393,3.039375,4.087185,4.19163,3.70273,2.36249,3.70958,2.5410399999999997,2.91208,3.09139,3.272455,3.80497,1.7257166666666668,1.7257166666666668,2.533175,3.01959,3.163245,1.6011320000000002,2.513825,3.4541,1.8122599999999998,2.82311,1.6011320000000002,4.167625,3.1232,3.9934575,3.040415,3.29396,2.28776,3.441755,4.0136,4.33774,3.71961,4.590925,3.95538,4.32501,3.73116,3.205665,3.46814,3.10476,4.031375,2.67737,3.77358,5.22875,4.14356,3.799725,0.29820521739130434,3.68394,0.44133,3.91374,3.66021,2.980045,3.685385,3.88166,5.952235,3.178265,2.64278,2.3967733333333334,2.867986666666667,0.643608,6.200708333333333,3.30403,3.523095,4.16333,1.965955,2.55214,3.461105,3.418125,6.873155,4.415335,4.78401,4.760615,4.63758,4.194605,3.82435,1.4666666666666668,1.624934,3.595905,4.3689,5.33825,2.40582,4.48884,2.24272,3.499333333333333,3.410585,1.882342619047619,4.13868,4.83122,3.4063666666666665,3.6563,3.1192766666666665,4.44228,4.92249,3.4554333333333336,4.30926,4.216915,4.859705,4.33347,4.41602,3.76466,3.02794,4.133745,2.3926225,3.1282333333333336,3.1282333333333336,4.077735,2.6091233333333332,3.898485,2.5253900000000002,4.304595,3.2904,3.581895,1.911185,1.7886966666666666,1.2010566666666667,1.2010566666666667,1.687614,3.3699999999999997,1.7288,2.7954033333333332,3.9524,5.152739,3.25943,4.374215,6.03243,2.672995,2.822495,2.912603333333333,1.6453,4.43228,3.942465,6.224435,1.63959,5.39745,5.5357,3.2801233333333335,3.411205,4.244545,6.63857,1.9328266666666665,2.360735,4.02482,0.47837142857142856,3.664045,4.12196,4.376695,4.076815,3.57803,1.365514,1.552756,4.06864,3.474355,2.4631833333333333,3.84575,4.59656,4.669925,1.18900625,3.112065,3.94725,3.797205,4.903405,2.87342,5.352671666666667,3.89124,1.577164,3.88977,1.2122066666666667,2.78552,7.296244999999999,3.30316,0.7440927272727272,3.006805,4.201255,4.022565,2.09072,2.09072,4.837506666666667,5.66925,2.940565,0.5080322222222222,1.9765375,4.4632425,4.09404,4.0059,1.808818,3.020296666666667,3.29619,1.221087302631579,1.221087302631579,1.221087302631579,0.750763552631579,1.3234018859649124,0.5726383333333334,1.221087302631579,0.750763552631579,0.257081052631579,0.8297193859649123,0.257081052631579,0.4936825,0.4936825,0.4936825,0.4936825,1.1642818333333333,1.16249875,2.4420966666666666,2.3222016666666665,1.0931283333333333,6.423776666666667,2.6931766666666666,6.290150000000001,2.46284,3.40738,2.94106,3.393415,2.6631,4.710745,2.90018,4.173725,4.161815,4.761135,2.22212,3.906435,4.970665,4.191925,3.383385,4.82045,3.433885,4.45459,5.33025,4.835165,6.1361,5.28475,1.227525,4.018965,3.869405,2.805315,14.25055,4.299325,5.1955,2.739103333333333,7.64512,4.17093,3.978395,4.887475,3.19582,1.0485525,2.700875,3.63916,4.361045,3.131605,3.438635,4.101355,2.9238999999999997,4.130575,4.679805,4.17842,6.88143,7.318973333333332,1.30185,3.605535,3.99047,3.891035,3.61834,3.507025,7.52348,2.71935,3.14433,2.61062,4.106425,3.79782,4.614115,2.497555,1.7447925,0.9320999999999999,4.36641,3.619115,3.90517,3.906465,3.393695,4.51952,3.833765,6.57115,5.75035,4.40962,6.26415,3.990015,3.289845,3.354115,3.529715,1.8870175,4.99201,6.3857,6.5999,6.429391666666667,6.429391666666667,2.306295,1.8870175,2.073105,2.950595,0.7546849999999999,1.601055,0.84637,1.619665,2.8545,0.36136599999999997,3.057595,4.27199,1.619665,3.098948,10.385105,6.322884999999999,2.130535,1.02715,1.9427,4.296435,4.390095,5.703915666666667,1.9924025,2.219065,4.022995,3.720475,4.531275,2.0279700000000003,5.32225,3.346,3.01729,5.07025,6.95838,4.044565,2.229975,2.8579399999999997,1.8274466666666667,3.7161,4.9773775,1.59579,5.5075,4.50008,6.266565,0.5419060000000001,4.536108333333333,5.76385,5.77615,2.47642,2.914495,7.2449,9.5038,6.4475,2.24095,2.24095,2.24095,6.2172,4.873665,5.9575,3.328335,2.84864,2.556875,4.535335,3.139115,2.6116355,1.94428,2.6116355,6.9367655,4.6608,4.691336904761904,7.15734,4.691336904761904,4.691336904761904,3.472988571428571,7.0701,5.88125,3.06822,3.06822,2.58404,6.92515,2.9183,3.56415,5.540979166666666,5.540979166666666,5.540979166666666,7.33509,3.7091125,3.49368,3.75823,3.5968225,0.8902625,7.306466666666667,2.6456666666666666,6.31735,3.47606,13.143839999999999,4.745475,5.749701666666667,6.87216,2.741626666666667,3.53095,1.1710749999999999,5.749701666666667,3.4876,1.709975,1.709975,3.177855,5.380898333333334,1.8168,4.86134,0.8605750000000001,1.4594066666666665,0.8605750000000001,1.978965,2.677375,5.5274849999999995,3.95501,1.4594066666666665,3.14426,4.7244925,0.9771775,3.61719,4.30558,2.15053,4.100976666666666,2.76116,3.494905,3.20156,0.983166,3.78865,2.51175,2.147915,1.671,3.04224,3.86318,2.496885,3.840695,1.2591977777777776,1.2591977777777776,1.2591977777777776,3.64998,2.9612766666666666,2.9612766666666666,3.22051,4.042685,2.2488766666666664,1.2577725,1.2577725,3.166045,4.5928875,0.8131925,1.4626266666666667,2.90975,1.27695,2.7395766666666668,0.983166,0.983166,1.8165225,0.983166,3.2644608333333336,0.762485,3.2644608333333336,6.2347504166666665,3.41804,2.36029,1.8830881944444444,0.6243733333333333,2.5074615277777776,3.27397,2.5074615277777776,1.0137744444444445,3.64143,3.933585,3.757465,3.258855,2.730275,3.89897,1.9624033333333333,0.8635484722222222,0.39931625,0.8635484722222222,0.4642322222222222,0.8635484722222222,0.8635484722222222,4.621215,4.886025,6.27705,3.51093,4.723575,4.298505,5.43985,3.563685,3.85337,1.3039671428571429,2.904386666666667,4.539595833333333,3.957165,1.5056566666666666,2.7364566666666668,3.90438,3.808305,4.14257,3.37227,3.534335,3.35505,3.223805,4.332605,2.3938333333333333,6.0447,3.650095,4.15631,5.171435,1.1835885,2.06337,3.18369,6.39224,4.447065,3.80978,3.1607033333333336,4.46013,7.513601666666666,3.653233333333333,3.30475,3.0447366666666666,5.75805,4.125625,5.583,5.28085,5.14665,3.101655,5.60145,4.88179,3.3094433333333337,4.139985,3.0545233333333335,2.272695,2.30077,4.97438,6.5164,5.39735,5.6221,3.95437,4.773275,5.6104,0.46822769230769234,7.175075,4.475525,3.696695,3.58175,4.560395,3.797115,2.9926333333333335,2.433975,1.3956416666666664,0.6038476923076923,1.7568899999999998,2.98307,3.71117,3.539465,4.147725,3.971735,11.849615,3.83528,3.968855,2.67458,0.672025,5.620373333333333,3.2272233333333333,1.5044633333333335,4.731686666666667,5.6718633333333335,2.44464,8.24813,5.05345,3.621922,3.621922,3.621922,5.6541,9.12012,3.481315,3.22705,3.22705,3.347845,10.1334,1.06599875,4.91003,4.15488,4.252995,2.7501200000000003,2.419513333333333,4.57252,3.97664,6.04025,6.397623333333334,3.94527,2.95783,3.939775,3.935975,3.397463,1.2973375,2.974126666666667,6.2025,3.4808875,4.63782,0.90891,3.5914333333333333,2.4994166666666664,2.6042633333333334,1.767875,1.83497,2.1720099999999998,5.08075,2.13805,4.27819,5.87895,1.796072,4.541995,3.829085,4.794955,2.8493433333333336,2.225305,2.771085,3.718375,4.328299166666667,4.328299166666667,1.11174,1.98001,2.636413333333333,4.439614,2.333016727272727,4.788011333333333,1.770138,2.7327133333333333,2.2038933333333333,1.7317875,1.7317875,4.680965,7.376248333333333,1.9096133333333334,2.9938333333333333,2.22276,5.8257,3.288015,0.8423619999999999,2.890865,0.8423619999999999,2.72868,3.47776,4.78434,5.81925,3.757105,4.669605000000001,5.68335,2.323195,1.91357,2.7886900000000003,2.223526666666667,6.1812,4.416015,2.51076,3.92962,2.696005,4.22997,1.08154875,1.159464,1.83659,1.463185,2.584776666666667,2.8145233333333333,2.30833,3.0466800000000003,2.70956,4.447845,2.5849933333333333,2.5688133333333334,2.7723,2.471373333333333,2.75155,2.6696000000000004,1.9078466666666667,2.56129,3.625345,3.47352,3.218875,3.206435,2.9005433333333333,2.15336,1.9433175,1.1897483333333334,0.29968849999999997,0.15057195652173913,2.1919833333333334,1.9720566666666668,0.15057195652173913,3.9944802898550726,2.239705,0.15057195652173913,5.890833611111112,2.4454716666666663,6.25868,3.49282,3.5999,2.523433333333333,2.8106533333333332,2.2787175,4.4958,3.1237399999999997,3.29769,0.41944421052631575,4.0997900000000005,2.572227543859649,3.19634,1.73732,2.493045,4.045895,2.412115,7.747745,4.834065,3.50122,3.852245,6.52161,6.33926,1.8677666666666666,4.06601,2.150155,1.84258,5.81666,7.84442,1.3662333333333334,2.0847175,3.702815,2.62154,3.040415,3.107625,2.87027,4.06235,2.442695,3.1336,3.36024,3.178305,7.61274,1.31135,2.08294,2.9522,3.468245,1.61365,3.49662,1.46033,3.80112,3.36351,7.35949,3.44623,9.4882525,3.64107,1.575122,1.66929,3.031025,6.01837,1.6200975,1.6148366666666665,5.7557,3.494255,4.05769,2.81437,2.10895,3.1473,10.644565,4.99893,6.643,3.532395,2.14832,2.179965,2.833135,2.913615,3.426505,1.6703999999999999,1.6847533333333333,2.5888833333333334,3.541445,1.76058,3.49038,3.028795,4.544055,3.88693,3.481435,1.1383566666666667,2.360685,0.9375966666666667,1.274016,1.69543,3.322415,3.35374,3.70855,2.683435,3.798025,4.12258,2.88709,1.501374,3.551095,3.641405,3.25186,1.818185,3.255355,3.4832,1.3835375,3.620925,1.6823666666666668,4.16452,4.06188,4.87727,2.6956,3.93504,1.83805,3.551075,5.00715,1.731615,1.03549,3.7470666666666665,2.77813,4.538525,4.37394,2.999245,4.559515,4.728245,2.0445100000000003,4.953935,5.537185,6.70535,4.09368,5.773128,3.85944,1.5813,2.692766666666667,4.5857,4.98634,2.2054966666666664,7.562164,1.2392114285714286,3.4898000000000002,2.118585,1.770138,2.4316666666666666,2.7834733333333332,0.407545,2.548756666666667,3.5358,3.711395,2.47743,3.3954,2.3859733333333333,2.5518466666666666,1.9758525,9.01356,4.48636,1.744354,4.975905,2.3886525217391306,0.7521987692307692,2.650986666666667,7.357945999999999,1.6314699999999998,4.48988625,5.9386133333333335,1.497425,1.5689125,1.56109,4.3279,3.29451,4.58076,4.0763875,2.4678033333333333,3.810295,0.759152,2.665742,3.928095,4.145585,4.934795,2.784225,4.796325,4.41921,4.4077,4.8069,5.8067,4.7536,4.300945,4.86451,1.6971640000000001,1.844835,3.06472,3.40253,1.1164777777777777,4.32405,2.3605300000000002,3.26994,4.06623,2.923033333333333,2.58508,1.5210666666666668,2.949533333333333,2.780141944444445,2.770183333333333,2.9907533333333336,2.0044999999999997,2.1587125,2.31805,3.78967,4.38397,3.949815,4.469975,3.65142,2.44446,2.9507,5.16035,3.6508000000000003,4.7161,3.58201,2.291465,4.460013333333333,1.7126933333333334,4.148625,4.9767391666666665,6.0873720238095235,3.669705,4.56765,5.47935,3.06969,3.9974483333333333,4.59565,3.52505,3.761194,3.60786,1.3547125,3.296425,1.763535,2.334915,4.425865,5.2607175,3.761194,4.1575,3.4172,1.5429899999999999,3.711935,2.078955,2.5325933333333333,2.22916,2.737375,1.5116472727272727,1.5116472727272727,1.5116472727272727,0.5098472727272727,0.7556033333333334,2.0444583333333335,1.0533775,3.72955,1.274985,3.876355,5.00775,4.612195,3.345345,4.123505,3.023265,4.982825,1.432895,3.04492,2.68392,3.468185,5.8529480000000005,4.42339,5.3209,4.1108,0.9873075,2.310855,1.3422866666666666,3.948725,4.08727,4.28747,5.32845,4.74097,4.534795,4.978025,3.918285,1.710215,1.1337783333333333,5.245546666666667,0.9932911111111111,1.2421,2.40974,8.368165000000001,2.91645,3.919095,3.32814,5.680835,1.69776,1.0527233333333335,1.4767075,3.294205,3.50111,3.80923,3.731955,1.93878,6.821725,3.1094566666666665,0.95277875,4.74796,2.8894633333333335,2.8684733333333337,2.43836,3.503933333333333,5.504551666666667,2.670576666666667,3.0138133333333332,3.6254333333333335,2.5353566666666665,2.6599866666666667,2.9006433333333335,2.4858,2.0050475,4.765585,4.90107,4.783925,1.0949933333333333,0.739295,3.604566666666667,2.79321,1.05411,2.7168566666666667,4.15677,4.13194,7.1590549999999995,4.682025,3.5134333333333334,1.830584,3.74671,3.78168,2.7853,2.990251714285714,3.86232,2.82223,4.869468666666667,0.8103566666666667,5.299,1.7616640000000001,4.021265,4.325695,1.9814,0.9417475,3.031525,0.43490399999999996,3.113615,6.917,5.78815,2.75882,1.550328,3.3602000000000003,0.7769922222222223,2.71381,0.7769922222222223,4.160805,4.54948,1.404275,1.8317625,5.208188333333333,1.7912033333333335,3.7562,3.376135,3.51893,1.234826,1.63566,3.99852,5.04505,5.2972,3.05714,2.52455,3.2204,1.6063125,2.5788,1.8331525,1.9084575,4.148635,1.4309444444444446,1.4309444444444446,2.983085,4.690789333333334,7.919150833333333,4.406333333333333,7.441015,2.12386,3.889475,4.172085,1.6095716666666666,3.677140833333333,3.849075,3.307365,6.22915,3.14467,2.767345,2.844276666666667,3.545905,1.0700375,4.05441,4.45643,1.1692066666666667,7.867213333333333,2.93045,3.35064,3.389801666666667,4.71144,4.17606,3.9903870833333337,2.3575,2.91529,1.92146,3.6716333333333337,2.2609825,2.237515,7.349049333333333,3.421533333333333,3.2100333333333335,4.379965,21.963529001831503,0.67186,2.79767,4.21358,4.633505,8.69717,4.81162,4.358615,4.254545,7.305115000000001,3.67214,1.5576333333333334,5.190835,3.327145,1.122884,1.122884,1.122884,2.40566875,1.7016425,3.40801,1.6092725,3.17898,1.5301866666666666,2.530475,2.49855,3.04047,1.6092725,3.380805,2.656885,4.1179483333333335,4.963758333333333,4.707795,0.7476325,3.321755,2.972905,4.76047,3.712905,2.961445,2.1550675,1.7408825,2.0226125,1.459846,3.86343,1.56968,4.617795,11.092672833333333,2.677713333333333,2.47095,4.869845833333333,4.635833333333333,4.386933333333333,6.34105,2.1527833333333333,5.34567,4.269365,1.0219116666666668,1.2095385714285716,6.619869,3.884375,2.1424725,3.95364,1.9040025,4.2893,4.70457,4.594765,4.093455,1.3158885714285715,4.37492,4.928735,4.646615,6.351634000000001,3.36201,5.5184,4.32138,4.299015,4.932385,3.09353,4.90385,2.3368575,3.446515,3.14149,3.552075,4.113235,6.0167,4.471555,2.3428233333333335,3.5627666666666666,9.049515,4.493765,3.0852299999999997,3.63326,2.98399,4.517475,4.381715,4.91533,6.73836,3.32838,2.6897466666666667,4.2544225,2.47135,4.14579,2.44674,6.4854825,1.5630583333333332,4.462735,4.79343,11.3837625,0.5088464285714286,4.672705,4.610255,0.6463171428571428,3.80103,4.07706,3.97168,0.9277770000000001,4.50076,5.044386666666667,2.740906666666667,9.928833333333333,3.3267433333333334,1.91081,2.218295,3.77951,5.88075,0.5559525,4.01357,2.0761525,5.2354,0.6947646153846154,4.27593,5.46545,5.7685,3.61672,6.492115,4.392985,3.35563625,2.55672,3.0187866666666667,4.31862,4.64464,4.906735,4.96198,5.15735,3.1749533333333333,6.766943333333334,2.815475,3.2271544999999997,1.8552325,3.72454,2.5649266666666666,1.51112,3.20115,3.23181,2.9079566666666667,3.3061433333333334,3.3150366666666664,2.9831466666666664,2.5930233333333335,5.40825,3.2078433333333334,3.87355,5.02785,2.60561,1.1311222222222221,2.968253333333333,2.837263333333333,3.568985,2.9501000000000004,3.0941033333333334,4.686904999999999,2.01716,1.778685,3.05082,3.759845,4.39066,1.13483875,4.73017,3.326575,4.097133333333333,3.019716666666667,4.847879,4.0513,3.374885,4.107985,1.68378,4.021805,0.6385125,4.51295,4.780915,16.425373030303028,3.1795466666666665,1.2339149999999999,4.11147,0.60878,2.5593,4.424365,1.818845,1.2520871428571427,3.534365,4.423685,3.047,0.8173183333333333,2.56068,7.99696,3.89019,5.61385,5.40985,4.659755,3.0663933333333335,3.4484,3.2008533333333333,7.009416666666667,3.71295,5.0892,2.039145,0.45853333333333335,2.012935,3.127865,2.569775,2.836795,4.177455,2.8848333333333334,5.0007,0.6648791666666667,4.658565,3.527275,3.25052,1.1780899999999999,2.6546133333333333,2.0315533333333335,4.75654,4.058375,1.98838,1.639757142857143,3.894195,4.730065,4.70259,6.155543333333334,2.106473333333333,5.13025,4.78803,3.869865,2.29422,4.21578,5.946479999999999,4.757955,2.319635,5.021,2.89541,2.509215,3.863605,4.12859,1.3589133333333334,4.669575,2.46155,2.5184233333333332,4.8469983333333335,4.8469983333333335,4.798805,1.723536,4.75431,0.9249125,1.869144,4.950455,2.56089,1.4341166666666665,3.1553,0.886158,4.311133333333333,5.0564,2.826645,4.913315,3.6735,3.688355,5.232055000000001,3.61281,3.16055,2.7099266666666666,2.4695933333333335,2.749125,2.79374,4.291895,1.5802327472527473,2.9574466666666663,4.494015,4.70008,2.2295808333333333,4.182285,4.494865,4.813881666666667,3.2566400000000004,5.0551,4.88705,5.3251,4.845375,3.520285,3.69849,3.860145,4.457895,5.37705,4.58112,4.841535,4.393865,4.58348,0.7231008333333334,4.70148,4.56298,4.055745,7.957875,4.019795,3.69879,4.125715,4.81464,3.60894,3.62883,2.1198375,4.52309,2.00068,1.3180057142857142,3.85401,2.12436,2.5362066666666667,3.866984,3.0667233333333335,3.2613,1.0630133333333334,1.8277475,4.195655,3.690735,1.9465275,1.9465275,3.450645,1.74504,3.24033,4.514125,3.53823,3.728355,1.5484799999999999,2.105385,3.6753508333333333,1.995325,3.88615,4.44162,4.55942,4.088045,7.186445,2.56145,3.76277,4.428765,4.385405,3.12358,4.207875,4.204685,4.02735,2.05073,2.387773333333333,4.615195,3.87992,3.576635,3.72165,1.6675375,3.66475,4.46725,4.603775,4.143965,3.892665,3.892665,3.1629125,4.122445,4.14538,3.610905,1.5900919999999998,7.6655575,4.053435,4.77623,4.46606,4.331795,4.41549,4.86575,3.04701,3.92256,3.958345,4.811945,1.970372,4.77346,5.200377777777778,5.28655,0.757367,4.888796666666666,1.12297,4.961955,4.40911,4.79236,4.281465,5.23675,3.6160666666666668,3.6160666666666668,0.868514,2.216705,4.871125,3.49366,3.852465,4.708945,5.1782,3.477635,3.96415,1.2889316666666668,2.672925,1.6482875,1.2280275,4.39437,0.865912,2.25171,3.0690633333333337,1.2383533333333332,1.951885,2.7555866666666664,1.2157133333333332,6.33916,1.922935,2.5242033333333334,5.0256,1.9874275,2.752186666666667,3.427585,4.547005,3.5463666666666662,3.0365866666666665,3.9102333333333337,1.7031459999999998,2.0943275,4.109625,0.66927,2.2843933333333335,2.50292,3.1359,2.884733333333333,1.3721142857142856,0.8396499999999999,2.57236,4.274065,1.1443642857142857,2.0043225,1.198815,5.341186666666667,2.22352,4.745915,4.354085,4.33524,4.92403,5.3771,4.06114,4.22102,1.3439666666666668,3.9135666666666666,1.736336,2.5193533333333336,1.1997557142857143,4.567125,1.9967775,6.6873450000000005,4.00817,3.62297,1.551144,6.7281475,3.51002,1.3931966666666666,4.25921,3.004855,3.5425,2.701175,1.98007,1.98007,3.1854566666666666,1.38887,1.38887,2.29422,2.65577,2.135755,1.3421833333333335,3.6255333333333333,1.0706025,3.166346666666667,2.324875,1.9317675,1.4785116666666667,2.2382875,1.951195,0.2907358823529412,2.36457,1.26435,2.347053333333333,2.2038933333333333,2.3135225,1.0577066666666668,1.088696,3.7436000000000003,3.06387,1.98007,1.815895,2.06834,2.5593866666666667,2.578676666666667,1.753724,2.99198,1.07756,3.23175,3.0361499999999997,2.5760566666666667,1.57981,0.964508,2.34397,0.964508,2.34397,0.64952625,0.64952625,0.4955516666666667,2.2277425,2.4326333333333334,0.64952625,2.2522775,2.4625266666666668,2.39552,1.73348,0.78554,0.64952625,0.64952625,1.67705,1.67705,2.1902625,1.815895,0.64952625,2.2941,0.47548307692307695,2.7046200000000002,1.9914533333333333,2.5696766666666666,2.43739,2.43739,0.3896925,0.3896925,2.29422,1.9380220000000001,2.10696,1.9545179999999998,0.3896925,3.5953666666666666,2.521,1.5899480000000001,0.64855625,1.5899480000000001,0.64855625,8.00119,2.605163333333333,3.8981666666666666,2.6587433333333332,2.9605599999999996,3.02018,2.741493333333333,3.4568,2.4957525,1.718525,2.6159399999999997,3.653233333333333,2.4612433333333334,1.67705,2.4345350793650793,2.4345350793650793,2.8411766666666662,2.24908,4.218075,2.3522466666666664,3.3370333333333337,2.7608200000000003,1.5538399999999999,2.45114,2.202785,0.8092972727272727,1.6573875,3.342245,1.72435,3.14887,2.4646766666666666,2.6728,3.8032,1.569265,3.5042333333333335,3.1454866666666668,4.204733333333333,1.287358,0.2809844827586207,1.3579157142857141,1.3579157142857141,0.9994677777777778,2.929346666666667,3.9369333333333336,2.6477233333333334,2.13881,2.13881,2.210985,1.6823666666666668,1.0036,1.8534833333333334,1.8534833333333334,0.64952625,2.29422,2.850616666666667,3.4781333333333335,2.324875,2.13844,2.13844,2.13844,1.0746422222222223,1.4412857142857143,1.4412857142857143,2.3668075,2.6979733333333336,2.6783182512626267,4.01922,2.6898966666666664,2.57719,3.61246,3.922105,7.147935,3.797175,4.03553,3.7644,13.280562499999998,4.58254,3.55087,0.9699525,3.904265,3.2314,2.25333,3.806845,5.15485,6.894093666666667,5.93185,0.4577770588235294,3.575795,3.23425,3.898755,2.449785,4.523985,4.116435,3.605745,8.013735,3.42432,3.92571,4.008175,3.307040454545455,7.919471641025641,3.1376500000000003,2.6625133333333335,3.679195,3.73964,5.00245,4.050575,5.928828,4.418835,1.41607,2.90168,0.93177375,4.57048,5.77275,4.11445,4.059155,5.90565,2.947095,4.90272,4.140405,7.57733,4.06428,4.865375,2.9879599999999997,5.08806,3.15107,0.8777975,0.8777975,3.545065,4.09313,2.193785,2.184735,4.396755,3.93549,3.24614,1.905895,2.79045,3.585215,2.5200533333333333,1.08633375,3.55547,4.503075,8.51383,1.589826,2.8274,3.230095,3.18943,2.7481866666666668,8.41969,4.27796,3.416866666666667,2.56193,3.993045,3.4547000000000003,3.0003766666666665,2.9718066666666663,3.88108,3.933745,4.12887,4.09377,0.409296,1.52626,2.4437133333333336,1.795775,4.67831,3.489985,2.6632233333333333,2.2376625,4.276765,3.81939725,2.1935725,2.588845,0.8747170000000001,2.25825,2.6333933333333333,2.6333933333333333,4.941455,1.959265,2.668176666666667,2.33867,2.0454066666666666,1.8348266666666666,3.035085,3.67915,4.08427,3.915495,5.0376,4.760745,2.87684,2.9555966666666666,1.981722,4.869095,6.0267333333333335,1.9913699999999999,3.0172600000000003,1.95032,2.2296833333333335,3.94844,2.5335,5.037,3.83313,3.575025,4.392565,2.916306666666667,3.642405,4.1562,2.28425,2.4078566666666665,0.42380357142857145,3.4626333333333332,2.58737,2.949645,5.81515,4.622875,5.931039166666666,1.9418825,1.6484166666666666,3.200385,5.49075,6.31695,5.3368,3.007213333333333,2.252196666666667,3.517305,2.3253166666666667,4.29046,2.14094,2.0691325,5.1997,4.723115,4.42938,1.7805925,1.9840775,1.045644,1.045644,1.25214,0.8874871428571429,0.817154,1.897131142857143,4.17595,10.457571666666666,4.098145,4.42152,3.924985,5.658135,2.587715,1.7043266666666668,3.6818675,2.917965,4.02107,2.21276,2.615866666666667,3.149853333333333,3.2100833333333334,2.261223333333333,3.2634933333333334,3.3164533333333335,3.0610466666666665,3.4517333333333333,3.3775666666666666,2.807923333333333,2.82048,3.437333333333333,2.3600766666666666,3.1208566666666666,3.1872966666666667,2.97266,3.3222466666666666,2.0279599999999998,5.241488,3.1485766666666666,4.058094666666667,3.25747,3.0179333333333336,3.7543666666666664,2.846076666666667,2.677513333333333,3.19589,3.2618333333333336,3.4920333333333335,3.156336666666667,1.92927,2.7002733333333335,2.51568,2.883275,2.883275,3.3511,3.0096366666666667,2.71179,2.882006666666667,3.14169,4.230466666666667,2.912793333333333,2.810925,2.6973566666666664,2.9130766666666665,4.305127499999999,5.0558,1.6947666666666665,3.24546,3.9040666666666666,3.4244079999999997,3.2137366666666662,3.7621333333333333,3.2943366666666667,2.6273066666666667,3.4409099999999997,1.9261959999999998,2.5415525,3.5141666666666667,3.3711,2.490536666666667,2.4093466666666665,3.9265666666666665,2.7716,3.0777533333333333,2.3873675,1.01655,3.24292,2.5708166666666665,2.059203333333333,2.5632,3.0082866666666668,3.14266,2.07694,5.643969333333333,2.331836666666667,0.882756,4.473675,1.8826675000000002,1.61317,4.460875,4.116175,3.34151,2.439275,1.53006,3.48376,3.144965,3.368335,0.43648800000000004,2.08655,0.43648800000000004,2.09839,1.53006,2.65459,3.704815,2.434875,3.04742,3.640945,0.4933746666666667,2.852403333333333,0.9046175,0.4401905882352941,3.94144,3.896185,4.85741,2.483955,5.302,4.09227,4.462185,2.21154,3.796466666666667,1.584188,6.34285,3.4907,4.16137,4.840715,2.83168,1.9672566666666667,2.0933966666666666,1.3275966666666668,1.899765,0.9537525,0.9537525,4.62155,2.53502,6.317325,2.2498625,2.088545,2.18381,2.3322777500000003,2.18515,5.56875,4.4140325,2.2288825,2.3454166666666665,2.3322777500000003,2.07011,4.02464525,2.33664125,5.654136666666666,2.2498625,3.345295,3.36682,2.9954300000000003,5.6584,4.44296,1.950315,1.925485,2.3682925,2.650765,4.787475,4.948385,1.9731575,3.817195,1.6453,1.64449,5.33295,10.688225,2.06154,2.1926866666666665,2.2705333333333333,4.29295,4.288485,1.911195,4.511065,4.55594,2.883745,39.212656190476196,2.944176666666667,3.0953666666666666,0.4803872222222222,4.792088333333333,2.197956666666667,0.9775633333333332,4.22623,3.624925,1.8595775,1.74718,2.41214,3.618755,1.2967185714285716,3.0116686666666665,3.95709,4.48501,0.910861,4.415355,4.661895,4.752675,2.6072366666666666,1.5035925,3.7740225,4.519955,3.75434,3.15739,3.671755,3.93057,11.732480454545454,2.715173333333333,3.031525,3.96996,2.660595,4.4094,3.439015,2.902585,3.14685,5.3676,4.79783,4.880005,4.71386,2.494995,3.44676,4.178065,3.66895,4.744065,4.077045,0.11636304347826086,2.367105,4.42757,2.760075,1.43187,1.124025,1.124025,2.28756,2.698165,4.221095,1.374592,2.9801,4.581665,2.625575,4.4891966666666665,0.5832864285714285,4.48372,3.550645,4.800825,4.470855,4.85153,1.3888375,1.2805,4.040466666666666,3.0072799999999997,3.0143566666666666,3.9631428484848485,3.931645,6.081785,5.5625,4.26247,3.491675,2.077671666666667,1.4577616666666666,5.074,0.31327,3.47383,3.823645,4.060855,13.877076666666667,1.90146,3.1311666666666667,0.69709,4.515075,8.370925,3.21673,1.87259,5.73285,3.2697599999999998,1.0593966666666668,4.86214,2.87729,3.075235,4.864215,3.420198111111111,0.96806375,7.731686666666667,0.759125,4.885595,3.214178111111111,1.426275,2.1099494444444447,3.2572150000000004,3.2572150000000004,3.943,4.368818666666667,1.4074625,2.283285,2.90363,3.77157,3.02294,2.467425,3.314645,3.457705,6.735651333333333,6.34025,3.99191,3.36465,4.9839,4.580475,3.912225,3.418765,3.643615,3.738095,4.61878,2.5476733333333335,2.66836,1.5635116666666666,2.4510633333333334,2.3000175,1.569025,3.0867566666666666,3.5431000000000004,3.5504,3.1816933333333335,2.7391966666666665,1.5115699999999999,1.4675066666666667,0.4631454545454545,3.21903,1.4146271428571429,1.81159,3.0523966666666666,2.5982566666666664,2.6400566666666667,0.942755,2.3298725,2.547705,2.98552,3.60303,5.4227,3.857515,3.019065,2.2535666666666665,3.46204,3.945105,2.443,3.41257,1.966825,3.89656,2.842485,4.050275,1.41788,0.634389,2.2287725,3.354785,3.141615,3.94017,4.9356,9.1577,3.1699866666666665,2.1430966666666666,1.7456066666666665,1.717946,1.717946,2.8176466666666666,2.4345166666666667,5.00495,4.276165,3.38727,4.57649,4.23265,4.25959,3.1538858333333333,4.27634,8.3691575,2.42909,0.5078075,3.1683066666666666,1.3005866666666666,1.0358571428571428,1.7869866666666667,0.814606,2.14771,5.1291,5.3215,5.8377275,1.1384025,7.21987,1.961116,1.555445,2.7564733333333336,3.81166,3.4324666666666666,2.320385,3.38156,3.012256666666667,4.0785,2.983223333333333,2.8468966666666664,3.09735,6.8688,2.55562,3.985795,3.71627,3.4534491666666667,1.4188766666666668,1.09672,4.533475,2.8014266666666665,3.167403333333333,5.1036425,2.53366,2.151925,2.3923125,3.40873,3.6626333333333334,2.2674333333333334,4.423353333333333,3.003076666666667,5.37095,2.48588725,1.9087275,4.877965,5.36475,4.30959,4.29906,1.6523033333333332,2.1395,2.05016,3.37006,1.6210933333333333,0.9566816666666668,2.788219166666667,2.1363225,1.9892175,4.2572,0.8306758333333333,5.85877,1.681865,0.765920909090909,3.833,3.90213,0.6576171428571429,2.918596,3.0866012499999997,0.8396499999999999,4.27158,0.18541166666666667,0.18541166666666667,0.18541166666666667,0.18541166666666667,0.18541166666666667,0.18541166666666667,1.971406,3.8816,1.971406,1.971406,1.8351199999999999,0.18541166666666667,0.18541166666666667,3.2885933333333335,2.4836933333333335,3.798025,3.483715,2.31944,3.63811,1.4585000000000001,1.6102820000000002,3.397463,1.415734,3.0453833333333336,2.7231935555555555,5.469106666666667,3.970155,3.84775,6.357,4.447085,4.496565,4.327605,4.191775,7.108402916666667,3.7519333333333336,3.4097000000000004,2.6504366666666668,4.803446666666667,2.6117166666666667,2.093245,1.7058166666666665,4.79079,4.849145,4.67638,5.0862,5.33795,4.312825,4.509485,0.7188763636363636,0.6770442857142857,0.6770442857142857,4.694665,2.3491466666666665,3.895915,1.0300628571428572,4.77786,1.5169142857142857,2.3057,2.58706,4.437133333333334,4.437133333333334,6.7621,4.63725,1.4344666666666666,10.56406,3.2088366666666666,1.2922,5.021,5.12855,3.456635,3.178505,2.66495,4.320233333333333,0.7676733333333333,3.2355933333333335,3.2468533333333336,3.751333333333333,3.03589,1.4957166666666666,1.4550766666666668,4.784719166666667,3.073066666666667,3.0643166666666666,3.423666666666667,5.3083108333333335,3.4013983333333333,0.78598,1.6687833333333335,3.4883333333333333,2.1211716666666667,3.727266666666667,3.4685,3.056126666666667,3.4685666666666664,3.0669766666666667,2.67239,1.0192733333333333,3.0660066666666665,2.6205266666666667,3.405575,3.166325,3.80216,2.7224166666666663,3.427766666666667,2.91165,1.5721159999999998,2.1877066666666667,2.571115238095238,3.494733333333333,1.6979600000000001,3.29701,1.7941666666666667,3.857533333333333,5.120154166666667,4.971168666666666,2.29036,2.676,2.739725,2.4973225,1.6607857142857143,2.35589,3.424271428571429,2.537025,3.7706,2.855365,3.810044333333334,3.055615,1.2252333333333334,1.2961975,1.8509775,2.17839,2.9658333333333338,3.530666666666667,4.968485,7.53392,2.881325,5.2968,3.97703,15.630017666666667,0.46848150000000005,11.234770000000001,0.882568888888889,3.311925,3.1526666666666667,2.651403333333333,2.939515,1.594904,1.501374,2.50157,1.1892099999999999,2.8453113333333335,2.02814,3.023623333333333,2.26858,2.55208,1.52736,0.6780683333333334,3.2638433333333334,2.48328,2.9651099999999997,1.0746422222222223,3.4662,0.7515866666666667,0.3649630769230769,2.9504566666666663,4.03974,4.743135,4.498965,0.7727309090909091,4.147575,4.732925,1.125085,2.4009175,5.500476666666667,3.52184,3.761045,3.98721,3.97692,1.905885,3.989215,2.93529,3.02013,3.66771,2.76119,2.63302,3.883145,3.2797,3.43914,2.51992,3.57618,4.3905,1.1419166666666667,4.34022,2.274905,4.223705,4.958740000000001,2.076995,2.7588899999999996,3.0925766666666665,5.82563,2.5753833333333334,3.24275,5.49335,3.8981666666666666,4.29259,1.8783200000000002,2.602575,4.128375,3.4879333333333338,4.09937,3.4410666666666665,3.114076666666667,2.9793233333333333,3.923166666666667,3.2052133333333335,2.74639,2.79908,0.45405888888888885,2.2939525,2.0359075,4.62219,4.58695,2.897546666666667,2.4985,3.1166300000000002,8.31887,3.47868625,4.11178,2.9528199999999996,3.81188,3.072475,3.6799383333333333,2.61672,2.3367825,2.56635,6.1755,4.630035,2.2378033333333334,3.44819,3.11692,2.7441266666666664,4.436426666666667,1.793912,6.161020000000001,3.863175,4.91591,4.42033,6.10735,3.743305,6.69159,4.178805,3.480655,0.6379971428571428,2.341485,1.562855,2.99635,3.41663,4.230205,3.859305,5.3486,2.72685,4.63441,3.3328933333333333,3.7115666666666667,3.1176399999999997,4.384345,4.538485,4.74365,2.5750533333333334,5.461318333333333,4.40146,1.5494700000000001,5.2377,3.686855,2.90808,2.23472,2.3328266666666666,4.395336,1.0938328571428573,2.44708,2.03383,4.0581,4.61192,2.43572,3.2931933333333334,3.063047,2.34678,3.831765,1.357404,2.3580200000000002,2.3833866666666665,2.89818,2.6114566666666668,2.6548333333333334,2.7687399999999998,4.09834,3.0413366666666666,2.7854433333333333,4.009195,2.331185,3.978115,3.605295,1.4945030303030302,1.4945030303030302,4.507695,2.84516,1.830575,1.3929675,2.25232,1.96928,1.339972,1.4464766666666666,0.66467,1.6342466666666666,1.5028433333333335,2.76788,2.293336666666667,1.7716733333333332,1.9986466666666667,2.3602333333333334,1.4963833333333334,1.7922066666666667,1.8468933333333333,2.3543475,4.471915,2.90669,2.83722,2.7224,5.710375,2.987975,4.454595,3.9215683333333335,1.995795,3.803085,2.78598,1.8846,3.53614,2.0685125,2.93843,3.661645,1.9353425,4.45015,3.059015,4.176305,3.4194333333333335,0.8038655555555556,4.37238,3.91194,3.436645,3.825825,2.5791333333333335,4.430515,4.597195,4.97135875,9.178818333333332,3.29026,4.462665,3.0432366666666666,3.684545,4.43644,2.473125,2.56733,4.032585,2.1200925,5.960095,1.844038,2.71369,6.615098333333334,2.83732,4.1838820000000005,1.2218357142857141,4.3742,4.380595,3.07112,4.91909,4.734615,6.415979999999999,16.092816428571428,0.6319,1.0577066666666668,2.9651366666666665,3.838125,3.810325,2.2179475,3.479555,4.119215,4.988325,2.51143,4.677105,1.6843166666666667,1.6843166666666667,5.30235,0.7678981818181818,1.7330660000000002,2.9557,4.01777,0.3737076923076923,2.00009,3.9910293333333335,1.197995,3.0365033333333336,2.7587499999999996,3.1212,8.08509,2.5672099999999998,3.5088333333333335,1.9572966666666665,2.228893333333333,3.6882975,3.538375,3.5109,6.83501,1.89641,2.83905,4.617735,6.7246425,1.8190166666666665,2.31501,2.6279966666666668,1.3937733333333335,2.44152,1.63295375,4.07196,3.73851,1.49125,1.9438689999999998,1.9438689999999998,2.9930566666666665,5.54975,3.9503049999999997,3.88452,4.46864,4.632905,3.063835,3.896115,4.058315,3.691045,4.550465,3.4441550000000003,4.356115,0.872171,0.3795925,5.33925,3.933515,2.5328866666666667,8.23618,1.62084,4.7069,4.059085,0.36665083333333337,1.9674166666666668,1.3956866666666665,1.8681933333333334,1.8585833333333335,5.399056,3.14969,3.212995,4.530985,4.36479,4.708165,0.598226923076923,2.011755,0.604323,5.845703333333333,1.410538,4.831225,2.0540425,3.2355487499999995,3.33676,4.2301,4.274295,5.1867,0.8857081818181818,3.103955,4.118575,2.0193775,1.7348575,3.7282,3.21952,3.411675,3.8794312499999997,5.372319047619047,4.541955,5.51295,2.8164200000000004,0.5831133333333334,3.4171666666666667,3.73679,0.571263076923077,3.903445,4.21185,4.071235,2.908145,2.754936666666667,5.2103,3.307845,3.78042,2.21555,4.029,1.7800619999999998,3.7608,3.868,0.6515484615384615,4.02929,4.205655,3.28085,3.798455,4.46417,2.583055,3.916735,0.645157,2.9875966666666667,3.7322655555555557,4.446865,3.3813999999999997,2.4397425,3.490266666666667,2.4397425,4.67906,3.105255,3.06181,1.4789333333333332,3.10218,1.8012975,4.309695,2.85144,5.135293333333333,3.16775,2.7606,3.1544666666666665,2.5144576785714285,2.5144576785714285,2.5144576785714285,2.2586566666666665,0.9968866666666667,4.55394,2.5072266666666665,1.7241733333333331,3.7358333333333333,2.5277333333333334,3.065913333333333,4.110385,5.0961,3.511415,2.0344325,1.564724,4.109945,1.876114,2.1479866666666667,3.08942,2.97072,2.0894225,3.529755,2.77831,1.734368,4.70873,4.30538,3.386595,3.73965,0.7449611111111111,2.4644933333333334,4.13495,7.82159,4.053615,2.98726,2.57644,3.520555,3.84334,1.7603075,2.33857,4.53329,2.20032,4.40222,3.37721,4.480315,8.51937,4.03531,3.51301,3.383725,4.836665,4.060545,3.2434624999999997,3.2434624999999997,3.44921,3.9404033333333333,4.20535,4.252255,4.281135,4.60825,4.136925,1.115215,4.424215,4.109865,5.1671,8.217130000000001,4.99497,3.697516666666667,1.9336566666666668,1.4571283333333334,2.40214375,5.06865,3.572275,4.86131,2.5456966666666667,4.309025,4.746255,5.2463,4.591625,3.0089966666666665,3.78741,4.079375,5.104,4.56709,3.601565,6.85471,4.75716,2.33366,4.800505,3.693765,4.07032,3.577265,4.74495,0.8159781818181817,4.05765,4.23947,1.2412114285714286,1.335634,4.7319,4.914585,8.4783615,5.31805,5.1837,6.25215,2.997255,2.6338933333333334,5.1321,1.86129,1.86129,2.62941,1.6796666666666666,3.0410291666666667,3.3744666666666667,2.0527575,4.461538181818182,1.3950066666666665,2.05087,5.6380275,3.3694216666666668,3.66184,3.13855,4.05517,4.357655,3.0863099999999997,1.0004077777777778,4.06097,2.768406666666667,4.02132,4.22319,3.7788983333333332,5.7865,5.68635,5.28465,4.65687,4.88762,6.4842,4.69463,3.277075,3.443925,1.90573,1.90573,3.88242,4.073055,2.4798666666666667,2.89434,2.108553484848485,2.7044633333333334,1.9978466666666668,1.9978466666666668,3.94847,3.515165,2.17072,3.592675,2.78625,1.89629,1.228635,1.2966555555555557,2.865645,0.45910473684210523,0.8269044444444444,2.76102,3.75244,0.4502654545454545,3.717915,1.802724,5.58515,3.492015,6.9399750000000004,4.285035,5.3077733333333335,4.91334,5.2094,4.199995,1.957465,1.8288579999999999,4.518,2.977405,3.680955,1.26221,3.774195,4.693705,2.719485,2.59566,2.766575,4.325925,3.567345,3.29105,4.03724,3.822705,3.48627,3.40405,1.0257628571428572,1.903865,2.21657,2.985725,4.403145,7.78864,0.9360139999999999,1.5787699999999998,1.5787699999999998,1.762436,3.92313,2.89886,3.035705,5.1514175,2.91527,1.17416,1.17416,1.17416,2.859125,3.098948,4.88228,3.253645,4.289685,3.388505,3.791765,2.97748,3.18822,3.633015,4.049743749999999,2.89628,1.339972,3.141325,2.89628,3.48232,1.4924466666666667,1.7637966666666667,1.922445,5.553638,3.023775,6.386603,5.553638,3.3628280000000004,1.6612016666666665,1.6612016666666665,2.38051,5.31873,1.6612016666666665,2.33752,5.75601,2.17337,2.77948,5.69009,3.63343,4.02875,2.0366466666666665,3.30555,4.01502,2.3101033333333336,2.28395,3.84838,2.0366466666666665,2.63366,1.862665,5.89229,2.397235,1.19612,2.471575,3.412275,3.1867128333333334,1.978395,1.9731394999999998,4.31534,1.8408253333333335,1.71809,3.05952,2.30345,3.077455,3.84238,2.255123333333333,3.18692,2.193065,7.0169,2.155545,3.267685,3.41066,3.41066,8.859869999999999,0.84038,2.880775,2.507435,3.260285,2.30346,1.3441433333333332,1.3441433333333332,3.41754,1.852165,6.4818750000000005,2.177055,3.59631,2.82015,5.7127,2.566325,2.746035,5.954435,5.954435,2.55223,1.46976,1.22607,1.22607,1.46976,2.1326733333333334,1.4650833333333333,1.1904616666666665,1.5294966666666667,1.9234866666666666,3.847095,1.738425,3.23145,2.83427,2.987825,2.796135,2.84303,2.62462,3.1704049999999997,3.1704049999999997,6.0434,2.37394,2.97981,3.224235,2.898705,2.57116,2.827425,2.58327,5.7187925,1.9054325,1.4457503333333332,1.249577,2.0687753333333334,5.38746,3.924348666666667,3.2977966666666667,3.245835,1.748225,1.748225,1.748225,4.62225,2.700415,1.1904616666666665,3.26098,3.591665,1.2576675,5.3823175,3.13083,6.01332,3.55165,1.702965,3.293855,2.7403733333333338,2.067575,3.56911,4.35379,3.57434,1.712975,2.280085,3.41833,3.31323,5.24738,2.080885,3.27305,2.869695,5.60815,4.56778,1.903945,2.28394,5.0981,5.27082,4.98104,6.17698,1.025816,1.025816,3.106141,3.106141,0.745896,5.17986,3.55706,5.6166,4.29362,5.06197,2.299695,4.110588333333333,4.110588333333333,1.9321,3.33728,3.94994,1.202408,4.29461,3.263395,3.14761,2.826105,4.86218,2.49842,2.224475,3.66003,2.870845,3.0655,4.82666,2.558435,1.86168,3.730425,6.25412,5.47114,4.3772,2.549145,4.0114,2.735225,5.69656,2.71949,3.68508,2.136495,6.91619,3.77299,2.23187,2.86119,2.363515,5.03824,2.263605,2.753665,2.95205,6.96796,4.79224,3.16378,2.299295,2.6275,6.58298,3.026435,3.40434,4.66932,2.953295,2.96494,2.71601,3.09194,2.081166666666667,1.97651,1.79929,1.6038,1.82927,2.0045033333333335,1.69543,1.9810966666666667,1.713235,2.081166666666667,3.8096,3.90828,2.23808,1.745495,1.745495,3.7657566666666664,3.7657566666666664,2.82321,2.82321,2.76443,2.174665,1.752695,3.78544,2.26594,2.26594,2.451355,2.451355,3.14726,1.880405,4.6755,2.26762,3.164355,2.03558,2.03558,1.793745,3.92994,4.56017,1.4924466666666667,4.70064,2.255123333333333,2.112405,4.78167,3.072485,1.874855,2.358585,6.42435,2.25153,6.09759,3.001955,3.29968,3.018255,2.41827,6.27177,3.04272,1.900075,2.6790980769230766,2.86465,5.83243,3.45964,1.51644,1.51644,3.92745,4.93702,4.66258,5.29177,2.85191,2.78972,1.75463,2.969145,1.75911,2.738445,1.921865,0.736566,0.736566,0.736566,1.9957941666666668,4.755826666666667,1.9957941666666668,2.04845,3.396485,1.66677,2.10772,4.88776,3.44022,5.24831,1.6733099999999999,5.21269,1.6733099999999999,1.6733099999999999,2.327535,2.28016,2.75675,5.88749,2.75675,2.39759,3.73671,2.18311,1.741125,2.840665,3.0448866666666667,3.316235,3.1882633333333334,3.89084,1.2712333333333332,4.14365,0.6655663636363637,4.58623,4.36288,2.992835,2.992835,0.6291381818181818,3.8516333333333335,2.63417,5.64765,5.0191,4.24469,5.04535,4.014345,3.91783,4.871625,4.308245,4.284185,3.668945,3.93399,4.56883,4.98147,3.552995,3.20839,3.74767,2.436706666666667,1.2089880000000002,4.413325,3.520575,3.27605,1.4010414285714285,3.940085,4.256095,6.49362,1.29852,4.983995,4.326095,2.192085,1.948295,3.318595,3.63499,1.65418,1.51644,3.917235,4.23018,2.724455,4.797745,3.076435,1.15193,2.8577600000000003,1.1413614285714286,3.068426666666667,2.16088,2.992366666666667,1.9228675,2.5739533333333333,4.14893,3.41845,4.531115,3.18493,2.1788675,4.73306,4.40651,3.172965,5.2309,4.418025,2.768776666666667,6.1388,4.303505,3.259951666666667,2.63081,2.43785,2.9324600000000003,2.769686666666667,2.7049033333333337,4.8265,4.237645,3.886025,2.577573333333333,2.627213333333333,2.4657433333333336,2.62368,2.380063333333333,2.38471,2.36305,2.3168275,1.47704,2.972337333333334,1.2406475,1.8015525,1.8891275,2.7472,1.6124575,2.04718,4.055325,5.3061,1.9976775,4.179225,3.583175,6.528788333333333,2.1292433333333336,1.621836,6.6973,3.95413,4.396615,3.877575,3.79212,2.01118,3.42325,2.4188425,2.8868,4.419735,0.7281583333333334,3.98147,2.0895233333333336,0.7363209090909091,5.05475,4.35498,4.13161,1.843224107142857,4.65804,5.05005,2.76497,2.7496500000000004,2.5270433333333333,2.201966666666667,0.65798,3.0613433333333333,2.8383,4.632215,2.531,1.97613,3.877165,1.025985,1.88199,1.88199,2.8878,1.88199,4.144085,2.71256,4.45601,4.281285,5.8057,12.573472500000001,3.05993,4.6682,2.683565,4.71368,2.94409,6.66752,2.94937,4.837915,4.52208,3.862005,1.248705,4.830765,2.8327233333333335,2.39423,0.9638811111111111,2.16798,3.491175,7.236426666666667,3.973835,2.65577,4.287185,3.1854566666666666,4.333095,4.59049,4.67523,2.93433,2.88351,4.0635,5.66565,2.56883,4.309575,1.9015175,1.9015175,3.212195,4.650385,1.12672125,3.9065760000000003,2.2541825,4.812665,2.746423333333333,2.3608166666666666,2.71951,2.34346,0.661335,3.42486,2.7739833333333332,5.1712,4.410595,0.2196678125,5.2153,4.539685,4.14911,6.790381666666667,3.1235133333333334,2.9502133333333336,2.0460433333333334,3.320123333333333,3.24062,1.4559066666666667,2.9502633333333335,2.6841866666666667,1.4204116666666666,3.2235766666666668,3.30137,2.5912266666666666,3.3584333333333336,1.2691916666666667,4.311805,2.31914,4.962555,4.39675,4.08105,1.61711,2.539963333333333,1.3198325,1.879975,1.3198325,4.60513,3.5379666666666663,1.5842800000000001,2.28033,3.987365,3.870205,3.067035,3.934095,0.3673105,1.3308670833333334,3.931725,4.301465,5.692,1.87664,2.6902666666666666,3.2164633333333335,2.3925266666666665,2.478225,3.34505,4.34297,2.2819425,2.0943866666666664,2.6235566666666665,2.7428166666666667,2.76827,4.581655,2.106595,4.192675,3.841931666666667,5.94385,7.5249925,0.7425844444444444,0.849801,3.772605,6.431865,1.9621140000000001,3.571145,1.5105766666666667,1.5105766666666667,3.433115,0.43979444444444443,3.68969,4.130785,2.66697,4.05423,3.252145,2.59209,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,2.444685,2.928215,4.5244800000000005,3.392745,4.8454274999999996,6.5075825,3.18882,2.1712966666666667,0.945665,3.72849,0.7895425,5.350981666666667,3.179685,2.230235,0.7895425,2.494505,2.728,1.0636725,3.8907625,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,4.304835,1.61819,4.2504,4.637715,1.6899339999999998,4.55533,3.966105,5.24455,4.64571,3.580058928571429,3.456275,4.355925,2.2594125,4.8616,4.19789,0.7419714285714286,1.3196514285714287,1.3043542857142858,3.5065333333333335,3.5065333333333335,2.872323333333333,3.85712,4.225615,3.43729,3.914005,3.1149466666666665,2.0167733333333335,0.5727257142857143,4.141615,3.341705,2.694745,4.118285,3.38825,3.0372524999999997,4.632105,4.40625,6.663797499999999,4.29517,4.703075,5.53855,4.64849,1.2338157142857145,3.11573,5.267623333333333,33.39456003282829,1.1436666666666666,4.00668,3.500635,4.63458,4.16355,4.564645,5.02085,0.4169652380952381,5.02215,4.34994,1.93701,1.853745,3.925205,1.6200975,2.660705,2.110795,1.7594375,2.8698,2.578676666666667,2.952015,2.99128,0.6259769230769231,3.26744,3.878095,0.38142473684210526,2.5588266666666666,2.79899,2.823575,3.94092,1.861705,4.52648,4.01661,2.90467,3.538285,3.239635,4.54084,2.88297,3.86999,2.092425,5.267623333333333,3.58242,3.40045,2.820525,1.6144939999999999,4.307835,3.47483,6.904945,3.526605,4.556395,5.5795225,5.340192,2.2723075,4.452835,6.2446850000000005,7.517008000000001,2.5330966666666668,2.630745,4.5732,5.760233333333334,3.839535,3.324615,5.425921666666667,2.65825,1.83009,2.210855,60.21881999957001,4.896265,3.80837,2.52575,0.9314640000000001,2.67623,2.8495933333333334,3.24342,0.7816033333333334,4.73127,0.7785788888888888,7.840913928571428,1.876114,3.2637733333333334,1.87473,2.74852,2.51507,2.669696666666667,2.498423333333333,2.3175433333333335,3.11477,1.48316,5.8267058333333335,4.205433333333334,1.6212725,2.5536066666666666,1.3864733333333332,1.4602625,7.70985,5.84335,3.271415,5.25655,4.8614675,1.4673,3.6469666666666662,3.347565,1.6738075,4.83149,3.65197,4.01657,1.7787575,2.8736083333333333,3.6735333333333333,4.14067,5.68485,4.297235,4.366235,2.10507,3.84908,4.572066666666667,3.0292333333333334,1.426084,4.073505,3.3462,4.17657,4.886995,4.066865,3.79833,4.47088,4.378995,4.376685,4.54791,3.977175,3.11187,3.56952,4.1843,3.270445,4.138165,3.68767,1.505375,1.505375,4.496235,4.766755,5.45755,3.475665,4.72919,3.514533333333333,2.86181,4.85775,4.979785,0.7116681818181818,5.31,6.381805,5.49875,5.656,0.9266944444444444,2.918725,0.9693166666666667,0.9693166666666667,0.9693166666666667,4.03305,3.476766666666667,2.41708,3.3282066666666665,0.9382529999999999,4.941225,5.0287,2.835365,1.5649925,1.9417825,4.03456,3.882655,3.784165,3.3597919999999997,6.5782,3.91992,2.5939566666666667,4.54699,6.80395,2.407055,4.187765,3.78955,3.27688,5.3284,4.53327,4.723315,5.7742,3.128105,3.3948911111111113,2.0886633333333333,2.0886633333333333,0.7324154545454546,8.665596,2.10353,5.8933,5.34995,4.452225,4.83236,3.808235,2.9861166666666663,4.5636,7.6573975,5.683878333333333,2.2245133333333333,4.462455,0.9855790000000001,3.79755,1.9739866666666668,0.9030111111111112,1.1344085714285714,2.6743166666666665,3.0254733333333337,2.726036666666667,1.1061642857142857,2.646506666666667,3.0547,0.9080833333333334,2.6490066666666667,2.9979433333333336,1.665892,1.9552340000000001,2.7827300000000004,3.1331399999999996,2.5857733333333335,2.5580133333333333,1.665264,4.66378,4.32215,3.622545,4.239305,4.76887,3.26954,4.77565,6.03445,5.1982,4.285745,3.96227,10.585591666666666,8.48522,2.7184033333333333,3.480345,1.9194766666666665,3.874305,3.252585,4.702805,1.0106266666666668,3.714235,3.20627,1.4341283333333334,3.808595,2.985765,4.348825,3.132,3.93747,6.9003,7.500616666666667,3.928635,1.49921,1.49921,1.49921,4.728155,1.1573983333333333,1.42155,0.4478572222222222,4.178895,2.9910099999999997,3.5773,0.9179169999999999,1.12979875,3.040415,4.31915,3.72207,16.417528738095235,4.2454350000000005,4.722475,5.999085,2.695316666666667,3.41739,2.9864,0.9207877777777776,1.3998125,4.04621,3.642485,4.410905,3.952425,4.47261,3.76744,2.762824222222222,3.564155,5.3556,0.5795600000000001,4.55896,2.333615,4.027945,4.907115,3.312003333333333,2.53129,3.9116866666666668,1.6682,4.241765,5.7003,2.86533,2.882025,3.945885,3.91364,4.38336,4.054505,3.688545,4.2156,4.646325,4.79614,3.817425,4.526515,3.943475,1.0632685714285715,1.79292,6.5528960000000005,5.92815,4.60015,5.2637,2.5831,2.7675533333333333,2.783993333333333,5.45206,1.91327,2.304575,3.1443366666666663,3.002273333333333,3.2474066666666666,4.49806,3.11365,5.232128333333334,1.221595,4.543355,0.9340616666666667,4.04769,3.43514,1.6980533333333332,4.356305,1.0047811111111111,4.79249,5.38485,4.779255,4.219815,3.801223333333333,3.96583,2.8746066666666668,4.92758,5.78235,2.8649045,4.085775,2.41889,2.65932,2.08256,2.572595,3.53153,4.97135,1.0706025,4.5446425,1.3747175,3.375895,1.6057333333333332,1.0706025,0.24498756756756754,3.60781,3.078875,2.2703258333333336,1.9193966666666666,2.74027,1.115815,3.91656,3.45385,4.869155,2.6743,6.5001,6.883347500000001,2.7693966666666667,3.1968,2.8051399999999997,0.871891,2.3837333333333333,6.22985,4.25229,5.3396,4.51146,2.2064166666666667,1.4260599999999999,3.8255725,1.683525,2.24547,1.6648725,1.7407825,1.75771,1.94365,2.1586325,2.1136625,1.87502,1.3534457142857141,1.4443375,2.0169275,2.6473,2.20226,2.31543,0.5335946666666668,1.802054,2.7211700000000003,2.9565966666666665,1.922935,1.8939366666666666,1.5947275,4.063075,2.29737,2.647585,3.11995,5.6617,3.23879,2.5242333333333336,3.890865,1.6685613235294117,3.867095,24.4716825,4.49585,5.3835,4.50852,2.3749466666666668,4.019545,4.937605,2.324735,4.873825,3.246396666666667,0.7715475,3.11674,4.651785,4.20641,4.190455,1.61574,1.99183,2.5080966666666664,2.118645,1.3939385714285712,3.2361166666666663,5.31545,4.316745,3.19022,4.042315,4.90454,4.184165,4.874205,1.196255,3.00382,4.14138,4.25478,1.6749040000000002,2.96945,1.84493,1.84493,3.69103,4.684185,2.83363,2.844086666666667,4.197875,3.913165,6.8570174999999995,4.31932,2.463165,1.3998125,2.885645,4.377205,3.166346666666667,2.4345350793650793,2.4345350793650793,3.274383333333333,4.816185,4.02961,5.445049444444444,2.39637,3.2864008888888887,0.6206588888888889,0.6206588888888889,0.6206588888888889,3.56466,3.84501,4.029105,5.5767,2.1587125,5.2549,5.0339,4.752645,3.293305,5.03875,3.045925,1.4649714285714286,3.88847,4.46307,0.4918014285714286,4.2598,4.931075,1.5201333333333331,5.3881,5.08535,4.66156,4.007235,3.930385,3.07014,4.64995,1.705126,4.448255,1.5987799999999999,3.86724,5.7446,1.1601325,3.11452,7.593209999999999,4.040835,3.2857800000000004,2.3433175,4.055915,5.5707,3.25178,6.95706,4.228125,2.309743333333333,3.0075000000000003,2.75099,2.6496866666666667,2.977513333333333,1.9469133333333335,4.69263,0.5889983333333334,1.8016649999999998,1.8016649999999998,3.1302,4.45827,2.376225,3.020185,4.596835,4.957685,4.253945,1.40836,4.982694238095238,4.35032,4.89613,3.49172,3.811710333333333,3.357813,0.4538973333333333,2.618753285714286,1.03996625,0.4538973333333333,4.39596,0.8926444444444444,4.13176,4.01813,6.559342,2.2529766666666666,1.055665,1.168258,2.325245,3.02701,1.5442166666666666,2.4769166666666664,3.39612,3.43685,2.1810566666666666,2.4415066666666667,4.34409,3.07222375,3.96957,5.86,3.695985,4.890295,6.866563333333334,4.404015,3.677575,4.50567,3.807675,4.624375,4.95442,5.6889275,5.44365,2.469203333333333,0.9166255555555556,3.94773,4.10226,3.827155,4.5653,4.29802,4.78172,2.67079,2.5618933333333334,3.15082,2.3676866666666667,2.0672866666666665,2.6312133333333336,3.210793333333333,2.4107433333333335,4.156605,4.40941,4.40431,5.3356,2.59487,3.456,2.859075,0.7149071428571429,4.17709,3.665205,4.48715,2.8766033333333336,5.81104,3.268535,4.579385,3.588195,0.5681569230769231,0.539735,4.417145,2.713778,3.18437,4.51992,3.99846,1.6878540000000002,5.1327,3.83791,2.584913333333333,2.7048900000000002,2.2861525,2.106772916666667,3.7673,3.0064466666666667,3.0333799999999997,2.9194066666666667,3.6134,2.640425,3.3341999999999996,3.7511666666666668,4.33317,0.580714375,0.580714375,0.580714375,3.3737917083333335,3.6353333333333335,3.6833333333333336,2.5364666666666666,2.6454633333333333,1.115215,3.07966,3.0471966666666668,1.75581,2.76703,2.3442066666666665,0.9620733333333332,2.9698916666666664,4.712445,10.048903083333332,1.5637610833333333,0.618767,3.874125,0.618767,0.618767,0.618767,0.618767,2.2001275,4.102414,3.966435,5.01695,5.89755,2.815436666666667,2.7210199999999998,3.1267612499999995,3.4932749999999997,5.14125,1.28082,2.2825,3.17175,2.6446866666666664,3.1839566666666665,4.03632,2.2454233333333335,3.66202,1.1654,4.652885,3.66351,3.45488,0.86028,0.632288,0.632288,0.8960845217391304,1.7563645217391306,0.8960845217391304,0.8960845217391304,0.32254652173913045,0.32254652173913045,0.8960845217391304,1.5675866666666665,2.59543,3.262575,3.0554900000000003,2.5966400000000003,2.598876666666667,3.31683,2.80205,4.660705,3.786405,1.90482,2.2764366666666667,1.78326,0.18548568298969073,0.18548568298969073,0.18548568298969073,0.18548568298969073,2.5677033333333332,2.6184133333333333,0.874676,4.699845,0.7475509090909092,1.6869140000000002,4.6600649999999995,5.1684,3.974995,2.801125,4.500705,3.28313,1.7712166666666667,1.239095,3.6615,4.49783,6.20855,2.27214,1.3998866666666665,1.9254499999999999,3.6694333333333335,1.5230066666666666,2.7801733333333334,2.8664733333333334,2.94518,4.40776,3.895885,3.1129,4.70589,2.3333333333333335,4.016605,5.33995,3.72299,4.507225,4.682025,5.315273333333334,4.123068333333333,2.9998714285714287,5.0262649999999995,4.23869,6.0911,4.189155,4.49468,2.1880425,3.09504,4.2124,4.8377,4.542645,4.16718,3.539875,3.67317,3.90968,2.47885,5.0475,3.747995,7.8054325,5.84135,5.7301,4.964125,1.493342857142857,0.948489,0.6285469230769232,1.78624,4.430705,5.2867,4.042195,1.551654,4.321925,3.04938,4.832765,5.17945,6.20772,4.298725,3.21482,1.742036,5.3638925,3.969605,3.175995,1.6604975,0.9782375,3.94476,3.57542,3.4917024999999997,3.744585,2.213,4.83675,1.6454566666666668,2.9670733333333335,2.513935,4.25418,5.36595,4.92542,2.17866,1.50237,5.45185,2.97233,8.94224,2.796375,4.803885,5.83435,4.19495,5.07875,3.659385,4.80044,2.2352625,3.86871,4.795711000000001,2.3454725,4.44237,4.398405,7.4123850000000004,4.8472,3.1289166666666666,3.7325,3.95604,3.07222375,3.679515,5.1855,5.5454,2.258145,3.0417466666666666,3.2524766666666665,2.35961,2.544125,4.441235,5.4533,5.08315,4.596355,4.985945,4.09041,5.32655,0.6209723076923077,3.2837666666666667,1.21508,31.025429944120948,2.62686,4.76709,3.02157,4.70641,1.7104399999999997,2.5940566666666665,3.0622086904761905,1.5184911904761904,1.5184911904761904,1.5184911904761904,1.5184911904761904,1.5437175,3.249565,0.4404088888888889,7.6762575,0.4404088888888889,4.93781,5.0441,2.1050125,5.02095,2.711525,3.8367713333333335,2.32368,2.5491,2.8226933333333335,2.2227833333333336,0.6478900000000001,2.6673566666666666,0.7334341666666666,3.09494,2.0988700000000002,2.477588,1.227415,2.477588,6.0954,8.025355000000001,4.553975,4.31794,5.82025,5.87305,7.55659,3.200965,1.51411,1.51411,2.38676,4.68365,3.836375,4.40535,5.743614999999999,4.256565,2.845715,4.14811,3.693365,3.448775,2.252865,0.9350759999999999,2.25323,4.041465,3.887505,5.272872222222222,2.02439,4.06131,1.393632,3.213525,1.236172,3.2801233333333335,2.88579,2.2537033333333336,3.2277,3.0999733333333332,4.862515,0.6561869230769232,3.549565,3.5452999999999997,2.486073333333333,2.393336666666667,4.126120625,3.191546666666667,2.3485866666666664,5.11944375,3.809735,4.89899,3.898265,3.72587,5.3336,4.868485,2.1912266666666667,5.7827,2.372529333333333,1.8718700000000001,3.144603333333333,2.3453,2.9388666666666663,2.71599,1.88318,3.193819242424243,4.14207,3.45973875,2.324129,2.324129,2.58632,3.799945,4.10602,0.5202854545454545,3.543975,3.16171,8.79309,0.8902336363636363,4.262955,3.36771,5.49765,3.272825,3.90838,2.210845,3.448535,2.86961,5.898,2.486190833333333,3.980375,2.7412266666666665,4.023985,2.896943333333333,3.704395,3.84621,3.936995,5.210397,3.231495,2.079975,5.2864,2.60932,4.42445,4.54334,4.430765,4.50926,3.95496,2.97678,2.30802,2.77134,2.455016666666667,2.91175,3.2496666666666667,2.784267857142857,4.871861666666667,2.8373233333333334,2.4237266666666666,6.504449166666666,4.8798925,3.9697050000000003,3.132656666666667,3.7081999999999997,4.1628,3.700815,2.139765,3.94299,4.98433,4.411375,1.3806666666666667,4.542945,2.7894433333333333,6.630777500000001,4.79738,8.48590611111111,4.175175,3.529005,2.24921,4.16107,5.875665,7.94505,3.82754,5.46937,3.878865,3.37163,4.06245,1.793912,4.552451,1.4587383333333335,3.872665,4.76195,3.3715666666666664,0.83284,9.314116666666667,1.1747666666666667,1.911955,2.4589733333333332,1.8845733333333332,3.20778,1.3901000000000001,3.762315,3.466405,2.6509133333333335,4.46426,1.1737708333333332,3.927405,1.3496083333333333,2.8627028333333335,4.108145,4.934285,1.752805,5.692264583333333,2.307227,8.09992,4.519495,2.919705,4.043595,3.45511,1.36906375,7.64883,3.01016,3.34392,2.350025,4.2665,2.2336625,3.1526425,2.361905,4.02891,1.376725,5.41285,2.797215,4.24722,0.8673170000000001,1.9955273333333332,3.903755,4.91472,5.36950875,1.3703720000000001,1.3703720000000001,5.90795,4.19348,5.51875,3.837605,3.490075,8.3166,4.337005,5.46055,4.067375,2.493045,2.083320743471582,0.382699,0.1998248387096774,0.6037048387096774,1.0969169047619047,0.6594034101382489,0.1998248387096774,1.3884090000000002,0.40388,1.4796159047619049,1.9921138387096775,1.81056,2.2814525,2.261413333333333,5.03775,6.298048333333333,4.84014,5.36055,4.426375,5.13795,1.3468099999999998,5.01025,4.199695,5.7791,5.3342,5.53665,5.40595,5.80335,5.63585,1.45232,1.6277857142857144,2.0624,6.025696,1.335816,5.6009,4.69025,6.811970416666667,4.886165,5.39765,4.247365,4.503955,2.42522,5.41345,5.48615,4.723531666666666,4.99373,5.85717,5.5453,3.8121425,4.30438,3.8622,0.999489,3.609033333333333,4.340805,1.15751625,3.6425666666666667,5.05405,4.3513025,5.111,2.4314275,3.40193,2.68972,4.441005,2.119165,3.915315,1.29693,3.2226,3.9197,4.207595,4.81864,3.33349625,0.5894375,5.9666,1.06992625,3.576885,2.979813333333333,3.79084,2.0789633333333333,3.87019,3.815754871794872,3.4034333333333335,4.27389,15.069488,5.08019,2.3054725,8.66671,1.5132725,4.154055,3.08268,2.9410633333333336,2.19897,0.21418043478260868,2.84778,4.731745,1.7619599999999997,2.297543333333333,3.4954,1.88398,2.3126,1.2968757142857144,2.978115,4.616195,4.953215,4.522465,0.47837142857142856,2.4185133333333333,4.73601,2.97755,4.219815,4.37194,4.36152,5.20595,0.508170588235294,2.6167633333333336,2.6167633333333336,5.42275,4.308875,4.74371,2.60765,3.794233333333333,3.11652,5.15965,3.845575,5.328642222222222,4.65054,4.34294,4.757555,2.4409325,1.9993459999999998,4.54798,4.12218,3.980115,3.65725,1.76659,4.502765,4.570385,3.832045,4.90614,4.07322,4.226255,0.6138446666666667,3.412975,0.6725458333333334,3.351233333333333,3.20984,4.525595,18.33670142857143,3.70347,4.103705,2.7403733333333338,1.05378625,2.5322299999999998,2.5760566666666667,1.57981,2.378945,2.528395,4.7698,2.2193166666666664,4.070325,4.51567,2.168975,4.5588,2.9045400000000003,4.23573,5.407,5.44255,1.768715,1.855745,2.33707,4.543935,4.935895,1.1516,5.1422,3.50237,5.68105,4.712535,1.7119666666666669,4.71607,3.338195,3.41491,4.3329,3.89017,3.1434433333333334,0.60417,7.887113333333334,1.452466,0.19304027777777777,0.19304027777777777,0.19304027777777777,4.74556,4.050895,2.713173333333333,4.25874,2.788425,4.29803,4.370481428571429,3.7202200000000003,8.640116666666668,4.05305,7.166486666666666,0.900005,0.81438625,2.644875,4.586705,4.26903,2.1230766666666665,5.0876,5.771,3.559835,3.437675,4.43931,2.530953333333333,4.64037,4.5994365,2.347053333333333,3.1991433333333332,3.15307,2.77012,5.87975,3.53883,0.6536585714285714,3.7221,3.26267,4.16461,4.9877400000000005,4.84038,3.17266,5.2717,3.641865,13.709462083333333,4.313665,6.797183666666666,2.636086666666667,6.565482,4.41122,3.62892,1.951195,2.330569166666667,9.5635,2.287036666666667,4.209933333333333,3.9438333333333335,3.702733333333333,2.993653333333333,2.8083066666666667,2.1135025,2.185,3.0754266666666665,1.851372,3.8537666666666666,2.40635,2.5848,3.1783300000000003,3.3788666666666667,2.49794,2.49794,2.56181,3.3971666666666667,3.28431,2.4919100000000003,3.2257700000000002,4.1184,2.840336666666667,2.62562,3.5790666666666664,1.99355,2.1582375,3.7037333333333335,2.921886666666667,1.6631060000000002,4.142833333333333,2.40471,2.62005,2.7750766666666666,2.300145,3.309893333333333,5.572078333333334,2.4914,3.6519333333333335,1.8943466666666666,10.748057333333332,2.04424,1.8094433333333333,2.0514,0.9994677777777778,1.713874,4.67221,2.7202279999999996,2.7202279999999996,1.6362919999999999,1.49423,3.4514466666666666,3.9192533333333333,2.28255,1.4718966666666666,1.7031459999999998,4.373309333333333,3.285216666666667,4.111133333333333,8.241853333333333,2.9593714285714285,2.3348833333333334,3.281917950310559,4.2324,2.1582375,3.2144100000000004,2.98312,3.197243333333333,3.6001475,0.9173375,3.3137774999999996,2.66789,2.8468466666666665,4.00585,2.9029399999999996,0.642480909090909,1.882342619047619,4.870375,2.3887275,3.3131166666666663,1.6121483333333335,1.6121483333333335,2.0685575,3.6677366666666664,1.05032,2.30783,4.722143333333333,4.722143333333333,0.6533285714285715,5.507244,3.419535,3.892985,4.7026,1.25417,3.4191333333333334,3.477233333333333,4.839266666666667,5.899709,2.4867399999999997,0.648054,2.59939,2.6565766666666666,3.0863193333333334,2.2573066666666666,2.49906,2.8816433333333333,2.4958975,2.61354,0.78561,4.438795,4.743230285714286,1.374945,1.5549142857142857,5.1914,2.221645,1.60876,4.14115,1.414566,3.6227,2.51485,3.4997000000000003,8.851115833333333,3.8753900000000003,4.4572,4.7248,2.397301090909091,0.7544190000000001,1.737804,6.93551,1.81081,4.287185,4.10188,3.817655,21.67256641666667,3.12067,1.6350833333333332,1.02790125,3.1909033333333334,1.5004099999999998,4.1838820000000005,5.3491,3.6728165,3.2623266666666666,1.2672833333333333,1.4352333333333334,2.90678,0.51063875,3.21384,3.6373333333333338,2.9889166666666664,2.5468043333333332,2.3933933333333335,2.73297,2.044706666666667,2.871506666666667,1.585418,3.6008333333333336,1.35435,3.91047,4.00219,2.385623333333333,5.2047,3.37415,4.373825,4.99063,4.491435,3.0134399999999997,2.69895,2.44809,1.0981914285714285,1.0981914285714285,1.0981914285714285,2.2869425,3.167143333333333,2.6887366666666668,2.53673,2.3901166666666667,1.8225325,4.242575,4.32201,3.73406,6.762135,3.241835,2.46283,1.9333325,1.0025433333333333,2.51941,4.010685,2.53117,2.7327366666666664,2.380523333333333,2.4891666666666667,2.6147633333333333,2.8687133333333334,3.0096266666666662,2.6863233333333336,2.54692,3.257656666666667,1.96905,2.182345,1.8015575,1.503355,3.121676666666667,2.7881199999999997,2.08494,3.95513,5.17185,2.61654,2.2735038461538464,5.740573333333334,4.07779,4.510975,5.411,4.34989,4.321565,5.8565700000000005,1.2073025,4.141515,2.726585,5.0526,5.0046,3.543405,3.63188,2.2114425,7.531535,2.062685,0.8239191666666666,7.67443,5.12567,5.830349285714286,4.693625,2.8090662500000003,1.724165,5.0745,4.248315,4.498915,5.1416,2.54343,4.00016,4.224375,1.78326,3.80664,2.70495,1.3126233333333335,4.7551,0.6029705882352941,4.078285,3.47507,4.613205,2.677775,1.808165,3.187695,2.00387,1.3988125,2.94806,3.23306,3.1036466666666667,6.907101282051283,1.343585,6.39271375,9.66647,5.030135,3.19365,1.3039671428571429,2.85121,1.3039671428571429,2.9163933333333336,2.1981633333333335,0.31531470588235294,1.204402205882353,0.31531470588235294,0.31531470588235294,0.31531470588235294,1.204402205882353,1.204402205882353,0.31531470588235294,0.8890875,4.217285,3.48597,3.200105,3.44331,3.75907,3.853375,2.6639903333333335,1.6696079999999998,6.765788333333333,2.771076666666667,4.14217,2.4577766666666667,1.042290909090909,1.18978,4.549495,3.79886,1.0792388888888889,1.54047,0.7170609090909091,3.037131883116883,4.261595,5.1783,3.4334333333333333,5.628158333333333,0.49604384615384617,4.101125,2.90873375,2.91142,2.622923333333333,3.423033333333333,2.5125266666666666,2.821676666666667,2.8048133333333336,3.190825,3.714275,5.39725,4.580985,2.01272,4.78035,4.256445,3.280455,3.771815,3.37294,0.3764126666666667,4.44917,3.66259,3.173475,2.9104140000000003,4.379105,3.936785,1.90865,3.742975,3.94489,8.010064999999999,5.13445,5.46565,4.540775,4.2442925,1.0115425,2.179065,2.173435,1.52102,1.8351199999999999,4.44896,5.5808,4.300345,4.40133,3.3597919999999997,2.70185,0.9728733333333334,4.49849,1.2299383333333334,1.16602,3.277905,3.79497,4.55598,1.2130625,2.569453333333333,8.69055,3.10047,3.1066000000000003,0.88425,3.63146,11.750796666666666,3.54479,4.1549,3.22913,2.956395,4.557585,5.0434,2.04116,4.125425,0.5534446153846153,4.803355,2.2522775,1.7589475,1.7589475,3.5453333333333332,4.137955,1.6361033333333335,4.496645,1.4625714285714284,3.99961,2.6691175,3.07525,4.77462,3.610765,3.8762186666666665,2.5265,2.9244736666666666,2.9244736666666666,10.811905,0.786599,3.107015,3.350566666666667,2.1084375,2.04354,0.8116142857142857,1.4142025,1.17095,2.05322,4.53966,2.46176,4.2934025,2.08162,4.3226,4.23462,1.618085,2.064465,1.04424,5.952085666666667,2.04587,2.144265,1.584188,1.59579,1.02790125,2.1734729166666664,3.71785,2.3728533333333335,2.9907066666666666,2.4991333333333334,2.6431033333333334,1.87355,3.145626666666667,2.6556133333333336,1.5788966666666668,1.8618866666666667,2.83039,3.0827000000000004,2.501106666666667,1.13577,2.549236666666667,2.0082400000000002,2.7055900000000004,0.3282978947368421,0.40288083333333335,2.3564666666666665,2.22912,3.198735,3.14233,2.82612,4.76323,5.6363,4.53447,4.613835,4.44373,4.007115,2.7590966666666668,3.75551,0.7012709090909092,0.06587568181818182,6.7987,0.06587568181818182,3.53148,3.208475,5.28675,3.61545,6.124,4.695395,2.140406666666667,2.60007,0.98233,5.6419,6.0376,3.1242900000000002,5.11525,1.9351425,4.047985,2.0551615217391306,2.9095366666666664,3.2802933333333333,4.293525,4.854375,3.236865,2.25671,2.25671,4.140845,7.715,3.91255,2.2005433333333335,2.4622533333333334,3.956525,2.768075,4.835425,3.65856,0.9874066666666665,3.69823,2.3970266666666666,2.77378,4.421915,1.0464366666666667,2.4545133333333333,3.909025,3.556705,4.595165,2.92633,2.821805,4.199695,4.01015,4.363315,5.21545,4.273955,3.126815277777778,3.81132,2.7686266666666666,2.7440233333333333,2.6592100000000003,3.5096666666666665,4.37659,2.7981133333333332,5.0091383333333335,4.346,3.799845,5.29215,4.30523,3.69197,1.5150359999999998,1.362985,4.005785,3.2144,1.53276,2.7635166666666664,3.31425,3.0593466666666664,3.7341022222222224,2.8915433333333334,2.156915833333333,12.758678027777778,2.0920366666666665,1.7445599999999999,4.12797,1.0069279999999998,3.3105666666666664,3.610835,4.780045,3.1154,1.1421777777777777,2.2648333333333333,2.6743,1.461984,5.4699,0.9705625,0.9705625,3.775733333333333,1.5488666666666668,2.2268666666666665,1.6002925,3.436795,5.09935,1.94795,2.68835,3.3386766666666667,3.05132,2.8165,2.06998,6.73525,6.58665,3.51721,0.7017853846153846,3.80013,3.543685,0.945509090909091,5.2633,3.1488099999999997,8.20891,4.484565,4.76761,3.66811,1.4848925,3.31921,4.80524,4.70792,4.190875,3.747305,4.27461,3.236085,3.5695,3.5695,3.90698,2.7828316666666666,4.602335,1.763605,5.366234166666667,5.015443333333333,1.5201333333333331,4.370275,1.0029299999999999,5.1667,4.04394,4.96597,4.637395,3.94424,2.76326,2.5248,4.04386,4.39466,4.619385,4.1063,1.929695,1.409378,4.047385,2.0997533333333336,5.39705,3.127235,3.506935,7.036205000000001,3.980545,4.35667,5.08085,3.66992,4.161235,8.471,3.772285,3.02647,9.64282,3.49282,0.5875807142857142,2.0179456715506716,4.57308,0.628804,4.50174,3.95311,4.76644,4.604965,3.277145,3.684955,4.55439,4.45574,2.4313125,0.7101328571428571,4.639755,4.371835,4.072505,4.3083,2.5586033333333336,4.364305,3.378895,0.664112,3.507725,3.94608,2.481945,3.082603333333333,3.597025,2.1533458333333333,5.55715,5.04905,3.8919675,3.2431666666666668,5.704666666666666,5.704666666666666,8.621736666666667,2.04164,0.89343,0.89343,23.745203333333333,2.807675,8.114508333333333,0.36665083333333337,1.3956866666666665,2.965203333333333,0.9831670000000001,3.79272,3.8832,2.0112475,2.0112475,4.025095,4.836605,3.596035,2.7019458333333333,2.7019458333333333,3.47811,3.96862,4.103945,3.1299833333333336,2.1181033333333334,2.504055833333333,4.000328,2.071635,3.59778,2.7109,2.8294571428571427,2.8294571428571427,3.26746,0.8737133333333333,2.50979,1.52407,3.1829199999999997,2.8868533333333333,2.8252900000000003,2.4636533333333333,4.09705,2.43083,3.1050566666666666,5.0834410000000005,1.3558759999999999,2.25266,3.181755,2.61029,3.93174,5.760283777777777,1.1953166666666666,3.7063333333333333,2.4052775,5.09605,6.48286,1.5651725,4.857583333333333,4.997960000000001,2.9359077142857144,4.6209999999999996,1.1210142857142857,1.6749040000000002,3.053595,3.6396976190476185,1.1860966666666666,2.3152175,1.742955,1.658522,2.65726,3.417256,4.9822485,1.0219116666666668,1.363222857142857,2.97266,12.865920000000001,4.555186666666667,2.63846,1.0468142857142857,2.536606904761905,0.9623185714285715,3.25747,4.214903333333333,4.815095,3.4365,5.5279,1.56273,3.7543666666666664,3.877425,2.846076666666667,3.7032144444444444,2.4436066666666667,1.0257011111111112,2.53275,2.66368,6.8245716666666665,2.866349,2.513666666666667,0.729329,4.7069,3.454966666666667,1.07179,5.8018841666666665,2.0609175,2.2247533333333336,5.61885,1.2684444444444445,2.692903333333333,1.014081818181818,3.2464600000000003,4.206165,2.811083333333333,3.08296,2.3050633333333335,2.5033733333333332,4.289915,4.73592,4.97988,1.67151,4.576605,4.093895,4.18086,3.4244079999999997,2.6347466666666666,4.144209333333333,0.993146,2.9065880952380954,4.838875,2.71655,4.001864166666667,1.354025,2.6273066666666667,1.973638,1.973638,7.584043333333333,3.184893333333333,5.129601666666667,3.3836549999999996,1.69715,2.7358657142857146,4.4968200000000005,5.486583333333334,8.418053333333333,4.607901999999999,2.63241975,1.8820499999999998,1.905375,4.157703333333333,3.92377,1.46149,2.0143375,2.8221607142857144,1.1045125,3.14266,18.958965,3.4023333333333334,2.9019399999999997,2.726046666666667,3.17009,2.5910233333333332,1.6813166666666666,2.88177,3.6947666666666668,2.4602066666666667,2.6756966666666666,5.643969333333333,2.331836666666667,4.235793714285714,2.7133857142857143,2.259769714285714,1.48999,3.72119,2.20813,4.103105,4.886905,3.733315,3.168381666666667,3.0977833333333336,2.27892,3.442066666666667,3.1352333333333333,3.6366333333333336,3.3741,0.81143,5.132,2.52752,3.10745,2.8771727777777776,1.97062,2.085394166666666,2.085394166666666,3.341845833333333,1.9846341666666667,4.728525,4.17905,3.55921,4.36121,4.6886,4.5601075,4.5601075,3.903295,2.98616,4.585835,2.76069,1.646684,3.2014,4.36188,3.81232,2.62195,3.3427,5.642087500000001,3.722633333333333,6.166881916666666,2.88318,0.8532080000000001,0.8532080000000001,3.37445,4.617555,3.881735,3.4409099999999997,2.5178266666666667,1.8658400000000002,1.7489866666666665,2.83016,6.184262,1.3835033333333333,4.21584,3.6471999999999998,3.94,4.896325,5.03285,4.7511370416666665,3.2973433333333335,2.27195,4.593685,3.63103,2.026355,1.14442,4.037015,2.712075,5.832411666666667,3.1203366666666668,2.62835,3.44574,3.8215,3.610935,4.541595,3.093675,4.59031,3.62521,4.36402,3.780045,3.51139,3.647705,4.33865,2.7826633333333333,4.307545,3.062275,4.85143,0.645141111111111,2.225605,1.61013,1.9092875,1.8815425,2.63271,2.7629566666666663,2.09036,4.563155,6.10015,1.9393533333333333,4.07326,4.57126,2.502325,5.729465,4.0781833333333335,4.412935,5.0779,7.261241666666667,2.0346433333333334,2.8902366666666666,1.8381233333333336,2.53445,3.43386,1.78617,4.099575,3.736065,5.3194,1.0111044444444444,3.08968,4.298815,2.1432875,5.11335,3.79803,2.63958,3.8049,3.393925,2.074095,1.9550985,2.741575,3.079325,3.281325,2.08236,3.5902142857142856,3.5902142857142856,3.5761,3.4466,21.02115380952381,1.16731,5.3621025,1.9253025,2.0354966666666665,3.854545,3.93819,1.8560725,3.92978,4.6232,1.4963916666666668,1.4963916666666668,1.2284466666666667,1.7923933333333333,2.2598433333333334,3.2579833333333332,4.303973333333333,3.418835,3.597933333333333,0.5006078947368421,3.462484561403509,2.03035,2.161285,4.5594149999999996,3.384495,4.09475,3.610105,4.57863,4.27571,2.095385,3.56275,5.760233333333334,2.376545,3.62561,4.82238,2.229725,4.20901,6.18885,1.4841857142857144,2.0063199999999997,3.590533333333333,0.7846942857142858,2.7882033333333336,3.25569,4.621875,4.702015,2.780141944444445,7.780939999999999,2.95394,2.8226666666666667,0.4401905882352941,4.38019,5.017883333333333,2.9475,5.31265,3.9032,2.4983055555555556,1.77085,5.3583739999999995,4.6417,4.26993,2.66885,2.10152,3.93443,3.9944,3.1087900000000004,1.83784,4.03651,6.16957,2.73081,3.97817,3.614345,4.10704,1.4969714285714286,1.4969714285714286,3.1046600000000004,2.729233333333333,4.32469,4.933685,6.43605,3.5212,2.58275,2.1864575,1.4726333333333335,1.3094228571428572,4.793395,5.483445,4.97431,5.83765,4.593665,6.522594999999999,3.70389,2.86496,3.9238573333333333,2.142846666666667,2.96184625,1.57958,4.56184,2.4612433333333334,3.94675,4.95588,4.18298,2.81425,2.97233,1.4585000000000001,2.372285,3.8357666666666668,1.97903,0.58861875,3.2404100000000002,2.6576233333333334,2.4107433333333335,2.1121233333333334,1.88026,1.687614,0.68341,0.68341,3.346,1.72188,2.1545925,3.205225,5.56995,4.08063,5.4392,3.96131,4.04698,2.1188336666666667,1.2286433333333333,2.64689,4.1953,0.9778625,3.4888125,2.986155,2.81964,2.22163,4.0999,2.744285,2.0391866666666667,1.1513085714285716,3.553395,7.445675,3.454645,1.6338030357142856,4.375515,3.484445,2.54543,3.57276,2.76685,1.7988799999999998,1.051725,3.922305,2.4323783333333333,2.303036666666667,1.6718433333333333,2.43175,2.2759966666666664,2.5256466666666664,2.8577275,1.3076066666666668,2.0111933333333334,1.0957375,6.728912500000001,5.46975,5.3398,4.180885,4.01528,2.9312,1.8285655555555556,4.207985,4.668735,2.826205,4.93211,2.03536,4.49262,0.97314,4.118735,3.706765,1.83351,8.14669,3.678075,1.8834325,1.89058,1.8219925,2.70055,3.1970466666666666,1.2426695454545456,2.8066333333333335,5.64485,4.12316,4.23263,5.7038,5.37405,5.4218,0.88741125,4.201605,4.48697,4.25338,4.92483,3.904396666666667,4.809635,5.13145,2.94996,1.43187,1.43187,5.30035,5.394728333333333,2.72147,2.7251266666666667,4.0144,4.398155,1.557258,4.150125,4.892405,3.71023,4.03315,3.02576,2.5914533333333334,4.93454,2.34616675,10.86937726310944,1.9681633333333333,0.77106625,2.5763633333333336,1.7822375,2.573075,2.12007,1.76386,2.7957300000000003,5.10165,5.24075,2.8778333333333332,1.5905699999999998,5.835304761904762,1.299652857142857,2.844333333333333,0.48970476190476186,4.039733333333333,5.5435,3.389845,4.237775,11.47983,5.30425,2.961626666666667,2.9383666666666666,4.740305,2.90287,4.773625,1.04822,1.1900383333333333,0.7521945454545453,5.82295,4.249575,1.6929400000000001,4.643696,4.855045,6.64755,4.87212,4.986095,4.600075,6.2168,3.977405,5.16965,3.72207,1.463674,4.55652,5.8979,3.085935,4.110105,4.150765,3.117415,1.232985,4.9608,4.0752,1.2229475,3.6032666666666664,2.9341566666666665,2.477863333333333,2.55513,2.3796399999999998,2.7633533333333333,0.7285927272727272,2.4107966666666667,2.738993333333333,2.6847433333333335,1.9892233333333333,3.143143333333333,2.0066,1.6143433333333332,2.37497,1.95152,2.47539,3.3395333333333332,2.6781699999999997,0.605311,2.70552,3.378355,4.85562,2.25828,3.893805,5.2568,4.587665,3.554885,3.752975,1.3043542857142858,3.408725,2.5657505555555553,4.186106666666666,2.7435074999999998,4.26828,5.04765,5.08415,3.9986,4.1885,1.032914,1.032914,2.258273846153846,1.6495,4.06642,2.6179360000000003,2.6179360000000003,4.866325,6.09855,3.059675,1.26435,1.5953285714285712,5.78715,3.56417,3.0559499999999997,3.230915,2.80776,3.250385,3.0559499999999997,6.8242875000000005,3.18084,2.9932237500000003,2.79991,1.917895,3.049905,6.5195,3.326185,3.137725,4.341435,6.4104,6.314,6.451225,6.451225,5.31155,4.56969,0.5885207692307692,5.00665,4.47715,2.992265,2.86381,9.217649999999999,2.963813333333333,4.28118,3.721255,3.2940166666666664,4.930745,2.606845,3.4734675,2.96634,3.1738666666666666,2.428976666666667,1.495368,1.495368,3.60179,3.59741,4.8769,1.6644580000000002,1.526202,47.0830856439394,2.5436166666666664,0.8006227272727273,3.1520200000000003,1.761495,3.111916666666667,2.81835,2.9972433333333335,2.92773,2.715403333333333,1.8681666666666665,0.98216375,4.323985,3.388645,3.606105,3.936785,5.1639,4.854195,5.2009,5.3378,5.2201,4.960545,5.33285,6.4110175,5.1945,5.3811,2.089675,3.73866,6.7956,5.3002,3.450715,3.91434,4.109505,2.523215,4.09338,4.57379,2.9345733333333333,3.6558666666666664,1.644842,3.862775,1.357404,3.28832,3.9752,3.690525,6.4915025,3.92751,1.9753,4.11349,4.082255,3.972145,0.86534875,2.783765,3.166375,4.355585952380952,1.1621975,4.87975,1.37954,6.1652,0.7336877777777777,3.96841,9.8282025,4.147625,3.623135,3.48264,1.7592833333333333,4.227775,5.1895,3.0861033333333334,4.25364,8.929134444444443,3.4086,2.033793333333333,2.81397,2.8754733333333333,2.91879,2.7854995833333334,2.3534166666666665,2.7482666666666664,3.0168866666666667,2.7747666666666664,2.94412,3.517705,2.3454833333333336,1.5082166666666668,4.403308666666667,3.4129,2.60296,5.0116499999999995,2.81156,1.06830625,2.0712875,2.9356766666666663,5.329281428571429,2.840475,2.0444583333333335,2.0444583333333335,1.594645,1.45246,2.1305199999999997,1.8594639999999998,6.0685725,4.11165,2.29857,2.828003333333333,3.5682666666666667,2.0818475,0.5589000000000001,2.4164566666666665,1.93886,0.5745030769230769,3.870425,2.5186,2.4674125,3.705305,3.752581666666667,2.4911333333333334,1.63007,1.24228,2.231515,3.69359,3.74641,4.312395,2.9020766666666664,4.077015,3.970965,1.1276272727272727,9.39199,2.702355,3.38894,1.2952,2.8681033333333334,2.2363225,2.2363225,2.2363225,4.73731,5.70445,1.69377,4.809065,1.467442,5.601113333333333,1.4624359999999998,4.095315,4.213495,4.08496,4.33633,4.54912,1.880885,8.370085,3.852695,5.0177,3.52903,3.975901666666667,3.116376666666667,3.1361166666666667,3.95398,2.628766666666667,4.540951428571429,4.547529166666667,1.6679325,3.950045,1.6679325,3.533835,4.530343333333333,5.2525875,4.530343333333333,1.8290933333333335,5.6678,4.80138,4.070575,2.650986666666667,2.9982866666666665,4.31773,3.17322,4.78362,0.5097892857142857,3.081746666666667,3.0424,5.0860575,5.00715,2.352305,4.3793,6.485683333333334,3.31353,2.97217,3.02647,2.2538933333333335,3.797555,4.01358,4.697465,2.624185,3.918525,0.8976710000000001,5.3474,3.491655,4.492485,2.44544,3.276706666666667,2.4119466666666667,2.8332599999999997,2.8593499999999996,2.79318,3.22614,2.521,2.521,4.305127499999999,3.087905,4.406415,11.57475,0.97108,4.25238,2.4598333333333335,2.33485,2.770043333333333,1.42155,7.330103833333333,3.4453333333333336,3.93052,3.7769516666666663,1.9320233333333334,3.8143333333333334,4.558162361111111,2.3145633333333335,0.5083988888888888,1.7656500000000002,1.5126125,4.776955,2.84192,3.27209,3.832678333333333,3.455655833333333,2.40522625,4.895,4.35755,3.921785,4.153445,2.22573,3.96274,2.5593866666666667,5.620373333333333,3.183915,4.99195,4.265,3.85379,4.48435,1.920045,3.85006,3.661285,2.9462166666666665,4.243725,2.81454,3.09769,4.10949,3.63658,2.9331366666666665,4.58225,1.7331833333333335,3.672,2.795655,4.79445,3.83678,4.095145,4.6767,2.654745,4.304235,4.39352,4.176845,2.6608133333333335,2.26811,3.005465,2.40299,0.8827633333333332,4.204465,2.09485,3.59499,2.76984,4.235925,3.599745,3.210155,3.271885,3.5323,4.6540886666666665,4.09049,2.95841,1.48063,3.128305,2.47323,0.9158477777777778,4.643715,9.127590000000001,3.390295,3.7468,4.415375,4.9905,5.18175,2.089645,4.121945,3.964815,3.41297,3.304405,3.48543,0.6546575,1.24673,6.1454675,1.6309575,2.72127,5.100185,2.4314275,2.386315,2.676305,8.72593,2.75611,3.964285,3.884465,0.7922022222222221,3.53385,2.76003,3.877675,3.957275,5.88892,0.666693,3.34389,8.66231,3.24102,1.0593966666666668,4.9860387500000005,4.814825,5.25305,4.158675,4.714325,3.13518,2.4646766666666666,6.569075,0.821819,3.49551,4.33734,3.24648,3.950355,2.12867,4.29093,1.6182883333333333,4.307315,3.87172,3.97707,1.6567825,4.74323,4.575205,2.3729775,2.19544,2.2797825,1.07179,4.173975,3.6728165,1.3933579999999999,8.42581,5.7324,4.47639,5.2332,3.57252,4.29562,1.3799842857142859,4.53076,3.9624,5.1706,3.81708,2.49167,6.484947136752137,0.7842925,0.7842925,2.6334766666666667,0.9452142857142858,4.28059,2.783576666666667,1.039365,1.8412733333333333,0.42078499999999996,6.39402,0.9873075,2.80693,3.861985,4.07985,3.301755,4.4411,5.5937,5.6004475,3.10839,3.18468,2.531455,4.48877,4.75796,4.20245,3.922085,3.78951,6.5726,4.111865,4.323151666666667,5.428792,3.75799,3.5453650000000003,2.259155,3.5453650000000003,7.168583,41.069380271645024,3.734745,3.53841,3.0581566666666666,4.469625,4.26227,3.505325,3.499165,3.877745,4.238465,4.261265,1.62285,5.04445,2.800545,4.290145,4.95978,4.988515,2.4165733333333335,4.283525,3.98835,3.394445,1.429036,0.6483146153846153,1.59609,3.6044,2.95743,1.2818625,3.005936666666667,2.54179,2.6208233333333335,3.436533333333333,3.0140466666666668,1.396054,2.5985333333333336,3.714033333333333,1.9542445945945945,2.8845566666666667,3.156198,2.8486499999999997,2.7191666666666667,3.26623,1.1478555555555556,3.575695,4.15423,1.2335133333333335,1.2335133333333335,1.2335133333333335,1.2335133333333335,2.896174545454546,2.0628100000000003,2.492055,2.83003,4.561,4.766335,3.97676,4.23996,5.6848,4.67113,2.271175,6.2462,3.61096,2.64247,4.06091,3.19565,4.21345,4.26937,0.7713461538461538,1.413322857142857,1.5403166666666666,4.377225,4.4339,4.25291,4.113255,6.161608333333333,2.3213266666666668,4.565015,1.5955333333333332,4.00391,5.02255,1.6096899999999998,5.69355,0.7928516666666666,4.485515,1.268236,1.2081375,3.77765,4.183605,4.984075,5.1742,6.0096,4.068595,1.6329160000000003,4.636135,1.5061175,3.562425,3.43539,2.4983055555555556,1.92859,3.192685,1.318615,3.48234,4.57805,3.0004233333333334,5.6667,120.11047011273449,0.5012144444444444,5.0156,2.38397,4.953335,4.12974,2.83642,1.566185,0.32908333333333334,2.87509,3.80931,5.50155,3.100585,3.784585,4.46727,4.22525,4.449235,8.241933333333334,0.6954122222222222,2.799445,0.99991,11.83614,3.187395,3.68616,0.9652700000000001,2.349425,2.77577,2.139385,3.0953766666666667,3.3498666666666668,2.6291100000000003,4.5209575,3.0134333333333334,2.3766633333333336,2.25498,4.7293,2.92671,3.08512,3.68232,3.888145,3.351315,2.4150633333333333,3.894445,3.614175,3.045505,1.029541111111111,2.6423666666666668,4.5209575,4.83043,5.23815,4.08982,4.036395,1.96348,11.33579,3.687195,2.785595,3.93239,5.46355,0.5482273333333333,0.5482273333333333,4.2964675,4.2964675,3.750705,3.5034666666666667,1.7939293181818181,0.6016091666666666,2.92087,4.54599,4.12216,3.120785,4.118305,5.511865,4.525805,2.13402,4.567005,1.9471375,2.72311,3.9982699999999998,1.74813,2.044585,0.49083,1.7317019999999999,1.7317019999999999,1.884785,4.353565,4.306145,5.03535,6.253193,2.80867,3.163085,2.03406,1.915375,3.996165,3.46007,4.983033333333333,2.156215,4.983033333333333,5.1734,3.665855,5.9635,3.90019,2.4896066666666665,1.9914533333333333,2.5696766666666666,1.45339,1.472955,1.573715,1.6523325,1.616975,1.4659175,3.5926666666666667,4.448645,2.3517,6.6348,2.932923333333333,4.24001,3.2486,4.18931,3.0513100000000004,2.95774,5.820823333333333,3.7412666666666667,4.475010666666666,3.1317,1.3344225,2.609523333333333,2.62192,2.3650433333333334,5.81745,4.3136075,4.68851,12.03471765018315,0.6991533333333333,1.911848,2.1290325,1.546864,1.2505614285714286,2.5981,2.3417625,2.3842325,2.3772125,0.7304915384615385,1.9572,0.52595,4.60619,1.91955,3.99547,4.41434,2.34397,5.4317625,3.97436,6.9651,3.766655,2.882865,3.18583,4.572715,4.728545,2.6949079047619047,4.6141,1.99635,1.99635,4.72737,3.73776,4.31128,4.16808,3.2631200000000002,3.96291,5.03215,4.740965,4.51628,4.387295,4.59587,4.437965,2.564635,4.866295,1.1383566666666667,4.57351,4.49839,2.55822,2.3729299999999998,4.50723,1.389095,4.79204,1.8861625,5.98306902173913,3.89782,4.26339,1.61983,3.29988,3.29988,12.13401,3.92612,3.765295,1.1110225,4.409164,2.22174,1.5502125,2.319245,1.7139975,2.0209925,1.7330660000000002,3.18955,6.24125,1.740155,5.0059,4.599362500000001,5.46665,2.2132775,2.317665,3.56385,4.38589,5.12635,3.95862,7.445971666666667,3.2326599999999996,2.6038366666666666,0.3815233333333333,3.905825,4.14794,3.10972,5.840674999999999,2.612363333333333,2.9585166666666667,1.2694983333333334,1.5360516666666666,0.58861875,1.7656500000000002,2.83805,1.50621,1.5410966666666666,0.6385125,1.290702,4.59184,2.4366925,0.5244946153846154,1.4106333333333334,1.6859425,1.64694,1.24496,1.9795975,1.5360516666666666,2.3454725,1.290702,1.290702,0.5244946153846154,1.5344857142857145,2.45956,1.1860966666666666,2.515,0.5244946153846154,2.536375,2.45956,1.2964683333333333,1.2964683333333333,1.2964683333333333,1.8318100000000002,1.12290375,0.5244946153846154,1.088696,1.10766625,0.9994677777777778,1.8162500000000001,2.5593,0.83284,2.1200925,1.448257142857143,0.5244946153846154,1.7337900000000002,1.5360516666666666,1.9040833333333333,2.02505,0.8810739999999999,1.9040833333333333,1.0577066666666668,2.3729775,2.3923125,2.4188425,1.10766625,2.0279599999999998,1.318615,1.318615,0.95,0.95,0.95,1.2694983333333334,1.5360516666666666,1.448257142857143,1.4106333333333334,0.940857142857143,2.02505,1.363224,1.6631060000000002,1.896154,1.2694983333333334,2.63846,12.279959999999999,0.6385125,2.58538,1.7058166666666665,2.6276,0.9623185714285715,0.9623185714285715,0.5244946153846154,1.2966555555555557,1.687614,1.448257142857143,1.874106,2.02505,1.1516,1.1516,1.6869140000000002,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,2.9651366666666665,1.0577066666666668,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.39699863636363636,53.49698036147186,1.5393425,1.4486916666666667,1.448257142857143,1.7058166666666665,0.940857142857143,0.6319,0.729329,0.729329,0.729329,0.729329,4.2927,16.08260375,3.25099,0.6196009090909091,1.48411,1.48411,1.48411,0.6196009090909091,2.83805,0.5244946153846154,1.7337900000000002,1.5410966666666666,2.53508,1.0577066666666668,2.352305,1.0577066666666668,1.401422,1.401422,2.149766666666667,2.149766666666667,0.5244946153846154,1.9641899999999999,1.9641899999999999,0.9632727272727273,0.19304027777777777,2.83805,1.4441833333333334,2.4052775,0.6196009090909091,0.6196009090909091,0.6196009090909091,0.6196009090909091,0.6196009090909091,1.7058166666666665,0.39699863636363636,1.0577066666666668,2.2172525,2.2172525,2.5248,2.979813333333333,0.6533285714285715,0.6533285714285715,3.3653,4.0528,1.25417,3.309673333333333,1.02455,2.62165,2.04164,1.0464366666666667,3.17041,2.03658,3.2431666666666668,5.2449,2.26166,1.2291333333333334,4.292345,4.432625,2.5813099999999998,1.7925999999999997,2.3489007692307693,4.66993,1.7816202777777779,2.6831,2.7401733333333333,3.27064,2.550155,6.161020000000001,4.154115,0.19304027777777777,2.9537,5.0356,3.835335,4.5126,4.238155,4.303205,2.702693333333333,1.948818,3.728205,4.63787,4.35306,4.43126,5.13155,3.3673,0.6837525000000001,6.82853,1.4031200000000001,2.93158,4.53114,2.4781333333333335,2.4781333333333335,0.7941518181818182,1.92859,3.892545,3.14846,4.930025,3.96366,4.680445,5.237,1.0552514285714285,4.673685,5.31065,6.7939340277777776,2.2605133333333334,4.38692,4.05709,3.917805,4.18064,3.917215,4.34583,5.38233,4.86663,4.5394483333333335,3.780415,4.429195,7.306732,1.7837625,2.1964389743589745,2.886763333333333,1.7621766666666667,2.8893166666666663,1.8766233333333335,5.2258,2.72505,5.728,1.795496,4.713355,4.04579,3.302855,4.439805,3.9637,2.5074799999999997,2.877553333333333,2.7804033333333336,2.6811399999999996,2.501986666666667,1.9285333333333332,2.8377033333333332,2.89888,1.9803039999999998,1.9803039999999998,4.055625,2.9397800000000003,1.9829299999999999,3.0208,2.0369566666666667,2.4088066666666665,3.0836233333333336,2.7091766666666666,3.109363333333333,5.0936,4.375645,4.28944,3.4924906666666664,3.4924906666666664,4.00019,3.142056666666667,4.184665,4.617305,3.947265,3.48741,3.443965,7.82364,2.01799,2.064885,3.5645,3.25064,1.51112,1.51112,3.598415,1.86643,3.998356,3.81869,3.28027,2.1458745,2.1724222500000003,0.5163449999999999,3.069115,3.962265,2.0353575,2.407045,4.1988,1.26004,4.514485,1.3500966666666667,0.382805,0.5264285714285715,21.297257700396827,0.5264285714285715,0.382805,0.6700521428571429,10.55415,2.8665333333333334,3.226705,4.23782,3.42477,2.802315,4.291865714285715,2.27125,2.373005,3.401105,3.14518,4.031045,4.770605,3.731265,2.401495,3.19134,3.43192,3.990575,3.088745,1.154317,1.154317,1.154317,1.154317,3.35205,2.887745,3.21707,1.7665566666666666,1.2033966666666667,2.437505,3.753575,3.553705,2.755245,3.02235,2.626525,2.6691175,3.98556,4.203255,1.1306883333333333,2.6719333333333335,1.05635,2.77387,1.7165033333333335,3.6130666666666666,4.872245,2.53497,3.926785,3.7784899999999997,0.8224690476190476,0.2192957142857143,0.2192957142857143,0.6031733333333333,0.2192957142857143,0.2192957142857143,0.2192957142857143,0.6031733333333333,4.41261,7.215918333333333,3.71017,0.51637875,3.841105,7.5472850000000005,3.25458,3.165563333333333,1.197995,4.444495,5.3658,4.31523,4.77295,1.686572,4.856225,2.2375066666666665,2.282756,3.49522,5.264,0.7580442857142857,0.7580442857142857,3.466515,2.9308833333333335,2.183395,3.31777,2.648415,6.3478,3.16726,5.87555,5.6907,5.64095,2.67675,1.661155,4.48656,3.516915,2.209305,3.76769,3.05089,1.9151875,1.159855,4.13769,3.62987,4.9877400000000005,6.330501666666666,1.4577616666666666,4.01329,1.1582966666666665,2.57546,3.40534,4.15408,0.39518928571428574,3.849465,4.38272,0.913485,2.5042266666666664,7.787363333333333,4.129445,2.089995,5.8058320000000005,4.421605,3.86144,1.2759533333333333,5.51528,2.7187300000000003,2.9666333333333337,3.5196,1.93445,1.93445,6.4649,6.4649,3.6716214285714286,3.6716214285714286,10.4937,3.6716214285714286,3.6716214285714286,4.373113650793651,6.77265,4.95057,3.464974166666667,2.76172,4.11756,3.70255,3.28457,3.0448766666666667,4.59167,3.1058166666666662,2.6790266666666667,3.2126266666666665,2.29273,2.72122,4.94454,7.414035,6.686615000000001,4.84333,3.786505,4.06878,6.414057000000001,4.9355,4.203025,3.77555,3.93772,2.1721866666666667,2.262325,2.07621,5.26655,5.49595,4.578005,4.33094,2.43507,2.5662333333333334,6.955795,1.8318100000000002,2.56386,3.4012666666666664,3.4012666666666664,3.24413,5.1398,0.8439416666666667,3.4568,3.709155,2.7748566666666665,10.325225,3.99183,2.607956666666667,2.436123333333333,5.3714,6.40505,3.02963,5.6207,2.73161,4.644405,3.007721714285714,4.116565,5.22525,4.61366,0.90999,3.3677333333333332,1.1297525,2.6089766666666665,5.112389838235294,7.570046666666666,2.48618,3.07952,6.287193333333333,1.6314699999999998,4.575435,5.3939,3.685195,3.711875,2.1036266666666665,4.73037,2.2509175,0.45912615384615385,5.25785,3.019595,3.5042333333333335,4.699335,4.821025,5.1506,6.4363875,4.481205,5.26215,6.929259999999999,54.72745066666666,4.312935,3.89403,4.848325,5.4563,4.076645,5.0334,3.99529,4.815265,1.95288,3.89398,3.815605,4.784685,2.54025,5.08415,3.847845,1.6910560000000001,5.70925,6.4739,6.947091666666667,5.39485,3.435535,4.78869,3.206135,3.442655,3.627705,4.48416,3.934645,7.15899,2.74425,1.1144642857142857,2.50227125,0.571754,0.571754,3.284475,0.571754,2.52424125,2.52424125,3.28181125,4.61226625,5.027575000000001,2.50227125,4.816249166666667,2.869111666666667,1.3130716666666666,5.2606,2.17225,7.385728,5.89162,11.014737143939394,3.0876033333333335,2.7401866666666668,0.22497939393939392,1.8038673333333333,2.2862966666666664,0.87180375,1.4745650000000001,2.6958699999999998,2.19,2.56265,0.6058939999999999,27.91379125,1.9250175,0.7600569230769231,2.4736266666666666,2.4736266666666666,0.4030888888888889,1.8740375,3.156095,1.3489775,1.7885275,1.6364375,4.453935,2.92348,2.03424,2.412926666666667,1.1548566666666666,1.90082,1.426615,5.64329225,3.807635,6.592521666666667,2.3440225,3.248136666666667,0.854885,2.48846,4.962815,6.0231,3.4005666666666667,2.225216666666667,5.386922500000001,2.0544025,2.4718233333333335,4.6003425,1.05009,3.6696000000000004,2.406476666666667,5.8274,5.14555,6.21705,3.264985,4.3159275,4.3159275,5.20305,2.05911,5.27145,2.6690466666666666,1.672655,3.902565,3.75667,5.900719666666666,4.235455,2.7699166666666666,3.9975666666666663,3.0463,1.1761785714285715,4.942135,0.947695,5.52644,4.639285,7.8026800000000005,4.292815,4.41174,4.11258,8.132953333333333,4.690915,4.943165,1.14138,0.7020578571428572,4.42072,4.50319,2.02583,3.24961,3.36933,4.322905,2.17103,4.672475,2.31519,5.0486,4.93485,5.19745,4.329855,4.52864,2.86531,6.8071795,3.54041,4.53784,3.523015,4.191105,5.906326428571429,0.6094428571428571,3.715,1.7435600000000002,0.5473811111111111,4.146935,2.417515,1.01153375,1.934265,6.00554,3.932005,2.326355,2.6916466666666667,2.8331666666666666,4.80735,3.514175,1.7469892857142857,4.170085,2.5964533333333333,3.4772,4.21714,5.0194,3.0622208333333334,3.6048333333333336,3.6584333333333334,1.9790800000000002,7.41166,4.96468,4.74326,5.01955,2.1678325,4.09967,4.664935,3.349625,4.07554,10.96949,3.60377,4.955348333333333,4.823165,4.71357,2.360735,4.22192,4.24126,4.70538,3.2780199999999997,4.094365,1.471345,2.87525,3.370135,3.389925,4.76031,1.862206,4.07586,3.19379,5.30625,2.8807500000000004,1.948615,3.77396,4.12391,1.01685375,3.074915,2.69753,4.471194,1.6784880000000002,1.7906033333333333,1.0971525,3.62465,5.19915,5.78774,3.8458575,2.921415,2.45586,2.086325,1.89515,1.5401333333333334,5.6885,3.04327,1.8209475,0.9243538461538462,20.598289923076923,3.084795,3.2768466666666667,4.69051,4.079493846153847,1.33835,2.6968545,2.848694090909091,1.247606,1.8415633333333332,4.153285,4.90219,3.5381183333333333,3.05093,5.32055,4.767035,6.9592175,4.60245,4.35346,3.708355,2.6861033333333335,3.953625,4.007145,3.445733333333333,4.261245,1.77149,4.835065,8.212,3.378455,2.87752,3.81281,0.58522,3.14887,2.10549,2.2406825,4.4667,3.12118,4.637305,3.679005,3.000405,2.2376625,1.69043,0.821908,1.4708533333333333,1.2004333333333335,3.964115,3.8693,4.62597,4.65398,7.41857,2.30263,1.4138899999999999,2.4621933333333335,7.593783333333333,3.39092,2.83905,3.143545,4.509905,3.4803825,3.581545,1.5522040000000001,4.524915,4.92352,4.220675,4.06127,3.5394,4.24407,4.44058,4.16803,4.617335,3.825095,2.26649,3.1806033333333334,3.300185,5.44355,2.927795,4.2562605,2.803,2.955405,2.6365000000000003,2.2389233333333336,2.1081666666666665,2.543089,2.543089,1.9753033333333334,2.7388933333333334,2.3562600000000002,2.3467100000000003,2.0614766666666666,4.12113,2.3834966666666664,2.8677766666666664,3.1440966666666665,1.72535,4.37079,2.941725,3.562515,2.22195,5.3238,5.5037,4.771489444444445,2.64636,2.224425,2.883845,2.847425,2.14146,2.873825,1.9043225,2.48619,2.49641,6.936663666666667,4.390535,3.62161,0.58872625,4.100775,4.087515,4.14198,3.44748,3.91381,3.811184166666667,6.19795,4.40272,3.171765,2.7516510714285713,2.114355333333333,2.49028,1.6825379999999999,1.7578859999999998,1.541422,1.946336,1.9135775,1.1928266666666667,4.201117428571429,0.5244946153846154,0.5455233333333332,1.9512260000000001,1.4785116666666667,1.402502,1.4244433333333333,2.3819865151515156,1.5161683333333331,1.585468,0.58753125,169.5199437160311,0.48704333333333333,1.967286,1.03678,1.2832825,2.1485975,1.60886,2.0259175,2.459,2.0167125,6.8698,3.18357,3.6357285714285714,1.8865933333333331,3.05215,1.32432,1.32432,5.45825,0.4955516666666667,2.1824925,3.1165033333333336,3.0302066666666665,0.7897127272727272,0.6640352941176471,1.2532191282051284,1.0918818181818182,2.513075,3.87945,1.9640725,2.15576,2.187003333333333,5.040921222222222,0.9853477777777778,4.48212,3.80174,3.5845,7.0119,1.9961266666666668,2.7839,2.6468,3.640876,2.29673,3.0862,2.84135,3.305715,4.052795,2.87946,6.5038,2.466935,2.591765,3.52918,1.63195,2.39925,2.35237,2.910535,1.81149,1.52479,2.46632,4.135425,5.353158333333333,2.74719,2.96075,1.39921,4.131255,3.445266666666667,3.933866666666667,3.03196,24.472662985805858,2.460427333333333,2.64006,3.0030866666666665,3.342166666666667,2.97599,5.635573333333333,3.1316333333333333,2.2538199999999997,3.4743,3.3225200000000004,2.1767566666666665,3.1782266666666668,3.257733333333333,2.9408933333333334,1.7104833333333334,1.64885925,0.6146429999999999,2.2863266666666666,2.0819575,0.202758125,2.3217633333333336,2.61633,0.202758125,0.202758125,2.0217747916666666,0.202758125,0.202758125,0.202758125,0.202758125,2.7484333333333333,2.4843533333333334,0.5916861538461539,3.273101785714286,1.415655,1.958548,5.4465,4.33317,6.0997025,1.9626525,4.868425,2.02306,2.5441433333333334,1.224767142857143,5.592933333333334,2.808526666666667,5.76089,0.8482083333333333,1.382035,4.77149,4.720765,34.97349414244089,1.561792,1.3666833333333335,2.3777666666666666,2.284035,0.95,2.39696,2.3468466666666665,2.737493333333333,2.053053333333333,2.4607566666666667,1.6212400000000002,2.591343333333333,2.4168966666666667,2.2638966666666667,2.592783333333333,2.4540366666666666,4.112375,3.2700366666666665,1.1723357142857143,3.77157,4.10507,19.623655222222222,2.7923666666666667,3.2637966666666665,2.4194366666666665,0.8742279999999999,3.14022,1.6180668888888887,3.14022,2.366163333333333,2.40879,2.69382,1.614815,1.90538,4.25335,4.18542,5.10445,4.323615,1.750264,5.09185,1.6818975,4.83677,4.0173989047619045,4.45606,0.7587045454545455,2.0633375,1.9829725,2.748216,3.45101,1.0947825,3.450305,2.05118,2.1038200000000002,1.07777,1.07777,3.05762,2.987636666666667,4.56499,28.6931175,6.428535,1.94127,3.6583833333333335,0.38848533333333335,5.85211,5.2118,2.62052,3.427305,5.1277124999999995,3.79171,1.1019725,4.40052,1.276488,3.212615,4.85811,4.833305,2.100405,3.231615,4.389375,2.45067,3.4588365000000003,4.141895,1.3147266666666666,2.6321891666666666,3.847975,4.5861025,2.6547366666666665,2.9803333333333337,2.9507499999999998,3.46283,4.096915,4.03279,4.204733333333333,1.63863,5.90701,2.610905,1.828276,4.186885,5.46192,4.16527,3.426835,0.77792625,2.99726,3.6863,2.18898,4.710305,2.724385,3.999535,2.948676666666667,3.29992,2.685325,3.2579466666666668,3.0143766666666667,3.0724733333333334,4.506455,5.20185,4.426235,1.80302,4.131235,4.27257,1.933005,1.98175,1.779295,3.9399444444444445,4.697825,5.142522708333333,4.16058,3.446266666666667,3.756715,3.169473333333333,1.3514166666666665,3.15504,3.11007,3.00104,4.291885,4.37561,4.23592,2.92943,1.84849,1.53183,1.50339,3.6798,2.458975,2.239715,3.35686,4.75836,1.56786,5.0443,1.364024285714286,1.8560975,3.315835,3.26607,2.95972,3.563865,3.22896,1.573945,0.9628114736842105,2.657055,3.575896666666667,4.05632,8.635528333333333,2.53105,2.9591366666666663,1.6179033333333335,2.8453,2.78683,1.16588,2.997203333333333,2.686386666666667,3.2823499999999997,4.0332,2.972393333333333,7.036865,3.060366666666667,0.7580927272727273,1.8423866666666668,3.66665,3.374155,3.436985,3.3997666666666664,2.496361,3.469115,2.938505,1.9928728571428573,3.88097,2.7158072222222223,3.45946,2.0014233333333333,4.821915,5.1907,4.50423,3.64571,3.81078,1.1369444444444445,4.907565,3.1680466666666667,2.574176666666667,4.450995,2.7376633333333333,2.7473666666666667,0.47286,0.47286,4.15006,4.94698,6.60435,3.096985,4.56915,3.56443,3.177125,4.923535,4.221375,1.04792125,3.83834,2.6816133333333334,4.034211666666667,2.980036666666667,3.2041825000000004,1.90442,3.4161464285714285,2.6539433333333333,2.6307733333333334,2.5949666666666666,2.8564966666666667,1.8202,22.677403675230565,4.77222,4.348915,3.902755,3.385005,4.53548,3.47568,4.66797,4.317235,3.86802,3.653135,4.129895,2.5333099999999997,2.70604,2.992366666666667,3.132105,2.5443533333333335,4.25495,3.55844,4.530985,5.09655,4.117625,1.323702,1.711006,1.711006,4.66519,3.784205,2.5191233333333334,2.206723333333333,2.84248,3.97722,3.469385,7.504666666666667,3.0607366666666667,3.231646666666667,3.0402966666666664,4.9709,1.5650366666666666,6.2789375,2.5331633333333334,2.58523,1.7923425,3.77009,2.81633,6.59053,3.460645,2.496205,4.33023,4.131784666666666,1.51646,2.83765,1.7850966666666668,7.838636,4.51357,6.597243333333333,2.2649425,4.02245,3.705465,3.846525,5.09175,3.2831499999999996,3.2831499999999996,2.12386,4.400035,5.06255,2.263205,6.229782857142857,1.5985175,5.83225,8.89246,3.418066666666667,4.461423333333333,2.2664966666666664,2.065365,0.58917,4.226635,2.53415,2.5672,3.8715460000000004,2.401015,2.3471100000000003,3.79795,5.503,5.16395,4.64498,5.23295,4.155035,2.3308375,1.0128636363636365,2.962285,3.346875,2.7501200000000003,4.87101,4.074725,3.33694,2.37653,2.0063199999999997,4.30655,1.0090325,4.95066,0.9799966666666666,5.3201,3.425745,4.513565,4.556495,3.19333,3.403325,3.1341633333333334,2.4625266666666668,4.31266,3.11849,2.80786,4.31925,4.642825,6.2557849999999995,4.745645,1.616155,3.272625,3.385185,5.543536666666666,1.9372975,1.9372975,2.955106666666667,2.523686666666667,2.42908,2.6363666666666665,0.8906470000000001,6.10795,3.49536,2.094905,2.372145,2.613255,3.90159,2.738905,3.826225,4.91867,5.26645,4.990645,6.0511,5.5622,1.253025,3.50816,1.0951,2.4554,4.359466666666667,2.621075,3.11811,3.24546,4.354565,3.407445,0.45832894736842106,4.493795,4.273025,4.735945,3.34999,5.01265,5.5512,4.21551,4.05115,1.663525,4.656335,2.1414,4.1996,4.1996,6.4224,5.4339,5.5974,5.0632,2.829395,1.5650366666666666,4.331375,2.193286666666667,1.6691933333333333,2.11862,4.09312,4.505075,4.306765,8.30178,1.5410000000000001,5.4939,1.367485,3.37284,6.0784,1.9259075,4.639285,2.53018,4.614455,3.582835,4.688195,3.1242900000000002,4.30507,4.048605,5.91925,4.231115,3.27419,3.74184,5.73695,3.8903,4.55399,3.693215,3.955675,7.505601666666667,3.54791,7.25043,3.434825,5.5301,5.807194090909091,4.80304,3.59516,1.9673525,5.4479,3.991865,0.7650066666666667,8.73642,5.93355,5.00275,3.1058658333333335,4.932735,2.88388,1.7161680000000001,4.026675,1.1306883333333333,5.5196,3.047395,4.78599,5.68295,4.384595,4.12526,2.24771,4.164815,4.996085,1.64569,6.3777083333333335,3.133725,3.26091,5.0157,4.40888,2.216255,4.401525,4.239515,4.48422,2.78486,4.061335,3.76548,5.5724,4.580155,3.3036,2.0206375,2.0206375,7.387915,1.4491999999999998,4.94504,4.15947,5.44395,3.61631,3.766145,5.0897,3.966465,0.8729133333333333,0.8729133333333333,0.8729133333333333,3.232075,3.10694,3.966275,4.516725555555555,2.71047,1.4993083333333335,4.585395,2.080995,2.780445,4.022755,4.6889,1.8091575,2.17504,5.93654,4.082165,2.83556,4.370255,1.56968,2.0527575,3.29031,2.69698,5.3755,1.396286,1.570082,0.9852075,3.52333,3.586285,3.5963333333333334,2.9605599999999996,5.3829,1.788402,2.024455,3.165265,1.4936428571428573,3.359705,3.756645,2.7018,5.90755,5.6182,2.95021,4.16977,3.632735,3.53487,3.49068,3.97494,3.63966,6.81416,5.0559,1.8034466666666666,1.7703833333333332,3.45876,4.74554,4.08686,3.425,2.9545166666666667,4.21252,5.87735,4.99618,2.7608200000000003,5.23535,4.07954,4.65535,7.8015075,4.477985,0.6989454545454545,4.12613,4.102726666666667,2.4272,4.18745,3.9302333333333332,5.79335,3.941175,3.95695,3.84966,4.2995,4.428315,4.195715,2.8638,3.774955,4.92012,3.99444,2.767725,2.8617,6.16336,5.172,1.79649,3.321995,4.334316666666666,3.844405,5.0041,4.24282,2.6091233333333332,0.8698288888888889,4.257105757575758,6.7855725,3.646515,4.677035,3.61844,7.065721666666667,3.95534,3.4413666666666667,2.588083333333333,3.804255,2.01035,3.58333,4.029495,2.6086295,3.83493,5.53775,1.4032625,4.714945,0.6599071428571428,5.84035,5.4617,6.01645,5.73445,1.4358950000000001,1.7071433333333335,4.23642,1.95061,4.86913,0.5544983333333333,5.9018,3.236585,1.551888,6.3372525,6.8251,0.8818225,1.7432905,1.2758639999999999,1.2758639999999999,1.2758639999999999,2.41609,4.579825,3.62182,3.919525,3.71447,5.17965,3.92977,1.946866,4.092215,5.14585,0.30216829268292683,3.368505,4.362975,4.9472,39.226674583333335,5.8161225000000005,5.2555,11.708202,3.76213,4.384155,7.6537299999999995,3.15467,4.805095,4.11147,4.68121,9.756875,4.2732,2.5864866666666666,2.79244,5.2977,4.196515,3.81293,4.488165,2.228785,4.70193,3.901705,6.668573,4.5683,5.15435,2.4297125,4.35828,0.52780875,1.4563083333333333,3.784465,6.23665,2.88922,1.31412,1.31412,3.530915,3.99609,4.11185,2.62039,1.8368766666666667,3.631065,4.49271,1.6908275,3.1854666666666667,1.679502,1.9770733333333332,4.34632,4.54595,2.03191,4.677735,2.0849575,2.234425,3.625845,3.762295,4.18515,4.026875,6.201955333333333,2.4276103333333334,3.85542,0.7603127272727274,0.6579141666666667,3.68709,2.216685,8.42046,3.25099,4.785625,1.6870675,4.381255,1.5413350000000001,3.881975,4.264355,2.66722,4.07736,5.4742,0.42645799999999995,0.42645799999999995,3.5273333333333334,3.0517833333333333,2.9458533333333334,3.47488,3.674435,5.13245,0.9895545454545455,9.425613333333333,10.005095,1.9795975,4.8105725,4.708065,4.848965,3.606115,2.672883333333333,1.923228,2.02439,9.741859999999999,1.9758525,2.757146666666667,3.5644340000000003,4.570165,3.5644340000000003,2.31943,2.61929,2.8515533333333334,0.7266654545454545,5.628158333333333,3.003386666666667,2.4875000000000003,4.074635,8.81862,9.818349999999999,4.35624,4.122035,4.449235,6.6655475,1.933425,1.3568875,26.966569166666666,3.8174,3.84655,0.931142,4.247125,4.235355,4.866365,4.32514,4.857995,5.6385000000000005,3.4623666666666666,2.198566666666667,0.6760529411764706,0.7524191666666667,5.0588,4.6827,1.4543483333333331,4.02259,0.8850666666666666,3.6476,1.4178633333333333,4.308905,5.57215,1.87883,2.548105,2.359615,3.671875,3.005155,0.4589511111111111,4.022635,3.608975,2.60948,3.45571,4.95298,2.78441,4.20702,2.992925,4.95744,8.202763333333333,4.812095,7.34136,2.708475,2.58773,4.391275,4.5192725,4.35803,4.546255,3.772515,4.62016,1.2671625,3.1773570833333338,3.2403554999999997,0.659458,1.711006,1.711006,4.73105,7.034133333333333,0.8398769230769231,4.9418,0.9532266666666667,2.974,2.4235266666666666,2.4809875,6.645727777777777,2.4402333333333335,1.1562777777777777,2.5999666666666665,1.20385125,2.1485600000000002,2.8876033333333333,3.1130966666666664,3.3187933333333333,2.57754,0.9532266666666667,4.36903,4.14497,5.24355,2.873215,4.58225,2.1614999999999998,6.1658,4.65662,4.02661,2.90752,3.26751,2.2913575,1.292575,4.25972,2.757725,4.26338,5.7764,1.6910520000000002,4.54092,2.5816933333333334,6.182629166666667,3.57793,2.580215,0.9532266666666667,2.47547,3.83823,7.641937888888889,2.52398,1.688932,2.52398,0.41380750000000005,1.244024,3.62803,3.383785,1.990485,3.806035,3.973014,0.6297189999999999,0.6297189999999999,0.6297189999999999,7.896625,1.597574,0.7509690909090909,35.862167943722945,1.9418562222222224,0.7014922222222223,3.099065,0.7014922222222223,3.828855,1.96053,2.32562,2.4800166666666668,5.41765,4.379245,4.34412,2.47303,0.9220514285714286,4.394415,3.1425533333333333,5.02275,1.028792857142857,2.78975,2.78975,3.895875,3.815725,3.930245,5.351615384615385,3.270215,4.385925,5.2037,1.841192,1.117605,5.26355,6.4554,3.87248,0.698078,4.14566,4.1479083333333335,0.899865,4.493525,2.67203,3.891905,4.387845,1.864128484848485,1.864128484848485,4.48175,3.478735,0.8941666666666666,3.087105,2.958766666666667,3.40045,3.987375,4.523325,0.5647642857142857,0.34347352941176473,0.34347352941176473,0.34347352941176473,0.9082378151260504,0.5935453846153846,0.671368,0.34347352941176473,0.34347352941176473,6.92137,0.34347352941176473,0.9082378151260504,3.634655,1.3044775,4.58902,1.1904616666666665,0.5285876923076923,0.899865,2.713005,2.51305,4.018875,3.16141,0.34347352941176473,0.34347352941176473,4.507915,3.831655,4.106175,2.61855,4.07942,1.4377119999999999,3.99889,0.671368,0.671368,4.395135,3.10753,2.83182,2.85811,3.9781933333333335,1.03983,0.8510538461538462,10.073910000000001,1.1900025,4.03056,4.709895,5.303,2.05852,0.36003565217391303,0.852555,2.8241666666666667,2.861935,3.081565,4.0776,1.3173460000000001,6.1765,3.489905,4.8239175,3.91083,3.0258533333333335,2.8829499999999997,6.157948333333334,2.4902133333333336,4.888265,4.228015,3.7784899999999997,6.0502,0.539088,4.19571,3.3839333333333332,2.0148566666666667,0.6808666666666666,4.176295,4.31321,2.57727,2.40153,2.0734,4.91883,2.760355,2.903755,0.9778740000000001,0.47548307692307695,4.02814,0.3594853333333334,0.7865645454545455,4.023145,2.97576,4.203875,2.730965,4.72936,4.387635,6.249979333333333,3.848705,3.53989,4.484905,1.5666125,5.0550225,1.813664,4.060875,2.551725,5.908803333333333,2.590925,1.11738,4.32763,6.8242125,6.4406895833333335,3.3743,0.8226958333333334,2.8058300000000003,4.49409,3.878035,4.56735,4.72751,4.10973,4.37154,2.778365,4.23994,1.8248633333333333,2.224395,1.46845,3.96555,8.746775,2.99145,3.723855,5.6585,2.941895,4.24223,2.4928233333333334,2.949447666666667,3.303285,3.575005,3.78448,3.576215,3.342235,4.88415,5.6096,4.52584,4.6769750000000005,5.06465,3.973795,2.81091,5.03385,7.743025,0.9222833333333332,4.276205,4.319215,4.438545,5.21905,4.654335,2.15827,8.26347,2.5341366666666665,3.69466,5.8738,3.77148,4.378505,2.12164,1.8071575,2.7774699999999997,2.6363333333333334,2.0642133333333335,2.7404333333333333,4.096105,4.62754,4.066755,3.56177,5.094341666666667,3.3895,3.213475,3.9675575,5.7964,2.995875,5.4262595,4.099355,3.67173,3.567635,8.26512,3.759715,3.78935,4.163935,4.809445,2.975595,10.082,1.3349266666666668,2.17621,3.57426,2.7154133333333337,2.7154133333333337,1.889535,7.650078333333333,0.89845,3.10341,0.93177375,2.024455,4.317425,4.70619,3.787455,3.9823,3.0427133333333334,3.23818,3.60601,3.897515,4.415405,2.98394,2.7370900000000002,4.1541,4.869845833333333,3.76547,4.459575,1.648078,1.67705,2.6182166666666666,5.5497,2.3367825,1.7171133333333335,1.97558,4.102755,4.642465,3.11542,2.72457,0.5233455555555556,2.279985,7.143470000000001,3.229505,1.6283966666666665,0.8890875,1.2384266666666666,2.0661866666666664,2.305065,1.03796,2.168886666666667,4.4521385,4.13978,5.0476,2.442066666666667,1.9711575,6.2967075,2.911175,2.2974733333333335,2.2974733333333335,2.2974733333333335,6.499653333333333,2.27162,3.593375,2.677455,0.470208,1.144492,2.18879,5.775485,0.45853333333333335,3.788305,3.8975875,5.63295,2.9748633333333334,0.45853333333333335,2.9748633333333334,0.9535725,1.147732,5.93075,4.140235,6.849702499999999,4.08317,4.71542,3.683375,4.13308,5.0337,5.1821,6.0324,3.88749,3.504775,4.753945,4.597885,4.20787,4.53236,4.22561,1.40829,2.5150866666666665,1.13594,2.20032,3.1047327777777776,1.4915627777777778,6.8823225,5.543536666666666,2.686935,4.6192,2.887005,4.883205,2.925915,3.92543,4.98993,9.662725833333333,5.58015,4.449955,2.625275,2.88089,2.13768,0.58522,2.1554948888888887,6.04915,4.8391,4.72533,4.20306,0.54435,2.0460875,1.44176,4.465835,0.8396,6.830945,2.06901,1.1149375,1.1149375,3.6726659999999995,1.9433219999999998,3.632733333333333,2.66131,4.578875,3.5204475,3.5204475,4.22789,5.430773333333333,2.687533333333333,2.5520366666666665,3.3821666666666665,4.158915,1.8178740000000002,2.9444700000000004,5.49995,5.19825,4.52762,3.83463,3.9914833333333335,4.39748,3.618535,3.2108966666666667,2.2967175,4.11442,5.36585,3.04829125,4.71771,5.64595,2.2215666666666665,2.5725333333333333,6.17735,6.8939,1.4633660000000002,2.554125,2.25232,2.7348766666666666,2.00574,2.4840825,2.3680325,1.01319,1.9386375,2.523075,2.1655025,2.57741,2.57741,2.8832554999999997,2.799775,2.1490213461538463,2.50955,2.4077125,1.906334,1.5315716666666666,4.9693925,14.1238425,2.9117466666666663,3.7133333333333334,1.800368,1.800368,1.5926733333333332,1.5926733333333332,2.859303333333333,3.7650333333333332,3.025933333333333,1.938375,1.938375,3.6520333333333332,2.8477766666666664,1.1135466666666667,1.4673,2.89861,2.7859700000000003,3.7032000000000003,2.530994761904762,3.223826666666667,3.0826433333333334,0.666901,2.5193,3.524241,7.105861666666668,4.86414,4.398345,4.388515,3.477345,4.92924,4.73298,2.79393,4.17633,1.3349266666666668,3.1262000000000003,5.66425,5.45405,2.66812,1.1773083333333334,3.045365,2.46941,3.043433333333333,1.4335849999999999,0.7021542857142856,2.9911433333333335,4.7778125,4.783165,4.11057,4.683905,3.0672266666666665,2.1890666666666667,3.277140833333333,2.5328666666666666,3.208716666666667,3.1304233333333333,3.1464533333333335,2.61945,2.401616666666667,3.587666666666667,2.837566666666667,5.15965,4.90329,5.063040833333334,5.063040833333334,3.498675,4.008775,3.85268,3.76321,2.789445,4.89508,3.475035,2.9204399999999997,6.2079,0.797195,5.2319,4.67817,2.54957,4.598826666666667,3.234773333333333,1.6029333333333333,1.2330885714285713,2.11529,0.9334429999999999,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.5335414285714285,0.5335414285714285,1.19918,0.7920168055555556,1.602642058080808,0.9893685714285714,0.9893685714285714,1.1653665025252526,0.4372755555555556,0.4292988888888889,1.2398975,1.5004575,2.5139833333333335,2.4855,6.718543333333333,2.9418399999999996,3.929595,3.5828283333333335,4.743230285714286,1.374945,4.67714,3.8992,4.90855,2.98968,1.50368,4.207915,3.679455,4.524475,4.497465,2.81249,4.416835,4.48347,4.734155,1.271136,3.901225,4.53169,3.236445,2.5175466666666666,3.42521,2.471935,3.233705,4.23237,3.2175499999999997,4.773585,8.859945,3.275955,4.877015,4.14874,4.2783,2.473193333333333,3.9772,1.1537757142857143,4.036005,3.411755,1.999094,1.15585375,2.97937,1.1238883333333334,0.5138973333333333,3.6037666666666666,4.215305,5.266866666666667,3.6780666666666666,2.47813,2.75656,4.9408,3.9614666666666665,5.05795,2.70345,2.252196666666667,4.31385,3.99863,3.907885,4.901825,4.466625,3.692505,4.86809,3.1132866666666668,4.48992,2.1218675,4.99729,5.2926,3.28868,4.171465,2.501005,3.86856,5.01885,4.037525,5.2201,4.632505,4.901125,2.1573266666666666,4.75019,5.06535,4.540615,2.39861,1.053965,4.02174,4.59913,4.07916,4.84145,1.977815,3.853125,2.18094,5.09495,4.38751,4.78701,2.188315,4.131005,4.540615,4.287675,2.5026699999999997,4.30903,4.78326,4.89248,3.498475,2.39861,2.33685,2.821535,4.3641,3.52498,4.01633,3.46257,4.847055,2.41465,6.98868,4.64874,4.127375,5.163623729166667,4.812379999999999,4.81889,3.4997875,2.551305,2.551305,3.67,3.85997,4.603345,2.198205,2.89744875,0.97718875,2.644486666666667,2.99218,2.3297966666666667,3.0645666666666664,4.41489,2.6683133333333333,5.52495,2.5586699999999998,4.12644,4.527425,1.945115,4.288135,2.4015733333333333,2.5376866666666666,4.196705,0.8656879999999999,5.13,4.73629,6.55669,5.15855,5.5516,1.2781842857142858,4.809535,6.49775,8.275815,3.1449366666666667,3.1094899999999996,1.948204,0.81136,3.896285,1.0408614285714286,4.457495,4.67259,5.3679,3.210275,4.024585,1.2377214285714284,3.50273,3.7021,4.43437,3.74201,3.379645,3.279095,2.334725,4.23745,4.670315,5.5705,4.46534,3.42242,0.3225011111111111,0.3225011111111111,0.3225011111111111,0.3225011111111111,5.55065,2.7007,6.0915,3.1218766666666666,4.87719,4.80389,3.81264,2.17952,2.5964133333333335,1.49537,5.0209,2.741493333333333,4.28189,3.715225,3.39646,1.646335,1.151395,4.33033,2.654305,5.9672149999999995,3.907215,5.3754,2.2289,1.4902416666666667,0.91567,3.34593,4.08056,3.39733,2.2336625,7.9747900000000005,4.057815,3.7092,2.2941,0.446342,3.350985,2.755435,2.127245,1.93058,3.85481,2.95938,2.52672,3.081163333333333,3.04921,3.357915,4.420045,3.300865,3.88198,3.469675,5.647538333333333,0.6138446666666667,4.516075,5.65645,4.64149,4.36053,3.2434833333333333,5.2964,4.30664,4.243365,5.5288916666666665,5.22435,4.50037,4.438915,3.8291775,4.550985,2.83192,9.29044,5.02035,3.979075,4.77782,4.798055,5.15015,3.5112,1.0743044444444445,5.677523333333333,3.113895,4.91015,1.3161283333333333,4.33739,4.08912,6.783703333333333,4.779265,3.229355,2.069786666666667,4.22702,1.8976220000000001,1.0582975,4.2739,6.40335,2.0281,2.333743333333333,2.8561266666666665,3.387565,3.58147,3.708885,5.055,1.8208966666666668,4.162875,3.8359855,3.3983,3.8089333333333335,3.72594,2.988755,2.60587,1.922445,2.453726666666667,2.6979866666666665,4.48193,0.5163449999999999,2.66935,4.17553,3.05329,3.478066666666667,4.03028,5.8417,3.78618,16.65121084848485,2.3072933333333334,3.9435333333333333,1.46149,0.8560981818181819,0.8560981818181819,0.8560981818181819,0.8560981818181819,0.8560981818181819,4.4291,4.67748,4.81974,9.037676000000001,2.4271025,2.4271025,4.425875,4.479685833333334,1.3049525,1.9419866666666667,3.943265,2.34313,2.3253825,2.0146525,3.08517,3.897616,1.8287975,3.717,0.8004714285714286,2.760283333333333,2.71313,3.0039933333333333,1.3978266666666668,3.274896666666667,2.121966666666667,0.91754875,2.8181966666666667,2.73298,1.1537666666666668,2.4615966666666664,2.54174,1.9575033333333334,4.277042,1.7760333333333334,3.0491333333333333,2.0847175,2.7222166666666667,1.0798122222222224,2.60118,4.8967366666666665,3.485133333333333,1.0939225,2.9143866666666667,1.3348625,2.562413333333333,2.6404566666666667,4.82665,2.909636666666667,2.3254433333333333,4.544772666666667,2.7643566666666666,2.217685,2.66199,2.44037,1.8160733333333334,2.878353333333333,3.4387000000000003,3.0304066666666665,2.8780033333333335,3.0553866666666667,2.631136666666667,2.3668075,3.7601725000000004,3.7601725000000004,3.05608,1.9412399999999999,1.8917,2.424603333333333,5.5257033333333325,2.8882366666666663,2.0248633333333332,1.5651975,3.074863333333333,4.131815,2.5351933333333334,1.10794,2.85757,1.4366966666666665,3.9539000000000004,2.2417700000000003,2.5583566666666666,2.12428,3.4107000000000003,1.261502,1.6899600000000001,1.5317699999999999,4.154843333333334,2.699503333333333,4.059825,1.0204377777777778,4.12876,1.99178,2.36227,1.7010560000000001,1.569265,3.1974933333333335,23.59438293290043,6.678013333333333,2.7256733333333334,3.4472208333333336,2.3919,10.080207333333334,3.1355066666666667,0.99264375,2.6272066666666665,2.4240666666666666,2.09942,2.9057066666666667,2.71138,2.5976399999999997,0.9606239999999999,3.0107533333333336,2.52203,3.0216366666666663,2.97551,2.7305966666666666,2.1277066666666666,2.4156333333333335,2.9457866666666668,2.6169933333333333,2.3339525,1.627986,5.281861666666667,4.564825,2.3545075,2.886825,2.32096,2.500226666666667,8.005806666666667,1.8663066666666666,4.952115,2.280275,1.744135,7.52017,2.8931466666666665,2.7601099999999996,2.448435,1.753724,1.4289746153846152,3.320543333333333,3.6136666666666666,4.265785,1.60563,3.7657333333333334,1.528085,1.528085,4.027765,4.39835,3.1679977142857143,3.1679977142857143,6.168083333333334,3.502625,0.418157,11.371917814407814,1.2032633333333334,0.9643228571428571,3.7151975,1.4303649572649573,1.7731925,5.9720200000000006,3.77859,0.7446109090909091,2.13857,4.931866242424242,2.4911575,3.736945,1.3146328571428572,5.39595,5.06395,4.56199,3.3972395,1.999534,2.3706566666666666,2.7356766666666665,2.4990866666666665,2.10356,4.98474,4.43159,4.395505,1.929695,4.721755,3.989315,2.93495,2.199185,4.712255,2.53964,8.5048,6.8138024999999995,1.8216775,2.508835,1.834194,4.563733333333333,4.563733333333333,3.0218133333333337,2.7831333333333332,2.9562150000000003,5.1725,9.915992500000002,4.175075,2.457055,5.4055,3.9676,5.093,1.913816,0.8100725,1.3407533333333335,4.69481,4.8987,3.6590000000000003,2.57158,3.717,2.251403333333333,3.363855,4.68993,3.3541,5.30585,3.0121800000000003,3.5981066666666672,3.3350666666666666,3.2323766666666667,3.2906066666666667,6.09995,2.8383,5.40625,5.10475,3.501295,3.343675,3.343675,5.735555833333334,11.9924275,3.6468000000000003,5.934245,7.3769961111111115,3.70069,2.6010166666666668,4.038455,1.33286,3.740025,2.31742,2.9862866666666665,2.85676,3.0820133333333337,2.11068,2.47141,2.62982,2.5916633333333334,2.8311233333333337,3.22583,3.826915,2.5435266666666667,2.9438866666666663,3.85888,2.7797199999999997,2.5331766666666664,1.164,2.0969525,2.8623333333333334,2.292613333333333,2.56049,2.484433333333333,3.385533333333333,2.2925333333333335,2.4894266666666667,2.509133333333333,3.05338,2.7087266666666667,2.80432,2.4997233333333333,3.10975,2.8160666666666665,3.3745679999999996,2.647256666666667,2.53854,2.2891033333333333,2.3711766666666665,2.5588933333333332,3.3739333333333335,3.3060899999999998,2.30979,1.9884725,1.9884725,0.7982216666666666,1.5522040000000001,3.731575,3.12211,2.6423099999999997,2.11068,3.4057333333333335,1.2429814285714287,2.60842,0.574216,3.0002766666666667,3.13034,3.368805,2.94041,2.627803333333333,2.5979733333333335,2.897876666666667,2.5804199999999997,3.3301866666666666,4.373586666666666,1.511806,2.60615,2.4788466666666666,1.8449066666666667,2.1326933333333336,2.76783,2.832496666666667,1.64224,2.6749233333333335,2.6209333333333333,2.53173,2.5602233333333335,2.6697466666666667,2.889366666666667,3.2261900000000003,1.38011,2.8745833333333333,2.379093333333333,3.7136,3.5108333333333337,2.005105,1.80168,3.2317666666666667,2.5059633333333333,3.3968666666666665,2.68941,2.4701566666666666,4.8803325,3.0341733333333334,2.0148733333333335,1.503618,3.5012333333333334,6.045246666666666,3.1239566666666665,3.5325,2.81613,3.1131933333333333,4.614501333333333,1.598738,1.0826,2.4492066666666665,1.8232583333333332,4.393805,2.7013866666666666,3.2000933333333332,2.9772166666666666,3.14671,2.1368733333333334,3.07498,2.3733525,1.5899480000000001,2.82084,3.45971,3.5965825000000002,3.20032,3.498695,1.5581275,2.851535,3.28781,2.851295,2.1827133333333335,3.5156666666666667,3.923,3.832433333333333,1.1337875,5.677821,3.2457925,1.5028683333333335,3.20969,3.199005,2.945845,3.743075,1.91724,1.91724,3.4029333333333334,3.025586666666667,3.05571,5.01545,4.254995,4.174054666666667,1.3526880000000001,2.93913,2.467636666666667,4.1330775,2.98545,4.819559999999999,2.6334933333333335,2.373603333333333,2.37369,3.589685,3.82571,1.657772,3.1387933333333335,2.87085,2.187265,4.39706,1.2450916666666667,2.97514,4.43936,2.704275,3.60898,4.16469,1.6738075,1.6074400000000002,2.4583275,1.0708183333333332,2.0656469047619046,2.043225,0.44678357142857145,3.79266,2.15433,4.48965,4.1755,2.87437,4.752025833333334,3.20922,3.1132299999999997,3.474,2.3482366666666667,2.99259,2.735023333333333,2.9509899999999996,1.9993766666666666,0.6618138461538461,2.323236666666667,0.60351,1.9116799999999998,2.4646433333333335,3.184673333333333,2.9582766666666664,1.3198933333333334,1.368595,4.044815,4.561235,3.10656,3.2623025,3.41255,1.8701775,3.819155,6.884012222222222,3.40469,5.617305,1.495865,3.897,1.7599475,4.11781,3.46746,2.01858,3.681645,2.99272,3.597925,3.93279,2.06154,3.83184,6.0912975000000005,4.930725,3.35352,3.09618,1.6859425,1.87457,3.37802,3.311425,3.20141,3.44858,3.672775,3.308565,1.5984225,3.7462,3.000655,1.6449575,4.10813,0.9773416666666667,3.24178,1.64862,3.912395,4.67532,3.68695,2.695425,3.7235,3.259085,1.9200875,2.3105,3.8032,1.884575,5.4660925,4.03362,4.42295,2.577945,2.74779,4.38187,4.43566,2.308422,2.308422,5.611745333333333,3.611082,2.50672,2.91202,2.0017033333333334,2.724625,3.267335,3.6167066666666665,2.561317,3.211335,1.008176,3.47859,2.980025,4.119065,2.42904,1.47229,1.289805,2.99273,5.71122,5.36343,3.48886,1.38554,3.62536,3.380895,0.765335,2.967655,1.17202,5.41664,1.355755,3.772585,1.8795575,1.3198933333333334,2.65717,2.33079,4.32745,7.021476666666667,3.796135,4.204031666666667,2.337235,2.850155,3.986245,3.693095,4.50717,4.24354,1.0044675,1.64885925,1.03421625,2.2743,2.04134,4.745985,1.03421625,4.36199,2.222915,1.3431775,1.3431775,1.6449575,3.641205,4.344055,4.0609,1.451354,1.451354,0.8978033333333334,2.950195,2.076395,6.033995,4.051805,3.47105,2.6005833333333332,0.9856,3.528665,2.79885,4.29227,3.426505,3.9239675,3.9239675,3.41628,4.08871,1.7681175,2.47179,0.9860211111111111,1.7134533333333335,3.454945,2.285836666666667,3.4475558333333334,3.4475558333333334,2.802225,4.597435,4.632355,3.195705,3.646805,4.18909,2.4631233333333333,4.327890833333333,2.641085,3.647755,8.40371,5.07345,2.714265,3.16811,3.05484,4.837795,2.971298,7.68754,4.273305000000001,4.32766,3.35453,3.834,3.748615,4.317075,4.83248,2.183925,4.08999,6.087422500000001,2.505945,2.0347324444444443,3.025465,3.357175,3.419055,5.21255,2.1036266666666665,2.05632,2.529055,3.0368399999999998,2.7694500000000004,6.404554666666667,1.3656425,4.895601666666666,4.895601666666666,3.25498,3.7958833333333333,3.043925,2.398283333333333,4.46906,4.029011,1.9902859999999998,3.898775,4.00705,3.457444166666667,2.85111,3.099685,5.982081666666666,3.47841,4.983745,3.078495,4.176895,4.11775,3.701895,3.025586666666667,1.96164,2.54766,3.961755,2.86553,3.2951816666666667,2.943195,6.115783333333333,2.434235,1.6216625,3.053669166666667,2.3573566666666665,3.661685,2.883825,0.765335,3.04763,4.085095,3.928735,5.9574050000000005,3.038455,2.98449,2.931373333333333,2.931373333333333,3.6035575,4.03578,3.650925,2.1174075,5.73037,2.0587675,4.56532,3.488015,7.63125,2.82032,1.1419166666666667,3.262275,4.43143,0.607825,4.031475,2.94166,2.904515,3.157355,4.28887,2.1543533333333333,2.53467,9.15115,3.49923,2.77978,1.355755,3.41681,2.683135,2.169165,4.06415,5.240665,1.639645,1.1348,0.9617583333333334,4.125645,3.530265,3.11343,3.3122,3.3122,1.5984225,2.31192,2.9483822222222225,0.7839022222222222,2.820325,0.9160825,1.5581275,3.00706,3.353125,2.522365,2.52722,2.2489266666666667,4.064135,3.25893,2.9288,2.992795,2.6098,4.29291,6.881164999999999,4.09852,0.8646825,2.669966,8.77174,4.58777,3.951375,1.0655125,4.54572,1.4050633333333333,3.2264375000000003,3.2264375000000003,3.632065,8.183980833333333,0.8055366666666667,4.81403,4.549805,2.256276666666667,4.06601,3.687285,2.15762,9.593779333333334,1.673165,2.31558,3.01666,1.6420533333333334,4.175594333333334,2.58597,2.849265,2.9160079999999997,2.71999,3.328285,1.020435,7.27302,3.924825,3.928645,3.739625,1.8502825,2.695425,3.4639349999999998,3.3938,0.5980946153846154,3.581235,4.295945,4.65644,2.060245,1.185338,3.972625,4.300845,8.82438,0.7623438461538462,0.622285,0.622285,1.6667766666666666,1.4894999999999998,1.424578,1.8275666666666668,4.519455,1.2157033333333334,0.8556,4.0177725,3.53406,1.2526475,3.482725,4.6811,2.92305,0.722834,1.88566,9.150875,3.698501666666667,3.399825,2.10237,1.5035275,2.5492500000000002,2.48201,4.476555,4.565515,3.82158,0.8640985714285714,1.505938,0.9156040000000001,4.2353974999999995,4.373705,4.12446,0.7839022222222222,1.68099,3.674135,2.261698571428571,4.518268333333333,0.970355,4.665095,0.6234716666666666,0.6234716666666666,0.6234716666666666,9.315059999999999,4.032405,0.9160825,3.833315,4.617595,2.65225,3.12622,4.437695000000001,2.83113,1.800821111111111,1.7112833333333333,0.722834,1.488169,0.5320111111111111,0.8363516666666667,1.2150083333333332,3.411315,3.637995,2.0241925,7.333873333333333,4.8972975,0.5811544444444444,5.87825,5.121090000000001,3.36443,4.528115,7.887680666666667,3.759925535714286,4.8972975,4.513305666666667,2.305973333333333,4.273885,3.629255,6.792145,3.425345,0.446342,1.453578,3.681225,1.794192,1.1348,3.9688,2.4345166666666667,1.701755,3.178025,1.70098,4.301585,4.394165,3.979475,4.79019,6.33151,2.671225,3.88341,1.17202,2.1611075,3.55179,3.087215,1.9902859999999998,3.95482,2.51407,4.772655,2.970795,2.419315,3.3111625,1.7841360000000002,3.566385,0.7839022222222222,2.1945989999999997,0.9617583333333334,1.64624,3.46237,1.3656425,1.2150083333333332,2.068435,2.82167,7.49748,0.8640985714285714,1.0655125,1.2027100000000002,3.658145,3.500695,1.2027100000000002,4.03978,2.1611075,0.607825,0.7839022222222222,1.6667766666666666,1.17202,0.44678357142857145,1.6910560000000001,4.231865333333333,2.256276666666667,1.3604383333333334,2.7997,1.1337875,1.673165,2.54107,1.7112833333333333,4.442005,2.54107,0.765335,2.7492289999999997,2.356705,0.08229818181818181,0.08229818181818181,0.08229818181818181,0.08229818181818181,0.08229818181818181,3.5105,2.7774966666666665,2.5340833333333332,2.67985,5.2181,3.99222,1.7010560000000001,3.782385,3.621745,2.13771,5.07964125,2.8271,2.47469,2.491165,2.723245,4.52663,7.7986683333333335,2.2277425,1.9590100000000001,3.242828214285714,1.0080957142857143,1.3810983333333333,2.4871133333333333,1.9974533333333333,1.497905,2.7494666666666667,2.180823333333333,2.592093333333333,2.7126,2.6487233333333333,3.87853,3.36282,2.6361933333333334,1.24295,3.614645,3.701185,1.5343566666666666,1.37082,1.37082,1.37082,3.41721,2.6324666666666667,1.1136066666666666,2.165226666666667,1.2255014285714285,4.39593,1.5615433333333335,6.211074999999999,3.4808875,2.66822,3.1346380000000003,3.1346380000000003,5.230206666666667,2.84371,4.335825,4.957245,2.0881725,3.10797 -GSM1946764,0.0,1.959395,1.959395,1.5594266666666667,4.543965,6.17235,2.4211247368421054,1.70497,7.824297205882353,4.70734,3.30147,3.655,2.220405,3.426415,4.51091,1.9044440000000002,1.548912,5.16275,2.4224366666666666,2.3311475,4.77718,5.361608333333333,3.888985,2.41923,1.8703980000000002,4.420745,4.79507,4.22476,0.7082783333333333,1.670563611111111,2.090876111111111,2.0898925,1.589225,1.1654785714285716,0.6924341666666667,3.1347010714285717,1.510375,1.9680525,1.191865,2.102715,1.2412925,1.09949,1.097114,1.527748,0.941564,0.92605,0.723256,1.2350428571428573,1.735962,1.8503479999999999,1.551886,1.874548,1.6787299999999998,18.85758691666667,0.37825133333333333,0.854258,1.1156840000000001,1.779696,1.596918,1.8013100000000002,1.0386785714285713,1.0386785714285713,1.0386785714285713,1.1483183333333333,1.011728,4.8787075,1.222385,2.506725,2.084455,2.62365,1.00284,2.23723,2.3224275,2.04853,1.5547075,2.09044,1.5569075,1.6434475,2.3931033333333334,4.047375,4.797145,5.4426,1.5650933333333334,4.82845,4.540076666666667,4.38027,4.03857,1.09157125,7.39797,0.57107875,0.57107875,2.3280625,1.1981228571428573,16.1742,4.79862,5.6676,5.71575,4.41465,4.16082,5.4187,0.48324055555555556,2.4141320833333335,1.8710875,2.3973025,4.662065,3.881565,1.5361,3.3017466666666664,3.4301999999999997,3.2108566666666665,3.6306666666666665,3.31072,5.08525,3.0308635,4.819445,3.0315066666666666,0.7197254545454546,1.6303439999999998,2.694625,5.04865,3.7193,0.582844375,3.567405,3.91296,0.83478,4.953365,1.7444815584415587,2.266825,2.8839,2.0822175,4.265835,5.7535,3.25074,2.8725533333333337,3.4108,3.0131,4.271515,3.2581,5.6677,3.43132,4.725865,3.40535,2.80504,3.563745,2.6297,6.775781666666667,3.42991,4.0111,5.4591,3.072425,5.24355,0.7718922222222222,9.834610238095237,3.645535,1.8602800000000002,1.8765100000000001,3.405666666666667,2.372,4.95549,5.5902,2.1012275,5.112488333333333,2.736965,4.8521,2.1012275,2.8436766666666666,4.353985,5.312021666666666,4.17324,9.041416666666667,3.52387,4.97744,2.938215,5.2945,4.8162,1.9013166666666665,7.95541,4.41391,4.24617,3.5719,3.54828,3.318225,2.187825,6.310805,2.281075,4.06181,4.021635,5.4715,5.1314,3.801435,1.5772116666666667,2.68382,2.890755,1.9005625,1.9005625,6.176571714285714,2.985225,1.9107566666666667,4.320935,4.785705,2.74465,1.4639783333333334,0.8615044444444444,6.8798,2.847665,6.925,3.18826,4.267905,3.7284,2.89982,3.777385,3.558135,3.79127,4.20224,5.83815,2.777765,3.65177,9.045476666666666,5.1688,3.6072333333333333,3.1670166666666666,2.7651800000000004,4.0384,4.614148333333333,2.128395,2.770713333333333,2.3261833333333333,1.868112,1.7255133333333335,2.5736266666666667,1.6930425,2.018455,3.1692733333333334,2.9099733333333333,2.407713333333333,2.7631566666666667,4.540076666666667,3.448155,3.577135,3.625845,4.640395,1.3613733333333335,1.84221,2.8286288571428573,2.18634,2.5167699999999997,2.2626233333333334,3.3990666666666667,1.8762180000000002,1.32051,2.77378,0.684656,1.6117133333333333,0.54237,0.54237,1.46403,2.6609933333333333,2.393196666666667,1.5445133333333334,1.5422733333333334,0.3361961538461538,2.6376,0.684656,1.2641366666666667,0.1991510810810811,1.43703,2.0041725,3.5281333333333333,2.1747166666666664,2.16544,2.4949,2.2060333333333335,2.369806666666667,2.5076199999999997,2.339376666666667,2.1774733333333334,2.6834399999999996,1.90702,2.65511,4.06058,0.6751683333333333,1.8378933333333334,2.5633666666666666,2.02284,3.3510066666666667,1.461498,2.5173666666666668,2.1334566666666666,4.242923333333334,1.9787566666666667,7.038375238095238,1.7284285714285714,2.79035,2.06534,2.13107,3.500033333333333,2.0335475,1.8138225,4.352195,2.7028700000000003,2.166565,3.96517,4.22704,4.37331,3.69019,2.231275,3.31904,4.612400666666667,3.84219,3.841255,4.293735,4.49291,2.98093,4.62353,3.33324,0.8762075,4.937465,1.2197216666666666,5.07475,3.709665,5.805906,3.700825,4.161915,0.93461625,2.190525,3.49394,4.05104,0.7870614285714286,1.198228034188034,2.221407619047619,3.8284714285714285,5.3606,5.648764,2.318765,3.22568,5.2728,0.33482214285714285,3.4008,2.34452,0.99142875,5.1006,2.02624,11.81972,1.2709,1.4325575,2.4169133333333335,2.29733,2.176769342105263,4.977829342105263,0.40947684210526314,1.6671733333333334,2.8899399999999997,1.025085,3.8289666666666666,1.0681714285714285,5.41475,3.777025,2.0533066666666664,6.17535,5.7882,2.621625,1.1208914285714286,4.38303,4.983865,4.199015,0.8763363636363636,8.182333333333332,2.976933333333333,4.39575,2.6503166666666664,2.5418933333333333,4.470555,2.35106,2.8244900000000004,2.2400066666666665,2.46162,3.31477,3.0435866666666667,0.342286875,3.94466,3.74719,3.83247,3.66679,4.46662,6.129611,3.988305,1.6450975,5.58095,4.740285,4.28147,4.498205,1.26742,2.61977,3.3534,2.4614733333333336,15.543144999999999,3.1166,3.745535,4.60998,5.8806,2.521285,5.200135138888889,1.6336925,0.7815277777777778,2.7558,3.65946,3.88359,4.19703,6.504413333333334,3.0528666666666666,2.247925,2.10356,3.4699333333333335,5.0219,2.266285,0.3782650892857143,2.991317608695652,1.9371025,1.148945,0.5631113936335403,0.7479576979813665,0.3782650892857143,0.3782650892857143,0.3782650892857143,1.14337,1.3125025,0.91146,1.384495,4.3932125,0.21872823529411764,11.504439713203464,3.6038,2.9247566666666667,4.47952,4.517505,3.852385,2.14294,4.8907,4.106902333333334,4.337575,4.1634,0.7008176923076923,3.3692666666666664,4.226689743589744,0.5597935714285714,3.142435,2.9464633333333334,4.74678,0.5082363636363637,1.76546,4.60478,3.38527,2.0395025,1.7819233333333333,1.6008866666666668,3.3371,3.849445,2.98571,2.79778,5.3963,5.8471,4.95798,3.3633666666666664,3.729475,6.607258333333333,3.7202333333333333,5.23745,0.41387857142857143,3.2758766666666665,4.0240149999999995,1.9922866666666668,2.53181,2.8286750000000005,5.738056666666667,0.6682008333333332,2.785725,4.590685,4.31936,1.0227171428571429,4.93433,2.749765,4.914515,3.1947266666666665,4.418885,3.462645,4.14563,1.1637116666666667,3.482,2.67993,4.88642,4.231535,4.70644,5.8536,4.379245,2.624555,5.74353,2.3109266666666666,3.319235,3.2282433333333334,2.8961799999999998,2.78415,2.1971133333333333,1.8325,1.5768833333333332,2.0624866666666666,0.7772771428571429,1.5554966666666665,2.5765833333333332,2.1134633333333332,3.09761,3.2772400000000004,2.956236666666667,0.9796366666666666,5.222,3.4781666666666666,5.45043,2.6594866666666666,3.2498133333333334,2.9559166666666665,1.86925,1.86925,2.628666233766234,2.628666233766234,3.4907573051948053,0.5094357142857143,1.7084566666666667,2.43162,3.7484333333333333,2.1476419047619046,2.1476419047619046,2.1476419047619046,7.624236607142858,4.45840238095238,0.9744727272727274,2.97721,5.241020833333334,2.47541,4.94498,3.14436,2.32699,4.27455,3.051363333333333,3.2065066666666664,1.08243375,1.82062,3.5958666666666663,2.3653166666666667,2.5225433333333336,5.9874,4.294133333333334,3.9017666666666666,5.100906666666666,2.061783333333333,2.8403899999999997,3.1764500000000004,1.0636033333333335,2.1370133333333334,4.727926666666667,8.0081525,1.5730525,2.85337,4.93304,1.894486,1.92687,1.92687,1.0608125,4.70463,7.88795,4.33133,5.180256,4.60615,1.7983333333333331,4.287175,3.636365,5.0481,5.191216666666667,0.35158263157894737,2.9071,2.53902,4.28366,3.9079,1.895554,1.9226725,2.588425,4.429505,4.055375,3.322405,2.333415,1.499526,6.82584,5.1007,4.825015,3.541,5.19945,4.912535,5.1897,3.63986,3.5407425000000003,1.927155,1.2088142857142858,2.702275,3.96429,3.81093,5.467897499999999,5.7193525,2.2978575,1.7353666666666667,2.627126666666667,2.6697566666666668,3.04163,0.6729121428571428,2.05085,3.5009,1.1919875,5.25135,3.15536,6.007225,1.192304090909091,1.192304090909091,4.117855,3.62144,3.7495,5.52185,2.728953333333333,2.2209233333333334,3.56987,3.064605,2.1464125,3.5177,2.59122,4.06144,3.6354800000000003,3.954335,4.71275,1.0847077777777778,2.704615,4.26446,4.944965,3.199365,2.4713166666666666,1.873425,0.8896122222222222,0.8896122222222222,0.8896122222222222,0.8896122222222222,1.6773355555555556,3.7797074999999998,3.7797074999999998,1.86427,6.794921666666667,3.65658,4.374025,3.251473333333333,2.758925,5.0535,4.11898,4.83502,5.3629,1.8156075,4.09105,4.04606,2.696565,3.2804,3.343145,2.73173,4.092915,1.850215,4.91434,1.65584,3.4901516666666668,2.96741,1.786115,1.1306783333333332,2.827875,4.54647,1.4501279999999999,0.8284444444444445,3.982335,1.1866475,5.096876666666667,4.57029,1.3746957142857144,3.51083,0.7355011111111112,2.6207533333333335,2.745506666666667,2.6320566666666667,2.46539,4.116045,2.8930066666666665,4.97472,5.6561,4.206325,4.556625,2.2870225,1.3005757142857142,4.038385,5.1504,1.4696975,1.4696975,4.022895,0.25881466666666664,2.0653833333333336,0.25881466666666664,0.25881466666666664,0.25881466666666664,0.25881466666666664,5.5036,2.6427666666666667,3.324375,3.53563,3.18214,4.7244,2.65539,0.9533175,0.9533175,0.970735,0.970735,3.675095,1.81747,4.53744,1.73208875,1.73208875,5.69376,0.5177714285714285,2.593175,7.497726666666667,4.90095,3.205635,3.75037,1.03535375,2.19022,2.0460575,4.71384,4.46384,4.20971,3.70966,1.291882857142857,2.92775,2.0237225,7.4051,1.71668,4.40515,4.83778,2.92115,3.81376,6.18316,7.61296,4.08187,4.832225,4.255155,2.5939,3.118355,2.32122,2.348585,1.8136,3.739835,3.594955,5.704458333333333,6.52568,4.61529,1.0606233333333333,1.786585,4.080985,4.1806,2.15207,4.60422,3.80604,4.6998,1.76098,4.0123,1.5542566666666666,6.321086666666666,2.838573333333333,2.38482,2.3186666666666667,2.38966,3.122866666666667,3.4147,3.4751,3.1374566666666666,3.444366666666667,2.21524,3.89304,3.128075,3.038345,0.4001665,2.929885,4.293985,2.667675,5.72845,4.972095,4.77251,6.965057999999999,4.938715,2.227516666666667,4.42896,5.2197,1.62709,4.681685,5.5094,5.2765,4.931235,3.2299,5.5312,5.1503,4.249875,5.567126,8.144375,4.326445,1.2860183333333333,1.4258066666666667,2.658865,1.9516079999999998,4.628,3.979575,5.493845,2.59418,2.36507,2.7475166666666664,2.43014,2.5997266666666667,1.0474833333333333,0.5016435294117647,3.994535,3.959645,3.8046666666666664,4.03778,2.948915,3.4450000000000003,5.586598333333334,3.1356633333333335,0.5946176470588235,3.231415,5.72175,1.94781,1.682832,3.6763,3.385305,2.4480766666666667,3.9134666666666664,4.154665,2.61529,2.2059533333333334,2.3236733333333333,2.48224,2.63471,4.008571666666667,5.1154425,6.801490166666667,1.528732,4.99721,3.5210954166666664,5.437942416666666,2.763033333333333,2.953145,2.29751,1.9276200000000001,1.387255,1.387255,2.62717,2.3809400000000003,2.5858666666666665,4.41272,1.639198,2.37635,1.90359,0.52920875,3.705845,0.6643791666666666,0.98000625,3.172295,4.482055,3.60499,1.775225,4.826405,3.4039,0.7946642857142857,4.62496,4.01765619047619,3.4161,2.499535,4.866945,0.2886486206896552,2.3014111666666666,3.059735,1.3871125,3.57545,6.7894,2.33199,1.2820166666666666,4.693385,3.736995,2.71912,2.71912,3.39198,2.695775,4.924025,5.647721666666667,5.0629,0.9974022222222223,2.9008833333333333,2.307986666666667,4.971275,5.27115,5.604,4.94122,4.365933333333333,3.9831,3.843666666666667,3.667033333333333,4.175033333333333,3.015143333333333,3.15559,0.6409807142857142,2.455565,2.472255,3.475675,3.24657,3.3443666666666663,0.7533124999999999,2.65423,4.0275615,4.71141,5.9584,5.04,2.0823575,2.0823575,0.8919900000000001,3.568375,4.65047,4.06769,5.228517142857143,3.16743,5.0235,0.5844072727272728,3.124185,4.048465,4.49061,3.7939716666666667,0.8441971428571428,3.05314,4.19276,5.67825,3.721415,5.02905,2.729225,4.144155,1.565525,0.9661914285714286,2.7434100000000003,5.36545,4.48007,3.14908,1.4247699999999999,4.025535,2.502825,2.891875,2.7135833333333332,3.0419366666666665,4.453643333333334,3.04701,1.768618,3.5916,1.4143221428571429,2.8753166666666665,2.50955,2.3377575,2.927466666666667,2.9626699999999997,2.3037199999999998,2.879963333333333,3.797135,3.0838433333333337,3.593663,2.4504233333333336,1.80944,4.098,2.9657199999999997,2.3817366666666664,3.593663,2.5258266666666667,0.8288163636363636,2.4500225,1.0565566666666666,2.23568,1.63084,0.9347272727272727,1.8939175,1.9190025,2.6489469999999997,2.7609,4.811425,1.50457,4.813245,3.2866999999999997,1.578888,2.3708,2.6060933333333334,1.9366933333333334,2.8715166666666665,2.9045966666666665,2.611410909090909,2.03631,1.826958,3.6588666666666665,2.4289666666666667,3.0115066666666666,3.1897066666666665,3.252076666666667,3.6430000000000002,2.252946666666667,4.2094,3.6129333333333338,3.9079333333333337,3.065606666666667,3.6085666666666665,3.7967,1.7759133333333335,10.283750000000001,4.475475,4.45246,3.0479,2.869525,1.936905,3.894495,1.7155799999999999,4.120165,4.548685,1.3756220000000001,2.5311533333333336,1.135505,2.429136666666667,1.6261299999999999,2.5586766666666665,5.034528333333333,3.216136666666667,3.599225,5.0759,0.73221125,1.6279219999999999,1.02825,3.528835,10.832805,3.816133333333333,6.8212,2.0168,5.3517,4.6106,2.621325,5.1267,0.2862635294117647,0.8236085714285714,5.425,4.467605,7.3361675,2.1097175,4.27753,5.87205,4.696605,4.619065,3.676255,4.765425,3.90124,5.923375,3.892895,3.68246,3.126855,2.0835966666666668,1.91393,1.4491129583333335,2.4855266666666664,3.848,5.06075,1.515188,8.91765,2.2230266666666667,2.9198091666666666,1.042186,1.042186,7.402585416666668,2.86018,2.2085175,2.217025,2.6491366666666667,2.16986,1.0500466666666666,3.669424166666667,2.7651533333333336,0.5583228571428571,1.7893866666666665,3.4098800000000002,3.4098800000000002,1.1343833333333333,2.5057733333333334,2.318243333333333,2.715215,1.32352,1.8078266666666665,4.770788,2.724266666666667,2.7719,1.375455,1.375455,4.376105,5.70845,4.65722,3.287235,3.6434,5.8519,2.70482,3.1661099999999998,3.2625766666666665,3.925935,1.2057933333333333,3.4263999999999997,2.712625,3.70271,2.1515633333333333,4.82089,3.420785,4.14148,3.585205,5.590613,0.9669500000000001,2.091395,2.01204,3.503115,4.44778,3.697015,3.967815,4.035315,2.915195,1.6835725,4.178935,3.2563,3.50607,2.3981666666666666,0.82497625,3.306345,4.33465,4.943,1.2002033333333333,3.10576,2.6468766666666665,2.162056666666667,1.7077794117647058,1.7077794117647058,1.13069,2.2081766666666667,1.108702857142857,1.349332,4.75078,4.6887,0.5086809523809523,3.53418,3.3917,3.92132,5.58545,0.4166525,9.338854999999999,5.61395,3.327525,4.342945,4.56405,5.539917142857142,5.1351,7.09083,0.7152227272727273,2.88664,5.50865,2.872116666666667,2.0114225,2.01356,4.67917,5.4638675,2.4828203571428573,3.291173333333333,3.2906433333333336,2.0522875,4.65758,11.1073,8.745122916666666,3.985466666666667,4.562955,3.1727066666666666,3.037275,3.87548,1.941608,3.0596866666666664,3.69865,5.00665,5.09655,4.91758,6.705353333333333,2.4820433333333334,4.96549,4.657865,4.83203,4.92669,8.033168333333334,4.1244,6.08715,3.415895,2.945455,2.925075,5.84955,3.71931,5.1382,2.193285,3.264416666666667,3.3791,6.0601,4.191485,4.15027,1.42933,0.89642,2.500025,0.608196,3.60483,3.63221,3.36314,2.954025,2.1618999999999997,3.081175,2.5393,2.970136,1.846612,3.1536437499999996,2.899175,2.263355,2.5891,3.7870280000000003,1.5231733333333333,3.1063108333333336,5.46105,3.6734000000000004,1.4347625,2.757873333333333,3.8350091666666666,3.8603620000000003,1.5861,5.67105,5.63745,2.2948066666666667,2.962986666666667,31.16229937309749,3.3896333333333337,1.7187833333333333,3.9959666666666664,1.54689,2.62724,2.9273733333333336,3.5069666666666666,1.94255,2.905625,2.1513275,4.034295,3.516666666666667,2.571975,1.48137,2.21206,2.903525,0.38540500000000005,1.0708025,3.043003333333333,1.8300260000000002,3.30842,1.5861,2.3256433333333333,26.07030644444444,5.22425,3.85488,3.562025,2.72215,2.5521,2.7598233333333333,2.3823975,3.9615,5.385332999999999,5.3771,1.617298,1.8631280000000001,2.12236,2.497045,3.852355833333333,5.4138,4.84301,4.45318,0.20147744680851065,5.13025,4.9487925,3.77838,9.23222,1.048885,1.048885,2.9933266666666665,2.89847,5.62225,2.041462222222222,1.0595855555555556,4.73017,1.8603375,4.17229,4.262985,3.42067,4.18002,3.90854,5.2397,2.76906,0.7186322222222222,3.18153,2.1200441666666667,4.20098,7.864125,4.5001,1.8326,1.8326,7.180685,4.995535,4.07538,5.71645,2.2661599999999997,5.421703333333333,1.3850300000000002,1.55074,3.010353333333333,1.9673800000000001,2.783485,2.7458833333333335,3.758535,4.4794374999999995,3.950745,5.42925,2.318095,2.780875,1.9299725,2.675375,2.450495,2.0476025,2.087765,4.691669166666667,1.809125,3.296678095238095,2.2597766666666668,2.9750333333333336,2.56789,1.9491566666666669,1.4287714285714286,0.996486,2.52664,3.8729333333333336,0.768105,4.611815,1.759915,5.73431375,1.9253575,1.4186675,1.3716625,1.4776533333333333,5.675231111111112,1.9281320000000002,3.0927433333333334,3.6008999999999998,1.282525,1.7666875,4.896092666666666,3.2495166666666666,1.9924933333333332,3.579,3.0185133333333334,3.0378233333333333,1.2420519642857144,0.2732825,0.2732825,0.2732825,0.2732825,0.2732825,3.80481,2.7566733333333335,2.5261,3.426266666666667,1.40338,2.6113666666666666,3.3223633333333336,2.413046666666667,3.636585,2.82302,1.7815833333333335,2.979616666666667,3.2806033333333335,2.277975,1.9283725,3.52598,2.64157,3.6767,4.99554,2.681783333333333,2.52817,2.5326999999999997,11.151203333333333,4.878545,4.59356,5.0872,4.505585,2.7819299999999996,4.983685,4.07135,4.602755,5.581123333333334,4.282055,3.196835,2.3762,3.826785,5.3838919999999995,3.827245,17.447577190476192,1.19734625,4.22285,0.8387344444444444,1.300625,2.951275,4.501205,4.19486,4.897545,1.6604583333333334,2.414765,4.069995,2.1402933333333336,4.72322,3.2988764285714285,2.73669,0.6332283333333334,2.9421533333333336,4.690545,2.45896,2.52255,2.2201625,20.3838375,1.416928,1.3834875,2.6586633333333336,0.31038269230769233,1.8212725,2.9828833333333336,1.98743,3.11466,2.69775,7.7993875,1.8529075,2.5558,2.21777,2.24474,1.5966766666666665,3.548033333333333,3.062605,3.758605,3.3180099999999997,1.9573775,2.596255,3.2072255555555556,4.98466,0.45636583333333336,3.6192666666666664,3.08826,2.914025,2.141305,3.664595,3.419975,1.5328600000000001,2.2934733333333335,2.17571,1.51424,1.9209033333333334,3.39282,3.21601,0.7857383333333333,3.20389,5.2165,4.240175,2.2405340000000002,2.2405340000000002,3.0430200000000003,4.570295,3.180555,3.27881,2.300275,0.8918381818181818,4.341735,3.58175,6.15965,3.75563,2.328182,2.328182,1.369855,3.599345,5.13495,4.363485,4.19813,2.9978466666666663,2.333903333333333,4.41903,3.524525,4.146915,2.9648299999999996,2.5435866666666667,4.205714666666666,3.2165933333333334,2.636086666666667,1.90729,3.86493,2.722,1.59711,3.709705,3.489895,4.744035,3.6654666666666667,4.90323,4.51252,6.49278475,3.960615,2.09502,4.946365,3.139815,7.365914999999999,2.590176666666667,1.3371633333333335,4.482575,3.5519,5.1399,0.6601557142857143,0.8766333333333334,3.508,3.659665,2.190151363636364,4.17963,2.71799,2.963765,8.984488,1.955288,1.191642,3.74113,2.79188,3.249705,5.0893,6.1669149999999995,3.141955,2.0987033333333334,3.18365,1.8252899999999999,3.3959333333333332,8.481493645320196,0.8441673809523809,1.00317,4.801315,0.5223733333333334,1.7744425,2.3089,3.00315,3.055925,2.968025,4.677045,2.4646625,13.335370000000001,5.3064775,2.4393525,2.4393525,4.288505,0.830345,5.3021666666666665,4.1404,4.201345,6.125451666666667,3.490155,5.2632,1.5044383333333335,2.678215,2.66777,2.576835,2.941735,2.86929,3.010185,3.539825,3.520905,3.08439,2.91004,2.915805,4.42762,4.519485,3.1114599999999997,3.3127833333333334,4.9957650000000005,4.250865,19.15747880952381,12.204318095238095,3.2977285714285713,0.6979574999999999,1.5035857142857143,4.512035,3.43989,3.0851068910256414,2.147075,0.9223933333333333,0.6576566666666667,0.627207142857143,2.08031,1.590046,5.185573333333334,3.3316133333333333,0.6973127272727273,3.29395,2.371155,1.91533,1.792322,6.81248,1.506412,4.53756,3.274175,3.058073333333333,2.33153,2.5520633333333334,2.5501400000000003,0.8052072727272727,2.896095,3.1881233333333334,3.9299773333333334,3.0748433333333334,4.767448333333333,3.57014,3.36321,2.44908,3.300715,6.747299999999999,2.120945,2.50145,2.589075,1.566955,2.6266,2.1220125,2.80855,0.938616,1.4334075,1.0784425,3.06969,4.47154,6.16865,5.50285,3.192285,2.5003,2.958475,3.3282633333333336,7.918616666666667,1.1225366666666667,0.409524375,3.50011,2.0421633333333333,1.543396,3.5144279999999997,1.264864,1.9601709999999999,4.2765249999999995,3.1606526666666666,1.1964233333333334,1.7965633333333333,3.7116083333333334,3.50978,4.646155,4.42701,2.1624325,5.2083,4.11514,0.8066307692307693,4.733995,3.94209,4.55461875,3.3938666666666664,2.40774,1.23977,1.3660025,3.480995,2.64359,3.21906,4.11603,2.698925,2.6086199999999997,3.090355,3.67787,4.51924,2.426945,2.65898,4.72889,5.9474,0.60545125,4.44054,1.920505,3.42943,4.173066666666666,2.1736775,3.055185,2.1708075,1.913165,2.58548,2.3497675,1.8955666666666666,5.3463,3.626285,1.3207985714285715,7.0267,1.1137266666666668,3.745135,1.7153766666666668,4.571125,4.177455,3.30016,3.04363,4.11007,8.25144,2.829665,3.58923,4.01683,3.595055,1.667525,7.79288,3.449435,4.353795,1.365195,3.945705,2.98294,1.1031475,2.11966,4.203805,2.33461,4.14126,4.888295,4.1725,4.666025,2.2027575,5.25475,4.0415,3.4831333333333334,2.576443333333333,1.5680999999999998,4.283245,6.19865,4.48338,4.413185,3.043685,2.35127,3.99642,3.418535,1.174699065934066,4.105775,4.689210833333333,3.90874,2.92336,3.50013,0.5423157142857142,0.5423157142857142,5.29035,4.38789,4.95496,2.51193,3.766205,6.02585,0.8257110000000001,4.48963,4.946885,4.717405,5.0869,5.0013,1.7879225,2.965945,2.155565,4.33281,0.70013125,4.17198,4.361675,2.729035,2.8621466666666664,4.387865,2.21118,3.29965,60.98271556709957,3.245495,2.5568633333333333,1.6882225,3.17182,3.930295,0.81804125,0.97240625,2.3487075,2.3487075,1.309766,3.254935,2.34398,3.8077360000000002,7.65438,2.97613,1.2177071428571427,1.408505,2.8012533333333334,4.131588333333333,0.948687,1.913685,1.3165,2.0338475,4.37146,4.32271,3.15699,21.529691257575756,3.743455,3.857795,3.230865,2.19035,2.99609,3.05192,2.606025,5.41147,1.485088,4.27424,3.284981023809524,5.9776074999999995,2.0419,2.584275,1.87469,4.573315,2.423436666666667,2.1745675,2.099673333333333,4.023968333333333,3.53026,3.23006,4.12984,4.605765,2.597975,2.813145,3.00801,2.816495,2.9333083333333336,2.273805,2.0848,3.346805,1.1437633333333335,3.683195,4.840755,2.728525,4.96053,5.0311,5.2476416666666665,2.1456233333333334,2.39218,2.641435,2.699925,3.94812,3.314145,4.717555,0.7422871428571429,4.219149333333333,2.994895,3.85364,2.458435,1.7353999999999998,3.647806666666667,1.2009333333333334,3.127785,4.423435,1.16697,3.612735,3.86733,4.78079,6.5378925,2.120725,2.874785,2.6190933333333333,3.8519,3.10617,2.5842533333333333,3.274343333333333,2.43802,2.3437666666666668,1.2113733333333332,2.167335,2.167335,1.9128733333333334,1.9736233333333333,1.7469999999999999,2.5043233333333332,4.011435,5.6746,4.79406,1.547085,4.3371,4.02835,3.434495,4.003725,1.91327,2.664775,4.653214166666666,1.96444,4.215633333333334,4.12716,3.50286,2.39251,3.3666506249999997,3.187165,2.986385,3.440895,0.14896408163265307,2.5224533333333334,7.588965,1.499704,3.3281,3.62486,0.9862985714285715,1.2535966666666667,1.87049,3.8537,2.978635,7.165710000000001,3.84564,3.66085,2.93424,2.651995,3.316255,3.237845,3.95926,3.453795,2.8054633333333334,5.6607,4.160485,4.27756,2.6616633333333333,1.9550325,3.382985,4.534935,2.68587,3.22042,2.15623,2.47391,4.009605,3.49669,2.430035,4.677705,5.3141,2.718615,4.26394,3.994825,3.460345,4.45667,3.291225,2.894845,5.07536,4.693355,5.3314,5.23145,4.32574,5.1992725,4.56879,3.846965,1.2860900000000002,6.6357,2.368095,4.50635,4.208925,4.107675,3.227066666666667,1.94938,2.17651,2.3615333333333335,1.01915,3.5211666666666663,3.884933333333333,3.102376666666667,2.0950333333333333,3.605375,4.195745,2.7649899999999996,0.5433816666666667,4.525215,4.636145,5.11,4.94019,3.748625,4.585315,5.10685,4.99707,1.4285666666666668,0.9682846153846154,2.819656666666667,5.16725,5.85295,0.48808875,2.80591,2.4764766666666667,3.26414,4.3827,3.8762000000000003,2.054205,5.5335,3.8198,4.66292,3.01599,6.47245,5.6035,7.07705,0.5869624999999999,4.12855,0.8311040000000001,2.2582,4.1743,3.21057,1.3309233333333335,2.35488,4.082875,3.65823,4.300415,2.1160833333333335,2.259065,3.598515,4.508,4.313755,4.053025,1.6589099999999999,1.2833795714285716,6.0893,2.332775,7.7487200000000005,4.51442,3.5928,2.275255,1.5971825,4.23315,4.75103,1.8090233333333332,2.27665,2.517725,2.5224533333333334,6.58411,3.03254,2.7563833333333334,4.375148333333334,4.139985,1.9976500000000001,3.567115,7.191095000000001,4.832975,5.41265,0.5353327272727273,3.612645,4.29243,4.879458571428572,4.01454,4.562225,2.932765,2.657,3.229125,2.82231,3.5737440000000005,1.915422,5.515917,4.798095,5.02145,3.78545,3.323545,3.18962,2.23123,1.29054,0.97574,2.785115,2.579985,1.0924966666666667,2.5739733333333334,5.099,4.890815,3.63471,4.08309,16.765452976190478,3.983735,4.351015,4.24077,0.6979183333333333,5.0629,4.818345,4.156735,4.944395,5.4125,2.56517,3.502735,3.28658,1.51865,3.08082,4.95315,3.4733,1.6694019999999998,3.65634,4.92308,3.76594,5.0359,4.77951,5.65755,4.020805,2.847106666666667,4.159035,4.498275,2.52324,3.02581,3.0079166666666666,1.7857616666666667,4.95874,2.7548225,1.87913,3.883905,2.28459,4.20544,4.098,2.371365,2.81772,4.626015,3.65045,4.610375,4.46767,4.904395,4.9172519999999995,3.31283,5.33175,2.951515,3.918815,4.09045,1.523296,4.439395,1.0064333333333333,4.449105,3.30897,1.0031885714285713,3.71345,2.054785,6.45535,2.438495857142857,2.438495857142857,2.438495857142857,0.617815,1.3261033333333334,1.771375,3.30709,6.2981,3.426005,1.971735,2.2129875,1.6718433333333333,3.70021,2.5196,0.4297330769230769,1.76406,2.141305,2.83426,1.865995,2.89138,2.328835,2.0368625,3.785825,3.20768,4.411915,3.027095,1.86973,6.57505,2.09541,4.33888,3.74079,6.627366666666667,1.5850833333333334,3.549315,4.026095,3.691495,3.891315,2.83179,2.0630425,3.7151,6.031656999999999,1.943595,3.33931,3.039525,2.1138025,4.992725,4.432125,2.7219933333333333,2.24169,3.5322250000000004,5.994509285714285,6.08175,2.973425,2.40078,2.6517,3.11229,3.03183,4.307885,1.4145175,2.543405,4.741525,0.80577,3.802205,3.80922,3.74071,3.783465,2.31133,3.45397,1.94944,4.41473,8.099685,4.37563,3.29614,3.8261,0.9698975,4.53054,2.22315,4.29772,5.5856175,4.13734,4.30907,11.26624,4.977475,3.87114,1.448125,0.6890966666666666,2.834495,3.721225,3.334065,3.613975,2.1014833333333334,2.290033333333333,2.1080900000000002,1.21915,1.21915,1.8520166666666666,2.449806666666667,2.2429533333333334,2.9926566666666665,3.201753333333333,2.6211699999999998,2.5989833333333334,3.0502466666666668,1.4982600000000001,2.30281,2.013243333333333,2.0877266666666667,1.4280725,2.6009266666666666,0.72914,10.013401666666667,0.72914,3.3259733333333332,2.0887683333333333,1.9350333333333334,4.36243,4.21647,3.73477,4.19038,2.14581,2.8310933333333335,3.3477959999999998,1.9927866666666667,3.4062,3.18554,2.7433033333333334,3.1440099999999997,1.8065933333333335,5.73775,6.321670857142857,3.2109799999999997,3.4829666666666665,3.339166666666667,2.8018733333333334,2.73565,1.1654785714285716,3.727066666666667,3.6526333333333336,4.18018,6.0633,4.25946,2.888756666666667,3.6412999999999998,3.1122866666666664,4.163273333333333,4.219415,2.4583333333333335,3.90938,3.3763666666666663,3.1639466666666665,4.77804,3.160546666666667,3.99918,6.479748333333333,2.257823333333333,2.5348166666666665,2.056243333333333,1.3617800000000002,5.579923333333333,3.7567,2.569706666666667,2.094793333333333,1.3633899999999999,4.43368,3.714825,2.849525,3.425466666666667,3.29989,3.5246333333333335,3.542566666666667,3.6606,3.25543,0.57280875,3.7947,2.53537,2.36088,3.662185,4.612955,4.269755,5.364,2.586945,4.042695,1.11333,2.93202,2.93202,4.95628,3.273265,3.687655,4.812585,1.615855,3.910135,3.601795,1.4388,4.118472166666667,3.7445484761904764,2.8592813333333336,0.362968,5.16385,3.09836,6.520155,3.45745,6.352,3.376965,3.9205,3.821395,1.8706279166666666,3.04436,4.108885,3.631825,3.5089,3.052713333333333,5.4934325,2.0586775,0.97569625,1.8461133333333333,1.6291366666666667,5.16954,2.2951200000000003,2.3860333333333332,2.1059325,4.31579,4.15278,4.199585,0.547578,4.40383,3.82525,3.07908,3.027746666666667,3.322853333333333,3.5642774999999998,4.348846666666667,1.91646,0.6765210526315789,0.8270285714285714,3.7217333333333333,4.6561,6.501815,5.64155,5.01805,5.31355,1.4443142857142859,4.173066666666666,2.23325,1.0255875,5.23685,6.0721,3.167955,4.8174,3.82422,6.633543333333334,4.169033333333333,6.635618333333333,3.769205,2.5543452777777778,5.82475,10.474083910256411,2.5353133333333333,0.719618,3.75422,4.335775,2.486695,6.47545,4.1123,4.446055,2.75372,2.75372,5.63405,3.62555,3.95698,5.1628,3.893089,2.359958,1.19830375,5.2642,2.659085,5.73169125,3.59967,4.20021,2.88258,2.2330075,4.669865,4.936995,3.6597666666666666,4.174845,4.58718,28.298587857142856,2.06532,2.63115,2.316915,1.6871166666666666,2.5632733333333335,1.146102857142857,2.849693333333333,3.015476666666667,3.5441000000000003,3.3886000000000003,0.6244569230769231,3.277843333333333,3.86399,2.906555,3.3473333333333333,3.99621,5.9959074999999995,4.82494,4.123455,4.05941,3.8475175,4.277715,3.548966666666667,1.7089625,1.0102416666666667,1.4210933333333333,2.40513,1.4736333333333331,3.1421500000000004,2.39111,2.28488,2.57286,2.63296,2.07757,1.7819133333333335,3.518815,4.30227,3.586265,3.970775,1.624954,3.8064,2.44088,3.745725,2.1952433333333334,2.635555,2.2073,1.49799,4.145005,6.398546666666666,2.73235,3.62368,3.938735,2.670125,3.235315833333333,3.5380000000000003,4.26886,4.666665,0.29493396396396393,0.29493396396396393,5.0316,5.2708,3.20947,2.817785,5.4129,4.536175,0.6424023076923077,5.21345,4.60158,3.704415,6.57185,4.61512,7.43711,14.383908333333332,13.17953282051282,4.370875,4.265105,2.5893966666666666,0.6208361538461538,2.564713333333333,4.75646,1.4010550000000002,4.90713,3.558866666666667,3.0302866666666666,2.1028066666666665,1.9624866666666667,5.0065100000000005,5.0463,8.984746428571428,5.3483,3.943365,7.57339446969697,3.311675,3.5836666666666663,1.445955,5.488915833333333,1.9514825,2.64294,2.6932733333333334,0.285645,2.75447,3.795775,4.8259,0.8750120000000001,1.2231833333333333,3.91357,0.592936,0.592936,3.0464533333333335,3.4214,3.407133333333333,3.72349,4.116125,5.5357,3.782375,4.175665,2.763575,3.1168600000000004,2.63382,0.9328916666666666,2.7734366666666666,2.82652,3.08314,6.99906,2.77573,9.583825000000001,3.096475,6.73735,3.189365,2.2928975,2.483935,2.83175,1.6477075,2.3875775,1.9056175,3.40679,2.42547,3.934865,2.68533,3.8217950000000003,3.8217950000000003,2.7923733333333334,2.7923733333333334,8.851638333333334,2.62626,0.78868,2.572583333333333,2.4780166666666665,2.5088033333333333,3.934865,1.894778,1.89252,1.5099399999999998,3.89292,3.86534,1.699515,4.483825,4.094015,6.024557222222223,6.648054999999999,2.3477799999999998,4.37847,7.12757,4.32307,3.439725,2.52939,3.84406,3.5883048484848485,4.10373,5.483085,7.605997333333333,3.7162249999999997,3.22093,1.1893483333333335,4.340445,4.36651,3.761025,3.7657775,4.397275,2.65684,2.7117766666666667,6.82011,3.162645,1.60596,6.25307,3.755275,2.971743333333333,5.02835,2.971743333333333,3.215935,3.87878,5.21545,1.02244,4.091782222222222,4.774755,3.628155,1.33997,1.768785,4.10582,4.20644,2.68394,6.951253333333334,4.27324,4.11847,4.10599,4.6982225,1.484045,4.05403,2.75606,3.77738,4.180255,3.83404,5.08445,3.367235,3.666385,5.0225,2.0402583333333335,1.80961,3.3638333333333335,3.8533000000000004,3.4384333333333337,3.153453333333333,3.6790333333333334,3.29087,5.47425,3.226395,3.62559,2.8969,1.8504500000000002,3.6170333333333335,2.3849666666666667,3.047285,3.11635,2.79722,0.70013125,2.12768,1.7127566666666667,3.47364,1.899604,3.603523,4.347035,1.189612,3.2864199999999997,4.73704,0.847304,1.2971866666666667,3.52724,3.825485,4.020425,1.990315,1.8483266666666667,3.460615,2.4536175,1.6623333333333334,2.76171,1.876065,1.1826919999999999,1.37622,6.46843,3.424795,2.18785,2.479235,2.41906,3.786195,0.7999175,0.3332921428571428,0.8073542857142858,5.07045,1.9262115714285715,5.07555,2.1793825,2.1644132857142857,3.4905329999999997,1.3261197142857142,1.0688352857142858,0.720266,0.5539557142857142,3.0130049999999997,6.52445,3.0349,3.9678,0.3701035714285714,3.932975,17.760918571428572,3.09903,7.091258353146853,1.0858275,1.0858275,1.0858275,1.0858275,6.056291666666667,4.177845,4.460265,2.237616666666667,3.060145,4.40262,5.8507,3.96835,3.684695,4.3726,4.18384,4.034995,3.5909033333333333,4.48388,5.0871,4.120395,4.953255,3.598135,4.38111,2.6558100000000002,3.55374,3.320405,4.012055,3.960785,4.43743,3.149013333333333,2.515275,2.401873333333333,4.22814,1.3798935714285714,3.60438,2.7956633333333336,3.4566706666666667,4.1725,4.55255,3.035345,2.83142,5.07575,3.44183,3.225845,5.6023,4.7708,3.163635,3.574085,1.6824560000000002,1.6824560000000002,2.322435,4.601875,4.17468,5.6206499999999995,5.20615,3.5998283333333334,6.6675,5.0064,2.275625,9.450865,5.3125,6.739115,4.602745,2.9403566666666667,3.261565,0.2632606896551724,0.84345,4.331842666666667,3.393665,4.65492,2.9833366666666667,6.558369999999999,4.993495,0.56745,2.85143,0.48861600000000005,1.6397042857142856,3.3651,2.23344,3.80839,3.69054,3.18917,3.389475,3.325725,3.63876,3.341445,3.534925,3.693435,2.398125,1.6397042857142856,2.787965,2.119895,3.69364,2.24676,3.85843,3.49613,1.667525,4.34767,2.854095,1.31742,4.805295,4.60549,4.219965,2.773543333333333,2.910216666666667,4.3065,1.8505066666666667,1.401742,2.441753333333333,2.5030366666666666,2.52785,2.0817099999999997,4.772215,3.07476,4.9277508333333335,3.9161528571428574,4.825385,4.248485,1.8878119999999998,5.2987,4.884315,5.2319,4.211455,6.862159999999999,1.6866325,4.880845,4.012965,3.1407,1.8203325,1.7163633333333335,3.82985,4.40233,2.6292766666666667,2.8230041666666668,3.4027475000000003,3.4027475000000003,2.8114733333333333,3.4250000000000003,3.23584,3.84066,3.504605,0.7477915384615385,3.21754,4.289515,5.261393888888889,2.759355,2.86267,1.7513,2.73879,3.27589,2.08282,4.729215,3.359785,5.008,2.149906666666667,1.0519636363636364,6.31923,3.618785,3.5134000000000003,3.27035,1.7849920000000001,30.554620011904763,4.083885,3.33102,6.2036,4.51239,0.8504,7.37739,2.0878625,5.58235,1.5400066666666667,4.56121,5.45424,3.65215,3.14359,2.3511775,3.5467333333333335,4.998075,2.10674,2.7239799999999996,3.621575,2.55957,2.574965,6.2571,2.38397,6.49535,1.15281,4.26553,3.483495,3.836875,5.2836,2.984995,2.5447,4.205645,4.56701,3.5730775,3.5730775,6.1368,2.22088,4.18899,6.879278333333333,3.4027,4.12658,3.267105,5.23345,3.409885,3.95322,1.359635,2.135635,4.300185,4.21944,5.6991,4.17823,2.25508,9.61668,3.54328,3.696655,1.7281285714285715,3.4671,2.51953,2.6513766666666667,2.0387408333333332,1.2611033333333335,2.619893333333333,0.9432042857142857,1.1140528571428572,1.1140528571428572,1.1140528571428572,1.82862,0.5609675,3.732685,1.28892,2.6517,1.0671283333333335,1.69351,2.6549,2.281163333333333,0.7396125,1.7690400000000002,1.41143,2.35447,1.6213159999999998,1.6213159999999998,1.58322,1.7095966666666669,0.928354,2.2803400000000003,1.7667133333333334,1.3676033333333333,2.170895,2.31418,5.9934,1.92097,5.58925,17.657541083333335,6.8983550000000005,3.494475,3.6705766666666664,3.4819333333333335,2.7346633333333332,2.6154699999999997,3.0009433333333333,0.7680041666666666,0.9984949999999999,0.9984949999999999,0.665775,2.507753333333333,3.706215,3.52243,1.6323940000000001,5.16515,4.124725,2.73662,4.21527,5.26745,4.008515,4.230805,3.5400333333333336,3.281235,3.419305,5.7771,3.150236666666667,5.28315,0.5043219999999999,0.5043219999999999,2.1713,2.90135,4.749515,3.451585,4.019125,4.91333,7.592388,7.67877,3.7181,2.556415,4.37458,3.711295,2.500113333333333,2.24771,3.602615,1.2335533333333333,4.12027,2.61895,1.59895,3.5810666666666666,3.7231,2.064435,5.483085,1.68378,3.5167333333333333,3.287215,1.1442557142857144,3.7148,2.7601533333333332,4.600265,1.1279700000000001,1.769255,2.3573675,2.0961225,1.648175,2.68485,1.99937,1.952325,4.43185,4.59165,2.511575,1.84281,1.47061,3.688333333333333,1.9832266666666667,2.7107,4.997045,7.2399,2.5675991666666667,2.99455,3.503545,3.4277,2.38033,5.08825,4.08218,3.07195,1.400975,4.37691,2.35516,3.370533333333333,2.493275,3.482365,5.0885,5.7199,2.2126733333333335,2.7208433333333333,2.8241666666666667,3.4309999999999996,2.0317000000000003,1.62778,5.5391,3.5578000000000003,2.180063272727273,3.28072,3.23317,2.56987,3.4773,3.3346666666666667,3.6170666666666667,5.32935,4.255625,3.011863333333333,5.0095,3.185905,2.38642,3.477745,3.79019,4.4497,6.19292,1.882508,3.77122,2.64345,3.956865,3.538865,0.55567625,2.274785,2.302415,3.34638,2.72836,2.12828,2.6997,0.670064,2.774286666666667,4.69764,2.528325,4.340695,2.621093333333333,4.17112,2.0196,4.64617,4.36002,2.06596,2.749315,6.9997675,4.062285,4.707045,4.839115,7.496384659090909,4.55978,4.373515,2.19272,4.724085,2.745725,1.81778,1.86458,2.302916666666667,0.9674971428571428,2.629496666666667,2.44446,2.56535,3.2559233333333335,1.7404419999999998,3.235055,1.8776033333333333,4.494185,5.2045575,0.993875,1.7967533333333332,2.4042733333333333,2.763146666666667,1.90466,1.0535816666666666,5.461851666666667,2.102625,2.590716666666667,2.86115,2.4466466666666666,2.70206,3.04105,2.1716633333333335,2.581983333333333,2.05265,3.932995,3.49544,3.895495,2.97714,2.974603333333333,0.7702289999999999,2.0187633333333332,2.0366025,1.8931433333333334,2.5760433333333332,1.1309983333333333,2.62992,2.8798266666666668,4.051835,1.89538,3.23415,3.118315,5.04035,3.071905,0.6044275,2.15848,3.0481599999999998,3.4035666666666664,0.7983363636363637,2.8305866666666666,3.431236,3.4974333333333334,3.18528,3.2680550000000004,3.679335,3.909466666666667,3.039093333333333,2.2295225,5.6428,5.23825,5.29355,5.49,5.66385,1.7268833333333333,3.256315,3.820133333333333,3.4928000000000003,3.230283333333333,2.8664400000000003,3.9623000000000004,3.6843,3.07009,14.395893333333333,4.370855,1.1910399999999999,2.7767766666666667,1.581118,3.427466666666667,3.328943333333333,2.6325933333333333,5.906495,6.68351,2.425733333333333,0.853411,4.28149,3.4697999999999998,2.992995,5.1879,5.35665,5.55725,4.919855,3.44546,1.8767575,6.4122975,1.1893483333333335,6.6195325,4.921115,2.66679,4.264075,7.525718333333334,6.0406,2.1180233333333334,1.5324366666666667,2.06534,7.81405,1.5861,2.988156666666667,2.638486666666666,4.147187222222222,5.5475,4.218135,6.3436,3.48092,5.5194,3.6084,9.44105,5.114,5.90845,2.352595,2.625775,11.211393333333334,3.369565,2.502085,2.42711,1.5524733333333334,2.5660833333333333,3.4244333333333334,0.668075,1.213482,1.0502142857142858,3.48645,7.05014,3.063725333333333,1.45903,4.789545,3.430405,0.5429120000000001,4.529715,4.354655,5.09455,3.936915,3.38358,2.6228833333333332,3.99706,9.73423,1.77905,3.8588525000000002,4.591925,4.22584,3.61864,0.8560249999999999,3.481833333333333,4.065933333333334,1.6950366666666667,2.39347,2.333886666666667,2.4779833333333334,2.60907,2.1180866666666667,2.134055,6.150243571428572,5.193,3.78672,5.143401666666667,1.5616066666666668,2.332885,5.01795,4.73969,4.693835,4.392355,4.66992,4.869205,1.6824560000000002,3.70636,8.00518,1.4352616666666667,1.6432266666666668,2.414683333333333,2.4783033333333333,2.7054533333333333,4.667333999999999,0.8270285714285714,2.32006,3.304965,6.2737,4.587155,2.18151,2.7460299999999997,2.087445,0.5575325,2.46275,2.82355,7.64809,4.34467,4.549535,0.9333030000000001,4.739133333333333,9.425321583333332,10.708726666666667,3.35087,1.2360725,3.53873,3.578675,2.532,5.378645333333333,4.99279,4.22331,2.0552325,3.8731666666666666,2.1598966666666666,2.5109966666666668,0.7837918181818182,0.409726,2.314375,3.44874,2.0972291666666667,3.36846,3.1425133333333335,3.952535,5.33915,1.4831619999999999,3.229036666666667,2.0997500000000002,2.0997500000000002,2.16752,3.041045,6.58705,2.5526566666666666,2.4248133333333333,3.385,3.499833333333333,4.14724,4.610205,4.431995,3.96313,4.017145,4.39393,7.1275,7.634085833333334,1.9521775,2.1232533333333334,3.1433633333333333,0.8757233333333333,0.7168975,3.95674,2.29131,5.52655,2.862833333333333,3.1188300000000004,1.867664,1.5603525,4.08658,4.22175,4.33888,2.0142166666666665,1.2677166666666666,2.6165266666666667,1.9826366666666668,2.5530399999999998,1.1078871428571428,1.1078871428571428,2.6929366666666668,4.88219,3.10814,2.723135,3.629375,1.92201,20.803389666666668,3.633775,5.4212375,4.47615,4.266795,4.20126,4.048585,5.7276,6.236965,0.8600766666666666,0.8600766666666666,0.8600766666666666,2.6742933333333334,1.7740571428571428,3.5322333333333336,4.437295,4.293765,3.152125,4.473415,4.576095,0.7870166666666667,2.09867,2.4810333333333334,6.0187095,3.4005395,4.108982,5.10785,2.1736775,1.95673,2.294303333333333,0.50733125,0.923866,1.826205,1.97493,2.836945,13.438331666666667,2.5003766666666665,5.3271,0.7499071428571428,9.80904,5.75075,3.727695,4.459445,2.7385,5.4522,2.7385,2.8123959999999997,3.25102,3.716135,3.67125,4.049205,4.42106,3.63411,5.9483,7.013674,1.7418033333333334,2.15752,2.884965,27.486842821106823,1.470242,6.3941,3.627762,3.857315,4.27497,4.7841,2.646445,2.67991,2.37348,6.73655,7.14165,4.88779,4.8026,4.553675,2.0543525,1.932235,4.38601,0.36541230769230765,0.36541230769230765,0.36541230769230765,0.36541230769230765,4.11381,3.2511699999999997,0.9239366666666666,1.7514533333333333,1.1615888888888888,4.55257,2.4149499999999997,2.4035475,7.203276666666667,3.25968,0.1721296551724138,21.364072333333333,4.833013333333333,1.789044,1.3786714285714283,2.22694,2.01276,2.432425,4.758395,3.16262,3.092455,4.17732,2.253696666666667,7.48238,2.74953,1.93406,3.901925,6.0036,8.98636,4.31375,0.3052487804878049,3.46494,4.17412,2.8612933333333337,2.136515,3.18906,1.5524766666666665,1.5524766666666665,3.98235,5.7936975,11.575384166666666,9.366325,0.6486444444444444,2.56156,3.66423,3.4121,5.25065,4.23927,1.3518919999999999,1.3518919999999999,3.747855,4.46173,3.099876666666667,3.67643,4.57387,5.3513,6.94588,2.3031800000000002,4.48548,4.114385,2.64901,2.9454266666666666,3.0835133333333338,4.905705,4.52105,5.6978,4.312625,4.637905,4.07114,4.31316,4.314595,5.50435,2.7098633333333333,3.14809,1.1426539999999998,4.683345,4.232375,4.04837,1.820154,2.0298966666666667,3.5739,2.7717733333333334,2.68545,5.025993333333334,1.95735,2.0502825,3.4964666666666666,2.781586666666667,2.4406966666666667,1.7103933333333332,4.055033333333333,3.1731766666666665,4.198633333333333,3.4342491666666666,2.0583899999999997,2.55084,2.0084966666666664,3.381555,3.26332,39.439054750000004,2.1854938181818184,2.1854938181818184,2.5167566666666668,2.6221,2.1509233333333335,1.8456566666666667,2.936806666666667,1.77855,0.8282461538461539,4.9721,7.004507500000001,4.306115,4.122135,5.54175,1.9519166666666665,4.621625,1.87791,5.262,4.83391,5.7589,4.343235,1.7089625,4.023025,4.82764,4.628585,5.0692,5.40105,4.057485,3.4506666666666668,2.9671299999999996,1.9658875,1.80354,4.619545,2.98246,3.7147525000000003,3.7147525000000003,2.1308000000000002,1.4954766666666668,2.97011,2.6824733333333337,2.5345333333333335,4.86954,2.92074,1.1432883333333332,1.1432883333333332,2.2147466666666666,1.9522000000000002,2.453273333333333,2.60219,2.577026666666667,2.38533,2.28326,2.115491,2.936343857142857,1.526887857142857,0.8208528571428572,63.6075817688492,2.39728,3.5582666666666665,2.390204,0.9145580000000001,3.775246,1.542578,1.542578,3.6433666666666666,2.9435333333333333,0.706035,3.3504666666666663,5.683883333333333,3.4589,2.4406733333333333,2.8254133333333336,2.52315,2.5826993333333332,0.275000625,2.7057033333333336,0.711356,2.4960733333333334,1.072714,1.072714,3.5629666666666666,1.9891079999999999,3.014226666666667,1.7819446666666667,3.3648666666666665,1.7819446666666667,2.1290833333333334,2.77833,3.3694,1.364228,1.364228,3.120483333333333,1.4505333333333335,3.327526666666667,2.2021866666666665,4.798535,4.012675,12.412166833333334,6.88907,3.70069,2.61288,3.94817,5.5647,5.5656,2.791665833333333,4.15267,4.201745,1.9668266666666667,4.20173,3.4723,2.7465833333333336,5.0335,2.1446633333333334,1.0730928571428573,3.799517083333333,2.819653333333333,2.828225,0.8352385714285714,2.61016,3.463575,4.209095,4.245575,6.6698,2.1402933333333336,1.944988,4.15425,4.45865,2.404135,2.4980841666666667,1.9562933333333332,2.0868073333333332,0.861524,5.25245,4.6213,3.922975,3.8263,3.0664433333333334,5.2552,5.36105,2.962816666666667,1.6940633333333333,0.5310326666666667,14.881270666666667,0.5188590909090909,0.5188590909090909,0.5188590909090909,3.08723,4.069866666666667,0.5188590909090909,7.199971666666666,4.348516666666667,0.712369,0.712369,3.522733333333333,3.21404,2.97119,4.2906,4.82996,4.2876785,2.1925,4.860560666666667,3.59633,3.713568333333333,4.43233,2.9951335,2.511325,2.4346075,2.803575,1.557115,3.459360833333333,3.0259766666666668,2.50825,2.2001625,2.0389575,1.8805666666666667,1.6017225,2.65,1.1105477777777777,2.5655,0.6216421428571428,5.38095,1.854775,0.68983,2.252085,7.645365,2.687575,1.9783925,3.0781925,7.14072,2.46284,4.684945,3.17495,6.02379,3.72239,3.955645,4.29135,4.831785,3.1793933333333335,4.528829999999999,1.2195842857142856,4.19437,2.376043333333333,2.45418,2.308085,2.291795,2.19556,1.268875,5.7643,0.9347272727272727,5.18045,5.68675,5.26195,5.4679,3.7339,2.4923033333333335,2.0972999999999997,3.0672533333333334,3.1802166666666665,2.364835,3.8188999999999997,2.706175,4.768415,1.8069060000000001,41.20403408730159,4.98357,2.2998833333333333,2.58452,3.0809233333333332,1.55697,6.224883333333333,4.19153,2.4475666666666664,3.3767,2.274836666666667,1.6244975,5.3007,0.7873428571428571,4.537835714285714,1.2963457142857142,3.4179999999999997,3.4773,2.9033166666666665,1.4233125,4.821083333333333,1.7664180000000003,1.7664180000000003,2.4931933333333336,2.8284445833333334,3.4595333333333333,3.2805233333333335,1.43947,2.87584,2.6368733333333334,6.3264505,2.9316999999999998,3.7257183333333335,1.0409683333333333,1.4600366666666666,3.0965366666666667,0.9473420000000001,5.570318333333333,3.5187666666666666,2.9213633333333333,3.601266666666667,2.942536666666667,2.7371133333333333,3.3262366666666665,1.6852233333333333,2.41906,2.599396666666667,3.4827999999999997,2.6014433333333336,3.715866666666667,2.5148266666666665,0.6094833333333334,9.89330391025641,2.7267033333333335,5.34015,5.1677,2.8120100000000003,3.028976666666667,1.3219,2.3262666666666667,1.930255,1.3219,4.26494,0.461076875,0.461076875,1.185645,1.185645,0.753565,0.753565,2.550685,2.988035,2.36425,1.451925,1.962875,3.735695,2.842325,5.1793,5.22695,2.0223,4.46919,2.308905,4.709093760683761,1.47288,1.47288,2.231845,1.757518,3.8978841666666666,2.0969275,4.604105,1.6604583333333334,2.640375,0.5640853846153846,1.2607814285714285,2.1050775,2.3759,2.04514,1.4077075,4.686085,4.63348,2.6635666666666666,2.6072166666666665,1.53271,0.7274375000000001,2.4234233333333335,3.78231,2.9146966666666665,4.785215,5.35725,5.0523,3.817335,6.5404,1.5956983333333332,6.279195,1.795125,4.674325,4.766625,5.838376,3.4454333333333333,2.3044,1.7373475,1.985208,1.985208,2.44443,2.44443,4.412325,5.8443,0.9348639999999999,3.863935,3.55175,3.380555,2.6325933333333333,1.34356,2.7672866666666667,4.14448,4.186055,1.849456,6.6639,5.3215,1.78657,1.37465,3.96348,4.243796666666666,3.67092,3.5221,4.05819,0.6778257142857144,3.5304333333333333,3.4973666666666667,2.715616666666667,2.90298,2.1571166666666666,3.6680333333333333,1.4710142857142858,1.4710142857142858,1.4710142857142858,3.04461,3.1164533333333337,3.4329666666666667,3.471234404761905,2.422615,1.2436757142857144,3.3582666666666667,3.2174133333333335,1.4110414285714286,2.8146466666666665,2.662,1.3556485714285713,2.8580433333333333,2.8546933333333335,2.94544,2.814363333333333,2.6392466666666667,2.11417,3.2230166666666666,4.9886273333333335,4.545525,1.0028000000000001,1.5782,0.619993,3.673033333333333,8.944970000000001,3.107063333333333,3.38258,3.4537666666666667,4.163189166666666,1.8080125,7.739251666666667,6.81898,2.67421,2.3134065714285716,3.85702,4.761255,1.553706,1.19224,1.30654,2.0777,11.225016666666667,2.81564,3.1072100000000002,3.054312,3.863095,2.206906666666667,1.15607875,5.2612,1.0536033333333334,3.607493846153846,4.977375,3.041605,3.4247333333333336,3.036675,5.26685,1.14289,2.3197,2.2162266666666666,2.2162266666666666,3.80483,5.77615,10.53993,4.445045,3.3642,4.775625,1.7085775,2.2499583333333333,4.518735,4.299815,3.70022,1.5105950000000001,2.813943333333333,3.449705,3.887885,2.5301,3.844095,3.60163,3.84924,3.984515,3.781405,3.820035,5.5916,3.2507066666666664,2.612503333333333,4.381785,2.917905,3.793015,2.14106,2.50644,2.485555,6.19615,2.441115,3.241025113636364,1.663115,2.36258,3.2658,2.24348,2.0741175,0.9101666666666667,0.9101666666666667,1.7271025,4.012945151515152,3.951915,2.8679900000000003,4.586075,3.2147408333333334,2.4330628571428567,1.01113125,3.15326,1.528695,4.49241,3.93828,0.9035454166666667,1.80531,3.977815,2.898215,1.54512,1.5446233333333332,4.780882857142856,1.1201433333333333,2.69144,3.141995,2.695285,2.440625,2.6840840000000004,2.05645,0.9932325,2.851415,2.953855,3.35534,1.51306,1.5122633333333333,1.81581,4.46267,2.252875,4.650515,4.667795,4.79863,6.1152,5.3969,4.179775,5.932345,4.158948095238095,0.7928518181818182,2.78499,4.3366,3.79073,0.5031727272727273,0.924004,2.76272,4.111615,4.803415,4.569175,3.3262810714285713,2.753925,4.886125,1.8241260000000001,2.6468,4.718945,4.3713774999999995,3.480615,3.139695,3.70957,4.902425,2.955895,5.75045,0.943039,3.57909,2.914525,4.65221,4.506495,4.582015,2.21396,2.32975,2.80721,1.8105166666666666,5.11055,3.79658,1.4212271428571428,2.93117,4.20547,1.404482,6.095555,1.872144,2.5618633333333336,13.85084815474584,2.9529599999999996,1.3745466666666666,1.5543316666666664,2.0647733333333336,5.514191666666667,1.6589099999999999,4.191863666666666,0.6794507692307692,3.4400666666666666,3.78931,7.602265,2.525603333333333,3.0566099999999996,3.0566099999999996,4.721095,4.292275,3.46047,3.215995,4.90334,5.2317,2.37595,3.3156433333333335,4.80024,1.2079016666666667,3.31677,4.58608,4.454855,3.687545,2.639343333333333,3.70369,3.588035,6.536258333333333,6.20316,0.761252,4.25824,3.477975,3.8889666666666667,4.0663,4.09133,3.85002,1.522226,4.959065,2.4314,2.754075,4.182805,4.23857,4.71855,0.9354849285714286,2.8498033333333335,9.436768,1.5131050000000001,2.1589162337662335,2.2852575,3.758275,3.525365,3.22411,0.6501990909090909,2.425415,1.679765,2.2251075,4.3255,5.446378666666667,2.901532,9.88817,2.643196666666667,2.694483333333333,1.1310499999999999,4.598055,5.13905,2.10817,5.581123333333334,3.255065,3.14164,5.4086,4.62842,4.740325,2.28396,1.29745,1.29745,2.694045,3.395935,4.509780833333333,1.5114275,5.568271666666667,1.4364766666666666,3.91045,1.4376233333333335,8.733069166666667,5.20845,2.674965,4.72582,3.893695,3.76519,1.1054533333333334,2.0609,3.6984333333333335,3.040043333333333,3.5385666666666666,3.5162333333333335,3.763735,2.82152,3.0882,3.2495,1.506795,2.4707866666666667,1.85998,2.8596,1.934,5.282045833333333,3.3080766666666666,1.76299,2.9446833333333333,3.295525,3.161885,6.39715,6.27415,2.94434,3.534365,3.107965,3.0347,2.834365,1.20713,0.9642099999999999,6.653525,3.042655,5.73545,4.571415,6.57925,2.85366,2.92918,6.5673,2.41492,0.4276738888888889,5.8163,3.32177,3.991605,3.4807,1.4993,4.385185,1.062422,4.67266,0.90517875,1.7384466666666667,3.0901266666666665,2.3438666666666665,2.675027142857143,3.5409,5.15035,6.186616666666667,6.186616666666667,5.294275,5.294275,4.593295,3.226036666666667,4.38374,1.07599375,6.20545,3.689645,3.8064999999999998,4.120545,3.796375,5.13415,1.7946025,4.881385,3.324522,3.2882,4.091115,2.677435,4.871965,5.29225,3.48215,3.515855,5.0704,3.948055,6.1289,2.58972,2.7081666666666666,5.9332,3.94888,2.7287733333333333,6.320565,1.4981033333333331,2.1997075,4.700735,4.36027,5.0213,3.792105,2.0149925,2.0149925,13.818262503968255,12.6665,5.0355,3.213705,3.018608461538461,4.72455,4.745795,2.7196466666666663,3.25918,3.44841,4.2661,3.6509,5.092,1.963445,8.392543333333332,2.43206,1.97014,5.7365,2.29484,5.0901,4.39875,4.70197,0.7922600000000001,3.411615,3.47302,0.9228080000000001,2.932685,4.171446666666667,1.425754,2.1269733333333334,2.818543333333333,2.718223333333333,2.35173,3.1461733333333335,2.3364833333333332,0.4993964285714286,2.53443,3.0613566666666667,2.7696366666666665,3.209713333333333,1.56867,3.26202,7.214395,4.66808,2.31255,2.069716666666667,2.5790933333333332,3.58289,2.63171,3.6524544999999997,18.46283,5.5458,3.533477,4.964245,3.70595,5.14123,1.2933299999999999,5.9975,1.6728833333333333,4.598435,4.951485,5.5478,5.00915,1.0100307368421053,6.4669,2.51988,4.96351,2.486905,4.348395,4.15036,2.84833,2.23719,1.590582,1.96204,4.67138,4.66351,2.16756,1.62149,3.226183333333333,4.076396666666667,3.142243333333333,6.2256,2.1864675,3.467045,4.872965,3.704335,4.085355,3.0329,4.20114,5.0222,4.18712,2.76867,2.76867,5.929955555555555,1.9769233333333334,2.8641199999999998,4.06517,1.74208,7.439495,3.59359,4.697033333333334,4.3891,4.400555,1.894486,4.34692,5.37475,3.96505,2.1347625,3.696265,3.228195,1.19398,1.547785,1.2857,0.6739733333333334,1.6711799999999999,1.0376466666666666,4.51519,1.0722311111111111,2.5340166666666666,1.5543433333333334,1.8232925,1.0792266666666668,1.90668,2.3306875,1.58948,3.0636433333333333,2.7085633333333337,4.936321666666667,1.5854883333333334,2.661725,3.1175866666666665,2.858306666666667,2.295,4.215845,4.59144,5.062461666666667,19.395354666666666,2.769546666666667,2.088915,0.6478376923076923,0.60506,4.284415,1.9710260000000002,4.04082,5.33575,7.2477184999999995,3.59604,3.40719,3.87484,3.446266666666667,3.30987,3.10786,4.0274,3.3785666666666665,6.6671,3.941555,0.926655,1.14094125,5.46625,3.14366,2.5866466666666668,2.0187733333333333,2.24312,5.771,4.9661,2.500125,1.06164,3.47822,5.06575,8.759526666666666,5.331883333333334,4.43357,4.19245,5.4891,4.749325,4.5404,4.84952,3.941095,5.45055,1.91918,5.8006,1.6009571428571427,5.1332,0.75192,5.0706,5.56125,6.25,6.2741,4.824385,5.9916,6.1397,6.70007,2.0422166666666666,1.5950285714285715,5.85395,3.833095,6.8526266666666675,5.18965,5.405131666666667,5.1161,6.31255,1.3746957142857144,4.465025,5.34975,4.172233333333334,4.871365,5.6179,2.7442,3.87573,3.25718,4.55915,1.0027666666666668,1.5825966666666667,1.457214,4.883425,4.01163,3.44151,2.249756666666667,3.000336666666667,1.6244033333333334,2.175943333333333,0.41275833333333334,3.6992666666666665,1.7165199999999998,2.3388850000000003,2.9726166666666667,2.688563333333333,3.1328566666666666,2.665975,2.553525,10.42047,3.9653333333333336,1.8939591025641027,3.900475,0.9184909090909091,4.58741875,1.1108175,1.9127125,1.9608625,1.036345,5.881179666666666,1.1870534722222224,1.1870534722222224,1.1870534722222224,3.007626666666667,1.927066,5.23105,3.157825,1.370755,1.4726675,2.32902,1.37055,2.23684,5.524565833333334,0.8922444444444445,4.50129,4.47706,3.31333,1.0407442857142857,2.100511,2.103565,2.103565,1.5384399999999998,3.6836816666666667,4.64167,5.72105,5.6725,4.475435,5.48695,2.986383333333333,1.9944125,3.256715,5.2084,3.27325,4.24365,1.01216,3.837406666666667,5.1409,1.8773075,4.2182,3.0742966666666667,4.619355,5.02355,2.517175,7.01615,6.3183,4.235245,4.685945,4.234655,3.143205,7.70744,3.905525,5.898913333333333,3.40925,2.6574466666666665,5.29005,2.567016666666667,5.57255,4.603945,2.6522,3.03225,3.871,1.4919200000000001,10.706795,3.60388,3.033985,15.737974047619048,4.370605,1.66055,2.975096666666667,1.989415,2.454435,3.77246,2.6624758333333336,2.864655,2.817345,2.907805,4.05208,6.3291249999999994,1.2556033333333334,2.38574,4.144745,4.45974,5.0557,2.4352,0.5632413333333334,4.732585,4.163015,2.10603,1.409705,4.65996,4.923655,0.98839,3.8308,12.498225,1.2952971428571427,0.39253214285714283,3.5172666666666665,4.613555,1.094251111111111,4.13186,4.11556,6.403131666666667,1.3364316666666667,3.157895,4.088855,3.31603,4.454505,4.734955,3.732065,8.353185,2.97262,4.46257,5.30005,16.042484375,3.34584,2.885425,1.24649,2.257345,1.2490525,2.18088375,1.22294,1.948945,1.6244075,2.00168,2.423165,2.3452,2.177995,5.551,4.86785,5.9827,3.069205,6.021066666666666,2.9990466666666666,4.887745,3.4765,1.24094,3.65329,1.951315,2.578447333333333,4.87265,5.12635,4.93543,4.757015,3.3994,3.6104333333333334,2.38297,4.114425,3.615495,2.319725,1.892675,3.6479666666666666,4.79014,3.08826,2.353143333333333,12.601426666666667,0.7285466666666667,2.576985,5.11055,2.5397620000000005,1.043364,2.836165,7.411676666666667,7.149288333333333,4.541485,4.08415,4.31992,2.154815,2.256415,2.7388426666666668,1.9057566666666668,4.065081666666667,5.5044,4.224445,0.4855066666666667,6.41665,3.3762333333333334,3.4981000000000004,3.6217666666666664,6.4079,9.58757425,4.6986005,1.06376875,2.230435,2.285155,3.526255,2.57757,4.0837,4.705135,3.6969,2.8697366666666664,4.135305,4.247145,3.661065,4.379833333333333,1.8136,4.301135,5.36605,5.7226,3.2834800000000004,2.30142,2.20668,29.890135333333333,1.4109075,1.4109075,2.1962766666666664,5.075136666666666,4.23405,4.715055,3.228165,2.970235,4.564875,3.0900466666666664,4.10518,3.0900466666666664,3.486565,1.8329466666666667,1.5650933333333334,6.1154,2.679075,4.79159,3.226465,2.5045,6.714728333333333,2.05781,4.82151,5.36975,3.375865,3.56279,5.0126,2.10486,4.97265,3.6354800000000003,7.791493333333333,5.700873333333333,2.861575,3.998695,4.330315,2.034485,2.8903366666666668,3.5600666666666663,0.4790042857142857,3.4240333333333335,10.011673333333334,4.11434,3.658315,5.27385,3.3621133333333333,3.034195,1.320307142857143,4.24224,5.3244,3.27709,2.752035,5.1656,4.02712,4.312185,4.44108,2.758375,2.758375,4.088095,2.87236,2.78532,1.905505,4.992225,3.97013,1.0558114285714286,3.906335,5.145,3.02412,7.243449999999999,7.77666,1.446958,4.14743,4.973025,7.014557999999999,0.737248,7.598649999999999,3.683045,0.6083809090909091,5.452,5.3837,5.11295,4.65097,4.748585,4.468865,4.99761,4.022625,4.324465,4.6418,5.4378,4.951925,4.835665,3.73392,2.761545,4.20857,2.81882,0.962373,4.635965,2.37975,1.776925,4.612725,4.67195,5.8231,1.0339371428571429,5.018738333333333,3.007475,2.65923,2.16622,1.2505033333333333,11.5267575,2.64758,3.06428,2.12953,3.645640952380952,5.292210000000001,6.289275,2.613,2.0015933333333336,2.12856,2.12856,2.12856,1.4353266666666666,3.882785,3.948225,3.65889,4.55243,8.04974,4.30686,1.10601,2.37844,2.88111,2.610555,1.8325,4.537815,2.674995,1.4905866666666665,3.08245,5.331984285714285,6.012582500000001,3.96874,4.128505,3.28918,5.35545,4.7186,5.5740533333333335,1.8683,1.8683,4.4586,3.70089,2.549936333333333,2.549936333333333,3.883645,1.2669214285714285,5.10505,3.38912,4.32824,4.035375,3.995265,3.2985866666666666,1.1140814285714284,4.591885,5.20035,4.43385,5.0321,4.89604,4.88782,4.622885,1.9970275,1.436555,3.49276,3.76834,3.191395,4.34528,2.231005,2.9346750000000004,5.59785,2.773045,4.95119,7.79357,2.3429620833333336,3.0204500000000003,4.484193809523809,5.112488333333333,1.9449275,1.9018830952380954,0.9370016666666667,1.9018830952380954,2.01578,2.01578,1.49749,5.0924,3.197425,4.329185,2.25804,3.682425,1.5173216666666667,5.48995,3.00584,1.652405,2.9397966666666666,3.92052,4.35992,6.462051000000001,4.64906,1.405724,0.7762366666666667,3.473255,7.5073583333333325,2.3934666666666664,3.56504,3.62425,3.62425,2.358095,3.2858,3.22464,1.4531557142857143,3.213786666666667,3.696265,3.07408,4.446845,3.9456975,1.492025,3.723345,4.61238,5.0698,5.14555,4.132305,1.8166275,1.98851,1.30938,2.415965,3.5097,1.8716275,4.68939,3.252026666666667,3.79007,4.086975,5.1052,2.16028,1.002874,1.8467066666666667,1.3504975,1.1703333333333332,5.08135,4.04431,1.1426539999999998,0.3696926086956521,0.3696926086956521,0.3696926086956521,3.603775,5.564698333333334,4.80464,5.29905,5.0468,5.3705,4.673185,4.22818,2.71234,3.829925,1.5895075,4.80299,4.30044,3.886985,4.42601,4.4216,0.7589318181818182,0.7589318181818182,0.7589318181818182,0.7589318181818182,1.049024,1.049024,4.29628,4.12919,3.737035,2.71916,2.5728,5.9882,5.12575,5.86855,4.25676,3.012036666666667,2.5158566666666666,9.80791,1.69114,1.69114,3.90648,5.50205,3.2912666666666666,0.461076875,0.461076875,0.461076875,0.461076875,0.461076875,0.461076875,4.789906666666667,5.2852,3.601775,4.47953,2.77412,2.77412,2.614055,3.3518483333333338,2.44812,2.85214,3.51216,7.253507666666668,1.368956,4.59617,3.74813,4.00715,9.821626666666667,2.4061,2.852315,0.9979685714285714,2.0548,5.28155,3.20211,0.9069575,2.9299199999999996,4.49557,5.52455,2.7597,4.924046944444444,0.8615044444444444,2.222496666666667,4.86941,4.802905,3.231031,2.6889633333333336,2.280343333333333,1.4160233333333334,7.335155,3.4300333333333337,2.1193466666666665,3.024525,2.670525,3.5308,3.88774,2.69229,3.3498666666666668,6.1286,1.41444,4.427685,5.1979,3.484285,3.95387,2.20127,2.918405,3.70355,3.767055,2.9084,4.66514,4.46943,2.84644,1.9171525,2.9172833333333332,2.75334,2.91371,0.7981336363636363,2.1759325,8.0367225,0.444451875,3.0555299999999996,1.4626400000000002,2.4130433333333334,3.4168000000000003,2.92661,1.2962111111111112,1.7131979999999998,2.7100066666666667,2.13643,3.616985,2.1053,2.9251466666666666,1.5513666666666666,3.2551360000000003,2.0243075,1.1225628571428572,2.9926433333333335,2.1586525,2.3734633333333335,2.78059,3.1824966666666668,3.414066666666667,3.4470666666666667,3.1917333333333335,2.8569600000000004,3.3452333333333333,2.90736,2.7297,1.6871733333333332,2.4130766666666665,2.9510466666666666,1.6491533333333335,3.3141766666666665,3.8338995238095235,2.954466666666667,2.832686666666667,3.02579,3.6793,4.963958333333333,3.2603000000000004,1.7355642857142857,1.7355642857142857,2.549275,1.1440075,2.5721,3.294741666666667,4.535591666666667,2.77395,2.227535,2.1516075,2.104695,3.680655,3.005225,3.735455,4.08219,1.7304675,2.6066833333333332,4.435805,1.185252,1.185252,2.3205325,0.66684,2.6539525,1.840875,1.840875,2.67187,2.417073333333333,3.496,2.5517133333333333,2.1943725,5.669396666666667,3.8303425000000004,3.8303425000000004,3.769935,3.060125,2.23595,2.993855,2.505855,2.78437,4.8980575,0.4773891666666667,0.690114,4.093205,2.363575,3.107775,6.598326666666667,3.99388,1.610288,5.191216666666667,4.61874,4.33062,4.33561,5.37135,4.883055,14.062785,3.66889,1.6159033333333335,2.898295,3.651925,5.1829,3.00968,4.147775,4.377485,3.624645,4.493835,2.8993066666666665,2.822385,2.76107,2.48009,2.48009,3.923655,3.1233,3.047035,4.00918,2.382395,2.458755,2.18184,1.9035075,1.9950775,2.191375,1.7175175,3.6407875,3.67979,2.562425,7.070815,3.253205,2.2904966666666664,1.78318,3.21748,3.795635,3.58561,3.2338260416666667,3.34811,3.01208,4.23073,3.547545,3.83461,3.931315,3.3003739999999997,3.50216,0.6320766666666667,0.6320766666666667,0.6320766666666667,3.487045,2.390115,5.64755,2.442355,3.731655,7.307808888888888,2.8651066666666662,0.3710553846153846,5.4207,0.743171,4.212916666666667,1.93368,3.692185,1.927845,4.6716,5.586718333333333,4.66582,4.30622,2.768963333333333,3.0115533333333335,1.5117516666666668,2.742853333333333,0.4000936842105263,0.5621764705882353,2.871783333333333,1.41346,1.8987375,3.730125,2.91317,4.880765,2.8585266666666667,3.0917866666666667,3.57355,6.25074,1.9041675,0.8705557142857143,2.327815,3.811658,1.3548359090909092,4.918885,3.745985,3.75033,2.7294866666666664,4.11758,2.5823766666666668,2.5855900000000003,2.7929133333333334,2.47541,2.788486666666667,2.2702575,3.12481,2.538273333333333,5.63426,2.2452425,1.90395,2.1740533333333336,5.09095,3.246592,3.246592,2.48507,4.01716,2.405225,3.698895,2.989565,0.572212,4.302215,2.03835,11.665784444444444,6.69639,2.831545,3.084455,3.33064,4.49533,2.80624,3.64821,0.25881466666666664,1.9943225,3.4759666666666664,0.825025,3.776845,1.3455128571428572,4.827835,3.175475,3.32813,3.52418,3.569735,2.483785,4.571315,3.68248,4.04274,6.65705,4.27623,2.888006666666667,3.1918466666666667,1.611854,1.75216,4.287365,3.98867,3.8351525,2.775305,3.637735,1.594098,3.040085,2.6298,3.82877,11.141346666666667,3.552035,5.622745,3.771545,4.48533,1.0798788888888888,5.045486,4.86265,2.5542233333333333,2.7666466666666665,2.9408433333333335,3.5704666666666665,2.3698833333333336,1.70021,1.9544133333333333,3.83935,1.7140619999999998,2.9287166666666664,5.398612,2.9127166666666664,1.1027707142857142,1.1027707142857142,3.589045,3.0004745,3.0004745,3.342333333333333,2.72974,3.1524782051282054,3.8335000000000004,3.4864333333333337,2.605026666666667,2.3120366666666667,2.3729666666666667,3.062773333333333,2.2433225,2.5123599999999997,1.6343039999999998,5.694198999999999,9.616361000000001,0.44537461538461537,0.44537461538461537,0.44537461538461537,0.5295146153846154,0.5295146153846154,0.44537461538461537,3.028143333333333,2.9803633333333335,4.029741666666666,1.3622383333333332,1.74339,3.1839580000000005,2.3866866666666664,3.108143333333333,2.352326666666667,2.92818,3.6178666666666666,6.667216666666667,2.9003333333333337,2.40956,3.092283333333333,4.77031,2.5714833333333336,3.549466666666667,5.76108,2.35347,3.320653333333333,1.3510866666666665,1.3510866666666665,3.0423299999999998,0.5317894736842105,2.5891800000000003,2.7421233333333332,2.8556333333333335,3.26533,2.2026866666666667,1.57745,2.8023833333333332,2.9393666666666665,2.137356666666667,4.363655,2.5564693333333333,3.49256,2.36283,4.01266,0.562921,6.9255233333333335,3.09114,3.09114,7.785645277777778,1.7818500000000002,1.7440433333333332,3.1675733333333334,4.60224,2.32679,1.9247066666666666,2.6989633333333334,1.390515,3.5604999999999998,1.6884833333333333,2.9066755,1.37434,0.25993,0.25993,5.04415,3.85904,3.59552,3.071213333333333,2.62726,3.339745,1.2738433333333334,5.84395,3.701045,2.912175,1.73872,1.1234508333333333,2.33561,3.1675733333333334,2.47509,2.085095,5.420835,3.777205,4.29732,4.092755,2.3671,0.6669508333333334,7.62837,2.17508,1.71594,3.54119,4.45053,2.17274,1.8040333333333332,4.808565,4.21755,3.347633333333333,3.2330133333333335,4.429615,4.40731,3.6502,2.6227460000000002,2.6227460000000002,4.430335,4.864055,5.6616,6.5806466666666665,2.7441833333333334,4.221285,1.5089857142857144,2.6446,5.3527960000000006,3.684735,1.826496,5.2461,3.4755075,3.8535,2.183755,4.206965,4.74073,4.80912,4.670295,2.4502666666666664,2.5220166666666666,3.7006333333333337,1.9746566666666665,2.632,2.5577533333333333,2.5595266666666667,0.8435779999999999,2.066795,2.8978033333333335,2.179986333333333,4.83872,4.55682,4.72137,3.85747,3.629135,4.806274999999999,12.103535,4.94949,3.854985,4.21124,4.017735,4.52511,2.4325533333333333,3.4555946666666664,3.6863333333333332,1.266075,2.88804,2.828925,4.6402,5.51555,4.267975,3.6421333333333332,2.981446666666667,2.5000533333333332,4.324033333333333,4.11493,3.8213000000000004,4.11493,2.41043825,2.2347466666666667,2.4595100000000003,2.23549,2.942363333333333,1.80203,0.8020999999999999,1.3536016666666668,1.9633366666666667,2.0750433333333334,1.6167066666666667,1.26873,1.7194966666666665,2.8073599999999996,1.485808,2.95339,1.3294633333333332,1.5610166666666665,2.65566,4.115633333333333,2.41983,2.15984,2.374136666666667,3.24466,2.19175,2.9321300000000003,3.1288866666666664,2.43504,3.017803333333333,3.0313774999999996,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,5.1418,3.009725,1.0146357142857143,3.096966666666667,2.5782233333333333,2.8638033333333333,3.69561,3.4398999999999997,4.51159,3.717007333333333,1.721394,2.937193333333333,1.9052833333333332,1.00830375,0.972541,1.6337283333333332,0.8891683333333332,0.8087425,1.2686439999999999,3.14577,1.570658,1.6715333333333333,1.9849494444444447,2.468775,1.4596600000000002,1.325725,1.6397883333333334,0.9509933333333334,1.2074316666666667,0.718395,0.9072419999999999,3.26698,3.590515,4.151805,4.47619,4.140095,3.0026733333333335,4.832475,3.6366,2.054205,3.415615,2.0460575,3.46665,2.5069733333333333,0.8558327272727273,4.429045,5.1372,2.050596666666667,1.24377,2.82939,3.381575,3.6836816666666667,2.9632799999999997,2.83645,0.89186875,2.34609,5.12364,3.798945,2.57633,1.4971233333333334,3.729165,2.12711,0.6254881818181818,4.34997,4.626095,4.30209,2.41018,1.468026,3.9091,4.348775,2.5489,2.540223333333333,2.52687,2.6074033333333335,2.7153266666666664,2.7386233333333334,3.0991866666666668,1.26435,2.703775,2.729836666666667,5.0482,4.37661,3.642185,4.59696,16.4139810530303,4.6675675000000005,4.563719333333333,2.74496,4.4969,5.16015,1.549448,2.3170225,2.6662766666666666,6.623692500000001,4.390795,3.76621,6.49685,2.6662766666666666,3.90992,2.113575,2.5713933333333334,2.9177366666666664,2.7227033333333335,1.3189,4.298675,3.91269,2.57288,4.15278,2.7211166666666666,3.395433333333333,3.666245,3.55942,4.68385,4.44962,2.70364,3.49604,2.48592,2.7392133333333333,1.426254,1.426254,3.3643666666666667,2.52636,0.3838714285714286,5.292593,1.005042,2.87281,3.847425,0.5595025,4.983925,8.3247,1.80961,3.547095,3.607055,2.66705,3.208965,2.257345,3.03112,3.420795,4.185145,3.085975,3.8696333333333333,1.00285,11.563939666666666,2.97266,2.86773,5.90165,2.55919,3.835605,7.695638333333333,3.970755,4.224265,3.84692,4.16932,5.9223875,1.4991625,2.92783,4.90179,3.873666666666667,1.9338159999999998,3.73644,3.798125,3.598285,3.893165,4.423685,4.0814,2.474255,4.54491,3.77847,5.32555,3.49055,2.25303,2.4181266666666668,1.9543333333333335,2.9869,1.3374066666666666,3.7764333333333333,0.8757472727272727,3.21664,3.2051933333333333,2.6072333333333333,1.5897983333333334,4.384945,4.46746,4.147975,1.8268925,4.760985,4.015845,0.7440614615384615,0.3325634615384615,4.23385,5.50065,0.97545,0.3325634615384615,4.851375,0.7440614615384615,0.7440614615384615,0.3325634615384615,5.721128333333334,2.5057833333333335,2.4252833333333332,5.71415,3.897005,3.05374,0.79293,3.270735,3.7039,4.772805,5.719,2.1251675,0.7428584615384615,4.354751666666667,2.4483433333333333,1.426844,1.982545,1.0532942857142857,2.5439066666666665,2.2576933333333336,3.83843,5.45635,2.9577733333333334,3.2314366666666667,3.0143833333333334,2.2792966666666667,2.92876,4.4110000000000005,1.6382225,1.9815275,3.925735,5.07515,2.244167222222222,5.25755,2.463335,4.13921,3.974415,2.633655,1.250545,3.23122,6.8736,3.996235,3.31227,5.13145,6.45995,2.27314,3.32545,4.49187,3.053355,3.450465,8.2156,3.73215,4.9443649999999995,2.35213,1.25979,2.621303333333333,1.95709,2.14478,1.82713,4.50081,0.7089935714285714,3.2643,3.993665,1.8937866666666665,3.08666,5.36765,3.431585,2.90431,4.518915,5.19415,9.536418666666668,2.6706333333333334,2.7350100000000004,1.6392440000000001,1.7132500000000002,1.1681866666666667,1.5663366666666667,2.9556633333333333,2.44284,2.7797433333333337,4.104310641025641,1.522675,2.6547533333333333,5.3124,5.7429,3.89255,3.361605,2.94809,2.6442,2.00734,2.07771,1.79119,1.91951,3.52128,3.87024,4.891015,5.09145,4.09765,5.7528041666666665,3.389535,2.442275,6.646519166666667,3.42282,8.759644999999999,4.794761666666666,4.794761666666666,5.74576,1.5793733333333335,1.411815,1.45543,0.722403,5.10975,4.0081,3.321695,3.321695,2.15272,4.800305,4.370405,4.66196,4.372735,2.9076500000000003,2.663025,3.838925,3.0965633333333336,5.309965833333333,3.609885,0.8167863636363637,5.25125,5.0445,4.036685,5.04935,3.19478,6.1988,4.50101,0.8682923076923077,5.4995,6.84549,3.509905,5.83215,5.7104,3.419565,2.63039,3.70582,6.05655,2.14426,5.8772,1.8530725,4.79883,2.58548,2.603425,0.943039,3.591385,6.0922,3.27577,4.12033,2.026553333333333,4.77691,8.192675,3.39038,4.07801,2.538825,3.018335,0.8396520000000001,4.89528,1.6196466666666665,3.485121666666667,3.485121666666667,3.904895,2.2684366666666667,3.1683,4.048285,2.05094,3.054626666666667,3.434533333333333,3.2432666666666665,2.86153,3.758825,3.199715,1.819555,3.3468666666666667,2.1507475,3.1059699999999997,1.95214,3.0782433333333334,3.2764066666666665,1.461757142857143,1.7312866666666666,0.459125,1.344195,0.459125,0.459125,1.7312866666666666,0.459125,3.510033333333333,2.570262,2.570262,2.9619033333333333,4.348815,3.817985,4.34681,5.38565,5.4788,3.492125,4.25386,4.26102,2.2061575,2.509024,2.5506100000000003,0.8468227272727272,5.74075,3.2668766666666667,3.10545,5.64065,4.2175825,5.12055,3.28904,2.5531833333333336,2.890055,3.3279,2.64461,2.6950233333333333,1.9856033333333334,5.4118,0.8894055555555556,4.081225,1.2130971428571429,3.51781,3.4486333333333334,2.982396666666667,4.18132,4.22489,3.965975,4.59443,4.05919,3.929185,4.49539,4.12364,2.61455,2.832075,3.217366666666667,4.07938,2.58136,3.384835,2.67204,2.919515,3.2683,3.42837,4.86676,5.0174,3.99741,69.02941088937452,2.7681183333333332,4.10337,16.751846,3.98376,3.0569933333333332,2.42551,1.82137,2.71817,4.635972499999999,3.101046666666667,4.4308675,5.81515,3.25644,8.063091666666667,5.44075,2.293505,3.103455,3.949575,3.40032,1.890276,1.1925175,4.56507,3.061855,5.814315000000001,3.699465,2.25432,3.45635,4.43731,4.50828,3.10974,5.62255,4.347815,3.96793,2.93187,2.51545,2.765345,6.23335,2.746715,3.68731,4.248734166666667,1.17279,3.108085,5.02972,4.374285,3.15919,3.51271,3.002175,4.22121,3.136515,3.5975,2.864515,4.21527,3.037255,2.688325,4.405665,8.77881,3.1237966666666668,4.077265,5.97483,2.990045,2.60426,4.1195337499999996,2.4203433333333333,2.83248,3.022164,3.347715,3.273855,2.86454,3.149845,3.307855,3.91753,3.821395,4.1429,3.687275,3.66498,3.831725,2.715215,2.715215,6.865578333333334,2.21022,3.222495,3.460385,2.48042,4.977265,4.07237,3.044785,3.510675,5.3151,5.966145,0.6517172727272728,4.117375,2.199705,2.790566666666667,2.80982,5.16805,2.680336666666667,1.8933525,1.15281,2.0446777272727275,4.198045,5.2156,4.155775,5.84415,5.72665,5.80155,2.550265,1.89534,3.963745,3.002515,2.87927,2.00303,1.4797466666666665,2.98254,3.2387866666666665,1.629466,2.52514,2.3770888571428572,3.442464532967033,2.72079,5.08285,3.250915,1.35812,3.296725,3.429885,5.88565,5.2041,5.63865,4.86551,1.9935866666666666,1.4651733333333334,0.5869271428571429,1.4686199999999998,3.50619,2.60774,3.5777116666666666,1.3980766666666666,2.55961,2.31348,3.2952,3.480265,3.76289,4.059955833333333,1.58198,1.3730575,1.85122,1.98651,1.4112725,2.515425,7.131204583333334,4.89853,3.87881,2.938665,6.8279,4.601325,3.12479,3.014925,3.378585,2.668645,3.778045,2.2851833333333333,7.31354,0.8822833333333334,3.08205,6.6839,4.11238,4.91779,6.42675,1.3970466666666665,3.234253333333333,3.1891166666666666,2.8021266666666667,1.591565,3.98651,8.4181,3.536045,5.11475,3.90894,3.20983,4.771675,0.8797466666666667,2.7479933333333335,5.4258,6.502323333333333,5.45165,5.6839,2.922565,3.7998666666666665,2.68224,5.20735,4.985225,4.059797071428571,4.059797071428571,0.6226885714285714,3.7918333333333334,0.9241860000000001,0.65428,1.8562575,3.8491666666666666,4.13105,5.592078571428571,2.3858866666666665,3.3287985714285715,3.2640085714285716,3.0055433333333332,3.15732,4.5505,3.448425,1.87344,1.87344,4.247385,2.961373333333333,2.6559466666666665,3.836805,3.5694,0.5705088888888888,3.3821333333333334,2.729926666666667,2.6899800000000003,2.842833333333333,2.594175,2.6609666666666665,3.2991200000000003,3.13301,0.818966,3.15094,6.251255714285715,2.19282,7.380552,1.53866,1.53866,3.5986399166666665,3.4125666666666667,3.3890333333333333,2.9685699999999997,1.757808,1.350172857142857,3.2447433333333335,3.428266666666667,1.5194283333333332,1.5714000000000001,2.8117666666666667,2.680866,2.917923333333333,1.890955,1.9490325,3.08605,2.206335,2.68641,3.101635,1.566125,3.58698,3.11816,7.08591,3.5955,1.6565875,2.98784,2.59357,2.197255,3.95594,2.3608766666666665,2.70338,7.5657325,0.8221076923076923,0.8122050000000001,4.59265,1.473958,1.473958,3.83869,2.4712625,4.597435,3.223455,1.32886,2.3460806666666665,2.9098566666666668,2.3871273333333334,5.25795,4.54994,2.614446666666667,2.568096666666667,1.5153978571428572,1.5153978571428572,2.8011866666666667,3.830295,4.053166666666667,6.012,3.14793,5.09625,4.565455,6.68785,4.82284,2.672505,2.7184566666666665,2.572293333333333,2.6411266666666666,0.71284,0.71284,0.71284,3.194875,4.315885,3.96633,0.96997,0.96997,4.85176,5.92295,6.81094,22.43122766666667,11.2728,8.39414,3.292465,5.86,2.4661375,4.66009,2.6186966666666667,3.23103,4.171966666666667,5.350659333333334,2.04791,2.463505,6.84638,2.15926,2.15926,6.41025,3.307565,4.330425,2.07832,5.0617435,4.833825,4.36575,5.2886,3.966705,1.37238,5.9002,9.48885,1.37238,2.07832,2.07307,1.058112,1.058112,1.791394,2.2199566666666666,1.791394,4.79674,5.57615,6.21635,9.26461,2.07832,11.5702715,6.145,5.8884,2.4661375,3.5123,4.46429,8.71066,3.032900833333333,4.252965,6.1746,3.45506,4.91764,6.2106,4.66417,5.32205,5.2646,2.842475,5.177,3.927665,4.786535,4.405185,0.796795,1.467288,3.18608,5.5776,4.43749,2.9127166666666664,2.223665,4.29741,4.940235,5.8806,5.374,5.1194,4.204435,3.693165,4.030755,3.714795,2.04214,4.80705,1.95398,2.5716,3.43858,1.51876,3.847995,4.315145,3.509235,5.2889,3.140055,6.779381666666667,0.9880222222222224,3.34706,2.4208,1.2472028571428573,5.279696,1.5964866666666666,1.5712766666666667,2.85112,2.9367405,3.192223333333333,2.7606566666666663,1.9560725,0.7436309090909091,2.15068,2.598945,3.983735,0.7417946153846154,5.815635,1.79718,1.157532,3.4544,1.157532,3.80662,0.968090909090909,4.358225,3.101906666666667,1.73191,4.958341,4.447681,4.447681,4.89599,2.48259,3.05013,2.9376866666666666,1.56867,3.823775,3.684185,1.8701966666666667,0.7464083333333332,7.228352948717949,2.852545,4.331925,4.31513,7.49936,2.4129625,4.090605,3.693005,3.147105,3.78091,5.644,6.2472925,4.700865,5.0211,5.4231,2.949203333333333,4.84945,4.291995,4.529195,1.1497444444444445,0.4888921428571429,3.0733,3.4699666666666666,2.9168133333333333,5.53895,3.758425,4.20068,4.30385,5.35405,4.38384,4.310355,1.19818,2.314945,8.739055,2.3166433333333334,1.87374,4.355073333333333,11.682553174603175,1.4987075,5.35295,6.39705,5.178,3.5875333333333335,2.4076766666666667,3.3311666666666664,4.170385,1.081315,3.413866666666667,3.5835,0.3687115789473684,2.2648733333333335,4.72047,4.16168,2.179345,4.28343,3.034865,4.971218333333333,1.24152,0.5281245454545455,3.7296983333333333,1.2253685714285714,1.0453,1.0453,1.0453,1.0453,1.6682,2.9258433333333334,1.8790933333333333,3.527433333333333,5.3165,3.5749666666666666,5.2565,3.82132,4.066365,3.58301,3.885585,1.4726100000000002,6.782064999999999,2.20841,4.85888,5.262326666666667,5.42155,5.257619999999999,2.352446666666667,2.4853566666666667,2.5965233333333333,3.50984,1.2356133333333335,4.637713333333334,2.6162033333333334,4.96791,2.98434,2.42281,3.72217,3.327375,2.8314,2.44299,2.8035099999999997,1.4503425,0.40156111111111115,4.50266,3.91383,4.03235,3.645195,3.83169,5.81725,4.608025,0.5204799999999999,3.437398,7.688628,2.02817,2.22306,5.868969999999999,5.8746,2.8772233333333332,5.1275,5.3318,4.578045,4.205055,4.258965,5.505,5.5772,5.24595,3.48004,5.321714,1.513978,1.6333183333333334,4.379745,4.1918,4.23994,3.186555,5.3885,4.72014,3.715965,3.34493,15.786328991216337,1.2659157356875335,1.2286225,2.0640252272727273,0.54055125,0.5288013333333333,1.5197375,0.35460882352941175,1.466486,3.9426,2.03092,0.9996083333333333,2.2642291666666665,0.9749916666666666,2.2642291666666665,2.2642291666666665,0.9749916666666666,0.8538769230769231,0.5631264285714286,2.68082,2.9572866666666666,4.896185,4.061635,2.802353333333333,2.7366,4.32878,5.1124,5.24215,2.81405,4.53338,0.7005742857142857,2.3208113333333333,8.142733333333332,4.5148,6.698583333333334,2.596635,4.38582,2.257895,5.5177,5.677,3.481075,3.974945,3.133645,1.0590316666666666,4.55773,4.912045,1.421718,1.148762,1.5997116666666666,2.2437400000000003,2.381206666666667,5.58995,5.6528,2.2316525,2.2316525,3.577714444444444,6.06384,2.08397,0.6560036363636363,0.7954614285714285,2.30689,3.5978999999999997,0.9578157142857143,0.9578157142857143,0.9578157142857143,0.36097615384615384,1.0730928571428573,3.08795,6.1012,3.911433333333333,4.250613333333334,5.3757,1.04138,3.6169333333333333,3.3027599999999997,3.9503333333333335,5.7555,2.73681,7.5974,5.13675,1.1373,3.8842666666666665,1.903424,2.604135,2.310173333333333,7.484421666666666,3.24751,4.310135,2.4322975,4.61889,4.37191,5.14155,0.5384788888888888,2.9379899999999997,1.3354733333333335,2.7179233333333332,3.791324,2.0450233333333334,2.715733333333333,2.701423333333333,2.5541266666666664,2.66344,2.8436966666666668,2.7325933333333334,2.9332666666666665,1.357974,2.180473333333333,1.8529466666666667,3.1994900000000004,2.6930533333333333,2.1464375,1.7568166666666667,1.7845233333333335,1.683365,3.00335,2.19711,1.93656,2.16192,2.30763,2.3566333333333334,0.8110933333333333,0.8110933333333333,0.8110933333333333,2.40312,2.2152366666666667,2.9907033333333337,2.3248,2.5121366666666667,1.92724,3.61835,3.3191333333333333,1.25499,2.40697,2.75511,3.6443266666666667,1.6271714285714285,7.145161666666667,4.43154,3.0694,4.00024,3.513115,1.6933325,0.8019928571428572,3.859625,3.691325,3.6443266666666667,4.689425,4.27327,4.887915,2.98644,4.098865,4.223915,0.968563,2.585465,3.23932,4.962211666666667,4.733205,3.492195,3.41579,2.40517,2.48852,2.429536666666667,0.6350091666666667,5.4070945833333335,2.737925,4.02213,2.6540933333333334,3.7825516666666665,3.4683333333333333,2.4403799999999998,3.1540523333333335,3.1540523333333335,2.5113566666666665,2.10158,2.47726,1.9565933333333334,4.369985,1.429374,2.44208,3.797395,3.947625,3.990175,5.4251,4.24855,2.6297,2.166635,3.219275,3.395945,2.61655,5.4013,2.740915,1.0137557142857143,1.0137557142857143,4.774025,3.745095,0.91977,4.389295,0.91977,4.02614,4.867665,4.745145,3.374605,3.164505,6.2107149999999995,4.1315675,5.7378,0.87795,0.87795,2.18634,4.660101666666667,1.6014766666666667,3.058625,3.405845,1.1159957142857142,4.16469,4.157065,5.873675,5.873675,1.101375,5.1932,5.37965,5.12705,6.08085,2.1091875,2.1091875,7.0163,0.9821454545454545,7.23625,1.9973175,6.6823975,2.7034,2.5150200000000003,3.36139,2.4361,2.124773333333333,2.446563333333333,2.97277,2.523581666666667,6.415174,1.7398060000000002,5.0713,3.1567866666666666,2.683543333333333,1.752255,2.395095,3.079935,3.082325,3.403875,2.72631,2.31791,2.272365,2.592085,1.103562,3.2504,2.48121,3.16973,2.0762935000000002,2.0762935000000002,2.89633,2.04628,3.675535,3.45909,4.864715,7.154608333333333,4.03411,3.30068,6.554084999999999,2.1030166666666665,3.256508888888889,2.15136,1.5104428571428572,1.721995,4.09011,1.58294,0.499941875,0.6565466666666667,4.64386,5.0136,2.774705,0.9335722222222222,3.0377,3.02399,4.906745,1.8762180000000002,1.953605,1.1740000000000002,4.783445,2.30887,4.69256,0.714184,4.2343875,4.27299,3.7268,4.670105,3.388435,3.711925,3.040923333333333,5.62405,3.539755,2.33901,2.5871299999999997,6.170966666666667,6.3154675000000005,0.7519175,3.784365,4.34363,5.40805,3.8541666666666665,3.8805333333333336,3.0211,3.24464,3.8455333333333335,6.45359,2.680866,2.480556,4.313255,3.57832,2.3822,2.578425,8.32149,4.646385,1.8684166666666666,5.06,4.714405,1.7413779999999999,3.814335,1.39975,1.5812571428571427,4.44888,3.9449,5.2417,2.7914133333333333,3.61133,3.7047,5.1201,4.274235,3.963345,3.37678,4.298945,4.256245,4.226929999999999,1.174579923076923,1.174579923076923,7.67048,0.9296225,2.230865,0.9296225,0.6902633333333333,0.49234000000000006,2.9211283333333333,2.355445,0.48469,2.230865,2.306865,3.184545,2.4364383333333333,3.322765,4.934,7.939083333333333,2.304325,2.110375,2.54974,5.04845,5.8489,2.28344,1.6537175,0.87733,2.5310475,4.07174,2.628585,4.5049,6.391837499999999,0.4484427777777778,3.780135,0.732446,3.0479333333333334,2.3294425,4.186685,1.2247733333333333,4.25503,4.7798275,4.193145,2.848965,4.154945,5.500235,1.834355,3.803605,0.6323453846153846,2.642855,2.69877,1.264958,3.1467033333333334,2.4125466666666666,2.4299633333333333,3.846515,8.708425,2.9465121212121215,3.615865,3.32688,6.99707,5.573586666666667,3.224536666666667,4.066085,3.482645,5.513,3.98333,5.46715,4.973145,4.006175,5.07295,3.2045366666666664,1.5248825,1.9026533333333333,2.321493333333333,4.085455,2.369763333333333,0.1991510810810811,0.1991510810810811,0.1991510810810811,30.66781795238095,0.1991510810810811,3.086176081081081,0.1991510810810811,0.1991510810810811,0.1991510810810811,3.3423477477477475,4.205675,0.1991510810810811,0.1991510810810811,0.1991510810810811,0.1991510810810811,0.1991510810810811,3.02594,5.00722,2.962735,0.23027307692307694,0.23027307692307694,4.446786666666667,4.067114333333333,4.184971666666667,3.4314867777777778,4.000091428571428,8.160533333333333,11.725893803418804,6.766357333333334,8.338146666666667,7.824176589285714,3.0423299999999998,6.575804761904762,4.552168333333333,4.462097788461538,0.23027307692307694,8.151184,6.836534476190476,6.843764999999999,2.9507,8.930719589285715,15.151141398809523,18.685276206501833,56.964288053151094,117.71961424830317,1.3510866666666665,3.320653333333333,3.36625,4.0421454929214935,0.23027307692307694,1.6878832051282049,8.859034583333333,15.09548563095238,19.919905,48.86157113492064,13.109456589285715,3.144675,0.22669793103448274,0.22669793103448274,4.4491499999999995,2.6861599999999997,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,5.72062,0.22669793103448274,0.22669793103448274,0.22669793103448274,2.600745,2.0265400000000002,3.50166,3.60285,4.257943333333333,5.22015,2.30255,4.14524,4.19497,3.247535,1.50872,3.52915,0.9595783333333333,2.330865,2.15596,5.299943333333333,6.455326666666666,2.7764866666666665,6.1316349444444445,0.5428038888888889,0.5102826666666667,2.53692,2.982483333333333,2.983195,4.315095,3.6359333333333335,7.379535000000001,3.65132,3.71845,3.292015,3.960865,3.135765,3.190425,5.86805,1.899545,0.44288923076923076,0.8416427272727273,4.5228850000000005,1.78685,3.761775,3.61327,4.47007,3.49149,2.42547,2.64006,0.6186659999999999,0.736476,4.33586,2.5994566666666667,6.0366,3.757475,3.858526666666666,2.670015,3.19257,5.77915,4.125895,3.18659,0.9248454545454545,3.4624333333333333,4.60637,2.149445,0.946245,1.5392766666666666,4.194135,6.37475,1.92792,2.962535,4.133815,5.84985,2.480365,2.4829133333333333,3.152095,4.713945,2.90752,4.39222,0.7856257142857144,1.9948066666666666,3.312215,1.98848,6.2339199999999995,3.587065,4.202115,5.63555,2.83515,2.45549,0.5078854545454545,4.925975,4.625725,6.83465,3.98542,4.63144,5.0368,2.74706,2.6382,1.2236157142857143,5.323,2.08751,2.623505,7.83904,4.11821,5.5597,3.692395,0.8750888888888889,3.08083,1.2384685714285715,3.132655,6.229,5.0899,5.08335,3.78617,5.18075,4.455485,1.817975,1.7877599999999998,5.11115,3.1958566666666663,3.3950333333333336,2.4905325,5.46265,4.954945,1.4649316666666667,3.6914,2.80569,2.764735,4.284885,8.93919,4.731025,1.73793,4.76222,6.52413,4.34961,4.03721,4.130735,4.281245,4.72087,7.67783,2.34523,3.16838,3.328895,4.10976,3.012575,3.07213,4.999835,4.302985,3.679815,3.971808666666667,19.127469666666666,2.8159766666666664,2.7806466666666663,3.4759666666666664,5.552559666666666,1.256525,4.367625,2.163409166666667,4.951645,1.5003533333333332,4.417475,4.300835,3.85631,0.93002,4.653745,4.435165,1.6120125,4.558524621212122,4.601065,1.1285242857142859,3.441875,1.984035,2.42494,1.585135,4.149365,3.739435,3.886325,3.64362,2.94918,4.5802,8.165329999999999,4.706265,4.60084,5.0035,3.1997133333333334,4.28799,4.959445,6.810989999999999,0.882868,0.882868,4.468805,4.944565,2.3254566666666667,1.4932083333333335,7.3474450000000004,4.28777,3.668625,4.059915,4.829535,4.688375,3.517935,4.191465,6.739348,4.226846666666667,4.471635,4.89069,1.496257142857143,2.776675,4.69248,4.80555,3.7162249999999997,0.2093411111111111,1.482725,2.174875,2.4684933333333334,2.1501333333333332,0.9458222222222221,1.268675,1.2758825,2.4920533333333332,0.6244022222222223,1.0499957142857144,1.971885,3.89507,3.9885333333333333,2.39432,2.6822466666666664,2.88595,2.806573333333333,0.7250460000000001,0.937175,3.336175,4.507965,4.725855,3.09209,4.96738,4.91149,4.69769,2.1847000000000003,4.324675,5.00925,4.469615,6.3399275,3.80909,0.47452941176470587,5.75305,4.45511,4.326025,5.1494,3.381965,1.9988499999999998,3.94102,3.998405,2.687375,5.251268333333333,4.412135,1.3675133333333334,5.251268333333333,3.9688,6.795755,3.634255,1.2009333333333334,3.91022,5.07835,4.168915,2.4554666666666667,5.1283,1.4942475,1.95916,3.346735,3.436465,0.7999533333333333,5.0837,4.81014,3.66384,3.78946,3.5135,3.21219,1.7967600000000001,1.7232675,3.07056,3.392445,3.5170333333333335,2.3889633333333333,2.288885,2.0402583333333335,3.98943,1.3954842857142857,0.8105933333333334,5.78492,3.90741,1.557746,2.9052900000000004,2.2679933333333335,3.24592,6.342008333333334,2.4165366666666666,0.865592,2.574135,4.87913,2.0697466666666666,4.42703,5.06595,5.206,4.90036,4.379125,5.24235,2.1475166666666667,2.23601,1.6627666666666665,2.1080466666666666,1.8640125,2.3371,2.1688199999999997,1.83537,2.62127,3.043365,4.16553,6.5843,4.620855,4.11537,4.42604,3.896615,3.87488,5.1569,0.90962875,3.2521466666666665,4.783535,1.140568,0.6851733333333333,5.24765,3.57637,2.768273333333333,3.79245125,6.3784525,5.37875,0.9757680000000001,1.2248385714285714,0.6911211111111111,4.058418333333334,2.2241166666666667,2.7133599999999998,1.21495,2.800266666666667,2.8289333333333335,5.6266,4.489105,4.546675,5.3504,4.55546,1.2962466666666665,3.652265,1.68836,3.485225,3.96056,3.303315,3.0686433333333336,3.3589,2.775183333333333,4.54552,4.20354,3.282525,2.5376,9.012635,10.129290000000001,4.3451,1.3784842857142858,5.39315,4.289295,4.93397,4.50203,4.024775,3.79301,3.345545,4.06106,3.731304583333333,5.63576,3.809735,3.985555,4.49555,1.843084,4.77073,5.88695,4.743845,3.313825,3.0781925,7.26504,0.7873966666666666,2.4992533333333333,2.72526,2.28842,5.0917,3.672145,1.3664399999999999,4.2944,3.509233333333333,3.62007,4.61724,4.207436666666666,6.781334,3.2898566666666667,3.0681733333333336,3.3022533333333333,2.8459033333333337,4.263435,2.1409533333333335,2.1209666666666664,3.0223266666666664,3.85039,3.8296691666666667,1.9370275,1.52634,3.428531785714286,3.3615055000000003,0.9804766666666667,2.718018333333333,2.718018333333333,1.457525,5.8404,3.10084,3.452915,3.85846,3.499285,3.392875,3.186065,3.201235,3.20591,2.25764,0.5559113333333333,3.247975,5.55115,3.10663,3.895795,3.170755,4.00137,4.00093,3.112295,2.603045,3.92184,3.643405,3.0263,3.08372,3.551195,2.542806666666667,4.05688,3.80636,8.75435,3.33288,3.56132,3.081055,3.917875,3.9694,3.600565,2.298235,3.62414,2.6588525,2.755365,2.87366,3.138405,3.62463,1.7221733333333333,1.7221733333333333,2.23965,2.94966,3.121685,1.5029759999999999,2.4313,3.336765,1.9339780000000002,2.679905,1.5029759999999999,4.59265,2.805035,3.8592805,2.984765,3.49463,2.33538,3.104115,3.909635,4.34522,3.741025,4.475295,3.755085,4.20841,3.56779,3.15817,3.03943,2.902895,3.865505,2.5739733333333334,3.709735,5.44515,4.070255,3.62332,0.2637439130434783,3.76575,0.4476275,3.585865,3.442785,2.940645,3.498625,3.712715,5.93515,3.24995,2.5234799999999997,2.246023333333333,2.743563333333333,0.633131,7.12487,3.080825,3.440665,3.59554,1.97353,2.879585,3.134075,3.010425,6.582525,4.81449,5.19495,4.538785,4.45525,4.343355,3.969375,1.4482333333333333,1.613864,3.91727,4.690595,5.9066775,2.59782,4.925865,2.041145,3.568633333333333,4.12821,1.9165757142857145,4.06081,4.93674,3.5983666666666667,3.8298,2.7877766666666663,4.625925,4.910635,3.511566666666667,4.37229,4.76471,5.01145,4.535605,4.469835,4.26838,3.18555,4.454235,2.625775,3.373466666666667,3.373466666666667,4.83143,2.433596666666667,3.910265,2.48685,4.839675,3.4423666666666666,3.536325,1.82937,2.1059233333333336,1.1437633333333335,1.1437633333333335,1.639884,3.470466666666667,1.6708133333333333,2.6271633333333333,4.54031,5.199102,3.2887766666666667,4.2193,5.58401,3.1148,2.720645,3.093496666666667,1.6010366666666667,4.35354,4.317035,6.460775,1.9022666666666668,5.26015,5.80815,3.4843666666666664,3.46695,4.16285,6.46779,2.2538766666666668,2.4584675,4.150155,0.5003985714285715,4.33986,4.002235,4.380895,4.611685,3.46102,1.545616,1.736554,3.851955,3.74357,2.34761,3.71339,4.764595,5.018,1.15297125,3.680725,4.539435,3.682195,4.823565,2.795946666666667,5.143148333333333,3.679875,1.503868,3.528165,1.201135,2.7739700000000003,7.8126016666666676,3.32625,0.7254063636363637,3.6049,4.134445,3.893845,1.96553,1.96553,4.92242,5.73815,2.83811,0.46951222222222216,1.92118,4.508806666666667,4.52629,4.34764,1.7101780000000002,3.065633333333333,3.670385,1.24986,1.24986,1.24986,0.6982358333333334,1.2311608333333333,0.532925,1.24986,0.6982358333333334,0.23722,0.770145,0.23722,0.46101583333333335,0.46101583333333335,0.46101583333333335,0.46101583333333335,1.089363,1.07442125,2.30674,2.340411666666667,1.1123733333333334,6.313835,2.66038,6.258723333333332,2.894933333333333,3.874135,2.91356,3.319505,2.8203508333333334,4.57595,2.8087933333333335,4.08003,3.904835,4.77762,2.18184,3.9845,4.860915,3.990545,3.096215,4.87787,3.295105,4.44987,5.649,5.16615,6.18975,5.28025,1.11418,4.692085,3.81008,3.393665,16.37786,4.880075,5.45375,2.7246233333333336,7.52165,3.758135,5.18825,5.1954,3.164325,1.048885,2.614485,4.17147,4.30486,3.79741,3.1901,4.09543,3.016906666666667,4.663525,4.78393,4.248025,6.519536666666666,7.806386666666667,1.4070271428571428,3.67651,3.93127,4.02897,3.4854,3.583355,6.91603,2.432575,2.73902,2.620425,3.92169,3.88632,4.822645,2.479635,1.6805325,0.939932,4.308855,4.15656,3.769805,4.109245,3.755935,5.09815,3.958565,6.50015,5.95265,5.2955,6.7756,3.665,3.211425,3.17029,3.285175,1.8305875,4.418265,6.4414,6.7353,6.164843333333334,6.164843333333334,2.459255,1.8305875,2.187695,3.66341,0.7045483333333333,1.4992783333333333,0.79473,1.6261625,2.753615,0.425736,2.938735,4.14478,1.6261625,3.1409825,10.92247,6.53151,2.3570225,1.07332,1.6382066666666668,4.736765,4.218715,5.986190619047619,1.9538875,2.21243,4.12194,3.717805,4.738245,1.7417999999999998,5.40375,3.6641,3.520545,5.26765,7.163184,3.850755,2.46418,2.7376733333333334,1.7975933333333334,4.282245,5.5809075,1.9365200000000002,5.6678,4.338895,6.106895,0.5546906666666668,4.960696666666667,5.6639,5.0614,2.994545,2.77202,7.3037,8.557033333333333,6.6654,2.0360333333333336,2.0360333333333336,2.0360333333333336,5.18005,4.825135,6.0873,3.762485,2.705735,2.6732873684210525,5.2906,3.712565,2.5316345,1.890375,2.5316345,7.3161845,4.795903333333333,4.7822723809523815,8.09201,4.7822723809523815,4.7822723809523815,3.619745714285714,6.82978,5.249719,2.767814,2.767814,2.600435,7.0519,2.907045,3.539825,5.4883291666666665,5.4883291666666665,5.4883291666666665,7.3780850000000004,3.4746775000000003,3.42802,3.5242500000000003,3.4217775,0.8591625,7.571983333333334,2.77608,6.75695,3.448545,12.619825666666667,4.99966,5.349590833333333,6.6582,2.5265383333333333,3.44217,1.0914249999999999,5.349590833333333,3.37866,1.7595025,1.7595025,3.024475,5.123076666666667,1.712425,4.676671666666667,0.8246840000000001,1.417315,0.8246840000000001,1.86372,2.537109,5.127129,3.653975,1.417315,3.21308,4.78654,1.006495,3.42087,4.193745,2.26436,4.175411666666667,2.87146,3.063845,3.083605,0.974888,3.67111,2.68801,2.016265,1.6461133333333333,2.9670933333333336,4.11296,2.62609,3.69068,1.2562133333333332,1.2562133333333332,1.2562133333333332,4.145015,3.157526666666667,3.157526666666667,2.82551,3.730335,1.9756066666666667,1.4945,1.4945,3.041495,4.7081925,0.8036075,1.5699866666666666,2.70769,1.053555,2.623541666666666,0.974888,0.974888,1.853425833333333,0.974888,3.0129791666666668,0.48853166666666664,3.0129791666666668,5.88073375,3.20024,2.4256533333333334,1.7725470833333334,0.5783349999999999,2.3508820833333335,3.62078,2.3508820833333335,0.9346733333333334,3.3381,3.66789,3.78564,3.50957,2.65066,3.81774,1.7245766666666666,1.0504969444444443,0.4909325,1.0504969444444443,0.5595644444444444,1.0504969444444443,1.0504969444444443,4.577335,4.39219,5.9386,3.3466,4.538855,4.57552,5.31775,3.50012,3.962655,1.4450571428571428,2.8724366666666667,4.650265,3.78605,1.3376033333333333,2.8518733333333333,3.988315,3.77298,4.130095,3.66774,4.120095,3.683315,3.155945,4.42386,2.5878366666666666,6.12735,3.4496,3.838855,4.49292,0.8378680000000001,1.985365,3.07094,6.18642,3.998,3.448465,2.93749,4.312195,7.340338333333333,3.11863,3.149155,2.849413333333333,4.156505,3.982335,5.6506,5.62755,4.943225,3.13694,5.4766,4.768325,3.6234333333333333,4.375755,3.4483,2.4033,2.45052,4.93485,6.70735,5.17835,5.5689,3.999355,4.87976,5.7169,0.5404215384615385,7.60791,4.66841,3.66666,4.043895,4.982685,4.11585,3.0681700000000003,2.514575,1.3718983333333332,0.5712823076923077,1.8946239999999999,3.1391333333333336,3.362695,3.581145,3.95546,4.015005,11.811133333333334,3.81248,3.833235,2.817605,0.7560233333333333,5.378736666666667,2.868676666666667,1.4476166666666668,4.316293333333334,5.288761666666667,2.420085,7.79587,4.72361,1.872832,1.872832,1.872832,4.94539,9.23127,3.516765,3.21135,3.21135,3.26301,9.91612,1.0786375,4.76885,4.661545,4.238055,2.7179266666666666,2.160156666666667,4.199925,3.780955,6.3337,5.878396666666667,3.78447,2.875455,3.68138,4.531,3.6744095000000003,1.3499625,3.0581066666666668,6.02408,3.43741,5.35725,0.9926,3.7258999999999998,2.34141,2.5178366666666667,1.781575,1.7859966666666667,2.0621233333333335,6.02735,2.066585,4.335175,5.46985,1.7398060000000002,4.85964,3.85272,4.758475,3.212953333333333,2.203385,2.70279,4.31397,4.0610558333333335,4.0610558333333335,1.19945,1.6011066666666667,2.9389299999999996,4.2013620000000005,2.180063272727273,4.8435820000000005,1.775692,2.844943333333333,2.12708,1.7302975,1.7302975,5.05415,7.5494216666666665,1.9492633333333333,3.1656933333333335,2.1280425,4.75052,3.1076,0.789742,2.8486,0.789742,2.603855,3.785225,5.1618,5.65935,3.577365,4.7010950000000005,5.86065,2.31879,1.8096733333333335,2.7622133333333334,2.1624466666666664,6.12705,5.2128,2.37805,3.96586,2.604215,4.57259,1.0858275,1.1112959999999998,1.7509,1.3402866666666666,2.5742166666666666,2.8187166666666665,2.1413466666666667,3.0725366666666667,2.62,4.64029,2.56454,2.3656133333333336,2.6502233333333334,2.3153900000000003,2.7066933333333334,2.6132766666666667,1.92732,2.4661766666666667,4.64448,3.73749,3.09237,3.09451,2.808536666666667,2.2677775,2.0007325,1.2569066666666666,0.295038,0.12799630434782608,2.1265466666666666,1.8468200000000001,0.12799630434782608,3.9312963043478257,1.999275,0.12799630434782608,5.919762500000001,2.1308066666666665,5.97867,3.265095,3.463033333333333,2.6990766666666666,2.8976933333333332,2.181695,4.22752,3.026806666666667,3.3661333333333334,0.44437105263157894,3.93258,2.6566377192982458,2.890735,1.745195,2.554075,4.63106,2.40627,7.8916450000000005,5.33955,3.48342,3.734955,5.98103,5.9509,1.6254033333333335,4.406289166666666,2.237835,1.955705,6.48866,7.80355,1.1803533333333334,2.1584,3.728895,2.36638,2.8778,2.977645,2.86796,4.45231,2.22225,3.158055,3.1719,3.210315,7.47006,1.4492266666666669,2.04796,2.90574,3.28593,1.7842799999999999,3.37936,1.454615,3.65275,3.012255,6.98658,3.19021,8.9081025,3.69981,1.61952,1.7491533333333333,2.834335,5.57654,1.5768275,1.7220199999999999,5.56767,3.309615,3.922975,2.89962,2.0062633333333335,3.144305,10.25352,5.2327,6.39569,3.36365,2.301735,2.01569,2.669345,2.83055,3.58824,1.7313166666666666,1.5488533333333334,2.522673333333333,3.51454,1.74339,3.287225,2.504945,2.99365,3.68107,3.349915,1.3296816666666667,2.637995,1.1525733333333334,1.46726,1.56666,3.277525,3.43359,3.59768,2.458545,3.72891,3.939395,2.805285,1.457654,3.445305,3.4755075,3.007235,1.81781,3.123665,3.303015,1.4887375,3.26881,1.5914366666666666,3.76413,4.3096,4.983455,2.711395,4.15167,1.706175,3.36457,5.74805,1.699605,1.17221,3.7616,2.53722,4.639705,4.02384,2.973975,4.593025,4.8605,2.4675033333333336,5.5637,5.3113150000000005,6.75295,4.265855,6.870880333333333,4.069645,1.7917333333333334,2.6008366666666665,4.713245,4.83471,2.67688,7.140668,1.3063300000000002,3.4370999999999996,2.0812,1.718716,2.323796666666667,2.7836766666666666,0.3686714285714286,2.78987,3.917566666666667,3.35763,2.35534,3.4349333333333334,2.212216666666667,2.44806,2.322145,9.335925,5.09245,2.016,5.18595,2.3403366739130433,0.7440614615384615,2.9357366666666667,7.682832,1.830304,4.502985000000001,6.241238333333333,1.7549875,1.603445,1.3702625,4.83544,3.13771,4.43488,3.7848375,2.3274833333333333,3.575405,0.959918,2.856714666666667,4.311255,4.06865,5.0328,3.058075,4.88162,5.04145,4.205835,5.01705,5.9527,4.79769,4.26317,5.40755,1.880896,1.8773075,2.66613,3.23384,1.1528444444444446,4.4878,2.0775533333333334,3.354533333333333,4.29659,3.339366666666667,2.6619566666666667,1.5237133333333333,3.14498,2.801935,2.7338066666666667,2.8329566666666666,2.0434233333333336,2.5161,2.46995,4.285395,4.69055,4.188935,4.89953,3.50816,2.25598,2.9556,4.733925,3.899366666666667,4.65288,3.677025,2.178875,4.3157266666666665,1.6607966666666665,4.02087,4.917048333333334,6.0249354761904765,4.23993,4.455975,5.5119,3.4135000000000004,4.105648333333334,4.82214,3.17186,3.7054525,3.36903,1.3599025,3.19457,1.72639,2.20705,5.2046,5.1376875,3.7054525,3.959605,3.50884,1.6014766666666667,3.52707,1.968065,2.3608766666666665,2.15587,2.668075,1.738275909090909,1.738275909090909,1.738275909090909,0.575100909090909,0.8453744444444444,2.3005677777777773,1.0788275,3.478055,1.31694,4.29994,5.20375,4.739145,3.18672,4.03773,3.11166,4.992985,1.6717125,2.838555,2.70023,3.206125,5.799681,4.39834,5.38625,4.14395,0.9404725,2.251085,1.27,3.69088,3.833315,4.071845,5.1558,4.918,4.291005,4.771455,3.826155,1.729385,1.3514783333333333,5.331966666666666,1.075067777777778,1.2460066666666667,2.9298166666666665,8.29082,3.057345,3.7299,3.38651,5.611682500000001,1.6337025,1.006735,1.51453,3.17169,3.35706,3.89124,3.67429,1.87049,6.74045,2.8865433333333335,0.90101875,4.913765,3.17496,2.71401,2.3568366666666667,3.6001666666666665,5.865798333333334,2.8689999999999998,3.30172,3.6132000000000004,2.894156666666667,3.0525066666666665,2.8842499999999998,2.729405,2.0189625,4.833375,4.662205,5.1841,1.1122,0.766629,4.015666666666667,2.6682233333333336,1.0843375,2.8230041666666668,3.65745,4.144805,6.91722,4.55832,3.6207666666666665,1.753758,3.91964,3.681005,2.92004,2.6512708571428574,4.372305,2.83086,5.073954,0.8872944444444444,4.02117,1.702432,3.839485,4.32688,1.942835,1.0076325,3.096475,0.424886,3.57657,6.88635,5.3964,2.8123959999999997,1.476442,3.9611666666666667,0.7776322222222222,2.486353333333333,0.7776322222222222,3.93911,4.597825,1.4078125,2.1059325,5.448201666666667,1.7874566666666667,3.81177,3.70713,3.743395,1.178078,1.5923966666666667,3.835975,5.20695,5.20175,3.022164,2.822425,3.174125,1.5589375,2.519175,1.904685,2.0109275,4.359335,1.4275888888888888,1.4275888888888888,3.76172,4.955206666666666,8.151009166666666,4.35775,8.52485,2.22647,3.94326,4.019445,1.7798833333333333,3.7682225000000003,4.19159,3.005255,6.16085,3.02752,2.5271,3.08461,4.19922,1.09235625,4.201485,4.526005,1.1277416666666666,7.749133333333334,2.670455,3.21034,3.56915,5.0513,5.1526,3.71219125,2.61821,2.760623333333333,2.10438,3.8691,2.476935,2.1483375,7.842595333333333,3.4646666666666666,3.0760966666666665,4.160675,23.286349813186813,0.6952333333333333,2.668525,4.66088,4.52975,8.32228,4.81423,4.471215,4.54679,7.025283333333334,3.435375,1.5698866666666669,4.845861666666667,3.10397,1.11032,1.11032,1.11032,2.34866375,1.703565,3.297405,1.5250975,2.95584,1.3970466666666665,2.755525,2.51596,2.95261,1.5250975,3.083555,2.489235,4.200793333333333,4.658908333333333,4.993005,0.7765624999999999,3.321555,2.609075,4.68114,3.83891,2.637,2.44261,1.6645125,2.445825,1.409418,3.87968,1.810245,4.566035,11.466925666666667,2.909523333333333,2.314165,5.066349166666667,4.768533333333333,4.499,6.43515,2.212266666666667,5.573586666666667,4.666495,1.0570983333333335,1.1602942857142857,6.4785129999999995,4.0679,2.44378,3.74675,1.8652225,4.47934,5.13425,4.49279,4.012105,1.3851985714285713,4.226725,4.927785,4.831075,6.314069,3.788125,5.4519,4.849785,4.422885,5.17455,3.704166666666667,5.0681,2.19866,3.37956,2.958685,3.44657,4.312015,6.27955,4.534655,2.85304,3.6063333333333336,8.91252,4.83573,3.2776433333333332,3.790075,3.825905,4.495775,4.150015,4.705345,6.80544,3.875925,2.9129799999999997,4.192971666666667,2.307815,4.496365,2.481196666666667,6.49301,1.6423166666666666,4.86786,4.823465,12.117494999999998,0.5345057142857143,4.675835,5.13005,0.6691521428571429,3.851805,3.840725,4.343905,0.951301,4.94673,4.808096666666667,2.61807,10.040890000000001,3.250716666666667,1.8480833333333333,2.373245,3.85373,6.08795,0.6246200000000001,3.83243,1.9203725,5.4914,0.7611207692307692,4.001955,5.73355,6.03955,3.358775,6.524275,4.591445,3.7369674999999996,2.4953766666666666,2.6391633333333333,4.233945,4.814585,5.11195,5.0382,5.49525,3.3453,7.14166,2.728675,3.3162570000000002,2.1367325,4.36756,2.6914833333333337,1.5287233333333334,3.073393333333333,2.94543,3.344,3.495233333333333,3.7466333333333335,3.3207733333333334,2.66895,5.66615,3.1913133333333334,3.62652,5.1647,2.7171033333333336,1.1641555555555554,3.0905299999999998,2.9729533333333333,3.82286,2.8442833333333333,2.9365633333333334,4.850366666666666,2.0266266666666666,1.673045,3.10355,3.672435,4.367495,1.09147125,4.43099,3.184755,3.985633333333333,3.172496666666667,4.844392,3.86897,3.22936,3.92712,1.89319,3.77147,0.6737125,4.71202,4.97865,17.036064242424242,3.1420666666666666,1.1952800000000001,4.252985,0.6432414285714286,2.71465,4.348865,1.74004,1.3276514285714285,3.815,4.56973,3.20458,0.7133316666666666,2.46352,7.75369,4.0634,5.72505,5.33945,5.39,3.2039666666666666,3.8561,3.2318833333333337,7.42549,4.165295,5.00745,2.1722525,0.44411222222222224,2.027955,2.99045,2.43477,2.99774,3.644265,2.9240933333333334,4.87634,0.7392875,4.831875,3.87791,2.62599,1.1342933333333334,2.8180899999999998,1.9825666666666668,5.01335,3.6712,2.251025,1.7284285714285714,3.60225,4.40255,4.539045,6.351976666666666,2.1662066666666666,4.957445,4.593315,4.16202,1.991958,4.2489,6.2282150000000005,4.959045,2.79141,4.90087,3.317575,2.603935,4.145975,3.877355,1.3341533333333333,4.733615,2.23009,2.8295166666666667,5.47304,5.47304,5.27475,1.9141020000000002,5.05985,0.91916375,1.79373,5.14945,2.6374333333333335,1.3615700000000002,3.3857,0.9228080000000001,4.373833333333333,4.618425,3.122425,5.0768,4.32408,3.890995,5.522975,3.547685,3.685833333333333,2.937996666666667,2.42718,2.779675,3.01688,4.37481,1.7160414285714285,3.0972000000000004,4.582215,4.932395,2.396564166666667,4.522245,4.78942,4.977065,3.5377333333333336,5.34635,5.2655,5.23795,4.902615,3.99529,3.928185,3.62102,4.71251,5.72975,4.91248,4.98037,4.605265,4.583435,0.7168975,5.0983,4.728205,3.994665,7.3773599999999995,4.413635,4.147515,4.57198,4.935935,3.54995,3.598515,2.144575,4.434480000000001,1.99278,1.359652857142857,3.564955,2.0136366666666667,2.4425866666666667,3.8217313333333336,3.3842,3.11546,1.1809633333333334,2.1138025,4.893445,4.09564,1.86233,1.86233,3.99828,1.580864,3.043143333333333,4.415415,3.52316,3.65106,1.4554333333333334,2.05952,3.5949824999999995,1.85444,4.05156,4.657125,4.327405,4.011115,7.158621666666667,2.82405,3.79115,4.762345,4.3455,3.2492533333333333,4.25167,4.221445,4.553085,2.415955,2.6792166666666666,4.6874,4.096075,3.727065,3.7684,1.6244975,4.05519,4.328695,4.451965,4.145355,3.849075,3.849075,3.1323725,4.278575,4.4955,4.44183,1.7883,7.8684,3.89571,4.986455,4.282415,4.386115,3.73215,5.18535,2.97914,3.893905,2.83031,5.36625,1.93397,4.57522,5.729461111111111,5.2672,0.751751,4.689210833333333,1.18353,4.82909,4.897415,4.473935,4.21682,5.53145,3.733,3.733,0.876733,2.2702575,4.915435,3.507525,4.15381,5.08505,5.54745,3.387895,4.433795,1.3673783333333331,2.589685,1.6737775,1.24386625,4.319331333333333,0.859615,2.745286666666667,3.1047233333333337,1.2349566666666667,2.204205,2.60723,1.4388283333333334,6.18477,2.213865,2.5337633333333334,5.3509,2.11957,2.7545566666666663,3.40421,4.577905,3.6422666666666665,3.4797,4.0162,1.686068,2.1905875,4.479655,0.6453435714285715,2.1881866666666667,2.436605,3.21081,2.7726699999999997,1.186132857142857,0.8551666666666667,2.4500533333333334,4.18674,1.2179942857142856,2.2842625,1.228365,5.691394166666667,2.2739275,5.0268,4.452535,4.43715,4.9896,5.3672,4.417485,4.314565,1.5056833333333335,3.917666666666667,1.7596260000000001,2.7031766666666663,1.2110285714285713,4.39852,2.1793825,7.3075399999999995,4.255855,4.085,1.517802,6.900575,4.047815,1.587315,4.073395,2.924365,4.13582,3.410745,1.9366125,1.9366125,3.263173333333333,1.3536016666666668,1.3536016666666668,1.991958,2.916123333333333,2.1464375,1.25499,3.6597666666666666,1.045945,3.2095066666666665,2.332885,1.8080125,1.5105899999999999,2.088915,2.2171125,0.2862635294117647,2.506025,1.2970183333333334,2.30705,2.12708,2.6297,1.0322466666666665,1.103562,3.6734000000000004,3.230166666666667,1.9366125,1.78685,1.91775,2.4641533333333334,2.4075,1.873828,3.30016,1.1910399999999999,3.217366666666667,2.7767766666666667,2.51224,1.521358,1.17858,2.561775,1.17858,2.561775,0.70243125,0.70243125,0.48225222222222225,2.3956825,2.5447,0.70243125,2.17755,2.3707366666666667,2.404135,1.683365,0.8110933333333333,0.70243125,0.70243125,1.5958640000000002,1.5958640000000002,2.0041725,1.78685,0.70243125,2.27832,0.4576346153846154,3.20768,2.1189566666666666,2.5042233333333335,2.53473,2.53473,0.4001665,0.4001665,1.991958,2.01276,2.22694,2.0744,0.4001665,3.558866666666667,2.5404,1.638996,0.640575,1.638996,0.640575,8.24691,2.525603333333333,4.122033333333333,2.66705,3.105933333333333,3.0742966666666667,2.9212933333333333,3.5563000000000002,2.51545,1.7187175,2.7536133333333335,3.11863,2.3111566666666667,1.5958640000000002,2.5409596825396825,2.5409596825396825,2.728953333333333,2.102625,4.115235,2.2904966666666664,3.4263999999999997,2.6591,1.485088,2.488315,2.422615,0.7981336363636363,1.6948525,3.6478,1.757518,3.208353333333333,2.61139,2.7609,3.947366666666667,1.6937,3.5191,3.0664433333333334,4.2179,1.270764,0.22669793103448274,1.291882857142857,1.291882857142857,1.0595855555555556,2.9833366666666667,3.9503333333333335,2.4614733333333336,2.0462333333333333,2.0462333333333333,2.0366025,1.5914366666666666,1.00284,1.6246333333333334,1.6246333333333334,0.70243125,1.991958,2.8054633333333334,3.2559233333333335,2.332885,2.21396,2.21396,2.21396,1.0919344444444445,1.5104428571428572,1.5104428571428572,2.587125,3.172893333333333,2.6696218686868685,4.205775,2.4560400000000002,2.6616166666666667,3.59442,3.75709,7.128432500000001,4.02799,4.6767,3.958,13.2094825,5.0517,3.434645,0.9476825,4.09039,3.1138,2.316685,3.661955,5.1478,7.0955,6.07355,0.5238117647058823,3.97543,3.63588,4.03915,2.436175,4.776165,4.602895,4.354735,8.670945,3.10855,3.790245,3.86468,3.278312727272727,7.921284717948718,3.273146666666667,2.5713066666666666,3.62336,4.406805,5.12475,4.166305,6.692944,4.230195,1.320686,2.824675,0.88291,5.01765,2.76161,2.5273,3.894435,4.232145,2.656495,4.92047,3.92983,8.075575,3.84755,4.7574749999999995,2.658726666666667,4.88297,2.907685,0.9539775,0.9539775,3.36971,3.940625,2.198685,2.17199,4.13517,2.89335,2.63623,2.01134,1.9720475,2.98915,2.4597866666666666,1.1602,3.73972,4.98478,8.28156,1.6762219999999999,3.114625,3.282135,3.61484,2.7629133333333336,8.09342,4.21235,3.702033333333333,3.08684,4.159505,3.398066666666667,3.1862366666666664,3.31377,3.95921,3.86329,4.66884,4.155875,0.3874413333333333,1.47482,2.384863333333333,1.7373475,4.63358,3.654565,2.76634,2.296355,4.73124,3.8354377499999996,2.117185,2.352955,0.980573,2.2931575,2.4859233333333335,2.4859233333333335,5.35235,1.9467625,3.113433333333333,2.2664666666666666,2.1840733333333335,1.6253866666666665,2.878735,3.97898,5.08515,4.38058,5.23925,4.86746,2.794095,3.4084333333333334,2.08832,5.0901,5.492283333333334,1.91441,2.9245099999999997,2.219115,2.7519533333333333,3.9578766666666665,2.699666666666667,5.11045,3.738525,3.49174,4.53023,3.0368433333333336,3.506865,4.204535,2.25682,2.4213833333333334,0.3996671428571429,3.9111,2.60445,2.90709,6.0114,4.65485,5.8540125,1.8583575,1.602595,2.989625,5.39505,6.48515,6.1956,3.2039333333333335,2.1294233333333334,4.03432,2.1489266666666667,4.52453,2.4008033333333336,2.3900125,5.37845,4.997775,4.49829,1.603495,1.843555,1.07838,1.07838,1.174734,0.93858,0.75471,1.804542,4.483475,10.354732499999999,3.96545,4.48086,4.164595,5.892385,2.69193,1.6689066666666665,3.4904433333333333,2.94517,4.48446,2.5541300000000002,2.7567633333333332,2.9848766666666666,3.2218366666666665,2.4363566666666667,3.2114366666666663,3.3126866666666666,3.145493333333333,3.4563333333333333,3.5173666666666663,3.0352099999999997,2.7869833333333336,3.318,2.55438,3.2621266666666666,3.1637033333333338,2.9496033333333336,3.4933333333333336,2.17148,5.9425099999999995,3.17385,4.460695333333334,3.3375333333333335,3.19717,3.8206,2.825813333333333,2.9856133333333332,3.1513899999999997,3.2575866666666666,3.4733666666666667,3.3338,2.0630425,2.782723333333333,2.9332100000000003,2.9399,2.9399,3.3449000000000004,3.3190266666666663,2.5809133333333336,2.783166666666667,3.2446966666666666,4.266,2.70457,2.791925,2.631463333333333,2.81042,4.7316183333333335,5.02275,1.6943333333333335,3.6227,3.8053666666666666,3.4151999999999996,3.4483,3.8005999999999998,3.5775333333333332,2.7936300000000003,3.353096,2.02114,3.0308635,3.5269999999999997,3.4871,2.61401,2.68121,3.9590333333333336,3.001993333333333,3.1229633333333333,2.550975,1.2614416666666666,3.2429900000000003,2.7926066666666665,2.3202599999999998,2.4564325,3.2314433333333334,3.2557833333333335,2.03548,5.778792666666666,2.4849733333333335,0.9507490000000001,4.84114,1.9329516666666666,1.7112833333333333,4.5428,3.84683,3.388855,2.26054,1.42701,3.37019,2.754875,2.249865,0.4560015,2.070035,0.4560015,2.056825,1.42701,2.672605,3.902935,2.452665,3.73709,3.4286,0.5423853333333334,3.042116666666667,0.9156475,0.44429176470588233,4.01298,3.76939,4.881285,2.517725,5.43045,4.37667,3.744995,2.966185,4.143,1.712806,5.9468,2.51742,4.343605,4.87846,3.136206666666667,1.8853166666666665,2.07763,1.3302366666666667,1.857495,0.99233,0.99233,4.393615,2.3231966666666666,5.938691666666667,2.7373,2.20524,1.7739,2.2610815,2.550725,6.5259,4.51885,1.968125,2.3424866666666664,2.2610815,2.499685,4.494981500000001,2.8399175000000003,6.350091666666666,2.7373,3.219455,3.565975,3.0911766666666662,5.60035,5.14945,1.9514825,2.09544,2.2506425,2.74988,4.924815,5.4996,1.955925,3.78381,1.6010366666666667,1.68378,5.49265,10.90429,2.1555733333333333,2.3746300000000002,2.6157866666666667,4.673885,4.513365,1.8201425,5.0946,4.77427,2.78774,40.30783533333334,2.8519633333333334,3.199806666666667,0.43080833333333335,4.9090525000000005,2.3325466666666665,1.0240433333333334,4.07823,3.69124,2.037705,2.0065325,2.3697233333333334,4.209465,1.4559142857142857,3.3518483333333338,3.839505,4.981325,0.939411,5.05505,5.05045,5.05115,2.9697366666666665,1.6645075,3.980415,4.3767,4.0294,3.14883,3.551525,4.15777,11.908594393939394,2.9200166666666667,3.096475,4.26775,3.065185,4.456845,3.578935,2.848085,3.214025,5.4697,4.824375,5.2237,4.922545,2.494085,3.83014,4.57131,3.694295,4.599975,4.627255,0.12343478260869566,2.29948,5.4207,2.66804,1.7515166666666666,1.1616416666666667,1.1616416666666667,2.312325,2.65388,2.731515,1.731306,3.03771,4.361075,2.648025,4.3717525,0.5759935714285714,4.62046,3.63385,4.90116,4.885415,4.775335,1.25145,1.10832,4.4031,2.9630733333333334,3.10856,4.147723121212121,4.23118,6.19936,5.28075,4.090925,3.522205,2.2535208333333334,1.4952083333333333,4.563435,0.3064346666666667,3.37558,3.6856,3.98873,14.642156666666667,1.96672,3.3994666666666666,0.716175,4.67362,8.231095,3.113005,1.8956566666666665,5.8343,3.2781866666666666,1.0793144444444445,4.805885,2.899625,3.065,4.97052,3.3615485,1.05331875,6.748329999999999,0.7314625,4.958815,3.1000959999999997,1.35025,2.080795833333333,3.1880375,3.1880375,3.818505,4.242705166666667,1.36315,2.396435,2.8284,3.49596,3.31298,2.50843,3.123835,3.38168,6.679704666666667,6.40285,3.931675,3.13531,4.451395,4.84478,3.483785,3.25331,3.461285,4.179945,4.656125,2.4873866666666666,2.533113333333333,1.6259566666666665,2.2664166666666667,2.2913725,1.5232825,3.22978,3.5075000000000003,3.6018666666666665,3.178713333333333,2.6751199999999997,1.50872,1.6259966666666665,0.46614181818181816,2.799853333333333,1.6174428571428572,1.988025,3.5718666666666667,2.50736,2.547543333333333,1.023,2.258675,2.56512,2.88165,3.49996,5.6864,3.650035,2.949435,2.19769,3.307815,4.43782,2.36049,4.54422,1.9511,3.78253,2.71422,3.854115,1.4345433333333333,0.608951,2.39345,3.276405,3.109785,3.91649,4.8200400000000005,8.84859,3.3929333333333336,2.52526,2.13708,1.8561779999999999,1.8561779999999999,2.7862066666666667,2.4549,5.1019,4.891895,3.62763,5.03395,4.510675,4.444305,3.3716299999999997,4.55302,8.30876,2.49611,0.499941875,3.3846666666666665,1.3413966666666666,1.0193085714285715,1.8307566666666668,0.8813510000000001,2.0994675,5.3909,5.18335,6.004144999999999,0.917845,6.82962,1.974944,1.5281233333333333,2.443163333333333,4.22428,3.339166666666667,2.514975,3.92223,3.1445366666666668,4.1866666666666665,2.9461666666666666,2.816603333333333,2.9276733333333333,6.868335,2.42373,3.86739,3.748645,3.48317,1.4512099999999999,1.05622,4.205,2.87189,3.2803299999999997,6.078515,2.951625,2.182725,2.4443425,3.184885,3.8482000000000003,2.59422,4.033855,3.19881,5.33255,2.4153725833333333,1.8564475,4.971165,5.48705,4.930675,4.27183,1.8409266666666666,2.37353,1.9351075,3.198655,1.55758,0.88424,2.6390975,2.1438625,2.0157525,4.279015,0.8258666666666666,5.75807,1.416965,0.8161663636363637,3.6555666666666666,4.07179,0.6586914285714285,3.397368,3.1648475,0.8551666666666667,4.76706,0.1823342857142857,0.1823342857142857,0.1823342857142857,0.1823342857142857,0.1823342857142857,0.1823342857142857,1.81198,3.69884,1.81198,1.81198,1.8627066666666667,0.1823342857142857,0.1823342857142857,3.5574999999999997,2.7835133333333335,3.39288,3.234185,2.198105,3.398935,1.4599142857142857,1.726004,3.6744095000000003,1.542416,2.9787533333333336,2.5968895555555553,6.19028,4.49524,4.22754,6.5714,4.533215,4.831905,4.12436,4.13332,7.431183333333333,3.9532666666666665,3.7432,2.779716666666667,5.29505,2.5597533333333335,2.11269,1.87525,4.65136,5.3884,5.20765,5.31135,5.69515,4.6905,4.76927,0.7826672727272727,0.7272714285714287,0.7272714285714287,4.604305,2.2992500000000002,3.740275,0.9872500000000001,4.742605,1.511585714285714,2.3554999999999997,2.6376,4.585566666666667,4.585566666666667,6.95635,4.09604,1.4927133333333333,11.429745,3.04857,1.2757111111111112,5.20285,5.3905,3.99282,3.323535,2.566205,4.2876666666666665,0.8302466666666667,3.5465999999999998,3.343,3.8409999999999997,3.27211,1.4794633333333334,1.4369033333333334,4.9763158333333335,3.2843666666666667,3.200563333333333,3.4660666666666664,5.306274166666666,3.337458333333333,0.777034,2.1978666666666666,3.7237333333333336,2.274525,3.7721,3.451,3.1847166666666666,3.6058333333333334,3.1996533333333335,2.8660633333333334,1.1251166666666668,3.0764866666666664,2.655796666666667,3.76573,3.32386,3.917825,2.73057,3.3894,2.92985,1.6360540000000001,2.1223266666666665,2.883482857142857,3.8059333333333334,1.919726,3.1962333333333333,1.8391,3.906966666666667,5.4769775,4.964412,2.62565,2.624425,2.96505,2.4983825,1.6723285714285716,2.2667725,3.28884,2.397635,3.5942000000000003,2.874735,3.846274666666667,2.97392,1.3044333333333333,1.309115,1.7156575,2.17525,3.1110733333333336,3.614933333333333,5.0891,7.6187175,2.77617,5.2328,4.24689,16.544358,0.508475,11.500335,0.853248888888889,3.249615,2.4490133333333333,1.8999233333333334,2.90531,1.633484,1.457654,2.7096533333333332,1.36429,2.656557333333333,2.02556,3.0318166666666664,2.2902733333333334,2.801903333333333,1.5343,0.6778058333333333,3.3914333333333335,2.4473366666666667,3.137,1.0919344444444445,3.6179,0.7294758333333333,0.33511692307692303,1.9838233333333333,4.67385,4.798125,4.773345,0.8479990909090909,3.822075,4.38167,1.12544,2.35018,5.3371208333333335,3.27872,3.87998,3.75936,3.827665,1.8962175,3.76947,2.680336666666667,2.853905,3.486995,2.57367,2.73872,3.76263,3.13927,3.494415,2.14261,3.286035,4.695455,1.2610933333333334,4.633835,2.27477,4.15241,5.237243333333334,1.93858,2.99484,3.0707400000000002,6.053108333333333,2.40691,3.24077,5.2292,4.122033333333333,4.02783,1.8582666666666665,2.835275,4.87505,3.6079666666666665,4.523175,3.7052666666666667,3.3074766666666666,3.0090166666666662,4.0139000000000005,3.2595166666666664,2.7241033333333333,2.73497,0.44557555555555556,2.4342825,2.219575,4.665145,4.78105,3.218916666666667,2.86028,3.3210599999999997,9.360775,3.44987,3.910985,3.239456666666667,3.93053,2.78129,3.6104725,2.964256666666667,2.3177625,2.8851666666666667,6.29535,4.570815,2.098663333333333,3.137585,3.069695,2.6341433333333333,4.7227326666666665,1.713854,6.3493699999999995,4.191435,5.06465,4.724235,6.311,3.56004,6.856861666666666,3.69161,3.190925,0.6829428571428571,2.3291025,1.540165,3.0068900000000003,3.4848175,4.05969,3.804195,5.3659,2.6628433333333335,4.79569,3.6795000000000004,3.8671,3.3082233333333337,4.793365,4.83341,4.95877,2.997313333333333,6.120518333333333,4.54364,1.4968583333333332,5.61115,3.699395,2.762525,2.17059,2.1852966666666664,4.719706666666667,1.3057885714285715,2.4504333333333332,2.0367675,3.671415,4.37001,2.81378,3.5256000000000003,2.9742976666666667,2.54677,4.197075,1.360848,2.174653333333333,2.3524333333333334,2.704746666666667,2.4844733333333333,2.5459366666666665,2.64317,3.87831,2.87799,2.7117133333333334,4.00871,2.1908,3.689835,3.511845,1.4078095454545454,1.4078095454545454,4.645715,2.9171833333333335,1.7740625,1.37725,2.1151125,1.9977025,1.26251,1.41005,0.622735,1.5793799999999998,1.5119433333333332,2.9105600000000003,2.277136666666667,1.6940799999999998,1.8059,2.20547,1.4951400000000001,1.7600566666666666,1.8218866666666667,2.5573,4.08316,2.812105,2.99427,2.7814,5.716875,2.935475,4.29996,3.9380920833333333,2.078825,4.219835,3.19007,1.89287,3.474125,2.2205775,3.21722,3.556995,1.985505,4.496745,3.90241,4.02075,3.4688,0.9046944444444445,5.112,3.84489,3.47052,4.042965,2.2823466666666667,4.848665,4.97216,5.196266250000001,9.177825,3.799805,4.483335,2.956113333333333,3.80828,4.531895,2.4622,2.608545,4.276045,2.273865,5.889429999999999,1.877414,2.686855,7.348016666666667,2.971023333333333,4.388453999999999,1.3124257142857143,4.70359,4.59182,3.24053,4.729515,4.94646,6.690434999999999,16.534736249999998,0.6492058823529412,1.0322466666666665,3.2637433333333337,3.98445,3.45941,2.155565,3.39121,4.021775,4.87643,2.76249,4.81143,1.7944333333333333,1.7944333333333333,5.20195,0.7453127272727272,1.807922,2.92532,3.953465,0.36097615384615384,1.9387833333333333,4.1251845,1.143455,2.9730266666666663,2.7681966666666664,3.060105,7.71874,2.493186666666667,3.8749333333333333,1.9875133333333332,2.2746999999999997,4.154205,3.344235,3.264165,7.363953333333333,2.00335,2.8487,4.37391,6.753745,1.9223166666666665,2.1803466666666664,2.601226666666667,1.4012566666666666,2.53455,1.75439,3.892965,3.728995,1.4344475,1.9228836666666664,1.9228836666666664,3.0311133333333333,5.55155,4.677765,3.79599,4.536875,4.5328,3.14461,3.67463,4.08525,3.33427,4.366983333333334,3.8616775,4.65906,0.916542,0.352259375,5.4994,3.789985,2.37008,7.82504,1.38129,4.781766666666667,4.018075,0.3402066666666667,2.025043333333333,1.33727,1.8830733333333332,1.93335,5.619306,2.89143,3.129455,4.7202825,4.816885,4.637315,0.5916584615384616,1.936145,0.582392,5.810913333333334,1.55419,5.15855,2.046785,3.1491025,3.241785,4.17461,4.132875,5.1829,0.8990236363636364,3.28961,3.78259,1.9943225,1.717265,3.626445,3.059125,3.715385,3.8102,5.466757142857142,4.47222,5.6739,2.7297999999999996,0.5944477777777778,3.579466666666667,3.840375,0.6004146153846154,4.1033,3.73505,4.0263,2.834205,2.6355766666666667,4.94025,3.084435,3.256485,2.10824,3.821685,1.77115,3.794305,3.656045,0.6138176923076923,3.910005,3.92205,3.087165,3.852305,4.331465,2.660255,3.817065,0.597485,3.15556,3.776527777777778,4.76575,3.7472999999999996,2.591425,3.5481,2.591425,5.2551,3.01725,3.2521799999999996,1.6016700000000001,3.3160233333333333,2.015715,4.21272,3.02205,5.45679,3.2170666666666663,2.962213333333333,3.1419,2.37419375,2.37419375,2.37419375,2.4464533333333334,1.2169516666666667,4.580395,2.3237633333333334,1.61345,4.1180666666666665,2.6412466666666665,3.0352033333333335,4.324875,5.4612,3.521795,2.0878625,0.99931,3.96285,1.955198,2.44719,3.344055,3.530275,2.0343925,3.53182,2.651605,1.632918,4.833425,3.996855,3.505465,3.648885,0.7201633333333333,2.36681,4.835095,7.494455,4.500255,3.00926,2.875115,3.301515,3.640405,1.6376,2.3735325,4.981505,2.2754575,4.47088,4.021115,5.2613,8.946299999999999,4.05317,3.681595,3.680775,4.92497,4.09146,3.263745,3.263745,4.17962,3.939823333333333,4.200935,4.08039,4.354565,4.479735,4.009325,1.17008375,4.15405,4.254965,5.5584,7.745815,5.1437,3.7715593333333333,1.8152433333333333,1.6515483333333334,2.45421875,4.8956,3.9942,4.9779,2.6224866666666666,4.609025,5.2764,5.19165,5.1002,2.99511,3.89687,4.49934,5.3401,4.799665,4.04644,6.649758333333333,4.58738,2.1739633333333335,5.15375,4.35672,4.310425,3.908665,4.94603,0.797810909090909,4.56926,4.61354,1.2236157142857143,1.273616,5.1288,5.0752,9.228699,5.3561,4.97155,6.00015,2.919505,2.7036933333333333,5.0937,1.7250575,1.7250575,2.51806,1.5792233333333332,2.9126208333333334,3.4992666666666667,1.9651225,3.971044090909091,1.3882333333333332,2.184355,5.812362500000001,3.2315883333333333,3.45749,2.866135,3.979855,4.00249,2.9963033333333335,1.0867011111111111,3.98291,3.1698,3.82576,4.07951,3.82989,5.7117,5.263,4.969205,3.742015,5.38905,6.53135,4.81037,3.12539,3.716735,1.8376225,1.8376225,3.71768,3.90182,2.5340833333333332,2.7657633333333336,2.2175116666666668,2.7338833333333334,1.27251,1.27251,4.561865,3.486535,2.035245,3.514075,2.583555,1.929415,1.165395,1.0032388888888888,2.614145,0.46514684210526314,0.8842266666666666,2.73548,4.15676,0.4292309090909091,4.309565,1.993734,5.39655,3.372245,7.5065,4.2802,5.262326666666667,4.799255,5.44915,4.101545,1.99983,1.9280760000000001,4.054955,2.99331,3.76455,1.2771366666666666,3.36964,4.58418,2.70216,2.680275,2.72342,4.16294,3.232735,3.295395,3.828745,3.665975,3.296155,3.15734,1.0730928571428573,2.2623,2.241305,3.095615,4.324,7.17597,0.9473420000000001,1.50133,1.50133,1.939102,3.950535,2.653095,2.993665,5.623805,2.8550299999999997,1.2778625,1.2778625,1.2778625,2.641035,3.1409825,4.434845,3.240335,4.11761,3.209785,3.53467,2.92699,3.2526,3.5404,4.171832500000001,2.7634325,1.26251,2.94986,2.7634325,3.44737,1.34595,1.80066,2.1300275,5.655383333333333,2.52746,5.81952,5.655383333333333,3.29206,1.7723316666666666,1.7723316666666666,2.318185,5.47525,1.7723316666666666,2.28029,5.64831,2.156875,2.64563,5.46582,3.53568,4.19364,1.9264133333333333,3.46685,4.79363,2.1532266666666664,2.17803,3.92922,1.9264133333333333,2.535245,2.002785,5.42777,2.54638,1.13459,2.535155,3.071825,3.15755,1.973585,1.9491,3.9329,1.9263,1.59555,3.138985,2.237355,3.18141,3.57331,1.9332,2.979425,2.363895,5.99295,2.315695,3.303945,3.24358,3.24358,8.83902,0.99057,2.807695,2.319095,3.14714,2.21765,1.23296,1.23296,3.76506,2.34292,6.46422,2.14909,3.25156,3.25778,5.19359,2.52565,2.360455,5.727005,5.727005,2.298305,1.6577925,1.241605,1.241605,1.6577925,1.7994366666666668,1.0880166666666666,1.1618733333333333,1.4715666666666667,1.8558466666666666,3.59608,1.894035,3.64979,2.7436,2.8069,2.647695,2.68527,2.28797,3.4072958333333334,3.4072958333333334,6.22735,2.329785,2.79791,2.8731,3.47442,2.549185,2.79051,2.459685,5.279204999999999,1.934065,1.6679143333333333,1.4529276666666666,2.414386,5.58532,4.1180026666666665,3.4115466666666667,3.112175,1.77324,1.77324,1.77324,4.19172,2.344285,1.1618733333333333,3.04659,3.404575,1.2112725,5.248405,2.9624675,6.34072,3.95293,1.697145,3.186255,2.703386666666667,2.263145,3.57413,4.63388,3.46392,1.549805,2.471545,2.81892,3.05566,5.00134,2.12331,3.30915,2.67604,5.55022,4.42747,1.91578,2.262155,5.51889,4.96658,5.15688,5.01826,0.903804,0.903804,2.690701,2.690701,0.7584660000000001,4.65685,3.19931,4.78775,4.04026,5.30904,2.10994,4.462496666666667,4.462496666666667,2.173955,3.483025,3.47064,1.157532,4.24095,3.00582,3.138435,2.548825,4.83211,2.567695,1.900665,3.28043,2.94659,2.63282,5.43704,2.639915,1.85043,3.87087,5.97287,5.36371,4.53707,2.377665,3.30757,2.80129,5.26963,2.61462,3.84275,2.730715,6.42844,3.52331,2.42791,2.557675,2.574415,4.74218,2.391845,3.020355,2.95076,7.26996,4.75222,3.15081,2.325185,2.213745,5.99854,3.15396,3.416365,5.1873,2.882375,2.815895,2.566675,2.83131,1.7504833333333334,1.912785,1.5853433333333333,1.86427,1.78657,2.114196666666667,1.56666,2.2256766666666667,1.79883,1.7504833333333334,3.96891,4.23449,2.030015,1.8332825000000001,1.8332825000000001,3.5129266666666665,3.5129266666666665,2.86668,2.86668,2.71901,1.839775,1.63285,3.82291,2.192285,2.192285,2.337785,2.337785,3.04207,2.058255,4.63416,1.942185,3.13092,2.0189166666666667,2.0189166666666667,1.85715,3.99384,5.17543,1.34595,3.55411,1.9332,1.811615,4.01236,3.01562,1.838655,2.37704,6.83751,2.211315,5.40547,3.130905,3.14188,3.18791,2.7018,5.99876,3.11982,2.07667,2.508433846153846,2.662995,6.13121,3.51189,1.531784,1.531784,3.42565,4.97174,4.85956,5.75645,2.72529,2.78321,1.7543,3.10998,1.63323,2.498965,1.82362,0.709862,0.709862,0.709862,1.9136225,4.99058,1.9136225,1.973635,3.613915,1.58621,2.02621,4.11075,3.38333,4.84658,1.6192066666666667,4.66745,1.6192066666666667,1.6192066666666667,2.192195,1.904325,1.79014,6.43878,1.79014,2.528915,3.78026,2.192065,1.74188,2.755605,2.9963599999999997,3.2472741666666667,3.15096,3.71079,1.4415716666666667,4.374915,0.8003654545454545,4.530865,4.3932525,2.524975,2.524975,0.753720909090909,3.9478666666666666,2.7588033333333333,5.8205,5.09605,4.1859,5.4388,4.356325,4.249485,5.33945,4.499285,4.238675,4.049735,3.783675,5.21415,5.25855,3.32652,3.58233,4.3045,2.7520966666666666,1.4501279999999999,4.294335,3.733505,3.42774,1.3577257142857142,3.765625,3.822535,6.089087500000001,1.0987175,5.59965,4.368835,2.158555,2.00554,3.153765,3.540295,1.733975,1.531784,4.00439,4.562515,2.69923,4.57088,2.99489,1.14921,3.1599466666666665,1.2513114285714286,3.1311966666666664,1.9106133333333333,3.1584066666666666,1.8687,2.70236,4.32091,3.720405,4.381465,3.11926,2.2251075,4.63113,4.29867,3.071835,5.32345,4.178275,2.567206666666667,6.1882,5.0357,3.141955,2.6188366666666667,2.84341,3.1579366666666666,3.2481666666666666,2.84891,4.679955,4.08649,3.66206,2.415763333333333,2.5507833333333334,2.358353333333333,2.4959599999999997,2.242713333333333,2.335393333333333,2.344716666666667,2.356265,1.612635,2.9395103333333332,1.2034625,2.0715375,1.8539075,2.713725,1.52795,2.0358,4.00288,4.508495,1.893045,3.90388,3.96338,6.1764833333333335,1.9588400000000001,1.6054680000000001,6.68385,4.03147,4.66248,4.316315,4.012525,2.159585,3.60387,2.4841625,2.98302,4.41685,0.6979183333333333,4.249135,2.218246666666667,0.8308009090909091,5.03015,4.32306,3.90568,1.8944432142857142,4.76236,5.59,2.7270066666666666,2.91535,2.463623333333333,2.0846,0.601816,3.1971966666666667,2.957025,5.06975,2.4182525,2.1247425,3.788315,1.0084075,1.9203333333333334,1.9203333333333334,2.80456,1.9203333333333334,4.095875,2.737575,4.69773,4.23694,6.0767,13.441502499999999,3.2698,4.913405,2.674305,4.701485,2.909365,6.6718425,3.0237,4.5304,4.98259,3.73931,1.1924466666666667,5.0274,3.2478366666666667,2.7080366666666666,0.9974422222222221,2.1411225,3.252555,7.335543333333334,4.556395,2.916123333333333,4.60263,3.263173333333333,4.25755,4.69174,4.443925,2.83203,2.9014699999999998,3.964025,5.7959,2.525955,4.69569,1.9321075,1.9321075,3.012695,5.051,1.1881975,4.1996546666666665,2.2164975,4.587245,2.50686,2.6586433333333335,2.96095,2.1491866666666666,0.7205,3.490545,2.7637466666666666,5.38735,4.652605,0.247429375,5.39075,4.641715,4.698425,6.979773333333332,3.1679766666666667,2.833676666666667,2.2893433333333335,3.177236666666667,3.0184433333333334,1.56998,3.1186066666666665,2.7695900000000004,1.4101166666666665,3.5092,3.169473333333333,2.8533266666666663,3.3784666666666667,1.3533461111111111,4.274405,2.743325,5.2821,3.88092,3.83711,1.6382666666666665,2.5180533333333335,1.2183275,1.845,1.2183275,5.14845,3.5857666666666668,1.605946,2.4941075,3.75596,3.75217,2.86302,3.74976,0.351937,1.5106654166666666,3.832735,4.104485,6.2536,2.0068525,2.88321,3.166783333333333,2.6952599999999998,2.896,3.382655,4.867415,2.56925,2.54381,2.987546666666667,2.6105633333333333,2.7146166666666667,4.1423,2.083205,4.60561,3.95504,6.06655,7.52569,0.7500322222222222,0.826128,4.46357,6.91118,2.0067399999999997,3.441045,1.2019316666666668,1.2019316666666668,3.405245,0.44537,3.55238,3.82338,2.608395,4.0499,3.08438,2.5759,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,2.241445,3.07892,3.957445,2.907335,4.842145,5.951919999999999,3.075585,2.3755433333333333,0.871975,3.269055,0.76507,5.820438333333334,3.444895,2.45389,0.76507,2.46178,2.68237,0.90441,3.98942,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,4.325635,1.5588975,4.99008,4.885225,1.7849920000000001,4.962305,4.397135,5.15,4.894558333333333,3.6560700000000006,3.160715,4.616715,2.204165,5.73954,4.64706,0.7848428571428572,1.5177999999999998,1.4545714285714286,3.365933333333333,3.365933333333333,3.1516900000000003,3.87829,4.53935,3.698545,4.34468,2.9417899999999997,1.8917733333333333,0.5423157142857142,4.015445,3.095845,2.688115,4.009985,3.183365,3.10516875,5.00505,4.41115,6.6179575,4.14281,4.833435,5.96865,4.624145,1.33507,3.00772,5.34948,34.69434347402598,1.3269833333333334,4.38773,3.40783,4.59001,4.053605,5.30425,4.942905,0.41387857142857143,5.35075,4.593655,2.113555,1.855385,3.843025,1.5768275,2.380625,2.100605,1.672995,2.73779,2.4075,2.774105,2.67635,0.5986123076923077,3.259105,3.660395,0.3903926315789474,2.51571,2.856765,3.024835,3.848695,1.72525,4.6357,3.957585,3.226255,3.6844,3.063485,4.30968,2.95053,3.764125,2.19272,5.34948,3.51243,3.378775,2.67982,1.795658,3.974015,3.524025,7.117256666666666,3.350495,5.0456,6.567069999999999,5.173064999999999,2.23123,4.52525,6.4535975,8.07109,2.6548633333333336,2.393785,4.890045,5.577426666666668,4.51446,3.52616,5.430438333333333,2.6977,1.603425,2.1384425,60.26613437355644,5.3332,4.48587,2.582375,0.888002,2.9578433333333334,3.06183,3.5233333333333334,0.8970977777777779,4.624285,0.8051177777777778,7.710345,1.955198,3.4471666666666665,1.7598680000000002,2.688975,2.5451799999999998,3.254723333333333,2.3663366666666668,2.1927833333333333,3.4440333333333335,1.5949099999999998,5.47672,4.210500000000001,1.26622,2.65739,1.3825033333333332,1.553425,7.4695,5.97145,3.38485,4.5921,5.7681425,1.4821285714285715,3.6389666666666667,3.151725,1.57241,5.644,3.617305,3.944475,1.7232675,2.9296591666666667,3.658333333333333,3.93557,5.71645,3.947695,4.364845,2.180135,3.613785,4.551566666666667,3.157033333333333,1.506574,4.482795,3.342033333333333,4.25491,5.3556,3.805065,4.06317,4.886735,4.43805,4.279765,4.787525,4.273225,3.3337,4.203495,4.252265,3.105675,4.315,3.91614,1.4976425,1.4976425,4.25896,4.997405,5.16825,4.0325,4.984255,3.4506333333333337,2.76402,4.962745,5.18025,0.7482245454545455,5.3039,6.830579999999999,5.40475,5.7356,1.1082166666666666,3.048735,0.9027816666666667,0.9027816666666667,0.9027816666666667,3.74857,3.4669333333333334,2.9674866666666664,3.570766666666667,0.9573259999999999,5.1202,5.4528,3.02131,1.758955,2.154815,4.259275,3.665345,3.650865,3.2628380000000003,6.8872,3.398095,2.5056033333333336,4.881475,6.9456,2.42776,4.187765,3.675665,3.14549,5.5869,4.75155,5.15865,6.0219,3.28737,3.8123633333333338,1.89462,1.89462,0.6973127272727273,8.59703,2.00048,5.9435,5.78995,4.388895,5.3729,3.674735,3.017151666666667,4.94763,7.7302225,5.8008516666666665,2.0938333333333334,4.4334,1.0303200000000001,3.733555,1.9681066666666667,0.9172855555555556,1.2302757142857141,2.777606666666667,3.109946666666667,2.8735966666666664,1.1952371428571429,2.7335233333333337,3.0941833333333335,0.9413911111111111,2.8812833333333336,3.417566666666667,1.641236,1.8707540000000003,3.1172799999999996,3.186363333333333,3.027176666666667,2.7431466666666666,1.7801500000000001,5.5024,4.55482,4.199915,4.42759,5.2411,3.087305,4.590045,6.4393,4.97856,4.50114,3.868665,9.796925,8.587534999999999,3.0452033333333333,3.3938,2.2259066666666665,3.674035,2.974115,4.552305,1.0942133333333333,4.17756,3.53026,1.6075133333333333,3.708985,3.0204500000000003,4.392155,2.84153,3.72337,6.71845,7.887123333333333,4.19776,1.570475,1.570475,1.570475,4.915945,1.1613433333333334,1.5007625,0.49537222222222227,4.50348375,2.999643333333333,3.801515,1.01981,1.16447625,3.251915,4.21288,3.661125,16.80739069047619,4.172335,4.458275,6.551115,3.0108833333333336,3.71444,3.6222,0.9544555555555555,1.71236,4.377625,3.706265,4.68211,4.93099,4.579755,3.953375,2.7100595555555556,3.29008,5.3997,0.563625,4.914325,2.427275,4.168815,5.4251,3.5523000000000002,2.55859,4.176318333333334,1.93279,3.73705,6.02005,3.2865466666666667,3.857105,4.55247,4.28065,4.869815,3.94917,3.9188,4.443135,5.19435,4.860785,3.97385,4.72872,3.951575,1.20328,1.4702325,6.017153833333333,6.2231,4.181875,4.72788,2.5667,2.772823333333333,2.62074,5.7816399999999994,1.9346025,2.04843,3.13564,3.04345,3.4304666666666663,4.59075,3.29055,5.326616666666666,1.15792,4.624045,0.9325333333333333,3.906535,3.363635,1.5216216666666667,4.87882,1.0004444444444445,5.1316,5.8686,5.11625,4.57179,3.7431558333333337,3.94379,2.975006666666667,5.2124,5.92435,2.8868185,3.940815,2.34956,2.58183,2.00475,2.645485,3.55241,5.30595,1.045945,4.3096625,1.2936425,3.30079,1.5847666666666667,1.045945,0.1991510810810811,3.951855,3.02819,2.3429620833333336,1.9324433333333333,2.659775,1.086025,4.37132,3.79771,4.75319,2.5492933333333334,6.3291,6.5978225,2.6189899999999997,3.445866666666667,2.5917333333333334,0.845608,2.37994,6.15365,4.53476,5.363,4.921155,2.0418066666666665,1.09585,3.8642174999999996,1.599565,2.2506175,1.6896775,1.9221725,1.72891,1.86402,1.9719625,2.292415,1.98763,1.3784842857142858,1.3481275,2.0591475,2.3851975,2.2584775,2.2258366666666665,0.5274186666666666,1.252246,2.97265,3.290923333333333,2.213865,1.8582066666666668,1.56536,4.05615,2.178643333333333,2.649055,3.452455,5.55685,4.06877,3.02399,4.562715,1.6427626470588232,3.9238924999999996,24.162449000000002,4.654426666666667,6.0648,4.393695,2.1849366666666667,4.08191,4.75437,2.263105,5.0282,3.284243333333333,0.78537875,2.938085,4.61013,3.87141,4.041945,1.55122,2.0625233333333335,2.41924,2.138745,1.5583428571428573,3.458833333333333,5.11205,4.16627,3.29052,3.808855,4.827015,4.107755,5.0221,1.264,3.489845,4.11485,4.90772,1.810654,3.24783,1.78733875,1.78733875,3.534575,5.02705,3.01159,3.1688899999999998,4.1434,3.83608,6.5807775,4.671405,2.3066,1.71236,3.01995,4.217865,3.2095066666666665,2.5409596825396825,2.5409596825396825,3.3709333333333333,4.85008,3.904945,5.228014444444444,2.241635,3.4658246666666663,0.6091099999999999,0.6091099999999999,0.6091099999999999,3.690735,3.70669,4.3480799999999995,5.74235,2.5161,5.15105,5.0141,4.95627,3.693765,5.4566,2.512015,1.3599271428571427,4.697795,3.937055,0.4965507142857143,4.341166666666667,4.979635,1.5682,5.0426,5.1921,4.72933,4.388615,3.719005,2.87189,4.44737,1.628148,4.28465,1.681,4.46942,5.944,1.21938125,3.08175,7.05589,4.42778,3.4510666666666663,2.192045,3.923065,5.6465,3.06828,7.812023333333333,4.009195,2.11667,3.1087966666666667,2.649433333333333,2.8307866666666666,2.8063833333333332,1.86955,5.1365,0.581475,1.883115,1.883115,3.318445,3.69631,2.300275,2.967485,4.507735,5.12775,4.580595,1.4905866666666665,4.78671930952381,4.522645,5.06285,3.769255,4.3639098333333335,3.9141725000000003,0.4497373333333333,2.675027142857143,1.0066375,0.4497373333333333,4.295165,0.8299677777777777,4.384135,3.871615,6.545587,2.141033333333333,1.0148075,1.1328939999999998,2.15445,2.90096,1.7768300000000001,2.3472233333333334,3.309375,3.311165,1.9884533333333334,2.2762466666666668,4.466615,3.1377912500000003,3.968215,5.91315,3.397315,5.05525,6.8766783333333334,4.96674,3.52723,4.4954,3.66553,4.58184,5.39025,6.12898,5.57365,2.4767766666666664,1.0382533333333333,4.106515,3.974135,3.992865,4.346665,4.204995,5.3785,2.68906,2.5521766666666665,3.0468333333333333,2.4972266666666667,2.2309733333333335,3.05964,3.2893733333333333,2.65661,4.043785,5.2894,4.20999,5.40865,2.88625,3.3563666666666667,2.911125,0.7319142857142857,4.163615,4.133555,4.685415,2.9134966666666666,5.6142666666666665,3.53328,4.9324,4.224515,0.6345361538461538,0.5558535714285714,4.37106,2.9367405,3.229655,4.666515,4.361335,1.7575600000000002,5.4013,4.2063,2.73178,2.6182666666666665,2.4696,2.2583666666666664,3.5291333333333337,3.3427666666666664,3.1819699999999997,3.08713,3.5344333333333338,2.680825,3.2315766666666668,3.893466666666667,4.3905925,0.567105,0.567105,0.567105,3.4314867777777778,3.6215666666666664,3.7710666666666666,2.800933333333333,2.9762733333333333,1.17008375,3.013693333333333,3.0968733333333334,1.937535,2.739176666666667,2.6167366666666667,1.0038455555555557,2.9086433333333335,4.51017,9.563117083333333,1.4672348333333334,0.635841,3.58484,0.635841,0.635841,0.635841,0.635841,2.073585,3.980132,3.9857,5.1939,6.1553,2.8261033333333336,2.8553366666666666,2.9855675,3.4090083333333334,5.1459,1.1414633333333333,2.4037966666666666,3.236943333333333,2.65767,3.0433766666666666,3.605655,2.1180233333333334,2.291,1.194488888888889,5.1386,3.366145,3.903225,0.8638875,0.604626,0.604626,0.8718231739130435,1.7357106739130437,0.8718231739130435,0.8718231739130435,0.3068621739130435,0.3068621739130435,0.8718231739130435,1.4576200000000001,2.555406666666667,3.178155,3.2058233333333335,2.5269866666666667,2.839093333333333,3.199476666666667,2.739966666666667,4.42746,3.391995,1.839015,2.2072066666666665,1.703815,0.17369746134020617,0.17369746134020617,0.17369746134020617,0.17369746134020617,2.3588566666666666,2.5620166666666666,0.9026500000000001,5.3808,0.8418890909090909,1.637822,4.8259,5.21335,4.671235,3.022975,4.44527,3.72203,1.81767,1.2108675,3.84231,4.77707,6.36895,2.375635,1.36453,1.8765466666666668,3.067633333333333,1.4294733333333334,2.766966666666667,2.9704333333333337,3.21351,4.66477,4.15673,3.108825,5.0917,2.8236033333333332,4.32525,5.62865,4.133685,4.58009,4.805,5.415826666666667,5.239369166666666,3.2032882857142857,5.019089999999999,4.78357,6.4397,4.54591,4.732835,2.355475,2.97576,4.22585,4.927305,4.27615,4.059165,4.104135,4.265755,3.99597,2.3413166666666667,5.56845,3.611735,7.5696825,6.1489,6.01585,5.0275,1.4914142857142856,0.99688,0.6425723076923078,1.757546,4.971505,5.381,4.07977,1.7165199999999998,4.056355,2.902285,5.2247,5.52275,6.054460000000001,4.183145,2.9687,1.68145,5.20533,3.955405,3.304505,1.73064,1.00267625,3.78816,3.229015,3.53547,3.590605,2.21447,4.44748,1.67297,2.8769466666666665,2.472875,4.85627,6.25225,4.94106,2.4322975,1.69454,5.75875,2.998953333333333,8.68953,2.954475,5.3201,5.8886,4.736505,5.58345,3.901305,5.22185,2.3217875,4.256315,5.156679,2.595125,4.16446,4.64596,7.660485,5.29035,3.4001333333333332,4.302085,4.082435,3.1377912500000003,3.480875,5.25525,5.8181,2.4712625,3.048173333333333,3.3260233333333336,2.221795,2.529835,4.40016,6.0782,5.1451,4.61602,5.0919,4.27807,5.24575,0.6478376923076923,3.135873333333333,1.3040671428571429,32.08939363867322,2.37995,4.56059,3.151185,4.61577,1.753372,2.4187600000000002,3.2387290476190476,1.7546540476190478,1.7546540476190478,1.7546540476190478,1.7546540476190478,1.484075,3.222355,0.3495755555555556,7.962913611111111,0.3495755555555556,4.68626,5.03965,1.9658875,5.7691,2.8997,4.046523333333333,2.36584,2.518963333333333,2.67996,2.079353333333333,0.63041,2.5665466666666665,0.7702016666666666,3.408333333333333,2.306513333333333,2.4362320000000004,1.1815583333333333,2.4362320000000004,6.37025,8.17801,4.905245,4.439935,5.6872,6.19245,7.432003333333333,3.14015,1.591565,1.591565,2.3323533333333333,5.0263,3.679585,4.72999,6.307718333333333,4.173935,2.87934,3.98868,3.32002,3.496615,2.268115,1.000244,2.02165,3.76249,4.19688,5.358443333333334,2.1839175,4.090625,1.4544380000000001,3.12638,1.4599,3.4843666666666664,3.16152,2.711953333333333,3.5179333333333336,3.14547,4.977015,0.7336546153846153,3.41034,3.7602666666666664,2.6728066666666668,2.3429066666666665,4.24135625,3.4502666666666664,2.516836666666667,5.02004125,4.035575,5.22325,4.12308,3.522345,5.5942,5.0205,2.26995,5.74555,2.3302246666666666,1.74433,3.1494999999999997,2.7329933333333334,3.023763333333333,2.5379,1.9193366666666665,3.455395075757576,4.42659,3.37164,2.4847866666666665,2.4847866666666665,2.50306,3.864915,3.89706,0.6137445454545455,3.356455,3.08803,8.62742,0.8763363636363636,4.594905,3.945195,5.57225,3.832015,3.911135,2.303925,4.26978,2.839135,5.708,2.664225,3.777005,2.6441133333333333,3.75335,2.7224500000000003,3.49953,3.65564,3.7064,5.184717,3.281135,1.967385,5.2213,2.4422133333333336,4.580795,4.99354,4.98844,4.514035,4.04816,2.793905,2.1458133333333334,2.9952233333333336,2.9082166666666667,2.8338249999999996,3.28854,2.7991811904761903,5.110953333333334,2.96364,2.6030166666666665,6.895565833333333,5.094959583333333,3.8351525,3.118206666666667,3.8444000000000003,3.95287,3.456635,2.0698175,3.9089425,5.1702,5.0427,1.54287,4.478355,2.67187,7.02184,4.78264,8.87871611111111,3.932855,4.034085,2.096025,4.078475,5.7799025,7.44785,3.22195,5.62137,3.958985,3.13724,3.765615,1.713854,4.5698039999999995,1.4247699999999999,3.752775,4.60676,3.5490333333333335,0.8591166666666666,9.433473333333334,1.241088888888889,2.11129,2.44106,1.8512033333333333,3.5772333333333335,1.3293833333333334,3.56033,3.72325,2.58451,4.249175,1.22007,3.605635,1.403815,3.173396,3.753275,5.53755,1.57145,6.005296666666666,2.5974043333333334,7.66416,4.390575,2.983445,3.93658,3.158335,1.2728975,7.09734,2.78226,3.140755,2.37871,3.88962,2.1486775,3.2864199999999997,2.18975,3.876775,1.3145475,5.78195,2.93581,4.044495,0.913359,1.8882303333333332,3.70089,5.3062,5.202515,1.47539,1.47539,5.86435,4.52016,6.1846,3.680005,3.447375,9.300709999999999,4.545505,5.6058,4.071845,2.554075,2.141887200716846,0.375726,0.22462064516129032,0.6545328673835125,1.1116283333333334,0.6881506451612903,0.22462064516129032,1.421571,0.4299122222222222,1.4873543333333332,2.0761038673835124,2.0898475,2.3088625,2.144903333333333,5.43345,6.737353333333333,5.16975,5.66475,4.808365,5.1485,1.2016799999999999,5.2178,3.950705,5.861,5.0618,5.4164,5.6222,6.04155,5.60355,1.3607866666666668,1.4367285714285714,1.941922,6.224106,1.291016,5.46215,4.900285,7.208317083333334,5.1336,5.57305,4.67809,4.745405,2.603925,5.40115,5.41595,4.377868333333334,5.24875,6.3373525,5.631,3.8888125000000002,4.314065,3.9446333333333334,0.998297,3.7778333333333336,4.74406,1.20212375,3.707433333333333,5.05515,4.6982225,5.0394,2.47346,3.204845,2.5522833333333335,4.70163,2.33906,3.622905,1.268685,3.33262,3.750765,4.49648,5.0664,3.4262525000000004,0.6538116666666667,6.12955,0.98267,3.87933,3.1274933333333332,3.63353,2.0162299999999997,3.85508,3.7083471794871796,3.4444666666666666,4.45564,15.52611280952381,5.401556666666666,2.35127,8.35854,1.4915475,3.88388,3.0299099999999997,2.823513333333333,2.0529533333333334,0.2285182608695652,2.905863333333333,4.955875,1.7599,2.1234933333333332,3.422166666666667,1.8018375,2.1508933333333333,1.5729000000000002,3.68378,5.10395,5.4973,3.27168,0.5003985714285715,2.309153333333333,4.419925,2.84173,4.05709,4.58872,4.446465,5.54795,0.4940758823529412,2.427496666666667,2.427496666666667,5.424,5.0521,4.785235,2.820675,3.6685666666666665,2.8746500000000004,5.3044,3.738965,5.697631666666666,4.74892,4.594685,5.06255,2.767175,1.991526,4.607775,4.130515,3.92235,4.36608,1.818312,5.02645,4.311725,3.708375,4.747945,3.99063,4.36939,0.6357726666666667,3.120595,0.7313166666666667,3.3800000000000003,3.484735,4.25565,17.91200238095238,3.817935,3.626725,2.703386666666667,1.0339775,2.3287233333333335,2.51224,1.521358,2.477605,2.494765,4.692625,2.18104,3.98644,4.73519,2.12768,4.54215,2.993596666666667,4.760645,5.27255,5.5374,1.710275,1.79369,2.183445,4.94714,4.83813,1.1796333333333333,5.4407,4.06355,5.6283,4.845915,1.6121666666666667,4.56764,3.75425,3.895325,4.004905,4.505845,3.1507799999999997,0.59524,7.465106666666667,1.543768,0.2093411111111111,0.2093411111111111,0.2093411111111111,5.0477,4.00499,2.63555,4.17087,2.74371,4.36566,4.451115,4.290326666666666,8.754733333333334,4.31086,6.881248333333334,0.8212275,0.80969,2.4989875,4.518845,4.222775,2.1641333333333335,5.0963,5.36565,3.365165,3.630875,4.514675,2.4579366666666664,5.00125,4.9266055,2.30705,3.13208,2.89851,2.65371,6.1758,4.010915,0.6884321428571428,4.069035,3.86401,4.15276,4.92412,4.750565,2.85511,5.5229,3.596005,13.649314166666667,4.8218,6.899151666666667,2.4421933333333334,6.577109999999999,4.57501,4.21454,2.2171125,2.349754166666667,9.64923,2.231926666666667,4.317366666666667,4.196833333333333,3.7933333333333334,3.318213333333333,3.02279,2.0461375,2.2256025,3.0008166666666667,1.843084,4.0103333333333335,2.43998,2.6650833333333335,3.5765333333333333,3.6396333333333337,2.48412,2.48412,2.5060533333333335,3.5841666666666665,3.5295,2.42762,3.3735,4.2736,2.7385533333333334,3.1870966666666667,3.8663333333333334,2.63526,2.19109,4.072866666666667,3.07884,1.765146,4.3001,2.43144,2.4871966666666667,3.0045866666666665,2.3034083333333335,3.3991666666666664,5.870845,2.4107499999999997,3.9418666666666664,1.84304,10.634792333333333,1.9074333333333333,1.75992,2.16184,1.0595855555555556,1.5386039999999999,4.666976666666667,2.739118,2.739118,1.68406,1.5560266666666667,3.4909516666666667,3.895628333333333,2.1693266666666666,1.585725,1.686068,4.719216666666667,3.662333333333333,4.140666666666667,8.501100000000001,3.0121657142857146,2.3956566666666665,3.319027888198758,4.402,2.19109,3.419366666666667,3.055763333333333,3.6435999999999997,3.3465558333333334,0.8938125,3.321621,2.9809433333333337,2.791183333333333,4.09111,3.2612566666666667,0.7309445454545455,1.9165757142857145,5.02945,2.6826755,3.3445666666666667,1.6669333333333334,1.6669333333333334,2.0368625,3.786853333333333,0.992773,2.191575,4.863020000000001,4.863020000000001,0.6600714285714285,5.998562,3.88383,4.22131,4.91587,1.199922857142857,3.3813999999999997,3.5701,5.164231666666666,5.881119999999999,2.37912,0.694369,2.74828,2.5837133333333333,3.055602,2.4233066666666665,2.3805533333333333,3.0203900000000004,2.31438,2.4394566666666666,0.8223900000000001,4.829005,4.927390285714286,1.2590299999999999,1.6802142857142857,5.6326,2.203665,1.56995,4.119725,1.42333,3.519,2.654525,3.5998666666666668,9.033789166666667,4.649600833333333,4.678835,5.1728,2.4120825454545454,0.780493,1.998064,6.955876666666667,1.7899766666666668,4.135525,3.84557,3.60591,21.65332575,3.2648433333333333,1.3463433333333334,1.15308125,3.1843533333333336,1.5377633333333334,4.388453999999999,5.32605,3.3529204999999997,3.4293666666666667,1.9643966666666666,1.3849016666666667,2.88607,0.60359375,3.5165666666666664,3.7001000000000004,3.098596666666667,2.4402376666666665,2.63238,2.73413,2.1571266666666666,3.23371,1.7140619999999998,3.6854666666666667,1.5484016666666667,3.84662,3.951295,2.5695099999999997,5.41085,3.18334,3.915655,5.2833,4.71369,3.176826666666667,3.0893766666666664,2.36278,1.1519,1.1519,1.1519,2.42516,3.4562666666666666,2.681556666666667,2.41615,2.15,1.9659825,3.69818,5.19335,3.64339,6.379110000000001,3.16593,2.580625,1.861035,1.0878833333333333,2.4604266666666668,4.04209,2.4941733333333334,2.6011633333333335,2.53878,2.4394933333333335,2.5400633333333333,2.83469,3.172026666666667,2.9487166666666664,2.43076,3.4070666666666667,2.14764,2.14274,1.557485,2.036645,3.09043,3.0749366666666664,1.9724675,3.826545,5.3014,3.01193,2.596151153846154,5.954155,4.22201,4.878695,5.58255,4.70482,4.212655,6.7129449999999995,1.25185,4.229845,2.68144,5.21555,5.15235,3.791785,3.871275,2.3806275,7.81019,2.960515,0.8560249999999999,8.00295,5.31412,5.65461880952381,4.63509,2.9951335,1.81479,5.19245,4.358225,4.62713,5.27195,2.453565,4.36826,4.58834,1.703815,4.07712,2.936425,1.4010983333333333,4.633215,0.6389882352941176,4.264541666666667,3.651015,4.666455,3.53834,1.68804,3.600625,2.052975,1.4984375,2.9488966666666667,3.398,3.3357666666666668,7.307711666666667,1.8655875,6.70485625,9.68647,6.692245,3.4472,1.4450571428571428,3.059003333333333,1.4450571428571428,2.81897,2.0713766666666666,0.3429594117647059,1.155804411764706,0.3429594117647059,0.3429594117647059,0.3429594117647059,1.155804411764706,1.155804411764706,0.3429594117647059,0.812845,4.360015,3.26718,3.25012,3.29073,3.540945,4.192255,3.124130666666667,1.58619,6.667216666666667,3.0978133333333333,3.966085,2.7604666666666664,1.0427272727272727,1.24331375,4.5168,3.65412,1.1461555555555556,1.5613139999999999,0.7894063636363636,3.16480291991342,4.189505,5.12955,3.6170666666666667,5.6030525,0.5956361538461539,4.32021,3.2707125,3.12935,2.4879000000000002,3.6351333333333335,2.4469766666666666,3.0864833333333332,2.6153999999999997,2.946175,3.51192,5.4216,5.00345,2.19494,5.0102,4.419815,3.123695,3.71537,3.45434,0.328622,4.978975,3.590155,3.277145,3.270018,4.161005,3.957845,1.86462,3.050455,3.725595,8.342155,5.11715,5.8059,4.71777,3.970415,0.855625,2.236385,1.92238,1.651895,1.8627066666666667,5.00985,5.4501,4.107935,5.0096,3.2628380000000003,2.5517133333333333,0.9162233333333334,3.999795,1.1906483333333333,1.1164366666666667,3.22346,3.41173,4.75056,1.2955125,2.5447266666666666,8.949983333333332,3.2443733333333333,3.2236158333333336,0.8257525,3.889575,12.448296666666668,3.363255,4.104765,3.01614,2.825495,4.718635,5.13125,2.16608,4.502305,0.6116553846153846,4.72447,2.17755,1.8581025,1.8581025,3.517633333333333,4.58404,1.6209416666666667,4.26881,1.3464028571428572,4.02779,2.71558,3.3789,4.961225,3.47656,3.858696666666667,2.667675,2.6502991666666667,2.6502991666666667,11.255975,0.738758,3.01891,3.3444333333333334,2.12661,1.9775475,0.9626685714285713,1.376085,1.2500628571428571,2.049345,5.10815,2.41157,4.27065,2.0771333333333333,3.8814,4.42791,1.6710833333333335,1.951315,1.0138833333333335,6.155303666666667,2.10883,2.135815,1.712806,1.9365200000000002,1.15308125,2.47198125,3.62456,2.2835466666666666,3.0517733333333332,2.36934,2.7061933333333332,1.6808466666666666,3.137113333333333,2.58133,1.4803333333333333,1.9913699999999999,2.94463,2.74286,2.427846666666667,1.1613200000000001,2.5219733333333334,1.9690133333333335,2.5718799999999997,0.3088610526315789,0.4027,2.34449,2.2094833333333335,3.214915,3.1699133333333336,2.71357,5.0643,5.5872,4.303155,4.655845,4.42138,3.93637,3.0708933333333337,3.72132,0.71368,0.07111522727272727,6.94725,0.07111522727272727,3.576595,2.930365,5.3643,3.41318,6.31585,4.59518,2.066876666666667,2.46275,1.0489433333333333,5.34955,5.78055,3.4006000000000003,5.4226,1.983795,3.838625,2.0719271739130436,3.2665733333333336,3.1826566666666665,3.9138,5.055366666666666,3.09567,2.1741466666666667,2.1741466666666667,3.98066,7.63354,3.35526,2.1056033333333333,2.3834,4.48467,3.028705,4.928305,3.67543,1.0764333333333334,4.492095,2.7044766666666664,2.9254533333333335,4.23267,1.1935499999999999,2.3298533333333333,3.844295,3.6975,5.09545,2.86196,2.7405,3.915875,3.809795,4.30791,5.00085,4.446295,3.259955277777778,3.715845,2.8314566666666665,2.92948,2.827716666666667,3.852066666666667,4.32587,3.1254933333333335,5.203058333333334,4.411955,3.8705,5.3675,4.46851,3.62562,1.429614,1.359635,3.951405,3.569266666666667,1.4938666666666667,2.8836833333333334,3.278085,3.31188,4.091782222222222,3.1948333333333334,2.3824816666666666,12.71495261111111,2.24656,1.87297,4.728,1.113872,3.1962166666666665,3.94293,4.721855,3.45128,1.2142333333333335,2.3405833333333335,2.5492933333333334,1.548912,4.603835,0.9651675,0.9651675,3.198743333333333,1.6704233333333331,1.52832,1.8156075,3.49909,5.5123,2.32713,2.984425,3.5743783333333337,2.841976666666667,2.96068,1.991384,6.34315,5.79425,3.99142,0.789876923076923,4.313665,3.586665,1.0678727272727273,5.53105,3.3954,8.7093,4.94777,4.837015,3.55475,1.4181825,3.09238,5.06375,4.8351,4.084925,3.79734,4.409695,4.062355,3.4897333333333336,3.4897333333333336,4.40415,2.7153,4.33536,1.619975,5.651057083333333,5.538375,1.5682,4.678005,1.07638,5.8836,4.00153,5.0856,4.712485,4.41768,2.49582,2.568375,4.163505,4.40671,5.08765,4.428,1.845385,1.408684,4.702225,2.0263666666666666,5.46565,2.927695,3.556535,7.848615,3.83635,4.704555,5.4084,4.251615,4.80957,8.187515,3.950245,3.19055,9.56381,3.964435,0.6031885714285714,2.0660369474969476,4.72435,0.6121586666666666,4.725995,4.31101,4.93696,4.61152,3.36156,3.744405,4.72787,5.0441,2.6825,0.7121557142857142,4.69317,4.55196,4.54466,4.39729,2.8778333333333332,4.656605,3.69734,0.788116,3.4612,4.366855,2.507775,3.2408466666666667,4.31064,2.2971116666666664,5.62235,5.2311,4.1816475,3.1548133333333332,5.7729025,5.7729025,8.638593333333333,2.03062,0.7999175,0.7999175,25.196065,2.762975,7.833821666666667,0.3402066666666667,1.33727,3.06035,1.04387,3.653395,3.71268,2.2055925,2.2055925,4.335695,4.990445,3.464995,2.7342216666666666,2.7342216666666666,3.391215,4.72383,3.67512,3.4354666666666667,2.0241000000000002,2.64170625,3.916609,2.018505,3.484625,2.9329666666666667,2.8495267857142856,2.8495267857142856,3.5128,0.9248133333333334,2.5242833333333334,1.5321233333333335,3.4393,2.919643333333333,3.03885,2.805616666666667,4.928985,2.5173,3.23031,5.484688,1.393548,2.18432,3.043585,2.6788399999999997,4.37232,5.72624173015873,1.3545833333333333,3.9202,2.48827,5.00094,6.16919,1.5266325,5.12671,5.119887333333333,3.3802011428571426,4.643166666666667,0.9648814285714286,1.810654,3.02253,4.021424761904762,1.2900416666666665,2.414765,1.5553675,1.6300719999999997,2.836675,3.5125779999999995,5.271533,1.0570983333333335,1.4212271428571428,2.9496033333333336,13.649944999999999,4.708616666666667,2.67434,1.1783757142857143,2.571212142857143,0.9842871428571429,3.3375333333333335,4.140281666666667,5.00515,3.397866666666667,5.3883,1.49465,3.8206,4.42386,2.825813333333333,4.070321111111111,1.9719633333333333,1.0847077777777778,2.446223333333333,3.0390533333333334,7.201103333333334,2.9543872857142857,2.725153333333333,0.712369,4.781766666666667,3.7011000000000003,1.370924,5.68333,2.00313,2.5891800000000003,5.61855,1.2853555555555554,3.184763333333333,1.0011454545454546,3.0300100000000003,4.4461,3.2171366666666668,3.08895,2.19069,2.734083333333333,4.65037,4.658455,5.2984,1.634405,4.35156,4.2279,4.43907,3.4151999999999996,2.446833333333333,4.234532000000001,0.961422,2.8626899999999997,4.920165,2.832075,4.161175,1.37055,2.7936300000000003,1.985592,1.985592,7.40456,3.152003333333333,5.288308333333333,3.429108333333333,1.7841766666666665,2.783404285714286,4.827671666666667,5.696916666666667,8.923926666666667,4.951451666666667,2.6799695,2.216816666666667,2.0063428333333335,4.157843333333334,3.71185,1.51938,1.957705,2.275158392857143,1.1595175,3.2557833333333335,19.533926666666666,3.2190366666666663,2.9445666666666668,3.0847933333333333,2.91344,2.63546,2.17586,3.3009766666666667,3.636433333333333,2.69385,2.5700233333333333,5.778792666666666,2.4849733333333335,4.864999428571428,2.8742654285714284,2.7065194285714287,1.50396,3.8724366666666663,2.1195675,4.065455,5.1021,3.97744,2.9095225,3.22807,2.406503333333333,3.6023,3.7167999999999997,3.5502333333333334,3.28454,0.8169000000000001,5.36565,2.622765,3.356733333333333,2.839357777777778,2.0777175,2.1615624999999996,2.1615624999999996,3.384745833333333,1.9528908333333332,4.66845,4.206045,3.676585,4.44704,4.949165,4.606865,4.606865,4.038975,2.960876666666667,4.82194,2.64067,1.65218,2.3894266666666666,4.624225,4.20222,2.77215,3.850475,5.670415,3.810333333333333,6.544985416666666,3.04381,0.854768,0.854768,3.333435,4.84095,3.704085,3.353096,2.44781,1.7710033333333335,1.6534633333333335,3.13946,6.179525,1.5551416666666666,4.3893,3.8065333333333338,3.76411,5.24875,5.20925,4.792814375,3.4177666666666666,2.4536725,4.41142,4.369965,2.14426,1.125162,4.04924,2.786225,6.566658333333333,3.7804333333333333,2.68324,3.3228,3.58153,3.76629,4.72123,3.252275,4.434745,4.014615,4.237955,3.687715,3.403725,3.406685,4.123515,2.5159466666666668,4.67036,3.303465,4.955245,0.6056455555555555,2.34316,1.8998225,2.216685,1.8630575,2.7390333333333334,2.63657,1.8211533333333334,4.58924,5.45582,1.9462933333333332,4.10782,4.648915,2.397035,5.6994766666666665,4.0773575,4.673005,4.999355,7.100673333333333,2.1564733333333335,3.099546666666667,2.005453333333333,3.073423333333333,1.795305,1.831065,3.96593,3.37418,5.4213,1.035798888888889,2.967495,4.553755,2.2890375,5.34505,3.64585,2.53018,3.6176,3.430225,2.2306325,1.9420015,2.573775,3.144675,3.36625,1.9764525,3.2594471428571428,3.2594471428571428,3.630425,3.469875,21.485500238095234,1.10792,5.751613333333333,1.97428,1.8559033333333332,3.766185,3.848115,1.8511925,3.77233,4.41328,1.2577966666666667,1.2577966666666667,1.31568,1.6567366666666665,2.4457033333333333,3.062796666666667,4.850738333333333,3.8419,3.6439333333333335,0.50987,3.465206666666666,1.8853133333333334,2.20408,4.3930125,3.283925,3.919105,3.39176,4.52039,4.6421,1.964085,3.947145,5.577426666666668,2.52852,3.480695,5.0231,2.217625,4.732925,6.09945,1.3971571428571428,2.00486,3.6920333333333333,0.7602328571428572,3.32248,3.55124,5.03075,5.037,2.801935,7.969595,3.0096600000000002,3.0211,0.44429176470588233,4.1972,5.421840476190476,3.278480952380953,5.48075,3.74315,2.4941862222222224,1.8241260000000001,5.48407875,4.34902,4.325415,2.890875,2.120335,3.9779,4.027533333333333,2.9491033333333334,2.16717,4.093454166666667,6.627062499999999,2.69957,3.754195,3.51122,4.057625,1.6087428571428573,1.6087428571428573,3.14757,3.1750833333333333,4.691675,4.89842,6.68695,3.447855,2.9069,2.136595,1.6060933333333332,1.4255928571428573,5.08605,5.9378375000000005,5.3061,6.04975,4.54441,6.646775,3.481605,2.77914,4.010356,2.0358233333333335,3.0520207499999996,1.694938,4.537935,2.3111566666666667,3.92222,5.2385,3.99044,2.7181866666666665,2.998953333333333,1.4599142857142857,2.515275,3.9281333333333333,2.1255625,0.6366875,3.149013333333333,2.6845933333333334,2.65661,2.6020133333333333,2.2295225,1.639884,0.7152227272727273,0.7152227272727273,3.6641,1.9560725,2.500125,3.353675,5.87895,4.17561,6.0847,4.693705,4.67462,1.9359583333333332,1.3006766666666667,2.421045,4.013915,0.963795,3.511375,2.919145,2.85271,2.072705,3.9191,2.819975,2.015686666666667,1.0499957142857144,3.98275,8.03834,3.95555,1.636825,4.43128,3.535925,2.866585,3.390395,2.687875,1.76006,1.0222775,3.56105,2.3845641666666664,2.127623333333333,1.5848533333333332,2.2024966666666668,2.2072166666666666,2.437046666666667,2.82213625,1.3444833333333335,1.8623733333333332,1.0617975,6.47586,5.73275,5.7528,3.973755,4.515755,3.0634766666666664,1.645617094017094,4.850485,5.19055,2.506,5.26565,1.90255,4.518715,1.0388377777777777,4.03507,4.46589,1.8788875,7.60473,3.45696,1.8164275,2.0746625,1.712635,2.559575,3.4657666666666667,1.3548359090909092,3.215336666666667,5.64415,3.493365,3.93438,5.6657,5.4964,5.7194,0.96655625,4.423895,4.709855,4.085835,4.919715,3.8697216666666665,4.904775,5.36145,3.290985,1.7515166666666666,1.7515166666666666,5.5158,6.298018333333333,3.678085,2.6606566666666667,3.807485,4.88025,1.567712,4.461895,5.11975,3.47204,3.959035,2.9326066666666666,3.19979,5.09615,2.5322415,10.940937340267576,1.89286,0.75595375,2.5295033333333334,1.670825,2.6446,2.2707575,1.956316,3.062416666666667,5.14305,5.5615,3.0229866666666667,1.7348666666666668,6.560646190476191,1.5089857142857144,3.043973333333333,0.527752380952381,4.071566666666667,5.76445,3.59665,4.976775,12.705895000000002,5.51525,3.229506666666667,3.4677666666666664,4.974955,3.1478933333333337,4.87498,0.9797725,1.1834116666666665,0.8209872727272728,5.9396,4.194475,1.909494,5.060045333333333,4.4417,6.5138,4.745805,5.44545,4.603665,6.18725,3.801085,5.3585,3.629765,1.358612,4.448525,5.62815,2.691885,3.91148,3.054925,2.638625,1.20306,5.0846,3.850805,1.290125,3.5245333333333337,3.1182200000000004,2.451776666666667,2.503503333333333,2.4868200000000003,2.8901800000000004,0.6916809090909091,2.4839333333333333,2.58983,2.5619333333333336,1.9234600000000002,3.1486666666666667,1.86293,1.5058066666666667,2.493225,2.1573625,2.1472025,3.2261733333333336,3.1042733333333334,0.727733,2.8676100000000004,3.408125,4.61034,2.587943333333333,4.05479,5.72275,5.0724,3.23779,3.68769,1.4545714285714286,3.423005,2.470678888888889,4.196951666666667,2.92897375,5.02475,5.3095,4.966865,4.63954,4.338666666666667,1.108098,1.108098,2.2630807692307693,1.66614,4.1115,2.696413,2.696413,5.2611,6.04035,3.111225,1.2970183333333334,1.6166571428571428,5.9824,3.438425,2.593453333333333,3.250975,2.70987,3.118855,2.593453333333333,5.19561,3.130525,3.0930191666666667,2.882665,1.996905,2.93199,6.80635,3.392115,3.490655,5.5057,6.74675,6.39065,6.74685,6.74685,5.61775,4.8891,0.5253323076923077,5.22105,4.919405,2.875935,2.76762,8.127471666666667,2.7575566666666664,4.58929,3.67336,3.0060000000000002,4.783875,2.48706,3.2498125,3.069986666666667,3.648733333333333,2.71437,1.760074,1.760074,3.580885,4.29944,5.32215,1.856392,1.58398,48.994497651515154,2.5271433333333335,0.8841918181818182,3.27643,1.88664,3.4028333333333336,2.8419899999999996,3.17156,3.51147,2.85848,2.239996666666667,1.0443375,4.5529,3.177585,3.477625,3.89597,5.26695,5.18075,5.0654,5.45885,5.5857,4.83761,5.64805,6.241,5.1776,5.7405,2.0246925,3.934035,6.691,5.38075,3.60403,4.027905,4.225785,2.453515,3.81598,4.675445,3.24329,4.110433333333334,1.6820060000000001,4.320295,1.360848,3.13569,3.72533,3.450195,6.547245,4.299415,2.040345,4.27439,3.99247,3.888385,1.0124625,2.78149,2.93861,4.334350476190476,1.177255,4.72452,1.3118,6.28185,0.6825833333333333,4.219149333333333,10.617038333333333,4.61038,3.98424,3.812675,1.8671833333333332,4.33017,5.7855,3.11031,4.49537,9.297901111111111,3.4326666666666665,2.34522,2.7700533333333333,2.7168666666666668,2.80573,2.89719925,2.7774133333333335,2.59314,3.0235566666666664,2.6636833333333336,3.244846666666667,3.36545,2.20241,1.6737633333333333,5.238784666666667,3.870533333333333,2.62534,4.944594666666667,2.8137633333333336,1.1000175,2.2215775,3.0156566666666667,5.159192142857143,2.9118,2.3005677777777773,2.3005677777777773,1.625255,1.761175,2.1731000000000003,1.92669,6.0705775,4.3512125,2.3026725,2.9048266666666667,3.8412666666666664,2.036275,0.6341616666666666,2.7213666666666665,1.8648125,0.5453030769230769,3.759725,2.4709725,2.574375,3.58269,3.6453525,2.47173,1.5599533333333333,1.2371016666666665,2.11331,3.454545,3.635575,4.20959,2.7852533333333334,3.975645,3.7192,1.1601545454545454,9.598569999999999,2.718065,3.379685,1.2622125,2.8770000000000002,2.4103825,2.4103825,2.4103825,5.0656,5.6753,1.651595,5.2295,1.36435,5.577153333333333,1.6376300000000001,4.4662,4.21814,4.300885,5.07665,4.86416,1.89553,9.1716025,4.049155,4.98964,3.356195,4.239225,3.3166966666666666,3.055536666666667,3.76075,2.684143333333333,4.373780714285714,4.503675833333333,1.596905,3.88149,1.596905,3.560625,4.33703,4.8239925,4.33703,1.83835,5.8412,4.496645,4.37682,2.9357366666666667,3.145383333333333,4.28751,3.14024,5.3617,0.5181535714285714,3.117376666666667,2.980093333333333,5.376999166666666,4.74711,2.4334875,4.78503,6.805408333333333,3.40425,2.712075,2.78147,2.4231133333333332,4.16175,4.07976,4.80173,2.41979,3.99599,0.883259,5.3331,3.51866,4.11382,2.3611766666666667,2.9118099999999996,2.305363333333333,2.7194566666666664,2.6934733333333334,2.737496666666667,3.540445,2.5404,2.5404,4.7316183333333335,3.346315,4.864695,11.671162500000001,0.9635833333333333,4.681315,2.704383333333333,2.3492466666666667,2.872313333333333,1.5007625,7.652474833333334,3.6443333333333334,3.915915,3.774655,2.1794333333333333,3.995533333333333,4.53197925,2.4722166666666667,0.45421333333333336,1.597596,1.4317225,4.98023,2.749135,3.41476,3.7363366666666664,3.4262216666666667,2.4517474999999997,5.02065,4.64995,3.65326,4.717595,2.16541,4.019255,2.4641533333333334,5.378736666666667,3.034715,5.1371,4.17291,4.891895,4.302605,1.971325,3.717105,3.653275,3.2459233333333333,3.571965,2.98756,3.05324,4.232455,3.352265,2.54775,4.691245,1.50537,3.78726,2.70873,4.565795,4.716765,3.864815,4.707395,2.42275,4.264165,5.19915,4.06538,2.8800899999999996,2.15505,2.932265,2.32605,0.8572466666666667,4.71343,2.01649,3.37562,2.63347,4.004495,3.186245,3.410325,3.133295,4.44743,4.4669186666666665,4.104205,2.89638,1.5557699999999999,3.360155,2.298835,0.9574655555555557,4.609715,8.828025,3.301795,3.549485,4.14742,4.942755,3.790145,2.030855,3.889955,3.907945,3.182245,3.144195,3.73902,0.594145,1.2128057142857143,6.1124075,1.6850975,2.651735,4.8181519999999995,2.47346,2.350235,2.78225,8.29243,2.539735,4.116995,3.65994,0.7481333333333333,3.351195,2.61999,3.76297,4.11071,6.1643566666666665,0.717018,3.22864,9.22251,3.12368,1.0793144444444445,5.191654166666667,4.74235,5.4784,4.6322,4.722095,3.34467,2.61139,7.50408,0.87232,3.368295,4.05501,2.91741,4.38406,2.305525,4.22883,1.7289,4.34284,4.165185,4.16651,1.68247,4.855855,4.72084,2.43541,2.0476,2.393855,1.370924,4.08316,3.3529204999999997,1.587386,7.9483049999999995,5.82255,4.47076,4.54248,3.47252,4.28375,1.4522857142857144,4.553815,3.99522,5.37585,3.62956,2.3983166666666667,6.68329485042735,1.4152825,1.4152825,2.5551166666666667,0.8899514285714286,4.21172,3.2743266666666666,1.039175,1.68747,0.40100583333333334,6.3243575,0.9404725,2.722025,3.88073,3.96124,3.8587,4.22741,5.50945,5.4856275,3.29528,3.054175,2.37517,4.606765,4.548155,4.19979,3.77011,3.619385,6.1895,4.436675,4.306547777777778,6.119368,3.60743,3.5590425000000003,2.24482,3.5590425000000003,6.900436,41.77221162229437,3.718485,3.37868,2.959433333333333,4.465165,4.632155,3.3833,3.44213,3.72125,4.69446,4.405005,1.75445,5.037,2.62106,5.04145,5.3606,5.0087,2.314226666666667,4.650445,3.857145,3.348565,1.615278,0.661156923076923,1.8020219999999998,3.8249333333333335,3.21241,1.359675,3.037603333333333,2.761566666666667,2.8823633333333336,3.6531000000000002,3.0488133333333334,1.5875059999999999,2.805153333333333,3.766166666666667,1.970166981981982,2.9733666666666667,3.324522,3.04123,2.5414033333333332,3.5764,1.1935222222222222,3.94028,3.78544,1.2370266666666667,1.2370266666666667,1.2370266666666667,1.2370266666666667,2.8560963636363637,2.0372,2.458275,3.46704,4.90349,5.07265,4.340965,4.386385,5.6909,4.594465,2.30017,6.11305,3.885275,2.658265,4.07773,3.352805,4.2133,4.574025,0.7350746153846154,1.470157142857143,1.5267833333333334,4.27133,3.811655,5.03035,4.05954,6.072208333333333,2.2267266666666665,4.712935,1.6167133333333332,3.8704,5.20275,1.5870433333333331,5.24805,0.7955283333333334,4.397795,1.335356,1.2031825,3.735395,4.09119,5.3458,5.2573,6.0947,4.776365,1.45442,5.35375,1.4584925,3.56779,3.30545,2.4941862222222224,2.0278225,3.451865,1.3615283333333332,3.513525,4.866795,2.8926766666666666,5.8948,123.45701171969698,0.4795422222222222,4.74916,2.4911366666666668,4.586585,3.98511,3.13585,1.5107525,0.35414190476190477,2.86683,3.72664,5.59625,3.478005,3.637465,4.3462,4.834005,4.88906,8.043186666666667,0.6793122222222222,2.605355,0.9514175,11.237639999999999,2.93986,3.43583,0.9846322222222221,2.081445,2.68878,2.09358,3.219473333333333,3.4097333333333335,2.7985399999999996,4.211,3.1356133333333336,2.2686100000000002,2.1576299999999997,4.01115,3.3708,3.053855,3.585755,3.635775,3.221615,2.26848,3.785865,4.290365,3.021605,0.9651733333333333,2.4656866666666666,4.211,4.52531,5.49945,4.015455,4.35605,1.83668,10.240739999999999,5.22415,2.63263,4.17035,5.14435,0.5509853333333333,0.5509853333333333,4.283695,4.283695,3.234875,3.6008666666666667,1.78752,0.6267566666666667,2.87154,4.447105,4.05972,3.074,3.88993,5.2818025,4.99471,2.19734,4.72031,2.38207,2.776785,4.396395833333333,1.755,2.069565,0.5051257142857143,1.2628477142857144,1.2628477142857144,1.927195,4.61427,4.38034,4.876,6.4230789999999995,3.28529,3.037905,1.830385,1.85181,4.796671666666667,3.92332,5.218216666666667,2.74083,5.218216666666667,5.1312,3.562115,6.1709,3.72464,2.354546666666667,2.1189566666666666,2.5042233333333335,1.3730525,1.3473075,1.5044275,1.8402675,1.5856,1.9632725,3.9093,4.80373,2.486845,6.753,3.1533433333333334,4.553555,3.332675,4.30965,2.9273066666666665,3.1390233333333337,6.522356666666667,3.4136333333333333,4.797747333333334,3.4068666666666663,1.397195,2.430973333333333,2.616283333333333,2.2345966666666666,6.2028,4.4794374999999995,4.91891,12.827041654906497,0.7750291666666667,2.0291550000000003,2.3102525,1.741234,1.3221614285714285,2.591625,2.5393,2.522,2.47845,0.7519238461538461,1.90896,0.5393473684210527,4.85448,1.918965,4.152385,4.71025,2.561775,5.77741,4.34207,7.94215,4.16002,2.79443,3.02944,4.769955,4.85408,2.7193713333333336,4.53028,2.171245,2.171245,5.0898,3.920635,4.451815,3.981595,3.252026666666667,4.15442,5.1729,5.3495,4.936285,4.653025,4.40926,4.3731,2.379735,5.32795,1.3296816666666667,4.98166,4.688755,2.4378333333333333,2.1540500000000002,4.183465,1.548415,5.15035,1.9698,5.871108007246377,4.73606,4.03608,1.5203366666666664,3.0835175,3.0835175,11.74074,3.923285,4.82793,1.12296125,4.416937,2.307005,1.4537925,2.447295,1.7201175,2.03827,1.807922,3.01018,6.1251,1.78148,5.2375,4.765798333333333,5.7221,2.18282,2.23637,3.75995,4.350175,5.57865,3.861355,7.598728333333334,3.2148633333333336,2.7937333333333334,0.3675833333333334,3.67668,4.39232,3.459766666666667,6.310636666666667,2.5625466666666665,3.10182,1.216655,1.6558916666666665,0.6366875,1.597596,3.03785,1.5281483333333332,1.8040166666666666,0.6737125,1.3052519999999999,4.62867,2.4782975,0.6416515384615384,1.6688833333333333,1.70907,1.820154,1.3364316666666667,2.07302,1.6558916666666665,2.595125,1.3052519999999999,1.3052519999999999,0.6416515384615384,1.6009571428571427,2.5103400000000002,1.2900416666666665,2.776675,0.6416515384615384,2.7442,2.5103400000000002,1.3664399999999999,1.3664399999999999,1.3664399999999999,1.896912,1.2738125,0.6416515384615384,1.103562,1.15607875,1.0595855555555556,1.9044440000000002,2.71465,0.8591166666666666,2.273865,1.5950285714285715,0.6416515384615384,1.74208,1.6558916666666665,2.0317000000000003,2.0422166666666666,0.9027649999999999,2.0317000000000003,1.0322466666666665,2.43541,2.4443425,2.4841625,1.15607875,2.17148,1.3615283333333332,1.3615283333333332,0.9110636363636363,0.9110636363636363,0.9110636363636363,1.216655,1.6558916666666665,1.5950285714285715,1.6688833333333333,0.9704085714285714,2.0422166666666666,1.583904,1.765146,2.06596,1.216655,2.67434,13.1104425,0.6737125,2.62724,1.87525,2.500025,0.9842871428571429,0.9842871428571429,0.6416515384615384,1.0032388888888888,1.639884,1.5950285714285715,1.790264,2.0422166666666666,1.1796333333333333,1.1796333333333333,1.637822,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,3.2637433333333337,1.0322466666666665,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.38540500000000005,56.57343003463203,1.4919,1.6196466666666665,1.5950285714285715,1.87525,0.9704085714285714,0.6492058823529412,0.712369,0.712369,0.712369,0.712369,4.3891,17.095088333333333,3.3993,0.6254881818181818,1.7670280000000003,1.7670280000000003,1.7670280000000003,0.6254881818181818,3.03785,0.6416515384615384,1.74208,1.8040166666666666,2.53702,1.0322466666666665,2.4334875,1.0322466666666665,1.7792439999999998,1.7792439999999998,2.1618999999999997,2.1618999999999997,0.6416515384615384,2.04294,2.04294,0.9821454545454545,0.2093411111111111,3.03785,1.5400066666666667,2.48827,0.6254881818181818,0.6254881818181818,0.6254881818181818,0.6254881818181818,0.6254881818181818,1.87525,0.38540500000000005,1.0322466666666665,2.2027575,2.2027575,2.568375,3.1274933333333332,0.6600714285714285,0.6600714285714285,3.5177,4.172233333333334,1.199922857142857,3.3714333333333335,1.02349,2.480885,2.03062,1.1935499999999999,3.175613333333333,2.0984675,3.1548133333333332,5.40345,2.553125,1.211411111111111,4.320595,4.33309,2.960523333333333,1.724542,2.4453034615384617,4.435825,1.9589161111111113,2.6142066666666666,2.829423333333333,3.2511433333333333,2.361425,6.3493699999999995,4.51073,0.2093411111111111,3.1217633333333334,5.322,3.76058,4.66019,4.53579,4.636475,2.9157433333333334,1.826958,4.601415,4.65042,4.27031,4.77898,5.46025,3.23155,0.7086466666666666,6.7461649999999995,1.6482333333333334,3.153288,4.77244,2.598813333333333,2.598813333333333,0.8490563636363636,2.0278225,4.625505,3.04246,5.16265,4.38711,4.71668,5.29615,1.1542257142857142,4.742205,5.63795,7.1373379861111115,2.1691033333333336,4.10469,3.772335,3.981785,3.87948,4.204995,4.41582,6.093884999999999,5.27285,4.4144033333333335,3.648125,4.350638333333333,7.4882089999999994,1.8679875,1.997406153846154,2.7813466666666664,1.7748133333333334,2.7776833333333335,1.77566,5.09185,3.071676666666667,6.18475,2.02468,5.14895,4.03126,3.807745,4.29358,3.683225,2.5101,2.760526666666667,2.54685,2.7417200000000004,2.5066366666666666,1.7009166666666669,2.635546666666667,2.7624633333333333,2.2523,2.2523,4.465525,2.8783600000000003,1.8938266666666665,3.00568,2.0292866666666667,2.8267866666666666,2.987106666666667,2.702833333333333,2.8722366666666663,5.48505,4.43597,4.29658,3.642742,3.642742,4.06405,3.33179,4.162935,4.407785,4.16329,3.41178,3.27455,7.25468,2.199425,1.948885,3.31814,3.30215,1.3969066666666665,1.3969066666666665,3.482335,1.807025,4.014732666666667,3.663685,3.63657,1.914514,1.9837336666666667,0.5858933333333333,3.62275,3.86786,1.98726,2.45695,4.2884,1.2430533333333333,4.72959,1.3104833333333332,0.38852857142857145,0.5334164285714287,21.744247722222223,0.5334164285714287,0.38852857142857145,0.6783042857142858,9.820283333333332,2.8434666666666666,3.83289,4.58876,3.6355000000000004,2.73739,4.257120714285715,2.189135,2.54083,3.814165,3.006065,4.12597,4.52289,3.452385,2.1687,3.238195,3.65449,3.88566,2.915105,1.088028,1.088028,1.088028,1.088028,3.33745,2.761755,3.219685,1.7356033333333334,1.2117833333333332,2.421375,3.625115,4.468175,3.167435,3.342025,2.583495,2.71558,3.85241,4.05913,1.1209633333333333,2.8264566666666666,1.06196,2.8451733333333333,2.14338,3.8251000000000004,5.4972,2.467983333333333,4.026575,4.1644266666666665,0.7830809523809524,0.2032542857142857,0.2032542857142857,0.5798266666666667,0.2032542857142857,0.2032542857142857,0.2032542857142857,0.5798266666666667,4.764125,7.647743333333334,3.49708,0.5500275,3.691315,7.55176,3.17185,3.24694,1.143455,4.73227,5.44995,4.38071,4.76447,1.656204,4.83461,2.1933266666666666,2.3079140000000002,3.795155,5.4431,0.7878371428571428,0.7878371428571428,3.53662,2.7604333333333333,1.972275,3.03371,2.67753,6.72935,2.622335,6.48765,6.0624,5.6336,2.90182,1.866935,4.35275,3.317665,2.20697,3.87982,3.55154,1.7289125,1.0883083333333332,3.965645,3.32906,4.92412,6.0990633333333335,1.4952083333333333,3.982445,1.16558,2.4304099999999997,3.29912,4.101355,0.392905,3.62794,4.046195,0.9248239999999999,2.8639033333333335,7.665516666666667,3.06804,2.117325,5.837859,4.37267,3.846915,1.442955,5.527456666666667,2.8865366666666668,3.168293333333333,3.6755999999999998,2.1072866666666665,2.1072866666666665,6.571425,6.571425,3.7476535714285713,3.7476535714285713,11.2204,3.7476535714285713,3.7476535714285713,4.403210238095238,6.95285,3.774325,3.683045,3.029666666666667,4.5008,3.29658,3.3791666666666664,3.2449066666666666,4.84635,3.260403333333333,2.63188,3.2873,2.2700366666666665,2.652055,4.99103,7.49001,6.4963325,5.0062,3.66466,3.935215,7.225482,5.3697,4.622,4.230185,4.427055,2.4290499999999997,2.165605,2.1261,5.796,5.7198,4.698405,4.21316,2.263053333333333,2.8203300000000002,6.912694999999999,1.896912,2.508103333333333,3.466533333333333,3.466533333333333,3.08212,5.28145,0.7937725000000001,3.5563000000000002,4.04112,3.1077433333333335,10.301250000000001,4.575185,2.80157,2.4525,5.1454,6.0865,2.98797,5.58615,2.5981533333333333,4.572965,2.9980257142857143,4.71397,5.53815,5.06285,1.1201433333333333,3.6565666666666665,1.06161125,2.43438,5.203814911764706,8.74019,2.5947133333333334,3.4702333333333333,7.313863333333334,1.830304,4.705875,5.4791,3.45782,3.59143,2.1112266666666666,4.64832,2.4670362499999996,0.4816692307692308,5.16055,2.827725,3.5191,5.41655,5.08295,5.29835,6.934075,4.812315,5.54925,7.3504375,53.97793166666667,4.980965,3.866315,4.724095,5.88215,4.72514,5.32195,4.36544,4.68251,1.8956625,3.985175,4.285065,4.63847,2.50818,5.1207,3.895815,1.610034,5.81195,6.52705,7.49334,5.48065,3.26409,4.7781,3.469555,3.186455,3.512585,4.225715,3.766145,6.66073,2.8296,1.0498957142857142,2.30375975,0.589054,0.589054,3.509595,0.589054,2.3668863214285714,2.3668863214285714,3.0456083214285714,4.73855275,5.113307571428571,2.30375975,5.049275000000001,2.667205,1.4377700000000002,5.6577,2.20327,7.210124666666666,5.793196666666667,11.150156363636363,3.1877766666666667,2.6090966666666664,0.216929696969697,1.9022383333333335,2.2629699999999997,0.971145,1.3976316666666666,2.8909599999999998,2.4569325,2.7157,0.5904849999999999,26.88726583333333,1.881495,0.7956461538461539,2.59275,2.59275,0.42854055555555554,1.7459575,3.0410525,1.28649,1.8306325,1.613685,4.049135,2.832695,1.9713066666666668,2.3554533333333336,1.1212116666666667,2.13996,1.5839216666666667,5.380511333333334,3.665065,7.0439783333333335,2.630325,3.444266666666667,1.0178366666666667,2.24629,5.2057,6.32758,3.1659400000000004,2.34426,5.4314116666666665,2.134545,2.730306666666667,4.5228850000000005,1.0816433333333333,3.5930666666666666,2.3140466666666666,5.5031,5.0616,6.3682,3.369535,4.1536,4.1536,5.29585,2.48172,5.4592,3.1712633333333335,1.5895075,2.924115,3.086015,5.626928333333333,4.14632,2.931573333333333,3.475633333333333,3.023615,1.1480599999999999,5.22025,0.98013875,5.597146666666667,4.721115,7.66786,4.240115,4.423265,4.13319,8.431983333333333,4.539015,5.2959,1.19345,0.7291071428571428,4.610105,4.518505,2.14464,3.180615,3.230255,4.21248,2.051655,4.866145,2.59835,5.51345,5.55545,5.73775,4.634295,4.87108,2.78186,6.581084,3.32884,4.480265,3.299255,4.659255,5.6813432142857145,0.5819964285714285,3.8113333333333332,1.6877566666666668,0.5705088888888888,3.971,2.46154,1.0463025,1.859535,5.73231,3.56191,2.281875,2.8709399999999996,2.7223366666666666,5.03735,4.25915,1.6361971428571427,4.31381,2.4180266666666665,3.7917,4.465355,5.06395,3.226869166666667,3.9088999999999996,3.884,2.00396,7.32099,4.89957,4.412605,5.4719,2.243455,4.64414,4.84972,3.830185,3.79404,10.488345,3.622625,4.246261666666666,4.788765,4.838715,2.4584675,4.624845,4.294875,4.773235,3.289773333333333,4.55424,1.6877325,3.2046166666666664,3.510845,3.989675,5.34025,1.9347539999999999,4.320265,3.2148566666666665,5.49145,3.3992,2.279805,4.202555,4.83299,1.09829125,2.890715,2.703863333333333,4.57025,1.7979040000000002,1.6762533333333334,1.1856575,3.420915,5.66295,5.389785,3.5314275,4.364075,2.3444,2.09385,2.236065,1.4204666666666668,5.78865,2.90313,2.00505,0.9200846153846154,20.87751323076923,3.1862,3.3276275,4.728045,4.116288461538462,1.26477,2.731741833333333,3.069904090909091,1.2357960000000001,1.8175533333333334,4.638995,5.0081,3.6460516666666667,3.59353,5.63015,4.79638,7.188195,4.844391666666667,4.7321,3.70569,2.7258833333333334,4.09312,4.179825,3.7535666666666665,4.13429,2.051275,5.1282,8.71723,3.39263,2.90885,4.33212,0.538965,3.208353333333333,2.0818733333333332,2.4243025,4.209245,3.449405,5.2483,3.63801,2.79267,2.296355,1.702885,0.807634,1.47569,1.3386699999999998,3.809245,4.312,4.81305,4.703945,7.36026,2.2362333333333333,1.413412,2.37038,8.038343333333334,3.17356,2.8487,3.099305,4.647945,3.3980025,3.531655,1.58976,4.607315,4.944345,4.13623,3.95927,3.81345,4.245875,4.543645,3.67725,4.33512,5.16735,2.19505,3.4522,3.31103,5.61365,2.855125,4.2876785,2.57757,2.845675,2.4779133333333334,2.2846266666666666,2.1086300000000002,2.854214,2.854214,1.8979433333333333,2.8930933333333333,2.2899033333333336,2.2807999999999997,2.0235,3.98288,2.3699,2.80593,2.9192133333333334,1.66393,4.47835,2.831,3.90099,2.76465,5.1595,5.44965,4.905963611111111,2.4984,2.25559,3.00432,2.019905,2.050865,2.752925,1.945415,2.6893,2.8082,6.678422333333334,4.1200825000000005,3.66281,0.651875,4.366185,4.05193,4.26936,3.107545,3.87826,3.671120833333333,6.3368,4.468605,3.685585,2.8068039285714286,2.2370335555555556,2.4833,1.7688279999999998,1.828528,1.753012,2.13646,1.86583,1.3191116666666667,4.072848857142857,0.6416515384615384,0.5685055555555556,2.03242,1.5105899999999999,1.5023279999999999,1.4670783333333333,2.271815757575758,1.4716950000000002,1.768244,0.604725,173.92293262226255,0.5148606666666666,2.06908,1.0571199999999998,1.2298525,2.03002,1.4740725,1.96696,2.42267,1.7219625,6.71185,3.084665,3.451723333333333,1.68808,3.168025,1.2662266666666666,1.2662266666666666,6.34414,0.48225222222222225,2.3927825,3.4326333333333334,3.0725,0.8711772727272727,0.6122470588235295,1.257479794871795,1.0593636363636365,2.3580875,4.304995,2.116985,2.1114775,2.347843333333333,5.086345666666666,1.053488888888889,4.449965,3.5839,3.514885,6.58446,1.8260866666666666,2.50526,2.43327,3.904684,2.454785,3.30573,3.079425,3.42358,3.453485,3.11643,6.35552,2.918185,2.40021,2.976915,1.393405,2.80616,2.96623,2.90133,1.829225,1.733625,1.977855,4.57443,5.464689999999999,3.07507,2.774215,1.43776,4.38253,3.8398,4.153266666666666,2.90417,25.7079200291514,2.5719266666666667,2.705666666666667,3.1492,3.574666666666667,3.3901,5.720143333333333,3.1376000000000004,2.6279666666666666,3.476433333333333,3.4989666666666666,2.1153133333333334,3.3006333333333333,3.508366666666667,3.3247699999999996,1.7187833333333333,1.6907135000000002,0.592936,2.2259966666666666,2.136335,0.267019375,2.4683100000000002,2.856015,0.267019375,0.267019375,2.1893360416666665,0.267019375,0.267019375,0.267019375,0.267019375,2.9361266666666666,2.85144,0.6219023076923077,3.373173214285714,1.4830625,1.9896280000000002,5.369,4.3905925,6.3917775,2.1886925,4.95039,2.2302,2.8338366666666666,1.3769928571428571,5.919033333333333,2.8211066666666667,5.929139999999999,0.8972916666666667,1.296365,4.73925,4.758145,36.187505375402374,1.747718,1.3331733333333333,2.2169733333333332,2.4277875,0.9110636363636363,2.3614266666666666,2.5145566666666666,2.6534766666666667,1.9223133333333333,2.4729300000000003,1.6328300000000002,2.4860700000000002,2.289216666666667,2.14689,2.749363333333333,2.369266666666667,4.097045,3.5833999999999997,1.1799942857142856,4.479925,4.120495,20.114798444444446,2.7769133333333333,3.3838000000000004,2.6836599999999997,0.794048,2.9550859999999997,1.585579111111111,2.9550859999999997,2.2948333333333335,2.6771066666666665,3.0077866666666666,1.75782,2.1339125,4.491585,3.901175,5.3351,4.23765,1.7191759999999998,5.08535,1.61373,4.971315,4.0204532380952385,4.83825,0.7501627272727273,2.0421725,2.05588,2.901532,3.331525,1.119345,3.341935,1.9547219999999998,2.1401266666666667,1.039474,1.039474,2.4580766666666665,2.6995966666666664,4.365825,29.05721875,6.074015,1.8966566666666667,3.60591,0.3825533333333333,6.3339525000000005,5.9429,2.8640633333333336,3.2317,5.637305,3.74869,1.20580125,4.54665,1.25003,2.95981,4.72995,5.25995,2.07577,3.11391,4.593555,2.555255,2.934716,4.3327,1.29948,2.6158295833333334,3.90303,5.293475000000001,2.48847,3.1372,2.8025933333333337,4.28225,3.98877,4.101825,4.2179,1.72196,5.97025,2.562575,1.6809280000000002,3.99974,5.39757,3.94176,3.622365,0.76648375,2.957605,3.47306,2.004605,4.709849666666667,2.88382,3.80782,2.837616666666667,3.369866666666667,2.50656,3.384066666666667,3.0746800000000003,3.208876666666667,4.323605,5.50155,3.727015,1.668585,4.04203,4.15172,1.808185,1.83478,1.6930425,4.079721666666667,4.607585,5.405994375000001,3.94167,3.4316333333333335,3.68879,3.1641833333333333,1.5304033333333333,3.00385,3.289575,3.142055,4.786405,4.555185,4.4715,3.245165,1.85197,1.58821,1.428955,3.2931,2.40451,2.271095,3.367945,4.9811,1.67645,5.4249,1.4332571428571428,1.8643875,3.068075,3.267935,2.844405,3.720045,2.9952,1.514835,1.0100307368421053,3.506365,4.610575000000001,4.5922,8.884463333333333,2.8381233333333333,3.19581,1.57983,2.66223,2.7488733333333335,1.2557566666666666,3.1469733333333334,2.81564,3.3358000000000003,3.9890333333333334,3.2455,6.950808333333333,3.1431966666666664,0.7404036363636363,1.8338933333333334,3.324645,3.30339,3.301455,3.7138000000000004,2.704936,3.422045,2.63493,1.940646857142857,3.76265,2.6354994444444446,3.286615,2.21207,5.1621,4.82051,4.30945,3.45175,3.49505,0.9899011111111111,4.88221,3.058066666666667,2.872203333333333,4.55208,2.721276666666667,2.8346666666666667,0.40362000000000003,0.40362000000000003,4.44523,3.98986,7.0424,3.049665,4.856345,3.550795,3.2259,5.00415,4.409695,1.019945,4.007175,2.8018133333333335,4.375859166666666,3.0012033333333332,3.032900833333333,2.0558799999999997,3.3262810714285713,2.5849933333333333,2.9819766666666667,2.547423333333333,2.7549966666666665,2.1385433333333332,22.43538260671937,3.961,3.82353,3.95696,3.212485,4.82062,3.694435,4.709865,4.443165,4.17938,3.776605,3.819335,2.7450166666666664,2.936576666666667,3.1112066666666665,3.05013,3.19593,4.268185,3.45231,4.7202825,5.20325,4.330335,1.350912,1.477378,1.477378,5.2172,3.96991,2.745616666666667,2.49641,3.08085,3.582615,4.04783,7.940574999999999,3.22435,3.5448,3.1348000000000003,5.25355,1.6747333333333334,6.011850000000001,2.41114,3.1521899999999996,1.854775,4.10527,2.98146,6.69682,3.29947,2.550965,4.214005,4.423088666666667,1.48158,2.6902899999999996,1.6096000000000001,7.9024915,4.33218,6.9215366666666664,2.2769625,4.2348,3.85359,4.264265,5.30045,3.5414333333333334,3.5414333333333334,2.076725,4.381165,5.12695,2.68343,6.655438571428571,1.78786,6.01215,8.797109333333333,3.7009333333333334,4.168585333333334,2.2116333333333333,2.03123,0.5318375,4.48178,2.6564,2.73135,4.0251665,2.4624625,2.5817733333333335,3.748425,5.7996,5.2685,5.17725,4.92112,4.32739,2.2923775,1.0369818181818182,2.86385,3.134245,2.7179266666666666,5.20445,4.058535,3.19936,2.56546,2.00486,4.27633,0.99748875,5.21325,1.03928,5.4395,3.175425,4.981745,5.14577,3.09646,3.1689,3.176963333333333,2.3707366666666667,4.32619,3.5228,3.187465,4.183735,5.14195,6.057616666666666,4.870275,1.94456,3.664515,3.116805,5.410841666666666,1.7947525,1.7947525,2.7603166666666668,2.39641,2.627073333333333,2.928793333333333,0.8899779999999999,6.1816,3.65586,1.97014,2.273065,2.508215,3.592605,2.85957,3.63149,5.2033,5.56905,5.0729,6.24125,5.98715,1.3313125,3.952165,1.1194666666666666,2.60425,4.4085,2.553045,2.948175,3.164175,4.64195,3.7299,0.44993789473684204,4.56074,4.178295,5.0268,3.31041,4.834505,5.7544,4.33543,4.2221,1.86344,4.682505,2.029565,4.332033333333333,4.332033333333333,6.5751,5.67425,5.69115,5.1507,2.715245,1.6747333333333334,4.42192,1.94948,1.5875933333333334,1.881085,4.289835,4.113375,4.491355,7.72642,1.6748,5.42205,1.328185,3.09954,6.06355,2.026355,4.812955,2.9186833333333335,5.05235,3.42835,4.88002,3.4006000000000003,4.1158,4.02475,6.146,4.19209,4.340995,4.35898,6.06155,4.304335,4.612715,3.60403,4.367985,6.82808,3.506995,6.86529,3.14329,5.45135,6.549752727272727,4.66372,3.608745,1.814135,5.60135,3.915375,0.9331577777777778,8.30087,6.1653,5.37795,3.0837775,5.42335,2.80518,1.769118,3.790675,1.1209633333333333,6.2753,3.386735,4.463095,5.3621,4.478645,4.37824,2.0487533333333334,4.472965,5.45855,1.496505,7.58333,2.920475,4.06279,5.1296,4.75198,2.146825,4.53099,3.8741,4.07596,2.8778333333333332,3.92093,3.63967,5.52945,4.87532,3.354375,1.9275325,1.9275325,7.274173333333334,1.4535857142857143,5.42385,4.45151,5.12475,3.74731,3.743805,5.32955,3.842885,0.960875,0.960875,0.960875,3.818695,3.17205,3.68057,4.5712662222222225,2.763165,1.4325183333333333,4.450505,2.2129875,2.62744,4.078175,4.92631,2.2958825,2.19372,5.24144,3.948925,2.9572,4.36884,1.810245,1.9651225,3.3102033333333334,2.625315,5.22885,1.401742,1.6010680000000002,1.1107925,4.299495,3.490825,3.2200933333333333,3.105933333333333,5.54705,1.7131979999999998,2.03559,3.01104,1.7051285714285715,3.291225,3.472085,2.5105,5.87765,5.53755,2.64677,4.55203,4.05632,3.412125,3.711905,4.2511,3.47719,6.64809,5.50675,1.79119,1.8805666666666667,3.432615,4.73255,4.165585,3.872565,3.0983033333333334,4.23555,6.179,5.09225,2.6591,5.3665,3.89914,5.31835,8.410475,3.92624,0.7697072727272727,4.115945,4.293211666666667,2.43336,4.293855,3.857666666666667,6.0442,3.838835,4.49268,3.74697,4.699935,4.764825,4.51365,3.150615,4.137815,5.16855,4.093415,2.9339,3.25018,6.31073,5.415,1.96385,3.175845,4.257943333333333,3.792355,5.27175,4.567965,2.433596666666667,0.8478600000000001,4.557137878787879,6.564697499999999,3.57942,4.896835,3.5218,7.474853333333334,3.90301,3.720833333333333,2.94298,3.627,2.056785,3.434075,4.474405,2.531854,4.287565,5.98585,1.45361,4.966235,0.7089935714285714,6.4563,6.28855,6.3502,6.2562,1.7885,1.6731166666666668,4.535725,1.89921,5.70195,0.5332558333333334,6.22495,3.068835,1.4648020000000002,6.1467875,6.6015,0.7976725,1.8557845,1.3196059999999998,1.3196059999999998,1.3196059999999998,2.03448,5.1842,3.606155,3.420585,4.271525,5.4516,3.9138,1.961074,4.306585,5.19375,0.3052487804878049,3.93896,4.680405,4.583465,40.8698205530303,5.516000833333333,5.0272,11.411386666666667,2.94475,4.45623,7.562706666666666,3.099605,5.03315,4.16275,4.311945,8.904955000000001,3.84521,2.7667633333333335,2.67975,4.626295,4.10979,3.578605,4.400875,2.00265,4.43171,4.549175,6.904607,4.258695,5.16095,2.3535975,4.05209,0.51489875,1.39424,3.63656,6.52695,2.88292,1.2497466666666666,1.2497466666666666,3.201695,3.86303,4.56512,2.660935,1.7981566666666666,4.017255,4.60002,1.94901,3.33147,1.70117,1.8839666666666668,3.98033,4.43469,2.1711175,4.615065,2.4671475,2.055895,3.60785,3.716595,3.97693,3.74471,6.192634333333333,2.5564693333333333,3.714935,0.7087736363636363,0.6642483333333333,3.58573,2.114175,8.918116666666666,3.3993,5.18365,1.6607575,4.5561,1.5996766666666666,4.052865,4.3563,2.5426533333333334,3.875725,5.0411,0.4166525,0.4166525,3.7725333333333335,3.246893333333333,2.98345,3.862615,3.586325,5.4876,1.0108727272727274,11.1386,10.64179,2.07302,4.743705,4.79011,4.99067,3.482595,2.6896233333333335,2.1053,2.1839175,9.8210975,2.322145,2.64609,3.906638,4.68812,3.906638,2.468175,3.1036433333333338,2.9645566666666667,0.7303863636363637,5.6030525,3.139483333333333,2.8129633333333337,4.109805,8.9758,11.0393,4.312485,4.079275,4.293215,6.72019,1.9004575,1.4395125,26.838575833333334,4.373405,4.05123,1.04443,4.80975,4.059805,5.23745,4.7896,5.28425,5.88856,3.1274866666666665,2.0925433333333334,0.6740529411764706,0.7445966666666667,4.66079,5.1749,1.38335,4.453374999999999,0.9281333333333334,3.7500999999999998,1.4673333333333334,4.252455,5.984,2.04781,2.495295,2.52758,3.991215,2.86673,0.41647666666666666,3.880175,3.73075,2.994346666666667,3.288505,5.13935,3.0453233333333336,4.00367,3.137105,4.038545,8.735893333333333,4.927745,8.273035,2.724375,2.81936,4.383145,4.5293775,4.5981,4.119625,3.764185,4.864325,1.21165125,3.3768291666666665,3.156268642857143,0.638434,1.477378,1.477378,4.745165,7.876859999999999,0.8437,4.784015,1.0508433333333334,3.0456833333333333,2.5088233333333334,2.721473636363636,6.719781111111111,2.598523333333333,1.1511777777777779,2.6597066666666667,1.23342625,2.158443333333333,3.29379,3.03254,3.4529333333333336,2.4918766666666667,1.0508433333333334,4.651075,4.71698,5.5428,2.81826,4.27764,2.16406,6.03345,4.87184,4.742795,3.0280299999999998,3.768335,2.2052,1.7319175,4.302915,2.8295,4.79745,5.55105,1.647316,4.84703,3.0157166666666666,6.660083333333334,3.50502,3.255115,1.0508433333333334,2.55389,3.88949,7.583542333333334,2.5432966666666665,1.953326,2.5432966666666665,0.45357000000000003,1.20561,3.94729,2.75586,1.6771475,3.53683,3.570082,0.638627,0.638627,0.638627,8.558495,1.617298,0.7436309090909091,36.58132206709956,1.8862306666666666,0.6555566666666667,3.200115,0.6555566666666667,3.635895,2.022565,2.43985,2.6346766666666666,5.14675,4.32546,4.40753,2.5495266666666665,0.8667942857142857,4.362395,3.3745,5.2138,1.0154585714285713,2.91275,2.91275,3.80089,4.44762,4.018065,5.432330384615385,3.53059,4.8107,5.4107,1.936114,1.1296875,5.407,6.57845,3.814515,0.646455,4.60913,4.186436666666666,1.016615,4.38529,2.668205,4.161855,4.555295,1.8790876767676767,1.8790876767676767,4.481635,3.45336,0.8960944444444444,2.98381,3.0944000000000003,3.28398,3.928955,4.411205,0.4739757142857143,0.3324905882352941,0.3324905882352941,0.3324905882352941,0.8064663025210084,0.6442153846153846,0.675812,0.3324905882352941,0.3324905882352941,7.34175,0.3324905882352941,0.8064663025210084,3.42212,1.27691,4.69944,1.1618733333333333,0.6323453846153846,1.016615,2.582625,2.7597,4.093125,3.02216,0.3324905882352941,0.3324905882352941,4.305835,3.60746,4.37392,2.63806,4.055425,1.62778,3.66194,0.675812,0.675812,4.849095,3.024885,2.614015,2.66195,3.91371,1.06411,0.9057384615384615,10.368245,1.3291875,4.136005,4.80033,5.01135,2.0637,0.413635652173913,0.9120175,2.8418566666666667,3.46646,3.33699,4.570885,1.48647,6.1411,3.59474,5.2399225000000005,4.50107,2.91909,3.0669466666666665,6.875351666666667,2.76811,4.761265,4.05323,4.1644266666666665,6.07665,0.5514113333333334,4.42436,3.5073666666666665,2.241143333333333,0.6843622222222222,4.07058,4.25659,2.84832,2.371275,2.22267,5.18035,2.66878,2.82642,0.9930479999999999,0.4576346153846154,3.88043,0.34509666666666666,0.7644781818181818,3.88964,3.40738,4.45447,2.69333,5.34285,4.286955,6.226845333333333,3.63018,3.214715,4.48633,1.5353725,5.2103225,1.815512,4.21981,2.591475,5.986036666666667,2.52442,0.913252,4.652145,6.8610425,6.6856800000000005,3.4395000000000002,0.7898466666666667,2.9516666666666667,4.7354,4.05644,4.51871,4.578705,4.352815,5.19785,3.511675,4.201515,1.7268833333333333,2.24152,1.4013133333333334,4.21953,9.576730000000001,3.110935,3.471385,6.0113,2.96724,4.452975,2.4931966666666665,3.054312,3.29338,2.952855,3.6517,3.223255,3.354405,5.0751,5.91205,4.1581,4.84305,4.961045,3.88795,2.69028,5.39875,8.110625,0.8965444444444444,4.338685,4.098065,5.1377,5.7103,4.996365,2.311995,8.411380000000001,2.383766666666667,3.31911,5.93925,3.639045,4.030815,2.2275,1.735215,2.983836666666667,2.525726666666667,1.9941066666666665,2.9782833333333336,4.52063,4.589205,4.020535,3.466155,4.8636333333333335,3.344585,3.167655,3.9888025000000003,5.83525,3.007475,5.630223999999999,4.12515,4.408175,3.591035,8.03622,4.006755,3.633735,4.44723,4.980055,3.52988,10.8452,1.3907383333333332,2.009725,4.129585,2.759933333333333,2.759933333333333,2.033175,8.218326666666666,0.9225622222222223,3.30546,0.88291,2.03559,4.467735,5.2293,4.49188,4.51475,2.88041,3.47005,4.05428,3.81032,4.427175,3.06159,2.72533,4.231225,5.066349166666667,3.97658,4.5745,1.7393779999999999,1.5958640000000002,2.6578733333333333,5.6201,2.3177625,1.7092533333333335,2.0168,4.415015,4.855565,2.94801,3.35405,0.5630888888888889,2.351305,7.67339,3.124855,1.55874,0.812845,1.2919366666666667,1.65744,2.08996,0.7657866666666666,2.001376666666667,4.380433,3.95785,4.665925,2.3675366666666666,2.00209,7.700825,2.92945,1.7297066666666667,1.7297066666666667,1.7297066666666667,6.546333333333333,2.2508,3.50647,2.480405,0.493228,1.123524,2.2572875,5.5375725,0.44411222222222224,3.705785,3.9131833333333335,5.76855,3.0127355555555555,0.44411222222222224,3.0127355555555555,1.04731875,1.275136,5.7323,4.319485,6.8012525,4.19555,4.875175,3.93069,4.11088,5.15205,5.40255,6.1538,3.6764,3.38717,5.31615,4.660845,4.09804,4.50622,4.715915,1.3756516666666665,2.7718833333333333,1.235375,2.2754575,3.252457777777778,1.5411744444444444,7.1298200000000005,5.410841666666666,2.720571666666667,4.545555,3.04319,4.960715,2.82072,4.307715,5.1635,9.448654166666666,5.5598,4.661355,2.436285,2.665785,2.09502,0.538965,2.189830222222222,6.0533,5.41945,5.21475,4.90925,0.57092,2.016815,1.3910575,4.323965,0.7477915384615385,6.705315000000001,2.01313,1.1264,1.1264,4.031926,2.10486,3.256936666666667,2.6047,4.610085,3.58772,3.58772,4.803515,6.1798633333333335,2.8433233333333336,2.47823,3.31704,4.784,1.940778,2.7353666666666663,5.612,5.28,5.117,4.389125,3.9420266666666666,4.903925,3.571935,3.2602666666666664,2.405225,4.137985,5.47355,3.27553,5.08165,5.6811,2.0751,2.598856666666667,6.205,6.98865,1.411672,2.7776,2.48102,2.6945433333333333,2.47993,2.6446,2.6281315,1.0885411111111112,1.868175,2.73575,2.3605125,2.495496666666667,2.495496666666667,3.097514,3.0221,2.2714384615384615,2.78325,2.370425,2.09446,1.6190593333333334,5.2669274999999995,15.344420666666666,2.930873333333333,3.4143333333333334,1.730246,1.730246,1.66083,1.66083,2.9404333333333335,3.7658666666666663,3.0033166666666666,1.9266875,1.9266875,3.9177666666666666,2.7175433333333334,1.1333533333333332,1.4821285714285715,3.136066666666667,2.8670666666666667,3.7574,2.729675238095238,3.380333333333333,3.220743333333333,0.711695,2.70365,3.740857333333333,7.214395,4.742715,5.42875,4.460365,3.29892,4.721505,4.72351,3.1658899999999996,4.298615,1.4160233333333334,3.3686000000000003,5.7448,5.3985,2.622715,1.26557,2.793675,2.5837933333333334,3.1940733333333333,1.6135083333333335,0.7105164285714285,3.195373333333333,5.070340833333333,4.70991,4.30922,4.85085,3.0960966666666665,2.134796666666667,3.2890475,2.7815600000000003,3.4827333333333335,3.1453399999999996,3.5412,2.811833333333333,2.26451,3.8794,3.031803333333333,5.1871,4.923055,5.143775,5.143775,3.31216,3.90587,3.679795,3.712375,2.76831,4.818605,3.289015,3.3554333333333335,6.35035,0.7757416666666667,5.34455,4.734015,2.50732,5.589525,3.438166666666667,1.8792833333333334,1.3583542857142858,2.2899233333333333,1.05814,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.5529271428571428,0.5529271428571428,1.13597,0.8733466666666667,1.694930404040404,1.0142328571428572,1.0142328571428572,1.2010537373737373,0.4938766666666667,0.39633555555555555,1.1868025,1.4928775,2.5656333333333334,2.426485,6.729963333333334,3.0503033333333334,4.014765,3.1329833333333332,4.927390285714286,1.2590299999999999,4.67759,4.28245,5.11415,3.264625,1.4651,4.1198330769230775,3.60456,4.753575,4.586645,3.07549,5.22,4.535825,4.659875,1.213214,4.105615,4.61749,3.062285,2.3623566666666664,3.376535,2.416355,3.201225,4.74904,2.9668766666666664,4.81477,8.58586,3.1583,4.97678,4.582285,4.47359,2.736,4.626905,0.9927885714285714,4.105525,3.27323,2.03808,1.1472375,2.863705,1.3071166666666667,0.544026,3.628033333333333,4.15986,5.102203333333334,3.6979666666666664,2.532275,3.216025,4.942455,4.067699999999999,4.378125,2.7498,2.1294233333333334,3.842885,3.951435,4.26766,5.3153,4.647715,3.60163,4.848405,3.2561633333333333,4.4921,2.1487,4.777835,5.1469,3.1699,4.061875,2.46239,3.685985,5.72345,4.45292,5.44985,4.773655,5.05785,2.4889233333333336,5.1819,5.0041,4.991295,2.2669475,1.05391125,4.14128,4.855185,4.421885,5.1297,1.75142,4.171595,2.255325,5.25095,4.788645,4.709325,2.3685575,4.504955,4.886835,4.33939,2.7734133333333335,4.861025,4.93284,5.4463,4.03345,2.2669475,2.21272,3.223715,5.17115,4.067495,4.37727,3.57633,4.94868,2.338045,6.92681,5.53245,4.708365,5.384986493055555,5.1519575,5.3384,3.5315000000000003,2.4449033333333334,2.4449033333333334,4.16933,4.14957,4.420985,2.3241675,3.0348024999999996,1.0608125,2.9261133333333333,3.11321,2.6073233333333334,3.1364533333333333,4.39861,2.94732,5.3362,2.7366766666666664,4.589975,4.43487,2.020965,4.101675,1.67038,2.8740733333333335,4.0958,0.921842,5.43225,4.60699,6.3420325,4.6213,5.5871,1.3937485714285713,4.92023,6.62865,9.196195,3.3208066666666665,3.3000433333333334,1.960418,0.818966,3.938625,1.0196171428571428,4.852055,4.58852,5.6608,3.223345,3.92008,1.163347142857143,3.83682,3.54764,4.287495,4.26101,3.42456,3.151285,2.4016475,4.471015,4.829445,5.802,4.57266,3.693985,0.3484311111111111,0.3484311111111111,0.3484311111111111,0.3484311111111111,5.40835,3.05017,6.43705,3.2541466666666667,5.01075,4.613405,3.733365,2.25993,2.4695233333333335,1.44076,5.3319,2.9212933333333333,4.163415,3.804855,3.41271,1.677515,1.1819325,4.80146,2.35289,6.143068333333334,3.8613,5.27625,2.241075,1.5718516666666666,0.8521088888888889,3.240255,4.568075,3.62474,2.1486775,8.02904,4.778675,3.462275,2.27832,0.45523499999999995,2.99748,2.230125,2.03955,1.78968,2.79335,2.872875,2.346145,3.0736066666666666,2.67554,3.54741,4.66945,3.96695,4.228525,3.87099,5.891406666666667,0.6357726666666667,4.59164,5.68885,5.1773,4.76144,3.563466666666667,5.23085,4.69753,4.359935,5.662961666666666,5.53415,4.677455,4.74164,3.7130925,4.934205,3.24756,8.9088,5.14185,4.367375,4.96907,5.02375,5.73145,3.773345,1.1406444444444446,5.989583333333334,3.634025,5.07615,1.44306,4.45254,3.950905,7.150409999999999,4.761575,3.062605,1.9749733333333335,4.661415,2.0749199999999997,0.972185,4.488355,6.35945,1.8862433333333335,2.3262466666666666,2.80829,3.73865,3.51957,3.661285,5.333,1.7193833333333333,4.47148,4.0275615,3.306445,3.5887666666666664,3.607835,2.76736,2.579235,2.1300275,2.3976566666666668,2.66276,4.320575,0.5858933333333333,2.52554,4.227935,2.943075,3.645766666666667,4.58362,5.3264,4.32341,17.274086696969697,2.7207966666666668,4.072466666666666,1.51938,0.9097363636363636,0.9097363636363636,0.9097363636363636,0.9097363636363636,0.9097363636363636,5.1422,4.94875,5.0673,9.492177,2.57545,2.57545,4.76544,4.658131666666666,1.272865,2.2733866666666667,4.160955,2.4998,2.4375725,2.3096575,3.14071,3.8123413333333334,1.952515,3.604975,0.8193785714285714,3.021236666666667,3.0160533333333333,3.0477133333333337,1.4177666666666668,3.16928,2.4137166666666667,1.0001325,2.75217,2.69928,1.2992777777777778,2.5231133333333333,2.840953333333333,2.149626666666667,4.553779333333334,2.0008166666666667,3.0614666666666666,2.1584,2.6938866666666663,1.1488222222222222,2.9034766666666667,4.796558666666667,3.6616999999999997,1.08873375,3.21039,1.3729075,2.59072,2.4273366666666667,4.802791666666667,3.121843333333333,2.5298366666666667,4.672951333333334,2.59617,2.08709,2.9232333333333336,2.689156666666667,1.7032233333333335,2.8305166666666666,3.232006666666667,3.2062066666666666,2.69468,3.20975,2.66544,2.587125,3.7854905,3.7854905,2.8310766666666667,2.0351233333333334,1.8139533333333333,2.8411000000000004,5.340673333333333,3.124753333333333,1.94646,1.7575825,3.0937699999999997,4.46766,2.401806666666667,1.102812,2.6869786666666666,1.56451,3.31043,2.1534066666666667,2.475496666666667,2.0801433333333335,3.2556700000000003,1.2083439999999999,1.50936,1.54051,4.238,2.4841,4.04103,1.0847144444444445,4.03631,2.0425633333333333,2.357715,1.794612,1.6937,3.3411000000000004,23.992392012987015,7.714066666666666,2.5883266666666667,3.530430833333333,2.6514433333333334,9.895061333333334,2.9994633333333334,1.00688375,2.5269666666666666,2.3697933333333334,1.9692266666666667,2.97954,2.6073999999999997,2.469656666666667,0.9442109999999999,3.25371,2.496096666666667,2.906893333333333,3.0548133333333336,2.7027066666666664,2.065916666666667,2.15381,2.7426766666666667,2.551276666666667,2.08378,1.5872439999999999,5.4709216666666665,4.653205,2.372505,2.9679,2.194923333333333,2.370223333333333,8.1391125,1.92617,5.00745,2.370825,2.006855,7.55581,3.032306666666667,2.8566133333333332,2.576675,1.873828,1.5376453846153848,3.2724533333333334,3.3342333333333336,4.11836,1.334445,3.6886666666666668,1.515935,1.515935,4.40236,4.80516,2.9072671428571426,2.9072671428571426,6.30472,3.405665,0.43620099999999995,12.17148170940171,1.1809100000000001,0.9410499999999999,3.9801125,1.4628483760683761,2.0250275,6.364363333333333,3.798495,0.7397290909090909,2.10229,5.122964606060606,2.511112,4.39609,1.35033,5.43565,5.2764,5.0926,3.41293875,1.9988499999999998,2.5330833333333334,2.5254066666666666,2.7371833333333337,2.28674,5.2285900000000005,4.81437,4.48002,1.845385,4.81965,4.423985,3.1686633333333334,2.21412,5.192,2.615533333333333,9.044016666666668,6.95125,1.996105,2.08863,1.7253219999999998,4.621066666666667,4.621066666666667,3.1379900000000003,3.0812633333333337,3.0882166666666664,4.964025,9.715285000000002,4.555835,2.46972,5.45795,4.638435,5.481,2.03082,0.8473325,1.3174716666666666,4.575255,4.815545,3.743,3.0116566666666666,3.8945666666666665,2.18566,4.43157,4.773805,3.30007,5.4728,3.3363333333333336,3.864268666666667,3.3582,3.366733333333333,3.5496,6.2616,2.957025,5.3633,5.11905,3.415965,3.35545,3.35545,6.142386666666667,12.1655375,3.6904,6.2357275,7.468496666666667,3.472655,2.497196666666667,3.837475,1.3291233333333332,3.86462,2.3388675,2.9721333333333333,3.1218333333333335,3.4679333333333333,2.1738,2.3884766666666666,2.8441833333333335,2.4389600000000002,3.1709366666666665,3.042536666666667,4.190665,2.4570633333333336,2.9225333333333334,3.969765,2.9389266666666667,2.58452,1.18138875,2.04583,2.9346599999999996,2.54403,2.6883466666666664,2.3420733333333335,3.6253333333333333,2.37228,2.5045566666666668,2.7935533333333336,3.0919833333333333,2.8332466666666662,3.088926666666667,2.75426,3.3052733333333335,2.871513333333333,3.2880659999999997,2.6559166666666667,2.489056666666667,2.4238766666666667,2.8972366666666667,2.7491633333333336,3.4186666666666667,3.3113766666666664,2.44002,2.0103,2.0103,0.6682316666666667,1.58976,4.5453,3.10166,2.62733,2.1738,3.3152000000000004,1.3086642857142858,2.8702400000000003,0.585202,3.5414,3.144883333333333,3.27912,2.9852266666666663,2.795776666666667,2.82302,2.9861299999999997,2.71551,3.5374,4.82664,1.5881180000000001,2.8847199999999997,2.6184,1.7851299999999999,2.0696233333333334,2.883836666666667,2.89416,1.69477,2.536513333333333,2.5309133333333333,2.7996366666666668,2.68501,2.9906633333333335,2.99564,3.19727,1.3018925,2.8150766666666667,2.256186666666667,3.6796,3.9875333333333334,2.2671,2.0603366666666667,3.4832,2.7408933333333336,3.3739000000000003,2.5442066666666667,2.6569233333333333,5.3995999999999995,3.4403,2.0930466666666665,1.480884,3.3495333333333335,6.39663,3.1290600000000004,3.624366666666667,2.995086666666667,3.12982,4.523425333333334,1.5373620000000001,1.164488888888889,2.3878066666666666,1.8179983333333334,4.74979,3.1430633333333335,3.3396333333333335,3.10929,3.3387333333333333,2.5195366666666668,3.6473,2.5521,1.638996,3.0048366666666664,3.478315,3.57046,3.49469,3.83452,1.7512725,3.021475,3.42189,3.653035,2.5456166666666666,3.8619333333333334,4.042433333333333,3.8181333333333334,1.59418,5.469094,3.24872125,1.5341333333333333,3.64511,3.499065,2.849295,4.20606,1.882508,1.882508,3.2642933333333333,2.89472,2.86229,5.2192,4.28712,4.435536,1.212386,3.201256666666667,2.786043333333333,4.3713774999999995,3.1997,5.075693333333334,2.679816666666667,2.43869,2.62712,3.512675,3.288565,1.610288,3.0435199999999996,2.999145,2.458435,4.589005,1.3613566666666665,2.93343,4.120175,2.61261,3.454245,3.88009,1.57241,1.4981033333333331,2.4672,1.1787716666666668,2.1872430952380952,1.97498,0.4681985714285714,4.22159,2.478095,4.992075,4.513225,2.855955,4.653214166666666,3.537433333333333,3.1256799999999996,3.6143666666666667,2.71599,3.4815,2.8534466666666667,3.3496333333333332,2.4501233333333334,0.7013046153846154,2.301806666666667,0.6432214285714286,1.8674033333333335,2.35372,3.1512533333333335,3.2634966666666667,1.5346633333333333,1.440065,4.27297,4.722155,3.54437,3.9930149999999998,3.00514,2.30142,4.099185,8.00915111111111,3.826575,5.71697,1.735615,3.81154,2.1252725,4.174325,3.748125,2.294395,4.140935,3.499175,4.126245,4.491995,2.16389,4.32441,6.5362225,5.17495,3.41337,3.406205,1.70907,2.1135775,3.96883,3.370745,3.05423,3.848175,3.773395,3.87737,1.640895,4.03986,3.433265,1.89939,4.4000375,1.039575,3.546515,1.697805,4.037945,4.716236666666667,3.71791,3.04188,3.63634,3.47484,2.0445625,2.26032,3.947366666666667,2.55069,5.9951725,4.352165,4.48719,2.613485,2.72573,4.84631,4.497935,2.467654,2.467654,6.090502333333333,4.1076515,2.8517775,2.98157,2.1543733333333335,2.85823,3.504985,3.7734950000000005,2.8720765,3.453125,0.9715820000000001,3.91937,3.23709,4.2286,2.63698,1.616585,1.588675,3.35401,6.048045,5.6645675,3.55099,1.6556325,4.25581,3.842375,0.8788416666666666,3.16406,1.413546,5.2148449999999995,1.52829,4.146915,2.1758175,1.5346633333333333,3.374235,2.969095,4.500895,6.7972649999999994,4.39556,4.918228333333333,2.407605,3.03418,4.39184,4.081415,4.444525,4.437995,1.152755,1.6907135000000002,1.0977775,2.61659,2.008215,4.78366,1.0977775,4.463575,2.35301,1.6932675,1.6932675,1.89939,4.19981,4.51791,4.054055,1.621798,1.621798,0.9558516666666667,3.224125,2.0865275,6.0108875,4.495675,3.908305,3.020773333333333,0.9984185714285714,3.433655,3.122995,4.21812,3.74227,4.2486275,4.2486275,3.38526,4.02159,1.9352725,3.027795,0.9892877777777778,2.11657,3.804075,2.5640133333333335,3.4727333333333332,3.4727333333333332,2.98073,4.4896,4.73379,3.481825,3.7462,3.96227,2.667666666666667,4.663234166666667,3.021805,4.22385,8.50715,5.1561,2.60361,3.207065,3.00935,4.71125,3.2551360000000003,7.675475,4.869286,4.882345,3.615085,3.86506,3.860435,4.604895,4.70712,2.10527,4.46913,6.961206666666667,2.725995,2.19825,3.207635,3.276905,3.944655,5.8585,2.1112266666666666,2.4936666666666665,3.21554,3.41255,3.27335,7.818102666666666,1.6753025,4.902826666666667,4.902826666666667,3.602205,4.271645,3.196575,2.7715300000000003,5.62662,4.681641,2.205816,3.923725,4.325785,3.4330675,3.19328,3.20801,6.597636666666666,3.30786,5.35915,3.35452,4.86724,4.16456,3.97252,2.89472,2.2062399999999998,2.897015,3.985165,2.99811,3.4653283333333333,2.85714,6.44072,2.746095,1.9137225,3.3926991666666666,2.3525199999999997,4.269965,2.68087,0.8788416666666666,3.49004,3.972795,3.85093,5.734235,3.34355,3.2133,2.960013333333333,2.960013333333333,3.8907641666666666,4.510295,3.95767,2.0998475,6.2798925,2.073705,4.541695,3.726535,7.94559,2.7264,1.2610933333333334,3.25014,4.445465,0.704765,3.99629,3.570225,3.054075,3.02076,4.30774,2.09896,2.53571,8.96562,3.39515,3.28254,1.52829,3.858855,2.81339,2.59737875,4.308725,5.40883,1.61922,1.2814733333333332,1.178915,4.155935,4.509675,3.75883,3.53713,3.53713,1.640895,2.300825,3.3482411111111112,0.9517211111111111,3.26086,1.1629075,1.7512725,3.55574,3.547155,3.01541,2.730185,2.8324391666666666,4.61269,4.101885,3.180525,2.970935,2.867235,4.33628,6.77151,4.051455,0.937705,2.571498,8.56325,4.56459,4.11006,1.107705,4.992035,1.4187333333333332,3.983345,3.983345,3.965525,9.421595,0.9568944444444445,4.74147,4.59329,2.52795,4.406289166666666,3.904365,2.1628325,9.884249666666667,1.904325,2.440183333333333,3.598785,1.73879,4.232114666666666,3.546975,3.670985,3.8023873333333333,3.17165,3.2379,1.2243333333333333,7.01364,4.27647,4.015295,4.147935,2.058495,3.04188,4.368479166666667,3.89507,0.6743384615384616,4.142925,4.387315,4.911915,2.1145425,1.516334,4.33846,4.10283,9.40953,0.7240115384615385,0.7684975,0.7684975,1.9138533333333332,1.2878166666666666,1.468026,1.7370766666666666,4.64742,1.3167133333333334,0.8156057142857144,4.0661425,3.40935,1.47053,3.414025,4.946805,4.053195,0.8146979999999999,1.992755,10.11987,3.2191983333333334,3.707615,3.347635,1.7723475,2.5091533333333333,2.60312,4.59223,4.40875,3.81885,0.956782857142857,1.501042,0.9207879999999999,4.491345,4.293015,4.04283,0.9517211111111111,1.737826,4.05853,2.4568978571428572,5.201509166666666,1.1103925,4.67634,0.5667283333333334,0.5667283333333334,0.5667283333333334,9.874600000000001,3.977005,1.1629075,3.90555,4.735185,2.843165,3.441745,5.2458350000000005,3.14213,2.090876111111111,2.2325566666666665,0.8146979999999999,1.6935396666666667,0.5883111111111111,0.7862933333333334,1.53604,4.062335,3.60336,2.108165,7.421053333333333,4.7220375,0.66684,6.07895,5.293436666666667,3.58245,4.510425,7.287197,3.9580289285714283,4.7220375,4.411187,2.5379733333333334,4.251765,3.799895,7.548235,3.48142,0.45523499999999995,1.53141,4.074555,1.7289359999999998,1.2814733333333332,3.937995,2.38677,1.66513,3.28444,1.6579339999999998,4.39362,4.26197,4.04497,4.76901,6.67578,2.56894,3.89927,1.413546,2.412705,3.78622,3.31922,2.205816,4.11448,2.504055,5.186,2.83858,2.32364,3.3886275,1.757518,3.71496,0.9517211111111111,2.180347,1.178915,1.47036,3.615785,1.6753025,1.53604,2.1816025,3.36662,8.16881,0.956782857142857,1.107705,1.451702,3.61415,3.832245,1.451702,3.84566,2.412705,0.704765,0.9517211111111111,1.9138533333333332,1.413546,0.4681985714285714,1.610034,4.319146,2.52795,1.3847333333333334,3.355715,1.59418,1.904325,2.86394,2.2325566666666665,5.0335,2.86394,0.8788416666666666,2.810838,2.30863,0.08414,0.08414,0.08414,0.08414,0.08414,3.30456,2.749093333333333,2.843593333333333,3.05745,4.65604,4.266445,1.794612,3.669285,3.54681,2.157055,4.88123,2.657825,2.51046,2.35433,2.710315,4.63812,8.33278,2.3956825,2.04577,3.0796907142857144,0.9833657142857143,1.3435416666666666,2.236076666666667,2.18914,1.5243875,2.676486666666667,2.2383466666666667,2.646576666666667,2.7436000000000003,2.6142233333333333,3.733035,3.813075,2.64277,1.382696,3.802125,3.71512,1.56332,1.342408,1.342408,1.342408,3.6246,2.9136900000000003,1.0518033333333332,2.3012533333333334,1.3476985714285714,4.12581,1.7212833333333333,6.843376666666666,3.43741,2.737486666666667,3.12475,3.12475,5.2585766666666665,3.075285,4.86594,4.99302,2.2137775,3.2080633333333335 -GSM1946765,1.0,1.96234,1.96234,1.5175599999999998,5.3527,5.47575,2.7387888157894738,1.68821,8.430304289215686,4.9983,3.0273866666666667,2.725165,2.110435,4.2073,4.481535,1.9608940000000001,1.43835,5.1943,2.4100266666666665,2.45234,5.66265,5.455121666666667,3.95401,2.409155,1.828334,4.84439,4.96918,4.110635,0.7227866666666666,1.6280758333333334,2.0688016666666664,2.29727,2.552575,1.2668557142857144,0.7018783333333333,3.2900807142857147,1.5289,2.0240675,1.142585,2.0511875,1.045935,1.05116,1.0945880000000001,1.6447980000000002,0.87774,0.916976,0.771352,1.2738671428571429,1.74151,1.8019120000000002,1.50408,2.2035,2.01534,18.246122583333335,0.3672773333333333,0.79637,1.1213,1.6266200000000002,1.861394,1.9627120000000002,1.0478828571428571,1.0478828571428571,1.0478828571428571,1.1445633333333334,1.093342,4.634555,1.1844525,2.1823075,1.966,2.669225,1.0804399999999998,2.4168275,2.17641,2.126945,1.4202075,1.87145,1.5653275,1.6383475,2.4674066666666667,4.320695,5.0079,5.08855,1.52856,4.50313,4.562656666666667,4.02352,3.996475,1.13733375,7.2781,0.60093,0.60093,2.18284,1.1995157142857145,16.776600000000002,5.1323,4.677955,4.82556,3.87312,4.126175,5.21665,0.524675,2.303244583333333,1.6985125,2.3042275,4.47796,4.676535,1.3792625,2.709903333333333,2.5432133333333335,2.28306,3.000946666666667,3.158765,5.1583,2.8118464999999997,4.72506,3.217423333333333,0.72806,1.48477,2.201275,4.483755,3.394265,0.58121125,3.650055,3.98293,0.81719375,4.33839,1.7837459740259738,2.136485,2.3579225,2.009135,4.094795,5.23455,3.32762,2.774853333333333,3.154446666666667,2.85667,4.05411,3.132433333333333,5.76525,3.449225,4.424535,3.585615,2.625975,3.536755,2.5562,6.910313333333334,3.74638,3.47672,3.84722,3.3126,4.807405,0.7458977777777778,9.351244523809523,3.736565,2.2339033333333336,1.8067449999999998,3.554766666666667,2.26864,4.485505,5.87685,2.08622,4.661333333333333,2.76377,5.2594,2.08622,2.2506733333333333,4.43459,5.142200833333334,4.81269,8.45537,3.26732,4.396075,3.07045,5.55255,5.04935,1.6577133333333334,8.10611,4.515045,4.29876,4.313245,3.568375,3.548485,2.15001,6.11914,2.31082,3.63235,4.08571,5.29515,4.83106,3.736555,1.6974666666666665,2.700045,2.91937,2.0089725,2.0089725,5.93410019047619,3.01527,1.93847,5.18275,4.610675,2.738565,1.4753516666666666,1.116211111111111,6.8324,2.69849,6.8578,3.928925,5.13845,3.79922,3.24133,3.98709,3.59324,3.74967,4.161705,5.8968,2.743745,3.552665,9.08863,4.52012,3.3947333333333334,3.0971966666666666,2.7353233333333336,3.8950333333333336,4.613439166666667,1.9086125,2.7911633333333334,2.4640933333333335,1.7814,1.5875533333333334,2.619543333333333,1.8128375,2.307725,2.9829933333333334,2.7264199999999996,2.4004666666666665,2.9334466666666668,4.562656666666667,3.52639,3.39901,3.465805,4.78444,1.3662383333333334,1.961505,2.886991714285714,2.16158,2.5342066666666665,2.9842666666666666,3.404,2.02938,1.34454,2.7316066666666665,0.657212,1.6145433333333334,0.48880666666666667,0.48880666666666667,1.5823,3.939,2.4828933333333336,1.3430866666666665,1.48691,0.44835846153846154,2.6672266666666666,0.657212,1.2464166666666667,0.22183000000000003,1.4323066666666666,2.02743,3.784966666666667,2.6706566666666665,2.5699366666666665,2.5108566666666667,2.4051833333333335,2.405746666666667,2.446356666666667,2.3485666666666667,2.168066666666667,2.7189266666666665,1.89009,2.630075,4.24863,0.7379116666666666,1.8372133333333334,2.78504,2.2412466666666666,3.4748566666666667,1.488836,2.5233066666666666,2.6395166666666667,4.233256666666667,1.9786333333333335,6.535425238095238,1.6424285714285713,2.52996,2.0603625,2.05069,3.8110999999999997,2.025565,1.892035,4.870225,2.703656666666667,1.99999,3.94956,4.337945,4.18623,3.8086,2.330345,3.23106,5.3296833333333336,3.992625,3.837655,4.228845,4.13848,2.993785,4.443385,3.41432,0.8884925,4.672885,1.2713666666666665,5.0937,3.71728,6.3054369999999995,3.901055,4.115445,0.96419125,2.17618,3.52404,4.00553,0.9824742857142857,1.3429500854700853,2.2328838095238095,3.2429251428571426,5.0891475,5.83474,2.1575825,4.100305,5.72355,0.31309928571428575,3.72021,2.31701,0.9954025,3.976485,1.98423,13.21445,1.130665,1.7330825,3.116546666666667,2.513735,2.2399955263157896,4.924430526315789,0.4521305263157894,1.63129,3.1044699999999996,1.0197975,3.646266666666667,0.90766,5.35825,3.764375,2.115883333333333,6.00575,5.47975,2.1334775,1.1653042857142857,4.39823,5.2234,4.35836,0.9324272727272728,8.250783333333334,2.8896833333333336,4.63614,2.6618,2.53201,4.541505,2.4935666666666667,3.0312366666666666,2.2353433333333332,2.4642933333333334,2.901865,3.0425466666666665,0.333534375,3.92809,3.7054,3.809495,3.82188,4.507945,6.22309,4.056155,1.6514775,5.8529,4.89064,4.027585,4.836895,1.3653266666666666,2.7825933333333333,3.6834000000000002,2.6400099999999997,17.081015,4.35997,3.896745,3.72302,4.8652,2.46142,5.224034583333333,1.9826175,0.7661766666666667,2.570775,3.574705,4.342355,3.649535,6.566610000000001,3.0508133333333336,2.158005,2.154245,3.4222333333333332,4.755815,2.3380425,0.37804436011904763,2.3138301086956523,1.914525,1.13105375,0.4682206644668737,0.5583969688146998,0.37804436011904763,0.37804436011904763,0.37804436011904763,1.07477,1.3821975,0.87976,1.45272,4.5753375,0.2227608823529412,11.314860817099566,3.242156666666667,2.8955033333333335,4.58272,4.13485,4.043055,2.054895,5.19545,4.190479,4.697295,4.425295,0.7376823076923077,3.08624,4.003066153846153,0.5035278571428571,3.42432,2.9494233333333333,4.58921,0.7953154545454545,1.76929,4.259705,3.39252,1.884205,1.76697,1.6496933333333335,3.1372133333333334,3.90734,3.01446,2.886566666666667,5.5001,5.6502,4.6921,3.0688,3.89125,5.565366666666667,3.0408666666666666,5.21055,0.39924809523809524,3.21604,4.182873333333333,1.9634733333333332,2.61288,2.770496666666667,5.668943333333333,0.6402058333333334,1.95606,4.835795,3.974915,1.0273428571428571,4.335165,4.861225,5.0478,3.3549333333333333,4.49969,3.443425,4.272975,1.2538466666666668,3.263455,2.7329600000000003,4.809765,3.71115,4.699675,5.34705,4.488745,2.67146,4.75502,2.2294199999999997,2.887315,3.5581666666666667,2.6475233333333335,2.58608,2.3160766666666666,1.755604,1.6044566666666666,1.9387966666666667,0.7985185714285714,1.5923166666666668,2.142846666666667,2.0641666666666665,3.214536666666667,3.4539666666666666,2.8230766666666667,0.9608344444444445,5.41555,3.3717,5.623606666666666,2.8585066666666665,3.2093233333333333,3.6483666666666665,1.8328,1.8328,2.8259961038961037,2.8259961038961037,4.240986818181819,0.47133,1.7599433333333332,2.45616,3.5016,2.195708571428572,2.195708571428572,2.195708571428572,7.567139107142856,4.508919047619048,0.9500545454545454,4.394125,5.007109166666666,2.03016,4.741755,3.2684,2.302865,5.65165,3.0127633333333335,3.4974333333333334,1.4754875,1.8200399999999999,2.6730733333333334,2.7495,2.6927466666666664,5.2015,4.096633333333333,3.5731,4.75528,1.8637833333333333,3.1073566666666665,2.959986666666667,1.0276555555555555,2.2139,4.099627333333333,7.9281825,1.4157825,2.99936,4.90443,2.0496,1.97013,1.97013,1.03120125,5.4783,7.81495,4.05622,6.69548,4.486225,1.8507,4.08399,3.679605,5.60335,4.586521666666667,0.3761715789473684,2.973925,2.594445,4.09164,3.935445,1.8347460000000002,1.9313375,2.610675,4.39361,4.025425,3.179725,2.50771,1.666386,6.76783,4.39346,4.15831,3.56336,4.1484,4.61998,4.954465,3.66049,3.5548075,1.930325,1.2506685714285715,2.626345,3.856945,4.59899,5.4851325,5.5597449999999995,1.963285,1.9599233333333332,2.59008,2.7379433333333334,2.9242866666666667,0.6089214285714286,2.167405,3.52329,1.1199875,5.3344,3.14518,6.1773475,1.2919969696969698,1.2919969696969698,4.282195,3.685865,3.80804,5.33055,2.7124966666666666,2.21659,3.987885,3.386295,2.07743,3.3752999999999997,2.6945200000000002,3.984365,3.7249625,4.03465,4.714575,0.9692322222222222,2.50102,4.50016,4.089135,3.205665,2.44666,1.595955,0.72634,0.72634,0.72634,0.72634,1.4882633333333333,4.28482,4.28482,1.5107466666666667,7.88574,4.022255,4.617715,3.2136833333333334,2.726225,4.82131,3.957835,4.84201,5.72375,1.6905725,4.308195,4.180455,2.7238,4.663405,3.36101,2.579185,4.50927,1.90305,4.781875,1.7073,3.5341429166666667,2.98746,1.7666675,1.1671933333333333,3.030345,4.54718,1.391216,0.83943,3.506955,1.2294975,4.894693999999999,4.57899,1.3858228571428572,3.58703,0.7524055555555555,2.566943333333333,2.69688,2.3927433333333332,2.710035,4.171915,3.0749825,4.61746,5.0697,4.50504,4.48081,2.0364175,1.2632171428571428,4.082985,5.21085,1.2942425,1.2942425,4.01037,0.23344866666666667,2.0357533333333335,0.23344866666666667,0.23344866666666667,0.23344866666666667,0.23344866666666667,5.1334,2.6804633333333334,3.28281,3.31887,3.1042533333333338,4.488145,3.07687,0.94296,0.94296,0.8222,0.8222,3.68107,2.29072,3.793025,1.6355342857142858,1.6355342857142858,5.01003,0.55645,2.2023175,7.834813333333333,5.3219,3.145625,3.729225,1.010045,2.271285,1.952205,5.02485,4.429615,4.261415,3.79199,1.2873999999999999,2.667,2.1250725,7.35303,1.80876,4.281665,4.79369,2.62311,3.870815,6.24326,7.28975,4.09651,5.1387,4.015,2.1647575,3.53439,2.25626,2.30785,1.751845,3.82561,3.383325,5.901935,6.73369,4.611835,1.08121,1.723805,4.35348,4.35375,2.14815,4.62559,4.18959,4.5398000000000005,1.7294266666666667,3.6998333333333338,1.5533266666666667,6.474213333333333,2.736753333333333,2.38978,2.18064,2.383345,3.32827,3.2779666666666665,3.5109999999999997,3.2126633333333334,3.3510666666666666,1.5587339999999998,4.80905,3.11056,3.464755,0.370089,2.87109,4.095865,2.633475,5.5808,4.83179,4.81192,6.666987000000001,5.1368,2.1849666666666665,4.251735,4.95064,1.5951183333333334,5.2322,5.28705,5.01625,4.651055,3.237755,5.40355,5.1755,4.5406,5.558906666666667,7.8411475,3.89649,1.2013283333333333,1.5523433333333332,2.7197,1.787722,4.578705,4.089055,5.61306,2.543203333333333,2.709303333333333,2.710323333333333,2.46206,2.5568033333333333,1.0635744444444444,0.5062423529411765,3.92209,3.992945,3.548166666666667,4.05027,3.015395,3.2313899999999998,5.874916666666667,3.5015,0.6075411764705883,3.129905,5.6174,1.980065,1.5815860000000002,3.78032,4.145435,2.4055866666666668,4.0584,4.90384,2.65078,2.28367,2.25739,2.4549499999999997,2.67311,4.10245,5.057805,7.56319875,2.1178999999999997,5.2313,3.7425216666666667,5.978968333333333,3.037686666666667,3.179625,2.26748,1.9769466666666666,1.3085625,1.3085625,2.58942,2.3769466666666665,2.6788333333333334,3.92551,1.674042,2.2611,1.79334,0.6403,4.278295,0.641405,0.97668875,3.467685,4.45942,4.43677,1.67134,5.1438,3.1223566666666667,0.8626785714285715,4.47639,3.9760704761904764,3.5678666666666667,2.480925,5.04515,0.2873379310344828,2.3866315,3.57257,1.4461275,3.644855,4.80044,2.38088,1.3087733333333333,3.7501,3.7085,2.83394,2.83394,3.458865,4.43398,4.80181,4.925471666666667,5.0811,1.0004844444444445,2.59308,2.634576666666667,4.489345,5.18265,4.669505,4.73579,4.4148000000000005,3.972433333333333,3.8260666666666663,3.588533333333333,3.8491999999999997,3.1924799999999998,3.1445133333333337,0.6745814285714287,2.4537,2.4588725,4.566035,3.0339899999999997,3.2156599999999997,0.7472633333333333,2.449035,3.5831685,4.55452,5.61775,4.060115,2.2775025,2.2775025,0.843545,3.58027,4.48246,3.956065,5.3598292857142855,2.97966,5.17175,0.5787518181818182,3.94177,4.282105,5.1254,3.569411666666667,0.9096185714285714,3.69182,4.10659,5.14495,3.74382,5.0589,2.818765,4.18024,1.702795,1.0061671428571428,2.71331,4.91032,3.70967,3.0969,1.59472,4.011665,2.525425,2.755375,2.745009555555556,2.96016,4.47373,2.7121933333333335,1.8058800000000002,3.4779,1.4567947619047619,2.711933333333333,2.5499566666666666,2.25813,2.91446,3.0616333333333334,2.5657099999999997,3.1686333333333336,4.285925,2.79517,3.540367,2.2020433333333336,1.9056,4.181526666666667,2.7626000000000004,2.42891,3.540367,2.3845199999999998,0.814789090909091,2.4294325,0.9983244444444446,2.2680225,1.5882525,0.8827290909090909,1.6142475,2.034525,2.7084177499999997,2.669525,4.80782,1.44458,3.65958,3.239046666666667,1.59555,2.3481533333333333,2.99757,1.4620466666666667,2.796483333333333,3.0187066666666666,2.829779090909091,2.27965,1.834384,3.6480333333333337,2.5292566666666665,2.7166883333333334,3.2733633333333336,2.7808533333333334,3.848266666666667,2.1959433333333336,4.2793,3.6747666666666667,3.7142999999999997,3.1634266666666666,3.5827666666666667,3.5742333333333334,2.0148966666666666,8.747005,4.57592,4.53434,3.34513,2.815205,1.994205,3.906505,1.772786,4.227555,5.02875,1.4662739999999999,2.520236666666667,1.3110616666666666,2.8721666666666668,1.7224766666666669,2.4707433333333335,4.897573333333334,3.4171333333333336,3.592635,4.77048,0.8032925,1.523458,1.00783,4.00798,10.935341666666666,3.969666666666667,6.64215,1.9675525,5.3141,4.093685,2.4568975,5.17415,0.27724941176470586,0.8226685714285714,4.675715,4.71137,6.9491025,2.1619475,4.431005,5.0154,4.517565,4.97205,4.13097,4.491565,2.887625,5.5318233333333335,4.43089,3.55218,3.201965,2.0186966666666666,1.8629966666666666,1.3749342916666667,2.2944366666666665,4.079605,5.2061,1.53352,8.94444,1.7684333333333333,2.7441675,1.066532,1.066532,7.51346,2.97524,2.52335,1.942895,2.7372566666666667,2.130666666666667,1.1110900000000001,3.0218533333333335,2.761646666666667,0.6744071428571429,1.74645,3.529588,3.529588,1.1728033333333332,2.4955000000000003,2.26456,2.8832216666666666,1.3143525,1.7361033333333333,4.778728666666667,2.758093333333333,2.6787,1.3038625,1.3038625,4.440525,5.4938,4.924125,4.06128,3.82967,5.84386,2.783735,3.2232133333333333,3.7001666666666666,3.904475,1.1411633333333333,3.4873,2.903975,4.013825,2.102726666666667,4.7444,3.432775,4.35494,3.51406,5.578127,1.0470711111111113,2.0683175,1.746185,3.50583,4.5236350000000005,3.58469,3.807925,4.324975,3.53542,1.6835,4.52847,3.95253,3.61539,2.4150133333333335,0.82634,3.255625,4.5986,5.0161,1.1934799999999999,3.1924499999999996,2.9623899999999996,1.9740666666666666,1.777949411764706,1.777949411764706,1.17722,2.61647,1.1705457142857143,1.370716,4.528945,4.93783,0.519204761904762,3.89437,3.5606000000000004,4.00493,5.6275,0.42302249999999997,9.365745,5.71235,3.987035,3.83199,4.89853,5.714702857142857,5.08765,6.3495325000000005,0.7405536363636362,2.620366666666667,5.5786,2.6509300000000002,1.962585,2.05304,4.97026,5.17539,2.490915892857143,2.7712766666666666,3.5197333333333334,1.4940625,4.852035,9.849245,8.657204166666666,3.942466666666667,4.80466,3.0446091666666666,2.93395,3.89665,1.665854,2.8923966666666665,3.67254,4.128505,4.264955,4.91737,7.709633333333333,2.8428233333333335,5.0963,4.9029,4.9045,5.01015,4.84824,4.208825,6.4948,3.39325,3.01401,2.838185,5.977,3.71999,6.17515,2.1021,3.3048266666666666,3.34461,6.2548,4.188295,5.3943,1.4525080000000001,0.88435375,2.6584,0.6391633333333334,3.571895,3.60316,3.53314,2.84855,2.1953,3.069825,2.4784825,3.417134,1.8342680000000002,2.94619,3.0012,2.3183725,2.704425,3.648536,1.2563016666666666,2.8331741666666668,5.04185,3.819266666666667,1.155955,2.82877,3.6766024999999996,3.727838,1.5777,5.5545,5.5564,2.14038,2.7937933333333334,29.86667359982501,3.7334333333333336,1.7179,3.9392666666666667,1.6593433333333334,2.63368,2.9944900000000003,3.4108666666666667,1.992205,2.693825,2.3130825,3.626383,2.6522799999999997,2.385885,1.5029875,2.22784,2.7013,0.3983768181818182,1.1953575,2.6934833333333335,1.74527,3.427165,1.5777,2.0122566666666666,25.872270722222222,5.34475,4.61159,3.517505,2.59711,2.4309025,2.5415666666666668,2.2324125,3.68215,6.143751999999999,5.5517,1.597642,1.98677,3.112915,2.7434683333333334,3.935163333333333,5.64895,5.0421,4.706135,0.17382744680851064,5.0673,4.985766666666667,3.76942,9.28658,1.0166825,1.0166825,2.927153333333333,3.51097,5.93615,2.1613811111111114,1.0614444444444446,5.1313,1.8872525,4.38811,3.88605,3.433545,4.23299,3.87334,4.83157,3.228615,0.7161744444444444,3.155785,2.1794183333333335,4.401235,7.65278,4.36195,1.7751433333333333,1.7751433333333333,6.5665,4.91279,4.138235,5.9208,2.601663333333333,5.722481666666667,1.5491766666666666,1.5968066666666667,2.8682266666666667,2.1774066666666667,3.02324,2.716086666666667,3.603475,4.295785,4.572035,5.4099,2.28783,2.27833,1.7729575,2.709825,2.210345,1.9964625,1.9029275,4.969131666666667,1.86936,3.6064228571428574,2.47255,3.544033333333333,2.791093333333333,1.9845366666666668,1.595557142857143,1.03866,2.9900300000000004,3.9123666666666668,0.765301,4.94149,1.8517525,5.765964166666667,1.957775,1.6045025,1.48786,1.5597133333333335,5.934105555555556,1.9087779999999999,3.1145533333333333,3.3531999999999997,1.11266,1.8809725,4.946488,3.0140100000000003,2.327436666666667,3.5181,3.3934333333333337,2.8380833333333335,1.3167930357142859,0.2650558333333333,0.2650558333333333,0.2650558333333333,0.2650558333333333,0.2650558333333333,4.16185,2.79972,2.2950225,3.4062666666666668,1.3216683333333334,2.5957933333333334,3.291983333333333,2.9298233333333332,3.640345,3.01876,1.8568566666666666,3.1298399999999997,3.3118933333333334,2.2302525,1.936695,3.550255,2.8903533333333336,2.7221166666666665,5.0447,2.7232566666666664,2.7185133333333336,2.54967,11.109571666666668,5.02635,4.96232,5.09275,4.050375,2.8253166666666663,4.952185,3.06378,3.40522,5.793123333333334,4.15705,3.208745,2.2802825,3.57884,5.113818,3.56065,18.165604369047617,1.24470875,4.336655,0.8401377777777778,1.1365475,2.971175,4.73712,3.685015,3.951915,1.3905466666666666,2.6019,4.180115,3.3592333333333335,4.711095,3.389785,2.686733333333333,0.6342233333333334,2.961176666666667,4.875395,2.280885,2.46855,2.22573,19.899739166666667,1.638962,1.29005,2.434563333333333,0.30872307692307693,1.83212,2.732533333333333,2.08256,2.8137899999999996,2.6178,7.4267925,2.076675,2.5525,2.2628775,2.2440325,1.5524183333333335,3.504466666666667,3.319895,2.979725,3.03154,1.9112775,2.4712645833333333,3.3286244444444444,4.40354,0.4228016666666667,2.6006199999999997,2.7025,3.164945,2.2346025,3.485643,3.38482,1.6164233333333333,2.261226666666667,2.3152133333333333,1.52105,2.381463333333333,3.66855,3.222715,0.7582666666666666,3.36613,5.2999,4.52271,2.28547,2.28547,3.316053333333333,4.96052,3.41222,3.37304,2.34845,0.9663,3.94579,3.57841,5.7049,3.66044,2.29444,2.29444,1.3506925,4.11177,4.99363,4.05777,4.101295,3.3229966666666666,2.5498566666666664,4.350505,3.664155,3.9446,3.022373333333333,2.5873733333333333,4.64536,3.3540666666666668,2.5508366666666666,1.7995400000000001,3.562175,2.69695,1.6106366666666665,3.720735,4.33945,4.65679,3.1706766666666666,4.618245,4.26548,6.679653999999999,3.846345,2.23054,4.906905,2.813655,7.343495,2.7617766666666665,1.4002816666666666,4.34648,2.9431700000000003,4.63448,0.6289914285714285,0.8487833333333333,3.49479,3.692305,2.201553939393939,4.326775,2.717725,2.7211,10.049586000000001,1.8077660000000002,1.371012,3.60711,2.53197,3.591605,5.341,6.759250000000001,3.09418,2.12304,3.2035699999999996,2.04061,3.3902666666666668,8.651383645320198,0.8757657142857144,1.026165,4.649965,0.4331773333333333,1.74812,2.293365,3.114725,2.944675,2.5409,4.016835,2.73485,13.046244999999999,5.508305,2.2623375,2.2623375,4.38346,0.7699383333333333,5.306456666666667,4.437235,3.88754,5.148828333333333,3.509455,4.686965,1.4445416666666666,2.760885,2.59777,2.72551,2.976665,2.661415,3.05098,3.4634,3.54292,3.00504,2.93892,2.51845,4.510025,4.72349,3.202806666666667,3.455666666666667,4.998980833333333,4.3675,19.417482738095238,12.700288333333333,3.3877235714285714,0.7657425,1.5349857142857142,4.41772,3.3555,3.0073939102564102,2.089755,0.9058555555555555,0.6829583333333332,0.6329271428571428,2.0511725,1.8409520000000001,5.390883333333333,3.5734333333333335,0.6956727272727273,3.341065,2.26726,2.303665,1.89233,6.433836666666667,1.468278,4.82244,2.980345,2.978623333333333,2.46346,2.60333,2.5099733333333334,0.7274672727272727,3.15032,2.91365,4.007014,3.0321266666666666,4.782288333333334,3.633765,3.34917,2.009945,3.726845,8.3646,2.1498075,2.36743,2.49497,1.5745625,2.405455,2.2820025,2.587575,0.863762,1.3913525,1.0562025,2.918385,3.75161,6.1606,5.8378,3.315965,2.31587,3.04515,3.5392333333333332,7.971629999999999,1.3027633333333333,0.38233,2.970705,2.05475,1.66762,3.7060400000000002,1.309638,2.16208,4.681143333333333,3.391723333333333,1.2027866666666667,1.91063,4.33694,3.67666,4.431815,4.800915,2.369075,5.33075,4.085265,0.8703000000000001,4.783355,4.55849,4.323872916666667,3.624166666666667,2.32193,1.304746,1.124615,3.50865,2.637325,3.17516,4.14126,3.167715,2.652553333333333,3.131245,3.64382,5.1433,2.454325,2.44762,4.319885,6.0401,0.5197875,4.449325,1.9626375,3.526515,3.7689333333333335,2.24303,3.10552,2.3711975,2.04357,2.65613,2.796205,1.8376566666666667,5.7508,3.670125,1.2759728571428572,6.2977,1.0601933333333333,3.68509,1.63465,4.653965,4.01337,2.2566,3.198235,4.248995,8.88164,2.811725,3.67375,3.9426,3.5953,1.6625525,7.66913,3.43804,4.414015,1.421655,4.172045,3.132485,1.092385,1.9619060000000001,4.23906,2.062725,4.05058,4.0497499999999995,4.4242349999999995,4.57921,2.3871175,5.54575,3.89127,3.117903333333333,2.3186233333333335,1.659066,4.76497,6.42655,4.9379,4.517095,3.00322,2.2513975,4.04212,3.318135,1.0902360439560441,4.01093,4.774884999999999,3.955585,2.835245,3.55083,0.49829,0.49829,5.37225,4.555005,5.0168,2.18401,3.8224,4.66597,0.8174910000000001,4.508945,5.0139,4.75751,4.726675,4.761305,1.90213,3.245655,2.1745975,4.38014,0.73109375,4.11096,4.450975,2.74551,2.9609,4.581945,2.29857,3.210915,59.02344693722944,3.163745,2.53947,1.61905,3.28859,3.86949,0.92349875,0.97496875,2.34125,2.34125,1.289128,3.235995,2.347065,3.8835755,7.39606,2.7086233333333336,1.2339671428571428,1.5377366666666665,2.7371666666666665,3.9510291666666664,1.00784,1.90881,1.35229,2.042215,4.138305,4.330585,3.4757,23.30407431818182,4.350705,3.715315,3.109365,1.9911466666666666,3.77426,3.212205,2.4597275,5.42004,1.718898,4.06281,3.295668722222222,5.78269625,1.99212,2.588,1.855775,3.986415,2.34196,2.1911275,2.1174399999999998,3.1861494444444443,4.03586,3.354055,4.430245,4.82907,2.589125,2.6217,3.08574,2.722655,2.9145344444444445,2.21471,2.164605,3.45383,1.16234,3.9088,4.83471,2.61242,4.871845,4.771355,4.944841666666667,2.1146933333333333,2.42916,2.606665,2.723625,4.01592,3.40493,4.777695,0.7160642857142857,4.1526993333333335,2.710755,3.697385,2.2159625,1.756514,4.311613333333334,1.2589555555555556,2.95389,4.246665,1.1050179999999998,3.6532,3.63231,4.495805,5.79192,2.17932,2.789625,2.6616500000000003,3.230726666666667,2.5147066666666666,2.5209273333333333,3.0319833333333333,2.3480366666666668,2.34159,1.3055633333333334,2.24603,2.24603,1.82445,2.0612133333333333,1.7810866666666667,2.8992633333333333,3.645355,5.20325,3.054685,1.51784,4.44393,3.514325,3.41583,4.23771,1.9585625,2.414155,4.529495833333334,1.981205,5.034701666666667,4.49678,3.53353,2.4021433333333335,3.575700625,3.22372,3.046315,3.46498,0.1419334693877551,2.7605066666666667,7.580805,1.48779,3.389305,4.731655,0.9992614285714286,1.2890766666666666,1.8810625,3.9088,2.985235,6.946160000000001,3.53773,3.567475,2.84156,2.622945,3.406765,3.306035,3.892125,3.24266,2.85093,5.29275,4.416365,4.65435,2.8063033333333336,1.9862075,3.38862,4.168455,2.67183,3.655685,2.1632,3.3665,3.956225,3.626335,2.70624,4.329545,4.83736,2.655885,4.56451,4.517375,3.534925,4.557065,3.37289,2.919955,7.42,4.46312,5.36795,5.15955,4.15581,5.5482925000000005,4.025065,3.85576,1.3036720000000002,6.816,2.406805,5.1753,4.12526,4.29727,3.1965533333333336,1.9688433333333333,2.2732966666666665,2.4179733333333333,0.905146,3.3914000000000004,2.81263,2.9979366666666665,2.09892,3.58688,4.628785,2.64083,0.5394774999999999,4.537505,4.681435,4.5586,4.95574,3.61874,4.42362,5.36215,4.718045,1.4588,0.9839461538461538,2.5834066666666664,4.70293,5.70485,0.486655,2.87963,2.45498,3.484865,4.439175,3.778366666666667,1.75968,4.082095,3.34089,4.27058,3.07454,6.0332,4.22595,7.095515,0.5497225,4.05492,0.771528,2.232535,4.043066666666667,3.2381433333333334,1.3351733333333333,2.21476,4.075505,3.968425,4.205365,2.42936,2.33054,3.286475,4.598705,3.492815,4.0115,1.6129419999999999,1.155523,5.49425,2.32362,8.070375,4.50142,3.55476,1.9930975,1.56902,4.221205,4.693135,1.67716,2.33011,2.543625,2.7605066666666667,6.800551666666667,3.080428333333333,2.8905733333333337,4.7599,3.326605,1.9254966666666666,2.97536,7.386245,4.904285,5.0523,0.5543072727272728,3.717685,4.60183,4.652039642857143,4.462,4.18634,2.986105,2.79862,3.08971,2.875675,3.9733894999999997,1.5770440000000001,5.3459140000000005,4.725415,4.95464,3.84593,3.281785,3.1935108333333337,2.1832375,1.3376125,0.9072075,2.740665,2.469765,1.07846,2.6109633333333333,5.26975,5.1507,3.433095,4.161505,15.823213333333333,4.094545,4.39613,4.20776,0.6969,5.4295,4.80825,4.695225,4.78415,5.49995,2.55031,3.488915,3.282225,1.473302,3.030845,4.955155,2.73803,1.597212,4.236505,5.2063,4.11963,5.3425,4.739695,5.83625,4.555545,2.96864,4.23873,4.16108,2.66668,3.0078,3.02834,1.7956595833333333,5.1484,2.7028035714285714,1.8798733333333333,3.916245,3.417795,4.242405,4.181526666666667,2.16144,2.77395,4.41317,3.61543,4.700935,4.226295,4.281275,4.9724129999999995,3.012175,5.4987,2.6586600000000002,3.83499,4.154115,1.513946,4.764005,1.0493766666666666,4.4583,3.399045,1.1582857142857144,3.587175,1.997035,6.901275,2.4390754285714284,2.4390754285714284,2.4390754285714284,0.7669716666666666,1.18187,1.842335,3.47634,6.08141,3.621364444444444,1.939025,2.446715,1.64068,3.7211,2.41563,0.41084846153846155,1.623235,2.14695,3.0329,1.800645,2.63309,2.35763,2.0329275,3.94143,2.74498,5.2731,2.89302,1.972685,6.41508,2.008835,4.298875,4.187135,6.166223333333333,1.61453,3.498505,3.59131,3.77515,4.19849,2.734115,2.036555,3.68157,6.168012000000001,1.980045,3.48365,2.99953,2.24245,5.10855,4.573635,2.6934566666666666,2.36324,3.7972900000000003,6.3235971428571425,5.73925,3.06349,2.41106,2.674175,2.94903,2.849555,3.723125,1.2547275,2.71199,4.59665,0.8239175,4.18607,3.781765,4.07112,4.85106,2.38129,3.682495,1.932255,4.48016,7.646311666666666,5.0503,3.270005,3.60643,0.95747125,4.609145,2.199235,4.298235,5.44937,4.34227,4.244285,10.919045,4.83032,3.51918,1.458475,0.7051133333333334,2.573605,3.789925,3.41016,3.62449,2.2148566666666665,2.69562,2.2501933333333333,1.10751,1.10751,1.8744266666666667,2.3084666666666664,3.0279866666666666,2.4575299999999998,3.4499999999999997,3.384233333333333,2.693016666666667,3.05814,1.4263000000000001,2.27779,2.0579300000000003,2.1449666666666665,1.4711875,2.0317166666666666,0.651225,10.247183333333334,0.651225,3.31514,2.1658233333333334,2.2007666666666665,4.40043,4.27524,4.093715,4.426595,2.7035966666666664,2.8829433333333334,3.3809853333333333,2.0623,3.6900666666666666,3.4021666666666666,2.8957866666666665,3.3439333333333336,1.6633066666666665,5.7027,6.179699714285714,3.832433333333333,3.7502333333333335,3.0025399999999998,3.0141299999999998,2.8694333333333333,1.2668557142857144,3.5249,2.947903333333333,4.140645,5.83945,4.566545,2.8704966666666665,3.5447666666666664,3.5166,4.1172788888888885,4.28034,2.53997,4.010605,3.5412666666666666,3.2273133333333335,4.78659,2.857756666666667,4.31135,6.301641666666667,2.7172,2.4474566666666666,2.0866166666666666,1.4762766666666665,5.521926666666667,3.5766183333333332,2.6829066666666663,2.0274566666666667,2.1380399999999997,4.512215,3.82836,3.235445,3.2077899999999997,3.544866666666667,3.7429666666666663,3.596133333333333,3.753933333333333,3.5399666666666665,0.56721625,3.9501666666666666,2.48405,2.50119,3.607055,5.05775,4.818655,5.84735,2.66377,4.190053333333333,1.1330183333333335,2.4055566666666666,2.4055566666666666,5.01805,3.582285,3.6507,3.65023,1.790845,3.427875,3.92605,1.0508657142857143,4.049195166666667,3.3321199999999997,1.9864099999999998,0.36898,3.741995,3.13531,6.47609,3.298705,5.8378,3.24871,3.97741,3.86381,1.8677508333333335,3.787765,4.892495,3.655265,3.4313333333333333,3.2257833333333337,5.7907125,2.1239425,1.01362875,1.8923733333333335,1.60178,5.27631,2.34375,2.3565366666666665,1.8177025,4.472215,3.94189,4.8815,0.608284,4.59426,3.707005,2.94847,2.7895766666666666,3.0690166666666667,3.5768813888888893,4.186956666666667,1.5502900000000002,0.6529105263157895,0.8037214285714286,3.5912,4.681365,6.227121666666667,5.18275,5.18595,5.04505,1.474,3.7689333333333335,2.1386366666666667,1.00215125,5.2759,5.78985,3.041125,4.77534,3.97641,6.916756666666666,4.0259,7.1381033333333335,3.68069,2.737502777777778,6.39555,9.909099923076923,2.6947733333333335,0.7279519999999999,3.7915,4.186235,2.337775,6.7655,4.83968,4.046275,3.1193766666666662,3.1193766666666662,4.199055,3.43556,4.0564,5.31065,4.273202476190476,2.4572782857142856,1.0659775,5.86435,2.54337,5.83153625,4.24397,4.681645,3.186185,2.251555,4.871225,4.5436,3.6495333333333337,3.55958,4.803605,28.57416035714286,2.2905975,2.457425,2.26145,1.5781416666666666,2.8429133333333336,1.230152857142857,2.9552766666666668,2.960233333333333,3.5791,3.4064,0.7636938461538462,3.644633333333333,4.634675,3.461575,3.299716666666667,4.11621,6.62869,4.7765,4.92572,4.352295,4.200289166666667,4.85476,3.4886,1.7049025,1.0712333333333333,1.3839166666666667,2.7278933333333337,1.51209,3.7138666666666666,2.4021233333333334,2.33543,1.8408300000000002,2.67978,1.97139,1.7816333333333334,2.85276,4.051435,3.590755,4.14673,1.69542,3.868,2.5141666666666667,4.29707,2.5933633333333335,2.54639,2.40131,1.5500333333333334,4.483,6.499311666666667,2.973105,3.674835,3.952765,2.697075,3.0928216666666666,3.7763000000000004,4.64673,4.709185,0.30232090733590733,0.30232090733590733,4.970845,5.18335,3.73639,3.025105,5.35305,4.69926,0.6873938461538462,4.82503,5.21115,3.662635,6.70885,4.56046,7.60969,13.439353333333333,14.150999487179487,4.20341,4.302775,2.70699,0.5976361538461539,2.7672866666666667,4.89796,1.2993666666666666,4.56224,3.4601,3.279866666666667,2.03659,1.8867866666666666,4.98635,4.345215,8.78599,5.25665,3.99784,7.381917272727273,3.225035,3.18383,1.48435,4.630261666666667,1.918105,2.474413333333333,2.7104533333333336,0.28601875,2.871305,3.702355,4.841629166666667,0.778806,1.4218666666666666,3.93069,0.564727,0.564727,2.977529166666667,3.091953333333333,3.6191666666666666,4.39447,4.61153,5.6975,3.751925,4.10005,3.06363,3.1389833333333335,2.8839166666666665,0.7627366666666666,2.7282433333333334,2.78188,3.086455,6.7736350000000005,2.96057,8.914275,2.727675,4.32876,2.997425,2.2594625,2.428955,2.977025,1.701615,2.3808475,2.0556375,3.87908,2.551775,3.73983,2.79843,4.059850833333333,4.059850833333333,2.6129133333333336,2.6129133333333336,9.045378999999999,2.717233333333333,0.804168,2.5315833333333333,2.47848,2.52276,3.73983,1.86525,1.9992260000000002,1.556708,3.79685,4.3911,1.7241425,4.6674,4.01582,6.439427777777778,6.611346666666666,2.304326666666667,4.285305,7.49397,4.84936,3.667865,2.9833266666666667,4.4609,4.003127878787879,4.66223,5.820053333333333,8.13962,3.3926974999999997,4.13131,1.17774,4.393285,4.363714666666667,4.59382,3.8977975000000002,4.378275,2.57397,2.7102733333333333,6.747985,3.241595,1.324862,6.78304,3.70856,3.060563333333333,4.66809,3.060563333333333,3.08727,4.167375,5.20935,1.0629385714285715,3.910007777777778,4.770605,4.10353,1.3713783333333334,1.8630625,4.91937,4.17903,2.652345,6.8350333333333335,4.219895,4.4323,4.37265,4.63939,1.500965,4.203475,2.72485,3.78132,4.34207,4.55619,4.971325,2.98557,3.88533,4.92515,2.1490663333333333,1.815615,3.7989333333333337,3.5208333333333335,3.5462333333333333,3.323026666666667,3.8385,3.0640366666666665,4.99315,3.38598,3.348105,2.82703,1.8805033333333334,3.563266666666667,2.1580933333333334,2.94789,3.14264,2.746585,0.73109375,2.171545,1.7248766666666666,3.14241,2.0787400000000003,3.472924,3.572895,1.316114,3.3956524999999997,4.679785,0.8647560000000001,1.2115533333333333,3.603415,3.78275,3.452235,1.955395,1.9365733333333335,3.463035,2.4196958333333334,1.6682966666666665,2.93235,1.91505,1.133594,1.3613775,6.575775,3.43325,2.16103,2.40559,2.541075,3.77719,0.847435,0.34231500000000004,0.8173914285714285,5.25635,1.8920721428571428,4.26936,2.32086,1.6196445714285712,2.817112857142857,1.1974682857142858,1.0732825714285714,0.729634,0.5704042857142857,2.7703866666666666,6.7475,3.06165,4.44795,0.3349496428571429,3.72004,18.726794857142856,3.12586,7.6823945990675995,1.020385,1.020385,1.020385,1.020385,5.741864166666667,4.25291,3.047955,1.9983766666666665,3.01213,3.638315,4.508585,4.268255,3.25362,5.31095,4.67263,3.92924,3.6860660000000003,4.10959,4.86855,4.532685,5.33545,3.48857,4.23894,2.9552666666666667,3.74109,3.28956,4.212385,4.210185,4.42006,3.176856666666667,2.62905,2.459563333333333,4.598735,1.3487992857142856,3.772965,3.2475133333333335,3.7530866666666665,4.4242349999999995,4.239315,2.974915,2.920515,4.245005,3.019325,3.22399,5.2875,5.08005,3.27357,4.010765,1.792852,1.792852,1.3580475,4.66668,3.78763,6.328923,5.22205,3.6621,6.7533,4.186765,2.16611,9.185375,4.691105,6.2270175000000005,4.33396,2.9029866666666666,4.140135,0.25979034482758623,0.95227625,4.086816000000001,3.451555,5.00115,3.3472666666666666,6.562743333333334,4.985565,0.5588285714285715,3.1897,0.43678800000000007,1.660835,3.356005,2.227415,4.270305,3.48801,3.372405,3.41816,3.37435,3.517665,3.341865,3.461415,4.245965,2.317615,1.660835,2.699575,1.9603525,3.709585,2.290415,3.81675,3.508255,1.6625525,4.32442,3.013405,1.5362,4.798025,4.595665,4.18096,2.91607,3.0496533333333335,4.75341,2.0834533333333334,1.4878959999999999,2.4258433333333334,2.9611966666666665,2.5425866666666668,3.1185766666666663,4.962925,3.479555,5.230813333333333,4.155257142857143,5.1047,4.33992,1.713052,5.48335,5.05465,5.4979,4.29756,7.0234000000000005,1.8930875,4.64515,3.44499,2.98358,2.032695,1.7003633333333334,3.841655,4.40055,2.22848,2.4935187500000002,3.2961650000000002,3.2961650000000002,2.6290633333333333,3.9911999999999996,3.335075,3.81554,3.497015,0.8418076923076924,3.228865,4.334055,4.577164444444445,2.84045,2.84665,1.7250625,2.61577,3.469845,2.198135,4.465975,4.003925,4.54576,1.9588966666666667,0.9943727272727273,6.26283,3.524555,3.540433333333333,3.458933333333333,1.68203,30.221638988095236,4.56618,3.293775,4.808335,4.38448,0.8306300000000001,6.962524999999999,2.17525,5.57735,1.7065000000000001,4.957605,5.2171449999999995,3.655725,3.149475,2.2481425,3.6807,5.1377,2.0592425,2.72232,3.350345,4.33697,2.522515,6.0918,2.078445,4.14748,1.22854,4.155,3.52766,3.834715,4.919365,3.05196,2.522346666666667,4.15527,4.882005,3.5937275,3.5937275,6.4949,1.4872875,4.50333,6.940028333333333,3.16397,4.263945,3.89707,2.56058,3.49807,4.0914,1.3443725,2.29027,4.099095,4.32592,5.68025,4.46473,2.857025,9.6028,2.52889,3.747475,1.7663571428571427,3.477,2.181436666666667,2.63698,2.3696825,1.2457933333333333,2.643963333333333,0.9299471428571428,1.0431728571428571,1.0431728571428571,1.0431728571428571,1.9416900000000001,0.5915525,3.858995,1.1699966666666668,2.6132066666666667,1.1013533333333334,1.6509733333333332,2.65041,2.152336666666667,0.7928475,1.7132233333333333,1.83038,2.3011066666666666,1.5898720000000002,1.5898720000000002,1.60647,1.9958533333333335,1.012514,2.1388133333333332,1.5310766666666666,1.2109433333333333,2.386595,2.252915,6.006,1.8270275,4.240775,17.808676333333334,7.195825,3.31403,3.596563333333333,3.15151,2.75466,2.6549,3.0043733333333336,0.7167458333333333,1.0274800000000002,1.0274800000000002,0.6567125,2.57908,3.79243,3.403825,1.563268,5.54505,3.69252,2.49487,4.44617,4.74135,4.301865,4.41599,3.6630000000000003,3.13969,3.41193,5.7163,3.4625,4.72811,0.534291,0.534291,2.36171,3.862515,4.836885,3.596565,4.21037,4.703265,7.01985,7.86433,3.43352,2.680125,4.04993,4.22421,2.74307,2.287045,3.318045,1.2625366666666666,3.71757,2.380905,1.6986025,3.427566666666667,4.209755,2.092555,5.820053333333333,1.6537625,3.7081,3.533685,0.9478785714285715,3.563333333333333,3.010676666666667,5.0817,1.1143349999999999,1.790725,2.40365,2.190255,1.67291,2.49305,2.25095,2.0561625,4.77807,4.495335,2.95185,1.784,1.4183666666666666,3.826233333333333,2.0131033333333335,2.506125,4.853965,5.69275,2.0961975,2.947035,3.284385,3.437695,2.372795,5.01555,3.97232,3.133915,1.5125,4.074775,2.95009,3.043276666666667,2.45582,3.687825,4.966055,5.02105,2.5338600000000002,2.9493566666666666,2.9099533333333336,3.4605333333333337,2.02615,1.578166,5.55675,3.542566666666667,2.2056507272727273,3.3005999999999998,3.2616666666666667,2.45975,3.3170300000000004,3.3434000000000004,3.769966666666667,5.0545,3.98796,3.284026666666667,5.91295,3.377795,2.382235,3.22751,4.032715,4.04324,5.8931305,1.924584,3.811,2.851015,4.80891,3.640285,0.564515,2.331835,2.252675,3.39621,2.841525,2.229125,2.673155,0.622479,2.7445033333333337,5.12775,2.4074875,4.44981,2.59641,4.49256,1.8532275,4.422455,3.82137,1.854526,4.223315,7.334565,4.36982,4.11403,4.80082,7.319027954545454,4.253835,4.644515,2.2189775,5.0136,3.1312,1.8774333333333333,1.8659325,2.6747,0.9966014285714285,2.2731033333333333,2.6469366666666665,2.54137,3.0269600000000003,1.737694,3.221875,1.9143733333333335,4.8335,5.69313,1.0081725,2.22471,2.4766133333333333,2.7881666666666667,1.9991033333333332,1.0622833333333335,5.616145,2.05162,2.5961333333333334,3.0571300000000003,2.99029,3.18617,3.13385,2.184833333333333,2.963886666666667,2.2669799999999998,4.030325,3.77553,3.84047,3.027176666666667,3.05003,0.7976530000000001,1.76217,2.155355,1.9314233333333333,2.5064566666666668,1.1488533333333333,2.7045766666666666,2.9279266666666666,3.551695,2.0597233333333334,3.480185,3.06108,5.91945,3.85572,0.6060341666666667,2.05462,2.86285,3.7283666666666666,0.7743672727272727,3.003206666666667,3.450926,3.163046666666667,2.7725866666666668,3.3145949999999997,3.68046,3.739933333333333,2.99989,2.332395,5.93955,5.21105,5.70775,5.57535,5.7743,1.77308,3.313885,3.7685,3.4135666666666666,3.2928266666666666,2.757376666666667,4.215433333333333,3.7558666666666665,3.211586666666667,14.635035,4.26995,1.1987299999999999,3.172876666666667,1.6936879999999999,3.30017,3.4594,2.9216800000000003,5.623238333333333,6.092579000000001,2.4033666666666664,0.8689959999999999,4.249825,3.5138,3.03506,5.2868,5.4072,6.26625,4.877865,3.40614,1.93407,6.579525,1.17774,6.613239999999999,4.760405,2.731033333333333,4.145415,7.389951666666667,5.84075,2.3205233333333335,1.5342166666666666,2.0603625,7.5023100000000005,1.5777,3.220466666666667,2.734323333333333,4.299291666666666,5.7029,4.261525,6.22635,3.455775,5.4346,3.55099,8.87688,5.4318,5.8469,2.610275,2.712525,11.098041666666667,3.491175,4.32061,2.406616666666667,1.7667133333333334,2.5251366666666666,2.1796966666666666,0.66091625,1.350828,1.06582,3.7766,7.112336666666667,3.2727880000000003,1.3493033333333333,4.86684,4.214365,0.5582239999999999,3.881425,3.60163,4.33059,3.8336,3.58597,2.6019433333333333,4.094965,9.86571,1.7864225,3.7657925,3.565,4.36969,3.611685,0.8881333333333333,3.4569666666666667,3.8424,1.77911,2.5103866666666668,2.3136666666666668,2.551136666666667,2.6304366666666668,2.1513566666666666,2.078935,6.341012142857142,4.824705,4.00514,4.312486666666667,1.6016966666666665,2.386355,4.84254,5.07775,5.05475,4.849825,4.872565,5.1821,1.792852,3.76741,7.735651666666667,1.3013216666666667,1.6573066666666667,2.4623633333333332,2.7438866666666666,2.7227599999999996,4.704622333333334,0.8037214285714286,2.40673,3.256185,3.61434,4.324455,2.2521366666666665,2.8070866666666667,2.101145,0.576456875,1.9897525,2.882335,7.637045,4.245755,4.394195,0.971472,3.6867666666666667,9.58890725,10.962938333333334,3.239885,1.249465,3.60922,3.58651,2.7836266666666667,5.618033333333333,5.23185,4.165565,2.1246925,3.9235333333333333,2.1590233333333333,2.5768999999999997,0.8920818181818183,0.4087593333333333,2.21922,3.5119,2.0270871666666666,3.333555,3.3971,3.591105,4.71711,1.532292,3.3282833333333333,2.2220125,2.2220125,2.237745,2.927075,4.345855,2.69464,2.7058233333333335,3.1986833333333333,3.6038,4.04984,4.117095,4.60191,4.04086,4.331395,4.381835,5.5882,7.714923333333333,1.875725,2.2097533333333335,2.64576,0.9026166666666667,0.7241508333333333,3.78109,2.248725,5.5082,2.8906033333333334,3.1965833333333333,1.9133520000000002,1.453575,3.974555,4.12566,4.247675,1.5126549999999999,1.25143,2.62339,2.0586266666666666,2.5148433333333333,1.10109,1.10109,2.7440466666666663,4.15324,2.65177,3.000105,3.44308,2.061275,19.417462484848485,3.679495,5.13959,3.520255,3.804505,3.49121,3.54599,5.7828,6.34455,0.8184566666666666,0.8184566666666666,0.8184566666666666,2.668676666666667,1.7600714285714285,3.737,4.396515,4.15074,3.112845,4.41221,4.26386,0.9399955555555556,2.239926666666667,2.5508966666666666,6.051836833333333,3.4040935,4.080349333333333,4.75669,2.24303,2.0618666666666665,2.350643333333333,0.50327625,0.8888339999999999,1.877445,1.95632,2.908025,13.073535,2.49788,5.561,0.7252428571428571,10.475815,5.69285,3.62782,4.315495,2.783875,5.6712,2.783875,3.02356,3.405555,3.77048,3.72894,3.882245,4.586485,3.392725,5.92605,6.771582,1.6835533333333332,2.55128,2.560555,27.410503502574002,1.512802,6.1337,4.064082,3.867915,3.75047,4.65409,2.70362,2.74457,2.214065,6.2356,6.71945,5.14795,4.65932,4.621175,2.118115,1.93,4.426005,0.3687176923076923,0.3687176923076923,0.3687176923076923,0.3687176923076923,3.983045,3.1151116666666665,0.8621500000000001,1.78778,1.1623222222222223,4.65651,2.45019,2.3078,7.257108333333333,3.2889933333333334,0.1672844827586207,20.962021666666665,4.5961083333333335,1.7325199999999998,1.374012142857143,2.29718,1.96423,2.51995,4.586175,3.02841,3.9293,3.85223,2.461936666666667,7.362855,2.71882,1.98451,3.345625,6.0364,7.4768783333333335,4.62944,0.30872439024390247,3.47324,4.10291,3.3538,2.245395,3.1377466666666667,1.5993133333333331,1.5993133333333331,4.058375,5.82402,11.9190675,9.032175,0.6873277777777778,2.5359000000000003,3.85269,3.11687,4.98815,4.41161,1.612156,1.612156,3.649665,4.658045,2.4683100000000002,3.52959,4.850565,5.167,6.220555,2.12676,4.62265,4.198405,2.59501,2.9538666666666664,3.234156666666667,5.20335,4.48874,5.382,4.036525,4.074815,3.84095,4.97804,4.73968,5.72605,2.639936666666667,3.3064033333333334,1.142442,4.47828,4.103715,4.27197,1.9058140000000001,1.99528,1.8679133333333333,3.414,2.84691,4.635806666666667,1.8133333333333335,2.4117525,3.4947666666666666,2.7841799999999997,2.4312066666666667,2.2903566666666664,3.9126999999999996,3.207103333333333,3.8204666666666665,3.828545833333333,2.05509,2.544303333333333,2.0154633333333334,5.56105,3.2069033333333334,41.07421908333333,2.574883818181818,2.574883818181818,2.5335533333333333,2.964653333333333,2.1156266666666665,1.77797,2.931673333333333,1.8663833333333333,0.6512661538461538,4.87916,7.2144625,4.26566,3.99921,5.36525,1.9965166666666667,4.270415,1.8083040000000001,5.18735,5.73335,5.84205,4.44955,1.7049025,4.290505,5.1697,4.83195,4.83144,5.5241,4.195315,3.2689866666666667,2.865083333333333,2.1190575,1.864255,4.373055,2.0086666666666666,3.6426375,3.6426375,2.2159400000000002,1.5339866666666666,2.116966666666667,2.4062266666666665,2.4065966666666667,4.87231,2.796746666666667,1.1118716666666668,1.1118716666666668,2.0132166666666667,2.32848,2.4257566666666666,2.59748,2.4470266666666665,2.2721566666666666,2.1578466666666665,2.1658705,2.980616214285714,1.5895182142857143,0.8147457142857143,59.18832299603175,2.481728,3.120953333333333,2.2486439999999996,0.88018,3.518727333333333,1.620178,1.620178,2.6535366666666667,2.9973799999999997,0.7747725,2.8595699999999997,5.156409999999999,4.059833333333334,2.5528766666666667,2.79874,1.8725633333333331,2.5058013333333333,0.2836275,2.3268033333333333,0.716388,2.4568666666666665,1.266746,1.266746,2.4846266666666668,1.9053039999999999,2.36618,1.5843586666666667,2.92172,1.5843586666666667,2.1411233333333333,2.6288233333333335,3.1952433333333334,1.199454,1.199454,3.15808,1.4428066666666668,2.7047133333333337,2.0981666666666667,5.0799,4.292715,12.792638416666666,7.031337499999999,3.55058,5.09195,4.504385,5.51175,5.32795,2.6362825,4.36895,3.58381,2.58244,4.60113,3.4232666666666667,2.7564266666666666,3.692625,2.2599233333333335,1.0864328571428572,3.7407270833333337,2.6364233333333336,2.987795,0.8036685714285714,2.631105,3.355405,4.38125,4.318305,6.645,3.3592333333333335,2.15652,4.11907,4.50167,2.2177875,2.8490208333333333,1.93402,2.058354,0.862294,5.2697,4.96225,3.976975,3.814735,3.05401,4.52881,5.3175,3.2901433333333334,1.7272633333333334,0.5547493333333333,14.3685975,0.49325545454545455,0.49325545454545455,0.49325545454545455,3.104643333333333,4.086633333333333,0.49325545454545455,7.8561266666666665,4.8584966666666665,0.69302,0.69302,3.3731333333333335,3.265275,2.886405,4.288825,4.306315,4.305771,2.12094,4.686145333333334,4.273575,3.5150396428571424,4.64797,3.04664775,2.256825,2.2893775,2.629975,1.600015,3.3784633333333334,3.0526066666666662,2.60905,2.2332675,2.0116175,1.8608333333333331,1.5450675,2.50605,1.1490222222222224,2.7986,0.6364921428571428,5.49675,1.742175,0.7472366666666667,2.432295,7.7388650000000005,2.49196,2.0226535,3.25298,7.58151,2.696665,5.0153,3.071625,6.17349,4.20681,4.160865,3.997805,4.15995,3.0216966666666667,3.799155,1.163322857142857,4.298025,2.3917366666666666,2.4978766666666665,2.52146,2.39415,2.20076,1.2582125,5.5127,0.8827290909090909,5.10155,5.63385,4.877525,6.14565,4.4008,2.4572966666666667,2.00636,3.0465699999999996,3.3220500000000004,2.38848,3.622533333333333,2.734175,4.52864,1.802826,41.1820376984127,4.94439,2.4599966666666666,2.8057233333333333,3.5630666666666664,1.52741,5.566188333333333,5.16715,2.798503333333333,3.4151333333333334,2.2185333333333332,1.6941175,5.38815,0.8766785714285714,4.815560714285715,1.3483,3.5330333333333335,3.563966666666667,3.1281866666666667,1.42345,5.189573333333334,1.79758,1.79758,2.76803,2.9750004166666666,3.6835,3.4037666666666664,1.3815966666666668,3.0603166666666666,2.8230166666666663,6.265656333333333,3.2418766666666667,3.471748333333333,0.9483233333333333,1.4127566666666667,3.2422766666666667,0.8781599999999999,5.604705,3.9839333333333333,3.0785066666666663,3.9458,2.9021600000000003,2.7677633333333334,3.20543,1.65543,2.541075,2.81725,3.676133333333333,2.5242066666666667,3.7710666666666666,3.0661799999999997,0.5787793333333333,9.455499038461538,2.7028499999999998,5.56265,4.972595,2.744566666666667,2.99724,1.3482575,2.1923233333333334,2.4318,1.3482575,2.585845,0.451070625,0.451070625,1.31327,1.31327,1.00386,1.00386,3.004865,3.14377,2.841345,1.363535,1.73144,3.541935,3.005675,4.92742,4.69689,2.19966,4.47441,2.194,4.792737692307693,1.5663575,1.5663575,2.20414,1.77204,3.832411666666667,1.9981975,4.18729,1.3905466666666666,2.35098,0.5960115384615384,1.2588985714285716,2.252445,1.99151,2.1990775,1.6565825,4.53099,4.717185,2.7441533333333332,2.9706833333333336,1.3911866666666668,0.7197041666666667,2.0049233333333336,3.78493,2.291333333333333,4.790505,5.3056,4.99887,3.81481,6.6835,1.7070333333333334,6.07843,1.83303,4.67277,4.66373,5.796312,2.8787766666666665,2.273575,1.755835,1.945002,1.945002,2.306285,2.306285,4.506505,5.33995,0.9217219999999999,4.44177,3.61625,3.44248,2.6599566666666665,1.4070125,2.73694,4.065385,4.12066,1.9275639999999998,6.75,5.6201,1.78665,1.253225,3.705555,4.221176666666667,3.67466,3.51367,4.35282,0.6954042857142857,2.8665599999999998,3.1062066666666666,2.5483466666666668,2.8902633333333334,2.2112366666666667,3.4912666666666667,1.4842,1.4842,1.4842,2.7720266666666666,2.9780599999999997,3.03844,3.587371238095238,2.46055,1.3146685714285715,3.0959233333333334,3.3759,1.28857,2.9777066666666667,2.77509,1.3872699999999998,3.3781666666666665,2.9968166666666662,3.06791,2.959823333333333,2.89418,2.183715,3.4026666666666667,5.174934666666667,4.794775,0.9564959999999999,1.580692,0.655342,3.500033333333333,9.13894,3.1340533333333336,3.158835,2.02577,4.208288333333333,1.864345,7.721006666666667,7.076466666666667,2.7675133333333335,2.5501757142857144,4.104805,5.3845,1.50308,1.2211779999999999,1.3603960000000002,2.16352,11.159536666666666,2.75712,3.09596,3.146846666666667,3.896095,2.164433333333333,1.2630375,4.27806,1.1106433333333332,3.1790384615384615,3.405025,3.183725,3.3173766666666666,3.66995,5.3336,1.2801,2.0212825,2.101024,2.101024,3.762705,5.11405,7.33181,4.24439,3.35331,4.883265,1.80288,2.211245,4.66517,4.159605,3.796615,1.7244833333333334,2.66608,3.445575,4.36086,2.42115,3.92296,3.63634,3.45769,4.098815,4.66574,4.35215,5.51285,3.2991566666666667,2.315983333333333,4.552905,2.90279,3.742135,2.219085,2.588025,2.495925,4.830605,2.510865,3.1051284090909093,1.68945,3.179545,3.55649,2.1556775,2.0434625,0.87539,0.87539,1.7400575,4.079319393939394,4.071185,2.8916066666666667,4.558645,3.5014975,2.483727714285714,1.0079675,2.4297,1.63712,4.270955,3.97503,0.9233208333333334,1.809645,3.81843,2.9190025,1.59934,1.5766533333333335,5.054337142857142,1.1554883333333332,2.728275,3.20528,2.777555,2.46485,2.806254,2.086925,0.9988,2.82897,2.93171,3.393635,1.4166166666666669,1.5424166666666668,1.731965,4.50304,2.306065,4.483515,5.02135,4.53224,5.807,5.47765,4.103915,5.91486,4.268651904761906,0.7916645454545456,2.93329,4.032775,4.528745,0.46745909090909094,0.878218,2.922855,4.160255,4.970055,4.72837,3.392665,2.685425,4.90644,1.9109279999999997,2.61,4.49304,4.0840325,3.68539,4.116735,4.111165,4.88336,2.859505,5.42552,0.938231,3.663895,2.652325,4.389665,4.715385,4.44568,2.06368,2.6547,2.804095,1.9358366666666667,4.881495,3.46723,1.5145714285714287,2.71499,4.0137675,1.571312,6.20082,1.738952,2.5497566666666667,13.848744897210976,3.3434333333333335,1.4501433333333333,1.5575433333333333,2.1259566666666667,5.5251850000000005,1.6129419999999999,4.1875746666666664,0.7263130769230769,3.426266666666667,4.063585,7.3430625,2.382286666666667,3.073123333333333,3.073123333333333,5.39745,4.662365,3.54363,3.29853,5.1353,5.91495,2.41116,3.500166666666667,4.960105,1.2273333333333334,2.80626,4.57105,3.98468,3.341755,2.6134766666666667,3.699205,3.62238,6.458666666666667,6.1525575,0.8808640000000001,3.845725,3.200945,3.2426333333333335,4.15712,4.175605,3.941195,1.7231619999999999,4.383775,2.46434,3.055295,4.12441,4.238375,4.48774,0.9414300714285714,2.7725333333333335,7.322724,1.4924350000000002,2.2003944155844155,2.32443,3.82149,3.788665,3.215335,0.6596354545454545,2.565775,1.63226,2.1923325,4.76321,5.1998999999999995,2.77203,9.400005,2.6415166666666665,2.8189766666666665,1.16126,4.53335,5.3094,2.047885,5.793123333333334,3.691255,3.24446,5.19365,4.6654,5.2546,2.046535,1.5730875,1.5730875,2.6237,3.17792,4.818391666666667,1.503155,6.052888333333333,1.3918133333333333,3.71092,1.4881216666666666,9.030783333333332,4.464535,2.7223,4.966665,5.17175,3.755065,1.2689616666666665,2.1599,3.7385333333333333,3.1508033333333336,3.6938,3.613633333333333,3.7474,2.804935,2.963205,3.077775,1.4938275,2.5246133333333334,1.9222400000000002,2.794506666666667,1.7974033333333335,5.373380833333334,3.27324,1.6889566666666667,3.1620566666666665,3.204805,3.29574,5.7763,5.7946,3.221645,3.519125,3.625495,3.049055,2.713585,1.1609166666666666,0.9919439999999999,6.4374400000000005,3.521605,2.944625,5.28865,6.2798,3.765835,3.3104099999999996,6.38845,2.58039,0.5390016666666667,5.81375,3.506365,3.77735,3.4158000000000004,1.4385,5.6848,1.019088,4.973175,0.97141875,1.4723866666666667,2.9082866666666667,2.37833,2.4170434285714286,3.908855,5.2999,5.001690833333333,5.001690833333333,4.158545,4.158545,4.863935,3.22641,4.737445,1.0779225,5.7943,4.2622,3.6509666666666667,4.618875,3.613615,4.62438,1.863615,4.936915,3.117752,3.337355,4.230585,2.538325,4.66608,5.20395,3.552335,3.263175,4.88038,3.630285,5.0495,3.1092,2.92638,6.10515,4.236045,2.8355633333333334,6.590035,1.53466,2.218255,4.35725,4.316855,5.02015,3.98248,2.13123,2.13123,14.304077738095238,5.64972,5.05735,4.096735,2.9234241025641023,4.683145,4.668815,2.7494599999999996,3.3922333333333334,3.26797,3.8396000000000003,3.829266666666667,5.0876,1.95742,7.65878,2.33249,1.787275,5.75975,2.376495,4.893345,4.30269,4.841335,0.77164,3.55859,4.056815,0.83773,2.87884,3.5791375,1.45522,2.1429633333333333,3.058923333333333,2.7302866666666668,2.702366666666667,3.4822666666666664,2.5941466666666666,0.5674921428571429,3.0844133333333335,3.052823333333333,2.88758,3.1295,1.7332319999999999,3.0349866666666667,7.3107050000000005,4.52409,2.589116666666667,2.0019833333333334,2.54766,3.681015,2.45315,3.829694,18.5073525,5.3868,3.438513,5.65845,3.73989,5.492021666666667,1.7169566666666667,5.95065,1.5596233333333334,4.390945,4.445865,5.25115,5.1942,1.0482683157894737,4.871245,2.595515,4.710025,2.43567,4.48683,5.29445,2.9045,2.142516666666667,1.377354,2.0463075,4.6511,5.0247,2.113525,1.71887,3.0229033333333333,4.26886,3.20796,5.79035,2.242365,5.1856,4.729615,3.57625,4.37801,3.604145,4.414535,4.75175,4.189405,2.9957366666666663,2.9957366666666663,5.533340555555555,1.90969,2.841336666666667,3.730965,1.716208,7.19989,3.64896,5.049463333333334,4.2226,4.50796,2.0496,4.37581,4.93087,3.940735,2.17687,3.48457,3.30653,1.098915,1.5661775,1.23295,0.6960466666666667,1.6081200000000002,1.0219500000000001,4.4098,1.0297977777777776,2.66494,1.62458,2.07245,1.2471750000000001,2.16267,2.4238175,1.520805,3.3564666666666665,2.59332,4.2478316666666665,1.537415,1.72517,3.2854200000000002,2.943186666666667,2.2507966666666666,4.456075,4.44569,5.4376533333333334,21.151301083333333,3.1779466666666667,2.1802425,0.6469592307692308,0.658137,4.432024999999999,1.92044,4.073715,5.1914,7.609903666666667,4.328565,3.56349,3.958555,3.20872,3.0932399999999998,3.0052800000000004,3.161103333333333,3.2677433333333332,6.17395,3.28385,0.9121159999999999,1.2092925,5.55685,3.2973166666666667,2.56757,2.0632633333333334,2.256886666666667,5.70175,5.078,2.542175,1.1445233333333333,3.316,5.36575,9.116383333333333,5.728731041666666,4.864445,4.19996,5.69175,4.59863,4.871805,4.72651,3.805725,5.33855,2.30394,6.0443,1.6133142857142857,5.44975,0.7463200000000001,4.89142,5.71965,6.0821,6.1919,4.786235,6.17,5.93365,6.6707675,1.9111666666666667,1.5290714285714286,5.67295,3.76977,7.182836666666667,5.25015,5.2386875,5.26755,6.01335,1.3858228571428572,4.365615,5.16615,4.221133333333333,4.653,5.9542,2.57055,3.84763,4.24841,4.70507,0.9935333333333333,1.6866333333333332,1.305656,4.741505,4.04178,5.60815,2.6035666666666666,3.30604,1.6362366666666668,2.1335633333333335,0.37122083333333333,3.5239333333333334,1.716686,2.258785,3.2354633333333336,2.70575,3.195126666666667,2.470925,2.6929,10.407085333333335,3.395766666666667,1.7740742307692308,4.48186,0.8148590909090909,4.62755,1.0444275,1.85954,2.0454675,1.03775125,5.6541250000000005,1.1641327777777777,1.1641327777777777,1.1641327777777777,3.060313333333333,1.70899,5.48025,3.075775,1.5763425,1.5240375,2.04437,1.5619625,2.13234,5.582250833333333,0.8816888888888889,4.27816,4.185265,3.4107000000000003,1.0237814285714286,2.157861,2.033645,2.033645,1.65536,3.7578383333333334,4.383375,4.98514,5.6259,4.286195,5.5983,3.26552,2.0352425,3.703505,5.3946,3.952675,4.84254,1.05122375,3.9172502083333334,5.34545,1.845255,4.04705,2.8297966666666667,4.363725,5.2441,2.33414,6.1115,6.40575,4.425365,5.05855,4.16659,3.141445,8.02353,4.15865,6.326788333333333,3.413725,2.56826,4.95579,2.59485,3.37148,5.23485,2.76754,3.13128,3.76771,1.4193866666666668,10.612142500000001,4.691315,3.165955,16.448720753968253,4.61594,1.7119966666666666,3.089733333333333,3.223525,2.78123,3.955455,2.7753558333333332,4.10857,4.272595,3.04947,4.099915,6.5692900000000005,1.2226766666666666,2.4007725,3.94191,4.03567,5.1058,2.003615,0.6300453333333333,4.64886,4.235445,2.100235,1.2904383333333334,4.83353,4.73001,0.9975266666666668,3.719435,12.648861666666667,1.3683841428571428,0.40877714285714284,3.7246,4.2773,1.1540444444444444,4.780335,3.753725,5.293876666666667,1.3361616666666667,3.84895,3.82655,3.350535,4.415765,4.580135,5.7624,8.695599999999999,3.06381,3.83286,2.92982,16.106385625,3.4482975,2.4708925,1.3257425,2.3014475,1.318205,1.95886125,1.416835,1.9733875,2.159985,2.18629,2.07391,2.4532375,2.234525,5.4729,3.78675,4.89369,3.19302,5.8155383333333335,2.8772033333333336,4.70022,3.237,1.2102675,3.599555,1.993765,2.647041333333333,5.1158,4.938295,4.989355,4.73893,2.73766,3.0093633333333334,2.3899,4.30833,3.740555,2.34918,1.86286,3.7971,5.4309,3.175735,2.3078266666666667,11.654291666666666,0.67614,2.57021,4.954475,2.7544429999999998,1.538818,2.695245,7.33676,7.194433333333334,4.73516,4.25876,3.689355,2.0014675,2.651655,2.8896973333333333,2.083343333333333,4.056316666666667,3.490155,4.450305,0.55585,6.0767,3.573,3.69,3.635533333333333,6.5837,9.08167275,4.596164,1.11735875,2.208765,2.33732,3.572725,2.46232,4.27258,4.905265,3.5762666666666667,3.23031,4.028315,4.1686,3.677455,3.747833333333333,2.2473033333333334,3.397185,5.403,5.49335,3.5465999999999998,1.98083,2.2583333333333333,29.093314743589744,1.438055,1.438055,2.3356566666666665,4.470719333333333,4.4784,4.406275,3.52307,3.981375,4.23467,2.9736333333333334,4.148315,2.9736333333333334,3.439825,1.8789633333333333,1.52856,5.79625,2.595775,4.74952,3.268365,3.337525,6.821886666666666,1.97698,4.917185,5.22715,3.518385,3.59134,5.077,2.01798,4.76884,3.7249625,6.9084,5.455380833333333,2.48774,4.54503,4.72882,2.115975,3.1090766666666667,3.5216333333333334,0.465785,3.3834666666666666,10.072846666666667,4.54261,3.97047,5.5377,3.503595,3.015185,1.297022857142857,3.929865,5.2379,3.113415,2.77967,5.3859,3.9595,4.285425,4.277275,2.35052,2.35052,3.952245,2.73251,2.9319904545454545,1.754495,4.58347,3.911065,1.3403642857142857,4.04992,4.550055,2.900816666666667,6.796495,7.82184,1.494764,4.38226,4.88055,6.739597,0.8746079999999999,7.445961666666666,3.6989541666666668,0.6795245454545454,5.7252,5.27985,5.30695,4.45491,5.1378,4.61002,5.05135,4.408805,4.22247,5.1052,4.612565,5.1106,5.07375,3.850985,3.067675,4.188755,2.784125,0.910791,4.246435,2.47458,1.713115,4.225835,5.2806,5.42915,1.0439042857142857,5.187226666666667,3.13165,2.626396666666667,2.148245,1.2012966666666667,11.846350833333334,2.92239,3.1277733333333333,2.277083333333333,3.658166666666667,5.950233333333333,6.21458,2.6523866666666667,1.9135099999999998,2.2072,2.2072,2.2072,1.4262,3.933805,4.03218,3.581375,4.718665,8.03987,4.43249,1.174372,2.259125,3.19762,2.4121,1.755604,4.68207,2.82762,1.3301266666666667,3.1428133333333332,6.574617142857143,7.077757500000001,4.24005,3.90528,3.419366666666667,5.6115,4.54864,5.528395,1.90552,1.90552,4.632615,3.776975,2.5153790000000003,2.5153790000000003,3.79102,1.0508414285714285,5.1069,3.51142,4.162795,4.562695,5.0596,3.1029933333333335,0.9906957142857143,4.45603,5.5846,4.67097,5.01345,4.85079,4.809785,4.439705,2.002205,1.4700675,3.36441,3.73021,3.19778,4.138545,1.967915,2.8465775,5.353,2.605405,5.12865,8.242635,2.3989604166666667,2.931891666666667,4.194204761904762,4.661333333333333,1.636715,2.043622142857143,0.971755,2.043622142857143,2.1545466666666666,2.1545466666666666,1.443664,4.98908,3.07971,3.28111,2.256665,3.72236,1.536625,5.5233,3.10556,1.6169075,2.66284,4.807715,3.83046,6.342307,4.789815,1.2149100000000002,0.8370366666666667,3.56867,6.306513333333333,2.3458133333333335,3.531905,3.48282,3.48282,2.316735,3.412195,3.086465,1.4160733116883117,3.1961666666666666,3.757055,3.177905,4.469055,4.0035125,1.561155,3.338865,5.03605,4.934185,5.38225,4.270965,1.8160425,2.13137,1.32971,2.4432725,3.469675,1.9247025,4.052375,3.3386666666666667,3.088795,4.16706,4.82072,2.535005,0.981772,1.77112,1.490025,1.2019555555555557,4.76691,4.088995,1.142442,0.18035260869565217,0.18035260869565217,0.18035260869565217,3.2796,5.622005,4.64398,5.1554,4.272475,3.990705,4.50048,4.36508,2.823455,3.603615,1.6189625,5.0888,4.36636,3.809775,4.510545,4.46217,0.8516690909090908,0.8516690909090908,0.8516690909090908,0.8516690909090908,0.9799939999999999,0.9799939999999999,3.986195,4.29406,3.718965,2.73301,2.53336,4.40113,4.06575,5.5453,4.30131,2.942543333333333,2.47921,9.37539,1.6514579999999999,1.6514579999999999,4.403405,5.3065,3.380933333333333,0.451070625,0.451070625,0.451070625,0.451070625,0.451070625,0.451070625,4.886743333333333,5.2903,3.64137,4.34956,2.7411849999999998,2.7411849999999998,2.716115,3.0961543333333337,3.0688,3.542815,3.62415,7.145954333333333,1.41629,5.1181,3.608835,4.281675,11.042516666666668,2.7420466666666665,2.938965,0.9362128571428572,2.23359,5.07005,4.589815,1.2475925,3.0610466666666665,4.705225,5.8456,2.742375,4.857939861111111,1.116211111111111,2.0306333333333333,4.98637,4.91069,3.5046325,2.7494666666666667,2.318236666666667,1.45613,7.8875183333333325,3.3301266666666667,2.14061,3.07992,2.7165383333333333,5.59965,3.865295,2.72566,3.3702,6.38965,1.4032133333333334,4.359895,5.09155,3.61471,3.873495,2.33743,3.90642,3.721725,3.76467,2.85367,4.513985,4.65845,2.985383333333333,1.9182900000000003,2.8406566666666664,2.7292633333333334,2.7945966666666666,0.8048218181818182,2.21109,8.17722,0.48985625,3.01836,1.96064,2.4942933333333333,3.1627066666666668,3.1321366666666663,1.2414333333333334,1.721638,2.7154966666666667,2.07806,3.628175,2.18674,2.9378933333333332,1.4479600000000001,2.96953,1.9656025,1.0899971428571429,3.1248233333333335,2.279125,2.30341,2.6864833333333333,3.1943,3.315773333333333,3.17524,3.0849733333333336,3.0881566666666664,2.9366466666666664,2.8809633333333333,2.3949375,1.6627166666666666,2.3005366666666665,2.688133333333333,1.6169466666666665,3.0026166666666665,3.7423304761904763,2.820953333333333,2.989523333333333,2.9039466666666667,3.685833333333333,4.813369166666667,3.2881033333333334,1.657692857142857,1.657692857142857,2.3709125,1.1692475,2.45817,3.239232333333333,4.3913485833333326,2.643225,1.9685025,2.24607,2.1333425,3.645975,3.247185,3.87451,4.937085,1.77551,2.3641033333333334,3.656295,1.346028,1.346028,2.779775,0.6473538461538462,3.103451923076923,2.516,2.516,2.8057466666666664,2.5018033333333336,2.7286566666666663,2.5939316666666663,2.3424825,5.905776666666666,3.966235,3.966235,3.981655,3.129235,2.281835,3.06632,2.42858,2.888345,5.69223,0.4798191666666667,0.6940310000000001,4.092805,2.234265,3.058175,6.988418333333334,3.686045,1.6733319999999998,4.586521666666667,4.57087,3.94813,4.718265,5.3759,4.998555,14.353985,3.357005,1.63826,2.741535,3.810585,5.2639,3.681605,4.197365,4.5875,3.67655,4.557295,2.8269933333333337,4.40758,2.94613,2.3669733333333336,2.3669733333333336,4.099285,3.1905,3.0569,3.528295,2.307405,2.5069,2.1881925,1.8740575,1.98376,1.9088075,1.8157775,4.0717514999999995,3.650445,2.74121,6.3045725,3.1324,2.35383,1.75019,3.24888,3.86104,3.659095,3.195514583333333,3.264575,3.14082,4.210615,3.27859,3.680915,3.91316,3.3706959999999997,3.491985,0.608715,0.608715,0.608715,3.387835,2.27705,4.937115,2.58993,3.54291,7.559372777777778,2.840726666666667,0.439126923076923,5.0102,0.761432,4.296429047619047,1.830475,3.913995,1.8109,4.61719,5.8597,4.683695,3.899865,2.8157200000000002,2.8938633333333335,1.5184133333333334,2.4457999999999998,0.44951368421052634,0.52384,2.8967666666666667,1.49318,1.95109,3.6661,2.73147,5.16195,2.95528,2.9878883333333333,3.44457,5.15325,2.011055,1.013132857142857,2.303755,3.466698,1.3950852597402599,4.832465,3.727925,3.84717,2.6425966666666665,4.22848,2.80673,2.6790966666666667,2.8748733333333334,2.03016,2.9064099999999997,2.14644,3.1292566666666666,2.3154133333333333,5.756683333333333,2.3263275,1.96268,2.28497,5.0243986666666665,3.08949,3.08949,2.4527266666666665,3.86887,2.2136375,3.39797,3.053155,0.6380293333333333,4.215945,2.154495,10.985995555555556,7.07858,3.03083,3.092645,3.314135,4.93592,2.860795,3.40875,0.23344866666666667,2.1830625,3.8160333333333334,0.918075,3.781565,1.399722857142857,4.45047,3.340475,3.373245,2.884845,4.76783,2.18754,4.791565,3.847065,4.99324,7.43338,3.855855,2.95067,3.0781566666666667,1.6244800000000001,1.97361,4.34273,4.31257,3.9489475,2.63724,6.0518,1.562326,2.972335,2.59463,3.928655,10.948365,3.557655,6.838699999999999,3.85757,5.0122,0.96292,4.867607,5.1463,2.4480233333333334,2.6655333333333333,3.740766666666667,2.87537,2.38189,1.7171066666666668,1.8766566666666666,3.677915,1.725842,2.807793333333333,5.063852,2.754326666666667,1.2178607142857143,1.2178607142857143,3.58155,3.1158705,3.1158705,3.2813533333333336,2.8154766666666666,3.4384799999999998,3.6787666666666667,3.479033333333333,2.6554533333333334,2.3230766666666667,2.34573,3.00812,2.19968,2.5992366666666666,1.644716,5.6345410000000005,10.028465833333334,0.6130930769230769,0.6130930769230769,0.6130930769230769,0.7030148951048951,0.7030148951048951,0.6130930769230769,3.6620666666666666,2.9728833333333333,4.239775,1.4813883333333333,1.74615,3.230126,2.3827833333333333,2.9921633333333335,2.27637,3.1498066666666666,3.770633333333333,7.481156666666667,3.0292999999999997,2.57092,3.6850666666666663,4.37162,3.0058166666666666,3.2945333333333333,5.64605,2.2368133333333335,3.3521,1.36588,1.36588,2.775873333333333,0.4920126315789474,2.51763,2.796196666666667,3.159473333333333,3.3793,2.2445999999999997,1.5550466666666667,2.9427633333333336,2.9795166666666666,2.362083333333333,4.309075,2.582901,3.918165,3.095515,4.261095,0.508251,8.225481666666667,3.052174,3.052174,7.883819166666666,1.7353666666666667,2.26795,2.8096666666666668,4.853775,2.3638966666666668,1.9917033333333334,2.668176666666667,1.3598175,3.3144466666666665,1.7874299999999999,2.9500159999999997,1.31026,0.2670977272727273,0.2670977272727273,5.20045,4.1683,4.26083,2.934806666666667,3.626585,3.71687,1.3772866666666665,6.3283,3.73165,2.884235,1.85431,1.1095966666666666,2.205865,2.8096666666666668,2.508685,2.039445,5.687455,5.6903,4.189035,4.56412,2.13895,0.6744708333333334,7.451155,2.1187825,1.6321325,3.620995,4.34545,2.214095,1.8394166666666667,4.68017,4.59298,3.5749333333333335,3.1263199999999998,4.3484,4.658185,3.4364000000000003,2.552072,2.552072,4.13422,5.0209,6.1053,6.701253333333334,2.65599,4.778265,1.345902857142857,2.25476,4.56161,3.85497,1.784,3.94513,3.4015275000000003,4.72199,1.953795,4.159855,4.946055,5.8514,4.604205,2.4502866666666665,2.58474,3.8356666666666666,1.9948499999999998,2.432205,3.156836666666667,2.481473333333333,0.8692529999999999,2.08602,2.7288833333333335,2.378933,4.21837,4.467985,4.794215,4.173005,3.703155,5.3124675,12.840789999999998,5.29005,4.462485,4.661775,3.906715,4.76861,2.964926666666667,3.191699333333333,3.791066666666667,1.284275,2.90704,2.917245,5.06955,5.6407,4.50915,3.215056666666667,2.60211,2.3767833333333335,4.174133333333333,4.39404,3.725733333333333,4.39404,3.070897,2.30178,2.4601516666666665,2.3824275,2.85582,1.7565733333333335,0.7957133333333334,1.5805183333333332,1.6600533333333332,2.52868,1.58104,1.2703333333333333,1.7034900000000002,2.84836,1.525182,3.173273333333333,1.2934933333333334,1.6277100000000002,4.42416,3.9792666666666663,2.4845,2.5915433333333335,2.37711,3.118125,2.065865,2.8907900000000004,2.93763,2.3940066666666664,3.01348,2.955895,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,4.881545,3.97616,1.019847142857143,3.1781900000000003,2.5985633333333333,2.8329633333333333,3.300545,2.950813333333333,4.53824,3.432432,1.880442,3.3028133333333334,1.5588416666666667,1.06189125,0.994847,1.2140783333333334,0.920265,0.7589816666666667,1.299778,3.21921,1.713468,1.6710666666666667,1.94454,2.656847777777778,1.33697,1.3331466666666667,1.5916383333333333,0.8984983333333334,1.249355,0.7311483333333334,0.906884,3.178475,3.563425,3.97176,4.40861,4.004325,2.9007433333333332,4.83745,3.9716,1.75968,3.44284,1.952205,3.452635,2.639133333333333,0.7844763636363635,4.2706,4.421145,2.5700833333333333,1.222745,2.84105,3.343095,3.7578383333333334,2.9090000000000003,2.35841,0.83569375,2.053515,5.3501925,3.720305,2.36624,1.4734516666666666,3.71281,2.153105,0.7129845454545455,3.872425,3.629055,3.87665,2.22264,1.290716,4.30873,4.2969,2.4979299999999998,2.549436666666667,2.45849,2.68148,2.6927800000000004,2.87275,3.1857100000000003,1.337075,2.8003,2.5299033333333334,5.4313,4.469375,3.734375,4.47597,16.13098964267677,4.69789,4.504433333333334,2.794435,4.005615,5.36205,1.4606,2.561125,2.6261433333333333,6.67197,4.304895,5.42485,5.53595,2.6261433333333333,3.96703,2.06753,2.5914266666666665,2.8981066666666666,2.818986666666667,1.2682316666666666,4.685635,3.806175,2.596735,4.15933,2.5816433333333335,2.71184,3.61362,3.026445,5.64415,4.74864,2.71951,3.56958,2.634085,2.55435,1.65816,1.65816,2.5683599999999998,2.4106033333333334,0.2429792857142857,5.449088,0.9475619999999999,3.62801,3.964885,0.564515,5.09035,8.114053333333333,1.815615,3.600955,3.787355,3.2479533333333332,3.271645,2.29022,2.92134,3.40738,4.12166,3.059955,3.9212666666666665,0.9880083333333333,11.55866,3.07408,2.87185,4.28824,2.486685,3.940865,7.896445,4.292765,4.501815,4.36356,4.237115,5.4306874999999994,1.4966425,3.2463533333333334,4.69097,4.0165999999999995,1.96434,3.75771,3.79265,3.64517,3.88045,5.26695,4.246515,2.5032050000000003,3.929175,3.83451,5.4625,4.11609,2.1569533333333335,2.3213399999999997,2.2181433333333334,2.9783899999999996,1.2744133333333334,3.3305333333333333,0.8493745454545455,3.5063999999999997,3.2277,2.51229,1.6369233333333335,4.646165,4.32049,4.096555,1.86256,4.53291,3.898195,0.7247122564102564,0.33112692307692304,4.264275,4.775875,1.057655,0.33112692307692304,3.065065,0.7247122564102564,0.7247122564102564,0.33112692307692304,5.745973333333334,2.604573333333333,2.3738466666666667,5.8193,3.19549,3.130595,0.7903444444444445,3.286095,3.83778,4.33968,5.5037,2.15844,0.7484807692307692,4.686785833333333,2.7454633333333334,1.541286,2.0541725,1.1041971428571429,2.55504,2.3793866666666665,3.71738,5.1449,3.3537666666666666,3.9664,3.05382,3.0866399999999996,2.85621,4.17033125,1.423275,1.9620225,3.82194,5.2389,2.290191527777778,5.0715,2.57109,4.11025,4.21571,3.326315,1.2056425,2.939645,5.36345,3.45975,3.60584,4.642175,5.6793,2.918,4.17722,4.442455,3.06945,3.41962,8.1583,3.700265,4.8531925000000005,2.05148,1.29868,2.693376666666667,1.94886,2.23026,1.856265,4.92559,0.73225,3.576455,3.725205,1.8637,2.8508333333333336,4.95972,3.60865,2.896265,4.356365,5.73175,9.526259333333334,2.64096,2.720383333333333,1.655662,1.7838,1.2377733333333334,1.4087833333333333,2.989216666666667,2.53184,2.887653333333333,4.324813846153846,1.50559,2.3942799999999997,5.4672,5.7463,3.862355,3.511455,2.89829,2.50109,2.081205,2.033625,1.8129600000000001,2.064665,3.431585,3.84735,5.13045,5.15785,4.46264,5.934654583333334,3.626235,2.365845,6.559020833333333,3.547705,8.31915,4.822392499999999,4.822392499999999,5.56664,1.6170600000000002,1.3705025,3.1939100000000002,0.736736,5.2194,3.896433333333333,3.4589725,3.4589725,1.994096,4.54625,4.408435,4.48569,4.638775,2.8648466666666668,2.590995,4.35299,3.0858933333333334,5.065363333333334,4.60081,0.8128354545454546,6.1159,4.910675,4.914305,5.5479,2.936565,5.18275,4.137305,0.8433615384615384,4.887275,6.554388333333334,3.205775,5.4439,5.8148,3.325495,2.61848,3.775055,6.06715,2.0770125,5.70285,1.8964,4.788495,2.488236666666667,2.03152,0.938231,3.975295,5.6905,3.121225,4.18713,2.07297,3.81573,8.081976666666666,3.533335,4.021625,2.50121,2.66131,0.907512,5.33345,1.6172133333333332,3.6994066666666665,3.6994066666666665,4.254125,2.3792666666666666,3.3534,4.209685,1.7635175,3.079776666666667,3.5005666666666664,3.27507,2.783105,3.897355,2.761315,1.824805,3.5763,1.99724,2.681756666666667,1.95969,3.0607333333333333,2.93387,1.3357928571428572,1.6494799999999998,0.49272166666666667,1.268945,0.49272166666666667,0.49272166666666667,1.6494799999999998,0.49272166666666667,3.9439666666666664,2.346478,2.346478,2.95693,5.4348,4.57817,4.40701,5.3862,4.96184,3.378995,4.569205,4.62863,1.908185,2.551028666666667,2.8221933333333333,0.7773109090909092,5.6161,3.1678933333333332,3.232506666666667,5.70485,3.6597425,5.51795,3.414645,2.60288,2.96245,3.3363,2.5422366666666667,2.68437,2.0446833333333334,5.4511,0.8629422222222222,4.037935,1.2683042857142859,3.476,2.943686666666667,3.569433333333333,4.06388,4.40061,4.170925,4.45771,4.02905,4.332505,4.661895,4.23772,2.516025,2.741775,3.364433333333333,4.083705,5.56035,3.8384,2.62749,3.153565,3.112353333333333,3.208635,4.296555,5.0649,4.043895,67.85247434002109,2.673615,3.877825,16.695509,3.9416,3.08667,2.90647,1.8614766666666667,2.63905,4.8476675,3.02523,4.7193725,6.58995,3.316235,7.485111666666667,5.17855,2.530225,3.15971,3.894725,3.368865,1.918478,1.274175,4.550795,2.875815,6.013778333333334,3.679655,2.3651833333333334,3.54321,3.7775,4.403875,3.17456,5.6834275,4.372045,3.298105,3.1364,2.3443725,2.63318,6.05225,3.998415,3.82791,4.281115416666666,1.1536716666666667,2.747325,5.2274424999999995,3.922105,3.205525,3.53707,3.163335,4.38146,3.036815,3.40354,3.862295,4.40524,2.975095,2.826905,4.45486,9.295645,3.19191,4.12217,6.44067,3.155355,2.46735,3.92433,1.9817600000000002,2.933676666666667,2.848732,3.813735,3.18313,3.951425,3.36354,3.300675,3.97598,3.766475,4.203165,3.85959,3.860105,3.52001,2.8832216666666666,2.8832216666666666,6.556585,1.617455,3.31654,3.39325,2.386075,4.6472,4.113235,3.01464,3.190865,4.92181,6.811415,0.7184754545454545,4.504755,2.29893,2.901396666666667,2.7769433333333335,5.57975,2.65998,1.9565525,1.22854,2.1313203030303027,4.028095,4.3851,3.888165,6.46715,5.0416,6.40685,2.40553,1.80736,3.760985,2.90633,3.08071,2.1059933333333336,1.326345,3.051353333333333,3.105313333333333,1.6664100000000002,2.477113333333333,2.443035714285714,3.5464436263736268,2.740005,5.32065,3.32463,1.3508825,3.974545,3.353935,5.33245,5.06285,5.1151,4.431875,2.0058433333333334,1.4797133333333334,0.5864657142857144,1.49582,3.41284,2.52593,3.703313333333334,1.5359233333333335,2.58242,2.3752,3.409285,3.36854,3.69668,4.01182,1.6363075,1.3682525,1.8990175,2.111805,1.42131,2.62485,7.0094658333333335,4.788775,5.17825,2.894085,7.637490000000001,4.89036,3.219435,3.11819,3.39664,2.68875,3.573765,2.2487666666666666,7.10808,0.8970016666666667,3.30869,6.44745,4.02437,4.927905,5.59535,1.5232266666666667,3.4068,3.1209366666666667,2.9305133333333333,1.804575,3.976065,8.56472,4.56989,4.310745,3.976295,3.2463,4.914,0.8712300000000001,2.7669833333333336,5.4289,6.380083333333333,4.42992,5.10735,2.90449,3.9117333333333337,2.94768,5.0868,4.68143,5.698611952380952,5.698611952380952,0.8917142857142857,3.8874666666666666,0.934366,1.1282816666666666,1.9439575,3.7033,3.932892,5.161904857142857,2.035293333333333,3.0278648571428572,2.9435028571428568,3.17508,2.62339,4.636333333333334,3.1968266666666665,1.876045,1.876045,3.470755,2.956253333333333,2.7039266666666664,3.72079,3.33123,0.6915366666666667,3.367266666666667,2.7114366666666663,2.966343333333333,2.7604966666666666,2.620925,2.4352666666666667,3.182316666666667,3.1993833333333335,0.883415,2.7019800000000003,6.353320285714286,2.1867,7.848194166666667,1.553146,1.553146,3.5299086666666666,3.346633333333333,3.4797999999999996,3.0850899999999997,1.7197179999999999,1.3157714285714286,3.2411166666666666,3.430266666666667,1.5621783333333334,1.6237,2.93727,2.8392239999999997,3.0189733333333333,1.775595,2.160125,3.03903,2.20839,2.815155,3.433,1.706745,3.649245,3.150885,6.92056,4.740595,1.744845,4.020245,2.66801,2.11671,3.885655,2.6270666666666664,2.646905,6.8909275,0.7961230769230769,0.6480391666666666,4.95483,1.452444,1.452444,3.911405,2.450105,5.14095,3.704915,1.4204366666666666,2.575364,2.7739666666666665,2.5697923333333335,5.1375,2.76741,2.635056666666667,2.46176,1.516625,1.516625,2.57539,3.89864,3.766166666666667,6.3668,3.2087066666666666,5.26555,4.758945,6.9157,4.915725,2.439475,2.738186666666667,2.6350466666666668,2.6011533333333334,0.7146188888888889,0.7146188888888889,0.7146188888888889,3.14902,4.678505,4.162215,1.14842,1.14842,5.29305,6.4626,7.48821,22.830037555555556,12.4292,8.3243,3.885825,5.7537,2.459195,4.713265,2.5061833333333334,3.365266666666667,4.446533333333334,5.560402,2.108805,2.32171,6.70533,2.2035799999999997,2.2035799999999997,6.8474,3.688325,4.458195,1.9156575,4.9271275,4.90184,4.569835,5.41915,3.980815,1.8039033333333334,6.2945,9.26575,1.8039033333333334,1.9156575,2.04419,0.84931,0.84931,1.78463,2.34614,1.78463,5.2071,5.9951,6.2672,10.098,1.9156575,11.741544166666667,6.35515,6.3557,2.459195,3.251335,4.83975,9.69807,3.117205,4.267235,6.23695,3.515275,5.31825,6.36625,5.02905,5.52225,5.5862,2.50155,5.4174,3.84725,4.388385,4.12844,0.78447125,1.501474,3.017895,5.49555,4.82449,2.754326666666667,2.1054375,4.17374,5.04705,5.83295,5.3052,5.37715,4.33088,3.189565,4.191935,3.74606,2.06497,4.911805,1.889475,2.53061,3.4018,2.4380166666666665,3.897565,4.611685,3.555525,5.06755,3.011655,6.7517933333333335,0.9667944444444445,3.317865,2.327625,1.554857142857143,5.666148,1.6537833333333334,1.38183,2.7681166666666663,2.833322,3.10127,2.858586666666667,2.08836,0.7582336363636363,2.3180333333333336,2.46775,4.120325,0.7843076923076923,7.800996666666666,1.7956466666666666,1.130088,3.6976,1.130088,3.833685,0.8277054545454546,4.38554,2.9282333333333335,1.87249,4.375494,4.1592115,4.1592115,5.0546,2.6763,3.222388333333334,2.6725666666666665,1.7332319999999999,3.8472,3.68807,1.9939133333333334,0.8001041666666667,7.507812692307692,2.735075,3.68442,4.300655,7.47364,2.734825,4.044025,3.74741,3.050945,3.791355,5.80025,6.57359,3.94855,5.40955,5.46035,2.9503033333333337,4.642175,4.0556,4.54039,1.1432333333333333,0.5033014285714286,3.08606,3.384866666666667,2.869543333333333,5.71905,3.807485,4.47925,5.0643,4.784505,3.898585,4.56634,1.1941700000000002,2.12335,9.493333333333332,2.4255333333333335,1.8904566666666665,3.85382,12.233933273809523,1.511485,5.13025,6.19985,4.74401,3.19294,2.2251266666666667,3.2769866666666663,4.16452,1.0985366666666667,3.498366666666667,3.881815,0.4400884210526316,2.210713333333333,5.1909,4.37223,2.40639,4.134845,3.038345,4.971182499999999,1.37664,0.5447954545454545,3.5945424999999998,1.2017399999999998,1.07519625,1.07519625,1.07519625,1.07519625,1.5150949999999999,2.6120033333333335,2.57865,3.314133333333333,5.52915,3.5591000000000004,4.80588,3.52446,4.20348,3.55253,3.88121,1.3910866666666666,7.33268,2.29778,5.2853,5.381403333333334,5.0683,5.211987499999999,3.3676,2.8107966666666666,2.69819,3.70504,1.1888699999999999,4.959643333333334,2.5729833333333336,5.0329,3.038456666666667,2.5781666666666667,3.70489,3.539605,2.87958,2.4303500000000002,2.803926666666667,1.499535,0.44650999999999996,4.87568,3.24882,4.02521,3.462975,3.89012,5.9442,4.38207,0.5388461538461539,3.337126,7.800609333333333,2.193163333333333,2.27032,5.698598333333333,4.980775,2.8014266666666665,4.9144,5.2589,3.995125,4.77334,4.420265,5.2677,5.0821,4.905285,3.445075,5.3978535,1.514278,1.6296666666666668,4.31656,3.772095,4.64183,3.154385,5.21225,5.20945,3.825405,3.20964,16.19454873119234,1.3554235259497056,1.184915,1.9779668181818182,0.50583125,0.5193306666666666,1.4306125,0.328564705882353,1.320774,3.0649433333333334,1.369634,0.9502,2.1163558333333334,0.8948833333333334,2.1163558333333334,2.1163558333333334,0.8948833333333334,0.8562923076923077,0.6865607142857143,2.89661,2.57406,4.571885,4.66467,2.84212,2.6603,4.08281,5.30415,5.4004,2.826315,4.37929,0.7610142857142856,2.3347153333333335,8.789988333333334,4.612355,6.9508383333333335,2.67597,3.862315,2.35786,5.42245,5.38555,3.064965,4.249295,2.79111,0.9914866666666667,4.597065,5.23945,0.861464,1.266048,1.6093149999999998,2.3154033333333333,2.53068,4.26791,5.58125,2.2498925,2.2498925,3.576781944444445,6.27274,2.10907,0.6476936363636363,0.9572957142857142,2.127353333333333,3.7144999999999997,0.9901057142857143,0.9901057142857143,0.9901057142857143,0.3748730769230769,1.0864328571428572,3.177875,6.5402,4.0869333333333335,4.275868333333333,5.49325,1.0958999999999999,3.5317333333333334,3.3708666666666667,4.048033333333334,6.03615,2.8539133333333333,7.788933333333333,5.24175,1.1962666666666668,3.8465333333333334,1.934044,2.69719,2.34877,6.9248199999999995,2.85375,4.568345,2.3244225,4.405425,4.279535,4.52027,0.42539666666666665,2.7767166666666667,1.3869433333333332,2.596973333333333,4.0198426666666665,2.09145,2.7466833333333334,2.2198266666666666,2.50209,2.5060866666666666,2.7160233333333337,2.738713333333333,3.0782333333333334,1.345496,2.30694,2.6218,3.13381,2.6585733333333335,2.131435,1.81315,1.91137,1.7814,3.247875,2.223123333333333,2.80266,2.148406666666667,2.30997,2.78929,0.8277444444444444,0.8277444444444444,0.8277444444444444,2.8236899999999996,2.5437833333333333,2.999166666666667,3.0161200000000004,2.583536666666667,1.9013566666666666,4.09263,3.5399916666666664,1.354535,2.5580333333333334,2.8165099999999996,3.3867000000000003,1.586342857142857,7.0337,4.72037,3.142965,3.9124,3.33172,1.7072975,0.5263971428571429,3.038895,3.705145,3.3867000000000003,4.79993,4.16441,5.5403,2.920916666666667,3.985045,4.186355,0.833488,2.84991,3.33192,4.7272091666666665,4.826895,3.561855,3.154965,2.327215,2.0597766666666666,2.59531,0.6248925,5.616804166666667,2.641075,4.632805,2.81836,3.82622,2.810313333333333,2.365886666666667,2.887031,2.887031,2.6077766666666666,2.1603333333333334,2.6598366666666666,2.0253866666666664,4.558755,1.44078,2.51707,3.636435,4.27496,3.983225,5.37675,4.82438,2.5562,1.994635,3.164715,3.08213,4.313015,4.969985,2.850115,1.0009657142857142,1.0009657142857142,4.398,3.9173679999999997,0.947138,4.33979,0.947138,4.268825,3.988205,5.05915,3.51693,3.066755,6.156835,4.291645833333333,5.8802,0.9754928571428572,0.9754928571428572,2.16158,4.791758333333333,1.5288583333333332,3.2629,3.36093,1.1108557142857143,4.399735,4.27308,6.059775,6.059775,1.0987633333333333,4.26065,5.29395,5.4064,6.2724,2.121495,2.121495,7.1921,1.0382090909090909,7.26715,1.8432,6.350630000000001,2.43979,2.4097233333333334,3.52348,1.59737,2.1362033333333335,2.55127,2.9816299999999996,2.9073702380952384,6.631132000000001,1.966038,5.00385,3.17986,2.621376666666667,1.7904,2.18902,3.298055,3.465775,3.47303,2.761525,2.298745,2.146725,2.573725,1.052554,3.14709,2.104685,3.20213,2.114801,2.114801,3.042895,2.1836266666666666,3.777605,3.563075,5.16635,7.657536666666667,4.226655,3.38584,6.448342500000001,1.91145,3.3211166666666667,2.18525,1.5594714285714286,1.75403,4.48494,1.6564516666666667,0.499075,0.6362983333333333,4.110615,4.488035,2.87712,0.9588122222222223,2.978725,2.8352033333333337,5.31865,2.02938,1.8767,1.1492111111111112,4.943915,3.12266,4.705165,0.632428,4.285749583333333,4.4955,4.18881,4.561185,3.451515,3.764445,3.1408,5.3594,3.590245,2.611326666666667,2.599693333333333,6.081366666666667,6.66092,0.74632,4.244065,3.966755,5.31865,3.7975999999999996,3.6859333333333333,2.861175,3.4401666666666664,3.8881333333333337,6.26182,2.8392239999999997,2.59602,3.45436,5.1958,2.59778,2.4890025,8.291586666666667,4.62184,2.1448833333333335,4.883895,4.5469,1.7751639999999997,3.78327,1.5103875,1.8062714285714285,4.32595,3.762415,5.75365,3.3493666666666666,4.450375,5.46655,6.4646,4.4225,5.11665,3.997595,5.52865,4.66325,4.591025,1.101505,1.101505,7.77314,0.748635,1.974059246031746,0.748635,0.6769683333333334,0.38823888888888886,2.6510275793650795,2.51802,0.48979285714285714,1.974059246031746,2.126355,3.326525,2.1612347222222223,3.41913,4.470735,7.205195,2.0629,2.018875,2.152965,4.9565,5.3688,1.785645,1.8587975,1.85097,3.7097675,4.120235,2.47248,4.429225,6.482927500000001,0.4543011111111111,3.822745,0.752399,2.9375633333333333,2.4548725,4.07703,1.2831,4.18977,4.7251375,4.230295,3.108935,4.19554,5.6239799999999995,1.809495,3.231055,0.7225761538461538,2.81761,2.40451,1.218254,3.0946933333333333,2.458486666666667,2.473333333333333,6.34915,9.165495,2.9634845454545453,3.608545,3.283015,7.65067,6.123005833333333,3.385533333333333,4.05923,3.46368,6.30005,5.88175,5.64005,6.20585,4.037975,6.0656,2.632353333333333,1.5699175,1.7971899999999998,2.3392933333333334,4.048365,2.4104033333333335,0.22183000000000003,0.22183000000000003,0.22183000000000003,30.71359980952381,0.22183000000000003,2.7463300000000004,0.22183000000000003,0.22183000000000003,0.22183000000000003,3.2891833333333333,4.088125,0.22183000000000003,0.22183000000000003,0.22183000000000003,0.22183000000000003,0.22183000000000003,3.2057,5.05834,2.97976,0.316974358974359,0.316974358974359,4.38257,4.309058875,4.368420208333333,3.346148652777778,4.14751380952381,8.045933333333334,11.160082225718726,6.894000666666667,8.670693333333332,6.710051339285714,2.775873333333333,6.374676666666667,4.482936666666666,4.576348012820513,0.316974358974359,7.991926666666666,6.832547619047619,7.0228600000000005,2.4228175,8.559561839285715,15.442024434523809,17.53089480540293,56.363744591806885,118.00060133774151,1.36588,3.3521,3.169,3.9272662380952377,0.316974358974359,1.7885205128205128,8.364803333333334,15.023713297619048,19.736708888888888,49.409672383876355,13.212588172619048,2.780175,0.2672779310344828,0.2672779310344828,4.339343333333333,2.6503866666666664,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,6.02668,0.2672779310344828,0.2672779310344828,0.2672779310344828,2.89268,2.104363333333333,4.368325,3.665025,4.034079999999999,5.6216,2.4491275,4.1384,5.05435,3.12825,1.5254933333333334,3.488005,1.01223,2.2528675,2.1679666666666666,5.224733333333333,6.574943333333334,2.83107,5.964948166666667,0.45601166666666665,0.495718,2.53099,2.9193700000000002,2.941445,4.29301,3.20236,7.57274875,3.57928,3.39627,3.24757,4.05791,3.246555,3.214615,5.0278,2.22514,0.4711246153846154,0.8714827272727272,4.374855,1.82889,3.747725,3.71236,4.497895,3.56982,2.551775,2.583875,0.5772773333333333,0.802234,4.136245,2.6284733333333334,4.41102,3.883505,4.450481666666667,2.76099,3.0159,5.38835,5.1399,3.044425,0.901460909090909,2.9572066666666665,3.75026,2.181165,0.94229,1.6695566666666668,3.68688,5.3899,1.85795,2.820415,4.15823,4.78874,2.517565,2.4275266666666666,2.57086,3.87041,2.376825,4.007425,0.7028085714285714,2.2244466666666667,3.17166,1.723055,5.968148333333334,4.21769,4.340595,5.0819,2.76653,1.9867,0.6249554545454545,4.927335,4.16665,4.932935,2.4873,4.62208,3.749765,2.86168,2.88241,1.3337357142857142,4.96761,1.9607,2.73575,9.20648,4.583755,4.974255,3.4632,0.9201666666666666,2.961225,1.221992857142857,3.237385,6.6961,5.4432,4.982455,3.95159,5.29835,4.472465,1.83077,1.8210199999999999,5.36115,3.149986666666667,3.5810999999999997,2.372605,5.04895,4.90251,1.4628933333333334,3.4407333333333336,2.76589,2.7889,3.08646,9.32083,4.42567,1.7162,4.789255,6.23529,4.208405,3.966695,4.053265,4.433555,4.90783,8.248535,2.3375,2.85187,3.67199,4.344035,2.78679,3.144395,4.69073,3.88241,3.624085,4.144017333333333,18.563386333333334,2.85458,2.34239,3.3157766666666664,5.631394666666667,1.0552775,4.49572,1.9838275,4.71307,1.535705,4.372075,4.18097,3.84872,0.9559175,4.34049,4.562075,1.670305,4.633789545454546,4.768905,1.1514614285714286,3.652905,2.090205,2.291955,1.566525,4.200245,3.783575,4.73172,3.616795,3.0849266666666666,4.369915,8.008616666666667,4.753835,5.0433,5.3237,3.2912233333333334,4.51561,5.24975,6.708368,0.9123279999999999,0.9123279999999999,4.616155,4.57101,2.5727766666666665,1.5763266666666667,7.459795000000001,4.20912,3.980215,3.85697,4.517855,4.808195,3.479745,3.962425,6.470159,4.34309,4.83502,5.1041,1.5392142857142856,2.8246,4.501895,5.34205,3.3926974999999997,0.1947175,1.9192275,2.4742375,2.5459466666666666,2.03672,1.0266377777777778,1.33395,1.2540225,2.26608,0.6057744444444445,1.4459428571428572,1.954465,3.750825,3.7664333333333335,2.3954999999999997,3.034993333333333,2.908103333333333,2.7775933333333334,0.663878,0.944395,3.52895,4.7316,4.167545,3.34255,4.481605,4.818,4.88051,2.26774,4.201725,5.134,4.54914,6.358435,3.89921,0.5082947058823529,5.74225,4.557175,4.465795,5.27375,3.178695,2.03352,3.61735,4.11841,2.85223,5.192879166666666,4.359925,1.3725116666666668,5.192879166666666,3.927,6.7240625,3.950655,1.2589555555555556,3.694715,5.25285,4.20791,2.714793333333333,5.5653,1.433795,1.9912325,3.9149,3.40393,0.7771144444444444,4.859865,4.89632,3.81124,4.12036,3.17151,3.3535333333333335,1.87575,2.320275,3.16379,3.49422,4.236933333333334,2.4671333333333334,2.2264675,2.1490663333333333,5.254,1.5032857142857143,0.8313999999999999,6.59267,4.080915,1.445018,2.797223333333333,2.7013,3.3707,6.9072499999999994,2.5186144444444443,0.889651,2.802675,4.95216,2.666166666666667,4.594785,5.6219,4.978505,4.503615,4.00148,5.44285,2.1223233333333336,2.2376566666666666,1.6458766666666669,2.12258,1.86932,2.55033,2.248136666666667,1.7382925,2.6849,2.939715,3.836855,6.3303,5.3635,4.252655,4.51362,3.86204,4.54993,4.407315,0.90781125,2.52459,5.18315,1.16543,0.6956,4.584725,3.92696,2.4199800000000002,3.2873300000000003,6.605074999999999,3.99719,1.03346,1.3011057142857143,0.6792977777777778,4.017839166666667,2.2305466666666667,2.7244466666666667,1.1878528571428573,3.4911666666666665,2.582273333333333,5.6304,4.874345,4.516115,5.22665,3.697045,1.3043916666666666,3.625115,2.2335966666666667,3.58245,4.087385,3.73406,2.8224733333333334,3.3427000000000002,3.0441633333333336,5.07745,3.84102,3.18016,2.41708,8.32715,10.683394999999999,4.376525,1.2895771428571428,5.6245,4.52363,5.2593,4.310185,4.125315,3.736885,3.2834,4.14529,3.672526770833333,5.0865,3.62269,4.077465,4.51004,1.997398,4.986125,5.81615,4.77377,3.1833,3.25298,7.084195,0.68683,2.6094033333333333,2.6645166666666666,2.2701266666666666,5.1843,2.81893,1.4385583333333332,4.496335,3.7809000000000004,3.590825,4.89471,3.7104833333333334,6.80001,3.25149,3.026453333333333,3.3549333333333333,3.0108566666666667,4.055075,2.06662,2.097306666666667,3.190136666666667,3.92269,3.4580650000000004,1.9561425,1.5785975,3.4470489285714283,3.083114,1.029647777777778,2.6281166666666667,2.6281166666666667,1.35368,5.92225,3.093485,3.23848,3.54133,3.381725,3.317205,3.255565,3.07942,3.14085,2.3777733333333333,0.560636,3.19151,5.8346475,3.123455,3.716355,3.161695,4.046375,4.11083,3.123825,3.070155,3.50587,3.734845,3.0852,3.622625,3.57552,2.5324833333333334,4.00754,3.856015,8.66476,3.435105,3.54552,3.19233,4.01472,3.96019,3.496405,2.302995,3.552885,2.617005,3.153755,2.911875,3.061905,3.797165,1.86564,1.86564,2.20976,3.081335,3.125705,1.510698,2.38006,3.517565,1.6913399999999998,2.94174,1.510698,4.627425,2.969835,3.81443275,3.02661,3.36177,2.31487,3.328815,3.956085,4.62305,3.143035,4.39095,3.69919,4.19763,3.580625,2.98943,3.159125,3.75323,3.914775,2.6109633333333333,3.702985,4.8335,3.904265,3.62397,0.39307826086956527,3.56961,0.4552866666666667,3.768005,3.563365,2.92604,3.689245,3.711035,5.987584999999999,3.182835,2.5187233333333334,2.2896733333333334,2.788233333333333,0.882284,6.278565,3.063095,3.45737,5.21165,2.02201,2.579405,3.264855,3.186385,6.605729999999999,4.479,5.14395,4.15107,4.436345,4.56728,3.44947,1.4324066666666668,1.582524,3.900835,4.58222,5.7936725000000004,2.4344333333333332,4.76638,1.79437,3.5673999999999997,3.53336,1.8985609523809526,3.94531,4.49328,3.5155666666666665,3.9273000000000002,3.328863333333333,4.366795,4.98349,3.3942666666666668,4.39155,4.97629,4.97765,5.0175,4.65559,4.07863,3.14409,4.668835,2.712525,3.3026400000000002,3.3026400000000002,4.3545,2.6880966666666666,3.893005,3.1344066666666666,4.185585,3.5227,3.40163,1.854095,1.8425733333333334,1.16234,1.16234,1.880256,3.5291,1.7019866666666665,2.79828,4.718735,5.094074,3.5511666666666666,4.60425,5.78241,2.996835,2.9658,3.3341999999999996,1.5199,4.42556,3.965325,5.942667500000001,1.7571899999999998,5.6642,5.7361,3.3717666666666664,3.254005,4.290455,6.51113,2.46684,2.4722525,4.16483,0.46885571428571426,4.532455,3.924885,4.89174,3.717215,4.01157,1.653174,1.658924,3.89029,4.125735,2.3681933333333336,3.74237,4.49722,4.123585,1.21623125,3.68933,4.341635,3.660275,5.2316,2.9834066666666668,5.41026,3.741965,1.546878,3.551405,1.2216266666666666,2.66349,8.014363333333334,3.26011,0.8236409090909091,3.516835,4.629465,4.22343,2.2179725,2.2179725,4.82393,5.8132,2.96001,0.49185000000000006,1.916725,4.36306,4.40811,4.423185,1.728522,2.7749666666666664,3.475165,1.1723441447368421,1.1723441447368421,1.1723441447368421,0.7307253947368421,1.308800394736842,0.578075,1.1723441447368421,0.7307253947368421,0.21874789473684209,0.7968228947368421,0.21874789473684209,0.5119775,0.5119775,0.5119775,0.5119775,1.1352054999999999,1.07722625,2.3304133333333334,2.31009,1.1048883333333335,6.148944999999999,2.65057,5.870583333333333,2.8992233333333335,3.85919,3.01955,3.179285,2.59106,4.85813,2.7273833333333335,4.53115,4.01267,4.587045,2.3630725,3.96104,4.900125,3.981325,3.379395,4.882635,3.36505,4.50068,5.3683,5.23495,6.01015,4.778455,1.19278625,4.323595,3.79172,2.514975,16.033535,4.27609,6.05805,2.8677799999999998,7.29815,3.884705,4.73961,4.503665,3.332005,1.0166825,2.53773,4.002145,4.54008,4.912225,3.18211,4.022835,2.87306,3.930675,4.87585,4.07666,6.485126666666667,9.32091,1.2710371428571428,3.506315,4.110315,3.48355,3.42814,3.61936,7.08535,2.793305,3.21541,2.617625,3.828445,3.60105,4.75168,2.377745,1.7110025,0.880518,4.98554,4.84454,3.86736,4.358545,3.7665,4.90987,3.76933,6.3201,5.34755,3.980145,5.21575,3.64994,3.09471,3.20839,3.45205,1.7321125,3.882495,4.73278,5.01255,4.855577500000001,4.855577500000001,2.320085,1.7321125,2.417375,3.19978,0.6835883333333334,1.5296983333333334,0.84611,1.5239675,2.77273,0.389191,3.154055,4.524885,1.5239675,3.1253655,11.17399,6.550325,2.3560958333333333,1.04619,1.6589166666666666,4.541005,4.22012,6.170340476190477,1.93389,2.18097,4.55738,4.420575,4.943515,2.0244566666666666,5.3512,3.7450666666666668,3.464135,5.17785,7.251746,3.83128,2.4720675,2.75164,1.5854033333333335,4.31308,5.696054999999999,1.75238,5.7843,4.24247,6.33044,0.5656106666666666,5.07991,3.777355,4.170645,2.41969,2.612815,6.94985,6.868633333333333,6.1117,1.8069333333333333,1.8069333333333333,1.8069333333333333,5.8872,5.45235,6.47135,2.85837,2.595585,2.4838807894736843,3.74322,3.101165,2.5094785,1.759645,2.5094785,6.8830885,4.340963333333334,4.258819761904762,6.48555,4.258819761904762,4.258819761904762,3.0350014285714284,6.21284,5.291347,2.810612,2.810612,2.603645,5.45145,2.736275,3.47725,5.3489570833333335,5.3489570833333335,5.3489570833333335,7.12373,3.5972524999999997,3.38309,3.5040750000000003,3.5051125,0.85402375,6.8937333333333335,2.55277,4.88857,3.341545,13.591163333333334,4.3203,5.430430833333333,6.58993,2.5861,3.35635,1.0586983333333333,5.430430833333333,3.325355,1.58806,1.58806,3.042365,5.175909166666667,1.724425,4.638308333333333,0.817333,1.3903316666666665,0.817333,1.9279325,2.541758,5.215897999999999,3.427,1.3903316666666665,3.032555,4.64977,0.913835,3.31303,4.31725,1.875205,4.069731666666667,2.609215,3.148375,2.51386,1.0009000000000001,3.65146,2.540425,2.155415,1.6365733333333334,3.1231683333333335,3.954205,2.891955,3.623995,1.2790288888888888,1.2790288888888888,1.2790288888888888,3.298825,2.60299,2.60299,2.757315,3.73719,2.1624966666666667,1.2483875,1.2483875,2.956345,4.3076574999999995,0.7999725,1.4156233333333335,2.803985,1.46759,2.8832133333333334,1.0009000000000001,1.0009000000000001,2.0743125,1.0009000000000001,3.2426641666666667,0.7585850000000001,3.2426641666666667,5.879905833333334,3.422645,2.30362,1.7022969444444445,0.6955083333333333,2.3978052777777776,3.46002,2.3978052777777776,0.8872744444444445,3.263455,3.758735,3.75637,3.17719,2.5148,3.581645,1.8773566666666666,0.9524266666666666,0.52264,0.9524266666666666,0.42978666666666665,0.9524266666666666,0.9524266666666666,4.696235,5.11525,5.08245,3.554455,5.03095,4.37747,5.58015,3.540395,3.81372,1.3486285714285715,2.3394233333333334,3.7019508333333335,3.802215,1.3816266666666666,2.7110266666666667,3.68263,3.798975,4.192795,3.83303,4.2542,3.228565,3.05598,4.268605,2.452993333333333,5.8434,3.54251,3.893825,5.003096428571428,1.0639819285714285,1.820235,3.417935,6.26,4.657665,4.329055,3.1085766666666665,4.93897,8.024435,3.4994,3.047425,3.4774999999999996,5.2818,3.985295,5.47065,5.31035,4.905145,3.27641,5.38505,4.642805,3.4748,4.450455,3.3273966666666666,2.59745,2.471006666666667,5.0662,6.59825,5.7791,5.81595,4.37239,5.11545,5.89505,0.52994,7.8035749999999995,4.638285,4.03545,3.905235,5.10905,4.299705,3.2398133333333337,2.4925875,1.38405,0.5800153846153846,1.843272,2.8590133333333334,3.552115,4.54715,4.780515,3.812665,11.928198333333334,3.584715,3.913585,2.966265,0.6915433333333333,5.40831,2.9109833333333337,1.5301433333333332,4.441126666666667,5.684473333333333,2.77349,8.27712,4.22144,2.4759700000000002,2.4759700000000002,2.4759700000000002,4.198295,8.8592,3.398655,2.3114425,2.3114425,3.318315,9.33167,1.0592375,5.37175,4.73016,4.172685,3.07253,2.17707,4.28936,3.86347,5.5908,5.89376,3.726615,2.73036,3.80301,4.38762,3.461264,1.3236375,3.1622299999999997,6.06739,3.4793425000000004,4.789015,1.02857875,3.795533333333333,2.64226,2.5402533333333333,1.797875,1.71913,2.05729,6.72585,1.945065,4.14162,5.86565,1.966038,4.68867,3.84558,4.48531,2.7230666666666665,2.27684,2.82113,4.736705,3.953246666666667,3.953246666666667,1.224315,1.63608,3.0805633333333335,4.442789333333334,2.2056507272727273,4.826981333333333,1.714508,2.73232,2.08853,1.5299225,1.5299225,5.03285,7.597696666666667,2.1967233333333334,3.2500400000000003,2.30969,5.2106,3.115425,0.772756,2.896485,0.772756,2.642265,3.29817,4.510075,6.1829,3.64696,4.708126666666667,5.9014,2.319155,1.9131799999999999,2.3807666666666667,2.2107566666666667,6.1079,4.892345,3.661655,3.6728,2.73074,4.71936,1.020385,1.0833439999999999,2.1242300000000003,1.4989866666666665,2.52009,2.726036666666667,2.2557066666666667,3.3137966666666667,3.053025,4.101485,2.528453333333333,2.379703333333333,2.6433733333333334,2.3930333333333333,2.6889299999999996,2.6778766666666667,1.94874,2.490936666666667,3.823635,3.40431,3.13441,4.019905,2.9105000000000003,2.34948,1.95602,1.3735799999999998,0.33965049999999997,0.15720739130434783,2.24266,2.0748533333333334,0.15720739130434783,4.171028224637681,2.294355,0.15720739130434783,5.961418125,2.331741666666667,5.80633,3.46084,3.661466666666667,2.205853333333333,2.96869,2.26937,4.26789,3.1108833333333332,3.2991533333333334,0.4393652631578947,3.9832383333333334,2.3955152631578946,2.861915,1.984595,2.4579975,4.359,2.674175,7.574445,5.39375,3.913035,3.7333,6.43603,5.52751,1.68963,3.907443333333333,2.032335,1.832295,6.95298,7.80537,1.12511,2.0868475,3.689265,2.622905,2.89399,3.28418,2.81321,4.1780525,2.329145,3.164995,3.28762,3.24195,7.50131,1.31042,1.922735,2.87787,3.17905,1.9854433333333334,3.338875,1.45112,3.689235,3.119605,6.43631,3.396655,8.93684,3.490875,1.56938,1.59875,3.090845,6.76412,1.736425,1.5142066666666667,5.65426,3.333715,3.930535,2.6988,2.07458,3.007975,10.28381,5.05876,6.23455,3.519245,2.424455,2.22296,3.073105,2.94017,3.270505,1.74705,1.5458066666666666,2.4124133333333333,3.45913,1.74615,3.219855,2.68503,4.184625,3.771005,3.10743,1.3520766666666668,2.57612,1.1560033333333333,1.374638,1.709275,3.07339,3.32442,3.554425,2.677305,3.803605,3.89525,2.940785,1.4017979999999999,3.406945,3.4015275000000003,3.10172,1.653495,2.854715,3.737775,1.452425,3.537975,1.5637400000000001,4.02521,4.111215,5.1206,2.74566,4.00768,1.829455,3.360135,4.478645,1.62168,1.1650542857142856,3.9816333333333334,2.636185,4.396865,4.02814,3.038965,4.38964,4.386225,2.4077533333333334,5.35875,5.2726275000000005,6.76895,4.454125,7.128985,3.848965,1.59095,2.9235133333333336,4.857475,5.8522,2.5697433333333333,7.255178000000001,1.3883642857142857,3.5061666666666667,2.135845,1.705602,2.3421266666666667,2.6936433333333336,0.38481785714285716,3.23681,2.843576666666667,3.506415,2.484155,3.3571666666666666,2.286896666666667,2.4450499999999997,2.346335,9.28383,5.142,1.637434,4.83352,2.364731304347826,0.7247122564102564,2.8556066666666666,7.9419846666666665,1.78937,4.92654125,6.379018333333334,1.8870275,1.9188125,1.4269475,4.993025,3.132115,4.441285,3.9020075,2.4953366666666668,3.601345,0.9271039999999999,2.765340666666667,4.12103,4.14605,5.361,2.94242,4.486285,4.2252,4.454,4.79133,5.89835,4.67945,4.780195,4.79431,1.6178260000000002,1.845255,2.732135,3.272065,1.1401666666666666,4.307895,2.1679233333333334,3.4204333333333334,4.352285,3.202923333333333,2.5840433333333332,1.4618833333333334,2.919356666666667,2.6691066666666665,2.79168,2.9014133333333336,1.9295366666666667,2.1115075,2.461215,4.410575,5.03155,4.258625,4.758125,3.414705,2.34294,3.21906,4.73118,3.4078666666666666,4.346055,4.461575,2.221255,4.441371666666667,1.6592566666666666,4.21106,5.205585,6.306675,5.02625,5.1927,5.61975,3.644066666666667,4.075614166666667,4.87677,3.27558,3.738034,3.545675,1.353155,3.330315,1.62534,2.178455,4.281195,5.4936225,3.738034,4.17458,3.420505,1.5288583333333332,3.64052,2.078075,2.6270666666666664,2.15542,2.737395,1.7493524242424243,1.7493524242424243,1.7493524242424243,0.5501290909090909,0.7680577777777777,2.0643844444444444,1.1259075,3.54714,1.8035333333333332,4.37114,5.43855,5.12815,3.147585,4.145745,3.00344,4.98786,1.92726,3.022455,2.546045,3.17164,5.669892,4.42176,5.86265,4.30559,0.97301,2.227855,1.3716766666666667,3.74082,3.816545,4.00838,5.045,5.5365,4.884925,5.53935,4.398755,1.675525,1.5367633333333333,5.246263333333333,0.9726222222222223,1.1673833333333332,2.8900499999999996,7.970915,2.930795,3.598565,3.069545,5.552277500000001,1.6815975,0.9996316666666667,1.524405,3.115055,3.483135,3.62649,3.76012,1.8810625,6.375235,3.0192266666666665,0.94660625,4.99063,3.3758,3.0945133333333334,2.3178433333333333,3.592166666666667,5.990840833333333,3.1176566666666665,3.2258366666666665,4.0704666666666665,2.955033333333333,3.4534000000000002,2.90512,2.821115,2.0004125,4.695545,4.74026,4.87896,1.0935266666666665,0.747725,3.6092,2.75957,0.97339875,2.4935187500000002,4.99925,4.012615,7.274695,4.5257,3.811366666666667,1.718538,3.5222,3.66982,2.7868633333333332,2.6484997142857143,4.27186,2.9274833333333334,5.202413333333334,0.9505266666666667,4.63674,1.752372,4.585915,4.214515,1.84383,1.0585775,2.97555,0.426508,3.655145,5.5774,5.8112,3.02356,1.4933939999999999,3.9234000000000004,0.7783355555555556,2.624546666666667,0.7783355555555556,3.8447,4.002445,1.4055875,1.8177025,5.1936583333333335,1.8116933333333334,3.614835,3.760735,4.169085,1.287556,1.6120866666666667,3.937725,5.45845,4.40205,2.848732,2.005245,2.9153,1.598165,1.9921325,2.0581275,2.2345875,3.90618,1.3682666666666665,1.3682666666666665,3.57461,4.825089999999999,7.926055833333333,5.033163333333333,7.68445,2.074295,3.8838,4.093495,1.6586533333333333,3.6580275,4.20273,3.834985,6.15895,3.03711,2.36963,2.8364833333333332,3.88297,1.1122725,4.07287,4.52976,1.1250366666666667,8.223453333333334,2.671275,3.24623,2.5906841666666667,3.84841,4.533995,4.266502083333333,2.82324,2.763666666666667,1.9758466666666665,3.688833333333333,2.5482,2.1846475,8.743249333333333,4.0405,3.13667,4.15788,22.87842760989011,0.6533226666666666,2.676535,4.248745,4.50681,8.3761,4.406785,4.031,4.501135,7.391954999999999,3.411695,1.5937366666666666,5.131893333333333,4.48321,1.151524,1.151524,1.151524,2.24926875,1.6118425,3.176215,1.53842,2.99765,1.5232266666666667,2.52515,2.50885,2.929665,1.53842,3.1571,2.571355,4.223945,4.8628366666666665,5.46995,0.79,3.41952,2.990835,4.8194,4.11718,2.703275,2.2399975,1.7257775,2.10708,1.3999739999999998,4.32925,1.463405,5.1522,11.674199999999999,2.969746666666667,2.388725,5.95,3.7485,4.2829,6.32695,1.95615,6.123005833333333,4.31414,1.0139666666666667,1.1509214285714287,6.677008,4.545055,2.203115,3.76849,1.852805,4.30108,5.4509,4.43789,3.887765,1.3681557142857144,4.453435,5.21935,4.579335,6.274907000000001,4.08885,5.45065,5.00725,4.186605,5.13625,3.7404666666666664,5.19075,2.037425,3.643865,3.301685,4.294525,4.196775,6.20475,4.625025,2.3263633333333336,3.3644,8.73367,4.313025,2.90963,3.651515,4.03667,4.638475,4.2838,4.95558,7.082555,3.046885,2.7400233333333333,4.1754999999999995,2.582315,4.495995,2.7308866666666667,6.511894999999999,1.530515,4.62715,4.333945,11.802985,0.5131121428571428,4.69888,4.16168,0.6328921428571429,3.679,4.18221,4.592365,0.938053,4.47233,4.716413333333334,2.50597,9.97689,3.2135533333333335,1.8659466666666666,3.24002,3.684305,5.857,0.6133458333333334,3.792315,2.030565,5.1104,0.7137661538461538,4.10341,5.5184,5.28325,3.42392,6.4119275,4.037865,3.4907775,2.49402,2.7422533333333337,4.425435,5.1496,4.93054,5.2875,5.1244,3.5517,7.52951,2.8687,3.149348,2.514725,3.62064,2.67897,1.53695,3.1372766666666667,3.6764666666666668,3.1208066666666667,3.5735333333333332,3.4423,3.2497433333333334,2.8709233333333333,5.4627,3.2376799999999997,3.681405,5.06295,3.2063733333333335,1.1309333333333333,3.004913333333333,2.8897866666666663,4.227545,3.25116,3.2787400000000004,4.747398333333333,2.0358733333333334,1.6427225,2.99007,3.7057,4.84326,1.10978625,4.92834,3.234475,4.3276666666666666,3.1545400000000003,5.023923,3.854725,3.23801,3.66402,1.714165,3.804465,0.69998125,4.641355,5.0249,15.766892121212122,3.4046000000000003,1.1554333333333333,4.38625,0.619645,2.5522,4.34841,1.89465,1.405172857142857,3.745035,4.64632,3.29231,0.7491466666666667,2.47599,7.52868,3.90276,5.81145,5.1773,5.14615,3.6795000000000004,3.467166666666667,3.23286,6.761570000000001,4.283585,5.47435,2.3929875,0.4369511111111111,2.17433,3.08331,2.062635,3.036365,4.54307,3.14705,4.30933,0.9533,5.13205,3.500285,3.08696,1.1422566666666667,2.95635,1.9739466666666667,4.859435,3.88214,2.261705,1.6424285714285713,4.482025,5.32575,5.60685,6.255895000000001,2.15863,5.5659,5.2019,4.79108,2.4174800000000003,4.94738,6.34883,5.1587,2.322925,5.03025,3.03661,3.73218,4.13939,3.99276,1.3386483333333334,4.846345,2.3136733333333335,2.63968,5.34939,5.34939,5.0232,1.82318,4.928875,1.069745,1.741,4.63061,2.6214933333333335,1.4033533333333335,3.428933333333333,0.83773,4.4865,5.0871,3.39478,5.27215,4.33443,4.194925,5.3009,3.39586,3.4251666666666662,3.019743333333333,2.437396666666667,3.144175,3.174376666666667,4.076155,1.6881984615384615,3.1333466666666667,4.48999,4.93822,2.4461991666666667,4.081795,4.987625,5.416633333333333,3.6545,5.39005,5.12025,5.2901,4.75875,4.055595,3.424185,3.72838,5.2089,5.6658,4.87462,4.98846,4.376575,4.650235,0.7241508333333333,5.1208,4.6045,4.23489,6.6970275,4.1811,3.81205,4.299965,4.95054,3.590535,3.64272,2.12084625,4.5708475,2.327225,1.3487042857142857,3.782785,2.6206166666666664,2.460393333333333,3.9133993333333335,3.210036666666667,3.07486,1.1083399999999999,2.24245,3.988465,4.013475,1.8281825,1.8281825,4.279655,1.652556,3.1237866666666663,4.695665,3.56805,3.647425,1.4509666666666667,2.041405,3.623594166666667,2.026225,5.0763,4.70717,4.38808,4.17159,8.35127,2.8987,3.871315,4.919645,4.25542,3.0111233333333334,4.349395,4.73189,4.563965,2.17649,2.6717766666666667,4.63553,4.314375,3.697465,3.97562,1.6941175,3.47819,4.446225,4.56793,4.090045,4.224765,4.224765,3.2549783333333333,4.38186,4.51562,4.17952,1.6811219999999998,8.0078275,4.11354,5.05315,4.152635,4.30926,4.16696,5.0547,3.044835,3.544745,3.569565,5.2449,2.0633600000000003,4.958785,6.34621,5.2754,0.755607,4.774884999999999,1.21442,4.93321,4.56947,5.0069,4.517855,5.6954,3.5402666666666662,3.5402666666666662,0.949933,2.14644,5.0248,3.788265,4.54414,4.822945,5.26755,3.16778,4.554985,1.3643666666666665,3.489745,1.608425,1.19443625,4.291540666666666,0.8641679999999999,2.5607166666666665,3.2263866666666665,1.2294266666666667,2.2899175,2.6279833333333333,1.290065,6.42597,1.7570975,2.5694,4.37089,2.2146325,2.7922166666666666,4.04387,4.681625,3.7942666666666667,3.1750833333333333,4.082133333333333,1.6069299999999997,2.0688875,4.95844,0.6360214285714285,2.01111,2.390395,2.9867566666666665,2.8358033333333332,1.3499828571428572,0.7873725,2.419966666666667,4.198745,1.2515185714285715,1.9386075,1.25837,5.871178333333333,2.269245,5.02805,4.31057,4.392825,4.58402,5.34085,4.195975,4.11767,1.42997,4.048766666666666,1.791348,2.773016666666667,1.1184042857142857,4.53863,2.32086,5.931134,3.672875,3.720385,1.569504,6.3974025,4.61221,1.3837583333333334,4.028325,3.13573,3.761985,3.413845,1.942605,1.942605,3.4863666666666666,1.5805183333333332,1.5805183333333332,2.4174800000000003,2.727873333333333,2.131435,1.354535,3.6495333333333337,1.05135875,3.11704,2.386355,1.864345,1.593215,2.1802425,2.3426075,0.27724941176470586,2.463825,1.187805,2.36531,2.08853,2.5562,1.0934877777777778,1.052554,3.819266666666667,3.1312933333333333,1.942605,1.82889,2.04642,2.4962933333333335,2.454216666666667,1.819976,2.2566,1.1987299999999999,3.364433333333333,3.172876666666667,2.4760566666666666,1.537808,1.0790739999999999,2.71535,1.0790739999999999,2.71535,0.7557775,0.7557775,0.48854277777777777,2.5015,2.522346666666667,0.7557775,2.1770325,2.57115,2.2177875,1.7814,0.8277444444444444,0.7557775,0.7557775,1.6275179999999998,1.6275179999999998,2.02743,1.82889,0.7557775,2.34628,0.46297692307692306,2.74498,2.3550766666666667,2.6869433333333332,2.43674,2.43674,0.370089,0.370089,2.4174800000000003,1.96423,2.29718,2.03926,0.370089,3.4601,2.769475,1.621636,0.642125,1.621636,0.642125,5.81314,2.382286666666667,4.0850333333333335,3.2479533333333332,3.058203333333333,2.8297966666666667,3.0968400000000003,3.5743333333333336,2.3443725,1.681035,2.5752833333333336,3.4994,2.31516,1.6275179999999998,2.4769763492063492,2.4769763492063492,2.7124966666666666,2.05162,4.250915,2.35383,3.4873,2.768826666666667,1.718898,2.678975,2.46055,0.8048218181818182,1.69832,3.80924,1.77204,3.263996666666667,2.668393333333333,2.669525,3.8297333333333334,1.6652233333333333,3.705033333333333,3.05401,4.122333333333334,1.222168,0.2672779310344828,1.2873999999999999,1.2873999999999999,1.0614444444444446,3.3472666666666666,4.048033333333334,2.6400099999999997,1.9915900000000002,1.9915900000000002,2.155355,1.5637400000000001,1.0804399999999998,1.7330333333333332,1.7330333333333332,0.7557775,2.4174800000000003,2.85093,3.0269600000000003,2.386355,2.06368,2.06368,2.06368,1.0937544444444445,1.5594714285714286,1.5594714285714286,2.47221,3.102316666666667,2.8431882323232323,4.037975,2.4590733333333334,2.5308033333333335,3.610205,3.870695,7.5368675,4.00343,4.665405,3.5140999999999996,13.3398375,4.611695,3.43905,1.0703975,4.352055,3.21141,2.21342,3.601485,5.5985,8.409334666666666,6.3822,0.5015799999999999,4.044995,3.356185,4.204,2.54605,4.623815,5.305,4.127105,7.94389,3.345665,3.724845,3.77892,3.3582227272727274,8.124976871794871,3.2630866666666667,2.6234766666666665,4.05032,3.877855,5.00305,4.71055,6.28605,4.640045,1.3090600000000001,3.445635,0.88151875,5.05075,4.019615,2.728785,4.45545,5.5564,3.06244,5.0485,3.885495,8.213225,3.902395,4.696791,3.0968699999999996,5.15294,2.953185,1.412785,1.412785,3.279905,3.99744,2.11958,2.13386,3.69984,3.61191,3.98197,2.06328,2.30934,3.045375,2.597846666666667,1.191445,4.559255,5.14545,8.40455,1.7401959999999999,3.60246,4.24712,2.900575,2.7474333333333334,8.27944,4.05932,3.6524666666666668,2.9942533333333334,3.851885,3.3358666666666665,2.9905899999999996,3.0150366666666666,3.34287,3.96714,5.23615,4.32126,0.3845766666666667,1.3849933333333333,2.2416833333333335,1.755835,5.0964,3.380755,2.677516666666667,2.4012925,4.588005,4.0194332500000005,2.3781275,2.33123,0.846084,2.508475,2.57731,2.57731,5.30025,1.856215,3.0538966666666667,2.2907733333333336,2.34619,1.6142266666666665,2.67438,3.72938,4.03269,4.21272,4.640845,5.0148,2.727065,2.4033533333333335,1.8947120000000002,5.1994,5.317878333333334,2.564766666666667,2.8945433333333335,2.21336,2.8327066666666667,3.829935,2.8874099999999996,4.96089,3.937455,3.405555,4.570085,3.13945,3.54624,4.280605,2.40349,2.46399,0.4109271428571429,3.2324066666666664,2.7159833333333334,2.793225,5.6285,4.408745,6.343495,2.088205,1.75655,3.00576,5.483,6.19325,5.2042,3.3341999999999996,2.2546666666666666,5.4605,2.3722333333333334,4.56356,2.47266,2.1647725,5.29065,4.828125,5.0627,1.6248775,1.93411,1.0187979999999999,1.0187979999999999,1.893592,0.8912242857142857,0.717786,1.8259982857142858,4.433295,11.5156975,4.190925,4.777455,4.107745,5.7846575,2.6903,1.6618033333333333,3.7037899999999997,2.77537,4.49359,2.56842,2.828303333333333,3.161163333333333,3.3694,2.277816666666667,3.835933333333333,3.456466666666667,3.260066666666667,3.7082333333333337,3.4447666666666668,3.075646666666667,3.23303,3.4662666666666664,2.5324933333333335,3.21306,3.31974,2.9951866666666667,3.5973666666666664,2.30184,5.747190952380953,3.21897,4.570661333333334,3.4445,3.25521,4.0348999999999995,2.977793333333333,2.70749,3.3990333333333336,3.288073333333333,3.6096333333333335,3.5267666666666666,2.036555,2.7703466666666667,2.8035433333333333,2.922875,2.922875,3.3524,3.707133333333333,2.5350533333333334,2.7996166666666666,3.2920366666666667,4.436533333333333,2.7236833333333332,2.874575,2.5606766666666667,2.895796666666667,4.6668658333333335,5.2235,1.8327499999999999,3.4913666666666665,3.8313,3.4591840000000005,3.5873333333333335,4.037933333333333,3.5962333333333336,3.4078,3.755822,2.11278,2.8118464999999997,3.609666666666667,3.4513,2.7854233333333336,3.017526666666667,4.057300000000001,3.0152466666666666,3.2456633333333333,2.542525,1.1999783333333334,3.189356666666667,2.61576,2.4455833333333334,2.60575,3.3841,3.19643,2.1377800000000002,6.022381333333334,2.5244833333333334,0.896196,5.0815,1.9494825000000002,1.7533,4.579525,4.120575,3.382365,2.451745,1.5662875,3.365375,2.67694,3.476635,0.44188099999999997,1.985235,0.44188099999999997,1.82618,1.5662875,2.691635,3.861935,2.554375,3.677635,3.45726,0.6057013333333334,3.054866666666667,0.9529475,0.47988,4.81727,4.35451,5.03385,2.543625,6.11175,4.324115,4.02023,2.90315,3.7938666666666667,1.6551500000000001,5.8511,3.013885,3.800985,4.621935,2.8528000000000002,1.9721866666666665,2.0594033333333335,1.34364,1.872525,1.29501,1.29501,4.457695,2.253763333333333,5.994318333333333,2.2977425,2.063465,1.83958,2.2721760000000004,2.270745,5.02165,4.3252225,2.0544775,2.28281,2.2721760000000004,2.265515,3.5603110000000004,1.9334950000000002,5.632425,2.2977425,3.2869175000000004,3.105015,3.1763866666666662,5.67135,4.87479,1.918105,2.133865,2.2518175,3.16673,4.99305,5.5625,2.085905,3.888225,1.5199,1.6537625,5.49185,11.293606666666665,2.3240766666666666,2.5496633333333336,2.3302366666666665,4.89378,4.50728,1.9694575,5.1601,4.480285,3.4617,39.896473666666665,3.0485900000000004,3.2163166666666663,0.49581833333333336,5.3376325,2.1900833333333334,0.8917088888888889,4.08291,3.978895,2.1125725,1.78142,2.35864,3.98878,1.4322714285714286,3.0961543333333337,3.99106,4.963715,0.884508,5.07435,4.79133,5.24485,2.7216833333333335,1.32165,3.716785,4.504755,4.32886,3.20551,3.5656,4.363465,12.064745505050505,2.9289433333333332,2.97555,4.75249,2.83614,4.41326,3.288375,2.825045,3.369475,5.38995,4.990715,4.55868,4.957325,2.57877,3.73093,4.65896,3.693285,4.794385,4.498345,0.09620826086956522,3.392805,4.80572,2.74226,1.3222666666666667,0.8078533333333334,0.8078533333333334,2.193855,2.80335,3.699785,1.231484,2.7526100000000002,4.529175,2.61752,4.339156666666667,0.6084671428571429,4.46381,3.788335,4.95817,4.336075,4.67149,1.3644125,1.2462625,3.6272,2.9107033333333336,2.874556666666667,4.319082393939394,4.168165,6.173435,5.43185,4.411905,3.31893,2.3584091666666667,1.5464433333333334,5.5641,0.3061453333333333,3.220405,3.672045,3.988775,14.71715,1.8296787499999998,3.17716,0.62403625,4.61281,8.576505,3.089675,2.284946666666667,5.5946,3.7296333333333336,1.0393722222222221,3.717265,2.79144,2.91638,5.2682,3.3133688333333335,1.05345125,7.39541,0.7345475,5.06135,3.0756733333333335,1.33913,2.0497755,3.13988,3.13988,3.76619,4.1795488333333335,1.4316625,2.337425,2.74094,3.50095,2.961955,2.521675,3.24731,3.313865,6.5117259999999995,6.18685,3.908465,3.234055,5.24285,5.4752,4.046825,3.368095,3.410955,4.81888,4.77447,2.4657533333333332,2.5003066666666665,1.367305,2.2522800000000003,2.214955,1.516075,3.09638,3.2398066666666665,3.2323299999999997,2.9910766666666664,2.7752133333333333,1.5254933333333334,1.5519266666666667,0.4579754545454545,3.0217066666666668,1.3914071428571428,1.8850375,3.1507233333333335,2.4852233333333333,2.5911933333333335,0.9489075,2.3280625,2.460395,2.975215,3.477965,5.6301,3.756895,2.8332,2.2214899999999997,3.354465,3.92652,2.5797,3.09328,1.934365,3.830135,2.72596,3.759555,1.3897199999999998,0.612077,2.43534,3.24159,3.087935,3.94078,4.92504,9.030775,3.1501900000000003,2.458416666666667,1.73099,1.790874,1.790874,2.70042,2.43533,5.2972,4.916955,3.526585,4.811305,4.66657,4.231865,3.4330833333333333,4.66535,8.475674999999999,2.551725,0.499075,2.7065699999999997,1.3332066666666667,0.9971057142857143,2.37737,0.827092,2.19618,4.834455,5.70565,6.17402,1.08092,7.26362,2.14326,1.5112016666666666,2.9016366666666666,4.264055,3.3815000000000004,2.706025,4.203855,3.228403333333333,4.072966666666667,2.92375,2.879906666666667,2.91211,6.3543199999999995,2.483435,4.03715,3.62505,3.397221666666667,1.4890266666666667,1.0009875,4.169055,2.7488566666666667,3.264143333333333,6.635465,3.499305,2.00439,2.4680075,3.38923,3.4273000000000002,2.5902966666666667,4.51948,3.12617,4.716175,2.4044,1.84267,5.28165,5.5904,5.22425,4.83001,1.7528133333333333,2.52615,1.9879,3.322175,1.5497500000000002,1.0022533333333332,2.775028333333333,2.10836,2.2366025,4.06055,0.8635083333333333,6.167245,1.37816,0.7656454545454546,3.9369333333333336,4.17923,0.7023528571428572,3.2180425,2.898596875,0.7873725,4.692725,0.20414000000000002,0.20414000000000002,0.20414000000000002,0.20414000000000002,0.20414000000000002,0.20414000000000002,1.865282,3.9609,1.865282,1.865282,1.8484733333333334,0.20414000000000002,0.20414000000000002,3.28117,2.7634666666666665,3.85427,3.4833,2.355515,3.44292,1.6345571428571428,1.899494,3.461264,1.692492,3.3646333333333334,3.0316199999999998,6.1083099999999995,4.429255,4.04932,4.753125,5.1636,5.66725,4.644155,4.23535,7.55384375,3.6277333333333335,3.4688,2.6329766666666665,4.7986933333333335,2.542266666666667,2.1706725,1.97215,4.8522,5.00445,4.694525,5.32095,5.29255,4.84234,4.892415,0.7153963636363637,0.6828007142857143,0.6828007142857143,4.734105,2.2900566666666666,3.704085,1.0312785714285715,4.775325,1.5788,2.337683333333333,2.5939,4.540866666666667,4.540866666666667,6.816,3.594225,1.6875833333333334,12.526576666666667,3.28072,1.1050711111111111,5.0469,4.409325,2.926675,3.0069,2.955635,4.309966666666667,0.74198,3.4177999999999997,2.8562133333333333,3.583266666666667,3.1198200000000003,1.4585766666666666,1.4382833333333334,4.8965000000000005,3.274713333333333,3.0482,3.5643333333333334,5.277695,3.4781208333333336,0.760448,1.9744133333333334,3.3389,2.673278333333333,3.8164,3.490766666666667,3.1580033333333333,3.8714666666666666,3.4220333333333333,2.7393466666666666,1.0022266666666666,3.1559733333333333,3.0267199999999996,4.08668,3.372915,4.32226,2.5943366666666665,3.5972666666666666,2.8844,1.667784,1.9526933333333334,2.819947142857143,4.0526333333333335,1.7772320000000001,3.2519233333333335,1.8087833333333334,3.9845666666666664,5.290258333333334,5.054012666666667,2.54695,2.73635,3.059825,2.80115,1.7418571428571428,2.34965,3.137255357142857,2.4597075,3.882566666666667,2.689375,3.6708946666666673,3.507015,1.0871966666666666,1.2858775,1.7437025,2.19757,3.3449666666666666,3.29072,5.1846,7.0004625,3.645805,5.2484,4.74207,15.576655666666667,0.53515,11.405375,1.1129,3.12,2.4035533333333334,1.82379,2.99408,1.533312,1.4017979999999999,2.8030233333333334,1.3727399999999998,2.789298666666667,1.86264,3.267746666666667,2.2883,2.80184,1.5204033333333333,0.72818,3.3105966666666666,2.4111033333333336,2.7953499999999996,1.0937544444444445,3.853066666666667,0.7809316666666667,0.5513376923076924,2.5663666666666667,4.237055,4.88683,5.1069,0.9026572727272728,4.00112,4.59731,1.1317725,2.07637,5.830181666666666,3.38124,4.052405,3.493215,3.7555,1.9658675,3.91398,2.65998,3.04082,3.471865,2.8601,2.645285,3.80905,2.987915,3.53304,2.93282,3.337075,4.975915,1.3171,4.760635,2.26488,4.098515,5.088736666666667,2.03593,2.8080433333333334,3.2346533333333336,6.071275,2.51133,3.419105,5.962,4.0850333333333335,4.66262,1.75104,2.516475,5.0149,3.399233333333333,4.434755,3.531833333333333,3.2934433333333337,3.2577233333333333,4.090133333333333,3.2719733333333334,2.69271,2.9469133333333333,0.4428744444444444,2.1684775,2.2075375,4.983255,4.66524,3.0934833333333334,2.81807,3.504633333333333,9.937909999999999,3.41918,3.919365,3.257816666666667,3.83903,3.050165,3.792794166666667,2.8442566666666664,2.3450475,2.9492366666666663,6.29215,4.60638,2.0355466666666664,3.18164,2.79284,2.84994,4.825366666666667,1.6917200000000001,6.532883333333334,4.18384,4.883195,4.71382,5.26125,3.60688,6.651725000000001,4.53001,3.81426,0.7087642857142857,2.4062175,1.486565,2.8350166666666667,3.6159575,4.04516,3.892825,5.7383,3.068566666666667,5.00805,2.835986666666667,3.5975,3.18725,4.75859,5.15225,5.57575,2.4095233333333335,5.633466666666667,4.3634,1.5409183333333332,5.5708,3.529385,3.62748,2.21255,2.1861133333333336,4.721959999999999,1.2214857142857143,2.4405233333333336,1.9717475,4.078065,4.484205,2.53984,3.352133333333333,2.9661299999999997,2.7281,4.153655,1.338026,2.2524133333333336,2.2777833333333333,3.1795899999999997,2.4114666666666666,2.6337533333333334,2.626723333333333,3.93904,2.8825866666666666,2.70431,4.185225,2.5864,4.00488,3.45981,1.336049393939394,1.336049393939394,4.830145,3.1376633333333337,1.7606525,1.33964,2.4071175,1.8069625,1.210164,1.39797,0.685343,1.55454,1.4029666666666667,2.8692966666666666,2.2260933333333335,1.6309266666666666,1.9179766666666669,2.2897833333333333,1.4970933333333332,1.7139499999999999,1.7574100000000001,2.397155,4.043735,2.713935,3.4042333333333334,2.985575,6.06085,3.075275,4.25528,4.0059625,2.013565,4.112655,3.08875,1.85172,3.507215,2.2443525,2.72423,4.01689,2.288355,4.590265,2.21281,3.97522,3.6442,0.7802944444444444,4.024895,3.854015,3.331355,3.37223,2.5269233333333334,5.0396,5.0001,5.66217,9.151068333333333,3.968435,4.782115,3.1608633333333334,3.83716,4.22202,2.260435,2.773015,4.58251,2.4332,5.715035,1.784284,2.64906,7.843861666666666,2.944573333333333,4.15352,1.2440371428571428,4.767765,5.0354,3.3978333333333333,4.708885,5.0073,6.91748,17.025217738095236,0.6240411764705883,1.0934877777777778,3.5277999999999996,4.181525,4.03334,2.1745975,3.776005,4.1482,4.700615,2.961785,4.607775,1.7151500000000002,1.7151500000000002,5.18625,0.7843636363636364,1.943384,2.851885,3.8839,0.3748730769230769,1.9359433333333333,4.338984333333333,1.09412,2.9218433333333333,2.6563833333333333,2.85792,7.78843,2.4418133333333336,3.226126666666667,1.99007,2.27543,4.19495,3.41164,3.46207,7.609566666666666,1.79968,2.5908,4.481155,6.7770075,1.7352999999999998,2.2943333333333333,2.5961766666666666,1.3279433333333335,2.61887,1.7075325000000001,3.89438,3.74456,1.488205,1.9724753333333334,1.9724753333333334,3.280483333333333,5.6425,3.9406266666666667,3.791175,5.1158,5.81025,3.129285,3.537865,4.57801,3.524215,4.432646666666667,3.7495775,4.13081,0.9761710000000001,0.35925,5.31975,3.70834,2.4478866666666668,7.95081,1.5072,4.770566666666666,3.915895,0.3442191666666667,2.05253,1.2200966666666666,1.9042633333333334,1.9319499999999998,5.441651,2.94255,3.03008,4.495055,4.59756,4.523785,0.6023823076923077,1.951285,0.5987669999999999,5.864823333333334,1.635634,5.0322,2.2860075,3.00621375,3.119385,4.55386,4.332755,5.12905,0.9022772727272728,2.975175,4.11715,2.1830625,1.7246875,3.64522,3.600125,3.407055,3.77849125,5.519738095238095,4.544525,5.38475,2.78744,0.9099088888888889,3.6463666666666668,3.614595,0.7260907692307692,4.110155,4.821015,3.84441,2.62576,2.73625,5.08545,3.31822,3.292405,2.082465,3.850215,1.911972,5.5302,3.793275,0.6694507692307692,4.872725,4.032965,3.26884,4.40358,4.253315,3.009915,3.836485,0.6711199999999999,3.1751,3.9939211111111113,5.34945,3.577033333333333,2.494005,3.5130666666666666,2.494005,3.642385,3.059625,3.4530333333333334,1.5795783333333333,3.3747666666666665,1.975955,4.358705,3.1089233333333333,5.3483,3.3407,3.1088799999999996,3.287853333333333,2.4276410714285714,2.4276410714285714,2.4276410714285714,2.5743566666666666,0.9326616666666667,4.55468,2.3832633333333333,1.65723,3.7218666666666667,2.5740466666666664,3.1401333333333334,4.34551,5.3706,4.564275,2.17525,1.23834,3.872865,1.910388,2.513106666666667,2.93696,3.29473,2.1229125,3.55169,2.675465,1.700712,4.66543,4.09848,3.442725,3.598375,0.7359588888888889,2.3536033333333335,4.902045,7.447005000000001,5.8334,3.02407,6.9135,3.348325,3.697065,1.9288775,2.25456,5.0581,2.30604,4.66751,4.00952,4.5029,9.015966666666667,3.809245,4.048705,3.652035,4.834315,4.233395,3.6745875000000003,3.6745875000000003,4.269965,3.9097083333333336,4.1783,4.10813,4.481125,4.638825,4.449225,1.23030375,4.198905,3.9313,5.8839,7.83,4.9959,3.9946886666666668,2.0652166666666667,1.6719166666666665,2.6508125,4.648315,4.099465,4.77244,2.9920833333333334,4.621295,5.1661,5.12785,4.655675,2.9649933333333336,4.42432,4.587835,5.6972,5.34165,4.611305,7.007056666666666,4.61414,2.2577966666666667,4.94257,4.21673,4.68154,4.30513,4.983515,0.81354,4.648205,4.638545,1.3337357142857142,1.410572,5.1754,5.5709,9.239716999999999,4.887885,5.1524,6.46365,2.88861,2.98095,5.27325,1.8481625,1.8481625,2.53455,1.5798366666666668,2.886206666666667,3.416,1.921795,4.3520354545454545,1.3653666666666666,2.20772,5.8614175,3.376446666666667,3.542575,2.964425,3.881165,4.292935,3.076843333333333,1.0832600000000001,3.897715,3.13861,3.85007,4.28274,4.0661716666666665,5.9352,5.7655,5.45615,4.493115,4.99372,6.6063,4.846935,3.01291,3.718855,1.990455,1.990455,3.795185,4.12595,2.4311233333333333,2.67788,2.3029349999999997,2.9910099999999997,1.9221899999999998,1.9221899999999998,4.518395,3.39563,2.205785,3.50059,2.622345,1.771505,1.23304,1.2753333333333332,2.674725,0.4529778947368421,0.848268888888889,2.494055,4.295995,0.44579454545454544,4.044305,1.93708,5.31405,3.633815,7.7216825,4.398565,5.381403333333334,4.962485,5.48775,4.17014,1.88668,1.9859339999999999,4.64506,3.10374,3.810775,1.1901466666666667,4.366355,4.556945,2.623175,2.49331,2.96628,4.15548,3.643925,3.54081,3.81122,3.51576,3.287965,3.637695,1.0864328571428572,1.814105,2.42067,3.013935,4.30188,7.72704,0.8781599999999999,1.4618900000000001,1.4618900000000001,1.8035340000000002,3.83693,2.81016,2.893295,5.6565525,2.7980633333333333,1.35969,1.35969,1.35969,2.93,3.1253655,4.39158,3.239335,4.082405,3.317745,3.65997,2.905845,3.261405,3.67547,3.74316875,2.5761000000000003,1.210164,3.07399,2.5761000000000003,3.51405,1.4795166666666668,1.8859466666666667,2.2103275,5.261577333333333,2.661905,5.997619,5.261577333333333,3.335714,2.0537983333333334,2.0537983333333334,3.076065,5.66601,2.0537983333333334,2.263195,5.42757,2.216015,2.614285,5.11863,3.555985,4.36037,1.56918,3.64257,4.44678,2.0156033333333334,2.26295,3.8167,1.56918,2.501435,1.997775,5.70908,2.523205,1.137752,2.515575,3.22474,3.185892,1.877215,1.935962,3.62264,1.953112,1.78569,3.13034,2.21211,3.38992,3.9322,2.2367766666666666,2.903975,2.33602,5.71912,2.420175,2.838785,3.44778,3.44778,7.9693266666666664,0.9825266666666667,3.119955,2.643125,3.15568,2.38338,1.3012133333333333,1.3012133333333333,3.1791,2.09803,6.774865,2.181185,3.455025,3.22603,5.96797,2.579585,2.42373,6.05253,6.05253,2.58646,1.5097925,1.3635725,1.3635725,1.5097925,2.087223333333333,1.3175566666666667,1.1919816666666667,1.5347733333333335,1.8130633333333332,3.771665,1.717275,3.30442,2.975095,2.92325,2.764725,2.663285,2.266775,3.313296666666667,3.313296666666667,5.91706,2.540725,2.81867,2.521895,3.648425,2.52246,2.596325,2.440075,5.2097425,1.5701725,1.5361433333333334,1.3401433333333332,2.2670466666666664,5.3935,4.223303333333333,3.614063333333333,3.023885,1.8685725,1.8685725,1.8685725,4.96889,2.30951,1.1919816666666667,3.052255,3.448565,1.2131075,5.3129275,3.04755,6.22467,3.22453,1.615325,3.353245,3.1356033333333335,2.14827,3.485415,4.53095,3.35023,1.66214,2.36905,3.18415,2.96171,4.55713,1.94507,3.1779,2.694195,5.69347,4.06305,2.011145,2.441655,5.49817,4.87675,5.15724,5.21311,1.071258,1.071258,2.5595290000000004,2.5595290000000004,0.8626340000000001,5.01833,3.33476,4.67745,4.15611,4.83603,2.069295,4.309753333333333,4.309753333333333,2.240705,3.30067,3.233785,1.130088,4.83798,3.139415,3.209175,2.61932,4.60587,2.476435,1.943285,3.366865,2.713565,2.95188,4.37939,2.57447,1.93087,3.75524,5.83346,5.7331,4.18252,2.516955,3.36486,2.776845,5.23587,2.55089,3.64198,2.385705,6.8089,4.48014,2.14871,2.572365,2.298615,5.26117,2.0732,2.55987,2.784405,7.17145,5.09305,3.193335,2.3273,2.011015,6.38776,3.04793,3.01974,5.06791,3.073975,2.95109,2.721945,2.918865,1.9672466666666668,1.957935,1.8529866666666666,1.5107466666666667,1.78665,1.7601966666666666,1.709275,1.90934,1.71003,1.9672466666666668,3.89694,4.31171,2.189485,1.7726950000000001,1.7726950000000001,3.516426666666667,3.516426666666667,3.0765599999999997,3.0765599999999997,2.633205,2.38229,1.84772,3.66746,2.1377475,2.1377475,2.3387425,2.3387425,2.77675,1.91268,4.3621,2.26232,2.98079,2.0945066666666667,2.0945066666666667,1.453035,3.78769,5.23388,1.4795166666666668,4.92749,2.2367766666666666,1.67554,4.42239,3.18969,1.782485,2.525665,6.61341,2.008005,5.89547,2.946835,3.242195,3.11203,2.63265,6.24111,3.11346,1.95238,3.3597346153846157,2.80958,4.94261,3.432315,1.500904,1.500904,3.46558,4.9798,4.41951,5.29382,2.7242,2.656595,1.69353,3.07915,1.81989,2.849405,1.74948,0.764286,0.764286,0.764286,2.2351125,5.34372,2.2351125,2.041425,3.59137,1.709125,2.34907,3.89571,3.40415,5.01911,1.6549133333333332,4.70507,1.6549133333333332,1.6549133333333332,2.05301,2.219485,2.06684,6.28519,2.06684,2.33734,3.86359,2.10152,1.772345,2.728925,3.050573333333333,3.289180833333333,3.4868666666666663,4.44191,1.4585783333333333,4.80181,0.79234,4.56394,4.752275,2.57695,2.57695,0.7625218181818183,3.910266666666667,2.7987366666666667,5.9411,5.10535,3.84545,4.647785,4.53514,4.30824,4.824005,4.457335,4.081945,3.66931,3.97959,4.85941,5.4936,3.31864,3.546635,3.916415,2.7920466666666663,1.391216,4.462985,3.892885,3.2824,1.4628428571428571,3.80388,4.134485,6.145045,1.083345,4.85195,4.40289,2.195515,1.94113,3.222755,3.809035,1.63921,1.500904,3.65625,3.645035,2.590705,4.597185,3.032705,1.15756,2.609836666666667,1.2944957142857143,3.0225766666666662,2.1375466666666667,3.27073,1.84429,2.8294433333333333,4.13065,3.28986,4.798695,3.61193,2.1923325,4.91943,4.16374,3.02978,5.19205,4.119875,2.586063333333333,6.20625,4.590505,3.09418,2.582386666666667,3.30488,3.0658999999999996,2.911023333333333,2.77514,4.516455,4.18122,3.88196,2.46909,2.55597,2.29348,2.8524433333333334,2.3186933333333335,2.267036666666667,2.1879066666666667,2.3096425,1.4636375,3.0427910000000002,1.2159375,2.086765,1.870305,2.3922175,1.583705,1.907705,4.16102,4.42618,1.9725825,3.99392,4.53029,6.322855,2.0442466666666665,1.630168,7.0273,3.76222,4.30608,4.567015,4.104565,2.13662,3.424235,2.68335,3.080355,4.455145,0.6969,4.48661,2.14594,0.8263581818181819,4.933765,4.440315,3.983705,1.9302189285714286,4.87634,4.04431,2.7292133333333335,2.6960833333333336,2.52923,2.11437,0.577203,3.0033733333333337,2.897975,5.05685,2.529825,1.9278625,3.77729,1.000385,1.8448466666666667,1.8448466666666667,2.65637,1.8448466666666667,4.47252,3.07206,5.029,4.1924,6.0612,14.076787500000002,3.5683000000000002,4.72853,3.32827,4.59801,3.85669,6.690685,3.2095000000000002,4.623625,4.98979,3.597995,1.3048266666666668,3.71206,2.6845733333333333,2.91051,1.0450366666666666,2.128095,3.558185,7.821526666666667,4.31975,2.727873333333333,4.492305,3.4863666666666666,4.28582,4.9255,4.738115,2.85893,2.74536,3.806775,5.57875,2.52215,4.82992,1.6267725,1.6267725,3.541945,4.8465,1.2923875,4.292886,2.378795,3.63305,2.5468966666666666,2.1293933333333332,2.6950233333333333,2.1975700000000002,0.6948592857142858,3.42361,2.6488733333333334,5.08775,4.231675,0.2514253125,5.52165,4.601985,5.21395,7.120121666666667,3.4698666666666664,2.9273133333333337,2.184553333333333,3.385566666666667,3.497733333333333,1.4004566666666667,2.9977466666666666,2.8302833333333335,1.3816216666666667,3.25125,3.1620500000000002,2.9333233333333335,3.4234000000000004,1.488183888888889,4.521055,2.790045,5.19545,4.760485,3.811165,1.6053566666666665,2.7161566666666666,1.2469475,1.88711,1.2469475,4.75417,3.6512,1.7166620000000001,2.4149725,3.824525,3.734515,2.87689,3.79278,0.351537,1.5378070833333335,3.88915,4.04023,5.2699,2.0349325,3.11068,3.1337833333333336,2.7463933333333332,2.783535,2.85925,4.505195,2.68865,2.362553333333333,2.81471,2.503833333333333,2.753546666666667,4.481235,1.94341,4.380815,3.8550158333333333,5.95945,7.7828175,0.7432922222222222,0.806217,3.887345,7.435575,1.779748,3.45513,1.4324683333333335,1.4324683333333335,3.58181,0.4352911111111111,4.12924,4.413405,2.493915,3.487835,3.07372,2.41254,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,2.447285,3.15809,5.011788333333333,3.4830583333333336,4.075655,7.907834583333333,3.501475,3.3335000000000004,0.9660533333333333,3.910225,1.05428125,7.82712,4.49362,2.477825,1.05428125,2.366285,2.69623,0.84932,4.82351125,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,4.561885,1.567705,4.53021,5.1314,1.68203,4.53209,4.59354,5.30665,5.008756666666667,3.768814285714286,3.20464,4.543845,2.620225,4.89015,4.33512,0.7448071428571429,1.374332857142857,1.4671285714285713,3.7264666666666666,3.7264666666666666,3.147548333333333,3.75214,4.589675,3.833065,3.97592,3.093,2.0662533333333335,0.49829,4.066735,3.025105,2.73767,4.189285,3.94415,3.0833275,4.69535,3.826525,6.665877500000001,4.19407,4.98089,5.56995,4.76077,1.3059214285714287,3.79611,4.599336666666667,35.15599474314575,1.4438849999999999,4.60446,3.66915,4.506425,4.235085,4.5977,5.1789,0.39924809523809524,4.824395,4.421765,2.0243225,1.93273,4.118595,1.736425,2.485495,2.34656,1.70816,2.81693,2.454216666666667,3.028675,3.652195,0.5964284615384615,3.36251,3.72683,0.4468289473684211,2.5218366666666667,3.473105,2.53421,3.836565,1.759895,4.82242,3.818435,3.07045,3.941865,3.29691,4.35548,3.198055,4.064305,2.2189775,4.599336666666667,3.69519,3.247185,3.547685,1.8292639999999998,4.44428,3.66277,7.34231,3.46804,4.682445,6.74813,5.076734,2.1832375,5.1204,7.27971,8.185268,2.5845233333333333,2.56616,5.26235,5.691176666666666,4.290145,3.79217,5.560098333333333,2.15566,2.128325,2.2893225,59.59450673558897,5.2539,4.77265,2.5324,1.15724,3.3569999999999998,3.079283333333333,3.4409666666666667,0.8670255555555556,4.98287,0.8417044444444444,7.821534285714286,1.910388,3.2207633333333336,1.8593959999999998,2.602,2.6232866666666665,2.39149,2.4092766666666665,2.2105166666666665,3.1978066666666667,1.4935533333333335,4.508203333333333,3.2445133333333334,1.26369,2.2839733333333334,1.3554833333333332,1.4689625,7.40007,5.9433,3.20513,5.5722,5.4050275,1.5536285714285716,3.4539333333333335,3.21466,1.577885,5.42585,4.082705,3.99573,2.320275,3.0574616666666667,3.6875999999999998,3.9048,5.4503,3.81951,4.657745,1.8145175,3.86645,4.4298,3.3592,1.535682,4.606205,3.3515333333333337,4.05841,5.2302,3.927495,3.74002,4.59669,4.30845,4.296655,4.719445,3.95451,3.365266666666667,3.652215,4.77454,3.18387,4.897895,3.68627,1.4032499999999999,1.4032499999999999,4.457115,4.950175,5.6849,4.20187,4.84321,3.5026333333333333,2.77592,4.42023,5.07485,0.7518854545454545,5.17405,7.328760000000001,5.6977,5.65445,1.3322222222222222,3.178275,0.9979683333333332,0.9979683333333332,0.9979683333333332,3.484865,3.576966666666667,3.0929133333333336,3.4643333333333337,0.861969,5.1141,5.01885,3.40371,1.4740675,2.0014675,4.28552,3.867515,3.789205,3.1431899999999997,6.4903,3.704175,2.4738233333333333,4.82444,6.96055,2.36456,4.20362,3.634795,3.179905,4.653785,3.86638,4.29165,5.56175,3.817905,3.761165555555556,1.9855033333333332,1.9855033333333332,0.6956727272727273,8.914172,2.063635,6.4234,5.7183,4.84605,4.46006,3.70284,3.0580866666666666,4.882535,7.794067500000001,5.78895,2.1518533333333334,4.4028,1.1817,3.62835,2.0038066666666667,0.9309233333333334,1.1195771428571428,2.6768533333333333,3.1536566666666666,2.787596666666667,1.1626671428571427,2.4949533333333336,3.022396666666667,0.934818888888889,2.8269033333333335,3.290573333333333,1.6246680000000002,1.6756820000000001,3.15209,3.480366666666667,3.0807466666666667,2.51084,1.9855619999999998,5.63715,5.0016,4.45465,4.794835,5.17145,3.176635,4.918775,5.42645,5.1278,4.256125,3.99517,12.008476666666667,7.975705,2.943016666666667,3.887955,2.2708166666666667,3.780525,3.12642,4.35393,1.1733616666666666,4.495035,3.44109,1.26431,3.5531,2.931891666666667,4.325495,3.97252,3.86571,6.43595,7.44332,4.117085,1.5984666666666667,1.5984666666666667,1.5984666666666667,4.871475,1.1720316666666666,1.4425625,0.5072827777777777,4.601037083333333,2.97128,3.54479,1.00045,1.15768,3.724175,4.395165,3.84213,17.071796666666664,4.5309,4.41043,6.718305,2.864876666666667,3.808295,3.21152,0.95403,1.17894,4.617285,3.669695,4.913805,4.468815,4.70197,3.91728,2.743797777777778,3.985475,5.465,0.6077,5.2535,2.3106825,4.27731,5.3641,3.5632333333333333,2.3244333333333334,3.8697033333333337,1.5955933333333334,4.33873,6.14825,3.0383333333333336,2.397675,4.18732,5.0665,5.2895,3.93289,3.859695,4.327755,4.93364,4.832825,5.11355,5.1859,3.908715,1.1926728571428573,1.7848975,6.5667655,5.10555,4.55827,5.02645,2.634875,2.7666866666666667,2.767443333333333,5.25465,1.9111575,2.021745,3.4210333333333334,3.01024,3.4911666666666665,4.62224,3.50863,5.377235000000001,1.278495,4.335055,0.9010199999999999,3.80554,3.686515,1.641505,4.903315,1.0353066666666666,4.669055,5.1572,5.2968,4.42664,3.5086775,3.878905,2.7007600000000003,4.94323,5.2956,3.0592775000000003,3.9799,2.37191,2.57253,1.93823,2.451285,3.63222,5.1997,1.05135875,4.3811725,1.2841475,3.2762,1.5933233333333332,1.05135875,0.22183000000000003,4.10523,2.867045,2.3989604166666667,1.8343433333333332,2.67422,1.0662775,3.864325,3.42329,4.674135,2.53798,6.38095,7.223965000000001,2.904386666666667,3.384233333333333,2.6545633333333334,0.825728,2.22771,6.25985,4.369855,4.969665,4.980125,2.330713333333333,1.46666,3.842855,1.5473825,2.424125,1.716875,1.70042,1.6654975,1.8159875,1.98599,2.067295,1.22413,1.2895771428571428,1.400505,1.81141,2.05983,2.06866,2.2457766666666665,0.5317173333333334,1.5678480000000001,3.1770566666666666,3.14362,1.7570975,2.0924833333333335,1.712085,4.96727,2.1812400000000003,2.72065,2.96785,5.9498,3.79746,2.8352033333333337,4.98294,1.6657528676470585,4.02573375,22.3909595,4.682453333333333,5.48775,4.5995,2.4414833333333332,3.93431,4.569725,3.24705,5.02015,2.9747533333333336,0.73759625,3.99123,4.87177,4.202855,4.054705,1.7304000000000002,2.2174,2.41893,2.712645,1.4989428571428571,2.7750033333333337,5.51725,4.19223,3.250615,4.04486,4.72437,4.40995,4.42009,1.3248,3.66269,4.23718,5.11175,1.57481,3.08712,1.79607875,1.79607875,3.672255,4.988795,2.5691966666666666,2.8383866666666666,4.056645,3.83667,6.569595,4.475805,2.408205,1.17894,2.732125,4.136205,3.11704,2.4769763492063492,2.4769763492063492,3.1550366666666663,4.436885,4.152875,5.34019,2.340415,3.3644473333333336,0.5991066666666667,0.5991066666666667,0.5991066666666667,3.49212,3.713755,4.453496666666667,5.09735,2.1115075,5.67245,4.22115,4.477735,4.092835,5.13685,2.488815,1.4889571428571429,4.926805,4.46639,0.45922,4.239966666666667,5.3591,1.7229166666666667,5.4449,5.56855,5.282,4.248135,3.71206,2.76733,4.46514,1.6510179999999999,4.29602,1.7256,4.728245,5.6096,1.25395,3.133465,6.3668125,3.66091,3.7453000000000003,2.73025,4.2636,5.3045,3.448066666666667,7.447733333333334,4.41944,2.12716,3.1644566666666667,2.79306,2.94914,3.041043333333333,1.8448666666666667,4.548315,0.6068083333333333,1.8080875,1.8080875,3.24278,4.094915,2.34845,3.14571,5.0898,4.653595,4.59522,1.3301266666666667,5.078749511904762,4.44396,5.21605,3.852505,4.3973275,3.8924435,0.504884,2.4170434285714286,1.05033625,0.504884,4.11541,0.9666566666666666,4.64604,4.29758,6.652936,2.151116666666667,1.040815,1.1206619999999998,2.31616,2.74114,1.7243300000000001,2.35963,3.333195,3.51319,2.0269266666666668,2.3628899999999997,4.622265,3.4409549999999998,3.96652,5.7286,3.31784,4.703205,7.059715,4.212465,3.42284,4.42418,3.611165,4.356695,5.5031,6.6605799999999995,5.56465,2.56869,1.0631544444444445,4.41378,3.95816,3.801715,5.35045,4.312035,5.2915,2.9382866666666665,2.62205,3.21138,2.487483333333333,2.3493733333333333,3.08623,3.4373666666666662,2.91198,4.77825,4.75906,4.540665,5.5671,3.1759166666666663,3.15625,2.906675,0.7393214285714286,4.73951,4.15137,4.563055,2.98324,6.098926666666666,3.768015,5.5081,3.82291,0.6374692307692308,0.5670678571428571,4.25411,2.833322,3.88457,5.1406,4.716195,2.15688,5.114,4.27198,2.936366666666667,2.65255,2.5748,2.3733583333333335,3.4310333333333336,3.4760666666666666,3.379566666666667,3.3031666666666664,3.6572,2.7364,3.3989333333333334,4.013433333333333,4.2671825000000005,0.597786875,0.597786875,0.597786875,3.346148652777778,3.7199666666666666,3.7787333333333333,2.8247933333333335,2.8177833333333333,1.23030375,3.1351333333333335,3.31991,1.985195,2.58759,2.60447,1.1231444444444445,3.1139866666666665,4.633605,9.6886695,1.55551275,0.6570280000000001,3.585695,0.6570280000000001,0.6570280000000001,0.6570280000000001,0.6570280000000001,2.247745,4.318497,4.1085,5.3758,6.0867,2.78041,2.822813333333333,3.03411375,3.5994433333333333,5.2893,1.4160883333333334,2.46298,3.2335066666666665,2.64901,3.243036666666667,3.795755,2.3205233333333335,3.48151,1.1895777777777778,4.487645,3.57209,3.900265,0.817715,0.6216820000000001,0.6216820000000001,0.9253343043478262,1.7430493043478261,0.9253343043478262,0.9253343043478262,0.31221130434782607,0.31221130434782607,0.9253343043478262,1.4830566666666665,2.4268199999999998,2.95871,3.32445,2.56748,2.6545366666666665,3.12999,2.7216233333333335,4.46678,3.40076,1.8119,2.2525666666666666,1.74148,0.17186174889543446,0.17186174889543446,0.17186174889543446,0.17186174889543446,2.4322033333333333,2.73251,0.8574299999999999,5.1988,0.8080209090909091,1.761176,4.841629166666667,4.70716,4.197285,2.639005,4.541255,4.383395,3.2673566666666667,1.190415,3.52955,4.81055,5.56165,2.31593,1.6041066666666666,1.88098,3.280416666666667,1.4388366666666668,2.6007233333333333,2.9990133333333335,3.08896,4.883145,4.063865,3.1777,4.705105,2.8481799999999997,4.526195,5.2453,4.09805,4.90598,4.980495,5.290213333333333,4.884760833333333,3.0851691428571426,5.069138333333333,4.70109,5.09,4.12738,4.8942,2.3334875,2.964215,4.168245,5.23155,4.455045,3.973765,3.771875,4.384025,3.722875,2.3646733333333336,5.7165,3.70773,7.55842,5.99035,6.20355,5.1579,1.4954,1.01505,0.6454761538461539,1.7349039999999998,4.73424,4.536995,3.837915,1.716686,4.096875,3.002115,4.693615,5.593,6.138574,4.16993,3.022365,1.7197900000000002,5.241975,3.898485,3.252,1.7154525,0.97535,3.858685,3.21161,3.6312925,3.536965,2.20682,4.514865,1.59673,2.812663333333333,2.43755,3.905025,3.81356,4.8244,2.3244225,1.705475,5.50195,2.9730366666666668,8.73935,2.882375,4.94144,5.62415,4.609005,4.904025,3.54062,3.676145,2.32754,4.89486,4.940580000000001,2.356875,4.574745,4.291915,8.693525,4.78333,3.4492,4.20666,3.67481,3.4409549999999998,3.530965,5.288,5.4345,2.450105,2.933063333333333,3.36,2.283285,2.873445,4.571855,5.73105,5.08465,4.96099,5.115,4.752755,6.3486,0.6469592307692308,3.3993,1.30251,31.64927323639148,2.46537,4.676415,3.081475,4.671805,1.7788080000000002,2.415573333333333,3.369075,1.4628700000000001,1.4628700000000001,1.4628700000000001,1.4628700000000001,1.906205,3.375385,0.30399444444444446,7.935858333333334,0.30399444444444446,5.0285,5.3016,2.1190575,5.8101,2.629,3.9647686666666666,2.4479266666666666,2.5044066666666667,2.681556666666667,2.1278799999999998,0.628413076923077,2.59553,0.7201833333333334,3.1106700000000003,2.17007,2.318248,1.1946616666666667,2.318248,6.37115,8.174215,4.92582,4.753225,5.44265,6.2486,7.759806666666666,3.052365,1.804575,1.804575,2.370913333333333,5.2831,3.74261,4.82858,6.268763333333333,4.30929,2.981155,4.01205,3.42507,3.40101,2.178085,1.046186,1.876295,4.385095,4.20594,5.266536666666667,1.890395,4.676475,1.7475200000000002,3.342415,1.302648,3.3717666666666664,3.21209,2.8945933333333334,3.358833333333333,3.4029333333333334,4.88701,0.6639307692307692,3.51641,3.7255000000000003,2.74239,2.34797,4.18616625,3.1690466666666666,2.747593333333333,5.098495,3.99909,4.813865,4.08662,3.517205,5.2301,5.24825,2.1432166666666665,6.2018,2.2918336666666668,2.4565266666666665,3.109783333333333,2.8028399999999998,3.4601,2.7752,2.0419233333333335,3.3508821818181818,4.476825,3.43687875,2.5389126666666666,2.5389126666666666,2.487285,3.791955,3.97364,0.6072609090909091,3.1521,2.953955,8.63219,0.9324272727272728,4.316035,4.007945,5.616,4.14033,4.149845,2.290085,3.89287,2.892775,6.05265,2.637364166666667,3.70971,2.6675866666666668,4.02499,2.719106666666667,3.60656,3.680475,4.317625,5.168701,3.28146,2.01695,4.98391,2.4677266666666666,4.55547,4.990545,4.94137,4.51105,4.01093,3.080905,2.135616666666667,3.1082733333333334,2.6976766666666667,2.973225,3.4464666666666663,2.8192102380952377,5.36447,3.045873333333333,2.5837,7.155091666666667,5.22373375,3.9489475,3.1451366666666662,3.8444000000000003,3.98832,3.460815,2.39924,4.28725,5.4888,5.2892,1.498755,4.78397,2.8057466666666664,7.1161175,4.889605,8.886936666666667,4.27526,3.565685,2.440495,4.0427,5.824665,7.65198,3.49859,5.98442,4.629175,3.221075,3.898655,1.6917200000000001,4.311406,1.59472,4.72844,4.662455,3.561666666666667,0.89045,9.604466666666667,1.299311111111111,1.7624075,2.3406333333333333,1.8313366666666668,3.2498566666666666,1.3704183333333333,3.58966,3.43012,2.687056666666667,4.273935,1.0890533333333332,4.287805,1.375635,2.3975633333333333,3.721445,4.30486,1.8680375,5.2836575,1.8741416666666666,7.82176,4.30096,2.863775,3.94879,3.214245,1.2111,7.43594,2.905955,3.288035,2.338965,4.00677,2.210155,3.3956524999999997,2.14123,3.94418,1.363195,5.00975,4.44838,4.002785,0.939995,2.1228483333333337,3.73342,5.18015,5.205408749999999,1.371264,1.371264,6.0001,4.340775,4.736245,3.71918,3.378635,8.961435000000002,4.267025,5.25845,4.175815,2.4579975,2.0916147875064004,0.3603,0.18720161290322582,0.553683835125448,1.1776309523809525,0.6212458986175116,0.18720161290322582,1.2666275,0.3664822222222222,1.5379309523809523,1.820311335125448,2.078635,2.287475,2.14294,5.55785,6.996973333333333,5.1499,5.7264,4.86237,5.36865,1.16631,5.22675,4.280545,6.2647,5.2779,5.905,5.80215,5.97375,5.43985,1.5416266666666667,1.6771142857142858,2.033,6.682352,1.467552,5.7156,5.03465,7.428026249999999,5.13465,5.635,4.92203,4.94961,2.611125,5.24695,5.58735,4.537165,4.783075,5.9850683333333325,5.94275,3.9281325,4.3479,4.005866666666667,1.03334,3.8432,4.845005,1.3606375,3.8394666666666666,4.94351,4.63939,5.43025,2.29901,3.32643,2.57129,4.75472,2.529375,3.450655,1.3084666666666667,3.095785,3.79946,4.45825,4.911435,3.4375195833333336,0.7418591666666666,5.8776,1.06850875,3.840925,3.384733333333333,3.669665,2.0414533333333336,3.80271,3.7790679487179486,3.715866666666667,4.468775,14.843739357142857,5.20813,2.2513975,8.36249,1.4737825,3.80557,2.8650066666666665,2.8460633333333334,2.2029633333333334,0.19670304347826087,3.042313333333333,4.6299,1.7734539999999999,2.0780366666666668,3.8663333333333334,1.851745,2.24432,1.2082785714285715,3.293625,4.791445,4.018715,4.117735,0.46885571428571426,2.32283,4.625275,3.85625,5.2547,4.961525,4.198225,4.03454,0.5912411764705883,2.4730866666666667,2.4730866666666667,5.6587,4.59153,4.81103,2.73825,3.7264,3.2777600000000002,4.83814,3.925205,5.907517777777778,4.877945,4.869835,5.1153,2.5715,2.12594,4.47753,4.54318,3.306835,3.565675,1.7854079999999999,4.521205,4.352135,3.787345,5.0392,3.959985,4.57287,0.6291046666666666,3.637535,0.7220383333333333,3.1965233333333334,2.956335,4.29362,18.20747523809524,4.267465,3.777525,3.1356033333333335,1.222465,2.75294,2.4760566666666666,1.537808,2.433885,2.53527,5.3268,3.076443333333333,4.047475,5.34465,2.171545,5.0188,2.8099366666666667,4.87333,5.41675,5.42815,1.80648,1.670395,2.39055,5.1616,4.98536,1.1759,5.59275,3.77302,5.70025,4.82595,1.7179333333333335,4.662055,3.57663,4.041665,4.259995,4.399855,3.0380966666666667,0.58691,7.692168333333333,1.543218,0.1947175,0.1947175,0.1947175,5.1869,4.09691,2.5325133333333336,4.11626,2.86618,3.987935,4.311582857142858,4.1423950000000005,9.355516666666666,4.215505,6.91833,0.9189125,1.09981125,2.53945,4.94701,4.45543,1.9257799999999998,5.0738,4.349595,3.46497,4.07488,4.59811,2.5293366666666666,4.344265,5.055991000000001,2.36531,3.00825,2.9327366666666665,2.699575,5.93335,3.74727,0.6581035714285715,3.7788,3.386185,4.387845,4.826413333333333,5.00695,4.60569,5.41175,3.61051,13.966255833333335,4.971755,6.485686166666667,2.6729533333333335,7.00073,4.95197,4.0385,2.3426075,2.347324583333333,9.65257,2.1729066666666665,4.032266666666667,3.8021999999999996,3.6898,3.30132,2.8616966666666666,2.1053025,2.074845,2.9496866666666666,1.997398,3.6700666666666666,2.7881400000000003,2.5944166666666666,3.3355333333333337,3.6286666666666663,2.3893,2.3893,2.5461066666666667,3.4989333333333335,3.302826666666667,2.7503933333333332,3.2947399999999996,3.8187333333333338,2.6796666666666664,2.6607,3.04438,2.44369,2.3691375,3.6608666666666667,2.9265133333333337,1.852526,3.7114333333333334,2.4322266666666668,2.57275,2.8747633333333336,2.389685,3.3425,5.641376666666666,2.5007699999999997,3.3545,1.96115,11.125397333333334,2.5088933333333334,1.8109166666666667,1.9272760000000002,1.0614444444444446,1.594784,4.92766,3.0297399999999994,3.0297399999999994,1.9778759999999997,1.550275,3.4814333333333334,4.099028333333333,2.213366666666667,1.5386516666666665,1.6069299999999997,4.2560633333333335,3.234856666666667,4.131266666666667,8.380943333333333,2.917684285714286,2.9294966666666666,3.229895590062112,4.309966666666667,2.3691375,3.4478333333333335,2.979093333333333,3.3226633333333333,3.3742416666666664,0.853845,3.2275540000000005,2.9175633333333333,2.7492900000000002,4.0541,2.772883333333333,0.7111981818181818,1.8985609523809526,4.43948,2.7031535,3.3016533333333338,1.8563666666666665,1.8563666666666665,2.0329275,3.739093333333333,1.05565,2.2317825,4.976423333333334,4.976423333333334,0.6609285714285714,6.29382,3.739415,4.487835,4.915275,1.1800285714285714,3.6531333333333333,3.4637333333333333,5.146383333333333,6.940964666666666,3.163983333333333,0.730342,2.8632733333333333,2.69026,3.160127333333333,2.6840433333333333,2.9729766666666664,3.0909833333333334,2.44035,2.5134833333333333,0.8467654545454546,2.84329,4.695098285714286,1.28403,1.6239142857142856,5.28455,2.401315,1.661395,4.084315,1.6839,3.574085,2.4401375,3.500766666666667,9.317850833333333,4.338264166666667,4.560175,5.1476,2.2581272727272728,0.750096,1.8158100000000001,7.123776666666666,1.8015766666666666,4.23044,4.448445,3.855195,21.407301333333333,3.1936766666666667,1.3781166666666669,1.1698675,3.3558,1.40892,4.15352,5.66495,3.2517005,3.2792833333333333,1.3833033333333333,1.2546116666666667,2.90518,0.57632625,3.0764566666666666,3.7395666666666667,3.0314366666666666,2.48828,2.61635,2.609173333333333,2.4086066666666666,3.02713,1.725842,3.4919,1.5315516666666669,3.80075,4.02745,2.9924366666666664,5.08615,3.711355,4.047745,5.4023,4.8387,3.112553333333333,3.0120666666666662,2.44237,1.18631,1.18631,1.18631,2.0868325,3.27077,2.572556666666667,2.4602,2.24247,1.6109175,4.436385,4.392305,3.66707,6.45432,3.3254,2.54205,1.89725,1.2362983333333333,2.486076666666667,3.89007,2.3926666666666665,2.56221,2.792733333333333,2.415696666666667,2.471686666666667,2.78525,3.1152366666666667,2.9295666666666667,2.5445066666666665,3.0086,2.07153,2.1168175,2.0110725,2.41555,3.272013333333333,3.1888199999999998,1.9562325,3.871615,5.0779,2.9134666666666664,2.5543280769230767,5.540983333333333,4.49373,4.923825,5.9018,5.2405,4.238475,6.662085,1.26955,4.19997,2.59431,5.1074,5.03995,3.375955,4.363855,2.4667525,7.6355450000000005,3.27259,0.8881333333333333,8.49377,5.07411,6.1365911904761905,4.905935,3.04664775,1.787115,5.0243,4.567705,4.72759,5.1591,2.44738,4.38502,4.47045,1.74148,4.32719,2.8274,1.4342633333333332,4.875035,0.6454117647058824,4.269575,3.778345,4.52706,3.13988,1.71759,3.63505,1.918455,1.3024125,3.0647699999999998,3.383366666666667,3.1499066666666664,6.964258974358975,1.78731,6.668581666666666,9.72676,6.10864,3.402045,1.3486285714285715,3.10989,1.3486285714285715,2.743603333333333,2.184083333333333,0.2888894117647059,1.142391911764706,0.2888894117647059,0.2888894117647059,0.2888894117647059,1.142391911764706,1.142391911764706,0.2888894117647059,0.8535025,4.69821,3.483095,3.166025,3.44496,3.68695,2.94594,2.9531126666666667,1.594214,7.481156666666667,2.73908,4.074145,2.6045866666666666,1.0286272727272727,1.22532375,4.616225,4.249665,1.0389677777777777,1.746934,0.6919809090909091,3.1936907878787877,4.316915,5.38835,3.769966666666667,5.542695,0.5842007692307692,4.36544,3.27337,3.4644333333333335,2.47864,3.2888,2.51852,3.0555833333333333,2.69875,2.75662,3.54935,5.25135,4.804605,1.508198,4.64568,4.53873,3.41783,3.765645,3.355205,0.3362573333333333,5.04735,3.6624,3.263185,3.311146,4.51798,3.950175,1.881555,3.218915,3.948085,8.18634,5.14405,5.65555,4.179745,4.068905,0.85539,2.146,2.19037,1.28703,1.8484733333333334,4.84609,5.60705,4.202245,4.357955,3.1431899999999997,2.5939316666666663,0.9351316666666666,4.140745,1.2429383333333333,1.15669,3.235065,3.613375,4.901225,1.2493275,3.1344833333333333,8.460183333333333,3.0611866666666665,2.9388058333333333,0.8811225,4.22186,12.040836666666667,3.38838,4.03781,3.24661,3.06194,4.66163,4.89027,1.972692,4.451275,0.6603884615384616,4.72612,2.1770325,1.89836,1.89836,3.438,4.649105,1.7581499999999999,4.892965,1.5188285714285714,4.945425,2.8264674999999997,3.100986666666667,4.682105,3.48402,3.7706406666666665,2.633475,2.5941281666666667,2.5941281666666667,11.24141,0.764433,3.309675,3.7978,2.0969825,2.1127525,0.9071471428571429,1.38704,1.3583685714285714,1.953835,5.0994,2.39845,4.618355,2.0275333333333334,4.40248,4.57653,1.5787983333333333,1.993765,1.0409650000000001,5.968234083333333,2.2335975,2.17225,1.6551500000000001,1.75238,1.1698675,2.4380991666666665,3.55815,2.5081,3.0430533333333334,2.360533333333333,2.5968933333333335,1.6971333333333334,2.971033333333333,2.8990666666666667,1.00521,2.2318000000000002,2.99199,3.3658333333333332,2.2800266666666666,1.1293933333333335,2.532646666666667,2.1960566666666668,3.6102333333333334,0.33802315789473686,0.39308583333333336,2.2752333333333334,2.2648366666666666,3.15943,3.1332600000000004,2.745395,5.06485,5.7446,4.51151,4.27696,4.26146,3.832135,2.64648,3.688855,0.657630909090909,0.06549522727272727,6.19995,0.06549522727272727,3.62984,3.033665,5.77625,3.46062,6.114,4.862705,2.35731,2.5446933333333335,1.4212583333333333,5.86275,4.61153,3.0387866666666667,5.167,1.978105,4.484745,2.1004588043478263,3.0709066666666662,3.2880000000000003,4.25089,4.45845,3.259825,2.1977066666666665,2.1977066666666665,3.973695,7.52921,3.795805,2.2235400000000003,2.4254000000000002,4.156575,2.687245,5.11945,4.06724,1.0435444444444444,4.088225,3.0058833333333332,2.89025,3.99806,1.18181,2.32253,4.009015,4.1223,5.11735,2.890895,2.933225,3.81806,3.818935,4.281295,5.06405,4.110655,3.223590833333333,3.648995,2.822763333333333,3.223376666666667,2.9651,3.6945333333333337,4.363595,3.0281366666666667,4.995128333333334,4.751265,3.26718,4.49835,4.325305,4.0397,1.39933,1.3443725,3.95266,3.504766666666667,1.5315633333333334,2.942833333333333,3.3289,3.446566666666667,3.910007777777778,3.2845666666666666,2.2372433333333333,13.156838333333333,2.0515433333333335,2.06392,4.255215,0.990278,3.27889,4.056265,4.97579,3.14221,1.1244222222222222,2.2873666666666668,2.53798,1.43835,5.4355,0.916745,0.916745,3.8618533333333334,1.9807066666666666,1.8811466666666667,1.6905725,3.39335,3.535745,2.033385,2.72979,3.8779583333333334,3.12209,2.990403333333333,2.17434,6.28355,5.64055,3.831795,0.7836461538461539,3.595705,4.222355,0.9226545454545455,5.1833,3.4594666666666662,8.720066666666666,4.69744,4.755605,3.51204,1.4248,2.94964,5.33615,5.0422,4.414235,4.71608,4.33598,3.288825,3.5191666666666666,3.5191666666666666,3.67237,3.001220833333333,5.6514,1.717675,5.211288333333334,5.514046666666666,1.7229166666666667,4.598535,1.06007,4.66763,4.039795,4.96283,4.966675,4.156635,2.672675,2.4900375,4.31023,4.62643,4.681755,4.501615,1.8811025,1.349856,4.112525,2.1361433333333335,5.5,2.90269,3.455925,7.1922049999999995,3.847975,4.498165,4.862115,4.40492,4.28773,8.258975,3.427305,2.88295,10.076239999999999,3.86374,0.6390121428571429,2.1197052197802195,4.77065,0.6487499999999999,4.785265,4.197365,5.27195,4.656125,3.508265,4.01904,5.06795,4.533725,2.45219,0.7105978571428572,4.84555,4.688685,5.0585,4.551755,2.73512,5.0937,3.533135,0.653214,3.672555,4.39854,2.4485025,2.91893,4.33757,2.206445,5.3868,4.9659,4.3862725,3.302046666666667,6.011525000000001,6.011525000000001,8.704083333333333,2.10234,0.847435,0.847435,26.639989999999997,2.78975,8.202106666666667,0.3442191666666667,1.2200966666666666,3.1261166666666664,0.980783,3.5999,3.912235,2.3795075,2.3795075,4.60445,4.94152,3.35733,2.6523616666666667,2.6523616666666667,3.512455,3.642085,3.810985,3.210906666666667,2.2387633333333334,2.4278808333333335,4.737026999999999,2.01723,3.418395,2.70588,2.884711428571429,2.884711428571429,3.4948,0.81355,2.534803333333333,1.5237666666666667,3.474266666666667,3.1202666666666663,2.9636833333333334,2.8221900000000004,4.756525,2.42106,3.2177566666666664,5.991664,1.51518,2.21276,3.10239,2.3782433333333333,4.497275,5.793775809523809,1.4239199999999999,3.6074333333333333,2.4195325,5.0059,6.50981,1.5527175,4.83476,4.892347333333333,3.1243142857142856,4.601166666666667,1.071867142857143,1.57481,2.95085,3.8421833333333333,1.2698766666666665,2.6019,1.6187275,1.6685960000000002,2.35817,3.5700660000000006,5.044133500000001,1.0139666666666667,1.5145714285714287,2.9951866666666667,12.83417,4.712316666666666,2.7028,1.2291485714285713,2.5750135714285713,0.9655285714285714,3.4445,4.143361666666666,4.8848,3.5976666666666666,5.18685,1.62992,4.0348999999999995,4.201555,2.977793333333333,3.6767222222222222,2.3593966666666666,0.9692322222222222,2.4695066666666667,2.973433333333333,7.298900000000001,3.224757142857143,2.7774033333333334,0.69302,4.770566666666666,3.6460666666666666,1.415184,5.735353333333332,2.04012,2.51763,6.0219,1.3768555555555555,3.035363333333333,1.063390909090909,3.026396666666667,4.131015,3.32164,3.1685666666666665,2.23554,2.696956666666667,4.58888,4.84561,5.29495,1.677025,4.36937,3.833755,4.228736666666666,3.4591840000000005,2.39515,4.354651333333334,0.9579179999999999,2.9689595238095237,5.1628,2.741775,4.230687916666667,1.5619625,3.4078,1.917192,1.917192,7.428331666666667,3.18037,5.457140833333333,3.496478333333333,1.9173166666666666,2.8426414285714285,4.948363333333334,5.657416666666667,8.7676,4.883532,2.8425745,1.8961133333333333,2.0662631666666664,4.040446666666667,3.724715,1.562204,2.1653725,2.474932857142857,1.1908475,3.19643,19.197311666666668,3.2464066666666667,2.6798266666666666,3.24351,2.8615866666666663,2.6378,1.44296,3.24011,3.492766666666667,2.9398966666666664,2.6043133333333333,6.022381333333334,2.5244833333333334,4.594281714285714,2.785241714285714,2.5396617142857143,1.3564766666666666,4.017047777777778,2.2281,4.36863,4.956205,3.93447,3.1289841666666667,3.0231333333333335,2.5383633333333333,3.4067666666666665,2.9393233333333337,3.3493,3.311476666666667,0.8195090909090909,5.02945,2.271835,3.4839333333333333,3.0680038888888888,1.7831525,2.34509875,2.34509875,3.7669654166666664,2.205580416666667,4.85783,4.66405,4.02355,4.505915,5.65895,4.969374999999999,4.969374999999999,4.106175,3.0657599999999996,5.13655,2.84261,1.663478,3.3813333333333335,4.520005,4.50824,2.503125,3.940125,6.032775,4.006866666666666,6.476002976190476,2.748035,0.858382,0.858382,3.27855,4.293645,3.749555,3.755822,2.40909,1.7758533333333333,1.7182833333333332,3.1654433333333336,6.906774,1.5356083333333332,3.997425,3.5883000000000003,3.659145,5.0897,5.30115,4.939613958333334,3.3432,2.4423575,4.58802,3.88216,2.0770125,1.085798,4.628595,2.788725,6.249691666666666,3.4609666666666663,2.68079,3.278315,3.72941,3.67334,4.557375,3.52454,4.52205,3.839715,4.194845,3.686465,3.40552,3.593265,4.340775,2.6440633333333334,4.58514,3.434935,4.549535,0.68145,2.225855,1.7943,1.966955,1.848295,2.56322,2.5829333333333335,1.8395000000000001,4.60935,4.92588,1.9135666666666669,4.06834,4.42732,2.3870825,5.971793333333332,4.161351666666667,5.1298,5.0834,7.075976666666667,2.3104999999999998,2.8305066666666665,1.9723600000000001,3.054586666666667,1.85371,1.7475,3.93557,3.5554,4.81649,1.0297311111111112,3.04858,4.58613,2.2364975,5.6028,3.59483,2.958175,3.7007999999999996,3.22325,1.97259,1.6971447499999999,2.72285,2.780175,3.169,2.0108,2.8601514285714282,2.8601514285714282,3.447925,3.01405,18.91844613095238,1.1567466666666666,5.0286425,2.0911825,2.0126566666666665,4.13263,4.10316,1.9087925,3.76074,4.547195,1.2733083333333333,1.2733083333333333,1.1596366666666666,1.7580533333333335,2.72432,3.12187,4.64285,3.51678,3.757233333333333,0.5311789473684211,3.9561789473684215,1.95568,2.24081,4.39843,3.412075,3.94797,3.5676,4.56494,4.150525,1.99172,4.345525,5.691176666666666,2.32762,3.524115,4.955075,2.116005,4.794255,5.83665,1.4829,2.1013200000000003,3.7967999999999997,0.7609314285714286,3.1199366666666664,3.480175,5.0801,4.676515,2.6691066666666665,8.308946666666667,3.144246666666667,2.944546666666667,0.47988,4.247385,5.330762261904762,3.1111245238095235,5.23655,3.68108,2.5582017777777777,1.9109279999999997,5.46124325,4.541655,4.71551,2.1876,2.123825,4.454865,4.2294,2.8618233333333336,2.032005,3.9830241666666666,6.0392725,2.72623,3.663365,3.58156,4.07111,1.5468,1.5468,3.3723666666666667,3.00156,4.85774,4.671025,4.284185,3.19226,2.872725,2.117965,1.569185,1.363122857142857,5.0007,5.712915,5.2633,5.5797,4.783225,6.1144,4.00985,2.840756666666667,3.9362699999999995,2.5230566666666667,3.022208,1.55605,4.70648,2.31516,4.401315,5.38165,4.086535,2.704196666666667,2.9730366666666668,1.6345571428571428,2.62905,4.105366666666667,2.1481175,0.582938125,3.176856666666667,2.900166666666667,2.91198,2.8189233333333337,2.332395,1.880256,0.7405536363636362,0.7405536363636362,3.7450666666666668,2.08836,2.542175,4.62969,6.04825,5.10935,4.330265,4.123575,4.62749,2.217485,1.2351633333333334,2.48249,3.68244,0.874075,3.28103,2.94502,3.18322,2.09383,4.070175,2.675765,1.9607599999999998,1.4459428571428572,3.981665,7.328135,3.884035,1.8690844642857143,4.94033,3.703725,3.24392,3.28692,2.77337,1.8089866666666667,1.0476325,3.613005,2.467655833333333,2.1079966666666667,1.6383999999999999,2.299653333333333,2.2023366666666666,2.3434399999999997,2.73766,1.2613933333333334,2.0510066666666664,1.2218625,6.752694999999999,5.47445,4.60474,3.832715,3.980645,2.9662100000000002,1.8265276923076923,4.67805,4.93037,2.354325,5.95505,2.074715,4.352745,1.1524444444444444,4.07869,4.015315,1.86619,7.50921,3.62793,1.8257025,1.7341225,2.25962,2.6318,3.475566666666667,1.3950852597402599,3.2555366666666665,5.73985,4.07644,4.348735,5.6699,5.4983,4.91846,0.95403125,4.768325,4.621525,4.2685,5.0186,3.8911433333333334,4.984605,5.40545,2.918485,1.3222666666666667,1.3222666666666667,5.39175,6.0298533333333335,2.98212,3.16385,4.59961,3.83584,1.6126719999999999,4.25053,3.907145,3.777545,3.94465,2.9878633333333333,2.9780200000000003,5.0538,2.417684125,10.958415160795088,1.9275066666666667,0.82491375,2.461063333333333,1.8404625,2.25476,2.26381,1.929472,3.007656666666667,5.0585,5.60525,3.0414066666666666,1.6453816666666665,6.564755595238095,1.345902857142857,3.5323666666666664,0.5317999999999999,4.05139,5.98795,3.771565,5.1158,14.11346,5.76065,2.972993333333333,2.846686666666667,4.911505,3.3676999999999997,4.91569,1.167865,1.3895433333333334,0.7151909090909091,6.0263,4.35857,2.076,4.88668,4.631085,6.35675,5.0594,4.62405,4.63252,6.61405,3.85301,5.2443,4.85601,1.5390679999999999,4.742855,5.8702,3.22054,3.986755,3.917035,2.599995,1.2467875,4.828135,3.93537,1.299975,3.4445,3.21593,2.4023066666666666,2.8662433333333333,2.382476666666667,2.6742233333333334,0.7017118181818182,2.4567666666666668,2.680093333333333,2.6126733333333334,3.0155266666666667,3.0317933333333333,1.99712,1.4563666666666668,2.599225,2.07279,2.22172,3.25048,3.1592866666666666,0.651089,2.779533333333333,3.129125,5.0305,2.4165766666666664,3.80954,5.11115,5.48455,3.28318,3.93286,1.4671285714285713,3.99341,2.5834227777777783,3.910733333333333,3.0241412500000004,4.551175,4.91205,5.0617,3.59079,4.2829,1.0975519999999999,1.0975519999999999,2.2996567307692306,1.7133875,4.16286,2.6036695,2.6036695,5.04875,5.44395,3.105475,1.187805,1.6173428571428572,6.2744,3.617135,3.0305233333333335,3.225785,2.607415,3.12762,3.0305233333333335,4.7565225,3.12449,3.168692083333333,2.801675,1.858465,2.995205,5.6526,2.551795,3.485295,5.06945,6.2005,4.72118,5.2647625,5.2647625,5.30545,4.03361,0.4539738461538461,4.30796,5.0864,2.94486,2.670995,8.70113,2.9988533333333334,4.537385,3.6716,3.161903333333333,5.57235,3.96674,3.4677625,2.7565566666666665,3.2942466666666665,2.5726766666666667,1.8498480000000002,1.8498480000000002,3.497485,3.735235,4.243265,1.998084,1.875038,49.33497856060606,2.4856933333333333,0.8586727272727273,3.111193333333333,1.85515,3.3706,2.9344933333333336,3.16002,3.13446,3.03072,1.9974800000000001,1.05818,4.730115,3.144095,3.460025,4.09514,5.39465,5.3088,5.08925,5.87795,5.7077,5.11735,5.93945,6.597595,5.11665,5.70575,2.0301475,3.68876,6.13305,5.772,3.724265,4.22152,3.208155,2.664265,3.84231,4.86784,2.979713333333333,3.914633333333333,1.641702,3.55659,1.338026,3.246225,3.80677,3.420475,7.3109275,4.883455,2.0443775,4.49944,4.048005,3.85258,1.03670625,2.761095,3.833045,4.286289880952381,1.0748275,4.99828,1.4078875,6.5482,0.6823522222222222,4.1526993333333335,10.159914166666667,4.405205,4.12544,3.91622,1.7770666666666666,3.93365,5.79285,3.0620999999999996,4.112875,9.096358333333333,3.3066766666666667,2.1916366666666667,2.8280600000000002,2.782443333333333,2.93914,2.7854615,2.0816500000000002,2.6188066666666665,2.8413633333333332,2.8234333333333335,2.9569833333333335,3.293395,2.170776666666667,1.4856466666666668,4.180874,3.0362233333333335,2.5209,4.9455393333333335,2.6984833333333333,1.24618625,2.2401125,2.86631,5.098007857142857,2.762325,2.0643844444444444,2.0643844444444444,1.5758925,1.438255,2.1186,1.665976,5.99864,4.0636375000000005,2.454235,3.2981700000000003,3.623466666666667,1.9407025,0.5248808333333334,2.4454533333333335,1.8647825,0.5533723076923077,3.794565,2.4728675,2.25588,3.62739,3.7826741666666672,2.4962833333333334,1.5509833333333332,1.4216416666666667,2.00858,3.29673,3.68281,4.2771225,2.8833,4.09325,3.760245,1.129209090909091,8.868055,2.64834,3.23798,1.27025,2.8647233333333335,2.440515,2.440515,2.440515,4.244575,6.26535,1.70436,4.94867,1.447724,5.58349,1.616756,4.42306,4.07731,4.244915,3.97385,5.0332,1.896995,8.54174,4.11162,5.56975,3.376245,4.148273333333334,3.174053333333333,3.0944066666666665,3.874805,2.63618,4.377375714285714,4.5041375,1.6103025,3.87022,1.6103025,3.351705,4.572085833333333,5.0278225,4.572085833333333,1.8141866666666668,5.86405,4.556065,4.39855,2.8556066666666666,3.1746433333333335,4.71899,3.1547,4.39248,0.6031235714285714,3.10473,3.126663333333333,5.771983333333333,4.649335,2.44664,4.871845,6.725103333333333,3.969105,2.922425,3.063445,2.2915533333333333,4.108595,3.59307,4.87435,2.370115,4.077065,0.861057,5.05275,3.343305,3.96832,3.021523333333333,3.0362733333333334,2.1979833333333336,3.01933,2.6967966666666663,2.66612,3.696825,2.769475,2.769475,4.6668658333333335,3.11712,4.51587,11.0289325,1.0221511111111112,4.449685,2.6355333333333335,2.19134,2.933543333333333,1.4425625,7.2147185,3.8767666666666667,3.900095,4.017671666666667,2.2898133333333335,3.823866666666667,4.785712111111111,2.36421,0.4460122222222222,1.659672,1.827935,5.1654,2.84569,3.211675,3.8479983333333334,3.5957616666666663,2.553715,3.85459,4.82537,4.03964,4.53212,2.144465,4.514865,2.4962933333333335,5.40831,3.0943,4.90453,4.472165,4.70638,4.46685,1.92477,3.78873,3.63036,2.6936633333333333,3.463125,2.93252,3.124845,3.29491,4.085385,3.3707,4.835755,1.8804833333333333,4.30997,2.75964,4.34618,4.75856,3.721675,4.90909,3.245725,4.20522,3.85629,3.920275,2.6075866666666667,2.07328,2.875145,2.43056,0.8731233333333334,4.655195,2.011105,3.44009,2.67343,4.198705,3.479335,2.852055,3.096965,4.18685,4.646610666666667,4.33326,2.88718,1.3953166666666668,2.966425,2.41921,0.871148888888889,4.36622,9.411185,3.409955,3.642095,4.5932,5.34045,3.791345,2.032105,4.0001,3.84502,3.149615,3.20601,3.18711,0.62974125,1.2172271428571428,5.9388025,1.5706125,2.668885,4.997774,2.29901,2.295175,2.67686,6.67379,2.697755,4.207625,3.73804,0.7626922222222222,3.365605,2.62702,3.74094,4.364565,6.247141666666666,0.718765,3.27063,6.8897,3.189565,1.0393722222222221,5.4892975,4.9345,5.39725,4.63182,5.01545,3.49442,2.668393333333333,7.93993,0.875657,3.381055,4.73011,3.063515,4.48357,2.10294,4.34703,1.5407666666666666,4.18687,4.19034,3.967095,1.7275775,4.74518,4.549025,2.4905325,2.154045,2.587725,1.415184,3.99448,3.2517005,2.03416,9.124745,6.03,5.1379,4.60183,3.48021,4.231625,1.3459914285714285,4.7119,4.07592,5.2075,3.565485,2.429396666666667,6.7670547435897435,0.85239,0.85239,2.529943333333333,0.9039528571428572,4.165255,2.9049266666666664,1.02062,1.73895,0.42174249999999996,6.648955000000001,0.97301,2.90657,3.668605,3.861625,4.424375,4.1123,5.0637,5.55307,2.853175,3.06248,2.36141,4.342105,5.6423,4.789725,3.870245,3.763085,6.79265,4.16197,4.4410549999999995,6.96201,3.77822,4.051769999999999,2.33598,4.051769999999999,6.834513,41.12508152164503,3.53066,3.41842,3.2167600000000003,4.413375,4.496275,3.42764,3.380105,3.7846,4.310685,4.55772,1.8502833333333333,5.4688,2.600185,4.72027,5.2204,4.454875,2.396506666666667,5.42,3.90504,3.229105,1.4946540000000001,0.66715,1.853654,3.5982000000000003,3.130573333333333,1.45245,3.7015999999999996,2.86621,3.0935900000000003,2.97795,3.1311766666666667,1.407708,2.6185266666666664,3.863,1.8738417631917632,2.9458366666666667,3.117752,2.83705,2.562533333333333,3.3297000000000003,1.154877777777778,4.91792,3.94072,1.2052616666666667,1.2052616666666667,1.2052616666666667,1.2052616666666667,2.895180303030303,2.0265566666666666,2.49788,3.51102,4.157535,4.43292,4.969285,4.687855,6.0314,5.36605,2.53515,6.02205,3.50835,2.555995,3.517495,3.326205,4.406925,4.44975,0.7802615384615385,1.5608428571428572,1.6153199999999999,4.60083,4.581025,3.65178,4.04301,6.221023333333333,2.2480366666666667,4.856095,1.7247833333333331,4.59027,5.02935,1.5823233333333333,5.80555,0.7230150000000001,5.08115,1.38303,1.2881125,3.78677,4.461025,4.68555,5.45665,5.9836,3.76524,1.4615420000000001,4.80746,1.4603175,3.6793,3.25539,2.5582017777777777,1.76462,3.588595,1.3539783333333333,3.383435,4.719995,2.86319,5.9142,124.15243987049062,0.47715444444444444,5.70205,2.556583333333333,4.77968,4.108035,2.757515,1.5753325,0.38231095238095236,3.29434,3.688145,5.80245,3.05021,3.67926,4.483015,4.25423,3.252255,7.92515,0.6685244444444445,3.477925,0.951595,12.420580000000001,3.098985,3.565615,1.07827,2.67968,2.67997,2.1076075,2.92289,3.2550399999999997,2.275873333333333,4.58154,2.4909866666666667,2.2123133333333334,2.16174,4.008855,2.510605,2.940575,3.57046,3.720635,3.31221,2.3185100000000003,3.811265,3.35213,3.009505,1.1335222222222223,2.53599,4.58154,4.73297,4.919065,4.020845,5.12505,1.84464,11.49907,3.864165,2.70184,3.539735,5.51035,0.5884253333333334,0.5884253333333334,4.641792499999999,4.641792499999999,3.875375,3.3505333333333334,1.804705909090909,0.6309758333333334,2.834925,4.34822,4.35371,4.94805,3.81569,5.275045,4.806395,2.3326725,4.41515,2.2694375,2.90109,4.867841666666666,1.671495,2.98936,0.48045571428571426,1.6203677142857142,1.6203677142857142,1.9818,4.922445,4.024665,5.2251,6.501208999999999,4.51951,3.26229,2.143175,1.987665,4.984165,3.78583,5.27396,3.083965,5.27396,5.5325,3.56566,6.0786,3.80921,2.3520866666666667,2.3550766666666667,2.6869433333333332,1.35904,1.3662025,1.5118475,1.6213525,1.68867,1.5127275,3.3494333333333333,4.58318,2.447835,5.5324,2.9889766666666664,4.31041,2.19021,4.271585,2.9650266666666667,3.2123566666666665,6.293003333333333,3.4289,4.635049333333333,3.4820666666666664,1.3726325,2.5119266666666666,2.469186666666667,2.4418266666666666,5.60635,4.295785,5.0454,13.233201976238673,0.7538433333333333,2.066078,2.448985,1.778082,1.3079357142857142,2.65245,2.60605,2.634725,2.586,0.7783846153846153,1.9502675,0.5289157894736842,5.1549,1.8628,4.15712,4.887975,2.71535,5.6467025,4.82845,8.37076,4.272525,2.784655,2.927045,4.553755,4.66635,2.755765619047619,4.872085,2.1138025,2.1138025,5.3291,4.33675,4.55377,3.938335,3.3386666666666667,4.15485,4.936225,4.541095,4.836175,4.474625,4.30507,4.388925,2.437315,5.15995,1.3520766666666668,4.94494,4.916525,2.430426666666667,2.45273,4.250505,1.3818416666666666,4.910845,1.7250625,6.034458804347826,3.35834,4.1067,1.5210800000000002,3.2993091666666667,3.2993091666666667,11.86939,3.82719,4.38386,1.16538875,4.506933,2.5208,1.3979475,2.5301,2.1065375,2.0876975,1.943384,3.32985,6.17085,1.701575,5.0282,4.8013650000000005,5.2396,2.263395,2.779775,3.65541,4.23473,5.3355,3.882575,7.623505,3.2243933333333334,2.59876,0.44122944444444445,3.68675,3.740035,3.4972,6.397505,2.50316,3.3815666666666666,1.2764149999999999,1.55698,0.582938125,1.659672,2.8528,1.5449866666666667,1.88365,0.69998125,1.300146,4.708725,2.462535,0.654666923076923,1.78995,1.655435,1.9058140000000001,1.3361616666666667,2.217405,1.55698,2.356875,1.300146,1.300146,0.654666923076923,1.6133142857142857,2.52904,1.2698766666666665,2.8246,0.654666923076923,2.57055,2.52904,1.4385583333333332,1.4385583333333332,1.4385583333333332,2.0154,1.1681075,0.654666923076923,1.052554,1.2630375,1.0614444444444446,1.9608940000000001,2.5522,0.89045,2.4332,1.5290714285714286,0.654666923076923,1.716208,1.55698,2.02615,1.9111666666666667,0.9596069999999999,2.02615,1.0934877777777778,2.4905325,2.4680075,2.68335,1.2630375,2.30184,1.3539783333333333,1.3539783333333333,0.9729181818181818,0.9729181818181818,0.9729181818181818,1.2764149999999999,1.55698,1.5290714285714286,1.78995,0.9644357142857143,1.9111666666666667,1.32359,1.852526,1.854526,1.2764149999999999,2.7028,12.641785,0.69998125,2.63368,1.97215,2.6584,0.9655285714285714,0.9655285714285714,0.654666923076923,1.2753333333333332,1.880256,1.5290714285714286,1.7973459999999999,1.9111666666666667,1.1759,1.1759,1.761176,0.1947175,0.1947175,0.1947175,0.1947175,3.5277999999999996,1.0934877777777778,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.3983768181818182,55.33813575685426,1.49,1.6172133333333332,1.5290714285714286,1.97215,0.9644357142857143,0.6240411764705883,0.69302,0.69302,0.69302,0.69302,4.2226,17.42328125,3.5690000000000004,0.7129845454545455,1.750206,1.750206,1.750206,0.7129845454545455,2.8528,0.654666923076923,1.716208,1.88365,2.53782,1.0934877777777778,2.44664,1.0934877777777778,1.511,1.511,2.1953,2.1953,0.654666923076923,2.0671399999999998,2.0671399999999998,1.0382090909090909,0.1947175,2.8528,1.7065000000000001,2.4195325,0.7129845454545455,0.7129845454545455,0.7129845454545455,0.7129845454545455,0.7129845454545455,1.97215,0.3983768181818182,1.0934877777777778,2.3871175,2.3871175,2.4900375,3.384733333333333,0.6609285714285714,0.6609285714285714,3.3752999999999997,4.221133333333333,1.1800285714285714,3.2019800000000003,1.0702500000000001,2.757925,2.10234,1.18181,3.305876666666667,2.07179,3.302046666666667,5.6588,2.533615,1.2780555555555555,4.53719,4.70755,3.2661,1.76156,2.4188669230769233,5.06715,1.6012925,2.5261299999999998,2.8793,3.3189466666666667,2.42524,6.532883333333334,4.36938,0.1947175,3.023823333333333,4.84417,4.43182,4.65583,4.40892,4.48109,2.677756666666667,1.834384,3.51633,4.69596,4.441555,4.71992,5.2891,3.148835,0.6601008333333334,6.754885,1.4119883333333334,3.1315939999999998,5.14495,2.51266,2.51266,0.8072199999999999,1.76462,3.71581,3.061805,4.23254,4.40585,4.956515,5.14595,1.1049685714285713,4.807825,4.78137,7.44180076388889,2.2134199999999997,4.19203,4.399735,4.878695,4.131735,4.227675,4.64834,5.196715,5.15225,4.370003333333333,3.756295,4.216045,7.594638,1.754525,1.9909615384615384,2.8054799999999998,1.7083733333333333,2.561643333333333,1.8516533333333334,5.07005,3.5601000000000003,5.57785,2.03566,4.368,3.90547,3.68089,4.29554,3.79916,2.464046666666667,2.733843333333333,2.7829766666666664,3.0702599999999998,2.5106800000000002,1.5351783333333333,2.6930899999999998,2.7854200000000002,2.64544,2.64544,4.56438,2.853476666666667,1.9204066666666666,3.139723333333333,2.97242,2.5057533333333333,2.7257,2.71232,2.952663333333333,5.39365,4.62111,4.41835,3.799023333333333,3.799023333333333,4.07272,3.09937,4.533685,4.397225,3.612675,3.216225,3.39567,7.3734,2.067095,1.906575,3.37992,3.002935,1.4559866666666668,1.4559866666666668,3.48225,1.77696,3.812722,3.597515,3.157165,2.1019465,2.1524549166666667,0.4774241666666667,2.874405,3.83925,2.20523,2.326745,4.156015,1.2544566666666668,4.95045,1.2521633333333333,0.3681292857142857,0.5115196428571429,22.009270253968257,0.5115196428571429,0.3681292857142857,0.65491,11.094306666666666,3.5901333333333336,3.295765,5.17215,3.4468975,2.8183,4.278975,2.186555,2.536185,3.32733,2.93616,4.25762,4.85845,3.502805,2.238075,3.12271,3.94827,3.97662,3.073155,1.076689,1.076689,1.076689,1.076689,3.369305,2.83621,3.11189,1.7284533333333334,1.2611583333333334,2.4011,3.656535,3.707495,2.65649,3.003885,2.49349,2.8264674999999997,3.891535,4.11197,1.0838616666666667,3.0406766666666667,1.05709,3.0622333333333334,2.36772,3.7403,5.39305,2.3759633333333334,4.47595,4.309783333333333,0.7904350793650794,0.21353285714285714,0.21353285714285714,0.5769022222222222,0.21353285714285714,0.21353285714285714,0.21353285714285714,0.5769022222222222,4.043845,7.185499999999999,3.418435,0.57781625,3.736625,7.6879550000000005,3.3794,3.265136666666667,1.09412,4.634015,5.5513,4.62281,4.671885,1.6489820000000002,4.892185,2.176066666666667,2.3741453333333338,4.090425,5.35105,0.8566414285714286,0.8566414285714286,3.655785,3.0294000000000003,2.086205,3.01827,2.585845,4.751415,2.20544,3.71012,5.60505,5.5993,2.827745,1.71995,4.110745,3.70225,2.278435,3.69469,3.688475,1.813475,1.1127733333333334,3.917775,3.20988,4.826413333333333,6.5786500000000006,1.5464433333333334,3.84482,1.1055966666666668,2.49043,3.576665,4.116685,0.3953721428571429,3.470265,3.960135,0.92967,2.90734,7.63505,5.41225,2.1369,6.007722,4.44743,3.632655,1.441585,5.574059999999999,3.0651533333333334,3.17416,3.6491000000000002,2.2357400000000003,2.2357400000000003,5.5898875,5.5898875,3.2491410714285713,3.2491410714285713,7.24531,3.2491410714285713,3.2491410714285713,3.8894699603174603,6.4214,4.408855,3.6989541666666668,2.9758600000000004,4.592005,4.515145,3.324896666666667,3.3053933333333334,4.41998,3.20392,2.6635566666666666,2.99872,2.39879,2.628755,4.67081,7.16319,6.7236275,4.630515,3.657015,3.92194,6.330441,5.1952,3.08007,4.425505,3.54993,2.2703133333333336,2.06204,1.97558,5.4826,5.0227,4.6857425,4.29917,2.2799333333333336,2.8140966666666665,7.046443333333333,2.0154,2.45612,3.21193,3.21193,3.121615,5.0957,0.772965,3.5743333333333336,4.047215,3.0761633333333336,10.939675,4.5976,2.789896666666667,2.58279,5.659,6.385,3.10291,5.5972,2.5959666666666665,4.511265,2.9936871428571425,4.44696,5.5767,4.986135,1.1554883333333332,3.7740333333333336,1.10370875,2.456463333333333,5.156991852941177,7.8012266666666665,2.77512,3.096963333333333,6.433173333333334,1.78937,4.738315,5.6785,3.462425,3.637335,2.1908133333333333,4.850335,2.4943549999999997,0.4707223076923077,5.44375,3.433185,3.705033333333333,5.4471,4.967845,5.04405,6.751899999999999,5.26255,6.01405,7.32634,55.37049333333333,4.5389,3.932405,4.765345,6.3412,4.78706,5.1643,4.29754,4.801855,1.86692,4.12775,4.168085,4.25297,2.55921,4.888475,3.85793,1.622792,5.98575,6.7509,8.069423333333333,5.67195,3.153145,5.1444,3.2195,3.13326,3.46736,4.205075,3.543725,6.61515,2.73255,1.0817057142857143,2.3658375,0.55906,0.55906,3.979555,0.55906,2.5556280714285715,2.5556280714285715,3.2329060714285713,4.5561495,5.0652605714285714,2.3658375,4.776081666666666,2.506644166666667,1.4145816666666666,5.68205,2.09282,7.635328666666666,5.996366666666667,11.49166212878788,3.068686666666667,2.8093299999999997,0.2836878787878788,1.749533,2.6759733333333333,0.90445125,1.464135,2.80218,1.76053,2.8625,0.637616,27.9387375,1.940165,0.7008938461538462,2.8320866666666666,2.8320866666666666,0.42006055555555555,1.6426125,2.9536175,1.2021925,1.9868575,1.6253775,4.17505,2.81719,2.0044133333333334,2.3232633333333332,1.1333383333333333,2.234175,1.6078983333333332,5.62860175,4.051995,7.019371666666666,2.44094,3.4931,0.9727216666666667,2.664585,5.42155,6.52835,3.0894633333333332,2.187726666666667,5.4851833333333335,2.2231,2.903226666666667,4.374855,1.0981133333333333,3.8349333333333333,2.452,5.92535,5.1837,6.25255,3.54114,4.0600675,4.0600675,5.4016,2.08965,5.71445,2.7215933333333333,1.6189625,4.302025,4.37681,6.121983333333333,5.1311,2.83225,2.529716666666667,2.264985,1.4092414285714285,5.0259,1.02228875,5.5207033333333335,4.213895,7.9709900000000005,4.529595,4.304595,4.16594,8.258138333333333,4.67807,5.1145,1.09183,0.7168357142857144,4.82736,4.534335,2.25585,3.205905,3.35883,4.10498,2.383315,4.986635,2.523143333333333,5.4429,5.4941,4.81331,4.63775,4.93514,2.92419,6.851867,3.466945,4.28555,3.252255,3.84855,5.883727976190476,0.6157492857142858,3.674166666666667,1.76744,0.6915366666666667,3.870705,2.885935,1.043555,2.014885,5.92979,4.407035,2.279945,2.797893333333333,2.7294199999999997,5.29985,4.34778,1.7162361904761907,4.24742,2.5281866666666666,3.6503666666666668,4.41649,4.929615,3.170118333333333,4.1323,3.8374,1.9812400000000001,7.2971,5.04025,4.70158,4.765385,2.3158425,3.98896,4.77635,3.30464,3.889795,10.359245,3.643695,4.082488333333334,4.67099,4.608495,2.4722525,4.100935,3.541925,4.16142,3.1584766666666666,4.210885,1.9369325,2.5946533333333335,3.315245,3.792755,4.899825,1.937554,4.25532,3.0094133333333333,5.5836,2.9377066666666667,1.934225,4.12728,4.762755,1.05053875,2.880605,2.6987400000000004,4.761936,1.552176,1.71282,1.0581925,4.022705,5.0735,5.767485,3.6792800000000003,3.352725,2.3404,2.130205,1.833245,1.5897500000000002,4.822695,2.99202,1.82489,0.9529615384615385,20.876711038461536,2.9615,3.326949166666667,4.672946666666666,4.074693076923077,1.38405,2.826165,2.7975570454545453,1.138232,1.8716933333333332,4.085015,5.25655,3.7299949999999997,4.261915,5.6096,4.80392,7.1840675,5.049940833333333,5.06115,3.606205,2.7333766666666666,3.83715,3.83531,3.5195000000000003,4.554855,2.3834925,5.11625,8.99853,4.16636,3.74809,4.19106,0.56463375,3.263996666666667,2.4175400000000002,2.2945,4.2733,3.271195,4.82798,3.402395,2.70806,2.4012925,1.686265,0.798046,1.48547,1.2088933333333334,3.892315,3.704025,4.380585,4.815365,7.12193,2.5032033333333334,1.376586,2.2250533333333333,8.075006666666667,3.216985,2.5908,3.142755,4.34003,3.36868,3.471875,1.702226,4.377365,5.06365,4.12354,3.86346,3.60438,4.255085,4.656165,3.803935,4.55506,3.73519,2.169085,3.1121466666666664,3.228985,5.57225,2.853445,4.305771,4.136185,2.937765,2.688876666666667,2.257773333333333,2.12681,3.1450883333333337,3.1450883333333337,1.95179,2.7613533333333335,2.3381266666666667,2.296996666666667,1.9183866666666667,3.996785,2.3403199999999997,2.8692733333333336,2.7490066666666664,1.68835,4.135175,2.84231,3.761675,2.59311,5.3961,5.2585,5.06115111111111,2.53928,2.39902,2.797585,2.36475,1.995335,2.941115,1.962365,2.394735,2.580375,6.808564666666666,4.2146,3.483495,0.66500625,4.48844,4.34083,4.486245,3.04675,3.936285,3.701575833333333,6.189,4.749785,3.52832,2.7959221428571426,2.2101939999999995,2.5294,1.8186740000000001,1.6212659999999999,1.547428,2.01116,1.8801575,1.3317883333333334,4.101883714285714,0.654666923076923,0.51979,2.05524,1.593215,1.570562,1.5984416666666668,2.5277887878787877,1.60672,1.7866060000000001,0.609945,172.89228323470525,0.503464,2.15814,1.0542820000000002,1.209055,2.047015,1.739015,1.972725,2.5431399999999997,1.9646075,7.1301,3.16416,3.7894280952380948,1.7040266666666666,3.142825,1.2850249999999999,1.2850249999999999,5.865584999999999,0.48854277777777777,2.2770025,3.2645933333333335,3.112023333333333,0.7449818181818183,0.6767352941176471,1.3105460512820513,1.1159999999999999,2.723075,4.13919,2.2443825,2.2075175,2.37429,4.976718388888889,1.1251444444444445,4.64031,3.71776,3.51508,6.53648,1.8302366666666667,3.014375,2.6914,4.014506,2.13136,3.442855,3.331465,3.59324,4.715015,2.90318,6.15573,2.39459,2.47893,3.18484,1.528415,2.799325,3.18896,2.830565,1.7792,1.49808,2.059445,4.275515,5.9668833333333335,3.32183,2.84946,1.457495,4.34769,3.3320633333333336,3.775066666666667,2.87965,25.043312679181927,2.185386666666667,2.8047533333333337,2.9555133333333337,3.3864666666666667,3.2239166666666663,6.038736666666667,3.0338966666666667,2.5031166666666667,3.0986966666666667,3.2985100000000003,2.0940066666666666,3.251583333333333,3.339066666666667,3.28726,1.7179,1.69219075,0.564727,2.18696,2.05278,0.20562,2.4954433333333332,2.7484,0.20562,0.20562,1.9409199999999998,0.20562,0.20562,0.20562,0.20562,2.770466666666667,2.6332033333333333,0.6527576923076922,3.465173571428571,1.4902025,2.04316,5.1576,4.2671825000000005,6.627560000000001,2.03701,5.15085,2.374315,2.8175600000000003,1.364912857142857,5.937186666666667,2.7545133333333336,6.1583425,1.0090166666666667,1.2523925,5.0742,4.880435,36.42675092524142,1.81126,1.30107,2.3697066666666666,2.376835,0.9729181818181818,2.3241833333333335,2.3858866666666665,2.8127866666666663,1.9740333333333335,2.41532,1.6614433333333334,3.07263,2.3437533333333334,2.2271633333333334,2.4917466666666668,2.4531033333333334,4.177665,3.156966666666667,1.2203142857142857,3.779065,4.103875,20.077053,2.83217,3.1365200000000004,2.6036433333333333,0.8948240000000001,3.1974839999999998,1.7027406666666667,3.1974839999999998,2.31765,2.59862,3.016296666666667,1.688225,2.142745,4.825695,3.97696,5.27105,4.242205,1.9151440000000002,5.4071,1.60082,5.0246,4.110648047619048,5.287,0.7349836363636364,2.207485,2.219425,2.77203,3.294475,1.17661375,5.49775,2.06758,2.12567,1.037906,1.037906,2.40905,3.2256199999999997,4.780515,30.20952958333333,6.144075,1.92919,3.6050866666666668,0.370438,6.44745,4.85999,2.8794,3.277695,6.079015,4.21802,1.2790625,4.73351,1.262238,4.10926,4.56531,5.48405,2.106815,3.00117,4.219465,3.167985,3.2954255000000003,3.965855,1.2999033333333332,2.72272875,4.04145,4.79438,2.7406366666666666,3.00963,3.0512599999999996,3.568185,3.91838,3.93345,4.122333333333334,1.718675,6.11319,2.48707,1.707112,4.057535,5.52685,3.95891,3.626565,0.8955325,2.90673,3.449735,2.1596,4.712368666666666,2.712825,3.831815,2.91443,3.2538199999999997,2.481125,3.3018633333333334,3.179316666666667,3.2212,4.610535,3.98093,4.070175,1.741875,3.962675,4.276455,1.87524,1.78634,1.8128375,3.85204,4.76013,5.492247291666667,3.96835,3.6214999999999997,3.675825,3.3511666666666664,1.5171999999999999,3.12962,3.060085,4.07565,4.607475,4.823445,4.561175,2.63883,2.009835,1.63096,1.4659675,3.494555,2.34353,2.206035,3.335795,4.864505,1.54178,5.55825,1.3949842857142856,1.7399175,3.211515,3.06472,3.02534,3.59505,2.9916,1.678355,1.0482683157894737,3.107465,3.4926166666666667,4.89142,8.51567,2.436,3.020296666666667,1.5811466666666665,2.72763,2.932726666666667,1.179185,3.4730666666666665,2.9550033333333334,2.806696666666667,4.037566666666667,3.6940000000000004,6.812506666666667,3.067353333333333,0.7484272727272727,2.018806666666667,3.40561,3.340525,3.35293,3.6841666666666666,2.6561909999999997,4.326135,2.598285,1.9490165714285714,3.719445,2.9017405555555555,3.31044,2.1764633333333334,4.36206,4.609375,4.609905,3.7334,3.529525,1.0555344444444446,4.59057,3.0746066666666665,3.0774500000000002,4.602555,2.8241666666666667,3.2498066666666667,0.3474,0.3474,3.39189,4.84248,6.21085,3.12602,3.84564,3.63452,2.93507,5.35095,4.56513,1.0007325,4.075815,2.75135,4.623096666666667,3.1180266666666667,3.117205,1.8132000000000001,3.392665,2.6985166666666665,2.9470033333333334,2.5931266666666666,2.71529,2.2804233333333332,23.371481104743083,4.833345,3.87434,3.83494,3.65261,4.772095,3.204045,4.514845,4.41188,4.061295,4.117695,3.93928,3.024836666666667,3.0578833333333333,3.4139666666666666,3.222388333333334,2.91596,4.26918,3.48492,4.495055,5.24645,4.385475,1.2995459999999999,1.5245060000000001,1.5245060000000001,3.408465,4.14153,2.72493,2.6058533333333336,3.0480033333333334,4.579505,3.39572,8.231023333333333,3.211273333333333,2.971576666666667,3.0390716666666666,4.929215,1.6213466666666667,6.462350000000001,2.5897466666666666,2.67501,1.742175,4.30153,3.38116,7.09824,3.392605,2.68398,4.26921,4.170974666666666,1.7301475,2.7515733333333334,1.6731633333333333,8.662767500000001,4.768715,6.895395000000001,2.2629325,4.632865,3.787235,4.09591,5.2162,3.7294,3.7294,2.1403225,4.694085,5.34065,2.68027,6.488985714285715,1.7246825,6.13995,8.927242999999999,3.1842133333333336,4.4936126666666665,2.22166,2.03404,0.542495,4.4246,2.3631325,2.6377,4.2268575,2.475115,2.35243,4.452295,5.47005,4.85877,4.095515,5.7551,4.1877,2.3565575,1.0766545454545453,2.896555,3.41062,3.07253,5.3259,4.041705,4.23503,2.95719,2.1013200000000003,4.458615,0.9941575,5.05595,0.9546555555555556,5.24815,3.171685,4.87524,5.52744,3.02192,3.20076,3.1717,2.57115,4.111825,4.11343,2.72215,4.661125,4.99302,6.500593333333333,4.39906,1.8705375,3.909765,3.206425,5.299471666666667,1.88249,1.88249,2.8327000000000004,2.38487,2.6107299999999998,3.1579866666666665,0.9205249999999999,6.35125,4.71372,1.787275,2.208065,2.54564,3.58283,2.761755,3.68388,4.72482,5.7639,5.04595,6.043,5.9616,1.377375,4.27193,1.098625,2.51935,4.3374,2.491135,3.06322,3.065045,4.53064,3.21063,0.43799315789473686,4.63454,4.128425,4.753915,3.226525,4.925555,5.9813,4.364495,3.81805,1.85693,4.789615,2.0087625,4.215433333333333,4.215433333333333,6.7059,5.28045,5.951,5.22475,2.657655,1.6213466666666667,4.43138,2.072623333333333,1.6701,1.845235,4.35024,4.06653,4.87627,7.98763,1.6322,6.12605,1.2660799999999999,3.44519,6.4065,1.859985,4.80239,3.087483333333333,5.09985,3.28075,4.434055,3.0387866666666667,4.253655,3.947385,6.25725,4.025005,3.932075,4.07024,5.6488,4.15715,4.460175,3.65166,4.66049,8.16487,3.434965,7.03003,3.245,5.3088,6.606829090909091,5.1671,3.432475,2.1554525,4.98303,3.87271,0.8262655555555556,7.85544,5.9953,6.3296,3.1546325,5.26785,2.77404,1.814216,3.814165,1.0838616666666667,5.55035,3.154845,4.62495,5.37975,4.88815,4.51953,2.5924733333333334,4.591895,5.31065,1.739885,7.239871666666666,3.0466,4.062485,5.59175,4.11942,2.15877,4.43126,4.06897,4.27195,3.165093333333333,4.019175,3.649935,5.76465,4.79485,3.610075,2.0776275,2.0776275,7.285575,1.535842857142857,5.32435,4.285765,5.66145,3.912945,3.54242,5.1692,3.746915,0.8843766666666667,0.8843766666666667,0.8843766666666667,3.78282,3.082335,3.83289,4.710881777777778,2.591835,1.3993566666666668,4.98122,2.446715,2.60911,4.28722,5.47795,1.6329175,2.19896,5.46764,4.194165,2.744275,4.400665,1.463405,1.921795,3.137586666666667,2.7181,5.7036,1.4878959999999999,1.586582,1.11680375,4.827215,3.624645,3.242926666666667,3.058203333333333,5.7874,1.721638,2.0247025,3.08471,1.6142142857142858,4.14926,3.68754,2.2342075,6.0872,5.90215,2.78,4.78938,4.51185,3.426735,3.89056,4.390855,3.711905,6.4849,5.64145,1.8129600000000001,1.8608333333333331,3.63889,4.4,4.185835,4.67767,3.416,4.22492,5.34635,4.84266,2.768826666666667,5.3479,3.96737,4.390505,7.3110375,4.61162,0.709339090909091,3.83978,4.009261666666667,2.327665,4.19102,3.7235,5.9094,3.76078,4.469735,3.655275,4.649965,5.3472,4.16206,3.30535,4.130055,5.5065,4.13218,3.59143,2.845185,6.31669,4.765945,1.774718,3.337125,4.034079999999999,3.821665,4.991395,4.492445,2.6880966666666666,0.8680066666666666,4.307034242424242,6.09202,3.85337,5.2958,3.415495,8.111063333333334,4.07668,3.455133333333333,2.7404499999999996,3.7063,2.121165,3.369965,4.408715,2.561524,4.06845,4.95648,1.400045,5.47825,0.73225,6.15015,3.987715,5.37075,4.69992,1.3799083333333335,1.7263466666666665,4.26817,1.88192,3.94704,0.5238816666666667,6.2161,3.107255,1.501486,6.1028625,6.74345,0.9177025,1.7670124999999999,1.27582,1.27582,1.27582,1.9548833333333333,5.221,4.27194,5.0004,3.781115,5.8469,4.207415,1.961858,4.461835,5.2717,0.30872439024390247,3.697555,4.698155,4.19486,41.022857803030305,5.563212500000001,5.2437,12.138812666666666,4.152755,4.453245,7.9511183333333335,3.190425,3.979075,4.250175,4.75097,10.781805,3.809985,2.3602233333333333,2.540545,5.34245,4.176145,3.703665,4.32651,1.93045,4.65413,3.794465,6.9622779999999995,4.601325,5.8651,2.366325,4.112305,0.51220125,1.4154966666666666,3.92791,6.63145,2.820395,1.2993716666666668,1.2993716666666668,3.568405,3.76878,4.450605,3.071055,1.8379666666666665,3.756235,4.117165,2.158015,3.073926666666667,1.669756,2.00678,3.938815,4.35311,2.1667775,4.61546,2.2101825,2.17332,3.606545,3.57054,4.11016,3.767605,6.144726,2.582901,3.528115,0.6522727272727272,0.64257,3.719245,2.175065,8.83994,3.5690000000000004,5.27915,1.6404125,4.60096,1.6229116666666668,4.37654,4.179035,2.6719566666666665,3.998055,5.0456,0.42302249999999997,0.42302249999999997,3.4078666666666666,3.3341999999999996,3.2441133333333334,3.499505,3.58251,4.94669,0.8658990909090908,11.266278333333332,8.796240000000001,2.217405,4.8696675,5.02,5.4413,3.342835,2.740073333333333,2.18674,1.890395,9.3191975,2.346335,2.71773,3.919406,4.626815,3.919406,2.52335,3.14463,2.943436666666667,0.7565063636363636,5.542695,3.469666666666667,2.5584866666666666,4.220935,8.57293,10.02494,4.29559,3.86719,4.87618,6.7484975,1.8924825,1.359225,25.364710833333334,3.461825,4.400185,0.981765,4.34367,4.09969,4.199005,4.33121,4.511075,5.870380000000001,3.0597433333333335,1.9735533333333333,0.7062058823529411,0.7184699999999999,5.08885,4.46621,1.4055549999999999,4.533168333333333,0.8486583333333333,3.4699000000000004,1.4659000000000002,4.193965,5.83275,1.89346,2.5061,2.37057,4.1894,2.97031,0.551825,3.9574,3.720415,2.799936666666667,3.3615,5.0681,2.9007733333333334,4.023395,3.06849,5.7214,8.555083333333334,4.9694,6.69113,2.4565675,2.799856666666667,4.191375,4.34096,4.289625,4.27633,3.674195,5.1705,1.221625,3.0795575,3.151461857142857,0.6877139999999999,1.5245060000000001,1.5245060000000001,5.35505,7.904716666666667,0.8832307692307692,5.10495,0.9670016666666666,2.9459,2.39477,2.921628636363636,6.746155555555555,2.6265,1.1412888888888888,2.676323333333333,1.2582375,2.61876,3.199173333333333,3.080428333333333,3.3547,2.6124966666666665,0.9670016666666666,4.54235,4.638855,5.46335,2.834095,5.52985,2.2981000000000003,5.7554,4.705925,4.60257,3.0746800000000003,3.56525,2.223345,1.4024925,4.595085,2.8643,4.811625,5.5198,1.63113,4.38806,2.60117,6.4128025,3.453575,2.91045,0.9670016666666666,2.440265,3.48357,7.48852838888889,2.47744,1.30851,2.47744,0.44126166666666666,1.22484,3.41132,3.975155,1.78985,3.88788,3.850745,0.572755,0.572755,0.572755,8.582995,1.597642,0.7582336363636363,37.2929936038961,1.7682408888888888,0.6403288888888888,3.2084775,0.6403288888888888,3.722915,1.976135,2.4084,2.5678633333333334,5.22115,4.801595,4.219605,2.4015633333333333,0.90694,4.397775,3.02598,4.92482,0.9924157142857143,2.71665,2.71665,3.83785,4.89495,4.18803,5.5976430769230765,3.364735,5.4833,5.6171,1.967858,1.1791475,5.9267,6.39335,3.817645,0.682052,4.30343,4.298500000000001,0.9140325,4.250635,2.45605,4.51342,4.867475,1.9124164646464648,1.9124164646464648,4.21572,3.412155,0.9314122222222222,3.14068,3.0896933333333334,3.857115,3.97276,4.408435,0.3697857142857143,0.31025941176470584,0.31025941176470584,0.31025941176470584,0.6800451260504201,0.6725430769230769,0.64706,0.31025941176470584,0.31025941176470584,7.735390000000001,0.31025941176470584,0.6800451260504201,3.4381,1.2746975,4.54604,1.1919816666666667,0.7225761538461538,0.9140325,2.55923,2.742375,3.85026,2.996785,0.31025941176470584,0.31025941176470584,4.32605,3.640785,4.503905,2.56717,3.99957,1.578166,3.718735,0.64706,0.64706,4.71552,3.03512,2.726675,2.77207,4.038031666666667,0.9478350000000001,0.7611853846153847,9.72193,1.283175,4.711235,4.498195,5.2403,2.15756,0.44151304347826087,0.94829375,3.1817100000000003,3.28606,3.14649,4.87021,1.507054,6.34005,3.843305,5.4065875000000005,4.5155,3.048996666666667,3.1666166666666666,6.61495,2.699923333333333,5.36315,4.138595,4.309783333333333,5.854855000000001,0.6109393333333333,4.09665,3.1551299999999998,2.2890466666666667,0.7436211111111111,4.485685,4.28123,2.829195,2.49166,2.2064,5.2279,2.704015,3.01948,0.9691280000000001,0.46297692307692306,3.854095,0.34244933333333333,0.7531009090909091,3.86498,3.08038,4.470065,2.671075,4.694455,4.250725,6.278327,3.640215,3.35243,5.17175,1.5885875,5.4135975,1.9441579999999998,4.508775,2.564225,6.215613333333334,2.80504,1.07141,4.520515,7.0513875,6.540978333333333,3.280666666666667,0.78791,2.668426666666667,5.21595,4.111945,4.51803,4.834625,4.740795,4.5507,2.782485,4.07388,1.77308,2.22379,1.3152533333333334,3.83174,9.939845,3.10143,3.48961,5.96775,3.033545,4.674565,2.45101,3.146846666666667,3.273085,5.1524,3.4762,3.26306,3.640595,4.9941,5.7551,5.20185,4.556751,5.1125,5.0019,2.75806,5.48895,8.38265,0.8770377777777778,5.12815,4.10167,4.857295,5.25345,5.0427,2.77662,8.169585000000001,2.388786666666667,3.23097,5.53255,3.58175,4.205385,2.15044,1.9996075,2.7167600000000003,2.1445633333333336,2.15255,2.9970833333333338,4.57589,4.729685,4.07863,3.35146,4.947546666666666,3.34693,3.26287,3.93972,5.0436,3.13165,5.585900666666667,4.17506,3.973485,3.54814,9.44702,4.51889,3.54105,4.48484,4.910635,3.61661,9.00014,1.2790133333333333,2.25812,4.264125,3.2535900000000004,3.2535900000000004,1.931685,7.660641666666667,0.9049644444444443,3.399945,0.88151875,2.0247025,4.467955,3.94943,3.969315,4.741065,3.0795,3.447925,3.71588,3.690325,4.743795,2.97751,3.1231866666666668,4.678075,5.95,4.3519,4.55481,1.718148,1.6275179999999998,2.6375566666666668,5.62945,2.3450475,1.6758966666666666,1.9675525,4.71744,4.638285,2.99707,3.01398,0.5144355555555555,2.357095,7.5591,3.09771,1.4158733333333335,0.8535025,1.2106966666666665,2.001,2.07989,0.739415,1.9904933333333332,4.2132555,4.14145,5.1824,2.4444,2.12145,7.025685,2.943575,2.0235866666666666,2.0235866666666666,2.0235866666666666,6.330003333333334,2.21937,3.555875,2.670925,0.498772,1.5828659999999999,2.159875,6.12329,0.4369511111111111,3.7391,3.7997625,5.2348,3.0419911111111113,0.4369511111111111,3.0419911111111113,1.07313,1.332852,5.9633,4.28582,6.86144,4.20326,5.1791,3.79805,4.41516,5.3725,5.54825,6.2623,3.56607,3.35386,5.40455,4.57672,3.987255,4.64554,5.1898,1.4343366666666666,2.94219,1.0796825,2.30604,3.2208125,1.4675125,7.0030275,5.299471666666667,2.8349599999999997,4.99793,2.91932,4.871445,2.93828,4.712565,4.878595,9.541531666666668,6.03455,4.761925,2.1020075,2.599425,2.23054,0.56463375,2.229239333333333,6.201,5.14465,4.93419,4.963265,0.6834666666666667,2.003295,1.35656,4.49815,0.8418076923076924,7.607687499999999,2.0747875,1.0528075,1.0528075,3.72697,2.01798,3.5149000000000004,2.555535,4.589085,3.7842025,3.7842025,4.832215,6.117216666666668,2.796913333333333,2.4815033333333334,3.4256666666666664,3.851655,1.83784,2.86474,5.43425,5.4306,4.889965,4.587065,4.042303333333333,4.83077,3.6257966666666666,3.1909466666666666,2.2136375,4.08186,5.32355,3.0018537500000004,5.02755,5.9891,2.05511,2.61742,6.2241,6.8861,1.947242,2.725775,2.28983,2.9339133333333334,2.1728025,2.6076,2.6135070000000002,1.0616077777777777,1.9181925,2.5328,2.165365,2.5254633333333336,2.5254633333333336,3.1621145,2.75645,2.139178076923077,2.600825,2.4935425,2.1062000000000003,1.6145653333333336,5.037100000000001,14.617537833333333,2.9188233333333335,3.8025,1.836972,1.836972,1.7190833333333335,1.7190833333333335,3.08588,3.923133333333333,2.7761133333333334,1.8938825,1.8938825,3.6130666666666666,3.27951,1.1755366666666667,1.5536285714285716,3.25024,2.7952100000000004,4.013133333333333,2.7343933333333332,3.363566666666667,3.32464,0.733008,2.688075,3.6197923333333333,7.3107050000000005,4.892485,3.78374,4.4391,3.40946,4.680675,4.93166,3.080223333333333,4.493485,1.45613,3.31739,5.5883,5.3217,2.69588,1.225485,2.916605,2.7788799999999996,3.4163666666666668,1.6021633333333334,0.7159714285714286,3.176213333333333,4.692615,4.624295,4.576555,4.89583,3.13132,2.0315533333333335,3.2055708333333333,2.919613333333333,3.5497666666666667,3.19839,3.3686666666666665,2.5317966666666667,2.846783333333333,3.6309,2.9455833333333334,4.974305,5.2984,5.262945,5.262945,3.310205,3.92046,3.60022,3.61363,2.73339,5.32895,3.2734,3.0207599999999997,6.3273,0.8364416666666666,5.04335,4.68693,2.519973333333333,4.915140833333333,2.9470033333333334,1.9678333333333333,1.4782571428571427,2.281703333333333,1.01151,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.5625785714285715,0.5625785714285715,1.19017,0.9276816666666667,1.7438181313131313,0.9871471428571428,0.9871471428571428,1.3016414646464647,0.44217666666666666,0.4004655555555556,1.2588375,1.5829175,3.684366666666667,2.651275,7.919558333333334,2.9976299999999996,4.19694,3.96638,4.695098285714286,1.28403,4.79843,3.969655,4.316,3.204255,1.464712,4.236181538461539,3.73413,5.3138,4.601435,2.971425,4.311005,4.216965,4.58593,1.2458420000000001,4.0222,4.667045,3.17271,2.5530633333333332,3.361805,2.47228,3.098945,3.658275,3.0457733333333334,5.22775,8.717295,3.20636,5.1612,4.504915,4.34853,2.6920066666666664,3.56127,1.8496000000000001,3.93554,3.22423,1.808972,0.93821625,2.86679,1.2683366666666667,0.5398333333333334,3.723133333333333,4.35183,5.1133033333333335,3.7568,2.3799825,2.62431,5.01175,4.146166666666667,4.592945,2.698725,2.2546666666666666,3.856765,4.59132,4.123365,5.4071,4.435205,3.71595,5.02275,3.31012,4.582545,2.1722583333333336,4.938715,5.03405,3.18991,4.04797,2.547745,3.688715,5.51735,4.71432,5.9321,4.693375,5.0982,3.0390533333333334,5.631,5.0686,4.618855,2.61975,0.959035,3.995945,5.0328,4.73417,4.67606,1.767125,4.271945,2.22013,5.2274,4.851725,5.17665,2.33359,4.466255,5.0225,4.63902,2.9085133333333335,4.720155,5.378,5.13285,3.79458,2.61975,2.395125,3.119625,4.62335,3.905565,4.134685,3.897035,5.10305,2.35281,6.83336,4.938355,4.657145,5.188987527777778,4.766607499999999,5.26965,3.46267,2.3443566666666666,2.3443566666666666,4.05197,4.513525,4.46085,2.3529525,3.05684875,1.03120125,3.0690333333333335,3.2660933333333335,2.8174333333333332,3.2235300000000002,4.979335,2.9497400000000003,5.9565,2.74565,4.2781,4.0794025000000005,1.956725,4.17663,1.6170733333333331,3.1528666666666667,4.094875,0.9927440000000001,5.26855,4.918295,6.62141,4.262015,5.23105,1.4513571428571428,4.81438,6.39475,8.87604,3.1700533333333336,3.231996666666667,2.09692,0.883415,4.02923,1.0118785714285714,4.017425,4.535585,4.554315,3.096135,4.18056,1.0742242857142856,3.31149,3.540855,4.35155,4.29766,3.973875,3.93413,2.447155,4.303385,4.898185,5.57745,4.605905,3.6251,0.31776444444444446,0.31776444444444446,0.31776444444444446,0.31776444444444446,5.579,2.949325,6.45795,2.8448333333333333,6.18085,4.801555,3.824135,2.318145,2.45341,1.5145833333333334,5.6582,3.0968400000000003,4.054775,4.73399,3.358455,1.635095,1.19481,4.52205,2.37479,7.006043333333333,3.792685,5.39635,2.19211,1.4590366666666668,0.8818188888888889,3.235855,4.63708,2.922055,2.210155,8.64074,3.76943,3.43523,2.34628,0.427255,3.310255,2.535345,2.064345,1.89338,3.208115,4.198825,2.64172,3.5672333333333337,2.977105,3.55729,4.524805,3.620695,4.389395,3.96987,5.368765,0.6291046666666666,4.55956,5.4696,4.805645,4.668555,3.260286666666667,5.08845,4.629535,4.501725,5.234566666666667,5.41055,4.464725,4.270195,3.554125,4.546065,2.468225,8.82111,5.11165,4.36983,4.941945,5.0881,4.798235,3.568935,1.0951855555555554,5.66188,3.900665,5.35775,1.2808583333333334,4.13837,4.178715,7.555631666666667,4.62363,3.04673,2.1156366666666666,3.94225,1.643936,0.97782875,4.052105,6.427,1.9636033333333334,2.3327433333333336,2.7396733333333336,3.556265,3.547225,3.59719,5.00155,3.9127333333333336,4.20691,3.5831685,3.25612,3.6509,3.621715,2.71888,2.62504,2.2103275,2.4266833333333335,2.6722133333333336,4.293665,0.4774241666666667,2.529856666666667,4.517825,3.019965,3.5866666666666664,4.536415,5.8243,4.124155,17.336975106060606,2.937656666666667,3.860666666666667,1.562204,0.8476272727272728,0.8476272727272728,0.8476272727272728,0.8476272727272728,0.8476272727272728,4.76664,4.84744,4.903265,9.2318505,2.74775,2.74775,4.507535,4.525691666666666,1.238335,1.9434966666666667,4.54558,2.530625,2.2242175,2.298965,3.006225,3.8053166666666667,2.142175,4.148135,0.8045,2.9178800000000003,3.1429733333333334,2.9532933333333333,1.3742633333333334,3.356,2.2392600000000003,0.89528125,2.8279566666666667,2.6904066666666666,1.1845555555555556,2.4768866666666667,3.0371900000000003,1.9350633333333331,4.573858666666666,1.9106733333333334,3.2110633333333336,2.0868475,2.825753333333333,1.129288888888889,2.5793,4.885061333333333,3.8014666666666668,1.1418875,2.9314766666666667,1.3757775,2.5130866666666667,2.905943333333333,4.670493333333333,3.22143,2.675606666666667,4.833588,2.7180366666666664,2.1231,2.8796433333333336,2.7114733333333336,2.0520866666666664,2.87027,3.5836,3.329076666666667,3.0471266666666668,3.472433333333333,2.6943933333333336,2.47221,3.8089739999999996,3.8089739999999996,2.9136133333333336,1.9760900000000001,1.84343,2.5942066666666665,5.594040000000001,2.813883333333333,1.95425,1.74034,3.0843666666666665,4.558065,2.5374933333333334,1.0688879999999998,2.7736446666666668,1.5003399999999998,2.80109,2.1561333333333335,2.52525,2.05218,3.2855833333333333,1.200858,1.5641133333333332,1.43836,4.160871666666667,2.4275066666666665,3.998455,1.0050777777777777,3.964765,2.2859000000000003,2.4730725,1.7231280000000002,1.6652233333333333,3.162573333333333,24.737183716450215,6.7371066666666675,2.758453333333333,3.4269316666666665,2.28628,10.603757333333334,3.0055300000000003,1.0457325,2.51018,2.355156666666667,2.095546666666667,3.036626666666667,2.5345999999999997,2.4942333333333333,0.8157400000000001,2.9295533333333332,2.4194133333333334,2.8969166666666664,2.5923700000000003,2.6978833333333334,2.0924866666666664,2.1669066666666668,2.770583333333333,2.54639,2.188105,1.635802,6.040278333333334,4.70379,2.4249175,2.9182,2.2142866666666667,2.4412033333333336,7.995355833333333,1.8966433333333335,4.921515,2.25643,1.8933325,7.26562,2.935373333333333,2.82021,2.559,1.819976,1.4868280769230768,3.4611,3.4002666666666665,4.112115,1.56112,3.9606,1.3985675,1.3985675,4.25376,3.60151,2.6246228571428567,2.6246228571428567,6.160393333333333,3.30401,0.41082599999999997,11.535199624542125,1.1748566666666667,0.9488757142857143,3.69233,1.4806930769230768,1.7629475,6.545033333333333,3.628765,0.8286372727272727,2.0898533333333336,4.976601939393939,2.644184166666667,4.301455,1.6552714285714285,5.85165,5.2229,5.30685,3.6545655000000004,2.03352,3.2016666666666667,2.63102,2.6697900000000003,2.24956,5.44219,5.1876,4.80283,1.8811025,4.71473,4.059615,2.8464066666666668,2.391065,5.1709,2.69599,8.140953333333332,7.0669925,2.18342,2.373415,1.6654620000000002,4.7215,4.7215,3.1764666666666668,3.183733333333333,3.2844900000000004,5.21535,9.04843,4.36505,2.565525,6.03745,4.21629,5.42125,2.08778,0.85383,1.3379750000000001,4.35777,4.8894,3.6776,3.01402,3.745566666666667,2.1589199999999997,3.75996,4.44809,3.28468,5.41425,3.2486033333333335,3.693289333333333,3.648,3.251056666666667,3.4749666666666665,6.17235,2.897975,5.68725,5.4696,3.23278,3.4426,3.4426,5.500325,12.269754166666667,3.7548,6.5519725,7.448082777777778,3.53396,2.51181,3.937125,1.3180666666666667,3.876195,2.0400275,2.9548233333333336,3.4626333333333332,3.7322,2.22052,2.4052433333333334,2.7209566666666665,2.5928833333333334,3.16651,3.1074933333333337,4.17551,2.4173133333333334,2.8643366666666665,4.23515,3.0029266666666667,2.68033,1.15571625,2.05267,3.0059766666666667,2.643186666666667,2.5778233333333334,2.4052433333333334,3.7128666666666668,2.3818266666666665,2.5547400000000002,2.9419633333333333,2.85853,2.8968399999999996,3.2781599999999997,2.34639,3.3357666666666668,2.9209599999999996,3.224038,2.6221533333333333,2.4865233333333334,2.4133133333333334,2.363166666666667,2.5147133333333334,3.1173566666666663,3.1103366666666665,2.705075,1.99771,1.99771,0.8423216666666667,1.702226,4.539885,3.16452,2.6451333333333333,2.22052,3.4439666666666664,1.2418971428571428,2.7455700000000003,0.5571026666666667,3.643133333333333,3.4041333333333337,3.238785,2.9384333333333337,2.5892399999999998,2.9393433333333334,3.3063866666666666,2.7853266666666667,3.4832666666666667,5.702780000000001,1.6447500000000002,2.436733333333333,2.49616,1.8196266666666665,2.0548699999999998,3.1647266666666667,2.7851233333333334,1.716722,2.473733333333333,2.596643333333333,2.7153166666666664,2.66444,2.9325266666666665,3.0502066666666665,3.445266666666667,1.3528975,3.1461733333333335,2.2983,3.6060666666666665,3.4911,1.971125,1.7355966666666667,3.6829,2.8809466666666665,3.3758666666666666,2.563826666666667,3.02892,4.719865,3.1337766666666664,2.0753166666666667,1.6848079999999999,3.4374333333333333,6.27322,3.2711,3.6141,2.9482933333333334,3.4285333333333337,4.501111333333333,1.599828,1.2639444444444445,2.6855733333333336,1.8376879166666669,4.34876,2.998326666666667,3.4443333333333332,2.82403,3.2402233333333332,2.3629000000000002,3.236943333333333,2.4309025,1.621636,3.0382599999999997,3.40568,3.9378900000000003,3.164795,4.13139,1.6309375,2.66406,3.05263,2.50874,2.4090866666666666,3.3016566666666667,3.8646,3.6996333333333333,1.4034975,5.509122,3.22943625,1.6210216666666666,3.90137,4.008565,2.86289,4.12127,1.924584,1.924584,3.3989666666666665,2.87893,2.77288,5.48125,4.357255,4.210446666666667,1.13333,2.7591433333333337,2.7102233333333334,4.0840325,2.7342933333333335,4.360848,2.8064533333333332,2.2694300000000003,2.7444366666666666,3.51629,3.487665,1.6733319999999998,3.152563333333333,3.590545,2.2159625,4.422605,1.2482716666666667,3.46313,4.29164,2.641185,3.429415,4.110665,1.577885,1.53466,2.3811925,1.1232083333333334,2.173265476190476,2.0335225,0.45293214285714284,4.541965,2.31668,4.87345,4.861895,2.87808,4.529495833333334,3.0658066666666666,3.1146666666666665,3.7816333333333336,2.357276666666667,3.2967566666666666,2.9918566666666666,3.5938,2.2401066666666667,0.6703307692307692,2.2906066666666667,0.6320714285714286,1.9107266666666665,2.3569366666666665,3.176973333333333,3.408666666666667,1.5306866666666668,1.359235,3.82,4.802545,3.811295,3.6121425,3.330985,1.98083,4.076195,8.460283333333333,4.023115,5.788385,1.45595,3.997855,1.9391475,3.84048,3.97492,1.783025,4.19258,2.668515,4.027635,4.310765,2.27277,4.19184,6.4321174999999995,5.41105,3.258785,3.152045,1.655435,1.952515,3.763285,3.493595,3.20741,3.67593,4.097765,3.20972,1.7513575,3.85155,3.240955,1.869065,4.488357499999999,0.8452583333333333,3.56157,1.70489,4.51897,4.678586666666667,3.63061,2.9060300000000003,3.930885,3.606555,2.15487,2.3451575,3.8297333333333334,3.38236,5.7168025,4.04534,4.449255,2.32972,2.48441,5.03195,4.194615,2.5673120000000003,2.5673120000000003,6.015088333333333,3.7742925,2.6210825,2.93554,2.2546733333333333,2.905955,3.35844,3.7721766666666667,2.6570525,3.652195,1.0457420000000002,4.03683,3.12657,4.101115,2.9567,1.4799,1.636265,3.28344,5.744588,5.340450000000001,3.387935,1.547285,4.013555,3.550655,0.8182733333333333,3.354115,1.216972,5.9328175000000005,1.4818666666666667,4.07041,2.372235,1.5306866666666668,3.05277,3.499325,4.39529,7.524654999999999,4.309095,4.2160125,2.606005,2.830325,4.789875,3.80593,4.81573,4.47134,1.0260575,1.69219075,1.12746375,2.538755,1.936715,4.537385,1.12746375,4.79804,2.19917,1.6262075,1.6262075,1.869065,3.936045,4.61691,5.04875,1.65814,1.65814,0.9394033333333334,2.999765,2.08834,6.024785,4.451355,3.79055,3.100913333333333,0.9857957142857143,3.546765,3.24881,4.35077,3.774755,3.8766025,3.8766025,3.28665,3.883325,2.1280675,2.614515,1.0039500000000001,1.7506033333333333,3.62475,2.014343333333333,3.851495833333334,3.851495833333334,3.009655,4.785175,4.45053,2.83869,3.647235,4.265645,2.8307800000000003,4.6113125,2.683415,3.56337,8.72462,5.0335,2.622335,3.087905,3.07985,4.683975,2.96953,7.59549,4.521551,4.74434,3.43973,3.88734,3.699775,4.200145,4.736275,2.11618,4.07003,6.649884166666666,2.473815,2.1803071111111114,2.97723,3.39425,3.32617,4.821755,2.1908133333333333,2.13686,2.61909,3.1166549999999997,2.9400933333333334,6.550876,1.346955,4.799356666666666,4.799356666666666,3.111765,3.846926666666667,2.92541,2.546816666666667,4.91913,4.189703,2.194408,3.91384,4.34189,3.442825,3.02015,3.06963,6.876645,3.328815,5.13645,3.086645,4.6447,4.10667,3.737905,2.87893,1.8634666666666666,2.435095,4.03581,2.94551,3.3568816666666668,3.377415,6.722253333333334,2.56069,1.93993,3.3361633333333334,2.3243566666666666,4.20916,2.595835,0.8182733333333333,3.15879,4.19296,3.91293,5.879415,2.896315,2.69879,3.0751333333333335,3.0751333333333335,3.4290425000000004,4.63571,3.581605,2.130885,6.87791,2.108755,4.60563,3.662845,7.78121,2.7416433333333337,1.3171,3.135565,4.316505,0.62806625,4.024455,2.75458,2.956265,3.36699,4.520915,2.1746,2.47117,8.686834999999999,3.39315,2.680055,1.4818666666666667,4.036255,2.69974,2.35865875,4.00079,5.4083075,1.6562225,1.2653916666666667,1.1621416666666666,4.06177,3.718295,3.62709,3.6201475,3.6201475,1.7513575,2.356885,3.1776833333333334,0.9095433333333334,2.76307,1.1483875,1.6309375,3.36907,3.516285,2.35553,2.281395,2.8325899999999997,4.22204,3.38786,2.8669,3.248605,2.66843,4.227755,6.318515,3.98738,0.89727,2.4419085,8.59302,4.432525,3.910655,0.99532,4.460126666666667,1.4560566666666668,2.9107825,2.9107825,4.003155,9.0774175,1.0821033333333334,4.85418,4.50255,2.2885033333333333,3.907443333333333,4.70785,2.1669775,9.403709333333332,2.00887,2.1019833333333335,3.277915,2.0256133333333333,4.009378083333333,2.774,3.49904,3.234836666666667,3.012025,3.36938,1.2170733333333332,7.41491,4.216425,3.986465,4.0559,1.83764,2.9060300000000003,4.077876666666667,3.798745,0.6641253846153846,4.987515,4.52887,5.33435,2.1390025,1.29637,4.60454,4.156765,7.92846,0.7260876923076923,0.99136,0.99136,1.9755099999999999,1.4319066666666667,1.290716,1.7593466666666666,4.93322,1.1547466666666668,0.8147585714285714,4.0913875,3.667715,1.6036475,3.42292,4.60031,4.085605,0.604572,1.98593,10.575375,3.8039416666666668,4.15242,3.13858,1.3028625,2.4579866666666668,2.84222,4.911075,4.434185,3.996475,0.9384114285714286,1.626858,0.9535589999999999,5.1660125,4.204055,4.09068,0.9095433333333334,1.778678,4.02551,2.2385214285714286,4.175893333333333,1.025725,4.693645,0.6643083333333334,0.6643083333333334,0.6643083333333334,10.075515,3.98369,1.1483875,3.649355,4.47061,3.0844,3.439495,4.697513333333333,3.46823,2.0688016666666664,2.13132,0.604572,1.4228453333333333,0.5858133333333333,0.8922716666666667,1.2452866666666667,4.341865,3.778565,2.12224,7.529741666666666,4.886903333333333,0.6513011111111111,5.68525,5.84792,3.53591,4.433535,7.886846,3.8624807142857143,4.886903333333333,4.45941225,2.5513666666666666,4.452905,3.67919,6.65142,3.586845,0.427255,1.529006,3.99806,1.7523520000000001,1.2653916666666667,4.269795,2.4193933333333333,1.66198,3.044975,1.6403960000000002,4.335165,4.519495,4.180235,4.624565,5.8817,2.863745,3.930235,1.216972,2.3446025,3.58915,3.005135,2.194408,4.202095,2.63715,5.05325,2.995685,2.29678,3.3691191666666667,1.5950659999999999,3.59619,0.9095433333333334,2.17204225,1.1621416666666666,1.645525,3.555595,1.346955,1.2452866666666667,2.42452,2.66709,7.81075,0.9384114285714286,0.99532,1.301696,3.573085,4.23695,1.301696,3.862385,2.3446025,0.62806625,0.9095433333333334,1.9755099999999999,1.216972,0.45293214285714284,1.622792,4.218678666666667,2.2885033333333333,1.4734983333333334,2.8213,1.4034975,2.00887,2.936895,2.13132,4.534285,2.936895,0.8182733333333333,2.598062,2.4894075,0.08992181818181819,0.08992181818181819,0.08992181818181819,0.08992181818181819,0.08992181818181819,3.4127666666666667,2.7098566666666666,2.830526666666667,3.0664,5.24895,4.067555,1.7231280000000002,3.61186,3.64179,2.113595,4.90103375,2.59429,2.39209,2.37771,2.684085,4.9493,8.234601666666666,2.5015,2.0612733333333333,3.010582142857143,0.9385271428571428,1.3713633333333333,2.32597,2.297433333333333,1.61808,2.6617133333333336,2.1247333333333334,2.6644733333333335,2.7802066666666665,2.6633666666666667,3.87389,3.989635,2.626653333333333,1.263066,3.49453,3.70943,1.4653766666666668,1.25419,1.25419,1.25419,3.55687,2.8333333333333335,1.1226433333333332,2.2802266666666666,1.22513,4.28064,1.7026233333333334,7.230753333333333,3.4793425000000004,3.030663333333333,3.137854,3.137854,5.563370000000001,2.872135,4.71259,5.0274,2.1041575,3.24564 -GSM1946766,0.0,1.9994975,1.9994975,1.58472,4.161315,6.2348,2.295039605263158,1.6321,7.562070588235294,4.361635,3.1651000000000002,3.02538,2.32384,3.273295,4.257835,1.8229579999999999,1.52004,5.0232,2.471486666666667,2.24309,4.68113,5.282533333333333,3.92509,2.382495,1.790938,3.97263,4.506805,4.634585,0.6791575,1.5936427777777777,1.9578144444444443,1.738855,1.59215,1.0749471428571429,0.6912733333333333,3.062244642857143,1.5475925,1.84784,1.17996,2.0998775,1.088775,1.0591525,1.096302,1.486092,0.908046,0.9194660000000001,0.778676,1.1904785714285713,1.65675,1.832216,1.524668,1.93495,1.6634879999999999,18.231009916666668,0.38407933333333333,0.8238899999999999,1.087584,1.759782,1.407386,1.696256,1.0559085714285714,1.0559085714285714,1.0559085714285714,1.15406,1.010432,4.719805,1.1260775,2.4267325,2.01217,2.410475,0.972161,2.1849825,2.2696325,1.9296725,1.600115,1.9130425,1.6033,1.6950375,2.5268666666666664,3.638935,4.72502,5.09775,1.5674966666666668,4.661805,4.393400000000001,4.037735,4.033275,1.04160375,7.59921,0.602430625,0.602430625,2.2595175,1.0913257142857142,16.335404999999998,4.670925,5.3717,5.4845,4.093175,4.222375,5.26225,0.45182944444444445,2.3316625,1.849015,2.29461,4.473685,3.660595,1.521075,3.17519,3.5007333333333333,3.3116466666666664,3.6333333333333333,3.557565,4.67683,2.8918475,4.480735,2.9176066666666665,0.7026572727272727,1.6748699999999999,2.6316,5.0286,3.8098,0.551615,3.599745,3.784265,0.80631,4.536235,1.693647142857143,2.198455,2.849625,2.1287325,4.075465,5.85365,3.361915,2.71359,3.423833333333333,3.04923,4.290885,2.9715866666666666,5.6227,3.3898,4.49672,3.222285,2.46519,3.663185,2.4306,6.7370133333333335,3.48382,3.653025,5.8054,3.067765,4.821325,0.7611322222222222,9.538914523809524,3.44596,1.9233799999999999,1.84172,3.162986666666667,2.307565,4.67734,5.49465,2.1445075,5.270743333333333,2.747765,4.549425,2.1445075,2.9581766666666667,4.32538,5.24901,3.736245,9.13335,3.788905,5.0675,2.96932,5.0158,4.393615,1.83225,8.17958,4.40405,3.997745,3.56339,3.692215,3.349925,2.24613,6.05286,2.402525,3.949205,3.97359,5.06805,4.78747,3.419665,1.4231800000000001,2.8121,2.93189,1.8672075,1.8672075,6.0807657142857146,3.091495,1.88142,4.44842,4.50119,2.77939,1.5020033333333334,0.9307133333333333,6.89415,2.982725,6.8986,4.757555,4.00954,3.743305,2.83089,3.72457,3.54753,3.951775,3.985325,5.82695,2.911155,3.593685,9.21539,4.799575,3.574033333333333,3.095126666666667,2.763246666666667,3.892333333333333,4.343395833333333,1.8496725,2.709896666666667,2.14294,1.753808,1.7453666666666667,2.6126633333333333,1.70345,1.838495,2.980863333333333,2.7583633333333335,2.4027933333333333,2.7567033333333337,4.393400000000001,3.51083,3.213735,3.32483,4.2952,1.2521166666666665,2.20746,2.8693808571428576,2.06136,2.5869766666666667,2.1261366666666666,3.3410333333333333,1.75413,1.36018,2.8226833333333334,0.675328,1.64191,0.5253533333333333,0.5253533333333333,1.4831566666666667,2.426223333333333,2.1355833333333334,1.33159,1.5565333333333333,0.31131384615384616,2.6933933333333333,0.675328,1.2361933333333333,0.19878945945945944,1.4676766666666667,2.021045,3.479233333333333,2.0565633333333335,2.2129333333333334,2.52032,2.252596666666667,2.3815433333333336,2.48402,2.3092099999999998,2.2270033333333332,2.7276366666666667,1.9511200000000002,2.763595,4.15381,0.6707550000000001,1.7948233333333334,2.571,2.0177,3.36504,1.56022,2.59736,2.1834599999999997,4.34864,2.0022333333333333,6.977539523809524,1.6368428571428573,2.8379966666666667,2.0872625,1.8728525,3.2279466666666665,1.900005,1.93264,3.94659,2.6826066666666666,2.088925,3.83384,4.078065,4.38473,3.736,2.25259,3.408275,4.4058779999999995,3.807945,3.942795,4.240865,4.499565,3.05133,4.046365,3.42212,0.90318625,4.863375,1.2499183333333332,4.859325,3.84727,5.796342,3.589865,4.31496,0.96509125,2.22486,3.52839,4.06695,0.8062557142857143,1.1061603846153847,2.0627785714285714,3.8619085714285717,5.7044525,5.707564,2.2750175,3.11408,5.1407,0.3435878571428571,3.419155,2.422995,0.9887975,4.87353,2.038545,11.809995,1.296025,1.313855,2.0686833333333334,2.36623,2.3749653947368423,5.059330394736842,0.4912578947368421,1.7412333333333334,2.7368233333333336,0.99317,3.749966666666667,1.037667142857143,5.20375,3.852495,2.1340033333333333,6.0238,5.69095,2.69555,1.1049,4.50087,4.907405,4.319125,0.8476672727272727,7.855386666666666,2.8381866666666666,4.22072,2.6532033333333334,2.4469933333333334,4.47253,2.3535766666666667,2.61453,2.049236666666667,2.48988,3.17057,2.908466666666667,0.3486275,4.10326,3.83629,3.83286,3.916015,4.50732,6.1166469999999995,4.065325,1.6520775,5.4621,4.397905,4.349785,4.317335,1.0984266666666667,2.6453966666666666,3.16567,2.5463333333333336,15.878715,3.28268,3.88769,4.21544,5.78655,2.720535,5.152846805555555,1.6678325,0.8007611111111111,2.7425,3.37725,3.66603,3.9423,6.472518333333333,2.9153366666666667,2.24938,2.20129,3.4013333333333335,4.65259,2.2558325,0.3656635119047619,2.9524021739130433,1.927565,1.1408425,0.4940895988612836,0.6225156858178054,0.3656635119047619,0.3656635119047619,0.3656635119047619,1.1257425,1.323085,0.871315,1.4604075,4.2458275,0.22427029411764707,11.198956753246751,3.5045333333333333,2.82396,4.097485,4.229625,3.882555,2.176835,4.696835,3.940106,4.16287,3.92732,0.6319469230769231,3.3314,4.26555641025641,0.5369628571428572,3.14685,2.756546666666667,4.290015,0.5269900000000001,1.81334,4.4826,3.371865,1.8687475,1.7933266666666665,1.5277766666666668,3.0884133333333335,4.05886,3.033175,2.854036666666667,5.5702,5.6218,4.799905,3.2693266666666667,3.21757,6.772016666666666,3.8016666666666663,4.962915,0.424812380952381,3.04513,3.9335983333333333,2.0739466666666666,2.713645,2.8345883333333335,5.587771666666667,0.5901666666666666,2.890675,4.28497,4.596915,1.0458571428571428,4.650545,2.73086,4.88056,3.035686666666667,4.246915,3.530565,4.35156,1.1658833333333334,3.33281,2.7824333333333335,4.67004,4.0689,4.366635,5.8385,4.452745,2.661,5.25415,2.27033,2.836715,3.11497,2.6199133333333333,2.6872566666666664,2.26166,1.8170600000000001,1.61383,2.0794200000000003,0.80512,1.5541666666666665,2.1307233333333335,2.061533333333333,3.0112666666666663,3.249143333333333,2.8288433333333334,0.9269522222222223,5.0475,3.3044966666666666,5.435487083333333,2.7259004166666667,3.1740366666666664,2.831493333333333,1.6748833333333335,1.6748833333333335,2.410574025974026,2.410574025974026,3.3819425974025976,0.5142871428571428,1.7955966666666667,1.9915633333333334,3.701333333333333,2.1743661904761904,2.1743661904761904,2.1743661904761904,7.4158551190476185,4.352848571428572,0.9552545454545455,2.568955,4.893061666666666,2.38843,4.74375,3.233405,2.32458,4.247845,3.0040600000000004,3.0208666666666666,1.2682375,1.9680600000000001,3.028973333333333,2.32903,2.6211466666666667,5.7366,4.295433333333333,3.9034999999999997,5.142946666666667,1.9821833333333334,2.6526166666666664,3.2303333333333337,0.9303166666666667,2.108546666666667,4.706486666666667,7.891675,1.517525,2.951135,4.536955,1.7990659999999998,1.7607975,1.7607975,0.984925,4.6106,7.377585,4.07291,5.181411,4.368255,1.6893166666666666,3.987165,3.216435,4.47472,5.026,0.3632463157894737,2.90944,2.694185,3.97816,3.822865,1.8938580000000003,1.939055,2.520225,4.221835,4.00138,3.27494,2.45042,1.432372,7.02332,5.37545,4.180915,3.56252,5.2998,4.66391,4.35831,3.622715,3.6543425000000003,2.02319,1.1123442857142858,2.74175,4.054485,3.81572,5.6775325,5.6920424999999994,2.4579675,1.6590233333333335,2.730923333333333,2.79368,3.0102233333333337,0.7241214285714286,2.28321,3.692135,1.09896875,4.975335,3.236465,6.0641750000000005,1.3276251515151516,1.3276251515151516,4.151105,3.792635,3.767425,5.5645,2.77108,2.2551099999999997,4.02769,3.068755,2.1415525,3.4491666666666667,2.4570333333333334,4.219925,3.3571925,3.748875,4.623205,1.1159333333333334,2.78267,4.27723,4.2761,3.302045,2.4726033333333333,1.70781,0.7574777777777778,0.7574777777777778,0.7574777777777778,0.7574777777777778,1.556282777777778,3.7375475,3.7375475,1.59364,6.701316666666666,3.023485,4.265705,3.0370333333333335,2.70565,4.69964,4.042905,4.92911,5.0369,1.7404625,3.905585,3.533175,2.588885,3.373945,3.495405,2.59674,4.143565,1.876535,4.489095,1.722215,3.4160633333333337,3.09915,1.776755,1.1738183333333334,2.853595,4.41726,1.2124000000000001,0.8686877777777778,3.845615,1.359035,4.9188046666666665,4.21524,1.3408728571428572,3.62103,0.7524888888888889,2.60629,2.680016666666667,2.3087133333333334,2.50651,3.896165,2.8684266666666667,4.87375,5.46455,4.342955,4.35066,2.1111875,1.2480128571428573,4.00485,4.96413,1.37769,1.37769,4.117165,0.258428,2.71814,0.258428,0.258428,0.258428,0.258428,5.33875,2.6623733333333335,3.071395,3.54515,3.138,4.39186,2.4937,1.02469,1.02469,0.9807716666666666,0.9807716666666666,3.82676,2.046865,4.436895,1.5649405357142858,1.5649405357142858,5.94454,0.5078707142857143,2.3833925,7.353443333333333,4.628975,3.225375,3.54862,0.94186125,2.317755,2.0080025,4.54898,4.352945,4.222955,3.905645,1.2834085714285715,2.80071,1.956265,7.46737,1.733595,4.36492,4.659285,2.987575,3.889555,5.75719,7.864395,3.9478,4.36482,3.840675,2.4400675,3.114145,2.33133,2.34429,1.876665,3.90851,3.487885,5.508041666666667,6.4646,4.078205,1.0948966666666666,1.87892,3.647415,3.81362,2.101455,4.12591,3.296625,4.708699999999999,1.73152,4.037633333333333,1.58115,6.406573333333333,2.7213666666666665,2.38844,2.21685,2.24337,3.4484666666666666,3.2760433333333334,3.17873,2.7913099999999997,3.4150333333333336,2.2015599999999997,3.1801,2.959705,3.08957,0.3801815,2.98479,3.86072,2.644525,5.60725,4.919155,4.653105,6.762072,4.50941,2.1427733333333334,4.189325,5.15295,1.6185466666666668,4.504815,5.16625,5.10815,4.726495,3.208595,5.53245,5.04265,3.72367,5.353446,7.603975,4.16198,1.2229916666666667,1.4255016666666667,2.663315,1.842512,4.531805,4.002675,5.017355,2.5389833333333334,2.47628,2.695883333333333,2.4066,2.2912166666666667,0.9633555555555555,0.4903988235294117,3.931975,4.05769,3.6262333333333334,4.15713,3.18448,3.3113799999999998,5.233998333333334,2.8670633333333337,0.5701594117647059,3.08241,5.4577,1.857615,1.622502,3.737505,3.38447,2.49933,3.8315333333333332,3.84099,2.7354266666666667,2.2998533333333335,2.302286666666667,2.498956666666667,2.7705,4.270955,5.134105,6.217832583333332,1.2929059999999999,4.98118,3.3237562499999997,5.146624916666666,2.741963333333333,2.93896,2.12237,2.0800733333333334,1.367125,1.367125,2.6498033333333333,2.362693333333333,2.80824,3.975455,1.6589939999999999,2.25698,1.920275,0.43528875,3.506055,0.5629666666666667,0.831805,3.555175,4.24434,3.769775,1.6937025,4.52432,3.0973166666666665,0.7564000000000001,4.35185,3.906749047619048,3.290976666666667,2.53518,4.97394,0.2727093103448276,2.1543426666666665,3.187145,1.5041875,3.72346,6.60995,2.30138,1.3543333333333332,3.86828,3.87957,2.747666666666667,2.747666666666667,3.535635,2.653355,4.69623,5.697571666666667,4.96624,0.9380222222222222,2.7655666666666665,2.3697733333333333,4.608255,5.1168,5.5432,4.787145,4.423466666666667,3.6763,3.8021999999999996,3.5607666666666664,4.205866666666666,2.9722233333333334,3.1031333333333335,0.60135,2.40653,2.4593625,3.521485,3.1191766666666667,3.3041466666666666,0.7399100000000001,3.093555,3.9899235,4.612805,5.8081,4.87031,1.784405,1.784405,0.838732,3.131885,4.558685,3.681135,4.421790714285715,3.07869,4.633105,0.5827090909090908,3.1104,3.69139,4.351625,3.8918158333333333,0.79422,2.829185,4.022715,5.608,3.867595,4.928465,2.785585,4.149465,1.51541,1.0239,2.7328966666666665,5.43935,4.49678,3.16248,1.41884,3.96263,2.54255,2.684775,2.748889111111111,3.0222933333333333,4.51384,3.08313,1.785714,3.5593333333333335,1.4642914285714288,2.8898733333333335,2.5357766666666666,2.3293425,2.7970066666666664,2.871233333333333,2.2869266666666666,2.819183333333333,3.78274,3.024646666666667,3.5829516666666668,2.2875833333333335,1.973515,4.156123333333333,3.03396,2.3700733333333335,3.5829516666666668,2.117696666666667,0.8110972727272727,2.3937775,1.0356777777777777,2.2259975,1.4943525,0.9238909090909092,1.7701525,1.7762675,2.6609165,2.6894,4.62823,1.5024775,4.51688,3.1621333333333332,1.6020240000000001,2.366966666666667,2.4568666666666665,1.75064,2.696096666666667,2.7083333333333335,2.641027272727273,2.07853,1.7633299999999998,3.519133333333333,2.2971,2.9371211111111113,3.2873066666666664,3.083406666666667,3.7063666666666664,2.1099866666666665,4.054233333333333,3.4438,3.6709,2.8486733333333336,3.5650333333333335,3.7147666666666663,1.8808566666666666,10.071304999999999,4.19181,4.235075,3.466855,2.81599,1.90742,4.0409,1.657562,4.067725,4.32083,1.3125019999999998,2.468036666666667,1.13341,2.3654733333333335,1.6434766666666667,2.4158066666666667,5.0282333333333336,3.188636666666667,3.579685,4.96886,0.709915,1.443356,0.973098,3.57948,10.655415000000001,3.5283333333333338,6.7089,1.9801725,5.22615,4.346295,2.462275,4.92765,0.2867664705882353,0.8295828571428572,4.68591,4.172975,6.9942875,1.8841875,4.400995,5.8635,4.73453,4.55151,3.379755,4.59672,3.308965,5.8853833333333325,3.72036,3.144795,3.17498,2.1153999999999997,1.9798666666666669,1.4179443958333335,2.5396199999999998,4.13268,4.692435,1.561178,9.01525,2.03654,2.9431675,1.127636,1.127636,7.137828333333333,3.09812,2.2336975,2.24037,2.609783333333333,2.1393833333333334,0.9790733333333334,3.6429708333333335,2.5804066666666667,0.6194457142857143,1.7504099999999998,3.3919040000000003,3.3919040000000003,1.1969100000000001,2.5520833333333335,2.3154066666666666,2.7630566666666665,1.3943825,1.8051233333333334,4.63595,2.6116266666666665,2.681825,1.2031075,1.2031075,3.83472,5.65505,4.359635,3.111175,3.69099,5.60368,2.864685,2.805293333333333,2.939026666666667,4.193535,1.1627966666666667,3.2798033333333336,2.6169,3.811625,2.1524566666666667,4.71519,3.567815,4.31525,3.67184,5.608173,0.9198633333333333,1.962855,1.90117,3.71501,4.343579999999999,3.793625,3.870565,3.36259,2.469825,1.7046025,4.2883,3.38203,3.371895,2.485043333333333,0.867025,3.371915,4.18273,4.77225,1.2328233333333334,2.8939833333333334,2.4970133333333333,2.0383733333333334,1.8411995098039216,1.8411995098039216,1.2651483333333333,2.0153666666666665,1.0937828571428572,1.402082,4.532895,4.320835,0.4756385714285714,3.68009,3.4807666666666663,3.853585,5.35335,0.410945,9.199565,5.5106,2.72036,4.059535,4.45276,5.493569285714286,4.89955,6.8828,0.7003718181818182,2.7680633333333335,5.35205,2.72573,1.6005875,2.01704,4.364605,5.15183875,2.3913973214285713,3.0540599999999998,2.925216666666667,1.870435,4.40682,10.99145,8.450542500000001,4.0126,4.356,3.0921933333333333,3.139905,3.85504,1.831372,2.8786133333333335,3.6328,5.00415,4.804545,4.7084,6.67586,2.16109,5.0318,4.540805,4.77986,4.61938,7.877575,3.918445,6.06955,3.5118,2.894255,2.95476,6.04685,3.73108,4.93298,2.16336,3.1015333333333337,3.352695,5.9883,4.121325,3.77521,1.4933619999999999,0.9136625,2.4149125,0.55114,4.10294,3.623895,3.376885,2.8778,2.11545,2.96405,2.50325,2.99228,1.8680240000000001,3.02868375,2.880125,2.367565,2.607475,3.80392,1.3077783333333333,2.8797533333333334,4.892345,3.897933333333333,1.1280175,2.9661233333333334,3.750115833333333,3.7413980000000002,1.552775,5.6569,5.4216,2.10221,3.0323933333333333,30.407985212353005,3.2309566666666663,1.7064166666666667,3.9459,1.5579,2.61494,2.981946666666667,3.4128666666666665,1.98875,2.789175,1.884505,4.061735,3.4303333333333335,2.447035,1.5150225,2.19362,2.9062,0.3709109090909091,1.120415,2.8095433333333335,1.7055,3.35499,1.552775,2.1023466666666666,25.34851211111111,5.02675,3.643945,3.540545,2.534205,2.567475,2.63882,2.342185,3.456615,5.024911,5.3259,1.543366,1.80881,2.14885,2.435153333333333,3.693366666666667,5.2716,4.693265,4.339555,0.18510893617021276,4.90185,4.799510833333334,3.81437,8.55387,1.0739825,1.0739825,2.9344433333333337,2.760485,5.5247,1.8615844444444445,1.0013866666666666,4.35368,1.8763775,4.14707,3.98263,3.37922,4.07043,4.024765,4.86817,2.896975,0.6964233333333333,3.148315,2.203333333333333,4.276275,7.9091000000000005,4.2381,1.9728700000000001,1.9728700000000001,6.748279999999999,4.673715,4.16418,5.278,2.3455033333333333,5.084326666666667,1.4785566666666667,1.57378,2.9901999999999997,2.7897233333333333,3.02524,2.698593333333333,3.80354,4.4326725,4.16865,5.478,2.2852225,2.69665,1.838065,2.615225,2.494055,2.0749025,2.04766,4.732191666666666,1.8141475,3.4499490476190475,2.4243433333333333,2.8668933333333335,2.5983633333333334,1.9258466666666667,1.4098257142857142,0.928017,2.621253333333333,4.001433333333334,0.710078,4.493865,1.724485,5.832387083333334,1.9220675,1.5647775,1.501535,1.4578166666666668,5.516518888888889,1.805408,2.9577466666666665,3.5705333333333336,1.2533,1.8235525,4.786726,3.21949,2.0860566666666664,3.5266333333333333,2.784663333333333,2.857396666666667,1.249263214285714,0.2745475,0.2745475,0.2745475,0.2745475,0.2745475,3.76957,2.6626166666666666,2.574475,3.3668666666666667,1.4484533333333334,2.6442799999999997,2.98371,2.1419433333333333,3.7081,2.73816,1.65963,2.9617566666666666,3.1466833333333333,2.1776275,2.0252175,3.637935,2.791646666666667,3.8022666666666667,4.94867,2.6477166666666667,2.6540966666666668,2.5428466666666667,10.832741666666667,4.60166,4.402205,4.898775,4.35544,2.9032966666666664,5.01955,3.66357,4.054085,5.385488333333333,3.87967,3.052575,2.24371,3.387885,4.903515571428571,3.2406,16.94419792857143,1.095505,4.25352,0.8695422222222222,1.2657375,2.83975,4.521845,4.24963,5.0311,1.6393183333333334,2.3576975,4.2554,1.94656,4.550715,3.13015,2.61076,0.6207066666666666,2.763313333333333,4.57482,2.4036275,2.3817175,2.1575925,20.250374166666667,1.263546,1.3403125,2.56201,0.2866734615384615,1.705475,2.8514766666666667,1.99421,3.0142966666666666,2.67665,7.337095833333334,1.9237575,2.4542875,2.21208,2.055135,1.5933149999999998,3.2761933333333335,3.105085,3.63673,3.1836933333333337,1.90395,2.55465,3.105748333333333,4.965995,0.4466408333333333,3.6645333333333334,2.9656833333333332,2.963295,2.04537,3.6446959999999997,3.563185,1.5669033333333333,2.276553333333333,2.27397,1.3972533333333335,1.69729,3.518885,3.325195,0.7676916666666668,3.303225,5.01945,4.02738,2.303064,2.303064,2.9407200000000002,4.159245,3.259175,3.378935,2.2812175,0.848460909090909,4.2434,3.58262,6.0676,3.712505,2.3708080000000002,2.3708080000000002,1.3721625,3.193895,4.971765,4.32057,4.27234,3.0214466666666664,2.2937366666666668,4.316015,3.288425,4.1255,2.7658833333333335,2.1110666666666664,4.0667073333333335,3.10692,2.62175,1.8961966666666665,3.49247,2.624825,1.6947766666666666,3.8139,3.26812,4.330935,3.6499333333333333,5.14385,4.27582,6.36822025,3.926725,2.07722,4.560585,2.77695,7.178215,2.4477733333333336,1.25506,4.591165,3.5982000000000003,4.93631,0.5137992857142858,0.8426916666666666,3.56405,3.65283,2.0633680303030304,4.24909,2.873195,3.05794,8.947344,1.845824,1.2082380000000001,3.4548,2.57858,3.491925,4.992975,6.58543,3.138975,2.16051,2.8426566666666666,1.83774,3.1926966666666665,8.62308487684729,0.8621680952380952,1.0262175,4.338815,0.48339666666666664,1.6380825,2.0908625,2.9992,3.049375,3.001675,4.68127,2.248305,13.010575,4.79494,2.4303925,2.4303925,4.072755,0.832195,4.869483333333333,3.89071,4.245185,5.923719999999999,3.42171,5.38595,1.3509849999999999,2.82017,2.693115,2.776175,3.004735,2.63357,3.04277,3.586115,3.559795,2.981705,2.915405,2.88156,4.140275,4.45491,2.9296433333333334,3.189243333333333,4.713869166666667,4.21387,18.116479523809524,11.530295,3.3086335714285715,0.6875108333333334,1.4676857142857143,4.281825,3.54324,3.0147872435897436,2.3297,0.8501266666666667,0.6317216666666666,0.6347471428571428,2.0640625,1.591342,5.062275,3.262283333333333,0.7038572727272727,3.40666,2.39197,1.7065825,1.704872,6.795973333333333,1.5447380000000002,4.338375,2.671835,2.9060433333333333,2.354385,2.6214033333333333,2.5795166666666667,0.7891054545454547,3.383995,3.0444766666666667,3.9688713333333334,2.9581666666666666,4.650650000000001,3.72618,3.506745,2.4974825,3.386325,6.543685,2.1184575,2.466865,2.4859825,1.631105,2.482185,2.0988225,2.7395,0.896785,1.3786175,1.03132375,3.098235,4.279005,6.0527,5.4563,2.99894,2.455535,2.759075,3.4101666666666666,7.27203,1.2119066666666667,0.36348375,3.143235,2.0744166666666666,1.443816,3.286524,1.178718,1.7122683333333333,3.7232816666666664,2.7783866666666666,1.2394516666666666,1.9012166666666666,3.6238516666666665,3.66037,4.416825,3.720835,1.8625425,4.923745,3.89307,0.7723692307692308,4.662395,3.93808,4.208304583333334,3.2244233333333336,2.2716,1.323546,1.1869325,3.551025,2.737765,3.36129,3.912735,2.677035,2.70438,3.29946,3.642455,4.16221,2.478515,2.81591,4.37061,5.8725,0.588805,4.379495,1.787405,3.514605,4.0729999999999995,2.021445,3.184085,2.1601375,2.028065,2.6569,2.2960675000000004,1.76603,4.527005,3.72339,1.214432857142857,6.86195,1.0383433333333334,3.556075,1.8720999999999999,4.533255,4.03108,3.16901,3.1021,4.04363,8.17067,2.90945,3.672605,3.80151,3.682095,1.71826,7.91734,3.629485,3.886535,1.60959,4.31357,3.167405,1.01075375,2.06588,4.193095,2.205815,4.16608,5.064895,4.1092625,4.52292,2.14292,5.2133,3.97621,3.3008699999999997,2.3448166666666665,1.4379300000000002,4.12803,6.11895,3.89952,4.61163,3.016465,2.1739125,3.79396,3.44899,1.2052121978021977,4.161385,4.793854166666667,3.85225,2.7842,3.63729,0.46296857142857145,0.46296857142857145,4.3511,3.9248,3.727125,2.32407,3.765955,6.1676,0.83212,3.97047,4.601845,4.599875,4.885945,4.82993,1.8706975,3.14126,2.118825,4.47625,0.67185,4.029,4.131155,2.713805,2.8403266666666664,4.12997,2.23899,3.314165,60.00572285930736,3.349965,2.4934833333333333,1.7232475,3.263505,4.01556,0.83252625,0.96824,2.0724575,2.0724575,1.328784,3.263585,2.32138,3.6670015,7.3678,2.855923333333333,1.2320285714285715,1.281525,2.70342,4.0445775,0.895251,1.97072,1.1876440000000001,1.87428,3.872265,4.03127,3.33121,20.524996525974025,3.318455,3.922675,3.2696,2.309343333333333,2.815905,3.42078,2.502625,5.55197,1.522466,3.976135,3.28625096031746,5.799650833333334,2.085455,2.66954,1.96518,4.437535,2.2850266666666665,2.23199,2.16704,3.611167777777778,3.55765,3.172295,3.72793,4.28439,2.52385,2.60456,2.92015,2.851745,2.866527777777778,2.218295,1.9923425,3.49334,1.211265,3.797205,4.702945,2.568115,4.747065,4.80799,4.74041,1.9137966666666666,2.467235,2.63247,2.75194,3.997675,3.35661,4.61642,0.7698342857142857,4.014234,3.02786,3.81946,2.356015,1.8500599999999998,4.084956666666667,1.1349666666666667,2.875575,4.362895,1.108008,3.69827,3.47153,4.507995,6.2249425,2.10073,2.96839,2.65877,3.9139666666666666,3.091466666666667,2.724076666666667,2.8236333333333334,2.5155766666666666,2.4193433333333334,1.4461566666666668,1.9347175,1.9347175,1.8794433333333334,2.1044199999999997,1.70953,2.6062233333333333,3.76189,5.65085,4.67619,1.523255,4.3577,4.06995,3.598925,4.27565,1.9616425,1.934335,4.7075825,1.84236,4.19926,3.72239,3.585855,2.4445833333333336,3.585895,3.31994,3.087485,3.52996,0.14740673469387755,2.36366,7.674625000000001,1.517804,3.447435,3.02282,1.0083685714285715,1.1779133333333334,1.8907475,3.840245,2.98327,7.0816,3.53429,3.70335,3.105415,2.67514,3.48919,3.48322,4.015325,3.554505,2.86562,5.3615,4.033155,4.123545,2.6010566666666666,1.94573,3.46457,4.533025,2.729275,2.828595,2.14675,2.47593,4.205735,3.776945,2.680485,4.46277,5.2053,2.7819,3.83382,3.88453,3.568845,4.599435,3.38925,2.59356,5.0275,4.62533,4.57104,4.917,4.374585,5.2428574999999995,4.376585,3.936145,1.304562,6.58135,2.48931,4.25283,4.12915,3.89953,3.22893,1.9510233333333333,2.2133533333333335,2.5254833333333333,0.9784140000000001,3.4255333333333335,3.9270666666666667,3.1776433333333336,1.9434733333333334,3.684715,4.20322,2.5847666666666664,0.5516008333333333,4.40838,4.575305,5.0114,4.72285,3.505775,4.41077,4.953035,4.81743,1.3902444444444444,0.9518461538461539,2.8190233333333334,5.2095,5.8503,0.501620625,2.84518,2.5080899999999997,3.38947,4.40512,3.9706333333333332,2.035035,5.35425,3.221755,4.457565,3.069405,6.38015,5.27795,6.907282500000001,0.5483625,4.090955,0.800634,2.375585,4.0414666666666665,3.06228,1.46703,2.2650200000000003,4.185075,3.53177,4.365655,1.9146133333333333,1.8797425,3.22254,4.45976,4.217655,3.701975,1.659046,1.1718287142857142,5.7662,2.26154,7.618952500000001,4.290365,3.66841,2.15921,1.6554225,4.0609,4.75135,1.6208,2.498205,2.4490725,2.36366,6.51648,3.03107,2.7607,3.7943558333333334,3.909225,1.9559600000000001,3.104635,7.002717499999999,4.71642,5.2689,0.5301863636363636,3.13393,3.958435,4.7432260714285714,3.68689,4.280325,3.036895,2.85873,3.366665,2.83595,3.565086833333333,1.8936319999999998,5.168417,4.79022,4.902925,3.91407,3.45216,3.273766666666667,2.28609,1.34516,0.9213425,2.842675,2.53447,1.11708,2.66155,4.76792,4.5512,3.70021,3.82978,16.779989999999998,4.08087,4.49362,3.924345,0.7294166666666667,5.02525,4.405625,3.92276,4.793745,5.11695,2.75453,3.60272,3.309375,1.465532,3.102825,4.602195,3.2618266666666664,1.494396,3.680895,5.04155,3.90509,5.0042,4.8656,5.4771,3.90063,2.6575,4.21954,4.015445,2.60663,3.032,3.0357266666666667,1.5883816666666668,4.80007,2.6415228571428573,1.9999,3.97598,2.165845,4.31509,4.156123333333333,2.2929,2.655385,4.51576,3.74236,4.250185,4.548445,4.891005,4.876807,3.3031,5.32605,2.717601666666667,3.53811,4.09804,1.569308,4.332365,1.0310866666666667,4.402225,2.964725,0.9204085714285714,3.860915,2.057805,6.456670000000001,2.5992658095238097,2.5992658095238097,2.5992658095238097,0.610785,1.242995,1.81128,3.328035,5.76038,3.4797216666666664,1.981595,2.113305,1.6639099999999998,3.767075,2.47825,0.41704615384615384,1.683465,2.1791175,2.790865,1.878345,2.477995,2.42811,2.0947675,3.91521,3.07304,4.04238,2.993645,2.06692,6.47462,2.049,4.33082,3.885955,6.2738499999999995,1.5638633333333332,3.655705,3.77328,3.789695,3.97143,2.70851,1.9523675,3.79877,5.637441333333333,2.07038,3.60633,3.268765,1.9181225,4.742415,4.23082,2.604546666666667,2.301975,3.628965,5.449371428571428,5.95515,3.184175,2.425015,2.740865,3.01904,2.645395,3.84339,1.33083,2.805,4.617815,0.7934675,3.38571,3.956885,3.727695,3.10579,2.426005,3.18763,2.20397,4.539725,7.808218333333334,4.20815,3.28768,3.15951,0.9981275,4.492325,2.24237,4.33571,5.5975325,3.887955,3.911625,10.470310000000001,4.74239,3.956525,1.5236575,0.6918574999999999,2.92644,3.893465,3.50583,3.655075,2.13776,2.3502899999999998,2.32456,1.1121083333333333,1.1121083333333333,1.9093,2.3411666666666666,2.00571,2.211813333333333,2.6575166666666665,2.1876666666666664,2.2902400000000003,2.8475300000000003,1.4245366666666666,2.1352166666666665,2.107133333333333,2.01736,1.5427275,2.505926666666667,0.7548766666666666,9.509025000000001,0.7548766666666666,3.1612333333333336,2.1340133333333333,1.7996966666666667,4.199365,4.308935,4.416275,4.61491,2.1224966666666667,2.96622,3.2580893333333334,1.95253,3.0947066666666667,2.750363333333333,2.55253,2.6498833333333334,1.6170866666666666,5.5198,6.362779619047619,3.0458133333333333,3.3226166666666668,3.3061933333333333,2.5796433333333333,2.4946066666666664,1.0749471428571429,3.4827333333333335,3.5726999999999998,3.909415,5.88215,4.2366,2.8169466666666665,3.3797333333333337,2.99187,4.208182222222222,4.22658,2.61973,3.585255,3.2030066666666666,2.98926,4.617355,3.2574966666666665,3.55231,5.788223333333333,1.9554766666666668,2.51827,1.6531533333333333,1.46368,4.78293,3.4551583333333333,2.4831600000000003,2.1661233333333336,2.1479933333333334,4.34638,3.63204,2.559575,3.3343000000000003,3.13223,3.4343,3.3748666666666662,3.4765,3.0204866666666668,0.6005275,3.714166666666667,2.44789,2.62442,3.38532,4.14133,3.86617,5.137,2.590775,3.731678333333333,1.0936183333333334,2.7859700000000003,2.7859700000000003,4.00612,2.72535,3.74608,4.200095,1.711095,3.358425,3.69407,1.2913985714285714,3.6956873333333333,3.0978385714285714,2.22167,0.38499,4.713345,2.86734,6.5568550000000005,3.048765,6.1651,3.43104,3.830135,3.87512,1.70344875,2.99302,3.746175,3.29699,3.32129,2.972386666666667,5.3754225,2.0815575,0.98944875,1.8712033333333336,1.7778600000000002,5.29105,2.2717266666666664,2.38852,1.819355,4.363515,3.878425,3.919805,0.499528,4.065925,3.73394,2.712196666666667,2.411023333333333,2.747996666666667,3.195543888888889,3.8542533333333333,1.57461,0.6430210526315789,0.7927,3.3332633333333335,4.051775,5.969446666666666,4.71431,4.2267,5.2579,1.3610028571428572,4.0729999999999995,2.2539666666666665,0.98445875,5.39775,5.99895,2.570925,4.746995,4.0737,6.43088,3.919233333333333,6.481043333333334,3.7957,2.4135025,5.5166,10.405428756410256,2.4993466666666664,0.64334,2.95326,4.05869,2.316785,6.2932,3.707535,3.651635,2.651893333333333,2.651893333333333,5.56585,3.488265,3.985305,5.0047,3.77879980952381,2.4224262857142858,1.08188375,4.55147,2.678415,5.168022499999999,3.554005,3.935905,2.788275,2.09335,4.417865,4.82178,3.5790666666666664,4.06916,4.399225,26.996279404761903,1.834305,2.58285,2.3730025,1.6185233333333333,2.46391,0.9690085714285714,2.732393333333333,3.0675933333333334,3.3874,2.99001,0.6173215384615385,3.1432,3.447815,2.81866,3.245233333333333,3.468185,5.6489325,4.726545,3.74127,3.69535,3.7393324999999997,3.67988,3.4956333333333336,1.7391425,1.009725,1.4378033333333333,2.3416366666666666,1.5754366666666666,2.751326666666667,2.4579866666666668,2.33649,2.3632966666666664,2.587865,2.097975,1.8037933333333334,3.117145,4.38953,3.646305,3.96526,1.466122,3.18431,2.475163333333333,3.59887,2.2419266666666666,2.616855,2.389195,1.5656366666666666,4.110415,6.626203333333334,2.853865,3.689215,4.005275,2.67585,3.2791275,3.3557333333333332,3.55809,4.632545,0.30287623552123555,0.30287623552123555,4.79819,5.1853,2.944235,2.916815,5.322,4.41698,0.6386715384615385,4.95261,4.233375,3.63902,6.36005,4.68918,7.61951,13.865685000000001,12.401184487179487,4.330135,4.34839,2.4243366666666666,0.6110861538461538,2.62499,4.293765,1.3594583333333334,4.699905,3.5210666666666666,2.872196666666667,2.0873166666666667,2.0867400000000003,4.66975,4.928615,8.716256666666666,5.1797,4.109835,7.280459583333333,3.401255,3.3590666666666666,1.3618825,5.485315833333333,1.9235825,2.3764600000000002,2.704306666666667,0.237709375,2.853755,3.53059,4.602163333333333,0.8326079999999999,1.117335,3.953435,0.582723,0.582723,3.0223766666666663,3.31001,3.2878399999999997,3.759125,4.23881,5.4088,3.923575,4.2371,2.956185,3.13967,2.5233966666666667,0.8801166666666668,2.6507466666666666,2.831565,3.12728,7.01784,2.79001,9.403675,3.035975,5.76125,3.094745,2.246755,2.413995,2.76115,1.84531,2.317045,1.9033925,3.45272,2.369725,3.9680075,2.83641,4.0225525,4.0225525,2.8141791666666665,2.8141791666666665,8.715888666666668,2.42714,0.8164440000000001,2.6306166666666666,2.512626666666667,2.5349833333333334,3.9680075,1.933468,1.8746300000000002,1.5343339999999999,3.7258,3.861475,1.731505,4.502915,4.18305,5.619856111111112,6.517158333333333,2.223003333333333,4.22133,5.71681,3.738985,2.84656,2.2157833333333334,3.36485,3.3303818181818183,4.13546,5.198142499999999,7.308781333333333,3.42616625,3.11584,1.16599,4.28697,3.9727326666666665,3.61933,3.7337,4.34586,2.515535,2.4523533333333334,6.25546,2.942775,1.336622,5.42447,3.70997,2.5478633333333334,5.09785,2.5478633333333334,2.676275,3.60181,5.09515,1.0434057142857143,4.032886666666666,4.551515,3.427,1.2894783333333333,1.7240275,3.548255,3.844155,2.46444,6.553473333333333,3.92459,3.506705,3.992425,4.433685,1.360115,3.796355,2.50509,3.705475,3.86372,3.532255,4.75128,3.18866,3.65049,4.802835,1.9983113333333333,1.86586,3.0965933333333333,3.6235,3.3260233333333336,2.77223,3.5789666666666666,3.2407333333333335,5.53425,3.35327,3.6042,2.990965,1.76759,3.4836666666666667,2.0005533333333334,3.07922,3.151975,2.995235,0.67185,2.069425,1.8134466666666667,3.22084,1.7962479999999998,3.472621,4.22556,1.2018739999999999,3.1111725,4.505225,0.814758,1.3365,3.21262,3.966915,3.39949,1.95449,1.7576366666666667,3.50666,2.4889425000000003,1.6794366666666667,2.84298,1.840655,1.18141,1.36728,6.43269,3.15273,2.254725,2.499345,2.4224175,3.870785,0.88460125,0.35536214285714285,0.7563471428571429,4.728515,1.7888457142857144,4.9674,2.1023725,1.6736274285714288,2.9616674285714284,1.28804,1.0579174285714286,0.719996,0.59612,2.3995575000000002,6.2978,2.994945,3.863855,0.34929107142857146,3.65958,17.641762571428572,3.093795,6.8319796043123535,1.0843925,1.0843925,1.0843925,1.0843925,5.752331666666667,4.16872,4.31797,2.208883333333333,2.99829,4.844945,5.56185,3.82254,3.691575,4.24491,3.884195,3.62023,3.767016,4.11881,5.05325,3.82212,4.69154,3.451715,4.22357,2.62953,3.56724,3.27927,3.73432,3.768155,4.30212,3.116706666666667,2.43308,2.5117933333333333,4.096295,1.2945228571428573,3.83366,2.4381866666666667,3.1963446666666666,4.1092625,4.481185,3.169245,3.075125,4.380185,2.86978,3.23854,5.3671,4.65698,3.257675,3.410915,1.702306,1.702306,1.76966,4.626605,3.75215,5.4121109999999994,5.1254,3.5532900000000005,6.5975,4.8171,2.1363075,9.527574999999999,5.37515,6.2060575,4.542,2.8034933333333334,3.046215,0.2617041379310345,0.85241625,3.885042666666667,3.45228,4.67593,2.925993333333333,6.491723333333334,4.867755,0.5663,2.861595,0.49420000000000003,1.7170407142857143,3.46028,2.664115,3.456745,3.919025,3.451065,3.39842,3.34327,3.681745,3.578575,3.640795,3.481925,2.4053,1.7170407142857143,2.96368,2.163305,3.62833,2.171115,3.755475,3.64277,1.71826,4.47484,2.61005,1.2759333333333334,4.38256,4.599475,4.288805,2.87603,2.983233333333333,4.15344,1.8833033333333333,1.423166,2.430543333333333,2.58046,2.63336,2.2809733333333333,4.80748,3.20951,4.938720833333333,3.743645,4.768445,3.88449,1.622954,5.2181,4.461565,5.3148,3.936425,6.9460049999999995,1.88455,4.81935,3.347005,3.17796,1.7145825,1.7372633333333332,3.96884,4.311645,2.8540233333333336,2.6529266666666667,3.5543775,3.5543775,2.6357766666666667,3.1468966666666667,3.43265,3.945155,3.656745,0.7249469230769231,3.291965,4.53006,5.122547777777777,2.96957,3.082865,1.8045075,2.796645,3.57051,2.2372,4.610145,2.958435,4.898125,1.8583366666666665,1.0217818181818181,6.54643,3.701275,3.33197,3.0444600000000004,1.685154,30.216623607142857,3.835755,3.3852,5.71855,4.486035,0.8481416666666667,6.854625,1.86453,5.59325,1.4302516666666667,4.04036,4.824651666666666,3.66208,3.309495,2.167925,3.4080333333333335,4.783465,2.0285275,2.7544,3.511105,2.70872,2.583155,6.05355,2.22678,6.47975,1.12765375,4.31633,3.6529,3.879115,5.0916,3.00272,2.3760566666666665,4.050935,4.448585,3.763775,3.763775,5.76595,2.266745,4.310525,6.439878333333333,3.365935,4.098795,2.96181,4.650065,3.661845,4.163515,1.43159,2.259955,4.357465,4.480015,5.7393,4.312,2.16218,9.39774,3.381425,3.792405,1.7276714285714285,3.513295,2.2920266666666667,2.7389166666666664,2.14994,1.3327799999999999,2.51587,0.9239485714285715,1.1260128571428571,1.1260128571428571,1.1260128571428571,1.7591733333333333,0.57523,3.904605,1.2242566666666665,2.48093,0.8929616666666668,1.8639599999999998,2.66228,2.04973,0.74477625,1.7764199999999999,1.4713366666666667,2.3716766666666667,1.636958,1.636958,1.7165266666666668,1.3774899999999999,0.862636,1.8259800000000002,1.5884,1.1765666666666668,2.200225,2.117075,5.8377,1.5686575,5.7109,17.076805750000002,6.58721,3.434075,3.6121833333333333,3.4461666666666666,2.71518,2.73999,2.97785,0.7163333333333334,0.972906,0.972906,0.63964375,2.3926433333333335,3.493355,3.305655,1.53953,4.849125,3.984225,2.65752,3.66566,5.0051,3.790905,4.114595,3.4772,3.346445,3.53084,5.61645,3.0765666666666664,4.89319,0.52248,0.52248,2.414425,2.71889,4.60536,3.53865,3.778225,4.750195,7.668824,7.55257,3.591105,2.221345,4.06737,3.41201,2.45337,2.31797,3.794035,1.3295466666666667,3.79617,2.587685,1.6056625,3.6710999999999996,3.74728,2.00846,5.198142499999999,1.5845675,3.3971,3.13434,1.0255142857142858,3.571266666666667,2.7605799999999996,4.222725,1.1270816666666665,1.7256425,2.22442,2.14978,1.6832825,2.505575,1.8579325,1.9441525,4.152975,4.4541,2.55479,1.79151,1.4634066666666667,3.5397,1.9921066666666667,2.7579,4.58996,7.1237,2.6064133333333332,3.12942,3.481875,3.601645,2.3857,4.89046,3.87384,3.1046,1.364125,4.61467,2.285335,3.24911,2.593035,3.77247,4.893525,5.7144,2.1685333333333334,2.66709,2.718026666666667,3.4196000000000004,2.0265333333333335,1.469824,5.4336,3.3778666666666664,2.2608889090909092,3.1059933333333336,2.9382699999999997,2.35494,3.21345,3.10427,3.4388666666666663,5.3596,4.189755,2.9193366666666667,4.829105,3.186215,2.41214,3.435055,3.86013,4.1578,6.138066,1.8024159999999998,3.78336,2.38549,3.655965,3.63751,0.58558375,2.26879,2.307075,3.32505,2.707045,2.24238,2.746125,0.5956330000000001,2.716223333333333,4.45555,2.49337,4.28238,2.33975,3.898985,1.9398525,4.424295,4.423735,2.06598,2.775075,6.8917775,3.761775,4.49985,5.0329,7.134085795454546,4.307015,4.22738,2.1523875,4.60497,2.84519,1.9198266666666666,1.921035,2.10364,1.0182071428571429,2.5087366666666666,2.3530466666666667,2.60955,3.2258,1.765626,3.32518,1.9061466666666667,4.1886,5.001455,1.04861625,1.83144,2.5250533333333336,2.842693333333333,1.9569400000000001,1.1194733333333333,5.410514999999999,2.13321,2.6706033333333337,2.66079,2.525533333333333,2.749216666666667,3.19388,2.2225266666666665,2.61198,2.1677133333333334,4.055395,3.457925,3.98249,3.0124033333333333,2.9953466666666664,0.688014,1.7072733333333332,2.1204725,2.0606966666666664,2.565866666666667,1.1552533333333332,2.727066666666667,2.9698666666666664,3.48825,1.9531833333333333,3.33972,3.138135,4.914385,3.265915,0.6111283333333334,2.15058,2.7920466666666663,3.1859300000000004,0.7469163636363636,2.615133333333333,3.381258,3.272396666666667,2.8581733333333332,3.3649891666666667,3.74807,3.8922333333333334,3.074396666666667,2.0178375,5.5398,5.1268,5.1846,5.45605,5.59815,1.7749033333333333,3.154665,3.7471,3.319046666666667,2.9217333333333335,2.7222866666666667,3.9213666666666662,3.476933333333333,2.8946199999999997,13.787956666666666,4.45996,1.10806,2.6959933333333335,1.475792,3.2606133333333336,3.1551899999999997,2.2137166666666666,5.607315833333334,6.620477666666667,2.2233533333333333,0.864101,4.171055,3.4402000000000004,3.090755,4.750835,5.4387,5.6084,4.740895,3.52783,1.9274275,6.48765,1.16599,6.416107500000001,4.55879,2.46026,4.002125,7.076171666666667,5.81725,2.2055933333333333,1.4161983333333332,2.0872625,6.491315,1.552775,3.0030566666666663,2.5300583333333333,4.076241111111111,5.4761,4.40256,6.2797,3.57623,5.21275,3.72516,8.70519,4.88389,5.87545,2.306035,2.56065,10.846813333333333,3.44903,2.427535,2.4774533333333335,1.59448,2.0678199999999998,3.3410333333333333,0.66371375,1.09804,1.0973814285714287,3.175945,6.806439999999999,3.0696866666666667,1.3822166666666666,4.63504,3.48825,0.573688,4.72657,4.218485,4.996575,3.657795,3.306365,2.6363366666666668,4.23962,10.1953,1.8052325,4.0963075,3.87582,4.573535,3.717195,0.8186233333333334,3.6069333333333335,4.003733333333334,1.79763,2.47962,2.33242,2.48862,1.9633466666666666,2.1449833333333332,2.27101,5.950261428571428,5.3358,3.627365,5.1016216666666665,1.9168766666666668,2.3560425,4.682825,4.424115,4.499845,4.10837,4.351165,4.769405,1.702306,3.708205,7.6959,1.3087216666666668,1.7587733333333333,2.45124,2.451416666666667,2.8056866666666664,4.850540583333333,0.7927,2.39833,3.34779,6.2833,4.66957,2.1889766666666666,2.876583333333333,2.0658425,0.543215,2.601725,2.96533,7.804125,4.37107,4.508175,0.873013,4.690366666666667,9.04284925,10.677283333333333,3.244385,1.17162,3.67505,3.56882,2.5628866666666665,5.210204666666666,4.58459,4.04409,2.0263025,3.7817000000000003,2.1442366666666666,2.5664433333333334,0.777349090909091,0.38358866666666663,2.658665,3.502245,2.0584535,3.3677,3.00257,4.2785,5.6905,1.512864,2.9418100000000003,2.0007099999999998,2.0007099999999998,2.21437,3.17679,6.7725,2.7004466666666667,2.3757699999999997,3.29583,3.3854333333333333,4.238395,4.330865,4.14477,4.18608,4.01479,4.254285,7.10145,7.9200025,1.9350625,2.29426,2.94101,0.9152333333333332,0.7156408333333334,4.45711,2.384335,5.14125,2.9037566666666668,2.9046066666666666,1.719966,1.515165,3.84366,4.39445,4.395595,2.0340333333333334,1.4019599999999999,2.692633333333333,2.0361766666666665,2.542806666666667,1.1212828571428572,1.1212828571428572,2.7991233333333336,4.823345,3.018595,3.24638,3.609095,2.195065,19.96301524242424,3.96102,5.397712500000001,4.30632,4.766665,3.85479,3.63036,5.5869,6.132555,0.9113633333333334,0.9113633333333334,0.9113633333333334,2.724906666666667,1.7288857142857144,3.3463666666666665,3.972445,3.907955,3.10848,4.09824,4.48668,0.7942322222222222,2.00183,2.2057266666666666,5.9705493333333335,3.2681560000000003,4.024899333333333,5.0029,2.021445,1.9974066666666666,2.3456233333333336,0.52002625,0.89673,1.90863,2.19061,3.158265,13.289375,2.62603,5.3304,0.7292642857142857,9.390709999999999,5.6255,3.706815,4.202565,2.54165,5.28835,2.54165,2.687272,3.257395,3.89919,3.401425,4.025995,4.287905,3.417545,5.8111,6.70566,1.81588,2.42742,2.78402,26.142047187902186,1.548208,6.40055,3.9756280000000004,3.92417,4.362415,4.39334,2.748685,2.699645,2.342785,6.7309,7.2054,4.767985,4.765115,4.149755,1.7898575,1.83417,4.223345,0.3644361538461538,0.3644361538461538,0.3644361538461538,0.3644361538461538,4.104145,3.23188,0.91494,1.8875233333333332,1.152011111111111,4.425155,2.4677700000000002,2.2464675,6.899326666666667,3.0906233333333333,0.1791862068965517,20.345909666666667,4.6743966666666665,1.7754439999999998,1.3043255,2.11248,1.992968,2.302755,4.6079,2.885495,3.55808,4.320695,2.17558,7.518260000000001,2.744555,2.009775,4.4392,5.88815,8.506236666666666,4.29691,0.3022682926829268,3.611,3.8098,2.72998,2.0929825,3.0545266666666664,1.6407,1.6407,4.09315,5.670192500000001,11.259845,9.111025,0.5925777777777778,2.46554,3.83435,3.253045,4.78847,3.44479,1.283576,1.283576,3.3004,4.10012,2.62643,3.563975,4.35888,5.4228,6.827035,2.26266,4.78522,4.259705,2.594595,3.0483366666666663,3.0628499999999996,4.82176,4.07518,5.5924,4.179915,4.431785,3.894225,4.41006,4.23387,5.24725,2.5666766666666665,3.04987,1.13236,4.50085,4.10673,3.750945,1.6195060000000001,1.9009733333333332,3.564133333333333,2.774696666666667,2.0052033333333332,4.321413333333333,1.6672333333333331,1.7927425,2.5525033333333336,2.5360066666666667,2.2670266666666667,1.6067566666666666,3.7681,3.0197833333333333,4.1108666666666664,3.1759958333333334,2.1228766666666665,2.7064966666666668,2.0414066666666666,3.301885,2.3249133333333334,37.67602983333333,2.077980363636364,2.077980363636364,2.5750533333333334,2.2937966666666667,2.12801,1.6979899999999999,2.8382466666666666,1.8313533333333334,0.7995307692307693,5.06325,6.61262,4.12158,3.93802,5.52565,1.8535333333333333,4.355755,1.802138,4.93577,4.940295,5.5524,4.045085,1.7391425,3.966895,4.02308,4.454455,4.499475,5.34485,3.87324,3.462666666666667,2.7042266666666666,1.9923225,1.98683,4.43911,2.488983333333333,3.7648875,3.7648875,2.271193333333333,1.5182033333333333,2.6412299999999997,2.5988700000000002,2.53545,4.99834,2.7040566666666668,1.19267,1.19267,2.15079,1.9725033333333333,2.48845,2.6097433333333333,2.476106666666667,2.38191,2.17686,2.06323075,2.872403607142857,1.5667916071428571,0.8091728571428571,62.04842983829365,2.4360999999999997,3.4343,2.364288,0.8366300000000001,3.8982546666666664,1.59961,1.59961,3.056146666666667,3.0618700000000003,0.75761875,3.1487833333333337,5.569853333333333,3.3394999999999997,2.4517599999999997,2.9091,2.06648,3.077787333333333,0.289678125,2.6407133333333332,0.813934,2.5004,1.214962,1.214962,3.4347666666666665,1.52772,2.683543333333333,1.6733613333333335,3.511533333333333,1.6733613333333335,2.1774833333333334,2.7016466666666665,3.0448799999999996,1.410674,1.410674,2.9451133333333335,1.4720000000000002,3.26661,2.2673433333333333,4.433765,3.3486,11.972338,6.872785,3.40398,2.493955,3.760895,5.32805,5.61485,2.6599983333333332,3.835375,3.70093,2.2279566666666666,3.92167,3.2927199999999996,2.859576666666667,4.807085,2.2184466666666665,1.06427,3.5443258333333336,2.7469433333333337,2.911555,0.74747,2.694505,3.386185,4.061685,4.36416,6.51515,1.94656,1.8362079999999998,4.33505,4.465205,2.3806,2.508798333333333,1.91999,2.185158,0.919318,5.0209,4.32589,3.70615,3.696185,3.0949899999999997,5.14245,5.0191,2.76542,1.7584033333333335,0.49682733333333334,14.279077000000001,0.5197218181818182,0.5197218181818182,0.5197218181818182,3.0049233333333336,3.8495000000000004,0.5197218181818182,6.934426666666666,4.288026666666666,0.723271,0.723271,3.3881,3.196215,2.959545,4.347115,4.945505,4.1712655000000005,2.3910975000000003,4.905138,3.139405,3.506249761904762,4.68992,2.90816825,2.3697525,2.4005975,2.7297,1.6389175,3.3428991666666668,2.937656666666667,2.282145,2.06506,2.0577525,1.7963333333333333,1.6331975,2.641175,1.042708888888889,2.4677575,0.6069621428571429,5.06105,1.74345,0.6509675,2.0258825,7.9164200000000005,2.72994,1.964128,3.275315,7.26652,2.5284,4.293985,3.00487,5.94735,3.464375,3.721465,4.19963,4.08775,3.0161933333333333,4.2318533333333335,1.12713,4.035925,2.45353,2.5452166666666667,2.47427,2.37256,2.13228,1.2737125,5.5471,0.9238909090909092,4.972755,5.5225,4.96218,5.321,3.661433333333333,2.458816666666667,1.9833960000000002,2.8532533333333334,2.873336666666667,2.523845,3.8160333333333334,2.70965,4.969155,1.83274,40.1042651984127,4.81871,2.4311233333333333,2.37262,2.8320900000000004,1.52492,6.04455,3.864465,2.3329866666666668,3.0539966666666665,2.32253,1.6473675,5.177,0.7652428571428571,4.398552142857143,1.2997485714285715,3.4775666666666667,3.346833333333333,2.7241,1.4135625,4.46,1.6682,1.6682,2.38484,2.7763825000000004,3.3614333333333337,3.3408333333333338,1.4577233333333333,2.817743333333333,2.69763,6.323356833333333,2.83593,4.054438333333334,1.4668133333333333,1.409,3.050323333333333,0.924952,5.27065,3.3488666666666664,2.890693333333333,3.5999,2.8504066666666668,2.7331466666666664,3.2940166666666664,1.8235366666666666,2.4224175,2.4481766666666664,3.3877,2.4890966666666667,3.8023333333333333,1.8874666666666666,0.6301466666666666,9.847753269230768,2.7951633333333334,5.0978,5.08885,2.806763333333333,3.0958733333333335,1.3146625,2.19687,2.15622,1.3146625,3.96111,0.467265,0.467265,1.2863075,1.2863075,0.81079,0.81079,2.584155,3.202315,2.30314,1.549305,1.609795,3.78368,2.93831,4.567675,5.37965,1.86222,4.37413,2.283075,4.618540256410256,1.7084625,1.7084625,2.141445,1.6525200000000002,3.835934166666667,2.02146,4.18275,1.6393183333333334,2.61035,0.5499876923076923,1.1584228571428572,2.0886275,2.2082425,1.83634,1.357775,4.177635,4.29172,1.9734566666666666,2.3409400000000002,1.3080399999999999,0.6812266666666668,2.14388,3.405095,2.977536666666667,4.535765,4.921595,4.87706,3.756235,6.960105,1.5381666666666665,5.927194999999999,1.858075,4.61385,4.484645,5.743258,3.311733333333333,2.32862,1.7974225,1.9606179999999997,1.9606179999999997,2.4635825,2.4635825,4.24407,5.94625,0.92347,3.89498,3.364495,3.43481,2.59326,1.4156925,2.80574,4.256,4.18613,1.694892,6.55175,4.93705,1.7768933333333334,1.3240625,3.965125,4.049196666666667,3.64784,3.52738,3.90113,0.6250785714285714,3.8221333333333334,3.328186666666667,2.6958366666666667,2.87569,2.194926666666667,3.6511,1.554,1.554,1.554,2.929513333333333,3.02242,3.306573333333333,3.340652071428572,2.26607,1.2042242857142857,3.1920266666666666,3.1588100000000003,1.37327,2.684703333333333,2.674113333333333,1.2561499999999999,2.650046666666667,2.84805,2.96411,2.54785,2.435496666666667,1.9910175,3.1457333333333337,4.6645666666666665,4.00191,0.9589740000000001,1.455076,0.549677,3.6313999999999997,8.87576,2.96097,3.463815,3.1827433333333333,4.284489166666667,1.8885925,7.57393,6.646546666666666,2.7233066666666663,2.2487559999999998,4.06576,4.860225,1.5523099999999999,1.290512,1.361624,2.019555,10.752116666666666,2.71445,3.1681833333333334,2.957001,3.841795,2.1156333333333333,1.11833,4.464165,1.202895,3.2949811538461535,4.3917,3.30323,3.2521466666666665,3.10556,5.0257,1.1821166666666667,2.14223,1.8817323333333333,1.8817323333333333,3.832265,5.81145,9.91723,4.49705,3.32213,4.683285,1.755335,2.308965833333333,4.449865,3.58469,3.829385,1.52126,2.972433333333333,3.42476,3.86761,2.4175075,4.0462,3.760755,3.521135,4.06225,3.613525,3.72373,5.474,3.1475500000000003,2.4811533333333333,4.369665,2.979475,3.904285,2.006975,2.516275,2.613305,5.67465,2.63675,3.201021590909091,1.6739775,2.60689,3.308285,2.20334,2.13129,0.7240616666666666,0.7240616666666666,1.763895,3.575199696969697,4.044215,2.8776566666666668,4.60378,3.061635,2.4678848571428573,0.92749,2.930375,1.536535,4.06718,4.14116,0.8774041666666667,1.8217025,3.950655,2.9701000000000004,1.6211675,1.6199899999999998,4.917155714285714,1.036135,2.71028,3.17165,2.7893,2.424955,2.75085,2.11409,1.02335,2.896995,3.00987,3.369505,1.4327766666666666,1.5083033333333333,1.789845,4.40677,2.11128,4.475135,4.60685,4.683195,5.9527,5.1293,4.055565,6.099425,4.031282857142857,0.7847818181818181,2.862385,4.281365,3.615775,0.47707272727272726,0.9899699999999999,3.006925,4.020785,4.752065,4.08503,3.2178996428571427,2.769995,4.646665,1.699466,2.443215,4.376035,4.3115950000000005,3.21759,2.74092,3.66879,4.77225,2.836035,5.21108,0.918107,3.19124,2.79941,4.40811,4.378485,4.50645,2.19716,2.679085,2.84592,1.9499066666666665,5.0175,3.208775,1.4336142857142857,2.67432,4.032095,1.490512,5.8989,1.8186499999999999,2.567346666666667,13.607725515069726,2.8209066666666662,1.4346933333333334,1.595995,2.0978333333333334,5.536851666666667,1.659046,4.047683666666666,0.6718969230769231,3.2731866666666662,4.338365,7.5784875000000005,2.5248466666666665,2.855893333333333,2.855893333333333,4.563045,4.328165,3.50648,3.355965,4.828245,5.1102,2.44739,3.2868766666666667,4.53236,1.2385283333333332,2.41732,4.42514,3.965425,2.867035,2.31039,3.771645,3.358805,6.016565,6.140230000000001,0.7029690000000001,4.176805,3.3823,3.9121666666666663,4.26661,3.921255,3.79155,1.292328,5.0402,2.309475,2.848325,4.189045,4.22869,4.496875,0.9051232857142857,2.7564933333333332,9.003899666666666,1.4980566666666668,2.0748222077922076,2.30035,3.92446,3.42962,3.32795,0.6600672727272727,2.3333825,1.73017,2.2013125,4.2305,5.159248666666667,2.739602,9.168725,2.3152333333333335,2.64857,1.06815,4.429305,5.0286,2.159625,5.385488333333333,2.70627,3.24809,5.38645,4.343655,4.66254,2.095125,1.680405,1.680405,2.728755,3.164045,4.9847325,1.5047725,6.081596666666667,1.5648633333333333,3.82187,1.3031816666666667,8.731232,4.768815,2.70742,4.253845,3.79609,3.83193,1.1365116666666666,1.9374825,3.5244,3.0067233333333334,3.3399,3.604533333333333,3.92908,2.7473,3.144555,3.378085,1.597135,2.5894366666666664,1.9148233333333333,2.910633333333333,1.9888566666666667,5.173964166666666,3.2250366666666666,1.8146833333333332,2.760483333333333,3.367455,3.41827,6.476,6.00555,3.0259,3.59439,2.6419,3.044135,2.832075,1.2292966666666667,0.9370179999999999,6.261519999999999,3.008215,5.6548,4.529575,6.56435,2.856615,2.71311,6.6003,2.49989,0.42265166666666665,5.66755,2.521395,3.9006,3.403866666666667,1.4262685714285712,3.957625,1.057488,4.48528,0.896905,1.4287733333333332,3.02476,2.451703333333333,2.7848557142857144,3.60334,4.660555,5.792805833333333,5.792805833333333,4.98894,4.98894,4.499615,2.9701766666666667,4.39322,0.99398125,6.0886,3.068795,3.6021,3.88777,3.95545,4.86339,1.907355,4.747415,3.1825799999999997,2.87349,4.19834,2.562585,4.759105,5.1312,3.666765,3.32571,5.0474,3.91626,5.82445,2.824315,2.63651,6.00035,4.088555,2.86056,6.063783333333333,1.5826933333333333,2.1350875,4.808395,4.18489,4.938455,3.75919,1.9939820000000001,1.9939820000000001,12.856825452380951,12.1011,5.0574,3.266285,2.9570046153846157,4.378795,4.66219,2.6086766666666668,3.2054533333333333,2.94899,4.168933333333333,3.6801,4.938405,2.009555,8.25192,2.43863,1.87422,6.05255,2.325345,4.94472,4.340005,4.76018,0.6932777777777778,3.254165,3.579255,0.84839,2.91798,4.103131666666666,1.468712,1.85281,2.90605,2.652623333333333,2.3068166666666667,3.0324833333333334,2.1913033333333334,0.41635,2.400396666666667,2.8523433333333332,2.8043633333333333,3.157493333333333,1.527066,2.986943333333333,6.985623333333333,4.349355,2.2489866666666667,2.09931,2.58967,3.665345,2.44969,3.5733725,18.1202825,5.42625,3.387783,4.64163,3.797165,5.420195,1.56262,5.97455,1.5245116666666665,4.684175,4.506095,5.48855,5.0357,0.9886798421052632,6.5395,2.362635,4.90933,2.797875,4.348645,3.332075,2.83133,2.1536566666666666,1.529514,1.9218125,4.446305,4.618835,2.054465,1.678435,2.95739,3.9702450000000002,3.0272466666666666,6.29035,1.9213175,3.99204,4.345095,4.33196,3.846535,2.742515,4.01934,5.00475,3.97743,2.6429033333333334,2.6429033333333334,5.579016666666666,1.7723466666666667,2.4856166666666666,3.910445,1.80047,7.415405,3.540335,4.3544833333333335,4.326266666666666,4.18027,1.7990659999999998,4.097725,5.40955,3.9938,2.0201275,3.532795,3.33725,1.1548875,1.3643525,1.2687066666666666,0.7054999999999999,1.6377366666666668,0.9121783333333333,4.66716,0.9651777777777778,2.5568166666666667,1.6526399999999999,1.7799725,1.078355,1.942525,2.201795,1.5125675,2.9490266666666667,2.6619533333333334,4.67873,1.5050633333333332,2.59155,3.0348699999999997,2.941193333333333,2.28674,4.4161975,4.57266,4.905235,19.186505666666665,2.642263333333333,2.1732925,0.6327207692307693,0.6340410000000001,4.187481666666667,2.01626,4.0858,4.768675,7.260803833333334,3.872155,3.608725,4.135695,3.1289766666666665,3.1995133333333334,3.02995,3.9907333333333335,3.2514066666666666,6.57485,3.610955,0.92175,1.0986,5.3188,3.09169,2.571756666666667,2.1266700000000003,2.282433333333333,5.66845,4.86433,2.3126225,2.301696666666667,3.17029,4.86148,8.329336666666666,5.042478958333334,4.265805,3.796225,5.2267,4.62429,4.352365,4.86091,3.807575,5.20445,1.855085,5.5521,1.5939857142857143,5.0966,0.7439866666666667,4.886335,5.49505,6.10625,6.16125,4.553445,5.89355,5.7736,6.3609675,1.9357,1.600042857142857,5.48755,3.75306,6.550136666666667,5.1499,5.487055,5.0768,6.17435,1.3408728571428572,4.402445,5.2468,4.169866666666667,4.638615,5.2048,2.622525,3.982335,2.89769,4.34066,1.0021916666666668,1.6218599999999999,1.34887,4.793605,4.016035,3.359335,2.151753333333333,2.96124,1.5675266666666667,2.2533266666666667,0.4019266666666667,3.5749333333333335,1.597044,2.3621383333333332,2.773123333333333,2.52291,3.152926666666667,2.6429,2.427865,10.231092666666667,3.9001,1.7870953846153848,3.507165,0.9259727272727273,4.5026625,1.135315,1.72162,1.92563,1.04624625,5.720831666666666,1.1390675000000001,1.1390675000000001,1.1390675000000001,2.9070633333333333,1.97322,5.04935,3.09785,1.391285,1.5451275,2.1433,1.289425,2.0943,5.245196666666667,0.8294777777777778,4.123475,4.083365,3.08759,0.9864285714285714,2.115675,1.9391525,1.9391525,1.4968766666666669,3.6758033333333335,4.5481,5.56485,5.6481,4.380585,5.256,2.794783333333333,2.01289,2.918305,4.98916,3.207725,3.94261,1.03018375,3.923725208333334,5.47365,1.942145,4.04681,3.08872,4.732615,4.640805,2.536715,7.03085,6.25265,3.781815,4.42657,4.27683,3.16021,7.94643,3.98942,4.919725,3.371125,2.826173333333333,5.24465,2.6462266666666667,5.84485,4.35202,2.703516666666667,3.2645,3.90833,1.45965,10.524004999999999,3.8525,3.01192,15.142351230158729,4.162555,1.70263,2.7630233333333334,2.096785,2.347335,3.22404,2.550213125,2.97427,2.95379,3.03713,4.12483,6.106825,1.1986666666666668,2.01126,4.21409,4.28617,5.0084,2.391585,0.5808746666666667,4.477535,4.369355,2.04649,1.3601916666666665,4.474135,4.481015,0.8844633333333333,3.68489,12.5281,1.290854142857143,0.40195714285714285,3.4410000000000003,4.522348333333333,1.0549877777777779,3.72659,4.16604,6.214691666666666,1.2461416666666667,3.26564,3.94283,3.364585,4.382045,4.477475,4.340005,8.343155,3.179115,4.432845,5.787,16.107841875,3.5307649999999997,2.83075,1.1797075,2.0239525,1.2016375,2.3398262499999998,1.31132,2.0200275,1.65197,2.0077225,2.4114975,2.2889025,2.160455,5.49415,4.45241,5.95915,3.18746,5.646675,2.81735,4.902785,3.418066666666667,1.23473875,3.802615,2.0511825,2.8248393333333333,4.701085,4.917135,4.89956,4.585175,3.5020333333333333,3.718833333333333,2.48217,3.39481,3.80183,2.25818,1.958165,3.504466666666667,4.15893,3.52741,2.3491233333333335,12.538386666666668,0.7264,2.725405,4.844965,2.510353,1.080626,2.807655,7.232283333333333,7.210631666666666,4.34826,3.793235,4.078115,2.083855,2.08247,2.840279666666667,2.056576666666667,3.8509933333333333,5.13415,4.23286,0.46618533333333334,6.0477,3.235046666666667,3.3364,3.5492666666666666,6.28875,8.69149575,4.327719500000001,0.93167625,2.2229275,2.307665,3.76431,2.633855,4.31798,4.544695,3.5803999999999996,2.736003333333333,4.0379,4.10781,3.799405,4.3211,1.9464433333333335,3.18654,5.2624,5.5656,3.151813333333333,2.02568,2.2772966666666665,29.59013033333333,1.4653025,1.4653025,2.1763,5.017633333333333,3.869305,4.386485,3.007535,3.015595,4.63641,3.085046666666667,4.24989,3.085046666666667,3.53166,1.8624566666666666,1.5674966666666668,5.89435,2.664225,4.73239,3.30527,2.662275,6.379078333333334,2.0850433333333336,4.55055,5.34715,3.57502,3.350575,4.859205,2.0316400000000003,5.0412,3.3571925,7.433911666666667,5.441435833333333,2.8313,3.912915,5.0538,2.178675,2.5265,3.5196,0.44903499999999996,3.17061,10.15435,3.941415,3.28578,4.87365,3.2448883333333334,3.118245,1.3300785714285712,4.047175,5.4766,3.32566,2.15389,4.42715,3.70283,4.28002,4.232905,2.92325,2.92325,4.178355,2.85957,2.536582045454545,1.85933,4.89783,4.10973,0.9965414285714286,3.70485,5.057,2.728783333333333,6.8989875000000005,7.75902,1.483728,4.226945,4.92906,6.7900920000000005,0.6774,7.72996,3.5601658333333335,0.5825145454545454,5.3458,5.2437,4.836125,4.287135,4.654295,4.214875,4.99371,3.86498,3.95256,4.2938,5.6428,4.7658,4.498715,3.895975,2.425245,3.919315,3.008955,0.9520329999999999,4.38704,2.399445,1.68469,4.315945,4.39705,5.9209,1.07352,4.94871,2.9067,2.70286,1.57655,1.32927,11.477731666666667,2.3521733333333334,2.8422866666666664,1.9235,3.841874761904762,5.4893366666666665,6.1802600000000005,2.626583333333333,1.9384366666666668,2.09918,2.09918,2.09918,1.45493,3.87585,3.963055,3.32766,4.577835,8.24023,4.00585,1.1360540000000001,2.199185,3.21451,2.36962,1.8170600000000001,4.12373,2.966635,1.40881,3.0628499999999996,4.763173571428571,6.022175000000001,3.99613,3.942435,3.1663033333333335,5.0558,4.555525,5.26734,1.87559,1.87559,3.776555,3.77309,2.8163786666666666,2.8163786666666666,3.86473,1.18902,4.91948,3.36926,4.346575,3.809875,3.82894,3.3411666666666666,1.0287985714285715,4.362,4.959025,4.471745,4.680825,4.78982,4.92914,4.51297,1.9420725,1.4612675,3.52045,3.811485,3.320505,4.39976,2.219695,2.9588975,5.42205,2.856815,4.780665,7.210395,2.2915675,2.89763,4.334460952380953,5.270743333333333,1.61432,2.0645428571428575,1.05891,2.0645428571428575,2.218176666666667,2.218176666666667,1.510416,4.9291,3.18698,3.63451,2.35809,3.89744,1.5429783333333333,5.36105,3.0813,1.71122,2.8800033333333332,3.54521,4.111815,6.8428,4.590835,1.275596,0.8370916666666667,3.497175,7.090278333333333,2.45153,3.59743,3.759485,3.759485,2.30885,3.382285,3.263495,1.3851125974025975,3.1778633333333333,3.398485,2.76072,4.335825,3.976685,1.659125,3.304025,4.411665,4.55329,5.07795,4.31084,1.68935,2.04584,1.2589466666666667,2.16432,3.554415,1.8582875,4.419085,3.145433333333333,3.4146,4.090105,5.0022,1.521295,0.952278,1.90303,1.5227675,1.160511111111111,4.869735,3.98348,1.13236,0.2568521739130435,0.2568521739130435,0.2568521739130435,3.703245,5.584320000000001,4.571535,5.2004,5.1301,5.61655,4.4892,4.59361,2.65258,3.704815,1.5044675,4.60441,4.054775,3.805655,4.332985,4.181215,0.6772054545454546,0.6772054545454546,0.6772054545454546,0.6772054545454546,1.056892,1.056892,4.161475,3.90931,3.68776,2.81726,2.795575,5.37985,4.85616,5.53265,4.329415,3.0319800000000003,2.537316666666667,9.7212,1.512086,1.512086,3.714935,5.21855,3.3613666666666666,0.467265,0.467265,0.467265,0.467265,0.467265,0.467265,4.670385,5.2159,3.25605,4.35904,2.7863933333333337,2.7863933333333337,2.72608,3.2683066666666667,2.44793,2.7454,3.304015,7.0382126666666665,1.4300760000000001,4.389945,3.426865,3.846635,9.055796666666666,2.292386666666667,2.72487,0.9406171428571428,1.98678,5.1795,2.73363,0.88462875,2.8553566666666668,4.10936,5.50985,2.6268,4.71027375,0.9307133333333333,1.99271,4.826575,4.678825,2.940147,2.50491,2.0297199999999997,1.3762533333333333,7.0307200000000005,3.4234666666666667,2.0223233333333335,3.2813,2.6330033333333334,3.53591,3.77618,2.7353633333333334,3.2030133333333333,5.98685,1.4287066666666668,4.13938,5.21955,3.33653,3.93487,1.9509666666666667,2.96489,3.767075,3.925155,2.986855,4.59707,4.54951,2.74422,1.98424,2.8519633333333334,2.84421,2.8921166666666664,0.7881681818181818,2.1338475,7.9829975,0.460185625,3.071206666666667,1.5557999999999998,2.5511133333333333,3.3737333333333335,2.7883866666666663,1.2506555555555556,1.7210619999999999,2.6856733333333334,2.146615,3.666555,2.0156199999999997,2.743016666666667,1.4598699999999998,3.0917960000000004,1.9524625,1.1373685714285713,2.81605,2.0648525,2.3788233333333335,2.648773333333333,3.0929300000000004,3.2514466666666664,3.3851666666666667,3.1349433333333336,2.8260233333333336,3.0419199999999997,2.8627533333333335,2.657875,1.6728633333333331,2.433753333333333,2.5829,1.7073933333333333,3.0754533333333334,3.855075238095238,2.8546366666666665,2.4565733333333335,2.9404133333333333,3.5559999999999996,4.739880833333334,3.02535,1.7638214285714282,1.7638214285714282,2.466495,1.1654875,2.505675,3.366858333333333,4.585343333333333,2.7908,2.0676875,2.00891,2.13163,3.743235,2.961625,3.86347,3.110895,1.76663,2.3223033333333336,4.07223,1.1655200000000001,1.1655200000000001,1.65524,0.5819053846153847,1.9461926923076924,1.59101,1.59101,2.6865366666666666,2.4612333333333334,3.12112,2.6073066666666667,1.94118,5.521306666666666,3.9054225000000002,3.9054225000000002,3.585505,2.980845,2.18613,2.99348,2.412375,2.9118,5.18872,0.48199333333333333,0.678418,4.13911,2.317005,2.913975,6.527211666666666,3.63295,1.612098,5.026,4.624335,4.118845,4.290745,5.3155,4.792675,13.6505275,3.57763,1.60714,2.905395,3.78596,5.0248,2.8162,4.01899,4.08118,3.579425,4.53738,2.8419399999999997,2.92912,2.65551,2.511833333333333,2.511833333333333,4.022145,2.939635,2.899855,3.54153,2.392575,2.520265,2.128905,1.9088875,1.9643525,2.166015,1.695385,3.3165895,3.405505,2.5298,6.7989049999999995,3.28727,2.2625033333333335,2.0461199999999997,3.492595,3.970185,3.689845,3.1981939583333334,3.466055,3.32079,4.396725,3.593505,3.81673,3.990505,3.422838,3.435545,0.6360733333333334,0.6360733333333334,0.6360733333333334,3.588625,2.370435,5.5168,2.408505,3.77733,6.8882801851851845,2.74248,0.35345076923076924,5.34705,0.764391,4.292459523809524,1.965515,3.757765,1.883135,4.100675,5.420988333333333,4.3307,4.18794,2.6753066666666663,2.7878900000000004,1.47154,2.60796,0.38527105263157896,0.5437082352941177,2.43426,1.3773166666666665,1.8499975,3.925215,2.80503,4.77672,2.824263333333333,3.0621699999999996,3.624095,5.04805,1.704935,0.9379314285714286,2.16194,3.7191080000000003,1.2343995454545456,4.86345,3.92884,3.624025,2.73915,4.15143,2.512696666666667,2.402156666666667,2.3662533333333333,2.38843,2.4978433333333334,2.250615,3.1063033333333334,2.3969633333333333,5.4826733333333335,2.112565,2.0181133333333334,2.04614,4.906165333333333,3.281186,3.281186,2.5486,3.968605,2.33948,3.35265,2.948555,0.5574613333333333,4.292725,1.8123075,12.033722222222222,7.2914,2.76384,3.28866,3.36508,5.06808,2.88519,3.31231,0.258428,2.0577275,3.3471333333333333,0.8211041666666666,3.91826,1.2962,4.62414,3.358965,3.17983,3.58891,3.361535,2.2448,4.467615,3.76293,3.6582,6.65889,4.058385,2.8207533333333337,3.040313333333333,1.618976,1.975925,4.19609,3.505975,3.70632,2.72591,3.360665,1.3184939999999998,3.06029,2.870785,3.609255,10.684013333333333,3.83805,5.890358333333333,3.91601,4.27981,1.0128355555555555,4.793093,4.699055,2.5827533333333332,2.5823033333333334,2.59414,3.735,2.4072733333333334,1.7573699999999999,1.9337633333333333,4.02492,1.578558,2.839233333333333,5.123220666666667,2.7625966666666666,1.0676614285714285,1.0676614285714285,3.63444,2.9163940000000004,2.9163940000000004,3.6433666666666666,2.8483633333333334,3.3713994871794872,3.7417,3.452366666666667,2.709373333333333,2.3237133333333335,2.4691966666666665,3.1063733333333334,2.2729925,2.4446966666666667,1.656444,5.829739,8.851030333333334,0.30866076923076924,0.30866076923076924,0.30866076923076924,0.3932996328671329,0.3932996328671329,0.30866076923076924,2.9834766666666668,2.9826466666666662,4.142131666666666,1.3638983333333332,1.796245,3.2998139999999996,2.51593,3.0705733333333334,2.404246666666667,2.8501999999999996,3.291116666666667,6.592186666666667,3.12797,2.4852433333333335,2.8334799999999998,4.678175,2.2851833333333333,3.3831666666666664,5.90777,2.3935133333333334,3.3856,1.4105433333333333,1.4105433333333333,2.7878233333333333,0.5087842105263158,2.3833033333333336,2.6201,2.7978366666666665,3.2361033333333338,2.34637,1.6623566666666667,2.7273033333333334,2.738773333333333,2.3605833333333335,4.242895,2.5071380000000003,3.405765,2.349105,3.015365,0.515347,7.280095,3.029388,3.029388,7.758393611111111,1.7500666666666669,1.8140833333333333,2.9375666666666667,4.812405,2.411773333333333,1.9628266666666667,2.633853333333333,1.4140775,3.570133333333333,1.7845833333333332,2.954936,1.389965,0.270055,0.270055,4.834945,3.82572,3.42546,2.859306666666667,2.635905,3.38496,1.25527,5.48605,3.95459,3.020575,1.850635,1.16399,2.16101,2.9375666666666667,2.835085,2.027815,5.90818,3.79077,4.30817,3.87331,2.52608,0.6945008333333332,7.3726275,2.1235775,1.68675,3.51295,4.454215,2.52041,1.6924333333333335,4.45813,4.1233,3.141526666666667,3.10749,4.20063,4.170025,3.4750666666666667,2.56105,2.56105,3.93913,4.84718,5.56705,6.249016666666667,2.63186,3.89055,1.460942857142857,2.6196,5.4633780000000005,3.774085,1.868478,5.31295,3.51215,3.417245,2.276835,4.19377,4.62958,4.62097,4.606265,2.52448,2.6178766666666666,3.5912,2.0692133333333333,2.36687,2.4859133333333334,2.572976666666667,0.6905249999999999,2.24909,2.89246,1.869508333333333,4.62608,4.58352,4.756205,3.83674,3.40228,4.803405,12.080415,4.7888,3.84821,4.38546,3.95041,4.523955,2.4471233333333333,3.211064,3.5561333333333334,1.23047625,2.864995,2.90368,4.29351,5.416,4.141555,3.4817,3.03768,2.2077466666666665,4.275766666666667,3.9903399999999998,3.6834333333333333,3.9903399999999998,2.205386,2.3118366666666668,2.4491683333333336,2.15618,2.6535433333333334,1.8528133333333334,0.8438333333333333,1.2934566666666667,1.93412,2.015573333333333,1.5654633333333334,1.3417766666666668,1.7299533333333335,2.7434166666666666,1.5297399999999999,2.8950633333333333,1.3823433333333333,1.63636,2.792065,4.299533333333334,2.5458233333333333,2.214233333333333,2.40978,3.236475,2.27666,2.8760399999999997,3.2550000000000003,2.42842,3.0170399999999997,3.1289175,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,5.1064,3.069025,1.037747142857143,3.1778433333333336,2.60956,2.752713333333333,3.331555,3.3829333333333333,4.57513,3.4429013333333334,1.517124,2.9756199999999997,1.7977999999999998,0.9582775,0.958628,1.6564183333333335,0.8407433333333333,0.8084175,1.313528,3.37722,1.562116,1.6016599999999999,1.9090394444444443,2.326807777777778,1.4515633333333333,1.2451066666666668,1.5861150000000002,0.95968,1.2755183333333333,0.7551683333333333,0.878664,3.427875,3.64909,4.221415,4.55904,4.047615,3.0804066666666667,4.72097,3.4959000000000002,2.035035,3.556085,2.0080025,3.512285,2.1754000000000002,0.8350245454545454,4.225475,4.87027,2.0727033333333336,1.3298675,3.03667,3.486855,3.6758033333333335,3.0013566666666667,2.589385,0.887245,2.23754,4.888317499999999,3.783225,2.40903,1.5045483333333334,3.83158,1.8450575,0.5649618181818181,4.273875,4.275045,4.08049,2.68702,1.501874,2.991395,4.506415,2.638036666666667,2.607396666666667,2.434676666666667,2.6390366666666667,2.75446,2.7967433333333336,3.0506233333333337,1.206305,2.5254,2.5519966666666667,4.91022,4.266255,3.65146,4.620225,16.055575010101013,4.251645,4.4828193333333335,2.82026,4.221625,5.1476,1.516394,1.9476525,2.331373333333333,5.5083325,3.77743,3.2682,6.5413,2.331373333333333,3.927215,2.09813,2.1010166666666668,2.9667033333333332,2.7421466666666667,1.2683233333333332,4.200975,3.613445,2.5541,4.29268,2.5027266666666668,3.2924733333333336,3.761,3.521365,4.614695,4.019615,2.65061,3.56001,2.6701,2.54814,1.269406,1.269406,3.5718666666666667,2.58882,0.37918928571428573,4.980396000000001,0.902486,2.72889,3.530815,0.5765891666666666,4.57507,8.037908333333332,1.86586,3.7951,3.48294,2.5136966666666667,3.37741,2.31305,2.99963,3.596845,4.077225,3.199015,3.777566666666667,0.9800416666666667,11.346695666666665,2.643485,2.88285,5.95795,2.672425,3.911515,7.745376666666667,3.955025,4.02304,3.638595,4.11934,5.5122125,1.6218025,2.7247,4.66124,3.8612,1.9553699999999998,3.84329,3.64457,3.633595,4.017,4.154055,3.8374,2.5339033333333334,4.43747,3.71343,5.2681,3.235495,2.2110833333333333,2.1927833333333333,1.93584,3.07875,1.28215,3.6109333333333336,0.8553799999999999,3.2123899999999996,3.11269,2.6281033333333332,1.52748,4.24706,3.919515,4.240275,1.924365,4.64107,3.760255,0.7366560769230768,0.3483780769230769,4.28594,5.5433,0.93635375,0.3483780769230769,4.45874,0.7366560769230768,0.7366560769230768,0.3483780769230769,5.659143333333333,2.5948333333333333,2.2724033333333336,5.48835,3.442375,3.357085,0.7834533333333333,3.246305,3.663245,4.709845,5.68215,2.15009,0.7227992307692308,4.309209166666667,2.0937266666666665,1.2478120000000001,1.8488625,1.0278085714285714,2.3244000000000002,2.2280133333333336,3.54857,5.0698,2.593103333333333,3.137976666666667,2.7400933333333337,2.2622833333333334,3.08291,4.47128625,1.7088675,2.023755,3.9657,5.0798,2.165125694444445,4.990835,2.98518,4.14757,4.23398,3.09505,1.22147,3.18893,6.69745,3.81937,3.382185,5.226,6.32145,2.35074,3.361895,4.60424,3.27014,3.320305,8.2775,3.83014,4.681145,2.60177,1.1464275,2.58187,1.913475,1.970345,1.800835,4.029515,0.6333664285714286,3.123405,3.7928,1.9012933333333333,2.88203,5.0375,3.091325,2.74165,4.13663,5.0774,9.064560833333333,2.663603333333333,2.3496366666666666,1.6723500000000002,1.465625,1.2764633333333333,1.4685733333333333,2.4720033333333333,2.5962,2.849736666666667,4.1069555769230774,1.4935425,2.4174933333333333,4.8381,5.2694,3.705755,3.503265,3.10418,2.60119,2.147445,2.11829,1.8733899999999999,1.999415,2.805355,3.627855,4.804885,5.0522,3.998965,5.433625833333333,3.282445,2.557185,6.256036666666667,3.069615,8.778665,4.6880775,4.6880775,5.505545,1.5891566666666668,1.3719825,1.33654,0.721591,4.971065,3.7395333333333336,3.289405,3.289405,2.2179200000000003,4.37144,4.36087,4.415685,3.87925,2.866296666666667,2.735745,3.468515,3.04334,5.2430125,3.702145,0.748670909090909,5.04185,5.0044,3.945945,4.97046,3.7844,6.2829,4.063015,0.8291692307692308,5.2769,6.97689,3.33588,5.9168,5.75015,3.488505,2.741015,3.69049,5.9866,2.0609875,5.83495,1.8842425,4.414975,2.4747733333333333,2.553575,0.918107,2.89834,6.07345,3.306255,3.675245,2.1037333333333335,5.34115,8.052586666666667,3.53486,4.21477,2.792905,3.018065,0.834123,4.700725,1.5573833333333333,3.4100108333333337,3.4100108333333337,3.585965,2.3621966666666667,2.9805166666666665,3.726115,1.73729,2.90814,3.3577,3.2582166666666663,2.856835,4.158305,3.036825,1.84267,3.2081866666666667,2.09974,3.1281466666666664,2.0362133333333334,3.0913766666666667,3.1761933333333334,1.4129714285714285,1.72682,0.376565,1.3381733333333334,0.376565,0.376565,1.72682,0.376565,3.3811999999999998,2.582686,2.582686,2.8795266666666666,4.136995,3.677815,4.06901,5.21095,5.4184,3.545115,3.76727,4.01013,1.867315,2.3452795,2.3103466666666668,0.8084699999999999,5.3879,3.0464533333333335,3.00245,5.4775,3.8364525,4.75168,3.4102,2.647273333333333,2.987735,3.42242,2.6609133333333332,2.8078466666666664,2.0719600000000002,5.3486,0.8377766666666667,3.63827,1.1473214285714286,3.779385,3.4111666666666665,2.86985,4.041285,4.07431,3.782835,4.431725,4.087125,3.708415,4.274835,4.27894,2.548175,2.73125,3.2252466666666666,4.225235,2.6041,3.226885,2.644575,2.98618,3.237413333333333,3.3133,4.818175,4.79654,3.953915,68.12656908569208,2.7372875,3.78494,15.776634666666666,4.118665,3.1145766666666668,2.1160366666666666,1.9057233333333334,2.7390233333333334,4.3578,3.0146866666666665,3.95733,5.55685,3.37022,7.429235,5.18465,2.44168,3.32447,3.75176,3.40907,1.803846,1.11023625,4.660925,2.65108,6.108526666666666,3.516665,2.1332866666666668,3.61711,3.43703,4.5588,3.34242,5.6365675,4.3788,3.41119,3.067815,2.4333975,2.64892,6.05605,2.90589,3.510425,4.312981666666667,1.2571133333333333,2.3715,5.27766,3.451875,3.11009,3.62658,2.94704,4.038435,3.076365,2.84911,2.3267,4.35012,2.902235,2.90078,4.46012,9.141314999999999,3.2233199999999997,4.246405,5.62214,3.21658,1.970885,4.1062256249999995,1.91314,2.93361,2.893192,3.49932,3.046,2.942255,3.15965,3.26668,4.133945,3.946165,4.200355,3.438635,2.985285,3.7488,2.7630566666666665,2.7630566666666665,7.042666666666666,1.661475,3.062975,3.05669,2.381275,4.816795,4.209,2.956705,3.301775,4.55871,5.866265,0.6409681818181818,4.056655,2.3931,2.9302233333333336,2.5130166666666667,5.1889,2.66179,2.03395,1.12765375,2.0274051515151514,4.26826,4.966015,4.120785,5.7539,5.5255,5.8762,2.41549,1.8680233333333334,3.903705,2.422745,2.8517166666666665,1.9932266666666667,1.3437866666666667,2.9591100000000004,3.1388533333333335,1.583176,2.4306433333333333,2.4455617142857142,3.421742087912088,2.80398,4.85381,3.34268,1.3322325,3.2688,3.46821,5.82615,4.94249,5.8911,4.765565,1.9862366666666667,1.4386966666666667,0.58119,1.5215500000000002,3.476385,2.441245,3.6317033333333333,1.4501633333333332,2.557585,2.401885,3.373425,3.63165,3.82809,4.128396666666666,1.677285,1.3868075,1.93454,2.081175,1.411165,2.430085,6.90533,4.834975,3.35072,2.98206,6.6670300000000005,4.45925,3.1334,3.07298,3.49383,2.792645,3.727535,2.2836433333333335,7.33217,0.9238883333333333,3.09629,6.6247,4.03046,4.56206,6.2017,1.38006,3.157016666666667,2.9070933333333335,2.7763566666666666,1.4777225,4.039845,8.826,3.288835,5.0317,4.00448,2.98676,4.79266,0.9213783333333333,2.8987700000000003,5.3036,6.2817,5.12815,5.79845,2.854425,3.6953,2.55402,4.9761,4.819145,4.537042785714285,4.537042785714285,0.6611042857142857,3.5158666666666663,0.9369759999999999,0.8971399999999999,1.7269625,3.7248666666666668,4.10273,5.575101428571428,3.0029066666666666,3.3656414285714282,3.129994761904762,2.7109166666666664,3.1667666666666663,4.514033333333333,3.5532575,1.9621175,1.9621175,3.969345,3.008153333333333,2.763036666666667,3.43069,3.3538666666666668,0.56948,3.302936666666667,2.55378,2.4241533333333334,2.6775866666666666,2.5778,2.464726666666667,3.1600433333333338,2.75494,0.7916909999999999,2.88002,6.39368880952381,2.13768,7.319951833333333,1.64177,1.64177,3.4071731666666665,3.4806333333333335,3.2593599999999996,2.8231866666666665,1.6708960000000002,1.307475714285714,3.1967766666666666,3.2806566666666668,1.4637083333333332,1.5390142857142857,2.81438,2.6720180000000004,2.6700966666666663,1.876525,1.8101375,2.81219,2.002475,2.840355,3.421285,1.71722,3.66001,3.35386,6.805839,3.338365,1.6516925,2.91347,2.58311,2.21017,4.102175,2.3340033333333334,2.54606,7.064327499999999,0.844,0.7900066666666666,4.399115,1.429518,1.429518,3.808215,2.3635325,4.35358,3.204115,1.3228533333333334,2.4900346666666664,3.0075299999999996,2.4555730000000002,5.0219,4.87101,2.5559066666666665,2.019066666666667,1.328477142857143,1.328477142857143,2.0982933333333333,3.842185,3.9539000000000004,5.58415,3.0361266666666666,4.66664,4.27282,6.44985,4.29349,2.407005,2.843026666666667,2.6452733333333334,2.713513333333333,0.7593044444444444,0.7593044444444444,0.7593044444444444,3.368395,4.162415,3.703385,0.827105,0.827105,4.765845,5.646,5.94615,21.79568111111111,10.3192,7.90817,3.071375,5.68965,2.3648125,4.065775,2.52916,3.1930266666666665,3.9716666666666662,5.288353333333333,1.964215,2.547765,5.93859,2.0464200000000003,2.0464200000000003,6.11935,2.96556,4.22095,2.059585,4.812179,4.448595,3.42922,4.89226,3.197885,1.64694,5.6465,8.70948,1.64694,2.059585,2.21348,0.994388,0.994388,1.698942,2.3226400000000003,1.698942,4.17366,5.44675,5.9499,8.39313,2.059585,11.522572,5.732,5.53335,2.3648125,3.439935,4.27689,8.43714,3.034476666666667,3.83812,5.9824,3.2844,4.56126,6.06255,4.42,4.98999,5.0415,2.864835,5.006,3.292665,4.32222,4.46886,0.79187625,1.497352,3.047025,5.3439,4.5325,2.7625966666666666,2.083005,3.93767,4.695775,5.66125,5.2974,5.1662,4.461015,4.139165,4.25105,3.669985,2.1094425,4.9831325,2.046065,2.671985,3.518535,1.6367433333333334,3.96294,3.824325,3.71153,5.32425,2.88258,6.599295000000001,0.9201377777777778,3.57171,1.756205,1.16892,5.119478,1.4252366666666667,1.6139733333333333,2.4774066666666665,2.8059195,2.9331566666666666,2.7935533333333336,1.763825,0.7305472727272728,2.179203333333333,2.565735,3.59726,0.6704861538461538,6.1083066666666666,1.7696366666666667,1.214572,3.428733333333333,1.214572,3.958485,0.9444545454545454,4.47554,3.1699800000000002,1.90496,4.950956,4.3133859999999995,4.3133859999999995,4.65786,2.41141,2.954536666666667,2.8234166666666667,1.527066,3.951465,3.76274,2.0220433333333334,0.7148708333333333,6.798027820512821,2.78445,4.052915,4.305055,7.40131,2.1141,4.25206,3.81405,3.17787,3.50733,5.4833,6.313642499999999,4.51547,4.707975,5.1571,2.9393433333333334,4.949255,4.261325,4.481795,1.0665533333333332,0.4815278571428571,3.10761,3.394966666666667,2.7585466666666663,5.18715,3.78488,4.220735,4.12498,5.252,4.08464,4.129165,1.18545,2.228275,8.2432275,2.1964166666666665,1.8898666666666666,3.9000652380952374,11.10546371031746,1.5085375,5.1338,6.4794,5.0889,3.5835000000000004,2.26278,3.2434,4.124395,1.11131,3.0609966666666666,3.305025,0.33284315789473684,2.05346,4.438945,4.176235,2.204305,4.132195,2.887975,5.0813225,1.2602033333333333,0.5203945454545454,3.8211191666666666,1.15995,1.03377875,1.03377875,1.03377875,1.03377875,1.6110666666666666,2.707333333333333,1.8069166666666667,3.3777333333333335,5.3649,3.5461666666666667,5.2051,3.60691,4.273485,3.59493,3.891335,1.48834,6.3104000000000005,2.15451,4.5727,5.240566666666666,5.3018,5.080899166666667,2.4344566666666667,2.3384199999999997,2.6196266666666665,3.13061,1.2406966666666668,4.363603333333334,2.6513833333333334,4.95056,2.796723333333333,2.38534,3.83922,3.35585,2.92003,2.540296666666667,2.8122966666666667,1.480585,0.4013133333333333,3.95852,3.487035,4.20049,3.395425,3.83448,5.719,4.263145,0.54423,3.0432639999999997,6.947442,1.9766199999999998,1.927558,5.582695,4.556015,2.6946733333333337,4.868385,5.1433,4.24447,3.83499,4.24907,5.3234,5.59115,5.1727,3.67782,5.1209595,1.453958,1.5994816666666667,4.175135,4.010775,3.79766,3.22805,5.4349,4.52766,3.852265,3.32454,15.52264289326248,1.2715392281968965,1.08267,1.8230981818181817,0.495438125,0.46539733333333333,1.419775,0.3222735294117647,1.3434620000000002,3.162573333333333,1.80535,0.8891166666666667,1.0795004166666666,0.4265716666666666,1.0795004166666666,1.0795004166666666,0.4265716666666666,0.8183692307692307,0.5367035714285714,2.832255,2.835373333333333,4.58725,3.77852,2.830156666666667,2.728875,4.006,4.945025,5.1238,2.72331,4.25907,0.6829464285714285,2.3472206666666664,8.150428333333334,4.05689,6.595305,2.842955,4.26417,2.399865,5.2118,5.55035,3.451955,4.15843,2.67621,1.0580566666666666,4.284045,4.55917,1.20468,1.301562,1.5125166666666667,2.35546,1.8720766666666666,4.95581,5.71335,2.29265,2.29265,3.6265033333333334,6.70275,2.098446666666667,0.6481327272727273,0.7775942857142857,2.326443333333333,3.4148333333333336,0.9431171428571429,0.9431171428571429,0.9431171428571429,0.37569153846153847,1.06427,2.95625,6.0476,3.8247666666666666,4.123504166666667,5.1665,1.0206899999999999,3.5589999999999997,3.1915266666666664,3.8577333333333335,5.72015,2.531893333333333,7.45915,4.78597,1.1022133333333333,3.7708666666666666,1.865138,2.5441,2.369736666666667,6.838273333333333,3.2427266666666665,4.257845,2.2296175,4.486755,4.53568,5.08035,0.52396,2.83553,1.4013666666666669,2.5315966666666667,3.9135946666666666,2.13576,2.7996700000000003,2.500176666666667,2.5488133333333334,2.61002,2.969583333333333,2.745316666666667,2.85549,1.381648,2.2910366666666664,1.9384533333333334,2.98678,2.48593,2.1049625,1.83246,1.8501933333333334,1.68304,3.166135,2.190586666666667,2.0060100000000003,2.146603333333333,2.41142,2.42679,0.7614277777777778,0.7614277777777778,0.7614277777777778,2.4403466666666667,2.0773266666666665,3.054953333333333,2.4301733333333333,2.5986433333333334,2.10543,3.891195,3.5431616666666663,1.3337783333333333,2.494006666666667,2.72796,3.826373333333333,1.5633857142857142,7.2047783333333335,4.528935,3.127415,4.07631,3.3809,1.4529725,0.8431571428571428,3.123625,3.82159,3.826373333333333,4.104135,4.118365,4.392945,2.845413333333333,3.83821,4.200535,0.91263,2.729995,3.285205,4.849455833333334,4.6605,3.526805,3.41225,2.481275,2.236693333333333,2.4190133333333335,0.6302800000000001,5.217434166666667,2.75445,3.88587,2.6629466666666666,3.8145100000000003,3.3976333333333333,2.48866,2.961548666666667,2.961548666666667,2.5945966666666664,2.14696,2.4780533333333334,2.06629,4.251995,1.352448,2.521055,3.679795,3.90342,3.949605,5.2176,3.750965,2.4306,2.213785,3.16742,2.888145,2.682865,5.18345,2.76963,0.9930471428571428,0.9930471428571428,4.74686,3.986631,0.960506,4.400435,0.960506,3.81648,4.748075,4.73903,3.038835,3.20772,6.333394999999999,4.186043333333334,5.6938,0.8520285714285715,0.8520285714285715,2.06136,4.446605,1.4611049999999999,2.9855,3.44579,1.1160428571428571,3.819205,3.83911,5.833075,5.833075,1.0016266666666667,5.5457,5.28185,4.947485,6.09525,1.9997075,1.9997075,7.04335,0.9318909090909091,7.27855,1.9683225,6.5686125,2.628115,2.575153333333333,3.419715,2.33894,2.3089733333333333,2.3042866666666666,2.9582533333333334,2.283212142857143,6.277131000000001,1.761632,4.99761,2.8919766666666664,2.4307666666666665,1.746005,2.274655,3.17478,3.55432,3.412275,2.93492,2.22099,2.11567,2.33129,1.1054439999999999,3.4227,2.682165,3.282435,2.1385925,2.1385925,3.09892,2.0932066666666667,3.74086,3.549765,4.904695,7.015420000000001,4.13038,3.475275,6.3575281666666665,2.06918,3.2460211111111112,2.16834,1.4982142857142857,1.6598275,4.159635,1.5658483333333333,0.499719375,0.6770166666666667,4.28307,4.704235,2.85191,0.9650766666666666,2.762765,2.991896666666667,4.868015,1.75413,1.963675,1.1210444444444443,4.611175,2.43872,4.56725,0.749871,4.159647083333333,3.911045,3.45712,4.412045,3.590445,3.832815,2.8154266666666667,5.3669,3.68473,1.9206033333333332,2.72876,6.111556666666667,6.0171399999999995,0.73384,3.689325,4.761595,5.34625,3.7750333333333335,3.8549333333333333,2.6936,3.16947,3.739433333333333,6.3999375,2.6720180000000004,2.6448125,3.926045,3.01334,2.317805,2.52235,8.41311,4.64261,1.9111500000000001,4.775345,4.8143,1.76287,3.86431,1.2639375,1.4315571428571428,4.318685,3.974565,4.725595,2.4981966666666664,2.84524,2.960975,4.461065,3.75387,3.456645,2.93248,3.519255,3.916205,3.7080224999999998,1.1547657692307691,1.1547657692307691,7.539,0.743115,1.9961725595238096,0.743115,0.7427883333333334,0.41602666666666666,2.738960892857143,2.367165,0.5190071428571429,1.9961725595238096,2.05179,3.309425,2.21995375,3.43497,4.611475,7.150046666666666,2.12162,1.998955,2.11359,4.25034,5.6627,2.127885,1.7008925,1.2204225,2.921315,4.12918,2.76214,4.239885,6.366725000000001,0.4376377777777778,3.79685,0.711676,2.675406666666667,2.253865,3.742655,1.253075,4.05557,4.5486725,3.991375,2.799395,3.8126,4.5691475,1.5996225,3.29927,0.5764038461538461,2.345565,2.501635,1.1453099999999998,2.9855933333333335,2.46126,2.51073,3.81229,8.256365,2.8343763636363635,3.790845,3.386965,7.02056,5.443965833333333,3.20128,4.21211,3.58671,5.6661,4.119615,5.1538,4.775615,4.11735,4.723725,3.6014,1.5402925,1.9192833333333335,2.1002966666666665,3.885765,2.51283,0.19878945945945944,0.19878945945945944,0.19878945945945944,29.93069573809524,0.19878945945945944,3.1691394594594593,0.19878945945945944,0.19878945945945944,0.19878945945945944,3.251322792792793,4.27359,0.19878945945945944,0.19878945945945944,0.19878945945945944,0.19878945945945944,0.19878945945945944,2.923395,5.40042,3.259975,0.23768358974358975,0.23768358974358975,4.417926666666666,3.9550968749999997,3.837283541666667,3.2677812083333335,3.9338461904761903,8.0138,11.465119555167055,6.262715999999999,8.25564,7.829452285714285,2.7878233333333333,6.2108019047619045,4.325305,4.353255544871795,0.23768358974358975,7.893923333333333,6.618238380952381,6.99197,2.760825,8.977832785714286,13.993539047619048,17.9893139514652,56.03402073119528,115.54797644335811,1.4105433333333333,3.3856,3.370725,3.820106348777349,0.23768358974358975,1.6367184615384616,8.873993958333333,14.669353035714286,19.55195527777778,47.33955148663325,13.327173952380953,3.143825,0.2267134482758621,0.2267134482758621,4.61193,2.7972466666666667,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,5.64496,0.2267134482758621,0.2267134482758621,0.2267134482758621,2.64875,1.9523266666666668,3.884125,3.66347,4.153808333333334,5.01575,1.9253225,4.104415,4.196735,3.033495,1.5097866666666666,3.558975,1.01715,2.270415,2.0143866666666668,5.076756666666666,6.075463333333333,2.7989033333333335,5.665652611111111,0.5443205555555556,0.4710846666666667,2.3541,2.7386466666666665,2.75304,3.818565,3.4021666666666666,7.42225125,3.73875,3.63081,3.374265,4.02503,2.914965,3.281215,5.64945,1.993345,0.45226076923076924,0.8424427272727274,4.227385,1.76688,3.848165,3.765875,4.536,3.49576,2.369725,2.608475,0.6275879999999999,0.7211529999999999,4.23756,2.6972533333333337,6.1194,3.552455,3.744651666666667,2.51125,2.987895,6.36605,3.59586,3.285765,0.8600009090909091,3.0640199999999997,4.36736,2.23816,0.951175,1.5807466666666665,3.999705,6.39015,2.08125,3.052785,3.70338,5.65035,2.635675,2.41742,2.34287,4.68108,2.47372,4.230015,0.7034042857142857,2.1797566666666666,3.430765,1.910875,6.232341666666667,2.88605,3.91524,4.514115,2.905005,1.992055,0.5092372727272727,4.493135,4.93626,6.6793,2.950535,3.67051,4.35618,2.857865,2.69148,1.1935185714285714,4.922295,2.15071,2.72395,8.345324999999999,4.019325,5.1638,3.344775,0.6416666666666667,3.08992,1.2307685714285714,3.298355,6.0095,4.823285,4.98777,3.574915,5.0844,4.429265,1.731785,1.67253,5.01135,3.0166866666666667,3.29806,2.4673725,5.384,4.428775,1.4190666666666667,3.6279,2.918165,2.840925,3.945265,9.39004,4.655025,1.766915,4.66575,6.19571,4.2665,4.06528,3.84625,3.97705,4.60879,8.303139999999999,2.45515,2.98486,3.204875,4.23066,2.776435,3.244835,4.580805,4.494185,3.544465,3.9753093333333336,18.603208000000002,2.8034733333333333,2.59461,3.3472333333333335,5.5301263333333335,1.16623875,4.12428,2.164886666666667,5.0707,1.3649683333333333,4.170245,4.222735,3.56791,0.96872375,4.53355,4.44395,1.692025,4.526401363636364,4.290675,1.034112857142857,3.668575,1.95151,2.20417,1.55673,4.179585,3.83384,3.690465,3.718735,2.95646,4.227715,8.15726,4.3647,4.271935,4.7305,3.0576399999999997,3.956135,4.73964,6.5532960000000005,1.086726,1.086726,4.360685,4.905385,2.1931499999999997,1.3722133333333335,7.124945,4.006875,3.48936,3.830465,4.76015,4.437775,3.52137,4.18052,6.137074999999999,3.959526666666666,4.390985,4.79615,1.4309428571428573,2.669075,4.211645,4.50779,3.42616625,0.20151388888888888,1.488075,2.16539,2.46849,2.1651833333333332,0.9666933333333334,1.449295,1.48507,2.3173933333333334,0.6287444444444444,1.057337142857143,1.84555,3.930215,4.011466666666666,2.1325333333333334,2.527553333333333,2.85501,2.8473100000000002,0.668818,0.95801875,3.10823,4.460505,4.266205,2.871065,4.8449,4.62128,4.518265,2.1157,4.343515,4.863935,4.41664,6.11938,3.651655,0.4855605882352942,5.56185,4.508965,3.59041,4.578365,3.327225,1.88823,3.623185,4.120415,2.78483,5.267895,4.48123,1.3850333333333333,5.267895,3.93676,6.869580000000001,3.74823,1.1349666666666667,3.69941,5.0431,4.321615,2.8279833333333335,4.69584,1.5159175,2.0661425,3.05897,3.45459,0.811471111111111,4.898875,4.886325,3.36241,3.928755,3.4384333333333337,3.0161466666666663,1.75454,1.61064,3.168165,3.45382,3.5475999999999996,2.42518,2.1437175,1.9983113333333333,3.645545,1.3232271428571427,0.8254722222222222,5.78086,3.909705,1.490078,2.60597,2.17121,2.9913266666666662,6.0038350000000005,2.2633855555555558,0.819596,2.51568,4.44244,2.0567800000000003,3.96058,4.955145,5.3096,4.403285,4.26394,5.015,2.18588,2.29718,1.7194733333333332,2.1811266666666667,1.893735,2.4057833333333334,2.26315,1.612795,2.546525,3.10793,3.97565,6.4727,4.376955,4.08889,4.324035,3.93994,3.8549,5.14935,0.9071625,3.1569633333333336,4.604565,1.1816039999999999,0.6209266666666667,5.0242,3.451505,2.52917,3.6040012499999996,6.2603425,5.35875,0.9168799999999999,1.2006085714285715,0.6918755555555556,4.1643025,2.27648,2.7743800000000003,1.1912342857142857,2.699783333333333,2.660676666666667,5.58355,4.587385,4.332105,5.21985,4.30113,1.247565,3.62563,1.6464633333333334,3.532225,3.67107,3.32963,2.6541799999999998,3.2339300000000004,2.66396,4.29302,4.18767,3.1119,2.3324275,8.886064999999999,10.241254999999999,4.09525,1.4218557142857142,5.46195,3.824445,4.821075,4.430685,3.927575,3.78705,3.491785,4.201845,3.5963275,4.88729,3.77858,3.64549,4.55649,1.7725560000000002,5.17775,5.6777,4.76229,3.328075,3.275315,7.354190000000001,0.8114891666666666,2.5832133333333336,2.79008,2.4283366666666666,4.95681,3.418175,1.24336,4.158845,3.3724333333333334,3.728665,4.626765,4.1828183333333335,6.623365000000001,3.1638033333333335,2.93568,3.1918133333333336,2.79118,4.00838,1.87758,2.2638633333333336,2.96536,3.955855,3.71831,1.95286,1.584625,3.145622142857143,3.1524555,0.8961522222222222,2.5519933333333333,2.5519933333333333,1.4044,5.7365,3.20091,3.394535,3.51794,3.17545,3.51311,3.42685,3.226565,3.34487,2.3343599999999998,0.5375773333333334,3.335065,5.735025,3.12132,3.83196,3.303605,4.03509,4.041955,3.1198,2.73065,3.48208,3.728465,3.06111,3.101285,3.496265,2.6120233333333336,4.186485,3.82913,8.84419,3.371905,3.694085,2.95623,4.103835,4.102385,3.63661,2.331825,3.66432,2.6082875000000003,2.874205,2.94944,3.22289,3.74353,1.7434566666666667,1.7434566666666667,2.462855,3.171625,3.40563,1.572228,2.348055,3.37624,1.74479,2.85325,1.572228,4.20533,3.174005,3.8373357500000003,3.05606,3.492175,2.41127,3.18313,4.07603,3.926185,3.58397,4.43675,3.84136,4.312365,3.649745,3.13011,3.26861,2.989865,3.92949,2.66155,3.76266,5.2184,4.175025,3.62169,0.29158260869565217,3.571825,0.44679416666666666,3.71113,3.647185,2.904375,3.56412,3.66251,6.079861666666667,3.353565,2.594863333333333,2.414946666666667,2.8505133333333332,0.6301650000000001,6.44908,3.07656,3.631025,3.48694,1.96081,2.607185,3.41065,3.18734,6.73611,4.66536,4.991025,4.440005,4.279885,4.11189,3.780835,1.445525,1.647308,3.76499,4.564895,5.7304675000000005,2.484106666666667,4.920645,1.926975,3.4531333333333336,3.90045,1.8032254761904762,4.11585,4.78169,3.3971999999999998,3.671466666666667,2.675456666666667,4.453005,4.50798,3.4313333333333333,4.37986,4.431435,4.851165,4.257955,4.45261,4.06157,3.09194,4.313465,2.56065,3.2037566666666666,3.2037566666666666,4.304845,2.52028,3.88372,2.4796066666666667,4.36574,3.3733,3.640265,1.86935,1.8873866666666668,1.211265,1.211265,1.55386,3.3549,1.76431,2.718,4.02384,5.043194,3.1983266666666665,3.859615,5.9425,3.222565,2.82411,2.9985233333333334,1.5357833333333335,4.247685,3.956445,6.2622325,1.64986,5.1336,5.6263,3.4614333333333334,3.34293,4.196675,6.73955,1.9185366666666666,2.36855,3.958895,0.44943571428571427,3.66505,4.036245,4.26423,4.35655,2.88355,1.280874,1.6868960000000002,3.993975,3.17771,2.4494366666666667,3.822305,4.85551,5.1123,0.9910725,3.25371,4.89341,3.261555,4.603405,2.466153333333333,4.972926666666667,3.780085,1.595308,3.51354,1.2066716666666666,2.79088,7.0526816666666665,3.2953,0.6290727272727273,3.085655,4.057765,3.748105,1.6622325,1.6622325,5.1062,5.69895,2.911025,0.4937188888888888,1.9212075,4.448388333333334,4.28282,4.20506,1.7916979999999998,2.97571,3.396155,1.2494751315789472,1.2494751315789472,1.2494751315789472,0.7761467982456141,1.3345901315789472,0.5584433333333333,1.2494751315789472,0.7761467982456141,0.27956263157894734,0.8380059649122806,0.27956263157894734,0.49658416666666666,0.49658416666666666,0.49658416666666666,0.49658416666666666,1.0969841666666666,1.042465,2.382073333333333,2.3614766666666664,1.0983016666666667,6.427973333333333,2.6634233333333333,5.744448333333333,2.3554133333333334,3.64828,2.78567,3.46621,2.756205,4.49291,2.9026266666666665,3.965535,4.082335,4.315295,2.081475,3.926065,4.60292,4.14966,3.25521,4.76613,3.317,4.517255,5.4342,5.25875,6.2269,5.4252,1.05026375,4.7144,3.86999,2.91962,15.264589999999998,4.543045,5.258,2.7464600000000003,7.68033,4.026625,4.49738,4.97092,3.305105,1.0739825,2.44596,3.83801,4.23322,3.48818,3.46703,4.126745,2.9626533333333334,4.58729,4.706595,4.196175,6.585000000000001,7.176633333333333,1.3396142857142856,3.754285,3.97456,3.96514,3.545985,3.65379,7.12433,2.538025,2.849715,2.593125,3.980035,3.907895,4.507615,2.469225,1.7759275,0.8810520000000001,4.27076,3.42324,3.47792,4.01055,3.39521,4.949705,3.940585,6.41005,5.9493,4.955375,6.6366,3.79204,3.17992,3.187495,3.388735,1.869165,4.236055,5.74605,6.21935,5.6776333333333335,5.6776333333333335,2.5328,1.869165,1.89423,3.070675,0.6880700000000001,1.4906175,0.8025475,1.4458425,2.512785,0.383158,2.769665,4.158255,1.4458425,3.0322709999999997,10.893392500000001,6.46597,2.2802275,1.0201,1.6791733333333332,4.53648,4.332895,5.735075999999999,1.984515,2.20513,3.56439,3.41192,4.4883,1.8471866666666665,5.2994,3.5551666666666666,3.20471,5.1527,7.193376,3.865165,2.4236425,2.8033333333333332,1.6433733333333331,3.673465,5.308525,1.8156500000000002,5.6347,4.496175,5.96059,0.519784,4.481681666666667,4.40856,4.537985,2.64845,2.761745,7.3253,7.1637,6.56555,1.8929,1.8929,1.8929,4.359445,5.06715,6.33,3.26439,2.761425,2.542122894736842,4.534395,5.1948,2.6596715,1.98764,2.6596715,7.1799515,4.910726666666667,4.630305476190476,8.20062,4.630305476190476,4.630305476190476,3.4315371428571426,6.97807,5.651645,2.93404,2.93404,2.55595,7.1292,3.179995,3.506525,5.21752,5.21752,5.21752,7.711155,3.630205,3.427735,3.7031975,3.4933125,0.80937,7.635806666666667,2.72508,6.8231,3.547965,12.827915333333333,4.915335,5.4693275,6.81061,2.5904766666666665,3.49559,1.0918933333333334,5.4693275,3.42744,1.6770025,1.6770025,3.02923,5.29193,1.8328675,4.777443333333333,0.860858,1.4281433333333335,0.860858,1.94263,2.6937255,5.728958,3.33398,1.4281433333333335,2.98557,5.0638125,1.1266975,3.443695,4.52157,2.11198,4.071293333333333,2.291255,3.235025,3.00268,0.924256,3.844365,2.269135,2.159715,1.6559566666666665,3.1436566666666668,3.70515,2.54163,3.60243,1.4310666666666667,1.4310666666666667,1.4310666666666667,3.929265,2.9816033333333336,2.9816033333333336,2.58715,3.8839,2.3057233333333333,1.2694725,1.2694725,3.043305,4.687895,0.73203,1.3347566666666666,2.956035,1.270085,2.6048416666666667,0.924256,0.924256,1.890105,0.924256,3.2378616666666664,0.702805,3.2378616666666664,6.142133749999999,3.36978,2.520023333333333,1.8499570833333334,0.7756733333333333,2.6256304166666666,3.622495,2.6256304166666666,1.0114933333333334,3.3641,3.97753,3.83466,3.39899,2.532175,3.73964,1.9150366666666667,0.8173655555555555,0.44831,0.8173655555555555,0.3690555555555555,0.8173655555555555,0.8173655555555555,4.261645,4.420225,4.542665,3.512855,4.290355,4.332985,5.15925,3.457485,3.818795,1.3399442857142856,2.667,4.216246666666667,3.925935,1.40106,2.7674,3.929525,3.86384,4.0069,3.1842,4.070475,3.578655,3.29556,4.388955,2.198803333333333,6.06695,3.58227,3.62676,4.625682857142857,1.1062853571428573,1.974965,3.22734,5.9951,3.815235,3.34017,3.0238266666666664,4.126445,7.2512799999999995,2.95919,3.96793,2.7696,3.798115,4.07139,5.60495,5.48995,4.09107,3.13837,5.285,4.71434,3.5751000000000004,4.14357,3.186246666666667,2.2740725,2.27753,4.75968,6.43625,4.7623,4.972455,3.88278,4.751125,5.6212,0.5182461538461538,7.28598,4.59258,3.521605,3.646515,4.669065,4.004195,2.9568766666666666,2.40989,1.298505,0.57441,1.709412,3.1667533333333338,3.330295,3.586405,3.73226,3.943805,11.03912,3.78698,3.973645,3.06834,0.7233733333333333,5.423943333333333,3.491733333333333,1.5879333333333332,5.079666666666666,5.934758333333333,2.443025,8.85961,4.60029,2.232434,2.232434,2.232434,4.339245,8.93941,3.4341,2.5544,2.5544,3.63619,10.2084,1.02311,4.538895,4.33508,4.135125,2.7456866666666664,2.294313333333333,4.43584,3.93896,6.39965,6.082543333333334,3.92994,3.043055,3.87213,4.3808275000000005,3.262814,1.19312375,2.669283333333333,6.09547,3.2914475000000003,5.12325,0.9286025,3.6212999999999997,2.175213333333333,2.57533,1.7602625,1.8128366666666667,2.17013,5.62815,2.15307,4.487975,5.66115,1.761632,4.67653,3.804005,4.69614,3.1275933333333334,2.24638,2.74076,4.11553,4.064049166666667,4.064049166666667,1.2138325,1.6641633333333334,2.8304533333333333,4.431321333333333,2.2608889090909092,4.81535,1.77704,2.6626066666666666,1.9970299999999999,1.5903475,1.5903475,4.536525,7.363261666666667,1.8335033333333335,2.9432500000000004,2.23987,4.428905,3.15729,0.745896,2.873265,0.745896,2.67237,3.311105,5.4055,5.46205,3.849715,4.6194375,5.75885,2.353395,1.85856,2.984973333333333,2.224223333333333,6.12295,4.96443,2.485145,4.24965,2.78887,4.291395,1.0843925,1.168132,1.8275233333333334,1.30418,2.6349199999999997,2.858006666666667,2.2974166666666664,2.7792166666666667,2.85505,4.4536,2.5669666666666666,2.381536666666667,2.7367833333333333,2.37586,2.6615166666666665,2.6956399999999996,1.9989133333333333,2.543336666666667,4.088455,4.06307,3.083635,3.01098,2.82678,2.1811025,1.8606425,1.2161166666666667,0.2858325,0.1348032608695652,2.1336366666666664,1.8240999999999998,0.1348032608695652,3.5676290942028985,1.93823,0.1348032608695652,5.592013333333333,2.059616666666667,5.89851,3.40629,3.1607033333333336,2.5657866666666664,2.808856666666667,2.194185,4.372275,2.9088333333333334,3.2626333333333335,0.4077463157894737,4.061513333333333,2.6775796491228068,3.0308,1.899285,2.4237175,4.436615,2.27977,7.926385,5.0975,3.19695,3.808615,6.43698,6.37418,1.8526300000000002,4.1844075,2.087195,2.18497,6.32412,7.69063,1.0569066666666667,2.0741825,3.74864,2.5084,2.999105,3.063695,2.878605,4.26496,2.46821,3.098905,3.39621,3.21134,7.55234,1.3880466666666667,1.945725,2.94678,3.435955,1.7928966666666666,3.45927,1.41635,3.74665,3.318625,6.41412,3.358525,9.170455,3.38668,1.499406,1.7474800000000001,2.988845,5.72347,1.579215,1.53895,5.84155,3.50261,3.99991,2.722365,2.01355,3.1089,10.480075,5.2443,6.61542,3.510605,2.17272,2.13676,2.543065,3.015005,3.2798,1.6384083333333335,1.5791166666666667,2.49743,3.511765,1.796245,3.50664,2.560125,4.532845,3.81671,3.431025,1.144925,2.6345,1.1373266666666666,1.421156,1.65936,3.352115,3.37582,3.600635,2.70047,3.872125,3.999,2.840545,1.447194,3.52802,3.51215,3.1418,1.7562,2.96121,3.479695,1.4440175,3.44246,1.63131,4.13122,3.927165,4.681735,2.69579,3.919095,1.72135,3.31942,5.6928,1.715345,1.0929342857142859,3.525733333333333,2.71043,4.225355,4.256665,3.072705,4.481305,4.826645,2.3798866666666667,5.26225,5.4019225,6.70085,4.025795,6.094471333333333,4.010475,1.7337833333333332,2.6325766666666666,4.63068,4.639545,2.521856666666667,7.334158,1.20049,3.3552999999999997,2.149855,1.74618,2.411723333333333,2.7649666666666666,0.375955,2.8438733333333333,3.8808666666666665,3.63968,2.62306,3.33314,2.34509,2.48593,2.1713075,9.392135,4.959495,2.00128,5.0762,2.432395847826087,0.7366560769230768,2.6888400000000003,7.305305333333333,1.6864540000000001,4.50700625,6.254876666666666,1.777755,1.5882,1.3935475,3.54207,3.241255,4.41022,3.813355,2.40464,3.576415,0.8067740000000001,2.6717373333333336,4.23389,4.18748,4.81656,3.154955,4.956565,4.626815,4.11629,4.87106,5.515,4.630325,4.103785,5.463,1.6079160000000001,1.942145,2.771025,3.34434,1.1271222222222221,3.83303,2.14636,3.279863333333333,4.365895,3.2850466666666667,2.45612,1.5097533333333333,3.01113,2.781468333333333,2.7114266666666667,2.882,1.9800033333333333,2.1371575,2.32676,3.77869,4.502385,3.867965,4.74694,3.432645,2.338405,2.796075,4.994405,3.7596666666666665,4.6298,3.347885,2.30148,4.485081666666667,1.7412466666666668,4.140935,4.7994725,5.920755357142857,3.82386,4.352525,5.436,3.183196666666667,3.9219991666666667,4.38178,3.42808,3.8600424999999996,3.358555,1.42716,3.14885,1.749185,2.27946,4.704755,5.01702,3.8600424999999996,3.98028,3.40312,1.4611049999999999,3.48141,2.07085,2.3340033333333334,2.17705,2.744175,1.6499806060606061,1.6499806060606061,1.6499806060606061,0.5624972727272728,0.7600788888888889,2.1008322222222224,1.12626,3.656175,1.2564883333333332,3.96318,5.10895,4.20485,3.213685,4.067245,3.16707,5.00075,1.5409125,3.07296,2.74326,3.217575,5.928815,4.15358,5.30985,3.99864,1.0105175,2.476465,1.25585,3.79703,3.83309,4.172465,5.1035,4.675695,3.83373,4.422675,3.73968,1.72019,1.1876133333333334,5.577226666666666,1.0703455555555557,1.24306,2.6022533333333335,8.120725,3.105425,3.968615,3.1145,5.65264,1.702235,1.02608,1.47191,3.138205,3.526575,3.870845,3.678575,1.8907475,6.50018,2.919776666666667,0.91841125,4.721915,3.004656666666667,2.6667966666666665,2.3786066666666668,3.5395333333333334,5.877433333333333,2.56324,3.01924,3.500833333333333,2.4178533333333334,2.69412,2.930236666666667,2.653185,2.06636,4.688475,4.48336,4.857,1.047228888888889,0.742306,3.9267333333333334,2.7186466666666664,0.991695,2.6529266666666667,3.414005,4.15198,6.8547675,4.571125,3.5057333333333336,1.7607620000000002,3.480825,3.75062,2.72852,2.5252462857142857,3.93785,2.8478333333333334,4.866996,0.8846566666666666,2.88337,1.805392,3.61785,4.156195,1.82873,1.107915,3.0538,0.422994,3.368775,6.73435,5.0932,2.687272,1.428502,3.5391999999999997,0.7782944444444444,2.5692933333333334,0.7782944444444444,4.07255,4.24417,1.40843,1.819355,5.1878633333333335,1.9081233333333334,3.579745,2.58978,3.62473,1.25767,1.5846266666666666,4.00722,4.527115,5.1609,2.893192,2.81075,3.204925,1.6593575,2.201845,1.818065,1.8284875,4.61944,1.5059111111111112,1.5059111111111112,3.35927,4.721249333333334,8.247158333333333,5.005826666666667,7.834020000000001,2.29364,3.849635,4.046695,1.6470900000000002,3.577173333333333,4.018035,2.86255,5.21285,2.99152,2.38781,2.8703366666666668,3.828415,1.06827125,4.175675,4.438295,1.1492116666666667,7.992103333333333,2.841055,3.28271,3.6115283333333337,5.04265,4.94434,3.5462533333333335,2.52435,2.8218933333333336,2.05499,3.7213999999999996,2.33277,2.18627,7.198556,3.265636666666667,2.7824899999999997,4.345335,22.34109471611722,0.68314,2.74683,4.366885,4.3891,8.66255,4.62697,4.594915,4.55302,6.9949216666666665,3.5207,1.6109933333333333,4.6745616666666665,3.21937,1.2075879999999999,1.2075879999999999,1.2075879999999999,2.3561187500000003,1.66907,3.320315,1.582385,3.207955,1.38006,2.563555,2.44008,2.918395,1.582385,3.216265,2.639105,4.123853333333334,4.815548333333333,4.897365,0.7574908333333333,3.26965,2.83101,4.50766,3.480395,2.595845,2.4109375,1.7057125,2.3144575,1.451502,3.56241,1.6892025,4.440615,10.835462,2.70506,2.410145,4.724380833333333,4.731066666666666,4.4356333333333335,6.45925,2.269833333333333,5.443965833333333,4.575795,1.0834633333333332,1.1778942857142858,6.488397000000001,4.23781,2.384525,3.633215,1.882105,3.763755,4.838245,4.467,4.049225,1.29481,4.157315,4.70755,4.620285,6.287613,3.4931,5.2641,4.441165,4.493455,5.08795,3.530366666666667,4.95235,2.0700625,3.342285,3.111845,3.34518,4.22333,6.3692,4.33123,2.6971000000000003,3.4984333333333333,8.81389,4.558385,3.21252,3.490635,3.28565,4.475555,4.313625,4.545835,6.566656666666667,3.331205,2.73954,3.93951,2.449395,4.21632,2.22244,6.42481,1.64238,4.45107,4.521645,11.73655,0.5025742857142858,4.262455,4.905035,0.6419928571428571,3.65733,3.88057,3.988535,0.943621,4.830195,4.827773333333333,2.558946666666667,9.824121666666667,3.1923333333333335,1.9127333333333334,2.31755,3.51428,6.0047,0.5448350000000001,3.94311,2.0080525,5.3776,0.7175707692307692,4.254315,5.62625,6.0368,3.54736,6.3783674999999995,4.52972,3.47779625,2.5475166666666667,2.84948,4.26994,4.588035,4.967795,4.88078,5.48395,3.1977966666666666,6.702791666666666,2.796175,3.0750780000000004,1.9242625,4.255775,2.2446699999999997,1.62091,3.1756666666666664,2.92258,3.21626,3.395466666666667,3.6057666666666663,3.0812333333333335,2.4783433333333336,5.4484,3.133516666666667,3.80758,4.91671,2.5767266666666666,1.1488333333333332,2.9993366666666668,2.90112,3.76801,2.8391566666666663,3.15611,4.739046666666667,2.097586666666667,1.695195,3.0496,3.75732,4.3143,1.08872625,4.217235,3.26447,4.0329,2.9293566666666666,4.797332,3.954345,3.356325,4.08313,1.54679,3.812385,0.655725,4.55453,4.9636,16.686386666666667,2.920693333333333,1.1399783333333333,3.82468,0.6347471428571428,2.703425,4.45104,2.09719,1.2185114285714285,3.589165,4.45266,2.9894966666666662,0.7274333333333334,2.702175,7.92886,3.91234,5.51665,4.978125,5.22915,3.25136,3.7236,3.16592,7.220816666666666,4.009885,5.0239,2.105965,0.44414166666666666,2.315355,3.156045,2.28529,3.190745,3.641155,2.8989366666666663,4.811055,0.7117108333333334,4.588375,3.6913,3.07728,1.1650233333333333,2.754716666666667,1.9978133333333332,4.911735,3.89307,2.27488,1.6368428571428573,3.42059,4.31571,4.328485,6.148545,2.11649,4.711425,4.45893,3.836855,1.944582,3.868705,5.777238333333333,4.771995,2.587035,4.81829,2.79952,2.591255,3.867465,3.90101,1.355925,4.58638,2.06058,2.7234766666666665,5.134908333333334,5.134908333333334,5.21365,1.473956,4.915395,0.88579375,1.769258,5.0841,2.5205433333333334,1.4707433333333333,3.1482466666666666,0.84839,4.3003,4.905105,3.010175,4.970505,3.97775,3.794085,5.1102325,3.581785,3.6701,2.77491,2.40508,2.653975,2.89734,4.48342,1.7093124175824175,2.842643333333333,4.456975,4.603455,2.2669395833333335,4.296005,4.581195,4.927021666666667,3.4084333333333334,5.16295,4.86305,5.10545,4.83678,3.787105,3.669845,3.75949,4.41075,5.5216,4.703,4.90167,4.46019,4.541595,0.7156408333333334,4.989135,4.549595,3.86427,7.0426325,4.173065,3.76368,4.325685,4.74393,3.512525,3.49425,2.0709874999999998,4.495785,1.786955,1.3076785714285715,3.547835,2.0669166666666667,2.51202,3.7381406666666663,3.2924733333333336,2.878695,1.09466,1.9181225,4.5644,3.831325,1.868895,1.868895,3.358055,1.6064440000000002,3.1500833333333333,4.32394,3.513425,3.75913,1.4934933333333333,2.01225,3.4626725,2.014205,4.17402,4.486435,4.48586,3.93818,6.71408,2.618525,3.648945,4.530635,4.37112,3.3228866666666668,3.987605,3.928125,4.274535,2.119295,2.5063733333333333,4.363865,3.956525,3.666165,3.667575,1.6473675,3.85097,4.238885,4.55038,4.21797,3.9487725,3.9487725,3.059196666666667,3.975455,3.977285,3.892615,1.660276,7.2867725,3.944265,4.81071,4.28016,4.173465,3.811285,4.96747,2.979795,3.194025,2.783775,4.98519,1.8311119999999999,4.1286,5.451205555555555,5.1359,0.7051999999999999,4.793854166666667,1.17033,4.769385,4.55849,4.39693,4.059405,5.1993,3.7318,3.7318,0.848443,2.250615,4.756655,3.596665,3.919805,4.832365,5.4838,3.441745,4.232235,1.3603633333333331,2.651235,1.6868675,1.24716625,4.268913333333334,0.840818,2.57009,3.053976666666667,1.1993566666666666,2.1102075,2.6902500000000003,1.2862766666666667,6.37497,1.96614,2.4618266666666666,5.56595,1.8791425,2.797966666666667,2.760035,4.498245,3.7826,3.3965,3.9293333333333336,1.653742,2.1907550000000002,4.352585,0.6483307142857143,2.1358133333333336,2.3209733333333333,3.05379,2.8110199999999996,1.156572857142857,0.8314708333333334,2.4478966666666664,4.177445,1.1425642857142857,2.164675,1.2626975,5.517996666666667,2.215,5.09315,4.397935,4.22658,5.15035,5.31495,4.1069,4.155015,1.4024533333333336,3.9121666666666663,1.704482,2.4618100000000003,1.2036442857142855,4.27676,2.1023725,7.24316,4.257725,3.838925,1.444266,6.83246,3.43834,1.5687033333333333,4.07875,3.190615,3.85825,3.256535,1.9961725,1.9961725,3.255466666666667,1.2934566666666667,1.2934566666666667,1.944582,2.92407,2.1049625,1.3337783333333333,3.5790666666666664,1.067395,3.1865666666666663,2.3560425,1.8885925,1.5209916666666665,2.1732925,1.9778975,0.2867664705882353,2.45555,1.1878900000000001,2.2992033333333333,1.9970299999999999,2.4306,1.0419366666666667,1.1054439999999999,3.897933333333333,3.1190200000000003,1.9961725,1.76688,1.9975433333333334,2.5685533333333335,2.453186666666667,1.8681139999999998,3.16901,1.10806,3.2252466666666666,2.6959933333333335,2.586253333333333,1.55058,0.9695539999999999,2.46707,0.9695539999999999,2.46707,0.680495,0.680495,0.47276388888888893,2.24145,2.3760566666666665,0.680495,2.1855225,2.35982,2.3806,1.68304,0.7614277777777778,0.680495,0.680495,1.6656,1.6656,2.021045,1.76688,0.680495,2.2088200000000002,0.46308692307692306,3.07304,1.9643899999999999,2.4500699999999997,2.5904000000000003,2.5904000000000003,0.3801815,0.3801815,1.944582,1.992968,2.11248,1.975836,0.3801815,3.5210666666666666,2.41545,1.61729,0.61059875,1.61729,0.61059875,5.31684,2.5248466666666665,3.9981000000000004,2.5136966666666667,2.9237933333333337,3.08872,2.7519899999999997,3.5032,2.4333975,1.77216,2.66505,2.95919,2.3483033333333334,1.6656,2.5643844444444444,2.5643844444444444,2.77108,2.13321,4.246315,2.2625033333333335,3.2798033333333336,2.7312333333333334,1.522466,2.3397625,2.26607,0.7881681818181818,1.64882,3.771815,1.6525200000000002,3.15006,2.5383566666666666,2.6894,3.8884000000000003,1.5837583333333332,3.505266666666667,3.0949899999999997,4.1882,1.281674,0.2267134482758621,1.2834085714285715,1.2834085714285715,1.0013866666666666,2.925993333333333,3.8577333333333335,2.5463333333333336,2.157906666666667,2.157906666666667,2.1204725,1.63131,0.972161,1.6228433333333332,1.6228433333333332,0.680495,1.944582,2.86562,3.2258,2.3560425,2.19716,2.19716,2.19716,1.0786644444444444,1.4982142857142857,1.4982142857142857,2.4221775,2.8179833333333337,2.552608352272727,3.86296,2.4912433333333333,2.4464099999999998,3.522505,3.852345,6.5348175,3.669865,4.37651,3.9468,13.141169999999999,4.839955,3.547935,0.91796,3.864685,3.282955,2.33647,3.708745,4.96358,6.278672666666667,6.01705,0.4735264705882353,3.986095,3.035765,3.90547,2.4474675,4.39851,4.213545,3.999225,8.454865,3.69971,3.800285,3.908525,3.259182272727273,7.914023692307692,3.12059,2.6684900000000003,3.683135,4.01978,5.00725,3.850845,6.536944999999999,3.62426,1.386354,2.855645,0.9074525,4.64637,2.66422,2.54973,3.92621,3.149855,2.540965,4.63933,3.89915,7.955064999999999,4.058905,4.474598,2.308413333333333,4.98971,3.0365,0.8772475,0.8772475,3.45055,3.927215,2.209035,2.117695,4.06456,3.00577,2.90478,1.758035,1.8551,2.836375,2.4577233333333335,1.1128675,3.35615,4.853595,8.39124,1.559996,2.74847,3.09267,3.30436,2.7454433333333337,8.18926,4.16212,3.450833333333333,2.9476999999999998,3.977995,3.32996,2.8855866666666667,3.133736666666667,3.80782,3.750635,4.31588,3.81034,0.40308533333333335,1.4546066666666666,2.2565,1.7974225,4.53374,3.604745,2.6805833333333333,2.190835,4.56807,3.653004,2.0547775,2.519395,0.914818,2.0374325,2.4738266666666666,2.4738266666666666,5.1449,1.85212,2.8639766666666664,2.3311366666666666,2.0536366666666668,1.82362,3.298635,3.839155,5.0351,4.23275,5.02305,4.768665,2.81346,2.8919266666666665,2.05858,4.60933,5.346133333333333,1.9117466666666667,2.9947033333333333,2.1417675,2.3310633333333333,3.8760716666666664,2.42644,5.1166,3.859285,3.531115,4.27595,3.0344366666666667,3.61516,4.0005,2.26146,2.442363333333333,0.4122228571428571,3.8374333333333333,2.63478,2.957255,6.1693,4.750935,5.728377500000001,1.8910275,1.56179,3.164315,5.18025,6.36115,6.0397,2.989466666666667,2.2924533333333335,3.557555,2.2503699999999998,4.717335,2.1997133333333334,2.308295,5.3336,4.926755,4.401175,1.6555925,1.91105,1.078908,1.078908,1.041132,0.9309514285714285,0.806462,1.9578074285714284,4.4461,9.818083333333334,3.891625,4.290835,4.091025,5.8096975,2.720165,1.6797633333333335,3.43991,2.92355,4.70384,2.31009,2.4551266666666667,2.837206666666667,3.227563333333333,2.1900633333333333,3.19389,3.2611066666666666,3.0357533333333335,3.4502666666666664,3.3914000000000004,2.9282133333333333,2.6709566666666666,3.0238033333333334,2.3442133333333333,3.071146666666667,3.020576666666667,2.9791399999999997,3.3462333333333336,2.07674,5.443338285714286,3.0943133333333335,3.978738,3.18168,3.14705,3.6801333333333335,2.8066133333333334,2.7339533333333335,2.9974666666666665,3.1354066666666665,3.364266666666667,3.1081133333333333,1.9523675,2.688266666666667,2.701973333333333,2.879425,2.879425,3.345466666666667,3.0355266666666663,2.53464,2.7741900000000004,2.93556,4.2069,2.7660533333333333,2.708775,2.7237066666666667,2.8541600000000003,4.364190000000001,4.84096,1.5790066666666667,3.4358,3.8209666666666666,3.341806,3.2564166666666665,3.6264333333333334,3.4003333333333337,2.9789266666666667,3.368764,1.8935179999999998,2.8918475,3.4136,3.3723333333333336,2.548573333333333,2.4128966666666667,3.955033333333333,2.9501933333333334,3.076086666666667,2.3342675,1.1776366666666667,3.2171066666666666,2.679953333333333,1.9100066666666666,2.468685,3.0961533333333335,3.0541366666666665,1.94232,5.497148666666667,2.4127033333333334,0.890744,4.45838,1.84887125,1.64121,4.40514,4.06337,3.321745,2.34214,1.386785,3.35176,2.73657,2.70519,0.4126,2.12307,0.4126,1.9578,1.386785,2.619055,3.73314,2.3083275,3.2726,3.130065,0.4991426666666667,2.8475366666666666,0.985945,0.43789823529411764,3.75462,3.887585,4.919485,2.4490725,5.17815,4.16564,3.848225,2.33389,3.7860666666666667,1.630736,5.0958,2.3483,4.21422,4.418,2.9090233333333333,1.8300633333333334,2.0709233333333334,1.3437533333333331,1.8458,1.0275175,1.0275175,4.46568,2.2488566666666667,6.0506866666666665,2.1988525,2.18585,2.20511,2.2827789999999997,2.0069375,5.8016,4.1976575,2.19072,2.0481599999999998,2.2827789999999997,2.74831,3.835349,2.159425,5.415274999999999,2.1988525,3.3521075,3.26521,3.0590466666666667,5.6391,4.788155,1.9235825,2.056835,2.342585,2.411465,4.759625,5.35375,1.90878,3.829155,1.5357833333333335,1.5845675,5.32565,10.080376666666666,2.0568,2.12664,2.405136666666667,4.300995,4.165835,1.8173925,4.738805,4.54468,2.389865,39.30397739285715,2.80969,3.11257,0.4045711111111111,4.638633333333333,2.1586266666666667,0.9070344444444444,3.669425,3.53774,1.8722375,1.827085,2.337736666666667,3.6472,1.430842857142857,3.2683066666666667,3.53119,4.670155,0.905705,4.83343,5.0312,4.838925,2.779643333333333,1.5896675,3.8154825000000003,4.56689,3.735365,3.340005,3.652,3.78196,11.620437828282828,2.7502433333333336,3.0538,4.019185,2.56225,4.49868,3.35669,2.75306,3.09699,5.26625,4.444455,4.97439,4.93171,2.53116,3.6972,4.245455,3.68371,4.668845,4.549585,0.1222032608695652,2.44853,5.4615,2.80178,1.5752366666666668,1.156875,1.156875,2.438895,2.756885,2.579315,1.8037299999999998,2.96088,4.3946,2.68105,4.517478333333333,0.5767635714285715,4.538175,3.58941,4.725395,4.67735,4.644955,1.16435375,1.06540625,4.2627,2.9073499999999997,3.04134,3.782984666666666,4.009205,5.9856625,5.47155,3.9146,3.4748,2.16167,1.49082,4.45553,0.31522066666666665,3.32865,3.80071,4.05035,14.27534,1.9562750000000002,3.281193333333333,0.734805,4.613665,8.65746,3.37012,1.64179,5.82085,3.2598866666666666,1.0479166666666666,4.926585,2.872665,2.799995,4.78971,3.4371571944444446,0.98847375,7.400891666666666,0.74622375,5.1768,3.2179034444444445,1.39477,2.100651527777778,3.28184,3.28184,3.90037,4.345299416666666,1.3579875,2.433135,2.79868,3.715665,3.17868,2.62538,3.149795,3.43703,6.8292633333333335,6.31395,4.04031,3.34477,4.640575,4.728465,3.64254,3.535335,3.608795,3.933185,4.32388,2.5258533333333335,2.61468,1.64915,2.2981266666666667,2.248865,1.559225,2.844393333333333,3.6095333333333333,3.585733333333333,3.1943066666666664,2.55833,1.5097866666666666,1.6775933333333333,0.46062454545454545,2.407556666666667,1.6665428571428573,2.0130125,3.5102333333333333,2.4654666666666665,2.5874433333333333,1.00066625,2.2431825,2.613735,2.972075,3.62446,5.4606,3.910985,3.07307,2.2565833333333334,3.35921,4.34386,2.394525,3.72547,1.834765,3.860685,2.775115,3.976425,1.3472666666666668,0.6179330000000001,2.32684,3.318435,3.17191,3.986435,4.8257200000000005,8.958895,3.2330166666666664,2.3292533333333334,1.8914499999999999,1.756944,1.756944,2.881883333333333,2.44407,4.939305,4.55311,3.575475,5.10625,4.32841,4.189205,3.2096108333333335,4.351865,8.0064625,2.4782225,0.499719375,3.3261066666666665,1.31954,1.0336528571428572,2.057733333333333,0.808088,2.1138825,5.40925,4.872205,5.9387825,0.9880325,7.10902,1.957252,1.543925,2.4264,4.175205,3.305676666666667,2.402575,3.60946,3.092,4.301833333333334,2.875723333333333,2.7615766666666666,2.9645733333333335,6.638075,2.522265,3.93395,3.7614083333333332,3.5605041666666666,1.3657266666666665,1.273435,4.320225,2.7840833333333332,3.1466133333333333,5.4347650000000005,2.824805,2.100645,2.3611625,3.110075,3.7872333333333335,2.2786933333333335,3.8620975,3.0645866666666666,5.54885,2.453392083333333,1.8928875,4.755345,5.2885,4.58925,3.97588,1.5345133333333332,2.2546075,1.9281575,3.31205,1.5877999999999999,1.0393766666666666,2.811214166666667,2.1514925,1.949925,4.361135,0.69471,5.7186225,1.4350925,0.7947500000000001,3.5470333333333333,4.08654,0.6752728571428571,3.2413144999999997,3.1809475000000003,0.8314708333333334,4.438105,0.18338238095238096,0.18338238095238096,0.18338238095238096,0.18338238095238096,0.18338238095238096,0.18338238095238096,1.9242439999999998,3.911285,1.9242439999999998,1.9242439999999998,1.8083666666666665,0.18338238095238096,0.18338238095238096,3.3503000000000003,2.5166633333333333,3.516175,3.252215,2.26572,3.551775,1.3429685714285713,1.618122,3.262814,1.359656,2.636276666666667,2.6213686666666667,5.867170000000001,4.057755,4.092235,6.62495,4.34258,4.779235,3.586065,3.86978,7.1578375,3.8633,3.733166666666667,2.3553566666666668,5.414686666666667,2.5846933333333335,2.00606,1.8058500000000002,4.62532,5.30065,5.2367,5.17965,5.5831,4.32699,4.59178,0.7423009090909091,0.7137564285714285,0.7137564285714285,4.63126,2.3301166666666666,3.796635,1.0653985714285714,4.48718,1.4673571428571428,2.34375,2.554,4.477566666666667,4.477566666666667,6.84545,4.52126,1.3198433333333333,9.51692,2.8865166666666666,1.2347444444444444,4.93599,5.11925,3.664715,3.10933,2.669135,4.208433333333333,0.8192533333333334,3.291256666666667,3.2008500000000004,3.8055,3.1462033333333337,1.5495266666666667,1.4162466666666667,4.875310833333334,3.1858466666666665,3.126856666666667,3.4516333333333336,5.350983333333334,3.3708508333333334,0.785999,1.7566833333333334,3.582933333333333,2.2627249999999997,3.767633333333333,3.4693,3.0793466666666665,3.4213666666666662,3.0307666666666666,2.5568966666666664,0.8617766666666666,3.07573,2.358913333333333,3.43115,3.071415,3.86282,2.6685033333333332,3.3188166666666667,2.88625,1.580418,1.8757433333333333,2.672981904761905,3.5901,1.780398,3.2711799999999998,1.8188833333333332,3.7576666666666667,5.274067499999999,4.706727333333333,2.531725,2.5563,2.868375,2.3945425,1.6019285714285714,2.27858,3.2888078571428574,2.3474225,3.567066666666667,2.91459,3.6556006666666665,3.03269,1.3152666666666668,1.3157525,1.78162,2.1823025,2.917123333333333,3.415433333333333,5.05,7.811975,2.688625,5.32045,3.73452,15.451902333333333,0.48131250000000003,10.961385,0.8462177777777778,3.14641,2.8808433333333334,2.3173566666666665,2.95522,1.594818,1.447194,2.346153333333333,1.239674,2.9133153333333333,2.0038733333333334,2.80822,2.1672966666666666,2.6791133333333335,1.5766133333333334,0.5986775,3.1337499999999996,2.4153333333333333,3.02112,1.0786644444444444,3.516833333333333,0.7278233333333333,0.3600946153846154,1.9035233333333332,4.53,4.66592,4.561205,0.7528754545454546,3.97786,4.55549,1.149055,2.19973,5.135373333333333,3.49586,3.79286,3.963275,3.91449,1.956435,3.82487,2.66179,2.847425,3.562435,2.76899,2.615015,3.835355,3.232985,3.54578,2.28241,3.40409,4.500665,1.3032133333333333,4.6398,2.20975,4.236985,5.3171333333333335,1.99429,2.7622466666666665,2.9139199999999996,5.773108333333333,2.482536666666667,3.15979,5.0382,3.9981000000000004,4.06015,2.0372666666666666,2.764625,4.458585,3.5469000000000004,3.797955,3.6219333333333332,3.1306499999999997,2.9329,3.781,3.152476666666667,2.6361399999999997,2.6630033333333336,0.43234388888888886,2.35586,2.1382,4.535925,4.785035,3.030836666666667,2.6970466666666666,3.1983599999999996,8.33712,3.53852875,3.923125,2.9969466666666666,3.958805,3.0948,3.629335,2.8424066666666667,2.145635,2.712756666666667,6.35905,4.606,2.1679133333333334,3.358525,2.986985,2.72964,4.511848666666667,1.7352139999999998,6.015596666666666,4.0657,4.87304,4.51662,6.48475,3.64998,6.691898333333333,3.64442,3.266915,0.632815,2.1566975,1.5554825,2.99082,3.024545,4.047235,3.95409,5.3714,2.6525933333333334,4.616665,3.739433333333333,3.8723333333333336,3.3608333333333333,4.61069,4.546565,4.59279,2.8522433333333335,5.574596666666666,4.4704,1.448995,5.3981,3.60245,2.765485,2.23489,2.3610366666666667,4.487832666666667,1.2757871428571428,2.57577,1.9879,3.905625,4.25736,2.5314633333333334,3.3634,3.0138966666666667,2.4062,4.036455,1.346398,2.37234,2.3768766666666665,2.85196,2.4911933333333334,2.6584833333333333,2.703656666666667,3.994,2.97568,2.8530366666666667,3.95328,2.351415,3.69982,3.617835,1.6169116666666667,1.6169116666666667,4.492,2.7880333333333334,1.761995,1.3618875,2.0538175,1.9930925,1.3352460000000002,1.4431900000000002,0.649299,1.5475166666666667,1.43678,2.921336666666667,2.233373333333333,1.7537366666666667,2.01029,2.2988133333333334,1.5008033333333335,1.704,1.8351566666666665,2.5091,3.696085,2.96559,2.886556666666667,2.650125,5.517525,2.8674,4.27535,3.9897283333333338,2.065675,3.94695,2.82721,1.964855,3.639785,1.58356,2.953445,3.659675,1.88747,4.43716,3.685505,4.22663,3.33044,0.8081322222222221,4.83845,3.85472,3.25159,3.744835,2.3164266666666666,4.408415,4.812045,4.9054525,9.055946666666667,3.579765,4.363015,2.91919,3.57934,4.54883,2.139125,2.78252,3.87019,2.1532525,5.780695,1.867514,2.76863,5.359581666666666,2.82839,4.295342,1.25132,4.15533,4.33746,2.9574366666666667,4.704875,4.76288,6.173473,15.811539880952381,0.6495882352941176,1.0419366666666667,3.0225566666666666,3.82492,3.542705,2.118825,3.227805,4.046505,4.91764,2.50778,4.506915,1.7688833333333334,1.7688833333333334,5.22785,0.7618618181818182,1.744634,3.121105,3.95382,0.37569153846153847,1.9954866666666666,3.95778225,1.1705966666666667,3.046443333333333,2.75521,2.976905,7.86432,2.532826666666667,3.7240333333333333,1.9460066666666667,2.263063333333333,3.8491375,3.439155,3.51654,7.062190166666666,1.9203775,2.7454,4.456285,6.705164999999999,1.89225,2.3221233333333333,2.616006666666667,1.3949133333333332,2.511445,1.66935375,3.896055,3.84645,1.522905,1.8371943333333334,1.8371943333333334,2.84525,5.48235,3.9546883333333334,3.913805,4.30634,4.265925,3.16444,3.7132,4.452525,3.511715,4.542071666666667,3.7176875000000003,4.49002,0.896631,0.362254375,5.35825,3.85508,2.4317966666666666,7.90942,1.5255166666666666,4.7571,4.23471,0.34099250000000003,2.0547066666666667,1.30285,1.8546333333333334,2.0899666666666668,5.423792,3.00101,3.150015,4.8158175,5.23985,4.617255,0.5891630769230769,2.03807,0.600704,5.698691666666667,1.433752,4.97905,1.9938475,3.1631400000000003,3.32453,4.1443,3.976435,5.3097,0.8419027272727273,3.27197,4.222605,2.0577275,1.73066,3.65984,3.03133,3.608445,3.85543125,5.263952380952381,4.603715,5.54415,2.71506,0.5451777777777778,3.3863333333333334,3.693335,0.5465392307692307,3.967505,3.811135,4.17178,3.336805,2.6915999999999998,4.90652,3.100555,3.1048,2.162325,3.72502,1.58271,3.21058,3.86387,0.5545307692307693,3.52526,3.789115,3.27526,3.69246,4.33006,2.676485,3.8893,0.633598,2.9954966666666665,3.6583711111111112,4.630555,3.638033333333333,2.4845875,3.4865333333333335,2.4845875,4.72581,3.0451,3.03149,1.5589199999999999,3.120276666666667,1.847035,4.28187,2.795783333333333,5.126860000000001,3.08013,2.7928433333333333,2.9632166666666664,2.432983214285714,2.432983214285714,2.432983214285714,2.2439666666666667,1.1450850000000001,4.530115,2.3791966666666666,1.6646933333333334,4.0906666666666665,2.45932,2.9907166666666662,4.06503,5.59695,3.465005,1.86453,1.064468,4.08606,1.9530239999999999,2.17952,3.149245,3.255195,2.0972025,3.34348,2.81126,1.5585499999999999,4.897285,4.066155,4.109665,3.700835,0.7498688888888889,2.40444,4.33081,7.64659,3.891815,3.06502,3.31083,3.51994,3.766815,1.64379,2.440435,4.515085,2.1344025,4.341475,3.470875,5.58515,8.563296666666666,4.20807,3.372735,2.941625,4.782605,4.050195,3.1990625,3.1990625,3.799725,4.004438333333333,4.204215,4.014825,4.237625,4.5596,4.012835,1.09282,4.27951,4.352485,5.3417,7.798145,5.00875,3.805034,1.91883,1.5139866666666668,2.44846125,4.91191,3.837445,5.15886,2.2221800000000003,4.407555,5.0585,5.20625,4.73615,2.9979133333333334,3.45434,4.12795,5.1192,4.520045,3.82333,6.5422883333333335,4.78184,2.2347533333333334,5.1357,3.991715,3.931085,3.7802,4.397155,0.7742990909090909,4.14704,4.407575,1.1935185714285714,1.182988,4.71812,4.740445,8.7993555,5.0358,4.420355,5.9263,2.958545,2.5585533333333332,5.01075,1.6887975,1.6887975,2.649735,1.6572033333333334,3.023995833333333,3.2577433333333334,1.9607,4.172691363636364,1.4331966666666667,2.08193,5.48803,3.5268966666666666,3.53725,2.95706,4.043035,3.98075,2.9528766666666666,1.0397955555555556,4.075745,2.96487,3.962645,4.17804,3.68434,5.3904,4.658655,4.46917,3.68298,5.1704,6.46785,4.675675,3.30594,3.358175,2.06684,2.06684,3.882025,3.828075,2.580293333333333,2.7466866666666667,2.0998839393939397,2.6119333333333334,1.6724833333333333,1.6724833333333333,4.278595,3.453495,2.13884,3.61235,2.799125,1.94896,1.1868575,1.0111977777777779,2.82181,0.4393652631578947,0.8643233333333333,2.75124,3.749045,0.43494818181818184,3.86686,1.9279,5.35255,3.37916,7.25786,4.25929,5.240566666666666,4.76227,5.4433,4.09371,1.90907,1.86966,3.746485,2.94663,3.90621,1.2890633333333332,3.172965,4.179685,2.66533,2.684335,2.4836,4.26669,3.28927,3.095785,3.870605,3.662,3.17767,3.12203,1.06427,1.867215,2.24612,2.82329,4.310175,7.54341,0.924952,1.5854633333333332,1.5854633333333332,1.860746,3.907065,2.80981,3.02202,5.40041,2.905836666666667,1.0476525,1.0476525,1.0476525,2.92818,3.0322709999999997,4.96914,3.17604,4.25945,3.286135,3.649335,2.965275,3.2182141666666664,3.639435,4.063700000000001,2.89453,1.3352460000000002,2.39248,2.89453,3.45435,1.3536599999999999,1.8183166666666668,1.8794675,5.469053333333333,2.66158,5.8865099999999995,5.469053333333333,3.2249299999999996,1.7346666666666666,1.7346666666666666,2.73366,6.45933,1.7346666666666666,2.46388,5.73377,2.206425,2.895395,4.71897,3.34996,3.94057,2.0496233333333334,3.34909,4.58046,2.075806666666667,2.28759,3.73523,2.0496233333333334,2.68836,1.895485,5.85705,2.64421,1.15574,2.57633,3.27537,3.1827753333333333,2.04048,2.0217519999999998,3.91181,1.8550053333333332,1.57373,3.239475,2.15935,3.227745,3.21229,2.17623,2.431915,2.42408,6.52898,2.39843,3.20948,3.138655,3.138655,9.025656666666666,0.9041166666666666,3.144675,2.572225,3.24031,2.292955,1.1787633333333334,1.1787633333333334,3.60783,2.15546,7.220885,2.282865,3.302465,2.8357,6.39616,2.487395,2.394585,5.74038,5.74038,2.34947,1.5509825,1.33242,1.33242,1.5509825,1.9869566666666667,1.24379,1.2148883333333333,1.5966699999999998,1.89269,3.620715,1.61213,3.98387,3.064615,2.507535,2.73325,2.908115,2.4347,3.2597000000000005,3.2597000000000005,5.97547,2.298145,2.982395,3.200445,3.014875,2.544025,2.77619,2.59295,4.9300825,1.6315325,1.5266396666666666,1.3493613333333334,2.230503,5.16831,4.122049666666667,3.476551666666667,3.34248,1.6033825,1.6033825,1.6033825,4.70133,2.388755,1.2148883333333333,3.19417,3.59082,1.26831,5.2654825,2.9569525,6.91997,3.56127,1.797105,3.505225,2.3778633333333334,2.151015,3.88093,4.58263,2.95795,1.58526,2.00876,2.40418,3.005845,5.38396,2.12947,3.306475,2.410255,6.05997,4.60808,2.22924,2.44972,5.40296,5.1287,5.22243,6.01499,0.978902,0.978902,3.294615,3.294615,0.9257799999999999,4.75174,3.67531,4.76952,4.53899,4.50927,2.248565,4.393671666666666,4.393671666666666,2.110345,3.371215,3.14013,1.214572,4.27028,3.185135,3.064325,2.66846,4.50362,2.40512,1.855885,3.18157,2.92984,2.973925,5.08724,2.6774,1.758955,3.649685,5.8885,5.46558,4.27308,2.57371,3.36967,2.675295,5.15262,2.665925,3.50632,2.261085,6.69353,4.86788,2.339345,2.44207,3.00315,4.83825,2.243285,2.8286,2.674035,7.36639,4.57257,3.35965,2.38533,2.003775,6.55189,2.54638,3.10824,5.74573,2.91082,2.989855,2.717725,2.70613,1.8649466666666665,1.950435,1.86982,1.59364,1.7768933333333334,1.9902766666666667,1.65936,2.0095733333333334,1.887445,1.8649466666666665,4.25669,4.0115,1.986965,1.8847975,1.8847975,3.6229633333333338,3.6229633333333338,2.9328,2.9328,2.601175,2.574095,1.76774,4.15577,2.2016925,2.2016925,2.340765,2.340765,2.90347,1.98623,4.54626,2.296215,3.111345,2.0595433333333335,2.0595433333333335,1.545745,3.59183,4.62629,1.3536599999999999,4.39077,2.17623,2.0579,4.21054,3.233515,1.819245,2.25041,6.85034,2.227775,5.78763,3.24904,3.27377,2.98542,2.8578,6.21452,3.04041,2.105065,2.474280769230769,2.75421,5.70232,3.62096,1.52918,1.52918,4.14578,4.46394,4.9181,5.63069,2.66544,2.882015,1.68484,2.97216,1.651505,2.83053,1.876445,0.70019,0.70019,0.70019,2.0023316666666666,4.947186666666667,2.0023316666666666,2.373855,3.702805,1.610455,2.090335,4.23419,3.75447,5.29611,1.5092733333333335,4.80445,1.5092733333333335,1.5092733333333335,2.181015,1.821775,1.545715,5.72238,1.545715,2.52793,4.30951,1.867535,1.94308,2.645385,2.9192699999999996,3.262715,3.10986,3.464435,1.297765,3.87048,0.7335609090909091,4.17998,4.26938,2.5443100000000003,2.5443100000000003,0.6988154545454545,3.936833333333333,2.6775366666666667,5.66495,5.034,4.090525,5.35475,4.12781,4.07739,5.1815,4.25767,4.29019,3.616885,3.89041,5.0018,5.0055,3.398825,3.371575,4.16974,2.3863166666666666,1.2124000000000001,4.46012,3.502695,3.3545,1.2496657142857142,3.76002,3.917105,6.2434525,1.1449525,5.33895,4.225555,2.055885,1.9122,3.216965,3.600855,1.70915,1.52918,3.90486,4.58092,2.63893,4.735915,3.164575,1.11572,2.9607500000000004,1.1863585714285716,3.1447233333333333,1.9458900000000001,3.1311633333333333,1.8984575,2.6263566666666667,4.010475,3.014015,4.44773,3.286075,2.2013125,4.79712,4.41106,3.13015,5.55925,4.31026,2.6920066666666664,5.9928,4.87668,3.138975,2.591416666666667,3.666175,2.983826666666667,3.1548533333333335,2.61844,4.861785,4.21303,3.839405,2.4014966666666666,2.67893,2.4391833333333333,2.4121366666666666,2.22322,2.327993333333333,2.2286266666666665,2.354365,1.3734525,2.9909263333333334,1.1262325,1.752135,1.7420175,2.71245,1.6323,1.8174075,3.845105,3.950845,1.95795,4.056535,3.60919,6.397398333333333,2.0679233333333333,1.6045079999999998,6.58395,3.489475,4.596945,4.008705,3.901375,2.233495,3.669145,2.39268,3.001865,4.29909,0.7294166666666667,4.004155,2.1473533333333332,0.7579872727272726,4.78641,4.360805,4.044705,1.82826875,4.75947,5.8436,2.6877066666666667,3.01742,2.5022433333333334,2.1164666666666667,0.588256,3.072096666666667,2.8372,4.75643,2.3803625,2.084025,3.505475,1.0656825,1.8101533333333335,1.8101533333333335,2.78619,1.8101533333333335,4.074,2.83211,4.362855,4.39237,5.8648,13.281230833333334,3.0804333333333336,4.64097,2.6371,4.68388,3.2799,6.3287925,2.829166666666667,4.722025,4.73791,3.800725,1.132875,4.7802,3.186173333333333,2.473386666666667,0.9704955555555556,2.191215,3.2925,7.067886666666666,4.33278,2.92407,4.517775,3.255466666666667,4.11088,4.221835,4.529285,3.002675,2.8968566666666664,3.916415,5.6609,2.528955,4.26209,1.7970275,1.7970275,3.14579,4.942405,1.20204125,4.004967333333333,2.1037525,4.743925,2.544773333333333,2.638316666666667,3.0529566666666668,2.2999566666666666,0.7327214285714286,3.476285,2.7689733333333333,5.56985,4.50555,0.23092875,5.0527,4.391295,4.190635,6.632788333333334,2.9574700000000003,2.905193333333333,2.1996366666666667,2.96761,2.7168799999999997,1.3078133333333333,2.8963433333333337,2.57883,1.3783466666666666,3.400933333333333,3.003363333333333,2.5271,2.821096666666667,1.2870766666666666,4.2429,2.61092,5.1793,3.90028,3.651445,1.6460299999999999,2.447693333333333,1.299495,2.01603,1.299495,5.1356,3.376,1.503444,2.4697825,4.17546,3.83627,3.01124,3.89244,0.3554485,1.3513437499999998,3.8971,4.25533,6.1632,1.99855,2.74637,3.0595499999999998,2.2652366666666666,2.72386,3.519885,4.73228,2.49143,2.169023333333333,2.7154666666666665,2.6281,2.638716666666667,4.18929,2.28919,4.42165,3.78427,6.0379,7.6515425,0.7594211111111111,0.804902,4.205615,6.60748,2.02926,3.571915,1.4772766666666666,1.4772766666666666,3.45814,0.4454055555555556,3.54723,3.70474,2.835695,4.0746,3.268785,2.572805,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,2.384085,3.009245,3.7944733333333334,2.947973333333333,4.197525,5.7088358333333336,3.099695,1.9197499999999998,0.9493783333333333,3.47324,0.7332125,5.3212575,3.4015075,2.34252,0.7332125,2.345875,2.691585,0.785575,3.8255375000000003,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,4.19765,1.57803,4.75488,4.540805,1.685154,4.865305,4.13087,5.26525,4.637268333333333,3.4406375000000002,3.420075,4.387025,1.95665,5.7987,4.351575,0.7457142857142857,1.4302285714285714,1.29379,3.19369,3.19369,2.961756666666667,3.857485,4.23027,3.56605,3.996495,2.8557466666666667,2.000176666666667,0.46296857142857145,4.12171,3.313645,2.668385,4.303195,3.289755,3.09568375,4.95571,4.44572,6.7099475,4.17638,4.83351,5.7479,4.36622,1.27036,2.974025,5.249336666666666,33.20355998953824,1.2355066666666665,4.22111,2.917735,4.500325,3.920015,5.27205,5.01355,0.424812380952381,5.29015,4.44482,1.9530225,1.977295,3.87807,1.579215,2.48139,2.26995,1.7165625,2.90625,2.453186666666667,2.780995,2.75129,0.5965576923076923,3.132925,3.840175,0.37825263157894734,2.5322833333333334,2.76849,2.891685,3.891415,1.830285,4.259465,4.002555,3.24484,3.51697,3.089705,4.054985,3.030685,3.85628,2.1523875,5.249336666666666,3.49321,3.290895,2.841185,1.7178280000000001,3.859255,3.629035,6.804585,3.3721,4.74523,6.19862,5.278028,2.28609,4.40155,5.905822499999999,7.754149999999999,2.54232,2.53059,4.683975,5.5308600000000006,4.059235,3.046995,5.26937,2.71285,1.7327975,2.181805,59.900690162968694,5.2198,4.18675,2.587375,0.821059,2.62831,2.9937466666666666,3.4233666666666664,0.8154966666666668,4.47335,0.7702411111111112,7.5695575,1.9530239999999999,3.3691999999999998,1.775676,2.605715,2.5114466666666666,3.151393333333333,2.4705966666666668,2.3200600000000002,3.3831,1.5372033333333333,5.312674166666667,3.7359666666666667,1.5767075,2.8423466666666664,1.3219,1.5015625,7.5195,6.0966,3.416775,3.96504,5.348190000000001,1.3933414285714285,3.4935333333333336,3.22045,1.79272,5.57775,3.530425,3.88598,1.61064,2.8897225,3.4827,3.966475,5.71615,4.227335,4.425105,2.52315,3.891265,4.4608,2.9606399999999997,1.39951,4.20848,3.3693000000000004,4.172315,4.9365,3.924615,3.56991,4.475835,4.354015,4.23882,4.507465,4.077425,3.2231466666666666,3.87221,4.179205,3.223195,4.096925,3.797015,1.7192224999999999,1.7192224999999999,4.253595,4.868915,5.0395,3.600325,4.73856,3.3678000000000003,2.748525,4.53196,5.2868,0.7077818181818182,5.4333,6.4915275,5.5309,5.64425,1.0488744444444444,3.249365,0.9505466666666668,0.9505466666666668,0.9505466666666668,3.681535,3.448366666666667,2.6573033333333336,3.425133333333333,0.9683379999999999,5.08205,5.3898,2.97067,1.628605,2.083855,4.04514,3.719725,3.822345,3.476584,6.7944,3.593535,2.5262766666666665,4.72941,6.86885,2.480015,4.23086,3.858715,3.178405,5.37425,4.103055,5.03185,6.02865,3.04124,3.6701188888888887,2.10892,2.10892,0.7038572727272727,8.357082,2.09671,5.7997,5.65005,4.09182,5.63065,3.80843,2.9169566666666666,4.64877,7.580965,5.665556666666666,2.5632533333333334,4.3992,0.9804830000000001,3.82511,1.96235,0.8720577777777777,1.2019900000000001,2.59389,2.9686566666666665,2.8519133333333335,1.103457142857143,2.5305733333333333,3.0441366666666667,0.8930366666666667,2.759486666666667,3.11415,1.686048,1.7793880000000002,2.9639,2.9865999999999997,2.7987800000000003,2.45844,1.72296,5.17815,4.350775,3.95722,4.41314,5.2154,3.23193,4.34188,6.33895,5.0786,4.393485,3.86273,10.292231666666666,8.713275,2.87659,3.435185,1.9002266666666667,3.81698,3.34656,4.62401,1.0078016666666667,3.57226,3.395375,1.6104266666666665,3.945585,2.89763,4.345455,2.54882,3.922315,6.26395,7.851286666666667,3.93594,1.5250033333333333,1.5250033333333333,1.5250033333333333,4.703505,1.1796933333333333,1.4613125,0.45473500000000006,4.1650833333333335,2.936783333333333,3.647235,0.9812939999999999,1.16720125,2.98274,4.26817,3.61743,16.53680769047619,4.18594,4.51061,5.8997625000000005,2.727703333333333,3.49181,3.262405,0.9219355555555556,1.34662,3.806945,3.61844,4.495985,4.690195,4.3326,3.903755,2.7123484444444443,3.437525,5.2184,0.5406799999999999,4.58727,2.2944375,4.005025,4.855755,3.489933333333333,2.4541166666666667,4.068843333333333,1.9254666666666667,3.587095,6.23325,3.098883333333333,3.599725,4.302015,4.13916,4.56146,3.9229,3.32937,4.09798,4.7945,4.810305,3.49449,4.47391,3.85969,1.1180885714285715,1.4736825,5.925503166666667,6.2088,4.043165,4.89319,2.496915,2.742566666666667,2.8124966666666666,5.479723333333333,1.8788675,1.906575,2.8889899999999997,3.02556,3.2087800000000004,4.511185,3.19828,4.788953333333334,1.1490525,4.63211,0.9904683333333333,4.06393,3.31374,1.695123333333333,4.680015,0.9408566666666667,4.946125,5.68245,4.99818,4.0196,3.8056166666666664,3.87694,3.006373333333333,5.0895,5.8972,2.833866,4.011365,2.417475,2.60335,1.996175,2.6143,3.22632,5.0076,1.067395,4.4873825,1.3011625,3.34821,1.62733,1.067395,0.19878945945945944,3.740105,2.996175,2.2915675,2.0285333333333333,2.69957,1.0776175,3.991695,3.64577,4.826825,2.6034666666666664,6.1149,6.4162175,2.695766666666667,3.4583666666666666,2.64364,0.788924,2.39128,6.101,3.97021,5.6542,4.736445,2.11044,1.1908933333333334,3.964295,1.60921,2.2453375,1.76853,2.612675,1.6751425,1.920985,2.059895,2.088,1.860975,1.4218557142857142,1.3710325,1.9335725,1.809005,2.1756175,2.3128866666666665,0.535712,1.0376400000000001,2.907833333333333,3.28093,1.96614,1.9382400000000002,1.5796675,3.584055,2.223946666666667,2.65081,3.028155,5.7035,3.697765,2.991896666666667,4.164805,1.6217367647058825,3.7559075,23.274622,4.666873333333333,5.9522,4.105155,2.5393733333333333,3.956455,4.72014,2.27398,5.04145,3.2193666666666663,0.78405125,3.089555,4.472255,3.785685,4.112475,1.54248,2.041113333333333,2.466813333333333,2.274685,1.5133285714285714,3.3524,4.963685,4.273475,3.331065,3.82907,4.93398,3.508345,4.670835,1.239405,3.20024,4.174665,5.01215,1.8272400000000002,3.3211166666666667,1.7949362500000001,1.7949362500000001,3.56618,4.774645,2.84001,2.9683466666666667,3.89724,3.78437,6.644309999999999,4.74551,2.272585,1.34662,2.79503,4.30405,3.1865666666666663,2.5643844444444444,2.5643844444444444,3.2663533333333334,4.91871,3.71831,5.1854177777777775,2.231025,3.2984006666666668,0.6266633333333333,0.6266633333333333,0.6266633333333333,3.488795,3.79578,3.931451666666667,5.69935,2.1371575,4.52138,5.1774,4.809055,3.303425,5.5603,2.689055,1.3064285714285713,4.077175,3.846775,0.472045,4.163566666666667,4.70937,1.4387616666666665,4.91455,5.1727,4.672915,4.37924,3.67281,2.85256,4.298585,1.6997779999999998,4.337375,1.5051383333333332,4.147755,5.9292,1.1165925,2.941115,6.795645,3.75573,3.1434599999999997,2.18909,3.74337,5.7618,3.009793333333333,7.836145,4.1221,2.20567,3.0594933333333336,2.7469466666666666,2.5431766666666666,2.7260233333333335,1.8797,4.544895,0.60787,1.88577,1.88577,3.071195,3.68288,2.2812175,2.99442,4.088575,5.2215,4.36208,1.40881,4.479075547619048,4.281785,4.842595,3.601245,3.9714441666666667,3.5157015,0.4557426666666667,2.7848557142857144,1.05436125,0.4557426666666667,4.37742,0.8395177777777777,4.16209,3.89305,6.659152,2.1263833333333335,1.051425,1.1464539999999999,2.323125,2.85566,1.6846933333333334,2.4973533333333333,3.276625,3.635515,2.1045066666666665,2.3269366666666667,4.28111,3.0101075,4.07534,5.92395,3.47274,5.02235,6.73948,4.35937,3.61552,4.41485,3.786195,4.26211,5.0527,5.6466475,5.38725,2.341423333333333,0.9374544444444444,3.472815,3.860445,4.147345,4.342875,4.146515,5.21675,2.51967,2.517333333333333,3.0828633333333335,2.2436366666666667,2.04259,2.9892366666666668,3.071493333333333,2.4411566666666666,3.74893,4.931655,4.188475,5.2298,2.6118833333333336,3.4149333333333334,2.8927,0.7151,4.006845,3.524405,4.41163,2.855116666666667,5.294506666666667,3.25176,4.541055,3.92349,0.5811084615384615,0.5396878571428572,4.27957,2.8059195,3.204615,4.53695,4.007755,1.65933,5.28675,3.927255,2.5960733333333335,2.5608833333333334,2.2713075,2.13262375,3.5023999999999997,3.1410766666666667,2.98275,2.95297,3.503933333333333,2.5844,3.0719733333333337,3.6528333333333336,4.307370000000001,0.546166875,0.546166875,0.546166875,3.2677812083333335,3.480866666666667,3.4979333333333336,2.68084,2.9246533333333335,1.09282,2.9121433333333333,3.0211966666666665,1.828345,2.5551566666666665,2.44301,0.9685055555555555,2.7713349999999997,4.72469,9.734107916666666,1.4326376666666667,0.573264,3.75668,0.573264,0.573264,0.573264,0.573264,2.1571175,4.0169845,3.78681,5.0491,6.0528,2.8030833333333334,2.6964566666666667,2.9121625,3.25162,4.758145,1.0140200000000001,2.269886666666667,3.1324233333333336,2.5985633333333333,2.9941833333333334,3.337725,2.2055933333333333,2.4465,1.1678444444444445,4.930215,2.49606,3.392245,0.9217125,0.589118,0.589118,0.9215653478260869,1.843277847826087,0.9215653478260869,0.9215653478260869,0.33745434782608696,0.33745434782608696,0.9215653478260869,1.4691833333333333,2.41628,3.023095,2.9637,2.5625666666666667,2.58632,3.20988,2.7905599999999997,4.48553,3.66071,1.9225,2.3084166666666666,1.8119925,0.18089995397643593,0.18089995397643593,0.18089995397643593,0.18089995397643593,2.4920466666666665,2.44983,0.967258,5.0188,0.7763072727272727,1.6731580000000001,4.602163333333333,5.2323,4.26909,3.16928,4.382465,3.42203,1.7142133333333334,1.2959625,3.71131,4.533775,6.3032,2.338505,1.4033766666666667,1.9612766666666666,2.9731,1.4571666666666667,2.8124300000000004,2.88861,3.2194933333333338,4.39748,4.02332,3.075,4.969055,2.5461266666666664,4.069935,5.06815,3.881745,4.19213,4.453315,5.355016666666667,4.737328333333333,2.9253934285714287,4.9309666666666665,4.381385,6.6085,4.483905,4.48188,2.29468,3.031015,4.2251,4.83797,4.46957,3.969505,3.95161,4.088185,3.909785,2.4665733333333333,5.37385,3.535225,7.5659725,6.04445,5.8338,4.915355,1.4318000000000002,0.976841,0.6403623076923076,1.777536,4.8207,5.3396,4.002205,1.597044,4.048335,3.092335,5.023,5.3739,6.197921,4.14609,3.07698,1.611672,5.3403625,4.01228,3.254275,1.8017775,0.93128875,3.861535,3.6753,3.6368975,3.63769,2.2082,4.41937,1.71682,2.959403333333333,2.45011,4.697525,6.06835,4.89582,2.2296175,1.7277,5.66915,2.9003333333333337,8.73398,2.76795,5.35635,5.934,4.51833,5.45105,3.60793,5.0115,2.1280425,3.89985,4.846961,2.4467075,4.20123,4.48056,7.133915,5.0088,3.11227,4.05473,3.874435,3.0101075,3.572025,5.0962,5.6889,2.3635325,2.9983233333333335,3.2581333333333333,2.341415,2.56334,4.254025,5.70235,4.989225,4.595955,4.923215,4.23786,4.71128,0.6327207692307693,3.1447033333333336,1.2121099999999998,30.997260977829537,2.529665,4.62824,2.683515,4.48753,1.61876,2.45379,3.104830595238095,1.5704180952380953,1.5704180952380953,1.5704180952380953,1.5704180952380953,1.5344125,3.336915,0.3651155555555555,7.774741388888889,0.3651155555555555,4.034025,4.729415,1.9923225,5.2901,2.835,3.9843273333333333,2.3681766666666664,2.2896633333333334,2.754016666666667,2.21373,0.6285900000000001,2.6557633333333333,0.7348716666666667,3.2511766666666664,2.18822,2.4805580000000003,1.2060366666666666,2.4805580000000003,6.26155,8.029555,4.571135,4.436625,5.70045,6.2774,7.467961666666666,3.128915,1.4777225,1.4777225,2.31726,5.0256,3.718325,4.452845,6.026775,3.97914,2.690645,3.900885,3.40927,3.550815,2.1338,0.848048,1.79474,3.791225,4.238185,5.144736666666667,2.0276,3.738925,1.212802,3.243045,1.258816,3.4614333333333334,2.9491266666666665,3.2527666666666666,3.3787000000000003,2.9072266666666664,4.79616,0.7142915384615385,3.53082,3.6287333333333334,2.67159,2.3765033333333334,4.15955125,3.368,2.100103333333333,4.57361625,3.497355,5.18605,3.96949,3.62819,5.73815,5.04365,2.10757,5.63995,2.37404,1.7890966666666666,3.1052999999999997,2.4999333333333333,2.988766666666667,2.50433,1.8765933333333333,3.2894731060606057,4.178235,3.32484125,2.4105119999999998,2.4105119999999998,2.656205,3.92563,4.09327,0.6148763636363636,3.43655,3.230305,8.7948,0.8476672727272727,4.491815,3.553295,5.42905,3.38744,3.836225,2.28912,3.886805,3.0509,5.4432,2.7004908333333333,3.877065,2.674046666666667,3.690335,2.64882,3.649255,3.70858,3.90239,5.277502,3.31482,1.991735,5.21415,2.5641633333333336,4.264135,4.7001,4.618615,4.48827,3.99804,2.9765,2.2130633333333334,2.86984,2.586533333333333,2.789075,3.2007999999999996,2.7954680952380953,4.900401666666667,2.909936666666667,2.46325,6.5038833333333335,4.93939,3.70632,3.1238466666666667,3.7502,4.13102,3.55867,1.844015,3.6542399999999997,4.934945,4.810435,1.3758566666666667,3.88117,2.6865366666666666,6.993892499999999,4.714145,8.715235,4.20842,3.51487,2.16894,4.22641,5.6008075,7.81814,4.49598,5.67658,3.77295,3.33298,3.93194,1.7352139999999998,4.294113,1.41884,3.64896,4.668805,3.442,0.8159516666666667,9.430412,1.1912777777777779,1.9304175,2.4293033333333334,1.94636,3.4268,1.379145,3.592755,3.77428,2.436453333333333,4.310545,1.295315,3.568265,1.39755,3.082949,4.034445,4.591545,1.499625,5.900613333333333,2.594022333333333,7.96396,4.42541,2.886435,4.02628,3.43215,1.2702108333333335,7.55893,3.02848,3.3278,2.474325,4.154155,2.11407,3.1111725,2.36422,4.041185,1.3672975,5.4624,2.624375,4.17041,0.783934,1.984864,3.78666,4.9488,5.1732375,1.3726720000000001,1.3726720000000001,5.78995,3.712815,5.8447,3.7749,3.41078,9.312619999999999,4.5033,5.46185,4.037895,2.4237175,2.1350118986175115,0.360951,0.2021316129032258,0.6658749462365591,1.1081859523809523,0.6820658986175114,0.2021316129032258,1.341501,0.4637433333333333,1.4691369523809523,2.007375946236559,1.9851325,2.2521075,2.2379966666666666,5.14125,6.305196666666666,4.95102,5.21965,4.509575,5.02615,1.20166,4.939735,3.926245,5.3568,4.868475,5.1765,5.47605,5.96645,5.51675,1.2135066666666667,1.2424785714285715,1.8510179999999998,6.080731,1.357826,5.21855,4.82946,6.882414166666667,4.73832,5.44155,4.46471,4.655955,2.4755375,5.3999,5.28175,4.42061,4.984985,5.950537499999999,5.63245,3.8012975,4.271345,3.6544666666666665,1.00322,3.5800666666666667,4.401535,1.13067375,3.6002333333333336,4.492865,4.433685,4.807405,2.4787375,3.36146,2.5867566666666666,4.59009,2.1562375,3.704,1.2599266666666666,3.277945,3.8688,3.81856,5.0479,3.370303333333333,0.5901866666666666,5.98855,1.02072875,3.554075,2.8822233333333336,3.720455,2.0769100000000003,3.854225,3.773620256410257,3.1819866666666665,4.38797,15.015118119047619,5.01211,2.1739125,8.53382,1.5257675,3.904825,2.8700766666666664,2.850616666666667,1.8949733333333334,0.21681869565217393,2.9318833333333334,4.350455,1.759638,2.187186666666667,3.2498633333333333,1.8581425,2.308753333333333,1.4962714285714287,3.24121,4.7947,4.837,3.695115,0.44943571428571427,2.3575,4.73487,2.793105,4.05893,4.48818,4.151655,5.60445,0.4730505882352941,2.491303333333333,2.491303333333333,5.08425,5.0949,4.79771,2.589175,3.5272666666666663,2.9195433333333334,5.24605,3.653485,5.5256372222222225,4.589705,4.359015,4.808985,2.61075,1.890446,4.358445,3.9798,4.022735,3.32082,1.798406,4.874145,4.38035,3.837575,4.60082,3.88935,3.919785,0.6157853333333333,3.047405,0.6011558333333333,3.1046833333333335,3.27145,4.3123,17.692176190476193,3.42615,3.7409,2.3778633333333334,0.94122625,2.2775233333333333,2.586253333333333,1.55058,2.32396,2.393475,4.68233,2.2558966666666667,3.8931,4.193405,2.069425,4.429295,2.902903333333333,4.552025,4.502955,5.448,1.67594,1.634105,2.37358,4.570685,4.756255,1.1520444444444444,5.30455,3.804635,5.66535,4.725975,1.71459,4.6181,3.409985,3.507425,3.68616,4.13667,3.16893,0.58090875,7.274991666666667,1.475864,0.20151388888888888,0.20151388888888888,0.20151388888888888,4.825715,3.990025,2.692963333333333,4.166245,2.81113,4.43709,4.417033571428571,4.02707,8.615316666666667,4.12384,6.625344999999999,0.7802325,0.75016125,2.3810575,4.274265,4.19815,2.2185433333333333,5.37775,5.3252,3.496745,3.4628,4.298535,2.2276933333333333,4.85194,4.6565205,2.2992033333333333,2.9406466666666664,3.0102166666666665,2.6734,6.10115,3.712685,0.6542450000000001,3.651765,3.198525,4.20769,4.897506666666667,4.94421,2.83876,5.3985,3.610565,13.321771666666667,4.616825,6.8375705,2.426223333333333,6.420842,4.33097,3.91698,1.9778975,2.2542766666666667,9.298,2.23297,4.3056,4.1819999999999995,3.7535333333333334,3.3645333333333336,2.86577,2.09016,2.2554875,3.0236966666666665,1.7725560000000002,3.8539,2.3322966666666667,2.6662966666666668,3.362133333333333,3.5797666666666665,2.43002,2.43002,2.3899466666666664,3.4381,3.2865533333333334,2.1912066666666665,3.15195,4.1508,2.7532833333333335,2.881353333333333,3.8252666666666664,2.291166666666667,2.0134525,3.8611,2.9371466666666666,1.4615019999999999,3.6628666666666665,2.1147233333333335,2.44896,2.8229433333333334,2.21335,3.3776333333333333,5.67371,2.411986666666667,3.851766666666667,1.87174,10.211673333333334,1.91521,1.8817599999999999,2.1288,1.0013866666666666,1.63068,4.256576666666667,2.657026,2.657026,1.616612,1.5341500000000001,3.583641666666667,3.7652183333333333,2.1636633333333335,1.5225766666666667,1.653742,4.629758,3.5616333333333334,4.0765666666666664,8.369783333333332,2.9400971428571427,2.50725,3.27755149068323,4.266133333333333,2.0134525,3.2798966666666662,2.6320633333333334,3.4204000000000003,3.4377775,0.9382375,3.214415,2.848043333333333,2.8711566666666664,3.92954,3.2339333333333333,0.6876863636363636,1.8032254761904762,5.25275,2.573749,3.3358666666666665,1.6257366666666666,1.6257366666666666,2.0947675,3.81487,0.9222250000000001,2.2443325,4.4641633333333335,4.4641633333333335,0.6515285714285715,5.530476999999999,3.35672,3.924555,4.609235,1.2192457142857143,3.2618766666666663,3.5513666666666666,5.153040000000001,5.4767806666666665,2.2515566666666667,0.6576679999999999,2.54411,2.616703333333333,2.9894406666666664,2.246093333333333,2.3416466666666667,2.9557266666666666,2.2719025,2.4973666666666667,0.7578054545454546,4.832515,4.808827428571428,1.2383216666666665,1.7355714285714285,5.48115,2.09344,1.70947,3.970095,1.45742,3.53789,2.584175,3.5633,8.9172725,4.3647875,4.47877,5.01875,2.3410494545454545,0.790824,1.963844,6.92316,1.7721600000000002,4.144685,3.7156,3.51006,21.1517245,3.1683066666666666,1.4112,1.07921,3.0983699999999996,1.4525033333333335,4.295342,5.07955,3.2941925000000003,3.3524333333333334,2.0067933333333334,1.4613016666666667,2.7397533333333333,0.570675,3.5668666666666664,3.785933333333333,3.1046066666666667,2.5135086666666666,2.5283533333333335,2.840593333333333,2.03077,3.033193333333333,1.578558,3.763733333333333,1.4349066666666666,3.918565,3.908985,2.6429300000000002,5.38435,3.197085,4.03449,4.967285,4.512385,3.1017733333333335,2.8442333333333334,2.323663333333333,1.0489814285714285,1.0489814285714285,1.0489814285714285,2.319275,3.5424333333333333,2.616283333333333,2.6025566666666666,2.274363333333333,2.02422,3.84763,4.94747,3.79057,6.469955,3.14195,2.36548,1.9385775,0.9320966666666667,2.4396666666666667,4.071615,2.47065,2.6620333333333335,2.4184266666666665,2.411233333333333,2.5488233333333334,2.8457500000000002,2.887363333333333,2.7232233333333333,2.2362800000000003,3.3953666666666664,2.14932,2.126825,1.68702,1.8795025,3.0119866666666666,3.071403333333333,2.0455425,3.924425,5.11275,2.9061866666666667,2.483408269230769,5.617143333333333,3.97777,4.694795,5.60005,4.51087,4.367835,6.241845,1.2262425,4.24698,2.67088,5.22775,5.03905,3.655425,3.573565,2.199385,7.715730000000001,2.22052,0.8186233333333334,7.8055,5.38247,5.586002142857142,4.50629,2.90816825,1.7138725,4.926395,4.30936,4.218145,5.0548,2.479035,4.123625,4.258585,1.8119925,3.92536,2.863725,1.3444099999999999,4.537585,0.6135647058823529,3.876106666666667,3.57674,4.60981,3.03504,1.814575,3.398835,2.007395,1.475325,2.831796666666667,3.039756666666667,3.25418,7.295457307692308,1.7623025,6.2770875,9.51634,5.9871,2.97424,1.3399442857142856,2.9091166666666664,1.3399442857142856,2.8671100000000003,2.20744,0.2619094117647059,1.0957356617647058,0.2619094117647059,0.2619094117647059,0.2619094117647059,1.0957356617647058,1.0957356617647058,0.2619094117647059,0.83382625,4.07443,3.46229,3.188715,3.24012,3.484865,4.39913,2.7900936666666665,1.6562360000000003,6.592186666666667,2.99154,4.15665,2.651736666666667,1.041609090909091,1.2034075,4.46394,3.48737,1.1092077777777778,1.44596,0.7299563636363636,2.982450681818182,4.15243,4.9627,3.4388666666666663,5.366163333333333,0.5616823076923076,4.01161,2.89984625,2.897133333333333,2.511343333333333,3.5187666666666666,2.458626666666667,2.8471333333333333,2.681696666666667,2.96044,3.49926,4.590165,4.541,2.1316800000000002,4.97341,4.3551,2.963105,3.931995,3.360375,0.32561066666666666,4.94169,3.52619,3.02503,3.004828,4.44339,3.90213,1.901515,3.19546,3.90359,8.214925000000001,4.92561,5.39055,4.6667,4.2388224999999995,1.0210925,2.12819,2.12038,1.37046,1.8083666666666665,4.377455,5.26735,4.063395,4.972255,3.476584,2.6073066666666667,0.92511,3.980035,1.2257466666666665,1.1121733333333335,3.350665,3.70579,4.520255,1.2597125,2.53736,8.815150000000001,3.2058,3.108938333333333,0.844045,3.759445,11.993553333333335,3.434185,4.040995,3.203595,2.90949,4.50355,4.96663,2.0299199999999997,4.300285,0.5434276923076923,4.698655,2.1855225,1.629375,1.629375,3.5030666666666668,4.295905,1.5360766666666665,3.93191,1.2968028571428571,3.63355,2.7952483333333333,3.31231,4.909485,3.564245,3.8469056666666663,2.644525,2.734668166666667,2.734668166666667,10.75347,0.723442,2.91997,3.188523333333333,2.126135,1.9875625,0.8776285714285714,1.4341475,1.1081514285714287,1.96903,4.66548,2.39095,4.2557925,2.025326666666667,4.39787,3.9486,1.6987500000000002,2.0511825,1.071715,6.101139000000001,1.99221,2.214095,1.630736,1.8156500000000002,1.07921,2.3475333333333332,3.553725,2.0515933333333334,3.1917333333333335,2.4698100000000003,2.72505,1.78943,3.1299266666666665,2.5108566666666667,1.89985,1.8854833333333334,2.627403333333333,2.8803666666666667,2.35533,1.1477266666666666,2.5434433333333333,2.11173,2.4519100000000003,0.31109684210526317,0.4179916666666667,2.3717533333333334,2.2193166666666664,3.004295,3.0712666666666664,2.845025,4.778095,5.2166,4.41676,4.5164,4.25732,4.01216,2.8824533333333338,3.80053,0.7081981818181818,0.07239295454545455,6.9768,0.07239295454545455,3.5019,2.96716,5.3053,3.633595,6.235,4.53005,2.0423633333333333,2.4616833333333332,1.0188,5.09,6.1031,3.5157666666666665,5.11645,1.85345,3.57374,1.958486847826087,3.054543333333333,3.2213666666666665,3.90918,4.9625666666666675,3.31045,2.179046666666667,2.179046666666667,4.08801,7.38238,3.482655,2.2089466666666664,2.3935233333333334,4.155735,3.022655,4.87826,3.42252,1.0062322222222222,4.090145,2.42923,2.6929166666666666,4.19712,1.1208483333333332,2.392,3.874345,3.46054,4.736575,2.968225,2.798745,3.91641,3.97495,4.25486,4.847885,4.1093,3.1716011111111113,3.82897,2.8915,2.675456666666667,2.5783566666666666,3.8806,4.26644,2.9968533333333336,4.9589225,4.123085,3.750605,5.34605,4.373425,3.523235,1.466604,1.43159,4.12692,3.4578,1.5678766666666668,2.80226,3.289385,3.0852533333333336,4.032886666666666,3.2179533333333334,2.1802924999999997,12.532698916666666,2.393946666666667,1.8054459999999999,4.637535,1.029622,3.112626666666667,3.64942,4.66218,3.23627,1.1998444444444445,2.3009666666666666,2.6034666666666664,1.52004,4.03595,0.9282,0.9282,3.3531233333333335,1.46295,1.8901733333333333,1.7404625,3.06796,5.28595,2.157995,2.97838,3.282201666666667,2.6963333333333335,2.787763333333333,2.0140000000000002,6.162,5.2026,3.628455,0.6815800000000001,3.652225,3.326095,1.0615545454545454,5.47195,3.4359,8.4823,4.822425,4.69668,3.580835,1.4741775,3.20232,4.79756,4.521845,3.83714,3.378935,4.291175,3.54001,3.5079,3.5079,4.377025,2.6882791666666668,3.80949,2.00066,5.373116666666666,5.147366666666667,1.4387616666666665,4.496515,1.0211000000000001,5.7098,3.95522,4.832315,4.59702,4.02921,2.628525,2.4390175,4.377835,4.20949,4.9527,4.109825,1.9226375,1.395014,4.42819,2.0925033333333336,5.3988,3.03546,3.5711,7.644875000000001,3.8532,4.37691,5.09955,3.73752,4.41258,8.27566,3.880915,3.044685,9.07676,3.580085,0.5855385714285715,2.026241562881563,4.417255,0.596628,4.673705,3.969395,4.59718,4.396225,3.370535,3.59343,4.45906,4.734665,2.75885,0.6882171428571429,4.66247,4.36414,4.38417,4.106275,2.84702,4.48265,3.38517,0.611732,3.3545,4.03692,2.540225,3.1538633333333332,3.868515,2.2004525,5.48095,5.2011,3.792735,3.1729000000000003,5.663470833333333,5.663470833333333,8.647756666666666,2.0921,0.88460125,0.88460125,23.556338333333333,2.586125,7.631528333333334,0.34099250000000003,1.30285,3.0117666666666665,0.9696450000000001,3.713915,3.663385,2.0988275,2.0988275,4.08024,5.0463,3.594545,2.7193,2.7193,3.62631,4.227305,3.78022,3.5368333333333335,2.0048066666666666,2.5638816666666666,3.8975720000000003,2.04915,3.637705,2.7649666666666666,2.6989946428571425,2.6989946428571425,3.3584666666666667,0.8395577777777778,2.4663133333333334,1.7198933333333333,3.197953333333333,2.7939933333333333,2.760873333333333,2.4844500000000003,4.463815,2.447745,3.0329866666666665,5.315811999999999,1.2753299999999999,2.23387,3.082095,2.6241533333333336,4.21484,5.525803,1.3528766666666667,3.8122333333333334,2.428705,5.22483,6.2944,1.42566,5.06175,4.850136,3.1679717142857147,4.6224,1.0056328571428572,1.8272400000000002,3.04288,3.8665885714285713,1.2541583333333333,2.3576975,1.83179,1.717648,2.23406,3.5589399999999998,5.187545,1.0834633333333332,1.4336142857142857,2.9791399999999997,13.26289,4.535216666666667,2.6669,1.1431814285714286,2.5345066666666667,0.9873500000000001,3.18168,4.324805,4.86359,3.4811,5.4754,1.497095,3.6801333333333335,4.176805,2.8066133333333334,3.849886666666667,1.7813533333333333,1.1159333333333334,2.5368,2.90051,7.002606666666667,2.850106,2.4865866666666667,0.723271,4.7571,3.599133333333333,1.084576,5.7130375,2.0333375,2.3833033333333336,5.4808,1.2363666666666666,2.92053,0.9915272727272728,2.947673333333333,4.21842,2.89319,2.96982,2.290696666666667,2.4681466666666667,4.481455,4.736055,5.0274,1.719075,4.47008,3.902815,4.2823199999999995,3.341806,2.4983566666666666,4.048888666666667,0.972082,2.759969523809524,4.592045,2.73125,4.021695833333333,1.289425,2.9789266666666667,1.956314,1.956314,7.33474,3.172093333333333,5.4209233333333335,3.4559450000000003,1.8069300000000001,2.6871823809523807,4.5612483333333325,5.68505,8.773683333333334,4.757239333333334,2.65764575,1.7640266666666669,1.9013203333333333,4.03322,3.86808,1.458242,2.011735,3.043469464285714,1.0830325,3.0541366666666665,18.759608333333333,2.994866666666667,2.86942,2.8355200000000003,2.8985766666666666,2.3438466666666664,1.9771433333333333,3.068296666666667,3.6203000000000003,2.57543,2.62163,5.497148666666667,2.4127033333333334,4.950107428571428,2.8811854285714285,2.7995274285714284,1.38877,3.7448155555555553,2.0896175,3.945545,4.91707,3.914015,3.13491,3.147156666666667,2.2394433333333335,3.4567666666666668,3.5127666666666664,3.239786666666667,3.3064766666666667,0.83901,5.2951,2.35052,3.1126199999999997,2.816645,1.85572,2.1175329166666668,2.1175329166666668,3.2348679166666665,1.84670125,4.79478,4.16229,3.5897,4.2886,4.765165,4.48698,4.48698,3.98266,2.8865266666666667,4.719755,2.80644,1.629034,2.1277933333333334,4.487565,3.997105,2.72985,3.73945,5.342715,3.6970666666666667,6.237512892857143,3.289265,0.897494,0.897494,3.385385,4.711455,3.75254,3.368764,2.41124,1.7925033333333333,1.62536,2.9349666666666665,5.975480000000001,1.4374633333333333,4.2399,3.633266666666667,3.919575,5.1357,4.882825,4.742597895833333,3.2138833333333334,2.31756,4.13041,4.19682,2.0609875,1.1380620000000001,3.929085,2.653175,6.128541666666667,3.4753666666666665,2.6218,3.233115,3.7047,3.576705,4.652575,3.10103,4.5235,3.759755,4.3086,3.67065,3.59008,3.44753,3.717315,2.76158,4.54285,3.097,5.05275,0.5898311111111112,2.34439,1.7948375,2.148505,1.8721925,2.7360966666666666,2.55174,1.6588766666666668,4.26649,4.91116,1.8182099999999999,3.705015,4.37833,2.3763225,5.968126666666667,3.9542733333333335,4.27619,4.932235,6.997456666666666,1.9325999999999999,2.7325533333333336,1.8708433333333332,2.5868933333333333,1.723095,1.81453,3.997495,3.66043,5.30225,1.0008755555555555,3.100625,4.24754,2.21321,5.26555,3.70618,2.60905,3.7500666666666667,3.37,2.09817,1.816919,2.61115,3.143825,3.370725,1.9392725,2.249201428571429,2.249201428571429,3.593825,3.46495,20.07779363095238,1.1696633333333333,5.325731666666666,1.851065,1.9158266666666668,3.647225,3.34856,1.878145,3.81583,4.6165,1.2890183333333334,1.2890183333333334,1.24452,1.7359900000000001,2.1973966666666667,3.1746966666666663,4.589528333333333,3.41764,3.4148333333333336,0.49025052631578947,3.4102271929824566,2.0479933333333333,2.20982,4.5463775,3.445525,4.01187,3.550875,4.471065,4.511845,2.060115,3.63743,5.5308600000000006,2.22556,3.48365,4.87431,2.29244,4.81403,6.19045,1.3438042857142858,1.878858,3.5779,0.6831085714285715,3.2190366666666663,3.213295,4.791025,4.928375,2.781468333333333,7.704828333333333,2.9425933333333334,2.8151733333333335,0.43789823529411764,4.26775,5.249280238095238,3.059627142857143,5.3783,3.81136,2.4935128888888887,1.699466,5.26395925,4.26105,4.14764,2.9036,1.979255,3.527295,4.0992,2.9842566666666666,1.9427825,3.9867925,5.826875,2.781505,3.85439,3.58529,4.09975,1.576957142857143,1.576957142857143,3.1747300000000003,2.99452,4.558915,4.61599,6.6838,3.589595,2.758925,2.1437175,1.5216399999999999,1.3617885714285713,4.871055,5.5071,4.959615,5.8562,4.407175,6.329375000000001,3.41908,2.8252,3.92718,2.114053333333333,3.00805475,1.605248,4.420905,2.3483033333333334,3.777525,5.01495,4.077755,2.7722700000000002,2.9003333333333337,1.3429685714285713,2.43308,3.7411999999999996,1.86273,0.62513125,3.116706666666667,2.5797066666666666,2.4411566666666666,2.2772633333333334,2.0178375,1.55386,0.7003718181818182,0.7003718181818182,3.5551666666666666,1.763825,2.3126225,3.20388,5.5183,3.95891,6.1271,4.258025,4.324725,2.1264133333333333,1.24448,2.467575,4.550685,0.960255,3.392775,3.031045,2.848915,2.244065,4.125345,2.839345,2.0496433333333335,1.057337142857143,3.60073,9.04816,3.389925,1.5412785714285713,4.15834,3.42081,2.655145,3.529175,2.779875,1.77288,1.04336,3.62625,2.4381766666666667,2.3270500000000003,1.6185600000000002,2.17589,2.2331266666666667,2.4711266666666667,2.82124125,1.2889433333333333,1.8672666666666666,1.0423175,6.2693475,5.83705,5.7462,3.920185,4.16949,2.9695966666666664,1.6489435897435898,4.633105,5.06365,2.506995,5.1452,2.13997,4.62889,0.9299444444444445,4.032135,3.97637,1.912415,7.78858,3.559295,1.8522,1.8614875,1.779905,2.4519975,3.4228666666666663,1.2343995454545456,2.9620200000000003,5.7069,3.41354,3.977345,5.49315,5.4037,5.64235,0.905315,4.196715,4.48991,4.201475,4.830965,3.9968683333333335,4.62732,4.765845,2.997005,1.5752366666666668,1.5752366666666668,5.26775,5.507145,3.547745,2.63123,3.890055,4.545175,1.491612,3.994135,5.20355,3.529975,3.93803,2.9434233333333335,2.8493433333333336,4.936585,2.51898925,10.613333005376976,1.9245666666666665,0.781825,2.6274366666666666,1.68151,2.6196,2.1536375,1.886204,2.7995,4.866335,5.45045,2.921253333333333,1.62537,6.173403095238095,1.460942857142857,2.8665533333333335,0.5216619047619048,4.059326666666666,5.5336,3.40018,4.882405,11.4062,5.30245,3.0394900000000002,3.4484333333333335,4.210435,2.985136666666667,4.667745,0.87176875,1.0212999999999999,0.8013290909090909,5.64185,4.129675,1.828884,4.790151333333333,4.59143,6.6442,4.845085,4.98501,4.46982,6.0149,3.89845,5.22625,3.46987,1.20676,3.888865,5.28785,2.675125,3.994685,2.678155,2.59025,1.2337675,5.13545,3.964705,1.2902375,3.4889666666666668,2.9499033333333333,2.5043966666666666,2.485533333333333,2.5109266666666668,3.0800033333333334,0.7063663636363636,2.4781400000000002,2.669506666666667,2.59662,1.9213333333333333,2.83051,1.87468,1.5089966666666665,2.3597975,2.016045,2.027195,3.3047966666666664,2.8818866666666665,0.658926,2.8207466666666665,3.22805,4.721485,2.3508333333333336,3.734895,5.5178,4.94849,3.403835,3.91157,1.29379,3.270145,2.512386111111111,4.295115,2.67749375,4.72805,5.1855,4.66791,4.344825,4.266766666666666,1.11511,1.11511,2.2660053846153847,1.6668,3.98807,2.6084445,2.6084445,4.9912,6.0927,3.01155,1.1878900000000001,1.5795714285714286,5.89895,3.714215,2.181826666666667,3.295265,2.956035,3.152675,2.181826666666667,4.2877624999999995,3.20285,2.9778504166666666,2.849425,1.93063,3.0423,6.7082,3.318395,3.62145,4.59273,6.6607,6.7085,6.628925,6.628925,5.5755,4.850195,0.5303469230769231,5.1544,4.57513,3.046275,2.76275,8.157521666666666,2.6645733333333332,3.99281,3.65747,2.403113333333333,4.47074,2.448305,3.448385,3.0045366666666666,3.3718,2.58602,1.5646879999999999,1.5646879999999999,3.593585,3.800595,4.72718,1.744818,1.49525,47.335952727272726,2.594273333333333,0.8515527272727272,3.1258199999999996,1.80596,3.1967833333333338,2.8224933333333335,2.9981899999999997,3.02008,2.6527333333333334,2.0858266666666667,1.0344425,4.46385,3.26798,3.50089,3.781015,5.0795,4.928225,4.96064,5.23775,5.33635,4.759515,5.53725,6.1085575,5.04135,5.4793,2.0864975,3.84497,6.64075,5.27485,3.473715,3.99432,3.20033,2.35036,3.853065,4.509155,3.0225566666666666,4.024166666666667,1.64807,4.182715,1.346398,3.28384,3.87603,3.68173,6.482015,4.130135,1.8858525,4.08498,3.8613,4.03659,0.9100425,2.834135,2.92354,4.392544642857143,1.12904,4.59479,1.32315,5.698,0.7453688888888889,4.014234,10.035435833333334,4.39978,3.418765,3.155085,1.8833666666666666,4.102555,5.3268,2.9770066666666666,4.43538,9.123363333333334,3.4765333333333337,1.9637766666666667,2.7426999999999997,2.72801,2.7129433333333335,2.7167005,3.0061533333333332,2.5758233333333336,3.114133333333333,2.6663799999999998,3.12519,3.37596,2.25545,1.8457733333333335,4.833046666666666,4.027299999999999,2.57388,4.951979333333333,2.7412166666666664,1.014345,2.1812275,2.9974600000000002,5.230493571428571,2.89475,2.1008322222222224,2.1008322222222224,1.586735,1.6808075,2.18512,1.9499220000000002,5.727885,4.3745625,1.8989125,3.0383866666666663,3.704,2.075585,0.6367016666666666,2.64864,1.939725,0.5617453846153846,3.92233,2.470155,2.507,3.60986,3.5187204999999997,2.37623,1.6137733333333333,1.1206316666666667,2.108685,3.704145,3.651575,4.12223,2.79323,3.970395,3.69127,1.065109090909091,9.63898,2.698005,3.36251,1.269475,2.792783333333333,2.366685,2.366685,2.366685,5.0884,5.42005,1.5322,5.07425,1.4464000000000001,5.386056666666667,1.5472,4.071635,4.28053,4.02772,5.06995,4.40698,1.88287,8.7446025,4.000345,5.04425,3.550595,3.98241,3.1948666666666665,3.064416666666667,3.833705,2.56786,4.168053571428572,4.42854,1.5834425,3.89267,1.5834425,3.342195,4.4386275,4.97287,4.4386275,1.8057566666666667,5.71385,4.618345,4.334805,2.6888400000000003,2.9676566666666666,4.225355,3.190755,5.384,0.4979085714285714,2.910156666666667,3.023016666666667,5.031045833333334,4.718875,2.4165975,4.825575,5.77327,3.42979,3.05763,2.95594,2.18405,3.9298,3.811575,4.64917,2.367405,3.79613,0.855344,5.6649,3.39114,4.24792,2.3820666666666668,3.0911233333333334,2.3281300000000003,2.8567633333333333,2.7350733333333337,2.7830066666666666,3.003205,2.41545,2.41545,4.364190000000001,2.822415,4.708775,11.4404025,0.9506088888888888,4.424355,2.51293,2.38468,2.668763333333333,1.4613125,7.322689333333333,3.358333333333333,3.537155,3.6059866666666665,2.43052,3.9331333333333336,4.134611722222222,1.9599933333333333,0.4263411111111111,1.459584,1.504255,4.876955,2.831985,3.18026,3.6881575,3.457233333333333,2.29073625,4.94197,4.487835,3.772045,4.625655,2.16808,3.856945,2.5685533333333335,5.423943333333333,3.219125,5.1224,4.098105,3.83533,4.28824,2.03519,3.836615,3.644075,3.161543333333333,3.54668,2.668015,3.236255,3.96576,4.159805,2.571473333333333,4.42405,1.3027433333333334,3.694195,2.84443,3.97766,4.21245,3.69432,4.7193,2.459355,4.038635,5.31245,4.09835,3.160266666666667,2.20002,3.03799,2.36638,0.8721966666666666,4.596385,2.03632,3.4489,2.68848,4.054935,3.374375,3.04045,3.085935,4.110775,4.494196,4.082065,2.835075,1.5416233333333331,3.657685,2.432305,0.92993,4.218755,8.82506,3.357665,3.62821,3.821195,5.0977,3.77604,2.1601,4.022005,3.99681,3.225105,3.27882,3.7624,0.64239,1.23636,6.2853725,1.6596525,2.66463,4.885464,2.4787375,2.283125,2.653775,7.49511,2.611825,4.04118,3.750195,0.7711055555555555,3.461345,2.60934,3.86486,3.785865,6.192466666666666,0.671852,3.26194,9.54473,3.200605,1.0479166666666666,5.06940625,4.663935,5.27165,4.25431,4.675735,3.111365,2.5383566666666666,7.160195,0.803428,3.54153,4.039375,3.273245,4.12173,2.33197,4.148945,1.6964666666666668,4.308775,4.070165,4.070055,1.6913175,4.631275,4.44928,2.3482475,2.169905,2.234,1.084576,4.16795,3.2941925000000003,1.446958,7.933305000000001,5.6949,4.581495,4.23198,3.406415,4.357985,1.4821857142857142,4.25995,3.95249,5.23245,3.805785,2.4611300000000003,6.507784722222222,1.1827075,1.1827075,2.5776033333333332,0.9083957142857143,4.127195,2.9513866666666666,1.0261625,1.7488866666666667,0.41323916666666666,6.02957,1.0105175,2.746715,3.662785,4.036985,3.79258,4.086575,5.494,5.5922975,3.279065,3.181565,2.472125,3.836795,4.339585,4.19901,3.85809,3.52935,6.00265,4.25842,4.308455555555556,5.960622,3.68972,3.3149275,2.355275,3.3149275,6.867772,41.26435129112554,3.743285,3.53211,2.8754266666666664,4.375995,4.42589,3.43703,3.56495,3.934125,4.589065,4.112985,1.641585,4.65871,2.786645,4.7,5.1732,4.816815,2.5010033333333332,4.48993,3.81143,3.292835,1.440066,0.6343715384615384,1.790786,3.5500666666666665,2.8670000000000004,1.28185,2.7739166666666666,2.6152633333333335,2.5829933333333335,3.7471,2.9648766666666666,1.397154,2.6812799999999997,3.727733333333333,1.931308712998713,2.87255,3.1825799999999997,2.9110033333333334,2.55621,3.5671,1.1759111111111111,3.575645,4.04359,1.31335,1.31335,1.31335,1.31335,2.8361242424242428,2.0464033333333336,2.461845,3.373465,5.05135,4.82552,4.045985,4.26593,5.49005,4.54677,2.297465,6.0133,4.130395,2.875165,3.96895,3.04423,4.05827,4.17908,0.6982192307692308,1.5013142857142856,1.5694566666666667,4.137755,3.74165,4.59737,3.99402,6.099906666666667,2.2813466666666664,4.189285,1.5719316666666667,3.591025,5.0042,1.5961400000000001,5.06525,0.6862158333333334,4.22312,1.21257,1.12015125,3.672535,3.769515,5.02535,4.88035,6.02345,4.413245,1.506416,4.53876,1.480325,3.66491,2.828885,2.4935128888888887,2.013975,3.40093,1.3178716666666668,3.41175,4.778765,3.0253433333333333,5.87225,119.99609842965369,0.4935044444444444,4.536365,2.3768933333333333,4.782345,4.058305,3.463975,1.54904,0.3232404761904762,2.84579,3.75301,5.24015,3.37127,3.60432,4.276895,4.00383,4.30048,8.422686666666667,0.69028,2.751175,0.97086,10.81858,2.97043,3.545465,0.8939777777777778,2.17565,2.780805,2.0968375,3.211043333333333,3.2478599999999997,2.6692533333333333,4.2877725,2.875576666666667,2.3417499999999998,2.2177166666666666,3.337505,3.35082,3.01668,3.69661,3.79488,3.40958,2.3653833333333334,3.895975,4.291435,3.05692,0.9207533333333333,2.53983,4.2877725,4.456375,5.4553,4.11969,3.865345,1.851625,11.13119,4.740115,2.64989,4.343745,4.961965,0.5386893333333334,0.5386893333333334,4.1619399999999995,4.1619399999999995,3.00746,3.4661333333333335,1.8265454545454545,0.5795374999999999,2.945165,4.25836,4.01871,3.21141,3.92249,5.2964225,4.726155,1.9669725,4.769585,2.177065,2.757115,4.050095833333333,1.792195,2.06484,0.48022714285714285,1.2346911428571428,1.2346911428571428,1.90661,4.26158,4.28953,4.812355,6.510593,2.93334,2.983845,1.87921,2.025445,4.01952,3.741525,4.782193333333334,2.242185,4.782193333333334,4.43635,3.65246,5.90745,3.85549,2.3748666666666667,1.9643899999999999,2.4500699999999997,1.40482,1.3980825,1.5262425,1.884355,1.6491725,1.6881125,3.9479,4.618545,2.551505,6.76345,3.0170100000000004,4.59262,3.38095,4.12675,2.8619566666666665,2.7760766666666665,6.2021066666666655,3.2397233333333335,4.60433,3.09004,1.4059875,2.4924166666666667,2.5121066666666665,2.26816,6.09445,4.4326725,4.601105,12.355948611287834,0.7552808333333334,2.01505,2.1789325,1.601438,1.2859485714285714,2.54425,2.4406325,2.4433925,2.37535,0.7363669230769231,1.9124425,0.5329578947368422,4.556765,1.911145,3.79416,4.438685,2.46707,5.73469,3.975585,7.07317,4.10855,2.85935,3.06633,4.436765,4.84744,2.8010061904761905,4.368345,2.108445,2.108445,4.819025,3.793645,4.120265,4.13804,3.145433333333333,3.7892,4.819305,5.2253,4.765465,4.385285,4.58822,4.18784,2.539095,5.06685,1.144925,4.62334,4.602825,2.54045,2.22794,4.4394,1.4722266666666668,5.156,1.905725,5.879557681159421,3.78934,3.89904,1.6575066666666667,2.985825833333333,2.985825833333333,11.89326,4.083125,4.108175,1.1128575,4.373688,2.342105,1.5125825,2.3284575,1.65196,1.9639575,1.744634,3.002525,5.7748,1.76771,4.84667,4.603511666666667,5.5434,2.15168,2.626305,3.251095,4.328555,5.4986,3.922245,6.990408333333333,3.1536166666666667,2.491163333333333,0.3798038888888889,3.846595,4.3371,3.3317033333333335,6.246513333333334,2.6453666666666664,3.0027000000000004,1.24065,1.6286183333333335,0.62513125,1.459584,3.024275,1.469085,1.495075,0.655725,1.267638,4.711855,2.393465,0.6059646153846153,1.7800833333333335,1.73453,1.6195060000000001,1.2461416666666667,1.8809375,1.6286183333333335,2.4467075,1.267638,1.267638,0.6059646153846153,1.5939857142857143,2.43268,1.2541583333333333,2.669075,0.6059646153846153,2.622525,2.43268,1.24336,1.24336,1.24336,1.8414380000000001,1.21299875,0.6059646153846153,1.1054439999999999,1.11833,1.0013866666666666,1.8229579999999999,2.703425,0.8159516666666667,2.1532525,1.600042857142857,0.6059646153846153,1.80047,1.6286183333333335,2.0265333333333335,1.9357,0.888897,2.0265333333333335,1.0419366666666667,2.3482475,2.3611625,2.39268,1.11833,2.07674,1.3178716666666668,1.3178716666666668,0.8985045454545454,0.8985045454545454,0.8985045454545454,1.24065,1.6286183333333335,1.600042857142857,1.7800833333333335,0.9223,1.9357,1.565718,1.4615019999999999,2.06598,1.24065,2.6669,12.779195000000001,0.655725,2.61494,1.8058500000000002,2.4149125,0.9873500000000001,0.9873500000000001,0.6059646153846153,1.0111977777777779,1.55386,1.600042857142857,1.847392,1.9357,1.1520444444444444,1.1520444444444444,1.6731580000000001,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,3.0225566666666666,1.0419366666666667,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.3709109090909091,54.39342647979798,1.485735,1.5573833333333333,1.600042857142857,1.8058500000000002,0.9223,0.6495882352941176,0.723271,0.723271,0.723271,0.723271,4.326266666666666,15.988832500000001,3.320683333333333,0.5649618181818181,1.587804,1.587804,1.587804,0.5649618181818181,3.024275,0.6059646153846153,1.80047,1.495075,2.55248,1.0419366666666667,2.4165975,1.0419366666666667,1.573986,1.573986,2.11545,2.11545,0.6059646153846153,1.969932,1.969932,0.9318909090909091,0.20151388888888888,3.024275,1.4302516666666667,2.428705,0.5649618181818181,0.5649618181818181,0.5649618181818181,0.5649618181818181,0.5649618181818181,1.8058500000000002,0.3709109090909091,1.0419366666666667,2.14292,2.14292,2.4390175,2.8822233333333336,0.6515285714285715,0.6515285714285715,3.4491666666666667,4.169866666666667,1.2192457142857143,3.3772333333333333,0.997283,2.6176,2.0921,1.1208483333333332,2.85168,1.9250225,3.1729000000000003,5.12345,2.48015,1.1799444444444445,4.020345,4.048195,2.589253333333333,1.789508,2.342692076923077,4.548585,1.7943988888888889,2.7174033333333334,2.962563333333333,3.1245066666666665,2.466025,6.015596666666666,3.891065,0.20151388888888888,2.9109533333333335,4.922435,3.17702,4.52996,4.42832,4.380645,2.7446433333333338,1.7633299999999998,4.330355,4.6582,4.3458,4.621715,5.23095,3.19979,0.7255199999999999,6.7656,1.6144166666666668,2.929542,4.434805,2.575466666666667,2.575466666666667,0.8386254545454546,2.013975,4.77208,3.09892,4.879715,4.326395,4.588665,5.27015,1.0379657142857144,4.937495,5.7038,6.401995416666666,2.25019,4.23027,3.78673,3.93455,3.706415,3.92384,4.27028,6.189725,5.1744,4.341358333333333,3.63749,4.315295,7.3902909999999995,1.916335,2.1063684615384615,2.82556,1.7593033333333334,2.717416666666667,1.8467433333333334,5.1539,3.091673333333333,6.13415,1.9150960000000001,4.964725,4.10305,3.62088,4.4665,3.759385,2.57109,2.7876166666666666,2.6933000000000002,2.6374833333333334,2.5234,1.7051,2.7321833333333334,2.8209433333333336,2.22612,2.22612,4.483915,2.92104,1.9799466666666667,3.0189766666666666,2.10254,2.62365,3.0241866666666666,2.7121366666666664,3.0778700000000003,5.2977,3.96932,3.805875,3.3909533333333335,3.3909533333333335,3.89848,3.2509833333333336,3.882845,4.488605,3.930695,3.3605,3.292235,7.58536,2.1135025,1.98993,3.467665,3.23482,1.4601366666666669,1.4601366666666669,3.46881,1.741525,3.95464,3.746535,3.805285,2.153385,2.024179166666667,0.5879658333333333,3.383705,3.933415,1.77647,2.425225,4.24289,1.3976066666666667,4.578975,1.2102966666666666,0.3789257142857143,0.5285335714285715,21.289077619047617,0.5285335714285715,0.3789257142857143,0.6781414285714287,9.496375,2.7371266666666667,3.54374,4.272115,3.446815,2.781115,3.9829185714285718,2.150755,2.36223,3.72163,3.05985,3.91526,4.3823,3.628275,2.24165,3.11046,3.549395,3.9194,3.06922,1.1021420000000002,1.1021420000000002,1.1021420000000002,1.1021420000000002,3.41735,2.74284,3.21365,1.78731,1.176075,2.430635,3.661585,3.730685,2.836105,3.0118,2.48645,2.7952483333333333,3.985815,4.192355,1.1116633333333332,2.5785266666666664,1.08701,2.5799533333333335,1.5902066666666668,3.6269333333333336,5.02075,2.48236,3.64777,3.892123333333333,0.814341746031746,0.24509285714285714,0.24509285714285714,0.5692488888888889,0.24509285714285714,0.24509285714285714,0.24509285714285714,0.5692488888888889,4.385845,7.423188333333333,3.70387,0.53447375,3.69674,7.675419999999999,3.27774,3.1311733333333334,1.1705966666666667,4.54907,5.20835,4.395055,4.81587,1.6542179999999997,4.722075,2.1920100000000002,2.257564666666666,3.570255,5.26785,0.8057442857142857,0.8057442857142857,3.555175,2.821196666666667,2.081515,3.1472,2.682325,6.7428,2.547685,6.41305,6.0096,5.5833,2.564705,1.85587,3.88208,3.48235,2.18507,3.44399,3.083775,1.7946725,1.14247,4.11025,3.39423,4.897506666666667,5.90104,1.49082,4.01101,1.1325,2.5514566666666667,3.26826,3.87871,0.3950542857142857,3.60981,3.911495,0.898805,2.6096833333333334,7.624901666666666,2.86005,2.297185,5.437103,4.383555,3.792875,1.3502450000000001,5.081686666666666,2.682166666666667,3.025926666666667,3.564833333333333,2.2831633333333334,2.2831633333333334,6.332625,6.332625,3.638067857142857,3.638067857142857,10.5346,3.638067857142857,3.638067857142857,4.328958968253968,6.84445,3.614155,3.5601658333333335,2.93891,4.42362,3.40622,3.3355,3.0193999999999996,4.71578,3.090476666666667,2.70558,3.387866666666667,2.3360499999999997,2.678265,5.08505,7.75521,6.70337,5.04165,3.75789,4.0394,6.8970519999999995,5.312,4.62957,3.803165,4.55244,2.4055066666666667,2.267015,2.27553,5.3468,5.6293,4.65481,4.23237,2.2870500000000002,2.55361,6.812200000000001,1.8414380000000001,2.5427433333333336,3.4120000000000004,3.4120000000000004,3.11553,5.14545,0.7599841666666666,3.5032,3.641355,2.9992300000000003,10.176615000000002,4.12237,2.90098,2.4664,4.4898,5.9729,2.95209,5.1629,2.6799999999999997,4.53916,2.8420677142857143,4.47565,5.3671,4.831295,1.036135,3.627466666666667,0.981245,2.5516833333333335,5.009614014705882,8.780833333333334,2.4906133333333336,3.4585000000000004,6.813541666666667,1.6864540000000001,4.4726,5.4977,3.4316,3.712505,2.20677,4.602895,2.36884125,0.45522999999999997,5.0473,2.920445,3.505266666666667,4.93706,4.928515,5.5161,6.5112075,4.54575,5.48855,7.435015,54.90271333333333,4.66422,3.93974,4.5528,5.57745,4.334845,5.1897,4.025675,4.654935,1.9200225,3.876395,3.972255,4.66592,2.79288,5.04475,3.865755,1.6787839999999998,5.5832,6.26715,7.186225,5.3565,3.37984,4.435135,3.11506,3.32888,3.57012,4.33211,3.772875,6.51478,2.72975,1.0748657142857143,2.47992125,0.538288,0.538288,3.281955,0.538288,2.4709118214285715,2.4709118214285715,3.2608598214285713,4.71012825,5.1229255714285715,2.47992125,4.6334808333333335,2.4564158333333332,1.3328983333333333,5.4822,2.16574,7.034792666666666,5.771246666666666,10.977316931818182,3.2834633333333336,2.59959,0.20804818181818183,1.9445616666666665,2.07115,0.87050375,1.2070233333333333,3.0951833333333334,2.4170725,2.586425,0.608047,26.731268749999998,1.88735,0.8192538461538461,2.4389166666666666,2.4389166666666666,0.3980477777777778,1.6155325,3.15148,1.3427275,1.6194475,1.637325,3.96514,2.863855,1.9847166666666667,2.3278833333333333,1.1024766666666668,1.942965,1.5181283333333333,5.312748166666667,3.580385,6.713113333333333,2.50945,3.3203,0.9046683333333333,2.43125,5.09805,6.212495,3.0013533333333338,2.2797633333333334,5.223599166666666,1.9156225,2.3779266666666667,4.227385,1.0626499999999999,3.4464,2.3097833333333333,4.999685,4.64385,6.02725,2.994405,3.9418525000000004,3.9418525000000004,5.26,1.86588,5.29805,2.8939233333333334,1.5044675,3.092975,3.33878,5.291035166666667,4.419995,2.7470866666666667,2.9109166666666666,3.067755,0.9831371428571429,5.1217,0.887455,5.524509999999999,4.290435,7.60262,4.144675,4.42402,4.06078,8.110606666666666,4.05314,4.78167,1.17112,0.7190357142857142,4.568595,4.202415,2.095225,3.335255,3.31735,4.24213,2.203475,4.91127,2.4265633333333336,5.38865,5.2221,5.51955,4.362185,5.00235,3.051875,6.4667485000000005,3.51993,4.47568,3.3932,4.689165,5.442758809523809,0.5914342857142857,3.6858,1.8254933333333332,0.56948,3.931445,2.335485,1.01509125,2.00051,5.7396,3.65192,2.41781,2.6988366666666668,2.6575933333333333,4.90889,4.166385,1.6538523809523809,4.205985,2.20301,3.7371666666666665,4.13074,5.15155,3.0360016666666665,3.694366666666667,3.794333333333333,2.04692,7.36593,4.7961,4.1552,5.2918,2.18045,4.40894,4.7306,3.934275,3.899365,10.482725,3.399915,4.725391666666667,4.74482,4.607395,2.36855,4.53314,4.27492,4.354385,3.31569,4.18123,1.4806775,3.0458833333333337,3.727725,3.76367,4.98507,1.900688,3.841045,3.0957966666666668,5.45095,3.18772,1.84344,4.10398,4.414975,1.05327875,2.99031,2.6305833333333335,4.476128666666667,1.744116,1.5311899999999998,1.17011,3.31628,5.4949,5.51138,3.6203525,2.94284,2.34959,1.893145,1.89961,1.57026,5.87185,2.96896,1.9507475,0.8808153846153846,20.02179591666667,2.86121,3.2225533333333334,4.717461666666667,3.8781399999999997,1.4349533333333333,2.7479199999999997,2.904593409090909,1.324146,1.88608,4.225405,4.676655,3.5688899999999997,2.985125,5.3238,4.698695,6.939095,4.571890833333333,4.43022,3.76556,2.66736,3.99982,4.04252,3.7363999999999997,3.845065,1.8373075,4.75772,8.76636,3.313465,2.867685,3.350925,0.5413,3.15006,2.0453333333333332,2.2992825,4.357395,3.12399,5.02735,3.78046,2.91358,2.190835,1.703185,0.752276,1.45618,1.2242233333333334,3.89888,3.806605,4.696175,4.623455,7.4611,2.3279633333333334,1.393986,2.391783333333333,7.769543333333333,3.12523,2.7454,3.04254,4.59743,3.2190575,3.476895,1.493948,4.643945,4.69291,4.27066,4.055185,3.495865,4.211185,4.292685,3.91272,4.261515,4.33488,2.20372,3.295336666666667,3.317845,5.35855,3.089785,4.1712655000000005,2.66531,2.909175,2.2746633333333333,2.2642966666666666,2.1412999999999998,2.5923836666666666,2.5923836666666666,2.01254,2.8226266666666664,2.3918833333333334,2.37867,2.0006933333333334,4.120435,2.33051,2.6841033333333333,2.95556,1.7118033333333333,4.481565,2.75511,4.02247,2.57829,5.0557,5.20075,4.801860833333333,2.61608,2.40497,2.79496,2.484995,1.965285,2.71878,1.86966,2.591175,2.721725,6.8857465,4.34174,3.53792,0.62450875,4.37599,3.85168,4.05956,3.08006,3.882465,3.7832325,6.3112,4.413895,3.080885,2.7354175,2.139607777777778,2.46116,1.61505,1.787588,1.563628,2.0805800000000003,1.7193875,1.184925,4.127512857142857,0.6059646153846153,0.5120377777777778,1.9575179999999999,1.5209916666666665,1.432826,1.4049433333333334,2.2499280303030305,1.4325433333333333,1.686936,0.60507375,166.91598432819794,0.47819333333333336,2.03512,1.212464,1.15851,2.137345,1.497345,1.9583975,2.2541933333333333,1.8210675,6.4588,3.174575,3.34437380952381,2.122716666666667,3.18725,1.2828166666666667,1.2828166666666667,5.761445,0.47276388888888893,2.201485,3.3336333333333332,3.0880666666666667,0.8348099999999999,0.5358041176470588,1.1416765641025641,0.995909090909091,2.2434425,4.03109,1.961095,2.061855,2.2492966666666665,5.040347611111111,0.9998388888888888,4.40645,3.50209,3.63321,6.98473,1.5402266666666666,2.824805,2.25311,4.014673,2.33544,3.290035,3.49506,3.46803,4.50927,3.162355,6.50179,2.386855,2.79668,3.049895,1.55673,2.39732,2.63921,2.822225,1.728845,1.419765,2.2172,4.22336,5.2582466666666665,2.36358,2.915915,1.4034,4.23155,3.8670000000000004,4.010533333333333,2.869625,24.822882338980463,2.5322786666666666,2.5917600000000003,3.0171200000000002,3.422633333333333,3.2043433333333335,5.704033333333333,3.1401166666666662,2.37631,3.4063666666666665,3.4690666666666665,2.18904,3.2790266666666668,3.4080999999999997,3.11427,1.7064166666666667,1.6521054999999998,0.582723,2.2945100000000003,1.9895175,0.220723125,2.1852133333333335,2.632465,0.220723125,0.220723125,2.112973125,0.220723125,0.220723125,0.220723125,0.220723125,2.825763333333333,2.57808,0.5589461538461539,3.2567589285714282,1.44198,1.887648,5.3905,4.307370000000001,6.1167925,2.0569125,4.92963,1.98594,2.7581433333333334,1.2812571428571429,5.815063333333334,2.8704666666666667,6.130952499999999,0.8465250000000001,1.5039075,4.68245,4.72553,34.77665553060828,1.590122,1.4573099999999999,2.30828,2.32566,0.8985045454545454,2.352273333333333,2.333126666666667,2.7034333333333334,1.9937366666666667,2.4299766666666667,1.7103633333333332,2.46884,2.3630333333333335,2.1881666666666666,2.7521400000000003,2.4248600000000002,3.973355,3.4426,1.1367485714285714,4.011125,4.13857,19.782316333333334,2.659263333333333,3.28691,2.55695,0.851972,3.2274659999999997,1.6335086666666667,3.2274659999999997,2.3206333333333333,2.46077,2.78613,1.636815,1.881505,4.203745,4.09798,5.0978,4.271985,1.621718,5.03185,1.646635,4.902005,3.999163619047619,4.44026,0.7503218181818181,2.013945,2.0571625,2.739602,3.41496,1.08974125,3.28419,1.8733080000000002,2.04543,1.072036,1.072036,3.19316,2.5783333333333336,4.352435,28.2580675,6.139749999999999,1.8760933333333334,3.6014566666666665,0.389776,5.715987500000001,6.12745,2.7147166666666664,3.361955,5.391477500000001,3.5799,1.12173,4.441445,1.256978,2.89955,4.392965,4.642495,2.111685,3.16028,4.55749,2.61581,2.7289575,4.046265,1.3754733333333335,2.3903854166666667,3.674145,5.337825,2.438686666666667,3.03809,2.7455233333333333,4.012835,4.02726,4.079395,4.1882,1.80722,5.96288,2.573865,1.748122,4.086105,5.99574,4.200375,3.39687,0.71346125,3.049635,3.607705,2.019555,4.752578000000001,2.779585,4.033945,2.8578466666666666,3.4605,2.55316,3.1409266666666666,2.889623333333333,3.089916666666667,4.22678,5.5395,3.62692,1.802225,3.94113,4.20999,1.869695,2.073575,1.70345,3.902191666666667,4.51258,5.120586666666667,4.023315,3.4185666666666665,3.593755,3.0851100000000002,1.3921849999999998,3.177835,2.931215,3.116675,4.82665,4.562235,4.325085,2.933665,1.839295,1.7231,1.47159,3.65689,2.38727,2.27296,3.269845,4.900635,1.57873,5.202,1.39413,1.841925,3.28639,3.063255,3.138085,3.679905,3.194685,1.756285,0.9886798421052632,3.06404,4.828808333333334,4.384945,8.78169,3.0218966666666667,3.0033133333333333,1.6108799999999999,2.7466899999999996,2.6291100000000003,1.2322166666666667,2.93538,2.5927466666666668,3.11309,3.9346666666666668,3.113296666666667,6.961836666666667,3.0525333333333333,0.7576481818181818,1.6326066666666668,3.39247,3.33581,3.329925,3.491766666666667,2.540093,3.148035,2.72393,1.9674604285714286,3.9057,2.5740016666666663,3.443435,2.0933699999999997,4.752865,4.41542,4.35275,3.518425,3.68924,0.9035777777777777,4.585955,2.809143333333333,2.8549366666666667,4.40272,2.7046166666666664,2.6982133333333334,0.3535057142857143,0.3535057142857143,4.399148333333333,3.964835,7.0496,3.11175,4.67462,3.71251,3.18341,4.932165,4.02421,1.05275375,3.913135,2.7176066666666667,4.1577858333333335,2.88362,3.034476666666667,1.8177466666666666,3.2178996428571427,2.3567633333333333,2.845853333333333,2.5067733333333333,2.80832,2.02664,22.14303856225296,3.98333,3.70131,3.950055,3.250285,4.261845,3.378215,4.514455,4.120245,3.81084,3.4808,3.839185,2.605636666666667,2.8034233333333334,2.9477266666666666,2.954536666666667,2.827413333333333,4.287825,3.522695,4.8158175,5.0385,4.293225,1.238994,1.355154,1.355154,5.0484,3.78497,2.6802200000000003,2.31472,2.9180533333333334,3.29549,3.12827,7.680401666666667,3.2004866666666665,3.4685666666666664,3.1251933333333337,5.22625,1.5972766666666667,5.8092375,2.4311599999999998,2.89785,1.74345,3.66271,2.620595,6.35159,3.21068,2.473955,4.18158,4.252948666666667,1.52062,2.520043333333333,1.6297966666666666,7.366783,4.28713,6.6864766666666675,2.2668725,3.924555,3.661255,3.97448,5.0652,3.399266666666667,3.399266666666667,2.115995,4.26776,4.98794,2.50284,6.671187142857143,1.6227475,5.811,8.089206333333333,3.5764333333333336,4.144152666666667,2.3200333333333334,2.051,0.50905125,4.390775,2.490975,2.68795,3.658978,2.33143,2.4505666666666666,3.63282,5.9288,5.2921,5.1423,4.78541,4.13427,2.191805,1.0327363636363636,2.95806,3.25364,2.7456866666666664,4.944125,4.01749,3.119655,2.622525,1.878858,4.133235,1.02004625,5.17385,1.0011555555555556,5.37555,3.377785,4.632505,4.989175,3.126315,3.178385,3.1056000000000004,2.35982,3.9566,3.00035,2.57253,3.60628,4.90672,5.620749999999999,4.67056,1.5980525,3.4525,3.04459,5.551753333333334,1.8694825,1.8694825,2.9047533333333333,2.4135733333333333,2.5145033333333333,2.62668,0.8356429999999999,6.26045,3.25685,1.87422,2.34221,2.643075,3.666625,2.623555,3.75072,5.1785,5.2731,4.85948,6.1469,5.8592,1.3268375,3.752215,1.1086,2.549925,4.3057,2.558275,3.037435,3.232195,4.615885,3.01586,0.43219315789473683,4.46839,4.180725,4.99772,3.31352,4.709485,5.43235,4.23774,4.254775,1.764325,4.58731,2.0397875,4.262433333333333,4.262433333333333,6.47905,5.66485,5.48365,4.958325,2.5981,1.5972766666666667,4.19372,1.8838533333333334,1.66012,1.97514,4.128005,4.00174,4.279495,8.21876,1.6124733333333332,5.1292,1.2234416666666668,3.19776,5.9857,2.0100425,4.695935,2.7042066666666664,4.76232,3.469275,4.81392,3.5157666666666665,4.17166,3.95267,5.9348,4.223105,3.8782,3.84058,5.74745,4.013795,4.64017,3.71313,4.10961,6.861833333333333,3.51153,7.34625,3.330855,5.4722,5.972865227272727,4.17135,3.63204,1.5892225,5.7163,3.954435,0.9051344444444445,8.64456,5.947,5.02695,3.06513,4.99453,2.947325,1.6672360000000002,4.07493,1.1116633333333332,6.31695,2.978735,4.542425,5.4077,4.316705,4.09027,2.10011,4.39761,5.16655,1.629895,7.271001666666667,3.096425,3.406575,5.0118,4.289175,2.113305,4.43225,3.584355,3.726205,2.6842,4.050635,3.728685,5.294,4.72679,3.206495,1.8784925,1.8784925,7.434241666666667,1.3309742857142857,5.16115,4.18564,4.943115,3.437105,3.59887,5.0285,3.921895,0.9842116666666666,0.9842116666666666,0.9842116666666666,3.5345,3.084445,3.88645,4.568492888888889,2.629085,1.4328616666666667,4.318115,2.113305,2.676525,3.99243,4.50644,2.2143625,2.13624,5.67891,3.655345,3.16872,4.254265,1.6892025,1.9607,3.3152333333333335,2.603085,5.17475,1.423166,1.607734,1.047385,3.928515,3.320665,2.8302933333333335,2.9237933333333337,5.42135,1.7210619999999999,2.0376275,3.13829,1.6815,3.13051,3.597945,2.50705,5.7437,5.50405,2.836035,4.43929,3.655195,3.53434,3.391235,3.94435,3.567785,6.66465,5.15325,1.8733899999999999,1.7963333333333333,3.60183,4.66323,4.090735,3.469765,2.85224,4.01883,6.1008,4.90417,2.7312333333333334,5.22975,3.905885,3.728105,8.0959,3.993735,0.7231154545454546,3.90801,4.151298333333333,2.518495,3.891115,3.7656333333333336,5.89535,3.908185,3.633375,3.7053,4.420295,4.55716,4.63578,2.93661,3.909315,4.778115,3.92093,2.516765,3.071495,6.28576,5.2878,2.00984,3.155575,4.153808333333334,3.827675,5.0223,4.18878,2.52028,0.8708,4.544151818181819,6.176347499999999,3.269805,4.637865,3.55576,6.720886666666667,3.701515,3.741,2.8087133333333334,3.785155,1.96274,3.30124,4.471235,2.5495335,3.872455,5.93735,1.4991675,4.779695,0.6333664285714286,6.24245,6.37055,5.8832,6.1649,1.5646516666666666,1.6384166666666669,4.48988,1.94043,5.1268,0.5253825,6.0316,3.16137,1.513188,6.2934075,6.5552,0.8321025,1.8264905,1.310314,1.310314,1.310314,2.2825366666666667,4.78789,3.649935,3.164295,3.9892,5.1679,3.855455,1.905546,4.17522,4.956965,0.3022682926829268,3.68043,4.724575,4.373185,38.95613975,5.803205,5.074,10.783155333333333,3.00354,4.23228,7.1104666666666665,3.22917,4.97063,3.87219,4.0291,9.017855,3.779445,2.7178466666666665,2.664395,4.40134,4.244655,3.58228,4.422005,2.056,4.480545,4.318115,6.509938,4.087625,4.686355,2.359885,4.25418,0.508493125,1.4460733333333333,3.37652,6.13925,2.811945,1.2170666666666665,1.2170666666666665,3.07138,3.836545,4.42818,2.567805,1.5905566666666668,3.562995,4.297165,1.767915,3.2462466666666665,1.646452,1.8551466666666665,4.022825,4.499905,2.0713725,4.516035,2.3297725,2.200225,3.662025,3.716015,4.053545,3.872035,6.242653,2.5071380000000003,3.607635,0.7153127272727272,0.675385,3.639975,2.196095,8.66055,3.320683333333333,5.01905,1.6816725,4.541525,1.5319333333333331,3.91283,4.37177,2.5353733333333333,3.730315,4.817235,0.410945,0.410945,3.8106333333333335,3.206853333333333,2.8823166666666666,3.664615,3.7578,5.50005,1.0237454545454545,9.984725,10.558769999999999,1.8809375,4.500522500000001,4.6054,4.77502,3.658145,2.5061966666666664,2.0156199999999997,2.0276,9.666830000000001,2.1713075,2.6996533333333335,3.5649539999999997,4.57591,3.5649539999999997,2.109585,2.955603333333333,2.7320966666666666,0.7099581818181818,5.366163333333333,2.8946,2.7780633333333333,3.83375,8.77412,10.60165,4.18544,4.024515,4.164805,6.5299825,1.9073675,1.378575,25.90479416666667,4.10977,3.80729,0.96975,4.351685,4.04665,5.5969,4.61739,5.35575,5.504166666666666,3.0604833333333334,2.0695099999999997,0.6524529411764706,0.7304091666666667,4.427175,5.2568,1.3615533333333334,4.356816666666667,0.9160833333333334,3.7216666666666662,1.39965,4.36015,5.7941,1.90104,2.50575,2.416635,3.82116,2.93124,0.4347122222222222,3.8853,3.608895,2.768216666666667,3.3625,4.796045,2.8773366666666664,4.25187,3.175755,4.468385,8.25045,4.7429,8.308095,2.692975,2.5209,4.374395,4.441325,4.464765,4.46703,3.7334,4.704405,1.1802,3.28217875,3.1642497857142855,0.612568,1.355154,1.355154,4.107665,7.527469999999999,0.8340692307692308,4.89657,0.8958583333333333,2.9377099999999996,2.3203866666666664,2.548295,6.371188888888889,2.4860866666666666,1.131722222222222,2.45472,1.20701375,2.0599133333333333,3.3037233333333336,3.03107,3.1764799999999997,2.452706666666667,0.8958583333333333,4.50614,4.671515,5.38535,2.64365,3.93801,2.13492,5.8973,4.7428,4.41799,2.9664366666666666,3.27806,2.1487025,1.49187,4.098815,2.671725,4.25022,5.64405,1.6385100000000001,4.632115,2.9252866666666666,6.401456666666666,3.57639,2.38219,0.8958583333333333,2.368975,2.97733,7.528900944444445,2.3507966666666666,1.787634,2.3507966666666666,0.42571916666666665,1.110408,3.925735,2.671475,1.661245,3.60826,3.9482369999999998,0.717822,0.717822,0.717822,8.299745000000001,1.543366,0.7305472727272728,34.66253919264069,1.8869551111111111,0.6908911111111111,3.1533925,0.6908911111111111,3.735425,1.971125,2.30409,2.4935566666666666,5.27015,3.968675,4.430375,2.4464099999999998,0.9364942857142857,4.29095,3.32178,5.0941,1.0325900000000001,3.0263,3.0263,3.893365,4.48672,3.48868,4.552776923076923,3.305935,4.71602,5.2602,1.853608,1.03768875,5.2938,6.58395,3.823745,0.690171,4.29361,4.125026666666667,0.91186375,4.461445,2.450685,3.963435,4.48036,1.859767272727273,1.859767272727273,4.05045,3.405415,0.8824522222222222,3.07456,3.0277999999999996,3.25376,4.029525,4.34095,0.4980257142857143,0.3248835294117647,0.3248835294117647,0.3248835294117647,0.822909243697479,0.5920769230769231,0.6567040000000001,0.3248835294117647,0.3248835294117647,6.934115,0.3248835294117647,0.822909243697479,3.61851,1.2461875,4.830605,1.2148883333333333,0.5764038461538461,0.91186375,2.58701,2.6268,4.022375,3.226975,0.3248835294117647,0.3248835294117647,4.34306,3.790545,4.14011,2.693295,4.026255,1.469824,3.83408,0.6567040000000001,0.6567040000000001,4.789585,3.11744,2.804615,2.934085,3.8164433333333334,1.0843099999999999,0.9079307692307693,10.207275,1.291275,3.70083,4.540565,5.0368,1.9857559999999999,0.3745230434782609,0.90280125,2.79869,3.33021,3.136235,4.300665,1.312528,5.8042,3.381805,5.060475,4.173975,2.93922,2.95575,6.611608333333333,2.5505233333333335,4.66529,4.125245,3.892123333333333,5.998065,0.5408433333333333,4.38165,3.4339,2.09822,0.6902044444444444,3.957915,4.22011,2.93467,2.45856,2.140445,5.04025,2.822965,2.81439,1.012246,0.46308692307692306,3.91932,0.3479986666666666,0.7780854545454545,4.019855,3.01737,3.9625,2.682135,5.58985,4.3242,5.994963666666667,3.57339,3.398795,4.350795,1.5568225,5.2930375000000005,1.7740379999999998,4.00905,2.4010525,5.894970000000001,2.48349,1.023096,4.456885,6.8944675,6.617954583333334,3.3499666666666665,0.8002791666666668,2.9019433333333335,4.184935,3.976655,4.47861,4.456545,4.05968,4.920005,3.237425,4.26092,1.7749033333333333,2.26959,1.5060733333333334,4.03942,9.30707,2.77064,3.685915,5.75925,2.754615,4.126965,2.5249633333333334,2.957001,3.28859,3.219355,3.470365,3.13247,3.821115,5.0397,5.7411,4.23289,4.70593,4.89125,3.786985,2.64371,5.03625,7.629075,0.91823,3.893875,4.09621,4.83857,5.7356,4.855005,2.821535,7.7366399999999995,2.4769466666666666,3.338185,6.04335,3.72535,4.309305,2.17928,1.718485,2.9843100000000002,2.0675433333333335,1.8611866666666668,2.8842766666666666,4.176615,4.593145,4.1098,3.463215,4.766013333333333,3.28058,3.12988,4.030055,5.9043,2.9067,5.395830166666667,3.76504,3.85434,3.603615,7.62701,3.7044,3.760495,4.305475,4.89808,3.263325,10.7679,1.3036533333333333,2.37684,3.78376,2.7152733333333336,2.7152733333333336,1.967875,7.965248333333333,0.8698744444444445,3.06203,0.9074525,2.0376275,4.34179,5.2284,3.92296,4.071525,2.80992,3.305655,3.72731,3.770095,4.16399,3.00062,2.56746,4.08718,4.724380833333333,3.283275,4.180765,1.6165420000000001,1.6656,2.6940500000000003,5.6099,2.145635,1.7253633333333334,1.9801725,4.091675,4.626905,3.12168,2.878595,0.4649066666666667,2.340105,7.454115,3.19939,1.5165333333333333,0.83382625,1.34436,1.9802366666666666,2.2977475,1.3321033333333332,2.0988333333333333,4.448052499999999,3.88474,4.649645,2.4312333333333336,1.928005,6.211650000000001,2.8953,2.0648916666666666,2.0648916666666666,2.0648916666666666,6.492213333333334,2.301746666666667,3.5755,2.382655,0.45157200000000003,1.124256,2.20458,5.76562,0.44414166666666666,3.823135,3.9848741666666667,5.92545,3.1884983333333334,0.44414166666666666,3.1884983333333334,0.94003125,1.213016,5.2909,3.87822,6.727157500000001,3.996005,4.759515,3.685955,4.111265,5.0163,5.5326,6.05,3.72926,3.415905,5.11885,4.675305,4.21668,4.48269,4.292155,1.3340583333333333,2.6145333333333336,1.2119075,2.1344025,3.1933144444444443,1.5521044444444443,6.808457499999999,5.551753333333334,2.699393333333333,4.220375,3.02118,4.880025,2.9678,4.062565,4.884715,9.384031666666667,5.0993,4.446385,2.4264325,2.70858,2.07722,0.5413,2.185018888888889,5.939,5.39025,4.968795,4.352665,0.5866846666666666,2.0096125,1.4121025,4.21908,0.7249469230769231,6.2636375,2.0089325,1.172625,1.172625,4.004860000000001,2.0316400000000003,2.984303333333333,2.59784,4.620265,3.557665,3.557665,4.34513,5.66919,2.853536666666667,2.440186666666667,3.354033333333333,4.82398,1.8247520000000002,2.7920766666666665,5.5757,5.05105,4.852675,4.160425,3.85197,4.50522,3.5398058333333333,3.1766633333333334,2.33948,4.234655,5.30295,3.17601375,4.974745,5.51175,2.05705,2.3898733333333335,6.1465,7.0139,1.221456,2.72275,2.355655,2.656746666666667,2.3449275,2.511625,2.6961465000000002,1.0228766666666667,1.9078425,2.67275,2.2775525,2.2628833333333334,2.2628833333333334,3.014259,2.941475,2.1875074999999997,2.6436,2.354685,2.01368,1.5655700000000001,5.2029675,14.765884833333335,2.793253333333333,3.1397166666666667,1.8243960000000001,1.8243960000000001,1.5865033333333332,1.5865033333333332,2.8382466666666666,3.652533333333333,2.8387499999999997,1.948865,1.948865,3.886366666666667,2.28967,1.0553733333333333,1.3933414285714285,3.010733333333333,2.9241166666666665,3.5251,2.6202233333333336,3.31616,3.0831733333333333,0.668685,2.62015,3.6099266666666665,6.985623333333333,4.661505,5.44425,4.25991,3.47852,4.790045,4.57654,2.78228,4.05869,1.3762533333333333,3.1824166666666667,5.7189,5.41045,2.54721,0.9916833333333334,2.892665,2.29699,3.0061033333333333,1.5433816666666667,0.709435,3.0650933333333334,4.506598333333333,4.866345,4.106915,4.842615,3.039343333333333,2.0593033333333333,3.2489683333333335,2.6116266666666665,3.20153,3.14338,3.3019133333333333,2.596486666666667,2.2210666666666667,3.706633333333333,2.8849699999999996,5.2246,4.627205,5.157273333333333,5.157273333333333,3.41925,4.14576,3.77172,3.78752,2.804895,4.33142,3.403095,3.0585799999999996,6.3191,0.7284041666666666,5.2285,4.774965,2.47719,5.080395833333333,3.534133333333333,1.8586333333333334,1.2910428571428572,2.14211,0.996137,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.5259285714285714,0.5259285714285714,1.2130275,0.8863479166666666,1.7206733712121212,0.9980985714285715,0.9980985714285715,1.2736867045454545,0.44698666666666664,0.41442,1.248445,1.555555,2.54258,2.296025,6.361273333333334,3.0248000000000004,3.83985,2.873345,4.808827428571428,1.2383216666666665,4.63846,4.02706,4.92012,3.067135,1.518714,4.1318769230769234,3.61395,4.470275,4.29349,2.7259,4.973765,4.601215,4.641425,1.2418179999999999,3.84329,4.672475,3.14687,2.379706666666667,3.377855,2.45625,3.346785,4.497115,3.0139633333333333,4.79188,8.84327,3.323295,4.973925,4.26725,4.399813333333334,2.5907133333333334,4.58685,1.006992857142857,4.216105,3.427845,2.17216,1.17269875,2.927045,1.3243416666666665,0.500978,3.493,4.111435,5.20092,3.7111666666666667,2.562225,2.4089,4.751885,3.945066666666667,4.52772,2.6392,2.2924533333333335,3.98854,3.70271,4.077715,5.062,4.279425,3.72264,4.737835,3.075836666666667,4.06075,2.18361,4.55182,5.11075,3.25637,4.25405,2.5225,3.760705,5.65585,4.09402,5.26025,4.699775,4.893175,2.3965166666666664,4.85042,4.969435,4.826415,2.1701525,1.0280975,4.051935,4.607155,4.22374,4.995405,1.72916,3.86775,2.310155,5.0404,4.57913,4.61008,2.3544225,4.262655,4.65492,4.30725,2.5294133333333333,4.64091,4.603765,5.2333,3.627055,2.1701525,2.36069,2.88071,5.12445,4.035125,4.199965,3.534715,4.90947,2.356825,6.64981,5.5073,4.655335,5.3486462291666665,5.14875,5.26895,3.464885,2.9582966666666666,2.9582966666666666,3.919325,3.446575,4.59337,2.1017725,2.8733825,0.984925,2.5571633333333335,3.0675899999999996,2.45414,3.01493,4.329115,2.8078133333333333,5.1425,2.5664433333333334,4.628055,5.02664,1.86051,4.30731,2.8303,2.6520733333333335,4.005855,0.897299,5.18585,4.52922,6.004372500000001,4.487115,5.536,1.3413199999999998,4.56051,6.55955,8.265305,3.24598,3.20921,1.9285039999999998,0.7916909999999999,3.83101,1.0203985714285715,4.87658,4.525965,5.64885,3.209525,3.770485,1.0942657142857144,3.681935,3.613275,4.416105,3.921345,2.98745,2.789445,2.3940675,4.2244,4.739195,5.7543,4.42018,3.51021,0.41520666666666667,0.41520666666666667,0.41520666666666667,0.41520666666666667,5.7711,3.01813,6.2514,3.1021666666666667,5.01135,4.68348,3.54744,2.24564,2.510266666666667,1.4509100000000001,5.0482,2.7519899999999997,4.258955,3.779675,3.55558,1.63405,1.14448875,4.449445,2.378395,5.914618333333333,3.96383,4.74511,2.387435,1.485975,0.8875933333333333,3.294985,4.29062,3.90353,2.11407,8.036529999999999,4.683515,3.52311,2.2088200000000002,0.48250400000000004,3.54741,2.771835,2.04814,2.098255,2.8123,2.74098,2.181345,2.8828899999999997,2.839605,3.33324,4.478015,3.828425,4.21115,3.104565,5.902546666666667,0.6157853333333333,4.537065,5.6831,5.0397,4.56867,3.4389333333333334,5.14705,4.407835,4.129315,5.3402,5.2908,4.5041,4.51485,3.74425,4.982615,3.03954,9.01,4.959875,4.228665,4.644005,5.04065,5.6754,3.55309,1.117688888888889,5.9944749999999996,3.417305,4.70936,1.3895666666666668,4.36024,3.4797,6.766996666666667,4.59367,3.142845,1.8714899999999999,4.91849,2.1000199999999998,0.89817625,4.44852,6.17565,2.0332666666666666,2.42875,2.900586666666667,3.143885,3.640355,3.753185,5.0929,1.7459966666666666,4.255765,3.9899235,3.30832,3.7214666666666667,3.79335,2.946605,2.59221,1.8794675,2.5075499999999997,2.6620066666666666,4.428575,0.5879658333333333,2.60958,4.154375,2.994195,3.5529666666666664,4.471695,4.98242,3.953125,16.660180393939395,2.5904433333333334,4.045633333333334,1.458242,0.9081927272727272,0.9081927272727272,0.9081927272727272,0.9081927272727272,0.9081927272727272,4.761415,4.71288,4.77213,8.904759,2.4650375,2.4650375,4.57356,4.481083333333333,1.30404,2.10804,3.763725,2.4311975,2.35064,2.2307525,3.003025,3.8200760000000002,1.7012775,3.49361,0.8324571428571429,2.913346666666667,2.763246666666667,3.06261,1.4404466666666667,3.0353600000000003,2.2737833333333333,0.9665875,2.7520566666666664,2.708763333333333,1.2983666666666667,2.454763333333333,2.6610733333333334,2.06133,4.390806666666667,1.7849300000000001,2.8855,2.0741825,2.759843333333333,1.1157333333333335,2.797136666666667,4.60411,3.570066666666667,1.0327825,2.9679566666666664,1.404945,2.3603366666666665,2.274783333333333,4.713115,2.9894233333333333,2.51669,4.625858,2.6073133333333334,2.17316,2.775166666666667,2.3919966666666665,1.6364166666666666,2.80541,3.10429,3.0464266666666666,2.5347866666666667,3.0532333333333335,2.6016333333333335,2.4221775,3.7138915,3.7138915,3.063136666666667,1.9864866666666667,1.9318,2.4575366666666665,5.484483333333333,2.91663,1.9840466666666667,1.7057575,3.03134,4.35963,2.433266666666667,1.1230959999999999,2.8679093333333334,1.5051033333333335,3.6744333333333334,2.0375099999999997,2.405743333333333,2.0908533333333335,2.8933966666666664,1.256256,1.6214066666666669,1.4794600000000002,4.259243333333334,2.61298,4.05671,1.07272,4.09782,1.9848533333333334,2.005445,1.760314,1.5837583333333332,3.2410266666666665,23.084553255411254,7.535500000000001,2.6580766666666666,3.4613424999999998,2.678976666666667,10.003613999999999,3.039846666666667,1.00503375,2.55682,2.317536666666667,2.0342333333333333,2.9511033333333336,2.57658,2.5337666666666667,0.966174,3.2244233333333336,2.546046666666667,2.9869233333333334,2.8522533333333335,2.61842,2.1520266666666665,2.19167,2.81694,2.62939,2.0933825,1.579716,5.279775,4.61728,2.319735,3.00005,2.258366666666667,2.47297,8.439059166666667,2.0960466666666666,4.84383,2.4567975,1.872075,7.43263,2.9490966666666663,2.7826466666666665,2.473535,1.8681139999999998,1.445833076923077,3.244923333333333,3.0010399999999997,4.407095,1.43602,3.553266666666667,1.4431925,1.4431925,4.314235,3.813685,3.5272257142857137,3.5272257142857137,5.847436666666667,3.412105,0.432564,11.76616287240537,1.2562633333333333,0.9340757142857142,3.66706,1.4407029914529914,2.0338575,6.265796666666667,3.67818,0.7300927272727272,2.14472,4.972515757575758,2.3966403333333335,4.12812,1.2825771428571429,5.33755,5.0547,4.683815,3.21558475,1.88823,2.4037266666666666,2.5507566666666666,2.3417966666666667,2.1773599999999997,5.048590000000001,4.49721,4.113885,1.9226375,4.716555,4.184965,3.3534333333333333,2.158945,5.01355,2.529916666666667,8.954133333333333,6.43361,1.819905,2.14275,1.7616340000000001,4.606466666666667,4.606466666666667,3.0112400000000004,2.743126666666667,2.9487491666666665,4.72085,9.732420000000001,4.22527,2.4913525,5.3648,4.37765,5.159,2.00622,0.8608375,1.3209283333333333,4.51029,4.7963,3.6931666666666665,2.8177033333333337,3.8260666666666663,2.2359966666666664,3.907545,4.685625,3.34056,5.4536,3.2195633333333333,3.6713313333333337,3.2375433333333334,3.2767766666666667,3.4433666666666665,6.20735,2.8372,5.35055,4.59749,3.36255,3.344925,3.344925,5.6527899999999995,11.93736,3.5864333333333334,6.232115,7.2689111111111115,3.632695,2.4885533333333334,4.022625,1.2792233333333334,3.611345,2.586125,2.9599499999999996,2.96044,3.3323466666666666,2.06848,2.3280933333333333,2.73722,2.5060033333333336,2.936056666666667,3.0680433333333332,3.898675,2.5230900000000003,2.9410066666666665,3.900545,2.705666666666667,2.58356,1.14145125,2.0813075,2.8414633333333335,2.4179666666666666,2.5245333333333333,2.4541333333333335,3.4677000000000002,2.5071133333333333,2.55641,2.5283533333333335,2.9891366666666666,2.6721733333333333,2.8203566666666666,2.6092733333333333,3.13617,2.8106066666666667,3.303432,2.6029466666666665,2.4525866666666665,2.300143333333333,2.6841000000000004,2.5657433333333333,3.4886666666666666,3.2965199999999997,2.959055,1.9523425,1.9523425,0.8982733333333334,1.493948,4.24886,3.385695,2.5871066666666667,2.06848,3.1743900000000003,1.2159814285714285,2.7008733333333335,0.55117,3.4251666666666662,3.085183333333333,3.379995,2.960043333333333,2.61641,2.497036666666667,2.9364866666666667,2.7379766666666665,3.340533333333333,4.53444,1.52142,2.6540066666666666,2.4578533333333334,1.7942933333333333,2.2184633333333332,2.8070766666666667,2.61477,1.621022,2.5883066666666665,2.6075566666666665,2.5736066666666666,2.6225566666666666,2.751533333333333,2.8614800000000002,3.19102,1.37027,2.7231400000000003,2.3261833333333333,3.567833333333333,3.932866666666667,1.937535,2.1855433333333334,3.2391633333333334,2.5274566666666667,3.2698699999999996,2.68751,2.2983766666666665,5.529249999999999,3.4835999999999996,2.025333333333333,1.557742,3.3020766666666668,6.2736133333333335,3.002186666666667,3.550933333333333,2.895566666666667,2.9984633333333335,4.561203333333333,1.59711,1.1384444444444446,2.17785,1.7432983333333334,4.59666,2.80344,3.2341033333333336,3.045363333333333,3.2144399999999997,2.18966,3.4069333333333334,2.567475,1.61729,2.8492633333333335,3.480485,3.5942575000000003,3.18194,3.66673,1.7020025,2.90525,3.46859,3.203445,2.442633333333333,3.6597666666666666,3.9191333333333334,3.8059,1.2919525,5.5247150000000005,3.1619962499999996,1.4729116666666666,3.22605,3.36347,2.93221,3.8514,1.8024159999999998,1.8024159999999998,3.1997966666666664,2.9498800000000003,2.96405,5.0926,4.23145,4.495114666666667,1.596068,3.22646,2.5853533333333334,4.3115950000000005,3.053323333333333,4.800866666666667,2.60427,2.40104,2.5089200000000003,3.82269,3.8353,1.612098,3.0852299999999997,2.8207,2.356015,4.348605,1.30127,2.982825,4.171925,2.780305,3.556475,4.045965,1.79272,1.5826933333333333,2.4184,1.0470316666666666,2.051134523809524,1.90606,0.44373071428571426,3.816725,2.540365,4.4758,4.303795,2.784295,4.7075825,3.3735,3.0502233333333333,3.427,2.4557533333333335,3.31749,2.73231,3.1308399999999996,2.3165299999999998,0.6618246153846153,2.3156666666666665,0.6222492857142857,1.9724266666666666,2.4201133333333336,3.173363333333333,3.04386,1.4238033333333335,1.27002,4.29216,4.47712,3.06001,3.8879599999999996,3.135595,2.02568,3.953405,7.769284444444445,3.361995,5.185017500000001,1.648285,3.94761,2.0734,4.3899,3.78011,2.05547,3.883075,3.24773,3.817355,4.15185,2.127855,4.163865,6.1679125,4.989945,3.48043,3.07387,1.73453,2.0295575,3.863595,3.315485,3.175465,3.712215,3.61619,3.34578,1.59955,3.771395,3.17713,1.6963125,4.1901150000000005,1.0616916666666667,3.403505,1.6918925,3.98621,4.495261666666666,3.60538,2.91377,3.72266,3.355505,1.895435,2.285375,3.8884000000000003,3.020345,5.98769,4.198095,4.384225,2.64044,2.5321,4.63839,4.46036,2.1952119999999997,2.1952119999999997,5.873708666666667,3.8572420000000003,2.65342,2.812915,2.077706666666667,2.84068,3.316395,3.7041391666666668,2.7065845,3.25557,0.9720599999999999,3.81328,3.03023,4.104625,2.540075,1.5117325,1.441085,3.0027,5.914185,5.6224025,3.592845,1.6023275,4.257325,3.74141,0.878485,3.0199,1.377324,5.385875,1.4414150000000001,3.714295,1.94512,1.4238033333333335,3.111215,2.92005,4.72363,6.811724999999999,3.98838,4.711084166666667,2.429065,2.764325,4.102855,3.872145,4.21261,4.29345,1.20319,1.6521054999999998,1.0693825,2.60655,1.948745,4.902605,1.0693825,4.1872,2.316275,1.541055,1.541055,1.6963125,3.94888,4.257755,3.779035,1.498594,1.498594,0.9593833333333334,3.196365,2.123785,6.026059999999999,4.226625,3.81357,2.8737133333333333,0.9780557142857144,3.51326,2.809795,4.22941,3.56833,3.9544025,3.9544025,3.416485,4.019215,1.8432225,2.88102,0.9775411111111111,2.0992966666666666,3.60184,2.425683333333333,3.256311666666667,3.256311666666667,2.767535,4.558315,4.353435,3.33604,3.633835,4.017605,2.4982866666666665,4.338069166666667,2.849795,3.79868,8.318635,4.78954,2.730635,3.16113,3.07247,4.75376,3.0917960000000004,7.7338925,4.561567999999999,4.612865,3.535635,3.825325,3.689475,4.59954,4.756085,2.470225,4.685885,6.399666666666667,2.73736,2.127276222222222,3.09904,3.320245,3.78749,6.0413,2.20677,2.6114333333333333,3.052805,3.1677675,3.4146,7.199320666666667,1.530005,4.772553333333334,4.772553333333334,3.338065,4.0219475000000005,3.088105,2.55513,5.19367,4.285573,2.1624546666666666,3.865405,4.02066,3.431069166666667,2.846845,2.92522,5.925056666666666,3.41767,5.3647,3.32431,4.65221,4.132195,3.715995,2.9498800000000003,2.0556633333333334,2.95591,3.86605,3.03115,3.21429,2.65396,6.153116666666667,2.560895,1.808675,3.2179816666666667,2.3362866666666666,3.996095,2.659975,0.878485,3.83239,4.14133,3.866575,5.9395025,3.109145,3.074315,2.955856666666667,2.955856666666667,3.959755,4.1348,3.64037,2.0394925,5.8145975,2.11621,4.56239,3.699105,7.82749,2.82051,1.3032133333333333,3.21271,4.427965,0.71612875,4.01238,3.645395,2.91279,2.994,4.172605,2.1248533333333333,2.46925,9.01827,3.41194,3.3716,1.4414150000000001,3.88589,2.656815,2.41697,4.141445,5.25997,1.63545,1.1751216666666666,1.0789666666666666,4.386055,4.54837,3.732765,3.3907175,3.3907175,1.59955,2.36024,3.205744444444444,0.9357644444444444,3.04693,1.0362,1.7020025,3.32948,3.498755,2.81958,2.657905,2.7193508333333334,4.747285,3.857685,3.013725,2.99187,2.90969,4.21758,6.772085000000001,4.06038,0.88600875,2.6141565,8.78723,4.425455,4.054945,1.1550675,4.822048333333333,1.3939233333333334,3.738375,3.738375,3.773635,8.653755,0.8374722222222223,4.60611,4.25708,2.3661533333333336,4.1844075,3.67985,2.1365175,10.112897333333333,1.78516,2.473336666666667,3.336025,1.6916066666666667,4.2896685833333335,3.160745,3.392455,3.4632153333333333,2.866315,3.048085,1.06537,6.986,4.01771,3.7618,3.834415,1.8974075,2.91377,4.160934166666666,3.62966,0.6287007692307692,3.93664,4.156355,4.68056,2.0648375,1.425932,4.135255,4.19711,8.98943,0.6969484615384616,0.791115,0.791115,1.9163233333333334,1.3126366666666667,1.501874,1.8340100000000001,4.657275,1.28864,0.9112328571428572,3.9390875,3.470735,1.2155,3.375975,4.51848,3.727505,0.712608,2.21259,9.2745,3.397785,3.4027,3.355295,1.799105,2.4858733333333336,2.47766,4.396075,4.13073,3.79283,0.8961971428571429,1.34199,0.910816,4.199675,4.317575,4.1,0.9357644444444444,1.7108180000000002,3.812955,2.3630146428571432,5.019775833333334,1.0156925,4.72675,0.5483783333333333,0.5483783333333333,0.5483783333333333,9.676805,3.96595,1.0362,3.81823,4.668905,2.84722,3.2345,5.3123475,2.611715,1.9578144444444443,2.5133300000000003,0.712608,1.5910929999999999,0.5619777777777778,0.853955,1.4415833333333332,4.03356,3.71837,2.00266,7.3577433333333335,4.857670833333334,0.6051422222222222,6.19975,4.91472,3.502295,4.46757,8.026836999999999,3.7687810714285717,4.857670833333334,4.58028075,2.3361933333333336,4.005445,3.544965,7.386645,3.48986,0.48250400000000004,1.5221339999999999,4.042485,1.7574839999999998,1.1751216666666666,3.859025,2.36474,1.701885,3.049865,1.703276,4.451595,4.367915,4.15322,4.72515,6.48294,2.43431,3.855555,1.377324,2.3663325,3.348585,3.318445,2.1624546666666666,4.066995,2.520465,5.09775,2.746835,2.379945,3.3177925000000004,1.7034340000000001,3.32367,0.9357644444444444,2.26003075,1.0789666666666666,1.8036,3.537965,1.530005,1.4415833333333332,1.8886375,3.611645,7.84013,0.8961971428571429,1.1550675,1.310422,3.584495,3.76716,1.310422,3.8908,2.3663325,0.71612875,0.9357644444444444,1.9163233333333334,1.377324,0.44373071428571426,1.6787839999999998,4.315057333333334,2.3661533333333336,1.3572066666666667,2.91176,1.2919525,1.78516,2.79384,2.5133300000000003,5.00985,2.79384,0.878485,2.750498,2.159325,0.08463886363636364,0.08463886363636364,0.08463886363636364,0.08463886363636364,0.08463886363636364,3.33241,2.7298333333333336,2.6400033333333335,2.96768,4.38658,4.19389,1.760314,3.670035,3.620115,2.124825,4.832185,2.743885,2.423935,2.537255,2.75076,4.5035,8.29463,2.24145,1.9400700000000002,3.100225714285714,0.8864757142857143,1.3841083333333335,2.3985,2.0385166666666668,1.48199,2.80125,2.1313999999999997,2.5687166666666665,2.5770933333333335,2.5863333333333336,3.762265,3.398305,2.6156433333333333,1.268268,3.782975,3.67073,1.5433433333333333,1.315448,1.315448,1.315448,3.479845,2.677293333333333,1.1156966666666668,2.2754966666666667,1.3245428571428572,4.25134,1.5339833333333335,6.336,3.2914475000000003,2.54876,3.190538,3.190538,5.261793333333333,3.1188,4.650285,4.618415,2.164235,3.06277 -GSM1946767,1.0,2.0097925,2.0097925,1.59031,5.32425,5.7309,2.397845263157895,1.6012966666666666,7.96669350490196,4.483425,3.0385299999999997,1.950195,2.009495,3.47692,4.264595,1.791324,1.523582,5.13885,2.4879599999999997,2.234015,5.11385,5.1875,4.111575,2.36089,1.7763680000000002,4.003785,4.8939,4.344175,0.7692308333333333,1.634849722222222,1.9337772222222223,1.9695425,2.0764325,1.1872157142857145,0.6943308333333333,3.1833007142857146,1.48819,1.6989675,1.23701,2.12812,1.1585775,1.102795,1.128722,1.503724,0.8735139999999999,0.9259080000000001,0.7300639999999999,1.1965542857142857,1.577688,1.763182,1.527634,2.0573,1.64891,17.59975275,0.380878,0.8251200000000001,1.116864,1.710218,1.68493,1.91703,1.0624957142857143,1.0624957142857143,1.0624957142857143,1.1537383333333333,1.389742,4.64278625,1.1616025,2.200085,2.05796,2.517925,0.999917,2.175855,2.3276175,2.0116525,1.3602225,1.91806,1.5396925,1.63111,2.365066666666667,3.919625,4.487015,4.68219,1.5274966666666667,4.44843,4.348221666666666,3.84139,3.988445,1.033895,7.54242,0.61725125,0.61725125,2.17504,1.0744228571428571,15.881185,4.23403,5.22995,4.90044,4.05192,4.22625,5.03645,0.47342333333333336,2.427777916666667,1.9419625,2.3058725,4.685795,4.051795,1.3956625,3.00682,2.8810000000000002,2.8806766666666666,3.516666666666667,3.430315,4.64004,2.8218530000000004,4.41683,2.93664,0.7262227272727273,1.53329,2.532975,4.69549,4.107655,0.5753775,3.61727,3.890515,0.77984,4.140665,1.7047042857142858,2.13947,2.544625,2.0769825,3.873515,5.4898,3.433125,2.8308066666666662,3.287406666666667,2.9464900000000003,4.047245,2.8682766666666666,5.58925,3.43436,4.443455,3.28671,2.37518,3.649275,2.510975,6.885723333333333,3.882705,3.08296,4.245925,3.045705,4.83146,0.7612055555555556,9.24810880952381,3.70713,2.09631,1.8287049999999998,3.4804666666666666,2.34904,4.893935,5.5343,2.1023325,4.8094525,2.795945,4.66706,2.1023325,2.4528933333333334,4.44171,5.041930833333334,4.58534,8.42016,3.408275,4.69764,2.99276,5.3156,4.62926,1.6713500000000001,8.36793,4.33134,4.02567,3.613385,3.732105,3.44921,2.184205,6.285705,2.313725,3.989275,4.026135,5.01505,4.651985,4.27459,1.5148616666666666,2.70971,2.981225,1.812045,1.812045,6.193669428571429,3.17604,1.9689333333333332,4.34681,4.504415,2.91729,1.4831166666666666,1.1241333333333334,6.91185,2.770235,6.89025,4.43144,4.35676,3.746805,2.937785,3.86018,3.572505,4.022335,4.06224,6.1735,2.78448,3.70542,9.113389999999999,4.479495,3.4756666666666667,3.069036666666667,2.75698,3.8586666666666667,4.21039,1.75862,2.72209,2.1842566666666667,1.6818719999999998,1.7772,2.6042733333333334,1.6957325,2.06113,2.8658300000000003,2.53479,2.33513,3.0902433333333335,4.348221666666666,3.392,3.21919,3.10739,4.843535,1.3651016666666667,2.395505,2.9027388571428574,2.12962,2.581323333333333,2.5235866666666666,3.3147133333333336,1.907838,1.2961966666666667,2.7596566666666664,0.67301,1.5069933333333332,0.5157211111111111,0.5157211111111111,1.5521266666666669,3.0350033333333335,2.5903199999999997,1.2658633333333333,1.5599766666666666,0.31733,2.7795366666666665,0.67301,1.20497,0.25584945945945947,1.46281,2.118325,3.5334333333333334,2.6086899999999997,2.82282,2.5935866666666665,2.47852,2.4009766666666668,2.5828866666666666,2.54661,2.1747433333333333,2.65596,2.1327066666666665,2.70239,4.29408,0.7010116666666667,1.89361,2.6528899999999997,2.0931966666666666,3.4455833333333334,1.567964,2.5866266666666666,2.7344566666666665,4.331356666666666,2.055633333333333,6.805780952380951,1.6252142857142857,2.7439199999999997,1.9649775,2.1456525,3.4358,2.032775,1.9305775,4.22587,2.688496666666667,2.1474575,3.687115,4.005145,4.24762,3.70989,2.23769,3.285485,4.92937,4.21235,3.84502,4.2101,4.3269,3.131235,4.23863,3.60658,0.914735,4.691045,1.3349983333333333,5.2296,3.875645,5.998949,3.75237,4.192565,0.96961375,2.08299,3.50452,4.075375,0.8695185714285715,1.2942552564102565,2.1205766666666666,3.235546,5.0896175,5.52127,2.0974425,3.807195,5.1009,0.3643828571428571,3.741455,2.302895,0.98480875,4.19449,2.074355,11.667365,1.19508375,1.4491375,2.88729,2.29947,1.9767980263157896,4.5512530263157895,0.3835705263157895,1.68609,2.8876866666666667,0.965175,3.2227333333333337,0.9529014285714286,5.29475,3.931855,2.1674599999999997,5.68045,5.27525,2.42804,1.1553585714285715,4.404825,4.99577,4.340075,0.9241181818181818,8.02287,2.82542,4.38775,2.67871,2.5490666666666666,4.5525,2.440863333333333,2.6398333333333333,2.182513333333333,2.4253066666666667,3.110885,2.937303333333333,0.348369375,3.94767,3.80352,3.920065,3.871115,4.44701,6.196078,4.065515,1.64574,5.5009,4.629415,4.110585,4.426395,1.067575,2.9273466666666668,3.298883333333333,2.5130933333333334,15.697244999999999,3.29326,3.916395,4.11446,5.251,2.65753,4.998588888888889,1.71108,0.7609477777777778,2.571975,3.268345,3.752915,3.47927,6.383333333333334,2.8018133333333335,2.208455,2.148345,3.4055,4.181135,2.3606725,0.37604824404761905,2.6373800000000003,1.983665,1.12932875,0.48071824404761904,0.585388244047619,0.37604824404761905,0.37604824404761905,0.37604824404761905,1.1663825,1.31654,0.84607,1.43545,4.306175,0.21517999999999998,11.268060562770563,3.079143333333333,2.746513333333333,4.03774,4.019115,3.986565,2.0417,4.83058,3.9319813333333333,4.254225,3.633125,0.6381023076923077,3.2706033333333333,4.1612256410256405,0.5558928571428571,3.43789,2.89136,4.463585,0.5881036363636364,1.78746,4.574865,3.48458,1.85876,1.7908033333333335,1.62823,3.3417666666666666,3.950975,2.878255,2.77035,5.33165,5.6228,4.635465,3.118736666666667,3.58518,6.253208333333333,3.4946333333333333,5.02945,0.3988857142857143,3.1247733333333336,3.9053966666666664,2.0323233333333333,2.689235,2.877045,4.900258333333333,0.6194725,2.463715,4.39206,4.08595,1.0463842857142858,4.22028,3.01132,4.71009,3.0144266666666666,4.93531,3.523595,4.41902,1.1381483333333333,3.35286,2.67355,4.587805,4.07697,4.251655,5.6008,4.34592,2.593735,5.17307,2.26286,2.767675,3.410966666666667,2.5884733333333334,2.64182,2.3564266666666667,1.761252,1.5071933333333334,2.1157033333333333,0.7930328571428572,1.7444633333333333,2.2503699999999998,2.0103833333333334,3.1628166666666666,3.345133333333333,2.92395,0.9546511111111111,5.0604,3.31747,5.36185125,2.61922125,3.0297,3.1088666666666662,1.7622666666666669,1.7622666666666669,2.4123207792207793,2.4123207792207793,3.2125593506493506,0.5085157142857143,1.7164433333333333,2.3314133333333333,3.5950333333333333,2.1518633333333335,2.1518633333333335,2.1518633333333335,7.307800238095238,4.3575904761904765,0.9578181818181818,3.69639,4.509259999999999,2.2475925,4.440385,3.200115,2.21999,4.37431,3.080436666666667,3.2533433333333335,0.7893625,1.9318666666666668,3.2319166666666668,2.866573333333333,2.4342200000000003,5.79275,3.682533333333333,3.641666666666667,4.9334766666666665,1.9337166666666665,2.5029266666666667,2.8988033333333334,0.9914088888888889,2.11681,4.334524,7.86583,1.54248,3.04489,4.269855,1.8648219999999998,1.8272625,1.8272625,1.00088,4.680765,7.533415,3.83467,5.309592,4.32559,1.75695,3.98582,3.12565,4.60331,4.7216466666666665,0.3481105263157895,2.967045,4.66829,3.933745,4.06423,1.94213,1.940225,2.5436,4.19715,4.04402,3.16683,2.400935,1.567856,6.68331,4.58683,4.033405,3.548505,4.939025,4.59089,4.872425,3.745325,3.632685,1.9295475,1.1018642857142857,2.75478,3.982005,4.46273,5.5622325,5.570062500000001,2.2174325,1.8347566666666666,2.65901,2.7789966666666666,3.0273033333333337,0.6138221428571429,2.036,3.5988,1.10230375,5.0611,3.26152,6.000245,1.2844106060606062,1.2844106060606062,4.024405,3.734395,3.705465,5.2816,2.738253333333333,2.2880266666666667,4.03832,3.224115,2.0858975,3.3882999999999996,2.475233333333333,4.179515,3.55143,3.833735,4.468235,0.9841555555555556,2.55085,4.41033,4.20356,3.462055,2.511483333333333,2.22511,0.5595399999999999,0.5595399999999999,0.5595399999999999,0.5595399999999999,1.2770233333333332,3.7800874999999996,3.7800874999999996,1.7756666666666667,7.162983333333333,3.00506,4.40941,3.0417566666666667,2.6454,4.754695,4.04893,4.880265,5.2585,1.7523575,4.00376,3.798135,2.688905,4.559425,3.39941,2.625005,4.79902,1.84694,4.795975,1.644865,3.47026125,3.01796,1.77908,1.2047333333333332,2.849595,4.327555,1.2630940000000002,0.8532711111111111,3.59442,1.213215,4.921653333333333,4.294275,1.2805228571428573,3.66542,0.7681855555555556,2.5454433333333335,2.5118666666666667,2.1933833333333332,2.746355,4.18927,2.918250833333333,4.56646,5.06415,4.33355,4.241445,2.16074,1.3509442857142857,4.088625,4.95479,1.4144075,1.4144075,4.140295,0.24934133333333333,2.3460300000000003,0.24934133333333333,0.24934133333333333,0.24934133333333333,0.24934133333333333,5.18355,2.6745033333333335,3.271625,3.50329,3.02509,4.339475,2.7677566666666666,0.96672,0.96672,0.9439583333333333,0.9439583333333333,3.721555,1.680115,3.92787,1.846,1.846,4.76654,0.6143157142857143,2.2527625,7.560853333333334,4.918385,3.110475,3.257395,1.03415,2.666145,1.9237275,4.53757,4.17942,4.228175,3.825715,1.3031314285714284,2.53099,2.0617525,7.70278,1.71348,4.25683,4.71868,2.84117,3.93112,6.31838,7.388185,3.84197,4.73536,5.6829,2.22707,3.330805,2.32415,2.575775,2.064345,3.80651,4.04643,5.472486666666667,6.7858,4.09547,1.1070266666666666,2.34054,4.07359,4.608515,2.12044,4.938415,4.38865,4.735133333333333,1.6885633333333334,3.7101333333333333,1.5857166666666667,6.280626666666667,2.60775,2.4271599999999998,2.19372,2.48993,3.030053333333333,3.3629,3.3897666666666666,3.1626433333333335,3.3623333333333334,1.584824,3.782345,3.156215,3.37825,0.383034,2.98473,3.715545,2.577725,5.40005,5.45935,4.665975,6.348887,4.841345,2.2302633333333333,4.094125,5.135,1.5910366666666667,4.995585,5.44805,5.1097,4.48859,3.22987,5.44535,4.91189,3.987155,5.312108666666666,7.4525325,3.810345,1.1517116666666667,1.50967,2.634015,1.734542,4.427255,3.942415,5.24581,2.50741,2.6539533333333334,2.7050466666666666,2.5266533333333334,2.4350166666666664,1.03161,0.4770476470588235,3.711895,4.062125,3.621866666666667,4.5247,2.74296,3.2185400000000004,5.404981666666667,2.894363333333333,0.5473329411764706,3.124625,5.84575,1.79038,1.547582,3.752535,3.935995,2.528446666666667,3.9895,4.25152,2.7647433333333336,2.2141100000000002,2.3438966666666667,2.45914,2.67295,4.38077,4.984566666666667,7.016066833333333,1.514742,4.709825,3.4796250000000004,5.3970020000000005,2.8223966666666667,3.101755,2.32642,1.9383433333333333,1.195855,1.195855,2.60291,2.3822966666666665,2.8088266666666666,4.25328,1.739846,2.323095,1.84124,0.585864375,3.8972,0.6260033333333334,1.04235125,3.573595,4.394825,4.487745,1.6123825,4.838195,3.0089366666666666,0.8831714285714286,4.221425,3.7607485714285716,3.2162366666666666,2.384845,5.02315,0.2801565517241379,2.278067,3.26995,1.4924,3.71106,6.5868,2.30167,1.3775833333333332,3.92865,3.83315,2.8285466666666665,2.8285466666666665,3.538085,4.06823,4.59125,5.6549933333333335,4.90717,0.9695444444444443,2.56329,2.526996666666667,4.27472,5.04185,5.47245,4.676685,4.331,3.739333333333333,3.6760333333333333,3.3178199999999998,3.9715000000000003,3.090586666666667,3.0508100000000002,0.6406835714285714,2.3808675,2.3585725,3.78224,3.02717,3.14695,0.7614758333333334,2.4235,3.7004865,4.48195,5.6227,3.96451,2.0323825,2.0323825,0.820646,3.329715,4.48521,4.08286,4.777946428571429,3.35017,4.94763,0.6112227272727272,3.276625,3.97085,4.24944,3.5415208333333332,0.8778214285714286,3.437995,3.991965,5.2121,3.81819,4.963345,2.758155,4.33177,1.5557025,1.02334,2.7589066666666664,5.0608,4.047995,3.056305,1.4388216666666667,4.11451,2.4340775,2.7094,2.7581937777777776,3.1159499999999998,4.530766666666667,2.8278133333333333,1.685466,3.4729666666666668,1.514367380952381,2.8441466666666666,2.5966333333333336,2.2697875,2.8631166666666665,2.8549666666666664,2.4826266666666665,2.37841,3.494345,2.9861866666666668,3.405087,2.2148733333333332,1.763,4.269888333333333,2.936723333333333,2.49964,3.405087,2.3450233333333332,0.8026254545454545,2.36782,0.9961977777777778,2.19566,1.50427,0.9490454545454546,1.62341,1.8507925,2.73395575,2.619375,4.533255,1.5778275,3.998525,3.0768799999999996,1.55717,2.3626766666666668,2.5475733333333332,1.5096766666666666,2.7313266666666665,2.64311,2.632232272727273,2.081125,1.825458,3.4150666666666667,2.4667133333333333,2.79929,3.0938833333333338,3.0181566666666666,3.7654,2.0452533333333336,4.256833333333334,3.4432333333333336,3.740933333333333,2.927713333333333,3.5061666666666667,3.4992666666666667,1.81842,8.64354,4.31483,4.50523,3.12338,2.8143,2.040175,4.03588,1.71725,4.03132,4.311115,1.466054,2.5081333333333333,1.2044233333333334,2.649576666666667,1.6991566666666669,2.42738,5.134393333333334,3.1870433333333335,3.59069,4.859755,0.7820075,1.554648,0.9538740000000001,3.844755,11.028433333333336,4.075333333333334,6.6259,1.8971875,5.1581,4.26557,2.4556625,5.04785,0.2766094117647059,0.8500728571428572,5.1109,4.706905,6.8847225000000005,2.0329575,4.393945,5.58065,4.58978,4.547915,3.67674,4.49355,3.159875,5.59223,3.76217,3.34565,3.34839,2.117786666666667,2.1015166666666665,1.4880511458333334,2.47429,3.99054,4.726775,1.5957459999999999,9.1703,2.6287866666666666,2.8445716666666665,1.143754,1.143754,7.297740416666667,3.1827,2.3760575,2.0504475,2.6640533333333334,2.0866366666666667,1.01793,3.4331899999999997,2.69889,0.5571585714285715,1.6796166666666668,3.3746140000000002,3.3746140000000002,1.2320499999999999,2.4535666666666667,2.4080233333333334,2.7749800000000002,1.3595725,1.6522633333333332,4.739461333333333,2.68343,2.649225,1.28781,1.28781,4.118435,5.5432,4.462875,3.250445,3.77353,5.94352,3.358825,2.93849,3.283773333333333,4.040485,1.1599333333333333,3.2408133333333335,2.572925,3.82899,2.2273033333333334,4.85384,3.45508,4.25018,3.65902,5.32262,0.9870766666666666,2.020715,1.823865,3.6643,4.599945,4.014565,3.84298,3.99937,3.49164,1.6577375,4.285755,3.719905,3.291925,2.4375933333333335,0.8304175,3.538435,4.446945,4.777875,1.1903866666666667,2.9291199999999997,2.8015666666666665,2.100346666666667,1.801172843137255,1.801172843137255,1.2261616666666666,2.405393333333333,1.1030971428571428,1.393616,4.46364,4.47587,0.5041476190476191,4.057115,3.5529666666666664,3.923295,5.31805,0.4016505,9.521885000000001,5.3506,3.352775,3.765,4.4873,5.469787857142857,4.8182,6.418855000000001,0.6979372727272728,2.632753333333333,5.4011,2.885456666666667,1.7649025,2.00084,4.42532,5.1107837499999995,2.370198035714286,2.7163766666666667,3.1810766666666663,1.7580625,4.45775,10.82565,8.418341666666667,3.9226666666666667,4.527505,3.15749,3.08969,3.8198,1.816274,2.8590666666666666,3.789825,4.362725,4.54959,4.82851,6.5292433333333335,2.737296666666667,3.613545,4.591515,4.64189,5.1908,6.202906666666667,3.8657649999999997,6.12505,3.337405,2.802205,2.81278,5.39705,3.75994,5.4972,2.16827,3.044043333333333,3.40212,6.0649,4.27484,4.045115,1.44522,0.92428625,2.498845,0.59448,4.155575,3.64599,3.590895,2.85565,2.1210999999999998,3.01875,2.519575,3.041976,1.8805640000000001,2.97556,2.8677,2.2985275,2.6162,3.6802899999999994,1.222985,2.6840475,4.973005,3.8366000000000002,1.0091175,2.72391,3.7756808333333334,3.795643,1.582075,5.40725,5.4465,1.8948733333333332,2.90875,30.55496817234726,3.2564233333333337,1.6792,3.8546666666666667,1.6414499999999999,2.56222,2.9004766666666666,3.3033900000000003,1.9894275,2.766375,2.03794,3.4966475,3.0669566666666666,2.36399,1.5180125,2.1748000000000003,2.827,0.37629409090909094,1.05381,2.7214833333333335,1.649222,3.37779,1.582075,2.01097,25.351152166666665,5.1228,4.25053,3.57805,2.81309,2.42291,2.6357833333333334,2.2682425,3.548045,5.117036,5.37075,1.4993159999999999,1.842026,2.723095,2.5581466666666666,3.6373083333333334,5.30405,4.662965,4.368525,0.17368106382978724,4.7928,4.713033333333334,3.7719,8.80424,1.085995,1.085995,2.9452933333333333,3.063785,5.6026,1.9849433333333333,1.0008511111111111,4.888925,1.9233125,4.31215,3.995315,3.433115,3.89456,4.05402,4.53635,3.22053,0.74395,3.228195,2.1116775,4.415605,7.853815000000001,4.397905,2.3131233333333334,2.3131233333333334,6.608535,4.709235,4.1398,5.75355,2.343573333333333,5.219550833333334,1.31711,1.3662166666666666,2.8330300000000004,2.2065633333333334,3.325235,2.6851566666666664,3.79476,4.2543825,4.15414,5.52735,2.3470325,2.28321,1.797765,2.765775,2.38299,1.9912,2.0541725,4.779299166666666,1.8612075,3.5152695238095237,2.9666266666666665,3.1314766666666665,2.813883333333333,1.8633166666666667,1.435057142857143,0.9327819999999999,2.4070266666666664,3.8842,0.716746,4.64998,2.0683025,5.914642083333334,1.9824875,1.8801725,1.4676975,1.5397266666666667,5.586845555555556,1.76603,2.93859,3.5847333333333338,1.23856,1.81166,4.819268,3.1777266666666666,2.7807999999999997,3.5153666666666665,2.86649,2.7972433333333337,1.2050464285714284,0.3619333333333334,0.3619333333333334,0.3619333333333334,0.3619333333333334,0.3619333333333334,4.14329,2.606386666666667,2.3415,3.3800000000000003,1.35713,2.64343,3.1774533333333337,3.180946666666667,3.70413,3.03378,1.84021,2.96656,3.15808,2.1639425,1.9827425,3.632065,2.7464566666666665,3.417566666666667,5.2388,2.709433333333333,2.7096199999999997,2.526213333333333,10.871236666666666,4.78032,4.57873,4.746835,4.03886,2.9331866666666664,5.1777,3.596485,3.19781,6.107138333333333,3.91596,2.950845,2.0089975,3.5749,5.0120641428571435,3.37779,17.10207557142857,1.1514075,4.484815,0.8533133333333334,1.21122375,2.783425,4.77551,3.740035,4.43184,1.4593800000000001,2.336515,4.205655,2.7202,4.56738,3.2065442857142856,2.69774,0.6756733333333332,2.5274966666666665,4.541595,2.2888075,2.4126925,2.1678325,19.665996666666665,1.653798,1.2581875,2.5257866666666664,0.30883730769230766,1.91608,2.797413333333333,2.0616033333333332,3.057176666666667,2.715125,7.404046666666667,2.00243,2.4278075,2.2530225,2.1326925,1.570405,3.3171933333333334,3.0722,3.21179,2.937466666666667,2.001595,2.6272358333333337,3.128858888888889,4.695885,0.4060391666666667,3.2808433333333333,2.87625,3.005985,2.009355,3.547508,3.559755,1.5311933333333334,2.2628533333333336,2.2804466666666667,1.3902566666666667,2.0870666666666664,3.70274,3.31463,0.7846633333333334,3.31271,5.24905,4.049675,2.267732,2.267732,2.8909833333333332,4.692455,3.21101,3.26535,2.20412,1.0039090909090909,4.331575,3.55054,5.9871,4.17107,2.4050700000000003,2.4050700000000003,1.59468,3.47423,5.01895,3.955015,4.14332,3.2880000000000003,2.30997,4.50766,3.408905,4.070905,2.89918,2.3924566666666665,4.3175213333333335,3.162993333333333,2.706436666666667,1.9840666666666669,3.4161,2.533825,1.5902900000000002,3.60357,3.646515,4.439495,3.3155933333333336,4.73935,4.08471,6.5095332500000005,3.91797,2.20216,4.63413,2.702835,7.288495,2.4962233333333335,1.2830000000000001,4.20148,3.3373333333333335,4.427065,0.5074592857142857,0.8026691666666667,3.78716,3.77409,2.2057963636363636,4.351235,2.815065,2.955525,9.110196,1.8294260000000002,1.2413859999999999,3.7342,2.53432,3.464435,4.98311,6.5189699999999995,3.10128,2.1726433333333333,3.1728433333333332,1.8726500000000001,3.376133333333333,8.331235090311987,0.9711192857142857,1.07414,4.62234,0.5114526666666667,1.5409175,2.1391625,2.860025,2.955675,2.637725,4.51265,2.322555,12.872485,5.221795,2.315695,2.315695,4.108445,0.78859,4.861606666666667,3.91309,4.03647,6.2580116666666665,3.34872,4.22736,1.3499166666666669,2.80933,2.7108,2.712835,3.118495,2.679955,3.065415,3.573835,3.679895,2.975565,2.980415,2.890315,4.12493,4.58467,2.9383166666666667,3.1502533333333336,4.801076666666666,4.150055,18.239064523809525,12.047954285714285,3.120704285714286,0.6882166666666666,1.461042857142857,4.450305,3.511895,2.961023205128205,1.853705,0.8173711111111112,0.6373766666666667,0.9837828571428571,2.11371,1.581334,5.2095166666666675,3.3257666666666665,0.7016709090909091,3.40666,2.256175,2.0091075,1.790298,6.33275,1.542092,4.88421,2.855675,2.8583866666666666,2.41514,2.70561,2.6185466666666666,0.7804854545454546,3.07682,2.9611466666666666,3.763038,2.8737366666666664,4.7376016666666665,3.55043,3.3181,2.3087425,3.54563,7.84535,2.0879525,2.37312,2.429425,1.6313775,2.426355,2.095665,2.5909,0.8396990000000001,1.30323,0.94960375,2.64508,4.089225,5.90305,5.48725,2.97736,2.337505,2.9495,3.4766333333333335,7.798939999999999,1.2146733333333333,0.396756875,2.850885,2.005673333333333,1.535196,3.453678,1.2579879999999999,1.889341,4.031711666666666,2.904666,1.2016716666666667,1.8765933333333333,4.076308333333333,3.500525,4.45333,4.248125,2.129275,5.14855,3.848085,0.7870384615384616,4.80401,3.83132,4.2200412499999995,3.2231,2.29836,1.315682,1.2803475,3.55366,2.71568,3.41342,4.08586,2.738845,2.7925,3.21625,3.60571,4.91056,2.151875,2.717965,4.328535,5.90715,0.547905,4.395655,1.7443,3.510175,3.9564,2.119365,3.204165,2.19342,2.22322,2.616065,2.3629308333333334,1.7470466666666666,5.0763,3.665475,1.2499271428571428,6.87954,1.1207866666666666,3.659115,1.70888,4.357195,3.911975,2.7267733333333335,3.11908,4.117015,8.91654,2.942825,3.706495,3.774305,3.616885,1.7632975,7.96715,3.597865,4.155045,1.441965,4.177155,3.028705,1.12612125,2.08486,4.149765,2.20265,4.03273,4.9049425,4.2419649999999995,4.59135,2.320645,5.3412,4.007875,3.1670766666666665,2.3194133333333333,1.6222999999999999,4.558185,6.2669,4.662755,4.63807,3.1188,2.2389175,4.231505,3.290635,1.0894813736263735,4.221905,4.805991666666666,4.17542,2.76093,3.60005,0.6738771428571428,0.6738771428571428,5.42765,4.3208,5.16895,2.26484,3.814605,5.2189,0.8084770000000001,4.01307,4.789375,4.53299,4.780895,4.59411,1.8488575,3.123475,2.1293025,4.391345,0.6701625,3.965175,4.141015,2.757045,2.7907466666666667,4.174645,2.28957,3.198225,59.29312227922078,3.24498,2.79989,1.68603,3.352685,3.98466,0.81669375,0.97935125,2.17705,2.17705,1.314308,3.273585,2.34541,3.8086814999999996,7.42818,2.8846566666666664,1.2249199999999998,1.3398349999999999,2.712073333333333,4.083785833333333,0.9025209999999999,2.06638,1.168002,1.89333,3.578855,4.09099,3.06335,21.250200064935065,4.04466,3.81574,3.116155,2.1459699999999997,2.918315,3.299295,2.3627525,5.44749,1.4709619999999999,3.84652,3.3601161626984126,5.938920555555556,1.98962,2.575165,1.88416,4.226115,2.2404100000000002,2.105725,2.05838,3.426666111111111,3.79017,3.49168,4.03336,4.233945,2.531825,2.617515,2.96387,2.702985,2.870591111111111,2.201095,1.8587325,3.443575,1.1754200000000001,4.03628,4.553415,2.57139,4.716015,4.70008,6.240861666666667,1.9362366666666666,2.50557,2.646905,2.785135,4.155025,3.32871,4.606195,0.7412099999999999,3.896872666666667,2.866425,3.72686,2.2818725,1.7891940000000002,4.01357,1.2082777777777778,3.038595,4.34915,1.123524,3.777915,3.372345,4.466405,5.9085149999999995,2.08435,2.845865,2.6295733333333335,3.7662,2.57532,2.536384,3.4258333333333333,2.419493333333333,2.468523333333333,1.4419266666666666,1.9461825,1.9461825,1.8784466666666668,2.0879366666666668,2.1665733333333335,3.2023566666666667,3.69058,5.37885,4.003135,1.57669,4.363385,4.180195,3.61667,4.194585,1.95679,1.79138,4.702385,1.82609,4.501778333333333,4.245825,3.70176,2.4787266666666667,3.972525625,3.124085,3.3896,3.506705,0.14563938775510205,2.7081733333333333,7.70388,1.515804,3.34244,3.62471,0.9883714285714286,1.2166466666666667,1.9185025,3.948945,3.07238,7.019604999999999,4.091075,3.66991,2.977835,2.70605,3.441295,3.479845,4.081065,3.484915,2.8509666666666664,5.30715,4.12967,4.42927,2.7732833333333335,1.878335,3.454685,4.5135,2.629495,3.206715,1.983875,2.50644,4.119445,3.75373,2.88183,4.275065,4.96335,2.757925,4.663385,4.45044,3.590395,4.597935,3.56376,3.1432,6.09472,4.38696,5.2463,5.03225,4.37387,5.23385,4.933915,3.800595,1.4216039999999999,6.6635,2.49854,4.740175,4.22696,4.19462,3.0610233333333334,1.9962633333333333,2.224153333333333,2.2943366666666667,0.9429169999999999,3.4011,3.2834233333333334,3.0433766666666666,1.9980966666666669,3.715615,4.397045,2.5835166666666667,0.5464841666666667,4.30096,4.50444,4.750435,4.53288,3.5526,4.499345,5.10845,4.751265,1.3987555555555558,0.932023076923077,2.6565833333333333,5.05835,5.6773,0.48679625,2.84649,2.54244,4.213015,4.437245,3.8031,1.9284125,4.877355,4.079815,4.29503,2.946995,6.17685,4.89624,6.87808,0.5942691666666667,4.13813,0.8088660000000001,2.254045,4.026766666666666,3.24414,1.3919733333333333,2.22006,4.26237,3.493335,4.19411,1.9829299999999999,1.88656,2.85942,4.697615,3.97891,3.853405,1.684206,1.1506274285714284,5.8291,2.1975575,7.7222574999999996,4.624935,3.691245,2.126245,1.6285425,4.11272,4.669595,1.6895333333333333,2.531475,2.4623225,2.7081733333333333,6.704481666666666,3.0573733333333335,2.8290933333333332,3.86949,3.768235,2.051806666666667,4.850825,6.9272525,4.60289,5.1389,0.5633545454545454,3.561615,4.108435,4.620933571428571,3.89137,4.147605,2.9705,2.85958,3.29208,2.873135,3.7334026666666666,1.7395340000000001,5.322254,4.424365,4.86211,3.83089,3.406475,3.264485,2.28078,1.267115,0.9381,2.817915,2.397245,1.08554,2.6673666666666667,5.5206,5.10245,3.52034,4.28005,16.364696904761907,4.44002,4.473475,4.20612,0.7264050000000001,5.30475,4.476675,4.147005,4.75096,5.3152,2.46806,3.768905,3.341395,1.570582,3.236585,4.67543,3.25968,1.4984540000000002,4.09758,5.03835,4.00794,5.11545,4.69894,5.4808,4.073065,2.7262466666666665,4.294655,4.153295,2.573055,3.0078333333333336,2.9106799999999997,1.8104716666666665,5.0042,2.762085,1.9886633333333332,3.970095,2.43379,4.40992,4.269888333333333,2.010535,2.577015,4.243205,3.704205,4.483965,4.20563,4.551345,5.120013,3.21445,5.384,2.6089083333333334,3.378185,3.415315,1.5382,4.526925,1.016505,4.357945,3.190075,0.9639085714285713,3.681655,2.03408,6.320485,2.6302648095238093,2.6302648095238093,2.6302648095238093,0.8266183333333333,1.1718916666666666,1.800715,3.480315,5.67756,3.414022777777778,1.88901,2.14956,1.7046466666666669,3.6918,2.40125,0.3936930769230769,1.732705,2.13133,2.870835,1.89639,2.572845,2.38197,2.0754975,3.78717,2.8914866666666668,3.118035,2.930945,2.1053,6.54497,2.07457,4.29414,3.811825,6.350498333333333,1.6891666666666667,3.57565,3.51519,3.59683,4.404595,2.68997,1.980465,3.848115,5.867598666666666,2.069405,3.657085,3.20976,1.92643,4.877755,4.52045,2.5023866666666668,2.20047,3.7875625,5.832253571428572,5.6664,3.29371,2.485225,2.85829,3.02853,3.062265,3.676505,1.30548,2.668215,4.483405,0.8046375,3.851555,3.905905,4.040095,4.394735,2.378625,3.39991,2.02279,4.61121,7.600925,4.478505,3.491695,3.978695,1.01285125,4.46753,2.3971,4.33846,5.3745825,3.988685,4.1316,11.201975000000001,4.727065,3.77556,1.4679825,0.6879191666666666,2.80397,3.832805,3.353945,3.71192,2.199596666666667,3.183146666666667,2.3381933333333333,1.2711283333333332,1.2711283333333332,1.9456966666666666,2.3665233333333333,2.561996666666667,2.38084,3.6407000000000003,2.923493333333333,3.033253333333333,2.7010566666666667,1.3996466666666667,2.2695433333333335,2.0779433333333333,1.7464233333333334,1.5221625,2.261836666666667,0.6896816666666666,9.820691666666667,0.6896816666666666,3.2878066666666665,2.043345,2.0366566666666666,4.32107,4.346385,4.87869,4.872195,2.4032833333333334,2.910856666666667,3.300822,2.17985,3.345266666666667,3.1046,2.562673333333333,2.934786666666667,1.8618066666666666,5.35975,6.326232380952381,3.4263,3.348133333333333,2.9451033333333334,2.65568,2.66193,1.1872157142857145,3.3591333333333337,3.1593733333333334,3.871575,5.81585,4.438655,2.8856866666666665,3.3603,3.0866166666666666,4.166092222222223,4.170265,2.6633566666666666,3.525555,3.205216666666667,2.98263,4.65566,3.149483333333333,3.94238,5.944558333333333,2.7767133333333334,2.6935066666666665,1.5932366666666666,1.3157133333333333,4.9244200000000005,3.4553849999999997,2.60498,2.049446666666667,2.302896666666667,5.00435,3.73813,3.092485,3.2322433333333334,3.3342666666666667,3.5193333333333334,3.5365333333333333,3.5544,3.1686433333333333,0.55759,3.8171,2.5317366666666667,2.68271,3.520455,4.53004,4.821185,5.5287,2.609535,4.320663333333333,1.2071183333333333,2.6909233333333336,2.6909233333333336,4.56784,3.318025,3.787205,3.577315,1.631985,2.800285,3.827915,1.0439271428571428,3.6574008333333334,3.442957333333333,2.1783773333333336,0.354484,3.51919,3.31135,6.88688,3.151655,6.18725,3.218255,3.858675,4.37269,1.8234954166666668,3.09439,4.53724,3.279505,3.151206666666667,2.9684066666666666,5.837355,2.167105,1.02821625,2.10326,1.7309766666666666,5.31825,2.36163,2.4553133333333332,1.90772,4.631385,3.96473,4.56574,0.6030840000000001,4.422535,3.907105,2.74,2.570883333333333,2.8700833333333335,3.3101333333333334,4.06415,1.6409366666666667,0.6561263157894737,0.7840571428571429,3.3935333333333335,4.337545,6.065993333333333,4.747475,4.79222,5.26595,1.3498385714285714,3.9564,2.0969433333333334,0.99303,5.26415,5.8754,3.461285,4.85413,4.07468,6.922736666666667,4.115733333333334,7.161316666666667,3.846625,2.5749931944444446,5.9909,10.296749647435897,2.5136066666666665,0.678652,3.314755,4.03919,2.083035,6.2896,4.775905,3.65307,2.9165200000000002,2.9165200000000002,5.37985,3.43526,3.95914,5.09885,4.04054,2.45684,1.06868375,5.33335,2.630795,5.3207375,3.57817,4.520005,2.89253,2.1950075,4.660905,4.581635,3.6342666666666665,3.89587,4.43154,27.832291785714286,2.002435,2.545575,2.3519225,1.575115,2.639413333333333,1.2221842857142857,2.91476,3.0372033333333337,3.2953166666666664,3.31209,0.6934615384615385,3.2092166666666664,4.18953,2.97931,3.1790800000000004,3.929975,5.83947,4.865705,4.40256,4.072535,3.9000075,3.86218,3.4967666666666664,1.6757825,1.0068666666666666,1.40282,3.2227533333333334,1.5211033333333335,3.08713,2.4579333333333335,2.3622333333333336,1.95924,2.676955,1.986085,1.87066,3.01918,4.221115,3.811415,4.097005,1.481696,3.976766666666667,2.5320966666666664,4.312815,2.4309499999999997,2.606285,2.59719,1.4112833333333334,4.13995,6.461873333333333,2.85856,3.58094,4.074265,2.520575,3.2230100000000004,3.482366666666667,4.35963,4.686435,0.29516671814671813,0.29516671814671813,4.88562,5.0537,4.303075,2.956805,5.31835,4.716565,0.659806923076923,4.670235,4.64758,3.73736,6.55145,4.71085,7.65381,13.991426666666667,12.616573717948718,4.28398,4.18058,2.494623333333333,0.6048153846153845,2.6122466666666666,4.88765,1.3077866666666667,4.394125,3.4833,2.8689533333333332,2.0629233333333334,1.8809666666666667,4.65973,4.27782,8.94581761904762,5.15905,4.14402,7.149356325757576,3.438075,3.0887933333333333,1.5059475,5.365418333333333,1.996085,2.3638266666666667,2.8076933333333334,0.2805403125,2.929015,3.550845,4.6946325,0.904538,1.2884900000000001,3.9596,0.568573,0.568573,2.9529704166666666,3.046,3.384866666666667,3.91921,4.299495,5.45795,3.8496,4.221975,3.075,3.035956666666667,2.6880666666666664,0.8626833333333334,2.7111,2.873435,3.24673,7.121734999999999,2.942525,9.113199999999999,3.00175,5.8265,2.964905,2.33036,2.7004,2.949775,1.7636175,2.341685,1.94392,3.907925,2.4858425,3.87113,2.94142,4.080295,4.080295,2.6814541666666667,2.6814541666666667,8.925084833333333,2.59346,0.795993,2.6050833333333334,2.5326733333333333,2.5870266666666666,3.87113,1.9985659999999998,1.815792,1.520514,4.331735,4.286765,1.690155,4.41472,4.17628,6.027178888888889,6.587648333333334,2.272743333333333,4.181705,6.4287,4.50652,3.226495,2.4119566666666667,3.641885,3.4250960606060605,4.245165,5.338975,7.804973333333333,3.4476312499999997,3.142685,1.1781983333333332,4.43519,3.98102,4.368245,3.7847325000000005,4.369935,2.74411,2.50707,6.865285,2.989385,1.248686,5.73913,3.715695,2.9769433333333333,4.82316,2.9769433333333333,3.45791,3.8995,4.870085,1.0682414285714286,3.864437777777778,4.474685,3.51611,1.366805,1.6990175,4.26203,3.95654,2.691655,6.6145966666666665,4.652585,3.751435,3.9291,4.2291799999999995,1.4099175,3.91286,2.69767,3.836885,4.127515,3.7229,4.64448,3.094465,4.138325,5.011,2.0970516666666668,1.882705,3.4714333333333336,3.5554333333333332,3.3371333333333335,3.01913,3.685866666666667,2.9285033333333335,5.1398,3.67888,3.470305,2.99895,1.9239766666666667,3.5698000000000003,2.0025833333333334,3.113215,3.10654,2.74602,0.6701625,2.14861,1.7686233333333332,3.30438,1.888814,3.295936,3.40576,1.276488,3.1855575,4.79784,0.856666,1.3353333333333335,3.341615,3.84116,3.275775,2.046715,1.7058166666666665,3.494015,2.5289133333333336,1.6868966666666667,2.953005,1.94535,1.1633,1.39532,6.163365,3.130145,2.2854,2.477685,2.44744,3.78289,0.8782425,0.3471121428571428,0.7834042857142858,5.0074,1.9960974285714286,4.68305,2.1295125,2.0826122857142857,3.3892082857142856,1.3065959999999999,0.9951742857142858,0.63495,0.56933,2.998876666666667,6.52705,3.050105,3.606155,0.32968857142857144,3.701625,19.406341047619048,3.20943,7.367012592657343,1.0607025,1.0607025,1.0607025,1.0607025,5.580025833333334,3.97513,3.881065,2.1304333333333334,2.96777,4.343565,4.293125,3.544705,3.648585,4.398785,4.175625,3.6048,3.7455353333333337,4.185655,4.908395,4.002935,4.541915,3.41992,4.112295,2.612206666666667,3.853255,3.445675,3.864305,3.796335,4.283395,3.3217700000000003,2.511525,2.438023333333333,4.317885,1.192455,3.74832,2.8145100000000003,3.4446580000000004,4.2419649999999995,4.314625,3.15795,2.8639,5.2578,3.30335,3.2031,5.16225,4.79785,3.108115,4.76758,1.7477440000000002,1.7477440000000002,1.9499625,4.61258,3.690275,5.86285,4.972495,3.551645,6.59205,4.30223,2.55715,9.19896,4.95083,6.25136,4.44002,2.9110033333333334,4.06291,0.25233689655172414,0.84097375,3.530838,3.45596,4.816785,2.9555133333333337,6.138673333333334,4.74529,0.5633992857142858,3.48414,0.5223329999999999,1.766287142857143,3.69304,1.831615,3.60569,3.59406,3.413625,3.4243,3.43615,3.687185,3.474405,3.71241,4.130165,2.566145,1.766287142857143,2.695445,2.143515,3.63398,2.24637,3.929335,3.587715,1.7632975,4.349015,4.049935,1.4091866666666668,5.2501,4.64213,4.110225,2.8209666666666666,2.969856666666667,4.77708,2.0112,1.4298579999999999,2.5022433333333334,2.6522900000000003,2.61161,2.08466,5.0727,3.43567,5.119666666666667,3.9185692857142858,4.828405,4.187715,1.6399219999999999,5.2698,4.580295,5.29265,4.13694,7.3405249999999995,1.7116075,4.96249,3.872835,3.19071,1.9376075,1.7806499999999998,3.986335,4.399775,2.5242633333333333,2.8589891666666665,3.2563874999999998,3.2563874999999998,2.723376666666667,3.166653333333333,3.48768,3.997375,3.655525,0.7997000000000001,3.155975,4.31954,4.790786111111111,2.91498,3.10654,1.7585275,2.80163,3.46457,2.11929,4.285175,3.35327,4.4078,1.8032266666666665,0.9822727272727273,6.49111,3.53352,3.3837333333333333,3.0282066666666663,1.7645,29.931663202380953,4.05766,3.364045,5.04355,4.225755,0.8353083333333333,7.161355,1.9703175,5.62325,1.5961866666666669,4.20503,5.422795,3.68923,3.069525,2.35065,3.621866666666667,4.7836,2.00127,2.7891100000000004,3.56864,3.672655,2.4836,6.1355,2.18883,6.0026,1.12018125,4.574255,3.525675,3.931285,4.88087,3.094995,2.3205933333333335,4.1787,4.676545,3.6135575,3.6135575,5.82875,2.1289175,5.31195,6.961806666666667,3.40464,4.14588,3.152465,3.772845,3.407245,4.089605,1.4485825,2.278195,4.240935,4.222605,5.53165,4.50463,2.01405,9.40212,3.11837,3.867595,1.6549142857142858,3.71519,2.2410433333333333,2.74915,2.509374583333333,1.3510633333333333,2.760536666666667,0.9164399999999999,1.1584957142857142,1.1584957142857142,1.1584957142857142,2.2337433333333334,0.57894125,3.899405,1.36128,2.7314433333333334,0.9465383333333333,1.7922033333333334,2.6729633333333336,2.123526666666667,0.7730125,1.74855,1.60792,2.3043566666666666,1.6787379999999998,1.6787379999999998,1.6932033333333332,2.02566,1.011404,2.4403433333333333,1.5256966666666667,1.16304,2.25248,2.10011,5.8258,1.5874,5.1674,17.789527833333334,6.700279999999999,4.59069,3.5666333333333338,3.355,2.819656666666667,2.7866066666666662,2.8027366666666667,0.7015816666666667,0.9906560000000001,0.9906560000000001,0.61880875,2.31492,3.89004,3.93387,1.51963,4.962365,3.569765,2.49076,3.90749,4.775905,4.015815,4.220015,3.466666666666667,3.09922,3.376435,5.62105,3.094993333333333,4.694015,0.51058,0.51058,2.484305,3.06752,5.1338,3.48409,4.22367,4.73242,7.32282,7.67398,3.476395,2.29312,5.2533,3.67855,2.51048,2.34019,3.244555,1.2656966666666667,3.374935,2.56797,2.001225,3.3423,4.05318,2.00902,5.338975,1.566195,3.4912666666666667,3.710715,0.9925028571428571,3.563133333333333,2.7754999999999996,4.676255,1.15838,1.7705675,2.4483875,2.16284,1.77937,2.4431875,2.0113725,1.93451,4.327865,4.39791,2.344545,1.766255,1.43579,3.5709999999999997,2.06216,2.767025,4.407875,6.65375,2.2635066666666668,3.081815,3.478725,3.633055,2.366595,4.94977,4.665355,2.929945,1.39275,4.243315,2.36151,2.8672466666666665,2.686505,3.915145,4.919185,5.33385,2.29894,2.8199400000000003,2.8011766666666666,3.327643333333333,1.9249833333333333,1.453102,5.3828,3.399433333333333,2.244422,3.012976666666667,2.96114,2.328466666666667,3.3576,3.0827666666666667,3.5545333333333335,5.2927,3.945015,3.0146533333333334,5.08825,3.399375,2.36461,3.384425,3.91457,3.45219,5.966883,1.893038,3.866015,2.482165,3.82257,3.60521,0.5584825,2.31281,2.29722,3.512375,2.64959,2.28716,2.70286,0.610462,2.8052333333333332,4.378555,2.419375,4.188825,2.3837433333333333,3.99036,1.9416575,4.52601,3.902365,1.881656,3.351775,6.759532500000001,3.872775,4.363895,4.94533,7.176461136363637,4.23659,4.28935,2.1689425,4.62854,3.028375,1.9171633333333336,1.9080125,3.10772,1.0208042857142856,2.4070266666666664,3.0313833333333338,2.6940166666666667,3.3534333333333333,1.8703420000000002,3.36653,1.86902,5.5322,6.462832499999999,1.04031125,1.8528,2.636083333333333,2.8183566666666664,2.0154733333333334,1.077525,5.660123333333333,2.1935875,2.6977533333333334,3.5334333333333334,3.11333,3.3351,3.12872,2.18559,2.8607333333333336,2.4231166666666666,4.30977,4.03248,4.095125,3.4478666666666666,3.4034333333333335,0.924023,1.7793433333333333,2.1677175,2.1899433333333334,2.641313333333333,1.139785,2.7230133333333337,3.045576666666667,3.89509,1.9230533333333335,3.635215,3.827245,5.4688,3.463565,0.6026658333333333,2.0101400000000003,2.7150433333333335,3.310916666666667,0.7689463636363637,2.722046666666667,3.3710459999999998,3.19107,2.73132,3.4267783333333335,3.81307,3.7728,3.038816666666667,1.9800525,5.55765,5.0689,5.06165,5.42495,5.52315,1.8183533333333333,3.323155,3.7228666666666665,3.2744999999999997,2.97575,2.7021633333333335,3.9831333333333334,3.3927,3.0036533333333337,13.792666666666667,4.32654,1.0989499999999999,2.8124633333333335,1.512186,3.1033033333333333,3.05698,2.33653,5.497370833333333,6.245228833333334,2.2966433333333334,0.8737130000000001,4.23766,3.3117666666666667,2.990515,5.09595,5.47635,5.73125,4.73523,3.491455,1.9397625,6.478507499999999,1.1781983333333332,6.5382025,4.49465,2.5981566666666667,4.05318,7.2157566666666675,5.68955,2.17822,1.4129766666666665,1.9649775,6.7676300000000005,1.582075,2.9464333333333332,2.618395,4.201327777777777,5.4556,4.29549,6.22115,3.60618,5.1252,3.91332,8.4728,5.11965,5.72315,2.14029,2.561975,11.250876666666667,3.31288,2.669725,2.402883333333333,1.5118033333333332,2.768003333333333,2.642936666666667,0.66306875,1.216356,1.1552357142857144,3.403645,6.763979999999999,3.104646,1.4226866666666667,5.32045,4.348105,0.589054,4.20801,3.675615,4.29844,3.76977,3.38003,2.5804833333333335,4.2029,10.048,1.828495,4.200685,4.156825,4.583435,3.79063,0.8496583333333333,3.6872666666666665,3.8968000000000003,1.6345966666666667,2.5334033333333332,2.3592400000000002,2.541723333333333,2.3325666666666667,2.1191,2.068395,5.781644285714286,4.858055,3.95401,4.81414,1.7460699999999998,2.4155,4.6513,4.652875,4.86714,4.3192,4.616025,5.0262,1.7477440000000002,3.838345,7.354891666666667,1.24765,1.7313033333333332,2.71815,3.05329,2.8046,4.8900575,0.7840571428571429,2.43469,3.617555,6.0902,4.40756,2.4652333333333334,2.9293866666666664,2.0135175,0.545711875,2.4580325,2.894155,7.734075000000001,4.31549,4.266645,0.8930049999999999,4.100833333333333,9.140134166666666,11.550866666666668,3.48655,1.159395,3.59466,3.634405,2.6505300000000003,5.240604666666666,4.743495,3.74615,2.007135,3.6574000000000004,2.13493,2.5203933333333333,0.79375,0.4004393333333333,2.58642,3.19621,1.8933561666666665,3.253,3.1974400000000003,4.058205,5.15,1.484482,3.07836,2.1966125,2.1966125,2.146275,2.84146,5.2757,2.7987133333333336,2.733696666666667,3.2510166666666667,3.4551,4.413315,4.17194,4.183615,4.170375,3.942165,4.06133,6.8559,7.5889425,1.8948725,2.23937,2.7942133333333334,0.8935233333333333,0.6968616666666666,3.926435,2.3375,5.2633,2.9636433333333336,2.9334133333333337,1.7974599999999998,1.46164,3.47036,4.199875,4.387085,1.8545999999999998,1.3024433333333334,2.6342033333333332,2.0331366666666666,2.5521833333333332,1.1228642857142856,1.1228642857142856,2.7988233333333334,4.38857,2.77909,2.88852,3.503445,2.151885,19.719434590909092,3.885875,5.422477499999999,4.119555,4.07631,3.868425,3.68333,5.3797,6.1530249999999995,0.9639099999999999,0.9639099999999999,0.9639099999999999,2.6935333333333333,1.7205714285714286,3.5059666666666662,4.340655,3.99397,3.28997,4.540715,4.6197,0.9187366666666666,2.68803,2.5189866666666667,6.062429333333333,3.362746,4.014439333333334,4.708415,2.119365,2.0453733333333335,2.2949100000000002,0.52987625,0.857318,1.737695,2.098365,2.950985,12.97681,2.63074,5.25415,0.7176357142857144,9.788327500000001,5.7271,3.82402,4.25202,2.5231,5.4127,2.5231,2.6389839999999998,3.493515,3.798045,3.42803,3.813625,4.42556,3.45208,5.8396,6.89086,1.76502,2.96197,2.739225,26.473194503861002,1.7181000000000002,6.2748,4.680070000000001,3.969935,4.03985,4.55799,2.88314,2.7757,2.153435,6.50245,7.07525,4.70373,4.53545,4.396975,1.9419325,2.036845,4.19563,0.6386646153846154,0.6386646153846154,0.6386646153846154,0.6386646153846154,4.34442,3.137855,0.8709133333333333,1.7478666666666667,1.1560555555555556,4.254535,2.523756666666667,2.18864,7.000590000000001,3.1712333333333333,0.27424310344827585,19.9636605,4.429661666666666,1.7860600000000002,1.2873110714285714,2.1909199999999998,1.881088,2.3312875,4.57647,2.9607,4.08369,4.155915,2.164363333333333,7.140252500000001,2.68179,2.031195,3.49058,5.9043,8.230453333333333,4.43604,0.2949317073170732,3.558065,3.9707,2.851383333333333,2.072245,2.94646,1.6182916666666667,1.6182916666666667,4.04384,5.861225,11.708968333333333,9.350200000000001,0.6420333333333333,2.4567799999999997,4.053795,3.2932,5.0837,4.96637,1.730746,1.730746,3.24177,4.360955,2.272463333333333,3.692025,4.90693,5.6856,6.03434,2.0569800000000003,4.86965,4.30289,2.72326,3.0392533333333334,3.217093333333333,4.79595,4.2773,5.31885,4.210145,4.13034,3.76095,4.426235,4.073155,5.3198,2.686196666666667,3.1719233333333334,1.154908,4.342735,4.081235,3.647315,1.692834,1.8705466666666668,3.10908,2.892576666666667,2.204946666666667,4.667816666666667,1.8339999999999999,2.784675,3.25601,3.4996666666666667,2.6472,3.4150333333333336,3.9545666666666666,3.048853333333333,3.8994999999999997,4.345158333333333,2.0881066666666666,2.7907433333333334,2.605096666666667,5.3941,2.8815033333333333,40.4354405,2.4228810909090908,2.4228810909090908,2.55791,2.9743399999999998,2.2002566666666667,1.6095433333333335,2.9549066666666666,1.8203699999999998,0.7613546153846154,4.88346,6.8713999999999995,4.09192,3.817755,5.5747,1.9644833333333331,4.414215,1.76581,5.08015,4.89044,5.5399,3.950175,1.6757825,4.25912,4.940785,4.76068,4.78217,5.27965,3.944935,3.3548333333333336,2.8234766666666666,2.179615,1.90583,4.32045,2.3108833333333334,3.8718875,3.8718875,2.22965,1.5487833333333334,2.25402,2.5260633333333335,2.5671666666666666,5.14444,2.643683333333333,1.1595033333333333,1.1595033333333333,3.5916,2.01945,2.450743333333333,2.6561233333333334,2.64695,2.5064766666666665,2.2790033333333333,2.21120375,3.04247375,1.62454375,0.83127,60.8501301875,2.451014,3.1326433333333337,2.210522,0.865658,3.560547333333333,1.622064,1.622064,2.98012,3.0090766666666666,0.79327375,2.65301,5.2497799999999994,3.5311333333333335,2.367383333333333,2.7856433333333332,2.0320933333333335,2.6082020000000004,0.292533125,2.3753733333333336,0.772032,2.52357,1.23234,1.23234,2.8740400000000004,1.461134,2.3354266666666668,1.4686173333333334,2.9387066666666666,1.4686173333333334,2.1472866666666666,2.6261933333333336,3.6634333333333333,1.581072,1.581072,2.8247133333333334,1.3785100000000001,3.120316666666667,2.0959833333333333,4.49267,3.973165,12.575706750000002,7.1275025,3.635895,2.752235,4.072725,5.26545,5.4698,2.6163708333333333,4.29381,4.098695,2.3674933333333334,4.352245,3.249686666666667,2.7475400000000003,4.25113,2.2821466666666668,1.0435771428571428,3.886120833333333,2.793283333333333,3.171275,0.7859871428571428,2.690685,3.58244,4.06459,4.411355,6.4827,2.7202,1.8631900000000001,4.035905,4.16485,2.278785,2.5573266666666665,2.13163,2.1435526666666664,0.903716,4.994745,4.244185,3.92088,3.85675,3.13044,4.486655,5.02455,2.8290933333333332,1.6670433333333332,0.5113706666666666,14.444958166666668,0.5095518181818183,0.5095518181818183,0.5095518181818183,3.072853333333333,3.8004333333333338,0.5095518181818183,7.313271666666667,4.419336666666666,0.7177330000000001,0.7177330000000001,3.2883266666666664,3.244415,2.8719,4.40455,4.689,4.185937,2.1300775,4.793817333333333,3.195135,3.382744226190476,4.77607,2.861593,2.2864625,2.5996,2.639075,1.7134775,3.300064166666667,2.949673333333333,2.3225225,2.082095,1.9840925,1.8188166666666667,1.64031,2.5499,1.065428888888889,2.5264,0.5829728571428571,4.95207,1.647155,0.7133116666666667,2.292875,8.002531666666666,2.402265,2.0385915,3.12096,7.73756,3.177,4.32058,3.07907,5.74801,3.786275,3.727725,4.042485,5.13895,2.8802566666666665,4.2508816666666664,1.1299071428571428,4.204255,2.4275333333333333,2.42908,2.50327,2.357085,2.13218,1.21295,5.47595,0.9490454545454546,4.791275,5.38545,4.870185,5.7936,3.7536666666666663,2.44278,1.927228,2.8023833333333332,3.0034533333333333,2.582585,3.7100333333333335,2.661475,4.182795,1.7992599999999999,40.43756591269841,4.65408,2.33024,2.8325333333333336,3.0887666666666664,1.4858666666666667,5.717561666666667,4.254185,2.5311666666666666,3.5869666666666666,2.43282,1.59061,5.31215,0.7737357142857143,5.344190714285714,1.3132357142857143,3.29495,3.4065666666666665,2.8494966666666666,1.411575,4.716613333333333,1.6952559999999999,1.6952559999999999,2.4472666666666667,2.8572695833333333,3.5382,3.3732666666666664,1.43011,2.889283333333333,2.6412533333333332,6.2205625,3.0231366666666664,4.134528333333334,1.5789283333333335,1.37887,3.082876666666667,0.9021979999999999,5.247938333333333,3.4981000000000004,2.8845233333333336,3.705833333333333,3.002076666666667,2.7599366666666665,3.177296666666667,1.7583933333333333,2.44744,2.60745,3.32377,2.4116666666666666,3.6863333333333332,2.4229933333333333,0.5938246666666667,9.589999294871795,2.80515,5.0476,4.86501,2.7429566666666667,2.994596666666667,1.3382025,2.1526133333333335,2.193935,1.3382025,4.081385,0.47613125,0.47613125,1.3797825,1.3797825,0.7481325,0.7481325,2.51376,3.10402,2.459485,1.383535,2.195445,3.48895,3.002825,5.10635,4.897895,2.00094,4.1038,2.44448,4.715413333333333,1.6551175,1.6551175,2.18306,1.712964,3.672175,2.0318925,4.331075,1.4593800000000001,2.4678375,0.5781046153846154,1.1481814285714285,2.0938,2.1960125,2.1637825,1.498565,4.3125,4.327865,2.45972,2.572146666666667,1.3605266666666667,0.7027591666666666,2.30193,3.744635,2.63204,4.39321,5.2248,4.99795,4.00254,6.7324850000000005,1.55303,5.809215,1.835205,4.70801,4.551795,5.831397,2.9350199999999997,2.49268,1.74764,1.938822,1.938822,2.4198875,2.4198875,4.42111,5.61535,0.9040900000000001,4.055725,3.528985,3.48752,2.6740133333333334,1.4029225,2.733193333333333,4.25178,4.03852,1.7622499999999999,6.4157,4.820045,1.9113666666666667,1.2933,3.871145,3.8781499999999998,3.480815,3.5602,4.07187,0.6469907142857142,3.5974,3.0411066666666664,2.686436666666667,3.0283766666666665,2.3949433333333334,3.5226333333333333,1.614857142857143,1.614857142857143,1.614857142857143,3.03161,3.04135,2.78248,3.4766329523809523,2.32224,1.2222157142857142,3.111133333333333,3.217006666666667,1.3073242857142857,2.8394933333333334,2.709103333333333,1.1953714285714285,2.7217000000000002,2.9058333333333333,2.99318,2.699313333333333,2.6528766666666668,2.060265,3.2148833333333333,4.828593333333333,4.33891,0.8787879999999999,1.49298,0.580141,3.5720333333333336,8.874995,3.0001833333333336,3.2753,3.327693333333333,4.285260833333333,1.8981475,7.640105,6.533336666666667,2.8309800000000003,2.1277871428571427,4.22829,4.72524,1.593116,1.3743,1.249308,2.059305,10.535526666666666,2.653723333333333,3.0201966666666666,2.9948376666666663,3.8278,2.35803,1.18969625,3.59868,1.00737,3.676190384615385,4.185815,3.35618,3.19979,3.427675,5.1642,1.1434933333333335,2.0173025,2.0606976666666665,2.0606976666666665,3.902555,5.72275,8.1632225,4.092615,3.46044,5.00365,1.84578,2.2770225,4.4708,4.08351,3.924215,1.5064,2.9171099999999996,3.53354,4.133615,2.29772,4.077965,3.79867,3.43072,4.062515,4.02505,3.99583,5.5265,3.1743133333333335,2.27045,4.37788,3.140835,3.788295,2.12911,2.750375,2.55952,5.42975,2.368725,3.1898424431818184,1.66791,2.491325,3.2472,2.1645,2.0166875,0.8652166666666666,0.8652166666666666,1.782445,3.832880909090909,3.88386,2.8543633333333336,4.168175,3.2729725,2.503622857142857,0.951975,3.56138,1.61957,4.256795,4.132985,0.9095641666666667,1.8711275,3.86789,2.9698525,1.6211275,1.5246566666666668,4.802958571428571,0.9222616666666666,2.803955,3.34261,2.79884,2.43309,2.857094,2.04257,0.9637625,2.872745,3.003365,3.445635,1.3462566666666669,1.5560766666666668,1.833555,4.598575,2.032655,4.20519,4.71764,4.354985,5.85855,5.3992,3.982635,6.19406,3.9393980952380954,0.773470909090909,2.551705,4.239875,4.00467,0.4758136363636364,0.94709,2.93661,4.148245,4.824615,4.54869,3.186889285714286,2.73935,4.594095,1.813704,2.48439,4.43191,4.1290375,3.30156,2.81392,3.905775,4.732125,2.935245,5.2063825,0.926687,3.22147,2.65759,4.39287,4.412845,4.47124,2.08256,2.42468,2.79746,1.8660066666666666,5.0025,3.37828,1.5166285714285714,2.64972,3.9393675,1.4810320000000001,5.886139999999999,1.793204,2.6235933333333334,13.755525517094016,3.020966666666667,1.4683666666666666,1.59459,2.05769,5.497156666666666,1.684206,3.9064216666666667,0.70969,3.1017266666666665,4.419035,7.4620025000000005,2.52083,2.963983333333333,2.963983333333333,5.04285,4.576245,3.68356,3.327645,4.84859,4.980335,2.43451,3.344466666666667,4.619685,1.2552066666666668,3.1639733333333333,4.524715,3.96879,3.783605,2.4714233333333335,3.480935,4.064395,6.419543333333333,6.101825,0.737183,4.009825,3.258975,3.5065333333333335,4.28622,3.94877,3.882375,1.5817320000000001,4.74117,2.501315,2.86419,4.162645,4.331375,4.3626,0.916574,2.66336,8.486594,1.4725416666666666,2.066842727272727,2.3143125,3.86779,3.56762,3.371745,0.6762554545454545,2.493705,1.6877325,2.1759075,4.2354,5.385328,2.820988,8.801235,2.325196666666667,2.685256666666667,1.09804,4.46713,5.20895,2.030345,6.107138333333333,3.21196,3.13348,5.39425,4.307695,4.658375,2.164525,1.609525,1.609525,2.701535,3.237855,4.860000833333333,1.5155975,6.007618333333333,1.4963600000000001,3.93586,1.4173466666666668,8.803134333333333,4.74496,3.69834,4.873305,4.991915,4.05826,1.1093816666666667,1.7870575,3.508566666666667,3.143613333333333,3.3433666666666664,3.6916666666666664,3.89233,2.745235,3.10364,3.36799,1.48191,2.537383333333333,1.8416666666666668,2.8937166666666667,1.8938566666666665,5.3709291666666665,3.19702,1.8669633333333333,2.7638466666666663,3.33105,2.98498,6.3303,6.0021,2.995685,3.57236,3.136785,3.253805,2.740975,1.1753966666666666,0.9830080000000001,6.54556,3.285815,5.07985,5.17085,6.47885,2.911345,3.0146333333333337,6.37325,2.47058,0.45202388888888895,5.4264,3.062725,3.72854,3.22926,1.397567142857143,4.61174,1.084484,4.85098,0.89662875,1.5221666666666664,2.7624633333333333,2.485,2.4768202857142856,3.6948,4.939205,5.527816666666666,5.527816666666666,4.56078,4.56078,4.638705,3.014136666666667,4.562295,1.0203375,6.1229,3.800625,3.5112666666666663,3.931475,3.82576,4.18719,1.9678825,4.55852,3.17913,2.92956,4.323865,2.645295,4.519705,5.20385,3.64335,3.266485,4.66798,3.891225,5.0742,3.09395,3.3020133333333335,6.0207,4.103665,2.799913333333333,6.155666666666667,1.6183533333333333,2.2452975,4.56519,4.34866,5.1361,3.73735,2.053561,2.053561,13.302663904761904,11.994,5.09305,3.348665,2.9804974358974357,4.52434,4.68661,2.4838733333333334,3.2675666666666667,3.11254,4.107366666666667,3.6961333333333335,4.833265,2.194205,7.98851,2.35154,2.0301225,5.63625,2.318185,4.957875,4.33858,4.859585,0.9176766666666667,3.488555,3.960175,0.848518,2.94624,4.218054166666667,1.4471640000000001,1.9064533333333333,2.9720366666666664,2.6074333333333333,2.4431,3.1984866666666663,2.30194,0.4862485714285714,2.6767800000000004,2.731946666666667,2.8434333333333335,3.0802033333333334,1.682946,2.90625,7.189021666666667,4.388405,2.47153,2.0143666666666666,2.5446466666666665,3.703565,2.458445,3.59962,18.5785175,5.27725,3.411841,5.64845,3.78109,5.6141499999999995,1.7125899999999998,5.88135,1.5874616666666668,4.228755,4.29668,5.33055,5.09965,0.939319,5.7446,2.550105,4.883625,2.668245,4.36993,4.243595,3.17526,2.17245,1.56237,2.0552575,4.34347,4.70597,2.26163,1.609865,2.95239,4.030443333333333,3.0591500000000003,6.0928,2.0249275,3.89889,4.350355,3.81248,4.7044,3.47492,4.151685,4.72145,4.092485,2.81331,2.81331,5.554358333333333,2.0528333333333335,2.6284366666666665,4.028545,1.749446,7.456715,3.57974,4.5052,4.3419,4.49238,1.8648219999999998,4.133775,5.0935,3.53586,1.96528,3.51988,3.34104,1.17034,1.4952125,1.2347933333333334,0.7292433333333334,1.6747166666666666,0.9807016666666667,4.43313,0.9518644444444444,2.8632233333333335,1.5881266666666667,1.7714175,0.9939383333333334,2.043955,2.3375,1.5223225,3.0669633333333333,2.677096666666667,4.543396666666666,1.5545433333333334,2.43032,3.2269,2.950896666666667,2.2790666666666666,4.3559858333333334,4.98809,5.14957,20.147911333333333,2.733833333333333,2.2081725,0.6038730769230769,0.651903,4.3360899999999996,1.94216,4.051395,4.67558,7.331714,4.283355,4.02727,4.08949,3.126493333333333,3.14499,3.1943566666666663,3.6466333333333334,3.271573333333333,6.4414,3.70748,0.9055880000000001,1.14742625,5.0827,3.12827,2.57917,2.1788966666666667,2.33409,5.72665,4.78317,2.25223,2.37941,3.0559,4.85889,8.332876666666667,5.314019583333333,4.50087,3.93743,5.282,4.63094,4.244085,4.724165,3.972335,5.25375,1.88339,5.59215,1.5853428571428572,5.0894,0.7388466666666668,4.932355,5.4617,6.0474,6.17045,4.46281,5.82185,5.7714,6.3199875,2.01005,1.6130714285714285,5.55815,3.654425,7.027293333333333,5.0229,5.2939058333333335,5.09605,5.85405,1.2805228571428573,4.31412,5.33575,4.1049999999999995,4.57697,5.3431,2.5446,4.00744,3.688335,4.401575,0.9886333333333334,1.5813683333333335,1.372838,4.773305,4.002965,3.616875,2.468576666666667,3.0549866666666667,1.63089,2.1952066666666665,0.3593483333333333,3.4596999999999998,1.656068,2.2775533333333335,2.92902,2.8488,3.1826966666666667,2.5524,2.51955,10.318186,3.7624999999999997,1.7905552564102563,4.020175,0.8602154545454546,4.50656375,1.1324375,1.7628075,1.8809925,1.087765,5.532676333333333,1.1771629166666666,1.1771629166666666,1.1771629166666666,2.88742,1.6373460000000002,5.09785,2.997425,1.806455,1.5444275,1.51341,1.4178125,1.922588,5.364379166666667,0.8738877777777777,4.300705,3.851745,3.2829200000000003,0.9854900000000001,2.160743,2.4063175,2.4063175,1.5367366666666669,3.705518333333333,4.290655,4.85548,5.4915,4.336655,5.19,2.9663766666666667,2.3333625,3.257135,4.96251,3.527655,4.22348,1.08707125,4.065718958333333,5.5222,1.9481725,3.882125,2.9645766666666664,4.585805,5.34665,2.478395,6.6112,6.1648,4.442105,4.47154,4.29407,3.28929,7.81399,3.86783,6.0888116666666665,3.42174,2.673306666666667,5.14545,2.668176666666667,5.10525,5.1,2.788206666666667,3.26677,4.013,1.4560033333333333,10.674985,4.05829,3.12785,15.246487261904761,4.130395,1.7492933333333334,2.8741333333333334,2.250185,2.52174,4.282635,2.8021593055555556,2.786925,3.33416,2.95675,4.146605,5.83798,1.2896666666666667,2.36006,4.16839,4.02682,5.02725,2.1127375,0.6093953333333334,4.88126,4.36277,2.1594825,1.25218,4.468855,4.6463,0.9422277777777778,3.746695,12.643491666666666,1.3244175714285713,0.40973857142857145,3.617766666666667,4.347191666666667,1.0575655555555556,4.14079,3.94295,5.6114999999999995,1.2094449999999999,3.34993,3.85398,3.41082,4.259525,4.471465,5.20125,8.45965,3.24604,3.892895,5.4715,15.85530625,3.353945,2.684825,1.143405,2.2919375,1.308515,1.685075,1.4432675,1.99047,1.6752075,2.2645,2.4457875,2.631075,2.0582025,5.1771,4.012075,5.5714,3.071455,5.553883333333333,2.7227833333333336,4.81138,3.3029933333333332,1.20600875,3.7023,2.0117825,2.806852,4.73066,4.563865,4.81082,5.0623,3.0444133333333334,3.424633333333333,2.4217233333333334,3.983405,3.762835,2.27289,1.856815,3.6061666666666667,4.371345,3.704375,2.4324166666666667,12.041126666666667,0.6685133333333333,2.59963,4.74369,2.647733,1.199706,3.05232,7.452098333333334,7.165805,4.63659,3.86573,3.883335,1.9932725,2.26156,2.9072396666666664,2.1289966666666666,3.681776666666667,4.659975,4.31665,0.5172453333333333,5.91865,3.1815533333333335,3.342033333333333,3.4926999999999997,6.36715,8.96502225,4.427963500000001,0.98905875,2.145675,2.071445,3.549845,2.503715,4.39872,4.586515,3.6165000000000003,2.7588933333333334,3.858555,4.129905,3.78547,3.812666666666667,2.1597500000000003,3.945685,5.2403,5.50915,3.28258,1.959055,2.2175266666666666,28.908401871794872,1.5287675,1.5287675,2.258836666666667,4.278450666666666,3.960715,4.39031,3.03678,3.309015,4.08943,2.9917833333333337,4.16443,2.9917833333333337,3.855015,1.9309866666666666,1.5274966666666667,5.68365,2.530375,4.83544,3.33649,2.586915,6.508253333333333,2.0615733333333335,4.917125,5.0934,3.608015,3.304235,4.577485,1.9685320000000002,4.96015,3.55143,6.9180383333333335,5.378134166666666,2.664575,3.96304,3.919805,2.02637,2.9826466666666662,3.8762333333333334,0.43013214285714285,3.12894,10.12986,4.014565,4.05978,5.2883,3.246356666666667,3.19349,1.3119557142857143,4.429995,5.41435,3.208705,2.75582,5.13145,3.65031,4.215725,4.36729,2.58205,2.58205,3.97142,2.868365,2.8114443181818185,1.770255,4.714835,4.03262,1.0965328571428572,3.52069,4.66215,2.799993333333333,6.5920675,7.75399,1.4798740000000001,4.404295,4.55391,6.498877,0.729025,7.508796666666667,3.3898833333333336,0.5960609090909091,5.4311,5.32605,4.93812,4.520365,4.74021,4.41263,5.0846,3.87496,4.031355,4.425785,4.793865,5.33255,5.3291,3.831155,2.98336,4.43277,3.058595,0.937017,4.09107,2.31461,1.73206,4.16984,4.415895,5.66785,1.09049,4.852846666666667,2.85395,2.6153133333333334,1.944775,1.2250066666666666,11.747338333333333,2.700583333333333,2.891016666666667,2.0793399999999997,3.865549047619048,5.377333333333333,8.259371666666667,2.6965966666666668,1.96546,2.12998,2.12998,2.12998,1.4198266666666666,3.84039,3.850715,3.262945,4.52054,8.158574999999999,4.14305,1.12312,2.23006,3.16351,3.430775,1.761252,4.63334,4.16657,1.5730233333333334,3.5104333333333333,6.311432142857143,7.4153675,4.217795,3.958795,3.0681700000000003,5.114,4.470425,5.1139833333333335,1.88164,1.88164,3.89577,3.81482,2.8275843333333333,2.8275843333333333,3.8809,1.1344514285714287,4.670865,3.465265,4.12611,4.20161,4.52915,3.1278733333333335,0.9912557142857142,4.3523,4.9919,4.67129,4.68986,4.84705,4.736565,4.37052,1.909925,1.471555,3.44843,3.614275,3.17,4.377365,2.223885,3.731795,5.0746,2.820065,4.80952,7.7515149999999995,2.2946529166666663,3.1442583333333336,4.397445238095238,4.8094525,1.5836125,1.9661435714285713,0.956015,1.9661435714285713,2.15171,2.15171,1.512298,4.770265,3.10614,3.533995,2.32709,3.845365,1.5055683333333334,5.36815,3.094415,1.65803,2.8777866666666667,4.56416,3.822915,6.312696000000001,4.607575,1.197562,0.8701533333333332,3.46612,6.860158333333333,2.4327566666666667,3.64658,3.9139,3.9139,2.38699,3.395495,3.211495,1.3648516883116883,3.148903333333333,3.62456,2.82777,4.375175,3.9887675,1.709635,3.961785,4.50884,4.46094,5.2137,4.444735,1.814515,2.0176,1.2782766666666667,2.2790175,3.46934,1.908005,4.084125,3.0544433333333334,2.885675,4.180625,4.84451,1.7737,0.979902,1.8161233333333333,1.5629325,1.1628777777777777,4.891605,4.116805,1.154908,0.20934,0.20934,0.20934,3.29493,6.037058333333333,4.48952,5.1712,4.543525,4.81384,4.62558,4.3782,2.74839,3.753235,1.6047375,4.753445,4.09507,3.840245,4.489995,4.152835,0.7461081818181818,0.7461081818181818,0.7461081818181818,0.7461081818181818,1.1067500000000001,1.1067500000000001,4.006515,3.96393,3.648585,2.68602,2.51805,5.34795,4.67054,5.1132,4.396795,3.02416,2.5232066666666664,9.36312,1.463054,1.463054,4.16982,5.43625,3.2628866666666667,0.47613125,0.47613125,0.47613125,0.47613125,0.47613125,0.47613125,4.705466666666667,5.2217,3.373205,4.310945,2.851725,2.851725,2.757065,3.0145826666666666,2.6240866666666665,3.057,3.53069,6.771252666666666,1.41029,4.63839,3.433135,4.31944,9.682125,2.4329733333333334,2.694995,0.8990742857142857,2.68318,4.90284,3.929025,1.1782175,2.80599,4.199755,5.53995,2.6218,4.873084583333334,1.1241333333333334,1.9215133333333334,4.95008,4.56288,2.876941,2.441943333333333,2.0008233333333334,1.3494066666666666,8.010508333333334,3.425966666666667,2.2392499999999997,3.193335,2.644683333333333,3.92329,3.62565,2.7308533333333336,3.3289733333333333,6.0908,1.5031883333333333,5.146,5.1489,3.861145,3.99552,2.5705533333333332,3.073675,3.843865,3.77448,3.012145,4.444585,4.68642,2.8276233333333334,2.64455125,2.8964200000000004,2.8011666666666666,2.76783,0.7656990909090908,2.1639675,8.129637500000001,0.465618125,2.96947,1.2955699999999999,2.5849699999999998,3.208653333333333,2.861406666666667,1.2278444444444443,1.745142,2.7135233333333333,2.1221825,3.681735,2.08866,2.7773033333333337,1.59889,3.284866,2.243695,1.1479828571428572,2.898006666666667,2.0932325,2.26479,2.601506666666667,3.13165,3.0803666666666665,3.1800566666666668,3.1669366666666665,2.8856066666666664,2.8923400000000004,2.7684933333333333,2.389515,1.6981,2.43189,2.61022,1.62475,2.9662466666666667,3.8495728571428574,2.883013333333333,2.7447933333333334,2.9898399999999996,3.583133333333333,4.585684166666667,3.01337,1.603182857142857,1.603182857142857,2.31661,1.0751325,2.4600925,3.260788333333333,4.503020833333333,2.728225,1.93359,2.1138575,2.10067,3.69237,3.24342,3.871085,4.361605,1.82406,2.3369166666666668,4.16692,1.298016,1.298016,2.512225,0.6363384615384615,2.8303942307692305,2.0894975,2.0894975,2.9240166666666667,2.4979566666666666,2.640703333333333,2.545373333333333,2.0736575,6.146093333333333,4.0171675,4.0171675,3.61697,3.06844,2.14845,2.987495,2.389345,2.96969,5.0785575,0.46623333333333333,0.677068,4.14308,2.26462,2.91915,6.462431666666667,3.521745,1.655746,4.7216466666666665,4.562435,4.10464,4.336415,5.2315,4.571535,13.4424855,3.36105,1.6599366666666666,3.5926,3.71369,4.945595,3.80947,4.18405,4.381485,3.704835,3.201695,2.8743433333333335,3.29274,2.7500966666666664,2.356663333333333,2.356663333333333,4.20229,3.342395,3.16506,3.451635,2.366605,2.43646,2.16675,1.87149,2.0277825,2.0196975,1.8736275,3.5785715,3.31019,2.46688,6.8994349999999995,3.19806,2.3090966666666666,1.9526733333333333,3.459175,3.763105,3.72254,3.1666489583333335,3.515475,3.305295,4.39839,3.738635,3.88429,4.033885,3.3168360000000003,3.55764,0.746805,0.746805,0.746805,3.512155,2.40822,5.1379,2.24927,3.72478,7.406168703703703,2.78039,0.37425153846153847,5.4304,0.7551669999999999,4.218117142857143,1.85308,3.52138,1.89848,4.477205,5.607678333333333,4.268625,3.907685,2.6567266666666667,2.84361,1.458525,2.4157533333333334,0.43148263157894734,0.5702041176470588,2.6074733333333335,1.42188,1.9879625,3.864415,3.580845,4.9045,2.81896,2.977011666666667,3.471745,5.44603,1.694005,0.9472557142857143,2.212665,3.323932,1.3767845454545453,4.91472,3.934235,3.52125,2.751136666666667,4.324175,3.20175,2.65128,2.515683333333333,2.2475925,2.54312,2.136635,3.0854633333333332,2.3627933333333333,5.56792,2.177925,1.868,2.398213333333333,4.851413333333333,3.157302,3.157302,2.4147366666666668,3.929255,2.30394,3.280065,2.822395,0.5663553333333333,4.342465,2.0698625,11.47086111111111,7.31606,2.965195,3.17238,3.178875,5.20574,2.763615,3.52199,0.24934133333333333,2.068965,3.8530333333333338,0.872075,3.84744,1.3778242857142857,4.82149,3.521295,3.50064,3.0813,3.96297,2.139355,4.480655,3.766975,3.890465,6.37761,4.302495,2.9410633333333336,3.084873333333333,1.612778,1.947065,4.38674,4.37687,4.0274925,2.750495,3.800555,1.373024,2.939655,2.46501,4.170015,10.717025,3.71541,7.5499833333333335,3.861335,4.44694,1.0027177777777778,5.032519000000001,4.76402,2.64152,2.678406666666667,3.4305333333333334,3.0587866666666668,2.38674,1.7237066666666667,1.9567633333333332,3.625985,1.5684939999999998,2.883383333333333,4.942275333333333,2.647393333333333,1.129135,1.129135,3.5844,3.0664715,3.0664715,4.0784666666666665,3.165016666666667,3.348600256410257,3.6188333333333333,3.3402666666666665,2.7887833333333334,2.3646966666666667,2.4844566666666665,3.1974666666666667,2.2867,2.3909966666666667,1.646912,5.704141999999999,8.669114333333333,0.4132692307692307,0.4132692307692307,0.4132692307692307,0.5125380944055944,0.5125380944055944,0.4132692307692307,2.9816966666666667,2.9544833333333336,4.291518333333333,1.4317683333333333,1.784605,3.292364,2.4260800000000002,3.0636833333333335,2.402746666666667,2.86997,3.3312933333333334,6.995406666666667,3.1423133333333335,2.4828666666666668,3.287186666666667,4.302165,2.442083333333333,3.2629433333333338,6.64063,2.38422,3.3836666666666666,1.3895233333333332,1.3895233333333332,2.650583333333333,0.5120205263157894,2.139213333333333,2.7093966666666667,2.8575733333333333,3.303763333333333,2.3197933333333336,1.6145399999999999,2.730323333333333,2.8958100000000004,2.4462699999999997,4.45672,2.3757623333333333,3.84057,2.844875,3.853955,0.5138499999999999,7.565736666666667,3.033704,3.033704,7.520590277777778,1.78379,2.040836666666667,2.9106433333333332,4.446025,2.3798233333333334,1.9817933333333333,2.71806,1.413615,3.201943333333333,1.75635,2.9512865,1.38459,0.27524909090909094,0.27524909090909094,4.916905,3.826865,3.36383,2.8011199999999996,2.95229,3.36908,1.2971633333333334,6.06285,3.93593,2.8059,1.85713,1.1927216666666667,1.921525,2.9106433333333332,2.56195,2.04514,5.548975,4.08199,4.37961,3.96874,2.40288,0.6918041666666667,7.072065,1.9987875,1.4722725,3.546865,4.40823,2.327105,1.7271166666666666,4.512955,4.322075,3.2980199999999997,3.06901,4.56161,4.239125,3.5255666666666667,2.542582,2.542582,4.25855,4.95749,5.88035,6.36703,2.76744,3.923605,1.3620628571428572,2.5341,4.907779333333333,3.835295,1.823246,4.66594,3.373735,3.918215,2.11958,4.22626,4.708575,5.1005,4.72545,2.4236066666666667,2.5479,3.6284666666666667,2.1080666666666668,2.546975,2.8399966666666665,2.6120466666666666,0.8510059999999999,2.06282,2.7409766666666666,2.247069333333333,4.525215,4.81524,4.815435,3.90726,4.13552,5.385585,11.94077,5.0871,4.20108,4.388155,3.86596,4.4552,3.3725,3.069544,3.5848666666666666,1.2406925,2.96049,2.929685,4.37604,5.28485,4.219115,3.26661,2.74269,2.30688,4.1882,4.0274825,3.4249333333333336,4.0274825,2.389531,2.3094366666666666,2.4058783333333333,2.23537,2.4908533333333334,1.6156066666666666,0.8392866666666667,1.361505,1.7773700000000001,2.0119000000000002,1.6573733333333334,1.2875433333333333,1.6641466666666667,2.70369,1.549968,2.953773333333333,1.2608633333333332,1.5719733333333332,2.868155,3.3528000000000002,2.51649,2.22927,2.337666666666667,3.334635,2.35017,2.88355,3.0888733333333334,2.482746666666667,3.0646166666666663,3.03742,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,4.857775,3.332,1.0318528571428571,3.130853333333333,2.64096,2.69721,3.526635,3.0894933333333334,4.5142,3.438902,1.633776,3.1412099999999996,1.7683,1.01875,0.91227,1.4851033333333332,0.8348016666666668,0.8145708333333334,1.320584,3.29747,1.672196,1.6791166666666666,1.831747222222222,2.3499766666666666,1.3049283333333335,1.4285616666666667,1.5589833333333332,0.9626483333333334,1.23813,0.7264366666666667,0.8664820000000001,3.43122,3.544415,4.197235,4.488585,4.1811,3.0491200000000003,4.47062,3.8564000000000003,1.9284125,3.494615,1.9237275,3.561445,2.28465,0.7648954545454546,4.203055,4.70211,2.0845966666666667,1.2824875,2.853685,3.3566,3.705518333333333,2.99011,2.53414,0.892225,2.0652775,5.094525,3.91284,2.862805,1.5049816666666667,3.784995,1.9909475,0.5960027272727273,4.3486,4.259715,4.243245,2.754975,1.338316,4.355345,4.434845,2.5639266666666667,2.5782333333333334,2.6253033333333335,2.6062366666666668,2.78483,2.8764233333333333,3.0629933333333335,1.2615,2.51675,2.4448733333333332,5.09305,4.176615,3.60687,4.44464,15.816894407828283,4.2707275000000005,4.722788,2.619175,4.007445,5.05105,1.592022,2.291305,2.57663,6.06118,3.711055,4.0571,6.1269,2.57663,3.8414,1.953955,2.3524833333333333,2.9139666666666666,2.641506666666667,1.1929033333333334,4.242635,3.692035,2.53321,4.25777,2.35832,2.8523300000000003,3.505385,3.15404,4.36007,3.920255,2.69808,3.50515,2.49982,2.49009,1.299994,1.299994,2.788406666666667,2.26094,0.30886,4.748807,0.946336,2.79182,3.497,0.5559325,4.59333,8.155703333333333,1.882705,3.74842,3.708375,2.951033333333333,3.38348,2.284415,3.338615,3.62296,4.13503,2.93599,3.8345333333333333,0.9836083333333333,11.876696666666666,2.85231,2.939245,5.47485,2.63286,3.978745,8.12759,4.16594,4.07766,3.60197,4.081975,5.279605,1.284805,3.053656666666667,4.68459,3.9095999999999997,1.8296299999999999,3.86922,3.706945,3.683495,3.929725,4.12449,3.68181,2.433038333333333,4.029035,3.61367,5.35535,3.55152,2.2367466666666664,2.38974,2.2123633333333332,3.081993333333333,1.3292633333333332,3.7254666666666663,0.8362618181818182,3.24077,2.9924666666666666,2.626986666666667,1.47119,4.2746,3.8363,4.2707,1.79309,4.66675,3.736195,0.7457965897435898,0.3476619230769231,4.479715,5.02255,0.97788,0.3476619230769231,3.524905,0.7457965897435898,0.7457965897435898,0.3476619230769231,5.801271666666667,2.6072466666666667,2.4102866666666665,5.45755,2.916375,3.225285,0.7771577777777777,3.19678,3.9665,4.239115,5.34515,2.2108125,0.73057,4.449694166666667,2.281336666666667,1.3723800000000002,2.0036375,1.0580357142857142,2.50488,2.297,3.4641,5.24685,2.77875,3.4187666666666665,2.8536633333333334,2.3335266666666667,2.9739,4.295842500000001,1.6454075,2.0442075,3.897405,5.10115,2.1469940277777777,5.2567,2.4144,4.022795,4.34097,3.15679,1.156045,3.10602,6.71925,3.67655,3.461215,4.839525,6.31275,2.29878,3.890515,4.543315,3.19861,3.262845,8.25667,3.925875,4.776015,2.36564,1.2230675,2.411653333333333,1.935815,2.048205,1.86671,4.310755,0.6604599999999999,3.580435,3.918215,1.8781233333333331,2.8345466666666668,4.886765,3.99576,2.80602,4.121065,5.43435,9.602231666666666,2.67151,2.5888533333333332,1.63179,1.7459333333333333,1.2362833333333334,1.36982,3.2098,2.3346266666666664,2.910773333333333,4.668271666666667,1.590595,2.2790933333333334,4.879775,5.3921,3.715555,3.435375,3.01643,2.44653,2.04489,1.958725,2.045383333333333,2.04543,3.05805,3.55098,4.944885,5.1615,4.04806,5.249188333333334,4.04012,2.610525,6.1451575,3.935235,8.59296,4.6490525,4.6490525,5.500306666666667,1.7394100000000001,1.606095,2.1841133333333334,0.7082080000000001,4.86018,3.712733333333333,3.346405,3.346405,2.0861,4.32829,4.404665,4.524695,4.489655,2.873813333333333,2.66784,3.80967,2.9971933333333336,5.059054166666667,3.730695,0.8785481818181818,5.2466,5.03825,4.42877,5.1098,3.337465,5.92015,4.240695,0.8518307692307693,5.015,7.042218333333333,3.214845,5.5657,5.73895,3.358195,2.54489,3.9595,6.05075,2.0479425,5.8185,1.880215,4.52903,2.5966299999999998,2.327335,0.926687,4.087115,5.7894,3.322575,3.95108,1.95969,4.650605,7.792854999999999,3.57999,4.326115,2.56142,2.81589,0.8499700000000001,4.76028,1.5362683333333333,3.4483091666666663,3.4483091666666663,3.72339,2.321423333333333,2.9936900000000004,3.82364,1.648875,3.047826666666667,3.4074000000000004,3.2413333333333334,2.92907,3.979875,2.86779,1.77104,3.516033333333333,2.0699775,2.9513366666666667,2.0036166666666664,3.059293333333333,3.069436666666667,1.3764614285714285,1.30274,0.4804,1.315605,0.4804,0.4804,1.30274,0.4804,3.29588,2.604538,2.604538,2.76705,4.63858,4.685845,4.300195,5.17545,4.93214,3.286485,3.98355,4.044355,1.96444,2.4232736666666668,2.50079,0.7606963636363637,5.3901,2.9914233333333335,3.082826666666667,5.3446,3.90022,4.631955,3.41599,2.68078,2.98181,3.43297,2.545593333333333,2.8077966666666665,2.06258,5.32915,0.8248377777777778,3.923145,1.1690657142857144,3.576455,2.4516033333333334,3.0143466666666665,4.04929,4.211555,3.85069,4.271635,3.97877,3.818235,4.249795,4.19386,2.4879475,2.64855,3.18451,4.151735,2.88191,4.202265,2.816085,3.309555,3.2706733333333333,3.49394,4.363895,4.800945,4.03289,67.61687412674826,2.8542616666666665,3.574715,15.614929666666667,4.044135,3.0396133333333335,1.9391866666666668,1.8192599999999999,2.6069566666666666,4.429565,2.9728266666666667,4.262758333333334,6.04165,3.28044,7.493551666666667,5.1435,2.78686,3.32886,3.733705,3.44749,1.815698,1.118245,4.731615,2.520265,6.116896666666667,3.71604,2.2576566666666666,3.375095,3.90249,4.457285,3.334385,5.711375,4.41482,3.52434,3.14439,2.30699,2.972985,6.22175,2.912175,3.791285,4.394109583333333,1.1787983333333334,2.610405,5.20468,3.657125,3.427315,3.604265,3.005035,4.19874,3.08631,3.472025,3.163525,4.59501,3.215005,2.79318,4.438735,9.551985,3.2042033333333335,4.017065,5.83114,3.28897,2.477025,4.02345625,2.1817933333333333,2.8765199999999997,3.140142,3.735815,3.14773,3.76785,3.344335,3.16803,4.045745,3.74082,4.205105,3.835645,3.570925,4.034135,2.7749800000000002,2.7749800000000002,6.72147,1.80948,3.25872,3.315215,2.44951,4.55931,4.173885,3.076465,3.316315,4.724485,6.942095,0.6919663636363637,3.700945,2.39676,2.8647333333333336,2.64538,5.28485,2.7150266666666667,2.0103075,1.12018125,2.050604696969697,4.123255,4.60434,4.02897,5.3258,5.30815,5.865,2.473325,1.7958733333333334,4.87032,2.9604,3.0876033333333335,2.0310166666666665,1.1174516666666667,2.604153333333333,3.296936666666667,1.702004,2.48692,2.4951068571428574,3.541350357142857,2.630395,4.99185,3.40421,1.46177,5.43945,3.42647,5.45085,4.84119,5.29045,4.714965,1.9592833333333333,1.3750799999999999,0.6110357142857143,1.5444000000000002,3.624895,2.49873,3.659791666666667,1.4524666666666668,2.62195,2.316005,3.32177,3.52709,4.03854,4.104956666666666,1.69529,1.4718225,1.9323725,2.08219,1.43536,2.486625,6.62790225,5.1122,3.95191,2.895185,7.462975,4.58695,3.043755,3.03327,3.16794,2.648105,3.96174,2.320063333333333,7.14524,0.8901533333333332,3.046595,6.49875,4.10745,4.427555,5.55375,1.4358333333333333,3.1783300000000003,2.8581,2.8537,1.4580425,4.054385,8.65899,3.570835,4.96821,4.059,3.357965,4.672795,0.8556583333333333,2.8125766666666667,5.3203,6.24122,4.722795,5.45475,2.992795,3.7231666666666663,2.570463333333333,5.2197,4.77144,3.878857,3.878857,0.6797500000000001,3.3988333333333336,0.9259919999999999,0.748395,1.69611,3.538233333333333,3.918272,5.261224857142857,2.6341,3.092364857142857,3.0677128571428574,2.966396666666667,3.055536666666667,4.516666666666667,3.3951824999999998,1.8885675,1.8885675,3.695965,3.0698166666666666,2.7529966666666668,3.59221,3.280863333333333,0.6256455555555556,3.2626866666666667,2.3382833333333335,2.57151,2.8011766666666666,2.58265,2.4378733333333336,3.0955100000000004,2.86965,0.79588,2.7051200000000004,6.124314428571429,2.1175,7.4805675,1.529298,1.529298,3.3590219999999995,3.28405,3.28041,2.8504,1.69176,1.2806057142857143,3.1882900000000003,3.1657566666666668,1.5595566666666667,1.4198471428571426,2.8328866666666666,2.719834,2.6908666666666665,1.96673,1.986635,2.77757,2.24907,2.72062,3.36371,1.734665,3.546355,3.313,6.891775000000001,4.193435,1.7589375,3.462025,2.67389,2.151555,4.11498,2.64203,2.724915,6.682625000000001,0.8195384615384615,0.6872083333333333,4.47964,1.410694,1.410694,3.84138,2.400865,4.41617,3.53267,1.26904,2.2958920000000003,2.9622433333333333,2.348537,4.948335,3.51551,2.6578133333333334,2.2567666666666666,1.50392,1.50392,2.2296766666666668,3.86275,3.7929666666666666,6.3924,3.1390166666666666,5.039,4.68717,6.7731,4.535705,2.39017,2.862276666666667,2.61105,2.715426666666667,0.759531111111111,0.759531111111111,0.759531111111111,3.26858,4.313995,3.986485,1.012505,1.012505,5.28565,6.01965,6.88681,22.198182111111112,11.3424,8.20696,3.530025,5.7747,2.3833475,4.490725,2.5401133333333332,3.3118766666666666,4.1673,5.337722666666667,2.130325,2.155505,6.83907,2.23284,2.23284,6.55585,3.45722,4.140085,2.1991325,4.8100035000000005,4.87538,4.08112,5.09595,3.696615,0.9789466666666667,5.93665,9.29148,0.9789466666666667,2.1991325,2.08885,0.735822,0.735822,1.762878,2.26148,1.762878,4.87761,5.78115,6.2329,9.39011,2.1991325,11.630489666666668,6.31075,6.0878,2.3833475,3.319545,4.68256,9.11559,2.9843716666666666,4.362435,6.163,3.21306,5.2337,6.3713,4.738665,4.979865,5.46325,2.66581,5.36245,3.660075,4.367865,4.378795,0.8319125,1.5364,2.917035,5.3401,4.54219,2.647393333333333,2.00704,3.862535,4.65657,5.63055,5.09885,5.07555,4.41749,3.36869,4.20922,3.66578,2.072485,4.9192800000000005,1.954145,2.556025,3.56689,1.7188999999999999,3.913235,4.34593,3.827665,5.1458,3.05399,6.56529,0.9221833333333334,3.537585,3.740015,1.3141442857142855,5.3239920000000005,1.5335850000000002,1.4921533333333334,2.5638366666666665,2.7970465,2.93304,2.86063,1.8957325,0.7487881818181819,2.2970133333333336,2.620435,3.720385,0.7109084615384614,6.003095,1.79769,1.162358,3.4783333333333335,1.162358,3.986605,0.8540736363636363,4.47259,3.149696666666667,1.953405,4.612167,4.156847000000001,4.156847000000001,4.61735,2.492085,3.072091666666667,2.71177,1.682946,3.776505,3.196975,2.05533,0.7446,7.073668461538461,2.736825,3.68655,3.988365,7.50944,2.3042875,4.19026,3.721635,3.10029,3.55878,5.52585,6.408212499999999,4.27449,5.026,5.09625,2.9029633333333336,4.519605,4.161945,4.601485,1.092172222222222,0.47077285714285716,3.223665,3.378633333333333,2.8284966666666667,5.3983,3.74763,4.37092,4.51207,5.089,4.079275,4.386835,1.18375,2.3191,8.517376666666667,2.23023,1.8842566666666667,3.8795504761904764,11.661367718253967,1.54107,4.893125,6.26325,4.7822,3.1882933333333336,2.28168,3.1642733333333335,3.993815,1.0753000000000001,3.17844,3.707205,0.3727278947368421,2.0184333333333333,4.64978,4.245355,2.126305,4.08759,2.91276,5.048125,1.2829300000000001,0.5794536363636363,3.765195,1.1490471428571427,1.0277,1.0277,1.0277,1.0277,1.4738916666666666,2.72399,2.21984,3.0465400000000002,5.38055,3.2812300000000003,4.9838,3.546265,4.32702,3.632085,3.960345,1.4361233333333334,6.975615,2.34415,4.824165,5.328683333333334,4.953145,5.1519441666666665,3.5322333333333336,2.4021433333333335,2.6016333333333335,3.248815,1.21594,5.2221866666666665,2.5828166666666665,4.90709,2.45742,2.367643333333333,3.80604,3.457345,2.87156,2.527016666666667,2.874356666666667,1.4927075,0.40999444444444444,4.207005,3.4336,4.18772,3.5317,3.934275,5.93475,4.215655,0.5575615384615384,3.297884,7.250481333333333,2.010963333333333,1.941634,5.491581666666667,4.44205,2.6742166666666667,4.925335,5.5191,4.19932,4.136855,4.21188,5.03165,5.2822,4.90422,3.574475,5.289299499999999,1.480618,1.5826516666666668,4.035575,3.926625,4.21103,3.17485,5.32855,4.538215,3.802245,3.40935,15.49061698568348,1.2623975267522738,1.15045625,1.9307198863636363,0.466225625,0.4702033333333333,1.431575,0.3181029411764706,1.310554,2.8534433333333333,1.4430859999999999,0.9335416666666667,1.1086720833333334,0.5225058333333333,1.1086720833333334,1.1086720833333334,0.5225058333333333,0.825023076923077,0.5897121428571428,2.76747,2.6645,4.20977,4.24265,2.833766666666667,2.65145,4.01641,5.0424,5.1294,2.869485,4.32216,0.6895071428571429,2.410919333333333,8.418643333333332,4.526435,6.890415000000001,2.619075,4.02521,2.277975,4.929565,5.22845,3.06362,4.364255,2.97865,1.01264,4.108355,4.759945,1.0121499999999999,1.141956,1.51367,2.4451433333333332,2.227653333333333,4.356835,5.4082,2.28567,2.28567,3.541301666666667,6.55017,2.1037433333333335,0.6559636363636364,0.7545271428571428,2.1305533333333333,3.4347,1.01762,1.01762,1.01762,0.3759569230769231,1.0435771428571428,3.06655,6.06325,3.925966666666667,4.187853333333333,5.3757,1.01676,3.4780333333333338,3.3839333333333332,3.831633333333333,5.7598,2.5815733333333335,7.7309166666666655,5.09,1.138211111111111,3.8300666666666667,1.8033480000000002,2.654995,2.309633333333333,6.81873,3.0811233333333337,4.619245,2.44676,4.130635,4.37236,4.710435,0.4743227777777778,3.059473333333333,1.4633099999999999,2.35882,3.9123653333333337,2.1356633333333335,2.7781066666666665,2.37723,2.5062366666666667,2.4719666666666664,2.7644033333333335,2.6784966666666663,2.7861700000000003,1.326642,2.2811666666666666,2.3909133333333332,3.1758433333333334,2.7075833333333335,2.203955,1.8932533333333332,2.033513333333333,1.7349475,3.386645,2.448043333333333,2.079286666666667,2.0651266666666666,2.4908233333333336,2.30755,0.7808511111111112,0.7808511111111112,0.7808511111111112,2.506343333333333,2.2357299999999998,3.0172266666666663,2.7995933333333336,2.60666,1.9807433333333335,4.009215,3.604498333333333,1.3539183333333333,2.5095433333333332,2.7675300000000003,3.913806666666667,1.5727714285714285,6.893393333333333,4.643365,2.97129,4.126225,3.44581,1.5014525,0.6577200000000001,3.487555,3.912005,3.913806666666667,4.299465,4.170315,4.560465,2.9215199999999997,3.68495,4.15599,0.8323259999999999,2.761745,3.39224,4.79049,4.748365,3.60785,3.368025,2.44077,2.395913333333333,2.488653333333333,0.6368366666666666,5.209869583333334,2.74725,4.240595,2.63475,3.8021916666666664,3.161216666666667,2.43046,2.876223,2.876223,2.6915,2.0456833333333333,2.54035,2.0398833333333335,4.21519,1.400098,2.695315,3.83334,3.83325,4.07239,5.01855,4.21089,2.510975,2.038565,3.369275,4.0175,2.935815,4.86015,2.86254,0.9406657142857143,0.9406657142857143,4.32646,4.0078309999999995,0.934676,4.65,0.934676,4.03487,4.586305,4.72185,3.24954,3.29112,6.2780125,4.254270833333333,5.8371,0.8737357142857143,0.8737357142857143,2.12962,4.603531666666667,1.4254316666666667,3.1781,3.563015,1.1424985714285714,4.48042,3.89249,5.723375000000001,5.723375000000001,0.9396266666666667,5.06245,5.01695,4.872735,6.03135,2.0333475,2.0333475,7.0034,0.9361818181818182,7.22575,2.0174825,6.3851875,2.459465,2.5353033333333332,3.406825,2.08398,2.2133266666666667,2.3280366666666668,3.019406666666667,2.6292854761904763,6.538645,1.902384,5.18475,2.8390566666666666,2.5526966666666664,1.771995,2.173045,3.24561,3.413735,3.43566,2.635325,2.107225,2.268275,2.54403,1.12141,3.20787,2.136105,3.121645,2.081133,2.081133,2.995655,1.8248566666666666,3.76261,3.554625,5.175,7.244950000000001,4.181235,3.462895,6.319307,2.1406066666666668,3.229256666666666,2.200493333333333,1.5171714285714286,1.7281725,4.04922,1.5969283333333333,0.479445,0.6577266666666667,4.179965,4.334185,3.058055,0.9169877777777778,2.908845,2.7021033333333335,4.88309,1.907838,2.007595,1.1425111111111113,4.52943,2.424615,4.373245,0.7053689999999999,4.209126666666666,4.58348,4.29133,4.50802,3.55978,3.83529,2.7789466666666667,5.3674,3.70618,2.0953733333333333,2.7189933333333336,6.146136666666667,6.6230775,0.7716275,3.93617,4.20408,5.3015,3.6422333333333334,3.8396666666666666,2.886175,3.1026133333333337,3.7265,6.104595000000001,2.719834,2.676839,3.618745,3.72366,2.26753,2.34896,8.216213333333332,5.0956,1.95685,4.93295,4.590675,1.822404,3.836975,1.401275,1.697957142857143,4.41411,3.909615,5.46795,2.8428133333333334,3.704705,4.077135,5.7223,3.89836,4.24737,3.56846,4.528615,4.093225,4.38504,1.1652570769230768,1.1652570769230768,7.49201,0.82934,2.257938988095238,0.82934,0.69134,0.37450666666666665,2.949278988095238,2.2856,0.6994685714285714,2.257938988095238,1.998535,2.968585,2.2498104166666666,3.417845,4.545005,7.594663333333333,1.980285,1.986045,2.207665,4.87698,5.70455,1.82289,1.7056575,1.02472,2.7303775000000003,4.09926,2.61976,4.287345,6.29977,0.4731366666666667,3.93003,0.745931,2.821263333333333,2.5407,3.74719,1.2968683333333333,4.22146,4.6545825,4.112945,2.87207,3.865625,4.8748775,1.6192675,3.367965,0.5727207692307692,2.704255,2.578805,1.18893,2.965676666666667,2.4703566666666665,2.5809,4.103655,8.461185,3.154720303030303,3.77216,3.716065,7.29111,5.409055833333333,3.3262633333333333,4.10149,3.464255,5.7266,5.6689,6.1249,5.40755,4.16682,6.0149,3.3300133333333335,1.610205,1.9433066666666667,2.6611433333333334,3.96102,2.4322333333333335,0.25584945945945947,0.25584945945945947,0.25584945945945947,30.80473580952381,0.25584945945945947,3.0144244594594594,0.25584945945945947,0.25584945945945947,0.25584945945945947,3.318196126126126,4.32539,0.25584945945945947,0.25584945945945947,0.25584945945945947,0.25584945945945947,0.25584945945945947,3.784415,5.18284,3.04624,0.3294,0.3294,4.4323266666666665,4.000489541666667,3.9038102083333337,3.213047430555555,3.984295238095238,7.996266666666667,11.095616641414141,6.465903333333333,8.044953333333332,7.062652964285714,2.650583333333333,6.007117619047619,4.356301666666667,4.397449166666666,0.3294,7.922164333333333,6.644331523809523,6.963373333333333,2.77175,8.933294964285714,14.777754940476191,18.418988424908424,56.42538545533878,115.33690163743447,1.3895233333333332,3.3836666666666666,3.2428,3.818854539253539,0.3294,1.6996483333333334,8.440750416666667,14.112906714285714,20.27428527777778,48.56420424665831,12.973885630952381,2.99005,0.2918141379310345,0.2918141379310345,4.689316666666667,2.8223533333333335,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,8.37442,0.2918141379310345,0.2918141379310345,0.2918141379310345,2.74986,2.0664700000000003,3.452195,3.570615,4.0045641666666665,5.22915,2.39505,4.06847,4.48158,3.29214,1.5127433333333336,3.715835,1.0267183333333334,2.23922,2.30896,5.37031,6.0478700000000005,2.7326433333333333,5.603677722222222,0.49418611111111116,0.482376,2.468593333333333,2.681373333333333,3.013825,4.19547,3.3486333333333334,7.6316775,3.836865,3.42389,3.33818,4.06767,3.122625,3.17314,5.53975,2.7277,0.4528492307692308,0.8754927272727273,4.2390125,1.7914525,3.670005,3.81001,4.541155,3.50956,2.4858425,2.98331,0.5969333333333334,0.766042,4.122365,2.6931,4.61914,3.60998,4.267051666666667,2.644345,3.68802,5.10645,4.815675,3.11244,0.9092454545454545,3.389,4.359795,2.293775,0.95366,1.6861166666666667,3.67835,6.0717,1.72552,3.33765,3.679765,5.1532,2.544805,2.3751233333333333,2.335195,4.221575,2.441155,3.81077,0.6792514285714286,2.7153833333333335,3.38393,1.85925,6.234473333333334,3.51479,4.141235,4.56818,2.79207,2.228815,0.5330054545454546,4.7221,4.533805,5.9788,2.527025,4.49816,4.041775,3.004525,2.744825,1.267737142857143,5.2822,1.92599,2.636845,8.921895,4.13513,5.1919,3.392315,0.8599033333333334,3.04421,1.1747342857142857,3.201105,6.23255,5.1495,4.90994,3.612285,4.992515,4.498355,1.6899275,1.9156000000000002,4.915135,2.8754899999999997,3.378033333333333,2.275025,5.0267,4.467025,1.435205,3.5343999999999998,2.651025,2.79425,3.747335,9.47865,4.38652,1.76784,4.69612,6.63992,4.3534524999999995,4.085545,3.82503,3.830515,4.50023,8.328005000000001,2.4834866666666664,3.131665,4.13886,4.44852,3.01667,3.19046,4.645295,4.27529,3.46215,4.091232,18.353404666666666,2.68684,2.5520633333333334,3.233833333333333,5.633468000000001,1.08636375,4.34505,2.0958083333333333,4.90905,1.3800999999999999,4.20428,4.26127,4.0604,0.968145,4.4789,4.364565,1.6504175,4.805137803030303,4.270785,1.0592542857142857,3.711135,2.051,2.29015,1.595675,4.344715,3.855415,4.4489,3.61676,2.8725,4.39193,7.996006666666666,4.329865,4.4173,4.6766,3.0548333333333333,4.112625,4.784865,6.355479000000001,0.8995620000000001,0.8995620000000001,4.458775,4.691305,2.1905766666666664,1.4082350000000001,7.023875,4.16029,3.260935,3.883335,4.577695,4.437185,3.47088,3.827945,5.817124,4.021616666666667,4.285035,5.679,1.476357142857143,2.76,4.264235,4.827545,3.4476312499999997,0.20554,1.7272625,2.26311,2.486073333333333,2.180563333333333,0.9517944444444445,1.44934,1.39255,2.4788,0.6040233333333334,1.1651785714285714,1.967265,3.95743,3.8946666666666663,2.6463433333333333,2.6571766666666665,2.8858433333333333,3.003963333333333,0.6690959999999999,0.96825,3.29013,4.562975,4.096535,3.88859,4.325975,4.455015,4.48775,2.1117999999999997,4.420815,5.0324,4.573045,6.50474,3.98205,0.4693105882352941,5.528,4.51366,4.17632,5.4001,3.219165,1.90917,3.986645,3.93773,2.980975,5.210359166666667,4.427,1.3883616666666667,5.210359166666667,4.064465,6.8527575,3.94183,1.2082777777777778,3.838945,5.0803,4.24925,2.5840166666666664,4.87657,1.5314075,1.96957,4.023415,3.56722,0.8317666666666667,4.69278,4.880595,3.44745,4.73986,3.1642766666666664,2.96785,1.77912,1.9188225,3.0735,3.682515,3.4393999999999996,2.4637333333333333,2.512875,2.0970516666666668,4.91514,1.5769,0.8467622222222223,6.64115,4.41002,1.4628320000000001,2.7684433333333334,2.453463333333333,3.2955433333333333,6.781518333333333,2.421847777777778,0.841153,2.593945,4.811205,2.45407,4.15348,5.39945,5.46,5.26935,4.20421,4.54913,2.18005,2.1971166666666666,1.7091200000000002,2.11282,1.8279825,2.5993366666666664,2.265826666666667,1.6452,2.661285,3.044045,3.65308,6.46215,5.169,3.97516,4.57446,3.94704,3.89205,4.60316,0.91514375,2.8491,5.02355,1.127424,0.6868066666666667,4.80773,3.629655,2.6405833333333333,3.45298375,6.11565,5.0231,0.987974,1.2354442857142858,0.6956566666666667,4.243954166666667,2.375766666666667,2.8198566666666665,1.18276,2.8289233333333335,2.6540066666666666,5.4428,4.73044,4.25767,5.3233,4.03824,1.2946483333333334,3.586095,1.56932,3.54311,4.410575,3.73608,2.833816666666667,3.1572566666666666,2.713233333333333,5.8215,4.08149,3.09127,2.3342625,8.584859999999999,10.145425,4.2362,1.3226542857142858,5.26265,3.925885,5.00515,4.460635,4.05249,3.879725,3.4777,4.305745,3.8396209375000003,4.45647,3.70306,3.723515,4.62756,1.8159859999999999,5.67085,5.9074,4.884255,3.2513,3.12096,7.0456,0.7524516666666666,2.70757,2.76929,2.4442933333333334,4.94916,3.129725,1.2736883333333333,4.165345,3.4474,3.80851,4.723045,3.7784325,6.700794999999999,3.1904066666666666,2.92431,3.122246666666667,2.91379,4.045975,2.16724,2.2114533333333335,3.0622933333333333,4.08924,3.6277350000000004,1.9331775,1.5937125,3.3280489285714285,3.0908405,0.9360611111111111,2.558606666666667,2.558606666666667,1.2408675,5.51965,3.52291,3.29249,3.38361,3.42721,3.51355,3.484725,3.293105,3.21767,2.104983333333333,0.5385693333333333,3.42625,5.6553024999999995,3.01612,3.70032,3.292295,4.07035,4.13219,3.221625,2.81875,3.858025,3.8657,3.07569,3.297335,3.631745,2.6510366666666667,3.99714,3.867555,8.89835,3.66895,3.69978,3.20856,3.99088,4.086015,3.68228,2.54243,3.69018,2.55009,2.945105,2.983075,3.2342,3.879745,1.6995966666666666,1.6995966666666666,2.402125,2.98223,3.459825,1.574796,2.373995,3.37188,1.9177440000000001,2.97872,1.574796,4.48742,2.98081,3.8578907499999997,2.98952,3.295165,2.483005,3.699285,3.88234,3.7804,3.547325,4.387695,3.79481,4.22102,3.52759,3.04706,3.41519,3.026725,3.765135,2.6673666666666667,3.68332,5.14445,4.167395,3.71214,0.2933826086956522,3.568165,0.4560675,3.932835,3.571125,2.905755,3.547035,3.875,6.048698333333333,3.279125,2.6246266666666664,2.3900333333333332,2.7353199999999998,0.6789229999999999,5.780325,3.17375,3.456705,4.155845,2.03061,2.624375,3.260205,3.19475,6.616245,4.4293,4.989955,4.089745,4.59874,4.26455,4.2879,1.4896216666666666,1.660134,3.772095,4.52344,5.5657749999999995,2.346153333333333,4.5995,1.869825,3.4594666666666662,3.573505,1.7972447619047618,4.01223,4.70214,3.428933333333333,3.6400333333333332,2.9556566666666666,4.352185,4.90518,3.599266666666667,4.307915,4.356255,4.721325,4.355615,4.485845,3.901415,3.34559,4.48538,2.561975,3.16295,3.16295,4.19718,2.6189433333333336,3.97099,2.8429066666666665,4.553975,3.3621,3.43235,1.943705,1.8040866666666666,1.1754200000000001,1.1754200000000001,1.588654,3.4874333333333336,1.7334133333333333,2.805516666666667,4.47477,5.5467825,3.3424666666666667,4.41693,5.87574,2.726815,2.706295,2.8456433333333333,1.60377,4.315885,4.008665,6.47238,1.6566166666666666,5.2989,5.3012,3.4534333333333334,3.37444,4.215325,6.79901,2.0762766666666668,2.38196,3.8984,0.4694842857142857,4.20253,4.040205,4.38083,4.191145,3.39969,1.4394339999999999,1.6391079999999998,3.90089,3.673605,2.424166666666667,3.71525,4.54626,4.82834,1.1382375,3.78392,4.05178,3.733395,4.892975,2.7033066666666667,5.347356666666666,3.69678,1.500962,3.587435,1.223925,2.762113333333333,7.597546666666666,3.26707,0.7242709090909091,3.149635,4.311215,4.1206,2.010905,2.010905,5.201913333333334,5.7787,2.797865,0.48379000000000005,1.9719175,4.211501666666667,4.350235,4.106535,1.724568,2.91099,3.467555,1.22188375,1.22188375,1.22188375,0.7494033333333334,1.329135,0.5797316666666666,1.22188375,0.7494033333333334,0.25756,0.8372916666666667,0.25756,0.49184333333333335,0.49184333333333335,0.49184333333333335,0.49184333333333335,1.151746,1.1552575,2.3833800000000003,2.39599,1.1395583333333332,6.269713333333334,2.6567833333333333,6.116733333333333,2.4906433333333333,3.6647,3.10914,3.267185,2.7154583333333333,4.91429,2.75563,3.962935,4.08041,4.72585,2.2760725,3.73206,4.66937,4.06111,3.267905,4.83819,3.27367,4.551885,5.08445,4.926675,6.0066,5.3886,1.166065,4.110865,3.87975,2.76771,14.463155,4.286965,5.15385,2.8413166666666663,7.34416,4.139155,3.939715,4.831835,3.13098,1.085995,2.50145,3.976195,4.223105,3.55556,3.373825,4.13748,2.788456666666667,4.318335,4.63473,4.061785,6.754886666666667,8.542375,1.34932,3.72042,4.02658,3.754085,3.40545,3.4468,6.86929,2.577365,2.77399,2.441675,4.013985,3.79155,4.48619,2.50921,1.6576925,0.887552,4.4734,4.21512,3.809315,3.77887,3.61465,4.944765,3.944665,6.2381,5.56665,4.47986,6.31155,3.791435,3.259685,3.271385,3.434535,1.8490175,4.7507,6.16095,6.4797,5.966416666666667,5.966416666666667,2.40286,1.8490175,2.118345,2.98394,0.7122783333333333,1.5051358333333333,0.7928575,1.47149,2.593295,0.367761,3.124525,4.06217,1.47149,2.8791100000000003,10.89983,6.5324100000000005,2.282347333333333,1.0574400000000002,1.7974333333333332,4.980755,4.39086,5.547997380952381,2.0409,2.256575,3.90235,3.916225,4.475885,1.64544,5.2688,3.3890666666666664,3.292105,5.0605,7.1687520000000005,3.925275,2.3176975,2.7557333333333336,1.7076733333333334,4.06476,5.3011775,1.705696,5.40885,4.5083,6.2104550000000005,0.55715,4.862816666666667,4.04613,4.71763,2.41846,2.738925,7.30485,9.058016666666667,6.67845,2.1656666666666666,2.1656666666666666,2.1656666666666666,5.38565,5.05465,6.1885,3.183675,2.81263,2.5586144736842105,4.51644,5.0835,2.648264,1.944245,2.648264,7.0077240000000005,4.676703333333333,4.529222619047619,6.81699,4.529222619047619,4.529222619047619,3.324624285714286,7.01512,5.616787,2.937442,2.937442,2.601345,6.882,2.870305,3.563325,5.562885416666667,5.562885416666667,5.562885416666667,8.093595,3.6931675,3.42084,3.717235,3.5495975,0.90356875,7.306033333333334,2.62933,5.8645,3.56218,13.039369,4.280115,5.704533333333333,7.04282,2.734236666666667,3.414025,1.1308816666666666,5.704533333333333,3.512745,1.6796275,1.6796275,3.033405,5.356745,1.74707,4.8538033333333335,0.8569150000000001,1.4309033333333332,0.8569150000000001,1.933845,2.6039849999999998,5.469475,3.550975,1.4309033333333332,3.07996,4.77449,1.03677,3.507495,4.510735,1.82333,4.147705,2.539745,3.182915,3.181615,0.964622,3.76389,2.02271,1.74545,1.67558,3.2132750000000003,3.922745,2.77614,3.78204,1.2584655555555555,1.2584655555555555,1.2584655555555555,4.052215,3.0078366666666665,3.0078366666666665,2.68535,3.877845,2.2865800000000003,1.4285,1.4285,3.01173,4.2878,0.77725,1.5252233333333332,2.99287,1.2154850000000001,2.740708333333333,0.964622,0.964622,2.0284466666666665,0.964622,3.348163333333333,0.5941583333333333,3.348163333333333,5.9743691666666665,3.379385,2.39836,1.8269325,0.6621733333333334,2.4891058333333334,3.68787,2.4891058333333334,0.97196,3.21801,3.854185,3.81798,3.640705,2.40797,3.928045,1.9410433333333332,0.7899602777777778,0.4292025,0.7899602777777778,0.3607577777777778,0.7899602777777778,0.7899602777777778,4.16644,4.734695,4.41442,3.510545,4.43067,4.43217,5.2178,3.314515,3.746015,1.2864585714285715,3.01792,4.417435833333333,3.96954,1.3730266666666668,2.63049,3.80132,3.828205,4.10882,3.56943,3.919925,3.57482,3.21734,4.297575,2.24747,5.8469,3.64457,3.98958,5.107208571428571,1.3054845714285714,2.131895,3.79029,6.72643,4.449165,4.19599,3.13664,5.31915,7.865483333333334,3.3770666666666664,3.23016,3.4316333333333335,5.20775,4.132795,5.5144,5.48505,4.738685,3.36427,5.0528,4.69951,3.4105333333333334,4.14821,3.1006666666666667,2.21402,2.1658166666666667,4.942015,6.5478,5.7703,5.4212,4.33448,5.2768,5.64805,0.5155869230769231,7.29347,4.4253,4.156865,3.594405,4.60756,4.047695,3.0401366666666667,2.489665,1.3502216666666669,0.5741530769230769,1.7521660000000001,2.95078,3.5732,3.354205,4.24288,4.12216,11.693886666666668,3.74766,3.777515,2.82388,0.71403,5.717883333333333,3.06001,1.4289833333333333,4.488993333333333,5.62344,2.56343,7.98592,4.51174,1.8575620000000002,1.8575620000000002,1.8575620000000002,4.197795,8.92528,3.513145,2.0171925,2.0171925,3.093,9.78883,1.03452875,4.863655,4.24767,3.97123,2.7159333333333335,2.38416,4.5615,3.89797,5.8268,6.19038,3.918085,2.9169,3.88386,4.13681,3.4069830000000003,1.3042,2.966943333333333,6.11482,3.32852,4.802025,0.98016875,3.7341333333333337,2.51909,2.6160433333333333,1.7711375,1.8031066666666666,2.1245333333333334,6.04865,1.99658,4.342065,5.6887,1.902384,4.54877,3.853355,4.76443,2.9415999999999998,2.19624,2.642145,3.989725,4.075088333333333,4.075088333333333,1.12758,1.6653766666666667,2.8506,4.368965333333334,2.244422,4.8138966666666665,1.7607,2.683006666666667,2.13555,1.602245,1.602245,4.839715,7.240231666666667,1.95814,2.896186666666667,2.0585575,5.8158,3.301225,0.679422,2.957355,0.679422,2.69394,3.433125,4.738,5.6675,3.712175,4.50228,5.7232,2.281055,1.9686066666666668,2.5628766666666665,2.25484,5.95915,4.87848,3.70317,3.709735,2.795515,4.131665,1.0607025,1.104792,1.9849366666666668,1.4334266666666666,2.4863466666666665,2.7230266666666663,2.2806633333333335,3.129566666666667,2.585255,4.261405,2.5672333333333333,2.38231,2.7525399999999998,2.360933333333333,2.868743333333333,2.7822566666666666,1.94576,2.4649933333333336,3.819305,4.118585,3.659915,3.287465,2.93838,2.277515,1.9346525,1.2628666666666668,0.311336,0.16603978260869565,2.1561866666666667,2.13498,0.16603978260869565,4.01187561594203,2.2710775,0.16603978260869565,6.022636805555556,2.261916666666667,6.57179,3.356405,3.529033333333333,2.345153333333333,2.803803333333333,2.3749175,4.462385,2.9809866666666665,3.3094933333333336,0.4496210526315789,3.9869483333333333,2.568771052631579,2.83366,1.814785,2.44431,4.00213,2.558115,7.939395,5.1162,3.333615,3.747695,6.1027,6.4459,1.75283,4.0564350000000005,2.040345,1.792695,6.88273,7.60454,1.1873566666666666,2.068255,3.838745,2.556325,2.875005,3.07508,2.92157,4.2397849999999995,2.51015,3.122745,3.43799,3.18213,7.63719,1.31785,1.917445,3.16932,3.341385,1.5868233333333333,3.376375,1.46966,3.773065,3.348185,6.65107,3.478065,8.52232,3.680865,1.57957,1.6599466666666667,3.11336,6.15876,1.84296,1.70124,5.67471,3.458515,4.02831,2.684755,2.0984166666666666,3.25292,10.582035,5.07253,6.18945,3.55963,2.34455,2.11318,2.598815,2.970335,3.182475,1.67275,1.5765533333333333,2.506596666666667,3.50709,1.784605,3.274785,2.454325,4.06951,3.713385,3.159085,1.2851216666666667,2.587015,1.0432233333333334,1.263402,1.604805,3.235405,3.53204,3.841555,2.634345,3.68905,3.87861,2.74491,1.450038,3.563935,3.373735,3.237575,1.92807,3.072455,3.280235,1.49637,3.509605,1.5792400000000002,4.046855,3.845645,4.83351,2.63908,3.933415,1.77927,3.906175,4.729445,1.737395,1.099937142857143,3.8631666666666664,2.541445,4.361935,4.290115,3.153965,4.40871,4.6474,2.3263833333333332,5.54605,5.415245,6.6126,4.08793,6.1122673333333335,3.85721,1.5529483333333334,2.6323666666666665,4.590415,4.80243,2.5857766666666664,7.190612,1.2770514285714287,3.5734333333333335,2.2079,1.751238,2.3343599999999998,2.8332833333333336,0.3752307142857143,2.765143333333333,3.1527433333333335,3.60148,2.30604,3.2983966666666666,2.303263333333333,2.4388033333333334,2.2023825,8.926639999999999,4.684955,1.5854620000000001,4.883655,2.7482829130434783,0.7457965897435898,2.76642,7.512965333333333,1.791128,4.71391125,6.101125,1.81947,1.7424975,1.45617,4.82937,3.353905,4.51732,4.2586775,2.4819400000000003,3.846955,0.9759059999999999,2.836739333333333,4.17938,4.14164,5.14805,3.07854,4.62061,4.79351,4.551065,4.792825,5.65195,4.37644,4.514925,4.656535,1.503758,1.9481725,2.852625,3.464925,1.1960777777777778,4.194915,2.070813333333333,3.25053,4.08604,3.137536666666667,2.6423133333333335,1.55493,3.074856666666667,2.718088611111111,2.737413333333333,3.030936666666667,2.0042266666666664,2.053645,2.334525,3.687635,5.03785,3.856745,4.56076,3.464485,2.384285,3.201475,5.1444,3.4540666666666664,4.516465,4.110595,2.32326,4.400376666666667,1.7193566666666669,4.28027,5.324301666666667,6.447165952380953,4.43086,4.55209,5.47,3.4268666666666667,3.9227566666666664,4.41546,3.399045,3.7035565000000004,3.483675,2.0020475,3.136295,1.68198,2.24932,4.080225,5.37939,3.7035565000000004,4.144755,3.51327,1.4254316666666667,3.636305,2.08139,2.64203,2.404335,2.82814,1.5867289393939394,1.5867289393939394,1.5867289393939394,0.5511072727272727,0.7679544444444445,2.175517777777778,1.06018,3.533495,1.2248566666666667,4.02143,5.0159,4.209435,3.22549,4.089395,3.168905,4.884625,1.6236175,3.19077,2.41483,3.48873,5.871403,4.087125,5.47285,4.071715,0.9410525,2.23374,1.28108,3.82247,3.920145,4.229545,4.93909,4.81289,4.448025,4.7229,3.690815,1.73464,1.2412216666666667,5.435673333333333,1.0171877777777778,1.3903266666666667,2.5934233333333334,8.204235,3.765545,3.71149,2.96294,5.7048475,1.6897825,0.9800133333333334,1.4609025,3.296415,3.431845,3.80588,3.60348,1.9185025,6.110085,3.0357833333333333,0.96092125,5.08095,3.0459599999999996,2.7123666666666666,2.33331,3.5694,5.84951,2.7154166666666666,3.0671033333333333,3.6910000000000003,2.363236666666667,2.9551766666666666,2.9024633333333334,2.852945,1.968215,4.61016,4.68864,4.73995,1.0260055555555556,0.722802,3.8486333333333334,2.7055466666666668,1.0684225,2.8589891666666665,4.45076,4.465065,7.265205,4.588435,3.6804333333333332,1.7400980000000001,4.101185,3.72138,2.7724766666666665,2.6562657142857145,4.04874,2.8934333333333337,4.960044666666667,0.9037533333333333,5.1131,1.71573,4.616075,4.18841,2.10189,1.06543,3.065775,0.408723,3.60612,6.6947,5.42965,2.6389839999999998,1.487148,2.3894333333333333,0.7662755555555556,2.5270633333333334,0.7662755555555556,3.987845,4.14511,1.3439975,1.90772,5.012225,1.8185900000000002,3.54665,4.133665,3.562765,1.254148,1.5835766666666666,4.10265,5.1656,4.970845,3.140142,2.282165,3.10265,1.6613775,2.3614075,1.8350475,1.97952,4.26077,1.4344,1.4344,3.23047,4.734674666666667,8.2578925,4.7342933333333335,7.103490000000001,2.32809,3.792285,4.045855,1.6346116666666666,3.6054216666666665,4.123655,3.87734,6.19805,3.078725,2.404445,2.8101033333333336,3.790725,1.09186875,4.129375,4.562525,1.2090183333333333,7.87345,2.586485,3.224425,3.407410833333333,4.443875,4.17021,3.8886104166666664,2.4993,2.8304500000000004,2.029786666666667,3.583133333333333,2.498505,2.1728825,7.514681333333334,3.27709,3.1304766666666666,4.38363,22.48430337728938,0.660836,2.59312,4.323655,4.386095,8.74166,4.558785,4.211375,4.444815,6.88198,3.555245,1.93055,4.803395,3.29999,1.263756,1.263756,1.263756,2.7310575000000004,1.718925,3.43361,1.58055,3.06419,1.4358333333333333,2.65159,2.50067,2.87301,1.58055,3.175365,2.72216,4.196135,5.030743333333334,5.12745,0.7836025000000001,3.219725,2.57718,4.884235,3.96482,2.936725,2.186055,1.671745,2.084515,1.4212960000000001,3.805735,1.6675775,4.601405,11.281252333333333,2.692466666666667,2.336355,4.919113333333334,4.382000000000001,4.349766666666667,6.5531,2.11915,5.409055833333333,4.559645,1.0072983333333334,1.1856514285714286,6.420528000000001,4.125065,2.231275,3.81613,1.9160275,4.441575,4.89568,4.436565,4.05726,1.3394714285714286,4.162325,4.93852,4.495545,6.188239,3.578515,5.22005,4.60549,4.125505,5.0945,3.4847,4.74199,2.101795,3.37072,3.34323,4.63886,3.92304,6.1686,4.38091,2.3279166666666664,3.3735666666666666,8.711884999999999,4.443395,3.02978,3.644055,3.4108,4.524945,4.31963,4.823425,6.755111666666666,3.40738,2.6796333333333333,4.182475833333333,2.401465,4.287735,2.6761866666666667,6.694122500000001,1.5544616666666666,4.638265,4.437815,11.509595,0.468705,4.52253,4.355525,0.6331314285714286,3.71245,4.00003,4.230095,0.961721,4.554035,4.935356666666667,2.65323,9.74915,3.1941966666666666,1.9570733333333334,2.70265,3.262395,5.91575,0.6226225,3.891775,2.0541875,5.08855,0.7053753846153845,4.09979,5.34765,5.67365,3.6633,6.369675,4.32871,3.4521212500000003,2.597026666666667,2.8259000000000003,4.36207,4.55313,4.925525,4.987925,5.0799,3.277136666666667,6.965296666666667,2.808325,3.2045565,2.09463,3.72027,2.45134,1.5533533333333331,3.254993333333333,2.97078,3.0273800000000004,3.355366666666667,3.4117333333333337,3.109413333333333,2.582806666666667,5.4816,3.2556700000000003,3.722185,4.96012,2.6316633333333335,1.1129888888888888,2.964166666666667,2.92309,3.766025,3.130686666666667,3.2353133333333335,4.655998333333334,1.9859333333333333,1.803115,2.90146,3.740655,4.35689,1.09106375,4.554345,3.328355,4.1142666666666665,2.920386666666667,4.845212,3.967695,3.24406,4.13902,1.70308,3.852985,0.66110625,4.417235,4.66636,15.869016363636364,3.17925,1.1784466666666666,4.58501,0.6330971428571429,2.658475,4.448845,2.05512,1.2856557142857141,3.61361,4.53881,2.9581966666666664,0.8330116666666667,2.869105,7.53584,3.63392,5.62385,5.2648,4.891345,3.4371666666666667,3.6583,3.3175033333333332,7.058590000000001,4.00006,5.2638,2.1374925,0.4562611111111111,1.952895,3.072545,2.271085,3.062225,4.531985,2.9290299999999996,4.86973,0.706875,4.47305,3.61371,3.23857,1.1683433333333333,2.8164700000000003,1.9600933333333332,4.899675,3.94612,1.909145,1.6252142857142857,3.972115,4.665715,4.738275,6.311416666666666,2.141036666666667,4.95719,4.690245,4.2191,2.2629799999999998,4.09105,5.798346666666666,5.0016,2.3857,4.798565,3.05936,2.7453,3.974925,4.203695,1.3709550000000001,4.65217,2.3323933333333335,2.8430700000000004,4.891493333333333,4.891493333333333,4.82454,1.759684,4.789685,0.95021375,1.835004,4.96805,2.4520733333333333,1.4227666666666667,3.13709,0.848518,4.2836,5.63795,3.02399,4.99896,3.96723,3.83506,6.2712900000000005,3.468325,3.16761,3.10548,2.54072,2.69565,2.8545533333333335,4.37033,1.5839035164835165,2.83286,4.391655,4.85224,2.225029166666667,3.98199,4.693045,4.96483,3.3397666666666663,5.32165,5.0224,5.1811,4.725715,3.77665,3.435555,3.65376,4.483835,5.4826,4.643775,4.872185,4.29775,4.553835,0.6968616666666666,4.84361,4.611295,3.93852,7.07344,4.189585,3.63664,4.15769,4.52731,3.500285,3.88481,2.13723125,4.524535,2.051355,1.2261014285714287,3.881915,2.0317933333333333,2.48535,3.729704,3.03311,3.118655,1.1355333333333333,1.92643,5.0091,3.844895,1.9012225,1.9012225,3.914375,1.8586580000000001,3.0715066666666666,4.51422,3.639935,3.798895,1.53528,2.085745,3.5423125000000004,1.829285,4.331225,4.51753,4.538785,4.083445,7.94289,2.558325,3.63104,4.644765,4.372835,3.106176666666667,4.215985,4.06962,4.20457,2.260955,2.6563266666666667,4.3776,4.026755,3.67473,3.68541,1.59061,3.557475,4.153635,4.515125,4.08046,3.9372249999999998,3.9372249999999998,3.0189675,4.10116,4.420035,3.905555,1.661222,7.786199999999999,4.01308,5.14325,4.375235,4.058745,4.4628,4.81526,2.987695,4.334265,2.8956,5.08155,1.9420860000000002,4.73987,5.535122222222222,5.0377,0.751085,4.805991666666666,1.0709199999999999,4.78672,4.3957,4.51599,4.29654,5.2982,3.595966666666667,3.595966666666667,0.8912319999999999,2.136635,4.61562,3.597505,3.95611,4.457245,5.2316,3.3361,4.090845,1.321345,3.09521,1.6896775,1.17069625,4.356757333333333,0.858793,2.5188966666666666,2.96604,1.2560366666666667,2.1094625,2.6996066666666665,1.213695,6.19834,1.87116,2.57261,4.93607,1.935725,2.8261366666666667,3.950975,4.57848,3.7299666666666664,3.040846666666667,3.9675,1.63491,2.1680858333333335,4.421935,0.6499285714285714,2.16855,2.4812333333333334,3.0492033333333333,2.7452566666666667,1.1720042857142856,0.8415499999999999,2.4496733333333336,4.198795,1.1638485714285716,2.0862975,1.2788525,5.83168,2.29088,4.806205,4.304045,4.281925,4.73566,5.2908,4.08846,4.16401,1.3612483333333334,3.9454999999999996,1.616956,2.56672,1.1797085714285716,4.341345,2.1295125,6.239884,3.83076,3.75093,1.507362,6.7612675,4.17025,1.4121416666666666,4.137565,3.063505,3.912265,3.277125,1.97725,1.97725,3.1600133333333336,1.361505,1.361505,2.2629799999999998,2.72993,2.203955,1.3539183333333333,3.6342666666666665,1.0731875,3.1549633333333333,2.4155,1.8981475,1.5244783333333334,2.2081725,2.1019275,0.2766094117647059,2.423065,1.1987983333333332,2.438286666666667,2.13555,2.510975,1.0751344444444444,1.12141,3.8366000000000002,3.0022966666666666,1.97725,1.7914525,1.8323633333333333,2.55257,2.50059,1.7560379999999998,2.7267733333333335,1.0989499999999999,3.18451,2.8124633333333335,2.53206,1.523172,1.079996,2.37963,1.079996,2.37963,0.74307375,0.74307375,0.48639111111111105,2.327935,2.3205933333333335,0.74307375,2.187075,2.3864533333333333,2.278785,1.7349475,0.7808511111111112,0.74307375,0.74307375,1.670534,1.670534,2.118325,1.7914525,0.74307375,2.31468,0.46154923076923077,2.8914866666666668,2.055363333333333,2.61614,2.41636,2.41636,0.383034,0.383034,2.2629799999999998,1.881088,2.1909199999999998,1.9229399999999999,0.383034,3.4833,2.42627,1.637526,0.605675625,1.637526,0.605675625,6.79598,2.52083,3.8469333333333338,2.951033333333333,2.9594199999999997,2.9645766666666664,2.7795533333333338,3.4369666666666667,2.30699,1.76775,2.69168,3.3770666666666664,2.47442,1.670534,2.4539969841269844,2.4539969841269844,2.738253333333333,2.1935875,4.35208,2.3090966666666666,3.2408133333333335,2.65084,1.4709619999999999,2.446915,2.32224,0.7656990909090908,1.6310475,3.188085,1.712964,3.2662633333333333,2.57458,2.619375,3.7776666666666667,1.601555,3.509733333333333,3.13044,4.086566666666667,1.2714940000000001,0.2918141379310345,1.3031314285714284,1.3031314285714284,1.0008511111111111,2.9555133333333337,3.831633333333333,2.5130933333333334,2.1271766666666667,2.1271766666666667,2.1677175,1.5792400000000002,0.999917,1.6814366666666667,1.6814366666666667,0.74307375,2.2629799999999998,2.8509666666666664,3.3534333333333333,2.4155,2.08256,2.08256,2.08256,1.0517644444444445,1.5171714285714286,1.5171714285714286,2.469065,2.9336033333333336,2.740652058080808,3.980575,2.5183666666666666,2.4528333333333334,3.793855,3.945915,7.229772499999999,3.537745,4.230175,3.7683999999999997,13.282315,4.664845,3.471795,1.116465,4.02835,3.737065,2.305725,3.69405,5.1641,6.601315,6.1069,0.48248294117647056,3.874785,2.913405,3.92874,2.44507,4.50773,4.793695,3.90004,8.165635,3.524415,3.912785,3.83654,3.2865959090909094,7.921153333333334,3.126186666666667,2.603196666666667,3.478115,3.881245,4.848875,3.79174,6.17096,4.97385,1.332922,3.828035,0.87555875,4.629525,6.20825,4.03533,4.396385,5.3869,3.086805,5.1005,4.10818,9.036024999999999,4.04994,4.751504000000001,3.5697666666666668,5.3304,3.060955,0.8432975,0.8432975,3.570115,4.06416,2.323655,2.152825,3.943115,5.64265,3.5725,1.9284,2.4002675,3.311845,2.6267566666666666,1.1482225,3.656815,4.439725,8.39217,1.6009280000000001,3.39847,3.789515,3.41818,2.7565000000000004,8.11786,4.07935,3.442766666666667,2.9344,3.873205,3.3881333333333337,2.9977433333333336,3.0626266666666666,4.04869,3.74618,4.026985,4.193905,0.38428799999999996,1.4104233333333334,2.2505166666666665,1.74764,4.60914,3.675915,2.6081366666666668,2.181355,4.506575,3.90358325,2.2385875,2.509425,0.909319,2.253715,2.5971933333333332,2.5971933333333332,5.1751,1.88558,3.048243333333333,2.3039866666666664,2.06801,1.81402,2.81039,4.012705,4.38089,4.011765,4.913775,4.70259,2.907275,3.1140833333333333,1.9094919999999997,4.88314,5.267235,2.4091066666666667,2.9847366666666666,2.090005,2.4905466666666665,3.9009316666666667,2.6984166666666667,4.824335,3.612345,3.36277,4.200725,2.9393433333333334,3.59498,4.17228,2.3340866666666664,2.5438566666666667,0.4150378571428571,3.6224000000000003,2.5509133333333334,3.030055,5.77815,4.6136,6.045955833333333,2.1366425,1.5471533333333334,3.13659,5.30175,6.3645,5.4574,3.0933966666666666,2.3119166666666664,3.66595,2.3673366666666666,4.7544,2.22391,2.0917225,5.2615,4.7583,4.5996,1.8357925,1.95979,1.0497400000000001,1.0497400000000001,1.221254,0.9150628571428571,0.816188,1.841500857142857,4.399785,10.4642225,3.87478,4.235675,4.019445,5.63885,2.71001,1.63312,3.3239725,2.93807,3.97018,2.4616266666666666,2.5911233333333334,3.3163633333333333,3.2613233333333334,2.2913900000000003,3.231033333333333,3.31287,3.0698966666666667,3.5158666666666663,3.378033333333333,2.9741666666666666,2.7210066666666664,3.412333333333333,2.34339,3.0869,3.07807,2.9647166666666664,3.4725333333333332,2.15544,5.416362476190477,3.23583,4.152533333333333,3.21729,3.08433,3.7177333333333333,2.8272266666666668,2.77244,3.0641766666666665,3.1993066666666667,3.2349333333333337,3.1074266666666666,1.980465,2.7169333333333334,2.64383,2.888625,2.888625,3.2403766666666667,3.2488733333333335,2.43808,2.8416533333333334,3.0191166666666667,4.2832,2.63613,2.692225,2.69017,2.79936,4.568299166666667,4.974215,1.6560166666666667,3.2499533333333335,3.7393666666666667,3.4377459999999997,3.331773333333333,3.692466666666667,3.4120000000000004,2.718973333333333,3.3447380000000004,1.8791499999999999,2.8218530000000004,3.4723666666666664,3.3973666666666666,2.5034466666666666,2.57722,3.8946,2.7932433333333333,3.1054999999999997,2.38,1.2158933333333333,3.1982866666666667,2.5339899999999997,2.1307266666666664,2.40468,3.1244266666666665,3.1122033333333334,2.00248,5.501856,2.3443366666666665,0.868665,4.349875,1.9252433333333334,1.6971666666666667,4.471435,4.23611,3.460875,2.554785,1.4451525,3.377015,2.98074,2.985055,0.4266585,2.135985,0.4266585,2.014255,1.4451525,2.74783,3.785945,2.4324075,3.336725,3.65646,0.5256873333333333,2.7206566666666667,0.941245,0.44518588235294115,4.41276,4.054455,5.0063,2.4623225,5.3352,4.043205,3.80571,3.82358,3.7512333333333334,1.7283380000000002,6.01625,2.95663,4.18323,4.631105,3.054543333333333,1.9640933333333335,2.12068,1.2995033333333332,1.773285,1.014885,1.014885,4.32453,2.32933,6.092165,2.249925,2.09363,2.507065,2.1794789999999997,1.90007,4.248385,4.0022649999999995,2.102195,2.59601,2.1794789999999997,2.390785,3.554609,1.890815,5.591175,2.249925,3.4154774999999997,3.16041,3.24968,5.66985,4.767565,1.996085,1.9409725,2.3224175,2.56845,4.788285,5.2121,1.9860125,3.92823,1.60377,1.566195,5.4666,10.355115,2.05687,2.3327633333333333,2.2916066666666666,4.373915,4.20893,1.8784125,4.73173,4.30779,2.84501,39.30583848809523,2.907296666666667,3.067206666666667,0.46735666666666664,5.0230508333333335,2.197906666666667,0.9226944444444444,3.94251,3.659595,1.8919875,1.79312,2.35847,3.77424,1.3635,3.0145826666666666,3.66369,4.60993,0.8715970000000001,4.82762,4.683935,4.927185,2.8139833333333333,1.49865,3.8092425,4.550635,3.9535,3.29252,3.629755,3.88571,11.62740202020202,2.757633333333333,3.065775,4.098775,2.4849,4.20042,3.266805,2.33674,3.1388,5.32,4.53585,4.95872,5.0372,2.39741,3.477775,4.35533,3.67448,4.626385,4.57533,0.10346141304347825,2.362485,4.78609,2.791215,1.352385,1.0964833333333333,1.0964833333333333,2.3582825,2.712075,2.7932,1.327672,2.7907766666666665,4.53052,2.62685,4.312705833333334,0.5696992857142857,4.44413,3.502865,4.59548,4.330725,4.844345,1.23952875,1.16254125,3.7235666666666667,2.923966666666667,2.905253333333333,4.097707181818182,4.452575,6.2660350000000005,5.5618,4.62215,3.45659,2.1521675,1.5004433333333334,5.0272,0.3153313333333333,3.37746,3.795535,4.014625,13.792996666666667,1.80102625,3.0715,0.64498125,4.379655,10.381799999999998,3.31649,1.9910133333333333,5.6676,3.3747333333333334,1.198181111111111,3.75464,2.81899,3.2166,4.807675,3.4082084444444445,1.1722725,7.494186666666666,0.758485,4.96447,3.2091489444444443,1.3982575,2.0838614444444445,3.2986625,3.2986625,3.886965,4.3199214999999995,1.438925,2.457235,2.46649,3.598995,2.936305,2.5385,3.28214,3.382295,6.5723199999999995,6.3987,4.107335,3.248305,4.980075,4.647025,3.800365,3.398445,3.60445,4.10609,4.657445,2.52595,2.6506666666666665,1.5648983333333335,2.3726966666666667,2.2838275,1.5328575,3.3132066666666664,3.6039999999999996,3.4909,3.03651,2.7988233333333334,1.5127433333333336,1.6005933333333333,0.45588,2.9039866666666665,1.504657142857143,1.8529425,3.1501,2.539496666666667,2.52727,0.9629425,2.3499525,2.600015,2.97585,3.594425,5.49475,3.72681,2.98424,2.225493333333333,3.363735,4.103235,2.378835,2.85488,1.88248,3.81612,2.83255,3.878485,1.35874,0.585869,2.193355,3.403085,3.08794,3.923975,4.8617799999999995,8.72731,2.9533666666666663,2.2879466666666666,1.8185200000000001,1.7839040000000002,1.7839040000000002,2.7028233333333334,2.515756666666667,4.99813,4.70937,3.44246,4.683325,4.391405,4.14967,3.4404399999999997,4.46288,8.181745,2.4330925,0.479445,3.1130833333333334,1.31385,1.0596328571428573,1.7892633333333334,0.806659,2.12845,5.0394,5.23705,6.1112725,1.1363875,7.26632,1.99558,1.5627183333333334,2.5625133333333334,4.13205,3.1593366666666665,2.514125,3.643015,3.0534433333333335,4.162066666666667,2.866013333333333,2.7832933333333334,2.9779366666666665,7.03413,2.49904,4.14225,3.762043333333333,3.6577458333333333,1.4328033333333332,1.2868425,4.40236,2.7927933333333335,3.10894,6.051805,2.383395,2.133425,2.41333,3.108195,3.6155666666666666,2.3412566666666668,4.238286666666667,2.92797,5.16545,2.4444885833333334,1.8868725,4.96126,5.3994,4.66303,4.414935,1.5450633333333332,2.2654,2.08241,3.283005,1.6279866666666667,0.90517,2.6932425,2.0678975,2.03175,4.30592,0.7844975000000001,5.4681725,1.4784525,0.7774381818181818,3.6795000000000004,4.24595,0.70101,3.1716100000000003,3.04986875,0.8415499999999999,4.41186,0.1775742857142857,0.1775742857142857,0.1775742857142857,0.1775742857142857,0.1775742857142857,0.1775742857142857,2.047212,3.69713,2.047212,2.047212,1.7776166666666666,0.1775742857142857,0.1775742857142857,3.2459366666666667,2.5577633333333334,3.553125,3.39225,2.337355,3.56024,1.512057142857143,1.6721240000000002,3.4069830000000003,1.436782,2.9872633333333334,2.6891466666666664,5.693743333333333,4.348305,4.034975,6.16145,4.28348,4.773315,4.212655,4.3195,6.960776666666667,3.698033333333333,3.6129333333333338,2.6173366666666666,5.134233333333333,2.668786666666667,1.974045,1.89485,4.738155,5.2199,4.687565,5.1534,5.52525,4.402925,4.59231,0.8085281818181819,0.6936192857142858,0.6936192857142858,4.71397,2.433123333333333,3.767765,0.9584842857142857,4.76245,1.4425571428571426,2.3690666666666664,2.60446,4.570733333333333,4.570733333333333,6.87835,4.58258,1.409745,10.915361666666666,3.2136866666666664,1.1943333333333335,4.83086,4.814145,3.869635,3.11646,2.7087,4.2718,0.7409266666666666,3.321813333333333,3.3713333333333337,3.7250333333333336,3.05898,1.4018833333333334,1.3848900000000002,4.7176925,3.1159833333333338,2.99382,3.3956,5.2445125,3.3885891666666668,0.7776270000000001,1.8459466666666666,3.0787533333333332,2.378115,3.708766666666667,3.417666666666667,3.04264,3.515333333333333,3.07398,2.4268966666666665,0.90179,3.03942,2.46024,3.415225,3.196165,4.05469,2.5913566666666665,3.3530333333333338,2.83335,1.5857839999999999,1.8361033333333332,2.756146666666667,3.530333333333333,1.8765720000000001,3.26496,1.8233166666666667,3.7982666666666667,5.266510833333333,4.904540000000001,2.4529325,2.53015,2.85245,2.29655,1.5681142857142858,2.2551125,3.0975314285714286,2.4907225,3.7548666666666666,2.967695,3.7042143333333337,3.123925,1.1605777777777777,1.2836,1.789015,2.198295,2.94505,3.3821,4.988655,7.29491,2.91723,4.805215,4.03526,15.251060666666666,0.476037,11.506245,1.022218888888889,3.407375,2.36953,2.00164,2.99676,1.6482240000000001,1.450038,2.54226,1.222212,2.73577,1.9107933333333333,3.054766666666667,2.1721866666666667,2.6298566666666665,1.6004533333333333,0.7302933333333333,3.1073833333333334,2.49602,3.011813333333333,1.0517644444444445,3.5479333333333334,0.7111558333333333,0.37214923076923073,2.083676666666667,4.23546,4.947305,4.907765,0.8058763636363636,4.047475,4.728785,1.2170625,2.4574275,5.267540833333333,3.26002,3.82367,3.831645,3.917965,1.972035,3.885095,2.7150266666666667,3.52136,3.491915,2.79935,2.58422,3.787695,3.189635,3.753735,2.396325,3.31985,4.925905,1.4353533333333335,4.572145,2.2400225,3.914655,5.148540000000001,2.179015,2.8452933333333337,3.0213099999999997,5.834278333333333,2.8056433333333337,3.438085,5.5367,3.8469333333333338,4.30368,1.8285133333333334,2.588925,5.40965,3.4940333333333338,4.492055,3.4867333333333335,3.12898,3.033393333333333,3.8384666666666667,3.1587633333333334,2.6862133333333333,2.67721,0.4465933333333333,2.3688475,2.1137175,4.54735,4.671455,3.0549,2.6771066666666665,3.3469333333333338,8.359465,3.6191006249999997,3.96694,3.6179333333333332,3.748845,3.12851,3.7284266666666666,2.685923333333333,2.1411325,2.6143899999999998,6.23215,4.61261,2.1333766666666665,3.26558,2.862265,2.6505966666666665,4.567428,1.743412,6.141206666666667,3.96768,4.7716,4.471855,5.88585,3.66011,6.431498333333333,5.2118,3.85769,0.6516821428571429,2.3424275,1.49551,2.9666533333333334,3.19805125,4.138905,4.00824,5.46355,2.6291866666666666,4.59454,3.22157,3.5751333333333335,3.0768566666666666,4.5226,4.736225,4.94414,2.6487333333333334,5.738273333333334,4.379005,1.3980316666666666,5.4471,3.621685,2.863825,2.26769,2.2730833333333336,4.5876399999999995,1.17172,2.384183333333333,2.0196475,3.7914,4.3097,2.530886666666667,3.2609333333333335,3.002104666666667,2.5059766666666667,4.04644,1.370608,2.29331,2.61395,2.7717066666666668,2.49669,2.6585933333333336,2.69247,3.91282,2.940963333333333,2.85145,4.12725,2.22713,3.924645,3.64379,1.696899696969697,1.696899696969697,4.5449,2.8118466666666664,1.8029125,1.332405,2.0961825,2.020385,1.32051,1.4220966666666666,0.678312,1.6274499999999998,1.5131666666666668,2.8401899999999998,2.1911133333333335,1.7878066666666665,1.92494,2.401053333333333,1.7832566666666667,1.79249,1.8815799999999998,2.28325,4.05063,2.91584,2.8887199999999997,2.81025,5.80265,2.9924,4.296885,4.08495,2.069745,3.76239,2.867325,1.793245,3.374435,1.8556075,2.82397,3.598735,1.98115,4.561535,3.019845,4.098105,3.413866666666667,0.8637222222222223,4.41612,3.735775,3.315245,3.7136,2.803976666666667,4.624965,4.717105,4.9884025,9.070904166666667,3.80916,4.401285,2.9501500000000003,3.51412,4.335795,2.36762,2.9204,4.124315,2.25357,5.715195,1.809468,2.68206,7.5244,3.0111899999999996,4.123872,1.2650771428571428,4.361045,4.628225,3.216253333333333,4.5547,4.720725,6.169384000000001,15.875525773809525,0.6396882352941177,1.0751344444444444,3.2333200000000004,4.566425,3.52673,2.1293025,3.361515,4.045485,4.87985,2.812,4.591105,1.7258833333333332,1.7258833333333332,5.2852,0.7550563636363635,1.777064,2.953635,3.93182,0.3759569230769231,1.8752966666666666,4.160327583333333,1.1857033333333333,3.0241366666666667,2.73672,2.951185,7.70374,2.5269266666666668,3.3988,1.9824033333333333,2.2801633333333333,3.9477700000000002,3.31212,3.32219,6.914885666666667,1.746215,2.767175,4.597125,6.68264,1.7939166666666668,2.32624,2.6241866666666667,1.3748166666666668,2.663145,1.65842,3.852615,3.879955,1.4396025,1.9551776666666667,1.9551776666666667,2.7262500000000003,5.4727,3.93811,3.78244,4.69646,4.608355,3.099185,3.68561,4.450205,3.59611,5.566135,3.778015,4.369295,0.912911,0.362703125,5.253,3.846825,2.90284,8.3328,1.4344366666666666,4.7367,3.998045,0.4848958333333333,1.9589766666666666,1.3456766666666666,1.85271,1.8912166666666668,5.247968999999999,3.09756,2.96602,4.5889325,4.761425,4.57799,0.6017923076923076,2.052045,0.596395,5.822756666666667,1.518464,4.861475,2.0998925,3.26927,3.31305,4.14508,4.305385,5.1472,0.8275254545454545,3.027855,4.38243,2.068965,1.7996075,3.665705,3.358305,3.419625,3.8589275,5.236904761904762,4.530585,5.42835,2.7744700000000004,0.8934855555555556,3.4080666666666666,3.74828,0.6396676923076924,3.921125,4.03084,3.944595,2.62828,2.72748,5.4112,3.257175,3.453605,2.203905,4.200385,1.6963460000000001,4.139755,3.74638,0.6733123076923077,4.31758,4.073345,3.283195,3.85004,4.32479,5.0101,3.8817,0.6294069999999999,2.954423333333333,3.7848844444444447,4.64569,3.4928000000000003,2.3832275,3.3939,2.3832275,4.233255,2.91218,3.25756,1.545275,3.1631933333333335,1.770665,4.259915,2.9062633333333334,5.2584,3.10545,2.7728800000000002,2.905673333333333,2.416277857142857,2.416277857142857,2.416277857142857,2.3893733333333333,1.0665850000000001,4.638765,2.3350033333333333,1.6571666666666667,3.9571,2.3007933333333335,3.1321666666666665,3.98822,5.40265,3.71311,1.9703175,1.3494300000000001,4.0045,1.906408,2.2724466666666667,3.2976,3.295285,2.0854,3.75574,2.89897,1.665858,5.02075,4.297105,3.500535,3.731685,0.7324566666666666,2.4275800000000003,4.239105,7.542085,4.29033,3.09794,2.59358,3.41326,3.646425,2.03971,2.28964,4.55301,2.24342,4.30725,3.469035,4.886785,8.660736666666667,3.962025,3.802485,3.22547,4.619735,3.988525,3.3035725000000005,3.3035725000000005,3.59779,3.993825,4.16204,3.974075,4.17583,4.412775,4.057435,1.06712625,4.33091,4.371875,5.3161,8.023965,5.0396,3.9160953333333337,2.0492233333333334,1.5540483333333333,2.43432125,4.78639,3.7908,5.23357,2.6098966666666668,4.60931,5.0709,4.997615,4.610495,3.0186533333333334,3.921465,4.13076,5.12565,4.747555,3.907865,6.617946666666667,4.51331,2.1430266666666666,4.753905,3.957235,3.99919,3.646605,4.77869,0.7616481818181818,4.277145,4.409315,1.267737142857143,1.233774,5.0427,4.8808,8.7217015,5.39345,4.830655,6.23225,2.91674,2.651526666666667,5.0886,1.81967,1.81967,2.518745,1.6146066666666667,2.8169041666666668,3.519766666666667,1.9956725,4.176647272727273,1.4160166666666667,2.15603,5.6731675,3.5345316666666666,3.48221,3.03193,4.004375,4.161755,3.070323333333333,1.0513822222222222,3.9783,3.5683000000000002,4.108085,4.29002,3.6917349999999995,5.35225,5.04975,4.66382,4.189775,5.1279,6.45475,4.73127,3.118925,3.458685,2.046655,2.046655,3.817615,4.196,2.4606066666666666,2.7060133333333334,2.116877272727273,2.71434,1.7892033333333333,1.7892033333333333,4.317055,3.4393,2.26855,3.613865,2.78807,1.784935,1.2211375,1.2127222222222223,2.727425,0.4655021052631579,0.8921211111111111,2.73465,3.631205,0.41068272727272725,3.762095,1.902204,5.09865,3.437585,6.784432499999999,4.316665,5.328683333333334,4.7779,5.02545,4.05233,1.872125,1.861266,3.98533,3.07066,3.79585,1.27972,3.77137,4.912105,2.64361,2.898095,2.9218,4.295765,3.670505,3.43095,3.97161,3.5187,3.303245,3.24401,1.0435771428571428,1.734315,2.226595,2.76707,4.39044,7.57623,0.9021979999999999,1.5088866666666665,1.5088866666666665,1.8777899999999998,3.82949,2.744425,3.108005,5.4819675,2.8885666666666663,1.186095,1.186095,1.186095,2.610245,2.8791100000000003,4.62832,3.20911,4.004345,3.33781,3.76455,2.926255,3.1558816666666663,3.687745,4.003505,2.785455,1.32051,2.908175,2.785455,3.53883,1.4042533333333334,1.8334366666666666,2.0658125,5.5888773333333335,2.96381,6.232854,5.5888773333333335,3.269044,1.836665,1.836665,2.564395,5.83428,1.836665,2.26213,5.39803,2.370905,2.622085,5.04105,3.536145,3.87596,1.8552266666666668,3.268355,4.11532,2.1852933333333335,2.231075,4.47756,1.8552266666666668,2.57754,1.943635,5.64988,2.479575,1.118452,2.457985,3.32711,3.1686098333333335,2.009325,2.0895765,4.28763,1.8266973333333332,1.872835,3.210345,2.248945,3.204155,3.80342,2.0773800000000002,2.805745,2.31014,6.13117,2.3276,2.940095,3.34137,3.34137,8.75421,1.0815599999999999,3.283445,2.60767,3.137985,2.295635,1.2492400000000001,1.2492400000000001,3.992,2.3875,6.528905,2.294255,3.491235,3.216135,6.54973,2.71992,2.6401,6.163235,6.163235,2.577945,1.5645625,1.1739075,1.1739075,1.5645625,2.0896166666666667,1.41604,1.1554116666666667,1.5638966666666667,1.9232733333333334,3.849095,1.57194,3.56214,3.610045,2.790915,2.79294,2.92268,2.638845,3.2453024999999998,3.2453024999999998,5.77633,2.418155,2.624055,2.64346,3.35176,2.609025,2.71485,2.67188,5.8299025,2.0788875,1.5492493333333335,1.172431,2.1516243333333334,5.75603,3.9582610000000003,3.388205,3.081985,1.760455,1.760455,1.760455,4.52237,2.490955,1.1554116666666667,3.212825,3.59709,1.2928925,5.3667075,3.160555,6.31905,3.95251,1.65081,3.245045,2.827643333333333,2.181905,3.610385,4.48348,3.91674,1.76715,2.38492,3.01536,3.29221,5.38143,2.20656,3.351445,2.80144,5.7826,4.56163,2.1192,2.374595,5.92147,5.47793,5.62348,6.21833,1.1055300000000001,1.1055300000000001,2.391086,2.391086,0.599656,4.70932,2.90981,5.42906,4.42795,5.01566,2.23536,4.389061666666667,4.389061666666667,2.230175,3.379555,3.500535,1.162358,4.62945,3.284195,3.30585,2.706545,4.74657,2.4401,1.805985,3.43541,2.733565,2.79269,6.00393,2.56718,1.784855,3.754395,6.34681,5.13422,4.31833,2.57105,3.8014,2.428475,5.22407,2.45265,3.668,2.04771,6.58144,4.2551,2.162875,2.550075,2.676355,5.07855,2.285155,2.63359,2.737105,7.17291,5.27896,2.83911,2.288255,2.17383,6.06943,3.08477,3.109865,5.61673,2.76173,3.09892,2.62726,3.067095,1.9278166666666667,1.89461,1.9131033333333332,1.7756666666666667,1.9113666666666667,2.1414433333333336,1.604805,2.040766666666667,1.963265,1.9278166666666667,3.85748,4.31494,2.153655,1.677165,1.677165,3.681593333333333,3.681593333333333,3.0113199999999996,3.0113199999999996,2.84139,2.47639,1.860435,3.76041,2.3099375,2.3099375,2.5719025,2.5719025,3.04627,1.9828,4.8605,2.399985,2.967435,2.0807066666666665,2.0807066666666665,1.50106,3.85526,5.40814,1.4042533333333334,4.44887,2.0773800000000002,1.71213,4.26284,3.08832,1.85818,2.481115,6.89674,2.1722,6.43999,2.944685,3.221035,3.105835,2.85064,6.54931,2.9961,2.294555,2.596753846153846,2.86241,5.41754,3.62109,1.5432700000000001,1.5432700000000001,3.79176,5.44104,5.12744,5.47037,2.801145,2.82233,1.959675,3.114765,1.65593,2.876695,1.81607,0.792652,0.792652,0.792652,1.9116816666666667,4.882146666666666,1.9116816666666667,2.34896,3.4547749999999997,1.528195,2.042435,4.19109,3.93228,5.37943,1.70394,4.92557,1.70394,1.70394,2.246425,2.02512,2.348645,6.0756,2.348645,2.41712,4.25493,2.082885,1.85019,2.8144,3.0040666666666667,3.438205,3.123893333333333,3.610665,1.36958,4.071005,0.7568354545454544,4.38288,4.4584025,2.8671375,2.8671375,0.7104763636363637,3.7437666666666662,2.736546666666667,5.59625,5.05465,4.095765,5.0073,4.0765,4.178525,4.907905,4.043565,4.284425,3.72885,3.939925,4.89247,4.93884,3.406305,3.39304,3.65449,2.4536366666666667,1.2630940000000002,4.33284,3.83834,3.67933,1.4649571428571428,3.7431,4.10983,6.195035,1.049735,4.952145,4.44341,2.1797,2.01028,3.252985,3.51843,1.672425,1.5432700000000001,3.8502,4.28045,2.660735,4.606775,3.004325,1.12592,2.8182233333333335,1.2097685714285713,3.0598166666666664,2.0903566666666666,3.1239399999999997,1.882115,2.4797233333333333,3.997655,3.164325,4.441445,3.29157,2.1759075,5.00614,4.21881,2.9537,5.04205,4.27237,2.752423333333333,6.0057,4.5539,3.10128,2.612906666666667,2.79812,2.9458,2.877936666666667,2.55523,4.50909,4.265295,3.796075,2.49591,2.648286666666667,2.3825166666666666,2.79557,2.3840033333333333,2.3361633333333334,2.3062066666666667,2.1823,1.3757575,2.9758173333333335,1.1801675,1.833075,1.7628625,2.6308,1.6115275,2.008425,4.091405,4.24255,2.0136775,4.274565,4.22575,6.061591666666667,2.202993333333333,1.55049,6.6421,3.3694,4.34964,3.93421,3.734835,2.087865,3.471675,2.472785,3.081885,4.744015,0.7264050000000001,4.1473,1.93902,0.7667254545454546,4.891695,4.364175,3.949045,1.8542585714285713,4.839645,4.866465,2.7565399999999998,2.8808233333333333,2.3977933333333334,2.03334,0.600933,3.051973333333333,2.861725,4.748585,2.4874575,1.90233,3.91856,1.029415,2.065706666666667,2.065706666666667,2.74612,2.065706666666667,4.18226,2.779855,4.59783,4.234645,5.8036,12.95228,3.20945,4.861635,2.86461,4.693385,3.069525,6.4868749999999995,2.8750066666666663,4.762945,4.75711,3.80712,1.348575,4.674355,2.9653466666666666,2.5700366666666667,0.9843822222222222,2.1512925,3.549875,7.230643333333333,4.236905,2.72993,4.26156,3.1600133333333336,4.1227,4.738205,4.52651,2.876165,2.87781,4.105165,5.68655,2.32445,4.52601,2.19601,2.19601,3.11276,4.783415,1.2341475,4.004772666666667,2.20668,4.176445,2.535626666666667,2.2190366666666668,2.7544966666666664,2.2289600000000003,0.6929835714285714,3.438225,2.712453333333333,4.861915,4.516275,0.237940625,5.35845,4.634135,5.4618,6.7539549999999995,3.1883033333333333,2.8966766666666666,2.1560333333333332,3.113443333333333,3.0361433333333334,1.34683,2.846246666666667,2.6195666666666666,1.3332683333333333,3.3080266666666667,3.080023333333333,3.315773333333333,3.0314433333333333,1.3477644444444445,4.083955,2.47426,5.10675,4.40379,3.93914,1.6428166666666666,2.5573900000000003,1.3796925,2.00066,1.3796925,4.750185,3.4276666666666666,1.630208,2.3838275,4.008205,3.81127,2.946475,3.76795,0.3676345,1.4145520833333334,3.7397,4.071585,5.7537,2.212355,2.70187,3.0876866666666665,2.7450833333333335,2.75364,3.47903,4.43112,2.456265,2.199736666666667,2.72775,2.6509966666666664,2.7076433333333334,4.983035,2.182535,4.398545,3.597881666666667,5.6872,7.5636575,0.7617211111111111,0.816368,3.88412,6.43561,1.85582,3.50142,1.4488166666666666,1.4488166666666666,3.46519,0.44930333333333333,3.97508,4.561735,2.592265,4.319495,3.48987,2.69475,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,2.024615,2.865835,3.6336866666666667,3.106326666666667,4.08719,5.780476666666667,2.914175,2.0727366666666667,0.9294016666666667,3.077985,0.76238,4.970691666666667,2.897955,2.251585,0.76238,2.35274,2.697385,0.808675,3.4926749999999998,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,4.20192,1.608385,4.59003,4.51925,1.7645,4.6606,4.193555,5.5185,4.695969166666667,3.5350339285714285,3.308865,4.965205,2.1834475,5.183315,4.36846,0.7605928571428572,1.3818642857142858,1.3492514285714285,3.3392999999999997,3.3392999999999997,3.0016833333333333,3.964515,4.58229,3.473155,4.045045,3.3917,2.0175433333333332,0.6738771428571428,4.2053,3.2917,2.72126,4.24358,3.64147,3.1012125,4.07585,4.163375,6.851184999999999,4.150765,4.56162,5.56915,4.314285,1.2524728571428572,3.11972,5.177246666666667,33.876188485209234,1.193685,4.439065,3.435915,4.48072,4.06031,4.868285,5.02375,0.3988857142857143,4.774605,4.33205,1.9601725,1.957385,3.741165,1.84296,2.428825,2.34394,1.7905175,2.84503,2.50059,3.536895,3.04713,0.6057061538461539,3.431595,3.823975,0.36312947368421056,2.4971533333333333,2.86601,2.56048,3.75337,1.902005,4.47186,4.04304,3.31298,4.2683,3.296515,4.57541,2.82418,4.101995,2.1689425,5.177246666666667,3.68527,3.30027,2.97504,1.73847,4.321715,3.709145,6.938128333333333,3.269775,4.59956,6.20117,5.191686,2.28078,4.675445,6.75263,7.645709999999999,2.431713333333333,2.62844,4.91744,5.36247,4.258405,3.376965,5.284313333333333,2.4233075,1.9357025,2.071465,59.54076856362721,4.98712,4.191685,2.570725,0.950022,2.7464033333333333,2.9531533333333333,3.3431333333333337,0.8382655555555556,4.597975,0.7440833333333333,7.771398928571429,1.906408,3.4977666666666667,1.8150739999999999,2.65763,2.4485533333333334,2.63698,2.4359866666666665,2.3465266666666666,3.410633333333333,1.6625966666666667,5.316120833333334,3.9821333333333335,1.3339875,2.8854966666666666,1.3798566666666667,1.444475,7.60468,5.92235,3.406505,5.70595,5.2071625,1.406212857142857,3.3777666666666666,3.437805,1.709925,4.75353,3.865555,4.137115,1.9188225,2.9709166666666667,3.4981333333333335,3.83911,5.6309,3.89583,4.29889,2.2287075,3.73218,4.405333333333333,3.1500800000000004,1.44071,4.4657,3.2303766666666665,4.097505,4.7014,3.9971,3.598425,4.669405,4.117625,4.3039,4.480335,4.04569,3.213036666666667,3.58255,4.535235,3.0914,4.07028,3.60609,1.6256425,1.6256425,4.35091,4.8093,5.3025,3.7986,4.80215,3.3906666666666667,2.882615,4.177455,5.33995,0.7039,5.30495,6.7692725,5.43965,5.74745,1.1913111111111112,3.082225,0.94805,0.94805,0.94805,3.683175,3.522133333333333,2.838366666666667,3.24976,0.893003,4.733425,4.975345,2.963695,1.593725,1.9932725,3.925525,4.003525,3.71678,3.314238,6.5312,3.75607,2.65751,4.53666,6.8114,2.271985,4.10356,3.71736,3.217475,4.82319,3.998295,4.877655,5.8842,4.06391,3.580521111111111,2.0557933333333334,2.0557933333333334,0.7016709090909091,8.75746,2.085235,6.00855,5.57315,4.43875,4.74745,3.857685,2.9513566666666664,4.5855,7.73669125,5.635548333333333,2.23895,4.385095,1.0230000000000001,3.706695,2.052636666666667,0.8929033333333334,1.1693485714285714,2.65158,3.09915,2.7083833333333334,1.13193,2.6104600000000002,3.0480666666666667,0.9152277777777778,2.71531,3.3308133333333334,1.702442,1.760234,3.042946666666667,3.1345566666666667,2.9351299999999996,2.4419,1.7341799999999998,5.29625,4.52736,3.94339,4.413845,4.850415,3.097595,4.59597,5.81465,5.0284,4.224235,4.019815,10.655755,8.164465,2.8779866666666667,3.619595,1.92755,3.833925,3.110765,4.481445,1.080945,3.86929,3.486325,1.4470533333333335,3.69408,3.1442583333333336,4.171435,4.28805,3.771525,6.08955,7.425283333333333,3.857845,1.54558,1.54558,1.54558,4.58731,1.2203066666666667,1.3949,0.47285666666666665,4.157092916666667,2.886926666666667,3.666085,0.973099,1.15631875,3.184545,4.315175,3.72842,16.599300095238096,4.401735,4.47813,6.0756825,2.7007133333333333,3.428325,3.251215,0.9073255555555555,1.44769,4.15141,3.517195,4.43514,4.325615,4.583275,4.011925,2.7236386666666665,3.30895,5.0658,0.554365,4.65526,2.2055925,4.02731,5.7677,3.5366666666666666,2.3913699999999998,3.8797299999999995,1.5727066666666667,4.016535,6.06515,2.8373333333333335,3.04018,4.348545,4.280675,4.41384,3.920895,3.66004,3.938175,4.98944,4.833105,4.579395,4.497885,3.943525,1.1335757142857144,1.6929625,6.422637166666667,5.6747,4.567625,5.1753,2.5288,2.760783333333333,2.8276233333333334,5.3450033333333336,1.9538825,2.05095,3.0962533333333333,3.1611966666666667,3.13509,4.39905,3.45844,4.934901666666667,1.2465425,4.396325,0.9117000000000001,4.010465,3.392165,1.6448716666666667,4.295465,0.9787966666666666,4.84742,5.58895,4.98603,4.428925,3.828265,3.94477,2.88523,5.17525,5.5765,2.8626139999999998,3.98924,2.477745,3.442315,1.9787,2.59505,3.54291,5.08865,1.0731875,4.3780675,1.3143625,3.382265,1.6179333333333332,1.0731875,0.25584945945945947,3.776475,3.00171,2.2946529166666663,1.9164566666666667,2.622295,1.047725,4.20709,3.42717,4.71171,2.5078333333333336,6.32135,6.826295,2.8510000000000004,3.2643166666666663,2.6807433333333335,0.849441,2.3595533333333334,5.97615,4.594485,5.269,4.774285,2.222113333333333,1.4399666666666666,3.7109699999999997,1.562175,2.3014125,1.6939675,1.55898,1.566345,1.9066025,2.0399475,2.0443975,1.856785,1.3226542857142858,1.49601,1.9334,2.2777775,2.1361525,2.3160433333333335,0.5359946666666667,1.626444,2.7702566666666666,3.13603,1.87116,1.90212,1.5646225,3.850715,2.2007933333333334,2.64459,3.046325,5.1242,4.20242,2.7021033333333335,3.94728,1.8180463235294115,4.32709125,24.0002345,4.639196666666667,5.5384,4.372225,2.72557,4.01072,4.677555,2.80691,4.67021,3.0879333333333334,0.77813,3.13135,4.90351,4.12412,4.01024,1.62908,2.15687,2.27127,2.286485,1.4204614285714285,3.3536333333333332,5.2153,4.237255,3.286855,4.0444,4.949325,4.19717,4.977245,1.250625,3.602825,4.246875,4.65132,1.559206,3.1180233333333334,1.7961749999999999,1.7961749999999999,3.61098,4.75696,2.770713333333333,2.8520366666666668,4.279215,3.857605,6.5295725,4.389135,2.477805,1.44769,3.01612,4.284935,3.1549633333333333,2.4539969841269844,2.4539969841269844,3.2100666666666666,4.690395,4.11425,5.379381111111111,2.35695,3.4574815555555554,0.6207422222222223,0.6207422222222223,0.6207422222222223,3.312855,3.82327,4.097311666666667,5.4357,2.053645,5.319,4.88509,4.38615,3.547305,4.971305,3.063575,1.4488571428571428,4.437535,4.51356,0.49217571428571427,4.1176,4.78849,1.67375,5.17125,5.48,4.664085,4.029835,3.896705,2.83369,4.454455,1.7014399999999998,4.338395,1.5943633333333331,3.7036,5.5954,1.1299,2.96727,6.956659999999999,4.091845,3.7427333333333332,2.5938,4.166425,5.66205,3.26066,6.952773333333334,4.257155,2.1883466666666664,2.99962,2.8337766666666666,2.8703833333333333,3.00995,1.8252233333333334,4.983595,0.6210033333333334,1.8464450000000001,1.8464450000000001,3.187685,4.693685,2.20412,3.075755,4.43118,4.59271,4.41331,1.5730233333333334,5.030630636904762,4.374455,5.07675,3.732505,3.73586,3.2684300000000004,0.46743,2.4768202857142856,1.0000025,0.46743,4.13537,0.8629566666666667,4.234325,4.00577,6.648182,2.0887,1.0438825,1.118584,2.2702,2.8991933333333333,1.6979533333333334,2.45148,3.348215,3.725785,2.14875,2.38809,4.431365,3.076935,3.946355,5.7473,3.41623,4.730725,6.901351666666667,4.30306,3.64037,4.43216,3.689785,4.470965,4.96773,5.949574999999999,5.2794,2.3373633333333332,0.9402466666666667,3.578465,4.06551,3.863035,4.61683,4.193,4.57285,2.6843466666666664,2.6290733333333334,3.0831633333333333,2.3336033333333335,2.282556666666667,2.92153,3.1225666666666663,2.61578,4.168775,5.06275,4.39328,5.2533,2.7072033333333336,3.3929333333333336,2.853525,0.7019242857142858,4.26377,3.78924,4.48855,2.9250066666666665,5.622999999999999,3.371215,4.598795,4.00943,0.5918123076923076,0.5457685714285715,4.164075,2.7970465,3.257945,4.663795,4.14982,1.702598,5.20535,4.18111,2.58471,2.6614633333333333,2.280675,2.1281125000000003,3.4030666666666662,3.1713566666666666,3.0022599999999997,2.99395,3.4914666666666663,2.667775,3.326033333333333,3.955766666666667,4.3701300000000005,0.572516875,0.572516875,0.572516875,3.213047430555555,3.6234333333333333,3.5349,2.8218300000000003,2.7380033333333333,1.06712625,3.0825266666666664,3.1543200000000002,1.8121475,2.6828966666666667,2.342913333333333,1.0025355555555555,2.9072299999999998,4.69889,9.68924325,1.49917375,0.6559820000000001,3.71303,0.6559820000000001,0.6559820000000001,0.6559820000000001,0.6559820000000001,2.1408325,4.009495,3.90966,5.1118,6.05155,2.8223833333333332,2.79529,2.91446375,3.590018333333333,5.2038,1.3311933333333335,2.332803333333333,3.10777,2.6243766666666666,3.08463,4.00299,2.17822,3.10649,1.1571666666666667,4.31714,4.945325,3.373035,0.868345,0.7085130000000001,0.7085130000000001,1.1714249130434784,2.0397699130434783,1.1714249130434784,1.1714249130434784,0.3932539130434783,0.3932539130434783,1.1714249130434784,1.3797166666666667,2.61592,3.19991,3.0334133333333333,2.58285,2.6662266666666667,3.2200933333333333,2.7476133333333332,4.50489,3.61365,1.895765,2.2432766666666666,1.7136275,0.18707258652430045,0.18707258652430045,0.18707258652430045,0.18707258652430045,2.49507,2.5241433333333334,0.865718,5.1622,0.7517463636363636,1.6718540000000002,4.6946325,4.840555,4.227875,2.907725,4.246,3.59862,1.9144433333333335,1.1956225,3.70494,4.39001,5.8193,2.168485,1.4207333333333334,1.8730066666666667,3.6797,1.5676566666666665,2.7968266666666666,2.96575,3.07394,4.52076,3.663825,3.104775,4.669335,2.657383333333333,4.10833,5.39295,3.94328,4.333295,4.70194,5.28498,4.763161666666667,3.0033645714285715,4.761715000000001,4.36127,6.0812,4.2026,4.60036,2.2328525,3.187955,4.27172,4.93208,4.45056,3.88975,3.53564,3.77098,3.74178,2.521663333333333,5.28165,3.483195,7.7111425,5.981,5.9955,4.869075,1.4034200000000001,1.0099500000000001,0.6278553846153846,1.82448,4.601785,5.0082,4.05646,1.656068,4.170775,3.025995,4.856105,5.0403,6.188881,4.208775,3.11195,1.722064,5.9271025,4.038145,3.022625,1.742945,0.9277675,3.90396,3.604285,3.67396,3.69396,2.37259,4.63565,1.69055,2.9781633333333333,2.37999,4.500785,5.42965,4.86727,2.44676,1.60228,5.4796,2.8649766666666667,9.01867,2.664,5.07455,5.8497,4.43586,5.01195,3.393785,4.846325,2.21013,3.94337,4.784627,2.318115,4.43255,4.339315,7.190099999999999,4.989405,3.26877,4.16142,3.72467,3.076935,3.650005,5.1249,5.43115,2.400865,2.986136666666667,3.3130966666666666,2.307945,2.801675,4.444485,5.4869,5.24485,4.625155,5.3774,4.35253,5.07225,0.6038730769230769,3.1262266666666663,1.2054271428571428,31.292881004960318,2.451755,4.631865,3.356195,4.409575,1.664882,2.5231966666666668,3.6238836904761906,1.5741611904761905,1.5741611904761905,1.5741611904761905,1.5741611904761905,2.0497225,3.47861,0.4276844444444444,7.712254722222222,0.4276844444444444,4.59953,4.76151,2.179615,5.4881,2.51575,3.9066599999999996,2.542143333333333,2.4119699999999997,2.685783333333333,2.1367933333333333,0.6412615384615384,2.5726999999999998,0.7095366666666667,3.087336666666667,2.0513066666666666,2.435952,1.2112083333333332,2.435952,6.2294,7.7767,4.89622,4.4991,5.5289,5.9209,7.3867666666666665,3.221765,1.4580425,1.4580425,2.41933,4.947685,3.822675,4.44209,6.110368333333334,4.37439,3.148445,3.89732,3.533085,3.522525,2.13807,0.9337899999999999,2.05925,4.558345,4.160925,5.093417777777779,1.9556825,4.13617,1.3614979999999999,3.28547,1.29999,3.4534333333333334,3.02713,2.3214466666666667,3.1462299999999996,2.98364,4.83038,0.664786923076923,3.586105,3.619533333333333,2.5758300000000003,2.32534,4.188235000000001,3.2522633333333335,2.362973333333333,4.99846375,3.816885,4.890915,3.97112,3.656755,5.26285,5.0356,2.3713366666666666,5.92655,2.3322571666666665,2.2703599999999997,3.1392399999999996,2.8192633333333332,3.1918399999999996,2.67863,1.8046466666666667,3.0597484545454545,4.231785,3.4270125,2.4214466666666667,2.4214466666666667,2.540295,4.03955,3.97744,0.6818636363636363,3.369175,3.154175,8.70227,0.9241181818181818,4.34779,3.526165,5.16505,3.525285,3.980665,2.273835,3.746115,2.807595,5.9071,2.6442533333333333,3.831435,2.7241199999999997,3.98801,2.5225033333333333,3.67458,3.6531,4.273935,5.031252,3.34714,2.38965,4.99918,2.4676766666666667,4.3076,4.640095,4.59635,4.394,3.898745,2.93428,2.16842,2.884676666666667,2.527703333333333,2.918975,3.1967199999999996,2.896127142857143,4.914786666666667,2.9669733333333332,2.4546033333333335,6.6697524999999995,5.1715695833333335,4.0274925,3.1243733333333332,3.837666666666667,4.13743,3.43114,2.0972,3.8051649999999997,5.2347,4.678635,1.4811366666666668,4.468245,2.9240166666666667,6.9575575,4.75552,8.586275,4.045635,3.425135,2.472555,4.107115,5.7505325,7.72784,3.70436,5.62002,3.800255,3.249385,4.062525,1.743412,4.458145,1.4388216666666667,3.912635,4.585655,3.3629333333333338,0.8289466666666666,9.340624666666667,1.234388888888889,1.9087425,2.394476666666667,1.9859266666666666,3.26097,1.326925,3.61068,3.359325,3.21459,4.392385,1.133695,3.923055,1.3037783333333333,2.8279870000000003,4.600655,4.824275,1.91056,5.510974166666667,2.304248666666667,8.02318,4.44698,2.86039,4.047935,3.275715,1.2811283333333332,7.94357,3.00375,3.28663,2.346115,4.067695,2.1984875,3.1855575,2.07275,4.068025,1.40551,5.1196,3.99572,4.26859,0.83539,2.060515333333333,3.820445,5.11485,5.128548749999999,1.596882,1.596882,6.02355,4.07607,4.787205,3.804885,3.325705,8.878205000000001,4.26872,5.24915,3.89876,2.44431,2.2002769726062468,0.3707975,0.1952267741935484,0.6542189964157706,1.1752604761904761,0.6438339170506913,0.1952267741935484,1.4979425000000002,0.45899222222222225,1.5460579761904762,2.1521614964157707,2.047795,2.27644,2.3269333333333333,5.20785,6.327731666666667,4.96577,5.34245,4.556695,5.2041,1.1574933333333333,5.06845,3.997115,5.63735,5.16065,5.3849,5.4321,5.98135,5.47475,1.2862083333333334,1.4226071428571427,1.986664,6.30893,1.42769,5.36405,4.744395,7.096322083333333,5.26195,5.4674,4.54581,4.672445,2.527975,5.60255,5.5291,4.574381666666667,4.99692,5.558449166666667,5.62565,3.81340875,4.276835,4.136433333333334,1.12133,3.6476666666666664,4.264795,1.279225,3.5036666666666663,5.02945,4.2291799999999995,4.711105,2.4191675,3.13832,2.5590800000000002,4.7608,2.2755625,4.0509,1.2474049999999999,3.22019,3.815445,4.489365,4.69938,3.336279166666667,0.6534541666666667,5.94245,1.04924375,3.53962,3.064243333333333,3.64674,2.0612966666666668,3.72132,3.7081617948717946,3.4120000000000004,4.418165,15.380373547619048,5.48917,2.2389175,8.31026,1.5828,4.05909,3.0628499999999996,2.9107633333333336,2.041463333333333,0.21807217391304345,2.7650433333333333,4.647265,1.7889019999999998,2.2618466666666666,3.5670333333333333,1.82143,2.46758,1.35849,3.04636,4.745255,4.541185,4.7583,0.4694842857142857,2.33915,4.526945,3.43502,4.381675,4.80006,4.33783,4.94058,0.5323958823529411,2.5178266666666667,2.5178266666666667,5.29435,4.23368,4.84248,2.674975,3.7514333333333334,3.1380666666666666,4.983335,3.76043,5.628346111111111,4.76118,4.47622,4.830375,2.5425,1.922042,4.38769,4.12498,3.764775,3.46256,1.740726,4.13064,4.389245,3.812225,4.77453,3.869115,4.052875,0.6072000000000001,3.521095,0.6807816666666667,3.295113333333333,3.342765,4.513325,18.642160476190476,4.059535,3.95408,2.827643333333333,1.085985,2.8573566666666665,2.53206,1.523172,2.3542,2.53517,5.0348,2.2493633333333336,4.03311,4.313525,2.14861,4.83567,2.8756033333333337,4.47363,5.03205,5.44425,1.69355,1.715275,2.509525,4.524375,4.885755,1.1545777777777777,5.3395,3.879125,5.4491,4.630635,1.8940866666666667,4.71997,3.553605,3.603085,4.243625,4.03847,3.0724366666666665,0.6920975,7.55825,1.501558,0.20554,0.20554,0.20554,4.906195,4.170625,2.67731,4.24503,2.824115,4.48216,4.377574285714285,3.9854666666666665,8.662533333333332,3.90713,7.01879,0.88064,0.84705125,2.44731,4.511085,4.34744,2.1665300000000003,5.56475,5.3449,3.559665,3.790085,4.32356,2.2553033333333334,4.72103,4.8628535,2.438286666666667,3.160633333333333,2.9946333333333333,2.75542,5.8586,3.653705,0.6676857142857143,3.814725,3.467465,4.151155,4.94922,5.1568,2.99137,5.2368,3.63093,13.511440833333335,4.678075,6.572924416666666,2.58622,6.717456,4.370795,3.967275,2.1019275,2.3043787499999997,9.18039,2.2448,4.2321333333333335,3.987833333333333,3.7512666666666665,2.91793,2.9836266666666664,2.1453725,2.20516,2.9297799999999996,1.8159859999999999,3.8171999999999997,2.385213333333333,2.6503799999999997,3.2926133333333336,3.5130666666666666,2.50484,2.50484,2.65805,3.3869333333333334,3.31272,2.5497366666666665,3.1668800000000004,3.8587666666666665,2.807563333333333,2.78945,3.6897,2.1980633333333333,2.266085,3.6627666666666667,2.89812,1.722558,4.111866666666667,2.3314166666666667,2.4638133333333334,2.7951,2.4985866666666667,3.26888,5.796898333333333,2.4960999999999998,3.6714,1.9241233333333332,10.366794666666667,1.9755900000000002,1.81376,2.04204,1.0008511111111111,1.6424379999999998,4.408939999999999,2.666728,2.666728,1.612482,1.4978633333333333,3.4098966666666666,3.8344966666666664,2.10765,1.4503966666666666,1.63491,4.335818,3.2861166666666666,4.1394,8.220040000000001,2.7973600000000003,2.28317,3.1906139130434785,4.2211,2.266085,3.2988999999999997,2.9928666666666666,3.1472533333333335,3.478475,0.871045,3.2654059999999996,3.0331566666666667,2.8143700000000003,4.0317,3.0862466666666664,0.6387963636363637,1.7972447619047618,5.35335,2.533089,3.1317566666666665,1.6472499999999999,1.6472499999999999,2.0754975,3.4677050000000005,1.00074,2.35307,4.636803333333333,4.636803333333333,0.6513571428571429,5.935013,3.443735,3.98804,4.839785,1.2448742857142856,3.3283666666666663,3.4899,5.0295375,6.286824333333334,2.700143333333333,0.6218589999999999,2.8090200000000003,2.64599,3.1827693333333333,2.40327,2.4610333333333334,2.887256666666667,2.4930375,2.466536666666667,0.7874354545454545,4.316435,4.614980571428571,1.2382516666666665,1.5357285714285713,5.15905,2.223345,1.75652,4.108595,1.7453800000000002,3.574675,2.45281,3.4811666666666667,8.876518333333333,4.038771666666666,4.602245,4.94235,2.428281090909091,0.717928,1.77833,6.96587,1.75877,4.124655,4.163685,3.77816,20.894957416666664,3.037103333333333,1.35394,1.08779625,3.1627166666666664,1.3533600000000001,4.123872,5.1266,3.3953024999999997,3.1226599999999998,1.1959266666666666,1.3194016666666666,2.9247433333333333,0.53356375,3.3013833333333333,3.617766666666667,3.0545733333333334,2.5216683333333334,2.5482066666666667,2.7407,2.065533333333333,2.9457866666666668,1.5684939999999998,3.468833333333333,1.4404666666666666,3.932295,4.145315,2.58146,5.13855,3.419105,4.41039,5.0287,4.52965,2.97687,2.6021533333333333,2.5507566666666666,1.0928071428571429,1.0928071428571429,1.0928071428571429,2.3054725,2.9525066666666664,2.67657,2.79801,2.394296666666667,1.8031825,4.168245,4.14385,3.709655,6.73737,3.393825,2.4812925,1.93006,1.0713416666666666,2.484496666666667,4.15981,2.50731,2.66311,2.413953333333333,2.302443333333333,2.60499,2.7959066666666668,3.0223933333333335,2.87827,2.4187233333333333,3.1437066666666666,2.081463333333333,2.12367,1.8972775,1.37716,3.0774166666666667,2.9107066666666666,2.033345,3.98383,5.1307,2.8799566666666667,2.3117401923076923,5.5889983333333335,4.039655,4.678135,5.5801,4.79261,4.306225,6.2339375,1.18671625,4.24788,2.71012,5.24805,5.09745,3.468505,3.89376,2.15331,7.468439999999999,2.404265,0.8496583333333333,8.17728,5.01777,6.09550119047619,4.524485,2.861593,1.7681375,4.91113,4.470505,4.274195,5.0161,2.54006,4.12428,4.335085,1.7136275,3.90332,2.7757,1.2869416666666667,4.75068,0.6280764705882353,4.295241666666667,3.502645,4.51581,2.968385,1.71425,3.37467,1.917355,1.370825,2.7892966666666665,3.4271333333333334,3.13662,6.98372076923077,1.7016525,6.3512975,9.90033,5.9564474999999995,3.38301,1.2864585714285715,2.88369,1.2864585714285715,2.8834999999999997,2.14639,0.3299823529411765,1.2072736029411764,0.3299823529411765,0.3299823529411765,0.3299823529411765,1.2072736029411764,1.2072736029411764,0.3299823529411765,0.87729125,4.902165,3.326005,3.17178,3.36148,3.88934,4.018135,2.7398266666666666,1.6334060000000001,6.995406666666667,2.8213666666666666,4.119965,2.5627066666666667,1.0258909090909092,1.19009125,4.797805,3.670505,1.0174177777777778,1.556546,0.748229090909091,3.0509830216450213,4.211975,5.07625,3.5545333333333335,5.777628333333333,0.5396415384615385,4.10705,3.40300625,2.9855033333333334,2.66779,3.3722,2.6834866666666666,2.8766466666666664,2.6789199999999997,2.99431,3.58478,5.7962,4.51105,1.959146,4.696445,4.449855,3.14717,3.66199,3.46498,0.37189933333333336,4.91597,3.791075,3.26357,3.103916,4.4481,3.79438,1.9149,3.087845,3.802945,8.405850000000001,4.762805,5.2623,4.43491,4.155745,0.966275,2.152835,1.86889,1.317765,1.7776166666666666,5.0308,5.28315,4.205455,4.60677,3.314238,2.545373333333333,0.9485800000000001,4.05048,1.2136016666666667,1.1484683333333334,3.077375,3.710695,4.5333,1.204865,2.715453333333333,8.413126666666667,3.0594333333333332,3.8034783333333326,0.881705,3.873885,11.96444,3.432135,4.176225,3.19631,2.769945,4.44507,4.89791,1.9449400000000001,4.248835,0.5929261538461538,4.836815,2.187075,2.2405075,2.2405075,3.511366666666667,4.27451,1.63527,4.34238,1.4883428571428572,4.059135,2.3104741666666664,3.1255933333333332,4.731035,3.55599,3.7514583333333333,2.577725,2.6561858333333332,2.6561858333333332,10.521560000000001,0.745106,3.26929,3.3554666666666666,2.124945,1.9974975,0.8947157142857144,1.43338,1.1482957142857142,2.032055,4.82009,2.457235,4.345727500000001,2.033533333333333,4.277735,4.38008,1.6240833333333333,2.0117825,1.0877833333333333,5.902115,2.00631,2.507855,1.7283380000000002,1.705696,1.08779625,2.2806995833333334,3.502575,2.6650633333333333,3.1097,2.4560866666666668,2.62973,1.6629166666666666,3.0577400000000003,2.6247666666666665,1.3230666666666666,1.9260866666666667,2.984783333333333,3.3236633333333336,2.3235333333333332,1.14226,2.6058566666666665,2.2469233333333336,3.0656199999999996,0.3208284210526316,0.40502499999999997,2.34341,2.26812,3.008065,3.0414899999999996,2.664395,4.792585,5.1179,4.48553,4.5048,4.40537,3.993415,2.6672266666666666,3.8647,0.6833681818181818,0.061378636363636364,6.7554,0.061378636363636364,2.9914,3.10863,5.42675,3.406105,6.10525,5.16075,2.3934666666666664,2.5317666666666665,1.3600683333333334,5.4812,5.8234,3.3424333333333336,4.93425,1.942855,4.37498,2.0204439130434784,3.0334733333333332,3.29866,4.07274,4.65165,3.456525,2.19615,2.19615,4.066125,7.65484,3.92174,2.2051433333333335,2.5322333333333336,4.12039,2.872585,4.83674,3.811305,0.9986644444444445,4.33435,2.73992,2.8745666666666665,4.304785,1.132785,2.3678133333333333,3.82989,3.94613,4.51357,2.91285,3.564705,3.787155,3.950255,4.38633,5.06495,4.103115,3.1105430555555555,3.80318,2.8319799999999997,2.7785433333333334,2.564506666666667,3.4812666666666665,4.28758,2.8907133333333337,4.934580833333333,4.32383,3.993855,5.2071,4.52076,3.83678,1.531134,1.4485825,4.113215,3.13897,1.5710133333333334,2.8264933333333335,3.261475,3.0189333333333335,3.864437777777778,3.142916666666667,2.259948333333333,12.798982500000001,2.117313333333333,1.8349039999999999,4.42097,1.0528520000000001,3.12269,3.74728,4.758735,3.30742,1.0932822222222223,2.2955666666666668,2.5078333333333336,1.523582,5.2522,0.998645,0.998645,3.8343233333333337,1.82143,2.0128933333333334,1.7523575,3.34286,3.369,2.00425,2.87403,3.599575,2.940853333333333,2.79725,2.0742599999999998,6.16525,5.4875,3.517165,0.7292992307692308,3.756305,3.668005,0.9596454545454546,5.14875,3.0520099999999997,7.86889,4.45514,4.58546,3.575625,1.4270825,2.91754,4.92569,4.66872,3.97577,4.234395,4.24516,3.347605,3.511433333333333,3.511433333333333,4.114695,2.9267683333333334,4.465595,1.630795,5.42015625,5.526355000000001,1.67375,4.421285,1.0267300000000001,5.33205,4.047975,5.0177,4.71079,3.959525,2.557805,2.4743575,4.2026,4.397305,4.65854,4.49795,1.9739875,1.36255,4.140385,2.1948133333333333,5.3115,3.10986,3.559505,7.4422,3.862225,4.62965,4.892895,4.02583,4.270585,8.118310000000001,3.68952,2.987385,9.50415,3.563655,0.590855,2.0004515811965815,4.373285,0.611306,4.64809,3.992865,4.72473,5.13035,3.249575,3.395845,4.4415,4.629605,2.2799575,0.6942771428571428,4.67157,4.530185,4.19393,4.089865,2.6510766666666665,4.44637,3.427585,0.615466,3.682405,4.013305,2.381395,3.0496766666666666,3.8232,2.114375,5.2704,4.957555,3.9483675000000003,3.3505000000000003,5.781365,5.781365,8.64341,2.07174,0.8782425,0.8782425,24.18335,2.646575,7.6922516666666665,0.4848958333333333,1.3456766666666666,2.9194033333333334,1.0248599999999999,3.81203,3.92436,2.260255,2.260255,4.508325,4.554425,3.4839,2.50623,2.50623,3.527225,4.041545,4.450425,3.0471299999999997,2.0588233333333332,2.4696245833333332,3.945977,1.97322,3.67484,2.7408533333333334,2.8657289285714285,2.8657289285714285,3.5567333333333333,0.8370733333333333,2.406073333333333,1.6222666666666665,3.3838000000000004,2.802903333333333,2.7999333333333336,2.6344566666666664,4.64113,2.317915,3.02608,5.325617,1.398762,2.28737,3.083275,2.6418500000000003,3.928175,5.598253396825396,1.3903366666666666,3.8171666666666666,2.4812875,5.0334,6.52356,1.607425,4.8139199999999995,4.9271373333333335,3.1284648571428573,4.618233333333333,1.0101285714285715,1.559206,2.950625,3.663727619047619,1.2694016666666668,2.336515,1.54879,1.692352,2.7395,3.524462,5.118187000000001,1.0072983333333334,1.5166285714285714,2.9647166666666664,13.22417,4.721373333333333,2.6569,1.0850828571428572,2.5685707142857144,0.9506557142857143,3.21729,4.210921666666667,4.853355,3.4312,5.34625,1.34261,3.7177333333333333,4.047205,2.8272266666666668,3.7565955555555557,2.4950433333333333,0.9841555555555556,2.571283333333333,3.000453333333333,7.32648,2.7684707142857143,2.5031433333333335,0.7177330000000001,4.7367,3.5811666666666664,1.22872,5.870683333333333,2.21025,2.139213333333333,5.58385,1.2895333333333334,2.884596666666667,0.9947272727272728,2.9134266666666666,4.35527,3.001133333333333,2.94421,2.290826666666667,2.4120133333333333,4.77214,4.627185,4.7892,1.80705,4.512195,3.444385,4.351333333333334,3.4377459999999997,2.5708333333333333,4.181191999999999,0.916952,2.687134761904762,5.05205,2.64855,4.093172916666667,1.4178125,2.718973333333333,1.9146640000000001,1.9146640000000001,7.327398333333333,3.130186666666667,5.503940833333333,3.47807,1.7617,2.7554847619047624,4.5981966666666665,5.580033333333333,8.492728333333332,4.759247,2.671032,1.9510966666666667,2.0740006666666666,4.106006666666667,3.856715,1.484146,1.9299425,3.187357678571428,1.33383,3.1122033333333334,18.994516666666666,3.248366666666667,2.9779133333333334,2.8674233333333334,2.96551,2.55322,1.7477766666666668,3.0328866666666667,3.6072333333333333,2.6342466666666664,2.625243333333333,5.501856,2.3443366666666665,4.657694857142857,2.9495308571428573,2.647554857142857,1.4756600000000002,3.805381111111111,2.14333,4.05925,4.73282,3.856105,2.958345,3.1451933333333333,2.3660566666666667,3.3874333333333335,3.4595000000000002,3.5168,3.3699333333333334,0.8187754545454545,5.1499,2.44374,3.1823633333333334,2.8886516666666666,1.919865,2.19886125,2.19886125,3.48735125,2.0408712500000004,4.91527,4.32144,3.570255,4.53369,4.69691,4.644797499999999,4.644797499999999,4.076115,2.925796666666667,4.897435,2.85705,1.648676,2.565236666666667,4.364,3.9408,2.566975,3.689995,5.930375,3.7853333333333334,6.226696238095238,2.997935,0.78628,0.78628,3.422155,4.450535,3.87887,3.3447380000000004,2.38666,1.8762633333333334,2.378223333333333,2.9682133333333334,6.237503,1.4775333333333334,4.1408,3.700533333333333,3.910705,4.957475,4.94103,4.744535833333333,3.170256666666667,2.2791325,4.38301,3.837625,2.0479425,1.177568,4.099805,2.6986,6.031123333333333,3.332523333333333,2.692735,3.346,3.720985,3.674865,4.661645,3.139505,4.53887,4.654905,4.41705,3.755585,3.436915,3.587685,4.131715,2.649696666666667,4.225285,3.4389,4.59425,0.7067155555555555,2.180595,1.7609725,2.0699125,1.8186875,2.720546666666667,2.775183333333333,2.01101,4.80538,5.92831,1.9480633333333335,4.289325,4.44121,2.2556125,5.444751666666667,3.96386125,4.615855,5.09295,6.894593333333333,1.9770933333333334,2.6794233333333337,1.8591833333333332,2.8434266666666663,1.785185,1.75112,3.9946,3.579245,5.11455,1.0005855555555554,3.068565,4.34241,2.1459475,5.4253,3.68787,2.58986,3.8235333333333332,3.282225,1.9777025,1.8323775,2.59955,2.99005,3.2428,2.010935,3.153317142857143,3.153317142857143,3.6015,3.4144,19.24260482142857,0.9515866666666667,4.821940833333334,1.9244875,1.93832,3.844095,3.7948,1.9819525,3.94698,4.627495,1.4574183333333335,1.4574183333333335,1.1495366666666667,1.8775933333333334,2.2401866666666668,3.1643866666666667,4.428475000000001,3.948435,3.599266666666667,0.5147426315789474,3.518172631578947,1.9758466666666665,2.797705,4.566295,3.473875,3.943995,3.81191,4.5603,4.189345,2.0711475,3.382165,5.36247,2.160685,3.622755,4.862925,2.085855,4.59696,5.4069,1.2457457142857142,1.937474,3.6564666666666668,0.7590485714285714,3.1386766666666666,3.56745,4.632675,4.796725,2.718088611111111,7.8870216666666675,2.947956666666667,2.8532433333333334,0.44518588235294115,4.2999,5.211066785714286,2.907866904761905,5.3194,3.854645,2.476644888888889,1.813704,5.4811955,4.416105,4.338355,2.466475,2.083075,3.84566,4.1571,3.026536666666667,1.9988025,3.9327024999999995,6.189522500000001,2.81076,3.804305,3.576335,4.13533,1.4873857142857143,1.4873857142857143,3.103733333333333,2.9433000000000002,4.589865,4.866765,6.5367,4.363995,2.720875,2.1654125,1.5297533333333335,1.3501971428571429,4.867765,5.5238075,4.975875,5.46615,4.368635,6.4462825,3.679275,2.8396899999999996,3.8560633333333336,2.1151966666666664,2.9350222500000003,1.523724,4.998185,2.47442,4.04213,5.19005,4.16235,2.7986566666666666,2.8649766666666667,1.512057142857143,2.511525,3.8284333333333334,1.89993,0.554414375,3.3217700000000003,2.73312,2.61578,2.3030399999999998,1.9800525,1.588654,0.6979372727272728,0.6979372727272728,3.3890666666666664,1.8957325,2.25223,3.22049,5.6026,4.429225,5.53565,4.13118,4.11938,2.4168516666666666,1.3539266666666665,2.69917,3.706135,0.9513825,3.1864825000000003,2.80615,2.985565,2.213715,4.123495,2.486815,1.9362300000000001,1.1651785714285714,3.722495,7.11592,3.57609,1.6469910714285714,4.42756,3.57968,2.601625,3.21308,2.716525,1.71659,0.9980525,3.83984,2.4147791666666665,2.28684,1.59358,2.3081333333333336,2.270846666666667,2.4746633333333334,2.80473125,1.23459,2.0033833333333333,1.024695,6.2960725,5.38755,5.08175,3.939285,4.04735,2.9735566666666666,1.7418566666666666,4.64096,4.684325,2.644085,5.7301,2.129785,4.54156,1.005088888888889,4.05861,4.03973,1.865095,7.75409,3.540785,1.88776,1.83418,1.8818675,2.56205,3.31918,1.3767845454545453,2.9595566666666664,5.58705,4.464395,4.27831,5.28765,5.50765,5.0711,0.92822125,4.189165,4.612935,4.23189,4.94318,3.891498333333333,4.74663,5.17845,2.97391,1.352385,1.352385,5.2449,5.397903333333333,3.07088,2.826373333333333,4.19362,4.1888,1.713048,4.182845,4.73599,3.72427,4.063165,2.945073333333333,2.824256666666667,4.863225,2.496544375,10.507321375888818,2.0091966666666665,0.80454375,2.5649433333333334,1.6547675,2.5341,2.12828,1.866872,2.90414,5.17855,5.27405,2.9415533333333332,1.5423383333333334,6.063943928571429,1.3620628571428572,3.0527333333333337,0.514547619047619,4.12711,5.67855,3.674625,4.832455,11.77814,5.5342,3.091006666666667,2.932893333333333,4.785015,2.9777966666666664,4.809405,1.07872625,1.5641800000000001,0.8062727272727273,5.82015,4.26432,1.81069,4.769475333333333,4.88367,6.62925,4.83887,4.870185,4.312645,6.0452,3.976535,5.30965,4.25295,1.667002,4.59019,5.99245,2.93803,4.00096,4.4414,3.056875,1.48262,4.90631,3.863615,1.20784125,3.5932999999999997,3.224676666666667,2.442413333333333,2.5889266666666666,2.5283366666666667,2.9737733333333334,0.739310909090909,2.6546499999999997,2.7688633333333335,2.5944333333333334,2.7097333333333338,2.77515,2.14948,1.5354266666666667,2.3861375,1.97661,2.1458425,3.4215999999999998,2.9657966666666664,0.63766,2.578866666666667,3.36279,5.0084,2.17503,3.749105,5.2892,5.2338,3.36125,3.95751,1.3492514285714285,3.4053,2.656419444444444,4.246011666666666,2.7824437499999997,4.60632,4.925045,5.14425,3.83312,4.228,0.8952500000000001,0.8952500000000001,2.2561769230769233,1.66442,4.08077,2.6083435,2.6083435,4.906725,5.77325,3.006475,1.1987983333333332,1.5488285714285712,5.8774,3.842735,2.94871,3.18449,2.8327,3.21057,2.94871,5.0620025,3.208735,3.0163208333333333,2.847685,2.008765,3.1829,6.607,2.73307,3.42633,4.056835,6.37085,6.01525,6.6314,6.6314,5.43795,4.399245,0.46054923076923077,4.751715,4.488305,2.945975,2.819295,9.243749999999999,3.4412000000000003,4.75375,3.668885,3.2006200000000002,5.4441,2.39957,3.2665175,2.65725,3.2021566666666668,2.51008,1.8110240000000002,1.8110240000000002,3.741235,3.744725,4.30762,1.794876,1.647688,47.16073121212121,2.544303333333333,0.8328645454545455,3.0797566666666665,1.7949375,3.2159099999999996,2.8072166666666667,3.0643333333333334,2.94717,2.67806,1.9410866666666668,0.9947925,4.33919,3.21568,3.520655,4.19524,5.18415,4.98945,4.99015,5.3849,5.4399,4.99528,5.7266,6.0723475,5.08065,5.5949,2.0962525,3.556215,6.628,5.40795,3.55623,4.308115,3.82046,2.45717,4.00867,4.508425,3.04658,3.7185666666666664,1.6671420000000001,3.69599,1.370608,3.19643,3.80209,3.629345,6.42383,4.26966,2.073975,4.19404,3.93373,4.008265,0.98343875,2.807025,3.626675,4.299039880952381,1.2283025,4.69804,1.4129475,6.26495,0.7063255555555555,3.896872666666667,10.1292275,4.20172,3.62482,3.779715,1.81905,4.24296,5.14415,3.0315066666666666,4.411495,8.994001944444445,3.346766666666667,2.10946,2.788373333333333,2.8817866666666667,2.8773700000000004,2.80754075,2.120643333333333,2.5964899999999997,2.906836666666667,2.7674833333333333,2.9361566666666667,3.473975,2.16604,1.7020066666666667,4.545683333333333,3.247263333333333,2.56016,4.996614,2.7929133333333334,1.15217625,2.2011275,2.7530533333333334,5.109210714285714,2.6983,2.175517777777778,2.175517777777778,1.622155,1.4208575,2.05682,1.802926,5.99197,4.197645,2.33722,2.81733,3.4828333333333332,1.9971625,0.5774875,2.6000033333333334,1.92611,0.5804746153846154,3.9626,2.4511625,2.522825,3.669225,3.889126666666667,2.84422,1.6583633333333332,1.23009,2.043415,3.49968,3.75943,4.2184325000000005,2.7952666666666666,4.08387,3.783975,1.092581818181818,9.372035,2.73105,3.18457,1.2522875,2.7300833333333334,2.377785,2.377785,2.377785,4.803015,5.646,1.64666,5.1442,1.499638,5.58256,1.53736,4.19232,4.19623,4.149915,4.319765,4.487075,1.87698,8.6191,3.846945,4.87812,3.51938,4.069185,3.046943333333333,3.0604566666666666,3.83783,2.5936033333333333,4.467332142857143,4.461878333333333,1.6624825,3.97485,1.6624825,3.42387,4.506765,5.06234,4.506765,1.9090266666666666,5.783,4.67282,4.221925,2.76642,2.9780200000000003,4.1802,3.043905,4.89076,0.49992928571428574,2.9160233333333334,3.1626366666666663,5.4093725,4.81673,2.4127725,4.558765,6.607363333333334,3.857275,3.221665,2.97073,2.2111233333333336,3.942645,3.82723,4.632175,2.327815,3.82865,0.867955,5.19695,3.23532,4.214665,2.5613466666666667,3.2181566666666668,2.27689,2.9572766666666666,2.74751,2.781413333333333,3.467275,2.42627,2.42627,4.568299166666667,2.9375,4.354985,11.5262,0.96072,4.37039,2.35624,2.319733333333333,2.84596,1.3949,7.5419936666666665,3.4497666666666666,3.818395,3.772995,2.1998633333333335,3.839933333333333,4.222683472222222,2.1338333333333335,0.44444111111111106,1.55569,1.4412625,4.91016,2.81463,3.30459,3.711978333333333,3.435999166666667,2.28965625,4.51754,4.430775,3.954365,4.473195,2.256365,4.37774,2.55257,5.717883333333333,3.169495,4.64264,4.199695,3.91297,4.33944,2.01565,3.879305,3.700665,2.9477933333333333,3.860465,4.700835,3.21014,3.585085,3.606315,2.8431599999999997,4.72635,1.7678500000000001,4.04498,2.91629,4.05315,4.08096,4.061635,4.748755,2.96837,4.17441,4.719355,4.126495,2.895566666666667,2.083355,2.996375,2.386495,0.8642233333333333,4.13852,2.020475,3.534745,2.888455,4.186755,3.426755,3.070445,3.29979,3.957205,4.770882,4.065565,3.157545,1.54111,3.583935,2.638435,0.7967711111111111,4.827825,9.143180000000001,3.668085,3.555185,4.253085,4.772785,3.76468,2.129395,4.045985,4.013825,3.14656,3.15439,3.410945,0.7251225,1.4602428571428572,6.076532500000001,1.6731525,2.60129,5.025223,2.4191675,2.339355,2.58028,7.67092,2.773275,3.89877,3.75552,0.7538122222222222,3.46929,2.799585,3.883235,4.047155,5.77025,0.670375,3.29276,8.37664,3.18755,1.198181111111111,5.108914166666667,4.78767,5.37265,4.35297,4.770125,3.228485,2.57458,7.194055,0.829493,3.47923,4.196915,3.22591,4.03773,2.183765,4.289705,1.5164,4.30182,3.99629,3.934135,1.696615,4.850665,4.28439,2.2956475,2.188725,2.4133375,1.22872,4.07915,3.3953024999999997,1.608276,8.708935,5.67265,4.481545,4.391905,3.61934,4.31859,1.4276814285714285,4.06275,3.993585,5.12175,3.7413,2.4377733333333333,6.562863226495727,0.98006,0.98006,2.52198,0.9331228571428571,4.2218,2.4816333333333334,1.041745,1.7505466666666667,0.40647000000000005,6.3369,0.9410525,2.748035,3.51248,4.059505,3.530505,4.056795,5.2243,5.6201550000000005,2.98563,3.16623,2.47786,4.401395,4.67838,4.65712,3.91386,3.6529,6.3099,4.333565,4.346507222222222,5.269159999999999,3.61393,4.0684825,2.40933,4.0684825,6.947895,40.50045385822511,3.623715,3.40842,2.934786666666667,4.44392,4.524005,3.339715,3.375965,3.826535,4.09701,4.22787,1.7214833333333335,4.90982,2.818345,4.509625,4.953475,4.38696,2.4522933333333334,4.48533,3.80517,4.17968,1.416106,0.6379846153846154,1.6222359999999998,3.4484333333333335,2.954806666666667,1.29015,3.107483333333333,2.623816666666667,2.6968,3.4063666666666665,2.94227,1.371166,2.6161600000000003,3.686166666666667,1.8979471685971685,2.7962633333333335,3.17913,2.8754399999999998,2.5648633333333333,3.3964666666666665,1.145288888888889,3.812515,4.14685,1.1714033333333334,1.1714033333333334,1.1714033333333334,1.1714033333333334,2.7979751515151516,2.0266533333333334,2.42596,3.312595,4.65389,4.28325,4.47267,4.35241,5.67905,4.665445,2.246845,6.1431,3.47655,2.619635,3.959435,3.066665,4.16126,3.9673,0.7447469230769231,1.4358428571428572,1.57501,4.477725,4.27241,3.81384,4.02021,6.174049999999999,2.309416666666667,4.775175,1.6496449999999998,3.991035,4.915685,1.6062233333333333,5.48295,0.8174800000000001,4.41697,1.432712,1.1694425,4.027795,4.421535,5.41225,5.127,5.84895,4.020965,1.516478,3.927155,1.4908575,3.42695,3.197725,2.476644888888889,1.8118025,3.094635,1.2807549999999999,3.491925,4.53038,2.89203,5.5079,120.00622884433622,0.5008777777777778,4.782805,2.4405466666666666,4.875735,4.134835,3.451385,1.5263175,0.3513942857142857,2.919415,3.62781,5.2378,3.496835,3.59457,4.3285,4.16599,4.27942,8.225406666666666,0.7034966666666667,2.874745,0.97212125,11.5466,3.100515,3.62219,0.9755855555555555,2.136645,3.06646,2.04221,3.0045566666666663,3.177103333333333,2.50581,4.3891925,2.8409366666666664,2.279236666666667,2.2139533333333334,4.46676,3.994735,3.03717,3.56462,3.76064,3.439825,2.3054166666666664,3.84248,3.68709,3.021775,1.0445544444444446,2.4914533333333333,4.3891925,4.4194,5.1549,4.075525,4.68383,1.888175,11.04159,4.086855,2.72585,3.844875,5.30965,0.6049559999999999,0.6049559999999999,4.2184175,4.2184175,3.729625,3.26519,1.7942920454545455,0.5874633333333333,3.082505,4.31404,3.8822,3.080685,3.891825,5.4698525,4.534765,2.10005,4.423585,2.01142,2.832685,4.187599166666667,1.74481,2.30181,0.5048814285714286,1.2023414285714287,1.2023414285714287,1.95413,4.612335,4.07661,4.681355,5.823665,2.860785,3.16907,1.862635,1.910975,4.168846666666667,3.82643,5.31001,2.46001,5.31001,5.17735,3.518255,5.8354,3.83628,2.47473,2.055363333333333,2.61614,1.4327075,1.39498,1.50321,1.7599625,1.6126225,1.6439025,3.7189,4.41736,2.48906,6.42645,2.982333333333333,4.06397,3.043075,4.2449,2.9643366666666666,3.0544433333333334,6.243179999999999,3.1422866666666667,4.719438,3.1335833333333336,1.3616325,2.5716233333333336,2.591553333333333,2.3717466666666667,5.74795,4.2543825,4.697915,12.863842289039907,0.7214700000000001,1.99541375,2.301045,1.629172,1.281497142857143,2.64825,2.435365,2.4221425,2.4315225,0.7401884615384616,1.941255,0.5484894736842105,4.74079,1.96339,4.06074,4.83515,2.37963,5.9019425,4.48218,7.68246,3.73361,2.693255,3.115005,4.459185,4.47934,2.7552545714285714,4.330585,2.1281575,2.1281575,4.64592,3.85745,4.313725,4.094705,3.0544433333333334,4.23214,4.865055,4.690735,4.59573,4.27888,4.4003,4.4973,2.303,4.96327,1.2851216666666667,4.799595,4.578435,2.521263333333333,2.21651,4.347265,1.3806466666666666,4.83099,1.82704,6.0076314130434785,3.77954,4.154975,1.6870166666666666,3.2531625,3.2531625,12.164670000000001,3.996725,4.570965,1.1249675,4.431025,2.4213875,1.431335,2.314575,1.6611425,2.0558275,1.777064,3.32726,6.05025,1.77977,4.923645,4.6695225,5.174,2.18247,2.2554,3.740495,4.36388,5.4016,3.94421,6.902881666666667,3.0620999999999996,2.728153333333333,0.4078916666666667,3.81509,4.11264,3.2615433333333335,6.134163333333333,2.5724633333333333,3.06958,1.2687466666666667,1.6310433333333334,0.554414375,1.55569,2.970025,1.4990966666666665,1.6516933333333332,0.66110625,1.32668,4.55406,2.47749,0.6201138461538461,1.8394000000000001,1.753745,1.692834,1.2094449999999999,2.006085,1.6310433333333334,2.318115,1.32668,1.32668,0.6201138461538461,1.5853428571428572,2.4959800000000003,1.2694016666666668,2.76,0.6201138461538461,2.5446,2.4959800000000003,1.2736883333333333,1.2736883333333333,1.2736883333333333,1.8566379999999998,1.19813125,0.6201138461538461,1.12141,1.18969625,1.0008511111111111,1.791324,2.658475,0.8289466666666666,2.25357,1.6130714285714285,0.6201138461538461,1.749446,1.6310433333333334,1.9249833333333333,2.01005,0.9146789999999999,1.9249833333333333,1.0751344444444444,2.2956475,2.41333,2.472785,1.18969625,2.15544,1.2807549999999999,1.2807549999999999,0.898819090909091,0.898819090909091,0.898819090909091,1.2687466666666667,1.6310433333333334,1.6130714285714285,1.8394000000000001,0.8985271428571429,2.01005,1.429418,1.722558,1.881656,1.2687466666666667,2.6569,12.133505,0.66110625,2.56222,1.89485,2.498845,0.9506557142857143,0.9506557142857143,0.6201138461538461,1.2127222222222223,1.588654,1.6130714285714285,1.758024,2.01005,1.1545777777777777,1.1545777777777777,1.6718540000000002,0.20554,0.20554,0.20554,0.20554,3.2333200000000004,1.0751344444444444,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.37629409090909094,53.86244067099567,1.423045,1.5362683333333333,1.6130714285714285,1.89485,0.8985271428571429,0.6396882352941177,0.7177330000000001,0.7177330000000001,0.7177330000000001,0.7177330000000001,4.3419,16.010844166666665,3.3754000000000004,0.5960027272727273,1.591844,1.591844,1.591844,0.5960027272727273,2.970025,0.6201138461538461,1.749446,1.6516933333333332,2.59722,1.0751344444444444,2.4127725,1.0751344444444444,1.5431219999999999,1.5431219999999999,2.1210999999999998,2.1210999999999998,0.6201138461538461,1.962208,1.962208,0.9361818181818182,0.20554,2.970025,1.5961866666666669,2.4812875,0.5960027272727273,0.5960027272727273,0.5960027272727273,0.5960027272727273,0.5960027272727273,1.89485,0.37629409090909094,1.0751344444444444,2.320645,2.320645,2.4743575,3.064243333333333,0.6513571428571429,0.6513571428571429,3.3882999999999996,4.1049999999999995,1.2448742857142856,3.21201,1.02438,2.669975,2.07174,1.132785,3.04133,1.978605,3.3505000000000003,5.38845,2.519025,1.1832333333333334,4.1154,4.37037,2.74023,1.83323,2.3748819230769236,4.7888,1.74197,2.675136666666667,2.89622,3.3379666666666665,2.434215,6.141206666666667,4.120205,0.20554,2.878576666666667,4.844975,3.88071,4.431055,4.315405,4.26105,2.6992766666666665,1.825458,3.698055,4.52202,4.31788,4.567895,4.92758,3.21838,0.6705658333333333,6.79575,1.3495266666666668,3.059948,4.600175,2.5406,2.5406,0.8144218181818182,1.8118025,4.685295,3.14643,4.66664,4.318265,4.732855,5.1945,1.0318971428571428,4.56386,4.83047,6.707926875,2.2542766666666667,4.320935,4.150365,3.959885,4.6152,3.845005,4.4825,5.9725475,5.24555,4.59322,3.58034,5.142996666666667,7.453413,1.9254775,1.9533771794871795,2.79974,1.7900433333333332,2.7514333333333334,1.88624,5.11065,3.01542,5.55125,1.9398399999999998,4.63128,4.069845,3.2599,4.370025,3.78595,2.56103,2.7481233333333335,2.74536,2.58557,2.4939566666666666,1.6540016666666668,2.7248033333333335,2.9142166666666665,2.1646799999999997,2.1646799999999997,4.39107,2.9391033333333336,1.9295766666666667,3.14397,2.067833333333333,2.3479233333333336,3.12561,2.72561,3.0726099999999996,5.2114,4.247165,4.216925,3.498798,3.498798,3.80247,3.284613333333333,3.93986,4.454365,3.91985,3.41755,3.239625,7.29787,2.153055,1.95924,3.47389,3.121055,1.4179633333333335,1.4179633333333335,3.61644,1.899395,3.912254,3.654835,3.050565,2.070772,2.0561176666666663,0.5187333333333334,3.1898,3.94823,2.1111,2.483675,4.277055,1.35211,4.83391,1.19344,0.4328985714285714,0.57846,21.527353975198412,0.57846,0.4328985714285714,0.7240214285714286,10.777073333333334,3.164343333333333,3.668085,4.58374,3.3193849999999996,2.417755,4.462307142857143,2.24272,2.50763,3.44821,3.12944,3.928405,4.439015,3.504095,2.157825,3.11096,3.36685,3.884645,3.06005,1.128158,1.128158,1.128158,1.128158,3.35893,2.89191,3.08644,1.7303666666666666,1.2449583333333334,2.434795,3.574955,3.71868,2.91862,3.086195,2.50667,2.3104741666666664,3.90994,4.25629,1.09169,2.92452,1.0715,2.7328333333333332,2.0214766666666666,3.5140666666666664,5.07595,2.4408499999999997,4.104495,3.96335,0.8694014285714284,0.3108214285714285,0.3108214285714285,0.55858,0.3108214285714285,0.3108214285714285,0.3108214285714285,0.55858,4.397935,7.282431666666667,3.552995,0.54111,3.665815,7.66436,3.20493,3.0744900000000004,1.1857033333333333,4.3376,5.26065,4.45886,4.79838,1.658614,4.930875,2.1675,2.4542173333333333,3.687755,5.22455,0.8107028571428572,0.8107028571428572,3.58693,3.0121599999999997,1.65633,3.11449,2.7957,6.307,2.55617,4.923575,5.47525,5.66525,3.01528,1.64992,3.88428,3.509645,2.275205,3.56751,3.024905,1.87053,1.159765,4.06487,3.45005,4.94922,6.175326666666667,1.5004433333333334,3.986985,1.10964,2.53112,3.34265,4.130195,0.38713928571428574,4.71489,4.111765,0.899235,2.7332866666666664,7.604066666666666,5.4692,2.138365,5.603572,4.435465,3.71584,1.4738700000000002,5.452686666666667,2.90545,3.0494066666666666,3.6542333333333334,2.2072133333333332,2.2072133333333332,6.343375,6.343375,3.5280428571428573,3.5280428571428573,9.91424,3.5280428571428573,3.5280428571428573,4.180572857142858,6.77415,3.651595,3.3898833333333336,2.75277,4.490305,3.82314,3.2571933333333334,2.9658700000000002,4.56224,3.0885700000000003,2.64172,3.0565766666666665,2.3013066666666666,2.65088,4.97234,7.555735,6.797689999999999,5.19005,3.74098,4.049775,6.3580570000000005,4.941595,4.155325,4.05725,3.837,2.266716666666667,2.244275,2.08854,5.31325,5.3396,4.46851,4.18125,2.32773,2.7141066666666664,7.047536666666666,1.8566379999999998,2.5394866666666664,3.2201466666666665,3.2201466666666665,3.176765,5.1081,0.76505,3.4369666666666667,3.73574,2.60682,10.19865,4.15564,2.5819433333333333,2.4138633333333335,5.5294,6.1454,3.09238,5.51345,2.68176,4.25883,2.835826571428571,4.248665,5.31025,4.779515,0.9222616666666666,3.5483666666666664,1.1181225,2.5609766666666665,5.0001659705882355,7.987176666666667,2.87243,3.1463366666666666,6.618441666666667,1.791128,4.43197,5.5019,3.466855,3.6857,2.2966333333333333,4.790995,2.4323724999999996,0.46487615384615383,5.14965,3.274955,3.509733333333333,5.0358,4.799635,5.00525,6.6124725,4.79366,5.63325,7.036995,54.296843333333335,4.70699,3.939955,4.66881,5.8622,4.28811,5.02915,4.034735,4.7064,1.8850325,3.94045,3.993595,4.75102,2.37495,4.86485,3.921985,1.614058,5.62605,6.43495,6.972428333333333,5.37185,3.41324,4.7939,2.964295,3.31969,3.622695,4.42654,3.812655,7.02496,2.69545,1.054047142857143,2.4512825,0.5768679999999999,0.5768679999999999,3.338645,0.5768679999999999,2.5456982142857143,2.5456982142857143,3.2454382142857146,4.4607775,4.919790714285714,2.4512825,4.573071666666667,2.5616516666666667,1.3251966666666666,5.44445,2.146825,7.754334666666667,6.100536666666667,11.299313121212121,3.3554666666666666,2.7987066666666665,0.2183121212121212,1.8591043333333332,2.1740733333333333,0.89365,1.6878666666666666,2.5239066666666665,2.1171875,2.591275,0.62294,28.08464875,1.9181275,0.7625384615384616,2.6240866666666665,2.6240866666666665,0.383705,1.7488075,3.2966225,1.3085075,1.8098575,1.6477,4.29743,2.93632,1.96233,2.3441266666666665,1.139395,1.948785,1.5521816666666668,5.610265916666666,3.57009,6.690159166666667,2.4714525,3.1694766666666667,1.025085,2.581305,4.870275,6.21248,3.0282133333333334,2.2789566666666667,5.490195833333333,2.1635925,2.36788,4.2390125,1.01454,3.6291666666666664,2.411776666666667,5.462,4.93375,6.2942,3.241455,4.124305,4.124305,5.23275,1.790195,5.44145,2.84421,1.6047375,4.39964,3.59257,5.695310166666667,5.20925,2.79412,3.016383333333333,2.98721,1.155617142857143,4.992055,0.9864675,5.318466666666667,4.606645,7.84856,4.20307,4.36675,4.02785,8.125686666666667,4.31475,5.0014,1.12107,0.7254071428571428,4.75025,4.496675,2.086605,3.19293,3.272425,4.280685,2.22458,4.66404,2.4495299999999998,5.1805,5.44785,5.2052,4.436115,4.38411,2.77497,6.756816000000001,3.511615,4.55923,3.41716,4.14654,5.932472380952381,0.6002014285714286,3.908533333333333,1.7557600000000002,0.6256455555555556,3.98234,2.9158,0.99875125,1.99937,5.87897,3.99927,2.23747,2.7238900000000004,2.70843,4.961405,3.70321,1.667747857142857,4.13036,2.316196666666667,3.5063333333333335,4.27204,5.0842,3.0565233333333333,3.7951,3.7657666666666665,2.01386,7.12496,4.98002,4.064005,4.94512,2.24092,4.117385,4.589315,3.59294,3.928665,10.522695,3.756625,4.281488333333334,4.76747,4.42708,2.38196,4.082705,4.266395,4.601555,3.22509,4.101305,1.772535,2.8793399999999996,3.927225,3.478075,4.911775,1.857658,4.1399,3.0958566666666667,5.15095,2.99978,1.76084,4.09779,4.31733,1.07118,3.079915,2.68905,4.614773333333334,1.7076319999999998,1.8716166666666665,1.179515,4.15996,5.27495,5.8852125,3.74857,2.98583,2.272185,2.34775,1.90026,1.6969033333333332,5.4337,3.003955,1.81652,0.8870615384615385,20.542678301282052,2.96408,3.4894741666666667,4.294965,4.106327435897436,1.48567,2.6107199999999997,2.899130681818182,1.157346,1.8983100000000002,4.113035,4.886375,3.5303675,3.08381,5.2397,4.78188,7.085915,4.7006741666666665,4.70884,3.841025,2.7762,3.972465,3.90907,3.3653999999999997,3.931365,2.0106525,5.00055,9.35521,3.46523,2.964385,3.47863,0.5656,3.2662633333333333,1.9709466666666666,2.2675275,4.27289,3.052155,4.71411,3.62259,2.88688,2.181355,1.702445,0.8521380000000001,1.55576,1.2499133333333334,4.02549,3.703925,4.628285,4.705845,7.39692,2.4167566666666667,1.4185079999999999,2.2967033333333333,7.668331666666667,3.39127,2.767175,3.102425,4.480225,3.3955025,3.46889,1.50024,4.42442,4.912085,4.21202,4.058195,3.59855,4.2298,4.33135,3.81894,4.379105,3.613725,2.153665,3.187803333333333,3.47831,5.3893,2.91151,4.185937,2.89401,2.949555,2.64477,2.405726666666667,2.17206,2.505832333333333,2.505832333333333,1.97833,2.6005433333333334,2.672803333333333,2.34736,2.15768,4.117715,2.3972666666666664,2.88589,2.7973833333333338,1.7374166666666666,4.306335,2.96737,3.690445,2.5460066666666665,5.18495,5.2864,4.636053888888889,2.947865,2.45828,2.93154,2.58436,2.176545,2.876405,1.9204225,2.505725,2.4581375,6.898929833333333,4.3986225,3.693215,0.58510125,4.294945,4.068635,4.14514,3.061505,3.896585,3.689256666666667,6.14615,4.160605,3.3298,2.7007710714285715,2.14488,2.4583,1.652788,1.718882,1.55577,2.12648,1.7164075,1.2057733333333334,4.177568857142857,0.6201138461538461,0.52398,2.01586,1.5244783333333334,1.4781520000000001,1.4114433333333334,2.383027272727273,1.5109416666666666,1.533662,0.6008675,168.63320628299803,0.4761253333333333,1.9614540000000003,1.060404,1.301,2.0494925,1.56253,2.156195,2.4247366666666665,2.027765,6.6385,3.22643,3.557927142857143,1.9701766666666665,3.0357,1.3429116666666667,1.3429116666666667,5.5045525,0.48639111111111105,2.2678225,3.2687066666666666,3.067543333333333,0.7931945454545454,0.5935882352941176,1.190752564102564,1.0252999999999999,2.2991025,3.871275,2.0404625,2.1329375,2.2995233333333336,4.6971739999999995,1.0316311111111112,4.251325,3.612275,3.470155,6.84725,1.9133466666666665,2.9522,2.863565,4.0704649999999996,2.465365,3.356015,3.346405,3.27094,4.755765,2.91344,5.97973,2.02212,2.357295,3.169835,1.59329,2.458625,2.96382,2.76644,1.78846,1.6124,2.483665,4.146625,5.680033333333333,3.03326,2.951325,1.267445,4.238975,3.3457333333333334,3.888533333333333,2.93473,24.700844755952374,2.375582,2.68844,2.9596,3.288296666666667,3.129466666666667,6.070296666666666,3.1103666666666663,2.4408933333333334,3.4774999999999996,3.3112166666666667,2.18216,3.225873333333333,3.23325,3.0262333333333333,1.6792,1.67015175,0.568573,2.3147366666666667,2.0508025,0.219586875,2.252543333333333,2.754215,0.219586875,0.219586875,2.0135035416666667,0.219586875,0.219586875,0.219586875,0.219586875,2.81001,2.5065233333333334,0.56322,3.255852857142857,1.39364,1.854878,5.30955,4.3701300000000005,6.1841275,2.0598275,4.998115,2.0298375,2.6865633333333334,1.219364285714286,5.7725599999999995,2.8118733333333332,6.1018349999999995,0.9079416666666668,1.465985,4.700325,4.654055,35.01647747602398,1.60357,1.4155533333333334,2.3010533333333334,2.350035,0.898819090909091,2.384943333333333,2.22941,2.80471,2.00444,2.4335366666666665,1.6977799999999998,2.7851266666666668,2.4888933333333334,2.2476266666666667,2.62858,2.4698166666666665,4.13851,3.3746666666666667,1.0642871428571428,3.831325,4.21424,19.695164833333333,2.718173333333333,3.154006666666667,2.6440233333333336,0.803448,3.146756,1.5783913333333333,3.146756,2.37125,2.4655766666666667,2.8883466666666666,1.6169875,1.8466575,4.268755,4.123785,5.27295,4.33901,1.611932,5.0911,1.711315,4.914105,4.052467095238096,5.31035,0.7407154545454545,2.153545,2.0748375,2.820988,3.40848,1.06780625,5.36715,2.05926,2.0860566666666664,1.037152,1.037152,3.022726666666667,2.99143,4.412075,29.198293333333332,6.39305,1.8968466666666668,3.6035933333333334,0.3849433333333333,6.0726525,5.1152,2.68601,3.131215,5.6031575,3.81459,1.17033,4.263565,1.209898,3.831635,4.500125,4.79859,2.119145,2.986105,4.30155,2.613215,3.3230589999999998,3.896745,1.3276566666666667,2.526655416666667,3.896485,4.677455,2.798486666666667,2.9055866666666668,2.9922233333333335,3.58456,3.99838,4.05293,4.086566666666667,1.696985,6.11856,2.78784,1.773818,4.214695,4.90371,4.074865,3.484295,0.84847125,3.06934,3.42209,2.07466,4.687316333333333,2.92668,3.971365,2.9055433333333336,3.2555099999999997,3.46215,3.1200200000000002,2.92244,3.0490333333333335,4.61663,4.98602,4.341825,1.671705,4.042115,4.14697,2.044395,1.81674,1.6957325,4.189387222222222,4.584685,5.321939375,3.963075,3.715733333333333,3.749855,3.387966666666667,1.3697916666666667,3.319935,3.011825,3.55247,4.35286,4.33566,4.387515,2.988755,1.886495,1.57955,1.4820775,3.56024,2.46622,2.51147,3.310535,4.730745,1.54207,5.18395,1.3374914285714286,1.7962725,3.22742,2.95334,3.097455,3.59623,3.071025,1.57777,0.939319,3.24002,4.080026666666667,4.64448,8.526589999999999,2.38973,3.053523333333333,1.53581,2.747783333333333,2.791533333333333,1.2133933333333333,3.04805,2.7247966666666668,3.404333333333333,3.954966666666667,3.3383000000000003,7.039256666666667,3.0623466666666666,0.7394436363636363,1.8804933333333331,3.285275,3.35007,3.46294,3.5676,2.6569089999999997,3.416895,3.448815,1.993754142857143,3.817325,3.053532222222222,3.32413,2.11102,4.47676,4.84058,4.60982,4.009435,4.15658,1.1382777777777777,4.8785,3.1429333333333336,2.765163333333333,4.415705,2.785323333333333,3.06691,0.41954857142857144,0.41954857142857144,4.11277,5.09775,6.7813,3.05276,4.267825,3.631085,3.181915,4.950605,4.27326,1.03317875,4.136475,2.7922666666666665,4.205464166666667,2.9608133333333337,2.9843716666666666,1.9241133333333333,3.186889285714286,2.6338833333333334,2.696476666666667,2.6115733333333333,2.8193333333333332,1.9890166666666669,23.559379804183138,5.5756,5.00635,3.806315,3.313,4.4724375,3.194645,4.46249,4.389525,3.718935,3.87412,3.831105,2.60833,2.92944,3.0878266666666665,3.072091666666667,2.7081133333333334,4.27289,3.536935,4.5889325,5.04335,4.175835,1.37894,1.59323,1.59323,4.883925,4.38345,2.6594333333333333,2.36787,2.8163433333333336,4.675835,3.66983,7.947591666666666,3.2040566666666668,3.3248233333333332,3.1169700000000002,4.54108,1.591785,5.961752499999999,2.46028,2.51285,1.647155,3.716085,2.798915,6.90383,3.30272,2.49333,4.199805,3.6235893333333333,1.4690525,2.4833133333333333,1.54549,7.933899,4.351325,6.522851666666666,2.205965,3.985125,3.69354,4.044945,5.207,3.5012666666666665,3.5012666666666665,2.13258,4.455205,5.07295,2.51459,6.36792,1.58643,5.8734,9.106945666666666,3.352066666666667,4.626671333333333,2.212686666666667,2.023365,0.568618125,4.03328,2.854575,2.49305,3.788744,2.3698825,2.3849033333333334,3.606945,5.3932,4.92768,4.44181,5.1287,4.15974,2.251815,1.014581818181818,2.895785,3.390865,2.7159333333333335,4.92154,4.048195,3.42617,2.929405,1.937474,4.225515,1.01156875,5.1251,0.9518255555555556,5.21905,3.309715,4.73032,5.108225,3.189875,3.30609,3.443566666666667,2.3864533333333333,4.212415,3.24361,2.587915,3.9327,4.45738,6.379203333333333,4.50806,1.73968,3.65405,3.34971,5.398865,2.06647,2.06647,2.887793333333333,2.368716666666667,2.42796,2.6386833333333333,0.8727880000000001,5.9799,3.94799,2.0301225,2.318205,2.512475,3.74785,2.61825,3.759175,4.892805,5.49715,5.54265,6.0188,5.86865,1.3064,3.873785,1.0745833333333332,2.51865,4.232233333333333,2.437445,3.002635,3.2534,4.3341,3.778975,0.4570894736842105,4.38467,4.281275,4.674255,3.214475,4.812075,5.4257,4.431835,3.883045,1.87165,4.384715,2.0902025,4.176200000000001,4.176200000000001,6.47335,5.33125,5.38195,5.0315,2.68687,1.591785,4.348875,2.164676666666667,1.6279233333333334,2.015605,4.156465,4.13764,4.386145,8.11208,1.5554750000000002,5.33175,1.228265,3.222425,5.96235,1.9728775,4.58798,2.7487833333333334,4.69779,3.661945,4.33581,3.3424333333333336,4.19371,4.039845,6.1972,4.081115,3.83329,3.868405,5.2667,3.923955,4.35401,3.594815,4.34824,7.5516749999999995,3.512385,7.16831,3.170905,5.3817,6.056733636363637,4.53844,3.64787,1.835975,5.3992,3.853045,0.8184311111111111,8.96357,5.8519,5.05085,3.18576,5.0053,2.933405,1.6694600000000002,3.8689,1.09169,5.8183,2.96608,4.69082,5.51815,4.426135,4.00748,2.1296933333333334,4.227215,5.18855,1.506725,7.110796666666666,3.08595,3.473255,5.1157,3.94321,1.8677,4.355005,3.887665,4.1254,2.8074833333333333,3.90487,3.70635,5.45365,4.68788,3.36673,1.91045,1.91045,6.986995,1.4334428571428572,5.19685,4.27079,5.0976,3.565135,3.70466,4.989815,3.895395,0.9233950000000001,0.9233950000000001,0.9233950000000001,3.671905,3.22818,3.931555,4.556484888888889,2.701115,1.442855,4.82591,2.14956,2.494155,3.978975,4.66032,1.8627475,2.2043,5.85148,3.966905,2.68894,4.235245,1.6675775,1.9956725,3.2491066666666666,2.634525,5.2706,1.4298579999999999,1.5585200000000001,1.04941625,4.049755,3.16731,3.04271,2.9594199999999997,5.455,1.745142,2.05727,3.036845,1.5828714285714285,3.237595,3.81491,2.5281,5.8015,5.4829,3.10087,4.372475,4.25904,3.43051,3.437675,4.21871,3.521235,7.24781,5.23775,2.045383333333333,1.8188166666666667,3.570865,4.4972,4.224235,3.74589,2.9944400000000004,4.11712,5.74775,5.00425,2.65084,5.14335,4.04142,4.95853,7.9320175,4.50766,0.7120536363636364,3.954495,4.1728483333333335,2.4175,3.767955,3.711733333333333,5.62335,3.87367,3.83956,3.73754,4.258085,4.619045,4.58295,3.109125,3.997645,4.92814,3.978155,3.44066,2.912705,6.39637,4.756735,1.741882,3.103895,4.0045641666666665,3.878805,4.898065,4.255495,2.6189433333333336,0.8936055555555557,4.334493636363637,6.663142499999999,3.856355,4.72794,3.59436,7.3335783333333335,4.040435,3.4999000000000002,2.7156800000000003,3.67798,2.15867,3.541645,4.19922,2.607592,4.0498,5.31645,1.4598175,4.949995,0.6604599999999999,6.1138,5.03265,5.9059,5.78475,1.4671483333333333,1.7657366666666665,4.19212,2.032485,4.916585,0.5295525,5.9657,3.138105,1.541854,6.2505049999999995,6.65355,0.9220125,1.6578344999999999,1.278552,1.278552,1.278552,2.1725333333333334,4.59412,3.6449,4.12884,3.79222,5.38825,3.986345,1.87106,4.043185,5.1417,0.2949317073170732,3.80155,4.52106,5.5584,39.80002203787879,5.759625833333334,5.10915,11.539659,4.01017,4.06939,7.438293333333333,3.149775,4.5446,4.272005,4.827435,10.21734,4.06596,2.6192166666666665,3.21491,5.02625,4.092215,3.868,4.34928,2.35935,4.53659,4.785145,6.79678,4.445565,5.15735,2.3129975,4.20697,0.527635,1.408835,3.685595,6.42535,2.88249,1.3106783333333334,1.3106783333333334,3.579155,3.958635,4.07306,2.58011,1.5953099999999998,3.75134,4.27071,1.762255,2.9580866666666665,1.6630639999999999,2.1993833333333335,4.043285,4.473605,2.1386725,4.55272,2.32112,2.06714,3.46841,3.83844,3.979155,3.89958,5.985662333333334,2.3757623333333333,3.705435,0.6834872727272727,0.6574175,3.804305,2.28022,8.616693333333334,3.3754000000000004,4.87395,1.625065,4.496415,1.5533966666666668,3.972115,4.295455,2.6248733333333334,3.91265,5.3237,0.4016505,0.4016505,3.5498,3.1414266666666664,2.85871,3.490795,3.648055,5.25675,0.9452909090909091,10.474641666666667,9.007765,2.006085,4.69107,4.67903,4.89307,3.595855,2.5724566666666666,2.08866,1.9556825,10.062575,2.2023825,2.7994299999999996,3.636244,4.720195,3.636244,2.561425,2.8455866666666663,2.83544,0.7168309090909091,5.777628333333333,3.0869733333333333,2.7505466666666667,3.952025,8.35747,9.537615,4.10773,3.88794,4.44008,6.583585,1.95541,1.30745,25.680635,3.816695,3.950345,0.9266819999999999,4.595665,4.131555,4.77794,4.47344,4.37128,5.581333333333333,2.98992,2.0690399999999998,0.6750529411764705,0.7357191666666667,4.804435,4.663775,1.4413733333333332,4.412136666666667,0.8691916666666667,3.589866666666667,1.4770366666666668,4.309425,5.83855,2.055865,2.468035,2.65929,3.44656,2.890485,0.49372222222222223,4.829255,3.60409,2.73363,3.23075,4.94231,2.8288933333333333,4.03948,3.10893,4.211235,8.388066666666667,4.61448,7.78126,2.5592,2.5790333333333333,4.243035,4.572010000000001,4.211525,4.523735,3.72008,4.93666,1.23719375,3.338737916666667,3.3329852142857144,0.797682,1.59323,1.59323,4.857095,7.1583516666666664,0.8562076923076922,4.95792,0.94482,2.969,2.396036666666667,2.5506904545454545,6.484865555555555,2.5629733333333333,1.1112555555555557,2.5057566666666666,1.23618125,2.3245999999999998,3.024843333333333,3.0573733333333335,3.29232,2.486126666666667,0.94482,4.30294,4.23619,5.4543,2.6396,4.55422,2.1901599999999997,5.8002,4.64186,4.365215,2.9259566666666665,3.114075,2.2091475,1.321055,4.265745,2.7066,4.23523,5.60335,1.6683679999999999,4.536445,2.75869,6.426096666666667,3.44799,2.454575,0.94482,2.460055,3.1833,7.124334,2.3525899999999997,1.6942920000000001,2.3525899999999997,0.4498175,1.223582,3.53652,3.814785,1.6566175,3.4932,3.677124,0.622594,0.622594,0.622594,7.865460000000001,1.4993159999999999,0.7487881818181819,35.96194977922078,1.819424,0.65253,2.87775,0.65253,3.708655,2.088245,2.27869,2.502056666666667,5.4565,4.42978,4.36112,2.4342533333333334,0.8674957142857143,4.19757,3.0936800000000004,5.0255,0.9880642857142857,2.748525,2.748525,3.81632,4.44048,3.56565,5.005213461538461,3.14594,4.440745,5.2397,1.7762239999999998,1.099905,5.7257,6.43445,3.824515,0.6519510000000001,4.300725,4.092338333333333,0.935755,4.36674,2.29324,4.142835,4.399565,1.7964417171717173,1.7964417171717173,3.952455,3.361935,0.84764,2.879165,3.0529566666666668,3.26905,3.97823,4.526315,0.4485657142857143,0.32744882352941174,0.32744882352941174,0.32744882352941174,0.776014537815126,0.5997984615384616,0.6232409999999999,0.32744882352941174,0.32744882352941174,6.795585,0.32744882352941174,0.776014537815126,3.44905,1.2585825,4.497965,1.1554116666666667,0.5727207692307692,0.935755,2.535245,2.6218,3.836385,2.90623,0.32744882352941174,0.32744882352941174,4.393745,3.6604,4.20032,2.610295,3.72376,1.453102,3.86461,0.6232409999999999,0.6232409999999999,4.74709,3.11004,2.574655,2.808675,3.95636,1.00113,0.8096769230769231,10.29787,1.28585,4.08959,4.336545,5.13595,2.01982,0.3726121739130435,0.8506375,2.92211,3.255,3.315775,4.227815,1.429244,6.25065,3.44321,4.998035,4.054705,2.9951133333333337,2.8503933333333333,6.118743333333333,2.51865,4.780365,4.19369,3.96335,5.81881,0.5423646666666666,4.134065,3.3140366666666665,2.0214066666666666,0.7332655555555555,4.191935,5.30099,2.75947,2.31499,2.24837,5.07885,2.743475,2.899795,0.959352,0.46154923076923077,4.040745,0.34959,0.7770445454545455,3.97281,3.342315,4.15452,2.62715,5.2202,4.29719,6.250802,3.733025,3.633625,4.331215,1.4829875,4.9092125,1.9325299999999999,4.175025,2.4097275,5.845506666666667,2.585465,1.032778,4.401235,6.7421299999999995,6.416980416666666,3.11657,0.7860608333333333,2.7770833333333336,4.53716,3.914025,4.640005,4.54599,4.128315,4.37328,2.984685,4.34748,1.8183533333333333,2.303125,1.3815233333333332,4.003135,9.54246,3.361305,3.685305,5.7143,2.668215,4.11875,2.5439766666666666,2.9948376666666663,3.355615,3.750365,3.46147,3.56952,3.34031,5.14,5.58875,4.637765,4.695845,4.796265,5.06195,3.001295,5.2931,7.63195,0.9280566666666668,4.005855,4.35516,4.448155,5.15385,4.80079,3.83339,8.906815,2.47396,3.392395,5.74495,3.77433,4.46806,2.0888400000000003,1.85488,2.7211933333333334,2.9196500000000003,1.9522533333333334,2.9626866666666665,4.187555,4.59041,4.10782,3.49947,4.908933333333334,3.28574,3.45662,3.9177575,5.2835,2.85395,5.540322,3.95635,4.04058,3.470305,7.97509,3.880325,3.56456,4.847605,4.703675,3.326305,9.71881,1.28874,2.17278,3.957095,2.763856666666667,2.763856666666667,2.01365,7.887229999999999,0.8422755555555556,3.105635,0.87555875,2.05727,4.311745,4.90986,3.92071,4.46074,2.71637,3.290565,3.762735,3.83716,4.3727,2.896935,2.6213233333333332,4.31276,4.919113333333334,3.78211,4.373395,1.684874,1.670534,2.6672766666666665,5.4602,2.1411325,1.7067466666666666,1.8971875,4.36546,4.62275,3.180045,2.823385,0.5110544444444445,2.384175,7.39542,3.1491,1.5502466666666666,0.87729125,1.2072633333333334,1.9528966666666667,2.2702075,1.2169666666666668,1.9978633333333333,4.390471,4.06414,4.958575,2.4831333333333334,2.1094675,6.7670375,2.90455,1.8184016666666667,1.8184016666666667,1.8184016666666667,6.356773333333333,2.158506666666667,3.73979,2.69504,0.474664,1.1614119999999999,2.121665,5.824395,0.4562611111111111,3.77019,3.9180441666666668,5.5689,3.022851111111111,0.4562611111111111,3.022851111111111,0.96036,1.210452,5.4743,4.05905,6.950094999999999,4.068075,4.70125,3.581055,4.19063,5.06495,4.83108,6.0674,3.69975,3.43209,5.1749,4.68196,4.17643,4.471025,5.1361,1.3712533333333334,2.708906666666667,1.1101625,2.24342,3.2437726388888892,1.5466059722222223,6.83895,5.398865,2.7715316666666663,4.573535,2.86565,4.8202,3.050755,4.21343,4.888525,9.469418333333333,5.37645,4.47872,2.40412,2.860695,2.20216,0.5656,2.1875313333333333,5.7679,5.22535,4.981935,4.427535,0.5670453333333333,2.01049,1.4133525,4.39778,0.7997000000000001,6.824185,2.069535,1.0875175,1.0875175,3.6058780000000006,1.9685320000000002,3.3867333333333334,2.774975,4.54001,3.37771,3.37771,4.42362,5.654906666666667,2.7912966666666663,2.43668,3.415433333333333,4.270815,1.8433700000000002,2.9014133333333336,5.5333,5.26835,4.882855,4.137035,3.8903700000000003,4.68239,3.4804116666666665,3.20355,2.30394,4.07684,5.2665,3.06424625,4.974065,5.56815,2.0938466666666664,2.57428,6.1951,6.94745,1.3742459999999999,2.592425,2.1543475,2.811586666666667,2.2172225,2.418215,2.5086424999999997,1.0012088888888888,1.94312,2.6599,2.17585,2.5486216666666666,2.5486216666666666,3.009495,2.831275,2.1612982692307696,2.503825,2.4174675,2.02958,1.572792666666667,5.024917500000001,14.528451666666667,2.8549333333333333,3.4667333333333334,1.8670719999999998,1.8670719999999998,1.6121916666666667,1.6121916666666667,2.98423,3.6662,2.93491,1.9876975,1.9876975,3.8701666666666665,2.753323333333333,1.1223266666666667,1.406212857142857,2.9742033333333335,2.8965899999999998,3.6384000000000003,2.5904721428571427,3.2020666666666666,3.0823033333333334,0.675402,2.60075,3.5438899999999998,7.189021666666667,4.474645,4.54592,4.314885,3.24718,4.957515,4.43843,2.7262533333333336,4.217915,1.3494066666666666,3.1970899999999998,5.65435,5.4276,2.66216,1.038615,3.004975,2.44901,2.997306666666667,1.5490783333333333,0.7062364285714285,3.16507,4.6227,4.799715,4.119265,4.875495,3.1039033333333332,2.1736033333333333,3.2380983333333337,2.6855666666666664,3.3192233333333334,3.13723,3.4090666666666665,2.6202466666666666,2.51023,3.6033333333333335,2.779526666666667,5.2457,4.918455,5.144105833333333,5.144105833333333,3.447225,3.98496,3.564445,3.65114,2.8247,4.85765,3.33058,2.8912999999999998,6.14695,0.7728591666666667,5.28035,4.621695,2.4949966666666668,4.878295833333333,3.1498633333333337,1.6963833333333334,1.3384714285714288,2.1879166666666667,0.96166,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.5240114285714286,0.5240114285714286,1.1259925,0.8132469444444445,1.6205685606060607,0.99388,0.99388,1.2141241161616163,0.40644444444444444,0.3731188888888889,1.2501675,1.54627,2.566856666666667,2.3605525,6.85393,3.0431266666666663,3.844705,3.397808333333333,4.614980571428571,1.2382516666666665,4.627885,4.169505,4.57209,3.019345,1.486682,4.157511538461539,3.64225,4.387635,4.506165,2.72019,5.02565,4.419695,4.611945,1.234874,3.896115,4.683745,3.07486,2.4037266666666666,3.38602,2.4457,3.244655,3.85868,3.16715,4.797035,8.751764999999999,3.283195,5.03325,4.38901,4.351456666666667,2.5397266666666667,3.77177,1.4324571428571429,3.978785,3.332325,1.8931159999999998,1.0825975,2.85413,1.1251983333333333,0.5181786666666667,3.5161,4.320675,5.324156666666667,3.6666000000000003,2.47633,2.76158,4.67489,3.870233333333333,4.56162,2.521275,2.3119166666666664,4.358615,3.88415,3.830615,5.31425,4.316055,3.6279,4.6489,3.0942666666666665,4.291865,2.1591566666666666,4.71287,5.15945,3.320135,4.068005,2.462225,3.80203,5.4013,4.327365,5.41495,4.79541,4.95239,2.7057033333333336,4.983805,4.927565,4.720785,2.35077,1.06662125,4.00179,4.657395,4.27148,4.89326,1.612785,4.08533,2.1179,5.0607,4.56175,4.78896,2.2933,4.21717,4.79446,4.368095,2.596556666666667,4.394335,4.795815,4.998315,3.648215,2.35077,2.34869,2.88933,4.64619,3.808005,4.18783,3.520695,4.790525,2.3439,6.87247,4.61481,4.314855,5.37147604861111,4.821115,5.19865,3.4163550000000003,2.8359500000000004,2.8359500000000004,3.954575,3.69781,4.62851,2.144745,2.9064075000000003,1.00088,2.616163333333333,3.09207,2.695603333333333,3.11565,4.51033,2.865436666666667,5.43265,2.7300833333333334,4.441685,4.4602875,1.97581,4.21644,2.75257,2.705956666666667,3.95509,0.892536,5.1281,4.686715,6.1066475,4.167845,5.36925,1.27732,4.878205,6.49455,8.52462,3.13457,3.254186666666667,1.9459119999999999,0.79588,3.97878,1.08227,4.341065,4.58374,5.0836,3.289045,3.948765,1.217525714285714,3.538055,3.594555,4.40498,4.12262,3.744955,5.1963,2.3636125,4.16409,4.95732,6.03425,4.459885,3.49738,0.33020666666666665,0.33020666666666665,0.33020666666666665,0.33020666666666665,5.46175,2.774285,6.1708,3.0962433333333332,5.2017,4.700785,3.74934,2.133445,2.47431,1.4508866666666667,5.3636,2.7795533333333338,4.148175,3.68683,3.301605,1.55022,1.17765875,4.513555,2.33203,5.853511666666667,3.78427,5.8029,2.249505,1.4430233333333333,0.8002333333333334,3.26687,4.43735,3.180275,2.1984875,8.19443,4.49109,3.533735,2.31468,0.42850099999999997,3.4848,2.722035,2.324415,1.704835,3.20993,3.43915,2.327395,3.0625433333333336,2.93095,3.36228,4.391965,3.676785,4.00099,3.868855,5.48186,0.6072000000000001,4.39925,5.4884,5.0037,4.520215,3.3486999999999996,5.07325,4.385365,4.05833,5.227363333333333,5.25985,4.386205,4.28876,3.6559100000000004,4.451875,2.399645,8.76511,4.80695,3.881685,4.525005,4.952625,5.29385,3.58178,1.0390544444444445,5.890755,3.42219,4.787025,1.3239816666666666,4.30261,3.79426,7.097828333333334,4.611085,3.074965,2.5977900000000003,4.17605,1.614294,1.01428375,4.05215,6.0719,2.00186,2.3190399999999998,2.8933666666666666,4.23931,3.53861,3.71656,4.99329,1.85707,4.172785,3.7004865,3.407425,3.7107666666666668,4.187585,2.76201,2.552645,2.0658125,2.3680866666666667,2.6378166666666667,4.418865,0.5187333333333334,2.65995,4.567545,3.000405,3.5833,4.46844,5.11055,3.94644,16.790160757575755,2.494943333333333,3.847633333333333,1.484146,0.8781890909090909,0.8781890909090909,0.8781890909090909,0.8781890909090909,0.8781890909090909,4.587445,4.795325,4.777975,8.877964,2.5021,2.5021,4.516015,4.328570833333333,1.3098175,2.0326866666666668,4.16833,2.461165,2.2671575,2.1847325,3.00081,3.7876960000000004,1.874605,3.82252,0.8077714285714286,2.8329299999999997,2.8599,2.97003,1.3640366666666666,3.146406666666667,2.2420433333333336,0.922825,2.7173933333333333,2.6339866666666665,1.113788888888889,2.450023333333333,2.7761933333333335,2.073166666666667,4.4287019999999995,1.9742966666666666,2.9422633333333335,2.068255,2.8263033333333336,1.0428466666666667,2.7577033333333336,4.7905153333333335,3.5438666666666667,1.06282375,2.7596933333333333,1.3172425,2.4718,2.4088066666666665,4.657263333333333,3.0440833333333335,2.407713333333333,4.63829,2.6947200000000002,2.1067,2.84055,2.42874,1.7210866666666667,2.7971533333333336,3.296953333333333,3.13412,2.710366666666667,3.03793,2.6462600000000003,2.469065,3.697249,3.697249,2.9604,2.0414333333333334,1.86553,2.4857,5.6212599999999995,2.92583,1.9721333333333335,1.6370125,2.9819533333333332,4.416485,2.5932,1.137924,2.9203606666666664,1.6994300000000002,2.2662366666666665,2.11573,2.76439,2.1552599999999997,2.9591966666666667,1.259552,1.63194,1.53141,4.216216666666667,2.6365866666666666,3.694955,1.0217822222222221,4.060745,3.054876666666667,2.402945,1.7129439999999998,1.601555,3.041423333333333,23.63942416017316,6.77951,2.68505,3.5254250000000003,2.2505266666666666,10.294454000000002,2.9353466666666663,0.9987975,2.6450566666666666,2.31248,2.0455666666666668,2.7031500000000004,2.6399033333333333,2.4804766666666667,0.8596579999999999,3.127383333333333,2.554323333333333,2.9606033333333333,2.8512633333333333,2.61901,2.0487066666666665,2.191413333333333,2.7384533333333336,2.5463999999999998,2.127375,1.5795780000000001,5.6658816666666665,4.648945,2.429495,2.90855,2.3221333333333334,2.56515,8.095892500000001,1.89498,4.985265,2.0694325,1.8383875,7.18281,2.8872433333333336,2.7221833333333336,2.4315475,1.7560379999999998,1.4330869230769232,3.29095,3.233033333333333,4.204245,1.73919,3.8051999999999997,1.627265,1.627265,3.70817,4.36152,3.416233428571428,3.416233428571428,5.929846666666666,3.337415,0.400812,11.552087295482295,1.2785533333333332,0.9548657142857142,3.7596175,1.4095965811965812,1.7917075,6.051963333333333,3.630735,0.805710909090909,2.1384633333333336,4.966067575757576,2.5058008333333333,4.112035,1.314992857142857,5.5429,5.1799,5.1112,3.5537265,1.90917,2.4693533333333333,2.581513333333333,2.4465166666666667,2.2069199999999998,4.969906666666667,4.44243,4.42855,1.9739875,4.7851,4.07163,3.2454300000000003,2.265185,4.77865,2.4654966666666667,8.61614,6.717432499999999,1.937735,2.48006,1.80348,4.5244333333333335,4.5244333333333335,3.3369666666666666,2.9571066666666668,3.0334616666666667,5.125,9.7422675,4.0106,2.4475075,5.2188,4.21588,5.12085,1.974532,0.809615,1.3267550000000001,4.462235,4.91156,3.6225,2.801876666666667,3.775066666666667,2.2826833333333334,3.9756,4.364685,3.38778,5.36225,3.0942933333333333,3.666848,3.4196000000000004,3.247756666666667,3.3182466666666666,6.11585,2.861725,5.4228,5.08725,3.389865,3.352175,3.352175,5.7981549999999995,11.647377500000001,3.4496333333333333,6.0846425,7.063462777777778,3.511095,2.42716,3.8583,1.3218866666666667,3.632235,2.17716,3.0087733333333335,3.0116300000000003,3.3086066666666665,2.11394,2.480026666666667,2.6856566666666666,2.6351566666666666,2.98297,3.07739,3.76774,2.53862,2.863183333333333,4.042815,2.8497966666666668,2.6847266666666667,1.1048725,2.03366,2.895046666666667,2.4436233333333335,2.4540166666666665,2.4331533333333333,3.520633333333333,2.398546666666667,2.4482066666666666,2.66406,2.9580133333333336,2.7799766666666668,2.85894,2.3993166666666665,3.1460233333333334,2.86302,3.25446,2.615483333333333,2.341883333333333,2.2412433333333333,2.4283,2.62137,3.26638,3.223186666666667,2.486925,1.972395,1.972395,0.6516766666666667,1.50024,4.10654,3.24547,2.623133333333333,2.11394,3.4308666666666667,1.2511985714285714,2.66113,0.5465506666666666,3.443633333333333,3.1641100000000004,3.308425,2.89711,2.485133333333333,2.7618500000000004,3.03427,2.60099,3.3374666666666664,4.82209,1.51987,2.6069233333333335,2.3112366666666664,1.7946166666666665,2.1047766666666665,2.850153333333333,2.6687666666666665,1.699514,2.7126933333333336,2.6374633333333333,2.6272266666666666,2.6885366666666664,2.7365333333333335,2.7528966666666665,3.1892366666666665,1.4044575,2.86726,2.3087266666666664,3.4565333333333332,3.545666666666667,1.890185,1.8525733333333332,3.404733333333333,2.6628700000000003,3.24708,2.6025666666666667,3.0494733333333333,5.0412775,3.2270066666666666,2.064076666666667,1.497236,3.4107333333333334,5.91304,3.0482666666666667,3.3800333333333334,2.8063866666666666,3.12452,4.699314666666667,1.6405280000000002,1.1132555555555554,2.6943533333333334,1.7775658333333333,4.33192,2.91736,3.020653333333333,2.9011866666666664,3.1427099999999997,2.3157,3.2199299999999997,2.42291,1.637526,2.85746,3.69118,3.7818424999999998,3.21436,3.883255,1.62514,2.666505,3.60356,3.301065,2.366033333333333,3.5394666666666663,3.9036000000000004,3.8389666666666664,1.33518,5.341125,3.44112375,1.5447749999999998,3.31332,3.3099,3.0864,3.9959,1.893038,1.893038,3.258016666666667,2.956393333333333,3.207685,5.1858,4.34394,4.382498666666667,1.5153219999999998,2.7884933333333333,2.5006833333333334,4.1290375,2.944243333333333,4.589852666666667,2.6223033333333334,2.40124,2.4334333333333333,3.66299,4.462935,1.655746,3.089176666666667,2.93708,2.2818725,4.43272,1.2832183333333333,3.800935,4.44992,2.672115,3.56105,4.203945,1.709925,1.6183533333333333,2.4310075,1.0349183333333334,2.0111211904761905,1.96032,0.42558357142857145,4.045615,2.39697,4.37815,4.33789,2.908535,4.702385,3.260543333333333,3.0103766666666663,3.4204666666666665,2.45148,3.2650566666666667,2.8632666666666666,3.261816666666667,2.1379433333333333,0.6470115384615384,2.18988,0.6402735714285714,1.87686,2.4181399999999997,3.1659366666666666,3.034893333333333,1.3966033333333332,1.2551325,3.81188,4.527835,3.400775,3.514035,3.141455,1.959055,3.74905,7.506824444444445,3.635555,5.4036100000000005,1.514655,3.863485,1.811175,4.084245,3.548,1.93983,4.08634,3.174365,3.820445,4.083395,2.12527,4.052045,6.29952,5.01105,3.563375,3.01052,1.753745,1.807775,3.612145,3.23528,3.238895,3.648795,3.680235,3.317705,1.64269,3.68132,3.07955,1.7826475,4.1608925,0.9755166666666667,3.44496,1.6235025,4.040825,4.38798,3.567055,2.8596725000000003,3.692225,3.34646,1.92804,2.29665,3.7776666666666667,2.621245,5.46297,4.04668,4.395465,2.66647,2.689045,4.64885,4.300285,2.5054559999999997,2.5054559999999997,5.792825,3.5998900000000003,2.4748400000000004,2.87444,1.9877799999999999,2.65485,3.334225,3.6801625,2.5713525,3.41186,1.009594,3.578145,3.03704,4.17095,2.849965,1.5646375,1.498025,3.239135,5.912355000000001,5.39013,3.582355,1.593495,4.053725,3.303075,1.0015633333333334,3.00799,1.2650080000000001,5.3925325,1.4599650000000002,3.603525,1.9873625,1.3966033333333332,3.25163,2.857295,4.33415,7.009636666666667,4.234715,4.5300975,2.45957,2.93349,4.34912,3.91754,4.45825,4.224415,1.08199,1.67015175,1.10157875,2.388965,2.0999,4.666795,1.10157875,4.65882,2.159265,1.504825,1.504825,1.7826475,3.841945,4.307385,3.77847,1.570978,1.570978,0.9683766666666668,3.129,2.1014425,6.0177525,4.222755,3.566855,2.816216666666667,0.9952357142857142,3.609075,3.097375,4.247755,3.446885,4.0528075,4.0528075,3.30477,4.02281,1.8359275,2.70915,0.93079,1.89333,3.42069,2.182516666666667,3.3541925,3.3541925,2.86063,4.60617,4.2978,3.11319,3.52633,4.143405,2.5776566666666665,4.437214166666666,2.74273,3.726015,8.436865000000001,4.734425,2.66002,3.182225,3.25005,4.67009,3.284866,7.7821675,4.708347,4.31221,3.61258,3.774135,3.73519,4.17097,4.81457,2.484845,4.070695,6.176735833333334,2.64204,2.055002,3.28811,3.452845,3.447445,4.75223,2.2966333333333333,2.570003333333333,3.56277,2.8667625,2.6700366666666664,7.010468666666666,1.4489125,4.7947983333333335,4.7947983333333335,3.33258,3.8308091666666666,2.95526,2.4646266666666667,4.96699,4.27374,2.121293333333333,3.88794,4.084735,3.436351666666667,3.057985,2.844255,6.083466666666666,3.22782,5.22035,3.00402,4.452785,4.057805,3.8018,2.956393333333333,2.1642933333333336,2.60363,4.10048,2.91323,3.16405,3.05706,6.421333333333333,2.3591,1.8106275,3.2987141666666666,2.3735833333333334,3.886555,2.876915,1.0015633333333334,3.31802,4.17923,3.93474,5.9934675,3.15201,2.99069,3.008316666666667,3.008316666666667,3.9259683333333335,4.264895,3.648665,2.1347,6.1012425,2.1080825,4.51397,3.534505,8.1347,2.6972233333333335,1.4353533333333335,3.69279,4.50126,0.65394125,4.003765,3.455075,2.99902,3.07252,4.576425,2.153826666666667,2.421235,8.922855,3.50848,3.162835,1.4599650000000002,3.67411,2.74524,2.2704325,3.982085,5.2256374999999995,1.6604575,1.1790016666666667,1.1537566666666665,4.18699,3.924785,3.48456,3.4532049999999996,3.4532049999999996,1.64269,2.349605,3.0756894444444445,0.8500844444444444,3.00546,1.0443175,1.62514,3.28017,3.41618,2.588595,2.46227,2.6580966666666668,4.205975,3.649785,3.08504,2.860765,2.69039,4.18048,6.630205,4.08055,0.9021375,2.5830835,8.80347,4.60812,4.02445,1.12776,5.248163333333334,1.4043566666666667,3.4567725,3.4567725,3.63481,8.509494166666666,0.83484,4.533565,4.44311,2.3000233333333333,4.0564350000000005,3.905565,2.1832425,9.365392666666667,1.7658475,2.4261833333333334,3.24435,1.6869633333333331,4.205401416666667,3.105385,3.452505,3.514226,3.067655,3.42341,0.98718,7.03171,3.853385,3.785025,3.81341,1.8815475,2.8596725000000003,4.066763333333333,3.72265,0.6384038461538462,4.297085,4.306065,4.808465,2.043775,1.425166,4.210305,4.214035,8.26772,0.7225007692307692,1.0008275,1.0008275,1.8184233333333333,1.2439799999999999,1.338316,1.9184466666666669,4.701045,1.18989,0.9040171428571429,3.9574775000000004,3.47185,1.40309,3.374125,4.26843,3.652775,0.681396,1.97901,9.607009999999999,3.1589,3.197415,2.92677,1.747155,2.3801533333333333,2.56367,4.32259,4.210905,3.72385,0.90738,1.474198,0.915639,4.545155,4.275205,4.070895,0.8500844444444444,1.6880359999999999,4.06192,2.2735625,4.849746666666666,1.101585,4.673235,0.7310249999999999,0.7310249999999999,0.7310249999999999,9.5489,3.994765,1.0443175,3.984475,4.373195,2.70287,3.38588,4.281666666666666,2.5542,1.9337772222222223,2.30369,0.681396,1.6829593333333333,0.5622822222222221,0.80001,1.4086666666666667,4.143515,3.69825,2.07069,7.2288250000000005,4.910549166666667,0.6296,5.8305,4.97782,3.5002,4.410245,7.925689,3.6276166666666665,4.910549166666667,4.54413525,2.2771399999999997,4.20173,3.65248,6.94984,3.501265,0.42850099999999997,1.425402,4.173245,1.73977,1.1790016666666667,3.766785,2.3759633333333334,1.65253,3.14327,1.651002,4.4352,4.4313,4.0097,4.790495,6.60164,2.808795,3.71149,1.2650080000000001,2.2762675,3.718425,3.202945,2.121293333333333,4.11958,2.306705,4.64987,2.92453,2.366235,3.3832775,1.6890560000000001,3.412765,0.8500844444444444,2.22394525,1.1537566666666665,1.74333,3.638455,1.4489125,1.4086666666666667,2.2064125,3.32729,7.84785,0.90738,1.12776,1.313726,3.5669,3.912045,1.313726,3.97581,2.2762675,0.65394125,0.8500844444444444,1.8184233333333333,1.2650080000000001,0.42558357142857145,1.614058,4.23645,2.3000233333333333,1.363815,2.93675,1.33518,1.7658475,2.742868333333333,2.30369,4.16639,2.742868333333333,1.0015633333333334,2.792126,2.2267125,0.09926886363636363,0.09926886363636363,0.09926886363636363,0.09926886363636363,0.09926886363636363,3.3732666666666664,2.725103333333333,2.70051,2.8445199999999997,4.843565,3.941555,1.7129439999999998,3.766585,3.646845,2.23205,4.79949625,2.675365,2.35613,2.46083,2.704425,4.493925,8.144416666666666,2.327935,1.9651033333333334,3.0611035714285713,0.9017685714285715,1.403795,2.4264666666666668,2.05198,1.42986,2.761426666666667,2.246586666666667,2.6953899999999997,2.7375866666666666,2.5681566666666664,3.76103,3.51849,2.5793666666666666,1.285632,3.58508,3.77621,1.5675233333333332,1.33812,1.33812,1.33812,3.38212,2.6659333333333333,1.10769,2.2720333333333333,1.2812885714285716,4.401715,1.4747199999999998,6.363566666666667,3.32852,2.6725966666666667,3.1672080000000005,3.1672080000000005,5.260199999999999,3.02836,4.55311,4.869585,2.1723975,3.1308233333333333 -GSM1946768,0.0,1.9778125,1.9778125,1.6044033333333332,4.034045,6.19165,2.4889476315789474,1.6486533333333335,7.255682965686274,4.36544,3.22566,2.83962,3.313665,3.48269,4.47073,1.933106,1.4377739999999999,5.1207,2.483103333333333,2.2671225,4.793405,5.344711666666666,3.83799,2.06155,1.749852,3.950815,4.622765,4.49486,0.64144,1.5638269444444444,1.9221294444444446,2.3566225,1.611695,1.09273,0.7059425,3.0457799999999997,1.52981,1.7487375,1.1161375,2.12453,1.0904875,1.090675,1.10051,1.43773,0.9522600000000001,0.9280419999999999,0.763586,1.1933857142857143,1.59419,1.8464960000000001,1.536332,2.08222,1.6764299999999999,18.507088666666665,0.37953933333333334,0.823768,1.1136979999999999,1.851416,1.481518,1.7528199999999998,1.0681185714285715,1.0681185714285715,1.0681185714285715,1.1618533333333334,0.982204,4.75442875,1.1060725,2.4852825,1.9893525,2.478815,0.993126,2.2399275,2.3031125,2.159305,1.4650225,2.2740925,1.58527,1.6928875,2.4601833333333336,3.81847,4.88938,5.4073,1.9147699999999999,4.51973,4.514706666666667,4.22668,4.06895,1.10145,7.63633,0.600025,0.600025,2.2607125,1.0887914285714286,16.26905,4.911355,5.36785,5.75815,4.372475,4.321135,5.3399,0.4876927777777778,2.226235,1.59818,2.3099925,4.44299,3.82602,1.5328375,3.2608266666666665,3.779166666666667,3.019296666666667,3.522133333333333,3.526105,5.0391,2.6959235,4.59962,2.91393,0.7382727272727273,1.778814,2.63135,5.1795,4.30653,0.556395625,3.496555,3.72143,0.83150125,4.46646,1.7297731168831167,2.180105,2.8098,2.07696,3.788815,5.8243,3.368285,2.6791666666666667,3.4771666666666667,3.0208433333333335,4.074845,3.1551533333333333,5.7285,3.510455,4.3515,3.25112,2.362675,3.6912,2.56015,6.828706666666667,3.517745,3.400285,6.05435,3.260295,5.1028,0.8005444444444445,9.67424,3.60408,1.8503100000000001,2.0800783333333333,3.4026666666666667,2.39602,4.65648,5.57905,2.10079,5.340636666666667,2.84624,4.713175,2.10079,2.7577599999999998,4.52795,5.372300833333334,3.73404,8.978883333333334,3.767575,5.27675,3.03172,4.977935,4.49245,1.7456166666666666,8.27997,4.388855,3.94754,4.054525,3.687645,3.3675,2.30243,6.09188,2.379565,3.91528,3.99798,5.1635,5.09195,3.553995,1.2974833333333333,2.750135,3.04699,1.96374,1.96374,5.942827761904762,2.99217,1.8955233333333332,4.22474,4.722465,2.69089,1.5200516666666666,0.8521488888888888,6.03365,2.97135,6.9322,3.21129,3.90717,3.813335,3.292085,3.92206,3.415675,4.00284,4.123545,5.76175,2.816585,3.666625,9.206623333333333,4.784175,3.6485,3.0328199999999996,2.8298799999999997,4.038633333333333,4.2309275,1.8405975,2.70292,2.0786366666666667,1.841974,1.6964033333333333,2.6365766666666666,1.698405,1.922505,2.9486933333333334,2.6459233333333336,2.3994466666666665,2.7071966666666665,4.514706666666667,3.51942,3.23812,3.434125,4.653255,1.19631,2.369375,2.877178571428571,2.1416399999999998,2.6078266666666665,2.169496666666667,3.3901,1.8107099999999998,1.34694,2.71731,0.662906,1.6432966666666668,0.5059955555555555,0.5059955555555555,1.4517233333333335,3.0404933333333335,2.13762,1.4188833333333333,1.51001,0.3251476923076923,2.722906666666667,0.662906,1.2049100000000001,0.18859702702702702,1.44339,2.0327375,3.666866666666667,2.183683333333333,2.30716,2.5690933333333335,2.20926,2.446966666666667,2.5523866666666666,2.401053333333333,2.23185,2.69593,1.9263133333333335,2.754055,4.12819,0.66425,1.8813966666666666,2.53879,1.90783,3.3551266666666666,1.5501939999999998,2.5642533333333333,2.2246433333333333,4.24786,1.9192766666666667,7.111429523809524,1.6451428571428572,3.10975,2.139665,2.2478175,3.3412666666666664,1.98406,1.9235925,3.97224,2.6173466666666667,2.106025,3.642945,4.0338,4.4052,3.72568,2.353515,3.244645,4.40155,3.786125,3.90919,4.312385,4.30396,3.05984,4.468265,3.467445,0.88280875,5.0642,1.2595699999999999,4.95637,3.898655,5.7228580000000004,3.72646,4.35037,0.96065,2.159405,3.48516,4.04856,0.8119642857142857,1.2040776495726497,2.076465476190476,3.335962285714286,5.41461,5.6709879999999995,2.19119,3.09208,5.13765,0.33252642857142856,3.413395,2.3272,0.99350375,4.40418,1.98487,11.46295,1.30875,1.4714975,2.00539,2.437145,1.9267380263157894,4.484158026315789,0.3169805263157895,1.6590333333333334,2.9335833333333334,0.9781375,3.561733333333333,0.9916171428571429,5.18705,3.944285,2.2103333333333333,6.224,5.72815,3.0479,1.1173342857142858,4.334043333333333,4.97859,4.42195,0.8758272727272728,7.7919133333333335,2.8487633333333338,4.24292,2.7102533333333336,2.5822133333333332,4.53891,2.3724933333333333,2.5122666666666666,2.13745,2.4388133333333335,2.99871,3.0607666666666664,0.3354225,3.980135,3.70417,3.8301,3.87289,4.53256,6.047021,3.94389,1.631565,5.66385,4.391365,4.33418,4.100095,1.39979,2.610793333333333,3.1034133333333336,2.5546666666666664,16.366464999999998,3.44929,3.94656,4.55949,5.84925,2.798535,5.183538472222223,1.7062075,0.7702944444444444,2.827225,3.30184,3.487745,3.755745,6.415603333333333,2.8046066666666665,2.295225,2.14378,3.4354666666666667,4.642525,2.2744675,0.3599689732142857,3.432102608695652,1.9249925,1.16649625,0.5520702775621118,0.7441715819099379,0.3599689732142857,0.3599689732142857,0.3599689732142857,1.16136,1.327345,0.8360225,1.4311175,4.2852049999999995,0.21968823529411766,11.292984377705627,3.695066666666667,2.78241,4.108025,3.86693,4.054155,2.19483,4.723325,3.9829776666666667,4.008565,3.87666,0.6846053846153846,3.4403666666666664,4.127137692307692,0.6658014285714285,3.52363,2.8127133333333334,4.456455,0.46166090909090907,1.805245,4.42671,3.377905,1.834695,1.91052,1.6469966666666667,3.2963533333333337,3.99723,3.06152,2.9062566666666663,5.7257,5.7352,4.71589,3.4543666666666666,3.44321,6.656125,3.7804,4.929345,0.4165071428571429,3.0618133333333333,3.9246,1.9988966666666668,2.611735,2.90576,5.280031666666667,0.6036916666666666,2.855725,4.391325,4.472415,1.0454557142857144,5.17025,2.680305,4.845485,3.0799333333333334,4.17953,3.53724,4.308105,1.1530833333333332,3.374115,2.7600266666666666,4.542355,4.25645,4.4223,5.7926,4.464995,2.684195,5.36871,2.44368,3.077275,2.9573033333333334,2.611943333333333,2.712563333333333,2.24831,1.871068,1.5269366666666666,2.20845,0.8185485714285715,1.6255733333333333,2.3278666666666665,2.0447966666666666,3.02324,3.3137166666666666,2.7325700000000004,0.9244433333333334,5.3328,3.5651333333333333,5.308302083333333,2.5805220833333333,3.247476666666667,3.17219,1.8614833333333334,1.8614833333333334,2.476812857142857,2.476812857142857,3.5194889285714286,0.5381414285714285,1.6797566666666668,2.0671433333333336,3.6410666666666667,2.2028069047619048,2.2028069047619048,2.2028069047619048,7.3441680357142864,4.3533952380952385,0.9691363636363637,2.42818,4.805990833333334,2.42218,5.0243,3.200575,2.274585,3.988325,3.0031033333333332,3.0451566666666667,1.21809875,1.9364933333333332,3.4568666666666665,2.3870766666666667,2.613593333333333,5.69365,4.179033333333334,3.803733333333333,5.124573333333333,1.9872500000000002,2.64861,3.034103333333333,0.9623522222222223,2.20891,4.597526,7.9595825,1.4811825,2.901325,4.886205,1.744416,1.706495,1.706495,0.9823575,4.75691,7.40721,4.01966,5.097881,4.475745,1.7960333333333331,3.868165,3.100305,4.545305,5.069663333333333,0.3633273684210526,2.818755,2.591975,3.9991,3.893385,1.7876480000000001,1.9471725,2.4855875,4.279045,4.021095,3.016475,2.46474,1.3848319999999998,6.77984,5.67985,5.5812,3.502655,5.50395,4.39462,4.498445,4.25086,3.7487775,2.00739,1.1032314285714286,2.746855,4.0083,3.75995,5.7561675,5.7710349999999995,2.38464,1.7134,2.6832999999999996,2.7522133333333336,3.0804066666666667,0.6831171428571429,2.13093,3.732705,1.160995,4.95721,3.19036,6.0996475000000006,1.4114104545454547,1.4114104545454547,3.8619,3.764785,3.771925,5.69165,2.73081,2.34048,4.003475,3.021005,2.142945,3.4163333333333337,2.5371866666666665,4.159855,3.409675,3.388605,4.792215,1.1077177777777778,2.6682,4.224615,4.60181,3.24917,2.5176233333333333,1.943785,0.8559333333333333,0.8559333333333333,0.8559333333333333,0.8559333333333333,1.64164,3.5936250000000003,3.5936250000000003,1.7855033333333334,6.776806666666667,3.23153,4.080635,2.9941766666666667,2.608375,4.69572,4.07388,4.859815,5.19165,1.6645725,3.954855,3.64586,2.48818,3.346705,3.446535,2.425845,4.007735,1.80589,5.05505,1.69501,3.4706275,3.058535,1.78561,1.1717383333333333,2.79006,4.059655,1.2594319999999999,0.8616277777777778,3.5334,1.3412425,4.852781333333334,4.437925,1.3528085714285714,3.554635,0.7717022222222222,2.623533333333333,2.6118633333333334,2.342173333333333,2.58419,3.767825,2.8504441666666667,4.503285,5.50305,4.378535,4.63675,2.307045,1.2877028571428573,3.83532,5.0451,1.397095,1.397095,4.141645,0.3187106666666667,2.590106666666667,0.3187106666666667,0.3187106666666667,0.3187106666666667,0.3187106666666667,5.56535,2.72509,2.9641,3.58526,3.117293333333333,4.366165,2.6549766666666668,0.9630425,0.9630425,0.9019516666666667,0.9019516666666667,3.82361,1.723855,4.81983,1.5300039285714284,1.5300039285714284,5.57382,0.5049271428571428,2.92255,7.481065,4.6778,3.19384,3.83723,0.9318725,2.115405,1.957515,4.48841,4.466245,4.309885,3.86025,1.3281828571428573,2.72419,2.042665,7.60394,1.72766,4.48392,4.818045,2.726665,3.915895,6.26677,7.645885,4.0522,4.19725,4.392615,2.61365,3.13367,2.317405,2.351775,1.78828,3.852855,3.59673,5.615363333333334,6.5497,4.0086,1.0858833333333333,2.172255,3.71536,3.94642,2.1561275,4.18268,3.27071,4.7014000000000005,1.7396666666666667,4.074566666666667,1.6087666666666667,6.469999999999999,2.93123,2.3992999999999998,2.32796,2.275885,3.6430000000000002,3.1871733333333334,3.422266666666667,2.8995366666666667,3.27186,2.40338,3.674825,3.13362,3.168135,0.38558400000000004,2.90453,3.84539,2.677375,5.68405,4.856735,4.548695,6.800006,5.00425,2.113226666666667,4.4039,5.25105,1.634195,4.57179,5.7688,5.3017,4.884765,3.17575,5.55875,4.94055,3.764215,5.467298,7.914225,4.01829,1.1846583333333334,1.4795033333333334,2.674705,1.791256,4.51143,4.00246,4.819665,2.473813333333333,2.4778733333333336,2.7491533333333336,2.46721,2.2555166666666664,0.947288888888889,0.5105358823529411,4.053405,4.051075,3.618233333333333,4.167835,3.175255,3.447566666666667,5.270215,3.0414966666666667,0.5676488235294117,2.831615,5.28095,1.710135,1.6583839999999999,3.80758,3.21546,2.50241,3.8517333333333332,3.9684,2.7343666666666664,2.2771933333333334,2.411426666666667,2.60234,2.719855,4.223588333333333,5.1919325,6.685798916666666,1.473102,5.012,3.2813395833333336,5.154225916666666,2.509333333333333,2.91318,2.235675,2.117856666666667,1.573725,1.573725,2.62978,2.396943333333333,2.7490133333333335,4.070185,1.694722,2.146545,1.87444,0.449033125,3.60075,0.5576875,0.86991125,3.42383,3.884465,3.78458,1.68585,4.492765,3.0581533333333333,0.8087571428571428,4.375125,3.87788,3.177213333333333,2.443655,4.970955,0.27065241379310345,2.1544715,3.218585,1.4097825,3.718835,6.81885,2.39094,1.3486366666666667,3.832405,3.845035,2.7142966666666664,2.7142966666666664,3.440735,2.556935,4.66426,5.306808333333334,4.89235,0.9814366666666666,2.8088033333333335,2.57236,4.425955,5.142,6.03865,4.924105,4.421866666666666,3.8377,3.8891666666666667,3.5531333333333333,4.120033333333333,3.0691433333333333,3.053243333333333,0.6230714285714286,2.393865,2.3884725,3.554465,3.12875,3.3989,0.7433725,2.67696,4.059301,4.572945,5.8187,5.22435,1.73579,1.73579,0.828917,2.913405,4.61279,3.60619,4.146087857142858,3.13223,4.91218,0.5940263636363636,3.12414,3.72774,4.506465,3.8936441666666664,0.7641814285714286,3.054105,3.96211,5.48705,3.79799,4.9313,2.6526,4.130465,1.40516,0.9858471428571428,2.7086133333333335,5.2895,4.453415,3.107815,1.5063733333333333,3.934935,2.5891,2.4497125,2.7942386666666668,3.0235966666666667,4.523703333333334,3.1611466666666668,1.9400020000000002,3.4756,1.432274404761905,2.9592333333333336,2.51904,2.4648625,2.86374,3.003133333333333,2.269083333333333,2.8235433333333333,3.649305,3.0806166666666663,3.723235,2.5163066666666665,1.84856,4.0441883333333335,3.1852533333333333,2.4705666666666666,3.723235,2.0883433333333334,0.7885427272727273,2.4138975,1.0171855555555556,2.2668075,1.5621275,0.9646727272727272,1.7157925,1.804245,2.70031975,2.700475,4.806375,1.5301125,4.86785,3.1578033333333333,1.60995,2.43477,2.5096233333333333,2.0253200000000002,2.631883333333333,2.973356666666667,2.018945681818182,1.4959275,1.768786,3.491633333333333,2.35153,2.8985455555555557,3.0972399999999998,3.0869366666666664,3.6681000000000004,2.1739133333333336,4.0347333333333335,3.464733333333333,3.8604000000000003,2.641103333333333,3.547166666666667,3.7775,1.9396033333333333,10.47919,4.065195,4.284495,3.353215,2.75988,2.004055,3.977925,1.6650079999999998,4.075465,4.465605,1.409646,2.67858,1.1524050000000001,2.5517,1.6330333333333333,2.398146666666667,4.862583333333333,3.2681,3.688545,4.990925,0.75848875,1.528242,1.0151,3.613255,10.753405,3.6436333333333333,6.7743,2.0492275,5.19545,4.45334,2.513225,4.86925,0.29036588235294114,0.8266957142857143,4.442485,4.36804,7.438245,2.100145,4.23522,5.82335,4.651925,4.743525,3.483825,4.175645,3.35341,5.63176,3.70518,3.08457,3.1115,2.2106766666666666,1.9316700000000002,1.4260981666666666,2.508626666666667,4.144035,4.74968,1.589302,9.24,1.9825266666666668,2.9309683333333334,1.03391,1.03391,7.1671625,2.96587,2.536575,2.3077775,2.6675533333333337,2.19316,1.0454133333333333,3.6064741666666666,2.57754,0.6437299999999999,1.7232266666666665,3.370102,3.370102,1.11171,2.544583333333333,2.33651,2.589171666666667,1.3995475,1.8006366666666667,4.743795333333334,2.688833333333333,2.65245,1.21202,1.21202,4.1883,5.9413,4.607655,3.203895,3.79896,6.09199,3.07871,2.92278,2.931903333333333,4.00572,1.1753733333333334,3.2875599999999996,2.56465,3.80306,2.11008,4.87743,3.561535,4.34635,3.649645,5.64086,0.9624122222222221,1.93265,2.04565,3.65875,4.239395,3.747325,3.998755,3.26835,2.15713,1.7851125,4.17646,3.324545,3.329875,2.493063333333333,0.8373,3.352905,4.141785,4.755645,1.2319,2.811503333333333,2.33461,1.8963333333333334,1.7208467647058823,1.7208467647058823,1.1362349999999999,1.9725000000000001,1.102582857142857,1.3820999999999999,4.344025,4.462205,0.46329190476190474,3.50756,3.4275333333333333,3.821705,5.49945,0.42020549999999995,9.203165,5.35465,2.649215,3.88713,4.63481,5.31866,5.0911,6.938695,0.7088145454545455,2.62123,5.4426,2.8634033333333337,1.7270475,1.986326,4.616135,5.29918625,2.476010714285714,3.5155666666666665,3.15323,1.78343,4.59144,10.50175,8.163497916666667,3.9576666666666664,4.39075,3.067406666666667,3.188705,3.890525,1.953614,3.15916,3.74024,4.513715,5.0363,5.15399,7.025966666666667,2.2414566666666667,4.094335,4.623435,5.2557,4.952815,7.638631666666667,3.9117375,5.90935,3.465325,2.921845,2.960975,5.95495,3.577755,4.96282,2.128865,3.0779433333333333,3.418475,5.85985,4.081795,3.99876,1.45649,0.92103875,2.5916,0.5800540000000001,4.28724,3.617075,3.49871,2.87595,2.14735,2.9245,2.637975,2.9786840000000003,1.8436340000000002,3.096335,2.7927,2.3597175,2.624425,3.777486,1.2794416666666668,2.775189166666667,5.00245,3.8723333333333336,1.194915,2.70487,3.616389166666667,3.6441480000000004,1.5418875,5.75385,5.50705,1.9718600000000002,2.992706666666667,30.926788158764438,3.464366666666667,1.74155,4.0254,1.62066,2.65192,2.8762933333333334,3.5779333333333336,2.001675,2.8375,1.9136325,4.104565,3.5187666666666666,2.49321,1.50012,2.25218,2.83195,0.3800104545454545,1.162755,2.92658,1.76939,3.383725,1.5418875,2.0987,25.361529888888885,5.1147,4.00948,3.54577,2.65636,2.540225,2.640163333333333,2.38745,3.43554,5.086495,5.1713,1.56549,1.745874,2.14662,2.29849,3.9268375,5.1637,4.80297,4.37483,0.17909617021276594,4.959415,4.78154,3.851675,8.75486,1.0518275,1.0518275,2.931096666666667,2.926915,5.59475,1.8788255555555557,1.0278766666666668,4.40468,1.914535,4.0938,3.83035,3.30967,4.100195,3.942475,4.97542,2.83883,0.7176488888888889,3.222405,2.179260833333333,4.260825,7.868510000000001,4.20972,1.89785,1.89785,7.075442499999999,4.70408,4.23651,5.00715,2.02154,5.158054166666667,1.46229,1.40546,3.0680300000000003,2.0513333333333335,3.00832,2.7339266666666666,3.8131,4.5400975,3.931435,5.4088,2.3524125,2.588425,1.8840575,2.7726,2.494015,2.0162175,2.15894,4.846180833333333,1.8424,3.426565238095238,2.3854433333333334,3.2982033333333334,2.677146666666667,1.9122866666666667,1.448157142857143,0.982791,2.5426699999999998,3.889866666666667,0.6690769999999999,4.647225,1.74094,5.883491666666666,1.97554,1.48053,1.4778625,1.4787366666666666,5.616892222222222,1.8843,3.0912666666666664,3.6301,1.2201725,1.81551,5.03962,3.1500766666666666,1.8775633333333335,3.5655666666666668,2.897126666666667,2.8206900000000004,1.2947153571428571,0.27780166666666667,0.27780166666666667,0.27780166666666667,0.27780166666666667,0.27780166666666667,3.67826,2.7319933333333335,2.61125,3.651533333333333,1.4226866666666667,2.72269,3.3870666666666662,2.3199433333333332,3.470825,3.00058,1.7152966666666665,2.928183333333333,3.22146,2.0520125,2.0043725,3.6588,2.721413333333333,3.780366666666667,5.1509,2.6299566666666667,2.6667400000000003,2.6241,10.90927,4.601295,4.45719,5.0383,4.162325,2.879963333333333,5.03405,4.132265,4.038615,5.357934166666666,3.803355,2.84465,2.1289075,3.30977,4.856042,3.562255,16.931825714285715,1.1166875,4.36575,0.8637844444444445,1.3100875,2.881975,4.57014,4.257955,4.37618,1.6145583333333333,2.360125,4.242955,1.9963766666666667,4.33958,3.0887632142857147,2.5753633333333332,0.637145,2.7855633333333336,4.891015,2.5381,2.3040775,2.164005,19.973850833333334,1.391472,1.4098875,2.5980266666666667,0.2930123076923077,1.82823,2.8669933333333333,1.94417,3.0532766666666666,2.6078,7.548021666666667,1.8817375,2.57335,2.2450425,2.1036,1.6361916666666667,3.345133333333333,3.0716,3.91565,3.1249866666666666,2.0209775,2.6998375,3.1518380555555554,5.03785,0.4032166666666666,3.8317,3.1111866666666668,3.00963,2.00855,3.5912550000000003,3.5677,1.4669366666666666,2.3117733333333335,2.26679,1.4859933333333333,1.7095433333333334,3.44832,3.30436,0.7649316666666667,3.45416,4.741095,4.05267,2.294346,2.294346,3.0441800000000003,4.29281,3.13775,3.3399,2.2328125,0.8688590909090909,4.579515,3.639545,6.0957,3.76002,2.387974,2.387974,1.220015,3.66808,5.26065,4.1871,4.218845,3.01539,2.3218133333333335,4.72946,3.27934,4.25229,2.7248633333333334,2.1700233333333334,4.084464,3.1428966666666667,2.6541033333333335,1.96599,3.24924,2.634725,1.7064933333333334,3.715025,3.01379,4.27203,3.5615666666666663,5.01925,4.246235,6.45284675,4.062625,2.19858,4.427695,2.748125,7.2324850000000005,2.5718799999999997,1.2539833333333334,4.66588,3.8416,4.93917,0.5812135714285714,0.8264866666666667,3.738015,3.63278,1.9565813636363636,4.44128,2.677415,3.0552,9.45653,2.07682,1.265882,3.726545,2.615555,3.395295,4.996795,6.522923333333334,3.1301433333333337,2.087336666666667,2.956773333333333,1.8166900000000001,3.294966666666667,8.594032044334975,0.8899542857142857,1.0179325,4.64372,0.42388733333333334,1.6172725,1.975755,2.891625,3.13275,2.97355,4.343905,2.227235,13.085955000000002,5.021635,2.6488,2.6488,4.167465,0.811175,4.916483333333334,4.09074,4.2351,5.337296666666667,3.49503,5.23675,1.3772966666666668,2.679375,2.679185,2.758955,3.06568,2.65991,3.05481,3.507295,3.659225,3.070695,2.945195,4.14867,4.26596,4.28555,2.8775166666666667,3.3542666666666663,4.822729166666667,4.23263,17.88083380952381,11.396511547619047,3.1911064285714286,0.6777983333333334,1.482357142857143,4.391825,3.531405,3.0946805769230767,2.21257,0.8368988888888889,0.6629666666666666,0.6494257142857143,2.05695,1.5610680000000001,5.164086666666667,3.2489733333333333,0.7114990909090909,3.443375,2.40224,1.5723825,1.753896,6.770926666666667,1.5261900000000002,4.410635,2.83593,2.95725,2.34924,2.65569,2.57065,0.7463936363636364,2.8978,3.1290533333333332,3.9251813333333336,3.08817,4.832425000000001,3.715945,3.416765,2.57415,3.48019,6.5401825,2.041915,2.4741825,2.4906275,1.5868375,2.4726975,1.96646,2.6707,0.917352,1.35689,1.0626625,2.83901,4.10539,6.1274,5.21185,3.01034,2.297015,2.74295,3.3317433333333333,7.190908333333334,1.1690233333333333,0.361488125,3.13844,2.02504,1.49919,3.4143360000000005,1.241618,1.5655786666666667,3.3704766666666663,2.6587620000000003,1.21621,1.8909066666666667,3.8341216666666664,3.548485,4.508285,3.80552,1.82171,4.751195,3.797275,0.7642623076923076,4.73112,3.906165,4.6155375,3.305236666666667,2.393655,1.31304,1.16708,3.49264,2.67912,3.293385,3.886075,2.61148,2.7951633333333334,3.26475,3.663625,4.464125,2.40231,2.48303,4.34583,5.7155,0.59217875,4.677375,1.75998,3.494615,4.1247,2.121055,3.09833,2.173125,2.00695,2.571195,2.3517375,1.6990166666666668,4.476785,3.67863,1.30144,7.11022,0.99933,3.62927,1.6433666666666669,4.505115,3.87312,3.19706,3.124375,3.96418,8.56574,2.97404,3.66242,3.93532,3.64482,1.6847325,8.00234,3.49525,3.881805,1.396785,4.1506,3.157525,0.984995,1.987678,3.93083,2.13231,4.07931,5.0685775,4.184005,4.67793,2.1971125,5.1676,3.954145,3.6064666666666665,2.40184,1.533732,4.307425,6.03485,4.37934,4.563675,3.087605,2.1265125,3.9353,3.346065,1.163697142857143,4.192725,4.7914650000000005,3.77358,2.77357,3.638355,0.67836,0.67836,4.23813,3.95945,3.69052,2.188495,3.674975,6.26745,0.8425739999999999,3.981825,4.70344,4.717415,4.7671,5.2586,1.826455,3.06794,2.1125975,4.41434,0.68451875,4.05205,4.227455,2.745815,2.9378100000000003,4.31812,2.33258,3.23809,60.01506402380952,3.10967,2.640546666666667,1.67383,3.2652,3.93312,0.83277375,0.9715175,2.139715,2.139715,1.300684,3.322155,2.166845,3.7226195000000004,7.1926,2.9063233333333334,1.2736928571428572,1.3024866666666666,2.67736,4.0175775,0.8399599999999999,1.893875,1.364712,1.9451875,4.161045,4.05793,3.160625,20.781628833333333,3.1518,3.92695,3.282405,2.2655499999999997,2.858585,3.31507,2.560125,5.13409,1.4271,4.18236,3.308275242063492,5.8627352777777775,1.92039,2.68122,1.891635,4.408115,2.387446666666667,2.1674825,2.197756666666667,3.5019205555555555,3.36619,3.39227,3.77504,4.410225,2.449625,2.553175,3.045735,2.782395,2.9143805555555558,2.2146,2.13108,3.545415,1.1983516666666667,4.11017,4.67681,2.55486,4.858325,4.989225,4.82752,2.0974933333333334,2.44424,2.7086,2.74961,4.095285,3.428945,4.550575,0.7473357142857143,3.892438666666667,2.99769,3.99136,2.3145875,1.7739660000000002,4.265216666666666,1.119911111111111,3.098975,4.238175,1.097888,3.581295,3.37347,4.553905,6.3074125,2.223225,2.84056,2.603493333333333,3.8098333333333336,3.03788,2.673052666666667,3.6759,2.5000833333333334,2.4860366666666667,1.3703533333333333,2.04326,2.04326,1.9844966666666668,2.1205266666666667,1.7076766666666667,2.5676,3.821065,5.71475,4.273855,1.642295,4.246685,3.89648,3.494295,4.16516,1.9679575,1.96187,4.65856,1.933295,4.411656666666667,3.659465,3.565345,2.4380966666666666,3.7236249999999997,3.215525,3.04938,3.504595,0.14560714285714285,2.330763333333333,7.6552299999999995,1.520524,3.48282,2.938725,0.9996114285714286,1.1847166666666666,1.905895,3.895,2.962455,7.14278,3.57776,3.797655,2.921735,2.724205,3.432125,3.428365,4.14119,3.34577,2.88489,5.49255,3.686715,4.145125,2.4784966666666666,1.9548425,3.458095,4.680255,2.628,2.791815,2.18118,2.703345,5.16755,3.71149,2.548285,4.66015,5.15535,2.73017,4.09323,3.944835,3.63251,4.481625,3.40402,3.37247,4.85743,4.645395,4.9951,5.1621,4.33299,5.21973,4.532275,4.108565,1.334982,6.6174,2.43233,4.51588,4.036815,4.023175,3.0599433333333335,1.9680833333333334,2.30879,2.54285,1.06972,3.4887333333333337,3.8918666666666666,3.17407,2.00378,3.69653,4.105975,2.70486,0.5625841666666667,4.44314,4.597605,5.1028,4.847765,3.70148,4.670605,4.861195,5.2608,1.3855555555555557,0.9650461538461539,2.88046,5.2368,5.8127,0.496086875,2.960015,2.497673333333333,3.274445,4.44411,4.0206333333333335,1.9678025,5.3954,4.130875,4.362885,3.088025,6.4614,4.93599,6.8583325,0.5349108333333333,4.17343,0.835958,2.443585,4.136233333333333,3.2214766666666663,1.2825366666666667,2.3437799999999998,4.28587,3.51153,4.36546,1.5576366666666666,2.01797,3.78272,4.45992,4.138155,3.554285,1.661456,1.1822570000000001,6.12585,2.2161425,7.850625,4.563675,3.617965,2.1424925,1.5955775,4.270095,4.693505,1.7830199999999998,2.39415,2.4859625,2.330763333333333,6.697240000000001,3.072906666666667,2.866186666666667,3.5756066666666664,4.137615,2.032826666666667,3.398815,6.8804525,4.369485,5.02235,0.49593454545454546,3.263515,3.981405,4.59365,3.8535,4.605165,2.99679,2.752635,3.282345,2.89617,3.5780975,2.04652,5.676185,4.93398,4.97175,3.96881,3.40849,3.3348133333333334,2.345195,1.3231675,0.9091925,2.84018,2.475405,1.093,2.6273766666666667,4.95007,4.671605,3.647835,4.09559,16.858537976190476,3.990945,4.53093,3.937835,0.7058741666666667,4.95475,4.726395,4.08558,4.978335,5.1361,2.66435,3.636755,3.309245,1.50929,3.172745,4.73488,3.407166666666667,1.508202,3.72018,5.00345,4.0235,4.88127,4.833345,5.33935,4.50806,2.702123333333333,4.134225,4.068655,2.607465,3.055493333333333,3.0390766666666664,1.6124020833333332,4.6417,2.727662857142857,2.120906666666667,3.90654,2.027675,4.418305,4.0441883333333335,2.1604,2.712605,4.68203,3.72372,4.37794,4.587025,4.88865,4.644841,2.97026,5.45355,2.881125,3.67598,4.06901,1.5554679999999999,4.422175,1.0608216666666668,4.401875,2.96745,0.9523528571428572,3.8238,2.07834,6.574695,2.48249980952381,2.48249980952381,2.48249980952381,0.6603383333333334,1.1820016666666666,1.877085,3.48544,5.27888,3.493333333333333,1.900435,2.176595,1.6441866666666665,3.860165,2.398035,0.3983638461538461,1.66118,2.138265,2.841445,1.92163,2.53781,2.35949,2.08993,3.93197,3.107666666666667,3.73168,2.90271,1.87782,6.63922,1.931175,4.39401,3.87077,6.160243333333333,1.6109466666666667,3.595385,3.78209,3.776615,4.23792,2.745985,1.822145,3.877375,5.733276666666667,1.982955,3.61515,3.10665,1.9077625,4.71563,4.38946,2.5164233333333335,2.22027,3.617055,5.414893571428571,5.96855,3.106015,2.3831,2.767495,2.989995,2.82766,4.59045,1.3057825,2.746295,4.72241,0.779595,3.15451,3.9853,3.754235,3.064205,2.38272,3.078525,2.058055,4.62722,7.8718683333333335,4.377585,3.27932,3.363885,1.0103425,4.39082,2.149935,4.284855,5.63192,3.95108,4.309035,11.373315000000002,4.757625,4.01202,1.486405,0.6932524999999999,2.779705,3.855175,3.480705,3.635025,2.2969166666666667,2.2979566666666664,2.1131266666666666,1.1391866666666666,1.1391866666666666,1.94196,2.4016733333333335,2.2024133333333333,2.3359833333333335,2.63388,2.9083433333333333,2.3862733333333335,2.9372633333333336,1.4393099999999999,2.5291433333333333,2.1633066666666667,1.9915366666666667,1.51619,2.479833333333333,0.7045750000000001,9.666505416666666,0.7045750000000001,2.9055666666666666,2.0731800000000002,1.8561166666666666,4.434055,4.28902,3.946295,4.3623,2.1789366666666665,2.97593,3.2087719999999997,2.2043233333333334,3.0868033333333336,2.8287366666666665,2.6109666666666667,2.4684266666666668,1.6750066666666665,5.68815,6.164074952380952,3.4358,3.5909333333333335,3.3110666666666666,2.7158433333333334,2.328866666666667,1.09273,3.6676333333333333,3.610466666666667,4.030245,6.21505,4.2672,2.8523633333333334,3.4603333333333333,2.988136666666667,4.189197777777777,4.22931,2.6156,3.50684,3.2723566666666666,3.08419,4.764285,3.5284999999999997,3.480475,5.533065,2.106873333333333,2.5748933333333333,1.56958,1.4180400000000002,5.005883333333333,3.4281966666666666,2.43859,2.0783133333333335,2.0729333333333333,4.41862,3.69676,2.698265,3.3901,3.10858,3.5286000000000004,3.4858,3.594333333333333,3.1632366666666667,0.53967625,3.7629,2.467843333333333,2.6299266666666665,3.663705,4.432125,4.06209,5.2946,2.677645,3.849305,1.168445,3.017023333333333,3.017023333333333,4.15778,3.40202,3.76581,3.671395,1.873835,3.779565,3.868835,1.2405414285714287,3.683155166666667,3.0571261904761906,2.1652633333333333,0.35416,4.183215,3.055345,6.743995,3.03396,6.26615,3.336765,3.81507,3.8328,1.680655,2.930925,3.94951,3.323905,3.5064333333333333,3.1531033333333336,5.515029999999999,2.072945,0.99913125,1.8698366666666668,1.5800333333333334,5.61565,2.36092,2.4547733333333333,1.5255375,4.35675,3.91662,3.869325,0.685547,4.02193,3.95205,2.54243,2.347043333333333,2.5868800000000003,3.221824444444444,3.9107466666666664,1.5432033333333333,0.6398842105263158,0.7945571428571429,3.570266666666667,3.89014,5.928285,4.78329,4.37314,5.29525,1.3657428571428571,4.1247,2.21731,0.98782125,5.3999,6.3629,2.308435,4.811995,4.136,6.5688933333333335,3.9497666666666666,6.5857833333333335,3.7153,2.5780970833333337,5.9686,10.223444993589744,2.55882,0.649397,3.320535,4.054985,2.132235,6.25315,3.756445,3.62146,2.681243333333333,2.681243333333333,6.1061,3.0905,3.987165,4.854885,3.662638666666667,2.341204,1.10080875,4.916915,2.68539,5.28890625,3.5622,3.91557,2.68296,1.9373825,4.31185,5.05465,3.6405333333333334,3.99315,4.344935,27.43842857142857,1.7893775,2.64485,2.2944725,1.7180166666666665,2.6350533333333335,1.0594285714285714,2.793066666666667,3.0365933333333337,3.4776000000000002,3.0024866666666665,0.618766923076923,3.105233333333333,3.53481,2.89517,3.33197,3.547045,5.7782425,4.71954,3.7249,3.509805,3.7607850000000003,3.824655,3.6822,1.709105,1.0011083333333333,1.4311366666666665,2.28668,1.5073166666666669,2.7665966666666666,2.469726666666667,2.51552,2.4414233333333333,2.70308,2.048995,1.83097,2.880895,4.352245,3.619215,4.093445,1.475932,3.4308333333333336,2.46889,3.606525,2.1492299999999998,2.60208,2.361955,1.4552466666666666,3.958165,6.61294,2.780115,3.67209,4.00309,2.5911,3.365594166666667,3.4791000000000003,3.32169,4.52622,0.3403523680823681,0.3403523680823681,4.85856,5.19225,3.067585,2.93226,5.41035,4.243735,0.6510800000000001,4.98842,4.66036,3.70856,6.4137,4.655935,7.57233,14.272391666666667,12.69422282051282,4.35647,4.34701,2.4410766666666666,0.5692461538461538,2.5623033333333334,4.615055,1.47621,4.71552,3.5839666666666665,2.8037766666666664,2.10239,2.060026666666667,4.995255,4.908395,9.024363214285714,5.2387,4.05743,7.684123825757576,3.26769,3.600433333333333,1.5319725,5.464952500000001,1.9010525,2.4477066666666665,2.7445299999999997,0.22687,3.02392,3.364145,4.6838025,0.785068,1.2012233333333333,4.004905,0.5894510000000001,0.5894510000000001,2.98753375,3.5307999999999997,3.214026666666667,3.93354,4.245095,5.79535,3.837105,4.10643,2.818115,3.191803333333333,2.52014,0.9440416666666667,2.98584,2.864715,3.022785,7.417859999999999,3.0032,9.757025,3.197675,5.4993,3.074655,2.249945,2.56755,2.748125,1.786775,2.31343,1.7922125,3.380515,2.47099,3.9749225,2.829675,4.0253499999999995,4.0253499999999995,2.8246783333333334,2.8246783333333334,8.747912166666666,2.4931766666666664,0.8205310000000001,2.6301099999999997,2.4838366666666665,2.5349166666666667,3.9749225,1.917606,1.9340160000000002,1.5361319999999998,4.494075,3.73872,1.7219125,4.522815,4.183825,5.695261111111111,6.405841666666666,2.2280466666666667,3.965285,5.97188,3.631885,3.038705,1.9599399999999998,3.201375,3.288362727272727,4.14246,5.107620833333334,7.2395499999999995,3.431825,2.98777,1.16524,4.463115,4.029619333333333,3.574065,3.6913408333333333,4.2309,2.428135,2.43046,6.008335000000001,2.70508,1.1962139999999999,5.33926,3.72577,2.4064633333333334,5.124,2.4064633333333334,2.84741,3.33773,4.788705,1.037747142857143,3.902992222222222,4.51925,3.573465,1.3222833333333333,1.6875475,3.57098,3.736995,2.42507,6.378991666666667,4.037455,4.04878,4.16149,4.3375575,1.2739725,3.859655,2.454125,3.68528,3.64352,3.8585,4.772785,3.09246,3.99833,4.986425,1.9863296666666668,1.8601725,3.066073333333333,3.7776,3.6514666666666664,2.8133233333333334,3.4598,3.163816666666667,5.78925,3.41687,3.67844,2.870245,1.85925,3.5081,2.0775833333333336,3.105035,3.197165,2.894585,0.68451875,2.12828,1.7898933333333333,3.319405,1.7858720000000001,3.5289729999999997,4.541095,1.226514,3.0997275,4.493375,0.8330460000000001,1.3165633333333333,3.32948,3.88773,3.284805,1.94126,1.6876466666666667,3.487415,2.5649508333333335,1.7152900000000002,2.888565,1.887065,1.188496,1.37928,6.465484999999999,3.233695,2.29451,2.368415,2.3697675,3.88283,0.88904375,0.3446885714285714,0.7659185714285714,4.8282,1.7330040000000002,4.73045,2.05841,1.6155434285714287,2.7940825714285715,1.1785391428571428,1.0519134285714287,0.744782,0.5503671428571428,2.5390775000000003,6.48195,3.07885,3.54979,0.359675,3.804155,17.88256357142857,2.79288,7.144497098484848,1.07757,1.07757,1.07757,1.07757,5.875155,4.41789,4.829065,2.2374466666666666,3.16459,4.336905,5.4017,3.940655,3.551275,4.19979,3.909225,3.55874,3.7592966666666667,4.12351,5.0352,4.163925,4.718635,3.34042,4.22084,2.703326666666667,3.203285,3.38649,3.69907,3.72895,4.239105,3.090996666666667,2.536675,2.4916633333333333,3.923075,1.1573821428571427,3.652065,2.3469933333333333,3.2189113333333332,4.184005,4.492885,3.121955,2.932955,4.413735,3.2079,3.175975,5.3712,4.805315,3.31886,3.38913,1.7119240000000002,1.7119240000000002,1.5194625,4.80422,3.82149,5.484605,5.1618,3.5710466666666663,6.61705,4.936215,2.1729225,9.35285,5.47765,6.4110375,4.574415,2.8328233333333332,2.8904,0.2563165517241379,0.84416875,3.6584719999999997,3.52684,4.696955,3.00643,5.843188333333333,4.86753,0.5675842857142858,2.75854,0.540169,1.7523983333333333,3.48375,2.524725,3.67138,3.78691,3.233605,3.43943,3.417065,3.687405,3.47207,3.649255,3.48484,2.319585,1.7523983333333333,2.86474,2.2422625,3.723755,2.282075,4.01657,3.602355,1.6847325,4.365325,3.39839,1.2859416666666668,5.06815,4.705685,4.303585,2.7065333333333332,3.0041333333333333,4.115565,1.9286166666666666,1.378674,2.73063,2.5337733333333334,2.59009,1.9761466666666667,4.673735,3.216265,4.979285833333334,3.8126671428571424,4.88114,3.868705,1.6528459999999998,5.26635,4.290285,5.63605,4.198225,6.97061,1.680195,4.79525,3.544715,3.293935,1.80764,1.7177866666666668,3.948755,4.43822,2.9720566666666666,2.6327599999999998,3.4797900000000004,3.4797900000000004,2.6762833333333336,3.16368,3.26987,3.95698,3.62634,0.7425476923076922,3.15082,4.51598,5.090226944444444,2.90017,2.999525,1.74533,2.846615,3.394675,2.249265,4.54911,2.930755,4.87103,1.8326866666666666,1.0198363636363637,6.23474,3.63185,3.0116533333333333,3.039006666666667,1.8105,30.289316166666666,3.69804,3.221125,5.9187,4.590075,0.8449,6.6952300000000005,1.8280225,5.5807,1.3775416666666667,4.418375,5.088053333333333,3.722345,3.25233,2.123785,3.0771033333333335,4.98807,2.0081825,2.769066666666667,3.61467,2.538685,2.637215,6.0173,2.20046,6.5019,1.09134875,4.421555,3.5348,4.01909,5.26785,2.96464,2.39218,4.124275,4.52475,3.7301599999999997,3.7301599999999997,6.21185,2.304265,4.320505,6.753111666666667,3.32326,4.13094,3.229155,5.2755,3.504535,4.144625,1.3634375,2.358975,4.352675,4.34376,6.17295,4.343595,2.305345,9.732353333333332,2.611595,3.70356,1.7437,3.58555,2.4203466666666666,2.6187133333333334,1.9648995833333331,1.1908066666666668,2.5348566666666668,0.9433871428571429,1.04923,1.04923,1.04923,1.8355133333333333,0.53694625,3.88936,1.1243833333333333,2.0753233333333334,0.870065,1.8360766666666668,2.683536666666667,2.05074,0.73521875,1.6535766666666667,1.47922,2.441413333333333,1.645206,1.645206,1.55848,1.6467366666666667,0.9531599999999999,1.6895300000000002,1.5734466666666667,1.1056733333333333,2.819315,2.099635,6.037,1.36836,5.8399,17.63409925,6.61808,3.45332,3.69345,3.4156333333333335,2.8010966666666666,2.6741566666666667,3.0059299999999998,0.7223625,0.9967729999999999,0.9967729999999999,0.66776875,2.3425133333333332,3.622365,3.432545,1.511182,4.83392,3.991345,2.515965,3.82077,5.22795,4.02871,4.122745,3.6057333333333332,3.18087,3.56259,5.7526,3.087673333333333,4.86444,0.514306,0.514306,2.48319,2.7395,4.84924,3.642695,3.903025,4.83001,7.687799999999999,7.656090000000001,3.715895,2.311865,4.355515,3.411565,2.5284766666666667,2.39078,3.448985,1.2663566666666666,3.615745,2.4897,1.623165,3.5783,3.70103,2.0559425,5.107620833333334,1.5467975,3.486133333333333,3.21754,1.0301371428571429,3.6154666666666664,2.7526499999999996,4.38714,1.1213533333333332,1.715705,2.29113,2.0680175,1.7152025,2.56045,1.9069625,1.9245725,4.20964,4.37559,2.445175,1.76429,1.48628,3.6683333333333334,2.031006666666667,2.56305,4.722085,7.3132,2.878945833333333,2.98686,3.51628,3.596795,2.397165,5.0184,3.91402,3.1177,1.3849375,4.76749,2.30711,3.270016666666667,2.52755,3.63779,5.1522,5.7408,2.1985066666666664,2.6931,2.6557066666666667,3.5246999999999997,1.9789833333333335,1.523234,5.52525,3.3966666666666665,2.2084945454545455,3.2661466666666663,3.0978966666666667,2.42169,3.159883333333333,3.219113333333333,3.4846333333333335,5.3853,4.218135,2.9613899999999997,4.82944,3.54268,2.332485,3.52485,3.833365,4.348005,6.0675825,1.832394,3.942565,2.43034,2.51024,3.660185,0.5484125,2.378815,2.294525,3.315375,2.7153,2.206665,2.76858,0.572918,2.7100066666666667,4.51475,2.4763275,4.293895,2.4293333333333336,3.992865,1.9535725,4.582245,4.49175,2.08944,2.752825,6.9966,3.81154,4.465235,4.941185,7.216730795454545,4.07454,4.22549,2.1278425,4.410485,2.872345,1.8776666666666666,1.9451975,2.0614066666666666,1.0005857142857144,2.598806666666667,2.3652133333333336,2.642063333333333,3.2187333333333332,1.7696359999999998,3.30103,1.9035166666666665,4.24143,4.9154,1.03523375,1.8261533333333333,2.5273666666666665,2.8591200000000003,1.9705066666666669,1.1039666666666668,5.482855000000001,2.142315,2.6583966666666665,2.6266833333333333,2.46922,2.7461933333333337,3.15362,2.23579,2.6537333333333333,2.16507,4.04199,3.399405,4.000235,3.242703333333333,3.0910766666666665,0.683664,1.8181233333333333,2.119025,1.9433533333333333,2.5700933333333333,1.15703,2.717473333333333,2.9789733333333337,3.51427,1.9323466666666667,3.34191,3.16745,5.0009,3.17883,0.6056891666666667,2.1117,2.75731,3.3443,0.6985463636363636,2.7334766666666668,3.4472000000000005,3.0581633333333333,2.9846033333333337,3.1996833333333337,3.75383,3.7764666666666664,3.0693533333333334,2.10732,5.7062,5.087,5.4121,5.56895,5.73615,1.8024966666666666,3.30616,3.7457,3.280056666666667,3.0575500000000004,2.5973266666666666,4.208433333333333,3.498333333333333,2.976103333333333,13.928345,4.422345,1.15042,2.7030666666666665,1.5061820000000001,3.3069166666666665,3.103783333333333,2.303803333333333,5.747865000000001,6.4722035,2.094743333333333,0.832401,4.152985,3.4246,3.086215,4.86297,5.5083,5.78905,4.869265,3.5315,1.9526675,6.500105,1.16524,6.432102499999999,4.559565,2.2590566666666665,3.780405,7.259378333333333,5.79115,2.18692,1.3993783333333332,2.139665,6.80668,1.5418875,2.8974433333333334,2.5718383333333334,4.190141944444445,5.8244,4.4218,6.4089,3.52643,5.19185,3.852205,8.66424,4.87938,5.6929,2.31719,2.6928,10.964788333333335,3.488345,2.304885,2.4167666666666667,1.5465900000000001,2.6812566666666666,3.8744333333333336,0.68199125,1.1027419999999999,1.0865785714285714,3.03498,7.1062,3.0433786666666665,1.3438666666666668,4.434555,4.151305,0.5834349999999999,4.532015,4.25106,5.01715,3.38626,3.19693,2.7392833333333333,4.18794,9.998785000000002,1.835955,3.93884,3.961455,4.289055,3.693605,0.8270575,3.6296999999999997,4.1029333333333335,1.7826233333333334,2.42436,2.3091733333333333,2.566516666666667,2.0357133333333333,2.1525866666666666,2.175515,6.17168,4.927495,3.457655,4.918971666666667,1.7530766666666666,2.3574575,4.67081,4.5348,4.66246,4.062,4.508085,4.772155,1.7119240000000002,3.81326,7.843856666666667,1.3161416666666665,1.6879566666666665,2.46057,2.30878,2.9169533333333333,4.7416685,0.7945571428571429,2.424895,3.33571,6.60395,4.48156,2.17068,2.8788199999999997,1.9285225,0.5355025,2.466795,2.889725,7.76908,4.33724,4.27294,0.9072100000000001,4.809233333333333,9.098009583333333,10.529663333333334,3.325025,1.2185275,3.628285,3.471625,2.6023433333333332,5.095884666666667,4.643185,3.913935,1.9133025,3.8251666666666666,2.2881133333333334,2.6033399999999998,0.7747827272727273,0.374784,2.498845,3.53145,2.0924868333333335,3.40319,3.033853333333333,3.774785,5.5313,1.501496,2.9662733333333335,2.1120349999999997,2.1120349999999997,2.302425,3.143385,6.6618,2.636303333333333,2.5533433333333333,3.4227333333333334,3.529866666666667,4.539205,4.634485,4.10425,4.119765,4.246575,4.251595,7.1834,7.8306466666666665,1.967115,2.2363566666666665,3.0077266666666667,0.8973650000000001,0.6989774999999999,4.368835,2.292215,5.1148,2.9540933333333332,3.0574666666666666,1.71539,1.5113025,4.07599,4.26373,4.36932,2.062133333333333,1.3346099999999999,2.7227933333333336,2.0019666666666667,2.544853333333333,1.1326214285714287,1.1326214285714287,2.7439033333333334,5.1061,3.03376,2.99621,3.34577,1.967905,19.79760528787879,3.7393,5.605365,4.49373,3.88588,3.703125,3.63922,5.71935,6.076772500000001,0.90335,0.90335,0.90335,2.785353333333333,1.7312857142857143,3.3240466666666664,3.99532,3.804045,3.173595,4.23442,4.575305,0.7971333333333334,1.99784,2.1256633333333332,5.9313210000000005,3.302591,4.043836,4.973335,2.121055,2.01646,2.315656666666667,0.51536875,0.794292,1.99774,2.14033,2.88757,13.51023,2.5432,5.319,0.7566785714285714,9.16968,5.77155,3.75495,4.27251,2.70905,5.4063,2.70905,2.846548,3.321945,3.79238,3.38707,4.10044,4.23814,3.42232,6.34685,6.569996000000001,1.7778266666666667,2.364,2.77435,26.30268589189189,1.4947620000000001,6.28775,3.8587620000000005,3.893345,4.404965,4.3453,2.66002,2.856545,2.403995,6.81715,7.12265,4.48596,4.621265,4.19846,1.9053825,1.92481,4.212975,0.28180076923076924,0.28180076923076924,0.28180076923076924,0.28180076923076924,4.211035,3.145545,0.9595166666666667,1.81085,1.1676666666666666,4.56356,2.480026666666667,2.38492,7.045344999999999,3.094996666666667,0.1775248275862069,20.483599833333333,4.6700816666666665,1.76681,1.3070352857142857,2.1403600000000003,1.974822,2.1069725,4.670275,4.233675,3.50427,4.44196,2.1982733333333333,7.5764375,2.737715,1.96548,4.20181,6.04385,8.569906666666666,4.397045,0.3017560975609756,3.559745,4.20066,2.7776366666666665,1.9654275,2.9602166666666663,1.5875016666666666,1.5875016666666666,4.142325,5.6866275,11.649923333333334,9.366025,0.6472833333333333,2.52078,3.703665,3.19696,4.996975,3.247795,1.29911,1.29911,3.083385,3.70215,2.75815,3.508165,4.563755,5.3914,6.49863,2.30536,4.749125,4.346655,2.62248,2.9440766666666662,3.001523333333333,4.891875,4.130425,5.6841,3.90078,4.425135,3.66741,4.26099,4.2526,5.5072,2.5809533333333334,3.128773333333333,1.105156,4.242355,4.129035,3.9588,1.6663160000000001,1.7667333333333335,3.3712,2.8154266666666667,2.22963,4.288961666666666,1.6075416666666669,1.778,2.761696666666667,2.300213333333333,2.207473333333333,1.6846866666666667,4.2535,3.2252466666666666,3.967966666666667,3.1866166666666667,2.09611,2.6300766666666666,1.91516,3.093075,2.41225,38.24112025,2.1602905454545454,2.1602905454545454,2.4890133333333333,2.5084833333333334,2.0565633333333335,1.6622700000000001,2.8712166666666668,1.7639166666666668,0.8357230769230769,4.9483,6.705285,4.409385,4.06005,5.43035,1.9173,4.28914,1.727078,5.4396,5.1114,5.61545,4.173505,1.709105,3.999145,4.162735,4.499645,4.35944,5.31105,4.003415,3.4319666666666664,2.7633799999999997,2.033375,1.74776,4.482445,2.5250566666666665,3.80879,3.80879,2.2324366666666666,1.5124199999999999,2.88597,2.5056333333333334,2.83329,5.15543,2.5557366666666668,1.1866566666666667,1.1866566666666667,2.3605733333333334,1.96295,2.6638933333333332,2.6799766666666667,2.4474533333333333,2.4265066666666666,2.31797,2.2628755000000003,3.0232483571428572,1.564940357142857,0.7603728571428572,62.83871540773809,2.52468,3.4575333333333336,2.309012,0.865994,3.6830246666666664,1.606332,1.606332,3.3989,3.0148466666666667,0.8045675,3.19856,5.274436666666666,3.548633333333333,2.3135133333333333,2.885673333333333,2.1300266666666667,2.6249839999999995,0.288523125,3.060983333333333,0.767334,2.52554,1.260194,1.260194,3.0503733333333334,2.11664,2.7706933333333335,1.6889066666666668,3.8623666666666665,1.6889066666666668,2.1331933333333333,2.606996666666667,3.02138,1.315184,1.315184,3.0212466666666664,1.4354933333333333,3.1579766666666664,2.15246,4.670475,3.88797,11.87823125,7.11336,3.04084,2.634545,4.04055,5.45375,5.5243,2.824655,3.860015,3.76317,2.261136666666667,3.908505,3.316316666666667,2.6887266666666663,4.8309,2.2134133333333335,1.0583257142857143,3.678161666666666,2.8466166666666664,2.96056,0.7914271428571429,2.583105,3.45572,4.04885,4.278465,6.68735,1.9963766666666667,1.926668,4.181615,4.68532,2.362055,2.52977,1.9459,2.058829333333333,0.840876,5.1165,4.71536,3.80425,3.86515,3.162803333333333,5.43185,5.16415,2.72194,1.7239033333333333,0.5215113333333333,14.701179666666668,0.5048581818181819,0.5048581818181819,0.5048581818181819,3.0453233333333336,3.885666666666667,0.5048581818181819,6.69356,4.21141,0.733321,0.733321,3.469,3.226485,2.98539,4.58862,5.04535,4.354374,2.3769750000000003,4.897628,3.32781,3.516904821428571,4.61506,2.85167975,2.46535,2.417155,2.781925,1.6223175,3.2647508333333333,2.9532866666666666,2.2939025,2.0541675,1.8679575,1.8143333333333331,1.607795,2.733625,1.0796177777777778,2.4531975,0.5956785714285714,5.10475,1.77445,0.6887833333333333,2.002125,7.898106666666667,2.591495,2.0772955,3.3627225000000003,7.31471,2.46718,4.2083,3.08692,6.04342,3.359785,3.61401,3.99985,3.166725,3.06033,4.253441666666666,1.1528185714285715,3.92711,2.4183833333333333,2.5184533333333334,2.73723,2.333005,2.15754,1.2706375,5.7637,0.9646727272727272,5.037,5.53165,5.2205,5.24695,3.7756333333333334,2.3872233333333335,2.2082,2.91146,3.0645466666666668,2.574935,3.748666666666667,2.7807,4.692325,1.9366040000000002,40.15960968253968,4.661615,2.4369466666666666,2.2688466666666667,2.81314,1.5731666666666666,6.016665,3.61577,2.476366666666667,3.5536999999999996,2.2388600000000003,1.7060325,5.25085,0.79,4.414509285714286,1.3081814285714286,3.4430666666666667,3.2943700000000002,2.637163333333333,1.379,4.449160666666666,1.67381,1.67381,2.3187666666666664,2.7937458333333334,3.3255733333333333,3.3608333333333333,1.4502300000000001,2.823726666666667,2.67281,6.270251833333334,2.802653333333333,4.040376666666667,1.4400266666666666,1.4091333333333333,2.9986866666666665,0.9116139999999999,5.213408333333334,3.4288333333333334,2.891716666666667,3.508233333333333,2.723406666666667,2.711983333333333,3.3147800000000003,1.7473666666666665,2.3697675,2.4801766666666665,3.5285666666666664,2.395706666666667,3.6282666666666668,2.0010933333333334,0.596854,9.988563333333332,2.716583333333333,5.37465,5.1898,2.8046100000000003,3.1076,1.25181,2.2256233333333335,2.294605,1.25181,4.244605,0.466509375,0.466509375,1.173575,1.173575,0.9260525,0.9260525,2.238365,2.921355,2.257915,1.514525,1.807335,3.69953,2.941825,4.608175,5.56675,1.8591539999999998,4.31648,2.54141,4.594057692307692,1.6325725,1.6325725,2.184455,1.657648,3.7170324999999997,2.0112,4.19342,1.6145583333333333,2.585375,0.5552715384615385,1.0810042857142856,2.0739975,2.228035,1.799465,1.334035,4.489025,4.356815,1.99245,2.4009666666666667,1.31519,0.7038025,2.1622666666666666,3.415795,2.6431566666666666,4.504915,5.04,4.85247,3.81907,6.42596,1.512465,5.895985,1.757255,4.534905,4.794345,5.547734,3.4021000000000003,2.275585,1.7759975,1.9716339999999999,1.9716339999999999,2.46295,2.46295,4.25397,5.8053,0.911064,3.794185,3.097005,3.372755,2.4429866666666666,1.397045,2.827833333333333,4.230525,4.02132,1.8025600000000002,6.72585,5.2809,1.96314,1.4367625,3.978375,3.990053333333333,3.540375,3.63698,3.824875,0.6641635714285714,3.8696333333333333,3.5240333333333336,2.7100766666666662,2.8699366666666664,2.1792666666666665,3.7532333333333336,1.5240142857142858,1.5240142857142858,1.5240142857142858,3.0803499999999997,3.0229366666666664,3.32742,3.3805767976190477,2.3577525,1.256522857142857,3.3271333333333337,3.2123899999999996,1.3652057142857144,2.7237733333333334,2.6603,1.2463585714285714,2.7384866666666667,2.8609566666666666,2.9129566666666666,2.5358666666666667,2.5207,2.002765,3.1368466666666666,4.677535333333333,4.17688,1.0132999999999999,1.435558,0.5438080000000001,3.5193,8.765889999999999,2.8869133333333337,3.186605,2.5604299999999998,4.2088125,1.8692925,7.677936666666667,6.8067366666666675,2.62257,2.435701714285714,3.974255,4.49423,1.548324,1.281122,1.447584,2.050155,10.5759,2.5245333333333333,3.1348833333333332,2.982736666666667,3.80967,2.1155266666666668,1.09102625,4.77098,1.0967816666666665,3.2881534615384616,4.627525,3.26823,3.293286666666667,3.063815,4.950275,1.1724533333333333,1.960375,1.8781133333333333,1.8781133333333333,3.81854,5.7862,8.3110125,4.329125,3.454935,4.80651,1.8353075,2.3530491666666666,4.58829,3.37699,3.93184,1.5430766666666667,2.87031,3.44595,3.78138,2.45221,3.9815,3.639925,4.00821,4.054735,3.81591,3.780625,5.54075,3.238906666666667,2.477603333333333,4.330525,2.97264,3.830725,1.93588,2.446295,2.47056,6.20615,2.46477,3.2458945454545454,1.6791125,2.52399,3.29544,2.1799475,2.074035,0.9138383333333334,0.9138383333333334,1.7954475,3.5469563636363635,4.087835,2.890356666666667,4.479455,2.9750766666666664,2.4758405714285714,0.98086,3.199085,1.4736425,4.02049,4.143385,0.92764875,1.8655875,3.910665,2.9918449999999996,1.6202625,1.6078933333333334,5.13387,1.0357933333333333,2.739085,3.277925,2.77854,2.428405,2.825958,2.0501,1.0151975,2.87277,2.98924,3.40347,1.5151266666666665,1.5230499999999998,1.770195,4.39429,2.18111,4.457505,4.56297,4.51175,6.37105,5.24785,4.055235,6.08394,3.9868176190476188,0.8150363636363637,2.83919,4.433035,4.252925,0.49786818181818177,0.8494360000000001,2.969135,4.201405,4.67688,4.277535,3.325708214285714,2.775815,4.54391,1.7552119999999998,2.4146,4.51843,4.197105,3.56267,2.88777,3.66205,4.7238,2.891145,5.03958,0.919481,3.2569,2.796855,4.46145,4.502675,4.472765,2.24686,2.61173,2.893155,1.9021299999999999,5.10085,3.425835,1.3804785714285714,2.75029,3.9459325,1.43608,5.915150000000001,1.903434,2.573566666666667,13.900394959739092,2.7458333333333336,1.46391,1.5833583333333332,2.0921,5.449526666666666,1.661456,4.080940666666667,0.6338576923076923,3.278586666666667,4.205545,7.684915,2.4412533333333335,2.873473333333333,2.873473333333333,4.54477,4.34854,3.50683,3.32814,4.778655,5.0808,2.463485,3.2393033333333334,4.60182,1.235685,2.60892,4.325295,3.849845,3.39401,2.3527466666666665,3.69386,3.43255,6.289901666666667,6.23355,0.666071,3.755865,3.334935,3.922966666666667,4.250305,3.906775,3.867325,1.4210720000000001,5.09585,2.35589,2.76401,4.22621,4.387965,4.51004,0.8534815,2.6628866666666666,9.400527666666667,1.5076850000000002,2.146141948051948,2.31337,3.89973,3.551145,3.25426,0.6562963636363637,2.3173825,1.73605,2.20025,4.197675,5.327706,2.684606,8.723265,2.256273333333333,2.66554,1.08529,4.484415,5.21455,2.12496,5.357934166666666,3.248235,3.190455,5.45625,4.250245,4.86311,2.24278,1.4743175,1.4743175,2.77708,3.242545,4.9041,1.50044,6.179251666666667,1.3304533333333333,3.62944,1.3252433333333333,8.692097500000001,4.351795,2.652165,4.2151,3.724565,3.805685,1.1580883333333334,2.0272475,3.5850666666666666,3.0314,3.5637000000000003,3.9026666666666667,3.782605,2.83526,3.17051,3.35551,1.61406,2.5494533333333336,1.9580399999999998,2.9269533333333335,1.8750566666666666,5.071323333333334,3.2508866666666667,1.8393300000000001,2.7167333333333334,3.246905,3.079225,6.41285,5.91895,3.012305,3.632485,2.8885,3.101975,2.805795,1.29851,1.000384,6.619625,2.96338,5.8501,4.90927,6.60105,2.91535,2.8016133333333335,6.65995,2.501635,0.39894,5.7431,3.25407,3.85966,3.4093999999999998,1.32364,4.028595,1.0514860000000001,4.47076,0.9011275,1.3224833333333332,2.77573,2.3875033333333335,2.813425714285714,3.593165,4.67461,5.898343333333333,5.898343333333333,4.962915,4.962915,4.684985,3.0648766666666667,4.320755,0.98097625,6.24485,3.612245,3.7272,3.763815,3.86228,5.05965,1.96234,5.1653,3.1316420000000003,2.83665,4.26225,2.70756,4.718405,5.2293,3.625885,3.452,4.980505,3.936975,6.1532,3.1001,2.693566666666667,6.10025,4.22891,2.8723166666666664,5.9541699999999995,1.61764,2.183675,4.88594,4.54759,5.1431,3.80094,1.9920475,1.9920475,12.945889511904761,12.2435,4.90617,3.27747,2.992855641025641,4.446975,4.612055,2.5890400000000002,3.2849733333333333,3.050135,4.0323,3.635033333333333,5.04615,2.00169,8.487756666666666,2.389915,2.1683775,5.62515,2.317575,4.78456,4.300395,4.79997,0.7475477777777777,3.16299,3.52621,0.92943,2.923305,4.303991666666667,1.4812480000000001,1.9849500000000002,2.8792666666666666,2.727233333333333,2.2913566666666667,3.0609466666666667,2.32211,0.45643214285714284,2.35581,2.6971566666666664,2.801553333333333,3.221743333333333,1.471922,2.901073333333333,7.0238499999999995,4.246785,2.2477466666666666,2.1248833333333335,2.60227,3.667325,2.49,3.5602085,18.426502499999998,5.3478,3.3828509999999996,4.594105,3.77489,5.4574533333333335,1.5636433333333333,5.98685,1.4908733333333333,5.03925,3.449065,5.52165,4.937945,0.9793475263157895,6.7983,2.356475,4.74952,2.88933,4.122865,3.59741,2.8421,2.233076666666667,1.557188,1.9409575,4.45605,4.700385,2.01295,1.556255,3.2903800000000003,3.9318766666666667,3.0520066666666668,6.30635,2.0533975,3.31684,4.821485,3.80675,3.63748,2.839765,3.89729,4.694515,3.89673,2.8015399999999997,2.8015399999999997,6.038928333333334,1.99118,2.575553333333333,3.81343,1.793044,7.313755,3.66442,4.505116666666667,4.3349,3.823085,1.744416,4.23938,5.7694,4.04714,2.04557,3.317795,3.32263,1.1211175,1.3685225,1.2969833333333334,0.66634,1.6157866666666667,0.8925333333333333,4.55187,0.8983111111111111,2.5565933333333333,1.6283333333333332,1.7553425,0.967075,1.969155,2.4037225,1.4513,2.9452466666666663,2.66872,5.038495,1.5479616666666667,2.678425,3.0568233333333334,2.975846666666667,2.3762366666666668,4.4302600000000005,4.361305,4.786225833333333,19.354013583333334,2.4155533333333334,2.179625,0.7030307692307692,0.629747,4.347475,1.9909839999999999,4.15552,4.94078,6.9685975,3.64246,3.52044,4.009525,3.1603033333333332,3.4065333333333334,3.213283333333333,4.166533333333333,3.4512666666666667,6.5828,3.593565,0.933429,1.13988875,5.0717,2.9037100000000002,2.61712,2.11421,2.25496,5.46935,4.90696,2.186455,2.2267033333333335,3.246525,4.99477,8.454683333333334,5.100789791666667,4.30973,3.839695,5.21605,4.739615,4.325025,4.966785,3.862545,5.18455,1.81306,5.64445,1.5676,5.1294,0.74502,4.781535,5.4301,6.14215,6.1892,4.48136,5.94685,5.80775,6.291895,1.9839333333333335,1.5856571428571429,5.588,3.83069,6.4585566666666665,5.2052,5.4078725,5.28745,6.2887,1.3528085714285714,4.420005,5.4755,4.221466666666667,4.91784,5.68565,2.661825,3.80247,2.842285,4.625705,1.0105833333333334,1.6023233333333333,1.356868,4.731055,4.048475,3.307505,1.9698200000000001,2.924963333333333,1.6539233333333332,2.18993,0.3972158333333333,3.4576333333333333,1.6331440000000002,2.3092566666666667,3.0722966666666665,2.4733566666666666,3.1005133333333332,2.59415,2.44502,10.393488666666666,4.0232,1.7472783333333333,3.48097,0.9547727272727272,4.5128812499999995,1.176585,1.7499075,1.959185,1.07866125,5.8038723333333335,1.1331155555555557,1.1331155555555557,1.1331155555555557,2.8710766666666667,1.928468,5.1685,3.258775,1.374585,1.501275,2.4588225,1.3300125,2.08456,5.286229166666667,0.7818688888888888,4.16625,3.964785,3.205303333333333,1.0235557142857143,2.142769,1.9295975,1.9295975,1.48261,3.6753833333333334,4.76419,5.63555,5.83645,4.32287,5.41485,2.885956666666667,2.0177075,2.883415,5.185,3.243985,4.059425,1.04499375,3.9379785416666664,5.3547,1.8833175,3.889455,3.08909,4.62424,4.75116,2.409855,7.046,6.37925,3.93338,4.315575,4.260965,3.225695,7.8138,4.005975,5.728748333333334,3.45681,2.7626266666666663,5.2839,2.61589,5.9659,4.31201,2.719526666666667,3.25948,3.981235,1.4030166666666668,10.615929999999999,3.91511,3.15231,15.346364067460318,4.09891,1.7286299999999999,2.79767,1.95014,2.2568,3.449665,2.5929175,2.78974,2.8074,3.035415,4.10851,6.055275,1.25645,2.0396875,4.300165,4.55182,5.01985,2.2790875,0.605066,4.56087,4.318735,2.075395,1.247575,4.669795,4.34781,0.8433644444444445,3.710815,12.3105875,1.2759894285714286,0.3961264285714286,3.605366666666667,4.695386666666667,1.0596322222222223,3.84406,4.17019,6.303021666666667,1.2828716666666666,3.45303,4.08447,3.3358,4.141005,4.177175,3.96968,8.583685000000001,3.055745,4.403285,6.07605,16.440023749999998,3.5361525,2.891175,1.13128,2.1355425,1.2258025,2.3978325,1.27827,2.02003,1.6767575,2.08568,2.578925,2.37591,2.16114,5.48605,4.284845,5.6833,3.20042,5.582255,2.8656699999999997,5.1008,3.445066666666667,1.2554625,3.86453,2.0301275,2.600454,4.733775,4.930195,4.980455,3.997985,3.477133333333333,3.7083666666666666,2.489056666666667,3.282675,3.807825,2.30331,1.7937,3.4906666666666664,4.09829,3.597155,2.3747599999999998,12.464263333333333,0.72034,2.665835,4.89811,2.538965,1.04289,2.627035,7.508396666666666,7.224616666666666,4.388795,3.66551,3.936275,2.016395,2.01721,2.777656666666666,2.0000966666666664,3.7684233333333337,6.20255,4.252885,0.4580533333333333,6.2796,3.529533333333333,3.3359,3.5772333333333335,6.0411,8.636867,4.184722,0.98408,2.1608925,2.352215,3.696705,2.548605,4.0915,4.52158,3.4774999999999996,2.7109666666666663,3.995535,4.131265,3.815425,4.365633333333333,1.6928766666666668,3.096015,5.19405,5.7113,3.4747,2.2669475,2.2409399999999997,29.724688756410256,1.49097,1.49097,2.29454,5.0747599999999995,3.7639,4.25565,2.959125,3.011425,4.95887,3.106063333333333,4.197875,3.106063333333333,3.55379,1.8557066666666666,1.9147699999999999,6.1338,2.640975,4.77272,3.373195,2.651335,6.563435,1.9592,4.691815,5.44445,3.62828,3.353335,5.0696,2.00114,5.16635,3.409675,7.652216666666666,5.191474166666666,2.855025,3.85681,4.7748,2.03412,2.438546666666667,3.3843,0.4605471428571429,3.1945866666666665,10.200946666666667,4.5247,3.674725,4.848465,3.2777775,3.19658,1.3498285714285714,4.037395,5.4688,3.292505,2.080745,4.15892,3.943425,4.425165,4.239295,2.881175,2.881175,4.132125,2.849985,2.497314545454546,2.01193,4.656465,4.046765,0.9668314285714287,3.585715,5.0464,2.885893333333333,7.2404,7.32936,1.478092,4.21245,4.85778,6.692931,0.6508309999999999,7.6981,3.6059741666666665,0.5818954545454545,5.3855,5.2097,4.769695,4.310535,4.831735,4.38638,4.917325,3.83085,3.581155,4.24416,5.2177,4.47399,4.631275,3.93543,2.67622,4.298775,3.47002,0.9061899999999999,4.820365,2.42306,1.65852,4.349885,4.39947,6.12615,1.0402185714285714,5.034126666666666,3.0479,2.7150233333333333,1.68855,1.2780066666666667,11.681189166666666,2.2890099999999998,3.1514433333333334,2.00399,3.8013652380952383,5.413043333333333,6.241691666666666,2.7119999999999997,1.9226633333333334,2.04838,2.04838,2.04838,1.3775566666666668,4.06384,3.937545,3.296695,4.52111,8.107575,3.984905,1.115348,2.279165,3.266155,3.30125,1.871068,3.99365,2.73846,1.7103599999999999,3.030003333333333,5.209547857142857,6.402545,4.083275,4.113305,3.125253333333333,5.43865,4.34779,5.410893333333333,1.8770475,1.8770475,4.00213,3.774265,2.7824193333333334,2.7824193333333334,3.96265,1.249977142857143,4.97932,3.351295,4.303455,3.793945,3.71173,3.442066666666667,1.0864985714285713,4.296655,4.645145,4.323845,4.76253,4.778015,4.977815,4.479735,1.8566975,1.487185,3.43368,3.97082,3.38171,4.52108,2.02814,2.863225,5.30735,2.63145,5.06255,7.289350000000001,2.270716666666667,2.9273366666666667,4.350965238095238,5.340636666666667,1.604215,1.9349926190476192,0.8880783333333334,1.9349926190476192,1.8674066666666667,1.8674066666666667,1.560786,5.3988,3.18767,3.734735,2.413975,3.74764,1.5378233333333335,5.525,3.125555,1.69057,3.072346666666667,3.759645,3.999055,6.230797,4.68749,1.215908,0.899435,3.711515,7.746700000000001,2.4179233333333334,3.651425,3.81655,3.81655,2.311905,3.363375,3.44465,1.4323364935064937,3.18078,3.348975,2.88635,4.231365,3.7746950000000004,1.4454,3.242055,4.40494,5.00685,5.05105,4.383955,1.7384375,2.17029,1.3893833333333332,2.289225,3.314335,1.875985,4.51596,3.4324999999999997,3.62331,3.98048,5.3215,1.57705,0.967206,1.8126966666666666,1.0586875,1.1818666666666666,4.98122,4.007775,1.105156,0.3842026086956522,0.3842026086956522,0.3842026086956522,3.49488,5.776173333333333,4.61917,5.262,4.81831,5.40635,4.718005,4.38698,2.89831,3.43808,1.648565,4.93384,4.04224,3.897135,4.28384,4.338275,0.6586254545454545,0.6586254545454545,0.6586254545454545,0.6586254545454545,1.0723280000000002,1.0723280000000002,4.01074,3.61931,3.577225,2.772745,2.50066,6.1752,4.66298,5.74645,4.28719,3.048906666666667,2.5410733333333333,9.7897,1.51737,1.51737,4.099605,5.5367,3.3896333333333337,0.466509375,0.466509375,0.466509375,0.466509375,0.466509375,0.466509375,4.837733333333333,5.2731,3.258785,4.41537,2.768584166666667,2.768584166666667,2.711645,3.082192666666667,2.40978,2.55435,3.339725,6.76863,1.423374,4.719765,3.335525,3.85055,8.920498333333333,2.3092533333333334,2.474725,0.9994342857142857,1.94426,4.893415,2.93321,0.88665625,2.907583333333333,4.143115,5.5181,2.66295,4.618295555555555,0.8521488888888888,1.9526899999999998,4.93552,4.8273,2.7418500000000003,2.49724,2.0076966666666665,1.4082266666666667,7.231601666666666,3.3776666666666664,1.9803466666666667,3.10335,2.6574166666666668,3.64178,3.74636,2.7134766666666668,3.23934,5.82295,1.5017866666666666,4.12577,5.17595,3.327245,3.939305,1.9544266666666665,3.057445,3.777235,3.57213,2.892565,4.748225,4.53843,2.8859866666666663,1.9614924999999999,2.89495,2.9073333333333333,2.8689366666666665,0.8147754545454545,2.196665,8.416405,0.46590625,3.0027633333333337,1.5763666666666667,2.60453,3.26742,2.7169733333333332,1.2776555555555555,1.734818,2.7144,2.0929375,3.747325,2.0042400000000002,2.79068,1.4684,3.150786,2.0147575,1.1636614285714286,2.7050133333333335,2.075105,2.3505833333333332,2.61354,2.9179866666666663,3.32333,3.5254666666666665,3.163396666666667,2.8235733333333335,3.3224966666666664,2.7234033333333336,2.7862,1.7878999999999998,2.41522,2.5158866666666664,1.6353266666666666,3.480233333333333,3.9303847619047616,2.9787133333333333,2.4197633333333335,2.879573333333333,3.5381,4.681844166666666,3.1939733333333336,1.8372957142857143,1.8372957142857143,2.5188,1.141245,2.453985,3.299525,4.5814125,2.804175,2.1097975,2.06003,2.0687175,3.66732,3.047195,3.440955,3.701095,1.8390375,2.2540733333333334,3.663695,1.20534,1.20534,2.0158125,0.6285407692307692,2.3300828846153845,1.5741975,1.5741975,2.6248766666666667,2.4901666666666666,3.3890333333333333,2.763281666666667,1.8794925,5.551146666666667,3.8418575,3.8418575,3.642075,3.087075,2.2029,3.04897,2.442005,2.85779,5.09392,0.458725,0.665165,4.121815,2.3995,3.089325,6.714543333333333,3.55415,1.6216940000000002,5.069663333333333,4.661515,3.901515,4.224815,5.40395,4.889555,14.114045,3.701925,1.57567,2.92814,3.8256,4.83997,2.91479,4.08032,3.86584,3.64827,4.055785,2.9055933333333335,3.01055,2.7052899999999998,2.43439,2.43439,4.140835,2.94085,3.184585,3.38952,2.38047,2.5852,2.1659075,1.93441,1.9743525,2.0762025,1.66866,3.4243535,3.69282,2.759485,7.4895125,3.16497,2.3600966666666667,1.8265733333333334,3.660695,4.01338,3.68847,3.0375035416666663,3.43737,3.221565,4.38208,3.777315,3.795855,3.92059,3.468441,3.523225,0.619455,0.619455,0.619455,3.522395,2.315445,6.02815,2.361535,3.731785,7.0715462962962965,2.7554233333333333,0.3447307692307692,5.3409,0.7780210000000001,4.292139523809524,1.90915,3.642245,1.8537,4.406755,5.351906666666666,4.38144,4.16433,2.73089,2.83912,1.5304783333333332,2.5968933333333335,0.4155463157894737,0.5452400000000001,2.7273266666666665,1.48683,1.914295,3.84644,2.482955,4.861845,2.87794,3.0471016666666664,3.697435,5.7212,1.7116825,0.9758585714285715,2.235745,3.6570400000000003,1.2450376623376622,4.90981,3.86793,3.671115,2.7329866666666667,4.097715,2.5040633333333333,2.45856,2.6071966666666664,2.42218,2.5415233333333336,2.2628225,3.14593,2.35778,5.36983,2.20964,2.0471533333333336,2.0680466666666666,5.0988880000000005,3.2499260000000003,3.2499260000000003,2.5949066666666667,3.89282,2.355265,3.1427,2.8833,0.5894860000000001,4.243795,1.78831,11.971375555555557,6.97293,2.87567,3.344155,3.28632,4.43545,2.893675,3.41451,0.3187106666666667,1.8416725,3.552466666666667,0.8479666666666666,3.865445,1.3175771428571428,4.48773,3.315355,3.01494,3.30665,3.340605,2.31219,4.36772,3.798085,3.66695,6.46736,4.52334,2.8504633333333333,3.148953333333333,1.6207319999999998,1.95149,4.189445,4.047335,3.8325625,2.626765,3.27704,1.389554,2.935435,2.63118,3.623565,10.583786666666667,3.787025,5.048875,3.831065,4.15721,1.0257944444444445,5.1058769999999996,4.59642,2.518006666666667,2.49153,2.915846666666667,3.6367333333333334,2.3632733333333333,1.7083266666666665,1.9582866666666667,3.788455,1.614938,2.719943333333333,5.153846,2.63726,1.0785828571428573,1.0785828571428573,3.644545,2.9675314999999998,2.9675314999999998,2.839753333333333,2.80771,3.412282564102564,3.746966666666667,3.3966999999999996,2.7340166666666668,2.32223,2.3086233333333332,3.1044633333333334,2.255355,2.6057366666666666,1.6846599999999998,5.8190100000000005,8.655013333333333,0.47014,0.47014,0.47014,0.5687656818181819,0.5687656818181819,0.47014,2.9627866666666667,3.070866666666667,4.137648333333333,1.3896916666666668,1.7823475,3.382546,2.436803333333333,3.1265633333333334,2.4291966666666664,2.804656666666667,3.4414,6.709481666666667,3.1017166666666665,2.4958899999999997,2.8375066666666666,4.66883,2.4407200000000002,3.2727233333333334,5.83631,2.3642366666666668,3.3291,1.3721683333333334,1.3721683333333334,2.9014333333333333,0.5187652631578947,2.1577066666666664,2.7092666666666667,2.92088,3.27396,2.278356666666667,1.5643366666666667,2.6581266666666665,2.8434033333333333,2.3822533333333333,4.347845,2.4887023333333333,3.31903,2.253685,3.44062,0.484395,7.0851283333333335,2.97835,2.97835,7.8354019444444445,1.7502000000000002,1.8613933333333332,3.0837066666666666,4.30289,2.4122533333333336,1.9135766666666667,2.5321933333333333,1.392475,3.5845333333333333,1.80772,3.0555839999999996,1.4519575,0.27001772727272727,0.27001772727272727,4.874685,3.880045,3.44783,2.92562,2.7345,3.226545,1.3689466666666668,5.9846,3.826585,3.068705,1.8203875,1.0727533333333334,2.240975,3.0837066666666666,2.560565,2.059415,5.56338,3.874195,4.19594,3.815395,2.521695,0.6824016666666667,7.22607,2.1135025,1.5444025,3.67474,4.84417,2.1733,1.66246,4.74935,4.08077,3.2259733333333336,3.1434433333333334,4.440045,4.042995,3.4357666666666664,2.533824,2.533824,4.00894,4.84534,5.39835,6.369416666666667,2.571473333333333,3.84523,1.6042571428571428,2.49911,5.530482666666666,3.731775,1.873716,5.50625,3.6306374999999997,3.201615,2.10649,4.183235,4.55328,4.65614,4.61782,2.442136666666667,2.6182166666666666,3.633266666666667,1.9905733333333335,2.76835,2.7389833333333335,2.51724,0.766953,2.159775,2.930676666666667,1.9573296666666666,4.911725,4.492055,4.70079,3.756535,3.479655,4.727815,11.8788,4.590165,3.87598,4.266795,4.10385,4.577685,2.2780833333333335,3.0630646666666665,3.5398333333333336,1.2470375,2.78863,2.979175,4.39374,5.54635,4.241435,3.4334666666666664,3.1192466666666667,2.26449,4.342,3.9959425,3.7494333333333336,3.9959425,2.210501,2.270993333333333,2.348968333333333,2.056485,2.565533333333333,1.8327799999999999,0.8257116666666667,1.2024933333333332,2.1652400000000003,2.0234900000000002,1.6541933333333334,1.3620033333333332,1.80622,2.81715,1.5202579999999999,3.0553833333333333,1.2706866666666665,1.59893,2.728755,3.5957000000000003,2.481053333333333,2.0517266666666667,2.3466066666666667,3.236865,2.25843,2.8325666666666667,3.1439466666666664,2.456046666666667,3.074476666666667,3.03368,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,5.22195,3.01759,1.0506428571428572,3.0781233333333335,2.635876666666667,2.8798833333333334,3.2624,3.4301666666666666,4.49162,3.341956,1.473868,3.0294666666666665,1.8790333333333333,1.00142875,0.9334020000000001,1.5965150000000001,0.8461483333333333,0.8413333333333334,1.316116,3.289295,1.600032,1.650145,1.926537777777778,2.3320338888888887,1.4151233333333335,1.2268816666666666,1.58374,0.949935,1.2726,0.7399749999999999,0.96486,3.349165,3.54425,4.35602,4.483475,4.03197,3.0735333333333332,4.57689,3.4868333333333332,1.9678025,3.502495,1.957515,3.567845,2.2842366666666667,0.8746645454545454,4.295955,5.06615,2.1133833333333336,1.3022075,3.003145,3.39368,3.6753833333333334,2.9968166666666662,2.68098,0.879515,2.250945,5.0919775000000005,3.784795,2.32158,1.4934200000000002,3.75676,1.635345,0.5664227272727272,4.17849,4.47753,4.334245,2.29208,1.461562,3.107885,4.501615,2.5949033333333333,2.6086966666666664,2.5724633333333333,2.6175333333333333,2.7568333333333332,2.816936666666667,3.03971,1.2816375,2.618225,2.5771433333333333,4.97384,4.39774,3.797405,4.686755,16.43288968308081,4.5022400000000005,4.491464666666666,2.92829,4.102125,4.95436,1.54663,1.9502125,2.1764566666666667,5.6645875,3.466515,3.389675,6.499,2.1764566666666667,4.027705,2.14278,2.1037399999999997,3.0517233333333333,2.7313833333333335,1.23721,4.21897,3.701095,2.560095,4.314475,2.4534766666666665,3.387,3.67945,3.620425,4.837735,3.899105,2.76844,3.56341,2.57866,2.456186666666667,1.31963,1.31963,3.297946666666667,2.6038466666666666,0.38223214285714285,4.758455,0.969548,2.804155,3.883845,0.5667266666666667,4.79734,8.25435,1.8601725,3.726145,3.650725,2.5895033333333335,3.255405,2.367265,2.982515,3.6057,4.32467,3.199475,3.9143666666666665,0.9895166666666667,11.465088333333334,2.760055,2.90321,6.1188,2.532215,3.9217,7.78732,4.099215,4.016015,3.70508,4.19713,5.3122025,1.5170375,2.5474200000000002,4.74945,3.7520000000000002,2.0377,3.82327,3.730635,3.708535,3.947615,4.18273,4.01364,2.4338733333333336,4.725645,3.6804,5.4628,4.25745,2.181643333333333,2.29487,2.0433866666666667,3.0130966666666663,1.3062266666666666,3.4967333333333332,0.9155818181818183,3.1814533333333332,3.2114766666666665,2.5895633333333334,1.5350583333333334,4.385545,3.860445,4.191205,1.8364175,4.53586,3.842605,0.7780916153846154,0.36733961538461535,4.273295,5.5565,0.9579875,0.36733961538461535,3.803955,0.7780916153846154,0.7780916153846154,0.36733961538461535,5.726756666666667,2.4717766666666665,2.3231266666666666,5.6551,3.142425,3.18439,0.7868044444444444,2.993425,3.940945,4.775985,5.80675,2.1327175,0.7233307692307692,4.191295,2.0711,1.209862,1.868965,0.9834542857142857,2.159996666666667,2.2074000000000003,3.549135,5.2795,2.53882,2.88275,2.737503333333333,2.2575533333333335,2.866655,4.44049375,1.5062475,1.98339,4.205935,4.936435,2.1447037499999997,5.0588,2.66814,4.23083,3.958125,2.80744,1.2090875,3.081365,6.9844,3.77003,3.920155,5.1865,6.40245,2.18367,3.089405,4.62568,3.19819,3.45093,8.29832,3.789995,4.6530125,2.38581,1.2402525,2.55865,1.77061,2.385745,1.92891,4.3712,0.6608464285714285,3.30287,3.757085,1.8489699999999998,2.8225266666666666,4.869015,3.44352,2.664455,4.128515,5.18885,9.218689333333334,2.6883,2.5499633333333334,1.681302,1.45307,1.2298233333333333,1.3264,2.6632866666666666,2.6289000000000002,2.8682266666666667,4.260776794871795,1.595305,2.34165,5.2831,5.55745,3.698365,3.43111,3.12024,2.640815,2.067995,2.100735,1.98243,1.936775,3.101645,3.77994,4.86096,5.1278,3.82441,5.372943333333334,3.4216,2.66874,6.605489166666667,2.91958,8.98542,4.713160833333333,4.713160833333333,5.5852216666666665,1.67785,1.35932,1.4344333333333334,0.7200070000000001,4.956205,4.059233333333333,3.2816375,3.2816375,2.2115,4.655955,4.46251,4.311505,3.89604,2.9744766666666664,2.765225,3.52939,3.121116666666667,5.3889949999999995,3.61647,0.7713627272727273,5.3128,5.05605,4.045195,4.854365,2.902795,6.20055,4.46339,0.9088692307692308,5.385,7.305759999999999,3.271455,5.4866,5.8019,3.5917,2.635755,3.689545,6.11355,2.0212725,6.01355,1.9193275,4.37189,2.6252633333333333,2.4305525,0.919481,3.02261,6.1615,3.418215,3.53951,2.0092933333333334,4.64017,7.7700716666666665,3.55813,4.2242,2.453145,2.85125,0.885322,4.61434,1.6277549999999998,3.4305383333333337,3.4305383333333337,3.587495,2.2974866666666665,2.9413366666666665,4.002635,1.71347,2.8573466666666665,3.183286666666667,3.2038100000000003,2.705415,4.10817,3.316555,1.8222075,3.1526433333333332,2.060985,3.17104,1.9896,3.077056666666667,3.3004866666666666,1.4329714285714286,1.80837,0.41680999999999996,1.31361,0.41680999999999996,0.41680999999999996,1.80837,0.41680999999999996,3.4298,2.5438799999999997,2.5438799999999997,3.00269,4.11813,3.747185,4.160995,5.37865,5.4504,3.424205,3.94072,4.08995,1.928335,2.4064613333333336,2.364736666666667,0.8189127272727272,5.6166,3.0707,3.015076666666667,5.4704,3.786975,4.72646,3.31706,2.65349,2.936305,3.385545,2.61226,2.89873,2.06976,5.43095,0.8166388888888889,3.45327,1.1720328571428573,3.734625,3.1308666666666665,2.98516,3.90093,4.00957,3.77848,4.41576,4.010375,3.78021,4.33652,4.27115,2.6007,2.736875,3.3537,4.200825,2.626945,3.138775,2.62605,3.00456,3.3073200000000003,3.49217,4.55555,4.643405,4.053935,68.3938673931069,2.7298508333333333,3.861765,16.165151,4.05199,3.0937133333333335,2.2463233333333332,1.9404833333333331,2.485326666666667,4.4798575,3.0827533333333332,3.9131074999999997,5.6674,3.37065,7.6909133333333335,5.46245,2.43117,3.353645,3.76861,3.42619,1.8779,1.1222725,4.62748,2.689515,6.0649049999999995,3.662465,2.2484633333333335,3.562075,3.401645,4.537235,2.914285,5.6715075,4.588495,3.2401,2.997025,2.594825,2.879845,5.67315,2.959265,3.604295,4.36704625,1.163815,2.564775,5.1882775,3.03092,3.17155,3.619775,2.759735,3.89724,3.04718,3.191335,2.44369,4.413805,2.75352,2.918875,4.50968,9.98614,3.2015,4.16085,6.66052,3.02705,2.00295,4.165051875,2.01723,2.9361766666666664,2.969588,3.45459,3.413245,3.041065,3.19362,3.238465,4.171605,4.015445,4.347725,3.575845,3.200565,3.711875,2.589171666666667,2.589171666666667,7.2463983333333335,1.8775,3.218605,3.289795,2.38157,4.78525,4.188225,2.941335,3.146735,6.07425,6.023969999999999,0.6428563636363637,4.601305,2.410625,2.92946,2.5424266666666666,5.1936,2.66589,2.02858,1.09134875,2.0541677272727275,4.23582,5.029,4.109835,5.91325,5.81915,5.92745,2.48173,1.9231666666666667,3.85959,2.46608,2.890473333333333,2.0008766666666666,1.2871816666666667,2.9284499999999998,3.1248299999999998,1.60385,2.26046,2.4214385714285713,3.408085412087912,2.740455,5.05155,3.352205,1.3952275,2.63867,3.518565,6.09245,4.7411,5.9233,4.750295,2.0224966666666666,1.4642433333333333,0.5929914285714286,1.57327,3.51807,2.493895,3.5356433333333332,1.3956833333333334,2.44008,2.254085,3.365795,3.502225,3.826135,4.101958333333334,1.6571875,1.41615,1.91045,2.0659625,1.4241675,2.50445,6.886819333333333,4.89911,3.58677,2.979055,7.3155,4.64667,3.21665,3.06271,3.407325,2.6879,3.880085,2.33603,7.36794,0.8820049999999999,2.96566,6.6395,3.95818,4.895005,6.52375,1.4862333333333335,3.18758,2.9088666666666665,2.8218866666666664,1.51689,4.042375,8.5468,3.285325,4.88289,3.99418,3.41597,4.75476,0.8971616666666667,2.8665633333333336,5.3664,6.308490000000001,5.27195,5.83985,2.8634,3.7335,2.6043,5.25755,4.781275,4.110740714285714,4.110740714285714,0.6614657142857142,3.6165000000000003,0.9823600000000001,0.741695,1.7564825,3.7802666666666664,4.148928,5.570463714285714,2.48149,3.2677437142857144,3.768822380952381,2.8753233333333337,3.0879766666666666,4.5548,3.4690666666666665,1.868495,1.868495,3.85224,2.9802166666666667,2.7792266666666667,3.292915,3.3561,0.5784722222222222,3.3366666666666664,2.6250933333333335,2.6450299999999998,2.93084,2.59455,2.4685366666666666,3.187163333333333,2.8283966666666664,0.821976,2.8919566666666667,6.419786285714285,2.13422,7.427858333333333,1.515602,1.515602,3.4078142500000004,3.515966666666667,3.31227,2.77673,1.7047260000000002,1.32513,3.3499,3.457433333333333,1.4495616666666666,1.6358428571428572,2.8218566666666667,2.618562,2.6825166666666664,2.032375,1.8449075,2.66513,2.29436,2.821225,3.439705,1.84442,3.62589,3.23068,7.107989999999999,3.32646,1.6364625,3.02615,2.577485,2.17282,4.048695,2.3636,2.629775,7.0986225,0.8334615384615385,0.737825,4.70126,1.506272,1.506272,3.716165,2.4897475,4.354275,3.308745,1.3199333333333334,2.457787333333333,2.7364533333333334,2.442512333333333,5.01535,5.1427,2.5772066666666666,2.06738,1.3535185714285713,1.3535185714285713,1.8652566666666666,3.814,4.1617,5.6442,3.107146666666667,5.00405,4.22403,6.57705,4.34515,2.56285,2.82944,2.6656299999999997,2.710983333333333,0.7026144444444444,0.7026144444444444,0.7026144444444444,3.09149,4.38662,3.808715,1.3462975,1.3462975,4.818235,5.71745,6.97935,21.85537227777778,10.3073,9.22911,2.884165,5.73435,2.327595,4.29915,2.5080066666666667,3.166786666666667,4.017399999999999,5.275285333333334,1.95631,1.63935,6.50049,2.11342,2.11342,6.15975,2.900915,4.09832,2.049625,4.938827166666666,4.632335,3.423665,5.07515,3.46383,0.9941166666666666,5.6957,9.27574,0.9941166666666666,2.049625,2.082263333333333,0.695506,0.695506,1.7075900000000002,2.2336899999999997,1.7075900000000002,4.326445,5.31685,5.9568,8.4026,2.049625,11.370515833333334,5.7257,5.46505,2.327595,3.156985,4.238745,8.34233,3.030935,3.72737,5.46475,3.542385,4.36823,5.88625,4.27557,4.93426,4.638695,2.82237,5.53755,3.34672,4.2813,4.400765,0.8107175,1.498974,3.056205,5.5026,4.449135,2.63726,2.11748,3.9223,4.494,5.9282,5.5432,5.1979,4.433915,3.418275,4.22978,3.773105,2.06657,4.9749,2.02706,2.687665,3.49967,1.6745833333333333,3.97794,4.003005,3.66598,5.3081,3.02705,7.015408333333333,0.9766455555555554,3.484955,2.513175,1.2411671428571427,4.959339,1.425415,1.6088666666666667,2.527336666666667,2.719832,2.9228366666666665,2.78802,1.7548075,0.7332418181818181,1.9970033333333335,2.42562,3.66001,0.7263146153846154,5.641701666666666,1.7406566666666665,1.173286,3.705,1.173286,3.866335,0.9802545454545455,4.57846,3.2320433333333334,1.909995,4.886723,4.343658,4.343658,4.75608,2.3667075,2.9164233333333334,2.7126533333333334,1.471922,3.72648,3.814885,2.09275,0.7043758333333333,6.993381282051282,2.736725,4.32123,4.24448,7.64508,2.05036,4.171375,3.7609,3.08692,3.53489,5.68425,6.2614775,4.55678,4.86929,5.52535,2.9655633333333333,4.917475,4.17103,4.47506,1.0539422222222223,0.4693778571428572,3.171135,3.4494000000000002,2.8348,5.43395,3.814485,4.22432,4.38163,5.05215,4.594345,4.20726,1.20097,2.237555,8.208385833333333,2.21351,1.9041966666666665,4.057176666666666,11.359861388888888,1.564695,5.3662,6.5325,5.26525,3.4520999999999997,2.2835366666666665,3.262036666666667,4.126805,1.1042016666666667,3.3882,3.21081,0.3053784210526316,2.0797233333333334,4.322895,4.24416,2.319775,4.33967,2.742585,4.8696525,1.3018733333333332,0.6128054545454545,3.5677791666666665,1.109397142857143,0.9969425,0.9969425,0.9969425,0.9969425,1.6367083333333332,2.7201799999999996,1.8857633333333332,3.4310666666666667,5.29955,3.6994333333333334,5.15905,3.74677,4.395645,3.666095,3.96721,1.4400133333333331,6.475455,2.28536,4.68578,5.1453299999999995,5.14255,5.036408333333334,2.32356,2.2880133333333332,2.62434,3.276015,1.1914366666666667,4.854808333333333,2.703193333333333,5.041,2.6761933333333334,2.298153333333333,3.79936,3.363985,2.85692,2.4385066666666666,2.754913333333333,1.510935,0.4113366666666667,4.066845,3.5509,4.16193,3.640215,4.08528,5.82655,4.263265,0.539943076923077,3.145386,7.276032666666667,2.0014266666666667,2.12922,5.452605,6.28855,2.6575666666666664,4.833675,5.03315,4.315365,4.015065,4.524785,5.37885,5.54635,5.1838,3.632985,5.1780195,1.4554,1.6044766666666668,4.42542,3.892125,3.80433,3.179755,5.4551,5.039,3.7895,3.374115,15.52728897104269,1.2423410995184592,1.15793,1.8848290909090908,0.520055,0.4959113333333333,1.5048,0.3149,1.2905760000000002,3.08332,1.62211,0.9436333333333334,1.05317,0.4720625,1.05317,1.05317,0.4720625,0.8293,0.5354249999999999,2.60143,2.66412,4.16634,3.592635,2.798386666666667,2.7884,4.121565,4.911105,5.08725,2.840095,4.24117,0.6940742857142858,2.3845953333333334,8.001191666666667,3.895375,6.635751666666666,2.70655,4.439745,2.358525,5.4128,5.52795,3.42407,4.20018,3.07253,1.0131516666666667,4.27813,4.89887,1.108166,1.303632,1.5381316666666667,2.32771,1.9332666666666667,5.7283,5.96005,2.26965,2.26965,3.6008591666666665,6.38905,2.124756666666667,0.6610009090909091,0.7463928571428572,2.1739166666666665,3.3808666666666665,0.9472628571428572,0.9472628571428572,0.9472628571428572,0.37483999999999995,1.0583257142857143,2.998775,6.0388,3.8068666666666666,4.094985833333333,5.08205,1.01889,3.5863,3.1177566666666667,3.8806333333333334,5.6211,2.5585999999999998,7.306648333333333,4.840345,1.0962444444444444,3.7319666666666667,1.915888,2.456965,2.3406766666666665,6.78582,3.499333333333333,4.435015,2.293845,4.634715,4.40278,5.2543,0.5478272222222222,1.9570133333333333,1.4174,2.7038666666666664,3.8868980000000004,2.0471333333333335,2.7796866666666666,2.4514400000000003,2.5314099999999997,2.5651566666666668,2.7518999999999996,2.7166,2.88269,1.298558,2.2730366666666666,1.9962799999999998,2.779973333333333,2.39474,2.08583,1.7228366666666668,1.8838066666666666,1.6740975,3.233305,2.22748,2.0931,2.1192033333333335,2.4258566666666668,2.4301233333333334,0.7556455555555556,0.7556455555555556,0.7556455555555556,2.43864,2.0492466666666664,2.9776866666666666,2.359766666666667,2.5725533333333335,2.04319,3.892775,3.5297616666666665,1.334055,2.4171400000000003,2.7640966666666666,3.5448166666666667,1.5672142857142857,7.249296666666667,4.43962,3.279,3.982435,3.580475,1.3247525,0.8326928571428571,2.85284,3.798575,3.5448166666666667,3.977095,4.19371,4.3933,2.842366666666667,3.94449,4.10558,0.95336,2.63336,3.296755,4.946264166666667,4.666635,3.62175,3.3524,2.50951,2.1731133333333332,2.4818966666666666,0.6501741666666666,5.329403749999999,2.78605,3.862945,2.7752766666666666,3.802613333333333,3.2420033333333333,2.4911933333333334,2.8947586666666663,2.8947586666666663,2.5974,2.1048899999999997,2.531476666666667,2.0677600000000003,4.03509,1.3759679999999999,2.553805,3.876,3.982795,4.00468,5.37,3.44516,2.56015,2.162575,3.14427,2.943805,2.536635,5.2149,2.62033,0.9681742857142857,0.9681742857142857,4.571635,3.757593,0.919918,4.22214,0.919918,3.90726,4.80855,4.84055,3.018745,3.27872,6.2888424999999994,4.181258333333333,5.67055,0.8363357142857143,0.8363357142857143,2.1416399999999998,4.48176,1.528685,2.953075,3.487425,1.1092128571428572,3.795145,3.876,5.877325,5.877325,1.1203049999999999,5.3778,5.5333,5.0774,6.10195,2.0426425,2.0426425,7.03975,0.9539727272727273,7.29475,1.9234975,6.4274325,2.545915,2.3594933333333334,3.402635,2.43388,2.1713299999999998,2.3576633333333334,3.04542,2.3563711904761906,6.26915,1.7773700000000001,4.91424,2.8982033333333335,2.4868099999999997,1.75256,2.22795,3.075545,3.453455,3.548115,2.840965,2.142835,2.264125,2.489655,1.0614979999999998,3.163405,2.27412,3.20394,2.158008,2.158008,3.082415,2.07659,3.847845,3.5047,5.02565,7.117491666666667,4.085825,3.537975,6.4629865,2.125183333333333,3.2759311111111113,2.1742966666666668,1.4728999999999999,1.632025,4.417065,1.5711366666666666,0.50047,0.628765,4.666965,5.0804,2.865845,0.9380200000000001,2.39521,2.9457166666666663,4.823095,1.8107099999999998,1.96637,1.1350555555555557,4.58307,2.386745,4.669435,0.739018,4.0888225,4.13375,3.561995,4.281665,3.53152,3.894215,2.6876433333333334,5.6361,3.56509,1.7988266666666668,2.688003333333333,6.063963333333334,5.9662125,0.8259625,3.626585,4.226845,5.1768,3.6528333333333336,3.7617,2.750325,3.19637,3.814033333333333,6.3815575,2.618562,2.6241065,4.002115,3.250515,2.378065,2.66635,8.446163333333333,4.57668,2.0794,4.807845,4.81572,1.821056,3.90485,1.2418925,1.6907142857142858,4.34359,3.8772,5.01145,2.5749999999999997,3.23386,2.928355,5.2411,3.83156,3.35278,2.728425,3.67467,3.604965,3.8989899999999995,1.094014,1.094014,7.53656,0.8420225,2.0119150793650795,0.8420225,0.6303466666666667,0.4454122222222222,2.642261746031746,2.506355,0.6106928571428571,2.0119150793650795,2.03786,3.303485,2.0315688888888888,3.616015,4.5779,7.480716666666667,1.90466,2.185435,2.00501,4.457695,5.74565,2.05829,1.70855,1.173025,2.8815749999999998,4.24658,2.860715,4.77256,6.41328,0.42983444444444446,3.806635,0.697914,2.8448933333333333,2.2848175,3.499535,1.2361766666666667,4.14452,4.509287499999999,3.93105,2.87098,3.970935,4.90287,1.6356,3.084075,0.6207053846153846,2.402615,2.37036,1.034606,3.059363333333333,2.51161,2.528696666666667,4.163655,7.9328199999999995,2.867023636363636,3.69796,3.387725,7.400449999999999,5.516905833333333,3.224463333333333,4.21218,3.42632,5.58195,4.08039,5.20375,4.767455,4.453995,4.53234,4.175233333333334,1.9586325,1.9714566666666666,2.33947,3.848495,2.4574966666666667,0.18859702702702702,0.18859702702702702,0.18859702702702702,30.491857023809523,0.18859702702702702,3.064322027027027,0.18859702702702702,0.18859702702702702,0.18859702702702702,3.30226036036036,4.084885,0.18859702702702702,0.18859702702702702,0.18859702702702702,0.18859702702702702,0.18859702702702702,2.75294,5.84149,3.158745,0.19412846153846156,0.19412846153846156,4.504696666666666,3.9514044166666666,3.99820375,3.2804783055555555,3.927444285714286,7.94132,11.621005472027973,6.291449999999999,8.319743333333333,7.900949160714285,2.9014333333333333,6.197181904761905,4.3896250000000006,4.310570064102564,0.19412846153846156,8.167354666666666,6.627326,7.148028333333333,2.96755,8.925846160714286,14.419504732142858,18.124419608516483,57.507733422570894,115.24503031813366,1.3721683333333334,3.3291,3.446775,3.9180463230373235,0.19412846153846156,1.5434625641025643,8.784482500000001,14.960610452380953,19.711712777777777,47.386682138053466,13.366203327380953,3.260175,0.23288275862068963,0.23288275862068963,4.657523333333334,2.8181933333333333,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,5.65582,0.23288275862068963,0.23288275862068963,0.23288275862068963,2.692815,2.0591166666666667,3.63044,3.65023,4.862250833333333,5.2139,2.0253375,4.174725,4.26781,3.2892,1.4637733333333334,3.7074,0.9923783333333334,2.386945,2.02413,5.06576,6.03209,2.80791,5.582578444444445,0.5500055555555555,0.456518,2.49506,2.7128266666666665,2.76232,3.978535,3.632766666666667,7.5218162500000005,3.7494,3.590085,3.50548,4.051105,3.035055,3.20732,5.5658,1.809745,0.4293453846153846,0.8356018181818182,4.2491425000000005,1.7306775,3.7028,3.78146,4.53427,3.4859,2.47099,2.618165,0.6327553333333333,0.7521169999999999,4.28899,2.67301,5.85565,3.615195,3.738061666666667,2.52368,2.9557,6.3251,4.99408,3.521005,0.7992363636363637,2.83144,4.372735,2.22397,0.9659675,1.6335166666666667,4.010745,6.5498,1.903465,3.080055,3.833495,5.9478,2.4845,2.41194,2.36337,4.890755,3.03091,4.256025,0.6669042857142857,2.159046666666667,3.275225,1.789335,5.995051666666667,3.135125,3.83138,4.397175,2.921545,2.076935,0.5328281818181818,4.38589,4.745805,6.79475,3.14959,5.0613,4.94825,2.79051,2.690135,1.1821985714285714,5.16285,2.020225,2.59978,8.183785,4.172055,5.38105,3.126935,0.6978722222222222,3.0817,1.2169357142857142,3.20116,6.12275,4.881015,5.0763,3.64013,5.3789,4.402645,1.72687,1.7378233333333333,5.0214,2.968643333333333,3.25414,2.3343675,5.43655,4.2141,1.478925,3.5587999999999997,2.79172,2.844375,3.93396,9.15061,4.683835,1.7684475,4.60105,6.09187,4.577825,3.95821,4.08046,3.84768,4.48471,7.998749999999999,2.43121,3.2387,3.41782,4.345775,2.97732,3.1907,4.630375,4.129985,3.456715,3.930594,18.693804999999998,2.85577,2.7122933333333332,3.338533333333333,5.5411383333333335,1.1025175,4.202585,2.140305833333333,4.89738,1.3921883333333334,4.511475,4.232575,3.688825,0.96787,4.725985,4.458375,1.741345,4.608368636363636,4.47044,1.1287042857142857,3.688075,1.985115,2.39201,1.705365,4.327895,3.887145,3.755195,3.72753,2.9819166666666668,4.092475,8.330566666666666,4.47352,4.284165,4.56933,3.076643333333333,3.794385,4.86717,6.102106,0.874592,0.874592,4.48712,4.553495,2.0211866666666665,1.3175916666666667,7.123645,4.06684,3.542825,3.82517,4.745415,4.63043,3.559905,3.893015,6.6199449999999995,3.92957,4.679805,4.845355,1.36405,2.616725,4.21939,4.63252,3.431825,0.2107811111111111,1.5366475,2.1197675,2.5386866666666665,2.1464966666666667,0.9540033333333332,1.419035,1.3837575,2.39459,0.6218355555555556,1.06031,1.955805,3.89049,3.9040666666666666,2.24648,2.527746666666667,3.03857,2.816546666666667,0.6835720000000001,0.9543825,2.725415,4.623025,4.803215,2.79687,4.41488,4.546745,4.243575,2.06474,4.347295,4.908335,4.24891,6.339,3.725695,0.5045823529411765,5.66685,4.61709,4.132275,4.918055,3.302445,1.8812000000000002,3.993225,4.052005,2.96164,5.168582499999999,4.42793,1.4316233333333335,5.168582499999999,4.144645,6.6448325,3.74281,1.119911111111111,3.849525,4.67001,4.2004,2.71719,5.1181,1.5281675,2.048315,3.09232,3.448865,0.8145688888888889,4.546145,4.837495,3.606805,4.0721,3.4717000000000002,2.998866666666667,1.66933,1.565965,3.16112,3.443875,3.2551433333333333,2.44159,2.30026,1.9863296666666668,3.881325,1.3006128571428572,0.8359277777777777,5.17737,3.8466,1.501154,2.5257666666666667,2.2617,3.0964733333333334,6.228484999999999,2.2597227777777777,0.8533480000000001,2.56428,4.43368,2.0468633333333335,3.914765,5.0278,5.64345,3.97698,4.583385,5.06805,2.1656566666666666,2.3028233333333334,1.6607200000000002,2.15362,1.8775825,2.2850733333333335,2.2235833333333335,1.4631275,2.51857,3.010745,3.918575,6.3946,4.603995,4.05214,4.424695,4.02362,3.891275,5.28925,0.8786675,2.911,4.983505,1.1799899999999999,0.6903266666666668,5.22585,3.74422,2.497376666666667,3.62476625,6.34126,5.95915,0.912936,1.2212999999999998,0.7160322222222222,4.137629166666667,2.2488366666666666,2.8114666666666666,1.1651157142857145,2.6434866666666665,2.682646666666667,5.22625,4.620045,4.462925,5.19555,3.981025,1.25996,3.726075,1.6843633333333334,3.54865,3.509695,3.33894,2.6814199999999997,3.4699000000000004,2.879523333333333,3.042555,4.067605,3.139185,2.34902,8.802710000000001,10.344257500000001,4.22887,1.4857857142857143,5.50455,4.03336,4.72394,4.479865,3.736825,3.85189,3.4957,4.16587,3.5192445833333332,5.27319,3.777175,3.43264,4.575555,1.800798,4.8363,5.872,4.94336,3.35465,3.3627225000000003,7.70496,0.7795383333333333,2.552776666666667,2.768853333333333,2.328656666666667,5.0009,3.083705,1.2421133333333334,4.15865,3.3672,3.72065,4.497695,4.1748025,6.763635000000001,3.1209666666666664,2.786773333333333,3.10195,2.7893066666666666,4.05012,1.8428000000000002,2.149436666666667,2.9785833333333334,3.92435,3.784648333333333,1.97485,1.5669275,3.2141242857142855,3.0871269999999997,0.9431244444444444,2.4978033333333336,2.4978033333333336,1.2916925,5.99525,3.07794,3.501205,3.64462,3.070145,3.458195,3.35071,3.43328,3.47985,2.23664,0.5274373333333333,3.304765,5.623564999999999,3.07245,3.734715,3.28974,4.0722,4.05246,3.211825,2.78533,3.646755,3.76875,3.165775,3.21117,3.77418,2.59929,4.079605,3.922,8.82651,3.48482,3.762005,3.019995,4.11322,4.124655,3.66016,2.39499,3.657155,2.6059,2.89524,2.964265,3.181675,3.70829,1.75035,1.75035,2.302895,2.97709,3.21153,1.6008900000000001,2.45695,3.41054,1.680718,3.020635,1.6008900000000001,3.860375,2.918555,3.9013772500000004,3.18456,3.386845,2.268585,3.241685,4.09557,4.355735,3.496105,4.528355,3.85136,4.258785,3.648835,3.19086,3.244805,3.11096,3.914625,2.6273766666666667,3.716035,5.5418,4.32439,3.72477,0.29190826086956523,3.54075,0.44289416666666664,3.607525,3.623025,2.9541,3.46606,3.843215,6.200715,3.467165,2.59974,2.3422199999999997,2.810036666666667,0.67906,6.579066666666666,3.08428,3.44134,3.23018,2.021125,2.579695,3.26407,3.316775,6.73156,4.49763,5.2664,4.69847,4.26805,4.093695,3.725865,1.3961333333333332,1.726222,3.897235,4.640755,6.000015,2.5635133333333333,4.81182,1.82841,3.5888333333333335,3.969975,1.9349792857142858,4.19435,4.8536975,3.4987666666666666,3.8134333333333337,2.88575,4.566575,4.75943,3.4787,4.41018,4.53522,4.871855,4.350325,4.48857,3.9383,3.044945,4.19665,2.6928,3.2193400000000003,3.2193400000000003,4.217435,2.53307,3.79422,2.3237166666666664,4.499135,3.2685666666666666,3.57268,1.81109,2.008383333333333,1.1983516666666667,1.1983516666666667,1.6050499999999999,3.4364333333333335,1.7051833333333333,2.7538033333333334,3.716005,5.1755295,3.2330233333333336,3.90749,5.40791,2.996025,2.822105,3.0524133333333334,1.5773366666666666,4.42244,3.798745,6.52129,1.65029,5.46735,5.93065,3.279006666666667,3.25261,4.11967,6.71842,1.90341,2.46714,3.83714,0.48554142857142857,3.37315,4.05057,4.46798,4.73701,2.79786,1.3094480000000002,1.679092,3.98075,2.839375,2.40225,3.79979,5.06475,5.1837,1.00680125,3.090405,4.47223,3.73453,4.581895,2.3894166666666665,5.002376666666667,3.844365,1.5584,3.746285,1.2459683333333333,2.75496,7.366231666666666,3.37327,0.6515218181818182,3.35615,4.0812,3.989125,1.7025,1.7025,5.043163333333333,5.6923,2.83573,0.49186111111111114,1.9478675,4.603388333333333,4.469965,4.31695,1.8065280000000001,3.0192866666666665,3.37829,1.100818552631579,1.100818552631579,1.100818552631579,0.701156052631579,1.2105893859649122,0.5094333333333333,1.100818552631579,0.701156052631579,0.20123105263157895,0.7106643859649122,0.20123105263157895,0.499925,0.499925,0.499925,0.499925,1.1320495,1.0603,2.383923333333333,2.3325283333333333,1.0899166666666666,6.403598333333333,2.684533333333333,5.9933483333333335,2.493603333333333,3.58148,2.757515,3.41863,2.77804,4.66619,2.9196166666666667,4.037435,4.108885,4.44994,2.1565,3.882665,4.76218,4.08204,3.3093,4.8804,3.352445,4.522085,5.61205,5.0639,6.2595,5.2226,1.18449,4.325995,3.699105,2.79172,16.352585,4.453375,5.35465,2.7332433333333337,7.46872,4.002485,4.623415,5.262,3.340715,1.0518275,2.58787,3.692665,4.37436,3.34068,3.24562,4.159325,3.096223333333333,4.50497,4.47673,4.258005,6.657093333333333,7.429716666666666,1.3786271428571428,3.792315,4.0026,4.02596,3.66571,3.72178,7.46479,2.809525,2.930495,2.47584,4.051205,3.81197,4.75431,2.44541,1.8201975,0.8422319999999999,4.06798,3.90249,3.577815,3.73072,3.339875,4.705275,4.29732,6.80655,6.1387,5.7892,6.7801,3.91453,3.071985,3.127775,3.408905,1.907175,5.43445,6.56765,6.9143,6.187900000000001,6.187900000000001,2.34312,1.907175,1.762435,3.00669,0.6911483333333334,1.4645983333333334,0.77345,1.412565,2.394195,0.336263,2.81802,4.13188,1.412565,2.96529,10.77251,6.347035,2.3494016666666666,1.03813,1.82236,4.3658,4.343255,6.045746476190476,1.9759425,2.208545,3.379445,3.2142,4.83169,1.6633633333333335,5.3534,3.6951666666666667,3.17301,5.3251,7.160664000000001,3.825685,2.3910275,2.8357566666666667,1.7365199999999998,3.781425,5.46205,1.826436,5.62055,4.44259,6.000346,0.5075493333333333,4.332186666666667,5.93235,5.87505,2.49046,2.804165,7.3018,8.763783333333333,6.6051,2.228333333333333,2.228333333333333,2.228333333333333,5.8183,5.2261,6.4346,3.644305,2.854645,2.7272576315789476,5.21235,4.01684,2.5889604999999998,1.86243,2.5889604999999998,7.0650805,4.876616666666667,4.7780635714285715,6.92079,4.7780635714285715,4.7780635714285715,3.5549785714285713,6.87782,5.6243099999999995,2.8937299999999997,2.8937299999999997,2.682785,7.0861,2.96552,3.509925,5.1772808333333336,5.1772808333333336,5.1772808333333336,8.118739999999999,3.5938974999999997,3.47421,3.676,3.4945275000000002,0.8456975,7.582986666666667,2.7063699999999997,6.6812,3.641365,12.873163,5.4143,5.552673333333334,6.86227,2.5880883333333333,3.470995,1.12463,5.552673333333334,3.418845,1.705085,1.705085,3.08098,5.2243225,1.6931025,4.7431,0.8661429999999999,1.43281,0.8661429999999999,1.9140325,2.5592455,5.231893,3.99162,1.43281,3.26093,4.788195,0.949565,3.58013,4.38928,2.208035,4.21965,2.339435,3.17599,2.814865,0.911314,3.829235,2.08643,2.18744,1.6447566666666666,2.991086666666667,3.79283,3.04364,3.768285,1.2436644444444445,1.2436644444444445,1.2436644444444445,4.09203,3.1282533333333333,3.1282533333333333,2.992815,3.83526,2.0977799999999998,1.3428275,1.3428275,3.18293,4.388705,0.861005,1.4416833333333334,2.77179,1.1326233333333333,2.5743066666666667,0.911314,0.911314,1.7831033333333333,0.911314,3.084626666666667,0.5704,3.084626666666667,5.832790833333333,3.297415,2.43758,1.7293808333333334,0.584695,2.3140758333333333,3.685865,2.3140758333333333,0.9950233333333333,3.45035,3.88865,4.016335,3.299825,2.73962,3.67777,1.8637466666666667,0.786401388888889,0.4083725,0.786401388888889,0.3780288888888889,0.786401388888889,0.786401388888889,4.50772,4.32164,6.1289,3.407195,4.388995,4.299655,5.27515,3.54239,3.832925,1.3576657142857143,2.6583966666666665,3.9231391666666666,3.917405,1.4209666666666667,2.7458733333333334,3.54998,3.81909,4.10649,3.534795,3.974525,3.76811,3.14068,4.34214,2.2522466666666667,6.25705,3.59731,3.95383,4.563922857142857,0.8929623571428571,2.095215,3.156055,5.81104,3.65913,3.206855,2.9840366666666664,4.188335,7.165150000000001,2.948206666666667,3.393115,2.73631,3.952435,4.041755,5.6336,5.39035,4.547515,3.01398,5.3961,4.650865,3.6435333333333335,4.27163,3.1623933333333336,2.1752325,2.4725966666666666,4.74339,6.6277,4.772725,5.07405,3.95288,4.82563,5.81915,0.4878392307692308,7.297695,4.443285,3.871575,3.651855,4.593835,4.034875,2.89756,2.50165,1.3371916666666666,0.5809215384615385,1.7820440000000002,3.0858633333333336,3.227455,4.240005,3.887495,3.687315,11.177303333333334,3.81193,3.974725,2.99324,0.6891216666666667,5.426396666666667,2.9810466666666664,1.5093733333333335,4.49042,5.659341666666666,2.678295,7.85021,4.31627,2.2414940000000003,2.2414940000000003,2.2414940000000003,4.4079,9.17931,3.725785,3.374575,3.374575,3.48091,10.0339,0.998175,4.68418,4.65331,4.110105,2.83394,2.3154600000000003,4.458755,4.00097,6.0274,6.091305,3.92851,2.894645,3.85684,4.277665,3.303635,1.181455,2.744706666666667,6.19724,3.1656649999999997,4.99023,0.95361125,3.6137,2.2496766666666668,2.5772533333333336,1.7746875,1.82139,2.1470433333333334,5.81235,2.08907,4.692705,5.66355,1.7773700000000001,4.475085,3.74679,4.647075,3.0213466666666666,2.31222,2.738075,4.16772,4.096430833333334,4.096430833333334,1.1305825,1.7976066666666668,2.73598,4.302891,2.2084945454545455,4.8166426666666675,1.7292660000000002,2.621863333333333,2.0723233333333333,1.654745,1.654745,4.83787,7.306016666666666,1.9954166666666666,2.8713800000000003,2.180615,5.156,3.167055,0.783148,2.81595,0.783148,2.699965,3.437455,5.23455,5.48025,3.72745,4.611572499999999,6.0822,2.40748,1.7911066666666666,3.1778066666666667,2.2287666666666666,6.24615,4.48062,2.53272,4.147855,2.73385,4.40047,1.07757,1.1640679999999999,1.8406166666666666,1.2408666666666666,2.52543,2.7975733333333337,2.227253333333333,2.5929066666666665,2.7807,4.42086,2.5520833333333335,2.4493666666666667,2.753246666666667,2.4264633333333334,2.779693333333333,2.6829366666666665,1.9420733333333333,2.5531966666666666,4.024275,3.85944,3.1709,2.75505,2.7763500000000003,2.1834825,2.137455,1.2508000000000001,0.29227949999999997,0.13341739130434782,2.16726,1.9040166666666665,0.13341739130434782,3.9418965579710146,2.0252425,0.13341739130434782,5.731990833333334,2.148285,6.17368,3.37945,3.1214666666666666,2.5544166666666666,2.83893,2.196045,4.375935,3.1680566666666667,3.1843,0.4186847368421052,3.9641216666666663,2.7189680701754386,2.9993,1.777675,2.564825,4.256815,2.301625,7.9596800000000005,4.919635,3.124145,3.822935,6.15898,5.92603,1.8101733333333332,4.1035475,2.09074,1.90493,6.2968,7.64991,1.2217033333333334,2.07942,3.69455,2.563795,2.86434,3.18924,2.89348,5.245340000000001,2.370195,3.148365,3.36132,3.28178,7.80087,1.3069066666666667,2.01139,2.858445,3.43579,1.6243166666666669,3.457915,1.57539,3.918775,3.361555,6.80261,3.44385,8.8388075,3.43377,1.50906,1.7067033333333335,3.033435,5.68228,1.62957,1.6057566666666665,5.81922,3.54296,4.08546,2.783945,2.0391166666666667,3.05063,10.45427,5.18785,6.20507,3.5645,2.297505,2.303755,2.643325,2.74549,3.34204,1.7178833333333332,1.6051666666666666,2.5078566666666666,3.525005,1.7823475,3.220625,2.76343,3.88432,3.769895,3.203125,1.199155,2.58999,1.1182666666666667,1.421396,1.613705,3.44396,3.409205,3.705835,2.77235,3.843075,3.9579,2.843155,1.474182,3.485265,3.6306374999999997,3.10298,1.742535,3.261,3.44538,1.495805,3.46096,1.6039066666666668,3.98228,3.846685,4.546875,2.85883,4.11832,1.771965,3.75668,5.86545,1.595865,1.0772928571428573,3.7064333333333335,2.73772,4.26404,4.16725,3.03739,4.78431,4.80357,1.9763766666666667,5.29865,5.49818,6.65075,4.21963,6.605006666666667,4.325695,1.7462666666666669,2.817686666666667,4.481915,4.6616,2.6503166666666664,7.285699999999999,1.152957142857143,3.3005999999999998,2.176885,1.7308,2.35763,2.7794333333333334,0.36555,2.8108766666666667,3.7207000000000003,3.554055,2.4284,3.6268333333333334,2.377686666666667,2.46416,2.2614575,9.003155,5.02155,1.9592300000000002,5.32665,2.386387108695652,0.7780916153846154,2.6975266666666666,7.455732666666668,1.7250139999999998,4.374105,6.162908333333333,1.48518,1.5725925,1.3919075,4.153215,3.251135,4.429315,4.16449,2.3975066666666667,3.685535,1.077726,2.9227826666666665,3.991175,4.1812,5.11445,2.633725,4.93434,4.344825,4.1766,4.677645,5.61705,4.97094,4.068305,5.81935,1.768242,1.8833175,2.79808,3.48824,1.1724222222222223,4.04562,2.335506666666667,3.3436333333333335,4.26283,3.3380666666666667,2.396853333333333,1.49214,3.1672266666666666,2.822385555555556,2.6839733333333338,2.89359,1.9602733333333333,2.00297,2.398565,4.01499,4.11199,3.81989,4.334585,3.34682,2.341245,2.92779,5.0355,3.8691999999999998,4.680945,3.35592,2.2968,4.501608333333333,1.7320733333333334,4.1885,4.725483333333333,5.858104761904762,3.861005,4.21063,5.49445,3.15962,3.768038333333333,4.60948,3.29314,3.7533035000000003,3.526025,1.4051525,3.228605,1.73388,2.30015,5.04985,5.1566925,3.7533035000000003,4.01968,3.377335,1.528685,3.41009,2.124255,2.3636,2.122405,2.678575,1.6253948484848484,1.6253948484848484,1.6253948484848484,0.5230181818181818,0.7757022222222223,2.0303255555555557,1.0584825,3.661425,1.3781183333333333,3.806625,5.29785,4.74898,3.2724,4.051345,3.237665,4.91155,1.573195,3.184595,2.70121,3.365115,5.848525,4.081605,5.42595,4.20387,0.9714475,2.297625,1.3321833333333333,3.829205,3.914555,4.334775,5.4501,4.79109,4.11864,4.65573,4.00367,1.65923,1.14516,5.505053333333334,1.1158222222222223,1.2570833333333333,2.6575966666666666,8.099635,3.059125,3.934345,3.047105,5.6608475,1.7132725,0.999855,1.5833875,3.1784,3.56248,3.92774,3.78252,1.905895,6.35029,2.95056,0.9211375,4.78266,3.0359499999999997,2.7225533333333334,2.38529,3.4465,5.59936,2.698646666666667,3.07587,3.619566666666667,2.5816399999999997,2.7944366666666665,2.84375,2.830675,1.99757,4.799055,4.76436,4.954325,1.051371111111111,0.759469,3.961933333333333,2.6797033333333338,1.044215,2.6327599999999998,3.84358,4.17514,7.08409,4.69646,3.5681333333333334,1.754066,3.566525,3.74769,2.64058,2.513708285714286,3.987485,2.8162533333333335,4.897632,0.8433222222222222,2.68786,1.6914280000000002,3.65499,4.316455,2.014075,0.979905,3.2333,0.430395,2.91591,6.78855,5.3991,2.846548,1.515994,4.254733333333333,0.8039766666666667,2.5559933333333333,0.8039766666666667,4.00325,4.614915,1.4228175,1.5255375,5.370711666666667,1.9009766666666668,3.596665,2.45587,3.58237,1.255938,1.4961399999999998,4.00917,4.51864,5.2302,2.969588,2.699,3.27475,1.626125,2.34915,1.781035,1.8423575,4.59466,1.3844555555555556,1.3844555555555556,3.353675,5.0948899999999995,8.316931666666667,4.345853333333333,7.80478,2.198245,3.860625,4.029165,1.74955,3.5827341666666666,4.079765,2.94651,5.87185,3.070915,2.499995,2.8637566666666667,3.54944,1.099975,4.272255,4.5381,1.1419766666666666,7.776003333333334,2.76861,3.14286,3.407113333333333,5.24355,5.00315,3.8263824999999994,2.31806,2.800273333333333,1.9593800000000001,3.836266666666667,2.3490125,2.17464,7.4988513333333335,3.4427,2.8452800000000003,4.29242,22.074813824175823,0.7020266666666667,2.680145,4.28687,4.626555,8.67117,4.592435,4.468705,4.450395,7.083036666666667,3.60055,1.5306066666666667,4.810733333333333,3.21433,1.17721,1.17721,1.17721,2.4451212499999997,1.7198425,3.332975,1.591415,3.1353,1.4862333333333335,2.54637,2.535795,2.975735,1.591415,3.161355,2.63808,4.208895,4.723245,5.06905,0.7720750000000001,3.33152,2.6167,4.885415,3.45994,2.80846,2.3761675,1.7088575,2.2551075,1.478344,3.46013,1.592015,4.348845,10.941920333333334,2.7834533333333336,2.43674,4.945884166666667,4.777966666666667,4.5007,6.4802,2.3002833333333332,5.516905833333333,4.461805,0.97926,1.2098942857142858,6.474766,4.262905,2.41709,3.644165,1.9346825,3.910335,4.87663,4.45195,3.958455,1.33415,4.1451,4.761595,4.66914,6.204064,3.48249,5.54245,4.37438,4.415825,5.26225,3.7004333333333332,4.775105,2.23624,3.279585,3.12821,3.428205,4.485465,6.1001,4.61062,3.1296466666666665,3.7291666666666665,9.103325,4.863815,3.2408566666666663,3.466205,2.960505,4.54323,4.2761,4.749785,6.769266666666667,3.42586,2.6325233333333333,4.040045,2.43963,4.213785,2.3815566666666665,6.36972,1.6610216666666666,4.484805,4.696145,11.9495025,0.46744142857142856,4.419355,5.26155,0.6730714285714285,3.665055,4.195145,4.088805,0.9861190000000001,4.737465,4.9559999999999995,2.70117,10.211658333333334,3.4123666666666668,1.9013666666666669,2.216265,3.502965,6.0751,0.5601775,3.877225,2.0194175,5.53865,0.7693,4.2184,5.6116,6.21475,3.56835,6.33015,4.62119,3.5907299999999998,2.5875666666666666,2.82783,4.307065,4.660875,5.0623,5.09905,5.6669,3.103343333333333,6.441268333333333,2.721375,3.0938735,2.20672,3.861355,2.2770533333333334,1.5555266666666665,3.1907666666666668,3.041776666666667,3.29204,3.5237,3.682933333333333,3.0034266666666665,2.58766,5.7062,3.21822,3.75909,4.734385,2.574586666666667,1.1718333333333333,3.17022,3.102323333333333,3.84517,2.7670933333333334,3.0643766666666665,4.848411666666667,2.0125966666666666,1.7218325,3.02199,3.7993,4.250685,1.1095825,4.054205,3.21687,4.191033333333333,2.9405933333333336,4.773154,3.91112,3.377005,3.79769,1.74134,3.793285,0.6537125,4.61024,5.06145,17.057826666666667,2.9989666666666666,1.1743666666666666,4.095255,0.6524078571428572,2.6635,4.39247,1.848855,1.2757714285714286,3.696565,4.508285,3.0405866666666665,0.75963,2.58099,7.94343,3.78841,5.4744,4.73583,4.93854,3.0191166666666667,3.9600333333333335,3.224273333333333,7.197205,3.72817,4.79594,1.98,0.43721388888888885,2.102445,2.95353,2.432365,3.667,3.83598,2.9935833333333335,4.944855,0.7141691666666666,4.681725,3.612505,3.04517,1.1902333333333333,2.7262766666666667,2.0329333333333333,5.36905,3.9568,2.27717,1.6451428571428572,3.4879,4.448735,4.302955,6.150381666666666,2.1495366666666667,4.631245,4.37743,3.841625,1.9580899999999999,3.640235,5.992493333333333,4.742515,2.541585,4.830605,2.94852,2.804345,3.869915,3.952245,1.3362916666666667,4.57583,2.134933333333333,2.5721700000000003,5.239926666666667,5.239926666666667,5.24615,1.589918,5.1403,0.8860675,1.824874,4.97387,2.5611966666666666,1.4355466666666665,3.1291166666666665,0.92943,4.3942000000000005,4.91333,2.65429,4.97481,4.07862,3.715465,5.1859275,3.568835,3.9606333333333335,2.762283333333333,2.34045,2.82905,2.967776666666667,4.405865,1.585524725274725,2.904583333333333,4.49041,4.71516,2.2396483333333332,4.26543,4.519995,4.985286666666667,3.3925666666666667,5.11585,4.76651,5.38415,4.842165,3.587705,3.78003,3.674365,4.55958,5.74985,4.617505,4.844995,4.52582,4.66113,0.6989774999999999,4.938835,4.592595,3.974555,7.319575,4.087365,3.849545,4.383085,4.965505,3.598545,3.59532,2.11104,4.520975,1.69014,1.3744157142857143,3.67885,2.0305433333333336,2.4886266666666668,3.812155333333333,3.539,2.98503,1.0664533333333333,1.9077625,4.52795,3.573915,1.864855,1.864855,3.486055,1.607478,3.0860833333333333,4.448585,3.541665,3.70016,1.4621333333333333,2.026785,3.4517816666666663,2.190355,4.05947,4.665765,4.544005,4.03307,6.533463333333334,2.7131,3.69574,4.38341,4.3897,3.3036266666666667,4.049335,3.95074,4.284315,2.14864,2.4523033333333335,4.361175,3.9871,3.68447,3.63342,1.7060325,3.568215,4.35538,4.51568,4.240335,3.883555,3.883555,3.0721641666666666,3.759625,4.19501,4.18883,1.6654699999999998,7.5357375,3.88365,4.885865,4.31899,4.2828,3.948385,5.14065,2.94058,3.15282,2.93274,4.989605,1.9287299999999998,4.263535,5.657165555555555,5.10355,0.701327,4.7914650000000005,1.1743999999999999,4.96548,4.674955,4.481535,4.14391,5.2744,3.6623666666666668,3.6623666666666668,0.873441,2.2628225,4.96576,3.42478,4.097165,5.2779,5.57425,3.517445,4.12817,1.3750616666666666,2.60407,1.703655,1.2945875,4.310519333333334,0.8739229999999999,2.3748533333333333,3.22167,1.1672133333333334,2.233115,2.6695933333333333,1.2287366666666666,6.32051,1.9834975,2.6393633333333333,5.56225,1.8532425,2.8386866666666664,2.808825,4.558175,3.7382333333333335,3.272726666666667,3.9169,1.71118,2.1259175,4.282395,0.6487142857142858,2.18174,2.354616666666667,3.2218766666666667,2.873083333333333,1.125317142857143,0.8358166666666667,2.47097,4.20893,1.1725114285714286,2.123565,1.16583,5.21383,2.24104,5.0737,4.34884,4.26084,4.99826,5.422,4.12219,4.253335,1.52337,3.9014666666666664,1.760518,2.480583333333333,1.2513142857142856,4.38097,2.05841,7.6182300000000005,4.20886,3.801655,1.427724,6.9662825,3.8453,1.4878283333333335,4.15648,3.04607,3.774065,3.23915,1.959185,1.959185,3.3633666666666664,1.2024933333333332,1.2024933333333332,1.9580899999999999,2.8466199999999997,2.08583,1.334055,3.6405333333333334,1.0571475,3.20162,2.3574575,1.8692925,1.4977716666666667,2.179625,2.07554,0.29036588235294114,2.4205875,1.1700783333333333,2.2902533333333333,2.0723233333333333,2.56015,1.0504633333333333,1.0614979999999998,3.8723333333333336,3.13035,1.959185,1.7306775,1.9589533333333333,2.4935133333333335,2.3942,1.8620139999999998,3.19706,1.15042,3.3537,2.7030666666666665,2.5884,1.54062,0.98558,2.618225,0.98558,2.618225,0.65350875,0.65350875,0.49296333333333336,2.331145,2.39218,0.65350875,2.1926075,2.308526666666667,2.362055,1.6740975,0.7556455555555556,0.65350875,0.65350875,1.647164,1.647164,2.0327375,1.7306775,0.65350875,2.33034,0.46662461538461536,3.107666666666667,2.01848,2.51974,2.5667466666666665,2.5667466666666665,0.38558400000000004,0.38558400000000004,1.9580899999999999,1.974822,2.1403600000000003,1.9886620000000002,0.38558400000000004,3.5839666666666665,2.356465,1.605806,0.61567875,1.605806,0.61567875,9.40539,2.4412533333333335,3.9598999999999998,2.5895033333333335,2.96861,3.08909,2.928463333333333,3.4992,2.594825,1.77105,2.651386666666667,2.948206666666667,2.3786,1.647164,2.6424695238095235,2.6424695238095235,2.73081,2.142315,4.280135,2.3600966666666667,3.2875599999999996,2.6768033333333334,1.4271,2.3784225,2.3577525,0.8147754545454545,1.70947,3.562005,1.657648,3.10149,2.6034166666666665,2.700475,3.827833333333333,1.6623400000000002,3.3989666666666665,3.162803333333333,4.3299666666666665,1.267086,0.23288275862068963,1.3281828571428573,1.3281828571428573,1.0278766666666668,3.00643,3.8806333333333334,2.5546666666666664,2.1212033333333333,2.1212033333333333,2.119025,1.6039066666666668,0.993126,1.74279,1.74279,0.65350875,1.9580899999999999,2.88489,3.2187333333333332,2.3574575,2.24686,2.24686,2.24686,1.109741111111111,1.4728999999999999,1.4728999999999999,2.520075,2.8431566666666668,2.562994696969697,3.53058,2.52957,2.5476533333333333,3.465805,3.762485,6.399815,3.600625,4.54345,4.0437,13.765505000000001,5.0271,3.447365,0.933855,3.81047,3.436405,2.419765,3.698605,5.00925,7.150139333333333,6.0842,0.48535882352941173,3.671845,3.14888,3.957235,2.45202,4.27818,5.13105,3.6153,7.94274,3.5207,3.934875,3.931485,3.231624090909091,7.985742666666667,3.26542,2.6494266666666664,3.564675,3.893075,5.0004,3.921975,6.677619,3.64505,1.372328,3.221085,0.89857375,4.625625,3.15979,2.686245,3.980645,4.51626,2.667865,4.64132,3.967345,7.366835,4.025395,4.663292,2.396716666666667,5.09045,3.01775,1.0768125,1.0768125,3.45477,3.8869,2.278605,2.06456,4.08226,2.84374,2.89939,1.89059,2.020385,2.827365,2.5700166666666666,1.1155925,3.13827,4.76189,8.32423,1.532408,2.630785,3.07599,3.130735,2.78018,8.38745,4.11809,3.4811,2.9423999999999997,4.138305,3.3861333333333334,2.8772699999999998,3.1428266666666667,3.820705,3.98044,4.557035,4.16864,0.386042,1.5409833333333334,2.4804833333333334,1.7759975,4.628485,3.53402,2.6458833333333334,2.1985675,4.4177,3.71825675,2.05492,2.32728,0.8997109999999999,2.2116775,2.6173866666666665,2.6173866666666665,5.2972,1.88873,2.94491,2.2994499999999998,2.10885,1.7138733333333331,3.07958,3.82808,5.1922,4.477155,5.2747,4.74339,2.792795,2.7721999999999998,2.0553999999999997,4.790705,5.406883333333333,1.9330466666666668,2.9437166666666665,2.1512175,2.176156666666667,3.8338583333333336,2.2192433333333335,5.23205,4.011415,3.58272,4.442705,2.942213333333333,3.57208,3.921135,2.2911533333333334,2.4531533333333333,0.4137307142857143,3.778866666666667,2.71937,3.13448,6.22625,4.83024,5.761984166666667,1.8698275,1.5492366666666666,3.128435,5.17515,6.21775,6.12395,3.0380833333333332,2.20948,3.588085,2.24281,4.673445,2.113986666666667,2.434075,5.3449,4.837305,4.57682,1.7715025,1.93587,1.0993439999999999,1.0993439999999999,1.2497820000000002,0.9005242857142858,0.703998,1.8087042857142857,4.38231,9.854015,3.904375,4.3514,4.04094,5.9074975,2.74887,1.6843733333333333,3.527396666666667,2.93865,4.64247,2.34851,2.5928833333333334,2.87072,3.16801,2.1910933333333333,3.196806666666667,3.2272366666666668,2.892796666666667,3.4433000000000002,3.322286666666667,2.8805300000000003,2.7543433333333334,3.2266666666666666,2.41975,3.1114566666666668,3.0948333333333333,2.9056800000000003,3.3495333333333335,2.14542,5.75085819047619,3.1182,4.185486666666667,3.2131566666666664,2.96895,3.7543,2.8420400000000003,2.691613333333333,3.0931266666666666,3.1860166666666667,3.4621666666666666,3.1478266666666666,1.822145,2.668646666666667,2.7711799999999998,2.776825,2.776825,3.2606366666666666,3.196213333333333,2.4834166666666664,2.860993333333333,2.98218,4.1297,2.8104066666666667,2.80795,2.62251,2.901956666666667,4.248691666666667,4.886295,1.6091,3.4412000000000003,3.7308333333333334,3.2772900000000003,3.2589400000000004,3.795866666666667,3.465033333333333,2.74451,3.5039739999999995,1.948094,2.6959235,3.4243,3.3583,2.559416666666667,2.48954,4.0075666666666665,2.91398,2.9778633333333335,2.405165,1.1757366666666667,3.199953333333333,2.5645599999999997,2.1855466666666667,2.3585,3.040016666666667,3.23705,1.9323380000000001,5.666651333333333,2.3898966666666666,0.8978339999999999,4.193155,1.8561533333333333,1.5936116666666666,4.462765,3.86504,3.40838,2.288255,1.3676525,3.404015,2.825875,2.769335,0.39916999999999997,2.05266,0.39916999999999997,1.8276,1.3676525,2.559145,3.637555,2.2053625,3.226585,3.30331,0.4653986666666666,2.7914033333333332,0.9545175,0.44434294117647055,3.69448,3.938785,4.831,2.4859625,5.3535,4.02902,3.8714,2.18762,4.239133333333333,1.678558,5.76295,2.283145,4.27463,4.754765,3.0745766666666667,1.87836,2.0880633333333334,1.3629883333333332,1.836445,0.9416725,0.9416725,4.572935,2.2997466666666666,6.107571666666667,2.45978,2.556695,2.01122,2.2681675,2.2804825,6.0056,4.3677875,2.087305,2.3570733333333336,2.2681675,1.69138,3.79436,2.12293,6.381578333333334,2.45978,3.28262,3.320775,3.070726666666667,5.4519,5.02665,1.9010525,1.797945,2.3248325,2.37525,4.97952,5.21935,1.9208225,3.768265,1.5773366666666666,1.5467975,5.37805,9.83668,1.8955066666666667,2.0037,2.5010933333333334,4.29802,4.17016,1.9101575,4.77856,4.628195,2.859795,39.380373511904764,2.8582933333333336,3.0051433333333333,0.44130722222222224,4.626799166666666,2.3170933333333332,0.931011111111111,3.497665,3.58829,1.88575,1.7992225,2.40443,3.848245,1.3459514285714285,3.082192666666667,3.846,4.933815,0.93353,4.849615,5.12445,4.886375,2.82949,1.6256075,3.7871775,4.496085,3.545625,3.189375,3.629155,4.05052,11.626329646464647,2.6467666666666667,3.2333,3.867675,2.632445,4.50699,3.11451,3.046855,2.820195,5.5067,4.62706,5.07205,5.0326,2.450205,3.656355,4.318065,3.578495,4.662115,4.497875,0.1198086956521739,2.408775,5.19165,2.805145,1.6092700000000002,1.1843333333333332,1.1843333333333332,2.1651675,2.656865,3.17736,1.8185300000000002,3.0367366666666666,4.38787,2.564425,4.392519166666666,0.5778564285714286,4.797955,3.47315,4.745525,4.76245,4.54732,1.127375,0.9551025,4.454733333333333,2.9411,2.999476666666667,3.880435666666667,3.70656,6.18535,5.37025,3.948665,3.4868,2.1200983333333334,1.50903,4.352515,0.31906533333333337,3.403075,3.75927,4.058635,14.04268,1.83898625,2.967026666666667,0.62989875,4.52097,8.606705,3.41661,1.7279833333333334,5.90405,3.2470266666666667,1.0613322222222221,5.14965,2.662355,2.869345,4.872855,3.392160138888889,1.152375,6.6847916666666665,0.74114625,5.1639,3.151875888888889,1.39521,2.1200931388888886,3.206195,3.206195,3.844025,4.30277125,1.3675125,2.37636,2.85305,3.701665,3.469235,2.58275,3.241415,3.48184,6.758286,6.3456,4.02615,3.287015,4.584315,4.47564,3.54252,3.40708,3.613205,4.012885,4.778995,2.547286666666667,2.5861366666666665,1.650635,2.31801,2.238455,1.5512325,3.3131299999999997,3.659466666666667,3.455133333333333,3.286,2.5868800000000003,1.4637733333333334,1.5315466666666666,0.4724536363636364,2.7768800000000002,1.6692285714285713,1.8381575,3.6513333333333335,2.4784133333333336,2.6183633333333334,0.95133625,2.312045,2.464755,2.814595,3.56317,5.39105,3.72272,2.99767,2.2534033333333334,3.407515,4.47905,2.278215,4.870425,1.995555,3.72844,2.777035,4.15011,1.3695833333333332,0.6106469999999999,2.2982725,3.295455,3.18736,3.94095,4.71688,8.8364,3.3224633333333333,2.2471366666666666,1.7490766666666666,1.737274,1.737274,2.9500766666666665,2.4084333333333334,4.87072,4.687315,3.497615,4.91124,4.172795,4.2549,3.166340833333333,4.62466,8.31109,2.504875,0.50047,3.224413333333333,1.37246,1.0230557142857142,1.7158766666666667,0.8066800000000001,2.1600875,5.4483,4.998695,6.0029825,1.1342025,7.16638,2.03232,1.5417100000000001,2.5061733333333334,3.904285,3.2515533333333333,2.3173125,3.644465,3.0317233333333333,4.323833333333334,2.89064,2.7253366666666667,2.9960833333333334,7.03027,2.480265,3.891995,3.808841666666667,3.5059875,1.3756599999999999,1.221135,4.25704,2.829693333333333,3.5139333333333336,5.6425275,2.54166,1.9381,2.293575,3.26191,3.9022,2.43017,3.7843725,3.06094,5.46305,2.47707575,1.9195575,4.83057,5.44695,4.2034,4.01928,1.5196533333333333,2.24595,1.92589,3.38425,1.5163666666666666,0.8936983333333334,2.6348833333333332,2.107475,2.0101375,4.48379,0.7507116666666667,5.700635,1.376455,0.7802736363636363,3.615066666666667,4.017225,0.6601785714285714,3.4436005,3.2685737500000003,0.8358166666666667,4.090045,0.1775459523809524,0.1775459523809524,0.1775459523809524,0.1775459523809524,0.1775459523809524,0.1775459523809524,1.958882,3.776375,1.958882,1.958882,1.8759499999999998,0.1775459523809524,0.1775459523809524,3.3800000000000003,2.5740833333333333,3.247875,3.380225,2.25125,3.58389,1.307292857142857,1.5642179999999999,3.303635,1.337324,2.6381900000000003,2.6338733333333333,5.729093333333334,4.29948,3.88252,6.56775,4.5664,4.77455,4.20902,4.11413,7.542625,4.064466666666667,3.746366666666667,2.40223,5.01529,2.59604,2.14171,1.7725166666666665,4.69972,5.54165,5.0819,5.259,5.47145,4.265555,4.57853,0.7130072727272727,0.702055,0.702055,4.642115,2.3186766666666667,3.721815,1.0122057142857144,4.59191,1.4684000000000001,2.3332833333333336,2.6059,4.5258,4.5258,6.84155,4.93933,1.328805,9.526705,2.9428866666666664,1.2854555555555556,5.1421,5.10295,3.503605,3.00322,2.5429,4.337933333333333,0.78232,3.2925166666666663,3.4596666666666667,3.9044000000000003,3.2805433333333336,1.5017166666666668,1.4502499999999998,4.852800833333333,3.1761633333333332,3.14845,3.381933333333333,5.2934275,3.4933691666666666,0.7802450000000001,1.9541133333333331,3.5994333333333333,2.2353433333333332,3.6661333333333332,3.4469666666666665,3.1240466666666666,3.3994,3.081243333333333,2.5942233333333333,1.3069766666666667,3.1245366666666663,2.4615966666666664,3.57262,3.10358,3.78621,2.6623733333333335,3.3266233333333335,2.89725,1.615542,1.7882,2.7575233333333333,3.663766666666667,1.717364,3.22936,1.7838166666666666,3.8325333333333336,5.255621666666666,4.9615306666666665,2.56265,2.586225,2.803325,2.48043,1.6377142857142857,2.2268425,3.3453246428571433,2.4473925,3.6419333333333337,2.76507,3.733594,3.11685,1.2437555555555555,1.2815425,1.794775,2.2384325,2.993646666666667,3.5726666666666667,5.09545,8.133,2.60533,5.3103,3.70913,15.242177333333332,0.480857,11.0807375,0.830081111111111,3.259425,3.6839,2.865486666666667,2.880175,1.5780239999999999,1.474182,2.4271966666666667,1.214456,2.7421733333333336,2.0378066666666665,2.7456099999999997,2.0504866666666666,2.7156366666666667,1.5356133333333333,0.6530183333333334,3.1958266666666666,2.4594766666666668,2.9762233333333334,1.109741111111111,3.3172766666666664,0.75067,0.34940307692307687,2.0017866666666664,4.435115,4.706855,4.392325,0.7748263636363636,4.009675,4.60717,1.13091,2.324625,5.487030000000001,3.484395,3.798295,3.869925,3.92105,1.98574,3.789055,2.66589,2.742785,3.550625,2.723835,2.780275,3.91027,3.238665,3.700565,2.05478,3.448655,4.53587,1.3102466666666668,4.57488,2.23025,3.9865,5.325203333333333,1.99202,2.75192,2.9854566666666664,5.784795,2.46799,3.24583,5.01845,3.9598999999999998,4.12887,1.7350433333333333,2.71285,4.399415,3.5528,4.25208,3.5529333333333333,3.1308133333333337,2.9685433333333333,4.187833333333333,3.3203533333333333,2.697036666666667,2.8231466666666667,0.45411888888888885,2.391115,2.1094,4.532205,4.7422,3.11561,2.7020700000000004,3.31995,7.905835,3.4560837500000003,4.04551,2.809006666666667,4.368525,3.041565,3.7218225,2.7638200000000004,2.2354575,2.7132233333333335,6.4867,4.730065,2.073186666666667,3.34398,2.993715,2.6384133333333333,4.2701226666666665,1.776786,6.116569999999999,3.839895,5.05715,4.427595,6.4656,3.64258,6.808228333333334,3.60521,3.18152,0.6254085714285714,2.19145,1.4975975,2.81699,3.34981375,3.85049,4.12351,5.14695,2.69328,4.70346,3.7324,3.6311999999999998,3.4184,4.563435,4.828145,4.496955,2.7359266666666664,5.805465,4.68723,1.560335,5.39885,3.51623,2.670465,2.23477,2.27475,4.420699333333333,1.2342657142857143,2.43053,2.0092525,3.90399,4.110635,2.643056666666667,3.532033333333333,3.0345940000000002,2.22122,3.942035,1.344814,2.3330433333333334,2.366966666666667,2.7928200000000003,2.56384,2.62059,2.7224466666666665,3.9035,2.9642866666666667,2.7867566666666668,4.02832,2.24146,3.71436,3.597505,1.687984090909091,1.687984090909091,4.492925,2.6969100000000004,1.79474,1.30387,1.9845525,1.9593025,1.2916940000000001,1.44331,0.659826,1.6215566666666668,1.4784666666666666,3.005043333333333,2.24791,1.7073866666666666,2.003346666666667,2.3132566666666667,1.4747700000000001,1.7562433333333332,1.8098666666666665,2.524725,3.945605,2.85928,2.9423033333333333,2.704125,5.6569,2.952775,4.35549,3.926618333333333,1.964735,4.087265,2.903795,1.791525,3.628885,1.685345,2.8148,3.58389,1.9502,4.8427,3.77846,4.14196,3.3468666666666667,0.7797877777777777,4.860785,3.917875,3.36443,3.526435,2.2238533333333335,4.30197,4.87227,4.948287499999999,9.137259166666666,3.416405,4.41404,3.0735533333333334,3.55498,4.58544,2.400615,2.68589,4.035485,2.10362,5.965965,1.8539819999999998,2.616225,5.59256,2.9514333333333336,4.357965999999999,1.1805371428571427,4.512485,4.327325,3.1279,4.947575,4.78714,6.518575,15.856557916666667,0.6182058823529412,1.0504633333333333,3.0440766666666668,4.02174,3.74386,2.1125975,3.28611,4.10164,5.0104,2.49774,4.62848,1.7511666666666665,1.7511666666666665,5.1865,0.7562227272727273,1.7391960000000002,3.07042,3.978965,0.37483999999999995,1.9290233333333333,3.99814325,1.1789166666666666,3.0249699999999997,2.77599,2.97739,8.07446,2.5398866666666664,3.9750666666666667,1.9759833333333334,2.21093,3.6136525,3.468185,3.40441,7.3551538333333335,2.0465425,2.739825,4.535905,6.62021,1.9148333333333334,2.2946466666666665,2.6404,1.36575,2.49628,1.71435375,3.919425,3.58956,1.4899675,1.8828376666666666,1.8828376666666666,2.894553333333333,5.65,4.138515,3.79943,4.61065,4.24474,3.24311,3.861685,4.26323,3.52783,4.27863,3.644275,4.43649,0.8922399999999999,0.359689375,5.23755,3.855305,2.41603,7.96634,1.6163333333333334,4.689566666666667,3.923845,0.3507525,2.0034466666666666,1.3475366666666666,1.83362,2.064083333333333,5.446657999999999,3.121115,3.197045,4.683895,4.683765,4.63349,0.5864438461538461,2.082975,0.604842,5.840856666666667,1.413456,4.96494,1.9135375,3.1428875,3.247985,4.015525,3.991675,5.28745,0.8619509090909091,3.122505,3.85961,1.8416725,1.72381,3.6491,3.17426,3.76682,3.8489125,5.543919047619048,4.73884,5.84345,2.8230166666666663,0.6907966666666667,3.4507666666666665,3.66015,0.5250446153846154,4.02601,3.98068,4.15652,3.11638,2.662123333333333,5.28635,3.191655,3.15051,2.20467,3.918525,1.706934,4.366505,3.690785,0.5996223076923077,3.90662,3.972945,3.255315,4.052575,4.45936,2.658455,3.87233,0.620966,3.1237100000000004,3.6797444444444443,4.548435,3.6322666666666668,2.543375,3.465533333333333,2.543375,5.03945,3.14294,2.8877699999999997,1.4363083333333335,3.29236,1.8023425,4.127585,2.809343333333333,5.13197,3.19347,2.7326866666666665,3.0353833333333333,2.43636875,2.43636875,2.43636875,2.251183333333333,1.0795483333333333,4.651235,2.255673333333333,1.6987166666666667,4.116433333333333,2.5312666666666668,3.0455366666666666,3.891505,5.72725,3.28429,1.8280225,1.039554,4.01703,1.94,2.1665533333333333,2.99761,3.333415,2.0448525,3.499355,2.800115,1.665052,5.0631,4.174875,3.38107,3.714045,0.7539744444444445,2.38684,4.61768,7.613825,4.25976,3.04494,4.370565,3.403535,3.783045,1.7101325,2.561625,4.574465,2.0903975,4.376705,3.31965,5.2162,8.479383333333335,3.96667,3.322585,3.38728,4.99596,3.990605,3.1568925,3.1568925,3.955055,3.869158333333333,4.206385,3.802795,4.23632,4.54677,3.992265,1.1118875,4.27664,4.14115,5.25445,7.947055,5.0114,3.820644,1.8339800000000002,1.5426366666666667,2.3389937499999998,4.791205,3.89007,4.91433,2.1525933333333334,4.05867,5.03095,5.23325,5.00125,3.1021433333333337,3.33011,4.055455,5.1313,4.47716,3.778325,6.665586666666666,4.45456,2.2347466666666667,4.96088,3.87668,3.861505,3.78375,4.493115,0.7994072727272727,4.29924,4.472615,1.1821985714285714,1.2469620000000001,4.85633,4.483475,9.041078500000001,4.89455,4.200845,6.0139,2.940305,2.55432,4.99933,1.6962775,1.6962775,2.86184,1.6489500000000001,2.937925,3.4646333333333335,1.94581,4.282426363636364,1.3917466666666665,2.11887,5.58791,3.351911666666666,3.66541,2.964235,4.155865,4.23444,2.9941433333333336,0.9822655555555555,4.04745,3.05673,3.96202,4.147185,3.71767,5.6171,4.791645,4.59412,4.65474,5.19175,6.5425,4.741035,3.286495,3.256635,2.0407025,2.0407025,3.87816,3.979955,2.309696666666667,2.818913333333333,2.2064542424242424,2.7344666666666666,2.0442466666666665,2.0442466666666665,4.30473,3.544865,2.078305,3.602905,2.6855,2.00784,1.2164,1.132011111111111,2.723735,0.44419684210526317,0.9414155555555556,2.888835,3.807605,0.4489154545454545,3.73979,1.91498,5.54355,3.474875,7.0223075,4.34013,5.1453299999999995,4.825435,5.0713,4.100525,1.941515,1.7707540000000002,3.640635,2.93582,3.74882,1.3437066666666666,3.15169,4.66367,2.76345,2.55332,2.505585,4.155445,3.29072,3.21461,3.93554,3.609645,3.31636,3.188975,1.0583257142857143,1.7758,2.24987,2.90156,4.311465,7.42671,0.9116139999999999,1.51522,1.51522,1.865066,3.89109,2.7782,3.03082,5.2576,2.893126666666667,1.2104325,1.2104325,1.2104325,2.955465,2.96529,4.666555,3.171715,4.26665,3.33682,3.67991,2.983055,3.3202958333333337,3.61125,4.2672425,2.6941775,1.2916940000000001,3.084385,2.6941775,3.54783,1.3539766666666668,1.9521499999999998,1.8132525,5.416554,2.98538,6.234844000000001,5.416554,3.249464,1.9186016666666665,1.9186016666666665,2.202735,6.03974,1.9186016666666665,2.18651,5.5637,2.181035,2.58667,4.59839,3.486145,4.01386,2.1636533333333334,3.268975,4.61283,2.2157033333333334,2.226095,3.90455,2.1636533333333334,2.65049,1.923315,5.56641,2.42841,1.11648,2.511005,3.143155,3.1571676666666666,1.88424,1.999761,3.60125,1.8584026666666666,1.534525,3.28218,2.237425,3.25955,3.31115,2.090266666666667,3.01773,2.242605,6.3069,2.44358,3.033395,3.08063,3.08063,8.866216666666666,1.1137966666666668,2.88234,2.590465,3.376205,2.150035,1.2338966666666666,1.2338966666666666,3.48074,2.232165,6.741985,2.349765,3.518585,3.27852,7.05447,2.611685,2.52125,5.83478,5.83478,2.5002,1.6193825,1.313405,1.313405,1.6193825,2.0537199999999998,1.27976,1.1790383333333334,1.6128666666666664,1.9509699999999999,3.732485,1.910135,3.32847,2.83256,3.132805,2.68401,2.70904,2.06026,3.3930125,3.3930125,6.15694,2.38349,2.93318,3.004655,3.338645,2.287,2.804655,2.28751,5.3992474999999995,1.9970425,1.6466743333333334,1.4822893333333333,2.434517666666667,5.57515,4.486037666666666,3.7915916666666667,3.28665,1.705585,1.705585,1.705585,4.95769,2.404155,1.1790383333333334,3.43329,3.559805,1.3832075,5.329175,3.2238075,6.65418,4.22409,1.638395,3.552365,2.4571666666666667,2.11719,3.666545,4.51501,3.06812,1.644085,2.183425,2.96962,2.828805,4.72395,2.073095,3.32411,2.62522,5.80424,4.83087,2.0801,2.2864,5.33888,5.12797,5.31224,6.00161,1.081068,1.081068,2.860234,2.860234,0.728784,5.14181,2.91574,5.26278,4.39477,5.35688,2.13306,4.333254999999999,4.333254999999999,2.1854,3.38418,3.768485,1.173286,4.2649,3.19246,3.30357,2.482985,4.6579,2.544275,2.403015,3.14812,2.879685,2.960555,5.07387,2.26703,1.618795,3.652075,6.18569,5.91084,4.44427,2.787145,3.98946,2.232795,5.49482,2.61918,3.39352,1.921105,6.89198,3.78704,2.221455,3.20689,2.782945,5.02987,2.312375,2.985545,2.819,7.12007,4.71983,3.381065,2.07608,2.24495,6.42089,3.17685,2.65029,5.78945,2.982895,2.99032,2.73266,3.06747,1.8873233333333335,2.01037,1.5608199999999999,1.7855033333333334,1.96314,1.9516533333333335,1.613705,2.0780966666666667,1.54691,1.8873233333333335,3.66544,4.27177,2.12245,1.636605,1.636605,3.493943333333333,3.493943333333333,3.1022799999999995,3.1022799999999995,2.778875,2.17393,1.78522,3.9577,2.2098125,2.2098125,2.4121275,2.4121275,2.94511,2.132345,4.51805,2.1876,3.111265,2.136623333333333,2.136623333333333,1.30569,3.92716,4.74611,1.3539766666666668,4.46517,2.090266666666667,2.167135,4.14325,3.139335,1.834805,2.409165,6.68161,2.04801,5.8308,3.08473,3.283875,3.176155,2.40722,5.68821,3.17245,2.266145,2.531818076923077,2.656465,6.40658,3.61352,1.4876340000000001,1.4876340000000001,3.64497,5.07147,4.76407,5.27395,2.773015,2.813555,1.55262,2.927965,1.53183,3.034855,1.91912,0.8117300000000001,0.8117300000000001,0.8117300000000001,2.0180075,5.16936,2.0180075,2.011705,3.480345,1.626945,2.307965,3.94362,3.32361,5.33448,1.5836733333333333,5.11445,1.5836733333333333,1.5836733333333333,2.300675,2.03678,2.287515,5.5459,2.287515,2.483165,3.65397,2.065595,1.73145,2.74607,3.0531566666666667,3.3019458333333334,3.0778199999999996,3.50079,1.3209633333333333,4.00416,0.7622245454545454,4.241135,4.3135475,2.6871799999999997,2.6871799999999997,0.7114754545454546,4.0205,2.7661433333333334,5.6864,4.920845,4.04005,5.38745,4.338855,4.00827,5.2616,4.25404,4.308575,3.79833,3.903765,4.86285,5.31675,3.2984,3.54199,4.097135,2.459283333333333,1.2594319999999999,4.294255,3.50988,3.381985,1.262112857142857,3.77291,3.9659,6.1644175,1.0463675,5.51575,4.15546,2.218985,1.970555,3.209545,3.619415,1.65467,1.4876340000000001,4.294925,5.0594,2.70736,4.66335,3.0906,1.13741,3.2322066666666665,1.2065628571428573,3.114126666666667,2.11537,3.01097,1.90767,2.6378033333333333,4.21186,3.314995,4.508565,3.240145,2.20025,4.66635,4.40315,3.18055,5.4319,4.25782,2.7359633333333337,5.90385,4.775405,3.1301433333333337,2.6193833333333334,2.4159,3.0420933333333333,3.26552,2.76891,4.967665,4.14834,3.803405,2.4666566666666667,2.64729,2.3916233333333334,2.4145566666666665,2.3028866666666667,2.35095,2.280256666666667,2.3157575,1.3397125,2.934260666666667,1.195745,1.749385,1.687245,2.7126,1.719975,1.86852,3.78677,4.426915,1.9879175,4.02926,3.68858,6.550504999999999,2.0973666666666664,1.6314959999999998,6.6981,3.42077,4.510735,4.45442,4.05107,2.24759,3.750395,2.373245,2.82275,4.340605,0.7058741666666667,4.130135,2.1272066666666665,0.7798972727272727,4.7355,4.56366,4.000065,1.8771464285714288,4.864275,6.09275,2.817816666666667,3.471633333333333,2.481203333333333,2.1704,0.604518,3.2956800000000004,2.976525,4.941065,2.40298,2.1469525,3.492155,1.026265,1.9211133333333335,1.9211133333333335,2.766645,1.9211133333333335,3.898895,2.740165,4.46856,4.316495,5.90075,13.511457499999999,3.18153,4.827405,2.73916,4.70089,3.10674,6.25047,2.8360266666666667,4.832635,4.847815,4.092125,1.1410933333333333,4.631845,3.155,2.6197,1.0227444444444445,2.16932,3.371135,6.870265,4.068795,2.8466199999999997,4.7066,3.3633666666666664,4.233365,4.40498,4.515415,2.96356,2.88371,4.030235,5.57915,2.37581,4.333235,2.0338175,2.0338175,3.094135,4.997385,1.0331225,4.186590000000001,2.3706725,4.82711,2.59747,2.6248066666666667,3.107326666666667,2.23829,0.7295642857142858,3.500285,2.7708866666666663,5.32615,4.59227,0.2296446875,5.021,4.536535,4.14729,6.600176666666666,2.9085866666666664,2.873146666666667,2.1199266666666667,3.102676666666667,2.74864,1.2995066666666666,2.8869666666666665,2.5167733333333335,1.4038833333333331,3.179373333333333,3.066796666666667,2.5823466666666666,2.8817533333333336,1.2212316666666667,4.20963,2.5762,4.9249,4.025945,3.7319,1.64489,2.47439,1.2552025,1.819815,1.2552025,5.08495,3.363566666666667,1.524132,2.3365025,3.996255,3.792635,2.971955,3.938555,0.3511695,1.2561516666666668,3.853265,4.30889,6.3861,1.6949825,2.7521966666666664,3.0990566666666663,2.1322466666666666,2.67232,3.793705,4.71297,2.3454075,2.125783333333333,2.7896300000000003,2.662386666666667,2.6977966666666666,4.45109,2.012105,4.50206,3.8219141666666667,6.19715,7.391225,0.740658888888889,0.854196,3.881615,6.787017499999999,2.10798,3.582405,1.6514133333333332,1.6514133333333332,3.43967,0.4426733333333333,3.549745,3.724965,2.68634,3.813475,3.257615,2.64451,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,2.34351,2.857975,4.1413,3.233415,4.363747500000001,5.4835475,2.97202,2.24342,1.022385,3.388755,0.6761625,4.93435,2.69093,2.1524,0.6761625,2.28948,2.731025,0.8245025,3.8215975,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,4.23736,1.5339925,4.469645,4.670955,1.8105,4.87076,3.820475,5.18135,4.527058333333334,3.401334642857143,3.333695,4.64814,1.93267,5.429505000000001,4.56045,0.7853357142857142,1.4311,1.353557142857143,3.10285,3.10285,3.013275,3.95381,4.28323,3.68208,3.904955,2.80618,1.9649066666666668,0.67836,4.18845,3.033165,2.68289,4.314955,3.34637,3.0098,5.3235,4.479085,6.658189999999999,4.148115,4.456655,5.9019,4.83985,1.400132857142857,3.066,5.34267,33.03454775721501,1.2607333333333333,4.278745,2.92141,4.532885,4.064655,4.8227,4.90119,0.4165071428571429,5.37075,4.41976,1.957645,1.977295,3.68607,1.62957,2.48116,2.172205,1.7734025,2.85867,2.3942,2.835585,2.69022,0.5988653846153846,3.08785,3.81049,0.3587605263157895,2.4402766666666666,2.74484,2.69653,3.878165,1.75693,4.471745,3.985945,3.148805,3.599805,3.10796,4.142975,2.920485,3.87854,2.1278425,5.34267,3.49753,3.19247,2.78696,1.69781,3.80174,3.38857,6.85359,3.33871,4.969005,6.013380000000001,5.294907,2.345195,4.52233,6.2355275,7.8460399999999995,2.53068,2.518265,4.67883,5.74346,4.241475,3.25439,5.307829999999999,2.77705,1.64645,2.25767,60.605144970760236,5.0727,4.27307,2.573375,0.84353,2.6722633333333334,3.011343333333333,3.4183,0.77705,4.39136,0.7786866666666667,7.546339642857143,1.94,3.3709666666666664,1.751622,2.675105,2.5329866666666665,3.07944,2.4200233333333334,2.2294899999999997,3.5778,1.5444033333333334,5.437928333333334,3.9736333333333334,1.464295,3.0265799999999996,1.3227033333333333,1.5233625,7.33136,5.93635,3.367735,3.86099,5.353605,1.4923857142857142,3.622033333333333,3.239185,1.655525,5.6061,3.530075,3.92992,1.565965,2.89854,3.561733333333333,3.93749,5.45315,4.15343,4.24476,2.1900625,3.8236,4.535233333333333,3.050216666666667,1.419996,4.246165,3.387366666666667,4.05065,5.0748,3.980775,3.703995,4.722545,4.43354,4.327035,4.538025,3.794165,3.1528833333333335,3.98509,4.108985,3.158645,4.058005,3.778475,1.73082,1.73082,4.261085,5.00945,5.0756,3.29411,4.72817,3.4122333333333335,2.777415,5.2613,5.1743,0.7476854545454544,5.36025,6.6417325,5.63485,5.69535,1.1509444444444443,3.096655,1.0341066666666667,1.0341066666666667,1.0341066666666667,3.77838,3.3815666666666666,2.6214766666666667,3.6110333333333333,0.961701,4.87634,5.548,3.016485,1.61513,2.016395,4.128775,3.944965,3.76818,3.1361100000000004,6.9056,3.6519,2.523143333333333,4.58654,6.85705,2.400355,4.193135,3.846175,3.271585,5.64855,4.80294,4.955595,5.8941,3.02129,3.60949,1.9437166666666668,1.9437166666666668,0.7114990909090909,8.632568000000001,2.12156,5.6276,5.72005,4.12753,5.4575,3.793415,3.0093483333333335,4.73753,7.4394725,5.682581666666667,2.4339033333333333,4.338515,1.0001799999999998,3.762205,1.90963,0.9472777777777777,1.2017642857142856,2.47904,2.92324,2.914266666666667,1.0991414285714287,2.5296,2.9866233333333336,0.9030611111111111,2.78175,3.101933333333333,1.6577179999999998,1.9166060000000003,2.9887766666666664,3.049186666666667,2.7083999999999997,2.499893333333333,1.6872599999999998,5.1087,4.290955,3.659675,4.14961,5.0632,3.20441,4.568065,6.58865,5.27675,4.62226,3.92427,11.291588333333333,8.758199999999999,2.86912,3.68163,2.0579366666666665,3.8196,3.2707,4.675315,1.004215,4.123,3.634915,1.5372116666666666,4.080355,2.9273366666666667,4.39452,2.69675,3.86431,6.956,8.169126666666667,3.767475,1.5706866666666668,1.5706866666666668,1.5706866666666668,4.97557,1.1767716666666665,1.475875,0.4546105555555556,4.424120833333333,2.995976666666667,3.32338,0.980556,1.15390875,3.182085,4.224875,3.63053,16.668950976190477,3.958545,4.60793,5.80854,2.64937,3.4231,3.199445,0.9384133333333333,1.3629325,3.801855,3.68322,4.27908,4.4473,4.4034,3.66264,2.7982893333333334,3.508215,5.3448,0.546195,4.52524,2.290645,3.75681,4.9443,3.4642,2.47971,4.026516666666667,1.88372,3.633375,5.9139,3.11847,2.974325,4.167385,4.03673,4.623815,3.888775,3.55034,3.9722,4.62373,4.64335,3.589875,4.57863,3.83234,1.1512457142857142,1.37651,5.846152,6.3555,3.92181,4.76628,2.5912,2.769213333333333,2.58065,5.897406666666667,1.901095,2.06458,2.94005,2.9143833333333333,3.4244,4.57308,3.064995,5.255191666666667,1.120285,4.66936,0.9251999999999999,4.178925,3.36548,1.7032916666666664,4.520015,0.9808677777777777,5.08765,5.6342,4.930985,4.03572,3.821155,3.835605,3.0336200000000004,4.977605,6.1195,2.872418,4.02307,2.42167,2.62896,2.04173,2.55144,3.50624,5.28645,1.0571475,4.46198,1.40289,3.364515,1.6240633333333332,1.0571475,0.18859702702702702,3.72989,3.060135,2.270716666666667,1.9675666666666667,2.706915,1.08285,3.987055,3.63094,4.757345,2.5739466666666666,6.1341,6.8044925,2.776096666666667,3.4573,2.69528,0.8021140000000001,2.7024666666666666,6.2701,4.796375,5.47535,4.88998,2.0804566666666666,1.3427466666666668,3.8911375,1.602495,2.1852175,1.699465,2.1515725,1.73399,1.9316775,1.9804875,2.1666125,1.86335,1.4857857142857143,1.3523425,2.12384,2.59935,2.3196625,2.324943333333333,0.5221846666666666,1.2780179999999999,2.65686,3.2829566666666667,1.9834975,1.7725733333333331,1.5232325,3.259335,2.2503733333333336,2.708775,3.477725,4.47119,3.834275,2.9457166666666663,4.19208,1.5886492647058823,3.5721887500000005,23.7533955,4.64256,5.82055,4.35002,2.040836666666667,3.929995,4.86874,2.20645,5.53475,3.4428666666666667,0.8053525,3.074765,4.639835,3.672725,4.16423,1.4710466666666668,2.039496666666667,2.5043233333333332,2.2371,1.518857142857143,3.5578333333333334,4.98429,4.244775,3.334105,3.876765,4.98702,3.552645,4.55963,1.16900625,2.855365,4.08989,4.872325,1.8644380000000003,3.2996366666666668,1.7867625,1.7867625,3.52468,5.17805,2.9263866666666662,2.862773333333333,4.060615,3.894005,6.667092499999999,4.728865,2.26104,1.3629325,2.91455,4.30086,3.20162,2.6424695238095235,2.6424695238095235,3.3671,4.979715,3.77053,5.186017777777778,2.36835,3.522114888888889,0.5993322222222222,0.5993322222222222,0.5993322222222222,3.371245,3.855835,4.222521666666666,5.65345,2.00297,4.59682,5.114,5.29155,3.274855,5.2906,2.36737,1.3531385714285715,4.0575,3.917835,0.467765,4.148666666666666,4.850765,1.56518,5.10025,4.908015,4.53652,4.360535,3.686025,2.83962,4.621875,1.674326,4.44942,1.6123516666666668,4.24366,5.8587,1.18531,3.1186,7.235575000000001,3.67133,3.381133333333333,2.0872025,3.72072,5.5951,3.0572166666666667,7.572911666666667,4.225625,2.204493333333333,3.0869700000000004,2.7259666666666664,2.40728,2.761176666666667,1.86115,4.459785,0.553155,1.9378950000000001,1.9378950000000001,3.20265,3.73273,2.2328125,3.152925,4.24419,5.43115,4.4407,1.7103599999999999,4.574105232142857,4.403255,4.8426,3.548205,4.333067166666667,3.8483365000000003,0.48473066666666664,2.813425714285714,1.06122875,0.48473066666666664,4.319285,0.8327033333333334,4.22651,4.06445,6.548089,2.150916666666667,1.03091,1.166778,2.27665,3.0194233333333336,1.7412466666666668,2.388123333333333,3.266895,3.71403,2.0614033333333333,2.38311,4.39209,3.06932,4.037225,6.2811,3.497705,5.15595,6.713756666666667,4.401175,3.552235,4.471265,3.688815,4.429945,5.1661,5.63619,5.3839,2.3489999999999998,0.9498422222222221,3.620275,3.78697,4.03418,4.197075,4.076775,5.0355,2.548,2.53999,2.9467966666666663,2.33168,1.9226999999999999,2.710646666666667,3.1445333333333334,2.2989533333333334,3.7321,4.608535,4.202295,5.39025,2.47596,3.6522,2.9016,0.7300714285714286,3.947945,3.58587,4.415365,2.7582133333333334,5.196303333333333,2.985965,4.982895,3.65896,0.5636615384615384,0.5489757142857143,4.389935,2.719832,3.05045,4.543295,4.188195,1.671238,5.3134,4.13142,2.58597,2.6891366666666667,2.308325,2.1402758333333334,3.3882666666666665,3.1783533333333334,3.0737799999999997,2.94272,3.5022333333333333,2.594425,3.0755866666666667,3.9536333333333338,4.360435,0.55680375,0.55680375,0.55680375,3.2804783055555555,3.476566666666667,3.7136666666666667,2.6916433333333334,2.7947666666666664,1.1118875,2.9548566666666667,2.9838466666666665,1.8162175,2.80922,2.3986933333333336,0.9887944444444445,2.7223233333333337,4.60554,9.879055666666666,1.5327381666666666,0.562495,3.73654,0.562495,0.562495,0.562495,0.562495,2.11676,3.9102655,4.03507,4.9092,6.0135,2.8264333333333336,2.6810766666666663,3.0768924999999996,3.3361833333333335,4.834045,1.1243783333333333,2.370976666666667,3.165983333333333,2.5085366666666666,3.1084133333333335,4.288575,2.18692,2.52908,1.2289,5.46085,3.053955,3.227655,0.8686625,0.640305,0.640305,0.8774196086956522,1.7460821086956522,0.8774196086956522,0.8774196086956522,0.3029126086956522,0.3029126086956522,0.8774196086956522,1.4044233333333331,2.45106,3.00125,3.1444166666666664,2.565706666666667,2.8060033333333334,3.2575633333333336,2.7612633333333334,4.52086,3.710305,1.8723625,2.2722966666666666,1.8030875,0.18803870765832106,0.18803870765832106,0.18803870765832106,0.18803870765832106,2.4856833333333332,2.45447,0.910224,4.934055,0.7984545454545454,1.644904,4.6838025,5.68035,4.657445,2.8454,4.38069,3.42967,1.61737,1.294145,3.805425,4.500475,6.5498,2.353205,1.3975233333333332,1.8996433333333334,2.940996666666667,1.4447233333333334,2.76439,2.8513333333333333,3.3137333333333334,4.368145,4.012975,3.049125,4.836095,2.5390166666666665,3.953,5.86745,3.927685,4.180415,4.65364,5.246639999999999,4.8646575,3.014842571428572,4.841843333333333,4.251485,6.63695,4.430005,4.652085,2.3059275,3.020415,4.24983,5.1657,4.29556,3.923965,4.0444,4.10748,3.961375,2.4910166666666664,5.45085,3.478285,7.6074275,6.14685,5.81575,4.95795,1.496242857142857,0.9539070000000001,0.6519346153846153,1.814826,4.991275,5.2978,4.074255,1.6331440000000002,4.30611,3.059545,5.0666,5.52075,6.2525379999999995,4.11957,2.961825,1.646414,5.3437874999999995,4.075435,3.15163,1.774295,0.9821,3.936615,3.337875,3.555715,3.566275,2.41609,4.483915,1.6765100000000002,2.949063333333333,2.65004,4.342815,6.47935,4.96424,2.293845,1.51073,5.68985,2.9254,8.73677,2.9633,5.2477,5.975,4.5371,5.6274,3.675795,5.38815,2.230885,3.946245,4.761928,2.5868,4.33666,4.457025,7.654579999999999,5.1148,3.199533333333333,3.872545,4.020775,3.06932,3.490145,5.2813,5.6968,2.4897475,2.90171,3.30515,2.22434,2.375365,4.27362,5.8575,5.1951,4.68231,4.881675,4.24112,4.930245,0.7030307692307692,3.0304866666666666,1.1833057142857142,31.854157415954965,2.43442,4.54909,3.13229,4.493085,1.723074,2.496636666666667,3.4310286904761904,1.9254711904761903,1.9254711904761903,1.9254711904761903,1.9254711904761903,1.5055575,3.527,0.3214011111111111,7.847553194444444,0.3214011111111111,4.17472,5.00705,2.033375,5.2759,2.916,3.8695546666666667,2.37624,2.48009,2.7641299999999998,2.227323333333333,0.6201769230769231,2.59167,0.7445925,3.2998133333333333,2.2281999999999997,2.384938,1.22196,2.384938,6.29975,7.9939800000000005,4.47196,4.246705,5.6146,6.19335,7.451473333333334,3.135305,1.51689,1.51689,2.3532066666666664,5.06935,3.690505,4.583915,6.307285,3.971075,2.629615,3.772225,3.40316,3.558505,2.159795,0.7021740000000001,2.016975,4.091815,4.134485,5.1571855555555555,2.0672525,3.667285,1.212586,3.205985,1.321016,3.279006666666667,3.035083333333333,2.42556,3.386433333333333,3.0491200000000003,4.96197,0.6108015384615384,3.461855,3.6091333333333337,2.6180533333333336,2.4287,4.177266250000001,3.444366666666667,1.91573,4.73011875,3.43748,5.3038,4.122885,3.6547,5.71295,5.03335,2.0750533333333334,5.66635,2.382266333333333,1.7175433333333334,3.18005,2.53384,2.8937500000000003,2.524035,1.8814766666666667,3.295325439393939,4.1922,3.4534562500000003,2.33013,2.33013,2.52193,3.820355,3.998955,0.6619536363636364,3.46356,3.108135,8.69029,0.8758272727272728,4.25047,3.464055,5.65295,3.6983,3.84197,2.313,4.075505,2.694785,5.6681,2.6385183333333333,3.817035,2.6880966666666666,3.783225,2.706046666666667,3.67681,3.75911,3.920265,5.2487390000000005,3.36402,2.010005,5.2951,2.52475,4.487875,4.783905,4.68609,4.632385,4.02504,2.878185,2.200816666666667,2.8918433333333335,2.54556,2.724675,3.1929499999999997,2.729819761904762,4.923473333333334,2.8489466666666665,2.357416666666667,6.409864166666667,4.995627916666666,3.8325625,3.1075,3.7571666666666665,4.06835,3.42388,1.8882775,3.7429975,4.842125,4.900945,1.4160766666666669,3.84916,2.6248766666666667,7.126425,4.754895,8.94064611111111,4.033605,3.695795,2.043625,4.07638,5.696295,7.82151,3.96809,5.81489,3.837545,3.278885,3.881545,1.776786,4.299599,1.5063733333333333,3.63349,4.727495,3.483333333333333,0.8569166666666667,9.223259333333333,1.2237888888888888,1.92782,2.5067366666666664,1.9730933333333331,3.446566666666667,1.3559266666666667,3.61781,3.922865,2.2005033333333333,4.33144,1.1754674999999999,3.63735,1.3942933333333334,3.0975915,4.08095,5.2235,1.592715,5.8412179166666665,2.593280666666667,7.84313,4.47199,3.0221,4.050185,3.368435,1.2011745833333332,7.81505,2.91471,3.251045,2.4082,4.11828,2.12882,3.0997275,2.34005,4.030945,1.4152275,5.8637,2.766265,4.25649,0.916122,1.837845666666667,3.831945,5.0649,5.19352875,1.716252,1.716252,5.92545,4.24277,6.3213,3.755735,3.438805,9.17215,4.549595,5.4875,4.063345,2.564825,2.1139542537122376,0.40524250000000006,0.18612548387096775,0.61645770609319,1.0922540476190477,0.619401198156682,0.18612548387096775,1.3308075000000001,0.4303322222222222,1.4974965476190476,1.9472652060931899,1.84788,2.2471475,2.22109,5.1807,6.491708333333333,4.72125,5.20895,4.512585,5.0651,1.19865,5.0322,3.803285,5.69175,5.1299,5.15845,5.4448,6.03955,5.5489,1.2051483333333333,1.284297142857143,1.9073579999999999,6.049061,1.289996,5.572,4.73534,6.908615833333334,4.666535,5.44575,4.47997,4.677115,2.565275,5.6351,5.43355,4.451286666666666,4.946465,5.8221475,5.4703,3.8187587499999998,4.248775,3.7518,0.999572,3.6900333333333335,4.35661,1.17091625,3.643966666666667,4.535315,4.3375575,5.05045,2.47503,3.192175,2.6526866666666664,4.54947,2.2228125,3.62791,1.2462366666666667,3.150515,3.7575,4.073735,5.719,3.3537624999999998,0.5816941666666667,6.14445,1.008645,3.659215,2.92258,3.719195,2.00402,3.88219,3.776417948717949,3.2305333333333333,4.48283,15.924708571428571,5.328573333333333,2.1265125,8.46371,1.470485,3.949435,2.9426433333333333,2.875666666666667,2.01653,0.1879482608695652,2.8263366666666667,4.40896,1.76634,2.1800366666666666,3.258993333333333,1.828155,2.23027,1.5453428571428571,3.29979,4.46655,5.01555,3.484495,0.48554142857142857,2.35347,4.61155,2.707145,4.207295,4.457735,4.186975,5.4656,0.49044529411764703,2.5101066666666667,2.5101066666666667,5.28025,4.719595,4.90264,2.66765,3.5461333333333336,2.8768499999999997,5.2081,3.504405,5.467509444444444,4.63647,4.363915,5.33665,2.554975,1.9659980000000001,4.340535,3.85306,3.84434,3.4347,1.824492,4.94993,4.350645,3.770185,4.44393,3.87975,4.012415,0.6193306666666667,2.97281,0.6038341666666667,3.1065133333333335,3.44286,4.127115,17.71333476190476,3.472875,3.77895,2.4571666666666667,0.94444625,2.079003333333333,2.5884,1.54062,2.368495,2.49914,4.466375,2.245,4.006755,4.740535,2.12828,4.404595,2.8379999999999996,4.544675,4.72572,5.44435,1.72934,1.6495,2.39365,4.33797,4.84812,1.1708666666666667,5.2994,3.658095,5.6504,4.76533,1.7721333333333333,4.656135,3.35404,3.64306,3.92767,3.7903,3.292066666666667,0.65734375,7.752485,1.4627620000000001,0.2107811111111111,0.2107811111111111,0.2107811111111111,4.635555,3.953405,2.7014833333333335,4.205435,2.923625,4.631425,4.412125,4.0847066666666665,8.503866666666667,4.162095,7.100451666666666,0.886465,0.77578875,2.479275,4.38409,4.272705,2.2135633333333335,5.4913,5.30515,3.429185,3.504595,4.34127,2.2342299999999997,4.76971,4.5782205000000005,2.2902533333333333,2.80944,2.935916666666667,2.66825,6.08855,3.52592,0.6637335714285715,3.629335,3.69118,4.14499,4.882163333333333,4.90859,3.15622,5.4475,3.63249,13.583754583333334,4.534145,6.898550083333333,2.4503366666666664,6.503975,4.204565,3.87459,2.07554,2.253510416666667,9.9499,2.321893333333333,4.378033333333334,4.1132,3.6957,3.627333333333333,2.781406666666667,2.0825925,2.3137275,3.0688,1.800798,3.9026,2.3639966666666665,2.611756666666667,3.3533666666666666,3.616766666666667,2.4593,2.4593,2.482596666666667,3.490866666666667,3.4032999999999998,2.1952266666666667,3.5178666666666665,4.300533333333333,2.8238833333333333,2.74063,3.7532,2.3691733333333334,2.1029175,3.9649,2.8190333333333335,1.623498,4.099233333333333,2.3687766666666668,2.4470733333333334,2.9329,2.29969,3.385033333333333,5.582185,2.353146666666667,3.836766666666667,1.8705,10.484938,2.002013333333333,1.7746366666666666,2.11656,1.0278766666666668,1.603858,4.547743333333333,2.8182460000000003,2.8182460000000003,1.6474920000000002,1.5567533333333332,3.78646,3.777258333333334,2.2373833333333333,1.5619666666666667,1.71118,4.737357333333334,3.6984666666666666,4.1344666666666665,8.323673333333334,2.939985714285714,2.6422933333333334,3.2428983229813664,4.4286,2.1029175,3.3805666666666667,2.66257,3.27937,3.538028333333333,0.890795,3.355252,2.8641566666666667,2.8081833333333335,3.851585,3.1822966666666663,0.6554036363636363,1.9349792857142858,5.4497,2.5732975,3.3531,1.584865,1.584865,2.08993,3.795281666666667,0.9505079999999999,2.264975,4.410596666666667,4.410596666666667,0.6583142857142857,5.911741,3.55355,3.78624,4.669755,1.234367142857143,3.324503333333333,3.5983666666666667,5.354859166666667,5.3213799999999996,2.1260333333333334,0.639189,2.4984266666666666,2.6172,3.0608453333333334,2.16124,2.35078,2.8751933333333333,2.34546,2.495296666666667,0.8001409090909092,5.1115,5.2782034285714285,1.3231233333333334,1.8145714285714285,5.58225,2.135895,1.57464,4.14295,1.6037120000000002,3.65134,2.6532,3.7103333333333333,8.751566666666667,4.336525833333333,4.44008,5.11775,2.382170909090909,0.7593270000000001,1.9933939999999999,6.976073333333333,1.7312733333333332,4.182055,3.829185,3.375035,21.356806166666665,3.29893,1.3690499999999999,1.09179,3.11824,1.4350133333333333,4.357965999999999,5.2692,3.3599635,3.4133333333333336,1.41388,1.6066183333333333,2.9705600000000003,0.58893125,3.5259666666666667,3.7296,3.0952866666666665,2.5052633333333336,2.6368566666666666,2.8692466666666667,2.0747166666666668,3.0320199999999997,1.614938,3.6483000000000003,1.38199,3.941825,3.94696,2.4920766666666667,5.42135,3.158015,3.836455,5.24895,4.643935,3.2847633333333337,2.95908,2.3242499999999997,0.9371542857142857,0.9371542857142857,0.9371542857142857,2.44088,3.4763,2.5994800000000002,2.4970733333333333,2.2218566666666666,1.9021225,3.711035,5.02505,3.712865,6.681315,3.117445,2.602025,1.8870525,0.94814,2.4837933333333333,3.97161,2.47005,2.73681,2.4600066666666667,2.445863333333333,2.6169533333333335,2.8634533333333336,2.7283866666666667,2.7085833333333333,2.30166,3.4715333333333334,2.0500633333333336,2.2515625,1.54427,1.625615,3.0590833333333336,2.7875033333333334,2.044865,3.91445,5.12015,2.8794033333333338,2.5620519230769228,5.9009133333333335,4.213485,4.640525,5.4732,4.39546,4.301,6.2257725,1.19707875,4.10939,2.677865,5.3013,4.92961,3.88015,3.463205,2.1220175,7.794675,2.80861,0.8270575,7.31412,5.14789,5.656460476190476,4.509755,2.85167975,1.651865,5.01435,4.19938,4.450275,5.1442,2.496175,4.19931,4.29374,1.8030875,3.91548,2.77065,1.36883,4.693355,0.6050470588235294,4.0413033333333335,3.41421,4.61785,2.94382,1.66699,3.25326,1.955835,1.4909375,2.7904699999999996,3.1840200000000003,3.2394933333333333,7.276075256410257,1.6528825,6.401825416666666,9.567685,6.1918175,2.91331,1.3576657142857143,2.7762533333333335,1.3576657142857143,2.9123033333333335,2.1239033333333333,0.28426705882352943,1.1083720588235293,0.28426705882352943,0.28426705882352943,0.28426705882352943,1.1083720588235293,1.1083720588235293,0.28426705882352943,0.824105,4.667685,3.4027,3.25917,3.459975,3.682695,4.554285,2.7405146666666664,1.634696,6.709481666666667,3.14582,4.06478,2.7031333333333336,1.0152545454545454,1.2154075,4.555645,3.446975,1.1205555555555557,1.40469,0.684559090909091,2.927598354978355,4.27774,5.15875,3.4846333333333335,5.433350000000001,0.5547623076923076,4.143605,2.9226987500000003,2.8476033333333333,2.5039633333333335,3.7025333333333332,2.5265400000000002,2.93833,2.6641733333333333,2.964425,3.647105,4.920215,5.02745,2.30892,5.0763,4.210425,3.26662,3.91694,3.45507,0.35324866666666666,4.933495,3.584115,3.007725,2.941758,4.220425,3.955015,1.94306,3.026,3.908965,7.892255,5.03875,5.3423,4.713745,3.9117525,0.9041225,2.1677,1.989785,1.420695,1.8759499999999998,4.451325,5.51375,4.163825,4.881175,3.1361100000000004,2.763281666666667,0.9317083333333334,3.98543,1.234605,1.1729883333333333,3.31513,3.76276,4.65221,1.27505,2.413816666666667,8.917066666666667,3.1332066666666667,2.7061275,0.8235175,3.470325,12.337943333333333,3.415895,4.18303,3.047285,2.906595,4.66152,5.11495,2.10774,4.22061,0.5611130769230769,4.68694,2.1926075,1.8381925,1.8381925,3.5249666666666664,4.36841,1.5699866666666666,3.74583,1.27562,3.646495,2.6761350000000004,3.473933333333333,4.771405,3.5372,3.9583576666666667,2.677375,2.723542666666667,2.723542666666667,10.920825,0.726282,2.75383,3.1614133333333334,2.1187575,1.97659,0.87148,1.412765,1.1625614285714287,2.088295,4.6332,2.38067,4.17824,2.0259833333333335,3.79923,3.92043,1.7095333333333331,2.0301275,1.0375183333333333,5.983006333333334,2.00675,2.106275,1.678558,1.826436,1.09179,2.3289999999999997,3.66977,2.1028766666666665,3.2165266666666668,2.5243533333333334,2.712593333333333,1.7294066666666668,3.0731533333333334,2.57377,1.811,1.9186866666666667,2.86266,2.37173,2.5891100000000002,1.1558466666666667,2.52122,2.0720066666666668,2.2026666666666666,0.31313473684210524,0.41184249999999994,2.3147733333333336,2.1186366666666667,3.3365,3.058126666666667,2.79135,4.89266,5.70545,4.395435,4.71431,4.34118,3.998845,3.05753,3.751135,0.7460127272727273,0.06173613636363637,7.03225,0.06173613636363637,3.448235,2.965805,4.96845,3.507685,6.37445,4.750645,2.02688,2.5380566666666664,1.0396583333333334,5.5492,6.37685,3.9863999999999997,5.56285,1.80055,3.594555,1.8357176086956521,3.080826666666667,3.2684599999999997,3.93181,5.005158333333334,3.206895,2.29157,2.29157,4.107055,7.6163,3.520805,2.17099,2.39484,4.420885,2.871345,4.92346,3.34866,1.0026722222222224,4.08456,2.467963333333333,2.38896,4.252965,1.1196266666666668,2.4025866666666666,3.81837,3.382205,4.939785,2.928795,3.019295,3.96968,4.026465,4.234305,4.88813,4.21605,3.2637969444444446,3.813695,3.138716666666667,2.73483,2.57405,3.8241,4.117465,3.0364566666666666,4.9131825,4.37029,3.73152,5.28325,4.47782,3.381175,1.44707,1.3634375,4.076415,3.4738,1.5534666666666668,2.8450733333333336,3.22903,3.2465833333333336,3.902992222222222,3.12405,2.1873075,12.446720416666667,2.0964566666666666,1.840578,4.431025,0.9852080000000001,3.26755,3.62653,4.58002,3.09209,1.2651999999999999,2.2352333333333334,2.5739466666666666,1.4377739999999999,4.047195,0.94379,0.94379,3.572256666666667,1.4581933333333332,2.1140633333333336,1.6645725,3.18155,4.648055,1.883635,2.76394,3.386328333333333,2.7281933333333335,2.5883933333333333,2.00728,6.4658,5.57525,3.556185,0.6660661538461539,3.916865,3.526755,0.9954727272727273,5.59475,3.288116666666667,8.395116666666667,5.03385,4.812815,3.6,1.5457075,3.085835,4.86361,4.447455,4.04647,3.633585,4.410515,3.036705,3.5019333333333336,3.5019333333333336,4.1251,2.706748333333333,4.34306,1.782945,5.416944166666667,5.178815,1.56518,4.57089,1.02155,5.54545,3.97114,4.911495,4.52696,4.33884,2.61096,2.55965,3.64615,4.279755,4.888665,4.103465,1.8950975,1.3905159999999999,4.436925,2.0510433333333333,5.3859,3.04896,3.44414,7.875065,3.774405,4.43761,5.3213,4.036665,4.48191,8.443345,4.05896,3.29636,8.85062,3.640995,0.5841492857142857,2.0339728754578754,4.64717,0.600112,4.809165,4.4009,4.635975,4.492165,3.313345,3.619015,4.54123,4.81403,2.71405,0.7224428571428572,4.72246,4.55128,4.48449,4.241525,2.7967166666666667,4.476065,3.59835,0.6233139999999999,3.406285,4.31515,2.5374,3.10049,4.129505,2.2564533333333334,5.5141,5.22425,3.703175,3.1603733333333337,5.545636666666667,5.545636666666667,8.638353333333333,2.01192,0.88904375,0.88904375,24.024628333333332,2.610375,7.718218333333333,0.3507525,1.3475366666666666,3.0456,1.0021900000000001,3.763915,3.78636,2.0473325,2.0473325,4.105795,4.975945,3.647155,2.6705466666666666,2.6705466666666666,3.597665,4.448175,3.901315,3.3930000000000002,2.0513266666666667,2.5645483333333337,3.935053,2.09175,3.59526,2.83746,2.7410492857142854,2.7410492857142854,3.372833333333333,0.8307444444444445,2.5254666666666665,1.5362166666666666,3.2419966666666666,2.7792166666666667,2.826,2.5215433333333332,4.553215,2.40198,2.9314766666666667,5.365119,1.22121,2.20891,3.134865,2.4254333333333333,4.07678,5.933109126984127,1.3846066666666665,3.6322666666666668,2.4191125,5.06265,6.45174,1.5083775,5.122936666666667,4.973226666666666,3.1840260000000002,4.619033333333333,1.0469142857142857,1.8644380000000003,3.07625,3.7774319047619054,1.2781683333333334,2.360125,1.7318025,1.840644,2.63917,3.675734,5.290864,0.97926,1.3804785714285714,2.9056800000000003,13.26212,4.63311,2.6223,1.0119914285714287,2.562785714285714,1.0036857142857143,3.2131566666666664,4.1476516666666665,4.928175,3.4898666666666665,5.45075,1.442815,3.7543,3.97159,2.8420400000000003,3.799331111111111,1.9650433333333333,1.1077177777777778,2.5451433333333333,3.0172633333333336,6.721835,3.058773142857143,2.5741466666666666,0.733321,4.689566666666667,3.6390999999999996,1.04325,5.6744975,2.0241975,2.1577066666666664,5.668,1.2565333333333333,3.0303833333333334,1.027509090909091,2.969993333333333,4.304985,2.7834833333333333,3.0919066666666666,2.286023333333333,2.4025966666666667,4.484685,4.71821,5.067,1.7142375,4.59442,3.56538,4.234063333333333,3.2772900000000003,2.5102266666666666,4.196792666666667,0.879026,2.919160476190476,4.687525,2.736875,3.969484583333333,1.3300125,2.74451,1.938476,1.938476,6.796925,3.13487,5.235551666666667,3.34598,1.75636,2.7498142857142858,4.611403333333333,5.4697499999999994,8.456486666666667,4.5907100000000005,2.6386625,1.5026933333333332,1.9975143333333334,3.975573333333333,3.77319,1.437912,2.04348,3.0960383928571424,1.1326825,3.23705,18.727050666666667,3.1392633333333335,2.7976266666666665,2.8695766666666667,3.0012133333333337,2.2879133333333335,1.8541466666666666,3.06334,3.6489666666666665,2.56241,2.5837733333333333,5.666651333333333,2.3898966666666666,4.844536857142857,2.841840857142857,2.732836857142857,1.4485666666666666,3.7141055555555558,2.1211525,3.84917,5.02735,3.69887,3.5714241666666666,3.2200666666666664,2.1977066666666665,3.497866666666667,3.5333666666666663,3.5359,3.3674666666666666,0.8347227272727273,5.38705,2.394045,3.119596666666667,2.7505494444444447,1.76042,2.092093333333333,2.092093333333333,3.2933166666666667,1.9591133333333333,4.71368,4.2457,3.49417,4.243755,4.908415,4.591145,4.591145,3.853395,2.974603333333333,4.54401,2.652975,1.6290980000000002,2.431826666666667,4.35977,4.01123,2.705525,3.36329,5.3595125,3.625166666666667,6.363038261904761,2.8766,0.8206239999999999,0.8206239999999999,3.3517,5.17505,3.82045,3.5039739999999995,2.43376,1.8764,1.5130133333333333,2.935313333333333,6.084244,1.4526183333333333,4.080595,3.7303333333333337,3.903105,5.19085,5.0732,4.6010306875,3.245233333333333,2.329295,4.380415,3.66694,2.0212725,1.1137460000000001,3.96432,2.7753,6.489599999999999,3.7142999999999997,2.69924,3.26464,3.786605,3.65773,4.6708,3.060855,4.547185,3.72235,4.297175,3.802965,3.62763,3.62325,3.813105,2.641176666666667,4.339895,3.026885,5.2901,0.6115888888888888,2.3460425,1.767385,2.1501875,1.9182625,2.6652333333333336,2.6450299999999998,1.8131933333333334,4.32961,5.28811,1.8302766666666666,3.95941,4.46067,2.4454125,5.743188333333333,4.027359583333333,4.684265,5.1021,7.087669999999999,2.0113499999999997,2.9505933333333334,1.7852166666666667,2.67385,1.704335,1.767235,4.044415,3.719475,5.4591,1.008901111111111,2.92575,4.141165,2.2769825,5.33295,3.683985,2.573975,3.7609666666666666,3.445,2.0627575,1.93738,2.759575,3.260175,3.446775,2.0131325,2.7983985714285713,2.7983985714285713,3.60345,3.440525,20.523454285714283,1.1845833333333333,5.308393333333333,1.88306,1.9651866666666666,3.522515,3.799125,1.89059,3.772765,4.722735,1.2352416666666666,1.2352416666666666,1.22096,1.80895,2.2105633333333334,3.1485366666666668,4.536513333333333,3.23959,3.5681666666666665,0.4846531578947369,3.37418649122807,2.0180000000000002,2.21584,4.494985,3.426955,4.01733,3.4836,4.51228,4.52342,2.0720025,3.99369,5.74346,2.353065,3.60819,5.28225,2.28797,5.09725,6.15145,1.2981685714285713,1.9275680000000002,3.444366666666667,0.6971642857142858,3.32567,3.273485,4.888805,4.89418,2.822385555555556,7.825378333333333,2.9800133333333334,2.7782400000000003,0.44434294117647055,4.12142,5.3664773809523805,3.241954761904762,5.26365,3.79228,2.491162666666667,1.7552119999999998,5.490023750000001,4.331085,4.142415,2.948325,1.9965725,3.609315,3.936033333333333,3.02819,1.9794075,4.01144,5.93346,2.76793,3.88992,3.576885,3.87767,1.5893285714285714,1.5893285714285714,3.2519466666666665,2.976786666666667,4.45327,4.6579,6.66455,3.389105,2.780425,2.1850775,1.4587183333333333,1.3596142857142859,4.861225,5.489615000000001,5.1426,5.89525,4.544565,6.5435799999999995,3.62929,2.8227766666666665,3.8383173333333334,2.1351366666666665,3.0747795,1.577126,4.49257,2.3786,4.060565,4.946465,4.10052,2.784283333333333,2.9254,1.307292857142857,2.536675,3.7270333333333334,1.90061,0.60578875,3.090996666666667,2.570003333333333,2.2989533333333334,2.3065366666666667,2.10732,1.6050499999999999,0.7088145454545455,0.7088145454545455,3.6951666666666667,1.7548075,2.186455,3.127665,5.99975,4.20027,6.14975,4.246855,4.401815,2.0558116666666666,1.25117,2.50557,5.07415,0.85612,3.339975,2.9441,2.752275,2.09815,4.056095,2.675935,2.02035,1.06031,3.55561,7.987175,3.550865,1.550982857142857,4.310325,3.16605,2.590465,3.51633,2.80552,1.7527533333333334,1.0210325,3.66707,2.414105833333333,2.2533,1.6390099999999999,2.3518399999999997,2.268543333333333,2.5752200000000003,2.89183375,1.2646266666666668,1.8457433333333333,1.0478725,6.491685,5.6108,5.96285,4.02016,4.978975,2.9240666666666666,1.6699910256410255,4.743645,5.1428,2.605685,5.05715,2.09763,4.61516,1.0167644444444446,4.08119,4.269095,1.8991175,7.84058,3.53623,1.8272325,1.9078475,1.78125,2.59665,3.375966666666667,1.2450376623376622,2.9139233333333334,5.92795,3.31821,4.016395,5.569,5.2108,5.93255,0.90857,4.183015,4.6209,4.26487,4.888785,4.114693333333333,4.757625,4.824315,3.014945,1.6092700000000002,1.6092700000000002,5.41115,5.9746033333333335,2.997885,2.656633333333333,4.087015,4.87371,1.517302,4.10906,5.53645,3.726775,4.031155,2.85548,2.8414966666666666,5.10565,2.3934367500000002,10.860577964574642,1.8938033333333333,0.8183175,2.5815266666666665,1.6783925,2.49911,2.2725525,1.986664,2.803463333333333,5.14345,5.5287,2.8850766666666665,1.7319833333333332,6.641156904761904,1.6042571428571428,3.1095400000000004,0.5259190476190476,4.045859999999999,5.7689,3.685575,4.80156,12.067575,5.3886,3.238023333333333,3.3050533333333334,4.14058,2.8996033333333333,4.58781,0.93448625,1.059285,0.7962181818181818,5.6723,4.005955,1.869888,4.982640666666667,4.510085,6.57845,4.860945,4.92916,4.30961,6.19985,3.96538,5.2998,3.24792,1.222308,3.823455,5.313,2.69907,4.096035,3.17134,2.297955,1.22033,5.2692,3.94621,1.2888625,3.4352666666666667,2.9986599999999997,2.3936566666666668,2.51542,2.5479133333333333,2.9423333333333335,0.6976154545454546,2.5464966666666666,2.665853333333333,2.6315,1.8814866666666665,2.98874,1.910685,1.3907533333333333,2.3059025,2.1142075,2.1089075,3.3303,2.864103333333333,0.676964,2.6312166666666665,3.15566,4.558335,2.25478,3.63667,5.46775,5.2638,3.40002,3.925635,1.353557142857143,3.419885,2.47906,4.352273333333334,2.7048975,4.758745,5.61915,4.84416,4.50562,4.160066666666666,1.023242,1.023242,2.193675,1.616475,3.97107,2.5380585,2.5380585,5.1233,6.2906,3.15315,1.1700783333333333,1.6391571428571428,6.0098,3.524785,2.3065,3.195135,2.840395,3.30822,2.3065,4.6887675,3.27208,2.971497916666667,2.67256,1.981735,3.018345,6.85815,2.775195,4.88408,4.33801,6.6402,6.56535,6.667875,6.667875,5.5789,5.04635,0.6209184615384615,5.03715,5.3376,3.0018,2.969,8.142906666666667,2.795,3.97283,3.68114,2.472776666666667,4.4945,2.298615,3.2391550000000002,3.0493799999999998,3.3570666666666664,2.47449,1.360308,1.360308,3.62704,3.768405,5.288,1.818922,1.564918,47.52189265151515,2.5342166666666666,0.8781918181818181,3.165926666666667,1.7584475,3.416533333333333,2.80343,3.2357566666666666,3.231605,2.6477333333333335,1.8305233333333335,0.98696,4.431545,3.26569,3.52621,3.82338,5.0392,5.03305,5.04965,5.11605,5.40185,4.785105,5.478,6.2600925,5.1492,5.4534,2.06474,3.783895,6.7825,5.26645,3.41617,3.74445,3.313495,2.46387,3.943675,4.535335,3.0729933333333332,4.2049666666666665,1.609114,4.43374,1.344814,3.25698,3.81484,3.47054,6.54685,3.99603,1.971295,4.085055,3.97182,3.978415,0.93965875,2.777745,2.82405,4.4215438095238095,1.1634925,4.298905,1.292865,5.966,0.7197933333333333,3.892438666666667,10.0092075,4.44626,3.440565,3.25238,1.84295,4.184485,5.73985,3.06298,4.438395,9.426061666666666,3.498333333333333,1.9926066666666669,2.7583033333333336,2.7887766666666667,2.7755266666666665,2.7538022499999997,2.1009366666666667,2.58338,3.0373066666666664,2.698893333333333,3.06841,3.435545,2.2691833333333333,1.70475,4.643399333333334,3.9632666666666663,2.6475,5.068592,2.8716733333333333,1.01371875,2.26227,2.9494000000000002,5.617033571428571,2.957675,2.0303255555555557,2.0303255555555557,1.5994125,1.79278,2.22264,1.9791699999999999,5.893545,4.3790275,2.3866,2.8844433333333335,3.7797666666666667,2.04067,0.67504,2.6107466666666665,1.91535,0.5824076923076923,3.853605,2.531125,2.65085,3.65968,3.5720208333333336,2.39319,1.6069466666666665,1.085965,2.092945,3.63704,3.8025,4.238334999999999,2.8666433333333337,4.08532,3.673265,1.0859545454545454,8.986725,2.72505,3.52176,1.2907,2.64632,2.2673125,2.2673125,2.2673125,5.0012,5.6242,1.499785,5.1495,1.452094,5.5748299999999995,1.501274,4.16296,4.362465,4.185755,5.15655,4.242725,1.887045,8.62227,3.82146,5.18685,3.28432,3.808425,3.2674833333333333,3.1059633333333334,3.807655,2.536493333333333,4.430078571428571,4.374443333333333,1.6046275,3.972635,1.6046275,3.637595,4.475539166666667,4.957285,4.475539166666667,1.7600566666666666,5.7765,4.395835,4.34225,2.6975266666666666,2.990153333333333,4.337285,3.155985,4.867505,0.5186814285714286,2.877796666666667,2.993323333333333,5.037475000000001,4.941075,2.3811625,4.869495,6.554595000000001,3.229925,2.44588,2.68764,2.09017,3.71078,4.06731,4.68202,2.53702,3.85235,0.877013,5.51305,3.428135,4.31222,2.31615,3.1023099999999997,2.31143,2.8038866666666666,2.7476000000000003,2.7482900000000003,2.959415,2.356465,2.356465,4.248691666666667,2.830015,4.74531,11.497675000000001,0.9650299999999999,4.526145,2.41073,2.2814900000000002,2.81629,1.475875,7.3688095,3.3407666666666667,3.49488,3.741886666666667,1.8887466666666668,4.007433333333333,4.141401055555556,1.9432433333333332,0.4737677777777778,1.501786,1.514735,4.886375,2.90769,3.30298,3.7599833333333335,3.513495,2.19236375,5.06625,4.830765,3.75371,4.55795,2.177315,3.926015,2.4935133333333335,5.426396666666667,3.03659,5.26835,4.073155,4.82721,4.35079,1.98167,3.872715,3.59943,3.25529,3.783005,2.76599,3.13404,4.072755,3.296295,2.7712333333333334,4.48187,1.5175983333333332,3.57892,2.854,4.733775,4.10698,3.773085,5.1274,2.360565,4.460035,5.0013,4.085715,3.0763033333333336,2.00783,3.02398,2.27288,0.86381,4.582245,2.04532,3.485445,2.789645,4.100145,3.462705,2.97305,3.107515,4.068035,4.536666,4.044815,3.07877,1.5176,3.428525,2.549255,0.9481211111111111,4.15313,8.616695,3.40539,3.61851,4.268085,5.09505,3.84689,2.08767,4.04311,3.874215,3.327,3.18979,3.87064,0.6149925,1.2240057142857144,6.8212275,1.8814525,2.61464,4.995624,2.47503,2.433325,2.756245,7.71748,2.73133,3.98523,3.813635,0.7544077777777778,3.4296,2.6376,3.766725,3.995805,6.116383333333333,0.663617,3.25373,9.83147,3.182905,1.0613322222222221,5.137407083333333,4.63823,5.4025,4.15723,4.51905,3.13771,2.6034166666666665,6.992845,0.801877,3.538285,3.95827,3.20759,4.40507,2.35685,4.243295,1.7001833333333334,4.23974,4.10419,3.981205,1.6354775,4.419265,4.446905,2.33673,2.031795,2.154215,1.04325,4.252345,3.3599635,1.4464219999999999,8.48654,5.89855,4.56859,4.189565,3.52216,4.388275,1.4687428571428571,4.373795,3.935985,5.3101,3.7615,2.44096,6.615987799145299,1.0052025,1.0052025,2.5884133333333335,0.9371385714285714,4.194505,2.668483333333333,1.0254975,1.7370166666666667,0.40026249999999997,6.23445,0.9714475,2.70721,3.76316,4.010875,3.77648,4.13058,5.56805,5.660715,3.095475,3.12033,2.37178,4.29696,4.419735,4.263545,3.919845,3.76518,6.2843,4.494975,4.306148888888889,5.270024,3.63497,3.29536,2.336395,3.29536,6.930626,41.892616589826844,3.70092,3.473775,2.917263333333333,4.527325,4.344775,3.47746,3.51325,3.89182,4.360585,4.150365,1.6885833333333335,4.91212,2.69288,4.885535,5.3511,4.97063,2.41446,4.583365,3.86842,3.927895,1.5181179999999999,0.6490976923076922,1.793176,3.7485666666666666,2.908193333333333,1.3028875,2.99429,2.63596,2.8003966666666664,3.5348333333333333,2.976343333333333,1.469304,2.5584433333333334,3.8960666666666666,1.9715297554697555,2.723663333333333,3.1316420000000003,3.17727,2.6097233333333336,3.5804666666666667,1.208511111111111,3.562925,4.008635,1.2801366666666667,1.2801366666666667,1.2801366666666667,1.2801366666666667,2.932184848484848,2.0835466666666664,2.406045,2.852095,4.87653,5.08335,4.373675,4.294225,5.58445,4.65964,2.18613,5.69055,4.741965,2.68038,3.996545,2.975785,4.24688,4.272265,0.7268330769230769,1.41862,1.5628666666666666,4.203765,3.93217,4.104105,4.03656,6.069904999999999,2.27089,4.36202,1.6393149999999999,3.467885,5.05815,1.60762,5.35945,0.701545,4.582835,1.224588,1.15965625,3.644115,4.132745,5.0761,5.06745,6.0721,4.25762,1.517792,2.826755,1.4607575,3.55506,3.289555,2.491162666666667,2.00709,2.83206,1.3356366666666668,3.665475,5.142,2.9808,5.73835,120.93725564357864,0.4827022222222222,4.83105,2.40026,4.783395,4.138865,3.05165,1.5410525,0.34286285714285714,2.871735,3.851565,5.69425,3.84165,3.50148,4.44941,4.4385,5.71585,8.266263333333333,0.6883533333333333,2.605815,0.97033625,10.062377999999999,3.061735,3.58425,0.9202044444444445,2.177035,2.659335,2.1231725,3.351933333333333,2.9662900000000003,2.402016666666667,4.33774,3.004583333333333,2.31838,2.22979,4.12297,3.298695,2.87117,3.61481,3.73435,3.410635,2.3299133333333333,3.873335,3.928095,3.031485,0.9131611111111112,2.63852,4.33774,4.708375,5.32985,4.02799,4.43217,1.75308,10.908750000000001,4.01594,2.68596,4.354225,5.3535,0.545646,0.545646,4.1006,4.1006,3.129885,3.5160666666666667,1.8068402272727273,0.5536266666666666,2.91806,4.313315,4.31919,3.26641,4.236375,5.338570000000001,4.64518,2.2032875,4.57867,2.2574825,2.7055,3.987181666666667,1.714805,2.112975,0.4769385714285714,1.1808025714285715,1.1808025714285715,1.857315,4.53791,3.64987,4.79369,6.458044,2.753445,2.991895,1.894605,2.000185,3.8906625000000004,3.42655,4.826366666666667,2.371375,4.826366666666667,4.441675,3.63591,5.9536,3.71117,2.42516,2.01848,2.51974,1.4162325,1.4289275,1.5232975,1.77436,1.6163775,1.6424625,3.9700333333333333,4.850275,2.381825,6.90865,2.874966666666667,4.3226,3.284875,4.120535,2.981116666666667,2.8728166666666666,6.112913333333333,3.3266466666666665,4.413201333333333,3.1778099999999996,1.4373,2.5302966666666666,2.5505400000000003,2.2034166666666666,6.21335,4.5400975,4.77012,12.348154063957972,0.7098366666666666,2.0132494999999997,2.2418225,1.600976,1.2819057142857144,2.479805,2.4513725,2.499105,2.3066,0.7487346153846153,1.9502425,0.49327263157894735,4.35291,1.94761,3.4172,4.341175,2.618225,5.5008075000000005,3.954315,6.91804,4.029495,2.852365,3.12333,4.62017,4.73505,2.624084285714286,4.632175,2.1266675,2.1266675,5.00945,3.872615,4.143245,4.05667,3.4324999999999997,3.95862,5.14505,5.0957,4.71486,4.184455,4.60614,4.372615,2.509395,5.0983,1.199155,4.80842,4.523325,2.5099133333333334,2.1431,5.2438,1.5347216666666668,5.2035,1.941725,5.762170108695653,4.15367,3.832885,1.5020066666666667,3.0813433333333333,3.0813433333333333,12.16052,3.94978,4.32811,1.12651125,4.380796,2.09533,1.4794775,2.2244775,1.7171125,1.9782025,1.7391960000000002,2.71517,5.5481,1.74716,5.1683,4.596078333333334,5.5323,2.1994225,2.656305,3.167795,4.330995,5.5551,3.91173,7.404171666666667,3.19326,2.8093266666666667,0.3618311111111111,3.725065,4.67375,3.3496333333333332,6.216188333333333,2.61278,3.0007466666666667,1.2458333333333333,1.6585616666666667,0.60578875,1.501786,2.951775,1.5471533333333334,1.51929,0.6537125,1.3948079999999998,4.68277,2.3516,0.6024384615384615,1.6368066666666667,1.7221625,1.6663160000000001,1.2828716666666666,2.0384475,1.6585616666666667,2.5868,1.3948079999999998,1.3948079999999998,0.6024384615384615,1.5676,2.4755,1.2781683333333334,2.616725,0.6024384615384615,2.661825,2.4755,1.2421133333333334,1.2421133333333334,1.2421133333333334,1.802768,1.17972625,0.6024384615384615,1.0614979999999998,1.09102625,1.0278766666666668,1.933106,2.6635,0.8569166666666667,2.10362,1.5856571428571429,0.6024384615384615,1.793044,1.6585616666666667,1.9789833333333335,1.9839333333333335,0.879863,1.9789833333333335,1.0504633333333333,2.33673,2.293575,2.373245,1.09102625,2.14542,1.3356366666666668,1.3356366666666668,0.9066245454545455,0.9066245454545455,0.9066245454545455,1.2458333333333333,1.6585616666666667,1.5856571428571429,1.6368066666666667,0.9666657142857142,1.9839333333333335,1.513464,1.623498,2.08944,1.2458333333333333,2.6223,12.5909525,0.6537125,2.65192,1.7725166666666665,2.5916,1.0036857142857143,1.0036857142857143,0.6024384615384615,1.132011111111111,1.6050499999999999,1.5856571428571429,1.806142,1.9839333333333335,1.1708666666666667,1.1708666666666667,1.644904,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,3.0440766666666668,1.0504633333333333,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.3800104545454545,54.150298251803754,1.507165,1.6277549999999998,1.5856571428571429,1.7725166666666665,0.9666657142857142,0.6182058823529412,0.733321,0.733321,0.733321,0.733321,4.3349,16.079204166666667,3.4004333333333334,0.5664227272727272,1.6187799999999999,1.6187799999999999,1.6187799999999999,0.5664227272727272,2.951775,0.6024384615384615,1.793044,1.51929,2.4678,1.0504633333333333,2.3811625,1.0504633333333333,1.616426,1.616426,2.14735,2.14735,0.6024384615384615,1.950076,1.950076,0.9539727272727273,0.2107811111111111,2.951775,1.3775416666666667,2.4191125,0.5664227272727272,0.5664227272727272,0.5664227272727272,0.5664227272727272,0.5664227272727272,1.7725166666666665,0.3800104545454545,1.0504633333333333,2.1971125,2.1971125,2.55965,2.92258,0.6583142857142857,0.6583142857142857,3.4163333333333337,4.221466666666667,1.234367142857143,3.4829000000000003,0.987567,2.42482,2.01192,1.1196266666666668,2.98899,2.00119,3.1603733333333337,5.24795,2.189405,1.2019444444444445,4.15011,4.338975,2.62414,1.715036,2.434379615384615,4.54197,1.7873961111111112,2.6685466666666664,2.6460866666666667,3.01655,2.477765,6.116569999999999,4.01894,0.2107811111111111,2.9245966666666665,5.09035,3.50834,4.70716,4.367015,4.524015,2.9547966666666667,1.768786,4.586575,4.624275,4.309165,4.64226,5.54925,3.23353,0.7581008333333333,6.80347,1.6954500000000001,3.02027,4.671065,2.61951,2.61951,0.8412727272727273,2.00709,3.708875,3.16429,5.1636,4.47007,4.596535,4.9958,1.0909542857142858,4.690705,5.79025,6.586524027777777,2.29721,4.34535,3.9,3.840175,3.714445,3.79045,4.2824,6.0787775,4.90229,4.057118333333333,3.578515,4.359321666666666,7.334864,2.2170575,1.8517720512820515,2.9338466666666663,1.77275,2.9123866666666665,1.8619899999999998,5.0733,2.737816666666667,6.0772,1.902606,4.752305,3.9912,3.306815,4.440715,3.791515,2.5379466666666666,2.8170266666666666,2.7562233333333332,2.6816333333333335,2.511973333333333,1.6716166666666668,2.67086,2.7848900000000003,2.1982600000000003,2.1982600000000003,4.30953,2.9319699999999997,1.9786299999999999,3.0356566666666667,1.95773,2.3764066666666666,3.050186666666667,2.71772,3.0870466666666663,5.2495,3.9209,3.80966,3.3112806666666668,3.3112806666666668,3.976715,3.2387,3.71914,4.56553,4.252115,3.47401,3.332665,7.71115,2.0642925,1.89026,3.336675,3.498045,1.4775066666666667,1.4775066666666667,3.468725,1.82886,4.189428,3.765235,3.524635,2.222633,2.1195815,0.5869608333333333,3.002745,3.95814,1.7970575,2.485585,4.181145,1.1570099999999999,4.697965,1.2279333333333333,0.3872307142857143,0.5354971428571429,21.484563362103174,0.5354971428571429,0.3872307142857143,0.6837635714285715,9.257573333333333,2.4985,3.47559,4.44549,3.498915,2.70481,4.177885,2.272485,2.37109,3.697395,3.18793,4.100925,4.46259,3.5909,2.204645,3.110045,3.43782,3.932995,3.097105,1.136962,1.136962,1.136962,1.136962,3.38682,2.87319,3.371515,1.7489866666666665,1.1809633333333334,2.597185,3.548635,3.63964,2.8729,2.96157,2.71459,2.6761350000000004,4.01076,4.20698,1.1197616666666665,2.7149900000000002,1.0758699999999999,2.616563333333333,1.7177533333333335,3.826966666666667,5.20195,2.458673333333333,3.81151,3.9083499999999995,0.7755599206349206,0.21648214285714285,0.21648214285714285,0.5590777777777778,0.21648214285714285,0.21648214285714285,0.21648214285714285,0.5590777777777778,4.488495,7.628913333333333,3.569985,0.5361775,3.65609,7.726925,3.35967,3.1813033333333336,1.1789166666666666,4.300915,5.12325,4.306755,4.848915,1.667378,4.67496,2.186,2.2959126666666667,3.5617,5.33605,0.8195657142857142,0.8195657142857142,3.423595,2.806903333333333,1.92432,3.24693,2.75626,6.89,3.99604,6.6937,6.14275,5.50135,2.599925,1.556235,4.68439,3.61179,2.103845,3.5726,3.110825,1.8419825,1.145945,4.1405,3.54855,4.882163333333333,6.003276666666666,1.50903,4.009435,1.1596,2.531066666666667,3.23269,3.846935,0.4047557142857143,3.553515,3.965145,0.874437,2.74701,7.5151699999999995,2.776375,2.084245,5.480836,4.419165,3.78855,1.4112566666666666,5.46629,2.5223233333333335,3.1047833333333332,3.6217666666666664,1.9612433333333332,1.9612433333333332,6.64785,6.64785,3.6906517857142855,3.6906517857142855,11.0016,3.6906517857142855,3.6906517857142855,4.341592896825397,6.8348,3.71147,3.6059741666666665,2.87641,3.92772,3.8386,3.214066666666667,3.1527,4.62412,3.2422166666666663,2.6730366666666665,3.3671333333333333,2.21177,2.702,5.10495,7.1850249999999996,6.5123675,5.08135,3.768735,4.029425,6.827884,5.389,4.427845,3.544975,4.52792,2.4015366666666664,2.23484,2.17038,5.7266,5.7878,4.786379999999999,4.425575,2.272823333333333,2.545603333333333,6.885396666666667,1.802768,2.5899199999999998,3.4031333333333333,3.4031333333333333,3.17481,4.89099,0.790245,3.4992,3.772505,2.9735766666666668,10.09362,4.117305,2.7629933333333336,2.3329233333333335,4.674555,5.9569,3.008145,5.50615,2.65494,4.53574,3.02741,4.34932,5.47405,4.761545,1.0357933333333333,3.657133333333333,1.0830625,2.5114433333333332,5.0176055,7.554449999999999,2.3054099999999997,3.3695,6.558708333333334,1.7250139999999998,4.662675,5.46425,3.732445,3.737165,2.21792,4.648575,2.249065,0.4625715384615384,5.00045,3.070465,3.3989666666666665,5.04625,4.99154,5.367,6.577975,4.51939,5.71525,7.3872675,54.32810166666667,4.551575,3.8183,4.600175,5.5476,4.498875,4.981695,4.409795,4.728755,1.93652,3.858565,3.891905,4.737045,2.660645,5.0654,3.68311,1.652424,5.6961,6.3902,7.3761399999999995,5.33525,3.27068,4.505505,3.370675,3.204915,3.56184,4.302275,3.959085,6.60332,2.822975,1.0927542857142858,2.4437312500000004,0.576406,0.576406,3.128435,0.576406,2.5679121071428574,2.5679121071428574,3.3034341071428575,4.56206425,5.0787958571428575,2.4437312500000004,4.7959708333333335,2.5384883333333335,1.3175433333333333,5.7825,2.12569,6.952992,5.56152,11.143687325757575,3.3975000000000004,2.516453333333333,0.21199757575757575,1.8836643333333334,2.1810733333333334,0.95299875,1.3276533333333334,2.7606800000000002,2.3984625,2.574075,0.604283,27.112404583333333,1.84158,0.8150461538461538,2.5092333333333334,2.5092333333333334,0.4045505555555555,1.6152075,3.1320375,1.29055,1.583755,1.612125,4.121875,2.87017,2.127943333333333,2.4401633333333335,1.1130416666666667,1.9059325,1.4578316666666666,5.340933250000001,4.022995,6.869391666666667,2.50455,3.4341000000000004,0.8935666666666666,2.11006,5.2435,6.22176,3.03857,2.1138066666666666,5.332556666666667,2.01614,2.5735933333333336,4.2491425000000005,1.0694066666666666,3.4754666666666663,2.295996666666667,5.0706,4.632705,5.9676,3.10034,3.957915,3.957915,5.27325,1.74255,5.45685,2.9142466666666667,1.648565,3.08964,3.260475,5.265254666666666,4.41761,2.7511033333333335,2.89494,3.07908,1.0017857142857143,5.08935,0.9344575,5.58736,4.57283,7.84235,4.67234,4.42588,4.0437,8.4861,4.54752,4.64773,1.19361,0.73365,4.51332,4.166215,2.12138,3.085355,3.36049,4.226725,2.163295,4.942625,2.50103,5.475,5.3707,5.74595,4.46546,4.968165,3.132505,6.488462,3.589265,4.568115,3.327925,4.719,5.266027261904762,0.5912428571428572,3.724266666666667,1.67709,0.5784722222222222,4.249215,2.14885,1.07647125,1.980395,6.20237,3.896785,2.27889,2.721413333333333,2.7538933333333335,4.96597,4.19279,1.6771297619047618,4.26648,2.1817866666666665,3.9313000000000002,4.37572,5.122,2.8591325,3.6875666666666667,3.9162,2.0585,7.3452,5.0719,4.44768,5.49805,2.21437,4.37293,4.787105,3.701585,3.92271,10.5434,3.19746,4.679898333333334,4.742545,4.84047,2.46714,4.540125,4.163905,4.901135,3.332003333333333,4.02614,1.4179725,2.990256666666667,3.319045,3.719005,5.03785,1.994142,4.06615,3.1656999999999997,5.6839,3.050926666666667,1.82963,4.03122,4.23774,1.06079875,3.057945,2.7067833333333335,4.519031333333333,1.655802,1.7231933333333334,1.1514775,3.37349,5.52565,5.4252,3.5553725,3.51749,2.382775,2.069245,1.9804,1.50932,6.333,3.04289,1.96668,0.8900923076923076,20.08056055769231,3.04831,3.0255099999999997,4.3853333333333335,3.9998546153846153,1.4849366666666668,2.8359300000000003,2.9445225,1.326556,1.85197,4.612935,4.58198,3.5020966666666666,3.16684,5.4491,4.79324,7.00355,4.6678275,4.30842,3.6887,2.6079666666666665,4.045115,3.883565,3.529,3.79947,1.80325,4.803075,8.36658,3.297365,2.89209,3.387655,0.57587625,3.10149,2.083206666666667,2.2618975,4.35913,3.10163,5.07385,3.70608,2.923995,2.1985675,1.68259,0.732072,1.4819833333333332,1.2191933333333334,3.896575,3.76841,4.66461,4.62426,7.44197,2.2372666666666667,1.409154,2.512093333333333,7.8858966666666666,3.21962,2.739825,2.98565,4.28949,3.1923325,3.658675,1.565926,4.79711,4.844785,4.148105,3.89989,3.469495,4.45813,4.310775,3.757225,4.47084,5.2351,2.096235,3.3562666666666665,3.11933,5.55995,2.961045,4.354374,2.69938,2.863965,2.2940566666666666,2.2774533333333333,2.1492033333333334,2.5906943333333334,2.5906943333333334,1.9384866666666667,2.7844933333333333,2.3639933333333336,2.338713333333333,2.092423333333333,4.11521,2.43093,3.0742766666666665,2.8632066666666667,1.71835,4.38568,2.6857,3.819495,2.2315633333333333,5.265,5.3528,5.0000225,2.49991,2.325775,2.887375,2.561405,2.151255,2.7548,1.8855575,2.70545,2.77555,6.8141195,4.4708275,3.69794,0.622139375,4.38679,3.903485,4.14527,3.29026,3.92486,3.687640833333333,6.46795,4.25639,3.158505,2.7920242857142856,2.09951,2.48388,1.668708,1.7943840000000002,1.6641860000000002,2.02792,1.8136725,1.2301216666666666,4.127440571428571,0.6024384615384615,0.56518,1.960634,1.4977716666666667,1.3713359999999999,1.4110583333333333,2.338849696969697,1.4229466666666666,1.7214580000000002,0.6084,168.22553862211402,0.47197066666666665,1.940128,0.9914820000000001,1.201185,2.0641625,1.5437175,1.9825825,2.26564,1.733285,6.58015,3.253345,3.438279047619048,1.9015433333333334,3.216075,1.286025,1.286025,5.7040275000000005,0.49296333333333336,2.197155,3.3704666666666667,3.03959,0.84817,0.5459252941176471,1.1823721025641025,1.0184818181818183,2.2162875,4.02549,1.94239,2.091325,2.2813033333333332,4.500165611111111,1.1057377777777777,4.564985,3.274445,3.56352,6.92584,1.7137966666666669,3.090715,2.438275,3.600239,2.04937,2.70263,2.81622,3.41125,4.24832,3.235095,5.79967,2.437375,2.450735,3.309475,1.448655,2.621825,2.565005,2.68629,2.024565,1.48297,2.284345,3.963645,5.237616666666667,2.60304,2.84675,1.333075,4.390375,3.8143999999999996,4.047266666666666,2.902595,24.85664539148352,2.7265466666666667,2.64657,3.0128566666666665,3.5691333333333333,3.0155433333333335,5.72734,3.13076,2.25608,3.31255,3.5973333333333333,2.1345733333333334,3.22462,3.4780333333333338,3.359,1.74155,1.6476834999999999,0.5894510000000001,2.22212,1.9345275,0.209325625,2.2338733333333334,2.6375,0.209325625,0.209325625,2.1241589583333336,0.209325625,0.209325625,0.209325625,0.209325625,2.7117299999999998,2.5304800000000003,0.5851276923076922,3.124528928571429,1.4826975,2.00522,5.4672,4.360435,6.137475,2.023145,4.854885,2.0880675,2.5725966666666666,1.2423214285714284,5.703286666666667,2.8415433333333335,6.070360000000001,0.875125,1.48129,4.81592,4.838595,35.108055063270065,1.535254,1.39044,2.332943333333333,2.2855925,0.9066245454545455,2.38279,2.5087366666666666,2.7179566666666664,2.0036866666666664,2.4745466666666665,1.692675,2.5413,2.3326333333333333,2.16374,2.72391,2.421393333333333,4.096635,3.3256366666666666,1.1162242857142857,4.092695,3.99808,20.1218775,2.796193333333333,3.3670333333333335,2.5327566666666668,0.9404859999999999,3.362334,1.7053293333333333,3.362334,2.2759266666666664,2.5168066666666666,2.8426566666666666,1.5654975,1.9910975,4.272235,4.055675,5.01215,4.345075,1.6804960000000002,5.0346,1.6410275,4.78057,4.007285619047619,4.100925,0.7567,2.0502725,2.0643625,2.684606,3.400335,1.08298375,3.017235,1.965036,1.9729966666666667,1.0626200000000001,1.0626200000000001,2.5547333333333335,2.6800866666666665,4.36673,28.756396249999998,6.265715,1.9650966666666667,3.673636666666667,0.37311533333333335,5.880402500000001,5.968,2.8824433333333332,3.30998,5.327425,3.48688,1.08596125,4.429265,1.3105660000000001,2.622535,4.28051,4.795035,2.377935,3.16624,4.359215,2.5093,2.9134955,4.2098,1.26251,2.46969625,3.771575,5.2597249999999995,2.4789066666666666,3.09927,2.7062033333333333,4.316005,4.04848,4.039865,4.3299666666666665,1.73768,5.9077,2.64283,1.756608,4.087135,5.2904,4.05277,3.37719,0.70910625,3.05597,3.522835,1.929715,4.890930666666667,2.77471,3.97786,2.86289,3.3554333333333335,2.531995,3.2560066666666665,2.900733333333333,3.1143300000000003,4.182115,5.49475,3.385595,1.72473,3.87364,4.124945,1.89616,2.00316,1.698405,4.013671111111111,4.52944,5.367493125,4.038405,3.4387333333333334,3.693535,3.1706333333333334,1.4601366666666669,3.06641,2.975595,2.92671,4.75458,4.60122,4.238655,2.94682,1.82605,1.57975,1.533355,3.52138,2.43521,2.19722,3.368525,5.20415,1.585035,5.26215,1.4218214285714286,1.81964,3.29321,2.82345,3.004735,3.629485,3.210095,1.579445,0.9793475263157895,3.36583,3.856715,3.95958,8.594938333333333,2.7014333333333336,2.9428533333333333,1.58111,2.7577466666666663,2.6677066666666662,1.1643216666666667,2.887703333333333,2.612483333333333,3.1777599999999997,3.7997666666666667,3.211956666666667,6.618056666666667,3.1136633333333332,0.7635790909090908,1.6106866666666668,3.423585,3.167015,3.35512,3.7396999999999996,2.575151,3.00516,2.623425,1.9528964285714288,3.974435,2.5892,3.35575,2.04332,5.0421,5.7484,4.263055,3.384895,3.977855,0.8976644444444444,4.508575,2.7812099999999997,2.63261,4.37257,2.6147766666666667,2.65416,0.38954428571428573,0.38954428571428573,4.536961666666667,3.963085,7.06485,3.069535,4.62936,3.65799,3.14809,4.98825,4.151705,1.0535625,3.88706,2.5947833333333334,4.109418333333333,2.9128233333333333,3.030935,1.8341566666666667,3.325708214285714,2.4563333333333333,2.755576666666667,2.6322566666666667,2.814,1.94987,22.36304658959157,4.063185,4.532475,3.973905,3.28796,4.6128825,3.516695,4.66633,4.733905,3.73114,3.38681,3.732125,2.4720366666666664,2.7093000000000003,2.9806933333333334,2.9164233333333334,2.8714933333333335,4.295435,3.589835,4.683895,5.13925,4.484355,1.317864,1.545912,1.545912,4.811725,3.90776,2.4194633333333333,2.3626,2.983503333333333,3.292435,3.276385,7.525504999999999,3.1109899999999997,3.4921333333333333,3.0662683333333334,5.20095,1.6578666666666668,5.9367425,2.4345066666666666,2.86812,1.77445,4.11515,2.93216,5.9415,2.882285,2.856205,4.23291,3.972115333333333,1.4552075,2.5435866666666667,1.61141,7.262457,4.18466,6.797916666666667,2.1891675,4.14645,3.62402,3.815955,5.2085,3.3278199999999996,3.3278199999999996,2.17529,4.263195,5.0016,2.424085,6.5647657142857145,1.5400425,6.0017,8.624533666666666,3.6829,4.168147333333334,2.2922866666666666,2.09075,0.620133125,4.47873,2.634,2.79075,3.686482,2.43605,2.4061733333333333,3.703305,5.82125,5.14875,5.1617,4.61278,4.10191,2.245295,1.0669272727272727,2.887675,3.351935,2.83394,4.97655,4.063835,3.262545,2.505985,1.9275680000000002,4.228765,1.0205625,5.18505,1.0201533333333335,5.39415,3.305685,4.91535,4.86652,3.092425,3.258065,2.9859666666666667,2.308526666666667,4.28366,3.082655,2.564605,3.564255,4.579265,5.488875,4.6185,1.6964775,3.455305,2.93827,5.6194516666666665,1.89848,1.89848,2.900653333333333,2.3546333333333336,2.5356833333333335,2.83394,0.8227040000000001,6.41595,3.211625,2.1683775,2.39652,2.692955,3.68356,2.464785,3.743495,5.2932,5.4132,4.782405,6.05755,5.677,1.316875,3.61724,1.1312916666666666,2.421175,4.3434,2.566635,3.066975,3.197025,4.738005,2.983195,0.4493684210526316,4.81302,4.13373,5.24725,3.41603,5.1312,5.50515,4.323005,4.095285,1.889395,4.586705,2.074065,4.2705,4.2705,6.4031,5.57095,5.7325,5.2165,2.71869,1.6578666666666668,4.34996,1.9186033333333334,1.6607,2.18703,4.18439,4.11975,4.51505,8.03387,1.5454533333333333,5.18075,1.2733766666666666,3.111845,5.9798,2.0136225,5.05655,2.61804,4.70778,3.434485,4.958485,3.9863999999999997,4.183205,4.093645,5.86005,4.328205,3.73615,3.778245,6.02485,4.137525,4.475435,3.71461,3.93807,7.363833333333334,3.526505,7.26928,3.358745,5.36665,6.107448181818182,4.382035,3.61488,1.7601625,5.6219,3.956945,0.8318355555555556,8.30792,6.1078,5.09405,3.1071583333333335,5.3337,2.985335,1.748492,4.050175,1.1197616666666665,6.2011,2.82102,4.56642,5.40395,4.435695,4.026155,2.1624866666666667,4.438465,5.1651,1.3569,7.028205,2.89689,3.521515,5.04025,4.484355,2.22974,4.4914,3.611775,3.904335,2.812913333333333,4.09806,3.8015,5.3216,4.559455,3.30771,1.909585,1.909585,7.5805066666666665,1.5145285714285712,5.14585,4.390145,5.06995,3.5018,3.350145,4.82182,3.96123,0.97995,0.97995,0.97995,3.634735,3.152965,3.90259,4.517282666666667,2.75094,1.48698,4.17741,2.176595,2.76203,3.94185,4.64459,2.095525,2.09528,5.37551,3.66749,2.98056,4.397715,1.592015,1.94581,3.370033333333333,2.61721,5.1077,1.378674,1.639846,0.9647175,4.110975,3.48024,2.78394,2.96861,5.56735,1.734818,2.04781,3.03934,1.6971714285714286,3.058455,3.613545,2.520025,5.77335,5.60945,2.7478,4.10961,3.60794,3.494735,3.34751,3.974875,3.547305,7.03334,5.50225,1.98243,1.8143333333333331,3.53652,5.0216,4.81564,3.641955,3.013923333333333,4.09431,6.3576,5.2001,2.6768033333333334,5.29065,4.10366,5.19595,8.45745,3.567875,0.6962990909090909,4.21358,4.2135291666666665,2.450305,4.03352,3.919966666666667,5.8629,3.88137,4.03403,3.810715,4.465655,4.78594,4.28773,2.97223,3.75026,5.0617,4.01802,2.34283,2.963085,6.53372,5.52895,2.0095400000000003,3.24595,4.862250833333333,3.85946,4.865525,4.230595,2.53307,0.8652544444444444,4.452940606060606,6.957055,3.67839,4.66727,3.607105,6.790188333333333,3.830655,3.6185333333333336,2.95966,3.81235,2.00509,3.42483,4.35102,2.499121,3.643195,5.8216,1.422735,4.456325,0.6608464285714285,6.2803,6.34195,6.2482,6.275,1.6387883333333333,1.77775,4.8419,1.89127,5.4203,0.5324075,6.0771,3.151795,1.534716,6.1755675,6.80065,0.78082,1.4763259999999998,1.401794,1.401794,1.401794,2.2396166666666666,4.445595,3.724355,3.607785,3.769965,4.947315,3.67681,2.01006,4.37056,4.79923,0.3017560975609756,3.299155,4.15893,4.74687,38.938668734848484,5.628266666666667,5.03725,11.381275666666667,2.634345,3.9958,7.481526666666666,3.21473,5.08315,3.923665,4.26218,9.162939999999999,3.933455,2.5675266666666667,2.708615,5.1262,4.20207,3.676365,4.264635,1.96299,4.509655,4.15141,6.727935,4.16021,5.138,2.3541125,4.267925,0.516739375,1.4413183333333333,3.528125,6.163,2.83273,1.2278033333333334,1.2278033333333334,2.87886,3.759515,4.19464,4.60007,1.7574266666666667,3.35884,4.36465,1.97434,3.4485333333333332,1.6687539999999998,1.6446533333333333,3.97686,4.69481,2.114835,4.77318,2.2892,1.96692,3.79394,3.66302,4.02388,3.86066,6.183327333333333,2.4887023333333333,3.94058,0.8212972727272727,0.6592991666666667,3.885685,2.17485,8.71705,3.4004333333333334,5.12285,1.6552825,4.5037,1.4900849999999999,3.75919,4.26042,2.503903333333333,3.82683,4.815125,0.42020549999999995,0.42020549999999995,3.6969,3.2144633333333332,2.9204600000000003,3.53577,3.600135,5.50185,1.0374272727272726,9.984721666666667,11.11015,2.0384475,4.7350525,4.58346,4.99889,3.63282,2.658506666666667,2.0042400000000002,2.0672525,9.6059725,2.2614575,2.714123333333333,3.6415539999999997,4.560375,3.6415539999999997,2.0069725,2.8975866666666668,2.7554833333333337,0.7369763636363637,5.433350000000001,2.85586,2.70905,4.039485,8.875205000000001,10.85715,4.0814,4.08077,4.169025,6.4209950000000005,1.8905025,1.4092625,25.809339166666668,4.178145,3.775415,1.04091,4.41721,4.144785,5.4612,4.449325,5.3029,5.634586666666666,2.9870900000000002,2.1096533333333336,0.6528352941176471,0.7379133333333333,4.69817,5.1791,1.3656866666666667,4.273433333333333,0.9438916666666667,3.7383666666666664,1.4648633333333334,4.294215,5.7928,1.866305,2.506865,2.31571,3.78732,2.9215,0.41441111111111106,3.909275,3.580775,3.1161833333333333,3.338,4.854005,2.7959366666666665,4.273505,3.04423,4.702855,8.266663333333334,5.02775,8.367474999999999,2.764375,2.6231533333333332,4.45632,4.3223275,4.49292,4.41767,3.712045,5.11035,1.199025,3.304909583333333,3.3574860714285713,0.78359,1.545912,1.545912,4.17562,7.4658766666666665,0.8349923076923077,4.91577,0.864345,3.0232833333333335,2.3538099999999997,2.7746518181818183,6.282878888888889,2.5127866666666665,1.1624222222222222,2.3070166666666667,1.22089625,1.9562799999999998,3.0980233333333334,3.072906666666667,3.29101,2.4385666666666665,0.864345,4.61167,4.77212,5.46575,2.85079,4.0529,2.1096,5.88145,4.699205,4.5982,2.9498533333333334,3.34375,2.282195,1.5076875,4.08957,2.781,4.44034,5.5796,1.610584,4.63605,2.8755666666666664,6.4945683333333335,3.46923,2.36244,0.864345,2.405,2.68195,7.001222277777778,2.2935166666666666,1.9221240000000002,2.2935166666666666,0.42057666666666665,1.250126,3.911835,2.69835,1.9227125,3.66788,3.8437530000000004,0.6207130000000001,0.6207130000000001,0.6207130000000001,7.66084,1.56549,0.7332418181818181,34.758525023809526,1.802813111111111,0.6509411111111111,2.6973525,0.6509411111111111,3.722955,1.98551,2.365775,2.4637366666666667,5.0835,4.198585,4.567485,2.40004,0.9033271428571429,4.399485,3.1898466666666665,5.02505,1.028897142857143,3.12595,3.12595,3.79133,4.50298,3.39977,4.753308461538461,3.243625,4.85206,5.23765,1.817922,1.09581625,5.286,6.5853,3.90999,0.676384,4.49396,4.172818333333334,0.907655,4.410365,2.377845,3.783445,4.35906,1.9468768686868687,1.9468768686868687,4.126225,3.403485,0.8996633333333334,3.137315,2.85966,3.29052,4.01023,4.49657,0.42342,0.3442941176470588,0.3442941176470588,0.3442941176470588,0.7677141176470588,0.5966984615384615,0.680332,0.3442941176470588,0.3442941176470588,6.957415,0.3442941176470588,0.7677141176470588,3.55264,1.291765,4.56688,1.1790383333333334,0.6207053846153846,0.907655,2.654155,2.66295,4.00694,3.15303,0.3442941176470588,0.3442941176470588,4.331045,3.743655,4.02907,2.575655,4.079295,1.523234,3.80833,0.680332,0.680332,4.62906,3.057225,2.837975,2.88664,3.9159466666666667,1.0733599999999999,0.9195615384615384,10.25909,1.3225875,3.88046,4.566105,5.1116,2.02724,0.39125695652173914,0.8633825,2.8198000000000003,3.03838,3.207205,4.434195,1.313788,5.9702,3.461115,4.8806475,4.111595,3.00416,2.90939,6.664615,2.45416,4.60289,4.143735,3.9083499999999995,5.66702,0.5538633333333334,4.295695,3.3968000000000003,2.05742,0.7127444444444444,4.00499,4.49867,2.667055,2.51602,2.090555,5.1102,2.757215,2.74726,0.980026,0.46662461538461536,3.92087,0.3542893333333333,0.7663936363636363,3.968685,2.998335,3.682715,2.647865,5.3806,4.36968,6.3097389999999995,3.549025,3.524495,4.44416,1.5730925,5.1926625,1.768646,3.969055,2.517125,5.913550000000001,2.707,1.072176,4.49199,6.9285175,6.6107875,3.6752000000000002,0.7907483333333333,2.9703733333333333,4.2105,3.856375,4.57768,4.596005,4.113095,4.91935,3.28926,4.222645,1.8024966666666666,2.304,1.3750933333333333,3.77166,9.43874,3.19068,3.702385,5.8938,2.748465,4.049845,2.4749933333333334,2.982736666666667,3.292685,3.14874,3.55794,3.57483,3.3797,5.38765,5.9243,3.97744,4.703655,5.1348,4.05287,2.69177,5.15985,7.739125,0.9192622222222222,4.093835,4.14622,4.84926,5.5353,5.0152,2.216185,8.128725,2.4654133333333332,3.527495,5.8595,3.780675,4.373465,2.25664,1.7271925,3.2260633333333337,2.3975433333333336,2.157903333333333,2.893613333333333,4.28741,4.51575,4.04495,3.41091,4.695055,3.613035,3.15802,3.9637075,6.0111,3.0479,5.436677666666667,3.813335,4.01538,3.598305,7.86347,3.74579,3.66501,4.156345,4.662725,2.931005,10.6518,1.3510683333333333,2.08253,3.693425,2.6821533333333334,2.6821533333333334,1.97913,7.843534999999999,0.8839255555555555,3.029615,0.89857375,2.04781,4.19637,5.41065,4.04638,4.01923,2.9023033333333337,3.061255,3.62249,3.85744,4.268585,2.91621,2.4834466666666666,3.98579,4.945884166666667,3.143435,4.43731,1.595662,1.647164,2.6560633333333334,5.7277,2.2354575,1.70854,2.0492275,4.28869,4.66069,3.098835,2.609015,0.5256011111111111,2.301135,7.98772,3.323035,1.5006533333333334,0.824105,1.2376133333333332,1.8512566666666668,2.32698,1.1934683333333334,2.1205333333333334,4.3814495,4.000905,4.853635,2.411826666666667,1.9200725,6.2880475,2.95,2.2376566666666666,2.2376566666666666,2.2376566666666666,6.726413333333333,2.2959133333333335,3.64603,2.521,0.474532,1.1350500000000001,2.5908,6.095965,0.43721388888888885,3.68428,3.9445133333333335,6.02015,3.039533888888889,0.43721388888888885,3.039533888888889,0.96672375,1.198432,6.0037,4.465115,6.63467,3.85686,4.59891,3.490375,4.135685,5.0484,5.522,6.01155,3.73868,3.423205,5.13915,4.54712,4.171415,4.47358,4.660425,1.3628483333333332,2.673636666666667,1.25015,2.0903975,3.186739861111111,1.5931281944444444,6.55976,5.6194516666666665,2.661763333333333,4.296455,3.11531,4.756855,2.75949,4.007495,5.0783,9.309266666666666,5.1675,4.353175,2.475905,2.956365,2.19858,0.57587625,2.1950924444444446,6.2004,5.27705,4.932855,4.56989,0.5631493333333334,2.0193575,1.415525,4.30097,0.7425476923076922,6.156805,2.03343,1.1043375,1.1043375,3.929608,2.00114,3.1182366666666668,2.496015,4.54726,3.84513,3.84513,4.145245,5.869948333333333,2.7376966666666664,2.5401233333333333,3.360533333333333,4.94806,1.912558,2.82226,5.5842,5.07845,4.95392,4.35304,3.9063083333333335,4.80733,3.4464875,3.1008266666666664,2.355265,4.159345,5.35195,3.3025725,5.1662,5.6045,2.02231,2.58324,6.2476,6.95335,1.149696,2.66735,2.3756625,2.7623833333333336,2.16862,2.5852,2.612999,1.0569422222222222,1.95216,2.768925,2.4730875,2.4878033333333334,2.4878033333333334,3.076955,3.058525,2.261787115384615,2.80055,2.3765325,2.0755,1.627694,5.2122,15.096634833333333,2.891766666666667,3.2712066666666666,1.8376819999999998,1.8376819999999998,1.5910616666666666,1.5910616666666666,2.84502,3.8313,2.7864,1.9527775,1.9527775,3.9969333333333332,2.5064366666666666,1.20709,1.4923857142857142,3.0522833333333335,2.9488733333333332,3.6927,2.538942142857143,3.2353133333333335,3.1722099999999998,0.687273,2.605625,3.591055666666667,7.0238499999999995,4.77149,5.5949,4.361655,3.49745,4.81019,4.58614,3.012916666666667,4.15414,1.4082266666666667,3.2175499999999997,5.7672,5.2623,2.678655,1.3877249999999999,2.79282,2.416043333333333,2.9921133333333336,1.5490366666666666,0.7134614285714286,3.1017833333333336,4.551198333333334,4.88273,4.29331,4.69563,3.13386,2.135683333333333,3.3150225,2.6820066666666666,3.3801,3.17553,3.5126333333333335,2.6406666666666667,2.338783333333333,3.6120666666666668,2.9869733333333333,5.2143,4.799265,5.151443333333333,5.151443333333333,3.427745,3.82296,3.79325,3.8512,2.743615,4.97321,3.38742,3.1384366666666668,6.21025,0.7400541666666666,5.3947,4.73006,2.4847733333333335,5.675323333333333,3.545833333333333,1.7067500000000002,1.3203914285714284,2.058736666666667,1.00739,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.5099285714285714,0.5099285714285714,1.21644,0.7930966666666667,1.6308360606060606,0.89604,0.89604,1.208869393939394,0.42196666666666666,0.4037966666666667,1.2182475,1.4162825,2.6160833333333335,2.28915,6.435523333333333,2.8396833333333333,3.905125,3.455606666666667,5.2782034285714285,1.3231233333333334,4.7737,3.89429,5.07665,2.96986,1.5164339999999998,4.114799615384616,3.604695,4.50825,4.729145,2.942085,4.87515,4.531045,4.672985,1.231876,3.872755,4.684655,3.153485,2.4053633333333333,3.38641,2.446025,3.270345,4.305775,2.93599,4.41658,8.725755,3.31603,4.87202,4.225625,4.3747533333333335,2.6849866666666666,4.512105,0.9217271428571429,4.6316,3.408105,2.17032,1.357125,2.830265,1.1900883333333334,0.522956,3.6516333333333333,4.226605,5.22634,3.6988,2.44805,2.94589,4.878235,3.9522999999999997,4.493535,2.6715,2.20948,4.15089,3.89584,4.56513,4.98012,4.288535,3.734615,4.661245,3.070123333333333,4.35292,2.1697100000000002,4.71038,5.17475,3.26202,4.333965,2.54897,3.83313,5.7684,3.889935,5.2369,4.50553,4.854965,2.41915,4.83576,4.970515,4.631395,2.158995,1.167675,4.029445,4.72261,4.08323,4.831955,1.671805,3.925945,2.33832,4.927605,4.53881,4.43472,2.3373825,4.259325,4.688635,4.194465,2.61566,4.890525,4.76783,5.42975,3.77287,2.158995,2.2255,2.881175,5.1884,3.851745,4.206255,3.532685,4.77081,2.388595,6.6653,5.2478,4.5522,5.327737979166667,5.19528,5.12575,3.506315,2.830138333333333,2.830138333333333,3.577935,3.521,4.569915,2.224955,2.859795,0.9823575,2.6204533333333333,2.8808866666666666,2.25346,2.9450333333333334,4.08322,2.941383333333333,5.22495,2.5571266666666665,4.4826,4.682712499999999,1.84444,4.157165,2.66596,2.602326666666667,4.042325,0.93043,5.09975,4.440455,5.8788775,4.617245,5.54625,1.34054,4.742015,6.63305,8.11337,3.19845,3.3189566666666668,1.9747879999999998,0.821976,3.862535,1.012512857142857,4.82991,4.664825,5.73705,3.1868,3.82532,1.1362700000000001,3.31945,3.59839,4.43173,3.65657,2.898825,2.844645,2.422695,4.189385,4.90091,5.73385,4.475215,3.614615,0.3309488888888889,0.3309488888888889,0.3309488888888889,0.3309488888888889,5.5299,2.98429,6.2415,3.12232,5.1944,4.683725,3.572955,2.208555,2.55211,1.45702,4.86205,2.928463333333333,4.16231,3.771425,3.346695,1.581555,1.15010625,4.730975,2.530995,6.03843,4.063035,4.54673,2.25618,1.52992,0.8763255555555556,3.277575,4.356845,3.14399,2.12882,8.170635,4.75685,3.48438,2.33034,0.496194,3.341775,2.72621,1.990465,1.91425,2.60839,2.8012,2.402025,3.043283333333333,2.9747,3.34435,4.53508,3.677175,4.040365,3.06284,5.740333333333333,0.6193306666666667,4.665465,5.70985,4.990675,4.577685,3.4362,5.254,4.31429,4.28953,5.4253,5.32475,4.427025,4.416325,3.8455624999999998,4.953755,2.674015,9.07244,4.94608,4.20254,4.804675,5.11875,5.7393,3.63394,1.1526444444444444,6.027166666666667,3.52419,4.94623,1.4557883333333335,4.24072,3.477115,7.025353333333333,4.719655,3.19398,1.9595366666666667,4.966175,2.04934,0.94838125,4.328885,6.0209,1.9565533333333331,2.387356666666667,2.886623333333333,3.1638,3.668335,3.77963,5.18,1.9702566666666668,4.27302,4.059301,3.228855,3.7221333333333333,3.68109,2.82366,2.54931,1.8132525,2.5240199999999997,2.7135233333333333,4.41858,0.5869608333333333,2.5941466666666666,4.29987,3.06743,3.5653,4.422745,5.31105,3.99908,16.558058136363638,2.4387266666666667,4.108133333333334,1.437912,0.8945536363636364,0.8945536363636364,0.8945536363636364,0.8945536363636364,0.8945536363636364,4.73181,4.700325,4.802275,9.2322725,2.341305,2.341305,4.64285,4.8370025000000005,1.3254025,2.005316666666667,3.793175,2.495985,2.328575,2.31,3.07261,3.7257273333333334,1.6600725,3.450355,0.84135,2.83217,2.74976,3.0459633333333334,1.39455,3.1727066666666666,2.1195366666666664,0.96293375,2.7472966666666667,2.700286666666667,1.3144888888888888,2.46208,2.6054633333333332,2.25127,4.427403999999999,2.0875166666666667,2.8256866666666665,2.07942,2.7154733333333336,1.1465333333333332,2.755516666666667,4.8591940000000005,3.5556666666666668,1.09883875,3.188523333333333,1.26301,2.4886733333333333,2.4176966666666666,4.925158333333333,3.118203333333333,2.437326666666667,4.646636,2.643666666666667,2.20143,2.728676666666667,2.39127,1.6167433333333332,2.8316866666666667,3.12478,2.9730166666666666,2.3682,3.16896,2.60729,2.520075,3.6984605,3.6984605,2.9470733333333334,2.03781,1.9103466666666666,2.4237266666666666,5.4731000000000005,3.018103333333333,1.9397633333333333,1.73032,3.08356,4.14089,2.49539,1.0550979999999999,2.6301146666666666,1.54772,3.8955333333333333,2.2121633333333333,2.473,2.09666,3.4436666666666667,1.136774,1.6388733333333334,1.4278566666666668,4.2445466666666665,2.5606466666666665,3.879765,1.0524111111111112,4.05442,2.121653333333333,2.1059625,1.74101,1.6623400000000002,3.4047666666666667,23.3764929978355,7.3148,2.6368266666666664,3.3901241666666664,2.49783,10.025234666666666,3.0956833333333336,1.0021375,2.60955,2.480376666666667,2.1036466666666667,2.7568,2.6667,2.554116666666667,0.9727750000000001,3.0845966666666667,2.496986666666667,3.1007233333333333,2.761953333333333,2.5543733333333334,2.0499133333333335,2.2932833333333336,2.8856933333333337,2.6470766666666665,2.114985,1.6045919999999998,5.1529283333333336,4.670665,2.33699,3.001925,2.32104,2.382206666666667,8.1406425,1.98297,4.91894,2.5161,2.0228175,7.4138,2.8563233333333335,2.80313,2.530125,1.8620139999999998,1.550093846153846,3.2390566666666665,2.9963233333333332,4.011385,1.484605,3.6572666666666667,1.404715,1.404715,4.03166,4.17299,3.6016371428571428,3.6016371428571428,5.759053333333333,3.467205,0.419852,12.078589423076924,1.2310233333333334,0.9526899999999999,3.8131633333333332,1.4498235897435898,2.0756725,6.030593333333334,3.737985,0.7339254545454547,2.153216666666667,4.854110545454546,2.3642746666666667,3.89845,1.3687928571428571,5.3401,5.1372,4.923575,3.28161275,1.8812000000000002,2.3581866666666667,2.57556,2.4089633333333333,2.23284,5.227966666666667,4.62515,4.063185,1.8950975,4.74642,4.07384,3.3406333333333333,2.16591,5.0723,2.4509866666666666,8.843656666666666,6.929209999999999,1.8672225,2.280115,1.771538,4.609566666666667,4.609566666666667,3.1932266666666664,2.53236,2.9690683333333334,4.82797,9.8725875,4.3851,2.547325,5.55815,4.45808,5.27605,1.960982,0.8516525,1.32972,4.486955,4.89729,3.8246333333333333,2.6358833333333336,3.8218333333333336,2.11629,3.89931,4.94218,3.387665,5.45765,3.2794399999999997,3.6970680000000002,3.2539233333333333,3.279336666666667,3.4591666666666665,6.2242,2.976525,5.70795,4.767995,3.42582,3.40105,3.40105,5.669656666666667,12.081569166666666,3.7552333333333334,5.93637,7.362065555555556,3.626135,2.5010566666666665,4.03619,1.2884633333333333,3.786025,2.70165,2.9320566666666665,3.09681,3.189363333333333,2.13944,2.31412,2.6085233333333333,2.4835866666666666,3.0999133333333333,3.1038099999999997,3.614615,2.552243333333333,2.979373333333333,3.913415,2.81003,2.43504,1.12295625,2.0634975,2.733753333333333,2.4314933333333335,2.53682,2.4259066666666667,3.386433333333333,2.4082166666666667,2.46512,2.5228033333333335,2.9709633333333336,2.699393333333333,2.6602833333333336,2.5333366666666666,2.99504,2.8330966666666666,3.340016,2.699056666666667,2.52658,2.304203333333333,2.8093733333333333,2.558386666666667,3.4400333333333335,3.4722666666666666,2.440685,1.9257275,1.9257275,0.7209883333333332,1.565926,3.96637,3.172845,2.61467,2.13944,3.14871,1.2327985714285714,2.620816666666667,0.5549459999999999,3.4985999999999997,3.04142,3.20238,3.0160966666666664,2.476786666666667,2.6835799999999996,3.0088500000000002,2.5282966666666664,3.3968000000000003,4.53077,1.474132,2.847716666666667,2.4815,1.7767333333333333,2.10918,2.6036033333333335,2.8792333333333335,1.6057379999999999,2.5197266666666667,2.6106866666666666,2.626866666666667,2.6060033333333332,2.7752833333333338,2.8817500000000003,3.05618,1.36066,2.7755233333333336,2.3212733333333335,3.5948333333333333,3.8968000000000003,2.21382,1.9395966666666666,3.3314466666666664,2.3511166666666665,3.528166666666667,2.61375,2.5853033333333335,5.13803,3.559533333333333,2.1332566666666666,1.576878,3.2927166666666667,6.3399399999999995,3.0541966666666664,3.5723000000000003,2.76317,3.0244366666666664,4.601087333333334,1.572924,1.1605555555555556,2.0505999999999998,1.7347858333333332,4.71757,2.9331899999999997,3.369066666666667,3.2422233333333335,3.4183,2.0079366666666667,3.4408,2.540225,1.605806,2.82969,3.543015,3.64571,3.23054,3.62163,1.6965625,2.73184,3.432185,3.22761,2.356456666666667,3.7466000000000004,3.9347,3.9372000000000003,1.3563625,5.5893820000000005,3.3301824999999994,1.4051733333333332,3.190545,3.35064,2.79914,3.557035,1.832394,1.832394,3.2663966666666666,2.9419500000000003,2.810275,5.18065,4.239805,4.286411333333334,1.562878,3.280253333333333,2.567633333333333,4.197105,3.0602933333333335,5.03253,2.66194,2.3518233333333334,2.5828466666666667,3.559985,3.699425,1.6216940000000002,3.1296666666666666,2.88208,2.3145875,4.4384,1.359345,3.04707,4.20316,2.68661,3.528175,4.042775,1.655525,1.61764,2.493675,1.1803700000000001,2.166944285714286,1.881505,0.45994,3.825275,2.34709,4.55039,4.354445,2.78966,4.65856,3.4858666666666664,3.155726666666667,3.6102000000000003,2.62946,3.2762100000000003,2.742293333333333,3.142576666666667,2.3320433333333335,0.6761938461538463,2.3833033333333336,0.6019042857142857,1.9845233333333334,2.4371066666666668,3.2148299999999996,3.1883933333333334,1.3976433333333331,1.3730375,4.163545,4.48026,3.036325,3.648895,3.088395,2.2669475,4.055085,7.618413333333334,3.310145,5.4272675,1.4577775,3.894685,1.97318,4.16972,3.367475,2.088375,4.31288,3.203355,3.86692,4.211365,2.1492125,4.165575,5.925177499999999,5.1421,3.49716,3.16292,1.7221625,2.04797,3.67142,3.498245,3.230095,3.6111,3.6663,3.46759,1.539885,3.724285,3.003855,1.667775,4.2354575,1.0534833333333333,3.269975,1.5834325,3.78493,4.5477566666666664,3.66057,2.9830050000000004,3.58125,3.281965,1.92953,2.3076625,3.827833333333333,1.91045,5.810845,4.398785,4.47054,2.545005,2.608455,4.57354,4.405275,2.3503939999999997,2.3503939999999997,5.67682,3.7702225,2.6894425,2.93545,1.94654,2.73545,3.109985,3.6604358333333336,2.5625675,3.298145,0.9935620000000001,3.616905,3.102495,4.03138,2.62795,1.517935,1.40108,3.142315,5.841413000000001,5.450865,3.402895,1.447745,4.126185,3.53277,0.8374066666666667,2.96693,1.372838,5.2451475,1.5114383333333334,3.678325,2.022105,1.3976433333333331,3.07374,2.72021,4.6682,6.708550000000001,4.16255,4.375830833333334,2.51444,2.87512,3.99035,3.574515,4.18106,4.446805,1.21691,1.6476834999999999,1.0582325,2.434725,2.315485,4.755685,1.0582325,4.540565,2.2287,1.5286425,1.5286425,1.667775,3.92054,4.261375,3.649375,1.46084,1.46084,0.9493433333333333,3.002955,2.0647825,5.9748275,4.38116,3.645055,2.8796999999999997,0.9994971428571429,3.4458,3.19194,4.220495,3.52228,3.4683425000000003,3.4683425000000003,3.26654,4.12967,1.88836,2.508555,1.014,1.8491833333333334,3.77971,2.357596666666667,3.3308333333333335,3.3308333333333335,2.771335,4.54085,4.394085,3.877505,3.683535,4.009055,2.5924466666666666,4.145849166666666,2.690225,3.63071,8.31523,5.10405,2.70833,3.24311,3.032155,4.68762,3.150786,7.7473849999999995,4.662251,4.777725,3.365205,3.92991,3.61152,4.54316,4.67994,2.474715,4.60704,6.438453333333333,2.829515,2.204133777777778,3.13992,3.29282,3.876755,5.8302,2.21792,2.44829,2.974745,3.1022625,3.288263333333333,7.117478,1.613585,4.810475,4.810475,3.1307,3.8378433333333333,3.17892,2.3579033333333332,5.02568,4.253451999999999,1.9686553333333332,3.87478,3.98669,3.5179650000000002,2.83094,2.85057,5.803660000000001,3.359965,5.30275,3.097985,4.66788,4.387545,3.516845,2.9419500000000003,2.1068000000000002,2.642625,3.818005,2.7949,3.401511666666667,2.5476,5.699018333333333,2.491495,1.7670325,3.1671991666666663,2.2845166666666668,3.95461,2.72246,0.8374066666666667,3.55242,4.08633,3.85134,5.969367500000001,3.085165,3.15808,2.933066666666667,2.933066666666667,3.8843933333333336,3.858735,3.445265,2.024655,6.087145,2.11197,4.60371,3.65121,7.99921,2.7477699999999996,1.3102466666666668,2.978165,4.4632,0.5671725,3.98774,3.297205,2.91058,3.011035,4.03065,2.09431,2.39913,9.088955,3.491615,3.06464,1.5114383333333334,3.642345,2.552045,2.34414875,4.08641,5.4470675,1.6019675,1.1770633333333334,1.1025316666666667,4.278835,4.527025,3.630705,3.3437175000000003,3.3437175000000003,1.539885,2.255345,3.1064808333333334,0.9108833333333334,3.12084,1.0234675,1.6965625,3.211585,3.413385,2.636075,2.495705,2.4335033333333334,4.195645,3.584935,2.950475,3.023575,2.65711,4.138315,6.769880000000001,4.04981,0.91126625,2.577032,8.75725,4.64256,4.12214,1.1247775,4.88683,1.4169766666666668,3.7492125,3.7492125,3.81502,8.718048333333332,0.8901111111111111,4.691315,4.40261,2.25711,4.1035475,3.785505,2.1652225,9.428675333333333,1.7984425,2.3619666666666665,3.36663,1.6035733333333333,4.093547833333334,3.05792,3.184325,3.4068873333333336,2.7201,2.75391,1.0961816666666666,7.21484,4.166835,4.17732,3.94539,1.97899,2.9830050000000004,3.8847666666666667,3.574865,0.6307576923076923,3.824635,3.898645,4.574855,2.0746475,1.387904,3.940935,4.20876,8.84361,0.6895315384615385,0.717805,0.717805,1.78662,1.2904966666666666,1.461562,1.7756,4.827065,1.18253,0.8643285714285714,3.9877425000000004,3.296025,1.290665,3.119705,4.577735,3.59147,0.6593479999999999,1.858605,9.46875,3.4940366666666667,3.35778,3.09884,1.7105,2.51181,2.50918,4.56184,4.34455,3.751965,0.8995371428571428,1.4227180000000001,0.9188879999999999,4.33816,4.33107,4.137255,0.9108833333333334,1.742952,3.828165,2.3794771428571426,4.7790333333333335,1.003725,4.68064,0.6364516666666666,0.6364516666666666,0.6364516666666666,9.80884,3.965405,1.0234675,3.89158,4.71205,2.68177,3.15997,5.017488333333333,2.892905,1.9221294444444446,2.2948066666666667,0.6593479999999999,1.4967546666666667,0.5376544444444444,0.8129866666666666,1.4512633333333333,3.78731,3.672875,1.9642575,7.344775,4.9475375,0.6481077777777778,6.07445,4.92442,3.343785,4.406915,7.888738333333333,3.852331488095238,4.9475375,4.463525833333334,2.37561,4.1679,3.746175,7.29162,3.53393,0.496194,1.556026,3.98184,1.749174,1.1770633333333334,3.989395,2.3535633333333332,1.69692,3.14561,1.675964,4.41646,4.31269,4.098915,4.70206,6.25276,2.560405,3.898445,1.372838,2.298405,3.379335,3.28114,1.9686553333333332,4.06663,2.74425,5.0741,2.842645,2.379115,3.4259733333333333,1.708792,3.537485,0.9108833333333334,2.1110725,1.1025316666666667,1.50587,3.681325,1.613585,1.4512633333333333,2.0629975,3.385605,7.4838,0.8995371428571428,1.1247775,1.352994,3.55553,3.696555,1.352994,3.90836,2.298405,0.5671725,0.9108833333333334,1.78662,1.372838,0.45994,1.652424,4.265124,2.25711,1.3538083333333333,3.01959,1.3563625,1.7984425,2.55772,2.2948066666666667,4.721765,2.55772,0.8374066666666667,2.766018,2.211565,0.09862568181818182,0.09862568181818182,0.09862568181818182,0.09862568181818182,0.09862568181818182,3.2667933333333337,2.752776666666667,2.6346166666666666,2.88906,4.657515,4.285315,1.74101,3.69134,3.669315,2.157875,5.013412499999999,2.84898,2.40867,2.529495,2.681075,4.61242,8.449136666666668,2.331145,1.95641,3.173025,1.01187,1.39844,2.4190333333333336,2.0056333333333334,1.5481375,2.84919,2.2092933333333336,2.67231,2.649363333333333,2.6462499999999998,3.67017,3.48271,2.4945233333333334,1.364936,3.854575,3.740075,1.62481,1.32946,1.32946,1.32946,3.56696,2.8034266666666667,1.1705066666666666,2.40271,1.3270485714285714,4.35452,1.6146966666666664,6.107573333333333,3.1656649999999997,2.4470433333333332,3.0742779999999996,3.0742779999999996,5.23534,3.13323,5.04245,5.26665,2.15154,3.0031700000000003 -GSM1946769,1.0,1.9537525,1.9537525,1.5084333333333333,5.433,4.891565,2.4946436842105264,1.59325,8.121643725490197,4.75563,3.24438,1.942275,2.213285,3.45337,4.3809,1.8833600000000001,1.5727740000000001,5.2493,2.46266,2.4919875,5.3427,5.226308333333334,3.87767,2.8196,1.885226,4.09371,5.1991,4.11047,0.7492858333333333,1.6423805555555555,2.072833888888889,1.88865,1.5513375,1.2369828571428572,0.7273816666666666,3.408685357142857,1.502505,1.69688,1.17925,2.0567325,1.2310325,1.1398775,1.135008,1.526418,0.8875740000000001,0.924188,0.749482,1.253842857142857,1.7166000000000001,1.815542,1.54371,2.01812,1.7383320000000002,17.978387666666666,0.37146,0.797968,1.088816,1.734226,1.5939640000000002,2.14412,1.0633757142857143,1.0633757142857143,1.0633757142857143,1.1429150000000001,1.1796060000000002,4.84029125,1.17694,2.2138125,2.155775,2.6118,1.03372,2.320705,2.705675,2.05844,1.4107225,1.9020775,1.5567325,1.6982425,2.6889299999999996,4.21257,4.820125,5.23325,1.5245466666666667,4.293265,4.877706666666667,4.12291,4.22364,1.13092875,7.50816,0.600631875,0.600631875,2.106345,1.1609128571428573,15.78709,4.256315,5.5724,4.857655,4.392865,4.228475,5.4546,0.51164,2.3192820833333334,1.7566075,2.3180375,4.68831,4.49984,1.30835,3.0982366666666667,2.720876666666667,2.794643333333333,3.4390666666666667,3.322415,4.81617,2.9301095000000004,4.65404,3.001133333333333,0.7395118181818181,1.507722,2.29037,4.46667,4.29005,0.58425875,4.001655,3.995895,0.85897125,4.35714,1.711005064935065,2.16402,2.508075,2.1235275,4.12811,5.64165,3.379605,2.7523066666666662,3.2743566666666664,2.9451066666666663,4.2764,2.7847233333333334,5.6087,3.55769,4.69419,3.596045,2.654905,3.69177,2.5225,6.858286666666666,3.729515,3.448325,3.94137,3.075345,4.876035,0.7532444444444445,9.61819,3.70209,1.9329933333333333,1.8079333333333334,3.6112,2.388225,4.543045,5.9187,2.185965,4.881631666666667,2.77584,4.841335,2.185965,2.748723333333333,4.61373,5.249225,4.723175,8.135946666666667,3.288365,4.576365,3.058705,5.19625,5.1864,1.4005599999999998,8.13834,4.435,4.61617,3.446295,3.62487,3.88339,2.37809,6.08433,2.27148,4.226075,4.108545,4.88248,4.781785,4.2676,1.3286683333333333,2.77097,2.92527,1.91045,1.91045,6.102353047619047,3.11705,1.8964566666666667,4.715825,4.4861,2.924725,1.468135,1.179822222222222,5.56,3.25109,6.8148,4.760895,4.391635,3.76194,3.136135,3.85794,5.0209,3.86705,4.256795,6.3416,2.840705,3.602065,9.103773333333333,4.986485,3.6096333333333335,3.3472000000000004,2.667813333333333,3.8371666666666666,4.516821666666667,1.817575,2.910406666666667,2.33141,1.751772,1.6563433333333333,2.535226666666667,1.7514425,2.210465,2.99701,2.514596666666667,2.38578,2.916043333333333,4.877706666666667,3.58565,3.44041,3.48885,5.00525,1.3985916666666667,2.329,2.8991731428571432,2.14434,2.6009733333333336,2.4363966666666665,3.5719666666666665,1.891404,1.2777399999999999,2.693756666666667,0.6573279999999999,1.6813133333333334,0.5452888888888889,0.5452888888888889,1.6621433333333335,3.050243333333333,2.2493433333333335,1.3396833333333333,1.4676266666666666,0.2994623076923077,2.70846,0.6573279999999999,1.2178766666666667,0.2675410810810811,1.3903999999999999,2.05644,3.5076666666666667,2.6715533333333332,2.3081666666666667,2.55889,2.3901733333333333,2.3854366666666666,2.5369266666666666,2.50553,2.22256,2.5806,1.89076,2.901655,4.42269,0.7457616666666667,2.1088466666666665,2.61171,2.01406,3.5219000000000005,1.516648,2.56481,2.4917933333333333,4.276923333333333,2.67736,6.661400952380952,1.6295142857142857,2.65231,2.021395,2.125905,3.8355333333333337,2.149235,1.8712875,4.16344,2.7057599999999997,2.1615925,4.26197,4.249675,4.54507,4.31592,2.308955,3.451015,4.963742666666667,3.94997,3.86586,4.145005,4.274975,3.03064,4.24757,3.4512,0.912565,4.89334,1.2957566666666667,4.72298,3.80648,6.168844999999999,3.945735,4.311575,0.9775025,2.141145,3.67035,4.034445,0.8900757142857143,1.3514676495726496,2.0913607142857145,2.524536857142857,4.7040375,5.596488,1.8176625,3.795225,5.93965,0.3641364285714285,3.71251,2.223845,1.032045,3.82022,1.99765,12.42975,1.2991,1.90601,2.676603333333333,2.77083,2.0155901315789473,4.654040131578948,0.33664263157894736,1.6262566666666667,2.89888,0.97739,2.875773333333333,1.1927114285714284,5.35855,3.913235,2.064173333333333,6.05485,5.45065,2.64105,1.17212,4.37782,4.731855,4.268235,0.9187363636363636,7.9235500000000005,2.6742500000000002,4.53381,2.723456666666667,2.627546666666667,4.833365,2.5292733333333333,2.7954266666666663,2.26648,2.428313333333333,3.2359,2.939776666666667,0.347640625,3.99347,3.73624,3.95687,3.82568,4.65872,6.245628,3.89403,1.655945,5.95525,5.1058,4.617825,4.606725,1.28338,3.3335333333333335,3.3432999999999997,2.6318633333333334,15.776240000000001,3.23856,3.853805,4.54464,4.97749,2.541855,5.243655416666666,2.0348025,0.7554833333333333,2.671175,3.38449,4.01108,3.540065,6.366568333333333,2.7785966666666666,2.104145,2.1273,3.416533333333333,4.4757,2.3508475,0.3702193303571429,2.8580417391304347,1.9458675,1.14978375,0.4787151999223602,0.5872110694875776,0.3702193303571429,0.3702193303571429,0.3702193303571429,1.1165075,1.49711,0.8525725,1.5235875,4.6234150000000005,0.2236364705882353,11.469502824675324,3.01873,2.9152799999999996,4.44218,4.38427,4.19888,2.853625,4.98124,4.177584,4.51694,4.126895,0.7457246153846153,3.12819,4.334882051282051,0.5501871428571429,3.410275,3.127736666666667,4.402075,0.6111445454545454,1.753225,4.50468,3.630955,1.9074425,1.7588566666666667,1.5424733333333334,3.484833333333333,3.94392,2.93892,2.9025200000000004,5.6304,5.7495,5.44615,3.2220133333333334,3.745895,5.804129166666667,3.3636666666666666,5.4035,0.40915761904761905,3.5239333333333334,4.33841,1.9269266666666667,2.396595,2.7416666666666663,4.88598,0.6304316666666666,2.0402625,4.77673,4.247635,1.0377399999999999,4.651205,3.11253,4.825745,3.1035733333333333,4.716975,3.443095,4.320265,1.213185,3.532375,2.67957,4.79087,3.89115,4.629895,5.5074,4.47102,2.618945,5.37712,2.35666,2.81453,3.178316666666667,2.75996,2.5758366666666666,2.3895166666666667,1.752814,1.5005666666666666,2.2003333333333335,0.78352,1.7121000000000002,2.64773,2.055473333333333,3.154946666666667,3.5045,2.7038533333333334,0.9377744444444445,5.1533,3.4594,5.481570416666666,2.7371004166666664,3.1347733333333334,3.4099,1.6219066666666666,1.6219066666666666,2.146923246753247,2.146923246753247,2.8548986038961037,0.5101842857142856,1.7239433333333334,2.7897866666666666,3.6715999999999998,2.1764642857142857,2.1764642857142857,2.1764642857142857,7.839734642857143,4.486854285714285,0.9657999999999999,3.320355,5.126614999999999,2.1406875,4.56083,3.116635,2.207055,4.48461,3.122576666666667,3.4308666666666667,1.4609875,2.0606066666666667,3.3750999999999998,2.887613333333333,2.4686733333333333,6.20305,3.605366666666667,3.4924,4.5796866666666665,1.7037833333333332,2.58675,3.1820466666666665,1.116011111111111,2.0714966666666665,4.171927333333333,7.90069,1.48479,2.881725,5.0035,2.00332,1.873665,1.873665,0.9932075,5.01015,7.483694999999999,4.35159,6.4404699999999995,4.47055,2.0425333333333335,4.097645,3.37078,5.2201,5.3133300000000006,0.3618952631578947,2.81358,2.45656,4.46403,4.35986,1.90703,1.954475,2.693475,4.29693,4.000865,3.422085,2.47667,1.7710899999999998,7.00309,4.60025,4.65767,3.585955,4.281525,4.51648,4.68192,3.913465,3.56939,1.96052,1.083122857142857,2.735715,3.90482,4.31046,5.52991,5.7864675,2.0761125,2.0752666666666664,2.6464166666666666,2.7499266666666666,2.9730399999999997,0.6469371428571428,2.22638,3.60377,1.12406375,4.81573,3.241005,6.1111425,1.3106889393939394,1.3106889393939394,4.104065,3.796115,3.836025,5.6622,2.7214566666666666,2.2563733333333333,4.152655,3.129935,2.101705,3.2483233333333335,2.7003233333333334,4.094875,3.7011900000000004,4.397765,4.625905,0.9647800000000001,2.64518,4.63877,4.327115,3.489965,2.6543033333333335,3.103525,0.6296844444444445,0.6296844444444445,0.6296844444444445,0.6296844444444445,1.343202777777778,3.8904825,3.8904825,1.5665733333333334,7.345021666666667,3.507255,4.14883,3.095356666666667,2.715025,4.94858,3.985805,4.87944,5.4866,1.94291,4.756955,4.168425,2.792905,4.077565,3.36123,2.47211,4.278145,1.80936,4.67279,1.56089,3.6271770833333337,2.980005,1.78434,1.1856033333333333,3.387845,4.457055,1.508272,0.8850433333333334,3.528735,1.192185,5.121860666666667,4.62308,1.376807142857143,3.558985,0.7596422222222222,2.614313333333333,2.6040666666666668,2.5776833333333333,2.645315,4.314515,2.841464166666667,4.29408,4.677095,4.53902,4.35677,2.3992825,1.2639,4.43093,5.09215,1.3422,1.3422,4.08085,0.24038666666666667,2.1027466666666665,0.24038666666666667,0.24038666666666667,0.24038666666666667,0.24038666666666667,4.74423,2.6578866666666667,3.43785,3.54471,2.951,4.17559,2.5431399999999997,0.9392425,0.9392425,0.9939916666666666,0.9939916666666666,3.642035,1.97389,3.77469,1.8750448214285713,1.8750448214285713,4.69586,0.6439157142857143,2.08297,7.746936666666667,4.94233,3.106815,3.67573,0.9572025,2.216255,2.14355,4.69449,4.643145,4.431535,3.75463,1.33891,2.48884,1.9682675,7.54681,2.03183,4.35144,4.77595,2.909075,3.85153,6.15703,7.535855,4.117015,4.730275,4.52141,2.258495,3.428305,2.300195,2.335965,2.35951,3.820715,4.86179,6.016653333333333,6.46601,4.21992,1.1726033333333332,1.972115,4.234475,4.11284,2.1414725,5.0641,4.1777,4.5968,1.69829,3.6186666666666665,1.5456233333333333,6.133046666666667,2.630576666666667,2.2911799999999998,2.196946666666667,2.663685,2.59505,3.5568000000000004,3.7007666666666665,3.4522666666666666,3.445766666666667,1.603596,3.96599,3.043265,3.4457,0.38239,3.104795,4.062145,2.562025,5.31795,5.0374,4.614495,6.788392,5.13245,2.2211666666666665,4.20826,5.05975,1.6506916666666667,5.52115,6.4546,5.0864,4.58799,3.752225,5.3668,5.01165,4.36028,5.5873,7.853870000000001,3.99491,1.1526066666666666,1.4610833333333335,2.83986,1.8887019999999999,4.736165,4.067775,5.22349,2.4870433333333333,2.7417866666666666,2.7185400000000004,2.6487133333333333,2.4064166666666664,1.0343655555555555,0.5650464705882353,3.89167,3.97715,3.9194,4.649615,2.9967,3.2618733333333334,5.7833,3.202733333333333,0.5913823529411765,3.521195,5.6512,1.955245,1.716716,3.711525,3.63743,2.664686666666667,3.988466666666667,5.33235,2.7103633333333335,2.2888966666666666,2.3317833333333335,2.5333966666666665,2.632795,4.108263333333333,5.307439166666667,7.210241666666667,1.84358,5.4798,3.870625,6.0652843333333335,3.1253766666666665,2.957785,2.15221,1.9175633333333335,1.2817475,1.2817475,2.610933333333333,2.31742,2.7325766666666667,4.858235,2.00138,2.143615,1.90395,0.6059625,4.040595,0.6083850000000001,0.9064675,3.473755,4.500055,4.496415,1.6672125,5.02355,3.2020666666666666,0.9252785714285715,4.2579,3.7762176190476193,3.1985266666666665,2.461525,4.94299,0.2784286206896552,2.418055166666667,3.126105,1.472685,3.63847,6.05795,2.292175,1.3705466666666668,3.80664,3.75283,2.8289166666666667,2.8289166666666667,3.49254,3.71211,4.721345,5.58744,5.17775,0.9948122222222222,2.4940166666666665,2.6407133333333332,4.58628,5.2163,4.682125,5.14155,4.3691,3.893166666666667,3.699066666666667,3.605,3.9309,3.2443033333333333,3.163066666666667,0.6984128571428572,2.459555,2.44577,3.92118,3.0123833333333336,3.23722,0.7665708333333333,2.314125,4.120859,4.37887,5.7152,3.80527,2.048665,2.048665,0.8601530000000001,3.252125,4.49636,3.905335,4.913866428571429,3.078625,5.3769,0.5884454545454546,3.949565,4.179545,4.368275,3.362658333333333,0.9148971428571429,3.320865,4.004885,5.01915,3.775785,5.05775,2.779875,4.330445,1.60673,1.09922,2.7508,4.959795,4.083805,3.189,1.6055133333333333,4.00022,2.4133125,2.6239,2.795789777777778,3.06682,4.558163333333333,2.8466533333333337,1.8115400000000002,3.503966666666667,1.452787738095238,2.9065366666666663,2.73489,2.19272,3.0450466666666665,3.004,2.66881,2.41941,3.85767,3.2516533333333335,3.4771583333333336,2.38604,1.81714,4.107323333333333,2.9450800000000004,2.5758199999999998,3.4771583333333336,2.3986433333333332,0.7903199999999999,2.4782475,1.0354388888888888,2.1841025,1.5445175,0.8862690909090909,1.7640075,1.892385,2.766527,2.71955,4.60906,1.4578475,3.847975,3.16474,1.5764960000000001,2.17785,2.6513666666666666,1.2952566666666667,2.8878799999999996,2.8411033333333333,2.2634095454545453,1.760645,1.859174,3.557733333333333,2.4819566666666666,2.8375716666666664,3.02928,2.6454133333333334,3.8443,2.17904,4.302066666666667,3.5394666666666663,3.853733333333333,2.968113333333333,3.6212999999999997,3.541,2.2147666666666668,8.897635000000001,4.8099,4.39187,3.43194,2.98659,1.89309,3.943835,1.75721,3.996095,4.41806,1.517976,2.8259899999999996,1.45598,2.73324,1.75456,2.4964566666666665,5.2079,3.3245566666666666,3.72548,4.95302,0.9075975,1.556622,1.01974,4.11422,10.421198333333333,3.9825666666666666,6.5564,1.97177,5.18275,3.97797,2.46937,5.14725,0.2773629411764706,0.8158071428571428,4.636845,4.92331,6.9251,2.151675,4.346345,5.24045,4.505135,4.98932,4.202275,4.591035,3.022295,5.488205000000001,4.517275,3.87285,3.206445,2.1908933333333334,1.8663666666666667,1.4973280416666666,2.413796666666667,4.069695,4.9674,1.6253319999999998,9.00551,3.0453966666666665,2.8202541666666665,1.019504,1.019504,7.958748333333333,3.13113,2.293155,2.1243625,2.7584933333333335,2.1579866666666665,0.9232666666666667,3.4066783333333337,3.0700133333333333,0.6370442857142857,1.6918833333333334,3.3260440000000004,3.3260440000000004,1.0775033333333333,2.4738233333333333,2.4437866666666666,2.741546666666667,1.402985,1.69238,4.664152666666666,2.74038,2.5984,1.3593375,1.3593375,4.59926,5.51155,4.53807,3.348055,3.824385,5.75255,3.140945,3.00881,3.3074166666666667,4.002295,1.148175,3.4372333333333334,2.65425,4.12933,2.18206,4.66701,3.52952,4.07,3.578995,5.1859,1.0563566666666668,2.02302,1.743855,3.517325,4.7366150000000005,4.02982,4.04091,3.92564,3.91849,1.7671025,4.31208,3.20512,3.49027,2.41907,0.83514375,3.56332,4.60108,4.976055,1.1588966666666667,3.0193266666666667,2.968196666666667,1.88332,1.9625491176470589,1.9625491176470589,1.379505,2.2012899999999997,1.1055528571428572,1.39802,4.701655,4.567065,0.5214809523809524,3.60441,3.6082666666666667,4.117915,5.6667,0.42094750000000003,9.181465,5.71925,3.35309,4.33435,4.81605,5.609771428571428,5.2653,6.892545,0.7267572727272728,3.0274933333333336,5.3072,2.6669033333333334,2.0448575,1.97052,4.6695,5.1015325,2.516280357142857,2.7726166666666665,3.4697,1.9950325,4.30715,10.712250000000001,8.5546,3.7013,5.02425,3.122790833333333,2.953405,4.01302,1.683208,3.109156666666667,3.632235,3.77913,4.933155,5.07017,6.24239,2.64006,3.13101,4.69681,5.1859,5.1198,5.5653733333333335,4.1005975,6.59765,3.364545,3.010745,2.842985,5.0374,4.042535,5.3918,2.193005,3.1303466666666666,3.311035,6.1034,4.29101,3.850595,1.498088,0.9097625,2.718,0.61637,4.723995,3.573895,3.48176,2.777975,2.1614166666666668,3.05985,2.600775,2.934618,1.826428,3.0560975,2.723875,2.253875,2.53775,3.6456540000000004,1.3074649999999999,2.8476074999999996,5.37705,3.66,1.19763,2.8359366666666666,3.838321666666667,3.6504890000000003,1.5362625,5.81675,5.8541,2.3486866666666666,2.9585933333333334,30.554672854480486,3.6460666666666666,1.7205000000000001,3.8226333333333335,1.75459,2.61672,2.9816066666666665,3.411433333333333,2.03687,2.81635,2.40299,3.2184855,3.165903333333333,2.43451,1.5534575,2.24822,2.75605,0.3957259090909091,1.06853,2.927913333333333,1.6002759999999998,3.5037,1.5362625,2.319996666666667,25.88979477777778,5.09525,4.59125,3.604045,2.601905,2.31081,2.5389666666666666,2.32888,4.10914,5.321842999999999,5.77655,1.588288,1.955512,2.63615,2.716571666666667,3.774185833333333,5.54895,4.97747,4.610455,0.1953759574468085,4.76069,4.833848333333334,3.797075,9.05807,1.034465,1.034465,2.9476333333333335,3.708955,5.70715,2.105675555555555,1.0677444444444444,4.840815,1.864295,4.392345,4.129675,3.23518,4.05802,4.01422,4.817995,2.917355,0.6916777777777778,3.16531,2.175386666666667,4.458215,8.117055,4.39496,2.012443333333333,2.012443333333333,6.5692900000000005,5.20275,4.1665,5.95715,2.3974233333333332,5.616375000000001,1.5456866666666667,1.40292,2.80632,2.5918766666666664,3.973295,2.8684333333333334,3.937575,4.1744075,4.4117,5.37325,2.1437875,2.1234875,2.0025475,2.50625,2.21892,2.0998575,1.9834375,4.897591666666667,1.8540625,3.6683714285714286,2.3776333333333333,3.519433333333333,2.6951133333333335,1.80535,1.4924,1.05643,2.3487066666666667,3.7876666666666665,0.72262,5.09115,1.95131,6.01951875,2.0048275,1.59897,1.5241775,1.52526,5.764192222222222,2.0052399999999997,3.0944800000000003,3.7588333333333335,1.16055375,1.8243275,4.860068,2.947673333333333,2.853476666666667,3.6214,2.95168,3.0124133333333334,1.2347357142857143,0.25012833333333334,0.25012833333333334,0.25012833333333334,0.25012833333333334,0.25012833333333334,4.17983,2.6953333333333336,2.28698,3.260593333333333,1.3846383333333332,2.6318633333333334,3.176133333333333,3.946633333333333,3.699145,3.023905,1.87923,3.03707,3.204886666666667,2.014475,1.9720925,3.56032,2.8529,3.1306933333333333,5.63795,2.7959300000000002,2.6428066666666665,2.5782633333333336,10.870883333333333,5.17555,4.68807,4.91322,3.906425,2.8291799999999996,5.0958,4.214175,3.589935,5.736176666666666,4.041745,2.945535,2.565175,3.960085,5.245343714285714,3.87161,17.34837938095238,1.16623125,5.19935,0.8492455555555556,1.14670375,3.046525,4.74053,4.28357,4.02846,1.3884283333333334,2.49558,4.31345,2.7245500000000002,4.86529,3.125645714285714,2.7220866666666663,0.6387349999999999,2.8308633333333333,4.732475,2.230985,2.582225,2.26713,19.4465975,1.5486980000000001,1.320975,2.54374,0.31521692307692306,1.826685,2.9974566666666664,1.95925,2.84735,2.57085,7.64609,1.9763975,2.585875,2.2610475,2.400595,1.6110183333333332,3.3764000000000003,3.43926,3.07489,3.10906,2.055025,2.6605175,3.2876133333333337,4.761185,0.4559975,3.966466666666667,3.151823333333333,3.07001,2.149605,3.581725,3.829205,1.5416933333333331,2.25787,2.33638,1.5049599999999999,2.2681299999999998,3.58177,3.261275,0.7854816666666666,3.324225,5.1009,4.3567,2.5054,2.5054,3.2728800000000002,4.95291,3.28487,3.2834,2.3275975,1.0782,4.141845,3.5857,5.72555,4.024635,2.336766,2.336766,1.46154,4.062425,5.0044,3.8594,4.112425,3.3376333333333332,2.3640166666666667,4.539705,3.64819,4.140285,2.9768066666666666,2.4742966666666666,4.187129333333333,3.180093333333333,2.63045,1.9147666666666667,3.504865,2.838525,1.6142633333333334,3.696935,3.596435,4.55624,3.1109266666666664,4.45574,4.290715,6.93820225,4.16665,2.2041399999999998,4.818685,2.754375,7.314349999999999,2.68057,1.4135433333333334,4.24142,3.08393,4.55964,0.5289050000000001,0.7493358333333333,4.084215,3.911755,2.158781363636364,4.639845,2.65434,2.834115,10.65344,1.7996400000000001,1.2555580000000002,5.4064,3.219025,3.63171,5.92025,6.9334,3.14274,2.2172666666666667,3.311386666666667,1.97809,3.4225,8.754941223316914,0.8540338095238096,1.040765,4.90273,0.440456,1.664825,2.245905,2.767525,3.0879,2.4634875,4.06367,2.562725,13.242305000000002,5.243055,2.436545,2.436545,4.54209,0.8103683333333334,4.710466666666667,4.37085,3.904905,6.739216666666667,3.511975,5.20175,1.4917216666666666,2.791165,2.650805,2.574465,2.972815,2.623625,3.12423,3.460445,3.618115,3.030875,2.869495,4.367035,4.54015,4.79106,2.9596999999999998,3.253966666666667,5.0455950000000005,4.348605,18.04116857142857,11.744569047619049,3.207032142857143,0.7016783333333333,1.508257142857143,4.411775,3.36712,2.993800544871795,1.822685,0.8845511111111111,0.7018308333333333,1.1857342857142859,2.2524225,1.75785,5.195766666666667,3.362,0.7083336363636363,3.3378,2.272025,1.83945,1.875544,6.23553,1.56908,4.769155,3.43721,2.9185433333333335,2.28238,2.660626666666667,2.6470166666666666,0.7721272727272727,2.914125,2.9044166666666666,3.9225906666666672,3.1934466666666665,4.99549,3.625585,3.36694,2.129455,3.4766,8.2446775,2.11655,2.44313,2.3100875,1.587435,2.5491,2.3559825,2.786775,0.936318,1.3709425,0.96221125,2.89848,4.21566,6.0886,5.6444,2.86295,2.258625,2.895475,3.5754333333333332,7.79566,1.1961033333333333,0.3887375,2.907245,2.0210033333333333,1.486482,3.4346430000000003,1.267328,2.0535056666666667,4.3198783333333335,3.4047440000000004,1.19622,1.8411366666666666,3.744606666666667,3.609,4.5076,4.51311,2.1715725,5.1581,3.865345,0.8277307692307693,4.488885,4.31666,4.378627083333333,3.4813666666666667,2.27279,1.35856,1.02176,3.521645,2.708735,3.255775,4.046455,2.680245,2.6937766666666665,3.14709,3.66037,4.91519,2.29837,2.63819,4.495455,5.7977,0.5925175,4.5665,2.074255,3.49676,3.872533333333333,1.9549225,3.169445,2.303395,1.9875,2.51577,2.977628333333333,1.7625,4.94792,3.55145,1.33832,7.86512,1.03657,3.835595,1.6544066666666666,4.41004,3.88662,2.49379,3.202765,3.93144,8.82308,2.8811,3.66477,4.00965,3.598485,1.719285,7.8766,3.722845,4.42683,1.55445,4.10616,3.04165,1.06225,1.9707180000000002,4.284195,2.145285,4.22121,4.4500575,4.3445800000000006,4.52574,2.4367525,5.22515,3.95655,3.105613333333333,2.4379566666666665,1.7594180000000001,5.0473,6.44605,5.17855,4.69739,3.058015,2.205245,4.13941,3.45244,1.1369402197802196,4.11899,4.768370833333334,4.11937,2.7498,3.57659,0.4861642857142857,0.4861642857142857,5.8881,4.88569,5.32935,2.217645,3.906485,5.13035,0.826159,4.086145,4.95091,4.909025,4.62465,4.595355,1.9692225,3.24288,2.124795,4.458515,0.7251875,4.0767,4.17286,2.742455,3.036153333333333,4.62882,2.316685,3.25261,59.78060758008658,3.120845,2.643073333333333,1.6147675,3.22629,3.90047,0.9849675,1.0054325,2.1136425,2.1136425,1.314344,3.257355,2.471905,3.9601025,7.64269,3.0165933333333332,1.3032171428571429,1.4667066666666668,2.71105,4.0114625,0.9964259999999999,2.448265,1.333462,2.20441,4.386365,4.43007,3.457855,21.559321818181818,4.266485,3.841545,3.15536,2.14509,3.13586,3.30956,2.38985,5.31698,1.586232,4.142375,3.454989865079365,6.057263194444444,1.995805,2.66708,1.86795,4.1057,2.3475766666666664,2.20563,2.1637633333333333,3.6517644444444444,3.72168,3.436045,4.38604,4.799125,2.745225,2.627685,2.839185,2.642175,2.9545144444444444,2.14481,2.025925,3.370995,1.1941366666666666,3.791465,4.388475,2.560175,4.852565,4.804975,4.757098333333333,2.1226433333333334,2.37064,2.63997,2.74556,4.064215,3.292455,4.98173,0.7495785714285714,4.697838,2.889375,3.855,2.3131575,1.8222840000000002,4.438750000000001,1.212588888888889,2.885855,4.302765,1.131284,3.63213,3.54811,4.525565,5.442105,2.001265,2.862805,2.8536133333333336,3.694933333333333,2.50046,2.6016606666666666,3.2668433333333335,2.3829966666666667,2.4074733333333334,1.26688,1.973905,1.973905,1.8415566666666667,2.0954466666666667,1.7881166666666666,2.7834233333333334,3.768925,5.22465,3.39434,1.52885,4.46097,3.57121,3.49188,4.14974,1.92681,1.937375,4.647936666666666,1.77021,4.6715583333333335,5.0539,3.550245,2.50559,3.71519125,3.401315,3.018935,3.65013,0.14369816326530613,2.7395266666666664,7.67637,1.5406900000000001,3.38229,4.169765,1.0883342857142857,1.1660283333333334,1.92061,3.95187,3.261365,6.73738,3.29542,3.66684,2.77612,2.68177,3.518995,3.311805,4.052975,3.35715,2.858686666666667,5.41275,4.192475,4.726635,3.3595,1.99726,3.462335,4.654845,2.73469,3.182045,2.104965,2.4438,3.8375,3.6747,2.71319,4.5158,4.96192,2.717465,4.13591,4.626635,3.505225,4.82503,3.53533,2.951065,6.62899,4.39894,5.2561,5.1573,4.51086,5.2057975,4.17493,3.596925,1.3330199999999999,6.75915,2.46215,5.05935,4.15759,4.30083,3.125833333333333,2.0605233333333333,2.463416666666667,2.608096666666667,0.984089,3.3677333333333332,3.2033233333333335,3.0645933333333333,2.485446666666667,3.914755,4.742445,2.8741266666666667,0.5559325,4.57858,4.677605,4.669085,4.841525,3.874725,4.635685,5.147,4.635185,1.4424666666666668,0.9326769230769231,2.715666666666667,5.1537,5.3715,0.492845625,2.84452,2.6110233333333333,3.722375,4.442825,3.731833333333333,1.840335,4.236035,3.84934,4.2587,3.07441,6.2882,5.00235,7.1799574999999995,0.6231058333333334,4.0692,0.841562,2.35101,4.0262,3.1440066666666664,1.3995233333333335,2.25152,4.28713,3.596555,4.08252,2.0613466666666667,2.298415,2.957225,4.656985,3.306305,4.13091,1.6542439999999998,1.172253,5.3535,2.2841725,7.917999999999999,4.62382,3.57675,2.069085,1.5978425,4.19829,4.85305,1.6755933333333333,2.448805,2.756825,2.7395266666666664,6.826779999999999,3.145963333333333,2.8279666666666667,4.3597616666666665,3.21217,2.221086666666667,3.446135,7.1491525,4.44021,4.905495,0.5259536363636363,3.732745,4.326485,4.603013214285714,3.986255,4.69832,2.93647,2.99253,3.14399,2.875305,3.7330103333333335,1.842894,5.537884,4.53191,5.26835,3.865545,3.285985,3.249661666666667,2.28887,1.3427325,0.9342425,2.752655,2.72049,1.0693733333333333,2.6409833333333332,5.4528,4.981845,3.56886,4.272875,16.51299619047619,4.15564,4.411805,4.33217,0.7029741666666666,5.03375,4.800815,4.59816,4.58812,5.32455,2.464885,3.563625,3.18917,1.567498,3.03061,4.592535,2.90076,1.573698,4.194325,4.90934,4.0079,5.3465,4.64641,5.5183,4.93739,3.02341,4.21714,4.445245,2.88707,3.001996666666667,2.978673333333333,1.7910091666666665,5.06175,2.772627857142857,2.01937,4.121725,2.552605,4.53513,4.107323333333333,2.84213,2.92731,4.589445,3.629625,4.93438,4.288885,4.55244,4.893144,2.83635,5.3845,2.762645,3.516835,4.52364,1.5474,4.969245,1.0378800000000001,4.439795,3.383785,1.018787142857143,3.65297,2.03596,6.75319,2.742513714285714,2.742513714285714,2.742513714285714,0.6941966666666667,1.1994266666666666,1.986185,3.76916,6.40994,3.506492777777778,1.91683,2.186575,1.7663833333333334,3.760125,2.37803,0.42933846153846156,1.640845,2.167735,2.86731,1.754815,2.544995,2.439445,2.0199725,3.80002,2.8041666666666667,3.38124,2.91155,1.912895,6.67391,2.053045,4.367295,4.01843,6.373951666666667,1.6679866666666667,3.558635,3.553935,3.62063,5.3021,2.75125,1.886535,3.753805,5.9923953333333335,1.995835,3.615065,3.079705,2.0128875,4.81688,4.48953,2.5114533333333333,2.23432,3.6541825,6.013912857142857,5.7771,3.03153,2.32535,2.690635,2.874515,2.42446,3.967975,1.4700825,2.671005,4.52548,0.7840675,4.126865,3.827645,3.96896,3.774075,2.414495,3.346185,1.992765,4.558125,7.996781666666667,4.74896,3.39312,3.99057,0.98718125,4.84398,2.3127,4.42966,5.4001624999999995,4.655675,4.59316,11.26984,4.842625,3.702865,1.4738625,0.6893358333333334,2.803195,3.811405,3.65539,3.687965,2.06745,2.5907833333333334,2.231266666666667,1.1542516666666667,1.1542516666666667,1.9166566666666667,2.3179466666666664,2.99865,2.59551,3.4258666666666664,3.689033333333333,2.685356666666667,2.8998333333333335,1.36102,2.6309666666666667,2.1320799999999998,2.09552,1.53505,2.843663333333333,0.672275,10.028141666666667,0.672275,3.3432999999999997,2.104575,1.9772533333333333,4.522495,4.27161,4.007975,4.538565,2.3323033333333334,2.8841633333333334,3.619378666666667,2.08453,3.3798666666666666,3.286576666666667,2.7761833333333334,3.104673333333333,1.8171966666666668,5.2915,6.2224538095238096,3.9937666666666662,3.4155333333333338,2.798636666666667,2.7138766666666663,2.861603333333333,1.2369828571428572,3.6308000000000002,3.24667,4.01663,6.074,4.47051,2.93225,3.6000666666666667,3.1108233333333337,4.2023,4.18792,2.68188,3.91455,3.2816833333333335,3.097663333333333,4.849565,2.9064533333333333,3.91423,6.410655,2.77022,2.528986666666667,1.6836566666666668,1.4722933333333332,5.44571,3.3847416666666668,2.80385,2.1234633333333335,2.0979033333333335,4.703965,3.8034,3.30399,3.29623,3.31888,3.8531333333333335,3.4498333333333338,3.8865,3.2202566666666663,0.58557,3.9308,2.5614833333333333,2.5447133333333336,3.614,5.12555,5.1035,5.95025,2.710675,4.615341666666667,1.4069916666666666,2.93505,2.93505,4.148325,3.58293,3.76741,3.309325,1.63916,3.31843,3.84024,0.9864171428571428,3.874415166666667,3.092631,1.9745709999999999,0.354721,3.591915,3.79915,6.5916049999999995,3.33544,5.8916,3.156005,3.813455,3.82994,1.9944941666666667,3.10331,4.804045,3.561195,3.2169000000000003,3.1187833333333335,5.7809574999999995,2.1112475,1.0238775,1.9681233333333334,1.6709800000000001,5.40149,2.402626666666667,2.399786666666667,1.71547,4.86404,3.883645,4.418305,0.578594,4.470715,3.91336,2.942066666666667,2.6947566666666667,3.1297566666666667,3.3872283333333333,4.373573333333334,1.5268066666666666,0.6688210526315789,0.7997571428571428,3.5400333333333336,4.38807,6.263183333333334,5.00685,5.01415,5.18365,1.5693142857142859,3.872533333333333,2.1567933333333333,1.00968125,5.2055,6.0971,2.62197,4.893295,4.1596,7.054798333333333,4.1848,7.719716666666667,3.84171,2.6674458333333333,6.61995,10.282190705128205,2.5939733333333335,0.699079,3.546455,4.278885,2.266785,6.65915,4.63492,3.954765,2.983546666666667,2.983546666666667,4.764665,3.49216,4.09008,5.38115,4.025637428571429,2.4698348571428568,1.08442875,5.51675,2.57922,5.893482499999999,3.549935,4.919305,3.152505,2.0895425,4.767625,4.826965,3.5547,3.86845,4.48593,28.334737380952383,2.154775,2.626375,2.270395,1.7307,2.546213333333333,1.1681557142857142,2.9277333333333337,2.9938933333333337,3.528166666666667,3.407633333333333,0.698256923076923,3.24513,5.10915,3.28609,3.3384,4.10873,6.313644999999999,5.19725,4.41359,4.0144,4.176003333333333,4.31899,3.3723666666666667,1.70389,0.9663083333333334,1.3888833333333332,2.839513333333333,1.4431833333333335,3.1912599999999998,2.447903333333333,2.287996666666667,1.8883566666666667,2.634335,1.946045,1.7941099999999999,2.854335,4.14725,3.81976,4.617075,1.36848,4.0922,2.64303,3.979525,2.5578600000000002,2.568895,2.781305,1.4237166666666665,4.76986,6.5669200000000005,2.85164,3.743505,3.973435,2.527725,3.217294166666667,3.7795,4.357975,4.532975,0.3126930694980695,0.3126930694980695,5.0764,5.11745,3.723835,2.930255,5.49165,4.392675,0.6910030769230769,4.364245,4.76732,3.891405,6.69725,4.69449,7.56549,14.303293333333333,13.400775384615386,4.2149,4.31918,2.6327266666666667,0.5817153846153846,2.6219366666666666,4.63519,1.360665,4.317365,3.5235,2.922886666666667,2.14906,2.3863333333333334,5.0944400000000005,4.152545,9.135529047619046,5.20805,4.04349,7.490958901515151,3.31974,2.9893366666666665,1.5284175,5.366948333333333,2.037695,2.3638033333333333,2.716473333333333,0.2892434375,3.46343,3.85361,4.9380925,0.9194800000000001,1.5511333333333335,3.93079,0.598562,0.598562,2.926876666666667,2.9905933333333334,3.5934000000000004,4.56763,4.20086,5.49125,3.71045,4.111085,2.777755,3.0125166666666665,2.9169133333333335,0.7814333333333333,2.7186266666666667,2.808825,3.038025,6.672784999999999,2.884965,7.86585,2.6381,4.3016,2.935285,2.1903275,2.66775,2.8557,1.81898,2.2738375,1.88468,3.63742,2.573525,4.287157499999999,2.856155,3.9439116666666667,3.9439116666666667,2.6698083333333336,2.6698083333333336,8.959709499999999,2.707473333333333,0.795149,2.6053466666666667,2.4491033333333334,2.5165466666666667,4.287157499999999,1.996174,1.96048,1.554732,5.29325,4.614915,1.7001025,4.58302,3.989695,6.007199444444444,6.858621666666666,2.4717466666666668,4.123745,6.76019,4.39024,3.46419,2.56134,3.524025,3.933115151515151,4.310405,5.337979166666667,7.965896000000001,3.2536525000000003,3.27086,1.1579683333333333,4.44217,3.9607593333333337,4.560715,3.8223941666666668,4.56346,2.63192,2.71265,7.21319,3.127505,1.276778,5.2368,4.025355,3.1266599999999998,5.34335,3.1266599999999998,3.13483,3.52361,4.7467,1.10016,3.735695555555555,4.746995,3.85841,1.3212650000000001,1.8151475,4.33909,4.18411,2.602575,6.536356666666666,5.033,4.281595,4.336025,4.1473949999999995,1.5199625,4.09136,2.81953,3.736565,3.492025,4.22426,4.71681,3.14302,4.73849,5.4853,2.1034983333333335,1.822785,3.7899666666666665,3.4618333333333333,3.4122,3.178323333333333,3.7189,2.91156,4.518395,3.727835,3.92242,2.868695,1.9057533333333332,3.6954,2.095126666666667,2.97926,3.11368,2.865075,0.7251875,2.19362,1.8028333333333333,3.257765,2.12534,3.402745,3.525045,1.352422,3.68452,4.75704,0.831758,1.4168933333333333,3.427535,3.892365,4.019965,1.96138,1.81389,3.515855,2.4614016666666667,1.7029933333333334,2.885165,1.913505,1.1788539999999998,1.3567075,6.24605,3.660415,2.078035,2.584925,2.480355,3.744065,0.8396325,0.3241321428571428,0.7651414285714286,5.20955,2.066754285714286,4.47577,2.0849625,1.7585725714285714,2.9805542857142857,1.2219817142857143,1.0439965714285715,0.718028,0.5573957142857143,2.674854166666667,6.55905,3.00316,3.792655,0.3306782142857143,3.686705,18.667479380952383,3.0038,7.663517128787879,1.0649575,1.0649575,1.0649575,1.0649575,5.729316666666667,4.136895,3.426395,2.6880066666666664,3.225735,3.82905,4.37236,3.728305,3.50286,4.42669,4.303245,4.039005,3.8088766666666665,4.02834,4.9641,4.035565,4.94214,3.408355,4.315685,2.76705,3.89064,3.24847,3.99966,4.35911,4.30901,3.29804,2.656025,2.4848733333333333,4.49969,1.2595592857142859,3.841945,2.9173533333333332,3.8405286666666667,4.3445800000000006,4.220795,3.10475,4.359505,5.90915,4.110195,3.08754,4.9058,5.099,3.402775,4.32582,1.7084620000000001,1.7084620000000001,1.7034325,4.658175,3.95573,5.842723,4.92231,3.5908416666666665,6.3064,4.33843,2.2445875,9.194890000000001,5.0528,6.0905425,4.333725,3.08513,4.0169,0.29996620689655173,0.87122,4.105022666666667,3.473275,5.12215,3.301,6.142458333333333,5.37965,0.56702,4.16464,0.469237,1.7989419047619046,3.46255,2.56067,4.170295,3.78559,3.20469,3.406255,3.447875,3.6582,4.530025,3.62624,4.132975,2.4303,1.7989419047619046,2.70592,2.2081425,3.598425,2.271975,4.881705,3.550205,1.719285,4.40916,4.165545,1.4655716666666667,5.51755,4.809975,4.186385,2.8367400000000003,3.00843,4.920805,1.8740566666666665,1.418548,2.2899366666666667,2.49957,2.6354633333333335,2.0232633333333334,5.13885,3.44369,5.151816666666667,3.7915435714285715,4.97503,4.25074,1.8604340000000001,5.40845,4.72937,5.01565,4.16086,7.42939,1.831665,4.606315,3.84494,3.09583,2.027105,1.6016833333333331,3.869315,4.43169,2.380666666666667,2.6409858333333336,3.2771625,3.2771625,2.6768033333333334,3.1545433333333333,3.35697,3.966685,3.497365,0.8109000000000001,3.21357,4.347765,4.577370277777778,3.38237,3.06888,1.73849,2.789715,3.379235,2.17318,4.803315,3.386125,4.838615,1.9267433333333335,1.045909090909091,6.19835,3.547445,3.2633266666666665,3.2945433333333334,1.8731839999999997,30.27491214285714,4.12959,3.209585,4.750555,4.27511,0.8370833333333333,7.091044999999999,1.985105,5.4887,1.6325200000000002,5.06115,5.529461666666666,3.67544,3.566555,2.0508825,3.421466666666667,4.929705,1.997595,2.777926666666667,3.940275,3.2764,2.55552,5.93835,2.005865,5.06245,1.18107375,4.345305,3.51709,4.37804,4.84044,3.17524,2.563466666666667,4.44791,4.944515,3.6347750000000003,3.6347750000000003,5.7261,2.1746375,4.31684,6.917808333333333,3.351835,4.18272,3.03779,3.602575,3.487915,4.039855,1.35077,2.29495,4.29421,4.35631,5.33315,4.405385,2.762625,9.6576,2.714015,3.77167,1.664057142857143,3.5794,2.208903333333333,2.67508,2.0678295833333333,1.25977,2.577706666666667,0.9245957142857143,1.0223200000000001,1.0223200000000001,1.0223200000000001,1.93936,0.55088625,3.86044,1.1443066666666668,2.30559,0.9983683333333334,1.7152966666666665,2.6309833333333335,2.00625,0.75744875,1.7313833333333333,1.5462966666666667,2.31474,1.636476,1.636476,1.6156733333333333,1.9906633333333332,1.093254,2.229973333333333,1.54945,1.1989366666666668,2.283275,2.06407,5.88975,1.7182075,4.346385,17.880119833333335,6.87777,3.85254,3.5095466666666666,3.1660233333333334,2.8989766666666665,2.7383699999999997,2.99609,0.6937608333333333,1.0499399999999999,1.0499399999999999,0.66924375,2.41848,4.41523,4.45785,1.553182,5.20405,3.74817,2.38743,4.304095,4.883025,4.154325,4.546535,3.5863333333333336,3.20935,3.411005,5.70705,3.506766666666667,4.620165,0.5190710000000001,0.5190710000000001,2.315735,3.10799,5.16705,4.5648,4.60423,4.580235,7.092846,7.52237,3.855605,2.51944,4.948325,4.17938,2.5776733333333333,2.629055,3.651435,1.5125266666666668,3.756555,2.280885,1.94453,3.3922000000000003,4.84539,2.019515,5.337979166666667,1.70222,3.4206,3.72676,0.9591628571428572,3.3733,2.9319900000000003,4.861715,1.1309566666666666,1.7456125,2.4930825,2.2358875,1.6463525,2.3522225,2.039735,2.1298325,4.539385,4.190505,2.88482,1.72519,1.4689966666666667,3.7113666666666667,2.0654066666666666,2.5644,4.59195,6.797,2.4737741666666664,2.93322,3.459065,3.528635,2.36328,5.24575,4.21654,3.174595,1.437275,4.347455,2.25562,2.8160933333333333,2.53622,3.945,4.921195,5.0538,2.669283333333333,2.9036066666666667,2.89882,3.7662333333333335,2.0252833333333333,1.492146,5.44895,3.4342666666666664,2.2639296363636365,3.1782866666666667,3.1045033333333336,2.4528033333333332,3.3317566666666667,3.3625000000000003,3.6644666666666663,5.1869,4.122695,3.15921,5.4127,3.33051,2.43081,3.492275,3.91768,3.921975,5.7979375,1.8938580000000003,4.222935,2.64438,3.085515,3.573655,0.64719625,2.334625,2.20004,3.440395,2.77248,2.09058,2.820075,0.625319,2.8172800000000002,4.61575,2.2162125,4.508835,2.61843,4.436585,1.992175,4.469585,3.97471,1.892428,3.012335,6.8875425,4.25435,4.043845,4.58796,7.080237954545455,4.055815,4.46696,2.16456,4.44081,3.028085,1.83252,1.91234,3.0306366666666666,1.0154257142857144,2.2853966666666667,2.60208,2.63107,3.5208666666666666,1.8457719999999997,3.289935,1.8804066666666666,4.948965,5.85397,1.0314975,1.7884066666666667,2.6267766666666668,2.823033333333333,1.9800466666666667,1.08204,5.629976666666667,2.2290725,2.71581,3.2470966666666663,2.89011,3.108643333333333,3.06021,2.19846,2.9973033333333334,2.3776100000000002,4.18673,3.909725,3.93109,3.4219666666666666,3.2482666666666664,0.8656499999999999,1.8181633333333334,2.21852,2.0488033333333333,2.58105,1.1449,2.74149,2.9889433333333333,3.539525,2.0436666666666667,3.383975,3.343325,5.6725,3.50317,0.5987141666666667,2.04326,2.9703866666666667,3.4941999999999998,0.8001363636363638,2.85173,3.6573979999999997,3.03651,2.6938033333333333,3.342731666666667,3.75324,4.0502,3.062186666666667,2.1476925,5.89135,5.11575,5.0501,5.3976,5.6829,1.75411,3.45783,3.7101333333333333,3.369566666666667,3.0115366666666668,2.8146166666666663,3.9772,3.8684,3.0378666666666665,14.30371,4.28723,1.15815,2.8831,1.601228,3.2076733333333336,3.136836666666667,2.4309,5.503095833333333,6.579302,2.399966666666667,0.933813,4.41968,3.673633333333333,3.24503,5.3194,5.30625,5.7612,4.785225,3.48182,1.9395625,6.4269125,1.1579683333333333,6.69269,4.77502,2.5108833333333336,4.028505,7.522248333333334,5.9666,2.2301433333333334,1.4953866666666666,2.021395,7.09759,1.5362625,2.86214,2.589955,4.168210555555556,5.92385,4.170525,6.20985,3.573315,5.5258,3.76098,8.33893,5.40875,5.54605,2.347675,2.624625,11.34266,3.560625,2.9059,2.4004600000000003,1.59396,2.621443333333333,2.7756433333333335,0.6666025,1.847918,1.0836657142857142,3.12665,7.118436666666667,3.7598779999999996,1.43585,5.02885,5.1626,0.610618,4.36535,3.470405,4.249215,4.168965,3.66935,2.667263333333333,4.17654,9.85473,1.8437675,3.852195,3.52433,3.988205,3.7121,0.9109333333333334,3.6506000000000003,3.9644666666666666,1.7467133333333333,2.503346666666667,2.33204,2.5573900000000003,2.5211200000000002,2.1384866666666666,2.136275,5.807612142857143,4.63135,4.86734,4.249081666666666,1.4411866666666666,2.617025,5.1377,4.682845,4.739525,4.54185,4.718275,4.882295,1.7084620000000001,3.9577,7.726345,1.5479016666666665,1.5592533333333334,2.5507866666666668,2.4441200000000003,2.7775733333333332,4.772962916666667,0.7997571428571428,2.80221,5.16565,6.06165,4.375005,2.5123133333333336,2.8821333333333334,2.0090025,0.55902875,2.33049,2.893975,7.606809999999999,4.16712,4.342705,0.9262750000000001,4.2623,9.518162916666668,10.985466666666667,3.26845,1.207605,3.52386,3.77119,2.7728099999999998,5.476263333333333,5.118,4.196355,2.1205825,3.7826,2.11248,2.58893,0.8315481818181819,0.41525,2.60338,3.380475,1.9757563333333334,3.42953,3.1060033333333332,4.195875,4.680845,1.5106920000000001,3.2355633333333333,2.02233,2.02233,2.124265,2.883235,5.2339,2.824336666666667,2.7003,3.426066666666667,3.5612,4.144425,4.27078,4.710375,4.071855,4.24901,4.414675,6.46505,8.060105,2.02664,2.20776,2.75273,0.8932666666666668,0.6789525,4.514155,2.223545,5.4659,2.932786666666667,3.1850533333333337,1.9139199999999998,1.4655675,3.83019,4.37513,4.2278,2.157016666666667,1.2899933333333333,2.6679600000000003,2.0513566666666665,2.5884966666666664,1.092722857142857,1.092722857142857,2.78729,4.36529,2.917165,2.96869,3.349595,2.052495,19.323238909090907,3.722835,5.9194975,3.98238,4.141895,3.841285,3.87112,5.54785,6.409935,0.83792,0.83792,0.83792,2.68192,1.7488857142857144,3.6664,4.36094,4.212495,3.189385,4.41216,4.456115,0.8840622222222222,2.248536666666667,2.7395266666666664,5.926974166666667,3.2833475,4.047266666666666,4.720785,1.9549225,1.9908599999999999,2.376403333333333,0.5197125,0.8238519999999999,1.809325,2.087015,2.863675,12.931728333333334,2.5333533333333333,5.2954,0.7732785714285715,9.680945,5.7993,3.69526,4.45957,2.747725,5.74315,2.747725,2.813898,3.774645,3.832015,3.875755,3.77407,4.64164,3.37619,6.0708,6.691748,1.7333433333333332,3.2462940000000002,2.722935,27.890358712355212,1.6441199999999998,6.49265,4.890414,3.97422,4.05846,4.750655,2.733075,2.766835,2.31305,5.9496,6.80605,5.05345,4.64684,4.628425,2.0900425,2.152515,4.657045,0.4428669230769231,0.4428669230769231,0.4428669230769231,0.4428669230769231,4.0287,3.1390866666666666,0.9299766666666667,1.7612633333333332,1.2178111111111112,4.98261,2.44838,2.4250275,7.399798333333333,3.1234533333333334,0.16913,20.521942,4.442488333333333,1.7375060000000002,1.3494021428571428,2.1646,1.919426,2.438865,4.70718,3.22877,3.921275,4.170765,2.37253,7.29899,2.78767,2.00878,3.560755,6.07325,8.307606666666667,4.47172,0.29174634146341466,3.516405,4.250475,3.0998966666666665,2.1423025,2.901816666666667,1.6048766666666667,1.6048766666666667,3.868015,5.77946,12.846348333333333,9.5912,0.62885,2.61992,4.840575,3.100195,5.5284,4.67636,1.7166799999999998,1.7166799999999998,3.965645,4.18874,2.4997666666666665,3.6079,5.40495,5.21465,5.712925,2.01396,4.7388,4.316375,2.63683,2.975156666666667,3.3321133333333335,5.01825,4.477915,5.1978,4.07072,4.212535,4.02942,4.425725,4.123225,5.842,2.716343333333333,3.097856666666667,1.148172,4.380365,4.29587,4.037845,1.837714,2.07296,2.7841833333333335,3.23226,2.2199733333333334,4.43684,1.6881833333333331,2.3281025,3.1456233333333334,3.0559833333333333,2.5983899999999998,2.662853333333333,4.641133333333333,3.4154,3.394,3.7321791666666666,1.9990433333333335,2.6561966666666668,2.085926666666667,4.93423,3.209823333333333,41.28391925,2.1968503636363637,2.1968503636363637,2.584233333333333,2.777863333333333,2.278983333333333,1.6468466666666668,2.898963333333333,1.8320633333333334,0.7504446153846154,4.83108,7.4695575,4.28076,3.92729,5.9442,1.86115,4.73325,1.9035540000000002,5.2499,4.732675,5.8472,3.501795,1.70389,4.199715,4.95106,4.634995,5.27175,5.5457,4.020345,3.3187166666666665,3.1820500000000003,2.235445,1.795705,4.319955,2.46197,3.7332,3.7332,2.228283333333333,1.5217933333333333,2.5961166666666666,2.4616599999999997,2.9472466666666666,5.11705,2.8411500000000003,1.1688283333333334,1.1688283333333334,3.8379,2.0262466666666668,2.4578133333333336,2.60475,2.6955066666666667,2.4616466666666668,2.3768333333333334,1.9918292499999999,2.796113535714286,1.4417155357142857,0.8042842857142858,59.826613406746034,2.3313099999999998,2.459103333333333,2.0436240000000003,0.8806480000000001,3.2896693333333333,1.637836,1.637836,2.500363333333333,2.901953333333333,0.63743125,2.59132,5.189016666666666,3.5574333333333334,2.648406666666667,2.81169,2.041463333333333,2.421181333333333,0.2880225,2.1689933333333333,0.7092080000000001,2.55844,1.224736,1.224736,2.4243266666666665,1.7669380000000001,1.9940633333333333,1.4200513333333333,2.6919533333333336,1.4200513333333333,2.1023366666666665,2.8865700000000003,3.3892,1.345518,1.345518,2.79869,1.4015466666666667,3.1041000000000003,2.0919,4.740245,4.51898,13.024684583333334,7.1404675,3.65845,2.674395,4.453475,5.31795,5.56465,2.7161383333333333,4.34149,3.84137,2.3591266666666666,4.51416,3.4878,2.70816,4.44437,2.25353,1.04603,4.2182325,2.91377,3.633175,0.7817299999999999,2.625825,3.59144,4.1524,4.33424,6.6942,2.7245500000000002,1.935754,4.08195,4.47403,2.25713,2.5915391666666667,1.98336,2.0919706666666666,0.8909940000000001,5.46945,4.830235,3.918415,3.932535,3.18901,4.208025,5.14835,3.270213333333333,1.7144533333333334,0.5331993333333334,14.859567499999999,0.5089127272727273,0.5089127272727273,0.5089127272727273,3.0689433333333334,3.8834999999999997,0.5089127272727273,7.20468,4.57953,0.715832,0.715832,3.1496399999999998,3.23937,3.0013,5.0533,4.53602,4.4376425,2.156305,4.900428,3.69297,3.5772388095238097,4.74375,2.89546275,2.2543375,2.3790275,2.5403,1.549095,3.3937166666666663,3.0144699999999998,2.562375,2.1733775,2.2263825,1.7594833333333335,1.577415,2.6382,1.1355333333333333,2.62435,0.6337007142857143,5.26845,1.6935575,0.7033566666666666,2.26639,8.038505,2.447385,2.13194,3.2366575,7.64652,2.495215,4.67399,3.31149,5.98011,3.94697,3.800445,4.076475,4.726085,3.0277333333333334,4.69993,1.1264014285714286,4.3348,2.38198,2.4906,2.57552,2.50719,2.2,1.2776375,5.4436,0.8862690909090909,5.38485,5.522,5.16475,5.4898,3.7985,2.45073,2.01634,2.960713333333333,3.191183333333333,2.49858,3.679866666666667,2.709175,3.79184,1.9302240000000002,40.94308904761905,4.814405,2.413936666666667,3.0556699999999997,3.152676666666667,1.4565733333333333,5.594943333333333,4.158705,2.8338699999999997,3.5170666666666666,2.37542,1.587045,5.6055,0.8314285714285715,4.899237142857142,1.3943471428571428,3.4879,3.4768000000000003,3.04537,1.44265,4.866596,1.6944919999999999,1.6944919999999999,2.630673333333333,3.0383458333333335,3.475,3.7826,1.4180833333333334,3.141443333333333,2.733303333333333,6.237321833333333,2.9885099999999998,3.846188333333333,1.2687383333333333,1.3557933333333334,2.943163333333333,0.911882,5.629948333333333,3.918066666666667,2.8982566666666667,3.6810666666666667,2.9694633333333336,2.78472,3.22959,1.7037966666666666,2.480355,2.7955966666666665,3.6618,2.4811533333333333,3.6717666666666666,3.124223333333333,0.6069093333333334,9.603912564102563,2.8358600000000003,5.51595,5.1777,2.8573299999999997,2.9315233333333333,1.34292,2.1884533333333334,2.127725,1.34292,3.164175,0.50542375,0.50542375,1.20128,1.20128,0.88521,0.88521,2.60097,2.9944,2.98663,1.433925,1.869545,3.64654,2.77194,5.03055,4.785055,1.953376,4.516105,2.302465,4.826851111111111,1.5609975,1.5609975,2.171185,1.729562,3.745965833333334,2.02466,4.60404,1.3884283333333334,2.29392,0.6149415384615384,1.1899185714285714,2.211505,2.115355,2.3459875,1.62685,4.393455,4.529645,2.5066633333333335,2.8261866666666666,1.4148366666666667,0.73545,2.5411066666666664,3.733155,2.577036666666667,4.669695,5.6111,4.940865,4.16344,6.659000000000001,1.6151216666666668,6.3056,1.89828,4.78413,5.05225,5.853244,3.3645666666666667,2.25299,1.707695,2.00888,2.00888,2.474615,2.474615,4.545975,5.4659,0.902194,4.235195,3.28855,3.395825,2.3594566666666665,1.4836925,2.7985166666666665,4.230115,4.655225,1.8767340000000001,6.5169,5.3715,1.83132,1.324725,4.04637,4.154146666666667,3.78709,3.41822,4.143155,0.6918664285714285,3.6437333333333335,3.1585,2.698446666666667,3.0243033333333336,2.21055,3.893966666666667,1.567885714285714,1.567885714285714,1.567885714285714,3.1135800000000002,3.0562066666666667,2.58405,3.579914357142857,2.464745,1.26814,3.2754600000000003,3.3032066666666666,1.2167557142857142,3.0923599999999998,2.7415599999999998,1.261037142857143,2.99572,2.9172833333333332,2.9199300000000004,2.7446633333333335,2.8684933333333333,2.22516,3.122476666666667,5.066682,4.669815,0.9164239999999999,1.516416,0.682779,3.5986333333333334,9.082725,3.1477566666666665,3.26548,2.6097266666666665,4.311200833333333,1.9038975,7.804885,6.706836666666666,2.9288600000000002,2.5526154285714284,4.529345,4.77811,1.638074,1.23399,1.381856,1.87368,10.632206666666667,2.870623333333333,3.0511166666666667,3.2161589999999998,3.857245,2.4781666666666666,1.23047125,3.9267,1.1440533333333334,3.754271923076923,4.072295,3.31194,3.3917333333333333,3.53131,5.02185,1.182995,2.041255,1.9773383333333334,1.9773383333333334,3.746865,5.21615,7.730969999999999,4.114425,3.905605,5.0304,1.878725,2.2894183333333333,4.88398,4.305745,4.69802,1.5867883333333335,2.72981,3.552565,4.20629,2.63105,4.21047,4.3682,4.577175,4.3024,4.427785,4.16551,5.27635,3.3105166666666666,2.545166666666667,4.61913,2.988305,3.75858,2.173195,2.67582,2.558425,5.1702,2.52459,3.2581394318181816,1.685575,2.50482,3.673685,2.12489,2.067625,0.8524733333333333,0.8524733333333333,1.7532325,3.7522009090909085,4.312575,2.861883333333333,4.278415,3.35572,2.501903142857143,1.01046625,3.60058,1.504665,4.78239,4.12818,0.9001441666666666,1.8166125,3.93345,2.9283475,1.56799,1.5709533333333334,4.916994285714286,1.049,2.754095,3.29102,2.804165,2.403655,2.803784,2.025835,0.9727625,2.890345,2.935795,3.398995,1.3981933333333334,1.5295533333333333,1.825115,4.47277,2.14147,4.657885,4.76516,4.784725,5.79365,5.4629,4.25483,6.11409,4.060165238095238,0.81448,2.802865,4.43916,3.937605,0.5045772727272727,0.8731,2.95526,4.111165,4.988185,4.73667,3.3951935714285715,2.74869,4.615015,1.7782399999999998,2.227795,4.634995,4.0033675,4.018125,2.885155,3.931725,4.82426,3.18371,5.5871325,0.9017350000000001,3.54139,2.643355,4.243375,4.635875,4.68541,2.1218,2.661975,2.871705,2.2020866666666667,4.792635,3.706545,1.4771571428571428,3.208065,4.3089625,1.445684,5.867685,1.854844,2.5624033333333336,14.013140443994601,3.2930200000000003,1.3842333333333334,1.53996,2.1280033333333335,5.531408333333333,1.6542439999999998,4.250824333333333,0.7211469230769231,3.3456333333333332,4.143045,7.350985,2.483426666666667,2.9082033333333333,2.9082033333333333,4.99804,4.39391,3.79644,3.29797,5.1017,5.49325,2.31834,3.3821666666666665,4.70589,1.2931983333333334,2.853676666666667,4.724355,3.761385,3.995725,2.5299,3.70169,3.72093,6.484985,6.05407,0.7590939999999999,3.970545,3.23187,3.17777,4.25507,3.996445,4.049535,1.703594,5.0476,2.682025,2.92881,4.22258,4.36872,4.39841,0.8904091428571428,2.5240199999999997,8.157678,1.4935049999999999,2.2277262337662336,2.2876825,3.936285,3.519685,3.254025,0.650309090909091,2.5067,1.6007375,2.31591,4.53421,5.526942666666667,3.000736,9.35506,2.6516533333333334,2.72801,1.11703,4.44702,5.5538,1.971265,5.736176666666666,3.10635,3.14847,5.40955,4.36189,4.741045,2.10191,1.518975,1.518975,2.67521,3.202965,5.397164999999999,1.491625,6.801661666666666,1.5459033333333334,3.567155,1.5302483333333334,8.799390833333334,3.795555,2.76736,5.0193,4.90164,3.80428,1.1250383333333334,2.2537975,3.6260999999999997,3.2051200000000004,3.493233333333333,3.688466666666667,3.900405,2.727325,3.2817,3.296495,1.516175,2.5239033333333336,1.8702633333333332,2.89362,2.371496666666667,5.5038791666666675,3.344466666666667,1.8158866666666666,3.0910666666666664,3.225115,3.58686,6.0129,5.79605,2.949815,3.681055,3.67398,3.08357,2.83502,1.1590266666666666,0.9471080000000001,6.85754,3.13094,5.17155,5.1177,6.147,3.858355,3.1929499999999997,6.2981,2.505845,0.49660666666666664,5.3206,3.453495,4.05346,3.2992566666666665,1.4231157142857143,4.730625,1.2907819999999999,5.1119,0.90367625,1.5828233333333335,2.89739,2.493743333333333,2.4526172857142856,3.961325,5.31305,5.419151666666666,5.419151666666666,4.492789999999999,4.492789999999999,4.664485,3.143283333333333,4.445335,0.9887425,5.612,4.000525,3.6734000000000004,4.17961,3.87463,5.25835,1.9479825,4.874335,3.2046459999999994,3.478975,4.284555,2.44221,4.637105,5.3099,3.74046,3.23047,4.50966,3.714285,5.0319,3.230015,3.11008,6.0139,4.242765,2.9031599999999997,6.292305,1.5768033333333333,2.251335,4.79155,4.5905,5.7805,4.023055,1.9760375,1.9760375,13.938877781746033,9.30816,5.62305,4.035135,2.98923641025641,4.54054,4.533565,2.5236,3.22997,3.23015,3.8364666666666665,3.537266666666667,5.0604,2.14113,7.769831666666667,2.452605,1.8517175,5.1774,2.47511,5.05095,4.527005,4.885905,0.9093300000000001,3.58957,3.860365,0.9928699999999999,2.97151,4.318574166666666,1.45523,2.13332,2.96939,2.6648633333333334,2.5940933333333334,3.134733333333333,2.631276666666667,0.4947128571428571,2.7703900000000004,2.3941933333333334,2.9399266666666666,3.1529566666666664,1.625938,3.324336666666667,7.357261666666666,4.84177,2.4178966666666666,1.9693033333333334,2.55234,3.711445,2.3284,3.5868889999999998,18.09729,5.41175,3.483408,5.57865,3.799265,5.367596666666667,1.5650966666666666,6.0988,1.5006899999999999,4.44563,3.688065,5.32865,5.06965,0.9683636315789474,5.2927,2.444175,4.73428,3.25047,4.3776,4.54726,2.967815,2.0617366666666666,1.544962,2.0034775,4.55569,4.71909,2.095635,1.727835,2.9609400000000003,4.480933333333333,3.15464,5.83885,2.2169925,3.470535,4.595325,5.3009,4.52033,3.500195,4.273405,4.47389,4.11947,2.752003333333333,2.752003333333333,5.571577777777778,1.9777866666666668,2.7524433333333334,3.93991,1.7354479999999999,7.87721,3.59349,4.496146666666666,4.430866666666667,4.633575,2.00332,4.213805,5.05125,3.72383,2.083475,3.63554,3.22542,1.2341225,1.528635,1.2171466666666666,0.6912483333333334,1.7139866666666668,1.1111183333333334,4.51727,0.9238211111111111,3.04571,1.6194466666666667,1.7590925,1.0846066666666667,2.36425,2.3073,1.471575,3.3403666666666667,2.6056233333333334,4.696508333333333,1.5856816666666667,2.4723475,3.4255666666666666,2.6878766666666665,2.4800866666666668,4.516334166666667,4.687005,4.985298333333334,20.250562249999998,3.07925,2.2145925,0.6393207692307693,0.654379,4.513566666666667,1.992832,4.02331,4.758485,7.343511166666667,3.73577,3.71018,3.95644,2.997856666666667,3.1073533333333336,3.2611399999999997,3.851233333333333,3.287873333333333,6.11595,3.752915,0.905888,1.17015,5.25475,3.2638599999999998,2.54473,2.1235066666666667,2.30163,5.6558,4.95247,2.2666875,1.45368,3.305755,5.1697,8.782073333333333,5.667753749999999,4.32796,4.24334,5.3493,4.767135,4.511415,4.781445,4.477715,5.6543,1.811705,5.92055,1.623257142857143,5.2571,0.77672,5.3162,5.50495,6.21825,6.25035,4.548645,5.85785,6.0408,6.3663175,2.0090166666666667,1.6310857142857142,5.55175,3.811125,6.8077749999999995,4.969315,5.3156083333333335,5.029,6.14665,1.376807142857143,4.613945,5.8207,4.020533333333334,4.886295,6.01625,2.632525,3.86665,3.73814,4.86643,1.0227333333333333,1.6263066666666666,1.378114,4.930165,4.058285,4.77903,2.6910566666666664,3.053786666666667,1.6131466666666665,2.17343,0.3814416666666667,3.21789,1.585094,2.0980983333333336,3.16732,2.3726933333333333,3.3371333333333335,2.4329275,2.690675,10.396068,3.6344666666666665,1.8298978205128207,3.917555,0.8514409090909091,4.484675,1.111965,1.73434,1.98828,1.073085,5.552352666666667,1.1638830555555555,1.1638830555555555,1.1638830555555555,2.9033333333333338,1.667792,5.22515,2.979225,1.465285,1.59277,1.9108975,1.4292375,1.6774799999999999,5.464604166666667,0.8869455555555557,4.603425,4.157735,3.5608,1.0164828571428572,2.161469,2.318225,2.318225,1.6308116666666665,3.8705366666666667,4.75393,4.892035,5.57825,4.29742,5.4943,2.9119766666666664,2.0950925,3.126485,5.2846,3.45562,4.733275,1.1397325,4.036947916666667,5.35225,1.9371475,4.48942,2.9560033333333333,4.37876,5.33135,2.54239,6.4291,6.2823,4.74445,4.788955,4.18749,3.30596,8.13209,4.02407,6.27045,3.415415,2.77459,5.15975,2.6682166666666665,4.480995,4.95953,2.8012366666666666,3.28211,3.94833,1.2937766666666668,10.72687,5.32035,3.25182,15.45976365079365,4.11904,1.8104366666666667,2.999726666666667,3.04255,2.72385,4.19978,2.502163125,3.37341,4.340965,2.92041,4.130395,6.124805,1.2599433333333334,2.397175,4.10432,4.923395,5.1562,2.23237,0.63761,4.82378,4.296185,2.028935,1.26973,5.0474,4.93802,0.9760433333333334,3.74012,12.777326666666667,1.3104687142857143,0.4021207142857143,3.7032000000000003,4.324158333333333,1.0481411111111112,4.183085,3.911285,5.218995,1.37845,3.33914,4.093205,3.2776,4.58403,4.53815,5.54895,8.817630000000001,3.31741,3.91318,4.259715,16.340496875,3.5151475,2.5337,1.5104125,1.98477,1.23826,2.0126037500000002,1.9469575,2.006475,1.8848525,2.206655,2.565125,2.4864275,2.0544675,5.3208,4.05739,5.22225,3.30084,6.117298333333332,2.984773333333333,4.757505,3.3811666666666667,1.1474825,3.68946,2.0171025,2.801887333333333,4.952955,4.716335,4.75626,5.17435,2.7586366666666664,3.178846666666667,2.4126833333333333,3.83421,3.7054,2.250835,1.804795,3.7464,4.86636,4.121265,2.3672366666666664,12.215566666666666,0.6386946666666666,2.818115,4.990435,2.671146,1.185612,2.80707,7.544241666666667,7.359906666666667,4.847925,4.20472,3.723655,2.1251075,2.291555,2.8270653333333335,2.0458233333333333,4.039289999999999,4.80641,4.462185,0.49667333333333336,6.43625,3.5403000000000002,3.549633333333333,3.945866666666667,6.48785,9.155389,4.3403515,1.1371725,2.17196,2.231215,3.604635,2.59291,4.11392,4.725305,3.4256333333333333,2.7929333333333335,4.24587,3.98084,3.75748,3.9521333333333337,2.3803266666666665,3.125215,5.44555,5.3768,3.3795333333333333,1.7238175,2.1907466666666666,28.844655410256408,1.4754775,1.4754775,2.1774033333333334,4.342044,3.720255,4.388295,3.426205,3.250955,4.10415,3.0967233333333333,4.201465,3.0967233333333333,3.50354,1.91509,1.5245466666666667,5.9548,2.33059,4.855295,3.244815,2.789925,6.99399,2.0254533333333335,5.0529,5.25685,3.69845,3.51279,4.87095,2.0372399999999997,5.03835,3.7011900000000004,7.215056666666667,5.665490833333333,2.40015,4.301465,4.499235,2.0865,3.006596666666667,3.7479,0.4728078571428571,3.4378666666666664,10.135946666666666,4.02713,4.47124,5.34795,3.3140408333333333,3.14715,1.3428242857142858,4.283305,5.4532,3.384915,2.6402,4.98081,3.850015,4.253695,4.48368,2.365835,2.365835,3.988615,3.098615,2.8029968181818186,1.89476,5.1943,3.979245,1.1280614285714285,3.909485,4.496695,2.7106266666666667,7.620725,7.92837,1.4821719999999998,4.21163,4.85072,6.956201999999999,0.8147500000000001,7.372063333333333,3.6422350000000003,0.6610881818181817,5.51635,5.4753,5.1352,4.4075,5.29805,4.73472,5.02585,3.804295,3.81758,4.72256,5.1004,5.6145,5.18585,3.881045,3.35511,4.538335,3.90827,0.8825329999999999,4.295205,2.590155,1.74849,4.33358,4.78068,5.49565,1.0405714285714285,4.951608333333334,3.028225,2.72437,1.927975,1.22605,12.276999166666666,3.06674,3.199476666666667,2.3117033333333334,3.7831190476190475,5.292443333333333,6.104896666666667,2.649786666666667,2.3732666666666664,2.25046,2.25046,2.25046,1.3793866666666668,3.61071,4.07547,3.11663,4.501505,8.126854999999999,4.16008,1.102074,2.28202,4.174405,6.0298,1.752814,3.997215,2.86959,1.2764466666666667,3.18068,6.034389285714285,7.0046325,4.678525,4.24259,3.2333533333333335,5.51255,4.290945,5.480235,1.962405,1.962405,4.35339,3.79015,2.6586163333333332,2.6586163333333332,3.845955,1.2657271428571428,5.1241,3.677815,4.190905,4.300995,4.376825,3.0508633333333335,1.0402285714285715,4.567225,5.3774,4.607905,4.867165,4.835555,4.86144,4.47672,2.1094325,1.46136,3.34231,4.097995,3.31867,4.25734,2.036995,3.1433299999999997,4.350195,2.72338,4.91891,8.475465,2.406865,3.0421766666666668,4.494760476190476,4.881631666666667,1.8997775,1.9444226190476188,0.9013483333333333,1.9444226190476188,2.0109166666666667,2.0109166666666667,1.513312,4.690185,3.065315,4.11279,2.232685,3.806385,1.574205,5.4687,2.992535,1.6421625,3.0050166666666667,5.3993,4.17822,6.35595,4.833085,1.2931940000000002,0.842,3.643625,6.16705,2.416376666666667,3.5358,3.211585,3.211585,2.396845,3.441825,3.19756,1.466206753246753,3.1877366666666664,3.52492,3.516315,4.515035,4.079445,1.6176075,3.610455,4.781735,4.217265,5.35445,4.177295,1.928335,2.183385,1.2744666666666666,2.3430375,3.427885,1.9303825,4.14937,3.247833333333333,3.036155,4.038255,4.922675,2.549725,1.115132,1.80487,1.5116225,1.2152777777777777,4.94517,4.295435,1.148172,0.21699173913043476,0.21699173913043476,0.21699173913043476,3.504985,5.9489849999999995,4.39255,5.4435,3.33545,3.767315,4.52185,4.420755,2.839355,3.79387,1.62186,4.862155,4.303645,3.991135,4.45785,4.648755,0.7281536363636364,0.7281536363636364,0.7281536363636364,0.7281536363636364,0.9809240000000001,0.9809240000000001,4.124435,4.04841,3.602945,2.589685,2.501095,5.268,4.495765,5.1372,4.28804,3.374166666666667,2.5229399999999997,9.80844,1.6142600000000003,1.6142600000000003,4.12793,5.5336,3.2248666666666668,0.50542375,0.50542375,0.50542375,0.50542375,0.50542375,0.50542375,5.0590633333333335,5.1301,3.89749,4.35103,2.7203125,2.7203125,2.72863,3.112365333333333,2.5629399999999998,3.18719,3.47067,6.7765526666666664,1.3567040000000001,4.82309,3.92704,4.0414,9.831356666666666,2.41774,2.940195,0.8662614285714286,2.264495,4.61448,3.678175,1.12417875,2.8515833333333336,4.20631,5.61325,2.746675,4.747763055555556,1.179822222222222,1.9508333333333334,4.839115,4.862395,2.9413665,2.5993833333333334,2.23868,1.4149883333333333,8.130893333333333,3.776866666666667,2.17402,3.10551,2.6935966666666666,3.99079,4.39863,2.7419766666666665,3.5635333333333334,6.11895,1.4660366666666667,4.948135,4.96495,4.52502,4.04282,2.33329,3.398925,3.78395,3.719385,2.943285,4.486365,4.79846,2.856033333333333,2.00496125,2.9959866666666666,2.7537333333333334,2.827693333333333,0.8038163636363636,2.2133425,8.4145325,0.49081,3.08574,1.6938733333333333,2.5507933333333335,3.0678533333333333,2.913536666666667,1.2646222222222223,1.8150099999999998,2.79228,2.1005575,3.718955,2.0152,2.7969233333333334,1.5708833333333334,3.34375,2.23805,1.1394028571428572,3.117646666666667,2.1589075,2.3358,2.6641833333333333,2.8371766666666667,3.2486833333333336,3.2981533333333335,3.0866966666666666,3.010196666666667,3.2896466666666666,2.991816666666667,2.42812,1.6840533333333332,2.4739633333333333,2.84444,1.64316,3.10895,3.9635728571428572,2.9727599999999996,2.7112266666666667,3.0236066666666663,3.8396000000000003,4.8142708333333335,2.933286666666667,1.6583557142857144,1.6583557142857144,2.30386,1.1300425,2.3819275,3.3667266666666666,4.629314166666666,2.544575,1.97136,2.1726025,2.0969375,3.71436,3.2535,3.933305,4.926725,1.7762375,2.5787400000000003,3.600725,1.279234,1.279234,2.74495,0.6433384615384615,3.0666192307692306,2.3182525,2.3182525,3.2384799999999996,2.45362,2.8820266666666665,2.6853233333333333,2.36983,6.398956666666667,3.9406675,3.9406675,3.736175,3.150135,2.242805,3.06138,2.45289,3.01269,5.23195,0.5027441666666667,0.673658,4.07859,2.848085,2.94155,6.75475,3.76484,1.6503640000000002,5.3133300000000006,4.692175,3.916275,4.25758,5.35775,4.847875,13.2922425,3.38773,1.6161533333333333,2.70969,3.708745,5.1838,3.69207,4.2519,4.521285,3.67717,3.759735,2.832573333333333,3.482255,2.742316666666667,2.38371,2.38371,4.15617,2.8555,3.005655,3.37523,2.57909,2.54816,2.28269,1.8826425,2.0198525,1.8169725,2.00259,3.9916605,3.703275,2.642415,6.9860825,3.516675,2.3506733333333334,1.7800266666666669,3.414955,3.8376,3.67869,3.12853125,4.0974,3.24182,4.28743,3.628,3.816625,3.964855,3.3248430000000004,3.445005,0.6484533333333333,0.6484533333333333,0.6484533333333333,3.395065,2.264685,4.679245,2.96313,3.809805,7.801767222222223,2.89921,0.3962653846153846,5.2464,0.791921,4.448957142857143,2.01538,4.02907,1.88036,4.552825,5.819566666666667,4.31395,4.03538,2.80335,2.9769633333333334,1.5647650000000002,2.9530066666666666,0.5140636842105263,0.6378117647058824,3.1751,1.5255400000000001,1.9547675,3.857005,2.78018,5.17165,2.958126666666667,3.0116283333333334,3.36176,5.32607,1.87175,0.9651285714285713,2.274455,3.184988,1.3233768831168833,4.940915,3.82626,4.241365,2.7404433333333333,4.49731,3.2876933333333334,2.64363,2.99286,2.1406875,2.8005933333333335,2.1529025,3.1576966666666664,2.4121833333333336,6.093252,2.333655,1.8793733333333333,2.6515566666666666,4.894289333333333,3.23384,3.23384,2.33975,3.96135,2.1674625,3.42383,2.908195,0.6464393333333334,4.39955,2.049615,11.499881111111112,7.37743,2.89051,3.00643,3.32358,5.32535,2.787605,3.519685,0.24038666666666667,1.8980075,3.8983000000000003,0.8408583333333333,3.856775,1.3850014285714285,5.00775,3.391105,3.557425,4.059475,3.97989,2.260445,4.715215,3.81398,4.569095,6.99151,3.97546,3.011763333333333,3.137233333333333,1.6520040000000003,1.9875,4.36525,4.485305,4.0447,2.618885,3.77526,1.495846,2.884985,2.356275,4.758785,11.265266666666667,3.64618,7.067956666666667,4.090445,4.408855,0.98154,5.094176,4.93341,2.5357233333333333,2.716753333333333,3.4841333333333337,2.9579866666666668,2.3934866666666665,1.7241066666666667,1.9178199999999999,3.626035,1.737274,2.8410933333333332,5.373067333333333,2.8276466666666664,0.9921589285714285,0.9921589285714285,3.55181,3.1335235,3.1335235,3.4979666666666667,2.8279866666666664,3.4234974358974357,3.6683,3.7307666666666663,2.7010133333333335,2.3857,2.4666833333333336,2.990623333333333,2.2284075,2.472513333333333,1.624148,5.744528,9.194418166666667,0.53708,0.53708,0.53708,0.6243990909090908,0.6243990909090908,0.53708,2.8353,2.9714066666666668,4.245098333333333,1.4515716666666665,1.77192,3.355088,2.3733833333333334,3.03862,2.37328,3.2097466666666663,3.6339666666666663,6.7693200000000004,3.0896733333333333,2.4876033333333334,3.5076,4.92549,2.6165133333333332,3.5332333333333334,5.64895,2.3353633333333335,3.3539999999999996,1.3574233333333332,1.3574233333333332,2.9354266666666664,0.5467473684210526,2.2695166666666666,2.735133333333333,2.9877633333333335,3.3976333333333333,2.256883333333333,1.5490733333333333,2.946123333333333,3.3417333333333334,2.355843333333333,4.57598,2.491703,3.755955,2.945735,4.296985,0.5180629999999999,8.416895,2.9165419999999997,2.9165419999999997,7.974385833333333,1.77344,2.22321,2.9729466666666666,3.697465,2.3301833333333333,1.9895833333333333,2.76228,1.432775,3.4115333333333333,1.7881600000000002,3.0549815,1.446075,0.2690377272727273,0.2690377272727273,5.08965,3.966985,3.36668,2.850013333333333,3.258115,3.385295,1.2978533333333333,6.2262,3.825275,2.934405,1.8670375,1.1866958333333333,2.176865,2.9729466666666666,2.48042,1.9328,6.20938,3.942615,4.58961,4.75706,2.2685,0.6840016666666666,7.2503375,2.06764,1.4967475,3.47391,4.400415,2.177335,1.9721,5.01,4.31784,3.4726666666666666,3.11683,4.807105,4.472215,3.4466666666666668,2.60434,2.60434,4.35607,4.92301,5.72455,6.589496666666667,2.6744766666666666,4.187055,1.3947357142857142,2.222585,4.482098000000001,3.82021,1.8340779999999999,4.017955,3.4690450000000004,4.445235,2.137885,4.43845,4.860455,5.1179,4.83164,2.4419299999999997,2.6761166666666667,3.8937666666666666,2.0589866666666667,2.532,3.588433333333333,2.4685633333333334,0.803729,2.00866,2.791346666666667,2.365685666666667,4.63815,4.52925,4.743655,3.97813,4.348735,5.5798825,11.54673,5.73395,4.078395,4.386025,4.05536,4.664735,2.900323333333333,2.877614,3.894,1.2795,2.7139,2.876015,4.41757,5.25085,4.720655,3.095266666666667,2.62546,2.2926699999999998,4.293866666666667,4.5314225,3.5271666666666666,4.5314225,2.576123,2.293013333333333,2.403235,2.2855175,2.493536666666667,2.39885,1.0261966666666666,1.7502333333333333,1.8125466666666668,2.060443333333333,1.6236066666666666,1.3112466666666667,2.5787466666666665,2.6417366666666666,1.547334,3.1814066666666663,1.29329,1.96547,2.63665,2.9092533333333335,3.184753333333333,2.404603333333333,2.4012533333333335,3.287505,2.228905,2.7332199999999998,2.9339933333333335,2.508106666666667,3.0478400000000003,3.1110499999999996,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,4.969785,4.8865,1.0314885714285713,3.1448866666666664,2.599833333333333,2.8066099999999996,4.257895,2.9323933333333336,4.467135,3.673608666666667,1.6632079999999998,3.2995866666666664,1.5319099999999999,1.10842,0.957537,1.2665833333333334,0.9029283333333334,0.8226216666666667,1.319054,3.30914,1.7576239999999999,1.808,1.7027349999999999,2.2961566666666666,1.0615466666666666,1.3097616666666667,1.3672700000000002,0.96152,1.2389833333333333,0.717275,0.88541,3.35152,3.529295,3.99951,4.39578,4.17136,3.1027666666666662,4.301485,3.9484999999999997,1.840335,3.632765,2.14355,3.526385,2.125863333333333,0.7508327272727272,4.230695,4.50977,2.0452033333333333,1.2151325,2.8694,3.31998,3.8705366666666667,2.9587299999999996,2.507745,0.8831825,1.9466925,5.236925,3.741715,3.66923,1.5187133333333334,3.695015,2.00528,0.6629018181818181,4.437385,3.977055,4.113325,2.45458,1.390982,4.29178,4.391035,2.5888166666666668,2.5739233333333336,2.669563333333333,2.6524633333333334,2.6929,2.8354533333333336,3.082543333333333,1.2834125,2.749725,2.5987433333333336,5.3784,4.365105,3.683155,4.69834,16.053202823232322,4.6663525,4.435322,2.89429,3.90449,5.1243,1.659532,2.4481,2.3657766666666666,6.6524350000000005,3.677795,3.83063,5.4173,2.3657766666666666,3.82349,2.09765,2.5087800000000002,2.99886,2.7588000000000004,1.2712933333333334,4.348535,4.25222,2.56819,4.18555,2.42207,2.551973333333333,3.73691,3.172935,4.66936,3.97116,2.68637,3.43299,2.625135,2.566946666666667,1.24142,1.24142,2.30758,2.1385166666666664,0.2768607142857143,5.040852,0.971472,2.78551,4.17245,0.5699641666666667,5.13855,7.928241666666667,1.822785,3.68197,3.799245,2.7759033333333334,3.290545,2.282055,3.04278,3.607255,4.09152,3.286185,4.097733333333333,1.0333166666666667,12.414588,2.87448,3.48141,4.577805,2.532765,4.13702,8.140135,4.44921,4.464495,3.82709,4.215,5.6408775,1.5035775,2.86608,5.1882,3.792566666666667,1.890438,3.81583,3.66609,3.64458,3.95755,4.64587,4.066915,2.4227666666666665,3.889965,3.83949,5.3439,3.74721,2.3408266666666666,2.5267933333333334,2.635083333333333,3.0084466666666665,1.2747,3.5804666666666667,0.8802736363636363,3.5029333333333335,3.0386433333333334,2.5662233333333333,1.463745,4.448535,4.43195,4.20241,1.8446225,4.705135,4.02259,0.771640923076923,0.37626692307692305,4.447845,4.945765,1.216115,0.37626692307692305,3.294385,0.771640923076923,0.771640923076923,0.37626692307692305,5.7588333333333335,2.5593733333333333,2.508383333333333,5.5971,3.862665,3.07379,0.7927077777777778,3.169255,3.78094,4.55294,5.499,2.1585525,0.7498123076923077,4.558433333333333,2.58907,1.436634,2.13911,1.0774885714285714,2.5082,2.397956666666667,3.65081,5.1747,3.03499,3.0699799999999997,3.3593333333333333,2.3718733333333333,2.98554,4.24679375,1.647085,1.9806925,3.88192,5.40635,2.1113934722222223,5.46845,2.648915,4.13386,4.300885,3.23034,1.1967075,3.09933,6.24915,3.61708,3.46219,4.890785,5.76855,3.04577,3.681265,4.560875,3.098115,3.33892,8.29792,3.71669,4.47435,2.25694,1.13285,2.3803033333333334,1.97388,2.123995,1.859945,4.78066,0.7338928571428571,4.122785,4.66309,1.9348266666666667,3.0682766666666663,5.03125,3.493275,2.989515,4.32938,5.4432,9.754461000000001,2.730586666666667,3.245703333333333,1.679542,1.6627599999999998,1.1813,1.3558266666666665,2.977983333333333,2.4548733333333335,2.9422566666666667,4.263989102564103,1.495275,2.5712733333333335,5.62065,5.6042,3.94616,3.485525,2.97218,2.56098,2.15233,2.054085,1.7162233333333334,2.17442,3.41385,3.6999,4.976385,5.23045,4.19227,5.516724583333334,3.552465,2.48788,6.46900125,3.81952,7.951544999999999,4.7482725,4.7482725,5.4420866666666665,1.6184766666666668,1.339965,1.6935166666666666,0.715972,5.0635,4.162166666666667,3.4416775,3.4416775,1.8677160000000002,4.64528,4.44565,4.868195,4.463115,2.81694,2.66483,3.86568,3.0735499999999996,5.034225,3.93733,0.8518227272727273,5.65375,5.20665,4.770615,5.02855,3.026475,5.51555,4.40219,0.8707076923076923,4.958025,7.102693333333333,4.186115,5.19855,6.01865,3.414105,2.593445,4.001685,6.2778,2.1759975,5.667,1.951965,4.479545,2.697293333333333,1.9130325,0.9017350000000001,3.558,5.7299,3.209145,4.348915,1.9835266666666669,3.56633,7.914540000000001,3.80617,4.259625,2.562445,2.71439,0.8677889999999999,5.0443,1.5395233333333334,3.65064,3.65064,4.196765,2.2708033333333333,3.1629166666666664,4.65468,1.9033375,3.3001233333333335,3.465666666666667,3.4099,2.815355,3.929635,2.830455,1.8881375,3.626533333333333,2.0648875,2.8276233333333334,2.041726666666667,3.1328266666666664,2.8426766666666663,1.4484285714285714,1.4838933333333333,0.37113166666666664,1.2874166666666667,0.37113166666666664,0.37113166666666664,1.4838933333333333,0.37113166666666664,3.3922000000000003,2.7905379999999997,2.7905379999999997,2.7971466666666664,5.51965,4.68834,4.519455,5.45325,5.03635,3.42505,4.506875,4.457225,2.1906675,2.464388666666667,2.7304600000000003,0.7586590909090909,5.601,3.2024233333333334,3.02242,5.4111,3.70313,5.41865,3.322585,2.6552599999999997,2.977635,3.300525,2.44903,2.7838833333333333,2.0008833333333333,5.73945,0.8452544444444444,4.05086,1.1996442857142857,3.616485,2.573586666666667,3.15542,4.091145,4.20825,3.9513,4.875255,4.098645,4.174145,4.348835,4.237665,2.55835,2.72545,3.5945666666666667,4.174185,3.97499,5.5519,2.64497,3.373605,3.0169766666666664,3.435545,3.876435,4.43115,4.185715,68.80112737712288,2.6852125,4.188405,16.58953,4.04583,3.1209566666666664,2.2067166666666664,2.00588,2.267113333333333,4.7360275000000005,3.1479233333333334,4.575225,6.8963,3.23948,7.573343333333333,5.316,2.364275,3.24406,3.81548,3.420045,1.834088,1.161015,4.52497,2.931215,5.99629,3.648525,2.3750766666666667,3.42499,3.89534,4.51138,3.30737,5.649015,4.590835,3.90491,3.733695,2.553175,3.69711,6.1868,2.541305,4.155515,4.64388,1.18018,2.816145,5.395645,3.582545,3.39889,3.619055,2.693875,4.27471,3.1174,3.296005,3.86493,4.49154,3.12921,2.853815,4.469365,9.071865,3.2586733333333338,4.08707,6.33852,3.20686,2.595435,4.095395625,2.154456666666667,2.8994933333333335,3.080388,3.360405,3.18202,4.076395,3.36661,3.25361,4.07322,3.7763,4.21502,4.08421,3.54361,3.72483,2.741546666666667,2.741546666666667,6.667668333333333,1.81059,3.341995,3.296355,2.40536,4.34289,4.166285,3.08037,3.159415,5.8615,6.9106625,0.7373463636363637,5.82725,2.564795,2.9189900000000004,2.7094766666666668,5.1834,2.7562266666666666,2.0095475,1.18107375,2.051732121212121,4.118525,5.18565,3.86748,6.39925,4.909435,6.0182,2.31486,1.7448866666666667,5.02265,3.18173,3.1393566666666666,2.13042,1.1185783333333335,2.9045,3.3732333333333333,1.648772,2.4451666666666667,2.4227262857142855,3.553548379120879,2.744495,5.01035,3.37997,1.37593,5.10265,3.56785,4.99339,4.940515,5.0094,4.58785,2.3152399999999997,1.4738433333333332,0.64311,1.53392,3.50343,2.50081,3.4817566666666666,1.3756866666666667,2.529755,2.27534,3.7204,3.52848,4.150235,3.9815183333333337,1.594735,1.3626925,1.906245,2.0076675,1.4197225,2.739325,6.871162583333334,4.83794,4.262865,2.99074,7.263615,5.2008,3.14694,3.047035,3.354605,2.65274,3.794065,2.2824266666666664,7.35812,0.8916116666666666,3.358885,6.6403,3.99029,4.807805,5.653,1.4669433333333333,3.295783333333333,2.943713333333333,2.969473333333333,1.6647875,4.06474,8.52692,3.53442,4.39922,4.09543,3.66062,4.64197,0.8903416666666667,2.763146666666667,5.5237,6.523036666666667,4.745225,5.1447,2.92558,3.8140666666666667,2.9821000000000004,5.4208,4.974765,3.7876793571428573,3.7876793571428573,0.6275528571428571,3.3070799999999996,0.904594,0.73963,1.764795,3.7410333333333337,4.4433,5.914114285714286,2.8175166666666667,3.5099342857142855,3.4431109523809527,3.09666,3.33205,4.543266666666667,3.2145591666666666,1.7407775,1.7407775,3.97468,2.97421,2.7446633333333335,3.96077,3.4781,0.7291255555555556,3.295856666666667,2.4758633333333333,2.6823,3.04815,2.534225,2.3938900000000003,3.06099,3.145073333333333,0.856202,2.81847,6.316295952380952,2.19954,7.685831666666666,1.56707,1.56707,3.3188708333333334,3.3057733333333332,3.3920333333333335,3.0388633333333335,1.692176,1.326587142857143,3.2264633333333332,3.4517333333333333,1.4972583333333331,1.41109,2.7880633333333336,2.895796,2.72439,1.892105,2.1086025,2.78147,2.094345,2.690625,3.33712,1.55562,3.5589,3.18232,7.21828,4.1965,1.687345,3.457795,2.62998,2.117645,3.942565,2.5510733333333335,2.67696,6.8388925,0.8021615384615385,0.5385208333333333,4.944785,1.523878,1.523878,3.778205,2.4058225,4.69948,3.479965,1.3036266666666667,2.3044193333333336,2.84206,2.3207660000000003,5.11275,3.40607,2.7233866666666664,2.2933133333333333,1.5644928571428571,1.5644928571428571,2.48808,3.81561,3.8463333333333334,6.18995,3.10096,4.80315,4.28721,6.6275,4.398025,2.57197,2.78393,2.5989566666666666,2.6508933333333333,0.7270244444444445,0.7270244444444445,0.7270244444444445,2.951285,4.19631,3.87064,0.8180725,0.8180725,5.2471,5.8772,6.50366,22.40838611111111,11.7375,8.96983,3.225355,5.63265,2.25723,4.383635,2.4567033333333335,3.20661,4.120433333333334,5.53364,2.034695,1.97181,6.31826,2.1039000000000003,2.1039000000000003,6.40955,3.28448,4.26923,2.1718675,5.075948666666667,5.06005,3.720205,5.0613,3.740305,1.0978066666666666,5.8844,9.21708,1.0978066666666666,2.1718675,2.1275033333333333,0.765544,0.765544,1.717644,2.2433,1.717644,4.681535,5.36995,6.1572,8.29746,2.1718675,11.395708166666665,5.91495,5.7234,2.25723,3.28617,4.399635,8.88414,3.142389166666667,3.69473,5.7515,3.26694,4.545975,6.14825,4.41747,4.898835,5.04185,2.6304,5.1775,3.44182,4.716505,4.553955,0.7963,1.576072,3.23263,5.28465,4.85091,2.8276466666666664,1.8790825,4.00233,4.848255,5.8394,5.3882,5.3069,4.35648,3.12446,4.21718,3.64773,2.070175,4.910475,2.034455,2.67332,3.669965,1.9354433333333334,3.842625,4.32873,3.74619,5.04065,3.10198,6.843859999999999,0.9635666666666667,3.44574,3.54171,1.1939685714285715,5.428656,1.5810816666666667,1.56722,2.62819,2.857558,3.03383,2.8650366666666667,1.9183875,0.7475272727272727,2.2607133333333334,2.39026,3.861615,0.7737538461538461,5.230438333333334,1.6853733333333334,1.1297739999999998,3.5405333333333338,1.1297739999999998,3.95547,0.8631454545454545,4.489475,3.18853,1.88554,4.101685,3.6596275,3.6596275,4.915145,2.525325,3.21908,2.613593333333333,1.625938,3.74974,3.772875,1.9921300000000002,0.7545341666666667,7.248035512820513,2.669195,3.68066,4.22955,7.51272,2.62475,4.101195,3.76927,3.153985,3.776685,6.07265,6.5590875,4.62328,4.981915,5.4555,3.08193,4.559325,4.273905,4.50555,1.1183222222222222,0.5868285714285715,3.0784,3.409133333333333,2.89625,5.6353,3.872675,4.31625,4.706495,4.95745,4.15211,4.759215,1.20061,2.175665,9.14425,2.4190633333333333,1.9046066666666668,3.962262380952381,11.601753373015873,1.5265425,5.45295,6.05325,4.8999,3.3333999999999997,2.3478133333333333,3.2027,4.011555,1.14272,3.3044366666666662,3.593085,0.3503989473684211,2.0648833333333334,4.692685,4.405715,2.181945,4.025685,3.56985,5.044135833333334,1.26972,0.59365,3.7744158333333333,1.1706371428571427,1.06846375,1.06846375,1.06846375,1.06846375,1.4439283333333333,2.723043333333333,2.3030500000000003,3.299963333333333,5.9908,3.4463000000000004,5.3011,3.64484,4.301865,3.57005,3.954155,1.4522899999999999,7.2247699999999995,2.11847,5.3756,5.401156666666667,4.82435,5.013225,3.6584333333333334,2.43084,2.7306933333333334,3.335775,1.2097466666666665,4.758348333333334,2.6396133333333336,5.00305,3.03191,2.4973366666666665,3.796785,3.313635,2.85892,2.5591066666666666,2.8044233333333337,1.4772825,0.3929988888888889,4.712515,3.498695,4.14832,3.33825,4.19716,5.9015,4.63668,0.5285076923076922,3.184272,7.462892,2.00528,2.27334,5.682613333333333,5.19505,2.8936233333333337,5.20275,5.19515,4.1211,4.4967,4.282555,5.10095,5.1093,5.0453,3.56901,5.5105145,1.5504120000000001,1.5275466666666666,4.147995,4.03185,4.326925,3.165055,5.3067,5.0446,3.78802,3.38884,15.826916915199345,1.2897000963081862,1.3062125,2.1113588636363634,0.53719875,0.5688106666666666,1.5729625,0.32193823529411764,1.32577,3.0220033333333336,1.495906,0.9846333333333334,1.0235758333333334,0.4527658333333333,1.0235758333333334,1.0235758333333334,0.4527658333333333,0.8561538461538463,0.7270142857142857,2.7911,3.0450666666666666,3.99582,5.0669,2.8141599999999998,2.71345,4.36635,5.1697,5.24155,3.6562,4.335035,0.7221000000000001,2.6630100000000003,8.695040833333332,4.338505,6.803711666666667,2.789805,4.127675,2.32983,4.98496,4.93429,5.5011,4.21132,3.23124,0.98007,4.05991,5.12525,1.2479419999999999,1.405508,1.6202066666666666,2.3758766666666666,2.449003333333333,4.668455,5.41785,2.2860325,2.2860325,3.586415277777778,6.42596,2.07124,0.6432281818181819,0.8314942857142856,2.1233566666666666,3.5057666666666667,1.0065471428571429,1.0065471428571429,1.0065471428571429,0.36969846153846153,1.04603,3.0996,6.3129,3.8800666666666666,4.083955,5.41865,1.02604,3.5159000000000002,3.1773566666666664,3.9781,5.74855,2.6746666666666665,7.539883333333334,5.31485,1.1460555555555556,3.8018666666666667,1.9390640000000001,2.44416,2.2574166666666664,7.025175000000001,3.441266666666667,4.53267,2.2968325,4.35627,4.309375,4.683375,0.44430722222222224,2.06204,1.3447533333333332,2.26924,4.442009333333333,2.13539,2.74495,2.1337766666666664,2.4272933333333335,2.4243566666666667,2.66864,2.8241566666666666,3.019966666666667,1.780406,2.1487133333333333,2.57468,3.2447533333333336,2.5985633333333333,2.1067825,1.71776,1.82805,1.74361,3.3555,2.2205566666666665,2.9555566666666664,2.35835,2.4506433333333333,3.17327,0.8540944444444444,0.8540944444444444,0.8540944444444444,2.6808633333333334,2.59953,3.00241,3.1559666666666666,2.7168033333333335,1.91511,4.122715,3.591961666666667,1.3830916666666668,2.6855766666666665,2.8203533333333333,3.69937,1.6278714285714284,7.042866666666667,4.82523,3.300765,3.94912,3.628455,1.45538,0.6898514285714287,2.95577,3.930575,3.69937,4.749415,4.361625,4.790205,2.980033333333333,3.65271,4.27473,0.752849,2.730965,3.285005,4.963846666666667,4.523885,3.524385,3.22871,2.41983,2.363696666666667,2.535136666666667,0.6307058333333333,5.334187916666667,2.64265,4.021385,2.7740466666666665,3.82059,2.7250533333333333,2.4281566666666667,3.283536333333333,3.283536333333333,2.54843,2.02596,2.75738,2.0303533333333332,3.87373,1.4593120000000002,2.57793,3.85843,4.044475,3.939815,5.352,4.49666,2.5225,2.14692,3.267275,3.156,2.755855,5.14185,3.074505,0.9450271428571428,0.9450271428571428,4.46077,3.7353760000000005,0.9970060000000001,4.64663,0.9970060000000001,4.008925,4.380295,5.15445,3.35431,3.49199,6.3680175,4.369615,6.3665,0.909607142857143,0.909607142857143,2.14434,4.823728333333333,1.5596033333333335,3.264125,3.70841,1.1163157142857143,4.27754,4.31816,5.723825,5.723825,1.0961316666666667,5.89725,5.37035,5.4076,6.2021,2.04911,2.04911,7.20135,1.0095181818181818,7.28075,1.9077525,6.4224125,2.619715,2.51653,3.42241,2.3594,2.171953333333333,2.4724166666666667,3.0479000000000003,2.6246069047619045,6.52959,2.0231000000000003,5.34665,3.0166633333333333,2.70467,1.78548,2.08562,3.30093,3.512845,3.36776,2.67675,2.13777,2.263845,2.636985,1.14067,3.19689,2.23756,3.097745,2.2159595,2.2159595,2.918075,1.9403,3.741765,3.43764,5.28645,7.616783333333334,4.36146,3.501555,6.514059166666667,2.5812,3.2422033333333333,2.16652,1.5572285714285716,1.7513075,4.181965,1.6159483333333335,0.508690625,0.61769,4.1352,4.40346,2.796865,1.005791111111111,2.875285,2.52239,5.2943,1.891404,2.05352,1.1538,4.71338,2.67779,4.385515,0.7575580000000001,4.23194375,4.67338,4.1071,4.36201,3.340055,3.791805,2.888643333333333,5.5639,3.6499,2.3945666666666665,2.58001,6.292358333333333,7.0224899999999995,0.72824,4.83401,4.38509,5.1752,3.6268666666666665,3.7621333333333333,2.758075,3.3524333333333334,4.011533333333333,6.4630125,2.895796,2.5404925,3.772595,4.10898,2.27587,2.69285,8.52654,4.500335,2.0160833333333334,4.6597,4.63973,1.799736,3.854685,1.3894625,1.7160571428571427,4.701125,4.187265,6.138,3.3531999999999997,4.448145,5.04835,6.85765,4.41666,5.4188,4.15089,5.6224,4.525045,4.517235,1.1287750769230769,1.1287750769230769,7.7439,0.8387325,2.037085773809524,0.8387325,0.6916116666666667,0.35729666666666665,2.7286974404761906,2.318855,0.47492285714285715,2.037085773809524,1.9127,3.12298,2.2537745833333336,3.427815,4.59531,7.580571666666668,1.995145,1.988125,2.14873,5.03915,5.5338,2.05126,1.6256375,1.233655,2.8592925,4.272825,2.59207,4.33751,6.3346525,0.4595172222222222,3.985665,0.794372,3.0601033333333336,2.504975,3.712795,1.352375,4.67778,4.9081225,4.70901,3.074085,3.97261,5.3661125,1.7180975,3.49014,0.6721753846153846,2.71192,2.52447,1.189478,3.0649566666666668,2.479833333333333,2.5428366666666666,4.373175,8.19434,3.184698484848485,3.687685,3.49338,6.89821,5.376224166666667,3.26037,4.037705,3.425915,6.5578,5.17865,6.10425,5.0844,4.531485,5.89415,3.8213333333333335,1.66479,1.8030966666666668,2.797553333333333,3.928475,2.50021,0.2675410810810811,0.2675410810810811,0.2675410810810811,30.652416785714287,0.2675410810810811,2.708003581081081,0.2675410810810811,0.2675410810810811,0.2675410810810811,3.4585410810810813,4.558485,0.2675410810810811,0.2675410810810811,0.2675410810810811,0.2675410810810811,0.2675410810810811,3.4472,5.00859,3.09576,0.34944615384615385,0.34944615384615385,4.354668,4.338333416666666,4.193815416666666,3.3856645277777777,4.003047619047619,7.9468000000000005,11.33957502097902,6.737363333333333,8.241146666666667,7.405545392857143,2.9354266666666664,6.4355842857142855,4.274863333333333,4.5926076602564105,0.34944615384615385,7.687159666666667,6.7476304761904755,6.804173333333333,2.878875,9.059756392857143,15.755719226190477,18.609788887362637,56.78877527618786,118.4005884442559,1.3574233333333332,3.3539999999999996,3.164525,4.0207253500643505,0.34944615384615385,1.734673076923077,7.937313541666667,15.503741392857142,20.357259444444445,49.06806744319131,13.695265226190477,2.853325,0.32672241379310346,0.32672241379310346,4.642243333333333,2.826356666666667,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,9.05478,0.32672241379310346,0.32672241379310346,0.32672241379310346,2.89797,2.11117,3.924055,3.713065,4.0815425,5.735,2.3667975,4.54856,4.904525,3.26125,1.80014,3.609245,1.0504666666666667,2.2825725,2.1718699999999997,5.192446666666667,5.990553333333333,2.75652,5.871896388888889,0.4174861111111111,0.5022633333333333,2.4682166666666667,3.05686,2.948195,4.56746,3.288256666666667,7.6010125,3.687505,3.08631,3.39104,4.075195,3.646315,3.188675,5.2533,2.57444,0.4565623076923077,0.9159545454545455,4.12124,1.724285,3.788725,3.649015,4.49291,3.41149,2.573525,2.707915,0.586784,0.8119460000000001,4.21287,2.61581,4.346755,3.87206,3.7624933333333335,2.69003,2.92321,4.732065,4.68337,3.17011,0.7980063636363636,2.6771066666666665,4.29001,2.215545,0.92387,1.6373233333333335,3.632645,5.6835,1.751675,3.136785,3.964505,4.58668,2.20059,2.424306666666667,2.310285,4.029025,2.353905,3.76773,0.6916842857142856,2.613916666666667,3.24982,1.753715,6.372729999999999,4.380205,4.461545,4.958635,2.88392,1.864635,0.5314590909090909,4.79436,4.223295,5.3836,2.60886,5.95995,3.778015,2.821445,2.71184,1.2790942857142855,5.084,1.929365,2.72815,8.640785000000001,4.316645,5.26395,3.03872,0.9517344444444444,3.08609,1.22283,3.436485,6.45025,5.2457,5.15605,3.77466,5.1926,4.50675,1.8118375,1.9001966666666668,5.247,2.8962800000000004,3.4839333333333333,2.3712225,4.835865,4.461485,1.474315,3.6461,2.729815,2.734945,3.99481,9.36531,4.539865,1.7095125,4.61851,6.34348,4.6549375,3.99413,3.719545,3.972065,5.21805,8.112525000000002,2.56301,3.110975,4.140905,4.344685,3.107075,3.149655,4.526795,4.03271,3.60495,4.262969333333333,18.477840333333333,2.86469,2.19312,3.26247,5.726790333333334,1.0021125,4.698465,1.9395833333333334,5.0018,1.4792100000000001,4.197035,4.19662,3.898995,1.023325,4.56799,4.662695,1.6204025,4.805100984848485,4.24738,1.0809428571428572,3.584055,2.067575,2.292835,1.48519,4.222705,3.78843,4.223435,3.64817,2.9828166666666664,4.534315,8.127413333333333,4.624675,4.92476,5.2067,3.304793333333333,4.094125,5.2936,6.7093490000000005,0.9241699999999999,0.9241699999999999,4.67769,4.458365,2.3117666666666667,1.4883199999999999,7.465764999999999,4.398725,3.61524,3.639625,4.53593,4.661295,3.516495,3.829785,5.837913,4.169486666666667,4.77448,5.1398,1.436785714285714,2.771025,4.67003,5.17695,3.2536525000000003,0.22087305555555556,1.965285,2.2071825,2.6234633333333335,2.08745,0.9773677777777778,1.4532475,1.4182275,2.4928033333333333,0.6257333333333333,1.348302857142857,1.9825625,3.81547,3.7861666666666665,3.5619,2.7083866666666663,3.0453266666666665,2.8161133333333335,0.654458,0.974285,2.842995,4.604835,4.01285,3.46388,3.92809,4.50912,4.871725,2.12594,4.434495,5.10785,4.618055,6.4910250000000005,4.15254,0.4719870588235294,5.9115,4.42875,4.522275,5.49925,3.273945,1.980162,4.42143,4.013295,2.76987,5.295755,4.449665,1.3964400000000001,5.295755,4.01136,7.105235,4.344335,1.212588888888889,4.01597,5.1056,4.28958,2.7969266666666663,5.37665,1.5012775,1.9943175,4.39455,3.449895,0.8350877777777778,4.816435,4.75188,3.577035,4.231555,3.264483333333333,3.5297,1.9573519999999998,1.943775,3.14846,3.646055,3.701866666666667,2.429606666666667,2.731825,2.1034983333333335,5.40305,1.6451714285714285,0.8434833333333334,7.0199,4.2574,1.459196,2.72876,2.27748,3.2906600000000004,6.331735,2.4042094444444446,0.838307,2.592515,4.72922,2.41994,4.23403,5.7133,5.86875,4.148245,4.205375,4.75426,2.2993799999999998,2.20504,1.9160533333333334,2.1331966666666666,1.8795925,2.7435333333333336,2.2873,1.615225,2.729085,3.14571,3.655755,6.4336,5.8343,4.244375,4.851435,3.973435,4.122455,4.51698,0.923265,2.70107,5.09025,1.1506180000000001,0.73534,4.465615,3.711335,2.6682433333333333,3.25956375,6.647865,5.04145,0.9991049999999999,1.2344985714285712,0.6765511111111111,4.099900833333333,2.236823333333333,2.7668433333333335,1.236317142857143,3.1012566666666666,2.7134199999999997,5.6914,5.4817,4.474135,5.39075,3.581475,1.3060783333333335,3.619495,1.74435,3.592835,4.093385,4.28716,2.7486566666666667,3.168063333333333,2.7950966666666663,5.933,4.10942,3.438535,2.618625,8.394775,10.6244175,4.182,1.2491757142857143,5.49505,4.596405,5.3573,4.482295,4.760145,3.95445,3.670365,4.15051,3.696649375,5.59504,3.94658,3.855115,4.55601,1.952458,4.93176,5.7024,4.767245,3.182675,3.2366575,6.897335,0.7076858333333332,2.685416666666667,2.712706666666667,2.320316666666667,4.918725,3.41321,1.3022733333333334,4.510525,3.3891333333333336,3.710345,4.90074,3.702068333333333,6.903275,3.2029666666666667,2.9194833333333334,3.2270566666666665,2.9518533333333337,4.11207,2.3072433333333335,2.26293,3.1624700000000003,4.0453,3.534105,1.924305,1.5245275,3.359237142857143,3.1861285,1.0293655555555556,2.681521666666667,2.681521666666667,1.2162625,5.69255,3.254925,3.434265,3.97408,3.53098,3.417675,3.396045,4.232505,3.11603,2.21862,0.5769586666666666,3.376595,6.02234,3.189565,3.68266,3.167895,4.06676,4.286995,3.768735,2.722845,3.893525,3.7252,3.10383,3.30619,3.54898,2.59152,4.01935,4.058055,8.8744,3.662445,3.59025,3.156805,4.067285,4.00114,3.614735,2.475655,3.70287,2.6151475,2.905705,3.60576,3.20455,3.97368,1.7321066666666667,1.7321066666666667,2.220985,3.08762,3.44097,1.589844,2.42936,3.33286,1.8473739999999998,2.921215,1.589844,3.93457,2.995165,3.92869375,2.94641,3.573455,2.255685,3.86639,3.92801,3.859555,4.863075,4.38102,4.14458,4.441335,3.58678,3.115635,3.12744,2.96834,3.87893,2.6409833333333332,3.72301,4.90192,4.1055,3.787235,0.35408826086956524,3.60064,0.44593666666666665,3.713415,3.71571,2.928505,3.77373,3.99385,5.9684550000000005,3.126335,2.54083,2.2570900000000003,2.7718633333333336,0.694868,6.198581666666667,3.137165,3.58083,4.35905,2.01071,2.47769,3.31999,3.17987,6.76399,4.306595,5.1465,4.449245,4.743715,4.53889,3.7546,1.4440350000000002,1.685374,3.900465,4.47423,5.3406825,2.37399,4.58418,1.7953,3.467333333333333,3.11724,1.9482609523809522,4.01584,4.68534,3.655366666666667,3.7542000000000004,3.3668,4.55548,5.2745,3.4253,4.30075,4.423765,4.93939,4.746135,4.421655,3.789765,3.652355,4.67971,2.624625,3.2446333333333333,3.2446333333333333,4.01946,2.638456666666667,3.974215,2.633156666666667,4.41891,3.2782733333333334,3.44001,1.769695,1.7769166666666667,1.1941366666666666,1.1941366666666666,1.7764700000000002,3.5561333333333334,1.66191,3.180336666666667,4.641035,5.4095475,3.3956666666666666,4.99162,6.00545,2.632685,2.777585,3.053176666666667,1.8239433333333332,4.34102,4.36371,6.6626175,1.7448633333333332,5.7894,5.60205,3.5910666666666664,3.315995,4.2266,6.44975,1.9256233333333332,2.5478,3.985125,0.4916871428571428,4.22824,4.05944,4.11227,3.97329,3.414055,1.442,1.8169720000000003,3.88387,3.809165,2.38844,4.01895,4.77144,4.60855,1.2221425,3.57235,3.98625,3.74535,4.993215,2.75616,5.095983333333334,3.672075,1.534884,3.63965,1.2736016666666667,2.677103333333333,7.8930066666666665,3.260945,0.7552854545454545,3.96461,4.478775,4.23799,2.084255,2.084255,5.575375,5.7567,2.987295,0.49671666666666664,2.03685,4.288031666666667,4.563535,4.56504,1.8131979999999999,2.9933266666666665,3.59419,1.2723826973684211,1.2723826973684211,1.2723826973684211,0.7813606140350877,1.3204189473684211,0.5390583333333333,1.2723826973684211,0.7813606140350877,0.28807894736842105,0.8271372807017543,0.28807894736842105,0.4932816666666667,0.4932816666666667,0.4932816666666667,0.4932816666666667,1.1701834999999998,1.21624625,2.36162,2.32343,1.059395,6.344188333333333,2.662533333333333,6.406808333333333,2.4810033333333332,4.167205,2.88308,3.22892,2.7911,4.817105,2.742766666666667,4.266745,4.053405,4.755755,2.3461525,3.93919,4.99141,4.06855,3.26985,4.89682,3.360165,4.459435,5.12015,4.64235,5.7399,5.16715,1.192895,3.736795,4.079,3.1997,15.177145,4.85527,5.28325,2.7355199999999997,7.32763,3.908645,3.94274,5.07045,3.559375,1.034465,2.4492,4.136725,4.41648,4.11797,3.40569,4.03442,2.8198666666666665,3.87685,4.782885,4.260985,6.908851666666667,8.4274,1.6463142857142858,3.638755,4.127805,4.05769,3.71457,3.64578,7.06577,2.632425,2.951615,2.500555,3.984515,4.262595,4.502895,2.43087,1.76951,0.854228,5.1738,3.959515,3.873065,4.061825,3.63032,4.831095,4.319355,5.71025,4.8211,4.067375,5.4873,3.8747,3.200765,3.24595,3.34655,1.777495,4.1028,5.01605,5.62115,5.330948333333334,5.330948333333334,2.43006,1.777495,2.275715,2.85574,0.6873933333333334,1.4933958333333335,0.8060025,1.4398875,2.74974,0.357174,3.241745,4.167875,1.4398875,3.1898530000000003,11.229085,6.419395,2.2571483333333333,1.01373,1.7079533333333332,4.53958,4.34992,6.064664952380952,1.956745,2.164555,3.867,3.676165,4.7049,1.9318133333333334,5.09065,3.6666666666666665,3.458845,5.3822,7.027431999999999,4.053255,2.4250175,2.779033333333333,1.8529366666666667,4.251925,5.188045,1.678108,5.72435,4.409655,6.368455000000001,0.530868,4.824573333333333,4.367605,4.34013,3.018155,2.67016,7.1582,8.294816666666668,6.7389,2.073166666666667,2.073166666666667,2.073166666666667,5.72355,5.2346,6.26535,2.958955,2.759005,2.489884736842105,5.7208,3.63644,2.5594225,1.864425,2.5594225,6.9600225,4.49122,5.8519571428571435,6.78653,5.8519571428571435,5.8519571428571435,4.387027142857143,8.00125,7.395064,3.394124,3.394124,3.08615,6.60315,2.78925,3.561475,4.964157083333333,4.964157083333333,4.964157083333333,7.69922,3.6963375000000003,3.34041,3.59453,3.6090975,1.04262375,7.129083333333333,2.6378633333333332,5.1902,3.290105,13.7059,4.39728,6.888514166666667,6.97295,3.1666350000000003,4.714775,1.5032116666666668,6.888514166666667,3.45255,1.8626975,1.8626975,3.271715,5.1678975000000005,1.7792975,4.688518333333334,0.8122400000000001,1.4200483333333331,0.8122400000000001,1.8994275,2.5915375000000003,5.1463,3.90579,1.4200483333333331,6.54065,4.7711025,1.0105675,3.45105,4.32618,3.21245,6.386635,2.360415,4.544545,3.2323,0.930138,3.808905,5.34615,2.117125,3.0520666666666667,4.498876666666667,5.12575,2.711815,4.08021,1.4644077777777778,1.4644077777777778,1.4644077777777778,3.84757,3.155666666666667,3.155666666666667,3.133485,4.79288,2.3965,1.34232,1.34232,4.297265,5.4265275,1.6389875,1.33065,2.806995,1.3663683333333334,2.6970183333333333,0.930138,0.930138,1.7290908333333335,0.930138,3.1626191666666665,0.79956,3.1626191666666665,5.963310833333334,3.242095,2.3673466666666667,1.7741141666666667,0.6198616666666666,2.393975833333333,3.580065,2.393975833333333,0.9493266666666665,3.389515,3.838475,3.870995,3.361295,3.945425,4.86402,2.0003366666666667,0.8816952777777778,0.4715275,0.8816952777777778,0.4101677777777778,0.8816952777777778,0.8816952777777778,4.878645,4.773495,4.41776,3.61539,4.683795,4.70887,5.2433,4.066165,4.076335,1.2609,3.0103633333333337,4.181905833333333,3.817355,1.34127,2.86182,3.94278,3.855085,4.28345,3.69483,3.748,3.46093,3.09243,4.26569,2.6780500000000003,6.0342,3.61976,4.108235,5.337112142857143,1.2288456428571428,2.2253,3.44424,8.03239,4.6614,4.012405,3.1899200000000003,5.037,8.262834999999999,3.9236,3.149725,3.5305,5.9218,4.12108,5.706,5.4575,5.15855,3.35532,5.405,4.596755,3.32324,4.290545,3.4150666666666667,2.47103,2.114196666666667,4.93058,6.5857,6.3661,5.6965,4.831465,5.4488,5.9582,0.5382507692307692,7.32386,4.59688,4.67828,3.96282,5.14575,4.034905,3.1023666666666667,2.547575,1.3735616666666666,0.5703538461538462,1.865952,2.907783333333333,3.89061,3.65638,4.70517,3.892085,10.82187,3.70107,3.849615,2.691625,0.6642899999999999,5.651606666666666,2.8563833333333335,1.5684633333333335,4.424846666666667,5.896108333333333,3.039725,8.09181,4.922615,3.039918,3.039918,3.039918,4.19988,9.16741,3.52321,2.736775,2.736775,3.334205,9.49042,1.0750725,5.3953,4.520685,4.11512,2.890216666666667,2.1640466666666667,4.481785,3.89435,4.86917,5.9697716666666665,3.817505,2.76509,3.81728,4.11628,3.414998,1.3168125,3.012836666666667,6.02724,3.3132525,4.984425,1.032295,3.9285333333333337,2.5224699999999998,2.56167,1.7699875,1.7341366666666669,2.097663333333333,6.5713,2.04647,4.047685,5.40755,2.0231000000000003,4.961905,3.8298,5.0299,3.23511,2.2562,2.674495,5.79265,4.1612116666666665,4.1612116666666665,1.2210075,1.7952333333333332,2.9172499999999997,4.459714333333333,2.2639296363636365,4.844808,1.6855879999999999,2.6423433333333333,2.1446733333333334,1.74042,1.74042,5.01345,7.650763333333334,1.9304433333333335,3.1863333333333332,2.207605,5.23615,3.034245,0.769868,2.84057,0.769868,2.749025,3.42705,4.68827,6.33705,3.59506,4.67338,5.7522,2.30493,2.27253,2.577706666666667,2.1979533333333334,6.49175,4.64653,4.45714,5.07425,2.662385,4.55408,1.0649575,1.108528,2.2160699999999998,1.4760883333333332,2.5127666666666664,2.778753333333333,2.3238366666666668,3.2923033333333334,2.72949,4.52315,2.5511,2.6573266666666666,2.722296666666667,2.3783066666666666,2.8554733333333338,2.947423333333333,1.93297,2.48049,3.702755,3.83039,3.60278,3.91752,2.8824533333333338,2.3583325,1.8240275,1.2702783333333334,0.2876585,0.16084195652173913,2.0691200000000003,2.16722,0.16084195652173913,4.242182789855073,2.187735,0.16084195652173913,5.919320416666666,2.4038133333333334,6.12146,3.477025,3.528866666666667,2.2987933333333332,2.9025266666666667,2.232735,4.34699,3.3122166666666666,3.3771,0.44488578947368423,4.0595099999999995,2.4683857894736843,2.883845,1.734015,2.545625,3.98054,2.58353,7.744285,4.929365,3.57155,3.82318,6.6243,6.38048,1.6640766666666666,4.033923333333333,2.046875,1.835545,7.5085,7.91893,1.1963866666666667,2.263265,3.6396,2.451765,2.9354,3.153635,2.74233,3.88579,2.484585,3.10766,3.18309,3.208305,7.49422,1.3559700000000001,1.93361,2.94019,3.34423,1.7254766666666665,3.50583,1.370955,3.766055,3.40778,6.80173,3.30515,8.723392500000001,3.594635,1.7624939999999998,1.7354166666666666,3.33545,5.50389,1.6247075,1.4793566666666667,5.49728,3.467285,4.073935,2.70872,2.0799366666666668,3.08539,10.47666,4.96939,6.1996,3.46268,2.3327,2.235075,2.48866,2.88922,3.223455,1.8106,1.5736366666666666,2.5412966666666668,3.638675,1.77192,3.2485,2.617045,3.660405,3.641225,3.223325,1.2588633333333334,2.48047,1.0256399999999999,1.341958,1.49968,3.157795,3.64115,3.69992,2.642365,3.7882,3.91715,2.868185,1.534896,3.452425,3.4690450000000004,3.133265,1.76756,2.846405,3.492965,1.3697125,3.666675,1.65066,3.921955,3.926695,5.16975,2.682585,3.98722,1.738845,3.741845,4.291955,1.72454,1.2030814285714284,4.0124,2.49958,4.93172,4.18343,2.930555,4.64776,4.35357,1.9852999999999998,5.27495,5.4418575,6.81965,4.679465,6.771183333333333,3.78582,1.6132683333333333,2.6408633333333333,4.711405,4.9877,2.64393,7.071484,1.3138928571428572,3.4738,2.172885,1.7242640000000002,2.3987166666666666,2.72787,0.38897642857142856,2.665973333333333,2.90774,3.65971,2.44679,3.1376233333333334,2.28641,2.5152033333333335,2.2093475,8.955055,4.614655,1.45012,5.01775,2.3700976739130435,0.771640923076923,2.9187266666666667,7.79458,1.9216640000000003,4.64635625,6.669066666666667,1.82246,1.52217,1.4798425,4.552495,3.197005,4.71561,4.1427375,2.5051833333333335,3.616805,0.949742,2.738745333333333,3.914295,4.039005,5.10885,2.722795,4.56677,4.46131,4.884475,5.3496,6.32575,4.480095,4.68768,4.53271,1.580876,1.9371475,2.942605,3.85202,1.1772555555555555,4.47299,2.1408733333333334,3.4827,4.246755,3.2986566666666666,2.6530766666666667,1.52971,3.1425533333333333,2.729491388888889,2.690823333333333,2.87049,1.9138933333333332,1.8445925,2.305065,3.81404,4.42669,4.219225,4.267865,3.521375,2.308375,3.117655,5.1944,3.5352,4.60042,4.667545,2.36315,4.379685,1.67802,4.269185,5.164880833333333,6.2576036904761905,5.01325,4.643055,6.1431,3.444266666666667,4.041903333333333,4.27786,3.29197,3.9786840000000003,4.559655,1.4315425,3.35923,1.605105,2.163735,4.111555,5.59682,3.9786840000000003,4.19,3.722735,1.5596033333333335,3.99341,2.10909,2.5510733333333335,2.19933,2.774745,1.6016245454545452,1.6016245454545452,1.6016245454545452,0.5027645454545454,0.7892611111111111,2.190946111111111,1.05485,3.628025,1.2332233333333333,4.322415,5.43415,4.90664,3.166005,4.07831,3.05648,5.0583,1.88965,3.024425,2.312505,3.16974,5.879194,4.18644,5.3266,4.38149,1.0452425,2.142365,1.27753,3.70982,3.98541,4.29083,4.94244,4.75735,4.53622,5.05985,3.7059,1.822045,1.275835,5.37205,0.9644311111111112,1.2457266666666666,2.7419633333333335,8.29265,3.253525,3.91599,3.075455,5.5875275,1.6983125,0.9748716666666667,1.48254,3.12254,3.589965,3.82538,3.69501,1.92061,6.488695,3.04165,0.95599375,5.1308,3.0494800000000004,2.8757566666666663,2.34752,3.5513333333333335,5.6474475,3.061443333333333,2.9734966666666662,3.7298333333333336,2.6161233333333334,2.969516666666667,2.91321,2.815765,1.9747525,4.71326,5.0126,4.79529,1.0412655555555554,0.736895,3.8316666666666666,2.7393733333333334,1.0138875,2.6409858333333336,5.06265,4.306395,7.6853,4.68724,3.8544666666666667,1.7829760000000001,3.48872,3.712845,2.7958433333333335,2.5646871428571427,4.282945,2.884263333333333,5.097570666666667,0.8694044444444444,4.786405,1.8621379999999998,4.51193,4.465055,2.218555,1.0129325,3.02215,0.42215400000000003,3.093435,6.3483,6.58985,2.813898,1.4559760000000002,3.0866466666666668,0.8163577777777777,2.61142,0.8163577777777777,4.008545,4.811915,1.42799,1.71547,5.296928333333334,1.8791833333333334,3.68658,3.585185,4.132985,1.275316,1.6793166666666668,4.03953,4.91158,4.816905,3.080388,2.0894875,2.950525,1.5684525,2.065805,1.7946775,2.0279025,4.05522,1.3784999999999998,1.3784999999999998,3.598405,4.827366666666666,7.914454166666667,5.208306666666666,8.131215000000001,2.30533,4.016535,4.028715,1.6673499999999999,3.6296875,3.978335,3.318395,6.30655,3.00615,2.488685,3.038156666666667,4.14284,1.18527875,4.30369,4.87385,1.4051166666666666,8.501063333333333,2.863035,3.221,3.325453333333334,4.24151,4.03999,4.235113749999999,2.632283333333333,2.802903333333333,1.91749,3.7026,2.661375,2.1965875,7.625172666666667,3.2810400000000004,3.3714666666666666,4.18082,22.815458776556778,0.6910133333333334,2.604435,4.04772,4.764625,8.69452,4.627515,4.130675,4.36285,7.2072666666666665,3.46385,1.6220433333333333,5.207783333333333,3.12082,1.128976,1.128976,1.128976,2.3638174999999997,1.6796375,3.26906,1.5578625,2.90599,1.4669433333333333,2.58464,2.47201,2.97236,1.5578625,3.21114,2.655475,4.2864716666666665,4.7735666666666665,5.7402,0.8460583333333332,3.520305,2.72274,4.952815,4.03369,2.723685,2.172445,1.6722675,1.9745675,1.412318,3.879665,1.56984,4.981605,11.277446333333334,2.797703333333333,2.34223,5.097230833333334,4.2299999999999995,4.382000000000001,6.4887,2.0235,5.376224166666667,4.100315,0.9618766666666666,1.1562400000000002,6.747551,4.18298,2.1017525,3.850255,1.94256,4.79809,5.4996,4.664005,4.20192,1.4886142857142857,4.57451,5.07485,4.854225,6.221364,4.125635,5.6554,4.623695,4.70624,5.15765,3.4058333333333333,4.87313,2.1979625,3.61233,3.59863,4.252145,4.17881,6.00685,4.55062,2.298653333333333,3.4947666666666666,8.78908,4.66064,3.1078666666666668,3.718425,3.77477,4.598905,4.24378,4.84633,7.258473333333333,3.570725,2.5859166666666664,4.255060833333333,2.392485,4.64399,2.907386666666667,6.425365,1.5775,4.24225,4.629675,11.570035,0.4958307142857143,4.361145,4.50247,0.6542978571428572,3.715405,4.259065,4.620205,0.905877,4.948915,4.9744166666666665,2.71817,10.521186666666667,3.3513,2.3782666666666668,3.035015,3.61519,6.15145,0.6419691666666667,3.84927,2.2060925,5.0344,0.6822323076923078,4.227275,5.7566,5.5721,3.58382,6.2794875,4.210685,3.6692475,2.6631,2.8059966666666667,4.308215,4.746535,4.86305,5.19655,5.02925,3.3897666666666666,7.172266666666667,2.8251,3.4945044999999997,2.54425,3.780925,2.6136233333333334,1.4774233333333333,3.1869300000000003,3.147256666666667,2.984336666666667,3.7700333333333336,3.3924,3.250863333333333,2.7109566666666667,5.29805,3.464,3.689055,5.15875,2.78416,1.1347555555555555,3.25929,3.0151533333333336,3.98861,3.2916066666666666,3.292566666666667,4.634656666666666,2.0018366666666667,1.70303,2.9904,3.757195,4.681335,1.10854875,4.597455,3.45129,4.290233333333333,3.2302066666666662,5.136307499999999,4.05758,3.28146,5.2496,1.88654,3.859805,0.6911625,4.457,4.877125,16.388051818181818,3.3800666666666666,1.2932533333333334,3.96932,0.6028028571428571,2.5678,4.45821,1.853565,1.3277400000000001,3.79744,4.601595,3.4183333333333334,0.7220866666666667,2.60891,7.53152,4.07159,5.7214,5.29195,4.527615,2.9447433333333333,3.3891666666666667,3.4055666666666666,6.59033,3.699375,5.33395,2.2291175,0.453105,2.22969,3.154285,2.143035,3.04789,4.68098,3.10139,5.1962,0.7245775,5.18795,3.714505,3.083705,1.0939633333333334,2.7200399999999996,2.0394566666666667,4.883075,4.28541,2.11227,1.6295142857142857,3.991915,4.776285,4.762025,6.442733333333333,2.221173333333333,5.30715,4.709875,4.330765,2.12918,4.42965,6.1864550000000005,5.1316,2.4473,4.80118,3.462715,3.527955,4.064635,4.12615,1.35329,4.84098,2.8330066666666665,2.8541600000000003,5.165756666666667,5.165756666666667,4.7617,1.6368719999999999,4.764435,0.9725,1.9576319999999998,4.792475,2.7068499999999998,1.4457833333333332,3.2623166666666665,0.9928699999999999,4.308066666666667,5.6039,2.874395,4.929985,3.988525,3.87804,5.5760825,3.4812,3.4205,2.924523333333333,2.6326133333333335,2.7768,2.9621833333333334,4.29241,1.5064865934065932,3.104033333333333,4.64241,5.09635,2.3380470833333336,4.308325,4.98382,5.3050049999999995,3.415566666666667,5.36615,5.23815,5.44745,4.852645,4.12424,3.48549,3.72377,4.70678,5.7247,4.754715,5.2864,4.417315,4.62489,0.6789525,5.1257,4.626535,4.15215,7.290027500000001,4.03539,4.206635,4.31718,4.651555,3.74547,3.73606,2.16154875,4.4695925,2.11583,1.39485,3.723235,2.0674933333333336,2.4644333333333335,3.8297486666666667,3.0841933333333333,3.411895,1.07762,2.0128875,4.39704,3.617465,1.88306,1.88306,3.68568,1.8954799999999998,3.1295533333333334,4.661735,3.58091,3.75704,1.54965,2.010055,3.672293333333333,1.844545,4.153295,4.421695,4.433125,4.348555,7.960613333333333,2.76215,3.88743,5.0167,4.276685,2.97738,4.426615,4.32691,4.49341,2.096075,2.715006666666667,4.75174,4.20544,3.72455,3.90568,1.587045,3.700745,4.585115,4.60137,4.14735,3.85825,3.85825,3.3504500000000004,4.1308,4.44967,4.06531,1.819266,7.826897499999999,3.98629,4.98574,4.331645,4.24167,4.767425,5.00915,3.18125,4.30919,2.909775,5.2321,2.05138,5.054,5.663478888888889,5.3851,0.758247,4.768370833333334,1.12073,5.26175,4.612325,4.72223,4.350555,5.5029,3.568566666666667,3.568566666666667,0.9772270000000001,2.1529025,5.54535,3.58365,3.881385,4.648625,5.0705,3.41853,4.232355,1.3613483333333332,2.95086,1.6307425,1.2174825,4.404562666666666,0.8769450000000001,2.6149533333333332,3.18375,1.2458866666666666,2.3488325,2.66393,1.6156783333333333,6.21624,1.8784,2.58432,4.299145,2.21688,2.8909599999999998,4.505145,4.66125,3.5000666666666667,3.106806666666667,4.1562,1.634226,2.103086666666667,4.08578,0.6518278571428572,2.1572999999999998,2.5217099999999997,3.0837299999999996,2.86457,1.2249914285714285,0.8032991666666667,2.4822933333333332,4.198065,1.2705342857142856,1.9960925,1.3629175,5.969409166666667,2.3642425,4.7579,4.47341,4.51164,4.942985,5.6651,4.242255,4.26843,1.508275,4.098966666666667,1.7740040000000001,2.8010333333333333,1.1693328571428572,4.55813,2.0849625,6.238301,3.596735,3.89532,1.606116,6.755135,4.845085,1.4393233333333333,4.09038,2.997155,3.809265,3.83605,1.9533075,1.9533075,3.3006100000000003,1.7502333333333333,1.7502333333333333,2.12918,2.809393333333333,2.1067825,1.3830916666666668,3.5547,1.07796,3.175926666666667,2.617025,1.9038975,1.5297366666666665,2.2145925,2.36212,0.2773629411764706,2.5436,1.2429516666666667,2.375716666666667,2.1446733333333334,2.5225,1.1056788888888889,1.14067,3.66,3.159736666666667,1.9533075,1.724285,1.9183233333333334,2.5264466666666667,2.469726666666667,1.717622,2.49379,1.15815,3.5945666666666667,2.8831,2.4971566666666667,1.54452,0.86622,2.4923325,0.86622,2.4923325,0.7153025,0.7153025,0.5067277777777778,2.413675,2.563466666666667,0.7153025,2.2357325,2.4794633333333334,2.25713,1.74361,0.8540944444444444,0.7153025,0.7153025,1.6241320000000001,1.6241320000000001,2.05644,1.724285,0.7153025,2.31222,0.46190846153846155,2.8041666666666667,1.9512533333333335,3.5634333333333337,2.7024066666666666,2.7024066666666666,0.38239,0.38239,2.12918,1.919426,2.1646,2.02344,0.38239,3.5235,2.3549625,1.6918440000000001,0.64176875,1.6918440000000001,0.64176875,7.6497,2.483426666666667,3.7441333333333335,2.7759033333333334,3.03483,2.9560033333333333,3.02862,3.5113333333333334,2.553175,1.739145,2.7943700000000002,3.9236,2.3844166666666666,1.6241320000000001,2.219373968253968,2.219373968253968,2.7214566666666666,2.2290725,4.456385,2.3506733333333334,3.4372333333333334,2.7213266666666667,1.586232,2.544525,2.464745,0.8038163636363636,1.80248,3.352715,1.729562,3.3059433333333335,2.6272033333333336,2.71955,3.817,1.6726,3.5374,3.18901,4.071233333333333,1.27685,0.32672241379310346,1.33891,1.33891,1.0677444444444444,3.301,3.9781,2.6318633333333334,2.0840799999999997,2.0840799999999997,2.21852,1.65066,1.03372,1.75976,1.75976,0.7153025,2.12918,2.858686666666667,3.5208666666666666,2.617025,2.1218,2.1218,2.1218,1.1032933333333332,1.5572285714285716,1.5572285714285716,2.4240425,3.1656,2.7726698674242423,4.306655,2.6287833333333332,2.5763933333333333,3.72726,3.822705,7.0749425,3.989245,4.530175,3.800266666666667,13.37534,4.51978,3.601375,0.98041,4.239985,3.280545,2.21736,3.68271,5.54195,8.160699333333334,6.5203,0.4930376470588236,4.28336,2.41414,3.944945,2.46504,4.811515,5.9284,4.06778,8.161895,3.36112,3.940355,3.993525,3.388583636363636,7.9463774358974355,3.1624666666666665,2.69474,3.591445,4.32817,4.893065,4.57897,6.0658270000000005,4.63839,1.3295080000000001,3.147055,0.8687825,4.9941,5.17335,3.212435,4.730185,5.8306,3.58309,5.28565,4.262295,8.651175,3.94991,4.823189,3.4242666666666666,4.97207,2.98033,0.92017,0.92017,3.45041,3.97702,2.10738,2.08309,4.225825,4.193245,4.3663,2.744885,2.59975,2.852355,2.5563933333333333,1.17754625,3.479925,4.50255,8.39994,1.731496,3.105635,3.52428,3.354995,2.8421299999999996,8.20591,4.53258,3.5417,3.019826666666667,3.88674,3.4071,3.0396199999999998,3.0378933333333333,3.50195,3.98574,4.669915,4.36413,0.3858746666666667,1.3752033333333333,2.30886,1.707695,5.0475,3.93329,2.7392966666666667,2.2135975,4.349825,3.91232275,2.434725,2.448665,0.8916029999999999,2.2007275,2.657653333333333,2.657653333333333,5.49985,1.90178,3.0151299999999996,2.33513,2.3749366666666667,1.8058533333333333,2.947195,4.034345,4.461395,4.12469,4.934005,5.08285,2.745215,2.5615,1.807894,5.07155,5.415776666666667,2.44563,2.9812933333333334,2.1447825,2.25914,4.062045,2.6495166666666665,5.08605,3.66261,3.38744,4.4379,2.89245,3.64193,4.45646,2.3304,2.4123433333333333,0.40941714285714287,3.3220566666666667,2.5077633333333336,2.9343,5.72165,4.709455,6.239020833333333,2.1842975,1.5761833333333335,3.015975,5.31925,6.13915,5.02285,3.3523333333333336,2.2451933333333334,3.527705,2.585636666666667,5.1531,2.322086666666667,2.24698,5.41605,4.976565,4.95058,1.7582675,1.952135,1.04753,1.04753,1.1878980000000001,0.90712,0.749412,1.87384,4.354475,11.271159166666667,4.220405,4.40575,4.200835,6.1271925,2.645785,1.62352,3.762694166666667,2.94054,3.85572,2.5439233333333333,2.7310433333333335,3.0457699999999996,3.23284,2.38667,3.3913333333333333,3.5642,3.1199,3.586933333333333,3.3383000000000003,2.9599733333333336,2.79168,3.4293666666666667,2.57267,3.045726666666667,3.4379333333333335,2.9015766666666667,3.4593333333333334,2.20952,5.826803428571428,3.147956666666667,4.506146666666666,3.238096666666667,3.0411466666666667,3.846966666666667,2.8156233333333334,2.75491,3.133153333333333,3.2913866666666665,3.206906666666667,3.4745666666666666,1.886535,2.7993433333333333,2.86178,3.00255,3.00255,3.2272266666666667,3.2990866666666663,2.62338,2.8788933333333335,3.06558,4.395666666666666,2.6865400000000004,2.792975,2.6217966666666666,2.9025,4.418209166666667,4.62794,1.7060333333333333,3.0509,3.717866666666667,3.492502,3.3876666666666666,3.8337,3.6209333333333333,2.8816633333333335,3.365874,1.9771260000000002,2.9301095000000004,3.5696999999999997,3.5375333333333336,2.4754833333333335,2.57328,3.8139333333333334,2.855653333333333,3.183063333333333,2.625275,1.31873,3.3049733333333333,2.54372,2.438266666666667,2.466195,3.509233333333333,3.1898199999999997,2.02344,5.778204000000001,2.5932566666666665,0.8798679999999999,4.260025,1.9817025000000001,1.7393,4.594525,4.0603,3.3217,2.320585,1.63658,3.460045,2.92083,3.4358,0.42975700000000006,2.069955,0.42975700000000006,2.02964,1.63658,2.642745,3.98049,2.3732525,3.697195,3.7715,0.547476,2.9343066666666666,0.9260525,0.4405147058823529,4.31555,4.44012,4.920915,2.756825,5.56065,4.25213,3.711315,2.11882,3.6961666666666666,1.683222,6.3128,3.422845,4.14352,4.90855,3.3365666666666667,2.05967,2.0794,1.4243866666666667,1.869325,0.9688925,0.9688925,4.485225,3.4888666666666666,7.194266666666667,2.612575,2.086025,2.16415,2.27966175,2.5087,5.8891,4.62529,2.11659,2.3877633333333335,2.27966175,2.19843,4.03990675,2.41133875,6.2547033333333335,2.612575,3.272405,4.94837,3.411466666666667,5.48315,4.82795,2.037695,1.7438925,2.330425,3.24377,4.870815,5.41035,1.949775,4.256185,1.8239433333333332,1.70222,5.77935,11.020476666666667,2.2750366666666664,2.7385366666666666,2.3162233333333333,4.49559,4.48983,1.9887875,5.2996,4.756915,2.69405,39.7735105,3.089776666666667,3.3608,0.4889833333333333,5.268335833333333,2.1965933333333334,0.97196,4.49062,3.676825,2.069195,1.736905,2.4021966666666668,3.87443,1.3561357142857144,3.112365333333333,4.02131,4.8933,0.902617,5.0539,4.852045,5.1172,2.6882466666666667,1.543795,3.8255625,4.50567,3.93923,3.25242,3.633545,4.11353,12.069853636363636,3.0182066666666665,3.02215,4.51466,2.75713,4.68653,3.37193,2.81124,3.25952,5.0712,5.1682,4.93417,5.023,2.48455,3.692605,4.586905,3.55164,4.758335,4.442575,0.1031711956521739,2.226065,3.435355,2.667785,1.27775,1.0224499999999999,1.0224499999999999,1.8946275,2.62762,3.734795,1.305208,2.8751166666666665,4.598595,2.56589,4.329619166666666,0.5946307142857143,4.59262,3.670705,4.46995,4.353725,4.792325,1.39655,1.255725,3.6835,2.964636666666667,3.0772433333333336,4.2796655757575754,4.58165,6.319305,5.61055,4.3444,3.3833,2.160829166666667,1.5846133333333334,5.2261,0.30342066666666667,3.303845,3.724985,3.99838,14.642436666666665,1.79149,2.953663333333333,0.5947825,4.50829,8.304780000000001,3.183675,1.9922833333333332,5.42115,3.405366666666667,1.3212111111111111,3.576735,2.81228,2.992655,4.930865,3.3213872500000003,1.2142225,7.876663333333333,0.73831625,4.88417,3.0959705,1.3711275,2.06122425,3.21175,3.21175,3.892625,4.22783475,1.47075,2.299295,2.68734,3.56975,2.96838,2.488325,3.16946,3.313865,6.5385306666666665,6.32695,4.05981,3.26609,5.0705,4.90928,3.853765,3.411925,3.514825,4.3003,5.1988,2.516173333333333,2.6198533333333334,1.5098200000000002,2.3595566666666667,2.28774,1.542415,3.31375,3.5142,3.4441333333333333,2.948043333333333,2.7142033333333333,1.80014,1.6608733333333332,0.49075090909090907,3.095936666666667,1.3272314285714286,1.8410925,3.127166666666667,2.527083333333333,2.55469,0.9497975,2.3220725,2.489615,3.10454,3.55795,5.43935,3.73232,3.0224,2.2788333333333335,3.423225,4.028915,2.360085,3.36553,1.975185,3.75051,2.72945,3.83525,1.2773266666666667,0.612915,2.25239,3.36611,3.111605,3.939215,4.70304,8.63063,3.3902,2.3958166666666667,1.8596733333333333,1.80442,1.80442,2.7526266666666666,2.6374133333333334,4.93611,4.68439,3.261805,4.50875,4.49327,4.2534,3.307341666666667,4.48995,8.3707625,2.43465,0.508690625,3.0502833333333332,1.3396,1.0227371428571428,2.20346,0.8044119999999999,2.2421625,4.81188,5.353,6.057765,1.11475,7.09814,2.01524,1.5338933333333333,2.64644,4.25011,3.1859300000000004,2.462045,4.21586,3.3198233333333333,4.0599,2.95914,2.8727866666666664,2.9434966666666664,6.717915,2.57769,3.97599,3.62026,3.6964608333333335,1.5870233333333335,1.175195,4.282,2.8883233333333336,3.0388133333333336,6.3084225,3.479955,2.078725,2.3642825,3.482145,3.602933333333333,2.47399,4.497018333333333,2.9814900000000004,4.935795,2.521531,1.866875,4.74363,5.34295,4.91393,4.52114,1.3368166666666665,2.4832325,2.0000525,3.35245,1.4755166666666666,0.9685066666666667,2.7583141666666666,2.13453,2.1733125,4.102935,0.7661525,5.60035,1.361915,0.7829809090909091,4.026266666666666,4.352215,0.72093,3.311326,2.8746125,0.8032991666666667,4.728875,0.1897657142857143,0.1897657142857143,0.1897657142857143,0.1897657142857143,0.1897657142857143,0.1897657142857143,1.887974,4.0572,1.887974,1.887974,1.7884200000000001,0.1897657142857143,0.1897657142857143,3.3127633333333333,2.4919100000000003,4.869365,3.906445,2.23738,3.50774,1.6006142857142858,1.875458,3.414998,1.532558,3.083346666666667,2.770179777777778,5.551636666666667,4.60498,4.33116,5.6624,4.561625,4.858785,4.50976,4.31243,7.021612916666666,3.7518999999999996,3.6598666666666664,2.6115233333333334,5.016643333333333,2.7186066666666666,2.09987,1.9390166666666666,4.88309,4.860455,4.708665,5.22445,5.42195,4.817155,4.778755,0.7972872727272727,0.7134507142857143,0.7134507142857143,4.81509,2.3144,3.808615,1.0241928571428571,5.03785,1.6146857142857143,2.3405833333333335,2.65316,4.529333333333333,4.529333333333333,6.859,4.694445,1.5106983333333333,11.160991666666666,3.316433333333333,1.1917111111111112,5.4238,4.6201,3.82775,3.48843,2.58301,4.6132333333333335,0.70628,3.6784,3.4797999999999996,3.7014,3.2247533333333336,1.44338,1.4253099999999999,4.837865833333333,3.1562866666666665,2.9617066666666667,3.4435000000000002,5.213520833333334,3.518116666666667,0.783906,1.8397033333333335,3.4242666666666666,2.5887716666666662,3.7510333333333334,3.4671333333333334,3.22857,3.852133333333333,3.1771733333333336,2.6436633333333335,1.0421666666666667,3.0759899999999996,2.627623333333333,3.57928,3.563565,3.994285,2.660553333333333,3.3969,2.936575,1.637782,1.9540199999999999,2.5446609523809522,3.617433333333333,1.7047440000000003,3.1680833333333336,1.7988166666666665,4.151,5.131709166666667,5.087925333333334,2.4790075,2.72585,2.87105,2.4713325,1.6140142857142856,2.293195,3.2661524999999996,2.48261,3.7114,2.903795,3.827372,3.312565,1.133,1.2652475,1.79533,2.38352,3.4730666666666665,3.4853666666666663,5.12515,7.219244999999999,3.435095,5.1596,4.19095,15.635161666666667,0.4651225,11.538844999999998,1.1714666666666667,3.183495,2.7353566666666667,2.3463433333333334,3.03276,1.518664,1.534896,2.5683933333333333,1.357902,2.7591426666666665,2.10608,3.0910499999999996,2.2294233333333335,2.733306666666667,1.4630866666666666,0.7156483333333333,3.2586566666666665,2.5410033333333333,3.344533333333333,1.1032933333333332,3.6801999999999997,0.7237058333333333,0.39344538461538464,2.9175299999999997,4.545275,5.27945,5.50455,0.8864118181818181,4.0931,4.53219,1.0740025,2.999475,5.5999108333333325,3.19545,4.15417,3.73772,3.97362,2.014065,3.987245,2.7562266666666666,3.199095,3.49807,2.578445,2.717025,3.762085,3.15533,3.50573,2.560855,3.34543,5.1763,1.19282,4.692345,2.2179575,3.92617,4.834593333333333,2.0863875,2.7864,3.1422633333333336,5.6293299999999995,2.620413333333333,3.419865,5.75495,3.7441333333333335,4.44444,1.8529766666666667,2.514325,3.972785,3.5303,4.155825,3.4918333333333336,3.2526100000000002,3.1611266666666666,4.083633333333333,3.2212533333333333,2.7561966666666664,2.822346666666667,0.45291833333333337,2.13154,2.230625,5.0336,4.660545,3.00738,2.9714533333333333,3.3992,8.451255,3.47842875,3.93069,3.2300799999999996,3.92586,3.10008,3.8443825,2.6738733333333333,2.3368675,2.9799933333333333,6.08025,4.71349,2.123673333333333,3.265815,2.847685,2.6979900000000003,4.6426680000000005,1.70902,6.408383333333333,4.262625,5.03085,4.64249,5.34625,3.657,7.019538333333333,4.77255,3.74427,0.6753642857142858,2.3701675,1.6971425,3.0098033333333336,3.60075125,4.31313,3.980195,5.3361,2.7129266666666667,4.782885,3.198676666666667,3.529866666666667,3.15137,4.82188,5.2335,5.30965,2.4176733333333336,5.453061666666667,4.54098,1.58087,5.621,3.70443,3.810185,2.51061,2.2719400000000003,4.774839333333333,1.2472857142857143,2.61711,2.232965,3.8257,4.41955,2.64646,3.3097766666666666,3.1761869999999996,2.68164,4.002895,1.3405239999999998,2.3011633333333332,2.3640466666666664,3.1528566666666666,2.4511933333333333,2.7368433333333333,2.6878666666666664,3.976685,2.8912166666666668,2.786653333333333,4.187285,2.771015,4.099505,3.674445,1.4848580303030303,1.4848580303030303,4.80855,2.9786633333333334,1.7479925,1.3103225,2.3969775,2.1998625,1.196372,1.3913200000000001,0.651499,1.5886566666666668,1.48947,2.834986666666667,2.23521,1.75,1.88734,2.3799633333333334,1.4987666666666666,1.8122666666666667,1.77538,2.225705,4.114205,2.76788,3.1430866666666666,2.78475,5.74905,2.9643,4.62674,4.227785000000001,2.01344,3.822945,3.231495,1.934485,3.467895,2.10269,2.906545,3.640395,2.0872375,4.786085,2.681895,4.08218,3.4267333333333334,0.8878055555555555,4.15828,3.89059,4.531865,3.554365,2.6939233333333337,4.698455,4.867325,5.34632375,9.2730075,4.012595,4.53024,3.2278000000000002,3.67947,3.82497,2.55661,2.715775,4.49925,2.2038325,5.911185,1.8554179999999998,2.576425,7.958136666666666,2.9147533333333335,3.984248,1.2144285714285714,4.945875,5.01405,3.3742,4.70132,5.0462,6.718805000000001,17.158260773809523,0.6389176470588235,1.1056788888888889,3.451233333333333,4.02863,4.08701,2.124795,3.292635,3.993555,4.78303,2.62803,4.645415,1.8036333333333332,1.8036333333333332,5.42845,0.7642354545454545,1.9002759999999999,3.043235,3.97189,0.36969846153846153,1.95421,4.355928083333334,1.1080216666666667,2.99778,2.71617,3.08759,7.67622,2.4463966666666668,3.3346999999999998,1.9873833333333335,2.23549,4.2607825,3.61082,3.26835,6.6788705,1.7726325,3.08695,4.54443,7.2634425,1.6885833333333335,2.2989666666666664,2.5834333333333332,1.4193866666666668,3.005895,1.7362337499999998,3.96624,3.73759,1.47696,1.967415,1.967415,2.8546833333333335,5.67445,4.087536666666667,3.883875,5.10285,5.96925,3.16211,3.591195,4.03529,3.507995,4.482191666666667,3.283555,4.447395,0.9658620000000001,0.3515,5.31325,3.804275,2.6177466666666667,8.79386,1.56452,4.8446,4.05761,0.5247266666666667,1.9462966666666668,1.2272666666666667,1.8373266666666668,1.7204,5.320495,2.852705,3.001345,4.802462500000001,4.833595,4.584755,0.6264746153846155,1.981765,0.5877030000000001,5.7170499999999995,1.580198,5.0084,2.101265,3.50634375,3.271465,4.28983,4.32621,4.91979,0.8480763636363636,3.10195,4.13514,1.8980075,1.6750775,3.610935,3.285525,3.28628,3.794895,5.542352380952381,4.403315,5.56755,3.06887,0.6904388888888888,3.5650666666666666,4.03825,0.6925576923076923,4.054215,4.780675,4.035985,3.30737,2.6911199999999997,5.2663,3.291745,3.562475,2.16981,4.014125,1.858594,3.55967,3.73301,0.6604538461538462,4.62185,4.073665,3.32481,4.78873,4.31642,2.668735,3.88154,0.732445,3.0944366666666667,3.9330700000000003,4.656465,3.5186333333333333,2.417505,3.5484333333333336,2.417505,4.694725,3.00979,3.3182533333333333,1.7485333333333333,3.4097666666666666,2.0748875,4.365125,3.0228966666666666,5.5954033333333335,3.4113333333333333,2.8029333333333333,3.30185,2.4725916071428573,2.4725916071428573,2.4725916071428573,2.719136666666667,1.0861033333333332,4.474995,2.3562,1.6458833333333331,3.740866666666667,2.5925333333333334,3.1554800000000003,3.998645,5.22065,4.004075,1.985105,1.263514,4.096455,1.87361,2.481526666666667,3.138555,3.48108,2.09396,3.796875,2.73638,1.646256,4.71017,4.2487,3.423185,3.6703,0.7383677777777778,2.3830766666666667,4.785655,7.54799,4.48003,3.08769,3.182795,3.436275,3.641345,1.8725075,2.137165,4.967925,2.23741,4.578075,4.058335,4.43584,8.96456,3.9986,4.154625,3.83571,4.894555,4.0604,3.966425,3.966425,3.97682,4.018631666666667,4.794805,3.81716,4.247895,4.473875,4.10993,1.18842375,4.215325,3.94799,5.86795,7.918699999999999,5.1414,4.121056666666666,2.0299366666666665,1.6375,2.5053325,4.73583,4.06177,4.82434,2.8056066666666664,4.29494,5.12995,5.2976,4.881935,3.1319733333333333,3.94541,4.455045,5.15145,5.1692,4.16713,7.094958333333333,4.4794,2.267183333333333,4.81557,4.258835,4.22133,3.98316,4.79919,0.7969936363636364,4.378935,4.47235,1.2790942857142855,1.313306,5.0888,5.3168,9.0562875,5.73135,4.916505,6.2669,2.929125,2.8346999999999998,5.29365,1.6653425,1.6653425,2.5074,1.59622,2.8868375,3.4488,1.97562,4.324521818181818,1.3692399999999998,2.12155,5.956225,3.120665,3.514145,2.83686,4.124695,4.234855,2.9975633333333334,1.074778888888889,3.956225,3.19206,3.962855,4.6282,3.7085233333333334,5.5651,5.79995,5.03825,4.52666,5.51545,6.44165,4.94224,3.141365,3.367155,2.0109475,2.0109475,3.92503,4.62486,2.7129999999999996,2.7244499999999996,2.210821818181818,2.80074,1.5055433333333335,1.5055433333333335,4.562315,3.4205,2.1794,3.690065,2.756445,1.9036,1.2522125,1.2029222222222222,2.76774,0.47130210526315786,0.9074111111111112,2.69932,4.1489,0.4436318181818182,4.180275,1.9497699999999998,5.35385,3.69364,7.959725,4.407645,5.401156666666667,4.988815,4.55671,4.149755,1.786235,1.9760680000000002,4.15463,2.924745,3.895365,1.2215733333333334,3.92336,5.49235,2.69839,2.54391,2.94069,4.290225,3.59711,4.342495,3.91163,3.48312,3.247645,3.43055,1.04603,1.832335,2.2299,2.81445,4.27957,7.54883,0.911882,1.5245666666666666,1.5245666666666666,1.855828,3.8625,2.720115,3.06474,5.4611975,2.943903333333333,1.1690775,1.1690775,1.1690775,2.98456,3.1898530000000003,4.497095,3.205185,4.135425,3.39206,3.68844,2.953905,3.15482,3.54214,4.3234112499999995,2.5682824999999996,1.196372,2.949795,2.5682824999999996,3.31973,1.3870433333333334,1.7678866666666666,2.144305,5.806905333333333,2.73719,6.129772,5.806905333333333,3.392582,1.7110666666666665,1.7110666666666665,2.540935,5.85792,1.7110666666666665,2.219335,5.6379,2.12512,2.63013,5.29762,3.579985,3.99549,1.99874,3.303975,4.34622,2.1374633333333333,2.206605,3.78436,1.99874,2.43789,2.004365,6.0424,2.455875,1.130678,2.35461,3.300105,3.3564146666666663,1.930715,2.161578,3.91809,1.9046946666666664,1.83842,3.06614,2.246225,3.291225,3.63575,2.2221033333333335,2.95205,2.445735,6.68976,2.224235,3.067005,3.320605,3.320605,8.77685,1.19655,3.050125,2.735495,3.12717,2.339775,1.31891,1.31891,3.18865,1.83619,7.0926,2.14935,3.39272,2.91511,6.57227,2.63996,2.274725,5.521265,5.521265,2.49328,1.3973,1.24486,1.24486,1.3973,2.116573333333333,1.4687400000000002,1.1855383333333334,1.5896133333333333,1.7074666666666667,3.65945,1.711085,3.07852,2.94635,3.3566,2.730565,2.801225,2.341085,3.2261758333333335,3.2261758333333335,5.94058,2.264885,2.83335,2.8328,3.234715,2.19825,2.82074,2.542395,5.20504,1.79359,1.5772483333333334,1.2102183333333332,2.1838066666666665,5.75128,3.875993333333333,3.272333333333333,3.27799,1.77714,1.77714,1.77714,5.47596,2.30804,1.1855383333333334,3.111615,3.454555,1.3891175,5.25812,3.2297325,6.20304,3.26198,1.661605,3.27778,3.018963333333333,2.114395,3.376315,4.18661,3.2036,1.512955,2.38901,2.753315,3.24552,5.46061,2.037435,3.18928,2.55269,5.95311,4.15001,1.93338,2.20364,5.67084,5.0625,5.37954,5.55178,1.016224,1.016224,2.8716369999999998,2.8716369999999998,0.870652,4.92857,2.87127,4.84214,4.23268,4.91901,2.13145,4.206591666666666,4.206591666666666,2.17266,3.34621,3.5595,1.1297739999999998,4.28547,3.19401,3.128795,2.652795,5.02752,2.50974,1.89495,3.39622,2.550865,2.873255,4.8317,2.562015,1.869815,3.54427,5.77636,5.50695,4.29532,2.60674,3.0764,2.679095,4.69697,2.556085,3.71527,2.24822,6.02033,4.01009,2.066185,3.086495,2.261575,4.57986,2.2573,2.515835,3.01067,7.10096,4.84029,3.157195,2.113225,2.51711,6.34308,2.95312,2.83147,5.6619,3.4092,2.720165,2.64465,2.88601,1.8364566666666666,1.926775,1.7572766666666666,1.5665733333333334,1.83132,1.98586,1.49968,2.08939,1.84706,1.8364566666666666,3.71094,3.91071,2.142965,1.6350725000000002,1.6350725000000002,3.542303333333333,3.542303333333333,2.650686666666667,2.650686666666667,2.88245,2.128615,1.704175,3.73502,2.0897924999999997,2.0897924999999997,2.4185675,2.4185675,2.86907,1.72523,4.44962,2.073795,3.286295,1.9746633333333332,1.9746633333333332,1.468315,3.89654,4.9893,1.3870433333333334,3.89403,2.2221033333333335,1.93166,4.23999,3.104735,1.795845,2.39646,6.13329,2.02959,5.99558,3.005315,3.33301,2.929505,2.693415,6.12594,3.04066,2.52463,2.654313076923077,2.93068,5.23275,3.53884,1.51523,1.51523,3.68852,4.75176,4.72282,5.08548,2.81963,2.62476,1.821315,2.995945,1.506085,2.82333,1.728335,0.7741640000000001,0.7741640000000001,0.7741640000000001,1.93982,4.92796,1.93982,2.088715,3.44466,1.658835,1.96368,4.44261,3.56169,5.28465,1.5679333333333334,5.49791,1.5679333333333334,1.5679333333333334,2.336765,2.08341,2.1942,5.70582,2.1942,2.36616,3.51694,2.02978,1.66438,2.674135,3.0921866666666666,3.485228333333333,3.240013333333333,3.703085,1.4472816666666668,4.3085,0.7432963636363635,4.405505,4.5848875,2.7230775,2.7230775,0.7344909090909091,3.7362,3.0622166666666666,5.9218,5.01805,4.4135,4.59702,4.296665,4.18788,4.89583,4.364355,4.37109,3.90542,4.059075,4.72829,5.39835,3.2199,3.644825,3.944375,2.71752,1.508272,4.465835,3.76512,3.38137,1.4502714285714284,3.80692,4.089445,6.154065,1.086665,4.60518,4.216015,2.081475,1.966475,3.178445,3.54691,1.665615,1.51523,3.691605,3.78846,2.63556,4.665025,2.960535,1.1459,2.9940433333333334,1.2658042857142857,3.206243333333333,2.036653333333333,3.2657166666666666,1.891475,2.789353333333333,4.24529,3.388885,4.574215,3.30769,2.31591,4.73113,4.27503,3.208295,5.3094,4.18333,2.686393333333333,6.1563,4.868155,3.14274,2.6825166666666664,2.73466,2.8974533333333334,2.9372133333333337,2.7954733333333333,4.727075,4.114895,3.741645,2.477113333333333,2.5885333333333334,2.330013333333333,3.047406666666667,2.3905266666666667,2.35114,2.3562233333333333,2.07235,1.4022875,3.0833503333333336,1.1133425,1.907465,1.7287025,2.4582425,1.6080225,2.0008025,4.37704,3.550155,2.140225,4.08811,4.76779,6.936278333333333,2.0580633333333336,1.633726,6.75095,3.472365,4.109995,4.067895,4.22665,2.05063,3.67732,2.6145,2.94043,4.65016,0.7029741666666666,4.17853,2.5361466666666668,0.8156263636363636,5.02085,4.73823,3.981265,1.9818628571428571,4.92899,4.7165,2.74567,3.5962,2.4595366666666667,2.1281766666666666,0.572056,3.08766,3.0232,5.3165,2.665825,2.0650125,4.60456,1.04616,1.7784783333333334,1.7784783333333334,2.66194,1.7784783333333334,4.401645,2.741535,4.90082,4.23754,6.03905,13.517430000000001,3.19244,4.961795,2.764405,4.60955,3.15671,6.4482275,2.949543333333333,4.55456,4.61976,4.0834,1.3200366666666665,4.095755,3.01536,2.97124,1.188688888888889,2.1641175,3.844085,7.470594999999999,4.32441,2.809393333333333,4.344005,3.3006100000000003,4.335115,5.2128,4.466075,2.93107,2.8469700000000002,4.132885,5.9613,2.470795,4.7777,1.9269875,1.9269875,3.0811,4.984885,1.14972,4.1242366666666666,2.34266,3.98418,2.7005466666666664,2.63827,2.6736566666666666,2.174186666666667,0.6594785714285714,3.51632,2.736026666666667,4.641835,4.5425,0.2382721875,5.5331,5.30335,5.75785,8.247110000000001,3.4008333333333334,2.9847133333333336,2.3708933333333335,3.4108,3.159283333333333,1.4327266666666667,2.95082,2.8364,1.5269566666666667,3.071563333333333,3.390233333333333,2.773156666666667,3.29815,1.3337705555555557,4.36565,3.44325,5.15605,4.777805,3.833905,1.6257666666666666,2.5631933333333334,1.319165,1.78523,1.319165,4.800145,3.5189,1.82975,2.51155,4.116715,3.722245,2.944535,3.779155,0.3555015,1.4970641666666666,3.769205,4.057045,5.0691,2.04003,2.9780433333333334,3.1295866666666665,2.6517666666666666,2.81499,3.08873,4.480085,2.706375,2.28767,2.4355100000000003,2.5834366666666666,3.0862933333333333,4.621815,2.05946,5.091,3.831479166666667,5.85365,7.7031149999999995,0.8058244444444445,0.840165,3.563515,7.083247500000001,1.7380579999999999,3.50516,1.5426133333333332,1.5426133333333332,3.475195,0.43880777777777774,3.67811,4.566305,2.62591,4.44782,3.235765,2.59431,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,2.30392,2.75504,3.8174616666666665,3.0222016666666667,4.3726,5.7055766666666665,2.799435,2.4378033333333335,0.9601016666666666,3.32501,0.72269,5.338978333333333,2.9011750000000003,2.26844,0.72269,2.565985,2.704535,0.828435,3.70603,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,4.559845,1.6091825,4.600965,4.86807,1.8731839999999997,4.71521,4.64649,5.35495,4.75162,3.6934278571428574,3.35026,4.933075,2.266,5.170719999999999,4.42994,0.7572214285714286,1.5505714285714285,1.5188000000000001,3.5092666666666665,3.5092666666666665,3.0699733333333334,4.206765,5.01155,4.1364,4.53714,3.2383666666666664,2.367593333333333,0.4861642857142857,4.099925,3.49346,2.71943,5.0176,3.48556,3.0692962500000003,3.658595,4.4565,6.873665,4.279695,4.588095,5.68575,4.6268,1.3470685714285715,3.579135,5.39438,34.67378400180375,1.26322,4.791695,3.545855,4.5167,4.29602,5.1892,4.99967,0.40915761904761905,4.827115,4.363485,1.9393725,1.86648,3.83205,1.6247075,2.36278,2.364705,1.8054925,2.878475,2.469726666666667,3.42933,3.71875,0.6013315384615384,3.401765,3.776405,0.38159052631578944,2.7365266666666668,3.549595,2.64235,4.495695,1.79068,4.69845,3.9264,3.19208,4.237695,3.391755,4.309325,3.01568,4.190625,2.16456,5.39438,3.679085,3.66658,3.17713,1.734868,4.320565,3.48419,6.888018333333333,3.087915,4.552415,6.67864,5.107487000000001,2.28887,5.2588,7.104862499999999,7.730398,2.5272166666666664,2.54853,5.1015,5.70739,4.91289,3.63105,5.4019916666666665,2.33814,2.0853275,2.4277925,60.3344432779252,5.64865,4.283225,2.522225,0.9475199999999999,3.2027533333333333,3.2192633333333336,3.4509000000000003,0.8514311111111111,4.56769,0.7725744444444445,7.812952857142857,1.87361,3.2607933333333334,1.8436720000000002,2.77474,2.6389066666666667,2.849816666666667,2.4734700000000003,2.334846666666667,3.3779333333333335,1.5773000000000001,5.153880833333334,3.6366333333333336,1.5172475,2.528303333333333,1.3780733333333333,1.4653875,7.34599,5.90755,3.314775,5.3376,5.514835,1.4917,3.670166666666667,3.17262,1.629615,4.69372,3.78779,4.005865,1.943775,3.131934166666667,3.8706666666666667,4.142275,5.60695,4.01327,4.206675,2.059275,3.80181,4.322166666666667,3.441433333333333,1.576498,4.21247,3.4499,4.21839,5.2864,4.02497,4.157105,4.63377,4.44456,4.33527,4.734725,4.519935,3.32961,3.657505,5.04385,3.144875,4.21908,3.60624,1.4418075,1.4418075,4.388585,4.95645,5.5529,3.959105,4.69375,3.4258,2.942815,4.7671,5.26705,0.7607181818181818,5.3306,7.323192499999999,5.60615,5.77345,1.3414333333333335,3.182465,0.90745,0.90745,0.90745,3.683925,3.6136666666666666,2.9111366666666663,3.5528666666666666,0.95943,4.632825,4.94315,2.94123,1.65968,2.1251075,4.218905,4.309535,3.752865,3.2453200000000004,6.44205,4.056255,2.7383566666666668,4.707425,6.96995,2.25445,4.02015,3.739165,3.124595,4.59229,4.803465,4.91782,5.4977,3.770955,3.391671111111111,2.0531133333333336,2.0531133333333336,0.7083336363636363,8.734736,2.113845,5.9953,5.6367,4.47246,4.401095,3.70758,3.1052516666666667,4.820575,7.60211,5.748701666666666,2.4037633333333335,4.499905,1.09089,3.71184,1.87816,0.9737722222222222,1.0915457142857143,2.51573,3.271333333333333,2.8002333333333334,1.21725,2.60087,3.0526866666666668,0.90282,3.02465,3.525533333333333,1.66431,1.82334,3.0703899999999997,3.3966666666666665,3.1315766666666662,2.5041466666666667,1.8292100000000002,6.21305,4.696535,4.304365,4.627345,5.4014,3.17658,4.77227,5.75555,4.926765,4.988465,4.380355,11.352966666666667,8.15001,2.9022566666666667,3.577605,2.32801,3.7763,3.16408,4.343255,1.1397033333333333,4.2271,4.470035,1.577915,3.60843,3.0421766666666668,4.37319,3.390755,3.83743,5.98695,7.229441666666666,4.05061,1.6334433333333334,1.6334433333333334,1.6334433333333334,4.940635,1.2004233333333334,1.3960625,0.5043205555555555,4.48263375,3.0423500000000003,3.60402,0.9530329999999999,1.19229875,3.489495,4.2957,3.67168,16.878146178571427,4.835687500000001,4.520385,6.1670549999999995,2.7355300000000002,3.728735,3.257655,0.97959,1.586355,4.538285,3.78313,4.69032,3.80323,4.67804,4.182895,2.745178888888889,3.300835,5.39495,0.6230249999999999,5.0718,2.391835,4.044275,5.30525,3.5195000000000003,2.66267,3.958073333333334,1.6451933333333333,4.026885,5.7445,2.930006666666667,3.85697,4.135385,4.313635,4.633375,3.926065,3.70487,4.24596,5.29855,4.85245,5.2137,4.757245,3.919105,1.1711257142857143,1.6365275,6.399306166666666,5.38785,5.0684,5.2358,2.518825,2.79143,2.835653333333333,5.503793333333333,2.047005,1.92843,3.107556666666667,3.246036666666667,3.3855,4.501925,3.724445,5.538878333333333,1.2013925,4.521365,0.9176666666666667,3.973515,3.40439,1.6778033333333333,4.6545,1.0056966666666667,4.97536,5.55875,5.21775,4.08188,3.7825966666666666,3.974355,2.926823333333333,5.2457,5.6803,3.2085345,3.98479,2.432355,2.635015,1.97097,2.88218,3.88898,5.35355,1.07796,4.5685075,1.4729875,3.297735,1.5689566666666668,1.07796,0.2675410810810811,3.99352,3.012205,2.406865,1.9169766666666668,2.752815,1.1033875,3.626325,3.343655,4.808155,2.5573833333333336,6.42625,6.9580649999999995,2.850763333333333,3.2019566666666663,2.708073333333333,0.875792,2.3872233333333335,6.1928,4.49222,4.951615,5.0634,2.2834133333333333,1.7130633333333334,3.8454325,1.5795,2.3097825,1.746185,2.2534,1.638965,1.935305,1.9437925,2.0416025,2.2315,1.2491757142857143,1.44635,1.901485,2.1874125,2.4173875,2.3282866666666666,0.5761786666666667,1.739434,2.470613333333333,3.1842366666666666,1.8784,1.6626433333333335,1.55932,4.085335,2.16973,2.72239,3.028265,4.080755,4.083725,2.52239,4.45303,1.7128717647058824,4.10062125,23.011688,4.720383333333333,5.5872,4.78947,3.173223333333333,3.88419,4.64001,2.81338,4.547775,3.1982866666666667,0.799815,3.876135,5.01265,4.104775,4.11537,1.6370633333333335,2.0158,2.37147,2.313665,1.3675742857142856,3.175613333333333,5.90845,4.149745,3.29685,4.012325,5.32375,4.09252,5.40995,1.32155,3.660335,4.25261,4.78936,1.540478,2.761283333333333,1.7962512499999999,1.7962512499999999,3.95206,4.998825,2.80444,2.996093333333333,4.073265,4.20378,6.6984224999999995,4.57861,2.14665,1.586355,3.00843,4.18571,3.175926666666667,2.219373968253968,2.219373968253968,3.378,4.594515,4.024105,5.547268333333333,2.423245,3.3420097777777777,0.6032644444444445,0.6032644444444445,0.6032644444444445,3.30313,3.733285,4.517308333333333,5.1115,1.8445925,5.39105,4.50471,4.744025,3.55796,5.2953,2.96318,1.6070142857142857,4.77634,5.05945,0.476385,4.360733333333333,5.0151,1.6759333333333333,5.27385,5.35635,4.54265,3.971825,3.811655,2.87198,4.581405,1.6769200000000002,4.415925,1.7338500000000001,3.640115,5.5652,1.2110325,3.119555,7.2203275,3.98107,4.343933333333333,2.4809275,4.2783,5.46095,3.3547,6.968680000000001,4.396295,2.19665,2.9612133333333333,2.81753,2.7297999999999996,2.967916666666667,1.8011466666666667,3.93904,0.6345183333333334,1.8110249999999999,1.8110249999999999,3.26599,5.01235,2.3275975,3.064365,4.528665,4.604295,4.432035,1.2764466666666667,5.23864719047619,4.399,5.0821,3.78961,4.248203666666667,3.742259,0.5059446666666667,2.4526172857142856,1.0649575,0.5059446666666667,4.241705,0.8534244444444444,4.361475,4.111705,6.640351,3.2152100000000003,1.010945,1.092682,2.308645,3.1009966666666666,2.2274033333333336,2.462963333333333,3.26937,3.628575,2.234856666666667,2.2746366666666664,4.65102,3.32337125,4.099005,5.9208,3.87956,4.85072,8.185856666666666,4.6714,3.57141,4.40908,3.681145,4.390015,5.11495,6.021225,5.4241,2.4205366666666666,0.9395733333333334,4.051335,4.22883,3.992965,4.90455,4.529615,4.22211,3.030113333333333,2.7121933333333335,3.286566666666667,2.591553333333333,2.1268033333333336,2.8613700000000004,3.417,2.5788533333333334,4.132655,4.81922,4.40084,5.48655,2.8026466666666665,3.2786899999999997,2.947075,0.7589714285714286,4.34072,3.97132,4.384635,2.9750566666666667,5.607716666666667,3.36837,4.650125,4.140715,0.63567,0.5779985714285714,4.327995,2.857558,3.084485,4.992735,4.5743,1.7929659999999998,5.3056,4.25331,2.6560799999999998,2.657826666666667,2.406855,2.1881858333333333,3.5297,3.3973999999999998,3.5701,3.1804633333333334,3.5143,2.7012,3.2567500000000003,4.479133333333333,4.3726225,0.55984875,0.55984875,0.55984875,3.3856645277777777,3.866733333333333,3.6885,2.9067666666666665,2.7583699999999998,1.18842375,3.21313,3.3311833333333336,2.03296,2.6769366666666667,2.4794533333333333,1.06896,3.061208333333333,4.776625,9.966163166666666,1.5569659166666667,0.574376,3.64566,0.574376,0.574376,0.574376,0.574376,2.2601675,4.468738,4.318925,5.1842,5.9484,2.8545200000000004,2.99506,3.25517625,3.8385983333333336,5.3165,1.7103833333333334,2.6844466666666666,3.14472,2.62152,3.02748,3.79517,2.2301433333333334,2.694555,1.1860777777777778,4.804415,4.055855,4.126865,0.8490625,0.608333,0.608333,0.9127021739130434,1.7617646739130435,0.9127021739130434,0.9127021739130434,0.31515217391304345,0.31515217391304345,0.9127021739130434,1.4002533333333333,2.628303333333333,2.84029,3.17614,2.57055,2.635003333333333,3.15968,2.7510399999999997,4.56492,3.705365,1.9032625,2.2877433333333332,1.7519925,0.17249871318114873,0.17249871318114873,0.17249871318114873,0.17249871318114873,2.4713499999999997,2.72378,0.8669079999999999,5.0305,0.8052509090909091,1.734242,4.9380925,5.03025,3.467265,3.394375,4.339725,4.02899,1.4515966666666669,1.1617175,3.623825,4.44183,5.80325,2.26358,1.3695866666666667,1.8576666666666668,3.2026800000000004,1.4670233333333333,2.724273333333333,3.2267533333333334,3.2355633333333333,4.53056,3.73008,3.160725,4.706325,2.7603166666666668,4.237365,5.49655,4.081475,4.487185,4.69039,5.55302,4.813580833333333,3.168894857142857,4.930981666666667,4.57836,5.2036,4.611365,4.61048,2.154515,3.064775,4.162995,5.1373,4.322075,4.13452,3.979535,4.079725,4.1213,2.4466466666666666,5.8614,3.709705,7.4249925,5.88765,5.97125,5.1332,1.4993285714285716,0.9789770000000001,0.6701792307692307,1.7819939999999999,5.07005,5.0063,4.02113,1.585094,4.33156,2.99914,4.746075,5.20945,6.3249200000000005,4.24726,3.076455,1.693918,5.5182825,3.89443,3.295225,1.6788325,0.99121625,3.83796,3.61473,3.5129025,3.61791,2.07763,4.503245,1.73546,2.9206633333333336,2.38176,4.04057,4.614175,4.75968,2.2968325,1.44115,5.295,3.0798233333333336,8.66759,2.84185,5.03715,5.77765,4.403925,4.990155,3.445065,4.83057,2.3365375,3.87351,5.242479,2.335125,4.4366,4.71375,7.76146,5.0216,3.4141666666666666,4.1825,3.782525,3.32337125,3.42675,5.1781,4.99998,2.4058225,3.1427666666666667,3.3770000000000002,2.19414,2.67021,4.55765,5.64195,5.0806,4.829695,5.01675,4.578595,5.92495,0.6393207692307693,3.2123399999999998,1.2878585714285715,31.68738191371204,2.78354,4.843075,3.263915,4.411095,1.9384720000000002,2.455903333333333,3.824327023809524,1.545974523809524,1.545974523809524,1.545974523809524,1.545974523809524,2.2783525,3.626305,0.37509,8.034197222222222,0.37509,4.62839,5.2464,2.235445,5.76005,2.3959775,3.8729606666666663,2.4600733333333333,2.4136366666666667,2.6633733333333334,2.1222600000000003,0.6534530769230769,2.597583333333333,0.7275174999999999,3.11229,2.24186,2.40236,1.18131,2.40236,6.19395,8.278134999999999,5.0755,4.801005,5.69095,6.36935,7.91038,3.049395,1.6647875,1.6647875,2.359646666666667,5.18405,3.91331,4.45861,6.428885,4.209495,3.110545,4.065205,3.37918,3.51985,2.151735,1.142824,1.85784,4.23826,4.085385,5.413227777777777,1.9140325,3.97559,1.467752,3.472305,1.392066,3.5910666666666664,3.169286666666667,3.097863333333333,3.18847,3.4937,4.77519,0.7047684615384615,3.528795,3.7034333333333334,2.9024433333333337,2.3603833333333335,4.151465625,3.01172,2.47604,5.31850875,3.752745,4.82299,3.825885,3.56399,5.27815,5.1315,2.8067433333333334,6.09815,2.3828756666666666,1.93298,3.1318366666666666,2.7810133333333336,3.4887333333333337,3.07722,2.0751500000000003,3.7341850303030304,4.463535,3.3746275,2.368212333333333,2.368212333333333,2.564625,4.00603,3.94414,0.8022136363636364,3.241585,3.2617,8.5316,0.9187363636363636,4.406965,3.87283,5.60445,3.787665,4.015495,2.297235,3.89375,2.80559,6.1265,2.6325700000000003,3.91623,2.6087700000000003,3.80314,2.767746666666667,3.586115,3.691975,4.183525,5.363836,3.229015,2.045715,5.07595,2.4288366666666668,4.823935,4.839625,4.68898,4.44029,4.050455,2.906335,2.190166666666667,2.8278,2.6675166666666663,2.973775,3.430566666666667,2.828747857142857,5.1273,2.9710666666666667,2.68772,6.573685833333333,5.138299999999999,4.0447,3.1843500000000002,3.9780333333333338,4.013505,3.51789,2.304625,4.257915000000001,5.47205,4.57261,1.5093949999999998,4.1527,3.2384799999999996,6.937615,4.890875,8.985128333333334,4.63087,4.017035,2.15942,4.056515,5.97821,7.69633,3.65919,5.84486,4.253525,3.260865,4.03955,1.70902,4.804909,1.6055133333333333,4.264855,4.896045,3.6258,0.876075,9.407268333333333,1.2581444444444445,1.58681,2.2735933333333334,1.91579,2.922416666666667,1.381435,3.714795,3.521525,2.7324300000000004,4.315775,1.1224116666666668,3.91165,1.3158983333333334,2.502177666666667,5.1481,4.28988,2.1104375,5.24432,1.9419643333333334,7.92226,4.337395,3.1779,3.95928,3.280635,1.2160866666666668,7.51071,2.80387,3.400845,2.21211,4.18524,2.3472625,3.68452,2.322015,4.009785,1.3626175,5.18605,4.6117,4.124555,0.9720850000000001,2.0060746666666667,3.813205,5.38045,5.3303075,1.505936,1.505936,6.38865,4.419775,5.00795,3.814725,3.42968,9.44918,4.2314,5.6787,4.06867,2.545625,2.066511696364567,0.347366,0.18314387096774193,0.6107716487455197,1.1083740476190476,0.6214995852534562,0.18314387096774193,1.172581,0.4276277777777778,1.4557400476190476,1.7833526487455198,2.0304725,2.292105,2.170193333333333,5.41765,6.588073333333333,5.35235,5.5697,4.6805,5.35855,1.21984,5.15765,4.055255,6.1221,5.44425,5.91885,5.78755,5.93535,5.40705,1.4138950000000001,1.5462428571428573,1.973994,6.391629999999999,1.33818,5.84695,4.723245,7.178755833333334,5.02215,5.75735,4.46226,4.828595,2.648375,6.01055,6.00345,4.435741666666667,4.859675,5.763065,5.51095,3.83362625,4.283575,4.037266666666667,1.00827,3.6846333333333336,4.763655,1.2496825,3.8132333333333333,4.92068,4.1473949999999995,5.15295,2.25055,3.213905,2.848463333333333,4.65489,2.2570225,3.621485,1.2833766666666666,3.403405,3.843475,4.243145,5.0096,3.3520604166666668,0.6619858333333334,5.75545,1.04505875,3.793835,3.3374333333333333,3.85854,2.047293333333333,3.88232,3.7159523076923078,3.9034333333333335,4.45033,15.142249404761905,5.13205,2.205245,8.44538,1.4919625,3.83872,2.96181,2.905863333333333,2.27859,0.21845043478260867,3.00619,4.37534,1.7245819999999998,2.1606366666666665,3.9203666666666668,1.90104,2.5533366666666666,1.3391428571428572,3.913875,4.33353,3.854075,5.22895,0.4916871428571428,2.39682,4.532475,2.722855,5.15195,5.27195,3.88044,4.473075,0.5655041176470588,2.5157333333333334,2.5157333333333334,5.88455,4.9279,4.844985,2.758825,3.8556333333333335,3.5144333333333333,4.9323,3.79628,5.953605555555556,4.956955,4.587855,4.843065,2.546,2.1145,4.572135,4.03995,3.615565,3.429745,1.7735119999999998,4.07347,4.45787,3.77675,4.895155,3.93543,4.26463,0.6236113333333333,3.438905,0.6849875,3.3182266666666664,3.106345,4.51316,18.715554761904762,4.18416,3.750085,3.018963333333333,1.17025375,2.7257433333333334,2.4971566666666667,1.54452,3.104295,2.512875,5.3204,2.2030766666666666,4.468405,4.514475,2.19362,4.690345,3.0021533333333337,4.383675,5.3833,5.59895,1.744365,1.89263,2.369925,4.820725,5.29155,1.2195777777777779,5.4123,3.688725,5.432,4.785635,1.6786333333333332,4.65616,3.885365,3.887095,4.197535,4.02175,3.1191633333333333,0.5935275,7.635106666666667,1.4942220000000002,0.22087305555555556,0.22087305555555556,0.22087305555555556,5.02135,4.3361,2.6450299999999998,4.43628,2.9053,4.526115,4.533001428571429,4.282826666666667,8.868566666666666,4.14283,7.607093333333333,0.8394525,0.95912125,2.2281875,4.832845,4.520365,2.01507,5.32835,5.0634,3.481145,4.355745,4.628185,2.3590833333333334,4.356185,4.939083,2.375716666666667,2.718476666666667,2.942223333333333,2.717805,5.8096,3.811355,0.6445057142857143,3.88721,3.828695,4.416895,5.453203333333334,4.839535,3.1216,5.34235,3.513955,13.736587916666666,4.789295,6.841644333333333,2.648066666666667,6.698475,4.555725,3.896845,2.36212,2.373893333333333,9.87658,2.2746,4.073066666666667,3.7813,3.6648666666666667,2.8536099999999998,3.04744,2.1473825,2.2193725,2.9878066666666663,1.952458,3.6729333333333334,3.219106666666667,2.61707,3.4515333333333333,3.408166666666667,2.42896,2.42896,2.5163100000000003,3.432366666666667,3.455666666666667,2.78488,3.2709266666666665,3.901533333333333,3.13024,2.778093333333333,3.29025,2.381343333333333,2.458675,3.8594666666666666,3.1352733333333336,1.961858,3.8497,2.5474366666666666,2.5359833333333333,2.9554066666666667,2.61722,3.2851,5.831451666666666,2.403216666666667,3.6914,2.0601866666666666,10.780348666666667,2.3086766666666665,1.8553933333333334,1.9239979999999999,1.0677444444444444,1.646092,4.73293,2.7704319999999996,2.7704319999999996,1.6982659999999998,1.5416116666666666,3.60062,3.95854,2.189503333333333,1.4436900000000001,1.634226,4.2797746666666665,3.3491999999999997,4.090366666666667,8.290063333333332,2.9012485714285714,2.714513333333333,3.2164007453416152,4.2825999999999995,2.458675,3.276783333333333,3.02656,3.10065,3.6031666666666666,0.88365,3.577936,3.1061433333333333,2.80911,4.09138,3.046663333333333,0.7027463636363636,1.9482609523809522,5.0628,2.6390685,3.23109,1.6884166666666667,1.6884166666666667,2.0199725,3.6798783333333334,1.0691700000000002,2.3409725,4.776666666666667,4.776666666666667,0.6620190476190476,6.298598999999999,3.923225,4.033375,5.34565,1.2575714285714288,3.4609666666666663,3.4196666666666666,4.959979166666667,6.311791666666666,2.85624,0.697772,2.6795466666666665,2.7735299999999996,3.287992,2.7825733333333336,2.5031733333333333,2.9154933333333335,2.347455,2.481526666666667,0.8575418181818182,3.255395,4.349862,1.38952,1.3823500000000002,5.08165,2.586425,1.63793,4.3118,1.7479040000000001,3.615025,2.372425,3.195953333333333,8.737536250000002,4.847500833333333,4.574595,5.18815,2.5261065454545455,0.715068,1.885954,7.1069233333333335,1.6813733333333334,4.378965,4.621385,3.65921,21.149812083333334,3.113853333333333,1.3593866666666665,1.16296125,3.2262566666666666,1.4354466666666665,3.984248,5.68175,3.4729595,3.187343333333333,1.3737199999999998,1.4143833333333333,3.05409,0.544273125,3.0600433333333332,3.6590666666666665,2.97582,2.587740666666667,2.52684,2.693353333333333,2.38608,2.776996666666667,1.737274,3.6274333333333337,1.398465,3.862705,4.33667,3.158163333333333,4.82419,3.29171,4.13308,5.2306,4.39441,3.1295300000000004,2.7079733333333333,2.5935,1.0908728571428572,1.0908728571428572,1.0908728571428572,2.1923525,2.931426666666667,2.6351633333333333,2.5709766666666667,2.3686133333333332,1.68131,4.325315,4.03304,3.666565,6.60221,3.327665,2.32624,1.90636,1.0372216666666667,2.4585166666666667,3.879795,2.4794666666666667,2.673306666666667,2.2682866666666666,2.93561,2.60372,2.86834,2.99192,2.6576400000000002,2.53437,3.1578133333333334,2.20092,2.0560175,1.9998375,1.6158625,3.089036666666667,3.23819,1.98379,3.964195,4.96092,3.0243333333333333,2.4309888461538463,5.952098333333334,4.40118,4.869355,5.67775,4.5746,4.24421,6.74907,1.2550625,4.197645,2.620735,5.27995,5.1279,3.791045,3.91996,2.408625,7.698145,2.888415,0.9109333333333334,8.96169,5.20634,5.934960952380953,4.69647,2.89546275,1.9754525,4.942745,4.527565,4.78397,5.3902,2.49433,4.70864,4.39273,1.7519925,4.23176,2.828225,1.36575,5.14205,0.647935294117647,4.384991666666666,3.683035,4.582615,3.20606,1.568955,3.60489,2.217895,1.3119125,2.8358633333333336,3.5212,3.13101,7.011464999999999,1.75973,6.703636666666666,9.268275,6.1047525,3.55887,1.2609,3.06493,1.2609,2.8148400000000002,2.21026,0.2990688235294118,1.1815213235294117,0.2990688235294118,0.2990688235294118,0.2990688235294118,1.1815213235294117,1.1815213235294117,0.2990688235294118,0.8824525,4.63677,3.37352,3.17381,3.865055,3.7412,3.053395,2.9258353333333336,1.622352,6.7693200000000004,2.601933333333333,4.166685,2.6354133333333336,1.0255,1.21796125,4.66855,3.977895,1.0858544444444445,1.7920000000000003,0.7059218181818182,3.202084718614718,4.424495,5.37685,3.6644666666666663,5.404774166666667,0.5610184615384616,4.29297,3.44905375,3.29354,2.6681266666666663,3.4171333333333336,2.595073333333333,3.1312800000000003,2.6735133333333336,3.005055,3.58634,5.8985,5.2755,1.5382419999999999,4.51746,4.50631,3.43123,3.67157,3.379405,0.38123199999999996,4.67824,3.58476,3.211765,3.2517380000000005,4.466605,3.911395,1.908785,3.666735,4.10699,8.057884999999999,5.1001,5.6445,4.276,4.7085475,0.8668975,2.07095,1.831585,1.44008,1.7884200000000001,4.681285,5.46085,4.35018,3.99843,3.2453200000000004,2.6853233333333333,0.9264766666666667,4.10915,1.2097183333333332,1.2367266666666665,3.14592,3.790285,4.757895,1.20440125,2.7819000000000003,8.6248,3.1166,3.6218316666666666,0.847165,3.83165,12.315723333333334,3.45217,4.052205,3.26272,3.99096,4.87427,5.002,2.12936,4.128485,0.5915207692307692,4.75574,2.2357325,1.71328,1.71328,3.5065666666666666,4.453705,1.6829666666666665,4.31361,1.4944142857142857,4.14906,2.6987933333333336,3.269016666666667,4.68068,3.438415,3.6679546666666667,2.562025,2.5785046666666664,2.5785046666666664,11.090399999999999,0.778962,3.399715,3.250526666666667,2.1027175,2.0037825,0.8718671428571428,1.403925,1.3904214285714287,2.00502,4.797215,2.36033,4.354395,2.1384766666666666,4.1768,4.76047,1.6218816666666667,2.0171025,1.0426499999999999,5.72765725,2.1396825,2.187795,1.683222,1.678108,1.16296125,2.4342545833333333,3.58774,2.3349266666666666,3.0076066666666663,2.448976666666667,2.785906666666667,1.6200999999999999,3.1583466666666666,2.7262799999999996,1.2901466666666666,1.88129,3.0527533333333334,3.0915533333333336,2.3249066666666667,1.12612,2.5893333333333333,2.207333333333333,3.2568066666666664,0.360371052631579,0.39936750000000004,2.27008,2.34971,3.077725,3.0665466666666665,2.60938,4.925755,6.04955,4.53362,4.4428,4.38953,4.08188,2.4341433333333335,3.935325,0.6871036363636364,0.06716749999999999,6.3085,0.06716749999999999,3.49365,3.077615,5.7152,3.49985,6.1205,4.9772,2.2730866666666665,2.6180233333333334,1.4207816666666666,6.04615,5.3671,3.307346666666667,5.2173,1.961565,4.22044,2.0468221739130437,3.05566,3.2756133333333337,4.264355,4.628566666666666,3.28929,2.34972,2.34972,4.11953,7.74552,3.80232,2.3679033333333335,2.5616499999999998,4.02591,3.10708,4.96136,3.947435,1.0137666666666667,4.560315,2.6630966666666667,2.8616200000000003,4.335,1.0951466666666667,2.62825,4.213015,3.98006,5.12465,2.8997,3.41999,4.10118,4.08823,4.32902,5.07245,4.39813,3.220331388888889,3.759015,2.6758066666666664,3.0498266666666667,2.9927566666666667,3.2142700000000004,4.462785,3.009463333333333,4.944649166666666,4.52276,3.613265,5.4652,4.38496,3.69792,1.4594799999999999,1.35077,4.07394,3.2488200000000003,1.5625166666666666,2.9798899999999997,3.318765,3.05871,3.735695555555555,3.2320966666666666,2.2929091666666666,12.92995613888889,2.0127099999999998,1.692918,4.469935,1.109706,3.27002,3.57765,4.727985,3.220635,1.150411111111111,2.310233333333333,2.5573833333333336,1.5727740000000001,5.46065,0.886765,0.886765,3.614746666666667,1.73102,1.8837266666666668,1.94291,3.535195,3.850565,1.944615,2.78134,3.607746666666667,2.91898,2.8314800000000004,2.09492,6.46395,6.03855,3.65055,0.839446153846154,3.577165,3.71375,0.9197454545454545,5.14215,3.3045000000000004,8.620000000000001,4.54888,4.833025,3.48502,1.4673325,3.02307,5.11005,5.0215,4.096,4.285905,4.38668,3.35442,3.554066666666667,3.554066666666667,4.824695,2.8349075,5.13365,1.791405,5.5055724999999995,5.338268333333334,1.6759333333333333,4.77654,1.11174,4.90186,4.191505,4.932725,4.872815,3.950895,2.64964,2.59685,4.71805,4.42976,5.0295,4.49767,2.206465,1.355348,4.08732,2.216693333333333,5.1016,3.067795,3.55431,7.641299999999999,3.93794,4.84524,4.995795,4.23163,4.17834,8.298225,3.490705,4.212645,9.597480000000001,4.01509,0.6240921428571429,2.0745693223443222,4.59066,0.6646873333333333,4.697105,4.289215,5.1141,4.69108,3.64511,4.454585,4.8076,4.59503,2.28046,0.7260285714285715,4.67397,4.68984,4.65801,4.374975,2.592096666666667,4.466665,3.36452,0.666986,3.82435,3.978895,2.406745,3.06816,3.793265,2.193459166666667,5.44465,4.905405,3.999905,3.31652,5.724796666666666,5.724796666666666,8.69923,2.02244,0.8396325,0.8396325,24.748291666666667,2.9997,8.222976666666666,0.5247266666666667,1.2272666666666667,3.2020966666666664,1.0485799999999998,3.728045,3.88348,2.1265825,2.1265825,4.412895,4.696555,3.55577,2.591815,2.591815,3.43621,4.08241,3.946755,3.1294233333333334,2.049976666666667,2.3999370833333336,4.127337000000001,1.963615,3.511365,2.6130400000000003,2.988749642857143,2.988749642857143,3.6384666666666665,0.8573377777777778,2.50201,1.57172,3.4431666666666665,2.89669,3.009793333333333,2.63117,4.60792,2.32155,3.1227400000000003,5.7109119999999995,1.43643,2.195655,3.103095,2.6378866666666667,4.089215,5.930806650793651,1.3625866666666668,3.7885000000000004,2.431635,5.09502,6.32167,1.49237,4.8498133333333335,5.042220666666667,3.160697142857143,4.6085,1.0430742857142856,1.540478,2.717315,3.8629142857142855,1.2291366666666665,2.49558,1.711925,1.9193380000000002,2.55227,3.746782,5.406462,0.9618766666666666,1.4771571428571428,2.9015766666666667,13.45974,4.751006666666667,2.75116,1.1800014285714284,2.5880983333333334,1.01412,3.238096666666667,4.269326666666666,4.82663,3.29048,5.5369,1.46497,3.846966666666667,4.272155,2.8156233333333334,3.7196900000000004,2.4609733333333335,0.9647800000000001,2.6478433333333333,2.7085833333333333,7.025355,3.251028285714286,2.6063066666666668,0.715832,4.8446,3.5519,1.47943,5.837836666666666,2.11417,2.2695166666666666,5.75075,1.3638777777777777,2.9433233333333333,1.0009818181818182,3.3072166666666667,4.451015,3.078086666666667,3.4418333333333333,2.1999366666666664,2.51748,4.575325,4.953115,5.2619,1.71685,4.529355,4.039085,4.170063333333333,3.492502,2.5305133333333334,4.406913333333333,0.9289799999999999,2.89268,4.963045,2.72545,4.162017083333334,1.4292375,2.8816633333333335,1.9460000000000002,1.9460000000000002,7.31665,3.322896666666667,5.42136,3.5534383333333337,1.8801166666666667,2.874892380952381,4.72074,5.4631,8.708590000000001,5.159331,2.7583215,1.9135666666666669,2.177341,4.117283333333333,3.73782,1.4191280000000002,2.0645975,3.072800892857143,1.20809,3.1898199999999997,18.91601,3.5304333333333333,2.82888,2.85561,2.91626,2.6672433333333334,1.6248500000000001,2.9910200000000002,3.26367,2.8206366666666667,2.56011,5.778204000000001,2.5932566666666665,4.598605428571428,2.9075614285714284,2.5553454285714285,1.4307666666666667,3.83765,2.20414,4.14208,4.768645,3.9938,2.9901999999999997,3.18665,2.55379,3.4196333333333335,2.9537633333333333,3.5444,3.3213866666666667,0.8123945454545454,4.86779,2.514775,3.342833333333333,2.8172633333333335,2.1229325,2.2910079166666666,2.2910079166666666,3.84214125,2.3193245833333336,4.909525,4.56598,3.68399,4.721195,4.84754,4.73362,4.73362,3.978415,3.0621666666666667,5.11245,2.796055,1.688672,3.3999333333333333,4.479025,4.037495,2.5126,3.885315,5.740245,3.9675,6.506961297619047,3.075205,0.803352,0.803352,3.30365,4.639385,3.77949,3.365874,2.405203333333333,2.0345933333333335,1.8068466666666667,3.2903300000000004,6.425906,1.5010966666666665,4.1484,3.8218333333333336,3.871985,5.00085,5.35655,4.78721775,3.385733333333333,2.4618375,4.753865,3.56839,2.1759975,1.080414,4.604455,2.773975,6.211375,3.4374000000000002,2.63627,3.25845,3.69573,3.678495,4.64607,3.1644,4.975395,4.394045,4.36126,3.662905,3.53317,3.436125,4.51016,2.61092,4.79454,3.08984,4.889915,0.6672411111111111,2.2846675,1.7607875,1.965495,1.867295,2.505996666666667,2.6312333333333333,1.7872933333333334,4.91125,6.07366,1.9404866666666667,4.93315,4.609425,2.3908825,5.5933150000000005,4.184695416666666,5.10705,5.216,7.04233,2.0219833333333335,3.15268,1.91577,2.920393333333333,1.800055,1.6675,3.97544,3.476605,5.006,1.021717777777778,3.17988,4.332575,2.1968725,5.744,3.693315,2.790705,3.7687333333333335,3.2989,1.582625,1.902575,2.5136,2.853325,3.164525,1.98886,3.20991,3.20991,3.521825,3.280625,19.48768833333333,0.9851800000000001,5.256493333333333,2.10375,1.90679,3.80706,4.0712,1.93457,3.724445,4.607835,1.8186233333333335,1.8186233333333335,1.1968833333333333,2.0633766666666666,2.4454766666666665,3.175713333333333,4.504718333333333,3.850765,3.6778,0.5316947368421052,3.562858070175438,1.9860466666666667,2.20449,4.5426400000000005,3.81196,3.96348,3.67408,4.641595,4.226945,2.0153575,3.803975,5.70739,2.361625,3.811455,4.9859,2.218095,4.687845,5.2511,1.3276299999999999,2.06368,3.7713666666666668,0.79959,2.902886666666667,3.446185,4.927425,4.732215,2.729491388888889,8.13597,2.90082,3.0396566666666662,0.4405147058823529,4.09742,5.3035202380952375,3.0215738095238094,5.56925,3.80557,2.656223111111111,1.7782399999999998,5.659801,4.42391,4.37196,2.373005,2.0655675,4.13843,3.9939999999999998,3.063743333333333,1.8741825,4.165134166666666,7.0811325,2.713145,3.78347,3.552815,4.33181,1.4623571428571427,1.4623571428571427,3.0962566666666667,3.04359,4.6886,4.717965,5.8311,4.083385,2.7669,2.1570375,1.4949916666666667,1.4022014285714286,4.936065,5.6112925,5.45405,5.5662,4.735165,6.501077499999999,4.395055,2.8750166666666668,3.9354786666666666,2.2566,2.967212,1.5232139999999998,4.44998,2.3844166666666666,4.821755,5.5212,4.082925,2.7549266666666665,3.0798233333333336,1.6006142857142858,2.656025,4.0721,2.000895,0.543373125,3.29804,2.829776666666667,2.5788533333333334,2.2920066666666665,2.1476925,1.7764700000000002,0.7267572727272728,0.7267572727272728,3.6666666666666665,1.9183875,2.2666875,4.67691,5.83345,4.44553,4.498195,4.290145,4.377365,2.5649586666666666,1.21489,3.39575,3.809815,0.9242025,3.4285975000000004,2.93388,2.791925,2.21294,4.002445,2.69738,2.0178233333333333,1.348302857142857,3.87671,6.87161,3.57596,1.6832642857142859,4.774995,3.30049,3.03059,3.341355,2.765795,2.0490733333333333,1.035495,3.836515,2.4958283333333338,2.2275133333333335,1.6230466666666665,2.3414266666666665,2.2065633333333334,2.6895466666666668,2.9485912499999998,1.2234066666666668,2.137636666666667,1.090185,6.595890000000001,4.894145,4.896455,3.947865,4.26196,3.0613733333333335,1.765477777777778,4.55195,4.973395,2.572265,5.2491,2.09696,4.57911,1.0985033333333334,4.103255,4.064225,1.84199,7.68127,3.531055,1.869385,1.78591,2.2943175,2.65575,3.3238633333333336,1.3233768831168833,3.1599066666666666,5.67835,4.98449,4.738945,5.79095,5.7561,4.88709,0.9345875,4.429615,4.75942,4.448145,5.1535,4.125868333333333,4.84542,5.1612,2.95138,1.27775,1.27775,5.42165,6.080620000000001,3.05581,2.967563333333333,4.36779,3.8377,1.697492,3.905555,4.75918,3.756145,4.173805,2.9424566666666667,2.8851933333333335,4.87834,2.4504031250000002,11.21027693594151,1.8891633333333333,1.0360625,2.4961800000000003,1.67135,2.222585,2.1920575,2.09112,3.10825,5.39155,5.3941,3.03227,1.6109266666666666,6.286842857142857,1.3947357142857142,3.1068700000000002,0.522447619047619,4.06192,5.77155,3.884465,4.493695,13.104849999999999,5.53745,3.1190833333333337,2.8403899999999997,4.40724,3.00381,5.12965,1.19528,1.4670516666666666,1.1896909090909091,5.8676,4.18146,1.890158,4.853992000000001,5.15985,6.37415,5.0301,5.242,4.47498,6.4093,3.966135,5.4336,3.998315,1.50526,4.447695,5.65735,3.842135,4.06417,4.78931,3.140105,1.2648625,4.81064,3.91757,1.2407725,3.4071,3.15382,2.3578566666666667,2.8364833333333332,2.762113333333333,3.097046666666667,0.7066327272727273,3.2515933333333336,2.779693333333333,2.62692,2.19679,2.9810466666666664,1.889775,1.4944199999999999,2.4606875,2.1644,2.2879725,3.4168000000000003,2.993176666666667,0.662434,2.7184166666666667,3.743855,5.0415,2.345473333333333,3.90271,5.19725,5.36745,3.39608,3.8208,1.5188000000000001,4.6543,2.6655172222222223,4.137626666666666,3.07329125,4.60594,4.91535,5.03785,3.907795,4.205733333333334,0.9499340000000001,0.9499340000000001,2.252106153846154,1.66516,4.325165,2.6815975,2.6815975,4.93372,6.0996,3.18745,1.2429516666666667,1.6319714285714286,5.9734,3.56461,2.8201,3.26559,2.783455,3.11685,2.8201,6.9213125,3.2511,3.02974125,2.802735,1.94322,2.956985,5.85285,2.444205,3.360225,3.61683,6.2826,5.43185,5.953374999999999,5.953374999999999,5.2353,4.27216,0.5364476923076923,4.741055,4.386595,2.854825,2.828425,9.388783333333333,3.395633333333333,4.46139,3.699885,3.5811333333333333,5.86865,3.302055,3.2094449999999997,2.8745499999999997,3.105753333333333,2.5332966666666668,1.633312,1.633312,3.61344,3.51831,4.45368,2.26642,1.5693139999999999,49.28305742424242,2.6959766666666667,0.827129090909091,3.3047966666666664,1.9848025,3.2961733333333334,3.1823533333333334,3.1904066666666666,3.252525,3.0035233333333333,1.9298866666666665,1.0150975,4.417055,3.2463,4.846505,4.890555,5.35175,5.30695,5.1137,5.46245,5.5574,4.959355,5.70915,6.3321325,4.88883,5.7078,2.0741125,3.75348,6.6581,5.4175,4.05718,3.873055,3.990125,2.662055,3.95847,4.59719,3.1328033333333334,3.8179,1.68307,3.54845,1.3405239999999998,3.217475,3.82356,3.56449,6.7010749999999994,4.61728,2.3077725,4.439025,4.152835,3.984065,1.08060875,2.95395,3.25215,4.3287474999999995,1.4588,4.931555,1.4209125,5.82985,0.7301855555555555,4.697838,10.3881425,4.1294,3.481255,3.63357,1.8750666666666669,4.3493,5.3715,3.1498566666666665,4.69152,9.413437777777778,3.4471333333333334,2.32421,2.8833366666666667,2.8897933333333334,2.8416200000000003,2.850155,1.9443833333333334,2.7247,2.800133333333333,2.7662366666666665,2.839093333333333,3.39896,2.19306,1.7761833333333332,5.114875333333333,2.9136366666666667,2.5757000000000003,5.067155333333334,2.81859,1.1238175,2.1181775,2.8932599999999997,5.290314285714286,2.66255,2.190946111111111,2.190946111111111,1.57759,1.624395,2.0934,1.7495539999999998,6.17166875,4.4261375,2.68605,2.923666666666667,3.4014333333333333,2.00581,0.5241574999999999,2.62798,1.899595,0.5962692307692308,3.79944,2.663125,2.459355,3.68348,3.8476833333333333,2.512376666666667,1.6030766666666667,1.3696333333333335,2.117235,3.44712,3.825795,4.3439475000000005,3.060503333333333,3.910425,3.973935,1.1832636363636364,9.739840000000001,2.688835,3.28598,1.23338125,2.8536866666666665,2.379845,2.379845,2.379845,4.66954,6.01335,1.481385,4.99893,1.419206,5.750666666666666,1.5641180000000001,4.22629,4.34269,4.091325,3.89487,4.74086,1.857865,8.9257575,4.609105,4.982535,3.28105,4.101336666666667,3.6077999999999997,3.1687999999999996,3.86399,2.6227766666666668,4.556444285714286,4.4278241666666664,1.6505225,3.93286,1.6505225,3.404535,4.483625833333333,4.9186325,4.483625833333333,1.8139766666666668,5.74305,4.728285,4.50186,2.9187266666666667,3.080023333333333,4.73389,3.19074,5.08595,0.5680821428571429,3.083653333333333,3.131213333333333,5.547368333333333,4.719985,2.54855,4.51402,7.28144,3.64879,3.095335,2.78717,2.29172,4.11195,4.024355,4.823335,2.668955,3.90515,0.8797790000000001,4.9875,3.51432,4.194995,2.5874133333333336,3.16986,2.1826133333333333,2.942323333333333,2.81369,2.7868133333333334,3.295335,2.3549625,2.3549625,4.418209166666667,3.14079,4.36901,11.8165625,0.9643444444444444,4.646705,2.4529833333333335,2.40438,2.8915066666666664,1.3960625,7.3320035,3.5982000000000003,3.971255,3.886706666666667,2.4587166666666667,3.852866666666667,4.618008111111111,2.424123333333333,0.4830238888888889,1.6665240000000001,1.582625,5.03185,2.732195,3.15281,3.833799166666666,3.5524566666666666,2.4979862500000003,4.272265,4.50116,3.952155,4.292685,2.20612,4.50192,2.5264466666666667,5.651606666666666,3.086405,4.506965,4.50131,4.31382,4.40398,1.987285,3.78722,3.87894,2.70182,3.74142,3.20038,3.08337,3.20258,3.57356,2.7731166666666667,4.779095,1.9097833333333334,4.08298,2.79038,4.16811,3.819105,4.53031,4.576035,2.934205,4.22786,3.940785,4.12129,2.388386666666667,2.100975,2.96711,2.188455,0.8342233333333334,4.305055,2.030075,3.597745,2.67876,4.185105,3.48587,2.95345,4.09481,3.86609,4.801878666666667,4.0986,3.01787,1.43537,3.94158,2.51155,1.114111111111111,5.41965,9.127215,3.51007,3.68754,4.834205,5.14575,3.762885,2.06591,3.999685,3.89791,3.13877,3.153735,3.93708,0.62948,1.4845000000000002,6.155715,1.629225,2.664835,4.882372,2.25055,2.1165,2.72105,7.52226,2.834425,4.514345,3.73524,0.7629511111111111,3.36567,2.56379,3.758435,4.581045,6.284928333333333,0.7003809999999999,3.272115,8.10072,3.30279,1.3212111111111111,5.439049583333333,4.572705,5.7406,4.77727,4.535985,3.36542,2.6272033333333336,7.837675000000001,0.9275779999999999,3.495535,4.31698,3.24405,4.167095,3.043165,4.328475,1.4359516666666667,4.20228,3.777535,3.929585,1.7309125,4.861175,4.98615,2.4168175,2.00858,2.64835,1.47943,4.116035,3.4729595,1.6994399999999998,8.999095,5.74285,4.605125,4.16972,3.47678,4.382995,1.3621557142857144,4.558895,3.914575,5.27095,3.62243,2.579493333333333,6.629342243589744,0.89592,0.89592,2.579753333333333,0.9126014285714286,4.293555,2.824343333333333,1.0116225,1.7453766666666668,0.41225833333333334,6.4209925000000005,1.0452425,2.704445,4.01413,4.01793,3.755155,4.22939,4.99067,5.551295,2.92929,3.07166,2.347695,4.168625,4.96338,4.652165,4.216355,4.03973,6.74085,4.54845,4.523922777777778,5.235004,3.72458,3.9098325,2.30797,3.9098325,6.814925,41.618387976190476,3.95746,3.437125,3.0094266666666667,4.71787,4.592045,3.53379,3.404965,3.70812,4.0372,4.637805,1.7253666666666667,5.22515,2.6731,4.63052,4.789475,4.4355,2.3646766666666665,4.923945,3.937195,4.79128,1.4758,0.6692699999999999,1.6167719999999999,3.808,3.0452733333333337,1.302775,3.3555333333333333,2.504773333333333,2.9122133333333333,3.14803,3.1950266666666667,1.5727980000000001,2.432516666666667,3.699,1.9378728442728446,2.913656666666667,3.2046459999999994,3.0408733333333333,2.6740033333333333,3.3575666666666666,1.1554444444444443,4.34585,3.952465,1.204025,1.204025,1.204025,1.204025,2.8659524242424244,2.0300233333333333,2.3823,3.506585,4.822285,4.59031,4.74396,4.77014,5.52705,4.815685,2.432475,5.87655,4.14316,2.53727,4.780615,3.58102,4.568965,4.26578,0.8223230769230769,1.5135714285714286,1.5749933333333335,5.0273,5.46435,4.063985,4.17923,6.337448333333334,2.269773333333333,5.2377,1.7005833333333333,4.144835,5.3554,1.55363,5.91955,0.8565,5.14175,1.563354,1.3123875,3.997375,4.30963,5.4542,5.18035,5.6085,3.966625,1.829056,4.488205,1.4839825,3.74215,3.318755,2.656223111111111,1.7798975,3.20077,1.2795966666666667,3.19258,4.9135,2.8928766666666665,5.7393,124.1346273169192,0.4793077777777778,4.774385,2.6089366666666667,4.90664,4.34294,2.88569,1.6754025,0.35015857142857143,2.851735,3.77947,5.8276,2.944315,3.81198,4.69333,4.47357,4.1223,7.91018,0.6643833333333333,3.86051,0.96570875,11.84564,3.06538,3.555725,1.0499822222222222,2.21244,3.29862,2.213305,2.9714266666666664,3.359,2.31842,4.29551,2.93299,2.275916666666667,2.21815,3.72596,3.36181,3.142395,3.6084,3.753465,3.503075,2.3296533333333334,3.830465,3.35057,3.062265,1.0858733333333332,2.5755833333333333,4.29551,4.692985,5.2917,4.07092,4.50881,1.90164,10.48037,5.15085,2.832465,3.60978,5.5341,0.5938533333333333,0.5938533333333333,4.469485000000001,4.469485000000001,3.829495,3.9318333333333335,1.8265379545454548,0.6214191666666666,2.83855,4.34712,4.35257,3.89517,4.395975,5.3758875,4.65407,2.2422925,4.434365,1.8142225,2.778325,5.0500774999999996,1.6971,3.199205,0.4820357142857143,1.3017357142857142,1.3017357142857142,1.877035,4.757825,4.236345,4.985455,6.102776,2.980985,3.2694,2.050595,1.967055,4.147160833333333,3.80281,5.700006666666667,2.2415,5.700006666666667,5.113,3.55846,6.06925,3.778735,2.4121366666666666,1.9512533333333335,3.5634333333333337,1.4067525,1.43371,1.554245,1.6489,1.4971525,1.924065,3.5528999999999997,4.316955,2.439425,5.8618,3.0777566666666663,4.47807,2.584625,4.116115,3.0078366666666665,3.2746033333333333,6.027326666666666,3.4316999999999998,4.656337333333333,3.475633333333333,1.37449,2.67028,2.7492633333333334,2.6917733333333334,5.8683,4.1744075,4.91622,13.114148510362444,0.6648383333333333,1.99327775,2.42397,1.766792,1.3442071428571427,2.741875,2.504575,2.474205,2.4757275,0.7528223076923077,2.1133875,0.5122647368421053,4.78714,1.936215,3.78374,4.72335,2.4923325,5.840665,4.54627,7.46293,4.15127,2.91872,3.06941,4.779795,4.514495,2.885977047619048,4.830515,2.18776,2.18776,5.18645,3.91686,4.616045,4.08693,3.247833333333333,4.171875,5.1468,5.1575,4.69183,4.532265,4.418645,4.938805,2.41901,5.05355,1.2588633333333334,4.905685,4.622345,2.4837366666666667,2.400253333333333,4.51024,1.4331666666666667,4.672215,1.7619075,5.79592634057971,3.59019,4.53766,1.6148766666666667,3.208798333333333,3.208798333333333,12.17838,3.91648,4.45636,1.10368125,4.299021,2.3287475,1.43539,2.44693,1.984455,2.1148,1.9002759999999999,3.442595,6.13485,1.78799,5.17545,4.733301666666667,5.142,2.3789675,2.62621,4.056235,4.3321,5.14335,3.914975,7.437891666666667,3.2293333333333334,2.726296666666667,0.49034333333333335,3.79175,4.085355,3.5072666666666668,6.464771666666667,2.5778966666666667,3.0616866666666667,1.272035,1.610175,0.543373125,1.6665240000000001,3.048875,1.5649733333333333,1.7205833333333331,0.6911625,1.28969,4.60204,2.4929725,0.6458592307692308,1.7676,1.7578075,1.837714,1.37845,2.190555,1.610175,2.335125,1.28969,1.28969,0.6458592307692308,1.623257142857143,2.52786,1.2291366666666665,2.771025,0.6458592307692308,2.632525,2.52786,1.3022733333333334,1.3022733333333334,1.3022733333333334,1.9383299999999999,1.14320625,0.6458592307692308,1.14067,1.23047125,1.0677444444444444,1.8833600000000001,2.5678,0.876075,2.2038325,1.6310857142857142,0.6458592307692308,1.7354479999999999,1.610175,2.0252833333333333,2.0090166666666667,0.9083479999999999,2.0252833333333333,1.1056788888888889,2.4168175,2.3642825,2.6145,1.23047125,2.20952,1.2795966666666667,1.2795966666666667,0.9441090909090909,0.9441090909090909,0.9441090909090909,1.272035,1.610175,1.6310857142857142,1.7676,0.9669914285714285,2.0090166666666667,1.574008,1.961858,1.892428,1.272035,2.75116,12.2296425,0.6911625,2.61672,1.9390166666666666,2.718,1.01412,1.01412,0.6458592307692308,1.2029222222222222,1.7764700000000002,1.6310857142857142,1.79299,2.0090166666666667,1.2195777777777779,1.2195777777777779,1.734242,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,3.451233333333333,1.1056788888888889,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.3957259090909091,54.686992896825394,1.468165,1.5395233333333334,1.6310857142857142,1.9390166666666666,0.9669914285714285,0.6389176470588235,0.715832,0.715832,0.715832,0.715832,4.430866666666667,16.805344166666668,3.4751666666666665,0.6629018181818181,1.713016,1.713016,1.713016,0.6629018181818181,3.048875,0.6458592307692308,1.7354479999999999,1.7205833333333331,2.6133800000000003,1.1056788888888889,2.54855,1.1056788888888889,1.53744,1.53744,2.1614166666666668,2.1614166666666668,0.6458592307692308,2.01104,2.01104,1.0095181818181818,0.22087305555555556,3.048875,1.6325200000000002,2.431635,0.6629018181818181,0.6629018181818181,0.6629018181818181,0.6629018181818181,0.6629018181818181,1.9390166666666666,0.3957259090909091,1.1056788888888889,2.4367525,2.4367525,2.59685,3.3374333333333333,0.6620190476190476,0.6620190476190476,3.2483233333333335,4.020533333333334,1.2575714285714288,3.28084,1.06678,2.619475,2.02244,1.0951466666666667,3.288743333333333,2.010175,3.31652,5.43045,2.352995,1.2756666666666667,4.528815,4.48342,2.5555866666666667,1.7447579999999998,2.5712469230769233,4.714975,1.9913180555555556,2.7094966666666664,3.5099,3.1419566666666667,2.45467,6.408383333333333,4.381375,0.22087305555555556,3.20632,5.04855,4.363575,4.466625,4.542895,4.54613,2.6718333333333333,1.859174,4.097175,4.59596,4.352775,4.784585,5.3642,3.176735,0.6996000000000001,6.838945,1.373905,3.264766,5.16405,2.6703533333333334,2.6703533333333334,0.79135,1.7798975,3.938325,3.13375,4.40539,4.186985,4.85286,5.2326,0.9576985714285715,4.61273,4.99155,7.183891736111112,2.2789699999999997,4.233505,4.171505,3.73425,4.30083,4.46936,4.53369,5.363194999999999,5.5592,4.4189,3.79072,4.533083333333334,7.545417,1.8943375,1.8224692307692307,2.8641,1.73121,3.0157366666666667,1.8396100000000002,5.06875,3.1343,5.3675,1.9987660000000003,4.91886,3.997755,3.563395,4.34524,3.7759,2.454543333333333,2.8404333333333334,2.79848,2.70215,2.5643366666666667,1.6517433333333333,2.73128,2.8880733333333333,1.9286180000000002,1.9286180000000002,4.06656,2.862526666666667,2.0192900000000003,3.1451433333333334,2.032906666666667,2.228396666666667,3.02233,2.64695,3.032996666666667,5.1524,4.79721,4.56032,3.6662006666666667,3.6662006666666667,3.855655,3.2645666666666666,4.472755,4.38508,4.13899,3.546885,3.29879,7.462,2.10024,1.885455,3.39066,3.172125,1.2333233333333333,1.2333233333333333,3.687415,1.800735,3.962892,3.60726,3.06056,2.1253604999999998,2.20197525,0.5311216666666666,2.85389,3.942335,2.092325,2.458605,4.244815,1.1775966666666666,4.62294,1.1869066666666666,0.4052671428571428,0.5497664285714285,22.168218765873014,0.5497664285714285,0.4052671428571428,0.6942657142857143,11.086739999999999,3.0445266666666666,3.902525,4.527925,3.5517275,2.847145,4.268099285714285,2.23841,2.84096,3.58185,3.05521,4.186115,5.06775,3.505665,2.22403,3.327385,3.836235,3.89081,3.071065,1.112556,1.112556,1.112556,1.112556,3.36291,2.729685,3.159765,1.8047000000000002,1.188555,2.43962,3.66207,4.199765,2.816025,3.82356,2.592085,2.6987933333333336,3.89105,4.482855,1.1303983333333334,3.25151,1.08359,2.7113133333333335,2.2054666666666667,3.730566666666667,5.26385,2.45859,4.029635,4.2527566666666665,0.8117799206349207,0.22670214285714288,0.22670214285714288,0.5850777777777778,0.22670214285714288,0.22670214285714288,0.22670214285714288,0.5850777777777778,4.15487,7.597736666666666,3.547875,0.56869875,3.924195,7.386099999999999,3.32868,3.2305733333333335,1.1080216666666667,4.428565,5.65235,4.44336,4.56409,1.666458,4.83468,2.163133333333333,2.211948,3.737825,5.34565,0.8393328571428571,0.8393328571428571,3.47361,2.9292933333333333,1.816925,3.14871,2.80295,5.7287,5.05645,5.68635,5.6309,5.77705,2.478095,1.66414,4.007105,3.519285,2.289815,3.56513,3.175805,1.966395,1.1420533333333334,4.06323,3.19947,5.453203333333334,6.406361666666666,1.5846133333333334,3.879195,1.09903,2.55573,3.65155,4.21143,0.3720664285714285,3.961085,4.316225,0.941124,2.7800100000000003,7.595836666666667,4.40668,2.078495,5.894557,4.47224,3.71422,1.4854733333333332,5.844613333333333,3.0692633333333332,3.256073333333333,3.5350333333333332,1.87272,1.87272,5.87005,5.87005,3.4029214285714287,3.4029214285714287,8.21866,3.4029214285714287,3.4029214285714287,4.078099206349206,6.5486,3.430065,3.6422350000000003,2.976656666666667,4.047935,4.311195,3.3251233333333334,3.302773333333333,4.361775,3.3017566666666665,2.7128599999999996,3.11951,2.3323933333333335,2.664865,5.0132,7.62941,6.907575,4.46737,3.74123,4.004575,6.378636,4.96009,3.94464,4.061875,3.79592,2.1997833333333334,2.3523,2.05547,5.434,5.15245,4.89307,4.40347,2.3165733333333334,2.6887133333333337,7.226856666666667,1.9383299999999999,2.52716,3.3798666666666666,3.3798666666666666,3.204115,5.0196,0.7973633333333333,3.5113333333333334,3.9504,2.79717,10.3135025,4.38725,2.35269,2.403633333333333,5.43835,6.06675,3.052505,5.77975,2.56488,4.53747,2.984552857142857,4.7292,5.2245,4.815325,1.049,3.5902666666666665,1.08237125,2.5758533333333333,5.233591617647059,7.575473333333333,2.75656,2.8604299999999996,7.027036666666667,1.9216640000000003,4.65955,5.70095,3.638735,3.59666,2.272136666666667,4.82435,2.41644875,0.48820769230769234,5.3192,3.056915,3.5374,5.0651,4.89512,5.32125,7.0345225,4.793685,5.61545,7.11834,53.591133,4.194205,3.984085,4.655825,6.1744,4.58387,5.0183,4.297375,4.803515,1.9087075,4.203485,4.05868,4.381195,2.539955,4.867355,4.634855,1.638576,5.62905,6.71675,7.51052,5.71255,3.12039,4.94359,3.268545,3.25923,3.901445,4.24841,3.73258,6.80681,2.77805,1.0808914285714286,2.347955,0.5695319999999999,0.5695319999999999,3.51622,0.5695319999999999,2.523891857142857,2.523891857142857,3.192357857142857,4.482189,4.981436857142857,2.347955,4.594275833333334,2.780053333333333,1.4814383333333332,5.76165,2.08668,7.528761333333333,5.980063333333333,11.788476166666667,3.2817133333333337,2.7988033333333333,0.23249666666666666,1.830397,2.8053933333333334,0.8396725,1.73395,2.5614033333333333,1.8874475,2.838225,0.69976,28.058631249999998,2.0024075,0.7636830769230769,2.742093333333333,2.742093333333333,0.4302811111111111,1.688905,3.0498475000000003,1.311815,1.9271125,1.6218975,4.3399,2.842585,1.9499266666666666,2.2865033333333336,1.1393233333333332,2.0097475,1.6436583333333334,5.600056166666667,3.93381,7.112688333333334,2.399015,3.4136,1.0042133333333334,2.387345,4.781405,6.645,3.2866366666666664,2.2622933333333335,5.702719166666666,2.2575525,2.868306666666667,4.12124,1.0705266666666666,3.810233333333333,2.3911633333333335,5.89465,5.14895,6.29285,3.43474,4.17288,4.17288,5.3641,1.72039,5.6312,2.861916666666667,1.62186,4.06084,4.013185,5.6172485,4.92595,2.9914433333333332,2.3659866666666667,2.7314,1.1982285714285716,4.88808,1.05466125,5.459456666666666,4.70171,8.000526,4.633955,4.33451,4.18959,8.530483333333333,4.83754,5.00055,1.0830899999999999,0.7416,4.889315,5.0075,2.192615,3.30001,3.54231,4.398995,2.579965,4.77476,2.6123566666666664,5.08125,5.7116,4.960975,4.624545,4.73321,2.908245,7.0369505,3.405915,4.896725,3.31879,4.02862,5.797876904761905,0.5873771428571429,3.7274666666666665,1.77881,0.7291255555555556,4.3702,3.879965,1.0461025,2.006835,5.76014,4.637445,2.892475,2.73478,2.6374933333333335,5.3592,3.633205,1.6627116666666666,4.239975,2.66783,3.2146500000000002,4.52854,5.01785,3.0365808333333333,3.9773666666666667,3.7186,1.966226,7.3773,4.916525,3.90231,4.89028,2.3674125,3.95289,4.870155,2.475505,4.00248,10.8369,3.985415,4.654083333333333,4.79484,4.68418,2.5478,3.94299,4.212685,4.87684,3.11115,4.296065,1.646355,2.7120533333333334,3.429345,3.40605,5.27355,1.811186,4.290645,2.8985833333333333,5.1544,3.030886666666667,1.88439,4.163935,4.36242,1.0953825,3.30021,2.6966633333333334,4.606706666666667,1.5979160000000001,1.5735133333333333,1.1517075,4.258565,5.07485,6.1779825,3.9936849999999997,2.584685,2.338695,2.000125,1.935775,1.5602,5.1244,3.251325,1.89747,0.9869153846153846,20.730547673076924,3.07314,3.1665391666666665,4.264623333333334,4.378620512820513,1.29599,2.702627166666667,3.1937295454545453,1.164306,1.90268,4.0898,5.31165,3.860825,3.410645,5.29945,4.83141,7.31447,5.088911666666666,5.18435,3.72625,2.6338333333333335,3.980525,3.966515,3.8231,4.261395,2.125305,5.0438,8.8942,3.975365,3.38111,3.783015,0.56389125,3.3059433333333335,2.05255,2.2271325,4.332965,3.816955,4.879735,4.094645,2.82046,2.2135975,1.63891,0.938232,1.4228433333333335,1.2070833333333333,4.08981,4.000015,4.583535,4.786985,7.32911,2.5866333333333333,1.4165860000000001,2.3336033333333335,7.584733333333332,3.51958,3.08695,3.13543,5.0306,3.5168524999999997,3.69547,1.66188,4.757795,5.10135,4.140965,3.91368,3.619735,4.2233,4.7756,4.06609,4.4668,3.589815,2.08794,3.2190433333333335,3.42788,5.35775,2.929805,4.4376425,4.47115,2.943285,2.6073133333333334,2.32319,2.40206,2.542424333333333,2.542424333333333,1.9980566666666668,3.18276,2.3774866666666665,2.44509,2.05203,4.02236,2.3424866666666664,3.2408066666666664,2.681703333333333,1.7128966666666667,4.406485,2.919665,3.45331,1.88593,5.2494,5.44195,4.842483055555555,2.432125,2.23894,2.82534,2.132285,2.015785,2.74284,2.0261175,2.4039025,2.483,6.960877,4.342805,3.650955,0.611848125,4.543045,4.17638,4.1393,3.249115,3.83066,3.7790299999999997,6.182,4.548265,3.58995,2.740684642857143,2.230198,2.4577400000000003,1.6692019999999999,1.78567,1.5270519999999999,2.05326,1.88275,1.2321616666666666,4.156379142857143,0.6458592307692308,0.54546,2.1937,1.5297366666666665,1.489068,1.5104749999999998,2.3139651515151516,1.5278866666666666,1.748808,0.598155,173.17843148669468,0.5091213333333333,2.1087800000000003,1.024212,1.3102775,2.2115,1.559135,2.185685,2.45825,2.142545,7.0645,3.17626,3.5754085714285715,1.7146533333333334,2.9731,1.3131716666666666,1.3131716666666666,5.741092500000001,0.5067277777777778,2.22119,3.3148466666666665,3.123866666666667,0.7361654545454546,0.6592647058823529,1.3022560512820511,1.103809090909091,2.808475,4.097725,2.1980475,2.22654,2.394553333333333,4.498805277777778,1.0846388888888887,4.48911,3.59176,3.471235,6.87911,1.8510066666666667,3.188865,2.901445,4.108979,2.08091,3.326725,3.498895,3.331655,4.29268,2.97587,6.32551,2.210435,2.48366,3.21798,1.4614,2.63416,2.8782,2.79141,1.90138,1.463685,2.31888,3.93855,5.9866166666666665,2.85986,2.88036,1.461855,4.28867,3.3911,4.024266666666667,2.928205,25.140518736111115,2.5168673333333333,2.7238866666666666,2.8828033333333334,3.610666666666667,3.1596533333333334,5.93192,3.1648,2.6906266666666667,3.3376,3.5330333333333335,2.168946666666667,3.2715933333333336,3.1669133333333335,2.9808466666666664,1.7205000000000001,1.64129075,0.598562,2.2227633333333334,2.1644475,0.213935625,2.580146666666667,2.87328,0.213935625,0.213935625,1.9025189583333335,0.213935625,0.213935625,0.213935625,0.213935625,2.707516666666667,2.592093333333333,0.5896,3.3670764285714285,1.61839,2.0103999999999997,5.24655,4.3726225,6.2028575,2.1991375,4.928755,2.263075,3.12328,1.3720885714285715,5.793283333333333,2.774903333333333,5.9169075,0.9174416666666666,1.3140675,5.0265,4.76501,36.04167369180819,1.5926740000000001,1.32427,2.3051566666666665,2.3609225,0.9441090909090909,2.3551866666666665,2.2890633333333334,2.7792366666666664,1.99191,2.45691,1.6031633333333333,3.0355600000000003,2.5069266666666667,2.7406133333333336,2.67366,2.4242733333333333,4.22161,3.3481666666666663,1.2280842857142857,3.877945,4.10149,20.813092722222223,2.9726,3.287183333333333,2.7567733333333333,0.8747640000000001,3.2872339999999998,1.6850962222222223,3.2872339999999998,2.48435,2.6137833333333336,2.9797933333333333,1.7260725,2.022735,4.617125,4.000115,5.4063,4.319245,1.646926,5.45235,1.6819625,4.853105,4.106052238095238,5.09155,0.7921154545454545,2.21465,2.33291,3.000736,3.34158,1.04273125,3.471055,2.05842,2.1776666666666666,1.077928,1.077928,2.0051200000000002,3.2956866666666667,4.85976,29.87903,6.304410000000001,1.9032033333333331,3.5533766666666664,0.365146,6.8300125,4.671445,3.04456,3.211105,5.9024375000000004,4.00051,1.2556125,4.6328,1.237082,3.523215,5.18785,4.94795,2.09809,3.180235,4.39295,3.46744,3.4703465,3.736515,1.2902799999999999,2.6357695833333334,4.107975,4.4592825000000005,3.0124866666666663,2.9644999999999997,3.142556666666667,3.479545,3.97415,4.30203,4.071233333333333,1.62817,6.31245,2.54725,1.7738720000000001,4.13027,5.27193,4.065875,3.498405,0.794435,2.9641,3.45439,1.9735,4.676101666666667,2.816995,3.89923,2.9147366666666668,3.135946666666667,2.733655,3.3897333333333335,3.3630999999999998,3.426633333333333,5.02015,4.63014,5.12155,1.781085,4.22505,4.15893,1.840075,1.82322,1.7514425,4.186986666666667,4.72036,5.416544895833334,4.02029,3.538233333333333,4.606185,3.3528333333333333,1.4417483333333332,3.26103,3.00154,3.66067,4.35806,4.389505,4.263925,2.71288,1.936015,1.628845,1.52451,3.540395,2.387705,2.267225,3.232265,4.90159,1.51754,5.4575,1.3835785714285715,1.7180175,3.241385,2.89075,3.01146,3.559555,2.95799,1.55487,0.9683636315789474,3.460235,3.605553333333333,4.78214,8.512705,2.44544,3.115513333333333,1.5897266666666667,2.746863333333333,2.8831466666666667,1.0881983333333334,3.256326666666667,2.7563666666666666,3.075396666666667,3.8922666666666665,3.4154999999999998,6.736341666666666,3.1910000000000003,0.7575818181818181,1.88465,3.34298,3.24374,3.5354,3.649433333333333,2.818981,3.552255,3.150525,1.9925588571428572,3.908255,2.907616666666667,3.493445,2.017936666666667,4.27639,5.3114,4.647775,4.22937,4.67667,1.2839666666666667,4.54541,3.091393333333333,2.69487,4.792985,2.7585833333333336,3.3699999999999997,0.3653085714285714,0.3653085714285714,3.7729033333333333,5.2553,6.22245,3.04363,3.935105,3.61101,3.062935,5.068,4.80701,1.02971125,4.19512,2.8354766666666666,4.438053333333333,3.021293333333333,3.142389166666667,1.76983,3.3951935714285715,2.6966533333333333,2.796053333333333,2.774923333333333,2.815386666666667,2.0487433333333334,23.6192482585639,5.1931,4.326665,4.413535,3.379115,5.1611275,3.34847,4.79569,4.391195,4.02753,4.56067,4.175725,2.656423333333333,3.01717,3.3816333333333333,3.21908,2.68289,4.232495,3.52038,4.802462500000001,5.13445,4.03276,1.324492,1.52888,1.52888,4.821315,4.209345,2.6788399999999997,2.391383333333333,2.900256666666667,4.34378,3.764585,8.252663333333333,3.112413333333333,3.226483333333333,2.936351666666667,4.66954,1.6546983333333334,6.000265,2.4711133333333333,2.75785,1.6935575,4.047025,3.50613,6.55273,3.22905,2.4557,4.329915,4.229851333333333,1.5682925,2.6531533333333335,1.6639066666666666,8.19894,4.321595,6.817623333333334,2.3150675,4.266575,3.742545,3.9933,5.4504,3.5467999999999997,3.5467999999999997,2.10152,4.45351,5.11595,2.59083,6.576635714285715,1.8747675,6.09605,9.914638,3.5081,5.140319333333334,2.2219233333333333,1.919805,0.601556875,4.409625,2.65995,2.5139,4.126234999999999,2.4104675,2.526893333333333,3.96757,5.16185,4.567825,4.44292,5.01295,4.417545,2.4324575,1.0313636363636365,2.90801,3.16798,2.890216666666667,5.60285,3.962695,3.599295,3.131975,2.06368,4.028515,1.05356875,5.14055,0.9405833333333332,5.3421,3.26367,4.923805,5.01938,3.218385,3.311025,3.261086666666667,2.4794633333333334,4.204525,3.10657,2.494325,4.000485,4.78719,6.621115,4.37509,1.692815,3.57425,3.41312,5.357885,2.071865,2.071865,2.8287366666666665,2.376403333333333,2.5776733333333333,2.7391233333333336,0.89951,6.11645,4.035265,1.8517175,2.179795,2.571265,3.66791,2.696055,3.718,4.75721,5.8859,5.23575,5.97715,5.90555,1.376075,3.866455,1.0768833333333332,2.39787,4.404066666666666,2.468325,3.01701,3.15827,4.52431,3.266595,0.45173157894736843,4.55637,4.2118,4.81499,3.34981,4.87871,5.64095,4.383125,3.97767,1.747015,4.887385,2.106335,4.433866666666667,4.433866666666667,6.53995,5.54105,5.95525,5.21985,2.728335,1.6546983333333334,5.01695,2.257493333333333,1.60712,1.948965,4.223155,4.1738,4.601815,8.09457,1.6130950000000002,5.63595,1.3273483333333334,3.981245,6.2785,1.9621925,4.97601,2.7763000000000004,4.37639,3.470645,4.25142,3.307346666666667,4.28677,4.01821,6.36725,4.095445,3.91965,3.99475,5.6962,4.16181,4.557795,3.64173,4.268365,7.7511616666666665,3.458375,7.07491,3.134945,5.3149,6.501157272727273,5.0073,3.44179,2.15687,5.22075,4.13293,0.7719622222222222,8.63559,6.19805,4.88175,3.0283183333333334,5.01355,2.84314,1.857276,3.891025,1.1303983333333334,5.07225,3.09434,4.588535,5.3891,4.945455,4.15796,2.3167966666666664,4.43344,5.26775,1.346245,6.847756666666667,3.062885,3.961605,5.06705,3.96023,2.122395,4.608505,4.897055,4.82424,3.08314,4.211665,3.774295,5.78615,4.895085,3.673175,2.0146325,2.0146325,6.985096666666667,1.6136428571428572,5.3031,4.42529,5.55665,3.842215,3.70396,5.01035,3.906605,0.8349016666666667,0.8349016666666667,0.8349016666666667,3.56186,2.92707,3.91775,4.731983111111111,2.798535,1.4285583333333334,4.88448,2.186575,2.61522,4.120795,5.20275,1.548435,2.2313400000000003,5.56196,3.945505,2.70879,4.48886,1.56984,1.97562,3.2523466666666665,2.846395,5.75835,1.418548,1.6207799999999999,1.11557625,4.040015,3.35198,2.9504099999999998,3.03483,5.556,1.8150099999999998,2.289365,3.16791,1.6019571428571429,3.651755,3.68816,2.4323925,5.9498,5.6395,2.89846,4.822195,4.628305,3.58858,3.87827,4.365175,3.9636,6.46294,5.04,1.7162233333333334,1.7594833333333335,3.624355,4.68903,4.10136,3.83128,3.2419233333333337,4.40449,5.25255,5.02255,2.7213266666666667,5.29345,4.07135,5.2658,7.216455,4.837935,0.7373772727272727,4.064735,4.0214025,2.34315,4.28633,3.7664666666666666,5.91545,3.858675,3.96727,3.75103,4.10797,4.98357,4.653615,3.971335,4.572785,5.2302,4.188285,3.11191,2.80032,6.22912,4.82592,1.820248,3.31397,4.0815425,3.8288,5.026,4.51353,2.638456666666667,0.9226822222222223,4.383396969696969,7.494377500000001,3.910915,5.0676,3.540575,7.799558333333334,4.19217,3.4540333333333333,2.655066666666667,3.663945,1.976105,3.346605,4.512575,2.5466094999999997,4.202845,5.14805,1.38914,5.02805,0.7338928571428571,5.12495,4.42278,4.9898,4.76712,1.0300883333333333,1.72143,4.85554,1.91966,4.072025,0.5321666666666667,5.67625,3.128745,1.6081600000000003,6.2438025,6.7154,0.85852,1.624064,1.200958,1.200958,1.200958,2.1219333333333332,4.39778,4.156875,4.15223,3.366375,5.1848,4.0215,1.941038,4.130845,5.4082,0.29174634146341466,3.61357,4.812275,5.51395,40.832217348484846,5.4998225,4.44612,11.107707999999999,3.910345,4.262145,7.773501666666666,3.11703,4.528655,4.358015,4.91508,9.889334999999999,4.065875,2.46592,3.450665,5.44925,4.138495,3.956095,4.46336,2.272975,4.581515,4.66456,7.26499,4.516055,5.19595,2.3653225,4.089875,0.5247575,1.4272316666666667,3.71042,6.3339,2.90502,1.3027733333333333,1.3027733333333333,3.58506,3.80429,4.2648,2.655045,1.8810066666666667,3.81965,4.340825,1.8918425,3.0251300000000003,1.6792079999999998,1.8724699999999999,4.147835,4.4804,2.2569,4.605825,2.35837,2.18173,3.498925,3.53508,4.02859,3.757235,6.081652999999999,2.491703,3.937465,0.7647327272727273,0.6529066666666666,3.718505,2.119915,8.94308,3.4751666666666665,5.20365,1.6418175,4.425675,1.6407766666666666,4.23386,4.611985,2.73082,4.04286,5.51265,0.42094750000000003,0.42094750000000003,3.3844999999999996,3.4156666666666666,3.1672233333333337,3.82579,3.63064,5.09355,0.9459181818181818,10.020973333333334,9.51768,2.190555,5.0204275,4.85566,5.51775,3.42258,2.6663099999999997,2.0152,1.9140325,9.99567,2.2093475,2.7834233333333334,3.841786,5.37915,3.841786,2.628525,2.9365799999999997,2.9829233333333334,0.77998,5.404774166666667,3.07282,2.5216366666666667,4.16004,8.97301,10.02163,4.202765,3.97934,4.691575,6.981305,2.0031025,1.3947125,27.027645833333334,4.33594,4.150345,0.9420379999999999,4.809855,4.26314,4.31037,4.84556,4.93136,5.828013333333333,3.0271500000000002,2.0347666666666666,0.6954882352941176,0.7714108333333334,4.840155,4.513735,1.4683316666666668,4.72963,0.8707333333333334,3.5721000000000003,1.4547400000000001,4.18498,5.63555,1.9366,2.50248,2.53816,3.99766,2.781895,0.525733888888889,4.41022,3.63,2.6093866666666665,3.324225,5.3932,2.82886,4.332245,2.925765,4.815935,8.904916666666667,4.957185,6.85885,2.66285,2.63387,4.071765,4.4869674999999996,4.403705,4.434905,3.69362,4.740835,1.2987125,3.72440625,3.3142210714285714,0.772,1.52888,1.52888,5.0011,7.473275000000001,0.8587846153846154,5.1472,0.9307,2.9036633333333337,2.35405,2.643030681818182,6.72748,2.70609,1.1162999999999998,2.545173333333333,1.2658875,2.590126666666667,3.1048566666666666,3.145963333333333,3.168886666666667,2.5019933333333335,0.9307,4.398675,4.61429,5.668,2.74642,5.0856,2.24968,5.8075,4.73793,4.44625,3.0370066666666666,3.593045,2.2088625,1.3925725,4.176485,2.7937,4.47325,5.4226,1.7693819999999998,4.796755,2.509403333333333,6.396546666666667,3.47236,2.69268,0.9307,2.35041,3.09374,7.0329419444444445,2.4586366666666666,1.379766,2.4586366666666666,0.46064666666666665,1.1101839999999998,3.457565,3.923185,1.8686425,3.53592,3.739986,0.598411,0.598411,0.598411,7.041,1.588288,0.7475272727272727,35.72994374675324,1.8095577777777776,0.6751777777777778,2.6892475,0.6751777777777778,3.741065,1.946195,2.40562,2.6561266666666667,5.2522,4.216415,4.297015,2.7582,0.8935342857142857,4.370435,3.030466666666667,4.8396,1.0358485714285715,2.541625,2.541625,4.00973,4.960605,3.97587,5.0539499999999995,3.387085,4.55781,5.11955,1.8077480000000001,1.2100825,5.52645,6.45985,3.868225,0.658399,4.50976,4.21582,0.8990975,4.351165,2.741705,4.21336,4.088765,1.8359518181818182,1.8359518181818182,4.41006,3.42604,0.9353777777777778,2.99411,3.17266,4.07839,3.95059,4.586985,0.41300428571428577,0.29048823529411766,0.29048823529411766,0.29048823529411766,0.7034925210084034,0.61269,0.674123,0.29048823529411766,0.29048823529411766,7.804535,0.29048823529411766,0.7034925210084034,3.61064,1.27321,4.44607,1.1855383333333334,0.6721753846153846,0.8990975,2.55401,2.746675,4.00424,2.98179,0.29048823529411766,0.29048823529411766,4.475085,3.62665,4.330225,2.533885,3.692075,1.492146,3.81503,0.674123,0.674123,5.10255,3.179,2.7831,2.80701,4.22277,1.02948,0.7664853846153845,10.834610000000001,1.264675,4.47795,4.39186,5.2368,2.0486,0.41142695652173916,0.850415,3.058073333333333,3.28272,3.3425,4.68472,1.436972,6.368,4.11263,5.14396,4.517435,3.16084,3.0551333333333335,6.374786666666667,2.8762866666666667,5.1012,4.278935,4.2527566666666665,6.287915,0.6162733333333333,4.289845,3.1784533333333336,2.0222366666666667,0.8346711111111111,4.260895,5.71826,3.45356,2.52717,2.21097,5.1384,2.728765,2.90826,0.956908,0.46190846153846155,3.98294,0.41084533333333334,0.7764445454545453,3.93292,3.02279,4.35081,2.702485,5.9039,4.257275,6.4644966666666654,3.70083,4.057325,4.24129,1.5146325,5.3665475,1.8512160000000002,4.460065,2.4417525,6.215973333333333,2.97009,1.27081,4.409835,7.0415600000000005,6.478592916666666,3.2256666666666667,0.8242791666666666,2.69154,4.945555,3.986605,4.557105,4.482225,4.34783,4.54299,3.2825,4.15377,1.75411,2.237555,1.46305,3.827725,9.243034999999999,3.215905,3.615775,6.1416,2.754825,4.36767,2.739686666666667,3.2161589999999998,3.337205,5.79955,3.6086,3.65428,3.79284,5.20975,5.6213,5.7834,4.489233,4.989715,4.98954,3.41763,5.30395,8.012,0.9239344444444444,4.959145,4.20787,4.541225,5.09625,5.83345,2.57735,9.14967,2.46422,3.284955,5.588,3.782905,4.454115,2.15632,2.035085,2.8860799999999998,3.5704999999999996,2.0404966666666664,3.102786666666667,4.62563,4.58105,4.041055,3.460985,5.15176,3.373015,3.10442,3.8826425,5.38995,3.028225,5.448662833333334,4.05292,4.2405,4.0826,8.34187,3.90133,3.59511,4.606925,5.02195,3.65441,8.97371,1.2557033333333334,2.39056,3.91918,2.9119200000000003,2.9119200000000003,1.92786,8.273050000000001,0.9662055555555555,3.55962,0.8687825,2.289365,4.650705,4.527945,3.558045,3.99314,3.13574,3.455215,4.21691,3.725365,4.486525,2.82403,2.90861,4.4929,5.097230833333334,3.77711,4.87946,1.993324,1.6241320000000001,2.64284,5.59675,2.3368675,1.6501733333333333,1.97177,4.768565,5.0007,3.01555,3.40065,0.49768555555555555,2.368315,8.092645000000001,3.176495,1.5022466666666665,0.8824525,1.18062,1.97741,2.0374625,0.90369,2.0668666666666664,4.1869235,4.51378,5.2688,2.655753333333333,2.2530575,6.9875425,2.841325,1.9122216666666667,1.9122216666666667,1.9122216666666667,6.532583333333333,2.24095,3.77315,2.939945,0.492868,1.10819,2.163255,5.87598,0.453105,4.12644,3.8548233333333335,5.19725,3.0152883333333333,0.453105,3.0152883333333333,0.92608375,1.233082,5.914,4.56079,6.9529049999999994,4.024415,4.79384,3.81917,4.162935,5.25685,4.77599,6.2904,3.655545,3.31135,5.40575,4.5264,4.250455,4.367825,5.5349,1.4127483333333333,3.0016233333333333,1.06528625,2.23741,3.1646722222222223,1.4253722222222223,6.7009775000000005,5.357885,2.7499949999999997,4.34325,2.80341,4.96124,3.00849,4.480925,5.1638,9.612564166666667,5.9391,4.762645,2.3324975,2.851255,2.2041399999999998,0.56389125,2.2405415555555557,6.09675,5.0906,4.66982,4.67715,0.6160826666666667,2.0943975,1.4329275,4.384775,0.8109000000000001,6.621767500000001,2.0165525,1.0907875,1.0907875,3.7050319999999997,2.0372399999999997,3.5452666666666666,2.625015,4.80723,3.6436325,3.6436325,4.596345,5.906948333333333,2.751,2.48753,3.4606999999999997,3.97937,1.971554,2.759463333333333,5.73255,5.343,4.643015,4.29898,3.958243333333333,4.64738,3.672668333333333,3.12936,2.1674625,4.120625,5.1992,3.00299125,4.99096,5.9736,2.085026666666667,2.7814866666666664,6.53485,6.87925,1.467018,2.672525,2.321315,2.792476666666667,2.1383625,2.61365,2.5585305,1.1204444444444444,1.91753,2.4740825,2.242975,2.4544083333333333,2.4544083333333333,3.0151529999999998,2.9087,2.2455038461538464,2.64445,2.4256575,1.9813880000000001,1.5594320000000002,5.064,14.482008833333333,3.0844400000000003,3.7279,1.8694859999999998,1.8694859999999998,1.633515,1.633515,2.916846666666667,3.9154,2.901953333333333,1.89438,1.89438,3.6231000000000004,2.936033333333333,1.06064,1.4917,3.1093166666666665,3.1289466666666663,3.8521666666666667,2.637893809523809,3.3111599999999997,3.317043333333333,0.707008,2.71675,3.7163153333333327,7.357261666666666,5.09945,4.26231,4.380625,3.44611,4.64573,4.79022,3.0175666666666667,4.381515,1.4149883333333333,3.250173333333333,5.69365,5.30815,2.54827,1.4212516666666666,3.0076,2.68867,3.0562133333333334,1.556515,0.7369642857142857,3.407833333333333,5.128330833333333,4.84283,4.64621,4.826505,3.089066666666667,2.0859533333333333,3.271194166666667,2.59042,3.601266666666667,3.1641366666666664,3.5368,2.8135433333333335,3.2823233333333337,3.4082000000000003,2.813636666666667,5.0222,5.25865,5.278861666666667,5.278861666666667,3.332615,4.039765,3.718925,3.64827,2.77282,5.85665,3.43105,2.8239699999999996,6.36775,0.8797333333333334,5.19,4.582035,2.5284833333333334,4.7997966666666665,2.88922,1.7976999999999999,1.3581757142857143,2.15979,0.935716,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.5284485714285714,0.5284485714285714,1.13362,0.8158795833333333,1.6439480681818182,0.9227542857142856,0.9227542857142856,1.2571947348484849,0.38675333333333334,0.3940166666666667,1.771555,2.0187475,2.6357233333333334,2.545625,7.04529,3.0476500000000004,3.97927,3.956376666666667,4.349862,1.38952,4.855495,4.278225,4.57194,2.96036,1.479972,4.207055769230769,3.679475,4.95096,4.792805,3.090385,4.25803,4.19383,4.7309,1.211698,4.26086,4.812995,3.245105,2.4216466666666667,3.33745,2.54482,3.207855,3.750535,3.1611966666666667,5.1349,8.728215,3.76924,4.95026,4.63915,4.4610916666666665,2.6960766666666665,3.560725,1.2359157142857142,3.99354,3.31062,1.864698,1.0186525,2.86728,1.202235,0.5680146666666667,3.6676333333333333,4.224815,5.307643333333333,3.7185,2.396815,3.119735,4.82982,4.058566666666667,4.423585,2.56475,2.2451933333333334,4.344925,4.287815,4.28952,5.2011,4.394085,3.61771,5.06505,3.18525,4.755355,2.19665125,5.03255,5.19695,3.44934,4.043415,2.477055,3.70861,5.41905,4.405165,5.4214,5.28535,4.957305,2.62682,5.0691,4.81632,4.844905,2.594175,1.07996125,4.01507,5.1282,4.28992,4.73897,1.805835,4.43141,2.072615,5.16815,4.74282,4.830665,2.1789925,4.206185,4.90475,4.478665,2.7619066666666665,4.56377,5.16545,4.97591,3.738035,2.594175,2.310745,2.98179,4.593565,3.814275,4.298685,3.579755,5.3267,2.243665,7.34565,4.787045,4.37604,5.249313368055555,4.796835,5.1172,3.35634125,2.55122,2.55122,3.971725,3.817785,4.520805,2.256845,3.17247,0.9932075,2.8510333333333335,2.9609233333333336,2.643683333333333,3.3381666666666665,4.740505,2.9161333333333332,5.5474,2.8125466666666665,4.216685,4.57707,2.042785,4.15511,2.09059,3.1161933333333334,3.947055,0.9890760000000001,5.27855,4.69317,7.021599999999999,4.85449,5.3423,1.3593242857142855,4.57563,6.29165,8.54644,2.9372000000000003,3.4296333333333333,1.941084,0.856202,4.025595,1.0482542857142858,4.261085,4.54108,4.971885,3.25612,3.981055,1.2769957142857142,3.705445,3.661825,4.41116,4.153005,3.89325,4.045785,2.3212225,4.452555,4.98078,5.6385,4.823115,3.718795,0.4341966666666667,0.4341966666666667,0.4341966666666667,0.4341966666666667,5.41735,2.9388,6.28315,3.1547433333333337,5.37255,4.852415,3.534085,2.098085,2.5155133333333333,1.5453733333333333,5.2949,3.02862,4.098865,3.36394,3.39065,1.4717,1.1848425,4.50605,2.463675,6.070916666666666,3.80969,5.4502,2.25262,1.660545,0.9457200000000001,3.43125,4.93991,3.0463,2.3472625,8.18914,4.07019,3.46584,2.31222,0.429607,3.417195,2.71431,2.02651,1.77177,3.10174,3.464475,2.437205,3.247246666666667,2.97245,3.32772,4.62567,3.483825,4.571565,3.90934,5.678306666666666,0.6236113333333333,4.368325,5.4653,5.00825,4.88237,3.4893,5.5458,4.36537,4.42771,5.466215,5.6159,4.03478,4.370965,3.69747,4.30314,2.95653,8.86129,5.0416,4.163465,5.0357,4.950235,4.8267,3.42429,1.0977355555555555,5.92037,3.61034,5.33865,1.4315033333333333,4.11419,4.494935,6.749559999999999,4.74481,3.27033,2.2281400000000002,3.8783,1.711554,1.081495,4.14039,6.3995,1.93088,2.3005299999999997,3.012176666666667,3.576335,3.52677,3.657815,4.884465,2.5615033333333335,4.16565,4.120859,3.40243,3.6252,4.454565,2.74822,2.55473,2.144305,2.417873333333333,2.743036666666667,4.273,0.5311216666666666,2.556363333333333,4.272845,3.00344,3.6857,4.477255,5.7477,4.68531,16.90032933333333,2.639603333333333,3.8705,1.4191280000000002,0.8483799999999999,0.8483799999999999,0.8483799999999999,0.8483799999999999,0.8483799999999999,4.570855,4.699665,5.2069,9.142073,2.6924,2.6924,4.497945,4.643658333333334,1.371605,1.9753233333333335,4.23142,2.50765,2.1206425,2.1932775,2.990315,3.8310353333333333,2.10429,4.229115,0.8269357142857142,2.9146900000000002,3.1361933333333334,3.0655300000000003,1.5593866666666667,3.2371833333333337,2.1998333333333333,0.97034625,2.8337533333333336,2.8678966666666668,1.1448888888888888,2.4873499999999997,3.26525,2.1280366666666666,4.56194,2.6188,3.100983333333333,2.263265,2.77521,1.1442222222222223,2.6760966666666666,5.097688666666667,3.4958333333333336,1.07114375,2.8596133333333333,1.298325,2.6207333333333334,2.96181,4.6470899999999995,3.0104433333333334,2.59621,4.967759333333333,2.6739766666666664,2.092655,2.791283333333333,2.86643,2.06312,2.9248,3.4759333333333333,3.361166666666667,2.75529,3.216366666666667,2.743926666666667,2.4240425,3.7699930000000004,3.7699930000000004,2.95055,1.9777633333333335,1.8479999999999999,2.903396666666667,5.503036666666667,3.11971,1.9809733333333333,1.686685,3.196903333333333,4.336005,2.698206666666667,1.028856,2.6922693333333334,1.4688400000000001,2.357953333333333,2.1363933333333334,2.7988766666666667,2.1258266666666668,3.2299100000000003,1.272344,1.5760500000000002,1.49416,4.2199583333333335,2.5599966666666667,4.6394,1.0151211111111111,4.09208,4.394166666666666,2.410855,1.7136679999999997,1.6726,3.29576,24.445453932900435,7.21746,2.71941,3.915939166666667,2.3627333333333334,10.492679333333333,3.3453999999999997,1.0785775,2.824543333333333,2.309833333333333,2.0198266666666664,2.7056066666666667,2.72029,2.5802,0.935486,3.0134233333333333,2.5620933333333333,2.9907833333333333,2.597863333333333,2.82652,2.08996,2.22151,2.9529866666666664,2.52056,2.17751,1.626538,5.763548333333333,4.64826,2.3773225,2.88185,2.475956666666667,2.4152133333333334,8.283678333333334,2.0575233333333336,4.904855,2.1294325,1.7180575,7.26969,2.9961133333333336,2.8393866666666665,2.5663,1.717622,1.487103076923077,3.3405,3.2115333333333336,4.165675,1.45044,4.007266666666667,1.8294025,1.8294025,4.029225,3.852235,3.411307142857143,3.411307142857143,5.986000000000001,3.403295,0.40873499999999996,11.90259348901099,1.18318,0.9489571428571428,4.219060000000001,1.4504771794871796,1.8226425,5.990083333333334,3.773645,0.7793009090909091,2.0851966666666666,5.106333333333334,2.5791700000000004,3.979865,1.3737100000000002,5.54195,5.27965,5.0823,3.70433975,1.980162,2.5711933333333334,2.62663,2.5060533333333335,2.27284,5.1737166666666665,4.59748,4.851945,2.206465,4.70396,4.32348,3.0650333333333335,2.48046,4.83579,2.4595333333333333,8.445903333333334,7.256749999999999,2.2183325,2.193595,1.6704260000000002,4.673,4.673,3.8335000000000004,2.989036666666667,3.1243408333333336,4.98524,9.3496225,4.119965,2.5661,5.5128,4.24549,5.35855,2.0374600000000003,0.809395,1.3308783333333334,4.58112,4.82415,3.764333333333333,3.071353333333333,3.8384,2.393283333333333,3.55545,4.653145,3.34292,5.4492,3.156943333333333,3.6994833333333332,3.529833333333333,3.368933333333333,3.5865666666666667,6.21365,3.0232,5.55945,5.3371,3.4058,3.366175,3.366175,5.854,11.969305833333333,3.6137333333333337,5.8883275,7.217356666666666,3.532465,2.5341366666666665,3.9097,1.2630466666666667,3.858565,2.2255,3.0961933333333334,3.06999,3.2381766666666665,2.23294,2.45568,2.898516666666667,2.7735066666666666,3.098516666666667,3.0626933333333333,4.02482,2.5136866666666666,2.9562666666666666,4.1768,2.9142233333333336,2.7717266666666664,1.1573125,2.068745,3.204143333333333,2.5420700000000003,2.700613333333333,2.3808766666666665,3.6065666666666663,2.187143333333333,2.63169,2.78533,2.985803333333333,2.88102,3.1394966666666666,2.415366666666667,3.3023866666666666,2.8050800000000002,3.27249,2.6586933333333334,2.5656433333333335,2.3839099999999998,2.2993866666666665,2.60309,3.1539966666666666,3.29705,2.740625,2.0500275,2.0500275,0.7235916666666666,1.66188,4.432325,3.40252,2.716226666666667,2.23294,3.2707866666666665,1.3029428571428572,2.72472,0.6093139999999999,3.521933333333333,3.14902,3.25026,3.060753333333333,2.7603266666666664,2.7741566666666664,3.2981033333333336,2.784546666666667,3.3895666666666666,5.116126666666667,1.5971,2.3801366666666666,2.4507033333333332,1.8738366666666666,2.080616666666667,2.8013333333333335,2.9562566666666665,1.6945039999999998,2.6951933333333336,2.6226866666666666,2.7612799999999997,2.6467033333333334,2.7626266666666663,2.8676433333333335,3.232006666666667,1.41996,3.1373233333333332,2.392873333333333,3.5263000000000004,3.21949,1.95916,2.4917266666666666,3.6628333333333334,2.706353333333333,3.430266666666667,2.582193333333333,2.79425,4.716245,2.9046866666666666,2.04506,1.5128439999999999,3.28968,5.725246666666667,3.316596666666667,3.25618,2.8243500000000004,3.226573333333333,4.768835999999999,1.636776,1.2402777777777778,2.6887666666666665,1.9354166666666668,4.54375,3.191466666666667,3.21315,2.9295333333333335,3.1989900000000002,2.5115133333333333,3.0648133333333334,2.31081,1.6918440000000001,2.8346433333333336,3.4059,3.6718975,3.993165,3.8778,1.6707275,2.936475,3.08986,3.578245,2.3161733333333334,3.1958300000000004,3.9329666666666667,3.7654333333333336,1.3835475,5.706562,3.37324875,1.6024633333333334,3.129135,3.57697,3.20652,3.871445,1.8938580000000003,1.8938580000000003,3.3239933333333336,2.8831133333333336,2.98731,5.353,4.625895,4.572303333333333,1.4907299999999999,3.0031866666666667,2.6727166666666666,4.0033675,3.0661066666666668,4.558348666666667,2.835226666666667,2.3702166666666664,2.7812433333333337,3.4996,3.68658,1.6503640000000002,3.110473333333333,3.038985,2.3131575,5.29,1.3432066666666669,4.941385,4.16245,2.66833,3.57786,4.01857,1.629615,1.5768033333333333,2.3875,1.0885483333333335,2.076726904761905,1.93637,0.43414857142857144,4.224205,3.227465,4.613775,4.41627,2.96815,4.647936666666666,3.3073,3.10753,3.5886333333333336,2.58707,3.2400366666666667,3.06446,3.3201300000000002,2.2165233333333334,0.6834976923076923,2.3058033333333334,0.6999000000000001,2.0134666666666665,2.517043333333333,3.1663866666666665,3.1620333333333335,1.47991,1.3326125,3.69899,4.540015,3.353235,3.2706125000000004,3.196115,1.7238175,3.97908,6.947765555555556,3.56148,6.1987575,1.5096725,3.96711,1.703295,4.083095,3.4898,2.07085,3.90098,3.22973,4.06352,4.117355,2.22095,3.968915,6.5961425,5.21355,3.44844,2.955435,1.7578075,2.1149975,3.691215,3.52342,3.16742,3.467855,3.885195,3.39495,1.6273775,4.006325,3.19881,1.745225,4.1423125,0.9341750000000001,3.368445,1.6808975,4.13039,4.590751666666667,3.86485,2.648665,3.78235,3.579405,1.9877975,2.30904,3.817,2.12987,5.3169,4.123115,4.477225,2.321025,2.45004,4.178235,4.405225,2.721692,2.721692,5.646579666666666,3.420953,2.303395,2.937845,1.9813666666666665,2.733635,3.37751,3.7653141666666667,2.4114205,3.712545,0.97636,3.48038,2.987545,4.148595,2.79517,1.507445,1.52504,3.396905,6.110576,5.6589975,3.544,1.43164,3.632895,3.184915,0.8070616666666667,3.142425,1.14551,5.6126825,1.4222016666666668,3.482125,1.97638,1.47991,3.078235,2.872585,4.17635,6.837835,4.177925,4.3489024999999994,2.80123,3.53605,4.75549,3.96212,4.60116,4.49767,0.9264925,1.64129075,1.04272875,2.889465,2.206175,4.679325,1.04272875,4.57363,2.268515,1.546215,1.546215,1.745225,3.66162,4.322865,3.98128,1.756252,1.756252,0.9630716666666667,3.11692,2.03936,5.934975,4.255445,3.34727,2.8983166666666667,0.9667157142857142,3.585005,3.499835,4.32739,3.92042,4.00816,4.00816,3.654035,4.08653,2.008185,2.426735,0.9831244444444445,1.84392,3.48362,2.3074966666666668,3.677438333333334,3.677438333333334,3.11776,4.767315,4.78994,3.06341,3.55689,4.03927,2.712813333333333,4.553443333333333,2.56903,3.721465,9.06203,5.14435,2.63995,3.20675,3.14402,4.49389,3.34375,7.623704999999999,4.709776,4.58018,3.46724,3.807435,3.943785,4.56636,4.777315,2.19762,3.807275,6.300839999999999,2.56994,2.083514666666667,2.880705,3.38669,3.207355,4.623945,2.272136666666667,2.3078833333333333,2.72795,2.938405,2.338766666666667,6.895454,1.3222425,4.884543333333333,4.884543333333333,3.54857,3.589964166666667,2.90709,2.259916666666667,4.53841,4.003266,1.9412693333333335,3.99455,4.207335,3.422945,3.242715,2.895165,6.031878333333333,3.61042,5.0632,2.954545,4.330645,4.167105,3.682705,2.8831133333333336,1.8908133333333332,2.45952,4.166865,3.31854,3.1342583333333334,3.252955,5.7981549999999995,2.785385,1.940985,3.3405216666666666,2.32204,3.8394,2.60743,0.8070616666666667,3.142705,4.350885,3.90715,5.9522924999999995,3.191465,3.051465,3.1064233333333333,3.1064233333333333,3.5112216666666667,4.32751,3.757165,2.12161,6.6670875,2.177075,4.58391,3.92316,7.95324,2.81958,1.19282,3.26488,4.413715,0.587545,4.122795,3.098985,3.012915,2.87507,4.48556,2.15437,2.467435,8.75954,3.45852,3.019835,1.4222016666666668,3.608285,2.72247,2.3243287500000003,3.913865,5.16391,1.648,1.1260033333333335,1.0205733333333333,4.18853,3.628595,3.40125,3.3132075,3.3132075,1.6273775,2.28179,2.9129130555555554,0.8406155555555556,2.76385,1.0312125,1.6707275,3.360195,3.442575,2.64383,2.523675,2.5534333333333334,3.755545,3.721245,3.04327,3.321305,2.756835,4.4116,6.302315,4.072435,0.9008625,2.4917545,8.64564,4.617045,4.203065,1.0610025,4.666598333333333,1.3882533333333333,3.2370075,3.2370075,3.575775,8.447416666666667,0.9216166666666665,4.862805,4.624165,2.3744666666666667,4.033923333333333,4.10291,2.206885,9.475193666666666,1.9331675,2.36204,3.239675,1.6778899999999999,4.042371166666666,3.0494,3.33411,3.2859393333333333,2.79313,2.998505,1.163855,7.61467,4.220915,4.072885,4.43722,2.0027225,2.648665,3.8547599999999997,3.83759,0.6737330769230769,4.318485,4.3844,4.801065,2.05963,1.402596,4.270135,4.244295,7.68563,0.7106146153846153,0.7739575,0.7739575,1.7020066666666667,1.3519366666666668,1.390982,1.8412899999999999,4.868195,1.14774,0.8616028571428572,4.006075,3.47976,1.3813425,3.298885,4.638715,3.391535,0.713074,1.97034,9.81883,3.2361383333333333,3.47163,2.46342,1.345905,2.4815833333333335,2.75217,4.72402,4.418605,3.877655,0.8533285714285714,1.579798,0.9929,4.4813075,4.30585,4.066065,0.8406155555555556,1.8966919999999998,4.135715,2.1833760714285715,4.960769166666667,1.1379425,4.877555,0.7460783333333333,0.7460783333333333,0.7460783333333333,10.561589999999999,4.27443,1.0312125,3.83814,4.587515,3.247845,3.706205,3.944559166666667,2.974625,2.072833888888889,1.9945366666666666,0.713074,1.5201356666666666,0.5705655555555555,0.7662633333333333,1.3013266666666665,3.82423,3.86161,2.17751,7.534526666666666,5.035633333333333,0.5956766666666666,4.73755,5.40381,3.545785,4.58918,7.693495333333333,3.6969117857142857,5.035633333333333,4.383550333333334,2.5180266666666666,4.517215,3.63919,6.796519999999999,3.58751,0.429607,1.487838,4.04935,1.7424119999999998,1.1260033333333335,4.08274,2.33267,1.649485,3.0969,1.663682,4.47908,4.43146,4.30164,4.72172,6.30776,2.563925,3.86852,1.14551,2.23954,3.518675,3.267725,1.9412693333333335,4.13788,2.490435,4.77067,2.848465,2.280645,3.286496666666667,1.626802,3.68028,0.8406155555555556,2.059377,1.0205733333333333,1.53616,3.585565,1.3222425,1.3013266666666665,2.486485,2.813385,7.88709,0.8533285714285714,1.0610025,1.302018,3.725735,4.07191,1.302018,3.911985,2.23954,0.587545,0.8406155555555556,1.7020066666666667,1.14551,0.43414857142857144,1.638576,4.1549553333333336,2.3744666666666667,1.4255883333333335,2.925775,1.3835475,1.9331675,2.758725,1.9945366666666666,4.1475,2.758725,0.8070616666666667,2.6361790000000003,2.580225,0.0873190909090909,0.0873190909090909,0.0873190909090909,0.0873190909090909,0.0873190909090909,3.26378,2.7419466666666668,2.743703333333333,2.8577666666666666,5.0875,3.80929,1.7136679999999997,3.649435,3.516855,2.16028,5.16388375,2.925015,2.394295,2.430555,2.657445,4.623855,8.246346666666668,2.413675,2.31437,3.049065357142857,0.9830528571428572,1.3871566666666666,2.3862033333333335,2.1786533333333336,1.4641725,2.716333333333333,2.2817833333333333,2.743793333333333,2.7728099999999998,2.6862866666666663,3.783085,3.77696,2.5659566666666667,1.374986,4.02181,3.758485,1.4861566666666668,1.368342,1.368342,1.368342,3.533555,2.996923333333333,1.09161,2.4485966666666665,1.2726185714285714,4.37163,1.5557133333333333,6.718385,3.3132525,2.70497,3.1662920000000003,3.1662920000000003,5.3286966666666675,3.177505,4.63094,5.1998,2.1566675,3.2320166666666665 -GSM1946770,0.0,2.049015,2.049015,1.6546033333333332,3.99644,5.9748,2.377824342105263,1.83992,7.324865,4.355705,3.1580733333333337,2.614405,2.744995,3.32042,4.127585,1.772688,1.431086,5.0191,2.5688400000000002,2.2508075,4.4779,5.293559999999999,3.802495,1.974195,1.777936,3.899955,4.30196,4.306955,0.6601466666666667,1.6081791666666665,1.8359283333333334,1.5659575,1.598295,1.1138528571428572,0.6916141666666666,3.1043328571428574,1.5650675,1.7605,1.194245,2.10882,1.1024575,1.0892175,1.112652,1.414544,0.934634,0.9625920000000001,0.803354,1.188192857142857,1.599094,1.8693300000000002,1.503824,1.9245100000000002,1.7074159999999998,17.942946,0.376932,0.866574,1.119184,1.84876,1.386522,1.6618780000000002,1.0480542857142858,1.0480542857142858,1.0480542857142858,1.1818733333333333,0.9736980000000001,4.7200925,1.1536625,2.3315975,2.02932,2.2504425,0.9437089999999999,2.2440875,2.2423525,2.0558975,1.4953475,2.00692,1.60051,1.7206575,2.5680066666666668,3.623045,4.556575,4.967735,1.6004133333333332,4.49877,4.48939,4.34655,4.141235,1.0582225,7.32803,0.631025,0.631025,2.1994925,1.0280385714285714,16.58257,4.61921,5.22525,5.6284,4.228575,4.188245,5.15775,0.4467494444444444,2.342640416666667,1.8635375,2.3069175,4.51163,3.406065,1.48675,3.2858033333333334,3.4698666666666664,2.7632733333333337,3.6143666666666667,3.49433,4.69172,2.7924545,4.238025,2.9700366666666667,0.7031045454545454,1.66429,2.573175,4.92985,3.2667,0.517493125,3.539155,3.651275,0.73456875,4.581125,1.7077255844155845,2.327415,2.6427,2.0543625,3.62023,5.65575,3.462205,2.7312966666666667,3.170533333333333,3.0635933333333334,4.055065,2.8354533333333336,5.52315,3.435055,4.422835,3.147075,2.44222,3.648695,2.35086,6.952276666666666,3.588685,3.35464,5.83175,3.29385,4.51918,0.7981522222222223,9.383711904761906,3.656175,1.9483366666666668,1.7482633333333335,3.0441599999999998,2.66704,4.582305,5.52435,2.1756375,5.0482716666666665,2.96375,4.60766,2.1756375,2.787846666666667,4.4334,5.124258333333334,3.626885,8.818083333333334,3.616495,4.77531,3.059985,4.962545,4.47064,1.8042666666666667,8.20722,4.208155,4.06358,3.588805,3.45008,3.40962,2.354775,5.88286,2.34046,4.075395,4.003085,4.851365,4.539885,3.37057,1.4187433333333335,2.94108,2.96526,1.9898775,1.9898775,5.660414571428571,3.073055,1.9135466666666667,4.1707,4.434505,3.09616,1.5080083333333334,0.8347322222222222,6.71335,2.708635,6.61275,3.049775,3.98208,3.93207,3.055585,3.94143,3.693695,4.001425,4.086895,5.71445,2.949205,3.57272,9.051873333333333,4.339325,3.5017666666666667,3.041456666666667,2.7138333333333335,3.7575333333333334,4.194395,1.782815,2.50834,2.0532766666666666,1.7403220000000001,1.7391666666666667,2.7336533333333333,1.752105,1.893385,3.0581300000000002,2.7419533333333335,2.40638,2.7863333333333333,4.48939,3.7063,3.491305,3.384625,4.25677,1.255815,2.55992,2.9265314285714283,1.980056,2.621776666666667,2.246233333333333,3.4126666666666665,1.630084,1.4608666666666668,2.6456466666666665,0.67774,1.4928533333333334,0.5464944444444444,0.5464944444444444,1.5631199999999998,2.39583,2.2165,1.5353766666666668,1.6036966666666668,0.3270423076923077,2.76484,0.67774,1.2411666666666668,0.20475702702702703,1.5197200000000002,2.07606,3.4507666666666665,2.1051066666666665,2.22009,2.58169,2.34592,2.45706,2.586343333333333,2.3454200000000003,2.2630433333333335,2.68648,1.9678133333333332,2.78763,4.239495,0.7092849999999999,1.91876,2.601933333333333,1.8836899999999999,3.6424866666666667,1.5715059999999998,2.579396666666667,2.21694,4.272443333333333,2.0800733333333334,7.067444285714286,1.5735142857142856,2.8021933333333333,1.99772,1.9908575,3.22582,1.8422625,1.9663125,3.858365,2.5501,2.191185,3.765115,4.221845,4.325715,3.74032,2.392985,3.4504,4.43837,3.817785,3.912475,4.2013,4.548185,3.09427,4.330405,3.532305,0.89159375,4.78101,1.2889466666666667,4.57339,3.84038,5.788591,3.644925,4.298295,0.971825,2.294925,3.550555,4.16864,0.8309785714285713,1.1763438034188036,2.122317380952381,3.490942,5.2431475,5.596712999999999,2.1370825,3.025145,5.2123,0.33858642857142857,3.51866,2.59282,0.98568375,4.509525,2.12162,12.332635,1.217355,1.37364,1.9738833333333332,2.40349,2.0763407894736843,4.796020789473684,0.3899857894736842,1.6928166666666666,3.02848,1.1091275,3.7374666666666667,0.9786085714285714,4.999325,4.198135,2.17484,5.9798,5.53205,2.71505,1.1132571428571427,4.4004650000000005,4.67358,4.39424,0.8586263636363636,7.472251666666667,2.700196666666667,4.409735,2.6754033333333336,2.476503333333333,4.38899,2.3773033333333333,2.51401,2.1825366666666666,2.50639,3.148435,2.9982900000000003,0.362993125,3.994145,3.636085,3.82889,4.025755,4.492995,5.949362000000001,4.03021,1.7052275,5.4745,4.27306,4.45179,4.16083,1.1530099999999999,2.6181033333333334,3.1245666666666665,2.4448066666666666,16.142735000000002,3.419565,3.87858,4.196435,5.49735,2.63506,5.024820416666667,1.6694775,0.7886133333333334,2.61825,3.13653,3.541235,4.12041,6.376551666666667,2.87459,2.424865,2.193035,3.2613766666666666,4.5297,2.28605,0.38205684523809524,2.980291739130435,1.94374,1.14304375,0.5146777148033126,0.6472985843685299,0.38205684523809524,0.38205684523809524,0.38205684523809524,1.2079425,1.24856,1.06002,1.5341225,4.2601625,0.2141314705882353,10.940706834415584,3.4848666666666666,2.735193333333333,4.003375,4.01953,3.850265,2.27533,4.62128,3.8660496666666666,3.993945,3.79082,0.6701730769230768,3.386566666666667,4.206130769230769,0.5134278571428571,3.715425,2.5849033333333336,4.213415,0.5321663636363637,1.872035,4.62969,3.376335,1.76456,1.8946233333333333,1.7851100000000002,3.165626666666667,4.14338,3.09085,2.9799733333333336,5.5029,5.47605,4.72228,3.347933333333333,3.175235,6.502583333333334,3.5906333333333333,4.74796,0.4177890476190476,3.0137366666666665,3.759508333333333,1.9676266666666666,2.830595,2.834451666666667,5.528888333333333,0.612395,2.77025,4.197525,4.368065,1.0453985714285714,4.443115,2.803095,4.852175,3.1240433333333333,4.12446,3.569355,4.37889,1.1614983333333333,3.403765,2.82556,4.626,3.82635,4.086065,5.62475,4.4634,2.54365,5.13676,2.2361233333333335,2.657275,3.1089466666666667,2.5770166666666667,2.5284366666666664,2.2609333333333335,1.6978680000000002,1.6130233333333335,2.107346666666667,0.8209985714285715,1.46678,2.286236666666667,2.12901,3.0522833333333335,3.0507866666666668,2.5949266666666664,0.9400188888888888,4.725215,3.2888800000000002,5.451096666666667,2.6869466666666666,3.08615,2.996636666666667,1.5253516666666667,1.5253516666666667,2.429006753246753,2.429006753246753,3.1378803246753244,0.5074471428571429,1.9218433333333333,2.170596666666667,3.7777,2.2679438095238096,2.2679438095238096,2.2679438095238096,7.282048928571429,4.309372857142858,0.9502909090909092,2.6065,4.724425,2.3697575,4.628485,3.2711,2.439545,4.044905,3.07887,2.9957666666666665,1.1153025,2.0456566666666665,3.3047566666666666,2.3394133333333333,2.521053333333333,5.6862,4.108266666666666,3.833266666666667,4.9083733333333335,1.9874333333333334,2.5794533333333334,3.0899966666666665,1.0036222222222222,2.2007,4.665205333333334,7.848685000000001,1.523335,3.07328,4.291245,1.859238,1.8595075,1.8595075,0.95562875,4.749565,7.149900000000001,4.249715,5.081543,4.40077,1.7523,3.804775,2.862275,4.423385,4.90731,0.3607963157894737,3.044675,2.640965,3.675325,3.95094,1.7763760000000002,1.9760825,2.511475,4.184355,4.057055,3.15137,2.586195,1.348552,6.7364,5.1568,4.62439,3.440215,4.961105,4.47859,4.61271,3.647315,3.827725,2.0360825,1.0345942857142858,2.772215,4.14322,3.73168,5.8638075,5.504055,2.33236,1.6825233333333334,2.7464166666666667,2.7586633333333332,3.0151833333333333,0.6927307142857143,2.16734,3.702515,1.10566375,4.72463,3.26467,6.1320225,1.3486174242424243,1.3486174242424243,4.05833,3.806975,3.8932,5.56785,2.8283766666666668,2.3261533333333335,4.138265,3.2456,2.172295,3.3907000000000003,2.3823366666666668,4.20054,3.1471475,3.778395,4.53913,1.0789211111111112,2.588485,4.234865,4.23089,3.32269,2.5507066666666667,1.596195,0.8079066666666667,0.8079066666666667,0.8079066666666667,0.8079066666666667,1.583135,3.7277375,3.7277375,1.8001433333333334,6.866491666666667,2.960655,3.963775,3.13421,2.706075,4.60695,4.303765,4.97724,5.05445,1.779545,3.864055,3.510855,2.682645,3.28337,3.3186,2.72902,4.320735,1.882365,4.445535,1.72329,3.3393249999999997,3.104735,1.8265625,1.18724,2.847685,4.17035,1.256942,0.83275,3.57023,1.2234675,4.7936673333333335,4.394945,1.2598542857142856,3.651845,0.7939622222222222,2.618326666666667,2.55569,2.2555366666666665,2.707515,3.835515,2.8649366666666665,4.481235,5.42005,4.431725,4.076455,2.02628,1.2784842857142855,4.022265,4.76566,1.422345,1.422345,4.201415,0.2816466666666667,2.3969466666666666,0.2816466666666667,0.2816466666666667,0.2816466666666667,0.2816466666666667,5.07595,2.68042,2.911335,3.70669,3.1010000000000004,4.40375,2.37251,1.019535,1.019535,0.8565633333333333,0.8565633333333333,3.8412,2.302475,4.5314,1.5376969642857143,1.5376969642857143,4.76968,0.4898357142857143,2.3963,7.245235,4.6763,3.25725,2.99755,0.93168375,2.15935,1.96085,4.727455,4.27563,4.192945,3.94647,1.2650714285714284,2.88795,1.96424,7.86712,1.980405,4.54567,4.616775,2.99752,3.88529,6.09813,7.870945,3.89149,4.39011,4.37401,2.22624,3.17348,2.477255,2.318605,1.900425,3.86316,3.61693,5.918376666666666,6.51348,3.90114,1.2169066666666668,1.95249,3.699595,3.85701,2.1488175,4.321605,3.291245,4.656466666666667,1.8451466666666667,4.016033333333334,1.6677433333333334,6.32796,2.65266,2.38236,2.1496366666666664,2.51824,3.456633333333333,3.3579333333333334,3.15883,2.7655,3.150873333333333,2.24372,3.34453,3.069075,3.365055,0.37544,2.948635,3.850845,2.605025,5.36995,4.88596,4.49737,6.606362,4.62939,2.0986366666666667,4.121005,5.18345,1.5538216666666667,4.774325,5.7902,5.18675,4.27028,3.288465,5.5213,4.819345,3.75868,5.290047333333333,7.326397500000001,4.15008,1.1520183333333334,1.4562533333333334,2.430885,1.7482019999999998,4.40455,4.013275,4.7773425,2.5375133333333335,2.37038,2.758233333333333,2.4955700000000003,2.2852433333333333,0.9497300000000001,0.5002711764705882,3.85862,4.02424,3.6659666666666664,4.161355,2.959145,3.296393333333333,5.198361666666667,2.9948566666666667,0.5863570588235295,3.111365,5.46435,1.7845075,1.619748,3.78495,3.355105,2.5093799999999997,3.7171000000000003,3.969885,2.7727533333333336,2.4574166666666666,2.3313866666666665,2.3862033333333335,2.81293,4.478863333333333,5.122819166666667,6.3299121666666665,1.4029960000000001,5.06135,3.234919166666667,5.085654833333334,2.61143,3.06641,2.420745,1.6273833333333334,1.409315,1.409315,2.6795500000000003,2.387986666666667,2.7531133333333333,3.88019,1.7362939999999998,2.092275,2.1101,0.461121875,3.66068,0.5801958333333334,0.93042625,3.668415,3.85482,3.54504,1.7375275,4.173825,3.0118333333333336,0.7846357142857142,3.94435,3.759309523809524,3.06593,2.52932,5.08855,0.26115206896551724,2.187891,3.272465,1.565185,3.85171,6.6297,2.40107,1.48332,3.948675,3.957355,2.7987966666666666,2.7987966666666666,3.653225,2.81987,4.465835,5.618845,5.0288,0.9650233333333333,2.5362733333333334,2.4850966666666667,4.38316,4.939945,5.10395,4.704495,4.3468,3.708766666666667,3.7085000000000004,3.5966,4.020666666666666,2.9787233333333334,3.0005400000000004,0.5887407142857143,2.301045,2.4073725,3.669005,3.028473333333333,3.143273333333333,0.7624875000000001,2.923395,3.9541644999999996,4.148635,5.7389,4.852875,1.8443975,1.8443975,0.775293,3.10755,4.337135,3.694695,4.669252857142857,3.11002,4.629595,0.5785090909090909,3.21953,3.813975,4.19252,3.8298683333333337,0.8039128571428572,2.74906,3.946475,5.5196,3.93867,4.89666,2.950215,4.152375,1.45243,1.0134314285714285,2.7573733333333332,5.04665,4.33991,3.25994,1.4279633333333335,3.942235,2.63085,2.671175,2.718912888888889,2.963623333333333,4.510116666666667,3.075086666666667,1.753536,3.3371666666666666,1.5137182142857144,2.8765300000000003,2.56255,2.2869275,2.8486466666666668,2.7374533333333333,2.2162866666666665,2.7110733333333332,3.655135,3.026896666666667,3.3855423333333334,2.5029133333333333,1.87531,4.16256,2.99588,2.435096666666667,3.3855423333333334,2.103006666666667,0.7797418181818181,2.40841,0.9949766666666666,2.204785,1.6086775,0.9407,1.6003475,1.6174575,2.64936075,2.5502,4.478575,1.569055,4.55759,2.993673333333333,1.591194,2.470946666666667,2.54069,1.6246633333333333,2.7813199999999996,2.6155500000000003,2.000646818181818,1.522465,1.8200299999999998,3.6249000000000002,2.3426666666666667,2.9790688888888885,3.0877666666666665,2.950833333333333,3.6849333333333334,2.0668866666666665,4.102333333333333,3.551766666666667,3.7325,2.79123,3.513,3.6078666666666668,1.7977166666666669,9.529275,3.97198,4.18572,3.3949,2.781665,2.04139,4.086985,1.687526,4.031765,4.16539,1.398208,2.5509633333333332,1.1361166666666667,2.3578366666666666,1.6800533333333334,2.3819066666666666,5.0859000000000005,3.0923200000000004,3.65122,4.81279,0.7998025,1.389754,0.944011,3.64215,10.114241666666668,3.4504,6.6171,1.99727,5.1513,4.223295,2.4912625,4.872545,0.2926417647058824,0.8777999999999999,4.736735,4.35152,7.0591925,1.9645925,4.42468,5.71225,4.61302,4.636165,3.40514,4.31477,3.390925,5.8062499999999995,3.62749,3.10281,3.318295,2.3870633333333333,1.9640533333333332,1.4476918125,2.4790933333333336,4.060745,4.652075,1.579644,9.0539,2.0959733333333332,2.9177283333333333,1.0224259999999998,1.0224259999999998,7.065589583333333,3.05071,2.2435475,2.1468075,2.60475,2.1687866666666666,1.0791033333333333,3.5653775000000003,2.6386166666666666,0.6369728571428571,1.7523366666666667,3.3306319999999996,3.3306319999999996,1.2092433333333334,2.5351433333333335,2.28187,2.6373083333333334,1.4587175,1.8925933333333333,4.668704,2.56066,2.64135,1.2341325,1.2341325,3.65033,5.4812,4.156445,3.22005,3.65011,6.23624,3.095095,2.7294466666666666,3.022126666666667,4.26166,1.1831133333333332,3.134513333333333,2.61455,3.79107,2.23888,4.819935,3.53475,4.39876,3.640605,5.5858989999999995,0.9684155555555556,1.955625,2.18111,3.523055,4.207325,3.756765,3.61754,3.467875,2.44003,1.69987,4.28643,3.33995,3.177975,2.4251,0.86763,3.397425,4.128815,4.62921,1.25701,2.6933933333333333,2.4071266666666666,1.7295,1.8065666666666664,1.8065666666666664,1.2287366666666666,2.0890833333333334,1.0558,1.388608,4.301975,4.13638,0.48378095238095237,3.53236,3.2271366666666665,3.856605,4.99826,0.41966650000000005,9.281155,5.2708,2.70694,3.689275,4.472525,5.359137857142857,4.87706,6.72501,0.685610909090909,2.69692,5.22325,2.6702733333333337,1.5783275,2.04624,4.273425,5.08119375,2.405610357142857,3.1285066666666665,3.0355133333333337,1.8620325,4.19601,10.356535,7.998843750000001,3.7692,4.49128,3.0396691666666666,2.97955,3.967825,1.9237860000000002,2.9363833333333336,3.60432,4.75378,4.601225,5.78252,6.34413,2.0338533333333335,5.15485,4.547305,4.884325,4.515095,7.4855166666666655,3.99238,5.87115,3.51565,3.12627,3.042075,5.90425,3.76898,4.835495,2.114715,3.1025733333333334,3.308285,5.7616,4.175025,3.663655,1.5200900000000002,0.9241575,2.3558725,0.530296,3.85313,3.66934,3.56005,2.929675,2.098733333333333,2.96085,2.619225,3.2764480000000002,1.943024,3.03632625,2.88715,2.44805,2.621475,3.825334,1.2565016666666666,2.7380191666666667,4.815405,3.7251,1.011225,2.7200933333333333,3.729865,3.6356149999999996,1.52585,5.741,5.24955,1.9260466666666665,3.14892,30.2002169918317,3.20736,1.7419166666666666,3.962733333333333,1.56619,2.6088999999999998,2.91443,3.3485666666666667,1.98701,2.6361,1.8039125,3.947972,3.2697366666666667,2.38358,1.5150925,2.25528,2.859725,0.3825759090909091,1.2519475,2.743586666666667,1.6161940000000001,3.41268,1.52585,2.10588,25.23317872222222,4.819865,3.847355,3.54574,2.58115,2.470545,2.6068266666666666,2.3152775,3.428185,4.863241,5.3397,1.612066,1.731094,2.23879,2.30647,3.630574166666667,5.07905,4.489445,4.36038,0.17106021276595745,4.926945,4.9011675,3.93336,8.97706,1.0791075,1.0791075,2.8949933333333333,2.82619,5.4081,1.8385322222222222,0.9726944444444445,4.62855,1.998835,4.143575,3.90363,3.13251,3.99539,4.03645,4.44247,3.11656,0.7398355555555556,3.312975,2.2856566666666667,4.2446,7.816295,4.264915,1.8986866666666666,1.8986866666666666,6.6538375,4.555605,4.374665,5.52515,2.1374166666666667,4.968909166666666,1.33096,1.48883,2.9926666666666666,2.399366666666667,3.038355,2.717166666666667,3.98056,4.3577825,4.149855,5.65245,2.24856,2.643625,1.7900975,2.48617,2.4383425,2.0678675,2.1165025,4.5717575,1.8576275,3.4779752380952385,2.4117,2.9792733333333334,2.5734266666666668,2.09981,1.4859285714285715,0.9540810000000001,2.46222,3.8036999999999996,0.713936,4.515545,1.72527,5.882203333333334,1.92311,1.6504175,1.565215,1.62518,5.576347222222222,1.8138919999999998,3.0641533333333335,3.557033333333333,1.18516625,1.8228225,4.8822980000000005,3.2146233333333334,2.01411,3.519966666666667,2.749473333333333,2.856313333333333,1.31976875,0.28941916666666667,0.28941916666666667,0.28941916666666667,0.28941916666666667,0.28941916666666667,3.595965,2.72246,2.5143,3.1859800000000003,1.3396916666666667,2.6872133333333337,2.8949766666666665,2.35169,3.301245,3.044775,1.7488466666666669,2.86895,3.1709899999999998,2.0978525,1.9963375,3.959905,2.6858799999999996,3.77,5.07515,2.5485666666666664,2.5987,2.5185766666666667,10.752130833333332,4.450265,4.253345,4.76373,4.07147,2.934623333333333,5.1763,3.77248,4.21212,5.491341666666667,3.63092,3.14179,2.271965,3.33246,4.921110285714286,3.199585,16.85932641666667,1.063555,4.437825,0.8708911111111112,1.1607825,2.8757,4.675725,4.152895,4.65716,1.5328416666666669,2.27015,4.2201,2.00557,4.374745,3.065005357142857,2.8013600000000003,0.66547,2.89738,4.685585,2.310095,2.35105,2.132385,19.634340833333333,1.3228,1.2821375,2.5002366666666664,0.2813846153846154,1.7672225,2.732806666666667,2.03029,2.92989,2.754375,7.166294166666667,1.845535,2.526475,2.2955125,2.0964125,1.6199366666666668,3.1694666666666667,3.026115,3.4834,2.990016666666667,1.915575,2.5821145833333334,3.035610277777778,4.973125,0.42915,3.3585,3.039006666666667,3.03973,1.9311525,3.5046405000000003,3.606885,1.6594266666666666,2.3043466666666665,2.156146666666667,1.53847,1.8354166666666665,3.51972,3.318025,0.7950233333333333,3.399035,4.80203,3.956485,2.30659,2.30659,3.0096566666666664,4.18814,3.010605,3.420775,2.29087,0.9473272727272728,4.235325,3.57298,6.06295,4.058325,2.3706760000000004,2.3706760000000004,1.2828025,3.355795,4.998145,4.243765,4.2551,2.9462766666666664,2.2245466666666665,4.35228,3.44556,4.181065,2.7926333333333333,2.11685,4.12366,2.8611833333333334,2.70424,2.00893,3.320285,2.70605,1.7244733333333333,3.89817,3.189505,4.261695,3.4946,4.470845,4.290315,6.25700975,4.037215,2.06926,4.62026,2.492465,7.114694999999999,2.4665966666666668,1.1474566666666666,4.37617,3.651566666666667,4.504675,0.44390714285714283,0.7948375,3.577585,3.633695,1.972794393939394,4.250315,2.916315,3.228185,8.926252,1.796462,1.311938,3.580735,2.859995,3.385525,4.756325,6.669358333333333,3.178823333333333,2.1502966666666667,2.689166666666667,1.8463233333333333,3.1065666666666663,7.842557750410509,0.8514430952380954,1.041645,4.42003,0.44756,1.603495,1.9176575,2.8036,2.991075,2.82925,4.837745,2.19775,12.546434999999999,4.84638,2.4938475,2.4938475,4.274995,0.9094533333333333,4.474573333333334,3.856515,4.215725,5.924583333333333,3.571975,4.82587,1.3901883333333334,3.000855,2.6372,2.839865,3.208145,2.629405,3.31444,3.672985,3.71826,3.22238,2.939565,2.999485,4.155655,4.266315,2.8014799999999997,3.1649966666666667,4.717924166666667,4.28365,17.88092023809524,11.320947023809524,3.2798828571428573,0.68541,1.4364285714285714,4.50287,3.60004,2.970135064102564,1.770225,0.8134633333333334,0.6356975,0.69006,2.0170475,1.587086,5.2973550000000005,3.2623766666666665,0.7088763636363636,3.36071,2.42743,1.6535225,1.6391639999999998,6.240703333333333,1.5833679999999999,4.328635,2.859395,2.96498,2.637625,2.6551533333333333,2.6154966666666666,0.7126527272727272,2.713005,2.91637,3.932444,2.96754,4.9541450000000005,3.691475,3.280885,2.4353075,3.53511,5.8223475,1.85851,2.4219925,2.4629025,1.57988,2.58675,2.1443075,2.657225,0.87267,1.3558025,0.9866975,3.065615,4.42704,6.35455,5.31885,3.32389,2.292235,2.83375,3.2815766666666666,7.192876666666667,1.3603333333333334,0.369434375,2.766545,2.0766233333333335,1.479358,3.226928,1.0829280000000001,1.7370016666666666,3.806755,2.9318033333333333,1.2447833333333334,2.0435733333333332,3.9852133333333333,3.70994,4.30479,3.947575,1.940715,4.964555,3.913985,0.7616161538461538,4.688095,4.102295,4.232175416666666,3.2021766666666664,2.312875,1.266442,1.10505,3.527445,2.62212,3.431825,3.72187,2.77514,2.6952266666666667,3.43821,3.96808,4.22709,2.52638,2.963115,3.946975,5.53325,0.58044375,4.41846,1.74006,3.392685,3.9600000000000004,1.8274625,3.12302,2.1547175,2.20058,2.628825,2.3065583333333333,1.81545,4.603325,3.68794,1.1396685714285715,7.36114,1.0670166666666667,3.60958,1.81487,4.612475,4.045075,3.236333333333333,3.27892,4.31807,8.55767,3.070795,3.60652,3.467425,3.773685,1.69191,7.86865,3.650075,3.98281,1.703735,4.356015,3.16251,0.99986875,2.0217400000000003,4.192635,2.268535,4.239575,5.0329075,4.1177174999999995,4.55993,2.0948675,5.20115,3.85604,3.0464366666666667,2.30395,1.475106,4.255855,6.2757,4.144795,4.688255,3.275285,2.1244925,3.92702,3.25137,1.1737337912087913,4.12079,4.841543333333333,3.83558,2.74839,3.687005,0.5814957142857143,0.5814957142857143,4.537705,4.069365,3.75579,2.116445,3.82398,6.00535,0.841912,4.06073,4.70127,4.54476,4.82433,4.78285,1.8305625,3.18817,2.1831825,4.44589,0.66374375,3.935435,4.14148,2.81865,2.8531433333333336,4.156555,2.40773,3.326585,59.32278291991342,3.59791,2.68184,1.7861825,3.348125,4.068555,0.82017625,1.0060725,2.115475,2.115475,1.34721,3.19524,2.328325,3.685578,7.32836,2.7636800000000004,1.32227,1.3093633333333334,2.718913333333333,4.110083333333333,0.861934,1.993515,1.268814,1.8249575,3.93433,4.038025,3.215255,20.53625415800866,3.304235,4.094405,3.344285,2.2145633333333334,2.98021,3.438505,2.48797,6.0437,1.413996,3.937725,3.3519647936507937,5.7602376388888885,1.935475,2.681135,1.82899,4.13089,2.4276166666666668,2.2596625,2.0927533333333335,3.4737194444444444,3.35911,3.268455,3.812285,4.034825,2.486345,2.516645,3.1052,2.77467,3.1697094444444445,2.300075,1.969255,3.42025,1.2056449999999999,3.93473,4.509485,2.64559,4.6139,4.74714,5.101330000000001,2.125786666666667,2.415335,2.837955,2.649075,4.109765,3.47874,4.548455,0.7341028571428572,3.8526680000000004,3.00411,3.86168,2.29662,1.838778,4.134193333333333,1.1452666666666667,2.99686,4.323745,1.0883720000000001,3.75657,3.174945,4.52264,6.0779625,2.15055,3.03056,2.6051866666666665,3.8181666666666665,2.95547,2.797235333333333,3.01103,2.46719,2.470736666666667,1.38121,1.838655,1.838655,1.9556133333333332,2.2050666666666667,1.7706633333333333,2.62197,3.6565,5.31025,4.12484,1.7615,4.266285,3.927465,3.597205,4.41577,1.9815975,1.78867,4.64342,1.9431,4.398626666666667,3.649,3.630515,2.459896666666667,3.782848125,3.320305,3.130085,3.592,0.14832122448979593,2.23231,7.780950000000001,1.5208439999999999,3.510475,2.976505,1.022287142857143,1.1296983333333335,1.8806675,3.87436,2.907915,7.17938,3.736665,3.695035,2.959705,2.71999,3.42926,3.64098,4.031355,3.47958,2.8815899999999997,5.2354,4.036155,4.12332,2.457003333333333,2.0009975,3.607515,4.5768,2.838665,2.73651,2.342445,2.627265,4.23573,3.90979,2.790355,4.42429,5.1243,2.721375,3.587735,3.89257,3.64805,4.650365,3.77384,2.786725,5.92593,4.507585,5.19395,5.04445,4.38424,5.1188975,4.281355,4.262415,1.31301,6.56195,2.482355,3.97989,4.278905,3.932995,3.0675633333333336,2.0187466666666665,2.2669266666666665,2.50773,0.943568,3.3269133333333336,3.8605666666666667,3.1009533333333335,2.08351,3.841875,4.059045,2.4828633333333334,0.5372583333333333,4.64522,4.48036,4.915285,4.639635,3.613515,4.56084,4.750225,4.750165,1.3589555555555557,0.9241384615384616,2.7466866666666667,5.15315,5.8871,0.49697375,2.911505,2.510873333333333,3.227685,4.421245,3.8970333333333333,1.93331,5.54945,3.28761,4.28994,3.16604,6.34595,4.97187,6.7792525,0.5103941666666666,4.18189,0.787036,2.415525,4.010966666666667,3.1227066666666663,1.2197966666666666,2.2431,4.277915,3.567675,4.33313,1.7343166666666667,1.8965225,3.0746,4.42697,3.94674,3.798335,1.68983,1.1672175714285715,5.8383,2.1718375,7.6957125,4.19609,3.774095,2.080745,1.6224225,3.951,4.42853,1.88506,2.373375,2.417355,2.23231,6.5995,3.0854500000000002,2.79088,3.630839166666667,3.67706,1.94216,3.39418,6.947229999999999,4.42678,5.0868,0.5111172727272727,3.38847,3.8766,4.5870242857142856,3.693115,4.104425,3.098225,2.824935,3.27378,3.02275,3.4673696666666665,1.985808,5.3691379999999995,4.609215,4.92573,3.96388,3.34211,3.2476316666666665,2.2906,1.3567,0.9292025,2.86351,2.609805,1.0993950000000001,2.73189,5.14515,4.679505,3.81883,4.13139,16.570028214285713,4.05815,4.523405,3.828355,0.74178,4.8817,4.258405,3.936415,4.807855,4.936965,2.82054,3.46575,3.328355,1.432798,3.136005,4.63034,3.258843333333333,1.46976,3.68169,4.763275,3.819335,5.1149,4.899345,5.4993,3.980075,2.6709566666666666,4.01957,4.236265,2.823655,3.11063,2.9861299999999997,1.55752,4.709405,2.6762685714285714,2.0901566666666667,4.018115,2.47647,4.362805,4.16256,2.24593,2.733325,4.430065,3.768315,4.24762,4.3667,4.914935,4.791477,3.256345,5.41025,2.64265,3.644455,3.82417,1.562918,4.41109,1.0161383333333334,4.397235,2.83256,0.9063928571428572,3.90393,2.133965,6.314310000000001,2.4101796666666666,2.4101796666666666,2.4101796666666666,0.8218733333333333,1.1896216666666668,1.92804,3.54134,5.8035,3.2837783333333332,1.9555,2.138875,1.7670633333333334,3.8484,2.498105,0.39107538461538466,1.85711,2.273375,3.144785,1.957325,2.45857,2.45254,2.1127525,3.968575,2.7626899999999996,3.14503,2.90351,1.98869,6.42449,2.09778,4.2841,3.87748,6.390615,1.68346,3.71456,3.69693,3.819075,4.350445,2.586605,1.9497175,3.77152,5.8382404999999995,2.06305,3.648735,3.280405,1.8167425,4.648985,4.26228,2.6191166666666668,2.2751,3.580245,5.238293571428571,5.92925,3.145775,2.454245,2.71854,3.193255,2.84546,3.96361,1.3392,2.726385,4.60437,0.8779125,3.565035,3.932015,3.888975,3.330165,2.44988,3.191945,2.14278,4.54156,7.871995,4.193585,3.189155,3.05478,1.01168875,4.56267,2.382895,4.31565,5.44817,3.64173,4.109135,11.131835,4.66015,3.959335,1.46301,0.6913683333333333,2.76364,3.80492,3.449645,3.577455,2.1952966666666667,2.4308133333333335,2.2376666666666667,1.13682,1.13682,1.97895,2.4110533333333333,2.0420366666666667,2.2522466666666667,2.70339,2.2131833333333333,2.5293733333333335,2.79313,1.4206866666666667,2.4350033333333334,2.1428933333333333,2.018623333333333,1.4446525,2.45219,0.7275233333333334,9.47067375,0.7275233333333334,3.1898366666666664,2.009863333333333,2.14859,4.299875,4.30228,3.882935,3.92571,2.1913300000000002,3.0050266666666663,3.1939566666666668,1.9685,3.18674,2.88334,2.6214233333333334,2.6879633333333337,1.69017,5.34945,6.35381580952381,3.1687766666666666,3.3867666666666665,3.1869533333333333,2.62961,2.5460866666666666,1.1138528571428572,3.4621,3.474,3.793365,5.92815,4.22466,2.8642333333333334,3.3346999999999998,2.7621933333333337,4.133476666666667,4.281275,2.6108933333333333,3.240405,3.102743333333333,2.9075900000000003,4.57264,3.0395033333333337,3.544455,5.585138333333333,1.92153,2.36951,1.5782766666666666,1.60984,4.67562,3.502745,2.5401366666666667,2.2526966666666666,2.0755733333333333,4.40859,3.71947,2.695675,3.2596166666666666,3.095606666666667,3.341333333333333,3.435166666666667,3.3046366666666667,3.178506666666667,0.57971,3.7032666666666665,2.458413333333333,2.78598,3.483005,4.14126,3.97402,5.35015,2.701915,3.9680333333333335,1.1053283333333332,2.9164966666666667,2.9164966666666667,4.489315,2.77761,3.885415,4.34986,1.606585,3.41526,3.6766,1.2396542857142858,3.726375,3.196632952380952,2.3207986666666667,0.38420200000000004,4.662225,2.786835,6.66921,3.09987,5.95415,3.317305,3.843975,3.81971,1.6981445833333333,2.84947,4.00192,3.48772,3.12696,2.93329,5.37582,2.12296,1.00609,2.0353766666666666,1.7460233333333333,5.15841,2.332273333333333,2.45364,1.8294075,4.55009,4.023475,3.910875,0.5268309999999999,4.34933,3.92837,2.6570833333333335,2.4769799999999997,2.7220566666666666,3.089836388888889,4.06894,1.6293533333333334,0.6410210526315789,0.7623285714285714,3.3689666666666667,4.199985,6.167115,4.941695,4.43223,5.2164,1.3511471428571429,3.9600000000000004,2.27896,1.02135375,5.5448,5.91445,2.68238,4.81922,4.20478,6.6412933333333335,4.0222,6.506285,3.74957,2.5091365277777777,6.0107,10.171940615384615,2.4927333333333332,0.633856,3.080405,4.266575,2.31457,6.31225,3.779465,3.815475,2.6734333333333336,2.6734333333333336,5.8404,3.220085,3.955045,4.81446,3.6866986666666666,2.360604,1.07362375,4.848645,2.75773,5.17022875,3.476825,4.226905,2.76849,2.18591,4.318055,4.851435,3.4844666666666666,3.917225,4.419715,26.963545,1.836115,2.50535,2.36901,1.6808500000000002,2.538953333333333,0.89591,2.8794733333333333,3.1301066666666664,3.256256666666667,3.0148233333333336,0.6265646153846153,2.9730166666666666,3.598725,2.868485,3.0780333333333334,3.53512,5.7469075,4.650005,3.88026,3.781685,3.8456483333333336,3.789835,3.430566666666667,1.754505,0.973575,1.4721366666666666,2.3474233333333334,1.5850233333333332,2.9209866666666664,2.49307,2.407173333333333,2.225633333333333,2.696365,2.10877,1.80433,3.05899,4.2857,3.69001,4.001215,1.56926,3.2208,2.53207,3.65028,2.204266666666667,2.770735,2.241835,1.5477466666666666,4.087785,6.69453,2.823675,3.65625,4.06711,2.567525,3.424205,3.4814000000000003,3.46291,4.582225,0.34257094594594595,0.34257094594594595,4.612015,5.0081,3.115835,3.05666,5.3023,3.97979,0.6579138461538462,4.72591,4.19082,3.75266,6.35765,4.662735,7.33812,14.407133333333332,12.278827179487179,4.509895,4.38587,2.4611199999999998,0.5721638461538462,2.4215666666666666,4.14705,1.3062466666666668,4.47342,3.4913666666666665,2.7860866666666664,2.0952933333333332,2.05011,4.911385,4.60233,8.831560357142857,4.898355,4.19613,7.199712765151515,3.01912,3.111276666666667,1.4333125,5.432179166666667,1.9004125,2.54169,2.843053333333333,0.2562790625,3.202085,3.543285,4.470534166666667,0.731268,1.1624933333333334,3.990495,0.5845629999999999,0.5845629999999999,2.9817883333333333,3.153916666666667,3.204166666666667,3.762195,4.26537,5.4826,3.742885,4.24101,2.909275,3.1105933333333335,2.5954833333333336,0.8478833333333333,2.71251,2.91681,3.16232,7.021585,3.07261,9.312,3.05695,5.95935,3.252995,2.2753375,2.468265,2.6802,1.8898875,2.356175,1.8008725,3.46144,2.38531,4.057565,2.854465,4.2001349999999995,4.2001349999999995,2.7127758333333336,2.7127758333333336,8.701128166666667,2.47105,0.827803,2.5954333333333333,2.5574533333333336,2.57097,4.057565,1.925282,1.922526,1.522362,3.51124,3.71329,1.7240775,4.38928,4.219765,5.630343333333334,6.5523750000000005,2.13281,4.30381,6.0486,3.751115,3.025995,2.25402,3.284425,3.240236060606061,4.158825,5.126829166666667,7.43871,3.4055524999999998,3.01751,1.1622266666666665,4.25622,3.700562666666667,3.51401,3.6739750000000004,4.2434,2.545055,2.411376666666667,6.24327,2.79834,1.225664,5.18563,3.733155,2.6883533333333336,5.18565,2.6883533333333336,2.702765,3.322895,5.01635,1.0298142857142858,3.93476,4.20999,3.396085,1.2626283333333335,1.681805,3.756415,3.847495,2.57899,6.58609,4.12006,3.581155,4.010855,4.4491125,1.26438,3.7495,2.694585,3.601295,3.677655,3.56629,4.572825,3.14766,3.79103,4.64914,2.0027796666666666,1.8751675,3.127473333333333,3.5745,3.4531666666666667,2.5949833333333334,3.588533333333333,3.0478133333333335,5.5722,3.38576,3.398505,2.98966,1.8932933333333333,3.5341,2.118326666666667,3.03424,3.18333,3.190905,0.66374375,2.065045,1.8798666666666666,3.33819,1.8325559999999999,3.467869,4.12955,1.235786,3.1060974999999997,4.533345,0.93139,1.38476,3.24526,3.90515,3.30646,2.064235,1.6637199999999999,3.509035,2.528993333333333,1.7417666666666667,2.91627,1.956195,1.222536,1.4078075,6.168805,3.24562,2.226355,2.437625,2.405085,4.022715,0.91767625,0.3637428571428571,0.8163128571428572,4.651475,1.8016732857142856,4.713455,2.0503825,1.550575,2.8381675714285715,1.2875925714285714,1.108857,0.793942,0.6407785714285714,2.5945116666666665,6.38895,2.967245,3.6522,0.3188192857142857,3.515605,17.800138285714286,3.364545,6.787240272144522,1.0963525,1.0963525,1.0963525,1.0963525,5.76873,4.020675,4.206705,2.2717766666666668,3.184075,4.515415,5.6709,3.61808,3.51184,4.015215,3.890435,3.708745,3.753952,4.035355,4.679085,4.093835,4.389175,3.266745,4.177825,2.6652333333333336,3.55621,3.35163,3.457515,3.740395,3.98727,3.0049833333333336,2.3210575,2.53959,3.868955,1.19888,3.88666,2.4229266666666667,3.328096,4.1177174999999995,4.375785,3.185895,2.815585,4.35951,3.171805,3.20248,5.1298,4.74895,3.24881,3.15111,1.650668,1.650668,1.7708075,4.666005,3.729115,5.494323,5.14835,3.531295,6.4697,4.599465,1.9823775,9.260660000000001,5.36875,6.2316199999999995,4.46987,2.8133233333333334,2.82368,0.2624531034482759,0.868605,3.4403293333333336,3.69407,4.75362,2.9163366666666666,6.228275,4.985045,0.5847535714285714,2.854495,0.52141,1.7651214285714287,3.389605,2.861885,4.010075,3.652115,3.3004,3.445325,3.31926,3.70959,3.48752,3.65913,3.303685,2.28321,1.7651214285714287,2.88728,2.16822,3.6505,2.330945,4.14559,3.644735,1.69191,4.546835,2.75527,1.3070783333333333,4.643555,4.67817,4.321375,2.938686666666667,2.9323,3.958245,2.0501733333333334,1.434006,2.45364,2.62313,2.58218,2.2289966666666667,4.921525,3.422505,5.037630833333333,3.7639492857142858,4.73007,3.69064,1.604892,5.12375,4.11269,5.4851,4.132785,6.937135,2.0012375,4.7875,3.242505,3.22951,1.767715,1.8687333333333334,3.955725,4.35918,2.39236,2.6933808333333333,3.4087575,3.4087575,2.5991466666666665,3.06985,3.42696,4.00465,3.818275,0.7047269230769231,3.2205,4.471415,4.983052777777778,3.27219,3.08191,1.8400025,2.84008,3.63601,2.404275,4.31,3.027765,4.84048,1.7990233333333334,1.0201454545454547,5.97556,3.7038,3.047266666666667,3.0651233333333336,1.702842,30.001078595238095,3.91248,3.5204,5.7537,4.45898,0.87925,6.78439,1.7880325,5.65865,1.3832433333333334,4.18386,4.966481666666667,3.727595,3.240625,2.104385,3.4418666666666664,4.551455,1.9959575,2.7510933333333334,3.496645,2.971475,2.802915,5.86665,2.449735,6.0358,1.10906,4.32864,3.61935,3.989655,4.78566,3.00948,2.3042933333333333,4.10149,4.505605,3.8740224999999997,3.8740224999999997,5.7532,2.17584,4.371675,6.202306666666666,3.52122,4.12032,3.248155,4.840285,3.614735,4.250345,1.49813,2.246235,4.368365,4.488285,5.37155,4.339235,2.28042,9.138390000000001,3.092185,3.767885,1.6900571428571427,3.535495,2.3095133333333333,2.7213766666666666,2.0776075,1.2472133333333333,2.5711366666666664,0.9392957142857143,1.1823714285714286,1.1823714285714286,1.1823714285714286,1.8593933333333332,0.5752175,3.850025,1.1952533333333333,2.490136666666667,0.8854233333333333,1.7793133333333333,2.77535,2.01968,0.78827875,1.8266799999999999,1.4427133333333335,2.3857433333333335,1.676324,1.676324,1.6983066666666666,1.7871733333333333,0.9646459999999999,1.7540833333333332,1.6484833333333333,1.31454,2.30844,2.11104,5.92785,1.3114,5.6758,17.092269416666667,6.960585,3.47164,3.533505,3.279833333333333,2.748196666666667,2.7643533333333337,2.881353333333333,0.6892308333333333,0.962438,0.962438,0.6524375,2.226316666666667,3.501675,3.345365,1.4329560000000001,5.0412,3.85805,2.551805,3.968085,4.69637,3.872995,4.078045,3.5178,3.124115,3.453145,5.60325,3.1168099999999996,4.762805,0.534601,0.534601,2.444565,2.89577,4.663,3.482015,3.839295,4.60971,7.681594,7.197844999999999,3.562325,2.367085,4.469655,3.45112,2.37562,2.3166,3.89444,1.28732,3.779875,2.467575,1.5747375,3.5048333333333335,3.77078,2.1184275,5.126829166666667,1.5440125,3.4106,3.15031,1.0457785714285714,3.6202,2.825416666666667,4.32173,1.1530516666666666,1.738115,2.28619,2.0863075,1.73069,2.4663775,1.9468925,1.985495,4.093275,4.358515,2.486365,1.920555,1.5116100000000001,3.5129333333333332,2.04765,2.545925,4.61107,7.2779,2.2698316666666667,3.252825,3.44723,3.5485,2.49035,5.0002,3.970325,3.071345,1.3368125,4.46924,2.324475,3.186593333333333,2.632285,3.685585,4.99584,5.58115,2.1894,2.6384233333333333,2.8569433333333336,3.4712666666666667,1.9233500000000001,1.431638,5.27905,3.1827966666666665,2.2472003636363636,3.0088633333333337,2.8310600000000004,2.1705833333333335,3.0444,3.13617,3.4004666666666665,5.1878,4.327625,2.944323333333333,4.8411,3.31607,2.38647,3.63751,3.675355,3.95156,5.952465500000001,1.8000019999999999,3.893845,2.4042,3.658525,3.675655,0.60026,2.34052,2.392395,3.37728,2.783925,2.25562,2.807675,0.572014,2.72127,4.41914,2.447825,4.080145,2.3273466666666667,3.76173,1.8794575,4.390115,4.336045,2.00164,2.81608,6.75818,3.744645,4.21782,4.708325,6.764499772727273,4.054005,4.29326,2.1611,4.31824,3.132825,1.9848866666666665,2.0111175,2.1360933333333336,1.030417142857143,2.5591233333333334,2.3939066666666666,2.6142600000000003,3.3750999999999998,1.808894,3.28961,2.0369733333333335,4.25391,5.088735,1.041605,1.8750466666666668,2.5844766666666668,2.90617,1.9865199999999998,1.0835350000000001,5.458223333333334,2.14298,2.73794,2.6454233333333335,2.46832,2.7764733333333336,3.172985,2.33617,2.677826666666667,2.2202466666666667,4.089425,3.500995,4.029425,3.0501133333333335,3.030836666666667,0.6974440000000001,1.89161,2.1225025,2.0138233333333333,2.59836,1.19306,2.736613333333333,2.9868133333333335,3.8207,1.94433,3.497985,3.17505,4.915005,3.342765,0.6240966666666666,1.998592,2.6958300000000004,3.1527233333333338,0.7203627272727272,2.811123333333333,3.3498479999999997,3.4262,2.7771399999999997,3.3251099999999996,3.905295,3.8478666666666665,3.071476666666667,1.8553675,5.2917,4.81904,4.804925,5.3951,5.59185,1.8058366666666668,3.58152,3.5561666666666665,3.3409999999999997,2.7166633333333334,2.6429533333333333,3.755133333333333,3.5123333333333338,2.88709,13.394733333333333,4.34973,1.04927,2.7652933333333336,1.4578659999999999,3.24302,3.296996666666667,2.1828166666666666,5.85231,6.4546711666666665,2.2219700000000002,0.8889060000000001,4.205845,3.427466666666667,3.083075,4.785175,5.19805,5.30825,4.756805,3.61456,1.95194,6.5001225,1.1622266666666665,6.5057775,4.47021,2.04679,3.993415,7.056655,5.61535,2.2422999999999997,1.4522016666666666,1.99772,6.27197,1.52585,2.9263333333333335,2.4597516666666666,4.120205833333333,5.8583,4.420165,6.45205,3.4198,5.12355,4.272225,8.02171,4.724045,5.8163,2.5541,2.4077675,11.079273333333333,3.383925,2.67086,2.5283599999999997,1.8107933333333335,2.3628466666666665,3.26318,0.71439375,1.121302,1.0953,3.075545,6.836286666666666,3.0841086666666664,1.4661033333333335,4.40321,3.54187,0.604959,4.58433,3.990335,4.94213,3.54132,3.11879,2.75895,4.36403,10.000129999999999,1.7923325,3.88102,3.758755,4.195905,3.69194,0.7749575000000001,3.6582333333333334,3.904533333333333,1.8129,2.5294866666666667,2.3491033333333333,2.55796,1.8063900000000002,2.221573333333333,2.319395,5.862807142857142,5.09075,3.50243,5.048086666666666,1.6827766666666666,2.351605,4.529755,4.107195,4.48529,4.021515,4.46083,4.582755,1.650668,3.79584,7.400965000000001,1.276745,1.8057766666666666,2.4913933333333333,2.54622,2.9080100000000004,4.7986255,0.7623285714285714,2.40828,3.356025,6.33025,4.66789,2.2704666666666666,2.9158766666666662,2.04161,0.538328125,2.53395,2.98386,7.76009,4.49026,4.41949,0.883709,4.6494,9.034495083333333,10.246555,3.32598,1.15822375,3.625925,3.630575,2.5849066666666665,5.269723333333333,4.73205,3.84272,1.9555175,3.657766666666667,2.20394,2.5178966666666667,0.77103,0.37967066666666666,2.443185,3.445745,1.9469671666666666,3.58663,3.04958,4.346085,5.40855,1.540454,2.8984733333333335,2.0858875,2.0858875,2.38001,3.190335,6.62105,2.7153533333333333,2.3529533333333332,3.173166666666667,3.3535,4.345435,4.25296,4.14035,4.245525,4.04008,4.05964,7.019,8.04838,1.89606,2.37701,2.9139700000000004,0.9618733333333332,0.6691791666666668,4.37682,2.481235,5.18615,2.8985733333333332,3.00496,1.770506,1.5920225,3.684475,4.32914,4.343515,1.9491500000000002,1.2600966666666666,2.7642,1.99803,2.72801,1.1291971428571428,1.1291971428571428,2.8655633333333337,4.62339,3.024165,3.303555,3.57757,2.00381,20.054222075757576,4.18185,5.353455,4.191415,4.40628,3.33848,3.52125,5.5327,6.048115,0.8323433333333333,0.8323433333333333,0.8323433333333333,2.8072666666666666,1.6827857142857143,3.217836666666667,4.08168,4.032455,3.272565,4.148715,4.437925,0.8478144444444444,1.99711,2.1928533333333333,6.220978833333334,3.3418954999999997,4.343801333333333,5.05415,1.8274625,2.04829,2.3280833333333333,0.5282875,0.8048780000000001,1.917935,2.18028,3.22918,12.790981666666667,2.7007666666666665,5.31925,0.7177857142857142,9.0373825,5.3462,3.869745,3.903085,2.576175,5.2327,2.576175,2.741422,3.377195,3.84492,3.083375,3.92247,4.10473,3.61078,5.7425,6.684634000000001,1.83374,2.609952,2.836365,26.130345422136422,1.393168,6.362,4.00312,4.052195,4.431445,4.593905,2.81343,2.97002,2.16423,6.5659,7.0676,4.5347,4.523025,4.05905,1.7074825,1.67613,4.223715,0.48104384615384616,0.48104384615384616,0.48104384615384616,0.48104384615384616,4.208685,3.323576666666667,1.1078666666666666,1.8032033333333333,1.1725777777777777,4.554295,2.4672366666666665,2.2554725,7.0070466666666675,3.15361,0.18030689655172416,20.198910833333333,4.66567,1.79558,1.3419460714285714,2.141,1.9799900000000001,2.2079675,4.575275,3.01251,3.543,4.37641,2.1074100000000002,7.2069175,2.732675,2.075345,4.46186,5.6818,8.605916666666666,4.188335,0.29565121951219514,3.68488,3.83767,2.7376799999999997,2.00275,2.9140599999999997,1.6512650000000002,1.6512650000000002,4.19048,5.9383075000000005,10.90858,8.878275,0.5941222222222222,2.47118,3.839595,3.23688,4.737805,3.407845,1.349258,1.349258,3.168225,3.85995,2.6569433333333334,3.773875,4.524455,5.3222,6.612695,2.1457,5.04455,4.21852,2.66127,3.0352266666666665,3.08446,4.680015,3.927605,5.35605,3.97784,4.258915,3.632955,4.31228,4.232195,5.2053,2.59605,3.039403333333333,1.09063,4.19067,4.033795,3.598895,1.578238,1.8646166666666666,3.4903999999999997,2.894083333333333,2.3129833333333334,4.2452966666666665,1.6700833333333334,1.932235,2.19615,1.7267666666666666,2.2738633333333333,1.9098566666666665,4.028766666666667,3.0725766666666665,4.0612,3.3514549999999996,2.145916666666667,2.64413,2.0671500000000003,3.188315,1.9923,38.18586866666667,2.248800727272727,2.248800727272727,2.5755733333333333,2.46569,2.2825133333333336,1.74359,2.8654533333333334,1.59263,0.8131692307692308,4.996155,6.7627425,4.19692,4.009275,5.5702,1.8314333333333332,4.21302,1.811094,5.0405,4.560185,5.679,3.7552,1.754505,4.04488,4.280415,4.528945,4.725235,5.3599,4.16122,3.287186666666667,2.6724266666666665,1.9954275,1.886305,4.279935,2.66236,3.8942475,3.8942475,2.306626666666667,1.67619,2.09411,2.5115433333333335,2.2159366666666664,5.29044,2.52856,1.2216666666666667,1.2216666666666667,1.90517,2.0079066666666665,2.5266266666666666,2.61817,2.5714,2.439643333333333,2.2412566666666667,2.2436305,3.0325305,1.6183925000000001,0.7889,61.70558993055556,2.460604,3.2823933333333333,2.30246,0.894158,3.756312,1.5843120000000002,1.5843120000000002,2.64776,3.3592333333333335,0.8294925,3.1594866666666666,5.497946666666667,3.4900333333333333,2.4552833333333335,2.88866,2.050266666666667,2.6634553333333333,0.29031875,3.2970333333333333,0.891462,2.548766666666667,1.347148,1.347148,3.2783800000000003,1.8573080000000002,2.6690133333333335,1.513514,3.5767333333333333,1.513514,2.200883333333333,2.63665,3.0648866666666668,1.27146,1.27146,2.7197033333333334,1.4761733333333333,3.25169,2.1377866666666665,4.159325,3.763215,11.799133583333333,7.072267500000001,2.97233,2.60371,3.760955,5.11575,5.4929,2.6598541666666664,3.95606,3.912305,2.3107466666666667,4.104085,3.1758400000000004,2.8290466666666667,4.57208,2.209356666666667,1.027677142857143,3.6843558333333335,2.8967233333333335,3.001145,0.8392228571428572,2.50745,3.539145,4.17286,4.48505,6.46965,2.00557,1.8384019999999999,4.188955,4.32886,2.335825,2.6468033333333336,2.1114333333333333,2.2795613333333336,1.028028,4.983885,4.10524,3.54532,3.59124,2.970306666666667,4.8424,4.948395,2.6579633333333335,1.8705466666666668,0.513274,14.279370666666667,0.5508318181818181,0.5508318181818181,0.5508318181818181,3.0377466666666666,3.8543333333333334,0.5508318181818181,6.97925,4.47222,0.74173,0.74173,3.385033333333333,3.3441,3.06991,4.44985,5.0233,4.2194525,2.14269,5.040980666666667,3.31038,3.4308787499999998,5.19345,2.7987325,2.33709,2.3237275,2.73285,1.5943775,3.3183983333333336,3.0252166666666667,2.12819,2.0318225,1.8914525,1.77235,1.6372225,2.5683,1.0340366666666667,2.4317925,0.5704721428571429,5.141,1.7544525,0.6195508333333334,2.0843825,7.984635,2.76944,2.143339,3.3727324999999997,7.4222,2.659625,4.394265,3.129895,5.73209,3.325515,3.86183,3.94808,4.18019,2.9207300000000003,4.178381666666667,1.0802985714285716,4.129915,2.4782066666666664,2.6367,2.41631,2.460735,2.09042,1.21849,5.5629,0.9407,4.843375,5.37945,4.982885,5.28595,3.6296,2.3526766666666665,1.915866,2.691926666666667,2.8567466666666665,2.69793,3.8429,2.64955,4.729535,1.9675999999999998,39.33474880952381,4.745655,2.43979,2.21309,2.7087733333333333,1.5464633333333333,5.902533333333333,3.782335,2.37749,3.035296666666667,2.3640833333333333,1.6883475,5.2221,0.7849928571428572,4.194454285714286,1.2919857142857143,3.4263333333333335,3.165623333333333,2.4865733333333333,1.3348,4.361290666666667,1.647286,1.647286,2.2695933333333334,2.7355883333333333,3.3126266666666666,3.3430999999999997,1.5919666666666668,2.8136833333333335,2.762176666666667,6.209356166666667,2.78661,3.8507499999999997,1.4108599999999998,1.4623566666666665,2.81603,0.9207420000000001,5.048748333333334,3.1607333333333334,2.88845,3.5035333333333334,2.6083266666666667,2.7336766666666663,3.04289,1.7242333333333333,2.405085,2.4124266666666667,3.3472666666666666,2.4376,3.6681666666666666,1.9324766666666668,0.6236046666666667,9.744302115384615,2.7757133333333335,5.2475,4.941645,2.78926,3.0738566666666665,1.48598,2.25449,2.24532,1.48598,4.0285,0.481039375,0.481039375,1.135885,1.135885,0.9988175,0.9988175,2.8681,2.815025,2.52529,1.811985,1.643385,3.802415,3.099105,4.305975,5.37005,1.8815840000000001,4.35904,2.30138,4.445566923076923,1.699995,1.699995,1.62504,1.6477920000000001,3.4973633333333334,2.0188875,4.39177,1.5328416666666669,2.4911125,0.5523030769230769,1.0591514285714285,2.10808,2.0741975,1.8497125,1.316875,4.00013,3.937875,2.1931533333333335,2.46293,1.3579100000000002,0.6654375,2.3045766666666667,3.47467,2.85215,4.431,4.903515,4.864565,3.922875,6.622955,1.559175,5.89111,1.884635,4.541945,4.523105,5.711368,3.4463666666666666,2.379975,1.868945,1.96398,1.96398,2.500325,2.500325,4.18262,5.72695,0.955096,3.79428,3.14012,3.526185,2.379696666666667,1.418445,2.89812,4.17892,4.051635,1.706814,6.54135,4.870535,1.8130733333333333,1.302425,4.085805,3.9693533333333333,3.63456,3.613925,3.779115,0.6175285714285714,3.6191,3.279943333333333,2.68599,2.8407400000000003,2.2464933333333335,3.6587333333333336,1.5437714285714286,1.5437714285714286,1.5437714285714286,2.8884433333333335,3.0917766666666666,3.0821400000000003,3.281535023809524,2.156505,1.2037285714285715,3.00867,3.1499633333333334,1.373962857142857,2.67568,2.6458266666666668,1.2414299999999998,2.48753,2.8626733333333334,2.941326666666667,2.6093800000000003,2.46467,1.9331825,3.0945533333333333,4.461156,3.813945,0.966513,1.372542,0.547353,3.4631333333333334,8.682125,2.8577766666666666,3.38368,3.1969266666666667,4.401603333333333,1.97983,7.359138333333333,6.326136666666667,2.6317933333333334,2.1205502857142857,4.0892,4.838025,1.550106,1.217832,1.394978,2.125505,10.032483333333333,2.5625233333333335,2.9953866666666666,2.853516,3.8592,2.1154633333333335,1.068635,5.81365,1.0352166666666667,3.1862830769230768,4.6248,3.23742,3.224126666666667,3.02286,4.714765,1.2029216666666667,1.971665,1.9139416666666667,1.9139416666666667,3.820685,5.48575,9.4493025,4.261865,3.38094,4.691055,1.8625825,2.3607883333333333,4.51231,3.698795,3.716795,1.550135,2.9382366666666666,3.557385,3.76943,2.4475025,4.05378,3.76847,3.83409,4.283975,3.747545,3.814365,5.2798,3.2950933333333334,2.48396,4.28964,3.15838,3.90873,1.926035,2.538735,2.681465,5.84135,2.586285,3.2174413636363637,1.697135,2.497905,3.502055,2.15836,2.097755,0.8927133333333334,0.8927133333333334,1.804565,3.491368484848485,4.18671,2.7167733333333337,4.225035,2.8632600000000004,2.4933254285714286,0.95582,2.52033,1.555655,3.72545,4.164815,0.8952275000000001,1.8258175,3.87289,2.9952975000000004,1.6693625,1.61623,5.473062857142858,0.9191600000000001,2.77276,3.290055,2.80851,2.47285,2.803703,2.157505,1.057045,2.94207,3.103665,3.418165,1.4675466666666666,1.6233766666666665,1.82113,4.14183,2.0394,4.48362,4.45977,4.306975,5.9307,5.02585,4.145675,6.172269999999999,3.974904761904762,0.7928190909090909,3.09357,3.901455,3.808545,0.4594545454545455,0.96479,3.019425,4.09763,4.62427,4.029185,3.232919642857143,2.581095,4.32008,1.690096,2.46389,4.191265,4.1115525,3.205635,2.988655,3.526195,4.415065,2.96412,4.8528375,0.928937,3.280015,2.670535,4.0555,4.418755,4.504415,2.1807600000000003,2.522995,2.880735,2.0375366666666666,4.941475,3.386025,1.31813,2.515425,3.733965,1.503002,5.7865,1.8280319999999999,2.5546866666666666,13.443993347053532,2.8947533333333335,1.4919433333333334,1.66512,2.2512466666666664,5.500123333333333,1.68983,4.095099666666666,0.6804146153846153,3.3095966666666663,4.195095,7.44562,2.8064,2.750716666666667,2.750716666666667,4.55609,4.30091,3.519725,3.42186,4.829795,5.10195,2.44151,3.167726666666667,4.32872,1.2338066666666667,2.40437,4.386305,4.03544,2.80675,2.2772533333333334,3.60662,3.304865,6.055183333333334,6.2471575,0.646896,3.912855,3.373995,3.6558333333333333,4.318935,4.00518,3.91315,1.3178699999999999,4.93755,2.419005,2.78541,4.316815,4.249765,4.41677,0.8608332142857142,2.542196666666667,8.717101333333332,1.4809233333333334,2.175618181818182,2.2878225,4.052395,3.61119,3.34145,0.6581354545454545,2.2069275,1.69142,2.21102,4.23321,4.823994666666667,2.710378,9.15259,2.2029733333333334,2.6885733333333337,0.9985310000000001,4.35858,5.1594,2.20321,5.491341666666667,2.74932,3.28373,5.3202,4.126805,4.599505,2.213405,1.7916025,1.7916025,2.771015,3.37114,4.8122074999999995,1.5548075,5.868573333333334,1.5287866666666667,3.31815,1.2100033333333333,8.733308666666668,4.55816,2.773495,4.253165,3.75348,3.92299,1.2096233333333333,1.921505,3.4674333333333336,3.2579933333333333,3.17501,3.712066666666667,3.87387,2.94464,3.21837,3.25066,1.601455,2.60654,1.9405299999999999,2.9169433333333337,2.048783333333333,4.960698333333333,3.1529933333333333,1.8088433333333331,2.70506,3.396775,3.35606,6.28155,5.9809,3.03182,3.58822,2.87566,2.973225,2.914875,1.35496,0.903278,6.494300000000001,2.93255,5.56635,4.5489,6.3362,2.85128,2.8808733333333336,6.406,2.86763,0.39755,5.66225,2.65793,3.68496,3.3723666666666667,1.3238842857142856,4.032215,1.059442,4.4295,0.88969875,1.2207766666666666,2.90992,2.50388,2.7661285714285717,3.62326,4.466905,5.775035833333334,5.775035833333334,5.071055,5.071055,4.653515,2.7467699999999997,4.38911,0.9609825,5.74575,3.033095,3.517633333333333,4.00568,3.90686,4.134375,1.9008125,4.77469,3.195764,2.779145,4.250265,2.62832,4.83076,5.2356,3.79283,3.549005,5.103,3.82193,5.862,3.05028,2.509333333333333,5.92545,4.22168,2.943023333333333,6.3344000000000005,1.6140633333333334,2.0020525,4.88187,4.304675,5.0554,3.881215,2.074982,2.074982,12.671855261904762,12.0806,4.54033,3.413805,2.8603389743589744,4.20411,4.37375,2.6387566666666666,3.288043333333333,2.884205,3.8405,3.6450333333333336,4.883215,2.13304,8.271379999999999,2.60468,1.9111875,5.79715,2.27213,4.91059,4.451245,4.53196,0.7413855555555555,3.352615,3.60859,0.997634,2.912955,4.099566666666667,1.454234,1.83349,2.8605766666666668,2.661236666666667,2.27449,3.132233333333333,2.1511666666666667,0.39278428571428575,2.5108533333333334,2.77976,2.7432666666666665,3.1572366666666665,1.49018,3.0472300000000003,6.777521666666667,4.210075,2.3406933333333333,2.0058833333333332,2.65511,3.910005,2.22042,3.5215009999999998,18.3066325,5.78485,3.2975209999999997,4.66162,3.76774,5.625613333333334,1.7268033333333335,5.85015,1.4480933333333335,4.78322,3.30086,5.4382,4.95375,0.9756337368421053,6.5058,2.449755,4.658665,2.66494,4.26264,3.532235,2.92889,2.326566666666667,1.5255940000000001,1.9541525,4.185465,4.531595,2.12447,1.96548,3.04321,3.9533466666666666,2.8048066666666664,6.29975,1.99849,3.5327,4.53772,4.546445,3.92376,2.906985,3.753425,4.590815,3.826655,2.60474,2.60474,5.635930555555555,1.8758066666666666,2.523286666666667,3.79841,1.811306,7.646929999999999,3.60815,4.258736666666667,4.310233333333334,4.194755,1.859238,4.320205,5.54275,3.820795,2.0313675,3.41084,3.40481,1.082055,1.374915,1.3766566666666666,0.716675,1.6684400000000001,0.9567216666666667,4.702375,1.0344844444444443,2.4376166666666665,1.6926133333333333,1.7228875,1.03165,1.8997475,2.29101,1.459915,3.025923333333333,2.7107200000000002,4.64894,1.4581533333333334,2.5171,3.1319700000000004,2.806703333333333,2.3805,4.4247483333333335,4.649655,4.797361666666667,19.626209416666665,2.5993999999999997,2.2193925,0.6348830769230769,0.656728,3.9871266666666667,1.997356,4.01624,5.0465,6.985905666666666,3.698405,3.654245,4.289525,3.03214,3.1504433333333335,3.16305,3.7665666666666664,3.1290833333333334,6.39225,3.561085,0.916586,1.1147125,5.2014,3.1012799999999996,2.5037966666666667,2.099083333333333,2.2093866666666666,5.5112,4.815605,2.2897525,2.3916733333333333,3.31111,4.65406,8.305143333333334,4.764996875,4.22464,3.96419,5.30195,4.58839,4.147265,4.71216,3.82121,4.839475,2.28241,5.48925,1.519642857142857,4.974135,0.7373733333333334,4.75209,5.4225,6.0156,6.20345,4.299635,5.8746,5.5521,6.2299125,1.7616166666666666,1.5231857142857144,5.46935,3.509295,5.855264999999999,5.1196,5.545705833333333,5.06445,6.20605,1.2598542857142856,4.21753,5.1809,4.121333333333333,4.54693,5.3452,2.531725,4.11904,3.072315,4.13498,0.9932,1.6497516666666667,1.345926,4.76209,4.140045,3.333975,1.9620233333333335,2.8709933333333333,1.7283766666666667,2.17408,0.4379475,3.3759,1.522124,2.251056666666667,2.7408300000000003,2.3520266666666667,3.16508,2.625975,2.4317725,10.141343333333333,3.7643,1.7660157692307692,3.53032,0.8766109090909091,4.48122,1.162895,1.6311225,1.8650225,1.05487375,5.557366666666667,1.1819908333333333,1.1819908333333333,1.1819908333333333,2.9457866666666668,2.0082,4.94464,2.99065,1.4199425,1.56527,2.1521,1.29015,2.00482,5.0794508333333335,0.7823855555555556,4.063885,4.07082,2.89034,1.00554,2.198156,1.820265,1.820265,1.4520716666666666,3.6546358333333337,4.177755,5.164,5.6159,4.25162,5.20915,2.7599199999999997,2.00362,2.877095,5.0843,3.017385,3.86679,1.059265,3.9171933333333335,5.7133,1.957375,3.911955,3.0869733333333333,4.61776,4.52025,2.413125,6.899,6.33895,4.088865,4.33827,4.384975,3.33017,8.05708,4.07032,4.893105,3.43101,2.73807,5.19605,2.6925833333333333,5.5174,4.38968,2.749916666666667,3.31852,3.963375,1.4385833333333335,10.4773675,3.81559,3.173875,15.107457599206349,4.212955,1.8471033333333333,2.7251933333333334,2.123385,2.35753,3.13018,2.4951064583333333,2.97053,3.054395,3.03391,4.25308,6.103285,1.20021,1.88823,4.27097,4.326095,4.759715,2.2374425,0.5608660000000001,4.377415,4.31488,2.027235,1.3750733333333331,4.58073,4.296585,0.8705111111111111,3.86228,12.275816666666666,1.2486167142857143,0.37686571428571425,3.485666666666667,4.404818333333333,1.049688888888889,3.60964,4.097555,6.084975,1.32703,3.417935,3.81162,3.411165,4.380145,4.237475,3.95987,8.74846,3.25122,3.891485,5.3662,16.12432875,3.5809075,2.796625,1.1401425,2.03903,1.30027,2.189075,1.32678,2.028235,1.68172,2.040395,2.3768975,2.3620575,2.2021725,5.3826,4.230195,5.8856,3.39359,5.649921666666667,2.773626666666667,5.11795,3.4734,1.2663,3.657785,2.0727775,2.8219126666666665,4.39881,4.52689,4.728835,4.31476,3.321123333333333,3.7244333333333333,2.4858066666666665,3.15794,3.770495,2.344855,1.975365,3.4861,3.98872,2.913505,2.3731533333333332,12.443436666666667,0.697,2.729555,4.42421,2.412438,1.1107799999999999,2.77938,7.2127783333333335,7.09011,4.372605,3.758175,3.91178,1.990525,2.26336,2.8091576666666667,2.0442766666666667,3.7564866666666665,4.962625,4.3094,0.44364600000000004,6.08295,3.2188133333333333,3.0610733333333333,3.5263666666666666,6.0375,8.471813000000001,4.2966755,0.9813125,2.232355,2.557035,3.88505,2.74364,4.66078,4.40142,3.3747333333333334,2.6812133333333334,4.05276,4.019345,3.882945,4.1959333333333335,1.84867,3.16911,5.2472,5.49575,2.9230033333333334,1.5167,2.313353333333333,29.862971038461538,1.54617,1.54617,2.3862900000000002,5.117166666666667,3.70582,4.47426,2.8146,2.96924,4.50519,3.16005,4.27611,3.16005,3.55658,1.83972,1.6004133333333332,5.86805,2.665975,4.84741,3.24711,2.70561,6.330005,2.0195333333333334,4.506115,5.07555,3.660095,3.246855,4.800575,1.973084,4.97356,3.1471475,6.878438333333333,5.1302975,2.83825,3.690125,4.8791,2.155,2.5213300000000003,3.4163666666666668,0.42897857142857143,3.154363333333333,10.174183333333334,3.977165,3.59369,4.82896,3.2783308333333334,3.08708,1.3425585714285713,4.096915,5.4328,3.34963,2.29676,4.709955,3.40821,4.27865,4.391055,2.761075,2.761075,4.16873,2.807215,2.581330681818182,1.99014,4.6702,4.121195,0.9970857142857142,3.752045,4.685605,2.6681566666666665,6.7705725,7.68045,1.4983879999999998,4.221995,4.761405,6.488922,0.624434,7.6495766666666665,3.3034175,0.6124936363636363,5.0339,5.1868,4.681195,4.21471,4.65814,4.325465,5.0356,3.91871,3.756625,4.200905,5.14865,4.509555,4.506225,3.942295,2.63767,3.82607,3.709025,0.970262,4.189065,2.45711,1.698415,4.18329,4.39008,5.7488,1.0499514285714286,4.949168333333333,2.876175,2.74535,1.6753125,1.3111733333333333,11.397834166666666,2.2456466666666666,2.96806,1.9675900000000002,3.77474,5.456989999999999,5.9872483333333335,2.65301,2.02344,2.10552,2.10552,2.10552,1.5142366666666665,3.857365,4.063475,3.172825,4.60638,8.291205000000001,3.95142,1.261826,2.34211,3.14499,2.19515,1.6978680000000002,4.009375,2.91217,1.51389,3.0930733333333333,4.961417857142857,5.671262499999999,4.030325,4.10804,3.03083,4.911735,4.53082,5.356606666666667,1.6509675,1.6509675,4.30184,3.86517,2.530373,2.530373,3.68165,1.1211771428571429,4.87674,3.31797,4.262475,3.608785,3.82883,3.2579833333333332,0.98421,4.35859,5.0809,4.17882,4.55842,4.803185,4.73246,4.331555,1.8953925,1.5003475,3.547015,3.78111,3.40431,4.496935,2.258425,3.0194125,5.34775,2.975575,4.92111,7.0336549999999995,2.31933,2.9657150000000003,4.229663333333333,5.0482716666666665,1.5495225,2.1199102380952377,1.0374716666666666,2.1199102380952377,1.7407433333333333,1.7407433333333333,1.534752,4.939235,3.294935,3.813595,2.590845,3.992955,1.5358916666666669,5.34515,3.173675,1.76079,2.875966666666667,3.59311,3.714445,6.652665,4.68031,1.212282,0.7972283333333333,3.42045,6.9866616666666665,2.5555666666666665,3.62972,3.71836,3.71836,2.37455,3.42799,3.077495,1.382925844155844,2.942793333333333,3.190425,2.98963,4.19464,3.8817399999999997,1.64382,3.42655,4.354355,4.170205,5.03235,4.255525,1.6095025,2.058855,1.3045633333333333,2.121685,3.510275,1.87899,4.32064,3.1493966666666666,3.255725,4.26643,5.0368,1.277545,0.94177,1.8720966666666667,1.103775,1.174488888888889,4.990315,4.16404,1.09063,0.26524173913043475,0.26524173913043475,0.26524173913043475,3.400825,5.738673333333333,4.307685,5.3134,5.15965,5.3651,4.63802,4.62565,3.100295,3.717445,1.6558875,4.658125,4.050315,4.08652,4.202535,4.20465,0.6767372727272728,0.6767372727272728,0.6767372727272728,0.6767372727272728,1.03088,1.03088,4.112305,3.83726,3.547115,2.856465,2.75189,5.8584,4.86634,5.71995,4.357545,3.0501400000000003,2.530606666666667,9.91086,1.38888,1.38888,3.84307,5.26895,3.2871400000000004,0.481039375,0.481039375,0.481039375,0.481039375,0.481039375,0.481039375,4.603583333333333,4.835215,3.29751,4.388875,2.908765,2.908765,2.810845,3.134883666666666,2.43243,2.55042,3.28655,6.787093,1.423306,4.52199,3.369125,3.948155,8.541191666666666,2.1086966666666664,2.71994,0.9178514285714285,2.15552,4.880235,2.8664,0.85111375,2.74268,3.918135,5.47805,2.548475,4.6126876388888896,0.8347322222222222,1.9705233333333334,4.64985,4.82681,2.6808745,2.4363966666666665,2.1059666666666668,1.3191783333333333,6.684403333333334,3.21177,1.9614866666666666,3.112125,2.716076666666667,3.52714,3.970185,2.7992866666666667,3.117713333333333,5.9309,1.4430500000000002,4.322155,5.2981,3.44831,3.938025,1.9338933333333335,3.00432,3.85541,3.814375,2.76932,4.96208,4.710725,2.65392,1.9425824999999999,2.908136666666667,2.869213333333333,2.902483333333333,0.8001418181818182,2.19771,8.22682,0.45583,2.94251,1.5971066666666667,2.61834,3.1231899999999997,2.6366533333333333,1.2363888888888888,1.7516559999999999,2.758706666666667,2.1761675,3.725145,1.976786,2.5340599999999998,1.4580266666666668,3.176826,1.97501,1.1428357142857144,2.674136666666667,2.001405,2.41425,2.6863266666666665,3.0353100000000004,3.0670466666666667,3.239803333333333,2.9915266666666667,2.8706099999999997,2.974066666666667,2.7173266666666667,2.6432,1.7260499999999999,2.50663,2.563893333333333,1.6437333333333333,3.062326666666667,3.842052380952381,2.9786866666666665,2.4224799999999997,2.85951,3.4781999999999997,4.6228283333333335,2.92376,2.00491,2.00491,2.398225,1.199685,2.4124775,3.3339800000000004,4.55549625,2.7998,1.98442,2.03979,2.1545225,3.758245,3.02291,4.14927,3.52463,1.78876,2.124703333333333,4.330605,1.213028,1.213028,2.0706775,0.6506807692307692,2.3960178846153846,1.753385,1.753385,2.75733,2.49415,2.7732466666666666,2.6346783333333335,1.8633825,5.691506666666667,3.9998,3.9998,3.691565,3.109145,2.3827,3.12721,2.415295,2.969125,5.1904275,0.49781499999999995,0.684124,4.220175,2.780995,2.858975,6.549378333333333,3.684355,1.6206980000000002,4.90731,4.768095,4.019335,4.2419,5.3896,4.773315,13.43245,3.39441,1.6307666666666665,3.22013,4.09112,4.82442,2.86681,4.03951,3.81177,3.604995,3.80087,2.8619266666666667,2.905015,2.6605466666666664,2.5024933333333332,2.5024933333333332,4.086935,2.95478,3.00954,3.48031,2.51063,2.55371,2.1914625,1.92356,1.9881,1.98104,1.7262975,3.3084439999999997,3.61252,2.43575,6.707405,3.20521,2.345003333333333,1.9536533333333335,3.43866,3.920995,3.742715,3.0602389583333336,3.434775,3.02333,4.35905,3.550275,3.851205,4.02465,3.790555,3.676655,0.6602666666666667,0.6602666666666667,0.6602666666666667,3.67203,2.25248,5.37505,2.495795,3.80299,6.7420527777777775,2.70674,0.3466592307692308,5.4287,0.770005,4.343370952380953,2.079495,3.75425,2.041155,4.03836,5.397815,4.18888,4.00217,2.7279233333333335,2.6768199999999998,1.4791583333333334,2.6527,0.3874415789473684,0.5560694117647058,2.565516666666667,1.3848666666666667,1.887075,4.08269,2.763045,4.897085,2.7641299999999998,2.9707583333333334,3.48436,6.01897,1.6512525,0.8861657142857142,2.62706,3.6376299999999997,1.1738944155844155,4.92478,4.0053,3.58777,2.7417833333333337,4.2427,2.581296666666667,2.4634633333333333,2.3170699999999997,2.3697575,2.35019,2.26945,3.2142733333333333,2.2492033333333334,5.409650666666666,2.1025325,2.0260333333333334,2.1912166666666666,4.869363333333333,3.343082,3.343082,2.4309233333333333,4.020125,2.3506475,3.17074,2.94007,0.5712246666666666,4.387315,1.8686125,11.379201111111112,7.70344,2.977525,3.11655,3.48232,4.31249,2.855395,3.397735,0.2816466666666667,1.9066725,3.4546333333333332,0.7893816666666668,3.901805,1.2794985714285716,4.73849,3.169665,3.10318,3.509995,3.193005,2.355805,4.7322,3.82749,3.5771,6.91987,4.37917,2.876913333333333,3.030886666666667,1.621996,1.963175,4.24612,3.276855,3.7335025,2.695395,3.487555,1.348636,3.0866,2.57087,3.569715,10.181278333333333,3.80773,5.354981666666667,3.72351,4.090035,1.0052433333333335,4.548324,4.55838,2.5419933333333335,2.5430566666666667,2.62992,3.5671,2.472233333333333,1.78652,1.98015,4.074725,1.566406,2.62205,5.018058666666667,2.586856666666667,1.0551117857142858,1.0551117857142858,3.765765,2.97304,2.97304,3.375966666666667,2.987273333333333,3.33860358974359,3.8298,3.385733333333333,2.7750033333333337,2.4170333333333334,2.6155500000000003,3.2174266666666664,2.2609425,2.4732566666666664,1.651642,5.819477,8.542416166666666,0.5029069230769231,0.5029069230769231,0.5029069230769231,0.5839769230769231,0.5839769230769231,0.5029069230769231,3.00103,2.9806666666666666,4.2578499999999995,1.4077233333333332,1.8320925,3.376378,2.50427,3.02889,2.4389166666666666,2.9028166666666664,3.30196,6.1506783333333335,3.2037099999999996,2.56297,2.8676866666666663,4.63984,2.24269,3.3719333333333332,6.07637,2.4447233333333336,3.4418666666666664,1.3640316666666665,1.3640316666666665,2.7148066666666666,0.5105436842105263,2.43626,2.7375633333333336,2.855753333333333,3.2736966666666665,2.3008466666666667,1.5184066666666667,2.60368,2.807396666666667,2.38409,4.451295,2.335259333333333,3.497845,2.753545,3.3712,0.467823,7.355038333333333,2.96009,2.96009,7.562990833333333,1.8346666666666664,1.9125766666666666,3.2132166666666664,4.445225,2.526996666666667,1.9717366666666667,2.61809,1.4252,3.4035333333333333,1.78449,2.8286845,1.4170325,0.27528,0.27528,4.715745,3.86976,3.331415,2.60963,2.7355,3.31381,1.4280466666666667,5.22635,3.993615,3.15801,1.7960875,1.161795,2.60672,3.2132166666666664,2.73522,2.23092,6.08788,3.839855,4.371455,3.88835,2.49718,0.6818925,6.450772499999999,1.9894225,1.506425,3.28878,3.994585,2.243335,1.7272333333333334,4.453345,4.077585,3.0358733333333334,2.9679066666666665,4.03331,4.13227,3.6685666666666665,2.507432,2.507432,3.843615,4.718555,5.47505,6.00378,2.5764766666666667,3.848855,1.4435142857142857,2.570325,5.381682,3.85539,1.910682,5.2124,3.560745,3.35736,1.93577,4.170075,4.714645,4.50745,4.503155,2.369006666666667,2.58073,3.5993666666666666,2.0408566666666665,2.566125,2.70379,2.4850333333333334,0.6784410000000001,2.207545,2.8091566666666665,1.8154810000000001,4.430385,4.525955,4.62245,3.80573,3.0297,4.86191,11.67603,4.66107,3.75662,4.422655,3.999575,4.66078,2.4033,3.1131586666666666,3.4409666666666667,1.17778625,2.912815,3.107285,4.58549,5.38855,4.37631,3.4174333333333333,3.0116266666666665,2.2970366666666666,4.272566666666667,3.9590499999999995,3.5993333333333335,3.9590499999999995,2.1257135,2.3568666666666664,2.359135,2.0025175,2.59102,1.9065966666666665,0.8256766666666667,1.4033316666666666,1.9778799999999999,2.0149333333333335,1.73647,1.44701,1.8492033333333333,2.7247500000000002,1.525918,2.9110600000000004,1.25318,1.7302166666666665,2.563235,3.9165666666666668,2.4821666666666666,2.1683866666666667,2.335996666666667,3.31128,2.20901,2.7642433333333334,3.1687333333333334,2.495766666666667,3.03363,3.1466025,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,5.1039,3.00217,1.0117285714285713,3.0971733333333336,2.7424966666666664,2.8995233333333332,3.523385,3.1665033333333334,4.678955,3.2175,1.502172,3.021463333333333,1.6914833333333332,0.96587,0.9242900000000001,1.5926733333333332,0.9215233333333334,0.7906225,1.3465960000000001,3.27968,1.551324,1.582115,1.8103655555555558,2.2195727777777776,1.4779483333333332,1.2550116666666666,1.4784083333333333,0.9676733333333334,1.3080933333333333,0.77134,0.9370879999999999,3.366645,3.69273,4.27789,4.673165,4.07986,3.135706666666667,4.58475,3.3973999999999998,1.93331,3.584235,1.96085,3.62092,2.17701,0.7866718181818182,4.307365,4.678215,2.09013,1.380255,3.14193,3.344545,3.6546358333333337,2.9774433333333334,2.675985,0.89444625,2.2199675,4.882965,3.481925,2.538215,1.5246266666666666,3.902035,1.8636575,0.5822727272727273,4.481515,4.41188,4.063055,2.55273,1.506672,3.19567,4.367515,2.63311,2.6930533333333333,2.5201566666666664,2.6791066666666663,2.778216666666667,2.86964,3.026923333333333,1.23720125,2.508175,2.5053033333333334,5.11985,4.32901,3.919795,4.77568,16.158380125,3.9392050000000003,4.471811333333333,2.95798,4.021385,4.82664,1.493052,1.849875,2.28067,5.258839999999999,3.521405,3.37868,6.2649,2.28067,4.07204,2.22831,2.13876,2.9040266666666668,2.6380666666666666,1.2316749999999999,4.29049,3.48948,2.84165,4.37998,2.4292133333333332,3.2291733333333332,3.69863,3.452455,4.397995,3.74442,2.652175,3.475145,2.548335,2.5722733333333334,1.222526,1.222526,3.1485033333333337,2.360533333333333,0.37786785714285714,4.802186,0.9652419999999999,2.76656,3.708935,0.5926508333333333,4.31675,7.87407,1.8751675,3.753015,3.42473,2.6776966666666664,3.15912,2.244345,3.171065,3.753225,4.444085,3.141915,3.7532,0.9820333333333333,11.594753333333333,2.606355,2.82521,5.5953,2.707925,3.963155,7.749638333333333,4.188725,3.872265,3.868785,4.18312,5.240667500000001,1.6089975,2.68459,4.50852,3.8173333333333335,1.8789799999999999,3.83665,3.47663,3.810285,3.99459,3.82477,3.913945,2.5514416666666664,4.28227,3.67415,4.916835,3.29155,2.263803333333333,2.30443,1.8874266666666666,3.123086666666667,1.4014666666666666,3.6606666666666663,0.8415363636363636,3.15969,3.0205866666666665,2.6074966666666666,1.5609250000000001,4.080825,3.805655,4.26116,1.8925475,4.33121,3.85745,0.7315905128205128,0.34930384615384613,4.288655,5.4376,0.95111875,0.34930384615384613,4.297765,0.7315905128205128,0.7315905128205128,0.34930384615384613,5.821478333333333,2.5729233333333332,2.37458,5.35755,3.167345,3.35539,0.8573633333333333,3.40524,3.830095,4.66737,5.6795,2.146195,0.6924338461538462,4.357880833333333,1.9456333333333333,1.33362,1.9253375,1.035942857142857,2.410676666666667,2.1930833333333335,3.323775,4.74602,2.688216666666667,2.9754799999999997,2.7976733333333335,2.12816,2.87177,4.43311375,1.656805,1.9315725,4.063585,5.1269,2.0754029166666665,5.17765,2.489075,4.09256,4.272995,3.281975,1.206545,3.34193,6.6414,3.55533,3.397145,5.15545,6.31545,2.56757,3.072985,4.63466,3.388205,3.374195,8.43556,3.85869,4.843389999999999,2.576265,1.3493425,2.5913533333333336,1.715955,2.27443,2.090575,4.031945,0.6269171428571428,3.17515,4.00239,1.9317900000000001,2.975103333333333,4.92162,3.60208,2.805595,4.186585,4.884315,9.250183333333332,2.68652,2.3811233333333335,1.71074,1.4631033333333334,1.23001,1.49156,2.641103333333333,2.5768299999999997,2.9155433333333334,4.328175961538461,1.5108875,2.3132733333333335,4.836235,5.1639,3.598705,3.52191,3.02047,2.769415,2.164015,2.21812,1.81583,2.045165,3.100575,3.771515,4.817685,5.1913,3.62537,5.346723750000001,3.36924,2.721665,6.316069583333333,3.27004,8.877575,4.675949999999999,4.675949999999999,5.463338333333333,1.6195133333333331,1.377,1.40721,0.745838,4.84238,3.7498,3.4329199999999997,3.4329199999999997,2.1663799999999998,4.209205,4.40782,4.2476,4.006295,2.9220666666666664,2.60517,3.516435,3.01228,5.236314999999999,3.692195,0.7429863636363637,4.946545,4.96961,3.914965,4.81857,3.628815,6.1759,4.06611,0.8413769230769231,5.3494,6.952105,3.13849,5.71335,5.7559,3.505565,2.71715,3.81454,6.06615,2.0782675,5.9495,1.8789475,4.52521,2.4941866666666668,2.264895,0.928937,3.078495,5.77575,3.596615,3.716275,2.08534,4.977555,8.086606666666666,3.515385,4.40308,2.624325,2.575215,0.860021,4.51388,1.4826,3.4519866666666665,3.4519866666666665,3.80984,2.35934,2.916593333333333,3.55532,1.7107,2.609566666666667,3.2012866666666664,3.3281066666666668,3.04228,4.18265,3.03186,1.8439175,3.0791566666666665,2.04026,2.903226666666667,2.08773,2.9851766666666664,2.9175833333333334,1.3751942857142858,1.97813,0.47670666666666667,1.3334333333333335,0.47670666666666667,0.47670666666666667,1.97813,0.47670666666666667,3.4064333333333336,2.11735,2.11735,2.641793333333333,4.081195,3.82732,4.13975,5.2192,5.30025,3.550565,3.699795,3.85706,1.8023175,2.271558833333333,2.31285,0.8068945454545454,5.2891,2.9027133333333333,3.0431633333333337,5.6493,4.0575525,5.12975,3.562005,2.6264366666666668,3.156445,3.60292,2.66878,2.892886666666667,2.0941466666666666,5.2566,0.85066,3.549995,1.1386457142857143,3.716515,3.1167366666666667,2.7868,3.96697,3.97959,3.66041,4.18932,4.00999,3.59213,4.148015,4.18518,2.3493975,2.691825,3.2942666666666667,4.289665,2.833925,3.257755,2.70643,3.034745,3.11659,3.48246,4.74451,4.600905,3.997085,68.0101982488345,2.821425,3.70426,15.965180333333334,4.180815,3.0437433333333335,2.1376,1.9404133333333335,2.7151366666666665,4.2605375,2.9564133333333333,3.853299166666667,5.778,3.357455,7.081803333333333,5.2391,2.385555,3.33661,3.584235,3.52982,1.9017279999999999,1.1206275,4.81124,3.01618,6.150713333333334,3.5957,2.4088166666666666,3.456395,3.480215,4.523125,3.23243,5.791142499999999,4.348845,3.51699,3.054045,2.4750225,2.751345,6.0612,2.5295,3.66037,4.3970304166666665,1.279355,2.557035,5.427872499999999,3.308625,3.216735,3.649615,2.96815,3.94667,3.23885,3.233425,2.667975,4.677145,2.589835,2.683025,4.49509,9.547545,3.2489333333333335,4.121975,6.06906,3.40015,1.89885,4.16367875,2.16976,3.0131766666666664,3.022136,3.54465,3.430755,3.15572,2.95953,3.450665,4.054295,4.039725,4.2878,4.07894,3.19205,3.66815,2.6373083333333334,2.6373083333333334,7.06832,1.579195,3.19768,3.22392,2.49652,4.66221,4.258445,2.98785,3.27186,4.446965,6.203135,0.6622472727272727,3.92681,2.34183,2.90333,2.5132333333333334,5.17525,2.6759566666666665,2.00635,1.10906,2.093476515151515,4.20026,5.0176,3.811365,5.801,5.5322,5.7292,2.721275,2.0705833333333334,3.98885,2.72983,2.926213333333333,2.020096666666667,1.23867,2.55917,3.2336766666666663,1.583412,2.3900799999999998,2.422390571428571,3.368395274725275,2.813245,4.891385,3.350665,1.3909725,3.06714,3.50329,5.57315,4.71775,5.6704,4.69653,2.0242400000000003,1.5012733333333335,0.5904214285714285,1.58749,3.60038,2.739715,3.82735,1.5081300000000002,2.42959,2.364985,3.463635,3.600455,3.921935,4.058328333333334,1.6668625,1.41253,1.95436,2.065015,1.450275,2.5087,6.584931166666666,4.87484,3.32205,2.98653,6.644235,4.58176,3.1929,3.0914,3.54523,2.65512,3.85164,2.31703,7.66211,0.926635,3.03948,6.66015,4.0374,4.61064,6.31195,1.3982366666666666,2.9353933333333333,2.9733666666666667,2.77309,1.473555,4.096345,9.23487,2.903805,4.772015,4.000925,3.099395,4.759075,0.893125,2.82188,5.29835,6.070483333333333,5.2113,5.8341,2.881725,3.5291333333333337,2.2915733333333335,4.684835,4.795105,4.254482619047619,4.254482619047619,0.6163842857142857,3.4893666666666667,0.90292,0.9346133333333334,1.6807875,3.6781,3.4919000000000002,4.9961714285714285,2.73258,3.2598854285714287,3.1763114285714282,2.6162300000000003,3.067206666666667,4.580666666666667,3.4221041666666663,1.8810375,1.8810375,3.79625,3.0511366666666664,2.76064,3.445985,3.281546666666667,0.5611,3.0871099999999996,2.3756633333333332,2.4213033333333334,2.4022900000000003,2.50495,2.49234,3.02648,2.76164,0.799646,2.7053100000000003,6.678680714285714,2.0345,7.683031,1.6376300000000001,1.6376300000000001,3.351914,3.303903333333333,3.2338166666666663,2.6888966666666665,1.669712,1.287917142857143,3.2119466666666665,3.2922166666666666,1.4186316666666665,1.5364,2.8650266666666666,2.5599600000000002,2.6288833333333335,1.825955,1.9551075,2.56907,1.973015,2.92597,3.326385,1.7885,3.813705,3.29184,6.880835,3.428775,1.6957725,2.95319,2.59162,2.24323,4.11827,2.4726433333333335,2.797975,6.8041925,0.8359461538461539,0.7223866666666666,4.57625,1.4962,1.4962,3.667585,2.4169075,4.202655,3.290165,1.4225633333333334,2.384762666666667,2.9034366666666664,2.436761,5.00815,4.35678,2.5351766666666666,2.15558,1.423522142857143,1.423522142857143,2.1850833333333335,3.911745,3.9799,5.69065,3.053793333333333,4.9306,4.334435,6.79495,4.47122,2.38084,2.735196666666667,2.67356,2.609106666666667,0.7468877777777778,0.7468877777777778,0.7468877777777778,3.209765,4.432055,3.73272,1.1206625,1.1206625,5.11685,6.03035,6.27222,21.629122777777777,11.7823,7.77042,3.02168,5.8173,2.36705,4.35399,2.4891533333333333,3.19668,4.069066666666667,5.1873466666666666,2.22686,1.735095,6.29198,1.868828,1.868828,6.4143,3.19412,4.42624,1.7958925,4.685225333333333,4.360705,3.09682,4.912075,3.362855,1.9065966666666665,5.9479,9.206,1.9065966666666665,1.7958925,2.1472666666666664,0.852586,0.852586,1.7449020000000002,2.39742,1.7449020000000002,4.35456,5.69545,6.1051,9.07293,1.7958925,11.516202,6.07235,5.74135,2.36705,3.37502,4.362315,8.58474,3.1263316666666667,3.74434,5.7828,3.24483,4.606565,6.26835,4.44818,5.0102,5.0487,2.97745,4.69838,3.282465,4.43508,4.491655,0.81211125,1.522514,2.998485,5.38935,4.725105,2.586856666666667,2.0191725,4.085355,4.82502,5.6881,5.25025,5.2779,4.5749,3.460785,4.224085,3.782305,2.14585,5.00329,2.256135,2.71211,3.486555,1.7869366666666666,4.013205,4.162395,3.81266,5.24475,2.88814,6.479655,0.91658,3.49538,1.798255,1.1926742857142858,5.098457,1.334955,1.71872,2.3328533333333334,2.7364385,2.841763333333333,2.8023466666666668,1.6321325,0.725239090909091,2.047756666666667,2.584315,3.407495,0.6665176923076923,7.233383333333333,2.0736333333333334,1.2772700000000001,3.3449666666666666,1.2772700000000001,4.049135,0.9059272727272727,4.637915,3.0479933333333338,1.61182,4.385962,4.3299520000000005,4.3299520000000005,4.517965,2.4621975,3.0685366666666667,2.792533333333333,1.49018,3.877465,3.953895,2.156633333333333,0.7025575000000001,6.890327692307692,3.00883,4.07739,4.209465,7.54493,2.2004275,4.149645,3.95067,3.20224,3.68357,5.463,6.315195,4.41905,4.606895,5.2084,2.920436666666667,4.91167,4.17139,4.402555,1.0190844444444445,0.47546214285714283,3.320685,3.424533333333333,2.8257933333333334,5.307,3.857,4.202805,4.10537,5.11225,4.225535,4.13459,1.1622999999999999,2.33498,7.938528333333334,2.16247,2.0025133333333334,3.495230952380952,10.991872261904764,1.555305,4.557125,6.46135,4.88657,3.336866666666667,2.19943,3.24384,3.68178,1.0879033333333334,2.8587666666666665,3.396725,0.33504263157894737,2.06194,4.300135,4.21331,2.44194,4.181395,2.859325,5.224525833333334,1.3082533333333333,0.558339090909091,3.9162725000000003,1.0498800000000001,1.0007825,1.0007825,1.0007825,1.0007825,1.5643633333333333,2.5088066666666666,1.93126,3.2720000000000002,5.099,3.5436666666666667,5.20855,3.58689,4.46023,3.545555,3.969885,1.4262933333333334,6.35985,2.200925,4.434475,5.312283333333333,5.15175,4.973191666666667,2.3675833333333336,2.137026666666667,2.6555066666666667,3.22465,1.2682200000000001,4.446041666666667,2.696676666666667,4.866985,2.8003733333333334,2.447173333333333,3.84801,3.481795,2.9649,2.5219333333333336,2.8468033333333334,1.53687,0.3969522222222222,3.89412,3.081095,4.146975,3.65618,3.70991,5.49405,4.25329,0.5515253846153846,2.939592,6.80994,2.07641,1.793938,5.3968066666666665,5.208,2.57774,4.419205,4.933705,4.198795,3.820475,4.109875,5.28755,5.54635,4.937835,3.604305,5.1317900000000005,1.446212,1.5489916666666668,4.13079,3.929835,3.949485,3.329455,5.1785,4.64213,3.96887,3.35507,15.19602642924429,1.2806075735687534,1.11817,1.8428027272727272,0.509825625,0.450258,1.4288625,0.3429,1.349764,3.2672133333333337,1.873866,0.9358,1.0460704166666666,0.49102666666666667,1.0460704166666666,1.0460704166666666,0.49102666666666667,0.8512923076923078,0.5524085714285715,2.597205,2.693706666666667,4.886135,3.46451,2.8353699999999997,2.710225,4.01919,4.481045,4.98825,2.739915,4.00295,0.6842528571428571,2.4406939999999997,8.023960833333334,4.31616,6.635253333333333,2.964645,4.11067,2.35898,5.01285,5.33715,3.51833,4.406635,2.74301,1.0841399999999999,4.23009,4.632975,1.068904,1.218516,1.5047483333333334,2.5193233333333334,1.87676,5.20085,5.5024,2.38709,2.38709,3.6381244444444447,6.48779,2.1625033333333334,0.6746563636363636,0.7780442857142857,2.2562866666666666,3.4041,0.838617142857143,0.838617142857143,0.838617142857143,0.3939792307692308,1.027677142857143,2.82235,5.98625,3.7381666666666664,4.024435,5.1128,1.00604,3.4496,3.0874699999999997,3.8899333333333335,5.8402,2.4420966666666666,7.2499416666666665,4.72951,1.0425588888888888,3.6748333333333334,1.8471039999999999,2.788075,2.3988866666666664,6.222666666666667,3.19674,4.39867,2.22423,4.281635,4.41809,4.705685,0.5170094444444444,2.029053333333333,1.4283866666666667,2.52405,4.025872666666666,2.1711933333333335,2.909893333333333,2.5237633333333336,2.5528733333333333,2.6351733333333334,3.0040266666666664,2.894883333333333,2.90982,1.360926,2.096693333333333,2.0711166666666667,3.2705133333333336,2.6615266666666666,2.191765,1.80893,1.9987700000000002,1.7091025,3.174145,2.2559033333333334,1.9806166666666665,2.09143,2.436053333333333,2.36762,0.8257244444444445,0.8257244444444445,0.8257244444444445,2.5138333333333334,2.186663333333333,3.0146633333333335,2.316333333333333,2.62129,2.12345,3.996335,3.4101299999999997,1.3352133333333331,2.5295566666666667,2.78065,3.933723333333333,1.4971999999999999,7.252838333333333,4.536395,3.236395,4.283765,3.81277,1.4512025,0.80345,3.14614,3.888205,3.933723333333333,3.79724,4.222905,4.349905,2.76864,3.79266,3.882815,0.866043,2.707345,3.382925,4.9481641666666665,4.69292,3.63192,3.306055,2.538865,2.2972733333333335,2.4928433333333335,0.65423,5.151709583333333,2.6755,4.054725,2.6801399999999997,3.89841,3.362033333333333,2.54036,2.8807056666666666,2.8807056666666666,2.653566666666667,2.15112,2.548766666666667,2.0642366666666665,4.15965,1.448756,2.609065,3.7404,4.057585,4.069195,5.4226,3.96013,2.35086,2.27599,3.375085,2.916625,2.7794,5.10025,2.712415,0.8031642857142858,0.8031642857142858,4.581355,3.995576,0.960046,4.39154,0.960046,3.65347,4.50645,4.70903,3.061455,3.273135,6.3842775,4.19204,5.50155,0.8249500000000001,0.8249500000000001,1.980056,4.367905,1.476205,2.8917,3.503075,1.1321214285714285,3.541585,3.82669,5.0336575,5.0336575,1.0507816666666667,5.43345,5.11545,4.661605,5.9527,2.021905,2.021905,6.98375,0.9505909090909092,7.1851,2.0369175,6.315227500000001,2.738585,2.4968266666666667,3.364,2.36632,2.222913333333333,2.248883333333333,3.03356,2.407639761904762,6.4294210000000005,1.765158,4.642615,2.7909466666666667,2.5102066666666665,2.046645,2.273385,3.31151,3.706275,3.49469,2.93812,2.31041,2.1609,2.65408,1.101772,3.44122,2.66044,3.24773,2.1065725,2.1065725,3.22244,2.0543133333333334,3.773185,3.551935,4.798145,7.197786666666666,4.069145,3.544265,6.226876333333333,2.092886666666667,3.09284,2.0083699999999998,1.4334857142857143,1.6526575,4.137585,1.5980483333333335,0.51149,0.6566,4.001745,4.464675,2.88982,0.929468888888889,2.886245,2.93436,4.71319,1.630084,1.943435,1.0767644444444444,4.542955,2.31515,3.852405,0.7277370000000001,4.179830833333334,3.80956,3.35289,4.50366,3.608605,3.94292,2.6637666666666666,5.3462,3.67045,1.942,2.7099333333333333,5.808566666666667,5.9457625,0.7767625,3.339375,4.55431,4.96877,3.5831666666666666,3.6347666666666663,2.6087,3.1866833333333333,3.6872333333333334,5.9672725,2.5599600000000002,2.7271675,3.99382,2.95299,2.362605,2.507675,8.56384,4.643195,1.9203999999999999,5.06585,4.69822,1.8337720000000002,3.81079,1.22192125,1.5665714285714285,4.421785,3.9883,4.819885,2.45162,2.973715,2.997525,4.497945,3.662675,3.687395,3.14589,3.612615,3.803055,3.71788,1.178597923076923,1.178597923076923,7.32386,0.6965425,2.1754516666666666,0.6965425,0.7813433333333334,0.35638666666666663,2.956795,2.590835,0.60947,2.1754516666666666,2.5504,2.8576,2.347325,3.768905,4.316475,6.987105,1.7853,2.227615,2.228845,4.167985,5.80015,1.844315,1.7563425,1.21401,2.9703524999999997,4.206515,2.57606,4.2682,6.4651499999999995,0.4287744444444444,3.762125,0.706697,2.63909,2.2069275,3.468605,1.2541616666666666,4.025,4.55359,3.88992,2.883485,3.764205,4.7450775,1.6604575,3.191115,0.5675723076923077,2.316885,2.42189,1.0775219999999999,2.8463100000000003,2.4542333333333333,2.5902266666666667,3.6673,8.099070000000001,2.956988181818182,3.78177,3.5219,6.674894999999999,5.260136666666666,3.1138933333333334,4.27636,3.69065,5.8394,4.54837,5.25135,4.636125,4.27013,4.7599,3.5651666666666664,1.527835,1.9648899999999998,2.38669,3.996805,2.5088166666666667,0.20475702702702703,0.20475702702702703,0.20475702702702703,29.90908019047619,0.20475702702702703,3.116707027027027,0.20475702702702703,0.20475702702702703,0.20475702702702703,3.2917703603603603,4.183945,0.20475702702702703,0.20475702702702703,0.20475702702702703,0.20475702702702703,0.20475702702702703,2.677035,5.56585,3.46073,0.20679333333333333,0.20679333333333333,4.415368666666667,3.9795605416666664,3.821191875,3.2530997638888888,3.8154119047619046,7.897186666666666,11.273112914141414,6.186502666666668,7.915093333333333,7.8483193035714285,2.7148066666666666,6.188037142857143,4.303446666666667,4.4115408333333335,0.20679333333333333,7.783898333333333,6.296555523809523,7.281936666666667,2.76515,8.461808303571429,14.357854970238096,18.184111852106227,56.66039116713679,115.01270112932737,1.3640316666666665,3.4418666666666664,3.33835,3.7692314658944657,0.20679333333333333,1.5569783333333331,8.930256666666667,15.038254261904761,19.91309861111111,47.672513382205516,13.514800136904762,3.239025,0.23126965517241377,0.23126965517241377,4.584336666666666,2.7754933333333334,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,5.64335,0.23126965517241377,0.23126965517241377,0.23126965517241377,2.621475,1.8892766666666667,3.922975,3.77584,4.0680491666666665,5.00635,2.110595,4.06232,4.257775,3.10766,1.5052066666666668,3.64807,1.0680633333333334,2.269395,1.9511133333333335,4.9297233333333335,5.924036666666667,2.8151266666666666,5.588973444444444,0.5050422222222222,0.46443466666666666,2.468716666666667,2.6788133333333337,2.92187,3.82673,3.33011,7.38281875,3.692035,3.81118,3.50443,4.01354,2.992475,3.34087,5.48355,1.970155,0.45638615384615383,0.8504854545454545,4.228635000000001,1.863495,3.68383,3.78396,4.717865,3.732965,2.38531,2.66884,0.614614,0.7329920000000001,4.35259,2.7125066666666666,5.41115,3.645525,3.6149700000000005,2.500805,2.893335,5.7067,3.63059,3.30262,0.7628445454545454,3.1772833333333335,4.36063,2.28328,1.0047,1.4742300000000002,3.8185,6.08885,2.032805,3.11362,3.6846,5.49765,2.644525,2.456186666666667,2.250995,4.79538,2.55292,4.138165,0.7145914285714285,2.1630766666666665,3.392075,1.87064,6.102383333333334,2.74073,4.23789,4.231445,3.012015,2.02848,0.53233,4.61416,4.94031,6.55615,2.95825,3.645265,4.456115,3.083915,2.85891,1.1672228571428571,4.917595,2.326275,2.769855,8.28829,4.052935,4.834605,3.483765,0.7146211111111112,3.063275,1.2445785714285713,3.363745,6.1019,4.822775,4.92936,3.62876,4.96833,4.407785,1.4488425,1.7497533333333333,5.0169,2.948506666666667,3.30214,2.32282,5.2041,4.341325,1.45087,3.5453666666666668,3.0357,2.833785,3.991535,9.45999,4.723405,1.7964,4.51851,6.37175,4.3547375,4.096835,3.601365,3.77279,4.581115,7.73933,2.4457866666666668,3.342485,3.242585,4.276975,2.765345,3.234355,4.72502,4.401445,3.58355,3.987696,18.444007,2.8095199999999996,2.5255466666666666,3.3269566666666663,5.549518666666667,1.130095,3.95168,2.2608416666666664,4.945635,1.32292,4.3878,4.36846,3.39098,0.9828775,4.4923,4.45121,1.88979,4.846778181818182,3.97772,1.0639185714285715,3.501065,2.05829,2.704045,1.74983,4.261165,3.79924,3.659995,3.704285,2.9681366666666666,4.314175,8.017866666666666,4.28995,4.086695,4.62498,3.09666,3.809285,4.58908,6.1159810000000006,1.00838,1.00838,4.3384,4.638205,2.0319433333333334,1.2720033333333334,6.987405,3.95033,3.466465,3.692865,4.60824,4.38005,3.627645,4.039765,6.081943000000001,3.9011266666666664,4.512565,4.89676,1.3852200000000001,2.5605,3.928195,4.406385,3.4055524999999998,0.19765,1.546895,2.114355,2.50151,2.17067,0.9647177777777779,1.4174975,1.3637575,2.2489500000000002,0.5950544444444444,1.1042457142857143,1.862685,3.99266,3.8270999999999997,2.1605866666666667,2.563826666666667,2.92558,2.744353333333333,0.680884,0.95448125,2.920955,4.601435,4.338975,2.87255,4.259255,4.23086,4.544635,2.0315000000000003,4.427555,4.903785,4.45478,6.0800925,3.69132,0.46761,5.28,4.57308,3.839435,4.678985,3.541845,1.9331219999999998,3.87838,4.058755,2.843525,5.334158333333333,4.63112,1.3891349999999998,5.334158333333333,4.172225,6.84948,3.7046,1.1452666666666667,3.696955,4.696845,4.159555,2.6275833333333334,4.819045,1.5499125,2.0412575,3.06872,3.543745,0.82728,4.747665,4.85248,3.36735,4.062495,3.332466666666667,2.91906,1.7086839999999999,1.6001,3.242405,3.527375,3.321203333333333,2.5006266666666668,2.2429575,2.0027796666666666,3.77155,1.3260185714285715,0.8252622222222222,5.72953,3.91871,1.4577120000000001,2.6502399999999997,2.3017566666666665,2.87436,6.110886666666667,2.2508705555555553,0.784357,2.5771,4.3591,2.24086,3.671755,5.1618,5.2134,4.15522,4.33166,4.71322,2.2146866666666667,2.2849566666666665,1.7076399999999998,2.1512566666666664,1.8905625,2.3779666666666666,2.231716666666667,1.65796,2.860865,3.10014,4.34652,6.3913,4.52036,4.034425,4.442745,3.906165,3.79597,4.930715,0.879065,2.880716666666667,4.556505,1.226744,0.624606,4.860215,3.50163,2.45342,3.3822987500000004,5.9934650000000005,5.4746,0.872208,1.1244242857142857,0.7036488888888889,4.19963,2.3657166666666667,2.854203333333333,1.1564871428571428,2.7072299999999996,2.595476666666667,5.4571,4.712765,4.23125,5.0168,4.05199,1.2410366666666668,3.617965,1.72039,3.54832,3.81032,3.397895,2.5752133333333336,3.17948,2.7005733333333333,3.547005,4.130285,3.13536,2.3718675,8.27406,10.1065275,3.75692,1.3044757142857144,5.44615,3.76708,4.62286,4.523585,3.71752,3.789575,3.406235,4.23789,3.5489873958333336,5.11347,3.76162,3.44125,4.73303,1.7925619999999998,4.763505,5.74505,4.81917,3.315725,3.3727324999999997,7.27842,0.7585816666666667,2.55537,2.7828233333333334,2.42291,4.981525,3.24675,1.1972416666666665,4.103385,3.291703333333333,3.74282,4.529635,4.015811666666666,6.49033,3.0272066666666664,2.8889666666666667,3.047966666666667,2.8439599999999996,3.81299,1.9522666666666666,2.204266666666667,3.0585166666666663,4.09376,3.7332191666666668,1.9917125,1.5978325,3.0144989285714283,3.104731,0.89331,2.5642716666666665,2.5642716666666665,1.3069025,5.65045,3.280225,3.18276,3.581285,3.252235,3.545245,3.501165,3.2091,3.265615,2.3572866666666665,0.5333706666666667,3.45939,5.653825,3.19092,3.66183,3.238305,4.043535,4.06017,3.18034,2.66062,3.881765,3.76266,3.349775,3.3958,3.05624,2.64155,4.29603,3.90154,8.90093,3.298725,3.73204,3.13256,4.088815,4.14331,3.721165,2.350155,3.743295,2.5999600000000003,3.005005,2.974945,3.195715,3.729675,1.6861966666666666,1.6861966666666666,2.36306,2.985415,3.446025,1.6023640000000001,2.5771,3.70916,1.767474,3.008415,1.6023640000000001,4.35359,3.11657,3.916754,3.05602,3.61211,2.416375,3.025035,4.09507,4.082305,3.4865,4.43546,3.839355,4.276495,3.708555,3.445165,3.109925,3.022205,3.952785,2.73189,3.709435,5.3213,4.25657,4.039345,0.3000486956521739,3.723625,0.4530766666666666,3.720735,3.69046,3.052115,3.553715,3.781955,5.706013333333333,2.9608,2.6165133333333332,2.405883333333333,2.86394,0.676168,6.4207,2.908145,3.45226,3.63353,1.991285,2.721785,3.23385,3.331955,6.84801,4.46463,4.83056,4.22188,4.402785,4.20434,3.82564,1.4507733333333332,1.6258659999999998,3.693515,4.387555,5.601640000000001,2.3795733333333335,4.73641,1.834055,3.468666666666667,4.081765,1.805192380952381,4.182735,4.89471,3.4471333333333334,3.6407666666666665,2.6945033333333335,4.41218,4.424075,3.3303266666666667,4.33695,4.174495,4.70649,4.290275,4.437595,3.685515,3.03101,3.977575,2.4077675,3.1666899999999996,3.1666899999999996,3.854625,2.5827833333333334,3.82064,2.3268366666666664,4.396975,3.2452966666666665,3.647605,1.903045,1.8493666666666666,1.2056449999999999,1.2056449999999999,1.49653,3.318426666666667,1.73658,2.836876666666667,3.84184,5.012176,3.3045666666666667,4.13718,6.05251,2.972205,2.930025,2.976383333333333,1.6410733333333332,4.141475,3.87237,6.0928075,1.6386533333333333,5.31105,5.49385,3.282883333333333,3.386645,4.15829,6.78061,1.9340866666666667,2.268285,3.803605,0.5320228571428571,3.55177,4.129045,4.00555,4.09892,3.007295,1.3093299999999999,1.549564,4.00611,3.10652,2.4334433333333334,3.83068,4.54665,5.1487,1.02612375,3.234455,4.54914,3.647585,4.651145,2.4576933333333333,5.188186666666667,3.88849,1.5990360000000001,3.554345,1.2176416666666667,2.8485766666666668,6.774645,3.492945,0.6700145454545455,3.02801,3.919135,3.86224,1.861345,1.861345,4.939025,5.4246,3.007815,0.5180044444444445,1.943235,4.455610833333333,4.01498,4.1671,1.7958960000000002,2.9840066666666663,3.0294,1.1149998684210525,1.1149998684210525,1.1149998684210525,0.8066973684210527,1.4128523684210528,0.606155,1.1149998684210525,0.8066973684210527,0.2544073684210526,0.8605623684210526,0.2544073684210526,0.5522900000000001,0.5522900000000001,0.5522900000000001,0.5522900000000001,1.1273886666666668,1.04006125,2.4861733333333333,2.3976466666666667,1.1006066666666667,6.363311666666666,2.6398566666666667,5.955523333333334,2.4011133333333334,3.491045,2.88606,3.47495,2.6648141666666665,4.317975,2.85895,4.024635,4.172155,4.498225,2.1412425,3.793525,4.70832,4.23293,3.251445,4.990015,3.432315,4.55239,5.3107,5.1063,6.17395,5.2994,1.05459125,4.502965,3.830415,2.789305,13.609774999999999,4.44287,5.035,2.67627,7.69881,4.32043,4.635415,4.851365,3.10721,1.0791075,2.55778,3.905455,4.173045,3.371775,3.541655,4.112385,2.9244833333333333,4.38914,4.492485,4.20614,6.639023333333334,7.108798333333333,1.2913785714285715,3.592325,3.880005,4.029155,3.638875,3.624785,7.11283,2.9412,2.91058,2.650195,4.1032,3.920185,4.62283,2.69068,1.83242,0.9876760000000001,4.379015,3.65602,3.531775,4.09246,3.180265,4.79514,4.142015,6.4295,5.9438,5.14895,6.6425,3.823995,3.3236,3.226055,3.483525,1.89553,4.590835,5.7399,6.5324,5.7594183333333335,5.7594183333333335,2.45811,1.89553,2.065055,2.91113,0.73815,1.569365,0.831215,1.47649,2.444745,0.37409,2.790135,4.19511,1.47649,3.0689105000000003,10.9734425,6.461444999999999,2.1753431666666665,0.996446,1.8298966666666667,4.26836,4.39388,5.426471,1.986385,2.2736,3.547935,3.278965,4.288065,1.3003466666666668,5.099,3.401033333333333,3.050405,5.004,6.97662,3.823865,2.3382075,2.80639,1.4558766666666667,3.583685,4.7377075,1.711702,5.69775,4.5344,5.889105000000001,0.486882,4.335553333333333,5.2942,5.03595,2.574735,2.65239,7.25295,7.9239,6.54865,1.9509999999999998,1.9509999999999998,1.9509999999999998,4.268285,4.847525,6.25,3.430035,2.75928,2.5749805263157897,5.0879,5.1961,2.6156555,1.96363,2.6156555,7.0243955,4.75065,4.698991666666666,8.01964,4.698991666666666,4.698991666666666,3.42158,7.09752,5.75783,2.91443,2.91443,2.65169,7.04105,3.031905,3.52415,5.386010000000001,5.386010000000001,5.386010000000001,7.547835000000001,3.718615,3.38844,3.7161425,3.5960275,0.79841,7.40531,2.6546600000000002,6.5619,3.51255,13.000640666666667,4.6749,5.504140833333333,7.21137,2.561485,3.44164,1.1457783333333333,5.504140833333333,3.357465,1.634645,1.634645,3.400975,5.2926525,1.82961,4.925675,0.8991619999999999,1.518375,0.8991619999999999,1.8853525,2.7287719999999998,5.569417,3.713525,1.518375,3.36684,4.9779775,1.0175675,3.60985,4.42333,1.96632,4.20383,2.546835,3.23321,2.99855,0.9538740000000001,3.863895,2.44734,1.860595,1.5250199999999998,3.0257249999999996,3.942945,2.378255,3.866595,1.4269699999999998,1.4269699999999998,1.4269699999999998,3.77409,2.94848,2.94848,2.82606,3.87026,2.3557200000000003,1.5028,1.5028,3.193755,5.0427125,1.0223725,1.5588233333333334,2.861975,1.1898316666666666,2.7486550000000003,0.9538740000000001,0.9538740000000001,2.119806666666667,0.9538740000000001,3.3626716666666665,0.5575,3.3626716666666665,6.125602083333334,3.11645,2.4492266666666667,1.8181520833333331,0.68784,2.505992083333333,3.49001,2.505992083333333,1.0275133333333333,3.513155,4.029465,3.67652,3.71427,2.71492,3.87873,1.8751966666666666,0.9707954166666667,0.54510875,0.9707954166666667,0.42568666666666666,0.9707954166666667,0.9707954166666667,4.43637,4.478035,5.40805,3.469215,4.223645,4.17987,5.11845,3.48295,3.718695,1.2884728571428572,2.50111,4.224244166666667,3.966935,1.4277633333333333,2.65753,3.58553,3.87582,4.12399,3.34886,3.962415,3.39969,3.280545,4.34139,2.258716666666667,6.0279,3.67371,4.024395,4.434318571428571,1.0476205714285716,2.310285,3.16329,6.12826,3.8238,3.2549,3.0104699999999998,4.157055,7.237633333333333,3.0968466666666665,3.880545,2.746093333333333,3.91763,4.058685,5.5585,5.2859,4.22978,3.04376,5.2429,4.767785,3.5565333333333338,3.86033,3.281776666666667,2.252115,2.26476,4.829485,6.41935,5.0538,5.14495,3.939245,4.82788,5.62405,0.49038692307692305,7.06529,4.49493,3.70962,3.516895,4.45204,3.924325,2.9525333333333332,2.4548975,1.348355,0.5692453846153847,1.690034,3.1388166666666666,3.26112,3.495965,3.80872,4.203695,11.887625,4.01689,4.06149,2.955065,0.7454483333333334,5.509356666666666,3.445733333333333,1.8729366666666667,5.31867,5.7981783333333325,2.352445,9.41436,4.457625,1.843146,1.843146,1.843146,4.320015,8.86981,3.82633,2.695325,2.695325,3.75927,9.82859,1.0118925,4.50521,4.36575,4.09151,2.72958,2.260876666666667,4.42195,4.036235,6.32985,6.137886666666667,4.077635,3.252675,3.88932,3.9216375,3.2616075,1.18564125,2.7253166666666666,6.39725,3.1844725,4.943025,0.8807575,3.7012,2.1700866666666667,2.6216866666666667,1.7846875,1.8043333333333333,2.22239,5.05765,2.016565,4.51117,5.4386,1.765158,4.698925,3.868965,4.63553,3.1663866666666665,2.087625,2.81491,4.103935,4.18119,4.18119,1.2157025,1.5729966666666666,2.722106666666667,4.354159666666667,2.2472003636363636,4.768885333333333,1.7981120000000002,2.6487266666666667,2.1153299999999997,1.5897975,1.5897975,4.66007,7.412073333333334,1.89855,2.97249,2.2919775,4.73277,3.25233,0.7877419999999999,2.964425,0.7877419999999999,2.76896,3.31816,5.3105,5.45345,3.78709,4.520548333333334,5.7924,2.431235,1.8977666666666666,3.093476666666667,2.2543533333333334,6.1312,4.80425,2.633225,4.184745,2.751505,4.44181,1.0963525,1.11798,1.8842133333333333,1.1833683333333334,2.6999166666666667,2.7250566666666667,2.37685,2.6900066666666667,3.118895,4.522425,2.6953533333333333,2.4448466666666664,2.7750066666666666,2.47212,2.8163199999999997,2.7197133333333334,2.038343333333333,2.50548,3.64292,3.795,3.187505,2.91144,2.836786666666667,2.115125,1.8601025,1.2271366666666668,0.324552,0.14187,2.0406833333333334,1.9284533333333334,0.14187,3.7134925,1.9826175,0.14187,5.7286025,2.109895,6.72746,3.378575,3.0295,2.51973,2.9197333333333333,2.180255,4.63369,3.054233333333333,3.171196666666667,0.4106863157894737,4.1339250000000005,2.614869649122807,3.128715,1.917725,2.43354,4.188565,2.31504,7.83239,5.072,3.29565,3.78288,6.8204,6.59931,1.75326,4.311382500000001,2.085785,2.16559,6.66524,7.81964,1.1938600000000001,2.048355,3.739295,2.751965,2.92853,3.379595,2.80713,4.192345,2.385875,3.16323,3.3079,3.265915,7.94234,1.4588700000000001,1.95578,3.01378,3.38762,1.94649,3.43372,1.45161,3.7805,3.25572,6.33073,3.364155,9.2834075,3.58514,1.4938420000000001,1.8606333333333334,2.70335,5.99987,1.5822925,1.61634,5.93038,3.56679,4.14925,2.96419,1.9334366666666665,3.16979,10.65894,5.11673,6.91494,3.606155,2.285395,2.19503,2.54942,2.869,2.95961,1.53491,1.58348,2.538866666666667,3.478155,1.8320925,3.51925,2.61383,3.236005,3.78898,3.5617,1.1313133333333334,2.87653,1.0345033333333333,1.3179779999999999,1.61037,3.20687,3.626645,3.66703,2.82383,3.749595,4.094165,3.003415,1.4528560000000001,3.59479,3.560745,2.992275,1.92991,3.33806,3.458645,1.4922025,3.436665,1.63256,4.050805,3.649735,4.509,2.80035,3.890675,1.83064,3.228895,5.22245,1.78851,1.05643,3.544833333333333,2.80964,4.19496,4.25107,3.287055,4.63184,4.892285,2.5368833333333334,4.98466,5.4353225,6.50005,4.037655,5.119468333333333,3.946335,1.6267083333333332,2.8206399999999996,4.592095,4.926295,2.6053866666666665,7.326936,1.2019328571428571,3.364466666666667,2.24597,1.785022,2.34164,2.893966666666667,0.39626357142857144,2.7874133333333333,3.694933333333333,3.3197,2.48118,3.218223333333333,2.4095766666666667,2.5352633333333334,2.135665,9.028469999999999,4.78496,1.948508,5.2369,2.5710289565217392,0.7315905128205128,2.6707733333333334,7.400514,1.6567399999999999,4.42977625,6.047746666666667,1.60704,1.67878,1.3628175,4.003315,3.29882,4.41733,3.7985875,2.4197866666666665,3.65272,0.9589779999999999,2.8810146666666667,4.118895,4.22393,4.77139,2.71337,4.97839,4.379315,4.04779,4.5832,5.66925,4.770215,3.918505,5.1337,1.7439360000000002,1.957375,2.77275,3.452255,1.086202222222222,3.80159,2.1707899999999998,3.3847,4.175225,3.0553166666666667,2.4378166666666665,1.5282933333333333,2.870233333333333,2.8375669444444442,2.6669,3.0216066666666666,1.9751966666666665,2.1612625,2.35608,3.56412,4.356545,3.7361,4.52349,3.697045,2.368655,3.069935,4.81264,3.8556333333333335,4.641205,3.19525,2.31729,4.6500683333333335,1.7735033333333332,4.170365,4.685804166666666,5.81500130952381,3.54233,4.24866,5.41,3.18514,3.880745,4.31072,3.71022,3.857348,3.58151,1.3678175,3.198825,1.822,2.44445,4.737305,5.432025,3.857348,4.069355,3.518465,1.476205,3.433645,2.097395,2.4726433333333335,2.109875,2.785555,1.5292901515151516,1.5292901515151516,1.5292901515151516,0.47818181818181815,0.74177,2.0298283333333336,1.1045725,3.684095,1.3016183333333333,3.842255,5.1478,4.45985,3.31171,3.987815,3.169595,4.98817,1.523185,3.01413,2.917565,3.315115,5.893397,4.1319,5.18455,4.134685,1.021245,2.32946,1.3546366666666667,4.005055,4.01186,4.29921,4.90946,4.338175,3.793645,4.442245,3.82372,1.838825,1.1434333333333333,5.087226666666667,1.0361744444444445,1.3467533333333332,2.7535533333333335,8.01735,2.602555,3.91418,3.056415,5.625335,1.70198,1.0024933333333335,1.5141675,3.150935,3.707705,3.81262,3.764425,1.8806675,6.185425,2.9249500000000004,0.91413875,4.58912,2.8179433333333335,2.614593333333333,2.3842766666666666,3.505433333333333,5.859865833333333,2.6347766666666668,2.89174,3.5380000000000003,2.2304233333333334,2.563903333333333,2.922,2.779905,2.07959,4.630075,4.641875,4.841755,1.021741111111111,0.771687,3.7013,2.584686666666667,1.0370075,2.6933808333333333,3.765025,4.338355,7.028675,4.73276,3.5125666666666664,1.7957480000000001,3.62778,3.849125,2.6418333333333335,2.506349142857143,3.733345,2.71707,4.906432666666666,0.80096,2.585615,1.65378,3.536755,4.02933,2.24399,1.1083075,3.086,0.442849,3.218495,6.7277,5.51155,2.741422,1.48885,4.180766666666666,0.7814022222222222,2.57182,0.7814022222222222,4.019975,4.405435,1.436415,1.8294075,5.192121666666667,1.7964266666666668,3.564675,2.820255,3.33877,1.273978,1.7597966666666667,3.935745,4.581335,5.2906,3.022136,2.77705,3.240275,1.68701,2.1864375,1.8889525,2.0014775,4.07858,1.4787555555555556,1.4787555555555556,3.067155,4.650296,8.33614,4.0396,7.330920000000001,2.4273,3.76324,4.084035,1.607865,3.425156666666667,3.700765,3.048475,5.1837,3.177175,2.52159,2.8485666666666667,3.75739,1.045865,4.33428,4.575595,1.15017,7.489066666666667,2.527155,3.500055,3.582016666666666,5.1683,4.56298,3.234269583333333,2.5607266666666666,2.9024366666666666,1.93962,3.6588333333333334,2.281155,2.1828675,7.0739106666666665,3.106533333333333,2.88176,4.308055,21.537066505494508,0.6829999999999999,2.75116,4.55168,4.52141,8.60186,4.655385,4.689095,4.496105,7.062203333333334,3.62586,1.6836,4.844446666666666,3.190365,1.209446,1.209446,1.209446,2.36129125,1.6391125,3.242875,1.5710325,3.028985,1.3982366666666666,2.56166,2.69643,2.968815,1.5710325,3.4261,2.802835,4.094636666666667,4.947611666666667,4.93457,0.7791508333333333,3.30833,2.58531,4.857525,3.57328,2.94194,2.351775,1.7642225,2.23487,1.436046,3.760295,1.7818425,4.36274,10.756835833333334,2.6906700000000003,2.546515,4.645131666666667,4.694966666666667,4.434566666666666,5.863,2.2041833333333334,5.260136666666666,4.29269,1.0627833333333332,1.1959757142857141,6.5319780000000005,3.77645,2.3618925,3.61213,1.982685,3.8369,4.579015,4.57754,4.03953,1.2416128571428573,4.115305,4.750075,4.77218,6.229264,3.358195,5.19805,4.33772,4.54588,5.0098,3.5934333333333335,4.831045,1.910655,3.523175,3.08437,3.25241,4.25047,6.2514,4.51218,2.7542666666666666,3.5075333333333334,8.99118,4.783575,3.1828299999999996,3.418335,3.334245,4.405065,4.34259,4.6967,6.4969116666666675,3.461475,2.7465666666666664,3.9703049999999998,2.43389,3.96863,2.2552766666666666,6.3774,1.588255,4.210415,4.777635,11.4048225,0.5097492857142857,4.2555,4.7284,0.6431028571428571,3.720185,3.74502,3.90848,0.909247,4.55416,4.958923333333333,2.7063966666666666,9.937036666666666,3.2538366666666665,1.95597,2.396675,3.37533,5.8806,0.5448808333333334,3.9703,1.98313,5.3987,0.6874261538461539,4.29698,5.58895,5.92165,3.604655,6.2579175,4.54552,3.33883625,2.5473500000000002,2.9211500000000004,4.28446,4.45475,4.803305,4.89405,5.3824,3.0753066666666666,6.518011666666666,2.730625,3.158352,1.7989475,4.197975,2.23158,1.6546466666666666,3.1792833333333337,3.0236466666666666,3.05334,3.24487,3.4240666666666666,2.8794066666666667,2.718636666666667,5.57045,3.09483,3.877465,4.77841,2.50481,1.1335,2.8842,2.884486666666667,3.94078,2.9173500000000003,3.1380966666666663,5.025768333333334,2.2716833333333333,1.728445,3.08705,3.83043,4.308365,1.144515,4.12738,3.297255,3.864333333333333,2.94008,4.7930925,4.020155,3.4847,4.25214,1.61726,3.87991,0.618861875,4.65321,4.932245,16.74004818181818,3.140093333333333,1.151905,3.63306,0.6074707142857143,2.64015,4.484975,1.92986,1.1424342857142857,3.67299,4.53639,2.933396666666667,0.701235,2.590155,7.89658,4.002305,5.4769,4.99578,5.0661,3.0889100000000003,3.4924,3.189743333333333,7.151041666666666,3.80083,4.98595,2.036905,0.44241444444444444,2.22578,2.78798,1.9539,3.047705,3.52501,2.897213333333333,4.58035,0.6570391666666667,4.44269,3.354255,3.183345,1.2528733333333333,2.7357533333333333,1.94827,4.7664,3.950485,2.04851,1.5735142857142856,3.45357,4.41188,4.36322,6.034081666666667,2.0789766666666667,4.714235,4.510765,3.826445,1.923402,3.744525,5.901251666666667,4.695925,2.53984,4.86106,2.808,2.643315,3.871015,3.90572,1.3934116666666665,4.630945,1.96209,2.567013333333333,4.991811666666667,4.991811666666667,4.908415,1.376674,4.969455,0.8905975,1.77517,4.976665,2.58336,1.5268499999999998,3.100016666666667,0.997634,4.253066666666666,4.782815,2.801565,4.794795,3.79479,3.523935,5.2516675,3.6323,3.5065333333333335,2.7609366666666664,2.5036066666666668,2.489705,2.75953,4.278155,1.6048048351648354,2.925326666666667,4.376315,4.57616,2.0907445833333336,4.263025,4.46827,4.952796666666667,3.3035200000000002,5.1986,4.76548,5.1881,4.976095,3.390605,3.606055,3.7395,4.357235,5.293,4.52785,4.87466,4.544625,4.70038,0.6691791666666668,4.998325,4.49991,3.943865,7.0653625,3.933215,3.61111,4.437375,4.754215,3.37493,3.54763,2.0696825,4.5723325,1.8065325,1.2937885714285715,3.559985,2.1197166666666667,2.56315,3.4586753333333333,3.361966666666667,2.917545,1.3835066666666667,1.8167425,4.30749,3.614975,1.8212925,1.8212925,3.32214,1.575436,3.1977933333333333,4.33882,3.498885,3.964565,1.5531733333333333,2.135115,3.6040925,1.97917,3.89988,4.477625,4.553845,3.898815,6.472868333333333,2.53035,3.714895,4.365745,4.3003,3.2405166666666667,3.99366,3.89222,4.163775,1.89864,2.441803333333333,4.318415,3.787255,3.723715,3.569095,1.6883475,3.74963,4.29415,4.56523,4.200675,3.8246475,3.8246475,2.9586341666666667,3.76533,4.134255,3.33528,1.605374,7.408695,3.996365,4.768935,4.406025,4.10281,3.843815,4.65381,2.99726,3.1408,2.9832,4.835945,1.919734,4.133065,5.209398888888889,5.0179,0.7399,4.841543333333333,1.1110200000000001,4.78789,4.388895,4.42836,4.10321,4.919995,3.5972333333333335,3.5972333333333335,0.8406040000000001,2.26945,4.919245,3.662185,3.834745,4.493505,5.54125,3.384205,4.021495,1.3730149999999999,2.74116,1.71208,1.2574875,4.270722,0.82108,2.27862,3.138033333333333,1.32631,2.030325,2.6759166666666663,1.2060016666666666,6.45592,1.9618925,2.567483333333333,5.45015,1.87091,2.8376900000000003,2.63287,4.553525,3.5964333333333336,3.4218333333333333,4.1569666666666665,1.64948,2.160454166666667,4.072275,0.6541585714285715,2.1895000000000002,2.3843233333333336,3.02931,2.8675766666666664,1.1702542857142857,0.8543833333333333,2.547406666666667,4.182695,1.1418585714285714,2.01921,1.26034,5.406762499999999,2.2817925,4.984175,4.41928,4.14132,5.15395,5.287,3.847225,4.291985,1.3589616666666666,3.8676666666666666,1.7450959999999998,2.310076666666667,1.1925871428571428,4.361085,2.0503825,7.05303,3.810605,3.67263,1.445726,6.84901,3.598575,1.46971,4.16661,3.268225,3.701195,3.272705,2.04106,2.04106,3.2651166666666662,1.4033316666666666,1.4033316666666666,1.923402,2.90752,2.191765,1.3352133333333331,3.4844666666666666,1.0672,3.1242466666666666,2.351605,1.97983,1.5179683333333334,2.2193925,1.9937125,0.2926417647058824,2.36227,1.181695,2.3554533333333336,2.1153299999999997,2.35086,1.0671844444444445,1.101772,3.7251,3.04176,2.04106,1.863495,2.042803333333333,2.5878533333333333,2.4765333333333333,1.829342,3.236333333333333,1.04927,3.2942666666666667,2.7652933333333336,2.59715,1.561164,0.9572200000000001,2.330235,0.9572200000000001,2.330235,0.6634725,0.6634725,0.4793111111111111,2.2181275,2.3042933333333333,0.6634725,2.24918,2.30081,2.335825,1.7091025,0.8257244444444445,0.6634725,0.6634725,1.690924,1.690924,2.07606,1.863495,0.6634725,2.21818,0.4794684615384615,2.7626899999999996,1.9524033333333335,2.5111166666666667,2.612816666666667,2.612816666666667,0.37544,0.37544,1.923402,1.9799900000000001,2.141,2.05334,0.37544,3.4913666666666665,2.51045,1.60379,0.617019375,1.60379,0.617019375,6.63939,2.8064,3.9712,2.6776966666666664,2.8351733333333335,3.0869733333333333,2.5759633333333336,3.483033333333333,2.4750225,1.6887225,2.4940533333333335,3.0968466666666665,2.3920233333333334,1.690924,2.5577893650793655,2.5577893650793655,2.8283766666666668,2.14298,4.314115,2.345003333333333,3.134513333333333,2.7249666666666665,1.413996,2.17188,2.156505,0.8001418181818182,1.7181675,3.63277,1.6477920000000001,3.0271266666666663,2.6223233333333336,2.5502,3.773,1.6099249999999998,3.4465,2.970306666666667,4.2173,1.224244,0.23126965517241377,1.2650714285714284,1.2650714285714284,0.9726944444444445,2.9163366666666666,3.8899333333333335,2.4448066666666666,2.1535333333333333,2.1535333333333333,2.1225025,1.63256,0.9437089999999999,1.8228033333333336,1.8228033333333336,0.6634725,1.923402,2.8815899999999997,3.3750999999999998,2.351605,2.1807600000000003,2.1807600000000003,2.1807600000000003,1.09436,1.4334857142857143,1.4334857142857143,2.3458725,2.436993333333333,2.6095604482323234,3.72696,2.5591066666666666,2.33524,3.635005,3.855245,6.54055,3.619795,4.13034,3.9685333333333332,13.5788875,4.78882,3.55545,1.0049675,3.877085,3.22818,2.45765,3.79547,4.96953,5.889557666666667,6.00265,0.45982999999999996,3.68049,2.66072,3.73362,2.4530775,4.34736,4.33598,3.91491,8.486005,3.82603,3.999075,4.0157,3.2804263636363635,8.040222717948717,3.184113333333333,2.73378,3.71169,3.87103,4.99824,3.671675,6.572665000000001,3.67768,1.4336499999999999,2.904405,0.94221125,4.491325,3.04288,2.79575,3.960285,3.09932,2.79374,4.771065,3.80473,8.447515,4.035155,4.603797,2.4869533333333336,5.41171,3.06112,1.2399275,1.2399275,3.59998,3.97796,2.279995,2.227775,4.200715,3.12489,3.469565,2.003035,2.0117525,3.067925,2.4294033333333336,1.11789625,3.282085,4.54166,8.39023,1.508844,2.928645,3.21454,3.27844,2.7882366666666667,8.53177,4.075455,3.3866333333333336,2.7331066666666666,3.93119,3.2536199999999997,2.9693566666666666,2.9330766666666666,3.81268,3.853825,4.232825,3.821265,0.40784933333333334,1.6385100000000001,1.7796233333333333,1.868945,4.53707,3.535365,2.6375433333333334,2.214035,4.251735,3.69271275,1.9550725,2.50499,0.8638429999999999,2.168005,2.6005566666666664,2.6005566666666664,4.880495,1.8565775,2.6965966666666668,2.3414800000000002,2.01159,1.7914566666666667,3.04961,3.590505,4.46203,4.1779,5.24805,4.674515,2.788085,2.9700866666666665,2.05886,4.586405,5.5249999999999995,1.9256900000000001,3.008433333333333,2.0976575,2.138,3.7755583333333336,2.2923933333333335,4.947185,4.097055,3.515985,4.332355,2.9581199999999996,3.70035,3.851255,2.346503333333333,2.387373333333333,0.41789571428571426,3.6501333333333332,2.57782,3.191335,6.0126,4.83189,5.774310833333333,1.9649825,1.5734283333333332,3.059995,5.13,6.3406,5.66375,2.95302,2.31439,3.65142,2.2632166666666667,4.73847,2.18245,2.2596675,5.41135,4.834395,4.24293,1.71207,1.9919425,1.0864639999999999,1.0864639999999999,1.211602,0.8647814285714286,0.78456,1.8360394285714285,4.320405,9.824038333333334,3.731315,4.26176,4.202545,5.68709,2.814945,1.7175266666666669,3.3086474999999997,3.05042,4.74259,2.1640133333333336,2.5134433333333335,2.93918,3.22746,2.2342299999999997,3.020846666666667,3.4404333333333335,2.907163333333333,3.4577666666666667,3.2607199999999996,2.7329733333333333,2.7512866666666667,3.0292033333333332,2.314366666666667,3.08187,3.078246666666667,2.9766766666666666,3.2641066666666667,2.09634,5.345924,3.052186666666667,3.963622,3.2316333333333334,2.9626366666666666,3.6889333333333334,2.8148133333333334,2.710406666666667,3.0986999999999996,3.1518433333333333,3.4900333333333333,3.0232166666666664,1.9497175,2.6609066666666665,2.702,2.87855,2.87855,3.2781833333333332,2.74377,2.42961,2.9044266666666663,2.9288900000000004,4.190066666666667,2.9577733333333334,2.72,2.813776666666667,2.8238733333333332,4.297644166666666,4.87282,1.5669633333333335,3.405333333333333,3.7823333333333333,3.363524,3.1169733333333336,3.6446,3.5035666666666665,2.4139466666666665,3.434078,1.9754539999999998,2.7924545,3.4329666666666667,3.11302,2.528913333333333,2.3602633333333336,3.8804,2.871893333333333,3.0575200000000002,2.290725,1.1720933333333334,3.2108733333333332,2.6361233333333334,2.0155166666666666,2.4765675,2.9461366666666664,3.06075,1.9314,5.618496,2.3772233333333332,0.906559,4.36235,1.8194395833333332,1.6002466666666668,4.386355,4.290925,3.38331,2.436265,1.39673,3.435,2.59006,2.97046,0.40366749999999996,2.12145,0.40366749999999996,1.88104,1.39673,2.746405,3.58724,2.30057,3.011565,3.53902,0.46631733333333336,2.7314566666666664,0.9710975,0.42875705882352944,3.781815,3.95259,4.986325,2.417355,5.37595,4.12979,3.815865,2.02599,3.815,1.676978,5.1626,2.399295,4.3514,4.425655,2.8711466666666667,1.96423,2.1467300000000002,1.343935,2.289475,0.9200075,0.9200075,4.419475,2.3220966666666665,6.092591666666666,2.909925,2.65025,2.172845,2.40022475,2.584075,6.46415,4.615335,2.03126,2.65753,2.40022475,3.849995,4.5743522500000005,2.86003625,6.0139499999999995,2.909925,3.3699575,3.305135,3.0659533333333333,5.4982,4.54928,1.9004125,2.0588375,2.4662075,2.373505,4.74964,5.3003,1.9256,3.8774,1.6410733333333332,1.5440125,5.1375,9.958991666666666,2.0618666666666665,2.139746666666667,2.4077533333333334,4.107995,4.033275,1.894215,4.425285,4.34533,2.745,38.814394,2.8105433333333334,3.017853333333333,0.4229238888888889,4.7636,2.05159,0.9102677777777779,3.739535,3.50082,1.85307,1.7606,2.3725733333333334,3.524295,1.3185342857142857,3.134883666666666,3.69715,4.54995,0.927217,4.590785,4.780785,4.732425,2.8188133333333334,1.5546275,3.7982725,4.43881,3.667935,3.2083,3.593435,3.78423,11.515711363636363,2.5154733333333334,3.086,3.793035,2.4591,4.46873,3.065695,2.881705,3.13079,5.2825,4.42552,4.93856,5.0591,2.423075,3.57669,4.19593,3.76662,4.72739,4.46566,0.12017717391304349,2.41978,5.3257,2.847515,1.5867533333333332,1.1453916666666666,1.1453916666666666,2.0108475,2.8021,2.744755,1.5818379999999999,2.8333666666666666,4.40178,2.68013,4.5430025,0.5675678571428572,4.667785,3.673045,4.768,4.62481,4.57338,1.19674625,0.97891875,4.242999999999999,2.9565366666666666,3.0442933333333335,3.8449477575757576,4.203805,6.292655,5.46445,4.139015,3.669855,2.098924166666667,1.4761916666666668,4.424445,0.3176986666666667,3.4106,3.83714,4.15983,14.09915,1.8678075,3.05285,0.6612625,4.48689,8.507480000000001,3.546705,1.7523533333333334,5.79515,3.188883333333333,1.04679,4.84959,2.59193,2.979445,4.74943,3.4702143055555554,0.9433125,6.396966666666667,0.74908375,4.98871,3.2511275555555557,1.400215,2.1374239722222224,3.27598,3.27598,3.9375,4.352307083333333,1.282475,2.45035,2.926435,3.71811,2.96345,2.588975,3.019845,3.41794,6.830967333333334,6.3172,4.1329,3.22408,4.41791,4.660425,3.469005,3.371905,3.586995,3.71641,4.17648,2.534656666666667,2.5753833333333334,1.5731883333333334,2.358163333333333,2.251605,1.5309525,2.6845833333333338,3.573066666666667,3.2660199999999997,2.9455033333333334,2.5769533333333334,1.5052066666666668,1.7162,0.4776118181818182,2.4426799999999997,1.5636428571428571,1.8170775,3.25605,2.5192033333333335,2.6527166666666666,0.91789375,2.1741425,2.690205,3.003145,3.60291,5.1666,3.981535,2.941185,2.347706666666667,3.462455,4.088435,2.59526,3.20635,1.93988,3.858185,2.944925,3.91029,1.4346133333333333,0.622103,2.20177,3.372795,3.254205,3.8905,4.5782799999999995,8.47424,3.1538033333333337,2.17145,1.8747633333333333,1.694194,1.694194,2.918426666666667,2.541113333333333,4.852225,4.29802,3.34479,4.728245,3.988055,3.856915,3.1567049999999997,4.33176,7.921255,2.4860575,0.51149,3.0881900000000004,1.4633433333333334,1.0312614285714286,2.036966666666667,0.7216039999999999,2.04806,4.984495,5.23105,6.0215575,1.0293425,7.62046,1.9944220000000001,1.5378333333333334,2.5310133333333336,3.957675,3.288676666666667,2.269825,3.712125,3.0452833333333333,4.2466333333333335,2.9163833333333335,2.7897133333333333,3.02002,6.76222,2.508965,3.923615,3.9119716666666666,3.87211,1.5301,1.4128075,4.3927,2.4587766666666666,3.0016200000000004,5.221292500000001,2.702695,2.117955,2.389935,3.388865,3.7055666666666665,2.1634766666666665,3.916498333333333,2.8805599999999996,5.36235,2.4337961666666663,1.88404,4.725975,5.2834,4.29257,4.02352,1.5061866666666666,2.251815,1.910825,3.58941,1.5817333333333332,0.9348550000000001,2.7512675,2.02504,1.8852925,4.36801,0.7133349999999999,5.600597499999999,1.4606425,0.7647227272727272,3.491733333333333,3.85884,0.6626714285714286,2.7685725000000003,3.2059249999999997,0.8543833333333333,4.22452,0.15872404761904763,0.15872404761904763,0.15872404761904763,0.15872404761904763,0.15872404761904763,0.15872404761904763,1.865438,3.82228,1.865438,1.865438,1.8740866666666667,0.15872404761904763,0.15872404761904763,3.15954,2.657033333333333,3.46461,3.31924,2.28609,3.633485,1.363792857142857,1.582722,3.2616075,1.387518,2.6995666666666662,2.6070626666666668,5.598916666666666,4.125715,3.887775,6.53685,4.420735,4.29761,3.656085,3.69331,7.145533333333334,3.9321333333333333,3.5828666666666664,2.3568466666666668,5.130393333333333,2.554753333333333,2.067145,1.7244666666666666,4.637825,5.10305,5.0065,4.93809,5.41575,4.229755,4.500755,0.701439090909091,0.6797578571428572,0.6797578571428572,4.65662,2.457266666666667,3.978475,1.0616314285714286,4.579195,1.4529142857142858,2.294166666666667,2.47302,4.464566666666667,4.464566666666667,6.71065,4.076915,1.3275216666666667,10.060943333333334,2.6958366666666667,1.2110777777777777,4.80993,4.79598,3.49104,3.099745,2.82612,4.1864,0.7947466666666667,3.1727633333333336,3.3823000000000003,3.8196666666666665,3.1940233333333334,1.61419,1.5383533333333332,4.5114158333333325,3.16945,3.107276666666667,3.3912999999999998,5.407005,3.3955391666666666,0.811831,1.6907566666666665,3.5601333333333334,2.276256666666667,3.867766666666667,3.5135,3.127746666666667,3.4349666666666665,3.0751633333333337,2.1501233333333336,1.2845533333333334,3.1394033333333335,2.584286666666667,3.383755,3.22858,3.848075,2.5228633333333335,3.2082800000000002,2.82955,1.581564,2.1643133333333333,2.481353095238095,3.6367999999999996,1.796848,3.3299,1.8647166666666666,3.587666666666667,5.424946666666667,5.001711333333334,2.3415175,2.5379,2.6724,2.4506,1.5628285714285715,2.3244825,3.383195714285714,2.4563425,3.598333333333333,2.90184,3.726833666666667,3.07006,1.2610444444444444,1.3278075,1.8459925,2.19285,2.85534,3.4108,5.1049,7.403107500000001,2.56743,5.0692,3.783495,15.021222333333334,0.469599,11.48,0.8337844444444444,3.10981,3.05662,2.4076066666666667,2.984995,1.5707039999999999,1.4528560000000001,2.2786766666666667,1.1699220000000001,2.8798053333333336,2.0125766666666665,2.9223166666666667,2.17528,2.6571933333333333,1.58847,0.6098125,3.07512,2.580373333333333,2.9091799999999997,1.09436,3.4799333333333333,0.71371,0.3734930769230769,1.9687266666666667,4.16587,4.718105,4.447835,0.7726209090909091,3.99863,4.845555,1.07502,1.98154,5.107175,3.480335,3.823915,3.705935,3.93136,1.79199,3.879865,2.6759566666666665,3.11107,3.69215,2.973405,2.54149,3.96515,3.31841,3.507845,2.34151,3.47874,4.364425,1.39126,4.468585,2.212815,4.150915,5.001336666666667,2.02834,2.6820133333333334,2.9651533333333333,5.778081666666667,2.5049266666666665,3.3245,4.965395,3.9712,4.11092,1.8422333333333334,2.669425,4.525865,3.6353000000000004,3.597935,3.7494333333333336,2.93079,2.8558,3.795666666666667,3.13853,2.713563333333333,2.76172,0.4465927777777778,2.3134025,2.0540375,4.440585,4.671565,2.9148099999999997,2.5082400000000002,3.1481100000000004,7.731005,3.558879375,4.04411,2.75052,4.01404,3.08599,3.714198333333333,2.747446666666667,2.134425,2.51208,6.40835,4.534785,2.2417666666666665,3.183405,3.0926,2.73554,4.330645333333333,1.777408,6.2099866666666665,3.89519,4.850185,4.402925,6.3754,3.78892,6.841536666666666,3.667445,3.3849,0.6305521428571429,2.229135,1.5256075,2.8251899999999996,3.25594875,4.049955,3.83553,5.3059,2.56961,4.580315,3.6081,3.7569666666666666,3.23009,4.295485,4.609785,4.400495,2.8404833333333332,5.982281666666666,4.509,1.4167166666666666,5.3206,3.764755,2.78081,2.20178,2.2232600000000002,4.377521333333333,1.2458371428571429,2.4833266666666667,2.013115,3.908535,4.433895,2.512723333333333,3.3095499999999998,2.983552333333333,2.3438866666666667,3.646465,1.365982,2.44177,2.358163333333333,2.9254166666666666,2.5357766666666666,2.534266666666667,2.7673,4.018645,2.9547133333333337,2.8998666666666666,4.10301,2.440425,3.620375,3.622165,1.5231966666666668,1.5231966666666668,4.4544,2.7053733333333336,1.83221,1.3228425,2.0912325,1.9738075,1.2550219999999999,1.4286366666666668,0.672172,1.6837600000000001,1.6010666666666669,2.84651,2.21409,1.7975033333333332,1.9493733333333332,2.36118,1.6220133333333333,1.8078033333333332,1.7778233333333333,2.527225,3.80027,2.868355,2.802683333333333,2.6416,5.53675,2.89515,4.254685,3.9735770833333337,2.351415,3.86798,2.932285,1.88539,3.47848,1.9283275,2.96659,3.7006,1.945125,4.411395,3.21855,4.156055,3.2794333333333334,0.8098711111111112,4.742595,3.925765,3.35382,3.81342,2.2855333333333334,4.48826,4.692245,4.665825,9.240485833333334,3.48002,4.576415,2.8587666666666665,3.633505,4.416485,2.27053,2.794865,3.787535,1.9862375,5.65493,1.8840720000000002,2.748395,6.114929999999999,2.870136666666667,4.151664,1.2175314285714285,4.25161,4.313515,3.03061,4.66192,4.83448,5.992173,15.03978119047619,0.6298235294117648,1.0671844444444445,2.8875766666666665,3.87558,3.61526,2.1831825,3.30204,4.14351,4.87382,2.300115,4.697335,1.66765,1.66765,5.28515,0.7659781818181819,1.741696,2.983585,4.082945,0.3939792307692308,1.9964266666666666,4.000115,1.1547283333333334,3.09726,2.7819333333333334,2.825635,7.96831,2.6006899999999997,3.635066666666667,2.0312633333333334,2.2191533333333333,3.6492,3.153365,3.509425,6.866262833333334,1.9856975,2.813275,4.53978,6.57906,1.8711333333333335,2.3754933333333335,2.6836566666666664,1.5110633333333334,2.609625,1.58388,3.936135,3.775295,1.56577,1.8319863333333333,1.8319863333333333,2.7069500000000004,5.4123,4.3822849999999995,3.92495,4.52265,4.459875,3.252245,3.939945,4.50902,3.53162,4.50509,3.7980875000000003,4.397825,0.878361,0.383525625,5.20815,3.859625,2.4776700000000003,8.0936,1.7080433333333334,4.6656,4.205585,0.42412333333333335,2.088346666666667,1.38297,1.78078,1.9722333333333333,5.392723999999999,3.157225,3.169695,4.99318,5.1466,4.68846,0.586446923076923,1.97601,0.624057,5.821536666666667,1.406954,4.850915,1.9745725,3.0060975,3.40688,4.2744,4.01706,5.00515,0.8415218181818183,3.217995,4.05274,1.9066725,1.6631475,3.86155,3.071635,3.568575,3.89473125,5.297519047619048,4.67595,5.57205,2.762513333333333,0.5746744444444444,3.1530233333333335,3.57999,0.5725976923076923,3.829365,3.78517,4.17442,3.3179,2.6965800000000004,4.860685,3.22812,3.17295,2.25739,3.90262,1.6837019999999998,3.328295,3.60893,0.6166261538461538,3.64748,3.75206,3.224665,3.74321,4.417905,2.97255,3.972845,0.623738,2.90076,3.689033333333333,4.307295,3.466366666666667,2.4528275,3.4078666666666666,2.4528275,4.888935,3.113945,2.908493333333333,1.4921049999999998,2.9900533333333335,1.7707375,4.27669,2.69554,4.804130000000001,2.9948833333333336,2.6290766666666667,2.8688300000000004,2.229751607142857,2.229751607142857,2.229751607142857,2.0758199999999998,1.1412133333333332,4.540015,2.4677333333333333,1.6792433333333332,3.8279666666666667,2.3412133333333336,3.1561566666666665,3.959145,5.5158,3.25539,1.7880325,1.040956,4.24593,1.936122,2.1191233333333335,2.984125,3.45702,2.089125,3.486115,2.921905,1.632094,4.696485,4.159325,3.237635,3.77245,0.7755033333333333,2.4345166666666667,4.37655,7.754580000000001,4.09261,3.0689,2.880505,3.452355,3.83278,1.6457225,2.36811,4.45021,2.01798,4.43297,3.42573,5.25335,8.26138,4.12542,3.40125,3.0385,4.79886,4.211445,3.269105,3.269105,3.758385,3.9020399999999995,4.267355,3.974695,4.307125,4.529545,4.12361,1.0723625,4.32308,4.24715,5.0183,8.05229,5.043,3.598527333333333,1.8135333333333332,1.3288816666666667,2.36254125,5.067,3.847025,4.65501,2.387286666666667,4.18382,4.960225,5.1368,4.77919,3.0237166666666666,3.352025,3.889055,4.88997,4.36631,3.70082,6.431348333333332,4.95732,2.117923333333333,4.96974,3.797385,3.9363,3.7049,4.33733,0.7689718181818183,3.9843,4.27482,1.1672228571428571,1.2274800000000001,4.694075,4.57952,8.578312,5.2488,4.51554,6.0567,3.045015,2.484036666666667,4.77258,1.702355,1.702355,2.721525,1.6298833333333331,3.019545833333333,3.2126033333333335,2.020355,4.080727727272727,1.4229900000000002,2.15932,5.3841325,3.4985350000000004,3.6334,3.11553,4.05554,4.00998,3.08161,0.9788688888888889,4.13203,3.1107133333333334,4.035225,4.352015,3.6441383333333333,5.30485,4.409355,4.50189,3.59268,5.1006,6.409,4.62932,3.357355,3.32732,2.11987,2.11987,3.895715,3.89987,2.3553366666666666,2.75258,2.0014569696969695,2.475886666666667,1.95767,1.95767,4.119585,3.39067,2.187415,3.606005,2.766435,1.977795,1.2598375,0.9703966666666667,2.684125,0.4258447368421052,0.7914444444444445,2.95088,3.552325,0.4709281818181818,3.70828,1.808284,5.32335,3.39261,7.16735,4.37351,5.312283333333333,4.68095,5.1889,4.105515,1.956625,1.776284,3.894605,3.05572,3.77324,1.2786766666666667,3.377485,4.482065,2.949865,2.588635,2.461445,4.39814,3.32989,3.238955,4.03892,3.658595,3.46327,3.085005,1.027677142857143,1.809135,2.31456,2.83771,4.281725,7.46379,0.9207420000000001,1.5726733333333334,1.5726733333333334,1.776278,3.872395,2.67695,3.158375,5.1253325,2.9580566666666663,1.4083375,1.4083375,1.4083375,2.982025,3.0689105000000003,5.30805,3.24824,4.166915,3.541215,3.64806,3.014585,3.2933541666666666,3.740045,3.86247,3.0574225,1.2550219999999999,2.997815,3.0574225,3.66456,1.4253533333333335,1.9180866666666667,1.8720675,5.456208,3.408035,6.4515329999999995,5.456208,3.0434979999999996,1.7407683333333333,1.7407683333333333,2.63007,6.46128,1.7407683333333333,2.391985,5.54117,2.498905,2.85168,4.83237,3.5289,4.39807,2.0152266666666665,2.965965,4.97776,2.1846633333333334,2.399635,5.07455,2.0152266666666665,2.649935,1.997755,5.9763,2.986365,1.10648,2.47702,3.233355,3.0353988333333333,2.06796,1.9086355,4.03151,1.8080913333333333,2.052295,3.205905,2.29116,2.4898,3.83613,2.314,1.968915,2.519315,6.26399,2.2542,3.454715,3.662,3.662,8.837763333333333,1.3734133333333334,3.06721,2.439535,3.128015,2.333705,1.3567266666666666,1.3567266666666666,3.41996,2.35088,6.8455200000000005,2.34381,3.720765,3.106625,6.36595,2.695215,2.93788,5.216324999999999,5.216324999999999,2.5478,1.33402,1.36473,1.36473,1.33402,2.1903566666666667,1.7044133333333333,1.1887166666666666,1.5181033333333334,2.200633333333333,3.621825,1.95921,3.49865,3.197685,2.464875,2.871975,2.834465,2.440735,3.496086666666667,3.496086666666667,6.09214,2.50391,2.810525,2.943025,3.54441,2.255245,2.84854,2.567465,4.906495,1.70193,1.5574896666666667,1.3543479999999999,2.268199666666667,5.16991,4.000806333333333,3.357168333333333,3.0213,1.97063,1.97063,1.97063,4.48865,2.615275,1.1887166666666666,3.601745,3.531285,1.360805,4.8628425,2.9368775,6.13173,3.43802,1.948035,3.56341,2.4324833333333333,2.307535,3.81555,4.45773,3.69623,1.905945,2.24896,3.174945,2.769015,5.18952,2.2416,3.51152,2.725495,6.14014,5.02807,1.70984,2.271435,5.73773,5.17275,5.23536,6.31033,0.9634560000000001,0.9634560000000001,3.555461,3.555461,1.035786,5.59043,2.66027,4.89783,4.82869,5.31374,2.25893,4.508355,4.508355,2.427185,3.46423,3.825945,1.2772700000000001,4.95752,3.401885,3.20983,2.998105,4.56356,2.200525,1.857565,3.543065,2.775725,3.358405,5.45568,2.768895,1.49264,3.92997,6.02721,6.40766,4.3904,2.841495,3.76146,2.613305,5.15958,2.88486,3.84236,2.20689,6.96073,4.50581,2.3553,2.25012,2.897515,4.7074,2.32493,2.722205,2.940235,7.4597,4.94219,3.099185,2.07774,2.43297,6.63172,3.36907,2.99143,5.36552,3.055945,2.93348,2.595745,2.67655,2.087073333333333,2.06279,1.9466766666666666,1.8001433333333334,1.8130733333333333,2.0028099999999998,1.61037,2.05815,1.82174,2.087073333333333,4.09139,4.58678,2.02187,1.5502375,1.5502375,3.74065,3.74065,2.79204,2.79204,2.763825,3.01964,1.99597,3.9357,2.27007,2.27007,2.417965,2.417965,3.06887,1.938295,4.70521,2.390525,3.56567,2.1010233333333335,2.1010233333333335,1.62751,3.9591,5.6487,1.4253533333333335,4.90007,2.314,1.864935,4.17809,3.24031,1.9831,2.674695,6.39758,2.15812,5.9999,2.73781,3.42065,3.0303,2.610755,6.7206,3.0646,1.842815,2.7050153846153844,2.87015,5.19601,3.461355,1.55639,1.55639,3.6692,4.71187,5.00985,5.7963,2.782095,2.882565,1.850505,3.158825,1.80424,3.17997,1.940275,0.806828,0.806828,0.806828,2.0048433333333335,5.598473333333334,2.0048433333333335,2.3776,3.7612050000000004,1.87369,1.828955,4.5087,3.51302,5.41689,1.7333166666666668,4.66224,1.7333166666666668,1.7333166666666668,2.083715,1.812605,2.215165,6.21305,2.215165,2.59661,4.72465,1.834105,1.825025,2.95679,3.047193333333333,3.2444791666666664,3.216616666666667,3.53359,1.3058733333333332,3.95831,0.6978081818181818,3.999925,4.370195,2.91112,2.91112,0.6409627272727273,3.8639666666666668,2.6652533333333333,5.52945,4.95345,4.045525,5.2678,3.96198,4.008495,5.0804,4.013045,4.338525,3.63613,3.89902,4.64162,4.88248,3.41072,3.45038,3.922305,2.3591233333333332,1.256942,4.545145,3.49324,3.231915,1.1819957142857143,4.01797,3.84129,6.690869999999999,1.34892,5.21325,4.09595,2.15487,2.12692,3.25229,3.64318,1.80613,1.55639,3.771945,4.56342,2.7142,4.77788,3.014425,1.12881,2.8374166666666665,1.1872885714285712,3.133266666666667,1.7024833333333333,3.0061366666666665,1.95901,2.554073333333333,4.056835,2.87154,4.51877,3.15482,2.21102,4.89613,4.31345,3.206295,5.41265,4.11008,2.77317,6.02005,4.56602,3.178823333333333,2.7049866666666667,2.728085,2.9629033333333332,3.04008,2.6603966666666667,4.83262,4.364915,3.76696,2.457946666666667,2.6791133333333335,2.45694,2.48836,2.2477733333333334,2.3675966666666666,2.3079633333333334,2.19736,1.3434425,2.998398,1.2131825,1.7772825,1.691865,2.69855,1.568045,1.759025,3.81219,4.1596,1.9779925,4.12324,3.449575,5.76976,2.0062366666666667,1.6251380000000002,6.87405,3.40308,4.493145,3.986295,3.729825,2.077825,3.51136,2.4349675,3.29431,4.35498,0.74178,3.80265,2.1696633333333333,0.7508918181818182,4.888055,4.36244,4.09986,1.7536394642857145,4.7524,5.52525,2.68079,2.8711699999999998,2.5039666666666665,2.22838,0.61128,3.0144366666666667,2.9401,4.851255,2.4597625,2.0327575,3.50279,0.886125,1.9264833333333335,1.9264833333333335,2.83803,1.9264833333333335,4.078135,2.800535,4.14546,4.52933,5.61975,13.193388333333333,3.061223333333333,4.453425,2.802975,4.764845,3.27655,6.54148,2.7277166666666663,5.01085,4.67309,3.92945,1.126395,4.67888,2.9254833333333337,2.3432833333333334,0.8841988888888889,2.1540325,3.30815,6.830118333333333,4.092355,2.90752,4.53558,3.2651166666666662,4.158215,4.308805,4.78159,3.01881,2.9292466666666663,4.02676,5.3137,2.69919,4.07611,1.6878875,1.6878875,3.22431,4.765875,1.1246375,3.9402453333333334,2.1394675,4.664775,2.58762,2.6276566666666668,3.149153333333333,2.446896666666667,0.6958821428571429,3.515935,2.8094866666666665,5.1749,4.58608,0.23184875,4.974355,4.551585,4.002675,6.695226666666667,2.928126666666667,2.889466666666667,2.1258133333333333,2.81897,2.57679,1.3878899999999998,2.8416,2.5336333333333334,1.4162549999999998,3.2265800000000002,2.9166866666666666,2.46327,2.7097233333333333,1.275653333333333,4.24588,2.371535,5.0096,4.05735,3.787805,1.6745400000000001,2.4950766666666664,1.393125,2.18442,1.393125,4.672105,3.3603666666666663,1.587202,2.2550325,4.10522,3.90328,3.021005,3.90205,0.3547065,1.3354920833333335,3.94118,4.290385,6.2885,1.9136275,2.64771,2.9892966666666667,2.22148,2.775615,3.61572,4.51913,2.488815,2.1982466666666665,2.7983333333333333,2.618986666666667,2.690103333333333,4.24487,2.427775,4.48211,3.7394166666666666,6.03015,7.6264525,0.74693,0.815669,3.88306,6.4900875,1.97613,3.61477,1.7136933333333335,1.7136933333333335,3.51692,0.4596144444444444,3.583145,3.693165,2.96126,3.902995,3.30943,2.74252,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,2.585375,3.022425,3.782545,3.050795,3.9884325,5.801741249999999,2.977445,1.7775299999999998,1.00538,3.553785,0.72794125,4.775332499999999,2.9978024999999997,2.242055,0.72794125,2.48047,2.663745,0.7752375,3.85290625,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,4.335085,1.605585,4.3662,4.33136,1.702842,4.6336,4.22446,5.3227,4.284801666666667,3.505170357142857,3.51922,4.31531,1.9577725,5.422905,4.0664,0.7282857142857143,1.3454128571428572,1.296217142857143,3.218363333333333,3.218363333333333,2.9392300000000002,3.722795,4.05356,3.55928,3.794785,2.9517900000000004,1.9769666666666668,0.5814957142857143,4.1742,3.218625,2.731765,3.937395,3.35427,3.08446125,4.92144,4.23423,6.4775825,4.142585,4.763465,5.5042,4.26495,1.251807142857143,3.156495,5.2227033333333335,32.59307696139971,1.2025016666666668,4.051455,3.15064,4.52459,3.976845,4.84403,5.20765,0.4177890476190476,5.07955,4.38487,1.9314875,1.99249,3.58258,1.5822925,2.58133,2.470775,1.761065,2.94271,2.4765333333333333,2.7837,2.773395,0.5991707692307693,3.232815,3.825455,0.3679915789473684,2.56046,2.67237,2.95623,3.947765,1.924285,4.12613,4.06376,3.40973,3.38069,2.942365,3.97281,3.028305,3.84232,2.1611,5.2227033333333335,3.543695,3.23621,2.85172,1.689122,3.788565,3.543865,6.939209999999999,3.59045,4.68787,5.9683825,5.131089,2.2906,4.228565,5.8181650000000005,7.490882,2.46971,2.732885,4.63725,5.636076666666667,3.928215,3.33763,5.269685,2.73085,1.6739775,2.2083675,60.04938696674284,5.2378,4.170305,2.565825,0.8301970000000001,2.4250966666666667,2.933173333333333,3.20322,0.7333888888888889,4.31816,0.7433533333333333,7.7244053571428575,1.936122,3.2930466666666667,1.741544,2.696535,2.5709966666666664,3.11094,2.4466,2.3875933333333332,3.29804,1.4789233333333334,5.3371475,3.932,1.4051475,2.6845666666666665,1.3884133333333333,1.493425,7.72217,5.96505,3.335615,3.979245,5.1553575,1.4561857142857144,3.438833333333333,3.361045,1.61672,5.2974,3.718105,3.88591,1.6001,2.882303333333333,3.5586,3.73358,5.7084,4.43116,4.483165,2.516,3.81593,4.461533333333334,3.0693533333333334,1.332684,4.053815,3.31746,3.93835,4.993435,4.045845,3.786715,4.4706,4.368275,4.299105,4.388845,3.94667,3.11483,3.79097,4.15102,3.30541,4.03354,3.69664,1.9015375,1.9015375,4.193855,4.89417,4.992345,3.785005,4.752655,3.3495333333333335,2.78261,4.532805,5.0639,0.7340027272727273,5.4369,6.5379950000000004,5.3787,5.8256,1.0282222222222221,3.177745,0.9550583333333332,0.9550583333333332,0.9550583333333332,3.67115,3.3606,2.4329933333333336,3.6054333333333335,0.9805870000000001,5.0117,5.51725,3.03601,1.5128875,1.990525,4.16789,3.68296,3.91252,3.292484,6.69105,3.539265,2.6214033333333333,4.46954,6.7478,2.53887,4.35707,3.956845,3.255005,5.47895,4.690525,4.916675,5.8391,3.09265,3.4074511111111114,1.9576333333333331,1.9576333333333331,0.7088763636363636,8.395059999999999,2.172205,5.8091,5.4563,4.16325,5.02975,3.80872,2.9637000000000002,4.37133,7.486585,5.613513333333334,1.9574666666666667,4.31788,0.9635429999999999,3.78899,1.9882033333333335,0.8792300000000001,1.1137942857142857,2.355663333333333,2.95126,2.8457966666666668,1.0902014285714285,2.48285,3.031166666666667,0.8794377777777778,2.5777366666666666,3.0521166666666666,1.699042,1.7364920000000001,2.836263333333333,2.8785633333333336,2.7042366666666666,2.44603,1.702776,5.27195,4.010955,3.619905,4.224405,4.883695,3.27968,4.301115,6.4851,5.0851,4.327905,3.960375,10.561818333333333,8.540635,2.8072166666666667,3.57031,1.9509933333333331,3.955135,3.30663,4.468695,1.0531233333333334,3.85238,3.28028,1.5961699999999999,4.15724,2.9657150000000003,4.287065,2.57529,3.895125,6.8626,7.518286666666667,3.847155,1.4802733333333336,1.4802733333333336,1.4802733333333336,4.61731,1.2038666666666666,1.4287125,0.4482183333333334,4.210325833333334,2.96177,3.394395,0.9808070000000001,1.15685875,3.103245,4.36756,3.80753,16.22668110714286,4.1617675,4.493475,5.6197225,2.6990833333333337,3.409395,3.19931,0.91321,1.5420175,3.630205,3.576065,4.2673,4.44747,4.44961,3.813415,2.746056888888889,3.58658,5.28025,0.5504450000000001,4.491605,2.2905525,3.954245,4.70708,3.5263333333333335,2.3698366666666666,3.925631666666667,1.7506300000000001,3.62396,6.057,3.067543333333333,3.20827,4.14286,3.97245,4.38626,4.03066,3.354685,4.204,4.809245,4.85047,3.57217,4.35095,3.864065,1.0747214285714286,1.43552,5.788156,6.0755,4.027835,4.911035,2.445635,2.7200133333333336,2.73122,5.68133,1.82433,2.36707,2.9387233333333334,2.95703,3.22063,4.55523,3.182085,4.9245,1.15012,4.654905,1.004365,4.116335,3.38741,1.8645049999999999,4.24023,0.9288944444444444,4.913805,5.5927,4.81587,3.67668,3.825195,3.9278,3.03004,4.958625,5.9433,2.7892894999999998,4.200775,2.429505,2.820155,2.025935,2.57469,3.267535,4.69853,1.0672,4.7011825,1.5030825,3.427385,1.63872,1.0672,0.20475702702702703,3.628675,3.08663,2.31933,1.9610900000000002,2.79197,1.1446175,4.06616,3.738245,4.95318,2.5741666666666667,6.2554,6.643717499999999,2.7076733333333336,3.1521666666666666,2.6679566666666665,0.777487,2.490056666666667,6.0288,4.02038,5.5687,4.634965,2.13231,1.3847699999999998,3.92742,1.6069675,2.20006,1.580965,2.872775,1.807105,1.9385975,2.1146425,2.0587325,1.7690325,1.3044757142857144,1.427745,1.915985,1.91891,2.1640175,2.4158766666666667,0.5325246666666666,1.078804,2.430363333333333,3.147603333333333,1.9618925,1.9314533333333335,1.5429125,3.666075,2.2048633333333334,2.90862,3.65321,5.9907,3.62306,2.93436,4.300815,1.5716199999999998,3.69782375,23.680038500000002,4.733143333333333,5.76965,4.20532,2.0741066666666668,3.824085,4.80159,2.29001,5.1972,3.2721533333333332,0.82207,3.27574,4.499865,3.686765,4.079845,1.5365399999999998,1.9786433333333333,2.4127033333333334,2.29262,1.429142857142857,3.3571000000000004,5.1376,4.30853,3.40313,4.007825,4.80002,3.59983,4.560065,1.2078125,2.8408,4.122775,4.592965,1.78518,3.1841233333333334,1.86165125,1.86165125,3.72501,4.66852,2.9741666666666666,2.8644,3.89233,3.78056,6.607285000000001,4.689745,2.333845,1.5420175,2.80159,4.365415,3.1242466666666666,2.5577893650793655,2.5577893650793655,3.2655,5.02375,3.65893,5.080755,2.389365,3.502549111111111,0.6215344444444445,0.6215344444444445,0.6215344444444445,3.31335,3.852265,3.8940033333333335,5.6466,2.1612625,4.84696,4.72819,4.708945,3.26345,5.4134,2.36834,1.3277371428571427,4.21704,4.047315,0.4728078571428571,4.270866666666667,4.74829,1.4721650000000002,5.1813,5.0154,4.5279,4.342165,3.8248,2.86579,4.375075,1.7184519999999999,4.595895,1.4938483333333332,4.186815,5.7271,1.1065925,3.077565,7.0310274999999995,4.07345,3.06499,2.1731875,3.89596,5.6277,3.053976666666667,7.106546666666667,4.070235,2.2640366666666667,3.0636033333333335,2.7198533333333335,2.45866,2.7380433333333336,1.9249866666666666,4.767145,0.61996,2.07559,2.07559,3.13196,3.65744,2.29087,2.901775,4.17405,5.0939,3.90182,1.51389,4.574533166666667,4.28974,4.712425,3.4944,3.803954833333333,3.3124175,0.4915373333333333,2.7661285714285717,0.99529625,0.4915373333333333,4.315845,0.850338888888889,3.859335,4.02097,6.553228000000001,2.222236666666667,1.06687,1.1677339999999998,2.261475,2.9105366666666668,1.8449066666666667,2.5321266666666666,3.400305,3.34363,2.1858999999999997,2.428786666666667,4.11116,2.9220475,3.99328,5.73855,3.501165,5.02685,6.797188333333333,4.387445,3.69434,4.53031,3.68769,3.977765,4.939815,5.3405525,5.4147,2.4330833333333333,0.8965077777777777,3.507215,3.94028,4.165825,4.416205,4.2662,5.03045,2.5665833333333334,2.5015899999999998,2.9410900000000004,2.2030866666666666,2.11462,2.8350666666666666,3.0204133333333334,2.2830766666666666,3.672735,4.29427,4.22758,5.2198,2.4306633333333334,3.4429,2.903,0.7025728571428571,3.970365,3.324555,4.410375,2.9205400000000004,5.206856666666667,3.305295,4.485275,3.77129,0.5444938461538462,0.5483635714285714,4.348015,2.7364385,3.09116,4.27175,3.927,1.698272,5.3367,4.160445,2.5333633333333334,2.496593333333333,2.1877925,2.0924229166666666,3.4436999999999998,3.0028566666666667,3.0519700000000003,3.002966666666667,3.4567333333333337,2.648425,3.0470400000000004,3.5737,4.313065,0.519231875,0.519231875,0.519231875,3.2530997638888888,3.505433333333333,3.666733333333333,2.559696666666667,2.7850933333333336,1.0723625,2.88794,2.9380666666666664,1.7162825,2.6359166666666667,2.385736666666667,0.9724933333333333,2.826065,4.79047,10.098394833333334,1.5921498333333333,0.6202650000000001,4.103775,0.6202650000000001,0.6202650000000001,0.6202650000000001,0.6202650000000001,2.190525,3.8234000000000004,4.00813,4.92851,5.9414,2.7837066666666668,2.69275,3.0772925,3.5071883333333336,4.77204,1.0802483333333333,2.282286666666667,3.131396666666667,2.62056,2.964983333333333,3.236005,2.2422999999999997,2.438585,1.1692777777777779,5.04015,2.50689,3.395665,0.88632,0.652566,0.652566,1.032142956521739,1.918462956521739,1.032142956521739,1.032142956521739,0.3380569565217391,0.3380569565217391,1.032142956521739,1.5274266666666667,2.4805466666666667,2.98069,2.990463333333333,2.579543333333333,2.71167,3.26439,2.8721200000000002,4.718505,3.630885,1.9635175,2.3368466666666667,1.59235,0.17965564248895435,0.17965564248895435,0.17965564248895435,0.17965564248895435,2.52253,2.5167066666666664,0.8900159999999999,5.0167,0.7544027272727273,1.701408,4.470534166666667,5.05215,4.09866,3.21417,4.42032,3.284145,2.477396666666667,1.19686,3.865135,4.460265,6.44175,2.53279,1.39558,1.9825799999999998,2.9198766666666667,1.5410633333333335,2.71129,2.7701666666666664,3.11136,4.26636,4.05549,3.0268,5.07465,2.2346333333333335,4.160345,5.1638,3.754595,4.392465,4.685995,5.18501,4.601390833333333,2.8863225714285714,4.861361666666666,4.020665,6.40185,4.267425,4.404365,2.141065,3.24528,4.29289,4.687435,4.512115,3.992665,3.698675,3.706635,4.063565,2.4201533333333334,5.18035,3.39084,7.5419725,5.97615,5.72505,4.863545,1.4520142857142857,0.909103,0.5693415384615385,1.766152,4.84114,5.3708,3.96323,1.522124,3.766835,2.905865,4.844135,5.1401,6.225337,4.12979,3.294815,1.6962240000000002,5.499445,4.06375,3.07897,1.8769825,0.96040875,3.941525,3.410225,3.8703525,3.60781,2.405,4.35482,1.7282966666666668,3.0311766666666666,2.379355,4.44105,6.00455,4.914415,2.22423,1.653775,5.4864,2.8929533333333333,8.86283,2.834525,5.03765,5.89655,4.450765,5.0999,3.56925,5.14525,1.97275,3.775405,4.695187000000001,2.4189825,4.19442,4.527755,7.01551,4.77313,2.9655400000000003,3.969075,3.924235,2.9220475,3.62889,5.2234,5.4804,2.4169075,2.77689,3.1669033333333334,2.42662,2.672375,4.36494,5.7917,5.1291,4.626965,4.772535,4.02649,4.66306,0.6348830769230769,3.1506666666666665,1.1983442857142859,30.71324676242236,2.48984,4.53532,3.172315,4.5133,1.59728,2.57431,3.2640779761904763,1.7060754761904762,1.7060754761904762,1.7060754761904762,1.7060754761904762,1.5580025,3.583625,0.31814333333333333,7.534135416666667,0.31814333333333333,4.33977,4.882395,1.9954275,5.209,2.781225,4.063649333333333,2.3949333333333334,2.4115066666666665,2.779253333333333,2.2544666666666666,0.6108515384615385,2.68155,0.7191641666666667,3.294366666666667,2.1505533333333333,2.4770259999999995,1.244425,2.4770259999999995,6.13775,8.11134,4.426415,4.135425,5.66015,5.9959,7.464736666666667,3.212975,1.473555,1.473555,2.3800733333333333,4.7544,3.6464,4.31329,5.892408333333334,3.990375,2.662495,3.88605,3.65172,3.28491,2.287405,0.86728,2.42477,3.68675,4.01699,5.262263333333333,1.9980125,3.78203,1.229962,3.199325,1.2082760000000001,3.282883333333333,2.9446933333333334,2.8111333333333337,3.251393333333333,2.8025866666666666,4.989725,0.6298861538461539,3.448245,3.607333333333333,2.6078066666666664,2.37763,4.108944375,3.3585999999999996,2.10835,4.71625375,3.898865,5.09855,3.946605,3.76921,5.55625,4.967905,2.0615366666666666,5.6821,2.3544555000000003,1.8756199999999998,3.1690466666666666,2.3363066666666668,2.71271,2.60334,1.8696,3.3040341515151512,4.252165,3.13763875,2.3878146666666664,2.3878146666666664,2.523205,3.96625,4.34889,0.6424136363636364,3.41993,2.879225,8.91449,0.8586263636363636,4.38978,3.31109,5.24625,3.499285,3.776455,2.398635,3.801365,2.369865,5.3928,2.6164658333333333,4.04786,2.75141,3.77596,2.6577366666666666,3.63211,3.92874,4.10602,4.839783000000001,3.219185,2.110145,5.21095,2.63249,4.38356,4.88466,4.398985,4.509955,4.050705,2.901895,2.2218766666666667,2.720613333333333,2.51607,2.734575,3.0838900000000002,2.6907628571428575,4.720163333333333,2.75286,2.3400733333333332,6.4754033333333325,4.9486679166666665,3.7335025,3.03585,3.7134,4.131555,3.6719,2.0798575,3.9498975,4.94302,4.7152,1.2833466666666666,3.87589,2.75733,6.5759375,4.789775,8.194729444444445,4.2115,3.45546,2.17007,4.344615,5.5861525,8.0814,4.84655,5.91743,3.78008,3.503005,4.1541,1.777408,4.432005,1.4279633333333335,3.68619,4.6657,3.3063766666666665,0.8358583333333334,9.106745333333333,1.1402111111111113,1.8821025,2.5102766666666665,1.9412266666666669,3.30175,1.3724800000000001,3.61764,3.60938,2.3617333333333335,4.365765,1.2257341666666668,3.7999,1.3936383333333333,2.9376021666666667,4.111105,5.1678,1.631005,5.80527,2.363544666666667,8.04493,4.392985,2.770775,4.11205,3.346945,1.2403729166666668,7.66067,3.204135,3.2949,2.45586,4.20035,2.14993,3.1060974999999997,2.32176,4.02755,1.381245,5.51425,2.771605,4.27115,0.7856099999999999,1.9718516666666668,3.86436,4.81225,5.355956249999999,1.537928,1.537928,5.85985,4.36537,6.1512,3.867825,3.44148,8.942755,4.39987,5.49225,4.070115,2.43354,2.5022082350230415,0.399156,0.18867580645161292,0.6679258064516129,1.4351264285714285,0.6688672350230416,0.18867580645161292,1.496836,0.47925,1.8342824285714285,2.164761806451613,1.9406975,2.2696225,2.286446666666667,4.9144,6.443236666666667,4.636435,4.950345,4.35157,5.04655,1.2378966666666666,4.85431,3.992695,5.65465,5.0378,4.9035,5.65355,5.57925,5.3994,1.2138083333333334,1.3569200000000001,1.784254,6.057854,1.363494,5.2508,4.66569,6.584620416666667,4.731765,5.2974,4.315175,4.54515,2.47614,5.259,5.19755,4.713045,4.789185,5.745119166666667,5.6707,3.76138875,4.339615,3.597766666666667,0.997871,3.5123333333333338,4.38826,1.0783,3.5955666666666666,4.528675,4.4491125,5.11085,2.528425,3.318375,2.7262733333333333,4.44081,1.995165,3.79718,1.3286933333333333,3.256325,3.80168,3.91139,4.436245,3.3858433333333333,0.5583441666666666,5.915,1.00123625,3.48025,2.7738899999999997,3.8084,2.0539466666666666,3.701425,3.85464358974359,3.24393,4.36873,15.53108288095238,5.413186666666666,2.1244925,8.57751,1.51539,3.9074,2.958,2.89505,2.0088733333333333,0.2188391304347826,2.724933333333333,4.412795,1.7682300000000002,2.3254433333333333,3.221966666666667,1.9032575,2.239266666666667,1.4651571428571428,3.286385,4.609985,4.99933,3.35993,0.5320228571428571,2.421116666666667,4.86013,2.90229,3.896355,4.242605,4.32338,5.38305,0.48602764705882356,2.5467999999999997,2.5467999999999997,5.304,5.106,4.900725,2.505275,3.5972333333333335,2.8281533333333333,5.1523,3.529175,5.340395000000001,4.65195,4.29203,4.484795,2.4924675,1.897714,4.34256,3.949685,3.942505,3.359365,1.80124,4.604165,4.472095,3.874025,4.612715,3.949745,3.80849,0.6035506666666667,3.04152,0.5961175,3.2362366666666667,3.35899,4.15363,17.31092476190476,3.51366,3.81105,2.4324833333333333,0.94835875,2.1548366666666667,2.59715,1.561164,2.32228,2.45411,4.701835,2.28935,4.038265,4.081325,2.065045,4.071125,3.00034,4.372825,5.2149,5.3698,1.47878,1.65501,2.377555,4.53115,4.79842,1.0921466666666666,5.0989,3.673855,5.6314,4.553795,1.5907333333333333,4.714685,3.31435,3.43185,3.53576,3.87192,3.1608966666666665,0.64200375,7.369265,1.5110860000000002,0.19765,0.19765,0.19765,4.85876,3.966015,2.8511133333333336,4.153225,2.882765,4.25484,4.401977857142857,3.6643533333333336,8.39105,4.161025,6.668099999999999,0.89552,0.76312,2.51205,4.520985,4.28688,2.0850633333333333,5.2765,5.35165,3.52973,3.73458,4.30055,2.22452,4.9096,4.4771165,2.3554533333333336,2.9079033333333335,3.0630733333333335,2.8222,6.10485,3.69616,0.6247771428571429,3.651135,3.14293,4.157755,4.8282766666666666,5.0882,2.929935,5.33705,3.56535,13.570376458333334,4.55301,6.772680583333334,2.51309,6.505239,4.207325,3.73144,1.9937125,2.3000504166666667,9.40501,2.2174533333333333,4.1688,4.097933333333333,3.7233666666666667,3.1744566666666665,2.812046666666667,2.0762025,2.2319075,2.94284,1.7925619999999998,3.816433333333333,2.4506533333333334,2.63555,3.13681,3.3463999999999996,2.4172000000000002,2.4172000000000002,2.50739,3.4522666666666666,3.2594499999999997,2.1852533333333333,3.13969,4.2363,2.7073199999999997,2.7188166666666667,3.753766666666667,2.18044,1.8878975,3.7934666666666668,2.70342,1.522434,3.856666666666667,2.2238433333333334,2.4548200000000002,2.8779866666666667,2.2567583333333334,3.4003,5.6151816666666665,2.44053,3.8435333333333332,2.08154,10.258624333333334,1.9154033333333331,1.8928466666666666,2.12494,0.9726944444444445,1.6432759999999997,4.227823333333333,2.684266,2.684266,1.596446,1.5307666666666666,3.609626666666667,3.6284783333333333,2.20956,1.4896816666666668,1.64948,4.5048493333333335,3.6235,4.0269,8.192063333333333,2.9610700000000003,2.5948433333333334,3.2991269565217394,4.182933333333334,1.8878975,3.1872433333333334,2.6639633333333332,3.268796666666667,3.3916441666666666,0.8826275,3.2516875,2.73873,2.90104,4.071455,3.0599666666666665,0.6552054545454545,1.805192380952381,5.20175,2.4460455,3.3535333333333335,1.4763516666666667,1.4763516666666667,2.1127525,3.641966666666667,0.952208,2.2800125,4.728203333333333,4.728203333333333,0.6420333333333333,5.549884,3.26435,3.905045,4.499515,1.236542857142857,3.3544,3.498366666666667,4.816430833333333,5.538347666666667,2.2608966666666666,0.6131840000000001,2.58961,2.6349566666666666,2.997055333333334,2.229226666666667,2.4001533333333334,2.7632366666666663,2.3477925,2.5516099999999997,0.7461145454545455,4.86546,4.7682271428571426,1.3426366666666667,1.7319571428571428,5.38635,2.177985,1.669845,4.089745,1.325974,3.315095,2.5636,3.5233333333333334,8.631496666666667,3.842035,4.196745,4.822085,2.335320181818182,0.757781,1.75732,7.005953333333333,1.8740533333333333,4.17588,3.943375,3.666335,21.063090000000003,3.1969133333333333,1.3817300000000001,1.0034875,3.1165133333333332,1.5313033333333335,4.151664,5.1725,3.3742285,3.2925066666666667,1.2605199999999999,1.42473,2.8915966666666666,0.543019375,3.4241333333333333,3.6608,3.08099,2.521106666666667,2.4417766666666667,2.8071433333333338,1.9891233333333334,2.8821333333333334,1.566406,3.7800333333333334,1.4497116666666667,3.88268,3.95606,2.5169533333333334,5.27845,3.288405,4.07054,4.853165,4.265825,2.9615833333333335,2.7153033333333334,2.3420799999999997,1.0480485714285714,1.0480485714285714,1.0480485714285714,2.3505975,3.338433333333333,2.57225,2.62188,2.3476033333333333,1.8871525,3.800575,4.68203,3.81122,6.49841,3.114075,2.2688525,1.9260825,0.9264516666666666,2.4775533333333333,3.95241,2.609783333333333,2.7687566666666665,2.41461,2.5379,2.6507366666666665,2.8149333333333337,2.77346,2.5442766666666667,2.211796666666667,3.2653266666666667,2.2140566666666666,2.1901575,1.6701925,1.580015,3.063973333333333,2.91119,2.055075,4.029495,4.83312,2.6556633333333335,2.332463076923077,5.21043,3.901575,4.54315,5.5098,4.38259,4.42602,6.1794025,1.260525,4.251825,2.6993,5.05425,5.2274,3.73697,3.419375,2.088025,7.532525,2.319035,0.7749575000000001,7.27094,5.16028,5.429450714285714,4.22406,2.7987325,1.6742375,4.90187,4.010225,4.226305,4.839995,2.43302,3.88165,4.198595,1.59235,3.83898,2.9202,1.317585,4.59099,0.5770188235294117,4.051103333333334,3.253525,4.65959,2.97547,1.76143,3.190765,2.43856,1.4439375,2.71667,3.205853333333333,3.0831866666666667,7.088309743589743,1.7609525,6.338067083333334,9.444745000000001,5.5731850000000005,2.969965,1.2884728571428572,2.9393,1.2884728571428572,2.891386666666667,2.20623,0.3723717647058824,1.2668067647058825,0.3723717647058824,0.3723717647058824,0.3723717647058824,1.2668067647058825,1.2668067647058825,0.3723717647058824,0.894435,4.049625,3.50504,3.21168,3.34902,3.227085,4.184975,2.7104183333333336,1.6594919999999997,6.1506783333333335,2.9701233333333334,4.113055,2.53075,1.0548636363636363,1.1413425,4.501275,3.668635,1.133,1.409446,0.7163318181818181,2.835505575757576,4.06618,4.986075,3.4004666666666665,5.259081666666667,0.5327253846153847,3.95688,2.17350125,2.7397733333333334,2.4589133333333333,3.3563666666666667,2.5255266666666665,2.869286666666667,2.696153333333333,3.086505,3.5739,5.02365,4.54187,2.0064,4.89991,4.27811,3.199165,3.918165,3.398165,0.36794533333333335,4.782555,3.523215,2.968265,2.781344,4.247605,3.868965,2.003685,3.11406,4.02803,8.14025,5.0721,5.3616,4.61949,4.136325,0.781515,2.21253,1.90184,1.32313,1.8740866666666667,4.417675,5.3997,4.093245,4.73017,3.292484,2.6346783333333335,0.9458366666666667,4.02613,1.2216466666666668,1.1378316666666668,3.38323,3.48185,4.6253,1.2293,2.3365966666666664,8.55406,3.1595,3.1391441666666666,0.8881875,3.35154,11.789396666666667,3.42211,4.192135,3.369655,2.9196,4.603195,5.0348,1.980268,4.13591,0.5362123076923078,4.829105,2.24918,1.74555,1.74555,3.5584666666666664,4.06678,1.51335,3.905815,1.2718828571428573,3.674435,2.7607858333333333,3.31183,5.00005,3.47549,3.9226946666666667,2.605025,2.7640096666666665,2.7640096666666665,10.302945,0.6936289999999999,2.98003,3.0800666666666667,2.176795,2.0373325,0.8706357142857143,1.499595,1.06803,2.131145,4.507865,2.591575,4.2494725,2.0884933333333335,3.854795,4.049505,1.6635066666666667,2.0727775,1.0935066666666666,6.062431,2.00163,2.117125,1.676978,1.711702,1.0034875,2.2351625,3.474845,2.0685733333333336,3.0766633333333337,2.5439766666666666,2.700976666666667,1.85821,3.14016,2.4447966666666665,1.2958633333333334,2.0060066666666665,2.8062066666666667,2.7934533333333333,2.4791633333333336,1.2019266666666668,2.554136666666667,1.9509266666666667,2.1589733333333334,0.31041052631578947,0.41604916666666664,2.5046166666666667,2.260803333333333,3.127225,3.152046666666667,2.88664,4.663255,5.53675,4.418785,4.56539,4.28395,3.96907,2.72011,3.46748,0.7312772727272727,0.06991704545454545,6.8909,0.06991704545454545,3.084165,3.09573,5.2591,3.5326,6.25995,4.609925,2.0585733333333334,2.4872466666666666,0.9918783333333333,5.1253,6.3189,2.83269,5.3014,1.845495,3.71609,1.986201956521739,2.92461,3.2155166666666664,4.00239,4.8983083333333335,3.248665,2.2026499999999998,2.2026499999999998,4.127335,7.61252,3.568365,2.1945966666666665,2.35773,3.89752,2.9168,4.913345,3.40701,0.9358533333333333,3.89959,2.27192,2.51283,4.38042,1.024945,2.3478033333333332,4.04222,3.38608,4.63059,3.076335,2.8308,3.97297,3.8821,4.34743,4.79653,4.30126,3.1716586111111114,3.85991,2.6445933333333334,2.4764,2.4576100000000003,3.7641333333333336,4.209435,2.9938266666666666,4.972466666666667,4.0384,3.645205,5.20895,4.46571,3.56362,1.504852,1.49813,4.14103,3.2447466666666664,1.6440733333333333,2.7917,3.505755,2.97543,3.93476,2.7226199999999996,2.310709166666667,12.639897583333333,2.2751933333333336,1.771142,4.53047,1.049364,3.1342833333333338,3.504805,4.7644,3.06569,1.1977222222222224,2.2326,2.5741666666666667,1.431086,4.105155,1.0222475,1.0222475,3.5779533333333333,1.5960166666666666,1.9819366666666667,1.779545,3.202,5.25765,2.26708,3.03306,3.347716666666667,2.7642,2.783103333333333,2.04282,6.28465,5.5266,3.25875,0.6806769230769232,3.808935,3.364365,1.0358909090909092,5.3753,3.2013599999999998,8.28246,4.767525,4.29822,3.626255,1.3284325,3.20308,4.69611,4.40616,3.73668,3.60043,4.25845,3.394325,3.597566666666667,3.597566666666667,4.137505,2.70306,4.01443,2.042055,5.5729025,5.05391,1.4721650000000002,4.479525,1.00275,5.5793,3.940045,4.795515,4.57539,3.671835,2.51619,2.4746725,4.32329,4.35323,4.952125,4.03973,1.8659225,1.4892660000000002,4.253365,2.090316666666667,5.3377,3.092385,3.60149,6.729010000000001,3.87746,4.10858,4.905035,3.719305,4.29912,8.327945,4.179065,3.18935,8.413425,3.63819,0.5717671428571428,1.994592442002442,4.341225,0.6154066666666667,4.638205,4.00825,4.629435,4.49223,3.311875,3.591665,4.53376,4.749955,2.5829,0.6986985714285714,4.51555,4.245655,4.391545,4.332105,2.72235,4.458765,3.374095,0.63879,3.435635,3.718505,2.53645,3.1935966666666666,3.886525,2.146430833333333,5.37385,5.2141,3.6230824999999998,3.1988233333333334,5.2993175,5.2993175,8.338886666666667,2.0704599999999997,0.91767625,0.91767625,23.015568333333334,2.6325,7.6313699999999995,0.42412333333333335,1.38297,2.878033333333333,0.9459540000000001,3.819755,3.849875,1.957555,1.957555,3.839515,4.819415,3.614735,2.8398450000000004,2.8398450000000004,3.499395,4.34972,3.95483,3.4788666666666668,2.0667566666666666,2.52557,3.987358,2.13413,3.57695,2.69464,2.7916339285714287,2.7916339285714287,3.1958333333333333,0.8889733333333333,2.528043333333333,1.5098866666666666,3.31869,2.8290166666666665,2.700196666666667,2.32939,4.366275,2.496615,2.9112066666666667,5.312036,1.271522,2.23631,3.145005,2.38793,4.038045,5.504427682539682,1.5458966666666667,3.6204666666666667,2.428005,5.45547,6.31298,1.797455,4.894246666666667,4.895512666666667,2.8387888571428572,4.636466666666666,1.0824385714285714,1.78518,2.969515,3.873670476190476,1.2215766666666668,2.27015,1.757815,1.6013480000000002,1.98813,3.4273760000000006,4.9402635,1.0627833333333332,1.31813,2.9766766666666666,12.8257,4.479749999999999,2.7847,1.1544899999999998,2.492134761904762,0.9660414285714286,3.2316333333333334,3.9786449999999993,5.06975,3.5551333333333335,5.78255,1.52744,3.6889333333333334,4.040385,2.8148133333333334,3.7893277777777783,2.2570466666666666,1.0789211111111112,2.6384666666666665,2.4412066666666665,7.523438333333333,2.709291,2.435026666666667,0.74173,4.6656,3.6701333333333337,0.949406,5.859726666666667,2.04456,2.43626,5.39055,1.2201555555555557,2.71884,0.9991818181818182,2.901286666666667,4.203345,2.8706833333333335,2.8795366666666666,2.2262766666666667,2.36518,4.30882,4.69356,4.91701,1.809895,4.50237,3.45683,4.24366,3.363524,2.778256666666667,4.283540666666667,1.070454,2.8461857142857143,4.780505,2.691825,4.031761666666666,1.29015,2.4139466666666665,1.9656600000000002,1.9656600000000002,7.575388333333334,3.1962333333333333,5.196298333333333,3.4600633333333333,1.8001666666666667,2.59254,4.559265,5.702466666666667,8.404166666666667,4.626239,2.6483645,1.8332166666666667,1.9842546666666665,4.2007433333333335,3.89075,1.463636,1.90827,2.9915962499999997,1.1461225,3.06075,18.61501333333333,3.0741666666666667,2.8290933333333332,2.6733733333333336,2.905553333333333,2.24408,1.95741,2.977263333333333,3.6235666666666666,2.372263333333333,2.670723333333333,5.618496,2.3772233333333332,4.240107142857143,2.597233142857143,2.2415151428571427,1.50707,3.66593,2.1265975,4.01063,4.978145,3.82285,3.086879166666667,3.1860766666666667,2.2201933333333335,3.31863,3.467966666666667,3.360466666666667,3.165103333333333,0.8225881818181818,5.1977,2.676995,3.0148466666666667,2.7501666666666664,1.83772,2.0443583333333333,2.0443583333333333,3.2068516666666667,1.8108683333333335,4.624015,4.125345,3.43521,4.07066,4.39322,4.5330425000000005,4.5330425000000005,3.80803,2.97622,4.35782,2.77449,1.6251799999999998,2.2284566666666668,4.484195,3.85906,2.71205,3.39228,5.4797225,3.586933333333333,6.302941166666667,3.11929,0.8525959999999999,0.8525959999999999,3.282525,4.65627,3.8585,3.434078,2.56246,1.8487266666666666,1.6424533333333333,2.9392033333333334,5.816428,1.383305,3.95265,3.6402666666666668,4.01949,5.1053,4.918715,4.680301041666667,3.1553566666666666,2.23792,4.20094,3.82154,2.0782675,1.123672,4.01733,2.77135,5.89981,3.12846,2.62793,3.290595,3.813455,3.503305,4.565895,3.097285,4.475965,4.015725,4.2536,3.65834,3.68439,3.77354,3.99902,2.733333333333333,4.262815,3.102705,4.94944,0.6116222222222222,2.285205,1.7617725,2.04451,1.8571275,2.6611933333333333,2.62224,1.8311633333333335,4.340835,5.63107,1.9065066666666668,3.901625,4.38186,2.388675,5.801853333333334,4.086784166666667,4.26228,4.87694,7.626458333333334,2.00117,2.8378266666666665,1.75899,2.55765,1.891185,1.864865,4.148105,3.85682,5.41365,1.00756,3.155625,4.249065,2.2093275,5.0325,3.74208,2.635505,3.7372666666666667,3.287225,2.112005,1.8244295000000001,2.7043,3.239025,3.33835,1.984615,2.7883,2.7883,3.540575,3.468025,20.21443,1.07565,5.351353333333333,1.81402,2.08018,3.551995,3.95656,1.8036275,3.879005,4.784085,1.3285733333333332,1.3285733333333332,1.3880566666666667,1.6666166666666669,2.315513333333333,3.1523066666666666,4.436888333333333,3.067065,3.3787333333333334,0.4740152631578947,3.3792552631578943,2.02354,2.356555,4.39211,3.577205,4.04161,3.5856,4.433485,4.57332,2.0759025,3.44991,5.636076666666667,2.259905,3.510085,5.1058,2.26748,4.727485,5.91625,1.228492857142857,1.8580359999999998,3.4866333333333333,0.68082,3.0048033333333333,3.15485,4.713955,4.93193,2.8375669444444442,7.902336666666667,2.8827866666666666,2.7246799999999998,0.42875705882352944,4.414475,5.062710238095238,2.8789538095238094,5.3947,3.88585,2.5228533333333334,1.690096,5.263292,4.23049,4.154105,2.776675,1.9520425,3.516335,3.981733333333333,2.9584266666666665,1.9521725,3.9631016666666667,5.7329675,2.72486,3.914345,3.526885,4.11498,1.4717142857142858,1.4717142857142858,3.20772,2.8457500000000002,4.361695,4.71507,6.62365,3.55887,2.65275,2.19625,1.4190283333333333,1.3125128571428573,4.749515,5.41238,4.9485,5.98885,4.401585,6.59677,3.46594,2.8666666666666667,3.8514626666666665,2.177706666666667,3.0529025,1.519064,4.471415,2.3920233333333334,3.919465,4.86143,4.221015,2.7798533333333335,2.8929533333333333,1.363792857142857,2.3210575,3.766666666666667,1.77611,0.58921875,3.0049833333333336,2.594673333333333,2.2830766666666666,2.1894766666666667,1.8553675,1.49653,0.685610909090909,0.685610909090909,3.401033333333333,1.6321325,2.2897525,3.210665,5.4549,4.030075,5.74755,3.936105,4.34059,2.191126,1.4278366666666666,2.74607,4.59317,0.8879675,3.3624525,3.301355,2.929495,2.28753,4.27199,2.8745,2.06007,1.1042457142857143,3.58008,8.308475,3.359635,1.520762857142857,4.296165,2.975305,2.783995,3.585815,3.021875,1.7901866666666668,1.054665,3.700695,2.5784416666666665,2.3126599999999997,1.7480633333333333,2.2362466666666667,2.261903333333333,2.5604066666666667,2.83786125,1.3711033333333333,1.8243433333333332,1.0945325,6.232362500000001,5.6759,5.78005,4.04433,4.13434,2.8592933333333335,1.5862735897435898,4.438155,4.86327,2.6803,4.86685,2.19474,4.59243,0.9533722222222222,4.130365,3.831255,1.905985,8.03792,3.62843,1.8710125,1.8857975,1.7798,2.557975,3.1407633333333336,1.1738944155844155,2.9145800000000004,5.68825,3.432915,4.063385,5.54025,5.155,5.58655,0.8047775,4.17839,4.40361,4.207945,4.81842,3.9466716666666666,4.485625,4.6131,2.847715,1.5867533333333332,1.5867533333333332,4.93786,5.402408333333334,2.929085,2.6096266666666668,4.03663,4.42982,1.525998,4.04358,5.22565,3.613885,4.02127,2.9609733333333335,2.6611233333333333,4.90086,2.36559475,10.576392389664258,1.8987999999999998,0.7949425,2.5588166666666665,1.7089925,2.570325,2.124225,1.784994,2.7518999999999996,4.80241,5.19945,2.8352500000000003,1.5384666666666666,6.0428604761904765,1.4435142857142857,2.8062799999999997,0.5001238095238095,4.09505,5.5558,3.392915,4.58347,11.351485,5.01585,2.8885633333333334,3.20641,4.463405,2.9095766666666667,4.51103,0.877115,1.0907016666666667,0.8230345454545455,5.6423,4.25945,1.6898879999999998,4.741935333333333,4.29073,6.59825,4.737035,4.85691,4.45948,6.20085,3.974575,5.3464,3.86894,1.217004,4.094875,5.35035,2.853505,4.057895,2.956935,2.629565,1.223775,5.1063,3.957605,1.262925,3.4254,2.931706666666667,2.5877766666666666,2.525186666666667,2.47186,3.0852766666666667,0.7181845454545455,2.3607400000000003,2.6889266666666667,2.6846033333333335,2.0113,2.9661166666666667,1.973755,1.53915,2.26524,1.858105,2.050115,3.2956800000000004,2.64172,0.629191,2.87721,3.466,4.63226,2.3165666666666667,3.7259,5.3408,5.07245,3.37429,3.88687,1.296217142857143,3.18066,2.5130588888888887,4.2980366666666665,2.6817325,4.178705,5.3124,4.864445,4.024005,4.0934333333333335,1.040416,1.040416,2.196230769230769,1.61191,4.11021,2.7014095,2.7014095,4.785115,6.05485,3.0428,1.181695,1.5425428571428572,5.71885,3.64435,2.3756233333333334,3.24795,3.022175,3.09476,2.3756233333333334,4.5014,3.35105,2.8101233333333333,2.877405,2.167365,3.24659,6.52995,3.112195,4.855525,4.73881,6.5634,6.32455,6.547025,6.547025,5.36775,4.844065,0.5314423076923077,4.758705,4.1817,3.091635,2.83891,8.060563333333334,2.8920033333333333,3.84805,3.729705,2.5614333333333335,4.498235,2.4632,3.3984575,2.9756666666666667,3.3238633333333336,2.521176666666667,1.5457079999999999,1.5457079999999999,3.603205,3.768325,4.53983,1.761358,1.389582,46.91005022727273,2.584756666666667,0.8052127272727273,3.04421,1.794645,3.1749833333333335,2.6773633333333335,2.9211666666666667,2.941445,2.679406666666667,1.9789266666666665,0.9810825,4.14377,3.265335,3.66163,3.816815,5.06075,5.0018,5.1082,5.3584,5.087,4.747445,5.3741,6.26884,4.868565,5.3445,2.109155,3.792725,6.71175,5.0385,3.27908,3.938455,3.47455,2.57372,4.02886,4.46031,2.9437033333333336,3.829466666666667,1.577356,4.231445,1.365982,3.404505,4.00907,3.56488,6.33676,4.23775,1.92932,3.915545,3.91229,4.01453,0.9044975,2.950685,2.95192,4.421584523809524,1.284535,4.60205,1.3286475,5.81045,0.7127344444444444,3.8526680000000004,9.800464166666666,4.200125,3.283305,3.21254,1.845,4.046225,5.37045,2.9428199999999998,4.50226,8.9493875,3.3932,1.9540600000000001,2.823033333333333,2.7297233333333337,2.7516433333333334,2.7929838333333334,2.72798,2.60697,3.0217533333333333,2.7398866666666666,3.1298933333333334,3.46397,2.374843333333333,1.5940866666666667,4.670737333333333,3.9575,2.60228,4.964807333333334,2.77598,1.01523625,2.08046,2.9065366666666663,5.319243571428571,2.869825,2.0298283333333336,2.0298283333333336,1.5956775,1.4804,2.25138,1.959002,5.6735275,4.2775075000000005,2.0504875,2.930476666666667,3.6626333333333334,2.1480675,0.5873625,2.4932933333333334,1.9639675,0.5710692307692308,3.94184,2.55455,2.477505,3.70819,3.5752758333333334,2.4341666666666666,1.6411666666666667,1.1177783333333333,2.191285,3.65453,3.67967,4.17031,2.789846666666667,3.979765,3.60323,1.1420636363636363,9.637170000000001,2.66911,3.404535,1.2778625,2.83573,2.2511925,2.2511925,2.2511925,4.893095,5.4051,1.631725,4.925895,1.5078179999999999,5.462703333333334,1.488182,3.83198,4.32091,4.13482,4.88015,4.46811,2.015325,8.42563,3.56873,4.99372,3.416475,4.1053733333333335,3.29162,3.1206666666666667,3.82296,2.5540133333333332,4.453942857142857,4.4730558333333335,1.61256,4.019245,1.61256,3.45896,4.473204166666667,5.1336425,4.473204166666667,1.9282033333333333,5.75895,4.50809,4.233715,2.6707733333333334,2.8477633333333334,4.07803,3.300605,5.25135,0.5109078571428571,2.93751,2.92928,4.825128333333334,4.702945,2.3129475,4.65904,6.399345,3.57933,2.72821,3.041775,2.18114,3.8284,3.989705,4.68364,2.41719,3.85328,0.87331,5.7327,3.090435,4.251485,2.32166,3.1884099999999997,2.323306666666667,2.706386666666667,2.7356599999999998,2.8556833333333334,3.02737,2.51045,2.51045,4.297644166666666,2.84961,4.33795,11.533412499999999,0.939921111111111,4.182825,2.3460733333333335,2.432933333333333,2.5864033333333336,1.4287125,7.740808666666667,3.3829333333333333,3.436535,3.6436766666666665,2.2267266666666665,3.8206,4.177340583333333,1.96724,0.4249966666666667,1.442142,1.5265175,4.897825,2.940135,3.34745,3.7706516666666667,3.4527441666666663,2.26162375,4.806155,4.435845,3.941655,4.50472,2.27059,3.585595,2.5878533333333333,5.509356666666666,3.28654,4.842105,4.032235,3.94806,4.27043,2.080995,3.953465,3.60977,3.1619166666666665,3.6503,2.93102,3.178385,4.037885,3.68378,2.6374400000000002,4.42111,1.337675,3.67358,2.81987,3.992015,4.241365,3.9447,4.759355,2.56093,4.266695,5.02835,4.09637,2.8578733333333335,2.299485,3.13415,2.51568,0.8974733333333332,4.45243,2.19355,3.472765,2.872505,4.16238,3.41429,3.08002,3.25361,4.037885,4.619487333333334,4.057335,3.017005,1.52576,3.439925,2.501105,0.9017733333333333,4.37088,8.690485,3.488225,3.77672,3.7525,4.71425,3.77007,2.267695,4.08027,4.02867,3.26691,3.34395,3.7495,0.68182625,1.2393157142857143,6.4258575,1.6235425,2.746685,4.817931,2.528425,2.275615,2.80756,7.68785,2.72752,3.959125,3.92286,0.7924566666666667,3.51125,2.78765,3.85797,3.854605,5.773045,0.685349,3.23366,9.55674,3.289225,1.04679,5.00149,4.741735,5.2667,4.28256,4.428105,3.31016,2.6223233333333336,7.062085,0.794407,3.59549,3.84853,3.339615,4.006145,2.251895,4.134905,1.70305,3.90072,3.882725,3.83558,1.645925,4.53491,4.46175,2.3362025,2.280955,2.15186,0.949406,4.191815,3.3742285,1.23641,7.770665000000001,5.84495,4.298165,3.98547,3.6712,4.376155,1.452157142857143,4.243525,4.001475,5.3383,3.82954,2.5432633333333334,6.4649587393162395,0.92154,0.92154,2.5960633333333334,0.9255485714285714,4.268825,2.9360166666666667,1.042805,1.8177766666666668,0.42339666666666664,6.133985,1.021245,2.82328,3.68936,4.06395,3.69875,4.160215,5.454,5.779615,3.389255,3.30474,2.47023,4.05334,4.41431,4.19672,4.02362,3.747395,5.98305,4.33251,4.271430555555556,5.6355900000000005,3.69028,3.2918000000000003,2.405145,3.2918000000000003,7.079389,40.69827218290043,3.9146,3.60943,2.9334066666666665,4.165225,4.45404,3.467105,3.745235,3.888485,4.41939,4.01147,1.60067,4.600225,2.903245,4.36831,5.0485,4.760895,2.45207,4.296715,3.969305,3.368885,1.427594,0.64089,1.6405239999999999,3.6254666666666666,2.86347,1.2651125,2.8783066666666666,2.50747,2.62525,3.5864666666666665,2.9421966666666663,1.403626,2.4504966666666665,3.6715,1.8999329729729728,2.862546666666667,3.195764,2.9330233333333333,2.5809366666666667,3.3403333333333336,1.2000333333333333,3.618185,4.087785,1.2420416666666667,1.2420416666666667,1.2420416666666667,1.2420416666666667,2.991081212121212,2.2279766666666667,2.3987,3.183675,4.81298,4.92119,4.00148,4.2763,5.32775,4.60015,2.317205,5.8838,4.011545,2.89694,3.89876,2.77199,4.069165,3.93274,0.6997930769230769,1.4482428571428572,1.6326933333333333,4.35668,3.854385,4.523015,4.1566,5.981826666666667,2.3390233333333335,4.256655,1.4837766666666665,3.60128,4.97753,1.6816633333333335,5.0683,0.7400633333333334,4.22149,1.140722,1.17246125,3.671615,4.146825,5.04665,4.884785,6.01685,4.195905,1.530492,2.689495,1.5837425,3.553625,3.049255,2.5228533333333334,1.9595225,3.208925,1.3527133333333332,3.50892,4.87207,3.0056333333333334,5.8146,119.0779198140332,0.49274888888888885,4.75412,2.3986733333333334,4.849245,4.16794,3.32254,1.53586,0.3166566666666667,3.008285,3.80162,5.22235,3.168035,3.70794,4.464685,4.221285,4.65245,8.576826666666667,0.70399,2.725955,0.9639575,10.08234,3.11662,3.641305,0.9053644444444444,2.21964,2.760395,2.186225,3.1906966666666663,3.13696,2.6277933333333334,4.35951,3.06265,2.3129566666666665,2.36822,3.07159,3.368985,3.00452,3.702505,3.91522,3.476135,2.40617,3.992155,4.270285,3.218325,0.9730711111111111,2.6131366666666667,4.35951,4.823125,5.4476,4.15561,3.702575,1.92691,11.415939999999999,4.38441,2.766875,4.1719,5.27735,0.48363133333333336,0.48363133333333336,3.92514,3.92514,3.191065,3.5596,1.8097554545454546,0.5655283333333333,2.95802,4.321295,3.95072,3.197095,4.11804,5.307635,4.510835,2.11607,4.73512,2.1200275,3.036525,4.0594850000000005,1.832355,2.17374,0.5272871428571428,1.3229551428571429,1.3229551428571429,1.987415,4.335925,4.484845,4.83806,6.46187,2.72487,3.102945,1.95739,2.06787,3.9186258333333335,3.61628,4.697096666666667,2.336135,4.697096666666667,4.58586,3.609945,5.95875,4.09458,2.43194,1.9524033333333335,2.5111166666666667,1.4813025,1.45595,1.452595,1.7744975,1.59863,1.69693,3.7909,4.360815,2.340295,6.7882,2.731056666666667,4.16906,3.40105,4.17112,2.9868333333333332,2.79794,5.896133333333333,3.3045233333333335,4.512936,3.0668100000000003,1.4090275,2.50338,2.69627,2.21368,6.08515,4.3577825,4.64375,12.138471986601118,0.7328441666666666,1.949811,2.137865,1.532092,1.249852857142857,2.494015,2.30561,2.4194625,2.3987675,0.7350069230769231,1.9120925,0.5125205263157895,4.2729,1.93006,3.662795,4.222395,2.330235,5.57413,3.73959,6.6464,4.056145,2.944005,3.04881,4.479935,4.82408,2.4549173333333334,4.49604,2.0864925,2.0864925,4.70765,3.70647,4.07091,4.358985,3.1493966666666666,3.89758,4.87856,5.11215,4.54891,4.622665,4.692715,4.34071,2.73896,4.789515,1.1313133333333334,4.55691,4.724575,2.5293766666666664,2.18206,4.58733,1.5149783333333333,5.18,1.84315,5.684836956521739,3.92239,4.026475,1.64119,3.5594175,3.5594175,12.23978,4.0379,3.77141,1.123955,4.2083770000000005,2.104885,1.4761225,2.30405,1.68407,2.0192775,1.741696,3.156465,5.93475,1.7334075,4.7754,4.571140833333334,5.37925,2.0889925,2.59247,3.00297,4.39657,5.3592,3.96788,6.837608333333334,3.149293333333333,2.7543133333333336,0.36942444444444444,3.820275,4.210115,3.2646800000000002,5.96696,2.60021,3.0131599999999996,1.2470533333333333,1.419205,0.58921875,1.442142,3.02045,1.4454733333333334,1.56532,0.618861875,1.362078,4.61772,2.3928375,0.5612776923076923,1.53444,1.768345,1.578238,1.32703,2.0355375,1.419205,2.4189825,1.362078,1.362078,0.5612776923076923,1.519642857142857,2.45108,1.2215766666666668,2.5605,0.5612776923076923,2.531725,2.45108,1.1972416666666665,1.1972416666666665,1.1972416666666665,1.86879,1.16979875,0.5612776923076923,1.101772,1.068635,0.9726944444444445,1.772688,2.64015,0.8358583333333334,1.9862375,1.5231857142857144,0.5612776923076923,1.811306,1.419205,1.9233500000000001,1.7616166666666666,0.871751,1.9233500000000001,1.0671844444444445,2.3362025,2.389935,2.4349675,1.068635,2.09634,1.3527133333333332,1.3527133333333332,0.8978345454545454,0.8978345454545454,0.8978345454545454,1.2470533333333333,1.419205,1.5231857142857144,1.53444,0.8921942857142857,1.7616166666666666,1.429402,1.522434,2.00164,1.2470533333333333,2.7847,12.1450775,0.618861875,2.6088999999999998,1.7244666666666666,2.3558725,0.9660414285714286,0.9660414285714286,0.5612776923076923,0.9703966666666667,1.49653,1.5231857142857144,1.83853,1.7616166666666666,1.0921466666666666,1.0921466666666666,1.701408,0.19765,0.19765,0.19765,0.19765,2.8875766666666665,1.0671844444444445,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.3825759090909091,52.51524704906205,1.5311275,1.4826,1.5231857142857144,1.7244666666666666,0.8921942857142857,0.6298235294117648,0.74173,0.74173,0.74173,0.74173,4.310233333333334,15.715821250000001,3.3875333333333333,0.5822727272727273,1.474948,1.474948,1.474948,0.5822727272727273,3.02045,0.5612776923076923,1.811306,1.56532,2.55998,1.0671844444444445,2.3129475,1.0671844444444445,1.319146,1.319146,2.098733333333333,2.098733333333333,0.5612776923076923,1.9415220000000002,1.9415220000000002,0.9505909090909092,0.19765,3.02045,1.3832433333333334,2.428005,0.5822727272727273,0.5822727272727273,0.5822727272727273,0.5822727272727273,0.5822727272727273,1.7244666666666666,0.3825759090909091,1.0671844444444445,2.0948675,2.0948675,2.4746725,2.7738899999999997,0.6420333333333333,0.6420333333333333,3.3907000000000003,4.121333333333333,1.236542857142857,3.238606666666667,0.9679059999999999,2.515425,2.0704599999999997,1.024945,2.9512466666666666,1.7589475,3.1988233333333334,5.2347,2.310565,1.164411111111111,4.349975,4.357055,2.45827,1.725076,2.290273846153846,4.74807,1.859455,2.8120933333333333,2.8758366666666664,3.079546666666667,2.50765,6.2099866666666665,3.85768,0.19765,2.9167533333333338,4.72824,3.386255,4.50161,4.306545,4.156495,2.6309766666666667,1.8200299999999998,4.085955,4.780275,4.318495,4.613615,4.91703,3.20864,0.7114383333333333,6.862830000000001,1.507115,2.886102,4.381995,2.4926133333333333,2.4926133333333333,0.8368581818181817,1.9595225,3.919565,3.12641,4.9662,4.1579,4.630585,4.986505,1.0742800000000001,4.748925,5.6151,6.638152083333334,2.3184333333333336,4.232145,3.868,3.90764,3.64732,3.81784,4.3994,6.094872499999999,5.13195,4.2281949999999995,3.65666,4.504993333333333,6.989186,1.9633575,2.23311717948718,2.93798,1.8203866666666666,2.7041166666666663,1.88527,5.3157,2.8519400000000004,5.8383,1.8208379999999997,4.70778,4.01999,3.647355,4.44819,3.80341,2.5412399999999997,2.8371999999999997,2.7331333333333334,2.6420333333333335,2.52913,1.6938333333333333,2.81662,2.7638599999999998,2.21036,2.21036,4.529965,3.0034266666666665,2.04141,2.99047,2.0769233333333332,2.58382,3.1085733333333336,2.7116166666666666,3.01613,5.2154,3.858985,3.718345,3.110634,3.110634,3.981025,3.2027900000000002,3.82338,4.62752,3.9602,3.47878,3.400705,7.54745,1.97525,2.25293,3.56462,3.04207,1.4574999999999998,1.4574999999999998,3.525715,1.88084,3.9138553333333332,3.78842,3.502155,2.3155145,2.1621939166666664,0.5611541666666667,3.329735,3.91341,1.8498775,2.451265,4.073135,1.26413,4.38417,1.2520333333333333,0.42203357142857145,0.5795121428571428,21.094346759920636,0.5795121428571428,0.42203357142857145,0.7369907142857143,9.426916666666667,2.6225833333333335,3.507645,3.916305,3.4145700000000003,2.760015,4.169395714285714,2.340955,2.346935,3.596315,3.12106,4.080245,4.18818,3.614215,2.298335,3.155365,3.2959,3.966285,3.264325,1.1188289999999999,1.1188289999999999,1.1188289999999999,1.1188289999999999,3.382885,2.89332,3.140445,1.8912066666666665,1.1781466666666667,2.48042,3.68586,3.785895,2.91112,3.123635,2.56568,2.7607858333333333,4.00867,4.137525,1.116495,2.4916666666666667,1.0706099999999998,2.652163333333333,1.8168933333333335,3.7890333333333337,4.701715,2.49874,3.38498,4.0733966666666666,0.8745053174603175,0.2909164285714286,0.2909164285714286,0.5835888888888889,0.2909164285714286,0.2909164285714286,0.2909164285714286,0.5835888888888889,4.42178,7.161038333333334,3.85029,0.53775625,3.891655,7.984439999999999,3.491985,3.0433033333333337,1.1547283333333334,4.202155,5.1068,4.22017,4.86817,1.707114,4.64494,2.2467333333333332,2.3866,3.39467,5.16095,0.8438428571428572,0.8438428571428572,3.58124,2.7832133333333338,2.23815,3.82091,2.79621,6.56715,2.708305,6.337,6.01245,5.56965,3.30933,1.81746,3.90341,3.5731,2.071,3.94788,3.217995,1.864675,1.2042066666666666,4.248035,3.439825,4.8282766666666666,6.097284999999999,1.4761916666666668,4.104735,1.1822233333333334,2.5485966666666666,3.454045,3.964785,0.40570214285714284,3.453835,4.190285,0.935965,2.4919866666666666,7.586668333333333,3.07219,2.292255,5.428275,4.518365,3.8063,1.4032616666666666,5.476423333333333,2.5789033333333333,3.1372133333333334,3.5965000000000003,2.2274366666666667,2.2274366666666667,6.173575,6.173575,3.676939285714286,3.676939285714286,10.0772,3.676939285714286,3.676939285714286,4.36919373015873,6.8167,3.628935,3.3034175,2.9787133333333333,4.30865,3.167635,3.1657433333333334,3.15833,4.546285,3.1638466666666667,2.63754,3.2189433333333333,2.2659833333333332,2.797655,4.59789,7.146129999999999,6.37023,4.860815,3.81286,4.050725,6.677948000000001,5.1187,4.495255,3.74918,4.23148,2.28244,2.632205,2.09882,5.17015,5.5144,4.605035,4.33736,2.3414,2.3707533333333335,6.79138,1.86879,2.5611866666666665,3.310496666666667,3.310496666666667,3.34209,4.9831,0.7738925,3.483033333333333,3.616225,2.82908,10.0797475,4.047655,2.827643333333333,2.4043033333333335,4.583965,5.83335,2.947035,5.3427,2.5995,4.701205,2.8988757142857144,4.143135,5.0894,4.616845,0.9191600000000001,3.3164599999999997,0.96960375,2.5839466666666664,5.00028325,8.531843333333335,2.4687,3.230026666666667,6.616278333333334,1.6567399999999999,4.484355,5.279,3.53266,3.78426,2.23103,4.467945,2.32972375,0.5127246153846154,4.99551,2.958785,3.4465,4.45695,4.60375,5.1021,6.437704999999999,4.393525,5.4577,7.206285,54.87764,4.462385,3.88366,4.88052,5.74885,4.371055,4.985935,3.830655,4.68485,1.9829175,3.84873,3.886715,4.67322,2.771985,5.0337,3.99357,1.699202,5.186,6.22355,7.007656666666666,5.2994,3.61371,4.44753,3.39202,3.234605,3.48747,4.250445,4.04069,7.2828,2.6912,1.111187142857143,2.4975612500000004,0.627628,0.627628,3.12531,0.627628,2.53293325,2.53293325,3.27936125,4.69328825,5.081607,2.4975612500000004,4.423414166666666,2.3033866666666665,1.3908666666666667,5.58875,2.24053,6.83561,5.51281,10.867727,3.135816666666667,2.5697566666666667,0.21783,1.961832,2.1405366666666668,0.841955,1.2290833333333333,2.9079866666666665,2.262105,2.605,0.5965119999999999,26.926325833333333,1.8510875,0.7981692307692309,2.4571533333333333,2.4571533333333333,0.38246388888888894,1.719695,3.10267,1.37092,1.6294375,1.6462075,4.00135,2.916105,2.0435333333333334,2.4102433333333333,1.1188266666666666,1.8849275,1.4349299999999998,5.2262885,3.478925,6.579723333333333,2.36995,3.2387633333333334,0.89854,2.58982,5.1379,6.197215,3.0240500000000003,2.195603333333333,5.244249166666666,1.9275225,2.3932166666666665,4.228635000000001,1.1689,3.5507000000000004,2.3010566666666668,4.958425,4.420615,5.95465,3.067995,4.0330575,4.0330575,5.185,1.90979,5.2189,2.6928633333333334,1.6558875,3.07267,3.329785,5.482018166666666,4.002745,2.7884499999999997,3.0587433333333336,2.662565,0.9864757142857143,5.12945,0.9028875,5.63181,4.22134,7.36499,4.150925,4.41917,4.04466,8.312470000000001,3.86713,4.524645,1.1489699999999998,0.7199,4.46513,3.870035,2.088815,3.5783,3.342005,4.252475,2.26135,4.975385,2.4458266666666666,5.12085,4.913215,5.39745,4.109905,4.9174,3.017735,6.627195,3.7197,4.36256,3.298385,4.51121,5.4887442857142865,0.5990785714285715,3.5654333333333335,1.8365166666666666,0.5611,3.848555,2.16375,0.93142625,2.046865,5.5981,3.675595,2.37269,2.6709933333333336,2.8179499999999997,4.968295,3.81258,1.6483859523809523,4.13956,2.1178466666666664,3.5612999999999997,3.95611,5.1649,3.0676341666666667,3.5746333333333333,3.7262,2.01044,7.4726,4.68386,4.340785,5.05015,2.114145,4.236805,4.64664,3.92164,4.02425,10.77562,3.28187,4.461408333333333,4.606425,4.498395,2.268285,4.2752,3.916005,4.125945,3.3339666666666665,4.010115,1.4399725,2.9368433333333335,3.47052,3.468225,4.811965,1.845462,4.00535,3.0358433333333337,5.46465,3.0921233333333333,1.93283,3.93477,4.46486,1.066835,3.022025,2.6881566666666665,4.339359333333333,1.641982,1.8690566666666666,1.2035,3.331785,5.18365,5.62625,3.6612675,3.344305,2.53041,1.94874,1.97821,1.6699333333333335,5.89745,2.925825,1.8996275,0.8788153846153846,19.49512267948718,3.200925,3.0243075,4.507326666666667,3.9529876923076923,1.2533866666666666,2.6517283333333332,2.9100661363636364,1.272654,1.9792866666666666,4.343795,4.534375,3.3597975,3.05942,5.29295,4.59282,6.891415,4.580898333333334,4.44769,3.66495,2.5728766666666667,4.17891,3.928655,3.6717,3.81337,1.7940775,4.55999,7.87083,3.458775,2.869805,3.087285,0.59130375,3.0271266666666663,2.1452666666666667,2.1479325,4.475955,3.07218,4.726495,3.745555,2.916995,2.214035,1.76303,0.783058,1.4754233333333333,1.2801,3.9916,3.79787,4.48565,4.612025,7.45577,2.3569833333333334,1.397276,2.3953599999999997,7.632826666666666,3.168325,2.813275,3.11546,4.11686,3.3364375,3.596735,1.473668,4.716045,4.959825,4.20718,4.04213,3.407705,4.123795,4.051535,3.670625,4.40151,3.959435,2.260495,3.092586666666667,3.410845,5.2654,2.91204,4.2194525,2.880035,3.00701,2.3017133333333333,2.2637566666666666,2.135186666666667,2.612461,2.612461,2.0877733333333333,2.890423333333333,2.401476666666667,2.3980099999999998,1.8722466666666666,4.17954,2.3985266666666667,2.76286,3.00464,1.75518,4.42763,2.746245,3.788795,2.2567666666666666,5.203,5.0269,4.774834444444444,2.385205,2.9267,2.6592,2.538865,1.97697,2.76382,1.9159925,2.49138,2.623975,7.039446833333333,4.3074525,3.55554,0.5922175,4.203235,3.933445,4.128875,3.39357,4.0248,3.8316208333333335,6.27595,4.446565,3.132505,2.7871460714285714,2.1097828888888888,2.5319,1.597842,1.655322,1.495492,2.02536,1.72034,1.1453483333333334,4.198865428571429,0.5612776923076923,0.5271988888888889,1.833604,1.5179683333333334,1.457724,1.3832983333333333,2.3043760606060606,1.436875,1.6118320000000002,0.6196925,166.27075864953102,0.483296,2.06474,1.202376,1.2190075,2.105725,1.540015,1.994135,2.3344666666666667,1.7921675,6.6287,3.10025,3.3378523809523806,1.8027966666666666,3.217425,1.2975533333333333,1.2975533333333333,5.7077275,0.4793111111111111,2.1098225,3.13975,3.0283166666666665,0.7808272727272727,0.5598135294117648,1.163384923076923,1.0191636363636365,2.2280975,3.89133,1.93352,2.174365,2.16438,4.860497944444445,0.9646233333333333,4.27171,3.512715,3.645605,7.14065,1.9393366666666667,2.745505,2.090345,3.76473,2.561635,2.794265,2.90565,3.1832,3.63246,2.925985,6.66031,2.34837,2.805575,3.265825,1.300515,2.649055,2.957875,3.015615,1.667475,1.629915,1.967955,4.06493,5.067498333333333,2.654455,2.97391,1.30885,4.169835,3.6324666666666663,3.796666666666667,2.98874,24.536313017399266,2.6275753333333336,2.6854366666666665,2.976323333333333,3.4907333333333335,3.0877533333333336,5.65564,3.17924,2.21734,3.3928333333333334,3.4448666666666665,2.143543333333333,3.2407,3.294286666666667,3.02549,1.7419166666666666,1.6526855,0.5845629999999999,2.280343333333333,1.8791125,0.19223375,2.1756466666666667,2.50761,0.19223375,0.19223375,2.0633670833333335,0.19223375,0.19223375,0.19223375,0.19223375,2.7541466666666667,2.4019633333333332,0.5456392307692307,3.2851799999999995,1.3624675,1.9228739999999998,5.485,4.313065,5.97185,1.88961,4.924225,1.8907325,2.4837266666666666,1.1874585714285715,5.74347,2.869963333333333,6.060135000000001,0.8062299999999999,1.52645,4.55123,4.6955,34.58145323704073,1.54722,1.4936299999999998,2.32602,2.259335,0.8978345454545454,2.3634,2.28551,2.7160766666666665,2.015566666666667,2.4896433333333334,1.7767233333333334,2.5096166666666666,2.3948966666666665,2.2631033333333335,2.698926666666667,2.582803333333333,4.001225,3.2588666666666666,1.0825957142857143,3.938385,3.908405,19.93478111111111,2.7681466666666665,3.1536833333333334,2.6792166666666666,0.9190619999999999,3.175758,1.6893097777777777,3.175758,2.4034733333333334,2.5077933333333333,2.94703,1.5574,1.8223775,4.086685,4.225115,4.860095,4.21387,1.6733360000000002,4.921885,1.612075,4.89445,3.9462679047619047,4.39638,0.7517536363636363,2.0482775,1.98697,2.710378,3.39448,1.05302625,3.33761,1.9087140000000002,2.0631766666666667,1.0756919999999999,1.0756919999999999,2.5107666666666666,2.6683533333333336,4.32809,28.3337,6.4681999999999995,1.8316800000000002,3.6940333333333335,0.3937306666666667,5.6559625,5.62525,2.68038,3.379095,5.3711475,3.281085,1.1193875,4.575375,1.288512,2.74867,4.3006,4.4488,2.63804,3.26876,4.25527,2.634645,2.724729,4.166245,1.3305366666666667,2.3876433333333336,3.378135,4.87212,2.5239033333333336,3.05991,2.8096300000000003,3.85416,4.062205,4.048005,4.2173,1.985815,6.05134,2.63041,1.7581579999999999,4.118845,5.37711,4.235695,3.149165,0.70770625,3.07772,3.55223,2.1491,4.817871666666667,2.96494,4.12356,2.8544066666666663,3.453533333333333,2.61593,3.1059633333333334,2.8959766666666664,3.0310966666666666,4.21756,5.54865,3.776405,1.774835,3.87295,4.1893,2.00127,2.040325,1.752105,3.8607694444444447,4.4408,4.994598020833333,4.08586,3.295083333333333,3.8782,3.1521733333333333,1.3701333333333334,3.13511,2.972405,3.10487,4.477975,4.57963,4.13524,2.893265,1.99275,1.85101,1.5906075,3.60247,2.40111,2.178305,3.370075,5.05485,1.606195,5.20695,1.3992685714285713,1.8647,3.285415,3.11353,3.246765,3.780975,3.272825,1.75786,0.9756337368421053,3.10986,4.557013333333334,4.38016,8.82259,3.0170066666666666,3.0586,1.6428266666666669,2.7878133333333337,2.662123333333333,1.0953616666666666,2.94394,2.65985,3.0299600000000004,4.008166666666667,3.0939533333333333,6.879686666666666,3.087013333333333,0.7688645454545454,1.7508566666666667,3.39839,3.32564,3.496795,3.4579,2.4880389999999997,2.91742,2.9354,1.9718138571428572,3.93955,2.4428,3.492485,2.0497433333333333,4.700975,4.864765,4.55641,3.46861,3.442655,0.92042,4.45194,2.8326533333333335,2.7664899999999997,4.24877,2.7567866666666667,2.68953,0.50561,0.50561,4.281316666666666,3.99415,6.9192,3.216405,4.50926,3.59992,3.30634,4.5927,4.039125,1.0406975,3.75561,2.45992,4.124968333333333,2.9024866666666664,3.1263316666666667,1.69404,3.232919642857143,2.35432,2.8346133333333334,2.5350633333333334,2.8363,1.8533166666666665,22.48066827272727,3.578635,3.62514,3.957925,3.39441,4.25759,3.656585,4.65935,3.98403,3.935125,3.338655,3.90404,2.4001533333333334,2.640746666666667,2.854886666666667,3.0685366666666667,2.6747533333333333,4.20536,3.636665,4.99318,4.84346,4.417065,1.336578,1.38011,1.38011,4.87774,3.48734,2.6456766666666667,2.1988533333333335,2.8300866666666664,3.218895,3.520365,7.391853333333333,3.197093333333333,3.4156999999999997,2.9780116666666663,5.23695,1.5467466666666667,5.8008299999999995,2.48046,2.7954633333333336,1.7544525,3.326775,2.87607,6.10003,3.136855,2.659345,4.323,4.154532666666666,1.48536,2.5695466666666666,1.6603933333333334,7.241496,4.388105,6.672408333333333,2.2542925,3.894115,3.805345,3.865755,5.03,3.5610999999999997,3.5610999999999997,2.1128275,4.28021,5.04545,2.157875,6.414587142857143,1.50449,5.65295,8.520408,3.4983,4.191416,2.346366666666667,1.976955,0.509671875,4.45218,2.4569675,2.6222,3.608666,2.2257,2.411703333333333,3.682615,5.5727,5.0873,5.1083,4.874665,4.120985,2.2333325,1.0310363636363638,2.963605,3.45998,2.72958,5.11245,3.98965,3.33503,2.5867,1.8580359999999998,4.074425,1.032805,5.2824,0.9769022222222223,5.47125,3.481265,4.63867,4.94696,3.15761,3.36243,2.9767166666666665,2.30081,4.193515,3.0849,2.552685,3.803715,4.725835,5.838661666666667,4.40149,1.600135,3.34631,3.17614,5.638396666666667,2.0407075,2.0407075,3.0275433333333335,2.2330633333333334,2.409213333333333,2.519973333333333,0.8362679999999999,6.2532,3.236245,1.9111875,2.50811,2.72644,3.949915,2.83915,3.72285,5.0309,5.0153,4.814365,5.8377,5.6499,1.3044375,3.36279,1.1072666666666666,2.4924875,4.299666666666666,2.78129,3.126695,3.34309,4.60596,3.05094,0.4400826315789474,4.722145,4.199605,4.758855,3.41045,4.71068,5.2947,4.33498,4.052655,1.73615,4.42627,1.99647,4.2528999999999995,4.2528999999999995,6.59325,5.72785,5.4569,4.80053,2.68803,1.5467466666666667,4.184385,1.9165733333333332,1.7132100000000001,2.20494,4.3285,4.08596,4.136355,8.49694,1.5057033333333332,5.06055,1.232615,3.41138,5.9398,1.924015,4.768715,2.4492066666666665,4.67648,3.49673,4.77406,2.83269,4.295955,4.183665,5.8447,4.258545,3.916575,3.74259,5.92785,4.055215,4.624845,3.77684,3.99211,7.073315000000001,3.515135,7.0693,3.297675,5.67815,5.944529545454546,4.188015,3.656035,1.7328125,5.6203,3.97314,0.87925,8.76991,5.99875,5.15515,3.024235833333333,4.864375,2.93469,1.692562,4.000375,1.116495,6.003,2.94477,4.6659,5.5721,4.335395,4.00381,2.1745533333333333,4.29133,4.981365,1.528035,6.932923333333333,3.07827,3.45911,4.981385,4.311845,2.18744,4.41185,3.732685,3.68572,2.6172566666666666,4.10234,3.643705,5.4283,4.531095,3.209975,1.72598,1.72598,7.516513333333333,1.3697614285714284,4.878945,4.17757,5.22175,3.124475,3.455145,5.05005,3.801095,0.9645533333333334,0.9645533333333334,0.9645533333333334,3.670105,3.155505,3.88142,4.4022353333333335,2.43648,1.4486383333333333,4.084875,2.138875,2.756165,3.8347,4.418255,2.1952975,2.177,5.1397,3.68987,3.308865,4.35385,1.7818425,2.020355,3.317736666666667,2.629595,5.0646,1.434006,1.5575160000000001,1.01119875,3.746245,3.07409,2.7916166666666666,2.8351733333333335,5.1999,1.7516559999999999,2.09748,3.06792,1.630957142857143,3.26553,3.6006,2.4817975,5.3763,5.55515,2.79563,4.143315,3.578465,3.724175,3.361605,4.11081,3.515585,7.03637,4.946945,1.81583,1.77235,3.573195,4.680445,4.393245,3.595045,2.8446533333333335,4.08343,6.06355,4.987325,2.7249666666666665,5.27585,4.04088,4.312085,8.0173375,3.88883,0.6923081818181818,3.799905,4.254239166666667,2.251665,4.192265,3.7665333333333333,5.82565,4.00566,3.612535,3.92372,4.297275,4.555905,4.497735,2.91996,3.72691,4.90357,3.82832,2.519055,3.0148,6.43801,5.28995,2.08214,3.042405,4.0680491666666665,3.834765,4.833795,4.162825,2.5827833333333334,0.8935844444444445,4.529822727272728,6.275435000000001,3.86166,4.77936,3.62878,6.651585000000001,3.990705,3.7174,2.7473466666666666,3.81869,1.877645,3.576425,4.34755,2.479813,3.8392,5.62715,1.5185225,4.612315,0.6269171428571428,5.9707,6.06405,5.94305,5.73955,1.503215,1.67677,4.407,2.076265,5.2604,0.5167108333333333,5.70805,3.334245,1.539174,6.3726375,6.4742,0.997535,1.850121,1.267404,1.267404,1.267404,2.1354966666666666,4.598425,3.76984,3.219525,3.771125,4.97022,3.79119,1.951298,4.11986,4.97095,0.29565121951219514,3.493535,4.50726,4.489905,38.69014006818182,5.432308333333333,4.951205,10.734933999999999,3.231435,4.27556,7.302143333333333,3.088845,5.00895,3.792235,4.083155,9.570635,3.792175,2.7274133333333332,2.81594,4.394675,4.456735,3.727325,4.398555,2.02311,4.477555,4.20378,6.662387,4.210815,4.9185,2.360485,4.383515,0.51700875,1.4776916666666666,3.4579,5.9973,3.0065,1.2313016666666667,1.2313016666666667,3.035865,3.838155,4.19176,2.71251,1.6048533333333335,3.671735,4.227905,1.767175,3.22995,1.487144,1.9190699999999998,4.130825,4.507025,1.98478,4.47554,2.2037025,2.337355,3.380615,3.735615,4.12993,3.88602,5.984464333333333,2.335259333333333,4.03027,0.7125981818181818,0.6639891666666666,3.784685,2.34124,8.459816666666667,3.3875333333333333,4.750685,1.6770425,4.29563,1.5201166666666666,3.95799,4.53503,2.6001866666666666,3.84415,5.02615,0.41966650000000005,0.41966650000000005,3.658666666666667,3.23957,2.8461833333333337,3.535875,3.854095,5.4634,1.020209090909091,9.303785,10.66422,2.0355375,4.6901150000000005,4.48369,4.723435,3.519485,2.4905666666666666,1.976786,1.9980125,9.3067525,2.135665,2.7427533333333334,3.497196,4.516545,3.497196,2.07625,2.8209766666666667,2.7702666666666667,0.6939536363636364,5.259081666666667,2.8480233333333334,2.5196666666666667,4.05233,8.565125,9.592215,4.065185,3.989085,4.12056,6.7261500000000005,1.95568,1.394025,26.211138333333334,4.35416,3.602385,0.912682,4.313845,4.115225,5.1186,4.51969,5.2927,5.673706666666667,3.0332333333333334,2.1597833333333334,0.6541058823529412,0.7543691666666666,4.6455,5.04705,1.3723666666666665,4.291576666666667,0.898975,3.6160333333333337,1.3912066666666665,4.26598,5.88645,2.023635,2.56355,2.32325,3.88357,2.879955,0.4047044444444444,3.69242,3.58042,2.4973266666666665,3.368425,4.833695,2.7800333333333334,4.328865,3.280645,4.524335,8.023393333333333,4.861375,8.517710000000001,2.6981,2.64645,4.586125,4.9629275,4.414125,4.526875,3.80622,4.36693,1.17681,3.262685416666667,3.213098714285714,0.494278,1.38011,1.38011,4.18695,6.880375000000001,0.8254230769230768,4.77179,0.9083366666666667,2.7628066666666666,2.3303533333333335,2.536236818181818,6.239966666666667,2.4128333333333334,1.1259333333333332,2.3928266666666667,1.19235625,1.98846,3.1014033333333333,3.0854500000000002,3.2346266666666668,2.5092333333333334,0.9083366666666667,4.480215,4.402045,5.3282,2.793855,3.883365,2.1305199999999997,5.83185,4.62118,4.125395,2.9502166666666665,3.101225,2.24278,1.3274025,4.034855,2.65915,4.206905,5.66695,1.6123439999999998,4.44215,2.714593333333333,6.199341666666667,3.53658,2.491085,0.9083366666666667,2.58492,3.79702,7.384851277777778,2.4650133333333333,1.7118680000000002,2.4650133333333333,0.4139458333333333,1.333582,3.910135,2.985225,1.6781575,3.783335,3.7665369999999996,0.645837,0.645837,0.645837,8.360330000000001,1.612066,0.725239090909091,34.83395291991342,1.9154504444444447,0.6922544444444445,2.9450475,0.6922544444444445,3.891385,2.18087,2.47534,2.4912366666666665,5.27835,4.11767,4.45406,2.4521166666666665,0.9276342857142856,4.2632,3.2925,4.873025,1.0802542857142856,2.905725,2.905725,3.934035,4.20071,3.377705,4.3394699999999995,3.15997,4.50265,5.2688,1.7689879999999998,1.02221625,5.3479,6.5663,3.94184,0.707008,4.345275,4.055693333333333,0.88469375,4.334455,2.448545,3.84259,4.24365,1.8506162626262626,1.8506162626262626,3.921525,3.45723,0.9053622222222223,3.00635,2.942043333333333,3.335095,4.11121,4.42414,0.5740671428571428,0.27700705882352944,0.27700705882352944,0.27700705882352944,0.8510742016806723,0.58854,0.693502,0.27700705882352944,0.27700705882352944,6.6324950000000005,0.27700705882352944,0.8510742016806723,3.604725,1.295795,4.61667,1.1887166666666666,0.5675723076923077,0.88469375,2.71128,2.548475,3.965765,3.059675,0.27700705882352944,0.27700705882352944,4.421055,3.960075,4.14595,2.655425,4.074985,1.431638,3.715025,0.693502,0.693502,4.743585,3.212145,2.74875,3.09494,3.734976666666667,1.03478,0.8789230769230769,10.052745,1.20002625,3.67175,4.464655,5.17655,2.08038,0.36467999999999995,0.86758375,2.7652133333333335,3.08897,3.208405,4.324845,1.313458,5.7279,3.34051,4.9981225,3.93528,3.0259033333333334,2.916066666666667,6.304053333333334,2.5125333333333333,4.633115,4.109735,4.0733966666666666,6.177625,0.5258813333333333,4.099445,3.4830666666666663,2.0317966666666667,0.6843322222222222,4.090375,4.66794,2.73209,2.498715,2.29155,4.94413,2.81217,2.83076,1.065686,0.4794684615384615,3.96714,0.35517533333333334,0.7754145454545455,3.997645,3.027045,3.698795,2.78639,5.26015,4.3256,6.132768333333334,3.61143,3.52971,4.59127,1.6178125,5.4010425,1.690502,4.10614,2.49811,5.94197,2.643455,0.960392,4.38421,6.94683,6.488746666666666,3.3078133333333333,0.79852,2.8873866666666665,4.18757,3.81945,4.53627,4.45092,4.002845,4.53975,2.92023,4.211895,1.8058366666666668,2.352675,1.51269,4.085495,9.59193,2.848925,3.698195,6.004,3.017825,4.083745,2.5350533333333334,2.853516,3.32626,3.15426,3.620275,3.340315,3.54925,5.25025,5.6491,3.857915,4.855735,5.0106,3.90833,2.79097,5.2397,7.49643,0.9458877777777778,4.0727,4.111855,4.747645,5.57045,4.96058,2.19719,7.805375,2.52598,3.362705,6.0661,3.82037,4.42324,2.1564,1.7855575,2.887646666666667,2.1710866666666666,2.1220433333333335,2.8289833333333334,4.14587,4.715495,4.064475,3.54839,5.08427,3.394015,3.26899,4.05929,5.5827,2.876175,5.302759666666667,3.915485,3.858205,3.58755,7.27259,3.4932,3.80869,3.93888,4.959,2.99145,10.7647,1.2862433333333334,2.32859,3.694445,2.7814933333333336,2.7814933333333336,1.8895,7.438208333333334,0.8742455555555556,3.009925,0.94221125,2.09748,4.142365,4.94205,3.703615,4.055705,2.6822,3.25595,3.6727,3.856345,4.010495,2.90422,2.4603033333333335,3.953035,4.645131666666667,3.388545,4.213985,1.620916,1.690924,2.6162566666666667,5.53285,2.134425,1.8623533333333333,1.99727,4.14883,4.52536,3.053465,2.670775,0.5667544444444444,2.441575,7.224125000000001,3.474215,1.6771033333333334,0.894435,1.23156,1.95076,2.3427275,1.158405,2.1001933333333334,4.382052,3.96495,4.630115,2.5050233333333334,1.9157775,6.1461675,2.837325,2.351995,2.351995,2.351995,6.55065,2.32885,3.493655,2.46087,0.461004,1.333424,2.3312,5.93915,0.44241444444444444,3.706635,3.921735833333333,5.60755,2.897167777777778,0.44241444444444444,2.897167777777778,0.9002925,1.1337300000000001,5.85505,4.091285,6.66296,3.98157,4.43502,3.571455,4.09674,5.05145,4.938465,5.85875,3.81629,3.46233,4.75595,4.539615,4.151475,4.488965,4.45252,1.3463216666666666,2.5078366666666665,1.18146125,2.01798,3.1805161111111113,1.5802694444444443,6.5306999999999995,5.638396666666667,2.64825,4.153305,2.954385,4.74973,2.82453,3.941845,4.84932,9.5020325,5.1221,4.405745,2.2976725,3.025765,2.06926,0.59130375,2.1515824444444442,5.8655,5.14735,4.735475,4.388685,0.512014,2.037245,1.575575,4.20516,0.7047269230769231,6.5819725,2.0629025,1.1195125,1.1195125,3.981284,1.973084,3.16872,2.64805,4.641785,3.40197,3.40197,4.33675,5.615915,2.73887,2.3913166666666665,3.2087,4.67223,1.7557079999999998,2.8706766666666668,5.42865,5.02995,4.471185,3.965715,3.919555,4.213285,3.573358333333333,3.2051533333333335,2.3506475,4.26773,5.13725,3.2096725,4.849615,5.44595,2.0451333333333332,2.47165,6.16585,6.9987,1.1365159999999999,2.49289,2.3621425,2.66984,2.2345975,2.500875,2.352221,1.052708888888889,1.932885,2.66995,2.23632,2.4340716666666666,2.4340716666666666,2.912533,2.87845,2.1501826923076925,2.549175,2.3226125,1.976452,1.545738,5.0498875,14.428035166666668,2.6671033333333334,3.198646666666667,1.831304,1.831304,1.6311349999999998,1.6311349999999998,2.7690133333333335,3.6300000000000003,2.813893333333333,1.9007425,1.9007425,3.8447,2.489263333333333,1.2016266666666666,1.4561857142857144,2.9772266666666667,2.7265866666666665,3.572366666666667,2.41642,3.237386666666667,3.1055200000000003,0.646898,2.544525,3.574669666666667,6.777521666666667,4.798525,5.428,4.26265,3.714295,4.95537,4.602505,2.664163333333333,4.073985,1.3191783333333333,3.1750900000000004,5.64235,5.09875,2.684435,1.1223616666666667,3.144425,2.2949800000000002,2.8473133333333336,1.4871666666666667,0.6451728571428571,2.8665066666666665,4.375400833333334,4.980285,3.937475,4.697715,3.0217733333333334,2.0410633333333332,3.2995324999999998,2.3571433333333336,3.173833333333333,3.13719,3.155813333333333,2.6476266666666666,2.3082133333333332,3.5096333333333334,2.7171800000000004,5.0854,4.59053,5.255095833333334,5.255095833333334,3.587575,4.063955,3.954825,3.63674,2.86787,4.32886,3.41092,3.109913333333333,6.1034,0.6796583333333334,5.17555,4.832995,2.6164066666666668,4.961343333333334,3.1146833333333332,1.71345,1.2147214285714285,2.0411699999999997,0.944858,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.5991985714285715,0.5991985714285715,1.158765,0.79522625,1.6956408964646466,0.9560014285714286,0.9560014285714286,1.2660408964646463,0.4296,0.40803555555555554,1.306475,1.465715,2.6624333333333334,2.230715,6.395106666666666,2.96991,3.62243,2.8735233333333334,4.7682271428571426,1.3426366666666667,4.744385,3.90758,5.05705,3.045105,1.521244,4.376826153846154,3.85477,4.415785,4.26692,3.106695,4.706525,4.602,4.63834,1.27529,3.982785,4.551865,3.33342,2.3639966666666665,3.54987,2.52054,3.276925,4.78693,3.0067033333333337,4.772055,8.87312,3.235725,4.721385,3.996555,4.366611666666667,2.522203333333333,3.83374,0.99305,4.182465,3.634555,2.15208,1.19818375,2.91309,1.2291766666666668,0.48037266666666667,3.3596,4.185195,5.27065,3.6135333333333333,2.4250675,2.092145,4.912945,3.844333333333333,4.98381,2.71085,2.31439,4.162575,3.84031,3.73692,4.97651,4.505595,3.77526,4.590815,3.1241800000000004,4.32217,2.21085375,4.398745,5.2076,3.291235,4.30032,2.60199,3.90526,5.2962,3.811975,4.93391,4.65358,4.950865,2.307043333333333,4.635155,5.0405,4.621185,2.1031625,1.0185025,4.011005,4.52551,3.9036,4.58092,2.121875,3.769545,1.6842,4.86118,4.43749,4.67104,2.20827,4.11904,4.340945,4.250485,2.3613133333333334,4.46883,4.568255,4.981225,3.53518,2.1031625,2.349265,2.632085,4.95835,3.76723,3.978535,3.522635,4.71958,2.42273,6.92638,4.77562,4.50765,5.257402263888889,5.09188,4.960795,3.4589525,2.6493333333333333,2.6493333333333333,3.646625,3.30282,4.57049,2.0121,2.85804375,0.95562875,2.4973733333333334,2.884866666666667,2.2916233333333333,3.0816700000000004,4.24219,2.6933933333333333,5.09005,2.4821133333333334,4.24531,5.152464999999999,1.98263,4.05667,2.5454,2.603396666666667,4.096175,0.9004070000000001,4.97027,4.465405,6.098262500000001,4.71201,5.47345,1.2659957142857141,4.67003,6.4863,8.070655,3.1257099999999998,3.1911566666666666,1.9263480000000002,0.799646,3.88836,1.02906,4.91085,4.48709,5.79295,3.055975,3.667305,1.1255028571428571,3.37197,3.65651,4.41905,4.04015,3.050365,3.006325,2.364555,4.00882,4.49841,5.5911,4.25237,3.291815,0.4463977777777777,0.4463977777777777,0.4463977777777777,0.4463977777777777,5.8138,2.942385,6.129,3.0372533333333336,4.804625,4.52975,3.787385,2.102115,2.52624,1.4944533333333334,5.2094,2.5759633333333336,4.24078,3.526725,3.617625,1.731685,1.15519875,4.52085,2.437355,5.685548333333333,3.94827,4.779105,2.39652,1.438745,0.9099266666666667,3.372405,4.04341,3.687035,2.14993,7.810544999999999,4.562895,3.31153,2.21818,0.445231,3.560935,2.33723,1.957715,1.969315,2.88258,2.993645,2.358665,2.98713,3.08568,3.39364,4.35579,3.334385,3.810775,2.99724,5.554996666666667,0.6035506666666667,4.41443,5.73645,4.97452,4.588015,3.2606633333333335,5.1121,4.3248,4.091905,5.24836,5.0006,4.502985,4.40281,3.6617375,4.879295,2.32361,9.25743,4.79326,4.08044,4.475595,4.935705,5.4968,3.363995,1.1049566666666668,5.713875833333333,3.23523,4.476825,1.3075166666666667,4.369815,3.63148,6.323371666666667,4.59485,3.370095,2.0315866666666667,4.72096,2.18622,0.90545625,4.27218,6.07695,1.92581,2.2866866666666668,2.9714500000000004,3.319735,3.64549,3.74528,4.894925,1.8071599999999999,4.027395,3.9541644999999996,3.297895,3.7693999999999996,3.762895,2.874635,2.75354,1.8720675,2.5000966666666664,2.7837933333333336,4.47952,0.5611541666666667,2.65969,4.03385,3.00192,3.3883666666666667,4.24529,4.89957,3.9065,16.57716928787879,2.4422533333333334,4.1018,1.463636,0.9030454545454546,0.9030454545454546,0.9030454545454546,0.9030454545454546,0.9030454545454546,4.05698,4.53313,4.649365,8.872664499999999,2.4315825,2.4315825,4.290485,4.55237,1.28262,1.9784133333333334,3.690895,2.4224175,2.3136325,2.0780125,3.080895,3.824732666666667,1.7034275,3.528845,0.8318071428571429,2.7719166666666664,2.6746766666666666,3.0759833333333333,1.4927766666666666,3.203863333333333,2.1615066666666665,0.92699875,2.78427,2.6269233333333335,1.2472555555555556,2.3312766666666667,2.5341299999999998,2.1731233333333333,4.278852666666667,1.8278999999999999,2.8761466666666666,2.048355,2.62571,1.10824,2.597376666666667,4.694343333333333,3.6287333333333334,1.02376125,2.8773433333333336,1.3621325,2.4926566666666665,2.354546666666667,4.774419999999999,2.9590533333333333,2.37278,4.616871333333333,2.6750399999999996,2.22132,2.7964800000000003,2.3499633333333336,1.58675,2.722496666666667,3.1504,2.79645,2.4755766666666665,3.1323833333333333,2.6484799999999997,2.3458725,3.7264405,3.7264405,3.04974,2.06278,1.8929133333333334,2.2608466666666667,5.49362,2.85223,2.0652166666666667,1.6146275,3.031363333333333,4.12597,2.339443333333333,1.047262,2.765678666666666,1.44867,2.7700266666666664,2.109106666666667,2.5850733333333333,2.2198766666666665,3.18468,1.3038859999999999,1.5953666666666668,1.5577233333333333,4.299803333333333,2.660763333333333,4.25439,1.0345644444444444,4.128495,2.1120233333333336,2.0630625,1.682302,1.6099249999999998,3.1786966666666667,22.88982171861472,7.329566666666667,2.720886666666667,3.4683191666666664,2.798553333333333,10.056465333333332,3.1743166666666665,1.01240625,2.5579933333333336,2.43782,2.0564466666666665,2.9004266666666667,2.5235733333333332,2.6384933333333334,0.968871,3.11771,2.5726633333333333,3.007406666666667,2.7211433333333335,2.6400166666666665,2.1136833333333334,2.1648833333333335,2.8136533333333333,2.6031133333333334,2.06703,1.5872579999999998,4.9355883333333335,4.59089,2.0382625,2.9651,2.3158566666666665,2.44157,8.171179166666667,2.0008666666666666,4.92081,2.27991,1.834975,7.59243,2.8178466666666666,2.7322,2.43295,1.829342,1.4254857692307692,3.204466666666667,3.0385500000000003,3.902025,1.563215,3.6206333333333336,1.599975,1.599975,4.516995,4.035755,3.441568,3.441568,5.6863166666666665,3.48596,0.455274,11.617949942002442,1.4535200000000001,0.9881971428571428,3.4859774999999997,1.4228252991452992,1.81431,5.980436666666666,3.755055,0.7504854545454546,2.2300366666666664,4.82955696969697,2.4077153333333334,3.76266,1.27837,5.35795,4.930215,4.53374,3.1879074999999997,1.9331219999999998,2.1685033333333332,2.60508,2.3697233333333334,2.16474,5.063913333333334,4.20477,3.89829,1.8659225,4.799485,4.08075,3.3435666666666664,2.17247,4.691455,2.4059433333333335,8.630243333333333,6.306585,1.8346125,2.13042,1.7521360000000001,4.5748,4.5748,2.9514899999999997,2.85551,2.7664524999999998,4.86551,9.795277500000001,4.25452,2.4724125,5.4432,4.262785,5.07,1.98734,0.8613925,1.347715,4.576825,4.641525,3.6473,2.5427966666666664,3.6733,2.14325,3.75258,4.727785,3.36823,5.4034,3.11566,3.351328,3.246226666666667,3.24737,3.2756866666666666,6.228,2.9401,5.39435,4.56302,3.44007,3.339075,3.339075,5.070925,11.7323375,3.5013666666666663,6.12473,7.324326666666666,3.68844,2.5243533333333334,4.00353,1.3347766666666667,3.911,2.3536575,2.9731733333333334,2.9365166666666664,3.23028,1.9000499999999998,2.3527333333333336,2.54719,2.4862433333333334,2.83826,3.1068599999999997,3.68741,2.51468,2.878076666666667,3.97623,2.688026666666667,2.4721233333333332,1.064215,2.13126,2.86632,2.4216466666666667,2.452366666666667,2.54738,3.4339,2.2990866666666667,2.3580033333333335,2.5589299999999997,3.02404,2.6045666666666665,2.7691433333333335,2.4748566666666667,3.0840433333333332,2.82945,3.3686239999999996,2.67657,2.45932,2.24082,2.542056666666667,2.5623333333333336,3.5147,3.3192799999999996,2.840655,1.89123,1.89123,0.6858783333333333,1.473668,4.10095,3.18728,2.5844,1.9000499999999998,2.983696666666667,1.1962885714285714,2.57295,0.5329733333333333,3.25422,3.0900866666666666,3.37225,2.937796666666667,2.574873333333333,2.4249033333333334,2.9067866666666666,2.7512933333333334,3.11407,4.352463333333334,1.467006,2.59909,2.3539566666666665,1.8836266666666666,2.1958333333333333,2.7646633333333335,2.6271366666666665,1.619754,2.5539366666666665,2.5974866666666667,2.5297433333333332,2.575536666666667,2.729276666666667,2.80367,3.1405100000000004,1.398965,2.8582066666666663,2.4140200000000003,3.7183333333333333,3.7240333333333333,1.82085,2.0216600000000002,3.1564666666666668,2.43664,3.4074333333333335,2.7059800000000003,2.413753333333333,5.152725,3.31082,1.99666,1.547434,3.4019333333333335,6.227323333333333,3.1021733333333334,3.4506,2.5955633333333332,2.940636666666667,4.685349333333334,1.5961560000000001,1.1327222222222222,2.0077966666666667,1.6787225,4.5877,2.672523333333333,2.86596,3.120416666666667,3.1999666666666666,2.1572766666666667,3.3906333333333336,2.470545,1.60379,2.5810733333333333,3.58846,3.6780125000000004,3.32428,3.68187,1.5991825,2.759535,3.495315,3.391465,2.3872266666666664,3.8088333333333337,3.8150999999999997,3.9389000000000003,1.2985875,5.580895,3.2782175,1.4559133333333334,3.30454,3.27376,2.7173,3.569705,1.8000019999999999,1.8000019999999999,3.1989133333333335,2.9834133333333335,2.87532,4.919485,4.279495,4.2517553333333336,1.528352,3.1075266666666668,2.4201433333333333,4.1115525,3.1847966666666667,4.684123333333334,2.5030566666666667,2.3985600000000002,2.45819,3.84355,4.02952,1.6206980000000002,3.0900700000000003,2.90666,2.29662,4.371905,1.322065,2.93604,4.28144,2.77391,3.56686,4.051805,1.61672,1.6140633333333334,2.3122075,1.1012583333333332,2.092832619047619,1.84555,0.46897785714285717,3.92643,2.44159,4.519455,4.05841,2.811955,4.64342,3.3871,3.11565,3.355933333333333,2.36857,3.12875,2.7053999999999996,2.96297,2.20407,0.6488169230769232,2.388403333333333,0.6169292857142857,2.03477,2.6273766666666667,3.1607233333333333,3.0235366666666668,1.4303,1.3821325,3.872545,4.185515,2.77712,3.6643099999999995,3.07476,1.5167,3.751625,6.974505555555556,3.55129,5.2783425,1.610475,3.79108,1.7936475,4.33465,3.5212,2.17634,3.969745,3.23278,3.50518,3.957385,2.0663325,3.784475,5.8400175,4.84695,3.16994,3.048455,1.768345,1.99632,3.72607,3.18788,3.12111,3.28782,3.45948,3.442755,1.5755875,3.51543,3.310425,1.552075,4.038725,1.0422333333333333,3.164985,1.7194,3.45505,4.636168333333334,3.608635,2.98128,3.637155,3.214365,1.89766,2.3226625,3.773,2.208545,5.6944275,3.86423,4.529975,2.34888,2.60228,4.35356,4.63162,2.22813,2.22813,5.836953,3.8724155,2.6590775,2.77012,2.0471,2.721735,3.277115,3.78528,2.7029605,3.41251,0.980082,3.683255,2.65145,3.926575,2.51609,1.561475,1.310925,3.009515,5.88114,5.700525,3.704205,1.398275,4.39378,3.742025,0.865635,2.65393,1.335162,5.32666,1.3581349999999999,3.49451,1.6873475,1.4303,2.67184,2.497895,4.58093,6.72542,3.967295,4.605959166666667,2.441205,2.830955,3.90555,3.581455,4.154695,4.292585,1.129195,1.6526855,1.0681225,2.361055,2.366175,4.92769,1.0681225,4.228325,2.13689,1.55844,1.55844,1.552075,3.84389,4.07781,3.763595,1.400164,1.400164,0.9494366666666667,3.01413,2.0827525,6.0722775,4.097095,3.752955,2.8483133333333335,1.0046,3.49735,2.85807,4.177555,3.45352,3.7078875,3.7078875,3.352605,4.030635,1.77073,2.532735,0.9558577777777777,1.9914666666666667,3.43093,2.5229866666666667,3.099285,3.099285,2.6583,4.60141,4.44191,3.600355,3.61653,3.957545,2.466553333333333,4.146305833333333,2.76283,3.834245,8.238565,5.11505,2.795685,3.252105,3.19282,4.53728,3.176826,7.671665,4.565298,4.489235,3.34293,3.828555,3.64842,4.175325,4.80967,2.45942,4.496935,6.096981666666667,2.73572,2.064920888888889,3.05534,3.2826,3.50592,5.46045,2.23103,2.0861266666666665,2.71809,3.069325,2.9276033333333333,6.847002,1.4575125,4.821558333333334,4.821558333333334,3.34177,3.914341666666667,3.144855,2.468496666666667,4.64213,4.409409,2.171094,4.067125,3.88471,3.470718333333333,3.001455,2.8031,5.8369116666666665,3.33741,5.10405,3.14185,4.63115,4.15274,3.78567,2.9834133333333335,2.00629,2.85855,3.760365,2.974305,3.3783499999999997,3.144645,5.817983333333333,2.472355,1.6223725,3.042205833333333,2.35906,3.776155,2.58382,0.865635,3.2065,4.08247,4.00076,6.0182075,3.04604,3.03246,3.0009366666666666,3.0009366666666666,3.9258550000000003,3.764505,3.67199,2.033725,5.5301675,2.1685925,4.415495,3.48048,8.18907,2.84885,1.39126,3.299445,4.652795,0.57098375,3.939995,3.243645,2.920665,2.87141,4.05863,2.28662,2.44536,9.450205,3.508945,2.769535,1.3581349999999999,3.666735,2.598045,2.29834625,4.077135,5.2514925,1.6168275,1.1608266666666667,0.9106266666666666,4.260005,4.00326,3.54036,3.1860325,3.1860325,1.5755875,2.377905,2.9950580555555555,0.8552855555555555,3.01736,1.1294425,1.5991825,3.131005,3.29736,2.740375,2.64446,2.3691283333333333,4.411005,3.621255,3.33663,2.885185,2.694335,4.19954,6.84567,4.091925,0.77809875,2.539194,8.80182,4.565485,4.26785,0.9998475,4.82222,1.363075,3.4908574999999997,3.4908574999999997,3.736545,8.168435,0.788291111111111,4.565435,4.37991,2.42725,4.311382500000001,3.610025,2.1328,9.894450666666666,1.6839525,2.4382066666666664,3.249585,1.7604033333333333,4.059614416666666,2.847565,3.112575,3.1679513333333333,2.675635,2.822905,1.1164816666666666,7.03561,3.86836,3.689545,3.764535,1.83604,2.98128,3.7971916666666665,3.673935,0.5889315384615385,3.74538,4.031325,4.48502,2.1078275,1.322818,3.997545,4.15927,8.05447,0.6798638461538461,1.20751,1.20751,1.7231233333333333,1.4060433333333335,1.506672,1.8936533333333332,4.626805,1.27288,0.8961828571428571,4.0522675,3.460805,1.2670675,3.310935,4.68416,3.177765,0.76091,1.719895,9.088474999999999,3.903355,3.244015,3.036525,1.748085,2.5365733333333336,2.524655,4.465565,4.299725,3.90956,0.8915628571428572,1.4057840000000001,0.888185,4.2025625,4.41957,4.058035,0.8552855555555555,1.677578,3.696345,2.3374078571428574,4.929436666666667,1.11132,4.893745,0.6421966666666666,0.6421966666666666,0.6421966666666666,9.34561,3.992355,1.1294425,3.828355,4.7433,2.86976,2.994965,4.614795833333334,2.815595,1.8359283333333334,2.0954266666666665,0.76091,1.6265450000000001,0.4988666666666666,0.80164,1.4280633333333332,3.8848,3.72031,1.96797,7.290183333333333,4.9255825,0.6047488888888889,6.13965,4.866786666666666,3.33259,4.52493,7.883179,3.706182678571429,4.9255825,4.35171775,2.255333333333333,3.96234,3.706695,7.198715,3.294845,0.445231,1.460172,3.97603,1.795204,1.1608266666666667,3.87616,2.3964233333333333,1.75566,3.24221,1.69457,4.477735,4.327375,4.026365,4.75555,6.10961,2.73936,3.661275,1.335162,2.268995,3.481895,3.361375,2.171094,3.914625,2.57312,5.02935,2.98334,2.49513,3.3569699999999996,1.634264,3.520845,0.8552855555555555,2.06363775,0.9106266666666666,1.548935,3.527225,1.4575125,1.4280633333333332,1.951865,3.041545,7.42455,0.8915628571428572,0.9998475,1.156064,3.613245,3.67515,1.156064,4.016655,2.268995,0.57098375,0.8552855555555555,1.7231233333333333,1.335162,0.46897785714285717,1.699202,4.252997333333333,2.42725,1.246235,2.97671,1.2985875,1.6839525,2.6057566666666663,2.0954266666666665,4.51229,2.6057566666666663,0.865635,2.695965,2.041545,0.08106999999999999,0.08106999999999999,0.08106999999999999,0.08106999999999999,0.08106999999999999,3.323513333333333,2.711263333333333,2.7501866666666666,2.7178833333333334,4.69527,4.39522,1.682302,3.84044,3.608645,2.222105,5.06021,2.779655,2.587605,2.48926,2.75269,4.426935,8.033205,2.2181275,1.9920600000000002,2.8083207142857143,0.8927557142857143,1.4272633333333333,2.491216666666667,2.02465,1.504535,2.825583333333333,2.1951,2.9045533333333338,2.5416466666666664,2.57727,3.729925,3.340195,2.4347533333333335,1.295598,3.613665,3.67416,1.5778833333333333,1.278658,1.278658,1.278658,3.49637,2.65917,1.10112,2.0999833333333333,1.3367514285714286,4.340675,1.5012766666666666,6.2445900000000005,3.1844725,2.5554900000000003,3.190536,3.190536,5.187136666666667,3.0712,4.367815,4.67737,2.1060975,2.9817666666666667 -GSM1946771,1.0,1.931415,1.931415,1.5643799999999999,5.03165,4.946955,2.664915,1.6090099999999998,8.741573897058824,4.705595,3.211233333333333,2.204145,2.216775,3.103,4.62804,1.9556360000000002,1.406304,5.04405,2.35112,2.4344575,5.52645,5.227973333333333,4.05116,2.666985,2.00978,4.1237,4.83965,4.27509,0.8036599999999999,1.6254780555555555,2.0591255555555557,2.474105,2.4517175,1.3217457142857143,0.7130958333333334,3.2220657142857143,1.50278,1.752705,1.279325,2.1447975,1.039945,1.176555,1.110732,1.561202,0.8982559999999999,0.952774,0.7727280000000001,1.3556642857142855,1.63808,1.815888,1.550346,2.39316,1.774514,18.025394833333333,0.3722746666666667,0.842846,1.456498,2.02912,1.745946,2.17976,1.0569942857142858,1.0569942857142858,1.0569942857142858,1.1297216666666667,1.115944,4.86817625,1.1631625,2.467555,2.122535,2.6445,1.02484,2.3459575,2.528475,2.233565,1.6452225,1.8749475,1.485305,1.647695,2.3976866666666665,4.129155,4.906785,4.785125,1.5665133333333332,4.88493,4.681663333333333,4.335875,4.30309,1.09523,7.49061,0.590344375,0.590344375,2.2820375,1.1462885714285715,16.788249999999998,5.09745,5.3607,5.13815,4.252195,4.156465,4.86126,0.49517888888888895,2.1693616666666666,1.53123,2.4576775,4.799545,4.362025,1.2974375,2.977456666666667,2.57789,2.7139666666666664,3.1386033333333336,3.289005,5.21285,2.8879449999999998,4.95198,3.1244866666666664,0.7257918181818183,1.631384,2.5253,4.588535,3.79732,0.511836875,3.478475,3.79503,0.8419925,3.879255,1.8429089610389608,2.09809,2.5466,2.03536,3.86153,5.3724,3.34983,2.7249966666666663,3.3607,3.0518533333333333,3.877895,2.9442233333333334,5.75175,3.423235,4.29777,3.637085,2.422065,3.475885,2.38747,6.943826666666666,3.66241,3.444115,3.904425,3.229535,4.89753,0.7429188888888889,9.532625952380952,3.64734,2.124843333333333,2.060243333333333,3.489433333333333,2.21625,4.402595,5.69145,2.1137525,4.835303333333333,2.654025,5.40335,2.1137525,2.6709300000000002,4.794635,5.244823333333334,4.9449,7.866271666666667,3.25363,4.676185,2.874735,5.5824,4.676195,1.4044083333333335,7.9711,4.86229,3.795005,3.6922,3.50274,3.42566,2.27413,6.20343,2.26112,3.572005,4.24481,4.77432,4.78947,4.345455,1.3347683333333331,2.71457,2.91729,1.87665,1.87665,5.819803476190476,3.002015,1.93428,4.393725,4.60475,2.876495,1.4266033333333334,1.0208822222222222,6.79775,2.87305,6.8167,3.867985,4.754825,3.62772,2.93699,3.794535,3.64932,3.75809,4.220705,6.27545,2.71629,3.61971,8.971816666666665,4.87309,3.4591666666666665,3.3706666666666667,3.0033600000000003,4.091233333333333,4.3072574999999995,1.7022275,2.7230666666666665,2.369946666666667,1.8284500000000001,1.6710733333333332,2.5787833333333334,1.7158475,2.4845425,3.0131933333333336,2.95757,2.47747,2.9746166666666665,4.681663333333333,3.502095,4.331625,3.573345,4.46911,1.357995,1.791715,2.932168857142857,2.17232,2.54553,3.1045700000000003,3.3803666666666667,2.0958200000000002,1.3850766666666667,2.6310966666666666,0.652922,1.7015766666666667,0.5395355555555555,0.5395355555555555,1.58327,3.26341,2.35046,1.3369533333333334,1.4261933333333332,0.3013853846153846,2.693243333333333,0.652922,1.1965700000000001,0.22371972972972973,1.4014466666666667,2.150755,3.5086666666666666,2.770293333333333,2.670616666666667,2.5262066666666665,2.3264533333333333,2.2792033333333332,2.5484133333333334,2.410093333333333,2.13433,2.64836,1.9188,2.63153,4.27475,0.8787366666666667,2.3911000000000002,2.5812166666666667,1.9870933333333334,3.5263566666666666,1.488514,2.5476966666666665,2.34303,4.2659,1.9535633333333333,7.06186238095238,1.6788857142857143,2.984693333333333,2.111185,2.15214,3.7815,1.85045,1.8340825,5.0502,2.7777600000000002,2.1659975,3.63408,4.140295,4.33946,3.673995,2.350225,3.420135,5.584131333333334,3.971395,3.716445,3.897815,4.61795,3.36391,4.812725,3.38054,0.864145,5.12465,1.3547933333333333,4.953495,3.689055,5.974346000000001,4.049985,4.078385,0.97899,2.11903,3.419655,4.01808,0.8433485714285714,1.3397147863247862,2.172317857142857,2.798552,5.1245425000000004,5.71419,2.1101775,3.570945,5.80995,0.3257085714285714,3.568155,2.252955,0.99909125,3.9336,2.028415,13.38664,1.19830375,2.171055,2.847766666666667,2.363545,2.0204155263157895,4.68065552631579,0.3644305263157895,1.68046,3.1426533333333335,0.9749025,3.2330566666666667,0.913872857142857,5.5668,3.834955,1.98358,5.9412,5.2363,2.380025,1.1875971428571428,4.540216666666667,5.1012,4.319955,0.9029945454545455,8.447756666666667,3.019856666666667,4.56007,2.57595,2.52145,4.986155,2.4449833333333335,3.001333333333333,2.226106666666667,2.4595833333333332,3.158095,2.95241,0.352515625,3.819295,3.815955,3.74181,3.84185,4.44385,6.2483439999999995,4.026865,1.61149,5.6368,4.975015,4.78704,4.909825,1.2969766666666667,3.02197,3.2712833333333333,2.6750066666666665,16.73348,4.01501,3.93941,4.256235,4.52965,2.45013,5.044276527777777,1.8830475,0.7318855555555556,2.506175,3.1316,4.234095,3.840805,6.598578333333333,3.046003333333333,2.13883,2.04444,3.511433333333333,4.641505,2.3000275,0.40033382440476184,2.6189215217391304,1.936015,1.08615,0.5197820852743271,0.6392303461438923,0.40033382440476184,0.40033382440476184,0.40033382440476184,1.0984925,1.605435,0.871785,1.4067475,4.618532500000001,0.21602000000000002,11.484027656926406,3.01838,2.87425,4.205655,4.53638,4.003235,2.09773,5.0891,4.1104140000000005,4.68506,3.524645,0.7090784615384614,3.28311,3.8355174358974358,0.59415,3.217015,2.8637833333333336,5.13945,0.7938618181818182,1.80423,4.273195,3.377965,2.16796,1.7733299999999999,1.6009233333333333,3.7052666666666667,3.780325,2.954285,2.89308,5.44065,5.6094,4.420855,3.20064,3.95892,6.256408333333333,3.6087333333333333,5.8616,0.41537142857142856,3.278783333333333,4.463865,1.9429100000000001,2.618485,2.9288125000000003,5.637378333333333,0.6464774999999999,2.13332,4.475505,4.11697,1.064417142857143,4.422285,4.14038,5.3106,3.5902666666666665,4.532485,3.448015,4.26406,1.24519,4.707755,2.703466666666667,5.11315,4.10997,4.5811,5.3501,4.366515,2.691295,5.14214,2.47466,2.822555,3.269386666666667,2.8961333333333332,3.0057066666666667,2.24682,1.801426,1.4833299999999998,1.8878466666666667,0.7975128571428571,1.6979766666666667,2.3646066666666665,2.0164633333333333,3.4333333333333336,3.4034666666666666,3.0033966666666667,0.9630122222222222,5.1489,3.4792666666666663,5.491887083333333,2.7022070833333336,3.02642,3.6679666666666666,1.9128666666666667,1.9128666666666667,3.0857311688311686,3.0857311688311686,4.440786168831169,0.5015657142857143,1.7078133333333334,2.5926466666666665,3.6666666666666665,2.1929773809523807,2.1929773809523807,2.1929773809523807,7.58968130952381,4.408577619047619,0.9079336363636364,4.255985,4.950935,2.28149,4.71024,3.1938,2.179015,5.52405,3.1266933333333333,3.1592066666666665,1.13307125,1.91752,3.2876766666666666,3.0578800000000004,2.663746666666667,5.56235,3.9563,3.6952,4.7277,1.8238833333333335,2.492366666666667,2.69349,1.0055288888888887,2.1076366666666666,4.226489333333333,7.938965,1.460265,2.847115,4.656755,2.13072,1.904125,1.904125,1.0538725,5.17115,7.971615,4.468475,6.10353,4.87048,1.95115,4.375435,3.828825,5.09605,4.419406666666666,0.3459015789473684,2.82026,2.68338,4.44491,3.96709,1.845674,1.9561375,2.689,4.699655,3.8813,3.380775,2.366735,1.789768,6.68357,4.63583,5.09075,3.859035,4.08465,4.484645,4.906215,4.290675,3.426005,1.936245,1.230967142857143,2.78886,3.844025,4.058525,5.3622499999999995,5.8067899999999995,2.235565,1.7255399999999999,2.5836133333333335,2.7207933333333334,2.9335533333333337,0.6509164285714286,2.20321,3.56491,1.13007,4.8187,3.211545,6.0553325000000005,1.2289722727272727,1.2289722727272727,4.09675,3.726125,3.724005,5.394,2.7198466666666667,2.2722166666666666,3.937285,4.35815,2.1085525,3.4519,2.8216366666666666,4.068455,3.5107675,3.375075,4.98113,0.9822433333333334,2.509725,4.493045,4.51168,3.234665,2.4342466666666667,3.946915,0.7449022222222221,0.7449022222222221,0.7449022222222221,0.7449022222222221,1.5759222222222222,3.9028175,3.9028175,1.6473266666666666,7.78731,3.779885,4.63161,3.4536333333333338,2.7173,4.92188,4.04877,4.9348,5.33725,1.70167,4.480475,4.245625,3.231645,4.27638,3.250795,2.50697,4.819825,1.871095,4.637905,1.63224,3.4977633333333333,2.859315,1.798925,1.157705,2.679875,4.415025,1.667126,0.8354977777777778,4.11654,1.2908375,4.968135333333333,5.2447,1.2982200000000002,3.67372,0.7750288888888889,2.574683333333333,3.00468,2.4999866666666666,2.43488,4.692575,3.043093333333333,4.468825,5.07195,4.50914,4.537465,2.1981275,1.2969471428571429,3.995795,5.37475,1.4993975,1.4993975,4.172315,0.2683726666666667,2.2234066666666665,0.2683726666666667,0.2683726666666667,0.2683726666666667,0.2683726666666667,4.753185,2.6759299999999997,2.871435,3.50671,3.25074,4.560045,2.6682666666666663,0.91537,0.91537,0.9333583333333334,0.9333583333333334,3.68913,1.93288,3.91385,1.8256078571428571,1.8256078571428571,4.83467,0.5966435714285714,2.067985,7.580204999999999,5.10545,3.180575,3.44708,0.90712875,2.063365,2.0343875,5.05,4.36276,4.477925,3.768565,1.2877242857142857,2.554555,1.7700775,7.28661,1.7496,4.86607,4.71752,2.553185,3.89345,6.0423,7.7371799999999995,4.018525,5.805,5.7528,2.28329,3.172175,2.22484,2.434365,1.871715,3.71257,3.66541,5.9601516666666665,6.55854,4.60777,1.0816466666666666,1.829485,4.61231,4.395015,2.17928,5.03155,5.05345,4.580533333333333,1.8827966666666667,3.5015666666666667,1.5626766666666667,6.287706666666667,2.604553333333333,2.36144,2.2057166666666665,2.747705,3.3371,3.6166,3.936733333333333,3.03819,3.4765333333333337,1.529976,3.759265,3.18262,3.160755,0.3293975,2.952885,4.310605,2.67285,5.73665,4.93843,5.262,6.561710999999999,5.4828,2.2213833333333333,3.973905,5.28805,1.5954533333333334,5.3239,6.1651,5.05455,4.632785,3.37066,5.5627,5.01845,3.90021,5.75034,7.5658475,3.985625,1.269385,1.619695,2.841375,1.9709759999999998,4.60471,4.25869,5.4666125,2.4968566666666665,2.498276666666667,2.67391,2.4572766666666666,2.356873333333333,1.1125777777777777,0.5417005882352941,3.84934,3.92286,3.341333333333333,4.12388,2.80117,3.4092000000000002,5.486996666666666,3.1594599999999997,0.5979941176470589,3.684975,5.64455,1.7598175,1.6782219999999999,3.750035,3.491325,2.4968066666666666,4.1595,4.79327,2.6628333333333334,2.2606766666666664,2.2478366666666667,2.3433733333333335,2.61193,4.131325,5.0223691666666666,8.061555416666668,2.1770199999999997,5.3294,3.5892350000000004,5.7820583333333335,2.7501233333333333,3.299345,2.219425,2.4372066666666665,1.294015,1.294015,2.6539699999999997,2.3877200000000003,2.7136,4.007695,1.7977060000000002,2.184715,1.86791,0.717,4.47742,0.6600983333333333,1.05625125,3.37494,4.88904,4.1882,1.7138825,4.83504,2.90955,0.8683142857142857,4.1899,3.736804285714286,3.2273566666666667,2.36976,5.5109,0.30556206896551724,2.445813333333333,3.15197,1.47491,3.612735,5.8387,2.31183,1.3764399999999999,3.85697,3.74141,2.847766666666667,2.847766666666667,3.55856,4.17063,4.879745,5.130886666666667,4.97048,0.9771955555555556,2.7339266666666666,2.6981966666666666,4.429595,5.32085,5.9591,5.14885,4.468633333333334,3.8651,3.7808666666666664,3.4158000000000004,3.7466333333333335,3.1959666666666666,3.0135433333333332,0.7029171428571429,2.488325,2.4297875,3.528425,3.0924666666666667,3.11088,0.7741566666666667,2.42378,3.5941145,4.87374,6.1638,3.97516,2.262675,2.262675,0.768483,3.201835,4.439755,4.18075,5.474405714285714,3.10195,5.0795,0.5894145454545454,3.4503,4.02499,4.162805,3.4401433333333333,0.9849614285714285,4.2075,3.9948,4.991805,3.803095,4.815355,2.82351,4.27567,1.8054775,0.9677157142857142,2.7772799999999997,5.0319,4.19018,3.11121,1.4972583333333331,3.993835,2.49062,2.736275,2.7825831111111112,3.12079,4.35372,2.8266833333333334,1.765514,3.404833333333333,1.4280217857142856,2.9395733333333336,2.5956966666666665,2.231975,3.0223366666666664,2.95829,2.5337733333333334,2.6614366666666665,3.725115,2.9622233333333337,3.5656533333333327,2.23861,1.68628,4.323285,3.068486666666667,2.4933833333333335,3.5656533333333327,2.29591,0.8440554545454546,2.4799675,0.9938888888888889,2.2496275,1.56268,0.9462818181818182,1.8280675,2.08548,2.6830232499999997,2.6126,4.760975,1.5602875,4.106235,3.02304,1.552514,2.38915,3.1533333333333338,1.51136,2.8293366666666664,2.9247433333333333,2.2585,1.58244,1.84726,3.6867,2.46897,2.916698333333333,2.9559800000000003,3.370433333333333,3.9206,2.1404466666666666,4.467666666666667,3.4719333333333338,3.8176666666666663,3.5414666666666665,3.5660333333333334,3.745533333333333,2.0459533333333333,8.32319,4.80673,4.925735,3.13983,2.815305,1.959745,3.991225,1.7402840000000002,4.04515,4.57617,1.491506,2.4214433333333334,1.0896933333333334,2.5339566666666666,1.7211466666666666,2.340873333333333,4.8601366666666665,3.0510333333333333,3.520955,4.598645,0.8058875,1.56318,0.995045,3.60012,11.82997,4.3912,6.6011,1.9423575,5.33655,4.68273,2.4738475,5.36455,0.2769594117647059,0.8364628571428572,4.65461,4.74237,7.3524449999999995,2.336045,4.313585,5.4986,4.635665,4.666755,4.17302,4.34878,2.885785,5.332373333333334,4.57861,3.720995,3.19715,2.2703533333333334,1.8446833333333332,1.4204992291666667,2.4021133333333333,4.136385,5.2839,1.5767,8.87001,1.8309266666666666,2.7021758333333334,1.09226,1.09226,7.781859166666666,3.07027,2.56825,2.1749675,2.6988299999999996,2.1376766666666667,0.9973900000000001,3.401455,2.766173333333333,0.5916442857142857,1.7020133333333334,3.740866,3.740866,1.1259033333333333,2.44238,2.28249,2.8860116666666666,1.336765,1.7255833333333335,5.109532,2.7646033333333335,2.876075,1.203725,1.203725,4.46038,5.52595,4.799685,3.31993,4.039235,6.16489,2.841275,3.280366666666667,3.8262666666666667,3.85619,1.1560666666666666,3.385733333333333,2.4776875,3.791645,2.16572,4.67919,3.41033,4.1224,3.443105,5.561154,1.1377666666666668,2.2702425,1.760665,3.563455,4.944342499999999,3.899555,3.740265,4.50415,4.1493,1.800535,4.347145,3.453145,3.74321,2.4090599999999998,0.81743125,3.4534,4.56852,5.01185,1.1454066666666667,3.0194433333333333,3.3495000000000004,2.1541799999999998,1.8349836274509803,1.8349836274509803,1.2561683333333333,2.6408033333333334,1.06846,1.341366,4.91388,4.73728,0.5257095238095237,3.58961,3.4932,3.987905,5.5007,0.4103745,9.526485000000001,5.288,3.17059,4.154025,4.634905,5.598985,5.3378,6.8920175,0.7535454545454545,2.9565533333333334,5.49975,2.75766,1.9895175,1.9021000000000001,4.757825,5.41684375,2.5524880357142856,2.6472233333333333,3.526666666666667,1.7868925,4.918375,10.84105,8.96996375,4.0318,4.537935,3.080830833333333,3.04789,3.75472,1.8157039999999998,3.0096433333333334,3.60336,4.095785,5.2533,5.08374,6.622296666666666,2.711123333333333,4.16524,4.708155,5.288,5.77115,6.040876666666667,4.083075,6.44575,3.318465,2.862885,2.847595,5.8561,3.680145,5.81285,2.16914,3.309343333333333,3.38276,6.0251,4.132925,4.904995,1.42156,0.88944,2.71505,0.6403286666666667,4.64885,3.520355,3.427675,2.862,2.1037500000000002,2.92935,2.494775,3.0853079999999995,1.8960899999999998,3.0918900000000002,2.965075,2.3011825,2.535975,3.768782,1.2600966666666666,2.9114966666666664,5.26765,3.5942333333333334,1.0502775,2.751023333333333,3.6225941666666666,3.869685,1.5548,5.4852,5.58475,2.0679766666666666,2.7796366666666668,30.47874513355599,3.5145666666666666,1.70355,3.991233333333333,1.74376,2.5970199999999997,2.735203333333333,3.4703666666666666,1.888905,2.54255,2.4527175,3.5838134999999998,3.21475,2.694025,1.5013025,2.15196,2.8653,0.3812713636363636,1.10172,2.9643366666666666,1.7017520000000002,3.33436,1.5548,2.2243933333333334,26.033749999999998,5.124,4.131575,3.62538,2.667885,2.4611675,2.6965466666666664,2.330855,4.10529,5.787273000000001,5.82715,1.647898,2.05416,2.04504,2.6554933333333333,3.724619166666667,5.4273,4.58067,4.64826,0.19251787234042553,4.88668,5.1738075,3.78641,9.20754,1.08483,1.08483,3.0550266666666666,3.8208,6.1198,2.2474777777777777,1.134311111111111,5.3828,2.006585,4.363975,4.04519,3.55242,4.452745,3.90582,4.57851,2.98262,0.7222055555555555,3.138695,2.1611141666666667,4.42526,7.303319999999999,4.52063,2.1898966666666664,2.1898966666666664,6.6400275,5.1573,4.09552,6.16355,2.0331233333333336,5.828725,1.4741166666666665,1.3604033333333332,2.8547833333333332,1.9490333333333334,2.89452,2.784603333333333,3.742445,4.03554,4.56214,5.41385,2.37537,2.334545,1.8966225,2.840975,2.156415,2.029355,1.985635,5.0745075,1.819965,3.8918800000000005,2.3773566666666666,3.1677199999999996,2.7569700000000004,1.73503,1.5357714285714288,0.971077,2.67616,3.722633333333333,0.760202,4.59096,1.8496925,6.012560833333333,1.962705,1.6665475,1.4754975,1.51471,5.901228888888888,2.04446,3.205973333333333,3.1552399999999996,1.19350875,1.83634,4.969302,3.12692,2.5972033333333333,3.6892666666666667,2.8429266666666666,2.9441566666666668,1.2390864285714285,0.4069316666666667,0.4069316666666667,0.4069316666666667,0.4069316666666667,0.4069316666666667,4.282335,2.7798700000000003,2.364075,3.5691,1.3346133333333334,2.654036666666667,3.1978666666666666,2.7576433333333337,3.742165,2.91488,1.8546833333333332,3.01404,3.5277999999999996,2.2961675,1.932115,3.4311,2.645793333333333,2.8493600000000003,5.96675,2.5842966666666665,2.7119,2.5480466666666666,11.125813333333333,5.1716,4.93189,4.930625,4.289695,2.8415966666666663,5.06555,3.37033,2.71503,5.897661666666667,4.2488,3.21658,2.3038525,4.173595,5.024544000000001,3.97327,17.54836542857143,1.18081625,4.880675,0.8294477777777778,1.316175,2.906225,5.07225,4.096755,3.721855,1.4884633333333335,2.22409,4.21345,2.47772,4.64319,3.6199064285714284,2.53621,0.6107916666666667,2.7371133333333333,5.02265,2.49282,2.29694,2.24897,19.472544166666665,1.73137,1.2638875,2.685396666666667,0.31778346153846154,1.9590025,3.0616233333333334,1.8831833333333332,2.9628566666666667,2.6578,7.409444166666667,1.94363,2.707925,2.3550175,2.15267,1.6143233333333333,3.432866666666667,3.47539,3.08538,2.995426666666667,1.8949675,2.4986474999999997,3.2119138888888887,4.62333,0.41482749999999996,3.4105000000000003,2.9541033333333337,3.09772,2.104085,3.617355,3.37532,1.5955833333333331,2.2164733333333335,2.15647,2.130196666666667,1.7950799999999998,3.585135,3.24858,0.7593783333333333,3.19754,5.6308,4.6529,2.26808,2.26808,3.0711033333333333,5.06745,3.681215,3.270255,2.2879075,1.0205818181818183,4.161865,3.523115,5.8695,4.28374,2.359436,2.359436,1.7508875,3.722865,5.2051,4.02394,4.181895,3.6320333333333337,2.5183766666666667,4.431615,3.514285,4.14467,3.17333,2.743916666666667,4.7238066666666665,3.3282900000000004,2.5592166666666665,1.9371433333333332,3.713275,2.811525,1.5409966666666666,3.642345,4.434585,4.678835,2.6099366666666666,4.583655,4.442935,6.7779940000000005,4.13192,2.20378,4.96567,2.978585,7.3848199999999995,2.6902899999999996,1.3377166666666669,4.75471,3.4362666666666666,4.6356,0.5679057142857143,0.8281616666666666,3.740095,3.76372,2.1734863636363633,4.513085,2.6638,2.846205,10.73472,1.9264199999999998,1.25907,3.69126,2.5507,3.47411,5.0762,7.224226666666667,3.117496666666667,2.13102,3.06244,2.1101033333333334,3.4250333333333334,8.474959589490968,0.8528480952380952,1.02633,5.32475,0.443818,1.6467425,2.3954,3.044825,2.80965,2.3952825,3.7971,2.4732225,14.19264,5.0149574999999995,2.3690475,2.3690475,4.5041,0.8113166666666666,6.4906500000000005,3.924315,3.947075,5.395716666666667,3.41578,4.792805,1.443745,2.69104,2.71234,2.697485,2.98164,2.61049,3.222455,3.49455,3.56625,2.970965,2.95051,4.198405,4.66422,4.70318,2.939173333333333,3.20689,5.090708333333333,4.641495,19.30543523809524,13.752354761904762,3.0622578571428574,0.7191074999999999,1.5092571428571429,4.575385,3.318915,3.150705256410257,2.31017,0.8436433333333333,0.7132925,0.6928957142857143,2.09312,1.651556,5.371633333333333,3.4134666666666664,0.7144027272727272,3.201435,2.257275,2.0750825,2.11638,6.07983,1.4822359999999999,4.86677,3.23552,3.03708,2.359145,2.563286666666667,2.52435,0.6996081818181819,2.83905,2.7490433333333333,3.977926666666667,3.074666666666667,4.844026666666666,3.516675,3.239815,2.2209875,4.52079,7.642994999999999,2.141525,2.53025,2.5053,1.62942,2.588825,2.3944875,2.715475,0.9502980000000001,1.2682625,0.9450625,2.75154,4.042475,6.10575,5.786,3.00366,2.302025,2.8838,3.7854666666666668,8.227936666666666,1.22745,0.40402,2.845055,1.9935833333333333,1.58719,3.4795680000000004,1.222204,2.019814,4.424643333333334,3.161027333333333,1.2177499999999999,1.8411266666666668,3.8967566666666666,3.37365,4.60608,4.973345,2.4235825,5.64985,4.06279,0.8354615384615385,5.4118,4.122285,4.4394020833333325,3.6978666666666666,2.272385,1.3281560000000001,1.3604325,3.370165,2.745325,3.150375,4.409575,2.727435,2.59924,3.124045,3.775335,4.969355,2.547265,2.58213,4.189785,5.7987,0.62502875,4.44878,1.8609275,3.49899,3.9714333333333336,2.2315375,3.07496,2.222505,1.92053,2.718595,2.3154725000000003,2.0156300000000003,5.74095,3.63199,1.3261842857142856,7.09496,1.1122933333333334,3.79938,1.69644,4.756695,4.25941,2.452733333333333,3.44486,3.962955,10.1264,2.955135,3.583285,3.8314,3.563535,1.6734925,7.67706,3.678165,4.63297,1.92422,4.169155,2.985025,1.21379625,2.0856000000000003,3.960525,2.170835,4.181375,4.6533525000000004,4.262405,4.55931,2.290735,5.5742,4.031925,3.2680933333333333,2.4466466666666666,1.766892,4.7527,6.2704,4.95956,4.542215,2.99427,2.3089025,4.099695,3.305795,1.1529895054945056,4.02368,4.765067500000001,3.94389,2.706035,3.503965,0.5144228571428572,0.5144228571428572,5.48145,4.520225,5.76185,2.262355,3.689015,5.07235,0.820116,4.354905,5.02665,4.912685,4.90398,4.31591,1.818625,3.112715,2.1820025,4.49267,0.6960625,4.14911,4.646685,2.683155,2.86692,4.88969,2.262895,3.070555,59.7008665021645,3.228465,2.516,1.6762225,3.22333,3.8731,0.7632575,0.98096,2.59165,2.59165,1.27579,3.1834,2.50629,4.014275,7.72074,2.5230166666666665,1.1736671428571428,1.4465700000000001,2.723793333333333,3.9877908333333334,0.9001939999999999,1.811395,1.297504,2.03897,4.48672,4.236825,3.02407,22.92268974025974,4.5929,3.806645,3.130085,2.0416966666666667,2.879,3.08102,2.47393,5.23289,1.679138,4.18275,3.2690584960317457,6.094959027777778,1.90463,2.59896,1.80901,4.308365,2.41132,2.401835,2.0586966666666666,4.018077777777778,4.14158,3.36526,4.38982,4.984885,2.49793,3.534265,2.915545,2.681995,2.821317777777778,2.237555,1.9598425,3.944235,1.1506833333333333,3.820825,4.637845,2.53209,4.8776,4.78873,5.000713333333334,2.4220333333333333,2.38473,2.59305,2.74415,4.00192,3.377285,4.962565,0.6971885714285715,4.46849,2.6661,3.75121,2.4315275,1.8070540000000002,4.265725,1.2762222222222224,2.903965,4.320305,1.223826,3.606895,3.392915,4.87459,6.3660225,2.099915,2.733655,2.600776666666667,3.8714666666666666,2.0516366666666666,2.5898326666666667,3.498333333333333,2.32682,2.43474,1.4767433333333333,2.0741575,2.0741575,1.8773499999999999,2.05599,1.8139166666666666,2.8709466666666668,3.65046,5.43055,2.88915,1.64335,4.7124,3.64174,3.49864,4.137855,1.92212,1.89694,4.68565,1.770925,5.793411666666667,4.54806,3.56893,2.40206,3.6601,3.62159,2.99952,3.45381,0.14393448979591836,2.6794733333333336,7.624090000000001,1.549166,3.3454,4.23822,0.9934228571428572,1.1880866666666667,1.88258,4.276975,3.63071,6.8559600000000005,3.39281,3.6071,2.98587,2.659115,3.645585,3.26814,3.87541,3.25763,2.842836666666667,5.2719,4.41297,4.732805,2.4527266666666665,1.9316175,3.363545,4.513935,2.71566,3.291095,2.16135,4.36509,4.50656,3.63303,2.61083,4.22833,4.916185,2.667125,4.346225,4.422035,3.500965,4.51091,3.4736,2.62109,7.18033,4.82926,5.98245,5.03025,3.550495,5.65997,4.08335,3.322145,1.222728,6.7427,2.468445,5.11555,4.256945,4.07875,2.9569433333333333,2.0010033333333332,2.20501,2.32437,0.9738070000000001,3.421,3.3497,2.91473,2.3007966666666664,3.85992,4.527,2.775586666666667,0.5395166666666666,4.43324,4.392095,4.705195,5.29635,3.47741,4.413275,5.10825,4.67262,1.4232555555555555,0.9764538461538461,2.679956666666667,5.50495,5.8202,0.47816625,2.822535,2.5067166666666667,3.221475,4.543725,3.9624,1.8940025,4.048255,3.191275,4.605815,2.93054,6.04015,4.90001,7.0283175,0.5647558333333333,4.4188,0.781636,2.24852,4.1254333333333335,3.3939,1.23993,2.2904,4.419795,4.003715,4.256035,2.2363766666666667,2.2279175,2.71502,5.05715,4.267535,3.894855,1.6532240000000002,1.2323997142857144,5.9825,2.40533,7.652925,4.5517,3.55537,2.274,1.55847,4.36692,4.72726,1.70386,2.38096,2.4713225,2.6794733333333336,6.9239033333333335,3.163333333333333,2.877753333333333,4.464294166666667,3.28686,1.9283966666666668,3.458265,7.165732500000001,4.26019,5.57305,0.6464263636363636,3.94709,4.517315,4.760421785714286,4.259505,4.102405,2.97579,2.66956,3.022255,2.88014,3.48407,1.746134,6.217179,4.5977,4.97209,3.729555,3.35016,3.2163333333333335,2.25115,1.2457075,1.574675,2.712105,2.433875,1.0663933333333333,2.61585,6.4363,5.81475,3.47448,4.559505,16.179117142857145,4.65974,4.455165,3.98753,0.6992266666666667,5.61145,4.774685,4.917675,4.98908,5.73005,2.48513,3.51187,3.310235,1.488164,3.03697,4.67902,2.9018566666666668,1.4685679999999999,4.14947,4.860045,3.918875,5.76165,4.89654,6.0382,4.75576,2.8687466666666666,4.29715,4.35497,2.595105,3.02664,2.8927566666666666,1.7626429166666666,5.1365,2.6777189285714287,2.0286566666666666,3.942325,2.735835,4.415315,4.323285,2.02909,2.812105,4.464015,3.53422,4.68571,4.38862,4.397885,5.158501,3.61651,5.30525,2.5813233333333336,3.870685,4.437745,1.497386,4.695755,1.0613616666666668,4.345585,3.77582,1.1065028571428572,3.554045,1.99612,7.031145,2.762477761904762,2.762477761904762,2.762477761904762,0.8952749999999999,1.1856083333333334,1.827335,3.69226,6.44677,3.5042255555555553,1.937065,2.4516375,2.08321,3.702565,2.33416,0.37762461538461534,1.60082,2.1989675,3.46432,1.81146,3.060965,2.25075,2.07664,3.838945,2.85055,4.11881,3.17226,1.89629,6.62888,1.983165,4.261815,4.00872,6.194488333333333,1.5745333333333333,3.448935,3.7262,3.837315,4.461435,2.84352,2.070625,3.796865,6.203117333333333,1.985765,3.3794,3.07477,2.2024275,4.87471,4.59196,2.8429800000000003,2.31381,3.6774475,6.197541428571428,5.4557,2.96623,2.37229,2.60031,2.81584,3.79184,3.93509,1.27877,2.75209,4.69254,0.7667325,3.93508,3.883085,4.072015,3.99683,2.329215,3.89601,1.9183,4.551445,8.204806666666666,4.868065,3.342505,4.365305,0.9723525,4.559315,2.29665,4.22222,5.559775,2.99492,3.878845,12.052435,4.766135,3.545235,1.4489825,0.6981558333333333,2.787105,3.72989,3.36834,3.596695,2.20175,3.033666666666667,2.4392666666666667,1.1313033333333333,1.1313033333333333,1.8815166666666665,2.3509933333333333,3.800933333333333,2.40015,3.7361,2.5896266666666667,2.7789866666666665,2.9682766666666667,1.5029566666666667,2.2890133333333336,2.064583333333333,2.0966400000000003,1.4369925,2.4512899999999997,0.7822616666666667,10.072216249999999,0.7822616666666667,3.437,2.112,2.7110566666666664,5.02005,4.22166,4.710505,4.7301,2.47674,2.8175033333333332,3.265935333333333,3.2385566666666663,3.775866666666667,3.3551,2.85683,3.251416666666667,1.6118866666666667,5.35935,6.6204,2.88684,3.4578666666666664,3.0673666666666666,3.058246666666667,3.13487,1.3217457142857143,3.3217700000000003,3.187556666666667,4.231665,6.10265,4.38296,2.8136266666666665,3.6956666666666664,3.25302,4.470703333333333,4.198375,2.657833333333333,4.150985,3.3100466666666666,3.3663666666666665,4.47909,3.14137,4.234555,6.332231666666667,3.11927,2.2760633333333335,1.7218533333333335,1.5215133333333333,5.074273333333334,3.4101966666666663,2.6058833333333333,2.0940066666666666,2.07608,4.699455,3.86161,3.47862,3.0949033333333333,3.4439333333333333,3.6528333333333336,3.7949,4.062033333333333,3.5924666666666667,0.5323775,4.1166,2.5376166666666666,2.529733333333333,3.4933,4.641965,5.29235,5.8056,2.67012,4.7130366666666665,1.1545316666666667,2.62256,2.62256,4.375815,3.45905,3.70176,3.550145,1.742865,2.987875,3.94184,0.9370842857142857,3.9840343333333332,2.9622499523809527,1.8749656666666668,0.354549,3.59178,3.50657,6.6097850000000005,3.28734,5.7551,3.28364,3.89621,4.11066,1.74373625,3.41788,5.20925,3.45946,3.2328533333333334,3.372866666666667,5.8856725,2.1508925,1.00465,1.9233733333333334,1.7673833333333333,5.16085,2.4149433333333334,2.333626666666667,1.91747,4.658135,3.98138,4.44146,0.706107,4.38588,4.11998,2.79303,2.672523333333333,2.91305,3.398875,3.8799366666666666,1.5137166666666666,0.6746157894736843,0.8308357142857143,3.7604333333333333,4.49124,5.958683333333333,4.832685,5.13585,5.4494,1.4506428571428571,3.9714333333333336,2.1085433333333334,0.981375,5.5525,6.0506,3.60132,4.85594,3.959925,6.937673333333334,3.994566666666667,6.650191666666666,3.715495,2.700219166666667,6.8613,9.78506785897436,2.73033,0.709176,4.08115,4.272315,2.15442,6.10855,4.813305,3.83753,2.8872066666666663,2.8872066666666663,5.00405,3.72035,4.129875,5.2238,4.065832142857143,2.569724285714286,1.17262625,5.87535,2.49332,5.917665,4.405695,5.44155,3.424305,2.22958,4.68374,4.92254,3.3546,3.903695,4.576945,28.872699880952382,2.4673375,2.5497,2.308525,1.5360416666666667,2.63603,1.395875714285714,3.034026666666667,2.9768966666666667,3.5078666666666667,3.3974333333333333,0.8429615384615385,3.2775833333333337,4.998955,3.93295,3.378766666666667,4.03928,6.1250800000000005,5.1944,5.0122,4.49187,4.6382666666666665,4.695655,3.6932666666666667,1.70651,1.0189083333333333,1.3706933333333333,3.4417333333333335,1.5535233333333334,3.4339999999999997,2.366913333333333,2.2791,1.8406366666666667,2.626735,1.996505,2.02466,2.961105,4.106265,3.63871,4.53656,1.3901059999999998,4.317833333333334,2.49148,4.121315,2.3783,2.53728,3.56631,1.4549733333333332,4.33177,6.356091666666667,2.83803,3.51982,3.969155,2.65245,3.0928116666666665,3.671466666666667,4.592785,5.1759,0.3160040604890605,0.3160040604890605,5.61925,5.51,4.630025,2.86927,5.26955,4.679655,0.67868,4.45136,4.91848,3.619635,6.33605,4.66893,7.52329,14.279756666666668,13.11980705128205,4.411275,4.144645,2.7050533333333333,0.6764753846153847,2.6431366666666665,5.6479,1.2759216666666666,4.697755,3.7166,2.7911066666666664,2.1175366666666666,1.87106,4.9406,4.040745,9.561056428571428,4.909325,3.964655,7.336290909090909,3.36172,2.8364133333333332,1.47616,5.056333333333333,1.86517,2.5174766666666666,2.665016666666667,0.325659375,2.978345,3.785115,4.787654166666666,0.877074,1.4788583333333334,4.04061,0.595669,0.595669,3.13897,3.0832766666666664,3.5871999999999997,5.027,4.70872,5.64505,3.591025,4.0408,2.90217,3.1387300000000002,2.76215,0.7070875,2.983826666666667,2.87328,2.92814,6.67002,2.724325,8.078025,2.732675,3.862965,3.04361,2.3387425,2.948225,2.91295,1.64651,2.44289,2.1030725,3.69906,2.626875,3.903225,2.84644,3.8040158333333336,3.8040158333333336,2.628540833333333,2.628540833333333,8.8751415,2.56903,0.7806230000000001,2.5809266666666666,2.4910166666666664,2.4876866666666664,3.903225,2.10894,1.9593440000000002,1.485308,4.219615,4.55934,1.5410675,4.536465,4.04522,6.690016666666667,7.4072949999999995,2.80537,4.75226,8.1647,4.965325,4.0357,2.8424933333333335,4.343905,4.083726666666667,4.506885,5.927993333333333,8.533118,3.57763,3.950465,1.2801316666666667,4.51451,4.063717333333333,3.74917,3.6605091666666665,4.616135,2.58696,2.814666666666667,7.28305,3.588395,1.35352,6.38893,3.96392,3.197233333333333,5.1621,3.197233333333333,4.014605,4.07083,5.7342,1.0499757142857142,3.9529766666666672,4.798945,3.93694,1.3844733333333332,1.7408325,4.86832,4.60391,2.73873,7.259938333333334,4.225225,3.855555,4.345945,4.636654999999999,1.540375,4.651995,2.847295,3.73622,4.25959,4.52583,4.880575,2.904395,4.896655,5.14575,2.2823510000000002,1.7977275,3.7437666666666662,3.623533333333333,3.3763666666666663,2.9920766666666663,3.8287,2.9868233333333336,4.732755,3.25991,3.525275,3.008095,1.8470666666666666,3.573166666666667,2.15795,3.048855,2.976115,2.74556,0.6960625,2.256965,1.7717266666666667,3.17218,2.13604,3.732543,3.919765,1.453258,3.544705,4.426865,0.78108,1.3158633333333334,3.59285,3.716825,3.8211,1.98263,1.8708866666666666,3.478935,2.4674158333333334,1.6694666666666667,2.930945,1.919005,1.165764,1.359285,6.061355,3.70718,2.28764,2.381455,2.38863,3.75412,0.83762875,0.32622214285714285,0.9171271428571428,4.75244,2.1642984285714286,4.616055,2.2722525,1.9068878571428574,3.154026142857143,1.2471382857142856,1.0565458571428572,0.688658,0.5814742857142857,2.8604308333333335,6.6375,3.07732,3.63928,0.32008678571428567,3.60897,19.470051952380953,2.99652,7.5593486695804195,1.06463375,1.06463375,1.06463375,1.06463375,5.82603,4.08013,3.23031,2.2212533333333333,3.297615,3.462925,4.33253,4.29699,3.42022,4.685255,4.26708,4.57057,3.7020860000000004,4.177845,4.88629,4.65458,4.963435,3.577875,4.54125,2.538726666666667,4.25454,3.34545,4.042065,4.06575,4.455125,3.2125566666666665,2.619875,2.3985133333333333,4.52559,1.3190164285714285,3.60596,3.18314,3.7944513333333334,4.262405,3.81472,3.004785,2.795245,5.23445,3.76361,3.1046,5.28375,5.1958,3.26661,4.0653,1.800742,1.800742,1.749345,4.731095,4.07895,6.389945,5.46195,3.9290716666666667,6.53105,4.45039,2.1941825,9.269105,4.703665,6.991275,4.26307,2.7313766666666663,3.93365,0.25269827586206894,0.91222,4.177412666666666,3.878015,5.112,3.29243,5.848326666666667,5.22255,0.5529885714285714,2.741605,0.517924,1.6813242857142856,3.19121,2.196605,4.22541,3.611845,3.17666,3.333065,3.481315,3.65935,3.366905,3.596495,4.450895,2.270925,1.6813242857142856,2.897115,1.9866575,3.55408,2.329145,4.145115,3.321435,1.6734925,4.327265,4.434375,1.33058,5.42045,4.960915,4.109785,2.849016666666667,3.1874000000000002,4.401525,1.7265499999999998,1.42271,2.3361733333333334,2.6970833333333335,2.5681533333333335,2.173833333333333,5.18555,3.4146,5.304335833333333,4.071835714285714,4.956115,4.450085,1.8113,5.6188,4.618865,5.33535,4.344035,7.349895,1.9226,4.956675,3.83467,3.04766,2.001915,1.7553566666666667,3.814995,4.469125,2.3218833333333335,2.4621666666666666,3.49776,3.49776,2.5864833333333332,3.2996200000000004,3.266195,3.856875,3.485405,0.8753923076923077,3.18999,4.27009,4.836851111111111,2.729845,2.96442,1.71382,2.78787,3.310055,2.20882,4.73615,4.26456,4.51442,2.2508399999999997,1.0308363636363636,6.00621,3.619525,3.474,3.4534000000000002,2.04462,30.554603226190476,4.51499,3.1988,4.83461,4.157865,0.9006,7.5564225,2.551175,5.5038,1.7756666666666667,4.50392,5.641051666666667,3.642435,2.86197,2.1968675,3.842233333333333,5.19815,2.19586,2.7483400000000002,3.786955,3.428795,2.52557,6.259,2.086425,4.008915,1.18794375,4.38539,3.44064,4.045665,4.50706,3.012,2.4973933333333336,4.48396,4.945895,3.632545,3.632545,6.60235,1.5598075,4.227185,7.781616666666666,3.267315,4.28231,3.349695,4.01567,3.383965,3.96848,1.269805,2.43368,4.231575,4.32996,5.50685,4.642265,2.64738,8.652646666666667,3.206,3.821215,1.7502571428571427,3.56722,2.1349633333333333,2.60535,2.06895125,1.2350966666666667,2.6831366666666665,0.9756828571428572,1.0160242857142856,1.0160242857142856,1.0160242857142856,1.98815,0.52452125,3.89706,1.2234233333333333,2.761146666666667,1.0212616666666667,1.6903566666666665,2.60562,2.4496733333333336,0.79492125,1.7423533333333332,1.6905766666666666,2.331656666666667,1.6614419999999999,1.6614419999999999,1.6521066666666666,2.11818,1.229918,2.22833,1.5221466666666668,1.2402266666666668,2.13563,2.26506,6.0122,1.963635,4.554075,18.434936083333334,6.738915,3.691675,3.455095,3.1877,2.8555833333333336,2.698733333333333,3.1466266666666667,0.758525,1.02184,1.02184,0.63625,2.275463333333333,3.919,3.7884,1.9830999999999999,5.49035,3.475875,2.46037,3.884165,4.75891,4.339065,4.29729,3.3962333333333334,3.16205,3.270375,5.65305,3.699666666666667,4.82129,0.509069,0.509069,2.174485,3.797535,5.2374,3.612195,4.23417,4.84349,6.886214000000001,7.78637,4.11467,2.503365,4.516495,4.46027,2.61816,2.25858,2.97156,1.4393966666666669,3.684285,2.32575,1.735,3.328336666666667,4.947695,2.0499125,5.927993333333333,1.716205,3.8748,3.88232,0.9296657142857142,3.5500666666666665,2.90204,5.15085,1.1393416666666667,1.7157525,2.4621225,2.1071075,1.6273925,2.51055,2.295245,2.062435,4.65627,4.66765,2.490805,1.843235,1.4358433333333334,3.8326333333333333,1.99563,2.48928,4.797645,6.7146,2.4273358333333332,2.949135,3.398485,3.58825,2.35832,5.51285,4.18282,2.99791,1.4724875,4.56445,2.53244,2.78213,2.515395,3.987785,5.06605,5.2731,2.4002333333333334,2.789286666666667,3.1208333333333336,3.7534666666666667,1.9833333333333334,1.595348,5.8441,3.4974000000000003,2.3170456363636367,3.1694366666666665,3.00726,2.51893,3.1276733333333335,3.28856,3.6297333333333337,5.11655,3.89784,3.07104,5.3056,3.77542,2.211455,3.652615,3.811275,3.93779,5.9422525,1.96597,3.739425,2.648855,6.19565,3.525195,0.56643375,2.332525,2.222195,3.490555,2.73527,2.208255,2.63462,0.704,2.9020166666666665,5.11745,2.3248975,4.12373,2.6986166666666667,4.42778,1.9595175,4.715075,3.52104,1.9114879999999999,2.89634,6.95411,4.488655,4.63849,5.19175,7.630967045454545,4.540915,4.594965,2.34254,4.661285,3.13765,1.8799733333333333,1.8788375,3.3655666666666666,0.9824885714285714,2.22106,2.756626666666667,2.6544733333333332,3.585566666666667,1.755816,3.27744,1.8075433333333333,5.4807,6.1556375,1.0087375,1.74237,2.51706,2.77335,2.0093866666666664,1.0565333333333333,5.553388333333333,2.26261,2.6746700000000003,3.3755,3.0717700000000003,3.2136033333333334,3.074785,2.12793,3.0845533333333335,2.3892666666666664,4.1803,3.833715,3.84327,3.2918066666666665,3.23001,0.872068,1.8236066666666666,2.351895,2.003976666666667,2.5313966666666667,1.1286433333333334,2.6211333333333333,2.9524000000000004,3.51301,1.9748466666666669,3.678675,3.48525,5.83535,3.412315,0.5825108333333333,1.989426,2.933923333333333,3.676933333333333,0.7895863636363636,2.8587433333333334,3.454746,3.9140333333333337,3.10413,3.3143191666666665,3.620975,3.9828666666666668,2.9536266666666666,2.17493,5.69645,5.26735,5.28935,5.385,5.7911,1.7869033333333333,3.57881,3.727866666666667,3.5787333333333335,3.1156133333333336,2.9971433333333333,4.0862,3.4862333333333333,3.023123333333333,14.450816666666666,4.30338,1.09114,3.30828,1.473128,3.378633333333333,3.25743,2.421136666666667,6.068266666666666,6.552403,2.4500533333333334,0.860835,4.260645,3.518966666666667,2.91856,4.90711,5.2788,5.9608,4.95397,3.48634,2.0342425,6.736375,1.2801316666666667,6.83909,4.96403,2.50539,4.11449,7.5460666666666665,6.05935,2.227116666666667,1.6979166666666667,2.111185,7.4738500000000005,1.5548,3.1503099999999997,2.8198533333333335,4.3245330555555554,5.9901,4.12039,6.3081,3.590455,5.3262,3.630005,8.52747,5.2288,5.7372,2.336185,2.671525,11.538923333333333,3.43152,3.30711,2.40213,1.5679566666666667,3.045916666666667,2.8084000000000002,0.6731125,1.0825879999999999,1.0748785714285713,4.116305,6.988106666666667,2.910208,1.4944433333333331,5.04905,3.598455,0.55964,4.677395,3.36714,4.4691,3.93131,3.49983,2.7183333333333333,4.076735,9.79481,1.7540775,3.9170024999999997,4.289955,4.1921,3.571435,0.8350583333333333,3.6124333333333336,3.7177333333333333,1.57846,2.4525433333333333,2.30275,2.65408,3.390333333333333,2.0826933333333333,2.31347,6.171227142857142,4.59671,3.94237,4.095715,1.4386299999999999,2.46236,5.2745,5.04125,5.18645,4.569615,4.81843,5.10495,1.800742,3.863875,7.616524999999999,1.1966016666666668,1.6292099999999998,2.4945166666666667,2.9161699999999997,2.75163,4.793983416666667,0.8308357142857143,2.32222,3.29083,5.0302,4.2639,2.23725,2.832926666666667,2.0271325,0.5829,2.673025,2.88857,7.604585,4.176925,4.476675,0.934064,3.9576333333333333,9.562929583333334,11.012303333333334,3.419735,1.15367125,3.548795,3.564365,2.8639500000000004,5.69892,4.84087,3.953425,2.2301125,3.8327666666666667,2.66488,2.4847433333333333,0.8422818181818182,0.4192573333333333,2.434185,3.27892,1.9391253333333331,3.30702,3.679133333333333,3.813565,4.608005,1.408214,3.291786666666667,1.8679325000000002,1.8679325000000002,2.200995,2.8701,4.068075,2.5925433333333334,2.7670933333333334,3.4004,3.8333666666666666,4.333665,4.26774,4.848815,4.010115,3.966405,4.43557,5.17005,7.863513333333334,2.00254,2.2215433333333334,3.4552666666666667,0.8737266666666667,0.7582650000000001,3.833235,2.270615,5.4865,2.8887933333333335,3.1073733333333333,1.8337299999999999,1.4969125,4.024945,4.26997,4.165855,1.5058766666666665,1.2493100000000001,2.6102133333333333,2.0211633333333334,2.5891733333333335,1.09535,1.09535,2.7339366666666667,4.21951,2.721,3.439125,3.16599,1.92072,20.18609153030303,3.547275,5.588480000000001,3.79112,3.69888,3.646265,3.91803,5.52355,6.1540075000000005,1.1953683333333334,1.1953683333333334,1.1953683333333334,2.658796666666667,1.7307857142857144,3.6751666666666662,4.46094,4.164905,3.37588,4.54529,4.42739,0.8892588888888889,2.4017866666666667,2.87012,6.001997,3.3878269999999997,4.086442,4.602715,2.2315375,1.9466,2.254356666666667,0.5174325,0.83485,1.80118,1.95133,2.73849,13.031775,2.53293,5.3897,0.7432357142857143,10.226035,5.6483,3.65711,4.35411,2.813775,5.92435,2.813775,2.7959060000000004,3.45126,3.748595,3.86533,3.87679,4.555845,3.538745,5.8289,6.986096,1.81958,2.8404160000000003,2.517605,27.952090846203347,1.6062239999999999,6.2473,4.44664,3.925955,4.28424,4.57101,2.698775,2.692385,2.208615,6.12795,6.8105,4.96977,4.58067,4.999725,2.2558875,1.799375,4.383925,0.6983746153846154,0.6983746153846154,0.6983746153846154,0.6983746153846154,4.195525,3.1774,0.97228,1.77039,1.2378333333333333,4.95462,2.48426,2.463045,7.421991666666667,3.4116,0.17412862068965518,21.169479,4.593473333333334,1.802654,1.3540953571428571,2.28532,2.02738,2.657025,4.505735,3.18264,4.099055,4.109335,2.418276666666667,7.16434,2.640515,1.96742,4.53249,6.13125,8.444146666666667,4.59464,0.296890243902439,3.452245,4.26677,3.292476666666667,2.0717775,2.986606666666667,1.5866233333333335,1.5866233333333335,3.974425,5.7915425,12.244269166666667,9.0713,0.6889777777777778,2.75542,3.666265,3.15214,4.909105,5.00995,2.12002,2.12002,3.77453,4.430675,3.1286533333333337,3.942755,5.1064,5.8292,5.66713,2.03036,4.57587,4.212155,2.612075,2.89746,3.13711,4.9625,4.19164,5.19885,4.700585,4.4523,3.98834,4.31333,4.384735,5.61975,2.9300266666666666,3.2509433333333333,1.096768,4.555285,4.8551,4.07047,1.887886,2.2803566666666666,2.663256666666667,3.063553333333333,2.25595,4.556039999999999,1.9364166666666665,2.75575,3.743,2.9572000000000003,2.4583133333333334,2.7364800000000002,3.913766666666667,3.2533166666666666,3.458833333333333,4.387873333333333,2.07069,2.843163333333333,2.3923900000000002,5.84835,3.098176666666667,41.59636283333334,2.2967294545454546,2.2967294545454546,2.46646,2.8159266666666665,2.1542600000000003,1.7338133333333332,3.04844,1.7188800000000002,0.7102715384615385,4.53816,7.4706075,4.19164,4.175935,5.6594,2.05605,4.50999,1.7276219999999998,5.60825,5.1372,5.90865,4.314075,1.70651,4.34428,5.1772,4.81714,5.321,5.52115,4.418765,3.28197,2.6044033333333334,2.235705,1.849705,4.61157,1.9558200000000001,3.73557,3.73557,2.22323,1.55037,2.12916,2.415716666666667,3.0968933333333335,4.76916,2.7818633333333334,1.14517,1.14517,2.3232933333333334,2.2171166666666666,2.7340066666666663,2.6388266666666667,2.37558,2.4829733333333333,2.2417233333333333,2.25876475,3.040911892857143,1.6406858928571428,0.7821471428571429,59.9783915922619,2.280948,2.6362133333333335,2.1059039999999998,0.8642519999999999,3.335872,1.569594,1.569594,2.2504033333333333,3.0827833333333334,0.85853875,2.2280433333333334,5.33313,3.8975333333333335,2.3073466666666667,2.8430666666666666,2.29588,2.5970393333333335,0.290620625,3.013866666666667,0.713326,2.45964,1.2355,1.2355,2.4401766666666664,2.6145199999999997,2.5794366666666666,1.8659446666666668,3.3238800000000004,1.8659446666666668,2.111763333333333,2.4995533333333335,2.766106666666667,1.2160959999999998,1.2160959999999998,3.0178166666666666,1.39294,2.8642833333333333,2.136693333333333,4.917095,4.008895,13.808970833333333,7.1459325,3.391135,2.412295,4.300355,4.954065,5.3227,2.9583825,4.68384,3.48929,2.3488599999999997,4.215235,3.32717,2.7275066666666667,4.655405,2.168953333333333,1.08801,4.0504675,2.9267,4.63931,0.8216228571428571,2.658345,3.529255,4.17049,4.36454,6.6108,2.47772,1.94612,3.784705,4.91513,2.3188175,2.52001,1.97997,2.094662,0.8753719999999999,5.54555,4.76838,3.683255,3.649595,3.289593333333333,4.54932,5.59055,3.3371666666666666,1.65862,0.5481266666666667,14.278180166666667,0.4791854545454546,0.4791854545454546,0.4791854545454546,3.189906666666667,3.9736333333333334,0.4791854545454546,8.56285,4.44695,0.709649,0.709649,3.265476666666667,3.161585,2.860495,4.327115,4.759405,4.287053,1.9326699999999999,4.725323333333334,3.86473,3.556421726190476,4.50178,2.9917205,2.4113225,2.324,2.7764,1.6186975,3.48529,3.2625566666666668,2.606675,2.4889925,2.077445,1.8615166666666667,1.58259,2.5824,1.1215777777777778,2.499535,0.6368900000000001,5.3105,1.6500275,0.7880733333333333,2.39228,7.905953333333334,2.56393,2.026402,3.172285,7.38957,2.520845,5.05805,3.40288,5.83716,4.11961,4.37351,4.075595,5.16085,2.9951833333333333,4.326278333333333,1.2282428571428572,4.340265,2.378296666666667,2.5552433333333333,2.600675,2.344575,2.121,1.3070375,5.37135,0.9462818181818182,4.921365,5.6137,5.0682,6.0548,3.9619,2.64269,2.03682,2.9270899999999997,3.293253333333333,2.53266,3.649366666666667,2.78075,4.306105,1.7869140000000001,41.91573861111111,4.94024,2.4072566666666666,3.3074666666666666,2.8293700000000004,1.6527933333333333,5.890236666666667,4.69224,2.7608466666666662,3.436166666666667,2.1976400000000003,1.5951775,5.6619,0.8143214285714285,4.944822857142857,1.3283914285714287,3.7769,3.579166666666667,3.0844566666666666,1.434025,5.355006666666666,1.9430340000000001,1.9430340000000001,2.680196666666667,2.9930458333333334,3.5739666666666667,3.7692666666666668,1.3678833333333333,3.16651,2.89317,6.566309,3.4869333333333334,3.798495,1.234845,1.3837633333333335,3.075416666666667,0.89918,5.391656666666666,3.4606666666666666,3.0027666666666666,3.7791,3.0394466666666666,2.7443833333333334,3.0357066666666666,1.6751699999999998,2.38863,2.7437799999999997,3.779733333333333,2.68863,3.727233333333333,3.0379466666666666,0.5722333333333334,9.518675961538461,2.7583066666666665,5.3912,5.0051,2.739656666666667,3.1178899999999996,1.333225,1.9586633333333332,2.17008,1.333225,4.012525,0.480139375,0.480139375,1.15858,1.15858,0.732165,0.732165,2.359375,2.744535,2.424935,1.703175,1.740025,3.95463,2.91301,5.00035,4.789495,2.17468,4.15151,2.347375,5.154202307692308,1.50542,1.50542,2.15365,1.8783239999999999,3.9164691666666664,2.0276875,4.232875,1.4884633333333335,2.3160125,0.5879615384615385,1.2299385714285713,2.2213075,2.2480425,2.2734275,1.4151025,4.76028,4.613105,3.072433333333333,2.9857566666666666,1.47929,0.7603891666666667,2.346506666666667,3.774715,2.1725766666666666,4.852645,5.68305,5.26155,3.946715,6.399357500000001,1.7090833333333333,6.038805,1.796455,4.763265,4.76898,5.536955,3.294843333333333,2.30314,1.7132025,2.0749,2.0749,2.48314,2.48314,4.601215,5.5282,0.8859680000000001,4.346985,3.639295,3.41673,3.177773333333333,1.36739,2.8531866666666663,4.181555,4.25696,2.03742,6.48315,6.04035,1.95186,1.28055,3.97136,4.133343333333333,3.91799,3.526705,4.32158,0.6910364285714286,3.122476666666667,2.7323533333333336,2.7040633333333335,2.9487233333333336,2.325153333333333,3.3798,1.5055142857142858,1.5055142857142858,1.5055142857142858,3.29144,3.371966666666667,3.1456233333333334,3.560163666666667,2.50415,1.253372857142857,3.2690433333333337,3.29011,1.4420714285714287,3.1711500000000004,2.7600766666666665,1.281912857142857,3.0182800000000003,2.9936333333333334,3.20448,2.8263933333333333,3.028826666666667,2.088725,3.563633333333333,5.5613,4.573415,0.9752620000000001,1.5050240000000001,0.669611,3.6846666666666668,9.249665,3.0409633333333335,3.188335,2.6413766666666665,4.25254,1.87382,7.85846,6.824906666666667,2.73758,2.7650062857142856,4.04558,5.00125,1.534782,1.4098039999999998,1.312366,1.90751,12.125816666666667,2.73228,2.902886666666667,3.2411070000000004,3.805075,2.184973333333333,1.2348125,5.38165,1.0217033333333332,3.197906538461538,3.752435,3.36796,3.3392,3.298885,5.54205,1.1350166666666668,2.22111,2.2501326666666666,2.2501326666666666,3.78503,5.67325,7.2845450000000005,4.06011,3.342875,4.930975,1.7797875,2.2081783333333336,4.655105,4.892405,3.848525,1.5312599999999998,2.9688499999999998,3.40355,4.074805,2.559175,4.227075,3.83759,3.591145,3.94442,5.0383,4.71301,5.44435,3.1178666666666666,2.3520533333333336,4.42608,2.95848,3.700755,2.484395,2.514515,2.588765,5.1244,2.490475,3.1911894318181817,1.5932625,2.813515,3.51529,1.9863025,2.0176925,0.7959900000000001,0.7959900000000001,1.7182775,4.870278787878788,3.763245,2.9742466666666663,4.110945,3.434171666666667,2.544644857142857,1.0975175,2.69236,1.66532,4.291805,3.99104,0.8559816666666666,1.81106,3.75792,2.9161975,1.5793225,1.6155333333333333,4.888094285714286,1.219025,2.912905,3.16333,2.73643,2.560125,2.803406,1.966245,0.9755575,2.85499,2.86267,3.393095,1.4173233333333333,1.58381,1.80241,4.79571,2.037755,4.783385,5.022,4.33578,6.2785,5.9595,4.119775,6.048959999999999,4.312845238095238,0.7596272727272727,2.516625,5.09405,4.780485,0.42349136363636364,0.9205819999999999,2.793805,4.72799,4.640975,5.1701,3.4737432142857143,2.789745,4.90209,1.813834,2.3006625,4.601685,4.1525975,3.33807,3.1548,4.772105,5.1165,2.88028,5.50239,1.01802,3.486255,2.610335,4.65543,4.359215,4.41784,2.1224,2.584425,2.68276,2.035083333333333,5.04965,3.68633,1.5459142857142858,3.03076,4.318665,1.742362,5.992825,1.913766,2.58805,13.823930201754386,3.1860466666666665,1.44404,1.5793549999999998,2.0978666666666665,5.611378333333333,1.6532240000000002,4.4581436666666665,0.6912492307692308,3.523066666666667,3.997925,7.41885,2.4187499999999997,2.9723900000000003,2.9723900000000003,5.20055,4.509465,3.8846,3.250325,4.965865,5.1233,2.414385,3.4669666666666665,5.17975,1.2110716666666665,2.6564200000000002,5.02175,3.83183,4.270665,2.41526,3.149285,4.304705,6.70534,6.3825400000000005,0.781068,3.807475,3.201085,3.4881333333333333,4.23859,4.19544,3.94156,1.678626,4.62872,2.45141,2.72777,4.115485,4.397,4.66987,0.9545117857142857,2.4941299999999997,7.524497666666667,1.5369866666666667,2.094258051948052,2.2416275,3.76246,3.56903,3.291495,0.7004254545454546,2.4612975,1.67228,2.2121575,4.595565,5.788699333333334,3.052396,9.396085,2.6764666666666668,2.8110666666666666,1.13609,4.82091,5.2126,2.23822,5.897661666666667,3.869975,3.036775,5.28615,4.57201,4.944505,2.086905,1.669045,1.669045,2.66564,3.30578,4.824250833333334,1.4938775,5.699715,1.3623133333333335,3.83814,1.5524483333333334,9.091434333333334,5.13495,2.793515,5.03935,4.30118,3.88068,1.1030316666666666,2.28632,3.761066666666667,3.105143333333333,3.4713,3.8015666666666665,3.59302,2.72904,3.096675,3.18198,1.508995,2.4655033333333334,1.8997866666666667,2.8430033333333333,1.8624233333333333,5.5802700000000005,3.4997333333333334,1.7488000000000001,3.2087066666666666,3.246555,4.42344,6.1858,6.26475,2.968115,3.515755,4.268585,3.126615,2.65411,1.1369366666666667,0.94467,6.678515,3.783975,5.0828,5.8937,6.3732,2.86427,3.4232666666666667,6.23325,2.396925,0.5063827777777778,5.8123,3.421035,3.848435,3.5551999999999997,1.5296,5.61865,1.1307180000000001,4.724895,0.8973775,1.5743933333333333,2.8784799999999997,2.430473333333333,2.4390645714285717,3.69586,5.5778,5.3834225,5.3834225,4.432825,4.432825,4.71945,3.0309866666666667,4.497595,1.2464625,5.9027,4.180315,3.8516333333333335,4.58465,3.672805,4.185255,1.8711775,4.30116,3.383096,3.36407,4.170405,2.56062,4.543905,5.25305,3.545295,3.333265,5.65695,3.7783,4.78615,2.88348,3.2402166666666665,6.2126,4.255185,2.8778166666666665,6.470281666666667,1.55934,2.1719275,4.8415,4.39312,5.55875,3.93224,2.024221,2.024221,14.451511880952381,7.04887,5.15555,4.08422,2.9974115384615385,4.93681,4.72432,2.5538133333333333,3.4020333333333332,3.42073,4.017233333333333,3.6995,4.885325,2.05489,8.33043,2.31666,2.457015,5.24,2.31664,4.790475,4.23815,4.55828,0.8563744444444444,3.238695,3.86034,0.8796060000000001,2.93603,3.7498075,1.4430960000000002,1.9217366666666666,3.03687,2.8331133333333334,2.37465,3.5690000000000004,2.06243,0.5796157142857143,3.0360833333333335,3.0199700000000003,2.960706666666667,3.2361966666666664,1.7966799999999998,3.181126666666667,7.493539999999999,4.955055,2.3567633333333333,2.0803066666666665,2.5600333333333336,3.69294,2.798605,3.880714,19.16611,5.48625,3.415899,5.6368,3.739405,5.2410033333333335,1.6094733333333335,5.7434,1.4227833333333333,3.652585,3.581235,5.61375,5.41595,0.9606007368421052,4.648405,2.70079,4.98602,2.69132,4.46585,4.68105,2.802935,2.147953333333333,1.388074,2.079095,4.445195,4.8641,1.974265,1.76506,3.0241900000000004,4.227738333333333,3.2118633333333335,6.23745,2.876525,4.52673,4.328715,3.696935,4.25942,3.45477,4.580395,4.66945,4.240495,2.817406666666667,2.817406666666667,5.735577777777777,1.99547,3.0490100000000004,4.12751,1.7198499999999999,7.64903,3.574385,4.624713333333334,4.296566666666666,4.75158,2.13072,4.642355,5.13095,3.953255,2.1717675,3.75674,3.27421,1.0965225,1.5900475,1.1660666666666668,0.8331866666666666,1.57071,1.1192266666666668,4.438825,1.1766222222222222,2.7582166666666663,1.5981066666666666,2.055325,1.008525,1.935855,2.51545,1.6190375,3.4883333333333333,2.5238466666666666,4.610381666666666,1.5857916666666665,2.6483,3.505266666666667,3.4089666666666667,2.4018433333333333,4.2824925,4.47827,5.29592,20.50813075,2.5931633333333335,2.21141,0.6138107692307693,0.62937,4.691791666666667,1.917708,4.109545,5.30895,7.5060845,4.188075,3.55921,3.931255,3.4463000000000004,3.3004466666666663,3.3969,3.1724933333333336,3.3163933333333335,5.7864,4.18077,0.9634280000000001,1.13227125,5.44875,3.3609666666666667,2.6709866666666664,2.0693066666666664,2.5226933333333332,5.68535,5.20255,2.29584,1.4873066666666668,3.858795,5.09645,9.544266666666665,5.7148908333333335,4.70037,4.360705,5.4614,4.925105,4.627975,4.75888,4.2432,5.68085,1.878265,5.5873,1.6264,5.6037,0.7764399999999999,5.3434,5.44445,6.303,6.41275,4.84042,5.7406,5.75575,6.5099325,1.9090333333333334,1.6082714285714286,5.8661,3.468255,6.599295,5.11445,5.0887625,4.907435,6.14225,1.2982200000000002,4.497615,5.5754,4.150333333333333,4.987505,6.4561,2.67135,3.7825,4.487515,4.983465,0.994475,1.7451833333333333,1.384338,5.0664,4.06616,3.74429,3.4351000000000003,3.03267,1.5483166666666666,2.1145366666666665,0.37434833333333334,3.6257333333333333,1.635306,2.2640933333333333,3.332473333333333,2.20745,3.2150833333333337,2.611275,2.6266,10.657496666666667,3.6697333333333333,1.7681728205128204,3.956295,0.8339163636363637,4.9115275,1.1787925,1.9261575,2.050165,1.0205375,5.800037333333334,1.183583611111111,1.183583611111111,1.183583611111111,3.1620500000000002,1.7992180000000002,5.5303,3.056625,1.3980125,1.77628,2.0555975,1.5193375,1.8704139999999998,5.795810833333333,0.9302177777777777,4.20626,4.42517,3.1234466666666667,0.9972971428571429,2.232218,2.038305,2.038305,1.6972833333333333,3.6553216666666666,4.940075,5.0688,5.7012,4.45633,5.60095,3.400533333333333,2.0861325,3.3174,5.1108,3.85996,4.41419,1.05350875,3.868646875,5.30415,1.933785,3.976525,2.9017700000000004,4.67667,5.33945,2.79604,5.89125,6.4837,5.09635,4.674275,4.13523,3.21837,8.09425,4.062705,6.684525,3.32038,2.65185,5.2392,2.68271,4.146655,5.01275,2.7582400000000002,3.077885,3.98943,1.9802466666666667,11.035655,4.362055,3.104665,16.237509087301586,4.29401,1.7408233333333334,2.9182799999999998,2.177115,2.68856,4.146445,2.6248418750000004,2.896125,2.412775,2.803215,4.062765,5.572985,1.22559,2.2794425,4.09638,4.754735,4.72658,2.212315,0.615622,5.19515,4.19818,2.312535,1.1282683333333334,4.77031,5.1007,0.9172611111111111,3.762495,13.165653333333333,1.286934,0.37767999999999996,3.9026,4.32014,1.1255111111111111,4.511115,3.801395,5.330258333333333,1.3030333333333333,3.764805,3.94477,3.260175,4.141535,4.822515,5.5544,8.01755,3.082055,4.07057,4.384755,15.861083749999999,3.3993125,2.6952,1.2329375,2.2345475,1.210895,1.907905,1.2193575,1.9589775,1.7404775,2.2246375,2.533675,2.614875,1.95013,5.8059,3.63933,5.9666,3.19393,5.738318333333333,2.816933333333333,5.1475,3.4089666666666667,1.2013375,3.53957,2.03885,2.700223333333333,5.29205,4.85252,4.731975,4.68078,2.7803166666666663,3.11305,2.3624433333333332,3.76363,3.656525,2.346625,1.902725,3.636366666666667,4.67034,3.238975,2.35757,12.2034,0.6345813333333333,2.5036,4.960305,2.4598459999999998,1.102848,2.57718,7.340158333333333,7.170633333333333,4.881985,4.68586,4.43995,2.2052875,2.815065,2.919874666666667,2.0175566666666667,4.22603,4.834455,4.68984,0.500684,6.1339,3.3481666666666663,3.5212333333333334,3.6322666666666668,6.5223,9.13070725,4.390611,1.11721125,2.139625,2.208005,3.765685,2.59611,3.90233,4.838355,3.5891,2.7205266666666668,4.13501,4.21666,3.788085,3.977233333333333,2.00751,4.305535,5.07575,5.73815,3.541533333333333,1.590945,2.1815166666666665,28.895862525641025,1.426835,1.426835,2.2960133333333332,4.149024666666667,4.054475,4.81756,3.763485,3.082615,4.145145,2.93852,4.01643,2.93852,3.424415,1.9122266666666665,1.5665133333333332,5.625,2.418875,4.73488,3.14906,2.624095,7.022088333333333,2.09461,5.05205,5.20265,3.62044,3.76575,4.79122,2.00056,5.09805,3.5107675,6.5518,5.263558333333333,2.594625,4.098015,5.0387,2.095555,3.10473,3.615133333333333,0.48662,3.350433333333333,9.990703333333332,4.84971,4.3874,5.1262,3.478905,3.1844,1.3407314285714287,4.12986,5.3311,3.229525,2.755925,5.00385,3.90852,4.190945,4.38796,2.34364,2.34364,3.987635,2.928155,2.831626590909091,1.888765,4.55175,3.92786,1.375667142857143,3.7134,5.05565,2.8248433333333334,7.6699,8.21651,1.47981,4.29677,4.68406,7.196225999999999,0.835915,7.214406666666667,3.8564258333333337,0.63366,5.41705,5.49855,5.4617,4.584365,4.896535,4.45072,5.0376,4.311465,4.433785,5.08435,4.22894,5.5417,4.79144,3.749255,3.809485,4.19623,2.898635,0.791124,4.438705,2.85781,1.76853,4.0681,4.82959,5.62745,0.9975885714285715,5.0541366666666665,3.07975,2.588976666666667,1.83357,1.2525833333333334,11.856370833333333,3.1799633333333333,3.21468,2.8365899999999997,3.6842185714285716,6.026966666666667,6.296626666666667,2.6273966666666664,1.9039533333333332,2.1694,2.1694,2.1694,1.41216,3.778835,3.889645,3.046835,4.517455,8.02615,4.475695,1.055978,2.261405,3.475155,3.32332,1.801426,4.10664,2.73577,1.31643,3.6838333333333337,7.467621428571428,7.913705,4.657205,4.0278,3.2669099999999998,5.43835,5.03875,5.60369,1.91767,1.91767,3.97234,3.70015,2.6355530000000003,2.6355530000000003,3.655405,0.9985357142857143,4.842005,3.380385,4.046995,4.689375,5.0292,3.2157366666666665,1.0092328571428573,4.189875,4.893575,4.68009,4.9203,5.2055,5.08275,4.499055,1.80341,1.45734,3.144325,3.83485,3.24011,4.13205,2.16409,3.9597524999999996,4.922435,2.6278,4.94022,7.57272,2.2983229166666668,2.85629,4.1326776190476195,4.835303333333333,1.6763925,1.9897969047619046,0.8834783333333333,1.9897969047619046,1.68414,1.68414,1.4619579999999999,4.657315,3.00722,3.664545,2.284015,3.77912,1.4715766666666665,5.6763,3.075155,1.6642325,2.616546666666667,4.111305,3.79678,5.994308999999999,4.654015,1.3128600000000001,0.8687299999999999,3.52516,6.13567,2.3294799999999998,3.560925,3.82296,3.82296,2.30247,3.29702,2.99869,1.4924416883116884,3.2178299999999997,4.140565,3.57968,4.44639,4.0175775,1.5931525,3.4849,4.971175,4.8021,4.985355,4.24226,1.90149,2.233985,1.3002666666666667,2.566175,3.302195,2.1691375,3.942495,3.4663,2.932975,4.047825,4.893455,1.388375,0.9450879999999999,1.79143,1.4945425,1.205411111111111,4.8589,3.987625,1.096768,0.23889652173913045,0.23889652173913045,0.23889652173913045,3.65942,5.868340000000001,5.06535,5.22955,3.073185,3.93849,4.9583,4.245905,2.67864,3.40353,1.79405,4.99113,4.19274,3.83876,4.736315,4.33343,0.896699090909091,0.896699090909091,0.896699090909091,0.896699090909091,0.9664619999999999,0.9664619999999999,4.445715,4.487265,3.615505,2.72801,2.4467,6.12325,4.753725,4.98218,4.29145,2.9545166666666667,2.4928466666666664,10.02,2.0149999999999997,2.0149999999999997,5.08095,5.47335,3.1331233333333333,0.480139375,0.480139375,0.480139375,0.480139375,0.480139375,0.480139375,5.237083333333333,5.17135,3.867945,4.41416,2.9488333333333334,2.9488333333333334,2.556035,3.092602,3.0273566666666665,3.52091,2.864455,7.402792,1.37354,5.28945,3.717845,4.78436,10.757843333333334,2.812856666666667,3.297635,1.0303799999999999,2.84828,4.679555,3.34605,1.290875,2.8735,4.4995,5.7379,2.702575,4.985905138888889,1.0208822222222222,2.0858433333333335,4.7758,4.67471,3.3661145,2.731863333333333,2.5448366666666664,1.4180716666666668,7.937138333333333,3.3147599999999997,2.1359166666666667,3.00669,2.9522933333333334,4.320785,3.76381,2.7101333333333333,3.194293333333333,5.91905,1.531455,4.79761,5.04215,3.86719,3.887545,2.424463333333333,4.110775,3.71561,3.8217,2.72749,4.817855,4.72871,2.99119,1.9144125,2.7486633333333335,2.7538066666666663,2.75277,0.8212245454545454,2.253325,8.400125,0.477996875,3.4929333333333332,1.5281099999999999,2.4726266666666668,3.6209666666666664,2.8752099999999996,1.2766666666666666,1.8218260000000002,2.6676933333333337,2.2182225,3.67237,2.1750800000000003,3.0233399999999997,1.4564133333333331,2.919988,2.04814,1.1672071428571429,2.9890000000000003,2.1419425,2.3105466666666667,2.4734966666666667,3.27506,3.3091066666666666,3.3771,3.4811666666666667,3.049386666666667,2.845603333333333,2.8027800000000003,2.4473075,1.7691966666666668,2.4126733333333332,2.9107366666666667,1.56742,3.10964,3.864047142857143,2.8922266666666663,2.94617,2.9915033333333336,3.8376,4.445215833333333,3.07417,1.8157557142857141,1.8157557142857141,2.2683175,1.12795,2.63135,3.3267300000000004,4.5826675,2.726575,1.958615,2.0826425,2.121005,3.59917,3.32336,3.9616,5.04045,1.7334,2.7941233333333333,3.76504,1.49021,1.49021,2.899725,0.6504015384615385,3.2249257692307696,2.28893,2.28893,2.8343900000000004,2.48708,2.59068,2.66509,2.24043,6.307865,3.8871875,3.8871875,3.85405,3.08179,2.23592,2.996205,2.431165,2.84229,4.9594825,0.47180833333333333,0.649267,4.12629,2.394985,2.7667,6.883946666666667,3.548725,1.613528,4.419406666666666,4.623355,4.650785,4.357285,5.445,4.820615,14.0058715,3.518595,1.6130833333333332,2.76968,3.78129,5.91315,4.19003,4.231245,4.398245,3.68288,3.898095,2.7188833333333338,4.28657,3.1142066666666666,2.31119,2.31119,4.13035,3.71384,3.250345,3.248245,2.368645,2.523365,2.054975,1.80619,2.004735,1.8077425,1.73642,3.9921415,3.401665,2.7114,6.1121925,3.37723,2.3051833333333334,1.8196766666666668,3.4176,3.757655,3.94803,3.2647618749999996,3.30231,3.179905,4.263395,3.61858,3.720645,3.956565,3.3800350000000003,3.48864,0.6651716666666666,0.6651716666666666,0.6651716666666666,3.382275,2.446105,5.568,2.906295,3.61394,7.788689259259259,2.9585000000000004,0.39291923076923074,5.80475,0.7492289999999999,4.321052857142857,1.88705,3.863695,1.89165,4.484305,5.656166666666667,4.70666,4.21569,2.809253333333333,2.9178366666666666,1.404435,2.059013333333333,0.5064436842105263,0.6456352941176471,2.9101533333333336,1.4112099999999999,2.2261825,3.81937,2.89776,5.19715,2.74919,2.946083333333333,3.30134,5.1648,2.2699875,0.9415899999999999,2.48169,3.300706,1.3807522727272727,4.98577,3.73776,3.5864,2.7295266666666667,4.60769,2.9685133333333336,2.672663333333333,3.3656,2.28149,2.7282233333333337,2.4278275,3.472633333333333,2.4100533333333334,5.327908666666667,2.4011275,1.8140666666666665,2.8061900000000004,4.872802,3.267818,3.267818,2.3948766666666668,3.9661,2.3520425,3.91692,2.887185,0.5942886666666667,4.72346,2.0174875,11.758741111111112,7.08148,2.865735,3.13477,3.217345,5.28859,2.87794,3.506265,0.2683726666666667,2.0495125,3.9057333333333335,0.9085833333333334,4.022635,1.37124,4.9145,3.212335,4.86851,4.341535,3.879535,2.1476,4.45242,3.71621,4.668195,7.71825,4.3885,3.2515033333333334,2.9745966666666668,1.5799720000000002,1.89041,4.38626,5.01065,4.0544150000000005,2.37016,3.59493,1.66311,2.767345,2.2712,4.17307,10.401473333333334,3.61922,7.143646666666667,3.737105,4.37186,0.9989133333333334,4.711736,4.960505,2.548433333333333,2.91621,3.4279666666666664,2.9877366666666667,2.33017,1.7329800000000002,1.9006533333333333,3.69139,1.707684,3.0486566666666666,5.177566666666666,2.7685333333333335,1.1136732142857144,1.1136732142857144,3.538155,3.179651,3.179651,3.8046666666666664,2.9635266666666666,3.5092564102564108,3.717333333333333,3.157913333333333,2.660416666666667,2.3385433333333334,2.3652433333333334,3.1445333333333334,2.241165,2.53821,1.602956,5.725176,10.060886166666666,0.5463953846153846,0.5463953846153846,0.5463953846153846,0.6467792482517483,0.6467792482517483,0.5463953846153846,3.4866333333333333,2.8678866666666667,4.242505,1.4621516666666665,1.703455,3.273838,2.285433333333333,2.9553966666666667,2.2887066666666667,2.9458300000000004,3.586133333333333,6.997958333333333,3.069926666666667,2.40699,3.3371999999999997,4.18573,3.0582999999999996,3.4136333333333333,5.81847,2.3569233333333335,3.3982666666666668,1.3732616666666668,1.3732616666666668,2.459096666666667,0.45878,2.5712766666666664,2.7039066666666667,2.787463333333333,3.3793333333333333,2.27095,1.5529533333333332,2.9679599999999997,3.3250433333333334,2.2975833333333333,4.92188,2.584163333333333,4.025645,3.180315,4.52254,0.543746,8.15855,2.959542,2.959542,7.604830555555555,1.8559299999999999,2.7941599999999998,3.06361,4.5228,2.32216,1.9362599999999999,2.4960666666666667,1.3379925,3.4366333333333334,1.7494566666666669,2.9602545,1.3538975,0.2681331818181818,0.2681331818181818,4.98529,3.851515,3.554395,3.2015366666666663,2.70169,3.96637,1.3714866666666667,6.76375,3.773035,3.019995,1.7899425,1.2200083333333334,2.314425,3.06361,2.557665,2.099695,6.0217,5.07275,5.07325,4.318395,2.21313,0.6743708333333333,7.611315,2.06662,1.4166,3.473875,5.13545,2.34786,1.8573333333333333,4.846575,4.5974,3.681366666666667,3.3216699999999997,4.075645,4.696635,3.7076333333333333,2.458792,2.458792,4.16738,5.14035,6.274,7.003036666666667,2.83102,3.73047,1.3681514285714285,2.33286,4.504862,3.805075,1.7508120000000003,3.883935,3.4161525,4.365835,1.89441,4.19281,4.85709,5.19715,4.607255,2.385336666666667,2.5923766666666666,3.9151666666666665,2.0533466666666667,2.6943,2.71716,2.4656733333333336,0.8446830000000001,1.889945,2.6964333333333332,2.3144546666666668,4.796225,5.1506,4.88464,4.00451,3.32432,5.5514025,12.127324999999999,5.8325,4.62387,4.31833,3.91972,4.719145,3.14664,3.0243763333333336,3.7699,1.3680125,2.83168,2.7884,5.2752,6.0715,4.887205,3.2777999999999996,2.5491266666666665,2.3344766666666668,4.1468,4.175725,3.7373,4.175725,2.31466225,2.243866666666667,2.3581233333333333,2.5049,3.0662299999999996,1.67838,1.0039233333333333,1.3921066666666666,1.6498466666666667,2.0455533333333333,1.5228566666666667,1.2924966666666666,1.5820100000000001,2.635143333333333,1.521374,3.2229433333333333,1.3452333333333335,2.6485166666666666,2.59603,2.4088966666666667,3.0564199999999997,2.305616666666667,2.340126666666667,3.162435,2.18418,3.04161,2.9850666666666665,2.5089966666666665,3.07723,3.0295575,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,5.1322,3.240265,1.0013642857142857,3.11169,2.6326300000000002,3.1344266666666667,4.075645,3.1903066666666664,4.503405,3.617011333333333,1.5984180000000001,3.4777666666666662,1.7570499999999998,1.086355,0.9352320000000001,1.4677783333333334,0.9434866666666667,0.7366425,1.281218,3.15359,1.8692920000000002,1.8135166666666667,2.0651022222222224,2.46927,1.060265,1.4995533333333333,1.4350416666666668,0.9305083333333334,1.2337883333333333,0.7096133333333333,0.927274,3.251555,3.483185,4.96056,4.44745,4.17361,3.011746666666667,5.00585,3.8541333333333334,1.8940025,3.424655,2.0343875,3.5159,2.1562966666666665,0.8273518181818182,4.43837,4.94544,2.04317,1.27097,2.779685,3.202315,3.6553216666666666,2.90113,2.530985,0.92474125,2.1102325,5.45365,3.834205,2.386955,1.5873333333333333,3.69906,2.0392925,0.7465600000000001,4.75884,3.682305,4.66224,2.49487,1.351526,4.3899,4.45503,2.5856266666666667,2.5729366666666666,2.4557733333333336,2.57747,2.6454233333333335,2.902416666666667,3.4053,1.284675,2.72965,2.6371100000000003,5.2708,4.20846,3.635815,4.46922,16.365402561868688,4.5076775,4.572996,2.5816,4.26797,5.2126,1.531746,2.7726,2.6994399999999996,7.1209299999999995,3.967765,4.615775,5.36675,2.6994399999999996,3.797815,2.14209,2.7356466666666663,2.9126133333333333,2.7592233333333334,1.37721,4.567335,4.235085,2.46736,4.120315,2.787663333333333,2.68942,3.611345,3.12108,5.69295,5.4616,2.718865,3.417735,2.739465,2.46702,1.286008,1.286008,2.7190999999999996,2.5259933333333335,0.2377614285714286,5.342333,1.124992,3.50936,3.672125,0.5667058333333334,4.636885,8.436523333333334,1.7977275,3.74138,3.85805,2.7182633333333333,3.156955,2.39575,2.88877,3.494575,4.053875,3.057675,3.9583333333333335,0.9875916666666668,11.404519666666667,2.58052,3.023495,4.86464,2.62194,3.95895,7.76776,4.47645,4.309475,4.235665,4.49942,5.6307325,1.7194725,3.3917,4.37341,4.0251,1.939466,3.76641,3.96868,3.523185,3.92363,4.613735,4.043275,2.4153366666666667,3.78323,3.522825,5.5221,4.19452,2.1967033333333332,2.284143333333333,2.1209866666666666,2.9517733333333336,1.23208,3.6995,0.8344318181818182,3.4497999999999998,3.0774266666666663,2.4916066666666667,1.7269500000000002,4.86446,4.96682,4.09786,1.7788325,4.50211,4.33141,0.7096513333333334,0.32408000000000003,4.516275,4.268785,0.98137125,0.32408000000000003,3.15582,0.7096513333333334,0.7096513333333334,0.32408000000000003,5.692155,2.4906099999999998,2.497456666666667,5.6686,3.93535,3.165285,0.7832444444444444,2.991935,3.780545,4.49112,5.6902,2.2325375,0.7161346153846153,4.422063333333334,2.2443,1.5604900000000002,2.08182,1.0630957142857143,2.54745,2.272273333333333,3.87069,5.28685,3.256016666666667,3.812333333333333,3.1907433333333333,2.30333,2.90113,4.417355,1.4631075,1.9434525,4.020005,5.4026,2.1671040277777776,5.8034,2.656195,4.2445,4.097975,3.2353,1.2742325,3.20215,6.70575,4.075515,4.27197,5.1713,6.41095,2.854525,3.43775,4.45552,3.25905,3.238815,8.07264,3.69977,4.600607500000001,2.375875,1.0931075,2.52549,1.93402,2.03622,1.830725,4.942225,0.7097335714285714,3.759475,3.916255,1.8517533333333331,3.16496,5.0127,4.380315,3.075555,4.71281,5.72795,10.425281333333333,2.9110600000000004,3.17836,1.641516,1.8316833333333333,1.1737666666666666,1.42885,3.3396000000000003,2.4850166666666667,3.174533333333333,4.4931625641025645,1.51301,2.6964400000000004,5.0953,5.30815,3.983825,3.268255,2.97756,2.39801,2.140135,2.033335,1.69771,1.976165,3.87412,3.93077,5.37175,5.3083,4.34891,5.765541666666667,3.38173,2.494395,6.6695899999999995,4.16029,7.929115,4.73043,4.73043,5.34604,1.6795833333333334,1.3417725,1.3736733333333333,0.707238,4.943825,4.023666666666666,3.3989800000000003,3.3989800000000003,1.8359660000000002,4.47684,4.50972,4.857365,4.375705,2.8745266666666667,2.57287,4.2966,3.2183266666666666,5.085295833333333,3.68656,0.8227709090909091,5.65435,5.02985,5.5338,5.31745,2.989415,5.8872,4.93035,0.8601692307692308,5.27025,6.53965,3.164245,5.45375,5.7502,3.278445,2.397975,3.85204,6.31145,2.2416275,6.12975,1.805525,4.701725,2.81594,2.16956,1.01802,3.80923,5.9106,3.22286,3.83449,2.0544766666666665,5.1212,8.28111,3.40046,4.05627,2.57858,2.630765,0.8842840000000001,5.1217,1.5308866666666667,3.5520424999999998,3.5520424999999998,4.67009,2.17064,3.3112166666666667,4.2379,1.84647,3.1354133333333336,3.3165033333333334,3.5635333333333334,2.83601,3.818425,2.93065,1.8599875,3.5557666666666665,2.237715,2.9959000000000002,1.9324133333333335,2.9649133333333335,2.8107233333333332,1.4712,1.2682366666666667,0.4820966666666667,1.27407,0.4820966666666667,0.4820966666666667,1.2682366666666667,0.4820966666666667,3.25216,2.7753259999999997,2.7753259999999997,2.8691833333333334,5.24835,4.677355,4.593255,5.59965,5.1043,3.360165,4.443335,4.33258,2.3294525,2.628607333333333,2.9656866666666666,0.7886354545454545,5.73705,3.03124,3.1484,5.60075,3.7929200000000005,5.25205,3.32604,2.5216233333333333,2.953155,3.33551,2.4978433333333334,2.68812,1.9575066666666665,5.4434,0.8998477777777778,4.18214,1.1979957142857143,3.465175,3.3665000000000003,2.89105,4.22748,4.430735,4.299935,4.794365,4.09433,4.05744,4.767755,3.975775,2.49125,2.728725,3.6058,4.17893,4.42012,3.622195,2.65925,3.545395,3.2599733333333334,3.31008,3.691555,5.28845,4.069375,68.99002618406593,2.6406016666666665,4.25183,16.378874,3.96055,3.0742100000000003,2.0661533333333333,1.8469133333333334,2.5879233333333334,4.94102,3.09808,4.696656666666667,6.34185,3.21094,7.780495,5.1929,2.70207,3.518395,3.893995,3.618375,1.981542,1.2839,4.427145,3.00538,5.898511666666667,3.442615,2.3499433333333335,3.366235,3.307455,4.359915,3.12092,5.434810000000001,4.53382,4.238415,3.316395,2.3838725,3.92691,5.9864,2.585505,4.16584,4.384219166666666,1.1560333333333335,2.763955,5.27175,3.513585,3.401045,3.603915,3.10363,4.48456,3.083315,3.6617,3.3668,4.412105,3.16269,2.773045,4.34835,9.17545,3.09883,4.109745,5.89931,3.18059,2.5458,3.7868612500000003,2.0871233333333334,2.8924299999999996,3.5163140000000004,3.427795,2.926985,3.6757,3.24237,3.25929,3.920895,3.70758,4.064755,4.0803,3.826285,3.761705,2.8860116666666666,2.8860116666666666,6.7154,1.876035,3.19085,3.530835,2.579515,4.88896,4.01907,2.848485,2.78867,4.51944,6.8485724999999995,0.6923972727272727,3.584825,2.26696,2.863766666666667,2.55292,5.2363,2.7533833333333333,2.0084225,1.18794375,2.0604751515151514,3.97295,4.189265,3.98836,6.4231,5.12075,6.0186,2.36732,1.7044966666666665,4.1072,3.85099,3.01688,2.05581,1.26382,2.32252,3.4464333333333332,1.6236059999999999,2.3745833333333333,2.3507474285714283,3.663329258241758,2.736155,5.0691,3.225495,1.3957125,5.2283,3.43191,5.01705,5.1479,5.30185,4.5437,1.9288333333333334,1.43834,0.6079085714285714,1.49178,3.4669,2.4603,3.3784816666666666,1.2674866666666667,2.6205,2.275275,3.38696,3.432885,3.730545,4.048283333333333,1.6051175,1.4151375,1.8830625,2.2669375,1.40992,2.6566,7.159724083333334,4.988855,4.473525,3.092105,7.41539,4.60723,3.07121,3.02613,3.32012,2.643495,3.742335,2.2590600000000003,7.11881,0.87773,3.256225,6.75525,4.03514,5.21945,5.21855,1.5658266666666665,3.3745999999999996,3.032223333333333,2.881513333333333,1.7319575,3.90365,8.29407,4.578205,5.25595,3.955925,4.72608,4.71818,0.8712,2.7122933333333332,5.308,6.676403333333333,4.8738,5.36285,3.026105,3.902366666666667,2.27887,5.1209,5.0992,4.534285071428571,4.534285071428571,0.6824185714285714,3.6896,0.857464,0.8232349999999999,2.0144525,3.664266666666667,3.9769020000000004,5.558416285714286,3.4280000000000004,3.603634285714286,3.338087619047619,2.997616666666667,2.611893333333333,4.6706666666666665,3.5449025,1.9809125,1.9809125,3.72007,2.9837233333333333,2.6599066666666666,4.268495,3.605366666666667,0.6775044444444445,3.4387333333333334,2.7745433333333334,3.184423333333333,2.61679,2.570725,2.7295766666666665,3.3577333333333335,3.2175433333333334,0.8361240000000001,2.8045666666666667,6.440988238095239,2.08432,7.869704166666667,1.531028,1.531028,3.56989425,3.2039299999999997,3.5241333333333333,3.076076666666667,1.871734,1.4045142857142856,3.138726666666667,3.5131,1.8136166666666667,1.4214871428571427,2.884456666666667,2.8563340000000004,2.7927199999999996,2.017345,2.16904,5.03995,2.117635,2.76998,3.26774,1.687595,3.523695,3.144575,7.43922,4.397555,1.72218,3.722815,2.76053,2.069145,4.01341,2.5990233333333332,2.654085,7.2896374999999995,0.8330692307692308,0.694125,4.956975,1.4376060000000002,1.4376060000000002,4.66557,2.4715725,4.79808,3.521305,1.32549,2.276472666666667,2.667453333333333,2.3186893333333334,5.06,2.755065,2.9005799999999997,2.6226066666666665,1.6987735714285714,1.6987735714285714,2.0951400000000002,3.8836,3.9984333333333333,5.0517,3.4329,5.50125,5.05625,7.04075,5.4671,2.74296,2.7125833333333333,2.5644266666666664,2.616423333333333,0.7245133333333333,0.7245133333333333,0.7245133333333333,2.929885,4.601945,4.49539,0.821025,0.821025,5.7982,6.60885,7.71839,22.620955666666667,13.3198,8.70514,3.94462,6.10025,2.510325,4.84335,2.54412,3.443,4.489633333333333,5.586067333333333,1.960025,2.18067,6.64354,2.1901,2.1901,6.09585,3.73698,4.605655,2.00277,4.993903333333334,5.6307,4.8233,5.5632,4.01103,0.9641933333333333,6.306,9.4552,0.9641933333333333,2.00277,2.0365366666666667,0.77474,0.77474,1.81907,2.43796,1.81907,4.562595,6.22815,6.54815,10.3007,2.00277,12.057974999999999,6.64735,6.33115,2.510325,3.16534,4.915565,9.74697,3.2009,4.32392,6.27735,3.492505,5.35195,6.6145,4.966635,5.5148,4.043355,2.90964,5.21335,3.964195,4.79784,4.040715,0.77376375,1.57266,3.409065,5.6234,4.853185,2.7685333333333335,1.9175275,4.220625,5.06305,5.9972,5.338,5.3168,4.357745,3.489285,4.21109,3.57646,2.00322,4.73785,1.95199,2.593625,3.605335,1.7095500000000001,3.871235,4.439265,3.52459,5.45235,3.611945,6.492715,0.9944999999999999,3.38288,3.401345,1.4329857142857143,5.677287999999999,1.7654666666666667,1.8558533333333334,2.9745566666666665,3.3141875,3.0852166666666663,2.8479466666666666,2.00555,0.78067,2.43575,2.421095,4.16935,0.7318761538461539,6.341130000000001,1.71968,1.1507939999999999,3.808533333333333,1.1507939999999999,3.811865,0.9225545454545454,4.3981,3.2321299999999997,1.774005,4.176097,4.2002045,4.2002045,4.887305,2.62935,3.2260733333333333,2.5395133333333333,1.7966799999999998,3.801645,3.753875,2.0376866666666666,0.7826741666666667,7.453639487179487,2.729805,3.712535,3.93511,7.41243,2.574925,3.86018,3.66458,3.018625,3.826585,5.9621,7.046312499999999,3.9672,5.0222,5.4154,2.8752266666666664,4.791785,4.06346,4.90902,1.0782022222222223,0.5243078571428571,3.132875,3.4696,3.0177366666666665,5.69815,3.72328,4.2891,4.86613,4.902925,4.42198,4.50036,1.1613099999999998,2.329815,9.712108333333333,2.367363333333333,1.9233399999999998,4.0643,12.271218134920634,1.4987675,4.81904,5.80905,4.63245,3.2147133333333335,2.3683466666666666,3.372733333333333,3.852655,1.1192533333333332,3.3298466666666666,3.90067,0.45427368421052633,2.2899366666666667,4.82975,4.453575,2.23527,4.0954,3.509765,4.933441666666667,1.2809133333333333,0.5819063636363636,3.652528333333333,1.1507671428571429,0.99779625,0.99779625,0.99779625,0.99779625,1.5810883333333334,2.841613333333333,2.7252033333333334,3.2107966666666665,5.3674,3.8288666666666664,4.920335,3.419525,4.48371,3.446835,3.96059,1.5007733333333333,7.09793,2.11979,5.39435,5.3060366666666665,4.735765,5.3147633333333335,2.9695633333333333,2.42063,2.69609,3.50906,1.2132833333333333,5.557665,2.58267,5.0035,2.9103433333333335,2.4279800000000002,3.701225,3.569475,2.86587,2.461446666666667,2.65117,1.446105,0.3815133333333333,4.872725,3.553125,4.152775,3.786935,3.919845,5.9598,4.5154,0.5510284615384615,3.3169700000000004,7.1498566666666665,1.8554866666666667,1.9774,5.88558,4.916235,2.6560099999999998,4.988165,5.4273,4.12016,4.78051,4.23633,5.23555,5.16305,5.09265,3.533985,5.607525,1.5932499999999998,1.592875,4.3769,4.05351,4.62102,3.158615,5.2509,5.25155,3.766685,3.406525,15.924475184752826,1.315061235955056,1.1662775,1.9413838636363638,0.492403125,0.45535866666666663,1.4651625,0.3427323529411765,1.305326,3.04747,1.3946239999999999,0.9546666666666667,1.00185125,0.4441975,1.00185125,1.00185125,0.4441975,0.8738846153846154,0.6774507142857144,2.558265,2.54912,3.9974,4.76815,2.77943,2.732225,4.07271,4.90888,5.4636,2.683335,4.409215,0.7280642857142857,2.4570713333333334,8.815626666666667,4.554825,6.860171666666667,2.64525,4.047035,2.318095,5.11115,5.8546,3.132615,4.163485,3.554025,0.9889466666666666,4.692265,4.89035,0.9711399999999999,1.3311920000000002,1.7772500000000002,2.442833333333333,2.81236,4.87694,5.48495,2.290035,2.290035,3.473959166666667,6.58284,2.0920166666666664,0.6371481818181818,0.7278571428571429,2.1751533333333333,3.423166666666667,1.0096414285714286,1.0096414285714286,1.0096414285714286,0.36072692307692306,1.08801,3.1719,6.1138,4.0213,4.3319366666666665,5.53715,1.10515,3.566266666666667,3.5442666666666667,4.047133333333334,6.138,2.94638,7.66685,5.47195,1.2000222222222223,3.8110999999999997,1.92345,2.692035,2.3191666666666664,7.2409300000000005,3.09651,4.617245,2.198545,4.07789,4.35371,4.74902,0.4430033333333333,2.2349633333333334,1.3921566666666667,2.808173333333333,3.912766,2.0827166666666668,2.625976666666667,2.22303,2.46726,2.6127466666666668,2.6671899999999997,2.823636666666667,3.266996666666667,1.291636,2.2096899999999997,1.9723766666666667,2.71292,2.2991733333333335,2.01654,1.7411733333333332,1.83748,1.62931,3.072585,2.1746066666666666,2.05017,2.1871633333333333,2.328396666666667,2.63591,0.7318677777777778,0.7318677777777778,0.7318677777777778,2.4738866666666666,2.3081,2.96618,2.85038,2.5883266666666667,1.9303333333333335,3.69871,3.3982166666666664,1.2551666666666665,2.4324733333333333,2.684563333333333,3.629836666666667,1.6405285714285716,7.11005,4.65294,3.01098,4.008795,3.933855,1.60167,0.5221057142857143,3.224185,3.7489,3.629836666666667,4.745,4.33722,5.09095,3.16466,4.15432,4.331045,0.957334,2.757355,3.334155,4.912509166666666,4.6508,3.559665,3.90076,2.60101,2.7225300000000003,2.53565,0.6241183333333333,5.228871666666667,2.592175,5.16145,2.7826133333333334,3.88952,3.06439,2.4649933333333336,3.1291866666666666,3.1291866666666666,2.5258933333333333,1.9636766666666665,2.88124,1.9886666666666668,4.3162,1.5490780000000002,2.630955,3.80929,4.148685,3.96202,5.1918,5.05105,2.38747,2.1257,3.18724,3.611175,3.861595,4.89146,2.80153,1.0517228571428572,1.0517228571428572,4.67368,3.78593,0.9531000000000001,4.86121,0.9531000000000001,4.391885,4.63209,5.05535,3.30511,3.546945,6.5441424999999995,4.1192408333333335,6.26615,0.8709857142857143,0.8709857142857143,2.17232,4.703233333333333,1.5245833333333334,3.17865,4.14055,1.1028042857142857,5.2598,4.2103,5.39795,5.39795,1.1775033333333333,5.3547,5.22035,4.471945,6.3419,2.2080725,2.2080725,7.00345,0.9916,6.9707,1.90102,6.17935,2.80236,2.42294,3.29598,1.7844740000000001,2.0624833333333332,2.62154,3.058203333333333,2.543837857142857,6.68794,1.934836,5.48145,3.4717000000000002,2.725213333333333,1.705465,2.046275,3.16885,3.377415,3.986195,2.60848,1.957835,2.06587,2.443405,1.13236,3.27652,1.98541,3.043415,1.9659125,1.9659125,2.88294,2.02977,3.712405,3.68433,5.32395,7.818666666666667,4.611185,3.38475,6.693360333333334,1.9185433333333333,3.3674333333333335,2.181,1.4827,1.7087925,4.56938,1.69865,0.4853675,0.6222883333333333,4.754795,4.34424,2.790445,0.9663277777777777,3.216885,2.55843,5.044,2.0958200000000002,1.891935,1.2181333333333333,5.1438,2.702825,4.26059,0.6422950000000001,4.386987083333333,4.8627,4.02402,4.331215,3.536275,3.827455,3.1285666666666665,5.7521,3.94306,2.589373333333333,2.732063333333333,6.010813333333333,6.2470625,0.7297125,4.393485,4.14803,5.2744,3.6289,3.6656666666666666,2.92255,3.4473000000000003,3.6062666666666665,6.09416,2.8563340000000004,2.5614220000000003,3.985245,3.749895,2.393885,2.571575,8.367516666666667,4.932285,1.9288999999999998,5.46175,4.610035,1.8394739999999998,3.902145,1.4865,1.7161285714285714,4.65377,4.28226,5.77805,3.0651766666666664,4.80028,4.888565,6.4918,4.874295,5.41685,4.54348,5.56,4.368445,4.493685,1.1206243846153847,1.1206243846153847,8.02722,0.8072775,1.7005471825396825,0.8072775,0.6777733333333332,0.3701811111111111,2.378320515873016,2.270185,0.48640857142857147,1.7005471825396825,2.02133,3.158775,1.8919119444444443,3.52906,5.2402,7.44135,1.984955,2.01925,2.58587,5.38435,6.0646,1.704395,1.658755,1.53007,3.188825,4.472275,2.59784,4.85619,6.396085,0.49891722222222223,3.897435,0.7485,3.006326666666667,2.4416525,4.331605,1.5174666666666665,4.350105,4.6477525,4.33476,3.199425,4.261035,5.7870925,1.9026275,3.15897,0.6844261538461538,2.82435,2.816495,1.2013019999999999,2.8701966666666667,2.40491,2.5099033333333334,3.71395,9.445174999999999,3.2093754545454547,3.592675,3.316555,8.27312,6.183390833333333,3.4326666666666665,3.96525,3.35776,5.6972,5.8896,5.7605,5.36795,5.12095,6.27625,2.701696666666667,1.5627125,1.77973,2.259723333333333,4.137175,2.3611666666666666,0.22371972972972973,0.22371972972972973,0.22371972972972973,30.625885595238096,0.22371972972972973,2.8713947297297295,0.22371972972972973,0.22371972972972973,0.22371972972972973,3.3981463963963963,4.2019,0.22371972972972973,0.22371972972972973,0.22371972972972973,0.22371972972972973,0.22371972972972973,2.945585,4.84133,3.267695,0.31814615384615386,0.31814615384615386,4.249486666666667,4.109507708333334,4.159467708333333,3.2424900416666667,4.174098571428572,8.050133333333333,11.46736033916084,6.705686666666667,7.911790000000001,6.937536375,2.459096666666667,6.142268095238095,5.176066666666666,4.601018493589744,0.31814615384615386,8.086739333333334,6.867728,6.992003333333334,3.067825,9.037677875,15.404221875000001,19.12265982371795,57.79297207803634,118.90844701698629,1.3732616666666668,3.3982666666666668,3.0891,3.9579542458172456,0.31814615384615386,1.782223076923077,8.198142708333334,14.1657305,19.837878333333336,48.72842506349207,13.321099541666667,2.79955,0.2684648275862069,0.2684648275862069,4.477223333333333,2.728423333333333,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,8.7017,0.2684648275862069,0.2684648275862069,0.2684648275862069,2.78487,1.8807433333333332,4.03009,3.69422,4.213525,5.3621,2.501725,4.330835,4.49068,2.993135,1.5511666666666668,3.60089,0.9853816666666666,2.25143,2.648023333333333,5.502946666666666,6.175406666666667,2.8676366666666664,5.627851055555555,0.4021161111111111,0.474056,2.463643333333333,2.938053333333333,3.280295,4.296985,3.25779,7.6433349999999995,3.624875,3.01242,3.36383,4.00535,3.65747,3.19392,5.7855,3.47047,0.45181,0.8897727272727273,4.4239049999999995,1.7135125,3.60931,3.79174,4.40089,3.42238,2.626875,2.62051,0.583328,0.739764,4.108165,2.5541666666666667,4.38438,3.738715,4.509666666666666,2.61294,3.0862,6.0732,5.7467,3.480105,0.8912009090909091,3.3405,5.2086,2.23661,0.962715,1.9469266666666665,3.93083,5.4795,1.827455,3.53601,3.821525,5.30185,2.20704,2.4212266666666666,2.220405,4.593235,2.512175,3.906615,0.6887471428571429,2.8264099999999996,3.35707,1.870965,6.629981666666667,4.23206,4.264495,4.698215,2.78327,2.110515,0.6155745454545455,4.837205,4.16403,4.7432,3.62957,6.11115,5.1267,2.80623,2.694395,1.2913142857142856,5.32945,1.90434,2.64004,9.630565,4.6355,5.03735,3.271415,0.9763644444444446,3.039395,1.1963885714285714,3.258325,6.4897,5.3807,5.25015,3.73453,5.09435,4.87677,1.77672,1.8449633333333333,5.55075,3.2209833333333333,3.6445333333333334,2.4010625,5.12235,5.09985,1.5230249999999999,3.6316333333333333,2.768135,2.73698,4.884065,9.37105,4.59766,1.6792125,4.796665,6.00469,4.5801375,4.120055,3.805505,4.18618,4.46484,8.018775,2.356786666666667,3.060625,5.1207,4.51284,2.980585,3.279685,5.3243,4.185255,3.576555,4.260743333333333,18.98973,2.9363333333333332,2.65321,3.1790933333333338,5.731318333333332,1.13322375,4.818595,2.0063975,5.1331,1.520975,4.131095,4.407025,4.097235,0.9766625,4.46433,4.511165,1.5994275,4.808802954545454,4.34204,1.2431128571428574,3.55411,1.98885,2.435765,1.592405,4.203905,3.78525,3.922335,3.537885,3.15,4.265595,8.21213,4.70523,4.701935,5.1343,3.3747333333333334,4.269725,5.0511,6.741426,0.9832919999999999,0.9832919999999999,4.70088,4.91344,2.09925,1.523305,7.886875,4.00851,3.44483,4.08776,4.64437,4.60924,3.41733,3.738255,7.032755,4.230606666666667,4.91626,5.0402,1.4965857142857144,2.852625,4.316345,5.4129,3.57763,0.19303055555555554,2.0875875,2.283695,2.6917299999999997,2.0372066666666666,1.0096577777777778,1.246295,1.3404925,2.6698,0.6785677777777778,1.3200871428571428,2.2370525,3.661135,3.944433333333333,2.4268966666666665,2.8871800000000003,2.9688766666666666,2.8659133333333333,0.7251540000000001,0.95141,2.95523,4.796795,4.35919,3.55947,5.3414,4.81484,5.2142,2.06644,4.20603,5.28725,4.947095,6.7724925,3.83131,0.4722288235294117,5.89985,4.61446,4.22536,5.22175,3.14121,2.06102,4.46594,4.48096,2.899505,5.0706299999999995,4.50117,1.4207366666666665,5.0706299999999995,4.62932,6.5212900000000005,3.624015,1.2762222222222224,4.17619,4.86951,4.3182,2.5782599999999998,5.3647,1.419905,2.033455,4.32063,3.444695,0.7950455555555556,4.60907,4.95022,3.924805,4.55357,3.32415,3.5157000000000003,1.709342,2.02435,3.07577,3.85474,3.6325333333333334,2.414433333333333,2.848925,2.2823510000000002,5.3969,1.7843142857142857,0.824458888888889,5.73953,3.99246,1.4721579999999999,2.6435766666666667,2.53953,3.7634666666666665,6.758615,2.423357222222222,0.924789,2.54354,4.696075,2.36954,4.840435,5.99665,5.2423,5.11025,4.1587,5.40115,2.125296666666667,2.13179,1.6294666666666666,2.0955733333333333,1.817735,2.4592,2.1740333333333335,1.5975125,2.814515,2.96917,3.666975,6.54775,5.36265,4.262145,4.71801,3.972165,3.98361,4.54773,0.8838875,2.67289,5.33365,1.090678,0.78648,4.742495,3.358015,2.7985733333333336,3.4208687500000003,6.17486,4.952605,1.0605499999999999,1.3656428571428572,0.6784033333333332,3.9918383333333334,2.1420533333333336,2.7474933333333333,1.1821557142857144,3.260816666666667,2.6915666666666667,5.6758,4.948245,4.481025,5.4789,3.99152,1.3172966666666668,3.48301,1.7084266666666668,3.653035,4.34275,3.51093,2.619623333333333,3.246356666666667,2.71265,4.95308,3.952905,2.892585,2.8187,8.22983,10.508465,4.224325,1.2812242857142857,5.43385,4.134155,5.55385,4.434285,4.235915,3.809025,3.32889,4.02141,3.7781383333333336,5.39469,3.78652,4.100495,4.484345,1.903968,5.30225,5.92005,4.760895,3.23205,3.172285,6.602825,0.6605774999999999,2.8135033333333332,2.705776666666667,2.3352533333333336,4.93836,3.231625,1.3585500000000001,4.751235,3.732333333333333,3.667205,4.744275,3.646748333333334,6.700144999999999,2.938023333333333,2.9364899999999996,3.06505,3.13829,4.13556,2.49936,2.156753333333333,3.10314,4.061005,3.472054583333333,1.869435,1.4306175,3.7201674999999996,3.39497,0.9394944444444445,3.0049216666666667,3.0049216666666667,1.4519975,6.09315,3.13563,3.16035,3.31586,3.32902,3.35195,3.41929,3.307365,3.19541,2.058523333333333,0.5792833333333333,3.16383,5.788485,2.9707,3.608445,3.226,4.04386,4.178265,3.157265,3.022225,3.51753,3.831935,3.03152,3.567065,3.4432,2.57362,3.87756,3.6943,8.80052,3.835665,3.494295,3.25092,3.94005,4.014655,3.56498,2.31323,3.598535,2.56177,2.80664,2.789125,3.19005,3.66529,1.7339466666666665,1.7339466666666665,2.28683,2.83388,3.188045,1.54825,2.51312,3.351105,1.8316839999999999,2.82807,1.54825,4.427145,2.91133,3.9646049999999997,2.857135,3.168875,2.35672,3.190515,3.791705,4.84377,3.27927,4.16127,3.69191,4.225855,3.58273,2.974315,3.240995,3.05744,3.707995,2.61585,3.457425,4.888875,3.982955,3.72883,0.29832478260869566,3.467585,0.42073,3.932175,3.499,2.84461,3.504675,3.83612,6.031688333333333,3.266605,2.53082,2.3970266666666666,2.6654933333333335,0.761799,6.137976666666667,3.06506,3.41913,5.18025,1.939205,2.557355,3.13849,3.256265,6.51658,4.52593,4.93641,4.584845,4.7869,4.258595,3.52109,1.5132183333333333,1.66377,3.76035,4.521985,5.63199,2.3726366666666667,4.49419,1.83699,3.5908333333333338,3.69448,1.8673719047619048,3.875995,4.66336,3.6682333333333332,4.132366666666667,3.5208666666666666,4.483825,5.1225,3.4425000000000003,4.179845,5.00525,4.84923,4.548355,4.345105,4.002105,3.575195,4.2518,2.671525,3.2046666666666668,3.2046666666666668,4.27368,2.5617733333333335,3.941245,2.55719,4.824985,3.2671433333333333,3.375045,1.823605,1.8255566666666667,1.1506833333333333,1.1506833333333333,1.8210000000000002,3.5946,1.6520933333333332,2.8558233333333334,4.479715,5.150703,3.4536333333333338,5.3013,5.57451,3.14494,3.254875,3.0849233333333337,1.5705200000000001,4.502355,4.495385,6.4268125000000005,1.8983233333333331,5.80775,5.34095,3.17876,3.385645,4.1771,6.79926,2.27875,2.5385,4.22005,0.4872014285714286,4.568565,3.983895,4.79984,3.78125,4.320605,1.705002,1.726444,3.888085,4.386695,2.3807666666666667,3.618185,4.53263,4.621295,1.241975,3.996255,5.3534,3.85591,5.17745,3.0895200000000003,5.888598333333333,3.72756,1.52872,3.69172,1.2366483333333333,2.9466966666666665,7.833145,3.193395,0.8394618181818182,3.531725,4.470355,4.301175,2.223995,2.223995,5.219828333333334,5.522,2.77213,0.4626766666666666,1.94103,4.365268333333333,4.657125,4.286915,1.752354,3.0038366666666665,3.53573,1.1411961184210526,1.1411961184210526,1.1411961184210526,0.6642698684210526,1.2373532017543858,0.5730833333333333,1.1411961184210526,0.6642698684210526,0.23166736842105262,0.8047507017543859,0.23166736842105262,0.4326025,0.4326025,0.4326025,0.4326025,1.1012921666666666,1.22786,2.3524533333333335,2.2900066666666667,1.0598033333333332,6.124926666666667,2.610376666666667,6.258976666666667,2.9665866666666667,4.12285,2.857665,3.128685,2.7562841666666666,4.61878,2.7117733333333334,4.154965,4.013945,5.4134,2.3389125,5.154,5.15735,4.00133,3.089175,4.95709,3.098695,4.492175,5.3636,4.77662,6.18355,5.04145,1.35385,3.186575,3.759625,2.51714,15.61785,4.6078,5.14145,2.855036666666667,7.37869,4.12927,3.865545,4.7616,3.052025,1.08483,2.508045,4.13771,4.73347,4.756805,3.36881,4.065475,2.8914833333333334,3.93635,4.80281,4.350845,6.854051666666667,9.499046666666665,1.34076,3.497755,4.218035,4.015305,3.532745,3.594775,6.77928,2.578255,2.8773,2.507455,3.907225,3.76024,5.0982,2.466015,1.6725725,0.8855040000000001,4.671235,4.850045,3.763235,4.71447,4.01693,4.68968,4.160355,6.39795,5.5816,3.612465,5.39205,3.85073,3.172765,3.254785,3.44778,1.8304875,3.92644,5.50845,5.85415,6.304216666666667,6.304216666666667,2.27967,1.8304875,2.3039,2.97735,0.693505,1.563135,0.86963,1.5175975,2.94447,0.35451,2.959035,4.156135,1.5175975,3.49908,11.081344999999999,6.6564325,2.3445556666666665,1.1187099999999999,1.8019966666666667,4.51493,4.41809,6.498373428571429,1.9397375,2.023495,4.64263,4.46113,5.0429,1.8024833333333332,5.4463,3.565,3.20265,5.3705,7.238656000000001,3.84591,2.396465,2.7300766666666667,1.7952666666666666,4.336195,5.5844175,1.8420320000000001,5.9353,4.48859,5.81423,0.6315233333333333,5.080346666666667,4.010485,5.41525,2.95437,2.760915,6.7209,9.18515,5.5626,2.121,2.121,2.121,6.3617,4.681865,5.747,3.13642,2.6225,2.4692055263157893,4.50179,3.46714,2.4800915,1.801555,2.4800915,7.064481499999999,4.4073,4.323163095238096,6.05486,4.323163095238096,4.323163095238096,3.1492514285714286,6.88321,5.321914,2.825234,2.825234,2.58853,6.45065,2.789265,3.516075,5.469831666666666,5.469831666666666,5.469831666666666,7.15809,3.5126324999999996,3.418265,3.5474625,3.3775649999999997,0.883015,6.956113333333334,2.5488133333333334,4.486415,3.230845,13.133452666666667,4.290445,5.4115166666666665,6.65992,2.5737883333333333,3.371445,1.1174283333333335,5.4115166666666665,3.37168,1.6479725,1.6479725,2.8943,5.157911666666666,1.7689925,4.6646366666666665,0.842109,1.39386,0.842109,1.887135,2.6111015,5.1666039999999995,3.757815,1.39386,3.05633,4.918645,1.093845,3.467075,4.33365,2.11068,4.164176666666666,2.33239,3.226825,3.05257,0.872632,3.642555,2.422095,2.413585,1.64387,3.199855,4.061995,2.781025,3.59823,1.2983477777777779,1.2983477777777779,1.2983477777777779,3.178895,2.3973999999999998,2.3973999999999998,3.171545,4.077515,2.2794166666666666,1.342405,1.342405,2.88705,4.2709475,0.7863975,1.4246800000000002,2.7777,1.51805,2.94273,0.872632,0.872632,2.012723333333333,0.872632,3.1979733333333336,0.8050866666666666,3.1979733333333336,5.91038375,3.24584,2.377946666666667,1.6779381944444443,0.6326666666666666,2.310604861111111,3.371925,2.310604861111111,0.9047244444444443,3.2903,3.78745,3.839355,3.76415,2.72229,3.60613,1.8982133333333333,0.9612576388888889,0.42612875,0.9612576388888889,0.5351288888888889,0.9612576388888889,0.9612576388888889,4.770525,5.3757,6.13025,3.515915,4.89479,5.06245,5.18105,3.36688,4.116905,1.3915514285714286,3.1494,4.0943716666666665,3.85219,1.39623,2.68505,4.60415,3.829645,4.261655,3.541715,3.214935,3.623015,3.04415,4.623305,2.6289833333333332,5.763,3.74021,4.062955,5.042099285714286,0.9819397857142858,2.15683,3.94443,6.697,5.07555,3.935515,3.3226633333333333,5.26915,8.103861666666667,3.9992,3.105175,3.5840666666666667,6.34815,4.107755,5.7933,5.74435,5.1431,3.093495,5.10365,4.91994,3.502166666666667,3.95549,2.9423366666666664,2.3925075,2.1973433333333334,5.1469,6.60905,5.96595,5.6357,4.517015,5.4011,5.7822,0.501833076923077,7.457315,4.41122,4.36197,4.199255,4.80847,4.299745,3.119813333333333,2.98095,1.3476066666666666,0.5679584615384615,1.8318940000000001,3.0475833333333333,3.2987,4.0719,4.196145,3.70915,11.752395,3.63878,3.82027,2.96882,0.6808383333333333,6.035466666666666,2.8040000000000003,1.48376,4.2877600000000005,5.64513,2.84113,8.48646,4.48699,3.01045,3.01045,3.01045,4.02783,8.98194,3.80044,3.018625,3.018625,3.395745,9.45051,1.0167925,5.3015,4.537645,4.224045,3.1143,2.1591566666666666,4.229875,3.926175,5.87425,5.926121666666667,3.857825,2.76415,3.815495,4.198035,3.77154,1.2896875,3.18955,6.16121,3.5912575,4.84257,1.114655,3.8260666666666663,2.5200066666666667,2.567903333333333,1.798175,1.7033633333333331,2.1310566666666664,5.7498,2.09133,4.244085,5.66335,1.934836,4.713935,3.82877,4.907545,2.9098400000000004,2.17737,2.75599,4.6176,4.021393333333333,4.021393333333333,1.1452175,2.2612566666666667,3.0272166666666664,4.389718666666667,2.3170456363636367,4.935798,1.7417580000000001,2.7755166666666664,2.0637366666666668,2.18271,2.18271,4.83967,7.68704,1.96704,3.0889866666666665,2.419505,6.1179,3.074345,0.73366,2.96436,0.73366,2.86029,3.362555,4.91884,5.81645,3.579945,4.801331666666666,6.0312,2.30937,2.2564233333333332,2.53452,2.152,6.25635,4.562845,2.75647,3.972225,2.755055,4.885265,1.06463375,1.085788,1.88502,1.5727766666666667,2.53255,2.6598200000000003,2.1490566666666666,3.1765966666666667,2.656345,4.53618,2.625523333333333,2.5187,2.701233333333333,2.3123066666666667,3.1931733333333336,2.68465,1.9126,2.45363,4.237505,3.466385,3.330855,4.37717,2.97645,2.17566,2.189115,1.3309483333333334,0.3141255,0.17230304347826086,2.1541133333333335,2.17165,0.17230304347826086,4.145551376811595,2.29118,0.17230304347826086,5.863964166666667,2.3419350000000003,6.11054,3.39289,3.6123999999999996,2.3949933333333333,3.0388333333333333,2.243815,4.300755,3.3491666666666666,3.4049666666666667,0.5055594736842105,3.92999,2.535176140350877,2.77162,1.69225,2.4608675,4.326565,2.515175,7.815035,5.2043,4.18244,3.7624,5.9008,6.00982,1.7337266666666666,3.8599449999999997,2.00261,1.896895,7.9765,8.76384,1.35944,2.0871625,3.569875,2.45352,2.833125,3.215315,2.69535,4.202635,2.355655,3.102865,3.66028,3.11093,7.43352,1.38941,1.86094,2.79921,3.391575,1.7457633333333333,3.39987,1.35841,3.59674,3.322515,7.26267,3.39259,8.609232500000001,4.100545,1.8018399999999999,1.6554666666666666,3.168075,5.81132,1.5744425,1.4842633333333335,5.45123,3.336635,4.01225,2.730145,2.1427766666666668,3.101055,10.229405,4.83492,6.23611,3.52352,2.285375,2.136185,2.60042,2.691205,3.29725,1.8800833333333333,1.5863566666666669,2.510263333333333,3.46603,1.703455,3.194255,2.52412,4.17524,3.67522,3.09036,1.29684,2.410655,1.0642733333333334,1.303102,1.66802,3.34264,3.776765,3.629415,2.683655,3.673535,3.820555,2.834435,1.45015,3.430865,3.4161525,3.11149,1.89087,3.12134,3.30113,1.499835,3.39151,1.7369133333333335,3.85198,4.15534,5.1682,2.595365,3.85915,1.691245,4.290825,4.53593,1.669755,1.2374585714285715,4.104733333333333,2.56216,4.298165,4.08916,2.91299,4.96602,4.38402,2.3677333333333332,5.49255,5.3191075,6.50875,4.69317,6.014992,3.881445,1.63452,2.6477333333333335,4.103315,5.676,2.8228000000000004,7.46092,1.3813571428571427,3.6451333333333333,2.1137,1.7541319999999998,2.407923333333333,2.71046,0.37543642857142856,2.8674966666666664,3.02947,3.482735,2.465435,3.5970666666666666,2.2105200000000003,2.4118933333333334,2.3471525,8.79994,5.1919,1.537054,5.0905,2.518893282608696,0.7096513333333334,2.8110166666666667,7.742395999999999,1.8107780000000002,4.67127125,6.399318333333333,1.7316575,1.5520525,1.5758025,4.51647,3.14867,4.330195,4.1438524999999995,2.4827166666666667,3.98605,0.853022,2.774522,4.448155,4.14164,5.49945,2.87034,4.72924,4.433125,5.04835,5.3882,6.0661,4.82786,4.691155,4.05114,1.513046,1.933785,2.9459,3.271295,1.2182000000000002,4.29432,2.806783333333333,3.386433333333333,4.11549,2.974603333333333,2.799023333333333,1.5416366666666665,3.19643,2.7556205555555557,2.5934733333333333,2.7882700000000002,1.9448333333333334,1.978685,2.34798,4.803785,4.9897,4.32205,4.882945,3.419505,2.15319,3.1377,5.23245,3.4555666666666665,4.596035,5.2636,2.787755,4.322791666666666,1.6264066666666668,4.112855,4.966211666666666,6.061561666666667,4.26423,5.33675,5.93575,3.6422666666666665,4.152154166666667,4.66975,3.336785,3.8761365000000003,3.503325,1.332915,3.079225,1.726195,2.192865,4.127395,5.5222275,3.8761365000000003,4.233025,3.331565,1.5245833333333334,3.80236,2.103225,2.5990233333333332,2.162755,2.71172,1.7334999999999998,1.7334999999999998,1.7334999999999998,0.67606,0.8088188888888889,2.225832222222222,1.1504925,3.43785,1.3197116666666666,4.65134,5.03085,5.1222,3.144505,4.070825,3.04867,5.15135,1.836685,3.006085,2.41687,3.05016,5.798672,4.670275,5.4782,3.92036,0.98623,2.16879,1.2649566666666667,3.620845,3.98443,4.33563,5.35935,5.30075,5.46005,5.60505,4.0149,1.696935,1.5371766666666666,5.401373333333334,1.011717777777778,1.2866066666666667,3.01112,8.241,3.09386,3.810605,3.04765,5.585485,1.70815,0.9642666666666666,1.55779,3.086445,3.491115,3.814965,3.60378,1.88258,6.444884999999999,3.0605766666666665,0.91336875,5.3962,2.8171766666666667,3.1389033333333334,2.2817766666666666,3.640333333333333,5.967309166666667,2.9760066666666667,3.2738333333333336,3.7291333333333334,3.156663333333333,3.0954433333333333,3.0303066666666667,2.830215,1.925105,4.561235,4.891375,4.476195,1.0040411111111112,0.6905140000000001,3.503033333333333,2.57468,1.05208,2.4621666666666666,4.83301,4.43678,7.156225,4.616635,3.6049333333333333,1.661676,3.57583,3.597775,2.8941233333333334,2.7955,4.328545,2.894746666666667,4.951305333333334,0.9369777777777778,5.37225,1.614658,4.621675,4.696905,1.98414,0.9680075,2.986725,0.41163299999999997,3.038555,6.2192,5.8055,2.7959060000000004,1.419808,3.3584,0.7341511111111111,2.6011266666666666,0.7341511111111111,4.016455,4.47672,1.310325,1.91747,5.181301666666666,1.7327266666666665,3.494065,3.82334,4.646755,1.32774,1.5908866666666668,4.002295,5.50465,5.0305,3.5163140000000004,2.26712,3.0104,1.5780275,2.2319675,2.172235,2.55685,4.78698,1.3537222222222223,1.3537222222222223,3.40187,5.04697,7.397934166666667,5.190523333333333,8.56541,2.092585,3.89295,4.038295,1.6329116666666668,3.766545,4.326875,3.388085,5.85965,2.86181,2.32624,3.148846666666667,4.18393,1.15253875,3.83565,4.552555,1.1009083333333334,7.779346666666667,2.693165,3.097215,2.9273116666666668,3.871925,3.436005,4.214109583333333,2.90596,2.7692866666666665,1.8496566666666665,3.6239666666666666,2.209655,2.2466925,8.273323333333334,3.3657333333333335,3.4982333333333333,4.167505,23.095278276556776,0.7321666666666666,3.0085,4.55582,4.617635,8.24742,4.704245,4.132485,4.94637,7.667136666666666,3.41842,2.0157333333333334,4.814381666666667,4.451065,1.251014,1.251014,1.251014,2.56157625,1.6499125,3.01923,1.514935,3.063055,1.5658266666666665,2.624415,4.31048,2.858675,1.514935,3.37242,2.72239,4.649263333333333,5.290885,5.1029,0.8411666666666666,3.14915,2.630895,5.1986,3.75951,2.696965,2.1638825,1.65805,2.2361275,1.379246,4.38326,1.49011,4.890325,11.840126666666666,2.8227466666666667,2.44514,4.927740833333334,3.4592333333333336,4.330133333333333,6.27515,2.0296166666666666,6.183390833333333,4.78191,1.01979,1.1534042857142857,6.502651,4.20146,2.1124475,4.08545,1.8985925,4.74821,5.0507,4.728605,3.95168,1.36283,4.09206,5.1374,5.18425,6.206811,3.90357,5.4056,4.757555,3.871375,5.0718,3.08396,5.123,1.93538,3.26286,3.410865,4.7701,3.981245,6.533,4.461885,3.0044033333333338,3.4805333333333333,8.9041,4.71622,3.3655000000000004,3.62839,3.401335,4.38942,4.24421,4.90908,7.119901666666666,3.63814,2.6232533333333334,4.150761666666666,2.299835,4.875545,3.1073166666666663,6.33544,1.5789366666666667,4.398985,4.90939,11.69672,0.49338857142857145,3.925165,4.53181,0.6831621428571429,3.64961,4.47809,4.634595,1.0633599999999999,4.72513,4.975523333333333,2.745006666666667,10.042801666666668,3.461,1.9251566666666668,2.22265,4.01447,6.1962,0.5768116666666666,4.029705,2.2328625,4.857085,0.71489,4.18824,5.80815,5.42975,3.4466,6.72235,4.504675,3.7282975,2.56972,2.80363,4.31649,4.755355,5.2168,5.37125,4.976715,3.3559,7.54688,2.961325,3.5593605000000004,2.2418125,3.49838,2.5864266666666667,1.5155833333333335,3.0337633333333334,3.18163,2.9286066666666666,3.8271333333333337,3.765333333333333,3.13804,2.8697666666666666,5.45325,3.296056666666667,3.692985,5.00275,3.3500333333333336,1.1284999999999998,3.211156666666667,2.9104266666666665,3.962365,3.345266666666667,3.121793333333333,4.5511116666666664,1.8778066666666666,1.7458,3.02279,3.723885,4.670995,1.12318375,4.67514,3.112915,4.1007,3.10941,4.9351545,3.8776,3.15422,4.90775,1.726265,3.84087,0.68224375,4.57794,4.97836,16.170687575757576,3.606533333333333,1.3721866666666667,5.02805,0.6723035714285714,2.66025,4.33264,1.758615,1.3923257142857144,4.04065,4.55926,3.3132966666666666,0.7076133333333333,2.51846,7.52306,3.825365,5.74455,5.16255,4.545585,3.18772,3.7952666666666666,3.3652333333333337,6.882786666666666,3.91731,5.4872,2.200445,0.5050783333333333,2.14952,2.81032,2.66418,2.656635,4.59324,2.9654833333333332,4.9629,0.7121974999999999,4.754525,3.768225,2.913605,1.14311,2.80334,2.0199833333333332,5.06915,3.92318,2.128955,1.6788857142857143,4.24837,5.1704,5.1936,6.41142,2.11248,5.54495,5.4059,5.05285,2.39724,5.1093,6.385935,5.45405,2.89601,4.890695,2.886785,2.85564,3.915125,3.871585,1.3635650000000001,4.7463,2.49599,2.932873333333333,5.682265,5.682265,5.12585,1.819584,4.82015,1.035095,1.8223120000000002,5.0158,2.7983100000000003,1.42853,3.4189000000000003,0.8796060000000001,4.3101666666666665,5.34985,3.207405,4.871755,4.2704,3.848225,5.5842225,3.40717,3.635666666666667,3.2345333333333333,2.326096666666667,2.648475,2.9363499999999996,4.72681,1.4185560439560438,2.88362,4.49091,5.6244,2.4828870833333334,4.337475,4.55188,4.795693333333333,3.4517333333333333,5.40095,5.1369,5.60565,4.918385,4.065755,3.890385,3.741065,4.813995,5.4879,4.75315,5.0053,4.391375,4.62434,0.7582650000000001,5.27725,4.733345,4.377645,7.121157500000001,4.565905,4.489385,4.42322,5.03745,3.845695,3.764315,2.18455625,4.423365,1.99345,1.3360685714285714,4.064285,2.0801133333333333,2.46135,3.6561106666666667,3.3419333333333334,3.192805,1.11747,2.2024275,3.993245,4.086355,1.889825,1.889825,4.490815,1.808718,3.1610133333333335,4.633935,3.708,3.67834,1.4956233333333333,2.03039,3.7346225000000004,1.93501,4.262415,4.673965,4.355555,4.042035,8.534996666666666,2.706575,4.1964,4.87867,4.23519,2.9647799999999997,4.269395,4.472605,4.547285,2.29347,2.6361966666666667,4.602955,4.23725,3.93735,4.14522,1.5951775,3.57757,4.48687,4.598405,4.14132,4.0398475000000005,4.0398475000000005,3.2424866666666667,4.381325,4.791205,4.20601,1.842314,8.090275,4.132535,5.26595,4.552345,4.47749,5.2615,4.93679,2.88011,3.77018,3.867435,5.2185,2.03506,4.84361,5.871353333333333,5.5414,0.724005,4.765067500000001,1.06894,5.5211,4.60975,5.03865,4.38987,5.77565,2.762086666666667,2.762086666666667,0.948452,2.4278275,4.87075,3.75261,4.09692,4.503495,5.83715,3.18661,4.254135,1.4042783333333333,2.93369,1.616775,1.19175,4.508794,0.8441890000000001,2.4172966666666666,3.2069666666666667,1.6287099999999999,2.2843675,2.61778,1.3791866666666666,6.22624,1.779605,2.4017399999999998,4.288955,2.43823,2.961066666666667,3.955905,4.697355,2.422423333333333,3.0776533333333336,4.184866666666667,1.656996,2.156925833333333,4.71098,0.6484442857142857,2.47073,2.784895,3.3435666666666664,2.9887333333333337,1.25995,0.84335,2.36085,4.097255,1.242675714285714,2.2605925,1.14248,5.642779166666667,2.3059125,4.61765,4.6118,4.76643,4.92616,5.6789,4.47204,4.34442,1.4988983333333332,4.102133333333334,1.7598120000000002,2.6995299999999998,1.1942885714285716,4.40999,2.2722525,5.524606,4.01958,3.892925,1.6756799999999998,6.7582925000000005,4.5996,1.5685666666666667,4.01038,2.996615,3.97736,3.33085,1.99086,1.99086,3.3286833333333337,1.3921066666666666,1.3921066666666666,2.39724,2.71721,2.01654,1.2551666666666665,3.3546,1.08793375,3.1710166666666666,2.46236,1.87382,1.58915,2.21141,2.3352175,0.2769594117647059,2.5417,1.1915566666666666,2.4103566666666665,2.0637366666666668,2.38747,1.0849022222222222,1.13236,3.5942333333333334,3.235806666666667,1.99086,1.7135125,2.0056533333333335,2.4937733333333334,2.4231366666666667,1.9450880000000002,2.452733333333333,1.09114,3.6058,3.30828,2.4027866666666666,1.474512,1.130906,2.519725,1.130906,2.519725,0.8025,0.8025,0.5464249999999999,2.5636,2.4973933333333336,0.8025,2.2446725,2.5670966666666666,2.3188175,1.62931,0.7318677777777778,0.8025,0.8025,1.5790039999999999,1.5790039999999999,2.150755,1.7135125,0.8025,2.34422,0.46024384615384617,2.85055,2.0854333333333335,2.6006533333333333,2.71237,2.71237,0.3293975,0.3293975,2.39724,2.02738,2.28532,2.00392,0.3293975,3.7166,2.540625,1.681244,0.62054375,1.681244,0.62054375,7.8015,2.4187499999999997,3.9476999999999998,2.7182633333333333,3.3474,2.9017700000000004,2.9323333333333337,3.4535,2.3838725,1.7519825,2.7563933333333335,3.9992,2.3722,1.5790039999999999,2.3225673015873016,2.3225673015873016,2.7198466666666667,2.26261,4.24112,2.3051833333333334,3.385733333333333,2.692736666666667,1.679138,2.6643,2.50415,0.8212245454545454,1.5435925,3.52997,1.8783239999999999,3.082316666666667,2.9261866666666667,2.6126,3.862033333333333,1.6422733333333335,3.699033333333333,3.289593333333333,4.309366666666667,1.264258,0.2684648275862069,1.2877242857142857,1.2877242857142857,1.134311111111111,3.29243,4.047133333333334,2.6750066666666665,2.0655733333333335,2.0655733333333335,2.351895,1.7369133333333335,1.02484,1.93705,1.93705,0.8025,2.39724,2.842836666666667,3.585566666666667,2.46236,2.1224,2.1224,2.1224,1.0846133333333334,1.4827,1.4827,2.57695,3.1115666666666666,2.6843003598484847,4.25959,2.5865,3.086873333333333,3.410745,3.77289,8.0117,4.274685,4.44987,3.8038666666666665,13.19452,4.845775,3.67458,0.90115,4.24613,3.108595,2.07945,3.645555,5.424,8.013217333333333,6.05855,0.5245423529411765,4.12025,2.50263,3.883665,2.43731,4.510455,4.890575,4.122285,8.450445,3.350255,3.947055,3.81962,3.412377727272727,8.239546051282051,3.356,2.5918466666666666,3.87344,3.79932,4.92251,3.868145,6.958133999999999,5.2194,1.27309,3.998575,0.877265,5.00345,6.13355,4.09407,5.101,6.11805,3.389195,5.17465,4.406005,8.26837,4.01753,4.882778,3.650933333333333,4.93997,2.9106,0.6860975,0.6860975,3.475175,3.974035,2.13633,2.3064,4.131565,5.7842,4.020835,2.140165,2.6369,3.097235,2.677236666666667,1.18593125,4.262545,4.900155,9.58418,1.7696200000000002,3.69612,3.955935,3.061425,2.7800766666666665,8.13631,4.224345,3.8344666666666662,3.07103,4.107245,3.4356000000000004,3.0194666666666667,3.0151066666666666,3.830295,3.89447,4.36919,4.515115,0.3755806666666667,1.3289566666666668,2.4953933333333334,1.7132025,4.977745,3.867175,2.593106666666667,2.4638175,4.487825,4.01002925,2.3779375,2.562635,0.877086,2.505925,2.683566666666667,2.683566666666667,5.4174,1.9031325,3.19727,2.3087266666666664,2.303036666666667,1.6652633333333335,2.817375,4.39623,4.145225,4.27398,4.97959,4.876295,2.9507,2.366983333333333,1.8958359999999999,4.971385,5.639916666666666,2.2219233333333333,2.9932700000000003,2.363625,2.85612,4.098721666666667,2.809836666666667,4.786725,3.763775,3.389805,4.9342,2.8454533333333334,3.584175,4.13879,2.3431933333333332,2.9242500000000002,0.40208642857142857,3.077593333333333,2.77294,2.86499,5.9991,4.818495,6.1585625,2.0091925,1.66591,2.906085,5.36935,6.16205,5.1286,3.332993333333333,2.233703333333333,4.26548,2.24431,4.699105,2.7302199999999996,2.196395,5.74025,5.4012,5.1677,1.64193,1.8886425,1.024514,1.024514,1.162372,0.8917185714285714,0.780148,1.8410305714285713,4.729565,11.001114166666666,3.89794,4.875665,4.29718,5.7460125,2.722695,1.5782733333333334,3.7819708333333337,2.86997,3.52365,2.8487066666666667,2.6864033333333333,3.120343333333333,3.2709166666666665,2.74642,3.2966333333333337,3.5690666666666666,3.2462999999999997,3.5763,3.4985666666666666,3.0677800000000004,2.929956666666667,3.4501333333333335,2.49304,3.6416,3.30673,2.86144,3.5447333333333333,2.28788,6.030262571428572,3.6496333333333335,4.72086,3.249556666666667,3.4888,3.8493666666666666,2.827503333333333,2.69421,3.07276,3.386566666666667,3.6796333333333333,3.2073199999999997,2.070625,2.74213,2.90124,3.1919,3.1919,3.3006733333333336,3.332183333333333,2.6204233333333335,2.7418666666666667,3.4950666666666668,4.2405333333333335,2.769686666666667,2.891,2.6879833333333334,2.9551866666666666,5.035844166666667,5.1203,1.75295,3.2885899999999997,3.7049333333333334,3.5184060000000006,3.404166666666667,3.958,3.5709,3.0761233333333333,3.327832,2.0627,2.8879449999999998,3.557733333333333,3.490266666666667,2.5895466666666667,2.8508099999999996,4.078533333333334,3.016166666666667,3.081213333333333,2.42511,1.3964400000000001,3.718666666666667,2.75721,2.3715433333333333,2.778425,3.161286666666667,3.3834999999999997,1.974042,5.832245333333334,2.82991,0.968998,4.519845,1.9697141666666669,1.7292333333333334,4.88567,3.888665,3.23746,2.18012,1.6201825,3.3412,3.140535,3.557615,0.433712,2.149895,0.433712,1.851835,1.6201825,2.663005,3.85098,2.84945,3.973415,4.83851,0.602328,2.9396966666666664,0.9322175,0.4751682352941176,4.8888,3.967685,4.82802,2.4713225,5.6844,4.17527,3.770075,3.652105,3.6059666666666668,1.751856,6.31225,3.83781,3.878275,5.39875,2.69103,2.0117966666666667,2.007826666666667,1.4867383333333333,1.966305,1.1034,1.1034,4.307385,2.2894733333333335,5.945998333333334,2.118625,1.777185,2.22339,2.0587985,2.1776,4.53067,4.1730075,1.9954075,2.4241066666666664,2.0587985,3.32552,3.3527085,1.8311625,5.829926666666666,2.118625,3.139845,3.18856,3.16633,5.7442,4.742,1.86517,2.312075,2.23913,3.739445,4.777705,5.55655,2.0759425,4.164755,1.5705200000000001,1.716205,5.5394,11.59527,2.0628466666666667,2.793903333333333,2.2551099999999997,4.906805,4.392195,1.9914375,5.1631,4.294745,3.51257,40.57180723809524,2.9800533333333337,3.3482333333333334,0.51738,5.231645833333333,2.6726500000000004,0.9925066666666668,4.479415,4.172585,2.2833525,1.8436525,2.28659,3.81047,1.3528671428571428,3.092602,4.17901,4.88763,0.9212960000000001,5.2489,4.872005,4.664445,2.819803333333333,1.423115,3.6653075,4.481875,4.229485,3.091485,3.53812,4.00084,12.393805505050505,2.54427,2.986725,4.765325,2.80436,4.545945,4.065825,3.417,3.114435,5.3421,5.33385,5.70535,5.1395,2.380075,3.96117,3.9641,3.524275,4.772595,5.069,0.10122771739130436,2.336625,4.1154,2.651145,1.3114933333333334,0.8281283333333334,0.8281283333333334,1.8821575,2.66653,4.75581,1.243946,2.955963333333333,4.562585,2.61965,4.2661050000000005,0.5869778571428571,4.52701,3.57903,4.661835,4.19692,4.87796,1.2834375,1.163225,3.9489666666666667,2.8752333333333335,3.0059133333333334,4.578612121212122,4.402755,6.460675,5.3323,4.544615,3.33871,2.1634816666666667,1.5168033333333335,5.47245,0.2995,3.21873,3.67768,4.01527,14.921456666666666,2.1049325000000003,3.5271333333333335,0.8307,4.48087,8.100335000000001,3.28859,1.93771,5.86385,3.3640333333333334,1.0399188888888888,3.698895,2.85373,2.82103,4.958,3.326863861111111,1.18835,7.512775,0.71509375,4.9729,3.1035156111111113,1.3515375,2.039263527777778,3.1731550000000004,3.1731550000000004,3.84344,4.214023583333334,1.5243875,2.424675,2.53942,3.562635,2.911815,2.51335,3.053405,3.4187,6.523075333333333,6.37155,3.888595,3.02116,4.998425,4.366305,3.76994,3.482035,3.532455,4.389005,5.4701,2.467843333333333,2.47194,1.4754916666666666,2.281143333333333,2.31984,1.530685,3.5907,3.5551666666666666,3.3482333333333334,3.07878,2.728596666666667,1.5511666666666668,1.5461366666666667,0.4647318181818182,3.2822433333333336,1.3929071428571427,1.5416775,2.794843333333333,2.5179066666666667,2.5596133333333335,1.0209675,2.3984075,2.44651,2.838595,3.46727,5.60365,3.69202,2.834705,2.12414,3.354695,4.24015,2.396045,2.6859,1.956795,3.695025,2.70665,3.75665,1.4788133333333333,0.596471,2.458235,3.233955,3.0396,3.890255,4.6372599999999995,8.599205,3.3451,2.5681866666666666,1.6892233333333333,1.795742,1.795742,2.6344966666666667,2.3906666666666667,5.04025,4.722075,3.79034,5.27525,4.477345,4.414785,3.5905758333333333,4.571645,8.22473,2.5945,0.4853675,2.5889533333333334,1.3244233333333333,1.0047614285714286,1.84443,0.944492,2.1550675,5.0132,5.41765,6.3124675,1.3476225,7.10639,2.13692,1.5290783333333333,2.6571666666666665,4.823305,3.6228,2.55985,3.80872,3.30125,3.935833333333333,3.0089900000000003,2.98572,3.1032566666666668,7.00454,2.552,3.81496,4.045645,4.420374166666667,1.5712266666666668,1.2744725,4.511215,2.8438,3.137286666666667,6.1081,3.564005,2.05849,2.536525,2.998585,3.4286333333333334,2.7326033333333335,4.4620725,2.9511866666666666,5.27545,2.416325,1.82742,5.00505,5.6437,4.800495,4.79408,1.5264499999999999,2.4047025,1.9718525,3.276475,1.5457933333333334,0.8638433333333334,2.6442533333333333,1.9862525,2.0200175,4.12801,0.8562249999999999,6.267569999999999,1.950625,0.7871190909090909,3.7149,4.38092,0.6674957142857142,3.3407855,3.0520668750000004,0.84335,4.683195,0.19117309523809525,0.19117309523809525,0.19117309523809525,0.19117309523809525,0.19117309523809525,0.19117309523809525,1.9533960000000001,3.96383,1.9533960000000001,1.9533960000000001,1.7420200000000001,0.19117309523809525,0.19117309523809525,3.268333333333333,2.9681866666666665,3.570605,3.29509,2.204275,3.42951,1.5538714285714286,1.674088,3.77154,1.70004,3.537433333333333,2.922159333333333,6.32527,4.963215,4.311205,5.2978,4.677785,4.781345,5.07305,4.11657,6.978995833333333,3.7827333333333333,3.7749666666666664,2.6790599999999998,4.910313333333333,2.520286666666667,2.07214,1.9277,4.99042,5.1942,4.716465,5.59955,5.7275,4.527325,4.8019,0.7529536363636363,0.7086257142857143,0.7086257142857143,4.77358,2.317883333333333,3.713145,0.9786742857142857,5.2514,1.524542857142857,2.32265,2.5736999999999997,4.530966666666667,4.530966666666667,6.82955,4.25703,1.6781499999999998,12.900308333333333,3.4596,1.2408777777777777,5.1259,5.4346,3.78601,3.03679,2.63766,4.515066666666667,0.6847733333333333,3.430566666666667,3.5436333333333336,3.6306,3.0736566666666665,1.4693733333333334,1.35487,4.9508725,3.15183,3.0620433333333335,3.4739,5.1669825000000005,3.3174091666666667,0.8126709999999999,2.309953333333333,3.3180633333333334,2.404078333333333,4.025266666666666,3.3798,3.2990100000000004,3.483233333333333,3.4104666666666668,2.4365533333333333,1.1809366666666665,3.0088833333333334,2.66003,3.72888,3.52884,4.57942,2.69607,3.394933333333333,2.6969,1.5048400000000002,1.8277233333333334,2.8844052380952383,3.8363666666666667,1.7742,3.4728333333333334,1.7642666666666666,4.005966666666667,5.083075,5.0548866666666665,2.4663325,2.6608,2.697375,2.52845,1.6499714285714284,2.6348,3.3150642857142856,2.4713975,3.6924333333333332,2.84308,3.7866316666666666,3.87834,1.03044,1.2201475,1.9314075,2.28664,2.95317,3.5582,5.19335,7.3289100000000005,4.43099,4.92493,4.535445,16.191428666666667,0.53045,11.573715,0.9105888888888889,3.17013,2.9622433333333333,1.8218066666666666,2.929295,1.483106,1.45015,2.7471933333333336,1.301942,2.6646853333333334,1.9616066666666667,3.2313433333333332,2.137026666666667,2.7687733333333333,1.4824333333333335,0.7415041666666666,3.4970666666666665,2.5543566666666666,3.2193066666666668,1.0846133333333334,3.714866666666667,0.7349958333333334,0.36527538461538456,3.5623,4.36507,5.2129,5.0519,0.9055827272727274,4.034955,4.67348,1.1545575,2.530725,5.631105833333334,3.14647,3.821675,3.57985,4.02233,1.9773025,3.832265,2.7533833333333333,3.060915,3.44903,2.71158,2.359605,3.702175,3.014375,3.45729,2.656825,3.23358,4.99059,1.3668733333333334,4.7669,2.1892175,4.29696,5.419796666666667,2.064825,2.74257,3.1511766666666667,5.884475,2.4139433333333336,3.327925,5.67955,3.9476999999999998,4.89936,1.64126,2.566625,4.6946,3.3928666666666665,4.816855,3.197096666666667,3.29162,3.1322799999999997,4.033366666666667,3.2678833333333333,2.6427366666666665,2.7944933333333335,0.4417127777777778,2.30831,2.1867975,4.98305,4.800345,3.2776899999999998,2.8859399999999997,3.2814633333333334,9.605075,3.55690375,3.90327,3.0467999999999997,4.18974,3.065115,3.7632666666666665,2.8863533333333335,2.3223325,2.8624033333333334,6.0447,4.58218,2.110133333333333,3.256855,2.7541,2.6283333333333334,4.8063373333333335,1.7025659999999998,6.253046666666666,4.02611,5.20885,4.96039,5.65465,3.590915,6.537766666666666,4.708185,3.677415,0.7042707142857143,2.5657,1.55573,3.08107,3.8208,3.89659,3.89951,6.0236,2.8789700000000003,4.926225,3.4184666666666668,3.7601666666666667,3.2692766666666664,5.1034,4.966645,5.17315,2.8997933333333332,5.7978216666666675,4.356945,1.5373233333333334,5.6037,3.389285,3.746495,2.166525,2.26826,4.995473333333333,1.2767742857142856,2.5997233333333334,1.973465,3.703535,4.525305,2.6136933333333334,3.3363,3.00523,2.9261966666666663,4.176145,1.3252039999999998,2.267396666666667,2.2630266666666667,2.6760433333333338,2.452316666666667,2.54874,2.57004,3.93083,2.92615,2.774573333333333,4.0559,2.348795,3.908725,3.528705,1.6401783333333335,1.6401783333333335,4.622755,3.280253333333333,1.7308125,1.3205075,2.3991225,2.0332825,1.3584260000000001,1.4109966666666667,0.648903,1.6348333333333331,1.4659166666666668,2.8336733333333335,2.2892766666666664,1.66496,1.8750933333333333,2.303053333333333,1.6800266666666666,1.7637033333333332,1.8332300000000001,2.25185,4.771825,2.70078,3.1215499999999996,2.815625,5.7195,2.903875,4.540375,4.0322941666666665,1.911545,4.15625,3.285625,1.90342,3.382415,2.5362,2.925735,3.568515,2.037565,4.4935,3.44518,3.98928,3.515966666666667,0.8661755555555556,3.70371,3.61658,3.267535,3.609805,2.764056666666667,5.19385,4.871585,5.9503675,9.289104166666666,4.215115,4.47489,3.1370533333333337,4.03793,4.54433,2.010255,2.54131,4.804625,2.3309925,5.9523399999999995,1.8272220000000001,2.66169,8.82087,3.243093333333333,4.00099,1.3752728571428572,5.01785,5.0539,3.2582633333333333,4.908045,5.46685,6.4805850000000005,17.16103011904762,0.6102117647058823,1.0849022222222222,3.4681333333333337,3.96277,3.78178,2.1820025,3.272695,4.09536,4.79368,2.85224,4.863855,1.6012033333333333,1.6012033333333333,5.8462,0.7358118181818182,2.05076,2.983545,3.985155,0.36072692307692306,1.87281,4.50139875,1.128975,2.9231266666666667,2.7150866666666666,3.018925,7.63412,2.4763533333333334,3.1109066666666667,1.9629966666666665,2.22276,4.313135,3.86771,3.31771,7.0750595,1.7313375,3.005775,4.38901,6.746392500000001,1.6855,2.29544,2.49394,1.6060999999999999,2.766035,1.8047325,3.976265,3.59557,1.4680075,1.9464086666666667,1.9464086666666667,3.12067,5.59375,3.9391183333333335,3.63437,4.933805,5.1588,3.20764,3.643065,4.00733,3.529735,4.7501066666666665,3.4079525,4.45186,0.89369,0.368365,5.43315,3.837365,2.381,8.6451,1.54814,4.722666666666666,3.942455,0.334335,2.00245,1.24974,1.78102,2.1502,5.465165,3.27346,2.81996,4.5920950000000005,5.0229,4.699555,0.6256446153846155,2.01284,0.589136,5.51122,1.567944,5.02215,2.2442425,3.1840487499999997,3.160945,4.21497,4.44132,4.99434,0.9388454545454544,2.92985,4.12149,2.0495125,1.7767225,3.595275,3.341435,3.55953,3.73721375,5.566685714285715,4.593925,5.6399,2.8928266666666667,1.0704744444444445,3.6753666666666667,3.8782,0.6603307692307693,4.018565,4.23786,3.84376,2.926145,2.7048533333333338,6.1425,3.22065,4.0742,2.27927,3.799815,1.919934,3.75026,3.78765,0.721593076923077,4.467865,3.97103,3.174645,4.11573,4.309565,4.16321,3.90088,0.6861309999999999,3.0468566666666668,4.2202866666666665,4.32833,3.399566666666667,2.388385,3.5170333333333335,2.388385,4.730055,2.99515,3.561,1.6698166666666667,3.1692433333333336,2.288085,4.49591,3.141913333333333,5.455923333333333,3.6183333333333336,3.1751466666666666,3.158986666666667,2.387205535714286,2.387205535714286,2.387205535714286,2.6020733333333332,0.9923933333333333,4.60046,2.30504,1.6139033333333332,3.748466666666667,2.690796666666667,2.969,4.254025,5.5055,4.050035,2.551175,1.735898,3.955725,1.896716,2.8608933333333333,2.70559,3.77203,2.1043675,3.84097,2.59881,1.845552,4.582605,4.140605,3.96783,3.62338,0.7167422222222223,2.41772,5.11005,7.373715000000001,5.4386,2.95316,4.121775,3.45486,3.63848,2.071375,2.40946,4.990315,2.27191,4.625915,4.08919,4.558155,9.212250000000001,4.24234,4.515875,3.52869,5.06725,4.486825,3.8538075000000003,3.8538075000000003,3.81754,3.9352366666666665,4.293635,4.159585,4.203055,4.476995,4.267,1.2056725,4.25013,4.347225,5.54675,8.29744,5.1586,3.826871333333333,1.9912633333333334,1.56735,2.55327375,4.846025,3.921365,4.93941,3.130183333333333,4.825545,5.2253,4.851855,4.947845,3.13795,4.36398,4.768155,5.3747,5.66275,4.396495,7.4201733333333335,4.52095,2.1904233333333334,5.1547,4.65869,4.609465,4.480215,4.88651,0.8169527272727273,5.09675,4.762795,1.2913142857142856,1.6452200000000001,5.0866,5.2762,9.1784665,5.25755,5.186,6.4693,2.79362,2.9182,5.2442,1.526865,1.526865,2.516155,1.5943233333333333,2.904955833333333,3.4703,1.9362725,4.2580100000000005,1.3699700000000001,2.147345,6.5874950000000005,3.1290000000000004,3.42554,2.968585,4.074465,4.41519,3.1539366666666666,1.1525333333333334,3.879005,2.6373599999999997,3.85007,4.120495,3.6948983333333336,5.4992,5.5417,5.2875,4.852855,5.1783,6.5233,4.673725,3.130945,4.58146,1.9773175,1.9773175,3.938945,3.859935,2.3094933333333336,2.7057800000000003,2.444633333333333,3.1605066666666666,1.7320200000000001,1.7320200000000001,4.1967,3.454085,2.078895,3.59212,2.83383,2.00322,1.2652475,1.4404333333333335,2.630175,0.4909573684210526,0.8679355555555556,2.588145,4.449525,0.4556381818181818,4.0347,1.9456980000000001,5.84665,3.42807,7.393152499999999,4.502485,5.3060366666666665,4.791365,5.00215,4.12885,1.81236,1.9000419999999998,4.639725,3.050325,3.754565,1.15189,4.84542,4.68434,2.71837,2.564005,3.001875,4.505815,3.599465,3.538555,3.862155,3.400585,3.197425,3.783975,1.08801,2.142415,2.433975,2.62037,4.19324,7.46357,0.89918,1.5189300000000001,1.5189300000000001,2.1025,3.97371,2.713955,2.95243,5.3976175,2.8884333333333334,1.1601925,1.1601925,1.1601925,2.66587,3.49908,4.449045,3.10482,4.08229,3.35741,3.639785,2.909265,2.9653025,3.660945,3.97377625,2.3987249999999998,1.3584260000000001,3.125655,2.3987249999999998,3.36292,1.40818,1.83579,1.85908,5.465016666666667,2.85132,6.02592,5.465016666666667,3.1746,1.8663716666666668,1.8663716666666668,2.529135,5.66185,1.8663716666666668,2.14749,5.47423,2.19311,2.595665,4.85452,3.59525,4.18598,1.6588833333333335,3.41229,3.9077,1.86182,2.248275,3.63164,1.6588833333333335,2.33792,2.0133,5.86084,2.35705,1.098776,2.558545,3.157145,3.305047666666667,1.940635,2.122531,3.83975,1.9503226666666666,1.85648,3.20785,2.1287,2.95706,3.47256,2.0307999999999997,2.79377,2.23249,6.40174,2.332825,3.289895,3.38254,3.38254,8.498406666666668,1.0571166666666667,2.94391,2.608025,3.2848,2.2674,1.2779533333333333,1.2779533333333333,3.21174,1.9898,6.741339999999999,2.3062,3.70538,3.30962,5.01255,2.503135,2.425355,5.629695,5.629695,2.42138,1.2027625,1.2072875,1.2072875,1.2027625,2.0056499999999997,1.2103033333333333,1.11969,1.5017266666666667,1.87361,3.522845,1.581495,3.37714,3.12051,2.83149,2.651645,2.86507,2.60946,3.125348333333333,3.125348333333333,5.68713,2.44491,2.83204,3.03455,3.01062,2.675135,2.52825,2.465705,5.3167875,1.6518075,1.4453186666666666,1.2268720000000002,2.0714586666666666,5.1288,4.004955333333333,3.4042233333333334,3.03339,1.585105,1.585105,1.585105,5.62815,2.2566,1.11969,3.09744,3.300625,1.2087875,5.1399475,2.977655,6.37904,3.513,1.870375,3.371155,3.0343966666666664,2.063645,3.5097,4.18931,3.60519,1.7789,2.412365,3.089995,3.00674,4.33354,2.079785,3.021425,2.432815,5.59726,4.36726,2.132705,2.16436,5.69356,5.06618,5.21673,5.59794,1.19466,1.19466,2.5242999999999998,2.5242999999999998,0.8086399999999999,4.01848,2.89258,5.0046,4.26783,5.18438,2.20967,4.197635,4.197635,1.99077,3.38765,3.466105,1.1507939999999999,4.81826,3.243205,3.281225,2.50539,4.44768,2.42779,2.25362,3.462455,3.03995,2.90065,4.78807,2.80862,1.71291,3.74117,5.83263,5.57899,4.68321,2.4577,3.24646,2.42446,5.16289,2.659425,3.85862,1.948365,6.33204,4.48117,2.151695,2.87824,2.08272,4.94173,2.244775,2.58686,2.91684,7.1769,4.64153,3.264505,2.05551,2.16652,6.68421,2.64986,3.03591,5.65119,3.083985,2.769395,2.60449,2.92604,1.8513333333333335,1.950085,2.084006666666667,1.6473266666666666,1.95186,1.8979966666666668,1.66802,1.9445866666666667,1.608115,1.8513333333333335,3.73225,4.63946,2.10752,1.71095,1.71095,3.8941766666666666,3.8941766666666666,2.7089933333333334,2.7089933333333334,3.015605,2.051025,1.75956,4.0082,2.1074425,2.1074425,2.2943875,2.2943875,3.19283,1.87498,4.27297,1.9817,3.147755,2.0066333333333333,2.0066333333333333,1.588,3.82745,4.93666,1.40818,4.13726,2.0307999999999997,2.032645,3.76823,3.026665,1.878465,2.46944,6.07609,2.056895,5.55176,3.065405,3.184335,2.93595,2.578405,6.27808,2.99752,2.205375,2.6493084615384617,2.86433,4.86648,3.430655,1.499606,1.499606,4.07293,5.07975,4.73674,4.85386,2.746235,2.729385,1.747805,3.01709,1.636465,2.67967,1.78307,0.809784,0.809784,0.809784,2.1692299999999998,5.35915,2.1692299999999998,2.226735,3.422485,1.580395,2.03042,4.55662,3.76419,4.68659,1.5969233333333335,5.31618,1.5969233333333335,1.5969233333333335,1.977135,1.83929,2.219975,5.7139,2.219975,2.27618,3.86649,2.236075,1.716655,2.74849,2.9999933333333337,3.3566591666666667,3.383766666666667,4.41385,1.4294516666666668,4.89078,0.8144909090909092,5.20835,4.8070525,2.598745,2.598745,0.8477572727272726,3.7889,3.0150433333333333,5.7172,5.1599,4.165415,4.90797,4.54365,4.316375,4.91462,4.69559,4.188685,4.10461,3.910045,4.90521,5.4668,3.426145,3.35142,4.053505,2.6398966666666666,1.667126,4.926415,4.21535,3.82501,1.7061714285714285,3.621915,4.49118,6.2431175,1.1668675,5.1047,4.624475,2.148565,1.83885,3.197025,3.43033,1.59941,1.499606,4.178355,3.974115,2.611655,4.44181,2.930205,1.16073,2.8543533333333335,1.2378071428571429,3.03363,1.9251933333333333,3.3155133333333335,1.8413275,2.63843,4.670575,3.43654,4.600295,3.241065,2.2121575,4.70575,4.22286,2.966455,5.02415,4.37474,2.653993333333333,6.03715,5.0979,3.117496666666667,2.5018566666666664,2.852035,3.1375533333333334,3.1499333333333333,2.8707333333333334,4.81984,4.1997,3.67555,2.46656,2.5662266666666667,2.36671,2.7546199999999996,2.31742,2.3760033333333332,2.3304733333333334,2.33658,1.3805825,2.995451,1.0883,2.005385,1.73629,2.546725,1.52001,2.035745,4.479215,5.3697,1.993775,4.135925,4.86147,6.341628333333333,2.13836,1.55532,6.9274,3.661645,4.706695,4.352945,3.820385,2.055565,3.482365,2.70385,2.99405,4.513165,0.6992266666666667,4.826745,1.929,0.8443190909090909,5.12705,4.320795,3.85055,1.9489871428571428,4.828075,3.76824,2.674723333333333,3.3727,2.442483333333333,2.0643,0.6018749999999999,3.0104100000000003,3.058575,5.2237,2.421565,2.026095,4.091395,1.1960375,1.8679733333333335,1.8679733333333335,2.56821,1.8679733333333335,4.37976,2.69096,5.0395,4.4082,5.8941,13.920818333333333,3.3909333333333334,5.2004,2.632225,4.669795,3.06217,6.6394925,3.3274066666666666,4.515745,4.7905,3.652,1.2488816666666667,4.18618,3.0539633333333334,3.019,1.0243722222222222,2.17166,3.49835,7.51881,4.323305,2.71721,4.376865,3.3286833333333337,4.39619,5.4456,4.837435,2.841535,2.8505233333333333,4.066495,5.73785,2.47294,4.981175,1.85859,1.85859,3.2354,5.0282,1.0535625,4.630043333333333,2.5827,4.44767,2.479766666666667,2.32757,2.7559966666666664,2.2193833333333335,0.4915957142857143,3.16825,2.6353866666666668,4.97737,4.70377,0.2550990625,5.47505,5.04485,4.47276,7.45702,3.5406999999999997,2.8936466666666667,2.1922966666666666,3.275063333333333,3.410433333333333,1.35815,2.9058566666666668,2.87424,1.4286649999999999,3.3227499999999996,3.1873566666666666,2.589096666666667,3.435366666666667,1.48919,4.29677,2.675875,5.0623,4.77378,3.86037,1.91759,2.5369766666666664,1.186935,1.786275,1.186935,4.83073,3.7474333333333334,1.645258,2.531825,3.844775,3.76827,2.92139,3.78155,0.3479615,1.4829012499999998,3.734325,4.164615,4.65283,1.6939175,2.8596299999999997,3.2097700000000002,2.67615,3.11612,2.97702,4.540565,2.40073,2.25536,2.8958266666666668,2.6755333333333335,2.764086666666667,4.46684,2.044875,3.98456,3.6179208333333333,6.0976,7.81377,0.7984711111111111,0.8196490000000001,3.96366,6.444605,1.7443460000000002,3.401745,1.4597283333333335,1.4597283333333335,3.42188,0.4446822222222222,3.884945,4.38927,2.68411,4.55614,3.18224,2.91495,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,2.16577,3.310695,4.090233333333334,2.908583333333333,4.1461524999999995,6.0227570833333335,3.01647,2.1837266666666664,0.8679683333333333,3.36998,0.71543875,5.202824166666667,3.0190975,2.64427,0.71543875,2.582495,2.72707,0.8545875,3.8159537500000003,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,4.5223,1.92526,4.545305,5.11155,2.04462,4.890365,4.52063,5.35425,5.380128333333333,3.7499571428571423,3.24399,4.79523,2.418095,5.863385,3.894215,0.7564642857142857,1.3141257142857143,1.331167142857143,3.842333333333333,3.842333333333333,3.1492733333333334,3.98657,4.908745,4.040565,4.684855,3.2026066666666666,1.9895766666666665,0.5144228571428572,4.06142,3.37418,2.849675,4.169305,3.181515,3.08004,4.57749,4.499035,6.783125,4.29722,4.73076,5.6793,4.344955,1.3847871428571428,3.160545,5.1502740000000005,35.34850252489177,1.3303666666666667,4.521035,3.96218,4.661165,4.14664,4.637525,5.25795,0.41537142857142856,4.956505,4.32772,2.1807975,1.916195,4.18575,1.5744425,2.428135,2.29463,1.7368225,2.80305,2.4231366666666667,2.83063,4.026505,0.6233415384615385,3.58874,3.686805,0.40944947368421053,2.5655766666666664,3.00014,2.57881,3.730395,1.766185,4.76479,3.85073,3.081265,4.61861,3.16953,4.52181,2.843155,3.78026,2.34254,5.1502740000000005,4.001615,4.517995,3.163635,1.763652,4.44872,3.407735,7.177496666666666,3.24299,4.672915,6.428817499999999,5.1493020000000005,2.25115,4.79551,6.660187499999999,7.743676,2.5744266666666666,2.6223,4.991245,5.447150000000001,4.13478,3.28791,5.5600266666666665,2.1925025,2.0823875,2.1715425,60.57875827362524,5.4922,4.339145,2.60305,1.1328799999999999,3.0733366666666666,2.934286666666667,3.404666666666667,0.9333422222222223,4.358575,0.8040477777777778,7.677537142857142,1.896716,3.3708666666666667,1.8430579999999999,2.547585,2.44291,2.5634,2.39035,2.2446733333333335,3.07892,1.5348566666666665,5.167397500000001,3.8670000000000004,1.3003975,2.2525,1.3286833333333334,1.428575,7.51858,5.6126,3.238725,5.4153,5.13207,1.5499857142857143,3.5965000000000003,4.169165,1.6158175,5.09395,4.21135,3.91132,2.02435,3.005864166666667,3.6905,3.9242,5.5823,4.16448,4.52181,2.42206,3.76171,4.479166666666667,3.5340000000000003,1.635446,4.63084,3.3432666666666666,4.110835,4.98473,3.966305,3.72274,4.991115,4.39961,4.35761,4.790135,4.49632,3.375,3.73129,4.475635,3.064175,3.784355,3.70119,1.6593925,1.6593925,4.756475,4.859655,5.5041,4.365745,4.775845,3.6389333333333336,2.845235,4.888595,4.97811,0.7307109090909091,5.3038,8.298675,5.39275,5.91885,1.160911111111111,3.29701,0.924405,0.924405,0.924405,3.73335,3.4186,2.8445666666666667,3.4027666666666665,0.9928140000000001,4.96803,5.24115,2.78181,1.6844825,2.2052875,4.374895,4.249125,3.62013,2.9614579999999995,6.739,4.533605,2.6146766666666665,4.82202,6.8136,2.538165,4.15144,3.745955,3.13003,4.805905,4.94935,4.378235,5.92645,3.626555,3.4936822222222217,1.9462833333333334,1.9462833333333334,0.7144027272727272,8.418432,2.054705,6.33195,5.3922,4.879775,4.355875,3.695705,3.2496549999999997,4.618545,7.7697287500000005,5.666333333333333,1.9169966666666667,4.426185,1.03741,3.74953,2.05641,0.9464688888888888,1.2323085714285715,2.7411499999999998,3.1445900000000004,2.8536300000000003,1.365187142857143,2.9238999999999997,3.0515066666666666,0.9408244444444445,3.10576,3.2235533333333333,1.622268,1.7482140000000002,3.0137133333333335,3.324006666666667,3.031473333333333,2.8887699999999996,1.766694,4.934915,4.76325,3.873695,4.37597,5.28105,3.166575,4.959345,5.826,5.2445,4.245865,4.01134,11.579268333333333,8.13077,2.9277233333333332,3.508325,2.4997433333333334,3.840655,3.07193,4.436085,1.2013483333333335,4.38808,3.460085,1.248925,3.505025,2.85629,4.141255,3.62552,3.766615,6.86595,7.2872916666666665,4.3219,1.6598716666666666,1.6598716666666666,1.6598716666666666,4.791285,1.14667,1.394675,0.4929011111111111,4.603905833333333,3.0289099999999998,4.993145,1.02963,1.16662,3.414085,4.454995,3.619805,17.193016214285716,4.3966275,4.474,6.2704075,2.742406666666667,3.772625,3.9431,1.0533122222222222,1.717945,4.798435,3.894075,4.587135,4.43899,4.78192,3.8764,2.743380444444444,3.41929,5.4505,0.60414,4.98934,2.505975,4.30227,5.73085,3.715733333333333,2.2639366666666665,3.81344,1.6954133333333334,4.437345,6.0,3.0762866666666664,2.547265,4.623365,4.64947,4.43436,4.130845,3.63909,4.543715,4.84367,4.91021,4.68774,5.0953,3.84227,1.1847457142857143,1.813915,6.863572333333333,5.26785,4.47014,4.97462,2.51365,2.784386666666667,2.7224633333333332,5.460406666666667,1.8505325,2.08137,3.057783333333333,3.443433333333333,3.4388666666666663,4.520175,3.86268,5.371485,1.39859,4.52189,0.9400633333333334,3.95165,3.39443,1.62114,4.77117,1.02396,4.8077,5.2967,5.5433,4.64089,3.8778525000000004,3.882125,2.96731,5.3389,4.964955,3.1976325,3.884115,2.34724,2.59537,1.99959,2.64795,3.734035,5.06895,1.08793375,4.54419,1.438675,3.39661,1.5688833333333332,1.08793375,0.22371972972972973,4.308365,2.997195,2.2983229166666668,1.76865,2.804265,1.0648,3.636755,3.32678,4.650775,2.4773866666666664,6.4736,7.63675,2.846576666666667,3.395433333333333,2.7184000000000004,0.8868550000000001,2.3050466666666667,6.14675,4.36902,5.0716,5.0993,2.33507,1.4090166666666668,3.8502324999999997,1.6183575,2.363195,1.7203,1.7360475,1.7418,1.870165,2.237155,2.157815,2.2555925,1.2812242857142857,1.4779475,1.846185,2.511875,2.084375,2.2129,0.5207773333333333,1.88726,3.1425866666666664,3.1496366666666664,1.779605,2.2569833333333333,1.643425,4.456055,2.179206666666667,2.683525,2.890585,4.370415,5.05,2.55843,4.623525,1.7014396323529413,4.7451225,25.212914,4.802626666666667,4.5087,4.77868,2.76339,3.857525,4.879665,3.129895,4.4948,3.1655366666666667,0.739295,3.92925,4.988425,4.51504,4.027815,1.61609,2.0241933333333333,2.3484166666666666,2.010305,1.2612728571428573,3.27138,5.59405,4.128445,3.14774,4.10766,5.15785,4.329355,5.74025,1.405925,3.848925,4.25379,4.55099,1.565076,2.57746,1.9260125,1.9260125,3.440755,5.03215,2.743123333333333,3.2814433333333333,4.3854,3.74207,6.56214,4.188085,2.20017,1.717945,3.14762,4.294195,3.1710166666666666,2.3225673015873016,2.3225673015873016,3.3663333333333334,4.589405,4.19056,5.534767777777778,2.3044,3.366646444444444,0.5921244444444445,0.5921244444444445,0.5921244444444445,3.48249,3.73512,4.253073333333333,5.11215,1.978685,5.69915,5.06215,4.60041,4.04694,5.0566,2.50324,1.5299142857142858,4.61287,4.99752,0.4500935714285714,4.220899999999999,4.75047,1.6632066666666667,5.73635,5.2506,4.50846,4.503955,3.787575,2.893785,4.792315,1.662114,4.291315,1.612025,3.597375,6.14695,1.1402575,2.99362,7.08784,4.362985,4.052266666666667,2.422995,4.38819,5.6124,3.5162333333333335,7.113471666666667,4.23988,2.119333333333333,3.0793133333333333,2.7383900000000003,2.858216666666667,3.1754433333333334,1.7141133333333334,5.08135,0.7031466666666667,1.968485,1.968485,3.235725,4.78712,2.2879075,3.170125,4.754165,4.66909,4.804255,1.31643,5.447722357142856,4.801375,5.4032,4.33727,4.365333333333334,3.953626,0.4117073333333333,2.4390645714285717,1.05434,0.4117073333333333,4.17163,0.8356777777777777,4.32521,4.3267,6.801172,2.17642,1.0249875,1.096574,2.20605,3.1305866666666664,1.5010166666666667,2.3562499999999997,3.310155,3.31177,2.006893333333333,2.34563,4.689355,3.6273174999999998,3.923125,5.84695,3.46728,4.863055,7.127888333333333,4.06162,3.435875,4.393095,3.61546,4.96312,5.01575,6.5699024999999995,5.3905,2.68431,1.0039666666666667,4.439505,3.905065,3.963445,5.0773,4.27957,4.606205,2.967,2.66897,3.2269133333333335,2.637443333333333,2.6598266666666666,3.341666666666667,3.29808,2.8375500000000002,4.651615,4.23125,4.53872,5.79935,2.97791,3.4073666666666664,2.921125,0.7407857142857143,4.481405,4.20511,4.995915,3.4555000000000002,6.120353333333333,3.552825,4.490305,4.09857,0.6193661538461538,0.5501614285714286,4.324185,3.3141875,3.72151,5.0785,4.673645,1.768686,5.0953,4.590655,3.1381200000000002,2.7408933333333336,2.2343425,2.10229625,3.5238333333333336,3.5328,3.4136333333333333,3.4666,3.4948333333333337,2.79705,3.5962333333333336,3.8998666666666666,4.481845,0.573334375,0.573334375,0.573334375,3.2424900416666667,3.930066666666667,3.645566666666667,2.857673333333333,2.8545700000000003,1.2056725,2.81831,3.323816666666667,2.1479725,2.65573,2.5477266666666667,0.9995988888888889,3.097898333333333,4.76429,9.428029583333332,1.4877223333333331,0.508671,3.538815,0.508671,0.508671,0.508671,0.508671,2.1442125,4.132158,3.80579,5.2475,6.10645,2.84633,3.0030099999999997,3.102705,3.4714600000000004,5.63325,1.302885,2.486476666666667,3.2965666666666666,2.9058100000000002,3.3391,3.953285,2.227116666666667,4.02325,1.2366666666666668,4.648385,4.725555,4.40226,0.8795875,0.6109910000000001,0.6109910000000001,1.0283147826086956,1.9079022826086955,1.0283147826086956,1.0283147826086956,0.4097447826086956,0.4097447826086956,1.0283147826086956,1.42221,2.5041166666666665,2.8715,3.1695666666666664,2.5392766666666664,2.5957433333333335,3.0987500000000003,2.6534,4.416945,3.47304,1.855825,2.2088533333333333,1.67314,0.17468838733431516,0.17468838733431516,0.17468838733431516,0.17468838733431516,2.42358,2.678623333333333,0.9222060000000001,5.1812,0.8037563636363636,1.7210360000000002,4.787654166666666,4.98994,4.44608,2.743825,4.368945,4.54097,1.9681933333333335,1.217545,3.60829,4.724465,5.83135,2.302305,1.37963,1.81208,3.7977333333333334,1.4321333333333335,2.8678033333333333,2.991796666666667,2.918556666666667,5.55215,4.36693,3.07495,4.85623,2.61717,4.60236,5.5031,4.56269,4.93253,5.1743,5.248373333333333,5.090414999999999,3.1676854285714287,4.846443333333333,4.594735,5.62785,4.502165,4.890075,2.1878475,3.06516,4.393405,5.2711,4.212175,3.972915,3.219625,3.811545,3.838525,2.4174433333333334,5.3317,3.537005,7.61142,5.93135,5.96155,5.01285,1.4965857142857144,1.01708,0.6573569230769232,1.8152439999999999,4.661855,4.9723,4.056435,1.635306,4.43852,2.957155,4.847115,5.488,6.159059,4.05009,2.98481,1.790786,5.3438675,3.862625,3.439955,1.8847125,1.10503,3.67924,3.27721,3.6893775,3.45768,2.073045,4.739575,1.6727666666666667,2.90305,2.34335,4.056355,3.56716,4.918475,2.198545,1.51303,5.48405,2.99096,9.06945,2.85995,4.574545,5.77165,4.67211,4.668745,3.655215,5.15165,2.4268825,4.162475,5.271905,2.533925,4.62254,4.829155,7.359475,5.2462,3.6085999999999996,4.340665,3.68263,3.6273174999999998,3.469945,5.4118,5.50035,2.4715725,3.2811566666666665,3.4811666666666667,2.283885,3.69689,4.594635,5.95215,5.3098,4.799205,5.22735,4.616425,5.84325,0.6138107692307693,3.351433333333333,1.30532,31.585862093706865,2.311805,4.5814,3.01142,4.56336,1.7336200000000002,2.3791866666666666,3.447652023809524,1.565119523809524,1.565119523809524,1.565119523809524,1.565119523809524,1.8825325,3.45622,0.40811555555555556,7.598309722222223,0.40811555555555556,5.06105,5.0888,2.235705,5.217,2.57995,3.8464213333333337,2.54654,2.4895133333333335,2.6359566666666665,2.1296066666666666,0.6247676923076924,2.56755,0.7390091666666666,3.1220866666666667,2.1526666666666667,2.268176,1.1936183333333334,2.268176,6.3562,7.878585,5.2275,4.52229,5.4704,5.9845,7.713986666666667,3.136725,1.7319575,1.7319575,2.3628766666666667,5.08155,3.630135,4.600775,6.3587,4.420935,2.862385,4.219595,3.419785,3.35756,2.188065,1.140188,2.0143,5.42205,3.87371,5.223962222222221,1.8798875,4.77845,1.7315,3.051735,1.411394,3.17876,3.5969333333333338,2.6584766666666666,3.1610566666666666,3.5079,5.56175,0.7071846153846154,3.42668,3.676066666666667,2.7749733333333335,2.304316666666667,4.181249375,3.305873333333333,2.662786666666667,5.38036,3.83856,5.1611,4.06973,3.615725,5.4161,5.05505,2.0784366666666667,6.2615,2.359182333333333,1.9939433333333334,3.2483566666666666,2.9242399999999997,3.4446999999999997,2.808475,1.8968866666666668,3.116642090909091,4.742545,3.3867450000000003,2.394160666666667,2.394160666666667,2.37541,3.79703,3.978695,0.5922372727272728,3.13261,2.989855,8.33238,0.9029945454545455,4.564565,4.254265,5.5235,3.69335,4.267345,2.244285,4.00963,2.786345,6.51095,2.7248550000000002,4.06978,2.5991666666666666,4.481515,2.9500499999999996,3.58828,3.56641,4.168555,5.037602,3.16275,1.982415,5.4278,2.39989,4.633245,4.84483,4.73239,4.40889,4.03945,2.95864,2.1640133333333336,2.95257,2.7327666666666666,2.93295,3.4337,2.8875314285714286,5.225786666666666,3.0499733333333334,2.700003333333333,7.191698333333333,5.614074166666667,4.0544150000000005,3.180623333333333,3.8377666666666665,4.011965,3.47675,2.5071,4.46859,5.28835,4.463895,1.5798433333333335,4.8506,2.8343900000000004,6.838430000000001,5.0093,9.366803333333333,4.0755,3.22131,2.4771,4.024955,5.61116,7.73992,3.34427,5.7561,3.963535,3.17467,3.80357,1.7025659999999998,4.654538,1.4972583333333331,4.007185,4.476305,3.440633333333333,0.869675,9.589083333333333,1.2623444444444445,1.87529,2.3895666666666666,1.85239,3.4934666666666665,1.3070416666666667,3.648795,3.25181,2.8681533333333333,4.343365,1.0420175,4.17701,1.3101450000000001,2.6888075,4.4637,4.974065,2.0456125,5.253119166666666,2.165868333333333,8.13864,4.367065,2.7622,3.964155,3.088095,1.2707854166666666,7.65774,2.8883,3.13144,2.222515,4.09614,2.246715,3.544705,2.07762,3.925965,1.231985,5.56855,4.06805,4.098455,0.8781209999999999,2.015797,3.76011,5.451,5.257795,1.25238,1.25238,6.0229,5.19775,4.34013,3.823985,3.312625,8.469945,4.70311,5.7725,4.01327,2.4608675,2.143309038658474,0.36675749999999996,0.19288193548387095,0.6606274910394265,1.1159240476190477,0.6588676497695852,0.19288193548387095,1.21387,0.4677455555555556,1.4826815476190476,1.8744974910394265,2.093115,2.2170925,2.1881633333333332,5.4206,7.4405833333333335,5.5891,5.67305,4.80717,5.39285,1.1936466666666667,5.3809,4.45208,6.2887,6.259,5.6167,5.9285,5.7671,6.0329,1.5393633333333332,1.6391142857142857,2.178,6.511159,1.535984,5.4672,4.890695,7.441886666666667,5.33475,5.72855,4.686935,4.951105,2.90105,5.85325,5.6062,4.401231666666667,5.23965,6.067354999999999,6.2133,4.0238,4.278835,3.8876333333333335,1.01612,3.7419,4.80252,1.3718375,3.8182333333333336,4.97517,4.636654999999999,5.86585,2.52565,3.23428,2.48708,4.80333,2.297185,3.731725,1.2875283333333334,3.215805,3.76221,4.65908,5.3094,3.5423875,0.6561566666666666,6.1499,1.08235375,3.92267,3.3732333333333333,3.589785,2.11843,3.74081,3.681251025641026,3.8719333333333332,4.29795,15.744065547619048,5.3286766666666665,2.3089025,8.39879,1.5864875,3.80354,2.892526666666667,2.875496666666667,2.150986666666667,0.24085478260869564,3.016016666666667,5.1817,1.82415,2.3069933333333332,3.6656,1.828935,2.2581533333333335,1.5299571428571428,3.760155,5.11055,4.257495,4.86264,0.4872014285714286,2.32936,4.608035,2.72247,5.0149,5.0389,4.2002,4.38721,0.5503994117647059,2.49946,2.49946,5.5022,4.3948,4.7593,2.75325,3.8516999999999997,3.120096666666667,5.3662,3.33345,5.7148344444444446,5.0136,4.552485,5.40725,2.633925,2.19134,4.353425,4.464515,3.893395,3.66161,1.8153580000000002,4.417785,4.28096,3.685295,4.910005,3.797395,4.561815,0.6389846666666668,3.42037,0.7083158333333334,3.1120033333333335,3.15901,4.765125,19.033694761904762,3.747735,3.80636,3.0343966666666664,1.19536,2.8249033333333333,2.4027866666666666,1.474512,2.50449,2.50022,5.19795,2.195186666666667,4.15903,5.34725,2.256965,4.69127,2.9489866666666664,4.66749,5.38865,5.48255,1.67456,1.798405,2.47966,5.3279,5.17275,1.2002111111111111,5.5458,3.998535,5.60445,5.20895,1.6205100000000001,4.695745,3.92721,3.784825,4.930875,5.3031,3.15343,0.816965,8.003876666666667,1.524424,0.19303055555555554,0.19303055555555554,0.19303055555555554,5.19745,4.331975,2.666043333333333,4.30443,2.994665,4.673985,4.194675714285714,4.215206666666667,8.6638,4.22461,7.740446666666667,0.815155,0.86366875,2.65595,5.20095,4.61502,2.08831,5.4544,5.60465,3.392,3.486055,4.68859,2.35307,4.41505,4.79886,2.4103566666666665,2.8372833333333336,2.8981833333333333,2.8197,5.931,3.70767,0.6924078571428571,4.31511,3.35566,4.296385,4.83389,4.96971,5.03535,5.33495,3.467225,13.748698333333333,4.781945,6.893999833333333,2.9215166666666668,6.670350000000001,4.820515,4.178995,2.3352175,2.3420620833333334,9.51396,2.20941,4.178233333333334,3.8533000000000004,3.7119666666666666,2.5596866666666664,2.846156666666667,2.134195,2.071365,2.9387233333333334,1.903968,3.8861333333333334,2.79659,2.47959,3.121256666666667,3.727266666666667,2.39788,2.39788,2.698446666666667,3.5355000000000003,3.4883333333333333,2.8868766666666663,3.01714,3.8238333333333334,2.7533966666666667,2.6601933333333334,3.7289999999999996,2.72754,2.27576,3.7649000000000004,2.9948033333333335,1.731878,4.094266666666667,2.672363333333333,2.4070133333333334,2.7593033333333334,2.4756299999999998,3.4020333333333332,5.739775,2.3993733333333336,2.9014966666666666,1.86012,10.915617999999998,2.6386566666666664,1.75392,2.1271,1.134311111111111,1.646508,4.933216666666667,2.761282,2.761282,1.677282,1.5399450000000001,3.406811666666666,4.04029,2.11829,1.5432533333333334,1.656996,4.419306000000001,3.334433333333333,4.127133333333333,8.397283333333332,2.8643457142857147,2.50369,3.2740904968944102,4.329266666666666,2.27576,3.7327666666666666,3.3095866666666667,3.3491666666666666,3.454575,0.913465,3.3054900000000003,3.0376366666666663,2.785356666666667,4.38996,3.2165466666666664,0.6653809090909091,1.8673719047619048,4.590495,2.6244075000000002,3.27326,1.7678833333333335,1.7678833333333335,2.07664,3.7250533333333333,1.12565,2.359115,4.7702599999999995,4.7702599999999995,0.6411142857142857,6.886284999999999,3.63025,4.37888,5.42525,1.2198057142857142,3.6716333333333337,3.5902,5.383406666666667,6.601423,2.92153,0.7584,2.7521799999999996,2.606376666666667,3.048558666666666,2.7105366666666666,2.7396,3.064016666666667,2.50095,2.377473333333333,0.855160909090909,3.447715,4.419230571428571,1.320765,1.4696285714285715,5.21015,2.30233,1.4777,4.6133,2.0401599999999998,3.71536,2.5898,3.8265999999999996,8.781945,4.360110833333334,4.59261,5.2356,2.401916,0.690458,1.795792,7.24199,1.74789,4.062665,4.136055,3.674765,21.221649583333335,3.1407399999999996,1.3570200000000001,1.18125875,3.199426666666667,1.4480000000000002,4.00099,5.4771,3.5217475,3.261153333333333,1.3537566666666667,1.51241,3.19586,0.592843125,3.3319266666666665,3.6689666666666665,3.0813966666666666,2.6271413333333333,2.50467,2.95571,2.111666666666667,3.18617,1.707684,3.523433333333333,1.57081,3.706935,4.138345,2.3744666666666667,4.795905,3.23099,4.07416,5.32135,4.794425,3.1292733333333334,2.8502766666666663,2.8388233333333335,1.1558499999999998,1.1558499999999998,1.1558499999999998,2.1211775,3.139343333333333,2.572293333333333,2.51064,2.8535799999999996,2.036045,4.353235,3.99215,3.58578,6.44439,3.47065,2.2641775,1.87057,1.0852783333333333,2.4390133333333335,3.8918,2.49409,2.61836,2.3273966666666666,2.53035,2.52935,2.8292800000000002,2.93373,2.7489266666666663,2.54249,3.000526666666667,2.37242,2.1231025,2.0388475,1.5315175,3.01531,3.126853333333333,1.9667575,3.81884,5.39365,2.9711533333333335,2.6496894230769232,5.810563333333333,4.672875,4.909795,5.63075,4.982025,4.10882,6.7964925,1.27765,4.493015,2.67353,5.4622,5.59715,3.76034,4.495625,2.369365,7.411745,2.59287,0.8350583333333333,8.1669,5.19144,6.325474285714286,4.72152,2.9917205,1.8165175,5.42675,4.96377,4.650825,5.11895,2.407085,4.566715,5.3319,1.67314,4.23737,2.7482,1.3534633333333332,4.83548,0.6411235294117648,4.535875,3.96991,4.607615,3.65184,1.60417,3.85904,2.106365,1.2977125,3.1844099999999997,3.6595999999999997,3.260346666666667,7.125461666666666,1.83604,6.905652083333333,10.79945,5.8497900000000005,3.572715,1.3915514285714286,2.9549266666666667,1.3915514285714286,2.7817066666666665,2.135873333333333,0.3269964705882353,1.1908889705882353,0.3269964705882353,0.3269964705882353,0.3269964705882353,1.1908889705882353,1.1908889705882353,0.3269964705882353,0.8638925,5.7225,3.287815,3.185225,3.11788,3.83311,3.141995,3.211778,1.59063,6.997958333333333,2.70814,4.146595,2.6458833333333334,1.066718181818182,1.2329775,4.643305,3.724635,1.1696444444444445,1.6644400000000001,0.7395672727272727,3.151289945887446,4.245955,5.50435,3.6297333333333337,5.811074166666666,0.6220861538461538,4.323815,3.53445125,3.10741,2.6677066666666662,3.5351666666666666,2.5740633333333336,3.0945199999999997,2.5981533333333333,2.95097,3.50773,5.95655,5.1737,1.822988,4.689885,4.419785,3.13563,3.719175,3.3017,0.34137866666666666,5.2054,3.617945,3.242055,3.07668,4.654165,3.892285,1.88849,3.332695,3.779535,8.59608,4.689635,5.59525,4.2676,3.7302424999999997,0.7760925,2.065875,2.080725,1.287135,1.7420200000000001,5.0557,5.56435,4.394705,4.571415,2.9614579999999995,2.66509,0.9091933333333334,4.15674,1.250615,1.134015,3.122455,3.660645,4.57839,1.270025,2.47602,8.763316666666666,3.04362,2.93792,0.83145,4.056995,12.338746666666665,3.360805,4.244505,3.16365,3.10926,4.604005,5.07225,2.03878,4.827355,0.6208861538461539,4.88258,2.2446725,1.9131275,1.9131275,3.465066666666667,4.67827,1.7411666666666665,5.06655,1.6706142857142858,4.58226,2.806750833333333,2.9639666666666664,4.72123,3.411655,3.882187,2.67285,2.7269945,2.7269945,11.79942,0.741528,3.32235,3.7549333333333332,2.1223375,2.061815,0.9075771428571429,1.3858275,1.2104585714285714,2.031625,4.759315,2.46762,4.46355,2.0729833333333336,4.82658,4.32018,1.6234283333333333,2.03885,1.0264433333333334,5.6378775,2.041855,2.135225,1.751856,1.8420320000000001,1.18125875,2.5584687500000003,3.52474,2.75239,3.1224833333333333,2.397553333333333,2.76688,1.7741633333333333,3.0237700000000003,2.6145866666666664,1.3351533333333334,1.8995866666666668,3.05495,3.3813999999999997,2.458743333333333,1.1421933333333334,2.5441366666666667,2.290763333333333,3.0880533333333333,0.3876531578947368,0.39054583333333337,2.2308133333333333,2.2131333333333334,3.331715,3.0696200000000005,2.64457,4.968665,5.85595,4.46295,4.903395,4.42731,4.08023,2.6418933333333334,3.805675,0.6514554545454545,0.06741068181818183,5.7157,0.06741068181818183,3.56862,3.311995,5.21405,3.300945,5.98615,4.977785,2.4505,2.6118566666666667,1.3921566666666667,5.86395,5.80225,2.92932,5.07775,2.0160825,4.20367,2.3171822826086954,3.10924,3.3625666666666665,4.127185,4.507559166666667,3.27325,2.24883,2.24883,3.905945,7.47923,3.979095,2.148773333333333,2.6154633333333335,4.190465,2.67885,5.49545,4.04679,1.1791777777777779,4.61051,3.1079866666666667,3.004253333333333,4.151655,1.0983733333333332,2.31657,3.888955,3.792415,5.4113,2.82753,2.868435,3.80792,3.865995,4.355545,5.4645,4.09199,3.4222272222222223,3.716615,2.9780766666666665,2.96792,2.8195866666666665,3.6728,4.589635,3.0422766666666665,5.131902500000001,4.478185,3.50293,4.410785,4.843535,3.680705,1.466762,1.269805,4.03237,3.6401,1.5720866666666666,2.772766666666667,3.24139,3.2330433333333333,3.9529766666666672,3.0195933333333334,2.2573499999999997,13.183424666666665,2.0979366666666666,1.895122,4.95337,1.1170360000000001,3.27979,4.699595,5.05955,3.334125,1.0209566666666667,2.2447166666666667,2.4773866666666664,1.406304,5.8847,0.91799,0.91799,3.940123333333333,2.2038066666666665,1.7363166666666665,1.70167,3.46809,3.8483,2.071005,2.724625,4.190155,3.2359566666666666,3.180626666666667,2.07178,6.2921,5.216,4.207235,0.6906738461538461,3.71775,3.90295,0.9641363636363636,4.867675,3.4904333333333333,8.841883333333334,4.755755,4.83993,3.54657,1.6051725,2.85813,5.05555,5.0876,4.355425,3.86315,4.29802,3.03913,3.6108,3.6108,4.52688,2.8619316666666665,4.606265,1.78493,5.7167087500000004,5.721181666666666,1.6632066666666667,5.0264,1.03705,5.17405,3.72898,4.98887,4.68431,3.894595,2.57295,2.770675,5.02065,4.65486,4.876425,4.98493,2.05068,1.3665120000000002,4.384385,2.0063733333333333,5.7062,3.03079,3.5031,7.39206,3.77799,4.56252,5.13345,4.573215,4.541385,8.16324,3.50212,3.1812,9.621514999999999,3.746155,0.636425,2.1552619230769228,5.1325,0.643836,5.0057,4.207885,5.20265,4.762655,3.239495,3.613815,4.777635,4.820065,2.392995,0.7307071428571429,5.0027,4.57349,4.34356,4.475535,2.8089133333333334,4.7037,3.37248,0.639808,3.734715,4.104025,2.449705,2.89667,4.23961,2.341326666666667,5.45805,4.83557,4.265969999999999,3.3920666666666666,5.900318333333333,5.900318333333333,8.911249999999999,2.0896,0.83762875,0.83762875,25.594253333333334,2.580775,8.001455,0.334335,1.24974,3.2394833333333337,0.8162520000000001,3.63643,3.83648,2.359615,2.359615,4.87781,5.09105,3.43025,2.4783,2.4783,3.49228,3.69744,4.119575,3.08544,2.0368,2.4649216666666667,4.158339,1.93069,3.555695,2.96321,3.0175425000000002,3.0175425000000002,3.539266666666667,0.9498355555555555,2.5648966666666664,1.59134,3.4186666666666667,2.96151,3.07065,3.1336866666666663,4.882285,2.32825,3.2754600000000003,5.746096,1.4356659999999999,2.13546,2.995405,2.3863866666666667,4.121805,5.748323666666667,1.31207,3.8530333333333338,2.52755,4.80777,6.47612,1.5985975,4.6151566666666675,5.082518,3.291428,4.551566666666667,1.1063185714285715,1.565076,3.07153,3.649228095238095,1.5344666666666666,2.22409,1.612035,1.6214400000000002,2.00502,3.4726000000000004,5.1570825000000005,1.01979,1.5459142857142858,2.86144,12.718155,4.68488,2.7939599999999998,1.2199799999999998,2.8703780952380953,1.0455614285714285,3.249556666666667,4.399816666666666,5.1543,3.3343333333333334,5.545,1.366545,3.8493666666666666,4.00319,2.827503333333333,3.6764533333333334,2.898566666666667,0.9822433333333334,2.591673333333333,2.47761,6.250601666666667,3.467923428571429,2.7030266666666667,0.709649,4.722666666666666,3.491566666666667,1.46117,5.858485,2.119185,2.5712766666666664,5.93665,1.3129777777777778,3.06211,0.9881181818181819,3.1548866666666666,4.60352,3.17031,3.1228366666666667,2.1384066666666666,2.5529699999999997,4.9554,4.77407,5.1454,1.683165,4.44204,4.115565,4.184326666666667,3.5184060000000006,2.2033666666666667,4.338229333333333,0.938796,3.005394285714286,5.2627,2.728725,4.16627375,1.5193375,3.0761233333333333,1.9142219999999999,1.9142219999999999,7.48085,3.2940466666666666,5.196889166666667,3.4904116666666667,1.8151433333333333,2.834674761904762,4.7591383333333335,5.761,8.41405,5.052737333333333,2.954917,2.11953,2.1897260000000003,4.0587333333333335,3.743275,1.464704,2.1720725,2.8201660714285715,1.3034225,3.3834999999999997,19.701535999999997,3.6992333333333334,2.8939333333333335,3.1975933333333333,3.0812066666666666,2.7533366666666663,1.9136233333333335,3.103736666666667,3.4310333333333336,2.902013333333333,2.565253333333333,5.832245333333334,2.82991,4.088622285714285,2.521432285714286,2.0991962857142856,1.5252166666666669,4.103457777777778,2.2773025,4.26858,4.872695,3.984635,2.927015,3.0783666666666663,2.37406,3.5421333333333336,2.5534233333333334,3.8334333333333332,3.3545,0.86016,4.98155,2.43827,3.547833333333333,2.9545905555555554,2.10837,2.3581175,2.3581175,3.8369758333333337,2.2378258333333334,4.88897,4.52739,4.328865,4.71206,4.797285,4.8038799999999995,4.8038799999999995,4.179085,3.093996666666667,4.71089,2.726515,1.604882,3.5869666666666666,4.56949,4.250045,2.6913,3.88683,5.796397499999999,3.9872666666666667,6.690796702380952,3.096665,0.865442,0.865442,3.34167,4.2305,3.7736,3.327832,2.311033333333333,1.8650833333333334,1.7237933333333333,3.244453333333333,6.477542,1.5149683333333333,4.3665,3.5615,3.86576,5.31485,5.3412,4.837880520833333,3.2892033333333335,2.424425,5.01465,3.22438,2.2416275,1.1180160000000001,4.320045,2.6055,5.722183333333334,3.116683333333333,2.65206,3.32116,3.804695,3.75759,4.85381,3.51137,4.85171,4.29252,4.20603,3.723325,3.231845,3.419995,4.4281,2.55912,4.58123,3.82849,4.91884,0.6650911111111112,2.2814975,1.7285525,2.200165,1.799695,2.718776666666667,2.6785599999999996,1.9256533333333332,4.66919,4.96279,1.88893,4.24477,4.55691,2.45972,5.942561666666666,4.16889125,5.07695,5.2216,7.009951666666666,2.0840733333333334,2.5939733333333335,1.9865866666666667,2.725713333333333,1.88236,1.76872,4.02455,3.46826,5.31325,0.9981000000000001,2.99541,4.561505,2.436075,5.34795,3.706665,2.636835,3.6618999999999997,3.33925,2.023515,2.0009445,2.80335,2.79955,3.0891,1.9821725,3.4021999999999997,3.4021999999999997,3.5164,3.32895,20.15163125,1.0992533333333332,5.513374166666667,2.2678575,1.8817333333333333,3.82601,3.98983,2.024715,3.70083,4.634415,1.4498966666666666,1.4498966666666666,1.2661,1.8571466666666667,2.66347,3.15771,4.596335,3.866445,3.6341666666666668,0.5252,3.57142,1.86963,2.454415,4.6577525,3.348455,3.855485,3.864885,4.890925,4.055925,1.9963775,4.20339,5.447150000000001,2.406155,3.725695,5.1781,1.96224,4.599415,6.1379,1.4117328571428571,1.935474,3.7725333333333335,0.8675471428571429,3.0784866666666666,3.80008,5.1782,4.996205,2.7556205555555557,7.919871666666667,3.0186266666666666,2.8433466666666667,0.4751682352941176,4.317215,5.321109285714286,3.043351904761905,5.2921,3.733975,2.5811366666666666,1.813834,5.370523,4.558215,4.46923,2.1217825,2.039155,4.686665,3.846166666666667,2.8681733333333335,1.9645775,4.2914975,6.471887499999999,2.81165,3.749555,3.511505,3.74744,1.5177285714285715,1.5177285714285715,3.3409666666666666,2.9584799999999998,4.76535,4.9675,5.9825,3.91292,2.770425,2.190315,1.8300833333333333,1.3013871428571429,5.00125,5.872355000000001,5.426,5.54755,4.49826,6.5678175,3.62476,2.79297,3.972471333333333,1.9851666666666665,3.04208675,1.56448,4.569605,2.3722,4.2825,5.60095,4.031035,2.7385366666666666,2.99096,1.5538714285714286,2.619875,3.793066666666667,2.24069,0.571175625,3.2125566666666665,3.135673333333333,2.8375500000000002,2.4209333333333336,2.17493,1.8210000000000002,0.7535454545454545,0.7535454545454545,3.565,2.00555,2.29584,3.64877,6.12825,4.68331,4.966245,4.31886,4.33951,2.464614666666667,1.2413733333333334,3.0162,3.37387,0.9313175,3.4115375,3.017965,2.81,2.244755,4.11089,2.51675,1.9238600000000001,1.3200871428571428,3.925005,7.140420000000001,3.774675,1.7345662499999999,4.48784,3.90576,2.787305,3.4335,2.69856,1.7335266666666669,1.0014175,3.79508,2.3285108333333335,2.1775100000000003,1.65461,2.279246666666667,2.2296066666666667,2.50003,2.8278375000000002,1.2863866666666668,1.8406099999999999,1.81532,6.4841675,4.35638,4.606315,4.065285,4.0603,3.2556266666666667,1.8985756410256411,4.45205,4.559445,2.513285,5.36025,2.052975,4.52944,1.1244444444444444,4.000675,4.188675,1.8896925,7.62292,3.51592,1.85036,1.7371475,1.885015,2.6792,3.3409999999999997,1.3807522727272727,3.608833333333333,5.904,4.42478,4.4379,5.8557,5.71635,4.741375,0.9560375,4.76227,4.666945,4.384645,5.1507,4.171296666666667,4.93334,5.5306,2.963535,1.3114933333333334,1.3114933333333334,5.4632,5.813371666666667,3.404005,3.20631,4.019345,3.51392,1.564814,4.76548,5.11335,3.837735,3.94941,3.055266666666667,2.90558,5.01,2.4168496250000002,10.94981281500852,1.9319533333333334,0.75951125,2.47444,1.6520175,2.33286,2.3089975,1.835608,2.996636666666667,5.3673,5.56555,3.248466666666667,1.6299833333333333,6.387829047619047,1.3681514285714285,3.23805,0.5174,3.9085799999999997,5.86995,3.86247,5.509,12.863489999999999,5.5522,3.16278,2.8936933333333332,5.00105,3.2072766666666666,5.1342,1.2362725,1.4200766666666667,0.6948354545454545,6.13925,4.32047,2.0544000000000002,4.914810000000001,5.1101,6.2828,4.988565,4.80891,4.77487,6.40595,3.818055,5.25405,4.38327,1.539588,4.57511,6.3154,3.976295,4.06725,5.15405,3.99351,1.162715,4.942555,3.838515,1.22934375,3.6080666666666663,3.271876666666667,2.41147,2.698423333333333,2.362346666666667,2.6426166666666666,0.6856781818181819,2.42686,2.6568733333333334,2.55056,2.9218433333333333,2.9410266666666662,1.960345,1.4842000000000002,2.887375,2.4070375,2.2621475,3.5468666666666664,2.896853333333333,0.687939,2.60447,3.313235,5.06915,2.6213366666666666,3.7092,5.8832,6.08535,3.386645,3.841845,1.331167142857143,3.713005,2.568916666666667,4.085508333333333,2.70311875,5.1758,4.91934,5.2306,3.652765,4.216966666666667,1.024648,1.024648,2.160248653846154,1.5836325,4.073555,2.5320645,2.5320645,5.1042,5.93875,3.13,1.1915566666666666,1.5607142857142857,6.02615,3.579445,3.0948266666666666,3.16032,2.64902,3.240825,3.0948266666666666,5.817410000000001,3.12497,3.3294041666666665,2.803645,2.026855,2.98514,6.2458,3.130195,3.857385,2.870125,6.0034,5.5205,6.219150000000001,6.219150000000001,5.7871,4.29297,0.6900153846153846,4.84496,5.06365,2.91131,2.62717,10.470966666666666,3.5002333333333335,4.343785,3.69481,3.6097333333333332,5.6282,3.070245,3.1734275,3.0242066666666667,3.3470999999999997,2.7175333333333334,1.824436,1.824436,3.778615,3.73786,4.493225,2.08522,1.93348,49.7747959469697,2.803706666666667,0.8608363636363637,3.2455133333333333,1.7947925,3.366,2.8762733333333332,3.0657933333333336,2.90226,2.9790799999999997,2.149576666666667,0.95569125,4.66955,3.194925,3.49819,4.09238,5.37275,5.32915,5.13865,5.6609,5.6211,5.2107,5.9245,6.42752,5.02675,5.88605,2.05777,3.81104,6.7541,5.86525,4.256505,3.20091,3.986255,2.391175,3.89519,4.765025,3.1475633333333337,3.9027333333333334,1.6761279999999998,3.62224,1.3252039999999998,3.11694,3.66922,3.660025,6.815495,4.404075,2.2588325,4.491285,4.49338,3.893515,1.0028525,2.74437,3.852285,4.444767142857143,1.231845,4.89118,1.4036975,6.08155,0.6976055555555556,4.46849,10.69716,4.459745,4.297045,4.214215,1.7674166666666666,4.291675,5.2878,2.9956633333333333,4.127705,9.434286666666667,3.4127666666666667,2.3173933333333334,2.8565633333333333,2.8513133333333336,2.8516999999999997,2.73085825,2.096443333333333,2.66691,3.0390366666666666,2.7770966666666665,2.703696666666667,3.355145,2.20911,1.43281,4.2453666666666665,2.779576666666667,2.5799600000000003,5.185924666666667,3.04628,1.24874375,2.036815,2.8462899999999998,5.301236428571428,2.64785,2.225832222222222,2.225832222222222,1.5728825,1.4471075,2.04562,1.7674759999999998,6.036415,4.29929,2.5971,2.9537099999999996,3.4391,2.034535,0.565675,2.1733733333333336,1.8957525,0.6163292307692309,3.897165,2.542625,2.4827725,3.5964,3.9396266666666664,2.6230533333333335,1.6890733333333332,1.3898266666666668,2.027875,3.50248,3.87967,4.272460000000001,2.7371166666666666,4.0809,4.22223,1.1312727272727274,8.94052,2.603375,3.13205,1.3152,3.215256666666667,2.25914,2.25914,2.25914,4.44518,5.86035,2.385345,4.983605,1.396692,5.607356666666666,1.6365480000000001,4.401825,4.246625,4.085165,4.152565,5.0338,1.89395,8.2508225,4.442405,4.857195,3.271065,3.998845,3.1887033333333332,2.9913333333333334,3.97913,2.575876666666667,4.393939285714286,4.463786666666667,1.6330475,3.93205,1.6330475,3.518695,4.476687500000001,4.940965,4.476687500000001,1.7484,6.19365,5.0103,4.468655,2.8110166666666667,3.1418533333333336,4.25564,3.029345,4.192005,0.47233285714285717,3.2113600000000004,3.093836666666667,5.166625,4.899145,2.531575,4.84974,7.03378,3.687995,3.397355,2.912925,2.17937,3.868645,3.715475,4.918825,2.336135,4.121125,0.876423,5.21745,3.22264,4.307,2.855043333333333,3.141916666666667,2.1855766666666665,2.9444199999999996,2.78252,2.789066666666667,3.95031,2.540625,2.540625,5.035844166666667,2.822255,4.906505,11.738375,1.012811111111111,4.442875,2.6276066666666664,2.2597,2.92403,1.394675,7.910018833333334,3.8964666666666665,4.0016,3.880141666666667,2.1622133333333333,3.872833333333333,4.366573805555555,2.18538,0.4525861111111111,1.709664,1.4500775,5.60155,2.80308,3.180525,3.8203633333333333,3.4021316666666666,2.4879937500000002,4.491045,4.70398,4.04222,4.342635,2.23162,4.46987,2.4937733333333334,6.035466666666666,3.08108,4.88686,4.346875,4.441845,4.745675,1.910185,3.8184,3.594625,2.63688,4.621675,2.635765,3.03792,4.352105,4.231345,2.830833333333333,4.81592,1.9727,4.189585,2.901605,4.46669,4.220595,3.69572,5.16165,2.867235,4.41045,3.767575,4.051905,2.6326066666666668,2.070615,2.93255,2.290855,0.8373400000000001,4.172315,2.048495,3.547715,2.62362,4.16957,3.210025,3.104035,3.10387,3.644855,4.724249333333334,4.372695,3.124715,1.32209,4.05783,2.451975,0.94957,5.2627,9.59239,3.45091,3.515125,5.32745,5.1191,3.9021,2.099975,3.99064,3.924025,3.1166,3.165855,3.37463,0.63084125,1.2384842857142857,6.545109999999999,1.68826,2.615325,4.9418880000000005,2.52565,2.35312,2.767945,8.86254,3.19263,4.239855,3.75923,0.7370288888888888,3.418715,2.61626,3.64984,4.485395,5.850998333333333,0.6835600000000001,3.27338,8.66968,3.13078,1.0399188888888888,5.570752083333334,4.678975,5.49425,4.68312,5.4407,3.304535,2.9261866666666667,7.54948,0.940738,3.51167,4.325465,3.1266,4.01555,2.09034,4.45286,1.4220366666666668,4.365015,4.125875,3.94958,1.67824,4.973135,4.672685,2.3435825,2.104215,2.6528,1.46117,3.997485,3.5217475,1.659676,8.143790000000001,6.0706,4.270635,5.6286,3.437595,4.34285,1.4458285714285712,4.68218,3.94754,5.2548,3.688265,2.381256666666667,6.9385047008547005,0.8984175,0.8984175,2.46824,0.92107,4.20913,2.75578,1.0412925,1.7202833333333334,0.4457875,7.122769999999999,0.98623,2.691455,4.140845,4.03111,3.98145,4.70186,5.47495,5.6042525,2.779025,3.073505,2.332865,4.617935,5.18435,4.1953,3.9811,3.7776,6.85455,4.07597,4.500963888888889,6.151725,4.82571,3.9332599999999998,2.26429,3.9332599999999998,7.042492,41.31222184632034,3.53144,3.38433,3.11577,4.67749,4.706075,3.336545,3.325065,3.784485,4.311615,4.621075,1.85065,5.4514,2.66283,4.60527,5.3698,5.16845,2.4136866666666665,4.991545,3.86037,3.229575,1.633918,0.6494715384615385,1.8286799999999999,3.566266666666667,3.07347,1.3838875,3.3017566666666665,2.7826633333333333,2.8623433333333335,3.106896666666667,3.08184,1.541444,2.5298700000000003,3.8515333333333337,1.9171500064350062,2.92905,3.383096,2.98592,2.5229333333333335,3.6336666666666666,1.1630666666666665,4.39999,3.89338,1.18458,1.18458,1.18458,1.18458,2.9707418181818186,2.06056,2.46103,3.36836,4.37331,4.72953,4.342665,4.60594,6.43635,4.793795,2.394525,6.72555,3.47852,3.240025,3.682265,4.342185,4.511695,4.66358,0.7918461538461539,1.41508,1.5166366666666666,4.640895,4.51936,3.793645,3.947615,6.256658333333333,2.2381166666666665,5.1101,1.6019383333333332,4.579225,5.51815,1.4852299999999998,6.097,0.7932324999999999,5.00915,1.321782,1.17986375,3.927165,4.67231,4.8193,5.7783,5.7379,3.6832,1.7808119999999998,4.876995,1.4689125,3.343595,3.450515,2.5811366666666666,1.7618025,3.270895,1.6742833333333333,4.336585,5.3749,2.754293333333333,5.7077,125.8356340770202,0.47090333333333334,5.11545,2.7065933333333336,4.70515,4.046685,2.65524,1.4253125,0.3835052380952381,2.888935,3.55032,5.5918,2.798665,3.770425,4.661605,4.50405,4.7742,7.989146666666667,0.6679133333333334,3.729155,0.95995125,11.337982,3.32476,3.51209,1.0742122222222221,2.10416,2.71092,2.2096325,2.9592666666666667,3.3971999999999998,2.2401433333333336,4.3699175,2.8422466666666666,2.2651233333333334,2.19199,5.51665,4.051725,3.03711,3.50248,3.73401,3.991145,2.2919899999999997,3.745005,3.30856,3.049245,1.1448555555555555,2.5347666666666666,4.3699175,4.652285,5.07145,4.01443,5.69975,1.876765,10.49623,4.14028,2.624565,3.715855,6.1497,0.598802,0.598802,4.78626,4.78626,4.162365,4.027233333333333,1.8026231818181817,0.5955050000000001,2.94175,4.481065,4.455535,4.19217,3.83929,5.7501575,4.873145,2.233725,4.814235,1.969615,2.83242,4.570647500000001,1.698755,3.272835,0.48787,1.391854,1.391854,1.948595,4.577385,4.22389,5.15535,5.830076,2.86057,3.01039,2.07633,1.759875,4.623513333333333,3.916575,5.0503599999999995,2.34047,5.0503599999999995,5.1929,3.446205,6.2497,3.81517,2.3677633333333334,2.0854333333333335,2.6006533333333333,1.4432525,1.3992075,1.4534325,1.436,1.5944075,2.576125,3.5434666666666668,4.76004,2.38947,6.70215,3.0840633333333334,4.490805,2.67255,4.28541,3.04853,3.0977333333333337,6.489576666666666,3.5232666666666668,4.840371333333334,3.220493333333333,1.2592625,2.552026666666667,2.85683,2.274296666666667,5.13145,4.03554,4.811,12.700364859311742,0.7217525,2.00068525,2.446655,1.8138839999999998,1.2352100000000001,2.752625,2.4839,2.520025,2.552225,0.7354976923076924,1.8229825,0.5157905263157895,4.94789,1.996985,4.808285,4.993095,2.519725,5.92681,4.84481,8.43183,3.85164,2.84,3.14642,4.88594,4.7945,3.098084571428571,4.706715,2.0899375,2.0899375,5.1064,4.026635,4.36698,3.97209,3.4663,3.98245,5.24155,4.95988,4.81743,4.86961,4.38931,4.468095,2.381085,4.9338,1.29684,5.0653,4.699035,2.5655666666666668,2.2541866666666666,4.72244,1.41346,4.64507,1.9130825,5.874539782608696,3.835085,3.899395,1.5318466666666666,3.0508633333333335,3.0508633333333335,12.841069999999998,3.91376,4.7597,1.12254375,4.794304,2.509625,1.40702,2.613975,1.95,2.1368875,2.05076,3.266285,6.64705,1.6685175,5.0387,4.7149475,5.5888,2.33594,2.61734,3.948605,4.446345,5.1658,3.95735,7.586148333333334,3.2449833333333333,3.1360233333333336,0.4170333333333333,3.78567,3.79607,3.4053,6.149649999999999,2.48458,3.16053,1.2922233333333333,1.5975466666666664,0.571175625,1.709664,2.98525,1.5970383333333331,1.6741833333333334,0.68224375,1.2868840000000001,4.66276,2.507375,0.6742107692307692,1.546385,1.7125475,1.887886,1.3030333333333333,2.3703125,1.5975466666666664,2.533925,1.2868840000000001,1.2868840000000001,0.6742107692307692,1.6264,2.54114,1.5344666666666666,2.852625,0.6742107692307692,2.67135,2.54114,1.3585500000000001,1.3585500000000001,1.3585500000000001,2.05642,1.21621125,0.6742107692307692,1.13236,1.2348125,1.134311111111111,1.9556360000000002,2.66025,0.869675,2.3309925,1.6082714285714286,0.6742107692307692,1.7198499999999999,1.5975466666666664,1.9833333333333334,1.9090333333333334,0.909254,1.9833333333333334,1.0849022222222222,2.3435825,2.536525,2.70385,1.2348125,2.28788,1.6742833333333333,1.6742833333333333,1.0099727272727272,1.0099727272727272,1.0099727272727272,1.2922233333333333,1.5975466666666664,1.6082714285714286,1.546385,0.9906342857142858,1.9090333333333334,1.442048,1.731878,1.9114879999999999,1.2922233333333333,2.7939599999999998,12.2919,0.68224375,2.5970199999999997,1.9277,2.71505,1.0455614285714285,1.0455614285714285,0.6742107692307692,1.4404333333333335,1.8210000000000002,1.6082714285714286,1.761216,1.9090333333333334,1.2002111111111111,1.2002111111111111,1.7210360000000002,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,3.4681333333333337,1.0849022222222222,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.3812713636363636,56.135026975468975,1.473785,1.5308866666666667,1.6082714285714286,1.9277,0.9906342857142858,0.6102117647058823,0.709649,0.709649,0.709649,0.709649,4.296566666666666,17.580509166666666,3.4123,0.7465600000000001,1.69219,1.69219,1.69219,0.7465600000000001,2.98525,0.6742107692307692,1.7198499999999999,1.6741833333333334,2.58284,1.0849022222222222,2.531575,1.0849022222222222,1.665028,1.665028,2.1037500000000002,2.1037500000000002,0.6742107692307692,2.1268599999999998,2.1268599999999998,0.9916,0.19303055555555554,2.98525,1.7756666666666667,2.52755,0.7465600000000001,0.7465600000000001,0.7465600000000001,0.7465600000000001,0.7465600000000001,1.9277,0.3812713636363636,1.0849022222222222,2.290735,2.290735,2.770675,3.3732333333333333,0.6411142857142857,0.6411142857142857,3.4519,4.150333333333333,1.2198057142857142,3.10196,1.12272,2.63805,2.0896,1.0983733333333332,3.5024333333333337,2.163895,3.3920666666666666,5.4999,2.567355,1.2673222222222222,4.793115,4.710215,2.9539766666666663,1.762454,2.3996999999999997,4.67411,1.5476305555555556,2.7335066666666665,2.8734466666666667,3.738566666666667,2.43697,6.253046666666666,4.58354,0.19303055555555554,3.2648499999999996,4.73729,4.634425,4.26809,4.267205,4.98647,2.797523333333333,1.84726,3.94275,4.53501,4.370065,4.94131,5.06145,3.207555,0.6838033333333334,6.788955,1.3647983333333331,3.2661759999999997,4.853595,2.703163333333333,2.703163333333333,0.78629,1.7618025,3.40449,2.992225,4.7762,4.39084,5.157,5.31585,1.1944685714285714,4.94784,4.916255,7.535839305555555,2.2003066666666666,4.051945,4.451775,3.81142,4.84358,4.704115,4.895465,5.4688550000000005,5.0079,4.6849300000000005,3.65952,4.886115,7.905589,1.6289725,1.873468717948718,2.711323333333333,1.7403033333333333,2.807703333333333,1.8499400000000001,5.05405,2.977206666666667,4.969655,2.02158,4.7755,3.953775,3.8501,4.220795,3.719395,2.4741933333333335,2.66342,2.7653233333333334,2.9679466666666667,2.5262733333333336,1.7481833333333334,2.6872666666666665,2.9133866666666663,2.31522,2.31522,4.056295,2.91232,1.9352266666666667,3.0015699999999996,2.2416133333333335,2.4093833333333334,2.9410633333333336,2.6231066666666667,3.0435833333333338,5.2462,4.713635,4.772095,3.6101433333333333,3.6101433333333333,3.976755,3.4946,4.7986,4.46171,3.792715,3.3253,3.3597,6.98123,2.095685,1.894225,3.311685,2.95936,1.3110533333333334,1.3110533333333334,3.61376,1.851055,4.024284,3.59568,3.3858,2.161359,2.1561728333333336,0.5202808333333333,2.53725,3.891475,2.1746425,2.46609,4.207475,1.1787266666666667,4.91533,1.2478733333333334,0.40326500000000004,0.5593721428571429,21.986862476190478,0.5593721428571429,0.40326500000000004,0.7154792857142858,10.867003333333333,3.0432133333333335,4.265725,4.666905,3.6952125000000002,2.821175,4.225662857142857,2.11868,2.67254,3.14768,2.925165,4.284845,4.138855,3.455625,2.28274,3.08896,3.86832,3.942465,2.92151,1.070849,1.070849,1.070849,1.070849,3.299005,2.78438,3.13202,1.7750666666666666,1.31979,2.35488,3.617075,3.69658,2.78722,3.64563,2.41398,2.806750833333333,3.824805,4.30212,1.1013783333333333,3.1507199999999997,1.0741,2.89085,2.59363,3.897733333333333,5.03995,2.35233,4.38198,4.62798,0.7810057936507937,0.21545357142857144,0.21545357142857144,0.5655522222222222,0.21545357142857144,0.21545357142857144,0.21545357142857144,0.5655522222222222,4.45586,7.360325,3.519165,0.52386,3.74273,7.48709,3.32849,3.3797333333333337,1.128975,4.667785,5.51765,4.762485,4.832315,1.65999,4.844235,2.1507533333333333,2.312631333333333,4.02675,5.51335,0.7871199999999999,0.7871199999999999,3.42298,3.05306,1.96097,3.764,2.73408,4.808305,2.27094,3.90441,5.4869,5.61605,2.44366,1.65055,4.22234,3.377685,2.206555,3.67787,3.494355,1.8373825,1.136195,4.128125,3.355915,4.83389,6.4829566666666665,1.5168033333333335,3.86596,1.1338166666666667,2.51693,3.94705,4.012015,0.4390585714285714,3.848045,4.29927,0.92127,3.09998,7.80381,6.0407,2.1534,5.876293,4.47401,3.64241,1.4507866666666667,5.494623333333333,3.046726666666667,3.4187,3.6193000000000004,1.8715533333333332,1.8715533333333332,6.134825,6.134825,3.5163375,3.5163375,7.96809,3.5163375,3.5163375,4.157696388888889,6.0673,3.710945,3.8564258333333337,2.8353133333333336,5.18625,4.221735,3.2316866666666666,3.01202,4.770905,3.4058666666666664,2.76148,3.0676,2.19192,2.626975,4.907445,7.651680000000001,7.059435000000001,4.708555,3.67212,3.96344,6.747922,5.093,4.072705,4.504405,3.67231,2.4052933333333333,2.19352,2.04135,6.0698,5.6466,4.64949,4.49614,2.21043,2.97662,7.204115,2.05642,2.49179,3.3731000000000004,3.3731000000000004,3.10694,5.24305,0.8511916666666667,3.4535,4.1165,2.83044,10.406825,4.48421,2.6596766666666665,2.53215,5.7196,6.55085,2.967815,5.68925,2.55362,4.46019,2.929738,4.503565,5.2827,5.1423,1.219025,3.4985,1.2295725,2.4763733333333335,5.130354176470588,7.923206666666667,2.614666666666667,2.881693333333333,6.836193333333334,1.8107780000000002,4.76506,5.6813,3.37767,3.59777,2.22079,4.908715,2.517545,0.55743,5.48545,3.19711,3.699033333333333,5.2728,4.946455,5.376,6.944025,5.24605,5.5383,7.8812425,54.07592,4.7702,3.943705,4.97182,6.49995,4.70808,4.932815,4.123355,4.627585,1.8910025,3.99439,4.15551,4.65459,2.45231,5.1025,4.16719,1.605368,5.80645,6.5612,7.356273333333332,5.34185,3.116575,5.3552,3.247935,3.116075,3.572855,4.181405,3.6389,6.67325,2.74525,1.0555314285714286,2.34046,0.686186,0.686186,3.868845,0.686186,2.4311251428571428,2.4311251428571428,3.106757142857143,4.534473,4.920360142857143,2.34046,4.683555833333333,2.7139408333333335,1.4722033333333335,5.16365,2.181075,7.8396,6.10823,11.93721896212121,3.347633333333333,2.8443466666666666,0.23881454545454547,1.789364,2.8538766666666664,0.86318375,1.3739866666666665,2.496426666666667,1.78129,2.7829,0.627877,28.65794208333333,1.8942125,0.7282953846153847,2.8258533333333333,2.8258533333333333,0.4234983333333333,2.0159075,3.2125575,1.2843875,1.8704625,1.598585,4.12688,2.828885,1.9992533333333335,2.3085833333333334,1.1390733333333334,2.137505,1.6790333333333332,5.903954833333333,3.96913,7.217411666666666,2.5573,3.536433333333333,1.1043283333333334,2.57913,4.80553,5.8461675,3.142386666666667,2.3554133333333334,6.209746666666667,2.41388,2.780806666666667,4.4239049999999995,1.0820666666666667,4.022833333333334,2.3813299999999997,6.0574,5.22945,6.12745,3.28457,4.1465025,4.1465025,5.20815,2.171975,5.6109,2.7002699999999997,1.79405,4.127395,4.574495,7.415911666666666,5.28825,3.006373333333333,3.9374000000000002,3.172345,1.33164,5.0754,1.12591625,5.520433333333333,4.622435,7.8279499999999995,4.556935,4.527025,4.112645,8.728845,5.4665,5.16015,1.12707,0.7149928571428571,4.869595,5.0067,2.449255,3.220325,3.32421,4.10983,2.245355,4.922965,2.389396666666667,5.2311,5.1958,5.01615,4.800795,4.79229,2.942765,7.0013635,3.188145,5.11695,3.347325,3.958105,6.071093809523809,0.6145942857142856,3.7261666666666664,1.7143266666666666,0.6775044444444445,4.67567,2.961395,1.19700875,2.00322,6.30959,3.956235,2.277915,2.73682,2.6299433333333333,5.0997,4.070435,1.693187619047619,4.175245,2.8602866666666666,3.564,4.85316,5.0454,3.1262049999999997,3.929266666666667,3.9006666666666665,2.0585999999999998,7.12174,4.97784,4.19747,4.929215,2.3999025,4.25274,4.9129,3.121095,4.019255,10.87412,3.880265,4.30408,5.1984,4.75124,2.5385,3.935185,4.206645,4.94573,3.324996666666667,4.335935,1.88128,2.83821,3.279065,3.420985,5.1818,1.8867699999999998,4.533115,3.2002066666666664,5.6088,3.1127933333333337,2.37443,4.15203,4.46225,1.03341125,3.513325,2.64962,4.506987333333334,1.799748,1.8283399999999999,1.2523775,4.646445,5.49285,5.8581925,3.849,2.978595,2.43965,2.017405,3.068755,1.5704133333333334,4.972755,2.775055,1.8633925,0.9651846153846153,21.34992937179487,3.074825,3.2434233333333333,4.568630000000001,4.115029743589743,1.4629566666666667,2.807741,2.971035681818182,1.21462,1.8596633333333334,3.98865,5.30815,3.73249,3.37233,5.51235,4.69757,7.3760425000000005,5.202465833333333,4.98474,4.019755,2.954636666666667,3.829565,3.98916,3.5229,4.519905,2.1152025,5.2244,8.81241,3.384,2.84246,4.180275,0.61282375,3.082316666666667,2.1246899999999997,2.3259825,4.36958,3.33476,4.80694,3.7245,2.825415,2.4638175,1.707415,1.063196,1.3345533333333333,1.1980566666666668,4.138435,4.26235,4.7125,4.847655,7.31482,2.2182566666666665,1.3916520000000001,2.510823333333333,7.826373333333333,3.32228,3.005775,3.01253,4.62763,3.5188875,3.41509,1.616984,4.289855,5.0337,4.227805,3.91012,3.466985,4.23492,4.835275,4.05623,4.550305,3.59745,2.2402,2.91675,3.270585,5.877,2.71869,4.287053,3.81878,2.845875,2.5679833333333333,2.23205,2.1013366666666666,2.843833666666667,2.843833666666667,1.9624266666666665,3.0295799999999997,2.250836666666667,2.279786666666667,1.94695,4.021125,2.32416,2.6241933333333334,2.85093,1.6835533333333332,4.35777,2.8579,3.4665,1.9603133333333334,5.5044,5.3784,5.030201388888889,2.885655,2.109695,2.645795,2.43426,2.05907,2.70699,1.91177,2.501125,2.47524,6.585996166666668,4.289630000000001,3.455425,0.5626775,4.26653,4.977785,4.351,3.439605,3.775495,3.6118475,5.95115,4.43582,3.25454,2.8485653571428573,2.188044888888889,2.49582,1.818838,1.8258679999999998,1.643196,1.90258,1.7975275,1.4135716666666667,4.178350857142857,0.6742107692307692,0.5530788888888889,2.2510000000000003,1.58915,1.60597,1.5783816666666668,2.598195,1.5551450000000002,1.6244939999999999,0.5905925,174.51698565500593,0.5385433333333334,1.980992,0.9894299999999999,1.29914,2.0405825,1.505265,1.95641,2.5261066666666667,1.976645,7.03895,3.11268,3.601163333333333,1.7835066666666668,3.2778,1.291215,1.291215,6.288045,0.5464249999999999,2.47513,3.309013333333333,3.14641,0.8172627272727273,0.6744411764705882,1.2269817435897437,1.1113090909090908,2.3464525,4.58852,2.349775,2.251105,2.6106433333333334,4.785687888888889,1.1334888888888888,4.62834,3.98687,3.460595,6.54188,1.6012533333333332,2.969925,2.734865,4.169903,2.19467,3.142565,3.24874,3.3223,4.83429,2.68588,6.20126,2.5538,2.66881,3.48273,1.817355,2.728645,2.868845,2.566525,1.623675,1.594705,2.63577,4.60971,5.818326666666667,3.51247,2.908975,1.416035,4.258685,3.6772333333333336,3.8127666666666666,2.84107,25.78185970940171,2.3886813333333334,2.9964733333333338,3.27127,3.836133333333333,3.2154566666666664,5.9595,3.0995666666666666,2.5976666666666666,3.5932333333333335,3.2844266666666666,2.09001,3.3171700000000004,3.166456666666667,3.2001633333333337,1.70355,1.72098525,0.595669,2.29509,2.0684225,0.20753625,2.787456666666667,2.92687,0.20753625,0.20753625,1.89303625,0.20753625,0.20753625,0.20753625,0.20753625,3.3594666666666666,2.619006666666667,0.6166384615384615,3.6935424999999995,1.6183175,1.887776,5.15865,4.481845,6.453765,2.339645,4.990625,2.410025,2.5211799999999998,1.30132,5.795203333333333,2.69127,6.123515,0.9222916666666667,1.21849,4.866565,4.92869,36.71687868192918,1.78641,1.3570966666666668,2.2885133333333334,2.3918425,1.0099727272727272,2.384113333333333,2.32776,2.73655,2.12087,2.44736,1.6370716666666665,2.8408800000000003,2.3138633333333334,2.2491066666666666,2.5537233333333336,2.43865,4.170755,3.2474600000000002,1.1036942857142857,3.806225,3.93161,20.14548838888889,2.7678766666666665,3.1937866666666666,2.700136666666667,0.831152,3.1243999999999996,1.6292442222222223,3.1243999999999996,2.4670433333333333,2.5778933333333334,3.266026666666667,1.6851075,2.034685,4.59403,3.941465,5.14765,4.206345,1.8065539999999998,5.41965,1.6250175,5.17185,4.1749576190476185,5.07865,0.7057,2.106705,2.0774725,3.052396,3.242845,1.09599625,3.891565,1.989554,2.1317333333333335,1.060604,1.060604,2.0958799999999997,3.17862,4.73148,30.803634166666665,6.171275,1.7761266666666666,3.4727333333333332,0.36250400000000005,6.6139325,4.52009,2.6695533333333334,3.100355,5.8312975,3.71907,1.2106425,4.800285,1.254486,4.04459,4.72084,5.27265,2.05774,2.818875,4.20621,3.19567,3.5655,4.544665,1.31077,2.6959625000000003,3.513215,4.8400675,2.9393333333333334,3.0709933333333335,3.0544433333333334,3.36022,3.92718,4.311365,4.309366666666667,1.709125,5.89436,2.57765,1.765546,4.16079,5.13633,4.312305,3.63367,0.8266025,2.93903,3.426195,2.107875,4.660642666666667,2.6718,3.82238,2.9863999999999997,3.1784766666666666,4.560095,3.2797,3.4244333333333334,3.2304399999999998,4.736255,4.4407,4.221735,1.6395,4.224725,4.25026,1.83441,1.90522,1.7158475,3.9897783333333336,4.813265,5.828848229166666,3.9366,3.8745333333333334,3.59587,3.3863333333333334,1.35975,2.973785,3.022115,3.007775,4.31345,4.98211,4.699225,2.798275,2.029855,1.622875,1.4699775,3.533845,2.33579,2.16909,3.30745,4.798195,1.58653,5.3686,1.3824328571428572,1.776715,3.13707,3.86696,3.012245,3.548615,3.00007,1.68094,0.9606007368421052,3.311845,3.700471666666667,4.904135,8.583181666666666,2.2050566666666667,3.3164466666666663,1.5717566666666667,2.6665033333333334,3.0247100000000002,1.3172133333333333,3.4353,3.0196133333333335,2.8807899999999997,4.219366666666667,3.211273333333333,7.082146666666667,3.1744266666666667,0.7132918181818182,2.0420066666666665,3.442735,3.469155,3.25816,3.7434333333333334,2.7832500000000002,3.390925,4.59933,2.0085524285714285,3.76194,2.805440555555555,3.433275,2.320323333333333,5.12495,5.52075,4.82097,4.316365,3.622255,1.3697333333333335,5.22745,3.3335333333333335,3.0160966666666664,4.671665,2.8343433333333334,3.08498,0.40777,0.40777,3.6714933333333333,5.0678,5.19535,3.07318,3.672665,3.57335,3.105725,5.3687,4.8658,1.03046125,4.41607,2.85289,4.556195,3.176266666666667,3.2009,2.045526666666667,3.4737432142857143,2.8728700000000003,3.250363333333333,2.7773299999999996,2.7728933333333337,2.118106666666667,23.706594404314888,4.96344,4.51651,4.058345,3.16881,4.7135325,3.60508,4.51443,4.53813,3.967885,4.072205,3.67152,2.7898300000000003,3.2566566666666668,3.446566666666667,3.2260733333333333,2.9073233333333337,4.38122,3.347145,4.5920950000000005,5.2897,4.812365,1.26242,1.956736,1.956736,3.9469,3.614535,2.81686,2.5930433333333336,3.115736666666667,4.45378,3.53366,8.654966666666667,3.506266666666667,2.9029833333333332,3.3735100000000005,4.697995,1.65099,6.243399999999999,2.4757233333333333,2.679956666666667,1.6500275,4.101755,3.45677,6.86636,3.38659,2.67238,4.367275,4.086972,1.4982025,2.57342,1.6890599999999998,8.682745,4.76103,6.939043333333332,2.281565,4.725945,3.92034,4.646325,5.29485,3.8749000000000002,3.8749000000000002,2.077015,4.51966,5.3479,2.46119,6.536924285714286,1.9401025,5.98495,9.374329333333334,3.3804,4.6120920000000005,2.5943,2.004825,0.6259375,4.08214,2.58725,2.620025,4.37673,2.52035,2.47345,3.92123,5.33235,5.03705,4.05744,5.6076,4.271435,2.3701575,1.1206636363636362,3.182245,3.371595,3.1143,5.4637,3.919655,4.36889,2.785475,1.935474,4.70116,1.0001475,4.999445,1.05909,5.21445,3.19723,5.604,5.3670100000000005,3.22256,3.28359,3.2996933333333334,2.5670966666666666,4.329975,3.795365,2.444115,4.590345,3.86003,6.438518333333334,4.493035,2.318495,3.655825,3.616085,5.354078333333334,1.8579475,1.8579475,2.8355433333333333,2.3975866666666668,2.7752933333333334,2.6535933333333332,0.91684,6.17495,4.008355,2.457015,2.27094,2.520775,3.680395,2.818325,3.749205,4.66481,5.09725,5.01335,6.279,5.8117,1.3640125,3.836435,1.08295,2.5426,4.3665,2.44327,2.960265,3.192185,4.20618,3.568115,0.4535278947368421,4.60523,4.092815,4.75807,3.35058,5.1536,5.7854,4.85554,3.811105,1.84394,4.68244,2.13225,4.3685,4.3685,6.6198,5.11145,5.8,5.58685,2.77614,1.65099,4.597725,2.3302433333333332,1.6026466666666668,1.95859,5.09475,4.24892,4.48125,8.08924,1.8173333333333332,6.28575,1.4394600000000002,3.091365,6.1315,2.06526,4.79563,3.0712233333333336,5.7348,3.4054,4.552505,2.92932,4.17726,3.972855,6.4366,4.07742,4.174605,4.194745,5.9499,4.24797,4.76308,3.62026,4.189755,7.708413333333333,3.43478,7.02792,3.1343,5.4291,6.337618863636363,5.10335,3.449025,1.9888325,5.2148,4.007625,0.7441866666666667,8.27669,5.66775,5.6861,2.950340833333333,5.2566,2.4763,1.80324,3.98986,1.1013783333333333,5.8523,3.137,4.59545,5.44255,4.52402,4.52385,2.527406666666667,4.44823,5.42945,1.40288,7.521146666666667,2.99479,4.258495,5.3025,4.112935,2.17475,4.619635,4.254555,4.44107,3.0153166666666666,3.896375,3.75737,5.65185,4.82943,4.17456,2.02597,2.02597,7.433391666666667,1.5525857142857142,5.16975,4.351395,5.90475,4.013925,3.512745,4.857245,3.909975,0.9506733333333334,0.9506733333333334,0.9506733333333334,3.49103,3.15713,3.803265,4.6522966666666665,2.63111,1.4460166666666667,4.576345,2.4516375,2.556155,4.34684,5.3987,1.4109125,2.285,5.74931,4.051525,2.492275,4.527325,1.49011,1.9362725,3.27709,2.68402,5.489,1.42271,1.701718,1.1041925,4.355695,3.049325,3.8825333333333334,3.3474,5.6187,1.8218260000000002,2.113175,2.904515,1.5491428571428572,4.21183,3.756725,2.4156,5.6337,5.5827,2.88813,4.842925,4.33064,3.4208,4.423125,4.260205,3.31851,6.42832,5.40575,1.69771,1.8615166666666667,3.466875,4.697545,4.737255,4.899955,3.391666666666667,4.57668,5.3934,5.47355,2.692736666666667,5.45285,4.284065,4.94311,7.8161475,5.1318,0.7615990909090908,3.949705,3.94895,2.35273,4.24497,3.9143000000000003,5.77165,3.80524,4.366705,3.595375,4.310605,4.86097,5.1237,3.600435,4.46295,5.27275,4.2048,3.34002,2.831475,6.13438,5.02495,1.8278320000000001,3.637545,4.213525,3.809705,5.2401,5.2117,2.5617733333333335,0.8610266666666667,4.375003030303031,6.34952,3.952955,4.94377,3.628375,7.8559116666666675,3.96637,3.4920666666666667,2.76822,3.652475,1.954555,3.39478,4.129075,2.9365775000000003,3.627045,5.1876,1.3585675,5.0314,0.7097335714285714,5.05605,3.5423,5.7295,3.92121,1.4391516666666666,1.62978,4.46325,1.87412,3.473265,0.5229316666666667,5.72825,3.037055,1.5020479999999998,6.166205,6.80625,0.8241375,1.5988775,1.243642,1.243642,1.243642,1.9698033333333334,3.653355,3.596745,4.764175,3.86603,5.74565,4.42318,1.909366,4.813625,5.33975,0.296890243902439,4.062465,4.8737,5.6278,40.82276634848485,5.4580025,5.22205,12.921694,4.673855,4.3373,7.543833333333334,2.91638,4.531775,3.866745,4.67863,10.141175,4.261455,2.586933333333333,3.822975,6.1652,4.078515,3.609835,4.144555,2.12216,4.568505,3.84823,7.14576,4.401635,5.25005,2.35271,4.11065,0.538524375,1.3705016666666667,3.956225,6.1777,3.195175,1.2891833333333333,1.2891833333333333,3.757255,3.856125,3.848595,3.22784,1.5834333333333335,3.592215,4.238765,1.674485,3.108696666666667,1.9434740000000001,2.5818733333333332,4.16722,4.49193,2.0193175,4.810325,2.2803075,1.983335,3.28141,3.53593,3.92618,3.73737,6.144443333333333,2.584163333333333,3.772945,0.6703381818181818,0.687685,3.64573,2.266435,8.946953333333333,3.4123,5.04255,1.57184,4.6071,1.6659,3.936855,4.15042,2.64958,4.71754,5.71235,0.4103745,0.4103745,3.4482666666666666,3.2049833333333333,3.1088,3.647575,3.58255,5.09055,0.9496636363636365,9.763385,9.352235,2.3703125,4.9801775,5.0017,5.3067,3.380235,2.58384,2.1750800000000003,1.8798875,9.929525,2.3471525,2.786303333333333,3.9296900000000003,4.81133,3.9296900000000003,2.656675,2.9746433333333333,3.0513399999999997,0.7881990909090909,5.811074166666666,3.441933333333333,2.467166666666667,4.43787,8.76404,10.219685,4.75417,3.966725,4.725065,7.0933399999999995,2.002,1.36845,26.47021833333333,3.152,4.133115,0.971865,4.44144,4.144015,4.470295,4.51901,4.278995,6.207413333333333,3.9285,1.97391,0.7184882352941176,0.7542725,5.33025,4.53974,1.4482633333333332,4.498606666666667,0.83695,3.6122,1.4310966666666667,4.150815,5.95265,1.947,2.47446,2.48624,3.879475,3.383425,0.5347527777777779,4.017965,3.57614,2.9691466666666666,3.17871,5.17405,3.2566699999999997,4.262955,2.963005,4.885825,8.804406666666667,4.829045,6.80579,2.7356,3.0526433333333336,4.33669,4.3210175,3.86392,4.394275,3.686875,5.19915,1.267175,3.1347545833333332,3.6641447142857144,0.671824,1.956736,1.956736,5.27385,8.03464,0.9032538461538462,5.05695,0.9073466666666666,2.9429533333333335,2.44853,2.457263181818182,6.492072222222222,2.5490533333333336,1.137722222222222,2.365256666666667,1.2812875,2.20211,3.169223333333333,3.163333333333333,3.236416666666667,2.783856666666667,0.9073466666666666,4.47787,4.46645,5.6861,2.833955,5.1641,2.26546,6.105,4.85635,4.274285,3.11797,3.59595,2.411025,1.3942175,4.61338,2.77075,4.72456,5.39545,1.6369900000000002,4.50061,2.9117433333333334,6.366571666666666,3.448285,2.30134,0.9073466666666666,2.486935,3.22148,7.161387888888889,2.3256099999999997,1.64679,2.3256099999999997,0.43684166666666663,1.2551539999999999,3.458495,4.13269,1.9303,3.58531,3.819707,0.631162,0.631162,0.631162,7.9605250000000005,1.647898,0.78067,37.598956502164505,1.781872888888889,0.6413588888888889,3.003815,0.6413588888888889,3.470615,2.07854,2.39576,2.7056466666666665,5.684,5.6902,4.46876,2.3413033333333333,0.8601642857142856,4.470265,3.0390266666666665,4.956585,0.9973428571428571,2.918125,2.918125,3.75728,4.30851,4.071945,5.375876923076923,3.27094,4.628125,5.1768,1.7907039999999999,1.17371625,5.8164,6.24565,3.838785,0.655626,4.61364,4.194016666666666,0.9278025,4.30235,2.6679,4.223965,4.113225,1.824348181818182,1.824348181818182,4.53711,3.23735,0.9434077777777777,2.82069,3.1721500000000002,3.352255,3.895305,4.56525,0.37857142857142856,0.26698176470588236,0.26698176470588236,0.26698176470588236,0.6455531932773109,0.6749669230769231,0.650146,0.26698176470588236,0.26698176470588236,7.587854999999999,0.26698176470588236,0.6455531932773109,3.45116,1.2343975,4.67051,1.11969,0.6844261538461538,0.9278025,2.602875,2.702575,4.50733,2.86876,0.26698176470588236,0.26698176470588236,4.453595,3.5691,4.26071,2.64401,4.2873,1.595348,3.855235,0.650146,0.650146,4.75467,3.05026,2.661795,2.83666,4.407500000000001,1.0059,0.7423676923076923,10.923135,1.25575,5.20115,4.66283,5.2208,2.15168,0.41403,0.91848625,3.1157866666666667,3.247785,3.42237,4.79931,1.565918,6.4767,4.184495,5.5612175,4.223245,3.1765600000000003,2.96093,6.536733333333334,2.996396666666667,5.4633,4.11436,4.62798,5.569255,0.5718406666666667,4.51,3.03951,2.2982033333333334,0.6507644444444445,4.219205,5.40611,2.831855,2.40802,2.41644,5.17655,2.725015,2.818235,0.9857279999999999,0.46024384615384617,3.970705,0.3497806666666667,0.8236672727272727,3.89236,2.934715,4.646205,2.591115,4.560035,4.334755,6.3412576666666665,3.69101,3.78411,4.83577,1.49993,4.641425,1.988804,4.157055,2.676,6.13749,2.4639,0.9892899999999999,4.67398,7.2365175,6.827038750000001,3.3729,0.8134775,2.83924,4.886175,4.055325,4.695885,4.618935,4.271985,4.56279,2.87051,4.044625,1.7869033333333333,2.24335,1.4206466666666666,4.278595,8.21712,3.89762,3.60562,6.35005,2.893925,4.8527,2.4370066666666665,3.2411070000000004,3.13684,4.44638,3.61649,3.660085,3.282275,5.6809,5.57015,5.1156,4.6022,5.3043,4.910275,3.006735,5.5885,8.11515,0.9167133333333334,4.027545,4.196635,4.686055,4.76383,5.6713,2.280325,8.16455,2.3912733333333334,3.497565,5.5836,3.67587,4.125955,2.0300599999999998,1.961315,2.8259733333333332,2.12533,1.9233466666666665,3.0850633333333337,4.31806,4.835835,4.43146,3.22913,5.180573333333333,3.468135,3.14512,3.8458025000000005,5.86305,3.07975,6.125704166666667,4.13395,4.157155,3.714455,8.60531,4.275605,3.611895,4.564815,4.926655,3.67194,9.13157,1.29677,2.361525,4.42989,2.801246666666667,2.801246666666667,1.867575,7.354299999999999,0.9820566666666666,3.625335,0.877265,2.113175,4.312035,4.413475,4.08215,4.68582,3.158326666666667,3.77303,4.403245,3.80719,4.67403,3.47799,2.8584566666666666,4.751655,4.927740833333334,4.270635,4.989595,1.542206,1.5790039999999999,2.5740833333333333,5.36975,2.3223325,1.6966066666666666,1.9423575,4.535155,4.967975,3.038885,3.576055,0.44727555555555554,2.22446,8.050995,3.139905,1.5642433333333334,0.8638925,1.16426,2.0180000000000002,2.0575775,0.8825616666666667,2.0217066666666668,4.1878105,4.649365,5.52925,2.5057266666666664,1.984385,6.999455,3.054025,2.0318516666666664,2.0318516666666664,2.0318516666666664,6.671086666666667,2.246086666666667,3.692535,2.67805,0.5028320000000001,1.1892179999999999,2.296935,5.696095,0.5050783333333333,3.82326,3.8660033333333335,5.62235,3.021088333333333,0.5050783333333333,3.021088333333333,0.92285375,1.246702,6.04575,4.3316,7.459595,4.85662,4.847115,4.16278,4.39421,5.34025,5.05985,6.37535,3.71477,3.34736,4.625885,4.734455,4.101095,4.54857,5.10985,1.42609,2.9019433333333335,1.21620125,2.27191,3.217836666666667,1.4886033333333333,7.385585,5.354078333333334,2.982056666666667,5.0617,2.86601,5.1556,2.680415,4.28934,5.00255,10.005625,6.0503,4.559035,2.1746075,2.793085,2.20378,0.61282375,2.4067333333333334,5.85565,5.36325,5.27105,5.27205,0.7156800000000001,2.1073825,1.325375,4.38125,0.8753923076923077,7.28443,2.11003,1.0950975,1.0950975,3.7997780000000003,2.00056,3.5985333333333336,2.566235,4.613585,3.7314025,3.7314025,4.826455,6.1201316666666665,2.9677866666666666,2.4790633333333334,3.4644,4.315785,1.8814,2.970126666666667,5.52525,5.55065,4.969405,4.43654,4.005333333333333,5.32995,3.3457766666666666,3.3965666666666667,2.3520425,4.14735,5.26935,3.21502,5.29935,5.6711,2.062746666666667,2.81336,6.40905,6.9548,1.284046,2.75345,2.2650475,3.0197133333333332,2.32656,2.53265,2.5183425,1.07184,1.8713075,2.5688,2.28154,2.4225066666666666,2.4225066666666666,3.0319785,2.89325,2.184588076923077,2.6771,2.52985,1.9607800000000002,1.5707333333333333,5.043044999999999,14.650399166666666,2.9978233333333333,3.7775,1.78791,1.78791,1.5528616666666668,1.5528616666666668,3.0394166666666664,3.8397666666666663,3.1884099999999997,1.9029875,1.9029875,3.944366666666667,3.4060333333333332,1.0690133333333334,1.5499857142857143,3.3369,2.9635200000000004,3.7715333333333336,2.6285304761904764,3.23493,3.2893866666666667,0.681125,2.6445,3.7303486666666665,7.493539999999999,4.99348,4.406075,4.52775,3.401695,4.62382,4.54332,3.054456666666667,4.78354,1.4180716666666668,3.28064,6.01025,4.98998,2.65782,1.4243866666666667,2.850245,2.771236666666667,3.0588033333333335,1.6435683333333333,0.7461785714285715,3.3401,5.2621325,4.72628,4.469675,5.17955,3.190296666666667,2.0341133333333334,3.2864058333333337,2.8980433333333333,3.6301666666666663,3.064296666666667,3.5720666666666667,2.50498,3.7710000000000004,3.983366666666667,3.03045,5.1063,5.19745,5.243038333333333,5.243038333333333,3.38296,3.958055,3.76909,3.773865,2.600555,5.03125,3.34309,3.2936866666666664,5.98545,0.8853749999999999,4.9899,4.999955,2.4955966666666667,4.537568333333334,3.3651999999999997,1.9630333333333334,1.5427,2.55637,1.03517,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.6315928571428572,0.6315928571428572,1.2305775,0.8481420833333333,1.666559053030303,0.9715385714285714,0.9715385714285714,1.2301157196969696,0.4364433333333333,0.39682333333333336,1.16082,1.4636425,3.15405,2.674875,7.376706666666666,3.1099633333333334,3.895845,3.805065,4.419230571428571,1.320765,4.772625,4.16295,4.29962,3.09022,1.456176,3.984635384615385,3.48496,4.94456,4.567105,3.025665,4.278045,4.252435,4.68195,1.2245979999999999,4.538625,4.50096,3.087205,2.33773,3.30746,2.399405,3.085525,3.941735,3.2502666666666666,5.00105,8.99645,3.293345,5.05975,4.43065,4.5216199999999995,3.0461466666666666,3.54764,0.8555571428571429,4.00913,3.3328,1.850926,1.2050925,2.75493,0.9673066666666666,0.5550033333333333,3.4251666666666662,4.44648,5.087636666666667,3.8678000000000003,2.3697175,2.365215,5.04365,4.070733333333333,4.979385,2.5796,2.233703333333333,4.193785,4.58326,4.40789,5.1766,4.59226,3.555955,5.03695,3.4153000000000002,4.915395,2.1407491666666667,4.93184,5.1362,3.266795,4.365745,2.43694,3.69486,5.73695,4.85945,5.75325,4.746175,5.05065,2.3891566666666666,5.3668,4.935095,4.44851,2.4304975,1.0035725,4.21862,4.862035,4.409945,5.43515,1.78187,4.5662,2.064695,5.16825,4.43476,5.3314,2.35672,4.707145,4.88611,4.48238,2.889343333333333,4.60007,5.31905,5.15505,3.145365,2.4304975,2.276375,3.11414,4.461895,4.025295,4.43597,3.414325,4.95077,2.16908,6.79694,4.685275,3.97269,5.187558513888889,4.557545,5.4011,3.30498625,2.4879249999999997,2.4879249999999997,4.357805,4.0825,4.41746,2.358885,3.0790925,1.0538725,2.91339,3.0882066666666668,2.75056,3.4651333333333336,5.0233,3.2550000000000003,5.6583,2.9836033333333334,3.996225,4.9794,1.997705,4.167705,1.9904733333333333,2.9764433333333336,4.02333,1.07252,4.961375,5.20095,6.4397375,5.0844,5.67525,1.3819314285714286,4.865295,6.45295,9.17557,3.1997366666666665,3.5396666666666667,1.99362,0.8361240000000001,3.87914,1.0154314285714285,4.366885,4.65916,4.708325,3.10902,3.799435,1.3670957142857143,3.23996,3.48024,4.26936,4.423515,3.989975,4.193015,2.44741,4.146405,5.06295,6.2173,4.684775,3.73781,0.3662822222222222,0.3662822222222222,0.3662822222222222,0.3662822222222222,5.39935,2.90287,5.9563,3.4305333333333334,5.2041,4.860655,4.02395,2.506845,2.40515,1.4607266666666667,5.2597,2.9323333333333337,4.07523,3.560155,3.233095,1.68952,1.17796375,4.68228,2.396905,6.211368333333333,3.71032,5.4896,2.121065,1.5832033333333333,0.89277,3.1889,4.805725,3.0069,2.246715,8.225719999999999,4.341275,3.327715,2.34422,0.450866,3.034785,2.628755,2.19056,1.824125,3.83017,3.4135,2.44026,3.4932666666666665,2.924705,3.37985,4.59514,3.88386,4.35127,4.03503,5.5606116666666665,0.6389846666666668,4.46366,5.75115,5.176,4.404855,3.1260399999999997,5.14445,4.520235,4.57438,5.525448333333333,5.47375,4.450425,4.75455,3.5165499999999996,4.38919,3.15896,8.59228,5.06315,4.80162,4.958125,5.22285,5.2773,4.15064,1.0881155555555555,5.716889999999999,3.66219,5.0197,1.47929,4.604445,4.72128,8.076806666666666,4.541615,3.1623,2.333413333333333,4.208465,1.632668,1.07318625,4.04405,6.28735,1.9687733333333333,2.278496666666667,2.7894433333333333,3.372215,3.428735,3.675505,5.2002,1.8277700000000001,4.20317,3.5941145,3.217065,3.5779333333333336,3.55637,2.800765,2.56679,1.85908,2.3869333333333334,2.62703,4.32372,0.5202808333333333,2.5614,4.05662,2.7845,3.3659,4.51405,5.99435,3.926475,17.118810272727274,2.4443033333333335,4.060866666666667,1.464704,0.8332072727272727,0.8332072727272727,0.8332072727272727,0.8332072727272727,0.8332072727272727,4.713825,4.876765,5.41585,9.445254,2.60005,2.60005,4.45322,4.332590833333334,1.2285975,2.316316666666667,4.50498,2.4391625,2.388975,2.1910275,2.8169,3.799942,2.3560975,4.11768,0.8251642857142858,3.1518766666666664,3.086816666666667,2.991706666666667,1.3285066666666667,3.4115333333333333,2.3611566666666666,0.96585375,2.98062,2.790103333333333,1.1830888888888889,2.5150366666666666,2.8042599999999998,2.18676,4.775244666666667,2.2045333333333335,3.2617766666666665,2.0871625,2.7418933333333335,1.1184,2.9772466666666664,4.812570000000001,3.5477000000000003,1.0774175,2.85096,1.2176475,3.0124766666666667,3.3132,4.645721666666667,3.2350766666666666,2.6140166666666667,4.74254,2.8794566666666666,2.19744,3.0125266666666666,2.847996666666667,2.0833366666666664,2.8991066666666665,3.4753666666666665,3.5311,2.946923333333333,3.20298,2.7591433333333337,2.57695,3.8790005,3.8790005,2.84022,1.9888633333333334,1.8689266666666666,2.6596100000000003,5.750603333333334,3.0683666666666665,1.9384366666666668,1.67215,3.0134333333333334,4.680675,2.4697333333333336,1.055088,2.644698,1.5282366666666667,3.7479666666666667,2.23516,2.60248,2.12467,3.5007,1.27657,1.6692733333333332,1.4814333333333334,4.244018333333334,2.5329,4.177105,0.9676222222222223,4.06101,2.2419966666666666,2.46277,1.9162839999999999,1.6422733333333335,3.3502666666666667,25.102048400432903,6.443363333333334,2.664896666666667,3.2243266666666663,2.29778,10.196942666666667,3.011426666666667,1.028935,2.4903166666666667,2.3875366666666666,2.0858,2.83859,2.54004,2.7865300000000004,0.9100490000000001,3.4956,2.52134,2.8405733333333334,3.01877,3.0568166666666667,2.11576,2.22551,2.9583933333333334,2.52114,2.218475,1.6717659999999999,5.433305,4.689875,2.3925825,2.7957,2.19713,2.4484566666666665,8.049041666666668,1.7690866666666667,5.1365,2.0124125,1.8890675,7.06736,2.9747500000000002,2.6264133333333333,2.5303,1.9450880000000002,1.4091823076923078,3.3315466666666667,3.32711,4.29,1.67758,3.976366666666667,1.4705775,1.4705775,4.41413,4.47558,3.086938571428572,3.086938571428572,6.338853333333333,3.34493,0.409025,11.253649184981684,1.2316533333333333,0.9279014285714285,3.5974391666666663,1.518836923076923,1.648365,6.467689999999999,3.805145,0.7363609090909091,2.1259466666666667,5.268106848484849,2.6860366666666664,4.476655,1.4292285714285715,5.8133,4.984305,5.22515,3.7414414999999996,2.06102,2.9009199999999997,2.7640100000000003,2.967026666666667,2.2590399999999997,5.237413333333333,4.80632,5.02475,2.05068,4.804175,3.912725,2.8336133333333335,2.3076925,5.41555,2.9888966666666668,8.57301,7.3510575,1.994245,2.33442,1.7246200000000003,4.469433333333334,4.469433333333334,3.5213,3.082686666666667,3.0823058333333333,5.1702,9.4989225,4.60271,2.413375,5.25795,4.50763,5.33375,2.0231000000000003,0.8054425,1.32118,4.486965,4.90979,4.063233333333334,3.09375,3.609833333333333,2.012566666666667,3.62113,4.264925,3.183895,5.5331,3.4065333333333334,3.759904,3.6191333333333335,3.4254333333333338,3.4795,6.31495,3.058575,5.6879,5.5858,3.28613,3.477625,3.477625,5.992466666666667,12.708505,3.574533333333333,6.13176,7.671320000000001,3.528345,2.3757,3.88635,1.2940166666666666,3.618225,2.376005,2.9084066666666666,3.1806133333333335,3.685366666666667,2.21234,2.3939133333333333,2.9122,2.5070633333333334,3.2358733333333336,2.9958533333333333,4.11657,2.4581666666666666,2.95375,4.026545,3.1288400000000003,2.48934,1.13253,2.0076475,3.0777300000000003,2.6907099999999997,2.6455733333333336,2.423503333333333,3.7533,2.4640166666666667,2.4522066666666666,2.8434866666666667,3.0047433333333333,2.8373733333333333,3.3234733333333337,2.61816,3.1043133333333333,2.8270199999999996,3.444532,2.5878533333333333,2.6383300000000003,2.5682566666666666,2.6702100000000004,2.78112,3.31486,3.1351433333333336,2.91811,2.0184075,2.0184075,0.7657516666666666,1.616984,4.284655,3.171735,2.47111,2.21234,3.4788666666666668,1.3357914285714287,2.8696633333333335,0.609254,3.6301666666666663,3.4286333333333334,3.2987,3.0178100000000003,2.701976666666667,3.010616666666667,3.2229266666666665,2.9973166666666664,3.538266666666667,5.28184,1.55208,2.5305766666666667,2.5693033333333335,1.7532666666666668,2.08318,3.2455933333333333,3.0552566666666667,1.774416,2.55767,2.60224,2.8562499999999997,2.699953333333333,2.8769266666666664,3.0413,3.8512,1.46878,2.9386733333333335,2.311053333333333,3.801,3.5488999999999997,1.9728775,1.7268233333333332,3.4503,2.79218,3.5386,2.5821166666666664,2.6715199999999997,5.15058,2.9183766666666666,2.10434,1.698498,3.3923,6.217816666666668,3.5018333333333334,3.5774000000000004,2.99232,3.5648999999999997,4.804251333333333,1.599138,1.150388888888889,2.7096066666666663,1.8784779166666667,4.60216,3.0970166666666668,3.4709333333333334,2.83105,3.201473333333333,2.346223333333333,3.527533333333333,2.4611675,1.681244,2.9375766666666667,3.436785,3.985175,3.01243,4.5026,1.5825075,2.55498,3.098625,2.978565,2.130306666666667,3.4321333333333333,4.023266666666667,3.9207666666666667,1.40383,5.7288310000000005,3.3064425,1.5902066666666668,3.660675,3.246135,2.962045,4.37591,1.96597,1.96597,3.3590999999999998,2.9091666666666662,3.07351,5.5025,4.46295,4.306294666666666,1.317658,2.925883333333333,2.7773233333333334,4.1525975,2.997716666666667,4.835678,2.7970433333333333,2.4478933333333335,2.5425400000000002,3.417475,3.94145,1.613528,3.1123333333333334,3.814855,2.4315275,4.7334,1.2695433333333332,2.737755,4.434815,2.607545,3.50959,4.128335,1.6158175,1.55934,2.529275,0.9520883333333333,1.910742619047619,2.2956175,0.45052214285714287,4.191705,2.20642,4.82303,4.32254,2.756455,4.68565,3.2919133333333335,3.2219200000000003,3.714866666666667,2.7914,3.2117766666666667,2.8079699999999996,3.2112866666666666,2.2728066666666664,0.7018307692307691,2.3010333333333333,0.6128571428571429,1.7987033333333333,2.4576,3.3354,3.2096133333333334,1.3354799999999998,1.185695,3.83357,4.62523,3.44827,3.2589125,3.38268,1.590945,4.454835,7.921535555555556,3.92423,6.328825,1.500725,4.01098,1.9971275,3.98128,4.213645,1.914825,4.196085,2.83026,3.7433,4.564315,2.190495,4.29456,6.5555625,5.29015,3.28943,3.099675,1.7125475,1.953395,3.902475,3.16064,2.931065,3.873615,3.8864,3.453755,1.5617275,4.295,3.238975,1.830065,4.227595,0.8845583333333332,3.60362,1.7010075,4.218835,4.6178099999999995,3.694375,2.8388475,4.074145,3.482535,2.0397475,2.348715,3.862033333333333,1.391155,5.8728774999999995,4.01312,4.41871,2.484155,3.146075,4.854495,4.269545,2.70476,2.70476,5.916294666666667,3.5808605,2.4917325,3.15817,2.2369766666666666,2.67438,3.34944,4.0181775,2.4855255,3.26638,0.9499040000000001,3.656415,3.000595,4.18469,2.46254,1.484635,1.60142,3.16205,5.774330000000001,5.36425,3.410855,1.3023025,3.723025,3.36707,0.7878666666666666,3.054185,1.02159,5.629927500000001,1.5219816666666668,3.767435,2.2899225,1.3354799999999998,3.44158,3.22206,4.34674,7.703546666666666,4.82441,4.3559975,2.544825,2.98214,4.6446,3.90161,4.74204,4.39851,0.9907825,1.72098525,1.12531625,2.17977,2.14193,4.678215,1.12531625,4.9653,2.00462,1.515205,1.515205,1.830065,4.334785,4.499715,4.276715,1.480862,1.480862,0.9462366666666666,2.69649,2.1638775,6.1749575,4.73741,3.385845,2.87163,0.9822442857142857,3.585845,2.68619,4.319035,3.74479,4.0840700000000005,4.0840700000000005,3.46214,3.88715,1.9534825,2.191725,0.9768766666666667,1.7991400000000002,3.64138,2.1074366666666666,3.3155150000000004,3.3155150000000004,2.50179,4.486005,4.536375,2.91948,3.405255,4.44003,2.5445366666666667,4.516816666666667,2.524235,3.474615,8.440765,5.0767,2.636605,3.0922,3.265005,5.0257,2.919988,7.580125,4.931646,4.541325,3.53759,4.147835,3.81872,4.59016,4.629595,2.110525,4.27881,6.83028,2.582305,2.2718902222222224,2.732405,3.327805,3.274255,4.58996,2.22079,1.3696366666666666,2.61904,2.7318075,2.64408,6.375778666666667,1.3732325,5.0821033333333325,5.0821033333333325,3.21699,4.235353333333334,2.95696,2.8524733333333336,5.36731,4.1289,2.07548,3.95003,4.140065,3.521259166666667,2.905195,2.915225,6.653835000000001,3.235165,5.3731,3.051005,4.62444,3.95146,3.86868,2.9091666666666662,1.8048566666666668,2.47406,4.183335,2.81198,3.075101666666667,3.059355,6.320725,2.45342,1.7587375,3.1281708333333333,2.65833,4.14257,2.580035,0.7878666666666666,2.956165,4.16757,3.847875,5.867585,3.045185,3.248115,3.0691133333333336,3.0691133333333336,3.562900833333333,4.55335,3.94019,2.276145,6.6629225,2.140465,4.512935,3.64169,8.52929,2.70403,1.3668733333333334,3.4638,4.391105,0.63494125,4.126,2.746365,2.824665,3.507775,4.514385,2.0800566666666667,2.422035,8.672295,3.33684,2.856175,1.5219816666666668,3.66935,2.608585,2.29868875,4.29243,5.7650950000000005,1.821275,1.229775,1.0564933333333333,4.047545,3.83589,3.229595,3.7056375,3.7056375,1.5617275,2.303415,2.9546180555555557,0.8212655555555556,2.767735,1.098145,1.5825075,3.54775,3.35069,2.43006,2.360225,2.2979208333333334,4.27954,3.145075,2.790515,2.785965,2.60223,4.214945,6.4560200000000005,4.142025,0.8617925,2.5363279999999997,8.58042,4.65027,4.221325,1.0595625,4.561451666666667,1.4354066666666665,3.0133075,3.0133075,3.631765,9.116548333333332,0.8789944444444444,4.694435,4.86542,2.4447033333333335,3.8599449999999997,4.8364,2.2432125,9.762894666666666,1.4666425,2.3841066666666664,2.861605,1.6139700000000001,4.1175059166666665,2.875325,2.994685,3.026674,2.78582,2.90848,1.1907166666666666,7.1887,3.95249,4.4311,4.14794,1.963625,2.8388475,3.471050833333333,4.330555,0.7114415384615385,4.38301,5.00485,5.04895,2.23643,1.275164,4.291285,4.213535,8.59772,0.8270692307692307,0.7163225,0.7163225,1.6548299999999998,1.4352099999999999,1.351526,1.8012833333333333,4.60043,1.19285,0.8383271428571428,4.259245,3.833725,1.563715,3.34287,4.6706,3.06887,0.6864779999999999,1.750685,10.09516,3.318351666666667,3.908045,2.25298,1.5028775,2.3469466666666667,2.66982,4.671645,4.55917,4.049735,0.9337,1.5213839999999998,0.920669,4.821525,4.22061,4.074525,0.8212655555555556,1.760126,4.05578,2.31658,5.120744166666666,1.0933675,4.606555,0.641405,0.641405,0.641405,10.04891,4.02705,1.098145,3.600195,4.62803,3.015425,3.304205,4.1901925,2.72985,2.0591255555555557,1.7890633333333332,0.6864779999999999,1.4743446666666666,0.5779055555555556,0.7931016666666667,1.17313,3.406705,3.92052,2.0776425,7.457130000000001,4.85634,0.7279122222222223,5.307,5.3744266666666665,3.25454,4.355015,7.677334666666667,3.775369583333333,4.85634,4.398325916666667,2.4782800000000003,4.477855,3.61949,7.134895,3.417105,0.450866,1.543978,4.16286,1.7118980000000001,1.229775,4.115015,2.550996666666667,1.59577,3.250145,1.650006,4.28768,4.44557,4.14478,4.732765,5.94553,3.319445,4.043135,1.02159,2.4518125,3.6112,2.972035,2.07548,3.972305,2.444215,4.75214,2.868645,2.28162,3.5285666666666664,1.6715879999999999,3.81213,0.8212655555555556,2.17135925,1.0564933333333333,1.45044,3.50854,1.3732325,1.17313,2.1930275,2.97136,7.73862,0.9337,1.0595625,1.241668,3.63568,3.67378,1.241668,3.92403,2.4518125,0.63494125,0.8212655555555556,1.6548299999999998,1.02159,0.45052214285714287,1.605368,4.272864666666667,2.4447033333333335,1.3597700000000001,2.846005,1.40383,1.4666425,2.616773333333333,1.7890633333333332,4.24462,2.616773333333333,0.7878666666666666,2.741213,2.48417,0.10038386363636365,0.10038386363636365,0.10038386363636365,0.10038386363636365,0.10038386363636365,3.5381666666666667,2.7054766666666663,2.71569,3.1799466666666665,5.3586,4.1108,1.9162839999999999,3.584445,3.54595,2.18234,4.993707499999999,2.550235,2.41503,2.416605,2.658465,4.6597,8.646866666666668,2.5636,2.3599733333333335,3.0999325,0.96063,1.36135,2.4227233333333333,1.7734066666666666,1.347835,2.6620933333333334,2.1987166666666664,2.8321633333333334,3.0472,2.62859,4.343535,3.555705,2.6863266666666665,1.405276,3.711755,3.814925,1.5421666666666667,1.4047399999999999,1.4047399999999999,1.4047399999999999,3.518775,2.8508366666666665,1.09074,2.2466233333333334,1.2374414285714284,4.27815,1.6232933333333335,7.103745,3.5912575,2.98063,3.1602500000000004,3.1602500000000004,5.3476566666666665,2.6962,4.45419,5.0553,2.1600425,3.4030666666666662 -GSM1946772,0.0,1.9075175,1.9075175,1.6019833333333333,4.725715,6.0858,2.5121788157894738,1.7132633333333331,7.855030710784314,4.682025,3.2836433333333335,2.611285,2.18108,3.42262,4.553855,1.921058,1.5455780000000001,5.17495,2.4390366666666665,2.385805,4.834765,5.283801666666666,3.861055,2.303395,1.870878,4.175355,4.80803,4.19675,0.7010491666666666,1.5889888888888888,1.9987488888888887,2.065455,1.5870025,1.1659371428571428,0.6990008333333333,3.148872142857143,1.4947925,1.9660375,1.241505,2.16687,1.15728,1.0737975,1.117258,1.525516,0.9079520000000001,0.911014,0.7309840000000001,1.2025771428571428,1.7856100000000001,1.81976,1.5145339999999998,1.999662,1.6853500000000001,18.763232416666664,0.38167066666666666,0.812162,1.100632,1.86687,1.459306,1.7476559999999999,1.0697542857142857,1.0697542857142857,1.0697542857142857,1.150635,1.0283060000000002,4.77786625,1.1696425,2.4860775,2.0640475,2.5991,0.988063,2.2114525,2.3586225,1.9770375,1.4710825,2.032955,1.568485,1.6665175,2.399296666666667,3.814235,4.966335,5.31395,1.7290400000000001,4.736565,4.565088333333334,4.308945,4.112945,1.10624625,7.41181,0.572795625,0.572795625,2.32868,1.1798014285714284,16.22225,4.716145,5.5865,5.67515,4.15955,4.37983,5.5107,0.48069666666666666,2.3977187499999997,1.8882275,2.405935,4.602305,3.89754,1.5857375,3.4218666666666664,3.4350666666666663,2.9120899999999996,3.7406666666666664,3.400095,4.900755,3.0426564999999997,4.776765,3.0202033333333334,0.7152781818181818,1.80398,2.7399,5.0821,3.77281,0.58199875,3.69948,4.009155,0.8247025,4.74228,1.722122727272727,2.25625,2.9691,2.1271425,4.35244,5.78545,3.353295,2.8408833333333336,3.4545,3.04101,4.297535,3.1875433333333336,5.7464,3.48264,4.61499,3.313795,2.390085,3.63024,2.590825,6.914323333333334,3.578105,3.931865,5.73095,3.206895,5.1861,0.7593333333333333,9.983909523809523,3.65248,1.8824100000000001,1.9420716666666666,3.3731666666666666,2.310515,5.0857,5.65225,2.2810225,5.175404166666667,2.71983,4.619415,2.2810225,3.0196533333333337,4.348805,5.433180833333334,4.04966,9.037233333333333,4.099245,5.19955,2.866355,5.0884,4.80356,1.8819,8.1715,4.524485,4.190705,3.56834,3.70057,3.383945,2.30655,6.133645,2.276585,4.097465,3.99618,5.24455,4.995855,3.915115,1.5676733333333335,2.72438,2.94268,1.967305,1.967305,6.255967619047619,3.04778,1.9255166666666668,4.32335,4.919995,2.91215,1.4793566666666667,0.8519244444444445,6.85725,3.028395,7.035,3.143845,4.135565,3.69565,2.99329,3.749855,3.3917,3.954715,4.188705,5.9174,2.764115,3.66532,9.32324,5.06585,3.6595333333333335,3.20935,2.8702533333333338,4.023433333333333,4.371301666666667,1.895945,2.82776,2.41438,1.856856,1.72257,2.54827,1.6728625,1.9479025,3.141033333333333,2.9027766666666666,2.3607666666666667,2.76777,4.565088333333334,3.40783,3.251225,3.63196,4.488135,1.44543,1.8314,2.8586605714285716,2.16444,2.54754,2.220396666666667,3.4351333333333334,1.846402,1.3108266666666666,2.71232,0.660102,1.6578366666666666,0.5230188888888888,0.5230188888888888,1.4844566666666665,2.622133333333333,2.1513533333333332,1.3164966666666666,1.4884266666666666,0.32162846153846153,2.6840533333333334,0.660102,1.1918,0.1923535135135135,1.4381666666666666,1.98584,3.4727,2.31326,2.2808100000000002,2.5212,2.17273,2.501113333333333,2.50908,2.3561666666666667,2.1781099999999998,2.7274233333333338,1.9093566666666666,2.73553,4.111665,0.6632466666666667,1.76834,2.46894,1.9446533333333333,3.20604,1.4768919999999999,2.5720466666666666,2.23116,4.358656666666667,2.0530066666666666,7.325081428571429,1.7141714285714287,2.96996,2.29445,2.132605,3.4044000000000003,2.0177775,1.9472925,4.279755,2.6759866666666667,2.1796925,4.120225,4.158015,4.32319,3.65736,2.204065,3.274335,4.563637999999999,3.852535,3.96489,4.35111,4.59854,3.049715,4.30103,3.45214,0.877335,4.985605,1.1892099999999999,5.1248,3.71418,5.763427,3.636715,4.16624,0.91913875,2.053835,3.58724,4.062815,0.8279542857142858,1.2243552991452993,2.036947857142857,3.8769657142857143,5.444447500000001,5.619875,2.3279925,3.187145,5.36505,0.3252821428571429,3.408535,2.380745,0.986735,4.899835,1.96156,11.708179999999999,1.28525,1.319865,2.429933333333333,2.2926,2.2134786842105263,4.966073684210526,0.4266836842105263,1.6552499999999999,2.7547033333333335,1.052895,3.8062,1.0354528571428572,5.44535,3.90444,1.9528033333333334,6.1994,5.9985,2.5073,1.1272185714285714,4.426575,5.2915,4.32977,0.8813045454545455,8.288653333333333,3.0489033333333335,4.360255,2.60777,2.5791166666666667,4.575955,2.48718,2.7605566666666665,2.11851,2.4791133333333333,3.61037,2.995886666666667,0.33912875,3.9687,3.803805,3.80267,3.6623,4.481075,6.130081,3.980605,1.52958,5.65395,4.614885,4.394515,4.35436,1.088215,2.4967799999999998,3.27745,2.5372333333333335,15.891645,3.24151,3.6668,4.25708,5.87645,2.528255,5.238341666666667,1.650575,0.7575833333333333,2.839775,3.562225,3.777585,4.207215,6.565238333333333,2.9968299999999997,2.180435,2.11227,3.4353,4.82306,2.28501,0.36276120535714285,2.7585573913043477,1.95477,1.13988375,0.48838990100931673,0.6140185966614906,0.36276120535714285,0.36276120535714285,0.36276120535714285,1.0774925,1.33651,0.92017,1.40125,4.4019375,0.2112529411764706,11.469026747835498,3.577033333333333,2.8513566666666663,4.251855,4.466705,3.884195,2.054625,4.83407,4.115553333333334,4.247315,4.07276,0.6881123076923077,3.4339,4.3501641025641025,0.6017957142857143,3.3261,2.9829233333333334,4.663755,0.5326009090909091,1.786835,4.371975,3.28362,1.984225,1.8146333333333333,1.61177,3.2563133333333334,3.730285,2.952235,2.756736666666667,5.55295,5.77815,4.89727,3.5132333333333334,3.52074,6.778091666666667,3.8716666666666666,5.0655,0.40971142857142856,3.2190933333333334,4.014723333333333,2.0810833333333334,2.58157,2.893406666666667,5.670023333333333,0.6037116666666666,2.88195,4.57219,4.65275,1.0291457142857143,4.791745,2.920635,4.97996,3.0830800000000003,4.38614,3.43195,4.169055,1.1119933333333334,3.29955,2.62068,4.712055,4.37413,4.79889,5.82335,4.28476,2.66247,5.96903,2.4149499999999997,3.37193,3.224126666666667,2.8163400000000003,2.8346466666666665,2.1590166666666666,1.8766580000000002,1.5371033333333333,2.16594,0.7741185714285714,1.5624733333333334,2.5680066666666668,2.0851933333333332,3.1246166666666664,3.2915233333333336,2.9606766666666666,0.9866211111111112,5.1641,3.529166666666667,5.383834583333334,2.5962579166666666,3.3563666666666667,2.8885366666666665,1.7672333333333334,1.7672333333333334,2.5149702597402595,2.5149702597402595,3.459240616883117,0.5253685714285714,1.63884,2.074246666666667,3.7247,2.170354761904762,2.170354761904762,2.170354761904762,7.774328035714285,4.498161904761905,0.9773,3.10436,5.343394166666667,2.4375425,5.0477,3.321305,2.161205,4.37456,3.064363333333333,3.2134699999999996,1.31735,1.8905,3.2487866666666663,2.4466033333333335,2.765423333333333,5.83575,4.300566666666667,3.9319666666666664,5.297593333333333,2.050116666666667,2.7293000000000003,3.3219433333333335,1.0941811111111113,2.068173333333333,4.625028,7.934715000000001,1.511115,2.913235,4.91192,1.882024,1.8617575,1.8617575,1.0587875,4.81706,8.03823,4.21009,5.361949,4.51509,1.7723833333333332,4.147285,3.40489,4.885445,5.215276666666666,0.35515526315789475,2.73551,2.486575,4.198475,3.9232,1.950356,1.8959625,2.577325,4.41683,4.019785,3.37044,2.36608,1.5190860000000002,6.62877,5.70055,4.755745,3.650405,5.55565,4.8408,5.00995,3.78841,3.5256825000000003,1.914245,1.14765,2.796035,3.965,3.69243,5.4399275000000005,5.76764,2.392865,1.77109,2.66801,2.70823,3.1471966666666664,0.7009307142857143,1.99403,3.56246,1.192325,5.0805,3.24515,6.125855,1.2966874242424242,1.2966874242424242,4.298705,3.77647,3.61431,5.63855,2.723903333333333,2.275866666666667,3.890675,3.22566,2.15058,3.4532000000000003,2.55623,4.09507,3.51795,4.011595,4.762065,1.1077655555555554,2.762615,4.2981,4.601235,3.15679,2.3888233333333333,1.857655,0.8516400000000001,0.8516400000000001,0.8516400000000001,0.8516400000000001,1.64779,3.8077249999999996,3.8077249999999996,1.7504966666666668,6.801035,3.412455,4.32256,3.07626,2.754625,4.958285,4.038215,4.8108,5.307,1.7792175,4.113395,3.80269,2.838955,3.666625,3.42493,2.61998,4.442015,1.728695,4.753475,1.748555,3.5373787500000002,2.946465,1.7739275,1.1533583333333333,2.673415,4.534565,1.31931,0.8563222222222222,3.95364,1.3496325,5.071561333333333,4.365965,1.3782142857142858,3.610405,0.7457744444444444,2.62709,2.684786666666667,2.54617,2.64535,4.095225,2.9556991666666663,4.997235,5.595,4.23853,4.59508,2.3598375,1.3221157142857145,4.04018,5.15165,1.420815,1.420815,4.0566,0.26361066666666666,2.4705066666666666,0.26361066666666666,0.26361066666666666,0.26361066666666666,0.26361066666666666,5.29155,2.569456666666667,3.256935,3.53389,3.1882800000000002,4.5973,2.5948266666666666,0.9537525,0.9537525,0.7953733333333334,0.7953733333333334,3.818275,1.68724,4.330885,1.7860675000000001,1.7860675000000001,5.71298,0.5468207142857143,2.2714125,7.331516666666667,4.865655,3.176325,3.56367,0.9851,1.99402,2.0492825,4.78209,4.42986,4.255765,3.75539,1.3006328571428571,2.645505,2.04616,7.45439,1.69108,4.55283,4.828185,3.018025,3.896465,5.90969,7.887745,4.06938,4.633465,3.899215,2.524725,3.085935,2.303835,2.30629,1.898315,3.727105,3.825625,5.698065,6.55592,4.506535,0.91962,2.11059,3.97331,3.763555,2.12802,4.40131,3.36209,4.7108,1.67394,4.177533333333334,1.5357366666666667,6.441766666666666,2.81577,2.4204,2.481193333333333,2.29356,3.550266666666667,3.3283,3.3679,2.9529366666666665,3.5557666666666665,2.3243400000000003,3.586105,3.09696,3.182725,0.386736,3.013345,4.1368,2.68915,5.82935,5.15165,4.782915,7.129484,4.871935,2.1553033333333333,4.448225,5.3297,1.6694833333333332,4.83568,5.35975,5.26215,4.94756,3.21191,5.58015,5.17075,3.86061,5.431247333333333,8.041625,4.8595,1.3017433333333333,1.4495616666666666,2.673885,1.941284,4.746785,3.985735,5.488425,2.53947,2.3679,2.7199766666666663,2.47535,2.44422,1.0202222222222224,0.49099294117647063,4.09384,4.028885,3.5886333333333336,4.0214,2.918845,3.4243333333333332,5.532618333333334,3.106503333333333,0.5988117647058824,3.28019,5.57915,2.09961,1.638844,3.76215,3.30503,2.429206666666667,3.9164333333333334,4.115365,2.743093333333333,2.2215133333333332,2.3550666666666666,2.4562399999999998,2.661545,4.149308333333333,5.167911666666667,6.514006,1.6076419999999998,5.1227,3.5481379166666667,5.413468583333334,2.680543333333333,3.156585,2.29469,1.9435333333333331,1.25719,1.25719,2.51554,2.3705966666666667,2.66836,4.381965,1.655796,2.3729,1.908945,0.503733125,3.73139,0.6112925,1.00758625,3.201225,4.404075,3.777235,1.6838925,4.737585,3.3787000000000003,0.8059357142857142,4.613835,3.9195023809523812,3.3436333333333335,2.45557,5.03405,0.2881341379310345,2.242029666666667,3.062685,1.4694875,3.65707,6.72625,2.319745,1.3794199999999999,4.22831,3.771,2.8029966666666666,2.8029966666666666,3.46905,2.25775,5.01075,5.703943333333333,5.1187,0.9715855555555556,2.87697,2.3936066666666664,4.834115,5.3531,5.50935,4.95997,4.393633333333333,3.8689,3.8363333333333336,3.6734666666666667,4.2892,3.026783333333333,3.22789,0.6464514285714286,2.4934175,2.539375,3.54277,3.2901666666666665,3.4430333333333336,0.7529566666666666,3.077775,4.239401,4.664065,6.052,5.1476,2.0176375,2.0176375,0.8825419999999999,3.18335,4.70246,3.97457,4.706592857142857,3.405975,4.90163,0.5819554545454545,3.243355,4.02523,4.38019,4.003636666666667,0.8139357142857142,3.143225,4.123945,5.85725,3.722455,5.06245,2.707105,4.16605,1.685175,0.9953585714285714,2.7451866666666667,5.42635,4.41096,3.164745,1.4853016666666665,3.985335,2.5542,2.9276,2.7863806666666666,3.1020266666666667,4.488393333333333,3.1662933333333334,1.77091,3.6371333333333333,1.4755064285714283,2.911376666666667,2.5399966666666667,2.43025,2.91116,3.2136533333333333,2.362626666666667,3.0295633333333334,3.79123,3.21481,3.8144616666666664,2.3820433333333333,1.703355,4.137106666666667,2.9818200000000004,2.420096666666667,3.8144616666666664,2.30451,0.831850909090909,2.4807525,1.0698622222222223,2.25858,1.56921,0.9422636363636364,1.9506425,1.9035775,2.62127525,2.777575,4.761175,1.607485,4.927865,3.2676166666666666,1.607326,2.5794466666666667,2.592423333333333,1.6681566666666667,2.84492,2.8826133333333335,2.796158409090909,2.1289175,1.808898,3.6103666666666663,2.2851033333333333,3.084193888888889,3.199536666666667,3.2547599999999997,3.7360666666666664,2.2379966666666666,4.160166666666666,3.517533333333333,3.8082333333333334,2.99473,3.6123666666666665,3.7227333333333337,1.8804766666666666,10.442,4.36477,4.398605,3.27611,2.80773,2.013405,3.9678,1.726054,4.089975,4.42951,1.430548,2.5407800000000003,1.1705883333333333,2.39157,1.7130166666666666,2.58352,5.02135,3.2845666666666666,3.572115,5.06895,0.8269975,1.590942,1.03417,3.646665,10.901468333333334,3.6626999999999996,6.811,2.0301425,5.24355,4.584395,2.526525,5.2398,0.27769705882352946,0.8210385714285715,4.700705,4.52002,7.427845,2.110745,4.641935,5.85285,4.54398,4.676865,3.38578,4.60819,3.694945,5.968133333333333,3.762415,3.4152,3.11153,2.0923599999999998,1.8213833333333334,1.3966456250000001,2.3527633333333333,3.9347,4.788895,1.546242,9.0434,2.4113,2.9541424999999997,1.081926,1.081926,7.387981666666667,3.062015,2.3222275,2.2323325,2.64505,2.08356,0.9207633333333334,3.9205066666666664,2.6912333333333334,0.5246357142857143,1.81909,3.3434739999999996,3.3434739999999996,1.1713066666666667,2.491,2.323253333333333,2.8182133333333335,1.2965975,1.7595166666666666,4.823181333333333,2.784996666666667,2.768225,1.3059825,1.3059825,4.368405,5.7936,4.74834,3.13067,3.797105,5.74899,3.05434,2.9146366666666665,3.2418266666666664,3.92642,1.16432,3.431566666666667,2.67425,3.77038,2.1053433333333333,4.86327,3.464715,4.11859,3.690395,5.614164000000001,0.9451011111111112,1.9815,2.054765,3.64131,4.48899,3.68236,3.97288,3.705315,2.79296,1.70377,4.40308,3.31713,3.52197,2.3793366666666667,0.82473875,3.296295,4.341135,4.970995,1.1225766666666666,3.084656666666667,2.72643,2.0129533333333334,1.8472639215686275,1.8472639215686275,1.2675833333333333,2.17211,1.0796457142857143,1.384698,4.735235,4.480655,0.49113809523809526,3.866125,3.4423999999999997,3.957495,5.6281,0.41242650000000003,9.671600000000002,5.78945,2.936385,4.35755,4.841685,5.534486428571428,5.19565,7.0595300000000005,0.6904690909090909,2.8877666666666664,5.41225,2.9748866666666665,1.78249,2.03792,4.549685,5.461273749999999,2.445700892857143,3.1694999999999998,3.171476666666667,2.080185,4.56724,10.981449999999999,8.77783125,4.0614,4.559615,3.0314191666666668,3.142445,3.719205,2.0300599999999998,2.94904,3.591165,5.35775,4.88282,5.3944,6.758926666666667,2.4518233333333335,4.44622,4.785105,4.73234,4.821835,8.1794,4.1697125,6.1342,3.447555,2.788825,2.865415,5.99615,3.742175,5.05705,2.17899,3.2298333333333336,3.33054,6.07855,4.172045,3.98278,1.430626,0.900565,2.4670875,0.5799439999999999,4.083485,3.627785,3.46716,2.8916,2.1760333333333333,2.988375,2.587675,2.800156,1.7602319999999998,3.05752,2.84885,2.3414925,2.54575,3.651852,1.4367999999999999,2.9820349999999998,5.1842,3.8363,1.29514,2.671936666666667,3.7504299999999997,3.7438849999999997,1.5987625,5.75365,5.65345,2.3092633333333334,2.92935,30.956384121409634,3.381266666666667,1.7360499999999999,4.017166666666667,1.5515266666666667,2.60976,2.924493333333333,3.4692333333333334,1.9337625,2.836875,2.1214925,3.97356,3.5238,2.50515,1.4724275,2.2313,2.872,0.3862795454545455,1.1564175,2.968996666666667,1.855958,3.34465,1.5987625,2.1841466666666665,25.735041833333337,5.18715,3.910915,3.5636,2.49666,2.569,2.74906,2.3749975,3.6956,5.257175,5.3334,1.59299,1.8906079999999998,2.11275,2.433891666666667,3.8444325,5.4519,5.07865,4.549095,0.20011595744680852,5.05455,4.8401708333333335,3.72511,9.11514,1.035495,1.035495,2.9997433333333334,2.79595,5.61145,2.0043555555555557,1.0471522222222223,4.64438,1.8932425,4.157765,4.28434,3.35948,4.14448,3.99114,5.37865,3.070825,0.7231944444444445,3.17592,2.1157325,4.434045,7.912294999999999,4.329295,1.7725266666666668,1.7725266666666668,7.032115,4.920495,4.10405,5.4508,2.285746666666667,5.294136666666667,1.2973433333333333,1.6761366666666666,2.9428066666666663,2.6264266666666667,2.92057,2.717363333333333,3.866065,4.41997,3.973975,5.31355,2.329865,2.78575,1.99609,2.75985,2.616175,2.140775,2.130505,4.947016666666666,1.862085,3.347874761904762,2.319923333333333,3.031,2.6096,1.8643233333333333,1.4556857142857142,0.975985,2.51248,4.076966666666666,0.73259,4.673505,1.7906625,5.763157916666667,1.9936125,1.439565,1.476375,1.5473633333333332,5.781624444444445,1.9031680000000002,3.1120966666666665,3.796666666666667,1.263075,1.7256875,4.844104,3.2124066666666664,1.7614066666666668,3.713566666666667,2.94618,3.022956666666667,1.2889701785714287,0.2919408333333333,0.2919408333333333,0.2919408333333333,0.2919408333333333,0.2919408333333333,3.87598,2.7404766666666664,2.582425,3.4749,1.36994,2.664613333333333,3.0643999999999996,2.4437,3.63299,2.79061,1.6462533333333333,2.9289166666666664,3.2302633333333333,2.2578325,1.9880275,3.62693,2.7116399999999996,3.844466666666667,5.0011,2.655553333333333,2.5690166666666667,2.50355,11.128835,5.02445,4.58578,5.2878,4.549975,2.789986666666667,5.0014,4.09382,4.5712,5.620245000000001,4.10906,2.949355,2.3894725,3.76894,5.189010857142857,3.630395,16.988097595238095,1.15012875,4.443545,0.8399222222222222,1.3359125,3.007725,4.64272,4.320705,5.00265,1.6531383333333334,2.4696375,4.2375,1.9778,4.665935,3.2532417857142857,2.6846366666666666,0.5732733333333333,2.9628033333333335,4.731405,2.486155,2.4376925,2.21908,20.377994166666667,1.44569,1.4063,2.6121366666666668,0.29845846153846156,1.788475,2.93727,1.9672433333333332,3.095326666666667,2.7213,7.828085,1.9094775,2.591,2.2495225,2.1752525,1.6499249999999999,3.500033333333333,2.95756,4.13681,3.3547999999999996,1.987445,2.6253583333333337,3.2069488888888893,4.981375,0.4324783333333333,3.7437666666666662,3.1066000000000003,2.998785,2.120525,3.6892604999999996,3.62036,1.62786,2.2259066666666665,2.1326300000000002,1.3869433333333332,1.9168933333333333,3.46324,3.25579,0.7650283333333333,3.23529,4.964885,4.34558,2.27643,2.27643,2.8990899999999997,4.57021,3.161715,3.26882,2.330115,0.9095727272727273,4.474005,3.53766,6.33895,3.77069,2.323114,2.323114,1.2907575,3.43953,5.1257,4.46037,4.234615,3.0239366666666663,2.317343333333333,4.347025,3.63787,4.182405,2.888063333333333,2.300123333333333,4.202616666666667,3.2021833333333336,2.5705933333333335,1.9498166666666668,3.79992,2.7508,1.60893,3.63787,3.45918,4.658375,3.7378,5.0939,4.52692,6.5763805,4.00553,2.1207599999999998,4.81781,3.049095,7.372615,2.5948966666666666,1.3400299999999998,4.537075,3.666,5.0753,0.5228385714285715,0.8608416666666666,3.6213,3.59321,2.1666842424242425,4.2272,2.68334,2.855175,8.863422,1.931972,1.236696,3.784245,2.508305,3.262445,5.1466,6.276273333333333,3.1006183333333333,2.1003433333333335,3.077113333333333,1.7252233333333333,3.3868333333333336,9.000050246305419,0.855085476190476,1.049725,4.7428,0.49239866666666665,1.759955,2.25788,2.88895,3.0467,3.016925,4.72787,2.38474,13.63166,4.966245,2.49558,2.49558,4.126895,0.8311583333333333,5.362406666666667,4.073545,4.190855,6.305400000000001,3.49679,5.2771,1.4342183333333332,2.79178,2.61388,2.53231,3.02203,2.61484,3.12945,3.533795,3.58121,3.028115,2.940395,2.67919,4.373845,4.58729,3.101976666666667,3.3313633333333335,4.9269750000000005,4.20509,19.008011071428573,12.09803511904762,3.429882142857143,0.7076766666666666,1.506342857142857,4.460825,3.410065,3.1086515705128206,1.76951,0.8893822222222223,0.6637308333333333,0.6064214285714286,2.0840075,1.642542,5.109633333333334,3.3540666666666668,0.7103545454545455,3.268115,2.321135,1.84819,1.790734,6.79428,1.557294,4.566515,3.255345,3.0571966666666666,2.21903,2.58887,2.53248,0.8166390909090908,3.04977,3.215116666666667,4.010820666666667,3.08388,4.786051666666667,3.586485,3.19796,2.39957,3.340065,6.99023,2.186035,2.4908575,2.66395,1.6045375,2.6537,2.1747725,2.755125,0.9423870000000001,1.412575,1.08460875,3.023965,4.378575,6.0276,5.46085,3.34748,2.248435,2.853625,3.3463999999999996,7.63953,1.1511799999999999,0.37974875,2.873285,1.98325,1.516738,3.455598,1.2492100000000002,1.8886180000000001,3.9856733333333336,2.9608480000000004,1.2303283333333332,1.7975866666666667,3.7952216666666665,3.47373,4.580435,4.165245,2.05455,5.02675,4.16436,0.7789307692307692,4.670095,3.84768,4.50502875,3.3591333333333337,2.435675,1.328238,1.2134825,3.48073,2.727525,3.329145,4.18053,2.71276,2.77174,3.23938,3.709765,4.634735,2.432735,2.578705,4.516655,5.92275,0.57519125,4.455785,1.88308,3.515255,4.092866666666667,2.28035,3.141595,2.204065,1.99341,2.50735,2.3954966666666664,1.7850066666666666,4.631005,3.68772,1.320392857142857,7.31957,1.0430333333333335,3.84807,1.7831566666666667,4.72485,4.28875,3.2562166666666665,3.198125,4.097295,8.29887,2.82269,3.550765,3.863275,3.57406,1.6703675,7.88641,3.6746,4.026395,1.58973,4.039505,3.007095,1.0972575,2.09918,4.274135,2.339665,4.23794,5.03736,4.2034525,4.668275,2.280545,5.245,3.944965,3.5878,2.524896666666667,1.549846,4.381075,6.07615,4.61428,4.4793,2.907755,2.3383525,3.87176,3.38668,1.175946098901099,4.134085,4.720280833333334,3.887285,2.7376,3.5639,0.43741285714285716,0.43741285714285716,4.73417,4.33364,4.22701,2.279595,3.58115,6.22415,0.8277319999999999,3.977595,4.752115,4.77773,4.90809,5.0509,1.7713025,2.84724,2.09294,4.294365,0.68809375,4.093175,4.143585,2.719715,2.8696266666666665,4.305175,2.233325,3.302515,60.60980742640693,3.303535,2.5968766666666667,1.633115,3.213515,3.93851,0.86275375,0.97626,2.164525,2.164525,1.3014860000000001,3.33209,2.344835,3.766433,7.43292,2.9141933333333334,1.2895857142857143,1.370115,2.747526666666667,4.081389166666667,0.941005,1.874995,1.2009919999999998,2.05792,4.34221,4.246455,3.19744,20.806123735930736,3.711945,3.85262,3.192055,2.0741366666666665,2.87527,3.131775,2.6246,5.44516,1.448898,4.077535,3.252379869047619,5.932314861111111,1.957955,2.57729,1.837895,4.46182,2.5225233333333335,2.157855,2.04423,3.855221666666667,3.3553,3.39601,3.990605,4.47168,2.54205,2.651185,2.81377,2.638755,2.9526166666666667,2.243215,2.0756075,3.325305,1.141105,3.30551,4.91134,2.529415,4.750135,5.05475,5.422533333333333,1.9730633333333334,2.1451,2.64918,2.691005,3.92586,3.22062,4.58841,0.7129914285714286,4.026813333333333,3.13074,3.76644,2.44846,1.847326,3.8005899999999997,1.1785222222222222,2.91313,4.34663,1.110802,3.56395,3.817765,4.72428,6.50881,2.1677,3.1115,2.65623,4.023633333333334,3.0956966666666665,2.4673646666666667,3.077643333333333,2.407223333333333,2.4869666666666665,1.2786433333333334,2.108205,2.108205,1.8408866666666668,2.0808433333333336,1.7912933333333332,2.5212,4.03494,5.62815,4.84211,1.638865,4.448,3.903495,3.50918,4.14208,1.92191,1.70109,4.649048333333333,1.824625,4.22475,4.004205,3.569025,2.40071,3.583920625,3.203535,2.948655,3.47003,0.14659632653061225,2.5177433333333332,7.63267,1.517576,3.35644,3.167315,0.9671857142857142,1.254265,1.880435,3.905535,2.85038,7.09891,3.732575,3.749295,2.95228,2.750815,3.417,3.398855,3.988855,3.274355,2.81335,5.60325,4.03662,4.239805,2.705966666666667,1.94183,3.42075,4.62965,2.620145,2.90841,2.01685,2.56287,4.569915,3.72474,2.62508,4.839725,5.4068,2.66216,4.575705,3.95583,3.59573,4.47026,3.558265,3.153445,5.12068,4.677565,5.0286,5.1211,4.53885,5.2960650000000005,4.358065,4.149215,1.2831540000000001,6.6585,2.461655,4.483925,4.005945,4.001735,3.2265866666666665,1.9185100000000002,2.1429733333333334,2.4432066666666667,1.03092,3.4875333333333334,3.859166666666667,3.0929966666666666,2.1158933333333336,3.66151,4.239005,2.7213100000000003,0.5412958333333333,4.34819,4.430455,5.1296,4.815165,3.69363,4.67059,5.08095,5.1299,1.4091333333333333,0.9738923076923077,2.8028633333333333,5.28555,5.98745,0.491015625,2.65992,2.50924,3.39348,4.478,4.005966666666667,2.0843425,5.85165,3.544885,4.604015,2.94045,6.6363,5.402,7.028895,0.5805316666666667,4.254535,0.9364079999999999,2.275475,4.1451,3.1529066666666665,1.3528133333333334,2.35446,4.213805,3.553815,4.38279,2.11409,2.2069025,3.125275,4.53551,4.333495,3.96424,1.6402899999999998,1.199187,6.0093,2.3528675,7.777100000000001,4.3711,3.544595,2.2748825,1.5664825,4.36042,4.91878,1.78298,2.34037,2.565325,2.5177433333333332,6.6651875,3.0435783333333335,2.8482000000000003,4.3209925,3.94081,1.9508233333333334,3.07806,7.069235000000001,4.50967,5.4774,0.5878,3.464495,4.35181,4.936126785714286,4.01313,4.70165,2.89201,2.74771,3.18579,2.86085,3.6086203333333335,1.974384,5.480104,4.8945,5.04815,3.8167,3.34324,3.268575,2.27825,1.291715,0.9100825,2.78688,2.419895,1.1115416666666667,2.62827,4.814805,4.69192,3.592195,4.155345,17.149001785714287,4.069515,4.36286,4.20246,0.6857791666666667,5.1323,4.785515,4.24044,5.0145,5.3622,2.06289,3.67855,3.38076,1.445656,3.17626,4.96046,3.3858333333333337,1.5716240000000001,3.72768,4.80721,3.960245,5.03075,4.947495,5.7067,4.03318,2.899376666666667,4.137175,4.46249,2.76722,3.114603333333333,3.041846666666667,1.6555645833333332,5.01715,2.7172878571428574,1.9309133333333335,4.001265,2.23578,4.34425,4.137106666666667,2.317795,2.849685,4.581115,3.71982,4.62444,4.52225,5.1812,4.940627,3.46384,5.40995,2.775081666666667,3.58688,4.07632,1.51827,4.444535,1.0264883333333332,4.51942,3.170845,0.9670571428571428,3.78364,2.016795,6.4199649999999995,2.4275994285714284,2.4275994285714284,2.4275994285714284,0.7200933333333334,1.2726533333333332,1.73477,3.329595,6.08552,3.2491288888888885,1.853525,2.2283475,1.6937233333333335,3.72689,2.33198,0.42763384615384614,1.75113,2.11719,2.788495,1.922795,2.65979,2.33289,2.07132,3.821765,3.211866666666667,3.463405,3.01607,1.98599,6.49419,2.03594,4.492885,3.784235,6.498803333333333,1.6599733333333333,3.502625,3.885705,3.651135,4.046465,2.78505,1.913405,3.835395,5.897248833333333,2.091965,3.53319,3.16439,2.08698,4.959295,4.363995,2.61144,2.216005,3.6212125,6.126882142857142,6.16075,3.106685,2.45303,2.698205,3.06934,3.05999,4.05845,1.3707275,2.829465,4.715425,0.86561,3.7102,3.779995,3.702595,3.28746,2.439285,3.28461,1.994365,4.47872,8.216763333333333,4.429095,3.291955,3.26067,0.9914175,4.58189,2.30353,4.36509,5.6179075,4.11713,4.514735,10.912475,5.0723,4.0561,1.4771525,0.6870983333333333,2.735665,3.732635,3.41664,3.522815,2.1688366666666665,2.3989066666666665,2.0138366666666667,1.1769683333333334,1.1769683333333334,1.9153933333333333,2.44548,1.9570566666666667,2.324856666666667,3.12096,2.1484033333333334,2.2905966666666666,2.81546,1.3687533333333333,2.3167933333333335,2.11528,1.8646900000000002,1.52613,2.528703333333333,0.67448,9.854642083333333,0.67448,3.31408,2.0566683333333335,1.6776099999999998,4.40417,4.20931,4.11146,4.483305,2.08433,2.88325,3.240346,1.95693,3.316143333333333,2.9484066666666666,2.6384233333333333,2.9727766666666664,1.7404866666666667,5.7132,6.450311238095238,3.2481566666666666,3.4660666666666664,3.448,2.77032,2.898343333333333,1.1659371428571428,3.6443999999999996,3.5706,4.07332,6.02265,4.250475,2.7764,3.6552333333333333,3.00313,4.150705555555556,4.156135,2.56584,3.845545,3.3904666666666667,3.15849,4.863,3.27232,3.815965,6.346826666666667,2.335506666666667,2.5024666666666664,1.7313066666666668,1.3548,5.038953333333334,3.495726666666666,2.36556,2.0628733333333336,1.9012066666666667,4.537025,3.63175,2.80733,3.3777666666666666,3.322843333333333,3.4843333333333333,3.4609,3.6142,3.114716666666667,0.60606875,3.7428333333333335,2.5353866666666667,2.636406666666667,3.66196,4.59167,4.318345,5.11165,2.87086,3.8766849999999997,1.107805,2.93656,2.93656,4.562985,3.086855,3.63261,3.936865,1.673785,3.327935,3.781475,1.1343728571428573,4.066001666666667,3.532369238095238,2.5718306666666666,0.362114,4.60916,3.378945,6.58845,3.44121,6.39535,3.49549,3.84407,4.009715,1.8665170833333333,3.191075,4.05781,3.45682,3.502466666666667,3.1483233333333334,5.53931,2.074955,0.9599425,1.9169966666666667,1.6541333333333332,5.30513,2.33237,2.3941033333333333,1.764665,4.291285,3.977415,4.12982,0.542272,4.34416,3.782495,3.031136666666667,3.0246033333333333,3.3444000000000003,3.4018591666666667,4.36947,1.9458,0.6613157894736842,0.8173285714285715,3.5188333333333333,4.319685,6.433303333333333,4.96164,4.64343,5.48025,1.3568285714285715,4.092866666666667,2.2244433333333333,1.03258,5.33555,6.25525,3.025875,4.83425,3.979845,6.721026666666667,3.876466666666667,6.528684999999999,3.822695,2.438642638888889,5.89585,10.478180865384616,2.3932866666666666,0.6934720000000001,3.332825,4.354055,2.228575,6.33205,4.12844,4.298235,2.6986633333333336,2.6986633333333336,5.5726,3.374405,4.028865,5.1092,3.768532714285714,2.4023054285714283,1.139685,5.14235,2.637085,5.5634999999999994,3.55919,4.28386,2.811705,2.226515,4.601295,5.0257,3.6862999999999997,4.17533,4.491605,28.090935119047618,1.98738,2.6488,2.4085275,1.7226,2.59902,1.0615942857142857,2.9154533333333332,3.0350633333333334,3.5441333333333334,3.2447033333333333,0.6460361538461539,3.29101,3.83147,2.896545,3.314633333333333,3.71612,5.71929,4.78539,4.093495,3.74858,3.8674800000000005,4.06984,3.6038333333333337,1.6444525,1.0274583333333334,1.36378,2.3317866666666665,1.5032466666666666,2.978736666666667,2.4475666666666664,2.35538,2.4480766666666667,2.584495,2.006515,1.77598,3.02467,4.436065,3.64921,3.95862,1.681848,3.4937666666666662,2.4943833333333334,3.87213,2.1945366666666666,2.572495,2.514075,1.42562,3.952345,6.350203333333333,2.696915,3.58604,3.986005,2.69695,3.2433241666666666,3.550466666666667,4.03374,4.71325,0.31060944658944656,0.31060944658944656,5.09475,5.26395,3.05139,2.81199,5.4511,4.522975,0.6338415384615386,5.04735,4.654325,3.740655,6.46825,4.60732,7.37489,14.372160000000001,13.180321666666666,4.4111,4.26673,2.560233333333333,0.6392,2.6633166666666668,4.343445,1.3249283333333333,4.96485,3.6584,3.0296466666666664,2.21746,1.9803499999999998,4.901475,5.07005,8.983698452380953,5.25445,4.01591,7.672301742424242,3.40313,3.4085666666666667,1.463335,5.7287783333333335,2.044845,2.4278166666666667,2.6721299999999997,0.2623884375,2.820245,3.77919,4.726271666666666,0.88316,1.2330733333333332,3.96992,0.549176,0.549176,2.919618333333333,3.4032666666666667,3.4258333333333333,3.58731,4.222615,5.3726,3.74393,4.09743,3.02684,3.077246666666667,2.6144333333333334,0.9347249999999999,2.7548933333333334,2.881105,3.05646,7.18215,2.828085,9.860724999999999,3.185275,6.7469,3.17783,2.3118725,2.5458,2.840375,1.6380925,2.36142,1.841665,3.39542,2.4825475,4.09626,2.89638,3.9110525000000003,3.9110525000000003,2.7531333333333334,2.7531333333333334,8.8286505,2.60182,0.786081,2.590333333333333,2.445793333333333,2.48894,4.09626,1.95338,1.941236,1.495064,4.046215,4.16339,1.75698,4.435515,4.03556,5.8676844444444445,6.60043,2.30436,4.31389,6.62179,4.029945,3.255015,2.3339066666666666,3.505425,3.4677548484848484,4.111715,5.352696666666667,7.457084666666666,3.5705375,3.35538,1.1653633333333333,4.415065,4.297284,3.67456,3.8573233333333334,4.39645,2.78642,2.5143666666666666,6.752905,3.222705,1.551086,6.09928,3.815085,2.7571600000000003,5.27925,2.7571600000000003,2.87628,3.821475,5.27665,1.0531028571428571,4.0956455555555555,4.75731,3.581285,1.3231566666666665,1.79287,3.934155,4.02382,2.552885,6.748445,4.183555,3.992895,4.12485,4.750995,1.4553275,3.86011,2.642045,3.89508,4.15885,3.836635,4.862225,3.07272,3.795235,4.930725,1.9761006666666665,1.8410875,3.297193333333333,3.8154333333333335,3.452033333333333,3.087623333333333,3.5414333333333334,3.23142,5.7163,3.45034,3.76074,2.88227,1.9595266666666669,3.5566,2.082586666666667,3.052595,3.024205,2.790695,0.68809375,2.11151,1.7297233333333333,3.1229,1.850434,3.553139,4.29847,1.2402799999999998,3.18694,4.618335,0.809206,1.35126,3.422295,3.869315,3.935525,2.00072,1.7641,3.40357,2.5458583333333333,1.7494466666666666,2.903535,1.8917,1.11909,1.3541875,6.30844,3.316095,2.34163,2.52375,2.4454575,3.82501,0.8474775,0.36411642857142856,0.7626499999999999,4.942675,1.8323774285714287,4.870765,2.1745525,1.9751445714285714,3.361732571428571,1.386588,1.0312205714285716,0.6891320000000001,0.56399,2.8802525,6.42255,3.268415,4.2039,0.3535717857142857,3.68093,17.78887895238095,2.94099,7.081099933566434,1.0790225,1.0790225,1.0790225,1.0790225,5.996066666666667,4.33499,4.466515,2.16371,3.302865,5.039,5.9872,4.02918,3.576735,4.39431,4.18223,4.055565,3.737911333333334,4.1774,5.25015,4.075135,4.74999,3.489725,4.30782,2.6171166666666665,3.56171,3.334775,4.0767,3.95118,4.585175,3.2418033333333334,2.607425,2.4345066666666666,4.273745,1.3432785714285713,3.669625,2.723936666666667,3.3774946666666663,4.2034525,4.60564,3.095105,2.796585,4.303225,2.95153,3.15737,5.5924,4.91339,3.155925,3.559615,1.74382,1.74382,2.0796325,4.643795,4.126695,5.617241,5.3701,3.635975,6.6398,5.11715,2.27144,9.37014,5.3546,6.567232499999999,4.7112,2.92911,3.21711,0.2530334482758621,0.8420725,4.366752666666667,3.298045,4.69103,2.955133333333333,6.239966666666667,5.04965,0.5595735714285714,2.828045,0.443809,1.7165088095238095,3.281935,2.314835,3.684025,3.864195,3.297885,3.310115,3.42764,3.64594,3.5795,3.51812,3.820485,2.39604,1.7165088095238095,2.59832,2.1646375,3.72261,2.1804,4.07044,3.419095,1.6703675,4.31193,2.839665,1.290055,4.61451,4.58285,4.21593,2.7341466666666663,2.8852233333333337,4.272055,1.9824833333333334,1.389524,2.7038533333333334,2.489376666666667,2.5427166666666667,2.284893333333333,4.77972,3.17111,4.9759891666666665,3.891622142857143,4.86267,4.233295,1.8189920000000002,5.25255,4.634925,5.398,4.281575,6.70606,2.0387875,4.886345,3.504175,3.125715,1.82112,1.71024,3.913465,4.480665,2.5047633333333335,2.801747916666667,3.4667075,3.4667075,2.6075066666666666,3.2205733333333337,3.284375,3.94764,3.57498,0.7384223076923077,3.16701,4.358615,5.278155555555555,2.99544,2.893535,1.7726775,2.76792,3.30371,2.063375,4.734965,3.17306,5.0455,2.100966666666667,1.0613545454545454,6.35307,3.50869,3.22588,3.1845433333333335,1.771246,30.50169969047619,4.101845,3.34782,5.7277,4.31547,0.8730916666666667,7.200735,1.9519225,5.5315,1.5259633333333333,4.269455,5.206025,3.635025,3.254465,2.1660925,3.4081333333333332,4.95831,2.08386,2.7562033333333336,3.831905,2.459105,2.540535,6.12475,2.428865,6.6205,1.13704125,4.379195,3.4792,3.813175,5.2049,3.004615,2.4989266666666667,4.201425,4.61579,3.5499425000000002,3.5499425000000002,5.9668,2.4091925,4.2422,6.865326666666666,3.358835,3.926995,3.00634,4.632255,3.370205,3.99118,1.3805275,2.2292,4.297675,4.31717,5.94345,4.30158,2.67471,9.844003333333333,3.727635,3.702255,1.7535285714285713,3.506625,2.3195099999999997,2.64695,2.1023566666666667,1.18653,2.608756666666667,0.9210528571428572,1.09712,1.09712,1.09712,1.87655,0.5673,3.733905,1.2328266666666667,2.65727,1.0304633333333333,1.71399,2.64745,2.0901866666666664,0.7345225,1.7947499999999998,1.3298833333333333,2.3452699999999997,1.6436520000000001,1.6436520000000001,1.6417166666666667,1.6811299999999998,0.9547760000000001,1.8514933333333332,1.5918966666666667,1.2103933333333334,2.300675,2.25951,6.0021,2.0406375,5.6316,17.400196916666665,6.671139999999999,3.480935,3.7168516666666664,3.5324000000000004,2.743986666666667,2.6346766666666666,3.0292133333333333,0.7392791666666666,1.00483,1.00483,0.66836875,2.49752,3.73742,3.25884,1.6352540000000002,5.31865,3.97194,2.403215,3.973465,5.335,4.103455,4.272645,3.5177666666666667,3.132945,3.26234,5.77225,3.1346000000000003,5.1889,0.506348,0.506348,2.306605,2.90265,4.83756,3.43829,3.97693,4.949355,7.646926000000001,7.71978,3.658855,2.338235,4.457205,3.70599,2.57848,2.393925,3.61024,1.3416466666666667,3.722405,2.290545,1.5589375,3.6996,3.567215,1.986415,5.352696666666667,1.62941,3.587566666666667,3.48114,1.0153214285714285,3.7327999999999997,2.621,4.428455,1.140885,1.7577975,2.3567275,2.1890125,1.675385,2.547275,1.93152,1.959045,4.343735,4.509575,2.384585,1.7312,1.4801366666666667,3.6081333333333334,2.0571033333333335,2.848975,4.832365,7.28575,2.8926999999999996,2.96549,3.37253,3.477525,2.379565,5.07465,4.10905,2.987925,1.394225,4.6695,2.322955,3.22372,2.492545,3.548885,5.07305,5.80875,2.2367399999999997,2.7666733333333333,2.7929733333333338,3.432533333333333,2.062883333333333,1.567216,5.46735,3.5394,2.2530394545454544,3.2909466666666667,3.0648400000000002,2.591343333333333,3.4288000000000003,3.30635,3.5117333333333334,5.46055,4.38456,3.0136633333333336,4.961595,3.03165,2.259735,3.403915,3.759075,4.209955,6.2537605,1.91401,3.90125,2.53647,3.588175,3.545485,0.55373,2.29557,2.266625,3.355965,2.74707,2.23517,2.642065,0.651535,2.77731,4.61239,2.5645,4.2919,2.4523800000000002,4.11188,1.99591,4.5424,4.36779,2.11412,2.689485,7.0870375,3.987485,4.684,5.11005,7.3575792045454556,4.56855,4.49799,2.2342325,4.704555,2.704565,1.81487,1.854165,2.14251,0.9648385714285714,2.53015,2.4872366666666665,2.5374433333333335,3.4143333333333334,1.768422,3.19107,1.8468833333333334,4.24088,4.9341175,1.0167225,1.7581666666666667,2.4654333333333334,2.75155,1.9000266666666665,1.0393583333333334,5.411058333333333,2.08525,2.6034333333333333,2.6913033333333334,2.443303333333333,2.6811066666666665,2.980965,2.1675866666666668,2.606996666666667,2.1436966666666666,3.957935,3.32404,3.93889,3.0043866666666665,2.9642966666666664,0.67961,1.7961766666666668,2.0698575,1.9501666666666668,2.550143333333333,1.1204699999999999,2.65747,2.917923333333333,3.99253,1.9884700000000002,3.37263,3.292195,5.1205,3.08277,0.600845,2.1346,2.9430566666666667,3.3377,0.7714309090909091,2.7949333333333333,3.431818,3.3816666666666664,3.006766666666667,3.36164,3.65505,3.9211666666666667,3.0895233333333336,2.170495,5.6973,5.37635,5.2596,5.51965,5.73255,1.7577133333333332,3.3703,3.8640666666666665,3.408333333333333,3.2015,2.79496,4.0337000000000005,3.7712,2.9083666666666663,14.146799999999999,4.3708,1.19992,2.88454,1.56536,3.414266666666667,3.2301866666666665,2.4817899999999997,5.993908333333334,6.718855833333334,2.3564366666666667,0.859634,4.199175,3.508233333333333,2.93305,5.00375,5.61995,5.6816,5.0841,3.53932,1.8966775,6.5182925,1.1653633333333333,6.8828525,5.03655,2.5004500000000003,3.902745,7.420753333333334,5.90915,2.1927166666666666,1.46422,2.29445,7.522413333333334,1.5987625,2.97077,2.5937833333333336,4.142007222222222,5.50745,4.14458,6.26295,3.61642,5.24045,3.60568,9.12505,4.996775,5.70995,2.29164,2.6783,11.340131666666668,3.301665,2.38716,2.338903333333333,1.4821266666666668,2.4934499999999997,3.272483333333333,0.64405375,1.1140459999999999,1.0694142857142857,3.391285,6.955176666666667,2.950222666666667,1.3561733333333335,4.867625,3.972305,0.569394,4.560105,4.45324,5.11695,3.783545,3.532135,2.6251466666666667,4.08858,9.457170000000001,1.8096325,3.8005649999999997,4.336855,4.20168,3.521765,0.8239741666666666,3.5893333333333337,4.112466666666667,1.6675966666666666,2.4040733333333333,2.314086666666667,2.5668233333333332,2.4622333333333333,2.09829,2.08363,6.1418485714285715,5.38445,3.969965,5.090903333333333,1.5088333333333335,2.3688675,4.901815,4.629795,4.55843,4.3923,4.785275,4.683515,1.74382,3.714365,7.625321666666666,1.22262,1.6830766666666666,2.3933166666666668,2.559556666666667,2.6996599999999997,4.7533045000000005,0.8173285714285715,2.286875,3.278725,6.26205,4.578685,2.2413266666666667,2.8454366666666666,2.053335,0.55592125,2.549225,2.82125,7.6211199999999995,4.27524,4.614115,0.932184,4.707233333333334,9.387952833333333,10.986808333333332,3.29286,1.22046375,3.58642,3.5537,2.504706666666667,5.414362,4.86658,4.19144,2.035525,3.9017999999999997,2.159553333333333,2.54412,0.7798036363636364,0.4015886666666667,2.5498,3.309625,2.0500805,3.29083,3.102793333333333,4.12822,5.5413,1.473144,3.15756,1.92571,1.92571,2.138525,3.222585,6.7816,2.61916,2.4408333333333334,3.3800000000000003,3.4814666666666665,4.128525,4.63467,4.37622,4.041865,4.03519,4.432385,7.1504,7.788775,1.948905,2.22818,2.931236666666667,0.879515,0.7236549999999999,4.55797,2.33254,5.4068,2.9165266666666665,3.12863,1.907724,1.4894225,3.90405,4.572085,4.241155,2.035,1.2673033333333332,2.6062233333333333,2.020723333333333,2.5715133333333333,1.1353271428571428,1.1353271428571428,2.6747833333333335,5.1453,2.838995,2.84731,3.50719,1.895095,20.589116878787877,3.72614,5.154795,4.50086,4.717635,4.39003,3.905275,5.72765,6.1993825,0.8533816666666666,0.8533816666666666,0.8533816666666666,2.69867,1.7677285714285715,3.5235333333333334,4.28175,4.02535,2.953265,3.98408,4.49455,0.7801733333333334,2.152623333333333,2.3324866666666666,5.9821021666666665,3.3864954999999997,3.850634666666666,5.15655,2.28035,1.9282033333333333,2.2489333333333335,0.50981125,0.780842,1.75881,1.910375,2.978975,13.399446666666666,2.5260166666666666,5.58375,0.7553857142857143,9.89174,5.7595,3.813835,4.39079,2.735125,5.5191,2.735125,2.834804,3.264125,3.718925,3.69532,4.090655,4.46662,3.436055,6.1548,7.0738520000000005,1.8227466666666665,2.243266,2.73288,27.182541518018017,1.522228,6.4149,3.765494,3.81306,4.26592,4.48627,2.76813,2.924995,2.45482,6.65065,7.133,4.84106,5.0628,4.4941,2.0476525,2.09434,4.486955,0.3530353846153846,0.3530353846153846,0.3530353846153846,0.3530353846153846,4.12695,3.2826616666666664,1.00383,1.8490966666666668,1.1671,4.47965,2.4791766666666666,2.401195,7.270978333333334,3.211116666666667,0.18226206896551722,21.07791466666667,4.703345,1.779568,1.363539642857143,2.20744,2.01038,2.44512,4.684235,3.179515,3.264925,4.266385,2.2311633333333334,7.5440475,2.68783,2.015265,4.09484,5.9908,8.78632,4.426025,0.3082268292682927,3.41739,4.222145,2.8648466666666668,2.1350325,3.165843333333333,1.5726683333333333,1.5726683333333333,4.06719,5.7052625,11.65279,9.39335,0.599538888888889,2.58196,3.894815,3.258585,4.88656,3.71614,1.367648,1.367648,3.762675,4.471225,2.6537933333333332,3.843445,4.49093,5.45665,6.971455000000001,2.28084,4.5683,4.132615,2.64463,3.0458466666666664,3.086626666666667,4.91365,4.445195,5.65905,4.331235,4.661315,4.070525,4.252825,4.23961,5.4728,2.6486633333333334,3.1985266666666665,1.12759,4.65292,4.287295,4.00966,1.74221,2.07238,3.490866666666667,2.94363,2.47839,4.70265,1.89485,1.8451,2.2423366666666666,2.5428333333333333,2.2493366666666668,1.5724133333333334,3.7441333333333335,3.256883333333333,4.216566666666666,3.124746666666667,1.9579166666666667,2.5109366666666664,1.8365766666666667,3.5798,2.0666533333333335,37.719289,2.1444634545454546,2.1444634545454546,2.5848533333333332,2.6404900000000002,2.0281933333333333,1.7995433333333333,2.95754,1.6946266666666665,0.8200846153846153,5.1781,6.87476,4.17204,4.04164,5.52495,1.9505833333333333,4.557165,1.8431080000000002,5.168,4.9489,5.7683,4.417885,1.6444525,4.014305,4.315965,4.615925,5.02195,5.3984,3.851355,3.5436333333333336,2.8333399999999997,2.0409775,1.85124,4.48798,2.5209433333333333,3.8177525,3.8177525,2.2210966666666665,1.50788,2.40369,2.59553,2.3437266666666665,5.1454,2.8456166666666665,1.1300033333333335,1.1300033333333335,2.1063266666666665,1.9810933333333332,2.5695533333333334,2.6016033333333333,2.5561000000000003,2.36789,2.128976666666667,2.269692,3.059439142857143,1.6486971428571429,0.7897471428571429,63.746249772817464,3.009512,3.5981666666666663,2.4444559999999997,0.898428,3.920881333333333,1.570316,1.570316,3.5095333333333336,2.958933333333333,0.85895,3.198456666666667,5.5659633333333325,3.4898333333333333,2.369753333333333,2.83013,2.27862,2.6007753333333334,0.293338125,3.6201666666666665,0.828782,2.55667,1.08755,1.08755,3.3781,2.0387399999999998,2.859223333333333,1.7616999999999998,3.6597000000000004,1.7616999999999998,2.1112966666666666,2.7822666666666667,3.09705,1.3817439999999999,1.3817439999999999,3.1421566666666667,1.35527,3.4542,2.1499466666666667,4.63075,3.53456,12.406518583333334,6.7720675,3.569545,2.99841,3.87082,5.57765,5.6648,2.7340816666666665,4.13627,3.915855,2.03768,4.16655,3.3521666666666667,2.6506166666666666,5.0836,2.1268366666666667,1.060987142857143,3.8833774999999995,2.9526299999999996,2.88189,0.7825300000000001,2.705735,3.42465,4.00587,4.25751,6.6159,1.9778,1.946666,4.42427,4.6044,2.4132875,2.3785366666666663,1.9858733333333334,2.1598426666666666,0.9171060000000001,5.2135,4.561675,3.659915,3.746775,3.0735333333333332,5.1577,5.28275,2.8783666666666665,1.67541,0.5304966666666666,14.992867166666667,0.5107818181818181,0.5107818181818181,0.5107818181818181,3.136006666666667,4.044766666666667,0.5107818181818181,7.021613333333333,4.2997733333333334,0.717759,0.717759,3.452166666666667,3.236595,2.80717,4.47454,5.0092,4.481795,2.4795175,5.034969333333333,3.48542,3.5660019642857144,4.72437,2.9524685,2.4588925,2.466915,2.8193,1.641425,3.3921833333333336,3.080416666666667,2.45062,2.103875,2.0524025,1.8468499999999999,1.6094725,2.7458,1.0913811111111111,2.568675,0.617795,5.52595,1.7131,0.6995608333333333,2.2091625,7.790541666666666,2.54019,1.994432,3.1269825,7.27321,2.406915,4.628385,3.07907,5.82964,3.608055,4.554245,4.534105,4.54201,3.2032833333333333,4.477474999999999,1.1627514285714287,4.15442,2.3832866666666668,2.48638,2.24884,2.396755,2.1639399999999998,1.2898625,5.8334,0.9422636363636364,5.1317,5.71165,5.1902,5.3716,3.6667666666666663,2.5837733333333333,2.1577,3.0130733333333333,3.0123333333333338,2.560395,3.8749000000000002,2.82795,4.862575,1.96083,41.32570361111111,5.0255,2.32565,2.5035866666666666,2.9855133333333335,1.5915466666666667,6.245583333333333,4.092645,2.5131433333333333,3.2890366666666666,2.1474266666666666,1.532885,5.276,0.8056428571428571,4.48681,1.3290585714285714,3.5691333333333333,3.4340666666666664,2.85501,1.4284625,4.784681333333333,1.7621479999999998,1.7621479999999998,2.479833333333333,2.8756866666666667,3.455666666666667,3.5181,1.4025333333333334,2.9421666666666666,2.62108,6.4558375,2.92975,4.248175,1.563125,1.3682566666666667,3.1447066666666665,0.893978,5.4479299999999995,3.540233333333333,2.89535,3.6476666666666664,2.95039,2.75245,3.4191333333333334,1.7580433333333334,2.4454575,2.5568166666666667,3.5086333333333335,2.5303766666666667,3.7733666666666665,2.13787,0.638966,9.808994294871795,2.9204866666666667,5.3332,5.25555,2.7862500000000003,3.0835166666666667,1.279225,2.327036666666667,2.153725,1.279225,4.547665,0.46219625,0.46219625,1.261885,1.261885,0.8576325,0.8576325,2.40705,3.061985,2.502395,1.373805,1.73948,3.656445,3.014155,4.990545,5.28445,1.996178,4.46894,2.438575,4.716366752136752,1.611465,1.611465,2.370055,1.749378,3.9169758333333338,2.04919,4.663625,1.6531383333333334,2.68445,0.54959,1.2039585714285714,2.0955425,2.3347525,2.0393825,1.343675,4.48952,4.5229,2.28439,2.449056666666667,1.42261,0.7360833333333333,2.31997,3.50703,2.9931366666666666,4.74879,5.29945,5.0767,3.754885,6.61599,1.54876,6.263235,1.77499,4.59806,4.7498,5.7548200000000005,3.435966666666667,2.33104,1.6727725,2.0171,2.0171,2.3941425,2.3941425,4.3529,6.08285,0.901404,3.918405,3.56626,3.274635,2.7482900000000003,1.346385,2.7769,4.182065,4.30661,1.8125,6.6938,5.3759,1.8310933333333335,1.3724125,3.941465,4.31844,3.556355,3.533705,4.139245,0.6824514285714286,3.9135333333333335,3.4979999999999998,2.751853333333333,2.93623,2.1110966666666666,3.7711666666666663,1.5117285714285715,1.5117285714285715,1.5117285714285715,3.05456,3.1453733333333336,3.3910666666666667,3.4776964761904763,2.36562,1.2530000000000001,3.3534333333333333,3.2052600000000004,1.4353142857142858,2.83717,2.6805133333333333,1.4292714285714285,2.83677,2.889393333333333,2.98371,2.7304633333333332,2.628903333333333,1.98405,3.245893333333333,4.981420666666667,4.496065,1.0396100000000001,1.582462,0.603951,3.6900666666666666,9.059625,3.06361,3.257565,3.4166333333333334,4.160116666666667,1.85816,7.726155,6.7785866666666665,2.7342833333333334,2.207028,3.90148,4.75547,1.5419180000000001,1.244364,1.328268,1.92788,11.364876666666667,2.7932666666666663,3.2092033333333334,3.0865696666666667,4.073885,2.2344399999999998,1.15662,5.1139,1.0909133333333334,3.3570530769230773,4.54081,2.96876,3.4282333333333335,3.209595,5.14765,1.1477766666666667,2.2680075,2.0684096666666667,2.0684096666666667,3.82173,5.84715,9.781662500000001,4.504895,3.39674,4.894895,1.7598425,2.2816433333333332,4.541595,3.91199,3.80111,1.5790783333333334,3.0414766666666666,3.534075,3.8034,2.554375,3.81314,3.589415,3.746525,3.973465,3.91204,3.78067,5.4454,3.3147366666666667,2.5236300000000003,4.48249,3.005925,3.810585,2.22956,2.49585,2.48272,5.95935,2.480045,3.215212556818182,1.6555075,2.48186,3.28984,2.298265,2.0167675,0.7213416666666667,0.7213416666666667,1.73614,3.7779675757575757,4.204415,2.8843566666666667,4.7083,3.1477025000000003,2.4866545714285713,0.97277,3.41464,1.643255,4.430665,4.056705,0.9506466666666666,1.858495,4.016985,2.8990575,1.5576375,1.5922133333333335,4.835125714285714,1.1195883333333334,2.782885,3.148515,2.77991,2.38099,2.706055,2.035745,0.97055,2.887595,2.99652,3.420235,1.3917866666666667,1.4871699999999999,1.899775,4.47503,2.31943,4.834645,4.675045,4.87861,6.17675,5.1582,4.169295,5.84853,4.083938571428571,0.7941827272727273,2.97475,4.551635,3.815765,0.49410000000000004,0.940342,2.88458,3.90207,4.814875,4.382375,3.3496760714285716,2.743985,4.79474,1.7955100000000002,2.65385,4.722775,4.4130400000000005,3.51358,2.944375,3.91675,4.75829,2.830075,5.60211,0.9282009999999999,3.38028,2.984255,4.644145,4.37906,4.58953,2.27208,2.38593,2.796915,1.8431466666666667,5.14825,3.796905,1.4340857142857144,3.13914,4.228642499999999,1.4269640000000001,5.8022100000000005,1.893684,2.5414333333333334,13.63767465699505,2.9364233333333334,1.4147533333333333,1.5197616666666667,2.0585566666666666,5.530173333333333,1.6402899999999998,3.9859706666666663,0.6760346153846153,3.2143466666666662,4.11724,7.6979425,2.5,3.1550266666666666,3.1550266666666666,4.75146,4.32033,3.420225,3.35337,5.00015,5.21115,2.388095,3.3658333333333332,4.76274,1.1988266666666667,3.080246666666667,4.65305,4.18534,3.33312,2.4390633333333334,3.71807,3.41219,6.397153333333334,6.3183525000000005,0.7380760000000001,4.38959,3.24075,3.9244333333333334,4.165365,3.724555,3.830055,1.365622,5.19775,2.3196,2.67539,4.152525,4.309505,4.81661,0.8912528571428572,2.8199733333333334,9.506964333333334,1.5281716666666665,2.1962584415584416,2.31972,3.81053,3.443765,3.164465,0.6498036363636364,2.4336875,1.6775875,2.2552575,4.293465,5.341266666666666,2.78247,9.26361,2.644486666666667,2.70408,1.11742,4.554265,5.056,2.060035,5.620245000000001,2.737105,3.134705,5.49405,4.75595,4.891475,2.050015,1.55165,1.55165,2.58924,3.11388,5.0128625,1.5113325,6.033048333333333,1.5128166666666667,3.954075,1.3813199999999999,8.7364975,4.95332,2.759785,4.306655,4.023345,3.83785,1.0884833333333332,2.0828325,3.6169666666666664,2.9203266666666665,3.5239999999999996,3.5836333333333332,3.74799,2.787925,3.13212,3.271575,1.4691325,2.49886,1.8339833333333333,2.8541166666666666,1.8192633333333335,5.261782499999999,3.3991666666666664,1.7920933333333335,2.8614599999999997,3.21966,3.4816,6.4507,6.1971,2.98534,3.63784,3.104555,3.05362,2.939065,1.187,1.01369,6.525105,3.09463,5.4928,4.7273,6.6469,2.879505,2.9021600000000003,6.63305,2.49028,0.4310461111111111,5.7853,3.28061,3.92132,3.4577666666666667,1.453542857142857,4.343215,1.044936,4.613555,0.89731625,1.5587133333333334,3.0816466666666664,2.453466666666667,2.907714285714286,3.62911,4.907315,6.2479000000000005,6.2479000000000005,5.3332,5.3332,4.671175,3.2395266666666664,4.487395,1.04603375,6.2164,3.708985,3.777433333333333,3.97474,3.79921,5.01285,1.876545,4.79706,3.303528,2.905045,4.13565,2.852395,4.791805,5.25935,3.588055,3.37763,5.0719,3.91795,6.04895,2.858575,2.7889133333333334,6.08005,4.039815,2.7576966666666665,6.204298333333333,1.6033066666666667,2.1878625,4.90199,4.436795,5.06465,3.758225,2.0151575,2.0151575,13.66108382936508,12.4917,5.16085,3.12269,3.024278717948718,4.592735,4.804745,2.7340766666666667,3.357366666666667,3.30066,4.176200000000001,3.6028333333333333,5.0825,1.97512,8.312253333333333,2.36944,2.0281375,5.8633,2.300445,5.063,4.38016,4.83306,0.7523077777777778,3.353225,3.40801,0.8760600000000001,2.923915,4.3422925,1.417758,2.052043333333333,2.9040199999999996,2.7256966666666664,2.3605566666666666,3.1618733333333338,2.2907466666666667,0.49137,2.59256,2.986413333333333,2.774313333333333,3.2533266666666667,1.449864,3.1435099999999996,7.170253333333333,4.44612,2.3112266666666668,1.9807666666666668,2.5258533333333335,3.46685,2.357535,3.604085,18.344185,5.47115,3.518897,4.82445,3.67306,5.109775,1.2926,6.0406,1.606535,4.75334,4.885505,5.5589,5.08315,0.9846805789473685,6.6624,2.436495,4.935415,2.93819,4.39906,3.825675,2.73248,2.2105099999999998,1.537396,1.985005,4.645475,4.785035,2.02986,1.67345,3.25053,4.095663333333333,3.066046666666667,6.2004,2.0434725,3.47637,4.477375,4.70912,4.27135,3.503135,4.14118,5.21215,3.985445,2.7099966666666666,2.7099966666666666,5.527688888888889,2.0163866666666665,2.7886966666666666,4.06663,1.75585,7.428509999999999,3.562925,4.547206666666666,4.444733333333333,4.295145,1.882024,4.33849,5.5566,3.717845,2.0750475,3.7245,3.2306,1.3855425,1.6457675,1.2713133333333333,0.6829416666666667,1.74364,0.9690516666666666,4.521025,0.9922355555555556,2.6250233333333335,1.5816766666666666,1.834255,1.0794766666666666,1.8955675,2.28176,1.6656925,3.037603333333333,2.7183733333333335,4.949631666666667,1.5745983333333333,2.6293,3.127753333333333,2.8933233333333335,2.3170266666666666,4.214834166666666,4.641795,5.162155,19.498362333333333,2.71049,2.11972,0.6647684615384615,0.60298,4.290961666666666,1.955178,4.10716,5.1271,7.282286833333333,3.695925,3.62818,3.81531,3.320016666666667,3.31528,3.1765233333333334,4.017966666666667,3.526033333333333,6.6573,3.821685,0.939443,1.12961375,5.47985,3.1091366666666667,2.64772,2.1047533333333335,2.28972,5.8131,5.1823,2.273675,2.40392,3.227205,5.1006,8.64753,5.246086249999999,4.34542,4.26988,5.37885,4.758125,4.56442,4.94825,3.904405,5.50355,1.571725,5.7708,1.636242857142857,5.1642,0.75758,5.1183,5.6965,6.20475,6.23375,4.803305,5.89245,6.16285,6.68081,2.0823,1.5942714285714286,5.6845,4.095285,7.270583333333333,5.14865,5.499675833333333,5.2004,6.47725,1.3782142857142858,4.60644,5.44745,4.237466666666667,4.91113,5.5817,2.732275,3.89508,3.05049,4.670765,1.0021166666666665,1.6386399999999999,1.42984,4.973905,4.033455,3.363785,2.3079266666666665,3.006816666666667,1.5803333333333331,2.1622066666666666,0.3701125,3.6986666666666665,1.722088,2.3457233333333334,3.09911,2.4743999999999997,3.1860933333333334,2.720775,2.544625,10.429010666666667,3.8908,1.826000641025641,3.650355,0.9458636363636365,4.6180062500000005,1.12057,1.921055,1.9250175,1.05137125,5.7907459999999995,1.1967358333333333,1.1967358333333333,1.1967358333333333,2.9704200000000003,1.933672,5.17975,3.2046,1.3275,1.4415425,2.200135,1.360575,2.1843399999999997,5.519674999999999,0.8565366666666666,4.380455,4.479585,3.2275533333333333,1.0092114285714284,2.095468,1.98057,1.98057,1.5667066666666667,3.7605166666666667,4.760935,5.65565,5.71605,4.46625,5.38775,2.955493333333333,1.991565,3.104095,5.2628,3.29982,4.250415,1.0117875,3.8587695833333333,5.06965,1.842345,4.115185,3.1437066666666666,4.873715,4.84414,2.63969,7.11845,6.34985,4.20221,4.652255,4.215125,3.183535,7.627,3.932435,5.4178983333333335,3.333435,2.6892533333333333,5.19315,2.6189433333333336,5.832,4.54556,2.6856533333333332,3.15697,3.90949,1.4086966666666667,10.73767,3.90398,3.154095,15.735932936507936,4.541335,1.6710133333333335,2.9394233333333335,1.998885,2.32648,4.18146,2.5467634722222225,3.20357,3.10936,2.867315,4.1246,6.22969,1.2575533333333333,2.1058725,4.23699,4.41564,5.1269,2.4406525,0.591462,4.788175,4.18609,2.09713,1.3738849999999998,4.54108,4.81048,0.9645466666666667,3.782735,12.700455,1.3180812857142858,0.39631428571428573,3.6526666666666667,4.644915,1.1005344444444445,3.957835,4.276105,6.479945000000001,1.289495,3.279365,4.08855,3.36381,4.58468,4.60886,4.381255,8.287065,2.915935,4.53198,5.72455,16.096092499999997,3.404665,2.901225,1.1504225,2.201705,1.2274075,2.2271325,1.2854375,1.964575,1.58873,1.99014,2.4154525,2.3544,2.2011425,5.5982,4.551995,6.0432,3.0343,5.735556666666667,2.8589866666666666,4.9699,3.4967,1.2871875,3.64799,1.9976725,2.65416,4.86893,5.08265,5.01305,4.79411,3.5564666666666667,3.8016,2.34422,3.52407,3.69829,2.26071,1.83459,3.702733333333333,4.658855,3.841895,2.44601,12.786003333333333,0.7481333333333333,2.60591,5.149,2.5710360000000003,1.035752,2.85259,7.479986666666667,7.307544999999999,4.512705,4.054905,4.35596,2.1589325,2.400085,2.911374666666667,2.088296666666667,3.9107966666666667,5.36325,4.304085,0.48723533333333335,6.4358,3.4454333333333333,3.482666666666667,3.6024,6.2817,9.54081375,4.811615,1.03565375,2.184045,2.19546,3.46861,2.536765,4.11415,4.671145,3.7635666666666663,2.795363333333333,4.1303,4.34182,3.758795,4.388233333333333,1.7972833333333333,3.64152,5.192,5.733,3.309673333333333,2.3758,2.192126666666667,29.643025512820515,1.4562425,1.4562425,2.236083333333333,5.09131,4.040165,4.66895,3.373635,2.86085,4.84667,3.0719766666666666,4.06434,3.0719766666666666,3.38978,1.9004066666666668,1.7290400000000001,6.1332,2.755125,4.87887,3.25219,2.59615,6.752373333333333,1.9822766666666667,4.90078,5.4385,3.41437,3.41738,5.0754,2.0649,5.07975,3.51795,7.538705,5.642720000000001,2.809075,4.0985,4.862925,2.03515,2.926323333333333,3.610466666666667,0.4794107142857143,3.3369,10.01172,4.307605,3.765575,5.18685,3.2561808333333335,3.030555,1.3037442857142858,4.14438,5.29745,3.29198,2.35064,4.721375,4.03891,4.432565,4.39262,2.9305,2.9305,4.094565,2.80539,2.7164829545454547,2.050945,5.0177,3.994845,1.0339557142857143,3.68654,5.2421,2.937326666666667,7.2080425,7.65543,1.480402,4.1407,5.0519,6.9919340000000005,0.7602070000000001,7.7631266666666665,3.7180041666666663,0.6108154545454545,5.4804,5.33145,5.0277,4.734305,4.6991,4.526745,4.99806,3.847375,4.232455,4.528065,5.4959,4.833225,4.82595,3.744455,2.756185,4.02913,2.809315,1.00492,4.67611,2.339095,1.72526,4.56923,4.560235,5.96855,1.0425614285714286,4.996813333333334,3.0273,2.6658399999999998,1.7086475,1.2835266666666667,11.711496666666665,2.395026666666667,3.10521,2.0061166666666668,3.6918776190476192,5.4469899999999996,6.087673333333333,2.59042,2.0529800000000002,2.1498999999999997,2.1498999999999997,2.1498999999999997,1.3902400000000001,4.100145,3.97406,3.576345,4.58828,7.90388,4.215075,1.126694,2.19759,3.03139,2.565235,1.8766580000000002,3.931365,3.0385,1.2886733333333333,3.12885,5.245080714285715,6.0456175000000005,3.965195,4.089155,3.2791099999999997,5.3889,4.75519,5.3940133333333335,1.8278075,1.8278075,4.294075,3.747285,2.540818,2.540818,4.05127,1.2643042857142857,5.1791,3.12804,4.281535,4.05919,4.228915,3.400233333333333,1.09409,4.47011,5.2335,4.31795,5.0051,4.86449,4.88479,4.61172,2.035285,1.447535,3.44972,3.726265,3.148635,4.177805,2.145905,2.7273175,5.5242,2.84109,4.804215,7.632465,2.2951258333333335,2.9937899999999997,4.416182380952381,5.175404166666667,1.73124,2.0345492857142857,0.988245,2.0345492857142857,1.8596333333333332,1.8596333333333332,1.51024,4.95083,3.05995,3.95169,2.267085,3.583665,1.5309416666666669,5.4017,3.11809,1.621295,2.9954966666666665,3.6342,4.08544,6.709167,4.73145,1.457686,0.8610366666666667,3.556485,7.097956666666667,2.4322933333333334,3.456455,3.627405,3.627405,2.295875,3.376175,3.05667,1.4463566233766234,3.2248433333333337,3.521755,2.995725,4.466295,4.0056325,1.573805,3.28883,4.487045,4.89205,5.151,4.33236,1.7999975,2.13204,1.2664233333333332,2.32862,3.502245,1.896505,4.61602,3.2440466666666663,3.57324,4.168635,5.18425,1.87744,0.966028,1.8450866666666668,1.2402475,1.2087666666666665,4.88099,3.986565,1.12759,0.2512573913043478,0.2512573913043478,0.2512573913043478,3.68534,5.790718333333333,4.771335,5.32785,5.3011,5.59565,4.719985,4.317095,2.720845,3.74455,1.6656325,4.87142,4.2887,3.813905,4.413695,4.35877,0.7290263636363636,0.7290263636363636,0.7290263636363636,0.7290263636363636,0.8682460000000001,0.8682460000000001,4.326805,4.03741,3.87092,2.924825,2.502345,6.14885,5.1167,5.8862,4.24818,3.0692166666666663,2.5360566666666666,10.246,1.69842,1.69842,3.911665,5.5097,3.2998233333333338,0.46219625,0.46219625,0.46219625,0.46219625,0.46219625,0.46219625,4.806943333333333,5.31595,3.522565,4.57741,2.750985,2.750985,2.676875,3.3181216666666664,2.5283633333333335,2.847645,3.68063,7.098379666666666,1.365688,4.48078,3.735225,4.02104,9.856458333333334,2.4140900000000003,2.7611,0.9845357142857143,2.00838,5.32,3.023695,0.9351125,2.894973333333333,4.35369,5.62865,2.746325,4.849071944444445,0.8519244444444445,2.2055166666666666,5.0329,4.793575,2.9632875,2.6226766666666665,2.1772133333333334,1.4236933333333335,7.075115,3.4354,1.99791,3.07362,2.635335,3.55253,4.074245,2.7688333333333333,3.300406666666667,6.0522,1.4253383333333334,4.46823,5.1699,3.421145,3.937275,2.0293966666666665,2.932545,3.72934,4.2361,2.759925,4.81602,4.470465,2.9361833333333336,1.8537837499999998,3.0062933333333333,2.9101866666666667,2.87505,0.8008254545454545,2.1878975,8.1128175,0.440445625,3.1794700000000002,1.373,2.5379866666666664,3.3632333333333335,2.8943999999999996,1.2591444444444444,1.7407540000000001,2.66662,2.11742,3.63647,2.0198,2.884513333333333,1.5183200000000001,3.301666,1.98558,1.1097114285714285,3.0008966666666663,2.1203675,2.31652,2.713926666666667,3.112223333333333,3.4159666666666664,3.5371333333333332,3.13823,2.8779233333333334,3.3996,2.859806666666667,2.746375,1.8903166666666669,2.3140133333333335,2.6690966666666665,1.54919,3.3102133333333335,3.8038614285714285,2.9349266666666662,2.6733,2.94042,3.7378,4.88372,3.114323333333333,1.8923257142857142,1.8923257142857142,2.587725,1.0894175,2.563975,3.4456249999999997,4.69174,2.771575,2.1451275,2.165195,2.1052775,3.67126,3.02398,3.746135,3.75732,1.7863525,2.6307466666666666,4.290805,1.081602,1.081602,2.137935,0.6219523076923077,2.4489111538461543,1.62117,1.62117,2.7574533333333338,2.4896433333333334,3.584633333333333,2.586926666666667,2.1125925,5.706033333333334,3.7854475,3.7854475,3.60222,2.97336,2.176325,2.780395,2.35119,2.70038,4.9415125,0.45761416666666666,0.650084,4.089395,2.00713,3.09845,6.450993333333333,3.875485,1.603454,5.215276666666666,4.603355,4.19756,4.33601,5.40305,4.83072,13.835609999999999,3.865975,1.65106,2.800985,3.669565,4.999455,2.95066,4.03212,4.326055,3.663025,4.6727,2.7933766666666666,2.900185,2.756683333333333,2.4651466666666666,2.4651466666666666,3.995885,3.29284,3.093455,3.448295,2.267875,2.46231,2.20474,1.85436,1.9671275,2.2682725,1.673615,3.5537395,3.234575,2.43655,7.056252499999999,3.17427,2.3125666666666667,2.068233333333333,3.284605,3.74298,3.650825,3.2614297916666666,3.41455,3.20706,4.251155,3.559605,3.694725,3.928135,3.332731,3.40315,0.6244666666666666,0.6244666666666666,0.6244666666666666,3.475255,2.40883,5.8041,2.435855,3.648525,7.2332366666666665,2.8784533333333333,0.3648688461538461,5.4845,0.752252,4.220784285714286,1.833365,3.76214,1.83992,4.23856,5.442423333333333,4.47549,4.18567,2.7705033333333335,2.9927833333333336,1.5236566666666667,2.843393333333333,0.39399999999999996,0.5461705882352942,2.76117,1.3465066666666667,1.93183,3.75608,2.944135,4.902,2.892,3.0714266666666665,3.420565,5.28738,1.7865875,0.8746457142857142,2.167585,3.7819199999999995,1.2890894805194806,4.807045,3.837125,3.76234,2.74123,4.14169,2.59559,2.5865633333333333,2.6002733333333334,2.4375425,2.7671966666666665,2.2302025,3.12914,2.5540766666666666,5.594226,2.501125,1.9495033333333334,2.105863333333333,5.1936686666666665,3.1829579999999997,3.1829579999999997,2.4822433333333334,3.97296,2.369555,3.586545,2.935225,0.5733546666666667,4.284695,1.9767075,12.092485555555555,7.08114,2.97068,3.248435,3.28364,4.52208,2.7076,3.4165,0.26361066666666666,2.06782,3.486666666666667,0.8403,3.81605,1.3582814285714286,4.96303,3.298045,3.210935,3.8621,3.72931,2.268995,4.522755,3.700935,3.70872,6.67218,4.425615,2.89606,3.1805266666666667,1.601388,1.87674,4.228415,3.762365,3.8402950000000002,2.598745,3.509645,1.523096,3.2951,3.27261,3.972305,11.100483333333333,3.58621,5.362036666666667,3.96236,4.41176,1.0658944444444445,5.216514,4.89929,2.5333200000000002,2.8016166666666664,2.7689233333333334,3.6941,2.3901533333333336,1.6025,2.0946533333333335,3.677285,1.6688079999999998,2.85304,5.3997253333333335,2.9237566666666663,1.0622967857142858,1.0622967857142858,3.651935,2.952643,2.952643,3.4869333333333334,2.82996,3.2831476923076925,3.8645666666666667,3.5940999999999996,2.6784,2.338016666666667,2.401483333333333,3.08559,2.214925,2.33312,1.6025379999999998,5.750743,9.186870833333334,0.5068592307692308,0.5068592307692308,0.5068592307692308,0.605631958041958,0.605631958041958,0.5068592307692308,2.9572800000000004,2.9547066666666666,4.008958333333333,1.343075,1.76727,3.229588,2.3911533333333335,3.1217400000000004,2.3928933333333333,3.024226666666667,3.539566666666667,6.673986666666666,2.9722933333333335,2.47482,3.0250166666666662,4.70398,2.53559,3.4012,5.69426,2.3552166666666667,3.2950233333333334,1.4086716666666668,1.4086716666666668,3.0025633333333333,0.5310526315789473,2.4549966666666667,2.609786666666667,2.8861600000000003,3.2470433333333335,2.265406666666667,1.5818899999999998,2.738296666666667,2.802796666666667,2.27389,4.48551,2.5083766666666665,3.474275,2.43327,3.461265,0.5582480000000001,7.2688733333333335,3.08369,3.08369,7.862308333333333,1.7753433333333335,1.82076,3.017663333333333,4.74552,2.3294966666666665,1.9932966666666667,2.684616666666667,1.39402,3.6359333333333335,1.8405699999999998,2.9775405,1.3749075,0.2610127272727273,0.2610127272727273,5.0639,3.90536,3.49311,2.97537,2.65685,3.31041,1.23692,5.7809,3.78686,2.856195,1.80514,1.1649375,2.27482,3.017663333333333,2.824365,1.99713,5.85439,3.80482,4.27189,3.988715,2.382185,0.6809883333333334,7.096795,2.0388525,1.5814775,3.607165,4.399875,2.096065,1.7750333333333332,4.92,4.301885,3.33132,3.31682,4.559965,4.309695,3.4250333333333334,2.514398,2.514398,4.33635,4.886205,5.704,6.64814,2.7771066666666666,3.969555,1.5599142857142856,2.496685,5.607192666666667,3.729395,1.843526,5.4373,3.5044625,3.625595,2.10963,4.250265,4.714415,4.744695,4.68733,2.5032033333333334,2.49899,3.699033333333333,2.0700966666666667,2.70405,2.6550133333333332,2.42335,0.8229749999999999,2.14946,2.90029,2.176728333333333,4.84337,4.560255,4.832465,3.735525,3.57721,4.8145975,12.268180000000001,4.86844,3.880245,4.284285,4.03954,4.628885,2.5524066666666667,3.365398,3.657033333333333,1.23628,2.830705,2.730265,4.714705,5.5427,4.45075,3.5606000000000004,3.0617099999999997,2.4006066666666666,4.350533333333334,4.2446775,3.762866666666667,4.2446775,2.20442925,2.2822033333333334,2.4080916666666665,2.183345,2.83071,1.77747,0.75507,1.4355916666666666,1.9894433333333332,1.9510966666666667,1.5679766666666666,1.3059666666666667,1.6407466666666668,2.9199133333333336,1.5106,3.0010866666666662,1.2971166666666667,1.5424333333333333,2.702895,4.211366666666667,2.510013333333333,2.43322,2.35885,3.11475,2.144765,2.7802100000000003,3.1681266666666663,2.5822833333333333,3.043756666666667,2.9769175,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,5.26415,2.943825,1.0264971428571428,3.050026666666667,2.6416866666666667,2.8346066666666663,3.587515,3.5000666666666667,4.60258,3.641318,1.673394,3.0204066666666667,1.8550333333333333,0.964945,0.953425,1.7047166666666669,0.8613983333333333,0.7913441666666667,1.2342359999999999,3.20871,1.55556,1.5706499999999999,2.0016694444444445,2.4523583333333336,1.5957433333333333,1.2313533333333333,1.6029416666666665,0.93246,1.238925,0.728885,0.908126,3.13477,3.54532,4.24288,4.501775,4.170375,3.0862700000000003,4.91573,3.6857333333333333,2.0843425,3.4373,2.0492825,3.49525,2.4137666666666666,0.8816390909090909,4.318175,5.10405,1.96968,1.3238175,2.86925,3.299535,3.7605166666666667,2.953193333333333,2.46284,0.9057875,2.32529,5.1223475,3.72376,2.396845,1.51786,3.705165,1.977285,0.5893881818181819,4.35906,4.415495,4.352815,2.754695,1.458006,3.61168,4.353335,2.5972166666666667,2.5236033333333334,2.508453333333333,2.57807,2.7303033333333335,2.7537066666666665,3.04374,1.2930375,2.713375,2.65998,4.88835,4.407385,3.63761,4.665995,16.493102470959595,4.70824,4.6224213333333335,2.892575,4.48125,5.19255,1.56843,2.0559025,2.4503333333333335,6.0656325,4.05592,3.384295,6.5662,2.4503333333333335,3.87333,2.07318,2.3340033333333334,2.929403333333333,2.7572833333333335,1.4260183333333334,4.39397,4.01703,2.5168,4.2178,2.66652,3.2908733333333333,3.627425,3.498855,4.790575,4.036625,2.651705,3.419105,2.5908,2.593856666666667,1.19255,1.19255,3.458833333333333,2.779443333333333,0.3897035714285714,4.845368,0.9601200000000001,2.78208,3.83935,0.5524266666666667,4.909005,8.318165,1.8410875,3.55711,3.5024,2.553,3.14532,2.198615,3.14251,3.55398,4.173245,3.017475,3.9004666666666665,1.0020916666666666,11.516375666666667,2.78406,2.983515,6.03225,2.545535,3.875815,7.8644,4.225,4.19636,3.400375,4.28717,5.844965,1.57991,2.8105433333333334,4.670325,3.848333333333333,2.01424,3.80145,3.85553,3.586445,3.948915,4.340285,3.899215,2.4551366666666667,4.37498,3.707975,5.229,3.209675,2.1656066666666667,2.3858099999999998,1.9942166666666665,3.0437100000000004,1.3167233333333332,3.7697000000000003,0.8966718181818183,3.311783333333333,3.345666666666667,2.6748999999999996,1.53606,4.380445,4.216235,4.16826,1.7170825,4.770575,3.83841,0.7127231794871796,0.33351384615384616,4.20478,5.6683,1.01899375,0.33351384615384616,4.86158,0.7127231794871796,0.7127231794871796,0.33351384615384616,5.929786666666667,2.5308466666666667,2.4553533333333335,5.69745,3.570165,3.126115,0.7871177777777778,3.210205,3.47369,4.735045,5.7719,2.13909,0.7469992307692308,4.5302475,2.2529266666666667,1.304352,2.0898775,1.0706742857142857,2.463076666666667,2.2637233333333335,3.639295,5.2572,2.8778400000000004,3.29259,2.88241,2.299983333333333,2.929315,4.55724,1.7332525,1.9968775,3.921725,5.2038,2.2544929166666665,4.92295,2.56661,4.129105,4.005095,2.69772,1.20129,3.06667,6.736,4.007115,3.36843,5.4263,6.3864,2.298875,3.24209,4.49706,2.92136,3.281735,8.13167,3.71569,4.5460325,2.118915,1.0741025,2.62475,2.026635,2.18658,1.85336,4.398705,0.6960957142857144,3.20461,4.180105,1.8500433333333335,2.96973,5.2548,3.05235,2.91031,4.41922,5.30475,9.386359833333334,2.6197,2.68163,1.6236979999999999,1.5860916666666667,1.2361633333333333,1.5005933333333334,2.832463333333333,2.58772,2.74483,4.323577564102564,1.524785,2.595666666666667,5.2862,5.47305,3.83532,3.39136,3.030255,2.511995,2.085305,1.995425,1.9236666666666666,1.968455,3.047275,3.776575,4.910575,5.14295,4.162505,5.633748333333333,3.245725,2.587335,6.5590225,3.2637,8.778295,4.917145,4.917145,5.594406666666666,1.63386,1.3609275,1.3134933333333334,0.711266,5.29795,3.856666666666667,3.3228999999999997,3.3228999999999997,2.28656,4.712175,4.445075,4.582335,4.12395,3.0072766666666664,2.65955,3.643665,3.05964,5.283933333333334,3.55961,0.8331454545454545,5.2388,5.25875,3.948135,5.0251,3.521155,6.2706,4.357825,0.8616461538461538,5.42,7.4402333333333335,3.18979,5.8011,5.84275,3.381615,2.584125,3.69118,6.1056,2.1225425,5.9758,1.867775,4.70307,2.6277466666666665,2.529725,0.9282009999999999,3.29196,6.0755,3.381745,3.915385,2.0511066666666666,5.02465,8.072343333333334,3.59589,4.34712,2.369815,3.117885,0.851456,4.85833,1.6281833333333333,3.4531691666666666,3.4531691666666666,3.450795,2.2815166666666666,3.0580533333333335,3.929815,1.9350875,3.0507066666666667,3.4024,3.2542333333333335,2.727035,3.96856,3.24815,1.85216,3.3608,2.19001,3.181486666666667,1.9757233333333335,3.130656666666667,3.3370333333333337,1.4795571428571428,1.6719733333333335,0.47592999999999996,1.2978316666666667,0.47592999999999996,0.47592999999999996,1.6719733333333335,0.47592999999999996,3.4807666666666663,2.4737859999999996,2.4737859999999996,3.064386666666667,4.32355,3.83465,4.3867,5.39795,5.547,3.292075,4.19726,4.318605,2.0994375,2.4967148333333333,2.5094333333333334,0.85826,5.667,3.2940133333333335,3.183806666666667,5.70105,3.8454949999999997,5.11645,3.259235,2.578726666666667,2.992565,3.284335,2.6221733333333335,2.6567766666666666,2.04706,5.4727,0.8683688888888889,3.938765,1.19543,3.577525,3.4559333333333337,2.9454333333333333,4.107095,4.04702,3.96953,4.650675,4.12562,3.895935,4.563445,3.994195,2.607975,2.79065,3.28915,4.07662,2.67277,3.374335,2.632115,2.98105,3.3303100000000003,3.563415,4.707275,4.95051,3.966865,69.25461013189587,2.7835883333333333,4.130915,16.450173333333332,3.87345,3.17995,2.18382,1.8351,2.7746333333333335,4.654625,3.0973466666666667,4.2877841666666665,5.63325,3.29624,7.942213333333333,5.52015,2.652775,3.259385,3.865555,3.424945,1.8748539999999998,1.135495,4.476585,2.53661,5.9343916666666665,3.688355,2.193783333333333,3.336675,4.16913,4.46297,3.16175,5.533335,4.43536,3.746505,2.863895,2.5051,2.850105,5.99955,3.4381,3.411235,4.3356216666666665,1.1737633333333333,2.77203,5.2905999999999995,4.29703,3.159865,3.5987,3.07632,4.16447,3.198855,3.151215,3.053475,4.11458,2.992385,2.820135,4.42956,9.27162,3.1616733333333333,4.054635,6.46466,2.865155,2.49462,3.9472906250000004,2.21092,2.8520233333333334,2.867544,3.26646,3.362305,2.974735,3.15015,3.39967,4.113515,3.859745,4.162955,3.787125,3.42657,3.715885,2.8182133333333335,2.8182133333333335,6.887849999999999,2.126765,3.306145,3.273875,2.419265,4.88021,4.09735,3.108075,3.567805,5.6178,6.512062500000001,0.6720772727272727,4.62494,2.22103,2.782413333333333,2.53754,5.2319,2.7012866666666664,1.9735,1.13704125,2.0169101515151517,4.19273,5.2972,4.184135,6.05095,5.5702,5.89475,2.477805,1.8750900000000001,3.74526,2.81348,2.9070933333333335,1.9872666666666667,1.3668783333333332,3.0519200000000004,3.11196,1.646144,2.5749766666666667,2.4285897142857142,3.446855659340659,2.619145,5.18345,3.19533,1.3862875,3.226215,3.453215,6.0283,5.13955,5.8507,4.88945,1.8990566666666666,1.4276533333333334,0.5923771428571428,1.5089833333333333,3.55364,2.446385,3.6246683333333336,1.4301233333333334,2.36738,2.24721,3.2669,3.511745,3.80861,4.155856666666667,1.6334025,1.4135125,1.888845,2.0253375,1.4108575,2.522475,7.276026916666667,4.91109,3.539465,2.91817,6.91604,4.652465,3.09802,3.00791,3.27288,2.561475,3.66752,2.287333333333333,7.18473,0.8757316666666667,2.995785,6.80655,3.88798,4.736355,6.3246,1.5179166666666666,3.1952599999999998,2.97275,2.8691033333333333,1.5161425,4.06198,8.43829,3.42707,5.41075,3.9032,3.056415,4.84876,0.91003,2.773426666666667,5.55065,6.53412,5.3625,5.86305,2.89628,3.8318999999999996,2.6117066666666666,5.32045,4.988285,3.7384846904761906,3.7384846904761906,0.6040928571428571,3.5462333333333333,0.887236,0.7565283333333334,1.81468,3.8198666666666665,3.65156,5.160002857142857,2.33358,3.444374857142857,3.112709523809524,2.867703333333333,3.007756666666667,4.6043,3.4625666666666666,1.811135,1.811135,4.171395,2.97498,2.6420833333333333,3.6475,3.549633333333333,0.5410333333333334,3.3956,2.74855,2.568236666666667,2.863246666666667,2.6764,2.6085233333333333,3.3613666666666666,3.0696033333333332,0.811443,2.8770933333333333,6.387923904761905,2.15212,7.400885833333334,1.5739420000000002,1.5739420000000002,3.5314223333333334,3.570733333333333,3.404,3.0078366666666665,1.76018,1.3652628571428571,3.2005433333333335,3.5157666666666665,1.5470766666666667,1.6043285714285713,2.7717500000000004,2.6854560000000003,2.74358,1.728145,1.92805,2.91242,2.00055,2.6992,3.14453,1.64129,3.55765,3.126465,7.021855,3.45856,1.6403,2.988805,2.582545,2.14816,4.011225,2.40058,2.659855,7.34233,0.8254923076923077,0.7940766666666667,4.67581,1.481042,1.481042,3.9243,2.4770125,4.68624,3.213265,1.3105466666666665,2.2432673333333333,2.862856666666667,2.302174,5.3509,4.810985,2.642576666666667,2.21943,1.3908528571428573,1.3908528571428573,2.6808866666666664,3.8747,4.051666666666667,5.8347,3.1604733333333335,4.848375,4.30606,6.4787,4.609305,2.444,2.7634866666666666,2.6208266666666664,2.675803333333333,0.7204944444444444,0.7204944444444444,0.7204944444444444,3.330785,4.15612,3.815055,0.9866275,0.9866275,4.79813,5.7168,6.60039,22.141763944444445,10.5291,7.88473,3.161475,5.70815,2.3848675,4.43747,2.5358266666666665,3.2771000000000003,4.044566666666666,5.307195333333333,2.014285,2.250835,6.41258,2.15748,2.15748,6.2536,3.104115,3.99907,2.279085,4.9119335,4.586455,3.72824,5.24285,3.64807,1.8133233333333332,5.82655,9.29876,1.8133233333333332,2.279085,2.16671,0.7518119999999999,0.7518119999999999,1.797386,2.2892733333333335,1.797386,4.68636,5.3649,6.06035,8.64739,2.279085,11.666976833333333,5.87915,5.5421,2.3848675,3.2986,4.36403,8.27076,3.0030525,3.945485,5.90245,3.48096,4.68707,6.01075,4.48389,5.03675,5.0196,2.74996,5.25315,3.57542,4.78971,4.47185,0.78234125,1.5141339999999999,2.980915,5.403,4.483705,2.9237566666666663,2.238495,4.2567,4.78355,5.79425,5.3146,5.1,4.24564,4.057315,4.170125,3.66889,2.0428,4.90665,2.04326,2.623105,3.42344,1.45142,3.909585,4.07326,3.61496,5.39315,3.071305,6.7732616666666665,0.9787522222222224,3.402205,2.183975,1.2276471428571427,5.282839,1.522365,1.6469333333333334,2.7494899999999998,2.863217,3.0056266666666667,2.8000066666666665,1.889095,0.7474445454545454,2.16799,2.564085,3.48825,0.7467246153846154,6.534515,1.7438099999999999,1.17797,3.406966666666667,1.17797,3.996605,0.9721454545454545,4.39078,3.2913366666666666,1.843985,5.008131,4.668635999999999,4.668635999999999,4.904885,2.516675,3.0543716666666665,2.88457,1.449864,3.646545,3.724455,1.9746499999999998,0.7049558333333333,7.135299615384616,2.68802,3.914455,4.20553,7.60072,2.2883025,4.159955,3.693985,3.039845,3.634525,5.6412,6.3566775,4.50859,4.828425,5.3882,3.00886,5.02825,4.37631,4.528425,1.1131777777777776,0.4602378571428571,3.125885,3.5046,2.8968000000000003,5.53,3.70584,4.230615,4.45947,5.281,4.48864,4.3473,1.20381,2.31959,8.715489999999999,2.2574866666666664,1.9109333333333334,4.428129523809524,11.589835515873016,1.5630925,5.2246,6.4815,5.1093,3.5576000000000003,2.3743633333333336,3.3278433333333335,4.2842,1.0739916666666667,3.0268866666666665,3.553045,0.36725157894736843,2.2099166666666665,4.70982,4.202845,2.17521,4.284135,2.83426,4.851045,1.2609633333333334,0.5451790909090909,3.590081666666667,1.2365585714285714,1.05035875,1.05035875,1.05035875,1.05035875,1.6708333333333334,2.8658966666666665,1.8427300000000002,3.479433333333333,5.44525,3.6056666666666666,5.42595,3.84725,4.2229,3.455255,3.80858,1.3895099999999998,6.7353000000000005,2.27117,4.73273,5.342356666666666,5.3306,5.163900833333333,2.2839033333333334,2.6260333333333334,2.5788699999999998,3.18907,1.1847866666666667,4.370265,2.5826100000000003,5.0984,2.97913,2.3753966666666666,3.65625,3.2656,2.858325,2.4439566666666668,2.7159866666666663,1.430675,0.40275777777777777,4.31793,3.607635,4.125575,3.668715,3.949855,5.72925,4.650515,0.5335807692307692,3.255824,7.462977333333333,2.024573333333333,2.18258,5.795856666666666,4.850195,2.8781266666666667,4.83986,5.29315,4.28846,3.958475,4.27644,5.6239,5.6691,5.3524,3.612565,5.297475,1.531042,1.6283533333333333,4.251385,4.16942,3.97649,3.27606,5.583,4.8465,3.78555,3.366905,16.042441605156704,1.2338177461209203,1.11799875,1.8502851136363634,0.48710125,0.4532966666666667,1.4011875,0.31964117647058826,1.228162,2.9296399999999996,1.6077380000000001,0.9049333333333333,1.0732620833333333,0.4988708333333333,1.0732620833333333,1.0732620833333333,0.4988708333333333,0.8390230769230769,0.5798407142857143,2.57011,2.9979433333333336,4.96989,3.77599,2.76319,2.8212,4.335135,5.2294,5.2091,2.66594,4.521,0.7059821428571428,2.3364893333333336,8.00715,4.284685,6.584178333333334,2.675105,4.48345,2.303295,5.40345,5.541,3.43632,4.18435,3.41455,1.0539966666666667,4.33986,4.83926,1.304546,1.335564,1.6085283333333333,2.27195,2.1429266666666664,5.66235,5.8152,2.2822825,2.2822825,3.5524505555555557,6.57235,2.057656666666667,0.6582918181818181,0.7758485714285713,2.2891766666666666,3.5896333333333335,0.9912142857142857,0.9912142857142857,0.9912142857142857,0.37571692307692306,1.060987142857143,3.01335,6.1011,3.8905666666666665,4.262405,5.2727,1.03186,3.6182,3.30568,3.986,5.75235,2.648843333333333,7.508583333333333,5.0241,1.1362444444444444,3.9166333333333334,1.959714,2.61397,2.38288,7.081166666666666,3.4050666666666665,4.38835,2.4565375,4.693235,4.569685,5.26875,0.5168377777777777,2.153216666666667,1.34823,2.612556666666667,3.79637,1.9726133333333333,2.71573,2.6172,2.504706666666667,2.5836633333333334,2.9080133333333333,2.8379833333333333,3.0771433333333333,1.3944,2.2218266666666664,1.8877733333333333,3.1009933333333333,2.47438,2.069495,1.7689866666666667,1.8200399999999999,1.6306125,2.992085,2.1628666666666665,2.103543333333333,2.14152,2.3230133333333334,2.3588566666666666,0.8127266666666667,0.8127266666666667,0.8127266666666667,2.4143333333333334,2.03985,2.9765766666666664,2.2127233333333334,2.5151833333333333,1.8429900000000001,3.79188,3.2220416666666667,1.2612383333333332,2.4055566666666666,2.7495166666666666,3.483153333333333,1.6344571428571428,7.1758516666666665,4.37322,3.090365,4.1151,3.354785,1.62518,0.8319357142857143,3.024965,3.77676,3.483153333333333,4.504595,4.370125,4.61253,2.9231433333333334,4.21846,4.335485,0.998638,2.64525,3.276,4.958381666666666,4.69498,3.482965,3.386965,2.41666,2.283943333333333,2.2864833333333334,0.6282025,5.366077083333334,2.788725,4.03526,2.7102500000000003,3.777445,3.6552000000000002,2.3820200000000002,3.093274,3.093274,2.56049,2.0720466666666666,2.64642,2.023746666666667,4.30031,1.4261979999999999,2.516385,3.766735,4.062125,4.051525,5.43735,3.98687,2.590825,1.96297,3.17005,3.030415,2.744105,5.34445,2.713775,1.1561800000000002,1.1561800000000002,4.740625,3.688435,0.9427899999999999,4.490195,0.9427899999999999,3.955445,4.64936,4.831705,3.14502,3.14836,6.25751,4.190705833333333,5.83995,0.86465,0.86465,2.16444,4.646615,1.569165,3.07745,3.35553,1.104652857142857,4.078475,4.146495,6.08345,6.08345,1.106035,5.6206,5.52545,5.07425,6.19485,2.0287525,2.0287525,7.09595,0.9574272727272728,7.28895,1.9872825,6.6768075,2.526365,2.4480333333333335,3.23994,2.46284,2.067343333333333,2.353826666666667,3.0617099999999997,2.4860361904761903,6.2959439999999995,1.794832,5.08375,3.08887,2.692823333333333,1.81294,2.072445,3.278995,3.20176,3.29372,2.75801,2.191305,2.110285,2.452885,1.079526,3.495925,2.72896,3.01605,2.1035585,2.1035585,2.9438,1.9395133333333332,3.73312,3.37693,4.968095,7.065143333333333,3.95059,3.36253,6.6136575,2.0738766666666666,3.28244,2.16904,1.5517571428571428,1.6766,4.30046,1.5658516666666669,0.490348125,0.6434266666666667,4.57175,4.88684,2.920405,0.9781444444444445,2.826765,3.0128500000000003,4.967745,1.846402,2.00641,1.1722777777777778,4.77216,2.45034,4.62252,0.810835,4.1814841666666664,4.159335,3.71029,4.492315,3.46096,3.75578,2.93192,5.4682,3.357035,1.9074799999999998,2.762923333333333,6.286901666666667,6.13665,0.6923,3.703955,4.828595,5.4208,3.822366666666667,3.8038333333333334,2.812975,3.2685099999999996,3.8792333333333335,6.8505674999999995,2.6854560000000003,2.6479955,4.27335,2.92011,2.26698,2.58395,8.27692,4.783195,1.9204333333333334,4.93355,4.71975,1.76402,3.8913,1.3641875,1.4273414285714288,4.431005,3.923775,4.9755,2.6957133333333334,3.274255,2.97399,4.141005,3.923165,3.511615,3.3983,3.97052,4.28709,4.094355,1.1754436923076923,1.1754436923076923,7.56732,0.910795,1.9823332142857142,0.910795,0.7095716666666667,0.34029,2.691904880952381,2.322365,0.5626757142857143,1.9823332142857142,1.68696,3.384325,2.1292291666666667,3.39348,4.80976,7.628796666666666,2.091265,2.023565,2.35966,4.635025,5.7576,1.892555,1.616295,1.0518475,2.6681425,4.066175,2.522145,4.48444,6.318665,0.4433683333333333,3.849985,0.739778,2.8927766666666668,2.3236675,3.59391,1.2391483333333333,4.27281,4.7989125,4.242365,2.92109,4.05645,5.39292,1.770345,3.777335,0.6167738461538461,2.53271,2.797595,1.249714,3.08013,2.481646666666667,2.49502,3.79979,8.58225,2.9270860606060607,3.66493,3.3224,6.62638,5.3510425,3.2189366666666666,4.28404,3.30985,5.68265,4.11134,5.3342,4.61005,4.01599,4.9951,3.326143333333333,1.50831,1.9370766666666668,2.112486666666667,3.81094,2.3950133333333334,0.1923535135135135,0.1923535135135135,0.1923535135135135,30.690906214285715,0.1923535135135135,3.0987785135135137,0.1923535135135135,0.1923535135135135,0.1923535135135135,3.2988401801801803,4.150855,0.1923535135135135,0.1923535135135135,0.1923535135135135,0.1923535135135135,0.1923535135135135,2.905395,5.42781,2.8021,0.20652564102564105,0.20652564102564105,4.503513333333333,4.172867458333334,4.119214791666667,3.364751458333333,4.043980952380952,8.019633333333333,11.633590062160062,6.357533666666667,8.49643,7.939957321428572,3.0025633333333333,6.515762857142857,4.567031666666667,4.432349070512821,0.20652564102564105,8.271030666666666,6.964853523809524,6.853916666666667,2.7983,8.814878321428571,14.952970059523809,18.359868598901098,57.335481568216096,117.49012047307512,1.4086716666666668,3.2950233333333334,3.41565,4.011952661518661,0.20652564102564105,1.6331378205128204,8.738157291666667,14.881649571428571,19.746403611111113,48.71337346407686,13.073767321428571,3.213375,0.23074310344827587,0.23074310344827587,4.552496666666666,2.760403333333333,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,5.50972,0.23074310344827587,0.23074310344827587,0.23074310344827587,2.605755,1.9630566666666667,3.831865,3.58833,4.141863333333333,5.2483,2.1133625,4.120825,4.158,3.21269,1.5364000000000002,3.47341,0.9895550000000001,2.31553,2.1051166666666665,5.213996666666667,6.208026666666667,2.83835,5.992482333333333,0.5486433333333333,0.513918,2.4038666666666666,2.98409,2.731025,4.178125,3.5926666666666667,7.4673125,3.70045,4.08181,3.199985,4.003005,2.884095,3.20135,5.88675,1.898305,0.43659615384615386,0.8321172727272728,4.333265,1.7376225,3.755925,3.717215,4.495745,3.337985,2.4825475,2.687525,0.632236,0.759235,4.21891,2.6536833333333334,6.3982,3.694255,3.7425216666666667,2.665525,2.91695,5.9119,3.989165,3.309705,0.8971409090909092,3.2122733333333335,4.66299,2.21844,0.9734525,1.5363666666666667,4.07835,6.42085,1.942365,2.805785,3.845985,5.88655,2.478945,2.3779966666666668,2.450405,4.85435,2.318095,3.885495,0.7322314285714285,2.1654433333333336,3.248295,1.94803,5.976491666666666,3.13065,4.308515,5.07005,2.806045,2.25384,0.5026563636363636,4.63442,5.2429,6.7977,3.57624,3.961415,5.2698,2.7031,2.88331,1.2230785714285715,5.32445,1.882785,2.56729,7.865325,4.15124,5.39885,3.54594,0.9004866666666668,2.979595,1.268487142857143,3.133745,6.0865,5.03545,5.1217,3.65692,5.21995,4.45641,1.88471,1.77527,5.0616,3.05354,3.363466666666667,2.6547,5.397,4.81546,1.4483133333333333,3.709766666666667,2.78536,2.807525,4.316465,8.96535,4.78738,1.7502075,4.86403,6.00435,4.384790000000001,4.028065,4.037525,4.212965,4.671505,8.053755,2.406966666666667,3.021115,3.25812,4.11056,2.95965,3.13011,4.77496,4.489815,3.543375,3.8897346666666666,19.195892,2.826093333333333,2.6725733333333337,3.5235,5.635815333333333,1.20674875,4.34165,2.123711666666667,5.28585,1.4389966666666665,4.27714,4.24288,3.844145,0.96563375,4.66254,4.61241,1.7190175,4.64610356060606,4.619615,1.0899871428571428,3.55353,1.973525,2.24189,1.43258,4.225375,3.79687,4.06413,3.559235,2.97715,4.3428,8.183343333333333,4.635145,4.481685,5.0164,3.1370733333333334,4.21496,4.923335,6.76069,0.893022,0.893022,4.45603,4.853685,2.3710833333333334,1.448205,7.278169999999999,4.36011,3.71101,3.95974,4.80598,4.622925,3.473635,4.03702,6.747445,4.1434033333333335,4.54366,5.03165,1.4780142857142857,2.76945,4.61432,4.750165,3.5705375,0.21272555555555556,1.5468825,2.0882875,2.4636666666666667,2.2681566666666666,0.9530822222222223,1.40407,1.473685,2.4511833333333333,0.6253966666666666,1.0241585714285715,2.0536225,3.901215,4.082833333333333,2.314293333333333,2.5892133333333334,2.9128866666666666,2.78866,0.667882,0.93866875,3.008605,4.583165,4.354685,3.2179,4.86276,4.905565,4.4684,2.1347,4.38123,4.949835,4.50376,6.367695,3.61858,0.47750470588235294,5.7653,4.48718,4.025395,4.99683,3.252045,2.00794,3.645795,4.071135,2.9468,5.279989166666667,4.374905,1.3729616666666666,5.279989166666667,4.122445,6.837652499999999,3.712755,1.1785222222222222,3.97271,5.0477,4.172155,2.63728,5.0702,1.4247975,1.964395,3.299945,3.443335,0.8158511111111112,5.01905,4.87778,3.63058,3.922665,3.5726999999999998,3.2047333333333334,1.820626,1.776885,3.011305,3.37874,3.4982333333333333,2.3663166666666666,2.3262975,1.9761006666666665,3.95279,1.376707142857143,0.8191822222222221,5.66911,4.123135,1.5980539999999999,2.9741633333333333,2.2582066666666667,3.084,6.042411666666666,2.264539444444444,0.8622059999999999,2.46876,4.570425,2.10195,4.283495,5.2205,5.3008,4.66486,4.473625,5.0139,2.11417,2.1934299999999998,1.7080633333333333,2.1182633333333336,1.8287875,2.4758400000000003,2.1870566666666664,1.71747,2.46972,2.97385,3.60745,6.5475,4.67234,4.104875,4.460865,3.963675,3.899055,5.4072,0.90527,3.262776666666667,4.740555,1.1345420000000002,0.6526173333333334,5.34055,3.601935,2.70813,3.7923412499999998,6.438245,5.4061,0.937206,1.2431785714285712,0.6656055555555556,4.070085000000001,2.2282066666666664,2.7436333333333334,1.1755,2.7955466666666666,2.77186,5.6182,4.742305,4.47266,5.38705,4.429175,1.2587366666666666,3.53166,1.6559,3.54813,4.052985,3.411945,2.8078000000000003,3.3411000000000004,2.68295,3.501225,4.32873,3.226055,2.51085,9.010635,10.182712500000001,4.266935,1.39765,5.5797,4.079915,4.858905,4.48124,3.91106,3.910375,3.388105,4.07076,3.658332291666667,6.11489,3.772575,3.70504,4.59826,1.827022,5.00985,5.90145,4.92533,3.378925,3.1269825,7.416595,0.8103750000000001,2.5505133333333334,2.789683333333333,2.3135733333333333,5.1027,3.55638,1.3587533333333335,4.317605,3.4755000000000003,3.780355,4.60598,4.1831491666666665,6.816168,3.3020533333333333,3.062946666666667,3.268356666666667,2.876663333333333,4.146685,2.18961,2.1703333333333332,3.0144333333333333,3.81167,3.8831204166666664,1.9319675,1.534635,3.3469732142857147,3.201153,0.9860311111111112,2.66967,2.66967,1.40009,5.8056,3.29755,3.39756,3.583755,3.38547,3.43778,3.1662,3.13824,3.307775,2.2541166666666665,0.546222,3.25348,5.6642174999999995,3.010495,3.648915,3.22778,4.05178,3.95212,3.14942,2.51833,3.765375,3.71036,2.96139,3.2002,3.615475,2.6696866666666668,3.995725,3.923705,8.68495,3.29188,3.65311,2.99176,3.92701,4.04377,3.583895,2.38782,3.739045,2.6473899999999997,2.724485,2.92077,3.175945,3.62573,1.69691,1.69691,2.206515,2.99324,3.25635,1.5481820000000002,2.412105,3.37131,1.8244900000000002,2.861995,1.5481820000000002,4.663595,2.835735,3.823569,2.90383,3.57288,2.350645,3.240555,3.859845,4.33878,3.549555,4.41406,3.846235,4.24393,3.51246,3.2547,3.04123,2.863565,3.85643,2.62827,3.782085,5.45105,4.18056,3.70892,0.30513,3.44949,0.4186108333333333,3.70444,3.506445,2.865825,3.426445,3.744025,5.88302,3.18364,2.56821,2.2614033333333334,2.778113333333333,0.658172,7.2418700000000005,3.089065,3.451295,3.45403,1.93639,2.509085,3.326795,3.22152,6.586995,4.81518,5.2613,4.77488,4.45004,4.313025,3.77105,1.476165,1.63373,3.96102,4.780485,5.9103925,2.5910266666666666,5.1583,1.85332,3.6260666666666665,4.113275,1.9000035714285715,4.006855,5.138557499999999,3.6107666666666667,3.7773,2.7346133333333333,4.67909,4.87142,3.5793666666666666,4.422555,4.687985,5.0741,4.40577,4.516545,4.3545,3.262705,4.507975,2.6783,3.3303499999999997,3.3303499999999997,4.534935,2.5475833333333333,3.934765,2.49499,4.56685,3.3697,3.63511,1.75824,2.0621666666666667,1.141105,1.141105,1.5632899999999998,3.5299666666666667,1.6307766666666668,2.651873333333333,4.620635,5.173447,3.3179266666666667,4.190405,5.55693,2.996745,2.73626,3.0467933333333335,1.5499766666666668,4.298215,4.351405,6.679205,1.7546633333333332,5.28805,5.6841,3.5844666666666662,3.54578,3.986605,6.4124,2.0834633333333334,2.418915,4.180025,0.48726,4.173775,4.0639,4.301945,4.766405,3.145065,1.4614800000000001,1.7971920000000001,3.858765,3.558505,2.3540266666666665,3.696445,4.88668,5.2206,1.09141,3.499285,4.76567,3.756905,4.814285,2.72287,5.454078333333333,3.73029,1.5354860000000001,3.54612,1.1921683333333333,2.8743233333333333,7.612176666666667,3.188925,0.6778936363636364,3.404865,4.17263,3.67917,1.880885,1.880885,4.900086666666667,5.79395,2.916015,0.4832855555555555,1.967335,4.4883925,4.485465,4.473975,1.7320820000000001,2.9765200000000003,3.53813,1.206470460526316,1.206470460526316,1.206470460526316,0.7506392105263158,1.2878808771929826,0.5372416666666667,1.206470460526316,0.7506392105263158,0.22733421052631578,0.7645758771929825,0.22733421052631578,0.523305,0.523305,0.523305,0.523305,1.0982488333333333,1.05593375,2.27942,2.3177033333333332,1.0880466666666666,6.268236666666667,2.6736066666666667,6.229641666666667,2.6382066666666666,3.78684,2.945845,3.334205,2.8195175,4.62492,2.89251,4.026235,4.012525,4.63054,2.1541175,4.074675,4.804545,3.927065,3.32148,4.89859,3.25538,4.37528,5.65955,5.19135,6.32305,5.4004,1.08226875,4.821475,4.081685,3.512235,15.939015,4.651585,5.4007,2.7465433333333333,7.44409,3.689235,4.591815,5.1531,3.177185,1.035495,2.39065,4.02962,4.19871,3.60514,3.333695,4.069075,3.00647,4.57434,4.723655,4.263405,6.55227,7.464483333333334,1.3798014285714284,3.77,4.041915,4.11886,3.50681,3.564365,7.07842,2.621795,2.730095,2.53267,3.91046,3.995605,4.769535,2.462975,1.7156375,0.893508,4.302435,3.57384,3.552955,3.95277,3.613675,4.941545,4.07318,6.59735,6.096,5.44035,6.88645,3.75253,3.242485,3.18611,3.29919,1.82536,4.450095,5.99915,5.94435,5.700045,5.700045,2.2896,1.82536,2.08257,3.25444,0.734595,1.6120999999999999,0.877505,1.695575,2.51406,0.387735,2.860495,4.05725,1.695575,3.009296,11.117035000000001,6.61064,2.3775608333333333,1.0590600000000001,1.6553000000000002,4.626885,4.219685,5.842176095238095,1.9580525,2.111335,3.97247,3.648325,4.7904,1.8386866666666668,5.5261,3.7168666666666668,3.39306,5.33835,7.325168,3.868065,2.47033,2.754723333333333,1.72855,4.141075,5.4261875,1.9516940000000003,5.75535,4.326805,6.121360000000001,0.5448753333333334,4.816405,4.941755,4.70572,2.962325,2.76432,7.3371,7.430933333333334,6.7381,1.8402833333333335,1.8402833333333335,1.8402833333333335,4.775885,5.1086,6.4221,3.40981,2.787465,2.652985,5.074,3.575045,2.6887350000000003,1.843135,2.6887350000000003,7.335085,4.97278,4.644312857142857,8.79316,4.644312857142857,4.644312857142857,3.481852857142857,7.0335,5.496268,2.877938,2.877938,2.509165,7.1373,3.106295,3.5446,5.3921125,5.3921125,5.3921125,8.55695,3.5408600000000003,3.378665,3.7023625,3.5424675,0.8558625,7.613546666666666,2.6407666666666665,6.89935,3.449945,12.604074666666667,5.37535,5.477555,6.88179,2.5761183333333335,3.37682,1.0891016666666666,5.477555,3.41619,1.7001275,1.7001275,3.23638,5.0379241666666665,1.700225,4.501298333333334,0.817111,1.3299616666666667,0.817111,1.8665875,2.5173360000000002,4.744756,3.34211,1.3299616666666667,3.105945,4.7090250000000005,0.95662,3.463,4.31658,2.567275,3.88523,2.766215,3.212115,2.89001,0.940586,3.66986,2.48754,1.960545,1.66136,3.08319,4.02457,3.080815,3.62044,1.2440711111111111,1.2440711111111111,1.2440711111111111,4.04477,3.16368,3.16368,3.26641,3.8122,2.0592799999999998,1.238645,1.238645,2.9475,4.5372575,0.8007725,1.4017799999999998,3.01636,1.4154033333333333,2.8171833333333334,0.940586,0.940586,1.9227075,0.940586,3.0076858333333334,0.7889883333333333,3.0076858333333334,5.913415416666666,3.102065,2.316476666666667,1.7778376388888888,0.635665,2.4135026388888887,3.689795,2.4135026388888887,0.9747788888888889,3.498535,3.75211,3.65481,3.775055,2.58646,3.769455,1.7113933333333333,0.81272875,0.39769875,0.81272875,0.41503,0.81272875,0.81272875,4.41456,4.48287,4.560295,3.35345,4.56736,4.674995,5.24055,3.47596,3.869885,1.4261771428571428,2.584966666666667,4.5122725,3.74385,1.34342,2.8095199999999996,4.00996,3.85411,4.200195,3.44021,4.16437,3.789845,3.11287,4.44321,2.43748,6.22025,3.50787,3.889155,4.577464285714285,0.8172197857142857,2.15477,3.169755,6.12223,4.03925,3.34997,3.0314566666666667,4.18021,7.463666666666667,3.169976666666667,4.09069,2.8881266666666665,4.02161,3.98964,5.70575,5.6295,4.174635,2.90922,5.55495,4.703075,3.579833333333333,4.248645,3.3646,2.4000425,2.4605966666666665,4.751425,6.57955,4.945175,5.3055,3.967025,4.834505,5.77295,0.5445676923076923,7.60022,4.69805,3.592485,3.95763,4.899605,4.20233,3.099743333333333,2.579425,1.3871516666666668,0.553503076923077,1.86463,3.192273333333333,3.38392,3.582815,3.73915,3.721655,10.941358333333334,3.79383,3.785215,3.341795,0.7456116666666667,5.574956666666666,2.60994,1.3105666666666667,3.9205066666666664,4.838535,2.228595,7.58429,4.394565,2.0888099999999996,2.0888099999999996,2.0888099999999996,4.266195,8.91554,3.276345,2.504475,2.504475,3.38298,9.73789,1.05684,4.672735,4.54021,4.31457,2.9235433333333334,2.20647,4.06249,3.8716,6.4802,5.97248,3.74965,2.87143,3.775555,4.552440000000001,3.580507,1.24169625,2.9121733333333335,6.02711,3.39825,5.42845,0.96606,3.7785666666666664,2.390826666666667,2.4853066666666668,1.7728125,1.7969366666666666,2.12325,5.8897,2.027555,4.74294,5.698,1.794832,4.83339,3.762575,4.81006,3.303803333333333,2.329095,2.60836,4.36889,3.900735833333333,3.900735833333333,1.128845,1.6175533333333334,2.9265833333333333,4.509924666666667,2.2530394545454544,4.926196666666667,1.79658,2.8062566666666666,2.081723333333333,1.666185,1.666185,4.81566,7.665833333333333,1.9352099999999999,3.1059466666666666,2.24498,4.585955,3.119575,0.8449880000000001,2.88563,0.8449880000000001,2.5891,3.37098,5.2525,5.7597,3.697675,4.632493333333333,5.9586,2.340595,1.7584833333333334,2.9351800000000003,2.2475566666666666,6.1207,5.06135,2.45758,4.33934,2.681145,4.592675,1.0790225,1.064714,1.8382733333333334,1.2519833333333332,2.52637,2.7788466666666665,2.181363333333333,2.864403333333333,2.6672,4.67697,2.552756666666667,2.372806666666667,2.7204533333333334,2.3407,2.9108666666666667,2.6234100000000002,1.9081833333333333,2.4351866666666666,4.259245,3.802365,3.11847,3.34169,2.894816666666667,2.272195,1.97889,1.188765,0.2925255,0.13317739130434783,1.9835433333333334,1.8057999999999998,0.13317739130434783,3.750973224637681,1.9989025,0.13317739130434783,5.8361295138888885,2.119143333333333,6.10779,3.280265,3.383766666666667,2.6732566666666666,2.9025200000000004,2.1840925,4.24013,2.9831233333333333,3.3118533333333335,0.4127773684210526,3.92903,2.6900773684210524,2.916455,1.67585,2.5918,4.698895,2.39654,7.88752,5.28235,3.488245,3.827785,6.30322,6.34203,1.6200166666666667,4.1009633333333335,2.04638,1.967555,6.56427,7.75488,1.0632300000000001,2.158295,3.69507,2.50764,3.030455,2.821825,2.5254,4.12438,2.520635,3.10228,3.41398,3.113175,7.63967,1.3236566666666667,1.881775,2.83584,3.38674,1.9329433333333332,3.334155,1.50616,3.833995,3.178225,6.84273,3.354215,8.7434925,3.51016,1.6192199999999999,1.6910933333333331,2.88724,5.3346,1.5706475,1.6133533333333334,5.51592,3.377605,4.008605,2.58404,2.0912566666666668,2.979325,10.352765,5.1523,6.27306,3.478645,2.267145,2.18219,2.73043,2.80164,3.41724,1.7344166666666665,1.5068366666666666,2.4749966666666667,3.57326,1.76727,3.127555,2.48531,3.430605,3.68223,3.61321,1.2668283333333334,2.57323,0.9701833333333334,1.412738,1.803885,3.422685,3.39778,3.5253,2.856155,3.649035,3.87766,2.73753,1.42906,3.42687,3.5044625,2.881945,1.636645,2.949145,3.240405,1.3805075,3.263285,1.7692933333333334,3.94269,4.14952,4.964565,2.648185,4.236755,1.71675,3.291565,5.76905,1.73252,1.0977042857142858,3.7359333333333336,2.511865,4.32388,4.15105,2.909385,4.71734,4.929555,2.522186666666667,5.50325,5.4456975,6.7439,4.20179,6.752395333333333,4.20793,1.7691333333333334,2.72998,4.68108,4.84911,2.7223466666666667,7.233886,1.2502099999999998,3.4382,2.13608,1.720964,2.369006666666667,2.7808166666666665,0.3813357142857143,2.7810433333333333,3.9631666666666665,3.46061,2.370965,3.461766666666667,2.20818,2.31534,2.2945025,9.360175,5.0027,2.01088,5.3915,2.331651434782609,0.7127231794871796,2.8677799999999998,7.537461333333333,1.7925419999999999,4.573593750000001,6.32069,1.8301125,1.575065,1.418675,3.767305,3.227005,4.31455,3.781185,2.3190733333333333,3.59259,0.94363,2.6334566666666666,4.421275,4.13497,4.87676,3.037365,4.94302,5.07495,3.99906,5.109,5.7219,4.91004,4.42482,5.54585,1.832786,1.842345,2.74008,3.348825,1.1717111111111111,4.15804,2.05758,3.3167666666666666,4.35059,3.3762000000000003,2.626133333333333,1.4817933333333333,3.1477066666666667,2.8151238888888885,2.7603833333333334,2.8483466666666666,1.9186566666666665,2.3144175,2.275945,4.10406,4.47257,4.02536,4.89677,3.45238,2.25261,2.91858,5.0661,4.008466666666666,4.620915,3.634605,2.235275,4.382063333333333,1.7287633333333332,4.156955,4.9079,6.043227142857142,4.173295,4.473155,5.52625,3.308336666666667,3.9884441666666666,4.63223,3.409725,3.799801,3.301465,1.3012225,3.256215,1.724775,2.11323,4.98853,5.18747,3.799801,3.947755,3.534325,1.569165,3.709725,2.012085,2.40058,2.020005,2.68719,1.8433175757575757,1.8433175757575757,1.8433175757575757,0.667240909090909,0.8421422222222222,2.2506222222222223,1.0803225,3.50636,1.30656,4.301455,5.2856,4.763265,3.176095,4.04935,3.23996,4.982245,1.671515,3.042725,2.47229,3.356255,5.8082139999999995,4.278455,5.51645,4.09787,0.964265,2.312455,1.2536066666666665,3.625275,3.865095,4.22582,5.30285,4.959005,4.08363,4.40752,3.823955,1.69218,1.2238633333333333,5.523433333333333,1.0872022222222222,1.3285,2.468863333333333,8.298784999999999,3.09216,3.79454,3.246955,5.6283075,1.6912225,0.9790366666666667,1.4180975,3.25887,3.36279,4.02039,3.711765,1.880435,6.784945,2.91947,0.89242875,4.95338,3.0857533333333333,2.6472266666666666,2.3553466666666667,3.5828333333333333,5.8007375,2.7727233333333334,3.226383333333333,3.617266666666667,2.7619233333333333,2.791923333333333,2.883036666666667,2.6937,1.97787,4.89668,4.80852,5.08305,1.0081733333333334,0.751796,4.0466,2.5795666666666666,1.07088125,2.801747916666667,3.66439,4.08289,7.14521,4.731695,3.6977666666666664,1.716102,3.577125,3.725645,2.9099133333333334,2.6038445714285716,4.223405,2.86934,5.004421333333333,0.8928400000000001,3.318755,1.683912,3.66343,4.29599,2.39197,1.0526025,3.113225,0.411824,3.516805,6.7451,5.47615,2.834804,1.437058,4.005833333333333,0.7862244444444444,2.381463333333333,0.7862244444444444,4.01028,4.39075,1.3567375,1.764665,5.053466666666667,1.7321666666666669,3.81446,2.800035,3.704765,1.221856,1.5124233333333335,3.898605,5.3772,5.3912,2.867544,2.87545,3.253175,1.581615,2.4331975,1.814925,1.8000475,4.558105,1.3502555555555555,1.3502555555555555,3.67085,4.968656666666666,8.266306666666667,4.69047,8.15293,2.49009,3.842305,4.00184,1.7512166666666669,3.8160741666666667,4.098315,2.939385,5.5196,2.8375,2.420875,2.9749700000000003,4.19851,1.09296,4.3146,4.583455,1.110145,8.06916,2.648535,3.090165,3.4641566666666668,5.19385,5.16535,3.6801133333333333,2.5256066666666666,2.8118466666666664,2.0877766666666666,3.804733333333333,2.4518475,2.19152,7.595229333333334,3.4163333333333337,2.945656666666667,4.121425,23.101974904761903,0.6926333333333333,2.54958,4.521745,4.497185,8.74962,4.759605,4.68879,4.660195,6.9807733333333335,3.512465,1.6158700000000001,5.043211666666666,3.152915,1.201448,1.201448,1.201448,2.34544875,1.657815,3.24858,1.5299275,3.141885,1.5179166666666666,2.74494,2.4802,2.929205,1.5299275,3.20706,2.532605,4.2402516666666665,4.832381666666667,5.03985,0.79508,3.325795,2.817505,4.65253,3.68581,2.90687,2.4061325,1.6878575,2.331185,1.453052,3.62508,1.8433425,4.428065,11.167273333333334,2.7871,2.323825,4.947504166666667,4.796333333333333,4.502233333333334,6.4139,2.2773,5.3510425,4.74783,1.03925,1.186232857142857,6.433877,4.570335,2.4283725,3.721965,1.8308775,4.063605,5.0454,4.53312,3.90795,1.34865,4.238045,4.894155,4.703995,6.3904689999999995,3.5365,5.56745,4.60228,4.4775,5.01485,3.7550333333333334,5.23305,2.0081875,3.325245,3.012715,3.217965,4.515615,6.27435,4.70006,2.892746666666667,3.583766666666667,8.900459999999999,4.953775,3.289353333333333,3.687655,3.56572,4.507545,4.170185,4.80272,6.762811666666666,3.651885,2.77341,4.1194925,2.33809,4.446355,2.4030866666666664,6.5306525,1.6521233333333332,4.519625,4.972725,12.068375,0.4830957142857143,4.44451,5.07825,0.6650200000000001,3.76901,3.927975,4.284575,0.956616,5.0632,4.8412033333333335,2.6348033333333336,10.150308333333333,3.2440766666666665,1.9103966666666665,2.22788,3.715855,6.1168,0.5666633333333333,3.842205,1.9942275,5.4866,0.7479961538461539,3.99887,5.7758,6.14055,3.52915,6.6050325,4.61297,3.6691374999999997,2.4841666666666664,2.7541466666666667,4.267545,4.75067,5.11995,4.968775,5.6028,3.3487666666666667,7.039981666666667,2.76045,3.3621285,2.1177825,4.388295,2.261476666666667,1.5856733333333333,3.0925933333333333,3.17184,3.3656333333333333,3.5083333333333333,3.757,3.2641166666666668,2.60258,5.5476,3.137043333333333,3.611785,5.06575,2.5879833333333333,1.2007,3.137506666666667,3.0100200000000004,3.91586,2.97297,3.13644,4.6205099999999995,1.95812,1.65669,3.019695,3.730495,4.31007,1.08579625,4.443825,3.237855,4.020066666666667,3.0625633333333333,4.884721,4.11176,3.20018,4.083725,1.70135,3.83736,0.675325,4.74446,5.167,17.16998272727273,3.0968766666666667,1.2082816666666667,3.944535,0.6515035714285714,2.724575,4.353845,1.911925,1.2633642857142857,3.837055,4.549855,3.1258766666666666,0.7287183333333332,2.53531,7.78202,4.005025,5.6365,5.18385,5.39465,3.3252699999999997,3.8592,3.2913766666666664,7.357905000000001,4.09825,5.0744,2.2084275,0.4360111111111111,2.07934,2.95847,2.34605,4.35487,3.82816,2.93155,4.926765,0.7277125,4.87661,3.797625,3.049285,1.1254466666666667,2.74235,1.9696833333333332,4.92683,3.89061,2.124425,1.7141714285714287,3.586,4.432325,4.627395,6.318571666666667,2.2051366666666667,4.86915,4.65741,4.099625,2.00216,4.065825,6.352145,4.970275,2.573055,4.96129,2.763885,2.554205,4.012155,3.85742,1.322875,4.77225,2.08542,2.862906666666667,5.447093333333333,5.447093333333333,5.4855,1.737554,4.926035,0.9390075,1.805274,5.0072,2.42679,1.4136533333333334,3.3353,0.8760600000000001,4.3623666666666665,4.869625,3.270215,5.2862,4.22984,3.85277,5.543645,3.49621,3.6695666666666664,2.90104,2.4757666666666664,2.780325,2.98109,4.503245,1.7859497802197801,3.085906666666667,4.52451,4.9681,2.3734525,4.43522,4.842885,4.807441666666667,3.527233333333333,5.329,5.20745,5.21565,5.07725,3.87301,3.770975,3.666845,4.52868,5.6993,4.8808,5.11065,4.69866,4.74652,0.7236549999999999,4.966885,4.61424,3.952815,7.434735,4.479125,4.06492,4.466295,4.941895,3.71795,3.57376,2.1538725,4.5258575,1.9156825,1.37358,3.618315,2.04202,2.4302266666666665,3.8219646666666667,3.396333333333333,3.04779,1.1310033333333334,2.08698,4.62035,3.94071,1.85234,1.85234,3.935505,1.57966,3.0966733333333334,4.47315,3.39841,3.5869,1.4606933333333334,2.053385,3.6057908333333337,1.763775,4.296135,4.631035,4.37316,4.08181,6.865636666666666,2.7417,3.704315,4.8202,4.2843,3.307646666666667,4.228615,4.10163,4.50172,2.21189,2.73893,4.609445,4.151155,3.735725,3.74102,1.532885,4.015495,4.324015,4.482455,4.1803,3.7397099999999996,3.7397099999999996,3.13527,4.26053,4.306745,4.24133,1.6960799999999998,7.4811125,3.922025,4.92663,4.226705,4.38668,3.705225,5.1428,2.780325,3.44859,2.748095,5.0904,1.941584,4.30353,5.600844444444444,5.29515,0.7261610000000001,4.720280833333334,1.17539,4.872535,4.88918,4.551995,4.07871,5.40885,3.8492333333333337,3.8492333333333337,0.8637079999999999,2.2302025,4.88981,3.530715,3.83831,5.23815,5.59585,3.27094,4.247675,1.3645516666666666,2.49515,1.639965,1.2798125,4.32956,0.8726309999999999,2.7672666666666665,3.155946666666667,1.18574,2.21,2.651613333333333,1.36154,6.23673,2.143095,2.5080033333333334,5.43595,2.0586,2.8145366666666667,3.21072,4.653785,3.9024,3.461766666666667,3.9441333333333333,1.684478,2.1835033333333334,4.49721,0.647475,2.11184,2.3330866666666665,3.1764166666666664,2.8250833333333336,1.0917914285714285,0.84205,2.4692133333333333,4.214655,1.2359828571428573,2.3427725,1.2438625,5.5930599999999995,2.30164,5.1701,4.451895,4.39481,4.91031,5.40735,4.276065,4.48535,1.510165,3.936366666666667,1.786702,2.636833333333333,1.231412857142857,4.221375,2.1745525,7.488090000000001,4.34448,4.080325,1.464638,6.951817500000001,3.64631,1.5818733333333332,4.03068,3.054445,4.03555,3.533505,1.985695,1.985695,3.2687899999999996,1.4355916666666666,1.4355916666666666,2.00216,2.8834166666666667,2.069495,1.2612383333333332,3.6862999999999997,1.080265,3.180816666666667,2.3688675,1.85816,1.5104833333333334,2.11972,2.1490825,0.27769705882352946,2.549125,1.2381783333333334,2.3923366666666666,2.081723333333333,2.590825,1.05246,1.079526,3.8363,3.2355699999999996,1.985695,1.7376225,1.7843166666666666,2.517673333333333,2.51088,1.930774,3.2562166666666665,1.19992,3.28915,2.88454,2.44482,1.537796,1.099358,2.599,1.099358,2.599,0.70157,0.70157,0.48802333333333336,2.33105,2.4989266666666667,0.70157,2.216225,2.386226666666667,2.4132875,1.6306125,0.8127266666666667,0.70157,0.70157,1.5979860000000001,1.5979860000000001,1.98584,1.7376225,0.70157,2.27808,0.4589338461538462,3.211866666666667,2.1004666666666667,2.38967,2.6737,2.6737,0.386736,0.386736,2.00216,2.01038,2.20744,2.07214,0.386736,3.6584,2.4520525,1.6516179999999998,0.63368125,1.6516179999999998,0.63368125,7.23202,2.5,4.137533333333333,2.553,3.0699166666666664,3.1437066666666666,2.965106666666667,3.5912,2.5051,1.7004825,2.901256666666667,3.169976666666667,2.3749033333333336,1.5979860000000001,2.6355819047619047,2.6355819047619047,2.723903333333333,2.08525,4.11825,2.3125666666666667,3.431566666666667,2.5099133333333334,1.448898,2.4295075,2.36562,0.8008254545454545,1.7237375,3.888405,1.749378,3.217916666666667,2.674716666666667,2.777575,3.9506666666666668,1.6724833333333333,3.5443,3.0735333333333332,4.2821,1.254906,0.23074310344827587,1.3006328571428571,1.3006328571428571,1.0471522222222223,2.955133333333333,3.986,2.5372333333333335,2.126256666666667,2.126256666666667,2.0698575,1.7692933333333334,0.988063,1.5729966666666666,1.5729966666666666,0.70157,2.00216,2.81335,3.4143333333333334,2.3688675,2.27208,2.27208,2.27208,1.10153,1.5517571428571428,1.5517571428571428,2.566325,3.0719266666666667,2.6005124116161618,4.152485,2.4540833333333336,2.5875766666666666,3.51044,3.69782,6.957034999999999,3.96192,4.66857,4.079733333333333,13.6323625,4.98169,3.41308,1.0108925,4.018725,3.325925,2.41565,3.636955,5.1166,7.054369,6.1986,0.5105335294117647,4.11213,3.09842,4.11901,2.46916,4.712555,4.53188,4.322955,8.412790000000001,3.46213,3.821475,3.85156,3.2791295454545457,8.014055076923077,3.2818966666666665,2.597793333333333,3.82947,4.10971,5.24545,3.88423,6.80086,3.683375,1.324192,2.677375,0.88684125,5.02045,2.77032,2.58494,3.9188,3.552985,2.641175,4.861685,3.89876,7.4623349999999995,3.87433,4.592782,2.5193600000000003,5.02805,2.93986,1.168885,1.168885,3.412705,3.881345,2.139265,2.335165,4.05463,2.73317,2.78386,1.855575,1.971515,3.101545,2.5575366666666666,1.17616,3.59775,5.00245,8.14872,1.6741959999999998,2.939115,2.812545,3.59591,2.8422466666666666,8.02925,4.271515,3.6125333333333334,3.0566333333333335,4.237765,3.3914333333333335,3.0353033333333332,3.3314133333333333,4.04692,3.784455,4.6738,4.3075,0.367462,1.4599466666666665,2.443173333333333,1.6727725,4.67409,3.72851,2.6656366666666664,2.345845,4.731255,3.79393925,2.1672725,2.43865,0.960431,2.25969,2.630806666666667,2.630806666666667,5.47255,1.85401,3.081863333333333,2.2442766666666665,2.1652333333333336,1.6753933333333333,3.125755,4.026385,4.958555,4.636785,5.2396,4.99312,2.756885,3.0965399999999996,2.0595,4.85037,5.5282333333333336,2.0110366666666666,2.9353366666666667,2.1987875,2.395843333333333,3.9534816666666663,2.5528366666666664,5.25755,3.851505,3.44326,4.397795,3.0661133333333335,3.60463,4.23491,2.3081666666666667,2.387086666666667,0.406325,3.848466666666667,2.743603333333333,3.134145,6.016,4.6988,5.7944225,1.8500325,1.5988499999999999,2.968615,5.3138,6.45845,6.1914,3.201003333333333,2.2030166666666666,3.628875,2.1050166666666668,4.65516,2.3799433333333333,2.411835,5.29765,4.908305,4.51717,1.6663625,1.87474,1.0828200000000001,1.0828200000000001,1.0823019999999999,1.0064285714285715,0.7426980000000001,1.9153005714285714,4.446855,10.2764525,4.036955,4.312455,4.160115,6.0779725,2.52528,1.6263533333333333,3.4503583333333334,2.97838,3.77412,2.40657,2.7698966666666665,2.9574766666666665,3.24295,2.3479466666666666,3.23377,3.3002366666666667,3.0597499999999997,3.416066666666667,3.3869333333333334,2.9976766666666665,2.7125466666666664,3.2268866666666667,2.6059266666666665,3.29787,3.1497433333333333,2.89705,3.4431999999999996,2.12458,5.659762952380952,3.1439866666666667,4.304801333333334,3.2564533333333334,3.0728333333333335,3.8046333333333333,2.88636,2.950473333333333,3.161823333333333,3.2158599999999997,3.3988666666666667,3.3519,1.913405,2.7392866666666666,2.8897333333333335,2.9485,2.9485,3.3791666666666664,3.2084799999999998,2.71331,2.7834800000000004,3.175103333333333,4.235166666666667,2.7304366666666664,2.754625,2.5702066666666665,2.77158,4.576220833333333,4.900845,1.6587416666666668,3.6428333333333334,3.7928333333333337,3.421476,3.31833,3.7198333333333333,3.5319333333333334,2.679543333333333,3.3498840000000003,2.0116,3.0426564999999997,3.5452333333333335,3.479433333333333,2.5434533333333333,2.5936066666666666,3.9019999999999997,2.95412,3.0917066666666666,2.517275,1.2296916666666666,3.22851,2.80599,2.1678866666666665,2.4438425,3.2692433333333333,3.1394300000000004,1.96708,5.803668666666667,2.42338,0.949042,4.44862,1.9524400000000002,1.71925,4.389555,3.866245,3.35196,2.60158,1.382825,3.2926,2.86864,3.19531,0.414788,2.192405,0.414788,1.85682,1.382825,2.653015,3.85206,2.3917925,3.613195,3.42451,0.5167206666666667,3.0459866666666664,0.910615,0.43566352941176467,3.86028,3.82781,4.877665,2.565325,5.30005,4.306575,3.83247,2.30325,4.0911,1.7370180000000002,5.6738,2.523055,4.49446,4.61494,3.1907366666666666,1.93686,2.035013333333333,1.3745450000000001,1.71566,1.0845075,1.0845075,4.29478,2.2927833333333334,5.9910733333333335,2.2262875,2.187945,2.002715,2.27175725,2.3089725,6.0044,4.400895,2.0919225,2.2953233333333336,2.27175725,2.379345,3.91824725,2.31420125,5.812893333333333,2.2262875,3.2671275,3.28074,3.14124,5.76185,5.08025,2.044845,2.09501,2.2770475,2.560745,4.913445,5.4798,1.93792,3.813925,1.5499766666666668,1.62941,5.3861,10.754063333333333,2.053166666666667,2.28205,2.648676666666667,4.4506,4.35006,1.894985,4.846755,4.72023,2.6244,40.24475920238095,2.91629,3.2056133333333334,0.42341555555555555,4.661431666666667,2.1449333333333334,0.9930833333333333,4.09801,3.70065,1.98801,1.89104,2.33969,4.018465,1.41048,3.3181216666666664,3.630125,4.86201,0.9425330000000001,5.0633,5.1606,4.967865,2.9609666666666663,1.80854,3.9634549999999997,4.457865,3.90945,3.03673,3.64987,4.042545,11.929467323232323,2.850756666666667,3.113225,4.201255,2.65834,4.50824,3.488985,2.54335,3.19608,5.4141,4.764345,5.25805,5.00555,2.37735,3.67234,4.35516,3.569825,4.669965,4.78,0.13256195652173913,2.359225,5.54505,2.575875,1.6711333333333334,1.17345,1.17345,2.69695,2.61143,2.742495,1.9069340000000001,3.0342266666666666,4.405375,2.678665,4.2542975,0.5664764285714285,4.781735,3.80329,4.87829,4.864405,4.8756,1.24194875,1.09366875,4.382733333333333,2.9342233333333336,3.068303333333333,3.997667696969697,4.375975,6.177239999999999,5.25015,4.084115,3.352085,2.2481991666666667,1.5391166666666667,4.649395,0.30523933333333336,3.35975,3.72643,3.90803,14.633096666666667,1.87113875,3.3529,0.66984875,4.45971,8.011915,3.16303,1.8645133333333332,5.8841,3.187746666666667,1.0457477777777777,5.18585,2.768215,2.95089,5.0198,3.443950527777778,1.05069875,6.81609,0.73891875,5.21985,3.166908277777778,1.3714225,2.1222691944444443,3.2389125,3.2389125,3.988305,4.341568583333333,1.3940625,2.26818,2.710565,3.599105,3.503355,2.55695,3.343395,3.37619,6.603658666666666,6.4468,4.047175,3.128755,4.66084,4.850095,3.41669,3.37329,3.47538,4.140505,4.58112,2.506746666666667,2.6246466666666666,1.67795,2.3154933333333334,2.3438875,1.51914,3.451366666666667,3.644933333333333,3.669966666666667,3.3708333333333336,2.6398,1.5364000000000002,1.7689033333333333,0.45411636363636365,2.740413333333333,1.6888,2.108895,3.5970333333333335,2.5219666666666667,2.5424666666666664,1.04401125,2.296615,2.49973,2.8982,3.570165,5.65135,3.70997,3.00329,2.1816,3.29081,4.60685,2.31716,3.70122,1.87805,3.633725,2.727475,4.218895,1.3604399999999999,0.617074,2.4174625,3.288905,3.025715,4.01324,4.8259799999999995,8.76111,3.4019999999999997,2.47946,2.0620233333333333,1.8160699999999999,1.8160699999999999,2.8427933333333333,2.51093,5.0659,4.79772,3.740605,5.2436,4.44721,4.509985,3.252045,4.555515,8.0502375,2.56185,0.490348125,3.3830666666666667,1.35954,1.0229757142857143,2.06143,0.825531,2.1878425,5.3044,5.07025,5.8412524999999995,0.9451825,6.99227,2.03176,1.5357450000000001,2.4338533333333334,4.161905,3.377133333333333,2.528925,3.92709,3.2349633333333334,4.301200000000001,2.9863866666666667,2.76165,3.013756666666667,6.766545,2.49985,3.869265,3.828135,3.578800833333333,1.5079933333333333,1.160725,4.26502,2.932,3.3452333333333333,5.7886524999999995,2.86737,2.113905,2.374245,3.136875,3.9141333333333335,2.4151666666666665,3.9096208333333333,3.264886666666667,5.6406,2.441560416666667,1.8628675,4.98239,5.53555,4.732525,4.088165,1.7491,2.3850475,1.85774,3.325455,1.6043033333333332,0.912735,2.588575,2.17762,2.0524775,4.28344,0.7733575,5.7769425000000005,1.3930575,0.8124609090909091,3.6443333333333334,4.30679,0.6801085714285715,3.4896115,3.2374324999999997,0.84205,4.552145,0.18994833333333333,0.18994833333333333,0.18994833333333333,0.18994833333333333,0.18994833333333333,0.18994833333333333,1.931874,3.575235,1.931874,1.931874,1.80813,0.18994833333333333,0.18994833333333333,3.5305,2.6826733333333332,3.55873,3.263455,2.280985,3.44506,1.4189157142857145,1.7298660000000001,3.580507,1.4624219999999999,2.8960866666666667,2.6334077777777782,6.070116666666667,4.210365,4.29804,6.66865,4.410095,4.78328,4.050905,4.114875,7.394046666666666,3.9728333333333334,3.7675,2.5351666666666666,5.321653333333334,2.5391166666666667,2.137035,1.8667333333333334,4.68787,5.5324,5.2534,5.4554,5.6953,4.702445,4.784595,0.7689690909090909,0.7409714285714285,0.7409714285714285,4.75522,2.2760466666666668,3.59521,1.0100414285714285,4.743225,1.5345571428571427,2.3472833333333334,2.51032,4.563066666666667,4.563066666666667,6.95635,4.336405,1.415025,10.605548333333333,3.07132,1.2894333333333334,5.13615,5.4327,3.60973,3.100105,2.77687,4.400666666666667,0.8257066666666667,3.4905333333333335,3.125776666666667,3.8663000000000003,3.3328,1.4889000000000001,1.43779,4.973212500000001,3.18983,3.1724,3.563266666666667,5.326604166666667,3.3093925,0.764396,2.0578366666666668,3.7091,2.3280333333333334,3.7330666666666663,3.4143333333333334,3.13598,3.5766333333333336,3.1507199999999997,2.741733333333333,1.1140433333333333,3.0569466666666667,2.485796666666667,3.58145,3.250845,3.873365,2.63476,3.3624666666666667,2.920675,1.561256,2.1924366666666666,2.6976790476190478,3.7174333333333336,1.85839,3.2684333333333337,1.8369333333333333,3.801766666666667,5.140598333333333,4.768885333333333,2.595125,2.586825,2.890575,2.4458125,1.6543571428571429,2.2307075,3.313368214285714,2.3713925,3.5953999999999997,2.82035,3.7827333333333333,2.988455,1.294088888888889,1.2657975,1.77938,2.2013825,3.085266666666667,3.5960666666666667,5.20585,7.755295,2.765115,5.4695,4.169715,16.358596666666667,0.515935,10.93937,0.8716711111111111,3.16355,3.839066666666667,3.209573333333333,2.86987,1.6164239999999999,1.42906,2.5761433333333335,1.284044,2.66829,2.02566,2.7932433333333333,2.3223333333333334,2.8047799999999996,1.6041800000000002,0.6535341666666666,3.416933333333333,2.54137,3.1714333333333333,1.10153,3.629466666666667,0.7461483333333333,0.36303076923076927,2.1172066666666667,4.861595,4.763865,4.829355,0.805730909090909,3.849865,4.34834,1.1343075,2.363685,5.315768333333333,3.222275,3.863695,3.802665,3.806915,1.94409,3.773345,2.7012866666666664,2.982155,3.46966,2.53318,2.596735,3.84323,3.168975,3.64291,1.964725,3.28107,4.82847,1.7382900000000001,4.723525,2.2417,4.24486,5.4368,1.9443375,3.007096666666667,3.1379866666666665,6.035915,2.4835233333333333,3.341485,5.32935,4.137533333333333,3.901785,1.80407,2.893775,4.74051,3.656966666666667,4.181495,3.771266666666667,3.20844,2.98075,4.0467,3.3207299999999997,2.6860633333333332,2.730613333333333,0.43761944444444445,2.3088575,2.2492975,4.637595,4.8654,3.257123333333333,2.759923333333333,3.2376566666666666,7.81216,3.58511125,3.912365,3.188893333333333,3.87663,2.95307,3.6323349999999994,2.9060566666666667,2.2939675,2.8876333333333335,6.4923,4.731155,2.11226,3.243085,3.111645,2.47953,4.6991993333333335,1.723126,6.122819999999999,4.00749,5.0627,4.58543,6.48595,3.58813,6.796423333333333,3.626455,3.244145,0.6549392857142857,2.24473,1.53082,3.074953333333333,3.38720875,4.05823,4.07778,5.3756,2.7069233333333336,4.8608,3.8980333333333337,3.9872,3.3013433333333335,4.7565,4.796175,4.815495,2.9946466666666667,6.06276,4.595045,1.52228,5.4533,3.606115,2.710025,2.153135,2.333413333333333,4.783838666666667,1.355357142857143,2.4934966666666667,2.0423825,3.75064,4.220805,2.6329933333333333,3.5742333333333334,3.0202533333333337,2.4848733333333333,4.1844,1.322514,2.351713333333333,2.3794833333333334,2.6525433333333335,2.5541733333333334,2.6324866666666664,2.6509266666666664,3.83946,2.9614933333333333,2.7587466666666667,4.078165,2.132935,3.652775,3.54599,1.6999827272727273,1.6999827272727273,4.64798,2.91919,1.7712125,1.2336425,2.067715,2.03931,1.23081,1.42539,0.64783,1.6387533333333335,1.48913,2.9695199999999997,2.2053933333333333,1.7423133333333334,1.99203,2.30255,1.52172,1.7150999999999998,1.8736466666666667,2.59865,3.86411,2.646315,3.0013199999999998,2.782125,5.7287,2.946575,4.301035,4.162886666666667,1.92362,4.15599,2.981275,1.833405,3.46361,2.1959625,3.027905,3.52235,1.95565,4.580675,4.270115,4.08184,3.4918333333333336,0.89519,4.98287,3.85735,3.28525,3.743865,2.3490166666666665,4.596995,4.948755,5.1571725,9.572734166666667,3.87162,4.45298,2.898236666666667,3.69583,4.64246,2.336495,2.761255,4.2164,2.2618175,5.9973149999999995,1.943994,2.722605,7.10341,3.0169266666666665,4.317274,1.3088728571428572,4.598985,4.61315,3.2042,4.77148,4.94236,6.57446,16.33944142857143,0.6657000000000001,1.05246,3.21035,4.128235,3.603155,2.09294,3.241905,4.00901,4.967245,2.785865,4.566585,1.7684666666666666,1.7684666666666666,5.3529,0.7453118181818182,1.839226,3.05914,3.957785,0.37571692307692306,1.8362966666666667,4.106934333333333,1.1181383333333332,3.0153766666666666,2.6952266666666667,2.937455,7.49598,2.5252766666666666,3.8516666666666666,1.9754033333333334,2.20351,4.14124,3.256525,3.501735,7.170769833333333,1.7779125,2.797675,4.50798,6.7503874999999995,1.9587,2.3035366666666666,2.54927,1.34771,2.53524,1.7179600000000002,3.879895,3.70673,1.4364075,1.9417416666666667,1.9417416666666667,2.87135,5.71825,4.120523333333333,3.756205,4.537025,4.577805,3.01286,3.666575,4.926085,3.40474,4.388328333333334,3.803295,4.52856,0.9193680000000001,0.346146875,5.5021,3.923025,2.3760933333333334,7.77135,1.53017,4.821466666666667,3.86882,0.35746083333333334,2.07441,1.3055,1.8383200000000002,2.088033333333333,5.334518,3.059895,3.13535,5.0737625,5.41605,4.753845,0.599986923076923,2.16065,0.595593,5.6846483333333335,1.522362,5.11325,2.0809225,3.12330375,3.319475,3.94608,4.119815,5.36715,0.8690463636363636,3.352935,4.10822,2.06782,1.72726,3.670785,3.06142,3.84135,3.82276625,5.529795238095238,4.536,5.81245,2.7421100000000003,0.5411877777777777,3.5305666666666666,3.90765,0.5765515384615385,3.97785,3.86948,4.106895,3.4767,2.67117,5.18585,3.133715,2.984965,2.16227,3.676245,1.7475,3.64236,3.829605,0.6148753846153846,3.51444,3.840525,3.168885,3.892565,4.3294,2.730205,3.837605,0.630791,3.1178566666666665,3.7070766666666666,4.770775,3.6883666666666666,2.61045,3.5172333333333334,2.61045,4.96502,3.053875,3.1008766666666667,1.5981416666666668,3.319183333333333,1.9930125,4.28876,2.9272666666666667,5.53809,3.19166,2.8352733333333333,3.1162766666666664,2.3150251785714286,2.3150251785714286,2.3150251785714286,2.4362266666666668,1.2428083333333333,4.613305,2.4244033333333332,1.6531633333333333,4.2332,2.59479,3.0770966666666664,4.332735,5.484,3.82254,1.9519225,0.980196,3.94852,1.98685,2.258,3.28639,3.505795,2.082485,3.45294,2.697805,1.6517880000000003,4.90698,4.123075,3.87086,3.68693,0.7303433333333333,2.378643333333333,4.76446,7.352755,4.164145,3.052195,2.52282,3.398115,3.6638,1.737965,2.51465,4.85635,2.2923,4.50139,3.77343,5.5748,8.836786666666667,4.034415,3.65313,3.3796,4.904285,4.087045,3.1947650000000003,3.1947650000000003,4.1256,4.046048333333333,4.15162,4.019355,4.22694,4.48749,3.965135,1.1874375,4.23144,4.526785,5.4349,8.041830000000001,5.227,3.8988560000000003,1.90826,1.6412916666666666,2.40504625,4.853975,3.912815,4.71675,2.42557,4.588165,5.2224,5.3943,5.2076,3.1153933333333335,3.88171,4.35612,5.3946,4.74976,4.1359,6.741538333333333,4.54111,2.2376833333333335,5.44945,4.206955,4.223105,3.73829,4.809215,0.8088118181818181,4.46081,4.611045,1.2230785714285715,1.242544,5.037,4.9472,9.3873445,5.10915,4.80854,5.9133,2.921325,2.6525,5.07905,1.796715,1.796715,2.55045,1.6077633333333334,2.9136008333333336,3.410433333333333,1.957495,4.182960454545455,1.3423299999999998,2.18463,5.5394825,3.33701,3.43787,2.9222,4.017445,4.14119,2.964703333333333,1.0702044444444445,3.926675,3.1353666666666666,3.859985,4.217535,3.7211483333333337,5.3716,5.05545,4.57094,3.778255,5.3528,6.5,4.890195,3.12323,3.58291,1.94767,1.94767,3.801925,3.886735,2.53194,2.762586666666667,2.187039090909091,2.69328,1.6060833333333333,1.6060833333333333,4.546225,3.58855,2.19999,3.648155,2.793915,1.739535,1.167875,1.0414833333333333,2.707275,0.46239631578947366,0.9436788888888888,2.8121,3.99201,0.39952000000000004,4.36092,1.993142,5.414,3.37781,7.5576225,4.272385,5.342356666666666,4.92277,5.46785,4.113815,1.95726,1.9023340000000002,3.972665,2.96135,3.740775,1.24847,3.43642,4.3486,2.544675,2.62719,2.682635,4.28809,3.307035,3.36035,3.862075,3.585485,3.30164,3.295125,1.060987142857143,1.934595,2.260165,2.861595,4.321585,7.73259,0.893978,1.5594166666666667,1.5594166666666667,1.9369640000000001,4.052275,2.6659,3.10474,5.699425,2.9568833333333333,1.20331,1.20331,1.20331,2.72378,3.009296,4.643755,3.09561,4.267925,3.27518,3.60395,2.8704,3.3914725000000003,3.46441,4.18993125,2.91079,1.23081,2.99,2.91079,3.40119,1.3197233333333334,1.8351633333333333,2.08521,5.633993333333333,2.424485,5.829305,5.633993333333333,3.40482,1.7191533333333333,1.7191533333333333,2.29526,5.01052,1.7191533333333333,2.195995,5.6148,2.13381,2.617495,5.00398,3.650815,3.97962,2.08762,3.29602,4.20152,2.0431133333333333,2.233405,3.64111,2.08762,2.411915,1.865665,6.0274,2.34622,1.042152,2.493225,3.23369,3.172907,2.05024,1.952847,3.7016,1.8511819999999999,2.10382,2.947265,2.106185,3.49271,3.31143,2.03053,2.405805,2.40642,6.34507,2.371715,3.315035,3.459665,3.459665,9.193123333333334,1.0234133333333333,2.781095,2.503885,3.190355,2.260075,1.2465766666666667,1.2465766666666667,3.41523,2.03536,6.57521,2.11626,3.461745,3.39778,6.60867,2.67463,2.461535,6.22575,6.22575,2.437045,1.4768125,1.2054625,1.2054625,1.4768125,1.9673733333333334,1.2244466666666667,1.130495,1.4573433333333332,1.8682133333333333,3.60599,1.806015,3.13476,2.710885,2.640065,2.672965,2.878945,2.510435,3.124575,3.124575,5.68776,2.389925,2.73248,2.641335,3.3602,2.54364,2.660395,2.30319,5.3371125,1.9077875,1.453024,1.3446623333333334,2.1890723333333333,5.38145,4.091589,3.482975,3.00925,1.842375,1.842375,1.842375,4.39264,2.418365,1.130495,3.20923,3.550695,1.33256,5.4835325,3.2120375,6.73037,3.82988,1.686575,3.408325,2.5598633333333334,2.00934,3.187435,4.97255,3.33231,1.46145,2.35391,2.99472,2.9689,5.37256,2.144765,3.2706,2.569735,5.7726,4.88836,2.080565,2.236115,5.17605,5.11256,5.44159,5.71137,1.0932460000000002,1.0932460000000002,2.659907,2.659907,0.800802,4.59491,3.36496,5.16677,4.43593,5.06979,2.094145,4.291715,4.291715,2.20303,3.38721,3.685445,1.17797,4.21007,3.22746,3.086255,2.486755,4.57602,2.53591,2.323765,3.309465,2.979795,2.93975,5.13878,2.75327,2.130685,3.736985,6.02126,5.80211,4.38027,2.544375,3.36565,2.312725,4.9249,2.66504,3.31331,2.578245,6.18192,4.26582,2.518255,2.823575,2.41079,4.86918,2.470415,3.032195,2.82357,6.95707,4.67166,3.410015,2.40738,1.790255,6.37889,3.06411,3.193035,4.85121,2.94151,2.839455,2.604365,3.156195,1.9394633333333333,1.950085,1.7478066666666667,1.7504966666666668,1.8310933333333335,1.9637833333333334,1.803885,2.11454,1.661845,1.9394633333333333,4.07353,4.12999,2.067415,1.54962,1.54962,3.433136666666667,3.433136666666667,2.9376933333333337,2.9376933333333337,2.608835,1.963825,1.802575,3.78512,2.15247,2.15247,2.31412,2.31412,2.90022,2.021905,4.16033,2.19505,3.124805,1.9553766666666668,1.9553766666666668,1.81519,4.02841,5.0697,1.3197233333333334,3.55049,2.03053,2.19211,3.81688,2.94149,1.895605,2.24952,6.08061,1.949,5.90009,3.04729,3.09626,3.022465,2.68044,6.39118,3.05066,2.06587,2.4946861538461538,2.929265,6.10002,3.413715,1.5062039999999999,1.5062039999999999,3.52486,5.00992,4.8921,4.92998,2.80261,2.72713,1.709385,3.010145,1.543305,2.72835,1.627975,0.7925639999999999,0.7925639999999999,0.7925639999999999,2.2721841666666664,5.140696666666667,2.2721841666666664,2.11231,3.57758,1.779155,1.9383,3.93145,3.33565,5.09941,1.5768066666666665,4.63622,1.5768066666666665,1.5768066666666665,2.332785,1.678755,2.106555,5.99898,2.106555,2.398295,3.89115,1.855705,1.657105,2.772405,2.9651099999999997,3.1608091666666667,3.17806,3.660795,1.44158,4.21594,0.7887745454545455,4.476655,4.368635,2.69423,2.69423,0.7385936363636364,4.0264999999999995,2.734593333333333,5.9496,5.07775,4.12659,5.54505,4.293895,4.15519,5.343,4.44477,4.358165,3.79758,3.823245,5.24735,5.18515,3.35512,3.57781,4.373465,2.5141666666666667,1.31931,4.466555,3.500555,3.328875,1.36506,3.631605,3.725115,6.0255025,1.0735325,5.5853,4.32067,2.06389,2.034085,3.18751,3.514945,1.71449,1.5062039999999999,4.09138,4.7669,2.748775,4.63351,2.99843,1.1639300000000001,3.08813,1.235642857142857,3.22061,2.1211033333333336,3.1497933333333332,1.8879375,2.71594,4.2024,3.221945,4.577615,3.2628,2.2552575,4.67838,4.07606,3.01528,5.45715,4.16757,2.5885666666666665,6.19595,4.91034,3.1006183333333333,2.591326666666667,2.666855,3.1523800000000004,3.26137,2.7751566666666663,4.854345,4.17104,3.81481,2.39882,2.5909733333333334,2.4699433333333336,2.5151833333333333,2.2463633333333335,2.3536733333333335,2.2663433333333334,2.3937475,1.42337,3.029461333333334,1.1422025,1.8535975,1.54982,2.844625,1.6034775,1.8489675,3.805995,4.44274,1.937275,3.967035,4.04418,6.25358,1.9862966666666668,1.638296,6.7096,3.575365,4.791645,4.195365,4.15446,1.99521,3.64537,2.516525,2.88114,4.487165,0.6857791666666667,4.13263,2.223596666666667,0.8283872727272726,5.0754,4.352005,3.875215,1.9054764285714287,4.87268,5.81105,2.7410933333333336,2.9300266666666666,2.4595833333333332,2.0703733333333334,0.574747,3.20966,2.98785,4.89804,2.455025,2.0994075,3.811625,0.9591375,1.95087,1.95087,3.00435,1.95087,4.192,2.60226,4.676935,4.298585,5.83235,13.509959166666667,3.2593666666666667,4.95169,2.626715,4.799145,3.246315,6.726285,2.992523333333333,4.392105,4.715825,3.85208,1.1933816666666666,4.80871,3.2188166666666667,2.6983833333333336,0.9707022222222221,2.1495125,3.36005,7.342368333333334,4.623195,2.8834166666666667,4.684565,3.2687899999999996,4.220485,4.509465,4.47134,2.69041,2.8660333333333337,3.90878,5.80375,2.412035,4.5572,1.9886275,1.9886275,3.052835,4.85943,1.2946,4.157535333333334,2.19367,4.815175,2.5000033333333334,2.58831,3.0161366666666667,2.18872,0.7394714285714287,3.520045,2.8445033333333334,5.4563,4.633835,0.2363940625,5.2384,4.505805,4.072745,6.91191,3.0934266666666663,2.8755466666666667,2.2197633333333333,3.077106666666667,2.8330033333333335,1.4528999999999999,3.0267866666666667,2.70473,1.4040966666666668,3.4867666666666666,3.13171,2.762003333333333,3.111283333333333,1.3767505555555557,4.28132,2.77655,5.32675,3.956525,3.85143,1.5962100000000001,2.48948,1.198395,1.84223,1.198395,5.2152,3.6240666666666663,1.60354,2.4949425,3.935465,3.798265,2.863865,3.7347,0.3539265,1.4708841666666665,3.693025,4.219955,6.33785,1.9124075,2.8719066666666664,3.1261500000000004,2.4959266666666666,2.84136,3.533285,4.929895,2.56435,2.4428300000000003,2.9399800000000003,2.53852,2.7007,4.28889,1.92237,4.71456,3.840175,6.0729,7.542925,0.7324022222222222,0.827285,4.34217,6.93093,2.08304,3.44463,1.41257,1.41257,3.370615,0.44909888888888894,3.54748,3.972025,3.286635,4.104645,3.252485,2.575305,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,2.22215,2.9852,3.7279516666666663,2.9982616666666666,5.544684999999999,6.086515416666667,2.875125,2.2211166666666666,0.8806416666666667,3.318495,0.69200875,5.654249166666666,3.4331325,2.241905,0.69200875,2.338055,2.684655,1.223285,3.84112375,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,4.40458,1.5978525,4.93865,4.697715,1.771246,4.92684,4.413385,5.09765,4.8470941666666665,3.6094,3.316175,4.59677,2.163095,5.79109,4.72413,0.76235,1.5300857142857143,1.3936600000000001,3.3165366666666665,3.3165366666666665,3.05244,3.954875,4.463885,3.605095,4.18638,2.7464433333333336,1.8757400000000002,0.43741285714285716,4.117465,3.01073,2.573655,3.90496,3.28133,3.12331,5.3054,4.493925,6.690365,4.081915,4.964225,5.84405,4.476895,1.3637228571428572,2.98879,5.390456666666667,34.4166768975469,1.323615,4.473885,3.11055,4.455275,3.980335,5.38115,4.92395,0.40971142857142856,5.41145,4.663205,2.05488,1.96112,3.58832,1.5706475,2.369375,2.38357,1.7599025,2.742275,2.51088,2.705555,2.69189,0.5959038461538462,3.112535,3.732045,0.37620315789473685,2.42815,2.705725,3.08088,3.85239,1.79473,4.526165,3.89349,3.19167,3.63981,3.17517,4.3228,2.910705,3.78311,2.2342325,5.390456666666667,3.511505,3.509985,2.862805,1.77104,3.93384,3.24294,7.033810000000001,3.30315,4.96455,6.7551000000000005,5.2682389999999995,2.27825,4.49029,6.2722825,7.88752,2.5242400000000003,2.43563,5.0163,5.666133333333333,4.409595,3.27212,5.384115,2.786075,1.66305,2.1824325,60.62884155769326,5.0696,4.512645,2.583125,0.8747400000000001,2.88626,3.0192366666666666,3.5187000000000004,0.8611866666666667,4.526915,0.8416988888888889,7.71945,1.98685,3.364266666666667,1.758096,2.57967,2.5243066666666665,3.4172333333333333,2.466346666666667,2.1723833333333333,3.415233333333333,1.57139,5.170370833333333,3.952033333333333,1.2183375,2.719393333333333,1.3793199999999999,1.5522375,7.61008,6.0899,3.40274,4.62599,5.50512,1.4497857142857142,3.6355,3.0577,1.6312525,5.72805,3.63497,3.956055,1.776885,2.991140833333333,3.697533333333333,3.9792,5.768,4.78883,4.643505,2.600475,3.836165,4.5325,3.1585900000000002,1.4981019999999998,4.344265,3.4341000000000004,4.18544,5.26005,3.94029,4.00258,4.81523,4.442145,4.320885,4.8045,4.33666,3.300186666666667,4.23973,4.36468,3.1096,4.097905,3.802335,1.453925,1.453925,4.30784,4.97784,5.0513,3.806065,4.87022,3.3922333333333334,2.718545,4.716985,5.4607,0.7536572727272727,5.45,6.807775,5.8247,5.77055,1.0522433333333334,2.894915,0.99471,0.99471,0.99471,3.728165,3.4951000000000003,2.83163,3.5872666666666664,0.98245,5.1773,5.55645,3.01633,1.6743075,2.1589325,4.02429,3.75187,3.620485,3.6375640000000002,6.89105,3.638265,2.5092233333333334,4.91823,6.95825,2.1918,4.177335,3.81477,3.07284,5.53515,4.32355,5.17955,6.0562,3.15692,3.7679822222222223,1.9080700000000002,1.9080700000000002,0.7103545454545455,8.720912,2.10322,5.87325,5.75365,4.31608,5.6144,3.76696,3.0799416666666666,4.74849,7.65576375,5.773118333333333,2.38186,4.35395,1.02157,3.707115,1.9325066666666666,0.9228166666666667,1.1576242857142858,2.7690566666666663,3.0586533333333334,2.852813333333333,1.1642914285714288,2.68473,3.1245133333333333,0.931521111111111,2.9008366666666667,3.368233333333333,1.65075,1.9193919999999998,3.112546666666667,3.12415,2.9650233333333333,2.4798899999999997,1.8519020000000002,5.5074,4.52335,4.14098,4.47278,5.36245,3.157325,4.63981,6.63255,5.17215,4.61567,3.93023,9.838208333333332,9.051285,3.146926666666667,3.61307,2.0744333333333334,3.81209,3.061705,4.61966,1.0133349999999999,3.83037,3.561065,1.7341499999999999,4.17835,2.9937899999999997,4.427585,2.65029,3.81853,6.44575,7.96593,3.993135,1.5695750000000002,1.5695750000000002,1.5695750000000002,4.86768,1.122635,1.512975,0.48960833333333337,4.518400833333333,3.0223666666666666,4.05309,1.00046,1.21262125,3.078995,4.222305,3.67311,16.910591904761905,4.21051,4.481245,6.388835,2.9464966666666665,3.555235,3.442825,0.9352922222222223,1.6894575,4.210725,3.69633,4.513645,4.6658,4.63613,3.942685,2.7486437777777777,3.38236,5.55535,0.56947,4.92875,2.2870475,4.258125,5.04375,3.5088666666666666,2.4639366666666667,4.3577900000000005,2.2869466666666667,3.72009,6.16975,3.2338533333333337,3.709625,4.545115,4.26162,4.825315,3.883445,3.604935,4.55094,5.0033,4.852655,3.84389,4.64959,3.849045,1.1785214285714287,1.4340425,6.006077166666667,6.34115,4.119205,4.796795,2.580925,2.7735566666666664,2.64607,5.63841,1.926805,2.129805,3.134916666666667,3.0642033333333334,3.535933333333333,4.645525,3.24943,5.055095,1.216775,4.841815,0.9011266666666667,4.02998,3.332895,1.619555,4.79715,0.98436,4.981015,5.7708,5.20805,4.20923,3.912864166666667,3.91416,3.1332133333333334,5.36475,6.0055,2.954827,3.91114,2.471885,2.583755,1.955675,2.56267,3.522125,5.24085,1.080265,4.2297025,1.2613625,3.3581,1.6044833333333333,1.080265,0.1923535135135135,3.74887,3.00883,2.2951258333333335,1.9608833333333333,2.576295,1.0602825,4.08853,3.67641,4.838895,2.5601433333333334,6.28365,6.5516,2.6584933333333334,3.5157000000000003,2.637696666666667,0.79731,2.49269,6.1609,4.557795,5.52425,4.897985,2.002666666666667,1.36158,3.8112225,1.5943025,2.217685,1.70899,2.517925,1.674065,1.8987375,1.8928475,2.2703925,1.9753025,1.39765,1.356015,2.01427,2.100945,2.2489275,2.182863333333333,0.5366673333333334,1.18285,2.7890466666666662,3.3345000000000002,2.143095,1.8627,1.51997,4.01394,2.19171,2.55258,3.84202,5.9574,3.66869,3.0128500000000003,4.65921,1.6739826470588235,3.77077625,23.690074,4.625896666666667,6.037,4.39424,2.378816666666667,3.966285,4.77837,2.3453,5.03225,3.3287166666666668,0.7962975,3.450215,4.656615,3.95778,4.048965,1.4673999999999998,1.9676766666666667,2.3314666666666666,2.299695,1.5237142857142858,3.546466666666667,5.1092,4.230595,3.272235,3.939885,4.984285,3.589745,4.803515,1.2797625,3.24591,4.138295,5.0816,1.9041139999999999,3.438,1.752345,1.752345,3.526735,4.888165,3.008646666666667,3.0549233333333334,4.108295,3.819075,6.5828074999999995,4.758485,2.261905,1.6894575,2.966095,4.29305,3.180816666666667,2.6355819047619047,2.6355819047619047,3.3510333333333335,5.12,3.680435,5.2470622222222225,2.372575,3.2420166666666668,0.60856,0.60856,0.60856,3.543,3.71951,4.105638333333333,5.9936,2.3144175,4.989825,5.1564,4.94209,3.55076,5.48645,2.446465,1.3714771428571428,4.387335,3.89862,0.47546214285714283,4.332466666666667,4.907295,1.5100566666666666,5.15255,5.1699,4.72242,4.506415,3.670995,2.85273,4.372425,1.663158,4.232945,1.6402150000000002,4.49775,6.00945,1.2304225,3.06402,7.236695,4.14836,3.5052,2.28277,3.925375,5.7951,3.0313033333333332,8.122471666666666,4.25116,2.1613966666666666,3.147726666666667,2.7561933333333335,2.5552533333333334,2.72055,1.7721533333333335,4.800995,0.607935,2.0063725,2.0063725,3.185755,3.58432,2.330115,3.084205,4.397625,5.32545,4.65236,1.2886733333333333,4.689682523809524,4.4606,4.694395,3.700155,4.295696166666667,3.8456395,0.45005666666666666,2.907714285714286,1.05673,0.45005666666666666,4.35742,0.8284055555555556,4.3068,3.830885,6.605649,2.08643,1.0471675,1.136682,2.165075,2.93501,1.5585133333333332,2.37742,3.281155,3.653515,2.0454666666666665,2.3536699999999997,4.49555,3.105805,3.87506,5.9863,3.30575,5.1869,6.996815,4.5922,3.52741,4.607265,3.752175,4.48999,5.3303,5.9740625000000005,5.435,2.39026,1.0339966666666667,3.815555,3.89488,4.239665,4.434245,4.278455,5.4397,2.6910399999999997,2.573583333333333,3.118256666666667,2.3984166666666664,2.029176666666667,3.017276666666667,3.2195933333333335,2.6477766666666667,4.075755,4.7555,4.24912,5.5068,2.9252866666666666,3.501633333333333,2.9351,0.7432071428571428,4.24131,4.024055,4.54031,3.00853,5.594543333333334,3.5135,4.78616,3.99484,0.6336776923076923,0.5615285714285714,4.423575,2.863217,3.160335,4.716045,4.286855,1.721562,5.5001,4.296915,2.6865433333333333,2.705906666666667,2.370595,2.1038375,3.5820666666666665,3.2797866666666664,3.23616,2.98391,3.6196,2.639725,3.1556933333333332,3.798766666666667,4.37531,0.579648125,0.579648125,0.579648125,3.364751458333333,3.6097,3.616633333333333,2.83022,2.99091,1.1874375,3.0079700000000003,3.0969033333333336,1.921545,2.68352,2.5874333333333333,1.0310855555555554,2.8656933333333336,4.58225,9.613138166666667,1.5128379166666668,0.6788339999999999,3.476855,0.6788339999999999,0.6788339999999999,0.6788339999999999,0.6788339999999999,2.0441675,3.956182,4.049475,5.0276,6.10455,2.89498,2.813606666666667,3.05265875,3.179261666666667,4.89528,1.0685866666666668,2.329076666666667,3.25212,2.577733333333333,2.9636899999999997,3.468575,2.1927166666666666,2.178235,1.1973444444444443,5.62105,3.136985,3.593115,0.873645,0.5680970000000001,0.5680970000000001,0.8899094347826086,1.7635544347826086,0.8899094347826086,0.8899094347826086,0.29154043478260866,0.29154043478260866,0.8899094347826086,1.5507,2.450553333333333,2.897435,3.2243766666666667,2.504916666666667,2.68249,3.2253433333333335,2.695586666666667,4.40254,3.4714,1.8437175,2.2012066666666668,1.70236,0.18182994108983802,0.18182994108983802,0.18182994108983802,0.18182994108983802,2.4368766666666666,2.368043333333333,0.8645619999999999,5.3402,0.8229863636363636,1.693918,4.726271666666666,5.29545,4.54599,2.96844,4.39125,3.59111,1.7181533333333334,1.2133975,3.854945,4.69915,6.43335,2.26998,1.3581566666666667,1.8272433333333333,3.0632433333333338,1.4436533333333335,2.794173333333333,2.939106666666667,3.357366666666667,4.68428,4.05022,3.0892,5.0383,2.55361,4.219455,5.31555,4.194345,4.417685,4.59691,5.454039999999999,5.047289166666667,3.1778771428571426,5.034885,4.66101,6.6602,4.617285,4.62875,2.356495,3.00059,4.217255,4.96296,4.20438,3.91086,4.03402,4.131525,3.99971,2.4482666666666666,5.7474,3.459335,7.5937825000000005,6.16495,6.0069,5.01275,1.491842857142857,1.02444,0.6488584615384615,1.7918939999999999,5.19255,5.54295,3.99667,1.722088,4.107195,2.91806,5.112,5.49865,6.066910999999999,4.293295,2.99338,1.62117,5.3574025,4.01446,3.026485,1.529465,1.03887875,3.869265,3.112535,3.32165,3.489945,2.1284,4.49084,1.67494,2.9097233333333334,2.390685,4.68718,5.78585,5.0976,2.4565375,1.655275,5.69055,2.925076666666667,8.80083,2.906975,5.43155,6.0766,4.70478,5.55935,3.532945,5.12775,2.28811,4.13386,5.277006,2.54525,4.17401,4.628295,7.62365,5.0628,3.256596666666667,4.28381,3.979935,3.105805,3.265825,5.2576,5.89685,2.4770125,3.0611266666666666,3.3657333333333335,2.313375,2.610035,4.472685,6.0728,5.2122,4.724515,5.1084,4.389245,5.15835,0.6647684615384615,3.1687133333333333,1.24576,32.00261255825138,2.598175,4.628345,2.684995,4.715695,1.7163620000000002,2.4472033333333334,3.004036785714286,1.5362142857142858,1.5362142857142858,1.5362142857142858,1.5362142857142858,1.4678225,3.338695,0.37637444444444446,7.916997222222221,0.37637444444444446,4.55281,5.0898,2.0409775,5.6906,2.93775,4.065150666666667,2.35226,2.523136666666667,2.64742,2.110176666666667,0.6337338461538462,2.53906,0.7517616666666668,3.3346999999999998,2.2167666666666666,2.3367560000000003,1.1943533333333334,2.3367560000000003,6.32925,8.30686,4.8034,4.435365,5.6922,6.218,7.361291666666666,3.13945,1.5161425,1.5161425,2.3190733333333333,5.17195,3.74336,4.671635,6.249153333333334,4.079425,2.80168,4.077705,3.490875,3.481165,2.10514,1.0393599999999998,1.82648,3.544905,4.227675,5.376123333333334,2.1414225,3.970575,1.4413639999999999,3.29789,1.355294,3.5844666666666662,3.1207933333333333,3.0833033333333333,3.5419,3.0404933333333335,5.03235,0.7005546153846154,3.34906,3.7375666666666665,2.7393733333333334,2.3035533333333333,4.2304312500000005,3.4544333333333337,2.183733333333333,4.85396125,3.64736,5.27405,4.05974,3.61054,5.7093,5.0607,2.3098533333333333,5.83495,2.361858333333333,1.79545,3.2319333333333335,2.5953066666666667,3.1253433333333334,2.53291,1.80534,3.4360674393939394,4.39871,3.4002475,2.4316910000000003,2.4316910000000003,2.375745,3.885245,3.958955,0.6815054545454545,3.625905,3.27641,8.68392,0.8813045454545455,4.580575,3.90433,5.62975,3.96914,3.900345,2.29138,4.135135,2.845885,5.60415,2.7273083333333332,3.65936,2.65028,3.7671,2.698396666666667,3.566485,3.576045,3.62847,5.247594,3.24486,1.99424,5.23625,2.4274766666666667,4.5593,4.93237,5.0469,4.5429,4.17631,2.79811,2.1506433333333335,2.9511266666666667,2.8489799999999996,2.8394,3.233283333333333,2.805375476190476,5.051803333333334,2.9494733333333336,2.5252433333333335,6.827088333333333,5.1130708333333335,3.8402950000000002,3.216483333333333,3.8636666666666666,4.0797,3.417295,1.98049,3.949215,5.15345,5.0095,1.52972,4.31608,2.7574533333333338,7.315875,4.82044,9.05521,3.920975,3.875335,2.117285,4.034785,5.72683,7.57406,3.58454,5.89982,3.828205,3.267325,3.74122,1.723126,4.61592,1.4853016666666665,3.67144,4.523875,3.5757333333333334,0.864325,9.678566666666667,1.2445555555555556,2.0440275,2.5632,1.9461066666666669,3.5899,1.3033433333333333,3.495665,3.61182,2.439443333333333,4.27677,1.1740883333333334,3.72485,1.3989916666666666,3.0468363333333333,4.002805,5.1262,1.5889975,6.095737916666667,2.4678763333333333,7.72458,4.415675,2.734095,3.92843,3.35943,1.2027208333333332,7.38834,2.81568,3.176215,2.40135,3.98207,2.1488375,3.18694,2.23325,3.97361,1.35932,5.90525,2.72823,4.0369,0.8888109999999999,1.8959086666666667,3.8254,5.09555,5.21738625,1.55122,1.55122,6.03855,4.29368,6.38635,3.719555,3.329795,9.411425000000001,4.55328,5.6709,4.04874,2.5918,2.200230566052227,0.3684485,0.19393516129032257,0.5985884946236559,1.2331935714285713,0.652493732718894,0.19393516129032257,1.415186,0.4046533333333333,1.6016420714285713,2.013774494623656,2.03505,2.3589775,2.1795533333333332,5.36125,6.498128333333333,5.05505,5.53955,4.670825,5.055,1.2724533333333332,5.12815,3.97892,5.74705,5.10395,5.2445,5.5785,6.11725,5.60975,1.3129366666666666,1.3278157142857143,1.8401520000000002,6.267457,1.342142,5.5232,4.91734,7.146790416666667,4.903505,5.64525,4.6547,4.83307,2.55535,5.4292,5.4686,4.458218333333334,5.196,6.011796666666667,5.6303,3.91388375,4.315465,3.899366666666667,0.9506669999999999,3.7673,4.635605,1.2007125,3.7268000000000003,4.86971,4.750995,4.88989,2.420105,2.999945,2.5324433333333336,4.66512,2.1901025,3.687525,1.2242683333333333,3.3729,3.684595,4.08806,5.3376,3.462063333333333,0.6278933333333333,6.19715,1.0140075,3.729545,3.050186666666667,3.605855,1.9972066666666668,3.841835,3.7316023076923077,3.3632666666666666,4.45011,15.556273547619048,5.276403333333333,2.3383525,8.3577,1.5154325,3.91084,2.943896666666667,2.80499,2.0866266666666666,0.21412565217391305,2.8885533333333338,4.60448,1.8026019999999998,2.11095,3.345133333333333,1.84113,2.2147166666666664,1.5755285714285716,3.59379,4.919875,5.01095,3.42434,0.48726,2.29348,4.6412,2.70621,4.057735,4.67593,4.368865,5.69975,0.4918511764705883,2.4431133333333332,2.4431133333333332,5.4274,5.0768,4.87574,2.7186,3.5303,2.841283333333333,5.4342,3.642285,5.7664961111111115,4.74691,4.487865,5.041,2.71755,1.965214,4.384275,4.09828,4.08058,4.714815,1.809508,5.0836,4.23946,3.704595,4.651975,3.90665,4.459255,0.6383206666666666,3.21425,0.6653175,3.2725500000000003,3.441315,4.35539,18.026789523809526,3.63806,3.665055,2.5598633333333334,1.02472125,2.3386633333333333,2.44482,1.537796,2.313695,2.528125,4.93161,2.235046666666667,4.01577,4.279575,2.11151,4.671265,2.8934466666666663,4.75599,4.710795,5.56515,1.607145,1.996635,2.360505,4.899195,4.876215,1.195788888888889,5.3624,3.99237,5.6669,4.75301,1.71064,4.59497,3.57771,3.73879,4.02717,4.27857,3.1702433333333335,0.6555625,7.500068333333333,1.557798,0.21272555555555556,0.21272555555555556,0.21272555555555556,4.99801,4.027145,2.6811666666666665,4.19664,2.80594,4.366615,4.474585714285714,4.3013900000000005,8.73725,4.26253,6.821918333333333,0.7904925,0.76864,2.4464125,4.37758,4.260695,2.14636,5.1881,5.47925,3.40829,3.50989,4.439275,2.40882,5.04065,4.970592,2.3923366666666666,3.0830233333333332,2.887836666666667,2.75351,6.1911,3.88117,0.6683821428571429,4.069235,3.15401,4.213845,4.967103333333333,4.76454,2.82212,5.65235,3.64375,13.521615416666668,4.737955,6.95069125,2.4768866666666667,6.558624,4.479435,4.142795,2.1490825,2.33559625,10.0513,2.2738733333333334,4.3728,4.1659999999999995,3.8020333333333336,3.5141666666666667,3.0438466666666666,2.0422175,2.2829375,3.0657833333333335,1.827022,4.0739,2.421256666666667,2.5679833333333333,3.5170999999999997,3.631066666666667,2.55186,2.55186,2.445936666666667,3.6293333333333333,3.5122666666666666,2.32931,3.188383333333333,4.3299666666666665,2.810306666666667,3.0965666666666665,3.8683333333333336,2.544636666666667,2.085665,4.0078000000000005,3.01003,1.830838,4.1956999999999995,2.06235,2.531493333333333,2.943,2.2534833333333335,3.4898000000000002,5.642925,2.4431933333333333,3.8018,1.90458,10.478266666666666,1.9655566666666668,1.7951166666666667,2.1810400000000003,1.0471522222222223,1.55527,4.496873333333333,2.7182199999999996,2.7182199999999996,1.703508,1.5407983333333333,3.862801666666667,4.034393333333333,2.142583333333333,1.5396033333333332,1.684478,4.645762,3.7865,4.177133333333333,8.681083333333333,2.9577842857142858,2.5695433333333333,3.2493247204968942,4.395333333333333,2.085665,3.4520999999999997,3.0322666666666667,3.5811666666666664,3.4534808333333333,0.8565375,3.3131385,2.9689099999999997,2.8292566666666663,4.037195,3.3491,0.7152590909090909,1.9000035714285715,5.4555,2.5584189999999998,3.2968566666666668,1.6783666666666666,1.6783666666666666,2.07132,3.769538333333333,0.979878,2.2402925,4.7250000000000005,4.7250000000000005,0.6606047619047619,6.000404,3.645735,4.045025,4.972055,1.1914971428571428,3.457966666666667,3.5938666666666665,5.3282575,5.89623,2.4391966666666667,0.7001000000000001,2.6700633333333332,2.60247,3.0293313333333334,2.3336166666666665,2.2964466666666667,3.0142066666666665,2.34619,2.434153333333333,0.8189545454545454,5.14445,4.9582048571428565,1.3494183333333334,1.7569428571428571,5.70745,2.068,1.622985,4.206295,1.6289000000000002,3.666265,2.65355,3.6563666666666665,9.208603333333333,5.0125575,4.752125,5.25945,2.4338836363636362,0.822443,1.9926939999999997,7.15965,1.77905,3.99346,3.96963,3.59398,21.489896416666667,3.290896666666667,1.3827933333333335,1.14103125,3.17614,1.4193833333333332,4.317274,5.28335,3.3844445,3.3579666666666665,1.7311033333333334,1.4293316666666664,2.8749333333333333,0.59088125,3.5696,3.7159999999999997,3.1119033333333337,2.4457006666666667,2.592713333333333,2.866163333333333,2.0372766666666666,3.015916666666667,1.6688079999999998,3.7982333333333336,1.5490733333333333,3.895975,4.052825,2.7325233333333334,5.5677,3.06118,3.757295,5.15475,4.61189,3.17336,3.0235066666666666,2.39227,1.0605057142857144,1.0605057142857144,1.0605057142857144,2.46529,3.5056999999999996,2.708293333333333,2.528113333333333,2.26857,2.078435,3.904695,4.837815,3.63022,6.582585,3.135405,2.573225,1.9228075,1.0069516666666667,2.4343933333333334,4.20845,2.498133333333333,2.613636666666667,2.49608,2.37124,2.6128066666666667,2.8404366666666667,2.87106,2.8975766666666662,2.2761633333333333,3.4791000000000003,2.232963333333333,2.238535,1.6165725,1.837405,3.1028333333333333,3.0795333333333335,1.99007,3.82338,5.4078,3.014893333333333,2.5964607692307693,5.984258333333333,4.251805,4.94296,5.6086,4.76248,4.27733,6.62242,1.2481825,4.24178,2.649225,5.3338,5.07875,3.799125,3.791425,2.3794175,7.82366,2.38261,0.8239741666666666,8.00416,4.6778,5.837709047619048,4.651775,2.9524685,1.780685,5.14395,4.414805,4.641365,5.4035,2.372875,4.594825,4.5816,1.70236,4.01924,2.904675,1.40227,4.593895,0.6313117647058824,4.146978333333333,3.851015,4.79321,3.404865,1.692055,3.44863,1.831145,1.487425,2.9236866666666668,3.2818199999999997,3.2707433333333333,7.070590641025641,2.0491775,6.5886225,9.507375,6.5441275,3.167065,1.4261771428571428,2.944123333333333,1.4261771428571428,2.8542666666666663,2.0865666666666667,0.3173629411764706,1.2046829411764706,0.3173629411764706,0.3173629411764706,0.3173629411764706,1.2046829411764706,1.2046829411764706,0.3173629411764706,0.88732,3.94338,3.26012,3.013835,3.32822,3.5649,4.4435,3.066650666666667,1.602204,6.673986666666666,3.1724866666666665,3.92988,2.76538,1.0317727272727273,1.2742625,4.53686,3.5014,1.1357555555555556,1.557266,0.7721781818181818,3.161954829004329,4.17668,5.1434,3.5117333333333334,5.581393333333334,0.6024792307692308,4.342865,3.3161424999999998,3.104556666666667,2.5347633333333333,3.811366666666667,2.45013,3.014673333333333,2.58718,2.992475,3.48701,5.24305,5.0288,2.13664,5.05605,4.34869,3.08588,3.822795,3.50686,0.32571466666666665,5.1142,3.614305,3.09374,3.330292,4.29195,3.98536,1.95767,3.042885,3.711795,8.638169999999999,5.4087,5.649,4.75602,3.7370675,0.7592025,2.106905,2.127755,1.2159,1.80813,4.942885,5.58415,4.04531,5.11705,3.6375640000000002,2.586926666666667,0.902825,4.00257,1.2176733333333334,1.1645233333333334,3.271435,3.63327,4.606645,1.29785,2.6153033333333333,9.00285,3.3267399999999996,3.093663333333333,0.85783,4.05442,12.471706666666666,3.427305,4.12675,3.112715,2.815335,4.768625,5.13715,2.11322,4.451055,0.584393076923077,4.64933,2.216225,1.739375,1.739375,3.5469333333333335,4.54139,1.609235,4.20971,1.3476128571428572,3.91066,2.516284166666667,3.5044,5.0047,3.515085,3.839645,2.68915,2.6389825,2.6389825,11.452505,0.694132,2.85474,3.3305933333333333,2.1315625,1.9971175,0.9704485714285714,1.3953025,1.19571,1.97086,4.982555,2.376255,4.368897499999999,2.05803,4.114145,4.06332,1.7189166666666666,1.9976725,1.06053,6.210592833333333,2.039515,2.152355,1.7370180000000002,1.9516940000000003,1.14103125,2.5670495833333336,3.519815,2.2555866666666664,3.1052466666666665,2.45736,2.7430266666666667,1.6396766666666667,3.1008533333333332,2.57975,1.8750900000000001,1.8614233333333334,2.8674999999999997,2.8674966666666664,2.3672400000000002,1.1660333333333333,2.56501,2.10364,2.6692,0.32079684210526316,0.39797583333333336,2.23963,2.21793,3.1921,3.05511,2.64617,5.0157,5.72725,4.345935,4.7161,4.431105,3.83052,2.973193333333333,3.682925,0.739870909090909,0.06124363636363636,7.02225,0.06124363636363636,3.58717,3.010725,5.40655,3.48042,6.3317,4.60195,2.0164666666666666,2.44539,1.0028183333333334,5.25115,6.2732,3.706,5.43475,1.909155,3.871315,1.9856679347826087,3.22069,3.2321299999999997,3.98811,5.095325,3.464905,2.079546666666667,2.079546666666667,4.03487,7.79953,3.487245,2.1889566666666664,2.39067,4.55012,3.291425,5.00355,3.635925,1.0630444444444445,4.20029,2.6387300000000002,2.76242,4.293725,1.1676933333333335,2.4543066666666666,3.834225,3.525135,5.06585,2.863875,2.88095,3.79513,3.971235,4.414845,4.996305,4.299265,3.258746944444444,3.86397,2.9753900000000004,2.784473333333333,2.8099600000000002,3.917066666666667,4.34795,3.049353333333333,5.160605,4.27936,4.01216,5.43385,4.525305,3.351325,1.430124,1.3805275,4.06302,3.5820666666666665,1.6101866666666667,2.963506666666667,3.26264,3.2618233333333335,4.0956455555555555,3.2828999999999997,2.3297625,12.630365805555556,2.1365266666666667,1.8806239999999999,4.819465,1.0348140000000001,3.22354,3.92155,4.83253,3.419115,1.2537777777777779,2.2943166666666666,2.5601433333333334,1.5455780000000001,4.3768,1.02759,1.02759,3.344936666666667,1.5549600000000001,1.7899766666666668,1.7792175,3.42148,5.01305,2.008635,2.703415,3.540733333333333,2.8303833333333333,2.9167400000000003,1.9949480000000002,6.38015,5.57985,3.89125,0.7539092307692308,3.80339,3.570795,1.0460454545454547,5.5629,3.3695,8.6678,4.840755,4.86564,3.573815,1.5274125,3.141435,4.900425,4.70168,4.114595,3.84337,4.420195,3.85712,3.5392333333333332,3.5392333333333332,4.44053,2.6173391666666666,4.154935,1.587275,5.602574583333333,5.488581666666667,1.5100566666666666,4.57447,1.05877,5.7645,4.020595,4.91805,4.57535,4.27494,2.56485,2.542625,4.411365,4.29398,5.0945,4.31947,1.82622,1.3587339999999999,4.5749,2.0428266666666666,5.2248,2.956295,3.49979,8.176535,3.71212,4.59326,5.1504,3.993165,4.772535,8.118495,4.28738,3.29186,9.4152,4.022285,0.6017628571428572,2.0654102930402933,4.677475,0.614214,4.830935,4.284925,4.894315,4.608455,3.23414,3.403495,4.65116,5.0706,2.687075,0.7228357142857142,4.83148,4.597865,4.66916,4.297945,2.93784,4.4808,3.59439,0.673746,3.343055,4.30447,2.5502,3.1819133333333336,4.2973,2.286791666666667,5.65025,5.2887,4.0546875,3.1856033333333333,5.614860833333333,5.614860833333333,8.740593333333333,2.04446,0.8474775,0.8474775,24.580763333333334,2.68745,7.690023333333333,0.35746083333333334,1.3055,3.1521399999999997,1.00535,3.71998,3.790975,2.2589125,2.2589125,4.32251,4.9945,3.53963,2.5233866666666662,2.5233866666666662,3.43343,4.208575,3.75702,3.5516,2.0635233333333334,2.6285483333333333,3.9246490000000005,1.93712,3.507155,2.9670199999999998,2.819188214285714,2.819188214285714,3.4507666666666665,0.8285344444444445,2.4724833333333334,1.7166066666666666,3.3348999999999998,2.93486,2.992453333333333,2.7562800000000003,4.660065,2.29495,3.1438633333333335,5.456064,1.329728,2.21657,3.11722,2.67469,4.40062,5.873176666666667,1.4029366666666665,3.803266666666667,2.4532375,5.07885,6.4759,1.47723,5.26266,5.050376,3.548786857142857,4.6327,1.0463042857142857,1.9041139999999999,3.14003,3.9098361904761907,1.2691616666666665,2.4696375,1.740895,1.672306,2.78025,3.5055700000000005,5.1798775,1.03925,1.4340857142857144,2.89705,13.264275000000001,4.649166666666667,2.6447399999999996,1.1827299999999998,2.5410761904761907,0.9690828571428571,3.2564533333333334,4.1964266666666665,4.9675,3.371966666666667,5.5413,1.62059,3.8046333333333333,4.20801,2.88636,4.058238888888889,1.8159533333333335,1.1077655555555554,2.472983333333333,2.93805,7.659981666666667,2.8534794285714287,2.65218,0.717759,4.821466666666667,3.5709999999999997,1.127792,5.69608,1.98788,2.4549966666666667,5.59945,1.2836888888888889,3.14455,1.0069636363636363,3.0431333333333335,4.296815,3.1038533333333334,3.2243,2.2237933333333335,2.55784,4.67794,4.880515,5.36005,1.5622275,4.506685,3.64171,4.46319,3.421476,2.5786366666666667,4.219131333333333,1.006808,2.849052380952381,4.73611,2.79065,4.077155833333333,1.360575,2.679543333333333,1.98366,1.98366,7.298246666666667,3.182096666666667,5.3413675,3.406185,1.78585,2.8054066666666664,4.6758033333333335,5.550466666666667,8.72339,4.840075,2.6856015,2.0428433333333333,2.0453938333333332,4.058516666666667,3.805705,1.504006,1.9992125,3.23900625,1.299,3.1394300000000004,19.447655,3.1858400000000002,2.7998,3.0426266666666666,2.995816666666667,2.608216666666667,2.2850266666666665,3.27075,3.6283999999999996,2.62092,2.624633333333333,5.803668666666667,2.42338,4.9088205714285715,2.9365185714285715,2.7742205714285717,1.4865566666666667,3.8831277777777777,2.1425125,4.1335,5.11625,4.12724,3.3437158333333334,3.23244,2.42586,3.4621,3.6260666666666665,3.4605333333333337,3.3700666666666668,0.8545118181818182,5.42555,2.26443,3.341833333333333,2.8032,1.9933175,2.1482099999999997,2.1482099999999997,3.381283333333333,1.9866383333333333,4.932905,4.38014,3.711195,4.553805,4.89183,4.667185,4.667185,4.16441,2.98592,4.777855,2.737205,1.630198,2.16142,4.574175,4.21796,2.78315,3.64444,5.481132499999999,3.9063,6.386841059523809,2.86709,0.847152,0.847152,3.338145,4.96069,3.81216,3.3498840000000003,2.33798,1.8349833333333334,1.4794366666666667,3.0505099999999996,6.11572,1.5146249999999999,4.204475,3.7937,3.693995,5.2075,5.04495,4.708136416666667,3.4360999999999997,2.4318275,4.31567,4.512965,2.1225425,1.069672,4.136235,2.74215,6.55595,3.8138,2.65126,3.2194,3.72199,3.699115,4.680675,3.078895,4.446885,3.953175,4.263255,3.717665,3.495,3.45954,3.95021,2.62467,4.447825,3.279545,5.15715,0.6052833333333333,2.405905,1.9773775,2.166685,1.82645,2.74489,2.6087433333333334,1.8158833333333335,4.435105,5.31043,1.88569,4.080085,4.39744,2.45673,5.496648333333333,4.123058333333334,4.59613,5.07155,6.981116666666667,2.0837566666666665,3.05621,1.8692733333333333,2.819803333333333,1.749595,1.80536,3.92215,3.44924,5.5281,1.0215544444444444,3.00077,4.34234,2.2686925,5.2977,3.65743,2.485155,3.7076,3.421675,2.015215,1.8652419999999998,2.60245,3.213375,3.41565,1.988895,2.776738571428571,2.776738571428571,3.5994,3.4441,20.05171261904762,1.01446,5.5790875,1.9355875,1.8764866666666666,3.61471,3.8008,1.8095525,3.79891,4.514095,1.3134166666666667,1.3134166666666667,1.1046133333333332,1.82498,2.366616666666667,3.1036466666666667,4.783643333333333,3.614125,3.6932333333333336,0.5129757894736842,3.4866357894736844,1.9372299999999998,2.24344,4.4274425,3.35144,3.97547,3.452185,4.529655,4.699605,1.9837775,4.023265,5.666133333333333,2.23982,3.46211,5.2134,2.06191,4.958265,6.29235,1.27849,2.0782,3.7199000000000004,0.70448,3.2736133333333335,3.428285,5.0404,5.00235,2.8151238888888885,8.052516666666666,3.0995066666666666,2.95729,0.43566352941176467,4.20515,5.363814285714286,3.189228571428571,5.42555,3.75961,2.537076,1.7955100000000002,5.458178,4.37529,4.256495,2.964975,2.08337,3.872605,4.1702,3.0208999999999997,2.10758,4.010730833333334,6.362515,2.708105,3.7816,3.567075,4.0236,1.588257142857143,1.588257142857143,3.2020133333333334,3.1719000000000004,4.74998,4.82596,6.5808,3.4766,2.86035,2.19011,1.6089666666666667,1.4502857142857142,5.01665,5.894185,5.17675,6.10485,4.579905,6.7650524999999995,3.401305,2.8989433333333334,3.9539013333333335,2.0218833333333333,3.0489105,1.70042,4.61355,2.3749033333333336,3.936715,5.11135,4.004575,2.74851,2.925076666666667,1.4189157142857145,2.607425,3.8577,1.94878,0.614824375,3.2418033333333334,2.6055466666666667,2.6477766666666667,2.4264466666666666,2.170495,1.5632899999999998,0.6904690909090909,0.6904690909090909,3.7168666666666668,1.889095,2.273675,3.30498,5.8889,4.08082,6.1702,4.68919,4.50465,1.969623,1.33816,2.570505,4.33567,0.864345,3.24718,2.858805,2.90679,2.095385,3.88168,2.67034,1.9833566666666667,1.0241585714285715,3.545185,8.843065,3.813705,1.5770478571428572,4.434295,3.452395,2.81239,3.42931,2.726375,1.7362466666666665,0.9995075,3.77915,2.355784166666667,2.1089866666666666,1.6120866666666667,2.11158,2.2467466666666667,2.51026,2.83402875,1.2673133333333333,1.8253166666666667,1.0087875,6.3931700000000005,5.9603,5.8093,3.862125,4.55433,3.0836566666666667,1.6327100854700856,4.71596,5.07285,2.388415,5.22445,2.072735,4.6321,0.9584988888888889,4.136845,4.31731,1.87674,7.75435,3.5078,1.84085,1.897565,1.7258825,2.612125,3.539766666666667,1.2890894805194806,3.1663533333333334,5.8882,3.351305,3.91574,5.8926,5.5285,5.85575,0.96677875,4.431685,4.68178,4.145905,4.892305,3.91945,4.838855,4.96185,2.96846,1.6711333333333334,1.6711333333333334,5.29515,6.474685,3.775255,2.53318,3.8678,4.94341,1.559976,4.382355,5.3109,3.60296,3.93731,2.91976,3.022793333333333,4.96962,2.5651803749999997,10.834836235387163,1.98095,0.767625,2.6167966666666667,1.640825,2.496685,2.2298925,1.990596,2.8150633333333333,5.07655,5.58305,3.06075,1.7076,6.4768404761904765,1.5599142857142856,2.999833333333333,0.5374380952380952,4.097363333333333,5.658,3.61828,4.864505,11.839704999999999,5.44585,3.2308466666666664,3.5457666666666667,5.0123,3.2310133333333333,4.831685,0.9142125,1.1741383333333333,0.8652136363636364,5.7141,4.116545,1.88509,4.907009333333334,4.32638,6.5577,4.987635,5.1531,4.543345,6.02395,3.928205,5.14865,2.988265,1.285246,4.27131,5.41445,2.868185,3.930045,2.78398,2.59653,1.1361025,5.1444,3.850315,1.3212125,3.5604333333333336,2.9901633333333333,2.555753333333333,2.44855,2.551413333333333,3.09413,0.69108,2.6915600000000004,2.6350666666666664,2.5448166666666667,1.9962666666666669,2.9040766666666666,1.994725,1.4779566666666666,2.470155,2.1624325,2.1607575,3.352933333333333,3.0304366666666667,0.7231810000000001,2.8385433333333334,3.43095,4.668315,2.45314,4.06598,5.47935,5.12235,3.2739,3.7153,1.3936600000000001,3.42825,2.5551905555555554,4.2454600000000005,2.8348337499999996,4.923785,5.38655,4.96722,4.487645,4.2329,0.884008,0.884008,2.251352307692308,1.66353,4.17249,2.6119145,2.6119145,5.19025,6.14405,3.098875,1.2381783333333334,1.6315142857142857,5.908,3.4042,2.330906666666667,3.220455,2.883115,3.25276,2.330906666666667,4.43616,3.170235,3.0629920833333335,2.760005,2.046125,3.01847,6.67335,3.15557,4.628965,4.93557,6.7221,6.665,6.650225000000001,6.650225000000001,5.72245,4.888585,0.5268884615384615,5.4673,4.9387,2.84034,2.79057,8.099995,2.6842,4.396585,3.643295,2.6926400000000004,4.832265,2.60638,3.4090625,3.1980066666666667,3.4929666666666663,2.7797,1.722288,1.722288,3.603475,3.98287,4.952615,1.83369,1.5363120000000001,48.581443030303035,2.6134766666666667,0.8849063636363635,3.2714200000000004,1.86599,3.412433333333333,2.8548233333333335,3.13576,3.324335,2.8645566666666666,2.1490766666666667,1.0445275,4.64888,3.252645,3.43854,3.789545,5.31515,5.25025,5.1237,5.2749,5.50535,4.92701,5.8348,6.259942499999999,5.07105,5.64085,2.0172025,3.95478,6.723,5.373,3.606675,4.31829,3.86058,2.32176,3.870375,4.70819,3.13127,4.1056,1.6454920000000002,4.297825,1.322514,3.098665,3.733535,3.467,6.5959325,4.42988,2.04735,4.378925,3.90163,3.95427,0.95713,2.689445,2.82696,4.347040595238095,1.19305,4.73615,1.3113125,6.06065,0.7162011111111111,4.026813333333333,10.480743333333333,4.61144,3.63883,3.50898,1.8912000000000002,4.103965,5.56645,3.12056,4.53518,9.412156666666668,3.5844666666666662,2.11344,2.8271866666666665,2.7111199999999998,2.7069433333333333,2.8011404166666667,2.9774,2.5458666666666665,3.2191500000000004,2.71069,3.2930566666666667,3.423715,2.20795,1.6628666666666667,5.076079333333333,4.0318,2.61654,5.051076,2.8912933333333335,1.06817625,2.1896425,3.0278466666666666,5.2944192857142856,3.0042,2.2506222222222223,2.2506222222222223,1.6307225,1.75095,2.17324,2.0168,5.9042650000000005,4.6247475,2.1599125,3.0871633333333333,3.794333333333333,2.12435,0.60707,2.8341833333333333,1.886465,0.5504892307692308,3.724485,2.52805,2.588,3.640395,3.6297800000000002,2.4818366666666667,1.5570866666666667,1.2132766666666666,2.026635,3.36749,3.784705,4.2469975,2.77343,3.98897,3.68605,1.122781818181818,9.06126,2.69196,3.298765,1.2870625,2.7977133333333337,2.3671425,2.3671425,2.3671425,5.02945,5.7275,1.598135,5.26275,1.34381,5.684423333333333,1.5877560000000002,4.30081,4.248855,4.21662,5.2619,4.864355,1.856855,9.355192500000001,3.92537,5.0593,3.55182,4.038695000000001,3.242483333333333,3.1571200000000004,3.81447,2.51802,4.394558571428571,4.37508,1.5788125,3.88767,1.5788125,3.50439,4.475559166666667,4.90227,4.475559166666667,1.75223,5.9662,4.65191,4.57041,2.8677799999999998,3.14925,4.310855,3.12613,5.4021,0.5165821428571429,3.1977499999999996,3.0216933333333333,5.238291666666667,4.7511,2.4656975,4.870995,6.51453,3.31898,2.80007,2.82671,2.25054,4.178395,4.08876,4.716375,2.353235,3.815085,0.874341,5.3905,3.605135,4.255075,2.38522,2.9757766666666665,2.2630833333333333,2.74747,2.721636666666667,2.7725899999999997,3.35879,2.4520525,2.4520525,4.576220833333333,3.579415,4.789635,11.627675,0.9649511111111111,4.671055,2.663796666666667,2.35886,2.8844600000000002,1.512975,7.8424215,3.391833333333333,3.793685,3.862616666666667,2.5766466666666665,3.970666666666667,4.508852027777778,2.575806666666667,0.44431888888888893,1.513796,1.4806075,4.9653,2.821235,3.194875,3.757698333333334,3.444945,2.47150125,5.114,4.661735,3.646675,4.89342,2.191875,4.00254,2.517673333333333,5.574956666666666,3.08606,5.34345,4.178885,4.23891,4.285265,1.94799,3.905685,3.74524,3.215066666666667,3.57558,2.986395,3.083135,4.185475,4.683335,2.57231,4.617065,1.4953116666666666,3.57922,2.861455,4.53572,4.21623,3.890985,5.0191,2.42005,4.21454,5.1365,4.136905,3.1194866666666665,1.984965,2.91649,2.240065,0.8192933333333333,4.592905,2.0395,3.465085,2.695655,4.019015,3.177455,2.944195,3.27963,4.38095,4.497818666666666,4.04314,2.76654,1.4516466666666668,3.976025,2.342845,0.9631477777777777,4.50517,9.166955,3.227045,3.52504,4.1186,5.0473,3.74011,2.07418,3.947545,3.794515,3.205415,3.156475,3.817065,0.609495,1.2601042857142857,6.3960025,1.7035325,2.58556,4.97311,2.420105,2.28035,2.69974,7.86065,2.53636,4.076735,3.682645,0.7489877777777778,3.42641,2.59787,3.769875,4.172795,6.3184483333333334,0.692489,3.29502,9.89016,3.10078,1.0457477777777777,5.239739583333333,4.835175,5.48615,4.48973,4.775115,3.299235,2.674716666666667,7.4591650000000005,0.845578,3.43344,4.11764,3.22323,4.13778,2.54448,4.221745,1.781,4.53521,4.21891,4.281195,1.6750825,4.85763,4.808895,2.37546,2.02237,2.4285525,1.127792,4.10846,3.3844445,1.5280099999999999,8.32327,5.8772,4.69187,4.492685,3.46899,4.386335,1.4833714285714286,4.417705,4.020875,5.39205,3.77778,2.3569033333333334,6.632559337606837,1.213735,1.213735,2.47952,0.9169214285714286,4.236275,3.18223,0.99375,1.6545666666666667,0.4052725,6.2548075,0.964265,2.68365,3.529535,4.0833,4.034055,4.16659,5.64995,5.4884924999999996,3.53787,3.114895,2.35771,4.225155,4.52725,4.29289,3.8938,3.452235,6.19755,4.41636,4.339164444444444,5.765929,3.79052,3.437005,2.264925,3.437005,6.969578,42.173510740259744,3.731905,3.38502,2.9609400000000003,4.389485,4.56506,3.40699,3.19741,3.79016,4.692545,4.237185,1.7298166666666666,5.07685,2.668995,4.90836,5.3093,4.690255,2.40989,4.38674,3.83106,3.164925,1.615634,0.6673176923076922,1.863966,3.7979000000000003,3.0437066666666666,1.3272125,3.043886666666667,2.7107266666666665,2.82591,3.7922999999999996,3.086743333333333,1.475066,2.8770666666666664,3.8066666666666666,1.9013421042471041,2.95034,3.303528,3.06749,2.5369433333333333,3.5593333333333335,1.1988444444444444,3.75734,3.74569,1.2463716666666667,1.2463716666666667,1.2463716666666667,1.2463716666666667,2.8319457575757574,2.0018766666666665,2.315525,3.60409,4.968685,5.17205,4.223095,4.40212,5.84375,4.64431,2.231725,6.13115,4.105925,3.301155,4.250385,3.3161,4.272515,4.399745,0.7339084615384616,1.5182714285714287,1.5797833333333333,4.267085,3.84766,4.79636,4.07239,6.08719,2.23723,4.437175,1.5950499999999999,3.530755,5.1757,1.4796433333333334,5.30855,0.7369416666666666,4.441745,1.183602,1.19373375,3.79304,4.02263,5.45305,5.15905,6.1909,4.53022,1.575732,5.035,1.444535,3.51137,3.457575,2.537076,1.9919825,3.732205,1.3541133333333333,3.30329,5.0448,2.9518066666666667,5.97975,123.15953184108947,0.4777755555555555,4.75434,2.568026666666667,4.662795,4.014495,3.931245,1.472255,0.34182619047619045,2.71697,3.672315,5.5074,3.571565,3.584,4.36565,4.5204,4.77204,8.061916666666667,0.6586955555555556,2.660875,0.956835,11.111889999999999,3.095135,3.46203,0.9671555555555555,2.196755,2.66649,2.08564,3.3739333333333335,3.3527666666666662,2.83901,4.382835,3.07523,2.2335133333333332,2.24336,4.989945,3.7824,2.877935,3.57785,3.750135,3.321845,2.3006100000000003,3.830035,4.039845,3.077995,1.0111422222222222,2.4819566666666666,4.382835,4.528225,5.65205,4.123815,4.383795,1.84113,10.11214,4.493715,2.65282,4.30708,5.3609,0.5545899999999999,0.5545899999999999,4.2948249999999994,4.2948249999999994,3.33026,3.686666666666667,1.7894847727272727,0.5633916666666666,2.868415,4.54115,4.12706,3.055345,3.91179,5.343225,4.983425,2.0675125,4.746865,2.2520675,2.8867,4.199293333333333,1.71731,2.05457,0.48612285714285713,1.1912228571428571,1.1912228571428571,1.89281,4.675805,4.427835,5.0045,6.94172,2.755805,2.867065,1.85759,1.750655,4.194670833333333,3.843825,5.220346666666667,2.543605,5.220346666666667,4.858875,3.47894,6.03755,3.74504,2.3840866666666667,2.1004666666666667,2.38967,1.498225,1.41189,1.474645,1.82042,1.656265,1.8525325,4.0324,4.782995,2.442145,6.79735,3.15713,4.72308,3.41095,4.253975,2.9204966666666667,2.96026,6.449826666666667,3.445066666666667,4.771606666666667,3.28777,1.37026,2.4608933333333334,2.6080133333333335,2.2746666666666666,6.33905,4.41997,4.91826,12.825250106227108,0.7797408333333333,2.046753,2.261625,1.7143260000000002,1.3051885714285714,2.592525,2.55245,2.5848,2.456225,0.7630423076923076,1.9233125,0.5427,4.80616,1.91426,4.128065,4.731715,2.599,6.025015,4.33867,7.65819,3.986315,2.73665,3.192415,4.88132,4.87364,2.6748917142857143,4.53067,2.215405,2.215405,5.1032,3.942535,4.441765,4.025205,3.2440466666666663,3.94233,5.1154,5.1102,4.940955,4.52774,4.340285,4.29773,2.33975,5.3152,1.2668283333333334,4.86637,4.635205,2.4720166666666668,2.1824733333333333,4.40099,1.52641,5.09655,1.8181525,5.860719601449276,4.26737,3.92694,1.4992599999999998,2.9039516666666665,2.9039516666666665,11.76554,3.903755,4.87634,1.14314375,4.484688,2.2910175,1.3930925,2.334295,1.69414,2.012325,1.839226,3.05332,5.93995,1.7337725,5.18165,4.8294500000000005,5.67795,2.1744875,2.427735,3.373905,4.375935,5.5417,3.886145,7.547181666666667,3.2303599999999997,2.779446666666667,0.3718605555555555,3.572935,4.29646,3.4227000000000003,6.294695000000001,2.54971,3.080966666666667,1.2186133333333333,1.6037566666666667,0.614824375,1.513796,3.036775,1.5213483333333333,1.5247149999999998,0.675325,1.37466,4.627155,2.431455,0.6518515384615384,1.6658983333333335,1.747865,1.74221,1.289495,2.2207825,1.6037566666666667,2.54525,1.37466,1.37466,0.6518515384615384,1.636242857142857,2.49146,1.2691616666666665,2.76945,0.6518515384615384,2.732275,2.49146,1.3587533333333335,1.3587533333333335,1.3587533333333335,1.931562,1.2277975,0.6518515384615384,1.079526,1.15662,1.0471522222222223,1.921058,2.724575,0.864325,2.2618175,1.5942714285714286,0.6518515384615384,1.75585,1.6037566666666667,2.062883333333333,2.0823,0.921767,2.062883333333333,1.05246,2.37546,2.374245,2.516525,1.15662,2.12458,1.3541133333333333,1.3541133333333333,0.9164636363636363,0.9164636363636363,0.9164636363636363,1.2186133333333333,1.6037566666666667,1.5942714285714286,1.6658983333333335,0.9179700000000001,2.0823,1.513614,1.830838,2.11412,1.2186133333333333,2.6447399999999996,12.97041,0.675325,2.60976,1.8667333333333334,2.4670875,0.9690828571428571,0.9690828571428571,0.6518515384615384,1.0414833333333333,1.5632899999999998,1.5942714285714286,1.7617159999999998,2.0823,1.195788888888889,1.195788888888889,1.693918,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,3.21035,1.05246,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.3862795454545455,56.368421624098126,1.4819225,1.6281833333333333,1.5942714285714286,1.8667333333333334,0.9179700000000001,0.6657000000000001,0.717759,0.717759,0.717759,0.717759,4.444733333333333,16.729795833333334,3.4243333333333332,0.5893881818181819,1.647804,1.647804,1.647804,0.5893881818181819,3.036775,0.6518515384615384,1.75585,1.5247149999999998,2.51326,1.05246,2.4656975,1.05246,1.912544,1.912544,2.1760333333333333,2.1760333333333333,0.6518515384615384,2.07684,2.07684,0.9574272727272728,0.21272555555555556,3.036775,1.5259633333333333,2.4532375,0.5893881818181819,0.5893881818181819,0.5893881818181819,0.5893881818181819,0.5893881818181819,1.8667333333333334,0.3862795454545455,1.05246,2.280545,2.280545,2.542625,3.050186666666667,0.6606047619047619,0.6606047619047619,3.4532000000000003,4.237466666666667,1.1914971428571428,3.5094999999999996,1.03742,2.466985,2.04446,1.1676933333333335,3.0707733333333334,1.9801825,3.1856033333333333,5.38335,2.46596,1.2241333333333335,4.288635,4.34282,2.71284,1.7456219999999998,2.383333846153846,4.308895,1.6609555555555555,2.6856833333333334,3.020433333333333,3.2245000000000004,2.430285,6.122819999999999,4.265155,0.21272555555555556,3.093026666666667,5.30545,3.46174,4.725115,4.54768,4.53223,2.8649766666666667,1.808898,4.68217,4.54812,4.4643,4.889925,5.5873,3.289795,0.7360958333333333,6.82657,1.6733,3.1359899999999996,4.624805,2.6431733333333334,2.6431733333333334,0.8540672727272728,1.9919825,4.564455,3.10547,5.28285,4.382765,4.619175,5.21375,1.1211442857142857,4.8296,5.6679,7.10643,2.27609,4.114005,3.810705,4.063645,3.86453,4.06145,4.313985,6.3963575,5.20885,4.29157,3.518735,4.4165383333333335,7.711431999999999,1.98128,2.1496364102564103,2.8405133333333334,1.7629666666666666,2.703253333333333,1.8236333333333334,5.03715,3.07748,6.1724,1.995492,5.151,4.050085,3.788175,4.23962,3.71112,2.5440566666666666,2.7361866666666668,2.6944266666666667,2.730423333333333,2.55464,1.7306666666666668,2.6886433333333333,2.8610900000000004,2.22908,2.22908,4.45332,2.8632633333333337,1.9292999999999998,2.951943333333333,2.0415566666666667,2.6491466666666668,3.0110499999999996,2.68554,3.16647,5.51535,4.27636,4.017055,3.49775,3.49775,4.125325,3.31366,4.09376,4.422485,4.10256,3.388975,3.205075,7.45875,2.30308,1.93037,3.264735,3.110605,1.38244,1.38244,3.53672,1.79216,4.107428,3.533,4.002945,2.0989265,2.0927765833333334,0.6136958333333333,3.532375,3.81183,1.9535725,2.44767,4.262055,1.2253033333333334,4.84833,1.15133,0.40580357142857143,0.5552046428571429,21.71532854365079,0.5552046428571429,0.40580357142857143,0.7046057142857143,9.71839,2.930946666666667,3.779385,4.49587,3.58906,2.75828,4.212747857142857,2.169975,2.42923,3.776525,3.185035,4.197455,4.51767,3.454925,2.197865,3.16457,3.704745,4.00037,3.01826,1.076962,1.076962,1.076962,1.076962,3.376725,2.86602,3.347695,1.82043,1.2133216666666666,2.442255,3.52596,3.985485,3.27602,3.28463,2.53572,2.516284166666667,3.84562,4.266395,1.0990216666666666,2.755383333333333,1.09971,2.7364433333333333,1.9092200000000001,3.7797666666666667,5.2814,2.4048633333333336,3.871205,4.0961066666666675,0.8548939682539682,0.28531285714285715,0.28531285714285715,0.5695811111111111,0.28531285714285715,0.28531285714285715,0.28531285714285715,0.5695811111111111,4.639505,7.656466666666667,3.535455,0.5593725,3.617615,7.366155,3.37388,3.2432133333333333,1.1181383333333332,4.81298,5.30715,4.43851,4.83599,1.630236,4.64472,2.1414066666666667,2.302501333333333,3.66306,5.4248,0.7814428571428572,0.7814428571428572,3.58764,2.8097166666666666,1.77078,3.28547,2.822955,6.75725,2.95312,6.582,6.20055,5.56385,2.07637,1.89055,3.87979,3.584805,2.066235,3.38594,3.28382,1.74864,1.12945,3.983425,3.311725,4.967103333333333,6.135301666666667,1.5391166666666667,3.97644,1.12673,2.39541,3.16636,4.251235,0.3911307142857143,3.792005,4.024865,0.926141,2.7388433333333335,7.804293333333334,3.004465,2.04132,5.799137999999999,4.51189,3.79226,1.42893,5.42728,2.8641966666666665,3.1963399999999997,3.6143,2.20193,2.20193,6.51605,6.51605,3.687689285714286,3.687689285714286,10.5109,3.687689285714286,3.687689285714286,4.347549285714286,6.89155,3.433275,3.7180041666666663,3.2016899999999997,4.66397,3.453925,3.3624333333333336,3.21439,4.82939,3.1758566666666668,2.6059033333333335,3.3370333333333337,2.19955,2.670645,5.26395,7.314255,6.8721950000000005,5.1713,3.77,4.002085,7.149594,5.51395,4.598845,4.059375,4.388105,2.44515,2.08206,2.07829,5.62355,5.7975,4.69243,4.279,2.28486,2.7364533333333334,7.066643333333333,1.931562,2.5637366666666668,3.474133333333333,3.474133333333333,2.96827,5.23535,0.7972874999999999,3.5912,3.96643,3.1626266666666667,10.38015,4.4126,3.01137,2.48449,4.85217,5.99775,2.96652,5.45615,2.627623333333333,4.55178,2.8670085714285714,4.788885,5.5512,4.90378,1.1195883333333334,3.6851000000000003,1.03639,2.4707133333333333,5.057786588235294,9.126249999999999,2.4786766666666664,3.5526666666666666,7.398096666666667,1.7925419999999999,4.85853,5.58905,3.533675,3.63264,2.21834,4.722295,2.4139375000000003,0.47474153846153844,5.18015,2.938615,3.5443,5.1528,5.11855,5.4256,6.781880000000001,4.64437,5.4526,7.40449,54.775908333333334,4.921005,3.87454,4.62244,5.68165,4.48686,5.3484,4.37347,4.73889,1.8728875,3.94615,4.18381,4.85387,2.411485,5.1868,3.827725,1.6111879999999998,5.72695,6.4336,7.311766666666666,5.4421,3.285895,4.77701,3.278445,3.23626,3.520775,4.196665,3.802375,6.93601,2.771875,1.0540957142857141,2.36213,0.6187199999999999,0.6187199999999999,3.356595,0.6187199999999999,2.4879928571428573,2.4879928571428573,3.184112857142857,4.68599,5.116652857142857,2.36213,4.8992875,2.64722,1.4255849999999999,5.7827,2.16509,7.16385,5.71816,11.073406931818182,3.4075333333333333,2.47438,0.21032151515151518,1.9342899999999998,2.1207333333333334,0.92614875,1.3154466666666667,3.036153333333333,2.4951825,2.608125,0.5795899999999999,26.792320416666666,1.8205075,0.8495692307692307,2.579403333333333,2.579403333333333,0.41367944444444443,1.7091025,3.27123,1.3071,1.7814375,1.64422,4.12764,2.8786,1.8996933333333335,2.36947,1.108135,2.04878,1.584195,5.4010446666666665,3.83813,6.96473,2.60045,3.439666666666667,0.9546133333333334,2.370525,5.2874,6.35534,3.0756,2.236353333333333,5.4102875,2.0270875,2.55332,4.333265,0.99424,3.5101333333333335,2.37432,5.1969,4.9591,6.2354,3.422025,4.192152500000001,4.192152500000001,5.41055,2.14275,5.5523,3.08443,1.6656325,3.23111,3.152745,5.348123666666667,3.86771,2.9306099999999997,3.4272333333333336,2.71436,1.0636357142857142,5.4179,0.92976375,5.430873333333333,4.594615,7.722760000000001,4.215835,4.365835,4.17654,8.431006666666667,4.50908,4.976555,1.20391,0.7252928571428571,4.67386,4.453355,2.17399,3.092315,3.159015,4.217815,2.15732,5.0351,2.5957266666666667,5.52855,5.39465,5.6831,4.63632,5.22975,3.100145,6.618145,3.46087,4.378095,3.37668,4.795555,5.585354880952382,0.5683164285714286,3.7977333333333334,1.74196,0.5410333333333334,4.058805,2.576785,1.07888125,1.9164,6.11719,3.55141,2.380705,2.886416666666667,2.64323,5.0353,4.400575,1.689002142857143,4.32857,2.3293033333333333,3.765233333333333,4.529805,5.1862,3.2024675,3.7982666666666667,3.8115,2.0357600000000002,7.19045,4.99565,4.426495,5.41265,2.2120225,4.559335,4.843555,3.91322,3.863385,10.879145000000001,3.445835,4.110368333333334,4.709155,5.0376,2.418915,4.563975,4.39087,4.719515,3.4128666666666665,4.34115,1.7223225,3.1589733333333334,3.477045,4.039255,5.342,1.9470960000000002,4.093715,3.24358,5.4078,3.4370666666666665,1.719845,3.858605,4.58358,1.077205,2.919165,2.703226666666667,4.579200666666667,1.7667940000000002,1.77492,1.3397975,3.672665,5.55955,5.4677275000000005,3.6176950000000003,3.25762,2.37429,2.0286,1.814705,1.5384566666666668,6.07125,3.002665,2.0044025,0.9037692307692308,20.983608320512822,3.007345,3.388494166666667,4.725265,4.085625641025642,1.4556733333333334,2.801604166666667,3.0751629545454544,1.215324,1.89419,4.515865,4.93919,3.649143333333333,3.13862,5.6362,4.840555,7.15935,4.925169166666667,4.57908,3.85062,2.693,4.13082,3.913595,3.7767,4.18181,1.9658575,5.0318,8.06582,3.328035,2.796465,4.555695,0.602625,3.217916666666667,2.0470200000000003,2.4347325,4.3261,3.232295,5.30605,3.7672,2.930655,2.345845,1.631815,0.773,1.4238,1.2027666666666665,4.17842,4.02827,4.855605,4.842045,7.36652,2.1672566666666664,1.40193,2.3650933333333333,8.005876666666667,3.267845,2.797675,3.085475,4.74528,3.4295549999999997,3.543565,1.602438,4.74322,4.969965,4.143795,3.885015,3.76523,4.16574,4.63391,3.901025,4.226025,4.35176,2.12705,3.4614666666666665,2.975085,5.45125,2.668165,4.481795,2.6848,2.92412,2.3752566666666666,2.2417466666666668,1.9930433333333333,2.5224993333333336,2.5224993333333336,1.9906466666666667,2.8973099999999996,2.27446,2.296066666666667,1.8902533333333331,3.96019,2.3337133333333333,2.7106600000000003,3.202526666666667,1.6548299999999998,4.51569,2.953805,4.141435,2.787623333333333,5.2264,5.45225,4.932554722222222,2.7708,1.92924,2.76707,2.69404,2.116525,2.73221,1.95736,2.6587,2.7761,6.754558666666666,4.289745,3.69337,0.64145,4.49812,3.933085,4.24447,3.363725,3.83893,3.7161416666666662,6.4591,4.425605,3.47798,2.8210321428571428,2.2195837777777774,2.484,1.684686,1.833282,1.714658,2.16582,1.7439725,1.36599,4.132966571428572,0.6518515384615384,0.5603577777777777,2.05434,1.5104833333333334,1.459078,1.4311816666666666,2.293677121212121,1.4837666666666667,1.7650359999999998,0.5868225,171.09837025517254,0.48551666666666665,2.05304,0.90944,1.2087775,2.0831025,1.5451575,1.9297775,2.3577566666666665,1.73894,6.6774,3.096615,3.3514323809523807,1.5004333333333333,3.1941,1.2886533333333332,1.2886533333333332,6.0661125,0.48802333333333336,2.32229,3.4587333333333334,3.13077,0.890970909090909,0.5667052941176471,1.1680358974358975,1.0410636363636365,2.4070675,4.092985,2.02393,2.121975,2.3548466666666665,4.913513,1.0600344444444445,4.50919,3.559125,3.41989,6.43125,1.7803866666666668,2.88857,2.54904,4.061344999999999,2.42655,2.89796,3.115245,3.374455,4.415414999999999,2.97769,6.26102,2.727535,2.67374,3.38252,1.59715,2.83399,3.205045,2.716625,1.74438,1.547095,2.41334,4.36864,5.428676666666667,2.9437,2.908205,1.5366,4.414765,3.9364333333333335,4.184666666666667,2.839085,25.637888582722834,2.639762,2.7187,3.1780333333333335,3.4723333333333333,3.4186666666666667,5.7398066666666665,3.17313,2.604763333333333,3.5962333333333336,3.5728333333333335,2.15931,3.3519,3.5155666666666665,3.2894966666666665,1.7360499999999999,1.6219860000000001,0.549176,2.3027133333333336,2.0874425,0.22315625,2.3271333333333333,2.721135,0.22315625,0.22315625,2.18185625,0.22315625,0.22315625,0.22315625,0.22315625,2.8579733333333333,2.7647733333333337,0.5814923076923078,3.3465499999999997,1.5684125,1.9620819999999999,5.4638,4.37531,6.276705,2.08478,4.964765,2.12697,2.8281466666666666,1.3380928571428572,6.0105900000000005,2.9028166666666664,6.175235,0.8676499999999999,1.503565,4.79337,4.81194,35.97379984221334,1.6610340000000001,1.36183,2.3276866666666667,2.4105775,0.9164636363636363,2.444526666666667,2.424513333333333,2.6421466666666666,2.0280400000000003,2.467233333333333,1.6680483333333331,2.52392,2.3419866666666667,2.1487133333333333,2.9055999999999997,2.402413333333333,4.149695,3.5711333333333335,1.1893885714285715,4.261615,4.045715,20.321226499999998,2.80074,3.4872666666666667,2.5818966666666667,0.784338,3.1006159999999996,1.5782180000000001,3.1006159999999996,2.4265333333333334,2.585313333333333,2.8035533333333333,1.7606425,2.1039575,4.500495,3.996,5.31555,4.315445,1.643978,5.1654,1.525905,5.10935,4.022461428571429,4.685095,0.7534936363636363,1.9960575,2.2071425,2.78247,3.27476,1.13632625,3.212175,1.9372900000000002,1.96567,1.053096,1.053096,3.32025,2.6580366666666664,4.4031,29.00914875,6.326675,1.91149,3.58397,0.37938466666666665,6.2367075,6.1149,2.83748,3.24784,5.65597,4.12079,1.20826625,4.560295,1.255936,2.95471,4.7266,4.971345,3.28851,2.987955,4.594485,2.45053,2.8579325,4.19773,1.2854733333333332,2.5553141666666668,3.743625,5.4092,2.48439,3.1865633333333334,2.8122133333333337,4.34632,3.98618,4.147575,4.2821,1.71752,5.9962,2.6005,1.727692,4.08207,5.63527,4.407255,3.518545,0.76252375,2.898285,3.43249,1.994185,4.732385666666667,2.766,3.845525,2.8651866666666668,3.3785333333333334,2.62886,3.3379999999999996,3.0187166666666667,3.145426666666667,4.266525,5.58765,3.667105,1.701725,4.032305,4.20959,1.95918,1.944635,1.6728625,4.020206666666667,4.643355,5.380089791666666,3.934515,3.4371333333333336,3.7249,3.1901466666666667,1.4464883333333332,3.096985,2.9933,3.250765,4.908735,4.738075,4.516715,2.860045,1.816545,1.54853,1.3644575,3.56834,2.3933,2.207255,3.392535,5.03625,1.641115,5.27905,1.425162857142857,1.80706,3.23921,3.19993,2.987535,3.69418,2.97214,1.63943,0.9846805789473685,3.43088,5.23137,4.51969,8.817264999999999,2.861413333333333,3.232936666666667,1.5362866666666666,2.6616933333333335,2.7507466666666667,1.2706883333333334,3.0749133333333334,2.8363833333333335,3.3201933333333336,3.9755333333333334,3.200366666666667,6.832488333333334,3.1064866666666666,0.7534718181818182,1.6314233333333332,3.562795,3.248005,3.358215,3.6531333333333333,2.66994,3.686575,2.611265,1.942033142857143,3.85886,2.8039972222222223,3.337975,2.19418,4.97143,4.713965,4.34392,3.327425,3.653385,0.9726122222222222,4.82515,3.0366700000000004,2.97241,4.603275,2.7992266666666663,2.7508533333333336,0.39640714285714285,0.39640714285714285,4.546288333333333,3.999235,7.09725,2.960845,5.1758,3.61678,3.113175,4.9131,4.33912,1.04268375,4.10662,2.756266666666667,4.334605,3.0476266666666665,3.0030525,1.9889633333333334,3.3496760714285716,2.302986666666667,2.9182066666666664,2.6037500000000002,2.8540533333333333,2.0489833333333336,22.586327695652177,4.23945,3.81553,4.036575,3.23245,4.79602,3.589445,4.661425,4.173805,4.071655,3.587475,3.801905,2.7678666666666665,2.9692833333333333,3.1248466666666666,3.0543716666666665,3.1498933333333334,4.33567,3.431365,5.0737625,5.3228,4.192845,1.246852,1.476398,1.476398,5.16135,4.050595,2.742573333333333,2.38264,3.08393,3.43951,3.413845,7.802136666666667,3.2344566666666665,3.5446000000000004,3.0985016666666665,5.3355,1.6224566666666667,6.03721,2.4252966666666667,3.056923333333333,1.7131,4.217635,2.970125,6.25478,3.6275,2.5938,4.25315,4.517794,1.4728025,2.4258966666666666,1.6074466666666665,7.690124,4.294295,7.055138333333334,2.268895,4.15454,3.672555,4.224725,5.21855,3.452366666666667,3.452366666666667,2.106085,4.39308,5.11515,2.53577,6.7647571428571425,1.68104,5.96975,8.584121666666666,3.716466666666667,4.337813333333333,2.258696666666667,1.96875,0.52941125,4.57507,2.65675,2.76785,3.799214,2.39925,2.61337,3.661415,6.0228,5.4767,5.61315,4.99944,4.29175,2.303865,1.0542545454545456,2.854275,3.16465,2.9235433333333334,5.21535,3.948435,3.01346,2.723205,2.0782,4.302785,1.03799625,5.3362,1.0883566666666669,5.5786,3.279545,4.879915,5.2219675,3.083585,3.230675,3.28084,2.386226666666667,4.34175,2.992195,2.44234,3.40446,5.2032,5.7954,4.666,1.64981,3.63645,2.90877,5.347783333333334,1.84853,1.84853,2.797093333333333,2.2358,2.5304033333333336,2.8879633333333334,0.890006,6.17115,3.59164,2.0281375,2.308205,2.4943,3.590325,2.646255,3.679655,5.2787,5.34275,5.0475,6.33055,5.94645,1.3849,3.81067,1.1246333333333334,2.557175,4.4430000000000005,2.65189,3.02091,3.15109,5.0618,3.4566,0.44786263157894735,4.71962,4.213575,4.948305,3.107135,4.759885,5.58955,4.391945,4.378515,1.80424,4.67299,2.0981925,4.353466666666667,4.353466666666667,6.4573,5.62225,5.71795,5.0856,2.608635,1.6224566666666667,4.562835,1.9680499999999999,1.5916499999999998,1.992935,4.26356,4.209435,4.616075,7.78845,1.6772833333333335,5.3457,1.3042833333333335,3.1094,6.28565,2.050115,4.916075,2.888476666666667,4.90714,3.3953,4.86704,3.706,4.17967,4.01795,6.0673,4.21973,4.21129,4.015405,6.19975,4.14243,4.5608,3.627815,4.27352,6.9363399999999995,3.433375,6.85493,3.376065,5.5079,6.2371,4.46807,3.604855,1.74159,5.72015,3.97037,0.9450944444444445,8.40944,6.1128,4.906175,3.0090250000000003,5.34645,2.722945,1.7150079999999999,3.83238,1.0990216666666666,6.32185,3.02878,4.38143,5.4207,4.49966,4.139785,2.13169,4.605075,5.1913,1.44828,7.458193333333334,2.868765,3.651655,5.24575,4.41017,2.029965,4.51047,3.504995,3.745225,2.834433333333333,3.84774,3.76699,5.38745,4.80505,3.361185,1.73497,1.73497,7.449343333333333,1.4363428571428571,5.3264,4.378205,5.1151,3.61743,3.666915,5.18075,3.949775,0.91805,0.91805,0.91805,3.697205,3.08746,3.727995,4.588076,2.71416,1.4471283333333333,4.554055,2.2283475,2.52206,4.057915,4.841485,2.0454125,2.20112,5.28456,4.02851,3.53893,4.435885,1.8433425,1.957495,3.402366666666667,2.679795,5.1488,1.389524,1.6111840000000002,1.09745375,4.203285,3.01043,3.0104166666666665,3.0699166666666664,5.5454,1.7407540000000001,2.0333,3.009225,1.717857142857143,3.19268,3.50578,2.50185,5.8067,5.67485,2.686375,4.559445,3.90145,3.43269,3.461295,4.151315,3.372275,7.03244,5.42365,1.9236666666666666,1.8468499999999999,3.493105,4.68605,4.189415,3.94659,2.969663333333333,4.13224,6.2301,5.15305,2.5099133333333334,5.4511,3.94397,4.099235,8.564797500000001,4.037085,0.7364136363636363,4.13841,4.3324291666666666,2.37197,4.156385,3.8501666666666665,6.0393,3.88703,3.89274,3.707135,4.692295,4.853995,4.611455,3.116585,4.03208,5.01325,4.00575,2.782065,3.1443,6.19819,5.5666,2.14742,3.00248,4.141863333333333,3.75632,5.26145,4.48981,2.5475833333333333,0.8680322222222222,4.500205757575757,6.5828925,3.59819,4.86004,3.54443,7.126581666666667,3.797745,3.6977666666666664,3.07287,3.73754,2.013275,3.4294,4.620675,2.571473,4.189935,6.08335,1.38942,4.92334,0.6960957142857144,6.3762,6.26135,6.1801,6.1591,1.6373933333333335,1.6980466666666667,4.786825,1.90784,5.79515,0.5316666666666666,6.32065,3.12299,1.509352,6.16181,6.49685,0.8442775,1.5960895,1.33009,1.33009,1.33009,2.2949100000000002,4.90822,3.542005,3.389945,4.237695,5.377,3.88103,1.9742640000000002,4.418415,5.1341,0.3082268292682927,3.858115,4.96105,4.63946,39.78717539393939,5.9925749999999995,4.957385,10.856955666666668,2.72789,4.356075,7.367076666666668,3.18387,5.05045,4.176255,4.25859,8.784035,3.848645,2.9765099999999998,2.63393,4.67877,4.185545,3.643035,4.272125,1.88688,4.424365,4.27935,6.996518,4.16348,5.24865,2.3217125,4.09747,0.5144175,1.38886,3.499205,6.2925,2.9516,1.280085,1.280085,3.13895,3.905875,4.28661,2.475615,1.67181,3.695555,4.234635,1.705025,3.3312333333333335,1.688534,1.6448133333333335,4.06239,4.45042,2.1922925,4.768435,2.4481775,2.169265,3.73998,3.67611,3.90071,3.913485,6.1227366666666665,2.5083766666666665,3.893825,0.713010909090909,0.6836883333333333,3.78895,2.282555,8.800916666666666,3.4243333333333332,5.1549,1.61728,4.585125,1.6081333333333332,4.15301,4.62606,2.5963066666666665,3.75427,5.22285,0.41242650000000003,0.41242650000000003,3.8494333333333333,3.27712,2.957326666666667,3.91781,3.639415,5.5672,1.0412545454545454,10.89231,10.933900000000001,2.2207825,4.767685,4.794815,5.1701,3.485025,2.5929033333333336,2.0198,2.1414225,9.896695,2.2945025,2.6839033333333333,3.786696,4.74675,3.786696,2.3270375,3.101366666666667,2.944266666666667,0.7376618181818183,5.581393333333334,3.07856,2.862913333333333,4.127325,9.077595,10.792300000000001,4.346175,4.1192,4.2735,6.756675,1.9063825,1.4403625,26.417722500000004,4.24507,4.07997,1.0025600000000001,4.666105,4.12444,5.5571,4.59923,5.87135,5.678866666666667,3.0227733333333333,2.014,0.6667352941176471,0.7384741666666667,4.59229,5.4404,1.3810033333333334,4.504678333333334,0.9276916666666667,3.8304666666666667,1.5083033333333333,4.347915,5.8707,1.89079,2.37298,2.557315,3.822745,2.98075,0.4378883333333333,3.73503,3.60231,3.0319233333333333,3.17304,5.16195,3.0734600000000003,4.146265,3.097615,4.47672,8.689593333333333,4.911395,8.240219999999999,2.723275,2.6401266666666667,4.47354,4.3319075,4.601245,4.139715,3.752045,4.881275,1.1960325,3.3016741666666665,3.291827714285714,0.7435120000000001,1.476398,1.476398,4.630215,7.580231666666666,0.8364692307692307,4.750815,0.9791616666666667,3.0836966666666665,2.31629,2.4820877272727273,6.577400000000001,2.5804466666666666,1.1524333333333334,2.61865,1.2525,2.0291833333333336,3.28874,3.0435783333333335,3.336233333333333,2.46184,0.9791616666666667,4.590785,4.611235,5.47865,2.76285,4.13958,2.16766,6.0163,4.93171,4.64716,3.039453333333333,3.602415,2.1812075,1.7091375,4.20507,2.77725,4.70797,5.53775,1.64832,4.917555,3.0546,6.652338333333334,3.59724,3.29318,0.9791616666666667,2.542105,3.38558,7.369009666666666,2.410903333333333,1.872748,2.410903333333333,0.4375266666666667,1.14377,4.026695,2.59478,1.702455,3.43981,3.7677490000000002,0.597329,0.597329,0.597329,8.524415000000001,1.59299,0.7474445454545454,35.67056092640693,1.871788,0.65986,3.041725,0.65986,3.743085,2.016485,2.302065,2.586256666666667,5.34835,4.02705,4.64436,2.37006,0.8739957142857142,4.349195,3.374,5.2467,1.0102114285714285,3.0982,3.0982,3.786475,4.618055,3.935175,5.043614230769231,3.261325,4.694255,5.35525,1.9225940000000001,1.1300275,5.38075,6.68965,3.92965,0.6694720000000001,4.630945,4.1917816666666665,0.9892025,4.462365,2.312355,4.157195,4.599795,1.9027325252525253,1.9027325252525253,4.32641,3.387855,0.9076566666666667,2.74433,3.09084,3.20592,3.864465,4.500285,0.5273385714285714,0.2811488235294118,0.2811488235294118,0.2811488235294118,0.8084873949579832,0.6437492307692309,0.639041,0.2811488235294118,0.2811488235294118,6.839855,0.2811488235294118,0.8084873949579832,3.48822,1.2398575,4.80417,1.130495,0.6167738461538461,0.9892025,2.471725,2.746325,4.01914,3.0138,0.2811488235294118,0.2811488235294118,4.37597,3.69322,4.4813,2.549655,4.09486,1.567216,3.84479,0.639041,0.639041,4.966535,3.09433,2.610705,2.69222,3.899233333333334,1.10063,0.9527692307692307,11.051635000000001,1.3264125,3.908225,4.856665,5.2684,2.06522,0.400905652173913,0.92082875,2.91661,3.3804,3.320815,4.466755,1.463952,6.1766,3.57412,5.1658175,4.320075,2.97165,3.0974833333333334,6.478501666666666,2.7532833333333335,4.82851,4.127835,4.0961066666666675,6.06343,0.5616286666666667,4.377585,3.746033333333333,2.163656666666667,0.6887611111111112,4.076305,4.36907,2.929675,2.39134,2.196995,5.20615,2.685965,2.640425,0.954604,0.4589338461538462,3.923975,0.345388,0.7849545454545453,3.946615,3.10537,4.327645,2.644655,5.59745,4.29687,6.401243333333333,3.579365,3.36929,4.66816,1.5484675,5.3883925,1.820588,4.08813,2.591675,6.069133333333333,2.579385,0.940842,4.708555,7.108085,6.756535,3.3925666666666667,0.8443166666666667,2.9724733333333333,4.336265,4.05837,4.63277,4.637415,4.189225,5.2258,3.24523,4.18248,1.7577133333333332,2.193915,1.42268,4.207135,9.093720000000001,3.36341,3.616565,6.04575,2.6541,4.344045,2.5878200000000002,3.0865696666666667,3.414645,3.343215,3.78602,2.903435,3.84417,4.887545,5.9817,4.927065,4.7410250000000005,4.92716,3.97793,2.67575,5.3065,8.0168,0.9083822222222222,4.30071,4.09373,4.83195,5.90085,5.15155,2.33468,8.25166,2.41114,3.39814,6.0102,3.72498,4.34163,2.2348600000000003,1.846045,3.0033,2.3195966666666665,1.9128866666666668,2.9728266666666667,4.5945,4.56928,3.993365,3.282415,4.962698333333334,3.35435,3.1459,4.0100275000000005,5.8552,3.0273,5.630239666666666,3.906645,4.20288,3.733465,7.89729,3.91852,3.63516,4.509865,4.933805,3.48972,11.1045,1.376945,2.132375,4.112145,2.7927966666666664,2.7927966666666664,1.913325,8.20394,0.9057755555555556,3.21724,0.88684125,2.0333,4.511325,5.2111,4.455295,4.30562,2.8377766666666666,3.40253,4.006765,3.93896,4.314665,3.173115,2.6355566666666665,4.285805,4.947504166666667,3.65941,4.427385,1.724532,1.5979860000000001,2.7019366666666667,5.78935,2.2939675,1.67248,2.0301425,4.340785,4.88255,3.04852,2.89578,0.5620655555555555,2.2963,7.683605,3.290655,1.57214,0.88732,1.39624,2.02847,2.3141425,1.395465,2.0308766666666664,4.3667055,3.97777,4.59539,2.4448433333333335,2.01867,7.391085,3.033375,2.0345783333333336,2.0345783333333336,2.0345783333333336,6.488526666666667,2.22066,3.63499,2.51124,0.483588,1.039924,2.2826525,5.5332075,0.4360111111111111,3.677585,3.9907441666666665,6.1012,3.0181911111111113,0.4360111111111111,3.0181911111111113,1.01902125,1.235116,5.8076,4.19973,6.845115,4.222195,4.89463,3.96199,4.11709,5.09225,5.53975,6.14905,3.631705,3.36267,5.46385,4.68939,4.141305,4.528235,4.62011,1.3972933333333335,2.755266666666667,1.266225,2.2923,3.2204994444444446,1.5012494444444444,7.2936875,5.347783333333334,2.6843616666666668,4.523695,2.77804,4.934325,2.73797,4.27002,5.1079,9.521933333333333,5.46115,4.541645,2.51885,2.79505,2.1207599999999998,0.602625,2.1959204444444445,6.0071,5.44295,5.09435,4.82043,0.5877960000000001,2.04162,1.375715,4.343235,0.7384223076923077,6.600505,2.022685,1.0861,1.0861,3.9985720000000002,2.0649,3.1551766666666663,2.56776,4.675655,3.51938,3.51938,4.371235,5.83447,2.7700066666666667,2.4982866666666665,3.4723,4.97939,1.937856,2.6801066666666666,5.72525,5.2594,5.07275,4.28927,3.91038,4.783825,3.575175833333333,3.21945,2.369555,4.2,5.36625,3.2698175,5.2598,5.70325,2.19543,2.47322,6.1656,7.0211,1.185998,2.7644,2.3992525,2.664073333333333,2.44109,2.6047,2.7912055000000002,1.0623933333333335,1.906405,2.692825,2.3180575,2.5726433333333336,2.5726433333333336,3.037199,3.096275,2.3064898076923077,2.764975,2.3777975,2.11062,1.6243026666666665,5.125235,15.420521333333333,2.847496666666667,3.3421333333333334,1.804128,1.804128,1.6352333333333335,1.6352333333333335,2.9333766666666663,3.7749,2.9751600000000002,2.007155,2.007155,3.9127333333333336,2.54753,1.0850366666666666,1.4497857142857142,3.142916666666667,3.0373,3.7817333333333334,2.769235238095238,3.3959333333333332,3.1671833333333335,0.6689,2.728025,3.717901,7.170253333333333,4.85764,5.5806,4.462045,3.19182,4.77027,4.71714,3.0880466666666666,4.274885,1.4236933333333335,3.267656666666667,5.8133,5.5055,2.795605,1.4321716666666668,2.91524,2.575273333333333,3.1490566666666666,1.5824583333333333,0.7228142857142857,3.2088133333333335,4.929294166666667,4.820305,4.376025,4.87138,3.116376666666667,2.0211466666666666,3.2911916666666667,2.7166200000000003,3.4235,3.24365,3.4751,2.817686666666667,2.27969,3.8043666666666667,2.9886966666666663,5.311,4.70375,5.289843333333334,5.289843333333334,3.38014,3.662745,3.665835,3.788355,2.71685,4.61774,3.36601,3.2103,6.34875,0.7654641666666667,5.30255,4.7816,2.45316,5.148299166666667,3.5278666666666667,1.8595,1.3630728571428572,2.2648633333333335,1.0543200000000001,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.49981000000000003,0.49981000000000003,1.16404,0.856773611111111,1.6497959343434343,0.9304457142857143,0.9304457142857143,1.1801048232323232,0.4696911111111111,0.38125777777777775,1.16714,1.4195375,2.6496033333333333,2.385305,6.786033333333333,3.015833333333333,3.94113,3.547695,4.9582048571428565,1.3494183333333334,4.69827,4.26683,5.17285,3.37991,1.500688,4.130076923076923,3.60998,4.553585,4.48452,3.02109,5.1808,4.63068,4.728565,1.2124679999999999,3.907255,4.825545,3.021175,2.36198,3.2907,2.41197,3.19524,4.32989,3.2182033333333333,4.840125,8.6406,3.262015,5.10605,4.45901,4.489746666666666,2.7231466666666666,4.516075,0.8750828571428572,4.21211,3.32259,2.2679400000000003,1.174145,2.862775,1.4695033333333332,0.530218,3.5866666666666664,4.29072,5.12135,3.7267333333333332,2.490775,3.074015,4.86494,4.0755,4.59048,2.631325,2.2030166666666666,4.03311,4.039405,4.34351,5.2057,4.6544,3.6594,4.82293,3.2287866666666667,4.38546,2.10914,4.63635,5.1906,3.203685,4.29238,2.43139,3.7569,5.7307,4.33175,5.429,4.906895,4.86096,2.4278133333333334,5.1669,5.2214,5.0905,2.1992225,1.12931625,4.149925,4.742475,4.30751,5.16455,1.818145,4.23584,2.15339,5.196,4.7857,4.71822,2.4601275,4.37595,4.8356,4.415365,2.7371533333333335,4.77383,4.836975,5.32935,3.96265,2.1992225,2.33473,3.03846,5.14475,4.216975,4.287105,3.51301,5.0228,2.277535,6.775,5.063,4.751905,5.369726291666667,5.2358899999999995,5.39375,3.5022987499999996,3.0894983333333332,3.0894983333333332,4.093705,3.62902,4.525495,2.262845,3.0722199999999997,1.0587875,2.7789366666666666,3.0461500000000004,2.6045599999999998,3.053793333333333,4.40626,2.9445866666666665,5.401,2.7644533333333334,4.688645,4.96156,2.11323,4.14473,2.91975,2.862493333333333,4.01465,0.902402,5.37775,4.67983,6.3172875,4.7437,5.5654,1.3888285714285715,4.7026,6.6394,9.05589,3.31458,3.4148,1.9576239999999998,0.811443,3.83002,0.99106,4.98057,4.614895,5.7648,3.170055,4.83423,1.1886042857142858,3.668105,3.56711,4.28782,4.150845,3.02787,2.744895,2.4493275,4.485925,4.913085,5.83665,4.55229,3.73895,0.33379666666666663,0.33379666666666663,0.33379666666666663,0.33379666666666663,5.2176,3.02693,6.20895,3.2523999999999997,5.01995,4.615955,3.590295,2.333745,2.4720633333333333,1.4007633333333331,5.2702,2.965106666666667,4.068605,4.32151,3.375315,1.55373,1.17503875,4.60129,2.370255,6.1771183333333335,3.871305,4.936495,2.182415,1.584175,0.9059444444444443,3.248255,4.569025,3.711945,2.1488375,8.127385,4.78014,3.46489,2.27808,0.517247,3.514875,2.88844,2.10692,1.904145,2.68045,2.725345,2.237895,2.9445433333333333,2.84909,3.40315,4.719135,3.931095,4.3305,3.441875,5.977076666666667,0.6383206666666666,4.66158,5.8143,5.2045,4.85498,3.5912,5.2225,4.55988,4.360425,5.64783,5.5436,4.842785,4.911025,3.789345,5.1435,3.029585,8.68541,5.2425,4.35146,4.872195,5.2802,5.7699,3.91446,1.1762444444444444,6.1241,3.616755,5.09205,1.414315,4.50935,3.957215,7.024185000000001,4.84032,3.11319,2.00493,4.89995,2.15748,0.98607125,4.61122,6.287,1.8446999999999998,2.30442,2.7530133333333335,3.28658,3.530925,3.545385,5.2788,1.7209,4.542725,4.239401,3.333425,3.5715333333333334,3.737185,2.82621,2.51936,2.08521,2.35484,2.6480966666666665,4.303315,0.6136958333333333,2.51839,4.32418,2.950875,3.6640333333333337,4.68104,5.17675,4.128015,17.241184909090908,2.7561166666666668,4.147833333333334,1.504006,0.8551209090909091,0.8551209090909091,0.8551209090909091,0.8551209090909091,0.8551209090909091,5.0342,4.885455,5.03235,9.382603,2.5933,2.5933,4.754845,4.978221666666666,1.426155,2.33711,4.023435,2.4577025,2.443895,2.29994,3.075365,3.6725973333333335,1.89421,3.58169,0.8407285714285715,3.0495133333333335,2.9127066666666668,3.1466133333333333,1.4707766666666666,3.2909433333333333,2.36736,0.99584125,2.8062966666666664,2.721956666666667,1.3022111111111112,2.4591533333333335,2.75684,2.2319299999999997,4.517462,1.9642566666666665,3.013363333333333,2.158295,2.718166666666667,1.1409777777777779,2.9176699999999998,4.820675333333334,3.715066666666667,1.0796975,3.0577366666666665,1.3801325,2.4296433333333334,2.3430933333333335,4.899661666666667,3.164123333333333,2.4830200000000002,4.736162666666667,2.624966666666667,2.13019,2.9292833333333337,2.67109,1.6767233333333333,2.9002933333333334,3.2183666666666664,3.1760133333333336,2.7004,3.1259533333333334,2.6235866666666667,2.566325,3.828167,3.828167,2.8559666666666668,2.0345,1.8270366666666666,2.80444,5.441563333333333,2.8890700000000002,1.9703066666666667,1.758375,3.060373333333333,4.46113,2.4582200000000003,1.081546,2.6665593333333333,1.55926,3.6791,2.1505533333333333,2.434946666666667,2.0377300000000003,3.0935233333333336,1.18766,1.6046733333333334,1.4696433333333332,4.180741666666667,2.5092066666666666,3.8702,1.06874,4.084015,2.06279,2.260255,1.8134979999999998,1.6724833333333333,3.31288,23.896202127705628,7.637366666666667,2.5758,3.6159783333333335,2.7146666666666666,9.801388,3.0618200000000004,0.9946075,2.5747466666666665,2.28767,2.000033333333333,2.8717133333333336,2.57502,2.5490766666666667,0.9532999999999999,3.2722599999999997,2.6721566666666665,2.95542,2.7365033333333333,2.6158033333333335,2.048243333333333,2.2520433333333334,2.8537033333333333,2.61511,2.1029075,1.511544,5.46141,4.628885,2.372145,3.023075,2.2208433333333333,2.46904,8.110699166666667,1.8060366666666667,4.963415,2.338865,1.9733925,7.225,3.0338733333333336,2.9687533333333334,2.51035,1.930774,1.4601484615384615,3.3478,3.12707,4.279305,1.68672,3.7157,1.562065,1.562065,4.08313,4.536665,3.3233520000000003,3.3233520000000003,6.120946666666667,3.395695,0.423818,12.08824553113553,1.1354866666666668,0.9263814285714286,3.7999241666666665,1.4636474358974358,2.1568325,6.35915,3.819445,0.7438718181818181,2.1512733333333336,5.09761806060606,2.4770718333333335,4.398835,1.3520128571428571,5.46485,5.1248,5.02125,3.3603490000000003,2.00794,2.4213999999999998,2.570316666666667,2.5751866666666667,2.26534,5.3627633333333335,4.733535,4.48414,1.82622,4.758615,4.211325,3.3267133333333336,2.2009625,5.1309,2.66004,9.083673333333333,6.934777499999999,1.9494025,2.511855,1.762002,4.648433333333333,4.648433333333333,3.1585300000000003,2.8530033333333336,3.050289166666667,4.92208,9.79166,4.49865,2.51845,5.5177,4.61033,5.4037,2.01496,0.8062125,1.3165766666666667,4.603665,4.880415,3.7212666666666667,2.9368466666666664,3.9102,2.21847,4.213295,4.778765,3.40241,5.546,3.236736666666667,3.8627199999999995,3.3447999999999998,3.346766666666667,3.4598333333333335,6.3524,2.98785,5.58105,4.722695,3.382165,3.34455,3.34455,6.2702091666666675,12.185099166666667,3.687533333333333,6.2744175,7.254521111111111,3.433885,2.4554966666666664,3.79999,1.21624,3.780375,2.393145,2.92469,3.0993066666666667,3.4628,2.13898,2.3699166666666667,2.8652166666666665,2.45717,3.0706966666666666,2.978396666666667,4.02505,2.6367366666666667,2.921556666666667,3.86275,2.950746666666667,2.6468433333333334,1.1519025,2.0652325,2.9201833333333336,2.5743766666666668,2.7372833333333335,2.3669033333333336,3.5725,2.4410333333333334,2.5078833333333335,2.71678,3.10182,2.8117066666666664,2.9794300000000002,2.6798800000000003,3.191853333333333,2.9050733333333336,3.325038,2.61363,2.4639466666666667,2.3615933333333334,2.794333333333333,2.65288,3.5401333333333334,3.361333333333333,2.69523,1.953265,1.953265,0.6799916666666667,1.602438,4.361215,3.283795,2.6747366666666665,2.13898,3.156703333333333,1.3132471428571428,2.9008000000000003,0.5916899999999999,3.5650999999999997,3.164516666666667,3.40608,3.04508,2.6634100000000003,2.71154,3.0932733333333338,2.70229,3.4449666666666663,4.67609,1.547908,2.9914633333333334,2.55863,1.78671,2.0896399999999997,2.9558999999999997,2.8304733333333334,1.7031580000000002,2.5675433333333335,2.59591,2.6678599999999997,2.74917,2.987626666666667,2.8711266666666666,3.2754166666666666,1.3515625,2.8037533333333333,2.30241,3.7096666666666667,4.009633333333333,1.91474,2.2708766666666667,3.4192,2.6144166666666666,3.398,2.49466,2.7104733333333333,5.572425,3.4806666666666666,2.15018,1.4876960000000001,3.3516333333333335,6.3745666666666665,3.0489266666666666,3.6778666666666666,3.0838533333333333,3.0829833333333334,4.599534,1.636434,1.1954444444444445,2.36957,1.8814379166666668,4.782195,3.07999,3.4862,3.143283333333333,3.2635233333333336,2.43316,3.5968666666666667,2.569,1.6516179999999998,2.9376366666666667,3.52603,3.6892475,3.26287,3.80963,1.74094,2.87976,3.57322,3.73612,2.563536666666667,3.8568,4.087666666666666,3.9223,1.531095,5.473843,3.1886275,1.5278816666666666,3.428165,3.49746,3.047785,4.09082,1.91401,1.91401,3.3055033333333337,2.9154433333333336,2.748045,5.1288,4.20843,4.633621333333333,1.5972680000000001,3.2635233333333336,2.7295200000000004,4.4130400000000005,3.1509966666666664,5.01938,2.6913066666666663,2.348926666666667,2.7185,3.50417,3.94371,1.603454,3.10033,2.901415,2.44846,4.558795,1.3583866666666669,2.90906,4.135405,2.63808,3.475535,3.998975,1.6312525,1.6033066666666667,2.513825,1.1658549999999999,2.240722142857143,1.9216825,0.46672214285714286,4.0692,2.547305,5.0182,4.318015,3.07631,4.649048333333333,3.5121,3.1272699999999998,3.5689666666666664,2.6474466666666667,3.4584333333333332,2.8881366666666666,3.303373333333333,2.5113499999999997,0.6728192307692308,2.2746233333333334,0.6523328571428572,1.8549766666666667,2.3768933333333333,3.1658399999999998,3.2885833333333334,1.4627566666666667,1.477225,4.44017,4.6617,3.475565,3.6685024999999998,2.964725,2.3758,4.055715,8.479235555555555,3.555505,5.6239550000000005,1.6838225,3.943615,2.1903375,4.360365,3.807505,2.11148,4.39103,3.697125,4.259145,4.30821,2.18609,4.420425,6.408665,5.06115,3.321895,3.193115,1.747865,2.16948,4.15378,3.301285,3.202005,4.008515,3.80366,3.654485,1.659495,3.970845,3.38708,1.84755,4.3485825,1.0672,3.62008,1.73601,4.07337,4.589235,3.624595,3.2489774999999996,3.66537,3.473565,1.9920875,2.2802075,3.9506666666666668,3.08336,6.1489275,4.28209,4.4782,2.5939,2.726455,4.79879,4.484285,2.466092,2.466092,5.7012583333333335,4.0326375,2.8399075,3.056025,1.9497033333333331,2.916865,3.430355,3.7667633333333335,2.838325,3.51129,0.93202,3.90693,3.35933,4.20001,2.70388,1.573125,1.4988925,3.26295,6.124889,5.70482,3.53534,1.6816475,4.681085,4.005105,0.9023233333333334,3.24279,1.46199,5.3108325,1.4843083333333331,4.03355,2.2008125,1.4627566666666667,3.47781,3.19518,4.736115,6.9602683333333335,4.27777,5.0772575,2.410005,2.906255,4.320865,4.034365,4.3966,4.321035,1.0238725,1.6219860000000001,1.07281,2.6302,2.165635,4.9913,1.07281,4.432735,2.29025,1.53859,1.53859,1.84755,4.150355,4.403165,4.00681,1.6404219999999998,1.6404219999999998,1.1054966666666666,3.239945,2.139905,6.095435,4.45476,3.92699,2.924796666666667,1.0183385714285715,3.480535,2.86472,4.30236,3.611445,4.206225,4.206225,3.607,4.004885,1.9939975,3.110725,0.9960411111111112,2.3527,3.82041,2.5793233333333334,3.320805833333333,3.320805833333333,2.87177,4.572055,4.64967,3.570485,3.556425,4.03396,2.62867,4.647902500000001,3.236615,4.2143,8.627885,4.959235,2.6583,3.203255,2.96982,4.88751,3.301666,7.519925,4.900064,4.757385,3.680565,4.0299,3.82875,4.814575,4.761455,2.838315,4.82303,6.774610833333334,2.75769,2.235576,3.252175,3.39188,3.785835,6.0025,2.21834,2.8732433333333334,3.653135,3.59732,3.3242,7.764680666666667,1.6367425,4.772763333333334,4.772763333333334,3.528195,4.218405,3.34489,2.64716,5.49129,4.800724000000001,2.418444,3.96317,4.208855,3.4871291666666666,3.09189,3.15411,6.190528333333334,3.42051,5.40995,3.478275,4.819625,4.03525,3.970115,2.9154433333333336,2.231386666666667,3.239555,4.01823,2.790145,3.2208216666666667,2.957935,6.441943333333334,2.594175,1.9439075,3.3810708333333332,2.3197033333333335,4.13206,2.816255,0.9023233333333334,3.991415,4.10438,3.93238,5.910864999999999,3.090035,3.33914,3.0633366666666664,3.0633366666666664,3.9321083333333333,4.43544,3.900995,2.06375,6.1061075,2.15835,4.596435,3.57963,8.2373,2.686113333333333,1.7382900000000001,3.2013,4.364795,0.7561675,4.015645,3.907305,3.20072,3.197615,4.306595,2.0340833333333332,2.22491,9.270805,3.489175,3.414715,1.4843083333333331,3.946665,2.723035,2.57843875,4.32548,5.5609925,1.6405475,1.289755,1.168595,4.37105,4.728385,3.76372,3.5823375,3.5823375,1.659495,2.356525,3.3364480555555556,0.9924355555555555,3.17614,1.23072,1.74094,3.53931,3.685275,2.94451,2.84753,2.9784108333333332,4.695505,4.14834,3.249805,2.963285,2.862295,4.533205,6.721555,4.006565,0.9662975,2.632288,8.63297,4.63332,4.08455,1.1239825,5.085671666666666,1.4407383333333332,4.0138475,4.0138475,3.936825,9.232960833333333,0.9057122222222223,4.907355,4.434175,2.5949866666666668,4.1009633333333335,3.867935,2.1987325,10.643864666666667,1.9203275,2.4698433333333334,3.586675,1.8285533333333335,4.493952166666666,3.3568,3.48364,3.7519913333333337,3.06835,3.303995,1.1729483333333333,7.17388,4.18895,3.93115,4.055985,2.035925,3.2489774999999996,4.530049166666666,3.833915,0.6551884615384616,3.89747,4.328715,4.768765,2.1392925,1.536248,4.406005,4.253525,9.04888,0.7160753846153847,0.787935,0.787935,2.0186266666666666,1.2431400000000001,1.458006,1.6732466666666665,4.8194,1.27894,0.8689114285714286,4.06245,3.41357,1.2176725,3.37907,4.895245,4.420255,0.815844,2.38337,9.798885,3.3303266666666667,3.75827,3.453825,1.808005,2.43879,2.55353,4.58539,4.40654,3.85467,0.9610371428571429,1.456328,0.914845,4.1758975,4.224595,4.05755,0.9924355555555555,1.7395939999999999,3.94334,2.532282142857143,5.221791666666666,1.00892,4.64578,0.713025,0.713025,0.713025,9.945205000000001,3.906805,1.23072,3.968465,4.874765,2.836875,3.285815,5.444295,3.33564,1.9987488888888887,2.8025033333333336,0.815844,1.7181673333333334,0.5062488888888889,0.7983616666666666,1.5516383333333332,4.088985,3.756495,2.1174225,7.331965,4.8950375,0.65711,6.31295,5.149086666666666,3.579625,4.46418,7.785515666666666,3.9350710714285717,4.8950375,4.575438166666666,2.43924,4.310695,3.83713,7.5391449999999995,3.43053,0.517247,1.5784660000000001,4.3458,1.705524,1.289755,3.973915,2.4347233333333334,1.681995,3.356425,1.653568,4.461695,4.414105,4.11126,4.706295,6.65432,2.52939,3.912125,1.46199,2.43113,3.56359,3.29761,2.418444,4.169725,2.3926,5.05825,2.81111,2.316985,3.3775508333333333,1.7789180000000002,3.61417,0.9924355555555555,2.2561315,1.168595,1.595055,3.66838,1.6367425,1.5516383333333332,2.024835,3.664765,8.14878,0.9610371428571429,1.1239825,1.433366,3.553835,3.875135,1.433366,3.87479,2.43113,0.7561675,0.9924355555555555,2.0186266666666666,1.46199,0.46672214285714286,1.6111879999999998,4.332204,2.5949866666666668,1.3348283333333333,3.15755,1.531095,1.9203275,2.927665,2.8025033333333336,4.957175,2.927665,0.9023233333333334,2.9276590000000002,2.2879875,0.09877272727272728,0.09877272727272728,0.09877272727272728,0.09877272727272728,0.09877272727272728,3.3405,2.7780166666666664,2.7417166666666666,3.037293333333333,4.66979,4.319435,1.8134979999999998,3.713285,3.606765,2.126955,4.92554625,2.68131,2.38374,2.34273,2.620415,4.601295,8.48859,2.33105,2.0082233333333335,3.1030435714285716,0.9240985714285713,1.38824,2.3566966666666667,2.0559433333333335,1.6344175,2.8068866666666668,2.215473333333333,2.59254,2.6994833333333332,2.71532,3.707635,3.56882,2.7155066666666667,1.398224,3.58844,3.791915,1.5459566666666669,1.35155,1.35155,1.35155,3.659995,2.953276666666667,1.02904,2.4109166666666666,1.376852857142857,4.298205,1.6105466666666668,6.7956,3.39825,2.68254,3.044166,3.044166,5.164853333333333,2.897635,4.726975,5.05265,2.257605,3.1560699999999997 -GSM1946773,1.0,1.9637525,1.9637525,1.5526166666666665,5.58185,5.24975,2.7798365789473687,1.6329233333333333,8.250011200980392,4.587775,3.1082966666666665,3.444525,2.37702,3.8433,4.505535,1.952092,1.57596,5.08365,2.421883333333333,2.411635,5.2652,5.25758,3.93491,2.1915,1.8390619999999998,4.12351,5.03995,4.244325,0.7624916666666667,1.522185,1.8335066666666666,2.4033175,2.4038925,1.222462857142857,0.7219675,3.2467628571428575,1.491485,1.7851025,1.20415,2.1195475,1.294385,1.0650675,1.199516,1.489096,0.9045,0.9266819999999999,0.816654,1.3025657142857143,1.8088039999999999,1.8046600000000002,1.513836,2.19348,1.737352,18.29993675,0.36799133333333334,0.817804,1.1453659999999999,1.9412340000000001,1.77528,2.0832,1.0712914285714286,1.0712914285714286,1.0712914285714286,1.1547016666666667,1.202056,4.90348,1.218545,2.1740425,2.0798525,2.51435,1.03416,2.25383,2.3824225,2.4068675,1.49059,1.97655,1.534005,1.673615,2.4474633333333333,4.14362,5.15935,4.88701,1.6724466666666666,4.69899,4.500096666666666,4.18293,4.262145,1.10385375,7.39862,0.569773125,0.569773125,2.2192175,1.1077485714285715,16.58325,4.679295,5.44825,5.1543,4.16239,4.255285,5.1528,0.5173444444444445,2.28465375,1.6678675,2.38608,4.576465,4.677515,1.4141625,3.1436433333333333,2.836373333333333,2.83826,3.586066666666667,3.45769,4.62607,2.757777,4.550705,3.0484299999999998,0.7541945454545455,1.526176,2.42479,4.70849,3.93276,0.574470625,3.697575,3.784865,0.816975,4.361825,1.8129762337662338,3.20751,2.4996175,2.09593,3.88188,5.6003,3.347105,2.7934433333333337,3.395633333333333,2.97485,4.037495,2.99404,5.66385,3.410125,4.59726,3.275875,2.21514,3.57891,2.5401,6.932788333333333,3.841705,3.443245,4.58272,3.368705,4.7082,0.7589177777777778,9.550837857142858,3.830395,2.360133333333333,2.056568333333333,3.559466666666667,2.271405,4.8771,5.76685,2.285125,4.93142,2.67122,4.81825,2.285125,2.808253333333333,4.478585,5.119234166666667,5.1832,8.273643333333334,3.201085,4.633045,3.064565,5.3356,5.0356,1.7142666666666668,8.02822,4.78535,4.16485,4.684035,3.4232,3.51426,2.261825,6.2765,2.288725,3.83841,4.101435,5.5336,4.947675,4.024255,1.4831666666666665,2.685425,2.92528,1.8334475,1.8334475,5.898741380952381,3.17261,1.8854899999999999,4.56395,4.82578,2.750145,1.4791866666666669,1.1216222222222223,6.83315,3.169565,6.89715,4.61524,4.336615,3.73702,3.108935,3.878195,3.51932,3.83061,4.22856,6.21685,2.80468,3.586685,9.389646666666666,4.89047,3.4207666666666667,3.2019300000000004,2.8795366666666666,3.9011333333333336,4.233206666666667,1.74147,2.7709566666666667,2.3275333333333332,1.767046,1.64394,2.520096666666667,1.6634275,2.3952475,2.9394066666666667,2.8072966666666663,2.4599933333333333,3.0907966666666664,4.500096666666666,3.490345,3.593085,3.353565,5.07975,1.54115,1.77149,2.863364,2.23508,2.488236666666667,2.77815,3.4836666666666667,1.8775559999999998,1.2740500000000001,2.8260666666666663,0.63719,1.5629333333333333,0.4807688888888889,0.4807688888888889,1.39681,3.3057466666666664,2.5087333333333333,1.25952,1.5869266666666666,0.3145892307692308,2.6854600000000004,0.63719,1.1700933333333332,0.25174405405405403,1.35302,2.1224425,3.7000666666666664,2.9824133333333336,2.7036,2.54563,2.4521866666666665,2.4352066666666667,2.5479866666666666,2.56096,2.1942,2.67323,1.9332433333333334,2.62402,4.395335,0.644655,1.86893,2.7108833333333333,2.14378,3.5161300000000004,1.5173320000000001,2.5554966666666665,2.6051166666666665,4.56875,2.2350533333333336,7.060361904761905,1.7253285714285713,2.7634833333333333,2.286255,2.3217175,3.7952333333333335,2.0950425,1.961675,4.40796,2.526386666666667,2.13301,4.131395,4.19994,4.34621,3.775825,2.22856,3.260265,5.102330666666666,4.05342,4.25632,4.16404,4.27317,3.200655,4.382775,3.366905,0.88319,4.77329,1.3032483333333333,4.91215,3.742,6.047808,3.81437,4.142085,0.97563125,2.163595,3.530655,4.0959,0.9040985714285714,1.4067191025641028,2.164123095238095,3.4429894285714284,5.021107499999999,5.5205969999999995,2.0672525,4.24203,5.4718,0.3335485714285714,4.002745,2.32505,1.00849,4.27999,1.965735,12.219885,1.2088,1.313075,2.946876666666667,2.630585,1.92852,4.670665,0.32521,1.6664700000000001,2.879823333333333,1.025775,3.6279,0.9955071428571428,5.21385,3.88659,2.1270433333333334,5.8405,5.39615,2.3838625,1.13565,4.275171666666667,5.6521,4.282035,0.8797536363636363,8.250673333333333,2.8441733333333334,4.356505,2.64369,2.55468,4.78367,2.5353966666666667,2.947813333333333,2.33989,2.585786666666667,3.363125,3.015693333333333,0.32902875,4.16527,3.84058,3.942855,3.985625,4.575635,6.172815,3.88905,1.6928175,5.79555,4.65267,4.54239,4.77589,1.0447983333333333,3.0435466666666664,3.28497,2.6324799999999997,15.58959,3.22153,3.9045,4.212635,5.5452,2.64002,5.237828472222223,2.0510125,0.8156644444444444,2.63755,3.476495,3.931945,3.696335,6.450428333333333,2.9169033333333334,2.2132,2.0239,3.3217499999999998,4.28521,2.4349875,0.36596081845238093,2.590925543478261,1.9573975,1.157305,0.46949234019151137,0.5730238619306418,0.36596081845238093,0.36596081845238093,0.36596081845238093,1.12795,1.30036,0.9078375,1.389565,4.455097500000001,0.21901529411764706,11.493324626623377,3.044976666666667,2.8327033333333334,4.472395,4.15306,3.95027,1.94479,4.866405,4.160669666666667,4.328065,4.22375,0.7059769230769231,3.3576,4.288733333333333,0.5512921428571429,3.408025,2.9258733333333335,4.738955,0.5925981818181818,1.714545,4.27777,4.23357,2.0912,1.8715,1.6233933333333335,3.3469333333333338,3.946415,2.99835,2.8170300000000004,5.0484,5.8317,4.728305,3.25544,3.523765,6.566583333333333,3.945733333333333,5.3356,0.40829047619047615,3.2569033333333333,4.165818333333333,1.9719733333333334,2.765645,2.889473333333333,5.273996666666666,0.65089,2.3633425,4.702,4.05333,1.0297885714285715,4.459335,4.18087,4.815305,3.1899866666666665,4.345335,3.489345,4.285885,1.1617916666666666,3.764855,2.73067,4.66473,3.97591,4.799985,5.62495,4.507145,2.63931,5.48091,2.4977133333333335,3.188515,3.1078033333333335,2.8856699999999997,2.819926666666667,2.4115933333333333,1.9035499999999999,1.4812733333333332,2.023233333333333,0.8313057142857143,1.7541066666666667,2.18524,2.026623333333333,3.1308633333333336,3.3636,2.782166666666667,0.9771855555555555,4.939375,3.3786666666666663,5.428137916666667,2.62463125,3.0366966666666664,3.537266666666667,1.8115333333333332,1.8115333333333332,2.9528155844155846,2.9528155844155846,4.301075584415584,0.5079028571428571,1.7211299999999998,2.4116666666666666,3.659933333333333,2.165642619047619,2.165642619047619,2.165642619047619,7.740330238095238,4.412663809523809,0.9396545454545454,3.53098,5.067646666666667,2.2997675,4.888535,3.747025,2.30361,5.7593,3.07018,3.263586666666667,1.4844125,2.53791,3.19211,3.00259,2.7932233333333336,5.33095,4.249666666666667,3.7730333333333337,4.8020233333333335,1.9116833333333334,2.702583333333333,3.08006,0.9581666666666666,2.129863333333333,4.2163113333333335,7.9187825,1.4803325,2.901435,4.95225,1.893808,1.8393175,1.8393175,1.10557125,4.75706,7.7043,3.922735,6.285048,4.58728,1.8510166666666665,4.26167,3.23861,5.0338,4.77888,0.36214315789473683,3.135715,3.343525,4.2357,3.746005,1.8601199999999998,1.92638,2.74095,4.661405,3.92079,3.185635,2.45961,1.6915780000000002,6.79204,4.50106,5.1604,3.5185,5.0235,4.768055,5.2051,4.24265,3.7455075,1.9392475,1.1245314285714285,2.752365,3.91786,4.67988,5.684755,5.8988949999999996,2.19079,1.7548466666666667,2.6519633333333332,2.7328233333333336,2.9925266666666666,0.61893,2.094935,3.54522,1.1147675,5.0396,3.140185,5.960967500000001,1.2616862121212122,1.2616862121212122,4.0949,3.743815,3.639655,5.25315,2.7543966666666666,2.2938,3.896235,3.26247,2.15484,3.3401666666666667,2.524713333333333,4.097695,3.499325,4.284695,4.480905,1.0141133333333334,2.626145,4.430105,4.545405,3.34033,2.4963333333333333,2.222245,0.6478655555555556,0.6478655555555556,0.6478655555555556,0.6478655555555556,1.368963888888889,3.8607375,3.8607375,1.6285100000000001,7.300343333333333,3.4601,4.077805,3.163796666666667,2.6324,4.818575,3.949085,4.7889,5.43435,1.696425,4.40864,3.853165,2.7104,4.809835,3.540255,2.62303,4.7875,1.773755,4.871795,1.64515,3.6014920833333335,2.963135,1.7938225,1.188555,2.87956,4.406605,1.3019159999999999,0.8610633333333334,3.834625,1.3524125,5.3314466666666664,4.388185,1.3638214285714285,3.626685,0.7751166666666667,2.6288733333333334,2.6536466666666665,2.3270433333333336,2.462155,4.5691,2.9107683333333334,4.629165,5.18165,4.63703,4.26082,2.16952,1.2552157142857143,4.0636,4.97839,1.4402475,1.4402475,4.03633,0.20481866666666668,2.3484666666666665,0.20481866666666668,0.20481866666666668,0.20481866666666668,0.20481866666666668,4.75103,2.7077233333333335,3.29573,3.49198,3.2497000000000003,4.47477,2.7029666666666667,0.9537625,0.9537625,1.0189233333333334,1.0189233333333334,3.711805,2.91063,3.84016,1.6505867857142857,1.6505867857142857,4.86905,0.6282835714285715,2.283055,7.785873333333333,5.3905,3.189715,3.676005,1.0172225,2.19485,2.00195,4.606215,4.244265,4.325195,3.85024,1.2919957142857144,2.610975,2.0119325,7.30747,1.67772,4.45323,4.87642,2.63671,3.91478,6.08239,7.605655,4.24287,5.2482,5.02065,2.2638625,3.287445,2.234445,2.32253,1.975205,3.813115,3.97881,6.076296666666667,6.82372,4.45239,1.2493766666666668,2.11926,4.3228,4.774505,2.12334,5.30035,4.18378,4.6108,1.6966466666666669,3.8935,1.5689933333333332,6.3354,2.733636666666667,2.3102,2.402416666666667,2.316,3.4666,3.6377666666666664,3.717233333333333,3.231863333333333,3.4055999999999997,1.9556419999999999,4.1526,3.05665,3.61106,0.385988,2.896405,3.93255,2.56795,5.4492,4.897995,4.728625,6.84117,4.87973,2.23563,4.348515,5.1416,1.6657283333333333,5.19185,5.6303,5.18505,4.591235,3.358885,5.57845,4.991735,3.90692,5.177526666666667,8.01225,3.86644,1.2422,1.4676133333333334,2.735985,1.8662199999999998,4.63805,4.134125,5.638375,2.5972133333333334,2.6671300000000002,2.71447,2.5915500000000002,2.5620266666666667,1.0281344444444445,0.5057670588235293,3.722255,4.037985,3.699066666666667,4.023975,3.015515,3.32708,5.650685,3.30737,0.5910117647058823,3.334455,5.4868,2.065625,1.490786,3.716325,3.6989,2.6718166666666665,3.9929,4.26656,2.6369366666666667,2.2240033333333336,2.3609833333333334,2.449516666666667,2.637875,4.213261666666667,5.068105833333334,7.5390875,2.02044,5.23665,3.6336220833333335,5.7662950833333335,2.8053933333333334,3.09283,2.380195,2.24457,1.344655,1.344655,2.5819233333333336,2.355916666666667,2.73284,5.155,1.7207219999999999,2.261125,1.963555,0.72465,4.63405,0.66399,1.18371,3.41821,4.702155,4.40393,1.6035125,4.947145,3.1938333333333335,0.9012142857142857,4.187195,3.9158442857142854,3.3316033333333333,2.53073,4.88996,0.28852517241379305,2.5726633333333333,3.144045,1.387175,3.727695,6.4131,2.28809,1.27513,4.047575,3.74794,2.7483766666666667,2.7483766666666667,3.510965,4.671815,4.940375,5.140433333333333,5.1947,0.9799677777777779,2.5868966666666666,2.669026666666667,4.42623,5.223,5.22365,4.95465,4.353833333333333,3.7958,3.7031666666666667,3.556233333333333,4.073466666666667,3.1165366666666667,3.0801,0.6804185714285714,2.4304775,2.42337,4.33366,2.949393333333333,3.2325466666666665,0.7403883333333333,2.41396,3.725314,4.95297,5.72505,4.25698,2.2083975,2.2083975,0.855196,3.354085,4.50492,4.124045,4.992487857142858,3.15259,5.2155,0.5939018181818182,3.770325,4.223535,4.68057,3.6091491666666666,0.9117871428571428,3.46603,4.179475,5.23315,3.823035,5.05655,2.778595,4.290515,1.656355,1.1147757142857142,2.771986666666667,5.2069,3.86797,3.10479,1.5547449999999998,4.153025,2.4752525,2.82995,2.7259539999999998,3.1530400000000003,5.11769,2.9120966666666668,1.824538,3.5315999999999996,1.4740073809523808,2.9034433333333336,2.6980233333333334,2.269515,2.840813333333333,3.073816666666667,2.4787399999999997,2.8241099999999997,3.973865,3.0239999999999996,3.8051233333333334,2.2945433333333334,2.227215,4.247105,2.9386766666666664,2.4750166666666664,3.8051233333333334,2.3458133333333335,0.8671018181818181,2.4844575,1.0432211111111112,2.3368525,1.7168875,0.9074927272727272,1.9106,1.8786075,2.7367084999999998,2.729825,4.66016,1.4800875,4.11663,3.00122,1.588748,2.60821,3.0009833333333336,1.41268,2.7103933333333337,2.786073333333333,2.704612272727273,2.088585,1.750588,3.3790999999999998,2.2083533333333336,2.860482777777778,3.0502766666666665,3.10516,3.8004333333333338,2.1204266666666665,4.3055666666666665,3.4430333333333336,3.7170666666666663,3.1487966666666662,3.4308,3.5578333333333334,1.9814633333333334,8.94433,4.29663,4.402785,3.309125,2.99408,1.88684,3.931565,1.679624,3.99284,4.504115,1.485454,2.626653333333333,1.1246916666666666,2.6021566666666667,1.8308666666666669,2.5310266666666665,5.329886666666667,3.243536666666667,3.584395,4.832185,0.7313875,1.590252,1.05602,3.81136,10.819843333333333,4.1565,6.6887,2.0167525,5.17825,4.34658,2.5427,5.4696,0.27391058823529413,0.8291071428571428,4.82885,4.984645,7.239935,2.128335,4.42845,5.57175,4.64528,4.550685,3.97701,4.70805,3.29599,5.61072,3.479555,3.10828,3.39941,2.02333,1.9457666666666666,1.4336384583333333,2.429586666666667,4.506035,4.77292,1.551672,8.95718,2.35235,2.743494166666667,1.012818,1.012818,7.495560833333333,3.004165,2.4714875,2.12934,2.783996666666667,2.12366,0.88762,3.2439133333333334,2.6283499999999997,0.6225642857142857,1.6977766666666667,3.481812,3.481812,1.1022033333333334,2.524296666666667,2.3239,2.696626666666667,1.3391925,1.6959933333333332,4.866708,2.843856666666667,2.60825,1.3449575,1.3449575,4.157975,5.46325,4.748005,3.35543,3.963125,5.33086,2.81453,2.9870066666666664,3.4814333333333334,3.9783,1.216235,3.5036666666666663,2.722875,3.83498,2.132756666666667,4.77794,3.554645,4.25894,3.47403,5.418585,1.1036677777777777,1.959445,1.75057,3.58048,4.5390575,3.643985,4.026195,4.061215,3.403855,1.8581675,4.51668,4.01253,3.53804,2.3758766666666666,0.8307375,3.509765,4.55329,4.958195,1.1708733333333334,2.9309733333333337,3.04129,1.9452533333333333,1.7464899019607842,1.7464899019607842,1.1686216666666667,2.4813233333333335,1.0927814285714286,1.3526479999999999,4.57256,4.48719,0.4998190476190476,3.773185,3.451866666666667,4.10641,5.59705,0.417709,9.498055,5.63455,3.23525,3.991705,4.75736,5.506202142857143,5.1183,6.685034999999999,0.7264463636363637,2.859413333333333,5.3706,2.7129966666666667,1.7310575,2.03012,4.669435,5.2950875,2.547953214285714,2.826586666666667,3.31921,1.9436725,4.440495,10.338799999999999,8.381576249999998,3.6710999999999996,4.628735,3.1911316666666667,3.064405,3.929185,1.7833359999999998,2.870316666666667,4.082,4.49203,4.366265,4.99933,8.356166666666667,2.615536666666667,4.21412,4.820565,4.98494,5.23595,6.890326666666667,4.2702675,6.3098,3.41661,2.825625,2.86048,5.9822,3.707685,5.39775,2.10181,3.117903333333333,3.342475,6.03645,4.35315,4.55097,1.448308,0.89867625,2.6691,0.6068593333333333,4.036635,3.933665,3.42434,2.79485,2.13555,2.89225,2.564625,2.9602320000000004,1.7406400000000002,2.9838662499999997,2.91005,2.187485,2.55355,3.508462,1.3180333333333334,2.9365408333333334,4.909465,3.5101333333333335,1.0627,2.58016,3.7664524999999998,3.740717,1.5196375,5.7201,5.7893,2.0056833333333333,2.88597,31.072261796422534,3.4668666666666668,1.6727333333333334,3.8949,1.9159566666666665,2.55816,2.94314,3.4372666666666665,1.973455,2.708975,2.2547,3.6476395000000004,3.011703333333333,2.4435025,1.510845,2.2276800000000003,2.778,0.4015322727272727,1.133205,2.675743333333333,1.72344,3.57294,1.5196375,2.0057899999999997,25.439526722222222,5.2032,4.194815,3.63922,2.67437,2.33629,2.6317266666666668,2.3581825,3.41893,5.452718,5.17575,1.601228,1.8539940000000001,2.73379,2.628493333333333,3.854450833333334,5.44555,4.88001,4.512865,0.19506553191489362,5.03315,4.778185833333334,3.751135,9.06789,1.0526275,1.0526275,3.048553333333333,3.19973,5.6414,2.0613844444444442,1.0224655555555555,5.2887,1.835135,4.262925,4.256275,3.357585,4.01297,3.942645,4.9579,3.08733,0.7081411111111111,3.219705,2.0798625,4.30199,7.73629,4.54606,1.9470966666666667,1.9470966666666667,6.7997025,4.97922,4.09868,5.8331,2.35183,5.237607499999999,1.53587,1.5319333333333331,2.875633333333333,2.4897833333333335,3.71348,2.7560966666666666,3.701265,4.2758125,3.93933,5.4323,2.2509725,2.45577,1.9988975,3.385775,2.310945,2.2663725,1.978375,4.909118333333334,1.848935,3.4795319047619047,3.073776666666667,3.4179999999999997,2.73452,1.82392,1.4736428571428573,1.00167,3.05493,3.9121,0.702726,4.64978,1.7247025,5.905801249999999,1.9279125,1.8721025,1.50448,1.5109733333333333,5.831366666666667,1.8758839999999999,3.0872666666666664,3.7517666666666667,1.27035,1.957165,4.803224666666667,3.21195,2.4165566666666667,3.7001000000000004,3.00796,3.0119333333333334,1.2758410714285713,0.27591166666666667,0.27591166666666667,0.27591166666666667,0.27591166666666667,0.27591166666666667,4.21655,2.7186066666666666,2.4540775,3.3808666666666665,1.3794166666666667,2.6302333333333334,3.2277733333333334,2.9012100000000003,3.54293,2.92956,1.7585633333333333,2.91607,3.2606300000000004,2.19941,1.9235675,3.540645,3.3181666666666665,3.219806666666667,5.14885,2.744963333333333,2.7505166666666665,2.5350533333333334,10.87556,4.995205,4.80746,5.0163,4.15258,2.8109366666666666,4.9424,3.84976,3.33018,5.648618333333333,3.8934,2.9443,2.2763075,3.77128,5.170905714285714,3.560795,17.65260682142857,1.18698,4.518035,0.8469655555555556,1.16747375,3.0728,4.674345,4.060535,4.28921,1.4886833333333334,2.4791375,4.37594,2.989376666666667,4.644495,3.142441428571429,2.603876666666667,0.6307933333333333,2.730066666666667,4.68754,2.2503075,2.45066,2.33007,19.823036666666667,1.759442,1.31605,2.52745,0.3219792307692308,1.7942425,3.0076666666666667,2.03617,2.8758966666666663,2.715975,7.798835,2.04719,2.546625,2.2395375,2.129295,1.5559033333333332,3.4370999999999996,3.77899,3.35992,3.1593,1.974585,2.5327383333333335,3.2487775,4.72637,0.4058633333333333,3.327336666666667,2.938753333333333,3.46658,2.105775,3.6268625,3.65241,1.54819,2.272536666666667,2.2504633333333333,1.47732,2.2263633333333335,3.67043,3.49374,0.7410450000000001,3.322435,4.86006,4.21529,2.2776620000000003,2.2776620000000003,3.1470866666666666,4.726625,3.33721,3.281425,2.3616975,1.0461,4.214045,3.61199,6.23115,3.864635,2.427612,2.427612,1.5954475,4.103385,5.17685,3.86744,4.18282,3.2972066666666664,2.5797166666666667,4.46218,3.863605,4.077245,2.9302799999999998,2.5071666666666665,4.380941999999999,3.2192833333333333,2.61155,1.9394666666666665,3.815505,2.739375,1.5510433333333333,3.61599,4.156545,4.68979,3.298783333333333,4.658895,4.397645,6.6443312500000005,3.920835,2.2087,4.79455,2.85471,7.340115,2.76015,1.2742116666666667,4.22569,3.20225,4.66436,0.6031092857142858,0.82676,3.676575,3.942255,2.066279090909091,4.37786,2.72787,2.73206,9.362502,1.7876319999999999,1.1846640000000002,4.375395,2.666675,4.1538,5.14715,6.8451933333333335,3.0789033333333338,2.1330133333333334,3.008366666666667,1.8857366666666666,3.5389666666666666,8.637126059113301,0.8137157142857142,1.0380275,4.912635,0.42645066666666664,1.62232,2.2905825,2.98545,2.948125,2.651175,4.239155,2.41478,13.04572,5.108969999999999,2.4126775,2.4126775,4.28065,0.7902,5.567236666666666,4.13137,3.961065,6.05138,3.535105,4.82619,1.3788099999999999,2.77024,2.667085,2.60314,2.98788,2.69943,3.140595,3.461155,3.610055,2.962975,2.99378,3.960845,4.069495,4.50826,2.9931866666666664,3.2494099999999997,4.852748333333333,4.36514,18.768934761904763,12.55600142857143,3.2805635714285715,0.6773858333333332,1.5477857142857143,4.591095,3.513195,3.026278237179487,1.82698,0.87934,0.6784541666666667,0.6153457142857143,2.2033125,1.647198,5.256060000000001,3.30992,0.7177963636363637,3.30984,2.27685,2.0577,1.7562840000000002,6.402216666666666,1.511562,4.339475,3.066385,3.0043166666666665,2.311935,2.57624,2.5308266666666666,0.8056909090909091,2.749995,2.9766399999999997,3.8172613333333336,3.1108100000000003,4.8873066666666665,3.6195,3.494055,2.2205275,3.703005,7.92065,2.12518,2.495745,2.4231425,1.645555,2.581325,2.2781725,2.893225,0.907548,1.3798375,1.06452375,3.10193,4.154615,5.94945,5.4201,2.778425,2.26222,3.0041,3.5466333333333337,7.775623333333334,1.2308766666666666,0.404990625,2.83298,1.9500833333333334,1.59428,3.619701,1.307536,2.120568,4.477013333333334,3.113258,1.2042066666666666,1.8521133333333333,3.525808333333333,3.527725,4.508775,4.59736,2.3751175,5.15465,3.965445,0.7940692307692309,4.57361,3.96224,4.530227083333333,3.3654333333333333,2.30387,1.3163360000000002,1.2429325,3.48581,2.882405,3.256515,3.816505,2.764665,2.6230866666666666,3.20943,3.701025,4.914625,2.256515,2.727085,4.29049,5.84235,0.56465375,4.46922,1.8406025,3.512865,4.016266666666667,1.9881725,3.140445,2.2182625,1.95261,2.513795,2.588870833333333,1.6948100000000001,5.578,3.66404,1.3266428571428572,6.89338,1.0124733333333333,3.63074,1.6687166666666666,4.640235,3.97142,2.7477699999999996,3.14451,4.06699,8.82293,2.715925,3.655925,3.63799,3.632745,1.706555,7.80439,3.585475,4.590345,1.660455,4.22531,3.113525,1.06290125,1.9363320000000002,4.37527,2.156615,4.23976,4.7249675,4.250522500000001,4.525295,2.348035,5.17875,3.999465,3.1227966666666664,2.4729433333333333,1.8181180000000001,5.1657,6.342,5.2613,4.60283,3.021895,2.3082725,4.247405,3.50718,1.106973846153846,4.12348,4.79195,3.96136,2.88843,3.59827,0.5383228571428572,0.5383228571428572,5.4255,4.426375,5.3121,2.215835,3.915775,5.42755,0.8328049999999999,4.167595,4.786625,4.812465,4.46826,4.59027,1.8848725,2.992565,2.197765,4.411935,0.70593125,3.893985,4.07394,2.622245,3.0321466666666663,4.292835,2.355385,3.284275,59.90223208441558,3.1475,2.52522,1.6894375,3.27838,3.89323,0.8380025,1.0024225,2.2480425,2.2480425,1.291808,3.271795,2.45912,3.9354795,7.46742,2.8701166666666666,1.2644371428571428,1.4318016666666666,2.6447966666666667,3.916456666666667,0.9838850000000001,1.845475,1.211728,2.0327225,4.14613,4.493475,3.18539,22.473457132034632,4.87338,3.883875,3.20226,2.1017433333333333,3.055365,3.54519,2.454555,5.23639,1.591352,4.29522,3.5093579285714283,6.173186527777777,2.22601,2.497075,1.876595,3.83825,2.2838133333333333,2.1427875,2.1209533333333335,4.07589,4.20612,3.48089,4.036715,4.630885,2.586125,2.63822,3.119575,2.86011,2.894375,2.15422,2.0530625,3.550895,1.1836916666666666,3.917425,4.600965,2.56719,4.70634,4.92849,4.909771666666666,2.1810266666666664,2.318755,2.657895,2.753875,3.97741,3.176205,4.693695,0.71147,4.00423,2.636715,3.81099,2.2256975,1.77076,4.101266666666667,1.2416333333333334,3.003385,4.295475,1.164976,3.457535,3.32521,4.69891,6.0687375,2.36993,3.14768,2.5608766666666667,3.6344333333333334,2.7290533333333333,2.4563913333333334,3.4167,2.397456666666667,2.4548466666666666,1.3769433333333332,2.4102575,2.4102575,2.0159433333333334,2.1313333333333335,1.80645,2.7721033333333334,3.76697,5.37725,3.695185,1.427995,4.541885,3.532995,3.505575,4.221695,1.92973,2.26563,4.694324999999999,1.86036,5.26346,4.52455,3.555305,2.7379433333333334,3.6736025000000003,3.22369,3.152015,3.50047,0.14565877551020406,2.6257633333333334,7.707445,1.5607820000000001,3.34678,4.5854,1.0174642857142857,1.2660783333333334,1.8727375,3.961145,2.93678,6.610905,3.374935,3.647305,3.01017,2.720955,4.30728,3.451005,3.890655,3.347575,2.795916666666667,5.3233,3.92604,4.31602,2.6628333333333334,1.97747,3.43173,4.40594,2.67795,3.129465,2.128145,6.3193,3.871615,3.74628,2.66046,4.56048,5.26895,2.702715,4.48496,4.430055,3.611145,4.510835,3.480095,3.03727,6.96407,4.570485,5.00155,5.16055,4.08074,5.31428,4.530065,3.74262,1.261452,6.6814,2.436575,5.0112,4.09549,4.208695,3.161436666666667,1.9791066666666666,2.25093,2.4766933333333334,0.920147,3.276536666666667,3.3423,3.0894066666666666,2.001726666666667,3.857135,4.464255,2.43352,0.5374608333333334,4.36088,4.43664,4.863505,4.76192,3.353255,4.671295,5.04695,4.724505,1.4120666666666668,0.9770923076923077,2.6370366666666665,5.05125,5.6983,0.48953875,2.855355,2.5540966666666667,3.411215,4.36834,3.7857000000000003,1.932245,4.96546,3.230065,4.26249,3.03146,6.5783,4.829205,6.9429275,0.5850141666666667,4.1057,0.721366,2.27455,4.069866666666667,3.0243533333333334,1.2529033333333335,2.30758,4.25925,3.679915,4.12294,2.23959,2.16155,3.1028,4.740095,3.77596,3.95787,1.623836,1.168328,5.93575,2.2545325,7.755535,4.45709,3.48759,2.0990225,1.54872,4.40296,4.95889,1.7690866666666667,2.312985,2.556925,2.6257633333333334,6.743146666666666,3.020926666666667,2.8439366666666666,4.40114,3.57633,1.9656433333333334,2.953485,7.2815925,4.57099,5.1746,0.6198445454545455,3.672805,4.435235,4.836196071428572,4.31091,4.37134,2.981095,2.801805,3.18721,3.016095,3.6313196666666663,1.636598,5.422218,4.8486,4.90338,3.842405,3.425735,3.3387891666666665,2.2831025,1.3217375,0.91283,2.770945,2.49801,1.1239033333333335,2.6141466666666666,5.99465,5.36785,3.55143,4.571905,16.593275119047618,4.27198,4.410635,4.36382,0.7078333333333333,5.22465,4.71048,4.58237,4.850175,5.29895,2.62936,3.598445,3.197825,1.434432,3.13144,4.821575,3.263643333333333,1.383278,4.725045,5.0111,4.155535,5.26285,4.78142,5.6415,4.58073,3.0930133333333334,4.21269,4.25156,2.593265,2.993513333333333,2.966223333333333,1.8731233333333335,4.928635,2.649679642857143,1.86147,3.94269,2.39115,4.200055,4.247105,2.16047,2.654935,4.34592,3.7052,4.815515,4.321945,4.687115,4.563103,3.17635,5.2128,2.63538,3.588115,4.133805,1.540134,4.47778,1.0866083333333334,4.39816,3.148395,1.07724,3.59508,1.99929,6.48116,2.5763961904761907,2.5763961904761907,2.5763961904761907,0.7479116666666666,1.3392283333333335,1.746515,3.423395,5.87704,3.3798394444444444,1.737625,2.2106,1.6770266666666667,3.742955,2.44741,0.42693846153846154,1.65219,2.147515,3.046685,1.805995,2.45508,2.2814,2.0699925,3.792635,2.827303333333333,3.223895,3.01682,1.95324,6.79885,1.99627,4.480925,4.02794,6.174363333333333,1.57446,3.58317,3.710085,3.6109,4.491195,2.743585,1.956275,3.818755,6.083829833333334,2.08259,3.52802,3.108735,1.997245,4.69802,4.695445,2.7043233333333334,2.06967,3.6991975,6.013176428571429,5.71485,3.142925,2.897385,2.69437,2.93368,3.20025,3.872205,1.294705,2.56201,4.585035,0.7322825,3.667065,3.895255,3.9278,3.874025,2.44917,3.34735,1.91613,4.405195,7.918771666666666,4.70476,3.34702,3.79459,0.98891375,4.776755,2.393745,4.311235,5.2600975,4.06978,4.507455,11.54325,4.906265,3.726955,1.459775,0.7058399999999999,2.790005,3.768845,3.37736,3.593715,2.15994,2.497986666666667,2.3880133333333333,1.1762966666666668,1.1762966666666668,1.9298066666666667,2.38358,3.32517,2.52931,3.673133333333333,2.6847733333333337,2.748473333333333,2.85181,1.4671466666666666,2.5198766666666668,2.16376,2.1608966666666665,1.4685425,2.6179166666666664,0.8583533333333334,10.230432916666667,0.8583533333333334,3.3524,2.1228416666666665,2.7795233333333336,4.599695,4.30915,4.346285,4.69056,2.4298366666666666,2.8608700000000002,3.373089333333333,3.7337333333333333,3.4301666666666666,3.1836233333333332,2.693543333333333,3.2922533333333335,1.6175166666666667,5.3576,5.969856095238096,3.336066666666667,3.5295,3.094023333333333,3.2226266666666668,3.2568099999999998,1.222462857142857,3.4402000000000004,3.206996666666667,3.94949,5.867,4.333195,2.829473333333333,3.5745666666666662,3.2058866666666668,4.19332,4.17943,2.60104,3.639415,3.3806333333333334,3.029866666666667,4.724745,3.0623199999999997,3.99275,6.55803,3.15382,2.699973333333333,1.9979366666666667,1.45861,5.4274000000000004,3.4410533333333335,2.6992166666666666,2.0283700000000002,2.16539,4.477365,3.88802,2.878425,3.2010066666666668,3.238046666666667,3.6054333333333335,3.5183666666666666,3.6641666666666666,3.0873000000000004,0.51529625,3.8053333333333335,2.5990699999999998,2.5422566666666664,3.549055,5.30835,5.31005,5.4354,2.79988,4.765341666666667,1.2282966666666668,2.6822700000000004,2.6822700000000004,5.7896,3.85657,3.75975,3.441045,1.775475,3.10154,3.85873,0.9718414285714285,3.8836788333333336,3.4433684761904764,2.1555213333333336,0.357938,3.41867,3.78462,6.6775199999999995,3.39643,5.8168,3.28118,4.019955,4.16601,1.8911533333333335,3.52269,4.801865,3.490255,3.24334,3.019856666666667,5.8644875,2.1998075,1.0541225,1.93103,1.65255,5.12052,2.45703,2.3780066666666664,1.7759375,4.43444,4.05865,4.58008,0.6705110000000001,4.657105,4.288995,2.8037833333333335,2.8334966666666666,3.1036099999999998,3.555645833333333,4.05072,1.5950166666666667,0.6692368421052631,0.7711499999999999,3.560366666666667,4.535855,6.1576699999999995,4.705385,5.35385,5.39285,1.3809885714285712,4.016266666666667,2.11516,1.01487125,5.0445,5.95865,3.68474,4.942485,4.05571,7.084225,4.095433333333333,7.408825,3.88537,2.853893333333333,6.51675,10.434566262820512,2.68545,0.734935,3.66123,4.30245,2.14478,6.58445,4.90134,3.979405,3.0049966666666665,3.0049966666666665,5.05085,3.457,4.112965,4.92933,4.030549428571429,2.576938857142857,1.1642,5.749,2.5269,5.751323749999999,3.792345,4.83547,3.128475,2.1195625,4.626155,4.73993,3.6081333333333334,3.86784,4.58331,28.668911666666666,2.185285,2.6869,2.34378,1.63954,2.732056666666667,1.31171,2.9503333333333335,2.9833533333333335,3.579466666666667,3.3125533333333332,0.7166399999999999,3.2547566666666667,4.23797,2.939495,3.161773333333333,3.77262,5.980925,5.09985,4.45318,4.118005,4.026095,4.34126,3.5503,1.6940175,1.016675,1.3587833333333332,3.009673333333333,1.4623333333333333,3.620233333333333,2.4387,2.382073333333333,1.90628,2.573725,1.96443,1.8293833333333334,2.8481,4.140845,3.70303,4.25247,1.651754,4.0819,2.4708866666666665,4.46508,2.5963366666666667,2.542245,2.492785,1.4468766666666666,3.84523,6.5176,2.732155,3.64103,3.96859,2.593925,3.1684508333333334,3.6698,4.559755,4.685535,0.31681508365508365,0.31681508365508365,4.978865,5.20285,3.634115,2.946255,5.5737,4.51264,0.6484161538461539,4.92822,4.76642,3.793335,6.44405,4.56366,7.40977,14.808568333333334,13.572679102564102,4.362465,4.30114,2.566736666666667,0.6573607692307692,2.7961766666666663,4.838235,1.2872566666666667,4.31913,3.6252666666666666,3.1555,2.161563333333333,1.8237733333333335,4.777839999999999,4.900595,9.184624761904761,5.18845,4.260295,7.563401287878788,3.436275,3.0694133333333333,1.422745,5.658119166666667,2.1380525,2.46,2.7568366666666666,0.2915109375,2.929965,3.410215,4.797850833333333,0.928572,1.341095,3.87612,0.586834,0.586834,2.9862308333333334,3.016666666666667,3.420533333333333,4.488715,4.343225,5.5319,3.727765,4.158135,2.89959,3.0863266666666664,2.9539033333333333,0.8771416666666667,2.8156033333333332,2.812315,3.1968,6.9961649999999995,3.09184,9.187775,2.992475,6.02955,2.98579,2.37936,2.634025,2.89345,1.7113775,2.47068,1.831265,4.24098,2.631275,3.83699,2.921785,3.954321666666667,3.954321666666667,2.698455,2.698455,8.981590333333333,2.749586666666667,0.799594,2.58628,2.51241,2.5237766666666666,3.83699,2.0058,1.950948,1.5433160000000001,4.40798,4.62675,1.6903275,4.49398,3.971915,6.195677777777777,6.595815,2.30977,4.18638,7.25929,4.487065,3.443595,2.77032,3.7368,3.5967160606060604,4.34909,5.251805833333334,7.877617333333333,3.61043125,3.527335,1.1374716666666667,4.407315,4.174744,4.980045,3.9031708333333333,4.421095,2.83944,2.55145,7.194515,3.230345,1.382952,6.24013,3.79901,2.780003333333333,5.18375,2.780003333333333,3.182535,4.04636,4.791945,1.0877571428571429,3.8257211111111107,4.580335,3.65273,1.34967,1.7663275,4.56547,4.032555,2.663215,6.8247366666666665,4.365705,3.95587,4.29408,4.4709175,1.3746075,4.482565,2.60123,3.980545,4.121825,4.3084,4.57272,3.084955,4.16527,4.99869,2.1120993333333336,1.8180925,3.8010333333333333,3.7001333333333335,3.3800000000000003,3.223653333333333,3.6796,2.9650733333333332,5.2679,3.48534,3.77022,2.86243,1.8859066666666668,3.5091666666666668,2.0279066666666665,3.09477,3.040335,2.67407,0.70593125,2.21446,1.76799,3.303355,1.9515360000000002,3.383839,3.539195,1.5825939999999998,3.1705924999999997,4.657645,0.8046200000000001,1.2159833333333332,3.358295,3.8556,3.716955,1.967005,1.7334800000000001,3.438205,2.4312825,1.70379,2.89434,1.853895,1.1672280000000002,1.345765,6.292115,2.960255,2.189705,2.39267,2.4249725,3.62623,0.858575,0.3327,0.8463671428571429,4.91694,2.0853451428571432,4.641835,2.1364125,2.1051097142857143,3.4883342857142856,1.3832245714285714,1.0219337142857143,0.675948,0.5807985714285715,3.1029516666666668,6.5733,3.106995,4.07733,0.35034607142857144,3.75448,18.950959761904763,3.002165,7.4116265955710965,1.0844425,1.0844425,1.0844425,1.0844425,5.758851666666667,4.257355,3.514135,1.9747066666666668,3.02255,4.18715,5.30365,3.643395,3.607925,4.702775,4.760515,4.298715,3.754836,3.830755,4.9773,4.00863,4.88654,3.45354,4.07581,2.6770933333333335,3.727045,3.2868,4.026585,4.36671,4.62038,3.4352,2.542325,2.4573066666666668,4.78282,1.2280285714285715,3.857395,2.8753933333333332,3.4823406666666665,4.250522500000001,4.376955,3.08478,3.06793,4.842295,3.545945,3.105995,5.23815,5.0014,3.255965,3.67479,1.6946919999999999,1.6946919999999999,2.043045,4.71822,4.1005,5.847323,5.04845,3.545756666666667,6.34105,4.48455,2.20807,9.206465,5.00265,6.6112175,4.412475,2.8344199999999997,3.96942,0.2558496551724138,1.00473375,3.761670666666667,3.94181,4.973715,3.1608433333333337,5.931753333333333,5.134,0.5683,2.79595,0.503629,1.9624823809523808,3.42384,2.144305,3.909605,3.708195,3.274975,3.50948,3.53303,3.668515,3.333185,3.6607,3.88347,2.3234,1.9624823809523808,2.72497,2.09832,3.57823,2.303375,3.671795,3.451835,1.706555,4.39291,3.68517,1.400315,5.07875,4.76756,4.247285,2.76637,3.2711466666666666,4.458435,1.93535,1.413384,2.5778933333333334,2.9589499999999997,2.5748366666666667,1.8787733333333334,5.12455,3.29242,5.023951666666667,4.045459285714286,5.0158,4.08198,1.7872160000000001,5.31175,4.78704,5.1583,4.199705,6.321235,2.195435,4.686635,4.016155,3.185165,1.9341325,1.5912133333333334,3.784855,4.499625,2.2746333333333335,2.5877133333333333,3.3874275000000003,3.3874275000000003,2.677853333333333,3.5208999999999997,3.383315,3.86236,3.528835,0.7978307692307692,3.184865,4.351335,4.74691,2.928475,2.98191,1.7655175,2.70189,3.52816,2.176665,4.498595,3.625215,4.84507,1.8809633333333335,1.0201090909090909,6.13259,3.580365,3.0016200000000004,3.2809033333333333,1.7466339999999998,30.249472142857144,4.372395,3.24336,5.29505,4.480335,0.8629333333333333,7.5448900000000005,2.147105,5.37785,1.665045,4.95358,5.189413333333333,3.62382,3.161455,2.3124625,3.5569,5.0576,2.079445,2.6999666666666666,3.69849,3.387695,2.473025,5.97425,2.096135,5.75665,1.14353125,4.467875,3.51275,3.97182,4.777865,3.085705,2.5823533333333333,4.18607,4.746145,3.6674775,3.6674775,6.1342,1.58297,4.337675,6.59733,3.338885,4.25954,3.232415,4.551115,3.48008,4.10283,1.3919775,2.55071,4.35023,4.973085,5.841,4.671985,2.575345,10.07625,2.85863,3.781185,1.7433285714285716,3.48413,2.1889433333333335,2.64315,2.55791625,1.2953133333333333,2.77454,0.9377314285714285,1.1086814285714286,1.1086814285714286,1.1086814285714286,2.03485,0.54388625,3.803545,1.2318366666666667,2.49677,1.0012883333333333,1.8192300000000001,2.6950266666666667,2.3476500000000002,0.78215,1.8907033333333334,1.9514133333333332,2.34295,1.651132,1.651132,1.6806833333333333,2.3400866666666666,1.229928,2.053533333333333,1.50621,1.1350133333333334,2.05308,2.162655,5.9801,1.960875,4.92167,18.170055583333333,6.98585,4.779725,3.56804,3.3392,2.76575,2.8102066666666663,3.1975,0.7218216666666667,1.0360099999999999,1.0360099999999999,0.66676875,2.2462766666666667,4.252015,3.94505,1.714742,5.66045,3.886985,2.431605,3.666635,4.65037,3.895065,4.40557,3.488566666666667,3.25457,3.357105,5.69015,3.332613333333333,5.06985,0.512045,0.512045,2.269275,3.445805,4.761265,3.605935,4.133915,4.806425,7.2797979999999995,7.60143,3.78665,2.628495,4.75668,4.01652,2.5157666666666665,2.26922,3.394795,1.2736533333333333,3.518535,2.379685,1.7280825,3.266913333333333,3.80165,2.0095725,5.251805833333334,1.6509475,3.6226333333333334,4.185275,0.9929814285714286,3.4657666666666667,3.090996666666667,4.631465,1.1079683333333332,1.790415,2.4675825,2.2814825,1.692735,2.490955,2.2963575,2.0424625,4.694755,4.201035,3.0836,1.704585,1.4960866666666668,3.7431,2.04564,2.855525,4.409,7.06945,2.4264708333333336,3.091575,3.52877,3.51451,2.394355,5.0938,4.450825,3.2515,1.4091,4.481635,2.793395,3.117383333333333,2.4948,4.02542,5.00285,5.02445,2.5624233333333333,2.9849599999999996,2.9450366666666667,3.432166666666667,1.9490333333333334,1.53424,5.47495,3.496166666666667,2.284781818181818,3.2091733333333337,3.0134433333333335,2.45897,3.1672333333333333,3.2597966666666665,3.6044,5.35415,4.108465,2.98092,5.48455,3.347825,2.417605,3.45255,4.01536,3.74161,5.877015,1.8602260000000002,3.93611,2.557315,4.878275,3.61494,0.6436275,2.316405,2.076775,3.541375,2.715215,2.15046,2.684395,0.7346280000000001,2.9190233333333335,4.653145,2.2501525,4.156385,2.484183333333333,4.009505,1.9513425,4.448215,4.18584,1.9066500000000002,4.90235,6.969189999999999,4.04718,4.55611,4.806235,7.088054886363636,4.585505,4.362805,2.1409725,4.49029,2.86342,1.80258,1.8917175,3.4167666666666663,0.9892671428571429,2.28181,2.9254466666666663,2.5607133333333336,3.594633333333333,1.825628,3.24674,1.8494366666666666,5.34865,5.98357,1.0316175,1.81017,2.5275466666666664,2.8248933333333333,1.9911666666666665,1.0775966666666668,5.598025,2.1306225,2.6286533333333333,3.2189533333333333,3.149853333333333,3.3706666666666667,3.124755,2.2114566666666664,2.89589,2.17563,4.15211,3.877245,3.873205,3.2771933333333334,3.189496666666667,0.889608,1.8364466666666666,2.2226775,2.0723333333333334,2.5682966666666665,1.146665,2.7025900000000003,2.965756666666667,3.601335,1.9895266666666667,3.45134,3.436655,5.64555,3.727115,0.5965349999999999,2.03508,2.6328666666666667,3.428366666666667,0.7197390909090909,3.0642600000000004,3.531312,3.2974566666666667,2.6441333333333334,3.076903333333333,3.729955,3.8625000000000003,3.0162833333333334,2.0516175,5.9121,5.15415,5.1853,5.4585,5.82305,1.8043966666666666,3.472985,3.770633333333333,3.497733333333333,2.86682,2.614386666666667,3.9655666666666662,3.6581333333333332,2.9951066666666666,14.038796666666666,4.11839,1.14467,3.536566666666667,1.567336,3.268103333333333,3.2015166666666666,2.3568599999999997,5.811070000000001,6.5286876666666664,2.3199,0.899567,4.4273,3.3193099999999998,2.986585,5.3313,5.26335,6.02735,5.0027,3.624515,2.0691575,6.5933,1.1374716666666667,6.5895,4.902945,2.48487,3.856745,7.15499,5.7199,2.199053333333333,1.4385933333333334,2.286255,7.358890000000001,1.5196375,2.915853333333333,2.514435,4.311408611111111,5.74075,4.14821,6.37085,3.632185,5.1636,3.783795,8.68367,5.0503,5.59145,2.233725,2.587925,11.442735,3.35809,3.683865,2.45378,1.88891,2.739473333333333,2.71745,0.66641125,1.0188840000000001,1.0850557142857142,3.34031,6.9692066666666665,2.876824,1.3914766666666667,5.139,3.724615,0.55506,4.28137,3.662135,4.534475,4.25513,3.66525,2.62342,4.11041,9.676965,1.8370375,3.870045,4.356935,4.33133,3.679145,0.8466166666666667,3.6079666666666665,3.9323333333333337,1.6591666666666667,2.5705233333333335,2.300473333333333,2.5666933333333333,2.6792833333333337,2.08564,2.121135,6.059363571428571,4.793,4.21993,4.341675,1.5124700000000002,2.47375,4.89251,4.598315,4.69573,4.56466,4.65909,4.924855,1.6946919999999999,3.705055,7.516909999999999,1.21146,1.70129,2.5128833333333334,2.838696666666667,2.7786399999999998,4.9067221666666665,0.7711499999999999,2.414805,3.35663,4.89775,4.442835,2.248396666666667,2.84197,2.0027925,0.565050625,2.479675,2.82821,7.664775000000001,4.16364,4.48049,0.9193199999999999,4.264633333333333,9.524686666666666,11.256676666666667,3.36377,1.21494375,3.58508,3.624365,2.6661566666666667,5.383304666666667,5.0781,4.156865,2.02176,3.879633333333333,2.4222633333333334,2.5517866666666666,0.7677981818181817,0.41490333333333335,2.600495,3.56396,1.9693095,3.454385,3.1985533333333334,3.881645,4.87918,1.526536,3.0625533333333332,1.9814475,1.9814475,2.081785,2.93268,4.723645,2.7723866666666663,2.773766666666667,3.407666666666667,3.5360666666666667,4.311585,4.46772,4.17249,4.03455,4.2691,4.234275,6.7389,7.871855,1.921455,2.16023,2.66032,0.8987816666666667,0.7243633333333334,3.81244,2.30661,5.58955,2.91823,3.2306266666666663,1.99484,1.4626125,3.68809,4.302125,4.179065,1.7523833333333334,1.3125433333333334,2.6845966666666663,2.058593333333333,2.55421,1.1051871428571427,1.1051871428571427,2.71921,4.424115,2.773235,3.034875,3.392235,2.340205,20.529701272727273,3.74872,5.215235,3.99739,3.94819,3.845185,3.79008,5.50695,6.397535,0.9141283333333333,0.9141283333333333,0.9141283333333333,2.646923333333333,1.7208,3.597,4.410625,4.39707,3.447905,4.864095,4.356875,0.9846955555555554,2.50666,2.851053333333333,5.618442,3.115622,3.898782,4.793295,1.9881725,1.9562233333333332,2.35676,0.5017325,0.765024,1.771675,2.15604,2.722365,12.9857,2.55292,5.3774,0.7593500000000001,9.9589675,5.91275,3.700595,4.086245,2.6593,5.50155,2.6593,2.876408,3.50253,3.80923,3.57031,4.072735,4.476545,3.474345,5.66755,6.885536,1.7666266666666666,2.917964,2.61514,27.459314464607463,1.6930479999999999,6.26505,4.611012,3.937265,3.861845,4.78737,2.68461,2.857845,2.292675,6.0002,6.91555,4.87384,4.776815,4.336615,2.09706,2.476695,4.439795,0.38142076923076923,0.38142076923076923,0.38142076923076923,0.38142076923076923,4.04971,3.0571833333333336,0.9463966666666667,1.7128033333333335,1.1449888888888888,4.300695,2.4498633333333335,2.307355,7.515454999999999,3.1528466666666666,0.17179448275862066,20.850641666666665,4.58026,1.782186,1.3692803571428571,2.18704,1.995504,2.57275,4.827075,3.30061,4.1514,3.989015,2.3753766666666665,7.3727025,2.64947,1.87626,3.852755,6.1263,8.116616666666667,4.32923,0.2973487804878049,3.488975,4.36189,3.09111,2.22592,2.97266,1.5847583333333333,1.5847583333333333,3.99563,5.8334725,11.855983333333334,9.609124999999999,0.6369611111111111,2.5785799999999997,4.05951,3.18618,5.03245,4.88785,1.7761500000000001,1.7761500000000001,3.713065,4.50984,2.8566000000000003,3.72788,4.927055,5.1358,5.9016850000000005,2.18276,4.575855,4.222695,2.59736,2.8827266666666667,3.1035799999999996,5.09365,4.31757,5.30885,4.48937,4.266335,3.85992,4.44594,4.31325,5.6284,2.56357,3.2974533333333333,0.995452,4.17654,4.198295,3.864205,1.747662,2.0680166666666664,2.909133333333333,2.89981,2.5074733333333334,4.658133333333334,1.8131666666666666,2.6223,3.9864333333333337,4.2531,2.4732966666666667,2.5500266666666667,4.1204,3.650233333333333,3.8713333333333337,4.061733333333334,2.0330833333333334,2.8137966666666667,2.5024433333333334,5.8626,3.064223333333333,41.928081666666664,2.5234727272727273,2.5234727272727273,2.62994,2.928986666666667,2.0961466666666664,1.7276533333333333,2.9218233333333337,1.77892,0.7342315384615384,4.832345,6.9428225,4.19411,4.019355,5.1889,1.9562166666666665,4.77898,1.8540800000000002,5.16535,5.46765,5.77985,4.165125,1.6940175,4.23192,5.31345,4.77475,5.56595,5.43315,3.95142,3.5038666666666667,2.90817,2.283165,1.914305,4.34817,2.0390133333333336,3.7422825,3.7422825,2.1892733333333334,1.52785,2.17928,2.5125766666666665,2.420506666666667,4.54705,2.8843599999999996,1.1551,1.1551,2.402486666666667,2.343106666666667,2.5639166666666666,2.6560200000000003,2.5093133333333335,2.470616666666667,2.26345,2.166544,2.963341142857143,1.581397142857143,0.7967971428571429,60.521635981150794,2.41062,3.31578,2.2208620000000003,0.8878780000000001,3.517344,1.56265,1.56265,3.0879600000000003,3.076803333333333,0.7846,2.6100766666666666,5.046456666666666,3.9929333333333332,2.4502866666666665,2.80078,2.0268466666666667,2.53804,0.271581875,2.695536666666667,0.7340099999999999,2.5581666666666667,1.149778,1.149778,2.737023333333333,2.1651,2.31371,1.6655846666666667,3.113933333333333,1.6655846666666667,2.14324,2.6298966666666668,2.8811433333333336,1.308714,1.308714,3.0062266666666666,1.4259000000000002,3.0006,2.2282566666666668,4.92659,4.53544,12.6996325,7.050345,3.784195,3.578945,4.27944,5.22185,5.36555,2.7181025,4.65278,4.081585,2.3330433333333334,4.611025,3.29994,2.7382666666666666,4.882285,2.29103,1.038492857142857,4.085244583333333,2.9413133333333334,3.30148,0.8334142857142857,2.627045,3.51143,4.39553,4.292785,6.5379,2.989376666666667,2.10506,3.88334,4.49691,2.2966725,2.649563333333333,1.9478966666666666,2.0675893333333333,0.876406,5.2498,4.766995,4.60614,3.944745,3.1915999999999998,4.563565,5.1435,2.964323333333333,1.6592933333333333,0.5324913333333333,14.42725,0.5036754545454545,0.5036754545454545,0.5036754545454545,3.1064000000000003,4.0441666666666665,0.5036754545454545,7.145101666666666,4.411256666666667,0.711773,0.711773,3.303043333333333,3.285965,2.95081,4.383505,4.595735,4.3786700000000005,2.25025,4.860407333333333,3.665855,3.423064523809524,4.47742,2.95735575,2.2959475,2.3347975,2.67445,1.6414425,3.3843475,2.9772866666666666,2.4595475,2.164205,2.009545,1.7413833333333333,1.629355,2.669,1.0946322222222222,2.596275,0.6161778571428572,5.50005,1.732255,0.7260049999999999,2.3494725,7.837683333333333,2.479755,2.1336565,3.2545149999999996,7.64508,2.453685,4.637575,3.784355,5.9525,3.689205,3.87499,3.97627,5.1695,3.1246166666666664,4.397988333333333,1.1338385714285715,4.146825,2.4156400000000002,2.560093333333333,2.57902,2.451305,2.11458,1.3022375,5.4414,0.9074927272727272,4.930115,5.5302,4.8352,5.51335,4.6265,2.6902866666666667,2.0744800000000003,2.776206666666667,3.0056166666666666,2.52263,3.689833333333333,2.745775,4.47864,1.7914020000000002,40.66211757936508,4.74892,2.3383766666666665,3.3035099999999997,3.0881066666666666,1.5493499999999998,5.873271666666667,4.14368,2.6465133333333335,3.3659,2.2675433333333332,1.6101375,5.3538,0.8453142857142858,5.227377142857143,1.2778385714285714,3.5253333333333337,3.3448333333333333,2.8860966666666665,1.4513125,4.9076,1.736174,1.736174,2.49311,2.8965933333333336,3.5219,3.655666666666667,1.4134333333333335,3.0278733333333334,2.6577933333333332,6.3823375,2.9644166666666667,4.123291666666667,1.4870666666666665,1.3807533333333335,3.0720833333333335,1.055846,5.435935,3.7368666666666663,2.9137033333333338,3.7070000000000003,2.8668533333333333,2.7407466666666664,3.177286666666667,1.68607,2.4249725,2.60921,3.610633333333333,2.4919466666666668,3.623866666666667,2.9778933333333337,0.5755866666666667,9.581660384615384,2.7350166666666667,5.40365,5.1559,2.78037,2.88625,1.3128825,2.211176666666667,2.124655,1.3128825,4.09057,0.46117875,0.46117875,1.2551225,1.2551225,0.8647075,0.8647075,2.70619,2.861445,2.50391,1.44367,1.99569,3.60731,3.18289,4.792035,5.0428,2.10596,4.406305,2.32555,4.7386074358974355,1.4653375,1.4653375,2.25458,1.8168780000000002,3.6867366666666666,2.04171,4.42108,1.4886833333333334,2.4843475,0.6282869230769231,1.3687814285714286,2.2483575,2.2842375,2.28516,1.53702,4.53797,4.171825,2.5418333333333334,2.62092,1.3637,0.7304116666666666,2.03792,4.19343,2.3430133333333334,4.786355,5.4532,5.19555,4.115115,6.6251475,1.6025416666666665,6.435545,1.866655,4.35032,4.634435,5.71851,3.1135633333333335,2.301275,1.6987425,1.970132,1.970132,2.3953475,2.3953475,4.40077,5.45775,0.8926040000000001,4.37803,3.54612,3.39954,3.032636666666667,1.4136775,2.7855600000000003,4.157845,4.22401,1.89967,6.6448,5.3067,1.7713633333333334,1.314725,3.83529,4.090816666666667,3.84361,3.46286,4.02876,0.6843114285714286,3.5361666666666665,3.1465266666666665,2.72911,3.03679,2.1886933333333336,3.5114666666666667,1.5233285714285714,1.5233285714285714,1.5233285714285714,3.2946566666666666,3.1320666666666668,3.16657,3.5543385,2.26133,1.287577142857143,3.0985600000000004,3.32068,1.3415714285714286,3.0964899999999997,2.7139633333333335,1.3773028571428572,2.8630366666666665,2.8613866666666667,2.9353233333333333,2.87731,2.7478266666666666,2.1453525,3.2903599999999997,5.095175333333333,4.45597,0.961767,1.7135179999999999,0.648866,3.6824333333333334,9.098379999999999,2.9263600000000003,3.12189,3.1636633333333335,4.1295866666666665,1.83632,7.782870000000001,6.8288166666666665,2.7808833333333336,2.410942857142857,4.39717,5.163,1.55057,1.455708,1.395616,2.053375,11.504349999999999,2.86896,3.068153333333333,3.056719666666667,3.95566,2.2401733333333333,1.19254125,4.652885,1.0696666666666668,3.2582403846153847,4.13301,3.1704,3.2482399999999996,3.48397,5.01335,1.4264066666666666,2.0255875,2.093170333333333,2.093170333333333,3.905745,5.465,7.318099999999999,4.19591,3.336285,5.0445,1.8106375,2.3136408333333334,4.728445,4.5164,3.84671,1.5106866666666667,2.9375033333333334,3.499055,4.48599,2.567875,3.98047,3.834785,3.918535,4.05323,4.635555,4.289135,5.446,3.25339,2.4239333333333333,4.49258,2.962825,3.814985,2.182555,2.809775,2.62486,5.6797,2.529365,3.2297282386363637,1.6342675,2.561005,3.433185,2.02038,2.0808275,0.9675750000000001,0.9675750000000001,1.7395375,3.8214415151515153,4.186075,2.8926233333333333,4.38585,3.4026441666666667,2.502736,0.9989625,3.30481,1.4929375,4.294855,4.0443,0.9261062499999999,1.813765,3.873195,2.9211525,1.562925,1.5899966666666667,4.765114285714286,1.0275216666666667,2.62192,3.2125,2.78882,2.444325,2.737167,1.95154,0.95853,2.922755,2.9833,3.40473,1.36737,1.5277399999999999,1.766265,4.526225,2.05091,4.27243,4.59972,4.65112,5.7943,5.3111,4.132575,5.92218,4.239481428571429,0.8024363636363637,2.82935,4.337615,4.18635,0.49915909090909094,0.895228,3.008785,4.054925,4.75343,4.5445,3.2285107142857146,2.70094,4.79869,1.7724419999999999,2.2915025,4.539915,4.1881900000000005,3.397995,2.75016,3.82761,4.45694,2.95003,5.3401075,0.93971,3.364805,2.480845,4.55013,4.40603,4.418045,2.11066,2.48991,2.99336,2.1659133333333336,4.8773,3.46093,1.4933714285714286,2.823655,4.1591275,1.44358,5.9227549999999995,1.86936,2.61851,13.701865477507873,3.16987,1.5294133333333333,1.5161716666666667,2.104976666666667,5.500476666666667,1.623836,3.700438666666667,0.6889069230769231,2.8676066666666666,4.15216,7.5596725000000005,2.4602999999999997,3.2744733333333333,3.2744733333333333,5.1975,4.496175,3.79834,3.311825,5.16315,5.2346,2.339755,3.4374000000000002,4.6341,1.2334666666666667,3.596833333333333,4.59707,3.87139,3.89824,2.5899366666666666,3.66145,3.76585,6.723051666666667,6.3651025,0.8074049999999999,4.18879,3.19733,3.6100666666666665,4.22961,3.98244,4.006995,1.8862739999999998,4.59353,2.46494,2.82388,4.184215,4.44336,4.657525,0.9408570714285716,2.669286666666667,8.676510333333333,1.5139383333333332,2.1561035064935066,2.2132525,3.952325,3.535845,3.191195,0.7425709090909091,2.430975,1.603305,2.327745,4.44881,5.354890666666667,2.857514,8.818065,2.5540966666666667,2.79199,1.1124,4.64146,5.47415,2.025285,5.648618333333333,4.00446,3.103165,5.6615,4.693725,4.9103,2.16058,1.5577275,1.5577275,2.609395,3.147755,4.58756,1.56105,5.60348,1.32414,4.087605,1.4299083333333333,8.4414945,4.73444,2.70369,5.0774,5.275,3.991155,1.1683166666666667,1.9954625,3.5641,3.033886666666667,3.4517666666666664,3.5262,3.76513,2.709025,3.272345,3.261955,1.517715,2.5137466666666666,1.8225133333333332,2.8820099999999997,1.9085166666666666,5.346269166666667,3.4443,1.6910366666666665,2.9232,3.32156,3.20175,6.127,6.01305,3.042795,3.613475,3.32855,3.20715,2.787955,1.1995733333333334,0.968362,6.464365,3.784315,4.905845,5.58575,6.413,3.13766,3.1041133333333337,6.5173,2.44085,0.5160894444444444,5.43565,3.109485,3.777465,3.2370099999999997,1.4332857142857143,4.845505,1.05849,4.844735,0.94560625,1.4380300000000001,2.7825333333333333,2.405603333333333,2.5241198571428574,3.800865,5.39035,5.997533333333333,5.997533333333333,4.8965525,4.8965525,4.573685,3.102883333333333,4.55497,1.03107125,6.057,4.447045,3.5729666666666664,4.17543,3.68077,4.939955,1.9183475,4.63448,3.2494140000000002,2.961345,4.275055,2.64053,4.6406,5.32905,3.598655,3.44307,4.90271,3.79209,5.2002,3.276415,3.116206666666667,6.19355,4.298705,2.9182333333333332,6.46706,1.5766333333333333,2.2009075,4.584785,4.76428,5.2791,3.87945,1.9254745,1.9254745,13.68479992857143,10.7202,5.47375,4.053015,2.9068848717948716,4.696445,4.63128,2.737033333333333,3.4774666666666665,3.29543,3.9631333333333334,3.4385666666666665,5.03335,1.88035,8.103063333333333,2.35654,2.09892,5.9574,2.413975,5.1286,4.44154,4.69111,0.7813444444444444,3.192565,4.11174,0.860098,2.93322,3.7788666666666666,1.46998,2.027836666666667,3.065163333333333,2.7413833333333333,2.55432,3.2357066666666667,2.4254366666666667,0.4806321428571429,3.0034833333333335,2.905113333333333,2.8436033333333337,3.2590733333333333,1.620954,3.0749766666666667,7.036505,4.46442,2.600886666666667,2.086676666666667,2.58668,3.71339,2.4276,3.5843705000000003,18.6586475,5.48555,3.452505,5.97335,3.77303,5.26893,1.45799,6.5188,1.5709116666666667,4.378325,4.15286,5.24035,5.0306,0.9848115789473684,5.9399,2.64573,4.99987,2.49832,4.297025,4.5327,2.78106,2.11827,1.5365280000000001,1.885545,4.53517,4.833425,2.121015,1.583455,3.1710266666666667,4.307003333333333,2.9866233333333336,6.06905,2.515275,4.906775,4.46349,3.69205,4.588745,3.669045,4.16088,4.58187,3.99232,2.8058933333333336,2.8058933333333336,5.8996144444444445,1.9330233333333335,2.7347900000000003,3.948925,1.7357220000000002,7.112254999999999,3.729865,4.50404,4.4219,4.439165,1.893808,4.509145,5.065,4.071425,2.0752425,3.668585,3.3016,1.1500275,1.505065,1.25798,0.7137383333333333,1.62852,0.9659283333333333,4.471585,1.0353155555555555,2.88495,1.6078599999999998,1.912335,1.046545,2.0775825,2.3884475,1.6179125,3.7034333333333334,2.6905366666666666,4.863578333333333,1.6060083333333333,2.2502625,3.2688466666666667,3.4324333333333334,2.2917866666666664,4.487819166666666,4.54509,5.111437499999999,20.655854416666667,2.8605533333333333,2.18894,0.6208561538461539,0.666612,4.310925,1.9621659999999999,4.05883,5.0028,7.491565666666666,4.414745,3.729435,3.885805,3.13256,3.2072633333333336,3.23734,3.4611666666666667,3.5222333333333338,6.23545,3.683855,0.938855,1.15412125,5.1856,3.3009166666666663,2.59789,2.2041333333333335,2.48477,5.77745,5.01935,2.42505,2.1016066666666666,3.243615,4.946145,8.920586666666667,5.555038541666667,4.54315,4.369015,5.2938,4.57858,4.29989,4.52942,3.96106,5.4482,2.01977,5.97,1.6079142857142856,5.331,0.7574533333333334,4.97598,5.5213,6.07685,6.11935,4.64762,6.322,5.92845,6.3675825,2.0663,1.6118857142857144,5.61635,3.661465,6.403358333333333,5.1643,5.305551666666666,5.06605,6.29425,1.3638214285714285,4.524435,5.42965,4.1193333333333335,4.86897,5.7602,2.6845,3.94605,3.981865,4.582155,0.9850333333333333,1.5843083333333334,1.387708,5.13005,4.039685,5.3272,2.5023466666666665,3.2053700000000003,1.5145566666666666,2.17063,0.38359583333333336,3.630266666666667,1.65642,2.3201383333333334,3.2535933333333333,2.79351,3.281306666666667,2.5581,2.598075,10.530337333333334,3.586933333333333,1.795454487179487,4.199315,0.85426,4.42467375,1.07114,1.6523575,1.90495,1.04017125,5.582762,1.1925605555555556,1.1925605555555556,1.1925605555555556,2.8710733333333334,1.7286639999999998,5.18305,2.985575,1.653575,1.52271,1.6458925,1.42995,1.9488420000000002,5.65127,0.8801677777777778,4.159335,4.149435,3.4667,0.9894971428571429,2.156707,1.91187,1.91187,1.5993333333333333,3.719611666666667,4.52731,5.0572,5.61845,4.404615,5.4033,2.7914600000000003,2.079305,3.245395,5.37355,3.718465,4.21051,1.0646575,3.987415416666667,5.26485,1.912405,4.529285,3.02158,4.37515,4.98479,3.269475,6.6,6.19995,4.64646,4.667565,4.237885,3.109905,8.38283,4.13508,5.782136666666667,3.33319,2.73733,5.05065,2.6308866666666666,4.02886,5.3765,2.7872466666666664,3.21673,3.960395,1.4398233333333332,10.648782500000001,4.878425,3.22703,15.879323630952381,4.44772,1.7680233333333335,3.0544433333333334,2.624045,2.92255,4.53705,2.5547652083333334,2.95359,2.983285,2.929175,4.03912,6.075735,1.27208,2.50165,4.202805,4.95437,4.79265,2.236375,0.6005406666666667,4.686345,4.12796,2.16022,1.23845,4.78501,4.67199,0.957788888888889,3.897255,13.153935,1.323382,0.39303499999999997,3.7568,4.475961666666667,1.1544666666666668,4.74437,3.92255,5.688706666666667,1.2795416666666666,3.900655,4.086825,3.39786,4.39386,4.58584,5.3071,8.87049,3.10252,4.178565,4.451865,16.164761875,3.5193000000000003,2.746525,1.279165,2.522875,1.24217,2.0281562500000003,1.3851725,1.977995,1.8736825,2.06918,2.372355,2.3667425,2.1863,5.42725,3.64294,5.58315,3.286255,6.0424083333333325,2.868323333333333,4.7964,3.398733333333333,1.1911725,3.701695,2.029135,2.6760539999999997,4.91814,4.77666,4.906975,5.4953,3.01426,3.3673333333333333,2.40589,4.49254,3.683695,2.26209,1.846085,3.8304333333333336,5.02695,4.09696,2.369196666666667,11.981736666666666,0.6708,2.614745,5.0181,2.567559,1.164138,2.82437,7.273944999999999,7.123533333333333,4.586275,4.1139,4.1896,2.02794,2.460075,2.967181666666667,2.1577266666666666,3.6943816666666667,4.5068,4.396295,0.555596,6.30055,3.3473666666666664,3.407,3.5576000000000003,6.32145,8.5718575,4.262225,1.0718075,2.16694,2.21685,3.57319,2.537605,3.98074,4.58563,3.459,2.7762100000000003,4.07672,4.12525,3.823195,4.170566666666667,2.0156733333333334,4.046235,5.1438,5.57815,3.4534000000000002,1.94907,2.1716866666666665,29.001926666666666,1.4993325,1.4993325,2.2945766666666665,4.628438666666667,4.14094,4.573285,3.08984,3.16527,4.14915,3.057956666666667,4.14702,3.057956666666667,3.47918,1.9332166666666666,1.6724466666666666,5.8127,2.568275,4.581135,3.323925,2.611975,6.891344999999999,2.0560033333333334,4.878295,5.33635,3.60667,3.448475,4.81929,1.953008,4.693795,3.499325,6.642018333333334,5.399853333333334,2.68095,4.0529,4.31786,2.09906,3.2083600000000003,3.9225666666666665,0.46315285714285714,3.3762333333333334,10.121163333333334,4.54204,4.16692,5.21675,3.613875833333333,3.06508,1.3200142857142858,4.27547,5.17615,3.224255,2.649395,5.26385,3.82289,4.32045,4.485015,2.58345,2.58345,4.002825,2.76097,2.9085875000000003,1.957055,4.79562,3.95488,1.0864,3.80402,4.597375,2.8966666666666665,7.1505849999999995,7.63954,1.485096,4.42794,4.86711,6.98132,0.846942,7.371251666666667,3.5715916666666665,0.6798045454545455,5.34045,5.24385,5.2024,4.43137,5.0164,4.521485,4.99229,3.933625,4.289435,4.76654,4.889035,5.06285,4.934435,3.89876,2.775425,4.037355,3.323375,0.88831,4.355105,2.29791,1.646775,4.356965,5.03065,5.7017,1.0451871428571429,5.067473333333334,3.08625,2.669826666666667,2.3048125,1.19827,11.6756925,3.16518,3.2358966666666666,2.58785,3.8570557142857145,5.98334,6.290688333333334,2.6401233333333334,2.117713333333333,2.2891,2.2891,2.2891,1.4097033333333335,4.365325,4.0468,3.59149,4.510295,8.00367,4.412965,1.202378,2.1478,3.67447,2.260405,1.9035499999999999,3.83684,2.66581,1.3399966666666667,3.0845066666666665,6.752092857142857,7.366389999999999,4.36626,4.07531,3.15959,5.3491,4.55073,5.583738333333333,1.9579475,1.9579475,4.332935,3.75797,2.5502233333333333,2.5502233333333333,3.991225,1.106957142857143,5.0155,3.335055,4.172345,4.334605,4.619705,3.13448,0.9895614285714285,4.523605,5.6568,4.290195,4.764505,5.0644,5.02885,4.77118,2.0710125,1.658265,3.449305,3.742855,3.27211,4.325965,2.04391,3.4799024999999997,5.3944,2.782315,4.81521,8.555505,2.2668479166666664,2.9706333333333332,4.278988095238095,4.93142,1.72595,2.058292857142857,0.94808,2.058292857142857,1.8100533333333333,1.8100533333333333,1.533456,4.94343,3.071355,3.81395,2.29934,3.897555,1.5064216666666665,5.37805,3.117345,1.668985,2.675803333333333,4.565875,3.57618,6.4065129999999995,4.709505,1.344014,0.8519516666666668,3.71696,6.486631666666667,2.3403066666666668,3.553375,2.83911,2.83911,2.282465,3.3452,3.479615,1.398017012987013,3.238236666666667,3.414695,3.199635,4.225045,3.9812925,1.6188425,3.944115,4.73869,4.878465,5.3793,4.177145,1.7072075,2.209955,1.25559,2.424175,3.42138,2.047395,4.273275,3.2413833333333333,2.989515,4.14302,5.07055,2.283875,0.982072,1.8103833333333332,1.4628,1.151,4.812895,4.014715,0.995452,0.20706304347826088,0.20706304347826088,0.20706304347826088,3.598595,5.879525,4.54599,5.2476,4.95083,4.52049,5.0686,4.30555,2.727925,3.65479,1.7867225,5.1683,4.416285,3.90791,4.41192,4.23355,0.7617454545454546,0.7617454545454546,0.7617454545454546,0.7617454545454546,0.9239979999999999,0.9239979999999999,4.13822,3.90202,3.791685,2.76611,2.512855,5.7259,4.82828,5.43075,4.354245,3.0314099999999997,2.4809033333333335,9.83574,1.53384,1.53384,4.432035,5.2199,3.2584966666666664,0.46117875,0.46117875,0.46117875,0.46117875,0.46117875,0.46117875,4.984596666666667,4.959365,3.61148,4.73764,2.7297466666666668,2.7297466666666668,2.48536,3.1303270000000003,2.8983866666666667,3.089485,3.913305,7.080599666666666,1.381086,5.0419,3.34477,4.333,11.030488333333334,2.59403,2.84819,1.0037414285714286,2.45894,4.89922,3.69352,1.30915,2.8905266666666667,4.356295,5.67625,2.712775,4.689025138888889,1.1216222222222223,2.0621666666666667,4.906185,4.83528,2.9068135,2.574343333333333,2.1925266666666667,1.3673733333333333,7.901011666666667,3.13843,2.3502933333333336,3.181555,2.685388333333333,4.63529,3.79949,2.6523866666666667,3.3228266666666664,6.00715,1.4743899999999999,4.84933,5.08565,4.200815,4.07095,2.461533333333333,5.40035,3.77685,4.065525,2.77591,4.551965,4.627935,3.0219233333333335,1.8529725,2.8717366666666666,2.6466966666666667,2.7905599999999997,0.8160236363636364,2.1227125,8.1738425,0.479134375,3.02581,1.5552533333333332,2.56482,3.3725666666666663,2.901096666666667,1.2147444444444444,1.74342,2.6846266666666665,2.150405,3.6788,2.03984,2.7572233333333336,1.4402366666666666,3.007034,2.568225,1.117757142857143,3.02071,2.175885,2.30034,2.5755733333333333,3.6782,3.2279666666666667,3.2299900000000004,3.3184566666666666,2.94842,3.3226866666666663,2.846963333333333,2.511625,1.7570233333333334,2.3310066666666667,2.5855799999999998,1.61499,3.139893333333333,3.8029471428571426,2.8862466666666666,2.97059,3.0208766666666667,3.8074333333333334,4.665374166666666,3.05545,1.7352142857142856,1.7352142857142856,2.32978,1.1449275,2.5643,3.3634466666666665,4.577701666666666,2.7061,1.933685,2.1433425,2.1208875,3.67515,3.55501,3.871215,5.01655,1.76581,2.5305666666666666,3.7888,1.44068,1.44068,2.931275,0.6927046153846154,3.2776273076923075,2.5093,2.5093,2.809466666666667,2.539703333333333,3.0956833333333336,2.6233433333333336,2.2787125,6.137521666666666,3.8996725000000003,3.8996725000000003,3.895835,3.150545,2.206625,2.937325,2.462625,3.11598,5.1157575,0.4791541666666667,0.687097,4.063445,2.3545,3.103225,7.023116666666667,3.693115,1.62284,4.77888,4.504695,4.27252,4.301365,5.43535,4.86387,13.3881845,3.426655,1.5637566666666667,2.752515,3.7194,5.1623,4.47869,4.405615,4.3764,3.86401,4.947155,2.8341066666666666,3.21869,2.8433233333333336,2.36445,2.36445,3.981155,3.911575,3.072945,3.61184,2.293435,2.54346,2.25565,1.95945,1.9999925,1.9504175,1.80274,3.6834355,3.35673,2.602765,6.83907,4.52563,2.403966666666667,2.0543733333333334,3.277205,3.98108,3.464455,3.110464583333333,3.40935,3.207475,4.176565,3.67201,3.845835,3.94786,3.20442,3.38087,0.6521266666666666,0.6521266666666666,0.6521266666666666,3.507135,2.40362,5.1222,2.7572,3.693205,7.261062222222222,2.6955466666666665,0.3925,5.1058,0.777543,4.34178619047619,1.849185,3.65781,1.79599,4.630995,5.944475,4.250125,4.19755,2.9059399999999997,2.95447,1.4626366666666666,2.470826666666667,0.47550157894736844,0.5400788235294118,2.8270766666666667,1.4996633333333333,1.983575,3.79945,2.615485,4.892465,2.9729566666666667,3.005306666666667,3.49401,5.29492,1.75572,0.9908971428571428,2.27045,3.51682,1.319577077922078,4.60352,3.75132,3.5369,2.7199266666666664,4.355615,2.9535400000000003,2.708826666666667,2.61047,2.2997675,2.6999566666666666,2.2315425,3.0402166666666663,2.3579233333333334,5.512350666666666,2.561825,1.8629966666666666,2.18839,4.973573999999999,3.255002,3.255002,2.45351,3.878495,2.26437,3.70076,2.91533,0.611378,4.659955,2.1683275,11.749567777777777,7.11002,2.853895,3.278425,3.290285,5.14231,2.852405,3.50726,0.20481866666666668,2.0237475,3.8838000000000004,0.9241083333333333,3.996285,1.4301142857142857,5.2629,3.294945,3.76737,3.10971,4.683795,2.142295,4.52023,3.823895,3.86845,6.71353,4.92688,2.977273333333333,3.1171866666666666,1.6295940000000002,1.85318,4.46765,4.576975,3.9964975000000003,2.655595,3.927745,1.575068,3.249935,2.812965,4.30924,11.255286666666667,3.661825,6.795923333333333,3.96779,4.649525,1.0409944444444443,4.82032,4.90377,2.4969966666666665,2.8655566666666665,3.3796666666666666,3.066076666666667,2.3715066666666664,1.76345,1.9962833333333334,3.715235,1.6619,2.6446866666666664,5.3041160000000005,2.88817,1.203447857142857,1.203447857142857,3.65839,3.1988865000000004,3.1988865000000004,3.9596666666666667,3.02722,3.5407510256410255,3.8251333333333335,3.3564666666666665,2.6249866666666666,2.3824733333333334,2.31808,3.107606666666667,2.2226725,2.6857399999999996,1.632374,5.782128999999999,9.041056833333334,0.5171346153846154,0.5171346153846154,0.5171346153846154,0.6194780244755245,0.6194780244755245,0.5171346153846154,3.503833333333333,2.9439533333333334,4.337746666666667,1.4682433333333333,1.7822675,3.252562,2.4088266666666667,3.0402233333333335,2.3426,3.0465733333333334,3.602866666666667,7.0829450000000005,2.9570433333333335,2.5706,3.435233333333333,4.317535,2.66101,3.4404333333333335,5.38847,2.3672033333333333,3.4111,1.40113,1.40113,2.8066366666666664,0.5053231578947368,2.438223333333333,2.749663333333333,2.944646666666667,3.291043333333333,2.274103333333333,1.4958466666666668,2.751516666666667,3.0566,2.41736,4.64642,2.4391993333333333,4.255415,3.701825,4.63957,0.5080020000000001,7.9503200000000005,3.044804,3.044804,7.989941944444444,1.7325433333333333,2.3048566666666668,3.024506666666667,4.575955,2.371586666666667,2.0768400000000002,2.7467900000000003,1.391205,3.31363,1.7941566666666666,2.9970375,1.3546125,0.26284545454545455,0.26284545454545455,5.00385,3.86026,4.30825,2.85143,3.052165,3.305455,1.2990899999999999,6.2705,3.8216,2.94578,1.8256875,1.1667433333333335,2.139955,3.024506666666667,2.46046,2.018505,5.5701149999999995,4.54869,4.590995,4.030805,2.291705,0.68729,7.4658774999999995,2.0501025,1.499725,3.54685,4.72838,2.250455,1.8018333333333334,5.13145,4.1182,3.4008333333333334,3.3262699999999996,4.70533,4.562485,3.4197666666666664,2.497222,2.497222,4.036045,5.2911,5.93935,6.727103333333333,2.79963,3.709265,1.34881,2.4014125,4.8944426666666665,3.66952,1.7804860000000002,4.566905,3.6004924999999997,4.410185,2.01743,4.202425,4.78172,4.936485,4.95118,2.372856666666667,2.5934933333333334,3.888,2.1250033333333334,2.679525,3.0023066666666662,2.5454933333333334,0.852578,1.911565,2.7950700000000004,2.342513,4.55774,4.47201,4.606175,3.809155,3.562705,5.3671,11.966560000000001,5.49,4.725735,4.345945,3.95997,4.79598,3.371,3.291596666666667,3.743133333333333,1.21898875,2.78725,2.864945,4.75947,5.61465,4.640435,3.3368,2.8138799999999997,2.38728,4.340066666666667,4.171307499999999,3.5521999999999996,4.171307499999999,2.5551145,2.27041,2.3765083333333332,2.2262625,2.992293333333333,1.73271,0.8613983333333333,1.605285,1.6646233333333333,2.06047,1.5582333333333331,1.2770599999999999,1.66705,2.6341733333333335,1.521388,3.22266,1.2511133333333333,1.5946633333333333,3.08494,3.7199333333333335,2.5454966666666667,2.9115233333333332,2.4379033333333333,3.071225,2.084,2.7916933333333334,3.099346666666667,2.6556533333333334,3.0285533333333334,3.060975,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,4.89034,4.21281,1.0369285714285714,3.21761,2.6537333333333333,2.82187,3.71012,3.0464633333333335,4.48702,3.606008666666667,1.67137,3.14399,1.71155,1.01725125,0.9246359999999999,1.4141516666666665,0.8777416666666666,0.7148333333333333,1.359052,3.25366,1.7115079999999998,1.62033,1.8524055555555556,2.4613216666666666,1.3041466666666668,1.428725,1.5533283333333332,0.91203,1.2307666666666666,0.6870566666666668,0.876548,3.37387,3.477065,4.00902,4.4646,4.163195,3.0116666666666667,4.62838,3.7433,1.932245,3.58148,2.00195,3.583555,2.285956666666667,0.8292672727272727,4.05175,4.67598,2.1002899999999998,1.23046,2.88489,3.296215,3.719611666666667,2.9331333333333336,2.663765,0.890095,2.2465825,5.31681,3.871845,2.45027,1.5271516666666667,3.756835,2.18172,0.6323927272727272,4.697775,3.97334,4.07998,2.720845,1.3533300000000001,4.323185,4.471745,2.5937266666666665,2.60035,2.50283,2.74127,2.73992,2.8732699999999998,3.1547866666666664,1.2872125,2.80745,2.46143,4.800515,4.27075,3.676215,4.534915,16.19339066919192,4.5755475,4.616230666666667,2.70912,4.57879,5.30795,1.612076,2.646475,2.6964666666666663,6.58364,4.326505,4.43277,5.7584,2.6964666666666663,4.013615,1.961515,2.6358099999999998,2.8111766666666664,2.828516666666667,1.3495883333333334,4.37592,3.78288,2.44881,4.229985,2.754183333333333,2.9562033333333333,3.599065,3.078175,5.4541,4.14189,2.66013,3.477865,2.436675,2.5976966666666668,1.471568,1.471568,2.9060566666666667,2.39639,0.30846321428571427,4.899137,0.95544,4.876415,3.96728,0.5877808333333333,4.72935,7.743511666666667,1.8180925,3.644395,3.597175,2.867036666666667,3.303545,2.316425,3.00572,3.48232,4.085045,3.06697,4.128566666666667,0.9943833333333334,11.876656,2.719225,3.090115,5.07495,2.523375,4.01004,7.853791666666666,4.483995,4.17446,3.55009,4.18601,5.8175175,1.6025275,2.8711266666666666,4.549705,3.8104,1.93115,3.843135,3.740425,3.73984,3.909605,4.41569,3.946185,2.540825,3.878595,3.85476,5.27975,3.77183,2.3755866666666665,2.4743866666666667,2.1955733333333334,2.9504933333333336,1.26914,3.6414333333333335,0.8511509090909091,3.3578666666666668,3.136836666666667,2.6479866666666667,1.5997899999999998,4.42029,4.07285,4.15216,1.9253775,4.58677,3.579855,0.7117818205128206,0.32948115384615384,4.491435,5.03005,1.0135575,0.32948115384615384,3.46093,0.7117818205128206,0.7117818205128206,0.32948115384615384,5.763615,2.62367,2.48175,5.4688,2.66565,3.229145,0.7907566666666667,3.26935,3.795095,4.623565,5.36905,2.1751275,0.74959,4.818525833333333,2.345616666666667,1.519598,2.1759025,1.1399457142857143,2.6236266666666666,2.43576,3.197505,5.30635,2.8692333333333333,3.4221333333333335,2.9228533333333337,2.367363333333333,3.00899,4.3116787500000004,1.5917525,2.05422,3.862155,5.392,2.1365993055555554,4.980925,2.379455,4.04036,4.263895,3.239255,1.1859075,3.046165,6.5477,4.001055,3.763615,5.0607,6.03715,2.82295,4.12414,4.490825,3.153095,3.40172,8.06997,3.671885,4.888177499999999,2.185335,1.2234275,2.5456933333333334,1.97653,2.057855,1.83976,4.638725,0.7215499999999999,3.41918,3.8195,1.9209033333333334,3.20782,5.03875,4.38452,3.05113,4.524515,5.38525,9.533247666666668,2.7236766666666665,2.62595,1.678512,1.7517166666666668,1.1109866666666666,1.3704766666666668,3.059536666666667,2.4508199999999998,2.963563333333333,4.364420833333334,1.4997575,2.3230566666666665,5.24215,5.51925,4.008575,3.487835,2.88381,2.497165,2.088435,1.99563,1.75521,2.01661,3.018515,3.623045,4.958115,5.20605,4.090595,5.508857083333333,3.59059,2.551575,6.331390833333334,3.826755,8.18335,4.904785833333333,4.904785833333333,5.582376666666667,1.6085066666666668,1.319985,2.7077833333333334,0.727305,5.0924,3.799166666666667,3.49141,3.49141,1.99618,4.73496,4.42803,4.76409,4.53414,2.9164033333333332,2.643715,4.05146,3.0720033333333334,5.166506666666667,4.57662,0.8135872727272727,5.581,5.29175,4.70353,5.29175,3.129385,5.7734,4.012405,0.8810615384615385,4.90263,7.138343333333333,3.244645,5.6269,5.841,3.35467,2.609485,3.91613,6.29785,2.13171,5.75135,1.90025,4.52455,2.75874,2.241095,0.93971,3.48057,5.7066,3.36755,4.119975,1.9922733333333333,4.76342,7.6928133333333335,3.61359,4.2976,2.4486,2.713315,0.8732710000000001,4.84989,1.5248100000000002,3.6341416666666664,3.6341416666666664,4.251565,2.23845,2.9815199999999997,4.2386,1.70764,3.2018166666666663,3.2539466666666663,3.20353,2.831,3.82671,3.01592,1.7550025,3.5324333333333335,2.11011,2.9300599999999997,2.0059400000000003,3.08432,3.00405,1.4232585714285713,1.5415,0.43323333333333336,1.3034383333333335,0.43323333333333336,0.43323333333333336,1.5415,0.43323333333333336,3.2840433333333334,3.046322,3.046322,2.9891633333333334,4.756535,4.49893,4.58682,5.32335,5.11555,3.471205,4.1275,4.47227,2.119215,2.527173,2.7212633333333334,0.8001927272727273,5.60985,3.29975,3.046116666666667,5.3973,3.7632125,5.1273,3.29438,2.58256,2.936765,3.245065,2.467146666666667,2.727453333333333,2.0460966666666667,5.55925,0.93925,3.99647,1.2192942857142857,3.616435,3.094606666666667,3.01273,4.298955,4.247585,3.89262,4.660555,4.051885,3.98708,4.483795,4.210505,2.4874575,2.637975,3.4194999999999998,4.15952,5.60815,3.727235,2.66891,3.233455,3.1314966666666666,3.438005,4.01608,5.01905,4.28613,69.27428477799978,2.7505758333333334,3.458185,17.316022333333333,4.025655,3.150093333333333,2.172966666666667,1.8347499999999999,2.42374,4.6141325,3.0899099999999997,4.1994074999999995,6.9056,3.290835,8.136975,5.2228,2.79656,3.275075,4.067475,3.598785,1.847918,1.20834375,4.59669,2.805235,5.953631666666666,3.738525,2.8111433333333333,3.43434,4.51414,4.49294,3.3376,5.588005,4.421085,3.570905,2.91781,2.3866075,3.210485,5.9583,3.35803,3.744055,4.33839375,1.1435166666666667,2.791555,5.38983,3.78587,3.388355,3.66553,2.907195,4.556655,3.13857,3.380335,3.423625,4.340535,3.193745,2.74881,4.40004,8.973565,3.1992366666666663,4.102335,5.88851,3.06578,2.84735,4.06258875,2.20588,2.965263333333333,2.926328,3.608965,3.282425,5.52405,3.249865,3.30563,4.013235,3.854755,4.25012,4.30228,3.62625,3.92586,2.696626666666667,2.696626666666667,6.684184999999999,1.802245,3.331885,3.670155,2.56079,4.60986,4.13051,3.09468,3.163335,5.7508,6.7178450000000005,0.7361881818181818,4.791675,2.415845,2.90157,2.66213,5.22385,2.7623599999999997,2.035445,1.14353125,2.0992913636363637,4.081555,4.612885,4.0982,6.5505,5.20965,6.0248,2.55669,1.8100766666666666,4.51122,3.35784,3.2163466666666665,2.1804366666666666,1.2374933333333333,2.6603133333333333,3.09857,1.661104,2.468323333333333,2.4207082857142854,3.5463325,2.683575,5.00775,3.32942,1.525395,4.849955,3.579175,5.4093,5.00065,5.3525,4.67892,1.9465766666666668,1.4342266666666665,0.6108828571428572,1.5069800000000002,3.53815,2.4895,3.5953999999999997,1.42108,2.541375,2.30028,3.338355,3.490015,3.817805,4.009059166666667,1.6112925,1.41161,1.9161325,2.105285,1.4143225,2.691325,7.11490775,4.78283,4.378425,2.84841,8.01869,4.879225,3.0653,3.02572,3.41173,2.725855,3.72805,2.2845866666666668,7.16866,0.8890066666666666,3.012545,6.5612,3.994355,4.63618,5.67605,1.6052533333333334,3.1649,3.175753333333333,2.855923333333333,1.758395,4.003245,8.6523,3.45745,5.20745,4.08565,3.47336,4.674665,0.8929999999999999,2.754163333333333,5.4237,6.642059999999999,4.774345,5.9514,3.028785,3.713533333333333,2.6278200000000003,5.09245,4.901775,5.0189496190476195,5.0189496190476195,0.8082242857142857,3.8229,0.889592,0.9108883333333333,1.81034,3.7251666666666665,4.348806,6.030891714285714,3.0749633333333333,4.031725714285714,3.6455257142857143,3.2256366666666665,2.756933333333333,4.554,3.4781441666666666,1.9451625,1.9451625,3.86955,2.9867899999999996,2.728763333333333,4.13415,3.419866666666667,0.6333677777777778,3.4076,2.4057666666666666,2.79789,2.6258733333333333,2.619475,2.8162233333333333,3.1574866666666668,2.93225,0.8574759999999999,2.7361,6.293129904761905,2.19074,7.671564166666666,1.502458,1.502458,3.3589176666666667,3.2739666666666665,3.370033333333333,3.1852933333333335,1.75666,1.4047242857142856,3.0561566666666664,3.514866666666667,1.4876800000000001,1.5137571428571428,2.8404066666666665,2.63631,2.814693333333333,1.877195,2.0870925,2.973155,2.221835,2.70832,3.350455,1.533065,3.574605,3.294285,7.00567,4.102015,1.766155,3.80865,3.10198,2.06517,4.196915,2.764946666666667,2.62133,6.49817,0.8093076923076924,0.6387775,4.84797,1.509978,1.509978,3.69194,2.240225,4.609135,3.55724,1.2270966666666667,2.396438,2.83361,2.3521513333333335,5.20835,2.963845,2.5308433333333333,2.36954,1.5568042857142856,1.5568042857142856,2.3930599999999997,3.89749,3.9684000000000004,5.9147,3.2866466666666665,5.1219,4.33993,6.8019,4.09078,2.819245,2.725076666666667,2.62637,2.696963333333333,0.7022977777777778,0.7022977777777778,0.7022977777777778,3.203925,4.413835,3.665895,0.9828925,0.9828925,5.27305,6.1144,6.92046,22.18794411111111,11.7905,8.04618,3.233435,5.7618,2.3423625,4.75356,2.5082999999999998,3.3369666666666666,4.099566666666667,5.464528,1.98466,1.64007,7.67563,2.27456,2.27456,6.4831,3.308955,4.075495,2.1901275,5.153295666666667,4.645745,4.091355,5.3887,3.85988,1.4417533333333334,6.2996,8.75604,1.4417533333333334,2.1901275,2.0768833333333334,0.794848,0.794848,1.777136,2.2802266666666666,1.777136,4.49875,5.85745,6.0728,8.59585,2.1901275,11.633251833333333,6.3742,5.50505,2.3423625,3.058675,4.65676,9.08788,3.017011666666667,3.96119,5.70235,3.28108,4.695335,6.0091,4.56181,5.10265,4.522245,2.582865,5.6134,3.68308,4.626265,4.44453,0.79544375,1.6133359999999999,2.965175,5.4492,5.0199,2.88817,2.24579,4.391465,4.763475,5.65785,5.0015,5.2535,4.27114,3.862535,4.314355,3.675485,2.0178025,4.7795425,1.934785,2.57785,4.016535,2.212056666666667,3.86149,4.57758,3.72077,5.0271,2.922255,6.621121666666666,0.9261111111111112,3.43481,3.018205,1.408834285714286,5.765024,1.573425,1.7079133333333332,2.833353333333333,2.696749,2.967613333333333,2.8770866666666666,2.099225,0.7711372727272727,2.2516766666666665,2.508685,4.080685,0.7458253846153846,7.551613333333333,1.8110633333333332,1.13644,3.6293333333333333,1.13644,3.83852,0.8870836363636364,4.32682,3.178123333333333,1.56048,4.395587,4.350712,4.350712,4.986325,2.5979,3.070498333333333,2.51041,1.620954,3.791105,4.086795,1.9885400000000002,0.8009816666666666,7.7540237179487175,2.73526,3.69672,4.34045,7.52185,2.680275,4.10992,3.827755,3.15289,3.80242,5.7099,6.33488,4.289115,4.96101,5.2522,3.0397266666666667,4.622615,4.359155,4.56108,1.1064611111111111,0.47794285714285717,3.13935,3.4407333333333336,2.7775733333333332,5.4404,3.810245,4.226765,4.930205,4.95011,4.248195,4.573905,1.18984,2.27761,9.007933333333334,2.1816866666666668,1.93042,4.263905714285714,12.158872261904763,1.5133825,5.1152,6.18845,4.9081,3.3679666666666663,2.24394,3.2501200000000003,3.944865,1.0908983333333333,3.5119333333333334,3.528715,0.4005842105263158,2.0848566666666666,4.87031,4.485535,2.176155,4.22402,3.16306,4.8459908333333335,1.2253533333333333,0.5949218181818181,3.6206375,1.236667142857143,1.09884625,1.09884625,1.09884625,1.09884625,1.6577166666666667,2.6271666666666667,2.6233133333333334,3.4304,5.55915,3.5057666666666667,5.1103,3.71728,4.360455,3.61493,3.86051,1.46133,7.457065,2.48162,5.0143,5.259546666666667,4.822215,4.9882975,2.9549866666666667,2.50706,2.675933333333333,3.329385,1.1924166666666667,5.373476666666667,2.583956666666667,5.0064,2.76843,2.470943333333333,3.77998,3.975025,2.90939,2.4893199999999998,2.7940833333333335,1.444625,0.42281888888888886,4.56109,3.33622,4.140935,3.6538,4.051605,6.115,4.4236,0.5627992307692308,3.342262,7.475702,2.07,2.06344,5.645536666666667,5.64115,2.8307966666666666,4.651855,5.5049,4.234395,4.63875,4.27071,5.12415,5.1828,5.1431,3.700285,5.4257635,1.490284,1.6072300000000002,4.46469,4.022115,4.857215,3.181515,5.3008,5.3991,3.90463,3.407075,16.720912107977853,1.3110985981808452,1.22735875,2.019721477272727,0.49948625,0.49205400000000005,1.4657375,0.3289764705882353,1.245008,2.956436666666667,1.4483739999999998,0.9654416666666666,1.0658891666666668,0.4836066666666667,1.0658891666666668,1.0658891666666668,0.4836066666666667,0.8522,0.6987992857142856,2.852445,2.876556666666667,3.93242,4.592965,2.8123966666666664,2.71285,4.022855,4.943315,5.3704,2.891475,4.45319,0.7352857142857143,2.3936019999999996,8.664325,4.387665,7.12872,2.66538,4.18857,2.29742,5.1205,5.117,3.088555,4.18582,3.160605,0.9911866666666667,4.009895,5.1232,0.972332,1.299468,1.61858,2.3326,2.3711066666666665,5.06145,5.4083,2.1990575,2.1990575,3.5933825,6.71329,2.0890366666666664,0.6472527272727273,0.7754471428571429,2.1620399999999997,3.4460333333333337,0.93997,0.93997,0.93997,0.3577707692307692,1.038492857142857,3.109175,6.1533,4.045233333333333,4.2900575,5.28065,1.0377100000000001,3.5475999999999996,3.3046866666666666,4.077166666666667,5.86835,2.65076,7.6322833333333335,5.1227,1.1452222222222224,3.8633333333333333,1.824988,2.796315,2.2672733333333333,6.806078333333334,3.041453333333333,4.470785,2.3553,3.91583,4.391475,4.470315,0.45233,3.3683,1.3897366666666666,2.418343333333333,4.119436666666667,2.0621733333333334,2.84034,2.3120933333333333,2.453606666666667,2.52123,2.6857733333333336,2.5859833333333335,3.141916666666667,1.5043,2.23149,2.56867,3.1191866666666663,2.620293333333333,2.1541675,1.7934066666666666,1.7735733333333332,1.7656,3.12731,2.280463333333333,2.4925666666666664,2.1516433333333334,2.34207,2.55777,0.78932,0.78932,0.78932,2.5207200000000003,2.351926666666667,3.1307233333333335,2.9502566666666667,2.64341,2.1065033333333334,4.056165,3.3788916666666666,1.3178316666666667,2.635946666666667,2.9307966666666663,3.4181566666666665,1.6916571428571427,7.210288333333333,4.718175,3.111465,4.009575,3.40351,1.604505,0.610905,2.954045,3.841405,3.4181566666666665,4.67838,4.36241,5.2007,2.9284499999999998,4.01178,4.189175,0.9225199999999999,2.890845,3.21667,4.870632499999999,4.637835,3.551985,3.288755,2.700635,2.57082,2.5888466666666665,0.6236208333333334,5.36225375,2.662975,4.40492,2.806203333333333,3.6301133333333335,3.1868866666666666,2.3788466666666666,2.900007,2.900007,2.58316,2.5315333333333334,2.4695566666666666,2.11336,4.07796,1.3611739999999999,2.59954,3.907065,4.190375,3.92285,5.21255,4.06827,2.5401,2.054905,3.57863,3.44166,2.75924,4.79758,2.85602,1.0728071428571428,1.0728071428571428,4.379895,3.686727,0.893472,4.413445,0.893472,3.951625,3.736385,5.04955,3.51193,3.27817,6.398695,4.2274125,6.0052,0.9016000000000001,0.9016000000000001,2.23508,4.738348333333334,1.5481983333333333,3.19015,3.774885,1.13032,4.444155,4.00862,5.968,5.968,1.064945,5.11285,5.01725,4.85347,6.1407,2.262145,2.262145,7.0897,0.9605727272727272,7.1759,1.92829,6.30076,2.65532,2.482536666666667,3.4673,2.1917,2.0762199999999997,2.4001533333333334,3.027566666666667,2.716365476190476,6.71384,1.956406,5.3944,3.154833333333333,2.6993266666666664,1.769515,2.22755,3.270015,3.36724,3.791285,2.63544,2.209215,2.23658,2.496165,1.046624,3.70772,2.29691,3.15557,2.033447,2.033447,3.031495,1.9544033333333333,3.726295,3.661405,5.3297,7.382833333333334,4.350365,3.426845,6.366678333333333,2.24742,3.30422,2.205103333333333,1.6006714285714287,1.7597425,4.75561,1.5973899999999999,0.49693,0.6280783333333334,4.667775,4.604595,2.80592,1.03018,2.89102,2.96673,4.99362,1.8775559999999998,1.714315,1.2143666666666666,4.546615,2.68225,4.231295,0.7046129999999999,4.148920833333333,5.02805,4.411685,4.60717,3.48683,3.70658,3.0332033333333333,5.3346,3.62925,2.4016866666666665,2.61458,6.292576666666667,6.3942950000000005,0.685545,4.492015,4.15438,5.23715,3.8860333333333332,3.8684999999999996,2.976475,3.0834799999999998,3.9827666666666666,6.2369075,2.63631,2.4763325,3.86948,4.388435,2.35559,2.616975,8.382213333333333,4.80546,2.1366666666666667,4.896315,4.523655,1.777314,3.869955,1.4764875,1.7393857142857143,4.33382,3.595315,5.833,3.379,4.2722,5.1324,6.43925,4.671715,5.4548,4.975635,5.72175,4.497765,4.48999,1.1946226923076924,1.1946226923076924,8.28947,0.9472475,2.1470255555555555,0.9472475,0.74822,0.3565655555555556,2.8952455555555554,2.50729,0.57905,2.1470255555555555,1.922445,3.455985,2.316195555555556,3.39645,4.85224,7.608785,2.057235,1.98094,2.334325,4.777465,5.68505,1.87691,1.6418825,1.12184,2.7637225,4.154585,2.648335,4.331415,6.3278324999999995,0.4703177777777777,3.90417,0.735456,2.9755933333333338,2.4319275,3.670465,1.2648916666666665,4.20984,4.5556325,4.208255,3.157235,3.95206,5.737555,1.77757,3.50755,0.59487,2.585725,2.54517,1.059688,3.09747,2.4672566666666667,2.5173166666666664,4.843725,9.64707,3.554542727272727,3.645875,4.524445,8.076145,5.708374166666667,3.4699000000000004,4.030385,3.39872,5.89885,5.2563,5.7784,4.5576,4.54536,6.1029,2.556313333333333,1.7112,1.94681,2.28837,4.063915,2.4869166666666667,0.25174405405405403,0.25174405405405403,0.25174405405405403,31.15845319047619,0.25174405405405403,2.872594054054054,0.25174405405405403,0.25174405405405403,0.25174405405405403,3.437160720720721,4.12996,0.25174405405405403,0.25174405405405403,0.25174405405405403,0.25174405405405403,0.25174405405405403,3.206605,5.34929,3.119385,0.33545128205128205,0.33545128205128205,4.40322,4.17373325,4.161047916666667,3.4157824722222223,4.063149523809524,7.981533333333333,11.22477185159285,6.33086,7.935366666666667,7.542627178571428,2.8066366666666664,5.981584761904761,4.302826666666667,4.581026057692308,0.33545128205128205,7.762879999999999,6.679966285714285,7.104358333333333,2.687725,9.32072717857143,15.498324821428572,18.291439935897436,57.76283981179931,119.98989331822344,1.40113,3.4111,3.2103,3.8721305984555983,0.33545128205128205,1.646255641025641,8.521641458333333,14.511825011904762,20.02151611111111,49.06943427192982,13.478318511904762,2.7653,0.3017403448275862,0.3017403448275862,4.441766666666667,2.7507300000000003,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,8.1369,0.3017403448275862,0.3017403448275862,0.3017403448275862,2.85784,1.9307266666666667,4.23586,3.594905,4.37859,5.60865,2.5565,4.281465,4.593485,3.16455,1.5024533333333334,3.668355,1.0266816666666667,2.2211175,2.2033366666666665,5.16158,6.091363333333334,2.9792533333333338,5.946318722222222,0.48356611111111114,0.5322546666666667,2.50894,2.9048766666666666,3.068535,4.50557,3.3781,7.65014375,3.714765,3.30932,3.346475,4.112295,3.44237,3.19652,5.5067,2.99117,0.44898076923076924,0.888119090909091,4.39553,1.7792475,3.84194,3.782775,4.503365,3.471375,2.631275,2.755845,0.5934033333333333,0.8189120000000001,4.23767,2.60663,4.976975,3.867645,4.1453050000000005,3.037395,3.417185,5.4056,5.81915,3.241305,0.9100818181818181,3.2606300000000004,4.433225,2.16363,0.9866875,1.7675400000000001,3.626195,6.0024,1.662075,3.060745,3.963675,4.900545,2.40893,2.4705866666666667,2.31343,4.35332,2.286665,3.94916,0.7071957142857144,2.566926666666667,3.289005,1.729935,5.935451666666667,4.269485,4.31898,5.24395,2.781215,2.08943,0.7720127272727272,4.962565,4.305665,6.07965,2.902365,5.395,4.931035,2.93893,2.82586,1.2866771428571429,5.18445,1.996155,2.7597,10.488205,4.27381,5.198,3.36948,1.0202622222222222,3.10141,1.2574771428571427,3.187145,6.55015,5.28805,5.0652,3.97183,5.34885,4.373315,1.7798825,1.6828566666666667,5.19565,2.952026666666667,3.3282366666666667,2.385815,4.92807,4.46162,1.486085,3.4517,2.724945,2.71995,4.42541,9.51129,4.47783,1.75872,4.6799,6.32828,4.545135,4.135895,3.727765,4.071915,4.69417,8.246255,2.3887533333333333,3.144355,4.21225,4.399535,2.893595,3.16584,4.790735,4.044285,3.49051,4.502606666666667,18.602463999999998,2.8074333333333334,2.49502,3.3127066666666667,5.535014,1.0767375,4.573945,1.9618808333333333,4.95641,1.4762366666666666,4.42955,4.282345,3.89284,0.95645,4.61839,4.629975,1.5647825,5.119325227272727,4.920385,1.1733785714285714,3.740565,2.01099,2.454585,1.568865,4.263985,3.780515,4.819975,3.64129,3.029146666666667,4.12352,8.041305,4.47772,4.16113,5.2142,3.1923166666666667,4.00918,5.31645,6.658372,0.906832,0.906832,4.456675,5.23315,2.2505166666666665,1.3956233333333332,7.30071,4.041695,3.42125,3.9356,4.760555,4.51042,3.47759,4.11698,6.60155,4.139153333333333,4.56392,4.82534,1.5604142857142858,2.794275,4.460135,5.019,3.61043125,0.19334194444444444,1.8705175,2.2803825,2.49143,2.0823833333333335,1.023958888888889,1.4394775,1.3623225,2.4434566666666666,0.6470622222222222,1.2801285714285715,1.95687,3.859435,4.009933333333334,2.402626666666667,3.015833333333333,3.0049499999999996,2.8097266666666667,0.663618,0.98873875,3.529215,4.762485,4.332515,3.570895,4.396135,4.83151,4.99531,2.1878599999999997,4.243215,5.05005,4.551025,6.3985425000000005,4.400435,0.49608176470588233,5.73055,4.74236,4.438365,5.3061,3.23813,2.04102,3.992425,4.43654,3.108935,5.284883333333333,4.347045,1.3995566666666666,5.284883333333333,4.312405,6.795405,3.682875,1.2416333333333334,3.847335,4.815965,4.5634,2.8145666666666664,5.18285,1.47719,2.028865,4.171885,3.63814,0.8111177777777778,4.530035,4.705335,3.776725,4.211125,3.211953333333333,3.05818,1.857284,2.08567,3.04631,3.658045,3.6976333333333335,2.4275933333333333,2.58755,2.1120993333333336,5.34735,1.6632142857142858,0.8319222222222222,7.02664,4.56456,1.522724,2.8962833333333333,2.5377899999999998,3.2803299999999997,6.997354999999999,2.410313888888889,0.821493,2.48877,5.0138,2.6142499999999997,4.059695,5.7225,5.4577,4.69132,4.251965,5.4153,2.2232133333333333,2.2235,1.6330966666666666,2.133643333333333,1.8890375,2.88667,2.287056666666667,1.7014925,2.62039,2.97283,3.42724,6.4684,5.60255,3.970515,4.62857,3.990545,4.50681,4.906375,0.90709125,2.861603333333333,5.65415,1.147402,0.7257866666666666,4.971615,3.72466,2.601053333333333,3.49255875,6.529814999999999,4.675595,1.0230000000000001,1.2199757142857144,0.7014366666666666,4.0550299999999995,2.21126,2.7609999999999997,1.1667314285714288,3.352233333333333,2.804266666666667,5.4662,4.863165,4.46017,5.47125,3.98852,1.3493933333333334,3.623185,2.0101533333333332,3.62956,4.39466,3.741715,2.8449666666666666,3.3799333333333332,2.86607,5.80225,4.136755,3.257515,2.49847,8.399180000000001,10.193872500000001,4.326695,1.3189914285714284,5.27405,4.63101,5.27035,4.3681,4.572955,3.880325,3.402445,4.14714,3.5642003124999997,5.95436,3.765285,3.777275,4.53959,1.963936,4.968365,5.86275,4.74041,3.276325,3.2545149999999996,7.142825,0.7046450000000001,2.76685,2.738106666666667,2.3584466666666666,4.97866,3.27823,1.3197750000000001,4.437435,3.422966666666667,3.79501,4.70544,3.8216533333333333,6.65076,3.0586333333333333,2.971966666666667,3.433533333333333,2.8546600000000004,4.203545,2.4545833333333333,2.1107833333333335,3.03433,3.992865,3.674965,1.9155675,1.4868175,3.4242925,3.058267,0.9603833333333333,2.7846533333333334,2.7846533333333334,1.2456275,5.58725,3.461535,3.353145,3.458065,3.686125,3.40561,3.29842,3.189,3.228885,2.122993333333333,0.5733720000000001,3.23338,5.874815,3.113465,3.695605,3.10856,4.05853,4.127415,3.38997,2.635435,3.87835,3.58235,3.10896,3.63589,3.77154,2.601156666666667,4.13851,4.210545,8.88328,3.709,3.63968,3.405545,4.035485,4.037415,3.641665,2.286315,3.504315,2.6512175,3.142285,2.93379,3.17034,3.844675,1.7265,1.7265,2.203735,3.17371,3.431785,1.5582179999999999,2.326165,3.24923,1.84644,2.940695,1.5582179999999999,4.759375,2.98476,3.9943797500000002,2.830165,3.3097,2.27234,3.5072,4.02096,4.69424,3.121925,4.46822,4.043625,4.2247,3.55415,2.960555,3.24901,3.010575,3.86541,2.6141466666666666,3.72791,5.29185,3.901725,3.755115,0.33646521739130436,3.668255,0.4174966666666667,3.92189,3.74287,2.88759,3.860385,4.076255,6.053518333333333,3.123125,2.5860066666666666,2.334346666666667,2.7379833333333337,0.658054,6.550638333333334,3.10219,3.36354,4.424445,1.90405,2.4426,3.261265,3.25479,6.696055,4.342545,5.10605,4.80835,4.73968,4.32862,4.02583,1.5382566666666666,1.6374520000000001,3.933825,4.46676,5.69888,2.5565533333333335,4.627065,2.142455,3.4385,3.49626,1.9404885714285716,3.980845,4.4755375,3.5150333333333332,3.829333333333333,3.20464,4.579965,5.3138,3.3915,4.32823,4.79242,5.00225,4.665535,4.50945,4.40804,3.39112,4.471135,2.587925,3.3260133333333335,3.3260133333333335,4.485465,2.7383400000000004,3.641785,2.86871,4.701435,3.4255999999999998,3.48897,1.884135,1.70673,1.1836916666666666,1.1836916666666666,1.75918,3.619733333333333,1.7072633333333334,3.2066466666666664,4.458955,5.1305369999999995,3.4574,4.86791,5.79891,2.61666,3.37272,3.0943233333333335,1.5695033333333335,4.37739,4.30865,6.528115,1.6761966666666668,5.61615,5.5469,3.3302133333333335,3.3625,4.54375,6.69685,2.171323333333333,2.297665,3.83853,0.50209,4.46415,3.98735,4.69613,4.261145,3.473875,1.617964,1.795176,3.91663,3.99448,2.3608766666666665,4.133075,4.517205,4.86619,1.20809875,3.534655,4.27958,3.67212,5.01045,3.1420866666666663,5.791941666666666,3.75108,1.526496,3.63129,1.2237666666666667,2.8206100000000003,7.4885866666666665,3.33327,0.7899472727272727,3.320755,4.55402,4.117295,2.3193175,2.3193175,4.703685,5.81865,2.881775,0.47354333333333337,1.9867325,4.385315,4.766485,4.375365,1.767454,2.9242166666666667,3.28981,1.2591876315789474,1.2591876315789474,1.2591876315789474,0.7514784649122807,1.3369934649122808,0.585515,1.2591876315789474,0.7514784649122807,0.24190263157894734,0.8274176315789473,0.24190263157894734,0.5095758333333333,0.5095758333333333,0.5095758333333333,0.5095758333333333,1.1050293333333334,1.19604,2.3245666666666667,2.359655,1.1247716666666667,6.2326983333333335,2.657503333333333,6.088658333333333,2.6271133333333334,3.518585,3.032825,3.29532,2.7397758333333333,4.74626,2.7567133333333333,4.182805,3.992895,4.967345,2.357725,4.905735,5.09725,4.002225,3.229805,4.91308,3.33316,4.510215,5.328,5.07915,6.2374,5.17265,1.3005625,4.481295,4.244675,3.104015,15.01223,4.616655,5.388,2.7358700000000002,7.40667,3.833465,4.10832,4.810075,3.259765,1.0526275,2.517895,4.01012,4.25647,4.33361,3.218475,4.03512,2.88437,4.10046,4.602225,4.27175,6.752535,7.9715066666666665,1.5097,3.533755,4.155355,3.75784,3.69425,3.50702,7.13794,2.57478,3.236515,2.47229,3.946405,3.855215,4.55894,2.36147,1.736845,0.8762800000000001,4.864335,4.550015,3.98548,4.00623,3.44216,4.919785,3.93016,6.49305,5.5445,4.709995,6.53345,4.21091,3.17226,3.20224,3.37768,1.750285,5.35045,6.48365,6.54305,6.225558333333334,6.225558333333334,2.353835,1.750285,2.099795,2.888945,0.694975,1.5598100000000001,0.864835,1.5398375,2.84049,0.36850900000000003,2.85897,4.356865,1.5398375,3.0564704999999996,11.1190525,6.6200075,2.3618516666666665,1.05925,1.66251,4.33655,4.292305,5.762648095238095,1.9764975,2.25207,4.47153,4.06866,4.938785,2.0679166666666666,5.5215,3.496966666666667,3.304355,5.2994,7.280566,3.799275,2.3748,2.796416666666667,1.8010166666666667,4.63473,5.2002925,1.7768339999999998,5.64355,4.361835,6.1814100000000005,0.551296,4.838583333333334,5.1903,5.9853,2.599005,2.778525,7.20085,9.0323,6.03815,2.17205,2.17205,2.17205,5.99225,5.1063,6.4219,3.42971,2.59133,2.484792105263158,4.785835,3.42153,2.435631,1.873535,2.435631,6.807501,4.549503333333334,4.218406666666667,6.53816,4.218406666666667,4.218406666666667,3.12289,6.75457,5.48036,2.95932,2.95932,2.512195,6.6342,2.808235,3.531425,5.483083333333333,5.483083333333333,5.483083333333333,7.95689,3.60593,3.28629,3.6088875,3.4865425,0.9242,7.35587,2.806366666666667,6.07635,3.455425,13.165275000000001,4.726555,5.4815933333333335,6.75728,2.590516666666667,3.39806,1.1029266666666666,5.4815933333333335,3.375945,1.6718,1.6718,2.97075,5.20026,1.6847225,4.574033333333333,0.800422,1.3564233333333335,0.800422,1.98265,2.4851444999999996,5.210147,3.62846,1.3564233333333335,3.192595,4.8748725,1.0153175,3.30035,4.25978,2.092985,4.081578333333333,2.717725,3.15396,3.22187,0.9146559999999999,3.69193,2.968195,1.889465,1.55804,2.917845,3.98027,2.7338,3.8564,1.3346533333333332,1.3346533333333332,1.3346533333333332,3.584985,2.68747,2.68747,2.6822,3.955835,2.2108033333333332,1.2787525,1.2787525,3.1228,4.3558525,0.8574325,1.5021766666666665,2.92298,1.3935966666666668,2.895773333333333,0.9146559999999999,0.9146559999999999,1.7622750000000003,0.9146559999999999,3.0239016666666667,0.8334466666666667,3.0239016666666667,5.953759166666667,3.307285,2.365603333333333,1.7484113888888888,0.7202700000000001,2.4686813888888888,3.465095,2.4686813888888888,0.9258288888888888,3.310115,3.89559,3.88851,3.08565,2.71976,3.76133,1.8217766666666666,0.9834613888888889,0.4537725,0.9834613888888889,0.5296888888888889,0.9834613888888889,0.9834613888888889,4.68344,4.60227,5.74445,3.41507,4.587,4.782395,5.3377,3.479745,4.13726,1.2978885714285713,2.66637,4.5336549999999995,3.77441,1.2817666666666667,2.7587499999999996,4.15528,3.85566,4.26705,3.670835,3.896195,3.688095,3.02503,4.51698,2.52083,5.8151,3.624755,3.99397,5.463090714285714,1.1942317142857144,2.072335,3.182755,6.84334,4.617175,4.397675,3.1523633333333336,4.676725,8.194641666666666,3.501633333333333,3.082695,3.3800666666666666,5.4168,4.15623,5.7486,5.4813,6.7859,3.20779,5.2384,4.642785,3.252963333333333,4.12057,3.383766666666667,2.31769,2.4160666666666666,4.98729,6.46365,5.6968,5.81775,4.34902,4.835485,5.71535,0.5437276923076924,7.368895,4.460245,4.257255,3.797965,4.881515,4.162925,3.217216666666667,2.491065,1.3737133333333331,0.5958338461538462,1.889872,2.9292233333333333,4.150405,4.430425,4.89927,3.93444,11.509536666666666,3.753165,3.832805,2.843605,0.7352216666666668,5.67075,2.7385633333333335,1.4925466666666667,4.23111,5.8323133333333335,3.09375,7.78779,4.74879,3.074912,3.074912,3.074912,4.904765,9.04153,3.76812,3.00705,3.00705,3.04169,9.67625,1.02957,5.02005,4.36112,4.212455,2.8425433333333334,2.1888733333333334,4.36345,3.843145,6.104,5.905133333333334,3.878025,2.783775,3.797835,4.2965725,3.42232,1.3616125,3.3530333333333338,5.90745,3.3266825,4.742155,0.97872375,3.7449,2.6621833333333336,2.550473333333333,1.7782375,1.7431833333333333,2.0609266666666666,6.05075,1.997985,4.3137,5.94415,1.956406,4.841145,3.96133,4.795945,2.8602000000000003,2.15707,2.72828,4.457495,3.981628333333333,3.981628333333333,1.1479275,1.55479,2.870763333333333,4.394543,2.284781818181818,4.879583333333333,1.7246099999999998,2.73644,2.13142,1.677645,1.677645,4.6814,7.407836666666667,1.87077,3.0569900000000003,2.2809225,5.4139,3.17752,0.739266,2.806365,0.739266,2.593235,3.49069,5.2613,6.0831,3.75189,4.8980999999999995,5.8956,2.327075,1.8452400000000002,2.5130333333333335,2.1813933333333333,6.05695,4.76002,2.44781,3.94149,2.721395,4.27583,1.0844425,1.07352,1.9731133333333333,1.5436333333333332,2.5328933333333334,2.8090466666666667,2.2501166666666665,3.2767766666666667,2.952885,4.284005,2.54379,2.5932833333333334,2.7272933333333333,2.3506266666666664,3.0471066666666666,2.74068,1.9331466666666666,2.4790966666666665,3.61879,3.79072,3.45095,3.576305,2.9048533333333335,2.29298,2.12796,1.4379683333333333,0.330226,0.18193152173913044,2.1062366666666668,2.2227799999999998,0.18193152173913044,4.530130688405797,2.3652625,0.18193152173913044,5.914500833333332,2.494136666666667,6.12944,3.407115,3.5298,2.4812133333333333,2.9636600000000004,2.273095,4.27006,3.10069,3.3701333333333334,0.4473936842105263,4.025543333333333,2.57492701754386,3.002115,1.74763,2.5836,4.172795,2.89117,7.807259999999999,5.3485,3.449935,3.697545,6.15099,5.93303,1.8062233333333333,3.9530175000000005,2.02415,1.91935,6.20295,8.79629,1.1604466666666666,2.08499,3.629655,2.6887,2.93808,3.216445,2.73877,3.975635,2.31026,2.9635,3.23588,3.197015,7.60872,1.3356000000000001,1.86078,3.05729,3.374895,1.6432033333333333,3.326315,1.4112,3.769635,3.399285,6.84744,3.352225,8.9026075,3.77013,1.579414,1.61596,3.052925,6.02546,1.866325,1.43757,5.46245,3.41952,3.95931,2.72429,2.0080133333333334,3.09878,10.49253,5.06014,6.27706,3.40041,2.008135,2.104235,2.919375,2.72985,3.476705,1.8164,1.51876,2.4547766666666666,3.647345,1.7822675,3.200875,2.61655,3.720795,3.725425,3.038305,1.2865216666666666,2.551125,0.9853866666666667,1.322992,1.55315,3.300815,3.40018,3.653835,2.98533,3.8078,3.89344,2.910545,1.490858,3.433145,3.6004924999999997,3.148035,1.691775,3.101715,3.702465,1.546385,3.464765,1.5312000000000001,3.976865,4.025725,4.89398,2.549245,4.11619,1.73609,3.98411,5.0196,1.689505,1.052042857142857,3.977233333333333,2.572625,4.426145,4.169155,2.9999,4.62409,4.55147,2.1989533333333333,5.27645,5.4340625,6.6141,4.36933,6.431988333333334,3.805375,1.6093333333333335,2.728066666666667,4.4811,4.99272,2.7224733333333333,7.349396,1.3303528571428571,3.6458333333333335,2.04583,1.708872,2.3085733333333334,2.76313,0.38597071428571433,2.8460699999999997,3.5818333333333334,3.672205,2.376885,3.3140066666666663,2.2152966666666667,2.502866666666667,2.1475675,8.94806,5.09495,1.7531400000000001,4.655865,2.3754968478260867,0.7117818205128206,2.8480733333333332,7.254913999999999,1.789134,4.76493125,6.141638333333334,1.9235775,1.6813175,1.4595425,4.69761,3.172865,4.56802,4.2121575,2.509603333333333,4.2729,0.904524,2.690837333333333,4.357095,4.040575,4.99818,2.984835,4.719175,4.53027,4.639385,4.980345,5.7802,5.3055,4.394875,4.698105,1.701784,1.912405,3.01035,3.36738,1.1967,4.38911,2.1755233333333335,3.3244066666666665,4.32489,3.151196666666667,2.8075533333333333,1.5040933333333333,3.1406899999999998,2.657491388888889,2.7278633333333335,2.891766666666667,1.87024,2.1839825,2.24398,3.830395,4.977815,4.036,4.608285,3.500155,2.244185,2.996455,4.85253,3.6226000000000003,4.598385,4.61123,2.48355,4.3745416666666666,1.7010366666666668,4.45206,5.029004166666667,6.13419130952381,4.418085,4.84402,5.49255,3.307923333333333,4.024765833333333,4.834145,3.329955,3.8226924999999996,3.466335,1.2926625,3.26734,1.62989,2.25013,4.3931,5.2666225,3.8226924999999996,4.26768,3.28293,1.5481983333333333,3.775975,2.061085,2.764946666666667,2.16877,2.66326,1.7261422727272726,1.7261422727272726,1.7261422727272726,0.6160272727272728,0.8505255555555555,2.2936338888888885,1.0077125,3.53448,1.70745,4.00032,5.3293,4.69288,3.308295,4.014135,3.41414,5.01255,1.85355,3.012145,2.56861,3.321365,5.816801999999999,4.404255,5.75535,4.14613,0.9735025,2.334035,1.3254466666666667,3.788105,4.067725,4.15355,5.55015,5.0626,4.98387,5.1173,4.19708,1.6675,1.4051483333333332,5.491093333333334,1.0230244444444443,1.16114,2.5370766666666666,8.49964,3.124305,3.68881,3.196515,5.69247,1.72801,0.9772233333333333,1.4757025,3.183605,3.523235,3.87861,3.727875,1.8727375,6.296245,3.01891,1.07979375,5.289,2.951943333333333,2.780616666666667,2.3638933333333334,3.8153,5.703409166666667,2.770723333333333,2.983276666666667,3.6908999999999996,2.6419133333333336,2.8088033333333335,2.860203333333333,2.64666,1.9354025,4.78655,5.0413,5.2806,1.0645155555555557,0.728249,3.722433333333333,2.69815,1.04333,2.5877133333333333,4.46451,4.362285,7.18413,4.74701,3.6506333333333334,1.734778,3.793185,3.689905,2.9119466666666667,2.519989428571429,4.228415,2.7685166666666667,5.126094,0.9371033333333334,5.19,1.676282,4.39602,4.3869,2.85852,0.988015,3.033225,0.406346,3.117615,6.52255,5.89595,2.876408,1.498606,3.7415000000000003,0.7794233333333334,2.4784966666666666,0.7794233333333334,4.02105,4.1897,1.44457,1.7759375,5.35815,1.83564,3.8333,3.809985,3.536535,1.2117,1.5526733333333331,4.11942,5.36975,5.28225,2.926328,2.452655,3.074025,1.6467825,2.5598,1.9667525,2.286005,3.881945,1.3462,1.3462,3.616945,4.782426666666667,7.9543091666666665,4.5714733333333335,7.14367,2.25674,3.99677,4.03482,1.604935,3.7525716666666664,4.23757,3.849575,6.0306,3.002105,2.39748,2.8297666666666665,4.135715,1.0996375,3.874875,4.717485,1.25766,7.958523333333334,2.88306,3.305345,3.1166258333333334,4.534725,4.302515,4.1737025,2.549653333333333,2.780613333333333,1.83553,3.6363,2.439985,2.21124,7.992319999999999,3.4495666666666662,3.1003266666666662,4.129875,23.379407184981687,0.6498213333333334,2.57544,4.38991,4.5672,8.27151,4.52482,4.41236,4.58518,7.311561666666667,3.524425,1.58668,5.182525,3.38494,1.148082,1.148082,1.148082,2.548115,1.71873,3.138555,1.507835,3.08059,1.6052533333333334,2.61076,2.55537,2.980005,1.507835,3.19841,2.513945,4.211836666666667,4.623635,5.25305,0.8008325,3.25048,2.794945,4.817675,4.069925,2.88971,2.29632,1.673975,2.0735425,1.421462,3.778005,1.602535,4.75102,11.407619333333333,2.7920466666666663,2.43863,4.72966,4.386066666666667,4.404466666666667,6.3234,2.1275333333333335,5.708374166666667,4.35186,1.2384549999999999,1.1771457142857142,6.510553,4.42884,2.156915,4.075025,1.85443,4.492185,4.9353,4.497455,4.093305,1.3261971428571429,4.47422,4.963175,4.569865,6.375413,3.714655,5.48745,4.63705,4.29174,4.951725,3.4647,4.991895,1.8324225,3.546085,3.296265,5.18715,4.52803,6.0724,4.693855,2.66494,3.4418,8.70604,4.77632,3.161433333333333,3.82797,3.409225,4.51172,4.19233,4.79429,6.875655,3.769,2.6288666666666667,4.243344166666667,2.42565,4.447355,2.6934066666666667,6.493460000000001,1.555705,4.48564,4.9845,11.720085000000001,0.49586142857142856,4.589325,4.5009,0.667935,3.766135,4.198525,4.362845,0.9242319999999999,4.87159,4.862656666666666,2.6629033333333334,10.933523333333333,3.235196666666667,2.6603766666666666,2.7619,3.671515,5.99775,0.7416825,3.901425,2.07724,5.34715,0.720493076923077,4.13423,5.88265,5.5439,3.47569,6.3888725,4.40876,3.445265,2.4786033333333335,2.6933066666666665,4.25473,4.700135,5.0069,4.97682,5.1797,3.3086233333333332,6.935333333333333,2.807225,3.308675,2.3134075,3.58196,2.6700166666666667,1.5478066666666666,3.0272166666666664,3.4219666666666666,2.98832,3.583766666666667,3.5002333333333335,3.17693,2.6855433333333334,5.517,3.271943333333333,3.733975,4.991755,2.9741400000000002,1.1369111111111112,3.1432966666666666,2.90772,3.815615,3.2905833333333336,3.1599566666666665,4.716855000000001,2.03134,1.75017,2.898535,3.73007,4.77058,1.09005875,4.65269,3.35987,4.154933333333333,2.9925866666666665,4.8769715,3.918595,3.225585,4.515985,1.53687,3.79843,0.67639375,4.680625,4.90882,16.526013636363636,3.236496666666667,1.1720016666666666,4.51561,0.6442728571428571,2.634675,4.431595,1.86537,1.345562857142857,3.740445,4.44351,3.1191,0.6811633333333332,2.43928,7.74151,3.78128,5.758,5.30905,4.87328,3.6831666666666667,3.4127333333333336,3.3148166666666667,6.730801666666666,4.335255,5.21105,2.2892025,0.4668027777777778,2.08771,3.13059,2.424665,2.845265,4.59881,2.9672666666666667,4.67438,1.0606833333333332,4.76912,3.354405,2.815025,1.1200866666666667,2.97113,2.5206133333333334,4.724005,3.806755,2.175595,1.7253285714285713,3.759545,5.07425,5.1826,6.287128333333333,2.1801333333333335,5.0877,5.13725,4.39225,2.2224,4.34534,6.460016666666666,5.0315,2.59514,4.89229,3.212875,3.974415,4.017585,4.129125,1.3350333333333333,4.691815,2.4627866666666667,2.8233200000000003,5.1006800000000005,5.1006800000000005,5.08455,1.8021280000000002,4.85222,1.0436225,1.788926,4.846575,2.8165533333333332,1.4749299999999999,3.1687999999999996,0.860098,4.340933333333333,5.2669,3.152195,5.1046,4.137495,3.98095,5.29551,3.44902,3.615066666666667,3.04284,2.4131533333333333,2.8382,2.9592033333333334,4.16741,1.5328821978021978,3.0471,4.498075,4.92819,2.235657916666667,4.509045,4.989465,5.100356666666666,3.4859000000000004,5.31315,5.2897,5.66025,4.930545,3.837385,3.42354,3.503505,4.607215,5.21665,4.899065,4.99176,4.51008,4.50763,0.7243633333333334,4.777095,4.557505,4.0616,7.06127,4.315965,3.903575,4.08718,4.73108,3.88903,3.628795,2.1588275,4.4828925,2.1946975,1.3815714285714285,3.97321,2.111693333333333,2.4838633333333333,3.9684213333333336,3.3394,3.40987,1.3437033333333332,1.997245,4.03412,3.841165,1.92363,1.92363,4.09098,1.874762,3.10132,4.43077,3.640595,3.62215,1.4832466666666668,2.018155,3.5160583333333335,1.90261,4.855385,4.539905,4.48778,4.099605,8.11928,2.6372,3.8099,4.538845,4.311755,2.966343333333333,4.08097,4.29911,4.26119,2.14434,2.92374,4.527185,4.117735,3.697225,3.787195,1.6101375,3.52339,4.43571,4.479985,4.2565,3.8653725,3.8653725,3.1103425,4.417075,4.37469,3.957685,1.661498,7.936350000000001,3.96481,5.11575,4.371245,4.37509,4.323155,4.89882,3.19434,4.19579,3.75214,5.15815,2.10882,4.92173,5.493117777777778,5.20165,0.763404,4.79195,1.10822,4.89191,4.591575,4.794605,4.31202,5.4214,3.7671666666666668,3.7671666666666668,0.867188,2.2315425,4.85323,4.3592,3.836935,4.451825,5.3465,3.482325,4.26494,1.3605099999999999,3.4998,1.6236875,1.224945,4.310980666666667,0.917149,2.763313333333333,3.1620333333333335,1.1915933333333333,2.2216375,2.6455800000000003,1.259165,6.09395,2.19552,2.545786666666667,4.80798,2.031985,2.701866666666667,4.074445,4.715415,3.6399000000000004,2.9174366666666667,4.0427333333333335,1.671012,2.0822675,4.635725,0.64455,2.1562633333333334,2.4989299999999997,3.1472333333333338,2.8455733333333337,1.2611714285714286,0.853275,2.5457466666666666,4.050275,1.2351057142857143,2.0382575,1.193905,5.719503333333334,2.34337,5.1346,4.57724,4.481455,4.713685,5.27525,4.129855,4.39445,1.49684,3.992766666666667,1.685826,2.69679,1.1622914285714285,4.39828,2.1364125,6.485142,4.262565,3.72798,1.7039300000000002,7.036655,4.200165,1.4159566666666665,4.093535,3.02769,3.62806,3.34994,1.971175,1.971175,3.2368066666666664,1.605285,1.605285,2.2224,2.67582,2.1541675,1.3178316666666667,3.6081333333333334,1.07313,3.1900433333333336,2.47375,1.83632,1.4950616666666667,2.18894,2.2065425,0.27391058823529413,2.566225,1.2157983333333333,2.4547966666666667,2.13142,2.5401,1.05225,1.046624,3.5101333333333335,3.16081,1.971175,1.7792475,2.0171533333333334,2.5162366666666665,2.55546,1.8014160000000001,2.7477699999999996,1.14467,3.4194999999999998,3.536566666666667,2.48892,1.548522,1.127242,2.49857,1.127242,2.49857,0.73970875,0.73970875,0.504965,2.33773,2.5823533333333333,0.73970875,2.2230375,3.0299333333333336,2.2966725,1.7656,0.78932,0.73970875,0.73970875,1.6419000000000001,1.6419000000000001,2.1224425,1.7792475,0.73970875,2.27778,0.46098153846153844,2.827303333333333,2.047896666666667,2.8937333333333335,2.5493333333333332,2.5493333333333332,0.385988,0.385988,2.2224,1.995504,2.18704,2.06122,0.385988,3.6252666666666666,2.461795,1.7398060000000002,0.64885625,1.7398060000000002,0.64885625,6.76734,2.4602999999999997,4.098766666666667,2.867036666666667,3.20002,3.02158,2.896653333333333,3.5544,2.3866075,1.692805,2.8378,3.501633333333333,2.332613333333333,1.6419000000000001,2.429082222222222,2.429082222222222,2.7543966666666666,2.1306225,4.21443,2.403966666666667,3.5036666666666663,2.649966666666667,1.591352,2.4801925,2.26133,0.8160236363636364,1.6647775,3.821845,1.8168780000000002,3.344633333333333,2.8131500000000003,2.729825,3.942633333333333,1.653605,3.5576333333333334,3.1915999999999998,4.1286,1.25656,0.3017403448275862,1.2919957142857144,1.2919957142857144,1.0224655555555555,3.1608433333333337,4.077166666666667,2.6324799999999997,2.1290766666666667,2.1290766666666667,2.2226775,1.5312000000000001,1.03416,1.7457266666666669,1.7457266666666669,0.73970875,2.2224,2.795916666666667,3.594633333333333,2.47375,2.11066,2.11066,2.11066,1.067911111111111,1.6006714285714287,1.6006714285714287,2.4677325,3.258426666666667,2.7398854356060607,4.204655,2.57343,2.4818333333333333,3.636785,3.96161,7.495262499999999,3.80475,4.55935,3.7870333333333335,13.64029,4.63403,3.38589,1.04581,3.947615,3.289765,2.347325,3.719715,5.33515,7.367559,6.15655,0.5116052941176471,4.032855,2.94634,3.96711,2.4758475,4.514845,5.07955,4.358945,7.88757,3.394175,3.85899,4.192805,3.2524713636363636,8.087842461538461,3.2609066666666666,2.715973333333333,3.69827,3.92483,4.87661,4.042795,6.271641000000001,4.609945,1.350884,3.78384,0.891725,4.94017,6.0668,4.513255,4.412915,6.0276,3.043135,5.06765,4.013925,7.5647,3.91873,5.096985,3.5520333333333336,4.98538,3.010025,0.6445375,0.6445375,3.471225,4.11189,2.120075,2.33229,3.825725,5.7345,3.02303,2.221485,2.656025,3.404815,2.70829,1.1533275,4.0534,4.76867,8.72917,1.84742,3.127295,3.89705,2.98456,2.9058433333333333,8.30444,4.5408,3.557733333333333,2.8420566666666667,3.97062,3.547266666666667,3.0176166666666666,3.1459799999999998,3.630325,3.85552,4.23843,4.2382,0.39559466666666665,1.39903,2.25605,1.6987425,4.76818,3.669755,2.65238,2.26817,4.412485,4.09360475,2.3406375,2.515665,0.930642,2.6424,2.67708,2.67708,5.45295,1.92233,2.903226666666667,2.321406666666667,2.085033333333333,1.64673,2.995265,3.931765,4.241855,4.268825,4.782675,4.970375,2.8527,2.6266133333333332,1.90234,4.86068,5.598649999999999,2.44178,2.86012,2.0686225,2.2000266666666666,3.8638866666666667,2.5442666666666667,5.1265,3.794415,3.456545,4.432435,2.9527933333333336,3.59681,4.57559,2.3059533333333335,2.50575,0.40650928571428574,3.3703000000000003,2.6496033333333333,3.33081,5.98725,4.514855,5.760156666666666,1.78444,1.6418366666666666,3.009765,5.1793,6.278,5.386,3.027896666666667,2.2102533333333336,4.58435,2.32068,4.33727,2.44192,2.0768075,5.0492,4.5515,4.63433,1.74558,1.909395,1.064702,1.064702,1.444322,0.9238214285714286,0.898004,1.8714594285714288,4.499455,11.162050833333334,4.085365,4.502965,4.21066,5.837695,2.71018,1.6211166666666665,3.5367216666666668,3.01253,4.06772,2.2618,2.7228499999999998,2.8423499999999997,3.1346166666666666,2.275116666666667,3.180806666666667,3.3062733333333334,2.9570600000000002,3.4998,3.3885,2.9529366666666665,2.7610533333333334,3.12402,2.33212,3.082686666666667,3.1486366666666665,2.9443966666666666,3.347633333333333,2.1116599999999996,5.457707523809524,2.9969066666666664,4.185657333333333,3.2005166666666667,2.9624633333333334,3.7828666666666666,2.8229733333333336,2.9136366666666667,3.151783333333333,3.1741966666666666,3.3394,3.1834433333333334,1.956275,2.6791466666666666,2.7837300000000003,2.872425,2.872425,3.322983333333333,3.1666733333333332,2.547006666666667,2.86496,3.1586966666666663,4.193833333333333,2.7484566666666663,2.7251,2.4882233333333335,2.78458,4.366765,4.84075,1.8053333333333335,3.3304266666666664,3.7471666666666668,3.8373739999999996,3.16168,3.7298666666666667,3.4356000000000004,2.4877966666666667,3.4439019999999996,2.0348800000000002,2.757777,3.6250999999999998,3.4473333333333334,2.50248,2.5718466666666666,3.7749333333333333,2.9507766666666666,3.0443433333333334,2.4342475,1.2065816666666667,3.280796666666667,2.75627,2.1789333333333336,2.4372475,3.1107600000000004,3.1196333333333333,2.03432,5.666292666666667,2.39966,0.9388780000000001,4.504515,1.9276641666666667,1.6740833333333331,4.492165,3.92645,3.36102,2.439075,1.51655,3.339425,3.096925,3.517995,0.4396965,2.01934,0.4396965,1.918435,1.51655,2.70773,3.896505,2.64165,3.733995,3.72772,0.5519353333333333,2.916066666666667,0.8896475,0.4473317647058823,4.466945,4.26632,4.76481,2.556925,5.492,4.27433,4.818165,2.586405,3.6292666666666666,1.7216539999999998,6.12345,3.641945,4.106945,4.80939,2.9745233333333334,2.0862366666666667,2.0623766666666667,1.4301016666666666,1.787445,1.250515,1.250515,4.34728,2.335933333333333,6.019628333333333,2.1364575,2.286295,2.17648,2.2200232499999997,2.3295675,4.67162,4.483155,2.1535875,1.7725833333333334,2.2200232499999997,1.87744,3.61326075,2.06145875,5.178133333333333,2.1364575,3.2436875,3.27961,3.2485766666666667,5.4961,4.6759,2.1380525,1.9405725,2.20752,3.14128,4.991075,5.16395,2.0583825,4.008175,1.5695033333333335,1.6509475,5.51455,10.554188333333332,2.005333333333333,2.606993333333333,2.320936666666667,4.432905,4.469955,1.877435,4.6492,4.667495,2.998685,40.144236904761904,2.9530733333333337,3.1421799999999998,0.5310177777777778,5.162206666666667,2.07105,0.9491400000000001,4.34428,3.69761,1.8883325,1.72552,2.3034399999999997,4.062375,1.415217142857143,3.1303270000000003,3.7681,4.71112,0.930847,4.945015,4.82016,4.83194,2.718363333333333,1.50505,3.880585,4.480595,3.77415,3.185225,3.562095,3.896385,11.849440808080807,2.799936666666667,3.033225,4.647455,2.88079,4.430035,3.34429,3.08959,3.067365,5.2586,4.98803,5.23925,4.946715,2.375415,3.77811,4.30351,3.630245,4.766435,4.30165,0.12149456521739131,2.278285,5.04795,2.718695,1.4328333333333332,1.0577083333333335,1.0577083333333335,2.518725,2.6081,3.10257,1.290104,2.91415,4.43255,2.59542,4.463020833333333,0.5884692857142857,4.58308,4.040375,4.697085,4.307575,4.808445,1.473,1.3861125,3.9746,2.9466866666666665,2.9541133333333334,4.2292168181818175,4.73091,6.19196,5.3885,4.98023,3.44489,2.2948424999999997,1.6060466666666666,5.29775,0.307644,3.297855,3.7584,3.955795,14.348116666666666,1.96657625,3.4174,0.78066875,4.604775,8.13918,3.28064,2.0895533333333334,5.85075,3.22194,1.2915022222222223,3.86391,2.747815,3.074555,4.841055,3.3350531666666665,1.2893625,8.167953333333333,0.7368875,5.1959,3.122295666666667,1.38209,2.0792108333333332,3.14854,3.14854,3.87792,4.232779833333334,1.495775,2.312075,2.71509,3.60939,3.018405,2.47975,3.2157,3.394885,6.433815333333333,6.34135,3.859815,3.262315,5.27005,5.29095,3.904795,3.39527,3.48623,3.94645,4.89319,2.5145,2.627143333333333,1.5473566666666667,2.3686366666666667,2.2916825,1.5364025,3.2575000000000003,3.6072666666666664,3.7517666666666667,3.310696666666667,2.786993333333333,1.5024533333333334,1.4839366666666667,0.4569845454545455,3.20006,1.561057142857143,2.1745025,3.1634766666666665,2.52562,2.59246,0.9843,2.3612675,2.483675,3.103545,3.59054,5.8029,3.74289,2.904495,2.200743333333333,3.33164,4.409505,2.298015,3.25512,1.99862,3.739155,2.697795,3.789885,1.30888,0.649626,2.2837625,3.27468,3.08584,3.83849,4.74766,8.775785,3.2317533333333333,2.240886666666667,2.2157466666666665,1.9327079999999999,1.9327079999999999,2.753073333333333,2.41433,5.01095,4.640825,3.69704,4.47784,4.41102,4.42313,3.2869375,4.27627,8.0203225,2.53825,0.49693,3.118873333333333,1.3308033333333333,1.0265942857142858,2.3234033333333333,0.786454,2.22415,4.959195,5.10385,5.67362,1.004535,7.01565,2.06292,1.5578116666666666,2.7957633333333334,4.045985,3.30574,2.430795,3.766005,3.1651633333333336,4.084266666666667,2.92672,2.7033166666666664,2.9689433333333333,6.512650000000001,2.526395,3.987655,3.73561,3.4430491666666665,1.4210166666666666,1.1092025,4.41158,2.7857566666666664,3.1237266666666668,5.8795525,3.11811,2.07605,2.3603225,3.18266,3.622733333333333,2.3931666666666667,4.212700833333333,3.09099,5.3356,2.438245916666667,1.8464775,4.94806,5.6008,4.54005,4.41637,1.4562133333333334,2.3891375,1.936095,3.216065,1.5195933333333331,0.9460500000000001,2.7447225,2.155745,2.001955,4.106405,0.821485,6.1026025,1.5220025,0.8374372727272728,3.8097,4.303525,0.7289814285714286,3.481259,3.051465,0.853275,4.553695,0.20727738095238096,0.20727738095238096,0.20727738095238096,0.20727738095238096,0.20727738095238096,0.20727738095238096,1.9108960000000002,3.9502,1.9108960000000002,1.9108960000000002,1.78854,0.20727738095238096,0.20727738095238096,3.3721333333333336,2.623603333333333,4.325045,3.373205,2.222895,3.460495,1.571042857142857,1.8148060000000001,3.42232,1.659214,3.18909,2.6477953333333333,6.231259999999999,4.34774,4.628835,6.1534,4.7081,4.79168,4.88348,4.49364,7.138754166666667,3.623666666666667,3.628133333333333,2.6821333333333333,4.655526666666667,2.6495,2.1859125,1.9250166666666668,4.86101,5.1528,4.76193,5.3525,5.43545,4.766975,4.84138,0.8038900000000001,0.7506,0.7506,4.77301,2.3568466666666668,3.764415,1.0145414285714287,4.988765,1.5516571428571428,2.3027333333333333,2.47788,4.4971000000000005,4.4971000000000005,6.88115,4.26643,1.4002283333333334,12.136961666666666,3.301293333333333,1.2403,4.94775,4.952595,3.521255,3.565285,2.84281,4.560333333333333,0.7620866666666667,3.4168333333333334,3.3551,3.6842333333333332,3.118456666666667,1.4367633333333334,1.4157233333333332,4.7343641666666665,3.11891,3.017276666666667,3.4533666666666663,5.19458,3.340455,0.7418549999999999,1.5979133333333333,3.2979033333333336,2.574208333333333,3.5663666666666667,3.4014333333333333,3.0816266666666667,3.586866666666667,3.021513333333333,2.45436,1.0188233333333334,3.063686666666667,2.7035466666666665,3.42434,3.234325,3.97403,2.6305,3.2248566666666663,2.9203,1.575746,1.9104833333333333,2.7407804761904764,3.582333333333333,1.7174299999999998,3.16043,1.7695333333333334,3.9026,5.0037875,5.029550666666666,2.551575,2.6539,2.758525,2.2859575,1.586757142857143,2.2578675,3.276429642857143,2.29815,3.552566666666667,2.769435,3.736929,3.7884,1.2509000000000001,1.28549,1.760205,2.313835,3.153776666666667,3.4839333333333333,5.03265,7.3169325,3.11491,5.36975,4.237325,16.241883,0.554,10.806774999999998,1.095711111111111,3.177075,2.5539466666666666,2.34828,3.112365,1.612368,1.490858,2.550056666666667,1.420712,2.661574,1.8951133333333334,2.980066666666667,2.6023833333333335,2.84004,1.5052166666666666,0.7263758333333333,3.3185000000000002,2.5236433333333332,3.18425,1.067911111111111,3.6344333333333334,0.739445,0.3976646153846154,2.2775733333333332,4.52834,4.60898,5.23735,0.8757127272727273,4.19768,4.519095,1.15268,2.42984,5.63025,3.028315,3.91243,3.88245,3.94144,1.95075,3.890375,2.7623599999999997,3.096065,3.47979,2.72197,2.79189,3.735585,3.13517,3.42194,2.661485,3.345445,5.22695,1.3013633333333334,4.73117,2.30281,4.069685,5.138826666666667,2.160545,3.094996666666667,3.110743333333333,5.831531666666667,2.5126133333333334,3.3873,6.08805,4.098766666666667,4.50003,1.9597033333333334,2.4443375,4.47052,3.5288,4.477935,3.455,3.2749133333333336,3.1085700000000003,4.1601,3.5555333333333334,2.872,2.8851366666666665,0.4341111111111111,2.3496125,2.1992575,4.80167,4.55387,3.3317866666666665,2.6876766666666665,3.26188,8.04276,3.49954125,3.847995,3.0283333333333338,4.089875,3.14657,3.7010883333333333,2.7750333333333335,2.3697425,2.85221,6.22255,4.66666,2.1403166666666666,3.286565,2.965075,2.6403733333333332,4.872026666666667,1.7233899999999998,6.229946666666667,4.212675,5.04875,4.72113,5.9308,3.570685,6.847218333333333,5.18695,3.95922,0.6773407142857143,2.2626125,1.50018,3.19886,3.61345,4.02909,3.79002,5.23385,2.913843333333333,4.92991,3.247246666666667,3.6290666666666667,3.163206666666667,4.584505,4.83182,4.93506,2.9054966666666666,5.931246666666667,4.615695,1.5289283333333332,5.4331,3.751775,3.44439,2.100555,2.2634,4.736879333333333,1.1780328571428573,2.4543033333333333,2.04894,4.114285,4.457015,2.56619,3.466333333333333,3.0300143333333334,2.5506766666666665,4.03951,1.3265639999999999,2.21483,2.34158,2.9482133333333334,2.4510533333333333,2.5137466666666666,2.62074,3.940055,2.8804966666666663,2.780253333333333,4.0128,2.29883,4.026655,3.47332,1.8935977272727271,1.8935977272727271,4.831025,2.9253733333333334,1.75627,1.3585225,2.2701325,1.902015,1.2243840000000001,1.4363966666666668,0.681846,1.6639566666666665,1.4580466666666665,2.7273,2.4298933333333332,1.7556833333333335,1.9563833333333334,2.3792733333333334,1.4441566666666665,1.7328366666666666,1.8050233333333334,2.38066,4.295185,2.789125,2.878133333333333,2.859975,5.9201250000000005,3.06015,4.292495,3.9617079166666667,1.94103,3.89073,2.979355,1.890855,3.423675,2.2339375,2.80166,3.688455,2.18822,4.602715,3.37617,3.96881,3.4654666666666665,0.8430966666666666,3.71484,3.856605,3.41045,3.65147,2.7436633333333336,4.790585,4.82445,5.16634,9.3637725,3.708205,4.496195,3.202526666666667,3.86443,4.52179,2.540275,2.40157,4.283535,2.148005,5.833145,1.821888,2.682915,6.990713333333333,3.1388033333333336,4.100632,1.3085028571428572,4.619,4.701085,3.4019666666666666,4.756175,4.72684,6.275385,16.36821535714286,0.6367764705882353,1.05225,3.385733333333333,4.02654,4.2731,2.197765,3.61564,4.169745,4.689335,2.989525,4.88203,1.73195,1.73195,5.4935,0.7622963636363637,1.86477,2.91528,3.900235,0.3577707692307692,1.8824699999999999,4.21688675,1.1328316666666667,2.994476666666667,2.6662933333333334,2.94387,7.684,2.466536666666667,3.5598333333333336,2.01177,2.2622633333333333,4.1458224999999995,4.384505,3.544595,7.317833,1.783465,2.87605,4.608205,6.904275,1.8905833333333335,2.27525,2.601716666666667,1.3862666666666668,2.463925,1.7792675,3.89458,3.8389,1.4229125,1.946209333333333,1.946209333333333,2.911936666666667,5.6198,3.945358333333333,3.861315,4.5819,5.5431,3.17385,3.679305,3.93965,3.543675,4.520415,4.2407575,4.356545,0.9039809999999999,0.56061625,5.3053,3.83979,2.5654666666666666,8.26766,1.51302,4.785566666666667,4.035735,0.34120750000000005,1.88146,1.2552733333333335,1.90156,1.9718,5.557312,3.14913,3.099255,4.711685,5.1752,4.558875,0.60506,1.998325,0.583399,5.538376666666666,1.552088,5.12755,2.1195775,3.1792949999999998,3.19038,4.322415,4.53835,5.1322,0.8869836363636363,3.103465,4.17775,2.0237475,1.8102875,3.597925,3.33162,3.526625,3.80723375,5.390266666666667,4.43207,5.4855,2.8528800000000003,0.7696922222222222,3.5187000000000004,3.827525,0.6122230769230769,4.044675,4.12224,3.941095,2.71307,2.7685433333333336,5.6258,3.22792,3.83934,2.20184,4.17471,1.9488800000000002,6.1997,3.823245,0.7033961538461538,4.90657,4.227165,3.18669,4.42151,4.2783,2.641885,3.957015,0.7472489999999999,3.04356,3.757211111111111,4.961315,3.5105,2.4790725,3.4238666666666666,2.4790725,4.44467,2.94861,3.1047166666666666,1.566045,3.146803333333333,1.905965,4.330185,2.8808633333333336,5.53459,3.254773333333333,2.99518,3.13357,2.3751128571428572,2.3751128571428572,2.3751128571428572,2.3331433333333336,1.0440633333333333,4.435895,2.3691533333333332,1.6132533333333334,3.9184,2.786773333333333,3.0975800000000002,4.22582,5.1951,4.3158,2.147105,1.3986079999999999,4.069055,1.864634,2.3269766666666665,3.018615,3.420045,2.056525,3.981265,2.60797,1.688458,4.743025,4.144755,3.504175,3.665645,0.7243588888888889,2.41465,4.577315,7.53218,5.68425,3.072955,3.31431,3.453465,3.732535,1.8827575,2.3117725,5.05155,2.17623,4.47559,3.73931,4.458685,8.974583333333333,4.054455,4.001465,3.412155,4.832205,4.070565,3.2603999999999997,3.2603999999999997,3.782755,4.0124,4.484025,4.088745,4.342855,4.415125,4.308735,1.13581875,4.23323,4.19652,5.44875,7.656845,5.18775,3.7390046666666668,1.8303566666666666,1.5651233333333332,2.6276525,4.693985,3.76523,4.97992,2.825063333333333,4.668725,5.2992,5.1579,5.0455,3.176766666666667,3.937875,4.310135,5.36165,5.11315,4.12398,7.441203333333334,4.48976,2.1961533333333336,5.2171,3.960205,4.193015,3.971455,4.90145,0.885279090909091,4.348105,4.48739,1.2866771428571429,1.450516,5.45905,5.01705,9.072553500000001,5.61975,5.4341,6.1167,2.93311,2.7559766666666667,5.08835,1.7598625,1.7598625,2.51431,1.5635199999999998,2.9158074999999997,3.5606333333333335,1.9820075,4.305698181818181,1.30942,2.09511,6.3262925,3.04645,3.57858,2.8661,3.9847,4.1127,2.94041,1.0870577777777777,3.953475,2.8593933333333332,3.74627,4.176625,3.8063366666666667,5.80475,5.7709,5.2707,4.733965,4.87071,6.53105,4.969135,3.208835,3.75781,1.8200525,1.8200525,3.859515,4.39955,2.43995,2.6518566666666668,2.0895810606060605,2.6251966666666666,1.8294066666666666,1.8294066666666666,4.458765,3.462665,2.133885,3.633825,2.6726,1.836415,1.25717,1.3693444444444445,2.69524,0.50715,0.86567,2.706555,3.74192,0.40780727272727274,4.21344,1.989236,5.3872,3.41549,7.3241575,4.258135,5.259546666666667,5.00165,5.19355,4.144545,1.857455,1.961964,4.45975,2.97993,3.77957,1.24201,4.343285,4.36217,2.77009,2.442895,2.99863,4.284895,3.66648,3.64046,3.838665,3.610355,3.478905,4.06073,1.038492857142857,1.874295,2.37139,2.46416,4.35707,7.66306,1.055846,1.5420033333333334,1.5420033333333334,1.945384,3.881155,2.70092,2.99979,5.8232775000000006,2.9161266666666665,1.17947,1.17947,1.17947,2.73039,3.0564704999999996,4.24522,3.19301,4.109565,3.33626,3.634905,2.93387,3.1586866666666666,3.602585,4.0950325,2.430945,1.2243840000000001,3.040865,2.430945,3.85464,1.3913200000000001,1.8573700000000002,2.3423475,5.673480666666666,2.717015,6.1814789999999995,5.673480666666666,3.4644639999999995,1.83393,1.83393,2.4895,5.57706,1.83393,2.16334,5.42604,2.222835,2.51119,4.6649,3.428005,4.19461,1.75865,3.265805,4.13299,2.344186666666667,2.244915,3.46681,1.75865,2.479795,1.991155,5.7248,2.541135,1.16374,2.460105,3.11129,3.176547,1.785035,1.9158870000000001,3.68152,1.880052,1.82198,3.25898,2.28211,3.226885,3.57221,2.1215766666666664,2.869475,2.384115,6.13908,2.416925,3.125405,3.3655,3.3655,8.020006666666667,0.9948866666666666,3.3188,2.35255,3.066265,2.27015,1.3582366666666665,1.3582366666666665,3.53611,2.088825,6.716135,2.063715,3.51998,3.185585,5.81828,2.59542,2.50756,5.729845,5.729845,2.44387,1.49856,1.2078425,1.2078425,1.49856,1.9527599999999998,1.4156000000000002,1.1554116666666667,1.4552466666666666,1.7624466666666667,3.682165,1.61234,2.95696,3.10181,2.930685,2.861165,2.75567,2.41508,3.2624358333333334,3.2624358333333334,6.09949,2.46869,2.758515,2.892075,3.24099,2.33933,2.66266,2.54543,5.408245,1.932,1.382176,1.2022126666666666,2.001052666666667,5.39104,3.8686760000000002,3.28534,3.223205,1.79017,1.79017,1.79017,4.63666,2.38478,1.1554116666666667,3.07828,3.45099,1.231225,5.470165,3.112185,6.47762,3.12402,1.59991,3.27706,3.1450899999999997,2.371315,3.246035,4.01266,3.68486,1.52226,2.38352,3.05065,2.95803,4.87897,2.03372,3.00088,2.58706,5.76635,4.47983,1.96352,2.156175,5.45237,5.10771,5.15621,5.09186,0.965016,0.965016,2.272977,2.272977,0.800802,4.63015,2.98529,5.25138,3.76826,5.04819,2.29949,3.9548466666666666,3.9548466666666666,2.369385,3.278425,3.55917,1.13644,4.41154,3.3304,3.456125,2.7319,4.64259,2.49602,2.137985,3.24036,3.05174,2.951025,5.1638,2.407165,1.774865,3.45232,6.02214,5.61806,4.18459,2.53791,3.44419,2.591175,5.15109,2.496435,3.58761,2.072655,6.61606,3.88854,2.131005,2.75694,2.662935,4.62259,2.439165,2.804635,2.775445,6.9842,4.66074,2.840225,2.48923,2.227105,6.4107,3.28626,2.96121,6.27034,3.02515,2.961285,2.63366,3.017405,1.8792333333333333,1.802655,1.9613466666666666,1.6285100000000001,1.7713633333333334,1.9488033333333332,1.55315,1.9925866666666667,1.73668,1.8792333333333333,3.93582,3.79983,2.153445,1.5671175000000002,1.5671175000000002,3.73388,3.73388,2.7422633333333337,2.7422633333333337,2.637405,2.37351,1.66476,3.72632,2.1638849999999996,2.1638849999999996,2.3089399999999998,2.3089399999999998,3.14977,1.9649,4.6638,1.97555,3.09328,1.9611599999999998,1.9611599999999998,1.88281,3.87322,5.2696,1.3913200000000001,4.02967,2.1215766666666664,2.1936,3.85908,3.261655,1.78252,2.272165,6.39267,2.014505,6.31167,2.91942,3.223815,3.05949,2.71785,6.36669,3.02115,1.830715,4.498521538461539,4.162225,5.11869,3.64972,1.51096,1.51096,3.69814,4.78754,5.02273,5.93589,2.74549,2.659655,1.69578,3.16688,1.626435,2.729535,1.745785,0.794254,0.794254,0.794254,1.9501366666666669,5.171806666666667,1.9501366666666669,2.22874,3.515055,1.63268,1.93997,4.28976,3.69251,5.46763,1.7237433333333334,4.49664,1.7237433333333334,1.7237433333333334,2.02965,1.91309,2.42068,5.79732,2.42068,2.455465,3.92728,2.031775,1.67152,2.648305,3.1135033333333335,3.321413333333333,3.4263999999999997,3.82169,1.476655,4.461185,0.7677527272727273,4.38596,4.380835,2.5737475,2.5737475,0.7249318181818182,3.7556333333333334,2.6982866666666667,5.77865,4.99147,4.192625,5.0825,4.715565,4.15283,5.04455,4.47319,4.498915,4.033545,3.805015,4.808615,5.2237,3.352485,3.54737,4.157595,2.50745,1.3019159999999999,4.470015,3.756915,4.09566,1.5060714285714287,3.68877,4.274405,6.226929999999999,1.15563,5.0355,4.24005,2.05455,1.950275,3.23093,3.56133,1.55276,1.51096,3.78432,4.237155,2.752445,4.53365,3.061795,1.1167799999999999,2.6616633333333333,1.2235514285714284,3.1389099999999996,1.9750233333333334,3.2316000000000003,1.879445,2.8595666666666664,4.22311,3.347435,4.62894,3.91202,2.327745,4.75217,4.30573,2.971,5.05095,4.35262,2.606053333333333,6.1634,4.74118,3.0789033333333338,2.6301133333333335,3.654955,2.900173333333333,2.9178599999999997,2.75993,4.876895,4.20876,3.753365,2.65637,2.5658166666666666,2.381746666666667,2.780913333333333,2.50012,2.358233333333333,2.46627,2.2002375,1.3831525,3.100413333333333,1.1352575,2.163965,1.6811025,2.55305,1.5631775,2.1767875,4.161955,4.381585,1.9739325,4.02928,4.57774,6.364563333333333,2.0690500000000003,1.72438,6.735,3.572115,4.537185,4.42891,4.088065,2.03285,3.637435,2.5693,2.909815,4.403915,0.7078333333333333,3.929195,1.9994466666666666,0.7726045454545454,5.0193,4.41611,3.91193,1.9367685714285714,4.641415,4.565185,2.7402433333333334,2.4534833333333332,2.507,2.128833333333333,0.603058,3.0465999999999998,3.137125,5.1347,2.4782075,1.950445,4.399615,0.9907725,1.811125,1.811125,2.70404,1.811125,4.211515,2.70086,4.72211,4.26227,5.77695,13.336535,3.33013,5.1617,3.18361,4.640695,3.90997,6.8831875,2.8998266666666663,4.47189,4.916305,3.988895,1.3819549999999998,4.316555,2.842333333333333,2.4461366666666664,1.0504133333333334,2.136215,4.106015,7.27233,4.18326,2.67582,4.241845,3.2368066666666664,4.28269,4.94324,4.628605,2.879775,2.79364,4.06288,5.7802,2.51074,4.642655,1.944105,1.944105,3.080525,4.86336,1.09785625,4.301938666666667,2.31787,4.023005,2.5513600000000003,2.3047733333333333,2.743093333333333,2.19348,0.6815357142857142,3.499375,2.7404933333333332,5.18885,4.392635,0.2334084375,5.14475,4.641205,4.217765,7.013018333333333,3.350766666666667,2.9485166666666665,2.179996666666667,3.4867333333333335,3.504766666666667,1.33164,3.100426666666667,2.7106666666666666,1.3955849999999999,3.3404000000000003,3.2720833333333332,2.61976,3.4824,1.3464594444444444,4.311785,2.37456,5.3161,4.632035,3.99645,1.5804233333333333,2.6402233333333336,1.2543625,1.821965,1.2543625,4.95551,3.6118666666666663,1.672418,2.4427075,3.910935,3.820005,2.824025,3.791655,0.3642235,1.4929420833333333,4.047565,4.299665,5.6182,2.057965,3.0046433333333336,3.202526666666667,2.4694,2.72259,3.3536,4.71388,2.55795,2.0183633333333333,2.85995,2.66306,2.74202,4.31195,1.94193,4.61327,3.8275708333333336,5.89535,7.5359575,0.8076722222222222,0.819898,4.025995,7.095725,1.869576,3.4731,1.2087816666666666,1.2087816666666666,3.54741,0.44379444444444444,4.10188,4.48609,2.559355,4.09445,3.24654,2.59534,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,2.19076,3.473435,3.995033333333333,3.2365033333333333,5.14156,6.2521370833333325,2.98706,2.772486666666667,0.9757083333333334,3.285115,1.05780875,6.082329166666667,3.3098425000000002,2.235285,1.05780875,2.49673,2.687655,1.22055,4.8710587499999995,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,4.275705,1.67987,4.700325,4.70785,1.7466339999999998,4.494335,4.444355,5.18605,5.184074166666667,3.702735357142857,3.24806,4.83156,2.2336425,5.774675,4.335915,0.7548571428571428,1.4006100000000001,1.4482,3.4172333333333333,3.4172333333333333,3.0237350000000003,3.99831,4.810185,3.6875,4.35136,3.3518333333333334,1.9692666666666667,0.5383228571428572,4.098355,3.239905,2.74351,4.093615,3.3508,3.1733712499999998,5.01735,4.342415,6.93138,4.298055,4.751405,5.6444,4.470465,1.4204885714285713,3.27694,5.121686666666667,35.141072303751805,1.2153883333333333,4.382145,3.771375,4.522805,4.30773,4.66389,5.309,0.40829047619047615,5.1131,4.4323,2.101575,1.888645,3.932,1.866325,2.488785,2.22666,1.73736,2.83932,2.55546,3.029705,3.1999,0.6273546153846153,3.878075,3.6994,0.40391052631578944,2.5100433333333334,3.217405,2.697865,3.871395,1.74843,4.525945,3.893865,3.088725,3.71338,3.28218,4.560145,3.014335,4.13021,2.1409725,5.121686666666667,3.846635,3.39716,3.14822,1.7636800000000001,4.585575,3.54361,7.097886666666667,3.188345,4.6336,6.720415,5.196829,2.2831025,4.682745,7.1027249999999995,7.792022,2.606716666666667,2.466575,5.5366,5.821193333333333,4.80867,3.50566,5.503941666666667,2.48123,2.0590425,2.2983075,60.87646448381984,5.2728,4.50719,2.47994,0.979285,3.0675133333333338,2.9795133333333332,3.25651,0.9154911111111113,4.390345,0.7916577777777778,7.7834303571428585,1.864634,3.3371333333333335,1.8984860000000001,2.735475,2.45704,2.77577,2.55447,2.2749366666666666,3.09827,1.5262133333333334,5.2025225,3.956,1.2465225,2.55757,1.3751533333333334,1.493,7.51927,5.72045,3.32807,5.8603,5.1811325,1.4943142857142857,3.6602,3.37211,1.639225,5.36875,4.60538,3.910065,2.08567,3.2026733333333333,3.8343333333333334,3.902155,5.74575,4.506495,4.635065,2.2155575,3.819045,4.4448,3.269686666666667,1.489536,4.341145,3.3744,4.10765,5.03025,3.93435,3.88069,4.459155,4.30398,4.278925,4.77232,4.198355,3.2801333333333336,3.912485,4.3068,3.14552,4.21875,3.762425,1.4289524999999998,1.4289524999999998,4.508305,4.73783,5.3165,3.830245,4.421305,3.2973833333333338,2.83857,4.438215,5.49515,0.7757154545454547,5.47485,6.6792525000000005,5.76695,5.79255,1.2112888888888889,3.160605,0.9634866666666667,0.9634866666666667,0.9634866666666667,3.613075,3.4486333333333334,3.2938533333333333,3.5147333333333335,0.9132389999999999,5.2002,4.9611,3.26621,1.48493,2.02794,4.051125,4.223845,3.71732,3.5192639999999997,6.57565,4.62959,2.5378433333333335,4.650925,7.1089,2.448675,4.109645,3.824005,3.21441,4.858535,4.31086,4.78888,5.6319,3.762325,3.6429422222222225,2.13784,2.13784,0.7177963636363637,8.727154,2.146645,6.31205,5.5741,4.604965,4.79445,3.744605,3.042158333333333,4.521965,7.484535,5.773816666666667,2.1207733333333336,4.43964,1.0550000000000002,3.68929,2.03165,0.9383755555555555,1.1634928571428573,2.936586666666667,3.247813333333333,2.7769433333333335,1.184592857142857,2.8003033333333334,3.17031,0.9212566666666666,2.9734599999999998,3.2818733333333334,1.6341899999999998,1.797886,3.14222,3.18167,2.9804933333333334,2.62754,1.918422,5.51525,4.68195,4.38699,4.82493,4.937675,3.13684,4.711125,5.8008,5.2865,4.07698,4.03416,12.858708333333333,8.226424999999999,3.096693333333333,3.82245,2.14859,3.63438,3.085635,4.518645,1.1290166666666666,3.95661,3.795895,1.462375,3.654165,2.9706333333333332,4.43837,4.191065,3.890615,6.7825,7.406373333333333,4.008065,1.6317233333333334,1.6317233333333334,1.6317233333333334,4.95419,1.176525,1.41,0.5072705555555556,4.423175416666666,3.01821,3.98797,0.9574130000000001,1.174655,3.65421,4.34576,3.701775,16.948727214285714,4.3648775,4.567095,6.762834999999999,2.8550799999999996,3.460385,3.14639,0.9177088888888889,1.59438,4.13144,3.84333,4.567035,4.079565,4.741955,3.865655,2.7518055555555554,3.421025,5.62635,0.588785,4.96182,2.22463,4.049055,5.528,3.3945333333333334,2.82109,3.9696299999999995,1.73576,4.786675,5.9926,2.82833,2.76653,4.31118,4.24573,4.59374,3.96984,3.844825,4.51205,4.685095,4.732245,4.588175,4.87197,4.045525,1.229734285714286,1.85484,6.6474546666666665,5.76285,5.0688,5.3408,2.605175,2.7836700000000003,2.6679866666666663,5.438693333333333,1.7820475,2.061615,3.1204666666666667,3.0600633333333334,3.4222,4.530085,3.49962,5.605113333333334,1.63346,4.634825,0.8854533333333333,3.99328,4.037015,1.6485233333333333,4.91127,1.00986,4.56823,5.43715,5.152,4.51675,3.7595433333333332,3.89364,2.993726666666667,5.1987,5.31495,2.957042,3.872635,2.355895,2.602225,1.92762,2.546265,3.642065,5.18545,1.07313,4.34426,1.26813,3.35138,1.5942633333333334,1.07313,0.25174405405405403,4.08209,3.06634,2.2668479166666664,1.9169633333333334,2.668395,1.0528225,3.754895,3.454555,4.63279,2.51134,6.4669,6.9928,2.8294266666666665,3.281076666666667,2.7489133333333338,0.845089,2.3222566666666666,6.23475,4.559885,5.1546,4.964065,2.3326033333333336,1.3030366666666666,3.8449225,1.6377375,2.2665575,1.7095625,1.5941675,1.708035,1.90858,2.147075,2.0560175,1.6058675,1.3189914285714284,1.430975,2.009495,2.610375,2.112375,2.3223366666666667,0.547922,1.8181,3.0910266666666666,3.2114266666666667,2.19552,2.70871,2.36977,5.4367,2.843716666666667,2.61867,3.14218,6.1455,4.22714,2.96673,4.722045,1.761500588235294,4.23242125,24.966573,4.670426666666666,5.53855,4.57686,2.590336666666667,4.034315,4.549485,2.89446,5.2196,3.2118966666666666,0.74198625,4.10056,4.9477,4.53458,4.02937,1.6162666666666665,2.2196666666666665,2.31962,2.136875,1.4476857142857145,3.493866666666667,5.35145,4.10811,3.176815,4.2228,5.2941,5.04055,4.746605,1.294475,3.629055,4.16571,4.934755,1.6788699999999999,3.061593333333333,1.738495,1.738495,3.637315,4.83696,2.71695,3.0161333333333338,4.23525,3.96645,6.574915000000001,4.47761,2.122355,1.59438,3.35855,4.17167,3.1900433333333336,2.429082222222222,2.429082222222222,3.24858,4.6735,4.06102,5.595813333333333,2.268065,3.2612017777777775,0.5703644444444445,0.5703644444444445,0.5703644444444445,3.447885,3.769185,4.555616666666666,5.4671,2.1839825,5.47785,4.573915,4.721105,3.57142,4.474075,2.76669,1.4641857142857142,4.826305,4.48876,0.4761778571428571,4.338033333333333,4.92343,1.613875,5.4376,5.33555,4.82317,4.128005,3.803005,3.05224,4.49697,1.665524,4.286575,1.6427733333333334,3.8955,6.07845,1.2830375,3.227095,6.9436,4.36499,3.7321333333333335,2.6688,4.26983,5.29165,3.4897666666666667,6.639986666666667,4.63157,2.2519033333333334,3.12647,2.855726666666667,2.8978,3.221643333333333,1.8040266666666664,4.732235,0.6173383333333333,1.86815,1.86815,3.189685,4.4728,2.3616975,2.921455,4.855135,4.639065,4.43854,1.3399966666666667,5.295864559523809,4.612865,4.52631,3.615725,4.307005166666666,3.8435544999999998,0.4634506666666667,2.5241198571428574,1.07643125,0.4634506666666667,4.2226,1.0207355555555555,4.329125,4.29191,6.446921,2.1743133333333335,1.026155,1.110822,2.222795,3.056846666666667,1.8208066666666667,2.4455033333333334,3.407425,3.760675,2.0962366666666665,2.46507,4.636205,3.19839,4.10143,5.7014,3.72889,4.879325,7.3822383333333335,4.38752,3.443955,4.41624,3.624145,4.53489,5.4066,6.083465,5.63855,2.4566066666666666,1.0107933333333332,4.023845,4.13455,4.01121,5.099,4.058165,5.56175,2.81181,2.633436666666667,3.24653,2.44304,2.250723333333333,2.9656833333333332,3.4941333333333335,2.9259533333333336,4.243375,4.27403,4.3637,5.42875,2.9865933333333334,3.2308333333333334,2.918125,0.7231142857142857,4.51121,4.108385,4.522455,3.00721,6.088493333333334,3.20758,4.796575,3.791915,0.6119376923076923,0.5624321428571429,4.331255,2.696749,3.524895,4.65256,4.270965,1.744696,5.03045,4.145345,2.688,2.6070800000000003,2.252345,2.136280833333333,3.6115666666666666,3.2236966666666667,3.1623566666666663,3.0614166666666667,3.538133333333333,2.618225,3.0640533333333333,3.9792666666666663,4.5411375,0.55818125,0.55818125,0.55818125,3.4157824722222223,3.5899666666666668,3.4182,2.7933133333333333,2.6017,1.13581875,2.93667,3.0703033333333334,1.8967725,2.65449,2.39423,1.0062655555555555,2.879255,4.56012,9.851651416666666,1.5613181666666667,0.661502,3.62281,0.661502,0.661502,0.661502,0.661502,2.1871125,4.1107795,4.111715,4.865945,5.9225,2.86309,3.0139933333333335,3.1765875,3.482961666666667,4.985845,1.3016366666666668,2.3269366666666667,3.3232266666666668,2.48834,3.007906666666667,3.917725,2.199053333333333,3.515515,1.1913111111111112,5.03405,3.77545,3.514965,0.8145475,0.629849,0.629849,0.9311003478260869,1.745647847826087,0.9311003478260869,0.9311003478260869,0.31427434782608693,0.31427434782608693,0.9311003478260869,1.4029833333333332,2.7972466666666667,2.898385,3.18491,2.589123333333333,2.6994666666666665,3.189603333333333,2.7180733333333333,4.464425,3.558135,1.9537925,2.2174133333333335,1.738435,0.17987824742268038,0.17987824742268038,0.17987824742268038,0.17987824742268038,2.4750566666666667,2.7976233333333336,0.852242,5.0671,0.7831754545454545,1.7149999999999999,4.797850833333333,5.106,4.403205,2.928675,4.35206,3.60316,1.7793866666666667,1.1728625,3.609815,4.426225,5.98965,2.28335,1.9910133333333333,1.8694733333333333,3.1189933333333335,1.4444933333333332,2.71787,2.887836666666667,3.0154866666666664,4.604785,4.14074,3.12435,4.71342,2.4354733333333334,4.21753,5.5248,4.07722,4.466465,4.68664,5.558286666666667,4.829406666666667,3.2220334285714287,5.260606666666667,4.361375,5.91575,4.509355,4.51456,2.23517,3.10507,4.175445,4.99553,4.308875,3.9204,3.67783,3.970865,3.986565,2.3782833333333335,5.61745,3.46974,7.31027,5.96335,5.86115,4.96638,1.4873857142857143,0.9967309999999999,0.6703261538461539,1.762654,4.885125,5.1004,4.005995,1.65642,4.13394,2.87091,5.1217,5.1625,6.144252999999999,4.224935,2.99531,1.7723220000000002,5.265385,3.87686,3.21242,1.677815,0.96938875,3.992145,3.5718,3.52895,3.620995,2.16197,4.510625,1.5738633333333334,2.8742133333333335,2.40263,4.33217,4.400305,4.93466,2.3553,1.6526,5.56485,2.9746,8.95181,2.827,4.654385,5.7664,4.556135,4.87683,3.95637,4.80115,2.2030475,4.410045,5.217579000000001,2.2917925,4.39436,4.58546,7.7406950000000005,5.10685,3.3250666666666664,3.93751,3.743725,3.19839,3.364715,5.03685,5.52455,2.240225,3.0630566666666668,3.30143,2.365425,2.45564,4.541545,5.92395,5.1176,4.58725,4.920095,4.376095,5.96075,0.6208561538461539,3.267246666666667,1.2246414285714287,32.18811387937802,2.461375,4.6298,2.851155,4.37508,1.866096,2.46224,3.3662546428571427,1.5023871428571427,1.5023871428571427,1.5023871428571427,1.5023871428571427,1.8638675,3.32616,0.4193322222222222,7.742755972222222,0.4193322222222222,5.20205,5.1207,2.283165,5.57675,2.726775,4.028748,2.393116666666667,2.43675,2.6524300000000003,2.0822266666666667,0.64109,2.57008,0.7341133333333333,3.131016666666667,2.0997533333333336,2.298192,1.207635,2.298192,6.22875,8.291545000000001,4.596175,4.359065,5.36065,5.9616,7.411488333333334,3.36094,1.758395,1.758395,2.30288,4.946275,3.70207,4.56091,6.002536666666667,4.581785,3.284375,4.212915,3.323015,3.480825,2.09301,1.0024060000000001,1.71237,4.65402,4.174495,5.368966666666666,2.0084675,4.08078,1.6180160000000001,3.53778,1.328204,3.3302133333333335,3.1582733333333333,3.0739366666666665,3.245886666666667,3.5117999999999996,4.967485,0.6780553846153846,3.476695,3.5940333333333334,2.6343833333333335,2.342166666666667,4.3078075,3.25488,2.7162400000000004,5.3013449999999995,3.84052,5.0184,3.943245,3.542925,5.51055,4.993945,2.1797633333333333,6.0137,2.3480596666666664,2.6992666666666665,3.152976666666667,2.69703,3.2533166666666666,2.83833,1.7732400000000001,3.147233712121212,4.41453,3.4470237499999996,2.666332333333333,2.666332333333333,2.391945,4.066415,4.015605,0.635789090909091,3.29574,3.30332,8.54541,0.8797536363636363,4.452435,3.79728,5.3117,3.65822,3.940145,2.214945,3.80818,2.86661,5.87885,2.6555341666666665,3.687085,2.764863333333333,4.81553,3.20408,3.59797,3.658315,4.88052,4.918706,3.283705,1.96129,5.2069,2.48642,4.546775,5.03635,5.10155,4.58386,4.18624,2.93104,2.20796,2.9466733333333335,2.58236,2.8352,3.5365,2.8203559523809525,4.892698333333334,2.903396666666667,2.5086999999999997,7.1592325,5.261782083333333,3.9964975000000003,3.23423,4.157266666666667,4.057285,3.59099,2.161725,3.9228300000000003,5.53155,4.845985,1.5740533333333333,4.722075,2.809466666666667,6.8837075,4.77499,8.997164999999999,4.41539,3.607355,2.25088,4.12874,5.7201125,7.61636,3.57041,5.75947,4.147705,3.189075,3.84417,1.7233899999999998,4.532931,1.5547449999999998,4.41412,4.636125,3.4440666666666666,0.8818916666666667,10.241521666666667,1.2975222222222222,1.865035,2.305973333333333,2.1758866666666665,3.25601,1.3312366666666666,3.543565,3.44185,2.7648966666666666,4.43938,1.1640225,4.3446,1.3908033333333334,2.8643045000000003,4.176075,4.965635,1.9299,5.717377916666667,2.3635686666666667,7.8994,4.402345,2.85022,4.008585,3.22081,1.2963737499999999,7.53621,2.96378,3.25629,2.240575,4.07897,2.229085,3.1705924999999997,1.967925,4.0278,1.326835,5.2752,3.331115,4.11341,0.957418,2.0115290000000003,3.788855,5.1818,5.25121,1.4190720000000001,1.4190720000000001,6.1178,4.653605,5.46835,3.74483,3.38064,8.395385000000001,4.297725,5.68355,3.96096,2.5836,2.104146281362007,0.3432825,0.18659322580645163,0.5775121146953405,1.1833516666666668,0.6509332258064516,0.18659322580645163,1.308655,0.39091888888888887,1.5266341666666667,1.8861671146953405,2.1759125,2.3283575,2.20953,5.34625,6.623021666666666,5.3337,5.49835,4.437305,5.0803,1.17475,5.11075,4.13606,5.9179,5.2089,5.71475,5.4904,6.0965,5.58895,1.4652900000000002,1.6067857142857143,1.928398,6.234634,1.352334,5.665,4.63646,7.223223750000001,4.955705,5.96185,4.524445,4.806055,2.578925,5.45805,5.4797,4.43265,5.24805,5.940345833333334,5.53595,4.04435,4.173445,3.9677666666666664,1.00388,3.724766666666667,4.496535,1.24845625,3.7650666666666663,4.916055,4.4709175,5.00045,2.45173,3.141875,2.62155,4.579265,2.1677925,3.62414,1.2634583333333333,3.110495,3.769865,4.63775,4.9749,3.4553387499999997,0.6173591666666667,6.03735,1.05694875,3.715915,3.1277000000000004,3.597315,2.1068966666666666,3.815985,3.6992110256410258,3.731833333333333,4.405795,15.115417,5.0059466666666665,2.3082725,8.19767,1.5200675,3.91128,3.048496666666667,2.7570366666666666,2.3231566666666668,0.22198391304347825,3.1476433333333333,4.779705,1.797374,2.3086033333333336,3.6462333333333334,1.9265975,2.38957,1.4736857142857143,3.351195,4.789905,4.673405,4.76804,0.50209,2.3861933333333334,4.456425,2.77177,4.359065,5.0338,4.174555,4.90059,0.5298041176470588,2.44738,2.44738,5.4229,4.056685,4.808835,2.699,3.6858,3.3364999999999996,5.156,3.845605,5.488688333333333,4.92587,4.4374,4.9483,2.562525,1.9912500000000002,4.24311,4.238335,3.73584,3.57464,1.811302,4.81202,4.332405,3.76528,5.0843,3.95943,4.68892,0.6144726666666667,3.870965,0.7130899999999999,3.249166666666667,4.269055,4.639025,17.946539047619048,4.27114,4.061865,3.1450899999999997,1.17396,2.7518266666666666,2.48892,1.548522,2.46389,2.49722,5.0668,2.17331,4.5432,4.88851,2.21446,4.44889,2.7752866666666667,4.66135,5.05085,5.6737,1.661,1.85854,2.35318,5.08815,5.07485,1.2352444444444446,5.37905,3.4893,5.5856,4.72262,1.70599,4.623335,3.376885,3.604525,4.018635,3.94789,3.0484899999999997,0.6685025,7.758243333333333,1.517958,0.19334194444444444,0.19334194444444444,0.19334194444444444,4.82099,4.21982,2.6491599999999997,4.339205,4.328225,4.632835,4.349195,4.097711666666666,8.686383333333334,4.138755,7.100318333333333,0.903825,0.9401375,2.4774625,4.822985,4.33284,2.1914466666666668,5.4231,5.73975,3.43673,4.2222,4.61992,2.36383,4.40129,4.949413,2.4547966666666667,2.89406,3.30442,2.72319,5.88655,3.54257,0.6887521428571429,4.05781,3.397835,4.21237,4.98341,4.82837,4.05269,5.4229,3.71347,13.833007916666666,4.74313,6.781728833333333,2.7206499999999996,6.779665,4.689285,4.01277,2.2065425,2.3657966666666663,9.75716,2.2351199999999998,4.068033333333333,3.914,3.734166666666667,3.0342599999999997,2.8523133333333335,2.10777,2.23513,2.99995,1.963936,3.9364333333333335,3.0295466666666666,2.56535,3.30564,3.4797999999999996,2.4157599999999997,2.4157599999999997,2.7990333333333335,3.3965,3.3858,2.873423333333333,3.20893,4.0848,2.7066233333333334,2.8658900000000003,3.5390333333333337,2.1710966666666667,2.2178975,3.688,3.0226166666666665,1.846486,4.157066666666666,2.721636666666667,2.5506533333333334,2.90588,2.48294,3.29311,5.994465,2.42946,3.477733333333333,1.8671166666666668,10.838005333333335,3.3487666666666667,1.94039,2.03062,1.0224655555555555,1.630472,4.787246666666667,2.98285,2.98285,1.9091239999999998,1.4814266666666667,3.63973,3.977855,2.20623,1.4088816666666668,1.671012,4.430742,3.297136666666667,4.151266666666666,8.342573333333334,2.84998,3.4003,3.1642543478260867,4.2926,2.2178975,3.3992,3.151123333333333,3.33262,3.4666725,0.8928025,3.3911379999999998,3.276256666666667,2.7539433333333334,3.997945,3.2402833333333336,0.6850281818181818,1.9404885714285716,4.98888,2.4980995000000004,3.1517433333333336,1.645245,1.645245,2.0699925,3.6863416666666664,1.07804,2.2115025,4.8910833333333334,4.8910833333333334,0.6497904761904761,5.867134,3.53794,4.160405,5.175,1.2169899999999998,3.5684666666666662,3.5619666666666667,4.985105833333334,6.223697666666666,2.72319,0.7540199999999999,2.6561066666666666,2.69816,3.079816,2.5353166666666667,2.5780233333333333,3.1569033333333336,2.3808425,2.4713133333333333,0.8350372727272727,3.9653,5.112143142857143,1.41138,1.8003571428571428,5.3242,2.224605,1.457165,4.46043,1.702264,3.480445,2.488635,3.606866666666667,9.525955833333335,4.805353333333334,4.71856,5.1348,2.497404181818182,0.8312709999999999,1.808522,7.063413333333333,1.7001633333333332,4.20292,4.423045,3.93619,21.216790583333335,3.166676666666667,1.3128233333333335,1.15996875,3.2115333333333336,1.3695833333333332,4.100632,5.522,3.5748165,3.2587266666666665,1.2669300000000001,1.3880116666666666,3.1961433333333336,0.54046625,3.279503333333333,3.7479333333333336,3.0155733333333337,2.5708873333333333,2.6134833333333334,2.7038433333333334,2.38823,3.005936666666667,1.6619,3.4853,1.5723900000000002,3.915815,4.103925,2.4025266666666667,4.934775,3.382255,4.123255,4.943245,4.668525,3.04027,2.85662,2.6791366666666665,1.1469542857142856,1.1469542857142856,1.1469542857142856,2.28391,3.1052999999999997,2.6788266666666662,2.99698,2.47268,1.8945425,4.173655,4.36797,3.622085,6.653325000000001,3.409,2.6258,1.9272175,1.1724033333333332,2.555266666666667,4.089525,2.5061466666666665,2.5474366666666666,2.7553133333333335,2.46609,2.6783266666666665,2.855453333333333,3.1157299999999997,2.89901,2.592023333333333,3.2114133333333332,2.0263566666666666,2.1399075,1.8527875,1.5902975,3.1979666666666664,3.0769033333333335,1.97011,3.82014,4.93475,2.86542,2.514438461538462,5.7226566666666665,4.10883,4.83364,5.744,4.823245,4.15261,6.2858725,1.257125,4.175485,2.70972,5.08565,5.3384,3.5669,4.332905,2.33535,7.650875,2.44972,0.8466166666666667,8.53624,5.13726,5.774028333333334,4.692935,2.95735575,1.7818975,5.09865,4.41249,4.52035,5.33185,2.538195,4.49568,4.701615,1.738435,4.19657,2.86705,1.391725,4.866665,0.6471529411764706,4.244833333333333,3.79394,4.869025,3.497965,1.56118,3.453085,1.81201,1.358625,2.76731,3.395,3.2443666666666666,7.034923974358974,1.724865,6.416209583333333,9.921025,6.0809875,3.607025,1.2978885714285713,2.9650533333333335,1.2978885714285713,2.8083733333333334,2.109503333333333,0.28563,1.1536425,0.28563,0.28563,0.28563,1.1536425,1.1536425,0.28563,0.8680125,4.19093,3.372005,3.209935,3.56949,3.83446,3.58846,2.8569923333333334,1.610864,7.0829450000000005,2.7857299999999996,4.166985,2.6934233333333335,1.0018181818181817,1.272175,4.70725,4.033405,1.109841111111111,1.7978919999999998,0.7235472727272727,3.255531779220779,4.38464,5.53685,3.6044,5.392248333333333,0.5487561538461538,4.44012,3.50920875,3.192653333333333,2.6429666666666667,3.5465999999999998,2.51359,2.9225133333333333,2.7148466666666664,2.979165,3.57129,5.6506,4.93578,1.8604679999999998,4.61739,4.41819,3.057045,3.73118,3.43334,0.34192933333333336,4.901265,3.671515,3.414165,3.1832579999999995,4.492515,3.83817,1.87781,3.687935,3.85334,8.041265,5.06315,5.4413,4.41501,4.1792325,0.8188125,2.029405,1.935025,1.53793,1.78854,4.85228,5.4709,4.286195,4.47726,3.5192639999999997,2.6233433333333336,0.9280200000000001,4.133,1.247245,1.11469,3.132485,3.906255,4.68633,1.2954875,3.2613533333333335,8.5415,3.0467866666666663,3.094926666666667,0.8564,4.22145,12.069926666666667,3.44042,4.15156,3.217675,3.478815,4.69266,4.8866,2.00276,4.41907,0.6314146153846154,4.789985,2.2230375,1.851865,1.851865,3.4036333333333335,4.302785,1.7129,4.743015,1.5408571428571427,4.268895,2.5697241666666666,3.0808666666666666,4.72919,3.566595,3.7953533333333334,2.56795,2.7077858333333333,2.7077858333333333,11.428650000000001,0.796329,3.56015,3.4538666666666664,2.1157075,2.0308575,0.8697671428571428,1.386395,1.2749214285714285,1.96352,4.90585,2.585485,4.3505975,2.134036666666667,4.45468,4.67446,1.613525,2.029135,1.0503166666666666,5.910378249999999,2.1045525,2.0971,1.7216539999999998,1.7768339999999998,1.15996875,2.509557083333333,3.52158,2.6999333333333335,2.9690100000000004,2.415973333333333,2.6022933333333333,1.6889333333333332,3.0334633333333336,2.6263666666666667,1.3434466666666667,2.0323466666666667,3.075753333333333,3.18148,2.3689066666666667,1.1258833333333333,2.67893,2.246843333333333,3.3214799999999998,0.31704052631578944,0.39488666666666666,2.2391799999999997,2.31167,3.28344,3.07584,2.65427,5.01535,5.999,4.47347,4.586805,4.44234,4.01523,2.630123333333333,3.683745,0.6687599999999999,0.06144977272727273,6.5768,0.06144977272727273,3.419375,3.052455,5.38965,3.49268,6.21015,4.87721,2.20774,2.54325,1.328365,5.72575,5.5289,2.9555000000000002,5.21575,2.1661675,4.606185,2.0977068478260867,3.148986666666667,3.212616666666667,4.320855,4.9064250000000005,3.34523,1.9901,1.9901,4.073935,7.97036,4.838585,2.2358433333333334,2.51532,4.43131,3.11763,4.982865,3.84159,1.055271111111111,3.877165,2.9407433333333333,3.30321,4.21227,1.098145,2.32154,4.32251,3.94633,4.92319,2.806835,3.44865,4.04574,3.97413,4.147115,5.1728,4.466545,3.1844419444444445,3.930455,2.7305733333333335,2.9261666666666666,2.69152,3.6449,4.373905,2.8325,5.060889166666666,4.44635,3.836905,5.24755,4.483335,4.08572,1.465606,1.3919775,4.230035,3.5178333333333334,1.4889533333333331,2.75507,3.27869,3.2340933333333335,3.8257211111111107,3.3493333333333335,2.473510833333333,12.947354749999999,2.127546666666667,1.888768,4.589425,0.9878199999999999,3.367566666666667,4.143445,4.864415,3.42722,1.122111111111111,2.2413333333333334,2.51134,1.57596,5.9564,0.9571,0.9571,3.9364866666666667,2.0699133333333335,1.8665733333333332,1.696425,3.485925,4.46902,1.92766,2.796505,3.585805,2.9521766666666664,2.991756666666667,2.038,6.38745,6.01655,3.676245,0.7701076923076923,3.896275,3.76379,0.9395454545454546,5.07375,3.3697666666666666,8.746066666666666,4.360745,4.797805,3.55265,1.4352475,2.997195,5.10655,4.632575,4.018785,3.777275,4.410365,3.379275,3.5429666666666666,3.5429666666666666,4.225805,2.728795,4.94287,1.594185,5.491917083333334,5.309375,1.613875,4.37601,1.04031,5.1844,4.15725,5.19595,4.693615,4.27251,2.58359,2.55175,4.44342,4.357645,5.10925,4.644735,1.9475025,2.270078,3.995585,2.00514,5.1156,2.92224,3.42201,7.636545,3.93627,4.773255,5.16635,3.906765,4.49438,8.139949999999999,3.630955,3.264885,10.18135,3.811015,0.6212192857142858,2.0937710805860807,5.20345,0.6393846666666666,4.84011,4.30374,5.07825,4.68611,3.386955,3.911315,4.681125,4.89392,2.3314475,0.7068442857142857,4.588405,4.420485,4.211465,4.24827,2.66437,4.46922,3.468635,0.662682,3.77764,4.098565,2.4397625,3.089306666666667,4.176655,2.1470325,5.33265,5.1311,4.0846975,3.238023333333333,5.4559125,5.4559125,8.8382,1.95011,0.858575,0.858575,24.038176666666665,2.685175,7.8296850000000004,0.34120750000000005,1.2552733333333335,2.9193466666666663,0.971201,3.66118,3.94944,2.3637225,2.3637225,4.563275,4.762225,3.49191,2.7182983333333333,2.7182983333333333,3.582,3.70665,4.28072,3.409333333333333,2.0576466666666664,2.473771666666667,4.078958,2.01033,3.55829,2.8356833333333333,2.7920525,2.7920525,3.8263,0.8424322222222221,2.4875433333333334,1.6071833333333334,3.533333333333333,2.9431100000000003,2.8080866666666666,2.6419433333333333,4.60223,2.310235,3.0149733333333333,5.487717,1.505706,2.221685,3.095425,2.658043333333333,4.203085,6.387011206349206,1.3756866666666667,3.721,2.30883,4.91909,6.31603,1.5448125,4.75456,5.204061333333333,3.180166285714286,4.5930333333333335,1.1102128571428571,1.6788699999999999,2.95999,3.6494647619047615,1.22014,2.4791375,1.6681775,1.6647760000000003,2.21209,3.4419640000000005,4.926894000000001,1.2384549999999999,1.4933714285714286,2.9443966666666666,12.485344999999999,4.532416666666666,2.65986,1.0963871428571428,2.539481904761905,1.0410285714285714,3.2005166666666667,3.7562583333333333,4.861795,3.33299,5.4728,1.511595,3.7828666666666666,4.01161,2.8229733333333336,3.92775,2.3072866666666667,1.0141133333333334,2.5543833333333335,2.6541333333333332,7.471993333333333,3.0913614285714286,2.440533333333333,0.711773,4.785566666666667,3.4009666666666667,1.12456,5.708089166666667,2.0501225,2.438223333333333,5.7446,1.3164444444444445,2.9467133333333333,1.0066363636363638,3.381066666666667,4.309415,3.00011,3.016156666666667,2.112303333333333,2.4417566666666666,4.391965,4.951065,5.36525,1.7868125,4.360205,3.925555,4.245636666666667,3.8373739999999996,2.439826666666667,4.093234,0.938614,2.8735004761904763,4.83764,2.637975,4.027095,1.42995,2.4877966666666667,1.9760300000000002,1.9760300000000002,7.064361666666667,3.0885599999999998,5.3401974999999995,3.4157800000000003,1.83716,2.761729523809524,4.455463333333333,5.261233333333333,8.522061666666666,4.749714666666666,2.66070375,2.0556,2.088744833333333,4.1347700000000005,3.762885,1.4483840000000001,2.02702,3.064915714285714,1.14044,3.1196333333333333,19.26814166666667,3.3859999999999997,2.9798299999999998,3.27648,2.924706666666667,2.9239599999999997,1.5818633333333334,3.08745,3.3364,2.7767133333333334,2.6016933333333334,5.666292666666667,2.39966,4.338039428571428,2.9293034285714286,2.3029594285714285,1.4033633333333333,3.8830444444444447,2.118335,4.2101,4.892665,3.913465,3.2255225,3.2828666666666666,2.5459633333333334,3.4211666666666667,3.3834999999999997,3.4952666666666663,3.3304533333333333,0.8273,5.1216,2.481605,3.500966666666667,2.877688333333333,2.04185,2.1852566666666666,2.1852566666666666,3.5263516666666668,2.08107,4.904175,4.3584,3.735525,4.67736,4.80221,4.7037825,4.7037825,3.993515,2.997063333333333,4.52133,2.78889,1.627978,3.5678,4.387895,4.0556,2.628075,3.83683,6.1649650000000005,3.806433333333333,6.278538345238095,2.778165,0.853626,0.853626,3.38715,4.734435,3.793215,3.4439019999999996,2.35309,1.7846433333333334,1.69353,2.8911700000000002,6.24862,1.47344,3.98587,3.710433333333333,3.881395,5.0278,5.3087,4.88173875,3.5075333333333334,2.36245,4.86917,3.923615,2.13171,1.084838,4.47809,2.849675,6.531841666666667,3.682166666666667,2.69722,3.384215,3.72512,3.59487,4.563385,3.05028,4.743875,4.50849,4.34924,3.612935,3.434825,3.74498,4.452195,2.63831,4.313595,3.40877,5.00115,0.6709188888888888,2.24269,1.80143,1.954115,1.8497575,2.70044,2.61558,1.80195,5.05955,5.39036,1.9589800000000002,4.843435,4.716565,2.50255,5.584711666666667,4.15674125,4.84334,4.98821,6.742205,2.121843333333333,2.9356899999999997,1.8697833333333334,2.6869899999999998,1.922365,1.725885,3.95704,3.554445,5.26035,1.016868888888889,3.11001,4.21727,2.1873775,5.3373,3.72465,2.53503,3.6733333333333333,3.3558,1.996195,1.8035225,2.695025,2.7653,3.2103,2.04281,3.4944571428571427,3.4944571428571427,3.509275,3.29555,19.963101904761903,1.3347666666666667,5.3920691666666665,2.1182925,1.96075,3.87027,4.09175,1.966875,3.75666,4.48983,1.3174933333333332,1.3174933333333332,1.1457233333333334,1.8260666666666667,2.3865666666666665,3.1044466666666666,4.610246666666667,3.35633,3.758433333333333,0.5297421052631579,3.513692105263158,1.9814666666666667,2.1031,4.5158275,3.36661,4.05988,3.56373,4.64078,4.40197,1.9832025,4.287395,5.821193333333333,2.208235,3.90265,5.03615,2.12356,4.43707,5.83665,1.4086542857142859,2.08674,3.6901333333333333,0.86918,3.05443,3.88744,4.82762,4.691415,2.657491388888889,8.054596666666667,2.9701466666666665,2.838103333333333,0.4473317647058823,4.3037,5.2178434523809525,2.9588869047619046,5.1524,3.764895,2.5914757777777777,1.7724419999999999,5.929624499999999,4.397355,4.351675,2.51695,2.12612,4.03224,4.069233333333334,3.0688566666666666,2.072915,4.30319,6.9744225,2.71032,3.773465,3.516745,4.168245,1.4562428571428572,1.4562428571428572,3.050073333333333,3.027066666666667,4.45715,4.912415,6.3269,4.03857,2.8835,2.150005,1.5241300000000002,1.4469285714285716,5.07665,5.70908,5.2172,5.8055,4.704265,6.669605000000001,3.97751,2.7995566666666662,4.140946,2.3619533333333336,3.05752825,1.602468,4.553525,2.332613333333333,4.170005,5.14995,4.151815,2.73816,2.9746,1.571042857142857,2.542325,3.7467333333333332,2.0945775,0.5876375,3.4352,2.6893,2.9259533333333336,2.29534,2.0516175,1.75918,0.7264463636363637,0.7264463636363637,3.496966666666667,2.099225,2.42505,4.283105,5.79875,4.48092,5.33215,4.25981,4.1962,2.4268153333333333,1.2603600000000001,2.51366,3.746315,0.88061,3.449735,2.91075,2.9249,2.09743,4.103405,3.261865,2.0301766666666667,1.2801285714285715,3.915205,8.524055,3.761215,1.6993157142857145,4.73798,4.01305,3.08637,3.36386,2.766545,1.72021,1.0514475,3.83558,2.3757908333333333,2.134576666666667,1.64251,2.415903333333333,2.29341,2.4926533333333336,2.8403825,1.2432933333333334,2.2036866666666666,1.738355,6.7224325,5.74345,4.93631,4.057435,3.72107,3.0476533333333333,1.6909541025641026,4.42816,4.717135,2.591095,5.08955,2.056695,4.47396,1.130377777777778,4.314845,3.849905,1.8429975,7.58328,3.468695,1.8875075,2.0766725,1.864075,2.6158,3.3801666666666663,1.319577077922078,3.001913333333333,5.535,4.31146,4.56277,5.84435,5.60065,5.36905,0.88175125,4.425135,4.608095,4.2557,5.03955,4.181651666666667,4.72753,4.836625,2.84494,1.4328333333333332,1.4328333333333332,5.2327,5.795786666666667,2.80687,3.02258,4.13132,4.49841,1.59787,4.223225,4.66071,3.74084,3.87932,2.9282066666666666,2.853403333333333,4.959655,2.4477575,11.000263383058119,1.9962900000000001,0.9562125,2.5861233333333336,1.700195,2.4014125,2.233275,1.9086480000000001,2.9107333333333334,5.081,5.3139,2.9765200000000003,1.5944183333333333,6.2774225,1.34881,3.252416666666667,0.517852380952381,4.007233333333334,5.6021,3.663795,4.697605,12.2201,5.5745,3.1553766666666667,3.157723333333333,5.4666,3.144246666666667,5.1513,1.14709625,1.517295,0.7588036363636363,5.66595,4.0185,1.8573419999999998,4.789476,5.07095,6.43575,4.61978,5.4043,4.5084,6.09755,3.92387,5.28445,4.644465,1.6662500000000002,4.794165,5.44615,3.33602,4.019825,3.727205,2.68744,1.1759,4.806365,3.944295,1.2964125,3.4972666666666665,3.0767133333333336,2.486756666666667,2.63966,2.409733333333333,2.7713933333333336,0.7259872727272727,3.28242,2.71803,2.7182566666666665,2.7734533333333338,3.0438466666666666,1.848945,1.5153533333333333,2.4972475,2.2005075,2.3348675,3.3553333333333337,3.037796666666667,0.669025,2.671996666666667,3.43692,5.0116,2.33276,3.978075,5.318,5.46725,3.26194,3.987715,1.4482,3.87836,2.743877777777778,4.141278333333333,3.0524725,4.54794,5.0823,5.09975,4.0516,4.118933333333334,0.9486000000000001,0.9486000000000001,2.190173653846154,1.6105175,4.197235,2.56706,2.56706,5.12175,6.0184,3.1078,1.2157983333333333,1.6331285714285715,5.81635,3.569235,3.2729466666666664,3.229145,2.836085,3.12603,3.2729466666666664,4.8262625,3.246615,3.2605408333333337,2.823995,1.99878,2.928735,6.3586,2.66109,3.910155,3.96536,6.3492,5.97895,6.397875,6.397875,5.6625,4.63493,0.4786507692307692,5.4005,5.35725,2.86573,2.823655,9.361933333333333,2.938876666666667,5.03335,3.803065,3.535,5.4276,2.7083,3.165725,2.9458133333333336,3.241353333333333,2.518893333333333,1.5830899999999999,1.5830899999999999,3.6073,3.743145,4.535525,1.794442,1.8179459999999998,48.79076579545455,2.5249200000000003,0.8407745454545453,3.249233333333333,1.9175325,3.4124,2.8167233333333335,3.2353966666666665,3.171965,3.0417733333333334,2.1178433333333335,0.99795625,5.0917,3.19693,3.484835,3.960075,5.33375,5.1581,5.25055,5.34735,5.5936,4.927715,5.65255,6.50181,5.05705,5.3469,2.0640525,3.871525,6.57085,5.3987,3.661575,3.643505,3.43258,2.534405,3.89954,4.64688,3.10449,3.9212666666666665,1.6124680000000002,3.569385,1.3265639999999999,3.206815,3.807825,3.61474,6.750715,4.302515,2.224505,4.101195,4.07986,3.894945,0.99684375,2.74877,3.63305,4.6276995238095235,1.12039,4.708435,1.4064525,6.4941,0.70582,4.00423,10.275574166666665,4.35079,3.84821,3.823135,1.8387666666666667,4.287535,5.55215,3.0938466666666664,4.46663,9.260695555555555,3.445266666666667,2.37779,2.7523133333333334,2.88143,2.9231133333333332,2.757204333333333,2.4539066666666667,2.5702766666666665,2.9585166666666667,2.8508033333333334,2.8860799999999998,3.460925,2.2840666666666665,1.55528,4.396798666666667,3.2895133333333333,2.57438,5.011459333333333,2.8162266666666667,1.2194325,2.3262325,2.8507200000000004,5.4383542857142855,2.817775,2.2936338888888885,2.2936338888888885,1.6141775,1.44845,2.13728,1.853112,6.040075,4.3294175,2.5186,3.06292,3.608966666666667,2.0478375,0.5272775,2.67193,1.859315,0.5386507692307693,3.722555,2.5723,2.42379,3.629445,3.9380591666666662,2.6278133333333336,1.8441733333333332,1.2792116666666666,1.995135,3.43214,3.7333,4.4320275,3.1542066666666666,4.170905,3.838735,1.1282454545454546,10.24953,2.793365,3.30116,1.2860375,2.71431,2.2947625,2.2947625,2.2947625,4.756775,5.86575,1.87261,4.89744,1.39339,5.855923333333333,1.613868,4.092055,4.189475,4.172985,4.3922,5.0093,1.796185,8.7128675,3.90191,5.15145,3.40027,4.26441,3.18378,3.1140566666666665,4.06863,2.8041866666666664,4.504397142857143,4.725516666666667,1.7225675,3.90242,1.7225675,3.532845,4.511089999999999,5.099635,4.511089999999999,1.7910233333333334,5.89785,5.1608,4.59289,2.8480733333333332,3.02257,4.39355,3.08684,4.765685,0.5532885714285715,3.2532,3.12476,5.173145833333333,4.63739,2.515475,4.464345,6.735745,3.96348,3.24913,2.87827,2.31242,3.907815,4.38556,4.77738,2.497945,3.936855,0.8975580000000001,4.864885,3.490615,4.20246,3.001936666666667,3.09125,2.2645866666666667,3.2485766666666667,2.804126666666667,2.7275066666666667,3.681045,2.461795,2.461795,4.366765,3.33247,4.5806,11.6326,0.9708533333333332,4.35145,2.48232,2.2718633333333336,2.89176,1.41,7.626945,3.5368999999999997,4.19484,3.9487116666666666,2.784596666666667,3.702833333333333,4.877179972222223,2.67202,0.5030394444444445,1.7566780000000002,1.5653725,4.87326,2.744345,3.265635,3.8446516666666666,3.5015158333333334,2.533045,4.589225,4.428915,4.191655,4.675725,2.12247,4.199385,2.5162366666666665,5.67075,3.11725,5.31665,4.57877,4.48277,4.40288,1.86107,3.869515,3.630165,2.8057766666666666,4.249265,3.0799,3.181835,4.235475,3.819295,2.8529133333333334,4.640225,1.7781333333333331,3.922465,2.795765,4.70685,4.767765,4.172685,5.08605,2.619245,4.41383,4.02386,4.071865,2.6854833333333334,2.14163,2.91308,2.236155,0.8324283333333334,4.953455,2.054715,3.4749,2.686175,4.245685,3.45284,2.99435,3.62465,3.763085,4.705421333333334,4.27117,3.055055,1.3265733333333334,3.70324,2.622505,0.8678744444444445,5.0064,9.83507,3.40415,3.631885,4.66655,4.99254,3.783655,1.99644,4.04269,3.929095,3.16154,3.210445,3.438605,0.6401375,1.296452857142857,6.299367500000001,1.5885775,2.61555,5.455054,2.45173,2.281555,2.5925,7.43801,2.887295,4.161865,3.815735,0.7508777777777778,3.404875,2.69014,3.79272,4.360145,6.12031,0.726997,3.299835,8.42431,3.17928,1.2915022222222223,5.499465,4.68406,5.76955,4.309975,4.806625,3.477915,2.8131500000000003,7.739835,0.8882070000000001,3.441265,4.14866,3.18727,4.026585,2.198725,4.307105,1.5883383333333334,4.37856,4.24831,4.11884,1.6696075,4.91334,4.930625,2.3561525,2.112225,2.5403,1.12456,4.02794,3.5748165,1.7605119999999999,8.59254,5.6976,4.69595,4.4198,3.433285,4.304245,1.3911628571428571,4.55372,4.01185,5.1159,3.732675,2.4100266666666665,6.502711623931624,1.02274,1.02274,2.51635,0.9088485714285713,4.3315,3.2231166666666664,1.0199575,1.6441999999999999,0.5259766666666666,6.608572499999999,0.9735025,2.826945,3.950955,4.02134,4.318015,4.400025,5.3183,5.4484525,2.900155,3.170495,2.39066,4.618115,4.84358,4.349635,3.975775,4.07654,6.773,4.44618,4.4002711111111115,6.547575999999999,3.604465,4.7982875,2.206645,4.7982875,6.83997,42.301791028138524,3.6256,3.38259,3.1244633333333334,4.340205,4.298755,3.315125,3.445765,3.793495,4.186445,4.31154,1.69635,5.2035,2.51955,4.342955,5.1182,4.891825,2.37933,4.57203,3.841795,4.34177,1.474734,0.6692023076923077,1.747964,3.738433333333333,3.09268,1.3700125,3.1787566666666667,2.7560933333333337,2.8715666666666664,3.347566666666667,3.0300499999999997,1.46068,2.8281333333333336,3.8106666666666666,1.8957837323037323,2.92667,3.2494140000000002,2.784003333333333,2.705486666666667,3.376333333333333,1.1516777777777778,5.04945,3.989725,1.2010233333333333,1.2010233333333333,1.2010233333333333,1.2010233333333333,2.8488024242424244,1.9607033333333332,2.34823,3.43065,4.59138,4.787015,4.900355,4.689195,5.86145,4.71263,2.35005,6.08315,3.718575,2.650705,4.28743,3.8555,4.330665,4.33896,0.7944846153846155,1.3886871428571428,1.6024166666666666,4.57762,4.41439,3.99071,4.12305,6.169815,2.2700299999999998,4.57867,1.64997,4.366025,5.1221,1.5545466666666667,5.8057,0.7765191666666666,4.677205,1.346272,1.311975,3.83117,4.744635,5.30035,5.81265,6.06385,3.806795,1.53108,4.348165,1.4481325,3.55879,3.967645,2.5914757777777777,1.7636525,3.894925,1.33178,3.48737,4.799325,2.9253533333333333,5.81815,124.00099696645022,0.4747233333333333,5.2045,2.66837,4.75715,4.26629,2.77496,1.54784,0.3779757142857143,3.048995,3.68545,5.56085,2.911195,4.00717,4.482545,4.49173,4.524665,7.549643333333334,0.6844611111111111,3.082215,0.96964125,12.06862,3.09236,3.60773,0.9708899999999999,2.28166,2.669075,2.15415,3.0644333333333336,3.4014333333333333,2.37303,4.77671,2.7965433333333336,2.3168,2.184203333333333,4.9469,3.028955,3.094495,3.589645,3.75503,3.364195,2.3149133333333336,3.864645,3.51942,3.063435,1.1979,2.5635533333333336,4.77671,4.75261,5.4688,4.08591,5.6699,1.84384,10.464749999999999,3.009155,2.728885,3.91148,5.445,0.572496,0.572496,4.33909,4.33909,4.1085,3.7474666666666665,1.7635986363636365,0.6255375,2.928045,4.494225,4.35352,5.089,4.113875,5.34138,4.645885,2.3666175,4.625225,2.2302525,2.69265,5.196108333333333,1.68862,2.20658,0.5017128571428572,2.098630857142857,2.098630857142857,1.862605,4.930065,4.375575,5.395,6.355395,3.71235,3.141995,1.912855,2.344335,4.045001666666667,3.85545,5.3147866666666665,2.370165,5.3147866666666665,5.29505,3.500415,5.9039,3.706505,2.42206,2.047896666666667,2.8937333333333335,1.4652375,1.4235775,1.5188175,1.87427,1.6047175,2.03576,3.6161,4.62756,2.654295,6.4657,3.0687333333333338,4.431965,2.999125,4.17208,3.0839366666666668,3.1339400000000004,6.554846666666666,3.6666333333333334,4.716614666666667,3.159876666666667,1.2825175,2.574543333333333,2.5744866666666666,2.4558666666666666,5.7396,4.2758125,5.0833,12.652482505928283,0.6951725,2.0135715000000003,2.3422525,1.6965420000000002,1.3151457142857144,2.62685,2.59925,2.5573,2.4396925,0.7356676923076922,1.935345,0.5229521052631579,5.17065,2.024505,4.554405,4.815915,2.49857,5.91287,4.40599,8.72845,4.013975,2.91961,3.2351,4.96822,4.59925,2.7504688571428573,4.680865,2.2762925,2.2762925,5.1962,3.80944,4.63071,4.060655,3.2413833333333333,4.030975,5.0578,4.708975,4.588425,4.222245,4.285715,4.469755,2.59492,5.0373,1.2865216666666666,4.785725,4.66791,2.4582433333333333,2.5907833333333334,4.489335,1.4670483333333333,4.75749,1.8417125,5.830895181159421,4.08268,4.010365,1.5641733333333334,3.116695,3.116695,12.12246,3.82068,4.92441,1.08573875,4.422161,2.43646,1.4535875,2.24299,1.8169575,2.1821175,1.86477,3.53612,6.19755,1.751905,5.1048,4.733340833333333,5.3078,2.2107425,2.332585,4.16379,4.37489,5.3777,3.92987,7.35572,3.287653333333333,2.942486666666667,0.39087666666666665,3.78455,3.928315,3.393333333333333,6.522678333333333,2.5992133333333336,3.224513333333333,1.2247700000000001,1.4801916666666666,0.5876375,1.7566780000000002,2.985475,1.51629,1.6852,0.67639375,1.374336,4.54453,2.3915275,0.6129846153846154,1.6462050000000001,1.7003125,1.747662,1.2795416666666666,2.0322675,1.4801916666666666,2.2917925,1.374336,1.374336,0.6129846153846154,1.6079142857142856,2.5327,1.22014,2.794275,0.6129846153846154,2.6845,2.5327,1.3197750000000001,1.3197750000000001,1.3197750000000001,1.8815380000000002,1.22768375,0.6129846153846154,1.046624,1.19254125,1.0224655555555555,1.952092,2.634675,0.8818916666666667,2.148005,1.6118857142857144,0.6129846153846154,1.7357220000000002,1.4801916666666666,1.9490333333333334,2.0663,0.930347,1.9490333333333334,1.05225,2.3561525,2.3603225,2.5693,1.19254125,2.1116599999999996,1.33178,1.33178,0.9265818181818181,0.9265818181818181,0.9265818181818181,1.2247700000000001,1.4801916666666666,1.6118857142857144,1.6462050000000001,0.8565628571428572,2.0663,1.31355,1.846486,1.9066500000000002,1.2247700000000001,2.65986,12.497652500000001,0.67639375,2.55816,1.9250166666666668,2.6691,1.0410285714285714,1.0410285714285714,0.6129846153846154,1.3693444444444445,1.75918,1.6118857142857144,1.778002,2.0663,1.2352444444444446,1.2352444444444446,1.7149999999999999,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,3.385733333333333,1.05225,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.4015322727272727,55.89837496753247,1.500945,1.5248100000000002,1.6118857142857144,1.9250166666666668,0.8565628571428572,0.6367764705882353,0.711773,0.711773,0.711773,0.711773,4.4219,16.28871875,3.3991333333333333,0.6323927272727272,1.6084520000000002,1.6084520000000002,1.6084520000000002,0.6323927272727272,2.985475,0.6129846153846154,1.7357220000000002,1.6852,2.4972000000000003,1.05225,2.515475,1.05225,1.572252,1.572252,2.13555,2.13555,0.6129846153846154,2.2652799999999997,2.2652799999999997,0.9605727272727272,0.19334194444444444,2.985475,1.665045,2.30883,0.6323927272727272,0.6323927272727272,0.6323927272727272,0.6323927272727272,0.6323927272727272,1.9250166666666668,0.4015322727272727,1.05225,2.348035,2.348035,2.55175,3.1277000000000004,0.6497904761904761,0.6497904761904761,3.3401666666666667,4.1193333333333335,1.2169899999999998,3.3152866666666667,1.07931,2.4798175,1.95011,1.098145,3.26186,1.87795,3.238023333333333,5.43775,2.483005,1.2362666666666666,4.226175,4.39768,2.676273333333333,1.722962,2.398541153846154,4.451775,1.6337269444444444,2.7114366666666663,3.0359533333333335,3.2152966666666667,2.36328,6.229946666666667,4.450885,0.19334194444444444,3.137,5.182,4.121345,4.62594,4.499395,4.52767,2.7575833333333333,1.750588,3.725885,4.54118,4.399895,4.74549,5.23835,3.36036,0.7020991666666667,6.709485000000001,1.4194666666666667,3.15898,4.958475,2.5377,2.5377,0.7981718181818181,1.7636525,3.90833,3.12664,4.775295,4.32173,4.704285,5.17845,1.0353214285714285,4.8282,5.2395,7.184231736111111,2.2901366666666667,4.324165,4.26313,3.953085,4.798535,4.273345,4.307625,5.628195,5.19995,4.646018333333333,3.883965,4.226866666666667,7.732429000000001,1.8126775,1.898761794871795,2.85714,1.72867,2.633503333333333,1.9874333333333334,5.21585,3.6540666666666666,5.583,1.9581659999999999,4.875425,3.916855,3.57996,4.33487,3.829995,2.4856133333333332,2.736943333333333,2.7356,2.868486666666667,2.526596666666667,1.6879833333333334,2.6988333333333334,2.9242399999999997,2.56236,2.56236,4.47032,2.91161,1.9595866666666666,3.12651,2.3970766666666665,2.458056666666667,2.7445133333333334,2.685173333333333,3.0608133333333334,5.30115,4.80542,4.69419,3.83087,3.83087,4.312715,3.26042,4.37841,4.38054,3.81648,3.458595,3.31741,7.59051,2.0949275,1.91459,3.31348,3.12036,1.4982833333333332,1.4982833333333332,3.48794,1.744825,4.129297333333334,3.537315,3.36829,2.1633115,2.2432340833333333,0.5261233333333334,2.990435,3.98623,2.308725,2.45015,4.33,1.20651,5.11445,1.1829766666666666,0.3899392857142857,0.5272532142857143,21.83062742857143,0.5272532142857143,0.3899392857142857,0.6645671428571429,11.141076666666667,3.2123266666666663,4.096585,4.556275,3.4694374999999997,3.078835,4.433387857142858,2.21122,2.39316,3.293065,3.04405,4.16441,4.983605,3.525785,2.31273,3.11186,3.628595,3.94058,3.067205,1.0839159999999999,1.0839159999999999,1.0839159999999999,1.0839159999999999,3.36979,2.83038,3.21603,1.62582,1.214545,2.393025,3.51076,3.623865,2.762495,2.978145,2.501145,2.5697241666666666,3.862355,4.197545,1.1585349999999999,2.8478433333333335,1.09998,2.820373333333333,2.3538099999999997,3.650733333333333,5.1411,2.449073333333333,3.98134,4.029186666666667,0.7829647619047619,0.19513142857142857,0.19513142857142857,0.5878333333333333,0.19513142857142857,0.19513142857142857,0.19513142857142857,0.5878333333333333,4.47909,7.34135,3.43705,0.54615875,3.762545,7.42526,3.35141,3.31001,1.1328316666666667,4.822545,5.5405,4.415495,4.76487,1.6553239999999998,4.95405,2.1821433333333333,2.323628666666667,3.958545,5.5401,0.8035228571428572,0.8035228571428572,3.5852,2.93322,2.450095,3.31605,2.785825,6.19455,3.297655,5.85255,5.8168,5.964,2.15011,1.6147,4.280655,3.43134,2.09557,3.57398,3.35588,1.8545375,1.1404616666666667,3.923335,3.442655,4.98341,6.281083333333333,1.6060466666666666,3.914055,1.1111133333333334,2.496356666666667,3.62488,4.32679,0.4523614285714285,4.156355,4.44299,0.972795,2.7558166666666666,7.847386666666667,5.6161,2.04801,6.117871999999999,4.674015,3.7561,1.3629633333333333,5.532206666666667,2.97311,3.17623,3.6112333333333333,1.7352633333333334,1.7352633333333334,6.218875000000001,6.218875000000001,3.609432142857143,3.609432142857143,9.91371,3.609432142857143,3.609432142857143,4.271783253968254,6.64805,4.20046,3.5715916666666665,2.988496666666667,5.27975,4.3056,3.2222866666666667,3.07503,4.68406,3.3501999999999996,2.6394266666666666,3.0534833333333338,2.3087266666666664,2.626695,5.10065,7.934419999999999,6.9061275,4.818615,3.723815,3.97584,6.474316,5.65775,3.92832,4.241035,4.41921,2.36858,2.083335,1.972695,5.6467,5.39145,4.6876675,4.271075,2.27839,2.65499,7.107585,1.8815380000000002,2.54413,3.2955799999999997,3.2955799999999997,3.18901,5.30595,0.8330933333333334,3.5544,3.881995,2.8627233333333333,10.431075,4.25105,2.8600166666666667,2.499286666666667,5.76055,5.74345,3.056845,5.4975,2.66481,4.47751,2.9680808571428567,4.519255,5.34615,4.68849,1.0275216666666667,3.6185666666666667,1.0935875,2.4571666666666667,5.1229697352941175,7.932076666666667,2.64634,3.2842599999999997,7.584479999999999,1.789134,4.65073,5.6373,3.523605,3.699185,2.2032266666666667,4.798815,2.47730625,0.48303769230769233,5.30915,3.208115,3.5576333333333334,5.1571,5.0888,5.2161,6.8962825,4.744575,5.34645,7.3612975,55.14091666666667,4.62859,3.899435,4.68714,5.92875,4.446225,5.0443,3.911545,4.77373,1.9018825,3.991825,4.493275,4.50311,2.42801,4.94646,3.5952,1.6501180000000002,5.67465,6.57535,7.051488333333333,5.56625,3.258075,4.808015,3.23319,3.155535,3.69008,4.271405,3.742545,6.80731,2.695575,1.0636942857142857,2.3710324999999997,0.548934,0.548934,3.46059,0.548934,2.591935642857143,2.591935642857143,3.2121596428571424,4.4646135,4.959608142857142,2.3710324999999997,5.0939775,2.863725,1.39402,5.502,2.12384,7.678872,5.91943,11.717224,3.5202333333333335,2.813406666666667,0.25045333333333336,1.7937773333333333,2.4241333333333333,0.91522,1.66446,2.933123333333333,2.15496,2.865,0.674129,28.4623,1.9803525,0.7611176923076923,2.641383333333333,2.641383333333333,0.423975,1.6822675,3.19337,1.2429075,1.9814,1.646115,4.426765,2.820945,2.1548133333333332,2.3615933333333334,1.1223466666666666,2.12519,1.629755,5.636432166666667,4.121605,6.812099166666667,2.48633,3.3567,0.9618516666666667,2.64752,5.0411,6.039020000000001,2.97519,2.2783,5.176224166666667,1.9500875,2.664073333333333,4.39553,0.9791,3.7875666666666667,2.4291,5.9003,5.45505,6.3484,3.5148,4.370315,4.370315,5.32855,1.836335,5.55515,2.8517766666666664,1.7867225,4.45154,4.660985,5.8076945,4.248205,2.93896,3.11454,2.64443,1.2119814285714285,5.1534,0.975225,5.62752,4.950495,7.637368,4.499215,4.342515,4.22042,8.434756666666665,4.3107,5.13035,1.1484999999999999,0.7359214285714285,4.91507,4.818685,2.230605,3.09197,3.70155,4.191365,2.14303,4.72073,2.6152333333333333,5.39215,5.38815,5.03245,4.62359,4.798595,2.8441,6.9367145,3.403675,4.34154,3.358145,3.980415,5.993927023809524,0.5806607142857143,3.8320000000000003,1.6679433333333333,0.6333677777777778,4.42595,3.893425,1.10853,1.938775,6.00405,3.79562,2.20746,2.76923,2.5879733333333332,5.0967,4.167095,1.7701766666666665,4.17485,2.5358266666666665,3.4844000000000004,4.613525,5.00595,3.1648433333333337,3.857466666666667,3.797333333333333,1.919518,7.30544,5.0104,4.841085,5.01695,2.295255,4.31424,4.643755,3.008735,3.89915,10.717880000000001,3.720085,4.9325616666666665,4.612255,4.636595,2.297665,4.14701,4.267675,4.726895,3.274266666666667,4.115005,1.61256,2.9428433333333337,3.30198,3.61426,5.1066,1.8795819999999999,3.811185,3.0764033333333334,5.21685,2.9993833333333337,2.10804,3.839395,4.44926,1.03555375,2.89727,2.6717433333333336,4.491474,1.71526,1.7753533333333333,1.341745,4.71019,5.4294,5.4824575,3.6980174999999997,3.370235,2.375995,2.13002,1.97047,1.4812133333333335,5.43505,3.144375,1.79403,0.9200692307692309,21.094124583333333,3.156025,3.280096666666667,4.403998333333334,4.294133333333333,1.3853133333333334,2.8017166666666666,3.0396722727272727,1.213114,1.8337866666666667,4.083835,5.21005,3.790535,3.369905,5.36515,4.83252,7.412694999999999,5.0662875,4.721385,3.65116,2.80817,3.93535,4.02102,3.699866666666667,4.487235,2.0037575,5.3023,9.22177,3.599645,2.88207,4.68889,0.55959375,3.344633333333333,2.03442,2.4094825,4.218375,3.22193,4.91929,4.000485,2.826785,2.26817,1.602555,1.338568,1.4141966666666665,1.1375433333333334,4.063355,3.919635,4.738675,4.74446,7.3481,2.6539699999999997,1.37734,2.3605966666666665,7.797583333333334,3.34768,2.87605,3.177005,4.91503,3.731765,3.75716,1.637002,4.42406,5.00885,4.140025,3.97995,3.704725,4.4062,4.91032,4.20126,4.474815,3.58908,2.090155,3.21473,3.330915,5.24735,2.740545,4.3786700000000005,4.20374,2.899345,2.7464,2.2491333333333334,2.27537,2.7954273333333335,2.7954273333333335,1.9533666666666667,2.7378133333333334,2.26227,2.37177,1.95238,4.0327,2.36126,2.9049366666666665,2.8918133333333333,1.6747433333333335,4.29076,2.91103,3.82508,2.880186666666667,5.21565,5.29385,5.0331875,2.663375,2.082285,2.888125,2.15692,2.02718,2.783955,1.9920325,2.4972875,2.578425,6.741555333333333,4.2219075,3.66753,0.6394,4.561035,4.10313,4.14537,3.418705,3.940525,3.627625833333333,6.11155,4.498415,3.54118,2.797435357142857,2.2432482222222223,2.4614000000000003,1.707976,1.7393740000000002,1.531258,2.0967,1.93711,1.3366916666666666,4.14121,0.6129846153846154,0.5380622222222222,2.1162199999999998,1.4950616666666667,1.470124,1.5047366666666668,2.326371515151515,1.5015,1.713492,0.58153875,172.8764774026823,0.42672066666666664,2.12518,1.03633,1.2171125,2.0982875,1.4948725,2.045095,2.6668233333333333,2.12883,6.9625,3.2115,3.650044761904762,1.8252266666666666,3.164325,1.319,1.319,5.8452875,0.504965,2.2450975,3.3843333333333336,3.0449533333333334,0.7866263636363636,0.6643470588235294,1.2704155384615385,1.1147454545454545,2.534,3.829165,2.09586,2.09292,2.319453333333333,4.884226611111111,1.0683877777777777,4.525445,3.601545,3.515365,6.83513,1.7660166666666666,2.410965,2.634285,3.996366,2.174315,3.179035,3.10271,3.25835,4.41268,2.90909,5.88835,2.461195,2.54071,3.46064,1.55945,2.901715,3.05752,2.66737,1.87514,1.57618,2.206705,4.287075,5.513973333333333,2.6875,2.904635,1.290185,4.323135,3.493133333333333,4.105766666666667,2.804745,25.256307183760686,2.247692,2.7010633333333334,3.258036666666667,3.3255966666666663,3.222936666666667,5.880046666666667,3.13973,2.474956666666667,3.5071,3.4112333333333336,2.139413333333333,3.2538633333333333,3.3222766666666668,3.1550333333333334,1.6727333333333334,1.6789565,0.586834,2.23882,2.1484675,0.21271,2.43377,2.934495,0.21271,0.21271,2.1032933333333337,0.21271,0.21271,0.21271,0.21271,2.8926266666666667,2.6938333333333335,0.5636553846153846,3.4096021428571426,1.6053525,1.951774,5.1677,4.5411375,6.225759999999999,2.130645,5.0519,2.1300475,2.868,1.2619228571428571,5.780086666666666,2.7745766666666665,6.0164875,0.9097333333333334,1.3261225,4.931845,4.65384,35.99002693609169,1.685336,1.3459233333333334,2.33334,2.35959,0.9265818181818181,2.39273,2.323296666666667,2.9124766666666666,1.9888266666666665,2.4611666666666667,1.6801283333333332,3.0859900000000002,2.3818033333333335,2.3178533333333333,2.5573099999999998,2.4948366666666666,4.392175,3.2150200000000004,1.1944085714285715,3.92621,4.12267,20.24564572222222,2.9646866666666667,3.3823333333333334,2.57246,0.802814,3.051652,1.6106828888888889,3.051652,2.3971633333333333,2.45627,3.017943333333333,1.8103975,2.007375,4.53987,3.999345,5.41425,4.29038,1.85732,5.12925,1.6643875,4.823895,4.0950851904761905,5.4207,0.7413527272727273,2.17188,2.191,2.857514,3.395985,1.07171375,4.045255,2.075,1.9415733333333334,1.028886,1.028886,2.89385,3.6120666666666668,4.527675,29.107969583333333,6.211774999999999,1.8826166666666666,3.5221266666666664,0.3715213333333333,6.600515,5.14585,2.88973,3.261895,5.7590525,4.208965,1.20692,4.467565,1.264038,4.21927,4.748525,5.3628,2.28422,3.10395,4.45285,2.453595,3.4877075,4.39998,1.2830333333333332,2.8879183333333334,4.15398,4.8733325,2.714786666666667,3.0803233333333337,3.0326,3.56186,3.99179,4.173755,4.1286,1.657105,6.30019,2.55211,1.761556,4.125145,5.56755,4.13941,3.569505,0.9127275,2.93689,3.42566,2.194685,4.693693666666666,2.73402,3.863205,2.8685766666666663,3.1278433333333333,2.958745,3.2472600000000003,3.2012033333333334,3.0810333333333335,4.678325,4.88396,4.93681,1.784885,4.073885,4.254025,1.893485,1.766335,1.6634275,3.9388916666666667,4.61451,5.555218958333334,3.980185,3.635033333333333,3.74155,3.4585000000000004,1.4944183333333332,3.13371,3.02372,3.757225,4.67084,4.67166,4.53628,2.800645,1.930525,1.561615,1.472505,3.500215,2.33602,2.126715,3.31052,4.74204,1.527915,5.35975,1.3923971428571427,1.7206375,3.27799,3.2563,3.019405,3.55297,2.936915,1.549505,0.9848115789473684,3.05603,4.189816666666666,4.522515,8.409121666666667,2.22589,3.2718433333333334,1.5291233333333334,2.738853333333333,2.8631966666666666,1.28254,3.0478366666666665,2.7981833333333337,3.1034400000000004,4.146866666666667,3.2568466666666667,7.311276666666667,3.185416666666667,0.7547063636363636,2.02343,3.30159,3.29677,3.410275,3.6179666666666663,2.67001,3.690935,2.804685,1.9498592857142856,3.87915,3.0203,4.07949,2.2499766666666665,4.848295,4.85253,4.73643,3.897095,3.727705,1.2174333333333331,4.978295,3.2290466666666666,2.986603333333333,4.62238,2.780936666666667,3.026206666666667,0.39714714285714287,0.39714714285714287,4.00674,5.52885,6.6447,3.29347,4.54306,3.69705,3.37614,5.1868,4.27454,1.02248375,4.126315,2.581323333333333,4.5412300000000005,2.960176666666667,3.017011666666667,1.7167933333333334,3.2285107142857146,2.5083033333333336,2.7791200000000003,2.6475933333333335,2.87129,1.9357433333333331,24.130831147233202,5.49695,4.46319,4.017795,3.3097,5.0270275,3.96289,4.58294,4.637515,3.79955,3.606345,4.00638,2.783466666666667,3.0667000000000004,3.271266666666667,3.070498333333333,2.7613333333333334,4.245755,3.460215,4.711685,5.2017,4.52703,1.314084,1.6928860000000001,1.6928860000000001,4.47808,3.95524,2.61089,2.2634766666666666,2.96024,4.50983,3.543555,7.891796666666667,3.1063566666666667,3.285076666666667,3.393526666666667,4.933155,1.6102166666666669,6.2421875,2.5687666666666664,2.6123266666666667,1.732255,4.08079,3.273675,6.91787,3.321345,2.636375,4.24021,4.522584666666667,1.49176,2.66145,1.6973933333333333,8.129858500000001,4.17528,6.867006666666667,2.238635,3.94472,3.677875,3.989295,5.3812,3.3627000000000002,3.3627000000000002,2.1045775,4.371845,5.13975,2.492445,6.091777857142857,1.7420375,5.96725,9.227960000000001,3.4972333333333334,4.515333333333333,2.3345533333333335,1.96108,0.555290625,4.30627,2.572175,2.4664925,4.046113500000001,2.4119,2.5398733333333334,3.941045,5.65725,5.2099,4.606865,5.25005,4.153945,2.3032075,1.0747727272727272,2.91522,3.176895,2.8425433333333334,5.85355,4.0803,3.9658,2.804585,2.08674,4.437795,1.0065125,5.26795,1.0284888888888888,5.3584,3.23533,4.953955,4.922165,3.229115,3.28491,3.4761,3.0299333333333336,4.35389,3.44626,2.356205,4.688645,4.727655,6.733153333333333,4.309855,1.82457,3.747805,3.55308,5.419925,1.9688325,1.9688325,2.884453333333333,2.538676666666667,2.432636666666667,2.7238133333333336,0.8961539999999999,6.2974,3.965155,2.09892,2.235315,2.503765,3.625755,2.736545,3.80111,4.817675,5.2118,5.0508,6.31485,5.825,1.3728375,3.69015,1.1159666666666668,2.4398,4.3590333333333335,2.47485,2.955355,3.1794,4.58768,3.854385,0.4616378947368421,4.666555,4.222285,4.93241,3.31782,4.99764,5.5761,4.616965,4.08895,1.72974,4.66914,2.0651225,4.315633333333333,4.315633333333333,6.3231,5.19685,5.81735,5.00265,2.685485,1.6102166666666669,4.7996,2.1835566666666666,1.6309500000000001,1.906285,4.16092,4.22833,4.538805,7.88307,1.7688666666666668,5.62445,1.4048049999999999,3.262075,6.1312,2.0255875,4.95596,3.1098033333333333,4.84783,3.622675,4.457735,2.9555000000000002,4.225325,3.962755,6.079,4.15331,3.67221,3.8167,5.85095,3.940465,4.41155,3.5332,4.239755,7.3612633333333335,3.517665,7.13405,3.13893,5.1642,6.28642409090909,4.552085,3.54015,2.2679725,5.2323,3.926965,0.7937633333333333,8.38738,6.02145,5.27845,3.0505091666666666,5.12565,2.91378,1.722028,3.91194,1.1585349999999999,5.7679,3.127705,4.66735,5.4232,4.64839,4.049205,2.81657,4.38971,5.06225,1.42319,6.914305000000001,2.98958,3.91618,5.27845,4.048505,2.306265,4.352975,4.63077,4.513415,2.9216599999999997,4.425115,3.67776,5.5124,4.77271,3.446815,1.80203,1.80203,7.285326666666667,1.547057142857143,5.05105,4.37938,5.4051,3.511575,3.63635,4.7994,3.817935,0.8531833333333334,0.8531833333333334,0.8531833333333334,3.535935,2.95461,3.868635,4.694035777777778,2.817245,1.436655,4.97509,2.2106,2.652305,4.02094,5.2038,1.8087275,2.1821200000000003,5.8338,4.00628,2.811605,4.268435,1.602535,1.9820075,3.28858,2.8612,5.3002,1.413384,1.59564,1.09541375,4.05594,3.198775,2.9753833333333333,3.20002,5.57485,1.74342,2.083115,3.12293,1.6063857142857143,3.988785,3.808005,2.307675,5.63825,5.69155,2.907205,5.02475,4.059325,3.38427,3.464515,4.39749,3.578745,6.6835,5.30845,1.75521,1.7413833333333333,3.434335,4.515675,4.098275,4.224315,3.2481766666666663,4.16976,5.74565,5.08155,2.649966666666667,5.4313,4.123805,4.589155,8.0985075,5.6097,0.7015790909090909,4.187625,4.216654166666666,2.43316,4.148455,3.9243333333333332,5.70935,3.86353,3.937385,3.724095,4.652525,4.92981,4.455145,3.452935,3.85377,4.97256,4.127915,3.96963,2.825065,6.40702,4.888205,1.787068,3.030785,4.37859,3.74891,5.19815,4.6337,2.7383400000000004,0.8998277777777778,4.295827272727273,6.6211575,3.791735,4.87538,3.58839,7.726673333333334,4.341685,3.4659,2.7306899999999996,3.630455,1.91282,3.359405,4.323915,2.622938,4.25598,5.49885,1.3914825,5.1063,0.7215499999999999,5.96295,5.02565,6.06255,5.73015,1.5317533333333333,1.65153,4.650015,1.843285,5.0423,0.5380733333333333,6.30595,3.13004,1.5234619999999999,6.1254349999999995,6.7488,0.7990525,1.5939005000000002,1.21754,1.21754,1.21754,2.18764,5.29485,3.62879,4.992855,3.7508,5.4923,4.65221,1.962988,4.14452,5.35695,0.2973487804878049,3.871915,4.441535,4.979905,40.255000401515154,5.8616375000000005,5.3637,12.355129999999999,4.57912,4.322895,8.0358,3.164015,4.515105,4.1134,4.448385,10.273785,3.967635,2.7169566666666665,3.40142,5.0788,4.05805,3.910895,4.36144,2.50822,4.743065,3.84998,6.940434,4.71931,5.308,2.341645,4.14958,0.5276875,1.4175449999999998,3.911305,6.3036,2.859885,1.3717083333333333,1.3717083333333333,3.92853,3.84334,4.00715,3.02392,1.6750833333333333,3.63082,4.32145,1.8400225,3.1243233333333333,1.6447500000000002,2.2997566666666667,4.26129,4.471965,2.1146425,4.527,2.27046,2.130005,3.59124,3.669945,3.97401,3.68948,5.977114333333333,2.4391993333333333,3.740535,0.6660554545454546,0.6522275000000001,3.818215,2.091945,8.752906666666666,3.3991333333333333,5.1268,1.630445,4.419845,1.6296983333333335,4.496175,4.346005,2.8038600000000002,4.10567,5.49745,0.417709,0.417709,3.6811666666666665,3.1311699999999996,3.028923333333333,3.706105,3.6219,5.13775,0.943890909090909,10.323515,10.210415000000001,2.0322675,4.7904625,4.780875,5.2504,3.429855,2.5511266666666668,2.03984,2.0084675,9.6744175,2.1475675,2.7470733333333333,3.884228,4.726855,3.884228,2.589575,3.0720833333333335,3.1630766666666665,0.7539272727272728,5.392248333333333,3.3491,2.713286666666667,4.4007,8.72315,9.370845,4.381645,4.063825,4.63361,6.781805,1.96203,1.365925,27.0060825,3.347305,4.48248,0.95644,4.53494,4.211825,4.5863,4.804135,5.0889,5.65877,2.9374933333333337,2.03501,0.6953470588235294,0.7473583333333332,5.1062,4.728375,1.412615,4.611581666666666,0.8628083333333333,3.540233333333333,1.5113766666666668,4.2324,5.93335,1.78471,2.503055,2.530375,3.896645,2.986945,0.5532455555555555,4.0516,3.730495,2.73814,3.22228,5.3633,3.1263400000000003,4.45845,2.87325,4.897615,8.813586666666668,4.96152,7.07226,2.59945,2.60657,4.294915,4.6045375,4.55671,4.24184,3.70548,5.0099,1.258475,3.4751037499999997,3.3183645,0.780902,1.6928860000000001,1.6928860000000001,5.244,7.536276666666666,0.8491769230769232,4.695555,0.9473616666666667,3.0936233333333334,2.4408333333333334,2.620764318181818,6.672802222222222,2.677706666666667,1.1270222222222221,2.5178166666666666,1.23549125,2.1984533333333336,3.1566766666666664,3.020926666666667,3.329333333333333,2.553166666666667,0.9473616666666667,4.72273,4.75585,5.4328,2.72881,5.45095,2.1745799999999997,6.00505,4.874925,4.401435,2.967973333333333,3.52189,2.168995,1.57546,4.246715,2.734,4.51717,5.3875,1.679516,4.59578,2.762033333333333,6.508676666666667,3.4834,2.801155,0.9473616666666667,2.33378,4.25501,7.346016611111112,2.4383733333333333,1.700282,2.4383733333333333,0.43964916666666665,1.067966,3.510925,4.35685,1.8009475,3.52248,3.9334939999999996,0.577574,0.577574,0.577574,7.872345000000001,1.601228,0.7711372727272727,37.763205251082255,1.8392591111111112,0.6623511111111111,3.0449675000000003,0.6623511111111111,3.73508,1.952645,2.381695,2.4683266666666666,5.52125,4.43142,4.535315,2.3382033333333334,0.8514742857142857,4.346475,3.189923333333333,5.27095,1.0088214285714285,2.86655,2.86655,3.833005,4.669355,4.35068,5.788413076923077,3.23972,4.884945,5.4394,1.8781379999999999,1.17960625,5.38195,6.4664,3.87277,0.669366,4.4716,4.187473333333333,0.923785,4.39356,2.43017,3.99499,4.700385,1.8518630303030303,1.8518630303030303,4.178265,3.36833,0.8870455555555555,2.98525,3.11379,3.66487,3.939295,4.46148,0.49516857142857146,0.27415529411764705,0.27415529411764705,0.27415529411764705,0.7693238655462185,0.625663076923077,0.688863,0.27415529411764705,0.27415529411764705,7.110275,0.27415529411764705,0.7693238655462185,3.57059,1.23456,4.54846,1.1554116666666667,0.59487,0.923785,2.589405,2.712775,4.13653,3.005495,0.27415529411764705,0.27415529411764705,4.240945,3.67571,4.487585,2.65965,3.965875,1.53424,3.843445,0.688863,0.688863,4.65789,3.869665,2.57928,2.752175,4.141543333333333,1.03777,0.8266153846153846,10.72903,1.311525,4.460555,4.726655,4.96957,2.05722,0.4160195652173913,0.89912125,2.93904,3.209415,3.223515,4.33677,1.472494,6.11815,3.67752,4.9115375,4.106155,3.0149633333333337,3.1602866666666665,6.383818333333334,2.8113966666666665,4.9805,4.18994,4.029186666666667,5.937849999999999,0.565904,4.350965,3.3277366666666666,2.13732,0.6769977777777778,4.24357,6.82535,2.670425,2.358355,2.336825,5.31345,2.81021,3.54967,0.9928000000000001,0.46098153846153844,3.996445,0.35795866666666665,0.7963290909090909,3.911185,3.36015,4.612435,2.69053,5.1323,4.14116,6.5784823333333335,3.8497,4.056195,4.68121,1.52671,5.045170000000001,1.9124860000000001,4.056385,2.58075,6.17525,2.677275,1.359054,4.728745,6.96134,6.726499166666667,3.26328,0.8570416666666666,2.75513,4.634615,3.8814,4.63037,4.600515,4.222685,4.737435,2.791245,4.10906,1.8043966666666666,2.199605,1.4929166666666667,3.978145,10.31015,3.71237,3.566745,5.8037,2.81462,4.35268,2.6613966666666666,3.056719666666667,3.314195,3.874155,3.59873,3.58334,3.491485,4.950015,5.8344,5.3202,4.66669,4.96732,4.99428,2.962225,5.49005,7.807925000000001,0.9010711111111112,4.863895,4.32774,4.79364,5.4009,5.30325,2.34151,8.520775,2.40584,3.548215,5.52435,3.71826,4.157195,2.17446,2.016625,2.81371,2.2839533333333333,1.92317,3.12539,4.636295,4.51551,4.033445,3.463055,4.8617,3.38236,3.07292,3.840855,5.29465,3.08625,5.735401333333333,4.44873,3.768905,3.69739,8.20549,3.98216,3.56113,4.41429,5.0735,3.898635,9.60848,1.3013833333333333,2.19299,3.83094,2.893776666666667,2.893776666666667,1.87424,8.231485000000001,0.924911111111111,3.125255,0.891725,2.083115,4.398095,4.50388,4.452885,4.170685,2.9148833333333335,3.33547,4.05767,3.76131,4.246315,3.158385,2.6865566666666667,4.39067,4.72966,3.988975,4.596715,1.72848,1.6419000000000001,2.60745,5.4921,2.3697425,1.6395099999999998,2.0167525,4.469745,4.92515,2.978695,3.36022,0.49416333333333334,2.223305,7.4865900000000005,3.268575,1.5460133333333335,0.8680125,1.2051566666666667,1.9405466666666669,2.1911175,1.1723416666666666,2.0174266666666667,4.292456,4.351015,5.15645,2.5403066666666665,2.129715,7.162245,2.926075,2.166275,2.166275,2.166275,6.545496666666667,2.22223,3.621565,2.803045,0.48918799999999996,1.219592,2.2748475,6.1842524999999995,0.4668027777777778,3.90521,3.9660341666666667,5.73965,2.864289444444444,0.4668027777777778,2.864289444444444,0.9335825,1.242136,5.9153,4.26061,6.7448525,4.51006,4.951575,3.862325,4.06715,5.00685,5.58935,6.2932,3.697885,3.370805,5.41115,5.1945,4.005215,4.481535,4.18953,1.3803033333333332,2.7808333333333333,1.18406375,2.17623,3.150648611111111,1.4765652777777778,7.097525,5.419925,2.752291666666667,4.61776,2.82044,5.06415,2.76918,4.35421,4.91411,9.493254166666667,5.62195,4.53069,2.194245,2.74679,2.2087,0.55959375,2.095901111111111,6.3183,4.945115,4.79052,4.67833,0.69532,2.10307,1.43144,4.493105,0.7978307692307692,7.108465000000001,2.070015,1.123525,1.123525,3.681672,1.953008,3.644833333333333,2.771215,4.60632,3.5719925000000003,3.5719925000000003,4.27813,5.951441666666666,2.7991433333333333,2.59609,3.442966666666667,4.33003,1.82423,3.1548200000000004,5.7266,5.6269,4.63429,4.46234,3.9065483333333333,4.679295,3.6936058333333337,3.19152,2.26437,4.02464,5.32675,3.13827125,5.2398,5.9675,2.1081566666666665,2.8333433333333335,6.4253,6.89015,1.461042,2.722275,2.1821,2.8908233333333335,2.12458,2.538325,2.6144885,1.0549222222222223,1.8436125,2.5682,2.2804025,2.31601,2.31601,3.0296100000000004,2.97745,2.264825,2.599975,2.36931,2.06062,1.5992886666666668,4.846935,14.442006,2.9760500000000003,3.6235,1.800876,1.800876,1.5988466666666667,1.5988466666666667,2.965396666666667,3.912433333333333,3.0050566666666665,1.9060675,1.9060675,3.7904,2.8025599999999997,1.0593700000000001,1.4943142857142857,2.909463333333333,3.1082533333333333,4.112233333333333,2.750937142857143,3.23263,3.2660666666666667,0.671437,2.668725,3.602993,7.036505,4.78331,4.640115,4.58914,3.37957,4.66242,4.74413,2.9761066666666665,4.33907,1.3673733333333333,3.3308166666666668,5.8163,5.59365,2.777015,1.3583699999999999,2.95823,2.6997666666666666,3.1099633333333334,1.5880383333333334,0.7404642857142857,3.2615166666666666,5.141341666666667,4.76481,4.54403,4.77273,3.00597,2.0863333333333336,3.267809166666667,2.59932,3.5404999999999998,3.0596333333333336,3.608366666666667,2.4599800000000003,2.3920566666666665,3.5826,2.6712866666666666,5.31605,4.998925,5.1849050000000005,5.1849050000000005,3.26743,3.824945,3.723375,3.7689,2.859345,5.59305,3.274855,3.08497,6.1587,0.8055716666666667,5.1907,5.01655,2.47963,4.861251666666666,3.2915033333333334,1.6909666666666665,1.3702699999999999,2.35164,0.9726839999999999,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.53614,0.53614,1.1453725,0.8720370833333333,1.6817792045454545,0.9292471428571429,0.9292471428571429,1.2641558712121213,0.41762333333333335,0.3955666666666666,1.1895625,1.50313,3.3381333333333334,2.46936,7.202615,3.1145133333333335,3.95145,5.159413333333333,5.112143142857143,1.41138,4.872495,4.62519,4.691085,3.27867,1.50127,3.96186,3.45006,4.905145,4.70743,2.5534,4.741035,4.466935,4.782765,1.214582,3.82785,4.693585,3.32544,2.5075600000000002,3.383055,2.429525,3.169245,4.014325,3.18106,4.80075,8.659555000000001,3.20053,5.2467,4.34707,4.467938333333334,2.75973,3.848575,1.5199142857142858,3.941175,3.242625,1.917172,1.09907625,2.86743,1.2726466666666667,0.5301173333333333,3.5355333333333334,3.963855,5.107066666666666,3.5842666666666667,2.427105,2.80154,4.97836,3.9306,4.47409,2.4754475,2.2102533333333336,4.21328,4.11345,3.984395,5.41945,4.666215,3.683055,4.799285,3.1546000000000003,4.469185,2.2599116666666665,4.77561,5.3588,3.28995,3.955215,2.426125,3.77573,5.2455,4.4965,5.46475,5.2841,4.944335,2.5801666666666665,5.3255,5.02045,4.953075,2.673,1.04812125,4.12112,4.930175,4.36903,5.0824,1.81586,4.591745,2.133855,5.1523,4.65697,4.77987,2.3214475,4.36751,4.79874,4.37181,3.0134066666666666,4.50434,5.3682,5.13475,3.97492,2.673,2.33261,2.848165,4.454095,3.83067,4.375185,3.509805,4.86836,2.438555,6.9591,4.923275,4.52437,5.2036124444444445,4.855395,5.1309,3.598805,2.881175,2.881175,4.13745,4.20925,4.42003,2.1419725,3.09613375,1.10557125,2.701726666666667,3.21744,2.524716666666667,3.1715699999999996,4.606055,2.8313066666666664,5.55365,2.8269033333333335,5.0757,4.2183925,2.06574,4.15445,2.65751,2.962203333333333,3.90427,0.893487,5.1613,4.773395,6.501144999999999,5.09465,5.36815,1.4153157142857142,4.752215,6.38615,8.512155,3.11272,3.3513,1.9734960000000001,0.8574759999999999,3.970825,1.004052857142857,4.371975,4.631955,5.167,3.313825,4.1688,1.2879214285714284,3.332395,3.62717,4.415235,4.13615,3.91289,4.13319,2.36016,4.278765,5.20375,5.94125,4.610205,3.757315,0.34991666666666665,0.34991666666666665,0.34991666666666665,0.34991666666666665,5.4324,2.752825,5.90475,2.9594799999999997,5.70625,4.678865,3.804785,2.35897,2.5638833333333335,1.4113066666666667,5.2647,2.896653333333333,4.052,4.073975,3.379505,1.545735,1.2031425,4.48339,2.42128,6.388096666666667,3.878655,5.52455,2.199205,1.5347466666666667,0.9199488888888889,3.284075,4.680285,2.89103,2.229085,8.29129,4.24457,3.435725,2.27778,0.487279,3.32462,2.72811,2.079615,1.861225,3.168305,4.017935,2.461125,3.2512033333333332,3.168035,3.85017,4.56254,3.836295,4.35803,4.19391,5.591926666666667,0.6144726666666667,4.65253,5.41765,4.82453,4.577625,3.5591000000000004,5.29235,4.253675,4.250375,5.461766666666667,5.2847,4.75116,4.70081,3.5702550000000004,4.6185,2.764105,8.91773,5.24635,4.347595,4.99338,4.989125,5.17195,3.563425,1.1330333333333333,6.147708333333334,3.47659,5.2946,1.4698833333333334,4.337325,4.115025,7.4878,4.745375,3.365435,2.2381100000000003,4.382695,1.790512,1.11509,4.358975,6.2416,1.9248900000000002,2.303506666666667,2.75389,3.392925,3.49172,3.61821,5.0943,3.2538033333333334,4.11683,3.725314,3.40373,3.5980333333333334,3.82119,2.939955,2.58096,2.3423475,2.45056,2.66572,4.26744,0.5261233333333334,2.5471333333333335,4.678505,2.914135,3.525733333333333,4.389705,6.12185,4.02805,17.56876943939394,2.9511800000000004,3.953666666666667,1.4483840000000001,0.8456872727272727,0.8456872727272727,0.8456872727272727,0.8456872727272727,0.8456872727272727,4.17701,4.708185,5.15175,9.3526815,2.56305,2.56305,4.479565,4.583760833333333,1.3379075,2.2805766666666667,3.89423,2.611125,2.627825,2.2376,2.97883,3.825902,2.230085,3.923065,0.8027071428571428,3.0268466666666662,2.8276966666666667,3.066523333333333,1.3412233333333334,3.3315566666666663,2.24499,0.92705625,2.79209,2.7670399999999997,1.123788888888889,2.48233,2.669646666666667,2.1002533333333333,4.448518,2.0245433333333334,3.031836666666667,2.08499,2.6918,1.0735644444444443,2.78173,4.9959793333333335,3.6107333333333336,1.08709375,2.9757033333333336,1.307845,2.6229400000000003,2.9638266666666664,4.648154999999999,2.9798033333333334,2.5720233333333336,4.85041,2.9413,2.137335,2.8454633333333335,2.5835733333333333,1.9495333333333333,2.89847,3.259463333333333,3.21921,3.1245666666666665,3.0979033333333335,2.833133333333333,2.4677325,3.709225,3.709225,2.96589,1.98999,1.8726,2.85482,5.51117,2.933033333333333,1.9300433333333336,1.7578325,3.25389,4.72325,2.7711666666666663,1.1070579999999999,2.703488,1.40202,3.9071,2.1485333333333334,2.460226666666667,2.16735,3.6474333333333333,1.180274,1.6514,1.4166833333333333,4.15474,2.6269966666666664,4.075865,0.9734577777777778,4.1154,2.0524766666666667,2.4605475,1.787734,1.653605,3.2512899999999996,24.23403222943723,6.83886,2.79545,3.5264625,2.2148,10.27285,3.04298,0.971705,2.555283333333333,2.34801,2.103613333333333,3.3019,2.59244,2.5163166666666665,0.86067,3.2562166666666665,2.5235166666666666,2.89843,2.9751100000000004,2.852446666666667,2.062676666666667,2.170313333333333,2.91651,2.57441,2.19309,1.59786,5.33352,4.69228,2.651675,2.915225,2.3017433333333335,2.4097033333333333,8.2584975,1.9914699999999999,5.01705,2.149425,1.948895,7.55943,3.2205833333333334,2.883706666666667,2.56265,1.8014160000000001,1.5381153846153846,3.3912333333333335,3.3547,4.17484,1.51608,3.983033333333333,1.41785,1.41785,4.12798,4.3623,3.0108677142857143,3.0108677142857143,6.294919999999999,3.402675,0.394726,11.827434413919413,1.18105,0.9472142857142857,3.896520833333333,1.4725517948717948,1.6987975,6.51003,3.758995,0.7778345454545454,2.11524,5.061482848484848,2.5239421666666666,4.10346,1.4297857142857142,5.6084,4.94443,5.04785,3.6879195,2.04102,2.66878,2.6469733333333334,2.396,2.25228,5.125236666666666,4.907085,4.574225,1.9475025,4.837375,4.172385,3.0774166666666667,2.3524525,4.785405,2.5403266666666666,8.566943333333334,7.2272925,1.9553175,2.09444,1.741482,4.573933333333334,4.573933333333334,3.4347666666666665,2.88205,3.1122425,4.90122,9.8309675,4.312545,2.460885,5.5668,4.16147,5.2664,2.05366,0.82207,1.353725,4.60341,4.8608,3.6501333333333332,2.954523333333333,3.708766666666667,2.3974766666666665,3.940965,4.58341,3.333605,5.42485,3.1433766666666667,3.752785333333333,3.5571,3.33083,3.3572,6.18255,3.137125,5.6707,5.3092,3.34257,3.318625,3.318625,6.082483333333333,12.0942375,3.721833333333333,6.3951525,7.43854,3.54633,2.46179,3.93307,1.2189033333333332,3.84712,2.1103825,2.950806666666667,2.877076666666667,3.27767,2.17138,2.5286166666666667,2.740876666666667,2.7943366666666667,2.9776366666666667,3.0956766666666664,4.057935,2.5494499999999998,2.9234733333333334,4.09377,2.98023,2.8053033333333333,1.20514,2.063935,2.92943,2.78647,2.5339466666666666,2.4423066666666666,3.6640333333333337,2.54646,2.4446600000000003,2.648843333333333,3.0595,2.8239633333333334,2.854423333333333,2.6388633333333336,3.098193333333333,2.7907933333333332,3.23592,2.6206866666666664,2.4078133333333334,2.2461166666666665,2.4910099999999997,2.7190933333333334,3.2554833333333337,3.3622333333333336,2.76548,2.0474975,2.0474975,0.6492633333333333,1.637002,4.11944,3.32674,2.64753,2.17138,3.3989666666666665,1.3321614285714285,2.9439266666666666,0.583724,3.467966666666667,3.227016666666667,3.359165,3.045726666666667,2.6562933333333336,2.799603333333333,3.0662133333333332,2.5729133333333336,3.5357000000000003,5.539006666666666,1.54355,2.5464333333333333,2.352396666666667,1.7185433333333335,2.1397366666666664,2.9825633333333332,2.89869,1.739124,2.6292933333333335,2.5951333333333335,2.5259266666666664,2.7009833333333333,2.8672866666666668,2.784143333333333,3.16886,1.340405,2.9403366666666666,2.292143333333333,3.7184666666666666,3.5718666666666667,2.0253875,1.7767799999999998,3.4411666666666663,2.64732,3.4732000000000003,2.5954633333333335,2.7353133333333335,4.843935,3.3229233333333332,2.1857966666666666,1.582084,3.3600666666666665,6.433353333333333,3.2251666666666665,3.451233333333333,2.893736666666667,3.16943,4.726744666666667,1.651828,1.2374222222222222,2.72439,1.8509066666666667,4.647165,3.0736600000000003,3.3798333333333335,2.89603,3.2153033333333334,2.322443333333333,3.5314333333333336,2.33629,1.7398060000000002,2.7689166666666662,3.438255,3.88403,3.84287,3.565915,1.7266625,2.63617,3.147795,4.100455,2.7958366666666667,3.598266666666667,3.9815666666666663,3.8089333333333335,1.414875,5.764612,3.29864375,1.6140233333333331,3.40691,3.32805,2.837805,3.96569,1.8602260000000002,1.8602260000000002,3.2434999999999996,2.8683300000000003,2.9457,5.2154,4.392185,4.803463333333333,1.5359099999999999,3.04617,2.7177133333333336,4.1881900000000005,2.9948933333333336,4.853901333333333,2.717893333333333,2.3834733333333333,2.5742499999999997,3.49085,3.698475,1.62284,3.0741433333333332,3.079965,2.2256975,4.580275,1.2763316666666666,3.7093,4.749055,2.664295,3.505345,4.15075,1.639225,1.5766333333333333,2.40175,1.11091,2.1263785714285715,1.9482825,0.4364785714285714,4.31649,2.3433,4.68004,4.27331,3.03003,4.694324999999999,3.2373999999999996,3.1735866666666666,3.4869,2.4917166666666666,3.1575933333333333,2.9449233333333336,3.2254666666666663,2.1593166666666668,0.6645353846153846,2.311636666666667,0.6311564285714286,1.8907566666666666,2.5019466666666665,3.16114,3.11876,1.4930466666666666,1.32899,3.919945,4.817435,3.45264,3.3772425,3.253795,1.94907,4.011735,6.832377777777778,3.67356,5.66511,1.4926575,3.92461,1.8879575,3.99364,3.906045,2.08043,3.916245,3.241245,3.911285,4.005885,2.2445975,4.036085,6.7272625,5.32015,3.276785,2.90174,1.7003125,2.053295,3.679925,3.5337,3.160925,3.62507,3.763355,3.27686,1.7416025,4.017045,3.01722,2.0543725,4.2564,0.951375,3.663005,1.6935775,4.064165,4.660441666666666,3.676955,2.8975074999999997,3.75923,3.565255,2.02123,2.275775,3.942633333333333,2.77219,5.6120775,4.262825,4.443665,2.262265,2.530655,5.10145,4.24268,2.4572060000000002,2.4572060000000002,5.836676000000001,3.9130010000000004,2.743835,3.02553,2.1119600000000003,2.70875,3.255085,3.7392341666666664,2.6111935,3.69648,0.9493199999999999,3.663195,3.069885,4.16543,2.59336,1.5344175,1.409045,3.201855,5.951935000000001,5.506235,3.45294,1.4615425,3.6765,3.666535,0.8042316666666666,3.01063,1.414732,5.555365,1.4272183333333333,3.918755,2.0563975,1.4930466666666666,3.15716,2.606435,4.314425,7.213206666666666,4.25355,4.337078333333333,2.362725,2.876175,4.945535,4.054655,4.427865,4.442525,0.9794875,1.6789565,1.0921225,2.487315,2.33261,4.647215,1.0921225,4.4821,2.236275,1.5382675,1.5382675,2.0543725,3.82776,4.384495,4.48133,1.547372,1.547372,0.9001733333333334,2.77068,2.0555025,5.9258725,4.282255,3.763645,2.86462,0.9826471428571428,3.583225,2.63696,4.436565,3.457485,3.87655,3.87655,3.450405,4.014755,1.9298025,3.609805,0.9630799999999999,1.91341,3.610465,2.33023,3.4346183333333338,3.4346183333333338,2.780105,4.645,4.61979,2.949745,3.66571,4.350185,2.64627,4.459275,2.82952,4.350015,8.675705,4.815455,2.581025,3.142005,3.17983,4.70314,3.007034,7.8875475,4.6615269999999995,4.63078,3.609045,3.83074,3.94571,4.63446,4.687905,2.27565,4.101,6.610396666666667,2.417065,2.18278,3.54803,3.36311,3.331615,5.2095,2.2032266666666667,2.222253333333333,2.682265,3.0648175,2.9259133333333334,6.947597999999999,1.437875,4.720178333333333,4.720178333333333,3.069735,3.72999,3.074495,2.43989,5.28924,4.38455,2.27468,3.8643,4.252175,3.435670833333333,3.323795,2.97884,6.3205133333333325,3.259975,5.1601,3.671355,4.870665,3.969915,3.583915,2.8683300000000003,1.8621999999999999,2.57088,3.90735,2.795865,3.064398333333333,3.07528,5.901248333333333,2.500445,1.61899,3.0821233333333335,2.3485133333333335,4.04618,2.76942,0.8042316666666666,3.223055,4.19641,3.95358,5.7733550000000005,2.95306,3.13065,2.9432033333333334,2.9432033333333334,3.6795725,4.76037,3.78828,2.0721275,6.23411,2.100385,4.547825,3.752185,7.90857,2.774376666666667,1.3013633333333334,3.325065,4.34588,0.63982375,4.011,3.17522,3.362865,3.23941,4.857295,2.1153999999999997,2.482385,9.089690000000001,3.44575,2.84922,1.4272183333333333,3.660205,2.65171,2.3180175,4.12305,5.5361875000000005,1.6893775,1.2089833333333333,1.0742450000000001,4.197575,3.82214,3.558115,3.562135,3.562135,1.7416025,2.209725,2.9735127777777777,0.8717977777777778,2.93094,1.0935225,1.7266625,3.62345,3.750035,2.66755,3.003005,2.568204166666667,4.47714,4.49718,3.534215,3.261525,2.877935,4.31262,6.56875,3.99087,0.91056375,2.573471,8.62433,4.563245,3.867245,0.9880575,4.46969,1.3836950000000001,4.1776475,4.1776475,3.634865,8.893625,0.9469477777777777,5.16705,4.432115,2.2733166666666667,3.9530175000000005,3.998655,2.1731075,9.562599333333333,1.77862,2.339376666666667,3.68018,1.6036233333333334,4.113468083333333,3.04479,3.3871,3.32952,2.853575,3.36584,1.1580766666666666,7.32717,4.24732,3.87714,4.13592,2.0837675,2.8975074999999997,3.9646858333333332,3.610155,0.6409215384615384,3.900225,4.44627,4.922805,2.04791,1.39385,4.92327,4.31743,8.20733,0.7178638461538461,0.752865,0.752865,1.8556333333333335,1.3732166666666668,1.3533300000000001,1.713,4.786825,1.1828133333333333,0.8183457142857142,3.9611025,3.50428,1.4030825,3.43333,4.549895,3.35476,0.6565559999999999,1.717525,9.136045,3.2079383333333333,3.486485,2.705255,1.4805625,2.4663766666666667,2.61827,4.86205,4.21744,3.80579,0.9188714285714286,1.460332,0.902834,4.6808425,4.30245,4.12899,0.8717977777777778,1.805602,3.960525,2.2089714285714286,4.626850833333333,0.9960925,4.5695,0.6171783333333333,0.6171783333333333,0.6171783333333333,10.22411,4.07553,1.0935225,3.67809,4.609745,3.15163,3.178435,4.661740833333333,2.801235,1.8335066666666666,2.22677,0.6565559999999999,1.4607876666666666,0.50095,0.7072583333333333,1.3964816666666666,4.48364,3.78261,2.112425,7.488006666666667,4.858068333333334,0.65765,5.77555,5.166830000000001,3.714955,4.62937,7.762714000000001,3.9369465476190477,4.858068333333334,4.608377750000001,2.452706666666667,4.323195,3.769865,6.952195,3.45177,0.487279,1.52513,4.07919,1.7397680000000002,1.2089833333333333,4.0496,2.365746666666667,1.644815,3.340545,1.661016,4.40666,4.323455,4.1794,4.65899,6.19469,2.839585,3.958485,1.414732,2.3103725,3.82001,3.830165,2.27468,4.073845,2.533185,4.923805,2.863505,2.293945,3.2623533333333334,1.710346,3.61061,0.8717977777777778,2.26926775,1.0742450000000001,1.681715,3.57818,1.437875,1.3964816666666666,2.2281175,3.04744,7.44526,0.9188714285714286,0.9880575,1.2878479999999999,3.664585,3.988505,1.2878479999999999,3.93341,2.3103725,0.63982375,0.8717977777777778,1.8556333333333335,1.414732,0.4364785714285714,1.6501180000000002,4.6269480000000005,2.2733166666666667,1.3814333333333335,2.98309,1.414875,1.77862,2.7009816666666664,2.22677,4.54083,2.7009816666666664,0.8042316666666666,2.683026,2.56325,0.1023434090909091,0.1023434090909091,0.1023434090909091,0.1023434090909091,0.1023434090909091,3.22926,2.7256033333333334,2.701726666666667,2.7700033333333334,4.727345,3.870645,1.787734,3.768775,3.522715,2.11391,5.07847,2.690535,2.34078,2.34863,2.574715,4.484515,8.086566666666666,2.33773,2.002796666666667,3.200212857142857,1.010252857142857,1.3691066666666665,2.4317699999999998,2.0754033333333335,1.571205,2.75344,2.21576,2.6961099999999996,2.644233333333333,2.653233333333333,3.78726,3.82955,2.6996033333333336,1.320192,3.709625,3.73284,1.4628533333333333,1.319634,1.319634,1.319634,3.63274,2.7909166666666665,1.0775833333333333,2.35616,1.2524728571428572,4.28084,1.5673133333333331,6.898536666666667,3.3266825,2.7727066666666667,3.25263,3.25263,5.535763333333334,3.246175,4.413585,5.241,2.2999925,3.1251800000000003 -GSM1946774,0.0,1.94015,1.94015,1.53839,4.37204,6.0071,2.3366940789473687,1.7934533333333331,7.488917083333333,4.42869,3.1804466666666666,2.43004,2.75092,3.379305,4.30421,1.798398,1.451408,5.07585,2.538996666666667,2.3084125,4.71169,5.319063333333334,3.88674,2.340415,1.8185600000000002,4.0818,4.46426,4.37575,0.701545,1.6362169444444445,1.8902377777777777,1.7434375,1.710135,1.1014957142857142,0.68613,3.109800714285714,1.570765,1.9078825,1.2171575,2.1137975,1.0763775,1.16358,1.128272,1.454964,0.938252,0.9486060000000001,0.7696780000000001,1.2399985714285715,1.6158919999999999,1.8521640000000001,1.487406,2.0329,1.728324,17.9256625,0.38377199999999995,0.827786,1.101042,1.8515979999999999,1.423512,1.74452,1.0574,1.0574,1.0574,1.16613,1.068194,4.7188225,1.143855,2.4015275,2.0907225,2.44655,0.986038,2.3215175,2.33094,1.9499425,1.51724,1.862765,1.54962,1.693825,2.58292,3.78937,4.52668,4.821,1.58126,4.59286,4.48066,4.2431,4.197575,1.0708725,7.52617,0.63185625,0.63185625,2.155115,1.1248385714285714,16.77555,4.405775,5.33475,5.3034,4.218915,4.10264,5.12095,0.46746,2.3425083333333334,1.88305,2.36927,4.670505,3.555915,1.465875,3.3478333333333334,3.2738066666666668,2.835593333333333,3.646933333333333,3.472065,4.82001,2.93836,4.53995,2.9679633333333335,0.6937954545454545,1.463002,2.70455,4.85621,3.35017,0.54251125,3.67402,3.868425,0.804785,4.20721,1.7489897402597403,2.39364,2.54755,2.0338325,3.876885,5.71795,3.378405,2.6539366666666666,3.228806666666667,3.12159,4.141935,3.02173,5.54515,3.382765,4.327525,3.14882,2.324355,3.719805,2.46135,6.866826666666666,3.485445,3.185865,5.45355,3.001965,4.515705,0.76431,9.527515000000001,3.62565,1.72513,1.7658066666666665,3.1656366666666664,2.56643,4.651985,5.5108,2.126755,5.013035,2.75254,4.483435,2.126755,2.74113,4.47385,5.067569166666667,3.67186,8.545433333333333,3.687285,4.99459,3.066415,5.20635,4.218935,1.8998,8.36343,4.140885,4.123995,3.44352,3.548,3.308845,2.308985,6.0906649999999996,2.307775,3.958475,3.955455,5.11885,4.766845,3.521835,1.4234799999999999,2.760555,2.852215,2.013975,2.013975,5.944710523809524,2.97004,1.9475533333333335,4.287225,4.53451,2.73627,1.4761,1.1651333333333334,6.7679,2.89677,6.7498,5.5198,4.02827,3.831945,3.121805,3.76589,3.485205,3.88659,4.13317,5.9238,2.92485,3.59281,9.042086666666666,4.471075,3.5507666666666666,3.0675033333333332,2.7328499999999996,3.8632333333333335,4.358324166666667,1.9081375,2.62375,2.19632,1.7562719999999998,1.6060733333333335,2.67369,1.84186,1.9867625,3.0166299999999997,2.7869166666666665,2.39204,2.7818133333333335,4.48066,3.47707,3.621935,3.449625,4.140995,1.2628083333333333,2.128965,2.8947522857142856,1.9814520000000002,2.586676666666667,2.1701200000000003,3.4218333333333333,1.7624479999999998,1.3813700000000002,2.7522366666666667,0.671474,1.5474266666666667,0.5262566666666666,0.5262566666666666,1.5455133333333333,2.5635966666666667,2.250226666666667,1.4796766666666665,1.61463,0.31145,2.7682533333333335,0.671474,1.2895866666666667,0.19331594594594595,1.5565066666666667,1.9973375,3.395633333333333,2.1503433333333333,2.1934666666666667,2.55387,2.252333333333333,2.390703333333333,2.50242,2.2845066666666667,2.3245566666666666,2.681203333333333,1.89977,2.81437,4.168705,0.6890383333333333,1.8854833333333334,2.5929966666666666,1.9809366666666666,3.545116666666667,1.497934,2.536303333333333,2.2269,4.344193333333333,2.0210333333333335,7.3320590476190475,1.6066857142857143,2.7226166666666667,1.972025,1.959995,3.3381000000000003,1.91887,1.8934175,4.0672,2.728896666666667,2.16021,3.87772,4.294785,4.32387,3.69779,2.34363,3.42345,4.547135333333333,3.878915,3.948295,4.27687,4.661035,3.021675,3.94819,3.5345,0.91027,4.84159,1.2658633333333333,4.44944,3.82356,5.9294709999999995,3.715275,4.260555,0.9597625,2.294345,3.45745,4.083925,0.8137114285714285,1.1328748717948718,2.0665588095238094,3.1364997142857143,5.775145,5.61411,2.30624,3.228645,5.33605,0.32940714285714284,3.400365,2.386815,0.95127125,4.63055,2.049575,11.83198,1.2069925,1.3978925,2.18565,2.418565,2.2177430263157896,5.0542580263157895,0.3953405263157895,1.6948633333333334,3.0461066666666667,1.080725,3.8006666666666664,1.036052857142857,5.11715,3.81575,2.1182,5.66985,5.2727,2.320785,1.13673,4.2272,4.459295,4.41452,0.8520254545454545,7.7874,2.7742,4.59796,2.6933333333333334,2.4158166666666667,4.57572,2.34016,2.6983366666666666,2.030413333333333,2.48341,2.97166,2.950276666666667,0.33996625,4.05256,3.814965,3.830295,3.884935,4.491015,6.120443999999999,4.041125,1.69035,5.33745,4.42703,4.24163,4.297175,1.0428016666666666,2.73826,3.2527633333333337,2.6393933333333335,15.713835,3.143365,3.78504,4.073675,5.32785,2.56878,5.090816527777777,1.6494825,0.7732755555555556,2.602025,3.55352,3.694905,3.93867,6.528941666666666,3.0236966666666665,2.39476,2.129495,3.3638333333333335,4.69963,2.2649,0.40857336309523806,2.4559597826086956,1.900515,1.158825,0.4761607543995859,0.5437481457039337,0.40857336309523806,0.40857336309523806,0.40857336309523806,1.16502,1.3074175,0.9701325,1.526835,4.3527625,0.2190255882352941,11.174946336580087,3.345833333333333,2.8203866666666664,4.124265,4.250915,3.917465,2.130115,4.7356,4.007417,4.230145,3.881755,0.6638046153846153,3.3721,4.271033333333333,0.5139742857142857,3.496655,2.8913333333333333,4.639175,0.6435709090909091,1.91126,4.490525,3.388075,1.8716025,1.7835033333333332,1.6194,3.126746666666667,4.068295,3.04611,2.975573333333333,5.22895,5.58645,4.920145,3.286326666666667,3.44234,6.788600000000001,3.7918000000000003,4.939455,0.4133780952380952,3.07934,3.9466133333333335,2.1002033333333334,2.723745,2.7129475,5.517146666666667,0.607915,2.678225,4.356505,4.250685,1.03419,4.43292,2.88247,5.0144,3.12325,4.144835,3.431445,4.326365,1.1901816666666667,3.43065,2.765223333333333,4.654815,3.94044,4.2351,5.795,4.4887,2.67904,5.05322,2.27071,2.9684,3.2397733333333334,2.4972133333333333,2.7243866666666663,2.326303333333333,1.7720680000000002,1.4149166666666666,2.14255,0.8111342857142858,1.68614,2.1297866666666665,2.0982433333333335,3.0872766666666664,3.1532366666666665,2.820703333333333,0.9274877777777779,4.8967,3.373533333333333,5.3456729166666666,2.6404929166666666,3.1057133333333335,2.96687,1.7206333333333335,1.7206333333333335,2.5065406493506495,2.5065406493506495,3.3540506493506492,0.5028742857142857,1.8616033333333333,2.1400033333333335,3.7029333333333336,2.2293483333333337,2.2293483333333337,2.2293483333333337,7.3451361904761905,4.240645714285714,0.9592545454545455,2.874745,4.860626666666667,2.46846,4.59122,3.232255,2.34479,4.180205,3.08618,3.1153833333333334,1.15687625,2.0281066666666665,2.8078033333333337,2.383436666666667,2.512516666666667,5.7714,4.267399999999999,3.855166666666667,4.89725,1.9627666666666668,2.66605,3.1569533333333335,0.9887555555555555,2.1676800000000003,4.624338,7.674835,1.362335,2.99359,4.37693,1.8246259999999999,1.7802075,1.7802075,0.99283625,4.78583,7.52167,4.389465,5.441151,4.596725,1.7698333333333334,4.067075,3.01253,4.625245,4.9916133333333335,0.3585236842105263,2.88952,2.54563,3.729415,3.94737,1.8220960000000002,1.9359275,2.549525,4.36087,4.00862,3.207505,2.47106,1.4702,6.86133,5.11745,4.53646,3.490355,5.0993,4.709025,4.665015,3.723575,3.5741050000000003,1.9715175,1.1045157142857143,2.714545,3.96979,3.61741,5.5456225,5.799825,2.44205,1.6866700000000001,2.6715033333333333,2.692296666666667,2.8873533333333334,0.7069678571428571,2.181035,3.68705,1.0791575,5.02665,3.22935,6.052855,1.268826818181818,1.268826818181818,4.17384,3.66829,3.8845,5.4943,2.7614566666666662,2.2940166666666664,4.159945,3.386555,2.18091,3.3938,2.523423333333333,4.153085,3.3661825,3.82409,4.68413,1.079031111111111,2.6078,4.27152,4.03485,3.30594,2.53394,1.75844,0.8091288888888889,0.8091288888888889,0.8091288888888889,0.8091288888888889,1.6033155555555556,3.6838975,3.6838975,1.6747966666666667,6.942956666666667,3.097525,4.188895,3.238163333333333,2.69765,4.85877,4.257945,4.924885,5.15365,1.8384575,4.028265,3.7015,2.63943,3.33852,3.33249,3.063185,4.216895,1.9873,4.31032,1.64419,3.3887237499999996,3.006515,1.6962325,1.1691816666666666,2.89047,4.40362,1.304014,0.8261266666666667,3.81911,1.2807775,4.855430666666667,4.397625,1.3325328571428572,3.494935,0.7524822222222222,2.62384,2.6357466666666665,2.3636766666666666,2.667125,3.98441,2.901365833333333,4.65147,5.38725,4.385145,4.30974,1.9669975,1.2695057142857142,4.106865,5.0282,1.557685,1.557685,4.126095,0.22085800000000003,2.459703333333333,0.22085800000000003,0.22085800000000003,0.22085800000000003,0.22085800000000003,5.1893,2.6164833333333335,3.03999,3.49844,3.2395033333333334,4.55682,2.6157,1.02635,1.02635,1.0210933333333332,1.0210933333333332,3.76945,1.73352,4.402435,1.5999948214285715,1.5999948214285715,4.67631,0.5233800000000001,2.2127825,7.249443333333334,4.88931,3.220635,3.73927,0.9423375,2.508135,2.1013825,5.07005,4.42622,4.350245,3.84686,1.28539,2.754955,1.9977825,7.7113,1.82733,4.4196,4.6586,2.986795,3.84584,5.89582,8.130955,4.01467,4.473745,4.469215,2.314105,3.14496,2.327265,2.348175,2.062725,3.841765,3.514045,5.932148333333333,5.84365,4.140565,1.1850133333333333,1.64923,3.78353,3.79663,2.112095,4.34163,3.833445,4.6387,1.8314433333333333,3.8158,1.5634833333333333,6.267440000000001,2.53473,2.34844,2.1503533333333333,2.50066,3.3623666666666665,3.4340666666666664,3.402366666666667,2.8428466666666665,3.3876000000000004,1.8243379999999998,3.249005,3.1369,3.141295,0.378517,3.00984,4.12525,2.654725,5.44975,4.988995,4.608675,6.727651,4.67632,2.21196,4.083255,5.1354,1.5561116666666666,4.68269,5.76255,5.1368,4.53982,3.151545,5.55345,4.98634,3.82233,5.4544060000000005,7.6316500000000005,3.965695,1.1754966666666666,1.423845,2.436595,1.856146,4.51638,3.996255,4.844465,2.5665033333333334,2.3496533333333334,2.6703233333333336,2.464916666666667,2.3038966666666667,0.9990455555555555,0.5084064705882353,3.936295,3.88613,3.6246333333333336,4.092695,2.92776,3.3357666666666668,5.202671666666666,2.95661,0.5991588235294119,3.15,5.6206,1.69993,1.653204,3.687105,3.345755,2.4686266666666667,3.7665666666666664,4.04133,2.742036666666667,2.31196,2.31211,2.493116666666667,2.79267,4.347315,5.176159999999999,6.49311075,1.359264,4.7409,3.111648333333333,4.774093,2.405673333333333,2.866555,2.15348,1.7011966666666665,1.4470275,1.4470275,2.61262,2.44043,2.6994833333333332,3.992825,1.68207,2.064445,1.830095,0.47135375,3.710995,0.5654191666666667,0.94033875,3.63564,4.000095,3.7752,1.67796,4.41965,3.197236666666667,0.7698214285714285,4.090225,3.9520657142857143,3.127466666666667,2.49865,5.1539,0.2743386206896552,2.2744385,3.249075,1.4603975,3.619665,6.7157,2.312975,1.4598366666666667,4.00972,3.80615,2.60914,2.60914,3.54768,2.34719,4.691215,5.876284999999999,5.0196,0.98169,2.720466666666667,2.471363333333333,4.53222,5.07775,5.2093,4.814735,4.3181666666666665,3.7892333333333332,3.742233333333333,3.6155333333333335,4.056633333333333,3.059646666666667,3.092803333333333,0.6273685714285715,2.383645,2.47689,3.51326,3.144856666666667,3.1357466666666665,0.7686491666666666,2.811605,3.7550075,4.74844,5.7916,4.55948,1.90197,1.90197,0.805278,2.981705,4.35588,3.867405,4.574634285714286,3.369715,4.643755,0.5761018181818182,3.239015,3.66634,4.26563,3.717763333333333,0.7840114285714286,3.017445,3.94708,5.61055,3.85217,5.0137,2.799745,4.135445,1.556805,1.00726,2.7210199999999998,5.01755,4.221005,3.132675,1.423515,3.87039,2.598575,2.43364,2.7849962222222224,3.0300266666666666,4.5140666666666664,3.0279833333333332,1.716402,3.4882333333333335,1.4413244047619047,2.9049899999999997,2.557846666666667,2.195795,2.8634500000000003,2.7060099999999996,2.4085199999999998,2.7288766666666664,3.864265,3.2003233333333334,3.568126666666667,2.39167,1.947685,4.065376666666666,2.99945,2.43039,3.568126666666667,2.1563866666666667,0.8089672727272728,2.4469275,1.0240566666666666,2.1413775,1.652535,0.9542090909090909,1.7373475,1.76138,2.6654479999999996,2.566425,4.60553,1.5365975,4.217115,3.0604833333333334,1.63665,2.34141,2.61566,1.5570533333333334,2.8512566666666666,2.7079833333333334,2.210455,1.723165,1.8334759999999999,3.6317,2.2909266666666666,2.9459366666666664,3.093476666666667,3.1379,3.8874,2.0722166666666664,4.1183000000000005,3.4878,3.7137,3.040836666666667,3.4675,3.6401333333333334,1.68116,9.648175,4.23826,4.336435,3.281135,2.79546,2.08206,4.022635,1.6858239999999998,4.131655,4.408875,1.360276,2.46193,1.1020433333333333,2.31619,1.7158933333333335,2.4071233333333333,4.980253333333334,3.07467,3.549885,4.914235,0.67545875,1.374192,0.961879,3.538735,10.361628333333332,3.5437,6.6785,2.0393825,5.2042,4.304745,2.56185,5.06065,0.2859482352941176,0.798097142857143,4.7146,4.26671,6.7703524999999996,1.8656225,4.22249,5.57,4.474575,4.398425,3.514895,4.703785,3.63592,5.957498333333334,3.868565,3.233665,3.23231,2.3341566666666664,1.9807633333333332,1.3966313125,2.3302833333333335,3.92985,4.87397,1.54336,8.96825,1.8467366666666667,2.8725725,1.075436,1.075436,7.352071666666667,3.05402,2.168425,2.2242225,2.7382933333333335,2.0881766666666666,0.97822,3.680856666666666,2.6799700000000004,0.6217357142857143,1.7719133333333332,3.1891,3.1891,1.2180666666666666,2.567086666666667,2.2480066666666665,2.5780216666666664,1.364365,1.9600833333333334,4.724606,2.6366333333333336,2.6767,1.2404475,1.2404475,3.843155,5.4265,4.4183,3.12006,3.661845,6.14629,2.398,2.8384066666666663,3.0491466666666667,3.96156,1.1534716666666667,3.2958966666666663,2.661975,3.73328,2.17118,4.742025,3.600955,4.36046,3.3208,5.605207,0.9674544444444445,2.0959025,1.922475,3.552835,4.2988475,3.842975,3.8733,3.67139,2.863585,1.6450375,4.177495,3.38686,3.416105,2.3450366666666667,0.86137875,3.36663,4.291635,4.75135,1.2408633333333332,2.9211766666666663,2.54363,1.82843,1.7854383333333335,1.7854383333333335,1.2107783333333333,2.0650866666666667,1.0606485714285714,1.384454,4.407575,4.442945,0.49848571428571425,3.69524,3.498866666666667,3.96296,5.1928,0.42005299999999995,8.77242,5.38775,2.6268,3.82617,4.46829,5.482348571428572,4.782945,6.601275,0.7045254545454546,2.8236866666666667,5.3716,2.6224366666666667,1.7667625,2.02012,4.576085,5.16583,2.4592298214285715,3.0030300000000003,3.1904333333333335,1.876325,4.431505,10.839749999999999,8.269372916666667,3.7944666666666667,4.55412,3.0636925,3.088,3.97482,1.89891,3.0064566666666668,3.59725,4.631025,4.81994,4.70735,6.35929,2.24146,4.00695,4.544515,4.691755,4.7385,7.328116666666666,4.1572175,6.02085,3.554025,3.107545,2.96425,5.8215,3.72994,5.0224,2.2307,3.1590900000000004,3.359855,5.93155,4.075225,4.012845,1.448022,0.90274875,2.519975,0.5407226666666667,3.88281,3.57729,3.50083,2.911975,2.0967,2.974425,2.581025,2.971908,1.8778860000000002,3.0038,2.941725,2.31286,2.617175,3.870986,1.2166266666666667,2.7043516666666667,5.07635,3.810333333333333,1.1141175,2.8943966666666667,3.708734166666667,3.71672,1.5285625,5.72995,5.44415,2.2558866666666666,2.9522833333333334,29.940632019482152,3.249686666666667,1.660595,4.006733333333334,1.6320499999999998,2.5903,2.965673333333333,3.4356000000000004,1.94439,2.687225,1.96453,3.4928755000000002,3.211876666666667,2.4183425,1.5362425,2.19426,2.864625,0.3796986363636364,1.2337425,2.729153333333333,1.6538879999999998,3.420755,1.5285625,2.3139766666666666,25.370913,4.869275,3.666115,3.53886,2.463325,2.531075,2.673666666666667,2.3058725,3.606625,5.184545,5.4409,1.60883,1.781072,2.23866,2.3529566666666666,3.7892483333333336,5.28575,4.647615,4.431285,0.18602170212765956,5.0147,4.945736666666667,3.916845,9.16537,1.0532825,1.0532825,2.9909466666666664,2.886175,5.51795,1.8616144444444442,1.018771111111111,4.55385,1.9536925,4.20118,4.07168,3.23443,4.064775,3.97765,4.07409,2.879925,0.7223811111111111,3.34529,2.2333083333333335,4.350675,7.641855,4.371475,1.9488200000000002,1.9488200000000002,6.6160749999999995,4.860755,4.22359,5.5577,2.31847,5.316003333333333,1.33264,1.4965766666666667,3.08391,2.27955,2.85361,2.7649633333333337,3.777565,4.374225,4.18819,5.37425,2.317735,2.30548,1.91348,2.617225,2.1554025,2.0128,2.05959,4.697168333333333,1.868305,3.4678109523809524,2.46787,2.9520999999999997,2.54054,1.82245,1.4711142857142858,0.9330740000000001,2.46345,3.7778666666666667,0.72348,4.436655,1.8524825,5.757012083333334,1.9509075,1.5969675,1.4535075,1.56159,5.596267222222222,1.8057480000000001,3.10406,3.5710333333333337,1.2369875,1.7876375,4.819412,3.2146500000000002,2.10202,3.5778,2.845993333333333,2.8602000000000003,1.3169476785714285,0.27635166666666666,0.27635166666666666,0.27635166666666666,0.27635166666666666,0.27635166666666666,3.614455,2.80789,2.4636425,3.196376666666667,1.3576050000000002,2.66037,2.9428033333333334,2.476246666666667,3.279815,2.820175,1.6984599999999999,2.9194666666666667,3.19407,2.20257,1.9358175,3.71962,2.6892300000000002,3.886066666666667,4.997,2.5315499999999997,2.5982433333333335,2.5892166666666667,10.847100000000001,4.723805,4.472305,4.90399,4.25852,2.85711,5.115,3.946295,4.10137,5.462963333333333,3.88807,3.01629,2.33115,3.39844,5.069401571428571,3.330825,17.06096419047619,1.113605,4.30309,0.8533822222222223,1.1821475,2.886,4.67855,3.78004,3.92955,1.5551566666666667,2.28298,4.113945,1.9078,4.451955,3.1519725000000003,2.654383333333333,0.6822233333333334,3.03563,4.60929,2.319165,2.41167,2.1654175,19.5912325,1.255984,1.243385,2.5187,0.28773038461538464,1.8074175,2.79839,1.9126766666666668,3.0559166666666666,2.719925,7.2499075,1.874975,2.57515,2.225175,2.1627125,1.5884,3.3245833333333334,3.24877,3.28395,3.07281,1.90787,2.5153325,3.0998513888888892,4.8581,0.431305,3.4065999999999996,3.0782166666666666,3.04167,2.08749,3.5374605,3.533105,1.5628766666666667,2.358026666666667,2.12129,1.4823066666666669,1.7720900000000002,3.37642,3.33496,0.7600066666666666,3.35645,5.0316,4.15439,2.307328,2.307328,2.9895266666666664,4.27817,3.019445,3.36941,2.3142875,0.8990609090909092,3.88637,3.635365,6.229,3.897125,2.382374,2.382374,1.2870925,3.421685,5.1798,4.118605,4.20151,3.00306,2.2586666666666666,4.27767,3.228275,4.12882,2.8952566666666666,2.1430433333333334,3.970566,3.1233133333333334,2.696823333333333,1.9352533333333335,3.635905,2.701925,1.6721266666666665,3.679325,3.20125,4.406545,3.490133333333333,4.52774,4.46396,6.3355725,3.935365,2.14188,4.802415,2.9256,7.39319,2.5850833333333334,1.2345733333333333,4.52732,3.3775666666666666,4.611855,0.45209,0.7859925,3.663725,3.55566,2.093232121212121,4.253335,2.82782,2.896755,8.762196,1.828686,1.282292,3.5935,2.66552,3.422215,4.78257,6.529353333333333,3.1402633333333334,2.1480633333333334,2.9254933333333333,1.9006133333333333,3.23321,8.474654950738916,0.9381835714285713,0.979105,4.609385,0.48602333333333336,1.68303,2.1200575,2.6752,2.99085,2.833225,4.73684,2.3221075,13.191279999999999,5.1336075,2.4926225,2.4926225,4.42109,0.8754583333333333,4.921176666666667,3.95141,4.10623,5.614086666666667,3.63117,4.88238,1.4096566666666668,2.714285,2.696055,2.604385,3.095215,2.70246,2.99861,3.57717,3.561035,3.13096,2.974745,3.26062,4.29927,4.3722,2.9005033333333334,3.1953533333333333,4.8074725,4.34543,18.061972976190475,11.776539166666668,3.2606450000000002,0.6880408333333333,1.4819142857142857,4.39987,3.3841,3.1185433974358974,2.448375,0.82671,0.6326266666666667,0.6747285714285713,2.049525,1.6122260000000002,5.20185,3.3988333333333336,0.7142509090909092,3.29964,2.44264,1.7457025,1.74057,6.114153333333333,1.5248680000000001,4.364065,2.959055,3.05672,2.35618,2.5888766666666667,2.52074,0.7603036363636364,3.12677,2.96939,3.8275346666666668,2.9865399999999998,4.80642,3.610225,3.248375,2.4324525,3.472385,5.85402,2.097815,2.4229225,2.41718,1.6272325,2.5404,2.2195675,2.641125,0.909422,1.37818,1.02600375,3.129625,4.453995,6.4354,5.7067,3.00377,2.358205,2.86655,3.5056,7.372446666666667,1.2542433333333334,0.37399,2.568355,2.20955,1.5288119999999998,3.4108899999999998,1.235812,1.7223860000000002,3.6484466666666666,2.8900826666666664,1.222705,1.9612999999999998,4.54157,3.717735,4.56321,3.91913,1.907375,5.1708,3.92757,0.7784076923076924,4.781085,4.147915,4.197909583333333,3.3706333333333336,2.80826,1.317498,1.02766,3.484395,2.740205,3.337535,4.17552,2.58436,2.6350466666666668,3.33817,3.7229,4.37438,2.457195,2.4637,4.456,5.69685,0.57756625,4.479085,1.846335,3.48291,3.9944333333333333,1.740285,3.06913,2.152055,2.02796,2.76041,2.3124158333333336,1.6791233333333333,4.65689,3.696845,1.25874,6.98296,1.05742,3.584475,1.6419533333333334,4.54812,4.017565,3.1694099999999996,3.18604,4.093315,8.73549,2.85223,3.547995,3.44158,3.69171,1.70351,7.97409,3.79047,4.09877,2.042205,4.063475,2.92815,1.05603,2.04666,4.202085,2.25136,4.147445,4.844665,4.080985,4.55165,2.11764,5.33495,3.92914,3.1069999999999998,2.45905,1.4256220000000002,4.176625,6.3397,4.19791,4.622415,2.97976,2.28282,4.062885,3.30001,1.184157857142857,4.04277,4.787105,3.84929,2.87386,3.607045,0.47468000000000005,0.47468000000000005,4.59745,4.08579,4.13772,2.312465,3.824895,5.7625,0.8265399999999999,4.18573,4.942115,4.79821,5.07825,4.651905,1.8179925,3.159555,2.09356,4.429855,0.67858125,4.03357,4.20318,2.80782,2.796003333333333,4.238155,2.367855,3.267255,59.474320482683986,3.267525,2.5677333333333334,1.647255,3.384285,4.001805,0.800015,0.98638125,2.065205,2.065205,1.329666,3.22924,2.273975,3.7250639999999997,7.36705,2.856673333333333,1.2886028571428572,1.3007533333333334,2.65905,3.9160150000000002,0.903908,1.881235,1.217224,1.7914575,4.1522,4.158035,3.39685,20.38536326839827,3.325995,4.017165,3.265665,2.1223566666666667,2.79533,3.213085,2.4500675,5.48965,1.5589460000000002,3.86247,3.322952753968254,5.8361725,2.039255,2.81201,1.88188,4.326335,2.276403333333333,2.3214575,2.0320533333333333,3.6238522222222223,3.64604,3.50736,3.845185,4.26154,2.5838,2.597065,2.994055,2.750055,3.0342172222222223,2.337305,2.01383,3.433755,1.167165,3.770985,4.799785,2.723155,4.794655,4.76734,5.195423333333333,2.03695,2.291865,2.743065,2.906575,4.025755,3.454685,4.67555,0.8370185714285715,4.110564,2.9286,3.78404,2.3325,1.7830059999999999,4.056321666666667,1.2347333333333335,2.783375,4.3373,1.12935,3.592085,3.50494,4.586885,6.048575,2.23842,2.902875,2.63229,3.8561666666666667,3.1491233333333333,2.6642346666666668,2.996166666666667,2.439083333333333,2.5303133333333334,1.3390866666666668,2.0726075,2.0726075,1.9642333333333333,2.08145,1.7595066666666668,2.5916433333333333,3.8329,5.40795,4.35376,1.670765,4.298005,3.869655,3.39614,4.235405,1.92323,1.82483,4.644570833333333,1.826795,4.313138333333334,3.604985,3.57378,2.4154033333333333,3.744043125,3.303105,3.018035,3.431935,0.14889408163265308,2.3675433333333333,7.722474999999999,1.5145300000000002,3.48845,3.04783,1.0039971428571428,1.1397216666666667,1.88175,3.73898,3.091125,7.36472,3.849625,3.50991,3.119295,2.607685,3.366305,3.50645,4.02756,3.27916,2.8495266666666663,5.2926,4.03413,4.220825,2.76365,1.9481925,3.50174,4.569065,2.749175,2.91027,2.14734,2.57305,3.864725,3.8155,2.738725,4.368495,5.1214,2.762395,3.93442,4.19858,3.602655,4.534115,3.279655,3.246605,5.88805,4.551365,5.3435,5.0232,4.36053,5.0317325,4.59438,3.921475,1.3321960000000002,6.5617,2.39251,4.28102,4.07749,3.95117,3.2121566666666665,1.9740066666666667,2.29784,2.4522166666666667,0.9609209999999999,3.3378,3.6077333333333335,3.11903,1.9405700000000001,3.7722,4.227285,2.5752200000000003,0.5580375,4.60357,4.692045,5.02695,4.803485,3.672295,4.624015,4.979835,4.690025,1.3814444444444445,0.9282384615384616,2.961703333333333,5.19625,5.85015,0.494125625,2.873435,2.510686666666667,3.29724,4.42876,3.8647666666666667,2.0467925,5.2957,3.477695,4.56889,2.993915,6.33115,5.1804,6.9011075,0.5584566666666667,4.12979,0.802636,2.319695,4.050433333333333,3.2274966666666667,1.3389333333333333,2.25848,4.229405,3.539565,4.32985,1.6495933333333335,2.0486875,2.85081,4.319845,4.1782,3.79058,1.6439039999999998,1.230259,5.6757,2.301275,7.7463,4.33231,3.57553,2.1589,1.636805,4.05376,4.571665,1.7844133333333334,2.384695,2.4651325,2.3675433333333333,6.617796666666667,3.0782049999999996,2.7685766666666667,3.6982808333333335,3.7097,1.96661,3.135135,7.0034975,4.581915,5.12015,0.5086718181818182,3.448715,4.07532,4.542208214285714,3.857515,3.95648,3.083905,3.25223,3.163575,2.926635,3.5025386666666667,2.06634,5.73482,4.715505,5.0446,3.89117,3.269775,3.094460833333333,2.1508325,1.2900525,0.91279,2.81041,2.567105,1.0883399999999999,2.6181933333333336,5.3616,5.01715,3.59369,4.155,16.52838,4.053605,4.469205,3.92408,0.7208258333333334,5.1234,4.441965,4.064235,4.85274,5.209,2.726795,3.44702,3.28885,1.544464,3.09233,4.68692,3.25926,1.5962640000000001,3.60827,4.89565,3.87244,5.1888,4.8204,5.6792,3.906605,2.662243333333333,4.101385,4.14443,2.36051,3.1237666666666666,2.9893933333333336,1.6128929166666666,4.92245,2.6572025,2.154576666666667,3.931845,2.41857,4.35205,4.065376666666666,2.30998,2.774005,4.40731,3.66198,4.32191,4.509635,4.8507,5.175905,3.10361,5.2318,2.6505916666666667,3.79015,3.65957,1.567672,4.52843,0.9988483333333332,4.39045,3.16791,0.9479242857142857,3.528715,2.278405,6.47443,2.485705523809524,2.485705523809524,2.485705523809524,0.6279283333333333,1.1824666666666668,1.8231,3.403675,5.51985,3.1031899999999997,1.93881,2.1807675,1.7557099999999999,3.801185,2.46585,0.4427569230769231,1.78721,2.2187775,2.95607,1.93498,2.389205,2.334785,2.093265,3.80292,2.8358666666666665,3.348735,2.99611,1.974005,6.37019,2.053895,4.25107,3.826195,6.63914,1.5707866666666668,3.67159,3.604935,3.810815,4.26933,2.826455,2.0139875,3.733165,5.8593641666666665,2.11077,3.595575,3.201725,1.953625,4.86994,4.437725,2.6963666666666666,2.202025,3.586115,5.618375714285714,5.85305,3.012155,2.31554,2.62413,2.970805,2.87877,3.8495,1.31315,2.705805,4.62455,0.7785875,3.46634,3.89182,3.68282,3.434035,2.526255,3.266,2.19173,4.642365,7.957141666666667,4.1019,3.32516,3.267445,0.9845375,4.64277,2.42392,4.25433,5.681170000000001,3.86088,3.751425,10.589095,4.812685,3.904435,1.51189,0.6841400000000001,2.712835,3.94726,3.53855,3.590375,2.1655933333333333,2.4480299999999997,2.2048566666666667,1.159905,1.159905,1.92595,2.38006,2.2948233333333334,2.3864300000000003,2.9702266666666666,2.547406666666667,2.6604300000000003,2.847236666666667,1.4064266666666667,2.401803333333333,1.9687466666666669,2.01153,1.57955,2.60108,0.7049833333333333,9.6472625,0.7049833333333333,3.149703333333333,2.0292933333333334,1.5964933333333333,4.324605,4.21018,4.293865,4.2936,2.104483333333333,2.914453333333333,3.411944666666667,2.0409866666666665,3.106643333333333,2.9019433333333335,2.6409033333333336,2.603196666666667,1.6486266666666667,5.38865,6.340482761904762,3.0238033333333334,3.4179,3.0194166666666664,2.4396733333333334,2.5645933333333333,1.1014957142857142,3.4633000000000003,3.2655766666666666,4.059645,5.90705,4.404845,2.8516366666666664,3.421466666666667,3.0391166666666667,4.176807777777778,4.318205,2.617453333333333,3.400185,3.1613066666666665,3.0507733333333333,4.62261,3.10665,3.674925,5.85656,2.00997,2.35948,1.6670366666666665,1.4875266666666667,4.711803333333334,3.5911766666666667,2.485,2.3048033333333335,2.2532900000000002,4.43861,3.699905,2.79744,3.3099399999999997,3.2584166666666667,3.4577666666666667,3.4533666666666663,3.5415666666666668,3.2234833333333337,0.5855375,3.7845333333333335,2.4305966666666667,2.5630966666666666,3.493975,4.411535,4.26434,5.2468,2.56304,3.9820599999999997,1.099095,2.917673333333333,2.917673333333333,4.070615,2.743105,3.75458,4.664525,1.758065,3.40783,3.725085,1.2652242857142857,3.647934333333333,3.217549095238095,2.2963276666666665,0.370911,5.0174,2.85543,6.397545,2.92015,5.9506,3.262405,3.88051,3.89067,1.5872104166666667,2.995745,4.087105,3.23653,3.17455,2.9497366666666665,5.445815,2.082975,0.98633375,1.9732066666666668,1.7512133333333333,5.45087,2.2737366666666667,2.4221733333333333,1.79192,4.34121,3.873845,4.024205,0.504947,4.08372,3.83514,2.4726066666666666,2.3099833333333333,2.57014,3.20838,3.92536,1.63563,0.6577684210526316,0.7759357142857143,3.5243333333333333,4.14154,6.020278333333334,4.809385,4.354675,5.2186,1.4277628571428571,3.9944333333333333,2.250973333333333,0.9831725,5.4783,5.6868,2.584515,4.675055,4.147635,6.63054,3.9882333333333335,6.180484999999999,3.641705,2.483311111111111,5.9839,10.284421435897436,2.55838,0.652334,3.294375,4.00895,2.317435,6.3549,3.855285,3.701735,2.7778166666666664,2.7778166666666664,5.687,3.35719,3.94585,4.914715,3.838555380952381,2.3384374285714284,1.14844,4.78053,2.689275,5.208495,3.498075,4.27508,2.922885,2.08872,4.484355,4.499215,3.4646333333333335,4.110155,4.580715,26.984709166666665,1.87708,2.537775,2.4045875,1.6511266666666666,2.4048966666666667,0.9714200000000001,2.729093333333333,3.009063333333333,3.3155666666666668,3.14269,0.6455784615384614,3.0534266666666667,3.66516,3.07823,3.19131,3.582725,5.5569125,4.675365,3.899455,3.65971,3.9240700000000004,3.827185,3.5452999999999997,1.695205,0.9992416666666667,1.5167433333333333,2.37556,1.5631466666666667,3.08249,2.34597,2.395696666666667,2.1462566666666665,2.77344,2.200775,1.78695,3.234355,4.2561,3.642895,3.94549,1.368392,3.3755666666666664,2.474493333333333,3.67664,2.24465,2.61269,2.50841,1.4650699999999999,4.272695,6.601936666666667,2.863385,3.75652,3.96328,2.636,3.3344050000000003,3.4894,3.46214,4.659485,0.32091272200772203,0.32091272200772203,4.914645,5.17865,3.20279,2.920675,5.31245,4.333385,0.6417623076923077,4.81128,4.364945,3.64621,6.2004,4.638505,7.47022,14.148471666666666,12.553342692307691,4.597105,4.23103,2.51851,0.5925976923076923,2.5004666666666666,4.33824,1.30196,4.596305,3.512866666666667,2.834493333333333,2.15735,2.0246133333333334,4.85888,4.24835,8.963274166666666,4.915045,4.048165,7.1773671212121215,3.42367,3.2052833333333335,1.36989,5.452371666666667,1.955505,2.4419166666666667,2.7813199999999996,0.2593953125,2.90819,3.63191,4.7428791666666665,0.84856,1.2317933333333333,3.885615,0.574597,0.574597,2.8939279166666667,3.1878433333333334,3.2842366666666667,4.006505,4.28962,5.5415,3.699465,4.144145,2.83221,3.1434233333333332,2.6396133333333336,0.80075,2.7186466666666664,2.90566,2.89327,6.83479,2.82535,9.107825,2.966725,5.7206,2.81006,2.32673,2.525375,2.734375,1.7031925,2.4067275,1.9046675,3.39249,2.3715475,3.9357949999999997,2.96177,4.211096666666666,4.211096666666666,2.6377516666666665,2.6377516666666665,8.780643333333334,2.4713366666666667,0.8078900000000001,2.51633,2.5192099999999997,2.56292,3.9357949999999997,1.917828,1.9752759999999998,1.528676,3.31459,3.813845,1.629275,4.424375,4.115815,5.94004,6.663975000000001,2.21538,4.36895,6.01228,3.80643,2.917435,2.160623333333333,3.373215,3.303224242424242,4.22086,5.247263333333333,7.469742,3.56225625,3.12949,1.1965933333333334,4.349765,3.825683333333333,3.79577,3.801196666666667,4.369515,2.395345,2.5573099999999998,6.33781,2.907995,1.24693,5.73439,3.76955,2.54116,5.18975,2.54116,2.81612,3.53086,5.1359,1.02548,4.099968888888888,4.556115,3.48245,1.30635,1.7715775,3.74956,3.923515,2.529715,6.797348333333333,4.03233,3.45763,4.000255,4.6089475,1.3536075,3.90627,2.501695,3.58858,3.98616,3.799835,4.797645,3.17931,3.66687,4.91208,1.9773936666666665,1.838625,3.17515,3.6715,3.4906,2.7764333333333333,3.637233333333333,3.0738366666666668,5.61675,3.35703,3.52048,2.893905,1.9682566666666668,3.664733333333333,2.100166666666667,3.04991,3.1027,2.88781,0.67858125,2.10573,1.8375066666666668,3.08822,1.8954339999999998,3.610398,3.983985,1.1803919999999999,3.00522,4.63382,0.890566,1.3909233333333333,3.312975,3.75509,3.5327,1.971745,1.7905166666666668,3.503845,2.513520833333333,1.6106266666666667,2.79364,1.89334,1.16683,1.3796075,6.493085000000001,3.40015,2.277855,2.446705,2.39878,3.948965,0.8537575,0.34139214285714287,0.8410342857142857,4.827005,1.7914282857142856,4.52381,2.029595,1.633390857142857,2.915100857142857,1.28171,1.055608857142857,0.718116,0.61038,2.5685525,6.3589,2.977415,3.624315,0.3130582142857143,3.51642,17.97885966666667,3.165625,6.918845402097903,1.1043225,1.1043225,1.1043225,1.1043225,5.8668675,4.032995,3.840475,2.3653866666666667,3.214465,4.809515,4.67029,3.823415,3.523925,4.161035,3.81263,3.929615,3.758221333333333,4.316545,4.86379,4.04138,4.74884,3.641615,4.248145,2.57408,3.716785,3.312285,3.74091,3.83423,4.239825,3.10253,2.41099,2.4459966666666664,4.11783,1.2783600000000002,3.83268,2.5621966666666665,3.288592,4.080985,4.37645,3.15442,2.803175,4.177845,2.97128,3.170345,5.18065,4.850545,3.329455,3.313625,1.697676,1.697676,1.9815,4.651075,3.85535,5.474292999999999,5.1625,3.499765,6.48825,4.716695,2.0502075,9.688205,5.3481,6.441682500000001,4.40521,2.8744,3.03622,0.258278275862069,0.83007,3.164822666666667,3.4131,4.682145,2.9822566666666668,6.22837,4.89144,0.5818914285714286,3.608815,0.48599899999999996,1.791002142857143,3.18528,2.867055,4.17916,3.83077,3.10137,3.48242,3.31834,3.75049,3.50328,3.61752,3.70484,2.39478,1.791002142857143,2.794155,2.1012325,3.59769,2.38247,4.03559,3.587655,1.70351,4.50986,2.79896,1.3403600000000002,4.533665,4.659245,4.25213,2.87288,2.9605,4.27951,1.8650766666666667,1.3760999999999999,2.4449166666666664,2.6037966666666668,2.5666800000000003,2.17056,4.9138,3.432825,4.960100833333334,3.8797585714285714,4.875535,3.954555,1.604692,5.1196,4.276825,5.3604,4.08562,6.76779,1.927655,4.91522,3.33398,3.216115,1.723315,1.7116966666666666,3.91221,4.34393,2.5139066666666667,2.763552916666667,3.4727625,3.4727625,2.6285966666666667,3.1944966666666663,3.285895,3.98368,3.75181,0.7315130769230769,3.06229,4.326655,4.841140277777778,2.831485,3.16961,1.790315,2.797245,3.502415,2.366365,4.579845,3.086465,4.73721,1.8539233333333334,1.0365545454545455,5.73137,3.67363,3.595133333333333,3.2249266666666667,1.748762,30.08941044047619,3.79044,3.339675,5.21085,4.626005,0.8711666666666668,6.9854,1.8634125,5.6948,1.4568183333333333,4.151075,5.016615,3.72923,3.082225,2.2080075,3.4018333333333337,4.73102,2.0404225,2.69566,3.747275,2.64058,2.506085,6.13685,2.31327,5.7066,1.14187625,4.396965,3.735875,3.983085,4.892035,2.899995,2.5070033333333335,4.199645,4.529525,3.7558575000000003,3.7558575000000003,5.9104,1.790835,4.32825,6.684901666666667,3.26833,4.09782,3.29781,4.535695,3.7107,4.24837,1.3487775,2.230475,4.43445,4.38826,5.30595,4.33923,2.37891,9.215533333333333,3.55163,3.719645,1.6803714285714286,3.607135,2.24088,2.734593333333333,2.1007616666666666,1.29313,2.4971533333333333,0.937807142857143,1.1485057142857145,1.1485057142857145,1.1485057142857145,1.82785,0.579705,3.91352,1.30927,2.5354533333333333,0.873075,1.78828,2.6618,2.0032799999999997,0.7402425,1.6974,1.4113833333333332,2.5063066666666667,1.678622,1.678622,1.6876433333333332,1.9171333333333334,0.95403,1.75233,1.57222,1.2137666666666667,2.469185,2.117835,5.88425,1.3997725,5.4489,16.9984345,6.358245,3.267555,3.5845833333333337,3.3191100000000002,2.63693,2.77845,3.1731133333333332,0.7423475,1.0035,1.0035,0.6369375,2.38082,3.620635,3.338955,1.489328,5.0393,3.778635,2.50578,3.813155,4.92191,3.712895,4.11255,3.4496333333333333,3.223765,3.48849,5.60065,3.2132466666666666,4.935345,0.522646,0.522646,2.381675,2.810775,4.71279,3.454425,3.7868,4.59278,7.82915,7.57591,3.66125,2.2373,4.397315,3.490355,2.5330766666666666,2.356685,3.879635,1.4434633333333335,3.66256,2.262675,1.70686,3.3723666666666667,4.03908,2.049625,5.247263333333333,1.646195,3.449533333333333,3.053745,1.0860171428571428,3.6359999999999997,2.6727966666666667,4.47524,1.111145,1.7534775,2.294355,2.1253175,1.7539575,2.502975,1.9520475,1.984025,4.2365,4.58046,2.450775,1.932995,1.4216199999999999,3.6239000000000003,2.0100233333333333,2.613325,4.62457,7.1224,2.5126708333333334,3.07141,3.526505,3.52336,2.52981,5.1129,3.982285,2.833625,1.3701875,4.47275,2.27317,3.0695533333333334,2.479265,4.432825,4.94116,5.6139,2.206253333333333,2.6415266666666666,2.8526399999999996,3.3901333333333334,1.9494833333333332,1.531192,5.44935,3.311123333333333,2.244086181818182,3.116236666666667,2.962376666666667,2.22581,3.1801,3.113436666666667,3.489966666666667,5.22885,4.375905,2.9985933333333334,4.891055,3.253905,2.316155,3.6966,3.78551,3.763285,5.996862999999999,1.8326360000000002,3.870045,2.39507,4.115865,3.66359,0.5716675,2.38656,2.38096,3.245265,2.787075,2.293015,2.85448,0.601891,2.7739066666666665,4.513455,2.4594025,4.16275,2.4774866666666666,3.922155,1.898445,4.48026,4.51197,2.01224,2.84313,6.9048625,3.91106,4.517265,4.715535,6.9124367045454544,4.395415,4.294685,2.1853975,4.524775,3.085075,1.9793133333333335,1.924805,2.4537299999999997,1.0007314285714286,2.5593366666666664,2.33311,2.5976933333333334,3.2851933333333334,1.7803080000000002,3.212785,1.9147433333333332,4.32295,5.2559700000000005,1.02800625,1.8539966666666665,2.5165166666666665,2.8570166666666665,2.015143333333333,1.11246,5.4235549999999995,2.1213525,2.682283333333333,2.786713333333333,2.538656666666667,2.8283966666666664,3.156815,2.27701,2.77908,2.1964266666666665,4.012265,3.511155,4.031175,3.058403333333333,2.9984966666666666,0.7250530000000001,1.8998466666666667,2.1519325,1.9984433333333333,2.5139333333333336,1.1797466666666667,2.70497,2.9070199999999997,3.87713,1.8807233333333333,3.41359,3.211095,5.0379,3.34271,0.6181508333333333,2.0611,2.8329066666666667,3.195956666666667,0.7918854545454544,2.6888900000000002,3.3925800000000006,3.480233333333333,2.9426733333333335,3.213410833333333,3.7108,3.8815000000000004,3.05116,1.9059975,5.4862,5.0447,4.90387,5.3683,5.62525,1.8424733333333334,3.418195,3.7067333333333337,3.3935333333333335,2.90451,2.8087199999999997,3.840733333333333,3.4342666666666664,2.9321366666666666,13.81848,4.48874,1.05201,2.7924066666666665,1.549404,3.309036666666667,3.315326666666667,2.1587466666666666,5.720360833333333,6.502037333333334,2.2961066666666667,0.8417830000000001,4.1234,3.4781,3.09762,4.63347,5.0682,5.45565,4.80929,3.478195,1.9326875,6.46391,1.1965933333333334,6.430645,4.741815,2.3855,4.148675,7.033081666666667,5.8537,2.180286666666667,1.5187249999999999,1.972025,6.630623333333333,1.5285625,3.04766,2.542791666666667,4.087523888888889,5.85665,4.3089,6.4602,3.436825,5.2438,3.75253,8.64992,4.85408,5.9322,2.36261,2.541525,11.117553333333333,3.433835,2.38236,2.4555599999999997,1.6827666666666667,2.2705866666666665,2.90809,0.70990625,1.108096,1.0831442857142857,3.222195,7.003796666666667,2.9925093333333335,1.4476866666666668,4.77978,3.53688,0.578913,4.835585,3.91942,4.628735,3.793655,3.346345,2.7117633333333333,4.27326,10.2194,1.76508,3.96888,4.096675,4.52381,3.852475,0.8266483333333333,3.6535666666666664,3.9042333333333334,1.7262266666666666,2.5372333333333335,2.3406033333333336,2.4636733333333334,2.25346,2.2281566666666666,2.274195,5.945381428571428,5.20775,3.723015,5.269411666666667,1.8021466666666666,2.3984725,4.777515,4.25116,4.554565,4.16251,4.56591,4.66673,1.697676,3.8265,7.48985,1.3098533333333333,1.6927233333333334,2.4170833333333333,2.81028,2.8442666666666665,4.816795833333333,0.7759357142857143,2.51691,3.35864,6.23155,4.65333,2.0662,2.86532,1.9964475,0.54799375,2.3717025,2.987065,7.71361,4.37561,4.715975,0.853877,4.250933333333333,9.173856083333334,10.624378333333334,3.29622,1.21720125,3.528825,3.598495,2.5089566666666667,5.332066,4.850695,3.846355,2.0883875,3.7304,2.2444566666666668,2.56857,0.7672563636363635,0.37817333333333336,2.5407,3.355645,1.8939508333333333,3.418175,3.1782466666666664,4.10033,5.10085,1.5493359999999998,2.9863866666666667,1.95487,1.95487,2.214405,3.01212,6.239,2.657833333333333,2.3875033333333335,3.235743333333333,3.4273666666666665,4.21163,4.243345,4.394605,4.116725,4.004235,4.11391,6.95405,7.857030833333333,1.9324325,2.2006433333333333,2.9819666666666667,0.9689983333333334,0.7171908333333333,4.7011,2.292735,5.1904,2.8863,3.0007866666666665,1.7664380000000002,1.5361675,3.699785,4.276155,4.22714,1.9620499999999998,1.2488233333333334,2.6274533333333334,1.8554766666666669,2.6493966666666666,1.15922,1.15922,2.7502133333333334,4.49167,2.619505,3.31583,3.26162,2.193675,19.95688646969697,3.99665,5.2949,4.481345,3.957695,3.787755,3.640865,5.5077,6.346080000000001,0.9040933333333333,0.9040933333333333,0.9040933333333333,2.7687666666666666,1.7155857142857143,3.3285,4.341225,4.19685,3.15193,4.016005,4.375595,0.8052888888888889,2.1231166666666668,2.2390333333333334,6.0976575,3.3684575,4.1979,5.0388,1.740285,2.0012033333333332,2.3275099999999997,0.52285375,0.833352,1.991785,1.97362,2.84844,13.127278333333333,2.5436433333333333,5.1915,0.6634342857142858,9.3368075,5.3897,3.723845,4.075975,2.679325,5.38165,2.679325,2.835874,3.23573,3.880825,3.394705,3.95472,4.26611,3.575695,5.95765,6.90105,1.84729,2.2425420000000003,2.733965,26.331608555341056,1.387194,6.20425,3.6297360000000003,3.71533,4.18107,4.26606,2.76733,2.36065,2.48324,6.67825,7.06835,4.546635,4.63146,4.288305,1.816055,2.006365,4.178785,0.4155738461538461,0.4155738461538461,0.4155738461538461,0.4155738461538461,4.19988,3.3124000000000002,1.0319766666666668,1.9696999999999998,1.1853777777777779,4.770685,2.44612,2.34333,7.073433333333334,3.2474633333333336,0.1662055172413793,20.341367833333333,4.536571666666666,1.7933119999999998,1.3315303571428572,2.14712,2.00004,2.2621675,4.613265,3.08486,3.438935,4.29535,2.098663333333333,7.1823749999999995,2.888515,2.007885,3.68161,5.8016,8.785463333333334,4.372105,0.2991878048780488,3.58262,3.792475,2.86701,2.051805,3.0492666666666666,1.62249,1.62249,4.15368,5.643665,11.0540725,8.89935,0.5729666666666666,2.51296,3.78078,3.24362,4.23397,3.74248,1.474342,1.474342,3.21954,3.86709,2.35698,3.178715,4.43433,5.32815,7.036754999999999,2.0939,4.907265,4.22306,2.661345,3.0487966666666666,3.0640033333333334,4.837325,4.09122,5.4793,4.19541,4.327145,3.907475,4.325445,4.265115,5.3405,2.719246666666667,3.1390666666666664,1.13154,4.404065,4.18356,3.872965,1.597522,2.002186666666667,3.6114333333333337,2.75119,2.352186666666667,4.0926833333333335,1.6302733333333332,2.012845,2.7085166666666667,1.7976066666666668,2.3114866666666667,1.79783,3.9446666666666665,3.10872,4.040733333333333,3.403575,2.1333166666666665,2.64662,2.0605866666666666,4.029895,2.03237,38.63162441666667,2.183515090909091,2.183515090909091,2.501793333333333,2.3021433333333334,2.2430833333333333,1.6783966666666668,2.8687666666666662,1.7592100000000002,0.7983153846153846,4.98478,6.7566325,4.186045,4.037085,5.6857,1.8747,4.40344,1.7815539999999999,5.0827,4.493145,5.6117,3.92912,1.695205,3.91565,4.307835,4.52418,5.23945,5.433,4.08878,3.3560666666666665,2.6280566666666667,2.01737,2.070435,4.53834,2.5709866666666668,3.799995,3.799995,2.2617533333333335,1.5415466666666668,2.2109866666666664,2.5074,2.21742,5.61441,2.7355366666666665,1.1652766666666667,1.1652766666666667,2.095476666666667,1.8152866666666665,2.5056966666666667,2.56606,2.4807900000000003,2.4301033333333333,2.1810533333333333,2.16466125,2.9663226785714287,1.6293926785714286,0.8016614285714285,61.85098646428572,2.343512,3.339166666666667,2.359902,0.818458,3.8843506666666663,1.552184,1.552184,2.9237133333333336,2.9711533333333335,0.82773125,2.9496033333333336,5.79779,3.419833333333333,2.4903366666666664,2.8755166666666665,2.1756166666666665,2.792986,0.31075125,3.3040233333333333,0.751986,2.512776666666667,1.206248,1.206248,3.3801666666666663,2.08866,2.8430933333333335,1.65188,3.4113,1.65188,2.13556,2.6578399999999998,3.033466666666667,1.3624,1.3624,2.9671033333333336,1.4789966666666665,3.3128333333333333,2.16615,4.26933,3.61241,12.389683500000002,7.0454225,3.327495,2.513535,3.699775,5.146,5.4715,2.7419133333333336,3.846825,3.716855,2.228946666666667,4.156475,3.28881,2.9087266666666665,4.78138,2.3826466666666666,1.0328857142857142,3.8164054166666666,2.9543466666666665,3.033865,0.7784514285714286,2.584735,3.508095,4.13276,4.419305,6.6089,1.9078,1.9209340000000001,4.31767,4.25275,2.376725,2.4831374999999998,2.02375,2.1471833333333334,0.92502,4.98335,4.23091,3.54677,3.868415,3.052826666666667,4.9035,5.18435,2.701563333333333,1.7129200000000002,0.5171606666666667,13.858751666666667,0.5019427272727273,0.5019427272727273,0.5019427272727273,3.025786666666667,3.772133333333333,0.5019427272727273,6.73996,4.167,0.725002,0.725002,3.5506666666666664,3.25137,3.122875,4.417015,4.96142,4.2051085,1.9969575,4.889061999999999,3.226955,3.541358511904762,4.97665,2.94036875,2.347845,2.359775,2.68875,1.63729,3.2845466666666665,3.0413566666666667,2.26984,2.1776975,1.9335325,1.7579666666666667,1.681935,2.600175,1.0674788888888889,2.4634,0.5946971428571429,5.22435,1.8012275,0.6616541666666667,2.21933,7.813425,2.7474,2.077303,3.422155,7.30272,2.541655,4.40606,2.939915,6.01822,3.55329,3.72438,4.014545,4.286775,2.9649533333333333,4.19865,1.0988357142857141,4.237805,2.43348,2.5474866666666665,2.51913,2.376515,2.06736,1.2443375,5.61655,0.9542090909090909,4.90835,5.47905,5.1095,5.39335,3.6554,2.4309266666666667,1.945018,2.861826666666667,2.98991,2.4836,3.859166666666667,2.6909,5.0792,1.8132819999999998,39.994036031746035,4.87665,2.4855300000000002,2.3685433333333332,2.9231166666666666,1.53686,5.993436666666668,3.87541,2.3405833333333335,2.97282,2.3195900000000003,1.621465,5.22925,0.8050785714285714,4.525382857142857,1.3045985714285713,3.455,3.392533333333333,2.7206966666666665,1.3685625,4.434690666666667,1.686086,1.686086,2.4494599999999997,2.8365074999999997,3.450466666666667,3.4728333333333334,1.4373333333333334,2.888716666666667,2.6871233333333335,6.270936833333334,2.8417366666666664,4.0066,1.4624249999999999,1.3987999999999998,3.0416566666666665,0.981282,5.340046666666666,3.2735,2.9271166666666666,3.6201333333333334,2.9001699999999997,2.73925,3.14728,1.7108400000000001,2.39878,2.5135733333333334,3.4672,2.493583333333333,3.7859,2.083413333333333,0.6145166666666667,9.68899032051282,2.7348966666666663,5.29575,4.782985,2.836446666666667,3.10018,1.32071,2.086863333333333,1.89442,1.32071,4.187325,0.46252875,0.46252875,1.0022225,1.0022225,1.071535,1.071535,2.728155,3.09146,2.529055,1.5237,2.1886,3.416545,3.0938,4.494455,5.22645,1.9154140000000002,4.348255,2.28233,4.667576410256411,1.664775,1.664775,1.986025,1.68869,3.7273658333333337,1.9352425,4.459885,1.5551566666666667,2.61605,0.5441161538461539,1.1650785714285714,2.1565875,2.16716,1.9342775,1.33784,4.25228,4.19619,2.279316666666667,2.437,1.31934,0.694925,2.2461166666666665,3.38235,3.1241533333333336,4.509165,5.06875,4.939485,3.78098,7.5337250000000004,1.6054466666666667,5.92221,1.807595,4.69335,4.61533,5.712921,3.270113333333333,2.32693,1.7852025,2.00142,2.00142,2.5936,2.5936,4.278985,5.73895,0.93948,3.816905,3.337835,3.530755,2.62812,1.40946,2.8290066666666664,4.063525,4.149675,1.7160959999999998,6.651,5.0432,1.5591366666666666,1.289225,3.97523,4.080256666666667,3.77578,3.630875,3.92344,0.6165992857142857,3.6282666666666668,3.202733333333333,2.7608466666666662,2.88693,2.2371733333333332,3.5966666666666662,1.5841999999999998,1.5841999999999998,1.5841999999999998,2.95752,3.169086666666667,2.8485566666666666,3.366586273809524,2.27278,1.215172857142857,3.1514633333333335,3.2073199999999997,1.36318,2.8335133333333338,2.6453266666666666,1.168445714285714,2.658186666666667,2.8426733333333334,2.955553333333333,2.6757933333333335,2.58306,1.9540375,3.191133333333333,4.630861333333334,3.782535,0.968949,1.446296,0.56803,3.6334999999999997,8.897735,3.0839133333333333,3.298865,3.3596333333333335,4.246535,1.881705,7.590318333333333,6.712773333333334,2.6761966666666663,2.1957079999999998,4.13301,4.945365,1.5527900000000001,1.296362,1.36996,1.97931,10.59114,2.61467,3.055293333333333,2.9029316666666665,3.795055,2.2305800000000002,1.12914125,3.920115,1.0669266666666666,3.4876765384615385,4.21457,3.288425,3.278173333333333,3.151035,4.976,1.185225,2.1729,1.9233603333333333,1.9233603333333333,3.69821,5.7062,10.3467425,4.27836,3.40304,4.74449,1.76199,2.2606783333333333,4.412255,3.716315,3.860655,1.5520133333333332,2.9710433333333337,3.450685,3.83349,2.4181,4.05834,3.80862,3.84846,4.153775,3.98728,3.561035,5.20435,3.1017200000000003,2.5560966666666665,4.30361,3.019515,3.855525,2.00271,2.62664,2.661055,5.4879,2.425065,3.2122410795454543,1.66275,2.544675,3.15789,2.1659425,2.074065,0.6550216666666667,0.6550216666666667,1.74328,3.7485909090909093,4.094435,2.9010366666666667,4.53132,3.1191691666666665,2.4824182857142856,0.9994125,2.425805,1.38817,4.104955,4.101505,0.89665,1.803615,3.973165,2.9543825000000004,1.6326925,1.6563400000000001,5.347645714285714,0.9687683333333333,2.613795,3.266405,2.764265,2.50198,2.763044,2.174455,1.020965,2.886975,2.973935,3.39352,1.4340766666666667,1.5236366666666665,1.806755,4.327585,2.27035,4.53378,4.564595,4.381565,5.996,5.1813,4.124765,5.968695,4.088598571428571,0.7880518181818182,2.9313,4.14057,3.999625,0.4779363636363636,1.000912,3.015585,4.251065,4.81441,4.316965,3.352829642857143,2.770805,4.61085,1.7449999999999999,2.486925,4.458315,4.1860625,3.363635,2.968465,3.64634,4.749885,2.899355,5.1097075,0.9308350000000001,3.241215,2.60369,4.23338,4.321955,4.541185,2.08974,2.578095,2.98574,1.8982166666666667,5.0654,3.268485,1.3684028571428573,2.72984,3.8267550000000004,1.539566,5.83826,1.859224,2.51702,13.400837195906432,2.9002733333333333,1.5304333333333335,1.640135,2.1917066666666667,5.525116666666667,1.6439039999999998,3.7704766666666663,0.6829430769230769,3.0103266666666664,4.168615,7.454485,2.50354,2.83081,2.83081,4.67073,4.34349,3.437925,3.338315,4.95205,5.2277,2.459975,3.2106933333333334,4.66669,1.216455,2.3927333333333336,4.5655,3.995485,2.983185,2.30242,3.46642,3.56311,6.176895,6.0813875,0.6835180000000001,4.065825,3.20039,3.5979666666666668,4.372855,3.93342,3.860585,1.341146,4.90926,2.357985,2.72609,4.14953,4.23458,4.40269,0.9101296428571428,2.691796666666667,8.624765,1.5077533333333333,2.190282857142857,2.31925,3.825635,3.55414,3.30147,0.6549427272727273,2.3216925,1.6170475,2.21604,4.301375,5.3229500000000005,2.73286,9.038885,2.3360833333333333,2.62776,1.0205899999999999,4.318195,5.2809,2.22415,5.462963333333333,2.830495,3.196825,5.2817,4.425855,4.724955,2.1221,1.6618425,1.6618425,2.91943,3.417035,4.816604166666667,1.4736875,6.024850000000001,1.5701466666666668,3.64823,1.3045866666666666,8.759814666666667,4.750035,2.694455,4.459115,4.10061,3.808145,1.15689,1.906535,3.5401666666666665,3.1889333333333334,3.3460666666666667,3.687466666666667,3.792585,2.70231,3.05679,3.263395,1.66431,2.5526633333333333,1.88635,2.8661333333333334,1.9218666666666666,4.887838333333334,3.20469,1.7361833333333332,2.8689400000000003,3.301715,3.42561,6.4124,6.16145,2.937955,3.43679,2.8126,3.072555,2.947475,1.2861366666666667,0.95618,6.54673,3.025105,6.03285,4.421585,6.43195,2.776275,2.775726666666667,6.65045,2.675145,0.42864888888888886,5.77895,3.16285,3.79809,3.4120000000000004,1.4093485714285714,4.10804,1.12033,4.539665,0.8930025,1.3987166666666668,3.1347666666666663,2.4229333333333334,2.6942864285714285,3.5518,4.75592,5.9247425,5.9247425,4.860402499999999,4.860402499999999,4.72188,2.8259133333333337,4.33496,0.99623125,5.9822,3.47077,3.6013333333333333,4.25489,3.85488,4.224485,1.8295575,4.62489,3.128698,2.8888,4.288585,2.58127,5.04865,5.3799,3.51924,3.162735,5.0803,3.531175,5.28425,3.15257,2.672703333333333,6.0761,3.967545,2.8743499999999997,6.23582,1.5251400000000002,1.9940675,4.431905,4.271475,5.11175,3.90368,2.013908,2.013908,12.8616645,11.8138,4.92559,3.316705,2.9508889743589743,4.419755,4.666725,2.5391933333333334,3.2290166666666664,3.205405,4.014966666666667,3.7363,4.854335,2.08772,8.388026666666667,2.412885,2.0667375,5.832,2.257245,5.01315,4.36901,4.75141,0.743771111111111,3.350665,3.6266,0.90829,2.88082,3.7636016666666667,1.42321,1.87402,2.792533333333333,2.7261733333333336,2.385353333333333,3.240066666666667,2.23366,0.46758500000000003,2.52778,2.7005766666666666,2.792536666666667,3.21509,1.590388,2.99124,7.011673333333333,4.33896,2.3131833333333334,2.0868966666666666,2.603073333333333,3.65722,2.566545,3.5238125,18.3480475,5.8231,3.4175180000000003,4.687015,3.753065,5.473016666666667,1.6677666666666668,5.7862,1.4904483333333334,4.666235,4.41211,5.46685,4.96504,0.9862799473684212,6.1284,2.369455,4.927005,3.174215,4.2581,3.58645,2.845035,2.3051366666666664,1.590902,1.9164575,4.1797,4.67685,2.27749,1.725185,2.90772,4.035073333333333,3.005653333333333,6.3346,2.11009,3.738555,4.320265,4.33821,4.05359,3.17442,3.985,4.920215,4.020945,2.7273333333333336,2.7273333333333336,5.361108333333333,1.9275433333333334,2.6929266666666667,3.879025,1.7992979999999998,7.63003,3.68694,4.492163333333333,4.332866666666667,4.37723,1.8246259999999999,4.346485,5.42725,3.893245,2.05803,3.63987,3.271845,1.22303,1.41664,1.2342333333333333,0.6966716666666667,1.6822166666666665,0.9744583333333333,4.665345,1.0039655555555556,2.58266,1.6661866666666667,1.8486725,1.0429466666666667,1.96436,2.2401225,1.5643125,3.1159700000000004,2.6474866666666665,4.78943,1.5564933333333333,2.627825,3.161046666666667,3.0448166666666663,2.37784,4.4118125,4.6893,4.74317,19.80715375,2.6701866666666665,2.15049,0.6526207692307692,0.64729,4.159506666666666,1.95305,3.908635,4.711615,7.3148238333333335,3.79083,3.809915,4.14754,3.2706766666666667,3.0853033333333335,3.1471066666666663,3.6125666666666665,3.0955266666666668,6.4147,3.81203,0.928106,1.12110375,5.41075,3.24597,2.5530166666666667,2.1527833333333333,2.2689833333333334,5.4965,4.83807,2.4118925,2.27749,3.529465,4.73059,8.4453,4.947112083333334,4.31107,4.004285,5.35175,4.78088,4.24082,4.694375,3.973495,5.2744,2.7681,5.51945,1.5757714285714286,5.11525,0.7399333333333333,4.964035,5.4315,6.1118,6.2775,4.535185,5.8378,5.6906,6.2186375,1.8630333333333333,1.5418142857142858,5.5428,2.88845,6.124935000000001,5.13155,5.524085833333333,5.21175,6.11125,1.3325328571428572,4.389325,5.28425,4.11,4.71793,5.4427,2.575075,4.141105,3.15999,4.42203,0.9942166666666666,1.6049866666666668,1.3870179999999999,4.759575,4.272185,3.28876,2.012993333333333,2.9760733333333333,1.6236466666666667,2.1500833333333333,0.4132,3.4868666666666663,1.6485379999999998,2.2073650000000002,2.7989466666666662,2.2698300000000002,3.1804799999999998,2.5201,2.537175,10.183781333333334,3.820733333333333,1.7979465384615383,3.668635,0.8816381818181818,4.5818674999999995,1.1502425,1.767245,1.8936625,1.0527625,5.803749333333333,1.1405780555555556,1.1405780555555556,1.1405780555555556,3.0727333333333333,1.969632,4.89587,3.036425,1.434365,1.59358,2.2515725,1.2664125,2.02108,5.237360000000001,0.8350244444444445,4.2227,4.217735,3.0790333333333333,1.0005328571428571,2.2061725,1.8865975,1.8865975,1.51018,3.5855625,4.51741,4.885155,5.58215,4.221185,5.31995,2.893876666666667,2.0220075,2.79083,5.1463,3.018145,4.13133,1.03549875,3.8766760416666664,5.59995,1.8843475,3.83334,3.1243466666666664,4.616175,4.79279,2.603365,6.77605,6.368,4.000695,4.464875,4.20386,3.196285,7.92416,4.042555,5.260423333333334,3.43903,2.7226233333333334,5.4945,2.6511,5.69945,4.42946,2.7441633333333333,3.28279,3.922985,1.2860266666666667,10.4992975,3.67136,3.09948,15.182560595238096,4.25557,1.7989066666666667,2.8322766666666666,2.146,2.65105,3.68859,2.600324027777778,2.972835,2.88554,3.024345,4.276825,6.517995000000001,1.2325666666666668,2.0125825,4.216025,4.418905,4.761955,2.29168,0.5663093333333333,4.57238,4.18672,2.0339875,1.4033749999999998,4.62126,4.32199,0.90347,3.775375,12.686715833333333,1.3077967142857143,0.4240157142857143,3.585566666666667,4.45313,1.0801944444444445,3.78987,4.023005,6.317121666666666,1.3513216666666665,3.252095,3.99363,3.33425,4.464155,4.39425,4.477705,8.53894,3.39142,3.913795,5.46665,16.160683125,3.432735,2.73585,1.171825,2.030415,1.4408825,2.26630875,1.3160725,1.9955625,1.68828,1.9481125,2.4227225,2.3803,2.22385,5.57165,4.632665,5.70165,3.187165,5.797281666666667,2.887696666666667,5.04825,3.5203,1.2511875,3.76489,2.0177925,2.8904466666666666,4.73091,4.502345,4.849975,4.39207,3.1458266666666668,3.6218,2.50406,3.356425,3.758655,2.26292,1.967875,3.4636333333333336,4.26603,3.921155,2.3898366666666666,12.5025,0.6817933333333334,2.7284,4.56529,2.475315,1.051914,2.72622,7.318005,7.223793333333333,4.422495,3.91139,4.169305,2.048295,2.167345,2.897910333333334,2.0772533333333336,3.675735,4.34683,4.17399,0.45319866666666664,6.2032,3.2032366666666667,3.2771899999999996,3.5653,6.2576,8.8800285,4.385491,1.0519075,2.22391,2.5693,3.87089,2.520825,4.20111,4.523395,3.4639333333333333,2.7730433333333333,4.165615,4.166005,3.78711,3.9037,1.8400999999999998,3.39433,5.2545,5.55325,3.0025633333333333,1.47412,2.2811566666666665,29.54569473076923,1.478935,1.478935,2.4003033333333335,4.479333333333333,3.80152,4.556925,3.12257,2.965395,4.26506,3.0750499999999996,4.170075,3.0750499999999996,3.496845,1.85699,1.58126,5.8268,2.665675,4.38692,3.23866,2.69244,6.276046666666667,2.0622366666666667,4.68894,5.0552,3.520615,3.361655,4.82595,2.0321000000000002,4.9281,3.3661825,7.070376666666666,5.233154166666667,2.6523,3.882855,5.3493,2.110505,2.5637933333333334,3.5408333333333335,0.42874642857142853,3.269956666666667,10.347926666666666,3.9366,3.380425,5.1367,3.1323075,3.192535,1.3348385714285715,4.11657,5.56985,3.286965,2.192065,4.462655,3.569875,4.21493,4.34107,2.80595,2.80595,4.11405,2.822635,2.5535188636363637,1.76189,4.81923,4.081605,0.994,3.852035,4.9948,2.837756666666667,7.02307,7.25656,1.492636,4.205865,4.82311,6.859596,0.667993,7.553263333333334,3.5422241666666663,0.5855263636363636,5.22345,5.36465,4.90181,4.30704,4.69101,4.3405,4.93695,4.010875,3.84095,4.466045,5.22595,4.77443,4.70639,3.924395,2.52529,3.980685,3.051445,0.952447,4.32852,2.471,1.739505,4.2982,4.53868,5.79485,1.01607,4.95815,2.89905,2.67633,1.586155,1.2702233333333333,11.736139166666666,2.4457866666666668,3.02783,1.87781,3.8052876190476193,5.468653333333333,6.2049,2.6576066666666667,1.9484566666666667,2.0974399999999997,2.0974399999999997,2.0974399999999997,1.444,3.73736,3.885495,3.391315,4.69664,8.241345,4.029715,1.091442,2.19679,3.334025,2.460755,1.7720680000000002,3.98309,3.081305,1.46312,3.11828,5.4396700000000004,5.98295,3.93641,4.18839,3.1136533333333336,5.00215,4.635255,5.177766666666667,1.69333,1.69333,4.15498,3.75237,2.7268909999999997,2.7268909999999997,3.901895,1.0479914285714285,4.80866,3.349885,4.174955,3.69588,4.059545,3.18192,1.0024642857142856,4.20953,5.2044,4.50355,4.63558,4.878155,4.80969,4.376895,1.972895,1.4936575,3.36245,3.791835,3.319785,4.430825,2.123015,2.8114524999999997,5.48305,2.77611,4.871295,7.382289999999999,2.29154375,3.016591666666667,4.324556190476191,5.013035,1.6252025,2.1736154761904762,1.1457783333333333,2.1736154761904762,1.6038466666666666,1.6038466666666666,1.5041740000000001,4.971675,3.227665,4.051335,2.572385,3.825215,1.4727350000000001,5.3503,3.027875,1.7331475,2.973176666666667,3.53492,3.92262,6.478813,4.62974,1.2885360000000001,0.9136733333333332,3.450175,6.709923333333333,2.4286499999999998,3.558105,3.33649,3.33649,2.365335,3.36477,3.205325,1.414622012987013,3.0646066666666667,3.31826,2.91504,4.376985,3.736805,1.496175,3.49777,4.483725,4.263785,5.1262,4.41507,1.70056,2.146815,1.3504833333333333,2.191285,3.443725,1.891315,4.337415,3.141386666666667,3.194215,3.92875,4.882995,1.092185,0.936496,1.8205966666666666,1.1729425,1.1962222222222223,5.17635,4.03493,1.13154,0.13517478260869567,0.13517478260869567,0.13517478260869567,3.680155,5.696038333333334,4.359535,5.3777,5.0186,5.17455,4.42727,4.445075,2.71948,3.379565,1.6988625,4.758635,3.83964,4.00736,4.19524,4.20185,0.6894454545454546,0.6894454545454546,0.6894454545454546,0.6894454545454546,1.061016,1.061016,4.07796,3.99515,3.66172,2.72567,2.585265,5.35005,5.0924,5.4892,4.238595,3.109766666666667,2.5307366666666664,9.84167,1.55394,1.55394,4.181145,5.3527,3.2686333333333333,0.46252875,0.46252875,0.46252875,0.46252875,0.46252875,0.46252875,4.811998333333333,5.08605,3.476995,4.41524,2.8089625,2.8089625,2.824565,3.3065816666666668,2.50162,2.659455,3.26935,7.066272333333334,1.412144,4.594385,3.45492,3.88297,8.880823333333332,2.291116666666667,2.71799,0.92889,2.15072,5.07175,2.970855,0.89601375,2.86849,4.130045,5.49985,2.6901,4.749732083333333,1.1651333333333334,1.8650433333333334,4.872675,4.850705,2.885156,2.5434066666666664,2.2242566666666668,1.3518383333333333,7.097228333333332,3.445733333333333,2.0576033333333332,3.02041,2.778826666666667,3.713325,3.74736,2.6303433333333333,3.190606666666667,5.8981,1.4768350000000001,4.29926,5.32995,3.33383,3.92232,2.009586666666667,3.07749,3.71338,3.56138,2.864775,4.84529,4.641075,2.758953333333333,1.97154375,2.8922633333333336,2.8534433333333333,2.9234299999999998,0.7895263636363636,2.1894325,8.3575325,0.45412625,2.9243166666666665,1.5333566666666665,2.4515166666666666,3.3313066666666664,2.8238,1.2764555555555555,1.745112,2.7358233333333337,2.16821,3.681935,2.01146,2.7277299999999998,1.5049466666666669,3.0700700000000003,1.911005,1.1425185714285715,2.8283733333333334,2.0185125,2.40018,2.6887233333333334,3.149453333333333,3.2104133333333333,3.3538,3.2053966666666667,2.82404,2.5801266666666667,2.7776666666666667,2.490565,1.7108566666666667,2.38548,2.62112,1.7428833333333333,3.0751333333333335,3.833858571428572,2.8657866666666667,2.489873333333333,2.894223333333333,3.6213333333333337,4.748380833333333,3.0768799999999996,1.7767185714285714,1.7767185714285714,2.3736625,1.161915,2.509825,3.3726366666666667,4.563734166666666,2.791375,2.124315,2.010935,2.0672875,3.714885,3.041895,4.07676,3.301865,1.704305,2.2106966666666668,4.17765,1.148992,1.148992,2.107365,0.6382030769230769,2.426466538461539,1.5892375,1.5892375,2.7548866666666663,2.4079333333333333,2.7362933333333337,2.656693333333333,1.9502325,5.486336666666666,3.9074675,3.9074675,3.65131,3.217915,2.272485,3.045975,2.444125,2.93628,5.2267600000000005,0.5111466666666666,0.677486,4.1748,2.374515,2.89365,6.4939816666666665,3.66246,1.6177540000000001,4.9916133333333335,4.699465,4.093595,4.23853,5.4179,4.793995,13.645595,3.458105,1.5743033333333332,2.962935,3.9509,5.07875,3.20495,3.984515,4.08593,3.65252,5.00275,2.8210633333333335,2.924935,2.6755066666666667,2.40698,2.40698,4.09872,2.784635,3.005515,3.76903,2.515235,2.588805,2.1865725,1.9012125,1.96799,2.081425,1.668965,3.4331035,3.482645,2.74524,6.5114275,3.21898,2.3406266666666666,2.2192666666666665,3.21479,3.92239,3.748525,3.1936593749999997,3.409055,3.083585,4.27282,3.62252,3.797215,4.033645,3.5559909999999997,3.642755,0.6428483333333334,0.6428483333333334,0.6428483333333334,3.369645,2.440125,5.7918,2.592265,3.64607,6.945208148148148,2.7854799999999997,0.35230884615384617,5.5207,0.7610089999999999,4.3988652380952376,2.08683,3.85349,2.019145,4.1043,5.185836666666667,4.26609,4.220885,2.8108466666666665,2.6730300000000002,1.498245,2.5782333333333334,0.4602568421052632,0.556485294117647,2.5984766666666665,1.4435333333333331,1.9033025,3.895915,2.64338,4.99187,2.76395,3.017568333333333,3.30901,5.78832,1.83825,0.9755885714285714,2.51147,3.3932659999999997,1.2287514935064934,5.00515,3.70371,3.800415,2.6602633333333334,4.23827,2.59295,2.49373,2.49124,2.46846,2.438356666666667,2.299675,3.244213333333333,2.3868766666666668,5.571395333333333,2.1701775,1.9319566666666665,2.2233566666666666,4.959507333333333,3.405224,3.405224,2.4749866666666667,3.799515,2.35319,3.29436,2.976915,0.561492,4.31589,1.8300425,11.646232222222222,6.67231,3.0405,3.4737,3.42441,5.26046,2.854455,3.6216,0.22085800000000003,1.9867075,3.635566666666667,0.8451,4.085285,1.3234571428571429,4.72805,3.084885,3.299045,3.205525,3.251475,2.24508,4.48942,3.759775,3.45905,6.74947,4.606445,2.897873333333333,3.0987633333333338,1.584052,1.977545,4.08438,3.67412,3.7433275000000004,2.65571,3.37519,1.337952,2.97347,2.890345,3.553125,10.475293333333333,3.71203,6.662211666666667,3.67802,4.306415,1.0103533333333334,4.685226,4.780395,2.50636,2.669836666666667,2.6683133333333333,3.2535166666666666,2.34986,1.9480166666666667,1.9176166666666665,3.296045,1.614932,2.756736666666667,5.006525333333334,2.7018166666666663,1.2132846428571429,1.2132846428571429,3.60416,2.925764,2.925764,3.8440666666666665,3.0111600000000003,3.3091656410256416,3.860666666666667,3.4031000000000002,2.7696166666666664,2.4839333333333333,2.41915,3.1983833333333336,2.21722,2.3495266666666668,1.620392,5.687022,9.004657666666667,0.5379030769230769,0.5379030769230769,0.5379030769230769,0.642411486013986,0.642411486013986,0.5379030769230769,2.968863333333333,2.97069,4.220015,1.4273316666666667,1.75524,3.360424,2.5064800000000003,2.9824966666666666,2.3653633333333333,2.93343,3.366233333333333,6.817851666666666,3.1109833333333334,2.4484666666666666,2.873746666666667,4.679285,2.377666666666667,3.5158,5.5246,2.3613766666666667,3.429866666666667,1.3922566666666667,1.3922566666666667,2.74845,0.5238331578947368,2.4965100000000002,2.69483,2.8465233333333333,3.3185266666666666,2.30841,1.6386666666666667,2.5770933333333335,2.8032566666666665,2.280386666666667,4.376075,2.522664333333333,3.43657,2.426865,3.37651,0.528016,7.427405,2.9862719999999996,2.9862719999999996,7.603208055555555,1.8013133333333335,1.8067866666666665,2.710103333333333,4.50013,2.4343966666666668,1.9012766666666667,2.6927766666666666,1.411305,3.4813666666666667,1.883,3.0053605,1.3251475,0.2787545454545455,0.2787545454545455,4.89121,3.779065,3.317835,2.8385366666666667,2.750675,3.38015,1.2587233333333334,5.58015,3.7745,2.952205,1.74963,1.1527491666666667,1.926875,2.710103333333333,2.83525,2.17357,6.033605,3.945915,4.368215,3.84065,2.20875,0.6873825,6.9828575,2.0349225,1.637305,3.31711,3.90341,2.223595,1.7595333333333334,4.53971,4.16101,3.098736666666667,3.1721466666666664,4.11013,4.15106,3.6601666666666666,2.380462,2.380462,4.06785,4.665275,5.4903,6.270883333333334,2.6802499999999996,3.940185,1.4002357142857143,2.594325,5.0865920000000004,3.81187,1.861762,4.86383,3.4685249999999996,3.615385,2.163955,4.075155,4.756665,4.65554,4.5535,2.356106666666667,2.5073166666666666,3.6534999999999997,2.17216,2.390325,2.65796,2.3506199999999997,0.702275,2.35911,2.8291233333333334,1.8160716666666668,4.496115,4.632825,4.649285,3.62294,3.288875,4.8143625,12.533805,4.87399,3.891925,4.45673,3.87607,4.548795,2.4759333333333333,3.317958,3.5522333333333336,1.21202875,2.839455,3.05404,4.595335,5.49595,4.372215,3.598133333333333,2.981056666666667,2.27917,4.168233333333333,3.806805,3.5290666666666666,3.806805,2.30252025,2.2406099999999998,2.448061666666667,2.10283,2.62116,1.8495233333333332,0.8366549999999999,1.3609416666666665,2.01909,2.02205,1.6362733333333335,1.40342,1.6116833333333334,2.844466666666667,1.5262259999999999,3.0465766666666667,1.3750333333333333,1.67697,2.67194,3.4227000000000003,2.4118733333333333,2.1107366666666665,2.333056666666667,3.233865,2.323925,2.842503333333333,3.0459833333333335,2.5502566666666664,3.0351466666666664,3.0916050000000004,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,5.0455,2.814825,0.9884928571428572,3.080773333333333,2.616286666666667,2.8543333333333334,3.44194,3.09906,4.66601,3.317456,1.4421,3.10627,1.6357799999999998,0.99602,0.961792,1.6654633333333333,0.8759716666666666,0.7442941666666667,1.327712,3.190745,1.52114,1.636785,1.8550383333333333,2.3123650000000002,1.3930266666666666,1.2176666666666667,1.58065,0.9502466666666667,1.2652349999999999,0.7469199999999999,1.01989,3.320865,3.549495,4.2221,4.46814,4.0021,3.0591733333333333,4.88478,3.4608000000000003,2.0467925,3.63385,2.1013825,3.4424,2.0073433333333335,0.79829,4.328385,4.77864,2.142723333333333,1.28959,2.93207,3.374515,3.5855625,3.0396633333333334,2.60687,0.92493125,2.123245,5.04094,3.678835,2.47727,1.5617433333333333,3.76291,1.9436075,0.6016609090909091,4.509235,4.4341,4.193095,2.453655,1.453158,3.42398,4.24156,2.6140233333333334,2.58512,2.4956533333333333,2.66994,2.7672000000000003,2.85514,2.9922833333333334,1.2721375,2.51585,2.496966666666667,5.19825,4.432515,3.908585,4.725635,16.30500062878788,3.8218025,4.591198,2.770495,4.34088,5.0677,1.498436,2.008175,2.4052466666666668,5.777285,3.636955,3.394355,6.39895,2.4052466666666668,3.876705,2.121745,2.1014066666666666,2.8085299999999997,2.747536666666667,1.2008633333333334,4.28786,3.63512,2.496385,4.28614,2.3998166666666667,3.1159966666666663,3.68409,3.25662,4.425925,3.98735,2.68202,3.55201,2.824175,2.8307633333333335,1.229646,1.229646,3.2202633333333335,2.48266,0.3463057142857143,4.999401000000001,1.0067819999999998,2.828555,3.724115,0.5376500000000001,4.57891,8.014265,1.838625,3.62409,3.35714,2.5021166666666668,3.188875,2.328015,3.003165,3.47355,4.262685,3.299945,3.7907333333333333,0.9799916666666667,11.571023333333333,2.74683,2.898355,5.61585,2.59071,3.886765,7.628983333333333,4.06116,4.020405,3.821755,4.237695,5.4059775000000005,1.5861275,2.83097,4.582285,3.829133333333333,1.855294,3.81444,3.54217,3.5809,3.97546,4.159925,3.817445,2.599135,4.127815,3.84191,5.13695,3.32627,2.1502333333333334,2.303526666666667,2.0349933333333334,3.099933333333333,1.3778166666666667,3.7308,0.8409509090909091,3.1484,3.0610166666666667,2.58698,1.60703,4.25613,4.141725,4.171765,1.9161275,4.61976,4.00067,0.722852,0.32957000000000003,4.23484,5.32315,0.94568875,0.32957000000000003,4.64209,0.722852,0.722852,0.32957000000000003,5.439438333333333,2.3740833333333335,2.2895533333333336,5.4738,3.273555,3.13605,0.8223722222222222,3.265805,4.03843,4.670305,5.5891,2.1671575,0.7322523076923078,4.099211666666666,2.038936666666667,1.2223140000000001,1.752105,0.9774442857142857,2.2797533333333333,2.2177366666666667,3.64296,5.0687,2.7331,2.974686666666667,2.8749466666666668,2.20508,2.917345,4.479006249999999,1.73375,2.0073125,3.969415,5.1701,2.1156194444444445,5.28595,2.56626,4.12457,4.11196,3.08062,1.1845025,3.07797,6.7456,4.043465,3.485515,5.2332,6.2953,2.47978,3.316475,4.60283,3.28091,3.249515,8.27923,3.71451,4.8133,2.34664,1.28592,2.615886666666667,1.787625,2.019355,2.030885,4.11857,0.6325064285714286,3.280105,3.939305,1.9236199999999999,2.8640066666666666,5.07765,3.36501,2.807715,4.26014,5.15725,9.382929,2.69164,2.56137,1.6917380000000002,1.50354,1.2948866666666665,1.49468,2.7336566666666666,2.577933333333333,2.834296666666667,4.44927858974359,1.620135,2.34512,4.54466,5.2155,3.825935,3.420005,3.036485,2.609875,2.09557,2.078195,1.80511,2.090545,3.192135,3.823565,4.933575,5.2351,3.94525,5.443183333333334,3.27282,2.5009,6.443926666666666,3.232325,8.766255,4.918545833333333,4.918545833333333,5.337091666666667,1.5788733333333334,1.406955,1.3003933333333333,0.756769,4.877965,3.729366666666667,3.37852,3.37852,2.10102,4.31958,4.266005,4.27116,3.95893,2.7705133333333336,2.696,3.56991,3.0260466666666663,5.208056666666667,3.514405,0.7387954545454545,5.1187,5.0566,4.259305,5.01335,3.23433,6.0287,4.187415,0.8103461538461538,5.45315,7.066118333333334,3.39705,5.7064,5.7312,3.46121,2.835725,3.746815,6.10135,2.086805,5.8572,1.8805975,4.716635,2.5271033333333333,2.2173125,0.9308350000000001,3.061635,5.9213,3.473485,3.801485,1.9947266666666668,4.906055,8.17723,3.783255,4.273875,2.653775,2.42174,0.8721650000000001,4.767145,1.52471,3.4322274999999998,3.4322274999999998,3.670715,2.2622633333333333,3.049106666666667,3.689495,1.8059125,2.7930499999999996,3.3560666666666665,3.3815666666666666,2.961985,3.778465,3.02145,1.87916,3.202173333333333,2.1019925,3.0591500000000003,1.9511333333333332,3.0428266666666666,3.1222499999999997,1.3821657142857142,1.7266766666666669,0.5252450000000001,1.3059016666666667,0.5252450000000001,0.5252450000000001,1.7266766666666669,0.5252450000000001,3.4865,3.13513,3.13513,2.835226666666667,4.196335,3.753985,4.10543,5.3259,5.2484,3.609325,3.973805,3.97831,1.9394825,2.434092166666667,2.467633333333333,0.8037554545454545,5.47005,2.9455566666666666,3.0748366666666667,5.6208,4.51568,5.21785,3.366345,2.610323333333333,2.938595,3.45999,2.69138,2.870706666666667,2.0881633333333336,5.2358,0.8855977777777777,3.72192,1.0529557142857142,3.55383,2.6416333333333335,2.9150066666666667,4.106915,4.23698,3.80341,4.563495,4.06826,3.7616,4.2921,4.064015,2.479715,2.719025,3.3087966666666664,4.19202,2.718465,3.336645,2.677315,2.973405,3.1176,3.61508,4.90801,4.69871,4.1054,68.31332987912089,2.673906666666667,3.88066,15.967787333333334,4.222645,3.0550833333333336,2.156023333333333,1.9448466666666666,2.7433033333333334,4.41604,3.03807,4.07534,5.6676,3.32331,7.264144999999999,5.09605,2.34067,2.95176,3.573275,3.445415,1.873682,1.0880675,4.62205,2.692175,5.895983333333334,3.600915,2.2411066666666666,3.50229,3.502945,4.54984,2.947335,5.682225,4.32971,3.66465,3.02346,2.51355,3.005195,6.35315,2.62353,3.55753,4.325107916666667,1.2289166666666667,2.54597,5.0816625,3.10311,3.255335,3.63296,3.05607,4.09532,3.33559,3.242785,2.78213,4.5088,3.0599,3.33176,4.38461,9.756845,3.232693333333333,4.138975,5.51475,3.378055,2.0905,4.104565625,2.260893333333333,2.9049766666666668,2.959906,3.180375,3.11954,2.959245,3.356645,3.35981,3.99664,3.86113,4.218215,4.047495,3.020905,3.56154,2.5780216666666664,2.5780216666666664,7.129971666666666,1.829185,3.21774,3.244365,2.315865,4.727745,4.127985,3.067095,3.265655,3.821055,6.1707175,0.6353209090909091,3.81308,2.37368,2.8467566666666664,2.5087433333333333,5.11045,2.7139166666666665,1.98748,1.14187625,2.071825,4.15661,4.754435,4.06389,5.84025,5.4132,5.66445,2.514475,2.0393833333333333,3.72588,2.633885,2.860303333333333,1.9920266666666666,1.2255883333333333,2.5499566666666666,3.378966666666667,1.537026,2.34918,2.313773142857143,3.455919807692308,2.81682,4.810845,3.43021,1.348865,4.24121,3.483225,5.605,4.875515,5.79875,4.690265,1.9914399999999999,1.5323399999999998,0.5860628571428571,1.5181266666666666,3.517615,2.516595,3.5340833333333332,1.3890133333333334,2.394205,2.3303,3.417065,3.52699,3.82755,3.9537166666666668,1.6912,1.366035,1.915185,2.018275,1.392645,2.587825,6.82271725,4.9172,3.297245,2.999275,6.67208,4.51002,3.172515,3.07208,3.404635,2.6756,3.862175,2.2975666666666665,7.36093,0.9396566666666667,3.113825,6.71245,3.814895,4.762355,5.48015,1.4922466666666667,3.042146666666667,2.88143,2.8646233333333337,1.48328,4.007965,8.67704,3.2121,5.1938,4.01122,3.350185,4.846025,0.871895,2.775263333333333,5.2201,6.287823333333334,5.2205,5.82,2.773935,3.711766666666667,2.51124,4.687525,4.811665,3.9854311666666664,3.9854311666666664,0.75686,3.6221666666666668,0.930902,0.5800016666666666,1.7907525,3.709566666666667,4.128988,5.637373714285714,3.069623333333333,3.376573714285714,3.4121890476190475,2.7687166666666667,3.1481399999999997,4.586866666666666,3.7195799999999997,2.03878,2.03878,3.919845,3.07004,2.743403333333333,3.607695,3.360133333333333,0.6137944444444444,3.1733733333333336,2.555076666666667,2.62693,2.66898,2.516675,2.5109733333333333,3.1602533333333334,2.8494499999999996,0.8526,2.891833333333333,6.439527476190476,2.08258,7.399502333333333,1.670792,1.670792,3.4431965,3.3991000000000002,3.3374,2.795113333333333,1.6884160000000001,1.2940328571428572,3.2794566666666665,3.2324933333333337,1.5270016666666668,1.483342857142857,2.806313333333333,2.604336,2.70425,1.8919,1.82489,2.93504,2.11139,2.821705,3.304645,1.861635,3.809715,3.26583,6.818706,3.560075,1.64593,3.170435,2.59621,2.2527,3.989245,2.23929,2.714165,7.1514275000000005,0.8540153846153846,0.7365925,4.526775,1.512504,1.512504,3.865045,2.4481475,4.563945,3.22711,1.3286566666666666,2.54547,2.937203333333333,2.5096133333333333,5.02955,4.004235,2.59537,2.051346666666667,1.3209535714285714,1.3209535714285714,1.9706333333333335,3.83104,3.7746,5.4938,3.1155333333333335,4.79644,4.323625,6.7747,4.200125,2.53869,2.8164266666666666,2.659053333333333,2.614053333333333,0.7256433333333333,0.7256433333333333,0.7256433333333333,2.787565,4.350635,3.782245,0.989655,0.989655,4.821245,6.0629,6.43571,21.7954705,11.7438,7.40912,2.90237,5.8236,2.2104225,4.036355,2.5553433333333335,3.13917,4.0691,5.343911333333334,2.04799,2.162265,6.06094,1.8689139999999997,1.8689139999999997,6.21155,3.153025,4.54,1.88499,4.744734833333333,4.45059,3.337695,4.89299,3.44232,1.0308533333333334,5.701,8.14303,1.0308533333333334,1.88499,2.123886666666667,0.925154,0.925154,1.7651700000000001,2.1823566666666667,1.7651700000000001,4.080655,5.5805,6.0785,9.0453,1.88499,11.429845833333333,5.8991,5.75405,2.2104225,3.32962,4.19781,8.1717,3.0519416666666666,3.76632,5.5243,3.30638,4.71001,6.3696,4.448385,5.08145,4.830335,2.850935,4.894595,3.107445,4.487465,4.41819,0.78625625,1.507166,3.130415,5.55185,4.46521,2.7018166666666663,2.0708,4.17147,4.76945,5.7167,5.2738,5.31265,4.384655,3.182995,4.07497,3.76826,2.103025,5.0559,2.000595,2.76717,3.502385,1.6717233333333334,3.94661,3.990445,3.64732,5.16335,2.72926,6.517195,0.9434333333333333,3.514355,1.937155,1.2227085714285715,4.945548,1.4363816666666667,1.7493566666666667,2.586676666666667,2.8340435,2.9147700000000003,2.7654033333333334,1.74603,0.7294927272727272,2.0968733333333334,2.533485,3.62557,0.6815015384615385,6.650761666666666,1.8725766666666666,1.166882,3.5046666666666666,1.166882,3.741565,0.8764554545454545,4.45775,3.17125,2.02664,4.195476,4.184531,4.184531,4.79149,2.5303,3.026353333333333,2.94122,1.590388,3.841405,3.64247,1.9137333333333333,0.6899099999999999,6.964851538461538,2.70461,3.81907,4.062955,7.40676,2.1991075,4.142325,3.79971,3.228135,3.680955,5.485,6.2584575000000005,4.44343,4.70456,5.3061,2.9441966666666666,4.8803,4.215755,4.45363,1.0656955555555556,0.4845535714285715,3.080415,3.3659,2.89852,5.3796,3.80482,4.151655,4.29079,5.1977,4.28558,4.098255,1.1805999999999999,2.245145,8.536966666666666,2.2604133333333336,1.8989133333333335,3.7350319047619047,11.336537579365078,1.54728,4.59619,6.4243,4.84544,3.448366666666667,2.27547,3.3291133333333334,4.11738,1.1021366666666668,2.775463333333333,3.37181,0.3500442105263158,2.0462433333333334,4.40588,4.14135,2.27224,4.14254,2.893325,5.090815833333334,1.3010233333333334,0.5353718181818182,3.7897925,1.15509,1.04194125,1.04194125,1.04194125,1.04194125,1.5849216666666666,2.6887666666666665,1.9189766666666666,3.2331066666666666,5.33915,3.5201333333333333,5.25155,3.60825,4.193895,3.43705,3.889195,1.4647866666666667,6.593555,2.36339,4.629905,5.36449,5.0448,5.0587675,2.3602933333333334,2.46429,2.5467233333333334,3.39019,1.2979766666666668,4.698731666666667,2.7088666666666668,4.888325,2.91398,2.3763833333333335,3.743995,3.479825,2.99619,2.4408266666666667,2.6258266666666668,1.5094725,0.42099,4.058075,3.533265,4.166795,3.4843,3.684455,5.6744,4.156355,0.5462607692307693,3.235892,7.161584666666666,2.1543666666666668,1.7713259999999997,5.360476666666667,4.25529,2.6808666666666667,4.70958,5.0841,4.33415,3.98929,4.027305,5.2063,5.7025,5.109,3.563585,5.200056,1.4749919999999999,1.6241349999999999,3.948195,4.0922,3.742765,3.058395,5.43135,4.63832,3.91998,3.32097,15.014124626643644,1.253419562600321,1.12422125,1.860712159090909,0.493700625,0.47202533333333335,1.251825,0.30172647058823526,1.350468,3.4423333333333335,1.8697279999999998,0.94495,1.08071875,0.46198500000000003,1.08071875,1.08071875,0.46198500000000003,0.8244230769230769,0.5542342857142858,2.720175,2.7309866666666665,4.886015,3.75383,2.8248166666666665,2.7228,4.232275,4.532425,4.8884,2.782395,4.15985,0.6911257142857143,2.3654433333333333,8.146764166666667,4.078205,6.544476666666666,2.81009,4.065725,2.462475,5.2547,5.5544,3.409725,4.43828,1.9829,0.9874366666666666,4.47363,4.66872,1.069496,1.2343959999999998,1.5215233333333333,2.6206,1.9964066666666669,4.654825,5.2108,2.3638675,2.3638675,3.532825277777778,6.68088,2.1120233333333336,0.66569,0.77408,2.23589,3.442466666666667,0.89573,0.89573,0.89573,0.37308230769230766,1.0328857142857142,2.9019,6.0462,3.8326333333333333,4.1413649999999995,5.2942,1.0369300000000001,3.435233333333333,3.1787033333333334,3.9266,5.82565,2.5343533333333332,7.351516666666667,4.967375,1.0898855555555556,3.7326,1.832808,2.41698,2.31424,6.962705,3.3187533333333334,4.3137,2.1393975,4.50617,4.429465,4.831175,0.5000561111111111,2.203516666666667,1.4314133333333334,2.55477,4.0566933333333335,2.1310966666666666,2.8014166666666664,2.4334933333333333,2.5539466666666666,2.6787266666666665,3.007766666666667,2.9143233333333334,2.91496,1.41872,2.1848266666666665,2.0165866666666665,3.1649366666666663,2.54198,2.1351225,1.7170933333333334,1.9106033333333334,1.66012,3.12243,2.2311666666666667,2.003956666666667,2.028163333333333,2.4087566666666667,2.255123333333333,0.7888522222222222,0.7888522222222222,0.7888522222222222,2.4261166666666667,2.0311966666666668,2.95919,2.2685833333333334,2.5892666666666666,2.097636666666667,3.922485,3.457086666666666,1.2917866666666666,2.434016666666667,2.7730433333333333,3.7472633333333336,1.5548285714285714,7.073486666666667,4.509925,3.30821,4.144935,3.580435,1.51947,0.7311642857142857,3.505435,3.780675,3.7472633333333336,4.18203,4.239025,4.455625,2.9624633333333334,3.894015,4.30121,0.85053,3.03964,3.294645,5.028575,4.79845,3.582105,2.99718,2.52326,2.2472266666666667,2.1244366666666665,0.6380925000000001,5.303998333333333,2.65785,4.050665,2.73655,3.7897350000000003,3.2428166666666667,2.43254,3.1208736666666663,3.1208736666666663,2.457663333333333,2.2417433333333334,2.6023166666666664,2.0022166666666665,4.35263,1.444512,2.56759,3.659215,4.17899,4.013865,5.4279,3.858405,2.46135,2.06407,3.209045,2.94322,2.581725,5.14185,2.702655,0.8650728571428571,0.8650728571428571,4.62781,3.8916299999999997,0.9423,4.356025,0.9423,4.001855,4.53767,4.82983,3.212055,3.28087,6.3633500000000005,4.0900225,5.63825,0.8376714285714285,0.8376714285714285,1.9814520000000002,4.50992,1.534895,2.975025,3.36894,1.1095985714285714,3.890835,4.045915,5.582775,5.582775,1.0665566666666666,5.57185,5.1353,4.858915,5.9564,2.0119775,2.0119775,6.92385,0.9615272727272728,7.151,1.9121675,6.1915375,2.77994,2.6412233333333335,3.475605,2.17098,2.00901,2.3604766666666666,2.9975533333333337,2.578775952380952,6.3109079999999995,1.7968879999999998,4.8726,2.9548233333333336,2.60547,1.659985,2.226165,3.31238,3.52819,3.258415,2.746115,2.212235,2.00653,2.583755,1.1113680000000001,3.31285,2.48213,3.192675,2.0482175,2.0482175,3.16677,2.076983333333333,3.8099,3.347945,4.84147,7.280535,4.246085,3.50493,6.460705,2.0046033333333333,3.400081111111111,2.292543333333333,1.4875,1.63622,4.19725,1.5854533333333334,0.50266875,0.65474,4.08918,4.57362,2.889945,0.9570022222222223,2.879945,2.9940366666666667,4.810135,1.7624479999999998,1.89522,1.1323999999999999,4.689585,2.376895,4.28675,0.699385,4.28471125,3.835995,3.65089,4.372175,3.55151,3.91311,2.79176,5.39315,3.612345,2.0306566666666668,2.705853333333333,6.064603333333333,6.1651525,0.7172025,3.691765,4.645865,5.2348,3.6592333333333333,3.8600333333333334,2.7925,3.23818,3.6903666666666664,6.0402,2.604336,2.560663,3.84952,3.06499,2.32336,2.44636,8.503216666666667,4.646825,1.9071333333333333,5.01425,4.76243,1.80479,3.761605,1.2927625,1.6044571428571428,4.51533,3.990025,4.714445,2.4022,3.12677,3.120115,5.26065,3.944275,3.92982,3.204815,3.84046,3.944305,3.6696575000000005,1.1603193846153848,1.1603193846153848,7.2884,0.8095525,1.831556011904762,0.8095525,0.7181449999999999,0.3063433333333333,2.549701011904762,2.728745,0.6568014285714286,1.831556011904762,1.89237,2.94219,1.892899583333333,3.69333,4.4269,6.920821666666667,1.978805,2.201425,2.10354,4.51941,5.70565,1.975295,1.7486675,1.0694325,2.8181000000000003,4.264285,2.68122,4.233035,6.413092499999999,0.43604444444444446,3.72238,0.727746,2.7706233333333334,2.2095425,3.65711,1.2503116666666667,4.12686,4.607419999999999,4.00859,2.688605,3.9522,5.3447775,1.7229725,3.211685,0.6001869230769231,2.457355,2.48242,1.114824,2.8527299999999998,2.4886033333333333,2.5107566666666665,3.58511,8.76649,3.0301651515151518,3.77326,3.41285,6.73405,5.344475833333334,3.230446666666667,4.269955,3.619115,5.85695,4.418775,5.18995,4.783625,4.179275,5.2688,4.0264,1.5001775,1.9800333333333333,1.9085433333333333,3.93366,2.4314533333333332,0.19331594594594595,0.19331594594594595,0.19331594594594595,29.681953,0.19331594594594595,3.190115945945946,0.19331594594594595,0.19331594594594595,0.19331594594594595,3.320415945945946,4.22289,0.19331594594594595,0.19331594594594595,0.19331594594594595,0.19331594594594595,0.19331594594594595,2.902785,5.35523,2.91745,0.2252025641025641,0.2252025641025641,4.347887333333333,4.027004333333333,3.883068333333333,3.1717223333333333,3.9478004761904764,8.0089,11.20353028904429,6.321116333333333,8.005446666666668,7.437267821428572,2.74845,6.3874361904761905,4.28381,4.542357115384615,0.2252025641025641,8.114888666666667,6.609220761904762,7.02445,2.615875,9.474427321428571,14.38007017857143,18.589773965201466,55.86875727215758,115.81800060365941,1.3922566666666667,3.429866666666667,3.3358,3.732969734877735,0.2252025641025641,1.6396629487179486,8.527547916666666,14.991496654761905,19.910695833333335,47.60534325,13.399256488095238,3.197625,0.2283013793103448,0.2283013793103448,4.398836666666667,2.6626533333333335,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,5.05054,0.2283013793103448,0.2283013793103448,0.2283013793103448,2.715105,1.7908966666666668,4.18278,3.77221,3.8399525,5.19205,2.0992225,4.174545,4.314335,3.089385,1.4812200000000002,3.552725,1.00383,2.2902425,2.0080733333333334,5.11488,6.162536666666666,2.8206933333333333,5.603240555555555,0.5283111111111112,0.4483333333333333,2.5073133333333333,2.7728633333333335,2.84763,3.754505,3.300186666666667,7.3254675,3.773325,3.687825,3.44332,3.994715,3.06081,3.391525,5.46435,1.93808,0.4482123076923077,0.8328381818181818,4.14759,1.866725,3.627705,3.803825,4.42478,3.688885,2.3715475,2.640715,0.6175213333333333,0.740768,4.340605,2.6314233333333332,5.17785,3.543315,3.8716616666666663,2.433715,2.845955,5.1467,4.033645,3.294955,0.8067863636363637,3.2912866666666667,4.40268,2.357705,0.969735,1.5925466666666666,4.043335,6.0796,2.039315,3.056665,3.87692,5.42955,2.6819,2.31086,2.44496,4.486,2.53021,3.841865,0.7111657142857143,2.1612966666666664,3.293055,1.887165,5.993275,3.33513,3.960865,4.18224,2.994125,1.928905,0.5164227272727273,4.53849,4.672535,6.1174,2.93858,4.22429,4.58029,2.89583,2.84564,1.2060057142857143,5.053,2.06041,2.78438,8.696765,4.092605,4.757615,3.630525,0.74279,3.14431,1.2495671428571427,3.369035,6.1382,4.97969,4.986205,3.714965,4.93651,4.39476,1.6477325,1.75301,5.0658,3.1333333333333333,3.3378333333333337,2.4213175,5.4007,4.52828,1.4495883333333335,3.5351,2.788505,2.82627,4.14694,9.31153,4.72369,1.7471675,4.69992,6.32479,4.396025,4.02391,3.882125,3.972055,4.52756,8.194375,2.3330866666666665,3.75934,3.403085,4.20511,2.791425,3.25317,4.887055,4.47013,3.52109,4.034922666666667,18.670948666666668,2.824176666666667,2.5387133333333334,3.3733,5.563543666666666,1.21198875,4.1373,2.088610833333333,4.976975,1.365245,4.104255,4.37442,3.722545,0.97371125,4.505865,4.279065,1.5302825,4.560447651515151,4.364175,1.0537871428571428,3.36268,1.873435,2.35078,1.565445,4.23607,3.659845,3.72609,3.65626,2.991956666666667,4.54052,7.994868333333333,4.467875,4.319315,4.74253,3.11647,4.012065,4.845575,6.226573999999999,0.8125859999999999,0.8125859999999999,4.36148,4.927425,2.1973933333333333,1.3685349999999998,7.100485,3.95003,3.438935,3.82052,4.650925,4.462995,3.56072,3.917145,6.56473,3.9544033333333335,4.62283,4.824525,1.4422142857142857,2.657675,4.348655,4.50359,3.56225625,0.1983336111111111,1.5182025,2.1416575,2.3981233333333334,2.104293333333333,0.9363322222222222,1.510935,1.4427875,2.3342666666666667,0.60131,1.0824214285714286,1.8950125,3.78142,3.964566666666667,2.0988666666666664,2.554796666666667,2.8757800000000002,2.63821,0.726954,0.97107,2.863835,4.69407,4.151295,2.907545,4.363875,4.38038,4.21729,2.0810400000000002,4.30541,5.0534,4.505825,6.163467499999999,3.66691,0.49136823529411766,5.361,4.49737,3.79139,4.73243,3.197465,1.9090219999999998,3.82513,4.09245,3.101945,5.259865833333333,4.591865,1.4025483333333335,5.259865833333333,4.232115,6.831887500000001,3.649695,1.2347333333333335,3.791435,4.937865,4.13314,2.53183,4.95695,1.45147,1.940985,3.413955,3.461025,0.7940877777777778,4.89244,4.862415,3.61271,3.877865,3.2431133333333335,3.01933,1.7794619999999999,1.773215,3.291855,3.380955,3.374233333333333,2.430266666666667,2.267785,1.9773936666666665,4.07682,1.4342428571428572,0.8273766666666666,5.82003,4.009315,1.443538,2.4971633333333334,2.19263,3.0643733333333336,5.950435,2.1870494444444444,0.8332090000000001,2.64546,4.35847,1.9913633333333334,4.03578,5.11035,5.3596,4.580105,4.18279,4.81621,2.1555866666666668,2.2960533333333335,1.7103733333333333,2.1577699999999997,1.91375,2.37513,2.1981566666666668,1.540615,2.75557,3.014665,3.80192,6.50115,4.64114,4.137835,4.48163,3.87223,3.787745,4.66418,0.90854375,3.20984,4.61685,1.167854,0.6532006666666667,4.838575,3.54516,2.431643333333333,3.40619125,5.98236,5.51485,0.955199,1.2120671428571428,0.7003133333333333,4.034175833333333,2.18113,2.7665566666666668,1.18465,2.73549,2.635596666666667,5.74405,4.63959,4.412925,5.0432,4.4417,1.2273116666666668,3.58552,1.7356066666666665,3.48449,3.975145,3.55959,2.4624099999999998,3.162326666666667,2.5704066666666665,3.35378,4.136375,3.09643,2.499295,8.223790000000001,10.0670075,4.01968,1.3415857142857142,5.4587,4.02693,4.703205,4.561375,3.88455,3.88116,3.450345,4.163765,3.6326702083333338,4.88734,3.71412,3.82487,4.586715,1.8208659999999999,5.17935,5.6889,4.71237,3.329975,3.422155,7.3266849999999994,0.795105,2.63871,2.7345066666666664,2.35928,4.9774,3.16532,1.3033483333333333,4.224685,3.3246599999999997,3.646625,4.725505,4.0013625,6.48639,3.1964400000000004,3.003833333333333,3.1707866666666664,2.8561300000000003,3.95783,2.067083333333333,2.12608,3.0107700000000004,3.97099,3.649510416666667,1.97317,1.5423825,3.3264914285714284,3.1489650000000005,0.92406,2.551473333333333,2.551473333333333,1.223245,5.70185,2.80052,3.49297,3.441785,3.218415,3.40877,3.401435,3.197515,3.01045,2.36953,0.5178653333333333,3.307035,5.6936350000000004,3.068775,3.729395,3.20279,4.046605,4.068625,3.1464,2.83313,3.934455,3.606955,3.00463,2.858005,3.719555,2.6405366666666668,4.24265,3.92309,8.87576,3.25157,3.630015,3.05019,4.015665,4.080545,3.59123,2.40752,3.6237,2.591465,2.77983,3.03177,3.12568,3.727725,1.7878800000000001,1.7878800000000001,2.236735,2.971065,3.358285,1.562284,2.57783,3.426575,1.8331579999999998,2.809025,1.562284,4.409885,2.96853,3.8067244999999996,3.020275,3.43078,2.54781,3.155435,4.00625,4.093095,3.39763,4.336325,3.6783,4.18139,3.73201,2.82017,3.335255,2.964905,3.847695,2.6181933333333336,3.67741,5.27175,4.159595,3.606875,0.3088965217391304,3.851175,0.4570733333333334,3.615105,3.603395,3.00398,3.53445,3.731865,5.940441666666667,3.216795,2.549446666666667,2.3313466666666667,2.8190733333333333,0.658173,6.364048333333334,2.94019,3.41517,3.78023,2.11894,2.68559,3.187455,3.15832,6.681805,4.62951,4.84846,4.29501,4.39844,4.194835,3.724415,1.4944333333333333,1.643054,3.99216,4.577535,5.69947,2.49579,4.855475,1.877715,3.4642,4.205775,1.869940476190476,4.067475,4.92073,3.510533333333333,3.7593333333333336,2.6664666666666665,4.4139,4.588445,3.3485333333333336,4.38158,4.346525,4.77212,4.437685,4.432045,4.04592,3.0247,4.17835,2.541525,3.1857666666666664,3.1857666666666664,4.08532,2.46855,3.823155,2.3936100000000002,4.307855,3.2835566666666662,3.630785,1.97514,1.8443966666666667,1.167165,1.167165,1.6243480000000001,3.3714666666666666,1.7131666666666667,2.8528300000000004,3.604925,5.2026245,3.2902466666666665,4.22639,5.80121,2.861715,2.803955,3.0446033333333333,1.88696,4.156165,4.12368,6.1344075,1.81916,5.2266,5.6578,3.410433333333333,3.51507,4.03378,6.85248,2.0572933333333334,2.40793,4.112515,0.5272385714285714,3.643765,4.124935,4.312075,4.13292,2.991955,1.34084,1.621798,3.94608,3.214925,2.397553333333333,3.752095,4.599595,5.1556,0.9844,3.22579,4.59219,3.6672,4.593115,2.4596633333333333,5.455766666666667,3.691435,1.6320219999999999,3.44099,1.2201133333333334,2.7398066666666665,6.942776666666667,3.40455,0.6564454545454546,3.236975,4.033165,3.73962,1.8222675,1.8222675,4.998716666666667,5.6239,2.888,0.4916155555555556,1.8694675,4.489329166666667,4.1175,4.24049,1.794882,2.912506666666667,3.404525,1.1508484210526317,1.1508484210526317,1.1508484210526317,0.7623292543859649,1.3892025877192982,0.6268733333333333,1.1508484210526317,0.7623292543859649,0.24365842105263158,0.8705317543859649,0.24365842105263158,0.5186708333333333,0.5186708333333333,0.5186708333333333,0.5186708333333333,1.0637604999999999,1.048245,2.2802266666666666,2.304918333333333,1.08254,6.245585,2.65756,5.876071666666666,2.4181766666666666,3.7141,2.829315,3.427845,2.7147449999999997,4.44194,2.9245933333333336,4.103015,4.04075,4.86975,2.1140175,3.89201,4.82945,4.151215,3.498655,5.0108,3.457545,4.474755,5.43335,5.4349,6.25385,5.33785,1.09701125,4.71521,3.811795,3.014895,15.69307,4.509315,4.97964,2.668343333333333,7.82525,4.0625,4.31308,4.81253,3.14298,1.0532825,2.523415,4.00302,4.13442,3.52393,3.330815,4.09127,2.9664366666666666,4.36297,4.744215,4.24168,6.615938333333333,7.249376666666667,1.2549242857142857,3.71389,3.947685,4.20166,3.650605,3.630995,7.09415,2.60591,2.851695,2.57893,3.90757,3.74229,4.57814,2.560725,1.742805,0.9351079999999999,4.298495,3.391895,3.55648,4.207115,3.635075,5.09365,3.96298,6.2469,5.96425,5.1064,6.52165,3.67901,3.245655,3.24406,3.34018,1.8138375,4.327565,5.3132,6.15105,5.619898333333333,5.619898333333333,2.60617,1.8138375,1.9732,3.22979,0.7173066666666666,1.5023441666666666,0.7850375,1.336165,2.50602,0.351753,2.75869,4.209795,1.336165,3.0857729999999997,10.95632,6.733625,2.2858716666666665,1.0321799999999999,1.94496,4.44167,4.351335,5.669583238095238,1.9543325,2.356065,3.579745,3.53023,4.449735,1.5767066666666667,5.21755,3.4979666666666667,3.429345,5.17515,7.121528,3.76811,2.3860875,2.7885500000000003,1.7556,3.778505,5.201635,1.7695560000000001,5.728,4.354995,5.9072949999999995,0.527634,4.605003333333333,5.62885,4.57404,2.25093,2.6548,7.2802,7.622933333333333,6.4554,1.7875333333333332,1.7875333333333332,1.7875333333333332,4.832395,4.40659,5.4486,3.495035,2.732795,2.568171052631579,4.013595,4.0468,2.525651,1.97073,2.525651,7.040921,4.903403333333333,4.741809047619048,7.38489,4.741809047619048,4.741809047619048,3.593305714285714,6.80596,5.653379,2.920154,2.920154,2.534385,7.05585,2.865305,3.5114,5.366976666666667,5.366976666666667,5.366976666666667,7.16422,3.5382275,3.504105,3.612965,3.4691375,0.80436,7.540403333333334,2.637,6.1204,3.470715,13.100249999999999,4.54447,5.429195833333333,6.92507,2.521355,3.503275,1.1160733333333333,5.429195833333333,3.230245,1.6366675,1.6366675,3.05956,5.391843333333334,1.8082025,4.88228,0.887303,1.4517466666666667,0.887303,1.96131,2.6955055,5.2563830000000005,3.36258,1.4517466666666667,2.952035,4.9083025,1.1633025,3.365655,4.56325,2.06546,4.122038333333333,2.48237,3.254275,2.816085,0.86342,3.69109,2.0755,2.22282,1.7084766666666666,3.549951666666667,3.85041,2.46749,3.66658,1.3493122222222222,1.3493122222222222,1.3493122222222222,3.697415,3.0265,3.0265,3.38603,4.000635,2.303533333333333,1.34403,1.34403,2.3026,4.641115,0.90395,1.46207,2.52338,1.2412816666666666,2.703351666666667,0.86342,0.86342,2.0166991666666667,0.86342,3.3625391666666666,0.524765,3.3625391666666666,6.0641825,3.208335,2.3523866666666664,1.8002313888888888,0.8048299999999999,2.6050613888888887,3.67358,2.6050613888888887,0.9661088888888888,3.03417,4.0903,3.89376,3.604755,2.432305,3.81348,2.0623566666666666,0.9630397222222222,0.5197275,0.9630397222222222,0.4433122222222222,0.9630397222222222,0.9630397222222222,4.311975,4.414585,6.3151,3.39972,4.41067,4.354125,5.11735,3.380045,3.73,1.3226928571428573,2.4803666666666664,4.396376666666667,3.865485,1.3671566666666666,2.754493333333333,4.01476,3.81001,4.07904,3.396375,3.997655,3.621945,3.270775,4.41151,2.3066766666666667,6.1098,3.733825,3.88714,4.403217142857143,1.0842926428571427,2.07284,3.204375,6.20396,4.010115,3.48091,3.0571033333333335,4.320055,7.39721,3.176833333333333,4.11925,2.8389100000000003,4.597465,3.98295,5.62305,5.38595,4.26939,2.86138,5.1122,4.801,3.5927666666666664,3.755905,3.3906333333333336,2.3317575,2.390006666666667,4.855735,6.4651,4.973395,5.0926,3.958345,4.79369,5.7167,0.5190523076923077,7.21492,4.57891,3.6878,3.76624,4.691055,3.955475,2.957523333333333,2.4457775,1.3154350000000001,0.5713261538461538,1.743532,2.9794766666666668,2.957845,2.967,3.73078,4.048615,11.303908333333332,3.773995,4.036105,2.95669,0.7008233333333332,5.59581,3.291873333333333,1.7191133333333333,5.010986666666667,5.5829683333333335,2.291095,9.19297,4.35379,1.9381779999999997,1.9381779999999997,1.9381779999999997,3.913565,9.37394,3.20044,2.539475,2.539475,3.3207,9.80204,0.99994875,4.75341,4.44639,4.113635,2.801346666666667,2.21086,4.35487,3.85927,5.91115,5.94985,3.91284,2.780815,3.826295,4.047975,3.369905,1.19997125,2.7848633333333335,6.27919,3.25793,4.623745,0.958015,3.7189333333333336,2.29349,2.6237666666666666,1.7893,1.7777066666666668,2.1368233333333335,4.96168,2.144015,4.27902,5.57525,1.7968879999999998,4.9439,3.73277,4.60702,3.2036833333333337,2.23061,2.76135,4.361215,4.1216825,4.1216825,1.1734575,1.6018566666666667,2.9032766666666667,4.414007,2.244086181818182,4.8801646666666665,1.8073679999999999,2.7262500000000003,2.09506,1.64857,1.64857,4.89428,7.43052,1.8834933333333332,2.9753666666666665,2.26526,4.891295,3.17113,0.8809340000000001,2.962755,0.8809340000000001,2.545265,3.521805,5.214,5.4627,3.64351,4.632806666666667,6.1641,2.481325,1.8817833333333331,3.0165433333333334,2.29886,5.9338,4.96562,2.587955,4.127045,2.77833,4.50833,1.1043225,1.1487120000000002,1.8731933333333333,1.2356416666666667,2.5643866666666666,2.70849,2.3063,2.91465,2.66831,4.53109,2.5922466666666666,2.34448,2.7376566666666666,2.41965,2.8759200000000003,2.62625,2.0388433333333333,2.413186666666667,3.90248,3.902235,2.994265,3.20649,2.7844433333333334,2.176475,1.86329,1.1276599999999999,0.2822555,0.13146108695652173,2.172286666666667,1.7429166666666667,0.13146108695652173,3.429746920289855,2.0293225,0.13146108695652173,5.7619396527777775,2.0702583333333333,6.28754,3.47431,3.06591,2.5783766666666668,3.0379666666666663,2.2106975,4.4203,3.0458833333333337,3.26491,0.4262647368421053,4.068580000000001,2.6362647368421053,2.918415,1.711015,2.418775,4.198225,2.407535,7.940144999999999,5.2388,3.327205,3.708245,6.90856,6.42411,1.8846866666666668,4.25885,2.02632,2.019355,7.25861,7.94226,1.2492066666666666,2.0713575,3.716575,2.70253,3.061685,3.160295,2.752495,4.546125,2.21369,3.230145,3.39991,3.18659,7.3375,1.4157833333333334,1.978665,2.78683,3.367955,1.8800733333333335,3.41531,1.87883,3.712845,3.33726,6.53313,3.43824,9.2480775,3.66636,1.438244,1.6172166666666667,2.844765,5.70582,1.5838875,1.6680366666666666,5.89856,3.386275,4.062165,2.53288,2.1088066666666667,3.073715,11.071065,4.93745,6.41106,3.516335,2.653295,2.18595,2.283025,2.92282,3.471045,1.5979816666666666,1.6641899999999998,2.4557466666666667,3.46106,1.75524,3.44726,2.711485,3.048255,3.74088,3.33966,1.1604616666666667,2.55145,1.1262633333333334,1.25437,1.37532,3.205195,3.341175,3.458895,2.607155,3.83799,3.96897,2.90397,1.453696,3.454615,3.4685249999999996,2.984285,2.13725,2.90107,3.32994,1.47044,3.35302,1.53365,4.02159,4.169275,4.73528,2.54949,3.702675,1.711825,3.23637,4.862285,1.78492,1.09852,3.509,2.708085,4.387925,4.16609,2.787675,4.510005,4.949685,2.4455466666666665,5.303,5.314235,6.55005,3.99024,6.112971666666667,4.029465,1.6056766666666666,2.8568166666666666,4.577025,4.84957,2.5857533333333333,7.462022,1.217677142857143,3.3772333333333333,2.17144,1.7898640000000001,2.2657833333333333,2.74385,0.376275,2.75116,3.4159333333333333,4.070475,2.67744,3.1739433333333333,2.294486666666667,2.39226,2.1829875,9.307195,4.949485,1.73663,5.09205,2.360804652173913,0.722852,2.7536199999999997,7.5611239999999995,1.7541820000000001,4.656852499999999,6.177716666666667,1.9110875,1.623835,1.4426775,4.34651,3.17859,4.36695,3.810435,2.40654,3.54208,0.8590579999999999,2.692488,4.16321,4.104375,4.768845,3.00984,4.99273,4.81519,4.10817,4.837625,5.78025,4.725925,3.957585,4.604025,1.528866,1.8843475,2.84925,3.33439,1.1607222222222222,3.865315,2.09259,3.3089433333333336,4.346455,3.2268133333333338,2.5833733333333333,1.5330466666666667,2.918253333333333,2.7802091666666664,2.5353499999999998,2.9457066666666667,1.9020933333333332,2.067665,2.443915,3.89175,4.386125,3.9401,4.82342,3.428325,2.449515,2.92583,5.06545,3.6644,4.717595,3.439255,2.32992,4.554526666666667,1.7611766666666666,4.06814,4.834609166666667,5.993829166666667,3.84913,4.470975,5.39525,3.322416666666667,3.9695116666666665,4.446985,3.467335,3.818176,3.361565,1.385235,3.160035,1.7375,2.286085,4.16917,5.1405275,3.818176,4.00707,3.62647,1.534895,3.70984,2.06423,2.23929,2.22737,2.84441,1.519025,1.519025,1.519025,0.48729,0.7619044444444445,2.0608894444444443,1.096945,3.45536,1.3921999999999999,4.04793,5.17455,4.5988,3.302715,3.99138,3.15438,5.08165,1.6253025,3.044765,2.68138,3.01863,5.817279000000001,4.34154,5.2186,4.131195,1.0297775,2.36648,1.3160166666666666,3.842905,3.89499,4.13031,4.989855,4.686835,3.99052,4.60782,3.78891,1.68451,1.11863,5.277873333333333,1.0678088888888888,1.2584833333333334,2.8499600000000003,8.103765,2.98937,3.887465,2.63199,5.713627499999999,1.7653675,0.9925766666666668,1.389525,3.123375,3.692195,3.884715,3.627035,1.88175,6.18434,2.8568700000000002,0.92245625,4.75648,2.9105000000000003,2.89826,2.3295866666666667,3.616633333333333,5.4321883333333325,2.6661733333333335,3.1578366666666664,3.488766666666667,2.5993133333333334,2.8446933333333333,2.98184,2.533275,2.1014625,4.729815,4.652555,4.99122,1.02946,0.725203,3.7634666666666665,2.70242,1.04453625,2.763552916666667,3.65898,4.309555,6.90291,4.732715,3.5210333333333335,1.776124,3.72477,3.666,2.8452333333333333,2.5049494285714284,3.860985,2.813416666666667,4.927918666666667,0.8882533333333333,3.426605,1.8194400000000002,3.70514,4.199825,1.8391,1.0796,3.1131,0.430093,3.272215,6.87805,5.18915,2.835874,1.500216,3.8729666666666667,0.793151111111111,2.69197,0.793151111111111,4.129825,4.17972,1.3762975,1.79192,5.194603333333333,1.8683633333333332,3.53603,2.68714,3.73122,1.269606,1.57941,3.62688,4.47143,5.29285,2.959906,2.652775,3.218775,1.534135,2.5719,1.8623625,1.97221,4.04092,1.4414444444444445,1.4414444444444445,3.077785,4.618021333333333,8.383999166666667,4.84021,7.728535000000001,2.33035,3.713835,4.103095,1.6576000000000002,3.5932158333333333,4.05133,3.121765,4.95624,3.133835,2.565915,2.9509633333333336,3.956435,1.08644,4.109525,4.51017,1.1533683333333333,7.993406666666667,2.51633,3.34057,3.4612333333333334,4.97474,4.53708,3.6162429166666668,2.5466633333333335,2.809013333333333,2.0969633333333335,3.6766,2.2857025,2.180685,7.1939720000000005,3.2667800000000002,2.8995466666666663,4.19389,22.263631391941395,0.6798333333333333,2.768845,4.53724,4.557095,8.14069,4.849855,4.336505,4.456925,6.860106666666667,3.472645,1.6165466666666666,4.891096666666667,3.34045,1.143862,1.143862,1.143862,2.39775,1.7093375,3.15755,1.48645,2.886415,1.4922466666666667,2.51325,2.811925,2.932675,1.48645,3.257705,2.749695,4.113848333333333,4.766966666666667,4.80236,0.7812041666666666,3.286095,3.01776,4.69557,3.497165,2.998985,2.3660525,1.704135,2.2561475,1.35907,3.87145,1.7870075,4.74849,10.917628,2.70074,2.433485,4.7650500000000005,4.6616333333333335,4.4799,6.2827,2.21,5.344475833333334,4.46074,1.117175,1.1555428571428572,6.521499,4.05569,2.4488575,3.655785,1.97529,4.001515,4.84333,4.575715,4.07609,1.3521542857142859,4.26147,4.84134,4.765005,6.266248,3.496405,5.35075,4.445155,4.490015,5.1914,3.5314333333333336,5.034,1.96008,3.50029,3.079995,3.6704,3.94131,6.10765,4.33747,2.65206,3.3284133333333332,8.88033,4.68777,3.2965766666666667,3.613975,3.38251,4.4103,4.33077,4.634715,6.7998416666666675,3.46863,2.7441566666666666,3.9809175000000003,2.562,4.159775,2.435373333333333,6.5234025,1.6020833333333335,4.307945,4.91205,11.44315,0.4379078571428571,4.504685,4.5745,0.6557521428571428,3.620845,3.76851,4.147445,0.945651,4.84332,4.9398599999999995,2.6924499999999996,9.854535,3.23265,1.8260500000000002,2.38282,3.522155,5.8888,0.5523433333333333,3.908955,1.9549925,5.407,0.7083469230769232,4.264875,5.56225,5.84695,3.55288,6.3287725,4.613445,3.41301,2.5556033333333334,2.8590933333333335,4.24458,4.48386,4.9634,4.96363,5.4574,3.14024,6.822405,2.83665,3.089655,1.819155,4.45039,2.2127166666666667,1.5256133333333333,3.280466666666667,2.930733333333333,3.0110733333333335,3.412333333333333,3.432233333333333,3.0724699999999996,2.6872833333333332,5.48715,3.186946666666667,3.755035,4.87327,2.70494,1.1458222222222223,2.9909199999999996,2.8882366666666663,3.92898,2.8914666666666666,2.8478266666666667,5.01605,2.04159,1.7205925,2.99459,3.72913,4.42354,1.096615,4.182965,3.272435,4.0003,2.9368733333333332,4.8678475,4.019935,3.385585,4.121855,1.718285,3.70993,0.65571875,4.655525,4.90544,16.403478181818183,3.1506600000000002,1.20033,3.94072,0.6255971428571429,2.6962,4.421765,1.79274,1.2270842857142856,3.604135,4.598435,3.201966666666667,0.7675383333333333,2.44224,7.47031,4.05381,5.6398,5.15465,5.2794,3.2607533333333336,3.529166666666667,3.194013333333333,6.812388333333333,3.969295,5.05805,2.14603,0.42944666666666664,2.153745,3.167465,2.098855,3.65942,3.93949,2.9141166666666667,4.778615,0.6870883333333334,4.568755,3.83828,2.979305,1.1670866666666666,2.7300066666666667,2.001866666666667,4.92977,4.028515,2.284565,1.6066857142857143,3.420745,4.477475,4.389685,6.262598333333333,2.1452033333333334,4.69038,4.48444,3.95635,1.9376919999999997,3.82469,6.005026666666666,4.96053,2.439175,4.72517,2.86983,2.723955,4.029585,3.789875,1.362,4.618145,2.14134,2.80115,5.219456666666666,5.219456666666666,4.356475,1.6682200000000003,4.89439,0.91995375,1.7423980000000001,5.0145,2.75916,1.4643933333333334,3.1270933333333333,0.90829,4.254066666666667,4.37896,3.09797,4.916845,4.1398,3.855085,5.4683425,3.532455,3.433033333333333,2.87092,2.4542466666666667,2.55095,2.931486666666667,4.49423,1.6386974725274726,2.8895766666666667,4.39303,4.825535,2.244772916666667,4.557905,4.67756,4.814191666666667,3.3969666666666662,5.3034,4.99962,5.1276,4.969025,3.69891,3.6556,3.750425,4.410085,5.5301,4.734815,4.89113,4.42578,4.604235,0.7171908333333333,5.0096,4.445905,3.97467,7.179612499999999,4.119115,3.798825,4.444485,4.761965,3.47419,3.63825,2.14028875,4.456835,1.86241,1.2523671428571428,3.63707,2.1091366666666667,2.4844166666666667,3.6582426666666663,3.27088,2.93202,1.1999366666666667,1.953625,4.635415,3.96844,1.894435,1.894435,3.31413,1.580562,3.1843733333333333,4.39652,3.43168,3.844965,1.60076,2.16824,3.5221366666666665,2.026635,3.79093,4.237775,4.479455,3.86611,6.63685,2.672,3.812835,4.575735,4.301685,3.173223333333333,4.01606,3.993835,4.374715,2.373645,2.51165,4.570675,3.95394,3.704915,3.70228,1.621465,3.82757,4.34724,4.501975,4.10399,3.9422675,3.9422675,3.1340433333333335,4.054895,4.191425,3.950805,1.7001460000000002,7.5466725,3.957905,5.07685,4.39278,4.167545,3.584855,4.742405,2.92618,3.517215,3.082165,4.980245,1.86233,4.343945,5.532600555555556,5.1398,0.708037,4.787105,1.11408,4.8174,4.55503,4.48301,4.14001,5.2204,3.6852666666666667,3.6852666666666667,0.883582,2.299675,4.981735,3.777545,4.15032,4.53924,5.68245,3.20083,4.301305,1.395105,2.736935,1.686175,1.2232025,4.2725,0.862449,2.4172966666666666,3.166593333333333,1.2502199999999999,2.034605,2.62275,1.3504216666666666,6.39765,2.0021425,2.3868666666666667,5.51325,1.98983,2.8199433333333332,2.918435,4.54071,3.2384733333333333,3.5162666666666667,4.266900000000001,1.641656,2.129830833333333,4.33612,0.6521692857142857,2.05632,2.3698783333333333,3.1183099999999997,2.8195099999999997,1.1402914285714285,0.8801916666666667,2.48603,4.26455,1.0972842857142857,2.1562875,1.28794,5.603511666666666,2.306075,4.93866,4.50561,4.24965,4.95394,5.2791,4.19179,4.263175,1.4252683333333334,3.970133333333333,1.733756,2.478833333333333,1.2203171428571429,4.290995,2.029595,6.794293,3.87277,3.857655,1.482146,6.960660000000001,3.567285,1.5968,4.034455,3.13758,3.873865,3.37005,2.04111,2.04111,3.358366666666667,1.3609416666666665,1.3609416666666665,1.9376919999999997,2.9072433333333336,2.1351225,1.2917866666666666,3.4646333333333335,1.0684275,3.21032,2.3984725,1.881705,1.5278533333333335,2.15049,2.0569375,0.2859482352941176,2.4659625,1.2206949999999999,2.3255433333333335,2.09506,2.46135,1.0567333333333333,1.1113680000000001,3.810333333333333,3.0958433333333333,2.04111,1.866725,2.03368,2.5213566666666667,2.406023333333333,1.82148,3.1694099999999996,1.05201,3.3087966666666664,2.7924066666666665,2.53799,1.515374,0.948902,2.338725,0.948902,2.338725,0.701075,0.701075,0.48884055555555556,2.262415,2.5070033333333335,0.701075,2.23754,2.3146666666666667,2.376725,1.66012,0.7888522222222222,0.701075,0.701075,1.6533919999999998,1.6533919999999998,1.9973375,1.866725,0.701075,2.2857600000000002,0.46621692307692303,2.8358666666666665,2.015433333333333,2.5341033333333334,2.668976666666667,2.668976666666667,0.378517,0.378517,1.9376919999999997,2.00004,2.14712,2.02224,0.378517,3.512866666666667,2.53255,1.624008,0.62571875,1.624008,0.62571875,7.69475,2.50354,4.064333333333333,2.5021166666666668,2.953606666666667,3.1243466666666664,2.81514,3.5370000000000004,2.51355,1.6537125,2.6596433333333334,3.176833333333333,2.28977,1.6533919999999998,2.4715790476190476,2.4715790476190476,2.7614566666666662,2.1213525,4.23577,2.3406266666666666,3.2958966666666663,2.8302033333333334,1.5589460000000002,2.477705,2.27278,0.7895263636363636,1.6085825,3.62023,1.68869,3.178406666666667,2.63436,2.566425,3.8463666666666665,1.6966833333333333,3.5345,3.052826666666667,4.1734333333333336,1.2565060000000001,0.2283013793103448,1.28539,1.28539,1.018771111111111,2.9822566666666668,3.9266,2.6393933333333335,2.144953333333333,2.144953333333333,2.1519325,1.53365,0.986038,1.8449099999999998,1.8449099999999998,0.701075,1.9376919999999997,2.8495266666666663,3.2851933333333334,2.3984725,2.08974,2.08974,2.08974,1.09333,1.4875,1.4875,2.47733,2.6741566666666667,2.6070494065656566,3.86964,2.55301,2.5544766666666665,3.64911,3.71977,6.8402575,3.89768,4.340865,3.9579,12.932892500000001,4.912555,3.611225,0.9317725,3.958925,3.133975,2.426315,3.732415,5.1035,6.119983333333333,6.023,0.4739976470588235,3.90321,2.924305,3.80578,2.461705,4.496615,4.24208,4.06914,8.352675,3.45762,4.02653,3.96915,3.268225909090909,7.838064512820512,3.09956,2.6590666666666665,3.64052,4.0033,4.95192,3.53067,6.363716999999999,4.0322,1.355288,2.731775,0.87338,4.777255,3.872945,2.8329,3.993005,3.995465,2.630995,4.907185,3.992095,7.56633,3.91678,4.577999,2.5129233333333336,4.88802,2.89794,0.891665,0.891665,3.458175,3.713425,2.375975,2.12383,4.16598,3.59632,2.92633,1.97837,1.9923075,3.092885,2.3937466666666665,1.15267125,3.41309,4.738915,8.39895,1.552112,2.83861,2.964295,3.30484,2.816496666666667,8.4245,4.19189,3.4662,2.9833200000000004,3.94988,3.2288,3.037986666666667,3.0820133333333337,4.004705,3.809915,4.5324,4.075335,0.401062,1.62157,2.4398066666666667,1.7852025,4.53827,3.58304,2.595876666666667,2.2075575,4.565035,3.783575,2.067825,2.276065,0.8944050000000001,2.20588,2.3838033333333333,2.3838033333333333,5.051,1.8978,2.7968166666666665,2.28452,2.069173333333333,1.8882700000000001,3.063755,3.75924,4.414645,4.331045,5.1825,4.725675,2.77129,2.9524333333333335,2.1102,4.73906,5.449498333333333,1.9603833333333334,2.88981,2.2395675,2.3282266666666667,3.918758333333333,2.463973333333333,4.723025,3.76219,3.600355,4.187595,2.91152,3.52772,4.027455,2.28213,2.3938566666666667,0.4110557142857143,3.8344,2.608093333333333,2.892045,6.06305,4.78996,5.600465833333333,1.7599775,1.5633483333333331,3.06744,5.3416,6.4999,5.39075,3.0820633333333336,2.2182666666666666,3.622755,2.163413333333333,4.6748,2.1702933333333334,2.3277375,5.4781,5.01515,4.19738,1.7893075,1.9249525,1.1073140000000001,1.1073140000000001,1.319274,0.9371542857142857,0.766388,1.915072285714286,4.375795,10.038146666666666,3.803345,4.295855,4.139355,5.7054825000000005,2.65155,1.6752033333333334,3.350875,2.900465,4.43329,2.48415,2.2971966666666668,2.9204133333333337,3.2928266666666666,2.3621466666666664,3.1570933333333335,3.3447999999999998,3.054123333333333,3.501633333333333,3.4003333333333337,2.9199633333333335,2.7837033333333334,3.170806666666667,2.3903733333333332,3.0491766666666664,3.1178566666666665,2.9583766666666667,3.2525366666666664,2.1795999999999998,5.474817333333334,3.2675633333333334,4.017018,3.2302466666666665,3.06033,3.6908999999999996,2.83079,2.7744633333333333,3.0898966666666667,3.1313,3.4601333333333333,3.164073333333333,2.0139875,2.801293333333333,2.73138,2.8761,2.8761,3.3143733333333336,2.8974466666666667,2.523493333333333,2.5947766666666667,3.1183266666666665,4.219333333333333,2.91208,2.74635,2.786823333333333,2.8203866666666664,4.335841666666667,5.0299,1.6130183333333334,3.2648166666666665,3.7616,3.379282,3.1790000000000003,3.7179333333333333,3.539266666666667,2.8169066666666667,3.2947319999999998,1.974816,2.93836,3.443766666666667,3.5119333333333334,2.5788100000000003,2.463713333333333,3.930733333333333,3.0473533333333336,3.090343333333333,2.3384075,1.154975,3.3546333333333336,2.687326666666667,2.1049366666666667,2.5608,3.11275,3.1306166666666666,1.916922,5.660322666666667,2.4767233333333336,0.9061170000000001,4.60901,1.91342375,1.66845,4.50166,4.319395,3.31184,2.140225,1.374415,3.300195,2.74244,2.61396,0.42456550000000004,2.029745,0.42456550000000004,1.85868,1.374415,2.68265,3.87386,2.4248275,3.032775,3.46753,0.510826,2.826446666666667,1.0065275,0.4477805882352941,3.92022,3.873115,4.864465,2.4651325,5.52015,4.210475,3.74951,2.235695,3.8760333333333334,1.7278580000000001,5.45815,2.453735,4.365825,4.64793,2.7534733333333334,2.0699366666666665,2.0772233333333334,1.3357966666666667,1.934635,0.9273225,0.9273225,4.3857,2.1980566666666665,5.956711666666667,2.1552975,2.294075,1.932985,2.16611775,1.9281875,5.04955,3.9527925,2.024605,2.5190033333333335,2.16611775,2.66352,3.69780525,2.0343512500000003,5.631238333333334,2.1552975,3.25009,3.364665,3.0544966666666666,5.5549,4.548105,1.955505,2.067435,2.3724575,2.542805,4.815925,5.47985,1.9411525,3.884985,1.88696,1.646195,5.28125,10.351166666666668,2.13308,2.2195466666666666,2.42428,4.40955,4.029645,1.8241475,4.684015,4.35679,2.66211,39.18059651190477,2.8678333333333335,3.153893333333333,0.41989166666666666,4.820235,2.17031,0.9374300000000001,3.64759,3.67703,1.90023,1.835405,2.3524,3.831345,1.3733071428571428,3.3065816666666668,3.80858,4.570045,0.942785,4.851405,4.678805,4.863405,2.9032366666666665,1.57596,3.7894425000000003,4.58881,3.86424,3.08862,3.58823,3.81411,11.774632575757575,2.7975666666666665,3.1131,4.05815,2.700695,4.512815,3.316325,2.2354,2.920055,5.26815,4.439415,5.2046,5.0975,2.458655,3.717645,4.23595,3.585755,4.6261,4.601855,0.10427032608695652,2.350695,5.4561,2.884395,1.4346416666666666,1.128875,1.128875,2.1304725,2.55676,2.439085,1.70033,2.7221499999999996,4.370285,2.452565,4.47659,0.5700828571428571,4.54111,3.473975,4.80706,4.68594,4.74452,1.24168,1.116435,3.8867666666666665,2.9163099999999997,3.0849100000000003,3.822023424242424,4.414945,6.3693,5.56855,4.149255,3.53443,2.1364833333333335,1.4800483333333334,4.35874,0.30545266666666665,3.37614,3.77331,4.023425,14.473436666666666,1.85500625,3.3348,0.67050375,4.557435,8.51187,3.32506,1.9378466666666665,5.85515,3.1720900000000003,1.1168855555555557,4.40245,2.886385,3.065185,4.80343,3.4788239444444446,0.9612475,8.404193333333334,0.7349125,5.00165,3.3158559444444444,1.4326125,2.1020049444444444,3.1729625,3.1729625,3.93604,4.405012,1.35535,2.514225,2.73787,3.645815,2.743225,2.67155,3.1726,3.285605,6.793846,6.4963,4.031345,3.28587,5.05925,4.80078,3.88537,3.3669,3.394895,4.04263,4.45743,2.5053966666666665,2.5563066666666665,1.61223,2.28538,2.3216875,1.5035175,2.6418866666666667,3.5642333333333336,3.4204000000000003,3.05926,2.4747,1.4812200000000002,1.5711266666666666,0.46475181818181815,2.52306,1.5222714285714287,2.00824,3.137696666666667,2.4672266666666665,2.5807066666666665,0.98725875,2.1934475,2.572765,3.25173,3.52282,5.39195,3.837045,2.942615,2.3036533333333336,3.42305,4.371685,2.529625,3.220515,2.03423,3.87479,2.771895,3.84959,1.4155133333333334,0.619233,2.4534775,3.23639,3.222455,3.892675,4.58658,8.404924999999999,3.0471766666666666,2.27015,1.9265233333333331,1.814152,1.814152,2.8661133333333333,2.5821733333333334,4.911795,4.569245,3.471015,4.94495,4.269605,4.295065,3.2682708333333332,4.21919,7.936730000000001,2.507325,0.50266875,3.33268,1.37307,0.9785714285714285,2.0322733333333334,0.7955829999999999,2.0806075,4.88992,5.26025,5.288995,0.84872,7.35844,1.939428,1.5609833333333334,2.4791866666666666,4.34017,3.3691666666666666,2.43679,3.564975,3.064743333333333,4.263766666666666,2.859453333333333,2.73319,2.996726666666667,6.67745,2.488185,3.9257,3.782976666666667,3.7260324999999996,1.5011999999999999,1.3120425,4.236055,2.780893333333333,3.0333366666666666,5.80275,2.865345,2.07356,2.436625,3.249505,3.6844,2.1831033333333334,3.8821266666666667,2.900233333333333,5.1804,2.434306,1.838585,4.738485,5.42725,4.469395,4.0702,1.4961033333333333,2.368545,1.8915,3.31743,1.7385666666666666,1.0115966666666667,2.8686716666666667,2.036225,1.9253875,4.24127,0.7759791666666667,5.9575024999999995,1.5514325,0.783520909090909,3.5955999999999997,4.042365,0.7027371428571428,3.1652880000000003,3.2826137500000003,0.8801916666666667,4.47223,0.17416190476190477,0.17416190476190477,0.17416190476190477,0.17416190476190477,0.17416190476190477,0.17416190476190477,1.9914640000000001,3.87371,1.9914640000000001,1.9914640000000001,1.827,0.17416190476190477,0.17416190476190477,3.1028800000000003,2.63943,3.47848,3.37338,2.310145,3.4879,1.3776499999999998,1.612822,3.369905,1.394708,2.7650366666666666,2.6475706666666667,5.882579999999999,4.322845,4.087685,6.21935,4.456205,4.264635,3.570645,3.70172,7.02192125,3.8135999999999997,3.661433333333333,2.36328,5.610986666666667,2.5615733333333335,2.045875,1.7895333333333332,4.591225,5.25295,4.95262,5.0063,5.55865,4.41931,4.638705,0.7445909090909091,0.7155285714285714,0.7155285714285714,4.564775,2.3182666666666667,3.89297,1.0550357142857143,4.68725,1.4636,2.3183166666666666,2.5605,4.487333333333333,4.487333333333333,6.8405,4.112255,1.349975,9.795755,2.869593333333333,1.1785666666666668,4.941605,4.92918,3.64112,3.15488,2.532735,4.320433333333333,0.7625866666666667,3.3264099999999996,3.408,3.8503000000000003,3.2371166666666666,1.5706666666666667,1.4617666666666667,4.6270375,3.196543333333333,3.04584,3.4828666666666668,5.400448333333333,3.333665,0.773358,1.8128366666666667,3.5551999999999997,2.281438333333333,3.8462333333333336,3.4744333333333333,3.072086666666667,3.513,3.064243333333333,2.3799,0.9524266666666666,3.0322866666666664,2.5590100000000002,3.57613,3.225695,3.998195,2.6296433333333336,3.238136666666667,2.76455,1.595766,1.8056033333333332,2.7326976190476193,3.6242666666666667,1.8298860000000001,3.3284533333333335,1.8208666666666666,3.697366666666667,5.4772083333333335,4.949200666666666,2.4633125,2.5586,2.747725,2.5739,1.654442857142857,2.3634875,3.3105503571428567,2.433895,3.5399333333333334,2.898225,3.797652666666667,3.074935,1.291611111111111,1.2925525,1.8389025,2.2208,2.9386566666666667,3.4570333333333334,5.1691,7.380157499999999,2.863065,5.1359,4.004865,15.377020333333332,0.41732050000000004,11.34337,0.8546411111111111,3.34807,3.1125833333333333,2.0822233333333333,3.05562,1.5557779999999999,1.453696,2.3421133333333333,1.255054,2.8462993333333335,1.9584633333333334,2.9076733333333333,2.1580633333333332,2.719393333333333,1.6414866666666665,0.6186733333333333,3.0654800000000004,2.5012,3.011746666666667,1.09333,3.5616333333333334,0.7284700000000001,0.36617153846153844,2.1735466666666667,4.431135,4.56494,4.58823,0.7974281818181819,4.015875,4.71282,1.1374825,2.2406375,5.13115,3.40027,3.775925,3.97072,3.90016,1.8897225,3.86308,2.7139166666666665,2.995015,3.46844,2.74444,2.827045,3.6912,3.19642,3.64341,2.534205,3.40992,4.524665,1.2588266666666665,4.614935,2.1874375,4.22358,5.160946666666666,1.9670925,2.817653333333333,2.98897,5.868005,2.450083333333333,3.157615,5.20735,4.064333333333333,3.983605,1.79195,2.74455,4.58839,3.6279,3.73243,3.7489333333333335,3.11552,2.8220666666666667,3.6526666666666667,3.1837233333333335,2.6517933333333334,2.679926666666667,0.4581694444444444,2.28299,2.0984375,4.5773,4.828965,3.0433333333333334,2.7891600000000003,3.1915366666666665,8.040595,3.5244537499999997,3.95613,2.8252900000000003,4.32434,3.168945,3.642180833333333,2.9461366666666664,2.271055,2.7298833333333334,6.4198,4.46089,2.14133,3.21047,3.096305,2.6113399999999998,4.635284,1.7267219999999999,6.172296666666667,4.0112,4.92976,4.49631,6.17285,3.54932,6.7595849999999995,3.83077,3.359175,0.6408207142857142,2.3835075,1.5176525,2.94889,3.0482825,4.017115,3.80179,5.50815,2.7138166666666668,4.52223,3.730366666666667,3.8333,3.1781733333333335,4.49419,4.44085,4.49787,2.71739,5.70538,4.51979,1.4461966666666666,5.35315,3.48282,2.704535,2.09306,2.19899,4.439184,1.2939500000000002,2.3944033333333334,1.9858225,3.88469,4.299955,2.59545,3.3305833333333332,3.0300269999999996,2.5683966666666667,4.145125,1.3410600000000001,2.28837,2.3123466666666666,2.8420533333333338,2.5114266666666665,2.5204666666666666,2.6830233333333333,3.938155,2.96036,2.8163699999999996,4.04698,2.47077,3.73627,3.651065,1.5163290909090907,1.5163290909090907,4.596865,2.884133333333333,1.783455,1.344165,2.074535,2.024405,1.118752,1.4368566666666667,0.628074,1.5979166666666667,1.48425,2.6998533333333334,2.1716433333333334,1.7935999999999999,1.9287066666666668,2.2865766666666665,1.4588833333333333,1.7870466666666667,1.8369233333333332,2.502925,3.883565,2.85755,2.9300599999999997,2.66355,5.501325,2.837775,4.340895,3.915412916666666,2.085985,4.0416,3.078505,1.994605,3.43618,1.971445,2.995255,3.574505,1.9073925,4.293045,3.14938,4.096815,3.3261299999999996,0.8007511111111111,4.88818,3.785875,3.137485,3.766075,2.2782666666666667,4.671695,4.577755,5.0608275,9.120908333333333,3.591885,4.343985,2.7987533333333334,3.796745,4.53825,2.033395,2.69706,3.96467,2.0814725,5.85662,1.823514,2.70293,6.739536666666666,2.933873333333333,4.0644919999999995,1.2771528571428572,4.46733,4.41489,3.1810233333333335,4.61033,4.918595,6.160451,15.956773214285715,0.6296058823529412,1.0567333333333333,2.99315,3.91668,3.49095,2.09356,3.26833,4.030475,4.72877,2.32941,4.73108,1.7593500000000002,1.7593500000000002,5.40675,0.76888,1.7583379999999997,3.050265,3.972585,0.37308230769230766,1.9498433333333332,4.05704525,1.1489883333333333,3.1358366666666666,2.712823333333333,2.917055,7.84077,2.452323333333333,3.4072,1.9363466666666669,2.168203333333333,3.89734,3.30184,3.36767,6.769994666666666,1.86979,2.885,4.368755,6.76055,1.8944666666666665,2.31296,2.51842,1.4950999999999999,2.577455,1.68867375,3.96232,3.647965,1.52922,1.8938723333333334,1.8938723333333334,2.857666666666667,5.35245,4.166398333333333,3.769325,4.38712,4.335105,3.177375,3.695905,4.256455,3.53571,4.5192483333333335,3.7386825,4.53696,0.9057740000000001,0.35910375,5.34335,3.861,2.4261233333333334,8.06619,1.6925533333333334,4.626566666666666,4.080005,0.3602066666666666,2.0849066666666665,1.3033766666666666,1.8713166666666667,1.9317166666666665,5.49367,3.11968,3.118985,4.5773025,4.959715,4.67359,0.5680546153846154,2.0352,0.599927,5.75127,1.470456,4.90236,2.060255,3.14018,3.206535,4.2758,4.23531,5.20475,0.8676554545454546,3.4547,4.151845,1.9867075,1.6848725,3.606195,3.1205,3.62729,3.86569625,5.353585714285714,4.58542,5.44,2.73414,0.5948177777777778,3.32593,3.70364,0.6280399999999999,3.746315,3.788485,4.03631,3.05312,2.6079233333333334,5.12545,3.35645,3.18823,2.16116,3.691265,1.6710699999999998,3.859365,3.68729,0.5817753846153846,3.84204,3.96514,3.28547,3.74355,4.27775,2.72227,3.841185,0.651389,2.9973899999999998,3.7463466666666667,4.47645,3.4579,2.3577375,3.4341000000000004,2.3577375,4.95986,3.14828,3.025456666666667,1.5692083333333333,2.88071,1.88521,4.26591,2.7877166666666664,5.138476666666667,3.1507,2.83937,3.0199866666666666,2.419494464285714,2.419494464285714,2.419494464285714,2.239456666666667,1.1301616666666667,4.540105,2.4369133333333335,1.6687333333333332,3.8336666666666663,2.4552566666666666,3.04082,4.07128,5.53455,3.49479,1.8634125,1.0939260000000002,4.038825,1.9544380000000001,2.28545,2.979455,3.50407,2.01102,3.42267,2.815925,1.6442160000000001,4.6999,4.14393,3.183145,3.57944,0.7569855555555556,2.3806866666666666,4.47808,7.497015,4.121545,3.029675,2.86848,3.489125,3.78478,1.6504525,2.4004875,4.61912,2.1197,4.374075,3.53307,5.33035,8.44655,4.056215,3.58606,3.298375,4.775705,4.031805,3.1270100000000003,3.1270100000000003,3.84897,4.142651666666667,4.07233,3.954435,4.15287,4.268715,3.96457,1.11952875,4.274115,4.175845,5.1605,7.976285000000001,5.2625,3.675370666666667,1.8316466666666666,1.37836,2.52424875,5.06315,3.857835,4.76343,2.347096666666667,4.535495,5.05885,5.1391,4.791935,2.968173333333333,3.547965,4.107555,5.1627,4.739695,3.85575,6.732541666666666,4.66878,2.303576666666667,5.0017,4.07179,4.10393,3.734645,4.593275,0.7355999999999999,4.26557,4.26383,1.2060057142857143,1.30147,4.85417,4.689375,8.7186785,5.04615,4.464535,6.06295,3.115315,2.57544,5.0559,1.634975,1.634975,2.65823,1.6484500000000002,2.9678225000000005,3.29276,1.8702675,4.1305190909090905,1.4815633333333331,2.15231,5.37876,3.8200183333333335,3.453875,3.104365,3.882985,3.94834,2.995563333333333,1.0202055555555556,4.07911,3.1384833333333333,3.913555,4.19619,3.7477533333333333,5.4332,4.473825,4.74528,3.520635,5.29985,6.37925,4.69836,3.30586,3.432295,1.9135725,1.9135725,3.894245,3.983915,2.60254,2.6891833333333337,2.0938201515151516,2.5923366666666667,1.8317766666666666,1.8317766666666666,4.32233,3.39706,2.113095,3.510125,2.79493,2.09769,1.23962,1.0595833333333333,2.690835,0.44777736842105265,0.7561133333333333,2.886685,3.79429,0.42625545454545455,3.835245,1.8921,5.36615,3.36536,7.35715,4.43583,5.36449,4.576155,5.2996,4.11875,2.234875,1.8886800000000001,3.897165,3.06668,3.791415,1.3120633333333334,3.50506,4.403305,2.7108,2.618575,2.444415,4.317675,3.27692,3.207705,3.90874,3.54485,3.580405,2.69283,1.0328857142857142,1.98735,2.26384,2.83384,4.241675,7.38365,0.981282,1.5030700000000001,1.5030700000000001,1.8723120000000002,3.782125,2.755335,3.02802,5.401002500000001,2.9095999999999997,1.2139225,1.2139225,1.2139225,2.929975,3.0857729999999997,4.94863,3.264805,4.11235,3.374385,3.65222,3.101805,3.2148791666666665,3.585805,3.9556175,3.0444,1.118752,2.692365,3.0444,3.67828,1.46295,1.77494,1.9661725,5.683682,2.995145,6.232177,5.683682,3.237032,1.6099266666666667,1.6099266666666667,2.678785,6.09523,1.6099266666666667,2.520885,6.03209,2.567005,2.930175,4.94657,3.58819,4.22536,1.9141933333333334,3.309365,4.90783,2.059413333333333,2.35043,4.18843,1.9141933333333334,2.61812,2.021595,6.25726,2.576845,1.101478,2.52269,3.097675,3.1265446666666667,1.910675,1.9198179999999998,4.12666,1.9306146666666666,1.873925,3.27751,2.39437,3.44107,4.2613,2.2821000000000002,2.714745,2.0657,6.95336,2.322125,2.79172,3.323595,3.323595,7.906823333333333,1.0863833333333333,2.936625,2.195765,3.21331,2.31324,1.0730166666666667,1.0730166666666667,3.36253,2.21062,7.797155,2.667125,3.621735,2.663825,6.10273,2.696545,2.63233,5.86133,5.86133,2.363105,1.445905,1.37578,1.37578,1.445905,1.9013966666666666,1.1784433333333333,1.2040316666666666,1.6459666666666666,2.078676666666667,3.713905,1.80579,3.62485,3.01056,2.719805,2.779865,2.883125,2.477705,3.5854066666666666,3.5854066666666666,6.15355,2.272535,3.08604,2.98671,3.096195,2.47009,2.795335,2.355835,5.7175825,1.8201325,1.6801983333333332,1.3936066666666667,2.343425,6.09826,3.9942349999999998,3.263855,3.245405,1.8281475,1.8281475,1.8281475,5.09912,2.51775,1.2040316666666666,3.197495,3.25889,1.3803975,5.1790875,3.23819,5.97872,3.4352,1.69673,3.5276,2.3925566666666667,2.231385,3.238635,4.92752,3.84576,1.84656,2.407515,3.247835,3.35192,4.52777,1.974435,3.581675,2.63401,6.34863,4.8048,2.082795,2.294855,5.71335,5.51898,5.26431,5.41825,1.060644,1.060644,2.391036,2.391036,0.748986,5.30796,3.40894,5.2872,4.20972,4.70255,2.3666,4.6524383333333335,4.6524383333333335,2.469655,3.294605,3.398925,1.166882,4.53341,2.89947,2.831015,2.70989,4.65941,2.577015,2.282375,3.11243,3.14823,2.93827,5.3026,2.401775,2.19134,3.83578,5.92879,5.97423,4.3007,2.591675,3.5653,2.584265,5.28981,2.948645,3.78772,2.46503,6.71509,4.76136,2.56934,2.16257,2.613185,4.59504,2.139675,2.57029,2.748095,7.40153,4.38403,3.3306,1.994575,2.762955,6.11324,3.31599,3.241095,6.15014,3.16681,3.076295,2.6973,2.98558,2.00712,1.951145,1.2729333333333333,1.6747966666666667,1.5591366666666666,2.1111,1.37532,2.148423333333333,1.794265,2.00712,4.40717,4.03406,2.16122,1.9856950000000002,1.9856950000000002,3.9967300000000003,3.9967300000000003,3.1872999999999996,3.1872999999999996,2.797745,2.37859,1.738015,3.84107,2.2505924999999998,2.2505924999999998,2.441555,2.441555,3.58947,2.2151,4.69329,2.28685,3.024385,1.95838,1.95838,1.71801,4.37572,4.59893,1.46295,4.30772,2.2821000000000002,2.04202,3.784,3.084875,2.003285,2.699595,7.28709,2.29249,5.84691,3.11318,3.34514,3.161015,2.573665,5.96545,3.4741,2.148435,2.4620880769230773,2.52096,5.05186,3.218045,1.599756,1.599756,4.02034,5.50182,4.99095,5.49388,2.65385,2.64198,1.79472,3.177,1.851595,2.762075,1.83166,0.832988,0.832988,0.832988,1.9845391666666665,4.752566666666667,1.9845391666666665,2.064325,3.69695,1.76518,2.11887,4.2449,3.2841,5.06399,1.64306,4.62622,1.64306,1.64306,2.458695,1.96245,2.891705,6.10779,2.891705,2.47297,3.84745,1.89991,1.620845,2.66827,2.976096666666667,3.1761975,3.1531800000000003,3.584955,1.3619733333333333,4.141675,0.7304045454545455,4.389285,4.27261,2.6416775,2.6416775,0.7097263636363637,3.806566666666667,2.662846666666667,5.5059,4.99203,3.915325,5.0174,3.988025,4.072065,5.05365,4.08896,4.3557,3.74918,3.79353,4.87848,4.717245,3.31543,3.493225,3.70797,2.4970666666666665,1.304014,4.5115,3.581855,2.96742,1.3161442857142858,3.837205,4.04311,6.3213,0.97485,5.19485,4.22569,2.333685,2.047855,3.24281,3.56397,1.74544,1.599756,3.682585,4.54604,2.55452,4.693995,3.039355,1.15045,2.94227,1.2319185714285716,3.0383366666666665,1.8212233333333332,3.1861866666666665,1.8828475,2.5077333333333334,4.081165,3.166525,4.50987,3.284625,2.21604,4.95854,4.41325,3.234855,5.57755,4.17601,2.6998200000000003,5.95695,4.743355,3.1402633333333334,2.6300333333333334,3.56522,3.0934033333333333,3.0125233333333337,2.777616666666667,4.858085,4.21427,3.766035,2.5167333333333333,2.62088,2.3890533333333335,2.3368366666666667,2.0807933333333333,2.3929,2.3202833333333333,2.2927575,1.2625075,2.989224,1.2680125,1.8695175,1.7928875,2.789275,1.6870675,1.796,3.836355,4.276455,1.9683875,4.04428,3.4909,6.196535,2.0278266666666664,1.6309159999999998,6.9295,3.416975,4.75827,3.97364,3.628885,1.852825,3.39014,2.505275,2.977235,4.40859,0.7208258333333334,3.8716,2.254166666666667,0.7961227272727274,4.937905,4.56669,3.982255,1.7685935714285714,4.819075,5.18665,2.6663366666666666,2.7546133333333334,2.5121733333333336,2.165993333333333,0.602004,2.97968,3.00685,4.91506,2.4137975,2.0328525,3.44419,1.106705,1.8995816666666667,1.8995816666666667,2.73903,1.8995816666666667,4.10633,2.719665,4.32977,4.38093,5.75595,13.5918525,3.26271,4.74823,2.69235,4.69528,3.269735,6.59703,2.9049300000000002,4.574665,4.95998,3.866625,1.139475,5.0782,2.9107866666666666,2.5839433333333335,0.9147822222222223,2.16108,3.054655,7.146903333333334,4.28236,2.9072433333333336,4.51189,3.358366666666667,4.16065,4.63456,4.50109,2.90753,2.907693333333333,4.00064,5.4263,2.58278,4.429715,1.8317725,1.8317725,3.10143,4.92819,0.992985,4.132392666666667,2.0749975,4.75871,2.60602,2.6224766666666666,3.03125,2.4604,0.69994,3.5838,2.739786666666667,4.8637,4.676205,0.237928125,4.91099,4.570325,4.23127,6.855458333333333,2.9818233333333333,2.8610233333333333,2.1112733333333336,2.9699533333333332,2.83052,1.3429133333333334,2.8916033333333337,2.58486,1.3802816666666666,3.3722,3.045666666666667,2.590516666666667,3.1225166666666664,1.342555,4.248295,2.750135,5.036,4.014945,3.77508,1.64306,2.5271500000000002,1.303045,2.01629,1.303045,4.93497,3.3691333333333335,1.557842,2.35099,4.044595,3.87363,3.119285,3.916795,0.335364,1.3955708333333332,3.8986,4.311235,6.1999,1.9936525,2.78494,3.0713233333333334,2.19599,2.854765,3.64078,4.591375,2.58215,2.32667,2.8845433333333332,2.58804,2.7892966666666665,4.281675,2.480185,4.36206,3.740239166666667,5.82725,7.4483425,0.7285200000000001,0.809723,4.154055,6.6242725,1.9540220000000001,3.454485,1.6001216666666667,1.6001216666666667,3.409575,0.4576577777777778,3.519385,3.84104,2.76559,3.99264,3.235315,2.39398,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,2.36028,2.964095,3.91455,2.9345100000000004,4.66764,6.02826125,2.946995,1.9311166666666668,0.9339750000000001,3.487625,0.71652625,4.771414166666666,2.8402975,2.68313,0.71652625,2.544205,2.68809,0.85808,3.93288625,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,4.288095,1.57799,4.628785,4.47581,1.748762,4.753515,4.22728,5.2618,4.796121666666666,3.534117142857143,3.41764,4.36882,2.0361775,5.649215,4.33871,0.7461357142857142,1.3664314285714287,1.3521142857142858,3.24756,3.24756,3.007075,3.82099,4.31352,3.565405,3.990925,2.84134,1.96403,0.47468000000000005,4.060225,3.97805,2.740965,4.14017,3.308045,3.0727675,4.51731,4.4298,6.962625,4.145925,4.936315,5.6606,4.359845,1.2725485714285714,3.169855,4.9972866666666675,33.45708651443001,1.25828,4.315095,3.31634,4.6208,4.08301,5.2814,5.2613,0.4133780952380952,5.05875,4.369185,1.87505,2.12528,3.621595,1.5838875,2.4479,2.35437,1.733785,3.032925,2.406023333333333,2.93535,2.75589,0.5949876923076923,3.113275,3.823855,0.3840205263157895,2.5401966666666667,3.210295,2.958225,3.866875,1.82558,4.38387,3.89381,3.326055,3.42039,3.056335,4.133655,2.967805,3.79965,2.1853975,4.9972866666666675,3.549315,3.43873,3.025735,1.656636,3.954115,3.30717,6.905190000000001,3.145525,4.789315,6.081160000000001,5.150734,2.1508325,4.28994,5.852145,7.255438,2.5980266666666667,2.60263,4.801625,5.608036666666666,4.18632,3.2887,5.371301666666667,2.710825,1.907025,2.1933575,60.004883297643616,4.744825,4.254995,2.588425,0.846519,2.7448333333333337,2.8857966666666663,3.3533333333333335,0.7926177777777778,4.60131,0.7837666666666666,7.7175971428571435,1.9544380000000001,3.3953,1.7722079999999998,2.844005,2.6147566666666666,2.808873333333333,2.39704,2.22968,3.3707,1.5627233333333335,5.522825833333333,3.972933333333333,1.5498925,2.6679833333333334,1.4401433333333333,1.48685,7.60569,5.92905,3.37168,4.21954,5.409587500000001,1.4066228571428572,3.457433333333333,3.44775,1.666265,5.18325,3.573135,3.8937,1.773215,2.893679166666667,3.544166666666667,4.00819,5.92535,4.273545,4.60201,2.594825,3.76341,4.476933333333333,3.1021966666666665,1.4388,4.34063,3.2986133333333334,4.10933,5.119,3.962735,3.989605,4.54541,4.271985,4.25739,4.564565,3.7355,3.167,4.015225,4.210115,3.25034,4.199665,3.83782,1.5568775,1.5568775,4.27539,4.901905,5.079,3.68454,4.850255,3.381933333333333,2.79798,4.51255,5.01365,0.7254509090909091,5.39215,6.66822,5.31545,5.64245,1.0425944444444444,3.04808,0.9139933333333333,0.9139933333333333,0.9139933333333333,3.636835,3.3308066666666662,2.659386666666667,3.6227,0.9908939999999999,5.1099,4.824415,3.159095,1.6991875,2.048295,4.28885,3.6577,3.891275,2.8967780000000003,6.7488,3.560645,2.46398,4.90232,6.67615,2.568495,4.16554,3.736425,3.101585,5.2284,4.853225,4.938555,5.9784,3.06841,3.592392222222222,2.3681766666666664,2.3681766666666664,0.7142509090909092,8.283403999999999,2.208385,5.87605,5.6281,4.24845,4.822195,3.67289,2.977778333333333,4.511335,7.71384875,5.66979,2.376306666666667,4.39643,1.00068,3.744425,1.9074933333333333,0.8843455555555555,1.2505428571428572,2.6297166666666665,3.039703333333333,2.85177,1.13604,2.553576666666667,3.08774,0.8915288888888888,2.7517133333333335,3.2235533333333333,1.629782,1.712506,2.9394899999999997,2.9785833333333334,2.793673333333333,2.5715133333333333,1.7438120000000001,5.3307,4.33339,3.885355,4.359145,5.10065,3.313255,4.377625,5.8017,5.0173,4.344485,3.86849,10.309143333333333,8.14124,2.9174133333333336,3.379485,1.98566,3.702445,3.2348,4.430095,1.053905,3.62061,3.456685,1.6008916666666666,3.904305,3.016591666666667,4.26314,2.775535,3.7932,6.5356,7.0267349999999995,3.999725,1.5327950000000001,1.5327950000000001,1.5327950000000001,4.74559,1.2270833333333333,1.4195625,0.4611355555555556,4.36195875,2.935,3.763315,0.925387,1.1574125,3.16653,4.339735,3.708335,16.326161916666667,4.1883575,4.525445,5.9820025,2.7728,3.656415,3.253285,0.9326666666666666,1.42713,3.827975,3.873795,4.495015,4.276555,4.523775,3.85744,2.7210086666666666,3.337975,5.20885,0.5551999999999999,4.56018,2.33989,4.215865,5.03965,3.615,2.50061,3.96464,1.83488,3.53247,6.0017,3.1873133333333334,3.44232,4.299425,4.06004,4.629475,3.8674,3.479315,3.855155,4.8962,4.93016,3.745375,4.505455,3.717625,1.1423871428571428,1.4145475,5.877890166666667,5.8629,3.989045,4.9117,2.3993425,2.7091100000000004,2.825813333333333,5.657450000000001,1.8503475,2.256075,2.9520233333333334,3.041676666666667,3.18237,4.5215,3.39987,4.800008333333333,1.2024275,4.506465,0.9266366666666667,4.115675,3.38089,1.6650583333333333,4.34465,0.9483422222222223,5.07865,5.7269,4.903725,4.02924,3.828924166666667,4.00654,3.0759633333333336,5.1286,5.87475,2.8491074999999997,4.054245,2.4002,2.58022,1.9976,2.59141,3.16422,5.0063,1.0684275,4.52953,1.38779,3.32352,1.67408,1.0684275,0.19331594594594595,3.648405,2.997515,2.29154375,1.9946,2.739225,1.1390725,4.081025,3.616595,4.473175,2.56874,6.2602,6.5174175000000005,2.630236666666667,3.235276666666667,2.6289166666666666,0.8119859999999999,2.32591,6.20725,4.036535,5.6381,4.83017,2.16886,1.2803633333333333,4.0433675000000004,1.5935925,2.126925,1.740755,2.59955,1.8504775,1.89091,2.05458,2.1850125,1.8745275,1.3415857142857142,1.38909,1.863165,2.0377325,2.243085,2.4505066666666666,0.5302053333333333,1.113448,2.7818,3.2101666666666664,2.0021425,1.83423,1.5244525,3.433135,2.2885233333333335,2.591765,2.97695,5.75825,3.569105,2.9940366666666667,4.220875,1.6754157352941177,3.8228887499999997,24.0197385,4.55186,5.40995,4.279065,2.2731766666666666,3.80902,4.809595,2.50603,5.09945,3.13813,0.80309125,3.15062,4.590295,3.681675,4.17278,1.56951,2.030413333333333,2.420123333333333,2.41639,1.4996142857142856,3.347566666666667,5.01895,4.29016,3.2974,3.91263,4.88271,3.69577,4.85015,1.2742375,3.09631,4.155105,4.67907,1.685272,3.3278766666666666,1.8792312500000001,1.8792312500000001,3.6624,4.67328,2.7279633333333333,3.1289466666666663,3.895365,3.89456,6.62186,4.654715,2.20468,1.42713,2.9964,4.40587,3.21032,2.4715790476190476,2.4715790476190476,3.352233333333333,4.955615,3.681085,4.943726666666667,2.298965,3.3311146666666662,0.6386266666666667,0.6386266666666667,0.6386266666666667,3.57409,3.75032,3.81397,5.4772,2.067665,4.65562,4.954545,4.53595,3.319225,5.3509,3.329945,1.3486185714285714,4.20449,4.05907,0.48012428571428567,4.296433333333334,4.783525,1.4992216666666665,5.1422,5.21015,4.721715,4.40638,3.65976,2.80885,4.36696,1.689244,4.485395,1.6344683333333334,3.91639,5.8315,1.09655375,3.156185,6.96485,3.87684,3.20445,2.084205,3.745215,5.81695,3.0949666666666666,7.950176666666668,4.041015,2.2375700000000003,3.15325,2.67623,2.519556666666667,2.75806,1.9101233333333332,4.429185,0.635055,1.84632,1.84632,3.155215,3.72376,2.3142875,2.95969,4.204775,4.96697,4.42687,1.46312,4.641971744047619,4.36852,4.82721,3.66357,3.6196748333333337,3.2083175,0.4113573333333333,2.6942864285714285,0.966375,0.4113573333333333,4.460995,0.8463788888888888,4.233985,3.947295,6.4698839999999995,2.189293333333333,1.059235,1.14547,2.310275,2.94463,2.04645,2.4387166666666666,3.393445,3.409935,2.03342,2.1601066666666666,4.455135,3.2012075,3.980205,5.72545,3.51748,4.852125,6.760468333333334,4.5889,3.57384,4.399815,3.675315,4.263085,4.928635,5.7133325,5.4157,2.4107600000000002,0.95189,3.74081,3.89552,4.04467,4.45554,4.119335,4.962675,2.6663133333333335,2.4761466666666667,3.07025,2.3124966666666666,2.096443333333333,3.082216666666667,3.16643,2.4342833333333336,3.7867,5.2007,4.209545,5.3462,2.4830733333333335,3.3613,2.924425,0.7036557142857143,4.11844,3.522375,4.5445,3.09671,5.267043333333333,3.093845,4.47437,3.95644,0.5827976923076923,0.5477271428571429,4.320095,2.8340435,3.12995,4.50031,4.13218,1.83274,5.2387,4.293095,2.65909,2.59631,2.3338525,2.14107625,3.5829,3.201333333333333,3.0886533333333333,3.10681,3.4981666666666666,2.715125,3.0439366666666667,3.6614,4.4073225,0.516835,0.516835,0.516835,3.1717223333333333,3.630266666666667,3.6686666666666667,2.70815,2.88712,1.11952875,3.058073333333333,3.02964,1.8204425,2.8718800000000004,2.3654699999999997,0.9635511111111111,2.8546983333333333,4.69352,9.756207333333332,1.3981685833333333,0.556125,3.90471,0.556125,0.556125,0.556125,0.556125,2.2105325,4.0273025,3.91677,5.08135,5.9792,2.7891333333333335,2.7438933333333337,2.99813125,3.2766433333333334,4.71516,1.0050483333333333,2.3233166666666665,3.1134766666666667,2.46378,2.958296666666667,3.88986,2.180286666666667,2.515445,1.1493,4.576755,2.88961,3.527715,0.87245,0.622062,0.622062,0.8662926521739129,1.7387426521739129,0.8662926521739129,0.8662926521739129,0.30319565217391303,0.30319565217391303,0.8662926521739129,1.4559133333333334,2.43168,2.96967,3.0552499999999996,2.583483333333333,2.7028233333333334,3.19493,2.7701666666666664,4.65398,3.586015,1.93317,2.2672266666666667,1.7932375,0.18282376472754047,0.18282376472754047,0.18282376472754047,0.18282376472754047,2.57167,2.4358833333333334,0.8418380000000001,4.963075,0.7715645454545453,1.678334,4.7428791666666665,4.924915,4.298095,3.31059,4.45236,3.603915,1.8495966666666668,1.297195,3.7604,4.680055,6.165,2.499575,1.4073066666666667,1.9750966666666667,3.05981,1.4692933333333331,2.7487600000000003,2.9541866666666667,3.1699066666666664,4.53645,3.93879,3.051725,5.28325,2.4292166666666666,4.10024,5.2349,3.906215,4.48127,4.77079,5.328353333333333,4.6696025,2.9991677142857145,4.936758333333334,4.432365,6.29875,4.30166,4.45127,2.2144325,3.201495,4.23735,4.67965,4.437115,3.986545,3.91108,4.056425,3.977135,2.4456966666666666,5.23995,3.545295,7.513405,5.9755,5.88525,4.896985,1.4633571428571428,0.9687889999999999,0.6538407692307693,1.7751100000000002,4.81296,5.47365,3.932075,1.6485379999999998,4.057465,3.065535,4.523015,5.18045,6.098617,3.85966,3.10749,1.678816,5.4235999999999995,3.96774,3.082155,1.61943,1.01270625,3.82567,3.321295,3.34203,3.804475,2.212105,4.46369,1.66517,2.9787166666666667,2.243465,4.31347,5.53095,4.85138,2.1393975,1.736835,5.64485,2.9201766666666664,9.15888,2.852725,5.0823,5.83985,4.57629,5.1567,3.726145,5.19285,2.0580475,4.093435,4.836856,2.550475,4.307335,4.402195,7.1752400000000005,5.0653,3.1897699999999998,4.197615,3.999945,3.2012075,3.641665,5.1858,5.43915,2.4481475,2.996066666666667,3.2862666666666667,2.23583,2.58428,4.31829,5.8196,4.978065,4.635485,4.922415,4.314455,4.8208,0.6526207692307692,3.09469,1.24396,30.970931596661494,2.25297,4.549185,2.975745,4.65833,1.60123,2.451983333333333,3.251105119047619,1.724962619047619,1.724962619047619,1.724962619047619,1.724962619047619,1.5261425,3.588255,0.31394999999999995,7.688553611111112,0.31394999999999995,4.359435,4.91401,2.01737,5.36135,2.562675,3.9547920000000003,2.4370366666666667,2.4376933333333333,2.7997866666666664,2.1692966666666664,0.6191392307692307,2.6329933333333333,0.7363058333333333,3.1433999999999997,2.2954933333333334,2.5688459999999997,1.1882366666666666,2.5688459999999997,6.0977,7.994375,4.640085,4.36938,5.71625,6.2174,7.568384999999999,3.06164,1.48328,1.48328,2.3928766666666665,4.85345,3.907455,4.385045,5.991,3.97575,2.83093,3.787885,3.673615,3.648425,2.2649,0.976764,1.950855,3.72915,4.18863,5.276457777777779,2.00441,3.898185,1.232914,3.19918,1.3030599999999999,3.410433333333333,3.10129,3.1988766666666666,3.1833333333333336,2.896903333333333,4.941325,0.6317738461538462,3.459385,3.646266666666667,2.779996666666667,2.34624,4.1795124999999995,3.4566666666666666,2.3210933333333332,4.7304525,3.75055,5.11135,3.94293,3.60163,5.3634,4.936895,2.1555066666666667,5.671,2.340676833333333,1.8664333333333334,3.202413333333333,2.3480866666666667,2.9488,2.49658,1.9104700000000001,3.418626393939394,4.351015,3.1908125,2.4401743333333332,2.4401743333333332,2.541105,3.916995,4.00558,0.6592045454545454,3.0984,2.839455,8.70709,0.8520254545454545,4.505085,3.596075,5.3057,3.648765,3.778545,2.1634,3.93595,2.92976,5.67195,2.5965941666666668,3.927815,2.6629,3.77158,2.604206666666667,3.60561,3.941115,3.98103,5.178654,2.84796,2.103135,5.2831,2.5515733333333332,4.55839,4.996445,4.65312,4.371765,4.016055,2.84787,2.17582,2.93417,2.5938866666666667,2.7965,3.2715833333333335,2.675182619047619,4.931373333333333,2.9459466666666665,2.605043333333333,6.619678333333334,5.083963750000001,3.7433275000000004,3.0885200000000004,3.826833333333333,4.01355,3.46111,2.060765,4.064885,4.93407,4.63199,1.3531016666666666,3.965165,2.7548866666666663,6.1370075,4.791875,8.504048888888889,4.136245,3.58238,2.11597,4.1612,5.5502175000000005,7.75569,3.63391,5.76541,3.702645,3.409745,4.03244,1.7267219999999999,4.630749,1.423515,3.59258,4.620885,3.4204666666666665,0.8504333333333333,8.914380000000001,1.201788888888889,1.877565,2.467356666666667,1.8698466666666667,3.4405666666666668,1.3678299999999999,3.62822,3.29448,2.52873,4.290995,1.0757516666666667,3.567345,1.43912,2.7189336666666666,3.9267,4.6878,1.5295825,5.71967375,2.2532069999999997,8.10141,4.341905,2.77515,3.976085,3.358005,1.1467091666666667,7.57901,2.964355,3.436715,2.293005,4.15112,2.1345975,3.00522,2.313675,3.90203,1.44444,5.245,2.86258,4.250865,0.805462,2.301582,3.818655,5.07135,5.282045,1.4781520000000001,1.4781520000000001,5.87985,4.206735,4.844525,3.711565,3.51795,8.70507,4.47358,5.52555,4.08373,2.418775,2.1182748023553506,0.38999799999999996,0.17899354838709677,0.6324779928315413,1.0957988095238096,0.6468106912442396,0.17899354838709677,1.2158305,0.45348444444444447,1.4857968095238094,1.8483084928315412,1.960475,2.248645,2.2510966666666667,5.00465,6.444155,4.868975,5.153,4.48713,5.15795,1.2538099999999999,4.993265,3.927045,5.7754,5.2114,5.02545,5.8239,5.6784,5.6157,1.2650433333333333,1.3255642857142858,1.892508,6.042989,1.317784,5.29415,4.873785,6.871235,5.01455,5.43635,4.410295,4.60742,2.563,5.3315,5.30165,4.499886666666667,4.873955,6.074183333333333,5.75565,3.7942099999999996,4.27163,3.673833333333333,1.00819,3.6368666666666667,4.542405,1.144025,3.6415,4.776385,4.6089475,5.2752,2.541075,3.334455,2.6897333333333333,4.62865,2.1399575,3.827895,1.2677116666666668,3.213165,3.74443,3.92452,4.42304,3.39997125,0.6346483333333334,5.9969,0.99276875,3.654065,2.9633533333333335,3.77889,2.0367266666666666,3.668445,3.7974628205128202,3.2607,4.448505,15.399775785714287,5.203609999999999,2.28282,8.45567,1.3704125,3.220445,2.84459,2.8255266666666667,2.0075566666666664,0.2199013043478261,2.9407833333333335,4.49086,1.756834,2.3213333333333335,3.4159666666666664,1.82002,2.48054,1.5791428571428572,3.22704,4.875805,5.39035,3.753385,0.5272385714285714,2.4213400000000003,4.739815,2.865665,4.1353,4.409445,4.10657,5.23025,0.4870788235294118,2.52031,2.52031,5.32845,5.09895,4.83477,2.7003,3.575366666666667,2.8600499999999998,5.2067,3.522845,5.624415,4.70531,4.444215,4.68457,2.524625,1.9599060000000001,4.397315,4.12649,4.039765,3.20338,1.8316659999999998,4.532785,4.380395,3.76989,4.61553,3.847295,3.967715,0.6109546666666666,3.12075,0.5968683333333333,3.0637966666666667,3.265675,4.32039,17.831844285714286,3.521655,3.56471,2.3925566666666667,0.974875,2.3187599999999997,2.53799,1.515374,2.398325,2.488865,4.72969,2.2343333333333333,3.86725,4.35435,2.10573,4.430355,2.922606666666667,4.755875,5.22915,5.36085,1.70879,1.795045,2.132095,4.7026,4.951485,1.1286111111111112,5.2373,3.899795,5.741,4.79026,1.7156333333333331,4.606835,3.48083,3.65964,3.804905,4.08711,3.0360633333333333,0.6474325,7.536191666666666,1.317206,0.1983336111111111,0.1983336111111111,0.1983336111111111,4.971935,3.98668,2.695956666666667,4.194125,2.82141,4.38114,4.301096428571428,4.0338899999999995,8.176706666666666,4.24568,6.514745,0.90149,0.7782975,2.459725,4.501275,4.245495,2.0821,5.3028,5.40565,3.558295,3.513515,4.41751,2.11521,4.83441,4.6822680000000005,2.3255433333333335,2.9088266666666667,3.093223333333333,2.784005,6.1272,3.864365,0.667135,3.81373,3.154845,4.1242,4.803100000000001,4.84307,3.0027,5.3584,3.565505,13.53646125,4.71028,6.629648666666666,2.47554,6.377735,4.38546,3.886835,2.0569375,2.30838,9.42037,2.194096666666667,4.218733333333334,4.085566666666667,3.659966666666667,3.0149166666666667,2.8920266666666667,2.0244525,2.2220975,2.9049866666666664,1.8208659999999999,3.9016333333333333,2.3215166666666667,2.62138,3.2234133333333332,3.440633333333333,2.423,2.423,2.46326,3.4279666666666664,3.3944666666666667,2.41743,3.14148,4.213666666666667,2.6889033333333336,2.7972533333333334,3.770966666666667,2.306,1.93335,3.834,2.97845,1.59894,3.7549333333333332,2.143196666666667,2.2932366666666666,2.9555666666666665,2.202313333333333,3.430733333333333,5.475371666666667,2.3942033333333335,3.7504666666666666,1.9158099999999998,10.494906333333333,1.9708633333333332,1.8465366666666665,2.1599399999999997,1.018771111111111,1.590678,4.505406666666667,2.815814,2.815814,1.64608,1.4787983333333334,3.4378166666666665,3.6882849999999996,2.1978266666666664,1.5333983333333334,1.641656,4.476604666666667,3.5826333333333333,3.9998,8.05522,2.99801,2.326416666666667,3.301205652173913,4.178766666666667,1.93335,3.2332666666666667,2.822573333333333,3.2247166666666662,3.4856675,0.8855575,3.231515,2.9081233333333336,2.84173,4.074585,3.1511600000000004,0.6877263636363636,1.869940476190476,5.14045,2.6236575,3.4194999999999998,1.5191366666666666,1.5191366666666666,2.093265,3.6381266666666665,0.92843,2.21783,4.50043,4.50043,0.6427619047619048,5.97658,3.40092,3.919245,4.68604,1.1958942857142856,3.3524333333333334,3.5645666666666664,5.004458333333334,5.758717,2.4146533333333333,0.624424,2.645356666666667,2.5524533333333332,2.9545060000000003,2.236683333333333,2.3828400000000003,2.8953133333333336,2.361925,2.4847633333333334,0.76826,5.31425,4.624964571428571,1.20509,1.6849285714285713,5.30525,2.159685,1.65682,4.20631,1.429462,3.497045,2.584725,3.6185333333333336,8.782395833333334,4.259476666666666,4.53229,4.96801,2.3550596363636362,0.790697,1.840188,6.94025,1.7345499999999998,4.143455,4.12251,3.678195,21.16797325,3.1862600000000003,1.4156966666666666,1.10476125,3.0923,1.5150833333333333,4.0644919999999995,5.20495,3.37058,3.3097133333333333,1.80895,1.390625,2.744426666666667,0.5546575,3.4725,3.6227,3.0552233333333336,2.5181276666666665,2.49476,2.770353333333333,2.0040366666666665,3.0023133333333334,1.614932,3.8236666666666665,1.5100133333333332,3.768605,4.00477,2.5266433333333334,5.222,3.280895,3.96756,5.11115,4.717765,3.0027066666666666,2.658796666666667,2.2410466666666666,1.159107142857143,1.159107142857143,1.159107142857143,2.39754,3.2393300000000003,2.53786,2.435556666666667,2.29788,2.0284975,3.65537,4.255145,3.653285,6.435505,3.14658,2.5415,1.8934925,0.942595,2.4122266666666667,3.85907,2.54212,2.57648,2.456976666666667,2.40904,2.6165866666666666,2.82906,2.85035,2.6889266666666667,2.2796600000000002,3.2052,2.14165,2.1440225,1.6344025,1.6736425,3.04464,3.0799766666666666,1.98919,3.87244,4.958045,2.7700933333333335,2.280503269230769,5.473443333333333,4.090525,4.741885,5.62375,4.4,4.25134,6.4857175,1.27135,4.308375,2.67562,5.18195,5.45575,3.66259,3.610865,2.14215,7.465335,2.47089,0.8266483333333333,7.35579,4.65894,5.8348233333333335,4.422955,2.94036875,1.71208,5.0868,4.16848,4.34535,4.94404,2.69275,4.03885,4.469455,1.7932375,3.87965,2.94985,1.3718133333333336,4.57535,0.6159058823529412,4.246358333333333,3.359925,4.497245,2.876235,1.817575,3.41986,2.160725,1.4071375,2.8246933333333337,3.4126,3.2719233333333335,7.21428141025641,1.78827,6.574380416666667,9.602530000000002,5.3511075,3.09999,1.3226928571428573,2.9343033333333337,1.3226928571428573,2.76559,2.2048133333333335,0.2944158823529412,1.1189346323529412,0.2944158823529412,0.2944158823529412,0.2944158823529412,1.1189346323529412,1.1189346323529412,0.2944158823529412,0.82451875,4.506075,3.491535,3.17194,3.345455,3.322545,3.9584,2.7954783333333335,1.594154,6.817851666666666,2.890053333333333,4.206895,2.6641533333333336,1.0597,1.17664625,4.480005,3.708315,1.1443222222222222,1.408422,0.7267918181818183,2.970611909090909,4.280525,5.02645,3.489966666666667,5.337365,0.5756261538461538,4.17683,2.921745,2.88758,2.371023333333333,3.3985,2.45096,2.9699566666666666,2.6206533333333333,2.866915,3.53998,5.0091,4.658805,1.9768000000000001,4.786825,4.384385,3.135475,3.786875,3.42872,0.3403293333333333,4.918645,3.619345,3.109695,3.036338,4.321315,3.916085,2.002955,3.38726,3.9469,8.400575,4.87631,5.3744,4.60593,4.21741,1.101245,2.14602,2.117805,1.358925,1.827,4.465105,5.34855,4.04703,4.94258,2.8967780000000003,2.656693333333333,0.9635816666666667,4.01419,1.1891116666666666,1.1260283333333334,3.41186,3.7254,4.74664,1.2321025,2.4181433333333335,8.661613333333333,3.1192266666666666,3.073723333333333,0.8981,3.76667,11.940363333333334,3.42554,4.14331,3.371315,2.99251,4.711205,5.02635,2.0945,4.32237,0.5852061538461538,4.83429,2.23754,1.9513025,1.9513025,3.624366666666667,4.242385,1.5323033333333334,3.991185,1.309427142857143,3.682865,2.720718333333333,3.372733333333333,4.8231,3.526775,3.9478590000000002,2.654725,2.7036890000000002,2.7036890000000002,11.139579999999999,0.704302,2.953725,3.12411,2.16152,2.0234075,0.8142885714285715,1.454855,1.1279299999999999,2.079695,4.755695,2.659355,4.267580000000001,2.04544,3.71951,4.06499,1.6695,2.0177925,1.0426766666666667,6.187658416666667,2.0737075,2.129985,1.7278580000000001,1.7695560000000001,1.10476125,2.3056245833333335,3.64734,2.22236,3.0909099999999996,2.5522133333333334,2.76306,1.92816,3.153473333333333,2.4890666666666665,1.4257366666666667,1.7926466666666665,2.7007966666666667,2.88513,2.43657,1.16882,2.538743333333333,2.1194933333333332,2.7169266666666663,0.31325315789473684,0.41471083333333336,2.2092466666666666,2.2233933333333336,3.183235,3.0738866666666667,2.904525,4.742375,5.4658,4.42702,4.58227,4.33745,3.889275,2.77896,3.773295,0.7305045454545455,0.08597295454545455,6.89505,0.08597295454545455,3.521415,2.93491,5.2284,3.629405,6.21355,4.76333,2.06441,2.51948,0.9733283333333334,5.19295,6.1814,2.479973333333333,5.1521,1.7388975,3.83207,1.986790652173913,3.0691733333333335,3.18858,3.930725,4.920375,3.198135,2.1966466666666666,2.1966466666666666,4.068245,7.44724,3.632635,2.09686,2.3269533333333334,4.071215,3.084585,5.0829,3.55765,0.98192,4.17051,2.50407,2.4592,4.28041,1.0913183333333334,2.3842666666666665,3.918595,3.56141,4.760235,2.989075,2.78526,3.81777,3.862395,4.314365,4.846915,3.981675,3.241652222222222,3.644705,2.7031833333333335,2.7149199999999998,2.6256166666666667,3.6986000000000003,4.42202,2.9306,5.051030833333334,4.02978,3.70907,5.1864,4.31977,3.434505,1.43217,1.3487775,4.05765,3.30751,1.6348833333333335,2.8576200000000003,3.32563,3.0435033333333332,4.099968888888888,3.057173333333333,2.353746666666667,12.541403666666666,2.1753899999999997,1.785068,4.646115,1.052748,3.17896,3.75322,4.60304,3.07822,1.1773444444444445,2.2859166666666666,2.56874,1.451408,4.47549,0.9907175,0.9907175,3.37847,1.4251833333333332,1.9532866666666668,1.8384575,3.23147,4.054985,1.8962,3.128605,3.106908333333333,2.8161799999999997,2.8895733333333333,2.0297799999999997,6.1611,5.58595,3.550235,0.6555238461538462,3.88321,3.439025,1.0243545454545453,5.3525,3.14785,8.2893,4.753815,4.60065,3.53658,1.3983175,3.123765,4.702395,4.70127,3.913055,3.517045,4.33278,3.652575,3.5521,3.5521,4.2074,2.7651333333333334,4.09761,1.84087,5.541520833333333,5.281976666666666,1.4992216666666665,4.712605,1.01763,5.5755,4.035985,4.9693,4.51128,4.080705,2.62831,2.52825,4.666975,4.279335,5.0005,4.198495,1.89813,1.4194360000000001,4.246905,2.1178966666666668,5.3926,3.08626,3.62303,6.872085,3.819415,4.34257,4.7197,3.890485,4.49096,8.337720000000001,3.99814,3.267695,9.02721,3.732725,0.5896564285714286,2.0140549755799757,4.678595,0.6118713333333333,4.5501,4.073465,4.646575,4.557365,3.34631,3.3923,4.64243,4.71829,2.315975,0.6918592857142858,4.586275,4.36859,4.46827,4.311095,2.84112,4.515025,3.684225,0.686498,3.35664,3.83385,2.504,3.1116266666666665,3.830285,2.1977599999999997,5.3837,5.18625,3.997175,3.259593333333333,5.453860833333334,5.453860833333334,8.5141,1.984658,0.8537575,0.8537575,23.985954666666668,2.620875,7.848721666666666,0.3602066666666666,1.3033766666666666,2.9763866666666665,0.980021,3.73311,3.78373,2.1219475,2.1219475,4.17172,4.87502,3.70625,2.587436666666667,2.587436666666667,3.498355,4.380445,3.768865,3.4568333333333334,2.0107766666666667,2.602645,4.0668429999999995,2.007625,3.369245,2.8381833333333333,2.9896964285714285,2.9896964285714285,3.253816666666667,0.861091111111111,2.5087800000000002,1.4141633333333334,3.390333333333333,2.859666666666667,2.8691933333333335,2.4568133333333333,4.570055,2.45512,2.98598,5.615314,1.2844419999999999,2.21994,3.09711,2.3968433333333334,4.108725,5.679580476190476,1.3718733333333333,3.7969333333333335,2.4697475,5.20565,7.17284,1.5382825,4.848353333333334,5.060263333333333,3.1075874285714287,4.6085666666666665,1.027837142857143,1.685272,3.25881,3.997062857142857,1.2346333333333332,2.28298,1.65506,1.520924,2.325995,3.276256,4.9754435,1.117175,1.3684028571428573,2.9583766666666667,12.653405,4.390388333333333,2.81484,1.1271985714285715,2.5788030952380954,0.9450214285714286,3.2302466666666665,4.235928333333334,5.1942,3.514333333333333,5.6912,1.56834,3.6908999999999996,4.33091,2.83079,3.8534944444444443,1.83612,1.079031111111111,2.513376666666667,2.747536666666667,6.722113333333334,2.8230765714285715,2.6179433333333333,0.725002,4.626566666666666,3.6037,1.104398,5.8333433333333335,1.98681,2.4965100000000002,5.5226,1.2349333333333332,2.8949433333333334,1.0194272727272726,2.94323,4.331605,3.00014,3.043146666666667,2.2312066666666666,2.5669299999999997,4.56086,4.687905,4.913105,1.836665,4.46309,4.21686,4.197006666666667,3.379282,2.57487,4.382123999999999,1.132244,2.8432895238095237,4.929875,2.719025,4.074522916666666,1.2664125,2.8169066666666667,1.973742,1.973742,7.362451666666667,3.21259,5.214483333333334,3.4644049999999997,1.88849,2.8632995238095242,4.672723333333333,5.9884666666666675,8.528476666666666,4.814526,2.70876975,1.1169633333333333,1.9377635,4.16509,3.80792,1.5114319999999999,1.930235,3.0035430357142854,1.1628225,3.1306166666666666,19.001022666666668,3.0255833333333335,2.8070500000000003,2.900846666666667,2.9978200000000004,2.3249166666666667,1.9775733333333332,3.1056500000000002,3.6977333333333333,2.5899566666666667,2.6597933333333335,5.660322666666667,2.4767233333333336,4.662025714285715,2.7252777142857143,2.6009257142857143,1.5289533333333332,3.7853066666666666,2.1150275,3.97841,4.92147,3.887425,3.06104,3.2430033333333337,2.36162,3.454133333333333,3.6156,3.3151233333333336,3.2558933333333333,0.8199127272727273,5.2576,2.5877,3.116286666666667,2.8064933333333335,1.990125,2.2344191666666666,2.2344191666666666,3.4662125,1.9848358333333334,4.722755,4.282025,3.738875,4.29319,4.565875,4.6370000000000005,4.6370000000000005,3.9493,2.944123333333333,4.521245,2.829435,1.6045380000000002,2.38291,4.52538,3.924525,2.7621,3.591165,5.435375,3.6709,6.457068666666667,3.13886,0.8437620000000001,0.8437620000000001,3.254575,4.78207,3.766065,3.2947319999999998,2.3867166666666666,1.7649666666666668,1.71674,2.9114966666666664,5.916224,1.4427333333333332,4.18643,3.6442666666666668,3.820185,5.14015,5.0024,4.7428086249999994,3.2412833333333335,2.24063,4.308595,4.02024,2.086805,1.16769,3.92586,2.76795,5.94347,3.17552,2.53057,3.318515,3.550955,3.402375,4.638035,3.0326,4.3407,3.842235,4.22188,3.71168,3.359665,3.54767,3.80692,2.767236666666667,4.305475,3.200475,4.77705,0.6090655555555555,2.322345,1.805985,2.186825,1.8393675,2.4764,2.56064,1.80199,4.454095,4.62264,1.9787433333333333,3.803265,4.30832,2.4874475,5.641361666666667,4.009324166666667,4.27017,4.976165,7.450406666666666,1.9934399999999999,2.9087033333333334,1.8283533333333333,2.9210166666666666,1.755345,1.85108,4.101185,3.66807,5.33215,1.0329388888888889,3.10489,4.394775,2.24311,5.06305,3.67026,2.71627,3.6222,3.3116,1.948795,1.7348759999999999,2.65955,3.197625,3.3358,1.9978425,2.508152857142857,2.508152857142857,3.57695,3.427425,20.267279345238098,1.0308533333333334,5.097814166666667,1.8129375,2.0143333333333335,3.578655,3.70166,1.88818,3.673665,4.837845,1.2784200000000001,1.2784200000000001,1.2814433333333333,1.67858,2.36103,3.109173333333333,4.654898333333333,3.40132,3.3950666666666667,0.48999000000000004,3.416776666666667,2.03937,2.1587,4.7402,3.369625,3.93857,3.41729,4.482185,4.4126,2.051355,3.682505,5.608036666666666,2.329225,3.45351,4.985555,2.232795,4.807415,5.6273,1.2297857142857143,1.9549800000000002,3.5612333333333335,0.6771328571428572,2.96663,3.32484,4.782515,4.97847,2.7802091666666664,7.754138333333334,2.8720933333333334,2.754436666666667,0.4477805882352941,4.21146,5.229142619047619,2.9596185714285714,5.3155,3.755285,2.510715333333333,1.7449999999999999,5.2865435000000005,4.358195,4.22575,2.657275,1.8960175,3.646205,3.705,2.94003,2.070735,4.110694166666667,6.157584999999999,2.68756,3.836675,3.45976,4.111445,1.4893857142857143,1.4893857142857143,3.2390933333333334,2.99315,4.524705,4.76475,6.61095,3.542605,2.759925,2.1436275,1.5172999999999999,1.364672857142857,4.923075,5.6381125,4.960875,5.92615,4.312985,6.59874,3.46534,2.795083333333333,3.8277666666666668,2.1257033333333335,3.0722022499999997,1.6244939999999999,4.59376,2.28977,3.78143,5.1086,4.04193,2.751393333333333,2.9201766666666664,1.3776499999999998,2.41099,3.7901333333333334,1.908065,0.54704625,3.10253,2.653016666666667,2.4342833333333336,2.350283333333333,1.9059975,1.6243480000000001,0.7045254545454546,0.7045254545454546,3.4979666666666667,1.74603,2.4118925,3.16095,5.3768,4.197595,5.6979,4.132505,4.62797,2.0386176666666667,1.3409066666666665,2.749665,4.16621,1.0342175,3.2203125,3.10621,2.926295,2.20008,4.269535,2.848385,1.9331633333333331,1.0824214285714286,3.30069,8.96227,3.400505,1.5643726785714285,4.311835,3.41199,2.63668,3.51754,2.75205,1.85914,1.080725,3.65674,2.548261666666667,2.25582,1.6960199999999999,2.248083333333333,2.2425566666666668,2.4810866666666667,2.8573275000000002,1.4301266666666665,1.7749966666666666,1.1031175,6.1864225,5.75085,5.5477,3.980625,4.272365,3.017936666666667,1.6496397435897436,4.66112,5.01805,2.55014,5.12595,2.1845,4.588325,1.0011033333333335,4.07358,4.077775,1.8284625,7.60257,3.60969,1.8501425,2.24179,1.7577025,2.516025,3.133766666666667,1.2287514935064934,2.9879766666666665,5.748,3.78271,4.05977,5.5759,5.2994,5.1811,0.89730625,4.27838,4.44767,4.29924,4.89544,3.863941666666667,4.448355,4.96497,2.935805,1.4346416666666666,1.4346416666666666,5.10285,5.229835,3.236335,2.6440566666666667,3.84698,4.32646,1.581418,4.073145,5.24395,3.669255,3.882545,2.9241766666666664,2.8083899999999997,4.946075,2.3691422500000003,10.506085531120839,1.92153,0.70947125,2.5378066666666665,1.723205,2.594325,2.15739,1.843724,2.92308,5.0096,5.31525,2.9748866666666665,1.58683,6.214862857142857,1.4002357142857143,2.9774333333333334,0.5110857142857143,4.08422,5.64785,3.356335,4.69782,12.048955,5.30265,3.027786666666667,3.0757333333333334,4.476185,3.1354100000000003,4.533505,0.88261375,1.11148,0.7945463636363637,5.79,4.21623,1.7889199999999998,4.492145333333333,4.57942,6.5967,4.812605,5.01065,4.426615,6.2713,3.8802,5.3403,3.11849,1.226172,3.925195,5.69795,2.96529,4.04679,3.39997,2.759505,1.262375,5.10465,3.91291,1.293075,3.5828333333333333,3.0635833333333333,2.4723566666666668,2.4621633333333333,2.48713,3.15415,0.7132536363636364,2.4229533333333335,2.620366666666667,2.6608899999999998,2.0453666666666668,2.690706666666667,1.894675,1.4763666666666666,2.393635,1.95291,2.095595,3.4865999999999997,2.813023333333333,0.6987599999999999,2.6922200000000003,3.475685,4.58358,2.39586,3.63474,5.35045,4.963255,3.33029,3.916165,1.3521142857142858,3.318075,2.548011111111111,4.284073333333334,2.68811125,4.2752,5.3949,4.89915,4.214845,4.2205,1.101794,1.101794,2.246704038461538,1.6694525,4.11287,2.538573,2.538573,4.96674,5.89265,3.05325,1.2206949999999999,1.5685,5.9065,3.647445,2.2569,3.11802,2.497755,3.261655,2.2569,4.486995,3.10243,3.0444533333333332,2.90229,2.00866,3.082605,6.54675,2.67336,5.2068,4.464865,6.6543,6.19725,6.46915,6.46915,5.5387,4.81382,0.5280407692307693,4.830225,4.098565,3.157935,2.626675,8.62774,2.71603,3.879275,3.684245,2.6876033333333336,4.50872,2.13416,3.4470375,2.9297566666666666,3.26314,2.5403366666666667,1.663968,1.663968,3.615765,3.925025,4.195745,1.7613219999999998,1.547456,48.228137159090906,2.6462833333333333,0.8494009090909092,3.0725833333333337,1.8360675,3.2560533333333335,2.793953333333333,2.9971533333333333,3.13973,2.7771633333333337,2.1378666666666666,0.99386625,4.45722,3.25862,3.53804,3.82838,5.1637,5.07705,5.10115,5.40165,5.3209,4.834105,5.47485,6.241065000000001,5.0407,5.50235,2.054975,3.86939,6.7978,5.30305,3.22561,3.820175,3.788055,2.486875,3.82669,4.576975,2.93249,3.860533333333333,1.59622,4.122025,1.3410600000000001,3.321835,3.961395,3.66932,6.512264999999999,4.13521,1.9497125,4.093005,3.969495,4.03853,0.9839275,2.890775,3.01649,4.545383095238096,1.1522375,4.608615,1.35449,5.96725,0.6919788888888889,4.110564,10.1388025,4.518805,3.33343,3.25895,1.8476166666666665,4.17778,5.42195,2.9513233333333333,4.57048,9.108809444444443,3.2996433333333335,2.02016,2.8083033333333334,2.7192166666666666,2.7727466666666665,2.730775,2.1768433333333332,2.6129166666666666,2.9330766666666666,2.6986633333333336,2.99225,3.316375,2.34538,1.5324866666666666,4.745962666666667,3.8944666666666667,2.6281600000000003,4.899131333333333,2.7824166666666668,1.04141875,2.137235,2.8547,5.188498571428571,2.7873,2.0608894444444443,2.0608894444444443,1.574545,1.6321625,2.2331600000000003,1.9718699999999998,5.7880625000000006,4.41888,2.1953975,3.0987766666666663,3.7688666666666664,2.070205,0.5878583333333333,2.7249666666666665,1.9191975,0.57139,3.8708,2.512725,2.492595,3.67941,3.6133414999999998,2.5292766666666666,1.5712400000000002,1.1397183333333334,2.116005,3.465935,3.593975,4.1536975,2.76972,3.883805,3.80872,1.1607181818181818,9.234765,2.665105,3.25104,1.292375,2.6432733333333336,2.37576,2.37576,2.37576,5.08515,5.37685,1.560565,5.0227,1.468064,5.143976666666667,1.5802479999999999,3.96884,4.304965,4.16277,4.66624,4.557475,1.951945,8.632365,3.925015,5.04315,3.5592,4.140188333333334,3.315296666666667,3.0226100000000002,3.75756,2.456513333333333,4.330905714285715,4.353325833333333,1.6168775,3.93183,1.6168775,3.42352,4.415323333333333,5.0457875,4.415323333333333,1.5913333333333333,5.75395,4.638615,4.33894,2.7536199999999997,2.972716666666667,4.264225,3.15113,5.21725,0.51642,2.97277,3.003643333333333,5.108884166666666,4.56796,2.3917,4.9133,5.961196666666667,3.25531,2.67914,3.03166,1.9973466666666668,3.991,3.90426,4.62591,2.704745,3.86829,0.8722810000000001,5.6171,3.251235,4.21717,2.2334766666666668,3.1936366666666665,1.9246166666666669,2.7714133333333333,2.78926,2.806316666666667,2.96957,2.53255,2.53255,4.335841666666667,2.806985,4.55352,11.6291625,0.9540677777777778,4.42941,2.5814233333333334,2.3766766666666665,2.5583033333333334,1.4195625,7.625361833333333,3.5359,3.56545,3.6573149999999996,2.2384,3.9014,4.106767388888889,1.7973266666666667,0.42938611111111114,1.521722,1.532585,4.983025,2.8283,3.23715,3.7274374999999997,3.3798266666666668,2.3102125,4.95382,4.577025,3.885025,4.468145,2.295275,3.861855,2.5213566666666667,5.59581,3.18186,4.828755,4.019375,3.94681,4.32791,2.01689,3.753915,3.589455,3.102203333333333,3.473945,2.73011,3.082075,3.26654,3.866875,2.6129466666666668,4.54997,1.4274166666666668,3.7763,2.83833,4.18233,4.492095,3.73727,4.350865,2.60525,4.214675,5.4548,4.1313,3.3581333333333334,2.18051,3.12295,2.435915,0.8914333333333334,4.313065,2.098205,3.41439,2.704815,4.03016,3.619895,3.07106,3.10581,4.242575,4.540534666666667,4.157295,2.81243,1.5461133333333335,3.4216,2.500635,0.8985633333333334,4.418045,8.885505,3.4244,3.7763,4.083425,4.795425,3.826655,2.26076,4.08524,3.8813,3.247475,3.3204,3.88038,0.65403125,1.2610042857142858,6.33521,1.67969,2.738775,4.670892,2.541075,2.173565,2.77151,7.52931,2.72142,3.984685,3.752005,0.7772844444444444,3.4377,2.71813,3.851665,3.684205,5.909618333333333,0.686165,3.201295,9.47404,3.171095,1.1168855555555557,5.125707500000001,4.706585,5.21495,4.48979,4.659665,3.200585,2.63436,7.0979849999999995,0.8297549999999999,3.55035,3.98025,3.08396,3.90047,2.404845,4.129055,1.5839066666666666,4.20239,4.096215,4.139105,1.703495,4.658265,4.642715,2.35912,2.243325,2.244055,1.104398,4.246435,3.37058,1.471114,8.34835,5.81355,4.40236,4.20497,3.450305,4.41676,1.4340428571428572,4.31683,3.882735,5.3417,3.77042,2.6025199999999997,6.530195256410256,0.846485,0.846485,2.5454033333333332,0.9378042857142858,4.16553,2.9991066666666666,1.0598225,1.7964833333333334,0.4183966666666667,6.240869999999999,1.0297775,2.798075,3.577255,3.99964,3.67104,4.18527,5.4597,5.5473324999999996,3.32631,3.065125,2.4712,4.09054,4.579875,4.1668,3.59965,3.7495,6.04205,4.114905,4.367952222222222,5.704681,3.72791,3.3862025,2.397495,3.3862025,7.047598,41.19221954112554,3.6824,3.536205,2.9736433333333334,4.30778,4.545135,3.52029,3.64305,3.78511,4.72071,4.233945,1.6247800000000001,4.795665,2.694615,4.558425,5.0164,4.786985,2.4387933333333334,4.473765,3.934645,3.31968,1.5281280000000002,0.6470707692307692,1.64984,3.6215333333333333,2.8274500000000002,1.31745,2.9440333333333335,2.6975033333333336,2.7694466666666666,3.6198333333333337,3.005933333333333,1.420048,2.6119066666666666,3.7218666666666667,1.9394786229086232,2.967356666666667,3.128698,3.0066100000000002,2.5889533333333334,3.4788,1.2361,3.700995,3.87958,1.25711,1.25711,1.25711,1.25711,2.9188966666666665,2.1085066666666665,2.593405,3.39216,4.882095,4.499535,4.11136,4.351985,5.65805,4.582565,2.34539,6.147,3.84306,2.99859,3.99073,3.104485,4.11238,4.181175,0.7178776923076923,1.4450285714285713,1.6051833333333334,4.3668,3.865685,4.67733,4.106105,5.993186666666666,2.2156433333333334,4.36179,1.5256816666666666,3.7994,5.17755,1.63598,5.2078,0.7040574999999999,4.377095,1.236122,1.12047375,3.666895,3.973955,5.0614,5.1114,6.0219,4.404605,1.482538,3.66603,1.48749,3.53686,2.78385,2.510715333333333,1.8998125,3.586415,1.3077400000000001,3.47354,4.8069,2.92286,5.723,120.56505477849927,0.5128666666666667,4.55964,2.3128966666666666,4.78251,4.100555,3.21334,1.547095,0.3277195238095238,2.880155,3.77239,5.27595,3.321305,3.659015,4.39824,4.35308,4.420865,8.467406666666667,0.6855455555555555,2.719435,0.9550475,10.922302,3.047735,3.53334,0.9324055555555556,2.210465,2.72934,2.15861,3.02441,3.3600666666666665,2.7613766666666666,4.273035,3.1164466666666666,2.277956666666667,2.2331433333333335,3.442025,3.428025,3.020315,3.654105,3.713505,3.3654,2.3215533333333336,3.838715,4.7888,2.97532,0.9812433333333332,2.5886133333333334,4.273035,4.83495,5.5494,4.061745,3.85444,2.0252,10.67474,4.47779,2.70714,3.91512,5.2639,0.5784373333333334,0.5784373333333334,4.0893125,4.0893125,3.27935,3.6512666666666664,1.824581818181818,0.6029533333333333,2.847795,4.41613,4.093275,3.04148,4.205875,5.3674925,4.624245,2.0580975,4.66573,2.2161925,2.91887,4.2413099999999995,1.81385,2.13217,0.4923942857142857,1.2225722857142856,1.2225722857142856,1.91024,4.360825,4.655235,4.986915,5.786213,2.88864,3.0529,1.979725,2.07843,4.08447,3.77101,4.66947,2.336055,4.66947,4.430145,3.5461,6.1318,3.96967,2.43463,2.015433333333333,2.5341033333333334,1.4168525,1.4384025,1.6576,1.7429975,1.631525,1.8573675,3.731866666666667,4.45668,2.553585,6.7656,2.9746366666666666,4.297885,3.5051,4.104425,2.925746666666667,3.006596666666667,6.1256699999999995,3.2994333333333334,4.683394666666667,3.1502433333333335,1.40343,2.4880166666666668,2.6620966666666668,2.3429266666666666,6.0448,4.374225,4.65299,12.422059793715057,0.7412641666666667,2.01534025,2.27059,1.65348,1.2630657142857142,2.5125,2.400195,2.480275,2.445285,0.7340361538461538,1.858275,0.5377210526315789,4.582925,1.92574,3.89712,4.466335,2.338725,5.7294725,3.97928,7.29024,4.31944,2.96577,3.35823,4.551235,4.90855,2.7984233333333335,4.54419,2.15873,2.15873,4.621035,3.725955,4.101935,4.04371,3.141386666666667,3.949965,5.0785,5.239,4.75405,4.76731,4.54219,4.309665,2.50677,4.889645,1.1604616666666667,4.65287,4.743855,2.4873266666666667,2.26848,4.163305,1.4146866666666666,5.2536,1.8207575,5.628167318840579,4.37489,4.28333,1.5660333333333334,3.532821666666667,3.532821666666667,11.958755,3.963925,4.130585,1.1224375,4.2045505,2.18135,1.4932825,2.4018525,1.67416,1.9377075,1.7583379999999997,3.061905,5.9647,1.8192425,4.95223,4.609909166666666,5.07205,2.1595075,2.364045,3.253385,4.306875,5.3759,3.9885,6.402633333333333,3.110443333333333,2.722773333333333,0.3954933333333333,3.769915,3.992815,3.327576666666667,6.304706666666666,2.5793666666666666,3.0729633333333335,1.2545883333333332,1.6283433333333335,0.54704625,1.521722,3.0594,1.49583,1.5154933333333334,0.65571875,1.182194,4.635555,2.4171425,0.6018899999999999,1.58864,1.6715175,1.597522,1.3513216666666665,2.110775,1.6283433333333335,2.550475,1.182194,1.182194,0.6018899999999999,1.5757714285714286,2.5020800000000003,1.2346333333333332,2.657675,0.6018899999999999,2.575075,2.5020800000000003,1.3033483333333333,1.3033483333333333,1.3033483333333333,1.8979659999999998,1.2478025,0.6018899999999999,1.1113680000000001,1.12914125,1.018771111111111,1.798398,2.6962,0.8504333333333333,2.0814725,1.5418142857142858,0.6018899999999999,1.7992979999999998,1.6283433333333335,1.9494833333333332,1.8630333333333333,0.8837809999999999,1.9494833333333332,1.0567333333333333,2.35912,2.436625,2.505275,1.12914125,2.1795999999999998,1.3077400000000001,1.3077400000000001,0.9148636363636363,0.9148636363636363,0.9148636363636363,1.2545883333333332,1.6283433333333335,1.5418142857142858,1.58864,0.9863,1.8630333333333333,1.46176,1.59894,2.01224,1.2545883333333332,2.81484,12.302362500000001,0.65571875,2.5903,1.7895333333333332,2.519975,0.9450214285714286,0.9450214285714286,0.6018899999999999,1.0595833333333333,1.6243480000000001,1.5418142857142858,1.81103,1.8630333333333333,1.1286111111111112,1.1286111111111112,1.678334,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,2.99315,1.0567333333333333,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.3796986363636364,53.913595666666666,1.5228925,1.52471,1.5418142857142858,1.7895333333333332,0.9863,0.6296058823529412,0.725002,0.725002,0.725002,0.725002,4.332866666666667,16.38450041666667,3.401,0.6016609090909091,1.61713,1.61713,1.61713,0.6016609090909091,3.0594,0.6018899999999999,1.7992979999999998,1.5154933333333334,2.5201599999999997,1.0567333333333333,2.3917,1.0567333333333333,1.531816,1.531816,2.0967,2.0967,0.6018899999999999,2.00978,2.00978,0.9615272727272728,0.1983336111111111,3.0594,1.4568183333333333,2.4697475,0.6016609090909091,0.6016609090909091,0.6016609090909091,0.6016609090909091,0.6016609090909091,1.7895333333333332,0.3796986363636364,1.0567333333333333,2.11764,2.11764,2.52825,2.9633533333333335,0.6427619047619048,0.6427619047619048,3.3938,4.11,1.1958942857142856,3.10972,1.00099,2.51955,1.984658,1.0913183333333334,3.0817,1.8429925,3.259593333333333,5.15275,2.361115,1.1635222222222223,4.283645,4.17614,2.7143366666666666,1.730742,2.276276,4.88936,1.9938886111111112,2.7140033333333338,2.96752,3.1575366666666667,2.51723,6.172296666666667,4.05484,0.1983336111111111,2.97466,4.81042,3.3773,4.41873,4.28892,4.38598,2.704606666666667,1.8334759999999999,4.138075,4.705035,4.51905,4.655385,5.0049,3.107835,0.7021841666666666,6.77266,1.4808033333333332,2.877872,4.638375,2.44669,2.44669,0.8488427272727272,1.8998125,3.99854,3.054945,4.81853,4.27191,4.67514,5.15025,1.0931157142857144,4.511045,5.1483,6.7545375694444445,2.2356766666666665,4.197395,3.775805,3.980305,3.967665,4.115055,4.4952,6.099477500000001,5.2582,4.317073333333333,3.64849,4.51128,7.279072000000001,1.965325,2.2313646153846154,2.8886533333333335,1.7786566666666666,2.7464099999999996,1.87285,5.23935,2.992993333333333,5.7055,1.8530339999999998,4.661455,4.08075,3.868805,4.458705,3.85404,2.480586666666667,2.8216666666666668,2.7032433333333334,2.5788266666666666,2.4343966666666668,1.6620650000000001,2.762233333333333,2.8791433333333334,2.25664,2.25664,4.63702,2.9272500000000004,1.9975466666666666,2.946123333333333,2.1304666666666665,2.65157,3.080906666666667,2.63951,3.04359,5.2981,4.116885,3.892445,3.3237966666666665,3.3237966666666665,3.898115,3.2453866666666666,3.958995,4.456185,3.887935,3.442045,3.347235,7.29236,1.93845,2.120515,3.40258,3.0806,1.4045699999999999,1.4045699999999999,3.531535,1.79926,3.950512,3.74336,3.3395,2.265679,2.136617833333333,0.5599758333333333,3.462915,3.81205,1.82942,2.46614,4.138835,1.2897933333333333,4.614315,1.1715566666666668,0.46435785714285716,0.6278928571428571,21.199550284722225,0.6278928571428571,0.46435785714285716,0.7914278571428571,9.863006666666667,2.7096,3.62712,4.116035,3.4534174999999996,2.90151,4.09551,2.3116,2.46494,3.66814,2.967535,4.13546,4.19494,3.70161,2.30387,3.055365,3.44672,3.869915,3.19493,1.13014,1.13014,1.13014,1.13014,3.39127,2.89965,3.12982,1.8719299999999999,1.1606766666666666,2.46667,3.821535,4.098135,2.930645,3.16931,2.564895,2.720718333333333,4.00826,4.02845,1.1057883333333334,2.5656433333333335,1.07701,2.5015733333333334,1.84812,3.8136666666666668,5.0017,2.44976,3.70563,3.994773333333333,0.8181788095238095,0.21521214285714288,0.21521214285714288,0.6029666666666667,0.21521214285714288,0.21521214285714288,0.21521214285714288,0.6029666666666667,3.932055,7.080946666666668,3.68263,0.53548875,3.67079,7.68215,3.29367,3.1347966666666665,1.1489883333333333,4.484095,5.13255,4.28178,4.791125,1.666912,4.569435,2.0431500000000002,2.259176666666667,3.530335,5.28565,0.8483842857142857,0.8483842857142857,3.693235,2.840536666666667,1.98187,3.2841,2.820155,6.5269,2.866105,5.9912,5.6634,5.6521,2.834405,1.89302,3.777145,3.50238,2.13588,4.26277,3.162435,1.8804525,1.146065,4.107845,3.36256,4.803100000000001,6.0593,1.4800483333333334,3.895845,1.1418766666666667,2.5666966666666666,3.23539,3.79852,0.3848385714285714,3.50001,4.167305,0.913025,2.596293333333333,7.6055600000000005,4.000955,2.173655,5.622671,4.46873,3.62326,1.41191,5.195803333333333,2.79125,3.1064933333333333,3.5963333333333334,2.244073333333333,2.244073333333333,6.0375,6.0375,3.54765,3.54765,8.95418,3.54765,3.54765,4.204848888888889,6.78395,3.45725,3.5422241666666663,2.8950633333333333,4.64076,3.46665,3.244846666666667,3.1596766666666665,4.790025,3.1557833333333334,2.6939966666666666,3.0959633333333336,2.3224966666666664,2.73698,4.82435,7.232335,6.516075,5.11985,3.706255,3.975625,6.609754,5.26595,4.747105,3.93686,4.226505,2.2567566666666665,2.173415,2.246985,5.41385,5.3782,4.4824525,4.27532,2.417943333333333,2.4709533333333336,6.74365,1.8979659999999998,2.52384,3.3693666666666666,3.3693666666666666,3.226245,5.0341,0.7855408333333332,3.5370000000000004,3.867935,2.81649,10.300775,4.294825,2.4652866666666666,2.37503,4.622575,6.0639,3.102195,5.34735,2.570673333333333,4.787835,3.1470114285714286,4.136485,5.24725,4.91687,0.9687683333333333,3.4779,0.98995875,2.5390433333333333,4.806715985294118,7.78659,2.4323,3.0458766666666666,6.7564416666666665,1.7541820000000001,4.5332,5.541,3.51881,3.63446,2.281476666666667,4.57603,2.3734,0.5085315384615384,5.20045,2.79098,3.5345,4.781825,4.770045,5.3061,6.69487,4.823115,5.6775,7.232362500000001,54.84426,4.678195,3.89802,5.11125,6.02585,4.528465,5.15405,4.342805,4.47128,1.9423175,3.86593,3.980275,4.581455,2.5538,5.09305,3.93405,1.6463640000000002,5.42145,6.2623,7.128855,5.44295,3.14002,4.59199,3.27082,3.346575,3.51794,4.31463,3.83754,6.37942,2.73465,1.0977114285714287,2.4082475,0.615518,0.615518,3.176745,0.615518,2.6230949285714287,2.6230949285714287,3.3571289285714285,4.3503935,4.908527428571428,2.4082475,4.536549166666667,2.3203566666666666,1.3697016666666666,5.55325,2.1823,7.018607333333334,5.762623333333334,10.660114454545454,3.1135333333333333,2.51389,0.2195987878787879,1.8590656666666665,2.024226666666667,0.9298,1.1947083333333333,3.0112900000000002,2.3474675,2.64295,0.593473,27.042924166666666,1.8021875,0.7731615384615385,2.51362,2.51362,0.4133894444444445,1.6696925,2.97931,1.1976725,1.684105,1.604695,3.986705,2.910935,2.161626666666667,2.45416,1.1089200000000001,1.9828125,1.4479083333333334,5.327597666666667,3.805045,6.808538333333333,2.439415,3.2478166666666666,0.9964216666666666,2.416665,5.0486,6.134285,3.089926666666667,2.2753799999999997,5.362006666666666,2.00404,2.4710199999999998,4.14759,1.0723433333333332,3.6402666666666668,2.28538,5.2115,4.60815,6.08255,2.98259,4.05467,4.05467,5.34075,2.068795,5.3541,2.7928800000000003,1.6988625,3.09037,3.497335,5.603667833333333,4.05897,2.8886233333333333,3.0443833333333337,2.434775,1.004692857142857,5.4123,0.930205,5.483573333333333,4.349935,7.365526,3.83862,4.44641,4.09986,8.385015,4.069385,4.47186,1.12774,0.7120592857142858,4.56607,4.134675,2.23792,3.466955,3.145635,4.177865,2.121145,4.936045,2.3987666666666665,5.2055,4.94448,5.42595,4.37017,4.79784,3.029875,6.6527425000000004,3.56134,4.12605,3.375575,4.20427,5.554882023809524,0.5970407142857143,3.6812,1.7167733333333333,0.6137944444444444,3.89189,2.454885,0.98464,2.12801,6.29219,3.614875,2.415085,2.6380133333333333,2.6702866666666663,4.96878,3.990135,1.5774354761904763,4.154595,2.1608666666666667,3.5865333333333336,4.30579,5.13025,3.0410733333333333,3.7261,3.7719666666666662,1.972176,7.39526,4.760515,4.16437,5.0913,2.208025,4.40871,4.75385,4.14316,3.808885,10.765645,3.50401,4.134758333333333,4.840185,4.40496,2.40793,4.376255,3.93844,4.110785,3.2347900000000003,4.25805,1.495705,3.0742100000000003,3.45483,3.54851,4.96973,1.765844,4.167255,3.1060166666666666,5.2644,3.14261,1.87049,4.44353,4.45018,1.07406625,3.09936,2.7338833333333334,4.423120666666667,1.720036,1.6734733333333331,1.2837325,3.65662,5.41255,5.444929999999999,3.6849524999999996,2.703095,2.34409,2.04411,1.973305,1.53333,5.8697,2.98871,1.9117875,0.8879076923076923,19.952305833333334,3.021405,2.8204391666666666,4.675306666666667,4.100553333333333,1.5823733333333332,2.6547465,2.8808070454545454,1.2884499999999999,1.8180500000000002,4.326155,4.684775,3.4406541666666666,3.35705,5.3499,4.677425,7.208102499999999,4.5545591666666665,4.702065,3.64976,2.6519333333333335,3.97566,3.993215,3.302766666666667,3.865715,1.8175,4.791825,8.24628,3.38756,2.812775,3.88306,0.52513875,3.178406666666667,2.0897033333333335,2.1142525,4.326055,3.146105,4.700015,3.68555,2.9267,2.2075575,1.71324,0.767376,1.4970466666666666,1.29264,3.88083,3.962185,4.65815,4.613915,7.19284,2.3167766666666667,1.384314,2.323913333333333,7.762906666666667,3.034205,2.885,3.081985,4.38999,3.19904,3.53015,1.502322,4.64732,5.07755,4.12713,3.8931,3.592025,4.24798,4.251055,4.3213,4.32719,3.763375,2.278495,3.036046666666667,3.2737,5.49965,3.04661,4.2051085,2.637975,2.908965,2.333056666666667,2.16743,2.1289833333333332,2.585955666666667,2.585955666666667,1.9264166666666667,2.6262633333333336,2.3896266666666666,2.3486366666666667,2.110043333333333,3.96896,2.40187,2.671416666666667,2.975293333333333,1.73946,4.50622,2.80681,3.737,2.24439,5.22635,5.0773,4.8338761111111115,2.640405,2.531805,3.041515,3.3637,2.021575,2.959855,1.927265,2.472435,2.536025,6.823323333333334,4.2090225,3.48998,0.583954375,4.40806,3.96142,4.130235,3.315735,4.106455,3.7122425000000003,6.20995,4.47047,3.19975,2.786110357142857,2.147683333333333,2.504,1.65307,1.699412,1.551712,2.06704,1.835185,1.1304,4.159426285714286,0.6018899999999999,0.5484233333333334,1.941748,1.5278533333333335,1.4424379999999999,1.44574,2.268584090909091,1.442435,1.7476880000000001,0.58923,168.1293775232631,0.5131313333333334,2.13544,1.091262,1.1682175,2.133595,1.5802375,2.0090525,2.287176666666667,2.08556,6.70605,3.07935,3.2921761904761904,1.79051,3.186525,1.2840366666666667,1.2840366666666667,5.9921075,0.48884055555555556,2.1908875,3.24143,3.052146666666667,0.7850045454545455,0.5792317647058823,1.2079622564102566,1.0337636363636362,2.20053,4.130655,2.08364,2.1302225,2.2018333333333335,4.722702388888889,1.0217622222222222,4.279355,3.52855,3.508155,7.1066,1.9570866666666669,3.12486,2.733655,3.999219,2.35076,2.959285,3.156765,3.039605,4.541085,2.793735,6.68472,2.60085,2.61396,2.714065,1.67414,2.651155,3.517665,3.098995,1.645535,1.64342,2.11076,4.56701,5.3846766666666666,3.125055,2.835985,1.48893,4.2306,3.585233333333333,3.9278333333333335,2.890895,24.90180432615995,2.715338666666667,2.733026666666667,3.0614033333333333,3.4730666666666665,2.986083333333333,5.707660000000001,3.18134,2.3872533333333332,3.5209333333333332,3.4725,2.1559033333333333,3.23103,3.2733600000000003,3.1193233333333334,1.660595,1.60911825,0.574597,2.36255,2.0118375,0.261284375,2.19718,2.7122,0.261284375,0.261284375,2.1557510416666665,0.261284375,0.261284375,0.261284375,0.261284375,2.8617399999999997,2.5939,0.5846646153846154,3.2921310714285714,1.3960875,1.9562760000000001,5.2008,4.4073225,6.178705,2.09033,4.90102,2.00147,2.5917066666666666,1.28097,5.813716666666666,2.76815,6.0033125,0.8360500000000001,1.4520025,4.59046,4.672105,35.230373876623375,1.588076,1.3071566666666665,2.303663333333333,2.371825,0.9148636363636363,2.3256166666666664,2.23328,2.6996066666666665,1.94043,2.44889,1.6571366666666667,2.5870366666666667,2.3346433333333336,2.3594566666666665,2.61288,2.4687333333333332,3.85551,3.4290333333333334,1.098652857142857,4.08141,3.96821,19.742638333333332,2.6699800000000002,3.2138299999999997,2.71714,0.8636079999999999,3.105142,1.6459246666666667,3.105142,2.236736666666667,2.47604,2.8945666666666665,1.677845,1.939045,4.31915,4.118755,5.00775,4.22165,1.645252,5.21405,1.646325,4.929755,3.9249115238095236,4.422145,0.7412336363636364,2.039515,2.14373,2.73286,3.35834,1.061285,3.23155,1.8842860000000001,1.9196133333333334,1.010472,1.010472,3.12866,2.5648966666666664,4.2899,28.80044416666667,6.3007,1.8257233333333334,3.544643333333333,0.39995933333333333,5.888615,5.00015,2.728816666666667,3.591795,5.369035,3.27414,1.1288475,4.577005,1.313156,2.647105,4.514475,4.66583,2.16746,3.221265,4.46858,2.62667,2.816943,4.19184,1.3480133333333333,2.4487983333333334,3.58656,4.8935025,2.3935400000000002,3.0178966666666667,2.7937100000000004,3.964095,4.041285,4.0987,4.1734333333333336,1.778765,5.76328,2.694165,1.719096,4.06556,5.572,4.205345,3.61858,0.74063625,2.96915,3.611295,2.097705,4.758122999999999,2.621925,3.89894,2.84775,3.3755333333333333,2.83764,3.272766666666667,3.0465933333333335,3.1962733333333335,4.305445,5.64615,3.53559,1.69565,4.16882,4.09618,2.04183,1.980405,1.84186,3.9475705555555556,4.51416,5.048929583333334,4.031725,3.4620333333333337,3.701575,3.19548,1.3961016666666666,3.04322,3.011445,3.13604,4.54228,4.661415,4.216505,2.77143,1.906395,1.74304,1.4497825,3.58087,2.42102,2.22875,3.36059,4.81766,1.51366,5.3925,1.3772428571428572,1.84312,3.08698,3.26112,3.08298,3.740715,3.061935,1.779685,0.9862799473684212,3.39972,3.968045,4.527135,9.081308333333334,3.062326666666667,3.16651,1.7251233333333333,2.7657233333333333,2.6776999999999997,1.1795883333333335,2.97438,2.6692033333333334,3.0917266666666667,4.091,3.123083333333333,7.06646,3.1271,0.7508172727272728,1.7499966666666669,3.63367,3.275405,3.44645,3.4836666666666667,2.608874,3.035175,3.087625,1.9111722857142857,3.91003,2.6125938888888887,3.44777,2.2054466666666666,4.506605,4.307875,4.63164,3.45606,3.756095,1.0147288888888888,4.70363,2.9002700000000003,2.810753333333333,4.439445,2.66323,2.6863533333333334,0.7191299999999999,0.7191299999999999,4.259753333333333,4.272625,6.9108,3.21955,4.461035,3.413815,3.07818,4.81655,4.311455,1.02079,3.93166,2.6483233333333334,4.131429166666667,2.9435566666666664,3.0519416666666666,1.85462,3.352829642857143,2.565236666666667,2.9899466666666665,2.46951,2.73277,1.97687,22.54658261166008,4.268955,3.6294,4.085795,3.289945,4.3126,3.487295,4.56267,3.82778,3.97091,3.511365,3.686515,2.56563,2.84544,2.9326266666666663,3.026353333333333,2.7796866666666666,4.220535,3.54674,4.5773025,5.0503,4.336455,1.272034,1.440836,1.440836,5.07775,3.69435,2.637583333333333,2.38426,2.957926666666667,3.344525,3.329,7.765218333333333,3.218083333333333,3.4657,2.993885,4.80118,1.5818666666666665,5.7000975,2.45701,2.946353333333333,1.8012275,3.4792,3.05552,6.21139,3.154985,2.79154,4.188855,4.233502666666666,1.5091625,2.5883133333333332,1.6624400000000001,7.444789,4.280805,6.811291666666667,2.2032425,3.98378,3.823645,4.091025,5.1769,3.6942,3.6942,2.171615,4.35559,5.0237,2.186215,6.72775,1.67065,5.74395,8.099668666666666,2.9803599999999997,4.239064,2.23038,2.067755,0.48724625,4.47049,2.5155,2.621875,3.8034989999999995,2.3101,2.5458633333333336,3.770775,5.61685,5.02975,4.600855,4.748705,4.27169,2.2486775,1.0320727272727273,2.996285,3.303275,2.801346666666667,5.2758,3.923115,3.29298,2.45816,1.9549800000000002,4.26061,1.00826125,5.23235,0.9861366666666667,5.48675,3.37518,4.74411,5.183895,3.084595,3.26822,3.1379633333333334,2.3146666666666667,3.98332,3.045445,2.493665,3.76364,4.914245,5.734758333333334,4.74461,1.7627075,3.406105,3.14422,5.582126666666667,1.9067425,1.9067425,2.9327400000000003,2.239456666666667,2.5069,2.60642,0.865778,6.21105,3.292595,2.0667375,2.47233,2.636465,3.58326,2.65171,3.716875,4.99157,5.0233,4.880815,5.9895,5.83815,1.315075,3.755445,1.1032666666666666,2.5619,4.322066666666667,2.45283,3.11334,3.224245,4.61524,3.059215,0.44673894736842107,4.33812,4.082135,4.73105,3.312675,4.62715,5.57905,4.33533,3.79279,1.89897,4.61335,2.064485,4.3804,4.3804,6.63305,5.6574,5.52475,5.03635,2.74019,1.5818666666666665,4.258295,1.92696,1.7226033333333335,2.099885,4.344355,4.1352,4.171835,8.15615,1.5760766666666666,5.22395,1.225925,3.341035,5.9435,1.94009,4.71739,2.6873799999999997,5.0274,3.323705,4.72661,2.479973333333333,4.16372,3.99101,5.9729,4.33352,4.13233,4.01974,5.5666,4.13867,4.724715,3.78978,4.34454,6.911336666666667,3.546535,7.08641,3.30418,5.6291,6.308738863636363,4.445835,3.47041,1.6990475,5.59535,3.846605,0.8456044444444444,8.65411,6.0141,5.2474,3.0688341666666665,4.87274,3.025905,1.752406,3.946575,1.1057883333333334,6.078,2.61265,4.66058,5.47885,4.43138,4.3789,2.15658,4.37306,5.1898,1.66809,6.974069999999999,2.976735,3.71475,5.256,4.173095,2.22785,4.552875,3.62383,3.805305,2.7228966666666667,3.99372,3.70195,5.4287,4.58334,3.415415,1.8360725,1.8360725,7.540741666666667,1.3760557142857142,5.1123,4.26424,5.4788,3.666325,3.603765,5.0461,3.89872,1.012605,1.012605,1.012605,3.659885,3.132905,3.967095,4.415155333333333,2.622775,1.4574333333333334,4.3514,2.1807675,2.69331,3.980185,4.63125,1.9206675,2.17534,5.76367,3.741185,2.981795,4.566205,1.7870075,1.8702675,3.2965999999999998,2.737305,5.1987,1.3760999999999999,1.5788,1.04264375,3.83966,3.360945,2.9995100000000003,2.953606666666667,5.32905,1.745112,2.0368425,2.70767,1.6206714285714285,3.16387,3.54499,2.48751,5.42885,5.5933,2.86451,4.37504,3.78318,3.38056,3.643185,3.98566,3.59704,6.88609,5.1413,1.80511,1.7579666666666667,3.764405,4.659885,4.201275,3.67686,3.0253566666666667,4.22195,5.9942,5.2422,2.8302033333333334,5.4632,3.970545,3.9072,7.9552375,4.394165,0.7305872727272728,3.81307,4.1083275,2.24714,4.18616,3.724066666666667,5.7609,3.894,3.885065,3.837785,4.322845,4.74304,4.72844,2.959025,4.097555,4.91575,3.964065,2.368335,2.955345,6.46536,5.2541,1.8708639999999999,3.054135,3.8399525,3.90492,5.0893,4.475325,2.46855,0.8742300000000001,4.604855757575757,6.125792499999999,3.50346,4.8504,3.62198,6.642118333333333,3.862435,3.7833666666666663,2.8275566666666667,3.72113,1.988765,3.373615,4.37806,2.58886,4.19551,5.47615,1.4338475,4.75179,0.6325064285714286,5.9265,6.02935,5.76335,5.3883,1.5795716666666666,1.7105433333333335,4.336805,1.892335,4.56363,0.5360133333333333,5.70935,3.255735,1.520726,6.1637375,6.46415,0.9337825,1.8589365,1.226032,1.226032,1.226032,2.250713333333333,4.44901,3.595495,3.47094,3.881835,5.27025,4.02981,1.902802,4.06885,5.14705,0.2991878048780488,3.653965,4.67535,4.546465,38.90394515909091,5.8108175,5.08625,10.701121666666666,3.31076,4.21033,6.9195400000000005,3.10025,4.96954,3.995425,3.954585,8.80607,3.803875,2.70295,2.615425,4.5884,4.05058,3.393495,4.442805,2.12938,4.47393,4.38267,6.7501880000000005,4.032725,4.610105,2.35582,4.30076,0.51227125,1.4478216666666668,3.482815,5.9303,2.829985,1.185915,1.185915,2.987865,3.81248,4.078655,2.65498,1.6480733333333333,3.491625,4.150775,1.6983875,3.054323333333333,1.6335799999999998,1.8272133333333331,4.073555,4.485185,2.1135075,4.599515,2.28662,2.25562,3.7484,3.54948,4.081495,3.862895,6.053144333333333,2.522664333333333,3.626035,0.7276772727272728,0.6229933333333334,3.68435,2.396745,8.61279,3.401,4.8876,1.6508175,4.44039,1.5599416666666668,3.963935,4.657175,2.5748533333333334,3.856975,4.890015,0.42005299999999995,0.42005299999999995,3.595333333333333,3.379566666666667,2.926716666666667,3.79928,3.754385,5.4846,0.9869272727272727,10.19374,10.552900000000001,2.110775,4.62199,4.599285,4.74737,3.432755,2.54135,2.01146,2.00441,10.650627499999999,2.1829875,2.6584266666666667,3.511512,4.68146,3.511512,2.1411225,2.9267733333333332,2.8152866666666667,0.7045981818181818,5.337365,2.94664,2.64671,4.105825,8.63721,9.08394,4.10708,3.905295,4.21907,6.482135,1.884435,1.3849,26.6407675,4.410385,3.787065,0.8667680000000001,4.12531,4.11677,5.09605,4.542305,4.79511,5.730066666666666,3.1551766666666663,2.0247699999999997,0.6702294117647059,0.7403408333333333,4.83501,5.18885,1.367305,4.363008333333333,0.9203416666666667,3.5279000000000003,1.52433,4.12667,5.88595,2.092975,2.366235,2.293335,3.859195,2.939205,0.47349722222222224,4.285075,3.671305,2.569,3.302805,4.89953,2.90811,4.480025,2.98255,4.646165,8.157893333333334,4.701845,7.844695,2.78485,2.65128,4.477435,4.3967825000000005,4.440485,4.474635,3.73601,4.52909,1.15875125,3.2524058333333334,3.257938285714286,0.706654,1.440836,1.440836,4.14148,7.495801666666667,0.8461230769230769,4.83921,0.8785633333333333,2.812673333333333,2.3378033333333335,2.476238409090909,6.135052222222222,2.4833633333333336,1.1285555555555555,2.3023166666666666,1.18755125,2.0027066666666666,3.1980500000000003,3.0782049999999996,3.29946,2.45735,0.8785633333333333,4.659295,4.316945,5.5275,2.755845,3.974685,2.0797999999999996,5.9135,4.764565,4.38874,2.9425166666666667,3.322435,2.241745,1.3592425,4.13063,2.675625,4.561485,5.7417,1.659732,4.65135,2.8158133333333333,6.243285,3.57876,2.591565,0.8785633333333333,2.34104,3.4567,7.179389055555555,2.3182066666666667,1.643182,2.3182066666666667,0.427985,1.03433,3.86964,2.76796,1.6196075,3.671165,3.8713290000000002,0.643429,0.643429,0.643429,8.85366,1.60883,0.7294927272727272,34.994695316017314,1.783244888888889,0.6571988888888889,2.9394575,0.6571988888888889,3.936365,1.98543,2.44445,2.6772033333333334,5.12275,4.22805,4.511025,2.4461533333333336,0.8826428571428571,4.264875,3.2895033333333337,4.88229,1.0496857142857143,2.943525,2.943525,3.94972,3.86483,3.528925,4.563293846153846,3.33697,4.64461,5.2347,1.8678519999999998,1.05511,5.3409,6.59195,3.818,0.696676,4.371055,4.1252200000000006,0.9060575,4.56639,2.50655,3.977515,4.40436,1.854940606060606,1.854940606060606,4.087365,3.464245,0.9013611111111111,2.923645,3.058593333333333,3.204915,4.01307,4.49422,0.5439742857142857,0.29259352941176475,0.29259352941176475,0.29259352941176475,0.8365678151260505,0.5735038461538461,0.655661,0.29259352941176475,0.29259352941176475,7.2362,0.29259352941176475,0.8365678151260505,3.544695,1.2554075,4.352475,1.2040316666666666,0.6001869230769231,0.9060575,2.551015,2.6901,3.996995,3.132905,0.29259352941176475,0.29259352941176475,4.40829,3.77284,4.146405,2.60936,4.107745,1.531192,3.70387,0.655661,0.655661,4.60922,3.035935,2.7228,2.909635,3.8672233333333335,1.04875,0.8196384615384615,10.267900000000001,1.23752875,3.721175,4.477115,5.17085,2.05792,0.3845734782608696,0.89907625,2.7712066666666666,3.221735,3.056645,4.539875,1.455768,5.71055,3.612225,5.28337,4.008795,3.0778499999999998,2.921836666666667,6.415396666666666,2.677216666666667,4.78193,4.09875,3.994773333333333,5.84941,0.5422853333333334,4.205885,3.3782666666666668,2.1409266666666666,0.6726977777777778,3.95618,4.35012,2.944,2.36712,2.177535,4.997385,2.743505,2.823405,1.0317859999999999,0.46621692307692303,3.849025,0.3488346666666667,0.7566672727272727,3.915395,3.14393,4.099285,2.82122,5.5345,4.37097,5.760055666666666,3.60395,3.33049,4.132985,1.55861,5.243895,1.7756779999999999,4.11562,2.4300975,5.999686666666667,2.590615,1.0539239999999999,4.48366,6.9220749999999995,6.602929166666667,3.2520733333333336,0.8163283333333333,2.871283333333333,4.343135,4.041785,4.52611,4.33775,4.155455,4.694855,2.97854,4.148785,1.8424733333333334,2.49798,1.4711633333333334,4.12563,9.526720000000001,3.16458,3.659455,5.8592,2.92425,4.2992,2.58883,2.9029316666666665,3.19673,3.116345,3.390245,3.221215,3.6255,5.23145,5.6401,3.93406,4.783395,5.09875,3.964305,2.9549,5.2213,7.718975,0.9071366666666667,4.091415,3.99246,4.717055,5.49985,5.02985,2.511225,8.01663,2.494803333333333,3.344085,6.1048,3.74514,4.27495,2.1444400000000003,1.8002975,2.9307200000000004,2.3081333333333336,2.1627,2.9790766666666664,4.11587,4.695715,4.17224,3.352955,4.429011666666667,3.395195,3.28178,4.06363,5.4614,2.89905,5.48462,3.964555,4.02536,3.606305,7.64863,3.792465,3.61597,4.248155,4.973815,3.18871,10.3409,1.2929483333333334,2.45143,3.80642,2.7560966666666666,2.7560966666666666,1.9154,7.776361666666667,0.8871722222222221,3.23265,0.87338,2.0368425,4.55531,5.19405,4.00144,4.366255,2.7208466666666666,3.302455,3.799915,3.85759,4.07028,2.98214,2.60143,3.98128,4.7650500000000005,3.29671,4.34345,1.642998,1.6533919999999998,2.6551066666666667,5.6465,2.271055,1.71892,2.0393825,4.246925,4.808455,2.97338,2.86728,0.5006811111111111,2.2885,7.357255,3.14051,1.5180766666666665,0.82451875,1.3691266666666666,2.0532366666666664,2.269515,1.3246416666666667,2.13849,4.2952905,3.97097,4.544195,2.4646933333333334,1.887925,6.784435,2.966525,1.8394650000000001,1.8394650000000001,1.8394650000000001,6.4933700000000005,2.21107,3.48282,2.713255,0.460312,1.094022,2.3914625,6.2177925,0.42944666666666664,3.49831,3.8517316666666668,5.64,3.029063333333333,0.42944666666666664,3.029063333333333,0.942965,1.235668,5.6529,4.10748,6.829955,4.193225,4.654105,3.801605,4.1622,5.0564,4.95462,5.9409,3.72221,3.358365,4.81304,4.59685,4.196085,4.446045,4.30162,1.3521733333333332,2.5987133333333334,1.23122875,2.1197,3.1905945833333336,1.5221445833333334,6.4999725,5.582126666666667,2.7058916666666666,4.37244,2.97048,4.84021,2.952445,4.163545,4.896665,9.4066375,5.3621,4.53831,2.3387225,2.650775,2.14188,0.52513875,2.221779333333333,5.88815,5.26235,4.988585,4.466665,0.5258953333333333,2.0553625,1.38038,4.337725,0.7315130769230769,6.665179999999999,2.06176,1.219215,1.219215,4.0017320000000005,2.0321000000000002,3.0495733333333335,2.60382,4.60473,3.74662,3.74662,4.959915,5.584770000000001,2.7787166666666665,2.4857400000000003,3.249643333333333,4.666245,1.829652,2.7711900000000003,5.50405,5.21275,4.686245,4.170185,3.8952999999999998,4.402105,3.5358658333333333,3.2434733333333337,2.35319,4.20212,5.11195,3.146545,4.9183,5.5757,2.08146,2.5075366666666667,6.12255,6.86975,1.2641040000000001,2.5694,2.3579025,2.6803233333333334,2.2499225,2.569675,2.3848845,1.0610633333333332,1.9742325,2.7034,2.292195,2.691298333333333,2.691298333333333,2.9274094999999996,2.860525,2.1739824999999997,2.48386,2.34098,1.9825240000000002,1.5680013333333334,5.0901325,14.891375333333333,2.86368,3.2079733333333333,1.718772,1.718772,1.6305283333333334,1.6305283333333334,2.82258,3.6409333333333334,2.89045,1.97501,1.97501,3.7522,2.5919333333333334,1.1876966666666666,1.4066228571428572,3.0045333333333333,2.874886666666667,3.6206666666666667,2.6212400000000002,3.25668,3.228206666666667,0.654722,2.5826,3.5957493333333335,7.011673333333333,4.82207,5.12935,4.318615,3.798735,4.842295,4.599795,2.845266666666667,4.196765,1.3518383333333333,3.270716666666667,5.77855,5.4902,2.8392,1.3174283333333332,3.049515,2.36351,3.0661133333333335,1.5689683333333333,0.699975,3.068756666666667,4.537889166666666,4.82245,4.20874,4.789755,3.0153700000000003,2.0606466666666665,3.314465,2.3698,3.348466666666667,3.091396666666667,3.2736933333333336,2.6436766666666665,2.53783,3.6541,2.8465066666666665,5.11955,4.818765,5.314898333333334,5.314898333333334,3.436125,4.015655,3.890665,3.629255,2.830105,4.123215,3.32507,3.147436666666667,6.152,0.6872225,5.3205,4.849775,2.61888,4.9189525,3.127166666666667,1.8442333333333334,1.3233528571428572,2.1726199999999998,0.975392,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.5811342857142857,0.5811342857142857,1.240035,0.8003397222222222,1.6620810353535354,1.0120642857142856,1.0120642857142856,1.2527388131313133,0.4093422222222222,0.37607222222222225,1.3016825,1.4913125,2.8289299999999997,2.29769,6.529059999999999,3.1141133333333335,3.827785,3.31227,4.624964571428571,1.20509,4.584425,4.050335,4.8901,3.182165,1.48426,4.245518461538461,3.73542,4.42174,4.274065,2.992735,4.739825,4.54236,4.703875,1.21488,4.094305,4.765525,3.15912,2.42102,3.50848,2.393715,3.191605,4.660525,2.99963,5.0832,8.728774999999999,3.255025,4.833155,4.152535,4.407585,2.6774833333333334,4.21313,0.88844,4.074075,3.408445,2.07428,1.11083875,2.899395,1.1770383333333332,0.509088,3.4431,4.38722,5.109616666666667,3.7411,2.4036825,2.208585,4.871235,3.8945666666666665,4.366845,2.695575,2.2182666666666666,4.08365,3.99122,3.76675,5.1483,4.524585,3.71748,4.5871,3.1979433333333334,4.21359,2.1794195833333334,4.43219,5.22155,3.32606,4.289535,2.57421,3.702715,5.44445,4.13435,5.1426,4.561595,4.91914,2.3078866666666666,4.84848,4.997055,4.816445,2.1975975,1.13506875,4.03619,4.57802,4.238375,4.7541,1.998295,3.836395,2.24235,4.90958,4.507685,4.808785,2.3006075,4.287755,4.726125,4.26204,2.49864,4.53572,4.617915,5.15735,3.559465,2.1975975,2.39375,2.746895,5.0519,4.034135,4.235065,3.476445,4.843505,2.330625,6.97396,4.893195,4.40761,5.279472048611112,4.8775525,5.1859,3.42877375,2.895951666666667,2.895951666666667,3.930865,3.505715,4.46409,2.14606,2.9506562499999998,0.99283625,2.5770500000000003,2.9686466666666664,2.42088,3.0599333333333334,4.413005,2.83385,5.29965,2.6290366666666665,4.535855,5.203340000000001,2.29458,4.12636,2.69107,2.7381533333333334,4.028335,0.9187900000000001,5.0254,4.5329,5.949565,4.763155,5.6043,1.330207142857143,4.57376,6.54945,8.41151,3.2193666666666663,3.2175666666666665,1.941686,0.8526,3.815675,1.0337471428571428,4.36907,4.466925,5.6298,3.114795,3.49597,1.106142857142857,3.57196,3.708585,4.37489,4.1316,2.93544,2.92579,2.4136225,4.32973,4.667045,5.68475,4.56322,3.77074,0.4136211111111111,0.4136211111111111,0.4136211111111111,0.4136211111111111,5.6132,2.887055,6.2385,3.043143333333333,4.93701,4.68182,3.899405,2.11244,2.5130266666666667,1.47231,5.3375,2.81514,4.21101,3.365045,3.38707,1.693845,1.151215,4.52866,2.341865,5.83982,3.89975,5.0663,2.19084,1.5136649999999998,0.9198744444444444,3.2505,4.27269,3.64082,2.1345975,8.17624,4.754655,3.42931,2.2857600000000002,0.49752,3.313755,2.7581,2.049505,1.86174,2.89649,2.746715,2.42966,2.95317,2.86958,3.349485,4.26768,3.83369,4.18341,3.11177,5.865196666666667,0.6109546666666666,4.46716,5.92465,4.94604,4.69692,3.319376666666667,5.11305,4.373705,4.20909,5.271434999999999,5.2069,4.558895,4.555735,3.6111500000000003,4.88652,2.629655,9.01213,4.877055,4.197515,4.754485,4.90401,5.3869,3.570805,1.1107922222222222,5.959866666666667,3.44025,4.65188,1.395715,4.468545,3.707855,6.722131666666668,4.48659,3.191835,1.8465366666666665,4.413795,1.87863,0.91011,4.149015,6.1437,1.9109766666666665,2.3303533333333335,2.88025,3.245935,3.60504,3.687095,5.0295,1.7947033333333333,4.0111,3.7550075,3.339105,3.7744,3.698075,2.776005,2.683865,1.9661725,2.4356733333333334,2.6807233333333333,4.413195,0.5599758333333333,2.627806666666667,4.07874,2.88198,3.4427333333333334,4.475035,4.95148,3.85114,16.679921242424243,2.57709,4.078433333333334,1.5114319999999999,0.8871509090909092,0.8871509090909092,0.8871509090909092,0.8871509090909092,0.8871509090909092,4.6092,4.68148,4.822475,8.765865,2.3990675,2.3990675,4.574985,4.4745791666666666,1.3674025,2.1401533333333336,3.812365,2.47056,2.41192,2.17768,3.040065,3.8248153333333335,1.7774225,3.455655,0.8257785714285715,2.82082,2.8581866666666667,2.996696666666667,1.5543266666666666,3.1658933333333334,2.2325466666666665,0.9384025,2.76029,2.6792466666666663,1.228488888888889,2.45208,2.6912299999999996,2.16572,4.407426666666667,1.7958033333333334,3.040596666666667,2.0713575,2.6086233333333335,1.1488222222222222,2.76256,4.65741,3.5779666666666667,1.030575,2.93167,1.3598675,2.52282,2.4501733333333333,4.751128333333333,3.0088833333333334,2.3943033333333332,4.770736,2.6408566666666666,2.238465,2.9071433333333334,2.4505399999999997,1.5459566666666669,2.79151,3.2052899999999998,2.9788833333333335,2.4842299999999997,3.2100066666666667,2.6975599999999997,2.47733,3.680097,3.680097,2.9873100000000004,1.9799566666666666,1.8598299999999999,2.503693333333333,5.502706666666667,3.0205933333333337,1.9981066666666667,1.762985,3.049986666666667,4.463725,2.57603,1.08222,2.7896566666666667,1.5363766666666667,2.9166566666666665,2.14433,2.5027666666666666,2.1194,3.03527,1.36686,1.6311366666666667,1.3833966666666668,4.194111666666666,2.5698633333333336,3.73435,1.0623233333333333,4.11098,2.0545266666666664,2.081395,1.72479,1.6966833333333333,3.257516666666667,23.41759096969697,7.268533333333334,2.64204,3.451721666666667,3.0053733333333335,10.071941333333333,3.06235,0.9860075,2.4531533333333333,2.4304633333333334,2.081113333333333,3.0210633333333337,2.5451566666666667,2.55712,0.961059,3.2913333333333337,2.6922266666666665,2.9776399999999996,2.5518633333333334,2.72862,2.1823533333333334,2.13264,2.8223299999999996,2.5989733333333334,2.0955075,1.576556,5.255878333333333,4.60875,2.243855,2.9516,2.2052066666666668,2.4686333333333335,8.161216666666666,1.9268766666666668,5.11325,2.257215,1.8717725,7.66774,2.938086666666667,2.6928866666666664,2.511675,1.82148,1.4216084615384617,3.1564300000000003,2.8366733333333336,4.043595,1.559205,3.7096,1.4610675,1.4610675,4.32409,3.704605,3.4769342857142855,3.4769342857142855,5.655856666666667,3.497185,0.46585099999999996,11.700832356532358,1.2762733333333334,0.9278371428571429,3.7376991666666664,1.4243985470085472,1.9214875,6.14325,3.780995,0.7617790909090908,2.1665633333333334,5.046948666666666,2.4382966666666666,3.947975,1.3417557142857142,5.5172,5.05735,4.79957,3.3176365,1.9090219999999998,2.3922933333333334,2.56307,2.42623,2.24494,5.06036,4.490325,4.1881,1.89813,4.72038,4.32607,3.397066666666667,2.1431875,5.1022,2.51887,8.79731,6.4474375,1.889715,2.39507,1.696638,4.5517666666666665,4.5517666666666665,3.028723333333333,2.8681300000000003,2.865915833333333,4.939525,9.52915,4.219365,2.51755,5.32535,4.098625,5.2246,2.0352799999999998,0.89063,1.3368183333333334,4.501235,4.751995,3.6600333333333332,2.8251066666666667,3.7592,2.23251,3.874175,4.444345,3.330835,5.34235,3.1514366666666667,3.6771933333333338,3.32448,3.2878333333333334,3.339933333333333,6.1997,3.00685,5.3929,4.847405,3.134075,3.36805,3.36805,5.71725,11.931146666666667,3.573233333333333,6.29124,7.1015355555555555,3.636525,2.4566866666666667,3.84129,1.3437299999999999,3.58443,2.4646325,2.9795866666666666,2.9768066666666666,3.4256333333333333,1.9462499999999998,2.37201,2.7079400000000002,2.5433066666666666,2.9730366666666668,3.1022200000000004,4.03262,2.624476666666667,2.9012666666666664,3.918345,2.854816666666667,2.5893433333333333,1.17948375,2.08877,2.84372,2.294846666666667,2.5259766666666668,2.4970933333333334,3.5780333333333334,2.458556666666667,2.3597033333333335,2.7545933333333337,3.1215200000000003,2.69267,2.8846366666666667,2.5533333333333332,3.166983333333333,2.8567,3.3427879999999996,2.6542666666666666,2.4465333333333334,2.423696666666667,2.67308,2.6394533333333334,3.5185,3.31324,3.16101,1.9618475,1.9618475,0.659695,1.502322,4.17047,3.248915,2.681243333333333,1.9462499999999998,3.149923333333333,1.2556357142857144,2.763253333333333,0.5661546666666666,3.3699999999999997,3.1103666666666663,3.12903,2.9650499999999997,2.667316666666667,2.4457833333333334,2.93308,2.880103333333333,3.341666666666667,4.696016666666667,1.5083199999999999,2.668946666666667,2.43622,1.6774333333333333,2.1987166666666664,2.9540333333333333,2.7295866666666666,1.6871559999999999,2.5376433333333335,2.61473,2.61324,2.69026,2.811866666666667,2.916873333333333,3.261426666666667,1.3499775,2.872973333333333,2.4293333333333336,3.683533333333333,3.717866666666667,1.8583375,2.0394733333333335,3.22931,2.5892033333333333,3.470666666666667,2.6903333333333332,2.7448599999999996,5.1326350000000005,3.2621333333333333,1.7871866666666667,1.52477,3.3593333333333333,6.427836666666666,3.18346,3.5292666666666666,2.8050800000000002,3.0172600000000003,4.686317333333334,1.6322240000000001,1.1283555555555556,2.394013333333333,1.6789079166666665,4.55333,2.7771833333333333,3.0775,3.11106,3.23268,2.2834499999999998,3.19354,2.531075,1.624008,2.85516,3.564915,3.6319099999999995,3.306755,3.72907,1.65593,2.78608,3.421295,3.3393,2.3487633333333333,3.606666666666667,4.011,3.9003,1.3431475,5.544798,3.31778375,1.4814483333333335,3.33084,3.491995,2.96036,3.60029,1.8326360000000002,1.8326360000000002,3.2012433333333337,2.8889266666666664,2.846845,5.15905,4.296245,4.395066666666667,1.57024,2.8816366666666666,2.530463333333333,4.1860625,3.1447266666666667,4.756856666666667,2.5326366666666664,2.4234966666666664,2.6796100000000003,3.54149,3.634565,1.6177540000000001,3.05212,2.98318,2.3325,4.54141,1.332895,2.953845,4.25459,2.69733,3.49687,3.983175,1.666265,1.5251400000000002,2.3877925,1.0770250000000001,2.046486428571429,1.931375,0.45321,4.15609,2.74136,4.78223,4.22436,2.8765,4.644570833333333,3.350766666666667,3.164846666666667,3.4878,2.5007633333333334,3.2332366666666665,2.7799566666666666,3.111216666666667,2.2809666666666666,0.6720915384615385,2.3156,0.6414921428571428,1.91411,2.5082666666666666,3.23936,3.0115766666666666,1.4926466666666667,1.3736175,3.841565,4.543205,3.344705,3.651605,3.12886,1.47412,4.012225,6.722487777777777,3.53636,5.5153925,1.561105,3.928875,1.91028,4.390725,3.81898,1.817615,4.213015,3.23486,3.84236,4.189985,2.1213725,3.80793,6.2194449999999994,4.942965,3.658365,3.07416,1.6715175,2.0409625,3.919715,3.282485,3.09853,3.750425,3.58422,3.61529,1.5975625,3.589095,3.444245,1.77154,4.1622275,1.0418166666666666,3.248125,1.6557925,4.0958,4.677076666666666,3.57951,3.1072100000000002,3.72099,3.399735,1.947795,2.2809325,3.8463666666666665,2.1803,5.61532,4.06904,4.43132,2.75519,2.84013,4.4926,4.547695,2.344468,2.344468,6.087289666666667,3.830463,2.624265,2.854585,2.1383266666666665,2.92983,3.340595,3.7512925,2.7072380000000003,3.29578,1.048024,3.90114,2.981615,4.082895,2.65224,1.50734,1.546895,3.140615,5.908246999999999,5.9409975,3.900035,1.55417,4.33798,3.796155,0.8036466666666667,2.803865,1.421304,5.3523125,1.3975083333333334,3.855505,1.88024,1.4926466666666667,2.92282,3.103535,4.43471,7.017175,4.03674,4.844534166666667,2.2844,2.65854,4.03798,3.87485,4.308605,4.3609,0.982635,1.60911825,1.03452125,2.55538,2.37518,4.883115,1.03452125,4.41402,2.353905,1.620205,1.620205,1.77154,4.026515,4.25563,3.869285,1.549594,1.549594,0.9571583333333334,2.95162,2.0945975,6.0691775,4.298675,3.81063,2.963563333333333,1.0225257142857143,3.446655,2.77928,4.17179,3.61682,3.951285,3.951285,3.18569,4.05422,1.948655,2.821675,0.9824777777777778,2.156423333333333,3.513655,2.54935,3.4132975,3.4132975,2.780615,4.646815,4.54673,3.055375,3.51811,3.96127,2.5606566666666666,4.350209166666667,2.91077,3.996915,7.80984,5.08835,2.69197,3.22366,3.132325,4.59865,3.0700700000000003,7.74683,4.802161,4.58922,3.51195,3.69385,3.78167,4.467755,4.76147,2.665485,4.41918,6.349976666666667,2.718005,2.1590208888888887,3.205745,3.269505,3.575315,4.917805,2.281476666666667,2.292316666666667,2.845845,3.03388,2.840786666666667,7.411357333333333,1.5511325,4.9725616666666665,4.9725616666666665,3.35971,3.8412283333333335,3.171035,2.536993333333333,5.05505,4.442456,2.248186,4.000315,3.934305,3.488360833333333,2.92876,2.766255,6.1998033333333336,3.45451,5.2886,3.3339,4.767865,4.045955,4.015835,2.8889266666666664,2.161983333333333,3.165275,3.888775,2.97768,3.36152,2.6293,6.315343333333333,2.59271,1.8540725,3.2220158333333337,2.3172633333333335,3.884355,2.841735,0.8036466666666667,3.599095,4.08047,3.90582,5.8875399999999996,3.08826,3.175105,2.9935833333333335,2.9935833333333335,3.91856,4.213085,3.761615,2.10757,5.7602075,2.176905,4.60613,3.73876,8.11195,2.7819800000000003,1.2588266666666665,3.16971,4.591365,0.61382,4.03315,3.3908,3.054015,3.13518,4.26495,2.09469,2.49765,9.129484999999999,3.40678,3.102665,1.3975083333333334,3.810275,2.680915,2.37585875,4.322915,5.428445,1.615635,1.1772883333333333,1.0422200000000001,4.233935,4.080035,3.60694,3.421285,3.421285,1.5975625,2.21633,3.0982652777777777,0.8718777777777778,3.0226,1.0143425,1.65593,3.528845,3.47971,2.989455,2.71634,2.4481100000000002,4.645655,3.893185,3.37596,3.1459,2.63186,4.237935,6.658284999999999,3.90557,0.88007125,2.5996224999999997,8.44243,4.462325,4.129435,1.04955,4.849983333333333,1.4183283333333332,3.6192275,3.6192275,3.968265,8.569485,0.8310322222222222,4.637795,4.448295,2.5322533333333332,4.25885,3.85901,2.15054,10.221018333333333,1.8188975,2.393796666666667,3.28016,1.7560033333333334,4.170600833333333,2.895495,3.384855,3.452035333333333,2.889785,3.0881,1.12076,7.04654,4.00745,3.88372,3.93741,1.948495,3.1072100000000002,3.9273966666666666,3.54344,0.6293807692307692,3.869145,4.01895,4.75309,2.12611,1.444332,4.16775,4.073065,8.92274,0.729846923076923,0.7626275,0.7626275,1.8719633333333334,1.3727966666666667,1.453158,1.9435966666666669,4.62126,1.2238633333333333,0.8559985714285715,4.023705,3.61981,1.3317075,3.188735,4.52439,3.30699,0.686356,2.12875,9.509055,3.41085,3.410415,2.575985,1.82374,2.4812866666666666,2.64139,4.370305,4.315815,3.74151,0.9159271428571428,1.378614,0.916272,4.3354275,4.37061,4.09064,0.8718777777777778,1.7208780000000001,3.73677,2.2201621428571428,4.708958333333333,1.016445,4.795705,0.805205,0.805205,0.805205,10.079225000000001,4.071145,1.0143425,3.820345,4.584045,2.62918,3.26063,4.501049166666666,2.73845,1.8902377777777777,2.2867433333333334,0.686356,1.4900026666666668,0.5503444444444444,0.85188,1.4792866666666666,4.047505,3.657245,2.024135,7.508023333333334,4.9183875,0.5991088888888889,6.1356,5.13921,3.462215,4.50394,7.794205333333333,3.690668988095238,4.9183875,4.419005333333333,2.5054233333333333,4.080135,3.68791,7.21629,3.59102,0.49752,1.559912,4.07497,1.77216,1.1772883333333333,4.033245,2.34884,1.73063,3.365545,1.718928,4.374005,4.322385,4.17773,4.738165,5.87891,2.7534,3.763405,1.421304,2.3743375,3.279045,3.29454,2.248186,4.029775,2.46214,4.839665,2.855205,2.434325,3.3512008333333334,1.70383,3.52967,0.8718777777777778,2.144642,1.0422200000000001,2.165665,3.498215,1.5511325,1.4792866666666666,1.979395,3.455965,7.78451,0.9159271428571428,1.04955,1.409972,3.55989,3.813155,1.409972,3.900465,2.3743375,0.61382,0.8718777777777778,1.8719633333333334,1.421304,0.45321,1.6463640000000002,4.22076,2.5322533333333332,1.41927,3.00848,1.3431475,1.8188975,2.5656233333333334,2.2867433333333334,4.228115,2.5656233333333334,0.8036466666666667,2.993001,2.14278,0.1045084090909091,0.1045084090909091,0.1045084090909091,0.1045084090909091,0.1045084090909091,3.22349,2.7591933333333336,2.7291399999999997,2.9700699999999998,4.75087,4.236335,1.72479,3.62851,3.645165,2.245455,4.94044875,2.67845,2.4923,2.3678,2.873845,4.588415,8.252923333333333,2.262415,1.9215066666666667,3.0984614285714285,1.0725714285714285,1.3982066666666666,2.3593100000000002,1.9540966666666666,1.4814675,2.7537066666666665,2.1421466666666666,2.65363,2.58854,2.5569566666666668,3.859415,3.40738,2.5646999999999998,1.374606,3.62019,3.700195,1.5029700000000001,1.307204,1.307204,1.307204,3.525835,2.6791633333333333,1.0100833333333334,2.1212166666666668,1.3566314285714287,4.3102,1.5835266666666667,6.354311666666667,3.25793,2.517506666666667,3.123988,3.123988,5.240773333333333,2.96235,4.507285,4.670965,2.1814925,3.1029033333333333 -GSM1946775,1.0,1.895955,1.895955,1.4869700000000001,5.1447,3.11069,2.587787894736842,1.5138966666666667,8.894115490196079,4.88498,3.0779099999999997,2.20178,2.58817,4.016545,4.714675,2.04758,1.546438,5.12255,2.3203033333333334,2.383095,5.2318,5.338146666666667,4.200475,2.681665,1.799718,3.964095,5.00955,4.031225,0.7285925,1.7126088888888886,2.0992255555555555,2.2057575,2.4134575,1.3157128571428571,0.7793658333333333,3.3087753571428573,1.468765,1.803405,1.390725,2.10998,1.4397175,1.2395,1.166884,1.553566,0.858596,0.935052,0.763844,1.385937142857143,1.6354399999999998,1.847062,1.536646,2.43796,1.795334,17.69195675,0.36508666666666667,0.8103339999999999,1.211386,2.013,1.724122,2.26446,1.0276642857142857,1.0276642857142857,1.0276642857142857,1.1227,1.084946,4.6849025,1.2855625,2.1036675,2.04866,2.7046,1.0454599999999998,2.539175,2.5151,2.039555,1.8212725,1.7975075,1.5202275,1.6515825,2.5112166666666664,4.74171,4.898535,4.899255,1.43037,4.44931,4.886511666666666,4.07217,4.18059,1.0809225,7.1647,0.5928975,0.5928975,2.21537,1.2106714285714286,16.77565,4.77494,5.0546,4.80192,4.76983,4.217175,5.0283,0.5608833333333334,2.4463579166666665,1.9893525,2.4259575,5.00905,4.144415,1.279275,2.9408966666666667,2.49863,2.809946666666667,3.2487733333333337,3.284045,5.1663,3.1481795,4.60083,3.1711566666666666,0.7708263636363636,1.503832,2.1643,4.3383,3.470745,0.573055625,4.12249,4.00321,0.9764525,4.08822,1.7859881818181815,2.19813,2.3137225,1.98084,3.661795,5.22425,3.228765,2.7885500000000003,3.4619,2.9632666666666663,3.872215,2.86832,5.411,3.43026,4.467445,3.65551,2.39432,3.612375,2.42839,6.979556666666666,3.672435,2.73332,3.13316,3.06843,4.67455,0.7457522222222221,9.095731666666666,3.732255,2.3027533333333334,1.6959616666666666,3.5348666666666664,2.293445,4.32905,5.479,2.136985,4.861511666666667,2.72375,5.0527,2.136985,2.3720266666666667,4.547635,5.0996875,4.819415,7.890038333333333,3.095195,4.261595,2.900885,5.6025,4.730395,1.6841666666666668,7.78554,4.02901,3.880645,3.72562,3.546305,3.488595,2.26623,6.05194,2.24156,3.877435,4.086835,4.9074,4.76058,4.058675,1.3415616666666665,2.73314,2.922015,1.949925,1.949925,5.906933,3.07768,1.8374266666666665,5.2791,4.08152,2.929685,1.4190616666666667,0.9915855555555555,6.83545,2.74953,6.71425,4.2303,4.95369,3.57367,2.80269,3.74,3.54395,3.700205,4.434445,5.6065,2.721365,3.51816,8.830006666666666,4.328535,3.3816333333333333,3.228353333333333,2.9814399999999996,3.8580666666666663,4.705135833333333,1.9513925,2.85436,2.4163900000000003,1.7904399999999998,1.6355533333333332,2.51606,1.829855,2.304705,3.0135166666666664,2.938633333333333,2.4674366666666665,2.9266799999999997,4.886511666666666,3.549465,3.678815,3.73651,4.632445,1.4910916666666667,2.037345,2.8481528571428574,2.21178,2.5440666666666667,2.9925566666666668,3.236416666666667,2.0274,1.2904933333333333,2.8207566666666666,0.649638,1.7079333333333333,0.5235477777777777,0.5235477777777777,1.76417,3.7224,2.59805,1.1602466666666666,1.4786566666666667,0.3337776923076923,2.706213333333333,0.649638,1.2614699999999999,0.2445810810810811,1.4193466666666668,2.013665,3.3786,2.87527,2.6236099999999998,2.5731266666666666,2.310166666666667,2.40292,2.481593333333333,2.35671,2.21502,2.7899066666666665,1.85552,2.650575,4.24871,0.7187,1.83749,2.46626,1.9466666666666665,3.486076666666667,1.454866,2.4908333333333332,2.4664433333333333,4.096256666666667,2.1307066666666667,6.504307619047619,1.5980142857142856,2.6519166666666667,2.1227625,2.0338025,3.6959,1.9188375,1.90194,4.801475,2.69806,2.233765,3.759175,4.58402,4.34191,4.008885,2.275605,3.3636,5.621841333333333,3.93709,4.333135,4.020415,4.34313,4.097105,4.4966,3.496765,0.853825,4.72544,1.334655,5.13455,3.618305,6.003235,4.12809,4.140945,0.99131875,2.098725,3.4279,3.968225,0.8751085714285713,1.312866752136752,2.026497857142857,1.7907842857142855,4.8908325,5.655826,1.9637375,3.64581,5.47555,0.32454500000000003,3.37766,2.224485,0.96528625,3.22532,2.0104,13.50374,1.13217375,2.0891575,2.6909233333333336,2.339075,2.060493947368421,5.107838947368421,0.340288947368421,1.5906799999999999,3.5278666666666667,0.999795,3.813966666666667,1.1358557142857142,5.48675,3.90938,1.9375933333333333,5.7253,5.3701,2.12162,1.2237314285714285,4.274651666666667,5.0693,4.12742,0.9480181818181819,8.60951,2.97781,4.721085,2.584913333333333,2.554386666666667,5.0703,2.35257,3.14355,2.26667,2.50805,3.223655,2.986273333333333,0.327173125,3.85291,3.45186,3.91339,3.773075,4.415695,6.14433,4.03031,1.6056925,5.52315,4.56705,3.90972,5.02225,1.08627,3.0036066666666668,3.4961333333333333,2.7231566666666667,15.303135000000001,2.96094,3.852605,4.16068,4.587565,2.437365,5.2305525,1.9063525,0.78574,2.4624625,3.09483,4.376865,3.70202,6.480406666666666,2.922946666666667,2.060875,2.092935,3.5987333333333336,4.17668,2.41991,0.3773588244047619,2.2856695652173915,1.91374,1.17965375,0.45938360701345754,0.5414083896221532,0.3773588244047619,0.3773588244047619,0.3773588244047619,1.09457,1.7483025,0.9983825,1.37488,4.74355,0.2297555882352941,11.70087198051948,3.04902,2.83723,4.580585,4.103845,4.14352,2.15351,5.3827,4.19596,4.905185,4.345825,0.7173892307692308,3.21175,4.196315384615385,0.5250185714285714,3.45204,2.8729099999999996,4.848415,0.7717518181818181,1.66241,4.270545,3.68893,1.981295,1.71725,1.5770933333333332,3.3183633333333336,3.838455,3.07826,2.953953333333333,5.3821,5.5269,4.86875,3.0949733333333334,3.51387,5.8367483333333325,3.289073333333333,5.83575,0.4324352380952381,3.1247066666666665,4.629449999999999,1.9018866666666667,2.512655,2.965505,5.149253333333333,0.6785925,2.1709025,4.409125,4.055065,1.0087185714285714,4.1987,3.092495,5.2107,3.3698,4.763535,3.38542,4.19216,1.2535666666666667,3.30427,2.59729,4.864605,4.020085,4.919305,5.2908,4.357185,2.611115,4.99855,2.519746666666667,3.16745,3.3542666666666663,2.843916666666667,2.6984266666666668,2.34113,1.809056,1.3955766666666667,1.9197300000000002,0.8047485714285714,1.7218866666666666,2.09001,2.1613233333333333,3.24771,3.286936666666667,3.117103333333333,0.9430133333333335,5.1103,3.2477699999999996,5.463617916666667,2.627474583333333,2.982763333333333,3.6636333333333333,1.9415166666666668,1.9415166666666668,3.0649506493506493,3.0649506493506493,4.304712792207792,0.48025142857142855,1.7468599999999999,1.9811433333333335,3.5510333333333333,2.1348885714285717,2.1348885714285717,2.1348885714285717,7.496575773809524,4.413845714285715,0.9494181818181818,3.3827,5.017155833333334,2.20998,4.513355,3.09659,2.21232,5.57025,3.179046666666667,3.149153333333333,1.4804,1.8368033333333333,2.819456666666667,2.8659766666666666,2.3769,5.70035,4.0967,3.9235666666666664,4.137301666666667,1.3797616666666668,2.7978966666666665,2.8753433333333334,0.7490077777777777,2.1161,4.1693533333333335,7.778055,1.439555,2.803075,4.554405,2.0799,2.30532,2.30532,1.08717625,4.871615,7.220675,3.94545,6.87058,4.644085,1.94995,4.095185,3.454935,5.11385,4.4064749999999995,0.3483315789473684,2.78138,2.904035,3.97574,4.247985,1.859302,2.0215375,2.6401,4.492515,3.86749,3.206355,2.378935,1.821892,6.74596,4.61073,4.194365,3.32363,3.881615,4.653595,4.86855,3.671245,3.51259,1.8950475,1.1394771428571429,2.77726,3.80689,4.18215,5.4076375,5.8800775000000005,2.0313125,1.7551500000000002,2.55592,2.6645066666666666,2.834906666666667,0.6177942857142857,1.96852,3.43334,1.11036625,4.7383,3.121485,6.1398175,1.1537277272727273,1.1537277272727273,4.02848,3.797855,3.799235,5.17615,2.6729033333333336,2.19982,4.01974,3.75795,2.06953,3.122536666666667,2.81491,4.0815,3.5761025,3.61409,4.929475,1.0384955555555555,2.528665,4.498135,4.322185,3.18365,2.5734366666666664,2.004215,0.730828888888889,0.730828888888889,0.730828888888889,0.730828888888889,1.550638888888889,3.9603025,3.9603025,1.6074366666666666,7.569393333333334,3.902125,4.527225,3.4804,2.71175,5.0614,4.033345,4.89284,5.38035,1.6667325,4.125815,4.23158,2.85975,3.78982,3.29077,2.36886,4.37395,1.7952,3.83789,1.71371,3.565085,3.02895,1.6536775,1.1368133333333332,2.889995,4.747005,1.6028099999999998,0.8374666666666667,4.771845,1.2450975,5.062205333333333,4.71299,1.3079528571428571,3.600735,0.7642422222222223,2.68407,3.0060066666666665,2.6386499999999997,2.6355,4.52824,3.137320833333333,4.46508,5.08555,4.739675,4.317885,2.0573025,1.3007185714285714,4.252945,5.11765,1.4092075,1.4092075,3.96504,0.25001066666666666,2.0381966666666664,0.25001066666666666,0.25001066666666666,0.25001066666666666,0.25001066666666666,3.559375,2.7209733333333332,3.340855,3.48831,3.11821,4.56958,2.558523333333333,0.9653925,0.9653925,0.9565566666666667,0.9565566666666667,3.564965,1.76945,3.60032,2.0618235714285715,2.0618235714285715,4.48245,0.6925692857142858,2.008095,7.725523333333333,5.341,3.145945,3.917775,1.04086375,2.15809,2.046725,5.2654,5.22795,4.396055,3.694325,1.2354442857142858,2.93905,1.892505,7.32605,1.710695,4.196075,4.933025,2.639195,3.818275,5.95493,7.8201350000000005,4.297525,5.1967,5.32905,2.143015,3.196195,2.233095,2.20283,1.95268,3.700185,4.278095,6.2346900000000005,6.83712,4.34966,1.23129,1.75915,4.5235,4.332535,2.18222,5.44205,4.23044,4.480433333333333,1.7738233333333333,3.5782666666666665,1.48979,6.344393333333333,2.59569,2.3555599999999997,2.06194,2.57696,2.3918466666666665,3.7388666666666666,3.7032333333333334,3.1872566666666664,3.3705,1.410472,4.386575,3.107835,3.034015,0.4100675,2.851795,4.252275,2.3439425,5.4381,4.842445,4.62921,6.3982969999999995,5.14145,2.2459266666666666,4.098415,4.93046,1.6278066666666666,5.4554,6.0528,4.975115,4.566235,3.097835,5.6301,5.11065,4.489315,5.580556666666666,7.9259,3.891585,1.2948116666666667,1.6090200000000001,2.682855,1.831382,4.87088,4.21461,5.439565,2.9911133333333333,2.637166666666667,2.65841,2.6206766666666668,2.54196,1.0996433333333333,0.5225817647058824,3.863695,3.842565,3.8000666666666665,3.96834,2.869365,3.298016666666667,5.378103333333334,2.8777399999999997,0.5984470588235294,3.69544,5.81775,1.880465,1.6513760000000002,3.624385,3.53034,2.450293333333333,3.9225666666666665,5.32265,2.6036,2.2881466666666666,2.1312133333333336,2.4015233333333335,2.58462,4.140285,4.980950833333333,6.619398749999999,1.9777799999999999,5.161,3.6757350000000004,5.865006666666667,3.0267133333333334,2.98052,2.373665,2.1247066666666665,1.2797825,1.2797825,2.59255,2.3076833333333333,2.6690466666666666,5.37775,1.6590820000000002,2.2562,1.86103,0.58986125,3.77026,0.6199708333333334,0.89838375,3.46486,3.91874,4.17688,1.76341,4.72814,3.0700066666666666,0.8632285714285715,4.33262,3.7873004761904756,3.4215666666666666,2.630615,5.3245,0.28299689655172416,2.4412789999999998,3.042125,1.525845,3.592695,4.33694,2.206875,1.2841933333333333,3.714475,3.664995,2.7394766666666666,2.7394766666666666,3.407445,2.89254,4.409745,5.190391666666667,4.979555,1.040181111111111,2.79888,2.5871333333333335,4.539105,4.981735,4.10568,4.773155,4.273166666666667,3.7101,3.6186000000000003,3.5042333333333335,3.6366666666666667,3.1343599999999996,3.140053333333333,0.6372985714285715,2.53225,2.442,3.373865,3.16221,3.157083333333333,0.7768708333333333,2.37355,3.464111,4.65539,5.52145,4.256075,2.0196425,2.0196425,0.824128,3.51957,4.43074,3.969845,5.532475,2.94577,4.91841,0.5747390909090909,4.324385,4.14163,4.579685,3.43048,1.004512857142857,3.54865,3.9784,4.43703,3.678275,5.26675,2.634005,4.49826,1.698555,0.9642071428571429,2.77843,4.9241,3.719255,3.158365,1.536395,4.02949,2.4034025,2.603425,2.7897239999999996,3.135263333333333,4.33077,2.7229200000000002,1.79419,3.4184,1.4361789285714286,2.8313400000000004,2.678053333333333,2.19187,3.0523133333333337,2.916513333333333,2.746176666666667,3.3455333333333335,4.378125,2.7965466666666665,3.627631666666667,2.2878833333333333,1.77647,4.208548333333333,3.120086666666667,2.4610233333333333,3.627631666666667,2.534263333333333,0.7916727272727272,2.497345,1.0349833333333334,2.1513825,1.6602425,0.8695263636363637,1.7343725,2.0549275,2.6618235,2.750075,4.616985,1.82419,4.137985,2.944433333333333,1.5823639999999999,2.1426766666666666,3.2065866666666665,1.3707799999999999,3.069123333333333,2.79858,2.6708647727272727,2.0409775,1.8302479999999999,3.5147,2.6223666666666667,2.8767055555555556,3.365766666666667,2.9407866666666664,3.6038333333333337,2.45005,4.5066999999999995,3.527233333333333,3.7256,3.4326333333333334,3.5596333333333336,3.5936,2.335453333333333,8.07928,4.891185,4.710895,3.355005,2.99436,1.896725,3.988765,1.782618,4.21178,4.888635,1.583928,2.5732166666666667,1.1623816666666666,2.52208,1.6681066666666666,2.3258233333333336,4.889935,3.17677,3.51295,4.694135,0.77733375,1.528492,0.9911,4.23501,11.453965,4.006966666666666,6.54895,1.99281,5.07865,4.115105,2.5475,5.6299,0.284834705882353,0.8215914285714286,5.0099,4.86317,7.0054125,2.2218975,4.40849,4.94595,4.486915,4.390565,3.96231,4.36507,2.93591,5.732063333333333,4.97334,3.36712,2.908775,1.9687466666666669,1.8490633333333333,1.4225486458333334,2.3564866666666666,4.148545,5.05205,1.545764,8.64264,2.6202733333333335,2.645503333333333,0.9464460000000001,0.9464460000000001,7.89814875,3.383355,2.659675,2.020835,3.0605366666666662,2.09709,1.1331766666666667,3.0792566666666668,2.71914,0.5989171428571429,1.6678833333333334,3.357812,3.357812,1.1318,2.51621,2.258246666666667,3.2158566666666664,1.33494,1.7186133333333335,4.883794666666667,2.843773333333333,2.551825,1.1195325,1.1195325,4.579945,5.0378,4.62014,3.055615,3.83519,5.24321,3.088815,3.23525,3.4577333333333335,3.89955,1.1214250000000001,3.4882666666666666,2.590625,4.170305,2.16846,4.59537,3.37184,4.30663,3.53974,5.349842000000001,1.0677055555555555,2.23905,1.78851,3.559095,4.9886475,3.7359,3.852285,4.56823,4.3627,1.7574075,4.3472,3.32587,4.12334,2.33506,0.81022625,3.570645,4.828165,5.22565,1.1851133333333335,3.1227300000000002,3.13634,2.5042966666666664,1.610220980392157,1.610220980392157,1.0365933333333335,2.6661533333333334,1.1658442857142857,1.34504,4.67683,4.904835,0.5419095238095238,3.889815,3.4843333333333333,4.092965,5.388,0.4229225,9.406315,5.5482,2.92475,3.791715,4.605595,5.570742142857143,4.999795,6.3707899999999995,0.7468572727272726,2.7698433333333337,5.57865,2.2963733333333334,1.8729525,2.02944,4.682885,5.221439999999999,2.637112142857143,2.640136666666667,3.637,1.964505,5.1027,10.8941,8.835948333333334,3.8600333333333334,4.96626,3.0878091666666663,3.06826,3.854335,1.6042580000000002,2.87419,3.524725,3.37586,4.776285,4.45207,6.277696666666667,2.69623,2.963785,4.66925,4.934515,5.4559,5.532981666666666,4.09973,6.3239,3.35961,3.001065,2.80994,5.8785,3.61736,6.1925,2.0121,3.2737366666666667,3.38415,6.0501,4.263095,5.1385,1.4034140000000002,0.87424125,2.73995,0.6650526666666666,4.06837,3.49244,3.40465,2.9542,2.1145333333333336,2.833275,2.4642925,2.983746,1.840552,2.96597625,2.867225,2.230245,2.56985,3.727968,1.2551233333333334,2.8221983333333336,4.949005,3.6288666666666667,1.077955,2.7056966666666664,3.7574741666666664,3.5244820000000003,1.549875,5.3322,5.3307,2.344883333333333,2.9368366666666668,30.440549437214745,3.4219000000000004,1.69105,3.765833333333333,1.6612133333333334,2.53658,3.0068266666666665,3.4470666666666667,2.0031975,2.63655,2.3393075,3.091049,2.6173066666666664,2.3428925,1.667475,2.1768,2.782425,0.40034272727272724,1.0760225,2.758766666666667,1.522086,3.26754,1.549875,2.088153333333333,25.656385333333333,5.2918,4.164825,3.48684,2.594285,2.4701925,2.7743066666666665,2.3031875,4.66404,5.995515,5.917,1.6101400000000001,2.04538,2.4435,2.7390600000000003,3.833245,5.26765,4.78308,4.807885,0.18099106382978722,5.00045,5.175199166666667,3.77908,9.63596,1.0044975,1.0044975,3.144016666666667,3.69033,5.77995,2.123207777777778,1.0511066666666666,5.31695,1.8865975,4.747625,3.787305,3.24619,4.190975,3.971995,4.519315,3.035545,0.7159855555555557,3.133785,2.1485416666666666,4.53435,7.99958,4.48182,1.7742066666666665,1.7742066666666665,6.47204,4.99439,4.056065,5.9269,2.591736666666667,5.6007925,1.3418233333333334,1.65108,2.912736666666667,1.9958833333333335,2.961345,2.7699,3.67446,4.066715,4.519245,5.41755,2.4003225,2.074165,1.7829275,2.82255,2.1490425,1.9546025,1.9428575,5.1642166666666665,1.9082725,3.88981,2.34112,3.4019666666666666,2.9528766666666666,1.75906,1.601214285714286,0.9919370000000001,2.77651,3.6005000000000003,0.840859,4.61143,1.8870125,5.911690833333333,1.977775,1.84138,1.4592275,1.5022866666666665,5.7356372222222225,1.994518,2.88678,3.300736666666667,1.13495625,2.0177425,4.811482,3.0965900000000004,2.288656666666667,3.607533333333333,2.9062699999999997,2.9345666666666665,1.2430205357142858,0.27846750000000003,0.27846750000000003,0.27846750000000003,0.27846750000000003,0.27846750000000003,4.640395,2.7945966666666666,2.3846775,3.3952000000000004,1.2800583333333333,2.60772,3.02828,2.7037,3.490775,2.85035,2.16489,2.9427566666666665,3.4598999999999998,2.477015,1.89525,3.368015,2.8653066666666667,2.6152633333333335,5.2634,2.6547566666666667,2.4944533333333334,2.6082366666666665,10.968663333333334,4.71654,5.1874,4.848615,4.315295,2.8252733333333335,5.0948,3.67718,2.533225,5.785534999999999,4.19411,3.2629,2.3182525,4.182245,5.487235714285714,3.87197,17.827139773809524,1.2383475,5.6972,0.8406211111111112,1.21184125,2.74995,4.814765,3.895115,3.432885,1.2840716666666667,2.57965,4.446865,2.8547933333333333,4.666505,3.320511428571429,2.7094833333333335,0.6985483333333334,2.6884866666666665,4.794695,2.216185,2.62495,2.211135,19.187833333333334,1.5467819999999999,1.24713375,2.63306,0.3177411538461538,1.9416575,2.678986666666667,1.8671433333333332,2.7342933333333335,2.585975,7.778482499999999,1.9045125,2.739825,2.34905,2.2626375,1.545865,3.4278,3.26178,3.044725,3.1105699999999996,1.9203125,2.4324820833333334,3.3267458333333333,4.86721,0.46397166666666667,2.70079,2.6633633333333333,3.566175,2.2668025,3.5407355000000003,3.27518,1.5692899999999999,2.3528333333333333,2.21688,1.6782866666666667,1.8214333333333332,3.519345,3.20228,0.7239716666666666,3.1928,5.53285,4.256015,2.282484,2.282484,3.100543333333333,5.0859,3.421735,3.326455,2.32922,1.0672818181818182,3.963405,3.570565,5.48425,3.88845,2.311414,2.311414,1.56015,3.679,5.2372,3.746385,4.087755,3.3646333333333334,2.3895500000000003,4.577895,3.57239,4.16171,3.4791000000000003,2.78685,4.59223,3.4563666666666664,2.547003333333333,1.91759,3.557575,2.725375,1.5778766666666666,3.664315,4.51267,4.833785,2.4853066666666668,4.41113,4.378245,6.726549499999999,3.90994,2.2272600000000002,5.1736,3.32456,7.573985,2.854623333333333,1.3853383333333333,4.465225,2.9737466666666665,4.248955,0.6278457142857142,0.8683333333333333,3.6379,3.747575,2.238775303030303,4.558535,2.60676,2.75468,9.463038000000001,1.742668,1.399808,4.251125,2.56928,3.53608,5.50085,6.52628,3.088965,2.1900999999999997,3.1986933333333334,1.7932133333333333,3.571066666666667,8.299837175697865,0.8487230952380952,0.972795,4.95815,0.4450286666666667,1.637775,2.4970375,2.78335,2.85145,1.9069875,3.829505,2.5411,13.880244999999999,5.069345,2.499095,2.499095,4.509735,0.798925,5.473703333333333,4.261135,3.807815,6.0395183333333335,3.35805,4.92873,1.5169866666666667,2.634695,2.559295,2.398435,2.88062,2.62842,3.0724,3.456595,3.550185,3.015495,2.922675,2.706445,4.36215,4.676815,3.04175,3.398766666666667,5.0778525,4.4918,19.91338904761905,13.407251428571428,3.109833571428571,0.6851116666666667,1.5682714285714285,4.670035,3.485125,3.0187751602564106,1.86953,0.8811566666666667,0.7896658333333333,0.6072685714285715,2.103925,1.6425,5.275033333333333,3.4344,0.7081354545454546,3.173255,2.32389,2.333015,2.06284,5.86836,1.457258,4.512055,3.061205,2.982153333333333,2.157005,2.6480900000000003,2.4929566666666667,0.75353,3.03263,2.67559,3.9044706666666666,3.00255,4.815848333333333,3.54045,3.229385,1.930535,3.59204,6.5799725,2.2098875,2.4829475,2.44155,1.5828175,2.774125,2.4001725,2.5803,0.873968,1.34253,0.98150375,2.708945,3.921655,6.23355,6.10895,3.066405,2.411025,3.08785,3.5691666666666664,8.152016666666666,1.14023,0.4291875,3.359075,1.8981199999999998,1.654102,3.720707,1.334116,2.0175643333333335,4.370095,3.396329333333333,1.1925083333333333,1.7836533333333333,3.930203333333333,3.57217,4.46916,4.971625,2.5889,5.4587,4.104685,0.853676923076923,5.15715,4.36533,4.497565000000001,3.5888000000000004,2.189205,1.235054,1.0405925,3.380385,2.88744,3.091895,4.334485,2.819935,2.69586,3.12776,3.62934,5.06385,2.401395,2.517165,4.835395,6.1574,0.543995,4.421495,1.836305,3.471405,3.8371999999999997,2.0718075,3.067195,2.2918775,2.00076,2.579895,2.710379166666667,2.0387999999999997,5.79865,3.775255,1.1953,6.72376,1.0883866666666666,3.97276,1.5750666666666666,4.50627,4.364445,2.3686133333333332,3.328755,4.009955,9.34498,2.839935,3.522335,3.704755,3.537075,1.6461325,7.6899,3.838565,4.894765,1.69453,4.002665,2.991735,1.21693875,2.0558,4.012945,2.092405,4.08328,4.656345,4.3770375,4.58732,2.3955975,5.383,4.13746,2.9922233333333335,2.4360166666666667,1.764674,4.784755,6.3641,4.996575,4.52425,2.89981,2.2190825,4.57535,3.376925,1.1187927472527472,3.960185,4.6763216666666665,3.9716,2.76498,3.43895,0.46092714285714287,0.46092714285714287,5.98935,4.785485,5.8996,2.09907,3.96438,4.473815,0.815545,4.6348,5.04465,4.55484,4.364085,4.4663,1.952925,3.225895,2.25973,4.43728,0.708675,4.22839,4.46076,2.877005,2.9356266666666664,4.47991,2.31366,3.1407,59.04982514935065,3.02889,2.54042,1.574805,3.126105,3.70549,0.99063125,0.95553,2.58215,2.58215,1.269242,3.058485,2.44857,3.7713745,7.55817,2.9057033333333333,1.1473957142857143,1.5643,2.67577,3.912435,1.02576,1.82275,1.404116,2.19831,4.47191,4.400875,2.992285,23.17233314935065,4.273375,3.87394,3.126505,2.1564900000000002,3.391825,3.381675,2.425345,4.81218,1.7196339999999999,4.21739,3.3829558253968255,6.181070555555555,1.933625,2.52605,1.86899,4.084395,2.471573333333333,2.3082375,2.07352,4.629212222222222,3.55209,3.35277,4.462795,4.90839,2.641075,3.301765,2.83933,2.642945,2.945382222222222,2.243355,2.113155,3.52675,1.1085566666666666,3.695955,4.53865,2.54111,5.0618,4.81677,5.021541666666667,2.3061700000000003,2.132625,2.609505,2.693155,3.93953,3.353435,4.93002,0.6959928571428572,4.527723333333333,2.7033,3.942085,2.256005,1.841902,4.670363333333333,1.274788888888889,3.13314,4.41614,1.2623820000000001,3.481955,3.95465,4.777825,6.14067,2.071035,2.83171,2.7467133333333336,3.8831333333333333,1.9621700000000002,2.48156,2.4911833333333333,2.2970566666666667,2.2936166666666664,1.3228433333333334,1.9983775,1.9983775,1.82264,2.01191,1.7222866666666665,2.5855333333333332,3.79573,5.2953,3.280225,1.60374,4.526965,3.78674,3.396145,3.996925,1.9259625,1.706045,4.513594166666667,1.782325,4.880845,4.994855,3.46497,2.45301,3.6565624999999997,3.316075,2.895315,3.377975,0.14053673469387756,2.973473333333333,7.4978,1.48586,3.28447,3.78603,0.9985757142857142,1.3712466666666667,1.8474275,4.00989,2.90348,7.007045,3.343995,3.63612,2.79148,2.70574,4.80987,3.191965,3.924645,3.286745,2.775,5.2601,4.55599,5.03055,2.50577,1.9242275,3.418435,4.51135,2.85137,3.178755,2.157495,2.54393,3.25857,3.52929,2.37834,4.18591,4.87495,2.71937,4.375135,4.58881,3.455915,4.79413,3.227475,3.096055,7.88092,4.311345,5.9128,5.11275,4.177075,6.06709,3.942115,3.609875,1.548456,6.6701,2.398205,5.10065,4.066645,4.26331,2.9821899999999997,1.9371933333333333,2.2289533333333336,2.4411033333333334,1.02067,3.508433333333333,2.8973766666666667,3.043363333333333,2.4252233333333333,3.84387,4.49452,2.617313333333333,0.54015,4.44495,4.519535,4.777955,5.08785,3.80008,4.52255,5.1486,4.599015,1.4276333333333333,0.9334461538461538,2.6414466666666665,4.923655,5.4271,0.504814375,2.700805,2.4561566666666668,3.18709,4.36782,3.6967666666666665,2.0344975,3.89555,3.157975,4.475425,2.945075,5.83205,4.062205,7.0979125,0.5926308333333333,4.076025,0.738564,2.279365,4.039166666666667,3.4107000000000003,1.2299733333333334,2.14478,4.24439,4.26506,4.01774,1.9974466666666668,2.1406425,2.20875,4.58459,3.480265,4.100445,1.6262260000000002,1.3074277142857142,5.47165,2.3625575,7.74552,4.58914,3.54982,2.05235,1.6327925,4.20133,4.48708,1.6459400000000002,2.282275,2.648875,2.973473333333333,6.897131666666667,3.163956666666667,2.894816666666667,4.138089166666667,3.353895,1.9650699999999999,3.087085,7.6074975,4.71129,4.816535,0.5766718181818182,4.04556,4.4937,4.842671428571429,4.327205,4.03712,3.029625,2.620805,3.0859,2.882765,3.9910200000000002,1.674096,6.097220999999999,4.580395,5.08825,3.703515,3.29787,3.591869166666667,2.3629125,1.3529275,0.88037,2.70315,2.671285,1.0508383333333333,2.54678,6.31555,5.50195,3.26229,4.698755,15.577446071428572,4.19081,4.401595,4.19623,0.7018675,5.4067,4.6269,5.48615,4.73247,5.709,2.3344,3.512455,3.73162,1.507072,2.940645,5.23285,2.890803333333333,1.628416,4.428025,5.0798,4.175105,5.6084,4.81715,5.8234,4.6311,2.9234466666666665,4.59072,4.20435,2.56668,2.9388900000000002,3.021263333333333,1.82799125,5.2766,2.7647925,2.0983466666666666,4.039455,2.607205,4.43061,4.208548333333333,2.21907,2.74348,4.446185,3.525815,4.48426,4.32622,4.205385,5.271147,3.183435,5.33555,2.7024800000000004,3.739095,5.0129,1.4903359999999999,4.65087,1.0529616666666668,4.37628,3.88263,1.3071300000000001,3.728705,2.13693,7.024285000000001,2.8481960476190475,2.8481960476190475,2.8481960476190475,0.638545,1.4474583333333333,1.791595,3.60481,6.35543,3.5519866666666666,1.88658,2.181625,1.8724466666666668,3.63172,2.386805,0.4350169230769231,1.621095,2.2192475,3.833325,1.78994,2.957125,2.30212,2.0694625,3.74946,2.783673333333333,4.872875,3.632375,1.838855,6.34879,1.965785,4.18248,4.14105,6.321031666666666,1.4867533333333334,3.472795,3.79828,3.750825,4.37446,2.759115,2.17258,3.714775,6.3551085,2.021105,3.51727,3.01197,2.0322525,4.91366,5.0994,2.6924466666666667,2.155135,3.9000725,6.009525,5.69575,3.04023,2.319805,2.62723,2.83571,2.98567,3.73733,1.3440225,2.734125,4.56501,0.8127525,4.469715,3.896375,3.67653,3.884765,2.366745,4.170945,1.98408,4.464035,7.648098333333333,4.72887,3.373815,4.255105,0.9781125,4.56254,2.37445,4.30825,5.6972024999999995,4.495095,4.21394,11.557345,4.877025,3.52495,1.4389375,0.71204,2.81585,3.69897,3.453615,3.543205,2.1182933333333334,2.604616666666667,2.099136666666667,1.1174733333333333,1.1174733333333333,1.9021433333333333,2.3365633333333333,3.2258166666666668,3.3914666666666666,3.5973333333333333,2.6740733333333337,3.20255,2.89061,1.4536933333333335,2.533183333333333,2.1112333333333333,1.7733999999999999,1.4049025,2.37511,0.8050716666666666,10.086987916666667,0.8050716666666666,3.0561866666666666,1.9704549999999998,1.9857933333333333,4.514625,4.224315,4.907705,4.68334,2.29126,2.7654333333333336,3.23017,2.7359833333333334,3.6489999999999996,3.5796333333333332,2.8169766666666667,3.5746333333333333,1.5842166666666666,5.153,6.404516571428571,3.9242000000000004,3.3846666666666665,2.9922299999999997,2.6234733333333335,3.013223333333333,1.3157128571428571,3.3024066666666667,3.1211266666666666,4.08941,5.89435,4.591635,2.726103333333333,3.3805333333333336,3.4575333333333336,4.327573333333333,4.399515,2.5079966666666667,4.069905,3.4134666666666664,3.3229666666666664,4.68137,2.928316666666667,4.51077,6.571149999999999,2.6283433333333335,2.49046,1.9148566666666669,1.3493233333333334,5.140616666666666,3.7694266666666665,2.8895733333333333,2.02745,2.127003333333333,4.67461,3.88141,3.67277,3.1978500000000003,3.4317333333333333,3.6489999999999996,3.7608333333333337,4.020566666666666,3.6260999999999997,0.58972625,4.062133333333334,2.51015,2.4738666666666664,3.64745,4.351415,4.90751,5.71755,2.66719,4.455023333333333,1.2124083333333333,2.51442,2.51442,3.922595,3.930495,3.790795,3.858805,1.76648,3.700765,3.83313,1.1818142857142857,4.127925833333333,3.432567238095238,2.0562586666666665,0.345282,3.8188,3.392055,7.310639999999999,3.28122,4.69471,3.24692,3.807815,3.740235,1.93018125,2.913555,5.0761,3.411675,3.273946666666667,3.2263466666666667,5.644415,2.11688,0.99393125,1.9694099999999999,1.6519933333333334,4.87067,2.329213333333333,2.3384733333333334,1.9344375,4.77587,4.04152,4.792845,0.594703,4.661335,4.92229,2.9420800000000003,2.838646666666667,3.14233,3.4335944444444446,4.237793333333333,1.6851133333333335,0.6738315789473684,0.7947214285714285,3.6826333333333334,4.70608,6.157778333333333,5.0899,5.25375,4.84645,1.4797857142857143,3.8371999999999997,2.1637133333333334,1.02445375,5.35965,5.61365,3.53021,4.795925,4.026635,6.9866383333333335,4.235533333333334,7.389383333333333,3.7478,2.8411483333333334,6.2663,10.25856201923077,2.9202666666666666,0.746883,3.769655,4.12403,2.161845,6.66915,4.588955,4.20422,3.01571,3.01571,3.73469,3.782105,4.151305,5.179,4.180370619047619,2.5328545714285715,1.09262,5.86565,2.588695,5.7518425,4.12967,5.43795,3.368715,2.1961875,4.647365,4.68039,3.5005666666666664,3.779,4.519905,28.05616857142857,2.336835,2.4924475,2.2338075,1.4729633333333334,2.5898066666666666,1.1909185714285715,3.0650366666666664,2.920006666666667,3.4364666666666666,3.32054,0.7478376923076924,3.3726333333333334,4.933095,3.63659,3.382733333333333,4.26448,6.5125225,4.970405,4.66824,4.530115,4.434678333333333,4.813645,3.3365666666666667,1.7303625,0.9290833333333333,1.4287033333333332,3.8403333333333336,1.5121033333333334,3.6966,2.3740733333333335,2.1972466666666666,1.8975966666666666,2.56839,2.066145,1.8383933333333333,2.83093,3.9966,3.5914,4.208915,1.6404260000000002,3.823033333333333,2.72996,4.04523,2.46786,2.42138,2.98018,1.44181,5.0317,6.4324449999999995,2.870675,3.55724,3.93266,2.3135875,3.141799166666667,3.704166666666667,4.729155,4.860805,0.3193018404118404,0.3193018404118404,5.23525,5.29,4.23364,3.0171,5.208,4.635285,0.6816169230769231,4.349985,5.1257,3.756245,6.5631,4.715865,7.64789,13.461941666666666,14.035618461538462,4.44048,4.1713,2.6954700000000003,0.6886284615384616,2.7686333333333333,5.48495,1.3336116666666669,4.46496,3.536766666666667,3.1663266666666665,2.1750133333333332,1.8121166666666666,5.000245,3.557065,8.645968095238095,5.39745,4.020775,7.203448787878788,3.01141,3.0643333333333334,1.43828,4.749584166666667,2.0097375,2.4746466666666667,2.6715933333333335,0.3041471875,2.98509,3.50722,4.6246366666666665,0.8792960000000001,1.4535333333333333,3.89488,0.576752,0.576752,3.1974370833333334,3.0756866666666665,3.7041,3.923685,4.700885,5.7803,3.612035,3.97877,2.81827,3.18913,2.59936,0.5689041666666667,2.5465233333333335,2.711765,2.85476,5.5232125,2.809855,4.6960625,1.5710425,2.82076,2.611145,2.292315,2.639425,2.9177,1.67944,2.38367,2.115565,3.735465,2.360975,3.807795,2.774005,3.9210149999999997,3.9210149999999997,2.54428,2.54428,8.982555166666666,2.7564233333333337,0.782387,2.4966666666666666,2.49382,2.418413333333333,3.807795,1.9594840000000002,1.903272,1.538454,3.527215,4.56079,1.6587825,4.537485,4.03981,6.62385,6.994951666666666,2.4092866666666666,4.675525,8.19665,5.0273,4.177165,2.6763966666666668,5.21545,3.7530963636363635,4.428355,5.53665,9.103808,3.74508375,3.900085,1.270215,4.39017,4.518866,4.907285,3.79612,4.429805,2.681655,2.7293633333333336,6.604265,3.535975,1.346778,6.82726,3.840715,3.1013266666666666,4.830065,3.1013266666666666,3.56344,4.03484,5.63045,1.0731614285714286,3.8576377777777777,4.68309,4.074265,1.3836666666666666,2.036775,4.923465,4.826975,2.681855,7.834555,4.992615,4.37554,4.90292,4.395285,1.6116075,4.430385,2.733935,3.87205,4.608185,4.716215,4.77421,2.98923,4.126245,4.999485,2.2265686666666666,1.8108375,3.7157666666666667,3.5703333333333336,3.2379233333333333,3.068543333333333,3.9655,3.1388533333333335,4.47149,3.165285,3.434545,2.601205,1.8024033333333334,3.7604333333333333,2.1734233333333335,3.054415,3.12866,2.764105,0.708675,2.202745,1.8439233333333334,3.238875,2.08498,3.7057279999999997,3.804805,1.616146,3.5218949999999998,4.69495,0.84131,1.5416533333333333,3.9756,3.782425,4.042465,2.141415,2.0414833333333333,3.33366,2.499391666666667,1.6546200000000002,3.61608,1.89669,1.115872,1.4529625,5.947229999999999,3.647145,2.653315,2.3542,2.4245125,3.71929,0.83979875,0.35109428571428575,0.8073699999999999,5.43075,2.011567142857143,4.48934,2.2139725,1.870623,3.1041315714285713,1.2335085714285716,1.036815,0.70343,0.5524785714285715,2.6002283333333334,6.5048,3.109305,3.87419,0.32182142857142854,3.67276,19.21232295238095,2.95098,7.28433506993007,0.96291375,0.96291375,0.96291375,0.96291375,5.923378333333334,3.777975,3.075825,2.766923333333333,3.20211,3.624305,3.761145,4.03325,3.39119,4.846245,4.45645,4.135615,3.6028173333333333,4.369685,4.872955,4.711805,4.9629,3.54408,4.56995,2.75056,4.26842,3.202695,4.07386,3.899125,4.59445,3.377266666666667,2.54145,2.4144366666666666,4.768425,1.282467142857143,3.792395,3.2256433333333336,3.5199993333333333,4.3770375,3.809295,3.000905,4.60227,3.763505,3.376385,3.071115,5.0107,5.046,3.317535,4.231695,1.7366199999999998,1.7366199999999998,1.9924675,4.8071,3.95667,6.1128409999999995,4.96162,3.821801666666667,6.2695,4.113475,2.14318,8.989155,5.0825,6.2045,4.50286,2.857936666666667,3.983605,0.2649527586206897,1.06064875,4.0979193333333335,3.40114,4.911895,3.407633333333333,5.9537,5.24605,0.5670678571428571,3.131425,0.47161400000000003,1.5706257142857143,3.504765,2.140375,4.422585,3.49281,3.137045,3.441935,3.33124,3.513965,3.3433,3.633245,4.84153,2.37079,1.5706257142857143,2.79386,1.9613775,3.57275,2.183705,4.29167,3.541935,1.6461325,4.356725,4.73704,1.4808533333333334,4.850895,4.765535,4.08554,3.1182866666666667,3.04997,5.14165,1.9110866666666666,1.409474,2.1690366666666665,2.656753333333333,2.5344,2.0194433333333333,5.2242,3.434085,5.291158333333334,4.099021428571429,5.23275,4.37916,1.771778,5.39255,4.584795,5.3083,4.2872,6.794525,1.6858275,4.630055,4.73381,2.862955,2.15266,1.6907866666666667,3.767415,4.48591,2.1908266666666667,2.58695625,3.3975150000000003,3.3975150000000003,2.8969,3.4803333333333337,3.26264,3.759905,3.574905,0.7251423076923077,3.19403,4.05624,4.647494444444445,2.769395,3.008905,1.7321725,2.67928,3.5318,2.35912,4.368925,4.37749,4.49881,2.15585,1.0637818181818182,6.01341,3.58906,3.6333333333333333,3.4807333333333332,1.891422,30.310335238095238,4.451105,3.111485,4.64477,4.164245,0.8923916666666667,7.6611175000000005,2.226505,5.64245,1.6809166666666666,4.813815,5.24617,3.65456,2.967345,2.018975,3.8300666666666667,5.2626,2.145625,2.798526666666667,3.83591,2.767005,2.421625,6.15765,1.99929,2.692315,1.21607125,4.458225,3.46426,4.213915,4.854215,3.04399,2.2410833333333335,4.287495,5.07275,3.60904,3.60904,5.8911,1.4975325,4.309275,7.074716666666666,3.1942,4.33717,3.407435,2.49481,3.34446,4.079805,1.2896175,2.652775,4.30013,4.275595,4.393,4.39508,1.897775,8.847966666666666,2.63964,3.73482,1.825314285714286,3.5058,2.2761466666666665,2.607203333333333,2.156010833333333,1.16462,2.7183833333333336,0.920582857142857,1.0902857142857143,1.0902857142857143,1.0902857142857143,1.85768,0.5405675,3.798755,1.18863,2.6835833333333334,1.1209083333333334,1.71315,2.6640433333333333,2.4786766666666664,0.75539375,1.6799433333333333,1.5135266666666667,2.290573333333333,1.6052779999999998,1.6052779999999998,1.5696766666666668,2.11435,1.101432,1.7213166666666666,1.6520400000000002,1.1677333333333333,2.11041,3.026225,5.8373,1.86775,4.07535,17.861246166666668,6.68762,4.24125,3.38673,3.0375366666666666,3.030226666666667,2.7142,3.426433333333333,0.7816908333333333,1.01823,1.01823,0.6390125,2.5808,3.809305,3.646595,1.514616,5.51575,3.563425,2.728215,4.396285,4.562445,4.073415,4.745215,3.4819333333333335,3.214765,3.239675,5.594,3.9340666666666664,4.938105,0.504513,0.504513,2.244285,3.811755,5.289,3.515145,4.342575,4.57479,6.633964,7.60086,3.428295,2.27557,5.2351,4.53846,2.714733333333333,2.288435,3.03052,1.4496,3.47381,2.53648,1.777435,3.19084,5.2995,1.98053,5.53665,1.6286925,3.6248666666666662,3.59438,0.9047114285714286,3.5117333333333334,2.76788,5.62635,1.11135,1.6645575,2.6442,2.26852,1.639335,2.4225375,2.092465,2.06305,4.718845,4.23013,2.423115,1.79043,1.4307566666666667,3.8729999999999998,1.9014233333333335,2.57465,4.413595,5.4812,2.4254458333333333,2.822435,3.40458,3.49533,2.352095,5.1504,4.515185,3.266125,1.3948375,4.10376,2.598525,2.670313333333333,2.454925,3.71175,5.0828,4.440425,2.38656,2.97653,3.2016533333333332,3.5823666666666667,1.9543333333333335,1.6157499999999998,5.6577,3.4995666666666665,2.2885752727272726,3.2786866666666667,3.2030333333333334,2.4817733333333334,3.3314299999999997,3.2647266666666668,3.7894,5.0443,4.160215,3.1187066666666667,5.61865,3.73302,2.37293,3.475135,3.911235,4.0428,5.8739705,1.916808,3.837975,3.091075,4.45948,3.555585,0.66048625,2.45768,2.10737,3.571485,2.711615,2.036785,2.57605,0.78379,2.9060166666666665,5.0475,2.333235,4.577755,2.8628066666666663,4.42839,1.9198225,4.52253,3.57844,1.791744,3.81767,6.9029925,4.317495,4.37583,4.72874,7.454026931818182,4.20474,4.821705,2.2690175,4.793915,3.031455,1.8807633333333333,1.892715,3.2237466666666665,0.9729857142857143,2.2741833333333332,2.5610166666666667,2.6187033333333334,3.586766666666667,1.769914,3.056895,1.8969866666666666,5.1073,5.9583474999999995,1.00582,1.72399,2.46016,2.7197766666666667,1.9265366666666666,1.0479333333333334,5.607631666666667,2.141095,2.6154066666666664,3.3186633333333333,2.8763433333333333,3.1729299999999996,3.09809,2.1582766666666666,2.95743,2.2915233333333336,4.119575,3.763115,3.81727,3.2889700000000004,3.1870933333333333,0.8752679999999999,1.9037533333333334,2.2731375,1.9961433333333334,2.5970400000000002,1.1098216666666667,2.6598466666666667,2.855373333333333,3.55671,2.0529066666666664,3.349135,3.154,5.8074,3.51471,0.5965066666666666,2.04462,2.8990666666666667,3.8405,0.7875336363636364,3.079446666666667,3.563188,3.4509000000000003,2.8461833333333337,3.3478924999999995,3.6378,3.5200666666666667,2.9081733333333335,2.178695,5.5122,5.13945,5.23095,5.3141,5.82185,1.6955333333333333,3.466925,3.8173666666666666,3.4959666666666664,3.1121833333333337,2.9168766666666666,4.0691,3.4854000000000003,3.3691333333333335,14.895366666666666,4.4787,1.08591,3.0597666666666665,1.6338000000000001,3.3224533333333333,3.4671333333333334,2.4454366666666667,5.558883333333334,6.091910833333333,2.6702166666666667,0.916599,4.42498,3.4757,3.03807,5.16095,5.1468,5.9928,5.13705,3.333485,1.899695,6.46462,1.270215,6.61431,4.92864,2.67505,4.32898,7.584906666666667,5.71205,2.359766666666667,1.5157333333333334,2.1227625,7.883703333333333,1.549875,3.0655900000000003,2.7451483333333333,4.327785555555556,5.7821,4.180215,6.05885,3.238565,5.15675,3.58391,8.01762,5.50065,5.5982,2.2347,2.499615,11.06574,3.328785,3.14352,2.350426666666667,1.6002733333333332,3.4004666666666665,2.5538366666666668,0.6594475,1.0763099999999999,1.0644128571428573,3.980165,6.962476666666666,2.9623566666666665,1.3373666666666668,4.916615,3.589705,0.557749,4.113225,3.42852,3.799515,4.193,3.87054,2.5698133333333333,4.15318,9.81258,1.7320175,3.5818075,3.469505,4.197765,3.50449,0.8904166666666667,3.5942000000000003,3.6839666666666666,1.6105066666666668,2.51051,2.1888166666666664,2.6700466666666665,2.3292066666666664,2.089566666666667,2.20831,6.684984285714286,4.66728,4.342925,4.27211,1.52187,2.5117,4.884075,5.0741,5.287,4.78532,4.87698,5.09775,1.7366199999999998,3.91414,7.864648333333333,1.3683949999999998,1.71734,2.4992966666666665,2.439713333333333,2.7573166666666666,4.768567166666667,0.7947214285714285,3.789535,3.60096,4.55078,4.268975,2.2703866666666666,2.8202599999999998,1.9867475,0.588690625,2.1531925,2.879695,7.39236,4.05815,4.65751,0.962722,2.822153333333333,9.867738750000001,10.922348333333334,3.07987,1.1003775,3.387665,3.83458,2.7942666666666667,5.784433333333333,5.26905,4.1086,2.3928975,3.560233333333333,2.1240633333333334,2.6414966666666664,0.7394663636363638,0.4031686666666667,2.3108,3.318945,2.0110763333333335,3.273275,3.5805000000000002,3.875765,4.50895,1.47145,3.524433333333333,2.10384,2.10384,2.17835,2.897895,2.599365,2.6782966666666668,2.5659466666666666,3.436866666666667,3.495533333333333,4.193505,4.313775,4.67117,4.071515,4.78055,4.87946,3.394875,7.908516666666667,1.98476,2.149836666666667,3.1697566666666668,0.8823500000000001,0.7310150000000001,3.63601,2.269145,5.58925,2.885733333333333,3.061583333333333,2.0066800000000002,1.43331,3.88543,4.08342,4.17976,1.488805,1.29237,2.701,1.8858166666666667,2.47182,1.0938628571428572,1.0938628571428572,2.7336500000000004,3.747795,2.73917,3.1555,3.298225,2.055675,20.27730556060606,3.775495,5.68249,3.63424,3.494785,3.89824,3.623485,5.587,6.7450525,0.9912933333333332,0.9912933333333332,0.9912933333333332,2.6498,1.7328571428571429,3.6840666666666664,4.47445,4.418985,3.05558,4.45142,4.156265,0.8120822222222223,2.3206366666666667,2.8232166666666667,5.675816666666667,3.2233099999999997,3.9591666666666665,4.724385,2.0718075,2.00485,2.2632166666666667,0.4987525,0.775756,1.597905,1.903895,3.026505,12.810293333333334,2.4089633333333333,5.31325,0.7059221428571429,10.814214999999999,5.86875,3.692765,4.365925,3.0008,5.662,3.0008,2.964772,3.490385,3.69886,4.02734,3.63648,4.530835,3.34321,5.85285,6.683925,1.6998833333333332,2.911206,2.67059,27.03794872136422,1.590332,6.30825,4.501538,3.888445,3.755045,4.58111,2.66005,2.619445,1.99097,5.595,6.2928,5.08,4.33551,4.68091,2.2081125,2.53709,4.542835,0.3667153846153846,0.3667153846153846,0.3667153846153846,0.3667153846153846,3.883245,3.1071666666666666,0.9641966666666667,1.75932,1.170488888888889,4.749535,2.41776,2.1698525,7.525616666666667,3.4376333333333338,0.16750655172413792,20.956787333333335,4.553106666666666,1.800304,1.4189964285714285,2.28024,2.09062,2.69545,4.55308,2.84485,3.754205,4.269625,2.49226,7.21471,2.71588,1.907295,4.334615,6.0558,8.015203333333332,4.60139,0.28600000000000003,3.43923,4.250455,3.371366666666667,2.1787525,3.129356666666667,1.5781216666666669,1.5781216666666669,3.88605,5.72836,11.959743333333334,8.971725,0.6480666666666667,2.52302,3.992785,3.39089,4.80352,4.902575,1.614106,1.614106,3.7653,4.297455,2.72984,3.098795,5.2005,5.15055,5.752683,1.9986080000000002,4.58269,4.2562,2.659975,2.9949166666666667,3.4140333333333337,5.2333,4.319835,5.34765,4.38232,4.1314,3.827255,4.67287,4.52627,5.58755,2.919216666666667,3.5909,1.33066,4.730365,4.24197,4.68414,1.9215959999999999,2.1677033333333333,2.07245,3.1302233333333334,2.7235,4.852373333333333,1.9404333333333332,2.368605,3.2289999999999996,2.1799666666666666,2.883103333333333,3.428366666666667,4.558366666666667,3.2407233333333334,2.3981533333333336,3.783205,2.068566666666667,2.5631633333333332,1.9260266666666668,4.51417,3.14002,40.799999250000006,1.8252047272727274,1.8252047272727274,2.3874299999999997,3.4118,2.32937,1.88309,3.12928,1.9022866666666667,0.6655830769230769,4.8522,7.4679675,4.08821,3.99647,5.933,1.95705,4.653245,1.792612,4.994045,4.82707,5.5993,3.90182,1.7303625,4.04806,5.2277,4.765975,5.59675,5.61565,4.336555,3.3502333333333336,2.8404433333333334,2.31124,1.704105,4.41528,1.7574266666666667,3.652955,3.652955,2.1432466666666667,1.4694233333333333,2.08642,2.3494733333333335,2.3745,5.06102,2.93875,1.1273783333333334,1.1273783333333334,3.7533666666666665,3.0142066666666665,2.4321566666666667,2.5959033333333332,2.29047,2.3065433333333334,2.16995,2.28699375,3.1015123214285714,1.6601623214285715,0.8145185714285714,58.13970390376984,2.244558,2.0217966666666665,2.076734,0.88649,3.2752706666666667,1.587612,1.587612,2.0603666666666665,2.984863333333333,0.84564375,2.1636266666666666,5.312250000000001,3.9001333333333332,2.5166566666666665,2.7156333333333333,1.86313,2.2390533333333336,0.289654375,2.11839,0.67848,2.444573333333333,1.282152,1.282152,2.1579966666666666,2.3936599999999997,2.43568,1.697402,2.4974333333333334,1.697402,2.0530500000000003,3.0283833333333336,2.9418466666666667,1.146344,1.146344,2.8299800000000004,1.2823233333333333,2.7367633333333337,2.168016666666667,4.92524,4.496985,13.292568416666667,7.2046624999999995,3.86173,2.59604,4.195835,5.30065,5.3671,2.7224408333333336,4.34372,3.464815,2.2508933333333334,4.51295,3.5144333333333333,2.989926666666667,3.807695,2.22532,1.07796,4.1617991666666665,3.096856666666667,3.090785,0.7767857142857143,2.600575,3.401505,4.675025,4.20554,6.3006,2.8547933333333333,1.9902159999999998,3.840705,4.62535,2.37552,2.7194141666666667,1.8086333333333335,2.030756,0.8628159999999999,5.6771,4.623545,4.07287,3.903435,3.1524933333333336,4.463275,5.3542,3.03726,1.6902233333333332,0.5515933333333333,14.833905166666666,0.50964,0.50964,0.50964,3.1705633333333334,3.920533333333333,0.50964,7.7532049999999995,4.64969,0.688884,0.688884,3.2575066666666666,3.246915,3.010895,4.706635,4.635765,4.3321570000000005,2.03805325,4.744218,4.164045,3.5222136904761907,4.81998,3.0600545,2.2962,2.24238,2.59815,1.46845,3.5130041666666667,3.1357033333333333,2.55965,2.38264,1.9628325,1.8349666666666666,1.533795,2.3980175,1.1409666666666667,2.611225,0.6416214285714286,5.2846,1.817665,0.6733375,2.57455,7.785873333333333,2.60392,2.2571339999999998,3.1521575000000004,7.38601,2.672785,4.91508,3.131215,5.87993,4.27315,3.967585,3.92266,5.2306,3.09716,4.260196666666666,1.2170657142857144,4.41805,2.3507366666666667,2.49798,2.343545,2.362835,2.1772,1.3049625,5.20555,0.8695263636363637,4.828685,5.60595,5.13465,5.98135,4.086266666666667,2.4883533333333334,1.872306,2.9313000000000002,3.7879666666666663,2.42156,3.7073,2.699575,4.07011,1.775168,40.67252726190476,5.14355,2.39075,2.8563266666666665,3.1452899999999997,1.5175633333333334,5.673591666666667,4.81591,2.5967933333333333,3.071536666666667,2.1855466666666667,1.608105,5.354,0.8362071428571428,4.908082142857143,1.4194014285714285,3.2352066666666666,3.4023,2.9479066666666665,1.4313125,5.31418,1.755602,1.755602,2.6705799999999997,2.9514333333333336,3.6298666666666666,3.5482,1.3874766666666665,3.1104566666666664,2.6885133333333333,6.5288493333333335,3.07567,3.69827,1.2553349999999999,1.3812866666666668,3.1828299999999996,0.8966879999999999,5.588961666666666,3.7182,2.9045533333333338,3.852133333333333,3.2081033333333333,2.8414333333333333,3.2346066666666666,1.6826133333333333,2.4245125,2.65317,3.568633333333333,2.647203333333333,3.784933333333333,2.6310933333333333,0.608366,9.400051602564103,2.855316666666667,5.37555,4.948275,2.8320866666666666,3.0035133333333337,1.272205,1.9807533333333334,2.03144,1.272205,2.907555,0.48293125,0.48293125,1.19281,1.19281,0.7947925,0.7947925,2.774885,3.02977,2.94901,1.400765,1.71784,3.466265,2.71883,5.13505,4.503235,2.2828,4.311295,2.35312,4.734426752136753,1.4062275,1.4062275,2.55409,1.791386,3.6308083333333334,2.037205,4.4114,1.2840716666666667,2.27504,0.59026,1.2837671428571429,2.25698,2.07314,2.394905,1.543345,4.76372,4.514505,2.7506233333333334,3.041603333333333,1.3524966666666665,0.755575,2.2319466666666665,3.59418,2.4349266666666667,4.874035,5.44155,5.25955,3.85571,6.582685,1.7193833333333333,6.294295,1.990475,4.73329,4.64468,5.871957,2.951003333333333,2.25296,1.7237875,1.925786,1.925786,2.4066025,2.4066025,4.60536,5.3951,0.890714,4.66426,3.983135,3.344635,2.7640433333333334,1.519415,2.7589233333333336,4.11291,4.329135,2.02228,6.51855,5.27745,1.7233266666666667,1.205305,3.87916,4.1660699999999995,4.194095,3.38694,4.21166,0.671885,2.6698866666666667,3.01459,2.6737300000000004,2.944296666666667,2.1224166666666666,3.3007733333333333,1.5126571428571427,1.5126571428571427,1.5126571428571427,2.922776666666667,3.15544,2.15037,3.5214738809523807,2.606,1.3112685714285714,3.17934,3.361333333333333,1.3331314285714286,3.2149566666666662,2.73082,1.3295385714285715,3.3470666666666666,2.967006666666667,3.0430966666666666,2.9714333333333336,3.1571433333333334,2.0550275,3.3638999999999997,5.173316,4.500555,0.910683,1.471936,0.645386,3.435833333333333,9.205745,3.11834,3.23263,2.2791833333333336,4.23432,1.89141,7.800781666666667,7.0137,2.732836666666667,2.605490571428571,4.67196,5.4092,1.68594,1.30077,1.270548,2.12726,11.762943333333332,3.0847766666666665,3.2044633333333334,3.2075093333333333,3.637525,2.3541933333333334,1.2425225,5.2412,1.0207216666666665,3.61277,3.31009,3.23852,3.125776666666667,3.34135,5.13235,1.1554200000000001,2.1650225,2.3701506666666665,2.3701506666666665,3.7269,5.7968,7.337664999999999,3.92885,3.4888,5.24975,1.97266,2.1786833333333333,4.56502,4.38774,3.82126,1.7016,2.95921,3.445155,3.844285,2.3980975,4.48104,3.95081,4.03917,4.10002,5.1061,4.71838,5.28895,3.4576,2.3911233333333333,4.66639,2.80772,3.63789,2.557045,2.56069,2.591695,4.49444,2.42204,3.270646931818182,1.63471,3.214995,3.87387,1.9509425,1.9997575,0.6629416666666667,0.6629416666666667,1.7090025,4.248907272727273,4.232715,2.9195266666666666,4.097145,3.5826775,2.459308857142857,1.10347125,2.62884,1.64257,4.53701,3.831405,0.9755004166666668,1.8061225,3.951745,2.822025,1.51991,1.5635666666666665,5.062757142857143,1.2212533333333333,2.620265,3.15179,2.71136,2.87673,2.851557,2.02629,0.982265,2.774635,2.81216,3.317305,1.3974166666666665,1.52139,1.808335,4.430085,2.096545,4.31674,4.92435,4.58294,5.6498,5.8339,4.260155,5.908705,4.42571380952381,0.80568,2.755335,4.362045,4.00981,0.46295454545454545,0.8688359999999999,3.00103,3.964925,4.323405,5.0224,3.259194642857143,2.736,5.11455,1.88611,2.43507,4.396765,4.200465,3.60874,3.677975,4.397905,5.034,2.679625,5.8951425,0.955865,3.90945,2.31051,4.23086,4.803605,4.43424,2.11824,2.416405,2.787025,2.12536,5.0508,3.491975,1.6029142857142857,3.08225,4.3057525,1.430422,5.78158,1.764368,2.5680333333333336,13.696466726720647,3.1915566666666666,1.3032733333333333,1.6107316666666665,2.1304333333333334,5.486513333333333,1.6262260000000002,4.5872,0.7020846153846154,3.5757,4.02523,7.374435,2.47701,3.1561833333333333,3.1561833333333333,5.31695,4.95558,3.745995,3.264615,5.1745,5.24775,2.3406,3.354233333333333,4.81933,1.2372033333333332,2.8846633333333336,5.1196,4.26375,3.898465,2.70031,3.165575,3.888655,6.779925,6.081542499999999,0.786806,3.902975,2.938015,3.301683333333333,4.210645,4.301635,3.9598,1.655764,4.40355,2.320195,3.157065,4.13519,4.48742,4.55313,0.9513749285714286,2.42786,7.387426333333333,1.5708816666666667,2.0143466233766234,2.3561575,3.669915,3.454035,3.21706,0.664680909090909,2.493395,1.603265,2.23496,4.797155,5.195898666666666,2.843702,9.6822,2.3334066666666664,2.8151233333333336,1.09133,4.572095,5.2047,1.991285,5.785534999999999,4.24951,3.17355,5.5627,4.797935,4.842415,2.16606,1.6343875,1.6343875,2.786795,4.079595,4.8732675,1.5600075,5.684711666666667,1.4625833333333331,3.936145,1.605275,8.987931,3.94299,2.637405,5.5868,5.74345,4.241205,1.0772833333333334,1.9742325,3.5963999999999996,3.13687,3.4283333333333332,3.6783,3.78969,2.69715,3.2423,3.16636,1.5359425,2.38565,1.9037966666666666,2.79522,1.6084466666666666,5.461985,3.2360233333333333,1.73199,3.2833400000000004,3.215125,3.604555,5.799,6.3755,2.776475,3.42237,4.011105,2.96851,2.724755,1.1981533333333334,0.9261480000000001,6.454230000000001,3.61542,4.93314,5.26195,6.3288,2.732085,3.411633333333333,6.3574,2.44524,0.5412483333333333,5.75885,4.072155,3.89834,3.6740999999999997,1.4496857142857142,5.43555,1.313884,5.1589,0.9721875,1.84325,2.8831399999999996,2.4291966666666664,2.449408571428571,4.109235,5.50895,5.166485833333333,5.166485833333333,4.1286275,4.1286275,4.675715,2.9598933333333335,4.529245,1.13345875,5.5391,4.079615,3.6762,4.6686,3.720115,4.91142,1.81883,4.889265,3.183744,3.35998,4.242795,2.546305,4.36358,5.11995,3.463035,3.049335,4.736455,3.44377,4.20058,2.81669,3.315,6.00825,4.08163,2.8716500000000003,6.790605,1.6265966666666667,2.260165,4.37356,4.633395,5.7479,4.038525,2.000931,2.000931,14.407630686507936,5.11006,5.0643,4.29009,2.939671794871795,4.662975,4.67431,2.7545466666666667,3.3388000000000004,3.67975,3.9628333333333337,3.7723333333333335,4.850985,2.00082,7.9066149999999995,2.38578,2.0567375,5.09965,2.49579,5.07585,4.64922,4.425335,0.7967533333333333,3.5762,3.66038,1.195686,3.391455,3.938205833333333,1.542076,2.2625266666666666,3.04243,2.7228966666666667,2.809063333333333,3.4229333333333334,2.3060633333333334,0.5361921428571429,3.1051133333333336,2.97405,2.916956666666667,3.10201,1.638786,3.07756,7.304133333333333,4.83976,2.49013,1.9640833333333332,2.64706,3.702345,2.568265,3.837047,18.229390000000002,5.64605,3.4764779999999997,5.6129,3.768195,5.475503333333333,1.5934533333333334,5.76755,1.5387483333333334,4.531515,4.259165,5.31035,5.41995,0.9947256842105263,4.125715,2.88576,5.02675,2.459165,4.49736,5.22775,2.83838,2.14228,1.383158,2.111825,4.656365,4.814045,2.16049,1.916565,2.8673300000000004,4.196261666666667,3.1071866666666668,6.10535,2.5827,5.3721,4.493895,3.649655,4.765405,3.626965,4.44739,4.303335,4.459865,2.82129,2.82129,5.289291111111111,2.054396666666667,3.0149833333333333,3.81211,1.7517679999999998,7.445885,3.62144,4.864890000000001,4.3971,4.647575,2.0799,4.85662,5.2056,3.836125,2.2306525,3.732255,3.30775,1.1093425,1.846165,1.19453,0.6910183333333334,1.7882066666666667,1.0805266666666666,4.445195,1.3052666666666668,2.887636666666667,1.5632566666666667,2.1347925,1.0399116666666666,2.03173,2.29681,1.624425,3.32278,2.40237,4.327226666666666,1.5821100000000001,2.2488325,3.4214333333333333,3.113963333333333,2.57144,4.483515833333334,4.458325,5.253903333333334,20.268254833333334,2.66257,2.1967125,0.6342761538461539,0.615615,4.911933333333333,1.8862279999999998,4.17234,4.21583,7.675943,3.881625,3.603995,3.958535,3.6286,3.029673333333333,3.301486666666667,3.5208333333333335,3.187556666666667,5.9331,4.273155,0.969114,1.21973125,5.17305,3.5140333333333333,2.7124133333333336,2.1405166666666666,2.91055,5.54505,4.970215,2.4636025,1.4957200000000002,3.61495,5.30705,9.32805,5.828906666666667,4.58107,4.79286,5.3681,4.52596,4.47309,4.787355,4.464195,5.1342,1.863805,5.64615,1.620342857142857,5.21325,0.71144,5.1528,5.41815,6.1917,6.09795,5.00485,5.808,5.65125,6.317552500000001,1.8685,1.6678714285714287,5.50315,3.707515,6.738519999999999,5.2097,5.2715475,4.913485,6.16895,1.3079528571428571,4.64018,5.48755,4.173333333333333,4.750185,5.9872,2.54385,3.922455,4.24821,4.69946,0.9486583333333334,1.6624316666666665,1.508378,4.881725,3.973,3.574775,2.81635,3.260706666666667,1.5534999999999999,2.083153333333333,0.38216,3.4479666666666664,1.7055140000000002,2.1028333333333333,3.2269666666666663,1.91267,3.18482,2.2994825,2.6949,10.180472666666667,3.1472866666666666,1.6741435897435897,4.52253,0.81552,4.648155,1.1084225,1.9768125,1.92326,1.04615125,5.646323666666666,1.24293625,1.24293625,1.24293625,3.0857466666666666,1.867954,5.0936,2.922575,1.745025,1.4828275,1.54783,1.4839875,1.7667059999999999,5.6845575,0.9934044444444444,4.37569,4.467095,3.454166666666667,1.0286114285714285,2.1893700000000003,2.00397,2.00397,1.6215816666666667,3.6597925,4.62812,4.624905,5.08555,4.312905,4.926625,3.20965,2.0403725,3.601215,5.0649,3.926595,4.568355,1.0674125,3.83104625,5.31645,1.91189,4.477135,2.7617166666666666,4.464725,5.4083,2.438935,6.07525,6.43065,4.426005,5.21555,4.054025,3.20787,8.24581,3.872135,6.5024033333333335,3.430245,2.710793333333333,5.2559,2.6943266666666665,3.243805,5.08685,2.927213333333333,3.131455,3.91632,1.4251933333333333,10.6350775,4.637045,3.17202,15.795470833333333,4.67889,1.7341300000000002,2.8721099999999997,2.91358,3.37389,4.35522,2.7542394444444445,2.922305,3.113135,2.76051,4.017575,6.489375,1.25421,2.3848425,4.186965,4.715095,4.92121,2.0021575,0.6550826666666667,4.906695,4.172405,2.3197325,1.3023716666666667,4.83093,5.10315,0.9252122222222222,3.73375,13.710073333333334,1.3462844285714286,0.40884642857142856,3.6575333333333333,4.343368333333333,1.1320666666666666,4.712475,3.77669,5.707503333333333,1.3846433333333332,3.686265,3.75901,3.23022,4.395595,4.965825,6.14945,8.23188,3.04699,4.180795,3.32186,15.845968124999999,3.3046075000000004,2.3125975,1.23476,2.0796325,1.3334225,1.79776875,1.71309,1.98347,2.0658675,2.15324,2.34433,2.69635,2.17701,5.28775,3.72698,3.523485,3.074195,6.008853333333334,3.0057833333333335,5.01415,3.4149999999999996,1.1411125,3.636115,2.00467,2.451150666666667,4.965935,4.68541,4.7166,5.1147,2.645566666666667,3.0610466666666665,2.42035,3.67577,3.612035,2.14861,1.715225,3.676133333333333,4.98272,4.65865,2.3123466666666666,11.23694,0.6293826666666666,2.53164,5.3193,2.7942950000000004,1.48655,2.945255,7.692328333333333,7.33375,4.97121,4.43707,3.82456,2.0540875,2.51499,3.034285666666667,2.1412166666666668,4.337658333333334,2.93433,4.718305,0.5133846666666667,5.7308,3.3022733333333334,3.5145,3.6819333333333333,6.35405,9.07784975,4.3899159999999995,1.20496875,2.156915,2.29287,3.581955,2.587245,4.15579,5.0281,3.5950666666666664,2.8079966666666665,4.55932,3.946355,3.63347,3.22087,2.10112,3.12657,5.2505,5.4013,3.1454166666666663,1.8637675,2.13813,28.57976958974359,1.4669175,1.4669175,2.1838966666666666,4.110386666666667,4.29676,4.660555,4.13814,2.939725,4.006455,2.85304,4.04172,2.85304,3.37497,1.8568300000000002,1.43037,5.59985,2.275725,4.67301,3.14202,2.646825,6.67234,1.96962,4.930005,5.37105,3.78852,4.09027,4.821145,1.995954,4.816675,3.5761025,6.9332666666666665,5.633601666666666,2.3228175,4.102305,4.69212,2.051045,3.0209533333333334,3.8371,0.5425128571428571,3.205033333333333,9.956813333333333,4.840245,4.791295,5.35905,3.4742125,3.08234,1.3474000000000002,4.534515,5.42845,3.07646,2.62321,5.092,3.50334,4.07063,4.473715,2.2961375,2.2961375,3.90748,2.88111,2.8611506818181818,2.178455,4.589155,3.91688,1.3172714285714286,4.10228,4.69456,2.859,7.990225000000001,8.43738,1.4605700000000001,4.24266,4.699015,6.6902919999999995,0.913974,7.52122,3.6022658333333335,0.6760090909090909,5.36165,5.38325,5.43705,4.32141,4.81651,4.66422,4.96645,4.38255,4.364325,5.19845,4.140265,5.5343,4.967085,3.73099,3.724655,4.205,2.825175,0.8581810000000001,4.36684,2.412245,1.637045,4.35849,5.32705,5.2998,1.0211885714285713,4.98138,3.0057,2.6126633333333333,2.2262975,1.1744666666666668,11.327511666666666,3.285076666666667,3.07545,2.6700133333333333,3.639232857142857,5.541813333333334,6.132106666666667,2.562143333333333,1.9579766666666665,2.17682,2.17682,2.17682,1.3750666666666669,3.357615,3.60874,3.21808,4.730035,8.137205000000002,4.29468,1.091248,2.340815,3.36965,3.918955,1.809056,3.76783,2.56073,1.3782633333333332,3.20963,6.917821428571428,7.6370175,4.63258,3.90217,3.4157666666666664,5.22525,4.411615,5.351778333333334,1.87197,1.87197,4.709485,3.7392,2.878953666666667,2.878953666666667,3.884615,1.05941,5.1335,3.42985,4.132925,4.54539,4.75734,3.1251333333333338,0.9880185714285714,4.356055,5.54715,4.551565,4.71292,5.14005,4.92882,4.50877,1.790655,1.438585,3.17092,3.87093,3.33676,4.23494,1.943295,4.00445,4.48388,2.60568,5.0137,8.398185,2.4118375,2.954563333333333,4.472210952380952,4.861511666666667,1.47227,2.097501428571429,0.9775200000000001,2.097501428571429,2.02345,2.02345,1.45804,4.790595,3.18799,4.233725,2.480995,3.708535,1.5590849999999998,5.51965,3.01861,1.6726725,2.72644,4.613065,3.485195,6.115137000000001,4.80449,1.1928100000000001,0.804105,3.535705,6.071338333333333,2.2922866666666666,3.48904,3.292195,3.292195,2.327705,3.31516,3.152185,1.4117232467532468,2.981453333333333,3.84515,3.253385,4.60992,3.91768,1.544765,3.28536,4.95141,4.253465,5.09365,4.139265,2.028125,2.028185,1.35516,2.560625,3.80499,1.866195,4.332235,3.423133333333333,2.867515,4.11224,4.843205,2.190205,1.075852,1.7947366666666669,1.3202225,1.2476,4.73505,4.228675,1.33066,0.1640495652173913,0.1640495652173913,0.1640495652173913,3.63554,5.984545,4.589175,5.08305,2.996205,3.58991,4.9531,4.269085,2.77266,3.32384,1.5754225,4.60956,4.114215,3.987515,4.671145,4.35741,0.8214363636363636,0.8214363636363636,0.8214363636363636,0.8214363636363636,0.840412,0.840412,4.116425,4.698855,3.730335,2.667945,2.41553,4.27009,4.582985,5.316,4.210935,2.78978,2.441593333333333,10.0089,1.7841159999999998,1.7841159999999998,4.81633,5.4567,3.26699,0.48293125,0.48293125,0.48293125,0.48293125,0.48293125,0.48293125,5.031786666666667,5.0499,3.39801,4.43871,2.5591625000000002,2.5591625000000002,2.561655,3.0997723333333336,2.8061000000000003,3.51191,4.28162,7.270073666666667,1.396518,5.1312,4.1728,4.210995,11.166438333333334,2.9114766666666667,3.06354,0.9442557142857143,2.355655,4.652835,4.03246,1.22338625,2.9900466666666667,4.73416,5.6066,2.706,4.856805138888889,0.9915855555555555,2.0917766666666666,4.70394,4.925955,3.308184,2.942043333333333,2.6213933333333332,1.4967016666666666,8.384121666666667,3.361,2.4092433333333334,2.931515,2.86631,5.0454,4.008875,2.7172300000000003,3.2058466666666665,6.2088,1.5171483333333333,4.71988,5.11185,3.9935,4.00166,2.3855366666666664,5.2083,3.73921,3.691075,2.723985,4.61262,4.790675,2.913206666666667,1.88631,2.8909000000000002,2.6633533333333332,2.7201866666666668,0.8307681818181819,2.1998175,8.388427499999999,0.490288125,3.1602566666666667,1.6297766666666667,2.4959000000000002,3.271153333333333,3.0209766666666664,1.2564333333333333,1.78588,2.63488,2.1539625,3.646035,2.05348,3.11547,1.6368966666666667,3.227902,2.199405,1.0563842857142858,3.119453333333333,2.313355,2.3253333333333335,2.7006333333333337,2.9831533333333335,3.231533333333333,3.3197233333333336,3.2241233333333335,3.1260399999999997,2.6747666666666667,2.802543333333333,2.23826,1.80729,2.37433,2.8396500000000002,1.5649233333333334,2.9428433333333337,3.7783042857142863,2.8582933333333336,2.9103066666666666,2.8204166666666666,3.7227,4.914375,3.0622666666666665,1.687672857142857,1.687672857142857,2.22191,1.120825,2.6716,3.3444216666666664,4.510055416666667,2.684925,2.017415,2.2050025,2.1055675,3.731895,2.96259,4.230125,4.730755,1.74982,2.37163,3.7871,1.246678,1.246678,2.57605,0.6649615384615385,2.908530769230769,2.122535,2.122535,2.8781199999999996,2.4263233333333334,2.6339200000000003,2.6441316666666665,2.45727,6.057526666666667,3.834555,3.834555,3.76007,3.16981,2.33568,3.18015,2.496245,2.94389,5.0047075,0.5116858333333333,0.667961,4.140845,3.087555,2.788675,6.516593333333333,3.58468,1.661832,4.4064749999999995,4.448665,4.683855,4.486215,5.4958,4.713425,13.2603685,3.43705,1.6421566666666667,2.702235,3.719245,5.51425,3.814045,4.242235,4.41222,3.56545,3.12154,2.781446666666667,3.280425,3.00435,2.32481,2.32481,3.96206,2.566465,3.179565,3.595175,2.34699,2.47703,2.09008,1.8878575,1.9686625,1.7828125,1.7843575,4.069710000000001,3.32707,2.5678,6.1332325,4.464545,2.314416666666667,1.84063,3.285155,3.79922,4.0566,3.095971875,3.419075,3.01697,4.14872,3.3908,3.62469,3.765985,3.51079,3.28876,0.6442566666666667,0.6442566666666667,0.6442566666666667,3.2654,2.46008,5.49175,5.0505,3.69715,7.846224444444445,2.938446666666667,0.4494461538461539,5.34095,0.750481,4.325230476190477,1.848865,3.8954,1.822615,4.75217,5.793833333333334,4.55249,4.367165,2.7954166666666667,2.9453833333333335,1.5135883333333335,2.38494,0.5328736842105263,0.5706394117647059,3.0057733333333334,1.4541899999999999,2.018675,3.701055,2.534375,5.36745,2.69365,2.8944033333333334,3.425235,5.24906,2.1300625,1.0078757142857142,2.43411,3.41561,1.3374908441558442,4.968185,3.682945,3.957845,2.72179,4.708625,3.5583666666666667,2.60122,2.7329399999999997,2.20998,2.9078199999999996,2.27905,3.15114,2.3356233333333334,5.706800666666666,2.2997425,1.9072333333333333,2.5450466666666665,4.953786666666667,3.217148,3.217148,2.2700533333333333,3.97691,2.26751,3.963925,2.933135,0.604834,4.406055,2.1026325,11.596629444444446,7.07269,3.02964,3.16997,3.3731,5.06373,2.70962,3.843265,0.25001066666666666,1.92495,3.8936666666666664,0.8462333333333333,3.87208,1.435057142857143,4.962905,3.322355,3.428615,3.85018,3.939675,2.35704,4.71098,3.785965,4.63639,6.86932,3.81398,3.2354366666666667,3.0326833333333334,1.6284500000000002,1.96882,4.35353,4.88022,4.2409324999999995,2.408935,3.581645,1.490616,2.817225,2.28177,3.9543,10.701196666666666,3.55605,6.095836666666667,3.85597,4.89722,0.9995666666666667,4.853642000000001,5.0094,2.534666666666667,2.8061933333333333,3.5373,2.8333999999999997,2.32009,1.64534,1.90661,3.877285,1.6883780000000002,2.7871166666666665,5.0768379999999995,2.7476333333333334,1.1519903571428571,1.1519903571428571,3.5243,3.1491675,3.1491675,3.6740999999999997,3.085836666666667,3.205720256410256,3.773433333333333,3.199363333333333,2.56744,2.1762566666666667,2.2746999999999997,2.997503333333333,2.19233,2.70375,1.598602,5.695012,10.368322333333332,0.6016592307692308,0.6016592307692308,0.6016592307692308,0.7406521853146854,0.7406521853146854,0.6016592307692308,3.6291666666666664,2.913843333333333,4.326478333333334,1.507745,1.731285,3.291784,2.3037233333333336,2.93686,2.2001766666666667,3.07823,3.7170666666666663,6.819605,3.0495900000000002,2.566946666666667,3.6077,4.61399,3.0091066666666664,3.3653666666666666,4.93852,2.3096866666666664,3.4073666666666664,1.3458433333333335,1.3458433333333335,2.5821533333333333,0.4955357894736842,3.193583333333333,2.7172699999999996,3.00897,3.631133333333333,2.25124,1.4579866666666668,2.6858633333333333,2.9432466666666666,2.1704333333333334,4.86842,2.6334963333333334,3.658565,2.532815,4.64041,0.567341,8.968466666666666,3.083728,3.083728,7.80783,1.8275466666666667,2.74408,3.0390566666666667,4.596075,2.3208233333333332,1.9282066666666668,2.6003966666666667,1.3389,3.3053399999999997,1.6661400000000002,2.94908,1.3582225,0.2628754545454546,0.2628754545454546,5.15515,4.101275,3.852775,2.9932533333333335,3.11767,3.798205,1.15618,6.32585,3.59798,2.78665,1.9109075,1.4094266666666666,1.941835,3.0390566666666667,2.445115,2.09467,6.501995,5.9661,4.397015,4.892185,2.203815,0.6613525,7.5810325,2.151465,1.4957825,3.4291,4.702155,2.030225,1.7982666666666667,4.49641,4.445105,3.560966666666667,3.2666,4.57838,4.301655,3.661633333333333,2.601948,2.601948,4.191305,4.763015,6.20905,6.827566666666667,2.81148,3.906735,1.3318942857142857,2.12375,3.6659786666666667,3.757655,1.7323920000000002,3.60916,3.4472699999999996,4.22706,2.1193,4.3799,5.1985,5.59855,4.732725,2.26947,2.5241599999999997,3.666066666666667,2.00269,2.4507275,3.400533333333333,2.2251866666666666,0.8761369999999999,1.94471,2.6685166666666666,2.3503153333333335,4.87165,5.06555,5.11635,4.136135,4.08813,5.331935,11.740395,5.72045,4.82761,4.609915,3.98866,4.81558,2.6324033333333334,3.263954666666667,3.6972666666666663,1.2678875,2.713965,2.793515,4.948935,5.7869,4.75716,3.340733333333333,2.4418633333333335,2.4379933333333335,4.145533333333334,4.1879425,3.5345333333333335,4.1879425,2.58235,2.2287066666666666,2.3190933333333335,2.50685,2.9432066666666667,1.77503,0.8074383333333334,1.4205816666666669,1.64382,2.20213,1.5142133333333332,1.28846,1.6533,2.55173,1.473336,3.280116666666667,1.37787,1.5770466666666667,3.74112,2.122263333333333,2.5471566666666665,2.5401666666666665,2.3836733333333333,3.118545,2.19732,2.734336666666667,2.927046666666667,2.4719233333333333,3.0250033333333337,3.033935,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,4.79882,4.03635,1.0082371428571428,3.1621433333333333,2.5527866666666665,3.0294166666666666,3.377215,2.5738066666666666,4.515415,3.7159386666666663,1.678316,3.6128,1.6895166666666668,1.02918125,1.0309300000000001,1.28077,1.2077916666666666,0.8158325,1.299164,3.180635,1.8578160000000001,1.6688833333333333,1.8298961111111112,2.406563888888889,1.1494833333333332,1.3737233333333334,1.4230383333333334,0.89515,1.25192,0.7196916666666667,0.91647,3.081215,3.47635,4.0539,4.42003,4.098705,3.1245700000000003,4.60697,3.8677333333333332,2.0344975,3.49836,2.046725,3.414505,2.6244833333333335,0.8160000000000001,4.379765,4.935325,1.9751033333333332,1.2371375,2.78578,3.3259,3.6597925,2.8494966666666666,2.402115,0.97835625,2.0638475,5.1166975,3.84833,2.42774,1.4990766666666666,3.64264,2.0361825,0.7158363636363636,4.583,3.739065,4.324425,2.365905,1.3667859999999998,4.117195,4.333905,2.4997933333333333,2.6077966666666668,2.48325,2.5890033333333333,2.6521433333333335,2.838623333333333,3.3398,1.3070125,2.75085,2.65895,5.37645,4.578215,3.693235,4.547275,16.17018793181818,4.3539925,4.511015333333334,2.768875,3.976875,5.04275,1.609518,2.26097,2.2987699999999998,5.89231,3.9837,3.873245,4.706435,2.2987699999999998,3.90732,2.01453,2.5139833333333335,2.8728033333333336,2.77718,1.33001,4.563325,4.118765,2.42624,4.18344,2.14735,3.0194733333333335,3.6022,3.048355,5.7915,4.589275,2.59766,3.42298,2.693895,2.65173,1.701,1.701,2.159996666666667,2.0690933333333335,0.23573142857142856,5.668749,1.135384,3.94099,4.016125,0.553,4.548905,8.407246666666667,1.8108375,3.54399,3.92239,2.37815,3.09342,2.260605,2.93367,3.47905,3.970875,3.124955,3.947566666666667,0.9602499999999999,11.712854666666667,2.82142,2.853115,3.936675,2.543945,3.89896,8.080926666666667,4.475915,4.37172,4.42253,4.44249,5.6424125,1.6506325,3.3364666666666665,4.656125,3.9011,1.88828,3.72726,3.77875,3.567415,3.84378,4.933265,3.961665,2.4822783333333334,3.680475,3.94575,5.33495,3.38726,2.394136666666667,2.3749566666666664,2.07162,2.9723900000000003,1.2623733333333333,3.3876333333333335,0.8058209090909091,3.4428666666666667,3.0986666666666665,2.5609733333333335,1.5903033333333332,4.34479,4.549415,4.032605,1.812565,4.83873,4.094555,0.6884217692307693,0.32336576923076926,4.378555,3.92845,1.054225,0.32336576923076926,3.28201,0.6884217692307693,0.6884217692307693,0.32336576923076926,5.767776666666666,2.5985566666666666,2.5279966666666667,5.43765,4.10985,2.994905,0.7870355555555555,3.488995,3.802195,4.488755,5.50765,2.321415,0.7566207692307692,4.332929166666666,2.3929066666666667,1.517268,2.0109325,1.0847628571428571,2.59561,2.4713966666666667,3.72023,5.12205,3.4539333333333335,3.6977666666666664,3.122116666666667,2.56752,2.820485,4.0148775,1.516585,1.837735,3.870925,5.57595,2.187125,5.33555,2.757345,4.03626,4.121025,3.043615,1.2429175,3.05097,5.80225,3.843345,3.317015,4.86296,5.46935,2.850455,4.844195,4.503185,3.12296,3.24087,7.88899,3.73801,4.6647175,2.192725,1.3305475,2.5757566666666665,2.03902,2.10103,1.804835,4.403615,0.713025,3.698905,4.3036,1.8077366666666668,2.9234566666666666,5.3115,3.17201,3.42957,4.58805,5.5589,10.160038,2.97876,2.994813333333333,1.687136,1.7187666666666666,1.2298466666666668,1.3550166666666668,2.9471900000000004,2.4538100000000003,3.117153333333333,4.294681987179487,1.4295525,2.3031633333333335,4.998845,5.4177,3.92784,3.31436,2.97859,2.310585,2.073945,2.203485,1.8074766666666668,2.153195,3.23288,3.742295,5.0953,5.17245,4.074915,5.7973275,3.130985,2.54612,6.567375,3.78561,7.93554,4.95665,4.95665,5.497366666666666,1.6157933333333334,1.3076925,1.2473966666666667,0.72645,5.05985,3.7367333333333335,3.5401875,3.5401875,1.8721340000000002,4.374525,4.51893,4.53422,4.529085,2.83741,2.58338,4.288555,3.0731,4.97239,3.950025,0.7947172727272727,5.8634,5.18595,5.0708,5.3701,2.972075,5.17285,4.640825,0.8473999999999999,4.977855,6.612111666666666,3.44891,5.37715,5.8574,3.33803,2.53425,4.006155,6.155,2.030745,5.78765,1.9197125,4.453525,2.8636466666666665,1.857245,0.955865,3.5387,5.6384,3.236945,4.13927,1.9726366666666666,4.003045,7.730123333333333,3.43344,3.997695,2.557705,2.660905,0.907081,5.1054,1.5018633333333333,3.5338483333333333,3.5338483333333333,3.83789,2.212763333333333,3.242103333333333,4.22462,1.892095,2.9123433333333337,3.3958,3.3737333333333335,2.894185,3.845865,2.465535,1.752055,3.558,2.1768325,2.8536333333333332,2.06302,2.970133333333333,2.9281400000000004,1.3338828571428571,1.3110766666666667,0.43026666666666663,1.2647916666666668,0.43026666666666663,0.43026666666666663,1.3110766666666667,0.43026666666666663,3.3770333333333333,2.8407419999999997,2.8407419999999997,3.0271233333333334,5.53245,4.88637,4.66851,5.53055,4.82289,3.427325,4.328065,4.430225,2.09656,2.4233595,2.8139366666666668,0.7583081818181818,5.47315,3.1317299999999997,3.1055266666666665,5.55645,3.5876425000000003,5.0957,3.38314,2.4671,2.969835,3.347785,2.3218833333333335,2.84079,1.9528400000000001,5.41785,0.8863788888888888,4.30733,1.2285857142857142,3.43928,3.0385899999999997,3.0007800000000002,4.223625,4.713985,4.165835,4.600305,3.966115,4.185915,4.52282,4.07588,2.610175,2.820275,3.9012333333333333,4.157435,5.23395,4.241265,2.72284,3.225225,3.149596666666667,3.11721,3.84691,4.79998,4.16877,68.0571312320596,2.6817466666666663,3.417315,16.369923666666665,3.987025,2.9634766666666668,2.1953733333333334,1.9086833333333333,2.265433333333333,5.02,2.9559766666666665,4.873925,6.3827,2.90828,7.82627,5.0375,2.305215,3.068585,3.876245,3.511985,1.8665220000000002,1.21945625,4.553135,2.970425,5.835568333333333,3.464655,2.26051,3.344895,3.61863,4.48986,3.152575,5.4059225,4.407195,3.574445,3.6631,2.307285,2.75269,5.61945,2.843415,4.26543,4.384147083333334,1.1310033333333334,2.87289,5.17993,4.087265,3.970895,3.51982,3.029625,4.150215,3.009575,3.929995,3.72446,4.31219,3.558655,3.093875,4.4295,9.6723,3.1709599999999996,3.99281,5.89862,3.13046,2.8771,3.987504375,1.9037866666666667,2.83091,2.967102,3.54511,3.15832,3.45931,3.646355,3.3462,3.982745,3.76028,4.030495,3.735585,3.79999,3.50997,3.2158566666666664,3.2158566666666664,6.514046666666667,1.84639,3.586515,3.34954,2.447035,5.1012,4.13355,2.960425,2.795975,4.04537,7.34845,0.6871409090909091,3.611075,2.44177,2.90706,2.67899,5.2365,2.8074666666666666,2.014365,1.21607125,2.1154039393939392,4.069625,4.22979,4.117285,6.17095,3.791085,6.0453,2.372675,1.7055833333333332,5.1226,3.84451,3.0698600000000003,2.080573333333333,1.28891,2.4193933333333333,3.246423333333333,1.636352,2.4888266666666667,2.442236285714286,3.749252912087912,2.660355,4.986765,3.29773,1.4539575,4.07884,3.4725,4.91895,5.09625,4.577505,4.43896,1.8790466666666665,1.4181266666666668,0.6307028571428572,1.5078866666666666,3.60208,2.459645,3.5201133333333336,1.3912333333333333,2.487705,2.241805,3.320805,3.409315,3.67563,4.006579166666667,1.542415,1.3628675,1.844185,1.9983875,1.3792775,2.594475,6.96523275,4.98135,4.365085,2.77041,7.46483,4.700515,3.13039,3.01448,3.244285,2.57929,3.84774,2.1915733333333334,7.0465,0.8855066666666667,3.169015,6.09605,3.91989,4.63356,5.1033,1.5662266666666669,3.2945433333333334,2.8420366666666665,2.9664266666666665,1.787655,4.01449,8.54479,3.589075,4.443375,4.075695,3.645855,4.681695,0.8756666666666666,2.6683333333333334,5.29725,6.704513333333333,4.160615,5.45565,2.92092,3.7926,2.8213233333333334,5.31015,4.9512,4.0812351428571425,4.0812351428571425,0.6487071428571428,3.6321666666666665,0.933368,0.60346,1.9641975,3.7180666666666666,4.78992,6.439934285714285,3.8407999999999998,3.773194285714286,3.692027619047619,3.382733333333333,3.136316666666667,4.611766666666667,3.495328333333333,1.930645,1.930645,3.69807,3.01564,2.6817933333333333,4.25011,3.4071,0.7112022222222223,3.3107466666666667,2.559553333333333,3.0724633333333333,2.76122,2.5784,2.56738,3.338233333333333,3.2249833333333338,0.860891,2.630873333333333,6.7513458095238095,2.30474,7.64796,1.662902,1.662902,3.6543329166666667,3.2438266666666666,3.6257,3.2732766666666664,1.8695160000000002,1.3748328571428572,3.24737,3.17773,1.6874666666666667,1.3963185714285713,2.8653600000000004,2.692272,2.8494266666666666,2.01784,2.0412175,2.85719,2.089175,2.679145,3.24736,1.72327,3.52361,2.993725,6.725068,4.627605,1.6834325,3.70934,3.17144,2.123785,3.79685,2.5608299999999997,2.63227,7.19453,0.7584823076923077,0.5628675,4.948765,1.593342,1.593342,4.136765,2.4483275,4.712135,3.528745,1.2689833333333334,2.4430266666666665,2.7479866666666664,2.390965,4.84963,2.68209,3.0325666666666664,2.3642533333333335,1.524812857142857,1.524812857142857,2.1499900000000003,3.84559,3.8024,4.05999,3.486133333333333,5.49445,5.18375,7.0574,5.42575,2.51716,2.7042,2.6220166666666667,2.574316666666667,0.7163288888888889,0.7163288888888889,0.7163288888888889,2.9756,4.48991,4.58136,1.3762725,1.3762725,5.5497,6.6716,7.40581,22.901242555555555,13.2335,8.44488,4.0674,6.18175,2.5343,5.01425,2.52747,3.486466666666667,4.447333333333334,5.498902,1.982105,1.83832,7.2841,2.17546,2.17546,6.9811,3.90164,4.71636,1.79072,4.773130500000001,4.945295,4.87234,5.62165,4.12701,1.2446133333333333,6.4446,9.59333,1.2446133333333333,1.79072,1.96362,0.736646,0.736646,1.795512,2.3916766666666667,1.795512,5.2661,6.20305,6.6765,10.4671,1.79072,11.911716166666666,6.6378,6.604,2.5343,3.599535,4.94434,9.45615,3.038244166666667,4.56985,6.0317,3.6433,5.57055,6.80495,5.32315,5.57475,4.7743,2.61848,5.55795,3.885,4.467575,4.19091,0.76885375,1.529166,2.724685,5.79215,5.11715,2.7476333333333334,1.8576575,4.45648,4.935135,5.97025,5.3287,5.36,4.29432,3.046675,4.199805,3.626,2.0340725,4.8856275,1.93429,2.48623,3.921495,1.9581566666666665,3.901685,4.291825,3.60376,5.2759,2.951775,6.421331666666666,0.9497444444444445,3.39604,3.917535,1.4575714285714285,5.820271,1.7068833333333335,1.7729799999999998,2.9652733333333336,2.8634295,3.2256433333333336,2.8706866666666664,2.048725,0.7367818181818181,2.47556,2.521335,3.935835,0.7140746153846155,6.056691666666667,1.7493666666666667,1.176676,3.0956499999999996,1.176676,3.795,0.9422181818181818,4.342985,3.164213333333333,1.79738,3.797087,3.601917,3.601917,4.446045,2.646325,3.1730399999999994,2.591063333333333,1.638786,3.79642,3.248615,1.9712533333333333,0.7585125,7.457284615384616,2.633205,3.51292,4.228435,7.35953,2.511425,3.93375,3.749265,3.112415,3.860515,5.5325,6.427322500000001,4.20099,4.991805,5.3469,3.260643333333333,4.48927,4.045115,4.618665,1.1094355555555557,0.48680214285714285,3.32792,3.3950666666666667,3.0437133333333333,5.69695,3.803795,4.34004,5.22185,5.2051,4.046045,4.37151,1.23046,2.26859,9.24145,2.2205966666666668,1.9487233333333334,3.5685990476190477,12.608213373015873,1.4801375,4.828365,5.78745,4.812315,3.1656366666666664,2.2680266666666666,3.227373333333333,4.13588,1.1215683333333333,3.474466666666667,3.47076,0.46580315789473686,2.2632833333333333,4.924225,4.16829,2.108795,4.15187,3.3217,4.82838,1.24424,0.6096127272727272,3.58414,1.2380942857142858,1.00425875,1.00425875,1.00425875,1.00425875,1.3584466666666666,2.7840866666666666,2.2978466666666666,2.75098,5.2047,3.651733333333333,5.04085,3.07033,4.2955,3.378315,3.868125,1.4034133333333332,7.6635800000000005,2.664035,5.07315,5.478496666666667,4.739435,5.062218333333333,3.3671666666666664,2.5449966666666666,2.597443333333333,3.91411,1.2203633333333335,4.89912,2.50515,4.9629,2.8964933333333334,2.5012233333333334,3.670925,3.915375,3.22382,2.4596966666666664,2.6612433333333336,1.4282725,0.4787133333333333,4.711375,3.383875,4.110235,3.1747,3.800165,5.7571,4.654875,0.51731,3.40596,7.369956666666667,1.9260166666666667,2.03798,5.905196666666667,4.54687,2.76872,4.94488,5.0927,4.27275,5.08295,4.252145,4.91258,5.1927,5.0591,3.471655,5.398996499999999,1.627622,1.7078499999999999,4.222955,3.815765,4.836455,3.184435,5.13135,4.471605,3.75937,3.273525,16.10994192247515,1.3525625936329586,1.2579875,2.094303863636364,0.533000625,0.47503666666666666,1.427125,0.31275,1.38147,3.5256666666666665,1.4422760000000001,1.0276750000000001,1.06102375,0.4185425,1.06102375,1.06102375,0.4185425,0.822123076923077,0.6396814285714285,2.68949,2.86776,4.6851,4.98153,2.76725,2.645325,4.447605,4.81454,5.55125,3.288785,4.796015,0.7101971428571429,2.3504753333333337,8.386361666666666,5.22735,6.834078333333332,2.72769,3.89138,2.32129,5.0468,5.08815,3.02372,3.910575,3.11297,0.9847483333333332,4.708015,5.24225,0.9274979999999999,1.3921379999999999,1.6228383333333334,2.2910566666666665,2.5727933333333333,4.065455,5.07215,2.31375,2.31375,3.5043980555555554,6.34958,2.0948366666666667,0.6346572727272727,0.7335585714285714,2.2061699999999997,3.5186333333333333,1.09392,1.09392,1.09392,0.3609515384615385,1.07796,3.13155,6.08925,4.044933333333334,4.3732283333333335,5.5805,1.12621,3.4629666666666665,3.4791666666666665,4.016066666666666,5.9513,3.08399,7.727983333333334,5.35765,1.2055777777777776,3.9661000000000004,1.9318339999999998,2.830115,2.2749433333333333,6.288516666666666,2.8115566666666667,4.5282,2.0625125,3.949525,4.527125,4.354475,0.43676611111111113,1.99916,1.3682400000000001,2.38748,3.984233333333333,1.9596866666666666,2.63679,2.4229166666666666,2.5363933333333333,2.52655,2.762513333333333,2.818823333333333,3.4304333333333332,1.3805999999999998,2.24497,2.511913333333333,2.706823333333333,2.5910800000000003,1.97526,1.7678733333333332,1.86083,1.8373,3.27994,2.221363333333333,2.5790833333333336,2.1556333333333333,2.3772800000000003,2.6724666666666668,0.7855622222222222,0.7855622222222222,0.7855622222222222,2.577033333333333,2.5317933333333333,2.9043233333333336,3.371233333333333,2.7441166666666668,1.8042033333333334,4.15347,3.600905,1.368595,2.69856,2.83957,3.31447,1.6230428571428572,6.956065,4.722095,3.088235,3.917295,3.801105,1.795955,0.6264335714285715,3.686415,3.599555,3.31447,4.623215,4.348625,5.1334,2.9004033333333332,4.11664,4.18259,0.836235,3.07935,3.30311,5.000399166666666,4.74558,3.447845,2.763155,2.518815,2.4544099999999998,2.5236933333333336,0.6205458333333334,5.512427083333334,2.4949575,4.370295,2.76374,3.743673333333333,2.8543266666666667,2.3341266666666667,2.936463,2.936463,2.5189366666666664,2.0815033333333335,2.6793366666666665,1.8980266666666665,4.11621,1.4336959999999999,2.719295,3.60383,4.20759,3.811565,5.11505,4.63096,2.42839,2.117275,3.2043,2.878705,2.983235,4.835495,3.07301,0.9365971428571429,0.9365971428571429,4.621385,3.824601,0.9642160000000001,4.360795,0.9642160000000001,4.361175,4.1604,5.2179,3.56101,3.34309,6.4758675,4.082989166666667,5.9368,0.9104571428571429,0.9104571428571429,2.21178,4.699426666666667,1.5422766666666667,3.15715,3.83868,1.0856528571428572,4.40665,4.109995,5.794425,5.794425,1.2146783333333333,4.441085,4.97994,4.89121,6.0891,2.0253425,2.0253425,6.99815,1.0255181818181818,7.0163,1.824125,5.920415,2.546155,2.3985499999999997,3.24156,1.517824,1.96631,2.8717433333333333,2.9637933333333333,2.6215599999999997,6.9495450000000005,1.938964,5.3342,3.2540566666666666,2.75666,1.67551,2.2306,2.970455,3.43606,3.404075,2.767195,2.239275,2.246315,2.565645,1.051326,3.055215,2.005705,3.06593,1.9257994999999999,1.9257994999999999,2.9646,2.1282200000000002,3.757175,3.58955,5.2534,7.877706666666667,4.23611,3.34821,6.4095505,2.247596666666667,3.2975088888888893,2.15722,1.462042857142857,1.6866175,4.146085,1.6429133333333334,0.493735625,0.6530766666666666,4.057705,4.342125,3.108555,1.0473533333333334,3.03038,2.3436033333333333,4.832425,2.0274,1.84495,1.2220666666666666,4.84488,2.48496,4.21307,0.637291,4.42092,4.376245,4.00138,4.198235,3.3022,3.792715,3.288406666666667,5.3024,3.37461,2.656633333333333,2.69194,6.016685,7.0559025,0.8055525,4.939155,4.49339,5.1682,3.599933333333333,3.6443333333333334,2.853825,3.5072666666666668,3.5594333333333332,5.7512325,2.692272,2.4031195000000003,3.70877,3.846025,2.45283,2.3966175,8.305026666666667,4.572405,1.7986333333333333,5.48815,4.34344,1.832266,3.866355,1.4338125,1.4890285714285714,4.619005,3.86738,5.71305,2.8646833333333332,3.602745,3.868845,5.6366,4.05563,4.19597,3.545525,4.35475,4.065685,4.138809999999999,1.0401531538461537,1.0401531538461537,7.89621,0.7758675,1.8769352182539683,0.7758675,0.734765,0.3599411111111111,2.611700218253968,2.16703,0.5446728571428572,1.8769352182539683,1.887745,3.182555,2.067027361111111,3.486685,4.54023,7.29894,1.914935,2.076535,2.50979,5.12315,5.58895,2.08096,1.685805,1.071665,2.75747,4.191385,2.385005,4.63202,6.38266,0.5218033333333333,4.04576,0.8340249999999999,3.03309,2.71855,4.210395,1.2999466666666668,4.22837,4.857735,4.64943,3.41607,4.555085,5.87779,1.9207,3.60782,0.7650346153846154,3.34028,2.93596,1.213102,2.889553333333333,2.3846700000000003,2.480663333333333,3.792755,10.470189999999999,3.546520303030303,3.626275,3.27293,8.407969999999999,5.6054433333333336,3.345266666666667,3.930775,3.43441,5.87575,6.17405,5.9842,5.4026,4.239395,5.9543,3.6359666666666666,1.36978,1.9057033333333333,2.53592,4.13213,2.36808,0.2445810810810811,0.2445810810810811,0.2445810810810811,31.397140595238096,0.2445810810810811,2.792256081081081,0.2445810810810811,0.2445810810810811,0.2445810810810811,3.353861081081081,4.293195,0.2445810810810811,0.2445810810810811,0.2445810810810811,0.2445810810810811,0.2445810810810811,3.53482,4.94521,3.24483,0.3152589743589744,0.3152589743589744,4.062430666666667,4.22737425,4.300552916666666,3.6754768055555553,4.296934761904762,8.058533333333333,11.016420233877234,6.539788,8.136823333333334,6.597576464285714,2.5821533333333333,6.297848571428572,4.584251666666667,4.7008190705128206,0.3152589743589744,7.771363666666667,6.8984541904761905,6.658205,1.9013375,9.064091464285713,15.91608255952381,18.522849372710624,55.634223060704,117.51327990183509,1.3458433333333335,3.4073666666666664,2.8796,3.9098628738738737,0.3152589743589744,1.7187061538461539,8.069433333333333,14.251614464285714,20.26039888888889,48.26171753696742,13.01209363095238,2.4259825,0.2768924137931035,0.2768924137931035,4.315456666666667,2.583466666666667,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,7.87351,0.2768924137931035,0.2768924137931035,0.2768924137931035,2.73979,2.3218433333333333,4.27048,3.69952,3.850576666666667,5.58845,2.418135,4.1228,4.89274,2.91914,1.4465000000000001,3.455725,0.9922833333333334,2.187345,2.336063333333333,5.446023333333333,6.138786666666666,2.7917799999999997,5.9823681111111116,0.4094055555555556,0.5253406666666667,2.538816666666667,2.921,2.84632,4.306315,3.1661,7.38217,3.642715,3.13627,3.25757,3.98377,3.33655,3.02795,4.751155,2.19436,0.46010538461538464,0.8642618181818182,4.50922,1.9161775,3.68136,3.634175,4.469635,3.83385,2.360975,2.785685,0.5741726666666668,0.784602,4.168665,2.53075,4.05693,3.81152,4.7144200000000005,2.65342,3.051095,3.69533,4.62269,3.219285,0.8916463636363635,3.4807333333333332,4.825515,2.196665,0.914495,1.7413800000000001,3.931155,3.889595,1.854135,3.155575,3.874755,4.489125,2.431855,2.504086666666667,3.144095,4.08107,2.698895,3.78518,0.7697128571428572,2.283256666666667,3.226875,1.99281,6.0156833333333335,3.97011,4.361095,4.85275,2.846995,2.00712,0.6391809090909091,4.941725,3.887295,4.157545,2.45497,4.754825,3.89843,2.80542,2.643825,1.3140657142857144,4.594265,2.070255,2.68742,8.915995,4.23984,5.2186,3.490635,0.9665544444444445,3.02395,1.1583542857142857,3.24624,6.40735,5.6352,5.06835,4.25139,5.1469,4.32635,1.9234925,2.01475,5.4162,3.3099399999999997,3.5790666666666664,2.352905,4.954155,5.02005,1.4850716666666666,3.4690666666666665,2.73817,2.743375,3.58548,9.41905,4.337315,1.62121,4.629855,6.1026,4.3299725,4.01959,4.07833,4.444215,5.2369,9.211604999999999,2.3531133333333334,3.33216,3.846455,4.59228,2.55994,3.06326,5.12925,4.07862,3.67224,4.295084,19.546795333333336,2.9944900000000003,2.58942,3.3889333333333336,5.846591999999999,1.02833375,4.55226,1.9320075,4.98588,1.574685,4.34425,4.31103,4.04577,1.00930875,4.614635,4.705435,1.5323775,5.078897803030303,4.52956,1.1103,3.529535,1.854735,2.3126,1.65689,4.15146,3.775775,4.23625,3.462635,3.1027466666666665,4.462145,7.853811666666667,4.617715,4.772415,5.4976,3.4790666666666668,4.46368,5.13025,7.020167,0.942924,0.942924,4.455445,4.89885,2.110866666666667,1.5428166666666667,7.879945,4.249975,3.94713,4.135385,4.65727,4.674405,3.426885,3.811105,6.874499999999999,4.464953333333334,4.593415,4.98489,1.4905285714285714,2.836325,4.39826,5.3268,3.74508375,0.17868916666666668,2.45652,2.434225,2.5987666666666667,1.9932666666666667,1.023861111111111,1.4073575,1.324,2.65543,0.6826355555555556,1.3768157142857143,2.1929,3.709445,3.8844999999999996,2.40613,2.8760733333333337,3.0372,2.7468766666666666,0.729772,0.92941,2.992575,4.80519,3.804115,3.40153,4.236975,5.10715,4.61512,2.25256,4.348145,5.43635,4.757305,6.4054975,3.930865,0.47446705882352935,5.31975,4.50381,4.64755,4.85372,3.03632,2.0893,4.43687,4.343,2.592835,5.031956666666666,4.55366,1.4315316666666666,5.031956666666666,4.674125,6.419695,4.008865,1.274788888888889,3.79172,5.28125,4.011965,2.5305633333333333,5.21285,1.4632275,1.9786775,4.57919,3.45254,0.7546344444444445,4.63195,4.63552,4.12644,4.418075,3.17236,3.3489,1.8947340000000001,1.95393,3.109175,3.445625,3.7426666666666666,2.40809,2.63295,2.2265686666666666,4.463075,1.7735857142857143,0.8188322222222222,7.23576,4.209875,1.495936,2.8325566666666666,2.3748533333333333,3.7577,6.537273333333333,2.2962927777777775,0.886145,2.82153,4.787355,2.2868133333333334,4.61099,5.76615,5.38265,4.58596,4.1595,5.23325,2.1310733333333336,2.143683333333333,1.6018966666666667,2.0539333333333336,1.8987875,2.688696666666667,2.21013,1.8194,2.563325,2.968785,3.84991,6.435,5.64345,4.51283,4.525465,3.930145,4.276315,4.373925,0.92286875,2.547076666666667,5.5282,1.13309,0.7325733333333333,4.5872,3.17999,2.4674533333333333,3.62852625,6.786375,3.794365,1.04605,1.2956128571428571,0.6880577777777778,4.021873333333334,2.1813533333333335,2.7006333333333337,1.2247542857142857,3.1602366666666666,2.54598,6.03595,4.926135,4.458395,5.1279,3.893685,1.3150916666666668,3.51653,2.2606566666666668,3.5644,4.400245,3.692605,2.91194,3.28915,2.73877,5.85515,4.070025,3.104785,2.522,8.368625,10.369959999999999,4.11217,1.33104,5.7476,4.412565,5.2583,4.38132,4.118085,3.74104,3.363985,3.94477,3.7550653124999998,6.49615,3.82159,4.40038,4.45954,1.88108,5.3124,5.64545,4.86375,3.16305,3.1521575000000004,6.480555000000001,0.6337516666666666,2.689166666666667,2.6671099999999996,2.27518,5.1164,3.117315,1.4573483333333332,4.601715,3.5633,3.58347,5.04555,3.5387541666666666,6.663125,3.1375233333333337,3.1872233333333333,3.2322733333333336,3.134036666666667,4.10009,2.29515,2.09841,3.077253333333333,3.99913,3.4217520833333332,1.888055,1.531825,3.6005417857142854,3.146238,0.9788211111111111,2.7974683333333332,2.7974683333333332,1.1681525,5.80415,2.830885,3.12158,3.5203,3.57726,3.31669,3.311735,3.202585,3.15242,2.1430766666666665,0.5734626666666667,3.355615,5.56603,3.17623,3.77696,3.129245,3.87373,4.183405,3.17542,2.96056,3.752035,3.857705,2.87167,3.439125,3.22878,2.4909166666666667,3.948185,3.64905,8.47184,3.8631,3.433555,3.50064,3.92019,3.945545,3.549055,2.255185,3.53763,2.41885875,3.6968,2.985985,3.179365,3.83713,1.74081,1.74081,2.11594,2.74875,3.3458,1.54285,2.37622,3.22149,1.9944680000000001,2.67799,1.54285,4.651915,2.84296,3.75809225,2.8216,3.28449,2.204585,3.36924,3.787365,4.375815,3.631245,4.302755,3.61517,4.254225,3.57947,2.998705,3.25534,3.76561,3.822395,2.54678,3.652495,4.52224,3.941565,3.70321,0.38771260869565216,3.589285,0.42990750000000005,3.535695,3.38107,2.917085,3.614585,3.80439,5.950913333333333,3.17481,2.50309,2.2010666666666667,2.7289100000000004,0.854031,6.021835,3.012525,3.288905,5.0948,2.01757,2.656215,3.06505,3.05963,6.54488,4.721165,4.86731,4.12013,4.470455,4.179625,3.816655,1.5798783333333333,1.6727560000000001,4.134205,4.64001,5.56836,2.09859,4.760015,1.7939,3.4904333333333333,3.72151,1.9890454761904763,3.961345,4.612285,3.5008,3.889333333333333,3.1852933333333335,4.35545,4.89469,3.4476999999999998,4.373235,4.65237,4.89397,5.20065,4.417335,4.098275,3.598645,4.69526,2.499615,3.0715533333333336,3.0715533333333336,4.01354,2.5524766666666667,3.92759,2.78036,4.833365,3.4959666666666664,3.51238,1.78623,1.81573,1.1085566666666666,1.1085566666666666,1.852656,3.5449,1.66835,2.82442,4.439985,5.134013,3.4613666666666667,5.14435,5.87657,2.85924,2.863265,3.1511866666666664,1.6653866666666666,3.904575,4.154025,6.392315,1.7670566666666667,5.4443,5.3991,3.327196666666667,3.89706,4.226525,6.65405,2.2281066666666667,2.446775,4.11263,0.4759514285714285,4.753935,3.89319,4.99684,3.648315,4.256,1.78671,1.7667899999999999,3.813035,4.710615,2.331303333333333,3.738515,4.525105,4.62776,1.2224975,3.98869,4.62327,3.930915,5.3006,3.2458899999999997,5.482226666666667,3.625035,1.513656,3.49104,1.188115,2.8363366666666665,8.030436666666667,3.0756,0.8617018181818181,3.46744,4.585025,4.799005,2.2443825,2.2443825,5.217935,5.69,2.847285,0.4931488888888889,2.030765,4.277597500000001,4.547485,4.464695,1.781428,2.9801533333333334,3.45196,1.162767894736842,1.162767894736842,1.162767894736842,0.7751812280701755,1.3401845614035088,0.5650033333333333,1.162767894736842,0.7751812280701755,0.2660378947368421,0.8310412280701753,0.2660378947368421,0.5091433333333334,0.5091433333333334,0.5091433333333334,0.5091433333333334,1.0749683333333333,1.2711375,2.2518,2.270835,1.041835,6.019821666666667,2.550526666666667,6.587758333333333,2.822853333333333,4.4651,2.915805,3.09868,2.7000375,4.587805,2.7164099999999998,4.264755,3.972115,4.973615,2.4231775,4.51095,4.83277,4.04017,3.31075,4.91299,3.20144,4.53141,5.4222,5.0913,6.18715,4.901765,1.2607625,3.35072,3.79589,2.88331,16.36529,4.549465,5.37885,2.7930266666666665,7.21769,3.881025,3.87273,4.252535,3.23071,1.0044975,2.55296,4.37143,4.45132,4.312215,3.100795,4.054285,2.8475300000000003,4.11513,4.68869,4.34139,6.552178333333333,10.121135,1.4755285714285713,3.68283,4.237215,3.801105,4.00701,3.506705,6.80482,2.47973,2.8072,2.564305,3.88042,3.90105,4.791695,2.29991,1.785825,0.9296,5.02795,4.8215,3.960865,4.278975,4.169855,5.0529,4.081175,6.08025,5.17655,3.46571,4.09413,3.588365,3.06913,3.17987,3.389245,1.78893,3.82582,4.25134,4.986075,5.452200833333334,5.452200833333334,2.46814,1.78893,2.264205,3.54056,0.7007066666666667,1.5314616666666667,0.830755,1.5098725,2.67451,0.353953,3.040965,4.346125,1.5098725,3.2203910000000002,11.246870000000001,6.61403,2.3879275,1.12689,1.7701799999999999,4.785595,4.347975,6.115609142857143,1.9085675,2.16178,4.56087,4.57371,5.0802,2.2582366666666664,5.24315,3.6623,3.73159,5.05975,7.194922,3.91996,2.449005,2.743116666666667,1.7670866666666667,4.33423,5.761234999999999,1.6861339999999998,5.47605,4.37217,6.3232,0.6266706666666667,5.019723333333333,4.07559,3.904505,2.93422,2.726445,6.5437,9.399333333333333,6.5472,2.1953333333333336,2.1953333333333336,2.1953333333333336,6.2419,4.834275,6.2197,2.931505,3.40659,2.5422963157894736,3.16878,2.89474,2.5682045000000002,1.79317,2.5682045000000002,6.8624845,4.320926666666667,4.25124761904762,6.63323,4.25124761904762,4.25124761904762,3.1475242857142858,6.19011,5.3117090000000005,2.812194,2.812194,2.540825,5.0386,2.761275,3.57845,5.631594583333333,5.631594583333333,5.631594583333333,7.198065,3.4401225,3.35345,3.4145825,3.37775,1.17246125,6.764276666666667,2.44335,3.719965,3.05159,13.274669333333334,3.91215,5.269950833333333,6.67678,2.5520316666666667,3.330975,1.0973216666666665,5.269950833333333,3.38922,1.6854475,1.6854475,2.927625,5.059855000000001,1.673565,4.651645,0.8347340000000001,1.415385,0.8347340000000001,1.823595,2.508299,5.066429,3.73731,1.415385,2.95581,4.817565,1.12503,3.51151,4.114605,2.015525,3.856195,2.512995,3.04575,2.983995,1.047156,3.540705,2.46727,1.795465,1.5097666666666667,2.9579666666666666,3.260265,2.62051,3.686235,1.32837,1.32837,1.32837,2.977195,2.6325766666666666,2.6325766666666666,2.471145,3.840295,1.96993,1.317005,1.317005,3.701455,4.22869,0.72614,1.3887,2.704575,1.3911583333333333,2.7798583333333333,1.047156,1.047156,2.0432825,1.047156,3.2546608333333333,0.7718533333333334,3.2546608333333333,5.6904908333333335,3.007585,2.1773700000000002,1.6568774999999998,0.6811766666666667,2.3380541666666668,3.219845,2.3380541666666668,0.9198799999999999,3.186145,3.774245,3.592975,3.59604,2.511005,3.61375,1.8306833333333332,0.9367887500000001,0.53466875,0.9367887500000001,0.40212,0.9367887500000001,0.9367887500000001,4.55108,5.19555,5.12485,3.612725,4.87672,4.67512,5.24945,3.877445,4.07652,1.2636785714285714,2.4071633333333335,4.323834166666667,3.74433,1.29381,2.682933333333333,4.010225,3.801145,4.086025,3.673695,4.54114,3.424255,3.131615,4.2105,2.31102,5.68885,3.621815,3.868905,5.0579664285714285,1.1124114285714286,2.18273,3.60501,6.86278,4.46319,3.84031,3.261816666666667,4.949735,8.052466666666668,3.6811666666666665,3.02116,3.3928666666666665,5.21875,4.07603,5.54395,5.2085,5.20165,2.99771,5.1518,4.79632,3.4799333333333333,3.90191,3.5236,2.906075,1.9730033333333334,4.847335,6.45025,6.044,5.6402,4.044975,5.1713,5.7038,0.5249869230769231,7.250232500000001,4.230575,4.28216,4.242505,4.873155,4.24099,3.044116666666667,2.642175,1.397245,0.5616169230769231,1.702018,2.9237133333333336,3.66952,4.54653,4.571615,3.85318,12.086338333333334,3.427425,3.85828,3.133515,0.683535,5.81349,2.83626,1.44981,4.28607,5.71502,2.87876,8.46386,4.00622,2.304914,2.304914,2.304914,4.10829,8.90769,3.57159,2.3309375,2.3309375,3.12243,9.69966,1.0382475,5.52255,4.52593,4.69044,3.0338766666666666,2.1059,4.22965,3.692325,4.93498,5.722440000000001,3.813495,2.68646,3.681515,4.1875175,3.6003344999999998,1.31965,3.1701,6.01043,3.7144250000000003,4.70556,1.065375,3.960566666666667,2.540903333333333,2.5295166666666664,1.762925,1.64276,1.9931599999999998,6.07285,1.971565,3.91409,5.44805,1.938964,4.780645,4.07589,4.74681,3.3069866666666665,2.27239,2.62068,5.268,3.7900266666666664,3.7900266666666664,1.1740625,1.6747100000000001,3.145186666666667,4.333194,2.2885752727272726,4.905932666666667,1.7335660000000002,2.9052066666666665,2.0902233333333333,1.76775,1.76775,5.123,7.300293333333333,1.7933166666666667,3.03661,2.389205,5.54275,3.07636,0.8024660000000001,2.84949,0.8024660000000001,2.477325,3.795695,3.986575,5.1418,3.62812,4.687736666666666,5.9119,2.4379,2.0095199999999998,2.8915933333333332,2.177563333333333,5.61815,4.417605,4.35007,4.596035,2.62972,4.43954,0.96291375,1.068476,1.7446433333333333,1.4486966666666667,2.5019033333333334,2.6664666666666665,2.173626666666667,3.089653333333333,2.676065,4.453,2.485603333333333,2.6061533333333333,2.64615,2.32295,2.9828733333333335,2.6263666666666667,1.9808899999999998,2.42528,3.87314,4.35501,3.32409,3.850285,2.9409899999999998,2.4149325,1.94114,1.3332233333333334,0.28756,0.17142978260869565,2.129566666666667,2.0685066666666665,0.17142978260869565,4.249730615942029,2.37064,0.17142978260869565,5.932345902777778,2.256335,6.22219,3.21839,3.527433333333333,2.53105,3.1397566666666665,2.3373375,4.27548,3.3641,3.387033333333333,0.4712584210526316,3.9670499999999995,2.302025087719298,2.8877,1.754685,2.3433075,4.321825,3.185245,7.91065,5.67355,4.079925,3.641525,6.19249,6.05755,1.64219,4.045435833333333,2.124615,1.965785,7.6515,7.95897,1.2521033333333333,2.1354425,3.438025,2.286535,2.910025,3.099805,3.056685,4.38844,2.301705,3.200135,3.18888,3.17081,7.2476,1.3691533333333332,1.86692,2.960035,3.319375,1.57254,3.23815,1.443715,3.47016,3.154415,6.79875,3.423535,8.813794999999999,3.94514,1.488688,1.5320933333333333,3.48198,6.48946,1.58582,1.39849,5.57067,3.320045,3.960855,2.43219,2.2356333333333334,2.846325,10.347935,4.77501,6.18748,3.43882,2.363555,2.126965,2.56243,2.85128,3.30478,1.7412166666666666,1.4914466666666666,2.467276666666667,3.440395,1.731285,3.13765,2.52607,2.77486,3.558055,3.069435,1.313865,2.44319,1.0671233333333332,1.405988,1.413655,3.026035,3.315685,3.581855,2.527985,3.801715,3.8006,2.86676,1.5184739999999999,3.454495,3.4472699999999996,3.15419,1.712065,2.90859,3.259005,1.4275425,3.40967,1.7142566666666665,3.93479,4.17352,4.898325,2.497745,3.820755,1.692,3.34331,2.580875,1.661545,1.1999242857142858,4.0301,2.4748,4.216755,3.92973,2.76533,4.65738,4.362945,2.4060799999999998,5.5243,5.1091175,6.2192,4.590915,7.070593333333333,3.785555,1.5453533333333331,2.7698066666666663,4.69303,4.823435,2.904396666666667,7.227556,1.411322857142857,3.714866666666667,2.005255,1.7631340000000002,2.3850266666666666,2.7434833333333333,0.41817785714285716,2.9219399999999998,3.0251133333333335,3.53378,2.38384,3.383766666666667,2.2114866666666666,2.452036666666667,2.65615,8.950579999999999,4.83626,1.61161,4.884705,2.397938173913044,0.6884217692307693,2.8600100000000004,7.6171473333333335,1.656474,4.62952125,6.277815,1.8360625,1.53478,1.384995,4.08475,3.01441,4.6366,4.061802500000001,2.590056666666667,5.10115,1.079242,2.838282,4.08847,4.321955,5.25765,2.811305,4.628785,4.42196,5.5737,5.0316,6.12095,4.27361,4.511965,4.344825,1.522106,1.91189,2.822735,3.238655,1.2582222222222221,4.481865,1.9757366666666665,3.0913866666666667,4.051505,2.9503633333333332,2.6263566666666667,1.5221266666666666,3.3983000000000003,2.7429127777777778,2.6470233333333333,2.9666566666666667,1.9216333333333333,1.78766,3.681,4.454855,4.92839,4.256725,5.1803,3.18728,2.433595,3.01492,4.83251,3.1906166666666667,4.2536,5.0056,3.01231,4.438476666666666,1.7508866666666665,4.13903,5.230934166666667,6.3247970238095235,5.01265,5.3357,5.4058,3.7017333333333333,4.0446,4.65164,2.9968,3.9434544999999996,4.03903,1.319725,3.292175,1.718105,2.16027,4.433565,5.599535,3.9434544999999996,4.15404,3.73968,1.5422766666666667,3.739375,2.087885,2.5608299999999997,2.16313,2.638985,1.7260922727272727,1.7260922727272727,1.7260922727272727,0.6298872727272727,0.8723366666666666,2.355811666666667,1.1381675,3.444775,1.3350033333333335,4.19849,5.21635,5.06065,3.1075,4.10737,3.303425,4.971835,2.085425,2.92089,2.389965,3.247625,5.809269,4.81711,5.2235,4.352255,0.9868325,2.17225,1.4688666666666668,3.74336,4.119365,4.154695,5.0258,5.0429,5.1176,5.8499,3.5421,1.73132,1.4830816666666669,5.599596666666667,0.9996677777777777,1.3968833333333333,3.485526666666667,8.396235,3.84029,3.72899,3.226795,5.5100875,1.7523025,0.9566283333333333,1.49226,3.14689,3.32829,3.843485,3.45264,1.8474275,6.367575,3.12391,1.152665,5.5459,2.9003433333333333,3.1371333333333333,2.3648466666666668,3.7009000000000003,6.178531666666666,3.1163866666666666,3.1723966666666663,3.8029666666666664,3.0617066666666664,3.288603333333333,3.0393966666666667,2.901365,1.893985,4.644445,4.57521,4.638055,1.0220011111111111,0.758495,3.458933333333333,2.795776666666667,0.99976125,2.58695625,4.621455,4.3472,7.273755,4.979765,3.6006666666666667,1.688728,3.850855,3.6559,2.8894533333333334,2.6112165714285713,4.114875,3.0948700000000002,5.261983333333334,1.0083777777777778,5.3179,1.724918,4.553545,4.219855,2.86405,0.986035,3.043775,0.410339,3.727065,6.20385,5.75335,2.964772,1.406594,2.4430666666666667,0.7423777777777778,2.54522,0.7423777777777778,3.921305,4.52243,1.3621775,1.9344375,4.961538333333333,1.6949433333333335,3.627135,3.433665,3.88929,1.214458,1.5788266666666668,3.926395,5.2048,4.90249,2.967102,1.8654375,2.604925,1.568135,1.9964375,1.9551225,2.4067325,3.770485,1.3923222222222222,1.3923222222222222,2.652885,4.740362666666666,7.940365,4.5574200000000005,7.962985,2.38841,3.593525,3.96617,1.5334050000000001,3.751195833333333,4.138,3.36232,6.1535,3.09463,2.447545,3.027283333333333,4.40487,1.09770375,3.909085,4.79732,1.3038833333333333,8.18983,2.80866,3.055925,2.8376083333333333,3.892705,3.649525,4.403159166666667,2.6156466666666667,2.7695366666666668,1.9811500000000002,3.5713666666666666,2.653375,2.2185,8.146178666666666,3.3871333333333333,3.3337333333333334,4.161285,22.682266476190478,0.6708466666666666,2.58199,4.41991,4.75262,8.25383,4.52744,4.06488,4.885275,7.352996666666667,3.39716,1.5428,4.8320316666666665,3.252915,1.0551080000000002,1.0551080000000002,1.0551080000000002,2.65167,1.5622325,3.24906,1.441855,2.97041,1.5662266666666669,2.58256,2.453965,2.871395,1.441855,3.070925,2.55196,4.282665,4.77581,4.85752,0.7883791666666666,3.09265,2.56865,5.4137,3.96784,2.67103,2.28124,1.6651675,1.812295,1.338558,4.435355,1.4602625,5.01955,11.914794999999998,2.9192466666666665,2.408335,5.1409325,2.4902,4.077833333333333,6.54235,1.8307666666666667,5.6054433333333336,4.519675,1.1231283333333333,1.1553757142857144,6.781678,4.685135,2.207205,3.91278,1.8868225,4.524765,4.964205,4.64075,4.074735,1.3364242857142856,4.73591,4.95769,4.61722,6.510712,3.91822,5.5035,4.47158,4.257925,4.949745,3.5807,4.34672,1.7383675,3.44564,3.48969,5.46295,4.08394,6.28645,4.488075,2.07539,3.4088999999999996,8.67288,4.49995,3.11027,4.08586,4.07131,4.48059,4.29524,4.89901,7.150881666666667,3.540025,2.659663333333333,4.125006666666667,2.329735,4.477265,2.8933933333333335,6.5799775,1.5866533333333335,4.62494,4.49114,11.3926175,0.42386214285714285,4.13486,4.105015,0.6542285714285715,3.746015,4.37163,4.587635,1.02105,4.80276,4.954330000000001,2.76534,10.448221666666669,3.305236666666667,2.5968,3.04524,3.91857,5.70735,0.73358,3.854075,2.0876575,5.00525,0.6977246153846154,4.17985,5.4167,5.2798,3.36311,6.613165,4.274065,3.5358799999999997,2.57715,2.786023333333333,4.36836,4.863315,5.19905,5.10995,4.841675,3.4135000000000004,7.413105,2.919075,3.6798089999999997,2.052665,3.4507,2.8611299999999997,1.5032933333333334,3.0262766666666665,2.9128266666666662,3.01132,3.8931,3.536766666666667,3.2638466666666663,2.9277466666666663,5.59775,3.2368433333333333,3.619445,5.138,2.9314033333333334,1.0623333333333334,3.0656499999999998,2.967473333333333,4.227985,3.5894,3.0419466666666666,4.61089,1.95246,1.738925,2.902585,3.6552,4.70097,1.12890875,4.68019,3.08784,4.1421,3.1160033333333335,4.996842,3.859105,3.185485,4.710145,2.117125,3.722845,0.69079375,4.74325,5.10135,15.400858484848484,3.6519666666666666,1.0934633333333335,4.79073,0.6595221428571428,2.66745,4.49665,1.698145,1.4704,3.825655,4.679815,3.1951366666666665,0.7236783333333333,2.50462,7.57548,3.887125,6.01935,5.18995,4.79047,3.3706333333333336,3.2179566666666664,3.2184933333333334,6.999830000000001,4.42867,5.28365,2.112295,0.4419855555555555,2.181265,2.98562,1.652865,2.694635,4.367345,2.8573799999999996,4.65563,0.7604758333333334,5.10175,3.623135,2.978325,1.1312666666666666,2.8418500000000004,2.1861333333333333,5.10475,3.96512,2.035245,1.5980142857142856,4.124225,5.56205,5.33755,6.530493333333332,2.306503333333333,5.5175,5.10085,4.988555,2.4245200000000002,5.09715,6.043233333333333,5.25685,2.65164,4.79217,3.480645,3.18074,4.157225,3.9632,1.3642,4.94582,2.6131466666666667,2.82565,5.0410683333333335,5.0410683333333335,4.861365,1.915624,4.890915,1.06417,1.707614,5.11045,3.090996666666667,1.3490066666666667,3.3867,1.195686,4.3493,5.4079,3.507125,4.9201,4.53008,3.85123,5.580780000000001,3.254055,3.2027433333333337,3.0353333333333334,2.34095,2.7132,3.1689066666666665,4.09258,1.4425062637362638,3.01367,4.480205,5.1341,2.4177425,4.4237,4.80384,5.947283333333333,3.5738333333333334,5.5532,4.97417,4.99163,5.0237,4.38087,3.50252,3.65423,4.894735,5.6676,4.72618,5.12995,4.487765,4.54511,0.7310150000000001,5.12425,4.825335,4.397335,6.82461,4.56037,3.89857,4.43769,4.850615,3.681755,3.494315,2.1674525,4.5078875,2.14007,1.2803242857142858,3.676415,2.6704066666666666,2.43809,4.1288686666666665,3.4120000000000004,3.154785,1.0949533333333334,2.0322525,4.113195,3.501635,1.8592825,1.8592825,4.165075,1.923838,3.0750666666666664,4.60567,3.437745,3.73292,1.4550033333333332,2.093195,3.816889166666667,1.891995,4.30886,4.855165,4.37797,4.201805,8.749753333333333,2.795925,4.297275,4.895765,4.317795,2.9381833333333334,4.284575,4.420495,4.698245,2.4539,2.835903333333333,4.560945,4.247795,4.13631,4.10322,1.608105,3.631225,4.41333,4.65043,4.25122,4.118919999999999,4.118919999999999,3.1760241666666666,4.633325,4.65377,4.298615,1.7472239999999999,7.890185000000001,4.231995,5.38365,4.423855,4.55644,4.762725,4.71937,2.800285,4.37597,2.977275,5.33225,1.9963640000000002,5.2579,6.013888888888889,5.159,0.759649,4.6763216666666665,1.10561,4.949255,4.626505,4.618125,4.33297,5.52665,3.6334999999999997,3.6334999999999997,0.919535,2.27905,5.12055,3.91973,4.172545,4.49287,5.3859,3.075565,4.346975,1.3761349999999999,2.56135,1.66146,1.1937475,4.330836,0.866367,2.39505,3.2532366666666666,1.1818266666666666,2.37167,2.59281,1.362045,6.39453,1.8801275,2.4405966666666665,3.983625,2.5887,2.8714066666666667,3.94469,4.68215,3.555733333333333,3.1078566666666667,4.148266666666667,1.598638,2.0320325,4.85956,0.6447992857142857,2.0902499999999997,2.456878333333333,3.0894433333333335,2.86183,1.3626,0.7666333333333334,2.341153333333333,4.15172,1.2836657142857142,2.194515,1.4270625,5.7534475,2.1942475,4.35581,4.504525,4.280445,4.77948,5.17965,4.18198,4.332845,1.5689149999999998,3.817466666666667,1.7817219999999998,2.607083333333333,1.158647142857143,4.39379,2.2139725,5.590842,4.05835,3.76137,1.586304,6.6433175,4.756265,1.4718200000000001,4.02175,3.021965,3.848835,3.56038,1.99173,1.99173,3.2555666666666667,1.4205816666666669,1.4205816666666669,2.4245200000000002,2.7999733333333334,1.97526,1.368595,3.5005666666666664,1.09514875,3.2147133333333335,2.5117,1.89141,1.61719,2.1967125,2.4030225,0.284834705882353,2.43256,1.1053666666666666,2.557166666666667,2.0902233333333333,2.42839,1.0969077777777778,1.051326,3.6288666666666667,2.969746666666667,1.99173,1.9161775,1.9521233333333334,2.450016666666667,2.4563566666666667,1.797906,2.3686133333333332,1.08591,3.9012333333333333,3.0597666666666665,2.455033333333333,1.528684,1.289624,2.665275,1.289624,2.665275,0.7640025,0.7640025,0.4819016666666667,2.4175875,2.2410833333333335,0.7640025,2.2493575,2.6214333333333335,2.37552,1.8373,0.7855622222222222,0.7640025,0.7640025,1.582504,1.582504,2.013665,1.9161775,0.7640025,2.31536,0.48040307692307693,2.783673333333333,2.3340133333333335,3.0371466666666667,2.45845,2.45845,0.4100675,0.4100675,2.4245200000000002,2.09062,2.28024,2.0972,0.4100675,3.536766666666667,2.778075,1.714382,0.67329375,1.714382,0.67329375,6.12857,2.47701,4.2527,2.37815,3.119783333333333,2.7617166666666666,3.08961,3.2739966666666667,2.307285,1.7291825,2.8993466666666667,3.6811666666666665,2.3290233333333332,1.582504,2.34184126984127,2.34184126984127,2.6729033333333336,2.141095,4.205935,2.314416666666667,3.4882666666666666,2.72641,1.7196339999999999,2.64595,2.606,0.8307681818181819,1.39633,3.847255,1.791386,3.158253333333333,2.6271,2.750075,3.9230666666666667,1.6469383333333332,3.6616999999999997,3.1524933333333336,4.037733333333334,1.252064,0.2768924137931035,1.2354442857142858,1.2354442857142858,1.0511066666666666,3.407633333333333,4.016066666666666,2.7231566666666667,2.033656666666667,2.033656666666667,2.2731375,1.7142566666666665,1.0454599999999998,1.7203266666666668,1.7203266666666668,0.7640025,2.4245200000000002,2.775,3.586766666666667,2.5117,2.11824,2.11824,2.11824,1.0540488888888888,1.462042857142857,1.462042857142857,2.582675,3.08527,2.782176060606061,4.39641,2.5615366666666666,2.7898566666666667,3.75197,3.84144,7.5954524999999995,4.700215,4.78509,3.5652000000000004,12.933905,4.71888,3.581265,0.997565,4.49416,3.037065,2.06161,3.579,5.49195,8.460256000000001,6.1341,0.5114505882352942,4.028535,2.62588,3.907765,2.544025,4.51765,5.37005,4.606145,8.029325,3.34423,3.94159,3.80622,3.4503354545454545,8.211728256410256,3.2622999999999998,2.6488733333333334,3.78984,4.347785,5.01075,4.39557,6.6339820000000005,5.3121,1.296668,3.063865,0.8446025,4.81922,5.009,4.374265,4.652525,5.71425,3.571765,4.9068,4.02251,8.082615,3.933425,4.906627,3.5001333333333338,4.97801,2.9092,0.6536325,0.6536325,3.411715,3.83772,2.214885,2.462625,3.6958,4.44491,5.3797,1.943875,2.4959125,3.47989,2.5326166666666667,1.207375,4.127775,4.773855,8.53428,1.6750219999999998,4.13935,3.47325,4.292705,2.8166166666666665,8.22439,4.074975,3.7712,3.058816666666667,3.9776,3.3499666666666665,3.080026666666667,3.047883333333333,3.649335,3.59411,4.512245,4.4665,0.38426333333333335,1.3536266666666668,2.1824033333333333,1.7237875,5.0458,3.625405,2.5895233333333336,2.202965,4.40831,3.7444102499999996,2.331055,2.34816,0.8802030000000001,2.0711275,2.5864866666666666,2.5864866666666666,5.04515,1.8768225,3.3085299999999997,2.2687399999999998,2.3365,1.6719799999999998,2.99295,4.115675,4.008275,3.801515,5.0138,4.841945,2.805935,3.0016700000000003,1.861648,4.78044,5.606628333333333,2.59637,2.9795366666666667,2.3460125,2.657903333333333,4.045995,3.0071833333333333,4.732705,3.55058,3.378835,4.455655,2.95262,3.457515,3.93707,2.3085466666666665,2.5649666666666664,0.4011821428571429,3.0731133333333336,2.6373266666666666,3.54112,5.79485,4.36984,6.2086041666666665,2.1593025,1.6271816666666667,2.931975,5.2574,5.6108,4.5183,3.11136,2.198,4.942595,2.3161533333333333,4.70088,2.9369433333333332,2.23371,5.33805,5.0523,5.29305,1.7322675,1.8656925,1.0236779999999999,1.0236779999999999,1.172884,0.8773214285714286,0.84335,1.8016294285714287,4.4395,11.484648333333332,4.07841,4.5628,4.373165,5.817864999999999,2.680485,1.6132166666666665,3.8025041666666666,2.92937,4.1252,2.6628233333333333,2.7081466666666665,3.1394066666666665,3.3948,2.53233,3.3782,3.4812999999999996,3.1221533333333333,3.5643333333333334,3.4801,3.1769533333333335,2.9145233333333334,3.3594666666666666,2.5079833333333332,3.1658333333333335,3.2369566666666665,2.8904433333333333,3.4642,2.41938,5.922293619047619,3.3665000000000003,4.7153046666666665,3.2972633333333334,3.585933333333333,3.9277333333333337,2.8844166666666666,2.7231133333333335,3.1791366666666665,3.0366066666666662,3.5696,3.4628,2.17258,2.8073766666666664,2.9013533333333332,3.0014,3.0014,3.3897666666666666,3.4296666666666664,2.7005533333333336,2.6772466666666666,3.3256200000000002,4.3904000000000005,2.6195999999999997,2.863775,2.7072366666666667,2.838926666666667,4.902880833333334,5.0803,1.71985,3.32666,3.8339666666666665,3.629124,3.4157333333333333,3.9433666666666665,3.6078666666666668,3.344466666666667,3.3373660000000003,2.06414,3.1481795,3.5941666666666667,3.5499333333333336,2.6845766666666666,2.7768833333333336,3.9089666666666667,3.0192633333333334,3.1609466666666663,2.572875,1.3360383333333334,3.6603,2.61625,2.6521966666666668,2.683075,3.4591333333333334,3.27791,2.02042,5.8110219999999995,2.71036,0.951469,4.705315,1.9687729166666665,1.8258833333333333,4.556595,4.7976,3.304725,2.12735,1.593825,3.253215,3.376415,3.362475,0.4641465,2.01467,0.4641465,1.801245,1.593825,2.6313,4.01111,2.7444,3.46248,3.662795,0.652296,2.898343333333333,0.9419075,0.47623941176470586,5.0554,4.505775,4.864615,2.648875,6.16475,4.194155,3.49544,2.408545,3.495566666666667,1.683032,6.0,2.666715,3.93037,4.601265,2.5141266666666664,2.155746666666667,2.18377,1.3111216666666665,2.015255,1.08372,1.08372,4.41146,2.56175,6.1737850000000005,2.1443675,2.13523,2.311335,2.355276,2.5122,4.668595,4.61772,2.10552,2.2290633333333334,2.355276,2.878335,4.445401,2.833925,5.405258333333333,2.1443675,3.2582674999999997,3.21833,3.187,5.46195,5.1423,2.0097375,1.9568675,2.32933,3.6586,4.954875,5.3984,2.1366375,4.264885,1.6653866666666666,1.6286925,5.5508,11.840946666666667,2.189506666666667,2.7370866666666664,2.5607333333333333,4.643285,4.596175,1.871455,5.04665,4.39386,2.85344,39.81831903571429,3.1357133333333334,3.1709300000000002,0.4899855555555555,5.130476666666667,2.21916,0.9247833333333334,4.583505,3.83791,2.2269925,1.8926525,2.407766666666667,3.75278,1.38142,3.0997723333333336,4.02036,5.0223,0.9099769999999999,5.35395,4.696225,5.16405,2.8077199999999998,1.47063,3.5707675,4.626345,4.351715,3.01983,3.44536,4.033405,12.184802676767676,2.8368933333333337,3.043775,4.76026,2.69285,4.41675,3.5402,2.47136,3.305105,5.2233,5.22085,4.58625,5.0519,2.589205,3.951715,4.766665,3.385355,4.648655,4.83564,0.08510510869565217,2.254155,4.13762,2.68506,1.2393349999999999,0.442615,0.442615,1.837835,2.669425,2.963285,1.229816,2.7840000000000003,4.545935,2.90597,4.3923741666666665,0.6129135714285715,4.474095,4.02609,4.44454,4.009705,4.48131,1.230025,1.07228375,3.0908366666666667,2.8919099999999998,3.0319366666666667,4.458530242424242,4.18384,6.419404999999999,5.3954,4.55789,3.41823,2.2907816666666667,1.5682316666666667,5.5703,0.2958346666666667,3.14867,3.61612,3.91153,14.41527,1.87247375,3.034386666666667,0.62955625,4.81135,8.215405,3.12609,1.9928299999999999,5.4407,3.307233333333333,1.259472222222222,3.43047,2.614595,2.9626,5.0281,3.3471146944444445,0.84404625,9.347433333333333,0.71151625,4.74416,3.1156474444444444,1.345855,2.0420466944444446,3.0997425,3.0997425,3.829515,4.2282452500000005,1.3840625,2.29436,2.688665,3.354905,2.82718,2.37008,3.09844,3.20148,6.521178000000001,6.3183,4.146735,3.08898,4.837395,4.58381,4.003735,3.3132,3.420635,4.918025,5.2651,2.444103333333333,2.7144266666666668,1.4222483333333333,2.20397,2.4498875,1.4942425,3.4708,3.5478666666666663,3.30733,2.774506666666667,2.6763666666666666,1.4465000000000001,1.4317900000000001,0.4577227272727273,3.4079333333333337,1.2916928571428572,1.7598725,2.8155699999999997,2.52254,2.600893333333333,1.0390125,2.3486675,2.519975,2.83544,3.438125,5.63145,3.54756,2.82739,2.13569,3.33356,3.483505,2.35648,2.86015,1.929865,3.72113,2.576315,3.605975,1.32472,0.6193299999999999,2.553925,3.12649,3.015465,3.86959,4.65836,8.751560000000001,3.1132500000000003,2.7398900000000004,1.9710333333333334,1.9173459999999998,1.9173459999999998,2.707133333333333,2.5108266666666665,4.874945,4.91127,3.714365,5.1978,4.563435,4.51079,3.6363933333333334,4.489905,8.1848175,2.546325,0.493735625,2.9521833333333336,1.3639633333333334,0.997252857142857,1.9561766666666667,0.910398,2.16581,4.831295,5.7235,5.9855625,1.0427475,7.29314,2.01358,1.52099,2.6540133333333333,4.71301,3.1714599999999997,2.5479,4.119095,3.1419333333333337,3.7736,2.8958600000000003,2.942273333333333,2.7964566666666664,7.040245,2.418405,3.93359,3.6488033333333334,3.4735925,1.49427,1.0989525,4.252685,2.8071699999999997,2.949256666666667,6.8142875,3.555445,2.066875,2.5935,3.49909,3.4274,3.0318400000000003,4.471213333333333,2.9553966666666667,4.782275,2.445672,1.82614,4.90908,5.7501,5.05115,5.07315,1.3651799999999998,2.545825,2.09738,3.280405,1.3610233333333335,0.9439633333333334,2.695260833333333,1.99099,2.093375,4.132935,0.8293666666666667,5.96119,1.45053,0.7569318181818182,3.7183333333333333,4.312085,0.6988785714285715,3.376913,2.882024375,0.7666333333333334,4.72795,0.2027880952380952,0.2027880952380952,0.2027880952380952,0.2027880952380952,0.2027880952380952,0.2027880952380952,1.8295340000000002,3.780715,1.8295340000000002,1.8295340000000002,1.7476033333333334,0.2027880952380952,0.2027880952380952,3.3604333333333334,2.9777833333333334,3.68678,3.31926,2.286045,3.39244,1.6353714285714285,1.8171620000000002,3.6003344999999998,1.874628,3.4753000000000003,2.657067111111111,6.27325,5.16045,4.459705,4.316555,4.820575,5.40155,3.929535,4.067225,7.34887625,3.7434333333333334,3.5800666666666667,2.7625733333333335,4.895519999999999,2.5979433333333333,2.10081,1.9852166666666669,4.97812,5.54995,4.675565,5.35165,5.4935,4.81107,4.932345,0.7931154545454546,0.7450857142857144,0.7450857142857144,5.05045,2.2063866666666665,3.65669,1.0405357142857143,5.3246,1.4819857142857145,2.3470333333333335,2.58784,4.5553333333333335,4.5553333333333335,6.8624,4.466545,1.6863000000000001,12.869035,3.3961333333333332,1.1101577777777778,4.922705,4.46141,3.5878,3.66029,2.723075,4.245233333333333,0.6521866666666667,3.4913000000000003,3.2225533333333334,3.4851666666666667,3.2127700000000003,1.4296766666666667,1.39124,4.578410833333333,3.414733333333333,3.04236,3.4784,5.315480833333333,3.36862,0.758907,1.9594366666666667,2.5433033333333332,2.612703333333333,3.6446666666666663,3.417733333333333,3.23068,3.7175666666666665,3.24255,2.6568,1.0537233333333333,3.0804333333333336,2.7218033333333334,4.215255,3.63226,4.631905,2.673636666666667,3.292203333333333,2.7061,1.596676,1.8920766666666669,3.0011095238095242,3.8569,1.904432,3.20128,1.8071166666666667,3.932533333333333,5.357026666666666,5.1593946666666675,2.5641,2.653625,2.7364,2.695225,1.7235,2.65085,3.239836785714286,2.4509475,3.7157999999999998,2.769415,3.6890686666666666,3.60614,0.8702666666666666,1.221,1.7194575,2.22131,3.0769,3.4397,5.02065,6.9105925,3.84844,4.480085,4.528525,16.363037666666667,0.56438,11.32842,1.0295055555555555,3.17965,3.4623333333333335,2.3287633333333333,2.987935,1.509912,1.5184739999999999,2.741823333333333,1.462206,2.886085333333333,2.54252,3.17779,2.3023333333333333,2.8648366666666667,1.4975266666666667,0.7727375,3.3030166666666667,2.5630466666666667,3.1513733333333334,1.0540488888888888,3.8389,0.7613683333333333,0.37857153846153846,2.5454066666666666,4.23993,4.718705,5.61315,0.9623181818181817,4.135235,4.74781,1.1700625,2.4144125,5.3477733333333335,3.27652,4.07858,3.70722,4.13288,1.97656,3.801555,2.8074666666666666,2.911895,3.45075,2.63737,2.673985,3.76557,3.037665,3.53133,2.20012,3.221075,5.1744,1.4108766666666668,4.398185,2.1265375,3.929225,5.10161,2.2143225,2.8359199999999998,3.14652,5.729891666666667,2.5316633333333334,3.292335,5.6736,4.2527,4.361135,1.8293100000000002,2.570975,5.13275,3.7103333333333333,4.606215,3.591466666666667,3.2514800000000004,3.0292666666666666,3.886433333333333,3.1600699999999997,2.7243833333333334,2.73929,0.454285,2.439115,2.1483225,5.00475,5.07725,3.0145233333333334,2.9919100000000003,3.4129666666666663,9.954835,3.44834875,3.843215,2.88678,4.103925,3.059995,3.8157466666666666,2.7583533333333334,2.5866,3.1164,6.06245,4.738275,1.9837233333333335,3.28557,2.834755,2.6792166666666666,5.14531,1.683468,6.069073333333334,4.131115,4.824675,4.52904,5.31525,3.614315,6.834001666666666,4.7736,3.52876,0.7407928571428571,2.4276025,1.484425,3.0061133333333334,3.50813125,3.847185,4.053145,5.666,2.8154833333333333,4.98696,2.8639033333333335,3.401533333333333,3.1626499999999997,5.0214,4.83268,5.79875,1.9725599999999999,5.820501666666667,4.565625,1.4503466666666667,6.1497,3.480985,3.40783,2.060595,2.11613,4.835283333333333,1.2550828571428572,2.485176666666667,2.018765,4.184045,4.44827,2.4852133333333333,3.3101233333333333,3.065204,2.6457833333333336,4.406365,1.3160560000000001,2.2104633333333332,2.284733333333333,2.9626066666666664,2.43315,2.5923633333333336,2.57607,4.05053,2.8592,2.81958,4.432675,2.511505,4.30908,3.456445,1.5822622727272728,1.5822622727272728,4.801635,3.5599000000000003,1.7450475,1.3366175,2.1538675,1.9916725,1.136426,1.3946800000000001,0.632212,1.5326766666666665,1.477,2.6573966666666666,2.23102,1.74433,1.89126,2.2722233333333333,1.53596,1.7899166666666666,1.7414266666666667,2.1572925,4.18244,2.559115,3.2729766666666666,2.839675,5.8618500000000004,3.022175,4.372275,4.256879166666667,1.914415,3.968615,3.297455,1.89912,3.343045,2.3305275,2.832075,3.878745,2.29961,4.51342,2.77814,4.029825,3.5391,0.8139922222222222,3.761625,3.690765,3.818305,3.5822,2.5433600000000003,5.2525,4.92102,5.79578375,8.605973333333333,4.11082,4.523305,2.9848233333333334,3.75983,3.70763,2.18423,2.63556,4.673695,2.33694,5.529393000000001,1.814352,2.559305,8.792146666666667,2.9714500000000004,4.037476,1.4086957142857144,4.680745,4.992135,3.3843,4.353155,5.0283,6.389265,17.69082476190476,0.6297941176470588,1.0969077777777778,3.5727666666666664,3.918245,3.821445,2.25973,3.3596,4.08208,4.738565,2.85877,5.0677,1.5257033333333334,1.5257033333333334,5.3015,0.7673072727272726,2.04754,3.291385,3.92099,0.3609515384615385,1.8078200000000002,4.5191465,1.1623983333333332,2.9591666666666665,2.690046666666667,2.874325,7.40026,2.4158833333333334,3.046583333333333,1.88567,2.145443333333333,4.43192,4.966435,3.13648,6.908625833333334,1.7460425,2.789575,4.61533,6.88911,1.66239,2.437996666666667,2.52163,1.3873499999999999,3.192465,1.99490375,3.96916,3.416125,1.462875,2.019161,2.019161,3.1084266666666664,5.5039,4.036381666666666,3.696335,4.875865,5.51495,3.068625,3.66293,4.23902,3.51231,4.415256666666666,4.2051425,4.377455,1.00284,0.353294375,5.353,3.703135,2.41261,8.36352,1.4865066666666669,4.716833333333333,4.011595,0.3252125,1.9698966666666669,1.22801,1.8224433333333332,2.0379333333333336,5.462923,3.198365,2.806345,4.7141225,5.075,4.626195,0.6191800000000001,2.001345,0.580041,5.519496666666667,1.6350000000000002,5.242,2.2670025,3.2069875000000003,3.125955,4.450545,4.63545,4.850285,0.9291181818181818,2.99787,4.18274,1.92495,1.743595,3.545465,3.221595,3.254665,3.76291375,5.463057142857143,4.39305,5.42935,2.8958866666666663,0.9234255555555555,3.6006666666666667,3.85512,0.7212815384615384,4.140215,4.047575,3.900225,2.492605,2.63746,5.16545,3.20542,3.971035,2.06792,3.751705,1.969162,3.480915,3.69812,0.6604269230769231,4.626415,4.36545,3.217255,4.70042,4.166595,2.854405,3.91009,0.685152,3.20074,4.016918888888889,4.740525,3.2273633333333334,2.3518875,3.4623333333333335,2.3518875,4.74522,2.928875,3.512966666666667,1.7058166666666665,3.2617766666666665,2.137975,4.15095,3.037646666666667,5.50643,3.5602,3.32349,3.3090666666666664,2.4990464285714284,2.4990464285714284,2.4990464285714284,2.6759,1.0334466666666666,4.71518,2.2968266666666666,1.6588933333333333,3.510066666666667,2.61951,3.1910600000000002,4.568915,5.43595,3.957925,2.226505,1.238796,4.186095,1.870966,2.6621900000000003,2.821835,3.774865,2.17774,3.70014,2.540165,1.756468,4.911545,4.125065,3.75055,3.521555,0.7340866666666667,2.429326666666667,4.70828,7.354585,5.9213,3.03027,5.1024,3.233735,3.60774,2.10725,2.195875,5.26855,2.2329225,4.61242,3.94591,4.248015,8.945986666666666,3.97797,4.44108,3.42786,4.87302,4.44745,3.604505,3.604505,3.99307,3.8492783333333334,4.159185,4.122865,4.43815,4.49382,4.336105,1.16369125,4.204175,4.038285,5.6942,7.854150000000001,5.5343,3.8002433333333334,2.0130333333333335,1.5366883333333332,2.63815375,4.659405,4.00097,5.25852,3.0188900000000003,4.87933,5.22495,5.377,4.534235,3.1619566666666667,4.413285,4.514875,5.49245,5.4674,4.25719,7.43642,4.56527,2.20222,5.11875,4.579815,4.561565,4.181485,4.937325,0.7134554545454546,4.700225,4.686635,1.3140657142857144,1.30343,5.24655,5.17585,9.533878000000001,6.0411,5.53155,6.43865,2.74191,2.81766,5.16695,1.7791925,1.7791925,2.41351,1.5914400000000002,2.906635,3.3316433333333335,1.88542,4.166320909090909,1.3630933333333333,2.010085,7.029855,3.2560583333333333,3.494965,3.04413,3.965935,4.01089,3.2763899999999997,1.0422788888888888,3.971345,2.75107,3.93252,4.276635,3.8315366666666666,4.870685,4.770795,4.83284,3.64173,5.1222,6.56895,5.01945,3.080865,3.73364,1.8711225,1.8711225,3.98,4.611135,2.59197,2.6874566666666664,2.3416750000000004,2.9980700000000002,1.59967,1.59967,4.375755,3.25465,2.05402,3.492135,3.004775,1.839815,1.20517,1.4440777777777778,2.72625,0.4861152631578948,0.8579388888888889,2.554775,4.21127,0.39717,3.86018,1.977222,5.46765,3.832905,7.3527024999999995,4.45229,5.478496666666667,4.777565,5.03365,4.226075,1.96636,1.959084,5.11345,2.88697,3.8248,1.2318033333333334,5.1458,5.2335,2.596555,2.476235,3.111955,4.471355,3.50514,3.431965,3.79534,3.53806,3.274255,3.408785,1.07796,1.96327,2.337925,2.42809,4.29961,7.41259,0.8966879999999999,1.4653266666666667,1.4653266666666667,2.041,3.857975,2.510825,3.0356,5.353915000000001,2.9685400000000004,1.1747775,1.1747775,1.1747775,2.81667,3.2203910000000002,4.397825,3.07111,4.006385,3.266035,3.64916,2.946495,3.1178966666666663,3.493785,3.8954375000000003,2.0477600000000002,1.136426,3.097255,2.0477600000000002,3.81431,1.3412366666666669,1.73145,2.0299125,5.307926666666667,2.77216,5.75831,5.307926666666667,2.9861500000000003,1.9585483333333333,1.9585483333333333,2.523125,4.79175,1.9585483333333333,2.389665,5.7215,2.265125,2.62051,4.53413,3.196095,4.10311,1.9986333333333333,3.34131,4.21968,1.8714566666666668,2.156065,4.11202,1.9986333333333333,2.51517,1.97799,5.62976,2.46315,1.103564,2.459075,2.897375,3.0112186666666667,1.816275,1.9134120000000001,3.96232,1.6920286666666666,1.95066,3.09468,2.14086,3.024715,3.80744,2.1504066666666666,2.56198,2.106325,6.26939,2.279985,3.05472,3.207455,3.207455,8.271883333333333,0.9649133333333334,2.87889,2.387625,3.14798,2.25413,1.2164266666666668,1.2164266666666668,3.47842,1.75467,6.252295,2.124045,3.24409,3.02693,5.56638,2.57066,2.55488,5.336455,5.336455,2.41839,1.4966425,1.34269,1.34269,1.4966425,2.0099633333333333,1.2547566666666665,1.1668633333333334,1.5354866666666667,1.5795000000000001,3.474465,1.63589,2.90037,3.05113,3.187065,2.67141,2.7049,2.347525,3.1698391666666668,3.1698391666666668,5.71578,2.212005,2.8378,3.055405,2.915125,2.46754,2.722115,2.6947,4.9364475,1.6357975,1.520485,1.2971666666666666,2.1660316666666666,5.36295,4.073235,3.421615,2.814125,1.63098,1.63098,1.63098,4.19142,2.377675,1.1668633333333334,2.956745,3.322415,1.18134,5.1267875,2.9820775,6.41852,3.09164,1.80966,3.51528,3.0693566666666663,1.98859,3.38478,4.06593,3.14384,1.76384,2.334955,3.071925,3.000805,5.26324,2.049235,3.32586,2.53256,5.20476,4.44715,2.14397,2.31725,5.35484,4.97029,5.16197,3.91845,1.0359859999999999,1.0359859999999999,2.852417,2.852417,0.862082,5.1457,3.6723,5.19891,4.09973,5.22955,2.116505,4.280178333333334,4.280178333333334,2.386595,3.280045,3.406575,1.176676,4.498,2.97311,2.840465,2.703875,4.39227,2.33481,2.260085,3.25009,2.843045,2.92637,3.9635,2.70281,1.94456,3.565775,6.03047,5.26598,4.2394,2.63825,3.06287,2.581,5.13749,2.72944,3.23029,2.355105,6.96172,3.58179,2.20705,2.425685,2.90908,4.73314,2.26071,2.635875,2.68191,6.95085,4.81275,3.29154,2.25217,2.165125,6.29312,2.67533,3.03438,4.77947,2.84471,2.88858,2.419415,2.77836,1.9302533333333332,1.89734,1.4574166666666668,1.6074366666666666,1.7233266666666667,1.9959066666666667,1.413655,1.9019866666666667,1.760305,1.9302533333333332,3.88287,4.22717,2.129255,1.61345,1.61345,3.7430033333333332,3.7430033333333332,2.83489,2.83489,2.74758,2.0133,1.644955,3.61822,2.052375,2.052375,2.303165,2.303165,3.08621,1.87246,4.45436,2.2297,3.206875,1.9170233333333335,1.9170233333333335,1.623005,3.70666,4.95633,1.3412366666666669,4.35335,2.1504066666666666,1.79965,4.10159,3.050815,1.799705,2.248635,6.19304,2.03465,5.65652,3.014345,3.179905,3.04628,2.58615,6.32071,3.04734,2.376655,2.7280796153846154,2.896465,4.99354,3.239355,1.496142,1.496142,3.9803,4.70454,4.58232,4.96547,2.63734,2.915635,1.709015,2.679215,1.567965,2.786865,1.90178,0.818492,0.818492,0.818492,2.0939725,4.8979,2.0939725,2.05654,3.358015,1.420165,2.03295,4.16161,3.63361,4.9958,1.7480733333333334,4.91171,1.7480733333333334,1.7480733333333334,2.222355,1.808785,2.111575,5.67858,2.111575,2.357795,3.78622,2.13862,1.65064,2.82258,3.1424066666666666,3.5725875,3.113846666666667,4.497415,1.5221566666666666,4.558555,0.8366554545454545,4.824205,4.693595,2.3324925,2.3324925,0.8048790909090908,3.6615333333333333,2.81625,5.68755,4.997335,3.990055,4.585515,4.576045,4.363005,4.717105,4.188405,4.3626,4.24973,4.023545,4.810975,5.40825,3.342205,3.58954,4.504645,2.4578966666666666,1.6028099999999998,4.61818,4.107165,3.28575,1.545785714285714,3.665335,4.534445,6.21424,1.01339,4.824835,4.20203,2.01544,1.899605,3.14591,3.453395,1.61998,1.496142,3.71171,3.579915,2.618765,4.50829,2.862425,1.13731,2.56405,1.2758257142857143,3.0423899999999997,1.8413899999999999,3.4398,1.7728575,2.59342,4.623745,4.115975,4.968815,3.90901,2.23496,4.55669,4.19752,3.136855,4.28035,4.373825,2.6384933333333334,5.9517,4.78917,3.088965,2.5557866666666667,2.932365,3.04606,2.8975899999999997,2.8732933333333333,4.736085,3.935895,3.68289,2.4471000000000003,2.530136666666667,2.3771999999999998,2.8339433333333335,2.6326566666666666,2.24194,2.25448,2.3949525,1.4872925,3.08759,1.23686,2.0627625,1.9813575,2.345945,1.55568,1.85733,4.25938,4.432815,2.0108375,4.251055,4.27642,6.074088333333334,1.99419,1.6260020000000002,6.81055,3.90105,4.692755,4.43827,3.95892,1.933985,3.499605,2.740875,3.037105,4.41503,0.7018675,4.267825,2.047286666666667,0.8592372727272728,4.99449,4.319065,3.895655,1.8300023214285714,4.75943,3.593505,2.555073333333333,2.5157066666666665,2.4484666666666666,2.1031,0.57516,3.0498999999999996,3.06025,5.01625,2.572825,1.9598225,4.19059,1.0102925,1.7927516666666667,1.7927516666666667,2.598065,1.7927516666666667,4.598595,2.595315,4.90774,4.416375,5.97835,14.334303333333333,3.3775333333333335,5.38465,2.811255,4.630405,4.1657,7.18167,3.2929833333333334,4.38605,5.27065,3.98189,1.2588733333333333,4.23828,2.6389633333333333,2.76347,1.0117944444444444,2.201705,3.92975,7.813671666666666,4.64912,2.7999733333333334,4.579485,3.2555666666666667,4.12861,5.36645,4.58898,2.830515,2.8260400000000003,3.98947,5.57555,2.42427,5.14925,1.88928,1.88928,3.06835,4.98158,1.000885,4.225831333333334,2.4928225,3.53044,2.48791,2.4523066666666664,2.7081366666666664,2.2390233333333334,0.7155071428571428,3.391035,2.6793266666666664,4.970945,4.959445,0.2523140625,5.324,4.965075,5.2432,7.399203333333334,3.4962,2.8841566666666663,2.51768,3.3148,3.3433333333333333,1.9136066666666667,3.06031,2.8527633333333333,1.4828733333333333,3.2286133333333336,3.4497999999999998,2.9660466666666667,3.2416066666666663,1.4527027777777777,4.354815,2.37166,5.11255,4.64635,4.106905,1.5751033333333335,2.9031633333333335,1.2490275,1.787625,1.2490275,5.0706,3.6559666666666666,1.8161740000000002,2.4262075,3.768045,3.61886,2.99234,3.73003,0.377162,1.5203075000000001,3.809685,4.230875,4.65421,2.1312575,3.1866,3.13428,2.8265733333333336,3.49428,2.73609,4.61128,2.586175,2.5923266666666667,2.88759,2.58949,2.860393333333333,4.372995,1.90212,4.45308,3.7894175,6.1258,7.8807925,0.7823277777777777,0.835583,3.651195,7.317477500000001,1.590398,3.59842,1.2366983333333332,1.2366983333333332,3.384905,0.43632333333333334,3.85065,5.2469,2.574705,3.862085,3.105365,2.38106,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,2.200375,2.862805,3.49784,3.087,4.1376475,5.88568375,3.067805,2.0646633333333333,0.8857750000000001,3.180465,0.68593375,4.892480833333333,2.8278175,2.130135,0.68593375,2.360025,2.61617,0.8436425,3.5716487499999996,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,4.82524,1.61193,4.87191,5.11505,1.891422,4.682945,4.56636,5.35235,5.2548125,3.8320253571428573,3.1658,4.5031,2.670425,6.355805,4.40105,0.7282214285714286,1.3806314285714285,1.4886857142857142,3.9539000000000004,3.9539000000000004,3.211796666666667,3.93234,4.677165,4.07427,4.372495,3.3266466666666665,2.2147,0.46092714285714287,4.09729,3.0092,2.825985,4.120615,3.451795,3.2075199999999997,3.94184,4.348535,6.483320000000001,4.22557,4.63705,5.85255,4.52892,1.4222957142857144,3.60717,4.819580666666667,35.389744264069265,1.3911466666666668,4.63139,3.986495,4.508335,4.134225,4.917975,5.0936,0.4324352380952381,4.59262,4.546805,2.1473,1.91686,4.06025,1.58582,2.334005,2.28441,1.6831575,2.791205,2.4563566666666667,2.852975,4.306445,0.6258376923076923,3.7685,3.6634,0.4477810526315789,2.4935066666666668,3.374285,2.56103,3.73392,1.916395,4.762885,3.66733,3.07161,4.245945,3.29537,4.572325,2.96785,4.05484,2.2690175,4.819580666666667,3.72131,3.5374,3.23199,1.8039999999999998,4.419665,3.57258,6.848891666666667,3.323735,4.742105,6.7988800000000005,4.855554,2.3629125,5.0549,6.863267500000001,7.408054,2.5573566666666667,2.41427,4.774415,5.64508,3.94096,3.38744,5.548831666666667,2.3166825,2.143445,2.1289675,60.22678204819647,5.78905,4.279215,2.5672,1.08104,3.27371,2.90387,3.5370000000000004,0.9580377777777778,4.638675,0.7738244444444444,7.575755357142857,1.870966,3.10787,1.8325479999999998,2.62951,2.4995533333333335,2.4146199999999998,2.3981833333333333,2.17644,3.1720633333333335,1.5154166666666666,4.918176666666667,3.567266666666667,1.35091,2.265966666666667,1.3323533333333333,1.3982125,7.3369,5.86705,3.287725,5.2149,5.90294,1.5264428571428572,3.3539,3.2333,1.5832925,4.91976,3.857915,4.02907,1.95393,3.1245683333333334,3.648233333333333,3.85889,5.39195,3.99395,4.81575,2.1964025,3.697435,4.358099999999999,3.3384,1.7384,4.679615,3.3595,4.203535,4.94449,3.844655,4.24734,4.887815,4.27013,4.33765,4.59753,4.39026,3.1128366666666665,3.665975,4.765475,3.12599,4.159695,3.75185,1.37236,1.37236,4.60599,4.80831,5.3869,4.43577,4.883555,3.606533333333333,2.70376,4.34407,4.62936,0.694559090909091,5.1071,7.622645,5.17195,5.77335,1.3325222222222222,3.50353,0.8357316666666667,0.8357316666666667,0.8357316666666667,3.610485,3.4652666666666665,3.1987466666666666,3.5174333333333334,0.940207,4.76095,4.917,3.03484,1.807165,2.0540875,4.235525,3.81144,3.70199,3.0601439999999998,6.3046,3.493695,2.605653333333333,4.65433,6.55465,2.148,4.049695,3.61773,2.8328,4.281225,4.16114,4.025325,5.3727,3.77527,3.3004044444444443,2.0313066666666666,2.0313066666666666,0.7081354545454546,8.6465,2.049055,5.99305,5.56785,4.77966,4.32337,3.70379,3.0930316666666666,4.47961,7.768572499999999,5.744233333333333,2.3477799999999998,4.46164,1.1318199999999998,3.572865,1.9106466666666666,0.9469488888888888,1.1994857142857143,2.9252000000000002,3.2843166666666668,2.732153333333333,1.3468442857142857,2.9443966666666666,3.2272833333333337,0.9554177777777778,2.94416,3.4941666666666666,1.618916,1.7079280000000001,3.050603333333333,3.0850866666666668,3.2127700000000003,2.5054766666666666,1.7744499999999999,5.31565,4.865845,3.901115,4.402835,5.1092,3.123435,4.92607,5.51825,4.71216,3.973135,3.99374,14.384176666666667,7.723505,3.3114066666666666,3.428025,2.6220033333333332,3.67859,3.184275,4.35913,1.1187233333333333,4.605675,3.68894,1.22807,3.467685,2.954563333333333,4.247595,3.97096,3.746265,5.83185,6.934183333333333,3.954595,1.5521900000000002,1.5521900000000002,1.5521900000000002,4.73457,1.4538483333333332,1.449225,0.52976,4.345254583333333,3.1003166666666666,4.14555,1.0310700000000002,1.12550375,3.49917,4.47884,3.93709,16.99363126190476,4.66411,4.47385,5.9828275,2.9335799999999996,3.82936,3.95038,0.9604222222222223,1.45811,4.348835,3.83168,4.730775,4.4083,4.697215,3.869855,2.7377468888888887,3.308385,5.33815,0.58731,4.949155,2.2950475,4.68028,5.9606,3.6363,2.45534,3.9454199999999995,1.7685466666666667,4.19626,6.1055,3.009263333333333,2.28343,4.855145,4.769505,4.884555,4.148625,3.920385,4.195145,5.10965,4.9161,4.93438,5.3831,3.847735,1.2562842857142857,1.73771,6.888256,5.07565,4.427455,5.25345,2.5529,2.6773633333333335,2.6865666666666663,5.495043333333333,1.85825,2.037945,3.0903333333333336,3.32788,3.26854,4.464785,3.915795,5.50541,1.28985,4.545405,0.9997716666666667,4.06757,3.298855,1.7393049999999999,4.31469,1.0092522222222222,4.667475,5.29655,4.959065,4.700605,3.7750508333333332,3.8678,2.9255566666666666,4.729665,5.16975,3.214195,3.86319,2.40704,2.55691,1.936295,2.605435,3.64251,5.06245,1.09514875,4.3928199999999995,1.33706,3.144565,1.5560166666666666,1.09514875,0.2445810810810811,4.343655,2.902985,2.4118375,1.8269766666666667,2.58878,1.093665,3.672395,3.6548,4.759505,2.519573333333333,6.37625,7.3178475,3.027533333333333,3.179126666666667,2.73944,0.8445819999999999,2.2310733333333332,6.2809,4.79734,4.97542,5.18645,2.1307266666666664,1.2144933333333332,3.7842575,1.56418,2.2281275,1.7558575,1.586215,1.837775,1.870865,1.99213,1.863415,1.9220275,1.33104,1.516945,1.89591,2.351295,1.9635325,2.296466666666667,0.5433206666666667,1.660502,3.4944,3.1360033333333335,1.8801275,2.09579,2.0271325,4.44196,2.2468766666666666,2.534,2.773125,4.97721,4.96013,2.3436033333333333,4.62811,1.7463722794117646,4.31507,21.6612645,4.8054966666666665,4.54194,4.65042,3.487766666666667,4.078695,4.624415,4.214015,4.29322,3.0937866666666665,0.83246375,3.144755,5.0057,4.124095,3.94878,1.6937466666666667,2.26625,2.318966666666667,2.477505,1.378197142857143,3.1285666666666665,5.57065,4.14218,3.192825,4.23348,5.1852,4.30472,4.76874,1.3430625,3.810185,4.148895,4.60621,1.500662,2.6625099999999997,1.85421375,1.85421375,3.37731,4.924495,2.4960299999999997,3.1427333333333336,4.45415,4.62299,6.515644999999999,4.289365,2.28051,1.45811,3.420715,4.200335,3.2147133333333335,2.34184126984127,2.34184126984127,3.31645,4.40275,4.31908,5.283131666666667,2.279695,3.4324564444444445,0.5941744444444444,0.5941744444444444,0.5941744444444444,3.610885,3.734865,4.127648333333333,4.84855,1.78766,5.86575,4.824285,4.293085,4.270255,5.1157,2.698955,1.425212857142857,4.37654,4.983115,0.48365642857142854,4.056866666666667,4.92682,1.7477166666666666,5.62365,5.5345,4.65816,4.3134,3.85326,3.44013,4.4954,1.64575,4.37112,1.6513733333333331,4.08781,5.3263,1.120755,3.031775,7.081545,3.54193,3.9679333333333333,2.4717775,4.140555,5.50935,3.7326,6.687546666666666,4.24685,2.1768733333333334,3.166926666666667,2.761836666666667,2.8714399999999998,3.0930433333333336,1.7827833333333334,4.88522,0.6133216666666667,1.8433525,1.8433525,3.14782,4.64886,2.32922,3.25401,4.93342,4.03493,4.468705,1.3782633333333332,5.344255970238095,4.61237,5.3019,4.03793,4.386498166666667,3.8511615,0.5353366666666666,2.449408571428571,1.022095,0.5353366666666666,4.093515,0.8311022222222222,4.490475,4.014425,6.803076,2.0945033333333334,1.0550475,1.089668,2.223615,2.9085199999999998,1.6295133333333334,2.3822466666666666,3.319645,3.51653,1.9899633333333335,2.2473033333333334,4.704225,3.6684712499999996,3.845245,4.78268,3.57561,4.799145,6.9519383333333336,4.23049,3.4673,4.439005,3.65402,4.26432,4.98625,6.6391,5.3873,2.6049533333333335,1.0129255555555554,4.70968,4.180175,3.800265,5.0226,4.417245,3.81268,3.0208166666666667,2.6060866666666667,3.32328,2.9545833333333333,2.4758833333333334,3.175656666666667,3.441466666666667,2.7313233333333335,4.56727,4.6368,4.498705,5.62605,3.1095,3.1682,2.904425,0.7233642857142858,4.7001,4.126395,4.794405,3.3299833333333333,6.334983333333334,3.787805,4.64793,4.53448,0.6586061538461538,0.5634821428571428,4.33202,2.8634295,4.071435,4.98153,4.651575,1.910284,5.1063,4.478135,2.950836666666667,2.7094233333333335,2.42475,2.303495,3.4778333333333333,3.5041666666666664,3.307306666666667,3.3163666666666667,3.5581666666666667,2.6691,3.4122333333333335,4.106166666666667,4.417885,0.58348625,0.58348625,0.58348625,3.6754768055555553,3.867266666666667,3.525533333333333,2.87424,2.78075,1.16369125,3.2680966666666666,3.28943,2.218455,2.55736,2.2837066666666668,0.9131911111111111,3.0654500000000002,4.55156,9.659903416666667,1.5232079166666666,0.5153730000000001,3.60245,0.5153730000000001,0.5153730000000001,0.5153730000000001,0.5153730000000001,2.2240025,4.2138029999999995,4.283205,5.1922,5.8871,2.893353333333333,2.8691999999999998,3.10627375,3.1335083333333333,5.31635,1.0393733333333333,2.734773333333333,2.991823333333333,2.655116666666667,3.28302,3.546185,2.359766666666667,2.63233,1.1960777777777778,4.112745,3.601495,4.546035,0.84011,0.589244,0.589244,0.9685841739130436,1.8086941739130435,0.9685841739130436,0.9685841739130436,0.3416821739130435,0.3416821739130435,0.9685841739130436,1.42526,2.478353333333333,2.862055,3.215363333333333,2.58403,2.4384133333333335,3.069786666666667,2.62628,4.42224,3.402095,1.7852425,2.201146666666667,1.6539975,0.1842948416789396,0.1842948416789396,0.1842948416789396,0.1842948416789396,2.3580433333333333,2.7979299999999996,0.8134460000000001,4.817565,0.8124536363636363,1.7408100000000002,4.6246366666666665,4.884815,4.308855,2.76947,4.43477,4.287585,1.7598266666666669,1.1907175,3.83274,4.79893,5.7276,2.200605,1.4110433333333334,1.8193133333333333,3.3504666666666663,1.4214900000000001,2.73334,3.08846,2.9418466666666667,4.88521,4.08831,3.094775,4.44607,2.8197166666666664,4.691755,5.46085,4.34154,4.93664,5.14475,5.24852,5.246560833333334,3.0039480000000003,5.639776666666667,4.576575,5.28005,4.257215,5.0113,2.2243625,2.89546,4.197495,5.2819,4.357575,4.023125,3.61728,4.32679,3.865085,2.4016566666666668,5.5983,3.56405,7.5534425,6.1145,6.0916,5.14145,1.4624142857142857,1.01417,0.6373599999999999,1.783894,4.66323,4.77286,4.005405,1.7055140000000002,4.23175,2.781725,4.52085,5.12275,6.217036,4.163675,3.077455,1.77784,5.0752575,3.777495,3.319345,2.066685,1.08555375,3.840295,2.960515,3.9487050000000004,3.4814,2.007305,4.727395,1.5734899999999998,2.8717633333333334,2.499885,3.609125,3.08213,4.842345,2.0625125,1.547785,5.7341,2.9361266666666666,8.9726,2.7935,4.725375,5.65245,4.404735,4.78955,4.24012,4.62115,2.3038925,4.60948,4.946035,2.3781925,4.44604,4.30334,7.665265,4.86855,3.26245,4.32946,3.966075,3.6684712499999996,3.41739,5.27525,5.0986,2.4483275,3.0093266666666665,3.590666666666667,2.19012,2.681865,4.522605,5.8013,5.0203,4.645125,5.2637,4.757915,6.20355,0.6342761538461539,3.15035,1.4942571428571427,31.94064111346187,2.38286,4.43056,3.32712,4.42432,1.720766,2.4231366666666667,3.666249880952381,1.5176623809523808,1.5176623809523808,1.5176623809523808,1.5176623809523808,2.1485875,3.385745,0.3868711111111111,7.7754988888888885,0.3868711111111111,5.38205,5.01335,2.31124,5.5361,2.2996625,3.9142313333333334,2.56222,2.4481033333333335,2.67858,2.102253333333333,0.6406269230769231,2.5560033333333334,0.7439091666666666,3.1142366666666668,2.0250033333333333,2.328788,1.1661516666666667,2.328788,6.2752,8.042725,5.1276,4.17558,5.4608,6.04055,7.723116666666666,2.881425,1.787655,1.787655,2.314973333333333,5.04205,3.701425,4.422185,6.665603333333333,4.415025,2.97993,4.00837,3.379135,3.43587,2.1931,1.3562020000000001,1.72477,4.769865,4.06756,4.987316666666667,1.899385,4.637885,1.6839400000000002,3.26513,1.591966,3.327196666666667,3.4427,2.24121,3.2006666666666668,3.3068033333333333,4.886435,0.6702199999999999,3.441905,3.664766666666667,2.794696666666667,2.2851466666666664,4.302899375,3.1624933333333334,2.602716666666667,5.45291875,4.033105,4.907995,3.83826,3.48524,4.954755,5.226,2.3952666666666667,6.0402,2.275631833333333,2.3478833333333333,3.189166666666667,3.0479299999999996,3.3467000000000002,2.94478,1.9530900000000002,3.27270243939394,4.621455,3.4682399999999998,2.5685830000000003,2.5685830000000003,2.406675,3.770705,3.791845,0.6110009090909091,3.06558,2.97676,8.16605,0.9480181818181819,4.42399,4.143495,5.5933,3.757805,4.08807,2.19581,4.06057,2.809505,6.245,2.7724458333333333,4.03748,2.55886,3.884265,2.8457033333333333,3.53016,3.67055,3.96072,5.171151,3.016285,2.078415,4.585055,2.41186,4.522635,4.674555,4.83397,4.426615,4.013315,3.085975,2.0733966666666666,3.10378,2.6287733333333336,2.9024750000000004,3.4558,2.751842857142857,5.308479999999999,3.068493333333333,2.6415266666666666,7.1908441666666665,5.610332916666667,4.2409324999999995,3.2502933333333335,3.9632,3.931625,3.406955,2.2846475,3.9860125,5.039,4.69026,1.5929133333333334,4.54964,2.8781199999999996,7.0128924999999995,5.08115,9.144378888888888,3.94543,3.25098,2.31245,4.055545,5.7258949999999995,7.64464,4.03876,5.50374,4.464795,3.14033,3.90776,1.683468,4.989292000000001,1.536395,4.692505,4.677135,3.3350000000000004,0.885725,9.707041666666667,1.247288888888889,1.5273975,2.3099366666666667,1.64536,3.4201,1.34948,3.68867,3.36132,2.694456666666667,4.2462,0.961175,4.709545,1.3478133333333335,2.066509,3.76801,4.234245,1.985475,4.89678,1.588904,7.69437,4.288015,2.80169,3.87194,3.14263,1.1674491666666666,7.31422,2.909845,3.361405,2.229305,3.91639,2.194425,3.5218949999999998,2.017425,3.84269,1.28718,4.7695,4.644755,4.007385,0.9103490000000001,2.3205533333333332,3.771785,5.35715,5.1449175,1.4010479999999998,1.4010479999999998,6.0728,5.2212,4.11452,3.68695,3.355345,9.565045000000001,4.266205,5.3326,3.86145,2.3433075,2.0554829019457244,0.35435249999999996,0.1886303225806452,0.5758458781362007,1.125284523809524,0.7036931797235023,0.1886303225806452,1.287655,0.38721555555555554,1.4796370238095238,1.8635008781362008,2.33104,2.23783,2.11387,5.31965,7.0321549999999995,5.03565,5.653,4.520115,5.35945,1.2677266666666667,5.10575,4.183445,6.21715,5.40305,5.5786,5.82555,5.53895,5.6685,1.4440216666666668,1.5620714285714286,2.07624,6.585998,1.552748,5.4864,5.0017,7.403359166666667,4.97994,5.62675,4.572575,4.81564,2.700675,5.64455,5.5451,4.374043333333334,5.206,6.046335,5.8265,3.9278312499999997,4.27521,3.7042333333333333,0.949761,3.6819666666666664,4.72673,1.3643375,3.874833333333333,4.990265,4.395285,5.4408,2.5471,3.21412,2.514606666666667,4.91146,2.3446,3.66694,1.3033466666666667,3.34641,3.7858,4.404155,4.4938,3.43220875,0.6699174999999999,5.879,1.08886,4.143645,3.347766666666667,3.697035,2.0294766666666666,3.768205,3.715276153846154,3.9274,4.37219,15.051419476190476,5.08539,2.2190825,8.23446,1.4993525,3.736195,3.069793333333333,2.8841633333333334,2.2970466666666667,0.17834608695652174,3.291786666666667,4.63829,1.827932,2.2392533333333335,3.636433333333333,1.8634775,2.3021333333333334,1.4069842857142858,3.32923,5.3775,4.007155,4.18253,0.4759514285714285,2.3282633333333336,4.313565,3.919865,4.692685,5.1134,4.329895,3.998065,0.5519258823529412,2.5265833333333334,2.5265833333333334,5.6268,4.774005,4.908545,2.476805,3.7735333333333334,3.3457666666666666,5.03305,3.99828,5.9225811111111115,4.87095,4.59912,5.04745,2.599825,2.3205999999999998,4.821185,4.233295,3.573625,3.57159,1.7755400000000001,4.22638,4.359405,3.640905,5.07935,3.92248,4.724475,0.6577286666666667,3.49237,0.766735,3.2373066666666666,4.24316,4.37831,18.769893809523808,4.021625,3.629605,3.0693566666666663,1.17586,2.6789233333333335,2.455033333333333,1.528684,2.442895,2.414025,5.6011,2.5688299999999997,3.67663,5.24905,2.202745,4.648165,3.4819666666666667,4.41077,5.3898,5.3327,1.90861,1.7696,2.39341,4.7977,5.2162,1.1816555555555555,5.5953,3.869425,5.5714,4.949645,1.76753,4.55097,3.954315,3.63286,4.82068,4.363915,2.903636666666667,0.69576,7.520483333333333,1.564846,0.17868916666666668,0.17868916666666668,0.17868916666666668,5.1752,4.17909,2.51527,4.51218,2.814655,4.57395,4.336016428571429,4.158465,8.453256666666666,4.212665,7.096555,0.83072,1.1068825,2.618575,4.99681,4.67845,2.0722066666666668,5.50255,4.734205,3.36457,4.74065,4.691325,2.411653333333333,4.270785,4.9984725,2.557166666666667,2.815576666666667,2.9897233333333335,2.62862,5.8592,3.82643,0.6746614285714285,4.31386,3.4583,4.338535,4.888343333333333,4.846245,4.523765,5.34385,3.481705,13.72988625,5.2141,6.529240416666667,3.00145,6.965453999999999,5.2289,4.120545,2.4030225,2.3768666666666665,9.30914,2.1053833333333336,4.077633333333334,3.8936333333333333,3.778033333333333,2.421936666666667,3.03616,2.1619925,2.0915,2.907883333333333,1.88108,3.807066666666667,2.7563999999999997,2.5413900000000003,3.1694266666666664,3.6329,2.3228,2.3228,2.52461,3.4676333333333336,3.3828333333333336,2.44422,3.1140233333333334,3.5483,2.825563333333333,2.79848,3.441933333333333,2.4767233333333336,2.3036475,3.667066666666667,2.9434566666666666,1.860876,3.8874333333333335,2.7434733333333337,2.4087366666666665,2.990873333333333,2.4830383333333335,3.3675333333333337,5.570515,2.44537,3.4720666666666666,1.9276,11.277536333333334,2.93877,1.8328933333333335,1.92669,1.0511066666666666,1.648778,5.105066666666667,2.857824,2.857824,1.78614,1.5655849999999998,3.6102316666666665,3.8836916666666665,2.149363333333333,1.4962516666666668,1.598638,4.194746,3.3044766666666665,4.027833333333334,8.071983333333332,2.8343742857142855,3.33184,3.176056459627329,4.306,2.3036475,3.3283733333333334,3.1143066666666663,3.0214733333333332,3.088860833333333,0.8605975,3.2658705,3.18009,2.8271466666666663,4.36015,3.1599766666666667,0.6975618181818182,1.9890454761904763,4.42613,2.5700295,3.127473333333333,1.7519333333333333,1.7519333333333333,2.0694625,3.702396666666666,1.03305,2.3728575,4.877613333333334,4.877613333333334,0.6516523809523809,6.782299999999999,3.820845,4.58125,5.4659,1.2040942857142858,3.6072,3.5081333333333333,5.2713575,7.036231666666667,3.20525,0.727078,2.9308266666666665,2.7517866666666664,3.2645813333333336,2.80852,2.9011066666666667,3.0266266666666666,2.490405,2.4958066666666667,0.8444345454545453,3.146805,4.180525428571428,1.317285,1.3329214285714286,5.3599,2.50513,1.636965,4.49724,1.7884,3.54237,2.40911,3.4915000000000003,8.569764583333333,4.428651666666666,4.556035,5.2303,2.522427090909091,0.724726,1.61316,6.997906666666666,1.6620566666666667,4.160855,4.46597,3.752145,21.88062925,3.1360499999999996,2.039773333333333,1.17190875,3.2469333333333332,1.4664466666666665,4.037476,5.0917,3.2683745,3.1996933333333337,1.7355433333333332,1.3925966666666667,3.151146666666667,0.553700625,3.09009,3.6946,2.9042499999999998,2.699403333333333,2.6395233333333334,2.600546666666667,2.263263333333333,3.0795266666666667,1.6883780000000002,3.4069000000000003,1.5162483333333334,3.780035,4.170725,3.1521000000000003,5.0742,3.82658,4.037645,5.0933,4.70726,3.0746599999999997,2.9376599999999997,2.60746,1.287955714285714,1.287955714285714,1.287955714285714,2.011115,2.8080966666666662,2.6914033333333336,2.5887433333333334,2.425586666666667,1.6811225,4.06296,4.33907,3.618525,6.383025,3.31488,2.111975,1.8746375,1.1486666666666667,2.35729,3.76784,2.44714,2.637383333333333,2.4287666666666667,2.6995,2.53494,2.854673333333333,3.0609566666666663,2.61747,2.6557366666666664,2.94129,2.2973466666666664,2.08214,1.8108,1.841015,3.1831333333333336,3.1973833333333332,1.8967175,3.739145,5.27435,2.9855,2.672468076923077,5.553660000000001,4.418865,4.945515,5.546,5.4015,4.06184,7.292505,1.339825,4.57612,2.581455,4.967145,5.37785,3.32605,4.454735,2.2939725,7.39534,2.5985,0.8904166666666667,9.04073,4.82981,6.147460714285715,4.818155,3.0600545,1.80978,5.1527,4.48145,4.61467,5.37725,2.36577,4.332485,4.6366,1.6539975,4.32839,2.820975,1.4859866666666666,5.076,0.658364705882353,4.462083333333333,3.570905,4.52301,3.290775,1.816725,3.8116,1.942555,1.2630375,3.2594766666666666,3.5942333333333334,3.3193066666666664,7.268017435897436,1.689575,6.9647375,9.98641,5.9785375,3.53744,1.2636785714285714,3.0370566666666665,1.2636785714285714,2.7283866666666667,2.0161633333333335,0.3254241176470588,1.1755778676470587,0.3254241176470588,0.3254241176470588,0.3254241176470588,1.1755778676470587,1.1755778676470587,0.3254241176470588,0.85015375,4.977835,3.176845,3.08037,3.330245,3.706645,3.13882,3.15303,1.5968579999999999,6.819605,2.6816066666666667,4.172855,2.598543333333333,1.0152545454545454,1.24058375,4.86562,3.80937,1.0867744444444445,1.7436699999999998,0.7248318181818182,3.241537694805195,4.292595,5.34065,3.7894,5.684563333333333,0.6042723076923078,4.46561,3.688635,3.4125666666666667,2.435703333333333,3.2009566666666665,2.517403333333333,3.13617,2.6577933333333332,3.063245,3.517045,5.30405,4.70394,1.23069,4.47607,4.406275,3.051545,3.76688,3.39005,0.34829133333333334,4.75769,4.02984,3.418425,3.31504,4.61466,3.906495,1.8495,4.045345,3.902075,8.585185,4.91069,5.42875,4.116015,3.8660474999999996,0.8601075,2.10899,2.00615,1.48399,1.7476033333333334,5.0134,5.2729,4.295035,4.501445,3.0601439999999998,2.6441316666666665,0.9400666666666666,4.08914,1.1808533333333333,1.1370666666666667,3.13612,3.61801,5.11605,1.21286125,2.516243333333333,8.3693,3.1109466666666665,3.0535433333333337,0.86105,4.40008,12.106813333333333,3.552815,3.81629,3.259555,3.77529,4.93809,5.06265,1.927952,4.84664,0.6354792307692307,4.88855,2.2493575,1.8686025,1.8686025,3.347466666666667,4.71208,1.8032666666666666,4.975075,1.6942428571428572,4.795435,2.7714008333333333,3.05555,4.55466,3.363625,3.5006524999999997,2.3439425,2.59044,2.59044,11.397035,0.7813019999999999,3.661875,3.6206333333333336,2.1403825,2.058885,0.9549071428571428,1.354545,1.3106771428571429,1.961725,5.37815,2.600625,4.592852499999999,2.2143433333333333,4.60961,4.682955,1.6635016666666667,2.00467,1.0044816666666667,6.287090083333334,2.1126575,2.16469,1.683032,1.6861339999999998,1.17190875,2.5019187499999997,3.352275,2.729346666666667,3.17184,2.36375,2.5923833333333333,1.8366133333333332,2.983563333333333,2.6644733333333335,0.8871433333333334,1.9922766666666665,2.9637700000000002,2.8757266666666665,2.354906666666667,1.1676466666666667,2.5040833333333334,2.1150366666666667,3.4171,0.37139315789473687,0.3953166666666667,2.2428033333333333,2.2214899999999997,3.005095,3.13135,2.63614,5.1491,6.0502,4.33423,4.73901,4.290245,4.00955,2.3232266666666668,3.860755,0.6319927272727273,0.06583363636363636,5.0994,0.06583363636363636,3.93574,3.36672,5.67525,3.364625,6.06005,4.72717,2.485533333333333,2.6426066666666665,1.4113433333333332,5.5827,5.2319,2.9339099999999996,5.13715,2.03687,4.3212,2.1132821739130434,3.25444,3.354433333333333,3.94539,4.421123333333334,3.14645,2.1903,2.1903,4.05295,7.93726,3.49346,2.24832,2.43575,4.039295,3.48644,5.21365,4.204635,1.0894688888888888,4.320845,3.098516666666667,2.70261,4.14588,1.1063699999999999,2.4112833333333334,3.82925,3.98501,5.18195,2.79033,2.671,3.955615,3.83203,4.17139,5.63015,4.131975,3.366955,3.728025,2.9088,3.0466766666666665,2.647276666666667,3.4905000000000004,4.531185,2.9807066666666664,4.944630833333333,4.36368,3.238495,5.10435,4.5983,3.722535,1.4696820000000002,1.2896175,4.075725,3.2019466666666667,1.5869666666666669,2.85675,3.23144,3.28482,3.8576377777777777,3.102263333333333,2.319699166666666,12.861851472222222,1.8308333333333333,1.8444800000000001,4.81196,1.226028,3.2524833333333336,4.458625,5.1775,3.28376,1.0440588888888889,2.273,2.519573333333333,1.546438,4.61904,0.91029,0.91029,3.6731333333333334,2.0952066666666664,1.5779266666666667,1.6667325,3.344305,2.80013,1.98541,2.693415,3.4549583333333334,3.1357266666666668,3.0912333333333333,2.0503,6.19615,5.8496,3.86758,0.6938361538461538,3.368095,4.093605,1.0500272727272728,4.934735,3.3019266666666667,8.648276666666668,4.691845,4.972995,3.516955,1.4764575,2.745085,5.10005,4.970105,4.400895,3.759485,4.346455,3.76256,3.5018666666666665,3.5018666666666665,3.092585,2.892005833333333,5.0292,1.586675,5.535575,5.988541666666666,1.7477166666666666,4.943745,0.989958,5.20905,3.820685,4.645305,4.72478,3.75864,2.58995,2.55915,4.728395,4.533815,4.93615,5.2026,2.23462,1.383746,3.88398,2.3093366666666664,5.3178,2.942755,3.529455,6.955885,3.699635,4.4998,4.559585,4.18275,4.617245,8.255035,3.58978,3.322185,9.75507,3.94343,0.662415,2.138298076923077,4.62674,0.6726066666666667,4.843395,4.403565,5.1104,4.61939,3.535805,4.113595,4.665,4.74345,2.305215,0.7010914285714286,5.117,4.7126,4.70503,4.44704,2.7814433333333333,5.17835,3.660495,0.656386,3.8479,4.12617,2.340265,3.102983333333333,4.15898,2.248005,5.2162,5.27035,4.441905,3.4431,6.092619999999999,6.092619999999999,8.689986666666666,2.0998799999999997,0.83979875,0.83979875,25.906709999999997,2.841675,8.343655,0.3252125,1.22801,3.1961999999999997,1.00835,3.66377,3.821795,2.3566075,2.3566075,4.58701,4.778865,3.45051,2.5698708333333333,2.5698708333333333,3.403385,3.703405,3.96136,3.0252766666666666,2.257303333333333,2.3907941666666668,3.919247,1.97836,3.477785,2.5281833333333332,3.008889285714286,3.008889285714286,3.673833333333333,0.8779966666666668,2.51513,1.4745866666666665,3.635066666666667,3.14796,2.93005,2.822953333333333,5.02555,2.359765,3.0165733333333336,5.6984509999999995,1.517444,2.208465,2.981775,2.430563333333333,4.275715,5.744457809523809,1.1538633333333335,3.782033333333333,2.551125,5.04497,6.38603,1.551215,4.758623333333333,5.1534320000000005,3.334120857142857,4.578433333333334,1.1199814285714287,1.500662,2.911235,3.7898652380952385,1.4184183333333333,2.57965,1.601885,1.674842,2.37169,3.470346,5.277511,1.1231283333333333,1.6029142857142857,2.8904433333333333,12.4481,4.561843333333333,2.81082,1.260387142857143,2.764457142857143,1.0812071428571428,3.2972633333333334,4.576733333333333,5.1443,3.386233333333333,5.26705,1.31101,3.9277333333333337,4.323265,2.8844166666666666,3.761608888888889,2.9323533333333334,1.0384955555555555,2.4804999999999997,2.7985100000000003,6.89891,3.2427891428571427,2.60439,0.688884,4.716833333333333,3.4850999999999996,1.334838,5.670975833333333,1.9169425,3.193583333333333,5.9501,1.324311111111111,3.02524,1.0280181818181817,3.2472100000000004,4.36511,3.1088633333333333,3.001136666666667,2.1908433333333335,2.6369233333333333,5.20665,4.80322,5.2443,1.7265525,4.426325,4.37093,4.3885499999999995,3.629124,2.38584,4.201414,0.885294,2.910777619047619,5.52875,2.820275,4.20508375,1.4839875,3.344466666666667,1.9566880000000002,1.9566880000000002,7.010556666666666,3.1380966666666663,5.292241666666667,3.5622233333333333,1.9381266666666666,2.8638209523809524,4.706738333333334,5.799716666666667,8.272128333333333,5.033513999999999,2.7168595,2.1362866666666664,2.2519471666666666,4.03727,3.81848,1.580674,1.820845,2.544777142857143,1.063795,3.27791,19.134195,3.308856666666667,2.963903333333333,3.0465,2.955023333333333,2.56482,1.5121033333333334,3.081136666666667,3.3617666666666666,3.1480599999999996,2.4776000000000002,5.8110219999999995,2.71036,4.35441,2.828728,2.30979,1.32952,4.084292222222222,2.245485,4.607025,4.660745,4.04967,2.8512075,3.1594466666666663,2.4577933333333335,3.3346999999999998,2.4284266666666667,3.4680666666666666,3.338366666666667,0.7922236363636365,4.8803,2.511585,3.6605333333333334,2.9344683333333332,1.9762875,2.3947129166666667,2.3947129166666667,3.8482462500000003,2.2181345833333332,4.59856,4.510435,4.100085,4.43551,4.86382,4.6246475,4.6246475,4.2012,3.08191,4.92099,2.684065,1.651734,2.4622699999999997,4.528165,4.64277,2.606025,4.028175,6.2229525,3.8819666666666666,6.7297038928571435,2.991895,0.848794,0.848794,3.20094,4.527245,3.778725,3.3373660000000003,2.357963333333333,1.73001,1.6812033333333334,3.0757833333333333,6.85984,1.5385016666666667,4.142475,3.31855,3.792675,4.798765,5.15705,5.019817645833333,3.5110333333333332,2.372915,4.976005,3.29875,2.030745,1.1121320000000001,4.598655,2.7197,5.89195,3.17225,2.61965,3.468405,3.631575,3.90295,5.01605,3.357305,4.546885,4.091185,4.143015,3.531775,3.417,3.381315,4.23974,2.621026666666667,4.585575,4.16326,4.97423,0.7023533333333334,2.4313,1.926375,2.0248725,1.83216,2.78735,2.6671866666666664,1.7956033333333332,4.902315,5.61978,1.9556933333333333,4.180255,4.732325,2.25803,5.892663333333333,4.193982083333333,5.43985,5.13655,6.957496666666667,2.048146666666667,2.76092,1.9742133333333334,3.271653333333333,1.811845,1.75336,3.872495,3.548925,5.37455,1.089108888888889,3.062385,4.500245,2.317915,5.8481,3.61385,2.5217,3.6641666666666666,3.120175,1.9385825,1.4320297499999999,2.531625,2.4259825,2.8796,2.0189975,3.1957714285714287,3.1957714285714287,3.410625,2.97725,18.33503154761905,1.0351033333333333,4.2253541666666665,2.1517375,1.8980233333333334,3.986435,4.146225,1.972355,3.706375,4.61911,1.4243466666666666,1.4243466666666666,1.2230666666666667,1.8787900000000002,2.753856666666667,3.12448,4.487326666666667,3.997135,3.6862999999999997,0.5371052631578948,3.6483219298245615,1.9060266666666665,2.1999,4.4705125,3.519425,3.7693,3.56707,4.67906,4.16308,1.946505,4.695945,5.64508,2.219715,3.455335,5.03905,2.08017,4.439025,5.1929,1.2895785714285712,1.878986,3.6028333333333333,0.8648785714285714,3.174416666666667,3.949985,4.968535,4.675155,2.7429127777777778,7.9722116666666665,3.0193966666666667,2.824973333333333,0.47623941176470586,4.215425,5.174143452380952,2.7692869047619046,5.42945,3.67444,2.6248255555555557,1.88611,5.4992895,4.51205,4.785095,2.1550075,2.1346,4.43265,4.091566666666666,2.921726666666667,2.1720725,4.284743333333333,6.7712,2.6076,3.69972,3.53544,4.242,1.4072685714285715,1.4072685714285715,3.0724699999999996,3.2042333333333333,4.850025,4.77978,4.653105,3.70135,2.4960475,2.167855,1.5689433333333334,1.3792342857142859,5.1606,6.1329975,5.34925,5.5683,4.39512,6.66944,4.52067,2.74715,4.071021333333333,2.51078,3.0014875,1.652078,5.1335,2.3290233333333332,4.28427,5.3489,4.010745,2.681853333333333,2.9361266666666666,1.6353714285714285,2.54145,3.970333333333333,2.24469,0.564641875,3.377266666666667,2.96287,2.7313233333333335,2.63763,2.178695,1.852656,0.7468572727272726,0.7468572727272726,3.6623,2.048725,2.4636025,4.138645,5.59705,5.13775,2.509015,4.1007,4.667475,2.293976333333333,1.19156,2.56907,3.19363,0.9449275,3.2655475,3.07028,2.7609,2.17091,4.071395,2.627665,1.9409466666666668,1.3768157142857143,4.25808,6.51002,3.865005,1.8890532142857142,5.05065,3.22406,3.249555,3.332385,2.765065,1.7376766666666665,0.9974625,3.8019,2.2907391666666665,2.199343333333333,1.65079,2.2164766666666664,2.212143333333333,2.635686666666667,2.76621375,1.3640866666666664,2.14114,2.0220325,6.4811575,4.053235,3.96445,3.86993,3.687645,3.1321733333333337,1.6022534188034188,4.763885,4.84987,2.440385,5.3569,2.10057,4.44503,1.1646222222222222,4.066265,4.24691,1.76658,7.38898,3.53622,1.8099925,1.9401175,2.210305,2.566625,3.242976666666667,1.3374908441558442,3.199313333333333,5.5316,4.78123,4.45392,5.4456,5.44145,4.26467,0.93473375,4.54988,4.640465,4.2242,4.900705,4.264876666666667,4.75692,5.53305,2.986275,1.2393349999999999,1.2393349999999999,5.0613,5.80138,3.17255,3.161796666666667,4.06693,3.427245,1.603506,4.367985,3.97409,3.53523,3.800245,3.10441,2.668976666666667,4.80914,2.423943875,10.69384383640869,1.8155700000000001,0.79864,2.43871,1.672185,2.12375,2.3823525,1.78721,3.1527433333333335,5.0159,5.5611,3.053263333333333,1.4752983333333332,6.332737976190476,1.3318942857142857,3.2071366666666665,0.5145190476190477,4.115223333333334,5.8908,3.74852,4.422745,13.802495,5.385,3.176223333333333,2.9512933333333335,4.774025,3.143963333333333,4.774845,1.234445,1.330915,0.68506,5.9536,4.363525,1.961206,4.77112,4.985905,6.2857,4.820935,4.63416,4.718645,6.4457,3.73449,5.40185,4.391145,1.59732,4.467855,6.2957,3.800915,4.0157,5.269,3.1539,1.1838725,4.65047,3.896425,1.24177625,3.5635666666666665,3.3336666666666663,2.4271133333333332,2.7738099999999997,2.436636666666667,3.4827,0.6984809090909091,2.749686666666667,2.5937266666666665,2.6073033333333333,3.135256666666667,2.8040866666666666,1.927825,1.4212966666666667,2.6543,2.3974775,2.35899,3.539433333333333,3.0010666666666665,0.75062,3.0269166666666667,3.60122,4.82113,2.6215566666666668,3.9851,5.6529,5.7824,3.350125,3.70286,1.4886857142857142,4.06784,2.6018455555555557,3.9565816666666667,2.8764325,4.642425,4.73836,5.3715,3.39733,4.213166666666667,1.0205920000000002,1.0205920000000002,2.2094419230769233,1.640665,4.28399,2.4063345,2.4063345,4.912455,5.533,3.1093,1.1053666666666666,1.4867428571428571,6.1139,3.99808,2.7363166666666667,3.21237,2.6817,3.114225,2.7363166666666667,4.798555,3.13365,3.27816875,2.624185,1.893755,3.029495,5.11515,2.607785,2.942575,2.258455,6.1327,3.83369,3.2635,3.2635,5.37915,4.24402,0.5312776923076923,4.765815,4.61585,3.0018,2.611795,8.953341666666667,3.548166666666667,4.599315,3.70917,3.1630133333333332,5.8352,3.286035,3.44844,2.7399133333333334,3.261926666666667,2.5910866666666665,1.849878,1.849878,3.647545,3.593195,3.850425,2.22822,1.62117,50.547852007575756,2.8874366666666664,0.8720690909090909,3.0616233333333334,1.9987975,3.4294666666666664,2.8721366666666666,3.301213333333333,3.27906,3.0879066666666666,2.2123,1.08148375,4.639305,3.116135,3.432755,3.974695,5.33745,5.2931,5.2572,5.8759,5.79085,5.0761,5.66835,6.322337500000001,4.95668,6.1386,2.055985,3.97457,6.3557,5.82805,4.159055,3.2915,3.841695,2.295815,3.770565,4.77437,3.08727,3.7927999999999997,1.7585000000000002,3.461525,1.3160560000000001,3.153535,3.822585,3.56581,7.0399424999999995,4.849115,2.1233375,4.474785,4.19875,3.861905,1.08720875,2.859325,3.900665,4.59729619047619,1.1493275,5.3186,1.4688675,6.37905,0.6995611111111111,4.527723333333333,10.445126666666667,4.026265,4.347445,4.132225,1.8912333333333333,3.97699,5.4953,3.0409333333333333,4.43116,8.8929975,3.533333333333333,2.542543333333333,2.9500533333333334,2.8236333333333334,2.907666666666667,2.85688125,1.9627866666666665,2.629586666666667,2.947286666666667,2.71537,2.8610233333333333,3.33858,2.1500366666666664,1.6177466666666669,4.168557999999999,2.46379,2.3764399999999997,4.886791333333333,2.735376666666667,1.2722,2.0084325,2.8235766666666664,5.375335000000001,2.57005,2.355811666666667,2.355811666666667,1.5118425,1.5203025,1.970496,1.80549,6.022765,4.5970475,2.595325,3.196633333333333,3.5327,1.929005,0.5082825,2.7526100000000002,1.876225,0.58403,3.79951,2.5318,2.4291675,3.60244,3.8361541666666668,2.6448933333333335,1.6183733333333334,1.3415416666666669,2.04227,3.354585,3.897355,4.27581,2.975906666666667,4.06187,3.97797,1.124509090909091,8.79447,2.6661,3.175515,1.276625,2.78727,2.55505,2.55505,2.55505,4.575505,5.7587,2.020615,4.899505,1.41689,5.526996666666667,1.6616659999999999,4.313395,4.127345,4.160115,3.93826,5.08635,1.8537,8.157084999999999,4.26336,5.29675,3.306665,3.8375383333333337,3.171203333333333,3.0652666666666666,3.83674,2.7434600000000002,4.475210714285714,4.6529075,1.534035,3.929545,1.534035,3.696035,4.362439999999999,4.7921525,4.362439999999999,1.8010533333333332,5.7584,4.572475,4.43435,2.8600100000000004,3.05063,4.1766,3.086315,4.206005,0.5615835714285714,3.3191166666666665,3.1551233333333335,5.586423333333333,4.617565,2.3762,4.797285,7.4078333333333335,3.421445,2.91484,2.86743,2.3171833333333334,4.453275,3.631385,4.84145,2.29711,4.074365,0.8724299999999999,5.15915,3.217975,4.01852,2.7919066666666663,3.2108166666666667,2.1397666666666666,2.9267,2.7960833333333333,2.6950066666666666,3.947525,2.778075,2.778075,4.902880833333334,3.06325,4.52959,11.558025,0.9722244444444443,4.371155,2.8083766666666663,2.2114233333333333,2.96402,1.449225,7.554769333333333,4.011,3.94869,3.8404416666666665,2.0946266666666666,3.8396333333333335,4.601217805555556,2.44162,0.47343111111111114,1.7279820000000001,1.4344425,5.15535,2.68843,3.23534,3.7188999999999997,3.5182725,2.432165,3.93445,4.564885,3.71223,4.4295,2.06328,4.275285,2.450016666666667,5.81349,3.058745,4.39776,5.2122,4.612825,4.55906,1.95627,3.69485,3.657055,2.5455833333333335,3.36061,2.92567,3.035745,2.912165,3.895285,2.7757199999999997,4.643705,1.8368166666666665,3.875345,2.6816,4.353985,4.9617,3.66934,4.509285,2.65161,4.461335,3.718105,4.04925,2.95469,2.187395,2.77834,2.41883,0.8466766666666666,3.88296,1.980575,3.38444,2.57401,4.056025,3.11353,3.34567,3.065325,3.698865,4.694360666666666,4.2232,3.419365,1.3270533333333334,3.41304,2.81533,1.078148888888889,6.10355,9.19378,3.55889,3.49513,4.66315,5.05325,3.66881,1.9501,3.97159,3.8238,3.19271,3.202795,3.4952,0.63671875,1.2658085714285714,6.2394675,1.6375775,2.63885,5.126416,2.5471,2.222105,2.597855,6.70947,2.63796,4.004005,3.68668,0.7560944444444444,3.355415,2.46307,3.764155,4.521815,6.40433,0.742194,3.26763,8.87601,3.156765,1.259472222222222,5.361159583333333,4.82135,5.517,4.96268,5.0059,3.31051,2.6271,8.122885,0.8422959999999999,3.35261,4.177725,3.03654,3.67006,2.36232,4.343535,1.5420683333333332,4.12935,4.248105,4.25013,1.637,4.91106,4.346575,2.350705,2.08682,2.6067,1.334838,3.989475,3.2683745,1.877216,8.68091,5.587,4.59445,4.868945,3.436795,4.384915,1.1983457142857143,4.579275,3.935785,5.17435,3.552,2.67192,6.693037799145299,0.8981725,0.8981725,2.48669,0.94412,4.21817,2.723943333333333,1.004,1.71976,0.4227783333333333,6.637582500000001,0.9868325,2.730465,3.351415,4.00077,4.463695,4.365045,4.770925,5.5755875,2.950515,3.055605,2.27673,3.96959,5.25435,4.32078,4.01939,4.288045,6.83035,4.01921,4.207396666666667,6.024863,3.47934,3.6413425,2.287175,3.6413425,6.850712000000001,41.61069293506493,3.575835,3.31207,3.1735399999999996,4.79998,4.51272,3.417445,3.43049,3.66892,4.29026,4.63911,1.8752666666666666,4.894275,2.623785,4.83307,5.0135,4.53331,2.339723333333333,5.10955,3.754335,3.227545,1.5640079999999998,0.6307784615384615,1.674084,3.559366666666667,3.3367,1.35915,3.5278333333333336,2.80177,2.9144733333333335,2.963506666666667,3.1830766666666666,1.36206,2.7155966666666664,3.8154333333333335,1.8972887773487772,3.0149833333333333,3.183744,2.5064933333333332,2.8275433333333333,3.348466666666667,1.1519000000000001,4.79084,3.94793,1.168625,1.168625,1.168625,1.168625,2.826500606060606,1.9893833333333333,2.267625,3.912335,4.140875,4.54107,4.777575,4.6581,6.00665,4.802705,2.28365,6.2679,3.588525,2.495115,3.68699,3.722755,4.315885,4.391495,0.7618323076923077,1.5103571428571427,1.5165766666666667,4.90778,4.744455,3.24822,4.261445,6.212096666666667,2.2117333333333336,5.4921,1.6351666666666667,4.1393,5.2306,1.5559033333333332,5.99235,0.8398500000000001,4.786075,1.258054,1.2349825,3.74691,4.62231,4.716775,5.59685,5.7858,3.26957,1.417424,4.573375,1.4546675,3.712045,3.188445,2.6248255555555557,1.7198975,3.223315,1.7499500000000001,4.455045,4.655205,2.79321,5.8936,125.89393102976192,0.46741,5.9274,2.68958,4.84467,4.395195,2.71087,1.45671,0.40529904761904756,2.75734,3.60105,5.28355,2.87963,3.745835,4.53897,3.70828,2.98443,7.630523333333333,0.6687633333333333,3.92802,0.93654875,11.88637,2.982155,3.48617,1.1163666666666667,2.228375,2.624085,2.118075,3.03685,3.456566666666667,2.243403333333333,4.1778200000000005,2.5997666666666666,2.19967,2.09804,2.28463,3.14825,3.03634,3.50902,3.66611,3.55282,2.249643333333333,3.73311,4.335935,2.945335,1.1187777777777779,2.494596666666667,4.1778200000000005,4.731555,5.30045,3.956765,6.122,1.901045,9.88127,5.04605,2.602255,3.2593,5.9791,0.621916,0.621916,4.704644999999999,4.704644999999999,4.10886,3.9789,1.8056963636363637,0.6995025,2.78005,4.414825,4.18162,4.69292,3.73606,5.40008,4.572355,2.09232,4.47966,2.0295975,2.720955,4.767826666666667,1.74699,3.14052,0.49679999999999996,1.3146639999999998,1.3146639999999998,1.94944,4.845875,4.300215,5.69835,5.751501,2.75573,3.097705,1.930055,1.92169,4.551716666666667,4.058635,5.236736666666666,3.36403,5.236736666666666,4.725665,3.491975,5.968,3.84747,2.3790533333333332,2.3340133333333335,3.0371466666666667,1.370595,1.4114375,1.4919775,1.5089625,1.509145,2.19832,3.4176333333333333,4.611705,2.317185,5.1687,3.1452000000000004,4.456695,2.1558675,4.32478,2.956516666666667,3.3935,7.072333333333333,3.7625333333333333,5.185044666666666,3.402566666666667,1.478065,2.77277,2.9012933333333333,2.81282,5.0617,4.066715,4.89121,13.525774032436862,0.7656291666666667,2.06038675,2.562675,2.0263999999999998,1.3105314285714285,2.589425,2.597475,2.613575,2.6961,0.7510761538461538,2.1003925,0.5740263157894736,4.76955,1.877195,4.87557,5.0503,2.665275,6.0485075,4.702115,8.71355,4.39749,2.859435,2.972995,4.73396,4.57526,3.1462202857142856,4.66842,2.2130425,2.2130425,5.06465,4.120905,4.690915,3.946965,3.423133333333333,3.99445,5.3022,4.95035,4.622675,4.61917,4.461435,4.320815,2.37129,5.1452,1.313865,5.0631,5.15105,2.44116,2.36537,4.269145,1.4147633333333334,4.405795,1.7063425,5.829774673913043,3.89433,4.081495,1.50641,3.519905833333333,3.519905833333333,12.129875,3.80565,4.202105,1.12467625,4.683705,2.535925,1.3514525,2.5071,2.0141725,2.26197,2.04754,3.11919,6.3933,1.7268275,5.31095,4.868655833333333,4.755465,2.333285,2.32201,3.785065,4.635765,5.19725,3.969165,7.658629999999999,3.33202,3.4039,0.471985,3.73078,3.74934,3.4621,6.6294900000000005,2.4086933333333334,3.2072366666666667,1.3209733333333333,1.5387866666666667,0.564641875,1.7279820000000001,3.01915,1.538385,1.7840333333333334,0.69079375,1.26146,4.726745,2.47579,0.6918646153846153,1.5859183333333335,1.6657275,1.9215959999999999,1.3846433333333332,2.327565,1.5387866666666667,2.3781925,1.26146,1.26146,0.6918646153846153,1.620342857142857,2.48956,1.4184183333333333,2.836325,0.6918646153846153,2.54385,2.48956,1.4573483333333332,1.4573483333333332,1.4573483333333332,2.0477,1.160885,0.6918646153846153,1.051326,1.2425225,1.0511066666666666,2.04758,2.66745,0.885725,2.33694,1.6678714285714287,0.6918646153846153,1.7517679999999998,1.5387866666666667,1.9543333333333335,1.8685,0.937438,1.9543333333333335,1.0969077777777778,2.350705,2.5935,2.740875,1.2425225,2.41938,1.7499500000000001,1.7499500000000001,0.9527545454545454,0.9527545454545454,0.9527545454545454,1.3209733333333333,1.5387866666666667,1.6678714285714287,1.5859183333333335,0.9481285714285714,1.8685,1.37913,1.860876,1.791744,1.3209733333333333,2.81082,11.6766,0.69079375,2.53658,1.9852166666666669,2.73995,1.0812071428571428,1.0812071428571428,0.6918646153846153,1.4440777777777778,1.852656,1.6678714285714287,1.729362,1.8685,1.1816555555555555,1.1816555555555555,1.7408100000000002,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,3.5727666666666664,1.0969077777777778,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.40034272727272724,55.65007906926407,1.4300675,1.5018633333333333,1.6678714285714287,1.9852166666666669,0.9481285714285714,0.6297941176470588,0.688884,0.688884,0.688884,0.688884,4.3971,17.709450416666666,3.6110333333333333,0.7158363636363636,1.628122,1.628122,1.628122,0.7158363636363636,3.01915,0.6918646153846153,1.7517679999999998,1.7840333333333334,2.59316,1.0969077777777778,2.3762,1.0969077777777778,1.713778,1.713778,2.1145333333333336,2.1145333333333336,0.6918646153846153,2.125,2.125,1.0255181818181818,0.17868916666666668,3.01915,1.6809166666666666,2.551125,0.7158363636363636,0.7158363636363636,0.7158363636363636,0.7158363636363636,0.7158363636363636,1.9852166666666669,0.40034272727272724,1.0969077777777778,2.3955975,2.3955975,2.55915,3.347766666666667,0.6516523809523809,0.6516523809523809,3.122536666666667,4.173333333333333,1.2040942857142858,3.1649999999999996,1.11209,2.774275,2.0998799999999997,1.1063699999999999,3.345133333333333,2.211975,3.4431,5.5271,2.575385,1.2774111111111113,4.727245,4.78936,3.06822,1.7837299999999998,2.270323769230769,4.993355,1.9803441666666668,2.63434,2.838203333333333,3.337666666666667,2.429795,6.069073333333334,4.863805,0.17868916666666668,3.04356,4.950505,4.047205,4.29876,4.15058,4.805855,2.6273866666666668,1.8302479999999999,3.768165,4.558375,4.440615,4.611845,5.0096,3.20956,0.6816274999999999,6.67061,1.3401916666666667,3.019628,4.87028,2.6280766666666664,2.6280766666666664,0.7713254545454545,1.7198975,3.857515,2.882235,4.60141,4.76465,5.2551,5.2027,1.0094928571428572,4.606415,4.717445,7.367630208333334,2.1465466666666666,4.08134,4.669955,3.601055,4.252775,4.26783,4.96783,5.83975,5.23135,4.544338333333334,3.67448,4.628061666666667,7.478197,1.7466275,1.8234230769230768,2.9401499999999996,1.7607566666666665,2.7822566666666666,1.8454833333333334,5.12915,3.2569233333333334,4.178215,2.1008199999999997,4.581165,3.8886,4.985315,4.294055,3.740755,2.4320233333333334,2.6750666666666665,2.87875,2.7095800000000003,2.4710633333333334,1.6602616666666667,2.6436633333333335,2.7617,2.48798,2.48798,4.45342,2.89901,1.8936866666666667,3.2259766666666665,2.76999,2.755656666666667,2.8529466666666665,2.6204199999999997,2.773433333333333,5.38595,4.616515,4.49908,3.803866,3.803866,4.02035,3.4387333333333334,4.79464,4.36136,3.59312,3.355165,3.265345,7.2584,1.9693325,1.94366,3.300755,2.71399,1.2400866666666668,1.2400866666666668,3.55566,1.800675,4.158520666666667,3.70999,3.104875,2.086709,2.1918778333333333,0.5444924999999999,2.649,3.84857,2.2980425,2.403845,4.43316,1.2529866666666667,4.791525,1.2430766666666666,0.37161642857142857,0.5048114285714286,21.84857304265873,0.5048114285714286,0.37161642857142857,0.6380064285714286,10.71108,3.0944366666666667,4.00174,5.1105,3.2773200000000005,2.636845,4.347552142857143,2.13262,2.630675,3.03079,2.84294,4.26525,4.845195,3.364305,2.35763,3.235805,3.88564,3.92067,3.01191,1.077955,1.077955,1.077955,1.077955,3.201795,2.7562,3.098325,1.78889,1.2220166666666665,2.28393,3.760705,4.200515,2.78528,3.555925,2.3898,2.7714008333333333,3.798265,4.149015,1.0977516666666667,3.21201,1.0911,2.9208966666666663,2.5458133333333333,3.828666666666667,5.009,2.35875,4.54849,4.66367,0.7879711904761904,0.23591785714285712,0.23591785714285712,0.5520533333333333,0.23591785714285712,0.23591785714285712,0.23591785714285712,0.5520533333333333,4.514725,7.162816666666667,3.507305,0.60916125,3.816365,7.2848749999999995,3.085925,3.28075,1.1623983333333332,4.590935,5.7022,4.53782,4.665945,1.6592980000000002,4.80245,2.134943333333333,2.236824,4.48458,5.6798,0.79659,0.79659,3.37044,3.0138233333333333,1.91966,3.0506,2.808035,3.616835,2.51116,2.765945,5.6984,5.46735,2.492105,1.783675,3.9632,3.171315,2.12676,3.59597,3.68774,1.82436,1.1080066666666666,3.96192,3.24875,4.888343333333333,6.637545,1.5682316666666667,3.75564,1.0951466666666667,2.46969,4.538345,4.220265,0.47185785714285716,4.008765,3.949845,0.964359,2.866896666666667,7.940926666666666,4.033965,2.119095,6.2480020000000005,4.71147,3.556285,1.54075,5.737026666666667,2.8704699999999996,3.6068,3.6850666666666663,2.0288733333333333,2.0288733333333333,4.8821625,4.8821625,3.1345178571428574,3.1345178571428574,7.10535,3.1345178571428574,3.1345178571428574,3.7343589682539684,4.732665,3.53672,3.6022658333333335,2.8731766666666663,4.60051,4.00641,3.093083333333333,3.156703333333333,4.36256,3.314996666666667,2.6750066666666665,3.15286,2.2674233333333333,2.589355,4.806865,7.39309,6.975285,4.65134,3.559435,3.886195,6.653626,4.943525,4.3504,4.412655,4.328785,2.29588,2.05602,2.02336,5.26595,5.107,4.7085225,4.417675,2.207196666666667,2.9245300000000003,7.223811666666667,2.0477,2.490346666666667,3.291923333333333,3.291923333333333,3.214835,5.01915,0.7809066666666666,3.2739966666666667,4.550575,3.1285566666666664,10.2823325,4.47212,2.61962,2.61093,5.4032,6.07295,2.953715,5.5087,2.45911,4.737615,2.9696291428571433,4.255425,5.25015,5.0895,1.2212533333333333,3.5485333333333333,1.1867775,2.5144699999999998,4.9851487500000005,7.805199999999999,2.7203133333333334,2.4633366666666667,6.578186666666667,1.656474,4.673825,5.7682,3.418505,3.53473,2.4157100000000002,5.00555,2.62762,0.506103076923077,5.41155,2.951015,3.6616999999999997,5.3549,4.90164,5.149,7.111387499999999,5.29795,5.6449,7.693280000000001,54.88614833333333,4.92098,4.051045,5.01605,6.2616,4.802505,4.941975,4.46372,4.708415,1.9323325,4.14854,4.09076,4.411195,2.49509,5.07495,3.824825,1.5614000000000001,5.64755,6.59805,7.369176666666666,5.31465,3.165655,5.1945,3.043165,3.23347,3.47402,4.010985,3.58154,6.32927,2.63105,1.0741814285714286,2.3099457500000002,0.563106,0.563106,3.74597,0.563106,2.3404820357142855,2.3404820357142855,2.949920035714286,4.657867749999999,4.901718285714286,2.3099457500000002,4.535730833333333,2.5061333333333335,1.4184183333333333,5.0919,2.07196,7.399392,5.85261,11.426341674242424,3.1947500000000004,2.8033366666666666,0.2726490909090909,1.7447079999999997,2.480776666666667,0.93012125,1.5932700000000002,3.1768699999999996,1.7084425,2.8433,0.686485,28.541254583333334,1.9407575,0.7614515384615385,2.85763,2.85763,0.44367500000000004,2.15417,2.94706,1.245305,2.00623,1.599145,4.399225,2.829425,1.9825833333333334,2.255786666666667,1.1424166666666666,2.3489925,1.6266983333333334,5.995154749999999,4.39519,6.930509166666667,2.4001375,3.4236,1.0423316666666667,2.751385,4.845595,5.9652650000000005,3.1641866666666663,2.2619766666666665,5.577604166666667,2.2360375,2.5333566666666667,4.50922,1.07448,3.9892,2.3511633333333335,5.57925,5.01015,6.05015,3.38731,4.2830425000000005,4.2830425000000005,5.2626,2.03634,5.6541,2.8874133333333334,1.5754225,3.4123,3.725325,6.518904166666665,5.62705,2.93592,2.228083333333333,2.791815,1.3979614285714284,4.67152,1.13232875,5.488910000000001,4.341375,7.77552,4.20688,4.64164,4.25446,8.596488333333333,5.02155,5.0554,1.077,0.7634214285714286,4.65228,4.717505,2.223265,3.330595,3.475825,4.266845,2.51904,5.2654,2.8166466666666667,5.2292,5.31915,4.5665,4.663825,4.762265,3.137825,6.9380525,3.26098,5.0045,3.171965,3.85488,5.785986547619048,0.6076064285714285,3.6168666666666667,1.64015,0.7112022222222223,4.49524,5.0732,1.045465,1.97481,6.04104,3.86775,2.22375,2.8139266666666667,2.62091,5.07575,4.30783,1.8865980952380954,4.131135,2.37692,3.5939333333333336,4.50787,5.10615,3.1409333333333334,3.8046666666666664,3.8551,2.02532,7.26734,4.69413,3.687115,4.43707,2.320105,4.257425,4.68868,3.117755,4.066475,10.53414,3.774445,3.9548016666666665,4.69543,4.401935,2.446775,3.84549,4.08358,5.2273,3.1697466666666667,4.153835,1.960075,2.6086666666666667,3.45222,3.172415,4.655615,1.677684,4.49795,3.0433833333333333,5.2419,3.00602,2.200405,4.101715,4.662915,1.03967375,3.00724,2.674186666666667,4.774808,1.7767060000000001,1.61777,1.2447,4.920615,5.55565,6.140295,3.9809925,2.6574,2.37767,2.22918,4.54616,1.56009,3.70858,3.05071,1.906295,0.9851076923076924,21.069219615384615,2.948605,2.845935,4.67981,4.169445897435898,1.5040533333333332,2.7376966666666664,2.965559318181818,1.234154,1.8455066666666669,3.80711,5.2435,3.6991883333333333,3.69137,5.4711,4.81963,7.489700000000001,5.253455,5.12245,3.83193,2.85271,3.805425,3.955145,3.4326666666666665,4.28322,2.06652,5.2167,9.67902,4.26719,3.194245,4.20062,0.5599775,3.158253333333333,2.0923133333333332,2.4710225,4.26056,3.55874,4.48463,3.79752,2.89712,2.202965,1.671765,1.4800280000000001,1.9336533333333332,1.2396,3.960095,4.073365,4.662085,4.909225,6.99782,2.1536166666666667,1.388186,2.14224,7.642386666666667,3.547065,2.789575,3.155525,4.60562,3.44097,3.39728,1.679456,4.07558,5.19065,4.29689,3.934205,3.604095,3.992895,4.335045,3.82517,4.48067,3.47021,2.074805,3.1881166666666663,2.963475,5.72545,2.73877,4.3321570000000005,4.21571,3.04481,2.6887166666666666,2.2563933333333335,2.127866666666667,2.3908776666666665,2.3908776666666665,1.875,2.9264233333333336,2.34712,2.3022966666666664,1.88351,3.86303,2.3690366666666667,2.683996666666667,2.80135,1.6571633333333333,4.19655,2.844,3.18605,1.7933666666666666,5.23225,5.09935,5.129386666666667,2.251875,1.825655,2.720695,2.55014,2.18278,2.78014,1.9108025,2.41743,2.256325,6.719784666666666,4.3559325,3.410085,0.5920675,4.654945,4.49487,4.33197,3.082315,3.84097,3.599864166666667,5.94655,4.53168,3.876755,2.9190214285714284,2.1599115555555555,2.50002,1.835612,1.6440100000000002,1.462502,2.10976,1.819355,1.3632566666666666,4.047268857142857,0.6918646153846153,0.5442055555555556,2.15132,1.61719,1.594714,1.5429016666666666,2.573110909090909,1.5703716666666667,1.727796,0.59174625,173.14573548584053,0.5485026666666666,2.03228,1.062994,1.3146775,2.01575,1.45342,1.9488475,2.4139933333333334,1.899245,6.8336,3.210645,3.750874761904762,1.7334033333333334,3.24195,1.2851166666666667,1.2851166666666667,5.9669525,0.4819016666666667,2.3216125,3.3638999999999997,3.17844,0.7244036363636364,0.6234705882352941,1.2192728205128205,1.0946454545454545,2.49387,4.261045,2.410685,2.304235,2.634463333333333,4.941987611111111,1.0945288888888889,4.458935,4.01873,3.498825,6.78999,1.79926,2.976275,3.53004,5.026567,2.10405,3.81951,3.922705,3.79551,5.42732,3.216045,6.27069,3.31386,2.63968,3.40803,1.88892,2.82946,3.537355,2.82974,1.68984,1.549235,2.288985,4.462445,5.627865,3.557345,2.85145,1.41267,4.37869,3.3558333333333334,3.7258,2.90231,25.59128511431624,2.253184,2.8961400000000004,3.2485933333333334,3.6216666666666666,3.2078166666666665,6.0938099999999995,3.181556666666667,2.766723333333333,3.3358000000000003,3.467033333333333,2.047066666666667,3.16892,3.30579,3.441266666666667,1.69105,1.76246825,0.576752,2.175526666666667,2.2322175,0.210389375,2.680236666666667,3.06997,0.210389375,0.210389375,1.872779375,0.210389375,0.210389375,0.210389375,0.210389375,2.948183333333333,2.723183333333333,0.6098253846153846,3.489522142857143,1.3952725,1.984912,5.19105,4.417885,6.68231,2.419955,5.053,2.2256925,2.6830466666666664,1.360502857142857,5.830613333333333,2.6899866666666665,5.866607500000001,0.959725,1.1928125,4.99752,4.726535,36.4139288538406,1.767758,1.3010233333333334,2.2996733333333332,2.3657475,0.9527545454545454,2.2928433333333333,2.18932,3.0232200000000002,2.2408566666666667,2.36877,1.6584466666666668,2.9436633333333333,2.5153366666666668,2.229346666666667,2.479643333333333,2.3374200000000003,4.232885,2.79156,1.1379942857142857,3.94443,3.75442,20.13298988888889,2.7914266666666667,3.2867433333333334,2.6298533333333336,0.819524,3.0661819999999995,1.5904062222222222,3.0661819999999995,2.4987333333333335,2.5642,2.9283433333333337,1.705445,2.099315,4.6398,3.8953,5.5955,4.217115,1.855782,5.2114,1.605485,4.991875,4.132633238095238,5.85155,0.7485109090909091,2.4304775,2.2079975,2.843702,3.353785,1.104155,4.028115,2.0027999999999997,2.04493,1.039968,1.039968,1.63731,2.802236666666667,4.57272,30.613669583333333,6.319599999999999,1.8456433333333333,3.4883499999999996,0.3765806666666667,6.628097499999999,4.47509,2.794373333333333,3.160745,6.0284475,4.39146,1.2464175,4.512865,1.253612,3.46995,4.552705,5.1296,2.04949,3.073285,4.159075,2.363915,3.2975019999999997,4.02016,1.2579066666666667,2.6212125,4.055985,4.9757324999999994,3.030976666666667,3.0882533333333337,3.1496600000000003,3.16933,4.01739,4.05095,4.037733333333334,1.74244,5.94158,2.45086,1.6901620000000002,4.144865,4.84272,4.050725,3.644055,0.8309875,2.85594,3.50425,2.06878,4.7366806666666665,2.810085,3.793895,2.9253199999999997,3.210043333333333,2.50285,3.2748633333333337,3.5345333333333335,3.1491633333333335,4.27055,4.320235,4.212025,1.638445,4.05733,4.1952,1.898405,1.820595,1.829855,3.9169699999999996,4.67851,5.667811979166667,3.994235,3.8287,3.677895,3.2568933333333336,1.317125,3.15715,3.21047,3.766565,4.545545,4.89388,4.700235,2.709605,1.891335,1.591865,1.44708,3.46537,2.318865,2.172325,3.278525,4.577965,1.525755,5.6972,1.36253,1.774425,3.17881,3.263485,2.780375,3.317495,2.93224,1.652535,0.9947256842105263,3.876325,3.7254099999999997,5.0618,8.596711666666668,2.2018299999999997,3.4179666666666666,1.5668333333333333,2.6969933333333334,3.1241066666666666,1.1837016666666667,3.451966666666667,3.053366666666667,3.1496366666666664,4.1132333333333335,3.69,7.021873333333334,3.10928,0.7323272727272727,2.047893333333333,3.46128,3.2739,3.300015,3.6598333333333333,2.49588,3.59873,2.724855,1.8938398571428572,4.05218,3.0285733333333336,3.601425,2.3655233333333334,4.448135,4.76262,4.929425,4.98219,3.346755,1.3176777777777777,5.07345,3.2683666666666666,2.9241533333333334,4.77304,2.8920866666666663,3.3630999999999998,0.42505857142857145,0.42505857142857145,3.0393258333333333,4.42971,5.34815,3.419615,3.6147,3.655505,2.89579,5.40645,4.975625,0.99567875,4.670075,2.83325,4.851395,3.115546666666667,3.038244166666667,1.8441033333333332,3.259194642857143,2.8552366666666664,3.06859,2.645443333333333,2.7164800000000002,2.3014033333333335,24.274908887516467,5.49625,4.08703,4.13569,3.22528,4.7215875,3.2606,4.701215,4.180495,4.215145,4.22954,3.58483,3.14222,3.0739366666666665,3.2518,3.1730399999999994,2.8732699999999998,4.403485,3.50743,4.7141225,5.197,3.77145,1.305828,1.618026,1.618026,4.12259,3.68644,2.92305,2.7769933333333334,3.11025,4.3538,3.77751,8.904883333333334,3.387033333333333,2.7404766666666664,3.133671666666667,4.46878,1.5739416666666666,6.6652000000000005,2.5285466666666667,2.761226666666667,1.817665,3.913795,3.68832,7.61521,3.39795,2.52213,4.327525,4.116081333333333,1.5796,2.599833333333333,1.77954,8.779475,4.56788,7.101753333333333,2.3312625,4.42637,3.61495,4.716195,5.20675,3.786966666666667,3.786966666666667,2.0481475,4.640365,5.3172,2.43498,6.444582857142857,1.75944,6.169,9.020659666666667,3.31831,4.470796,2.42328,1.94888,0.556021875,4.493185,2.42334,2.57555,4.32967,2.401065,2.4282933333333334,4.061615,4.59121,4.46983,3.82542,5.6557,4.18751,2.4648175,1.0871818181818182,2.711885,3.24289,3.0338766666666666,5.4232,3.924585,3.33993,2.85974,1.878986,4.46085,1.0714075,4.98794,1.0715677777777777,5.59605,3.16994,5.23535,5.580695,3.071455,3.158525,3.2493499999999997,2.6214333333333335,4.202485,3.790465,3.10327,4.128185,4.943655,6.2712699999999995,4.14361,2.2639125,3.922955,3.559185,5.337278333333334,1.8472375,1.8472375,2.8425233333333337,2.3341533333333335,2.891773333333333,2.7054666666666667,0.986624,6.04115,3.909195,2.0567375,2.297975,2.61699,3.63134,2.763105,3.73682,4.274605,5.50445,4.84587,5.90065,5.85895,1.3708125,4.25392,1.0260583333333333,2.515675,4.281233333333334,2.444615,2.974715,3.041495,4.26776,2.925045,0.46423631578947366,4.514985,4.19791,4.818385,3.34669,4.63852,5.6044,4.65079,3.910025,1.733585,4.73244,2.133785,4.067266666666667,4.067266666666667,6.6518,5.1371,5.7463,4.95516,2.68765,1.5739416666666666,4.35772,2.29427,1.6302966666666665,1.92407,4.349615,4.14187,4.59857,8.00625,1.6300083333333333,5.645,1.3003099999999999,3.444405,6.02725,1.9743025,4.69933,3.4093999999999998,4.89138,3.452065,4.530095,2.9339099999999996,4.138865,3.93836,6.7258,3.806645,4.252925,4.453745,5.6218,4.08685,4.53483,3.574285,4.65751,7.526425,3.35723,6.80577,3.09633,5.36,6.672507045454545,4.952425,3.389125,1.891815,5.28835,3.947815,0.6306011111111112,8.67188,5.67885,5.64955,3.553303333333333,5.27395,3.023805,1.6866700000000001,3.71122,1.0977516666666667,5.119,3.21463,4.740835,5.32335,4.671495,4.36877,2.6107466666666665,4.134075,5.5348,1.586585,7.760356666666667,3.095585,4.536935,5.06535,3.755475,2.235065,4.33253,4.36664,4.675375,3.0898133333333333,4.290185,3.510865,5.4633,4.68092,3.73531,1.8839025,1.8839025,7.035411666666667,1.5162,5.3775,4.15511,5.91,3.817855,3.76347,4.91615,3.798475,0.8698666666666667,0.8698666666666667,0.8698666666666667,3.597885,2.89957,3.848115,4.651845555555555,2.81429,1.445305,4.758515,2.181625,2.429915,4.212975,5.42945,1.4392875,2.25062,5.32501,4.321365,2.47608,4.63668,1.4602625,1.88542,3.2021333333333337,2.63453,5.85285,1.409474,1.605378,1.20581125,4.3739,3.301035,3.3742,3.119783333333333,5.71265,1.78588,2.0984275,2.892085,1.5897857142857144,3.974845,3.65506,2.393415,5.3515,5.7159,2.597845,4.615905,4.31529,3.326155,4.217765,4.62421,3.66961,6.2056,5.2625,1.8074766666666668,1.8349666666666666,3.43558,4.371015,4.03889,4.49002,3.5170999999999997,4.45766,4.596745,5.3312,2.72641,5.5344,4.439515,3.85277,6.1415625,4.371025,0.6992445454545455,3.614535,3.8573775,2.01755,4.17926,3.6357,5.8484,3.716105,4.303805,3.705395,4.405255,5.07355,4.471935,4.222975,4.29515,5.44985,4.137815,2.652255,2.763655,6.1511,4.184285,1.833574,3.21466,3.850576666666667,3.795155,5.24725,4.44352,2.5524766666666667,0.8985944444444445,4.369740606060606,5.94316,3.692155,5.15645,3.476765,7.9725649999999995,4.934935,3.496033333333333,2.7084966666666666,3.61206,1.984365,3.479325,4.2884,2.5014175,4.01728,5.1166,1.4378575,5.4133,0.713025,5.8847,2.680505,5.00345,3.367945,1.2010616666666667,1.6192433333333334,3.88425,1.842885,3.435745,0.5148266666666667,5.27825,3.02763,1.487576,6.181302499999999,6.46095,0.770395,1.507041,1.271058,1.271058,1.271058,2.04165,3.90087,3.49726,4.271725,3.72774,5.6064,4.28048,1.95131,4.26322,5.1558,0.28600000000000003,4.116905,4.766865,6.2744,41.50803348484848,5.151092499999999,5.43385,11.78889,3.823065,4.21284,7.711118333333333,3.16925,4.502895,3.847225,4.72172,8.942715,3.723825,2.3700666666666668,3.2259,5.1997,3.897815,3.69675,4.472695,2.343705,4.631685,4.690065,7.114368,4.46349,5.3849,2.35385,4.08955,0.531640625,1.3888933333333335,4.244645,6.4839,2.91442,1.2896066666666666,1.2896066666666666,3.436325,3.69243,4.406275,2.617175,1.6910999999999998,3.907275,3.93998,1.8610425,3.0054833333333337,1.6747299999999998,2.0259266666666664,4.080615,4.611545,2.249375,4.448585,2.2676975,2.12485,3.438055,3.52679,3.87608,3.66854,6.145081333333334,2.6334963333333334,3.977145,0.6768018181818182,0.7165741666666667,3.53152,2.15334,8.79965,3.6110333333333333,5.14105,1.6479775,4.913365,1.5872616666666666,4.382055,4.76745,2.77942,4.206745,5.47685,0.4229225,0.4229225,3.21531,3.02446,3.1883199999999996,3.689075,3.64761,4.901075,0.8432772727272727,11.47849,8.93414,2.327565,4.76565,4.75249,5.04545,3.3853,2.5701766666666668,2.05348,1.899385,9.729447500000001,2.65615,2.7982066666666667,3.7450159999999997,5.13625,3.7450159999999997,2.695825,3.0718533333333333,3.1018266666666663,0.7283018181818182,5.684563333333333,3.6989666666666667,2.6341933333333336,4.50814,8.54184,9.69897,4.52584,3.786595,4.624225,6.900835,2.05285,1.29235,25.963143333333335,3.989395,4.82977,0.929712,4.40584,4.26045,4.247285,4.68222,4.200955,5.986836666666667,3.3386333333333336,2.0549500000000003,0.746,0.764315,4.892815,4.50774,1.4062116666666666,4.552701666666667,0.8073241666666666,3.4419,1.3900433333333335,3.993245,6.1502,1.99545,2.46415,2.173385,4.28132,3.137915,0.5511255555555556,4.224565,3.508225,2.8573133333333334,3.177255,5.15795,2.8768266666666666,4.344275,2.86242,5.3499,9.223479999999999,5.0281,6.72269,2.64735,2.9090933333333333,4.28006,4.06714,4.381735,4.32805,3.6553,5.29155,1.15148375,3.408481666666667,3.225888642857143,0.7821640000000001,1.618026,1.618026,5.41495,7.707121666666666,0.9215076923076922,4.675135,0.9611666666666667,2.705246666666667,2.4385833333333333,2.653794318181818,6.6925011111111115,3.0021799999999996,1.073071111111111,2.5612866666666667,1.267,2.3687566666666666,3.1186000000000003,3.163956666666667,3.19961,2.59949,0.9611666666666667,4.546495,4.63232,5.5601,2.76361,5.3656,2.2310600000000003,5.8453,4.74004,4.594065,3.0953366666666664,4.004265,2.3106075,1.3788175,4.441635,2.80255,4.49999,5.38615,1.736474,4.40187,2.992566666666667,6.549095,3.364415,2.72782,0.9611666666666667,2.446735,2.82161,7.467494277777778,2.4100766666666664,1.105334,2.4100766666666664,0.45491750000000003,1.09765,3.229735,2.90269,1.82194,3.537275,3.8196070000000004,0.598927,0.598927,0.598927,8.556035,1.6101400000000001,0.7367818181818181,36.437298982683984,1.758105111111111,0.5998411111111112,3.1838825,0.5998411111111112,3.68404,1.933835,2.25311,2.6946766666666666,5.28875,5.0036,4.25951,2.34369,0.8555771428571429,4.25887,3.1270100000000003,4.87282,0.9977614285714286,2.6476,2.6476,3.845885,4.75082,3.91333,4.7943257692307695,3.853875,4.4939,5.22605,1.848702,1.18945375,5.63415,6.21265,3.95995,0.649412,4.59729,4.110525,0.86404625,4.466775,2.477015,4.40748,4.24974,1.880550404040404,1.880550404040404,4.54155,3.285855,0.9731422222222221,2.98189,3.323816666666667,3.67719,3.88758,4.566385,0.46832285714285715,0.24423176470588234,0.24423176470588234,0.24423176470588234,0.7125546218487395,0.6084207692307693,0.65248,0.24423176470588234,0.24423176470588234,8.11107,0.24423176470588234,0.7125546218487395,3.39967,1.257955,4.574175,1.1668633333333334,0.7650346153846154,0.86404625,2.540985,2.706,4.19479,2.782385,0.24423176470588234,0.24423176470588234,4.45427,3.476625,4.312,2.640955,3.873885,1.6157499999999998,3.65579,0.65248,0.65248,4.892195,3.29718,2.548905,2.650695,4.503296333333333,0.9369630000000001,0.6819838461538462,10.21578,1.2934,5.39335,4.51766,5.38455,2.1136399999999997,0.43610000000000004,0.95842125,3.0160933333333335,3.344475,3.421555,4.934925,1.569776,6.24215,4.031105,5.5205975,4.14187,3.03214,2.940713333333333,5.9928783333333335,2.78514,5.4572,4.1278,4.66367,5.874785,0.5459686666666667,4.18608,3.1368233333333335,2.25186,0.6959477777777778,4.48794,5.33129,3.201015,2.396545,2.21202,5.1392,2.57695,2.87116,0.9487099999999999,0.48040307692307693,3.863755,0.346754,0.7761681818181819,3.83411,2.92679,5.0174,2.76954,4.984795,4.33502,6.221806666666668,3.69787,3.44872,4.68505,1.5734875,4.9815675,2.0434799999999997,4.33359,2.5287,5.972853333333333,2.6218,1.2546599999999999,4.69344,7.26949,6.544513749999999,3.2332366666666665,0.7835141666666666,2.7587966666666666,4.919805,4.288805,4.51567,4.603415,4.46286,4.547445,2.83373,3.96674,1.6955333333333333,2.181905,1.3591300000000002,4.50251,9.232155,3.7654,3.471565,6.18745,2.91508,4.75289,2.6646033333333334,3.2075093333333333,3.239255,3.45717,3.27226,3.995555,3.46011,5.38215,5.8214,5.14355,4.378855,5.28885,5.72855,2.95354,5.66345,8.136125,0.9032488888888888,5.12285,4.19076,4.63652,4.984955,5.5655,2.61172,8.867205,2.3960266666666667,3.23854,5.46685,3.704535,4.347395,2.09198,1.98012,2.8229066666666665,3.2103066666666664,1.9818633333333333,3.089976666666667,4.146505,4.742525,4.095125,3.295315,5.284409999999999,3.365805,3.01538,3.9878275,4.765935,3.0057,5.6427708333333335,4.65643,3.821055,3.762865,8.61495,4.414745,3.56158,4.81273,4.99613,3.819975,9.52739,1.3829099999999999,2.48591,4.483565,2.750296666666667,2.750296666666667,1.8913,7.77787,1.0116277777777778,3.625645,0.8446025,2.0984275,4.340485,3.924585,3.813065,4.912465,3.1752333333333334,3.591695,4.082175,3.672165,4.75777,3.432085,2.907766666666667,4.778085,5.1409325,4.21372,4.88812,1.71875,1.582504,2.60718,5.2207,2.5866,1.6427066666666665,1.99281,4.593415,4.86237,2.96088,3.46994,0.5248166666666667,2.318225,7.95823,2.91479,1.5361666666666667,0.85015375,1.1499266666666668,1.91698,1.98587,0.90457,1.9546999999999999,4.08667,4.4651,5.13955,2.52027,2.254635,7.96258,2.969175,1.9666633333333332,1.9666633333333332,1.9666633333333332,6.392683333333333,2.27445,3.5614,2.472465,0.50166,1.143194,2.1547725,6.4808675,0.4419855555555555,3.813065,3.817489166666667,4.73439,2.9264188888888887,0.4419855555555555,2.9264188888888887,1.03539,1.27834,5.8473,4.39988,7.0240925,4.51369,5.0941,4.03477,4.18349,5.3162,5.26565,6.3514,3.57508,3.311645,5.14325,4.66565,4.32507,4.465045,5.28255,1.4250299999999998,3.137503333333333,1.1234,2.2329225,3.34609375,1.5202104166666666,6.9901,5.337278333333334,2.8702583333333336,4.834045,2.905885,4.90493,2.76816,4.250905,4.63052,9.508931666666665,6.0731,4.65178,2.04972,2.720275,2.2272600000000002,0.5599775,2.236133555555556,5.62895,5.35425,5.3269,4.8561,0.72832,2.0126625,1.372265,4.608835,0.7251423076923077,7.794015,2.125015,1.028935,1.028935,3.863908,1.995954,3.5090333333333334,3.403305,4.68767,4.1551425,4.1551425,4.8512,6.355371666666667,2.8217666666666665,2.44162,3.4266,3.893235,1.776518,3.1355233333333334,5.2512,5.4291,4.897345,4.901505,3.84277,5.08705,3.6952350000000003,3.434466666666667,2.26751,4.137555,5.2545,3.073925,4.93666,5.77645,2.0379033333333334,2.56432,6.3729,6.89045,1.44631,2.536,2.247855,2.9689099999999997,2.1450425,2.545925,2.5651420000000003,1.1091955555555557,1.8241175,2.4858225,2.1655825,2.4667616666666667,2.4667616666666667,3.309013,2.82895,2.1646542307692305,2.6693,2.523925,1.862254,1.496785,4.9569675,14.374276166666666,2.9238700000000004,3.5140666666666664,1.816914,1.816914,1.6181483333333333,1.6181483333333333,3.05959,3.7547333333333337,2.9320566666666665,2.015355,2.015355,3.7316333333333334,3.16457,1.0562533333333333,1.5264428571428572,3.2332133333333335,3.0255799999999997,3.826033333333333,2.6098209523809524,3.3158366666666663,3.5348666666666664,0.679799,2.541225,3.6024896666666666,7.304133333333333,4.8013,4.392125,4.410975,3.313705,4.537985,4.893255,2.808816666666667,4.59359,1.4967016666666666,3.489933333333333,5.77685,4.969385,2.474345,1.4487050000000001,2.881115,2.8316033333333333,3.10807,1.5957116666666666,0.7092978571428572,3.355066666666667,4.849973333333333,4.574875,4.35529,5.09955,3.076496666666667,1.9651399999999999,3.083061666666666,3.1360799999999998,3.5878666666666668,3.100346666666667,3.7993333333333332,2.703186666666667,3.5164333333333335,3.3055066666666666,2.8728200000000004,5.3206,5.2044,5.314954999999999,5.314954999999999,3.26554,3.88152,3.76184,3.507065,2.58567,5.2715,3.440395,3.1848033333333334,6.059,0.7530633333333333,4.83497,4.75448,2.578933333333333,4.792561666666667,2.9728499999999998,1.9249666666666665,1.4433,2.3576566666666667,0.994389,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.5552228571428571,0.5552228571428571,1.2050475,0.8343572222222222,1.6050593434343434,1.0595928571428572,1.0595928571428572,1.1841971212121212,0.42086222222222225,0.3858166666666667,1.252545,1.4660625,3.084146666666667,2.636875,7.692628333333333,3.1927266666666667,3.716475,3.863465,4.180525428571428,1.317285,4.762365,4.629865,4.57739,3.384565,1.4185320000000001,3.9955419230769227,3.491055,5.33735,4.690945,3.34503,3.712695,4.074585,4.86525,1.1991239999999999,4.41384,4.50295,3.15695,2.3896966666666666,3.355285,2.29714,2.976,3.54961,3.08943,5.45745,8.668685,3.146985,4.95989,4.399625,4.51304,2.7449666666666666,3.53491,0.9324657142857143,3.6613,3.252905,1.8367499999999999,0.9979575,2.8723,0.993505,0.5425733333333334,3.6598333333333333,4.36571,5.141046666666667,3.6772666666666667,2.389405,2.54145,4.89111,3.9552333333333336,4.13294,2.55765,2.198,4.23012,4.39817,4.200725,5.12125,4.66518,3.52461,4.925875,3.232473333333333,4.58788,2.1175591666666667,4.76851,5.1717,3.210555,4.07364,2.45408,3.690975,5.12875,4.59425,5.538,4.88958,5.14905,2.89274,5.5507,4.74731,4.65987,2.306165,0.94347375,4.215275,5.11595,4.762755,4.892205,1.73448,4.50271,2.202845,5.364,4.6819,5.4237,2.26498,4.36796,5.26725,4.53323,3.0457,4.60125,5.2479,5.0067,3.844985,2.306165,2.79035,2.84264,4.73154,4.08258,4.414675,3.641895,5.1505,2.400985,6.78927,4.89268,4.26343,5.1558836319444445,4.508845,5.2698,3.5823675,2.43246,2.43246,4.291805,4.28091,4.41042,2.3228975,3.12937375,1.08717625,3.02216,3.169283333333333,2.834963333333333,3.410833333333333,4.93203,2.899836666666667,5.71365,2.83107,4.3615,4.4903275,2.40186,3.99444,2.09318,3.2435666666666667,4.08814,1.0261900000000002,4.690295,4.859785,6.725705,4.761085,5.3222,1.3498914285714285,4.67713,6.07635,8.51348,3.058203333333333,3.345833333333333,2.00924,0.860891,4.024155,1.05262,4.074785,4.540165,4.60361,3.053625,3.82489,1.2924285714285715,3.19848,3.474,4.355515,4.338865,4.330275,4.06185,2.3941975,4.19629,4.895165,5.53975,4.63344,3.665925,0.35131333333333337,0.35131333333333337,0.35131333333333337,0.35131333333333337,5.0909,2.843555,6.11915,2.63843,4.90608,4.87667,3.7397,2.21306,2.4799,1.4577966666666666,5.58605,3.08961,4.0293,3.270505,3.28303,1.725565,1.21364,4.6979,2.437425,6.270315,3.853195,5.54815,2.186455,1.4607166666666667,0.9427133333333333,3.26465,4.81594,3.817945,2.194425,8.73887,4.05569,3.495825,2.31536,0.524088,3.3115,2.29308,1.958865,1.945045,2.981975,2.86229,2.357875,3.7373333333333334,2.83435,3.676095,4.414875,3.831655,4.61862,4.19084,5.323521666666666,0.6577286666666667,4.519095,5.62385,5.0041,4.569435,3.21833,5.1689,4.41366,4.46038,5.484881666666666,5.2127,4.46552,4.586565,3.6423175,4.31042,2.7683,8.81032,5.35715,4.55866,4.723815,4.861645,5.217,3.926475,1.140611111111111,5.816903333333334,4.04657,5.0358,1.4658416666666667,4.1159,4.37019,7.682166666666667,4.51993,3.107895,2.0728033333333333,4.577885,1.53806,0.9890325,3.93577,6.2757,1.8893233333333335,2.2399999999999998,2.8533266666666663,3.70682,3.491815,3.611415,4.976395,1.6565733333333332,4.170915,3.464111,3.17521,3.6427,4.138695,2.76011,2.57708,2.0299125,2.420386666666667,2.61999,4.293525,0.5444924999999999,2.50832,4.15321,2.882615,3.4754,4.63134,5.0667,4.25497,17.14838090909091,2.6174033333333333,3.9337666666666666,1.580674,0.8411909090909091,0.8411909090909091,0.8411909090909091,0.8411909090909091,0.8411909090909091,4.38965,4.761975,5.0848,9.101146,2.654125,2.654125,4.352605,4.312969166666667,1.2241625,2.15007,5.0029,2.49109,2.309235,2.234325,2.99689,4.0109406666666665,2.187915,4.668075,0.7998571428571429,3.042503333333333,3.1519333333333335,2.943163333333333,1.3732966666666666,3.3748,2.53967,0.90000125,2.8715233333333336,2.5746233333333333,1.1024922222222222,2.59903,2.8177766666666666,2.2042733333333335,4.727213333333333,2.4229333333333334,3.213893333333333,2.1354425,2.7303433333333333,1.090077777777778,2.6754266666666666,4.644109333333334,3.470666666666667,1.08337,2.97026,1.488455,3.0170733333333337,3.128496666666667,4.616388333333333,3.2020199999999996,2.83935,4.910505333333333,2.719086666666667,2.155995,3.1431066666666667,2.8897133333333334,2.11119,3.108586666666667,3.4654333333333334,3.3630333333333335,3.21973,3.1934966666666664,2.757626666666667,2.582675,3.7068515,3.7068515,2.9243733333333335,1.9438066666666665,1.8218266666666667,2.5474533333333333,5.692703333333334,2.8763533333333338,1.9013533333333335,1.7777025,3.0282999999999998,5.0527,2.55567,1.051422,2.6255753333333334,1.7222466666666667,2.3562233333333333,2.1817233333333332,2.43801,2.101386666666667,3.22265,1.115864,1.4499566666666668,1.4666933333333334,4.270765,2.53241,4.172645,0.935521111111111,4.050345,4.1059,2.4916,1.761836,1.6469383333333332,3.4563333333333333,24.8191389004329,6.845043333333333,2.7598800000000003,3.430255,2.14701,9.925133333333333,3.2153833333333335,0.99947625,2.4425233333333334,2.48931,1.9537133333333332,3.07442,2.47065,2.65309,0.892482,3.5132,2.4481533333333334,2.9251133333333335,2.6651000000000002,2.7896866666666664,2.03362,2.1092333333333335,2.9008233333333333,2.5094266666666667,2.221835,1.6337920000000001,5.91212,4.800145,2.3462575,2.901525,2.0923766666666666,2.40878,7.794525833333333,1.7192733333333334,5.10365,1.9826875,1.8782525,7.5853,2.8548299999999998,2.6134866666666667,2.572,1.797906,1.4870442307692309,3.3336666666666663,3.363633333333333,4.166425,1.45165,3.5597999999999996,1.6235025,1.6235025,4.073545,3.822775,2.957725142857143,2.957725142857143,6.065696666666666,3.323055,0.42041199999999995,10.87873021978022,1.1991833333333333,0.9519871428571428,3.5919533333333336,1.4758830769230769,1.49541,6.465563333333333,4.006585,0.7930536363636363,2.0463,5.001300545454545,2.6849499999999997,4.216595,1.4555857142857143,5.7952,5.258,5.3529,3.58264,2.0893,3.18041,2.67482,2.678573333333333,2.35416,5.014306666666666,4.962895,5.2349,2.23462,5.00595,4.358285,3.1620266666666663,2.479845,5.1239,2.60722,8.629716666666667,6.8342975,2.0522475,2.160125,1.801228,4.492366666666666,4.492366666666666,3.560033333333333,3.2291233333333333,3.145211666666667,4.87221,9.498625,4.317215,2.42317,5.4678,4.579385,5.2265,1.902294,0.82686,1.3276533333333334,4.46376,4.781485,3.7066666666666666,3.0190033333333335,3.687,2.278773333333333,3.642725,4.506595,3.27286,5.44115,3.350733333333333,3.6802259999999998,3.6537,3.2789699999999997,3.5604666666666667,6.12615,3.06025,5.82965,5.4656,3.487125,3.417525,3.417525,5.7404383333333335,12.181901666666667,3.6192333333333333,6.258380000000001,7.4601516666666665,3.526055,2.525506666666667,3.90651,1.3267466666666665,3.74921,2.1103475,2.998146666666667,2.9117800000000003,3.8203666666666667,2.15768,2.3403466666666666,2.880993333333333,2.78467,3.2979800000000004,3.0898466666666664,4.3744,2.4573233333333335,2.8405233333333335,4.21856,3.08554,2.7997599999999996,1.11434625,2.0913575,2.9635700000000003,2.79557,2.653376666666667,2.365346666666667,3.5865333333333336,2.4132666666666664,2.5522633333333333,3.0350566666666663,3.018746666666667,2.968476666666667,3.1183266666666665,2.55422,3.221083333333333,2.8330366666666666,3.3215520000000005,2.62805,2.45902,2.3869700000000003,2.4383133333333333,2.74534,3.2124966666666666,3.0091433333333337,2.50884,2.01494,2.01494,0.6863383333333334,1.679456,4.740725,3.085335,2.6410233333333335,2.15768,3.6794666666666664,1.30193,2.8157566666666667,0.5835980000000001,3.5134666666666665,3.247996666666667,3.24087,3.017443333333333,2.607596666666667,2.97311,3.0986766666666665,2.7929033333333333,3.419333333333333,5.520496666666666,1.661308,2.2193666666666667,2.475776666666667,1.7547233333333334,2.09444,3.110376666666667,2.83577,1.763252,2.4402066666666666,2.678323333333333,2.89194,2.8214400000000004,2.992096666666667,2.90404,3.356533333333333,1.3780325,2.994073333333333,2.3487033333333334,3.5411333333333332,3.4349666666666665,1.7925775,1.7129866666666667,3.3823333333333334,2.989986666666667,3.3294099999999998,2.61266,2.7892766666666664,5.041790000000001,2.8629233333333333,1.9265566666666667,1.7976299999999998,3.3508666666666667,6.3580966666666665,3.5734999999999997,3.302903333333333,3.0571566666666663,3.28566,4.690944,1.6315840000000001,1.1395444444444445,2.7183533333333334,1.9812283333333331,4.75416,3.088783333333333,3.284876666666667,2.997586666666667,3.253553333333333,2.450486666666667,3.459566666666667,2.4701925,1.714382,2.9320866666666667,3.260625,3.9103149999999998,3.078735,4.052775,1.608535,2.70391,3.000535,3.830275,2.6479633333333332,3.14354,3.8375,3.9882333333333335,1.682005,5.906225999999999,3.23725,1.6583983333333334,4.105105,4.06668,2.80162,4.21573,1.916808,1.916808,3.2309433333333337,2.847113333333333,2.971885,5.71615,4.436955,4.265259333333333,1.267306,2.6065,2.5736233333333334,4.200465,2.9789966666666667,4.007336666666667,2.7737200000000004,2.356943333333333,2.8559966666666665,3.50537,3.40042,1.661832,3.1199,3.81982,2.256005,4.99013,1.26401,4.795305,4.466445,2.847555,3.473825,4.07741,1.5832925,1.6265966666666667,2.5633,1.1202566666666667,2.167045238095238,2.2369425,0.45937285714285714,4.81928,2.49733,4.623525,4.36608,2.94851,4.513594166666667,3.35,3.196756666666667,3.7443333333333335,2.7687633333333337,3.3924333333333334,2.946266666666667,3.5666666666666664,2.26977,0.71401,2.2323933333333335,0.64286,1.9135133333333334,2.4123233333333336,3.2964800000000003,3.1876466666666663,1.5594033333333333,1.56579,3.98954,5.0053,4.326665,3.7313275,3.07983,1.8637675,4.40423,8.594201111111111,4.20918,6.35987,1.512245,4.460185,1.99533,3.889675,4.26961,1.875275,4.96346,3.619145,4.00332,4.53147,2.2837725,4.20297,6.581175,5.7513,3.44449,3.416185,1.6657275,2.035025,4.1776,3.09261,3.124805,3.98059,4.008685,3.931515,1.8714075,4.00194,3.63943,2.0120925,4.411004999999999,0.7760566666666667,3.70052,1.757695,4.612125,4.8064350000000005,3.911885,3.13427,3.839465,3.656715,2.1866425,2.34719,3.9230666666666667,2.26447,5.80067,4.321695,4.45126,2.16973,2.46,4.9698,4.54218,2.851738,2.851738,6.021968,3.927028,2.72027,3.20211,2.19692,3.192385,3.670515,3.931201666666667,2.6544404999999998,3.8712,1.001944,4.06152,3.116315,4.444085,2.773625,1.614175,1.597225,3.29202,5.948591,5.584300000000001,3.549275,1.569395,4.25907,4.002495,0.78815,3.239175,1.093548,5.831695,1.440575,4.257355,2.199915,1.5594033333333333,3.56697,3.749215,4.301095,7.25667,4.531415,5.286326666666667,2.37834,2.817145,4.758745,4.511605,4.59132,4.731925,0.9420225,1.76246825,1.18571625,3.03786,2.24717,4.500885,1.18571625,5.15095,2.415505,1.7868225,1.7868225,2.0120925,4.217095,4.634585,4.4317,1.62758,1.62758,1.1404233333333333,3.330265,2.0269925,5.9584475,4.57813,3.666495,3.07254,1.0213128571428571,3.65941,2.52706,4.26677,4.07054,4.262315,4.262315,3.615905,3.88785,2.096435,2.427325,0.9606233333333333,2.387793333333333,3.683115,2.2397533333333333,3.7491033333333332,3.7491033333333332,2.95119,4.987275,5.13875,2.68934,3.62858,4.423505,2.643013333333333,4.791893333333333,2.465965,3.97766,8.765755,4.916865,2.69005,3.18038,2.97657,4.85294,3.227902,7.612735000000001,5.335032,4.674685,3.852555,3.693695,3.871965,4.18883,4.72581,2.731285,4.13954,6.963015833333333,2.64365,2.325887555555555,2.96784,3.301665,3.51376,4.81782,2.4157100000000002,2.3362266666666667,3.40986,3.1407325,2.72317,7.0274193333333335,1.31531,4.6338783333333335,4.6338783333333335,2.94474,3.9021525,3.08888,2.5527,5.03382,4.500067,2.429342,3.88143,4.27609,3.4763391666666665,3.092335,3.43834,6.580236666666666,3.26813,5.19395,3.27968,4.995955,3.98126,4.16647,2.847113333333333,1.79891,2.43748,4.30378,2.809905,3.1489966666666667,3.660715,6.678156666666666,2.576465,1.9193375,3.4671908333333334,2.43111,4.19576,2.621285,0.78815,3.388315,4.509875,3.869905,5.9256775,3.278235,2.943195,2.9269,2.9269,3.5064683333333333,4.59902,4.210515,2.2183025,7.0920000000000005,2.212805,4.55481,3.977175,8.78148,2.7855399999999997,1.4108766666666668,3.354675,4.35378,0.7659,4.240105,3.82581,3.01485,3.23719,5.2947,2.07266,2.32414,9.013875,3.34186,2.68973,1.440575,3.924415,2.69234,2.33613125,4.28857,5.8388725,1.7164125,1.3242749999999999,1.0093483333333333,4.110715,4.028505,3.536,4.0103100000000005,4.0103100000000005,1.8714075,2.25009,3.047281111111111,0.859261111111111,2.886055,1.2654175,1.608535,3.677815,3.51803,2.539225,2.561905,2.458965,4.32923,3.55892,3.20794,2.84441,2.88696,4.29987,6.1896275,4.0204,0.97073125,2.460562,8.34772,4.655125,4.05038,1.0265125,4.40202,1.40108,3.08276,3.08276,3.99813,9.296639166666667,0.9414755555555556,5.0837,4.464405,2.32097,4.045435833333333,3.2217,2.2137975,10.512005333333333,1.7860525,2.534003333333333,3.4508,1.6484566666666665,4.366885333333333,2.6086,3.49051,3.505338,3.21683,3.69695,1.2558683333333334,7.59896,4.19895,4.430315,4.4849,2.1063875,3.13427,3.74531,4.30728,0.7150130769230769,4.744175,4.61135,5.0819,2.1446175,1.547338,4.660215,4.172555,7.76635,0.7763538461538461,0.7385725,0.7385725,1.7230299999999998,1.3711200000000001,1.3667859999999998,1.7309599999999998,4.93283,1.2485733333333333,0.79384,4.1484925,3.88135,1.704145,3.33971,4.495895,3.43497,0.6790700000000001,1.801265,10.96472,3.2501766666666665,4.592505,2.090095,1.433715,2.3978066666666664,2.90334,4.724655,4.430725,4.12081,0.9426757142857143,1.685286,0.961076,5.131815,4.33342,4.039345,0.859261111111111,1.8395119999999998,3.93532,2.2921282142857144,5.344755833333333,1.1942625,4.882865,0.5726666666666667,0.5726666666666667,0.5726666666666667,10.161014999999999,4.234625,1.2654175,3.77624,4.635435,3.354925,3.852825,4.2981125,2.76046,2.0992255555555555,2.1884833333333336,0.6790700000000001,1.4672200000000002,0.5887088888888888,0.6922166666666666,1.286345,3.425345,3.809635,2.2283875,7.925600000000001,4.916999166666667,0.7695555555555555,5.0222,5.574573333333333,3.461145,4.6499,7.421079,3.713857023809524,4.916999166666667,4.4064239999999995,2.76115,4.51694,3.88454,6.511284999999999,3.736845,0.524088,1.5563319999999998,4.284785,1.7426300000000001,1.3242749999999999,4.63376,2.3966366666666667,1.87734,3.522895,1.673122,4.397115,4.753195,4.599825,4.68435,6.05907,3.10142,4.07571,1.093548,2.451555,3.77291,3.332985,2.429342,4.179205,2.548195,4.95001,2.88941,2.25705,3.3271724999999996,1.586192,3.682215,0.859261111111111,2.135434,1.0093483333333333,1.51828,3.48358,1.31531,1.286345,2.54175,3.87632,8.52891,0.9426757142857143,1.0265125,1.2823280000000001,3.548515,4.271875,1.2823280000000001,3.853105,2.451555,0.7659,0.859261111111111,1.7230299999999998,1.093548,0.45937285714285714,1.5614000000000001,4.42441,2.32097,1.4602933333333334,2.56675,1.682005,1.7860525,2.548726666666667,2.1884833333333336,4.55561,2.548726666666667,0.78815,2.4849750000000004,2.33996,0.13899295454545454,0.13899295454545454,0.13899295454545454,0.13899295454545454,0.13899295454545454,3.5185,2.671976666666667,2.908776666666667,2.8847666666666663,5.08855,4.04021,1.761836,3.520025,3.484065,2.167655,5.03860625,2.6881,2.44719,2.32993,2.69149,4.42784,8.28156,2.4175875,2.41838,3.1483696428571424,1.0343671428571428,1.35021,2.35196,2.109933333333333,1.6430575,2.79464,2.3941966666666668,2.7078133333333336,3.016883333333333,2.6147533333333333,4.092115,4.141505,2.85301,1.455212,4.118815,3.72786,1.4990766666666666,1.381236,1.381236,1.381236,3.75907,2.8399466666666666,1.1213633333333333,2.2488966666666665,1.24963,4.45475,1.5638766666666666,6.9774899999999995,3.7144250000000003,2.97122,3.0817380000000005,3.0817380000000005,5.709903333333333,3.26312,4.550195,5.1863,2.20645,3.3386333333333336 -GSM1946776,0.0,1.994905,1.994905,1.68433,4.13406,6.057,2.361155,1.6426999999999998,7.255445294117647,4.35898,3.13888,2.56273,2.33182,3.320905,4.243385,1.77049,1.382652,4.94416,2.6462166666666667,2.2613525,4.4339,5.265253333333334,3.826385,2.25636,1.727338,3.692745,4.39817,4.672935,0.6580558333333334,1.669678888888889,1.8573288888888888,1.79061,1.5301725,1.1185,0.6978341666666666,3.123485,1.5375975,1.737095,1.18067,2.0901975,1.071415,1.0987725,1.1237679999999999,1.449108,0.908262,0.955472,0.812006,1.1575399999999998,1.629066,1.829982,1.553546,1.970728,1.6694400000000003,18.082055416666666,0.3961426666666667,0.9027879999999999,1.117424,1.745886,1.380314,1.652026,1.0749414285714285,1.0749414285714285,1.0749414285714285,1.1779516666666667,1.011654,4.6772725,1.13686,2.2889475,2.0170425,2.2212,0.943431,2.18444,2.1874075,2.140015,1.4460225,1.944475,1.5720425,1.6980025,2.46992,3.613545,4.649615,5.1129,1.6497233333333332,4.297745,4.40516,4.266855,4.18064,1.03156125,7.74854,0.63151875,0.63151875,2.20979,1.0209871428571429,16.436439999999997,4.89887,5.1542,5.4212,4.274605,4.35684,5.25335,0.43788499999999997,2.2431429166666668,1.6925125,2.30792,4.441165,3.554195,1.511875,3.1318,3.6257333333333333,2.5940266666666667,3.5124333333333335,3.45252,4.68853,2.941916,4.453915,2.9554033333333334,0.7247645454545455,1.688708,2.552625,4.916935,4.19113,0.514134375,3.596295,3.74256,0.7832,4.26801,1.6740811688311688,2.35012,2.676875,2.051355,3.58224,5.809,3.451695,2.6241,3.1882266666666665,2.99564,3.98499,2.92301,5.44535,3.455075,4.24313,3.21507,2.44853,3.801025,2.326085,7.029778333333334,3.515265,3.25876,6.01815,3.231245,4.589425,0.7889544444444445,9.445163571428573,3.54177,2.1122799999999997,1.9812316666666667,3.0391166666666667,2.294195,4.666805,5.5042,2.17611,5.1742341666666665,2.783825,4.518865,2.17611,2.9663299999999997,4.40517,5.174708333333333,3.452015,8.880683333333334,3.804805,4.86734,3.06207,5.10195,4.329485,1.7617,8.55157,4.094825,3.896295,3.74286,3.47638,3.28531,2.378835,5.906775,2.43109,3.99994,3.964685,4.88274,4.829345,3.406785,1.350275,2.88432,3.1928,2.038935,2.038935,6.0344016666666676,3.19221,2.0104366666666666,4.336795,4.457235,2.89382,1.463895,0.8024377777777778,4.803,2.758725,6.5337,3.232805,3.827105,3.78234,3.194135,3.775945,3.78713,3.922945,4.108475,5.4058,2.85732,3.69483,9.073269999999999,4.49729,3.528833333333333,2.86318,2.6965,3.7385333333333333,4.17328,1.69544,2.502006666666667,2.05207,1.6841599999999999,1.74796,2.77378,1.7393575,1.8754025,2.94056,2.6815533333333335,2.3808933333333333,2.7303333333333337,4.40516,3.709115,3.48272,3.401715,4.405375,1.3543,3.0882,2.9123774285714283,2.00664,2.63676,2.1527166666666666,3.3818,1.632552,1.37535,2.6718833333333336,0.659296,1.7123766666666667,0.531548888888889,0.531548888888889,1.5053733333333332,2.33723,2.1397633333333332,1.4486766666666666,1.57494,0.30023307692307694,2.800936666666667,0.659296,1.26937,0.19494891891891894,1.5138566666666666,2.02781,3.4863,2.0599133333333333,2.2022933333333334,2.6320099999999997,2.19956,2.499163333333333,2.64295,2.35574,2.2030933333333333,2.711596666666667,1.9615966666666667,2.78825,4.07802,0.7137116666666666,1.86073,2.5610933333333334,1.8582633333333334,3.396823333333333,1.5594540000000001,2.57527,2.12556,4.4491499999999995,2.07391,7.005142857142857,1.5430428571428572,2.911426666666667,2.07458,2.02253,3.1974066666666663,1.84982,2.018795,3.992215,2.58838,2.160835,3.69083,4.16629,4.33013,3.67337,2.35275,3.404725,4.29664,3.874335,3.900785,4.238995,4.435145,3.09472,4.607705,3.488245,0.8874725,4.82275,1.2440383333333334,4.672235,3.891085,5.784483,3.61362,4.296045,0.9619625,2.304615,3.539085,4.16048,0.8260885714285714,1.1379951282051282,2.058977857142857,3.643051428571428,5.295272499999999,5.432493,2.1151575,3.026315,5.20005,0.35531285714285715,3.456335,2.599705,0.97789875,4.65857,1.95906,12.0687,1.2645375,1.3110275,1.9516866666666666,2.39605,1.896605394736842,4.610840394736842,0.33324789473684213,1.61132,2.90584,1.06902,3.6624,0.9749957142857143,5.10275,3.951335,2.1171166666666665,6.08235,5.61365,2.823025,1.1109971428571428,4.463628333333333,5.16505,4.487725,0.8500127272727273,7.4383783333333335,2.6283733333333332,4.399975,2.59875,2.5371799999999998,4.358235,2.335053333333333,2.5096333333333334,2.0728633333333333,2.4561066666666664,3.05378,2.9849599999999996,0.357669375,4.148395,3.785285,3.75322,3.92846,4.39268,6.1062959999999995,4.02847,1.63924,5.5121,4.261075,4.378615,4.061315,1.0705850000000001,2.6493166666666665,3.1466366666666663,2.45349,15.756235,3.19359,3.910215,4.305765,5.58515,2.6949,5.011036944444444,1.63203,0.7692588888888889,2.64545,3.128585,3.39041,3.963345,6.406503333333333,2.8714666666666666,2.328075,2.26846,3.3427666666666664,4.301425,2.217245,0.3875158630952381,3.104472391304348,1.9624325,1.11145125,0.528239558747412,0.668963254399586,0.3875158630952381,0.3875158630952381,0.3875158630952381,1.2028025,1.2899325,0.8764,1.5872975,4.1967425,0.21924029411764706,10.90831579004329,3.4921333333333333,2.6924466666666667,3.93819,3.662715,3.80126,2.163845,4.5028,3.795980666666667,3.94956,3.938845,0.6903584615384616,3.3528333333333333,4.184902564102564,0.5211692857142857,3.50001,2.7340166666666668,4.217705,0.5314890909090909,1.87932,4.5344,3.484595,1.8034,1.86839,1.48817,3.160816666666667,3.9756,3.08985,2.8846933333333333,5.51785,5.4081,4.629525,3.410966666666667,3.26185,6.573766666666667,3.6444666666666667,4.77985,0.4206814285714286,2.988106666666667,3.8162199999999995,2.0630166666666665,2.92557,2.7206525,5.688741666666667,0.57485,2.848175,4.344165,4.35385,1.0480442857142858,4.411615,2.79072,4.70877,3.10118,4.04326,3.64077,4.27812,1.1795083333333334,3.38775,2.7754033333333332,4.49738,4.31665,4.107605,5.95965,4.535565,2.668595,5.71109,2.3492366666666666,2.86014,3.0637399999999997,2.53676,2.54416,2.20355,1.727366,1.4644233333333334,2.0548866666666665,0.8586371428571429,1.5873366666666666,2.553776666666667,1.9740133333333334,3.0044866666666667,3.1250066666666663,2.5821666666666667,0.8864344444444444,4.80855,3.28572,5.5159899999999995,2.7929633333333337,3.1135433333333338,2.9323533333333334,1.6702166666666667,1.6702166666666667,2.4693684415584416,2.4693684415584416,3.2084941558441558,0.4960414285714286,1.8204533333333333,2.1811433333333334,3.7411333333333334,2.1155928571428575,2.1155928571428575,2.1155928571428575,7.080635952380952,4.322341904761905,0.9483181818181818,2.52603,4.41918,2.4634625,4.715495,3.3049,2.50321,3.707795,3.074173333333333,2.9902599999999997,1.0878725,1.9465766666666668,3.4107000000000003,2.4191066666666665,2.573566666666667,5.87565,4.328366666666667,3.8346999999999998,4.82224,1.9183000000000001,2.484923333333333,3.078943333333333,0.9880099999999999,2.084283333333333,4.646406,7.9680425,1.5582925,2.93704,4.570075,1.816652,1.7776525,1.7776525,0.94011625,4.71611,7.167095,4.31238,5.018662,4.36049,1.7472166666666666,3.77455,2.91492,4.386635,4.94678,0.3577157894736842,2.887185,2.67562,3.75562,3.86968,1.7445119999999998,1.8744575,2.4904125,4.318815,4.007485,2.95315,2.55281,1.322864,6.90196,5.7709,4.5704,3.687355,5.02085,4.36916,4.64415,3.63661,3.7329800000000004,1.94819,1.0320385714285714,2.613715,4.04581,3.70835,5.68117,5.6253174999999995,2.3710325,1.8793966666666666,2.67928,2.759923333333333,2.91395,0.7064114285714286,2.134405,3.65495,1.12031875,4.556345,3.36748,6.009024999999999,1.4228884848484848,1.4228884848484848,4.01453,3.79061,3.78673,5.61985,2.8477033333333335,2.3051166666666667,4.272295,3.291485,2.07955,3.3701666666666665,2.42272,4.18267,3.437285,3.60457,4.53901,1.0848377777777778,2.653855,4.09887,4.593875,3.272025,2.56364,1.66062,0.7513577777777778,0.7513577777777778,0.7513577777777778,0.7513577777777778,1.5111161111111113,3.7156425,3.7156425,1.8146366666666667,6.539958333333333,2.674815,4.23906,3.0406433333333336,2.68025,4.6339,4.228025,4.943765,4.98822,1.7914025,3.99408,3.333425,2.6436,3.333065,3.456655,2.636755,4.098955,1.92602,4.865715,1.757,3.3035395833333334,3.004765,1.78412,1.21079,2.836995,4.329415,1.25265,0.85895,3.426455,1.3694275,4.857152666666666,4.39193,1.275755714285714,3.538305,0.7700377777777778,2.6087666666666665,2.31967,2.3109366666666666,2.53798,3.785535,2.8247733333333334,4.51591,5.5006,4.41399,4.21133,2.22052,1.25114,3.82438,4.767525,1.41493,1.41493,4.155295,0.25522066666666665,2.47298,0.25522066666666665,0.25522066666666665,0.25522066666666665,0.25522066666666665,4.880045,2.5923266666666667,2.9668,3.74999,3.160933333333333,4.37489,2.466273333333333,1.1017575,1.1017575,0.867865,0.867865,3.76126,2.01603,4.358385,1.3169064285714285,1.3169064285714285,4.81101,0.46030642857142856,2.84635,7.215531666666666,4.576935,3.236815,3.342175,0.923285,2.24349,1.9914,4.609415,4.064815,4.53042,3.855355,1.25376,2.770915,1.9969975,7.59847,1.788205,4.5288,4.559435,2.979975,3.92048,6.21129,7.609325,4.067855,4.271215,4.08373,2.371315,3.18705,2.595035,2.416235,1.946485,3.94373,3.399185,5.68437,6.78283,3.565975,1.03331,2.66142,3.47407,3.77319,2.18125,4.05735,3.227575,4.6048,1.8805866666666666,4.055433333333333,1.6368966666666667,6.358626666666667,2.7130666666666667,2.38456,2.3379033333333332,2.270095,3.4724,3.359833333333333,3.2563566666666666,2.66573,3.1544966666666667,2.32562,3.204605,3.08822,2.98541,0.37019799999999997,2.940455,3.77196,2.632725,5.4218,4.841425,4.524605,6.683581,4.671595,2.1414166666666667,4.1087,5.2127,1.590025,4.72004,5.73025,5.33585,4.51073,3.29154,5.4672,4.85131,3.58437,5.246905333333333,7.56241,4.188125,1.2105916666666667,1.4456216666666668,2.465455,1.7200859999999998,4.23043,3.919445,4.56082,2.5319533333333335,2.4811099999999997,2.7268833333333333,2.5287533333333334,2.2424066666666667,0.9666333333333333,0.4957770588235294,3.67219,4.050185,3.6919,4.23376,3.066315,3.255803333333333,5.133486666666666,2.9624400000000004,0.5799229411764706,3.054715,5.4266,1.5562,1.646058,3.81467,3.48501,2.46022,3.7525666666666666,3.899605,2.7717033333333334,2.29496,2.4415566666666666,2.5819633333333334,2.83486,4.670135,4.873846666666666,6.124948666666667,1.392264,5.00315,3.225614583333333,4.976606583333333,2.47763,3.23191,2.54211,2.134576666666667,1.428655,1.428655,2.78895,2.4973966666666665,2.7539433333333334,3.700965,1.7383859999999998,2.49866,1.92455,0.3974975,3.58449,0.5448258333333333,0.93103375,3.511875,3.909135,3.790215,1.654235,4.17882,2.92235,0.7719928571428571,4.10779,3.7003814285714287,3.1026000000000002,2.459745,5.0843,0.2692,2.147227,3.239835,1.5711475,3.930565,6.6048,2.443895,1.45986,4.12434,3.951905,2.8296766666666664,2.8296766666666664,3.58465,2.73045,4.40731,5.579700000000001,4.990595,0.9770777777777777,2.597986666666667,2.426766666666667,4.305495,4.956855,5.51055,4.767375,4.2969,3.7645999999999997,3.6529000000000003,3.6153333333333335,4.091600000000001,3.0199833333333337,2.9966566666666665,0.5888821428571429,2.3074625,2.377935,3.59986,2.96289,3.1518266666666666,0.7444125,2.47508,4.009650000000001,4.3308,5.67155,4.915045,1.757075,1.757075,0.816654,2.88695,4.40013,3.51649,4.627512857142857,3.20427,4.49387,0.588130909090909,3.078755,3.4556,4.03887,3.926119166666667,0.8497728571428571,2.821745,3.834615,5.49765,3.99226,4.90855,2.872365,4.15746,1.5048,1.0381671428571428,2.7134933333333335,5.12855,4.652485,3.37825,1.45793,3.92284,2.627025,2.4792975,2.8196222222222227,3.005266666666667,4.502233333333333,3.0434566666666663,1.7256,3.3704,1.5052365476190477,2.88998,2.6130733333333334,2.3098025,2.73292,2.84469,2.4134966666666666,2.7091999999999996,3.601955,2.9364966666666668,3.4504173333333332,2.5325633333333335,1.95358,4.108736666666667,3.0412,2.49659,3.4504173333333332,2.1490266666666664,0.7841672727272727,2.361345,0.9958322222222223,2.27935,1.5764725,0.9556909090909091,1.6324175,1.6058525,2.64794425,2.59445,4.467025,1.55859,4.733275,3.04187,1.561742,2.30465,2.502823333333333,1.6730266666666667,2.61205,2.7020433333333336,1.9360127272727272,1.3555,1.814998,3.6452000000000004,2.30195,2.956926666666667,3.11229,2.999643333333333,3.5749,1.99118,4.196466666666667,3.510066666666667,3.6854333333333336,2.722773333333333,3.568633333333333,3.6298333333333335,1.7166633333333332,9.914215,4.062845,4.21467,3.3433,2.826345,2.09799,4.134185,1.635894,4.15723,4.052155,1.385248,2.57259,1.1400416666666666,2.48582,1.7039033333333335,2.38153,4.996171666666666,3.172413333333333,3.51761,4.74713,0.72901125,1.414274,0.9478989999999999,3.622895,10.187581666666667,3.2579266666666666,6.5604,1.9973025,5.13175,4.08384,2.48376,4.833845,0.29118058823529414,0.8324485714285714,4.4229,4.308545,7.1424025,1.9526525,4.521565,5.59955,4.77922,4.692645,3.427295,4.4184,3.482615,5.654193333333334,3.5735,3.1473,3.17835,2.2046233333333336,1.9865633333333335,1.4714016875,2.4726266666666668,4.094545,4.72695,1.5641880000000001,9.21217,2.1066066666666665,2.933615,0.9727180000000001,0.9727180000000001,7.082165416666666,3.12439,2.3568825,2.176175,2.6052733333333333,2.0743666666666667,1.01705,3.7783683333333333,2.58988,0.5509514285714286,1.8596033333333333,3.20801,3.20801,1.23118,2.62764,2.3135766666666666,2.5526616666666664,1.42613,1.8677733333333333,4.64583,2.492923333333333,2.632925,1.22767,1.22767,3.92987,5.503,4.230095,3.333535,3.785575,6.30083,3.00351,2.7839466666666666,2.9403066666666664,4.15822,1.1870083333333332,3.1310466666666668,2.54675,3.844555,2.2256666666666667,4.74095,3.44474,4.4089,3.762955,5.637158,0.9441144444444445,1.9313375,2.20243,3.68846,4.1883175,3.798035,3.62849,3.539105,2.46999,1.70144,4.188715,3.516755,3.19072,2.4872733333333334,0.84335875,3.355145,4.19517,4.64588,1.2731566666666667,2.72387,2.3965533333333333,1.8410399999999998,1.7394072549019608,1.7394072549019608,1.1692366666666667,1.93639,1.0507,1.391748,4.26026,3.970545,0.46336000000000005,3.366515,3.304016666666667,4.020895,5.09995,0.410451,8.980329999999999,5.39615,2.59582,3.76843,4.49854,5.357216428571428,4.914805,6.92563,0.6841381818181819,2.624076666666667,5.171,2.6694833333333334,1.66298,1.9976880000000001,4.389415,4.93299,2.39731625,3.4764,3.0472133333333336,1.8500425,4.19851,10.475200000000001,8.02877125,3.8049999999999997,4.584225,3.1209974999999996,3.190155,3.912135,1.7778479999999999,2.9591133333333333,3.66722,4.440865,4.67925,5.02119,6.407023333333333,2.0905566666666666,4.265335,4.541095,4.978605,4.43966,6.902713333333333,3.98089,5.8815,3.445155,3.03549,2.886715,5.6583,3.7505,4.739555,2.42784,3.1411833333333337,3.28767,5.71395,4.086195,3.838105,1.456814,0.94606,2.3633275,0.541848,3.793695,3.627135,3.68313,2.899525,2.0691666666666664,2.91665,2.648475,3.1015120000000005,1.9285080000000001,3.096145,2.846725,2.4333775,2.5207,3.8185979999999997,1.1686433333333335,2.782443333333333,4.98018,3.682033333333333,1.0308025,2.8552666666666666,3.679485,3.741657,1.516975,5.76345,5.40895,2.3759166666666665,3.075763333333333,30.08512626759025,3.1384399999999997,1.7195833333333335,4.007633333333334,1.5962933333333333,2.6120200000000002,3.0046933333333334,3.3910666666666667,1.975655,2.695525,1.80352,3.8451245,3.0719,2.4757475,1.5248325,2.21264,2.835,0.37380727272727277,1.129275,2.89038,1.573054,3.444195,1.516975,2.026666666666667,25.265468722222224,4.805335,3.70807,3.53958,2.58284,2.61315,2.56357,2.3209225,3.50114,4.6697109999999995,5.2803,1.574706,1.740812,2.16721,2.342785,3.6158091666666667,5.06835,4.65055,4.44094,0.1746004255319149,4.873015,4.88891,3.834755,8.74172,1.10656,1.10656,2.976036666666667,2.76477,5.3638,1.8341666666666665,0.9654233333333333,4.591895,2.0069725,4.11341,3.825265,3.29953,4.09615,4.13607,5.06445,3.081455,0.7368366666666666,3.377535,2.2656675,4.194565,7.78228,4.36006,1.9824400000000002,1.9824400000000002,6.544510000000001,4.498435,4.3584,5.42795,2.019343333333333,4.954008333333333,1.35017,1.3379366666666668,3.00408,2.3767866666666664,2.810615,2.64311,3.921305,4.3940325,4.005685,5.51295,2.21251,2.860875,1.8590925,2.525825,2.336035,1.948855,2.2012525,4.853605,1.8828975,3.6037233333333334,2.504626666666667,2.96251,2.7258,1.5608700000000002,1.428332857142857,0.9130520000000001,2.432123333333333,3.9015,0.730036,4.41447,1.8305825,5.8694500000000005,1.98918,1.532955,1.586155,1.6480433333333335,5.637897777777778,1.809758,3.0379,3.6443,1.1478775,1.779145,5.026769333333333,3.1995966666666664,1.8940599999999999,3.4217,2.7613566666666665,2.831163333333333,1.2664232142857141,0.27187916666666667,0.27187916666666667,0.27187916666666667,0.27187916666666667,0.27187916666666667,3.65624,2.7304833333333334,2.5184,3.3374,1.4774216666666666,2.6759033333333337,2.8825033333333336,2.18528,3.36398,2.79889,1.6844700000000001,2.9062666666666668,3.1183366666666665,2.08497,2.067515,3.85195,2.714166666666667,3.7611666666666665,5.0416,2.6849866666666666,2.697173333333333,2.481403333333333,10.787761666666666,4.3917,4.124815,4.81862,4.07401,2.9182633333333334,5.23665,3.660855,3.929325,5.4557675,3.62455,2.954715,2.203775,3.263815,4.752165142857143,3.233955,16.724563226190476,1.02787875,4.32711,0.8740955555555555,1.19591625,2.879075,4.671455,4.20982,4.510155,1.5633949999999999,2.334805,4.34908,2.0663833333333335,4.33319,3.0865210714285714,2.5837166666666667,0.6385166666666667,2.8509100000000003,4.87778,2.3110175,2.31312,2.147635,19.623008333333335,1.29175,1.3474875,2.39653,0.2765796153846154,1.7329825,2.725,2.031756666666667,2.9275300000000004,2.558025,7.304874166666666,1.9610725,2.5014,2.252815,2.002585,1.6258483333333331,3.15129,3.15292,3.94688,3.1071266666666664,1.923525,2.5478708333333335,2.9862275,4.92901,0.41742250000000003,3.683733333333333,3.04287,3.07159,1.875035,3.7229859999999997,3.708575,1.5742166666666666,2.36041,2.24907,1.4192033333333332,1.9485133333333333,3.611935,3.365145,0.7911516666666666,3.29011,4.733755,4.06529,2.360502,2.360502,3.1010633333333337,4.28573,3.19978,3.25698,2.26739,0.8237827272727273,4.15439,3.687225,6.0191,3.962025,2.366472,2.366472,1.3952925,2.98868,4.92139,4.14354,4.26974,2.9303733333333333,2.339166666666667,4.30829,3.354805,4.206455,2.7253600000000002,2.025063333333333,4.237157333333333,2.8928366666666663,2.7171133333333333,1.8747133333333332,3.305135,2.649375,1.7098633333333335,3.73724,3.12639,4.21505,3.5523666666666665,4.8985,4.319835,6.3162122499999995,3.810205,2.04176,4.593225,2.73152,7.03388,2.44524,1.1148766666666667,4.47394,3.813966666666667,4.58459,0.5451178571428571,0.8059191666666666,3.56713,3.766875,1.8627660606060608,4.23568,2.947815,3.11249,8.660002,1.820422,1.251368,3.492885,2.707685,3.184375,4.881155,6.473418333333333,3.1356383333333335,2.065583333333333,2.67053,1.91292,3.1073166666666663,8.617227479474549,1.0051769047619048,1.0328325,4.45149,0.44814333333333334,1.6095875,1.9374575,2.815175,3.047225,2.852075,4.650865,2.209035,12.22162,5.20437,2.4844825,2.4844825,4.148925,0.8879100000000001,4.810700000000001,3.776535,4.31327,5.561211666666667,3.53191,4.892085,1.3502,2.969115,2.773075,3.02362,3.2185,2.63832,3.10095,3.623565,3.575135,3.163815,2.912415,3.79117,4.131645,4.303555,2.72177,3.2446366666666666,4.71387,4.17956,17.929614523809523,11.394246071428572,3.298489285714286,0.6865933333333333,1.4112985714285713,4.51714,3.447845,3.0600783333333332,2.27301,0.8302944444444444,0.6227358333333334,0.68044,2.022455,1.6218879999999998,5.22155,3.2190333333333334,0.7175118181818182,3.3378,2.543095,1.72143,1.622322,6.2298100000000005,1.5383,4.16712,2.76369,2.8714733333333338,2.48925,2.7028866666666667,2.639283333333333,0.7034,3.24526,2.94994,3.9113246666666672,2.9730399999999997,4.737421666666666,3.675675,3.330095,2.4735575,3.522115,6.3703575,1.889955,2.377715,2.39256,1.720125,2.493665,2.12375,2.568475,0.887368,1.3736325,0.9710725,3.005935,4.224735,6.3247,5.48505,3.26262,2.189245,2.7827,3.3043066666666667,7.155456666666667,1.1842266666666668,0.3533575,2.726695,2.1903,1.506046,3.3442790000000002,1.184616,1.680077,3.584175,2.8246253333333335,1.23596,1.9601966666666666,3.802531666666667,3.69648,4.37948,3.793385,1.8616275,4.90458,3.78546,0.7543307692307692,4.71891,4.19754,4.12243875,3.0438533333333333,2.54523,1.340446,1.132215,3.64078,2.800825,3.364395,3.809215,2.73866,2.5200033333333334,3.326755,3.831925,4.17708,2.62554,2.980935,4.202025,5.6774,0.61667875,4.32042,1.7200275,3.62747,3.9941333333333335,1.42869,3.14247,2.1163325,2.21347,2.595185,2.3227475,1.74803,4.45398,3.683725,1.1883885714285716,6.77976,1.1003800000000001,3.537205,1.9858399999999998,4.73446,4.188685,3.21115,3.151825,4.14931,8.72688,3.266575,3.71324,3.65317,3.7455,1.7325525,8.1063,3.96365,3.92096,1.73253,4.362355,3.046275,1.0056425,2.01236,4.00862,2.47191,4.133085,4.9661475,4.0624225,4.51197,2.034735,5.21035,3.98239,3.2609999999999997,2.3523066666666668,1.447816,4.38003,6.27145,4.36959,4.77226,3.02012,2.1348125,4.011385,3.3604,1.1705306593406593,4.33605,4.924697500000001,3.865385,2.849975,3.824265,0.5068971428571428,0.5068971428571428,4.340815,4.02404,3.569905,2.40904,3.735835,6.026,0.830213,4.18881,4.68552,4.428225,4.785145,4.840775,1.8785775,3.38028,2.148775,4.38837,0.64735,3.91386,4.14915,2.891295,2.87966,4.16908,2.36958,3.324675,59.53095377489178,3.375285,2.6547233333333335,1.7679925,3.393205,3.9999,0.79182375,0.9782775,2.0947675,2.0947675,1.358358,3.31112,2.194915,3.6049879999999996,7.33026,2.83485,1.2181614285714286,1.2657383333333334,2.7933333333333334,4.115875833333334,0.8452759999999999,1.928625,1.0123419999999999,1.823555,3.947935,3.94922,3.21203,20.275660941558442,3.46499,4.125115,3.27724,2.26003,2.90236,3.340835,2.37803,5.80291,1.424136,4.01295,3.3255329920634917,5.750253194444444,2.10959,2.70452,1.99346,4.07995,2.30692,2.2342675,2.0273499999999998,3.5800255555555553,3.623065,3.349275,3.87767,4.03978,2.4155625,2.571165,3.17437,2.867855,3.0058055555555554,2.295875,2.0031475,3.37697,1.17762,3.908265,4.47128,2.609905,4.70236,4.737315,5.016063333333333,2.09865,2.763055,2.6839,2.78418,4.156085,3.432805,4.64858,0.7883585714285715,3.850428,2.916565,3.87912,2.2831925,1.840926,3.95259,1.1754666666666667,3.19057,4.30685,1.172654,3.9669,3.196645,4.524835,6.131724999999999,2.180255,2.90909,2.6809999999999996,3.7996666666666665,2.9111100000000003,2.684336,3.15891,2.4923566666666668,2.44784,1.4483066666666666,2.02034,2.02034,1.9957200000000002,2.1355933333333335,1.8590200000000001,2.6016866666666667,3.6104,5.44825,4.168535,1.650875,4.22382,4.32764,3.6163,4.36836,2.01259,2.511845,4.5484225,2.08773,4.472745,3.58503,3.685845,2.5341466666666665,3.821608125,3.222085,3.125045,3.58415,0.14843591836734693,2.17351,7.80104,1.5511139999999999,3.448355,3.03968,0.9912357142857143,1.0836983333333332,1.91535,3.804015,3.05082,7.06834,3.52956,3.69294,2.99188,2.633515,3.5327,3.620135,4.128735,3.675645,2.9792166666666664,5.43935,4.01305,4.03652,2.486686666666667,1.9413475,3.471225,4.40628,2.832715,2.787755,2.28237,2.773655,4.812895,3.795405,2.73182,4.51251,5.0736,2.809705,3.45346,3.822995,3.739555,4.65201,3.587285,2.48146,5.52454,4.5505,5.2177,5.1592,4.3573,4.9786525,4.35483,3.91959,1.30647,6.5218,2.428875,4.057425,4.139395,3.959685,3.109273333333333,1.9732766666666668,2.223613333333333,2.52733,0.991587,3.4219000000000004,3.801066666666667,3.11286,1.9725866666666667,3.79848,4.018985,2.35958,0.5632683333333334,4.52804,4.61524,4.959985,4.58573,3.552545,4.601675,4.78324,4.961075,1.3380555555555556,0.9313,2.8657566666666665,5.17965,5.82515,0.498811875,2.869185,2.5228699999999997,3.27866,4.515725,3.9052333333333333,1.9352575,5.44445,3.531655,4.377285,3.005825,6.32025,4.881845,6.8131825,0.5222041666666667,4.21697,0.7947,2.47757,4.011166666666667,3.1121200000000004,1.4113766666666667,2.2691600000000003,4.278065,3.447515,4.31885,2.226923333333333,1.843515,3.20749,4.531135,4.101335,3.654955,1.6570799999999999,1.1630094285714285,6.06145,2.1579375,7.7350975,4.228895,3.7402,2.0280675,1.6776975,4.056565,4.266785,1.9112466666666668,2.50659,2.4264,2.17351,6.6078608333333335,3.1286400000000003,2.7632033333333332,4.070438333333334,3.50768,1.9081733333333333,3.58604,6.898277500000001,4.49832,5.01145,0.5021481818181818,3.29454,4.033165,4.402074285714286,3.740505,4.16735,3.03428,2.88325,3.26278,3.023095,3.4152465000000003,2.04976,5.607715000000001,4.699165,5.1632,3.9582,3.389395,3.2408791666666668,2.2806075,1.37005,1.022865,2.91333,2.441545,1.1030433333333334,2.7054266666666664,5.09995,4.411575,3.52332,3.946615,16.715480714285714,4.016955,4.713245,3.834315,0.7493016666666666,4.91683,4.23777,3.764295,4.822705,4.94857,2.744465,3.63562,3.2953,1.523622,3.308515,4.726015,3.3833,1.4527839999999999,3.618995,4.923655,4.01161,4.842125,4.929265,5.51125,3.997625,2.61244,4.247855,4.1071,2.755985,3.0860833333333333,2.9528966666666663,1.5291754166666667,4.70199,2.5880964285714287,2.0877666666666665,3.878915,2.304685,4.40708,4.108736666666667,2.40183,2.63444,4.45348,3.66955,4.257635,4.454115,4.93315,4.856221,3.109125,5.4516,2.6652983333333333,3.538115,4.118775,1.5613899999999998,4.58075,1.0304016666666667,4.44608,3.04524,0.9027385714285714,3.92201,2.06739,6.284,2.449262666666667,2.449262666666667,2.449262666666667,0.7258683333333332,1.126755,1.92109,3.40789,5.92364,3.671672222222222,1.948525,2.1840175,1.7663966666666668,3.72282,2.5056,0.40431,1.742785,2.2744075,3.12169,1.929395,2.411015,2.489625,2.1280525,3.821875,2.72256,3.06664,2.96268,2.0284,6.43659,2.033915,4.31233,3.804,6.547375000000001,1.9326699999999999,3.640615,3.942215,3.59127,4.120015,2.6307,1.8709275,3.953275,5.662493333333333,2.52594,3.532845,3.343625,1.868815,4.61576,4.335795,2.5874433333333333,2.17866,3.7027799999999997,5.033306428571429,5.97215,3.264765,2.587535,2.740045,3.0335,2.692525,3.940705,1.372335,3.000555,4.656905,0.87281,3.373865,3.910875,3.809905,3.058935,2.490515,3.25778,2.221245,4.50194,7.750368333333332,4.33026,3.51189,3.096945,0.99314,4.6167,2.14439,4.23326,5.5372325,3.490915,3.98874,10.393989999999999,4.62467,4.070215,1.57733,0.6960116666666667,3.00335,3.86873,3.49474,3.655905,2.25477,2.52018,2.297023333333333,1.1568866666666666,1.1568866666666666,2.11811,2.4709166666666667,1.9229666666666667,2.336856666666667,2.81472,1.92566,2.466126666666667,2.9951866666666667,1.50125,2.1984266666666668,2.1479933333333334,2.0163233333333332,1.67073,2.6151466666666665,0.8440300000000001,9.517809166666666,0.8440300000000001,3.2129166666666666,2.1619466666666667,1.99889,4.28935,4.340275,3.829005,3.869495,2.1013566666666668,3.0428566666666668,3.254794,2.020093333333333,3.0346100000000003,2.908416666666667,2.3900799999999998,2.6255366666666666,1.6540966666666668,5.3875,6.206930666666667,3.0033999999999996,3.3195533333333334,3.2575766666666666,2.65525,2.45954,1.1185,3.5973,3.557033333333333,3.91003,6.03935,4.31245,2.86693,3.305493333333333,2.72122,4.12498,4.245015,2.7122266666666666,3.572585,2.994683333333333,2.8704966666666665,4.64152,3.1813566666666664,3.415065,5.829635,1.86066,2.4683366666666666,1.6935133333333334,1.4348433333333332,4.44045,3.480018333333333,2.6580133333333333,2.18154,1.9499700000000002,4.33216,3.65795,2.63369,3.3415666666666666,3.06152,3.3926,3.4164333333333334,3.380466666666667,3.108053333333333,0.637095,3.658166666666667,2.434886666666667,2.7754766666666666,3.47502,4.27226,4.037685,5.04515,2.54781,3.8963733333333335,1.1211933333333333,2.8200866666666666,2.8200866666666666,4.25517,2.87699,3.860445,4.128795,1.77881,3.529615,3.643045,1.1237028571428571,3.7185601666666668,2.975456380952381,2.115250666666667,0.373364,4.337205,2.813475,6.99882,2.93647,5.91205,3.353515,3.750805,3.81299,1.5972837500000001,2.75797,4.033145,3.395075,3.3214366666666666,2.956023333333333,5.55639,2.01886,1.03430375,1.8987999999999998,1.8210766666666667,5.67035,2.3612333333333333,2.413326666666667,1.680525,4.347945,4.02603,3.868865,0.506556,4.198715,3.662525,2.43457,2.39243,2.5690633333333333,3.0210388888888886,3.9425166666666667,1.5240066666666667,0.6316368421052632,0.7497357142857143,3.3436333333333335,3.7798,5.95229,4.567955,4.24555,5.17655,1.3102357142857142,3.9941333333333335,2.23772,1.0000925,5.5738,6.1116,2.546385,4.702425,4.07612,6.733955,3.9151000000000002,5.918915,3.735415,2.4779183333333332,6.2446,10.105017801282052,2.53945,0.619247,3.10449,4.120225,2.34294,6.3236,3.75156,3.572075,2.63448,2.63448,5.94095,3.34165,3.90669,4.837525,3.5649257142857147,2.3087514285714286,1.04048,4.76737,2.76111,5.02216375,3.54433,4.15403,2.984825,2.00181,4.2247,5.02775,3.508566666666667,3.94728,4.374205,26.890179285714286,1.9468025,2.535475,2.3288275,1.7141333333333335,2.550333333333333,0.9164642857142857,2.8211066666666667,3.0096233333333333,3.2474066666666666,2.9010233333333333,0.6048392307692307,3.0335633333333334,3.432895,2.867065,3.09947,3.53396,5.912635,4.686855,3.8498,3.559555,3.911884166666667,3.801275,3.4848666666666666,1.78358,0.9674083333333333,1.5200266666666666,2.27361,1.5679766666666666,2.900926666666667,2.4734599999999998,2.4298333333333333,1.98012,2.63523,2.1117,1.80523,3.115535,4.24252,3.70104,4.04801,1.417736,3.29809,2.5220866666666666,3.67597,2.15944,2.85757,2.39101,1.47663,3.86764,6.59717,2.88139,3.51885,4.12327,2.496605,3.5506925000000003,3.492566666666667,3.408265,4.50359,0.2940367245817246,0.2940367245817246,4.641645,5.0582,3.14057,3.039705,5.3131,3.958635,0.6384915384615385,4.701935,4.14146,3.63628,6.37075,4.722545,7.55595,13.886346666666666,12.415569871794872,4.417015,4.357435,2.5031766666666666,0.5790915384615385,2.4769466666666666,4.102945,1.337315,4.54508,3.5148333333333333,2.7021200000000003,2.08875,2.0278733333333334,4.85327,4.724335,8.766687738095237,4.9657,4.199015,7.187460984848485,3.537205,3.27726,1.330435,5.2129441666666665,1.8723775,2.4540933333333332,2.8805033333333334,0.250925,3.02963,3.532065,4.604359166666667,0.7697700000000001,1.117885,4.08532,0.5887749999999999,0.5887749999999999,3.165402916666667,3.19415,3.177186666666667,3.89192,4.39476,5.48225,3.83392,4.327205,2.951555,3.1151966666666664,2.6182633333333336,0.8797333333333334,2.76333,2.91412,3.045615,6.975825,3.052335,9.345,3.0276,4.819615,3.134145,2.299025,2.390355,2.7212,1.9146475,2.3512725,1.8454225,3.41602,2.350015,4.181245,2.95198,4.099616666666667,4.099616666666667,2.733509166666667,2.733509166666667,8.6952655,2.4870566666666667,0.808981,2.62899,2.53272,2.6375033333333335,4.181245,1.868566,1.89959,1.5258639999999999,3.63139,3.606385,1.595355,4.55755,4.240465,5.8613494444444445,6.589671666666666,2.1794466666666668,4.294205,5.47121,3.693545,3.079045,2.1936033333333333,3.224805,3.227923636363636,4.238085,4.8950925000000005,7.10365,3.34390375,3.04809,1.1839983333333333,4.283445,3.691752666666667,3.496745,3.662345833333333,4.186225,2.37989,2.35652,6.314495,2.82827,1.318044,5.22616,3.73566,2.505056666666667,5.09835,2.505056666666667,2.476895,3.338365,4.868525,1.0365071428571428,3.8712944444444446,4.257975,3.46928,1.2831883333333334,1.7067475,3.617815,3.737575,2.454365,6.309758333333334,3.96653,3.64145,3.84823,4.4278200000000005,1.295835,3.70373,2.61167,3.720725,3.701395,3.3307,4.55053,3.544865,3.778905,4.80058,1.9125390000000002,1.914515,3.1832366666666663,3.5495666666666668,3.4394666666666667,2.6625033333333334,3.4423,3.1501099999999997,5.59775,3.473595,3.633985,2.76177,1.93949,3.4595333333333333,1.95625,3.081695,3.17103,3.007965,0.64735,2.126375,1.92947,3.26087,1.8027380000000002,3.391062,4.21256,1.23678,3.1515225,4.40786,0.791304,1.4648066666666668,3.221205,3.92467,3.16282,2.12408,1.7314266666666667,3.54694,2.681188333333333,1.7017133333333332,3.010495,1.964345,1.1681,1.43932,6.430125,3.31817,2.21455,2.52907,2.36238,3.825595,0.903235,0.34513,0.7882057142857143,4.647325,1.729661,4.3492,2.138355,1.4075934285714287,2.7075788571428574,1.2999854285714285,1.0703314285714287,0.7415700000000001,0.5862714285714287,2.3995266666666666,6.3722,3.05435,3.835255,0.3255242857142857,3.643995,17.67431242857143,3.17247,6.856328466200466,1.11518,1.11518,1.11518,1.11518,5.6316,4.09291,4.502025,2.2833666666666668,3.095065,4.20988,4.755265,3.712405,3.557675,4.20865,3.97978,3.72258,3.830369333333333,4.13301,4.767005,4.22556,4.465675,3.31323,4.2462,2.56169,3.36674,3.434935,3.40088,3.774065,3.998895,3.0270166666666665,2.3460625,2.4635966666666667,3.84071,1.2802321428571428,3.880475,2.45691,3.276892666666667,4.0624225,4.30965,3.340075,3.00433,4.47625,2.72453,3.15447,4.87375,4.76359,3.276695,3.35189,1.6795559999999998,1.6795559999999998,1.6019875,4.606405,3.69981,5.028081,5.04585,3.6021,6.51755,4.68665,2.0309725,9.46248,5.47385,6.5028975,4.444805,2.5743733333333334,2.835785,0.25436,0.86719875,2.983519333333333,3.62726,4.659925,2.865326666666667,6.266335,5.01255,0.5807064285714285,2.690695,0.451615,1.796903095238095,3.236095,2.40801,3.997975,3.762035,3.331405,3.496005,3.31823,3.814205,3.459835,3.635305,3.412145,2.39588,1.796903095238095,2.803225,2.0811725,3.796715,2.50478,3.931545,3.585,1.7325525,4.482355,2.99737,1.3133733333333333,4.8093,4.654,4.17612,2.848713333333333,2.9313033333333336,4.02269,2.0723733333333336,1.395216,2.4808266666666667,2.6070366666666667,2.4416733333333336,2.1697933333333332,4.88937,3.163895,4.9562475,3.7393392857142858,4.697125,3.742965,1.524778,5.121,4.25376,5.4203,4.09135,6.91056,1.770645,4.720255,3.72193,3.25351,1.7671875,1.8454666666666668,4.01416,4.382095,2.5354033333333335,2.588482083333333,3.29888,3.29888,2.5887,3.0250133333333333,3.470675,4.058455,3.931485,0.6779861538461538,3.404605,4.62784,4.837017222222222,3.165325,3.219695,1.9254925,2.9436,3.525175,2.27467,4.52973,2.80175,4.91568,1.8386233333333333,1.0158272727272726,6.766,3.67772,3.064526666666667,3.098613333333333,1.787548,30.160339047619047,3.90595,3.61686,5.99515,4.482745,0.8780166666666666,6.89809,1.941495,5.6489,1.3662033333333332,4.63944,5.017893333333333,3.828905,3.14463,2.0450375,3.3997666666666664,4.73328,1.9259075,2.7696733333333334,3.397015,2.47471,2.63945,5.98105,2.14404,6.1182,1.11151,4.399425,3.73387,3.922485,4.897365,3.08799,2.2318266666666666,3.994,4.368995,3.7938425,3.7938425,5.7155,2.0514525,4.2694,6.382538333333334,3.4771,4.08404,2.950085,5.07135,3.629775,4.1755,1.36325,2.489495,4.263355,4.33289,5.4216,4.39071,2.459275,9.19273,2.804365,3.832955,1.6490285714285715,3.629825,2.3357433333333333,2.774626666666667,2.1494425,1.3769633333333333,2.6041266666666667,0.9416528571428572,1.1644514285714287,1.1644514285714287,1.1644514285714287,1.8546366666666667,0.5970025,3.88476,1.2153466666666668,2.4034333333333335,0.8371483333333334,1.8682766666666666,2.6613533333333335,2.04255,0.75702625,1.68541,1.5845366666666667,2.33207,1.695842,1.695842,1.7477133333333335,1.8615266666666666,0.8654400000000001,1.74153,1.6859233333333332,1.2788233333333332,2.66901,1.996695,5.80775,1.6996,5.69235,17.22954025,6.501835,3.58853,3.583916666666667,3.257426666666667,2.7251600000000002,2.69335,2.955966666666667,0.6824958333333333,0.9537789999999999,0.9537789999999999,0.667775,2.2618666666666667,3.654305,3.450365,1.457192,5.035,3.746265,2.68458,3.798825,4.667735,3.879195,4.06895,3.5528333333333335,3.025655,3.57245,5.67155,3.1053266666666666,4.83919,0.526965,0.526965,2.306945,2.63864,4.71468,3.50038,3.803885,4.8747,7.620792,7.308400000000001,3.57311,2.3576,4.392395,3.497495,2.4208833333333333,2.404945,3.327035,1.3516066666666668,3.865095,2.630575,1.6758125,3.3836999999999997,3.75141,2.11183,4.8950925000000005,1.608255,3.4469666666666665,2.929145,0.9972457142857143,3.6296666666666666,2.7545133333333336,4.251795,1.1533583333333333,1.801585,2.280735,2.0645575,1.710415,2.3497325,1.8801175,1.9860425,4.11481,4.3129,2.508575,1.936135,1.5336366666666665,3.544166666666667,1.9995466666666666,2.583775,4.474235,7.2701,2.3723625,3.36409,3.49748,3.597085,2.606895,4.980625,4.111535,2.96672,1.3226,4.577385,2.42339,3.215256666666667,2.75701,3.776775,4.924175,5.51135,2.1976166666666668,2.6565933333333334,2.7954033333333332,3.404533333333333,1.9696833333333332,1.513622,5.2917,3.2364366666666666,2.249385272727273,2.9595966666666667,2.8747133333333337,2.34448,3.0993,3.076216666666667,3.3544,5.11015,4.471185,2.8996099999999996,4.626255,3.31595,2.35497,3.61855,3.756875,4.067215,6.138271,1.81292,3.932565,2.49316,3.675325,3.615475,0.56469875,2.458685,2.380205,3.34461,2.71965,2.30171,2.807205,0.590257,2.6297866666666665,4.302435,2.415285,4.04504,2.3402266666666667,3.761835,1.9370675,4.428405,4.37925,1.9939879999999999,2.83971,6.92794,3.68008,4.19269,4.79574,6.8635104545454535,4.12417,4.16104,2.148915,4.456915,2.948,1.97786,1.976115,2.066316666666667,1.0393285714285714,2.69762,2.388176666666667,2.5830866666666665,3.28828,1.78994,3.21558,1.9088166666666666,4.182155,5.0020475,1.06922,1.7854433333333333,2.6069166666666668,2.840123333333333,1.9099700000000002,1.1202050000000001,5.476861666666666,2.148665,2.7593333333333336,2.49905,2.5065233333333334,2.72047,3.18117,2.24371,2.8072366666666664,2.2209600000000003,4.068225,3.426635,4.01474,3.06202,2.9524266666666663,0.661191,1.73728,2.0620525,2.0146,2.5246033333333333,1.2145383333333333,2.7506766666666667,3.0194733333333335,3.79756,1.9031266666666669,3.41062,3.24146,4.84534,3.20793,0.5938083333333334,2.06324,2.6531766666666665,3.228706666666667,0.6935927272727272,2.8712,3.344964,3.3760999999999997,2.76156,3.282138333333333,3.87663,3.7431666666666668,3.0663733333333334,1.8116675,5.45385,4.818805,4.79441,5.46595,5.56895,1.8625233333333335,3.61647,3.5597999999999996,3.336233333333333,2.7181833333333336,2.7149366666666666,3.852266666666667,3.438833333333333,2.8447366666666665,13.471734999999999,4.462835,1.04007,2.7655133333333333,1.429158,3.1348766666666665,3.204333333333333,2.22366,5.5987116666666665,6.496096833333333,2.1627466666666666,0.849793,4.13402,3.3884333333333334,3.07724,4.553495,5.3045,5.4501,4.638715,3.62776,1.9546975,6.5048675,1.1839983333333333,6.374345,4.41684,2.3324866666666666,3.79908,7.005470000000001,5.56285,2.12886,1.4302966666666668,2.07458,6.239888333333333,1.516975,2.9646066666666666,2.4681266666666666,4.1628622222222225,5.83045,4.402995,6.4581,3.60443,5.08365,3.71631,9.04035,4.811935,5.90045,2.39357,2.4797,11.077815000000001,3.554545,2.50267,2.51707,1.67066,2.69651,3.3577999999999997,0.7022,1.0867200000000001,1.1117142857142857,3.013455,6.831806666666667,2.9707333333333334,1.4494066666666667,4.259355,4.051845,0.593524,4.53741,4.119805,4.87723,3.438465,3.1762,2.6110700000000002,4.2649,10.342845,1.80696,4.1203675,3.75366,4.149485,3.56762,0.7820524999999999,3.6913,3.921,1.75999,2.5175,2.406683333333333,2.5753266666666668,1.8448633333333333,2.2197299999999998,2.482835,5.801493571428572,5.18385,3.508235,5.088726666666666,1.7241066666666667,2.3894475,4.562825,4.26195,4.44694,4.003825,4.467255,4.79848,1.6795559999999998,3.786465,7.620828333333334,1.199215,2.0484133333333334,2.5306,2.5531566666666667,2.8040299999999996,4.852891833333333,0.7497357142857143,2.45552,3.3407,6.3214,4.58162,2.2110233333333333,2.89514,2.0562025,0.53878,2.468375,3.00746,7.67544,4.51554,4.45596,0.889748,4.692733333333334,9.029671,10.176486666666667,3.388935,1.15932625,3.62864,3.48069,2.5296933333333333,5.159586,4.56696,3.90679,1.95908,3.6692,2.1406633333333334,2.50675,0.7820063636363636,0.389732,2.599115,3.386655,1.975959,3.4412,2.961866666666667,4.510885,5.39795,1.56464,2.8765966666666665,2.159275,2.159275,2.328635,3.30741,6.55855,2.6970533333333333,2.4088933333333333,3.2582166666666663,3.4286666666666665,4.38152,4.21838,4.035095,4.28702,3.98276,4.080865,7.0741,7.993755,1.923115,2.45454,2.9270766666666668,0.9262983333333333,0.6794966666666666,4.23238,2.47034,5.1477,2.9381833333333334,3.0358466666666666,1.710332,1.54579,3.81593,4.270385,4.41088,1.8848333333333331,1.4408766666666668,2.6648,2.048296666666667,2.7086,1.17956,1.17956,2.8137000000000003,4.68213,2.898785,3.366595,3.581775,1.94842,19.813438606060608,4.017985,5.381595,4.459905,4.05855,3.792595,3.60047,5.5831,6.12641,1.04814,1.04814,1.04814,2.7302466666666665,1.6992857142857143,3.1548466666666664,4.009385,3.90135,3.311315,4.112895,4.582,0.7841444444444444,1.9471333333333334,2.23944,6.640414166666667,3.8446975,4.382646666666667,4.995825,1.42869,2.03334,2.3234666666666666,0.53897,0.906204,1.83401,2.071715,3.232495,12.885245,2.73691,5.33015,0.7377285714285715,9.3055425,5.41325,3.847475,3.866935,2.72285,5.3787,2.72285,2.871098,3.41368,3.88833,3.185035,4.08109,4.14383,3.468545,5.7308,6.600353999999999,1.8770133333333332,2.4744659999999996,2.820425,25.95415762934363,1.556594,6.33825,4.03106,4.153395,4.70834,4.500335,2.72583,2.82419,2.6539,6.582,7.08685,4.44133,4.59124,3.980965,1.7579825,1.86718,4.279115,0.3907761538461539,0.3907761538461539,0.3907761538461539,0.3907761538461539,4.305895,3.479963333333333,1.04212,2.088553333333333,1.1526555555555555,4.525505,2.4712533333333333,2.263105,6.978288333333333,3.159876666666667,0.17906413793103446,20.287407833333333,4.683326666666667,1.782312,1.3062805,2.1419799999999998,1.9816340000000001,2.1988575,4.59266,3.333245,3.37171,4.468485,2.1141166666666664,7.5528925000000005,2.746035,2.03837,4.128915,5.6266,8.56774,4.22495,0.2970243902439025,3.529575,3.920505,2.7188733333333333,1.9779825,2.8987133333333333,1.6603816666666666,1.6603816666666666,4.152505,5.7724375000000006,11.202336666666667,8.9796,0.5853944444444444,2.45188,3.756375,3.037895,4.232915,3.399765,1.297618,1.297618,3.196765,3.8359,3.0590200000000003,3.570095,4.463155,5.3264,6.5363050000000005,2.1922,4.957915,4.36571,2.784625,3.04309,3.0371566666666667,4.62969,3.97116,5.3906,3.945865,4.34162,3.540135,4.203595,4.26836,5.0698,2.50578,3.0414733333333337,1.0973140000000001,4.194055,3.998105,3.691355,1.6188960000000001,1.9108233333333333,3.2369,2.7834033333333337,2.232693333333333,3.9997766666666665,1.5016966666666667,1.755045,1.8906466666666668,2.287733333333333,2.291986666666667,1.6326466666666668,3.9629999999999996,3.0459599999999996,3.8811666666666667,2.971145,2.1535033333333335,2.706163333333333,1.98808,3.654785,2.0820833333333333,38.7013715,2.1454214545454544,2.1454214545454544,2.5366433333333336,2.4423566666666665,2.3446233333333333,1.4535666666666665,2.8701833333333333,1.5264,0.8215230769230769,4.851705,6.78585,4.089915,4.06909,5.57995,1.8309333333333333,4.106565,1.8757359999999998,5.03645,5.1026,5.67415,4.0508,1.78358,3.959075,4.116075,4.487825,4.891965,5.34355,4.067065,3.311436666666667,2.6325066666666666,1.9768525,2.087385,4.316065,2.60095,3.8415925,3.8415925,2.360446666666667,1.5947766666666665,2.1452633333333333,2.527276666666667,2.3224466666666665,5.17957,2.4681866666666665,1.18489,1.18489,2.1046133333333334,2.098736666666667,2.5001633333333335,2.6254233333333334,2.55004,2.4412733333333336,2.15104,2.44836575,3.3003414642857143,1.7186894642857142,0.8519757142857143,61.89727535019841,2.520174,3.3179466666666664,2.34059,0.9200480000000001,3.773662,1.581982,1.581982,3.3133,3.263113333333333,0.86671375,3.0231766666666666,5.787773333333334,3.24254,2.5072633333333334,2.83224,1.9780266666666666,2.715936,0.318225625,2.652696666666667,0.786456,2.51702,1.325734,1.325734,3.3987,2.03476,2.6246233333333335,1.629822,3.6639666666666666,1.629822,2.2336,2.3207299999999997,2.81279,1.3412979999999999,1.3412979999999999,2.8044333333333333,1.5548866666666665,3.074056666666667,2.2221466666666667,4.13972,3.90362,11.62762025,6.90469,3.11252,2.822755,3.591465,5.0431,5.48705,2.678824166666667,3.82484,3.853645,2.080643333333333,4.140965,3.1580833333333334,2.7211233333333333,4.584095,2.18757,0.9996914285714286,3.6466916666666664,2.8646366666666663,3.04606,0.80133,2.693425,3.48636,4.11727,4.39078,6.56925,2.0663833333333335,1.85614,4.30906,4.39698,2.3050275,2.51161,2.0900866666666666,2.2275253333333334,0.907612,4.89099,4.24652,3.57355,3.69702,3.065253333333333,4.79485,5.2147,2.6399399999999997,1.7374566666666666,0.50712,14.144147833333333,0.5454554545454545,0.5454554545454545,0.5454554545454545,3.06101,3.8450333333333333,0.5454554545454545,6.9893833333333335,4.387873333333333,0.752106,0.752106,3.4661333333333335,3.397505,2.79082,4.08036,5.08995,4.204774499999999,2.2558775,4.913512666666667,3.107835,3.4712980357142857,5.20561,2.759126,2.4178875,2.3147675,2.8096,1.612375,3.304924166666667,3.0445933333333333,2.12354,2.0128775,1.795225,1.7316666666666667,1.6815525,2.581225,1.0521933333333333,2.39571,0.59201,4.818165,1.7614325,0.6162258333333334,2.0268575,8.159553333333333,2.553875,2.0883975,3.25016,7.36625,2.547025,4.22441,3.16082,6.17169,3.17517,3.66327,3.822775,3.52035,2.9220333333333333,4.140249999999999,1.11073,4.17081,2.470266666666667,2.5636433333333333,2.558035,2.446435,2.09912,1.23349625,5.5446,0.9556909090909091,4.764625,5.26645,4.91533,5.1445,3.7429,2.28083,1.972464,2.7093900000000004,2.8137600000000003,2.513765,3.8542,2.641075,4.894085,1.9313479999999998,39.4667225,4.831705,2.40439,2.32589,2.76183,1.6061699999999999,5.7680066666666665,3.67986,2.35795,3.21642,2.3902366666666666,1.6539,5.19765,0.7891142857142857,4.140468571428571,1.29365,3.5416666666666665,3.1888433333333333,2.5123933333333333,1.34685,4.293970666666667,1.6256340000000002,1.6256340000000002,2.2875466666666666,2.72751,3.2361400000000002,3.306243333333333,1.5059433333333334,2.78871,2.7754066666666666,6.220509,2.800883333333333,3.8763275,1.3945400000000001,1.4902066666666667,2.8996666666666666,0.9268980000000001,4.9928791666666665,3.1999066666666667,2.865073333333333,3.4082000000000003,2.6998766666666665,2.76339,3.15836,1.88866,2.36238,2.4309433333333335,3.3402,2.39776,3.7053999999999996,1.7539433333333332,0.6224533333333333,10.005373974358974,2.778216666666667,5.2789,4.945975,2.7583033333333336,3.09941,1.26316,2.1596266666666666,2.105905,1.26316,4.0997,0.46819875,0.46819875,1.055125,1.055125,0.7569525,0.7569525,2.758575,3.047295,2.946605,1.642875,1.723775,3.84953,2.37393,4.41789,5.59465,1.834434,4.22433,2.376605,4.52483170940171,1.49721,1.49721,1.61104,1.5903040000000002,3.4775275,2.0166625,4.243945,1.5633949999999999,2.47957,0.5333784615384615,1.0693142857142857,2.0782175,2.15844,1.82247,1.35756,3.97563,4.279335,2.0381566666666666,2.4219566666666665,1.3659466666666666,0.6671283333333333,2.364313333333333,3.531575,2.87572,4.604285,4.73852,4.792155,3.82059,6.4809,1.5052666666666665,5.769895,1.94773,4.69938,4.453735,5.568397,3.3574,2.466615,1.80796,1.966002,1.966002,2.52085,2.52085,4.112535,5.74375,0.9490320000000001,3.71445,3.404775,3.42705,2.2745233333333332,1.40507,2.8233033333333335,4.22944,3.99633,1.7061060000000001,6.50485,4.875775,1.7506466666666667,1.25665,3.94394,4.03088,3.333845,3.64375,3.934135,0.595805,3.7880333333333334,3.306483333333333,2.753643333333333,2.8275566666666667,2.23439,3.675933333333333,1.5339714285714285,1.5339714285714285,1.5339714285714285,3.0204833333333334,3.076643333333333,3.1839333333333335,3.295252904761905,2.1899425,1.18306,3.08215,3.10351,1.3576185714285713,2.6323233333333333,2.6616066666666667,1.1798185714285714,2.3043633333333333,2.8645066666666668,2.85352,2.682726666666667,2.4388166666666664,1.9954925,3.0997033333333337,4.438192,3.73273,0.971143,1.371556,0.55374,3.4255333333333335,8.7537,2.8752133333333334,3.36275,2.65265,4.4026575,1.9479875,7.54531,6.520863333333333,2.634796666666667,2.121933428571429,3.99789,4.73778,1.6170339999999999,1.186688,1.272632,1.855005,10.371983333333333,2.5416,3.019683333333333,2.8529150000000003,3.868495,2.0795266666666667,1.06119375,5.53535,1.0205966666666666,3.217306153846154,4.39167,3.34517,3.1629533333333337,3.129605,4.69906,1.1741116666666667,2.0620125,1.8542826666666667,1.8542826666666667,3.87365,5.5196,9.3052975,4.30142,3.450305,4.577465,1.8104775,2.27926,4.589325,3.6003,4.000575,1.5549916666666668,2.8210366666666666,3.534505,3.758075,2.3397975,4.03488,3.793445,3.878565,4.314165,4.022635,3.693,5.07385,3.186803333333333,2.4584066666666664,4.27128,3.195335,3.96008,2.071145,2.518155,2.709685,5.85645,2.522515,3.229893636363636,1.7111225,2.525435,3.219505,2.135405,2.1068775,0.8309666666666667,0.8309666666666667,1.8596725,3.4499342424242423,4.062895,2.9522266666666668,4.17691,3.0647941666666667,2.5360314285714285,0.93858375,2.816755,1.4149475,3.621305,4.220125,0.9329483333333333,1.919685,3.87426,3.0186725,1.6589525,1.6680433333333333,5.200011428571429,0.9903066666666667,2.91039,3.41031,2.82286,2.512205,2.759351,2.22001,1.0102325,2.980015,3.17633,3.37977,1.5740999999999998,1.4890766666666666,1.833485,4.256095,2.191275,4.38059,4.506245,4.437175,5.8931,4.961875,4.18796,6.288600000000001,3.7928542857142853,0.7853436363636365,2.85086,3.909065,3.64706,0.4466554545454546,1.056428,3.05114,3.916395,4.63119,3.924615,3.242893214285714,2.891225,4.29481,1.6948,2.424105,4.282065,4.34135,3.291055,2.861915,3.470485,4.556465,2.84208,5.111997499999999,0.9246800000000001,3.21622,2.687735,3.95568,4.408415,4.58376,2.2271799999999997,2.452995,3.14691,1.90982,4.95632,2.76024,1.2955342857142857,2.704695,3.8410175,1.450386,5.90025,1.805368,2.5772666666666666,13.587513940395862,2.88815,1.5337866666666666,1.6710666666666667,2.128366666666667,5.464585,1.6570799999999999,4.1309819999999995,0.61044,3.3629,4.03649,7.434520000000001,2.581233333333333,2.7245966666666668,2.7245966666666668,4.53971,4.241985,3.510015,3.42903,4.66276,5.0341,2.5422,3.0679366666666668,4.34693,1.2668366666666666,2.4259366666666664,4.259775,3.876925,2.89273,2.13651,3.78134,3.267905,5.77454,6.11383,0.6563060000000001,4.027935,3.668425,3.677466666666667,4.28337,3.841365,3.78114,1.30259,4.80747,2.479105,2.750805,4.17426,4.33109,4.34363,0.8816331428571429,2.5320466666666666,9.089694,1.4896266666666669,2.0961896103896107,2.3377725,4.02535,3.493805,3.464525,0.6639427272727273,2.22564,1.77722,2.1985125,4.10873,5.3510919999999995,2.7050919999999996,9.268934999999999,2.2702,2.6274,0.9874729999999999,4.262495,5.1379,2.14322,5.4557675,2.682525,3.237135,5.30785,4.176415,4.69713,2.119265,1.6100625,1.6100625,2.80909,3.28913,4.694004166666667,1.5913575,5.722236666666666,1.52651,3.554295,1.1933333333333334,8.996202166666666,4.13746,2.799145,4.02887,3.69907,3.82931,1.1530866666666666,1.9378,3.343833333333333,3.20614,3.3248266666666666,3.7467333333333332,3.8817,2.860305,3.223535,3.43622,1.713345,2.5745566666666666,1.9617000000000002,2.958153333333333,1.8867633333333333,5.026132499999999,3.18498,1.9960133333333332,2.7171966666666667,3.44303,3.236435,6.30405,5.85165,2.98409,3.60215,2.85019,3.038665,2.87621,1.2974133333333333,0.90739,6.44092,2.96587,5.8995,4.66736,6.24095,3.0331,2.72429,6.4884,2.48931,0.38722833333333334,5.7383,2.92826,3.67602,3.3846666666666665,1.347777142857143,3.959855,1.103712,4.438325,0.86303875,1.2437033333333334,2.9207433333333337,2.4602666666666666,2.8760342857142858,3.56015,4.25569,5.88091,5.88091,4.5773775,4.5773775,4.605065,2.8302133333333335,4.34203,0.961345,6.04835,3.33206,3.5719666666666665,3.80803,4.011815,5.15855,1.909485,4.826865,2.983968,2.693835,4.22363,2.45743,4.663625,5.15985,3.794205,3.6005,5.10095,3.788035,5.9722,2.70765,2.51233,5.6238,3.810415,2.9060799999999998,6.173368333333333,1.7626466666666667,2.1372225,4.891585,4.34094,5.03285,3.64181,2.1278755,2.1278755,12.681597337301588,11.7047,4.555775,3.075045,2.9321115384615384,4.21854,4.454665,2.554603333333333,3.3156133333333333,3.001425,3.890166666666667,3.7322,5.01005,2.187205,8.357346666666666,2.387645,1.83292,5.61105,2.329605,4.813355,4.43442,4.473855,0.7196344444444445,3.389435,3.56788,0.8272619999999999,2.922425,4.037775833333333,1.381752,1.8185766666666667,2.818936666666667,2.730703333333333,2.237573333333333,3.0963933333333333,2.124136666666667,0.3842492857142857,2.51532,2.6525866666666666,2.74352,3.11023,1.447566,3.0307999999999997,7.181393333333334,4.18551,2.36741,2.092416666666667,2.6923033333333333,3.770405,2.422025,3.46337,18.208827499999998,5.6237,3.299842,4.6168,3.684525,5.209933333333334,1.4454133333333334,5.93975,1.4467433333333333,4.851365,4.588845,5.4896,4.980185,0.9739076842105263,6.73435,2.442285,4.61862,2.846215,4.326605,3.46663,2.846045,2.33224,1.514358,1.850835,4.228735,4.573805,2.209135,1.880725,2.9366233333333334,3.978645,2.73879,6.3251,1.8101425,3.47512,5.1341,4.322765,3.92549,3.056615,3.749265,4.4336,3.8427,2.544383333333333,2.544383333333333,5.7761394444444445,2.06422,2.35908,3.799285,1.7538,7.35374,3.68814,4.175516666666667,4.248366666666667,4.18241,1.816652,4.098385,5.65915,4.042955,2.05441,3.47968,3.24478,1.17954,1.102945,1.4238966666666668,0.7504149999999999,1.6516,0.8953766666666666,4.736665,0.99794,2.5488166666666667,1.6945233333333334,1.7289775,1.0655183333333333,1.8266475,2.2623525,1.42521,2.9595566666666664,2.755853333333333,4.616593333333333,1.4847666666666666,2.552525,3.0942600000000002,2.8613999999999997,2.3880266666666667,4.355683333333333,4.506665,4.639480833333334,19.446155333333333,2.4978533333333335,2.257835,0.6457446153846154,0.6312979999999999,3.99139,1.962408,4.062695,4.87703,6.670019999999999,3.64469,3.55996,4.258985,3.0970433333333336,3.2258600000000004,3.1636233333333332,3.769133333333333,3.1023866666666664,6.43445,3.40873,0.903514,1.1155125,5.15715,3.0809866666666665,2.3652166666666665,2.13092,2.3173533333333336,5.58755,4.676785,2.188875,2.2350533333333336,3.31837,4.554245,8.330729999999999,4.77725,4.08732,3.94254,5.2495,4.576355,4.0291,4.7154,3.775855,4.96498,2.23991,5.35845,1.5516,4.935715,0.7225266666666667,4.6474,5.306,6.0092,6.16895,4.333285,5.85155,5.52645,6.02151,1.7834833333333335,1.482557142857143,5.32065,3.66279,6.131385,5.09015,5.513844166666667,5.01285,6.2661,1.275755714285714,4.217275,5.1117,4.091066666666666,4.557695,5.67795,2.5682,4.071385,2.586005,4.123035,1.0032750000000001,1.5883733333333332,1.38561,4.682805,4.199085,3.331025,1.7368066666666666,2.8277133333333335,1.6654333333333333,2.2791966666666665,0.39607583333333335,3.389,1.542788,2.2636233333333333,2.8395766666666664,2.3895833333333334,3.1677166666666667,2.67285,2.35361,10.069946,3.674633333333333,1.7394565384615386,3.414865,0.8888836363636364,4.5502062500000005,1.1765975,1.7681275,1.8870375,1.03961625,5.549056,1.139807638888889,1.139807638888889,1.139807638888889,2.8817033333333337,1.9730219999999998,4.780495,3.023225,1.4532725,1.503965,2.06669,1.212675,1.9137619999999997,5.1115433333333335,0.7313511111111111,4.05603,4.066405,3.0150799999999998,0.9535028571428572,2.2206685,1.7694775,1.7694775,1.4420466666666665,3.718166666666667,4.150195,5.01,5.6325,4.12377,5.1363,2.7797366666666665,1.9537475,2.781915,5.16175,3.15617,3.828535,1.04445875,3.895872708333333,5.6744,1.9269575,3.851045,3.039773333333333,4.71182,4.576135,2.457705,6.92825,6.381,3.835155,4.3272,4.376305,3.20074,7.7856,3.87771,5.187626666666667,3.47605,2.627076666666667,5.17345,2.6483133333333333,5.6195,4.32619,2.7106933333333334,3.17007,3.931135,1.55166,10.383009999999999,3.58833,3.33168,15.157529682539682,4.03685,1.81716,2.7202966666666666,2.125695,2.376635,3.523755,2.6281943055555557,2.973465,2.722385,2.964015,4.293465,5.814695,1.3185333333333333,1.8382375,4.2195,4.26949,4.8075,2.2533475,0.5748733333333333,4.22583,4.390165,1.955495,1.3523016666666667,4.753415,4.290265,0.8566711111111112,3.784675,12.232116666666666,1.279439142857143,0.4052671428571428,3.459633333333333,4.464111666666668,1.0270566666666667,3.52859,4.005695,6.231761666666666,1.3151416666666667,3.42486,3.876415,3.346215,4.284035,4.07631,4.05799,8.30162,3.220005,4.24717,5.25155,15.867988125,3.45196,2.79525,1.16629,1.88601,1.332345,2.08125375,1.333455,2.012715,1.66584,1.991725,2.417985,2.29298,2.1616175,5.5588,4.29104,5.6131,3.33876,5.537543333333334,2.7099733333333336,5.20455,3.415366666666667,1.253225,3.862375,2.019285,2.8255226666666666,4.436245,4.7246,4.648925,4.082915,3.5076666666666667,3.752266666666667,2.54522,3.435545,3.84964,2.509545,1.840605,3.4619999999999997,4.042705,3.43803,2.455346666666667,12.361233333333333,0.71072,2.761125,4.570715,2.395177,1.045514,2.83421,7.329475,7.149473333333334,4.274625,3.60501,4.06442,1.92952,2.243385,2.820853,2.07608,3.7171849999999997,5.09395,4.222055,0.4631573333333333,6.05735,3.3149266666666666,3.135896666666667,3.5283333333333338,5.8612,8.643346000000001,4.327321,0.9979,2.1301025,2.40924,3.973545,2.62414,4.45766,4.344535,3.3035266666666665,2.56259,3.98473,3.952085,3.936085,4.195166666666666,1.6797266666666666,3.09744,5.1866,5.3995,2.95658,1.79506,2.326566666666667,29.939995269230767,1.532845,1.532845,2.4738233333333333,5.0115099999999995,3.573465,4.31909,2.74656,3.033085,5.05195,3.0912433333333333,4.215265,3.0912433333333333,3.54709,1.8600933333333334,1.6497233333333332,5.83715,2.591425,4.723165,3.28918,2.6512,6.041115,1.9929866666666667,4.439425,5.26025,3.47828,3.30579,4.8073,1.9334320000000003,5.1469,3.437285,6.968273333333333,5.064843333333333,2.8822,3.86741,5.0093,2.148815,2.4125566666666667,3.4828333333333332,0.43595071428571425,3.0438466666666666,10.208176666666667,4.113555,3.684065,4.84032,3.1514866666666665,3.08028,1.3353657142857143,4.18824,5.44695,3.30021,2.21947,3.98967,3.429785,4.218315,4.289185,2.81265,2.81265,4.04308,2.88156,2.5287336363636364,2.1202,4.65335,4.20547,0.9895957142857144,3.659115,4.78166,2.681226666666667,6.4443,7.60278,1.5079420000000001,4.29714,4.66474,6.552835999999999,0.626239,7.61725,3.2971608333333333,0.5700163636363637,5.0385,5.19555,4.689845,4.15674,4.598735,4.134425,5.03025,3.897695,3.64103,4.24794,5.1711,4.42251,4.463155,3.853845,2.64414,3.868475,3.106455,0.9659890000000001,4.535615,2.492985,1.763235,4.262895,4.23183,5.6648,1.0347971428571427,4.994368333333334,2.888475,2.7406400000000004,1.577695,1.3152833333333334,11.411821666666667,2.3817533333333336,3.0343766666666667,1.69041,3.9023942857142857,5.4330766666666666,5.936475,2.71396,1.9572533333333333,2.10752,2.10752,2.10752,1.64015,3.97267,3.92577,3.36424,4.65128,8.19187,4.099255,1.149044,2.44372,3.0611,2.34284,1.727366,3.9923,2.762045,1.4511033333333332,3.090593333333333,5.034639285714286,5.6317775,4.137445,4.248155,2.9816766666666665,4.846725,4.538055,5.108721666666667,1.7378525,1.7378525,4.13223,3.813865,2.889341,2.889341,3.69689,1.14932,4.847815,3.30397,4.41295,3.582885,3.54833,3.2073366666666665,0.9997785714285714,4.38174,4.700115,4.20875,4.49538,4.74282,4.86787,4.27354,1.9363175,1.574295,3.426685,3.746195,3.28562,4.37354,2.373915,3.2517625,5.17785,2.84012,4.965935,7.306135,2.2236525,3.072103333333333,4.2648842857142855,5.1742341666666665,1.598495,1.9906771428571428,0.9652,1.9906771428571428,1.8009766666666664,1.8009766666666664,1.556486,5.12415,3.29909,3.634095,2.452145,3.76376,1.5275466666666666,5.3729,3.19555,1.7313875,2.89972,3.478885,3.60097,6.718872,4.704575,1.24133,0.85834,3.660665,6.888933333333334,2.491033333333333,3.76455,3.79868,3.79868,2.37945,3.509535,2.95077,1.3754167532467534,2.9475266666666666,3.023835,2.481165,4.02031,3.81706,1.5921925,3.29328,4.17525,4.382715,4.93277,4.477205,1.6829025,2.24728,1.38121,2.07428,3.42676,1.90099,4.339325,3.311123333333333,3.593585,4.13288,5.155,1.30177,1.002624,1.84462,1.449855,1.1893222222222224,4.965145,4.193105,1.0973140000000001,0.28144739130434787,0.28144739130434787,0.28144739130434787,3.434955,5.725126666666667,4.407715,5.2226,4.8856,5.289,4.415645,4.57903,2.851525,3.75525,1.6335375,4.677715,4.018665,3.952695,4.066135,4.183965,0.6587545454545455,0.6587545454545455,0.6587545454545455,0.6587545454545455,0.9767020000000001,0.9767020000000001,3.87306,3.77163,3.41459,2.89507,2.6287,6.0207,4.746425,5.6147,4.325305,2.969943333333333,2.5341133333333334,9.99467,1.426624,1.426624,3.940205,5.29855,3.264253333333333,0.46819875,0.46819875,0.46819875,0.46819875,0.46819875,0.46819875,4.513648333333333,4.87547,3.44586,4.59232,2.9460949999999997,2.9460949999999997,2.954055,3.1463703333333335,2.414613333333333,2.51721,3.28244,6.925435666666667,1.427322,4.544625,3.275695,3.829335,8.733496666666667,2.0913033333333333,2.56325,0.9334771428571429,2.052115,4.720985,2.832455,0.86827875,2.67671,3.83236,5.41315,2.60775,4.557692777777778,0.8024377777777778,1.8576366666666668,4.692615,4.757905,2.672243,2.36086,1.9353033333333334,1.3335283333333334,6.84122,3.09717,1.9486800000000002,3.22686,2.7046383333333335,3.555985,3.781035,2.71518,3.0445966666666666,5.67885,1.4800550000000001,4.332825,5.2064,3.41928,3.717725,1.96061,3.03657,3.828035,3.82206,3.26049,4.878995,4.67419,2.7025666666666663,1.97597125,2.73575,2.9152733333333334,2.86481,0.7967427272727273,2.2017225,8.4565725,0.465604375,3.03368,1.5289933333333332,2.6456866666666667,3.20954,2.6437933333333334,1.2509222222222223,1.745356,2.690993333333333,2.205385,3.71781,1.95375,2.59863,1.4486666666666668,3.2137539999999998,1.9394975,1.1638385714285715,2.82202,2.0469775,2.2997533333333333,2.66559,3.08286,3.1446566666666667,3.312466666666667,2.9314066666666663,2.8533633333333337,3.3109,2.72315,2.76055,1.69507,2.3014466666666666,2.4194033333333334,1.68461,3.0788933333333333,3.926821904761905,2.9073433333333334,2.4070633333333333,2.942066666666667,3.4385,4.696084166666667,2.975346666666667,1.8536185714285713,1.8536185714285713,2.37582,1.17427,2.418285,3.3666400000000003,4.6034475,2.77135,2.0177275,2.0335825,2.1458,3.84218,3.178985,4.09651,3.60847,1.83208,2.1820866666666667,3.76757,1.180872,1.180872,2.0299075,0.6187592307692308,2.3392871153846153,1.5865525,1.5865525,2.781166666666667,2.5200299999999998,3.04337,2.602033333333333,1.8953625,5.459361666666667,3.8930024999999997,3.8930024999999997,3.61044,3.04206,2.297375,2.998145,2.39448,2.9966,5.2068575,0.48176749999999996,0.681431,4.223615,2.56848,2.86725,6.4064283333333325,3.53921,1.664938,4.94678,4.798495,4.109965,4.251135,5.3468,4.71038,13.124117,3.308445,1.6517799999999998,3.004795,3.78698,4.56568,2.89745,3.97147,3.820325,3.60399,4.09009,2.7139866666666665,3.034985,2.55869,2.4896266666666667,2.4896266666666667,4.265865,2.693815,3.19819,3.377465,2.30241,2.562705,2.169985,1.810755,1.9607225,2.040065,1.7095975,3.3045445,3.646325,2.5926,6.7763875,3.15592,2.3328,1.8658299999999999,3.507215,3.940135,3.859395,3.1608614583333337,3.614915,3.274145,4.4418,3.893515,3.95242,3.971395,3.5490440000000003,3.61176,0.74161,0.74161,0.74161,3.57995,2.50376,5.68535,2.3143,3.75205,6.7524631481481485,2.5542866666666666,0.3424753846153846,5.2063,0.7523489999999999,4.281922857142857,1.964515,3.532715,1.97589,3.89451,5.216466666666666,4.20667,3.863845,2.679233333333333,2.8398333333333334,1.4749800000000002,2.47532,0.4011194736842105,0.5561370588235295,2.4634266666666664,1.4313033333333334,1.9013975,3.91922,2.57276,4.96087,2.7275466666666666,3.0457416666666663,3.44894,5.73071,1.68204,0.90202,2.424105,3.5556080000000003,1.1779337012987012,4.93328,4.030295,3.217575,2.725186666666667,4.263775,2.59781,2.40812,2.2269866666666664,2.4634625,2.05219,2.274045,3.240536666666667,2.3141633333333336,5.387084,2.234855,2.0342100000000003,2.096013333333333,5.0262139999999995,3.24033,3.24033,2.438563333333333,3.95261,2.3634275,2.997655,2.922325,0.5575313333333334,4.262465,1.82863,11.585322222222223,7.11138,2.9124,3.50366,3.42451,4.50451,2.90071,3.17557,0.25522066666666665,1.972955,3.315103333333333,0.7796591666666667,3.903165,1.2780500000000001,4.51905,3.371825,3.09419,3.336925,3.229615,2.267695,4.67516,3.74891,3.43589,6.56803,4.191965,2.8226866666666663,3.11632,1.547668,2.03803,4.113985,3.434675,3.7919825,2.52225,3.39236,1.348654,3.102895,2.426715,3.272315,10.157873333333335,3.73445,5.208138333333333,3.851685,4.277975,0.9874655555555556,4.753799,4.48428,2.575346666666667,2.48409,2.5214766666666666,3.6470333333333333,2.50259,1.8603399999999999,1.99749,3.598335,1.539116,2.654733333333333,4.828041333333333,2.6418566666666665,1.1081214285714285,1.1081214285714285,3.62581,3.1142445,3.1142445,2.9821299999999997,2.915563333333333,3.255961282051282,3.882433333333333,3.364333333333333,2.7975266666666667,2.3615833333333334,2.577243333333333,3.12932,2.310645,2.5231966666666668,1.6612380000000002,5.879918,8.301934666666668,0.44334153846153845,0.44334153846153845,0.44334153846153845,0.5300422202797203,0.5300422202797203,0.44334153846153845,2.990406666666667,2.99764,4.162345,1.3909816666666668,1.79527,3.318258,2.54537,3.0438833333333335,2.3724133333333333,2.911936666666667,3.3323533333333333,6.687591666666667,3.08258,2.4810133333333333,2.906216666666667,4.60142,2.2361133333333334,3.3202,5.74609,2.4057233333333334,3.4923,1.40831,1.40831,2.827116666666667,0.5132,2.322583333333333,2.7512166666666666,2.8612866666666665,3.216606666666667,2.37649,1.8156533333333333,2.6361933333333334,2.8226433333333336,2.3074233333333334,4.29047,2.3474166666666667,3.430575,2.699285,3.61308,0.490438,7.200243333333333,3.089208,3.089208,7.534406388888889,1.75216,1.9159133333333334,3.236353333333333,4.36191,2.38487,2.01797,2.62116,1.416225,3.5022,1.89297,2.801001,1.4045725,0.27775363636363637,0.27775363636363637,4.691595,3.942695,3.443225,2.6316633333333335,2.73107,3.058895,1.38763,5.4139,3.84753,2.86134,1.7976675,1.1934933333333333,2.42618,3.236353333333333,2.64994,2.26644,5.80278,3.67308,4.35318,3.78035,2.608315,0.7070675,7.557095,2.097975,1.57451,3.50318,4.07253,2.653015,1.6551916666666668,4.408915,3.9886,2.9090333333333334,3.0478366666666665,4.086295,4.12941,3.6067666666666667,2.472434,2.472434,4.05029,4.761005,5.412,5.95687,2.540833333333333,3.794255,1.4720571428571427,2.48353,5.522698666666667,3.811045,1.9078320000000002,5.38185,3.50449,3.50391,2.48341,4.138365,4.680385,4.437815,4.450025,2.52331,2.581253333333333,3.6629,2.1735966666666666,2.666,2.5954833333333336,2.646803333333333,0.654462,2.13964,2.7745433333333334,1.7691686666666668,4.32181,4.45846,4.826135,3.880835,3.28689,4.97667,11.38016,4.545425,3.627435,4.445245,3.830915,4.62668,2.4780366666666667,3.0242940000000003,3.412433333333333,1.20194375,3.036905,2.77376,4.51571,5.4025,4.26531,3.4047666666666667,3.030696666666667,2.18122,4.276966666666667,3.9750199999999998,3.7476333333333334,3.9750199999999998,2.280137,2.3224233333333335,2.271475,1.98122,2.4037466666666667,1.8053766666666666,0.8309233333333333,1.2304666666666666,2.0186533333333334,2.0316366666666665,1.6056633333333332,1.3426200000000001,1.7806633333333333,2.7274166666666666,1.583216,3.085053333333333,1.3508566666666668,1.6207966666666669,2.659445,3.7254,2.5594766666666664,2.2288433333333333,2.2531766666666666,3.3675,2.27366,2.8739133333333338,3.2756233333333333,2.4865033333333333,3.0801366666666667,3.0397875,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,5.1501,2.96691,1.0682842857142858,3.0706866666666666,2.7208133333333335,2.881016666666667,3.19431,3.1956666666666664,4.715875,3.281114,1.519932,3.0210500000000002,1.73505,0.948705,0.944867,1.5788650000000002,0.8687266666666668,0.7318408333333334,1.3196059999999998,3.253945,1.535668,1.5518066666666668,1.8583894444444446,2.2208127777777777,1.3910733333333332,1.2735566666666667,1.5031633333333334,0.94697,1.317005,0.8189783333333334,0.927592,3.35066,3.6844,4.039145,4.54212,4.01333,3.207876666666667,4.54177,3.3845333333333336,1.9352575,3.518775,1.9914,3.687345,2.181973333333333,0.80215,4.091065,4.90378,2.095616666666667,1.3365425,2.96217,3.352185,3.718166666666667,3.06134,2.59768,0.8359775,2.195545,4.8342875,3.68887,2.44557,1.5336299999999998,3.921545,1.689395,0.5879836363636364,4.38919,4.2739,4.12321,2.2141,1.371248,3.059105,4.611805,2.7592933333333334,2.645896666666667,2.6183433333333332,2.66494,2.7803966666666664,2.9077133333333336,3.0425400000000002,1.24055,2.580475,2.6200433333333333,5.1225,4.30363,3.928845,4.670145,16.1502537739899,4.1593275,4.403076666666667,2.87329,4.00345,4.845015,1.501322,1.84327,2.2715,5.613555,2.95315,3.03067,6.23745,2.2715,3.878245,2.112755,1.9629466666666666,2.9603,2.68395,1.2875216666666667,4.19352,3.36011,2.54079,4.259375,2.4838,3.397733333333333,3.6055,3.47961,4.43131,3.956865,2.6944,3.55022,2.76095,2.5573966666666665,1.044324,1.044324,3.2422799999999996,2.3073366666666666,0.3752071428571429,4.523501,1.018164,2.760115,3.46477,0.5833533333333333,4.39833,8.188500000000001,1.914515,3.685895,3.7386,2.6572733333333334,3.545245,2.49238,3.01591,3.58776,4.16656,3.115855,3.7889,0.9756,11.69408,2.83481,2.89206,5.88445,2.76979,4.02094,7.6035216666666665,4.003355,3.700635,3.89608,4.122625,5.19206,1.43742,2.673436666666667,4.49105,3.783166666666667,1.8992339999999999,3.95306,3.74339,3.60335,4.07204,3.83793,3.78756,2.450745,4.147865,3.77308,4.86201,3.26914,2.2424833333333334,2.3758033333333333,1.9449733333333334,3.1655433333333334,1.3271266666666668,3.5544,0.8590836363636364,3.1150466666666667,3.1326133333333335,2.669473333333333,1.5070533333333334,4.05979,3.87216,4.346425,1.892215,4.376375,3.663345,0.7465856410256411,0.3370123076923077,4.277785,5.37245,0.97609125,0.3370123076923077,4.299385,0.7465856410256411,0.7465856410256411,0.3370123076923077,5.581201666666667,2.4243466666666666,2.417476666666667,5.3998,3.15436,3.221935,0.82496,3.145445,3.941995,4.65162,5.7201,2.100345,0.6930715384615385,4.084315,2.00455,1.214846,1.756445,1.0193285714285714,2.010686666666667,2.1872633333333336,3.122585,4.9803,2.7201033333333338,2.9005833333333335,2.731146666666667,2.3005,3.25245,4.4860325,1.666295,1.97497,4.095605,5.01805,2.0699152777777776,5.05445,2.55218,4.055575,4.21699,2.99582,1.2020725,3.455405,6.65965,3.64324,3.322385,4.957915,6.2041,2.425925,2.985695,4.48693,3.19651,3.3755,8.61601,3.817395,4.7701275,2.529185,1.314535,2.4847766666666664,1.84295,2.126135,1.977165,3.952965,0.637385,3.159565,3.876905,1.8927366666666667,2.9929166666666664,4.841615,3.284345,2.832705,4.15896,4.94211,9.168446166666666,2.692293333333333,2.398963333333333,1.7298839999999998,1.396025,1.3424500000000001,1.4054033333333333,2.4118133333333334,2.5805233333333333,2.8897099999999996,4.5540125,1.6489525,2.24548,5.1323,5.13695,3.78915,3.443245,3.12201,2.63009,2.2026,2.25249,1.93292,1.887675,2.765915,3.760405,4.80203,5.128,3.63469,5.223378333333334,3.40369,2.57355,6.4429904166666665,3.21253,8.731449999999999,4.793645833333334,4.793645833333334,5.45079,1.7559566666666668,1.410055,1.45059,0.715585,4.79281,3.753966666666667,3.3298875,3.3298875,2.14886,4.233305,4.385095,4.227735,3.82936,2.8892866666666666,2.665735,3.609685,3.0274633333333334,5.045819999999999,3.499775,0.7616409090909091,4.92782,4.89227,3.883625,4.82901,3.28383,5.99975,4.079975,0.8436307692307692,5.2813,7.197998333333333,3.18368,5.73715,5.8202,3.424865,2.66544,3.623215,5.99865,2.0974975,5.8847,1.92309,4.45479,2.5760633333333334,2.331525,0.9246800000000001,2.78669,5.80075,3.461945,3.34087,2.054936666666667,4.806,8.172446666666666,3.55541,4.307275,2.545805,2.61979,0.8452,4.66391,1.4856633333333333,3.2513875,3.2513875,3.650135,2.1775333333333333,2.9021966666666668,3.789325,1.690235,2.68033,3.1739866666666665,3.2639633333333333,2.874955,4.263215,2.829235,1.82446,3.1783566666666663,2.0553475,2.897206666666667,2.140703333333333,2.9409266666666665,2.8406066666666665,1.3759542857142857,1.8988033333333334,0.49817333333333336,1.3203816666666668,0.49817333333333336,0.49817333333333336,1.8988033333333334,0.49817333333333336,3.4072999999999998,2.549386,2.549386,2.6799766666666667,3.911005,3.74047,4.045155,5.18655,5.2516,3.582355,3.612895,3.841205,1.6916725,2.217861833333333,2.198726666666667,0.8092190909090909,5.35255,2.951726666666667,2.94819,5.46845,4.2426200000000005,5.06955,3.587895,2.811533333333333,3.142605,3.501865,2.766246666666667,2.863906666666667,2.03818,5.3297,0.8453844444444445,3.59145,1.1272757142857144,3.612635,3.1882533333333334,2.717033333333333,3.921865,3.96962,3.57813,4.221745,3.849895,3.489595,4.04709,4.331595,2.39218,2.728825,3.2001566666666665,4.1851,2.83024,3.18541,2.732415,2.973855,3.2949300000000004,3.506885,4.88678,4.562165,3.96453,67.3865588274642,2.7621941666666663,3.731075,15.969296333333332,4.104595,3.0343766666666667,2.1063233333333335,1.9485566666666667,2.6683333333333334,4.3353775,2.929066666666667,3.8662658333333333,5.48905,3.46357,7.33826,5.4005,2.581905,3.405885,3.520795,3.449705,1.9312159999999998,1.07874,4.91083,2.963085,5.951501666666667,3.66196,2.1826833333333333,3.31651,3.46727,4.478925,3.493095,5.734954999999999,4.28057,3.37854,2.983955,2.502575,2.95315,5.6697,2.98765,3.524955,4.30268,1.1872283333333333,2.414855,5.12453,2.710025,3.26375,3.64041,2.919835,3.849895,3.20649,3.014765,3.2471,4.69134,2.857465,3.273225,4.468745,9.424435,3.2031066666666668,4.198405,5.29899,3.395565,1.91366,4.2479618750000006,2.04832,2.9194633333333333,2.9063980000000003,3.61801,3.37048,2.878745,3.08638,3.26087,3.90783,3.90154,4.20061,3.51159,3.18545,3.36421,2.5526616666666664,2.5526616666666664,6.975705,1.850395,3.131885,3.24175,2.43264,4.59763,4.1982,3.24957,3.33784,5.0258,5.8410775,0.6394209090909091,4.271835,2.271565,2.88587,2.3365633333333333,5.155,2.70342,2.0899075,1.11151,2.051212272727273,4.1395,5.2744,4.077245,5.4462,5.59285,5.81645,2.662485,1.8261566666666667,3.9866,2.513565,2.84844,2.02588,1.2587933333333334,2.55772,3.1178899999999996,1.542236,2.3092466666666667,2.456403142857143,3.34167510989011,2.867195,4.840765,3.33798,1.4524025,3.122425,3.26272,5.745,4.602075,5.6429,4.734545,2.01546,1.4594533333333333,0.6097285714285714,1.63229,3.537135,2.683325,3.6550450000000003,1.39706,2.43462,2.42421,3.431365,3.682035,3.95484,4.001196666666667,1.6873125,1.415175,1.959525,2.086585,1.4447425,2.5051,6.722039916666667,4.820965,3.37407,3.06313,6.88436,4.463415,3.24696,3.103165,3.230725,2.66125,3.965125,2.4392866666666664,7.51606,0.91948,3.09686,6.6156,4.03943,4.51256,6.26695,1.80776,2.994536666666667,2.9632166666666664,2.727816666666667,1.4478875,4.14816,9.15615,3.15219,4.75083,3.93062,3.04978,4.806285,0.9040516666666667,2.8419166666666666,5.29875,5.946883333333333,4.964035,5.73195,2.876925,3.6056333333333335,2.5075533333333335,4.971515,4.74509,4.121779166666666,4.121779166666666,0.65337,3.5863333333333336,0.96943,0.8909716666666667,1.761585,3.6612333333333336,4.124782,5.592667714285715,3.020296666666667,3.2518277142857146,3.2094890476190474,2.69488,3.098273333333333,4.542233333333333,3.6184683333333334,1.920535,1.920535,4.00772,3.1315399999999998,2.7700899999999997,3.255935,3.2770966666666665,0.5731088888888889,3.26156,2.51872,2.5444833333333334,2.6007866666666666,2.4934025,2.4432833333333335,3.0242966666666664,2.63718,0.810299,2.5208266666666668,6.363443095238095,1.9914,7.5408921666666675,1.68997,1.68997,3.3453199999999996,3.3338666666666668,3.2357633333333333,2.722566666666667,1.6240739999999998,1.287777142857143,3.276203333333333,3.2800100000000003,1.3697383333333333,1.5914,2.84606,2.590542,2.4414700000000003,2.4758,1.8859025,2.62346,2.16358,2.85277,3.29933,1.85744,3.77289,3.262645,6.828132,3.39439,1.6891025,3.127995,2.693155,2.26659,4.064145,2.4631366666666668,2.71471,6.770619999999999,0.8382692307692309,0.69484,4.60437,1.317424,1.317424,3.70503,2.3434675,4.3887,3.39486,1.3785533333333333,2.4688033333333337,2.9377833333333334,2.4691733333333334,5.03415,4.25417,2.573566666666667,1.8953566666666666,1.3883492857142856,1.3883492857142856,1.95183,4.03402,4.053066666666667,5.62535,3.1241533333333336,5.0573,4.28713,6.70615,4.270875,2.57533,2.9552066666666668,2.5982233333333333,2.7591066666666664,0.7681533333333334,0.7681533333333334,0.7681533333333334,3.292335,4.268785,3.69347,1.08999,1.08999,4.852585,5.8669,6.53409,21.646452833333335,11.7348,7.61095,2.46803,5.78935,2.3584225,4.26835,2.488443333333333,3.166793333333333,3.9824,5.261635333333334,2.07241,2.869715,6.49302,1.8705459999999998,1.8705459999999998,6.1391,3.27718,4.499775,1.804985,4.62415,4.395245,2.458875,4.495345,3.2659,2.293536666666667,5.83155,8.83413,2.293536666666667,1.804985,2.16399,0.8543839999999999,0.8543839999999999,1.67956,2.381536666666667,1.67956,4.100445,5.45025,6.0616,8.17124,1.804985,11.2226725,6.04295,5.73425,2.3584225,3.276925,4.288965,8.2368,3.077585,3.70976,5.83615,3.18864,4.38742,6.25725,4.37497,5.1038,4.629535,2.429525,5.1712,3.30183,4.49733,4.32783,0.8274875,1.45409,3.045845,5.2587,4.69033,2.6418566666666665,2.0876,4.08075,4.745975,5.66275,5.44605,5.3148,4.519725,3.02389,4.178035,3.728515,2.158765,5.058615,1.98747,2.634985,3.505565,1.7267033333333333,3.8821,3.922845,3.840865,5.19225,2.823615,6.470631666666667,0.9183455555555555,3.58374,2.42058,1.1324642857142857,4.842081,1.37188,1.83026,2.4191866666666666,2.762712,2.874423333333333,2.848943333333333,1.7109475,0.7169972727272728,2.0667133333333334,2.569985,3.615265,0.6695153846153846,5.536095,1.86602,1.200694,3.310083333333333,1.200694,3.857825,0.9354454545454545,4.702365,3.0962033333333334,2.30513,4.874272,4.591392,4.591392,4.566265,2.46408,3.000645,2.6613266666666666,1.447566,3.899945,3.560375,1.9634533333333335,0.698985,6.639780384615385,2.865115,4.344935,4.079735,7.78191,2.1963975,4.242295,3.80422,2.96352,3.680615,5.4036,6.3121375,4.52963,4.53467,5.2796,2.8542799999999997,4.83007,4.09486,4.57696,1.035991111111111,0.4682264285714286,3.18533,3.3684333333333334,2.81691,5.2798,3.97539,4.15227,4.370755,5.0274,4.202445,4.107745,1.16286,2.25383,7.924974166666667,2.2095,1.9500033333333333,3.669470476190477,10.94227861111111,1.52883,5.0508,6.4298,5.1214,3.4749,2.099623333333333,3.2404533333333334,4.07807,1.1074083333333333,2.6575,3.174465,0.3311484210526316,2.0289033333333335,4.344735,4.1672,2.275215,4.0999,2.801805,5.136761666666667,1.3455033333333333,0.5490190909090908,3.7912583333333334,1.0516785714285715,0.9811775,0.9811775,0.9811775,0.9811775,1.590935,2.6326199999999997,1.7338233333333333,3.3051433333333335,5.0149,3.6264333333333334,5.10155,3.335905,4.424635,3.62038,4.019115,1.43692,6.5563199999999995,2.376365,4.571995,5.279956666666666,5.07105,5.082526666666666,2.47206,2.2155566666666666,2.6126400000000003,3.33359,1.28419,4.51624,2.64395,4.94622,2.886393333333333,2.2896,3.71187,3.404825,2.797195,2.5620600000000002,2.599886666666667,1.54834,0.39228555555555555,3.912815,3.1993,4.041395,3.45546,3.9848,5.50935,4.202545,0.5669184615384615,2.9252079999999996,6.8453479999999995,2.08058,1.83956,5.4862850000000005,5.9138,2.7655366666666663,4.209395,5.0365,4.086505,3.70059,4.17674,5.265,5.4876,5.07045,3.589165,5.030832,1.4258440000000001,1.537295,4.1396,3.86046,3.794725,3.253165,5.2383,4.62224,3.782425,3.382475,14.604161372825365,1.2488571829855537,1.08011,1.7876672727272727,0.497679375,0.4551206666666667,1.3740375,0.3257323529411765,1.285322,3.044086666666667,1.7231999999999998,0.9242333333333334,1.0825245833333335,0.5005883333333333,1.0825245833333335,1.0825245833333335,0.5005883333333333,0.8191538461538461,0.5518064285714286,2.84757,2.5274233333333336,4.61263,3.0894,2.81889,2.773125,4.01261,4.383265,4.841965,2.68564,3.993975,0.6888935714285714,2.4406459999999996,7.955101666666667,4.146925,6.727268333333333,2.80252,4.06707,2.382545,4.962365,5.2711,4.10338,4.4114,2.89575,1.0433483333333333,4.250925,4.579945,1.1090680000000002,1.251872,1.5340266666666666,2.38297,2.043413333333333,5.61995,5.5179,2.3481575,2.3481575,3.6957355555555558,6.58719,2.21947,0.6824709090909091,0.7492385714285714,2.16003,3.3179833333333337,0.8069857142857143,0.8069857142857143,0.8069857142857143,0.3931246153846154,0.9996914285714286,2.827375,5.89255,3.6788333333333334,3.9956191666666667,5.0598,1.00192,3.4703999999999997,2.958323333333333,3.8725666666666663,5.7138,2.5129533333333334,7.195035,4.668535,1.0310722222222222,3.6613,1.8563880000000001,2.567565,2.468993333333333,6.259755,3.29651,4.456915,2.1878675,4.21197,4.400825,4.7068,0.5395655555555555,2.8905833333333333,1.5671566666666665,2.620843333333333,4.017526,2.0475666666666665,2.7414433333333332,2.316476666666667,2.4774066666666665,2.5120766666666667,2.95604,2.7266999999999997,2.7763733333333334,1.380876,2.4870566666666667,2.11664,3.10698,2.59449,2.24486,2.004523333333333,1.9197600000000001,1.695495,3.386395,2.254016666666667,2.12602,2.2258833333333334,2.518126666666667,2.38347,0.8119355555555555,0.8119355555555555,0.8119355555555555,2.4856266666666667,2.2068499999999998,3.0690066666666667,2.2315133333333335,2.5933966666666666,2.1124,4.01793,3.5520166666666664,1.2927633333333333,2.58089,2.774896666666667,3.8890399999999996,1.5198142857142858,7.17634,4.41372,3.13297,4.260565,3.57291,1.2652225,0.8266785714285714,3.163975,3.862895,3.8890399999999996,3.84641,4.204845,4.36844,2.7741933333333333,3.81473,4.224155,0.870401,2.87315,3.540065,4.897355833333334,4.736265,3.698135,3.161615,2.69568,2.14982,2.4213,0.6585358333333333,5.158617916666667,2.670875,4.01021,2.74917,3.735998333333333,2.9102433333333333,2.493516666666667,2.7885163333333334,2.7885163333333334,2.6537966666666666,2.0676566666666667,2.5398833333333335,2.0786666666666664,4.06776,1.406276,2.50843,3.862995,3.882345,4.005415,5.45625,3.48796,2.326085,2.104515,3.05119,2.83577,2.738795,5.07445,2.44391,0.8152985714285714,0.8152985714285714,4.502885,4.007576,0.9084059999999999,4.10065,0.9084059999999999,3.96359,4.626985,4.683945,3.05434,3.363295,6.3801000000000005,4.2750425,5.53445,0.8481571428571428,0.8481571428571428,2.00664,4.3564316666666665,1.5229066666666666,2.833525,3.362805,1.1223985714285714,3.80679,3.814865,5.48395,5.48395,0.9821133333333334,5.4858,5.0989,4.71436,5.8306,1.9700175,1.9700175,6.9092,0.9200454545454545,7.12825,1.987835,6.331149999999999,2.603455,2.49511,3.422005,2.27996,2.1912766666666665,2.209493333333333,3.019766666666667,2.391943095238095,6.372407,1.739722,4.555785,2.8536066666666664,2.44131,1.91762,2.320765,3.433045,3.68614,3.55586,2.948455,2.386505,2.389305,2.598075,1.156974,3.206175,2.621455,3.213725,2.205535,2.205535,2.925995,2.0823666666666667,3.682055,3.351175,4.967215,7.053243333333333,4.146495,3.54364,6.225614666666667,1.94094,3.1941866666666665,2.140563333333333,1.4090928571428571,1.7332025,3.99931,1.53107,0.502781875,0.6891566666666668,4.116415,4.58585,2.93083,0.9113022222222222,2.85684,3.0187066666666666,4.58409,1.632552,1.99937,1.0745166666666668,4.617945,2.4691,4.16403,0.71956,4.0755275,3.761515,3.529425,4.42138,3.68479,3.862895,2.7195433333333336,5.3454,3.73954,1.8394966666666666,2.73114,5.829411666666666,6.0589525,0.9219025,3.574755,4.492235,4.976555,3.6470000000000002,3.789766666666667,2.58685,3.188613333333333,3.696066666666667,5.8704374999999995,2.590542,2.6046895,3.933615,3.04236,2.41983,2.588675,8.37018,4.60676,1.9370166666666666,4.84654,4.84066,1.8341619999999998,3.830195,1.20042,1.6216428571428572,4.483355,4.026965,4.66086,2.3355366666666666,3.081125,2.97991,4.507315,3.609605,3.5586,2.970775,3.658555,3.640245,3.6500525,1.2260581538461537,1.2260581538461537,7.2692,0.7756825,2.084585456349206,0.7756825,0.8025683333333333,0.32454777777777777,2.88715378968254,2.90962,0.6842014285714286,2.084585456349206,1.995605,3.68435,2.202952361111111,3.78296,4.34876,6.946368333333333,2.03662,2.137395,2.19219,4.03258,5.76325,2.05395,1.756295,0.81958,2.575875,4.014205,2.54686,4.2184,6.2992525,0.4136633333333333,3.738265,0.700009,2.6198466666666667,2.292895,3.71886,1.2416416666666665,4.078825,4.47302,4.03315,2.732555,3.638475,4.907105,1.53664,3.09425,0.5705753846153846,2.42352,2.37903,1.187554,2.81197,2.5972500000000003,2.5677533333333336,3.89787,8.281044999999999,2.803120303030303,3.98634,3.525495,7.02533,5.2655883333333335,3.0223833333333334,4.29903,3.606065,5.74265,4.013145,5.18845,4.429085,4.233865,4.608545,3.8708666666666667,1.6806425,1.94959,2.21271,3.984365,2.3785766666666666,0.19494891891891894,0.19494891891891894,0.19494891891891894,30.066644285714283,0.19494891891891894,3.124248918918919,0.19494891891891894,0.19494891891891894,0.19494891891891894,3.1387622522522522,4.277525,0.19494891891891894,0.19494891891891894,0.19494891891891894,0.19494891891891894,0.19494891891891894,2.865445,5.15486,3.18194,0.1915953846153846,0.1915953846153846,4.318553333333334,4.045546083333334,3.9130520833333335,3.1292208611111114,3.8716838095238097,7.870293333333333,11.219457385780885,6.217297333333334,7.775240666666667,7.902900821428571,2.827116666666667,6.287102857142857,4.4096,4.364972692307692,0.1915953846153846,8.024077333333334,6.440498666666667,7.14924,2.6678,8.855180821428572,13.915143392857143,18.09483026098901,56.4446580613243,114.10565298911872,1.40831,3.4923,3.369625,3.8392253166023167,0.1915953846153846,1.516879358974359,8.81979375,14.583535654761905,19.952588333333335,47.33750273120301,13.419902488095238,3.20925,0.22614724137931036,0.22614724137931036,4.8613,2.8652866666666665,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,5.34086,0.22614724137931036,0.22614724137931036,0.22614724137931036,2.68802,1.8895433333333334,3.73732,3.882665,4.475294166666667,4.97224,1.9793,4.05095,4.17233,3.1488,1.6303533333333335,3.595315,1.0210783333333333,2.29323,2.044556666666667,4.962936666666668,5.77876,2.7449600000000003,5.466552166666666,0.49924499999999994,0.4567326666666667,2.490483333333333,2.5965766666666665,2.9156,4.018395,3.371033333333333,7.43959,3.847845,3.559855,3.364345,3.949585,2.87686,3.35148,5.3555,1.95434,0.4607784615384615,0.8497754545454547,4.24783,1.876465,3.49707,3.79336,4.55876,3.521785,2.350015,2.74959,0.6133113333333333,0.702534,4.30927,2.7258566666666666,5.5953,3.527255,3.8699783333333335,2.582755,3.04033,5.18325,4.16429,3.25715,0.7801118181818182,3.2288833333333335,4.14037,2.272025,0.96137,1.6589633333333333,3.908215,6.28495,1.846385,2.86323,3.79449,5.3908,2.505025,2.44918,2.15183,4.72972,2.48237,4.014295,0.7109300000000001,2.135406666666667,3.43808,1.835565,5.896881666666666,2.90269,4.00981,4.023785,3.080885,2.40051,0.523989090909091,4.33233,4.80508,6.5952,3.50897,3.175765,4.74447,2.940765,2.88504,1.1986085714285715,4.793165,1.9398,2.782675,8.25178,3.99326,4.71198,3.16024,0.63068,3.14397,1.1970542857142856,3.34423,6.0703,4.79389,5.0024,3.543615,5.2996,4.45227,1.6207675,1.5713766666666666,4.967255,3.0594566666666663,3.2348466666666664,2.3166225,5.3091,4.114905,1.4589783333333333,3.532033333333333,2.7934,2.750755,3.915895,9.35509,4.605545,1.8654725,4.665215,6.50335,4.3810325,4.0631,3.65378,3.71264,4.37203,8.220225,2.411983333333333,3.52278,3.38662,4.25399,2.8489,3.262615,4.494145,4.050015,3.379265,3.8389786666666668,18.41454733333333,2.8468999999999998,2.6269466666666665,3.2152700000000003,5.550980666666667,1.0407975,4.012435,2.0924825,4.770535,1.3140283333333334,4.55308,4.22629,3.425305,0.98887,4.614305,4.50643,1.729755,4.532875303030303,4.000655,1.0708957142857143,3.484605,2.017605,2.482685,1.506295,4.32296,3.916745,3.701855,3.64781,2.96252,4.173805,8.006045,4.250485,4.185395,4.64831,2.9906133333333336,3.77023,4.62878,6.208474000000001,1.019392,1.019392,4.52227,4.57672,2.0923233333333333,1.2707766666666667,6.9789449999999995,3.888505,3.50568,3.60166,4.57766,4.40317,3.485015,3.633485,6.5846350000000005,3.78735,4.40119,4.69563,1.3663785714285714,2.48168,4.06765,4.399915,3.34390375,0.20345611111111112,1.57107,2.0199,2.41772,2.3194399999999997,0.9511022222222222,1.55579,1.44289,2.28123,0.62917,1.0422171428571427,1.9551775,3.99961,3.859666666666667,2.04851,2.5478166666666664,2.9024066666666664,2.777153333333333,0.677548,0.97247375,2.730995,4.650325,4.11731,2.900795,4.403485,4.40316,4.122155,2.03822,4.4326,4.875485,4.456985,6.1009725,3.608095,0.4924994117647059,5.0673,4.63749,3.80131,4.54387,3.511035,1.895148,3.71484,4.110565,2.880105,5.29458,4.55735,1.3628916666666668,5.29458,4.028235,6.7579199999999995,3.670005,1.1754666666666667,3.47412,4.994195,4.083695,2.58398,4.73029,1.4867875,2.08597,3.061685,3.602645,0.8183722222222223,4.67228,4.90357,3.45241,3.95742,3.4487666666666663,2.952296666666667,1.677684,1.5507525,3.20747,3.51549,3.2702833333333334,2.48176,2.1972225,1.9125390000000002,3.86411,1.2701214285714286,0.8398922222222223,5.38819,3.902355,1.455496,2.4971566666666667,2.2161866666666667,2.82154,6.014411666666667,2.206505,0.798969,2.500745,4.25777,2.1080366666666666,3.68066,5.1129,5.261,4.123025,4.64643,5.1395,2.1867966666666665,2.3549633333333335,1.7091733333333332,2.05509,1.9077325,2.318236666666667,2.2903033333333336,1.5332575,2.741715,3.204265,3.732945,6.3894,4.493705,3.95601,4.28904,3.97233,3.775525,5.1057,0.86016625,2.81129,4.705835,1.270308,0.6189513333333333,5.08345,3.475305,2.57436,3.4837375,6.158805,5.3219,0.880048,1.1210799999999999,0.7076211111111111,4.1866650000000005,2.3105933333333333,2.7744166666666668,1.1648714285714286,2.656496666666667,2.54439,5.36545,4.561205,4.146165,5.10915,3.935535,1.2239933333333333,3.53809,1.6730833333333335,3.502355,3.65796,3.28131,2.49808,3.2099666666666664,2.6680733333333335,2.99167,3.865185,3.257755,2.3934625,8.54363,9.86854,3.995955,1.3580942857142857,5.4442,3.891435,4.5949,4.531045,3.36121,3.93833,3.534005,4.404055,3.4992666666666667,4.03966,3.7017,3.48793,4.715675,1.7851299999999999,4.725635,5.70145,5.0215,3.295125,3.25016,7.10243,0.767035,2.6577066666666664,2.8562733333333337,2.3387366666666667,4.932125,3.235325,1.2035533333333335,3.96352,3.1887666666666665,3.73632,4.50586,4.033120833333333,6.45911,3.04494,2.798313333333333,3.0393933333333334,2.813136666666667,3.90014,1.8166433333333334,2.2744666666666666,3.0192033333333335,4.18876,3.6842750000000004,1.94639,1.6021225,3.0581807142857143,3.1401955,0.88721,2.511115,2.511115,1.23919,5.78125,3.118505,3.367945,3.59589,3.210595,3.561815,3.441845,3.303955,3.412895,2.3146333333333335,0.5140226666666667,3.32231,5.66359,3.06793,3.8067,3.29751,4.10729,3.83741,3.08144,2.61095,3.686155,3.79039,3.14248,3.143375,3.229325,2.67929,4.10117,3.940415,8.90243,3.28583,3.729115,3.01816,4.01621,4.233115,3.81236,2.423835,3.784795,2.6198449999999998,2.886775,2.88036,3.254935,3.735585,1.5765933333333333,1.5765933333333333,2.231265,3.29124,3.42833,1.6100400000000001,2.522535,3.535035,1.806632,2.97811,1.6100400000000001,4.17367,3.13465,3.7897765,3.314905,3.570945,2.397945,3.25206,3.95525,3.98545,3.407485,4.345505,3.81392,4.29869,3.65772,3.17861,3.39497,2.921625,4.035125,2.7054266666666664,3.578165,5.25885,4.25661,3.72318,0.2897730434782609,3.69289,0.4520916666666666,3.7843,3.605035,2.997635,3.50169,3.799125,5.645908333333333,2.885565,2.625366666666667,2.45656,2.8153433333333333,0.634355,6.600716666666667,3.180395,3.480945,3.47081,2.03013,2.935155,3.29702,3.519805,6.72851,4.633815,4.819435,4.620535,4.23756,4.14668,3.87791,1.4495483333333334,1.632862,3.77111,4.577595,5.6819425,2.520696666666667,4.83966,1.72675,3.4796,4.017405,1.8727764285714286,4.201255,5.051444999999999,3.5107666666666666,3.7183333333333333,2.7593633333333334,4.49893,4.462315,3.3826666666666667,4.286605,4.20828,4.813865,4.210795,4.500305,3.91194,3.390345,3.99719,2.4797,3.1374133333333334,3.1374133333333334,3.91267,2.6894899999999997,3.96244,2.263313333333333,4.390515,3.1723533333333336,3.73192,1.99549,1.9044033333333334,1.17762,1.17762,1.464404,3.2593333333333336,1.6916466666666665,2.77229,3.396875,5.0471375,3.2813433333333335,3.909175,6.18433,2.50695,2.83109,2.9695666666666667,1.6010866666666665,4.113515,3.72914,6.1102325,1.6441166666666664,5.28475,5.5817,3.2281766666666667,3.39502,4.0881,6.90297,1.9408166666666666,2.3100425,3.88663,0.4851885714285714,3.505735,4.116845,4.19295,4.150535,2.77333,1.298278,1.585898,3.96399,3.22182,2.5118066666666667,3.80896,4.652385,5.1936,1.00547875,3.09095,4.403035,3.659005,4.637615,2.41203,5.472708333333333,3.750955,1.5908200000000001,3.73375,1.1887866666666667,2.8288266666666666,6.678301666666666,3.547495,0.6688918181818182,3.040285,3.981425,3.74692,1.82508,1.82508,4.82709,5.42655,2.901575,0.5061599999999999,1.8950475,4.456329166666667,3.921865,4.192395,1.765814,2.9698933333333333,3.12774,1.1761989473684211,1.1761989473684211,1.1761989473684211,0.8565406140350877,1.478498947368421,0.6219583333333333,1.1761989473684211,0.8565406140350877,0.29575894736842107,0.9177172807017544,0.29575894736842107,0.5607816666666666,0.5607816666666666,0.5607816666666666,0.5607816666666666,1.2249101666666666,1.04956625,2.43255,2.302811666666667,1.0134833333333333,6.447279999999999,2.70774,6.125878333333333,2.6651233333333333,3.58577,2.93527,3.40964,2.7374816666666666,4.600095,2.8731333333333335,3.96419,4.13448,4.610885,2.104605,3.636755,4.706285,4.138725,3.39291,4.825805,3.43264,4.62095,5.45835,5.14055,6.1803,5.2633,1.07078625,4.414835,3.756125,2.89267,15.131730000000001,4.507535,5.2056,2.6840333333333333,7.53593,4.28112,4.6869,4.791685,3.14596,1.10656,2.550545,3.604025,4.20005,3.504465,3.49118,4.16062,2.873506666666667,4.32299,4.45112,4.07863,6.753393333333333,6.843838333333332,1.3099442857142858,3.84063,4.003735,3.81424,3.670255,3.56824,7.22166,2.608665,2.803445,2.601045,4.20054,3.83403,4.4709,2.360195,1.8628175,0.846358,4.20883,3.42519,3.624335,3.980825,3.176835,4.560445,3.97268,6.4548,6.02985,5.32125,6.5367,3.83378,3.348565,3.1918,3.388615,1.9647225,4.927425,5.80045,6.3581,5.619363333333334,5.619363333333334,2.49621,1.9647225,1.88835,3.13609,0.7044933333333333,1.5704958333333332,0.8660025,1.4744425,2.585295,0.374917,2.839885,4.166585,1.4744425,2.8203760000000004,10.74653,6.4173375,2.1544731666666666,0.992295,2.036776666666667,4.221675,4.44095,5.521365571428571,1.9829725,2.419215,3.571315,3.21745,4.409685,1.5467466666666667,5.0014,3.4492666666666665,3.00399,5.0208,6.932292,3.93964,2.32893,2.748976666666667,1.76621,3.635825,4.997395,1.744282,5.56215,4.47986,5.724653,0.49014399999999997,4.230331666666666,4.992465,5.74025,2.4462,2.81251,7.2317,8.120716666666667,6.5712,2.0786666666666664,2.0786666666666664,2.0786666666666664,5.0381,4.897835,6.263,4.365815,2.745125,2.6254784210526316,4.42268,3.986235,2.6130015,1.92587,2.6130015,7.4480715,4.958993333333334,4.8343847619047615,7.03907,4.8343847619047615,4.8343847619047615,3.622651428571429,6.88983,5.843291,3.0716859999999997,3.0716859999999997,2.77944,7.0074,2.982435,3.488275,5.449356666666667,5.449356666666667,5.449356666666667,7.765835,3.7434325,3.518375,3.7520775000000004,3.60387,0.84689,7.578623333333333,2.61963,6.67645,3.43472,12.799527,4.79609,5.523531666666667,6.99441,2.583896666666667,3.360325,1.0993,5.523531666666667,3.4512,1.75602,1.75602,2.960935,5.448440833333333,1.7988425,5.052193333333333,0.901597,1.58566,0.901597,1.9819075,2.7004395,5.778192,3.87566,1.58566,3.241825,5.0146425,1.0330675,3.456035,4.67533,2.23206,4.363021666666667,2.693165,3.221525,2.841815,1.110054,3.907965,2.747235,2.25018,1.81951,3.7696300000000003,3.591055,2.517575,3.47032,1.3710766666666667,1.3710766666666667,1.3710766666666667,4.1362,2.9466933333333336,2.9466933333333336,3.07005,3.9845,2.426276666666667,1.601295,1.601295,3.02227,4.5423575,0.8644125,1.4504266666666668,2.840615,1.3515350000000002,2.8019616666666667,1.110054,1.110054,1.9707050000000002,1.110054,3.1871533333333333,0.70655,3.1871533333333333,6.123469583333334,3.643835,2.5297133333333335,1.8249518055555556,0.7914916666666666,2.616443472222222,3.59102,2.616443472222222,1.0304355555555555,3.4797,4.258395,4.10851,3.59832,2.591915,3.73891,1.8614333333333333,0.9612648611111111,0.45360375,0.9612648611111111,0.5076611111111111,0.9612648611111111,0.9612648611111111,4.48353,4.238065,6.01875,3.620605,4.159015,4.08104,5.1485,3.397275,3.80445,1.3634414285714287,2.389676666666667,4.102304166666666,4.059795,1.46715,2.6226866666666666,3.71679,3.89058,4.007235,3.20355,3.924105,3.301645,3.274255,4.370585,2.2411966666666667,5.9888,3.440835,3.922695,4.586986428571429,0.9912799285714285,2.072845,3.232475,6.00376,3.886405,3.318235,3.02432,4.20514,7.240408333333333,2.9997666666666665,4.050985,2.7287033333333333,3.799675,4.07157,5.5549,5.162,4.40371,2.91664,5.1449,4.669765,3.5210333333333335,4.017775,3.264746666666667,2.2152375,2.4316866666666668,4.792095,6.40995,4.92887,5.04285,3.914825,4.714965,5.51755,0.47882461538461535,6.958495000000001,4.303125,3.71809,3.513505,4.42931,3.95726,2.878553333333333,2.510375,1.3425666666666667,0.5871284615384615,1.697616,3.1443266666666667,3.00839,3.404225,3.681225,3.785525,11.519521666666666,3.70077,3.918415,2.85239,0.692295,5.566166666666668,3.4880666666666666,1.7578233333333333,5.24589,6.6848616666666665,3.196795,8.95732,4.57021,2.561382,2.561382,2.561382,4.07585,8.70219,3.49246,1.9513,1.9513,3.69843,9.95211,1.005115,4.559555,4.21178,4.0327,2.7888,2.3930333333333333,4.3796,3.959655,5.98115,6.1678283333333335,4.058,2.93544,4.02602,4.030755,3.2096925,1.1267925,2.6993899999999997,6.21614,3.2049125,4.58214,0.8574725,3.6148666666666665,2.2238166666666666,2.6591299999999998,1.7722,1.78892,2.2563033333333333,5.12645,2.237705,4.582155,5.34815,1.739722,4.616985,3.8395,4.572275,3.2129833333333333,2.18233,2.800445,4.157375,4.037381666666667,4.037381666666667,1.2049825,1.6473166666666668,2.6715999999999998,4.1382813333333335,2.249385272727273,4.7820599999999995,1.7720099999999999,2.605183333333333,2.1146166666666666,1.6375625,1.6375625,4.547455,7.34861,1.8538666666666668,2.9337466666666665,2.1352075,4.466415,3.30041,0.84999,3.113705,0.84999,2.669655,3.40902,5.42295,5.39475,3.726115,4.4818774999999995,5.58815,2.459085,1.8954233333333335,2.9538333333333333,2.24872,6.0477,4.728055,2.59865,4.145485,2.93112,4.254655,1.11518,1.138652,1.9165133333333333,1.2101666666666666,2.60543,2.6907300000000003,2.1259833333333336,2.71065,2.699755,4.650925,2.57608,2.4697533333333332,2.7255566666666664,2.3942666666666668,2.769386666666667,2.6623466666666666,2.008246666666667,2.58275,3.785745,3.567915,3.244355,2.967355,2.854706666666667,2.04582,1.79438,1.1474733333333333,0.31173850000000003,0.14321782608695652,2.26689,1.7352966666666667,0.14321782608695652,3.694061992753623,2.0131075,0.14321782608695652,5.624339930555555,2.176946666666667,5.62902,3.411095,3.0807866666666666,2.5374766666666666,2.853596666666667,2.28777,4.61382,2.9671766666666666,3.106996666666667,0.3906352631578947,4.012661666666666,2.645168596491228,2.880765,1.866395,2.459815,4.316875,2.47747,7.872295,4.97886,3.20476,3.629225,7.02494,7.13826,1.83219,4.280200833333334,2.26801,2.25486,6.37997,7.72598,1.1497866666666667,2.0458525,3.69168,2.410345,3.079565,3.082375,2.901805,4.29169,2.490185,3.20149,3.50271,3.17324,7.5133,1.4039633333333335,2.09733,3.04835,3.30198,1.77383,3.46695,1.41316,3.802505,3.354195,6.94525,3.711925,8.993435,3.74066,1.517514,1.7989499999999998,2.920775,6.01903,1.5640675,1.9464466666666667,5.94977,3.5755,4.131455,2.78463,2.0352799999999998,3.16917,10.442545,5.12618,6.42939,3.536685,2.790995,2.185245,2.57501,3.0503,3.47078,1.4807983333333334,1.7001600000000001,2.705346666666667,3.6272,1.79527,3.442435,2.828685,4.615445,3.7577,3.41124,1.1681516666666667,2.237075,0.9625466666666668,1.325844,1.680115,3.351055,3.49565,3.28948,2.927745,4.012075,4.0061,2.91637,1.44239,3.48416,3.50449,3.258635,1.54982,2.77076,3.342235,1.4719825,3.369835,1.70953,3.926305,3.750275,4.45228,2.97217,3.920155,1.7923,3.365515,5.38375,1.71778,1.091797142857143,3.557,2.641085,4.208785,4.3086,3.227515,4.58964,4.870015,2.4360066666666667,5.11925,5.45117,6.446,3.715635,5.59709,4.09444,1.66287,2.6396633333333335,4.635145,4.825635,2.4439333333333333,7.27667,1.1774042857142857,3.29542,2.48981,1.807292,2.3734466666666667,2.8567199999999997,0.34779785714285716,2.7094766666666668,3.791733333333333,3.374815,2.638045,3.3347333333333338,2.3199333333333336,2.5861466666666666,2.01972,8.875005000000002,4.902865,1.9739840000000002,5.11065,2.3515392826086954,0.7465856410256411,2.5312266666666665,7.198632666666667,1.639818,4.451409999999999,6.0556616666666665,1.585235,1.627955,1.427825,4.103655,3.32314,4.573585,3.8108725,2.3626133333333335,3.63309,0.9918279999999999,2.8922480000000004,4.155215,4.207765,4.553155,2.798125,4.901935,4.40015,4.112145,4.74604,5.7527,4.922585,3.91057,5.4904,1.7475159999999998,1.9269575,2.73159,3.35661,1.0794955555555557,3.92199,2.08039,3.2722366666666667,4.246755,3.0748333333333338,2.42474,1.5630366666666669,2.8399433333333337,2.838383888888889,2.6317766666666667,2.8745733333333336,1.9369766666666666,2.0477225,2.320345,3.52389,4.112185,3.685745,4.54857,3.50819,2.529645,3.29882,4.845295,3.8688000000000002,4.546175,3.047635,2.262665,4.551945,1.7402300000000002,4.218935,4.732620833333334,5.912180833333333,3.70138,4.07194,5.4271,3.1467566666666666,3.881743333333333,4.43337,3.482585,3.8042160000000003,3.41721,1.4039825,3.234205,1.913295,2.34466,5.2329,5.3056575,3.8042160000000003,4.071775,3.55872,1.5229066666666666,3.75629,2.24528,2.4631366666666668,2.237285,2.952035,1.5728610606060607,1.5728610606060607,1.5728610606060607,0.5805127272727273,0.777208888888889,2.068493888888889,1.0643725,3.66308,1.2284683333333333,3.74672,5.21075,4.47047,3.300085,4.07518,3.221095,4.89865,1.539465,3.25972,2.726285,3.152325,6.009081999999999,4.180345,5.0301,4.111215,1.0435475,2.33478,1.3215333333333332,3.818105,3.947225,4.255385,5.02305,4.42509,3.78155,4.38472,3.884945,1.808915,1.092775,5.2475233333333335,1.048848888888889,1.2802433333333334,2.7102766666666662,7.97119,3.07098,3.849435,2.86468,5.6962649999999995,1.647435,0.9902566666666667,1.5449925,3.14801,3.4718,3.907895,3.81028,1.91535,6.7898,2.8350266666666664,0.91034875,4.33074,2.8160900000000004,2.71451,2.3266633333333333,3.5175,5.8742625,2.6579,3.0651666666666664,3.5414999999999996,2.1187533333333333,2.5785966666666664,2.94923,2.70526,2.0755375,4.8413,4.6323,4.869905,0.9952177777777779,0.721773,3.744866666666667,2.618043333333333,0.99528375,2.588482083333333,3.3652,4.26922,7.01579,4.677005,3.4412000000000003,1.760794,3.517465,3.842365,2.63864,2.441864,3.654355,2.7192600000000002,4.726108,0.8089511111111112,2.4953,1.7625419999999998,3.731385,4.07664,2.066195,1.114545,3.11035,0.447904,3.27166,6.7366,5.32285,2.871098,1.535858,4.200333333333334,0.7855033333333333,2.5717766666666666,0.7855033333333333,4.15511,4.52808,1.2780475,1.680525,5.016565,1.85454,3.45968,2.43166,3.587895,1.254728,1.6141866666666667,4.09387,4.317505,5.3689,2.9063980000000003,2.661725,3.230075,1.65148,2.150215,1.7455375,1.96474,4.303535,1.543088888888889,1.543088888888889,2.97679,4.638727333333334,8.287434166666667,4.281606666666667,7.47518,2.2362,3.88305,4.07029,1.5643716666666665,3.4926200000000005,3.61847,2.87484,5.0691,2.9664,2.690235,2.79839,3.73007,1.0837625,4.101195,4.60219,1.1159516666666667,7.360993333333334,2.768775,3.164355,3.4905316666666666,5.0304,4.784605,3.2158016666666667,2.3163266666666664,2.8114833333333333,2.0714533333333334,3.7096999999999998,2.2693275,2.15586,7.1177953333333335,3.1785766666666664,2.9289199999999997,4.456935,21.548020913919416,0.6868333333333333,2.951505,4.52987,4.62089,8.87866,4.637825,4.465395,4.548745,7.053976666666666,3.731495,1.6178966666666668,4.601806666666667,3.394495,1.2449020000000002,1.2449020000000002,1.2449020000000002,2.37034625,1.7093775,3.3872,1.61728,3.280785,1.80776,2.48448,2.636775,2.84629,1.61728,3.416835,2.71206,4.151956666666666,4.939965,5.01835,0.7752491666666667,3.331065,2.954225,4.905305,3.451785,2.841095,2.3650875,1.77379,2.28363,1.490604,3.65245,1.711745,4.54421,10.703694500000001,2.68299,2.473425,4.5869125,4.712233333333333,4.426466666666667,6.29825,2.2545333333333333,5.2655883333333335,4.43911,1.0747166666666665,1.1797728571428572,6.430324,4.219845,2.3387175,3.75073,2.0280225,3.636655,4.57684,4.53442,4.00564,1.2223485714285716,4.13697,4.894685,4.6,6.2658439999999995,3.54335,5.23075,4.089445,4.292835,4.95014,3.4242333333333335,4.909015,1.8761875,3.363205,3.13202,3.24681,4.412465,6.26085,4.6071,2.770103333333333,3.5261,9.03288,4.789355,3.2873966666666665,3.538355,3.2699,4.368715,4.39822,4.67905,6.507973333333333,3.30043,2.703723333333333,4.074675833333334,2.489065,3.79202,2.1718333333333333,6.423335,1.6356883333333334,4.38741,4.607795,11.4839775,0.4898664285714286,4.30836,4.879945,0.6437935714285714,3.66402,3.85125,3.921365,0.913803,4.702645,5.024093333333333,2.668203333333333,9.983726666666668,3.2551366666666666,1.95183,2.30096,3.444055,5.88495,0.5224166666666666,3.947505,2.0078575,5.3216,0.6803246153846154,4.232035,5.62845,6.123,3.624435,6.2162975,4.5796,3.44097625,2.58167,3.0015199999999997,4.3237,4.44567,4.81662,4.90078,5.37525,3.0156733333333334,6.2140933333333335,2.70715,3.207172,1.8126175,3.956795,2.2841733333333334,1.6787766666666668,3.2182833333333334,2.8118366666666668,3.1847266666666667,3.3455333333333335,3.4758666666666667,3.006126666666667,2.6384966666666667,5.5417,3.222663333333333,3.738355,4.74816,2.55743,1.1100255555555556,2.9450966666666667,2.9535699999999996,3.677005,2.8813866666666663,3.16241,5.002878333333333,2.2161633333333333,1.7478925,3.08698,3.81943,4.278835,1.10221125,4.018135,3.114545,3.8006333333333333,2.9574433333333334,4.8585205,4.02532,3.32587,4.032335,1.765375,3.931355,0.62285625,4.81245,4.99528,16.782971818181817,3.0176833333333337,1.18962,3.433015,0.6215157142857143,2.64395,4.43032,2.016115,1.2033957142857141,3.616225,4.588305,2.925823333333333,0.8486016666666667,2.668945,7.62547,3.75016,5.44175,4.84885,5.08855,3.0976666666666666,3.6194,3.22814,7.621165,3.7273,4.90059,2.02248,0.43942888888888887,2.343285,2.98692,2.265015,4.20307,3.690955,2.82521,4.621915,0.66066,4.4643,3.53028,3.272375,1.18261,2.7424433333333336,1.9810666666666668,4.88692,3.80758,2.20565,1.5430428571428572,3.402705,4.37062,4.24539,6.037075,2.1057,4.65479,4.376485,3.79671,1.8779620000000001,3.71926,5.260461666666667,4.656705,2.52925,4.927565,2.759285,2.69628,3.726235,3.792875,1.3808449999999999,4.652195,1.9523033333333333,2.51385,5.151541666666667,5.151541666666667,5.26905,1.363818,4.944045,0.90299125,1.774994,5.18105,2.4774866666666666,1.4995333333333332,3.060563333333333,0.8272619999999999,4.289433333333333,4.866905,2.945015,4.78056,3.779165,3.391995,5.2323325,3.354495,3.532966666666667,2.544773333333333,2.5174966666666667,2.502,2.84097,4.524205,1.6707513186813188,2.9606366666666664,4.399665,4.550365,2.1729708333333333,4.098105,4.489855,4.813008333333333,3.3262300000000002,5.1115,4.71617,5.3646,4.827,3.3489,3.6284,3.71073,4.29637,5.43,4.47075,4.87701,4.677175,4.524075,0.6794966666666666,4.88894,4.427155,3.73623,6.9922474999999995,4.12765,3.705905,4.17783,4.76946,3.42015,3.622125,2.12391125,4.5022325,1.7572775,1.3124985714285715,3.711175,2.0865533333333333,2.5724066666666667,3.92822,3.4103666666666665,2.869425,1.1340066666666666,1.868815,4.3944,3.518925,1.89905,1.89905,3.388355,1.5534940000000002,3.2665933333333332,4.441105,3.49953,3.86082,1.58871,2.07754,3.4595758333333335,1.919345,3.79611,4.2266,4.61886,3.870565,6.469033333333334,2.579875,3.602795,4.199085,4.42002,3.2799,3.6235,3.75863,4.13077,2.320835,2.3563366666666665,4.27824,3.63711,3.59289,3.71064,1.6539,3.602905,4.22064,4.56031,4.118205,3.9580625,3.9580625,2.9459983333333333,3.926305,4.04516,3.70128,1.6835499999999999,7.3303,4.028215,4.740815,4.30027,4.13292,3.870855,4.536585,3.051405,3.36382,2.92068,4.803265,1.948632,4.127615,5.134955,5.02145,0.7030339999999999,4.924697500000001,1.12331,4.748985,4.59003,4.46126,4.233285,4.93295,3.5103000000000004,3.5103000000000004,0.8671530000000001,2.274045,4.80217,3.62231,3.83703,4.86255,5.5671,3.43981,4.01648,1.3186966666666666,2.66893,1.71853,1.27485,4.229705333333333,0.759062,2.4254366666666667,3.14846,1.2841666666666667,2.0527775,2.7353966666666665,1.1613383333333334,6.27442,2.005705,2.40094,5.6149,1.909185,2.7916433333333335,2.839845,4.651605,3.6082,3.398566666666667,4.073266666666666,1.720504,2.2827583333333337,4.152325,0.6426871428571428,2.1163866666666666,2.2983183333333335,3.149153333333333,2.78078,1.1194757142857144,0.8279191666666667,2.51489,4.243445,1.2192357142857142,2.0902,1.2347725,5.278134166666666,2.2021775,4.880495,4.37364,4.061685,5.1775,5.29765,3.930755,4.20033,1.3935533333333332,3.8424,1.771256,2.39376,1.20181,4.056275,2.138355,7.4572199999999995,4.00159,3.54359,1.418742,6.9265025,3.4536,1.45075,4.18455,3.47285,3.86681,3.083665,2.10518,2.10518,3.1826066666666666,1.2304666666666666,1.2304666666666666,1.8779620000000001,2.7807033333333333,2.24486,1.2927633333333333,3.508566666666667,1.0584525,3.1184,2.3894475,1.9479875,1.5209183333333334,2.257835,1.9843125,0.29118058823529414,2.33764,1.154425,2.28675,2.1146166666666666,2.326085,1.06634,1.156974,3.682033333333333,3.0658766666666666,2.10518,1.876465,2.0387866666666667,2.5976399999999997,2.45677,1.8414000000000001,3.21115,1.04007,3.2001566666666665,2.7655133333333333,2.6017333333333332,1.5329000000000002,0.958906,2.4028075,0.958906,2.4028075,0.62493625,0.62493625,0.48970833333333336,2.1713275,2.2318266666666666,0.62493625,2.2257375,2.35129,2.3050275,1.695495,0.8119355555555555,0.62493625,0.62493625,1.6449960000000001,1.6449960000000001,2.02781,1.876465,0.62493625,2.195,0.46504769230769233,2.72256,1.9352733333333332,2.4607,2.573726666666667,2.573726666666667,0.37019799999999997,0.37019799999999997,1.8779620000000001,1.9816340000000001,2.1419799999999998,1.9825959999999998,0.37019799999999997,3.5148333333333333,2.4623675,1.563246,0.62452375,1.563246,0.62452375,7.40777,2.581233333333333,3.904866666666667,2.6572733333333334,2.888056666666667,3.039773333333333,2.7296866666666664,3.4547000000000003,2.502575,1.7040325,2.58655,2.9997666666666665,2.401616666666667,1.6449960000000001,2.6260166666666667,2.6260166666666667,2.8477033333333335,2.148665,4.51863,2.3328,3.1310466666666668,2.7700366666666665,1.424136,2.131435,2.1899425,0.7967427272727273,1.639015,3.725655,1.5903040000000002,3.0525466666666667,2.64786,2.59445,3.808,1.5809333333333333,3.3802,3.065253333333333,4.248366666666667,1.26883,0.22614724137931036,1.25376,1.25376,0.9654233333333333,2.865326666666667,3.8725666666666663,2.45349,2.131743333333333,2.131743333333333,2.0620525,1.70953,0.943431,1.7123,1.7123,0.62493625,1.8779620000000001,2.9792166666666664,3.28828,2.3894475,2.2271799999999997,2.2271799999999997,2.2271799999999997,1.1003655555555556,1.4090928571428571,1.4090928571428571,2.36048,2.637303333333333,2.6164904924242425,3.59168,2.5472266666666665,2.4133999999999998,3.600125,3.88832,6.45242,3.66035,4.191745,4.075233333333333,13.424714999999999,4.85369,3.61524,1.164915,3.94533,3.55066,2.425835,3.924325,4.96725,5.820297666666667,6.0264,0.45244411764705883,3.53412,3.035215,3.939385,2.46492,4.28223,4.56991,3.79062,7.258835,3.774205,3.895355,3.941105,3.2720118181818183,7.891966512820513,3.1825666666666668,2.63756,3.43367,3.721375,4.94618,3.82149,6.559558,3.65266,1.351048,2.79745,0.9226,4.665895,2.790345,2.76508,4.0558,2.85092,2.722905,4.791525,3.901575,9.26972,4.04853,4.658449,2.3771066666666667,5.22108,3.26908,0.8602,0.8602,3.522055,3.999605,2.245585,2.19848,4.099755,2.99131,2.841805,1.96869,1.95456,2.943485,2.35264,1.09085375,3.124215,4.73281,8.44865,1.537582,2.872575,2.88805,3.206875,2.83165,8.57406,4.21987,3.3383333333333334,2.77956,3.86503,3.3077466666666666,2.97801,2.91502,3.94927,3.703775,4.347355,3.921575,0.40727066666666667,1.6144966666666667,2.5609800000000003,1.80796,4.483815,3.55464,2.3801,2.13455,4.284755,3.6690945,1.9484375,2.76547,0.8537839999999999,2.1480975,2.4479333333333333,2.4479333333333333,4.868405,1.83714,2.8445966666666664,2.2908833333333334,2.0537199999999998,1.8499566666666667,3.38633,3.760795,4.74772,4.14084,5.2795,4.642245,2.82959,2.9629999999999996,2.09944,4.607155,5.565166666666667,1.8877833333333334,2.9812600000000002,2.0129925,2.2646166666666665,3.8371866666666667,2.28023,4.98711,3.85713,3.490895,4.13396,2.9349433333333335,3.79257,3.985205,2.3561533333333333,2.395706666666667,0.41695071428571434,3.6230666666666664,2.6803033333333333,3.120755,6.0596,4.74207,5.736308333333334,1.877015,1.5822133333333335,3.087885,5.0872,6.24245,5.81325,2.88288,2.3006033333333336,3.50951,2.1148833333333332,4.540795,2.1659666666666664,2.3052275,5.40365,4.79362,4.280775,1.7434775,1.9449475,1.060784,1.060784,1.322358,0.9850071428571429,0.8093859999999999,1.984155142857143,4.32741,9.873544166666667,3.69487,4.10693,4.189085,5.7675475,2.834575,1.6457033333333333,3.2130399999999995,2.987485,4.05138,2.25881,2.55851,2.85952,3.2423033333333335,2.2572366666666666,3.1646733333333334,3.2801233333333335,2.8421633333333336,3.4751666666666665,3.301626666666667,2.8462066666666668,2.6692733333333334,3.1796933333333333,2.318353333333333,3.1471,3.0353600000000003,2.8794066666666667,3.273213333333333,2.08708,5.138182476190476,3.12829,4.076578,3.2538300000000002,2.9869,3.6625,2.7847933333333335,2.7785533333333334,3.1184999999999996,3.1702033333333333,3.3123299999999998,3.0713733333333333,1.8709275,2.7194966666666667,2.69252,2.79695,2.79695,3.2086400000000004,2.7460299999999997,2.3811633333333333,2.662243333333333,2.8990299999999998,4.142233333333333,2.790926666666667,2.7323,2.7907166666666665,2.8549633333333335,4.4101675,4.88111,1.5711533333333334,3.3767,3.7123333333333335,3.27541,3.083076666666667,3.6344666666666665,3.4694333333333334,2.7447766666666666,3.459218,1.939488,2.941916,3.387233333333333,3.16271,2.4835066666666665,2.3101533333333335,3.858033333333333,2.8273499999999996,2.9787033333333333,2.2723,1.1554966666666666,3.214676666666667,2.5064266666666666,1.9875633333333333,2.482135,3.0326,3.0681966666666667,1.918466,5.654255999999999,2.3067933333333333,0.9041600000000001,4.30033,1.80167875,1.55328,4.228625,3.92971,3.43844,2.26032,1.5089825,3.22668,2.588025,2.505745,0.408131,2.16871,0.408131,2.222825,1.5089825,2.841415,3.55699,2.46005,3.162725,3.4866,0.48613666666666666,2.7422866666666668,0.9811575,0.43967470588235297,3.77664,3.942825,4.92775,2.4264,5.2756,4.06614,3.86496,2.11273,3.7871666666666663,1.66738,5.20615,2.63055,4.25598,4.377705,3.00389,2.0366166666666667,1.9903333333333333,1.3241083333333334,1.812255,0.821865,0.821865,4.52007,2.12664,5.97628,2.4172875,2.74776,2.210615,2.5825105,2.4109,6.22135,4.5055125,2.0946125,2.6255366666666666,2.5825105,2.836385,4.476013,2.653905,6.216216666666666,2.4172875,3.5512575,3.55909,3.0632900000000003,5.3833,4.60909,1.8723775,1.9592175,2.46077,2.328215,4.751925,5.32845,1.9432,3.702705,1.6010866666666665,1.608255,5.13185,9.743265000000001,2.035556666666667,2.0265333333333335,2.36642,4.04528,4.05779,1.87856,4.51697,4.379465,2.49905,38.74386558333333,2.8612333333333333,3.0707466666666665,0.41276999999999997,4.337415,2.04428,0.88201,3.51233,3.74629,1.858855,1.75243,2.34308,3.770845,1.3153299999999999,3.1463703333333335,3.66485,4.649495,0.932804,4.686745,4.883915,4.66558,2.83372,1.552855,3.69361,4.42578,3.43324,3.071845,3.74013,3.81812,11.42108292929293,2.56376,3.11035,3.72457,2.54991,4.426795,2.93725,2.69147,2.97541,5.34085,4.35671,4.854275,5.1327,2.47225,3.587745,4.18275,3.808415,4.68413,4.336525,0.12521630434782607,2.34915,5.2874,2.788935,1.6204766666666668,1.1533333333333333,1.1533333333333333,1.9737725,2.87418,3.063025,1.883842,2.8195099999999997,4.425705,2.64656,4.491205833333334,0.5561707142857143,4.62902,3.678795,4.81674,4.692035,4.35866,1.1815175,1.01243125,4.308366666666667,2.8900233333333336,3.0609366666666666,3.8622902424242422,4.18101,6.2639575,5.4883,3.899975,3.55179,2.0749258333333334,1.4561849999999998,4.251875,0.3230673333333333,3.48253,3.8624,4.018415,14.009716666666666,1.9716200000000002,2.976523333333333,0.7695475,4.525475,8.67708,3.49165,1.7468466666666667,5.74025,3.164406666666667,1.0891011111111113,4.973785,2.82847,2.78591,4.749135,3.6813431666666667,1.00232375,6.465656666666666,0.7768775,4.923925,3.3990981666666666,1.4399225,2.2656108333333336,3.3472725,3.3472725,3.91442,4.577822333333334,1.2702,2.84509,2.95625,3.72656,3.168925,3.04198,3.12194,3.672425,6.715284666666667,6.2933,4.165895,3.28817,4.58865,4.551865,3.41299,3.40628,3.669465,3.726225,4.20578,2.577436666666667,2.58632,1.56282,2.3144933333333335,2.16691,1.539395,2.9375133333333334,3.5517,3.3966,3.0296033333333336,2.5163733333333336,1.6303533333333335,1.63133,0.4745836363636364,2.51015,1.5827142857142857,1.8663225,3.4474,2.495973333333333,2.6211366666666667,0.90545,2.2246625,2.595795,2.98593,3.70648,5.1203,3.86774,2.931765,2.28968,3.3933,4.301225,2.47965,3.442855,2.183545,3.95908,2.873985,4.12676,1.5082700000000002,0.619609,2.24227,3.36997,3.168515,3.868055,4.70308,8.684525,3.1690133333333335,2.15605,1.8975733333333331,1.6748539999999998,1.6748539999999998,2.8950099999999996,2.5136600000000002,4.75128,4.302665,3.38869,4.81246,3.965145,4.085205,3.194089166666667,4.32129,7.752387499999999,2.573575,0.502781875,3.2338766666666667,1.4401966666666668,1.03387,1.7190866666666667,0.7226049999999999,2.1287475,5.0306,5.24075,6.18288,1.12463,7.71612,1.959456,1.5779483333333333,2.63685,3.97994,3.2632366666666663,2.3465225,3.39734,3.00474,4.1961,2.91834,2.8191466666666667,2.9499,6.814545,2.486505,4.003195,3.7986766666666667,3.9747716666666664,1.6684166666666667,1.28349,4.269025,2.6926366666666666,3.0909833333333334,5.45945,2.672475,2.158535,2.3999125,3.30081,3.7046666666666668,2.0447666666666664,3.734199166666667,2.893466666666667,5.4596,2.4322938333333335,1.8966,4.725595,5.2485,4.22516,4.086375,1.4811233333333333,2.1829075,2.00146,3.384175,1.4556166666666668,0.978395,2.81761,2.050535,1.9398525,4.529355,0.6681083333333334,5.5603475,1.4537075,0.766240909090909,3.5096666666666665,3.842895,0.6706371428571429,2.9503985,3.1661762500000004,0.8279191666666667,4.104445,0.16377190476190476,0.16377190476190476,0.16377190476190476,0.16377190476190476,0.16377190476190476,0.16377190476190476,1.651938,3.64892,1.651938,1.651938,1.88511,0.16377190476190476,0.16377190476190476,3.255383333333333,2.6226366666666667,3.334765,3.434465,2.403575,3.58779,1.3800342857142858,1.5986179999999999,3.2096925,1.38796,2.83295,2.619348222222222,5.496826666666666,3.95114,4.007905,6.4788,4.455295,4.509805,3.567865,3.92461,7.208762916666666,3.9745333333333335,3.6059,2.260256666666667,5.007513333333334,2.6096533333333336,2.11701,1.6684666666666665,4.561245,5.00885,4.9983,4.92835,5.4401,4.211185,4.577295,0.6570736363636364,0.6854792857142857,0.6854792857142857,4.81696,2.3953533333333334,4.017415,1.0233,4.421105,1.4588285714285714,2.2919,2.4956199999999997,4.427266666666667,4.427266666666667,6.72815,4.20523,1.3203449999999999,9.666085,2.7662266666666664,1.2103555555555556,5.02805,5.07245,3.398625,3.10778,2.803185,4.194866666666667,0.7889666666666667,3.244873333333333,3.3515,3.8107666666666664,3.1917299999999997,1.5387366666666666,1.4824466666666665,4.801383333333334,3.1045033333333336,3.1636133333333336,3.4418333333333333,5.465231666666667,3.4739975,0.8263339999999999,1.7045733333333333,3.5553000000000003,2.241295,3.747833333333333,3.4422333333333337,3.0757766666666666,3.340666666666667,3.00568,2.3518399999999997,0.8875299999999999,3.0608799999999996,2.45406,3.336855,3.043245,3.705475,2.5948100000000003,3.302846666666667,2.85105,1.535432,1.93049,2.6836509523809524,3.4639666666666664,1.747392,3.21021,1.8385999999999998,3.6689333333333334,5.462529999999999,5.04093,2.3979125,2.5717,2.674775,2.511575,1.6231857142857142,2.3206975,3.3595975000000005,2.48524,3.583266666666667,3.235065,3.778151,2.99673,1.2518777777777776,1.338065,1.82397,2.21436,2.835593333333333,3.4876666666666662,5.0788,7.6515249999999995,2.65597,5.11965,3.817395,15.015015666666667,0.4676835,11.122892499999999,0.8325733333333333,3.33981,2.8441566666666667,2.1561166666666667,2.93108,1.6227239999999998,1.44239,2.3092366666666666,1.176288,2.8208719999999996,1.8754466666666667,2.8745100000000003,2.1423666666666668,2.5873399999999998,1.6084100000000001,0.5992341666666666,3.0227799999999996,2.544566666666667,2.8337233333333334,1.1003655555555556,3.4686333333333335,0.7160316666666667,0.35624923076923076,1.9353833333333332,4.36588,4.687395,4.403755,0.7373763636363637,3.97018,5.0237,1.2236,2.012715,5.229621666666667,3.200665,3.797685,3.80879,3.98421,1.82897,3.87299,2.70342,2.797305,3.69048,2.776465,2.876305,3.79338,3.26502,3.98313,2.05369,3.347775,4.341085,1.3361966666666667,4.480045,2.313095,4.148725,4.983563333333334,1.9932575,2.7003633333333332,2.91019,5.706118333333333,2.5449533333333334,3.240475,4.844785,3.904866666666667,4.014595,1.9296933333333335,2.627125,4.449375,3.602133333333333,3.97636,3.6759,2.9509866666666666,2.830856666666667,3.8354666666666666,3.21608,2.670643333333333,2.6454866666666668,0.4563211111111111,2.2270525,2.093675,4.50691,4.809565,3.0245599999999997,2.589233333333333,3.0280733333333334,8.542095,3.5661137500000004,4.000455,2.58615,3.993715,3.069895,3.7375516666666666,2.6858233333333335,2.179735,2.57049,6.26395,4.778345,2.1559233333333334,3.286865,3.11385,2.6812400000000003,4.360279333333334,1.7934519999999998,6.1370233333333335,3.887315,4.78704,4.525535,6.42875,3.7124,6.81667,3.413945,3.252405,0.629965,2.21336,1.639755,2.737273333333333,3.4026137500000004,4.23786,3.91816,5.15385,2.58717,4.560415,3.5518666666666667,3.6561333333333335,3.25175,4.276335,4.613985,4.377285,2.7174,6.011010000000001,4.50179,1.4346283333333334,5.18785,3.560045,2.856505,2.289445,2.29705,4.316675333333333,1.2422799999999998,2.553506666666667,2.0378025,3.883285,4.34051,2.4733,3.2894,2.9679876666666667,2.369056666666667,3.671725,1.392276,2.4419733333333333,2.4247866666666664,2.86214,2.6308166666666666,2.6610033333333334,2.66122,3.88949,2.9456433333333334,2.8350866666666668,4.02325,2.561925,3.74844,3.67115,1.5069736363636363,1.5069736363636363,4.40522,2.65536,1.82616,1.3661525,1.9571575,2.0085675,1.2824680000000002,1.46925,0.653388,1.6141733333333335,1.5774833333333333,3.0982266666666667,2.2325066666666666,1.90248,2.00772,2.2517,1.61409,1.8649766666666665,1.9249833333333333,2.4897775,3.827425,2.901445,2.62377,2.617625,5.356425,2.7388,4.318055,4.034179166666667,2.12771,3.88781,2.86498,2.15335,3.664195,1.86791,2.94258,3.6654,1.7681775,4.434655,3.398625,4.21562,3.151146666666667,0.7946755555555556,4.766395,3.806185,3.197215,4.14737,2.2732433333333333,4.51053,4.72716,4.75037375,8.997648333333334,3.31907,4.43434,2.6828133333333333,3.484535,4.408025,2.30556,2.61545,3.74657,1.93383,5.77153,1.889996,2.77042,5.585641666666667,2.817206666666667,4.167762,1.2010385714285714,4.232975,4.29369,3.0188133333333336,4.52503,4.70942,5.8122050000000005,15.286483988095238,0.621835294117647,1.06634,2.792816666666667,3.80378,3.71073,2.148775,3.302385,4.05821,4.93014,2.38241,4.797185,1.6249633333333333,1.6249633333333333,5.17815,0.7633872727272727,1.666562,2.916885,4.02374,0.3931246153846154,1.94777,3.9858900833333335,1.1797333333333333,3.126803333333333,2.7661766666666665,2.96319,8.00017,2.585733333333333,3.778166666666667,2.05018,2.27351,3.6070925000000003,3.562905,3.379565,6.938173666666666,1.949415,2.838325,4.547325,6.6231775,1.86915,2.44015,2.5986066666666665,1.38227,2.4965,1.6170275,3.832435,3.942425,1.5266575,1.864344,1.864344,2.54666,5.40805,4.082528333333333,3.91503,4.38418,4.301215,3.26605,3.38163,4.42919,3.4892,4.7725550000000005,3.6083325,4.41965,0.8923909999999999,0.37585375,5.26135,3.915735,2.351933333333333,8.10662,1.5545533333333335,4.548066666666666,4.19143,0.3730541666666667,1.9545599999999999,1.37611,1.7817933333333331,1.9452166666666668,5.2748170000000005,3.30522,2.808685,4.98235,4.818865,4.662635,0.5790146153846154,1.948275,0.6159239999999999,5.571581666666667,1.396242,4.818935,1.91715,3.1141075000000003,3.272505,4.08904,4.166285,5.2031,0.8504245454545455,3.024045,3.96039,1.972955,1.6463825,3.700915,3.147475,3.7224,3.9941875000000002,5.317485714285715,4.734265,5.5571,2.7700133333333334,0.5279444444444444,3.2818666666666663,3.650625,0.5368576923076923,3.856095,3.84212,4.049985,3.1548,2.7520733333333336,4.555765,3.206355,3.09551,2.254675,3.70433,1.703046,3.108965,3.890405,0.6026438461538461,3.633605,3.78103,3.248945,3.911455,4.455485,2.8937,3.925185,0.636246,2.8686866666666666,3.6528188888888886,4.40612,3.3641666666666663,2.4149675,3.3793666666666664,2.4149675,4.586735,3.135705,2.89868,1.5023066666666667,2.92206,1.737725,4.16484,2.6779266666666666,4.980309999999999,3.02021,2.6093966666666666,2.8962299999999996,2.3945060714285713,2.3945060714285713,2.3945060714285713,2.1464633333333336,1.1270766666666667,4.53411,2.3703133333333333,1.7012933333333333,3.9898333333333333,2.006083333333333,3.0109966666666668,3.9464,5.5157,3.178165,1.941495,1.099616,4.04865,1.9991759999999998,2.131063333333333,2.72801,3.421025,2.12861,3.544475,3.02862,1.70197,4.729815,4.212695,3.17801,3.767995,0.7629733333333334,2.4771933333333336,4.316895,7.627375000000001,4.044185,3.16058,2.99802,3.461085,3.773195,1.6799125,2.442465,4.537425,2.058725,4.31874,3.29809,5.11685,8.270846666666667,3.9756,3.245775,3.289805,4.82572,4.2023,3.1560175,3.1560175,3.875905,3.79967,4.353745,3.873485,4.203265,4.539065,3.899655,1.077855,4.44318,4.11006,4.98682,8.143685,5.03425,3.6669246666666666,1.8935166666666667,1.4010216666666666,2.44421625,5.0673,3.719955,4.76668,2.196076666666667,4.223105,4.89544,5.09175,4.87612,3.0159300000000004,3.263295,3.85354,4.88375,4.435235,3.75423,6.5333966666666665,4.79483,2.325196666666667,5.0243,3.940105,3.931785,3.63264,4.62982,0.7901536363636363,3.9971,4.2015,1.1986085714285715,1.26312,4.79262,4.47082,8.495636999999999,5.2426,4.467205,6.0723,3.080775,2.4630933333333336,4.772625,1.879215,1.879215,2.67531,1.7172,3.127755,3.2425466666666662,1.9494475,3.9784068181818184,1.4888199999999998,2.03584,5.1924624999999995,3.95059,3.51093,3.152145,4.112485,4.222295,3.07018,0.9445399999999999,4.15395,3.1939266666666666,4.03749,4.30545,3.72501,5.3943,4.411175,4.59818,3.57904,5.22835,6.41645,4.70347,3.366295,3.194895,2.0431175,2.0431175,3.720735,4.009345,2.3715066666666664,2.8385866666666666,2.09689696969697,2.6464666666666665,1.75943,1.75943,4.146415,3.527525,2.128485,3.587715,2.69385,1.929755,1.3005325,0.8802933333333334,2.72304,0.4339063157894737,0.8139555555555555,3.014465,3.482655,0.44148545454545457,3.64682,1.836418,5.26745,3.42305,7.1249649999999995,4.29956,5.279956666666666,4.71256,5.1092,4.134145,1.88593,1.814486,3.97354,3.10194,3.706845,1.3602366666666665,3.09559,4.530305,2.769255,2.658905,2.463565,4.410195,3.36266,2.979455,4.067265,3.458325,3.261515,3.136625,0.9996914285714286,2.3275,2.482335,2.82468,4.37312,7.76972,0.9268980000000001,1.6274533333333334,1.6274533333333334,1.78472,3.899085,2.925625,3.103055,5.0142575,2.9571,1.05761,1.05761,1.05761,3.02148,2.8203760000000004,5.22325,3.120605,4.200265,3.343745,3.725845,3.07467,3.392138333333333,3.72485,3.9754625000000003,2.3759725,1.2824680000000002,3.234425,2.3759725,4.33848,1.4154633333333333,1.9265433333333333,1.7724525,5.157082666666667,2.78626,5.879456,5.157082666666667,3.093196,1.9825733333333333,1.9825733333333333,2.332175,5.21656,1.9825733333333333,2.338105,5.39615,2.231895,2.813155,5.0031,3.52585,4.16187,1.70562,3.38278,4.47299,2.045993333333333,2.32013,4.21006,1.70562,2.38966,2.098035,6.64005,2.65868,1.24756,2.947015,3.445815,3.7684838333333333,2.000205,2.3394905,4.02145,2.2307213333333333,1.75208,3.06407,2.339105,3.00642,3.98918,2.0407433333333334,2.776065,2.11767,5.68969,2.263305,3.516005,3.309375,3.309375,8.409569999999999,0.99925,2.963885,2.276875,3.34768,2.462965,1.4534766666666668,1.4534766666666668,3.46035,2.65216,6.727495,2.361865,3.368005,2.961195,5.73251,2.87651,2.14415,5.640924999999999,5.640924999999999,2.798955,1.68359,1.359905,1.359905,1.68359,1.9468233333333334,1.4308933333333334,1.1900716666666666,1.6450766666666665,2.278633333333333,3.71613,2.21839,3.66364,2.98884,2.711405,2.9569,3.02886,2.6275,3.2029316666666663,3.2029316666666663,6.15171,2.34711,2.8986,3.39606,3.595845,2.925655,2.88804,2.97662,5.6793625,1.8995825,1.6882483333333331,1.177405,2.2003733333333333,5.67382,3.9743199999999996,3.30904,3.65148,1.9898925,1.9898925,1.9898925,4.6083,2.53235,1.1900716666666666,2.885335,3.53174,1.3153075,5.1841375,3.147785,6.37304,4.28644,1.899395,3.48879,2.38402,2.097465,3.226925,4.78762,4.76464,1.78723,2.713955,2.977555,3.065505,5.52321,1.94791,3.56755,2.716955,6.20905,4.99946,2.048255,2.756855,5.69947,5.41569,5.53991,6.54098,1.125026,1.125026,4.025227,4.025227,0.835072,5.31915,3.7549,4.95738,4.29276,4.90389,2.52749,5.0066500000000005,5.0066500000000005,2.378555,3.38397,3.7207,1.200694,4.54585,3.45032,3.238135,2.962585,5.69535,2.816535,1.905025,3.091725,3.16718,2.957065,4.70071,2.70965,1.600525,3.803625,5.51296,5.66525,4.44602,3.12703,3.1836,2.789125,5.49124,3.01598,3.56484,2.41831,7.55926,4.45186,2.66081,2.69818,2.604055,4.75984,2.80777,2.81937,2.46341,7.33281,5.28958,3.739875,2.457715,2.596355,6.73415,2.88063,2.877095,5.29251,3.11193,3.101435,2.64754,3.33138,2.051946666666667,2.14403,1.9090299999999998,1.8146366666666667,1.7506466666666667,2.07872,1.680115,1.98311,1.827295,2.051946666666667,4.24189,4.40018,2.35165,1.6606275,1.6606275,3.92945,3.92945,3.097296666666667,3.097296666666667,3.030445,2.168205,1.99505,4.10836,2.3958899999999996,2.3958899999999996,2.3253874999999997,2.3253874999999997,4.30621,2.46656,4.76474,2.472545,3.438915,1.8490466666666665,1.8490466666666665,1.42106,4.34564,5.09586,1.4154633333333333,3.96306,2.0407433333333334,2.606345,4.80319,3.151215,2.02398,2.48474,6.42489,2.41129,6.85291,3.544435,2.93081,3.047455,3.176095,7.00291,3.45743,2.106415,2.502991923076923,3.19553,5.24844,3.53898,1.45794,1.45794,4.02135,5.53598,5.76225,5.54145,2.88092,3.035135,1.95943,3.112305,1.702195,3.010975,1.822605,0.8371280000000001,0.8371280000000001,0.8371280000000001,2.044620833333333,5.858053333333333,2.044620833333333,2.415755,3.7451,1.826375,2.090785,4.09449,3.27832,5.90726,1.7606233333333332,5.5299,1.7606233333333332,1.7606233333333332,2.192035,2.034445,2.24636,6.8706,2.24636,2.54905,3.40298,2.4817,1.676125,2.781095,2.9885066666666664,3.1384825000000003,3.230703333333333,3.611775,1.264755,4.068135,0.6886081818181818,4.05102,4.3805325,2.989695,2.989695,0.6208072727272728,3.9459,2.7566466666666667,5.57065,4.86208,4.085405,5.30095,3.772775,4.01817,5.0981,4.067795,4.28809,3.52684,3.95077,4.637285,5.0617,3.36028,3.333875,4.096335,2.32326,1.25265,4.409715,3.38801,2.927545,1.1383385714285714,3.881705,3.95091,6.458915,1.196815,5.22435,3.943015,2.012,2.093715,3.24497,3.545415,1.79996,1.45794,3.892265,4.839855,2.642945,4.742765,3.132495,1.13354,2.86444,1.1754885714285714,3.0775133333333335,1.8234166666666667,2.954413333333333,1.900485,2.5749033333333333,3.87436,2.924685,4.56906,3.363185,2.1985125,4.77699,4.35757,3.105535,5.4751,4.208475,2.8308999999999997,5.8968,4.503935,3.1356383333333335,2.66574,2.47329,2.9568433333333335,3.0182300000000004,2.64636,4.849525,4.382465,3.69639,2.53838,2.7380066666666667,2.4306266666666665,2.4242666666666666,2.3024366666666665,2.48088,2.26737,2.1640475,1.3324725,2.896342333333333,1.1810575,1.725095,1.61836,2.647975,1.6200925,1.826855,3.79454,4.032755,2.013105,4.032725,3.468755,6.245881666666667,2.0180866666666666,1.563998,6.7806,3.2934,4.55353,4.55536,4.085285,2.03259,3.761875,2.420995,3.122305,4.132975,0.7493016666666666,4.015025,2.078183333333333,0.7502800000000001,4.88368,4.46298,3.945365,1.797209642857143,4.729255,5.63795,2.641576666666667,2.7839899999999997,2.5086999999999997,2.089303333333333,0.598492,3.080686666666667,3.0002,4.82842,2.4357875,2.02195,3.30984,1.1674925,1.8387566666666668,1.8387566666666668,2.885705,1.8387566666666668,4.01629,3.00415,4.206985,4.442175,5.77045,13.169215833333334,2.9967133333333336,4.448235,2.66848,4.71815,3.241355,6.4365975,2.7325233333333334,4.797735,4.74383,3.914585,1.127575,4.608505,2.9606933333333334,2.4187,0.9188477777777777,2.1806275,3.474085,6.83545,4.05929,2.7807033333333333,4.58004,3.1826066666666666,4.060655,4.36828,4.60058,3.03974,2.909456666666667,3.980035,5.4147,2.62288,4.070175,1.7384,1.7384,3.09496,4.74219,1.00985125,3.906238666666667,2.0473825,4.670305,2.5852333333333335,2.4879166666666666,3.1509966666666664,2.2830966666666668,0.69965,3.370505,2.8778233333333336,5.3083,4.5229,0.230940625,4.778185,4.422985,3.863455,6.624835000000001,2.804883333333333,2.9170266666666667,2.1385666666666667,2.882593333333333,2.5692633333333332,1.3461999999999998,2.7929866666666663,2.55864,1.3385666666666667,3.2230133333333337,2.9407933333333336,2.4634033333333334,2.5006533333333336,1.282781111111111,4.09197,2.42723,4.908635,4.015585,3.862505,1.6939166666666667,2.45912,1.2240075,1.901555,1.2240075,4.71906,3.3561333333333336,1.57145,2.2416925,4.0861,3.96628,2.97644,3.76966,0.353901,1.3627754166666666,3.814355,4.43058,6.39735,1.898105,2.6967766666666666,3.0678133333333335,2.2187533333333334,3.087835,3.3332,4.42934,2.46036,2.0746466666666667,2.780836666666667,2.582523333333333,2.6716366666666667,4.395215,2.267635,4.37525,3.653383333333333,6.0533,7.731305000000001,0.7720755555555556,0.8230850000000001,3.923625,6.462892500000001,2.0569800000000003,3.490385,1.9078916666666665,1.9078916666666665,3.5656,0.44596777777777774,3.50189,3.319535,2.809965,3.641355,3.38311,2.533985,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,2.405485,2.832135,3.62945,2.942125,4.3813325,5.72887875,2.872945,1.9085033333333332,0.925135,3.36335,0.70466375,4.629498333333333,2.7209950000000003,2.2057,0.70466375,2.525525,2.53554,0.9485425,3.5385887499999997,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,4.249185,1.6084225,4.30127,4.313375,1.787548,4.52215,4.028315,5.30225,4.422019166666667,3.4195792857142857,3.406715,4.3725,1.9597025,5.264885,4.181785,0.7300000000000001,1.3876928571428573,1.3256514285714285,3.142163333333333,3.142163333333333,2.8939733333333333,3.75185,4.13336,3.604275,3.851565,2.87162,2.024036666666667,0.5068971428571428,4.107675,3.16013,2.71642,4.296885,3.39953,3.059355,5.04045,4.38437,6.4276375,4.08639,4.598135,5.6486,4.21929,1.2026757142857143,3.18417,5.161186666666667,32.62276661760462,1.1861033333333333,4.074905,2.97662,4.54214,4.07621,4.980005,5.1664,0.4206814285714286,5.26905,4.439725,1.99979,2.40023,3.52198,1.5640675,2.41667,2.289615,1.75907,2.910715,2.45677,2.909205,2.63974,0.6037507692307693,3.12121,3.880655,0.3540605263157895,2.4291066666666667,2.70543,2.993805,3.876715,1.94333,4.306705,4.114385,3.370995,3.37328,3.09571,4.08084,2.92181,3.82155,2.148915,5.161186666666667,3.65228,3.194225,2.82356,1.5816240000000001,3.720195,3.589335,6.9364333333333335,3.3797,4.68017,5.778689999999999,5.2976600000000005,2.2806075,4.39885,5.58307,7.397642,2.48931,2.5836,4.699165,5.817613333333334,4.244485,3.623735,5.32751,2.747,1.5930025,2.2249175,59.73911385418202,4.81147,3.891,2.539925,0.8534940000000001,2.2952966666666668,2.820156666666667,3.2492933333333336,0.7606111111111111,4.39234,0.8024922222222223,7.642474285714286,1.9991759999999998,3.312673333333333,1.7832439999999998,2.676885,2.6088466666666665,3.1491733333333336,2.5066633333333335,2.39082,3.2918766666666666,1.5971066666666667,5.424918333333333,3.751333333333333,1.673585,2.680733333333333,1.3912333333333333,1.4714625,7.50134,5.8871,3.353085,3.78664,5.471432500000001,1.439857142857143,3.3877,3.339625,1.680695,5.3689,3.746555,3.913965,1.5507525,2.8512575,3.4655,4.177035,5.5634,4.394035,4.403175,2.2938825,3.935365,4.470066666666667,3.0039933333333333,1.406654,4.104845,3.2006766666666664,4.132575,4.94919,3.947055,3.5355,4.36142,4.315125,4.318955,4.38369,3.77683,3.1097466666666667,3.7634,4.058235,3.20505,4.17152,3.74583,1.489455,1.489455,4.197415,4.834245,4.97334,3.753685,4.779525,3.377166666666667,2.85683,4.939275,5.18375,0.7373754545454545,5.49035,6.5057775,5.51205,5.6151,1.0581944444444444,3.09052,1.0836816666666667,1.0836816666666667,1.0836816666666667,3.69164,3.29823,2.47228,3.5095666666666667,0.9948029999999999,4.924815,5.64895,2.92033,1.501055,1.92952,3.98001,3.68873,3.8731,3.236224,6.64735,3.712875,2.58762,4.32994,6.76105,2.18514,4.34456,3.865595,3.28692,5.34525,4.088855,4.890915,5.6421,3.129765,3.393513333333333,1.92614,1.92614,0.7175118181818182,8.287474,2.29153,5.7083,5.4313,4.12314,5.4279,3.95039,3.02306,4.50598,7.29437875,5.575558333333333,1.9251933333333333,4.369025,0.9249430000000001,3.873405,1.99913,0.8684888888888889,1.1382999999999999,2.4498666666666664,2.9842766666666667,2.8556266666666663,1.032382857142857,2.5737,2.9959866666666666,0.84206,2.61221,3.08742,1.719128,1.7849119999999998,2.85281,2.85118,2.699733333333333,2.5165533333333334,1.6664100000000002,5.1993,3.900055,3.64641,4.136395,4.931985,3.40701,4.30681,6.59255,4.93876,4.22213,3.919055,10.317908333333333,8.20304,2.8847566666666666,3.74258,1.6372733333333331,4.037235,3.177365,4.49387,0.9981966666666667,3.9564,3.62344,1.5831916666666668,4.073875,3.072103333333333,4.20822,2.7617,3.906785,6.69255,7.650043333333333,3.726165,1.4903700000000002,1.4903700000000002,1.4903700000000002,4.62353,1.2169016666666665,1.4404625,0.45089388888888887,4.213238333333333,2.9500166666666665,3.36764,0.966706,1.1363925,3.182035,4.387495,3.691555,16.244592345238097,4.2309725,4.580155,5.545105,2.65125,3.300135,3.150075,0.9017377777777779,1.18471,3.5152,3.607015,4.123245,4.41676,4.327955,3.670965,2.8117164444444445,3.3061,5.19455,0.5488649999999999,4.445025,2.2957825,3.90064,4.24892,3.4115,2.2011600000000002,4.004605,1.8094033333333333,3.53469,5.88775,3.0016533333333335,3.238185,4.18846,3.965345,4.361665,3.828295,3.43983,4.013515,4.587405,4.92353,3.66449,4.338775,3.781025,1.075567142857143,1.45056,5.719152,6.1232,4.0186,4.998935,2.4577625,2.7659333333333334,2.7558233333333333,5.706110000000001,1.8748675,1.98913,2.8537166666666667,2.955686666666667,3.332926666666667,4.51547,3.338615,5.181753333333333,1.2154675,4.71296,0.9675383333333333,4.11045,3.44006,1.7636083333333332,4.46679,0.9439033333333333,4.86871,5.4553,4.79002,3.804415,3.798285833333334,3.970965,3.051246666666667,4.912895,6.0085,2.7390385,4.199175,2.511865,2.65174,2.059245,2.499365,3.18152,4.90242,1.0584525,4.4413350000000005,1.32809,3.397495,1.6554200000000001,1.0584525,0.19494891891891894,3.47601,3.278045,2.2236525,1.9791666666666667,2.65386,1.1198975,3.95405,3.72026,4.714135,2.5691133333333336,6.1775,6.482167499999999,2.76364,3.2379766666666665,2.672363333333333,0.7756109999999999,2.3948633333333333,6.0684,3.947805,5.6229,4.61721,2.0499033333333334,1.2669300000000001,3.8742525,1.609905,2.172005,1.70924,2.2186075,1.672735,1.89704,2.1156975,1.975205,1.85113,1.3580942857142857,1.3937875,2.09201,1.8316825,2.1400925,2.26681,0.5377379999999999,1.108892,2.6547733333333334,3.16687,2.005705,1.8253000000000001,1.73287,3.23276,2.3400466666666664,2.935865,3.06049,5.6723,3.70144,3.0187066666666666,4.130905,1.5200436764705882,3.571535,23.2018705,4.728986666666667,5.66295,4.226485,2.2816233333333336,3.716745,4.84662,2.248245,5.2084,3.301716666666667,0.77865375,3.0373,4.43828,3.70827,4.084255,1.4758333333333333,2.021123333333333,2.4896566666666664,2.44726,1.4345142857142859,3.3692666666666664,5.0675,4.29146,3.39221,3.938295,4.77085,3.298785,4.39897,1.2035275,2.73866,4.149535,4.662145,1.8216439999999998,3.1265733333333334,1.80947375,1.80947375,3.592465,4.6289,2.958043333333333,2.838533333333333,3.896655,3.90084,6.539887500000001,4.80657,2.363605,1.18471,2.92338,4.41545,3.1184,2.6260166666666667,2.6260166666666667,3.3000399999999996,4.942895,3.462905,5.20547,2.356625,3.5341880000000003,0.64194,0.64194,0.64194,3.466335,3.913755,3.967293333333333,5.46245,2.0477225,4.72424,4.59525,5.0716,3.20142,5.522,2.715515,1.3198899999999998,4.366535,3.985185,0.4661085714285714,4.222566666666666,4.62675,1.4800266666666666,4.932735,4.90241,4.409015,4.17936,3.66653,3.06613,4.497995,1.745828,4.62646,1.5360266666666667,4.109945,5.84295,1.12405875,3.164765,7.10239,3.687295,3.3630666666666666,2.1551025,3.79922,5.63395,2.9847566666666663,7.327195,4.050795,2.1635066666666667,3.01742,2.736596666666667,2.3481866666666664,2.725626666666667,1.8433966666666668,4.71141,0.60986,2.0688075,2.0688075,3.10034,3.71105,2.26739,3.06201,4.2025,5.3135,4.174215,1.4511033333333332,4.714583244047619,4.290275,4.699075,3.497845,3.8448786666666668,3.4547160000000003,0.39016266666666666,2.8760342857142858,1.0528925,0.39016266666666666,4.265765,0.8640933333333334,3.925045,4.01167,6.556293,2.2025,1.1000525,1.1386939999999999,2.35842,3.003496666666667,1.64916,2.58656,3.4323,3.70867,2.21145,2.4380366666666666,4.206875,2.92134625,4.038295,5.70435,3.510895,5.145,6.742491666666666,4.520425,3.794465,4.458825,3.743515,3.97599,4.94814,5.5301075,5.1673,2.43128,0.9004744444444444,3.44356,3.82951,4.32507,4.25367,4.170555,5.07775,2.5415366666666666,2.4166466666666664,2.8461133333333333,2.2843133333333334,2.139136666666667,2.87027,3.0342266666666666,2.2598433333333334,3.621065,4.193435,4.16408,5.2054,2.49394,3.5556666666666668,2.905675,0.7181214285714285,3.929595,3.20191,4.49337,2.72484,5.227186666666666,3.3402,4.67511,3.857225,0.5179776923076923,0.5530464285714286,4.250065,2.762712,3.022185,4.249795,3.862435,1.70852,5.1659,4.01204,2.48104,2.60972,2.181525,2.0342275,3.5019666666666667,2.97463,3.033666666666667,2.9703633333333332,3.5103666666666666,2.636225,3.033723333333333,3.6015,4.3337,0.58069875,0.58069875,0.58069875,3.1292208611111114,3.512966666666667,3.6207666666666665,2.54776,2.803876666666667,1.077855,2.7761433333333336,2.9433633333333336,1.67889,2.821426666666667,2.341806666666667,0.9612488888888888,2.8582583333333336,4.72861,9.773841916666667,1.3704064166666665,0.6328229999999999,3.849865,0.6328229999999999,0.6328229999999999,0.6328229999999999,0.6328229999999999,2.15876,3.9135269999999998,3.76499,4.75166,5.81245,2.7583699999999998,2.705303333333333,2.89332125,3.197725,4.76385,1.0568,2.23372,3.0313700000000003,2.612553333333333,2.9978200000000004,3.369915,2.12886,2.51018,1.1502444444444444,4.853005,2.631345,3.376935,0.8549225,0.567095,0.567095,0.9295217826086957,1.7844442826086957,0.9295217826086957,0.9295217826086957,0.3493547826086956,0.3493547826086956,0.9295217826086957,1.4560199999999999,2.45676,2.851335,2.9677366666666667,2.667896666666667,2.7295533333333335,3.2276066666666665,2.82103,4.682665,3.595275,2.004845,2.301136666666667,1.7267775,0.1915704620765832,0.1915704620765832,0.1915704620765832,0.1915704620765832,2.5210399999999997,2.468863333333333,0.893092,5.0255,0.7549236363636364,1.6579039999999998,4.604359166666667,5.2043,4.20744,3.07103,4.410945,3.02958,1.82555,1.3563925,4.061135,4.612225,6.59135,2.473575,1.4842766666666665,1.9560000000000002,2.9191033333333336,1.5100300000000002,2.73112,2.8389666666666664,3.0892966666666664,4.20547,3.447445,3.0199,4.996015,2.283873333333333,4.10702,5.5818,3.690295,4.21741,4.5408,5.208783333333333,4.720940833333334,2.9138374285714286,4.958601666666667,4.076195,6.5284,4.44433,4.54893,2.20805,3.111895,4.27174,4.73768,4.507655,3.954195,3.834475,3.7205,3.904185,2.4773066666666668,5.17675,3.55024,7.5625975,5.9747,5.79245,4.79022,1.4272885714285715,0.9000540000000001,0.5941138461538462,1.788388,4.75736,5.57995,4.005065,1.542788,4.035345,3.214685,5.00735,5.2985,6.185294000000001,4.121675,3.04172,1.620196,5.593885,4.08092,3.07382,1.792835,0.9946425,3.86924,3.2502,3.78314,3.7873,2.26503,4.394885,1.7902833333333332,2.97563,2.535695,4.520655,5.46095,4.648655,2.1878675,1.840215,5.63055,2.9235666666666664,8.66182,2.8481,5.1043,5.80875,4.415515,5.2292,3.57238,4.984665,2.1025275,3.891175,4.595925,2.42608,4.24986,4.34102,7.18624,4.993285,2.96508,3.990595,3.93556,2.92134625,3.59073,5.3068,5.60145,2.3434675,2.8799799999999998,3.0718300000000003,2.43971,2.62174,4.372775,5.77775,5.0501,4.571835,4.76652,3.99267,4.65454,0.6457446153846154,3.0056666666666665,1.1572657142857143,30.70382568870773,2.76816,4.486515,3.047375,4.73523,1.601632,2.5117533333333335,3.1767005952380956,1.5692580952380952,1.5692580952380952,1.5692580952380952,1.5692580952380952,1.6074425,3.734835,0.35645666666666664,7.7300933333333335,0.35645666666666664,4.302035,4.928555,1.9768525,5.0698,2.848525,3.941117333333333,2.4966666666666666,2.4208266666666667,2.7878666666666665,2.2826666666666666,0.6122507692307692,2.6003133333333333,0.7140858333333333,3.2302066666666662,2.144973333333333,2.649938,1.2105583333333334,2.649938,6.12685,8.117095,4.34448,4.24591,5.77405,6.12575,7.365705,3.039925,1.4478875,1.4478875,2.4144533333333333,4.78163,3.692095,4.374405,5.795748333333333,3.90775,2.662045,3.800855,3.53403,3.52896,2.358045,0.697484,1.803805,3.59985,4.05573,5.183325555555555,1.9543475,3.788455,1.235642,3.22153,1.160756,3.2281766666666667,2.9261166666666667,2.7656533333333333,3.350633333333333,2.769823333333333,5.00645,0.6093430769230769,3.57953,3.5218333333333334,2.497526666666667,2.3025866666666666,4.13401125,3.3511666666666664,2.0895066666666664,4.4365524999999995,3.583675,5.1706,3.96817,3.79212,5.5521,4.9991,2.1503799999999997,5.65155,2.4199076666666666,1.77301,3.10692,2.3604166666666666,2.672356666666667,2.558415,1.8183333333333334,3.193430833333333,4.292945,3.27025,2.3523636666666667,2.3523636666666667,2.681165,3.82719,4.260225,0.5954809090909091,3.484935,3.13714,9.10619,0.8500127272727273,4.393935,3.394005,5.46405,3.654965,3.805965,2.394005,3.838715,3.00231,5.4517,2.5306141666666666,3.92853,2.660346666666667,3.87238,2.61154,3.70111,3.89552,3.797545,4.9507080000000006,3.51938,1.98438,5.1391,2.593366666666667,4.49183,4.86975,4.433645,4.54334,3.978735,2.96474,2.14683,2.6700633333333332,2.4816033333333336,2.6688500000000004,3.1087399999999996,2.6668080952380953,4.726238333333334,2.752876666666667,2.3459,6.248164999999999,4.916867916666667,3.7919825,3.0610933333333334,3.6567333333333334,4.21472,3.618935,1.8884225,3.7999824999999996,4.964595,4.94904,1.3121716666666667,4.102085,2.781166666666667,6.902955,4.820515,8.273966666666666,4.00909,4.504215,2.1883,4.282425,5.7225275,8.19008,4.60906,5.82626,3.622765,3.081805,4.18136,1.7934519999999998,4.374609,1.45793,3.56241,4.676505,3.3462,0.8217458333333334,8.576765666666667,1.1271555555555555,1.8697575,2.57782,1.8779733333333333,3.3437,1.387995,3.80213,3.74277,2.2782266666666664,4.331745,1.1496416666666667,3.86435,1.3837666666666666,2.994927666666667,4.131915,4.85495,1.701605,5.768331666666667,2.4187526666666668,8.05404,4.48229,2.494475,4.08969,3.44918,1.2115991666666668,7.83735,2.9614,3.350965,2.457585,4.18307,2.1050875,3.1515225,2.089665,4.21675,1.2797375,5.926,2.64743,4.43278,0.8135160000000001,2.013059666666667,3.90945,4.865105,5.221985,1.401422,1.401422,5.80105,3.9413,5.96415,3.90505,3.529855,8.94443,4.406005,5.41125,4.104035,2.459815,2.348824943932412,0.3901085,0.19664096774193549,0.6886276344086022,1.2700888095238096,0.7565581105990784,0.19664096774193549,1.4994735,0.4919866666666667,1.6601973095238096,2.188101134408602,1.85154,2.2113775,2.2296366666666665,4.98153,6.347675,4.546655,4.71563,4.30647,5.0443,1.2885933333333333,4.84818,3.990085,5.6449,5.06025,4.96702,5.688,5.62375,5.57355,1.176355,1.243472857142857,1.7908519999999999,5.964301000000001,1.3124259999999999,5.2076,4.60999,6.414707083333333,4.898055,5.38065,4.3917,4.614105,2.4539075,5.16245,5.25065,4.496685,4.726545,6.1519525,5.70195,3.75371375,4.33625,3.595266666666667,1.00006,3.5168666666666666,4.416025,1.0771025,3.6448666666666667,4.659205,4.4278200000000005,5.0187,2.490835,3.34116,2.7873699999999997,4.383085,2.137645,3.467605,1.27132,3.326225,3.829685,3.9889,5.4478,3.30042,0.5402691666666667,5.96415,0.983875,3.540795,2.7457933333333333,3.80413,2.13856,3.731495,3.7402482051282053,3.1751,4.456645,15.284242238095239,4.874196666666666,2.1348125,8.54344,1.5877875,3.84029,2.9777666666666662,3.003963333333333,2.1005066666666665,0.2548078260869565,2.7835733333333335,4.38291,1.749022,2.2061466666666667,3.2314433333333334,1.907915,2.2763566666666666,1.5089857142857144,3.219665,4.660825,5.0756,3.122545,0.4851885714285714,2.3817233333333334,4.733665,2.7487,4.013065,4.307705,3.99534,5.48005,0.4745941176470588,2.504236666666667,2.504236666666667,5.2924,4.72302,4.873415,2.52335,3.2673400000000004,2.8316166666666667,5.2673,3.551555,5.531495,4.54067,4.274605,4.5802,2.491245,1.901972,4.37576,3.957085,3.66419,3.206395,1.79461,4.842495,4.40375,3.835925,4.586905,3.7887,3.87678,0.6072000000000001,2.98627,0.5595508333333333,3.15691,3.298525,3.988985,17.231103333333333,3.426695,3.799495,2.38402,0.93638375,2.15333,2.6017333333333332,1.5329000000000002,2.399505,2.578845,4.56372,2.3684333333333334,3.935475,4.150965,2.126375,3.52923,2.80701,4.39695,5.2012,5.36,1.55044,1.8676,2.408695,4.496725,4.82883,1.1035644444444443,5.09055,3.53502,5.51925,4.42949,1.71216,4.626275,3.306635,3.38029,3.3936,3.886145,3.15347,0.5510075,7.52842,1.351612,0.20345611111111112,0.20345611111111112,0.20345611111111112,4.786085,3.838315,2.8303133333333332,4.105795,2.831285,4.38729,4.453967857142858,3.8008100000000002,8.208435000000001,4.206485,6.8140583333333336,0.7666275,0.7745625,2.577575,4.423775,4.20956,2.2244366666666666,5.2844,5.348,3.533855,3.621745,4.2723,2.18768,4.99358,4.4719585,2.28675,3.0871833333333334,3.10413,2.775895,6.0041,3.80033,0.6207885714285714,3.699065,3.23033,4.11523,4.8763966666666665,5.05565,2.778555,5.2917,3.68831,13.646894166666666,4.472355,6.954155083333333,2.5349733333333333,6.4754819999999995,3.952315,3.789725,1.9843125,2.3248879166666665,9.63272,2.2674833333333333,4.174533333333334,4.093233333333333,3.7733666666666665,3.31732,2.79224,2.079825,2.241315,3.04625,1.7851299999999999,3.7328666666666668,2.3861966666666667,2.6892300000000002,3.228676666666667,3.404733333333333,2.45376,2.45376,2.4944466666666667,3.3157033333333334,3.2416199999999997,2.14295,3.1261566666666667,4.214266666666666,2.7941366666666667,2.7222933333333335,3.6917000000000004,2.07618,1.8310525,3.7807666666666666,2.7548033333333333,1.519158,3.6810333333333336,2.13379,2.3970266666666666,2.8163,2.215441666666667,3.402066666666667,5.701636666666667,2.380386666666667,3.748333333333333,1.95143,10.285831333333332,1.8612033333333333,1.9951266666666667,2.08308,0.9654233333333333,1.6372879999999999,4.27009,2.697756,2.697756,1.4856159999999998,1.5466083333333334,3.5484600000000004,3.7787699999999997,2.1662399999999997,1.4735283333333333,1.720504,4.583858666666667,3.7003333333333335,4.017933333333334,8.110973333333334,3.0171600000000005,2.490413333333333,3.3665147826086956,4.206933333333333,1.8310525,3.1130099999999996,2.5291166666666665,3.4090666666666665,3.409375,0.821565,3.313416,2.7645199999999996,2.8791333333333333,3.992345,3.0613733333333335,0.6295118181818181,1.8727764285714286,5.09755,2.4776555,3.2746366666666664,1.3971516666666668,1.3971516666666668,2.1280525,3.6412716666666665,0.9465350000000001,2.2416575,4.3493933333333334,4.3493933333333334,0.6362761904761906,5.433282,3.314675,4.0017,4.681825,1.2275057142857142,3.290563333333333,3.519833333333333,4.9615841666666665,5.773682,2.4761266666666666,0.575563,2.579143333333333,2.5939900000000002,2.9902933333333332,2.2558000000000002,2.3380966666666665,2.8239,2.3727275,2.47301,0.7600618181818182,5.1144,4.779276571428571,1.3782383333333332,1.7156285714285713,5.45295,2.22743,1.68004,4.146655,1.327768,3.805895,2.576025,3.5056,8.673814166666666,3.8604958333333332,4.060955,4.96255,2.3203201818181816,0.7668090000000001,1.81403,6.99733,1.88608,4.076995,4.079285,3.554365,21.125228416666666,3.2590133333333333,1.4084366666666668,1.00628625,3.0840333333333336,1.4683366666666666,4.167762,5.16515,3.4376035,3.4493333333333336,1.6168666666666667,1.4362416666666666,2.9376700000000002,0.58679375,3.4203333333333332,3.694266666666667,3.1430433333333334,2.5483096666666665,2.4582333333333333,2.8850933333333333,1.92992,2.750766666666667,1.539116,3.656,1.37702,3.95109,3.984575,2.42701,5.24605,3.2288,3.80165,4.8753,4.342555,2.9364933333333334,2.7581900000000004,2.3407633333333333,1.0306671428571428,1.0306671428571428,1.0306671428571428,2.2995875,3.4034999999999997,2.6152366666666667,2.5403933333333333,2.31391,1.8803,3.8502,4.83036,3.75177,6.7026,3.17868,2.1651225,1.924505,0.9149966666666667,2.53337,3.796745,2.521106666666667,2.6896166666666663,2.2309733333333335,2.3958833333333334,2.7150166666666666,2.74039,2.733776666666667,2.6478266666666666,2.3582433333333332,3.3340333333333336,2.0467033333333333,2.228375,1.71981,1.7146375,3.066656666666667,2.907133333333333,2.0325525,4.162785,4.90522,2.807423333333333,2.2838596153846153,5.2801,3.884155,4.50499,5.48175,4.216635,4.350625,6.09081,1.20871,4.248585,2.706115,5.1478,5.1423,3.57741,3.420475,2.10004,7.696795,2.868005,0.7820524999999999,7.50595,5.04073,5.706188333333333,4.154045,2.759126,1.627985,4.890225,3.87612,4.254685,4.791395,2.45187,3.91392,4.191975,1.7267775,3.79374,2.907025,1.3536733333333333,4.791735,0.585074705882353,4.128073333333334,3.54038,4.616865,3.01871,1.704745,3.23952,2.08126,1.4233,2.6496233333333334,3.2909900000000003,3.0880166666666664,7.102362435897436,1.52974,6.38196875,9.45853,5.949655,2.909125,1.3634414285714287,2.9385399999999997,1.3634414285714287,2.890943333333333,2.30571,0.3337835294117647,1.1927397794117647,0.3337835294117647,0.3337835294117647,0.3337835294117647,1.1927397794117647,1.1927397794117647,0.3337835294117647,0.85895625,4.379315,3.534385,3.266855,3.57136,3.235535,4.33585,2.736175333333333,1.691986,6.687591666666667,2.9991966666666667,4.185495,2.5762300000000002,1.0641,1.1462925,4.547495,3.525265,1.1361999999999999,1.401688,0.7205645454545455,2.871868177489177,4.137805,5.0571,3.3544,5.3267058333333335,0.5233484615384616,3.980705,2.78764,2.7662333333333335,2.442016666666667,3.415566666666667,2.6462233333333334,2.86195,2.64805,3.02086,3.65095,4.397205,4.56102,2.05384,5.1507,4.19057,2.97277,3.83257,3.528165,0.35844666666666664,4.82099,3.60571,3.07822,2.782856,4.244995,3.990925,2.013995,3.348915,3.915825,8.444875,4.85722,5.2393,4.698905,3.8095725,0.7915725,2.17007,2.047885,1.63743,1.88511,4.12763,5.4702,4.181225,4.66904,3.236224,2.602033333333333,0.9237183333333333,4.10798,1.288885,1.1429033333333334,3.32206,3.69141,4.63126,1.2588375,2.379776666666667,8.533726666666666,3.2438800000000003,2.9919275,0.9183075,3.647705,11.974763333333334,3.458835,4.28517,3.06677,2.963115,4.562365,5.1039,2.08474,4.182725,0.5268323076923077,4.837525,2.2257375,1.615715,1.615715,3.6384666666666665,4.051755,1.477335,3.89554,1.2746485714285714,3.60282,2.4989208333333335,3.3716666666666666,4.9609,3.704275,4.024217,2.632725,2.8618395,2.8618395,10.64311,0.677813,2.933845,2.9956866666666664,2.137495,2.031975,0.88112,1.48438,1.0699057142857142,2.073405,4.46703,2.411425,4.15904,2.08189,3.66916,3.898335,1.6826999999999999,2.019285,1.0581733333333332,5.971860916666667,1.9792125,2.15554,1.66738,1.744282,1.00628625,2.2938079166666667,3.6892,2.0608,3.113823333333333,2.5583966666666664,2.6673666666666667,1.7694166666666666,3.06521,2.4175066666666667,1.3323633333333333,1.7487633333333334,2.6533966666666666,2.464836666666667,2.4899533333333332,1.2121866666666665,2.58154,2.04722,2.2073266666666664,0.3114110526315789,0.4225258333333333,2.3358633333333336,2.2570200000000002,3.35968,3.120733333333333,2.789315,4.68293,5.65845,4.458375,4.648675,4.28426,4.04168,2.85958,3.821845,0.7211809090909092,0.06621931818181818,6.8874,0.06621931818181818,3.24027,3.060085,5.20435,3.65518,6.2678,4.63069,2.0547066666666667,2.4737466666666665,0.9448500000000001,5.072,6.3632,3.332246666666667,5.3525,1.695055,3.548045,2.0222647826086955,2.923583333333333,3.2301266666666666,4.190015,4.863858333333333,3.384625,1.9635966666666667,1.9635966666666667,4.120175,7.81452,3.69622,2.201956666666667,2.3646133333333332,4.04379,2.944445,4.91765,3.457955,0.9384077777777777,4.133725,2.3004000000000002,2.6504166666666666,4.37745,1.1068616666666666,2.443286666666667,3.901925,3.54287,4.59702,3.01292,2.88033,3.82638,3.975945,4.293955,4.69618,4.311275,3.1895341666666663,3.83642,2.803646666666667,2.4836233333333335,2.4223766666666666,3.8806666666666665,4.27113,2.90734,4.814719166666666,4.04989,3.59609,5.3032,4.51096,3.404075,1.45402,1.36325,4.19,3.285163333333333,1.6827733333333335,2.864036666666667,3.488295,2.94233,3.8712944444444446,2.7519233333333335,2.2247075,12.595141194444444,2.0397666666666665,1.7748819999999998,4.45171,1.046588,3.1084599999999996,3.4699,4.778935,2.94375,1.2048222222222222,2.208833333333333,2.5691133333333336,1.382652,4.3827,0.942115,0.942115,4.23139,2.0073933333333334,2.223996666666667,1.7914025,3.24503,4.9397,1.688935,3.015565,3.386425,2.7886866666666665,2.80496,2.10318,6.3106,5.51795,3.517015,0.6854823076923077,3.20085,3.54289,0.9994727272727272,5.4562,3.3052466666666667,8.394096666666666,4.868835,4.515035,3.602275,1.57133,3.19567,4.683415,4.449165,3.85664,3.38933,4.21717,3.02089,3.553933333333333,3.553933333333333,4.18522,2.66308,3.98457,1.899145,5.5702645833333335,4.9674966666666664,1.4800266666666666,4.513425,0.984434,5.74365,3.92631,4.99849,4.555185,3.86304,2.573205,2.4841525,3.93532,4.36099,5.00435,3.9042,1.79703,1.4078499999999998,4.31061,2.080906666666667,5.34935,3.404885,3.757615,6.8338600000000005,3.739675,4.30241,5.07545,3.543365,4.295585,8.152315,4.1367,3.274795,8.52906,3.54759,0.5813878571428572,2.0021102503052504,4.34663,0.6003013333333332,4.691415,4.09595,4.69518,4.454885,3.309895,3.793735,4.301445,4.69632,2.5638,0.6952185714285715,4.50115,4.221765,4.154905,4.29847,2.75611,4.277465,3.368205,0.627504,3.522005,3.73239,2.52395,3.2004066666666664,3.859835,2.1658625,5.416,5.26585,3.3966575,3.19313,5.326714166666666,5.326714166666666,8.259473333333332,2.0827,0.903235,0.903235,23.163413333333335,2.519475,7.560648333333333,0.3730541666666667,1.37611,2.80794,0.917361,3.85184,3.81597,1.897305,1.897305,3.888105,4.920015,3.537365,2.664165,2.664165,3.616875,4.465715,3.779545,3.477233333333333,2.049516666666667,2.5384191666666664,3.919861,2.048455,3.652795,2.6969366666666663,2.6608432142857144,2.6608432142857144,3.30456,0.8573344444444444,2.53112,1.4962466666666667,3.2520100000000003,2.7890466666666662,2.7227200000000003,2.2532566666666667,4.43745,2.40407,2.8377966666666663,4.795459,1.285708,2.27786,3.25595,2.6719500000000003,3.98655,5.461522761904763,1.2471733333333332,3.6002333333333336,2.514825,5.3696,6.47085,1.7064625,4.610567333333334,4.751873333333333,2.965332,4.568666666666666,1.025477142857143,1.8216439999999998,3.02274,3.968749523809524,1.2625,2.334805,1.690085,1.5910579999999999,2.810825,3.3960660000000003,4.897121,1.0747166666666665,1.2955342857142857,2.8794066666666667,12.599915,4.50888,2.71808,0.9148214285714286,2.4896778571428566,0.925532857142857,3.2538300000000002,4.562386666666667,5.03255,3.5516,5.7039,1.405645,3.6625,3.90508,2.7847933333333335,3.8633911111111114,2.1042466666666666,1.0848377777777778,2.5861199999999998,2.800456666666667,6.812623333333333,2.7108155714285718,2.504166666666667,0.752106,4.548066666666666,3.4771,1.169044,5.625539166666667,1.9477725,2.322583333333333,5.11505,1.2017444444444445,2.73671,1.0080636363636364,2.9693433333333332,4.21593,2.9198733333333333,2.9946333333333333,2.2538533333333333,2.22424,4.360825,4.634695,5.07565,1.6664525,4.61906,4.303495,4.269066666666667,3.27541,2.21269,4.115556,1.0851060000000001,2.8113133333333336,4.727175,2.728825,3.999235833333333,1.212675,2.7447766666666666,1.9514479999999998,1.9514479999999998,7.78312,3.157383333333333,5.194811666666666,3.357945,1.78745,2.581925,4.46669,5.614183333333334,8.282881666666666,4.675208333333333,2.5865359999999997,1.6958466666666665,1.9629963333333333,4.114536666666666,3.81453,1.47922,1.8805175,2.990783392857143,1.205535,3.0681966666666667,18.547983000000002,3.0287566666666668,2.7698866666666664,2.7433033333333334,2.9466533333333333,2.173366666666667,1.91489,2.9882666666666666,3.6356333333333333,2.433333333333333,2.66221,5.654255999999999,2.3067933333333333,4.771796,2.7160640000000003,2.708556,1.5791933333333334,3.644531111111111,2.0967075,4.020235,4.87276,3.651365,3.3123766666666667,3.24192,2.1305733333333334,3.3465333333333334,3.4364000000000003,3.324526666666667,3.3104833333333334,0.8072300000000001,5.2719,2.390905,3.0303533333333337,2.8137194444444447,1.89009,1.9956554166666667,1.9956554166666667,3.113540416666667,1.84728375,4.66916,4.156055,3.317525,4.12782,4.39353,4.4459125,4.4459125,3.856745,2.83379,4.102725,2.93425,1.612782,2.1867966666666665,4.388155,3.804205,2.655,3.446115,5.4809525,3.523633333333333,6.142267904761905,3.304885,0.768626,0.768626,3.27692,4.674385,3.85928,3.459218,2.3908333333333336,1.9071066666666667,1.4954666666666665,2.8390233333333335,5.677372,1.42812,4.164545,3.6893,4.07091,5.01195,4.855845,4.668025041666667,3.1980133333333334,2.2248675,4.15082,3.90778,2.0974975,1.1411060000000002,4.07089,2.75325,5.911056666666667,3.157806666666667,2.72683,3.44131,3.808135,3.637155,4.476225,3.007155,4.610215,3.79964,4.36855,3.57377,3.533425,3.7777,3.68256,2.7702766666666663,4.243325,3.1529,4.979045,0.6112255555555556,2.259105,1.742115,1.98795,1.80549,2.38937,2.653706666666667,1.7148033333333332,4.379125,5.57216,1.87754,3.683605,4.345695,2.404465,5.722543333333333,4.018226666666667,4.295355,4.997885,7.502421666666667,2.0203166666666665,2.82075,1.7261766666666667,2.5691533333333334,1.78892,1.87246,4.0708,3.71291,5.4085,1.0014433333333335,3.172995,4.26522,2.2197875,4.932075,3.740155,2.62957,3.6857333333333333,3.3217,2.085275,1.778774,2.7709,3.20925,3.369625,2.0258425,2.4953885714285713,2.4953885714285713,3.54495,3.448275,19.821869702380955,1.0658333333333332,5.227461666666667,1.795795,1.8993666666666666,3.528915,3.864155,1.903355,3.91784,4.83526,1.2163566666666668,1.2163566666666668,1.1900199999999999,1.7953999999999999,2.23276,3.2170433333333333,4.339203333333334,3.17705,3.3274000000000004,0.4622710526315789,3.3715277192982454,2.016966666666667,2.280825,4.6813775,3.563745,4.067415,3.668625,4.43812,4.53202,2.12817,3.372055,5.817613333333334,2.34077,3.618355,5.1381,2.158735,4.67333,5.74905,1.22617,1.8245460000000002,3.4794666666666667,0.6943,3.1106033333333336,2.98176,4.795835,4.962235,2.838383888888889,7.530435000000001,2.9468,2.5940933333333334,0.43967470588235297,4.449385,5.173394047619047,2.9715880952380953,5.37935,3.867475,2.5275162222222223,1.6948,5.25770375,4.22533,4.026505,2.831475,1.975135,3.447825,3.8554999999999997,2.978203333333333,1.887255,3.934024166666667,5.8439875,2.643325,3.98214,3.707915,4.001545,1.4841857142857144,1.4841857142857144,3.228476666666667,2.7745800000000003,4.26585,4.625545,6.555,3.513715,2.69355,2.1844925,1.40613,1.2969142857142857,4.801375,5.3972925,4.979775,6.06585,4.168495,6.6262799999999995,3.79938,2.8679466666666666,3.911068,2.1185633333333334,3.0242925,1.531942,4.48673,2.401616666666667,3.89742,4.91122,4.245565,2.8156133333333333,2.9235666666666664,1.3800342857142858,2.3460625,3.7312666666666665,1.7147,0.608984375,3.0270166666666665,2.5524533333333332,2.2598433333333334,2.1337566666666667,1.8116675,1.464404,0.6841381818181819,0.6841381818181819,3.4492666666666665,1.7109475,2.188875,2.958565,5.6629,4.071425,5.77895,4.08344,4.315425,2.176086333333333,1.3357866666666667,2.77512,5.40325,0.97645,2.5678799999999997,2.948195,3.0246,2.66391,4.31988,2.709205,2.003836666666667,1.0422171428571427,3.32163,8.440505,3.2513,1.4781585714285714,4.21569,2.92687,2.76686,3.486055,2.850695,1.7711366666666668,1.0309225,3.861125,2.5575191666666663,2.3084333333333333,1.6966933333333334,2.3124333333333333,2.28455,2.661513333333333,2.80672625,1.4100233333333334,1.8745833333333335,1.0862475,6.1887925,5.8261,5.9473,4.016905,4.481375,2.9175633333333333,1.607268376068376,4.592525,5.025,2.654075,4.97437,2.04255,4.59302,0.946548888888889,4.14068,3.90977,1.8914175,7.82703,3.603,1.86025,1.79679,1.741035,2.527775,3.2431900000000002,1.1779337012987012,2.83394,5.6069,3.551995,3.839405,5.49455,5.345,5.7514,0.82293875,3.986815,4.52698,4.059145,4.8416,3.9722983333333337,4.49486,4.8333,2.936275,1.6204766666666668,1.6204766666666668,5.01685,5.214171666666667,2.87219,2.55444,4.05013,4.54011,1.503238,4.132545,5.0137,3.621895,4.048185,2.9232133333333334,2.537776666666667,4.809035,2.3534963749999998,10.68539598275744,1.9946433333333333,0.7604375,2.607746666666667,1.632475,2.48353,2.017205,1.7734079999999999,2.7596233333333333,4.83528,5.2058,2.794833333333333,1.5863866666666666,6.104695238095238,1.4720571428571427,2.7878133333333337,0.5015,4.118373333333333,5.50925,3.40869,4.50175,11.600985,5.0398,2.9189633333333336,3.323316666666667,4.151825,2.9246266666666667,4.3482,0.855535,1.0519033333333334,0.8225281818181819,5.597,4.01879,1.655048,4.563876666666667,4.34762,6.5997,4.745085,4.94133,4.36665,6.0437,4.006015,5.0594,3.581425,1.1513740000000001,3.75897,5.4825,2.71304,4.115895,2.644525,2.484405,1.2044,5.133,3.94411,1.2377725,3.3588,2.9342699999999997,2.5225133333333334,2.43851,2.5296366666666668,2.8968000000000003,0.6949127272727273,2.2719666666666667,2.688806666666667,2.6381466666666666,1.9986499999999998,3.078796666666667,2.17407,1.6704966666666667,2.2381025,1.9037925,2.0647,3.3661666666666665,2.6246300000000002,0.619161,2.596373333333333,3.41838,4.700805,2.3021266666666667,3.721735,5.1916,5.0926,3.412695,3.987695,1.3256514285714285,3.338575,2.5118605555555558,4.4925999999999995,2.71049,4.30797,5.35625,4.669045,4.070935,4.1162,0.985034,0.985034,2.1958590384615384,1.6108275,4.02324,2.447783,2.447783,4.79065,6.2973,3.0657,1.154425,1.5247857142857144,5.69825,3.691955,2.32055,3.32678,2.946315,3.27429,2.32055,4.36043,3.095035,2.8816145833333335,2.826335,2.171855,3.384215,6.36305,2.84234,4.250155,3.682525,6.526,6.274,6.49985,6.49985,5.1127,4.688495,0.5454915384615384,4.89317,4.52517,2.99282,2.62352,8.100935,2.7138500000000003,3.74722,3.75771,2.53999,4.51491,2.089765,3.50873,2.9727099999999997,3.4946,2.4296233333333332,1.385616,1.385616,3.636205,3.792255,5.16125,1.651352,1.3906459999999998,46.73890375,2.57243,0.81134,3.0502000000000002,1.74947,3.1775633333333335,2.7236433333333334,2.9438099999999996,2.778555,2.64098,1.9278033333333333,0.98137875,4.123005,3.3526,3.576275,3.979165,5.0633,5.01085,5.18055,5.25465,5.17665,4.73268,5.27415,6.2928075,4.64747,5.24915,2.1435625,3.669115,6.68915,4.990125,3.133045,3.954175,2.895185,2.438,3.932945,4.507465,2.8656633333333335,3.8955333333333333,1.61448,4.491085,1.392276,3.392645,3.910655,3.577585,6.511570000000001,4.11368,1.95533,3.83318,3.77642,4.15626,0.9283025,2.77383,2.88905,4.385419761904762,1.2003975,4.60752,1.32843,5.7383,0.7601722222222222,3.850428,9.6977775,4.196445,3.66033,3.10118,1.8716166666666665,4.183485,5.28265,3.0247933333333332,4.49824,9.066282777777777,3.4084333333333334,1.8736466666666667,2.84402,2.6908,2.7729266666666668,2.725457916666667,2.43695,2.58145,3.054233333333333,2.6869033333333334,3.0902,3.447925,2.27217,1.7684600000000001,4.735401333333334,4.000233333333333,2.65202,4.985510666666666,2.7335433333333334,1.033635,2.022585,2.9261533333333336,5.235240714285714,2.978,2.068493888888889,2.068493888888889,1.6280925,1.8052725,2.17984,1.911808,5.781992499999999,4.2710825,1.90377,2.9443900000000003,3.540566666666667,1.98483,0.6102858333333333,2.56323,2.0006225,0.597883076923077,4.278415,2.5638,2.594025,3.72389,3.537443,2.4398633333333333,1.59887,1.1352766666666667,2.099965,3.723985,3.850995,4.1050725,2.7624366666666664,3.9628,3.63867,1.084681818181818,9.977715,2.88565,3.315545,1.3012,2.7150433333333335,2.2849975,2.2849975,2.2849975,5.20945,5.4393,1.674765,4.85724,1.458152,5.642333333333333,1.4815939999999999,3.86591,4.297435,4.025045,4.868735,4.372865,1.981355,8.3859375,3.70478,4.88829,3.610645,4.06883,3.334,3.0668433333333334,3.85597,2.62669,4.453408571428572,4.5708424999999995,1.7027375,4.032945,1.7027375,3.561965,4.434571666666667,5.2064575,4.434571666666667,1.7944933333333333,5.67865,4.449475,4.24505,2.5312266666666665,2.863246666666667,4.193405,3.229915,5.17745,0.5207142857142857,2.89052,2.9418333333333333,4.979113333333333,4.73717,2.2908775,4.659705,6.400338333333334,3.526245,2.77894,3.06093,2.1334933333333335,3.77929,4.076895,4.58071,2.49696,3.77009,0.881119,5.69375,3.358675,4.081165,2.44899,3.03394,2.2855333333333334,2.6365633333333336,2.7777766666666666,2.8365299999999998,2.910625,2.4623675,2.4623675,4.4101675,2.83062,4.671945,11.3258825,0.9412911111111111,4.15874,2.4050933333333333,2.4113166666666666,2.6302833333333333,1.4404625,7.3774215,3.3697,3.62059,3.588891666666667,2.2792266666666667,3.8057,4.149929805555556,2.01362,0.4199161111111111,1.471306,1.4639075,4.703315,2.98751,3.31698,3.7537483333333332,3.410410833333333,2.2565099999999996,4.987825,4.610075,3.835025,4.386175,2.27689,3.67988,2.5976399999999997,5.566166666666668,3.330905,4.86866,3.99904,3.727035,4.214075,1.94332,3.882185,3.727535,3.0795933333333334,3.617785,3.03513,3.2349,4.06982,3.60953,2.7099766666666665,4.406685,1.36855,3.51605,2.90454,4.400395,4.158585,3.68209,4.715065,2.440485,4.439335,4.970935,4.15078,3.092216666666667,2.20831,2.849445,2.39972,0.8346933333333334,4.54295,2.089885,3.46215,2.75146,4.181715,3.301605,3.026425,2.870185,3.895185,4.590236666666667,3.912185,2.741115,1.6522533333333334,3.45924,2.62684,0.9121477777777778,4.234915,8.557134999999999,3.612505,3.637825,3.866905,5.05695,3.592895,2.24717,4.11384,4.077,3.119315,3.318505,3.60802,0.68415125,1.2421900000000001,6.711530000000001,1.836,2.747385,5.07396,2.490835,2.37745,2.689745,7.32917,2.582345,3.88639,3.971975,0.7469633333333333,3.57308,2.620285,3.863025,3.8736,5.69559,0.667646,3.28247,9.91016,3.29511,1.0891011111111113,5.0399779166666665,4.744265,5.16125,4.13288,4.41571,3.28132,2.64786,7.25436,0.791898,3.59542,3.906915,3.10309,4.29942,2.40337,4.18063,1.7328000000000001,4.046965,3.90577,3.953135,1.63858,4.45005,4.608025,2.3396275,2.02476,2.0147375,1.169044,4.320035,3.4376035,1.320528,7.8476099999999995,5.7227,4.132505,4.03294,3.472915,4.31272,1.445757142857143,4.164895,4.05833,5.26365,3.848135,2.42996,6.485040876068376,0.9496975,0.9496975,2.5103066666666667,0.98576,4.20878,2.79147,1.01005,1.7200233333333335,0.4321983333333333,6.09837,1.0435475,2.79765,3.567235,4.089285,3.32398,4.06403,5.37085,5.6923025,3.34935,3.22118,2.618795,3.86819,4.328455,4.24159,4.04363,3.674945,6.1325,4.410105,4.247513333333333,5.308596,3.59529,3.348085,2.29187,3.348085,6.955694,40.92618276731602,3.750565,3.53348,2.9208,4.202995,4.34879,3.420525,3.56549,3.86898,4.42302,4.048255,1.5576533333333333,4.502755,2.74953,4.39757,5.1031,5.1109,2.4826433333333333,4.26407,3.929415,3.309215,1.324642,0.6383500000000001,1.7300460000000002,3.6097,2.8324233333333333,1.274725,2.8142866666666664,2.5429233333333334,2.53584,3.6085666666666665,2.9639900000000003,1.288278,2.6363666666666665,3.7959,1.8702818146718148,2.9112733333333334,2.983968,2.86346,2.58457,3.2988199999999996,1.1919444444444443,3.630705,3.987995,1.193255,1.193255,1.193255,1.193255,2.889842727272727,2.1319399999999997,2.613885,3.31863,4.846315,4.775315,4.000235,4.34132,5.435,4.63729,2.397075,5.87615,4.14913,2.87892,3.812495,2.93441,4.1347,4.172015,0.6955523076923077,1.4182014285714286,1.6454333333333333,4.179745,3.82403,4.483175,4.050075,6.0377366666666665,2.317876666666667,4.558495,1.4840516666666668,3.482785,4.8995,1.5962633333333331,5.0232,0.6842075,4.19065,1.13378,1.137195,3.740945,4.02932,5.0196,4.8216,5.9747,4.47314,1.5232160000000001,4.18589,1.50415,3.36984,3.03587,2.5275162222222223,1.9416825,2.93532,1.2868316666666666,3.574955,4.673395,2.896686666666667,5.70725,118.97130879960316,0.5154133333333334,4.852565,2.3395066666666664,4.80214,4.074555,3.21936,1.491935,0.2925433333333333,2.89485,3.75301,5.34905,3.642005,3.905315,4.382625,4.186515,4.476185,8.409303333333334,0.7014044444444445,2.78871,0.96946,10.525036,2.98618,3.632515,0.8635977777777778,2.434915,2.80229,2.1251625,3.3307366666666667,3.1099,2.63749,4.458410000000001,3.0196233333333335,2.3243766666666668,2.2972233333333336,3.27655,3.50445,3.016375,3.656865,3.753745,3.372065,2.3252133333333336,3.815175,4.072125,3.217835,0.9529788888888889,2.5617366666666666,4.458410000000001,4.878545,5.42045,4.095005,3.461025,1.881285,11.256170000000001,4.02415,2.66409,4.172935,5.24935,0.5217773333333333,0.5217773333333333,3.995805,3.995805,3.173515,3.5769333333333333,1.8538536363636364,0.5509324999999999,3.02933,4.36346,4.05954,3.333085,3.861405,5.3895225,4.57962,2.1523525,4.687355,2.08397,2.696925,3.8627475000000002,1.78616,2.136535,0.5176314285714285,1.2882074285714284,1.2882074285714284,1.962395,4.396095,4.47201,4.792515,6.4963619999999995,2.681885,3.11622,2.01548,1.95796,4.032391666666666,3.51864,4.629293333333333,2.401995,4.629293333333333,4.08394,3.570155,5.96705,4.084405,2.4680166666666667,1.9352733333333332,2.4607,1.38934,1.44958,1.5112175,1.9017625,1.675205,1.5509675,3.8502666666666667,4.34874,2.59992,6.5856,2.8224400000000003,4.279395,3.4,4.13724,2.9351000000000003,2.7994533333333336,5.859159999999999,3.3867,4.51324,3.0508866666666665,1.47624,2.5239266666666667,2.57384,2.2179366666666667,6.15715,4.3940325,4.488915,12.240080848804704,0.7045766666666666,1.9861657499999998,2.09155,1.590144,1.2134085714285714,2.488355,2.3350125,2.4350325,2.3750825,0.7187915384615385,1.9006275,0.5073884210526316,4.208945,2.053165,3.559055,4.123885,2.4028075,5.5290075000000005,3.848235,6.80494,3.885685,2.87318,3.001085,4.4646,4.8925,2.4652373333333335,4.396365,2.017145,2.017145,4.759795,3.600355,4.03141,4.28878,3.311123333333333,3.97155,4.70966,5.2623,4.57577,4.484865,4.737805,4.159945,2.330465,4.705555,1.1681516666666667,4.45732,4.597045,2.6432166666666665,2.1968633333333334,4.68063,1.4777183333333335,5.0384,2.02135,5.791590615942029,3.92916,4.138165,1.61751,3.4654325,3.4654325,12.10681,4.00554,3.728935,1.126805,4.274979,2.1839325,1.5091175,2.24786,1.68443,1.9604575,1.666562,3.16719,5.72795,1.8240725,4.772855,4.593740833333333,5.40975,2.08871,2.482235,3.00329,4.231035,5.3084,4.006885,7.01319,3.0934333333333335,2.790993333333333,0.35708,3.70741,4.698895,3.231113333333333,6.118803333333333,2.5785466666666665,3.0774166666666667,1.312975,1.5628683333333333,0.608984375,1.471306,2.986425,1.5181266666666666,1.4912733333333332,0.62285625,1.4162839999999999,4.593045,2.46949,0.5414507692307692,1.59393,1.58283,1.6188960000000001,1.3151416666666667,1.82988,1.5628683333333333,2.42608,1.4162839999999999,1.4162839999999999,0.5414507692307692,1.5516,2.46356,1.2625,2.48168,0.5414507692307692,2.5682,2.46356,1.2035533333333335,1.2035533333333335,1.2035533333333335,1.8220859999999999,1.1639325,0.5414507692307692,1.156974,1.06119375,0.9654233333333333,1.77049,2.64395,0.8217458333333334,1.93383,1.482557142857143,0.5414507692307692,1.7538,1.5628683333333333,1.9696833333333332,1.7834833333333335,0.8741720000000001,1.9696833333333332,1.06634,2.3396275,2.3999125,2.420995,1.06119375,2.08708,1.2868316666666666,1.2868316666666666,0.872639090909091,0.872639090909091,0.872639090909091,1.312975,1.5628683333333333,1.482557142857143,1.59393,0.9354714285714286,1.7834833333333335,1.496438,1.519158,1.9939879999999999,1.312975,2.71808,12.26152,0.62285625,2.6120200000000002,1.6684666666666665,2.3633275,0.925532857142857,0.925532857142857,0.5414507692307692,0.8802933333333334,1.464404,1.482557142857143,1.80662,1.7834833333333335,1.1035644444444443,1.1035644444444443,1.6579039999999998,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,2.792816666666667,1.06634,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.37380727272727277,52.76433641269841,1.5828225,1.4856633333333333,1.482557142857143,1.6684666666666665,0.9354714285714286,0.621835294117647,0.752106,0.752106,0.752106,0.752106,4.248366666666667,15.583272916666665,3.3097933333333334,0.5879836363636364,1.496498,1.496498,1.496498,0.5879836363636364,2.986425,0.5414507692307692,1.7538,1.4912733333333332,2.46422,1.06634,2.2908775,1.06634,1.413732,1.413732,2.0691666666666664,2.0691666666666664,0.5414507692307692,1.9182839999999999,1.9182839999999999,0.9200454545454545,0.20345611111111112,2.986425,1.3662033333333332,2.514825,0.5879836363636364,0.5879836363636364,0.5879836363636364,0.5879836363636364,0.5879836363636364,1.6684666666666665,0.37380727272727277,1.06634,2.034735,2.034735,2.4841525,2.7457933333333333,0.6362761904761906,0.6362761904761906,3.3701666666666665,4.091066666666666,1.2275057142857142,3.20175,0.9507899999999999,2.441175,2.0827,1.1068616666666666,2.8936466666666667,1.7786775,3.19313,5.3126,2.30938,1.1789555555555555,4.227565,4.261185,2.5726133333333334,1.72789,2.2818643076923077,4.603385,1.8254861111111111,2.81475,2.9092533333333335,3.0263500000000003,2.502635,6.1370233333333335,3.88682,0.20345611111111112,2.8838033333333333,4.68574,3.30144,4.47548,4.276175,4.133885,2.6868733333333332,1.814998,4.18696,4.610805,4.372925,4.667485,5.0617,3.06492,0.7215533333333334,6.847255,1.5859183333333335,2.91308,4.40011,2.6188233333333333,2.6188233333333333,0.8380436363636363,1.9416825,3.88865,3.076735,5.0225,3.999665,4.571215,5.06445,1.0275785714285715,4.680655,5.671,6.532945694444445,2.367906666666667,4.167845,4.00631,3.99621,3.70905,3.65751,4.379115,6.2109974999999995,5.18865,3.964486666666667,3.762955,4.424911666666667,7.062787,1.8868775,2.117895641025641,2.9662133333333336,1.7990466666666667,2.7560966666666666,1.8759833333333333,5.39005,2.921276666666667,5.91785,1.806582,4.692675,4.163535,3.295845,4.449985,3.82308,2.5590800000000002,2.7842333333333333,2.8404966666666667,2.5957233333333334,2.5671666666666666,1.6780666666666668,2.7408333333333332,2.886206666666667,2.21808,2.21808,4.54401,2.995293333333333,2.0874,2.95256,2.0615133333333335,2.5948433333333334,3.12669,2.724833333333333,3.0743533333333333,5.2151,3.802655,3.65245,3.2032413333333336,3.2032413333333336,3.88505,3.149696666666667,3.55482,4.541895,4.09568,3.439255,3.40739,7.43517,2.0141275,1.966805,3.57435,3.32658,1.3151066666666666,1.3151066666666666,3.63664,1.89243,3.9837526666666667,3.797435,3.60055,2.1570635,2.1287850833333333,0.5469674999999999,3.166955,4.01146,1.8447825,2.40728,4.29016,1.5544200000000001,4.33059,1.2905766666666667,0.343035,0.5014857142857143,21.205467564484128,0.5014857142857143,0.343035,0.6599364285714285,9.66431,2.684336666666667,3.275975,3.908465,3.454505,2.98615,3.999322142857143,2.31054,2.35164,3.73643,3.319155,3.980045,4.20957,3.569045,2.314405,3.23582,3.39049,3.84771,3.214165,1.183651,1.183651,1.183651,1.183651,3.455465,3.001485,3.13537,1.9363633333333334,1.0643166666666668,2.570525,3.84838,3.603465,2.94502,3.185085,2.523205,2.4989208333333335,4.00794,4.23211,1.1291833333333334,2.6300966666666667,1.0587,2.5952100000000002,1.6936033333333331,3.8945333333333334,4.671265,2.518473333333333,3.418375,3.99884,0.8836786507936507,0.3021064285714286,0.3021064285714286,0.5815722222222222,0.3021064285714286,0.3021064285714286,0.3021064285714286,0.5815722222222222,4.684555,7.344225,3.815545,0.549545,3.65102,7.740425,3.316145,2.9941866666666663,1.1797333333333333,4.17375,5.14135,4.20735,5.0544,1.6916360000000001,4.493635,2.09259,2.41047,3.33638,5.12635,0.8679585714285715,0.8679585714285715,3.631965,2.891856666666667,2.302645,3.54412,2.47494,6.6256,3.626225,6.3079,6.1653,5.5879,3.178155,2.089465,4.56785,3.72556,2.090005,4.0384,3.035385,1.9098425,1.2076083333333334,4.2176,3.66764,4.8763966666666665,6.184946666666667,1.4561849999999998,4.065285,1.25146,2.5882633333333334,3.21067,3.78043,0.3691307142857143,3.376445,3.88291,0.9041539999999999,2.3751433333333334,7.409643333333333,3.20217,2.225465,5.493829,4.444985,3.63682,1.3051283333333332,5.103916666666667,2.493743333333333,3.0490833333333334,3.5055,2.53049,2.53049,6.1148,6.1148,3.5440392857142857,3.5440392857142857,8.11649,3.5440392857142857,3.5440392857142857,4.20881373015873,6.7571,3.312515,3.2971608333333333,2.9728066666666666,4.20085,3.667205,3.05332,3.18704,4.624575,3.1447066666666665,2.7235866666666664,3.4271666666666665,2.31979,2.743085,4.736385,7.480589999999999,6.300065,4.817985,3.82118,4.038775,6.717408,5.20965,4.383325,3.71587,4.41175,2.2279466666666665,2.38836,2.21718,5.1585,5.36465,4.5880075,4.10378,2.33211,2.3046633333333335,6.732736666666666,1.8220859999999999,2.60146,3.3373666666666666,3.3373666666666666,3.23571,5.03125,0.7566516666666666,3.4547000000000003,3.62465,2.766996666666667,9.904544999999999,3.83566,2.8476433333333335,2.410153333333333,4.528995,5.86575,2.860245,5.3169,2.629496666666667,4.602195,2.963354285714286,4.041825,5.1495,4.614605,0.9903066666666667,3.389866666666667,0.9984375,2.5211200000000002,4.933339676470588,7.96512,2.5573166666666665,3.209016666666667,6.480828333333333,1.639818,4.426315,5.3755,3.411315,3.868425,2.19671,4.479665,2.2577325,0.45302846153846155,4.94419,2.87729,3.3802,4.53186,4.755095,5.33515,6.219205,4.353125,5.53375,7.362667500000001,55.33322833333334,4.58241,3.911615,4.72989,5.87175,4.43192,4.992865,4.0602,4.65479,1.9473525,3.742385,4.016395,4.676155,2.652225,5.06765,3.93554,1.6627120000000002,5.2437,6.1877,6.855703333333334,5.30165,3.3375,4.44189,3.35167,3.25356,3.68416,4.393505,3.900295,6.29399,2.724675,1.0837471428571428,2.486985,0.8029059999999999,0.8029059999999999,3.16107,0.8029059999999999,2.4741447142857145,2.4741447142857145,3.2824207142857142,4.387563999999999,4.810954714285714,2.486985,4.8451575,2.7611875,1.3940700000000001,5.49765,2.186425,6.387943333333334,5.096193333333334,10.628105606060606,2.9913933333333333,2.55306,0.2095339393939394,1.989935,2.048903333333333,0.83528,1.1911116666666668,2.8522166666666666,2.2011825,2.628,0.5932540000000001,26.870594583333332,1.85975,0.7811307692307692,2.45063,2.45063,0.39352777777777775,1.6937,3.2308675,1.3009925,1.61833,1.66935,3.99936,2.96586,2.04326,2.43843,1.1749866666666666,1.8607925,1.4338566666666666,5.134312,3.491075,6.669340833333333,2.349295,3.3133233333333334,0.91863,2.850295,5.08065,5.9728449999999995,3.1118133333333335,2.251583333333333,5.206521666666666,1.905095,2.16499,4.24783,1.31276,3.5225666666666666,2.3346533333333332,4.829715,4.39417,5.7151,3.070445,4.012957500000001,4.012957500000001,5.05585,2.245825,5.29155,2.7215433333333334,1.6335375,3.163965,3.38983,5.103742499999999,3.943425,2.849403333333333,2.6591366666666665,2.80697,0.9512571428571429,5.06045,0.829125,5.454363333333333,4.46153,7.321680000000001,4.07015,4.432405,4.058315,8.2259,4.164875,4.238905,1.1976900000000001,0.6960385714285715,4.380435,3.75207,2.17998,3.38714,3.25936,4.33239,2.30633,4.743695,2.3427466666666668,5.1787,4.811745,5.50455,4.1384,4.73495,3.178155,6.4934325,3.442605,4.403645,3.4811,4.58558,5.319916071428572,0.590397142857143,3.5808,1.6781,0.5731088888888889,3.993735,2.455555,0.93142875,2.011825,6.09847,3.737565,2.30854,2.66389,2.7300633333333333,4.851575,3.882625,1.5748388095238095,3.978465,2.200536666666667,3.6618333333333335,4.027005,5.11435,2.9344083333333333,3.5624333333333333,3.6949,1.99818,7.33264,4.779685,3.99822,5.1049,2.1429025,4.22911,4.569,3.52928,3.87138,11.37215,3.25111,4.399218333333334,4.61731,4.570565,2.3100425,4.15939,4.03104,4.580005,3.2872266666666667,4.092095,1.311515,2.971346666666667,3.53367,3.70052,4.435265,1.77679,3.779845,3.134726666666667,5.44265,3.0213133333333335,1.65272,3.77723,4.315545,1.0427175,2.920045,2.778613333333333,4.343260666666667,1.627394,1.7731033333333333,1.1437575,3.372655,5.40365,5.542445000000001,3.66543,2.994435,2.269665,1.99035,1.976665,1.73375,5.8988,2.999095,1.8907225,0.8781153846153846,18.990971942307695,2.94579,2.8280624999999997,4.096808333333334,3.9587420512820515,1.2120333333333333,2.676544,2.921278863636364,1.388082,1.9508933333333334,4.383825,4.55735,3.3901475,2.885285,5.2946,4.629745,6.889517499999999,4.509024166666666,4.388775,3.497955,2.61659,3.93604,4.02275,3.5452333333333335,3.890035,1.7568675,4.71272,8.00305,3.39194,2.870715,3.422695,0.62788,3.0525466666666667,2.0066133333333336,2.34213,4.48393,2.997185,4.87829,3.726975,3.106145,2.13455,1.80278,0.7835479999999999,1.4804733333333333,1.32365,3.899465,3.84619,4.40364,4.55179,7.58105,2.31474,1.47519,2.37977,7.5799183333333335,3.383775,2.838325,3.005545,4.150295,3.1269,3.56473,1.3966480000000001,4.77944,4.645525,4.34244,3.9657,3.431415,4.117,4.017075,3.761595,4.39936,5.01525,2.12354,3.20463,2.99794,5.31435,2.963475,4.204774499999999,2.7805,2.94832,2.230913333333333,2.224883333333333,2.15593,2.471535666666667,2.471535666666667,2.0045433333333333,2.8662233333333336,2.40145,2.47315,2.0317866666666666,4.07703,2.3193233333333336,2.758426666666667,2.929676666666667,1.7492433333333333,4.44041,2.808045,3.941475,2.129443333333333,5.20285,5.1208,4.7260011111111115,2.69086,2.750435,2.56899,2.19844,2.098595,2.92765,1.8624375,2.621725,2.71745,7.040513833333334,4.2053650000000005,3.369905,0.611353125,4.232415,3.902425,3.98107,3.33801,4.08467,3.7218191666666667,6.2626,4.3947,3.16744,2.73549,2.1159713333333334,2.5145,1.561022,1.6922540000000001,1.486946,1.9845279999999998,1.739865,1.1097183333333334,4.212897428571429,0.5414507692307692,0.5456033333333333,1.855404,1.5209183333333334,1.425238,1.3617833333333333,2.276603484848485,1.4517583333333333,1.621636,0.60035625,165.48132544568054,0.498082,2.13286,1.126272,1.2966275,2.14124,1.5299825,1.94808,2.24766,1.8106875,6.573,3.065215,3.2438304761904764,2.2287966666666668,3.281075,1.3395933333333332,1.3395933333333332,5.741235,0.48970833333333336,2.07199,3.1552100000000003,2.9786133333333336,0.802039090909091,0.5396211764705883,1.1308137435897436,0.9893545454545454,2.2420725,3.87962,1.9179225,2.144655,2.18882,4.740832944444445,1.0057122222222223,4.39037,3.470145,3.525885,6.73174,2.0333200000000002,3.005745,2.3905,3.6974039999999997,2.566355,2.521175,2.64267,3.097155,4.278905,3.120125,6.3355,2.15995,2.711455,3.54285,1.7886,2.352865,2.820475,3.142985,1.891685,1.71017,2.298155,3.97537,5.02535,2.579705,3.04275,1.4442,4.001425,3.6842333333333332,3.8015666666666665,2.996935,24.3773952736569,2.6907406666666667,2.75552,3.0265066666666667,3.4858,3.068493333333333,5.538270000000001,3.1270666666666664,2.2577933333333333,3.16859,3.423966666666667,2.22301,3.225566666666667,3.2387366666666666,2.9817766666666667,1.7195833333333335,1.6009674999999999,0.5887749999999999,2.3016166666666664,1.9249425,0.237653125,2.179116666666667,2.49938,0.237653125,0.237653125,2.106803125,0.237653125,0.237653125,0.237653125,0.237653125,2.7102466666666665,2.4793166666666666,0.5590330769230769,2.9916914285714284,1.45516,1.925826,5.64895,4.3337,5.879745,1.93933,4.86852,1.990125,2.5083733333333336,1.1196528571428572,5.7056466666666665,2.8553200000000003,6.050167500000001,0.8225691666666667,1.4883025,4.543825,4.65946,34.48774759931735,1.442536,1.4254533333333335,2.2542233333333335,2.20022,0.872639090909091,2.3316033333333333,2.2159400000000002,2.7323533333333336,1.8992133333333332,2.488113333333333,1.9054483333333332,2.5176133333333333,2.4169966666666665,2.2577599999999998,2.7227266666666665,2.4575566666666666,3.93139,3.1654133333333334,1.1089714285714287,3.815895,4.06662,20.00745211111111,2.7895800000000004,3.32404,2.6309299999999998,0.944284,3.218712,1.7356551111111111,3.218712,2.3448533333333335,2.4991666666666665,3.0032266666666665,1.464515,1.879105,4.120805,4.08701,4.85873,4.372225,1.617786,4.949555,1.5544125,4.82132,4.009865619047619,4.078545,0.7505136363636363,2.0351475,2.07246,2.7050919999999996,3.372585,1.0520575,2.885825,1.892502,2.063003333333333,1.081816,1.081816,2.4295833333333334,2.61344,4.28615,28.328258333333334,6.745975,1.8502599999999998,3.590206666666666,0.37803466666666663,5.7471875,5.7441,2.682166666666667,3.515435,5.5403275,3.458575,1.08561875,4.2232,1.279222,2.570505,4.31193,4.537175,2.2411,3.325805,4.25376,2.648225,2.747472,4.12929,1.3118766666666668,2.4487195833333333,3.738655,5.19215,2.5261133333333334,3.0708366666666667,2.706846666666667,3.876475,4.047125,4.00657,4.248366666666667,1.92519,6.24984,2.58391,1.752906,4.21104,5.97403,4.01658,3.12053,0.72620625,3.080185,3.64342,2.141825,4.605630666666666,2.828655,4.00126,2.8683433333333332,3.3810333333333333,2.666955,3.1593199999999997,2.835103333333333,3.0565200000000003,4.11162,5.57985,3.689245,1.70264,3.879665,4.20338,1.970445,2.227975,1.7393575,3.916538333333333,4.564085,5.043846041666667,4.015735,3.1642833333333336,3.782185,3.17477,1.3553916666666668,3.08806,3.12462,3.19621,4.51567,4.46585,4.003805,2.938795,2.03322,1.664415,1.549585,3.61784,2.504715,2.26169,3.38343,5.04175,1.589955,5.04865,1.4165028571428573,1.9233375,3.259605,3.106105,2.93784,3.65828,3.092415,1.76473,0.9739076842105263,3.13778,4.380925,4.292845,8.764948333333333,3.011286666666667,3.0560899999999998,1.6884466666666667,2.7428733333333333,2.6664233333333334,1.124345,2.787126666666667,2.5654,3.0774000000000004,3.9553,2.9612,7.106695,2.9438133333333334,0.7559527272727273,1.7529833333333331,3.50183,3.30512,3.61073,3.468666666666667,2.453029,2.736665,2.822585,1.9729054285714285,3.802315,2.3432705555555553,3.485885,2.07391,4.609245,5.0547,4.493495,3.366525,3.54124,0.9052744444444445,4.509795,2.7822566666666666,2.830106666666667,4.165075,2.65286,2.65678,0.5426842857142857,0.5426842857142857,4.11686,3.929215,6.9213,3.11792,4.511955,3.67482,3.225025,4.7839,3.903505,1.04596125,3.747705,2.5326166666666667,4.252448333333334,2.90436,3.077585,1.7540766666666665,3.242893214285714,2.3231333333333333,2.808526666666667,2.56203,2.90846,2.0472266666666665,22.16533911001318,3.82656,3.99522,4.037125,3.25983,4.332695,3.462695,4.554345,4.05646,4.02227,3.4031,4.204485,2.36893,2.699006666666667,2.84986,3.000645,2.660696666666667,4.213025,3.576135,4.98235,4.9728,4.204035,1.38173,1.389808,1.389808,4.85902,3.63117,2.4786,2.29827,2.72388,3.195075,3.88662,7.415651666666667,3.1386766666666666,3.4252333333333334,2.9984616666666666,5.30435,1.5320766666666668,5.9106725,2.38366,2.7960833333333333,1.7614325,3.485295,2.80222,6.35558,3.405915,2.585205,4.130265,4.043342,1.4424225,2.4999266666666666,1.61993,7.1419630000000005,4.09343,6.532159999999999,2.1517825,3.78349,3.84486,3.832275,5.10835,3.5248000000000004,3.5248000000000004,2.100305,4.312765,4.92465,2.290035,6.37318,1.469685,5.58855,8.639516666666667,3.7673666666666663,4.21768,2.37332,1.99026,0.5595525,4.380595,2.51055,2.647975,3.5174380000000003,2.234955,2.48625,3.547435,5.64995,5.15655,5.2829,4.630585,4.15196,2.242815,1.0451181818181818,2.94689,3.580175,2.7888,5.13385,3.9861,3.162075,2.569395,1.8245460000000002,4.163885,1.02174625,5.10755,0.9833666666666667,5.4892,3.38264,4.95655,4.97994,3.044165,3.196365,2.8856,2.35129,4.25364,3.015905,2.47745,3.726135,4.72871,5.573886666666667,4.38807,1.44292,3.436175,2.907315,5.57539,2.02384,2.02384,2.945456666666667,2.406356666666667,2.39563,2.75712,0.799921,6.2148,3.19929,1.83292,2.539895,2.833905,3.849275,2.8274,3.7347,5.08165,5.2033,4.815185,5.86635,5.68105,1.2922,3.35839,1.1209166666666668,2.445625,4.341833333333333,2.84286,3.24866,3.31823,4.951035,3.052805,0.4490921052631579,4.403645,4.19165,4.792935,3.384415,4.82326,5.33815,4.345165,4.20072,1.70078,4.50768,2.00022,4.2679,4.2679,6.54815,5.79625,5.4388,4.85634,2.832435,1.5320766666666668,3.942905,1.9509966666666667,1.6198966666666665,1.9894,4.379185,4.197255,4.19118,8.14138,1.5534316666666665,4.98281,1.3061450000000001,3.189335,5.9296,1.955425,4.68594,2.4712533333333333,4.62825,3.33416,4.807385,3.332246666666667,4.23966,4.16911,5.7412,4.244445,3.724715,3.80056,5.99025,4.177025,4.48369,3.7651,3.932575,7.165701666666667,3.43977,7.4209,3.57095,5.6115,6.046797954545454,4.140555,3.623645,1.7120425,5.32635,3.922265,0.8148488888888888,8.97995,5.9876,5.1096,3.033360833333333,5.0045,2.93259,1.739602,3.991175,1.1291833333333334,5.9762,2.7766,4.555035,5.48235,4.413635,4.092025,2.0848833333333334,4.49409,4.86628,1.492245,6.894293333333334,2.95328,3.385615,5.0926,4.00352,2.21429,4.345765,3.47009,3.82949,2.6988,4.109825,3.767665,5.4506,4.61087,3.23012,1.8378425,1.8378425,7.480356666666666,1.4475571428571428,4.902065,4.26887,5.11655,3.569625,3.550045,4.96547,3.90883,1.0065250000000001,1.0065250000000001,1.0065250000000001,3.623575,3.248735,3.96367,4.495230222222222,2.599505,1.4553116666666668,4.00474,2.1840175,2.487075,4.014915,4.456245,2.1087275,2.0552,5.55567,3.72861,3.10958,4.495475,1.711745,1.9494475,3.300546666666667,2.445245,5.3851,1.395216,1.6020379999999999,1.00360625,3.50908,3.611125,2.761893333333333,2.888056666666667,5.22465,1.745356,2.091795,3.143055,1.5955285714285714,3.353635,3.374315,2.54215,5.3928,5.45475,2.81415,3.9916,3.75485,3.528985,3.33381,3.95858,3.399815,6.71263,5.07265,1.93292,1.7316666666666667,3.45228,4.687355,4.71258,3.345415,2.862386666666667,4.144225,6.13395,5.01155,2.7700366666666665,5.23285,4.031395,4.406765,8.168225,3.677965,0.7118254545454545,3.847395,4.124264166666666,2.24631,3.926245,3.8234,5.77755,4.09983,3.69735,3.824715,4.238735,4.462655,4.396775,2.89343,3.769525,4.987635,3.91887,2.293085,2.993775,6.79528,5.28335,2.06756,3.057005,4.475294166666667,3.918735,4.791305,4.11337,2.6894899999999997,0.9167077777777778,4.470024545454545,6.4321150000000005,3.77449,4.81961,3.73817,6.458701666666666,3.85489,3.6488,2.691333333333333,3.79034,2.07363,3.639085,4.20721,2.5099345,3.667925,5.787,1.3925025,4.64223,0.637385,5.87085,6.1289,5.7224,5.7826,1.5579216666666669,1.8502266666666667,4.44754,1.994945,5.3742,0.53147,5.4769,3.26023,1.542632,6.3375725,6.38335,0.8871925,1.7415764999999999,1.2654640000000001,1.2654640000000001,1.2654640000000001,2.24226,4.585895,3.78857,3.417995,3.68862,4.957385,3.71843,1.9793420000000002,4.15292,4.811675,0.2970243902439025,3.457875,4.38137,4.227345,37.91786375757576,5.415329166666667,4.846615,10.324022333333334,2.740335,4.0262,7.172556666666667,3.32916,4.9837,3.770775,4.11039,9.285645,3.89299,2.6752633333333335,2.850155,4.722955,4.294425,3.774655,4.375745,2.072035,4.3424,4.00517,6.6260580000000004,4.132465,5.04695,2.3350125,4.320595,0.50107875,1.4437983333333333,3.295235,5.93065,3.06476,1.2351349999999999,1.2351349999999999,3.14572,3.856955,3.68873,2.8485,1.6290566666666668,3.70669,4.383895,1.7365025,3.3374333333333333,1.471314,1.8387900000000001,4.158985,4.43378,2.0188775,4.511515,2.192185,2.153485,3.59392,3.768445,4.092275,3.906815,6.098621666666666,2.3474166666666667,3.8426,0.7303009090909091,0.6489775,3.869685,2.441905,8.442116666666667,3.3097933333333334,4.817655,1.679615,4.466535,1.4884116666666667,3.822775,4.413325,2.5947,3.730455,4.8622,0.410451,0.410451,3.6580666666666666,3.1672666666666665,2.8647899999999997,3.44237,3.80345,5.33175,1.0349545454545455,9.985501666666666,10.638390000000001,1.82988,4.426625,4.536295,4.7289,3.703705,2.4835066666666665,1.95375,1.9543475,10.3656075,2.01972,2.71668,3.4802539999999995,4.3645,3.4802539999999995,2.1924025,2.7504833333333334,2.654776666666667,0.7043063636363637,5.3267058333333335,2.7834466666666664,2.5855,4.15167,8.334195000000001,10.28678,3.94197,3.974115,4.11894,6.593235,1.9325675,1.3981875,25.951771666666666,4.391795,3.691255,1.00523,4.917835,4.145675,4.82393,4.472045,5.44675,5.518566666666667,3.013806666666667,2.1820166666666667,0.6395235294117647,0.7303675,4.67376,5.13285,1.3986216666666669,4.358046666666667,0.9310416666666667,3.6051333333333333,1.4154933333333333,4.31668,5.8477,2.17407,2.50594,2.390815,3.75458,2.718315,0.4015116666666667,3.546035,3.528755,2.31535,3.323305,4.76154,2.7565233333333334,4.08529,3.355065,4.40793,7.911253333333334,4.901195,7.77173,2.7535,2.5353266666666667,4.64615,4.705545,4.360615,4.688465,3.76912,4.796895,1.13317,3.1048725,3.3345080714285715,0.725572,1.389808,1.389808,4.22114,7.03601,0.8218307692307693,4.777575,0.8787683333333334,2.8234066666666666,2.2139266666666666,2.505711590909091,6.070981111111111,2.4903666666666666,1.0953511111111112,2.279873333333333,1.23319,1.7678266666666669,3.0576266666666663,3.1286400000000003,3.25231,2.42435,0.8787683333333334,4.4966,4.41527,5.3868,2.72453,3.76512,2.08,5.8059,4.685565,4.29237,2.8300933333333336,3.10626,2.17892,1.3737075,4.05756,2.600775,4.431145,5.6366,1.6106459999999998,4.65536,2.810416666666667,6.175431666666666,3.65003,2.32513,0.8787683333333334,2.975425,2.93817,7.208222944444445,2.33396,1.8452860000000002,2.33396,0.4099791666666666,1.13667,4.001825,2.643095,1.8022575,3.482885,3.879436,0.579831,0.579831,0.579831,8.177655,1.574706,0.7169972727272728,34.57424210822511,1.8690204444444443,0.6647744444444444,2.8718125,0.6647744444444444,3.822215,2.19025,2.2886,2.5471766666666666,5.1748,3.99945,4.40337,2.4195966666666666,0.8873942857142857,4.216155,3.190046666666667,4.87282,1.0330428571428572,3.040425,3.040425,3.8889,4.4197,3.243705,4.665901923076923,3.20565,4.512005,5.0649,1.725384,1.04253125,5.1678,6.50555,3.92497,0.6829810000000001,4.229135,4.003333333333334,0.876865,4.380015,2.51243,3.738365,4.10765,1.8598436363636364,1.8598436363636364,4.00372,3.46437,0.9057588888888889,2.972555,2.8557433333333333,3.20669,4.07621,4.364555,0.4653185714285714,0.33526999999999996,0.33526999999999996,0.33526999999999996,0.8005885714285714,0.566636923076923,0.6683250000000001,0.33526999999999996,0.33526999999999996,6.574764999999999,0.33526999999999996,0.8005885714285714,3.53263,1.270605,4.53818,1.1900716666666666,0.5705753846153846,0.876865,2.58473,2.60775,3.914165,3.053845,0.33526999999999996,0.33526999999999996,4.492275,3.7745,3.938685,2.628615,3.807965,1.513622,3.72671,0.6683250000000001,0.6683250000000001,4.69572,3.11623,2.59896,2.86775,3.6641866666666667,1.0421,0.9282846153846154,10.091650000000001,1.223225,3.589145,4.491305,5.18495,2.0905,0.37166,0.87739375,2.6556866666666665,3.077375,3.130465,4.25246,1.299118,5.6265,3.036585,4.9288725,3.9262,3.047753333333333,2.8049233333333334,6.31635,2.460503333333333,4.553885,4.0736,3.99884,5.89842,0.5398253333333333,4.457515,3.480866666666667,1.8697666666666668,0.7317822222222222,4.16544,4.39237,2.652755,2.411515,2.10969,5.00525,2.89344,2.841385,1.090248,0.46504769230769233,3.95674,0.357272,0.7772445454545455,4.00918,3.076125,3.696525,2.72642,5.36095,4.4495,6.207581333333334,3.410515,3.445965,4.404145,1.484525,5.16113,1.694604,3.910965,2.363845,5.8526766666666665,2.681205,0.987052,4.46134,7.08915,6.464371666666667,3.3369,0.7934633333333333,2.9652600000000002,4.11847,3.92783,4.600265,4.46609,4.008745,4.77455,3.006305,4.27992,1.8625233333333335,2.278115,1.4871366666666666,4.03058,9.91188,3.216695,3.75849,5.9178,3.035235,4.15551,2.5050666666666666,2.8529150000000003,3.305005,3.04169,3.510055,3.55263,3.389325,4.92922,5.7491,3.8263,4.819825,4.9509,3.76866,2.83523,5.2371,7.57435,0.9272944444444443,3.95514,4.21844,4.75462,5.59345,5.0025,2.48382,8.169495,2.5556266666666665,3.29623,5.91315,3.824785,4.36208,2.16594,1.63263,2.9909233333333334,2.28914,2.22214,2.8738733333333335,3.956205,4.71357,4.17082,3.274365,4.369104999999999,3.235815,3.30276,4.12397,5.8325,2.888475,5.228654499999999,3.921135,3.697815,3.502455,7.46435,3.452095,3.85594,3.950995,4.928225,3.00335,10.743,1.26293,2.39626,3.518335,2.7493933333333334,2.7493933333333334,2.114105,7.266986666666666,0.8436533333333334,3.050925,0.9226,2.091795,4.260185,4.948905,3.62966,3.881085,2.5852999999999997,3.089575,3.669905,3.877605,4.18295,2.73396,2.3930266666666666,3.810805,4.5869125,3.2561,4.104545,1.62987,1.6449960000000001,2.6249566666666664,5.5727,2.179735,1.7399466666666665,1.9973025,4.152985,4.55891,3.049925,2.607545,0.5193133333333333,2.40357,7.10037,3.19708,1.6293366666666669,0.85895625,1.0961733333333334,2.1453133333333336,2.3283625,1.1572733333333334,2.1743133333333335,4.536618499999999,3.997665,4.623785,2.422266666666667,1.88132,6.257820000000001,2.95785,2.0252166666666667,2.0252166666666667,2.0252166666666667,6.543806666666667,2.2592066666666666,3.43707,2.550065,0.47877600000000003,1.1730040000000002,2.34792,5.85472,0.43942888888888887,3.709455,4.006259166666667,5.6943,2.9266055555555557,0.43942888888888887,2.9266055555555557,0.906945,1.163164,5.8324,4.18428,6.67121,3.995385,4.40707,3.402295,4.14003,4.93578,5.4057,5.85285,3.821465,3.73861,4.91252,4.285355,4.14814,4.381475,4.511605,1.3534766666666667,2.54169,1.19038375,2.058725,3.1856429166666667,1.6323629166666667,6.73815,5.57539,2.661223333333333,4.337205,2.879105,4.629185,2.75177,3.850645,4.78359,9.403089999999999,5.09755,4.319735,2.3272825,2.975335,2.04176,0.62788,2.164324666666667,6.02835,5.1977,4.82587,4.26655,0.5048093333333333,1.99377,1.4345525,4.27079,0.6779861538461538,6.8973625,2.1280625,1.1536275,1.1536275,3.906454,1.9334320000000003,3.1969066666666666,2.60883,4.66881,3.44494,3.44494,4.543535,5.565835,2.69549,2.4058333333333333,3.1581499999999996,4.77245,1.8234480000000002,2.82625,5.49135,4.990105,4.53505,4.025375,3.9330016666666667,4.317955,3.5398525,3.12414,2.3634275,4.350895,5.31255,3.2819100000000003,5.0284,5.4478,2.18866,2.48343,6.2019,7.00155,1.256762,2.6131,2.4091325,2.7136133333333334,2.1753025,2.556225,2.208609,1.0316044444444445,1.962865,2.66965,2.332595,2.539416666666667,2.539416666666667,2.868426,2.921225,2.195567884615385,2.592375,2.3026675,1.9461400000000002,1.5259806666666667,5.133335000000001,14.481798166666666,2.8868333333333336,3.21559,1.76796,1.76796,1.5819216666666664,1.5819216666666664,2.823636666666667,3.5844666666666662,2.724273333333333,2.0251375,2.0251375,3.9573,2.4946733333333335,1.12457,1.439857142857143,2.87576,2.7601766666666667,3.4956666666666667,2.4095102380952382,3.256486666666667,3.064773333333333,0.6659010000000001,2.532575,3.5100643333333337,7.181393333333334,4.62981,5.35905,4.30836,3.737535,4.969315,4.69649,2.7920266666666667,4.095285,1.3335283333333334,3.1378799999999996,5.61735,5.1537,2.634915,1.3026833333333332,3.24894,2.28266,2.833816666666667,1.4903766666666665,0.6579528571428571,2.95095,4.162399166666667,4.89809,4.05879,4.575,3.0444866666666663,1.9752866666666666,3.3172916666666663,2.4787033333333333,3.2042266666666666,3.176553333333333,3.09719,2.54363,2.3007,3.6763333333333335,2.8105499999999997,5.05765,4.698985,5.225545833333333,5.225545833333333,3.59063,4.041965,3.70425,3.976465,2.8777,4.14498,3.403515,3.04517,6.0862,0.7714833333333333,5.2469,4.55433,2.561853333333333,5.4440333333333335,3.4198,1.6562716666666668,1.1908271428571429,2.03114,0.9514279999999999,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.5542971428571428,0.5542971428571428,1.1801525,0.8119319444444444,1.6443404292929293,1.0134342857142857,1.0134342857142857,1.2343359848484847,0.41000444444444445,0.4385266666666667,1.2228825,1.4647775,2.53075,2.177105,6.15097,3.1263666666666663,3.704645,2.6342749999999997,4.779276571428571,1.3782383333333332,4.979605,4.02839,4.99523,3.014465,1.5256539999999998,4.619798076923077,4.085025,4.36498,4.40816,2.787025,4.47982,4.48785,4.659005,1.26063,3.87606,4.581725,3.184435,2.3998233333333334,3.462495,2.527015,3.358795,4.31244,3.0141333333333336,4.690715,8.872264999999999,3.339585,4.74145,4.0242,4.3402433333333335,2.41184,4.03498,0.9551157142857143,4.3932,3.50042,2.23136,1.16568875,2.943565,1.2386366666666666,0.4833866666666667,3.3703333333333334,4.43694,5.342169999999999,3.6688666666666667,2.425285,1.949725,4.87246,3.881133333333333,4.62451,2.6674,2.3006033333333336,3.9467,3.89322,3.549745,4.887675,4.43825,3.698695,4.583815,3.097466666666667,4.085935,2.1683837500000003,4.371955,5.15255,3.332595,4.548895,2.597855,3.81228,5.34975,3.696385,4.83584,4.62432,4.62331,2.251723333333333,4.64346,5.0474,4.55656,2.0515375,1.077375,3.950235,4.557115,3.93267,4.826695,2.113065,3.76698,2.393105,4.83243,4.50641,4.52781,2.1420525,4.08406,4.393545,4.137165,2.353473333333333,4.48775,4.553405,5.10735,3.553855,2.0515375,2.35341,2.650725,4.98,3.71146,3.98606,3.58396,4.66314,2.308055,7.04186,4.936835,4.5558,5.2647983125,5.127682500000001,4.99554,3.36762375,2.6763266666666663,2.6763266666666663,3.403,3.433265,4.661705,2.0439575,2.81490625,0.94011625,2.4171133333333334,2.8263200000000004,2.2097666666666664,3.009956666666667,4.06571,2.6378033333333333,5.10075,2.4511499999999997,4.2757,4.7830575,2.260725,4.22317,2.5662766666666665,2.4771366666666665,3.917875,0.91232,4.95062,4.369315,5.803627499999999,4.591415,5.53685,1.2308557142857144,4.45141,6.3791,7.787045,3.1633033333333334,3.1747933333333336,1.875414,0.810299,3.84515,1.0220357142857144,4.97587,4.515645,5.81375,3.260785,3.565565,1.1127271428571428,3.42413,3.433115,4.508495,3.87883,2.707225,2.71609,2.34058,4.305965,4.66828,5.54,4.30714,3.4098,0.3922055555555556,0.3922055555555556,0.3922055555555556,0.3922055555555556,5.80265,2.47326,6.0854,3.02374,5.0658,4.681165,3.859645,2.16037,2.46577,1.49346,5.08845,2.7296866666666664,4.25916,3.84533,3.486315,1.526,1.128205,4.419135,2.58684,5.669283333333333,3.97691,4.48452,2.439565,1.4772033333333334,0.901961111111111,3.14789,4.016305,3.620675,2.1050875,7.848990000000001,4.732225,3.397005,2.195,0.43996599999999997,3.467125,3.134635,2.209315,2.07143,2.80071,2.928575,2.303725,2.832183333333333,3.084105,3.40249,4.33311,3.462,3.716005,3.00261,5.466815,0.6072000000000001,4.674395,5.7472,4.89905,4.59809,3.1657966666666666,5.1958,4.37997,4.09589,5.251613333333333,5.1319,4.55016,4.38259,3.621555,4.95672,3.47908,9.16023,4.944325,4.104475,4.59712,4.90881,5.60645,3.37728,1.1172777777777778,5.840718333333333,3.322945,4.52575,1.3475849999999998,4.48164,3.700995,6.389103333333333,4.388695,3.304195,1.9671200000000002,5.0244,2.08026,0.96975,4.18166,6.0583,1.9884333333333333,2.3464533333333333,2.868793333333333,3.16185,3.781985,3.849425,4.9186,1.6689033333333334,3.939995,4.009650000000001,3.362995,3.796666666666667,3.66765,3.05956,2.72349,1.7724525,2.4777033333333334,2.6998033333333336,4.431105,0.5469674999999999,2.6731533333333335,4.198,2.868275,3.445233333333333,4.200675,4.811365,3.81519,16.663018848484846,2.403303333333333,4.185033333333333,1.47922,0.9273181818181818,0.9273181818181818,0.9273181818181818,0.9273181818181818,0.9273181818181818,4.3073,4.540925,4.6812,8.981144,2.347635,2.347635,4.47239,4.644294166666667,1.3357275,1.8793233333333335,3.658325,2.47288,2.25676,2.066825,2.92461,3.786814666666667,1.6910075,3.344955,0.8229642857142857,2.71908,2.7130733333333334,3.0671999999999997,1.5050733333333335,3.102816666666667,2.149896666666667,0.93762375,2.73362,2.756536666666667,1.2865111111111112,2.3526433333333334,2.47653,2.1807866666666667,4.306383333333334,1.7148700000000001,2.77886,2.0458525,2.61209,1.09827,2.6695466666666667,4.800482000000001,3.6265,1.04724875,3.0268466666666662,1.362595,2.40145,2.3399233333333336,4.6123666666666665,2.95996,2.3636166666666667,4.470564666666666,2.6766166666666664,2.194665,2.7202566666666663,2.3112166666666667,1.5922766666666668,2.8373633333333337,3.03519,2.75757,2.4435966666666666,3.1119033333333337,2.599346666666667,2.36048,3.8527415000000005,3.8527415000000005,3.0678533333333333,2.0454166666666667,1.9259366666666666,2.464116666666667,5.514436666666667,2.8099000000000003,2.1863233333333336,1.675805,3.0385933333333335,4.26843,2.45058,1.029,2.7879733333333334,1.6427100000000001,3.737966666666667,2.13688,2.4955366666666667,2.1024533333333335,3.1140600000000003,1.3394059999999999,1.7056666666666667,1.5588233333333334,4.411115000000001,2.574876666666667,3.930355,1.0383655555555555,4.209845,1.9719666666666666,2.02053,1.7295639999999999,1.5809333333333333,3.350433333333333,22.898824699134202,7.384866666666667,2.726243333333333,3.4610874999999997,2.70119,10.084303333333335,3.0235966666666667,1.00468375,2.5652266666666668,2.3807,2.040153333333333,2.81983,2.6528300000000002,2.4473066666666665,0.939822,3.194463333333333,2.6141566666666667,3.0048933333333334,2.6322300000000003,2.4904033333333335,2.1811700000000003,2.2455133333333333,2.80852,2.64525,2.0495225,1.582326,5.05783,4.442835,2.22546,2.915675,2.259673333333333,2.36466,8.054419166666667,1.9879866666666668,4.754365,2.4207475,1.89274,8.19102,2.8031333333333333,2.6427433333333332,2.4564175,1.8414000000000001,1.4765534615384617,3.1052366666666664,2.998976666666667,4.161035,1.564475,3.5662333333333334,1.4953175,1.4953175,4.29982,3.633575,3.565677142857143,3.565677142857143,5.628973333333334,3.466685,0.470475,11.539414297924298,1.3039966666666667,0.9571685714285714,3.501621666666667,1.4207223931623931,1.767655,5.8833433333333325,3.810955,0.7454163636363635,2.1961733333333333,5.061154666666667,2.3679325,3.72063,1.2882685714285713,5.3072,4.93422,4.57135,3.16314925,1.895148,2.25947,2.592283333333333,2.3494266666666666,2.19862,4.918323333333333,4.2006,3.97092,1.79703,4.689295,4.002025,3.2916433333333335,2.135245,4.81294,2.3191433333333333,8.679146666666666,6.29132,1.82905,2.73949,1.769498,4.471633333333333,4.471633333333333,2.9543633333333332,2.71381,2.8877858333333335,4.847695,9.7150675,4.170155,2.4533975,5.53,4.2971,5.02655,1.9840579999999999,0.87587,1.3412616666666668,4.502325,4.69252,3.611166666666667,2.5208833333333334,3.6731,2.1429066666666667,3.836765,5.00865,3.408745,5.34505,3.1485966666666667,3.3972233333333337,3.2528900000000003,3.1901333333333333,3.2390166666666667,6.14525,3.0002,5.4268,4.714385,3.078415,3.34245,3.34245,5.319542500000001,11.697930833333334,3.6231000000000004,6.25704,7.426218333333334,3.604915,2.46739,3.99762,1.4071300000000002,3.80857,2.532675,2.9888933333333334,2.903983333333333,3.0858166666666667,2.007,2.418553333333333,2.61474,2.4546633333333334,2.821846666666667,3.083833333333333,3.6952,2.699593333333333,2.87281,3.83266,2.6296666666666666,2.3143,1.11397875,2.0719975,2.7410033333333335,2.1467199999999997,2.4340699999999997,2.5707166666666668,3.4036000000000004,2.329006666666667,2.0888833333333334,2.43715,3.0842433333333332,2.5227866666666667,2.6598166666666665,2.5077833333333333,3.0515733333333332,2.8624033333333334,3.4187840000000005,2.581253333333333,2.3223,2.2733633333333336,2.7199833333333334,2.5006366666666664,3.4867000000000004,3.408333333333333,2.938675,1.919295,1.919295,0.67329,1.3966480000000001,3.8891,3.288045,2.7322100000000002,2.007,2.8635066666666664,1.2162214285714286,2.5662833333333332,0.5540179999999999,3.2926,3.04054,3.6465,2.967693333333333,2.5013166666666664,2.4365833333333335,2.912576666666667,2.6471533333333332,3.1881266666666668,4.405336666666667,1.46916,2.7798466666666664,2.37602,1.8218566666666665,2.2799833333333335,2.7256366666666665,2.565393333333333,1.573988,2.5932766666666667,2.6729566666666664,2.4454733333333336,2.61725,2.6874533333333335,2.84102,3.1520266666666665,1.33103,2.8201366666666665,2.3638766666666666,3.6994666666666665,3.742233333333333,1.7838825,1.9839433333333334,3.15822,2.4020766666666664,3.4340666666666664,2.6699266666666666,2.3809466666666665,5.163775,3.2220166666666668,2.023163333333333,1.479762,3.3796666666666666,6.038496666666667,3.0786466666666663,3.4534333333333334,2.6909833333333335,2.9332766666666665,4.685578666666667,1.6076720000000002,1.1401444444444444,2.075953333333333,1.6056825000000001,4.70343,2.4825433333333335,3.02768,3.1834733333333336,3.26168,2.1860666666666666,3.5040333333333336,2.61315,1.563246,2.60903,3.611095,3.6818549999999997,3.3017,3.49685,1.50364,2.80851,3.453055,2.986065,2.1691566666666664,3.8007000000000004,3.9380333333333333,3.9276999999999997,1.4181975,5.647339,3.14494375,1.4225116666666666,3.38448,3.21755,2.842245,3.66096,1.81292,1.81292,3.20034,3.0522833333333335,2.760265,4.85394,4.26542,4.183859333333333,1.5347060000000001,3.168673333333333,2.402276666666667,4.34135,3.14902,4.719573333333333,2.650306666666667,2.3651633333333333,2.4714133333333335,3.75369,3.65596,1.664938,3.0829133333333334,2.847565,2.2831925,4.233085,1.2957866666666666,3.062685,4.338455,2.807945,3.57927,4.15009,1.680695,1.7626466666666667,2.37637,1.00556,1.9196114285714287,1.8777225,0.4431507142857143,3.698475,2.318145,4.664035,4.181215,3.055165,4.5484225,3.3455333333333335,3.1215566666666668,3.5238,2.4081266666666665,3.1593999999999998,2.751163333333333,3.0107533333333336,2.1936966666666664,0.6585184615384615,2.3529433333333336,0.60164,1.9622666666666666,2.56343,3.1601666666666666,3.0964466666666666,1.4169466666666668,1.20434,4.289535,4.257545,3.15421,3.754325,3.08125,1.79506,3.80108,6.412921111111111,3.25964,5.030355,1.480835,3.91783,1.900795,4.387365,3.31757,2.1198,3.87231,3.1409,3.639825,3.906385,2.0369375,3.74575,5.51383,4.843205,3.462585,3.073435,1.58283,1.9835575,3.763605,3.2693,3.26576,3.540495,3.50994,3.343425,1.5567875,3.56563,3.239895,1.58237,4.0359175,1.0521583333333333,3.257765,1.6437675,3.74337,4.485416666666667,3.62248,2.963435,3.64161,3.2452,1.8278675,2.32762,3.808,2.67566,5.64344,4.07544,4.57825,2.59753,2.715445,4.24656,4.517405,2.1806859999999997,2.1806859999999997,5.825775,4.0789175,2.8874775,2.820775,2.1289599999999997,2.877415,3.285895,3.7157108333333335,2.6925075,3.20916,0.992894,3.631825,2.830505,3.99899,2.58973,1.5301525,1.314615,2.844065,5.791553,5.4807975,3.49724,1.5196925,4.125115,3.713015,0.891045,2.965335,1.324078,5.0367925,1.3987100000000001,3.507245,1.703825,1.4169466666666668,2.65624,2.510925,4.650725,6.647783333333333,3.864815,4.527424166666667,2.60135,2.91424,3.919785,3.54188,4.121085,4.367045,1.25041,1.6009674999999999,1.0121925,2.391545,2.6772,4.934665,1.0121925,4.224205,2.427385,1.4922575,1.4922575,1.58237,3.68743,4.11765,3.751945,1.370176,1.370176,0.9188916666666667,3.08444,2.0452375,6.0062675,4.051545,3.78956,2.7975666666666665,0.9402242857142857,3.549635,3.073805,4.124295,3.494835,3.5267525,3.5267525,3.27901,4.096535,1.7731075,2.536895,0.9539855555555555,1.9857866666666668,3.52193,2.43656,3.1591625,3.1591625,2.67236,4.722015,4.44924,3.76527,3.52581,3.970505,2.5296833333333333,4.190100833333333,2.46629,3.80363,8.070129999999999,5.0879,2.787225,3.23371,2.925265,4.46623,3.2137539999999998,7.6346025,4.512399,4.639665,3.38718,3.84083,3.547285,4.35548,4.80019,2.812185,4.481605,6.081129166666667,2.83679,2.258578222222222,3.116675,3.252245,3.6945,5.47335,2.19671,2.1170666666666667,2.947665,2.8426225,3.2241766666666667,6.968857333333334,1.4839325,4.850865000000001,4.850865000000001,3.170635,3.9067058333333335,3.2995,2.4429333333333334,4.988,4.128894,2.0354573333333335,3.9704,3.836385,3.493544166666667,2.75609,2.69696,5.807136666666667,3.43941,5.1262,3.10505,4.66042,4.17968,3.522015,3.0522833333333335,2.08935,2.8295,3.64842,2.85727,3.0496950000000003,3.18759,5.844101666666667,2.55248,1.74281,3.266096666666667,2.4251533333333333,3.813595,2.70079,0.891045,3.54658,3.976205,3.865405,6.188905,3.012705,2.66341,2.9934,2.9934,3.897219166666667,3.663415,3.56943,2.071095,5.73573,2.1804325,4.55036,3.63257,7.95688,2.8535266666666668,1.3361966666666667,3.09185,4.680235,0.6213675,3.88092,3.185475,3.04984,2.876455,4.00909,2.2738033333333334,2.468555,9.171489999999999,3.44087,2.84606,1.3987100000000001,3.70223,2.782085,2.37299375,4.15682,5.252785,1.598645,1.1734033333333334,0.9783716666666668,4.27681,4.115615,3.347965,3.2724625,3.2724625,1.5567875,2.32605,2.951688611111111,0.8640711111111111,3.010305,1.024195,1.50364,3.324605,3.39879,2.76897,2.69598,2.4829708333333333,4.448455,3.61937,3.22098,2.875635,2.796925,4.173495,6.925515,3.982855,0.8782025,2.5994505,8.79204,4.6035,4.149745,1.1408675,4.656865,1.3726683333333334,3.5445275,3.5445275,3.59077,8.232904166666668,0.7902766666666667,4.55341,4.267895,2.3957366666666666,4.280200833333334,3.68031,2.1677625,9.847969666666668,1.772705,2.43954,3.13199,1.7038066666666667,4.139709666666667,3.095915,3.29652,3.2313733333333334,2.584805,2.89325,1.1011783333333334,7.56072,3.779595,3.711725,3.669505,1.884925,2.963435,3.9084608333333333,3.6572,0.5805469230769231,3.573905,3.817745,4.27651,2.10746,1.2670299999999999,3.88197,4.2087,8.16358,0.6890592307692308,0.7163925,0.7163925,1.9203833333333333,1.3419666666666668,1.371248,1.8354433333333333,4.711975,1.2719799999999999,0.8872,4.06825,3.4758,1.2245325,3.404795,4.700655,3.105535,0.733804,2.397225,9.323535,3.1212,3.21207,3.24512,1.6984725,2.412943333333333,2.70424,4.410065,4.175625,3.84189,0.89366,1.296338,0.87644,4.1786674999999995,4.249945,4.07815,0.8640711111111111,1.6562860000000001,3.72023,2.3574325,4.8075616666666665,1.12007,4.811765,0.577395,0.577395,0.577395,9.15701,3.886605,1.024195,4.05437,4.786525,2.79801,3.25835,4.8624591666666666,2.75304,1.8573288888888888,2.197153333333333,0.733804,1.624849,0.6241188888888889,0.72296,1.42549,4.071285,3.54314,1.98945,7.161191666666667,4.974105833333334,0.6529822222222221,6.08615,4.660613333333334,3.154795,4.457645,7.801106333333333,3.7452487499999996,4.974105833333334,4.575998833333333,2.1785866666666664,4.236575,3.704775,7.083475,3.14847,0.43996599999999997,1.6055959999999998,4.175315,1.8072959999999998,1.1734033333333334,3.77791,2.363846666666667,1.790065,3.204365,1.677342,4.44126,4.417585,4.08503,4.800915,6.47277,2.650305,3.81377,1.324078,2.2400675,3.66483,3.257465,2.0354573333333335,3.949715,2.414485,5.0095,2.918405,2.576305,3.4056825,1.637248,3.46492,0.8640711111111111,2.3293155,0.9783716666666668,1.35169,3.667005,1.4839325,1.42549,1.9878925,3.23244,7.20715,0.89366,1.1408675,1.300924,3.556885,3.678715,1.300924,3.94585,2.2400675,0.6213675,0.8640711111111111,1.9203833333333333,1.324078,0.4431507142857143,1.6627120000000002,4.297816,2.3957366666666666,1.29414,2.434975,1.4181975,1.772705,2.62146,2.197153333333333,4.444395,2.62146,0.891045,3.255234,2.055235,0.08670068181818182,0.08670068181818182,0.08670068181818182,0.08670068181818182,0.08670068181818182,3.2225266666666665,2.8365466666666665,2.63059,2.69532,4.549925,4.428375,1.7295639999999999,3.632415,3.64555,2.3498,4.84067375,2.72048,2.472635,2.51198,2.720035,4.505865,8.275933333333334,2.1713275,1.9173533333333335,3.0563217857142853,0.9277742857142857,1.4443366666666666,2.3839166666666665,1.91576,1.5664325,2.8882066666666666,2.2090666666666667,2.7845933333333335,2.5579466666666666,2.6068166666666666,3.685865,3.331945,2.5155266666666667,1.340144,3.582795,3.630235,1.6618333333333333,1.364154,1.364154,1.364154,3.445765,2.57688,1.2448633333333332,2.0426466666666667,1.3392457142857144,4.38033,1.5366666666666668,6.112043333333333,3.2049125,2.4809433333333333,3.211702,3.211702,5.238519999999999,3.17661,4.470795,4.73806,2.06833,2.8995333333333337 -GSM1946777,1.0,1.9509775,1.9509775,1.5589166666666667,4.86415,4.311355,2.7935863157894736,1.68555,8.391847867647058,4.83938,3.1262966666666667,3.36111,2.258575,3.5162,4.604415,1.842266,1.350576,5.0667,2.4380633333333335,2.37987,5.4249,5.224141666666667,4.15981,2.233645,1.6888539999999999,3.99301,5.1357,4.14568,0.7192075,1.6150413888888888,1.9582022222222222,2.229965,2.39629,1.1923128571428572,0.7092616666666666,3.038047857142857,1.5565925,1.7964325,1.17096,2.13617,1.143405,1.1377025,1.1386699999999998,1.6254439999999999,0.9382339999999999,0.9710300000000001,0.8186019999999999,1.326042857142857,1.572298,1.859486,1.5298539999999998,2.1782399999999997,1.8038820000000002,18.4061795,0.37015133333333333,0.820648,1.138146,1.876174,1.508226,2.22194,1.0263814285714286,1.0263814285714286,1.0263814285714286,1.1323783333333333,1.028396,4.9930175,1.1274075,2.412485,2.2029375,2.48907,1.02119,2.3561625,2.553275,2.0648825,1.7145625,1.80753,1.5449475,1.7040075,2.5365533333333334,4.33052,5.1737,4.811695,1.5320799999999999,4.877595,4.898,4.053855,4.381555,1.130035,7.48818,0.6040525,0.6040525,2.218045,1.185347142857143,18.0791,5.22205,5.3026,4.872375,4.595805,4.256485,5.3588,0.4881094444444445,2.27312,1.69361,2.3369975,4.790355,3.91065,1.3766375,2.8062466666666666,2.80443,2.5296933333333333,3.2850066666666664,3.233195,5.1695,2.7626165,4.548595,3.1985499999999996,0.7164527272727272,1.4923899999999999,2.342245,4.3943,2.938995,0.54770375,3.432335,3.925215,0.83150125,4.17192,1.7204894805194804,2.185365,2.727875,2.1410175,3.70536,5.4607,3.26704,2.5807233333333333,3.4446,3.0188966666666666,3.60864,2.742183333333333,5.7784,3.577335,4.97217,3.329485,2.851295,3.596595,2.38693,7.239371666666666,3.611365,3.133535,3.48188,3.11496,4.64383,0.7959811111111111,9.701047380952382,3.67236,2.2144733333333333,1.8664583333333333,3.4958666666666667,2.47928,5.0069,5.8482,2.2545725,4.666111666666667,2.77901,4.96062,2.2545725,2.92163,4.65607,5.117815,4.62388,8.358978333333333,3.25478,4.193935,3.135545,5.49145,5.11225,1.3859816666666667,7.97737,3.92426,4.39432,3.34449,3.5346,3.346355,2.18039,6.095035,2.229985,4.26107,4.02228,5.4232,5.02865,4.36045,1.7973999999999999,2.732675,2.88735,2.2284075,2.2284075,6.055975761904762,3.07295,1.9816066666666667,4.301225,4.5504,2.7824,1.4564416666666666,0.9888222222222223,5.4103,2.491845,6.6734,3.584545,4.83305,3.78793,2.97136,3.81208,3.60383,3.68149,4.18403,5.8424,2.799095,3.55541,9.003526666666668,4.58994,3.4362,3.1389066666666667,2.8844966666666667,3.806566666666667,4.500581666666666,1.890645,2.7928466666666663,2.493533333333333,1.697544,1.59031,2.6473033333333333,1.726955,2.36917,3.112573333333333,2.6760033333333335,2.436436666666667,2.9036399999999998,4.898,3.87282,4.06763,3.431535,4.42163,1.318355,2.1068,2.8438105714285715,2.07268,2.49685,2.46021,3.5206,1.9441400000000002,1.3656300000000001,2.5428866666666665,0.6480319999999999,1.5360166666666668,0.5560166666666667,0.5560166666666667,1.6336066666666669,1.9967266666666665,3.4516333333333336,1.3456000000000001,1.4965866666666667,0.35796538461538463,2.6629133333333335,0.6480319999999999,1.2367866666666667,0.23835135135135138,1.52422,2.05376,3.843033333333333,3.1169366666666662,2.370293333333333,2.5047133333333336,2.2234833333333333,2.350166666666667,2.51144,2.32908,2.2313733333333334,2.590716666666667,1.8737633333333334,2.754585,4.22939,0.8139133333333333,1.89376,2.59469,1.9439033333333333,3.5592566666666663,1.459382,2.53365,2.2897366666666668,4.2069833333333335,2.3935633333333333,6.809291428571428,1.5967714285714287,3.1842666666666664,2.2427325,2.0104325,3.5554666666666663,1.7425075,1.8652325,4.27395,2.577636666666667,2.18697,4.046335,4.308065,4.37207,3.988945,2.34256,3.39532,5.2058420000000005,3.83787,3.86809,4.10886,4.24509,2.93592,4.53719,3.46737,0.8977825,4.692345,1.2674783333333333,5.29765,3.71202,6.038205,3.774525,4.22638,0.97931,2.264125,3.45768,3.988645,1.0112842857142856,1.327713675213675,2.0793985714285714,3.770288571428572,4.74104,5.598346,1.895955,3.57046,5.75545,0.33806642857142855,3.58317,2.294925,1.016095,4.37997,2.118655,12.21951,1.0565,1.7122625,2.7096733333333334,2.50908,2.6156343421052632,5.750919342105263,0.6033368421052632,1.7195133333333334,3.0966066666666667,1.089345,3.5286333333333335,1.2042671428571428,5.6128,3.88649,2.1133966666666666,5.9228,5.21905,2.34884,1.1640485714285713,4.35769,4.632275,4.248175,0.9225636363636363,8.07836,2.84381,4.77231,2.65009,2.44097,4.908155,2.7068166666666666,2.79284,2.23221,2.5683233333333333,3.148835,2.9907566666666665,0.344214375,4.04248,3.59978,3.822945,3.85733,4.52039,6.212457000000001,4.06731,1.65428,5.67235,4.888635,4.749665,4.93164,1.069305,2.6707733333333334,3.316183333333333,2.5062633333333335,15.632405,3.24639,4.031615,4.0211,4.63441,2.7408,4.894052916666666,1.896155,0.7542433333333334,2.4876675,3.612435,3.952875,3.641965,6.339965,3.1872433333333334,2.14578,2.241415,3.4497999999999998,4.470005,2.415905,0.3663385714285714,2.5704982608695652,1.892635,1.15523125,0.477167701863354,0.5879968322981366,0.3663385714285714,0.3663385714285714,0.3663385714285714,1.1933575,1.4877025,0.917365,1.5518975,4.64339,0.21506941176470587,11.352007126623375,3.1706633333333336,2.8671366666666667,4.413635,5.0016,4.048755,2.14634,4.69511,4.149009666666666,4.44814,3.924755,0.7355123076923077,3.3961333333333332,4.227289743589743,0.52742,3.322425,3.16311,5.08115,1.0381727272727272,2.65879,4.29189,3.412235,1.8239075,1.76875,1.49965,3.617233333333333,3.994595,3.03728,2.9088700000000003,5.2395,5.7052,5.35515,3.0397133333333333,3.602235,5.931665000000001,3.32504,5.8285,0.4264090476190476,3.5065666666666666,4.2099166666666665,2.1556166666666665,2.696495,2.8417508333333332,5.2233,0.6641883333333333,2.0086925,4.850745,4.164425,1.044497142857143,4.24659,3.369735,5.0351,3.4652999999999996,4.647915,3.340645,4.19496,1.214,3.306355,2.785906666666667,4.9389,4.32109,4.733595,5.73265,4.50853,2.67674,6.57326,2.1452033333333334,2.38971,3.5525333333333333,2.6690533333333337,2.7790466666666664,2.27685,1.654894,1.6086,1.7787899999999999,0.78738,1.64569,2.39927,2.0599133333333333,3.1816633333333333,3.10854,2.6257433333333333,0.9389088888888888,5.0512,3.3074033333333333,5.567182083333334,2.8581920833333334,3.24465,3.3956,1.8526333333333334,1.8526333333333334,2.893342857142857,2.893342857142857,3.2449128571428574,0.4966628571428572,1.76917,2.4347566666666665,3.6087333333333333,2.273455952380952,2.273455952380952,2.273455952380952,7.606866666666666,4.344433333333334,0.9424,3.369675,4.744999999999999,2.2382,4.762725,2.992375,2.29082,5.5906,3.15872,3.16196,1.38755,1.93037,3.4066666666666667,2.93192,2.5633133333333333,5.231,4.418666666666667,3.6650333333333336,4.80027,1.64796,2.71279,3.115906666666667,0.7619044444444445,2.1254,4.186914,7.891064999999999,1.470265,2.93749,4.46532,2.11076,1.832505,1.832505,1.16320375,5.03085,8.126415,4.51486,6.877785,4.63459,1.9780666666666666,4.771725,3.61093,5.0152,4.544553333333333,0.35287684210526316,2.84284,2.836255,4.316355,3.830015,1.801596,2.0131225,2.62655,4.63641,4.012695,2.85947,2.52641,1.6473520000000001,7.16603,4.314865,4.2134,5.30715,4.09691,4.292785,4.70359,3.58235,3.7019599999999997,1.94369,1.0987728571428572,2.571555,3.78617,4.08952,5.64565,5.7586675,2.2053075,3.0576266666666663,2.620226666666667,2.64548,2.94823,0.6882171428571429,2.186365,3.47654,1.13406375,4.841015,3.316765,6.108495,1.3131828787878788,1.3131828787878788,3.838535,3.78494,3.658345,5.38655,2.7508166666666667,2.2275966666666664,3.90173,3.23973,2.1130925,3.436033333333333,2.5645233333333333,4.194055,3.3699149999999998,3.96161,3.97286,1.0078966666666667,2.625595,4.42207,4.42873,3.27202,2.5009366666666666,2.821575,0.7038222222222221,0.7038222222222221,0.7038222222222221,0.7038222222222221,1.4590772222222221,3.8729,3.8729,1.8070899999999999,7.453956666666667,3.522745,4.812035,3.4239333333333337,3.02265,4.730445,4.057595,4.921325,5.3991,1.821765,4.45131,3.94587,2.75365,4.04264,3.417095,2.436625,4.02923,1.96975,4.29988,1.65056,3.454469583333333,2.981905,1.7143425,1.2581066666666667,2.77796,4.00195,1.420606,0.8272933333333333,3.765695,1.257935,5.013613333333334,5.03685,1.3112,3.46472,0.7633522222222222,2.692653333333333,2.7859833333333337,2.5812133333333334,2.633365,4.54084,2.8198666666666665,4.606695,5.37335,4.495915,4.346905,2.12749,1.2981142857142858,4.20207,4.769195,1.5001275,1.5001275,4.017805,0.27895466666666663,1.88556,0.27895466666666663,0.27895466666666663,0.27895466666666663,0.27895466666666663,4.519105,2.68448,3.366895,3.57013,3.245926666666667,4.483505,2.73809,0.9591025,0.9591025,1.0144383333333333,1.0144383333333333,3.71232,2.256715,3.723375,1.7954941071428572,1.7954941071428572,4.70114,0.5938235714285715,2.4319675,7.477835000000001,5.2417,3.02426,3.46578,0.92461375,2.14741,2.042205,4.743265,4.719035,4.3747,3.818765,1.3184742857142857,2.58685,1.98964,7.48812,1.79742,4.719935,4.751555,2.63008,3.805705,6.20365,7.90536,3.964245,5.19285,6.49245,2.216105,3.20393,2.267065,2.207005,1.95829,3.83409,3.742505,5.606718333333333,6.25064,4.253195,1.1104833333333333,1.3548,4.34885,3.982305,2.2578975,5.3321,4.43335,4.558166666666667,1.7950633333333332,3.9201333333333337,1.5813300000000001,6.348213333333334,2.73284,2.37898,2.2368099999999997,2.716395,3.05545,3.7786333333333335,3.839933333333333,2.9500766666666665,3.461,1.5021,3.929915,3.1698,3.30305,0.38156599999999996,2.95822,4.248995,2.583525,5.5405,5.21135,4.616545,7.074529999999999,4.736305,2.11817,4.537135,5.14435,1.5541666666666665,5.72255,6.3819,5.2129,4.611435,3.096465,5.6751,4.88913,5.19985,5.2880373333333335,7.3266025,4.009605,1.1389449999999999,1.4182033333333333,2.9698,2.0038799999999997,4.473565,4.110965,5.501117499999999,2.3807833333333335,2.3799966666666665,2.737223333333333,2.383783333333333,2.24412,1.078108888888889,0.5295294117647059,3.968055,3.862265,3.651866666666667,3.90662,3.00507,3.2821433333333334,5.510888333333333,3.0474433333333333,0.6124294117647059,3.128155,5.54175,1.7888275,1.409316,3.702645,3.42858,2.4573266666666664,3.7254,4.659505,2.615423333333333,2.3185233333333333,2.29669,2.387026666666667,2.66184,4.217766666666667,4.906710833333333,7.356014166666667,2.09362,5.36605,3.9377070833333336,6.165917416666667,3.1587899999999998,3.09647,2.3127,2.0454866666666667,1.50922,1.50922,2.5711733333333333,2.386013333333333,2.6972166666666664,4.239295,1.690664,2.098045,1.946375,0.558905,3.71884,0.63414,0.97818875,3.42121,4.3655,4.21638,1.6831725,4.924805,1.8845933333333333,0.8868714285714285,4.44589,3.6921461904761905,3.30555,2.48354,4.897355,0.2918775862068965,2.5251164999999998,3.19129,1.393535,3.724485,6.5372,2.250695,1.3228833333333332,5.35525,3.71485,2.894956666666667,2.894956666666667,3.44029,3.67531,4.571215,5.282185,5.0437,1.1381333333333332,2.490666666666667,2.732226666666667,4.41848,5.1459,4.545795,5.07125,4.4317,3.9465333333333334,3.7091,3.4649,3.825366666666667,3.09376,2.9363833333333336,0.7086528571428571,2.531825,2.4456725,4.149855,3.071593333333333,3.3029766666666664,0.7573508333333333,2.441555,3.8110295,4.577545,5.7934,3.652825,2.128305,2.128305,0.9008050000000001,3.171945,4.282245,4.231155,4.594332142857143,2.99493,5.23035,0.5512018181818182,3.268745,3.991235,4.674105,3.590793333333333,0.7855914285714285,3.272855,3.89249,5.03535,3.752365,5.1896,2.652985,4.160555,1.58945,0.9913785714285714,2.7281566666666666,5.09475,3.91275,3.121,1.4710150000000002,3.90494,2.676525,2.85395,2.741737777777778,3.0698899999999996,4.547676666666667,2.8165333333333336,1.7525,3.3343000000000003,1.4443140476190477,2.9781633333333333,2.9770800000000004,2.2442925,2.9292533333333335,2.85702,2.2686733333333335,2.5105666666666666,3.86694,3.0755033333333333,3.491624333333333,2.46258,2.499325,4.302528333333334,2.813546666666667,2.5102466666666667,3.491624333333333,2.1393766666666667,0.7996763636363636,2.4352175,0.9631933333333333,2.1576975,1.5841725,0.9287818181818182,1.7755175,1.9654225,2.7063792500000003,2.5404,4.58452,1.40083,3.711375,3.21536,1.5292059999999998,2.1009233333333333,2.9255433333333336,1.5353266666666665,2.7874933333333334,2.7732533333333333,2.415480681818182,1.9181225,1.903204,3.6726666666666667,2.4064799999999997,2.8521650000000003,2.9055866666666668,3.2749,3.877466666666667,2.1386533333333335,4.4869666666666665,3.6546333333333334,3.7561666666666667,3.2916166666666666,3.617366666666667,3.5177666666666667,2.03921,7.46058,4.71665,4.405095,3.261875,2.831155,1.90691,3.877005,1.7250640000000002,4.09752,4.93418,1.439282,2.25004,1.119905,2.9514066666666667,1.7056566666666668,2.575623333333333,4.804266666666667,3.5135666666666663,3.547705,4.79704,0.84044125,1.5233560000000002,0.989508,3.49612,11.171596666666666,3.9229333333333334,6.56065,1.9730925,5.1527,4.26064,2.4247975,5.14545,0.2868129411764706,0.8068,4.4349,5.0457,7.00131,2.00592,4.375455,4.78825,4.570535,4.64999,3.949235,4.451175,2.97674,5.567145,3.706725,3.46967,3.108625,2.1543733333333335,2.0605166666666666,1.3237495208333332,2.4082033333333333,4.16178,5.23255,1.57232,8.95121,1.6729900000000002,2.862415,0.998988,0.998988,7.591525416666666,2.99279,2.5867,2.1429275,2.778496666666667,2.1836699999999998,1.1927566666666667,3.2904675,2.9565099999999997,0.625302857142857,1.8132233333333332,3.318834,3.318834,1.24963,2.5120366666666665,2.2867133333333336,2.83924,1.2184075,1.7699966666666667,4.860430666666667,2.654456666666667,2.6728,1.2057125,1.2057125,4.27394,5.4821,4.44148,3.311875,3.57964,5.90587,2.84835,2.971713333333333,3.660266666666667,3.995725,1.12392,3.2272166666666666,2.676025,4.29889,2.1457633333333335,4.718805,3.4884,4.28863,3.437685,5.434664,1.0218155555555555,2.14272,1.777625,3.399495,4.9792775,3.836775,4.217895,4.033245,3.500325,1.7170275,4.58454,4.09469,3.71786,2.4160633333333332,0.84921375,3.35805,4.359515,4.93312,1.2916733333333335,3.1007866666666666,3.1214099999999996,1.9619766666666667,1.887636568627451,1.887636568627451,1.3016283333333334,2.7075633333333333,1.1267728571428572,1.372654,4.559055,4.919395,0.5198238095238095,3.854615,3.5346333333333333,3.805245,5.41545,0.41618649999999996,9.352195,5.25105,3.09944,4.18896,4.718495,5.332392142857143,5.1278,6.803135,0.7358318181818183,2.80297,5.5886,2.77623,1.939625,2.05392,4.751,5.19064625,2.577642857142857,2.6538133333333334,3.4301999999999997,1.9946825,4.666385,10.581299999999999,8.136740416666665,3.6918666666666664,4.51542,3.0055983333333334,3.06766,3.99591,1.755302,2.86241,3.54509,4.875515,4.749895,4.64295,6.63048,2.7169933333333334,3.050605,4.603805,5.22455,5.50735,6.96279,4.47193,6.4739,3.46487,3.16873,2.916055,6.07195,3.67332,6.1675,2.189795,3.3685666666666667,3.34219,6.2186,4.309265,4.793695,1.46915,0.88912,2.62395,0.6684266666666667,4.28621,3.461835,3.38454,2.816125,2.1816166666666668,3.096,2.593425,3.085042,1.920742,3.065735,2.989225,2.276365,2.713975,3.7332620000000003,1.19419,2.8090875000000004,5.58625,3.6864666666666666,1.08324,2.7535233333333333,3.6702291666666667,3.7074,1.5563,5.7565,5.47585,2.1617566666666668,3.0150633333333334,29.63896551138241,3.5550333333333337,1.7064666666666666,4.051366666666667,2.1231466666666665,2.62906,2.8956933333333335,3.476766666666667,2.0075525,2.720725,2.3376825,3.5984385000000003,2.9299999999999997,2.545425,1.5813675,2.2093599999999998,2.854725,0.3944345454545454,1.09986,2.80346,1.4889519999999998,3.733625,1.5563,1.94935,26.154269666666664,5.0836,3.790695,3.590175,2.531395,2.3843625,2.5087433333333333,2.34425,4.838,5.831804999999999,5.85555,1.60655,1.987864,2.27402,2.492278333333333,3.638555,5.5629,4.61647,4.669045,0.18451574468085108,4.78943,4.8820975,3.718385,9.36736,1.01042,1.01042,2.9882033333333333,3.78915,5.86985,2.093538888888889,1.0586966666666666,5.08785,1.900795,4.33203,3.774665,3.445965,4.26241,3.937475,4.870745,3.039955,0.7136077777777777,3.1864,2.217983333333333,4.44266,8.33402,4.33101,1.8658700000000001,1.8658700000000001,6.58575,5.09975,4.08707,5.993,2.5542666666666665,5.5525175,1.5465799999999998,1.4638866666666666,3.0173466666666666,2.61552,3.72245,2.8039,3.69584,4.1902925,4.520575,5.3991,2.410075,2.656775,1.8130625,2.893725,2.3761225,2.4916975,2.017225,5.015493333333334,1.920885,3.81576,2.3872133333333334,3.0683633333333336,2.5458000000000003,1.5734233333333334,1.5694571428571429,0.956423,3.0312333333333332,3.8911,0.870656,4.721015,2.012205,5.969417916666666,1.9883325,2.0028675,1.526475,1.51403,5.801502222222222,1.9130099999999999,2.86069,3.7774,1.12653875,1.743015,5.05048,3.3310666666666666,2.7942433333333336,3.557533333333333,3.17041,2.98087,1.257672142857143,0.28345333333333333,0.28345333333333333,0.28345333333333333,0.28345333333333333,0.28345333333333333,4.385505,2.64322,2.49182,3.30118,1.2885866666666665,2.6522533333333334,3.368933333333333,3.1908100000000004,3.78685,2.824305,1.8528266666666668,2.9381733333333333,3.2800233333333337,2.3350825,1.97284,3.691725,2.6053166666666665,2.993446666666667,5.56035,2.6381866666666665,2.73425,2.5095933333333336,11.186808333333333,4.976335,4.695465,4.998975,4.11758,2.8168933333333332,5.0997,3.70131,2.625275,6.042434999999999,4.17638,3.265555,1.952205,3.69268,5.052059,3.557765,17.921165714285713,1.17839875,4.709505,0.8632611111111111,1.26095,3.07275,4.901525,4.2857,4.680515,1.4038216666666665,2.48791,4.185035,2.4973899999999998,4.70402,3.281953214285714,2.7255599999999998,0.6598516666666666,2.7434333333333334,4.96338,2.4847875,2.29193,2.174195,18.391743333333334,1.524512,1.2776125,2.42618,0.3219669230769231,1.942005,2.9126333333333334,2.15424,2.8157366666666666,2.76045,7.629456666666666,1.92028,2.6758,2.349655,2.195955,1.5590933333333332,3.3286533333333335,2.95497,3.485635,2.9589766666666666,2.002155,2.590139166666667,3.1693716666666667,5.02305,0.4640275,3.4177999999999997,3.0182,3.053885,2.1077025,3.740349,3.34999,1.5433066666666668,2.34661,2.26679,1.6538000000000002,1.86294,3.385895,3.24333,0.736565,3.356545,5.03635,4.44125,2.58089,2.58089,3.3767666666666667,4.938565,3.057745,3.3091,2.36183,0.8816709090909091,4.116265,3.634105,5.77485,4.572535,2.44007,2.44007,1.3269675,2.73326,4.903445,4.463025,4.090005,3.3588,2.59126,4.550105,3.40559,4.30373,2.9661033333333333,2.60445,4.800492,3.167666666666667,2.6626766666666666,1.8318266666666665,3.71824,2.7592,1.6052166666666665,3.73894,3.924635,4.34606,2.5496733333333332,4.62793,4.386375,6.6615715,3.94433,2.24418,4.80649,2.686335,7.64542,2.7811299999999997,1.2766383333333333,4.56767,3.6649999999999996,4.342025,0.6066471428571428,0.8154016666666667,3.7414,3.59217,2.249759696969697,4.91176,2.823925,2.73002,9.708636,1.668946,1.849896,3.42049,2.60733,3.519485,5.2766,6.666843333333333,3.056338333333333,2.1597399999999998,3.143546666666667,2.6388166666666666,3.3115233333333336,8.543796272577996,0.8707569047619048,1.0089625,4.77203,0.40242266666666665,1.696815,2.292035,2.0675475,3.000475,2.133795,3.85446,2.507775,12.59786,4.94142,2.4780675,2.4780675,4.556885,0.8018133333333334,5.574073333333333,3.870805,3.887715,5.314215,3.535875,4.800835,1.4893516666666666,2.796765,3.312755,2.553105,3.010465,2.740465,5.7518,3.425655,3.477975,3.03847,2.87119,2.545225,4.586785,4.64741,2.9836533333333333,3.26639,5.065977500000001,4.58923,19.568592738095237,12.949121547619047,3.205498571428571,0.6839266666666667,1.5461142857142858,4.464755,3.30777,3.0101601923076924,2.21323,0.8660777777777777,0.7116283333333334,0.6427228571428572,2.1312725,1.7400099999999998,5.492766666666666,3.7052666666666667,0.7285136363636364,3.32055,2.261975,2.17881,2.02942,5.91258,1.4907400000000002,4.876925,3.16245,3.1329466666666668,2.292705,2.5653533333333334,2.520513333333333,0.7151545454545455,2.895295,1.9592566666666666,4.11712,3.0751633333333337,4.934833333333334,3.679385,3.35064,2.21442,3.765805,7.815787499999999,2.0554775,2.48065,2.55535,1.579595,2.613025,2.363245,2.735525,0.9391260000000001,1.3906625,0.97690875,2.77494,4.20407,6.21795,5.80005,3.17627,2.368395,3.024175,3.5414999999999996,7.657426666666666,1.2043166666666667,0.38546375,2.93802,2.1424133333333333,1.615296,3.636917,1.3129279999999999,2.040538333333333,4.500108333333333,3.3263833333333332,1.2569466666666667,1.9045833333333333,3.8989583333333333,3.62526,4.458055,4.722965,2.1653575,5.314,3.87971,0.828723076923077,4.9749,4.13701,4.374395,3.4756,2.51438,1.3512520000000001,1.0839875,3.48908,2.748405,3.218565,4.137315,2.587495,2.5625633333333333,3.164275,3.61706,5.10415,2.51005,2.635995,4.08724,5.81335,0.54406625,4.396435,1.8067225,3.38867,3.8702666666666663,2.1150575,3.06581,2.2514625,2.013355,2.813645,2.7919275,1.8792933333333333,5.3673,3.609715,1.3437157142857143,7.08223,1.0690266666666666,3.83824,1.6836633333333333,4.482025,4.17689,2.7865800000000003,3.23378,3.997365,8.90911,2.81984,3.501075,3.866965,3.4826,1.715725,7.6995,3.99005,4.680005,1.50977,4.19596,2.87173,1.23648625,2.0750599999999997,4.142195,2.128995,4.196175,4.8119250000000005,4.250995,4.643685,2.3340425,5.485,3.94859,3.3745666666666665,2.5550666666666664,1.837202,5.13285,6.37125,5.36465,4.51936,3.10101,2.3710675,3.98328,3.385435,1.1978640659340658,3.97096,4.692055833333333,4.017695,2.820415,3.452575,0.5730714285714286,0.5730714285714286,5.0535,4.36153,4.749025,2.3511,4.123675,5.08865,0.837705,4.018545,5.17715,4.87608,3.638575,4.764485,1.8397925,3.09454,2.1923175,4.556375,0.703225,4.17719,4.44372,2.831885,2.9760733333333333,4.416275,2.47799,3.176155,61.32559869047619,3.154775,2.5297233333333335,1.6079925,3.229555,3.732005,0.7690775,0.9533725,2.0708325,2.0708325,1.324584,3.154655,2.219845,3.888116,7.29767,2.803266666666667,1.2106228571428572,1.7497833333333332,2.674846666666667,3.932216666666667,0.947268,1.884705,1.22696,2.04172,4.43328,4.18693,3.119255,22.948784404761906,4.318625,3.952525,3.14595,2.2373433333333335,3.409515,3.316005,1.7234375,5.31543,1.6908439999999998,3.92339,3.415701095238095,6.1652249999999995,2.181315,2.59703,1.952275,4.157275,2.4968933333333334,2.138595,2.1121466666666664,3.6480483333333336,3.90243,3.16155,4.37845,4.834775,2.58375,3.352895,3.08713,2.73982,3.0465883333333332,2.29861,2.1787875,3.44807,1.17561,3.79689,4.829555,2.66521,4.998005,5.0197,4.982645,2.1689000000000003,2.577735,2.739715,2.773105,3.95472,3.3123,4.76478,0.73526,4.396601333333333,2.7289,3.9977,2.2470475,1.835266,4.702605,1.2632333333333332,2.779485,4.312505,1.09972,3.566575,3.787905,4.67562,6.32182,2.05443,2.770875,2.628816666666667,3.8455,2.2224233333333334,2.8039306666666666,2.91823,2.3722733333333332,2.36396,1.3086466666666667,1.892125,1.892125,1.86799,2.01862,1.70732,2.489333333333333,4.053955,5.3308,3.66306,1.551575,4.433045,4.093275,3.449385,4.15069,1.93292,1.93294,4.765853333333334,2.013625,4.2650483333333336,4.248165,3.50514,2.375363333333333,3.7001774999999997,3.29348,3.065985,3.41975,0.14272408163265307,2.7159633333333333,7.54995,1.489072,3.408775,2.68827,1.0147857142857144,1.1465483333333333,1.85597,3.92305,2.883045,7.139355,3.399975,3.55829,2.783245,2.71022,3.5801,3.32837,3.92738,3.4356,2.8323666666666667,5.25685,4.398415,4.53302,2.3979866666666667,1.9650075,3.474375,4.813095,2.830845,4.269,2.238815,2.671235,3.43493,3.759225,2.316525,4.36529,5.2455,2.912255,4.24127,3.947575,3.45352,4.46836,3.48037,2.842015,6.29608,4.549435,5.6728,5.1288,4.109075,5.4220749999999995,4.038045,3.76355,1.336786,6.77455,2.39825,5.106,4.1287,4.182815,3.2037666666666667,2.0279599999999998,2.2715866666666664,2.4437599999999997,0.892525,3.3381666666666665,2.79387,3.07931,2.0303633333333333,3.711255,4.591895,2.5325333333333333,0.5572508333333334,4.59716,4.56648,4.4352,4.983135,3.456005,4.633365,5.12845,4.997825,1.4519222222222221,0.9504153846153846,2.65589,5.02395,5.8471,0.49965625,2.813805,2.4831266666666667,4.70889,4.53818,4.0529,1.79504,4.734045,3.069705,4.314575,3.437815,6.20395,3.845345,6.8776625000000005,0.46529333333333334,4.0936,0.918398,2.501475,4.1062666666666665,3.2647166666666667,1.3024,2.2861599999999997,4.370705,3.529125,4.164225,2.11261,2.06416,2.48133,5.01015,4.333375,4.03403,1.6404900000000002,1.2384071428571428,5.59135,2.26076,7.7859225,5.0906,3.571505,2.07564,1.54047,4.16925,4.459685,1.8086833333333334,2.324435,2.596,2.7159633333333333,6.9193533333333335,3.1742233333333334,2.9773533333333333,4.17677,3.72013,2.0034266666666665,2.96924,6.69674,5.74455,4.842995,0.5344227272727273,3.546525,4.722335,4.4841364285714285,4.072475,4.50649,3.12157,3.03111,3.297855,2.838135,3.425205666666667,1.6348179999999999,5.783888,4.58738,5.30565,3.8003,3.30359,3.1854633333333333,2.184355,1.4164925,1.470805,2.72042,2.49254,1.0831216666666668,2.62648,5.5222,5.0692,3.44789,4.55843,17.03859404761905,4.29653,4.44149,4.151715,0.6917541666666667,5.4255,4.408565,4.544835,4.60273,5.3174,2.51431,3.606885,3.1515,1.46814,3.06501,4.52048,2.6589766666666668,1.539714,3.97988,4.879525,4.13383,5.185,5.04835,5.58085,4.60004,2.8563666666666667,4.48231,4.445105,2.66736,3.058873333333333,2.9968066666666666,1.70638875,5.2067,2.8453432142857142,1.9064766666666666,3.92276,2.323475,4.51855,4.302528333333334,2.905725,2.69132,4.40506,3.584455,4.67495,4.363615,4.304645,4.930958,2.9084,5.35215,2.7217166666666666,3.716985,4.539,1.568834,4.6635,1.0298399999999999,4.42353,3.378255,1.0798385714285714,3.749375,2.036455,6.74048,2.3065559999999996,2.3065559999999996,2.3065559999999996,0.7368033333333334,1.3736983333333335,1.857265,3.59898,5.41595,3.494342777777778,1.863145,2.543575,1.7955366666666668,3.84971,2.4473,0.4289853846153846,1.75098,2.251315,3.126,1.870075,2.82334,2.369405,2.045765,3.82445,2.7128,5.3586,3.05946,1.898985,6.60486,2.022535,4.244915,4.14323,6.8561266666666665,1.7012033333333332,3.59772,3.7869,3.83149,4.523915,2.87091,2.0746875,3.653505,6.199356666666667,2.011105,3.7386,3.13336,2.084935,5.2236,4.86565,2.699863333333333,2.14647,3.7581475,6.115205,5.6531,3.863725,2.4567,2.693345,2.8876,2.58209,3.76757,1.3434125,2.71093,4.584415,0.8688425,4.0268,3.7961,3.724755,5.25275,2.38109,3.439365,1.97286,4.50755,8.083216666666667,4.68435,3.337,3.871435,0.98014875,4.49495,2.07084,4.30763,5.4046525,4.14902,4.039075,11.148240000000001,4.878835,3.46328,1.511265,0.7286441666666666,2.57828,3.85401,3.54411,3.59874,2.1222066666666666,2.8475300000000003,2.2274066666666665,1.1413900000000001,1.1413900000000001,1.8154033333333333,2.4156366666666664,2.1649966666666667,2.2272000000000003,3.2197433333333336,3.03557,2.1504666666666665,2.73441,1.3053666666666668,2.848613333333333,2.0489833333333336,2.0280833333333335,1.38681,3.179316666666667,0.7170966666666666,9.793105416666666,0.7170966666666666,3.207273333333333,2.0619583333333336,1.87037,4.699735,4.225455,4.383795,4.172995,2.2148766666666666,2.839703333333333,3.283917333333333,2.6991333333333336,3.410266666666667,3.410833333333333,2.78788,3.1089533333333335,1.5489266666666666,5.28215,7.187417142857143,2.4906133333333336,3.517333333333333,3.0124133333333334,2.745983333333333,3.0447,1.1923128571428572,3.3807333333333336,2.9128399999999997,4.17597,5.7897,4.41097,2.9755299999999996,3.6659666666666664,3.3380666666666667,4.082406666666667,4.136735,2.59931,4.24492,3.3813666666666666,3.17498,4.8822,3.01469,4.317675,6.679493333333333,2.719806666666667,2.5206500000000003,1.51565,1.5213833333333333,4.7455099999999995,3.4964199999999996,2.4403133333333336,2.05171,2.07527,4.636635,3.89975,2.89247,3.093056666666667,3.4753666666666665,3.6125000000000003,3.6592333333333333,4.1498,3.20205,0.64402875,3.943566666666667,2.51132,2.6134533333333336,3.535905,4.2862,4.8364,5.93005,2.75191,4.48216,1.35339,2.6546333333333334,2.6546333333333334,4.01915,3.33509,3.66295,3.2474,1.78011,3.197185,4.016465,0.9751271428571429,3.7865093333333335,3.9785489523809523,3.0299846666666665,0.38450799999999996,3.58435,3.890805,6.27567,3.213265,5.46835,3.25997,3.879815,3.804225,1.76401125,2.856335,4.71255,3.432125,3.354233333333333,3.1188866666666666,5.84825,2.12327,0.98889625,2.048973333333333,1.5573066666666666,5.01073,2.4059399999999997,2.370083333333333,1.8039675,4.679585,4.05291,4.46066,0.6332639999999999,4.12792,3.96723,2.4571866666666664,2.3781933333333334,2.60409,3.408579722222222,3.9644633333333332,1.4247533333333333,0.6518473684210526,0.8233785714285714,3.7228333333333334,4.375805,6.200536666666666,4.470185,4.958165,5.8474,1.5043285714285715,3.8702666666666663,2.239646666666667,1.0114025,5.8374,6.13085,2.72916,4.755995,3.92143,6.885938333333334,4.475033333333333,6.674195,3.6423,2.6341665277777775,6.2598,10.749784461538463,2.45416,0.670605,3.60735,4.0799,2.089975,6.2906,4.41301,3.7454,2.8644200000000004,2.8644200000000004,3.916855,3.81903,3.88709,5.30645,4.11490080952381,2.4738282857142857,1.1005625,5.55985,2.715925,5.70972625,3.94681,4.92562,3.29804,2.1012575,4.700525,4.63114,3.586,4.117085,4.481865,29.68987035714286,2.540175,2.605125,2.2701175,1.7288500000000002,2.76024,1.335842857142857,3.4208,3.090056666666667,3.3396333333333335,3.5734,0.7924923076923077,3.330856666666667,5.28775,3.4148,3.3153733333333335,4.363725,5.7426925,5.0211,4.63979,4.00214,4.203210833333333,4.49474,3.5037333333333334,1.7260825,0.9796166666666667,1.4408366666666668,2.5835933333333334,1.4834833333333333,3.21913,2.3979399999999997,2.2322,1.8304533333333335,2.70449,2.000495,1.7254633333333331,2.846405,4.18109,3.63437,4.498075,1.677232,3.880466666666667,2.4614366666666667,3.957145,2.3876,2.50451,3.369135,1.49322,3.45242,6.5273916666666665,2.83369,3.72476,3.954155,2.512025,3.191865,3.8464666666666667,4.45848,4.4509,0.33421737451737454,0.33421737451737454,4.96256,5.19995,3.26704,2.877435,5.1788,4.502335,0.6942092307692308,4.237965,5.11175,3.49856,6.82645,4.931145,7.62982,13.643844999999999,13.551636153846154,4.05656,4.352115,2.6509933333333335,0.5968061538461538,2.854316666666667,4.508995,1.3421483333333333,4.461185,3.6621666666666663,2.96238,2.0068966666666666,1.8504133333333332,5.033035,3.93269,9.077998214285714,5.15475,3.91752,7.513096515151515,3.22922,3.4088333333333334,1.50354,4.396239166666666,1.7239825,2.6346833333333333,2.7169266666666663,0.320234375,2.995705,3.13119,4.708966666666667,0.8118399999999999,1.4112483333333332,4.322435,0.56056,0.56056,3.2018249999999995,3.0176133333333333,3.5231999999999997,3.83158,4.37799,5.71295,3.761875,4.45951,2.787205,3.14449,2.5028433333333333,0.8664416666666667,2.53958,2.875105,2.88889,7.05264,2.88296,9.8673,3.20055,6.23355,3.087385,2.3179,2.7209,3.033325,1.8263575,2.4048825,2.0978275,4.00717,2.56215,3.7092825,2.8231,4.053624166666666,4.053624166666666,2.6952641666666666,2.6952641666666666,8.742635333333332,2.3801799999999997,0.8097139999999999,2.5879166666666666,2.4750566666666667,2.5293366666666666,3.7092825,2.0945,1.922316,1.6771260000000001,4.526485,4.225295,1.73149,4.380635,3.96763,6.391933333333333,6.76986,2.25793,4.39188,6.61531,4.21462,3.676525,2.8338566666666662,4.27659,3.600440909090909,4.57196,5.187056666666667,8.166185333333335,3.3476075,3.956855,1.2872733333333333,4.495505,5.587404,3.78853,4.077623333333333,4.541175,2.56808,2.7129666666666665,7.2244399999999995,3.08991,0.815612,6.16932,3.73203,2.9811099999999997,5.2539,2.9811099999999997,4.050125,4.06235,5.2986,1.01515,3.9631133333333333,4.433315,3.907615,1.30759,1.803095,4.89362,4.052575,2.682665,7.325178333333334,4.293995,4.610415,4.680775,4.5585925,1.5525325,4.22514,2.838545,3.68116,4.42081,4.38099,5.0714,2.732285,3.741975,5.2535,2.083423333333333,1.7918375,3.842033333333333,2.9458333333333333,3.2961466666666666,3.09933,3.8939333333333335,2.9723966666666666,4.89006,3.30769,3.49174,2.858685,1.81898,3.628133333333333,2.0267,3.017245,3.17611,2.957805,0.703225,2.1834775,1.7872066666666668,3.30716,2.15036,3.4630419999999997,3.53443,1.4024699999999999,3.4159800000000002,4.696375,0.843056,1.30651,3.644685,3.69193,4.220705,1.90614,1.9311966666666667,3.562045,2.4085925,1.6893566666666666,2.993755,1.994495,1.202,1.3669975,6.68291,3.35431,2.229685,2.4266,2.4850475,3.900215,0.8418525,0.3422642857142857,0.7900985714285714,5.83855,2.142846,4.448865,2.0256975,2.4164605714285714,3.9964262857142856,1.5799657142857142,1.1336385714285715,0.70187,0.6366357142857143,2.9892733333333332,6.7091,3.026285,4.03422,0.31724142857142856,3.577105,18.955246428571428,3.131675,7.369351352564102,1.08168125,1.08168125,1.08168125,1.08168125,4.4008175,4.01961,2.97899,2.368933333333333,3.49262,3.31865,4.300005,4.174215,3.45989,4.613215,4.4103,4.282995,3.691378666666667,4.3305,5.0748,4.217925,5.28675,3.67736,4.565315,2.6357266666666668,4.24204,3.293605,3.92736,4.03475,4.09136,3.12702,2.3721075,2.4745333333333335,4.2307,1.2989735714285713,4.08869,2.9985666666666666,3.5753786666666665,4.250995,4.209525,3.05989,2.736685,4.23648,2.95541,3.16783,5.05795,4.990855,3.17561,4.39758,1.75785,1.75785,1.812365,4.67837,2.69875,6.367386,4.891045,3.815538333333333,6.42635,2.9397,2.246515,9.408875,5.29385,6.2734625,4.608895,3.042263333333333,3.6613,0.28252758620689655,0.84529,3.856962666666667,4.37165,5.0642,3.2426100000000004,6.92531,5.2479,0.5757178571428572,2.58094,0.46102699999999996,1.8876102380952382,3.25692,2.29048,4.361535,3.760755,3.042405,3.423725,3.307185,3.598825,3.355105,3.507025,4.277385,2.299855,1.8876102380952382,2.76788,1.930725,3.568675,2.197015,3.788105,3.557655,1.715725,4.45323,4.77666,1.3151316666666666,5.13325,4.778995,4.15464,2.8652433333333334,3.0862700000000003,4.41097,2.210646666666667,1.3276759999999999,2.3218533333333333,2.57255,2.5527166666666665,3.5210666666666666,5.03605,3.265395,5.236330000000001,4.10215,4.891645,4.409365,1.850836,5.3553,4.50483,5.52775,4.3528,6.8701799999999995,1.5864975,5.085,3.21808,3.108635,2.025785,1.7788599999999999,3.861195,4.45509,2.1966466666666666,2.5906062500000004,3.419175,3.419175,3.0272,3.4946333333333333,3.21083,3.897255,3.624385,0.8107384615384615,3.05367,4.28346,4.923036944444445,2.978495,2.94777,1.763955,2.743365,3.54273,2.20544,4.672545,4.01298,4.453115,1.99791,1.0569545454545455,5.9455,3.655335,3.7418,3.3699999999999997,1.9637280000000001,30.374035845238097,4.54036,3.171395,4.80608,4.4734,0.8834,7.39714,2.205375,5.62755,1.6328366666666667,5.34195,6.020085,3.61861,3.043395,2.1006775,3.7352666666666665,4.628835,2.1018675,2.7879533333333337,3.705185,4.04343,2.59405,5.8902,2.14611,5.32985,1.21424875,4.549985,3.556655,4.19345,4.555195,3.09305,2.265563333333333,4.289405,4.663835,3.825375,3.825375,6.93275,1.512445,4.13531,7.4103666666666665,3.2176,4.214885,4.26371,2.745415,3.425345,4.229675,1.2786825,2.22115,4.361595,4.739535,5.6033,4.405005,3.096395,9.494853333333333,3.22713,3.65629,1.7251999999999998,3.66292,2.1060766666666666,2.59975,2.2231629166666664,1.29194,2.7405566666666665,0.9053685714285714,1.1293442857142857,1.1293442857142857,1.1293442857142857,1.89419,0.54209625,3.884645,1.2645233333333332,2.9162433333333335,0.9431416666666667,1.7557833333333335,2.647936666666667,2.2099800000000003,0.75823625,1.7532699999999999,1.6111733333333333,2.33884,1.6671559999999999,1.6671559999999999,1.60788,1.7363666666666668,1.05839,1.8737833333333331,1.50537,1.1415466666666667,2.901095,2.090025,6.06295,1.58835,4.15142,17.79851975,7.26007,3.25677,3.607876666666667,3.1411166666666666,2.928596666666667,2.6398566666666667,3.0041733333333336,0.7293383333333333,1.0107300000000001,1.0107300000000001,0.63215625,2.3591133333333336,4.3943,3.499345,1.684026,5.28235,3.89535,2.43999,3.961345,4.57559,4.179655,5.0125,3.5673999999999997,3.223895,3.305025,5.7968,3.7725666666666666,4.52151,0.5303950000000001,0.5303950000000001,2.294445,3.378065,5.60815,3.54502,4.00276,4.887575,7.3111060000000005,7.967320000000001,3.48953,2.23298,5.20065,4.358765,2.5883966666666667,2.17358,3.097205,1.2488766666666666,3.587825,2.37097,2.462755,3.385033333333333,5.40655,2.131335,5.187056666666667,1.6817775,3.5546333333333333,3.98953,0.9513628571428571,3.7658666666666663,2.84136,5.0829,1.225205,1.722565,2.2575475,2.3677275,1.6533175,2.428255,2.0227125,2.0590875,4.536915,4.450105,2.58467,1.873635,1.4487133333333333,3.688,2.0177733333333334,2.56475,4.582375,5.7789,2.0983325,2.939375,3.553915,3.512115,2.50737,5.51675,3.999125,2.819825,1.428275,4.346935,2.198205,2.667316666666667,2.476755,3.647245,4.962595,4.9203,2.70194,2.67949,3.1132166666666667,3.6302,1.9345333333333334,1.560614,5.4828,3.499033333333333,2.3067143636363636,3.061386666666667,3.0105766666666667,2.1875733333333334,3.3633333333333333,3.3861000000000003,3.7052,5.13365,4.088395,3.266016666666667,5.6045,3.46049,2.42609,3.738855,3.947825,4.031155,6.328624,1.979784,3.799705,2.68817,4.71375,3.635905,0.566245,2.22714,2.19233,3.233635,2.845175,2.151465,2.71511,0.636279,2.7723833333333334,4.84956,2.588275,5.05735,2.5095899999999998,4.303585,2.011265,4.856815,4.227305,1.824472,3.23224,7.39734,4.540695,4.69248,4.94013,7.023494659090909,4.50811,4.737405,2.22602,4.712815,3.066465,1.9154566666666666,1.93586,2.6845733333333333,0.9761185714285715,2.21067,2.4900433333333334,2.57302,3.1000633333333334,1.7250599999999998,3.242755,1.9536066666666667,4.5683,5.448770000000001,0.997535,1.94897,2.4549866666666667,2.84596,2.06121,1.0771133333333334,5.570276666666667,2.07774,2.6064233333333333,2.9395666666666664,2.65741,2.8356766666666666,3.20535,2.18533,2.91263,2.3345866666666666,3.997845,3.701205,3.80047,3.0068466666666667,3.0031666666666665,0.746545,1.77993,2.13741,2.0033,2.474056666666667,1.1475966666666666,2.72533,2.8984466666666666,3.96381,1.9785166666666667,3.514065,3.601015,5.7595,3.2406,0.6068766666666666,2.02718,2.840393333333333,3.7843999999999998,0.8062563636363635,2.88142,3.50103,3.610633333333333,2.712683333333333,3.230688333333333,3.6874,3.8706666666666667,3.0190033333333335,2.0875275,5.76875,5.14795,5.56325,5.47995,5.92155,1.7619733333333334,3.627005,3.5871666666666666,3.4463666666666666,2.9335133333333334,2.97423,3.851933333333333,3.3836,3.0426133333333336,14.113628333333333,4.227335,1.1049099999999998,3.475733333333333,1.6277259999999998,3.3961333333333332,3.3301233333333333,2.3929133333333334,5.789676666666667,6.810719666666667,2.478943333333333,0.873594,4.16022,3.6313,3.104685,4.84229,5.4677,5.96995,5.2005,3.37598,1.88691,6.468085,1.2872733333333333,6.3275275,4.76257,2.5344966666666666,4.477805,7.433066666666667,6.01055,2.2536166666666664,1.5052466666666666,2.2427325,7.348845,1.5563,2.9628766666666664,2.568106666666667,4.1988272222222225,5.94895,4.231255,6.46605,3.44218,5.4777,3.702775,9.25503,5.33835,5.71625,2.38659,2.4418325,11.413386666666668,3.28077,5.82745,2.42472,1.6406066666666668,2.9094466666666663,2.1361166666666667,0.69077125,1.088902,1.0615957142857142,3.97398,7.161593333333333,2.994772,1.4540266666666666,5.48285,4.38664,0.548349,3.657025,3.41883,4.5203,3.795215,3.63938,2.64578,4.305175,10.432120000000001,1.732505,3.8392749999999998,3.515995,3.868305,3.567135,0.7750275000000001,3.6435333333333335,3.8206,1.71776,2.5933433333333333,2.2919300000000002,2.5488,2.946263333333333,2.1737100000000003,2.34897,6.12442,4.970575,3.96324,4.597283333333333,1.7103833333333334,2.4541825,5.04,4.87982,4.798955,4.52119,4.93011,5.4238,1.75785,3.76583,7.71786,1.31873,1.5927933333333335,2.3924433333333335,2.42921,2.7878900000000004,4.83240625,0.8233785714285714,2.483555,3.33903,5.3074,4.444765,2.4253233333333335,2.8858366666666666,1.987605,0.5582625,1.928835,2.910285,7.4976650000000005,4.25412,4.33393,0.9050090000000001,2.955503333333333,9.316773,11.263096666666666,5.52595,1.17528,3.462745,3.77418,2.5943666666666667,5.506466,4.937985,3.8684,1.92941,3.6775333333333333,2.24253,2.560896666666667,0.8146418181818181,0.42204800000000003,2.48744,3.493195,1.9699886666666666,3.38295,3.3584,5.16655,5.41765,1.522296,3.2494633333333334,2.06519,2.06519,2.34266,3.016535,4.0662,2.8053933333333334,2.4165466666666666,3.44,3.567766666666667,4.181565,4.530585,4.45904,4.08868,3.89379,4.26992,5.39505,8.035344166666667,2.0034275,2.2828566666666665,2.8628199999999997,0.8899566666666666,0.7272966666666667,3.84734,2.296015,5.4348,2.8330866666666665,3.1077933333333334,1.826306,1.451195,4.161105,4.419415,4.13036,1.6408966666666667,1.28157,2.5674633333333334,2.043696666666667,2.5801000000000003,1.0619,1.0619,2.8124266666666666,3.987105,2.90929,3.10377,3.53854,2.071555,19.630455045454546,3.90857,5.56084,4.064025,4.17427,3.208135,3.4618,5.6594,6.17612,0.9027883333333334,0.9027883333333334,0.9027883333333334,2.63219,1.740657142857143,3.4947666666666666,4.3602,4.26028,3.3178,4.181065,4.286395,0.8936055555555557,2.0906433333333334,2.458136666666667,6.088348833333333,3.4634055,4.122641333333333,4.56988,2.1150575,2.0098266666666667,2.318356666666667,0.512455,0.9075580000000001,2.024705,2.231475,2.84767,12.911096666666667,2.4312666666666667,5.5096,0.7277714285714286,9.731835,5.7186,3.868845,4.392695,2.81115,5.61255,2.81115,2.917454,3.33221,3.761805,3.89624,3.826375,4.417305,3.48987,5.9175,6.848822,1.7175633333333333,2.638998,2.551795,27.55675454118404,1.577332,6.28195,4.21633,3.864925,3.86804,4.46545,2.65822,2.548245,2.181605,6.3151,6.65315,4.799955,5.1705,4.398015,2.038695,2.23007,4.19762,0.39216923076923077,0.39216923076923077,0.39216923076923077,0.39216923076923077,4.062045,3.372391666666667,1.1705133333333333,1.7517500000000001,1.1958222222222221,4.47553,2.4637366666666667,2.3455025,7.289375,3.397733333333333,0.1672403448275862,20.96873666666667,4.58347,1.7367599999999999,1.413575,2.29394,2.00476,2.494395,4.76105,2.902375,4.626245,4.003365,2.27588,7.2816374999999995,2.676935,1.943865,3.61683,5.82725,8.254840000000002,4.4229,0.3045756097560976,3.53821,4.154285,3.026756666666667,1.9551275,2.9137633333333333,1.5532983333333332,1.5532983333333332,3.950965,5.6683225,12.076908333333332,9.501625,0.6708555555555555,2.64162,3.789415,3.02775,5.00855,4.32708,2.0610399999999998,2.0610399999999998,3.736085,4.9968,2.5970666666666666,3.33678,4.92112,6.09225,5.658578,1.998498,4.74679,4.103895,2.510315,3.19964,3.2025233333333336,4.926815,4.56275,5.2703,4.54587,4.194665,3.77229,4.223165,4.347055,5.432,2.8566266666666666,3.1352733333333336,1.1649800000000001,4.24342,4.42797,4.18263,1.8997319999999998,1.9768800000000002,1.9030933333333333,3.4087,2.1159466666666664,4.496733333333333,1.8547166666666666,2.93405,2.88522,2.3086166666666665,2.4087333333333336,1.66742,3.7378666666666667,3.5233666666666665,3.7275666666666667,4.785846666666667,2.2502833333333334,2.9164666666666665,2.1011633333333335,5.81105,2.3062733333333334,39.52684408333334,2.3187656363636364,2.3187656363636364,2.4486399999999997,2.5683599999999998,2.24975,1.8220433333333332,2.8876766666666662,1.8406533333333333,0.7745923076923076,5.19565,7.644705,4.241815,4.16382,5.592,2.020633333333333,4.547465,1.91998,5.3066,4.718255,6.1035,4.257425,1.7260825,4.237015,4.684345,4.97921,5.2684,5.81565,4.199775,3.1293133333333336,2.53592,2.1454425,1.762355,4.35171,1.99067,3.689965,3.689965,2.25922,1.5395666666666665,2.228876666666667,2.5426733333333336,2.7523733333333333,5.47905,2.868183333333333,1.181475,1.181475,2.82459,2.7738600000000004,2.4955233333333333,2.5455466666666666,2.3953866666666666,2.493936666666667,2.4240033333333333,2.2020030000000004,3.0256230000000004,1.637515,0.82362,62.61595226388889,3.9717360000000004,2.762723333333333,2.001548,0.830588,3.314923333333333,1.60612,1.60612,2.4850666666666665,3.176903333333333,0.813895,2.5224766666666665,5.4302866666666665,4.174133333333333,2.52963,2.857976666666667,1.9719466666666667,2.585506,0.31064375,2.8603633333333334,0.736626,2.4639233333333332,1.2774839999999998,1.2774839999999998,3.3267366666666667,2.13334,2.4611633333333334,1.3003646666666666,2.37505,1.3003646666666666,2.0721333333333334,3.31466,3.526033333333333,1.379982,1.379982,2.6569566666666664,1.3290066666666667,2.72856,2.3024999999999998,4.842485,3.93132,12.876589166666667,7.137045,3.520895,2.712415,4.389075,5.2981,5.54875,2.722405833333333,4.13408,3.93523,2.3928066666666665,4.57749,3.3099900000000004,2.7531033333333332,4.36152,2.2372900000000002,1.0982942857142857,4.07334875,3.03144,2.796455,0.8079685714285715,2.682915,3.278555,4.098415,4.24231,6.77295,2.4973899999999998,1.9758559999999998,4.543535,4.70393,2.3409925,2.764690833333333,1.9838533333333332,2.149414,0.867144,6.20735,4.623675,4.03277,3.389795,3.1826866666666667,4.284775,5.24475,2.9146900000000002,1.72424,0.5664066666666667,14.337820333333333,0.502550909090909,0.502550909090909,0.502550909090909,3.0767666666666664,4.1086,0.502550909090909,7.253568333333333,4.494883333333333,0.700969,0.700969,3.2247166666666662,3.15744,3.12893,4.552615,4.47685,4.45589,2.1181575,4.671302666666667,4.10841,3.530174047619048,4.79078,2.8815512500000002,2.3805325,2.431495,2.724,1.5542925,3.3940799999999998,3.0896833333333333,2.3394025,2.1990525,1.9757125,1.7968833333333334,1.5073525,2.578725,1.0975533333333334,2.714825,0.6076471428571428,4.97459,1.7557225,0.710665,2.3804125,7.7753250000000005,2.41945,2.168987,3.403555,7.10601,2.50742,4.636065,3.083785,5.91227,4.19595,4.290345,4.20304,4.625795,2.9524633333333337,4.259015,1.1941514285714285,4.22022,2.46345,2.6321133333333333,2.570945,2.0861,2.35872,1.274225,5.50395,0.9287818181818182,4.91436,5.34115,5.45225,5.99645,4.0548,2.4433433333333334,1.8791060000000002,2.8666,2.9845400000000004,2.38296,3.9380666666666664,2.67125,4.509495,1.808048,40.814237142857145,4.910265,2.4347600000000003,2.943433333333333,2.9486733333333333,1.5347266666666668,5.583408333333333,4.358765,2.8466533333333337,3.005376666666667,2.2872033333333333,1.7056175,5.7081,0.8551642857142857,4.511667142857143,1.4328571428571428,3.4209666666666667,3.556566666666667,2.7583699999999998,1.37835,5.12737,1.7929739999999998,1.7929739999999998,2.59367,2.9618175,3.6140666666666665,3.6706333333333334,1.4269999999999998,2.96734,2.814783333333333,6.276932666666666,3.028116666666667,3.6762466666666667,1.1417216666666665,1.3773633333333333,3.07708,0.893736,5.4855566666666675,3.6893666666666665,2.903033333333333,3.8472333333333335,2.876246666666667,2.7546666666666666,3.3747333333333334,1.6259466666666667,2.4850475,2.756683333333333,3.6465,2.5645666666666664,3.578533333333333,2.4378100000000003,0.583898,9.855583205128204,2.7546033333333333,5.4772,5.0595,2.7847766666666662,2.8121333333333336,1.352645,2.0820233333333333,2.03637,1.352645,4.814845,0.4548575,0.4548575,1.0386825,1.0386825,0.9728725,0.9728725,2.587675,2.837505,3.1017,1.432415,1.847275,3.61853,2.79061,4.300015,4.86606,2.2469200000000003,4.35999,2.42173,4.874795128205128,1.5286925,1.5286925,2.203355,1.6936240000000002,3.8163391666666664,1.9407075,4.44278,1.4038216666666665,2.3722625,0.6145907692307693,1.2374071428571427,2.2216275,1.984925,2.1462275,1.47527,4.471535,4.499675,2.7621466666666667,2.862223333333333,1.3899633333333332,0.7518400000000001,2.2918766666666666,3.804845,2.7370966666666665,4.807385,5.63055,5.18605,3.914695,6.789060000000001,1.6965166666666667,5.970645,1.79892,4.684515,4.85178,6.088395,2.56483,2.33069,1.7925325,2.019,2.019,2.48047,2.48047,4.45139,5.62595,0.998032,4.34567,3.50005,3.477965,3.0315366666666663,1.41224,2.8639733333333335,4.21742,4.4257,1.8968779999999998,6.50335,5.6786,1.7481633333333333,1.2895875,3.651095,4.295496666666667,4.017875,3.52674,4.24826,0.675995,3.11688,3.173576666666667,2.69511,3.0107466666666665,2.2031433333333332,3.9789666666666665,1.5299714285714285,1.5299714285714285,1.5299714285714285,3.2235266666666664,3.3260666666666663,3.5524,3.52290275,2.3923325,1.3225628571428572,3.07351,3.2684599999999997,1.3419957142857142,2.98555,2.7105766666666664,1.2452771428571427,3.2582166666666663,3.0096233333333333,3.0729233333333332,2.92989,2.7079533333333337,2.0458275,3.462733333333333,5.189226,4.533395,0.9628349999999999,1.4827,0.657956,3.5776,8.804915000000001,3.1666866666666666,3.32975,1.97928,4.226286666666667,1.87034,7.3924216666666664,6.405226666666666,2.7506033333333337,2.4902988571428573,3.92841,5.2721,1.5596619999999999,1.155688,1.250916,2.15995,11.389676666666666,2.81188,3.0037233333333333,3.177745,3.728465,2.15194,1.22960125,5.4858,1.0723683333333334,2.963511153846154,4.69015,3.084595,3.264863333333333,3.08576,5.09535,1.176595,2.3289325,2.14473,2.14473,3.785145,5.7669,7.04614,4.169325,3.2826,5.054,1.7107325,2.292304166666667,4.459135,4.493635,3.74106,1.7151666666666667,3.0142100000000003,3.437665,4.072985,2.576875,4.1016,3.61576,3.61068,4.07387,3.663845,3.859015,5.41855,3.3228000000000004,2.4498599999999997,4.29282,2.95268,3.80058,2.306935,2.421765,2.693065,4.7146,2.394685,3.343129318181818,1.619685,2.969815,3.3557,2.10754,2.0539725,0.8305083333333334,0.8305083333333334,1.7256325,3.9296460606060606,4.295015,2.9146433333333337,3.969175,3.3099741666666667,2.4213245714285714,1.05046125,3.08836,1.62075,4.56959,4.048205,0.9093891666666667,1.823305,3.908615,2.9058325,1.5913475,1.6174099999999998,5.142202857142856,1.0193633333333334,2.72414,3.17606,2.711425,2.59083,2.713529,2.22761,1.0137275,2.825205,2.97095,3.392605,1.3951900000000002,1.5507166666666665,1.8135,4.592185,2.11202,4.568695,4.9351,4.75794,5.71915,6.1625,4.2783,6.067265,4.146493809523809,0.7702463636363636,2.7366,4.396215,3.822775,0.45797727272727273,0.872748,2.952995,4.261395,5.06685,4.92826,3.3618164285714287,2.994005,4.77802,1.908852,2.6354,4.705335,4.12635,3.577665,3.37277,3.81456,5.1755,3.554215,5.228145,0.984451,3.60406,2.54185,4.831635,4.455465,4.627285,2.0981,2.69874,2.907965,2.0090266666666667,5.19295,3.82362,1.5418857142857143,3.28117,4.2078975,1.467046,5.68951,1.929268,2.52761,13.959735482006298,3.333206666666667,1.4057733333333333,1.6228550000000002,2.1435866666666668,5.424015,1.6404900000000002,4.372436666666667,0.6867346153846154,3.424466666666667,4.02994,7.3731475,2.4427833333333333,2.8356433333333335,2.8356433333333335,5.0738,4.423785,3.69123,3.206125,5.0672,5.3511,2.373845,3.4916,4.883205,1.2657483333333335,2.9895,4.67315,3.713005,3.070035,2.3491566666666666,3.254395,3.59479,7.136606666666666,6.0818674999999995,0.730443,3.51275,3.10037,3.21536,4.321955,4.14047,3.76582,1.502264,4.65016,2.440355,2.778015,4.217305,4.27505,4.620045,0.9708146428571428,2.6698299999999997,7.562542666666667,1.5077616666666664,2.124222857142857,2.28358,3.74601,3.40771,3.318785,0.6715800000000001,2.4842425,1.6696,2.2358775,4.655475,5.4147,2.91958,9.477625,2.52888,2.752133333333333,1.09172,4.63523,5.28605,2.107465,6.042434999999999,2.803475,3.322895,5.42545,4.52282,4.95944,2.22398,1.664015,1.664015,2.81655,3.329515,5.008734166666667,1.5631875,5.835591666666667,1.48461,3.9395,1.5984116666666666,8.875239,4.949525,2.85638,4.970005,4.96931,3.65295,1.1195549999999999,2.2474575,3.6760333333333333,3.2571866666666662,3.5192333333333337,3.7794333333333334,3.654875,2.864825,3.040025,3.259925,1.557,2.40882,1.9255566666666668,2.851906666666667,1.9116533333333334,5.3987549999999995,3.3323766666666668,1.6808766666666666,3.2157966666666664,3.273385,2.55445,5.65965,6.0751,2.894835,3.421735,3.705975,2.982485,2.61598,1.1814366666666667,0.8557219999999999,6.072234999999999,2.824855,2.91513,5.60035,6.1159,2.72734,3.3282000000000003,5.83065,2.45635,0.4287183333333333,5.2995,2.908245,3.616555,3.03136,1.4349,5.2263,1.339118,4.69057,0.92612375,1.4073166666666665,2.96043,2.3412333333333333,2.5401341428571427,4.05713,5.138,5.75013,5.75013,4.9435175000000005,4.9435175000000005,4.828785,3.1325133333333333,4.518735,1.02941375,6.07615,4.076275,3.7474000000000003,4.415295,3.7267,4.272295,1.85332,4.29345,3.113438,3.23205,4.26043,2.44377,4.552185,5.3368,3.58756,3.392185,5.18585,3.68736,4.9757,3.3861,3.0734133333333333,5.96855,4.226195,2.9363533333333334,6.282478333333334,1.5188666666666668,2.195635,4.746845,4.448745,5.8117,3.937405,1.923179,1.923179,13.724100095238095,6.34988,4.985885,3.612315,2.952250769230769,4.51251,4.65159,2.686056666666667,3.4495666666666662,3.527855,3.8346666666666667,3.7266666666666666,4.9188,1.81653,7.998703333333333,2.507335,2.0446875,4.84524,2.50772,4.88256,4.304485,4.78632,0.7893122222222222,3.19413,3.76584,0.94795,2.80128,3.7050583333333336,1.415832,2.031563333333333,3.006906666666667,2.87018,2.598263333333333,3.528966666666667,2.3800133333333333,0.5562921428571429,3.0861933333333336,2.7601533333333332,2.9034,3.1524133333333335,2.052,3.32725,7.225966666666666,4.918045,2.377866666666667,1.9736900000000002,2.6025666666666667,3.6905,2.5198,3.7893499999999998,19.0982075,5.68805,3.391181,5.99125,3.877875,5.351095,1.57512,6.03995,1.63999,3.993975,4.268395,5.4045,5.4685,1.0392222631578947,5.3375,2.40374,4.927705,2.7857,4.569495,5.1345,2.852375,2.0477,1.427494,2.2564275,4.317555,4.81625,2.414925,1.538125,3.0545633333333337,4.277093333333334,3.2150166666666666,6.086,2.00364,3.759665,4.35942,3.70984,4.00883,3.68748,4.235125,4.621265,3.97207,2.7734199999999998,2.7734199999999998,5.268903333333333,1.99496,2.6865799999999997,3.95993,1.757266,7.39348,3.52363,4.81557,4.216466666666666,4.4786,2.11076,4.549075,5.2951,4.071915,2.0523175,3.84725,3.21312,1.3412275,1.829865,1.1410500000000001,0.7096083333333333,1.6358466666666667,1.0989,4.49512,1.1649222222222222,2.56241,1.6861899999999999,1.890965,0.9322916666666666,1.94847,2.74525,1.42072,3.3222166666666664,2.569096666666667,4.500183333333333,1.5782100000000001,2.51575,3.368233333333333,2.87375,2.2175033333333336,4.337179166666667,4.49465,5.316483333333333,20.296792833333335,2.9184666666666668,2.178945,0.6276976923076922,0.640091,4.2816616666666665,1.948648,4.203765,4.37973,7.4999155,3.783205,3.30538,4.108895,3.17208,3.24523,3.3577666666666666,2.9926666666666666,3.368133333333333,6.32725,4.48637,0.923616,1.177795,5.31195,3.2118066666666665,2.4890466666666664,2.0789166666666667,2.32282,5.93005,5.12255,2.3526075,1.4486066666666666,3.55548,5.2107,9.37525,5.468670416666667,5.0323,4.309555,5.53575,4.764615,4.46204,4.67451,4.572125,5.4678,2.09748,5.4687,1.5612,5.3678,0.7445066666666666,4.849395,5.41535,6.04995,6.3459,4.59337,5.95405,5.62325,6.2815925,1.8675333333333333,1.6618571428571427,5.9124,3.511075,6.503593333333333,5.11135,5.4226608333333335,5.07905,6.0923,1.3112,4.39305,5.63655,4.1303,4.72227,5.8063,2.699975,3.904955,4.330665,4.36612,1.0083166666666667,1.7826000000000002,1.325698,4.691025,4.01474,4.204375,2.7207633333333336,3.1118,1.9242066666666666,2.1165033333333336,0.38718,3.5485666666666664,1.648294,2.238593333333333,3.3272133333333334,2.24278,3.1531833333333332,2.4500825,2.63175,10.950233333333333,3.546,1.748886923076923,4.154675,0.7844845454545454,4.36684375,1.0576125,1.18499,1.9877,1.02772375,5.793919000000001,1.1644944444444443,1.1644944444444443,1.1644944444444443,3.157806666666667,1.760298,5.10445,2.961825,1.422405,1.479675,1.5678425,1.5044125,1.577496,5.386310833333333,0.8850422222222222,4.69281,4.214695,3.231203333333333,1.0342414285714285,2.25178,2.254365,2.254365,1.6438833333333334,3.6616683333333335,4.58494,5.1044,5.47275,4.1348,5.5382,2.9594066666666667,2.2042025,3.18419,5.42665,3.844025,4.17078,1.033915,3.9211175,5.3177,1.8320575,3.421135,3.0227533333333336,4.59486,5.4178,2.248,5.9149,6.3903,4.347955,4.684575,4.13386,3.228575,7.92841,4.1332,6.567863333333333,3.357675,2.77624,4.71414,2.6801399999999997,3.36897,4.894455,2.748086666666667,3.07451,4.039805,1.4496399999999998,10.9896425,4.094135,3.18248,15.610430952380952,4.12539,1.6697633333333333,3.1601533333333336,2.292375,2.6561,4.20943,2.739902638888889,3.73011,3.982815,3.142575,4.00745,6.04463,1.2364033333333333,2.1779375,4.134915,4.670525,5.4409,2.281105,0.6305966666666667,5.081,4.232155,2.1441925,1.2055416666666667,4.75702,4.994245,0.9581244444444444,3.752955,12.5355575,1.284648,0.38987499999999997,3.9435333333333333,4.22516,1.1366666666666667,3.701725,3.68548,6.090843333333333,1.3519633333333332,3.563245,4.08414,3.239805,4.539415,4.610995,5.947,7.706334999999999,3.188315,3.4981,2.98376,16.146104375,3.4247825,2.748125,1.1957875,2.0998775,1.3248975,2.09348875,1.557575,1.99986,1.8949675,2.4519525,2.590675,2.53405,2.066845,6.0357,4.24492,3.743715,3.244275,5.687333333333333,2.6562233333333336,5.072,3.2770966666666665,1.23032,3.715095,2.045795,2.5297153333333333,4.90156,4.62375,4.748945,5.5591,2.856313333333333,3.23493,2.6888233333333336,3.93818,3.647365,2.18289,1.785575,3.881066666666667,5.1044,4.281015,2.3702566666666667,12.261596666666666,0.7037333333333333,2.697945,5.04485,2.428116,1.053796,2.968125,7.399081666666666,7.052975,4.766295,4.159455,3.994195,1.966795,2.42505,2.8334343333333334,2.0117333333333334,4.078216666666666,3.64091,4.5305,0.513964,6.17215,3.5549999999999997,3.4903,3.6036,6.47855,9.488753500000001,4.3356835,1.12319,2.2122725,2.37416,3.813465,2.65453,4.01727,5.12115,3.616566666666667,3.0257400000000003,4.057155,4.074265,4.49354,3.7213999999999996,2.4398066666666667,3.0422,5.52785,5.69175,3.294373333333333,1.621145,2.3955766666666665,28.826176115384616,1.3857775,1.3857775,2.31894,4.445415333333333,4.11656,4.562875,3.17282,3.166365,4.31403,3.0653633333333334,4.164215,3.0653633333333334,3.612695,1.7974033333333335,1.5320799999999999,5.7726,2.4551725,5.0264,3.22162,2.79113,6.828436666666667,1.9080333333333332,5.0612,5.12255,3.446255,3.80806,4.74045,2.05986,5.21855,3.3699149999999998,6.942276666666666,5.664550833333333,2.627825,4.05496,4.99044,2.14253,2.8137899999999996,3.8916,0.4529742857142857,3.209096666666667,10.047366666666667,3.982265,3.85263,5.4767,3.4658716666666667,3.242295,1.3283714285714285,4.50954,5.385,3.14983,2.524975,4.91212,3.97933,4.309215,4.181015,2.2971775,2.2971775,4.03842,2.72548,2.7316447727272726,1.895595,5.19545,3.950605,1.3476628571428573,4.009925,4.875365,2.92544,7.6242399999999995,7.67414,1.473742,4.177205,4.731925,7.09948,0.823406,7.692143333333333,3.6105575,0.6279990909090909,5.3807,5.4081,5.2155,4.349295,4.8857,4.610485,4.970035,3.94109,4.29651,4.708765,4.318245,5.37715,4.82528,3.88194,3.46881,4.51983,2.82818,0.9722289999999999,4.40861,2.49697,1.65861,4.22508,4.753215,5.68025,1.0318457142857143,5.1357566666666665,3.02985,2.631813333333333,1.7882625,1.2467,11.581760833333334,2.7938066666666668,3.2903633333333335,2.022893333333333,3.734005714285714,5.868573333333334,6.146554999999999,2.61775,1.9388966666666667,2.2261800000000003,2.2261800000000003,2.2261800000000003,1.43365,4.404295,4.53342,3.047195,4.69245,8.284044999999999,4.1181,1.196062,2.409735,3.11327,3.943705,1.654894,4.248145,2.93258,1.32933,3.8341999999999996,6.605452857142858,6.864555,4.06947,3.927835,3.2175999999999996,5.38945,4.495245,5.56708,1.92605,1.92605,5.00785,3.79784,2.649242666666667,2.649242666666667,3.695135,1.324282857142857,4.92026,3.191645,4.203355,4.24576,4.846115,3.395466666666667,0.9820457142857143,4.233565,4.864965,4.479725,4.797825,5.11075,4.96155,4.38596,1.9393,1.420425,3.30831,4.01933,3.16515,4.3462,2.16609,2.9671725,5.11255,2.790555,5.01865,8.334785,2.4336520833333335,2.73493,4.517542380952381,4.666111666666667,1.6529275,2.0281059523809524,1.0822416666666668,2.0281059523809524,1.8768966666666669,1.8768966666666669,1.532318,4.682525,3.16961,3.562275,2.470455,3.9817,1.7192,5.46945,3.016585,1.6644125,2.5516033333333334,3.94738,4.09871,6.228791,4.790215,1.399202,0.902755,3.51209,6.17821,2.5003466666666667,3.538775,3.68001,3.68001,2.30726,3.37294,2.95466,1.3806896753246753,3.23644,3.49415,3.27233,4.49831,3.86984,1.5662325,3.194755,4.77972,4.68596,4.99492,4.327645,1.7851425,2.12459,1.3285366666666667,2.1926075,3.458945,1.9491175,3.731315,3.4560999999999997,3.107265,4.26413,4.99786,1.799035,0.986758,1.7955333333333332,1.41333,1.2243777777777778,5.05465,3.885865,1.1649800000000001,0.22165826086956522,0.22165826086956522,0.22165826086956522,3.704995,5.808653333333333,4.496105,5.28895,3.319455,5.0047,4.645865,4.394365,2.715635,3.37401,1.575025,5.32345,4.489215,3.91347,4.3892,4.34716,0.7955909090909091,0.7955909090909091,0.7955909090909091,0.7955909090909091,1.009176,1.009176,4.136205,4.01636,3.576965,2.86636,2.799535,6.1023,4.498455,5.26425,4.411715,3.30552,2.4557100000000003,9.86597,1.7957360000000002,1.7957360000000002,4.24861,5.5488,3.26803,0.4548575,0.4548575,0.4548575,0.4548575,0.4548575,0.4548575,5.270183333333333,5.0233,3.60158,4.47648,2.610978333333333,2.610978333333333,2.662635,2.9825696666666666,2.5894733333333333,3.04758,3.798705,7.090649000000001,1.401426,5.0106,3.61401,4.333075,10.098201666666668,2.6572533333333332,3.20066,0.8860257142857143,2.33182,4.98584,4.243635,1.2167025,2.8868033333333334,4.58248,5.7043,2.6971,4.9697063888888895,0.9888222222222223,1.9490100000000001,4.5755,4.902885,3.306992,2.5828,2.8278766666666666,1.406815,8.079111666666666,3.3688333333333333,2.23839,2.927385,2.8261833333333333,3.718035,4.090165,2.774016666666667,3.3600999999999996,6.02375,1.5144733333333333,4.77372,5.05745,4.495755,3.95238,1.9981166666666665,3.004805,3.707955,3.843175,2.842475,4.73063,4.81472,2.848613333333333,2.00057375,2.8997233333333337,2.63145,2.8723033333333334,0.8083663636363636,2.1958875,7.9398275,0.46396125,3.0184033333333335,1.5762933333333333,2.4725533333333334,3.3310133333333334,2.83919,1.2056555555555555,1.774314,3.201083333333333,2.1593325,3.557055,2.15718,2.8656433333333333,1.3732033333333333,3.596168,1.808045,1.0878842857142856,3.0667833333333334,2.0029225,2.3489299999999997,2.64189,2.705296666666667,3.0402966666666664,3.277233333333333,3.075283333333333,2.791983333333333,2.74222,3.0124566666666666,2.609825,1.8077500000000002,2.32754,3.01332,1.60975,2.9536599999999997,3.7789409523809523,2.8938,2.72514,3.0048166666666667,3.8028999999999997,4.620048333333333,3.088696666666667,1.8430457142857142,1.8430457142857142,2.284145,1.12331,2.51125,3.321815,4.6234275,2.670375,1.7855875,2.1712125,2.072855,3.761225,3.141875,4.047905,4.75535,1.75614,2.57713,3.61687,1.415718,1.415718,2.732925,0.604666923076923,3.0352584615384615,2.132705,2.132705,2.9630500000000004,2.48162,2.7386133333333333,2.6866433333333335,2.655775,6.342186666666667,3.892045,3.892045,3.768215,3.00514,2.29214,3.08269,2.51868,2.96779,5.2023,0.4960175,0.680971,4.10817,2.39156,2.975625,6.653285,3.61187,1.6461659999999998,4.544553333333333,4.857235,4.007815,4.34828,5.2502,4.64737,12.898436,3.217885,1.6676566666666668,2.80923,4.0249,4.87515,3.168955,4.069325,4.26799,3.543645,4.164115,2.8438199999999996,4.00602,2.9150466666666666,2.3761266666666665,2.3761266666666665,3.975135,3.00688,3.22856,3.743815,2.51331,3.384025,1.964625,1.8864825,1.901795,1.9467025,1.7279725,3.8058604999999996,3.69069,2.537335,6.378575,4.05326,2.3663833333333333,1.7749566666666665,3.463885,3.85801,3.584215,3.0738697916666666,3.265625,3.04351,4.159995,3.40892,3.74409,3.968245,3.5887260000000003,3.517045,0.6877083333333333,0.6877083333333333,0.6877083333333333,3.310575,2.415005,5.5323,2.844365,3.66518,7.831596666666666,2.94243,0.38045,5.64605,0.757015,4.4711276190476195,2.35724,3.902365,1.784085,4.5703,5.418506666666667,4.66696,3.62753,2.72848,2.71813,1.5110233333333334,2.40129,0.44573631578947365,0.5768170588235294,2.7272866666666666,1.4513,2.0929525,3.854015,2.535005,5.36215,2.916206666666667,2.8495316666666666,3.543785,5.28856,1.9924425,0.9222400000000001,2.471855,3.236732,1.2914709090909091,4.82621,3.67936,3.56449,2.67586,4.23212,2.741906666666667,2.8184566666666666,3.3137566666666665,2.2382,2.600426666666667,2.262375,3.560333333333333,2.53056,5.683525333333333,2.2768775,1.95388,2.4827033333333333,5.086558,3.1773360000000004,3.1773360000000004,2.485536666666667,3.93564,2.3025575,3.49811,3.35329,0.5967733333333333,4.360775,1.9793675,11.481163333333335,7.12761,2.862565,2.92114,3.26919,4.79742,2.899295,3.49066,0.27895466666666663,2.17216,3.542533333333333,0.8324283333333334,3.961,1.3868885714285715,5.31635,3.26869,2.86382,3.487295,3.65322,2.207225,4.4598,3.830415,4.16914,6.28815,4.179905,3.099956666666667,3.2979233333333333,1.605178,2.090975,4.123495,4.18533,3.87875,2.789995,6.28485,1.94446,3.132,2.583365,3.8964,10.516798333333334,3.611655,6.109133333333333,4.280285,4.679105,0.9515788888888888,5.301987,4.61264,2.4875833333333333,2.8416033333333335,3.6786,2.7500433333333336,2.35763,1.8495866666666665,1.9628433333333335,3.74916,1.656814,3.31641,5.193169333333333,2.6557666666666666,1.067420357142857,1.067420357142857,3.89418,3.1242425000000003,3.1242425000000003,4.007233333333333,3.0642133333333335,3.440085897435897,3.6618999999999997,3.8587333333333333,2.66001,2.4299500000000003,2.3099166666666666,3.24462,2.2050525,2.68521,1.62905,5.877675,10.124483666666666,0.5714715384615384,0.5714715384615384,0.5714715384615384,0.7044758566433567,0.7044758566433567,0.5714715384615384,3.124306666666667,2.96726,4.371791666666667,1.568805,1.67045,3.2653119999999998,2.40014,2.8449533333333332,3.0502366666666667,3.17275,3.5379,7.044906666666667,3.026206666666667,2.6297466666666667,3.6627333333333336,4.348885,2.72798,3.5068333333333332,5.40841,2.3773,3.4012333333333333,1.3866100000000001,1.3866100000000001,2.5458233333333333,0.48312263157894736,2.55773,2.71811,3.055016666666667,3.6676,2.2582366666666664,1.46455,2.70463,3.2540066666666667,2.3052333333333332,4.816895,2.530705666666667,3.86659,2.8682,4.316605,0.5150089999999999,7.064675,3.095042,3.095042,7.463085833333333,1.7485266666666668,1.7951133333333333,2.3528966666666666,4.44909,2.36742,1.9047366666666665,2.5000166666666668,1.37189,3.4267,1.7261499999999999,3.1281494999999997,1.33312,0.2771909090909091,0.2771909090909091,5.04365,4.053505,3.030835,2.80796,2.88559,3.73623,1.2402833333333334,6.354,3.703005,2.825975,1.7821875,1.1029175,2.15556,2.3528966666666666,2.594505,2.04232,5.925665,4.751415,4.533665,4.244335,2.27702,0.6608508333333333,7.557175,2.1031075,1.6491675,3.250225,4.3255,2.315805,1.8889166666666668,4.64062,4.51881,3.3549666666666664,3.2168466666666666,4.9739,5.15015,3.5479000000000003,2.599858,2.599858,4.16094,4.607955,5.7947,6.571813333333333,2.8485133333333335,4.05251,1.3453271428571427,2.6627,5.194812,3.91907,1.799712,4.522845,3.2303275,4.76309,2.28486,4.304355,4.657,5.4214,4.60877,2.3309133333333336,2.54562,3.928933333333333,2.0152933333333336,2.7846,2.5852533333333336,2.467633333333333,0.8596769999999999,2.16956,2.7089700000000003,2.1238086666666667,4.946505,4.582845,4.979705,3.886105,4.463645,5.606465,12.999075,5.73515,3.6285,4.777415,4.01686,4.6192,2.9848966666666663,2.9391176666666663,3.6950333333333334,1.2082625,2.8305,2.833725,5.2255,5.82225,5.14555,2.6776133333333334,2.4351266666666667,2.22263,4.205033333333334,4.1466575,3.4849,4.1466575,2.403413,2.278703333333333,2.4421133333333334,2.193455,2.860666666666667,1.7896,0.8850166666666667,1.4369533333333333,1.8430166666666665,2.0388033333333335,1.7049899999999998,1.3832466666666667,2.4216866666666665,2.7487633333333332,1.51768,3.2692633333333334,1.3584766666666666,1.76281,2.68737,4.123033333333333,2.57626,2.794233333333333,2.4163566666666667,3.53392,2.14674,2.788733333333333,2.952806666666667,2.3795800000000003,3.09704,3.0430325,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,4.969435,3.061805,1.03255,3.16037,2.5626533333333334,2.908846666666667,4.270515,3.2042533333333334,4.529475,3.415128,1.786356,3.2175766666666665,1.7816833333333333,1.0986275,0.9515319999999999,1.7028333333333334,0.9149683333333334,0.8227691666666667,1.3516679999999999,3.2839,1.675244,1.7538833333333335,2.0707211111111112,2.7165644444444443,1.6815,1.6421133333333333,1.5851183333333332,0.9351383333333333,1.238855,0.7502366666666668,1.036402,3.139875,3.488455,4.160325,4.431375,4.162775,2.97911,4.38469,3.938833333333333,1.79504,3.57314,2.042205,3.443695,2.4104233333333336,0.7624918181818181,4.260595,4.96599,2.08922,1.2488325,2.935525,3.29381,3.6616683333333335,2.8547433333333334,2.4514,0.8687575,1.94203,5.106595,3.76605,2.24501,1.5982783333333332,3.67414,2.0073575,0.6857509090909091,4.66501,3.64693,4.015515,2.405575,1.3207900000000001,4.28578,4.37684,2.5632800000000002,2.710096666666667,2.4903366666666664,2.6738133333333334,2.7331066666666666,3.02215,3.1148466666666668,1.23458,2.588125,2.552773333333333,5.36165,4.05695,3.65619,4.495135,15.771207617424242,4.5016774999999996,4.688885333333333,2.833765,3.95901,4.87971,1.469782,2.2412625,2.41513,6.5079025,3.974075,3.75984,4.654565,2.41513,3.88127,2.207235,2.478263333333333,2.848903333333333,2.722156666666667,1.2968666666666666,4.32655,3.890585,2.575225,4.25656,2.8569833333333334,2.9011866666666664,3.641645,3.16974,5.50485,4.567645,2.787035,3.52612,2.67224,3.26777,1.444594,1.444594,3.474466666666667,2.2686733333333335,0.2492035714285714,5.143504,0.907716,3.85124,4.67386,0.5560691666666667,4.807795,8.552903333333333,1.7918375,3.614855,3.89562,3.6090666666666666,3.35617,2.22809,2.89479,3.76558,4.190435,3.092335,4.0405,1.0058666666666667,11.586736666666667,3.52105,3.133565,4.475,2.53393,3.86645,7.466606666666666,4.32926,4.225615,4.183505,4.305285,5.3525675,1.6809125,3.2412033333333334,4.797495,3.9025,1.9102599999999998,3.74879,3.93193,3.744245,3.90103,5.0115,4.22795,2.484885,3.683835,3.61296,5.43765,3.412405,2.22177,2.20656,2.22628,2.9843933333333332,1.3143733333333334,3.7055333333333333,0.8250263636363637,3.416733333333333,3.245706666666667,2.5028566666666667,1.7200499999999999,4.66306,4.54043,4.126765,1.8097775,4.892075,4.17546,0.7325979230769231,0.3345619230769231,4.366245,4.53588,0.9656375,0.3345619230769231,3.322455,0.7325979230769231,0.7325979230769231,0.3345619230769231,5.62181,2.50454,2.6568833333333335,5.6523,4.108085,3.224765,0.7983733333333334,3.18029,3.617255,4.343475,5.40565,2.1327275,0.7140692307692308,4.4269791666666665,2.73286,1.4518499999999999,1.9430925,1.068302857142857,2.5384966666666666,2.3776733333333335,3.891325,5.30135,3.2626833333333334,3.3285933333333335,3.205783333333333,3.0327533333333334,2.86249,4.11200875,1.4973825,1.92918,4.16607,5.72435,2.194183472222222,4.073345,2.87917,3.94955,4.23291,3.19898,1.2801075,3.1217,6.33155,3.831985,4.0751,5.11435,5.6415,2.98038,3.351545,4.546095,3.2165,3.320575,8.37626,3.64537,4.7802075,2.59416,1.31871,2.816273333333333,1.917495,2.172295,2.043735,5.01525,0.6880307142857143,3.56026,3.71514,1.9580666666666666,2.80196,4.697445,3.26328,2.840595,4.662165,5.737,9.304027333333332,2.768943333333333,2.7720933333333337,1.7132580000000002,1.6804833333333333,1.2201233333333332,1.2638233333333333,2.6407233333333333,2.46888,3.0202233333333335,4.697225512820513,1.463915,2.3784033333333334,5.29275,5.5138,3.87786,3.454955,2.883565,2.66835,2.08056,2.2095,1.8450766666666667,2.240105,4.0106,3.98576,5.0302,5.4498,4.087645,5.5744875,3.27425,2.531475,6.57738,3.479315,8.245695,5.0403625,5.0403625,5.966255,1.5180766666666665,1.3153325,1.4830766666666666,0.716643,4.994455,3.9004999999999996,3.51042,3.51042,2.08832,4.44853,4.43323,4.59724,4.316315,2.7593,2.52771,4.38703,3.3205733333333334,5.0482458333333335,3.97241,0.859700909090909,5.7893,5.33555,5.07745,5.40505,3.075125,5.7601,4.73315,0.8599153846153846,5.06815,7.621581666666667,2.9758,5.70385,5.75155,3.40224,2.57758,3.724645,6.2798,2.04979,5.7484,1.8308125,4.74621,2.7691033333333333,2.460125,0.984451,3.809125,5.54765,3.32065,3.90782,1.99428,4.064155,8.323500000000001,3.38977,4.07541,2.64944,2.60526,0.9044869999999999,4.906695,1.51497,3.4266466666666666,3.4266466666666666,4.17574,2.4628433333333333,3.1876599999999997,4.08794,1.8120025,3.3214666666666663,3.4228,3.4887,2.953805,3.927725,2.78044,1.8145625,3.7164,2.1506575,2.85765,1.92413,3.0350533333333334,2.8856966666666666,1.5028714285714284,1.6566433333333332,0.401275,1.289245,0.401275,0.401275,1.6566433333333332,0.401275,3.8895,2.033436,2.033436,2.9108733333333334,5.0365,5.8885,4.75398,5.71265,5.24165,3.52332,4.466805,4.14472,2.2912125,2.484289,2.7487033333333333,0.7937290909090908,5.69755,3.1913633333333333,3.1177966666666665,6.0353,3.6445350000000003,5.79075,3.39239,2.51674,2.891355,3.460815,2.50297,2.71259,2.12114,5.4428,0.9220766666666668,3.99853,1.1980742857142859,3.62605,2.3481133333333335,3.6059666666666668,4.18271,4.560865,4.176905,4.52389,4.090395,3.90239,4.40233,4.23261,2.508125,2.75125,3.483033333333333,4.20965,3.77781,4.133615,2.60041,3.008805,3.2639533333333333,3.301335,4.436105,4.93406,4.03182,67.71961788272839,2.8407425,3.83102,15.596112666666667,4.04624,2.9922966666666664,2.0859099999999997,1.8734333333333335,2.21049,4.8098075,3.0894366666666664,4.7651425,5.03015,3.372965,7.716715000000001,5.40515,2.683605,3.112735,3.76093,3.337675,1.87447,1.2539375,4.51055,2.86132,5.821808333333333,3.49971,2.49586,3.535675,3.57269,4.592635,3.5567,5.50897,4.79722,3.72106,2.907015,2.378695,2.89238,5.18515,3.80748,3.72273,4.401188333333334,1.2155066666666667,2.78938,4.826545,3.275135,3.10787,3.495235,2.885145,4.84055,3.06045,3.381805,2.360455,4.394175,3.119945,2.23107,4.432205,8.852595,3.2169833333333333,4.117,6.89117,3.163535,2.823775,4.35891125,2.0099533333333333,2.975303333333333,3.07708,3.56189,3.26099,2.94288,3.162205,3.49956,4.069985,3.858285,4.2027,3.11963,3.21891,3.573055,2.83924,2.83924,6.78285,2.033525,3.088965,3.16346,2.50275,5.17255,4.119315,2.783405,3.23276,5.32615,7.0663575000000005,0.8504018181818181,3.529105,2.181345,2.8734866666666665,2.5338233333333333,5.4173,2.7529066666666666,1.95528,1.21424875,2.0995246969696972,4.064895,4.11765,3.912315,6.5568,3.95114,6.1828,2.346895,1.8304533333333335,4.54441,3.965645,2.9651633333333334,1.9097799999999998,1.25607,2.84779,3.376533333333333,1.461204,2.2642233333333333,2.253186857142857,3.4881274450549453,2.758265,5.36095,3.35713,1.4023275,4.277165,3.465065,4.642755,5.12055,4.73627,4.854805,2.0462599999999997,1.5024833333333334,0.5889528571428572,1.4604733333333335,3.495275,2.5894,3.5228133333333336,1.3843933333333334,2.28205,2.39286,3.530905,3.46473,3.72863,3.9185083333333335,1.56368,1.36476,1.9142675,1.97163,1.4488575,2.65445,6.949128583333334,5.0407,3.802715,2.96604,6.555105,4.93392,3.198885,3.153605,3.34528,2.659895,3.87155,2.2282066666666664,7.1837,0.9285950000000001,3.00238,6.4885,3.805225,4.65935,5.2734,1.45616,3.15033,3.1123266666666667,2.88152,1.6549925,4.052445,8.26655,3.91947,3.482145,4.16089,3.8956,4.417215,0.8425933333333333,2.6887333333333334,5.3662,6.472709999999999,5.1077,5.4215,2.7919,3.8630999999999998,2.4510733333333334,5.6983,4.96282,5.2974404999999996,5.2974404999999996,0.75988,3.5492333333333335,1.113618,1.02902,1.86456,3.4041,3.862888,5.351216571428571,3.044896666666667,3.0375765714285716,3.2560385714285713,2.89169,2.60317,4.639233333333333,3.6704575000000004,1.9341075,1.9341075,4.06839,2.9895066666666668,2.746253333333333,3.866235,3.4975666666666663,0.6578911111111112,3.3613666666666666,2.6810533333333333,2.9773566666666667,2.9601133333333336,2.582275,2.704446666666667,3.1366266666666665,3.2026066666666666,0.892657,2.5011366666666666,6.451417238095239,2.09162,7.748951666666667,1.5701420000000001,1.5701420000000001,3.4275467500000003,3.1668566666666664,3.528833333333333,2.9922466666666665,1.716656,1.3314385714285712,3.23732,3.304866666666667,1.5833166666666667,1.4567285714285716,2.8394366666666664,2.753482,3.0690733333333333,1.931765,2.09679,2.87516,2.124785,2.79818,3.42559,1.74122,3.64892,3.21581,7.15946,4.31568,1.684035,3.579685,2.65659,2.128725,3.865105,2.40188,2.636325,6.945755,0.810876923076923,0.7459866666666667,4.71674,1.479936,1.479936,3.77876,2.455725,5.042,3.321615,1.3555866666666667,2.4001873333333332,2.70919,2.413984,4.99679,2.684215,2.5910366666666667,2.5963133333333333,1.4924771428571428,1.4924771428571428,1.9413066666666667,3.800205,3.8820333333333337,5.99945,3.2519899999999997,5.44375,4.816255,6.9953,5.41145,2.511155,2.76029,2.6657066666666664,2.61391,0.7277622222222222,0.7277622222222222,0.7277622222222222,3.5394,4.75814,4.807645,0.84605,0.84605,5.60555,6.59325,7.76478,22.579779055555555,13.2095,8.63223,3.87258,6.02205,2.48786,4.90239,2.50326,3.379433333333333,4.345533333333333,5.484992666666667,2.01914,2.259575,7.83731,2.29696,2.29696,6.9872,3.901355,4.73215,1.84296,4.863997833333333,4.97381,4.531,5.57715,4.209425,0.8883333333333333,6.4197,9.61993,0.8883333333333333,1.84296,2.043626666666667,0.689604,0.689604,1.9213719999999999,2.4538066666666665,1.9213719999999999,4.96382,6.17715,6.71085,9.71243,1.84296,11.973181166666667,6.756,6.54845,2.48786,3.72092,4.802965,9.91483,3.19011,4.47433,6.3374,3.43041,5.3579,6.65615,5.11275,5.61165,4.238095,2.6999,5.68715,4.25868,4.652895,4.325985,0.77334625,1.4903140000000001,3.079395,5.5808,4.875485,2.6557666666666666,1.889485,4.087095,4.977485,5.91245,5.46675,5.3967,4.36113,3.09537,4.229945,3.67397,2.0791325,5.110647500000001,1.925975,2.647245,3.710025,1.7001666666666668,3.89445,4.34859,3.48749,5.1845,3.085875,6.556625,0.975098888888889,3.46562,2.382665,1.40525,5.464099,1.6597483333333332,1.6384333333333334,2.7203866666666667,2.791565,3.333833333333333,2.8475466666666667,1.97391,0.7420763636363635,2.458276666666667,2.587025,3.71718,0.7301753846153846,5.232936666666666,1.7676366666666665,1.17245,3.5922,1.17245,3.837215,0.823880909090909,4.476605,3.05186,1.958455,4.175688,4.067923,4.067923,4.806185,2.60235,3.2678683333333334,2.6773066666666665,2.052,3.717365,3.915495,2.1136133333333333,0.7460616666666667,8.488650384615385,2.611045,3.56664,4.317195,7.35514,2.5037,3.873715,3.719015,3.033555,3.66649,5.824,6.668307500000001,4.176785,4.8726,5.31455,2.8710566666666666,4.510255,3.83714,4.82545,1.0546111111111112,0.511405,3.15043,3.439633333333333,2.7660966666666664,5.73585,3.843165,4.25066,4.789305,4.64971,4.37032,4.640915,1.18558,2.17856,9.019328333333334,2.31277,1.9644166666666667,4.190246666666667,12.036109623015872,1.4662275,5.01725,5.99575,4.623335,3.3636666666666666,2.25125,3.296443333333333,3.83752,1.09949,3.0546366666666667,3.45929,0.42209315789473684,2.126306666666667,5.0134,4.237925,2.105045,4.01237,3.423995,4.936261666666667,1.2980966666666667,0.5317145454545454,3.638165,1.0631028571428571,0.986805,0.986805,0.986805,0.986805,1.3437166666666667,2.6397566666666665,2.1060866666666667,2.72218,5.6069,3.643333333333333,5.40765,3.678165,4.463505,3.63674,3.68875,1.4734833333333333,7.084994999999999,2.161725,5.34,5.455516666666666,5.34665,5.2909291666666665,3.4857333333333336,2.98573,2.605226666666667,4.07802,1.2024966666666665,5.106246666666667,2.6698766666666667,5.1209,3.4639,2.421133333333333,3.77324,3.421775,2.92142,2.4200333333333335,2.8416766666666664,1.479225,0.41572000000000003,4.8717,3.09648,4.04575,3.563085,4.32455,6.0151,4.373665,0.5311715384615385,3.177722,7.279608666666666,1.9769666666666668,2.12492,5.587566666666667,4.25669,2.652766666666667,4.819645,5.28795,4.27954,4.273485,4.24023,5.25555,5.3528,4.710775,3.454855,5.484366,1.59625,1.5773216666666665,3.784545,3.934195,4.416225,3.20358,5.09005,5.4618,3.866435,3.26045,15.423674692413703,1.377279946495452,1.47865,2.390813636363636,0.524364375,0.49449466666666664,1.5634375,0.36091764705882357,1.3906560000000001,3.1367766666666665,1.549452,1.0735,1.0517154166666667,0.46009666666666665,1.0517154166666667,1.0517154166666667,0.46009666666666665,0.8680461538461538,0.6966450000000001,2.81032,2.57421,3.885035,4.25206,2.8144333333333336,2.70485,4.263455,4.92529,5.2688,2.75364,4.24813,0.7569285714285714,2.3854906666666666,8.704965,4.457075,6.94266,2.916515,4.26917,2.37939,4.714305,5.23105,4.140445,4.04771,3.414195,1.03256,4.22681,4.96218,0.906208,1.335844,1.6688833333333333,2.43166,2.65324,4.45073,5.2494,2.32653,2.32653,3.6069130555555553,6.25686,2.030823333333333,0.6421445454545455,1.0443142857142858,2.217173333333333,3.4661333333333335,1.008897142857143,1.008897142857143,1.008897142857143,0.38661307692307695,1.0982942857142857,3.093225,6.159,3.8836333333333335,4.2509525,5.53025,1.04116,3.7123000000000004,3.27379,3.9418666666666664,5.99845,2.9020266666666665,7.6356,5.33305,1.1562666666666666,3.8845333333333336,2.12284,2.626935,2.2821966666666667,6.498466666666667,2.98798,4.598965,2.3598375,4.15819,4.26441,5.11525,0.4495311111111111,3.2540999999999998,1.4189866666666668,2.678903333333333,4.367215333333334,2.23916,2.95196,2.24891,2.5849766666666665,2.4664466666666667,2.8744300000000003,2.956443333333333,3.32079,1.7063220000000001,2.4086233333333333,1.86297,3.5836,2.8643133333333335,2.2131925,2.05768,2.1072566666666668,1.8566725,3.152045,2.4285900000000002,2.87988,2.175003333333333,2.4300266666666666,2.587833333333333,0.7975933333333334,0.7975933333333334,0.7975933333333334,2.3903766666666666,2.41541,3.108076666666667,3.1748066666666666,2.6715066666666663,1.9539033333333335,4.348695,3.4501283333333337,1.275285,2.6937233333333332,2.833346666666667,3.50122,1.6238,7.401408333333333,4.732395,3.18564,3.9457,3.84895,1.55782,0.66594,3.309605,3.639975,3.50122,4.73737,4.400915,5.5089,2.9486933333333334,4.01798,4.25391,0.901651,2.672005,3.174895,5.016583333333333,4.61233,3.51435,3.010805,2.749235,2.38436,2.4917266666666666,0.6171841666666666,5.275568333333334,2.6219,4.67988,2.8082,3.8376183333333334,3.998533333333333,2.4159366666666666,2.837743333333333,2.837743333333333,2.5205333333333333,2.11978,2.9231133333333332,1.8922233333333331,4.178095,1.4619719999999998,2.67628,3.66092,4.395855,4.024385,5.06445,4.829945,2.38693,2.14732,3.202545,3.729515,2.751535,5.0247,2.49644,0.8562171428571429,0.8562171428571429,4.681895,3.907769,0.9410640000000001,4.45874,0.9410640000000001,3.654,4.625305,5.14785,3.25143,3.231055,6.422622499999999,4.763216666666667,6.5114,0.9074,0.9074,2.07268,4.6536100000000005,1.47736,3.17625,3.663555,1.0943671428571429,4.350965,4.43698,5.944075,5.944075,1.1004016666666667,5.1191,5.05625,4.743965,6.28605,1.9991475,1.9991475,7.0411,1.0140272727272726,7.17215,1.8751775,6.1929275,2.68143,2.38408,3.50742,2.0279800000000003,2.1812133333333334,2.48772,3.061166666666667,2.6501216666666667,6.669480999999999,1.935294,5.6234,3.1111733333333333,2.9217866666666663,1.81427,2.145745,3.427965,3.5535,3.52673,2.81446,2.24508,2.24311,2.45203,1.1088879999999999,3.31536,2.062075,3.25129,2.1835585,2.1835585,3.032465,1.9268033333333332,3.950955,3.367535,5.1877,7.619106666666667,4.172455,3.50143,6.141868,2.1648,3.314604444444445,2.201826666666667,1.3867571428571428,1.71956,4.7914,1.6578933333333332,0.49790375,0.7099716666666667,4.139105,4.264275,2.69248,0.9361388888888889,2.917185,2.5991133333333334,5.05185,1.9441400000000002,1.92551,1.1527333333333332,4.74204,2.48745,4.4904,0.702633,4.1473458333333335,4.63366,3.93745,4.479985,3.33567,3.682925,2.88992,5.67615,3.70788,2.0873,2.418293333333333,6.415125,6.2017875,0.6941875,3.99993,4.03856,5.26115,3.7883999999999998,3.5056999999999996,2.8025,3.473933333333333,3.8330333333333333,5.66166,2.753482,2.5795500000000002,3.832995,5.52045,2.477435,2.596025,8.610436666666667,4.831825,2.0713833333333334,5.13775,4.610605,1.846228,3.87158,1.4491125,1.7911,4.760165,4.028555,5.75915,3.1542933333333334,4.19434,4.530525,5.50275,3.84848,4.05472,3.69544,4.786215,4.007685,4.44181,1.200342769230769,1.200342769230769,8.40675,0.8622325,1.948142996031746,0.8622325,0.7650883333333334,0.3800188888888889,2.7132313293650796,2.18532,0.4911828571428571,1.948142996031746,1.589155,3.61797,2.2220484722222222,3.370845,4.603845,7.870993333333333,2.158495,2.12922,2.04211,5.31295,5.65895,1.82264,1.583625,0.8821025,2.4657275,4.10368,2.664805,4.21633,6.566285000000001,0.4452555555555555,3.808745,0.74657,3.24512,2.4737525,4.4276,1.3128383333333333,4.42773,4.74263,4.297305,2.964385,4.119085,5.7188175,1.7980725,3.533735,0.6889761538461538,2.75307,2.7104,1.186824,2.85162,2.46658,2.44087,4.245415,8.22622,3.4433969696969697,3.6772,3.290805,8.094315,5.492323333333333,3.2253866666666666,3.93267,3.575655,5.84545,6.02885,6.09335,4.82769,5.02725,6.13195,2.4626366666666666,1.417705,1.8837033333333333,2.284546666666667,4.018145,2.4321033333333335,0.23835135135135138,0.23835135135135138,0.23835135135135138,29.838731523809525,0.23835135135135138,2.8449763513513515,0.23835135135135138,0.23835135135135138,0.23835135135135138,3.197244684684685,5.0309,0.23835135135135138,0.23835135135135138,0.23835135135135138,0.23835135135135138,0.23835135135135138,3.25442,5.01682,3.032945,0.3224358974358974,0.3224358974358974,5.057596666666667,4.339779875,4.120751875,3.4954359861111115,4.084640952380952,8.129733333333332,11.46915548096348,6.700378666666667,8.096796666666666,7.376527714285714,2.5458233333333333,6.5601014285714285,4.35338,4.460450865384614,0.3224358974358974,9.036418999999999,6.684730666666667,7.4408650000000005,2.55465,8.322701714285714,15.98186357142857,19.179408456959706,57.61757529820832,119.02337602664656,1.3866100000000001,3.4012333333333333,3.17185,4.141403151866152,0.3224358974358974,1.7902079487179487,8.701015833333333,14.816779797619047,20.300217222222223,49.8076691946533,13.533891880952382,2.8455,0.2699810344827586,0.2699810344827586,4.20757,2.5266933333333332,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,7.55611,0.2699810344827586,0.2699810344827586,0.2699810344827586,3.000525,1.9432,4.49638,3.84579,3.877755,5.3016,2.39224,4.215185,4.35667,2.762305,1.4581966666666668,3.707135,1.004175,2.294865,2.7272866666666666,6.425886666666667,6.1696333333333335,2.74694,5.7014817777777775,0.5002088888888889,0.4414013333333333,2.55625,2.8020766666666668,3.112345,4.18056,3.473133333333333,7.3912825,3.733745,3.55845,3.438875,3.992795,3.310535,3.29473,5.20155,2.937205,0.4456269230769231,0.8815818181818181,4.2490499999999995,1.9078675,3.753315,3.629205,4.458465,3.577935,2.56215,3.07721,0.5832206666666667,0.706914,4.129455,2.6070033333333336,4.39839,3.94006,4.215714999999999,2.709365,3.8266,4.42683,4.683075,3.11536,0.7899336363636364,3.1113233333333334,5.18015,2.19824,0.9651225,1.7230699999999999,3.420355,5.5908,2.001115,2.97762,4.31252,5.8085,2.314365,2.30113,2.2676,3.912895,2.53613,3.807355,0.6994285714285714,2.6671266666666664,3.290745,1.66167,6.025023333333333,4.21726,4.143035,4.17912,2.741695,2.106105,0.5106372727272727,4.704565,3.84361,5.2843,2.54217,4.64737,3.63124,2.770855,2.76286,1.2729300000000001,5.3861,1.921815,2.75933,9.14152,4.26092,5.24645,3.718765,0.894641111111111,3.07842,1.4385999999999999,3.19431,6.40615,5.2186,5.16665,3.810625,5.3111,4.60665,1.684,1.7448233333333334,5.4356,3.0228533333333334,3.5517333333333334,2.538725,5.4498,4.894635,1.50363,3.6409000000000002,2.86917,2.76362,2.937435,9.01497,4.97845,1.6307725,4.729525,5.76812,4.593954999999999,4.105055,4.78186,4.05315,4.424605,8.246469999999999,2.3998033333333333,3.06281,3.77639,4.584955,2.859155,3.144505,5.00765,4.01365,3.61256,4.3671240000000004,18.872728333333335,2.9967233333333336,2.4994466666666666,3.1453699999999998,5.800658333333334,1.1433725,4.306035,2.0652641666666667,5.01935,1.4505866666666665,4.081165,4.148425,3.71589,1.05053875,4.53876,5.24405,1.6777375,5.12113446969697,4.41709,1.16202,3.422725,1.77547,2.24041,1.56421,4.20775,3.75706,4.501945,3.664315,3.0543133333333334,4.762035,8.165806666666667,4.48767,4.48786,4.981975,3.3178566666666662,4.33859,4.89497,6.289108000000001,1.054222,1.054222,4.623635,4.721245,2.23946,1.47597,7.3332500000000005,4.37766,3.46983,4.098145,4.453885,4.45873,3.811465,3.9582,6.473145000000001,4.26239,4.760585,5.05565,1.5002142857142857,2.667875,4.36046,4.970405,3.3476075,0.20729777777777778,1.6390975,2.341805,2.662646666666667,2.1158933333333336,1.013912222222222,1.3500325,1.4117625,2.8018066666666663,0.6125477777777778,1.3290799999999998,2.1840225,3.854625,3.6963000000000004,2.336863333333333,2.8430133333333334,3.01944,2.7539433333333334,0.72764,0.91096,2.82304,4.942275,4.42635,4.69903,4.395795,4.564605,5.1451,2.4376,4.409985,5.3019,4.730365,6.48993,3.723,0.4639505882352941,5.5242,4.46084,4.22368,5.2688,3.355665,1.979428,4.58527,3.894345,2.937575,5.31349,4.58874,1.4029566666666666,5.31349,4.235355,6.748355,3.72672,1.2632333333333332,4.095835,5.3223,3.933725,2.5490833333333334,5.41365,1.55941,1.98078,3.725845,3.38796,0.7890088888888889,4.61171,5.08055,3.78297,5.02375,3.3104933333333335,3.4485333333333332,1.7170919999999998,1.8173525,3.252645,3.395945,3.6079000000000003,2.3948233333333335,2.744975,2.083423333333333,4.58968,1.6491142857142855,0.8120777777777778,6.01983,4.24731,1.428844,2.4693433333333332,2.197956666666667,3.152006666666667,6.132146666666667,2.4422855555555554,0.915996,2.3429,4.546805,2.219543333333333,4.66711,5.9317,5.25415,4.823975,4.45783,5.1209,2.1293966666666666,2.27297,1.6777166666666667,2.199266666666667,1.88924,2.55896,2.24258,1.52083,2.835305,3.029095,3.609615,6.46685,5.61355,4.12321,4.883445,3.923455,3.805905,4.429635,0.86252125,2.172006666666667,5.32905,1.191572,0.7461066666666666,4.70179,3.41079,2.544376666666667,3.32558625,6.388005,3.845325,0.9838939999999999,1.24663,0.7210144444444445,4.102481666666667,2.2170866666666664,2.7076966666666666,1.1908142857142856,2.9181566666666665,2.3158733333333332,5.22525,4.796955,4.52017,5.3759,3.83563,1.2455749999999999,3.63904,1.6523700000000001,3.431685,4.16397,3.39851,2.6420166666666667,3.110376666666667,2.5776233333333334,5.82615,4.15014,2.835845,2.809175,8.11613,10.555695,4.43874,1.20918,5.49935,4.001795,5.5457,4.441345,4.11387,3.761565,3.387915,4.03732,3.749329583333333,5.27363,3.629755,3.97951,4.552985,1.9970780000000001,5.1377,5.82105,4.935715,3.295875,3.403555,6.593155,0.6837691666666667,2.7576,2.7063,2.3483733333333334,5.10845,3.445825,1.4262249999999999,4.4856,3.3613999999999997,3.698095,5.06405,3.4666616666666665,6.649235,3.8203333333333336,2.778116666666667,3.2557899999999997,3.1384833333333333,3.92222,1.9829266666666667,2.4157800000000003,3.27462,4.146395,3.4926929166666665,1.9235175,1.5383375,3.577453214285714,2.9226789999999996,0.9142899999999999,2.857635,2.857635,1.2128925,5.79165,2.85852,3.43303,3.498035,3.1936,3.33806,3.17021,2.95613,3.087155,2.2039933333333335,0.5426420000000001,3.141915,5.6399825,3.10386,3.56302,3.14983,3.92064,4.12727,3.11163,2.77866,3.99158,3.714865,3.168615,4.46271,3.31559,2.5782599999999998,4.08992,3.61466,8.794,3.7336,3.44255,3.107325,4.0047,4.00952,3.615095,2.312835,3.54845,2.5327349999999997,2.836225,3.034365,3.136435,3.980605,1.7641900000000001,1.7641900000000001,2.128255,3.163595,3.214975,1.5426819999999999,2.752765,3.47893,1.959002,2.86947,1.5426819999999999,4.578915,3.048915,3.857863,2.78657,3.212435,2.402785,3.234305,3.879465,4.74021,3.573935,4.26302,3.76841,4.196825,3.711295,3.135455,3.179015,2.959155,3.958,2.62648,3.949635,4.901745,3.920025,3.529155,0.2963695652173913,3.452795,0.4561025,4.251365,3.44428,2.98402,3.5498,3.826045,5.9485166666666665,3.15548,2.507686666666667,2.198983333333333,2.7741733333333336,0.6687700000000001,6.620635,2.904115,3.294425,5.37045,1.97701,2.767815,3.119005,3.192295,6.6461500000000004,4.76423,4.93364,3.93046,4.40562,4.34669,3.6967,1.4984433333333333,1.574704,3.850525,4.751215,5.526375,2.2084033333333335,4.93727,1.64821,3.5381666666666667,3.697945,1.824435238095238,3.965235,5.0641175,3.733966666666667,4.098833333333333,3.6803666666666666,4.584265,5.0378,3.3455666666666666,4.225985,4.21411,4.884345,4.49115,4.306155,4.03712,3.153585,4.322725,2.4418325,2.93979,2.93979,3.923145,2.534823333333333,3.85195,2.5832166666666665,4.550275,3.3718333333333335,3.48625,1.7731,2.0124999999999997,1.17561,1.17561,1.69163,3.4897333333333336,1.7179933333333333,2.8183833333333332,4.350405,5.1959645000000005,3.4693666666666663,4.83228,5.84075,3.285645,2.889745,3.1392100000000003,1.5356033333333334,4.245285,4.29464,6.5730775,1.6602133333333333,5.56895,5.50835,3.314826666666667,3.367865,4.37841,6.58169,2.207613333333333,2.3562875,4.227525,0.5066214285714286,4.404255,4.035635,4.51242,4.54905,3.74697,1.4546860000000001,1.6643820000000003,3.945685,4.067985,2.3276333333333334,3.782165,4.52278,4.61585,1.21614125,3.687545,4.475655,3.85584,5.2163,2.8015266666666663,5.745433333333333,3.73825,1.581426,3.30856,1.2288766666666666,2.72357,7.852513333333334,3.25606,0.7967663636363637,3.427045,4.34892,3.86012,2.01165,2.01165,4.83287,5.9421,2.862715,0.49769555555555556,1.888665,4.32996,3.90716,4.356305,1.735898,2.82809,3.69054,1.2131690131578947,1.2131690131578947,1.2131690131578947,0.8014052631578947,1.3900419298245614,0.5886366666666667,1.2131690131578947,0.8014052631578947,0.32806526315789475,0.9167019298245614,0.32806526315789475,0.47334000000000004,0.47334000000000004,0.47334000000000004,0.47334000000000004,1.1355443333333333,1.0758875,2.3365266666666664,2.229906666666667,1.0159833333333335,6.246883333333334,2.6029433333333336,6.556428333333333,2.8555533333333334,3.818045,2.85243,3.212035,2.8073425,4.95221,2.65328,4.350195,4.07682,4.961605,2.322195,3.815255,5.09885,4.13242,3.67702,4.985445,3.353485,4.509505,5.54355,5.01405,6.2821,4.92358,1.1938025,3.594075,3.72765,3.165925,16.25595,4.750225,5.4,2.61065,7.61175,4.024755,3.9661,4.338295,3.34415,1.01042,2.564635,4.26054,4.304565,4.490685,3.370705,4.10459,2.7941000000000003,4.32071,4.616905,4.225435,6.63768,8.412781666666667,1.4118157142857142,3.346815,4.1826,4.03784,3.64323,3.4984,7.2121,2.78519,2.75126,2.55282,3.848245,3.763495,4.50825,2.381845,1.77985,0.9064840000000001,4.470355,4.470145,3.72677,4.098505,3.516265,4.92937,3.904005,6.239,5.9392,3.904945,6.15835,3.56368,3.253805,3.143545,3.41317,1.7893025,3.85698,4.8589,5.13635,5.353948333333333,5.353948333333333,2.441715,1.7893025,2.0181,3.090955,0.7324799999999999,1.562455,0.829975,1.3628475,2.51033,0.344741,2.896325,4.149445,1.3628475,3.419511,10.672385,6.4479275000000005,2.1625513333333335,1.06007,1.7941666666666667,4.394905,4.333685,6.157761714285714,1.8905875,2.308365,4.154915,4.30178,4.766225,2.10689,5.3504,3.615766666666667,3.4601,5.17185,7.275196,3.8028,2.4539075,2.7436399999999996,1.62368,3.92489,5.35617,1.838624,5.47625,4.391695,6.1986799999999995,0.534778,5.05795,3.74306,4.948875,3.300445,2.63561,7.01055,8.5266,5.60405,1.877,1.877,1.877,5.86225,5.32495,6.89815,2.90396,2.914725,2.5910663157894738,5.40035,3.51437,2.546607,1.922135,2.546607,6.926907,4.448683333333333,4.391842380952381,6.16015,4.391842380952381,4.391842380952381,3.2098857142857145,6.53965,5.372922,2.748192,2.748192,2.414375,6.5592,2.734815,3.4867,5.22868375,5.22868375,5.22868375,7.395045,3.3931625,3.40577,3.4683775,3.340585,0.81368375,6.957396666666666,2.508713333333333,4.22442,3.264205,13.585543666666666,4.484285,5.4517425,6.67681,2.5871216666666665,3.264505,1.1012633333333333,5.4517425,3.292545,1.6903375,1.6903375,3.084305,5.1848,1.734625,4.737186666666666,0.846556,1.4540966666666666,0.846556,1.90171,2.581181,5.208976,3.86549,1.4540966666666666,2.99676,5.1285075,1.3600725,3.358425,4.19102,1.83896,3.971268333333333,2.166215,2.929145,2.91423,0.9678699999999999,3.574225,2.204405,1.84125,1.86444,3.29076,3.869925,2.503345,3.774795,1.3203233333333335,1.3203233333333335,1.3203233333333335,3.440775,2.4958533333333333,2.4958533333333333,2.313255,3.51081,2.072763333333333,1.614575,1.614575,2.849105,4.3122025,0.7738575,1.7422266666666666,2.67734,1.0995883333333334,2.841815,0.9678699999999999,0.9678699999999999,1.8074474999999999,0.9678699999999999,3.1091258333333336,0.5157833333333334,3.1091258333333336,5.75321875,3.30799,2.29567,1.7536554166666667,0.5859566666666667,2.3396120833333334,2.986295,2.3396120833333334,0.9503466666666667,3.04376,3.885485,3.58683,3.34581,2.49833,3.5158,1.8854833333333334,0.8873301388888889,0.49165125,0.8873301388888889,0.3956788888888889,0.8873301388888889,0.8873301388888889,4.75027,5.513,3.92006,3.3889,4.736685,4.82828,5.2949,3.601685,3.914585,1.3195342857142855,3.7673,4.191558333333333,3.90108,1.4324033333333333,2.871646666666667,3.881495,3.79497,4.23354,3.54739,3.78488,3.338015,3.118915,4.200075,2.6808366666666665,5.7245,3.577315,4.20378,5.054654285714285,1.2337502857142857,1.94752,3.025695,6.37405,4.51289,3.818335,3.18298,4.582565,7.80289,3.7924,3.169405,3.20217,5.3503,3.99023,5.6163,5.4498,5.4718,3.22553,6.00045,4.964805,3.3260133333333335,4.259185,3.22319,2.2635675,2.18313,4.83895,6.66245,6.1324,5.59495,4.092,5.30325,5.73825,0.4938092307692308,7.522525,4.12619,4.454995,3.863515,4.728235,4.299745,2.9481533333333334,2.725425,1.3095166666666667,0.5719707692307693,1.7292999999999998,2.9561833333333336,3.407855,3.152635,4.7607,3.654575,12.412603333333333,3.698935,3.928035,2.798845,0.64752,5.758336666666667,2.8158066666666666,1.5238566666666669,4.339663333333333,5.601771666666666,2.785965,8.79182,4.256535,1.826946,1.826946,1.826946,4.11349,9.10996,3.502755,1.69464,1.69464,3.44785,9.8024,1.0080425,5.52785,4.504635,4.201735,3.27951,2.0905133333333334,4.065525,3.921315,6.43,5.846778333333333,3.861715,2.826915,3.792825,4.14562,3.4399845,1.20186875,2.9491133333333335,6.19878,3.48204,4.5459,1.08143375,3.65,2.489126666666667,2.51038,1.74905,1.76066,2.0806366666666665,5.32245,1.919235,4.47371,5.7216,1.935294,4.42542,3.78016,5.2132,2.55575,2.124385,2.701055,4.080105,4.10239,4.10239,1.1883125,2.2925166666666668,3.01554,4.592398333333334,2.3067143636363636,4.835504,1.8220939999999999,2.7638133333333332,2.1628266666666667,1.8683275,1.8683275,5.11635,7.517435,2.1443333333333334,3.121843333333333,2.3529075,5.3038,3.082735,0.8167120000000001,2.948805,0.8167120000000001,2.605365,3.273605,5.05095,6.12215,4.081815,4.618425,5.4413,2.46439,1.9680133333333334,2.725373333333333,2.1728733333333334,6.2209,4.71315,2.517245,3.793495,2.8543,4.288385,1.08168125,1.124526,2.1942366666666664,1.5759633333333334,2.55862,2.7020166666666667,2.33657,3.06918,2.779455,4.730515,2.5196466666666666,2.4023866666666667,2.6791933333333335,2.3748466666666666,2.739853333333333,2.679536666666667,1.97656,2.446686666666667,3.754435,3.794,3.60561,4.689115,2.941603333333333,2.33975,1.98205,1.28138,0.291966,0.13668847826086958,1.9451866666666666,2.10461,0.13668847826086958,3.996471811594203,2.1984525,0.13668847826086958,6.061189097222223,2.321235,6.0061,3.350635,3.5078666666666667,2.3367166666666668,2.9458866666666665,2.195385,4.50367,3.3914333333333335,3.287986666666667,0.44306210526315787,4.029233333333333,2.4701954385964915,3.079905,1.83463,2.510975,4.1974,2.480215,7.8397,5.0986,4.085765,3.65123,6.48098,5.66257,1.7786366666666666,4.004664999999999,2.0271,1.896705,5.82316,7.48709,1.1757600000000001,2.0285825,3.455465,2.49072,2.91727,3.11729,2.763575,4.6423375,2.312555,3.081275,3.35093,3.10608,7.44936,1.26925,1.84203,2.61796,3.278045,1.66434,3.289135,1.373835,3.554215,3.232025,6.86575,3.287205,8.9687075,4.106605,1.7816299999999998,1.7525533333333332,3.169505,6.45462,1.856105,1.4477166666666665,5.60216,3.305925,4.059435,2.908905,1.9620499999999998,3.003485,10.64235,4.94974,6.38327,3.47859,2.302115,2.11624,2.7323,2.69228,3.354,1.8633499999999998,1.6227933333333333,2.3953133333333336,3.4153,1.67045,3.339395,2.75452,4.833,3.87296,3.40129,1.3112466666666667,2.5392,1.0185899999999999,1.358452,1.641945,2.982905,3.58798,3.72684,2.604495,3.75412,3.908725,2.855165,1.49655,3.541705,3.2303275,3.04051,1.63646,2.958275,3.42416,1.318675,3.30924,1.5495233333333334,3.731005,3.883335,5.34375,2.55882,3.87539,1.76762,3.1834,5.5934,1.699445,1.1282171428571428,4.086133333333334,2.771905,4.353145,4.117255,3.03774,4.642655,4.997525,2.64376,5.3079,5.150025,6.58415,4.51875,6.830196666666666,3.78797,1.6668666666666667,2.7210199999999998,4.760275,5.19475,3.0692299999999997,7.384926,1.3797857142857144,3.650733333333333,2.073855,1.756684,2.2416266666666664,2.757706666666667,0.37420214285714287,2.9672133333333335,3.1918733333333336,3.539635,2.60062,3.2332566666666662,2.2530466666666666,2.4243,2.34512,8.838149999999999,4.79618,1.522608,5.1037,2.4966051304347827,0.7325979230769231,2.693826666666667,7.997312666666667,1.789564,4.6626762500000005,6.4515883333333335,1.7678425,1.5784375,1.5877425,5.38425,3.173795,4.59438,3.8309249999999997,2.4328566666666664,4.17049,0.865174,2.7839506666666667,4.284355,4.3475,4.828995,2.712585,4.440425,4.68928,4.90641,5.3231,5.93085,4.6874,4.522015,3.907075,1.546866,1.8320575,2.94344,3.334235,1.2492444444444444,4.166255,2.1158633333333334,3.23354,4.16132,2.967366666666667,2.7107533333333333,1.5268266666666666,3.3429333333333333,2.7450591666666666,2.7544466666666665,2.871976666666667,1.77792,2.1838,2.411885,4.052315,5.10975,4.12675,4.582845,3.44735,2.303785,3.003085,4.961895,3.691966666666667,4.65162,3.921475,2.323985,4.725645,1.90188,4.109045,5.297841666666667,6.359741666666666,4.278505,4.92277,5.6181,3.5340000000000003,4.272189166666666,4.79447,3.23642,3.8372634999999997,3.355825,1.42477,3.22828,1.769635,2.231845,4.26575,5.3193775,3.8372634999999997,4.137695,3.479435,1.47736,3.445875,2.81626,2.40188,2.23781,2.723835,1.5747531818181817,1.5747531818181817,1.5747531818181817,0.4973581818181818,0.7614555555555556,2.2780538888888886,1.14817,3.57729,1.5783166666666668,4.38851,5.13265,4.868305,3.215815,4.271595,3.272515,5.0946,1.69977,2.95195,2.53258,3.05543,5.836689,4.243385,5.69885,4.14482,0.96456,2.23352,1.3676866666666667,3.79928,3.85863,4.17632,5.57905,5.28155,4.86735,5.51875,3.958605,1.672115,1.4621783333333334,5.295683333333333,0.99428,1.4831899999999998,2.6821433333333333,8.0848,5.21005,3.77782,2.86449,5.4443075,1.5554075,1.0188366666666666,1.5097875,3.12329,3.80582,3.747465,3.71981,1.85597,7.789785,3.0178066666666665,0.917795,5.37805,3.1676533333333334,3.1180833333333333,2.2485233333333334,3.6219,5.9227983333333345,3.0475966666666667,3.202923333333333,3.805633333333333,3.0805433333333334,3.012283333333333,3.019073333333333,2.55515,2.079285,4.58213,5.18815,4.24443,1.0261455555555556,0.720685,3.585433333333333,2.681313333333333,0.98849125,2.5906062500000004,4.129335,4.04181,7.156235,4.808165,3.4489,1.7577559999999999,3.596125,3.63108,2.8485666666666667,3.043017142857143,4.27513,2.88763,5.071744666666667,0.9332711111111112,5.3655,1.768762,4.578215,4.29545,2.17462,0.98304,2.986875,0.433626,3.116725,6.22045,6.03185,2.917454,1.517568,2.70067,0.7754711111111111,2.644343333333333,0.7754711111111111,3.903485,4.998285,1.4564775,1.8039675,5.251041666666667,1.9493866666666666,3.57769,4.41582,3.88387,1.266162,1.6988466666666666,3.882995,6.2602,4.843405,3.07708,2.0083625,2.87775,1.6031575,1.996385,2.0413125,2.577625,4.431905,1.4239222222222223,1.4239222222222223,3.55936,4.419852666666667,7.5580300000000005,4.96072,7.99868,2.22163,3.880545,4.12472,1.6922666666666668,3.5991866666666663,3.8711,3.01764,6.03835,2.96533,2.47604,2.9710900000000002,4.07943,1.11452875,3.92348,4.81774,1.1294616666666666,7.81599,2.63574,3.153475,3.156401666666667,4.005945,4.466915,3.558524166666667,2.87534,2.862133333333333,1.81838,3.6645,2.4742975,2.19676,8.287776000000001,3.5924666666666667,3.430266666666667,4.093035,22.39636107875458,0.69082,2.73507,3.818555,4.938935,8.40893,4.394225,4.21547,4.688005,7.539993333333333,3.539185,1.4601633333333333,5.016548333333333,3.84266,1.020252,1.020252,1.020252,2.29222625,1.7099225,3.037175,1.477775,3.021845,1.45616,2.501755,2.413285,2.91947,1.477775,3.10414,2.503685,4.300766666666667,4.813771666666667,5.16765,0.7766216666666667,3.1369,2.416505,5.5919,3.543315,2.62992,2.01622,1.708915,2.2025225,1.426754,4.109135,1.8540725,4.74749,11.527207666666667,2.932346666666667,2.519175,5.292806666666666,3.3918666666666666,4.4296999999999995,6.117,2.0271333333333335,5.492323333333333,4.15155,0.9127683333333333,1.1495157142857142,6.605500999999999,3.94624,2.1367225,4.269885,1.8818375,4.587285,5.21395,4.686155,4.14391,1.3615314285714286,4.06887,5.05635,4.630755,6.1168700000000005,4.12842,5.51145,4.453995,4.227805,5.20095,3.174533333333333,5.00375,1.78804,3.605185,3.000275,3.428005,3.38236,5.88945,4.54718,2.1385033333333334,3.3024733333333334,9.032485000000001,4.56985,3.0049533333333334,3.62457,3.57886,4.549765,4.282865,5.2268,7.064736666666667,4.038935,2.6790866666666666,4.002613333333334,2.609705,4.3892,2.6128666666666667,6.484025,1.5818216666666667,4.495685,4.745715,11.2676175,0.49924214285714286,4.660375,4.549255,0.6216021428571429,3.540035,4.19702,4.60387,0.882523,4.962615,4.95205,2.78821,9.766348333333333,3.378033333333333,1.8069899999999999,2.281605,3.5528,5.9463,0.7047175,3.88774,2.1871325,5.0214,0.7070192307692308,4.21253,5.66045,5.52905,3.45514,6.544505000000001,4.22416,3.72365,2.67498,2.8077533333333338,4.292895,4.82349,4.944205,5.14945,5.0594,3.4066333333333336,7.447328333333334,2.804975,3.6527055,1.9846475,3.633315,2.58081,1.5127499999999998,3.1371333333333333,3.6581333333333332,2.900463333333333,3.9286,3.322373333333333,3.11078,3.0645966666666666,5.47995,3.188993333333333,3.855285,5.11115,3.13587,1.1346222222222222,3.1444766666666664,2.8325033333333334,4.030525,2.9511966666666667,3.2959833333333335,4.769806666666667,2.185826666666667,1.7745125,3.03571,3.71691,4.730985,1.11780875,5.0291,3.06106,4.151066666666667,3.2102233333333334,4.835302,3.90577,3.273685,4.53565,1.733965,3.699375,0.6634375,4.555995,4.784755,15.939250606060606,3.5352,1.3021533333333333,4.522545,0.6085364285714286,2.5118,4.39835,1.95723,1.3707028571428572,3.090885,4.82213,3.4006666666666665,0.7445583333333333,2.592355,7.70929,3.844275,5.8889,5.2689,4.75131,3.4938000000000002,3.7381666666666664,3.23467,6.839981666666667,4.19869,5.077,2.1043375,0.43369166666666664,2.00088,3.06739,1.756625,2.76293,4.110705,3.0846366666666665,4.91418,0.7799483333333334,4.935245,3.52925,3.02579,1.1365466666666666,2.8598433333333335,2.0207433333333333,5.01265,3.913945,2.31384,1.5967714285714287,4.473275,5.0463,5.1615,5.987123333333333,2.0928633333333333,5.48955,5.231,4.49306,2.22762,4.738655,6.2866800000000005,5.0645,2.928585,4.995595,2.633985,2.577825,4.258315,3.965575,1.3600783333333333,4.989095,2.6553400000000003,2.934176666666667,5.401786666666666,5.401786666666666,5.1155,1.6088879999999999,4.825005,0.96860125,1.7873480000000002,4.78669,2.69091,1.4539133333333334,3.5568666666666666,0.94795,4.347066666666667,6.13135,3.24434,5.1232,3.82479,3.505185,5.634385,3.544075,3.1467733333333334,2.8017533333333335,2.3085299999999997,2.77895,3.024096666666667,4.11932,1.8104445054945053,3.17698,4.79756,5.13995,2.3885895833333333,4.473085,4.26525,5.325585,3.6035333333333335,5.2109,4.88704,5.31145,4.978265,3.68741,3.705815,3.80428,4.852595,5.59075,4.571675,5.25585,4.46942,4.57868,0.7272966666666667,4.96648,4.80538,4.187405,7.329957500000001,4.55104,4.150715,4.320865,4.67254,3.74289,3.59012,2.12558625,4.4885,1.96038,1.3136057142857143,3.672855,2.1051100000000003,2.45052,3.9184973333333333,2.9790533333333333,3.162595,1.05738,2.084935,4.16359,3.629355,1.8107225,1.8107225,4.28152,1.9672100000000001,3.139393333333333,4.629465,3.475165,3.85853,1.56715,2.054705,3.6506,1.94131,4.109645,4.61989,4.404475,4.176825,8.230563333333334,2.6303,3.78649,4.81729,4.2669,3.043176666666667,4.30211,4.46301,4.35144,1.97953,2.619283333333333,4.772625,4.06024,3.89379,3.845795,1.7056175,4.181915,4.54339,4.646105,4.278165,4.05456,4.05456,3.2111891666666668,4.465425,4.54672,3.93989,1.671068,7.6710400000000005,3.943305,4.83877,4.42637,4.28876,4.29054,5.0509,2.781675,3.459825,2.759405,5.33115,1.8136199999999998,5.228,5.998048333333333,5.54225,0.754313,4.692055833333333,1.1582000000000001,4.86971,4.91395,4.981195,4.7576,5.39785,3.633433333333333,3.633433333333333,0.914373,2.262375,4.73868,4.70356,4.005475,4.74767,5.5504,3.155005,3.968955,1.3974966666666668,3.155865,1.6168625,1.23124375,4.488734666666667,0.817655,2.534473333333333,3.2489066666666666,1.26243,2.1425725,2.6096933333333334,1.2749033333333333,6.2884,1.9146775,2.4368233333333333,3.74623,2.1480325,2.7573133333333337,3.905455,4.724255,3.750766666666667,3.2827566666666663,4.2179,1.723922,2.1131975,4.547355,0.6606449999999999,2.298513333333333,2.5943533333333333,2.9974000000000003,2.995643333333333,1.3430514285714286,0.8803833333333334,2.4798266666666664,4.22518,1.26431,2.272615,1.2090475,5.68528,2.31478,4.865375,4.591465,4.564945,4.732585,5.4988,4.430685,4.301135,1.5756866666666667,3.8877,1.8758400000000002,2.7098133333333334,1.1826485714285713,4.421315,2.0256975,5.815445,3.450095,3.79415,1.6981639999999998,6.70188,4.77674,1.4677449999999999,4.04706,3.191865,4.019655,3.98914,1.965535,1.965535,3.302153333333333,1.4369533333333333,1.4369533333333333,2.22762,2.3949333333333334,2.2131925,1.275285,3.586,1.07606125,3.108643333333333,2.4541825,1.87034,1.5277966666666665,2.178945,2.176425,0.2868129411764706,2.4329675,1.1732,2.35649,2.1628266666666667,2.38693,1.098418888888889,1.1088879999999999,3.6864666666666666,3.2048533333333338,1.965535,1.9078675,2.132136666666667,2.4880666666666666,2.4617733333333334,1.8902640000000002,2.7865800000000003,1.1049099999999998,3.483033333333333,3.475733333333333,2.5202766666666667,1.564054,1.04583,2.610425,1.04583,2.610425,0.67640875,0.67640875,0.518925,2.3430525,2.265563333333333,0.67640875,2.2587275,2.3433066666666664,2.3409925,1.8566725,0.7975933333333334,0.67640875,0.67640875,1.6808340000000002,1.6808340000000002,2.05376,1.9078675,0.67640875,2.44722,0.45475538461538456,2.7128,1.8765266666666667,2.5317966666666667,2.4862766666666665,2.4862766666666665,0.38156599999999996,0.38156599999999996,2.22762,2.00476,2.29394,2.1091,0.38156599999999996,3.6621666666666663,2.7353,1.59369,0.64415,1.59369,0.64415,8.85336,2.4427833333333333,4.074533333333333,3.6090666666666666,3.1057366666666666,3.0227533333333336,2.990596666666667,3.480566666666667,2.378695,1.6734075,2.7265366666666666,3.7924,2.327923333333333,1.6808340000000002,2.469900634920635,2.469900634920635,2.7508166666666667,2.07774,4.26377,2.3663833333333333,3.2272166666666666,2.7467633333333334,1.6908439999999998,2.55265,2.3923325,0.8083663636363636,1.654015,3.22416,1.6936240000000002,3.0844833333333335,2.7485233333333334,2.5404,3.8468666666666667,1.7452500000000002,3.6710666666666665,3.1826866666666667,4.069866666666667,1.266894,0.2699810344827586,1.3184742857142857,1.3184742857142857,1.0586966666666666,3.2426100000000004,3.9418666666666664,2.5062633333333335,2.112913333333333,2.112913333333333,2.13741,1.5495233333333334,1.02119,1.7727166666666667,1.7727166666666667,0.67640875,2.22762,2.8323666666666667,3.1000633333333334,2.4541825,2.0981,2.0981,2.0981,1.062368888888889,1.3867571428571428,1.3867571428571428,2.4633425,3.139143333333333,2.8588863005050507,4.426655,2.8804200000000004,2.5018333333333334,4.354005,3.818245,6.9111199999999995,4.201445,4.395895,3.6221,12.7962575,4.58646,3.47148,0.9555375,4.20401,3.053235,2.17446,3.613665,5.5747,9.835029,5.88855,0.5030588235294118,3.7516,2.52471,4.48854,2.549,4.57033,4.03689,4.23997,8.48683,3.463825,3.884345,4.44877,3.3249886363636363,8.301460256410255,3.297563333333333,2.66027,3.603425,3.804705,4.921205,4.36567,6.440809999999999,5.23,1.389302,3.26507,0.9152375,5.1635,6.6899,4.94771,3.974225,5.5657,4.022775,5.2788,4.75903,7.444570000000001,3.83489,4.680191000000001,3.114596666666667,4.9161,2.878635,1.24353,1.24353,3.394605,3.96461,2.14236,2.04594,4.9301,4.871055,3.372365,1.92012,2.2059725,3.13444,2.4551433333333335,1.10802625,3.83625,4.70517,8.29211,1.8266760000000002,3.474965,3.47232,3.62531,2.7976166666666664,8.48234,4.16117,3.7453000000000003,2.6636366666666667,3.813915,3.2386199999999996,3.2518733333333336,3.0260766666666665,4.179105,3.81167,4.537915,4.01642,0.40198933333333337,1.54389,2.110866666666667,1.7925325,5.05675,3.83996,2.608076666666667,2.191095,4.527305,3.939258,2.2960875,2.413965,0.8739459999999999,2.3654425,2.64774,2.64774,5.3674,1.946105,3.1986033333333332,2.1978066666666667,2.049796666666667,1.75342,2.649115,4.116485,4.13874,3.716155,4.929545,4.93327,2.73631,2.1130666666666666,2.0038,5.1775,5.582416666666667,2.0996533333333334,2.9175799999999996,2.19415,2.4785333333333335,4.20076,2.7860133333333335,4.964145,3.712275,3.50132,4.56254,2.9030199999999997,3.55039,3.8219,2.1085766666666665,2.5156566666666667,0.41178785714285715,3.3836,2.8303166666666666,4.616175,5.7287,4.63329,6.0596625,1.9835125,1.66925,3.12581,5.5056,6.0967,4.87321,3.3279599999999996,2.2195566666666666,4.531985,2.28579,4.06278,2.298156666666667,2.0734875,5.36925,4.982595,5.055,1.76392,1.883515,0.997206,0.997206,1.233778,0.8408442857142857,0.670502,1.7517002857142858,4.442455,11.410175,4.164895,4.71734,4.25776,6.0114825,2.743145,1.7091633333333334,3.5607375,2.939435,4.98068,2.3649066666666667,2.8936666666666664,3.2471300000000003,3.525233333333333,2.5235533333333335,3.5269999999999997,3.7075666666666667,3.25798,3.5826666666666664,3.4975,3.1387766666666668,3.103756666666667,4.1162,2.61258,3.0446033333333333,3.263973333333333,3.041676666666667,3.5768,2.27944,5.5027438095238095,3.4044666666666665,4.59276,3.4397333333333333,3.4881333333333333,3.867366666666667,2.9806266666666663,2.792946666666667,3.2513633333333334,3.3093833333333333,3.5937666666666668,3.4526333333333334,2.0746875,2.8015633333333336,2.9172999999999996,3.05655,3.05655,3.2797966666666665,3.501533333333333,3.1159166666666667,2.713756666666667,3.3283133333333335,4.125766666666666,2.8908,2.858475,2.758376666666667,2.9366299999999996,5.047963333333334,5.3994,1.6941666666666666,3.32475,3.8114666666666666,3.54685,3.3617666666666666,3.9194999999999998,3.6445333333333334,2.7262733333333333,3.4667120000000002,2.14138,2.7626165,3.5328666666666666,3.4194,2.8841933333333336,2.9527866666666664,4.0653999999999995,2.947373333333333,3.1092666666666666,2.470395,1.4461066666666669,3.3378666666666668,2.574736666666667,2.5779666666666667,2.777075,3.3427666666666664,3.2515066666666663,1.984912,5.886473333333334,2.56034,0.9489369999999999,4.698525,1.933477083333333,1.6563866666666665,4.56534,3.748635,3.16518,2.31969,1.6007675,3.35853,2.842365,3.198675,0.44737499999999997,2.10083,0.44737499999999997,1.9554,1.6007675,2.771485,3.693935,2.664875,3.4776,3.313805,0.5883906666666667,2.96545,0.969625,0.4604917647058824,4.472665,3.799005,4.972265,2.596,6.0183,3.93453,3.750995,5.06055,3.5389666666666666,1.756562,5.92375,3.23836,3.95253,4.814315,3.0550333333333337,1.9916433333333332,1.98973,1.4763733333333333,1.791055,0.972415,0.972415,4.52647,2.4374066666666665,6.084771666666667,2.132515,1.828585,2.373155,1.99429475,2.0746925,4.06848,4.19368,2.1189875,1.8602666666666667,1.99429475,2.851785,3.2705397499999997,1.6720537500000001,5.1161216666666665,2.132515,3.20177,3.29173,3.2849133333333334,5.71485,4.723555,1.7239825,2.1719575,2.46984,3.352645,4.916755,5.20355,1.8868625,3.757365,1.5356033333333334,1.6817775,5.7048,10.733905,2.0961066666666666,2.5259933333333335,2.3568000000000002,4.69999,4.480745,2.13213,5.12175,4.50314,3.21917,39.67245236904762,2.96583,3.3293466666666665,0.4692833333333334,5.321715833333334,2.186033333333333,0.96434,4.49875,3.550725,2.2578375,1.9070075,2.4304799999999998,4.10352,1.3632257142857143,2.9825696666666666,3.811085,4.956185,0.949569,4.73412,4.84508,5.0685,2.8061666666666665,1.3528075,3.86623,4.5809,4.17124,3.094165,3.51921,3.995405,12.140070858585858,3.0478400000000003,2.986875,4.34419,2.79742,4.52164,3.65723,2.58094,3.29587,5.85785,5.50485,5.2451,5.2819,2.45858,3.84467,4.895265,3.56538,4.911785,4.687195,0.12210326086956522,5.0539,3.1787,2.69923,1.6780666666666668,0.9324666666666667,0.9324666666666667,3.0862,2.80407,3.05754,1.236068,2.95358,4.543895,2.50673,4.430413333333334,0.6025657142857143,4.64197,3.47102,4.31839,4.311625,5.0917,1.19472875,1.0843875,3.6259,2.9302433333333333,2.9993866666666666,4.449551636363637,3.79039,6.332765,5.48025,4.070365,3.570805,2.1111291666666667,1.4578533333333334,5.424,0.31172133333333335,3.24433,3.57886,4.024645,14.282406666666667,1.8254875,3.00188,0.54538,4.363075,8.083300000000001,3.212975,2.0137066666666668,5.6065,3.4830666666666663,1.0468077777777778,5.25495,2.430015,3.19075,5.081,3.479108777777778,0.74781625,7.286136666666667,0.709565,5.09325,3.224769277777778,1.3570675,2.098354777777778,3.1268025,3.1268025,3.71711,4.349228500000001,1.3814,2.40366,2.75969,3.50329,2.963535,2.493615,3.258945,3.39115,6.591018666666667,6.3343,4.20427,3.13656,4.679875,4.87375,3.588005,3.41267,3.39028,4.71193,5.1566,2.4530566666666664,2.5204566666666666,1.5437883333333333,2.2497933333333333,2.487865,1.54195,3.467233333333333,3.6060666666666665,3.637233333333333,3.0751833333333334,2.6291166666666665,1.4581966666666668,1.5130800000000002,0.4601154545454546,2.8563500000000004,1.3611657142857143,2.1617925,2.990763333333333,2.433193333333333,2.6246733333333334,0.84872125,2.3129475,2.52236,2.81294,3.48444,5.7193,3.863785,2.77876,2.278303333333333,3.376055,4.722725,2.584355,2.850745,1.98625,3.775265,2.69615,4.691285,1.3448033333333334,0.630593,2.3598025,3.184145,3.10386,3.787765,4.8078,8.84769,3.1265699999999996,2.2853333333333334,1.80014,1.796376,1.796376,2.7479999999999998,2.54967,5.17495,4.52487,3.709575,4.88454,4.37912,4.377455,3.420165,4.71219,8.19469,2.56445,0.49790375,3.029443333333333,1.3087466666666667,0.9968685714285714,1.9308466666666666,0.880683,2.1115725,4.442045,5.7895,6.292845,1.025445,7.57574,2.15624,1.5313400000000001,3.0299300000000002,4.85306,3.699733333333333,2.51415,3.759285,3.3752333333333335,3.8490333333333333,3.19563,2.90828,2.855646666666667,6.52913,2.40065,4.298985,3.5745899999999997,4.193731666666666,1.4628466666666666,1.26008,4.20526,2.83282,3.4604,6.28177,2.9345,2.001505,2.577,3.80646,3.508566666666667,2.4759100000000003,4.233901666666666,3.2484066666666664,5.3366,2.4528499999999998,1.796695,4.952535,5.60005,4.492345,4.959615,1.8606066666666665,2.3358675,1.983495,3.33693,1.5998,0.959925,2.8850125,2.03388,2.11002,4.106835,0.7880408333333334,5.342815,1.39111,0.7620463636363636,3.7952666666666666,4.270595,0.9711128571428571,3.3001505,2.9450981250000003,0.8803833333333334,4.76058,0.18053952380952382,0.18053952380952382,0.18053952380952382,0.18053952380952382,0.18053952380952382,0.18053952380952382,2.0608779999999998,4.100155,2.0608779999999998,2.0608779999999998,1.7836133333333333,0.18053952380952382,0.18053952380952382,3.4471333333333334,2.9520999999999997,3.44008,3.460115,2.300125,3.467725,1.4008528571428571,1.7331320000000001,3.4399845,1.69524,3.3381333333333334,2.79611,5.848896666666667,4.80877,4.06182,4.350635,4.471785,5.41785,4.163315,4.23642,7.602029583333334,3.6962333333333333,3.5836,2.5148566666666667,4.767336666666667,2.5859866666666664,2.1104725,1.8882166666666667,5.0292,4.977465,4.58103,5.28085,5.6416,4.611195,4.68271,0.7855381818181818,0.6999907142857144,0.6999907142857144,4.85331,2.2604833333333336,3.945565,1.0435385714285714,4.938075,1.5433714285714284,2.3306,2.55766,4.522233333333333,4.522233333333333,6.77905,4.27193,1.6286516666666666,12.275751666666666,3.3721666666666668,1.1605444444444446,5.22115,5.0548,3.54873,3.351375,2.392455,4.0178,0.7183666666666666,3.5092666666666665,3.4177999999999997,3.5358,3.0612,1.4963833333333334,1.62701,4.991694166666666,3.3047799999999996,3.0766466666666665,3.517333333333333,5.178005000000001,3.419389166666667,0.8280099999999999,2.209356666666667,2.6233999999999997,2.34662,3.9674666666666667,3.3948666666666667,3.451033333333333,3.5259,3.3844666666666665,2.31246,1.0427566666666668,3.00954,2.64629,3.736695,3.654175,4.273195,2.6632433333333334,3.5660000000000003,2.75665,1.624962,2.2227099999999997,2.939737619047619,4.023166666666667,2.00112,3.22397,1.8410333333333335,4.117133333333333,5.198729166666666,4.984995333333333,2.5394,2.65755,2.744525,2.673325,1.6561142857142859,2.6217,3.2727057142857143,2.577325,3.839066666666667,2.98492,3.6783573333333335,3.52467,1.1693,1.28173,1.770455,2.245615,3.4348333333333336,3.527566666666667,4.955245,7.246995,4.52712,4.88747,4.65312,15.235984333333333,0.47109449999999997,12.179780000000001,0.9777499999999999,3.270045,2.2491966666666667,1.97828,2.956505,1.6104500000000002,1.49655,2.55489,1.216996,2.828844666666667,1.94385,3.2230933333333334,2.3898366666666666,2.8466466666666665,1.5899266666666667,0.8115408333333334,3.1865133333333335,2.5736933333333334,3.1676300000000004,1.062368888888889,3.7085000000000004,0.7757858333333334,0.3521276923076923,2.7220433333333336,4.4863,4.790535,4.72784,0.9246272727272727,4.015585,4.59761,1.1317275,2.672125,5.848085833333334,3.367475,3.7978,3.85304,3.80601,1.929625,4.05411,2.7529066666666666,3.019265,3.512785,2.69361,2.83682,3.903005,3.2208,3.4386,3.0922,3.377175,5.2947,1.36428,4.698755,2.1724475,4.20137,5.032936666666666,2.1065575,2.5890733333333333,3.1573933333333333,5.9240725,2.4406466666666664,3.355755,5.8375,4.074533333333333,4.16695,1.7785633333333333,2.4789475,4.57652,3.5926666666666667,4.477295,3.3645333333333336,3.1860033333333333,2.990676666666667,4.021133333333333,3.2006366666666666,2.6861766666666664,2.79556,0.45283555555555555,2.530475,1.9480925,4.766865,4.943325,3.17483,2.6819900000000003,3.2228600000000003,9.50442,3.3459000000000003,3.773105,3.123583333333333,3.74343,2.988545,4.275408333333333,2.75981,2.3594475,2.90692,6.50345,5.04745,2.1088999999999998,3.1722,3.069,2.5925333333333334,4.7428886666666665,1.696752,6.369543333333333,3.84595,5.22925,5.0156,5.53295,3.55078,6.710876666666666,4.00061,3.41722,0.71805,2.44208,1.7153425,3.058543333333333,3.4617925,4.192315,3.82304,5.727,2.7364033333333335,5.05205,2.9659633333333333,3.8922666666666665,3.2332033333333334,4.97901,4.96184,5.25395,2.7026166666666662,5.652616666666667,4.27552,1.5143733333333333,5.5701,3.41779,4.078,2.222885,2.14578,4.830256,1.1674900000000001,2.3040266666666667,1.9762875,4.20448,4.25522,2.6012999999999997,3.374366666666667,3.109005,2.789426666666667,3.90077,1.338668,2.3038666666666665,2.2954766666666666,2.7551133333333335,2.47344,2.857476666666667,2.6895466666666668,3.964915,2.837423333333333,2.8380733333333334,4.35725,2.43709,3.89904,3.47015,1.3785168181818181,1.3785168181818181,4.853585,3.0160733333333334,1.70513,1.373375,2.210055,1.7874825,1.185984,1.3712533333333334,0.6498929999999999,1.63103,1.53268,2.8284633333333336,2.2082833333333336,1.6626899999999998,1.8939366666666666,2.3399466666666666,1.50695,1.68901,1.79205,2.129695,4.302285,2.95697,3.3770333333333333,2.923275,6.003,3.079725,4.484915,4.054778333333333,1.98746,4.04041,3.0804,1.95445,3.46905,2.3813275,2.845865,3.710145,2.2358825,4.492915,3.13207,3.991865,3.6313,0.8050077777777778,4.88447,3.86489,3.31429,3.53803,2.5794433333333333,5.26795,4.642325,5.40961375,9.293589166666667,3.84134,4.559655,2.8815266666666663,3.90648,3.91574,2.151675,2.60092,4.602325,2.3293125,5.934005,1.8858599999999999,2.607055,8.428096666666667,3.12283,4.019236,1.26252,4.670565,4.880695,3.17834,4.64702,4.91005,6.58676,17.06852875,0.6094235294117647,1.098418888888889,3.316046666666667,4.098825,3.92859,2.1923175,3.963515,4.067175,4.8675,2.977395,4.60984,1.6287916666666666,1.6287916666666666,4.47402,0.7594763636363637,1.903652,2.86379,3.871265,0.38661307692307695,1.9454866666666666,4.260815083333333,1.0889766666666667,3.0314766666666664,2.69983,2.935945,7.42505,2.43143,3.3287033333333333,1.92623,2.14857,3.9008075,3.916355,3.44694,7.141314666666666,1.82942,2.901625,4.666835,6.648365,1.74895,2.339593333333333,2.5103066666666667,1.4432733333333332,2.980875,1.73116375,3.978195,3.453105,1.49764,1.833248,1.833248,3.17197,5.7609,4.120748333333333,4.009475,4.733595,5.6268,3.174205,3.71491,3.847195,3.608195,4.358296666666667,3.67352,4.57003,0.929746,0.356169375,5.37275,3.79554,2.53078,8.20062,1.59108,4.686466666666667,3.96455,0.38194083333333334,2.05386,1.25708,1.8827766666666665,2.02,5.71019,3.07458,3.08472,4.635415,4.31468,4.794185,0.5938915384615384,1.99577,0.59258,5.857568333333333,1.641538,4.79523,2.264515,3.4580237499999997,3.101235,4.212465,4.60517,5.151,0.8415172727272728,3.09332,4.434565,2.17216,1.721515,3.57842,3.296365,3.56318,3.7880262499999997,5.60802380952381,4.622015,5.47775,2.7276866666666666,0.5577511111111111,3.4766666666666666,3.791425,0.6186123076923077,4.039705,4.27704,3.951935,3.86699,2.6691133333333332,5.0147,3.0774,3.19348,2.123885,3.786285,2.07246,4.59215,3.786335,0.6766223076923077,4.218265,3.89327,3.24237,4.426735,4.204475,2.813215,3.77988,0.714253,2.99527,3.955042222222222,4.763415,3.3884000000000003,2.651425,3.4250333333333334,2.651425,4.21321,2.92246,3.4309,1.6639983333333335,3.1872933333333333,2.0622875,4.27627,2.8956766666666667,5.43635,3.5642333333333336,3.09301,3.193293333333333,2.54011,2.54011,2.54011,2.5388100000000002,0.9774883333333334,4.81236,2.391453333333333,1.6474033333333333,3.7293000000000003,2.50351,3.261646666666667,4.08722,5.269,3.99796,2.205375,1.583526,4.0654,1.945656,2.61457,2.86072,3.60358,2.186295,3.582305,2.669675,1.777684,4.6792,4.123615,4.2611,3.639455,0.74227,2.41437,4.96667,7.58476,4.96202,2.981055,6.15635,3.3453,3.744575,1.8354475,2.2528925,5.0703,2.4325275,4.55173,3.872475,4.547525,9.059036666666666,4.10075,4.231995,3.46032,4.920025,4.492305,3.1763500000000002,3.1763500000000002,4.30448,3.94911,4.4488,4.49922,4.39709,4.55985,4.334245,1.162985,4.274355,3.974875,5.60685,8.467525,5.18175,4.176859333333333,2.2587433333333333,1.6371133333333334,2.54539625,4.99806,3.93609,4.84627,2.9578699999999998,4.863765,5.36365,5.64405,4.982335,3.013083333333333,4.37662,4.44042,5.23715,5.32865,3.829635,7.097038333333334,4.69369,2.288343333333333,4.729905,4.45635,4.597605,3.75473,4.979545,0.82482,4.374685,4.65004,1.2729300000000001,1.605152,5.14435,5.0477,8.921266,5.4647,5.07805,6.43335,2.80783,2.62741,5.0389,1.4002775,1.4002775,2.56555,1.5742933333333333,2.9351133333333332,3.2818133333333335,1.93028,4.041325454545454,1.37788,2.30343,6.361985000000001,3.57008,3.590235,3.11437,4.03515,4.30948,3.147883333333333,1.1094533333333334,4.04571,3.00632,3.832485,4.41017,3.72936,5.2865,5.35275,4.97694,4.2947,5.61725,6.5756,4.75321,3.180395,3.877905,1.96966,1.96966,3.80907,4.45729,2.2112866666666666,2.96866,2.346567424242424,3.0186166666666665,1.7950633333333332,1.7950633333333332,4.282,3.202285,2.10036,3.571115,2.6944,1.84616,1.132085,1.2774666666666665,2.74381,0.46204,0.8976366666666666,2.52282,4.33512,0.4304390909090909,3.690625,1.7647559999999998,5.72895,3.302165,6.974705,4.377905,5.455516666666666,4.72795,5.0102,4.221115,1.854375,1.7918720000000001,4.56941,2.80114,3.812735,1.2505933333333334,3.14755,4.10763,2.805,2.56747,2.732195,4.52035,3.58956,3.4532,3.76374,3.544515,3.362235,3.10837,1.0982942857142857,1.89773,2.18463,2.50881,4.269735,7.58939,0.893736,1.5034266666666667,1.5034266666666667,2.15,3.94135,2.623505,3.05714,5.1522,2.9178366666666666,1.13486,1.13486,1.13486,2.845375,3.419511,4.741945,3.09533,4.329475,3.29836,3.55998,3.024345,3.3193966666666666,3.53169,4.10457875,2.4358125,1.185984,2.543435,2.4358125,3.48264,1.4286566666666667,1.6783733333333333,1.9446925,5.500900666666666,2.706415,5.817329,5.500900666666666,3.110914,1.8051466666666667,1.8051466666666667,2.795365,6.00918,1.8051466666666667,2.427195,5.84269,2.22261,2.65184,4.96604,3.41371,4.36625,1.8154766666666668,3.003805,4.72879,2.2342766666666667,2.31205,3.87703,1.8154766666666668,2.51144,2.31383,5.56392,2.660365,1.112172,2.439395,3.22508,3.1959295,1.904005,2.0294594999999997,4.0381,1.775832,2.085665,3.055495,2.278495,3.196945,3.81851,2.0902499999999997,2.548765,2.22892,6.22043,2.32334,3.602085,3.361705,3.361705,8.36772,1.03514,2.909035,2.245505,2.765445,2.27274,1.3191066666666666,1.3191066666666666,3.4413,1.936645,6.707660000000001,2.42965,3.21412,3.32807,6.53485,2.66696,2.597405,6.36059,6.36059,2.66441,1.4646,1.1788125,1.1788125,1.4646,2.009866666666667,1.24016,1.1686349999999999,1.6123033333333332,1.9685166666666667,3.6043,2.021915,3.39191,3.16596,3.10646,2.88045,3.00093,1.941355,3.4936241666666668,3.4936241666666668,6.26732,2.58717,2.972295,2.885075,3.121095,2.562835,2.8876,2.60818,5.44057,1.73771,1.5625676666666666,1.2806826666666666,2.1501943333333333,5.59492,4.102224333333333,3.409168333333333,3.04763,1.74635,1.74635,1.74635,4.76139,2.37424,1.1686349999999999,3.01661,3.046675,1.328645,5.0983775,3.1613575000000003,6.30064,3.43942,1.87239,3.429215,2.949756666666667,2.01111,3.428675,4.29852,3.35536,1.562115,2.51028,3.082465,3.014645,6.00269,2.09855,3.15733,2.595305,5.87224,4.77488,2.026195,1.99782,5.35031,5.47532,5.10943,5.45659,0.941098,0.941098,3.51322,3.51322,0.68574,4.23982,3.11838,4.66208,3.67348,4.96293,2.165355,4.194391666666666,4.194391666666666,1.993305,3.210265,3.332575,1.17245,4.20588,2.891735,3.054715,2.733885,4.43253,2.543285,1.770185,2.793945,2.75913,2.776245,4.56734,2.50932,1.883635,3.608725,4.87229,5.91671,4.63129,2.29953,3.41524,2.30524,5.1184,2.84924,3.42624,2.026025,6.47939,4.5119,2.28667,2.328285,2.87407,5.22,2.28912,2.43447,2.545205,7.11178,4.44087,3.238375,1.88963,2.25759,6.3494,3.006365,3.02593,5.07295,3.00001,2.97764,2.54099,2.86543,1.9167466666666666,2.03213,1.7548266666666665,1.8070899999999999,1.7481633333333333,2.05338,1.641945,2.1702233333333334,1.537155,1.9167466666666666,3.59889,3.9775,2.21929,1.88188,1.88188,3.6712,3.6712,2.9435433333333334,2.9435433333333334,2.78895,2.060095,1.77748,3.59632,2.1276650000000004,2.1276650000000004,2.2822375,2.2822375,2.71733,1.90622,4.1534,1.990415,3.197425,2.12777,2.12777,1.53693,3.71861,4.39633,1.4286566666666667,4.37425,2.0902499999999997,1.732245,3.97307,3.28908,1.876725,2.44153,6.44678,2.010155,5.68305,2.970285,3.1962,3.23843,2.614,6.57344,3.35372,2.58513,2.5965034615384615,2.907265,5.53541,3.59463,1.53857,1.53857,3.63066,4.73737,4.06812,5.80878,2.72022,3.106165,1.726765,2.715125,1.74215,2.7417,1.85045,0.7423580000000001,0.7423580000000001,0.7423580000000001,1.8901575,4.59582,1.8901575,1.99574,3.702295,1.81904,2.33095,3.78644,3.61261,4.87202,1.5088033333333335,5.20089,1.5088033333333335,1.5088033333333335,2.13702,2.15833,2.428845,6.09981,2.428845,2.369655,3.96077,2.549725,1.838295,2.76356,3.2608466666666662,3.356844166666667,3.3034199999999996,4.15685,1.4290283333333333,4.433975,0.7627054545454546,4.4177,4.8425525,2.49442,2.49442,0.7603209090909092,3.9433666666666665,2.9600933333333335,5.94455,5.20355,4.102405,5.1024,4.35504,4.091,4.955015,4.201985,4.17679,3.481665,4.084245,4.895135,5.1013,3.36443,3.36178,4.01507,2.7038533333333334,1.420606,4.28299,3.913155,3.16562,1.6651,3.91053,4.28683,6.3590875,1.3140875,5.0982,4.407405,2.166925,1.845135,3.127615,3.58927,1.72873,1.53857,3.766385,4.85471,2.671505,4.563525,3.09567,1.1702,3.00693,1.2171928571428572,2.950203333333333,1.8677866666666667,3.232946666666667,1.8347025,2.6364233333333336,4.545755,3.62105,4.85578,3.281895,2.2358775,4.64965,4.01778,3.295755,4.90148,4.155925,2.66609,6.18925,4.842455,3.056338333333333,2.6120533333333333,2.922515,3.0134433333333335,3.0390566666666667,2.826363333333333,4.619685,4.177625,3.71991,2.39333,2.581303333333333,2.418773333333333,3.220776666666667,2.2793366666666666,2.34143,2.15349,2.4049275,1.3253675,3.0484929999999997,1.23222,1.8856875,1.803525,3.03465,1.4840525,2.073655,4.27316,5.51785,1.99968,4.28608,4.268995,6.30686,1.9171666666666667,1.6524999999999999,6.95475,4.29281,4.740715,4.31384,4.25408,2.113205,3.321875,2.577475,2.80662,4.46326,0.6917541666666667,4.09282,2.113513333333333,0.8008090909090909,5.0781,4.5144,3.97988,1.952470357142857,4.73676,4.02144,2.67202,3.3204733333333336,2.50941,2.1697233333333332,0.590245,3.03178,3.026375,4.88878,2.52635,2.0291125,3.73517,1.017675,1.9325683333333332,1.9325683333333332,2.620025,1.9325683333333332,4.500555,2.6809,4.65348,4.328465,5.95745,13.223466666666667,3.369066666666667,5.47395,2.680365,4.658575,2.957385,6.5315425,3.24513,4.675035,4.680505,3.76096,1.1701616666666668,4.3963,3.0668166666666665,2.2815933333333334,1.0409833333333334,2.217115,3.463135,7.652206666666666,4.50146,2.3949333333333334,4.38268,3.302153333333333,4.35285,4.75224,4.601995,2.87356,2.8203300000000002,3.955605,5.8082,2.537445,4.673435,1.76259,1.76259,3.14272,4.74497,1.2739875,3.9422493333333333,2.538225,3.31254,2.5406999999999997,2.25901,2.795973333333333,2.344586666666667,0.6865085714285714,3.472535,2.8143666666666665,4.93999,4.0744,0.24014,5.5359,5.4188,4.512885,7.125168333333333,3.4385333333333334,2.87847,2.02786,3.1894233333333335,3.1721,1.4492766666666668,2.71651,3.0199033333333336,1.5913449999999998,3.4210333333333334,3.1798333333333333,3.1015333333333337,3.185,1.5182905555555555,4.352305,2.341245,5.04625,4.31469,3.724465,1.6176833333333331,2.612083333333333,1.2877825,1.807995,1.2877825,4.50438,3.6353666666666666,1.81996,2.5516,3.86104,3.759635,2.99386,3.842995,0.341839,1.3921141666666665,4.44329,4.22806,5.5475,1.895065,2.94115,3.1537933333333332,3.115436666666667,2.856865,3.15807,4.35344,2.29926,2.449806666666667,2.10232,2.5708100000000003,2.8279866666666664,4.588155,1.972575,4.51715,4.043195833333334,5.9889,7.7838449999999995,0.6966044444444445,0.8424429999999999,4.09486,7.4358125,1.972642,3.504635,1.2994916666666667,1.2994916666666667,3.46798,0.43854,3.67216,4.03727,4.23845,4.3415,3.16301,2.46291,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,2.270205,2.84115,4.514273333333334,2.9017733333333333,4.083475,6.0310620833333335,3.02078,2.2099033333333336,0.9292233333333333,3.451505,0.69880875,5.042635833333334,2.8327324999999997,2.284515,0.69880875,2.365395,2.685135,0.919625,3.86175875,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,4.38178,1.5072975,4.211945,4.89901,1.9637280000000001,4.497485,4.514595,5.4044,4.970083333333333,3.8217407142857143,3.185665,4.724855,2.44741,5.524195,4.476705,0.7531428571428572,1.4110185714285712,1.3537114285714285,3.716333333333333,3.716333333333333,3.1470166666666666,3.56694,4.63869,3.70567,4.369795,3.0044233333333334,1.97469,0.5730714285714286,3.98819,3.158955,2.757195,4.06075,3.1734,3.16055375,4.541225,4.217935,6.3154775,4.225475,4.84519,5.62715,4.4115,1.4214185714285714,2.93487,5.027946666666667,34.990530456349205,1.4956566666666669,4.17306,4.03025,4.44677,3.993855,4.231,5.1367,0.4264090476190476,4.7469,4.20575,2.0623525,2.06831,3.991645,1.856105,2.41745,2.24632,1.7344225,2.900375,2.4617733333333334,2.88099,3.81673,0.6034661538461539,3.37238,3.69239,0.38347105263157893,2.561166666666667,3.107155,2.75274,3.87278,1.794025,4.70377,3.677845,3.09431,3.770205,3.37425,4.385495,3.00305,4.15754,2.22602,5.027946666666667,3.52523,3.62235,2.893735,1.714124,4.06095,3.46391,6.996623333333333,3.230345,4.6002,6.4916825,4.960905,2.184355,5.08445,6.767132500000001,7.935636000000001,2.6123233333333333,2.525365,4.37184,5.8466,3.99083,3.967185,5.6366483333333335,2.509475,2.1239725,2.052065,59.528306033588876,6.0105,4.132315,2.588025,0.946923,2.961596666666667,2.8811066666666663,3.27957,0.9189122222222222,4.900665,0.7869933333333333,7.631640714285714,1.945656,3.2396833333333332,1.85668,2.59213,2.5312066666666664,2.7957433333333337,2.39919,2.279453333333333,3.2884766666666665,1.4709966666666665,5.962444166666667,4.371666666666667,1.5907775,2.4493733333333334,1.3680966666666665,1.3579625,7.32233,5.6008,3.1567,5.0787,5.3305375,1.5188285714285714,3.5706,4.21632,1.571935,4.58306,4.177615,3.947345,1.8173525,3.022219166666667,3.6488666666666667,4.257105,5.37345,3.97052,4.93808,1.9566975,3.686555,4.457833333333333,3.4140333333333337,1.508572,4.18588,3.3515333333333337,4.08633,5.0232,3.825475,3.936595,4.99046,4.3986,4.54675,4.65817,4.480105,3.2497866666666666,3.54114,4.04178,3.19996,4.601525,3.70587,1.473965,1.473965,4.24581,4.90467,5.4047,4.128325,4.83064,3.6951,2.727765,4.666315,4.98147,0.6855899999999999,5.1275,7.256035,5.8766,5.7118,1.3697555555555556,3.145475,0.9206216666666666,0.9206216666666666,0.9206216666666666,3.79015,3.5856999999999997,2.7211700000000003,3.171226666666667,0.952646,5.28345,5.37875,3.03092,1.8182225,1.966795,4.17266,3.487785,3.80378,3.838406,6.4789,3.5612,2.460226666666667,4.811315,6.808,2.447215,4.15733,3.53544,3.042495,4.3361,3.861255,4.72645,5.4601,5.1073,3.653933333333333,1.8822999999999999,1.8822999999999999,0.7285136363636364,8.594657999999999,2.020745,6.3082,5.3946,4.697245,4.5906,3.78669,3.2498183333333337,4.716195,7.822575,5.579126666666666,1.5045400000000002,4.47821,1.12697,3.71711,1.9889333333333334,0.9587622222222222,1.2229257142857144,2.7920866666666666,3.3540666666666668,2.87153,1.224702857142857,2.6655666666666664,3.1170666666666667,0.8874,3.022296666666667,3.6269333333333336,1.6592600000000002,1.7205559999999998,3.16199,3.3341666666666665,3.0831966666666664,2.54971,1.6998360000000001,5.1723,4.42285,3.46089,4.074885,5.2365,3.146685,4.71728,5.88995,5.049,4.07055,3.8821,11.485601666666666,7.90607,2.7612666666666663,3.40512,2.16306,3.850035,3.27171,4.439915,1.17794,3.930935,4.193455,1.246635,3.55504,2.73493,4.33992,3.4557,3.86032,6.64535,7.119366666666667,3.964085,1.6188583333333335,1.6188583333333335,1.6188583333333335,4.67459,1.1253133333333334,1.358375,0.4935744444444444,4.461998333333334,3.0016499999999997,4.097075,0.9387000000000001,1.17753625,4.051785,4.365625,3.81546,16.679221238095238,4.1598,4.330505,5.7312625,2.708763333333333,3.706535,3.1618,0.962188888888889,1.660645,4.53816,3.737755,4.79594,4.123635,4.87049,4.17994,2.7761264444444445,5.964,5.57055,0.6059599999999999,5.02765,2.4327,4.56293,5.7909,3.4736333333333334,2.545523333333333,3.9589250000000007,1.6880966666666666,3.91188,5.77885,2.9286999999999996,2.529675,4.185885,4.759195,5.25725,4.08194,3.44991,4.29693,4.97666,4.90242,4.875675,4.857965,3.821255,1.1735514285714286,1.59263,6.427650666666667,4.947325,4.448615,4.9046,2.514575,2.849793333333333,2.618323333333333,5.33123,1.946415,2.376595,3.2068100000000004,3.2133233333333333,3.592033333333333,4.72801,3.42213,5.555913333333333,1.6855475,4.66526,0.981165,3.759355,3.21752,1.6846433333333333,4.743195,1.0197833333333335,4.80824,5.43595,5.21885,4.90305,3.8975824999999995,3.747335,2.98655,5.38265,5.76795,3.124005,3.97027,2.4266,2.517595,1.994975,2.582955,3.54876,5.02985,1.07606125,4.553725,1.39833,3.227495,1.6021766666666668,1.07606125,0.23835135135135138,3.860125,2.96995,2.4336520833333335,1.9117199999999999,2.88765,1.112505,4.552345,3.627235,4.69532,2.605236666666667,6.3457,7.536440000000001,2.9289133333333335,3.402066666666667,2.76332,0.848634,2.2547466666666667,5.6996,4.92204,5.0078,4.93955,2.0996333333333332,1.9400000000000002,3.7681675,1.5831875,2.3176975,1.57254,1.64689,1.7150125,1.886935,1.997895,1.8389025,2.1495425,1.20918,1.40463,1.815435,1.9601875,1.899225,2.355583333333333,0.5232226666666667,1.760278,2.8759766666666664,3.26206,1.9146775,1.9554933333333333,1.60892,4.588875,2.2175933333333333,2.573735,2.8226,4.812915,3.98709,2.5991133333333334,4.12263,1.8505200735294118,4.00550375,22.8093625,4.5641766666666665,5.8411,4.768415,2.9623666666666666,3.795765,5.0393,2.906275,4.39765,3.4933333333333336,0.79232875,5.02465,4.44402,3.77565,4.156345,1.5426766666666667,2.0381133333333334,2.512023333333333,2.55201,1.3271642857142858,3.1145066666666668,5.3641,4.0641,3.276395,3.801665,4.928055,3.903155,5.2002,1.29495,3.75448,4.162015,4.57365,1.825684,2.7309300000000003,1.84295125,1.84295125,3.69041,4.98117,2.5999733333333332,3.1798866666666665,4.12449,4.09663,6.395045,3.82247,3.42039,1.660645,4.01438,4.508115,3.108643333333333,2.469900634920635,2.469900634920635,3.3020099999999997,4.47764,3.8667,5.268418333333334,4.14341,3.411552888888889,0.6276022222222222,0.6276022222222222,0.6276022222222222,3.80335,3.717485,3.971256666666666,5.14255,2.1838,5.5879,4.569555,4.48609,3.86398,5.689,2.8573,1.5673285714285714,5.59945,4.53309,0.4464692857142857,4.136333333333334,5.2763,1.650995,6.05245,5.34875,4.914275,4.157985,3.67221,2.817735,4.76712,1.646688,4.452955,1.5929033333333333,5.28155,5.70225,1.288725,3.1618,6.82301,5.05205,3.9417333333333335,2.4287875,3.934225,4.183295,3.3962333333333334,6.92619,4.15633,2.2061699999999997,2.9607466666666666,2.77271,2.6896966666666664,2.8820200000000002,1.7910599999999999,4.50011,0.7153883333333333,1.90464,1.90464,3.2896,4.658315,2.36183,3.082825,4.38049,4.5423,4.583985,1.32933,5.215545357142856,4.39068,4.95162,3.67491,4.160447666666666,3.729293,0.4311546666666667,2.5401341428571427,1.04016,0.4311546666666667,4.091405,0.8177444444444445,4.074785,4.185515,6.421716,2.1407633333333336,1.038585,1.0986639999999999,2.28322,3.1527433333333335,1.6061333333333332,2.4419033333333333,3.2798,3.59895,2.089446666666667,2.2164266666666665,4.584915,3.3569387500000003,3.96358,5.7807,3.43126,4.933215,6.955088333333333,4.48687,3.451205,4.40201,3.61353,4.388205,5.59205,6.2431475,5.1521,2.67389,1.0676677777777777,4.45332,3.95034,3.84348,5.2866,4.525975,2.629245,2.73251,2.5095300000000003,3.114573333333333,2.6996033333333336,2.5344333333333333,2.9131766666666667,3.1956933333333333,2.5225833333333334,4.559475,5.8508,4.36665,5.65755,3.7490666666666663,3.5338999999999996,3.032775,0.7402785714285713,4.362915,4.437685,4.78017,3.513666666666667,5.780376666666667,3.751265,4.380305,3.728915,0.6355200000000001,0.5467835714285714,4.3968,2.791565,3.618025,4.672225,4.427775,1.8800979999999998,5.0961,4.45628,2.7479099999999996,2.6804666666666663,2.4760375,2.1804454166666667,3.347566666666667,3.2641566666666666,3.3569666666666667,3.2558233333333333,3.5887666666666664,2.777225,3.4996333333333336,4.2217666666666664,4.382715,0.582851875,0.582851875,0.582851875,3.4954359861111115,3.923166666666667,3.5485333333333333,2.748006666666667,2.775173333333333,1.162985,3.05428,3.099156666666667,1.8969325,2.6835833333333334,2.63901,1.00672,3.1448850000000004,4.722305,10.018723666666666,1.4613821666666666,0.625799,3.82445,0.625799,0.625799,0.625799,0.625799,2.1578125,4.1577045,3.981935,5.96435,6.15235,2.75942,2.8928666666666665,3.14885,3.686656666666667,5.25185,1.4157966666666668,2.58851,3.2459133333333337,2.7496666666666667,3.1366599999999996,4.64291,2.2536166666666664,3.38755,1.1897777777777778,4.340035,3.081235,4.17252,0.864115,0.694947,0.694947,0.9375431304347825,1.8016581304347827,0.9375431304347825,0.9375431304347825,0.3660891304347826,0.3660891304347826,0.9375431304347825,1.48029,2.4600233333333335,2.72544,3.1174,2.5351133333333333,2.50925,3.12698,2.7875300000000003,4.54742,3.514475,1.85374,2.2625533333333334,1.7328525,0.18664799153166423,0.18664799153166423,0.18664799153166423,0.18664799153166423,2.46846,2.6957133333333334,0.907366,5.1531,0.7783527272727273,1.7216879999999999,4.708966666666667,4.96882,4.140475,2.759005,4.52441,3.857115,1.7283833333333334,1.1717775,3.68583,4.752925,5.9516,2.455285,1.5758566666666667,1.92237,3.9131666666666667,1.4736366666666667,2.746703333333333,2.91329,2.9026866666666664,4.76096,4.256175,3.078675,5.0722,2.6498166666666667,4.400415,5.1506,4.14905,4.530935,5.0949,5.254596666666667,5.013893333333334,3.0434,4.970063333333333,4.64291,5.2045,4.423255,4.94714,2.30015,3.08862,4.07694,5.163,4.39587,4.033745,3.102665,4.34984,3.89042,2.4673133333333332,6.1647,3.57276,7.63702,5.8954,6.05265,4.96923,1.5414285714285714,1.01803,0.6406438461538462,1.7834299999999998,4.91089,5.00775,3.820215,1.648294,3.99465,2.80286,4.855305,5.23335,6.328434,3.9667,3.113445,1.781492,5.3395375000000005,3.74585,3.32299,1.689305,1.0853325,3.80555,3.623635,3.48246,3.601665,2.08418,4.626855,1.5784066666666667,2.9252533333333335,2.52219,3.755965,3.1568,4.841935,2.3598375,1.490455,5.5236,3.0402166666666663,9.1734,2.903375,5.17215,5.598,4.31897,5.02895,3.439275,3.614505,2.2668625,4.21407,5.067252,2.363655,4.717435,4.62016,7.611645,4.966785,3.22507,4.152575,4.46803,3.3569387500000003,3.46407,5.40845,5.617,2.455725,3.203886666666667,3.3851,2.248225,2.62548,4.60794,5.80655,5.3379,4.6523,5.1703,4.45935,5.5142,0.6276976923076922,3.4995666666666665,1.2799914285714284,31.213733136387162,2.523665,4.468595,3.102425,4.883285,1.678574,2.4315233333333333,3.2780227380952383,1.6871452380952383,1.6871452380952383,1.6871452380952383,1.6871452380952383,1.5908775,3.35471,0.3443811111111111,7.653366388888889,0.3443811111111111,4.92866,5.0716,2.1454425,5.21395,2.3810525,3.7938586666666665,2.5982833333333333,2.3468,2.7249933333333334,2.083743333333333,0.6106746153846154,2.6022633333333336,0.7196816666666667,3.1092866666666663,2.2321,2.375432,1.2480066666666667,2.375432,6.2058,8.056185,5.2435,4.34636,5.92085,5.91825,7.837153333333333,3.109225,1.6549925,1.6549925,2.3269800000000003,5.0691,3.60178,4.493275,6.310341666666667,4.15471,2.92121,3.980775,3.42038,3.34037,2.280225,0.828876,1.917215,3.93969,3.53182,5.1246277777777784,2.0538075,4.784605,1.6793600000000002,3.29886,1.9203040000000002,3.314826666666667,3.5776,2.4328499999999997,3.4421,3.0898233333333334,4.996255,0.6916246153846154,3.40056,3.7550000000000003,2.975626666666667,2.32236,4.2866518750000004,3.23466,2.768273333333333,5.04159625,3.860175,5.06675,4.089275,3.62246,5.4103,5.34315,2.0762033333333334,6.05425,2.3412191666666664,1.9234600000000002,3.1369900000000004,2.8871066666666665,3.1733,2.65316,2.03674,3.249146924242424,4.44451,3.3139025,2.2847459999999997,2.2847459999999997,2.624335,3.753525,3.965115,0.5270618181818182,3.416975,2.982345,8.51461,0.9225636363636363,4.156385,3.719855,5.6281,3.83358,3.98735,2.4108,3.703105,2.9962,5.89815,2.80441,3.995075,2.5843766666666665,4.05682,2.924243333333333,3.589845,3.80763,4.138235,4.835116,3.24027,2.20669,4.930575,2.5194300000000003,4.81563,4.714955,4.773955,4.70364,4.03166,2.89735,2.1831533333333333,3.0363466666666667,2.8143333333333334,2.9797500000000006,3.2675866666666664,2.7849483333333334,5.101996666666667,3.094993333333333,2.575556666666667,6.918284166666666,5.282875,3.87875,3.1131100000000003,3.773633333333333,4.023095,3.598105,2.535775,4.5803650000000005,5.5392,4.7729,1.4262499999999998,4.77634,2.9630500000000004,7.232695,4.984925,8.926986666666668,5.03195,3.96268,2.377745,4.116975,5.781135,7.4958,3.5475,5.8649,4.221145,3.26909,3.91584,1.696752,4.365801,1.4710150000000002,3.827785,4.71912,3.527566666666667,0.863125,9.057515333333333,1.2104444444444444,1.6095875,2.456123333333333,1.7769266666666665,3.1688433333333332,1.3938283333333334,3.466295,3.24323,2.61576,4.39947,1.1033083333333333,4.772225,1.3948216666666668,2.343932333333333,3.850115,5.1292,2.15608,4.98863375,1.8223806666666666,7.6772,4.24269,2.642695,3.97466,3.19787,1.3727108333333333,7.55104,2.99006,3.57889,2.26933,4.09286,2.2215875,3.4159800000000002,2.102575,3.843,1.3879775,5.4484,4.80204,4.18617,0.901228,1.9406256666666666,3.696655,5.30485,5.5025875,1.4100899999999998,1.4100899999999998,6.05935,4.4025,5.54985,3.62297,3.37473,9.5389,4.5274,5.7505,4.22279,2.510975,2.0997875386584743,0.344761,0.20382193548387098,0.6306674910394265,1.1243590476190475,0.6843276497695853,0.20382193548387098,1.2786985,0.4268455555555556,1.4691200476190476,1.9093659910394265,2.1611175,2.3096275,2.2055866666666666,5.221,6.968935,5.3396,5.45125,4.86781,5.4128,1.3300466666666666,5.2459,4.2578,6.19235,5.84875,5.6767,6.09375,5.81295,5.76635,1.4994566666666669,1.6097285714285714,2.0324999999999998,6.52975,1.5265499999999999,5.7423,5.06805,7.16596,5.2565,5.862,4.96659,4.844925,2.72785,5.8526,5.96645,4.538458333333333,5.00325,5.91067,6.2368,3.9199875,4.420375,3.9091666666666662,1.0396,3.8223000000000003,4.95701,1.3271875,3.730166666666667,4.973795,4.5585925,5.58105,2.4931325,3.19429,2.58527,4.730305,2.1693175,3.683885,1.33389,3.20212,3.67455,3.76933,5.5516,3.4767683333333337,0.6444725,6.0131,1.03952125,3.57531,3.276816666666667,3.73135,2.0172166666666667,3.789045,3.8067976923076925,3.7907666666666664,4.434115,14.820220095238096,4.9443166666666665,2.3710675,8.25648,1.44773,3.6042,2.925996666666667,2.9290299999999996,2.22094,0.24848478260869566,3.1870733333333336,5.3747,1.8200800000000001,2.2780566666666666,3.6344666666666665,1.838775,2.1851933333333333,1.3810114285714286,3.79415,4.760505,4.25834,5.19345,0.5066214285714286,2.4151666666666665,4.52895,2.88253,4.75483,5.1319,4.55481,4.52702,0.5324711764705882,2.6143466666666666,2.6143466666666666,5.41845,4.704525,4.851775,2.713875,4.0618,3.238236666666667,5.24155,3.920075,5.64827,4.853165,4.793475,4.69844,2.604725,1.9514040000000001,4.58354,4.49323,3.8013,3.28254,1.781438,4.309275,4.43955,3.686305,4.89089,3.85403,4.283755,0.6312106666666666,3.51633,0.6516566666666667,3.0828866666666666,2.96696,4.047395,18.735988095238095,3.89971,4.37391,2.949756666666667,1.12875375,2.835013333333333,2.5202766666666667,1.564054,2.35641,2.51942,5.18185,2.1537466666666667,4.717015,4.54622,2.1834775,4.895425,2.9603433333333338,4.45584,5.678,5.4716,1.559405,1.733235,2.26735,5.08675,5.1564,1.1451555555555555,5.43795,3.77436,5.5999,4.671495,1.6868100000000001,4.565675,3.6009,3.510405,4.084665,4.36131,3.1134566666666665,0.68282875,7.54058,1.526254,0.20729777777777778,0.20729777777777778,0.20729777777777778,5.1246,3.98487,2.7286866666666665,4.356135,2.758585,4.65088,4.271198571428571,3.944278333333333,8.9445,4.011175,7.464446666666667,0.858555,0.96541125,2.673075,5.3066,4.5051,2.05863,5.7142,5.60085,3.39856,3.563575,4.446395,2.283186666666667,4.63197,4.981395,2.35649,2.8421266666666667,2.9605866666666665,3.36203,5.9226,3.61877,0.6271899999999999,3.969745,3.994035,4.130505,4.64568,4.845455,2.80801,5.24935,3.5009,13.75446,4.678865,7.0327865,2.819293333333333,6.42605,4.72134,4.044215,2.176425,2.3761225,9.94254,2.2505566666666668,4.120866666666667,3.7625333333333333,3.7964,3.07198,2.8160333333333334,2.104865,2.2341025,2.99925,1.9970780000000001,3.775866666666667,2.9814866666666666,2.6535033333333335,3.279476666666667,3.6266,2.46682,2.46682,2.7808499999999996,3.6936,3.3708666666666667,2.6758400000000004,2.9980700000000002,3.8760333333333334,2.83916,2.778753333333333,3.691433333333333,2.4069766666666665,2.2533125,3.756266666666667,3.2144933333333334,1.609276,4.2335,2.3588299999999998,2.40711,2.7290166666666664,2.5371033333333335,3.5361999999999996,5.66169,2.5572033333333333,3.6748333333333334,1.8207033333333333,11.057612666666666,2.1055066666666664,2.0181299999999998,2.00148,1.0586966666666666,1.582216,4.8874466666666665,2.598722,2.598722,1.6005019999999999,1.550275,3.6324666666666667,4.246263333333333,2.198986666666667,1.579985,1.723922,4.328432666666666,3.4727,4.2565,8.18506,3.2218557142857143,2.37432,3.5879448447204965,4.291533333333333,2.2533125,3.3312833333333334,2.9598933333333335,3.045246666666667,3.12725,0.90044,3.373487,2.97334,2.754773333333333,4.244105,3.076026666666667,0.6588081818181818,1.824435238095238,4.85868,2.6880550000000003,3.329943333333333,1.647435,1.647435,2.045765,3.8303683333333334,1.00198,2.3763125,5.031726666666667,5.031726666666667,0.6443095238095238,6.659205,3.60521,4.527845,5.1993,1.1942728571428571,3.6178000000000003,3.5070666666666668,4.916153333333333,6.765648333333333,2.9181166666666667,0.749501,2.9902466666666663,2.68542,3.088572666666667,2.6325433333333335,2.7269166666666664,2.81306,2.5319,2.5202533333333332,0.8159836363636365,3.530445,4.197380857142857,1.3714533333333332,1.278202857142857,5.276,2.08383,1.61319,4.466245,1.85795,3.53437,2.4730075,3.384733333333333,8.73334625,4.17883,5.19955,4.981955,2.333571090909091,0.743583,1.6458760000000001,7.116363333333334,1.8128133333333334,4.174095,4.135215,3.84808,21.344671583333334,3.2333466666666664,1.4105233333333331,1.09148125,3.1644166666666664,1.58173,4.019236,5.3112,3.3414710000000003,3.24129,1.3796099999999998,1.44276,3.1475733333333333,0.537224375,3.3511666666666664,3.6785,3.0495133333333335,2.4391103333333333,2.42695,2.8046466666666667,2.1610466666666666,2.644363333333333,1.656814,3.8047,1.5064816666666667,3.767095,4.37262,2.980143333333333,5.1095,4.47944,4.170935,5.08565,4.49349,3.0514166666666664,2.8311333333333333,2.4890666666666665,1.098387142857143,1.098387142857143,1.098387142857143,2.1109025,3.0031233333333334,2.581323333333333,2.5893,2.174323333333333,2.014975,3.59759,3.717935,3.7643,6.4574750000000005,3.35356,2.1217775,1.78352,1.0055533333333333,2.3852333333333333,3.93326,2.4656966666666666,2.6477333333333335,2.386903333333333,2.48717,2.6003666666666665,2.86646,2.7988133333333334,2.81263,2.460996666666667,3.064026666666667,2.59494,2.1968175,1.8099575,1.784765,3.129583333333333,3.167213333333333,1.93089,3.79236,5.39415,2.8351133333333336,2.5398957692307693,5.842955,4.431885,4.670315,5.51585,5.2115,4.04937,6.5228625000000005,1.26445,4.075205,2.5049,5.1305,5.54235,3.76279,4.26161,2.32381,7.382155000000001,2.809635,0.7750275000000001,7.55239,5.13736,5.822174523809523,4.621655,2.8815512500000002,1.9475975,5.3244,4.250465,4.589965,5.3033,2.51113,4.218565,4.570065,1.7328525,4.202615,2.77255,1.3708683333333334,4.85622,0.6217294117647059,4.348316666666666,3.683995,4.703095,2.835985,1.784875,3.632225,1.983415,1.3789875,2.75568,3.5115,3.114076666666667,7.003781666666667,1.5750275,6.76587875,9.601135,6.6180325,3.468975,1.3195342857142855,3.1180033333333337,1.3195342857142855,2.8030000000000004,2.1833133333333334,0.3156029411764706,1.1524479411764705,0.3156029411764706,0.3156029411764706,0.3156029411764706,1.1524479411764705,1.1524479411764705,0.3156029411764706,0.836845,4.535235,3.5253,3.167585,3.29796,3.783465,2.8696,2.9388430000000003,1.584988,7.044906666666667,2.90204,4.058365,2.609173333333333,1.0411818181818182,1.2512125,4.44013,3.772005,1.0293222222222222,1.7933,0.7716536363636363,3.168154675324675,4.462355,5.41445,3.7052,5.6858699999999995,0.5594107692307693,4.222515,3.47408625,3.0528166666666667,2.5357966666666667,3.52,2.5860833333333333,2.9494566666666664,2.6201666666666665,2.81847,3.60631,6.72665,5.00695,1.425864,4.679825,4.660875,3.07353,3.81714,3.455145,0.3386893333333333,4.484955,3.558175,2.98983,3.2973600000000003,4.58971,3.88238,1.869235,3.38847,3.8453,9.192924999999999,5.18785,5.7177,4.51218,3.982175,1.011965,2.13077,1.968435,1.311985,1.7836133333333333,4.883315,5.611,4.269515,4.27175,3.838406,2.6866433333333335,0.9469716666666667,4.54458,1.199625,1.1521516666666667,3.369765,3.67091,4.966555,1.18245625,2.50209,8.729083333333334,3.1285833333333333,3.838563333333333,0.88838,4.18096,12.165176666666667,3.349505,4.106735,3.285,3.474795,4.833085,5.3804,2.17884,4.539135,0.5734523076923077,4.91322,2.2587275,1.7626075,1.7626075,3.336133333333333,4.50196,1.7081,5.0191,1.6916142857142857,4.531375,2.756073333333333,3.325563333333333,4.776275,3.397735,3.738572333333333,2.583525,2.646834833333333,2.646834833333333,11.60828,0.722215,3.463025,3.6687333333333334,2.083595,2.0794575,0.8109485714285715,1.3879425,1.2325185714285714,2.011955,4.605505,2.528495,4.5136675,2.1547733333333334,5.0971,4.20685,1.6476899999999999,2.045795,1.0078183333333333,5.5693581666666665,2.125295,2.098775,1.756562,1.838624,1.09148125,2.3883479166666666,3.50797,2.683066666666667,2.98199,2.364923333333333,2.62665,1.72584,3.0039533333333335,2.5771466666666667,1.3112866666666667,1.9032033333333331,2.7604966666666666,3.4110666666666667,2.4054533333333334,1.14674,2.54707,2.0571566666666667,3.0589833333333334,0.3296536842105263,0.41118916666666666,2.4256866666666665,2.2054,3.15254,3.17729,2.82744,5.0146,5.7399,4.37929,4.76685,4.483915,3.977965,2.8629766666666665,3.69584,0.6738609090909091,0.06782772727272728,5.42915,0.06782772727272728,3.45407,3.446285,5.7101,3.436855,6.07795,4.76278,2.12444,2.819366666666667,1.3950250000000002,5.98565,5.6454,2.7352566666666664,5.0329,1.945155,4.015655,2.3254616304347824,3.2582299999999997,3.3340666666666667,4.59822,4.687083333333334,3.34195,2.2653466666666664,2.2653466666666664,4.10435,7.29478,4.39703,2.08846,2.6577033333333335,4.003775,2.676895,4.990325,4.12465,1.0854422222222224,4.57453,2.794643333333333,2.5736433333333335,4.432975,1.06659,2.28311,4.0748,3.46505,5.1529,3.10128,3.66226,3.921565,3.75957,4.31813,5.2905,4.39929,3.2588316666666666,3.53849,2.655393333333333,2.9476933333333335,2.833653333333333,3.5694666666666666,4.500485,3.0263000000000004,5.099808333333334,4.610505,3.44769,5.05015,4.58532,3.535805,1.4274580000000001,1.2786825,3.94546,3.21955,1.6013566666666668,2.9516033333333334,3.276645,3.0047033333333335,3.9631133333333333,2.7364433333333333,2.2932383333333335,13.229162500000001,1.9353033333333334,1.917428,4.68364,1.238182,3.2483033333333338,4.160015,5.24675,3.202405,1.0837444444444444,2.3128166666666665,2.605236666666667,1.350576,5.31655,0.9660475,0.9660475,3.41552,1.6497633333333335,1.7657566666666666,1.821765,3.665235,2.910125,1.842725,2.84953,3.70243,3.2037099999999996,3.185703333333333,2.0778,6.2309,5.50775,4.08316,0.7415169230769231,3.79952,3.458835,0.8979199999999999,5.22035,3.3933999999999997,8.7861,4.49504,4.719835,3.45371,1.5254275,3.00322,5.11295,4.93287,5.01595,3.775855,4.35022,3.542715,3.542,3.542,4.952015,2.9819216666666666,4.930235,1.940795,5.661861666666667,5.88142,1.650995,5.0554,1.05044,5.4171,3.674735,4.91183,4.98188,3.70337,2.755315,2.576375,4.455665,4.456695,5.0084,4.84399,1.8234325,1.3757099999999998,5.021,2.3542566666666667,5.59665,2.79446,3.625715,6.899635,3.885705,4.837885,4.998985,4.194125,4.495425,8.496849999999998,3.797605,2.94516,9.565225,3.642905,0.6289842857142858,2.1153817216117217,4.39371,0.6486540000000001,4.53536,4.22891,4.89514,4.86578,3.431305,3.76064,4.823775,4.63667,2.480685,0.6878178571428571,4.85519,4.80665,4.408995,4.562765,2.8709366666666667,4.911025,3.5562,0.700976,3.46082,3.934505,2.41297,2.8630566666666666,4.075275,2.2513275000000004,5.407,5.148,4.110469999999999,3.306236666666667,5.890065,5.890065,8.640396666666668,2.11644,0.8418525,0.8418525,25.849856666666668,2.703975,8.070581666666666,0.38194083333333334,1.25708,3.021506666666667,0.931601,3.648015,3.76135,2.3917875,2.3917875,4.73328,4.92793,3.555835,3.268890833333333,3.268890833333333,3.91509,3.726545,4.15288,2.456663333333333,2.054753333333333,2.4520279166666668,4.0930990000000005,2.198935,3.38908,2.4221933333333334,2.995133214285714,2.995133214285714,3.4970666666666665,0.9349766666666667,2.6267766666666668,1.53843,3.3054133333333335,2.755523333333333,2.9221866666666667,2.8026666666666666,4.6934,2.32999,3.1978000000000004,5.541025,1.368774,2.215855,2.958045,2.615256666666667,4.185005,5.86370638095238,1.2975700000000001,3.6932666666666667,2.4242675,5.16602,5.98309,1.5097175,4.569796666666667,5.0126566666666665,3.102064,4.632233333333333,0.9458642857142857,1.825684,3.094535,3.947521428571428,1.3087766666666667,2.48791,1.5308275,1.6818300000000002,2.51405,3.48841,5.3066325,0.9127683333333333,1.5418857142857143,3.041676666666667,11.994325,4.760513333333333,2.7873,1.169152857142857,2.676541904761905,0.9743085714285714,3.4397333333333333,4.3755,5.29955,3.3584,5.89565,1.661295,3.867366666666667,3.96868,2.9806266666666663,3.800843333333334,3.389,1.0078966666666667,2.4876400000000003,2.868183333333333,7.008358333333334,3.1989517142857142,2.668836666666667,0.700969,4.686466666666667,3.4898000000000002,1.516412,5.770124166666666,2.0546575,2.55773,6.01585,1.3123333333333334,2.9705166666666667,1.0643727272727272,3.30252,4.33259,2.99626,3.3112,2.10073,2.4654833333333332,4.939105,4.741525,5.0337,1.98682,4.436645,3.996645,4.33136,3.54685,2.6003766666666666,4.635546,1.185146,2.857325714285714,5.0801,2.75125,4.2203679166666666,1.5044125,2.7262733333333333,1.9545480000000002,1.9545480000000002,7.467141666666667,3.4116999999999997,5.3381083333333335,3.4937683333333336,1.8449766666666667,2.7521257142857145,4.813526666666667,5.7941,8.176966666666665,4.889699666666667,2.7022435,1.9766666666666666,2.162335333333333,4.13968,3.81873,1.41069,1.8619175,3.0112582142857143,1.4156275,3.2515066666666663,19.184299333333335,3.6104000000000003,2.818296666666667,2.9260333333333333,3.0707533333333337,2.6962233333333336,1.58118,3.3067433333333334,3.4280333333333335,2.58316,2.56053,5.886473333333334,2.56034,4.519406857142857,3.0887228571428573,2.492226857142857,1.3754666666666668,4.069022222222222,2.24794,4.21504,4.864105,3.86003,2.8948533333333337,3.19014,2.2491666666666665,3.21373,2.914023333333333,3.811366666666667,3.3244399999999996,0.8559,5.12075,2.65014,3.3185466666666668,2.907128333333333,2.0855225,2.2669008333333336,2.2669008333333336,3.6781491666666666,2.1435008333333334,4.576835,4.303785,3.98429,4.298085,4.944335,4.676724999999999,4.676724999999999,3.897155,3.09001,4.851465,2.68763,1.575474,2.50605,4.56531,4.110025,2.583925,3.544155,5.9493075,3.7922666666666665,6.355883988095238,3.25542,0.961892,0.961892,3.248675,4.419315,3.6624,3.4667120000000002,2.38024,1.7563933333333335,1.82656,3.16309,7.254263999999999,1.5825483333333334,4.30036,3.6343,3.863785,5.02995,5.1789,4.774502624999999,3.1693366666666667,2.3036075,4.72644,3.717975,2.04979,1.127468,4.514915,2.755025,5.647738333333333,2.8927133333333335,2.530155,3.17759,3.910105,3.71044,4.63921,3.41282,4.5605,4.351975,4.184095,3.781325,3.52438,3.52702,4.63733,2.7130799999999997,4.725865,3.541755,4.97846,0.6434588888888889,2.28516,1.8370425,1.68884,1.85352,2.9403133333333336,2.5439233333333333,1.7205033333333333,4.952655,4.76311,1.79363,4.19079,4.64703,2.471375,5.779795,4.283881666666667,4.918385,5.2816,6.952463333333334,2.29784,2.94948,1.8860633333333334,3.647866666666667,2.387315,1.785855,3.97169,3.573295,5.2389,1.06161,3.07097,4.543815,2.204365,5.6272,3.717245,2.614465,3.6517999999999997,3.177975,1.93767,1.7298295000000001,2.907575,2.8455,3.17185,2.0667075,2.9841428571428574,2.9841428571428574,3.52055,3.39925,20.018736845238095,1.2614933333333334,5.710575833333333,2.1189425,1.94547,3.96333,4.07968,1.9394925,3.736875,4.66785,1.544128333333333,1.544128333333333,1.3021233333333333,1.7197333333333333,2.5659466666666666,3.1094833333333334,4.39851,3.27245,3.6375666666666664,0.5125142105263157,3.6247742105263154,2.06895,2.209745,4.50273,3.20404,3.89829,3.5714,4.643855,4.067395,1.9945825,4.111825,5.8466,2.344375,3.81743,5.0275,2.190125,4.68016,4.924765,1.2225228571428572,1.788636,3.8215333333333334,0.7998914285714286,2.97458,3.79539,4.92736,4.96288,2.7450591666666666,7.99835,3.11877,2.9277599999999997,0.4604917647058824,4.309225,5.345930357142857,3.046527380952381,5.73365,3.59811,2.7276302222222224,1.908852,5.307722500000001,4.65802,4.57284,2.17815,2.0230725,4.603635,3.9981666666666666,2.977813333333333,1.6872125,4.2564525,6.765337499999999,2.51707,3.81276,3.46022,4.33122,1.4727428571428571,1.4727428571428571,3.1410066666666663,2.949336666666667,4.829105,4.91166,4.426875,3.55287,2.5904,2.1687425,1.5500983333333334,1.3079128571428573,4.802695,5.5700325,5.234,5.6823,4.61902,6.788795,4.361055,2.746036666666667,3.831558,2.408116666666667,3.01603175,1.449082,4.91574,2.327923333333333,4.33412,5.29935,4.05379,2.688,3.0402166666666663,1.4008528571428571,2.3721075,3.8171,2.0458625,0.57691125,3.12702,2.892673333333333,2.5225833333333334,2.57139,2.0875275,1.69163,0.7358318181818183,0.7358318181818183,3.615766666666667,1.97391,2.3526075,3.777065,5.2292,4.5242,4.447245,4.43475,4.146025,2.274459,1.2821,2.693665,5.96775,1.0697725,3.5152125,2.90715,3.110125,2.265275,4.114435,2.75794,2.0266800000000003,1.3290799999999998,3.67835,7.751445,3.61064,1.76382375,4.477765,3.44423,2.665045,3.39553,2.848435,1.8312333333333333,1.025015,3.804845,2.4915416666666665,2.198096666666667,1.6880833333333334,2.2248433333333333,2.1754933333333333,2.4612666666666665,2.6991825,1.34405,1.9555933333333335,1.10395,6.666487500000001,5.36745,5.0196,3.98146,3.553485,3.0821966666666665,1.7925984615384616,4.622815,4.92674,2.382925,6.09585,2.082015,4.434805,1.1740000000000002,4.19816,4.19457,1.839395,7.66865,3.656385,1.823935,1.702825,1.80627,2.697825,3.439833333333333,1.2914709090909091,2.9712333333333336,5.83955,4.002015,4.23223,5.7529,5.9261,5.1429,0.9788975,4.81233,5.0822,4.36962,5.2113,4.326228333333333,4.95766,5.2684,3.100365,1.6780666666666668,1.6780666666666668,5.4927,5.809723333333333,3.50498,2.8583266666666667,3.71972,4.624895,1.613782,4.305625,3.948125,3.67427,3.92795,3.0096266666666662,2.854153333333333,5.07275,2.37850725,10.938747150016649,1.9187933333333334,0.7649775,2.4391066666666665,1.9294325,2.6627,2.3127925,1.918116,2.9445266666666665,5.5429,5.3796,3.03955,1.5860416666666666,6.196087738095238,1.3453271428571427,3.3062066666666667,0.5025428571428572,4.088053333333334,5.8973,3.698445,4.788935,15.09679,5.36265,3.14838,2.728873333333333,5.2022,3.31959,5.1533,1.23260625,1.2188566666666667,0.9525545454545454,6.1026,4.499045,1.866986,4.8077906666666665,4.72404,6.2374,5.02255,6.03625,4.74848,6.6457,3.92483,5.32925,4.17213,1.35112,4.269735,5.86055,3.562345,4.4193,4.35047,3.817245,1.229555,5.10215,3.97142,1.1725775,3.5839,3.1151733333333333,2.360256666666667,2.672356666666667,2.430003333333333,3.4333666666666667,0.7053818181818182,2.22007,2.669923333333333,2.6215100000000002,2.0422733333333336,2.6924200000000003,2.16427,1.50831,2.622625,2.366735,2.231135,3.507233333333333,2.8716633333333337,0.67864,2.6388933333333333,3.68876,5.10505,2.513716666666667,3.640235,5.18345,5.29575,3.33154,3.77142,1.3537114285714285,4.008505,2.5159961111111113,3.6703316666666668,2.9481962499999996,4.79793,4.975585,5.39785,3.759295,4.198833333333334,1.139964,1.139964,2.279344423076923,1.7036575,4.066205,2.5635185,2.5635185,4.90765,6.39175,3.123925,1.1732,1.624242857142857,6.2898,3.49913,2.6621433333333333,3.1254,2.70565,3.220405,2.6621433333333333,4.8139875,3.274075,3.1377454166666667,2.708505,2.06052,3.02708,6.04255,3.451445,4.260345,2.609145,6.36035,5.4252,6.567425,6.567425,5.4121,4.63973,0.5364853846153846,4.80169,3.936535,2.924825,2.73786,8.706038333333334,3.18972,5.26635,3.664365,3.0999700000000003,5.4311,2.75342,3.7300925000000005,3.19604,3.231286666666667,2.68878,1.77254,1.77254,3.49479,3.53303,4.19805,1.7579879999999999,1.902882,48.456959431818184,2.5290933333333334,0.8351281818181818,3.2175100000000003,1.74213,3.4580333333333333,2.81391,3.1317233333333334,3.026295,2.8629033333333336,2.1082466666666666,0.95952625,4.394905,3.22691,3.468615,4.157395,5.27935,5.2403,5.1901,5.6722,5.6691,5.1453,5.59025,6.5080824999999995,5.009,5.70635,2.051155,3.89717,6.4947,5.54745,3.74458,4.603845,3.39236,2.55982,3.84859,4.773305,3.196816666666667,3.6410666666666667,1.6517140000000001,3.621985,1.338668,3.260275,3.847175,3.456805,6.73415,4.49821,2.1245575,4.43812,4.06443,3.957545,1.04876625,2.835005,3.67039,4.242511190476191,1.158835,5.25915,1.3782725,6.41495,0.7195166666666667,4.396601333333333,10.272155833333333,4.47336,4.06633,3.814815,1.8565666666666667,3.934285,5.45245,3.2349333333333337,4.466875,9.251238611111111,3.539266666666667,2.153626666666667,2.8861733333333333,2.85266,2.77856,2.7988214166666667,2.6991833333333335,2.6053633333333335,2.9356533333333332,2.71359,3.2804466666666667,3.39685,2.27088,1.6096133333333331,3.883308,3.23647,2.56356,5.142133333333334,2.844806666666667,1.243965,1.9200275,2.8434500000000003,5.0544014285714285,2.6391,2.2780538888888886,2.2780538888888886,1.565115,1.4505325,2.09834,1.764976,5.8916625,4.381185,2.535125,3.0572866666666667,3.3368,1.93873,0.5249775,2.7946766666666663,1.85708,0.6483338461538461,4.001755,2.609975,2.479485,3.627775,3.778243333333333,2.43742,1.5826133333333334,1.4862333333333335,2.172285,3.411925,3.60625,4.1160925,2.822373333333333,3.79306,3.718475,1.091281818181818,8.944815,2.642835,3.284385,1.3138625,3.0119366666666667,2.3417775,2.3417775,2.3417775,4.591905,5.96155,2.307045,4.94088,1.6577639999999998,5.572856666666667,1.540858,4.349425,4.31317,3.945995,4.14608,4.74998,1.997045,8.619272500000001,4.15305,5.16725,3.340265,4.720933333333333,3.113713333333333,3.361466666666667,3.818825,2.654456666666667,4.501315,4.514119166666667,1.6156525,3.93558,1.6156525,3.470735,4.320610833333333,4.8387225,4.320610833333333,1.7810366666666668,6.01565,4.71484,4.250605,2.693826666666667,3.108546666666667,4.487905,3.162885,4.36291,0.4872485714285714,3.106756666666667,3.0006066666666666,5.550603333333333,4.93987,2.515875,4.929315,6.52589,3.48639,2.950695,2.871,2.15422,4.163335,4.122315,4.60909,2.420965,4.105655,0.9171340000000001,5.3948,3.20788,4.263035,3.2068433333333335,3.4071,2.30389,3.1145533333333333,2.7179866666666666,2.681153333333333,3.59359,2.7353,2.7353,5.047963333333334,3.113725,4.38046,11.308535000000001,0.9976644444444445,4.35704,2.532783333333333,2.2999066666666668,2.9982666666666664,1.358375,7.498532,3.861333333333333,3.896525,3.851605,1.8208033333333333,3.6333,4.410408555555556,2.214373333333333,0.45763777777777775,1.659326,1.5124,5.17215,2.76422,3.09704,3.8305675,3.5415908333333337,2.5212125,4.367785,4.58409,3.920505,4.454905,2.09802,4.98411,2.4880666666666666,5.758336666666667,3.07214,4.529015,4.71775,4.238915,4.43972,2.04213,3.979365,3.627445,2.73223,3.320195,2.67314,3.068355,3.1468,4.864025,2.813193333333333,4.864885,1.7459833333333332,3.77836,2.802655,4.233635,4.182725,3.549865,5.45285,3.07446,5.05715,3.97454,3.955995,2.9539166666666667,2.13577,3.017005,2.29246,0.8670816666666666,4.24633,1.998585,3.37402,2.60683,4.08229,3.26867,2.89777,2.98218,4.58929,4.612236666666667,4.232835,3.04773,1.52723,4.36197,2.383025,0.9531444444444445,4.84294,9.247385,3.29702,3.712875,4.713805,5.6025,3.87616,2.030905,3.947935,3.89974,3.232635,3.277485,3.526415,0.6337075,1.2184771428571428,6.375205,1.694495,2.720635,5.14569,2.4931325,2.19606,2.674945,8.34215,2.934015,4.155755,3.722955,0.7717877777777777,3.38539,2.585255,3.80377,4.41543,6.273065,0.646967,3.358455,7.38004,3.10988,1.0468077777777778,5.243042083333334,5.22255,5.50005,4.68994,4.634415,3.437415,2.7485233333333334,7.3238,0.90898,3.41205,4.42343,3.1069,4.332655,2.50361,4.31103,1.5832833333333334,4.609415,3.83668,3.72281,1.664305,5.01035,4.754045,2.4672575,2.200135,2.53075,1.516412,4.087215,3.3414710000000003,1.810958,9.333835,5.85865,5.65335,4.45859,3.42263,4.32513,1.4164657142857142,4.79965,3.959185,5.3101,3.6113,2.458063333333333,6.861235683760684,1.06133,1.06133,2.59203,0.92734,4.292315,2.7074200000000004,1.072945,2.3772533333333334,0.4271175,6.61574,0.96456,2.814215,4.374265,4.027615,3.186715,4.595965,5.1553,5.5020575,2.955215,3.025335,2.422665,3.7339,4.908835,4.70946,4.00653,3.61532,6.43595,5.29885,4.299010555555555,5.280007,3.85499,3.6068550000000004,2.363145,3.6068550000000004,6.738223,41.0829890508658,3.628705,3.54309,3.059276666666667,4.162335,4.50732,3.598775,3.471075,3.92435,4.02003,4.73577,1.8462333333333334,5.3157,2.809865,4.582555,5.30945,4.759945,2.2358533333333335,5.372,3.87774,3.564465,1.498092,0.6419453846153846,1.832966,3.5031,3.3363,1.4342625,3.410433333333333,2.7742566666666666,3.0218233333333333,3.7401,3.138446666666667,1.562078,2.6471566666666666,3.7739333333333334,1.8922427348777349,3.042543333333333,3.113438,2.571616666666667,2.5479766666666666,3.4126,1.1854333333333333,4.43106,3.86146,1.1275916666666668,1.1275916666666668,1.1275916666666668,1.1275916666666668,2.886471212121212,2.0590366666666666,2.431205,3.67893,4.591965,4.67261,4.738765,4.519885,5.99825,5.07105,2.417775,6.1356,3.483755,2.41917,3.52772,4.177165,4.47297,4.512245,0.8000307692307692,1.4928571428571427,1.50164,4.54932,5.0356,3.36791,4.18847,6.349648333333334,2.25048,5.31355,1.7463333333333333,4.30158,5.55965,1.5652666666666668,5.72745,0.8066383333333333,4.896465,1.433152,1.2703,3.85277,4.568855,5.16875,5.45465,5.82245,4.76154,2.35916,4.647335,1.4860175,3.96166,3.84318,2.7276302222222224,1.6459775,3.39055,1.4708500000000002,3.257705,4.70656,2.857756666666667,5.8973,123.59216248502887,0.5093144444444444,5.46105,2.50486,4.8827,4.074865,4.21323,1.5151825,0.35374285714285714,2.811465,3.728725,5.6166,3.36612,3.752215,4.773685,4.74554,3.659,8.03485,0.6624577777777777,2.998695,0.945115,11.128522,2.942835,3.465305,1.0250855555555556,2.420475,4.317275,2.2242375,2.9863766666666667,3.4558,2.2944400000000003,4.3969375,2.560913333333333,2.1993,2.164356666666667,5.4731,4.143225,3.006925,3.6552,3.840605,3.426405,2.3587666666666665,3.76795,3.17814,2.955965,1.1749222222222222,2.5788066666666665,4.3969375,4.858345,5.3616,3.963455,4.250245,1.698915,11.307120000000001,2.87015,2.67642,3.227005,5.7002,0.5237313333333333,0.5237313333333333,4.713545,4.713545,4.00523,3.5023666666666666,1.8443547727272727,0.6304608333333334,2.88237,4.65988,4.6755,4.045475,4.69184,5.520872499999999,4.825245,1.8329125,4.58501,1.9825675,2.6976,4.5809325,1.80652,3.378585,0.4976128571428572,1.8775208571428572,1.8775208571428572,1.865025,4.54189,4.19348,4.744575,5.931506000000001,2.74232,2.781585,1.965005,1.77548,4.381308333333333,3.83011,5.34498,2.76371,5.34498,5.47615,3.567455,6.3143,3.92906,2.39371,1.8765266666666667,2.5317966666666667,1.405355,1.3453275,1.5610175,1.54365,1.6008825,2.4745025,3.5858000000000003,4.4383,2.304165,6.71325,2.887233333333333,4.53943,2.140475,4.174215,2.981173333333333,3.07325,5.9265566666666665,3.5651666666666664,4.658014666666666,3.0564933333333335,1.392005,2.5502866666666666,2.648753333333333,2.2393199999999998,5.49435,4.1902925,4.848,12.93198005166763,0.7150066666666667,1.93267525,2.3112425,1.6320679999999999,1.2894814285714287,2.73125,2.3719425,2.5758,2.666775,0.7619076923076923,2.0186625,0.5842263157894737,4.5419,1.84927,4.51051,4.82722,2.610425,5.639385,4.750175,8.06938,3.85291,2.88954,3.11027,4.5796,4.921075,2.7844984761904765,4.59178,2.0323625,2.0323625,4.844275,4.10153,4.398685,3.890055,3.4560999999999997,3.98722,5.0786,5.0128,4.94637,5.3446,4.462245,4.388295,2.466365,4.958775,1.3112466666666667,5.0215,4.58525,2.410083333333333,2.2977666666666665,4.29849,1.3007516666666665,4.65129,2.0637625,5.966185797101449,3.86216,4.098365,1.4584766666666666,3.1931233333333333,3.1931233333333333,12.145624999999999,3.82072,4.56569,1.17411125,4.2522015,2.6734,1.47803,2.3075075,1.8882125,2.084675,1.903652,3.218135,6.217,1.8262875,5.0537,4.760425,5.5403,2.321485,2.321755,4.4071,4.569965,5.4412,3.87739,7.200068333333333,3.361666666666667,3.2413399999999997,0.44510277777777785,3.712,3.76497,3.393133333333333,6.311788333333333,2.561636666666667,3.3970333333333333,1.298455,1.6619149999999998,0.57691125,1.659326,2.89115,1.6451500000000001,1.6945166666666667,0.6634375,1.345108,4.637205,2.4370975,0.6031269230769231,1.66231,1.6513075,1.8997319999999998,1.3519633333333332,2.1728875,1.6619149999999998,2.363655,1.345108,1.345108,0.6031269230769231,1.5612,2.494,1.3087766666666667,2.667875,0.6031269230769231,2.699975,2.494,1.4262249999999999,1.4262249999999999,1.4262249999999999,1.9883659999999999,1.23407125,0.6031269230769231,1.1088879999999999,1.22960125,1.0586966666666666,1.842266,2.5118,0.863125,2.3293125,1.6618571428571427,0.6031269230769231,1.757266,1.6619149999999998,1.9345333333333334,1.8675333333333333,0.894773,1.9345333333333334,1.098418888888889,2.4672575,2.577,2.577475,1.22960125,2.27944,1.4708500000000002,1.4708500000000002,0.9865363636363637,0.9865363636363637,0.9865363636363637,1.298455,1.6619149999999998,1.6618571428571427,1.66231,0.9881728571428571,1.8675333333333333,1.5654059999999999,1.609276,1.824472,1.298455,2.7873,11.1906675,0.6634375,2.62906,1.8882166666666667,2.62395,0.9743085714285714,0.9743085714285714,0.6031269230769231,1.2774666666666665,1.69163,1.6618571428571427,1.7659379999999998,1.8675333333333333,1.1451555555555555,1.1451555555555555,1.7216879999999999,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,3.316046666666667,1.098418888888889,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.3944345454545454,55.561101746753245,1.53586,1.51497,1.6618571428571427,1.8882166666666667,0.9881728571428571,0.6094235294117647,0.700969,0.700969,0.700969,0.700969,4.216466666666666,17.204930416666667,3.385,0.6857509090909091,1.7184300000000001,1.7184300000000001,1.7184300000000001,0.6857509090909091,2.89115,0.6031269230769231,1.757266,1.6945166666666667,2.5712800000000002,1.098418888888889,2.515875,1.098418888888889,1.540864,1.540864,2.1816166666666668,2.1816166666666668,0.6031269230769231,1.9521920000000001,1.9521920000000001,1.0140272727272726,0.20729777777777778,2.89115,1.6328366666666667,2.4242675,0.6857509090909091,0.6857509090909091,0.6857509090909091,0.6857509090909091,0.6857509090909091,1.8882166666666667,0.3944345454545454,1.098418888888889,2.3340425,2.3340425,2.576375,3.276816666666667,0.6443095238095238,0.6443095238095238,3.436033333333333,4.1303,1.1942728571428571,3.07145,1.02408,2.77,2.11644,1.06659,3.3635,2.053475,3.306236666666667,5.4836,2.41725,1.263177777777778,4.702245,4.914105,3.0258133333333332,1.783686,2.3392219230769236,4.919875,1.8271977777777777,2.58987,2.703053333333333,3.2660366666666665,2.576,6.369543333333333,4.185145,0.20729777777777778,3.1970233333333336,4.656355,3.847695,4.294325,3.929885,4.678305,2.8177966666666667,1.903204,4.05058,4.674215,4.51214,4.61008,5.17345,2.945805,0.66373,6.72054,1.2933216666666667,3.584446,4.79437,2.528776666666667,2.528776666666667,0.7915454545454547,1.6459775,4.3428,2.98207,4.445305,4.496875,4.698245,5.34695,1.2033457142857142,4.850085,4.896105,7.348624305555556,2.2550833333333333,4.39762,4.18811,3.829375,4.82488,4.473695,4.736735,5.6237699999999995,5.3464,4.414588333333334,3.732445,4.481826666666667,7.165621,1.6372425,2.5286625641025644,3.005853333333333,1.7244466666666665,2.6289233333333333,1.79987,5.26295,3.11777,4.746425,1.963326,4.835515,3.9382,3.654415,4.40145,3.757075,2.435556666666667,2.7684933333333333,2.7146966666666668,2.9910266666666665,2.5196066666666668,1.7221166666666667,2.76294,2.8179966666666663,2.25298,2.25298,4.176315,2.8000366666666667,1.9551966666666667,3.08902,1.9313200000000001,2.1521233333333334,3.1095166666666665,2.5743300000000002,2.90883,5.24325,4.442935,4.275245,3.638718,3.638718,4.189445,3.336,4.163755,4.509015,3.828255,3.27124,3.324,7.15676,2.1466525,2.087865,3.29136,3.01024,1.3582433333333332,1.3582433333333332,3.49217,1.81245,3.7512273333333335,3.809915,3.795755,2.204186,2.2125630000000003,0.5409091666666667,3.097685,3.85527,2.2586075,2.436965,4.53939,1.2080166666666667,4.861,1.28036,0.3697271428571428,0.5091778571428571,21.95831686904762,0.5091778571428571,0.3697271428571428,0.6486285714285713,10.49775,2.9866433333333333,3.97717,4.53681,3.5546075,2.69239,4.794296428571428,2.35362,2.93308,3.456385,3.07207,4.21679,4.70574,3.523005,2.288615,3.27373,3.67463,3.909915,3.0319,1.067377,1.067377,1.067377,1.067377,3.225215,2.72509,3.017265,1.9058966666666668,1.2182833333333334,2.55717,3.783045,4.03229,3.07,3.50764,2.33833,2.756073333333333,3.9443,3.97525,1.0822316666666667,3.27482,1.10327,2.8255033333333333,2.4252733333333336,3.8737,5.0721,3.5012333333333334,4.44754,4.545303333333333,0.8429847619047619,0.2538714285714286,0.2538714285714286,0.5891133333333333,0.2538714285714286,0.2538714285714286,0.2538714285714286,0.5891133333333333,4.33057,7.117405,3.466795,0.5677025,3.683255,7.377090000000001,3.177105,3.2504333333333335,1.0889766666666667,4.4498,5.4013,4.218815,4.801205,1.614126,4.672795,2.1796633333333335,2.908339333333333,4.26616,5.2804,0.7965071428571429,0.7965071428571429,3.270375,2.9951866666666667,1.943375,3.13024,2.6311,4.78266,2.48494,4.11242,5.74065,5.7112,2.690645,1.87981,4.0895,3.3705,2.15372,3.87861,3.05389,1.7286975,1.1342533333333333,3.950305,3.577085,4.64568,6.452716666666667,1.4578533333333334,3.77783,1.1443933333333334,2.5127566666666667,3.384305,3.88652,0.38840928571428573,3.554535,4.34037,0.989613,2.7043,7.6787849999999995,3.770825,2.169395,5.788473,4.65236,3.65128,1.4021866666666667,5.827256666666667,2.77933,3.4322666666666666,3.8303,2.1080366666666666,2.1080366666666666,5.727755,5.727755,3.3689124999999995,3.3689124999999995,7.55978,3.3689124999999995,3.3689124999999995,4.039711388888889,6.3462,3.48312,3.6105575,2.8126200000000003,4.58878,3.63416,3.3071633333333335,3.302683333333333,4.47685,3.152533333333333,2.6944199999999996,3.0793366666666664,2.36621,2.694855,4.62898,7.144935,6.8752775,4.57966,3.63223,3.908825,6.398135999999999,5.19065,3.499145,4.04845,4.514085,2.2308833333333333,2.175255,2.16082,5.3815,5.34565,4.670255,4.294025,2.35034,2.7214666666666667,6.946718333333333,1.9883659999999999,2.45554,3.5072666666666668,3.5072666666666668,3.18483,5.66155,0.8251025,3.480566666666667,4.00524,2.782446666666667,10.2845825,4.398825,2.941053333333333,2.863493333333333,5.4038,6.1273,2.896825,5.5643,2.5704533333333335,4.40174,3.0313157142857143,4.548785,5.4107,4.82764,1.0193633333333334,3.6010666666666666,1.04440875,2.5180233333333333,5.143870573529412,8.22532,2.25746,3.2064833333333334,6.636733333333333,1.789564,4.634435,5.402,3.9078,3.57045,2.277883333333333,4.813125,2.52718375,0.5270961538461538,5.2996,2.904615,3.6710666666666665,5.11845,4.92238,5.0418,6.813459999999999,5.0141,5.74425,7.0242949999999995,53.59590166666666,4.797325,3.92745,4.97977,6.124,4.72969,5.22305,4.34954,4.777455,1.92485,4.060305,4.28092,4.81484,2.614435,5.0578,4.63959,1.660748,5.76325,6.6048,7.726793333333333,5.7661,3.09955,5.2681,3.44164,3.19221,3.459995,4.137815,3.55099,6.24671,2.783875,1.0899928571428572,2.30156575,0.667974,0.667974,3.64321,0.667974,2.2696271785714286,2.2696271785714286,3.0973271785714287,4.41696575,4.862983428571429,2.30156575,4.366680833333334,2.3841133333333335,1.4663033333333333,5.14035,2.09212,7.506765333333333,5.9822533333333325,11.888434136363635,3.3776666666666664,2.67708,0.2325969696969697,1.7816180000000001,2.93472,0.8847525,1.99805,2.64645,2.638275,2.83515,0.618247,27.588969583333334,2.058925,0.793976923076923,2.785246666666667,2.785246666666667,0.4517683333333334,1.6074575,2.96999,1.2936175,1.8644125,1.6204125,4.362955,2.784195,2.07341,2.305963333333333,1.108735,2.3191125,1.6553950000000002,5.693173166666667,3.79978,6.930723333333333,2.53795,3.376533333333333,0.95209,2.20543,4.770695,5.79882,3.7825666666666664,2.22932,5.990479166666667,2.4137125,2.58453,4.2490499999999995,1.0632300000000001,3.867366666666667,2.31307,5.5184,4.951355,6.24795,3.83117,4.45132,4.45132,5.42595,3.76313,5.4056,2.803793333333333,1.575025,4.315585,3.726225,6.049939,5.1197,3.138196666666667,3.5833333333333335,2.336855,1.32767,4.937325,1.09131125,5.480996666666667,4.77221,8.08506,4.50219,4.586535,4.165255,8.545906666666667,5.0633,5.0361,1.1130499999999999,0.7168142857142856,4.70406,4.79823,2.44906,3.38529,3.27542,4.241245,2.115185,4.676545,2.5105666666666666,5.52355,5.2459,4.882475,4.535975,4.331935,3.043855,7.040131,3.631715,4.537595,3.175435,3.918555,5.5349788095238095,0.5768492857142856,3.8927,1.7153333333333334,0.6578911111111112,3.945115,2.593545,1.03498375,2.02914,6.33206,4.14711,2.40471,2.7784066666666667,2.642513333333333,5.11425,3.601095,1.6418869047619047,4.173395,2.757516666666667,3.429266666666667,4.713205,5.11825,3.3644258333333337,3.8891333333333336,3.795833333333333,2.07646,7.38167,4.80232,3.799755,4.80074,2.255505,4.028105,4.777745,3.67584,4.07183,10.423445000000001,3.67168,4.696791666666666,4.832705,4.803515,2.3562875,3.750765,4.06219,4.40068,3.3179499999999997,4.504905,1.8150275,2.61328,3.36864,3.80842,4.907815,1.8587520000000002,4.48791,3.364333333333333,5.593,2.9509966666666667,1.882355,3.969555,4.74937,1.0222875,2.931415,2.6504600000000003,4.444670666666667,1.728312,1.6534333333333333,1.0968,3.477625,5.14645,5.89577,3.9122575,2.869415,2.299505,2.082475,2.444805,1.4702833333333334,4.951145,2.831775,1.8637825,0.9343923076923077,20.85517782051282,3.03635,2.985224166666667,4.916243333333333,4.032105641025641,1.24174,2.7869683333333333,3.0307186363636367,1.253102,1.87198,4.43722,5.3323,3.6171691666666668,3.38593,5.6644,4.73257,7.49672,4.97258,5.06385,3.829685,2.8728366666666667,3.874245,3.76397,3.378033333333333,4.272965,2.219785,5.4796,8.98303,3.26642,2.80335,3.925875,0.5378075,3.0844833333333335,2.3648833333333332,2.3402275,4.314075,3.402325,4.561185,4.50662,2.879165,2.191095,1.690535,0.831968,1.4976,1.22246,3.820705,4.203915,4.937315,4.82026,7.11554,2.3618566666666667,1.352856,2.2574799999999997,7.722346666666667,3.049565,2.901625,3.05691,4.35522,3.147315,3.42356,1.628612,4.52239,5.42315,4.0742,3.89302,3.58496,4.19908,4.939755,3.498785,4.51674,3.561825,2.256975,3.21243,3.3902,5.53405,2.81805,4.45589,4.038875,3.145025,2.448976666666667,2.2941533333333335,2.0679333333333334,3.0176,3.0176,1.8710000000000002,3.207046666666667,2.3165833333333334,2.20461,1.8803,4.034795,2.3809400000000003,2.9588933333333336,2.8223033333333336,1.6566599999999998,4.39175,3.672005,4.070625,2.32143,5.7024,5.40645,4.888336944444445,2.71388,2.1625,2.86128,2.116355,2.16434,2.85239,1.976865,2.384705,2.2939575,6.7661023333333326,4.17652,3.471375,0.6116775,4.230725,4.448155,4.62003,3.224555,3.787,3.914839166666667,6.20255,4.48656,3.91626,2.937175,2.0864993333333333,2.50988,1.8128520000000001,1.794726,1.6567979999999998,2.15538,1.8520125,1.1922516666666667,4.055476571428571,0.6031269230769231,0.5165033333333333,2.11764,1.5277966666666665,1.587348,1.541885,2.3191187878787876,1.5425733333333334,1.794362,0.59948875,172.7840887677935,0.5087413333333334,2.15922,1.033392,1.2641075,2.1257775,1.5407225,1.93343,2.3256366666666666,1.8445875,6.92525,3.146,3.8097366666666668,1.49169,3.155825,1.2765266666666666,1.2765266666666666,5.61888,0.518925,2.2303075,3.3902,3.1005133333333332,0.8226863636363636,0.6567,1.2236138974358974,1.1190545454545455,2.479375,4.20624,2.1779875,2.2137325,2.4439433333333334,4.799220388888888,1.1308555555555555,4.49756,3.429415,3.64563,7.04093,1.8395033333333333,3.1044,2.23198,3.8541809999999996,2.339525,3.306165,2.73956,3.336355,4.63033,3.07999,6.16637,2.704385,2.71168,3.07963,1.38502,2.707815,2.519885,2.898845,1.785095,1.52921,2.01391,4.48578,5.834266666666667,3.144945,2.93597,1.323705,4.106005,3.5402,3.8257666666666665,2.94727,25.26329994215506,2.245494,2.8850466666666663,3.0272133333333335,3.470833333333333,3.1678466666666663,5.976956666666666,3.092703333333333,2.51048,3.5910666666666664,3.2520633333333335,2.1449966666666667,3.328526666666667,3.3278033333333332,3.1547033333333334,1.7064666666666666,1.6472175,0.56056,2.17276,2.039245,0.257698125,2.6410966666666664,2.65268,0.257698125,0.257698125,2.006648125,0.257698125,0.257698125,0.257698125,0.257698125,2.7202566666666663,2.4935733333333334,0.5744661538461538,3.443450357142857,1.7834025,1.906014,5.24235,4.382715,6.3998550000000005,2.35186,5.05895,2.2387675,2.55573,1.284622857142857,5.88733,2.6664533333333336,5.912817500000001,1.0097500000000001,1.4059775,4.959405,4.745965,36.25508353238428,1.6985420000000002,1.3541033333333334,2.3556866666666667,2.289115,0.9865363636363637,2.262703333333333,2.2407366666666664,2.72277,2.15247,2.3428566666666666,1.5573750000000002,2.68727,2.3506233333333335,2.12094,2.7350266666666667,2.4646466666666664,4.2792,3.7118,1.0986485714285714,3.70667,3.841945,20.63564672222222,2.8941266666666667,3.6072666666666664,2.8095966666666663,0.773808,3.0715139999999996,1.5802102222222223,3.0715139999999996,2.4388566666666667,2.6529233333333333,3.3302366666666665,1.5811525,1.9894025,4.48502,3.974225,5.07075,4.198195,1.8028479999999998,5.3381,1.66393,4.681035,4.22138,4.586165,0.7390281818181819,2.108775,2.2563975,2.91958,3.33433,1.09161125,5.8386,2.10336,2.03573,1.0509840000000001,1.0509840000000001,3.0170866666666663,3.3765666666666667,4.619395,30.30531875,6.166715,1.8622699999999999,3.551153333333333,0.39579733333333333,6.367274999999999,4.436815,2.79865,3.1947,5.94143,4.15387,1.22600875,4.832965,1.223554,3.22741,4.7503,5.20935,2.127945,3.29934,4.407935,2.561515,3.424583,4.13052,1.25901,2.5225141666666664,3.515905,4.5164425,2.8150766666666667,3.1078833333333336,3.0836666666666663,3.05333,3.90433,4.231035,4.069866666666667,1.754855,5.95069,2.62056,1.761288,4.227195,5.50613,3.985405,3.833855,0.74428375,3.003655,3.579655,2.120845,4.647599666666666,2.707435,3.91043,2.9283133333333335,3.371033333333333,2.435025,3.3161633333333334,3.422,3.2004300000000003,4.50495,4.273865,4.31924,1.653375,4.140735,4.220155,1.823655,1.864185,1.726955,4.088767777777778,4.88924,5.448352187499999,4.046325,3.5258333333333334,3.698675,3.4568333333333334,1.3123383333333334,3.00792,2.878635,3.095015,4.17136,4.571515,4.354515,2.58112,1.877875,1.53605,1.45582,3.557675,2.337915,2.19013,3.278585,4.906425,1.870155,5.3508,1.4195200000000001,1.7099325,3.099875,3.612225,3.14865,3.62759,3.115295,1.9267,1.0392222631578947,3.05464,3.7321850000000003,4.9658,8.366063333333333,2.1586933333333334,3.1416166666666663,1.6118866666666667,2.6761966666666663,3.01845,1.2104566666666667,3.3695,3.0103066666666667,3.0583500000000003,4.1899,3.5286000000000004,7.163024999999999,2.9588933333333336,0.7599490909090908,1.8974933333333333,4.340705,3.24571,4.099915,3.632766666666667,2.6879299999999997,4.125105,3.44796,2.0153299999999996,3.9453,2.9370405555555554,3.4107,2.5017733333333334,4.76546,5.4194,4.53238,5.14845,3.66128,1.1831666666666667,4.762385,3.3937000000000004,2.6278866666666665,4.51091,2.8396133333333338,3.01805,0.46747,0.46747,3.637051666666667,4.549505,4.71903,3.169215,3.632485,3.50801,3.0961,5.18885,4.77617,0.9927475,4.16285,3.0538566666666664,4.61708,3.257006666666667,3.19011,1.8390633333333335,3.3618164285714287,2.7077299999999997,2.89016,2.7421933333333333,2.7407866666666667,1.9430633333333331,22.928595648221343,5.0316,3.952125,4.04184,3.239485,4.7993825,3.172155,5.17315,4.20409,4.036835,4.22464,4.41243,2.785503333333333,3.1533800000000003,3.2089966666666663,3.2678683333333334,2.7687899999999996,4.38758,3.354115,4.635415,5.05,4.83364,1.2410619999999999,1.6760560000000002,1.6760560000000002,4.38361,4.071995,2.7676700000000003,2.5246999999999997,3.189496666666667,3.77023,3.53012,8.30364,3.3015399999999997,2.8226566666666666,3.1003600000000002,4.678015,1.6876,5.999644999999999,2.51134,2.64752,1.7557225,3.85794,3.29445,6.38177,3.61639,2.584735,4.499895,4.043264000000001,1.5518475,2.6224833333333333,1.7397933333333333,8.6269125,4.747915,6.5472399999999995,2.25577,4.50831,3.77768,4.26354,5.2465,3.8087,3.8087,2.096115,4.57864,5.1632,2.51902,6.39484,1.944695,5.98035,9.429637999999999,3.1973566666666664,5.111189333333334,2.35613,2.041745,0.64355,3.89136,2.588175,2.798725,4.1962225,2.4200525,2.565376666666667,4.08855,5.10015,4.70817,5.0915,5.99335,4.6288,2.376605,1.0470727272727272,2.826245,3.50016,3.27951,5.349,3.96168,4.329575,2.75854,1.788636,4.552415,1.099325,4.958415,0.9635411111111112,5.6555,3.38996,4.95025,5.2665299999999995,3.13641,3.17472,3.1833233333333335,2.3433066666666664,4.159685,3.607545,2.459315,4.672645,5.6287,6.335241666666667,4.884435,2.018275,3.57141,3.071665,5.557653333333333,2.038135,2.038135,2.9229066666666665,2.2271566666666667,2.67311,2.956716666666667,0.871257,6.46295,3.94589,2.0446875,2.23431,2.78088,3.653735,2.73539,3.61383,4.706985,5.08985,5.68775,6.22185,6.0005,1.33425,3.981035,1.0938333333333332,2.579175,4.488733333333333,2.439105,2.967655,3.186325,4.92901,5.10065,0.4571710526315789,4.20769,4.075825,4.710175,3.227185,4.87358,5.79815,4.989635,4.27628,1.65488,4.69085,2.0645475,4.433766666666666,4.433766666666666,6.8268,5.27045,5.8854,5.42155,2.671565,1.6876,4.54689,2.0938,1.6527866666666666,1.908525,4.43992,4.084815,4.563635,7.80979,1.7349166666666667,5.7809,1.3093683333333332,3.352175,6.31365,1.947665,4.629215,3.1756933333333333,4.640305,3.497705,4.448545,2.7352566666666664,4.25232,3.98444,6.24155,4.30032,3.832025,4.05134,5.86925,4.18977,4.683565,3.67868,3.789315,8.035093333333332,3.43291,6.87009,3.117955,5.3226,6.327812272727273,5.27925,3.53977,1.905065,5.4382,4.00308,0.92185,8.38503,5.97135,5.71605,3.147075,5.35085,2.738875,1.8180900000000002,3.808695,1.0822316666666667,4.990205,3.186755,4.666345,5.6525,4.65285,4.43027,2.3843900000000002,4.636615,5.36375,1.674125,7.02187,2.98772,3.5904,5.23655,4.701895,2.162,4.561275,4.28611,4.48374,3.025593333333333,3.98351,3.653775,5.73685,4.848725,3.53996,1.799075,1.799075,7.381963333333333,1.649357142857143,5.18905,4.411565,5.6181,3.69754,3.91461,5.45605,3.77117,0.8307666666666668,0.8307666666666668,0.8307666666666668,3.699465,3.107645,3.88754,4.844230222222222,2.612875,1.4438366666666667,4.553925,2.543575,2.704435,4.398535,5.36675,1.659525,2.37002,4.5318,4.51443,2.72823,4.75192,1.8540725,1.93028,3.278703333333333,3.002115,5.494,1.3276759999999999,1.645858,1.0993975,4.22774,3.465835,3.1554233333333332,3.1057366666666666,5.5874,1.774314,2.03122,2.649235,1.472557142857143,3.391395,3.672405,2.442245,5.72865,5.66365,2.83457,4.66542,4.57527,3.27157,4.41541,4.243765,3.65383,6.64958,5.1979,1.8450766666666667,1.7968833333333334,3.713195,5.56365,4.29124,4.416645,3.4765,4.30582,5.0299,5.7619,2.7467633333333334,5.30955,4.44238,3.97562,7.418492499999999,4.3702,0.7185836363636363,4.07075,4.014124166666667,2.267315,4.508575,3.9281333333333333,5.9842,3.84003,4.042915,3.940755,4.72593,5.5315,4.61598,3.849175,4.254915,5.3069,4.394105,3.762695,2.76612,6.03767,4.485715,1.6314520000000001,3.5722,3.877755,3.76832,4.995245,4.99426,2.534823333333333,0.8940455555555555,4.431828181818182,6.4538675,4.497025,5.3556,3.59408,8.135425,4.896105,3.5791,2.78234,3.65633,2.145425,3.30676,4.391345,2.5366725,3.413095,5.01085,1.4722875,5.48465,0.6880307142857143,5.90755,2.917965,5.8797,5.25645,1.46671,1.6879633333333333,3.956865,1.870825,4.854645,0.5431883333333333,6.1256,3.072645,1.47738,6.13671,6.67615,1.000645,1.6902490000000001,1.21373,1.21373,1.21373,2.2556566666666664,4.96715,3.676175,4.095975,4.11152,5.64875,4.462375,2.04632,4.4845,5.68375,0.3045756097560976,3.68908,4.676075,5.025,40.55120007575758,5.897005833333333,5.47835,11.781818000000001,3.967995,4.129635,7.5724366666666665,3.2281,3.77394,4.42768,5.08005,9.855039999999999,4.21976,2.4477800000000003,3.07911,5.7132,4.142265,3.61765,4.574725,1.931085,4.888975,3.76087,6.873645,4.49031,5.6744,2.299155,4.118355,0.51683125,1.4061583333333332,4.021995,6.58255,2.964055,1.2950283333333334,1.2950283333333334,3.360485,3.672015,4.139715,2.78592,1.6719433333333333,3.39681,4.25246,1.84102,3.01456,1.698818,2.67275,4.15908,4.55109,2.178375,4.722395,2.2159925,2.01073,3.59366,3.557605,4.055285,3.86981,6.158635666666667,2.530705666666667,4.057455,0.6684545454545454,0.7121591666666666,3.983815,2.140525,8.549706666666667,3.385,4.9192,1.6307375,4.542135,1.586615,3.932415,4.23935,2.75379,4.22016,5.8044,0.41618649999999996,0.41618649999999996,3.5910333333333333,3.1976133333333334,3.0727700000000002,3.883995,3.63056,4.97995,0.9383363636363636,10.397191666666666,9.583245000000002,2.1728875,5.206075,5.11665,5.1832,3.46759,2.7430333333333334,2.15718,2.0538075,8.985555,2.34512,2.7544566666666666,4.178240000000001,4.6557,4.178240000000001,2.6328,2.862296666666667,2.91107,0.7597272727272727,5.6858699999999995,3.4796666666666667,2.6569333333333334,4.486795,8.638355,9.454905,4.726145,4.019935,4.620325,6.8546025,2.0244025,1.409525,26.054915833333332,3.633755,3.77485,0.9211919999999999,5.84675,4.356085,4.552035,4.31973,4.70631,5.9636700000000005,3.2779566666666664,2.0487466666666667,0.7240882352941176,0.7771658333333332,5.0348,4.986205,1.63312,4.852706666666666,0.8588,3.4619,1.47387,4.198245,6.02585,2.454005,2.44496,2.131025,3.846645,3.117665,0.44991666666666663,3.791665,3.60488,2.7472733333333337,3.40909,5.23975,3.03537,4.30792,2.994385,5.2724,8.638456666666666,4.968615,6.85422,2.74795,2.9311566666666664,4.3467,4.31332,4.3818,4.5187,3.67224,5.1547,1.21320625,3.39887125,3.2867384285714287,0.785832,1.6760560000000002,1.6760560000000002,4.993135,7.056518333333333,0.9042,5.1033,0.8618833333333332,2.9086866666666666,2.19241,2.603900909090909,6.5503800000000005,2.7972699999999997,1.0807,2.4051666666666667,1.3431125,2.302043333333333,3.0231933333333334,3.1742233333333334,3.32107,2.6556966666666666,0.8618833333333332,4.554555,4.75129,5.7557,2.750235,4.92231,2.2743200000000003,5.8367,4.72254,5.0641,3.10537,3.54736,2.2432475,1.28803,3.904575,2.76055,4.364605,5.58545,1.75564,4.851665,2.8893733333333333,6.47732,3.470635,2.39429,0.8618833333333332,2.322705,2.88688,7.332777055555555,2.3642533333333335,1.240624,2.3642533333333335,0.42211166666666666,1.1843059999999999,3.50087,3.517145,1.7571975,3.4573,3.7954309999999998,0.5952759999999999,0.5952759999999999,0.5952759999999999,8.623194999999999,1.60655,0.7420763636363635,37.59046835714285,1.8372928888888889,0.6707988888888888,2.9619275,0.6707988888888888,3.73189,1.917675,2.40142,2.8833133333333336,5.58515,5.07195,4.55787,2.4024466666666666,0.9607542857142857,4.574935,3.09299,4.827445,1.0537214285714287,2.6077,2.6077,3.9274,4.213015,3.805485,4.727356153846154,3.26693,4.66661,4.880665,1.8287140000000002,1.19156125,5.43955,6.30265,3.866585,0.967328,4.336275,4.270483333333333,0.9147525,4.49645,2.43293,4.30932,4.252115,1.9169860606060607,1.9169860606060607,4.21905,3.405955,0.9131977777777779,3.158985,3.0810600000000004,3.33705,3.944635,4.918935,0.4100614285714285,0.26796588235294116,0.26796588235294116,0.26796588235294116,0.6780273109243697,0.6004161538461539,0.6637190000000001,0.26796588235294116,0.26796588235294116,7.1936800000000005,0.26796588235294116,0.6780273109243697,3.538565,1.3415975,4.254095,1.1686349999999999,0.6889761538461538,0.9147525,2.47097,2.6971,4.163505,3.00734,0.26796588235294116,0.26796588235294116,4.5036,3.723085,4.325855,2.505425,4.07367,1.560614,3.787825,0.6637190000000001,0.6637190000000001,5.0383,3.02632,2.708915,2.83061,4.241343333333333,1.04441,0.7753923076923077,10.73319,1.249835,4.980615,4.278985,5.327,2.1423200000000002,0.3935826086956522,0.87903375,2.8716166666666667,3.198335,3.36728,4.825445,1.460642,6.27995,3.876365,5.453715000000001,4.296295,3.13195,3.0289433333333338,6.12003,2.85953,4.97843,4.17749,4.545303333333333,6.3716550000000005,0.5669813333333333,4.3751,3.1536233333333334,2.04076,0.6642022222222222,4.368765,5.17109,2.562055,2.55728,2.06477,4.964045,2.68229,2.769945,0.959636,0.45475538461538456,3.940425,0.33439800000000003,0.8633663636363637,3.8947,2.996675,4.067105,2.719245,4.74807,4.497755,6.318999666666667,3.61184,3.310865,5.16495,1.5665525,5.0726825,1.7676939999999999,4.29746,2.5482,6.160893333333334,2.79641,1.249696,4.51097,7.047575,6.4958775,3.2383366666666666,0.8695083333333334,2.733643333333333,4.800835,4.15383,4.53774,4.980145,4.44571,4.465445,2.87087,4.03726,1.7619733333333334,2.50411,1.4233766666666667,4.120605,8.4271,3.848885,3.53311,5.92655,3.046335,4.56119,2.5070466666666666,3.177745,3.292855,6.1063,3.383235,3.48709,4.34857,5.84255,5.7973,5.4515,4.632205,5.06535,3.971265,3.156285,6.1372,8.375575,0.9089800000000001,3.813405,4.20485,4.69292,5.4398,4.56046,4.62906,8.29346,2.44117,3.290305,5.8576,3.611275,4.11509,2.0328399999999998,1.67369,2.5662166666666666,2.8816733333333335,2.1205333333333334,2.982063333333333,4.03935,4.63005,3.900985,3.444125,4.948511666666667,3.15576,2.998385,3.8456,5.58895,3.02985,5.564819166666667,4.073755,4.006765,3.4839,8.87626,4.28831,3.54364,4.55363,4.78794,3.273235,8.83862,1.2618283333333333,2.36361,4.090945,2.6955766666666663,2.6955766666666663,2.02155,7.506693333333334,0.9541644444444444,3.8612,0.9152375,2.03122,4.74164,4.53857,4.16044,4.464755,2.9308666666666667,3.95978,4.262625,3.751155,4.55558,3.114055,2.9777233333333335,4.51071,5.292806666666666,4.07895,4.90429,1.73948,1.6808340000000002,2.56045,5.73155,2.3594475,1.6888833333333333,1.9730925,4.46144,4.951755,2.967025,2.790585,0.5193677777777778,2.40137,7.492655,3.169675,1.4801066666666667,0.836845,1.28432,1.9307833333333333,1.97765,0.8137633333333333,2.0483,4.2270460000000005,3.928175,5.22815,2.3336799999999998,1.8628875,7.6902575,2.8584,2.1577149999999996,2.1577149999999996,2.1577149999999996,6.431633333333333,2.3024666666666667,3.618635,2.650485,0.505848,1.1643000000000001,1.9803825,5.3371775,0.43369166666666664,3.660465,3.8289383333333333,4.952945,3.0818616666666667,0.43369166666666664,3.0818616666666667,1.16462,1.236264,6.26945,4.47523,7.2009875,4.51899,4.484935,3.643965,4.15943,5.3852,4.36245,6.1582,3.704585,3.371605,4.821285,4.365045,4.13044,4.66224,5.33355,1.39771,2.64941,1.1037525,2.4325275,3.141826111111111,1.4854394444444443,6.745950000000001,5.557653333333333,2.7466716666666664,5.3021,2.81489,4.921825,3.091615,4.09242,4.946275,9.813924166666666,6.00145,4.765765,2.3858025,2.78592,2.24418,0.5378075,2.239854222222222,6.3374,5.0427,4.73339,4.787395,0.6384340000000001,2.0290425,1.32139,4.568565,0.8107384615384615,7.662917500000001,2.0597675,1.0851075,1.0851075,3.820158,2.05986,3.595666666666667,2.671405,4.54868,3.6346075,3.6346075,4.472025,6.050656666666667,2.8050800000000002,2.4525833333333336,3.382733333333333,4.143025,1.97789,2.9792366666666665,5.28065,5.4247,4.601315,4.40791,4.010258333333334,4.7766,3.6050266666666664,3.363,2.3025575,4.184595,5.4407,3.062375,4.978875,5.56235,2.00137,2.5984233333333333,6.37855,6.9474,1.422428,2.75525,2.26849,2.8605933333333335,2.2831175,2.575525,2.503533,1.1077311111111112,1.9036025,2.51985,2.0908125,2.5813566666666667,2.5813566666666667,3.0729335,2.74395,2.1166673076923077,2.66195,2.44827,2.00736,1.587858,4.9738500000000005,14.554194666666668,3.17966,3.5459333333333336,1.879126,1.879126,1.6636866666666668,1.6636866666666668,3.0090966666666668,3.8320333333333334,2.9095833333333334,1.852375,1.852375,3.836766666666667,3.1389033333333334,1.2088433333333333,1.5188285714285714,3.20394,2.9227000000000003,3.888533333333333,2.496212857142857,3.3686333333333334,3.364333333333333,0.681871,2.63115,3.570942666666667,7.225966666666666,4.96136,4.631015,4.56577,3.44347,4.69984,4.52371,2.9624366666666666,4.418445,1.406815,3.3047166666666663,5.79115,4.940805,2.402075,1.5192033333333335,2.791125,2.6724866666666665,3.0342066666666665,1.5739583333333333,0.6958014285714286,3.134116666666667,5.2397925,4.66301,4.63562,4.889675,3.1252266666666664,2.061993333333333,3.2907124999999997,2.8226533333333332,3.5253,3.1094866666666667,3.5545666666666667,2.981396666666667,2.737386666666667,3.613633333333333,2.9588099999999997,5.02185,4.971935,5.066939166666666,5.066939166666666,3.30784,3.956865,3.79064,3.58756,2.84111,5.1568,3.384945,3.14607,6.08665,0.8523499999999999,5.1117,4.76953,2.481786666666667,5.875234166666667,3.5404,1.8033833333333333,1.4194457142857144,2.35021,0.9968130000000001,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.5608057142857142,0.5608057142857142,1.18273,0.9849419444444445,1.8836420454545455,1.0871042857142856,1.0871042857142856,1.408497601010101,0.4751444444444444,0.43814555555555557,1.2554075,1.6247525,3.3526333333333334,2.63265,7.272718333333333,3.1657333333333333,3.96185,3.80974,4.197380857142857,1.3714533333333332,4.627565,3.74356,4.26359,3.15771,1.462776,4.058987692307692,3.54909,4.971815,4.573635,3.067565,4.4658,4.19406,4.564935,1.183906,4.249585,4.954485,3.251315,2.4084666666666665,3.39393,2.33922,3.26309,3.76958,3.5559999999999996,5.14655,8.68327,3.22906,4.91202,4.38671,4.371981666666667,2.770243333333333,3.21574,1.0750642857142858,3.949755,3.151315,1.913382,1.03867125,2.78622,0.8738100000000001,0.5494020000000001,3.8877666666666664,4.332155,5.085866666666666,3.8845333333333336,2.483335,3.059545,5.0666,4.117366666666666,4.525305,2.618525,2.2195566666666666,4.14992,4.302365,4.10714,5.2235,4.584015,3.67487,4.927825,3.1953099999999997,4.82745,2.1363891666666666,4.792225,5.28075,3.13667,4.00812,2.599175,3.640385,5.13945,4.668465,4.99869,4.89603,5.0008,2.6858833333333334,5.2397,4.857495,4.514695,2.4291925,0.99125875,3.997395,4.76994,4.242845,4.53322,1.76301,4.409795,2.413735,5.04935,4.55123,5.1417,2.2245825,4.477755,4.910225,4.50292,2.8853866666666668,4.44207,5.3114,5.0258,3.76771,2.4291925,2.273835,2.861585,4.56725,3.751145,4.38781,3.58754,4.300425,2.30215,6.68474,4.70944,4.490225,5.2953843124999995,4.6687075,5.13345,3.36199875,2.2926933333333332,2.2926933333333332,3.993795,4.291445,4.38106,2.2968325,3.2896312500000002,1.16320375,2.8497299999999997,3.3165566666666666,2.7030833333333333,3.3737,4.70351,2.7496666666666667,5.7412,3.0513066666666666,3.937535,4.2101225,2.348605,4.03552,1.8504966666666667,2.76852,4.070845,1.0221399999999998,4.865045,4.98555,6.1244700000000005,4.43719,5.57335,1.3122885714285712,4.65496,6.38815,9.228874999999999,3.361666666666667,3.29208,1.933234,0.892657,3.84168,1.022422857142857,4.01895,4.823635,4.96414,3.02035,3.621135,1.2005357142857143,3.354515,3.57943,4.436875,4.42313,3.322145,3.4592,2.563925,4.010575,4.732955,5.78895,4.65786,3.797905,0.42508222222222225,0.42508222222222225,0.42508222222222225,0.42508222222222225,5.5758,2.68813,6.9023,3.159216666666667,5.46985,5.06625,3.749175,2.199575,2.464226666666667,1.5290766666666666,5.7367,2.990596666666667,4.15693,3.562425,3.37985,1.67697,1.15820625,4.61001,2.34648,6.219466666666667,4.369785,4.981,2.35701,1.54443,0.8906644444444445,3.214125,4.551155,3.097195,2.2215875,8.492015,3.87213,3.774395,2.44722,0.471099,3.640775,2.873055,2.033445,2.08695,3.533145,3.67024,2.80874,3.2638599999999998,2.854955,3.703025,4.19833,3.52957,4.085445,3.85224,5.579338333333333,0.6312106666666666,4.409435,5.9608,5.02035,4.337015,3.1015533333333334,5.1726,4.659895,4.407335,5.229375,5.3209,4.363305,4.67685,3.76763,4.78484,3.42371,8.92611,4.93833,4.49053,4.989465,5.05575,4.93409,3.432825,1.1188888888888888,5.496424166666667,3.6316,5.00855,1.5408,4.27919,4.686645,7.3736733333333335,4.76335,3.121315,2.2686966666666666,4.343615,1.8969919999999998,1.11597375,4.38337,5.69295,1.9393866666666666,2.3498933333333336,2.85577,3.12649,3.610205,3.511845,5.0452,3.27601,4.152995,3.8110295,3.35106,3.657633333333333,3.859345,2.865275,2.755415,1.9446925,2.42959,2.694126666666667,4.35963,0.5409091666666667,2.5465266666666664,3.951315,3.001275,3.5745,4.446215,5.6594,4.280255,16.29999037878788,2.1106166666666666,4.025766666666667,1.41069,0.8138745454545454,0.8138745454545454,0.8138745454545454,0.8138745454545454,0.8138745454545454,4.6953,4.80617,5.085,9.3072775,2.643325,2.643325,4.59323,4.660360833333334,1.2642275,2.2131133333333333,4.263135,2.5089,2.2298025,1.9928525,2.887475,3.7346593333333336,2.2133475,3.941745,0.7989571428571428,2.8951766666666665,3.0378266666666662,2.9761900000000003,1.3987066666666665,3.3041633333333333,2.0984366666666667,0.94455875,2.8858533333333334,2.80194,1.1206666666666667,2.4536266666666666,2.7754,2.20731,4.536887333333333,1.95181,3.2018866666666668,2.0285825,2.5907833333333334,1.083148888888889,2.76219,4.766720666666667,3.710266666666667,1.09229875,2.837673333333333,1.6224575,2.9321866666666665,2.8204533333333335,4.7155716666666665,3.180956666666667,2.5932133333333334,4.817019999999999,2.7073199999999997,2.16527,2.804413333333333,2.809613333333333,1.9909100000000002,2.7960700000000003,3.5248000000000004,3.219863333333333,2.88696,3.2870033333333333,2.7152666666666665,2.4633425,3.852716,3.852716,2.882823333333333,1.9952866666666667,1.8570933333333333,2.69357,5.586973333333334,2.8530366666666667,1.9164433333333333,1.7100475,3.20059,4.395435,2.61299,0.986218,2.693144666666667,1.4444566666666667,2.4352066666666667,2.2538666666666667,3.8447333333333336,2.133723333333333,2.95717,1.171492,1.55835,1.3995466666666667,4.2904816666666665,2.56027,4.153825,0.9781877777777778,3.982285,1.96416,2.2928175,1.75871,1.7452500000000002,3.2935,24.611327077922077,6.24029,2.71327,3.2935933333333334,2.2491533333333336,9.927647333333333,3.2180366666666664,0.98576625,2.5146933333333332,2.62397,2.0570866666666667,3.00074,2.5341333333333336,2.658333333333333,0.96692,2.9296,2.4643866666666665,2.8731500000000003,2.6993566666666666,3.285016666666667,2.13996,2.109103333333333,3.1473033333333333,2.4678733333333334,2.233475,1.7247219999999999,5.771925,4.775255,2.42963,2.9404,2.1785666666666668,2.4708099999999997,8.137683333333333,1.9194833333333332,5.05695,2.0423775,2.150585,7.39571,2.72962,2.5643333333333334,2.645825,1.8902640000000002,1.4885384615384616,3.30105,3.2838166666666666,4.11984,1.59593,4.0142999999999995,1.43982,1.43982,3.60582,3.856375,2.7070537142857143,2.7070537142857143,6.143509999999999,3.487685,0.45049,11.24631445970696,1.2312100000000001,0.9858228571428571,3.263205,1.486397435897436,2.0465825,6.1218,3.766905,0.8024045454545454,2.074953333333333,5.297829818181818,2.6499741666666665,4.25462,1.3568528571428573,5.62335,5.4387,5.10205,3.63996475,1.979428,2.87115,2.7893033333333332,2.8350266666666664,2.2751200000000003,5.050153333333333,4.91647,4.51341,1.8234325,5.04725,3.95934,2.6189833333333334,2.3665725,5.26145,2.54867,7.99268,7.1575425,1.924045,3.34683,1.6914639999999999,4.498833333333333,4.498833333333333,3.389466666666667,3.245433333333333,3.0373783333333333,5.28955,9.691815,4.535835,2.4632225,5.63995,4.28213,5.2532,1.921914,0.8472825,1.332405,4.6715,4.79991,3.8027333333333337,2.91149,3.8773666666666666,2.0497433333333333,3.792315,4.43498,3.250845,5.37365,3.223463333333333,3.6299566666666667,3.5292999999999997,3.3523333333333336,3.5165666666666664,6.14415,3.026375,5.50335,5.30895,3.192035,3.4038,3.4038,5.634401666666666,12.003301666666667,3.5164000000000004,6.0610125,7.40981,3.6244,2.5335566666666667,3.87269,1.3773133333333334,3.815725,2.020495,3.0230866666666665,3.041846666666667,3.3345333333333333,2.10594,2.36084,2.8063800000000003,2.5891266666666666,3.0986966666666667,3.1022533333333335,4.13469,2.4923533333333334,2.9333299999999998,3.82712,3.017916666666667,2.3479266666666665,1.1571775,2.101915,3.1345833333333335,2.526126666666667,2.53702,2.381206666666667,3.5764,2.2925633333333333,2.4235966666666666,2.9731566666666667,2.9387266666666663,2.7761366666666665,3.114523333333333,2.377616666666667,2.93055,2.7976433333333333,3.301868,2.6105899999999997,2.561993333333333,2.4296966666666666,2.28241,2.62194,3.330356666666667,3.1786999999999996,3.06198,2.033015,2.033015,0.8998366666666667,1.628612,4.777605,3.18141,2.66746,2.10594,3.5135666666666663,1.3141,2.785966666666667,0.5992726666666666,3.4182333333333332,3.0693333333333332,3.05222,2.9904333333333333,2.64682,2.7629900000000003,3.1836599999999997,2.9339166666666667,3.356733333333333,5.001273333333334,1.5909179999999998,2.2327733333333333,2.5598666666666667,1.7436533333333333,2.0892433333333336,2.84212,2.9030966666666664,1.6249179999999999,2.5589333333333335,2.61749,2.7152433333333335,2.8523266666666665,2.9511033333333336,2.9805533333333334,3.4012666666666664,1.3415225,2.6927266666666667,2.46818,3.7946666666666666,3.5588333333333337,1.8868825,1.6670666666666667,3.5925,2.8145399999999996,3.4690999999999996,2.5872266666666666,2.9253,5.145605,2.8834700000000004,2.0752,1.6269380000000002,3.5095333333333336,6.0708166666666665,3.4615333333333336,3.5779,3.02049,3.23929,4.638534,1.5271839999999999,1.2053,2.4423033333333333,1.8244250000000002,4.55088,3.0731933333333337,3.4396,2.97667,3.25316,2.299323333333333,3.3500333333333336,2.3843625,1.59369,2.888726666666667,3.343255,3.74606,3.04906,3.859145,1.5966825,2.79744,3.038445,2.22443,2.0450233333333334,3.3874999999999997,3.9818,3.8403333333333336,1.446615,5.6508780000000005,3.249485,1.5481116666666666,3.78055,3.179965,2.80008,4.17198,1.979784,1.979784,3.4115,2.8765366666666665,2.7904,5.5015,4.30779,4.229438666666667,1.450172,2.8290900000000003,2.7271866666666664,4.12635,3.09295,4.255674,2.6218866666666667,2.3842133333333333,2.6445666666666665,3.518825,6.1015,1.6461659999999998,3.0673866666666663,3.374105,2.2470475,4.597375,1.2464116666666667,3.320645,4.72595,2.54773,3.600325,4.069055,1.571935,1.5188666666666668,2.3430025,1.0724183333333335,2.095286904761905,1.9941,0.43458142857142856,4.39238,2.056675,4.665795,4.662465,2.77641,4.765853333333334,3.0899933333333336,3.3707666666666665,3.717,2.6144333333333334,3.3330566666666663,2.6600266666666665,3.30967,2.3250433333333334,0.6917061538461537,2.305963333333333,0.6158892857142858,2.08403,2.4803,3.1964733333333335,3.173716666666667,1.4197066666666667,1.1790825,3.72108,4.5202,3.441395,3.3794174999999997,3.480435,1.621145,4.10966,7.471163333333333,3.64286,6.134697500000001,1.4764925,3.84505,1.8142875,3.87427,3.665175,2.03366,3.833745,3.062875,4.04295,4.14718,2.161885,3.9967,6.5290275,5.3296,3.22296,2.896235,1.6513075,1.913685,3.323765,3.53492,3.12919,3.72821,3.82216,3.706155,1.6504025,3.49138,3.332775,1.8424625,4.26544,0.9143249999999999,3.677245,1.7691875,3.801635,4.536448333333333,3.584185,2.7858475,3.907925,3.17204,1.96529,2.337415,3.8468666666666667,2.18458,5.7514575,4.043195,4.462965,2.55304,2.86345,4.483825,4.655155,2.582606,2.582606,5.916342,4.1787595,3.0131275,3.161965,2.1824600000000003,3.05414,3.2982,3.8184508333333333,2.752877,3.58371,0.9147259999999999,3.78954,3.027505,3.89434,2.3887,1.6309325,1.53137,3.36262,5.722538,5.34678,3.433095,1.4823675,3.787275,2.87717,0.8418,3.16362,1.1872880000000001,5.6813475,1.3142216666666666,4.195785,2.103995,1.4197066666666667,3.62465,2.98639,4.36726,6.7463733333333336,4.183535,4.151579166666667,2.40778,2.846755,4.65809,3.890655,4.53941,4.42993,0.9405775,1.6472175,1.0866575,2.2536,2.087735,4.81505,1.0866575,4.52145,2.277615,1.313705,1.313705,1.8424625,3.773545,4.416025,4.115425,1.58603,1.58603,0.9002566666666666,2.95636,2.0366375,5.9608775000000005,4.48094,3.53543,2.898403333333333,0.9510071428571428,3.427585,3.04464,4.208575,3.638905,3.92584,3.92584,3.450545,3.88762,1.941225,2.447445,0.9503355555555556,1.6779400000000002,3.45779,2.424323333333333,3.430858333333333,3.430858333333333,2.843365,4.74938,4.577815,2.87074,3.56858,4.233895,2.7460466666666665,4.557136666666667,2.30739,4.05634,8.321705000000001,5.1338,2.68737,3.157365,2.99392,4.66996,3.596168,7.5814025,4.691831,4.448445,3.337345,3.853185,3.713185,4.513145,4.60318,2.176875,4.095005,6.014304166666666,2.51545,2.211844666666667,3.328965,3.16216,3.47878,4.447095,2.277883333333333,1.4883266666666666,2.317845,2.61109,2.1640200000000003,7.214357333333333,1.38953,4.762583333333334,4.762583333333334,3.49827,3.8005466666666665,2.996265,2.5067666666666666,4.5818,4.0917449999999995,2.2079133333333334,3.81782,4.0029,3.4028041666666664,3.048085,3.166905,6.323023333333333,3.393205,4.733275,3.15348,4.264445,4.032275,3.791545,2.8765366666666665,1.84947,2.51319,4.209095,2.87257,3.3179316666666665,3.467665,6.480471666666666,2.466625,1.8532275,3.376524166666667,2.39066,3.74874,2.60074,0.8418,2.98933,4.249395,3.93283,5.859845,2.937945,2.742495,3.0316533333333333,3.0316533333333333,3.2644908333333333,4.47446,3.773105,2.2978375,6.206872499999999,2.0653425,4.661945,3.60697,7.8727,2.8265166666666666,1.36428,3.148445,4.37882,0.60171625,4.01398,2.7425,3.09946,3.0778,4.04242,2.079763333333333,2.16379,8.974605,3.310235,2.530615,1.3142216666666666,3.653595,2.71598,2.219775,3.98275,4.86997,1.621495,1.205425,1.0678750000000001,4.03236,3.78484,3.03693,3.4069025,3.4069025,1.6504025,2.172115,2.960443333333333,0.8552633333333334,2.590335,1.0760625,1.5966825,3.71462,3.59096,2.23254,2.62994,2.3337391666666667,4.2697,3.619035,2.88631,3.20797,2.422905,4.209345,6.452225,4.071065,0.8791925,2.711124,8.56357,4.53884,3.97712,1.0348725,4.289555,1.3839583333333334,3.575885,3.575885,3.649445,8.287604166666666,0.7951333333333334,4.571425,4.78189,2.2052633333333334,4.004664999999999,4.203485,2.236675,9.940890666666666,1.8437225,2.3711266666666666,2.943985,1.6101166666666666,4.213096916666666,2.912535,3.397775,3.421176,2.748985,3.09328,1.1767,7.30485,3.84145,4.3934,4.04362,1.924795,2.7858475,3.6175791666666663,3.87199,0.6469192307692307,4.65532,4.700335,4.93517,2.0848925,1.388006,4.56191,4.24683,6.06777,0.7368415384615384,0.8694775,0.8694775,1.51433,1.2794533333333333,1.3207900000000001,1.78146,4.703545,1.1950766666666668,0.8046328571428571,4.0383949999999995,3.64624,1.4432575,3.23371,4.92474,3.728375,0.725052,1.769685,10.962315,3.653261666666667,3.906375,2.79894,1.2358675,2.4627033333333332,2.810015,4.600075,4.596985,4.004275,0.88171,1.461458,0.9364140000000001,4.5374125,4.261185,4.199255,0.8552633333333334,1.782732,4.153255,2.17549,4.713504166666667,1.0620575,4.92842,0.6680083333333333,0.6680083333333333,0.6680083333333333,9.731265,4.15441,1.0760625,3.556445,4.267495,2.50468,3.273655,3.5960275000000004,2.557175,1.9582022222222222,2.0093866666666664,0.725052,1.566852,0.5769388888888889,0.8359916666666667,1.2838399999999999,3.44959,3.777905,2.12819,7.324793333333333,4.9028975,0.6451266666666666,5.337,5.296083333333334,3.33987,4.645975,7.557100333333333,3.58906875,4.9028975,4.213511583333333,2.3493933333333334,4.57457,3.635065,6.61459,3.402915,0.471099,1.566718,3.63716,1.750822,1.205425,4.26525,2.380313333333333,1.660825,3.116905,1.6552959999999999,4.376445,4.415025,4.14238,4.806635,5.65753,2.74206,3.89764,1.1872880000000001,2.3326175,3.56724,3.23135,2.2079133333333334,3.926435,2.48554,4.833855,2.963085,2.475755,3.2150166666666666,1.804414,3.5321,0.8552633333333334,2.17231825,1.0678750000000001,1.581905,3.512045,1.38953,1.2838399999999999,2.28541,2.52081,8.4183,0.88171,1.0348725,1.368858,3.746455,3.93156,1.368858,3.80051,2.3326175,0.60171625,0.8552633333333334,1.51433,1.1872880000000001,0.43458142857142856,1.660748,4.238235333333334,2.2052633333333334,1.3428383333333331,2.466905,1.446615,1.8437225,2.4972666666666665,2.0093866666666664,4.321075,2.4972666666666665,0.8418,2.782997,2.2777725,0.13300431818181818,0.13300431818181818,0.13300431818181818,0.13300431818181818,0.13300431818181818,3.350766666666667,2.7569700000000004,2.9522066666666666,2.9579533333333337,5.35345,4.282465,1.75871,3.600855,3.60328,2.118925,5.0737,2.770505,2.588535,2.465875,2.937375,4.59657,7.982673333333333,2.3430525,2.0392066666666664,3.0086532142857143,1.0059957142857143,1.3589583333333335,2.40003,2.3562366666666668,1.57319,2.6628166666666666,2.1880666666666664,2.80054,2.714926666666667,2.492973333333333,3.774095,3.77662,2.57715,1.265696,3.741795,3.637415,1.53455,1.4093959999999999,1.4093959999999999,1.4093959999999999,3.72594,2.7842300000000004,1.0915666666666668,2.2049766666666666,1.2868042857142858,4.31729,1.6321433333333333,6.80775,3.48204,2.99905,3.05051,3.05051,5.32468,2.857405,4.5003,4.744195,2.13957,3.2273833333333335 -GSM1946778,0.0,2.0165225,2.0165225,1.6374266666666666,4.58013,6.2174,2.3649806578947365,1.5441066666666667,7.557089950980393,4.596,3.3508999999999998,2.23316,2.164195,3.339655,4.302175,1.8112860000000002,1.480564,4.87465,2.58889,2.2877475,4.85554,5.235575,3.871315,2.060755,1.848516,3.93332,4.61211,4.363775,0.7089691666666668,1.5802591666666665,1.820193333333333,1.8601925,1.56905,1.1100771428571428,0.7002766666666668,3.0874321428571427,1.5319075,1.949115,1.1535475,2.215465,1.1009375,1.1025575,1.112138,1.3908099999999999,0.93008,0.9263960000000001,0.7630939999999999,1.1871542857142856,1.688348,1.872666,1.5241099999999999,1.996556,1.6888400000000001,18.3766515,0.39206599999999997,0.897492,1.061428,1.730896,1.4104160000000001,1.69058,1.06496,1.06496,1.06496,1.173265,1.028106,4.74089,1.0527025,2.3578275,2.073085,2.2351025,0.951797,2.181855,2.203535,2.2500775,1.525275,2.0718225,1.546285,1.7248275,2.4851433333333333,3.603265,4.45538,5.19495,1.6206966666666667,4.51976,4.308251666666667,4.273945,4.13442,1.0551925,7.70064,0.603843125,0.603843125,2.2930825,1.0058614285714287,16.371850000000002,5.0568,5.35875,5.53165,4.21213,4.192665,5.32565,0.44185722222222223,2.2406579166666667,1.6570825,2.386835,4.674,3.52326,1.5311125,3.2061733333333335,3.4707333333333334,2.70553,3.6556333333333337,3.53613,4.40579,2.7868475,4.55994,2.9532000000000003,0.7061818181818181,1.659366,2.63885,4.92639,3.218975,0.5597925,3.61052,3.848815,0.74911125,4.42461,1.6594622077922079,2.28071,2.6823,2.0800925,3.81513,5.77355,3.351335,2.6432166666666665,3.1753766666666667,3.0052733333333332,4.10597,2.9909499999999998,5.44545,3.481595,4.448775,3.13217,2.119125,3.659145,2.32318,7.028215000000001,3.52062,3.651425,5.4381,3.14615,4.979805,0.7846522222222222,9.73015523809524,3.58478,2.0997133333333333,1.9971416666666666,3.27587,2.401485,4.872255,5.6624,2.1551575,5.009437500000001,2.68796,4.35874,2.1551575,2.8204433333333334,4.506345,5.212164166666666,3.757475,9.04775,3.52237,4.88566,2.88216,4.99714,4.587065,1.7992833333333333,8.13777,4.5086,3.928745,4.035625,3.493795,3.344105,2.28182,6.28387,2.296805,3.91848,4.02362,5.05855,4.65259,3.43266,1.4016883333333334,2.78808,3.01665,2.06275,2.06275,5.791938571428572,3.203425,1.9060033333333333,4.252795,4.707535,2.68476,1.4790766666666666,0.8379811111111111,6.68405,2.855775,6.88375,2.9456,3.75182,3.78188,3.01763,3.909815,3.680175,3.84653,4.12406,5.95795,2.82799,3.626805,9.094693333333334,4.579275,3.6183666666666667,3.000913333333333,2.730256666666667,3.7868,4.2097758333333335,1.8348725,2.7025133333333335,2.1689133333333332,1.704534,1.7499166666666666,2.7143033333333335,1.7114925,1.9598625,2.9881966666666666,2.6487833333333333,2.3598033333333333,2.7998333333333334,4.308251666666667,3.572355,3.39228,3.43538,4.44594,1.2215216666666666,1.92546,2.9238662857142863,2.1101,2.62881,2.1358133333333336,3.3829,1.6629079999999998,1.4156233333333335,2.5886633333333333,0.688968,1.6407299999999998,0.5366822222222223,0.5366822222222223,1.4767366666666666,2.7354233333333333,2.270023333333333,1.31724,1.4535200000000001,0.30778692307692307,2.7255533333333335,0.688968,1.1927066666666668,0.19703216216216216,1.4976466666666666,2.0371425,3.598266666666667,2.22539,2.3148666666666666,2.5900366666666668,2.2704333333333335,2.4030733333333334,2.5696866666666667,2.401266666666667,2.23341,2.7200433333333334,1.9071666666666667,2.735675,4.14274,0.6830883333333334,1.8615199999999998,2.5627733333333333,1.9889166666666667,3.4273000000000002,1.547396,2.5859900000000002,2.1578566666666665,4.293406666666667,2.0730833333333334,6.926675238095238,1.5733285714285714,2.9251566666666666,2.0838725,2.0942525,3.2494099999999997,1.9383525,1.93793,3.93897,2.5747566666666666,2.20576,3.88119,4.014735,4.299765,3.789035,2.359285,3.2249,4.3438099999999995,3.867655,3.91324,4.245275,4.591125,3.07056,4.35529,3.585765,0.903255,4.816815,1.2613283333333334,4.77866,3.734585,5.726863,3.545435,4.225525,0.95854625,2.257415,3.510985,4.1395,0.8081957142857144,1.1952757264957266,2.022478095238095,3.696042857142857,5.324935,5.464637,2.189495,3.17397,5.38595,0.34976142857142856,3.47258,2.3823,1.00092375,4.571375,2.178365,12.262545,1.2776375,1.37302,2.0121233333333333,2.353145,1.9694757894736843,4.553535789473684,0.3109457894736842,1.6862599999999999,2.93684,1.05017,3.7015333333333333,1.0078057142857142,4.98014,3.806335,2.0497133333333335,5.9149,5.79225,2.8892,1.116412857142857,4.575431666666667,4.922795,4.37151,0.861090909090909,8.02018,2.90098,4.413635,2.6879399999999998,2.5471033333333333,4.33361,2.31412,2.6792266666666666,2.13606,2.4892266666666667,3.14463,2.9467700000000003,0.346706875,4.016015,3.62536,3.83648,3.872265,4.36811,6.114322,4.123935,1.68235,5.58615,4.494485,4.469965,4.026825,1.0515166666666667,2.66339,3.27866,2.4605799999999998,15.37781,2.94335,3.805205,4.354425,5.6357,2.569905,5.108765972222222,1.7058025,0.7695544444444444,2.683725,3.321625,3.46772,3.887805,6.510496666666667,2.9600266666666664,2.31616,2.122125,3.30489,4.577275,2.267515,0.4183826041666667,3.181739130434783,1.9284425,1.14186625,0.564652169384058,0.7109217346014493,0.4183826041666667,0.4183826041666667,0.4183826041666667,1.18034,1.2665175,0.929675,1.5684925,4.210465,0.21052294117647058,11.078974556277057,3.4276666666666666,2.7249033333333332,4.08194,3.94819,3.916355,2.12919,4.6636,3.9047799999999997,4.031615,3.74595,0.6682107692307693,3.3331733333333333,4.187225641025641,0.6191407142857143,3.52465,2.69603,4.358175,0.5415727272727273,1.924265,4.42545,3.401315,1.8462825,1.8035500000000002,1.8058266666666667,3.2720066666666665,4.003785,3.05988,2.83164,5.36175,5.45775,4.762875,3.2950733333333333,3.163505,6.772966666666667,3.8195666666666668,4.60302,0.41145,3.1786666666666665,3.8671300000000004,2.0235866666666666,2.66712,2.7547858333333335,5.706063333333333,0.5974658333333334,2.896125,4.431295,4.09458,1.0370142857142857,4.58143,2.75582,4.80386,3.1375533333333334,4.21587,3.514885,4.36647,1.1603216666666667,3.335615,2.80077,4.68243,4.05909,4.169295,5.8676,4.64076,2.73552,5.4831,2.36828,3.01846,3.1488833333333335,2.6322966666666665,2.7388333333333335,2.2690966666666665,1.863134,1.44238,2.0604366666666665,0.81099,1.4102833333333333,2.268733333333333,1.9368566666666667,3.0828466666666667,3.222246666666667,2.735193333333333,0.9617133333333333,5.0195,3.309696666666667,5.418191666666667,2.707141666666667,3.1311699999999996,2.9352199999999997,1.7361166666666668,1.7361166666666668,2.5626841558441558,2.5626841558441558,3.04130487012987,0.48545714285714286,1.7264466666666667,2.0614133333333333,3.628833333333333,2.1944935714285716,2.1944935714285716,2.1944935714285716,7.36780613095238,4.346538095238095,0.9692272727272727,2.413415,4.884974166666666,2.544475,4.729035,3.209665,2.279215,3.54916,3.1194133333333336,3.1595566666666666,0.96338125,1.9575366666666667,3.5317666666666665,2.5174533333333335,2.6449866666666666,5.6844,3.895,3.780666666666667,5.07515,2.0212833333333333,2.7096199999999997,3.1651133333333337,1.0237577777777778,2.1834466666666668,4.616668,8.0119925,1.5343425,2.973255,5.16585,1.846512,1.892885,1.892885,1.02551875,4.824225,7.556215,4.254285,5.244177,4.592295,1.7392666666666667,3.996695,3.082475,4.73196,5.117276666666667,0.3585405263157895,2.90828,2.56285,3.73417,3.63431,1.859442,1.8915475,2.508075,4.28577,4.03418,3.18501,2.53881,1.36835,6.89742,5.29585,3.961095,3.467635,5.3282,4.28365,4.61926,3.53633,3.5586675,1.99796,1.0713342857142858,2.692745,4.091735,3.823385,5.556627499999999,5.7291925,2.3940425,1.8000999999999998,2.6418066666666666,2.7549566666666667,3.02071,0.6664864285714286,2.36161,3.614715,1.13960875,4.711705,3.272145,6.24953,1.3168604545454545,1.3168604545454545,4.16092,3.82461,3.773025,5.66455,2.7734233333333336,2.3292800000000002,3.88838,3.283195,2.141205,3.4794666666666667,2.350096666666667,4.08204,3.6777025000000005,3.921165,4.63445,1.0561433333333334,2.66577,4.15157,4.756645,3.269095,2.5143133333333334,1.93411,0.6304422222222222,0.6304422222222222,0.6304422222222222,0.6304422222222222,1.3522072222222223,3.7842849999999997,3.7842849999999997,1.87531,6.787276666666667,3.16866,4.093745,2.9272566666666666,2.709325,4.7942,4.017485,4.922615,5.10505,1.76665,4.050425,3.54317,2.65761,3.29719,3.410385,2.42797,4.009745,1.94113,4.901195,1.74935,3.4575466666666665,2.95428,1.7938675,1.182605,2.746015,4.386205,1.213914,0.8496888888888888,3.69258,1.26401,5.001880666666667,4.236455,1.2875114285714286,3.702295,0.7746288888888889,2.5715566666666665,2.432166666666667,2.2672,2.650015,3.894095,2.9112516666666663,4.80015,5.6809,4.28154,4.22195,2.526275,1.3000900000000002,4.003255,4.889475,1.4721375,1.4721375,4.069525,0.23255733333333334,2.25955,0.23255733333333334,0.23255733333333334,0.23255733333333334,0.23255733333333334,5.21755,2.63302,3.137115,3.49814,3.1722,4.385795,2.8155,1.006025,1.006025,0.8964233333333333,0.8964233333333333,3.77266,1.55488,4.399705,1.4360371428571428,1.4360371428571428,4.47608,0.49444,2.6423,7.165965,4.7781,3.35594,3.818335,0.88621125,2.413025,1.9771725,4.81578,4.32804,4.335635,3.82985,1.2846728571428572,2.674775,1.9392675,7.60201,1.79364,4.341885,4.71045,2.79264,3.91985,6.2409,7.90903,3.985135,4.37346,4.14169,2.344365,3.205885,2.34727,2.337325,2.02671,3.86179,3.537595,5.918558333333333,6.73808,4.128235,1.3346233333333333,1.799955,3.409355,3.706485,2.1186775,4.14545,3.182265,4.652933333333333,1.7126933333333334,4.0094,1.64053,6.531106666666666,2.69138,2.35344,2.3058633333333334,2.399915,3.32282,3.3733,3.2993,2.6403933333333334,3.3529,2.12946,3.467415,3.099835,3.1731,0.37780800000000003,2.94901,3.70718,2.70365,5.55825,4.9802,4.65884,6.79936,4.59811,2.1273733333333333,4.10929,5.33505,1.62361,4.78657,5.6826,5.4168,4.52263,3.16932,5.5937,5.08425,3.7704,5.324771999999999,7.639900000000001,3.99441,1.2344066666666667,1.4151966666666667,2.481275,1.78321,4.487255,3.994915,5.1681975,2.5503833333333334,2.366966666666667,2.70342,2.4251366666666665,2.2478233333333333,0.9475922222222223,0.49398588235294116,3.816265,4.063335,3.5897,4.041355,2.828615,3.2416966666666664,5.239988333333333,2.9889766666666664,0.5632805882352941,3.104005,5.5944,1.8410425,1.605946,3.74287,3.367845,2.5086633333333332,3.9183,4.02689,2.762923333333333,2.4153066666666665,2.35064,2.5716766666666664,2.77397,4.307156666666667,5.0069975,6.007915916666667,1.297916,4.82627,3.2694254166666665,4.90335375,2.43432,2.8804,2.392445,1.8902299999999999,1.541435,1.541435,2.6753699999999996,2.4161266666666665,2.70222,3.926475,1.639534,2.297225,2.18073,0.497379375,3.587265,0.5612,0.87517375,3.52868,4.44687,4.141625,1.61935,4.404735,3.1596233333333337,0.8309571428571428,4.27824,3.719715238095238,3.2085066666666666,2.512075,5.2292,0.2726803448275862,2.1852431666666665,3.30871,1.5372175,3.80473,6.6555,2.356205,1.3919066666666666,4.01759,3.891635,2.718973333333333,2.718973333333333,3.574825,2.397925,4.748055,5.580816666666667,5.0538,1.0301277777777778,2.7294199999999997,2.4216133333333336,4.29337,5.22015,5.50235,4.894255,4.3084,3.8093333333333335,3.5962666666666667,3.5128333333333335,4.0786,3.077223333333333,3.0558333333333336,0.6231985714285715,2.410785,2.430925,3.62335,3.0382200000000004,3.1685466666666664,0.7718975,2.71276,3.8638505,4.55555,5.9098,4.72741,1.940965,1.940965,0.8453820000000001,3.095125,4.495305,3.724255,4.729341428571429,3.559255,4.79336,0.5798081818181818,3.192445,3.583355,3.898155,3.8517358333333336,0.8767514285714286,2.666835,3.965545,5.70695,3.8214,5.06525,2.77349,4.178695,1.58851,1.0115271428571428,2.7052833333333335,5.31345,4.84281,3.147815,1.44017,3.92437,2.6496,2.60315,2.7772555555555556,3.0206733333333333,4.563973333333333,3.08583,1.738766,3.5148333333333333,1.4781083333333331,2.84449,2.5746100000000003,2.3504425,2.77487,2.859583333333333,2.2967366666666664,2.5944133333333332,3.537095,3.047273333333333,3.433733,2.4461933333333334,1.861865,4.099824999999999,3.023093333333333,2.44836,3.433733,2.13177,0.8093181818181818,2.380595,0.9991944444444444,2.264865,1.5330425,0.9471,1.65969,1.64457,2.62644275,2.6861,4.30196,1.5324775,4.880895,3.117793333333333,1.59366,2.307256666666667,2.4046266666666667,1.8055166666666667,2.8577266666666667,2.722856666666667,2.329308181818182,1.78223,1.832112,3.6374666666666666,2.3597466666666667,2.8391105555555556,3.1100433333333335,3.1521633333333337,3.7151333333333336,1.9795633333333333,4.2465,3.5376666666666665,3.7551,2.8089333333333335,3.4766333333333335,3.6186666666666665,1.9615600000000002,9.755975,4.258025,4.26086,3.400715,2.692305,1.98505,4.06148,1.692616,4.17093,4.13669,1.32413,2.4560333333333335,1.1049633333333333,2.3819666666666666,1.6092433333333334,2.4184966666666665,4.988143333333333,3.0783466666666666,3.62328,4.990345,0.7665625,1.416178,0.9515689999999999,3.510525,10.515123333333333,3.5147333333333335,6.5716,1.9743525,5.1215,4.17334,2.54475,5.16475,0.28579235294117644,0.8355028571428571,4.937365,4.351425,7.2674725,1.9901725,4.250795,5.69485,4.60182,4.633455,3.525235,4.596725,3.718405,5.858415,3.65008,3.20179,3.0504,2.1864500000000002,1.9464333333333332,1.4673674583333334,2.5132566666666665,4.07557,4.67252,1.562228,9.12894,1.9753533333333333,2.942556666666667,1.058028,1.058028,7.2307958333333335,3.18016,2.284205,2.10428,2.5650166666666667,2.2068066666666666,1.1211499999999999,3.7056291666666668,2.67929,0.5895085714285714,1.7372966666666667,3.321696,3.321696,1.1765933333333334,2.58402,2.2508133333333333,2.4510183333333337,1.34173,1.7663533333333332,4.682088666666667,2.6708433333333335,2.69855,1.239435,1.239435,4.1164,5.7999,4.16429,3.36755,3.826675,5.86643,2.83723,2.8107,3.0279333333333334,4.121445,1.2180066666666667,3.1829666666666667,2.565375,3.81376,2.15537,4.750205,3.48661,4.37239,3.455145,5.515261000000001,0.9922322222222222,1.92943,1.887415,3.60267,4.336875,3.746945,3.754215,3.481275,2.636745,1.72356,4.19316,3.370795,3.121335,2.45573,0.8346225,3.39469,4.239425,4.673215,1.3072566666666667,2.8926200000000004,2.51255,1.98362,1.7323599019607845,1.7323599019607845,1.1496516666666667,2.1127,1.0741571428571428,1.386806,4.377315,4.418025,0.483647619047619,3.670165,3.396933333333333,3.9575,5.14935,0.416139,9.408355,5.60645,2.774565,3.70179,4.42831,5.490362857142856,5.07525,6.925355,0.6807581818181818,2.801823333333333,5.08505,2.86008,1.6346475,2.03182,4.50273,5.09961875,2.4280980357142856,3.3494333333333333,3.046726666666667,1.9944,4.23037,10.73425,8.294589166666666,3.8220666666666667,4.53405,3.1320575,3.11224,3.914345,1.8554220000000001,3.0007366666666666,3.73801,4.54882,4.787075,5.08825,6.442956666666667,2.1440533333333334,4.4382,4.66375,4.7155,4.4461,7.396916666666666,4.0837725,5.9895,3.522885,3.151405,2.90169,5.7698,3.753695,4.771075,2.141165,3.1629566666666666,3.343065,5.9762,4.0387,4.034035,1.469988,0.92385375,2.4369175,0.5434593333333333,4.16099,3.630425,3.573855,2.944125,2.109783333333333,2.95885,2.666125,3.044894,1.885052,3.0518625,2.900275,2.32668,2.52625,3.8083299999999998,1.2510083333333333,2.926968333333333,5.18575,3.6801666666666666,1.136785,2.6660866666666667,3.7907075,3.7601489999999997,1.5746875,5.8113,5.72345,2.3077033333333334,3.142056666666667,30.491473857482386,3.2451933333333334,1.7199666666666669,4.087066666666667,1.6042266666666667,2.58824,2.9483466666666662,3.3735,1.971525,2.707575,1.8097725,3.921691,3.3666,2.512975,1.5515875,2.2162800000000002,2.87125,0.3704663636363636,1.106605,2.861523333333333,1.662096,3.456365,1.5746875,2.0132733333333332,25.581262944444443,5.30445,3.677385,3.631825,2.57359,2.57835,2.70363,2.3506575,3.58036,4.909468,5.24465,1.5916679999999999,1.8374020000000002,2.16064,2.4549399999999997,3.6951733333333334,5.2336,4.744135,4.448715,0.19020127659574468,4.91029,4.780169166666666,3.79663,9.51679,1.1083825,1.1083825,3.0002066666666667,2.85872,5.39895,1.8568966666666666,0.9832455555555555,4.60402,1.935265,4.08749,4.052115,3.375555,3.996015,3.94838,5.3933,2.91612,0.76123,3.34571,2.207098333333333,4.16086,7.82523,4.316355,1.9101433333333333,1.9101433333333333,6.681925,4.72969,4.27091,5.56415,2.0535466666666666,5.044231666666667,1.3314000000000001,1.5152233333333334,3.020466666666667,2.2200333333333333,3.05081,2.7247833333333333,3.832065,4.3373099999999996,4.019955,5.49425,2.2395475,2.4831075,1.9926975,2.4199875,2.3941975,2.090485,2.151955,4.9150025,1.860285,3.446705714285714,2.40457,2.9628433333333333,2.604836666666667,1.77675,1.4436714285714287,0.9333500000000001,2.290783333333333,3.968033333333333,0.72245,4.45678,1.8591125,5.836765833333333,1.964585,1.5844975,1.674515,1.5691633333333332,5.695963888888889,1.8616160000000002,3.0732433333333335,3.7383333333333333,1.2224125,1.8150175,4.905975333333334,3.188893333333333,1.8215566666666667,3.619066666666667,2.7157766666666667,2.9198633333333333,1.2523946428571429,0.263565,0.263565,0.263565,0.263565,0.263565,3.70231,2.8004433333333334,2.5948,3.3906666666666667,1.4130916666666666,2.727126666666667,2.9485166666666665,2.40081,3.352055,2.854145,1.6871133333333335,2.88011,3.1478800000000002,2.0670275,1.998825,3.70779,2.7087133333333333,3.813133333333333,4.90507,2.53796,2.6562366666666666,2.5111933333333334,10.879135833333333,4.63572,4.31307,4.9551,4.16989,2.882486666666667,5.11685,4.138775,4.26729,5.767691666666666,3.80151,3.040125,2.3562825,3.45609,4.915073714285715,3.21287,16.90923694047619,1.0328975,4.34973,0.8659466666666666,1.18311125,2.9492,4.65383,4.11318,4.481835,1.5688250000000001,2.38397,4.18539,2.2245166666666667,4.51833,3.042872857142857,2.7472833333333333,0.61387,2.9190400000000003,4.7514,2.28492,2.3611225,2.18298,19.81764666666667,1.2540200000000001,1.370825,2.62268,0.2984603846153846,1.75175,2.8900400000000004,1.97227,2.987886666666667,2.716175,7.405519166666666,1.960925,2.4776175,2.2079725,2.12681,1.6247416666666668,3.163266666666667,3.28174,4.031835,3.1969166666666666,1.9188075,2.6038983333333334,2.990285,4.87591,0.41788166666666665,3.691333333333333,3.08874,3.073445,1.950455,3.6892475,3.53457,1.6267933333333333,2.3316466666666664,2.2507366666666666,1.4906566666666665,1.7258066666666665,3.512115,3.27625,0.7856566666666667,3.346855,4.75659,4.07975,2.266024,2.266024,3.0457633333333334,4.338375,3.17043,3.2679,2.30417,0.8268472727272727,4.11236,3.623195,6.0494,3.9579,2.38426,2.38426,1.3381025,3.497395,5.0326,4.02724,4.25104,2.9727766666666664,2.3615333333333335,4.303415,3.22024,4.27219,2.934153333333333,2.1516433333333334,4.236533333333334,3.0053900000000002,2.68454,1.9289033333333334,3.458865,2.688475,1.60389,3.64537,3.204695,4.11294,3.689133333333333,4.736055,4.416255,6.36529625,3.739655,2.03768,4.7018,2.65475,7.215714999999999,2.39023,1.2245666666666668,4.364135,3.855,4.696335,0.5234364285714286,0.8457666666666667,3.536825,3.65108,2.0084807575757577,4.202485,2.81191,3.05295,8.815422,1.8180219999999998,1.369948,3.52711,2.70908,3.33815,4.701785,6.468181666666666,3.156251666666667,2.0974366666666664,2.970083333333333,1.8781666666666668,3.215856666666667,8.259142701149425,0.7961533333333333,1.08757,4.75925,0.4269786666666667,1.5814275,2.1167525,2.942975,3.0748,2.791725,4.377845,2.2799025,12.462,5.376917499999999,2.472485,2.472485,4.20366,0.84536,4.9506966666666665,3.95812,4.09473,5.608473333333333,3.58166,4.552055,1.3417633333333334,2.908725,2.88764,2.618335,3.049885,2.574275,3.521775,3.62178,3.689175,3.168645,2.914165,3.1001,4.067185,4.328975,2.9972833333333333,3.2024166666666667,4.6938475,4.237385,18.301529404761904,11.608014523809523,3.293452857142857,0.6907141666666666,1.4491142857142858,4.39805,3.641715,3.033273717948718,1.813585,0.8340822222222222,0.6367658333333334,0.6666385714285715,2.03644,1.5798780000000001,5.205433333333333,3.3544,0.71992,3.33752,2.37584,1.709115,1.601108,6.2006033333333335,1.5736240000000001,4.37059,2.87021,2.8641666666666663,2.574685,2.62064,2.5528733333333333,0.7652654545454546,3.01745,3.1125966666666667,3.9288213333333335,2.9412933333333338,4.808933333333334,3.632055,3.344825,2.37176,3.30577,6.234315,2.09271,2.3971,2.560125,1.6133475,2.5939,2.15451,2.652875,0.9381970000000001,1.35583,0.99288,2.89546,4.367015,6.2754,5.4305,3.06432,2.26857,2.924825,3.2587733333333335,7.52992,1.2837033333333332,0.36799875,2.86854,2.119,1.4901820000000001,3.3547830000000003,1.213162,1.7575863333333333,3.8956516666666667,2.8756246666666665,1.2363533333333334,1.86416,4.128985,3.651465,4.56898,3.81783,1.9948375,4.9606,3.871515,0.7373861538461538,4.631175,3.91926,4.158809583333333,3.161156666666667,2.75124,1.355738,1.0704525,3.507045,2.74251,3.38328,3.78792,2.760645,2.7203366666666664,3.26996,3.670495,4.297465,2.559455,2.663935,4.26921,5.52255,0.586925,4.58412,1.8085375,3.505085,4.119233333333333,1.6021425,3.147915,2.194405,2.113305,2.58315,2.3066275000000003,1.7630033333333335,5.16905,3.689525,1.1996385714285716,7.12176,1.1094533333333334,3.538665,1.82515,4.845655,3.97784,3.3216300000000003,3.10485,4.1477,8.59183,2.984235,3.668825,3.72921,3.644405,1.7413125,8.22115,3.718945,4.1773,1.831715,4.19575,2.76915,1.03247125,2.0899799999999997,4.12946,2.180565,4.121515,5.025625,4.1475675,4.579695,2.1425025,5.2384,3.883275,3.382233333333333,2.5114366666666665,1.579606,4.51355,6.20985,4.437285,4.63572,2.997945,2.2674375,4.02236,3.345155,1.1391195054945056,4.22909,4.847453333333333,3.835695,2.798905,3.59126,0.6006271428571429,0.6006271428571429,4.86316,4.106525,4.19336,2.22151,3.74465,5.9985,0.8378140000000001,3.9551,4.71287,4.38974,4.795505,4.49807,1.8401375,2.988565,2.1011225,4.360985,0.66139375,4.025495,4.055305,2.6614,2.825863333333333,4.09168,2.2703,3.300735,60.08031498917749,3.323595,2.4508533333333333,1.734535,3.27669,3.92362,0.78693125,0.994015,2.1602075,2.1602075,1.346544,3.1861,2.307395,3.7121700000000004,7.66023,2.8422699999999996,1.2846514285714286,1.3175866666666667,2.7381499999999996,4.12069,0.909616,1.846115,1.1798899999999999,1.8648125,4.114965,3.972135,3.077925,20.72616548917749,3.53541,3.89417,3.2784,2.2373233333333333,2.991885,3.486205,2.39696,5.539,1.403354,3.911485,3.257587876984127,5.799922777777778,1.99488,2.70431,2.107645,3.95963,2.47055,2.1539,2.0619166666666664,3.555986111111111,3.365285,3.53448,3.91334,4.084715,2.4650825,2.75076,2.89387,2.836705,2.963336111111111,2.26732,1.947345,3.489985,1.1639716666666666,3.739875,4.44302,2.650605,4.743215,4.74605,5.168006666666667,1.8882133333333335,2.61778,2.891435,2.74757,4.11272,3.47102,4.45172,0.7260128571428571,3.810765333333334,2.79615,3.7528,2.344695,1.7938479999999999,4.575621666666667,1.1690333333333334,2.7136,4.410575,1.16423,3.6877,3.31867,4.59669,6.357547500000001,2.14205,2.830075,2.6113033333333333,3.9003666666666668,2.8732366666666667,2.649014666666667,3.18298,2.4126866666666666,2.5404833333333334,1.4809033333333332,2.265185,2.265185,1.9426833333333333,2.1807866666666667,1.6899266666666666,2.6061833333333335,3.76863,5.35195,4.41564,1.63093,4.399455,4.020135,3.51402,4.22171,2.024215,1.62392,4.696185,1.9162,4.314098333333334,3.77345,3.63487,2.4736466666666668,3.93749,3.23085,3.042225,3.52485,0.14679285714285714,2.1576066666666667,7.67517,1.526628,3.450685,3.179315,1.0022114285714285,1.1017416666666666,1.8967475,3.86031,3.03965,7.2319700000000005,3.675965,3.74605,2.9978,2.62046,3.533565,3.560305,3.940195,3.46403,2.858546666666667,5.38055,4.062415,4.079365,2.595826666666667,1.975815,3.56156,4.49684,2.81736,2.882155,2.143555,2.53216,4.316315,3.88365,2.66195,4.55392,5.17755,2.67976,3.91026,3.755985,3.59509,4.49865,3.43492,3.1841,5.86155,4.71815,4.958395,5.1896,4.54446,5.2434825,4.406705,3.72865,1.2908,6.66735,2.578005,4.09762,4.17072,3.88345,3.1237333333333335,1.8815566666666665,2.27017,2.46318,0.9710279999999999,3.5010666666666665,3.7717333333333336,3.08588,1.9719566666666666,3.75265,4.19367,2.45213,0.5532033333333334,4.51439,4.55219,5.0957,4.470235,3.30331,4.66362,5.03255,5.0215,1.3661444444444444,0.9215307692307693,2.7649066666666666,5.28915,5.93835,0.483880625,2.87262,2.497593333333333,3.36852,4.50361,3.8482333333333334,2.01507,5.4919,4.03207,4.37284,3.028035,6.345,5.1001,6.903965,0.5782200000000001,4.077275,0.8603780000000001,2.299575,4.025366666666667,3.0916,1.4048033333333334,2.29904,4.26591,3.455895,4.394255,2.3369133333333334,1.8867075,3.296265,4.54903,4.00173,3.858915,1.6180879999999997,1.193930142857143,6.18455,2.14966,7.8127525,4.33363,3.614795,2.1229925,1.67233,4.320405,4.526865,1.91261,2.41837,2.5318,2.1576066666666667,6.691144166666667,3.1062466666666664,2.7987266666666666,4.223620833333333,3.652455,2.0250666666666666,3.368555,6.9018049999999995,4.535815,5.1492,0.5207863636363637,3.36833,3.94741,4.469775714285714,3.585915,4.17703,3.077875,2.6598,3.210045,2.93454,3.511674666666666,2.05232,5.457375,4.651485,5.03995,3.89282,3.453525,3.2989924999999998,2.2831675,1.2605225,0.96169,2.877415,2.454745,1.106935,2.6808099999999997,5.0611,4.834495,3.745375,4.229585,16.80998369047619,4.150895,4.494005,4.05828,0.7287716666666667,4.94293,4.56092,3.9275,4.99726,4.96332,2.86622,3.616515,3.33504,1.486988,3.200705,4.787885,3.3397666666666663,1.498704,3.69408,4.948965,3.802285,4.846245,4.85112,5.6373,3.93859,2.6195066666666666,4.18637,4.29477,2.52123,3.0984166666666666,2.93764,1.6149216666666666,4.88776,2.6943525,2.0309833333333334,3.985195,2.290615,4.349345,4.099824999999999,2.242355,2.64228,4.32011,3.71472,4.536645,4.380835,4.908265,4.594274,3.32132,5.43835,2.6574416666666663,3.401085,3.751715,1.544144,4.48798,0.9953566666666666,4.40594,2.994225,0.8817928571428572,3.774815,2.141055,6.261340000000001,2.4628217142857145,2.4628217142857145,2.4628217142857145,0.763265,1.0669983333333333,1.821425,3.4292,5.86816,3.2321205555555554,1.92892,2.2001025,1.7635333333333334,3.86999,2.37253,0.4141646153846154,1.73399,2.2854075,2.867785,1.914065,2.369835,2.373225,2.0945225,3.842965,2.9298,2.94634,2.85536,2.011765,6.58323,2.23667,4.31877,3.915225,6.576076666666666,1.6488666666666667,3.620525,3.95003,3.64375,3.959975,2.775245,1.9581725,3.843895,5.799448666666667,2.04193,3.479035,3.201855,2.011505,4.77106,4.207515,2.655283333333333,2.249995,3.5844424999999998,5.490206428571429,6.0926,3.25773,2.43581,2.66611,3.047315,2.859125,3.753595,1.37111,2.7734,4.52655,0.7680375,3.705355,3.931135,3.79391,3.1551,2.43215,3.30654,2.07304,4.56925,8.074736666666666,4.1361,3.376355,3.130425,1.00655,4.65368,2.315175,4.32128,5.631577500000001,4.035395,4.22194,10.8575,4.828415,3.980735,1.50425,0.6641258333333333,2.87906,3.82653,3.57736,3.65491,2.2258066666666667,2.5650766666666667,2.196826666666667,1.0843583333333333,1.0843583333333333,2.04761,2.4261066666666666,1.9046233333333333,2.184973333333333,3.14223,2.547903333333333,2.39962,2.8454200000000003,1.5075833333333335,2.1052166666666667,2.1720200000000003,1.93502,1.4618025,2.5288933333333334,0.7346083333333334,9.708565416666666,0.7346083333333334,3.1355533333333336,2.033245,1.9485366666666666,4.34897,4.286925,4.10398,4.75685,2.2236766666666665,3.0056766666666666,3.1759286666666666,1.9707966666666668,3.10587,2.9087933333333336,2.473266666666667,2.6920466666666667,1.6717966666666666,5.29105,6.302447142857143,3.3196433333333335,3.3714,3.31497,2.6304966666666667,2.5695799999999998,1.1100771428571428,3.5462333333333333,3.424633333333333,3.8095,6.04525,4.287825,2.8720533333333336,3.5092666666666665,2.836593333333333,4.144078888888888,4.30766,2.64038,3.39799,3.2412466666666666,2.9219033333333333,4.802375,3.281026666666667,3.5573,6.071581666666667,1.97588,2.1652733333333334,1.4932033333333334,1.4793866666666666,4.578713333333333,3.356486666666667,2.4493633333333333,2.09984,2.0253733333333335,4.456595,3.61968,2.68193,3.4285333333333337,3.18904,3.4116999999999997,3.436166666666667,3.290366666666667,2.9662400000000004,0.5830375,3.6832999999999996,2.5288,2.5634,3.2894,4.48043,4.16906,5.3657,2.59009,3.975111666666667,1.1345066666666666,3.0385500000000003,3.0385500000000003,4.824545,2.99344,3.875085,3.8729,1.742195,3.12976,3.737935,1.1225114285714286,3.6079874999999997,3.066534857142857,2.219662,0.34548199999999996,4.063415,3.225405,6.749725,2.967455,6.0692,3.403865,3.814545,3.706485,1.6033675,3.176975,3.9301,3.08379,3.2519533333333333,2.9824699999999997,5.6276475,2.1171075,1.0042975,2.0657666666666668,1.5150966666666665,5.23955,2.3209966666666664,2.44497,1.5592725,4.36958,3.971175,4.060145,0.498562,4.109165,3.77561,2.34143,2.38591,2.4914,3.0981591666666666,4.058813333333333,1.68182,0.6624842105263158,0.7768785714285714,3.427433333333333,3.784,6.141848333333334,4.3963,4.14745,5.18265,1.3078385714285716,4.119233333333333,2.3163233333333335,0.9804725,5.4333,6.1628,2.353645,4.79614,4.090995,6.68004,3.9277333333333337,6.347963333333333,3.64071,2.381995,5.90035,10.079915564102564,2.4929799999999998,0.6068870000000001,3.080685,4.024075,2.12377,6.3849,4.07345,3.426545,2.73987,2.73987,5.8669,3.325295,3.99661,5.00595,3.709141,2.457022,1.152255,4.760305,2.695205,5.19398625,3.50544,4.32888,2.724595,1.8971725,4.580205,5.0022,3.550466666666667,3.96612,4.38481,27.054486904761905,1.8074075,2.57795,2.4045575,1.7156666666666667,2.5922,1.0398485714285715,2.76202,3.052906666666667,3.22105,2.8969733333333334,0.6268900000000001,2.9465800000000004,3.770945,2.86072,3.0549866666666667,3.567355,5.5799075,4.708945,3.96204,3.65361,3.775425,3.74416,3.5508666666666664,1.708085,1.0094916666666667,1.4143999999999999,2.3543933333333333,1.55005,3.0090033333333337,2.445253333333333,2.350356666666667,2.090456666666667,2.721535,2.19627,1.78548,3.10712,4.242455,3.677775,3.980235,1.386144,3.5847333333333338,2.5376933333333334,3.84653,2.236806666666667,2.550195,2.550695,1.4646666666666668,4.089525,6.536908333333333,2.84333,3.69747,4.03852,2.645325,3.425984166666667,3.4971,3.53616,4.627145,0.34748180180180177,0.34748180180180177,4.951155,5.07615,3.11705,2.83981,5.40015,4.352655,0.6463615384615384,4.71621,4.36041,3.62799,6.3744,4.703795,7.46656,14.190058333333333,12.512961025641026,4.469465,4.25882,2.4868833333333336,0.6183376923076923,2.53188,4.20935,1.295305,4.67135,3.541533333333333,2.7414199999999997,2.10874,1.9318266666666668,4.81255,5.02345,8.686519523809524,5.0622,4.143025,7.334938787878787,3.187875,3.15742,1.39474,5.453345833333334,1.9286125,2.4373133333333334,2.7506633333333332,0.2553021875,3.063995,3.497465,4.655340833333334,0.8077120000000001,1.1690883333333333,4.159345,0.59099,0.59099,3.1199804166666665,3.2287766666666666,3.3156166666666667,3.74019,4.342715,5.4135,3.70493,4.329425,2.972175,3.1333566666666663,2.6927266666666667,0.9226833333333334,2.82816,2.8353,2.88663,7.1381,2.799245,9.563625,3.191725,6.07715,3.022575,2.230075,2.40807,2.734475,1.831535,2.367845,1.92674,3.489675,2.411995,4.0230725,2.862995,4.054195,4.054195,2.78954,2.78954,8.795597666666668,2.4767066666666664,0.8008219999999999,2.59137,2.5620499999999997,2.5805466666666668,4.0230725,1.94588,1.91723,1.5169739999999998,3.8095,3.808215,1.77953,4.35553,4.072815,5.748558888888889,6.401213333333333,2.1512033333333336,4.152535,5.7259,3.610465,2.81888,2.332053333333333,3.22824,3.2487051515151513,4.271715,5.2195358333333335,7.3095333333333325,3.50830625,2.90031,1.15266,4.349925,3.914043333333333,3.77486,3.7499633333333335,4.230295,2.393775,2.439583333333333,6.0375,2.84051,1.30126,5.33424,3.735205,2.6593466666666665,5.15065,2.6593466666666665,2.860715,3.517535,5.06345,1.048592857142857,4.057771111111111,4.350885,3.391375,1.2747933333333334,1.7067225,3.784015,3.887425,2.43022,6.233981666666667,3.923575,3.25919,4.033215,4.5438,1.33107,3.86325,2.536035,3.60408,3.93109,3.541915,4.66311,3.011515,3.78003,4.795115,1.9069083333333332,1.8872025,3.2152100000000003,3.7586999999999997,3.5277999999999996,2.75131,3.5422999999999996,3.09756,5.6864,3.57348,3.590215,2.92846,1.92989,3.665233333333333,2.0120400000000003,3.09727,3.22671,2.906465,0.66139375,2.11586,1.8342266666666667,3.04059,1.8586079999999998,3.368451,4.12412,1.2329940000000001,3.0890825,4.59162,0.835898,1.4581466666666667,3.033005,3.77744,3.541895,1.99404,1.77961,3.44825,2.4907508333333332,1.6811033333333334,2.873345,1.90763,1.184036,1.3661775,6.46455,3.251745,2.217885,2.445845,2.40934,3.78457,0.87287,0.35182642857142854,0.7752885714285714,4.600385,1.8766354285714286,4.923285,2.082255,1.6667017142857143,2.926144857142857,1.2594431428571429,1.0697337142857144,0.745978,0.5835071428571429,2.541741666666667,6.33315,3.130015,3.60884,0.3268757142857143,3.643205,17.850598333333334,3.19683,6.944750842074592,1.06557375,1.06557375,1.06557375,1.06557375,5.661546666666666,4.003175,4.63597,2.1744733333333333,3.10054,4.29905,5.81425,3.38576,3.61157,4.218015,4.00839,3.938095,3.8096946666666667,4.07992,5.1422,4.12668,4.437815,3.286255,4.182405,2.6134733333333333,3.564795,3.3991,3.45613,3.58176,4.318215,3.156503333333333,2.3274775,2.4684,4.106795,1.2916928571428572,3.76301,2.509586666666667,3.359928,4.1475675,4.45766,3.097925,2.8836,4.227385,3.15071,3.14839,5.0936,4.956835,3.267755,3.43338,1.7316500000000001,1.7316500000000001,2.130815,4.6606,3.89343,5.309963,5.0996,3.509878333333333,6.55075,4.505195,2.04127,9.372634999999999,5.29585,6.73898,4.459505,2.728213333333333,3.022195,0.2549268965517241,0.88075125,3.767782,3.52729,4.63777,2.834623333333333,5.693,4.906745,0.5767942857142857,2.761405,0.506413,1.749952857142857,3.211235,1.91859,3.85978,3.642195,3.46215,3.47589,3.47825,3.68185,3.48923,3.60285,3.464675,2.257525,1.749952857142857,2.79098,2.1059,3.61706,2.28855,3.93764,3.489635,1.7413125,4.469895,2.818455,1.2866433333333334,4.71684,4.63057,4.218035,2.8248466666666663,2.916453333333333,4.046815,2.0771433333333333,1.407942,2.4686866666666667,2.6344966666666667,2.63158,2.274296666666667,4.825815,3.097005,5.018845833333334,3.9328342857142857,4.68233,3.8787,1.690008,5.0957,4.21203,5.46735,4.16301,6.37334,1.7724525,4.92065,3.621645,3.238285,1.6646175,1.88446,3.909545,4.437635,2.5497833333333335,2.7250883333333333,3.25904,3.25904,2.6468333333333334,3.1081066666666666,3.40853,3.98695,3.725675,0.7328707692307692,3.26933,4.519,5.002855277777778,3.070485,3.045445,1.80903,2.799635,3.563095,2.184115,4.692165,2.915815,4.871485,1.8795633333333335,1.0307727272727272,6.22479,3.71222,3.22898,3.1086666666666667,1.7714020000000001,30.24685661904762,3.92707,3.40379,5.9704,4.476355,0.8723166666666667,7.206165,1.837015,5.6423,1.429685,4.22754,5.086415000000001,3.64995,3.15557,2.1985625,3.2750333333333335,4.693215,1.9740925,2.748276666666667,3.61322,2.941855,2.58242,6.0199,2.252585,6.0882,1.125815,4.32361,3.522115,3.80415,4.940815,3.02235,2.50657,4.142125,4.56825,3.7491725000000002,3.7491725000000002,5.89695,1.8654725,4.419915,6.44411,3.56475,4.082905,3.27723,5.3627,3.60282,4.254095,1.3958325,2.18252,4.399115,4.310445,5.5144,4.346325,2.2154,9.41709,3.373405,3.624315,1.6359857142857144,3.490115,2.3357433333333333,2.68162,2.0606962500000003,1.2343733333333333,2.62973,0.9219214285714286,1.06905,1.06905,1.06905,1.9611933333333333,0.55927625,3.89274,1.1187466666666668,2.6308266666666666,0.819155,1.6091,2.76328,1.9380266666666666,0.767055,1.6956433333333332,1.50012,2.40327,1.631244,1.631244,1.71282,1.6797833333333332,0.901324,1.82202,1.58753,1.2958566666666667,2.516335,1.957055,5.7718,1.8324575,5.79415,17.424714583333333,6.454355,3.429395,3.588198333333333,3.419333333333333,2.667816666666667,2.6902500000000003,2.9523499999999996,0.6957091666666666,0.956339,0.956339,0.67230625,2.27988,3.72933,3.373715,1.522122,5.01605,3.743595,2.370205,3.897195,4.81554,3.75492,4.22132,3.476566666666667,3.12508,3.46723,5.7391,3.082356666666667,4.98523,0.536512,0.536512,2.16673,2.713125,4.727365,3.39955,3.83374,4.782685,7.62191,7.63489,3.72187,2.404785,4.706705,3.556815,2.4806066666666666,2.318675,3.73584,1.3981466666666666,3.855665,2.41131,1.509485,3.4693,3.77559,2.097675,5.2195358333333335,1.5670375,3.5526666666666666,3.324435,1.0650742857142856,3.561,2.7560000000000002,4.252035,1.115885,1.752575,2.2677275,2.1088775,1.6427575,2.3450875,1.8913375,1.9465175,4.1445,4.39584,2.438315,1.83472,1.4931266666666667,3.4913666666666665,2.0768866666666668,2.663425,4.70192,7.29015,2.38457,3.020855,3.4819,3.588255,2.49762,5.19795,3.96153,2.88348,1.2963875,4.60917,2.270935,3.23295,2.500005,3.6096,5.1592,5.54085,2.1242033333333334,2.7411433333333335,2.7981366666666667,3.4497666666666666,2.017116666666667,1.482506,5.30625,3.4301333333333335,2.251692727272727,3.0610999999999997,2.8933166666666668,2.193286666666667,3.265083333333333,3.0911500000000003,3.3411000000000004,5.38815,4.27727,3.0176266666666667,4.780315,3.16552,2.41471,3.540195,3.713545,3.96921,6.160785000000001,1.82398,3.87881,2.47098,3.9307,3.64242,0.5775825,2.35081,2.30319,3.313765,2.683315,2.246765,2.84045,0.611633,2.74997,4.345305,2.4715375,4.077445,2.3080066666666665,3.868385,1.933895,4.563495,4.27885,2.03548,2.80722,6.9961199999999995,3.77246,4.5155,4.933615,6.785150227272727,4.36818,4.27535,2.18043,4.62072,3.14195,1.9432633333333333,1.9655875,2.0971466666666667,1.0192157142857143,2.4052599999999997,2.3900900000000003,2.5937366666666666,3.3372333333333333,1.78189,3.230605,1.91409,4.307805,5.0168975,1.04352875,1.8261333333333332,2.5346033333333335,2.8343933333333333,1.9873833333333335,1.0867766666666667,5.46339,2.1333525,2.6618833333333334,2.57657,2.5707299999999997,2.7973,3.17626,2.2146399999999997,2.8028,2.18458,3.91136,3.428715,4.0156,3.0193366666666663,2.97507,0.681217,1.81506,2.08029,1.9718133333333334,2.5666066666666665,1.141325,2.6445133333333333,2.936583333333333,3.89346,2.0692366666666664,3.25464,3.06274,5.0201,3.213145,0.6154633333333334,1.968424,2.7083100000000004,3.1310066666666665,0.7671890909090909,2.77042,3.332714,3.480566666666667,2.803096666666667,3.3811258333333334,3.81361,3.8259666666666665,3.115083333333333,1.849575,5.54475,5.0965,4.896105,5.6092,5.62775,1.8399733333333332,3.451555,3.6623,3.3904333333333336,2.82234,2.76768,3.8002333333333334,3.502333333333333,2.80931,13.648961666666667,4.349225,1.0987500000000001,2.7226966666666663,1.54855,3.18338,3.2368566666666667,2.2089433333333335,5.871758333333333,6.676962166666667,2.4078766666666667,0.826598,4.205595,3.510533333333333,2.95925,4.662075,5.2725,5.67385,4.70209,3.50214,1.936385,6.469655,1.15266,6.520685,4.560685,2.2417000000000002,4.24086,7.328256666666666,5.9051,2.2734799999999997,1.4520366666666666,2.0838725,6.409196666666666,1.5746875,2.9801566666666663,2.579785,4.244716111111111,5.7801,4.360715,6.50285,3.362555,5.3426,3.71858,7.95104,4.7508,5.9156,2.40482,2.536575,11.167851666666667,3.3337,2.625385,2.4764833333333334,1.5718233333333334,2.1391633333333333,3.849833333333333,0.7004075,1.022364,1.0893742857142856,3.11412,6.906616666666667,2.972784,1.5895166666666667,4.820055,3.58838,0.59172,4.646395,4.263755,4.89821,3.54245,3.189525,2.7348233333333334,4.27585,9.984875,1.8178325,3.8618125,4.207795,4.27585,3.840665,0.84655,3.648066666666667,3.9776666666666665,1.7100099999999998,2.47428,2.3511833333333336,2.513133333333333,2.1933466666666668,2.22223,2.544765,5.800180714285714,5.28535,3.511245,5.116208333333334,1.8311333333333335,2.38978,4.836615,4.197415,4.392735,4.24167,4.585865,4.61062,1.7316500000000001,3.842875,7.506869999999999,1.37694,1.7713766666666666,2.4942933333333333,2.5900833333333333,2.771523333333333,4.83052,0.7768785714285714,2.46914,3.439115,6.17535,4.66327,2.2450266666666665,2.9029333333333334,2.00475,0.551303125,2.57365,2.973695,7.676130000000001,4.45569,4.41708,0.8735160000000001,4.664166666666667,9.110724916666667,10.416066666666666,3.3255,1.20466625,3.66068,3.49918,2.51329,5.4069780000000005,4.74672,3.85086,2.0216325,3.6209333333333333,2.2186666666666666,2.5366833333333334,0.78918,0.3755406666666667,2.909145,3.44801,1.9780086666666667,3.42077,3.0399833333333333,4.776025,5.44405,1.585888,2.9604666666666666,2.3574625,2.3574625,2.368085,3.16151,6.43445,2.754073333333333,2.373083333333333,3.3488666666666664,3.527233333333333,4.28526,4.39811,4.348915,4.211845,4.15115,4.161945,7.0143,7.943910000000001,2.00246,2.26918,2.8979633333333332,0.9329783333333334,0.66088,4.359085,2.212265,4.961355,2.9119200000000003,2.971633333333333,1.780264,1.48873,3.83038,4.421075,4.47059,2.0497,1.3503066666666665,2.64404,1.8279866666666666,2.6730033333333334,1.1224914285714287,1.1224914285714287,2.7011233333333333,4.70301,3.12139,3.21625,3.542055,2.30485,20.029955696969697,3.975555,5.1296425,4.38238,3.997175,3.853675,3.850905,5.7109,6.2669,0.7949099999999999,0.7949099999999999,0.7949099999999999,2.7344233333333334,1.6927,3.3817333333333335,4.113925,3.95533,3.23953,4.083045,4.54101,0.7836911111111111,2.1725266666666667,2.2008966666666665,5.9925033333333335,3.25969,4.082753333333333,5.00155,1.6021425,2.0137633333333333,2.34617,0.51752,0.901616,1.82405,1.984915,2.95804,12.884741666666667,2.6368466666666666,5.3432,0.7649357142857143,9.50002,5.49855,3.70895,3.867945,2.723325,5.5118,2.723325,2.80363,3.29822,3.8105,3.189685,3.876175,4.196415,3.336605,5.7506,6.954116000000001,1.8103300000000002,2.52731,2.848825,26.460599468468466,1.522288,6.45755,4.049598,3.956025,4.36418,4.38179,2.553375,2.52246,2.3106,6.53655,7.15415,4.70959,4.694155,4.26067,1.90315,2.40536,4.22329,0.47898999999999997,0.47898999999999997,0.47898999999999997,0.47898999999999997,4.13343,3.2453233333333333,0.9731133333333334,1.7906033333333333,1.1470333333333333,4.408395,2.4997633333333336,2.3305275,7.105395,3.2314900000000004,0.1718941379310345,20.362971666666667,4.7830449999999995,1.7965779999999998,1.2945877857142856,2.14128,1.96434,2.277095,4.65691,3.41921,3.326055,4.344155,2.1301099999999997,7.33137,2.71901,1.96445,3.83894,5.66085,8.564680000000001,4.236195,0.3028878048780488,3.53265,3.874545,2.6976366666666665,2.033565,3.075253333333333,1.6608366666666667,1.6608366666666667,4.07239,5.7334675,11.381960833333334,9.078275,0.6187222222222223,2.50684,3.76697,3.279295,4.606855,3.46409,1.410802,1.410802,3.114995,3.681325,3.1365499999999997,3.663845,4.35838,5.3837,6.8218250000000005,2.1755400000000003,4.69347,4.263285,2.646365,3.0588933333333332,3.0782966666666667,4.66097,4.3053,5.3766,4.13978,4.544125,3.87598,4.32015,4.224235,5.1794,2.626376666666667,3.0439900000000004,1.10532,4.41954,4.104125,3.65818,1.6455380000000002,1.90651,3.5031,2.7846766666666665,2.47112,4.412396666666667,1.8409000000000002,1.92281,1.8612966666666668,1.9983066666666665,2.49803,2.08943,3.8553333333333337,3.0594966666666665,4.175966666666667,3.31319,2.1478466666666667,2.6401333333333334,2.02792,3.26662,2.0202066666666667,38.046591916666664,2.102307818181818,2.102307818181818,2.466763333333333,2.372993333333333,2.1146433333333334,1.6164133333333333,2.90564,1.8291466666666667,0.7807615384615385,5.1002,6.8800725,4.10917,3.977755,5.55055,1.89355,4.339295,1.854524,5.08145,5.1062,5.8292,3.969065,1.708085,3.97703,4.414225,4.56941,4.754805,5.2017,3.485285,3.3491,2.5602266666666664,2.034625,1.98405,4.425535,2.4230199999999997,3.8422549999999998,3.8422549999999998,2.252056666666667,1.5935433333333335,2.20399,2.6165766666666666,2.082336666666667,5.14387,2.61922,1.18086,1.18086,2.0644266666666664,1.9999900000000002,2.4158,2.65925,2.4019766666666666,2.43989,2.2556966666666667,2.3351445,3.1139245,1.5617524999999999,0.77878,61.94382977083333,2.3859199999999996,3.4464333333333332,2.447524,0.89222,3.9759773333333333,1.5663,1.5663,3.28435,2.9771900000000002,0.7829725,3.0663533333333333,5.712223333333334,3.399566666666667,2.3716133333333334,2.8528266666666666,2.146243333333333,2.6367266666666667,0.281179375,2.6002266666666665,0.73896,2.5631233333333334,1.086098,1.086098,3.393133333333333,2.16868,2.9416700000000002,1.9429960000000002,3.5177666666666667,1.9429960000000002,2.15044,2.41487,3.169473333333333,1.356686,1.356686,2.9716400000000003,1.4207833333333333,3.3157666666666668,2.141783333333333,4.31008,3.760935,12.1335285,7.04234,3.16272,2.437085,3.814765,5.27385,5.50395,2.6917383333333333,3.830315,3.571985,2.321536666666667,4.11832,3.2515199999999997,2.8289299999999997,4.84717,2.1651000000000002,1.0271042857142858,3.8309745833333335,2.9388133333333335,3.034925,0.8001857142857143,2.86332,3.36406,4.129775,4.37764,6.5846,2.2245166666666667,1.856684,4.307925,4.35891,2.32472,2.430070833333333,1.9677233333333335,2.0960726666666667,0.8678060000000001,4.85194,3.980515,3.484935,3.78044,3.10383,4.84242,5.0187,2.6718333333333333,1.69689,0.505404,14.178815166666666,0.51551,0.51551,0.51551,3.0776133333333333,3.936666666666667,0.51551,6.536223333333334,4.256473333333334,0.733758,0.733758,3.3892666666666664,3.22228,3.072565,4.25857,5.07495,4.1211255,2.107475,4.931990666666667,3.131095,3.550542083333333,4.92146,2.78654775,2.478665,2.3615975,2.792575,1.6880475,3.3397516666666665,3.039,2.195075,2.0163575,2.0432925,1.76715,1.6091075,2.6415,1.0396577777777778,2.523775,0.5881057142857143,5.19865,1.6935525,0.6753041666666667,2.06285,7.857371666666667,2.726415,2.0213010000000002,3.290575,7.30892,2.54357,4.01125,3.074075,5.88334,3.41702,3.747555,3.81193,3.733025,2.961793333333333,4.28597,1.1400657142857142,4.236015,2.44568,2.5291200000000003,2.442515,2.20601,1.9383320000000002,1.24239625,5.63125,0.9471,4.86146,5.4244,4.99729,5.3026,3.6413333333333333,2.3296666666666668,1.911724,2.743396666666667,2.9449566666666667,2.47967,3.9209,2.7201,4.61513,1.685972,40.288357658730156,4.812315,2.5052600000000003,2.352203333333333,2.7551433333333333,1.5080533333333335,5.945205,3.92841,2.4337166666666668,3.2253866666666666,2.33931,1.60793,5.19125,0.7720642857142856,4.428185714285714,1.3333114285714287,3.4759666666666664,3.2630866666666667,2.7968233333333337,1.386475,4.324181333333334,1.7008459999999999,1.7008459999999999,2.2820199999999997,2.8391166666666665,3.4307,3.3689666666666667,1.4219966666666668,2.9002033333333332,2.7674133333333333,6.340254333333333,2.8239566666666662,4.076726666666667,1.5141016666666667,1.4440233333333332,3.009066666666667,0.892882,5.0529625,3.2880333333333334,2.88271,3.4537333333333335,2.89512,2.7748166666666667,3.2477933333333335,1.6687733333333332,2.40934,2.504983333333333,3.3548333333333336,2.4864866666666665,3.7497666666666665,1.9589999999999999,0.6229726666666667,9.957552948717948,2.8614200000000003,5.1855,4.9846,2.7683199999999997,3.0550766666666664,1.29456,2.1657966666666666,2.150265,1.29456,4.09082,0.476514375,0.476514375,1.2143575,1.2143575,0.80262,0.80262,2.633275,3.05259,2.429885,1.50609,1.94624,3.518065,2.98823,4.234165,5.39895,1.7961580000000001,4.2597,2.307845,4.630345213675214,1.715475,1.715475,2.280675,1.734912,3.594848333333333,2.0177225,4.56258,1.5688250000000001,2.5605,0.5308007692307692,1.1650514285714286,2.0509925,2.3357675,1.868775,1.3461325,4.033245,4.325005,2.1699566666666668,2.37745,1.35748,0.695035,2.4185166666666666,3.36802,2.872263333333333,4.681915,5.0004,5.09505,3.852705,6.6643,1.47922,6.17783,1.837935,4.46633,4.505105,5.789532,3.280836666666667,2.30315,1.8253025,1.981068,1.981068,2.543125,2.543125,4.37834,5.7785,0.930194,3.72364,3.316685,3.439575,2.524836666666667,1.3974725,2.824263333333333,4.195355,4.15934,1.654632,6.5829,5.30255,1.7244400000000002,1.3136375,4.24548,4.01278,3.58869,3.66022,4.014615,0.6472942857142857,3.8696333333333333,3.32784,2.69957,2.8526966666666667,2.148756666666667,3.6179333333333332,1.4995857142857143,1.4995857142857143,1.4995857142857143,3.008426666666667,3.1454466666666665,3.3897333333333335,3.397637595238095,2.1918125,1.2026814285714287,3.0472333333333332,3.080246666666667,1.3518128571428571,2.71712,2.66261,1.262392857142857,2.449663333333333,2.88062,2.949586666666667,2.7477933333333335,2.4903,1.986885,3.228923333333333,4.528685333333334,3.935505,0.9603569999999999,1.483778,0.554323,3.5817,8.993835,2.815853333333333,3.227955,3.3498,4.368040833333334,1.9514575,7.734748333333333,6.8323599999999995,2.7183499999999996,2.0768885714285714,3.92638,4.68589,1.5839539999999999,1.233436,1.366946,1.93484,10.513763333333333,2.59083,2.972236666666667,2.8247116666666665,3.899655,2.2025366666666666,1.106565,6.0448,1.0369833333333334,3.444893846153846,4.91061,3.30749,3.3155033333333335,3.119665,4.743845,1.17025,2.0767975,1.9384346666666668,1.9384346666666668,3.81734,5.69525,9.64298,4.29253,3.393405,4.805305,1.773295,2.2758725,4.623105,3.771205,3.90582,1.5151733333333333,2.89219,3.51883,3.96242,2.4569275,4.06286,3.553665,3.72339,4.07144,3.635005,3.96168,5.1514,3.2324800000000002,2.50768,4.222055,3.258085,3.81926,2.022135,2.501475,2.622375,5.92735,2.3967,3.2321071590909094,1.6883175,2.48715,3.388945,2.1989825,2.109245,0.67882,0.67882,1.7452325,3.4051572727272728,4.0516,2.8756866666666667,4.31523,3.0859433333333337,2.499230285714286,0.959775,2.86981,1.5322725,4.026855,4.116725,0.9232912500000001,1.8677275,3.871305,2.9702425000000003,1.6150925,1.6208166666666666,4.943188571428571,0.9006599999999999,2.88658,3.20408,2.77836,2.459355,2.786828,2.11303,1.0212175,2.946105,3.04106,3.39292,1.4852533333333333,1.4948866666666667,1.810075,4.389105,2.122495,4.564005,4.56752,4.50276,6.184,5.05495,4.23245,6.096075000000001,4.020168095238096,0.7909390909090909,3.1214,4.21436,3.775845,0.47610454545454545,0.935698,3.136435,3.996295,4.77353,3.989095,3.2493250000000002,2.749845,4.420775,1.7237120000000001,2.579225,4.398125,4.238755,3.189765,2.760765,3.360365,4.500315,2.71711,5.2233225,0.9319660000000001,2.969235,2.74563,4.386625,4.402575,4.49349,2.2645600000000004,2.61042,3.052905,1.90615,5.10455,3.39567,1.3635485714285716,2.623465,3.8388675,1.50458,6.128275,1.8601759999999998,2.544826666666667,13.54126132388664,2.998606666666667,1.64299,1.6371650000000002,2.1237533333333336,5.5963683333333325,1.6180879999999997,4.131192666666667,0.6704492307692308,3.3683666666666667,4.13443,7.65893,2.622743333333333,2.833683333333333,2.833683333333333,4.70386,4.066985,3.512405,3.310375,4.65286,5.05475,2.471825,3.1463699999999997,4.35547,1.2148283333333334,2.21251,4.57295,3.656225,3.125775,2.1619366666666666,3.724125,3.3646,5.940966666666666,6.3621125,0.641302,4.01514,3.213665,3.7922333333333333,4.372445,3.85637,3.822875,1.400666,4.87309,2.427955,2.80776,4.169565,4.375215,4.488725,0.9252041428571429,2.5894366666666664,9.240638666666666,1.5509333333333333,2.211924155844156,2.3497925,3.856355,3.523275,3.323095,0.6643563636363636,2.3496875,1.701925,2.2468425,4.034515,5.341797333333334,2.884894,8.644885,2.380596666666667,2.65234,1.05148,4.311245,5.1185,2.1282,5.767691666666666,2.580635,3.20091,5.3971,4.34942,4.828505,2.32756,1.64965,1.64965,2.659885,3.31994,4.741678333333334,1.640865,5.701216666666666,1.3922566666666667,3.642965,1.2344983333333335,8.6320175,4.738945,2.70014,4.20482,3.74191,3.92962,1.1167783333333332,1.981355,3.3706,3.09596,3.2603833333333334,3.8021333333333334,3.765085,2.82404,3.210405,3.31381,1.6664675,2.5289800000000002,1.93035,2.9124166666666667,1.89611,4.999173333333333,3.2420666666666667,1.8561866666666667,2.7369033333333337,3.275115,3.097335,6.46125,6.105,2.98985,3.588835,2.96211,2.983685,2.698215,1.2106566666666667,1.036552,6.336635,3.12147,5.94615,4.86783,6.48065,2.977815,2.838086666666667,6.5098,2.536285,0.4058938888888889,5.7277,3.078845,3.745415,3.5066333333333333,1.4756857142857143,3.967385,1.06426,4.50265,0.87310625,1.3561666666666667,2.995573333333333,2.4164933333333334,2.780373571428572,3.42151,4.54742,6.137873333333333,6.137873333333333,4.82393,4.82393,4.691345,2.9877933333333337,4.47718,0.9617625,5.7064,3.610665,3.544366666666667,3.872055,3.89642,4.86715,1.9417375,4.894225,3.1774620000000002,2.847825,4.259535,2.537825,4.82106,5.1153,3.57054,3.28868,5.15725,4.182285,6.0078,3.060375,2.6210033333333334,5.7169,4.133085,2.85237,5.999063333333334,1.6086566666666666,2.1466775,4.586865,4.320705,4.98474,3.83257,1.9825575000000002,1.9825575000000002,12.91419075793651,12.0175,5.0128,3.18278,2.9329520512820517,4.26679,4.6209,2.57315,3.3338666666666668,3.10204,4.347066666666667,3.7216,5.06685,2.261475,8.26099,2.38275,1.98847,5.7613,2.30292,5.0563,4.57758,4.728825,0.7264022222222223,3.301605,3.64014,1.034964,3.09391,3.822679166666667,1.4277760000000002,1.91408,2.78904,2.6413933333333333,2.0671133333333334,3.1631366666666665,2.0899233333333336,0.4000307142857143,2.5402766666666667,2.9406133333333333,2.7867866666666665,3.1576833333333334,1.46654,3.0796733333333335,6.99661,4.304745,2.273136666666667,2.0408866666666667,2.608633333333333,3.74151,2.52447,3.4529835,18.38335,5.6855,3.435125,4.616865,3.762475,5.307918333333333,1.5221833333333334,5.96595,1.4567816666666669,4.763935,4.44377,5.5453,4.867045,0.9705142631578948,6.64525,2.48742,4.821415,2.837385,4.292865,3.39659,2.840805,2.1742733333333333,1.53711,1.837765,4.37153,4.65184,2.355085,1.608695,2.953343333333333,4.06756,2.8516966666666668,6.4149,2.1661025,3.627145,4.731415,3.7911,3.764815,3.2579,4.090015,4.85386,4.02581,2.49021,2.49021,5.928577777777778,2.0592266666666665,2.4810033333333332,3.922185,1.7881399999999998,7.43788,3.7036,3.980103333333333,4.337366666666667,4.262165,1.846512,4.080945,5.6376,4.013745,1.9984125,3.571345,3.35236,1.13835,1.25548,1.2389333333333334,0.7048549999999999,1.7576,0.9093566666666667,4.605205,1.0044944444444444,2.593253333333333,1.6954833333333335,1.6459325,1.0043433333333334,1.93943,2.308295,1.5048075,3.0198699999999996,2.6617833333333336,4.416851666666666,1.4294616666666666,2.5956,3.12439,2.990816666666667,2.3145866666666666,4.31042,4.58715,4.914172499999999,19.541472666666667,2.6812133333333334,2.20955,0.6376146153846154,0.623041,4.06567,1.9448940000000001,4.007615,5.37365,6.992987333333334,3.789005,3.523135,4.09612,3.1137,3.182593333333333,3.1950566666666664,3.8721,3.216506666666667,6.5193,3.637615,0.93309,1.124905,5.3616,3.1570633333333333,2.5356166666666664,2.151616666666667,2.29759,5.7139,4.827245,2.303165,2.492523333333333,3.363175,4.65425,8.324603333333334,4.925387708333333,4.10691,4.071805,5.28095,4.693575,4.04122,4.624175,3.844855,5.09365,2.196565,5.71545,1.6025428571428573,5.0019,0.72528,4.74701,5.42255,6.1524,6.10075,4.52699,5.8307,5.7325,6.1702375,1.8890500000000001,1.4961714285714287,5.5388,3.63777,5.931051666666667,5.0209,5.4156933333333335,5.04965,6.33125,1.2875114285714286,4.31369,5.18865,4.1361,4.68767,5.48985,2.6431,4.05318,2.927475,4.19925,0.9923000000000001,1.5930799999999998,1.390076,4.839835,4.069115,3.233025,1.9276933333333333,2.963673333333333,1.6792866666666668,2.1498399999999998,0.4099258333333333,3.5996,1.606704,2.2965383333333333,2.86365,2.41911,3.1135,2.67205,2.4217775,10.181953333333334,3.765,1.787891153846154,3.385035,0.9454636363636364,4.5293575,1.2025175,1.6512325,1.869155,1.04662875,5.599580666666666,1.1673205555555555,1.1673205555555555,1.1673205555555555,3.0076,1.897948,4.93149,2.98395,1.359315,1.6048075,1.927905,1.3404125,1.860864,5.310218333333333,0.8306977777777778,4.18985,4.318255,3.11969,0.9824914285714286,2.1819305,1.753475,1.753475,1.4678566666666668,3.6593033333333334,4.21589,4.98244,5.70215,4.267555,5.3141,2.8146400000000003,1.94301,2.880855,5.13975,3.26235,3.8472,1.03793,3.9140525,5.5097,1.90351,4.140975,3.13648,4.686005,4.489725,2.682905,6.98985,6.38775,3.786725,4.50866,4.246475,3.239325,8.09889,3.97201,5.25746,3.42455,2.68129,5.34345,2.6940500000000003,5.67205,4.583775,2.7445166666666663,3.222315,3.887505,1.5121633333333333,10.579075,3.848025,3.15895,15.265987777777779,4.310725,1.8191966666666666,2.8481133333333335,2.132435,2.34449,3.311155,2.5698006944444445,2.680995,2.739575,2.97402,4.16234,5.577075,1.3218466666666666,1.99006,4.334745,4.12872,4.944675,2.3450175,0.5861913333333334,4.54112,4.31367,1.976755,1.4178166666666667,4.56182,4.11191,0.81394,3.746325,12.614711666666667,1.284406857142857,0.38551785714285713,3.4675,4.369196666666666,1.0895966666666665,3.50319,4.058915,6.055813333333333,1.1969283333333334,3.21345,3.741175,3.346505,4.507055,4.27537,3.894965,8.82012,3.26311,4.48772,5.3323,15.944655,3.3899299999999997,2.848225,1.17177,2.238585,1.2271325,2.02066,1.31737,2.0277125,1.65043,2.008655,2.44453,2.31999,2.11902,5.445,4.2998,5.8379,3.17471,5.525608333333333,2.705133333333333,5.2591,3.491766666666667,1.2837375,3.53714,2.022815,2.7957893333333335,4.604695,4.52379,4.9294,4.320195,3.457266666666667,3.7931333333333335,2.5296600000000002,3.672215,3.911535,2.374785,1.69183,3.552566666666667,4.152405,3.75268,2.4804566666666665,12.694933333333333,0.7157866666666667,2.67813,4.45018,2.4921189999999998,1.0438779999999999,2.713585,7.348836666666667,7.172303333333334,4.313535,3.82491,4.17025,2.11228,2.229595,2.9082866666666667,2.1414566666666666,3.76273,5.0828,4.2166,0.49233733333333335,6.32835,3.2213933333333333,3.29265,3.5925333333333334,5.97465,8.73080425,4.3033529999999995,1.00680625,2.1887025,2.38557,3.75385,2.56742,4.24098,4.25531,3.3859666666666666,2.605163333333333,4.10096,4.161775,3.81388,4.314,1.6274766666666667,4.147715,5.4015,5.6538,3.0256900000000004,1.93144,2.2228233333333334,29.82346235897436,1.44605,1.44605,2.449456666666667,5.077463333333334,3.813195,4.58819,3.07684,2.86478,4.92957,3.1123766666666666,4.119145,3.1123766666666666,3.544395,1.9143266666666667,1.6206966666666667,5.83905,2.6923,4.684625,3.208715,2.685045,6.532103333333334,2.072243333333333,4.82924,5.0903,3.511685,3.225515,4.725205,2.01396,5.0944,3.6777025000000005,7.003375,5.6084508333333325,2.860425,3.8733,3.845985,2.10452,2.53296,3.5993666666666666,0.4134078571428571,3.1306966666666667,9.950386666666667,3.973955,3.421865,5.13025,3.1230325,3.05991,1.30101,4.05896,5.4022,3.2921,2.1932,4.212005,3.32476,4.31381,4.458915,2.89415,2.89415,4.08125,2.71733,2.590146136363636,1.903295,4.73674,4.072095,0.9741357142857143,3.514225,4.867235,2.782923333333333,6.7966225,7.64255,1.47701,4.34296,4.780335,6.654484999999999,0.67271,7.698043333333334,3.3728999999999996,0.5957318181818182,5.315,5.229,4.70675,4.278625,4.66624,4.337085,4.960145,3.78276,3.92064,4.136965,5.37875,4.76904,4.657735,3.83853,2.43945,3.93005,2.78134,1.00623,4.41936,2.433765,1.67911,4.404985,4.31926,5.66095,1.0222128571428573,4.976744999999999,2.914625,2.704493333333333,1.6148625,1.37123,11.412621666666666,2.3297466666666664,2.820603333333333,1.9564199999999998,3.7880409523809524,5.300113333333334,6.002675,2.682586666666667,1.9667899999999998,2.15032,2.15032,2.15032,1.41809,3.81954,3.86081,3.4561,4.544305,8.05791,4.00949,1.1570360000000002,2.47211,3.14295,2.24655,1.863134,4.18499,2.541815,1.3417466666666666,3.04547,5.394138571428572,5.992055000000001,4.054905,4.178495,3.00313,4.982255,4.65361,5.7124033333333335,1.86579,1.86579,3.874795,3.855865,2.5510676666666665,2.5510676666666665,3.737665,1.1790514285714286,4.88677,3.28409,4.074195,3.80109,3.95998,3.2508033333333333,1.0055242857142856,4.32543,5.005,4.317735,4.557725,4.93537,4.858605,4.300795,1.9366325,1.4938875,3.467065,3.76147,3.23751,4.39331,2.25181,2.7124625,5.25255,2.93742,5.02085,7.14445,2.2383145833333336,3.083095,4.410431904761905,5.009437500000001,1.69354,2.098817857142857,1.083025,2.098817857142857,1.5033733333333332,1.5033733333333332,1.561538,4.952505,3.194095,3.388525,2.477485,3.84246,1.5139500000000001,5.25775,3.22284,1.6977625,2.8934433333333334,3.45735,3.345555,6.250543,4.740285,1.207014,0.9943383333333333,3.51807,7.39757,2.38902,3.569,3.17053,3.17053,2.326315,3.50013,3.15363,1.382957012987013,3.07677,3.128115,2.69655,4.216485,3.8777725,1.601975,3.535505,4.35068,4.76707,5.09345,4.23516,1.687215,2.25931,1.2844733333333334,2.2497025,3.266095,1.85979,4.42719,3.2366233333333336,3.46824,4.10434,5.13525,1.198605,0.9550560000000001,1.8148666666666669,1.37761,1.1991555555555555,4.94303,4.028495,1.10532,0.2925391304347826,0.2925391304347826,0.2925391304347826,3.692285,5.711069999999999,4.529105,5.3196,4.970785,5.11805,4.540015,4.47727,2.883255,3.55261,1.64279,4.8766,3.972855,3.9067,4.331715,4.14543,0.6876981818181819,0.6876981818181819,0.6876981818181819,0.6876981818181819,0.993936,0.993936,3.90403,3.929865,3.668885,2.754185,2.67948,5.9797,4.80688,5.55285,4.31857,3.0960566666666662,2.5495366666666666,10.197,1.569988,1.569988,3.90783,5.41495,3.2519533333333333,0.476514375,0.476514375,0.476514375,0.476514375,0.476514375,0.476514375,4.650741666666667,4.846565,3.617585,4.44919,2.913654166666667,2.913654166666667,2.731785,3.24848,2.4953233333333333,2.778955,3.465035,7.006076,1.403066,4.48434,3.37378,3.886685,9.092825,2.1662733333333333,2.684445,0.9690728571428571,2.01092,4.99328,2.88688,0.8609675,2.827053333333333,3.93349,5.51045,2.595625,4.6051569444444445,0.8379811111111111,1.9549899999999998,4.975855,4.705935,2.771949,2.43467,2.074263333333333,1.3605066666666668,6.973038333333334,3.3598,1.9275966666666668,3.234685,2.6954883333333335,3.45466,3.701305,2.7039066666666667,3.146433333333333,5.872,1.4430416666666668,4.356055,5.26585,3.368575,3.93896,1.9758466666666665,2.996265,3.779735,3.724555,2.904685,4.96079,4.65141,2.7390933333333334,1.8985,2.8814566666666668,2.793723333333333,2.881866666666667,0.7767172727272726,2.17038,8.05691,0.46536625,3.1065833333333335,1.6032966666666668,2.5951733333333333,3.3055299999999996,2.7049633333333336,1.222811111111111,1.7490960000000002,2.701086666666667,2.10404,3.698605,2.0073,2.6345300000000003,1.4146066666666668,3.2517780000000003,1.98967,1.1391257142857143,2.9036500000000003,2.0697475,2.357153333333333,2.6781900000000003,3.1213233333333332,3.0664599999999997,3.4552333333333336,3.05637,2.869476666666667,3.217306666666667,2.76928,2.717475,1.6245966666666665,2.2503333333333333,2.485063333333333,1.63074,3.0788433333333334,3.870455714285714,2.8739966666666668,2.35727,2.8814533333333334,3.6346333333333334,4.658495833333333,2.9399766666666665,1.935097142857143,1.935097142857143,2.3563775,1.082525,2.4797175,3.3466766666666667,4.5952416666666664,2.820325,2.0317525,2.1085575,2.073345,3.80417,3.140875,4.03669,3.63541,1.7851325,2.36703,4.09557,1.1589880000000001,1.1589880000000001,2.06424,0.6448692307692308,2.3866746153846154,1.60857,1.60857,2.708743333333333,2.4815066666666667,3.003363333333333,2.5944766666666665,1.968925,5.7421500000000005,3.9412000000000003,3.9412000000000003,3.71836,3.11067,2.28177,3.06562,2.54491,2.77865,5.1784275,0.47719666666666666,0.7040230000000001,4.188195,2.58157,2.932275,6.524078333333334,3.544975,1.627064,5.117276666666667,4.85049,4.296205,4.325325,5.4133,5.0163,13.200918999999999,3.3578,1.5617066666666668,2.922005,3.92728,5.19495,2.893765,3.989735,4.15609,3.685425,4.02912,2.7859433333333334,2.95351,2.6393166666666668,2.4321633333333335,2.4321633333333335,4.00849,2.750565,3.299765,3.426265,2.3161,2.530645,2.16347,1.932225,2.0005775,2.1057725,1.7179225,3.4077985,3.52031,2.76921,6.95753,3.26192,2.2541800000000003,1.8403666666666665,3.446925,3.881335,3.56095,2.9538585416666665,3.375175,3.16106,4.30635,3.63109,3.92804,3.990485,3.578048,3.63679,0.6568616666666667,0.6568616666666667,0.6568616666666667,3.49743,2.358235,5.5784,2.67184,3.815335,7.118267407407409,2.8709633333333335,0.3527480769230769,5.27525,0.759097,4.3241128571428575,1.98873,3.8111,1.968415,4.02546,5.131085,4.277485,3.78536,2.7716499999999997,2.8420233333333336,1.4875216666666666,2.4820933333333333,0.40135736842105263,0.5325529411764706,2.61404,1.3973533333333332,1.91724,3.86555,2.61385,4.93091,2.7569,3.0019983333333338,3.54665,5.28509,1.74718,0.9182271428571429,2.46094,3.688952,1.181482987012987,4.83821,3.96726,3.738065,2.7615866666666666,4.192515,2.6143199999999998,2.4796066666666667,2.2972433333333333,2.544475,2.5165866666666665,2.1806075,3.3501333333333334,2.43846,5.558351999999999,2.0433025,2.06241,2.14419,5.026172,3.242204,3.242204,2.4506799999999997,3.985685,2.37644,3.35468,2.98907,0.5593346666666666,4.38878,1.8709425,11.685635555555557,7.19691,2.908035,3.125285,3.40717,5.19938,2.81714,3.40368,0.23255733333333334,2.00886,3.6041000000000003,0.8417666666666667,3.89255,1.3041628571428572,4.8882,3.31355,2.975925,3.25247,3.479275,2.26519,4.576725,3.758215,3.40474,6.60387,4.371385,2.9248833333333333,3.0887766666666665,1.626236,1.995595,4.17567,3.466675,3.763185,2.408015,3.56203,1.41643,2.988075,2.6023,3.6035,10.335621666666666,3.730745,5.4635316666666665,3.933035,4.10468,1.0193955555555556,4.589214,4.657065,2.66009,2.6677433333333336,2.65959,3.3269466666666667,2.3896166666666665,1.7551666666666668,1.90467,3.580245,1.56327,2.5969366666666667,5.1310080000000005,2.6799999999999997,1.115049642857143,1.115049642857143,3.66945,3.0482259999999997,3.0482259999999997,3.545033333333333,2.8233,3.10795,3.8508,3.4111666666666665,2.708693333333333,2.379086666666667,2.4750466666666666,3.14756,2.260405,2.44122,1.670084,5.799754,8.641389,0.5475961538461539,0.5475961538461539,0.5475961538461539,0.6176177447552448,0.6176177447552448,0.5475961538461539,2.94665,2.982696666666667,4.171036666666667,1.3992633333333335,1.7905175,3.292262,2.4929633333333334,3.10793,2.3491566666666666,2.9263066666666666,3.316126666666667,6.832935,3.131206666666667,2.4009899999999997,2.9641266666666666,4.780725,2.28014,3.4206,6.16197,2.3863600000000003,3.391966666666667,1.3713616666666668,1.3713616666666668,2.8105433333333334,0.5078963157894737,2.345146666666667,2.6685933333333334,2.8001966666666664,3.202123333333333,2.2708733333333333,1.6018433333333333,2.688423333333333,2.7936533333333333,2.25196,4.429225,2.3890013333333333,3.456265,2.48935,3.359725,0.49246100000000004,7.117983333333333,3.003024,3.003024,7.688306944444444,1.7949933333333332,1.87216,3.23766,4.41966,2.3893766666666667,1.9730100000000002,2.705496666666667,1.41189,3.472933333333333,1.69668,2.9997325000000004,1.4177775,0.280845,0.280845,4.946225,3.92063,3.69929,2.760006666666667,2.656295,3.3695,1.3013133333333333,5.48905,3.94891,3.03905,1.8407075,1.1586725,2.3929,3.23766,2.639465,2.126165,5.716995000000001,3.74244,4.385775,3.73404,2.4771,0.6891725000000001,7.3631325,2.034075,1.5498575,3.530025,3.779645,2.23075,1.7481499999999999,4.573645,4.201855,3.069433333333333,3.10648,4.110385,4.185945,3.6900333333333335,2.5295240000000003,2.5295240000000003,3.9686,4.77106,5.5007,6.175913333333333,2.608893333333333,3.921795,1.5277999999999998,2.70315,5.522315333333333,3.77937,1.864482,5.4091,3.468905,3.48435,1.945915,4.13882,4.46678,4.51563,4.59151,2.445326666666667,2.4845433333333333,3.7088666666666668,2.04471,2.633425,2.60844,2.4673700000000003,0.689194,2.25488,2.742736666666667,1.760729,4.30638,4.44678,4.56712,3.87621,3.366145,4.9600575000000005,12.032865000000001,4.660145,3.770075,4.346055,3.860135,4.711265,2.277766666666667,3.1437333333333335,3.5145999999999997,1.18125875,2.848235,2.932475,4.58885,5.5294,4.29903,3.503966666666667,3.08977,2.3050466666666667,4.2703999999999995,3.9774125000000002,3.7441999999999998,3.9774125000000002,2.1577845,2.31056,2.412428333333333,2.1189875,2.5085966666666666,1.8119233333333333,0.7901416666666666,1.312485,1.9997766666666665,2.02527,1.6580000000000001,1.4110066666666665,1.76495,2.72612,1.538312,3.0233899999999996,1.29885,1.5486533333333332,2.718445,3.1803899999999996,2.55081,2.004586666666667,2.408326666666667,3.254,2.31893,2.9716733333333334,3.21515,2.48897,3.123693333333333,2.992465,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,5.0619,2.97412,1.0274342857142857,3.10501,2.6287233333333333,2.8570333333333333,3.66042,3.16212,4.79965,3.4339226666666667,1.454946,3.1085266666666667,1.8363833333333333,0.97859125,0.9372450000000001,1.5988499999999999,0.9142283333333333,0.766765,1.330844,3.24733,1.59818,1.6006683333333334,1.8926222222222222,2.3565183333333333,1.3777483333333331,1.2662433333333334,1.5353233333333334,0.9341849999999999,1.2722616666666666,0.7478616666666666,0.9323460000000001,3.435725,3.57158,4.275415,4.555295,4.10086,3.1426833333333337,4.82531,3.5808,2.01507,3.413025,1.9771725,3.59093,1.9913066666666666,0.8245436363636363,4.181755,4.891755,2.1025233333333335,1.2905275,3.060345,3.36511,3.6593033333333334,3.0013666666666663,2.79567,0.9042975,2.297505,5.04521,3.753395,2.806635,1.54376,3.78302,1.9026075,0.5768718181818181,4.43138,4.710145,4.293585,2.278295,1.443454,3.11992,4.51268,2.6453666666666664,2.5627766666666667,2.4777,2.680213333333333,2.7797133333333335,2.8636666666666666,2.9247566666666667,1.283175,2.514775,2.56747,5.0455,4.403605,3.68029,4.67714,16.143660180555557,4.3459725,4.515557333333334,2.722265,4.24167,5.1497,1.5646280000000001,2.010545,2.3856433333333333,5.470185,3.26806,3.15799,6.17415,2.3856433333333333,3.927645,1.988315,2.052563333333333,2.972773333333333,2.6606533333333333,1.2426133333333333,4.284505,3.365815,2.45814,4.2866,2.4037866666666665,3.293676666666667,3.77895,3.45963,4.252525,3.81607,2.70184,3.55904,2.71168,2.48767,1.25763,1.25763,3.1428933333333333,2.16494,0.3873214285714286,4.972349,0.9203239999999999,2.809835,3.612095,0.5657033333333333,4.45651,8.331484999999999,1.8872025,3.681035,3.59029,2.9371566666666666,3.406105,2.349445,3.001175,3.589175,4.21072,3.075615,3.968,0.9887166666666666,11.759109333333335,2.76117,2.943845,6.0577,2.6235,3.92926,7.638011666666666,4.10985,3.76628,3.49428,4.24286,5.5273475,1.6385225,2.64272,4.70299,3.8467333333333333,1.867286,3.892075,3.64053,3.689595,4.00946,3.982595,3.708225,2.4923533333333334,4.450985,3.767595,5.0758,3.262155,2.2098833333333334,2.4334633333333335,2.08646,3.0607933333333333,1.3305733333333334,3.8173666666666666,0.876890909090909,3.229573333333333,3.1581799999999998,2.6700199999999996,1.550885,4.261095,3.894965,4.25031,1.8943525,4.59594,3.82737,0.7521807179487179,0.3522053846153846,4.20139,5.3746,0.9134925,0.3522053846153846,4.35757,0.7521807179487179,0.7521807179487179,0.3522053846153846,5.829868333333334,2.4920433333333336,2.419216666666667,5.52165,2.994045,3.12767,0.8068166666666667,3.213515,3.87705,4.716785,5.7591,2.120675,0.7031253846153847,4.1423974999999995,2.0558133333333335,1.265406,1.7702475,1.0186885714285714,2.2412566666666667,2.2267933333333336,3.293845,5.1664,2.6776866666666668,2.954553333333333,2.887723333333333,2.2866,3.06695,4.5086312500000005,1.660555,1.9746075,3.982185,5.0255,2.141770277777778,5.2973,2.578365,4.03548,4.10954,3.07642,1.2120175,3.395215,6.78565,3.82161,3.499745,5.12925,6.3957,2.407695,3.38742,4.616365,3.29429,3.453955,8.24227,3.85086,4.649935,2.38851,1.0874325,2.45518,1.87377,2.163395,1.91216,4.146345,0.6305,3.19381,3.92322,1.87629,2.841606666666667,5.20605,3.572885,2.820665,4.358455,5.22455,9.093910333333334,2.6357033333333333,2.4869600000000003,1.7068439999999998,1.3971799999999999,1.2589599999999999,1.41472,2.5798200000000002,2.63037,2.8456466666666667,4.373756346153846,1.6924025,2.205416666666667,5.04485,5.11335,3.699755,3.422625,3.073105,2.582385,2.125915,2.097375,2.211466666666667,2.076015,3.04728,3.69994,5.01015,5.07915,3.63321,5.3057212499999995,3.386655,2.574035,6.30800125,3.225075,8.745000000000001,4.897785833333334,4.897785833333334,5.689636666666667,1.73004,1.406855,1.61491,0.72683,4.9012,3.8109,3.2793799999999997,3.2793799999999997,2.09074,4.32788,4.453195,4.29474,4.05198,2.9055033333333333,2.71252,3.609135,3.0609300000000004,5.157064999999999,3.456265,0.753290909090909,4.89258,4.98484,4.02961,5.07085,3.313625,6.1518,4.065395,0.8470923076923077,5.28295,7.535606666666666,3.12481,5.75275,5.79015,3.384585,2.599865,3.795885,6.01635,2.0981125,5.7647,1.8627375,4.39449,2.596553333333333,2.2872975,0.9319660000000001,3.106775,5.77965,3.604975,3.48958,2.0153333333333334,4.71423,7.949286666666667,3.468215,4.308705,2.553815,2.59466,0.845373,4.473025,1.4695766666666668,3.4099225,3.4099225,3.70209,2.3269266666666666,2.9197066666666665,3.763715,1.66019,2.9317100000000003,3.316796666666667,3.3668333333333336,2.94598,4.12072,3.23853,1.763495,3.2944333333333335,2.144945,3.07977,1.9431,3.03513,3.0244666666666666,1.4198042857142856,1.8390366666666667,0.505075,1.2914833333333333,0.505075,0.505075,1.8390366666666667,0.505075,3.3480000000000003,2.821744,2.821744,2.7403633333333333,3.89718,3.781805,4.206095,5.248,5.2788,3.53728,3.870615,3.841125,1.866205,2.380574166666667,2.26052,0.793909090909091,5.3593,3.035603333333333,3.0902133333333333,5.64705,3.64202,5.01565,3.373635,2.59043,3.012815,3.4223,2.616983333333333,2.892253333333333,2.0156199999999997,5.16875,0.87282,3.84916,1.1083771428571427,3.36082,3.1308900000000004,2.7784566666666666,4.05013,4.06354,3.697405,4.496635,3.954445,3.647645,4.39787,4.29014,2.4056525,2.660825,3.2162966666666666,4.1689,2.717185,3.25037,2.69827,3.13481,3.3996999999999997,3.39956,4.69264,4.602585,3.95599,68.31143630824731,2.7835575,3.86224,16.518111666666666,4.008165,3.1060866666666667,2.2395,1.8776266666666668,2.67084,4.2528749999999995,2.9338466666666663,4.124915,5.55305,3.4684,7.825415,5.4098,2.62403,3.106665,3.67599,3.43626,1.886822,1.08874375,4.732955,3.11456,5.925473333333333,3.663095,2.0257033333333334,3.578785,3.463795,4.487205,3.34169,5.91118,4.40533,3.451165,3.02417,2.503875,2.89886,6.27875,2.786715,3.54773,4.360943333333333,1.240955,2.398445,5.2288825,3.06647,3.108105,3.63967,2.712035,4.032685,3.153585,3.04882,2.784245,4.40223,3.26149,2.75993,4.39798,9.85048,3.1842733333333335,4.17331,4.77771,3.31905,2.21851,4.094535625,2.2528566666666667,2.9632799999999997,3.0630059999999997,3.559565,3.345925,2.97632,3.06756,3.304135,4.01553,3.8618,4.25808,3.418815,3.11244,3.819315,2.4510183333333337,2.4510183333333337,6.865713333333334,1.658305,3.25165,3.114645,2.230135,4.623435,4.078085,3.122115,3.249925,6.01275,6.229865,0.6545727272727273,4.304185,2.371015,2.885343333333333,2.5057233333333335,5.19115,2.6913766666666668,2.048475,1.125815,2.05086696969697,4.282675,5.0804,4.11402,5.88215,5.6298,5.7178,2.526045,1.9584733333333333,3.822095,2.64072,2.8472866666666667,1.9831666666666665,1.3119116666666668,2.59945,3.3368,1.63224,2.3496900000000003,2.4063742857142856,3.372316098901099,2.88092,4.96569,3.31558,1.38434,2.706735,3.40201,5.49805,4.85577,5.6477,4.836535,1.94372,1.5448666666666666,0.6024014285714285,1.5720933333333333,3.591395,2.668545,3.68426,1.47577,2.473,2.326745,3.360555,3.56134,3.821525,3.9653083333333337,1.6441025,1.423915,1.922545,2.0899825,1.42455,2.445925,6.680173166666666,4.86339,3.6719,2.726775,6.99023,4.517805,3.172965,3.065035,3.40325,2.60714,3.9436,2.2722633333333335,7.25427,0.9237799999999999,3.04461,6.77185,3.856165,4.58897,6.24045,1.5209233333333334,2.968946666666667,2.92266,2.82043,1.43457,4.134205,8.89318,3.08275,5.11535,3.97666,3.21058,4.8152,0.9116066666666667,2.8221633333333336,5.1897,6.29006,5.1943,5.8307,3.18001,3.7552,2.58926,4.904995,4.96506,3.9220935714285714,3.9220935714285714,0.6288585714285714,3.5315666666666665,0.9545,0.7600250000000001,1.7400875,3.628633333333333,3.27103,4.667828571428571,2.629253333333333,3.0577645714285717,3.119935238095238,2.7356266666666667,3.1133866666666665,4.614033333333333,3.025173333333333,1.798735,1.798735,3.964465,3.1082066666666663,2.7266666666666666,3.46524,3.397733333333333,0.5491199999999999,3.3371333333333335,2.4302033333333335,2.3998233333333334,2.7238566666666664,2.6081,2.5912566666666668,3.2015833333333332,2.8314133333333333,0.8029299999999999,2.5646566666666666,6.2870974761904765,2.0780000000000003,7.439148666666666,1.615692,1.615692,3.42045425,3.4285,3.2013200000000004,2.732506666666667,1.7206959999999998,1.3200214285714285,3.262513333333333,3.3815666666666666,1.42941,1.5357714285714288,2.8229399999999996,2.58682,2.66369,1.73119,1.887325,2.65927,2.280025,2.907615,3.5273,1.74454,3.747325,3.052625,6.871339000000001,3.304345,1.6578075,3.028965,2.65034,2.287235,4.004,2.4329633333333334,2.625985,6.8577925,0.8398153846153846,0.7155208333333333,4.509685,1.3909340000000001,1.3909340000000001,3.893885,2.34267,4.3662,3.299025,1.3279866666666666,2.3941866666666667,2.83743,2.4292166666666666,5.13825,4.93992,2.595876666666667,2.0154366666666665,1.2678842857142858,1.2678842857142858,1.9668433333333333,3.874205,4.085233333333333,5.53365,3.0774333333333335,4.766735,4.088915,6.60025,4.23475,2.563575,2.804273333333333,2.6743366666666666,2.63257,0.7529655555555556,0.7529655555555556,0.7529655555555556,3.09476,4.08891,3.643265,0.96529,0.96529,4.798915,5.51645,6.3432,21.63744938888889,11.2728,7.92325,2.917745,5.6682,2.334975,3.98616,2.527946666666667,3.2256199999999997,3.9543,5.2684180000000005,1.9752,2.12181,6.36162,1.8506879999999999,1.8506879999999999,6.2164,3.194105,4.179135,1.9548725,4.741629833333333,4.17141,3.05368,4.77264,3.47675,1.7618666666666665,5.5541,8.81697,1.7618666666666665,1.9548725,2.1977866666666666,0.7167399999999999,0.7167399999999999,1.8097699999999999,2.3718666666666666,1.8097699999999999,4.10395,5.3597,5.9357,7.76963,1.9548725,11.602146666666666,5.89875,5.5409,2.334975,3.24745,4.16604,8.29079,3.0742683333333334,3.615985,5.7378,3.447205,4.26523,6.0918,4.19421,4.943905,4.438425,2.339775,5.4511,3.33739,4.432935,4.231925,0.795985,1.512152,2.96907,5.31765,4.59389,2.6799999999999997,2.07625,3.93179,4.830215,5.7337,5.21845,5.42285,4.493515,3.49167,4.216635,3.717255,2.1146275,4.9394124999999995,2.090335,2.709645,3.48483,1.5452833333333331,4.042825,3.9206,3.65513,5.3576,2.943755,6.448195,0.9139166666666667,3.495945,2.20944,1.2425342857142856,5.022004,1.36553,1.9263633333333334,2.5545833333333334,2.7260555,2.81568,2.813826666666667,1.7728025,0.7286845454545454,2.17487,2.6039,3.543795,0.6691561538461539,5.41373,1.56361,1.150918,3.1792133333333332,1.150918,3.957605,0.8979627272727272,4.61231,3.09581,1.93455,4.98842,4.507275,4.507275,4.679175,2.4988725,3.0872316666666664,2.8330066666666665,1.46654,3.661055,3.752585,2.02852,0.7020783333333332,6.793294487179487,2.737435,3.95311,3.945285,7.48026,2.196035,4.247025,3.764085,3.197525,3.64077,5.43645,6.38392,4.38629,4.547635,5.20795,2.92685,4.899915,4.25127,4.46701,1.0822144444444444,0.46563928571428576,3.07687,3.362133333333333,2.8073766666666664,5.21645,3.881805,4.24987,4.318335,5.24205,4.464505,4.179875,1.17836,2.273865,8.085660833333334,2.2977133333333333,1.84655,4.062719047619048,11.288503154761905,1.5440825,5.0402,6.40315,5.0736,3.5871,2.2707366666666666,3.2444566666666668,4.253335,1.0950266666666666,3.04983,3.44395,0.35115999999999997,2.03918,4.560865,4.264105,2.424335,4.08824,2.814115,5.023218333333333,1.2342266666666666,0.5288672727272727,3.7889916666666665,1.1548042857142857,1.03474375,1.03474375,1.03474375,1.03474375,1.5889583333333333,2.7807999999999997,1.8223,3.1650833333333335,5.2713,3.5074,5.088,3.762955,4.428555,3.5741,3.96092,1.4438866666666668,6.7192799999999995,2.46733,4.505735,5.2894966666666665,5.37045,5.07391,2.3806866666666666,2.3306766666666667,2.620363333333333,3.311865,1.17131,4.438901666666666,2.6350466666666668,5.0191,2.72228,2.3580533333333333,3.80194,3.44895,2.9522,2.5255,2.6416,1.4990625,0.3948477777777778,4.05276,3.559595,4.19686,3.54206,3.992545,5.6073,4.5499,0.5320976923076923,3.121826,6.998386666666667,1.9845266666666666,1.892034,5.696816666666667,5.84565,2.8024066666666667,4.52127,5.0567,4.208245,3.712805,4.233675,5.17095,5.4772,5.1314,3.63472,5.178482,1.4663119999999998,1.5341500000000001,4.250415,4.005455,3.90235,3.27012,5.40135,5.09265,3.82517,3.374855,15.352487155503672,1.251896586409845,1.0844675,1.812969318181818,0.50561625,0.4434453333333333,1.3997125,0.3198029411764706,1.367526,2.90793,1.749766,0.89235,1.0705425,0.4714,1.0705425,1.0705425,0.4714,0.8277461538461538,0.5584049999999999,2.89699,2.6024966666666667,4.33249,3.610435,2.8065599999999997,2.8063,4.05148,4.572715,4.93992,2.677825,4.184545,0.6863207142857143,2.3207473333333333,7.9940125,4.11489,6.826423333333333,2.63539,4.202095,2.287825,5.15985,5.52335,3.272685,4.34658,3.12109,1.10448,4.092005,4.43613,1.185322,1.22146,1.5493983333333334,2.4515766666666665,1.8573933333333335,5.38065,5.53285,2.28713,2.28713,3.5890730555555557,6.68932,2.1350933333333333,0.6605581818181818,0.7683242857142857,2.1801033333333333,3.22256,0.9151642857142858,0.9151642857142858,0.9151642857142858,0.3985792307692308,1.0271042857142858,2.846475,5.78865,3.715733333333333,4.005323333333333,5.1424,0.989948,3.5473,3.1194933333333332,3.8883666666666667,5.7327,2.3914033333333333,7.241816666666667,4.72258,1.042208888888889,3.747833333333333,1.9134879999999999,2.58835,2.2958433333333335,6.850263333333333,3.2429333333333332,4.39657,2.2699325,4.51209,4.503115,4.581125,0.5265477777777777,1.98764,1.42756,2.6705133333333335,3.9412633333333336,2.071826666666667,2.7786299999999997,2.389186666666667,2.528373333333333,2.5854333333333335,2.8809533333333337,2.7109400000000003,2.7297233333333337,1.37064,2.3104533333333332,1.80855,3.2057866666666666,2.65328,2.194765,1.79145,1.8758166666666665,1.71509,3.08835,2.1701966666666666,2.02658,2.1560166666666665,2.43363,2.3804233333333333,0.789441111111111,0.789441111111111,0.789441111111111,2.27997,2.1812866666666664,3.0113633333333336,2.3742966666666665,2.5265833333333334,1.9890299999999999,3.86128,3.51262,1.33596,2.5176966666666667,2.792386666666667,3.7245866666666663,1.5311000000000001,7.181103333333333,4.492495,3.157725,4.068165,3.46279,1.2970725,0.7807428571428572,2.774755,3.828835,3.7245866666666663,4.28565,4.274085,4.41001,2.92792,3.86226,4.25435,0.922445,2.6736,3.32577,5.019119166666666,4.884195,3.534355,3.06471,2.5674,2.18406,2.382286666666667,0.6534166666666666,5.29717875,2.698675,3.97302,2.7170533333333338,3.7270900000000005,3.1907599999999996,2.44721,3.0374966666666667,3.0374966666666667,2.59261,2.13752,2.641183333333333,2.0320300000000002,4.189125,1.447838,2.517945,3.812405,4.09638,3.98759,5.48725,3.629895,2.32318,2.11013,3.258025,2.96036,2.56713,5.08635,2.602915,1.0375557142857141,1.0375557142857141,4.55869,3.9150709999999997,1.018436,4.600465,1.018436,4.13551,4.73457,4.679105,3.06364,3.35025,6.281025,4.197510833333333,5.6479,0.8330785714285714,0.8330785714285714,2.1101,4.581215,1.57259,3.008625,3.4796,1.1218071428571428,3.70787,3.94485,5.558025,5.558025,1.0824383333333334,5.2169,5.1344,4.89008,6.0651,1.9955175,1.9955175,6.95785,0.9312727272727273,7.1395,2.00928,6.3601600000000005,2.704925,2.4858233333333333,3.346,2.3765,2.1923233333333334,2.170316666666667,2.995706666666667,2.493627142857143,6.333284,1.7596139999999998,4.957635,2.9718766666666667,2.6976433333333336,1.75736,2.20985,3.41024,3.48296,3.451745,2.72708,2.66686,2.203655,2.542675,1.1265800000000001,3.44636,2.437435,3.363805,2.1510185,2.1510185,3.00102,1.80582,3.716985,3.60943,4.89746,6.990898333333334,4.178085,3.4784,6.360942,2.072763333333333,3.3493822222222223,2.2807866666666667,1.508657142857143,1.6936575,4.057955,1.5101916666666666,0.50158125,0.65832,4.40565,4.565035,2.864495,0.94535,2.803895,2.9078166666666667,4.885245,1.6629079999999998,2.01126,1.158111111111111,4.563645,2.43513,4.21036,0.722936,4.024664583333333,3.855575,3.517095,4.39276,3.547405,3.852705,2.8464566666666666,5.2578,3.810075,1.7430666666666665,2.738443333333333,6.019258333333333,6.19914,1.16949,3.57625,4.43136,5.26,3.6967666666666665,3.8442000000000003,2.8292,3.19233,3.775233333333333,6.3228675,2.58682,2.5541905,3.973735,3.158315,2.355805,2.708175,8.4343,4.7487,1.8493333333333333,4.92013,4.800185,1.7935320000000001,3.85422,1.26525,1.4003414285714286,4.4229,3.679255,4.926275,2.5519700000000003,3.0762,3.488395,5.1477,3.70415,4.05996,3.043535,3.94577,3.88319,3.91542,1.1749631538461538,1.1749631538461538,7.35291,0.95049,2.2798886904761906,0.95049,0.7673266666666666,0.39348333333333335,3.047215357142857,2.49294,0.6759628571428572,2.2798886904761906,1.65508,3.079475,2.3712524999999998,3.616585,4.643455,7.025873333333333,2.24399,2.17258,1.8551,4.223585,5.5802,1.87974,1.7790475,1.0004225,2.77947,4.08002,2.70176,4.380505,6.23368,0.4120077777777778,3.757525,0.7006319999999999,2.751943333333333,2.140235,3.59981,1.2545766666666667,4.154295,4.6232425,4.024955,2.68973,3.620515,5.08686,1.69207,3.285275,0.5802669230769231,2.38874,2.493615,1.20018,2.9084733333333332,2.43753,2.5072466666666666,3.862255,8.52892,2.9035221212121214,3.698835,3.4027,7.034800000000001,5.3762550000000005,3.2258266666666664,4.33461,3.50099,5.7496,4.03014,5.1967,4.555205,4.38428,5.04895,3.9813333333333336,1.5649425,1.8902299999999999,2.3021866666666666,3.854955,2.43575,0.19703216216216216,0.19703216216216216,0.19703216216216216,30.589792404761905,0.19703216216216216,3.150432162162162,0.19703216216216216,0.19703216216216216,0.19703216216216216,3.2717121621621623,4.18538,0.19703216216216216,0.19703216216216216,0.19703216216216216,0.19703216216216216,0.19703216216216216,3.06804,5.38743,3.1282,0.19813128205128205,0.19813128205128205,4.314728666666666,4.031287333333333,3.8604366666666667,3.1004443333333334,3.8650961904761907,7.85319,11.371432881895883,6.071343666666667,7.731691333333334,7.688361160714286,2.8105433333333334,6.098087142857143,4.4194233333333335,4.36959689102564,0.19813128205128205,8.054085666666666,6.67556019047619,7.14551,2.802375,9.129992660714285,14.268703065476192,18.23308294642857,56.457490609222475,115.26204628515765,1.3713616666666668,3.391966666666667,3.3312,3.747706033462033,0.19813128205128205,1.6132139743589742,8.787712291666669,14.19849411904762,19.78399222222222,48.02631493880535,13.121047827380952,3.22285,0.23246103448275862,0.23246103448275862,4.606913333333333,2.7507266666666665,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,5.87469,0.23246103448275862,0.23246103448275862,0.23246103448275862,2.63977,1.8402233333333333,3.287325,3.704095,4.615679166666667,5.042,1.97998,4.117975,4.24328,3.29386,1.53182,3.652185,0.9866183333333334,2.284925,2.1532533333333332,5.163896666666666,5.931710000000001,2.78671,5.627907444444444,0.5272222222222223,0.44519933333333334,2.5157166666666666,2.89735,2.988235,3.822825,3.4128333333333334,7.293883749999999,3.782475,3.58467,3.24865,3.94556,3.008895,3.25029,5.78975,1.839545,0.43925615384615385,0.8379490909090909,4.3171725,1.837395,3.67816,3.77159,4.574745,3.38513,2.411995,2.67894,0.61171,0.713305,4.29285,2.685843333333333,5.62095,3.56557,3.687456666666667,2.3783,3.04567,4.96055,3.8034,3.1138,0.7884163636363636,3.1554866666666666,4.425105,2.304035,1.01828,1.5341066666666665,3.927685,6.22005,1.91061,3.05635,3.88421,5.22965,2.80205,2.3944666666666667,2.38686,4.788055,2.48682,4.22872,0.6870385714285714,2.17545,3.42534,1.875285,6.153128333333333,2.953975,3.827545,4.241175,3.07372,2.062225,0.5012445454545454,4.52371,4.678265,6.48415,3.212615,3.755655,4.396555,2.971135,2.73672,1.2154214285714284,5.01045,2.045285,2.792015,8.13845,4.031595,5.0032,3.308045,0.6495733333333333,3.076655,1.2192685714285714,3.30553,6.0076,5.0043,5.04465,3.687485,5.2706,4.43407,1.7252025,1.7401133333333334,5.02535,3.2429400000000004,3.2255766666666665,2.450795,5.2995,4.481345,1.45364,3.4187333333333334,2.86121,2.767765,4.52979,9.36137,4.63731,1.74104,4.665915,6.5324,4.3680725,4.032955,3.743135,3.73446,4.501055,7.68501,2.3759366666666666,3.257255,3.20005,4.228035,2.799275,3.19905,4.911165,4.323905,3.525815,3.891367333333333,18.775861999999996,2.82831,2.713063333333333,3.2988199999999996,5.631373666666667,1.10327125,4.03873,2.1113341666666665,4.94057,1.3045083333333334,4.191415,4.279045,3.68308,0.98756875,4.626495,4.36099,1.75573,4.659252121212122,4.492015,1.0255057142857142,3.649335,2.061535,2.456395,1.55746,4.348965,3.870885,3.914355,3.66876,2.961126666666667,4.250105,7.892776666666666,4.263035,4.473195,4.82176,3.0387866666666667,3.92115,4.733665,6.536998,0.9860239999999999,0.9860239999999999,4.47733,4.95524,2.1643399999999997,1.3552816666666667,7.092915,4.118585,3.38928,3.77518,4.500035,4.40723,3.584565,3.88308,6.748765000000001,3.78179,4.364435,4.78244,1.4270228571428571,2.622275,4.339185,4.39001,3.50830625,0.20210277777777777,1.510995,1.9704525,2.40677,2.1438900000000003,0.9462366666666667,1.3883725,1.333145,2.1521,0.6240555555555556,1.0107871428571429,1.96727,3.957295,4.0145,2.02024,2.5139066666666667,2.8512233333333334,2.812186666666667,0.705988,0.97013875,2.888995,4.58222,4.170365,3.061195,4.49717,4.63688,4.43056,2.01588,4.350395,4.867315,4.41174,6.13499,3.613835,0.47593058823529416,5.27405,4.67053,3.92131,4.942805,3.19158,1.962558,3.69321,4.064955,2.781445,5.367655,4.40762,1.3332983333333333,5.367655,3.906215,6.998875,3.713605,1.1690333333333334,3.893735,5.0441,4.20828,2.4814166666666666,4.633255,1.4150075,1.9656775,3.19535,3.563725,0.8240611111111111,4.59284,4.848485,3.27204,4.050965,3.4785,3.0810866666666663,1.779852,1.5422525,3.192095,3.506735,3.3552666666666666,2.4336733333333336,2.2860425,1.9069083333333332,3.802505,1.3624742857142855,0.8235666666666667,5.60966,3.968835,1.465034,2.52175,2.2279766666666667,2.93517,6.049591666666666,2.2147233333333336,0.8078540000000001,2.601345,4.26511,2.11575,3.61218,5.30205,5.2185,4.56527,4.29734,4.816485,2.1803,2.3259166666666666,1.6910833333333333,2.0966666666666667,1.8833325,2.5163533333333334,2.24114,1.5908825,2.709645,3.06332,3.919285,6.54965,4.45006,4.0946,4.329535,3.993955,3.66771,5.337,0.8682425,3.1823633333333334,4.62534,1.158352,0.642286,5.2423,3.3477,2.6230266666666666,3.6188337500000003,6.2896475,5.2348,0.898655,1.1437071428571428,0.6876744444444445,4.229934999999999,2.3800066666666666,2.839983333333333,1.177962857142857,2.6030366666666667,2.6222,5.6982,4.62766,4.289165,5.14855,4.45845,1.2679016666666667,3.61382,1.6469333333333334,3.51237,3.967525,3.39701,2.5714966666666665,3.2290266666666665,2.6287833333333332,3.101685,4.181015,3.082465,2.48394,8.796265,9.9343925,4.242035,1.329337142857143,5.49775,3.940645,4.736215,4.63221,3.793505,3.83595,3.267555,4.189555,3.624594895833333,4.92851,3.85852,3.647555,4.58203,1.7615200000000002,4.800325,5.83635,4.927495,3.366975,3.290575,7.245445,0.8127566666666667,2.55981,2.83072,2.3688333333333333,5.13155,3.21595,1.2421383333333333,4.07971,3.2665966666666666,3.740575,4.622185,4.031034166666666,6.628019999999999,3.2187,2.97951,3.02083,2.8179499999999997,3.65777,2.0081533333333335,2.15772,3.041956666666667,4.06636,3.7420600000000004,1.9653925,1.516105,3.0346217857142856,3.282226,0.9330477777777778,2.636913333333333,2.636913333333333,1.423035,5.663,3.01759,3.45686,3.467505,3.14124,3.430195,3.36826,3.21965,3.062875,2.2832133333333333,0.5217153333333333,3.21139,5.6637775,3.092755,3.951625,3.151995,4.05113,3.974955,3.15845,2.6488,3.76539,3.7743,2.85771,2.96074,3.43611,2.59638,4.104875,4.01786,8.86729,3.44295,3.61799,3.014825,4.01936,4.131745,3.60759,2.410235,3.69205,2.69829,2.798485,3.003795,3.20806,3.674915,1.7009100000000001,1.7009100000000001,2.323235,2.70181,3.182045,1.569772,2.4629,3.502415,1.880728,2.89893,1.569772,4.53898,3.129945,3.9027825000000003,2.946085,3.5025,2.42496,3.1983,4.00302,3.93537,3.55434,4.461285,3.71992,4.178705,3.692045,3.198095,3.255875,2.98727,3.8632,2.6808099999999997,3.58758,5.35505,4.082345,3.71079,0.2941226086956522,3.47552,0.4594775,3.761885,3.665335,2.91005,3.46247,3.8098,5.795583333333333,3.05069,2.6218066666666666,2.3004466666666668,2.8323699999999996,0.641568,6.852790000000001,3.11464,3.353075,3.846625,2.07532,2.6173,3.251385,3.45963,6.71705,4.65794,4.93632,4.66286,4.323455,4.113675,3.79073,1.4686649999999999,1.694048,3.70928,4.463455,5.4820875,2.4137933333333335,4.74897,2.048625,3.4885333333333333,3.726625,1.8418304761904762,4.141855,4.93294,3.584633333333333,3.7117,2.90287,4.33058,4.483995,3.5123333333333338,4.370785,4.45025,4.77325,4.40108,4.56809,4.08077,3.08021,4.31028,2.536575,3.2447666666666666,3.2447666666666666,4.257155,2.52662,3.94359,2.4589,4.611715,3.2363466666666665,3.48727,2.06848,1.9776166666666668,1.1639716666666666,1.1639716666666666,1.5295999999999998,3.2790466666666664,1.7191933333333334,2.6798133333333336,3.711295,5.070754,3.3829333333333333,3.93265,6.27244,2.62285,2.78987,2.9653733333333334,1.5741433333333334,4.16474,4.055225,6.5443750000000005,1.64125,5.36145,5.4432,3.4756666666666667,3.465495,4.08826,6.61481,1.9047266666666667,2.3172275,3.99665,0.50108,3.73449,4.11486,4.26316,4.4116,2.846305,1.2610519999999998,1.651848,3.94621,3.28208,2.4177733333333333,3.771305,4.718845,5.1825,1.00661125,3.27924,4.571035,3.722705,4.54746,2.53253,5.097713333333333,3.792205,1.586842,3.67263,1.1920183333333334,2.698093333333333,6.730665,3.239455,0.6424390909090909,3.102845,4.029735,3.894475,1.9245375,1.9245375,5.002585,5.6508,2.930205,0.49624333333333337,1.9229325,4.38396,4.07417,4.593625,1.78962,2.9858499999999997,3.43203,1.3304492105263157,1.3304492105263157,1.3304492105263157,0.8698783771929824,1.3971800438596491,0.5273016666666667,1.3304492105263157,0.8698783771929824,0.33298421052631577,0.8602858771929824,0.33298421052631577,0.5368941666666667,0.5368941666666667,0.5368941666666667,0.5368941666666667,1.1068885,1.03975375,2.4175833333333334,2.331763333333333,1.0894033333333333,6.413263333333333,2.7398133333333337,6.31785,2.9076799999999996,3.84727,2.918955,3.48835,2.7393783333333332,4.604005,2.8302533333333333,3.915755,4.113505,4.791655,2.05227,3.86913,4.76861,4.107035,3.023195,4.933755,3.31387,4.499405,5.4266,5.2112,6.26305,5.27445,1.08776,4.71084,3.788015,2.913105,14.855975,4.559445,4.94023,2.6869833333333335,7.61526,4.08619,4.513155,4.56151,3.10671,1.1083825,2.61297,3.791535,4.218645,3.378705,3.368145,4.13029,2.89996,4.32582,4.55463,4.162125,6.490255,7.215443333333333,1.222877142857143,3.748425,3.95644,4.17274,3.492875,3.681755,7.17395,2.83921,2.899555,2.623435,4.009025,3.95926,4.66772,2.44867,1.779235,0.8621380000000001,4.287635,3.57151,3.627655,3.690555,3.431925,5.0191,3.99692,6.55695,6.0125,5.1057,6.649,3.85418,3.252675,3.230485,3.53152,1.814005,4.85058,6.4152,6.70625,5.764773333333333,5.764773333333333,2.53935,1.814005,2.185505,3.05849,0.7158000000000001,1.54969,0.83389,1.389055,2.62098,0.378726,2.88911,4.10527,1.389055,2.9031529999999997,11.0184025,6.6256900000000005,2.2138869999999997,0.9956200000000001,1.92465,4.55622,4.371815,5.516517142857143,1.9807325,2.234465,3.72443,3.374425,4.444,1.6372733333333331,5.20575,3.4228,2.990145,5.01975,7.130746,3.91875,2.4314875,2.7932366666666666,1.57644,3.891825,5.07081,1.742764,5.72365,4.415965,5.963775,0.49152799999999996,4.4033299999999995,4.486605,4.60046,2.602305,2.86428,7.26155,9.06535,6.4819,2.25405,2.25405,2.25405,5.2316,4.8171,6.4859,3.398545,2.76536,2.5545086842105262,4.267755,5.4837,2.6469129999999996,1.832975,2.6469129999999996,7.198853,4.807313333333333,4.898567380952381,7.57567,4.898567380952381,4.898567380952381,3.679265714285714,7.02955,5.535098,2.846888,2.846888,2.6357,7.01945,2.96081,3.574375,5.5269625,5.5269625,5.5269625,7.61672,3.6642025,3.54401,3.707225,3.5709475,0.8397625,7.417226666666667,2.6099133333333335,6.69335,3.614595,13.138934333333333,4.87328,5.460756666666667,7.03984,2.5951583333333335,3.49514,1.1275033333333333,5.460756666666667,3.430385,1.7054275,1.7054275,3.083065,5.433816666666666,1.80477,4.935876666666666,0.888763,1.4543100000000002,0.888763,1.95225,2.693533,5.605293,3.729685,1.4543100000000002,3.15391,4.925115,1.144705,3.584015,4.560485,2.24483,4.235571666666667,2.343025,3.199255,2.54367,1.04795,3.71679,2.18974,2.166985,1.9064533333333333,3.5754433333333333,3.77749,2.42316,3.46788,1.3222566666666666,1.3222566666666666,1.3222566666666666,4.11552,3.09666,3.09666,2.886255,3.96058,2.5098066666666665,1.5282575,1.5282575,2.948955,5.04972,0.833985,1.4108933333333333,2.894065,1.2194033333333332,2.6302966666666667,1.04795,1.04795,1.7182516666666667,1.04795,3.0416266666666667,0.6690716666666666,3.0416266666666667,5.831602916666666,3.3989,2.4110633333333333,1.7660895833333332,0.6053433333333333,2.3714329166666666,3.51581,2.3714329166666666,0.9602533333333333,3.48612,4.16138,4.075755,3.24544,2.71,3.801575,1.8737066666666669,0.8856815277777778,0.48813375,0.8856815277777778,0.3975477777777778,0.8856815277777778,0.8856815277777778,4.34075,4.310525,5.1267,3.557095,4.21701,4.418885,5.0869,3.418815,4.024145,1.2836128571428573,2.5892466666666665,4.584201666666667,3.91982,1.3853766666666667,2.7068,3.92131,3.85528,4.17211,3.33839,3.98294,3.384705,3.28724,4.283605,2.3538099999999997,5.9633,3.679185,3.84555,4.248794999999999,0.7283235,2.150945,3.226665,6.05521,4.003755,3.228215,3.06762,4.19358,7.1270066666666665,3.0622733333333336,3.414015,2.6714266666666666,4.075635,4.048885,5.73065,5.51945,4.221875,2.968735,5.15195,4.65787,3.427766666666667,3.9008,3.274763333333333,2.228515,2.3650100000000003,4.72879,6.2839,5.0057,4.809245,4.115695,4.74821,5.6048,0.47309,7.456905000000001,4.29229,3.65042,3.51535,4.58552,3.976525,2.965973333333333,2.50145,1.3016633333333334,0.552926923076923,1.700534,3.168343333333333,3.203855,3.700625,3.774635,4.136735,11.212769999999999,3.668045,3.931415,2.85066,0.6762533333333334,5.603203333333333,3.3276566666666665,1.7328966666666668,5.060553333333333,5.545931666666666,2.218275,9.17193,4.67029,2.124424,2.124424,2.124424,4.29276,9.1966,3.296715,2.9627,2.9627,3.51839,10.0577,0.98055625,4.635835,4.55553,4.41764,2.7248900000000003,2.24208,4.33653,3.945225,6.41995,5.971465,3.975405,2.871465,3.90411,4.309555,3.2952440000000003,1.12149,2.6386866666666666,6.2625,3.2589449999999998,4.908665,0.90709375,3.7254,2.2264433333333336,2.6007833333333332,1.7991375,1.80128,2.12954,5.26345,2.038945,4.45981,5.69205,1.7596139999999998,4.64492,3.713675,4.68315,3.04395,2.092795,2.8337,3.90925,4.103904166666666,4.103904166666666,1.168915,1.6068233333333335,2.8852733333333336,4.219969666666667,2.251692727272727,4.8682506666666665,1.760304,2.747313333333333,2.09502,1.602675,1.602675,4.6767,7.391815,1.85667,2.9935233333333335,2.1281,5.0275,3.1509,0.8534979999999999,2.876,0.8534979999999999,2.78067,3.33831,5.46865,5.5679,3.71749,4.440330833333333,5.79905,2.499855,1.92181,2.9855733333333334,2.2134066666666667,6.06205,4.981575,2.587465,3.764495,2.659735,4.25402,1.06557375,1.134248,1.8982566666666667,1.2974883333333334,2.566946666666667,2.72011,2.0928366666666665,2.78452,2.67579,4.62141,2.61841,2.2941766666666665,2.749226666666667,2.45778,2.7367566666666665,2.684343333333333,1.94106,2.4856266666666667,3.73521,3.773275,3.21036,2.781535,2.828913333333333,2.137605,1.9238825,1.1544533333333333,0.2889135,0.1367295652173913,2.07124,1.7636399999999999,0.1367295652173913,3.619076231884058,1.948655,0.1367295652173913,5.714305277777778,2.141555,6.23375,3.460365,3.2544133333333334,2.6374,2.8459766666666666,2.23687,4.43231,2.9619733333333333,3.3194133333333333,0.40506631578947366,4.053511666666667,2.6117829824561403,3.010295,1.81338,2.50385,4.2558,2.438095,7.78298,5.2152,3.10709,3.852225,6.66222,6.14182,1.8857166666666665,4.177465833333333,2.072295,2.08786,6.56648,7.85173,1.0595133333333333,2.1347025,3.77599,2.614735,2.897625,3.141225,2.86797,4.6742550000000005,2.40634,3.142755,3.58492,3.38622,7.43042,1.3525366666666667,1.96867,2.978385,3.496175,1.8333300000000001,3.518985,1.955075,3.74717,3.370675,6.48885,3.30795,9.3291825,3.49101,1.567304,1.6496033333333333,2.79971,6.09354,1.588385,1.5949733333333331,5.96494,3.458565,4.05742,2.66849,2.13708,3.06504,10.384775,4.92303,6.57722,3.563775,2.009965,2.204875,2.457205,2.88993,3.478325,1.5818649999999999,1.5753700000000002,2.5382599999999997,3.52152,1.7905175,3.37596,2.685255,4.186175,3.740325,3.620735,1.09495,2.404225,1.03831,1.339092,1.74674,3.187195,3.432225,3.874775,2.854215,3.7693,3.868045,2.898185,1.43815,3.50989,3.468905,3.01396,1.92469,3.215465,3.425935,1.481955,3.559625,1.6631600000000002,4.25934,3.97939,4.848215,2.713325,3.965925,1.74621,3.33286,5.09355,1.69955,1.0607814285714285,3.629566666666667,2.895745,4.209925,4.182115,2.80048,4.61642,4.981635,2.26141,5.37975,5.3856175,6.41615,3.91434,5.676944,4.04379,1.660755,2.731036666666667,4.66675,4.999335,2.593783333333333,7.287992,1.1848571428571428,3.3795,2.244385,1.795328,2.34821,2.83379,0.3781242857142857,2.5948066666666665,3.8107333333333333,3.485975,2.39963,3.25184,2.3458966666666665,2.37719,2.114105,9.09858,4.956175,1.98563,5.2941,2.4588329565217393,0.7521807179487179,2.7378133333333334,7.2847919999999995,1.7516639999999999,4.4911225,6.265933333333333,1.5975975,1.58907,1.4089475,4.36776,3.216475,4.34053,3.7680474999999998,2.4119333333333333,3.606815,0.848696,2.6967693333333336,4.145095,4.18096,4.851085,2.82307,5.0055,4.74335,3.996355,4.997,5.80815,4.845235,4.037165,5.5482,1.879292,1.90351,2.80437,3.334835,1.1146333333333334,3.77032,2.1086666666666667,3.422333333333333,4.391275,3.1695966666666666,2.5625766666666667,1.5279833333333332,2.872813333333333,2.7782372222222222,2.57717,2.8895166666666667,1.9949066666666668,2.2740575,2.441205,3.6921,4.32912,3.71131,4.744595,3.489935,2.23818,2.92891,4.90575,3.9326666666666665,4.632775,3.334415,2.273755,4.573248333333333,1.8085133333333332,4.079665,4.821433333333333,5.9439247619047615,3.77293,4.11932,5.30565,3.1547633333333334,3.94736,4.375005,3.42619,3.7373855,3.433295,1.3533675,3.0366,1.72235,2.27383,5.381,5.0164675,3.7373855,4.049405,3.471755,1.57259,3.70814,2.376995,2.4329633333333334,2.09803,2.80227,1.6732281818181818,1.6732281818181818,1.6732281818181818,0.5470781818181818,0.7968833333333333,2.1156,1.095035,3.55514,1.3704483333333333,3.776565,5.0102,4.242025,3.18944,4.129455,3.16365,4.98124,1.5765,3.06901,2.654695,3.40088,5.9307929999999995,4.150785,5.2351,4.10597,0.9991575,2.283645,1.27491,3.824985,3.89604,4.1948,5.026,4.40631,3.78189,4.259535,3.7986,1.811715,0.9963416666666666,5.263333333333334,1.0275522222222222,1.25101,2.8633699999999997,8.198409999999999,3.16982,3.887045,2.44842,5.7989375,1.8045425,1.0071233333333334,1.45357,3.279455,3.565425,3.929115,3.704,1.8967475,6.221495,2.846693333333333,0.88267625,4.41217,2.9420800000000003,2.732606666666667,2.4036166666666667,3.673,6.076009166666667,2.589116666666667,3.085653333333333,3.549533333333333,2.3904133333333335,2.6065566666666666,2.908533333333333,2.742845,2.00617,4.58853,4.76193,5.1822,0.9606411111111112,0.748563,3.8562666666666665,2.75367,1.054205,2.7250883333333333,3.592825,4.30783,6.994655,4.677655,3.5488999999999997,1.76339,4.018155,3.790315,2.8086866666666666,2.510347142857143,3.751525,2.821073333333333,4.857426,0.8709322222222222,3.05274,1.746256,3.73789,4.09102,1.921195,1.1679075,3.16685,0.431682,3.01271,6.74645,5.21425,2.80363,1.503862,3.1295,0.7814099999999999,2.54351,0.7814099999999999,4.06548,4.25877,1.38294,1.5592725,4.823511666666667,1.8109166666666667,3.489155,2.72214,3.36951,1.25143,1.66524,4.05693,4.65308,5.31715,3.0630059999999997,2.504975,3.211525,1.5878125,2.3083525,1.8160825,1.8900725,4.249555,1.4735222222222222,1.4735222222222222,3.22978,4.618933999999999,8.459360833333333,4.63209,7.01279,2.094135,3.896155,3.984285,1.602435,3.629929166666667,3.79836,3.07067,5.3454,3.05686,2.71351,2.78208,3.64794,1.10343625,4.104755,4.513525,1.11983,7.961679999999999,2.57022,3.280725,3.45193,5.0746,4.841685,3.4675587500000002,2.44349,2.830783333333333,2.00366,3.636366666666667,2.2718325,2.17824,7.097021999999999,3.1272599999999997,2.792896666666667,4.187375,22.169295864468864,0.6810933333333333,2.757415,4.633435,4.452645,8.52942,4.96833,4.61792,4.514805,6.8258383333333335,3.559515,1.6482599999999998,4.97235,3.30196,1.20382,1.20382,1.20382,2.4173475,1.693775,3.40144,1.5907475,3.05119,1.5209233333333334,2.696595,2.60318,3.033635,1.5907475,3.30128,2.722045,4.201368333333333,4.831736666666666,5.05455,0.7698741666666667,3.283245,2.606885,4.62663,3.314625,2.724855,2.297825,1.7369575,2.2501275,1.456412,3.53071,1.6846925,4.60713,11.047256666666668,2.6490899999999997,2.421845,4.667063333333333,4.7023,4.423133333333333,6.378,2.2067166666666664,5.3762550000000005,4.663415,1.1408266666666667,1.1884085714285715,6.47924,4.304075,2.3622475,3.72285,1.91967,3.97934,4.558185,4.6072,4.00326,1.3362757142857142,4.241215,4.834385,4.66074,6.330178,3.396685,5.3923,4.258905,4.430785,5.009,3.6179333333333332,5.0385,1.9127175,3.436935,3.15194,3.223475,4.39266,6.2904,4.730355,2.671053333333333,3.6027,9.04268,4.834495,3.2504899999999997,3.61041,3.6996,4.396765,4.275365,4.640535,6.764548333333334,3.379775,2.6950766666666666,4.137323333333333,2.64375,3.95393,2.1461,6.547740000000001,1.5754966666666668,4.42429,4.720335,11.6967725,0.49272714285714286,4.40407,5.05345,0.6576285714285713,3.599015,4.02875,3.839635,0.9217489999999999,4.877665,4.957076666666667,2.66604,9.920081666666666,3.182706666666667,1.96965,2.27984,3.76523,6.02625,0.5592308333333333,3.91272,1.993695,5.1981,0.681983076923077,4.220045,5.75325,6.03355,3.56553,6.5589525,4.56684,3.5818975,2.6018266666666667,2.8785866666666666,4.346475,4.281015,4.99466,4.833935,5.1549,3.1191333333333335,6.6096683333333335,2.85315,3.234075,1.8249225,4.586915,2.197956666666667,1.59352,3.0632,2.7467233333333336,3.2406433333333333,3.323676666666667,3.4609,3.04608,2.6385333333333336,5.59825,3.14124,3.689325,5.0468,2.681063333333333,1.1546111111111113,3.055336666666667,2.98049,3.821245,2.805593333333333,3.0400899999999997,4.626116666666666,2.0310466666666667,1.6186525,3.07232,3.829715,4.25288,1.08741625,4.307425,3.22277,3.9761666666666664,2.9286433333333335,4.914345,3.96895,3.23051,3.849185,1.813565,3.919985,0.61819125,4.766165,5.0171,16.788716363636365,3.1288966666666664,1.17469,3.737835,0.6421657142857143,2.683325,4.468825,1.747105,1.1548914285714285,3.645465,4.697875,3.1567133333333337,0.6164666666666666,2.54494,7.9075,3.78302,5.46045,5.182,5.15405,3.125693333333333,3.6605000000000003,3.225796666666667,7.225795,3.926725,5.0043,2.1618975,0.44476,2.38078,3.034675,1.59376,3.292275,3.9442,2.89859,4.715525,0.66833,4.482825,3.513415,2.962615,1.1872733333333334,2.6447366666666667,2.018186666666667,4.68703,3.85622,2.20218,1.5733285714285714,3.560895,4.33682,4.16208,6.15362,2.0976399999999997,4.632865,4.43429,3.769115,1.86901,3.81284,5.693271666666666,4.897365,2.37738,4.915155,2.710565,2.57958,3.818015,3.903985,1.3672983333333333,4.748935,1.9902333333333333,2.7488333333333332,5.281313333333333,5.281313333333333,5.4071,1.577682,4.902,0.880715,1.7651379999999999,4.990875,2.6003433333333335,1.4994433333333335,3.0442466666666665,1.034964,4.250900000000001,4.61897,3.034445,4.986375,3.754395,3.574615,4.996605,3.544465,3.4895,2.8921799999999998,2.47047,2.531025,2.7232866666666666,4.497555,1.672953296703297,2.9558966666666664,4.34275,4.742835,2.2493866666666666,4.475715,4.650245,4.766078333333333,3.4393999999999996,5.3593,5.0811,5.4106,5.00885,3.62481,3.79051,3.7035,4.30651,5.62045,4.547745,4.972665,4.684975,4.574935,0.66088,4.937635,4.715265,3.90511,7.40062,4.12728,3.78913,4.32971,4.779645,3.6024,3.631025,2.11500375,4.513052500000001,1.80336,1.27491,3.692015,2.075063333333333,2.4842566666666666,3.905692,3.4293333333333336,2.902345,1.1793333333333333,2.011505,4.50372,3.878505,1.8993075,1.8993075,3.454325,1.568284,3.205526666666667,4.400205,3.38238,3.802965,1.4513,2.101355,3.5361241666666663,2.00521,4.334655,4.465445,4.54147,3.97068,6.84234,2.59785,3.631795,4.53517,4.51191,3.290093333333333,3.861355,3.942655,4.12673,2.44619,2.4946433333333333,4.564115,3.659875,3.530275,3.655105,1.60793,3.80559,4.255215,4.563125,4.106635,3.944805,3.944805,3.0736133333333333,4.03109,4.204565,3.83227,1.680622,7.42298,3.89447,4.98558,4.48863,4.357005,3.703245,4.76104,2.867445,3.29407,2.99728,4.87621,1.9467919999999999,4.3138,5.306950555555556,5.03155,0.689597,4.847453333333333,1.11113,4.74779,4.634125,4.551525,4.082535,4.96144,3.6498666666666666,3.6498666666666666,0.8218120000000001,2.1806075,4.84602,3.34833,3.90352,4.898555,5.4251,3.3067,4.070125,1.3745066666666668,2.668115,1.67569,1.220345,4.232975333333333,0.8384410000000001,2.417266666666667,3.0157866666666666,1.18923,2.09525,2.6979399999999996,1.3355466666666667,6.30773,1.9370725,2.586743333333333,5.47535,1.9690425,2.864076666666667,2.85384,4.651725,3.6635333333333335,3.3742666666666667,4.1075,1.7068699999999999,2.22767,4.42691,0.6457464285714286,2.14183,2.3527733333333334,3.135946666666667,2.7522566666666664,1.1267971428571428,0.8444833333333334,2.3722666666666665,4.23288,1.2552171428571428,2.2000075,1.23365,5.5265075,2.2315075,4.91043,4.453995,4.219955,5.37765,5.3601,3.905915,4.10383,1.41144,4.039166666666667,1.7092500000000002,2.4075966666666666,1.1963085714285715,4.36995,2.082255,6.971435,4.270385,3.89888,1.4361039999999998,7.0432625,3.598615,1.4586183333333331,4.072805,3.22652,3.940955,3.150375,2.09457,2.09457,3.239943333333333,1.312485,1.312485,1.86901,2.8464766666666663,2.194765,1.33596,3.550466666666667,1.075815,3.06075,2.38978,1.9514575,1.532095,2.20955,1.9720675,0.28579235294117644,2.472825,1.200015,2.3554733333333333,2.09502,2.32318,1.06043,1.1265800000000001,3.6801666666666666,3.216143333333333,2.09457,1.837395,1.7781733333333334,2.5283233333333333,2.4395366666666667,1.929548,3.3216300000000003,1.0987500000000001,3.2162966666666666,2.7226966666666663,2.575126666666667,1.522728,1.029078,2.3683575,1.029078,2.3683575,0.63078625,0.63078625,0.490115,2.21529,2.50657,0.63078625,2.2207525,2.35758,2.32472,1.71509,0.789441111111111,0.63078625,0.63078625,1.616396,1.616396,2.0371425,1.837395,0.63078625,2.30654,0.47641692307692307,2.9298,2.02939,2.4294466666666668,2.4234266666666664,2.4234266666666664,0.37780800000000003,0.37780800000000003,1.86901,1.96434,2.14128,1.971032,0.37780800000000003,3.541533333333333,2.5194,1.645918,0.62540625,1.645918,0.62540625,7.6645,2.622743333333333,3.8877666666666664,2.9371566666666666,2.9992966666666665,3.13648,2.7640166666666666,3.600766666666667,2.503875,1.679335,2.70816,3.0622733333333336,2.364596666666667,1.616396,2.562581428571429,2.562581428571429,2.7734233333333336,2.1333525,4.35331,2.2541800000000003,3.1829666666666667,2.652206666666667,1.403354,2.3871,2.1918125,0.7767172727272726,1.687405,3.87296,1.734912,3.1963899999999996,2.4958533333333333,2.6861,3.9046000000000003,1.66795,3.4388,3.10383,4.329666666666667,1.2384819999999999,0.23246103448275862,1.2846728571428572,1.2846728571428572,0.9832455555555555,2.834623333333333,3.8883666666666667,2.4605799999999998,2.138846666666667,2.138846666666667,2.08029,1.6631600000000002,0.951797,1.7749366666666668,1.7749366666666668,0.63078625,1.86901,2.858546666666667,3.3372333333333333,2.38978,2.2645600000000004,2.2645600000000004,2.2645600000000004,1.0906333333333333,1.508657142857143,1.508657142857143,2.367655,2.795806666666667,2.6325217045454545,3.612405,2.51782,2.3986266666666665,3.45833,3.81811,6.7017475,3.706455,4.33773,4.138366666666667,13.257012499999998,4.791005,3.50866,0.9701425,4.03347,3.346835,2.241025,3.781875,5.15045,6.433278333333333,5.98165,0.47199529411764707,3.80849,2.967005,3.897645,2.4607475,4.417925,4.173675,4.11387,8.17472,3.39379,3.908145,3.97089,3.28707,8.034335025641026,3.2271666666666667,2.6913466666666666,3.665145,3.889175,5.0607,3.59534,6.545261,3.702765,1.371586,2.86118,0.89007875,4.77555,2.8017,2.588485,3.96103,3.09834,2.81127,4.904705,4.02093,8.56532,4.00764,4.7035,2.487956666666667,4.94827,3.10803,0.98372,0.98372,3.47449,3.97673,2.09168,2.25274,4.054725,3.082295,4.344555,2.026805,1.884575,2.90792,2.4854833333333333,1.15576375,3.15064,4.52358,8.62994,1.6283819999999998,2.791235,2.88289,3.010045,2.79663,8.09042,4.038975,3.3867666666666665,2.8232199999999996,4.049165,3.4375666666666667,2.9805533333333334,2.98935,4.047475,3.791225,4.30467,4.147145,0.417032,1.4484266666666665,2.63295,1.8253025,4.47646,3.600465,2.4168366666666667,2.2670525,4.623555,3.8215522500000003,2.0837525,2.535065,0.914147,2.31835,2.52554,2.52554,5.1472,1.925485,2.7476066666666665,2.256963333333333,2.0094433333333335,1.7971433333333333,3.065255,3.747845,4.85422,4.355695,5.1194,4.650755,2.823495,2.7448533333333334,1.9919440000000002,4.71421,5.499205,1.9227666666666667,3.0036799999999997,2.0529575,2.33832,3.990363333333333,2.53429,5.1076,3.70181,3.57244,4.112465,3.0374866666666667,3.60731,4.033715,2.3224966666666664,2.434946666666667,0.4147564285714286,3.8031333333333333,2.7603066666666667,3.055565,6.29915,4.739975,5.649845833333334,1.7786275,1.6087783333333334,3.172015,5.116,6.41935,5.85565,2.892666666666667,2.3087733333333333,3.509245,2.176276666666667,4.694335,2.2901166666666666,2.1678475,5.3442,4.76015,4.39283,1.7892,1.9083,1.038922,1.038922,1.063202,0.9446685714285714,0.720636,1.8129145714285715,4.3376,9.977372500000001,3.856795,4.1929,4.07051,5.7270625,2.894665,1.68477,3.377815,2.91627,4.37559,2.21927,2.5831033333333333,2.9622533333333334,3.2748166666666667,2.32877,3.082826666666667,3.29379,3.0282966666666664,3.5012333333333334,3.2760233333333333,2.8493033333333333,2.7361066666666667,3.143466666666667,2.25872,3.1259933333333336,2.9730933333333334,2.9264266666666665,3.31026,2.06032,5.329471428571429,3.1197700000000004,4.076912666666667,3.2075533333333333,2.9000500000000002,3.6117666666666666,2.8701633333333336,2.8520766666666666,3.0870466666666663,3.1728433333333332,3.5812333333333335,3.21612,1.9581725,2.771993333333333,2.587006666666667,2.865925,2.865925,3.303846666666667,2.7888966666666666,2.5686066666666667,2.7816799999999997,3.1094666666666666,4.178833333333333,2.7761766666666667,2.685775,2.8272666666666666,2.803123333333333,4.504816666666667,5.0597,1.5799383333333334,3.3354,3.8020333333333336,3.42152,3.1240066666666664,3.7024666666666666,3.5362666666666667,2.4744433333333333,3.3586720000000003,1.9340039999999998,2.7868475,3.3870666666666662,2.9544200000000003,2.49136,2.444733333333333,3.7508666666666666,2.8681866666666664,3.032806666666667,2.2956925,1.1541616666666668,3.1757566666666666,2.66901,2.1613866666666666,2.4990325,3.092563333333333,3.0163733333333336,1.9527860000000001,5.737316666666667,2.4163799999999998,0.9059459999999999,4.45666,1.8961870833333334,1.6456816666666667,4.18424,4.183415,3.337455,2.44523,1.432785,3.44061,2.64103,1.805265,0.413816,1.931335,0.413816,2.1852,1.432785,2.677975,3.75635,2.3724,3.38972,3.364265,0.47848466666666667,2.7395600000000004,0.985795,0.4321635294117647,3.705095,3.918335,4.8356,2.5318,5.28065,4.19629,3.93133,2.02705,3.9910333333333337,1.718814,5.7809,2.4933,4.206055,4.604,3.0681266666666667,1.9042633333333334,2.0940499999999997,1.3073533333333334,2.09407,0.912665,0.912665,4.462295,2.2392533333333335,6.150788333333334,2.2188975,2.22678,2.224495,2.2004282500000003,1.8139525,5.4701,3.9582075,2.144255,2.4219066666666667,2.2004282500000003,1.74357,3.51389825,1.83823625,5.763511666666666,2.2188975,3.3042725,3.27999,3.057916666666667,5.46405,4.58791,1.9286125,2.0489525,2.3009275,2.44259,4.63937,5.43735,1.9713425,3.83701,1.5741433333333334,1.5670375,5.1316,10.063525,2.033533333333333,2.28274,2.3451766666666667,4.104575,4.139975,1.8882075,4.628655,4.425125,2.715495,39.24556763095238,2.8369433333333336,3.0946233333333333,0.4229088888888889,4.6619633333333335,2.08084,0.9309177777777777,3.565475,3.77545,1.8381375,1.8489025,2.3871766666666665,4.01833,1.3882385714285714,3.24848,3.62243,4.5871,0.9163410000000001,4.953475,5.0539,4.943405,2.935583333333333,1.5877325,3.789125,4.43383,3.92066,3.266915,3.554925,3.846915,11.721914444444444,2.713893333333333,3.16685,3.732995,2.475595,4.287205,3.34466,3.098435,3.03742,5.4637,4.28188,5.31305,5.03565,2.496135,3.588835,4.52572,3.799625,4.55047,4.262335,0.12298260869565217,2.312925,5.4616,2.64839,1.7053166666666666,1.1433416666666667,1.1433416666666667,2.03773,2.92682,2.967875,1.726108,2.8288766666666665,4.439725,2.540235,4.5082325,0.5589878571428571,4.73654,3.5267,4.88145,4.825665,4.85537,1.2639625,1.02118625,4.224766666666667,2.969273333333333,3.05759,3.8064175151515154,4.23188,6.1406825000000005,5.40435,4.1277,3.49415,2.084175833333333,1.4859116666666665,4.469605,0.322588,3.32518,3.80798,4.072095,14.276580000000001,2.00615125,3.2689266666666668,0.79413375,4.503845,8.498059999999999,3.32696,1.85808,5.66655,3.25113,1.0664622222222222,4.81036,2.56672,2.74854,4.799165,3.4888294444444443,1.0774875,6.614821666666667,0.72784,5.15405,3.2621969444444443,1.3764675,2.1169511111111112,3.260865,3.260865,3.89896,4.351445833333333,1.3607125,2.522135,2.878095,3.593525,2.955415,2.630705,3.33947,3.35414,6.772423333333333,6.7468,4.13212,3.281135,4.40847,4.53928,3.500905,3.42282,3.593805,3.74443,4.37341,2.5296366666666668,2.650726666666667,1.6316083333333333,2.33747,2.2290125,1.5382025,3.0531066666666664,3.648,3.4766333333333335,3.25573,2.5643933333333333,1.53182,1.5538266666666667,0.4805154545454545,2.7485199999999996,1.5983857142857143,1.92161,3.4103,2.48199,2.56955,0.96050125,2.252685,2.700705,2.98709,3.593065,5.5489,3.79817,2.96577,2.2452566666666667,3.39007,4.440995,2.44628,4.551285,2.08103,3.82223,2.78755,4.081805,1.3963533333333331,0.6143460000000001,2.2934725,3.291085,3.122515,3.99477,4.681620000000001,8.68169,3.28403,2.1424133333333333,1.8615666666666666,1.780174,1.780174,2.84906,2.6879766666666662,4.88524,4.28491,3.525525,4.95559,4.325505,4.28516,3.1716699999999998,4.36204,7.6935675,2.545425,0.50158125,3.089786666666667,1.3072966666666666,1.018557142857143,1.91509,0.765184,2.083735,5.12655,5.3068,6.0359675,1.1265425,7.04277,1.9927540000000001,1.54259,2.639413333333333,3.88436,3.3396333333333335,2.39592,3.36361,3.074,4.200033333333333,2.9075933333333333,2.7414366666666665,2.9570133333333337,6.688725,2.52832,3.834965,3.9139283333333332,3.653598333333333,1.4913233333333331,1.200585,4.457225,2.9891233333333336,3.2004933333333336,5.4798575000000005,2.76583,1.90002,2.4109675,3.30078,3.7789,2.28471,3.898740833333333,3.04049,5.4113,2.4234503333333333,1.88186,4.96574,5.4298,4.428535,4.01743,1.4722833333333334,2.287005,1.85759,3.294385,1.5251833333333333,0.9443450000000001,2.725825,2.020285,1.9227575,4.28724,0.7481450000000001,5.7890975,1.4543925,0.7797481818181818,3.5185666666666666,3.93092,0.6735871428571428,3.1677665,3.2129575,0.8444833333333334,4.424115,0.15601833333333331,0.15601833333333331,0.15601833333333331,0.15601833333333331,0.15601833333333331,0.15601833333333331,2.001198,3.71742,2.001198,2.001198,1.8545066666666665,0.15601833333333331,0.15601833333333331,3.4096333333333333,2.74236,3.51767,3.262115,2.373665,3.588905,1.3809785714285714,1.6632000000000002,3.2952440000000003,1.365446,2.6517399999999998,2.6560504444444444,5.70991,3.95978,4.16993,6.5925,4.41157,4.71105,3.65997,3.76253,7.134945833333333,3.8853000000000004,3.5591333333333335,2.359716666666667,5.148873333333333,2.64904,2.14323,1.7105499999999998,4.70419,5.1806,5.24465,5.15505,5.58775,4.38948,4.743645,0.7207272727272728,0.7162071428571428,0.7162071428571428,4.85479,2.3790299999999998,3.845515,1.0259128571428573,4.52813,1.450357142857143,2.319716666666667,2.6296,4.483466666666667,4.483466666666667,6.81575,4.18647,1.295685,9.877683333333334,2.907766666666667,1.247911111111111,4.97018,5.205,3.523895,3.0362,2.89824,4.395366666666667,0.8005866666666667,3.4082000000000003,3.4719333333333338,3.7687000000000004,3.1998466666666663,1.52203,1.5696199999999998,4.7167658333333335,3.1627666666666667,3.287686666666667,3.4885,5.438951666666666,3.3210750000000004,0.836276,1.8486200000000002,3.8500333333333336,2.174805,3.838366666666667,3.580166666666667,3.2036333333333338,3.549533333333333,3.0766033333333334,2.498596666666667,1.3154266666666665,3.080216666666667,2.4075466666666667,3.425075,3.004565,3.687885,2.6593533333333332,3.2358966666666666,2.8926,1.528744,2.0111866666666667,2.7900509523809527,3.5211666666666663,1.8490220000000002,3.2433533333333333,1.85135,3.6253333333333333,5.260123333333333,5.019438,2.4377725,2.5491,2.72675,2.544725,1.5661285714285713,2.2862125,3.422697857142857,2.488355,3.511433333333333,2.75453,3.7849820000000003,2.991575,1.3199111111111113,1.2880225,1.7789475,2.2298875,3.0822266666666667,3.4105333333333334,5.2581,7.489155,2.52789,5.03,3.78539,15.532989,0.50622,11.856705,0.8424911111111111,3.4512,3.556433333333333,2.8742366666666666,2.89889,1.599338,1.43815,2.29154,1.201882,2.832644,1.9702366666666666,2.9194666666666667,2.1148366666666667,2.6784733333333333,1.5126666666666668,0.6653675,3.0480199999999997,2.55916,3.0454666666666665,1.0906333333333333,3.493,0.7043275000000001,0.37233615384615387,1.94435,4.42031,4.30124,4.49991,0.7384027272727273,3.93281,4.820145,1.1670975,2.1829825,5.2490325,3.43568,3.782985,3.8609,3.917825,1.8677275,3.70015,2.6913766666666668,3.049085,3.63085,2.9512,2.78455,3.888385,3.215135,3.660635,2.072925,3.39601,4.514035,1.2531666666666668,4.572405,2.23517,4.205205,5.104753333333333,1.9912175,2.6321533333333336,3.043286666666667,5.967453333333333,2.4465600000000003,3.311675,5.14915,3.8877666666666664,4.05013,1.8997966666666668,2.62,4.516125,3.6123,4.102265,3.734833333333333,3.0606666666666666,2.801693333333333,3.787333333333333,3.2108733333333332,2.692633333333333,2.575013333333333,0.44794388888888886,2.389525,2.181555,4.510485,4.717325,3.0573933333333336,2.552853333333333,3.1079899999999996,8.622164999999999,3.63293125,3.949095,2.7252466666666666,4.07633,3.19978,3.7089266666666667,2.80698,2.24702,2.6040933333333336,6.4846,4.658445,2.1694166666666668,3.449145,3.09981,2.6312333333333333,4.490908666666667,1.7447120000000003,6.2910666666666675,4.0483,4.780455,4.30004,6.4751,3.641635,6.771118333333334,3.68607,3.38158,0.6181435714285713,2.1842975,1.487595,2.988106666666667,3.22213875,4.039165,3.997575,5.2861,2.6784266666666667,4.58516,3.5416666666666665,3.8632333333333335,3.185363333333333,4.36307,4.61855,4.39649,2.8897433333333336,5.720166666666667,4.45413,1.40716,5.1014,3.72848,2.696165,2.17212,2.3030733333333333,4.428105333333333,1.2404128571428572,2.47988,1.9707875,3.83334,4.365835,2.4439466666666667,3.3821999999999997,2.965040666666667,2.457683333333333,3.831825,1.325398,2.282366666666667,2.37431,2.82938,2.54807,2.6015133333333336,2.694406666666667,3.95134,2.9908966666666665,2.790976666666667,4.039375,2.37481,3.755195,3.596885,1.429785606060606,1.429785606060606,4.555415,2.755133333333333,1.800815,1.3265975,2.07009,2.0442325,1.252794,1.4159166666666667,0.642868,1.6468533333333333,1.56157,3.0224533333333334,2.2515,1.75215,1.9943733333333336,2.29245,1.6034566666666665,1.7483766666666665,1.85211,2.540775,4.26167,2.98365,2.751333333333333,2.753,5.6059,2.8529,4.26679,4.10417625,1.966535,3.91039,2.98306,1.87959,3.56019,1.76195,2.88938,3.556665,1.83262,4.50625,3.60777,4.222325,3.3656,0.8159211111111111,4.739225,3.731845,3.32903,3.74646,2.2930466666666667,4.511865,4.591505,4.73853,9.220257499999999,3.45129,4.52035,2.8199199999999998,3.634955,4.338515,2.441315,2.593655,3.850725,2.1595675,5.757475,1.8796700000000002,2.7151,5.404421666666667,2.87372,4.143636,1.2723742857142857,4.336315,4.37288,3.034283333333333,4.70431,4.775555,5.9951289999999995,15.301759107142857,0.6287882352941176,1.06043,2.8335633333333337,3.96633,3.58104,2.1011225,3.284295,4.015705,4.9701,2.522265,4.74723,1.7261833333333334,1.7261833333333334,5.37575,0.7568236363636364,1.669726,3.03071,4.091265,0.3985792307692308,1.9474600000000002,4.1171015833333335,1.1966833333333333,3.078416666666667,2.7963833333333334,2.942365,8.05145,2.5564566666666666,3.583833333333333,1.9811366666666668,2.21214,3.8855975000000003,3.5362,3.085455,7.115354833333333,1.8813875,2.945425,4.566745,6.7357825,1.9456833333333332,2.3829533333333335,2.5673766666666666,1.3708833333333335,2.49111,1.61275375,3.896995,3.214045,1.51758,1.840884,1.840884,2.7607,5.45515,4.215576666666666,3.809025,4.54261,4.539265,3.37507,3.692855,4.134245,3.51009,4.657595,3.623855,4.44913,0.896499,0.36117875,5.3375,3.883725,2.5047533333333334,7.93744,1.6020566666666667,4.6897,4.0698,0.3667816666666666,1.8880833333333333,1.3153933333333334,1.85008,1.9419166666666667,5.338183,2.970415,3.139325,4.86445,4.76412,4.731015,0.5892000000000001,2.207085,0.6150800000000001,5.692645000000001,1.459276,4.756745,2.0251525,3.0704700000000003,3.295675,4.029105,4.218025,5.13475,0.8543572727272728,3.17578,4.03148,2.00886,1.7322325,3.661485,3.058035,3.609325,3.8914999999999997,5.352966666666667,4.670985,5.5557,2.9136,0.5544355555555556,3.2848666666666664,3.686025,0.6266907692307692,3.85085,3.826955,4.04662,3.390915,2.661216666666667,5.13065,3.23668,3.231145,2.29527,3.895435,1.671132,3.361535,3.744885,0.6126053846153846,3.696635,3.850075,3.072945,3.781305,4.40838,2.771805,3.85038,0.6220950000000001,2.9410966666666667,3.6703666666666668,4.4842,3.5896333333333335,2.56815,3.5137666666666667,2.56815,4.95172,3.10161,2.9801300000000004,1.5276816666666668,3.1339633333333334,1.6801725,4.11035,2.872586666666667,5.115756666666666,3.0460766666666665,2.6517133333333334,2.8881933333333336,2.3451778571428568,2.3451778571428568,2.3451778571428568,2.1833533333333333,1.0522933333333333,4.49718,2.4460933333333332,1.7128433333333335,4.0568333333333335,2.268476666666667,2.980786666666667,3.924455,5.23105,3.419585,1.837015,1.0830600000000001,4.02824,1.993694,2.244126666666667,2.911725,3.60039,2.052695,3.514125,2.970595,1.6591619999999998,4.906605,4.20192,3.468455,3.672035,0.7391211111111111,2.43655,4.395095,7.514875,4.40557,3.01777,2.86129,3.456165,3.790785,1.7233275,2.356165,4.465605,2.15358,4.499495,3.76189,5.2181,8.256336666666666,4.106055,3.42158,3.161975,4.74231,3.940995,3.148935,3.148935,3.75759,4.1087983333333336,4.2544,4.14157,4.15718,4.54085,3.97327,1.07242625,4.409995,4.060445,5.2218,8.09889,4.926195,3.9341340000000002,2.09274,1.4728116666666666,2.25701375,5.01065,3.7804,4.82575,2.16771,4.501095,5.0866,5.21265,4.967285,3.1167133333333332,3.62885,3.858205,4.867235,4.312345,3.828765,6.619176666666666,4.84672,2.271926666666667,5.1777,3.634945,4.09697,3.68744,4.379325,0.7699527272727273,3.87995,4.494055,1.2154214285714284,1.172766,4.90269,4.739385,8.786710000000001,5.3969,4.53009,6.10865,2.940365,2.4420933333333332,5.06025,1.5806075,1.5806075,2.68179,1.6449166666666668,3.0088566666666665,3.4703999999999997,2.002495,4.134707727272727,1.4431866666666666,2.184665,5.420115,3.6059816666666666,3.520665,3.230135,4.01728,4.1255,3.0130433333333335,0.9965855555555555,4.015095,3.03269,3.891735,4.14258,3.6726816666666666,5.60845,4.997205,4.71891,3.64237,5.26355,6.40615,4.61551,3.288825,3.432565,2.0519925,2.0519925,3.8359,3.902685,2.5850866666666668,2.7849133333333334,2.0212015151515152,2.4850666666666665,2.0656233333333334,2.0656233333333334,4.248495,3.544155,2.127115,3.550495,2.769465,1.78642,1.2855075,0.9207788888888889,2.7713,0.4518594736842106,0.8037533333333333,2.861415,3.530275,0.4171263636363637,3.983655,1.9739840000000002,5.2995,3.43428,7.4470825,4.410495,5.2894966666666665,4.682515,5.08105,4.07425,1.88576,1.84416,3.915995,3.052235,3.632105,1.3057533333333333,3.18436,4.331685,2.65961,3.196415,2.34669,4.34942,3.23399,3.338845,3.888615,3.753965,3.390775,3.01965,1.0271042857142858,1.95479,2.300935,2.924215,4.36638,7.61494,0.892882,1.57487,1.57487,1.7787739999999999,3.942615,2.72903,3.099035,5.4644225,2.950423333333333,1.228785,1.228785,1.228785,2.852515,2.9031529999999997,5.1107,3.26776,4.160695,3.32239,3.67706,2.94701,3.3480475,3.66687,4.1412325,2.6985900000000003,1.252794,3.169915,2.6985900000000003,3.87842,1.3737133333333331,1.8840466666666666,2.0571,5.329748,3.21726,6.281578,5.329748,3.064318,1.8722116666666668,1.8722116666666668,2.75495,6.02585,1.8722116666666668,2.324875,5.62562,2.516275,2.81242,4.90464,3.6941,4.21894,1.90058,3.35239,4.24335,2.2421466666666667,2.34664,4.83795,1.90058,2.614865,1.92047,6.20542,2.55765,1.126112,2.55887,3.277855,2.9892095000000003,2.13255,1.9181895,4.02195,1.7289020000000002,1.60969,3.326875,2.46429,3.517265,4.00162,2.0063133333333334,2.52343,2.50632,6.3145,2.225345,3.47734,3.473085,3.473085,8.247673333333333,1.0942733333333334,3.03146,2.8394,3.106895,2.30076,1.1431033333333334,1.1431033333333334,3.55773,1.94383,6.528585,2.249185,3.71141,2.683345,5.59009,3.008685,2.38828,5.5849150000000005,5.5849150000000005,2.759635,1.582325,1.2557825,1.2557825,1.582325,2.1374866666666668,1.5087666666666666,1.1712083333333334,1.4577133333333334,2.0964633333333333,3.722125,1.95517,3.81453,3.05665,3.05711,2.840625,3.071535,2.223005,3.362645,3.362645,5.84798,2.463435,3.089285,2.720305,3.196955,2.51492,2.91192,2.768135,5.234477500000001,1.8764675,1.5917080000000001,1.5062513333333334,2.4875413333333336,5.74839,4.2393513333333335,3.6289333333333333,2.852575,1.9797125,1.9797125,1.9797125,4.98662,2.474105,1.1712083333333334,3.162845,3.627885,1.3125275,5.446295,3.1931475000000002,5.82949,3.50184,1.697195,3.432,2.4123466666666666,2.273975,3.736175,4.60352,3.47127,1.871415,2.410895,2.92138,3.112795,5.70563,2.044585,3.460095,2.686675,6.13429,4.45058,1.94369,2.11454,5.72772,5.0421,5.13125,6.17865,1.179866,1.179866,2.6011059999999997,2.6011059999999997,0.708826,5.05457,3.34455,5.78948,4.85488,5.22214,2.28862,4.635533333333333,4.635533333333333,2.173525,3.2055,3.25209,1.150918,4.66813,3.42805,3.071315,2.736165,4.80363,2.36357,1.94424,3.418845,3.079385,2.88302,4.83683,2.608605,1.725135,3.85569,5.94419,5.85977,4.34817,2.484865,3.65429,2.385835,5.21325,2.86013,3.51085,2.16915,6.6832,3.77659,2.663195,2.323565,2.422425,5.08108,2.423115,2.740315,2.88361,7.26,5.08709,3.344815,2.408135,2.69968,6.14303,3.119695,2.896225,5.71103,2.77669,2.867435,2.779365,3.051635,1.9652833333333335,1.99168,2.18865,1.87531,1.7244400000000002,2.116216666666667,1.74674,2.2480066666666665,1.78144,1.9652833333333335,3.8481,4.23167,2.361425,1.7408225,1.7408225,3.65526,3.65526,2.9078299999999997,2.9078299999999997,2.80101,2.72741,1.70051,4.28505,2.2662875,2.2662875,2.333615,2.333615,3.51851,1.96111,5.31193,2.39832,3.09016,1.81285,1.81285,1.41323,4.45236,5.40587,1.3737133333333331,5.20045,2.0063133333333334,2.055775,3.8475,3.12523,1.882485,2.468115,6.54409,2.064075,6.48186,3.152805,3.192475,3.095535,2.74151,5.97497,3.05742,2.636275,2.5225092307692307,2.90185,5.81908,3.54461,1.5068899999999998,1.5068899999999998,3.97212,5.20325,5.40382,4.52918,2.712665,2.871655,1.711685,3.02033,1.777095,2.73186,1.804275,0.872638,0.872638,0.872638,2.287259166666667,4.732066666666666,2.287259166666667,2.587275,3.77557,1.735475,2.050485,4.12187,3.938,5.46538,1.7554066666666666,5.36343,1.7554066666666666,1.7554066666666666,2.304085,1.632895,1.9517,6.59612,1.9517,2.44513,3.8759,2.26139,2.05542,2.72042,2.9019366666666664,3.1322391666666665,3.1912866666666666,3.59323,1.3057533333333333,3.924885,0.7047172727272728,4.173635,4.3566125,2.7778575,2.7778575,0.6585045454545454,4.031033333333333,2.7080933333333337,5.8029,5.04045,4.340395,5.19705,3.847735,4.292815,5.2283,4.10214,4.235,3.7037,3.88331,5.02415,4.903635,3.36636,3.466015,4.178785,2.485516666666667,1.213914,4.449785,3.382505,3.6054,1.2512957142857142,3.903805,3.843955,6.195984999999999,1.077685,5.255,3.921715,2.070695,2.04901,3.25127,3.567715,1.76291,1.5068899999999998,3.97044,4.87754,2.6428,4.63759,3.14654,1.16464,2.9375199999999997,1.1381442857142858,3.1083,1.9708166666666667,2.920866666666667,1.9227425,2.52094,4.08309,3.12624,4.506095,3.36903,2.2468425,4.83736,4.60783,3.096875,5.43545,4.254615,2.6672499999999997,5.92825,4.55889,3.156251666666667,2.5413433333333333,2.513625,2.880546666666667,2.9989866666666667,2.7022733333333337,4.634505,4.37434,3.731965,2.46318,2.6009366666666667,2.42395,2.3760866666666667,2.2195466666666666,2.3477200000000003,2.33862,2.2063975,1.340315,2.975172,1.2018975,1.685515,1.61165,2.73795,1.5948075,1.781815,3.885075,3.976535,1.974095,4.04756,4.12897,5.844181666666667,2.02265,1.573196,6.7786,3.531555,4.785895,4.27417,3.97928,2.1166,3.591105,2.396375,3.02941,4.170505,0.7287716666666667,3.819385,1.8919766666666666,0.7479327272727272,5.0392,4.39496,3.98337,1.8384235714285715,4.72838,5.51535,2.63527,2.727486666666667,2.4789266666666667,2.13526,0.634486,3.200226666666667,3.049975,5.00625,2.46863,2.012785,3.454125,1.04119,1.9573133333333332,1.9573133333333332,2.82414,1.9573133333333332,4.115675,2.775295,4.23046,4.424395,5.7189,13.420919166666668,3.0323766666666665,4.622595,2.824785,4.71439,3.204545,6.6283725,2.8443066666666668,4.82856,4.73913,3.81424,1.1366983333333334,4.828285,3.191523333333333,2.36696,0.9651266666666667,2.14318,3.388135,7.141906666666666,4.2815,2.8464766666666663,4.60579,3.239943333333333,4.11687,4.5072,4.763475,2.86441,2.88332,3.999365,5.5744,2.42368,4.181395,1.926245,1.926245,3.11023,4.77005,1.21139375,3.8926919999999994,2.3146575,4.70411,2.6058266666666667,2.495886666666667,3.02232,2.3204566666666664,0.7272571428571428,3.46481,2.9037400000000004,5.38515,4.60295,0.2386959375,4.887455,4.272065,3.74472,6.790414999999999,2.9420366666666666,2.8835766666666665,2.1874166666666666,2.85431,2.710053333333333,1.3562966666666665,2.9415033333333334,2.5473066666666666,1.3266433333333334,3.419966666666667,3.051933333333333,2.50169,2.7816799999999997,1.3251844444444445,4.1008,2.442475,5.14415,3.936205,3.786515,1.7285433333333333,2.4717166666666666,1.32283,1.81658,1.32283,4.818365,3.4768333333333334,1.535366,2.3265325,4.05184,3.80817,3.03522,3.88997,0.3668865,1.3922775,3.847075,4.250645,6.41275,1.993215,2.6303566666666667,3.1089966666666666,2.374773333333333,2.81232,3.308125,4.556675,2.506625,1.9951266666666667,2.772296666666667,2.62053,2.6643733333333333,4.534225,2.27911,4.621535,3.715419166666667,5.93045,7.65739,0.7630533333333333,0.817764,4.13169,6.3987625,2.00772,3.501445,1.5311416666666666,1.5311416666666666,3.52425,0.45301888888888886,3.60159,3.837965,2.68918,3.99675,3.242755,2.55474,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,2.362395,2.945405,3.508525,3.1167000000000002,4.62136,5.75714,2.840335,2.1032866666666665,0.9470900000000001,3.56956,0.68035,5.2546091666666666,3.1513225,2.332705,0.68035,2.66427,2.682245,0.939745,3.9193350000000002,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,4.255565,1.6129725,4.623955,4.2128,1.7714020000000001,4.636675,4.215975,5.2625,4.46154,3.4432196428571427,3.367785,4.44015,2.02029,5.412325,4.14244,0.7209357142857142,1.4115771428571429,1.3756857142857142,3.2832666666666666,3.2832666666666666,2.9200633333333332,3.83271,4.25382,3.535005,4.03046,2.859026666666667,1.9522666666666666,0.6006271428571429,4.09692,3.13189,2.67908,4.386515,3.312725,3.0832837499999997,5.20225,4.467185,6.6183175,4.137585,4.690745,5.6425,4.437785,1.2392614285714285,3.08379,5.3401499999999995,33.269291844516594,1.2074033333333334,4.23822,2.95159,4.44425,4.001415,5.1936,5.1674,0.41145,5.12905,4.438415,1.997365,2.170355,3.772635,1.588385,2.474285,2.198585,1.691055,2.88449,2.4395366666666667,2.92834,2.54203,0.6007523076923077,3.091275,3.809455,0.3588078947368421,2.432,2.61907,3.01655,3.88073,1.85276,4.313595,3.927975,3.124965,3.725785,3.144015,4.168485,2.96052,3.88825,2.18043,5.3401499999999995,3.531965,3.132305,2.939095,1.703322,3.888905,3.44455,6.959828333333334,3.355925,4.63122,6.1837575000000005,5.159195,2.2831675,4.385215,5.740745,7.440016,2.463083333333333,2.50958,4.862695,5.725883333333334,4.40415,3.180705,5.475333333333333,2.6305,1.6703775,2.0930525,59.902380038883976,5.1914,4.23831,2.61505,0.846978,2.72217,2.9296933333333333,3.2692833333333335,0.8084033333333333,4.320585,0.8164422222222222,7.604059642857143,1.993694,3.442833333333333,1.7340440000000001,2.94592,2.5897466666666666,3.0088333333333335,2.4929366666666666,2.34142,3.4558666666666666,1.60857,5.624668333333333,4.113833333333333,1.510835,2.6691533333333335,1.41648,1.4498,7.69478,5.88275,3.414805,4.21253,5.1028275,1.4547,3.3654333333333333,3.22989,1.840715,5.44275,3.64877,3.91577,1.5422525,2.8881908333333333,3.532133333333333,4.04994,5.7591,4.269285,4.38825,2.3910775,3.76463,4.405166666666667,3.18132,1.443216,4.06116,3.19089,4.22717,4.9123,3.852765,3.89283,4.46629,4.343615,4.34188,4.3934,4.00744,3.1769866666666666,3.72201,4.16134,3.12542,3.816855,3.7227,1.6274199999999999,1.6274199999999999,4.28493,4.83646,4.96592,3.621195,4.838485,3.2675533333333333,2.757635,4.768245,5.47905,0.7496863636363635,5.5164,6.6182125,5.72775,5.7746,0.9700388888888889,3.26114,0.89331,0.89331,0.89331,3.634445,3.3723666666666667,2.500173333333333,3.5982333333333334,0.993805,5.02065,5.4431,3.050205,1.6235725,2.11228,4.135795,3.688855,3.80661,3.4032959999999997,6.63215,3.614405,2.57627,4.78144,6.95595,2.4817,4.27729,3.74285,3.187255,5.3586,4.167605,4.803285,5.8458,3.17803,3.4777277777777775,1.9060933333333334,1.9060933333333334,0.71992,8.593492,2.014625,5.82885,5.4376,4.257665,5.15485,3.85606,3.0586399999999996,4.331425,7.44570125,5.69198,2.38278,4.283745,0.941929,3.76095,1.9867033333333335,0.88324,1.191957142857143,2.6955466666666665,3.002423333333333,2.8271933333333332,1.0880657142857142,2.7087,3.086676666666667,0.9083077777777778,2.6725600000000003,3.2143466666666662,1.6810120000000002,1.7594100000000001,2.8451533333333336,2.9869966666666667,2.8324466666666663,2.475823333333333,1.7325579999999998,5.19495,4.11983,3.959145,4.291935,5.17175,3.306465,4.47675,6.5229,5.033,4.284705,3.94537,9.968885,8.63562,2.993313333333333,3.42745,1.8129366666666666,3.933295,3.279105,4.623825,0.9980316666666668,3.710875,3.613205,1.63833,4.04014,3.083095,4.223085,2.630655,3.87867,6.77065,7.484943333333334,3.67801,1.5659433333333332,1.5659433333333332,1.5659433333333332,4.61307,1.1751500000000001,1.4442125,0.47668555555555553,4.24748625,3.0406333333333335,3.525705,1.01165,1.172205,2.945895,4.341935,3.792275,16.362143440476192,4.424295,4.632685,5.9997625,2.8043366666666665,3.569385,2.680615,0.9108577777777778,1.43499,3.63995,3.619285,4.13947,4.747155,4.52277,3.91206,2.762138666666667,3.72045,5.3511,0.561215,4.765425,2.2942825,3.92886,4.533735,3.394833333333333,2.2657266666666667,4.084341666666667,1.8001833333333332,3.6427,6.1708,2.99751,3.359455,4.406525,3.93641,4.41751,3.9414,3.320465,4.275325,4.688355,4.945825,3.69072,4.38517,3.76625,1.0945328571428572,1.35944,5.692338,6.0426,4.01673,4.99768,2.506625,2.5854666666666666,2.7986633333333333,5.67869,1.8476725,1.964905,2.9449166666666664,3.0243,3.319876666666667,4.474465,3.142825,4.993595,1.25774,4.757905,0.9086866666666666,4.14318,3.35314,1.6916600000000002,4.410025,0.9552122222222221,4.962885,5.6817,4.899425,4.36277,3.8160083333333334,3.99251,3.0510466666666667,5.28355,5.9601,2.7883240000000002,4.106225,2.47322,2.6934,2.027855,2.600915,3.23567,5.0155,1.075815,4.480125,1.35624,3.377645,1.6458966666666666,1.075815,0.19703216216216216,3.5749,3.0656,2.2383145833333336,1.9465633333333334,2.723305,1.1260525,3.85114,3.510235,4.60251,2.574593333333333,6.4147,6.7577975,2.72362,3.2766466666666667,2.6569933333333333,0.799592,2.4210966666666667,6.12205,4.4317,5.61705,4.66113,2.1560099999999998,1.5321966666666667,4.009535,1.7346625,2.1359725,1.8263575,2.2805125,1.751005,1.9855125,2.0550925,2.144575,1.8065125,1.329337142857143,1.408215,2.0607875,2.0322675,2.2774,2.4460833333333336,0.5347106666666667,1.0974819999999998,2.7803466666666665,3.269106666666667,1.9370725,1.9165633333333334,1.6055825,3.576525,2.2312933333333334,2.694895,3.36207,5.68315,3.90065,2.9078166666666667,4.40266,1.6983208823529412,3.7906425,23.179881,4.650763333333334,5.7524,4.46209,2.1622533333333336,3.82591,4.86408,2.244825,5.11445,3.3026733333333333,0.78341,3.075795,4.547705,3.90816,4.16771,1.4124999999999999,2.02876,2.5074833333333335,2.15014,1.4921285714285715,3.5005333333333333,5.1256,4.270575,3.322935,3.885135,4.885955,3.334315,4.602805,1.257325,3.208345,4.149795,4.69584,1.822824,3.248083333333333,1.8217124999999998,1.8217124999999998,3.56041,4.682385,2.876916666666667,2.89114,4.014565,3.82116,6.594837500000001,4.70728,2.380275,1.43499,2.77643,4.40924,3.06075,2.562581428571429,2.562581428571429,3.243063333333333,5.09695,3.67591,5.232453888888889,2.58898,3.331481555555556,0.6347122222222222,0.6347122222222222,0.6347122222222222,3.50419,3.82707,3.8625983333333336,5.73835,2.2740575,4.80226,4.77661,4.909695,3.23107,5.22285,2.65179,1.3775671428571428,4.117045,3.9697,0.4835357142857143,4.319533333333333,4.68297,1.4923633333333333,5.0743,5.12595,4.5929,4.24799,3.910885,2.881885,4.60437,1.6871040000000002,4.5822,1.608935,4.22557,5.94115,1.1207975,3.222115,7.163705,3.70859,3.455633333333333,2.22309,3.948135,5.61905,3.0222266666666666,7.511326666666667,4.31659,2.2413466666666664,3.106866666666667,2.74682,2.5042233333333335,2.724743333333333,1.89021,5.1314,0.61834,1.8254424999999999,1.8254424999999999,3.172075,3.76929,2.30417,3.05896,4.374335,5.01245,4.295265,1.3417466666666666,4.809523779761905,4.379995,4.606425,3.475245,3.828180166666667,3.3814075,0.4467726666666667,2.780373571428572,0.97080625,0.4467726666666667,4.369305,0.8617044444444445,4.038805,4.003395,6.538816000000001,2.19185,1.0611625,1.14443,2.41675,2.8895466666666665,1.3947933333333333,2.47757,3.34804,3.65399,2.0726066666666667,2.25721,4.34905,2.8821775,3.89277,5.70955,3.38705,4.995955,6.8941349999999995,4.545905,3.601105,4.511325,3.747285,4.05268,5.18965,5.5312125,5.3187,2.40726,0.9669233333333334,3.60321,3.875425,4.178575,4.47992,4.02485,5.2606,2.6525666666666665,2.5355933333333334,2.8757433333333338,2.1275933333333334,2.0719766666666666,2.95227,3.07934,2.3943966666666667,3.775365,5.07845,4.16146,5.1506,2.47539,3.5865666666666667,2.911225,0.7355714285714285,4.155345,3.52938,4.55609,2.871563333333333,5.36876,3.327,4.594865,3.86787,0.5707684615384616,0.5508564285714286,4.220255,2.7260555,3.14745,4.43492,3.947205,1.698856,5.35005,4.262545,2.4497066666666667,2.6205866666666666,2.199955,2.0151375000000002,3.620433333333333,2.9942499999999996,3.11588,2.961726666666667,3.5353666666666665,2.698125,3.1031033333333333,3.5286000000000004,4.4729849999999995,0.54431,0.54431,0.54431,3.1004443333333334,3.4707666666666666,3.664733333333333,2.7010466666666666,2.879906666666667,1.07242625,2.757206666666667,3.0113133333333333,1.7988675,2.54607,2.47176,0.9791311111111111,2.8930583333333333,4.671235,9.847892916666666,1.5438526666666668,0.5732039999999999,3.872445,0.5732039999999999,0.5732039999999999,0.5732039999999999,0.5732039999999999,2.14045,3.8531259999999996,3.88613,4.919655,6.0157,2.827663333333333,2.733503333333333,3.06963,3.351565,4.75531,1.020215,2.2169633333333336,3.1542033333333332,2.5263133333333334,2.9202866666666663,3.76152,2.2734799999999997,2.43303,1.1866666666666665,4.79235,2.764625,3.41499,0.891655,0.665905,0.665905,0.9012729565217392,1.7929279565217393,0.9012729565217392,0.9012729565217392,0.34752695652173915,0.34752695652173915,0.9012729565217392,1.8025166666666665,2.3829366666666667,2.93628,3.03486,2.59548,2.6446166666666664,3.201973333333333,2.8320133333333337,4.53114,3.50276,1.92332,2.295846666666667,1.756025,0.18073868372606772,0.18073868372606772,0.18073868372606772,0.18073868372606772,2.52371,2.3688366666666667,0.945466,5.14725,0.7428227272727272,1.685332,4.655340833333334,5.1203,4.16889,2.988565,4.375865,3.47435,1.83434,1.2693025,4.128675,4.532685,6.5463,2.319225,1.3976466666666667,1.95747,3.0236666666666667,1.44782,2.76202,3.084626666666667,3.257406666666667,4.411205,3.87448,3.0726,4.911925,2.4299399999999998,3.96108,5.56605,3.74258,4.17453,4.56865,5.3928899999999995,4.506039166666667,2.8835154285714286,5.137465000000001,4.21562,6.6317,4.397475,4.396485,2.24837,3.062985,4.28624,4.77898,4.314495,3.89196,3.603025,3.88696,3.926155,2.39097,5.4341,3.616085,7.646179999999999,5.9714,5.8994,4.883545,1.4497714285714287,0.9602080000000001,0.6040253846153847,1.792612,4.931725,5.588,3.92305,1.606704,4.138935,3.11533,5.064,5.25245,6.1358369999999995,4.04728,3.12096,1.553938,5.370915,3.97943,3.149035,1.7481625,0.98002625,3.79579,3.14179,3.6500075,3.664,2.16236,4.40618,1.6118566666666665,3.010006666666667,2.33274,4.60877,6.4372,4.863415,2.2699325,1.60689,5.58035,2.8558166666666662,8.94083,2.8031,5.18795,5.9263,4.629065,5.2095,3.58702,5.10705,2.2096375,3.842075,4.863619,2.45512,4.389625,4.556255,7.18383,5.08745,3.1488933333333335,4.168355,3.75304,2.8821775,3.60808,5.2224,5.67615,2.34267,2.95879,3.167426666666667,2.4032,2.59574,4.4067,5.90185,5.2015,4.68915,4.982795,4.153435,4.57602,0.6376146153846154,3.0658,1.1576857142857142,30.9699989169039,2.49601,4.566695,3.094865,4.612365,1.693572,2.489993333333333,3.1512253571428572,1.5919728571428573,1.5919728571428573,1.5919728571428573,1.5919728571428573,1.5592525,3.66833,0.505141111111111,7.898361527777778,0.505141111111111,4.400305,4.851865,2.034625,5.32285,2.804425,4.069482666666667,2.39988,2.5120733333333334,2.7588333333333335,2.165103333333333,0.6211176923076922,2.6192033333333335,0.7222400000000001,3.3993,2.0859133333333335,2.468032,1.1978583333333332,2.468032,6.06575,8.107050000000001,4.642175,4.33103,5.7442,5.78385,7.342953333333333,3.454445,1.43457,1.43457,2.440793333333333,5.0156,3.66422,4.445335,5.931626666666667,3.95746,2.68633,3.89357,3.516625,3.594365,2.302475,0.9784219999999999,2.235545,3.851455,4.03891,5.308256666666667,2.0222,3.865615,1.249982,3.28657,1.31822,3.4756666666666667,2.953196666666667,2.8320933333333334,3.344,2.9076966666666664,5.05955,0.6682661538461538,3.648165,3.6859333333333333,2.44548,2.387513333333333,4.29259,3.3795333333333333,2.0735033333333335,4.700105,3.630535,4.98494,3.84813,3.64355,5.64995,4.970735,2.13851,5.7546,2.366575333333333,1.84638,3.173583333333333,2.2878633333333336,2.9543733333333333,2.608665,1.8680566666666667,2.997595893939394,4.14187,3.15979375,2.3817816666666665,2.3817816666666665,2.5845,3.543885,4.068645,0.6101718181818182,3.23814,3.23904,8.83648,0.861090909090909,4.454045,3.52661,5.47775,3.36292,3.82854,2.377455,3.768075,2.845865,5.6491,2.6504691666666664,3.844315,2.689853333333333,3.76569,2.66329,3.655475,3.798295,3.695815,5.094601,3.27784,2.14064,5.2877,2.5339066666666668,4.435355,4.910085,4.694525,4.59601,4.061685,2.95806,2.1902433333333335,2.7436633333333336,2.71625,2.778325,3.1395633333333333,2.6972730952380957,4.660190000000001,2.686726666666667,2.4856233333333333,6.272897500000001,4.940265833333333,3.763185,3.129963333333333,3.7383,4.06632,3.61424,2.005655,3.86856,5.099,4.846035,1.350735,4.133085,2.708743333333333,6.724225000000001,4.83023,8.644652222222222,4.09645,3.87329,2.10485,4.15349,5.60104,8.0325,4.42308,5.87449,3.58448,3.148175,3.814155,1.7447120000000003,4.744172,1.44017,3.616035,4.59399,3.3825333333333334,0.8215325,9.282858333333333,1.1752333333333334,2.06497,2.5254266666666667,1.9038666666666666,3.5026666666666664,1.3527016666666667,3.769135,3.72114,2.2806,4.178875,1.2313475,3.721515,1.4101566666666667,3.1051755,3.915675,5.6149,1.6722675,5.962829583333333,2.6021346666666667,7.94102,4.48299,2.86969,4.06418,3.409855,1.2487954166666668,7.82542,3.11627,3.361295,2.46204,4.128735,2.1262,3.0890825,2.24619,3.968505,1.33931,5.754,2.72437,4.23754,0.811854,1.8499403333333335,3.8358,5.1633,5.16447875,1.5480880000000001,1.5480880000000001,5.92695,4.664765,5.729,3.78413,3.43289,9.172055,4.31311,5.56195,3.91895,2.50385,2.2113219818228367,0.3865285,0.2086193548387097,0.6758082437275985,1.1489852380952381,0.7394379262672812,0.2086193548387097,1.3878335,0.4671888888888889,1.5355137380952382,2.0636417437275982,1.9427925,2.2685275,2.1752,5.04195,6.116128333333334,4.853465,5.1433,4.406645,5.1362,1.27322,4.82403,4.042045,5.69055,5.3654,4.9012,5.6406,5.92085,5.57245,1.24806,1.2503814285714285,1.820524,6.171319,1.345514,5.3464,4.804675,6.61640625,4.88566,5.46375,4.566185,4.722565,2.4451075,5.201,5.3925,4.600548333333333,4.988145,5.9027875000000005,5.7629,3.80737625,4.278375,3.6968333333333336,0.971627,3.6187666666666662,4.574085,1.1105425,3.7349,4.707175,4.5438,4.94782,2.519675,3.3247,2.7033166666666664,4.533615,2.185435,3.513025,1.2699283333333333,3.322045,3.73514,3.945815,4.858545,3.370260416666667,0.59008,6.0634,0.97487375,3.54833,2.821566666666667,3.74494,2.0270366666666666,3.774065,3.816388461538461,3.1751566666666666,4.484295,15.384757214285713,5.1741399999999995,2.2674375,8.54804,1.5321775,4.011065,2.99415,2.8747166666666666,2.0365366666666667,0.21750173913043477,2.7111866666666664,4.564365,1.7352340000000002,2.2742533333333332,3.264623333333333,1.89438,2.2145,1.6201142857142856,3.315,4.79995,5.03815,3.318285,0.50108,2.3424566666666666,4.7319,2.84282,3.930495,4.411735,4.2141,5.51885,0.47981529411764706,2.562726666666667,2.562726666666667,5.2321,4.833525,4.90458,2.556,3.3953666666666664,2.90207,5.3053,3.577345,5.501277777777777,4.75509,4.37352,4.569925,2.54005,1.8771719999999998,4.36143,4.0111,4.069865,2.83495,1.808146,4.709545,4.294235,3.851145,4.526525,3.77797,4.04175,0.6184879999999999,3.095055,0.570115,3.1181433333333337,3.4455,4.10185,17.823664285714287,3.636165,3.79095,2.4123466666666666,0.959015,2.25169,2.575126666666667,1.522728,2.381275,2.454785,4.74703,2.23686,3.91198,4.266655,2.11586,3.960035,2.965723333333333,4.721515,5.1241,5.3553,1.51859,2.25343,2.44245,4.672995,4.93731,1.107761111111111,5.08805,3.855495,5.5527,4.486755,1.7426700000000002,4.491035,3.502925,3.36277,3.524185,4.107595,3.0533966666666665,0.65781875,7.65386,1.351938,0.20210277777777777,0.20210277777777777,0.20210277777777777,4.820175,3.952595,2.7687733333333333,4.18331,2.94283,4.03075,4.327222142857143,3.9471999999999996,8.435466666666667,4.414315,7.24922,0.8063825,0.72099625,2.514525,4.337755,4.301595,2.3887266666666664,5.29875,5.7825,3.41138,3.47326,4.25637,2.1380666666666666,4.99622,4.6224195,2.3554733333333333,3.033523333333333,3.0691666666666664,2.768455,5.9741,3.7554,0.6371421428571429,3.71057,3.252245,4.23521,4.846793333333333,5.0467,3.15045,5.22715,3.6266,13.441516666666667,4.7195,6.956111083333333,2.47902,6.494097,4.1478,4.051705,1.9720675,2.2959825,9.64359,2.270426666666667,4.184333333333334,4.1356,3.7606333333333333,3.4279333333333333,2.9783500000000003,2.08103,2.226995,2.974743333333333,1.7615200000000002,3.9141333333333335,2.4348233333333336,2.65753,3.3232433333333335,3.4009666666666667,2.4720199999999997,2.4720199999999997,2.50613,3.5692,3.3394333333333335,2.19137,3.1168899999999997,4.200466666666666,2.8050866666666665,2.717443333333333,3.8443666666666663,2.243326666666667,1.9304425,3.782833333333333,2.90898,1.648838,4.130433333333333,2.2709566666666667,2.389956666666667,2.82384,2.251075,3.4439333333333333,5.4774666666666665,2.4143133333333333,3.875033333333333,1.82678,10.744150333333334,1.8596300000000001,1.93865,2.14802,0.9832455555555555,1.582282,4.67481,2.7532880000000004,2.7532880000000004,1.65379,1.5538866666666669,3.57792,3.712701666666667,2.0645233333333333,1.4480700000000002,1.7068699999999999,4.6918326666666665,3.8205333333333336,4.041300000000001,8.209743333333334,3.035557142857143,2.55339,3.383084099378882,4.190166666666666,1.9304425,3.2827699999999997,2.60042,3.3594000000000004,3.4182550000000003,0.960615,3.3341635,2.84494,2.8484933333333333,4.051005,3.234443333333333,0.6606636363636363,1.8418304761904762,5.24265,2.496979,3.3295,1.58711,1.58711,2.0945225,3.6780333333333335,0.936553,2.252035,4.641493333333333,4.641493333333333,0.6315809523809524,5.465233,3.41849,3.839645,4.789785,1.2366357142857143,3.3737,3.5393666666666665,4.798406666666667,5.8261970000000005,2.3997466666666667,0.632958,2.7050933333333336,2.600886666666667,3.023125333333333,2.3018899999999998,2.3733400000000002,2.78871,2.364685,2.512793333333333,0.7971809090909091,4.69355,4.779936,1.4070233333333333,1.6778,5.25245,2.22891,1.679655,4.17205,1.325726,3.64169,2.537325,3.5688999999999997,8.877422916666667,4.5600725,4.646915,5.1527,2.415375272727273,0.79447,1.81736,7.06576,1.85416,4.193625,4.011555,3.399935,21.294989166666667,3.3081133333333335,1.3909166666666666,1.0341425,3.1667466666666666,1.4535099999999999,4.143636,5.19215,3.367224,3.3077966666666665,1.0360866666666666,1.4250333333333334,2.96569,0.570706875,3.511566666666667,3.6674333333333333,3.0561933333333333,2.4713613333333333,2.46978,2.7832333333333334,1.9527933333333334,2.7945100000000003,1.56327,3.8035,1.454155,3.888935,3.9179,2.46219,5.37785,3.27196,3.99714,4.956345,4.38915,3.01465,2.7427766666666664,2.3302,0.9485871428571429,0.9485871428571429,0.9485871428571429,2.381305,3.3388666666666666,2.6300133333333333,2.48875,2.3152933333333334,1.9738675,3.54776,4.98436,3.778185,6.491009999999999,3.169165,2.5144,1.923,0.9683566666666666,2.458486666666667,3.92737,2.49839,2.6119233333333334,2.3918466666666665,2.35519,2.6142166666666666,2.71456,2.758176666666667,2.6999566666666666,2.316666666666667,3.273616666666667,2.0985733333333334,2.17844,1.623015,1.601665,3.0746233333333333,2.75618,2.0426125,3.97912,5.16445,2.9097566666666665,2.386311346153846,4.93704,3.98285,4.780655,5.62495,4.51249,4.39752,6.2856725,1.2148725,4.37854,2.70064,5.28445,5.5148,3.63874,3.637655,2.1757275,7.88275,2.746425,0.84655,7.56734,5.41703,5.899901666666667,4.255955,2.78654775,1.74393,5.10345,4.195635,4.247695,5.07775,2.525145,4.19441,4.515695,1.756025,3.8579,2.8772,1.3759283333333334,4.67593,0.6040588235294118,4.279775,3.505185,4.586505,3.09988,1.845265,3.16039,1.87055,1.4202125,2.6792200000000004,3.4302333333333332,3.1991133333333335,7.224594102564103,1.824525,6.4079625,9.43736,5.89705,3.272265,1.2836128571428573,2.9045366666666665,1.2836128571428573,2.83215,2.0953,0.41661176470588235,1.2510480147058822,0.41661176470588235,0.41661176470588235,0.41661176470588235,1.2510480147058822,1.2510480147058822,0.41661176470588235,0.83443625,4.62277,3.449255,3.21946,3.440925,3.596565,4.268875,2.7975503333333336,1.6334440000000001,6.832935,3.0166,4.23671,2.585173333333333,1.0570545454545455,1.18752125,4.511605,3.66006,1.1142444444444444,1.404714,0.7289890909090908,2.9492958311688313,4.249355,4.89313,3.3411000000000004,5.393735833333334,0.533896923076923,4.09293,3.287235,2.793366666666667,2.4761366666666667,3.4982333333333333,2.481056666666667,2.8956033333333333,2.64742,3.093695,3.640375,4.89487,4.837285,2.12678,5.0148,4.11158,3.114115,3.84518,3.32584,0.32613200000000003,4.969595,3.61345,3.04009,2.964612,4.254995,4.02804,2.002745,3.191165,3.871365,8.087340000000001,5.14475,5.25555,4.736135,3.6341200000000002,0.89243,2.131285,2.202715,1.467665,1.8545066666666665,4.422685,5.4266,4.06789,5.0129,3.4032959999999997,2.5944766666666665,0.9432566666666666,3.978775,1.2183983333333332,1.0834733333333333,3.422505,3.749355,4.54687,1.24627625,2.443096666666667,8.44184,3.14603,2.9571433333333332,0.86625,4.01797,11.877256666666668,3.45023,4.15161,3.20274,2.831695,4.567105,5.1643,2.1023,4.15489,0.5337007692307693,4.84054,2.2207525,1.673,1.673,3.5325333333333333,4.047635,1.4353366666666665,3.973095,1.2239457142857142,3.899015,2.4573175000000003,3.4418,4.931755,3.441445,3.9744383333333335,2.70365,2.8737333333333335,2.8737333333333335,10.805544999999999,0.723442,2.895905,3.1451366666666662,2.1640725,2.0291125,0.8811842857142856,1.4415875,1.1108442857142857,2.013575,4.79242,2.51296,4.2831,2.00616,4.10432,3.905835,1.6231583333333335,2.022815,1.0121383333333334,6.045605500000001,2.012475,2.06097,1.718814,1.742764,1.0341425,2.2767558333333335,3.65553,1.9249633333333334,3.0920166666666664,2.4764500000000003,2.6866800000000004,1.6401766666666668,3.094723333333333,2.60132,1.3853966666666666,1.8296266666666667,2.7550833333333333,2.543946666666667,2.3287066666666667,1.1886366666666668,2.519746666666667,2.03928,2.6728433333333332,0.31875684210526317,0.415365,2.36862,2.1634866666666666,2.992055,3.1380266666666663,2.749435,4.73065,5.541,4.497805,4.784795,4.227555,3.920085,2.8838166666666667,3.79197,0.7247672727272727,0.063355,6.9652,0.063355,3.466665,2.986145,5.33365,3.63064,6.21575,4.49824,2.0902233333333333,2.4499333333333335,0.9349599999999999,5.2084,6.4035,3.24283,5.394,1.70451,3.753575,2.0237869565217395,3.0612166666666667,3.1843500000000002,4.04832,4.976733333333334,3.36244,2.2286766666666664,2.2286766666666664,4.018165,7.71828,3.499425,2.1276533333333334,2.5205800000000003,4.335145,2.95646,4.94639,3.50831,0.9634377777777777,4.274775,2.3301366666666667,2.7059366666666667,4.271875,1.1131933333333335,2.4389766666666666,3.96616,3.33799,4.58784,2.96314,2.87638,3.87131,3.850205,4.264585,5.02025,4.393405,3.1563149999999998,3.794965,2.648746666666667,2.5259566666666666,2.51736,3.9440000000000004,4.157805,2.9639233333333332,4.918456666666667,3.866555,3.509925,5.282,4.2705,3.38641,1.463312,1.3958325,4.09452,3.354366666666667,1.60053,2.8244733333333336,3.389485,3.08831,4.057771111111111,3.0058333333333334,2.2971508333333333,12.614965638888888,2.4192033333333334,1.802634,4.62597,1.03729,3.13156,3.636155,4.64546,2.86438,1.1937333333333333,2.2711,2.574593333333333,1.480564,4.374865,0.994015,0.994015,3.7941400000000005,1.7918666666666667,2.0022733333333336,1.76665,3.190105,5.49225,2.19879,3.039515,3.4288183333333335,2.7826066666666667,2.8882133333333333,2.00348,6.32405,5.74425,3.70016,0.6864484615384616,3.950125,3.494605,1.0402,5.5797,3.3482333333333334,8.466883333333334,4.786725,4.49986,3.57565,1.4945825,3.04621,4.856165,4.352635,4.0777,3.978465,4.263295,3.36721,3.5150666666666663,3.5150666666666663,4.17519,2.7082783333333333,3.767805,1.797485,5.543184999999999,5.179268333333333,1.4923633333333333,4.49222,1.01763,5.79075,3.874065,5.0175,4.48066,3.99012,2.652435,2.5008,4.267625,4.296395,5.02265,3.909095,1.92278,1.407862,4.4375,2.1280733333333335,5.31705,3.28289,3.646415,6.93712,3.850675,4.507115,5.20855,3.70078,4.593775,8.20758,4.15863,3.138405,9.231175,3.84291,0.5720935714285714,2.0316085286935284,4.58658,0.5976293333333333,4.784095,4.048875,4.81421,4.500785,3.240765,3.507895,4.53246,4.83557,2.595775,0.6938342857142857,4.567675,4.35009,4.38978,4.257665,2.789453333333333,4.3659,3.49212,0.771316,3.52674,3.741145,2.57005,3.2046966666666665,4.127545,2.133065833333333,5.43815,5.1283,3.6841725000000003,3.174656666666667,5.520930833333334,5.520930833333334,8.542966666666667,2.00984,0.87287,0.87287,23.436755,2.586675,7.722898333333333,0.3667816666666666,1.3153933333333334,2.8285199999999997,0.9513469999999999,3.839075,3.79547,2.0880325,2.0880325,3.877695,5.0504,3.43002,2.6716758333333335,2.6716758333333335,3.580175,4.30506,3.81546,3.4582333333333337,1.9938,2.4877949999999998,3.9611300000000003,2.09713,3.560265,2.8966933333333333,2.8206342857142856,2.8206342857142856,3.4087333333333336,0.8124066666666666,2.435443333333333,1.5857866666666667,3.342166666666667,2.8652466666666663,2.6831833333333335,2.5153266666666667,4.36046,2.532645,2.753686666666667,5.186598999999999,1.321228,2.212115,3.094165,2.3897233333333334,3.83385,5.738432523809524,1.2942733333333334,3.735633333333333,2.4444375,5.32373,6.82774,1.5351775,4.648864666666666,4.8414573333333335,3.1743268571428573,4.577166666666667,1.0157928571428572,1.822824,3.087795,3.839367142857143,1.29343,2.38397,1.76403,1.92056,2.14141,3.81402,5.4375925,1.1408266666666667,1.3635485714285716,2.9264266666666665,12.856845,4.2841466666666665,2.7648599999999997,0.9381257142857143,2.4900650000000004,0.93018,3.2075533333333333,4.030171666666667,5.12815,3.5399333333333334,5.74265,1.647165,3.6117666666666666,3.641485,2.8701633333333336,3.90822,1.97321,1.0561433333333334,2.5081333333333333,2.5636766666666664,7.244258333333333,2.700087142857143,2.6951633333333334,0.733758,4.6897,3.5235333333333334,0.9678720000000001,5.7422208333333336,1.9229875,2.345146666666667,5.30785,1.2666777777777778,2.8096866666666664,0.996890909090909,2.9793633333333336,4.30794,2.93026,3.00916,2.3328933333333333,2.25978,4.64644,4.714405,4.909515,1.71763,4.483825,3.90524,4.362346666666666,3.42152,2.67704,4.160785333333333,1.018812,2.8655661904761907,4.73458,2.660825,4.080062916666667,1.3404125,2.4744433333333333,1.9061800000000002,1.9061800000000002,7.042423333333334,3.2759466666666666,5.276043333333334,3.42367,1.70854,2.55206,4.579066666666667,5.802333333333333,8.257606666666668,4.724707,2.65242625,1.8473766666666667,1.9012108333333333,4.143293333333333,4.04045,1.4815200000000002,2.08137,3.0712187500000003,1.1198675,3.0163733333333336,18.984691333333334,2.983373333333333,2.947953333333333,2.9764033333333333,2.9482166666666667,2.4528733333333332,2.0149500000000002,3.14758,3.6288,2.4341833333333334,2.6054633333333332,5.737316666666667,2.4163799999999998,4.474907142857143,2.803591142857143,2.5064831428571432,1.4089099999999999,3.783444444444444,2.1518025,4.06305,4.875865,3.736335,2.9956758333333333,3.28027,2.247123333333333,3.3904333333333336,3.576233333333333,3.584633333333333,3.3209133333333334,0.8443618181818181,5.2274,2.482085,3.17755,2.7594755555555555,2.03657,2.0212354166666664,2.0212354166666664,3.1903237499999997,1.8009070833333332,4.702025,4.276195,3.45646,4.35112,4.492265,4.5283275,4.5283275,4.04027,2.90783,4.16691,2.86109,1.6193079999999997,2.315636666666667,4.43005,3.868915,2.710625,3.64529,5.4580400000000004,3.6180333333333334,6.260736964285715,2.994715,0.858346,0.858346,3.397275,4.707755,3.922515,3.3586720000000003,2.4082833333333333,1.8467366666666667,1.6024733333333332,2.93629,5.757421,1.4537766666666665,4.03267,3.7357666666666667,3.90805,5.0855,4.91104,4.6934254375,3.2937100000000004,2.2757975,4.115575,3.98379,2.0981125,1.0915240000000002,4.040685,2.80285,6.361683333333334,3.5588333333333337,2.644275,3.26094,3.71167,3.69397,4.493415,2.96992,4.526945,3.634535,4.35219,3.730575,3.29962,3.71471,3.79901,2.6966566666666663,4.448235,3.211,4.866365,0.6056544444444445,2.22998,1.83063,2.11902,1.8175475,2.510473333333333,2.648703333333333,1.8024366666666667,4.646235,4.92409,1.9061033333333333,3.919825,4.270745,2.3768025,5.956793333333334,4.093275833333333,4.22837,5.0024,7.12848,2.11649,2.9664033333333335,1.78857,2.7709466666666667,1.83354,1.841155,4.008425,3.59969,5.4521,0.9936966666666667,2.98458,4.349805,2.217485,4.818295,3.710785,2.569415,3.7730333333333337,3.32415,2.1026425,1.8379455,2.72635,3.22285,3.3312,1.892045,2.7676985714285713,2.7676985714285713,3.527525,3.43525,20.132021369047617,1.1932033333333334,5.3824708333333335,1.8208375,1.9232733333333334,3.698635,3.779985,1.8791475,3.78652,4.69761,1.2776416666666668,1.2776416666666668,1.31218,1.7659799999999999,2.28957,3.158516666666667,4.442436666666667,3.426875,3.517333333333333,0.49359631578947366,3.400966315789474,2.0292666666666666,2.166025,4.405505,3.375245,3.964085,3.57746,4.507285,4.371185,2.0683675,3.724995,5.725883333333334,2.18092,3.5782,5.1497,2.086985,4.746135,5.85445,1.2295671428571429,1.983474,3.6161999999999996,0.6960271428571428,3.0889,3.286965,4.782625,5.00135,2.7782372222222222,7.63415,2.91759,2.6596766666666665,0.4321635294117647,4.297035,5.215375238095238,2.9895504761904763,5.43635,3.81512,2.4890922222222223,1.7237120000000001,5.357645,4.216405,4.19645,2.754625,1.8765575,3.481765,4.1100666666666665,2.8922233333333334,1.9739475,3.9817316666666667,6.315205,2.725055,3.946205,3.6163,3.931935,1.4982142857142857,1.4982142857142857,3.2399799999999996,2.992513333333333,4.598835,4.743125,6.69595,3.409465,2.81995,2.1890425,1.5139833333333332,1.367562857142857,4.8697,5.73415,4.861575,6.03425,4.338245,6.764340000000001,3.457885,2.839586666666667,3.913510666666667,2.08024,3.024766,1.6181360000000002,4.360835,2.364596666666667,4.02087,4.88994,4.176675,2.7273300000000003,2.8558166666666662,1.3809785714285714,2.3274775,3.7412666666666667,1.853215,0.61541375,3.156503333333333,2.5797333333333334,2.3943966666666667,1.9424233333333334,1.849575,1.5295999999999998,0.6807581818181818,0.6807581818181818,3.4228,1.7728025,2.303165,3.084415,5.9578,4.11971,5.9737,4.250505,4.210785,2.1520183333333334,1.3350266666666668,2.50168,4.27214,1.052855,3.22113,2.86207,2.996605,2.32244,4.067775,2.742315,2.0541833333333335,1.0107871428571429,3.33047,7.90795,3.310475,1.5048992857142856,4.19226,3.34549,2.61878,3.531005,2.79947,1.7809533333333334,1.0335775,3.6694,2.4548708333333336,2.3225666666666664,1.6644166666666667,2.177146666666667,2.25993,2.466483333333333,2.8853150000000003,1.26,1.83922,1.0810775,6.197925,5.76095,6.1201,4.061975,4.469825,2.91221,1.7181352136752137,4.7074,4.99607,2.653245,5.1823,2.159995,4.68497,0.95495,4.16344,3.915425,1.8703775,7.71543,3.5853,1.863495,1.87543,1.798015,2.550175,3.3958333333333335,1.181482987012987,2.7161299999999997,5.6207,3.394725,3.90009,5.39375,5.30715,5.68625,0.83952125,4.127135,4.631115,4.21391,4.755255,3.9601516666666665,4.75042,4.790495,2.95137,1.7053166666666666,1.7053166666666666,4.97635,5.304525,3.132985,2.5947633333333333,4.00504,4.543915,1.517436,3.963855,5.13265,3.609925,4.019955,3.0223266666666664,2.7505733333333335,4.923355,2.47485575,10.7098446716176,1.9139799999999998,0.78890875,2.6016966666666668,1.70585,2.70315,2.090655,1.841394,2.7390833333333333,5.09825,5.43315,2.95527,1.6249033333333334,6.2362433333333325,1.5277999999999998,2.8562433333333335,0.5145857142857143,4.1366499999999995,5.54445,3.58123,4.666895,11.657805,5.1456,3.194596666666667,3.3809,4.429935,2.99509,4.550975,0.83422375,1.0798666666666665,0.8074618181818182,5.64625,4.12124,1.714172,4.6584840000000005,4.479095,6.48905,4.80375,5.0213,4.45826,6.06185,3.920585,5.4698,3.22744,1.185444,3.955245,5.488,2.729065,4.028315,3.07039,2.704095,1.228755,5.0248,3.93174,1.23023625,3.5079,2.8823600000000003,2.455976666666667,2.498136666666667,2.5132666666666665,2.9389366666666668,0.7089736363636363,2.2781066666666665,2.650873333333333,2.64933,1.9347333333333332,3.1782,1.94856,1.4493566666666666,2.3610275,1.8785975,2.1110275,3.168563333333333,2.6754233333333333,0.639546,2.8198733333333332,3.49134,4.67455,2.260876666666667,3.699555,5.2265,4.90233,3.44299,4.161065,1.3756857142857142,3.33691,2.603536111111111,4.28263,2.668285,4.366235,5.26045,4.964885,4.02193,4.1470666666666665,1.032126,1.032126,2.286213653846154,1.6983375,4.167495,2.691992,2.691992,4.90949,5.9985,3.090625,1.200015,1.5343,5.79865,3.58133,2.4198833333333334,3.301335,2.686535,3.047795,2.4198833333333334,4.64421,2.98674,2.9145975,2.898425,2.026715,3.058505,6.4351,2.986075,3.516875,4.028415,6.65205,6.2891,6.704575,6.704575,5.46745,4.870705,0.5479830769230769,4.884335,4.370735,2.988235,3.03431,8.088521666666667,2.7320266666666666,3.973895,3.7151,2.7509766666666664,4.699855,2.183465,3.4046499999999997,2.965783333333333,3.4543666666666666,2.48204,1.60432,1.60432,3.67917,3.799575,5.16835,1.758382,1.474174,47.16295954545455,2.474153333333333,0.8051545454545455,3.2004900000000003,1.8304425,3.1481600000000003,2.7529566666666665,2.8708833333333335,3.04506,2.6701599999999996,2.0484466666666665,0.942375,4.467295,3.291035,3.532345,3.897295,5.21735,5.2063,5.1155,5.23955,5.1445,4.910335,5.44755,6.1717125,4.82795,5.2693,2.07016,3.68079,6.65015,5.0658,3.625465,3.875355,2.932895,2.486685,3.891395,4.63951,2.8364100000000003,3.922833333333333,1.654302,3.953315,1.325398,3.361395,3.9315,3.57596,6.474897500000001,4.097865,1.952665,4.101805,3.83833,4.016875,0.86686625,2.720185,2.9385,4.453875952380953,1.18965,4.68475,1.3417675,5.87395,0.7254444444444444,3.810765333333334,10.048990833333333,4.35705,3.306,3.12842,1.9007666666666667,4.248215,5.3295,3.001133333333333,4.48393,9.314611388888888,3.477266666666667,2.0135666666666667,2.8354700000000004,2.70018,2.8193,2.691216,2.4846533333333336,2.6128433333333336,3.22261,2.7373066666666666,3.0843633333333336,3.390755,2.27472,1.5441166666666666,4.867422,3.8728,2.63442,4.998484,2.80687,1.02317625,2.0318525,2.896103333333333,5.261465,2.9232,2.1156,2.1156,1.618715,1.589055,2.12554,1.969558,5.938415,4.569445,2.2046125,2.8274233333333334,3.541733333333333,2.0167325,0.5920566666666667,2.561776666666667,1.946735,0.5851276923076922,3.9532,2.583,2.619225,3.624585,3.5798588333333337,2.40471,1.6268133333333334,1.1672283333333333,2.055355,3.60222,3.838655,4.21258,2.84325,3.99271,3.616115,1.1488272727272728,8.963205,2.864445,3.19268,1.307825,2.90816,2.3519375,2.3519375,2.3519375,5.0881,5.65185,1.658675,5.08245,1.465876,5.569190000000001,1.4629780000000001,3.965685,4.28925,4.32213,4.804685,4.58881,2.051815,8.9221225,3.7769,4.909575,3.44421,3.98745,3.360466666666667,3.098986666666667,3.92639,2.6007333333333333,4.3475214285714285,4.461795833333333,1.534425,4.09744,1.534425,3.42058,4.494761666666666,5.0306525,4.494761666666666,1.8475466666666664,5.7061,4.40806,4.406735,2.7378133333333334,2.90292,4.25884,3.14134,5.201,0.49937785714285715,2.967966666666667,2.9986833333333336,4.814449166666666,4.750755,2.4021475,4.60658,6.152086666666667,3.45143,2.974235,3.0601,2.1437666666666666,3.938615,4.18247,4.64593,2.480645,3.759125,0.878486,5.68215,3.45309,4.055185,2.25055,3.1196300000000003,2.2388600000000003,2.865126666666667,2.7589566666666667,2.7595433333333332,3.155135,2.5194,2.5194,4.504816666666667,2.66816,4.49102,11.3949925,0.9501644444444444,4.26669,2.5475133333333333,2.3837433333333333,2.5496266666666667,1.4442125,7.542378333333334,3.3754333333333335,3.454735,3.7223716666666666,1.88328,3.817,4.124089361111111,2.03736,0.4470522222222222,1.465764,1.5523125,4.74362,2.957165,3.284135,3.7077366666666665,3.4498533333333334,2.323415,4.911855,4.48829,3.750075,4.768785,2.20241,3.898075,2.5283233333333333,5.603203333333333,3.207115,5.0906,4.11992,4.106795,4.204795,2.13623,3.881065,3.690505,3.23713,3.603295,2.743935,3.16584,3.766035,3.83168,2.6754833333333337,4.578545,1.4164766666666668,3.644355,2.75717,4.36516,4.31925,3.924485,4.969265,2.60738,4.110995,5.21215,4.17103,3.164543333333333,2.16425,3.07397,2.418605,0.9059733333333333,4.34295,2.01614,3.508125,2.753785,4.10986,3.00765,2.79908,3.246655,3.967955,4.549036666666667,3.94563,3.092985,1.6030733333333334,3.534705,2.42858,0.9233444444444445,4.127545,9.20928,3.41534,3.625675,4.712585,5.03855,3.741525,2.18063,4.12335,3.90327,3.329775,3.204235,3.617005,0.68166375,1.2416957142857143,6.473035,1.687735,2.6587,5.157659000000001,2.519675,2.13659,2.86382,7.58446,2.63503,3.916655,3.784535,0.7609777777777778,3.48528,2.75285,3.831975,4.005725,5.739978333333333,0.685146,3.24408,9.77903,3.25943,1.0664622222222222,5.115100833333333,4.82814,5.2466,4.07833,4.45205,3.296215,2.4958533333333333,7.32441,0.8184509999999999,3.49046,4.03206,3.095625,3.92961,2.24014,4.262685,1.7078,4.04584,3.990915,3.899805,1.64518,4.582335,4.46559,2.34017,2.13693,2.0954575,0.9678720000000001,4.192005,3.367224,1.418608,7.94852,5.8362,4.301075,3.98743,3.53522,4.393095,1.4658571428571427,4.276935,3.939405,5.2189,3.71834,2.4069333333333334,6.5001478418803424,0.8800375,0.8800375,2.549506666666667,0.9373957142857143,4.11197,2.85051,1.0741375,1.8113266666666668,0.4192808333333333,6.259635,0.9991575,2.819165,3.645285,4.015665,3.50936,4.070285,5.5104,5.5765425,3.295465,3.1785,2.49556,4.218205,4.18993,4.26082,3.76014,3.641295,6.0292,4.284325,4.429346111111111,5.445543,3.671245,3.3528075,2.215615,3.3528075,6.941375,40.89519157900433,3.806785,3.44703,2.97641,4.324465,4.33513,3.482535,3.606125,3.918755,4.602645,4.00985,1.6181983333333332,4.43907,2.69375,4.48017,5.2872,5.1447,2.45412,4.3823,3.82783,3.368325,1.426116,0.6457223076923077,1.715404,3.5188333333333333,2.8391366666666666,1.3004625,2.7901966666666667,2.5946266666666666,2.6454233333333335,3.6424333333333334,3.031076666666667,1.396194,2.7017733333333336,3.844666666666667,1.9500275675675676,3.0108633333333334,3.1774620000000002,2.95206,2.5194,3.3627000000000002,1.191788888888889,3.740695,3.95419,1.2314483333333335,1.2314483333333335,1.2314483333333335,1.2314483333333335,2.846689393939394,2.0724566666666666,2.342845,3.20419,4.813775,4.82571,4.00475,4.426105,5.5684,4.72452,2.21294,6.15165,3.83343,3.05901,4.28832,3.032805,4.282075,4.086305,0.6954215384615385,1.467242857142857,1.6959966666666666,4.16436,3.799065,4.895455,4.14401,5.985860000000001,2.3115166666666664,4.358685,1.4564700000000002,3.361475,5.15705,1.6039066666666668,5.1653,0.7260991666666667,4.11148,1.156798,1.144805,3.627125,4.10506,5.03615,5.11905,6.1722,4.34074,1.587482,2.877825,1.4728725,3.471845,3.274665,2.4890922222222223,1.9866225,3.126825,1.2784083333333334,3.583875,4.704045,2.964093333333333,5.6572,119.78654548520923,0.4855044444444444,4.728615,2.282973333333333,4.774795,4.09818,3.346195,1.54588,0.30439238095238097,2.85833,3.746935,5.1883,3.44869,3.533615,4.373785,4.365565,5.2111,8.119146666666666,0.6823,2.590495,0.9640825,10.951596,3.02124,3.58964,0.8942266666666667,2.275415,2.84539,2.08778,3.3645666666666667,3.2407466666666664,2.55004,4.39834,2.9442166666666663,2.3547333333333333,2.30127,4.324655,3.173385,3.015515,3.679195,3.75776,3.36062,2.3741833333333333,3.81225,3.71674,3.11403,0.922841111111111,2.5417866666666664,4.39834,4.687665,5.4133,4.073495,4.113385,1.97248,11.08192,3.901,2.745595,4.190075,5.1633,0.5392206666666667,0.5392206666666667,4.00889,4.00889,3.25659,3.537333333333333,1.8184681818181818,0.5420391666666667,2.86288,4.330205,4.177465,3.3173,4.003415,5.4856,4.774165,2.24393,4.85918,2.1580525,2.807385,3.9580266666666666,1.79254,2.127215,0.48640999999999995,1.2002359999999999,1.2002359999999999,1.913435,4.355035,4.8057,4.87285,6.360326,2.743255,3.038775,1.90102,2.02609,3.8309175,3.76883,4.85852,2.365885,4.85852,4.467225,3.484605,6.0724,3.95101,2.4110366666666665,2.02939,2.4294466666666668,1.3868375,1.4171525,1.6070825,1.73985,1.6261925,2.137605,3.9059000000000004,4.44335,2.36197,6.79805,2.946986666666667,4.301205,3.249425,4.222665,2.9473033333333336,2.971356666666667,6.303786666666667,3.4128666666666665,4.696716,3.0872266666666666,1.4751375,2.5284033333333333,2.610673333333333,2.307776666666667,6.1716,4.3373099999999996,4.51434,12.346885203826874,0.7712433333333334,1.9981015,2.1696825,1.490466,1.2299114285714285,2.52255,2.3315425,2.530575,2.4119975,0.7485684615384615,1.919,0.5286736842105263,4.503655,1.902725,3.79634,4.45718,2.3683575,5.64881,3.48257,7.35795,4.182695,2.829105,3.371495,4.681875,4.9791,2.790913523809524,4.458755,2.12182,2.12182,4.716925,3.8762,4.180465,4.077405,3.2366233333333336,3.737985,4.707165,5.22215,4.543855,4.42448,4.511275,4.39462,2.5332,4.956795,1.09495,4.54887,4.58618,2.518683333333333,2.1542666666666666,4.55815,1.5207766666666667,4.883,1.922005,5.754815289855072,3.97023,4.183455,1.5663466666666668,3.7751391666666665,3.7751391666666665,12.393464999999999,4.03764,4.24624,1.11081,4.270966,2.25462,1.4845675,2.299065,1.6431875,2.0038275,1.669726,3.087915,6.0315,1.919755,5.02675,4.576405833333333,5.52385,2.1083925,2.022765,3.419595,4.286885,5.50775,3.926005,7.010515,3.0765533333333335,2.6488633333333333,0.3579172222222222,3.788575,4.392945,3.317293333333333,6.159898333333333,2.5872033333333335,3.08356,1.2536866666666666,1.4867166666666665,0.61541375,1.465764,2.955075,1.4552800000000001,1.4178716666666666,0.61819125,1.282598,4.52275,2.4399925,0.5984638461538462,1.5622850000000001,1.7088525,1.6455380000000002,1.1969283333333334,1.932445,1.4867166666666665,2.45512,1.282598,1.282598,0.5984638461538462,1.6025428571428573,2.4587,1.29343,2.622275,0.5984638461538462,2.6431,2.4587,1.2421383333333333,1.2421383333333333,1.2421383333333333,1.902478,1.2365875,0.5984638461538462,1.1265800000000001,1.106565,0.9832455555555555,1.8112860000000002,2.683325,0.8215325,2.1595675,1.4961714285714287,0.5984638461538462,1.7881399999999998,1.4867166666666665,2.017116666666667,1.8890500000000001,0.8988889999999999,2.017116666666667,1.06043,2.34017,2.4109675,2.396375,1.106565,2.06032,1.2784083333333334,1.2784083333333334,0.8703672727272728,0.8703672727272728,0.8703672727272728,1.2536866666666666,1.4867166666666665,1.4961714285714287,1.5622850000000001,0.9028385714285714,1.8890500000000001,1.288972,1.648838,2.03548,1.2536866666666666,2.7648599999999997,12.50768,0.61819125,2.58824,1.7105499999999998,2.4369175,0.93018,0.93018,0.5984638461538462,0.9207788888888889,1.5295999999999998,1.4961714285714287,1.822562,1.8890500000000001,1.107761111111111,1.107761111111111,1.685332,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,2.8335633333333337,1.06043,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.3704663636363636,54.07965143434343,1.484,1.4695766666666668,1.4961714285714287,1.7105499999999998,0.9028385714285714,0.6287882352941176,0.733758,0.733758,0.733758,0.733758,4.337366666666667,15.865754583333333,3.409933333333333,0.5768718181818181,1.511184,1.511184,1.511184,0.5768718181818181,2.955075,0.5984638461538462,1.7881399999999998,1.4178716666666666,2.5694,1.06043,2.4021475,1.06043,1.571784,1.571784,2.109783333333333,2.109783333333333,0.5984638461538462,2.01778,2.01778,0.9312727272727273,0.20210277777777777,2.955075,1.429685,2.4444375,0.5768718181818181,0.5768718181818181,0.5768718181818181,0.5768718181818181,0.5768718181818181,1.7105499999999998,0.3704663636363636,1.06043,2.1425025,2.1425025,2.5008,2.821566666666667,0.6315809523809524,0.6315809523809524,3.4794666666666667,4.1361,1.2366357142857143,3.335366666666667,0.970646,2.55335,2.00984,1.1131933333333335,2.8182466666666666,1.8543875,3.174656666666667,5.27945,2.394585,1.189111111111111,4.350095,4.229835,2.6840733333333335,1.721998,2.3102193846153845,4.76487,1.7803277777777777,2.6942166666666663,2.97419,3.1269066666666667,2.504605,6.2910666666666675,4.154065,0.20210277777777777,2.997106666666667,4.8764,3.485,4.580255,4.40646,4.206745,2.7255633333333336,1.832112,4.237325,4.513605,4.38226,4.84576,4.97781,3.228445,0.7046241666666666,6.8704149999999995,1.5702583333333333,3.034534,4.424595,2.62928,2.62928,0.8571736363636364,1.9866225,4.25561,3.098915,5.05815,3.89736,4.76575,5.18745,1.0816828571428572,4.70078,5.38035,6.5662988194444445,2.2447966666666668,4.273055,3.872605,3.8327,3.88012,3.93632,4.26942,6.002829999999999,5.1538,4.328804999999999,3.705375,4.606858333333333,7.418327,1.8723375,2.2331479487179484,2.8274066666666666,1.7720900000000002,2.7309366666666666,1.8545333333333334,5.266,2.96223,5.8921,1.8371819999999999,4.89787,4.101265,3.55428,4.368755,3.800465,2.5256000000000003,2.7711433333333333,2.70996,2.55564,2.5460333333333334,1.654305,2.7888933333333337,2.8240166666666666,2.19754,2.19754,4.670175,2.90148,2.0648833333333334,2.99093,2.00673,2.714676666666667,3.0903333333333336,2.654053333333333,3.155483333333333,5.30575,3.91945,3.846235,3.254944,3.254944,4.052095,3.1394699999999998,3.777495,4.51248,3.899205,3.43292,3.369005,7.3439,2.0716675,1.9687,3.461755,3.22036,1.1527866666666666,1.1527866666666666,3.45154,1.78035,4.15185,3.79073,3.28204,2.0814615,2.058999083333333,0.5550825,3.57522,4.061705,1.894195,2.41473,4.152265,1.38258,4.54666,1.2212633333333334,0.39605285714285715,0.5422678571428572,21.32258308829365,0.5422678571428572,0.39605285714285715,0.6884828571428572,9.726799999999999,2.6445933333333334,3.455655,3.97516,3.5320650000000002,2.894605,4.172382142857143,2.257465,2.394205,3.676945,2.943825,4.03693,4.281945,3.56076,2.284655,3.14542,3.65995,3.961745,3.20493,1.097415,1.097415,1.097415,1.097415,3.374595,2.994505,3.245265,1.9228766666666666,1.2382266666666666,2.42926,3.642185,3.561625,2.91987,3.165755,2.573605,2.4573175000000003,3.915615,4.18304,1.06154,2.6950033333333336,1.03457,2.67479,1.6279533333333334,3.7726333333333333,4.853625,2.360986666666667,3.54026,3.8641499999999995,0.8270255555555555,0.25947,0.25947,0.5675555555555555,0.25947,0.25947,0.25947,0.5675555555555555,4.439615,7.531793333333333,3.64964,0.53071625,3.63126,7.6725,3.30235,3.0253033333333335,1.1966833333333333,4.53364,5.3064,4.205895,4.924425,1.6646139999999998,4.63039,2.2121933333333335,2.3178473333333334,3.479715,5.3475,0.8316271428571429,0.8316271428571429,3.472305,2.85291,1.8955,3.24552,2.45774,6.51615,2.737815,6.1529,6.13835,5.6578,2.234775,1.65833,4.514075,3.40641,2.369915,3.85123,3.095055,1.741755,1.1899866666666667,4.141405,3.41071,4.846793333333333,6.084758333333333,1.4859116666666665,4.01613,1.12274,2.5626633333333335,3.17618,3.88432,0.3930021428571429,3.655845,4.026205,0.914472,2.5242999999999998,7.649025,3.217045,2.13241,5.768846,4.525115,3.65636,1.4102766666666666,5.453513333333333,2.659403333333333,3.0208033333333333,3.6104000000000003,2.034656666666667,2.034656666666667,6.2911,6.2911,3.6754446428571432,3.6754446428571432,11.1664,3.6754446428571432,3.6754446428571432,4.337255753968254,6.7407,3.94224,3.3728999999999996,2.880686666666667,4.422305,3.44385,3.23982,3.1361033333333332,4.73658,3.1548200000000004,2.7229033333333335,3.3505000000000003,2.2950333333333335,2.685245,5.04035,7.355315,6.378485,5.06505,3.77438,4.0215,6.8345460000000005,5.2075,4.618405,3.83524,4.025815,2.373483333333333,2.197145,2.202485,5.52645,5.5471,4.5887125,4.110615,2.396526666666667,2.40184,6.721245,1.902478,2.561533333333333,3.3425333333333334,3.3425333333333334,3.237365,5.1051,0.8035416666666667,3.600766666666667,3.61694,2.7723866666666663,10.1594275,4.079525,2.76843,2.38667,4.441495,5.5923,3.091515,5.3845,2.5735466666666666,4.72329,3.04157,4.26469,5.3818,4.63177,0.9006599999999999,3.29118,0.98597625,2.5112133333333335,5.051034470588235,8.70961,2.64897,3.3601666666666667,6.656961666666666,1.7516639999999999,4.402465,5.6279,3.43828,3.73957,2.1438966666666666,4.41225,2.34650875,0.43575153846153847,4.99961,2.759865,3.4388,4.538195,4.62886,5.38345,6.7058125,4.29102,5.6229,7.3434275,55.031796666666665,4.647355,3.87936,4.776055,5.84005,4.366115,5.0805,4.0399,4.67742,1.9394,3.951165,4.006105,4.65933,2.686545,5.1027,3.841525,1.6601019999999997,5.24865,6.1694,6.997533333333333,5.50005,3.331085,4.686835,3.322205,3.2131,3.61824,4.40527,3.76505,6.8792,2.677525,1.0802285714285715,2.38882875,0.600754,0.600754,3.21916,0.600754,2.4333001785714288,2.4333001785714288,3.1294001785714287,4.74543875,5.091041428571428,2.38882875,4.9479500000000005,2.7898975,1.448955,5.699,2.216605,6.815796666666667,5.561776666666667,10.544421356060607,3.1841399999999997,2.46619,0.21549727272727273,1.9034086666666665,1.9513266666666667,0.82385875,1.1915383333333334,2.702223333333333,2.375505,2.577025,0.598836,27.111293333333332,1.79079,0.7816384615384616,2.46416,2.46416,0.38175222222222227,1.665665,3.1565925000000004,1.25898,1.5569125,1.6306525,4.132005,2.88559,1.9689133333333333,2.39404,1.116875,1.8498675,1.4789899999999998,5.18104425,3.440305,6.783645,2.380995,3.2665933333333332,0.9582766666666668,2.257085,5.2299,6.10935,3.1832933333333333,2.18198,5.349406666666667,2.00054,2.50936,4.3171725,1.1375066666666667,3.5114666666666667,2.3301166666666666,5.20315,4.81537,6.23925,2.981165,4.023705,4.023705,5.18275,2.121425,5.4365,2.9024199999999998,1.64279,3.06529,3.27076,5.441531,4.06408,2.7968666666666664,3.3047833333333334,2.99307,0.9909085714285714,5.32165,0.89967,5.538016666666667,4.427295,7.42424,4.01899,4.4677,3.993435,8.212321666666666,4.16051,4.40022,1.19786,0.6946064285714285,4.55138,4.246815,2.07355,3.11147,3.218895,4.18675,2.27424,4.93383,2.4483366666666666,5.12915,5.25475,5.44155,4.347745,4.57785,2.925325,6.374402,3.374915,4.439075,3.434755,4.61952,5.641465714285713,0.5930714285714286,3.602733333333333,1.8194766666666666,0.5491199999999999,4.016175,2.27731,0.97095625,2.0756,5.79816,3.7035,2.40209,2.79927,2.7535399999999997,5.1146,4.04792,1.7358821428571427,4.05249,2.2128466666666666,3.6648666666666667,4.19962,5.09855,3.1105058333333333,3.685,3.7119,2.01544,7.14077,4.8048,4.24486,5.1639,2.1947725,4.351935,4.654745,3.67214,3.804375,11.095939999999999,3.35969,5.107011666666667,4.72712,4.58608,2.3172275,4.249105,4.112015,4.87988,3.377133333333333,4.11409,1.4879775,2.9836533333333333,3.548485,3.83374,4.868565,1.87381,4.037775,3.225986666666667,5.36585,3.135146666666667,1.7443,3.93254,4.507645,1.101075,3.058405,2.7555633333333334,4.525306,1.77645,1.7553333333333334,1.112745,3.497525,5.34315,5.4929775,3.71435,3.08469,2.38629,1.966435,1.83928,1.57531,5.93925,3.06397,1.8831025,0.8670461538461538,19.40642066025641,3.26571,2.6551808333333335,4.46204,3.9980761538461542,1.43551,2.6489168333333333,2.978584772727273,1.293544,1.9426133333333333,4.441475,4.667375,3.5048041666666663,2.98024,5.41215,4.74801,7.07653,4.4692058333333335,4.645345,3.59859,2.728813333333333,4.19657,3.85733,3.7151666666666667,4.008595,1.798635,4.87838,8.73182,3.28795,2.877975,3.47411,0.634255,3.1963899999999996,2.0836799999999998,2.3931225,4.42806,3.165535,5.0479,3.706425,2.88134,2.2670525,1.821855,0.776106,1.5222733333333334,1.2241,3.803795,3.72951,4.63588,4.677265,7.54087,2.268336666666667,1.4362840000000001,2.30841,7.600723333333334,3.143815,2.945425,2.98124,4.381705,3.1961625,3.56714,1.4060840000000001,4.66936,4.988395,4.241815,4.02252,3.637015,4.108605,4.32944,3.82189,4.32682,5.42015,2.18564,3.3120999999999996,3.28924,5.35805,3.21333,4.1211255,2.90148,2.88616,2.1289599999999997,2.321213333333333,2.1379366666666666,2.580043,2.580043,2.0241933333333333,2.8565199999999997,2.34137,2.351036666666667,2.05091,4.13313,2.3945933333333334,2.8962333333333334,3.0557133333333333,1.7182033333333333,4.36348,2.757155,4.05228,2.561783333333333,5.3179,5.00865,4.788875000000001,2.487085,2.443215,2.814675,3.02462,2.045755,2.838955,1.9458125,2.553425,2.7983,6.801094833333334,4.3913075,3.49057,0.600231875,4.465145,3.868875,4.074335,3.306915,3.854945,3.76295,6.21285,4.266405,3.26844,2.7267617857142854,2.162469333333333,2.5032,1.632876,1.6693460000000002,1.584462,2.06754,1.7745525,1.1431733333333334,4.1977722857142865,0.5984638461538462,0.5586333333333333,1.968992,1.532095,1.485562,1.3450883333333332,2.239249393939394,1.4536300000000002,1.71168,0.61369,166.8704467041741,0.45570133333333335,2.0301400000000003,1.153782,1.18787,2.1513175,1.599255,2.0387475,2.23533,1.7191925,6.66045,3.31252,3.3576319047619045,1.5331166666666667,3.27975,1.2867766666666667,1.2867766666666667,5.60553,0.490115,2.045,3.295593333333333,3.0794599999999996,0.8353209090909091,0.548355294117647,1.1340107179487178,1.0184545454545455,2.255545,3.979795,1.9508025,2.1705875,2.1972466666666666,4.802625111111111,1.020331111111111,4.405635,3.63828,3.57064,7.2812,1.8977666666666666,2.8224,2.31495,3.8854319999999998,2.422205,3.27193,3.46063,3.43068,4.00852,2.9297,7.86372,2.172275,2.61387,2.98586,1.575575,2.821745,3.16807,2.749845,1.725995,1.68451,2.75291,4.08705,5.378731666666667,2.79536,2.88529,1.573975,3.974695,3.634933333333333,3.9176333333333333,3.07185,24.974215840354088,2.7070366666666668,2.71972,3.0558866666666664,3.4256666666666664,3.201256666666667,5.866183333333334,3.200253333333333,2.22496,3.5055,3.5467,2.1553366666666665,3.3199466666666666,3.29574,3.0299266666666664,1.7199666666666669,1.6663175,0.59099,2.3529766666666667,2.0190325,0.23715625,2.1220066666666666,2.572375,0.23715625,0.23715625,2.182839583333333,0.23715625,0.23715625,0.23715625,0.23715625,2.88374,2.4909766666666666,0.5443284615384616,3.0865657142857144,1.570585,1.920916,5.349,4.4729849999999995,5.9322775,1.9446825,5.00185,2.035635,2.61746,1.2792014285714284,5.721543333333333,2.780283333333333,6.11989,0.8253958333333333,1.494645,4.56708,4.77407,34.985591692474195,1.4916779999999998,1.3499033333333335,2.303263333333333,2.31908,0.8703672727272728,2.419846666666667,2.26157,2.6797400000000002,1.9667733333333333,2.47724,1.67378,2.5712466666666667,2.3543600000000002,2.2575833333333333,2.7874,2.50425,3.858065,3.4971333333333336,1.0726942857142858,3.94587,3.982265,19.972547277777778,2.7319433333333336,3.1816166666666668,2.6154533333333334,0.908794,3.1467479999999997,1.6635951111111111,3.1467479999999997,2.438213333333333,2.58473,2.8779766666666666,1.6102475,1.8778675,4.121355,4.04706,5.03525,4.281485,1.67017,5.1153,1.6117625,4.95716,4.042672619047619,4.441575,0.7341881818181818,2.0451525,2.0863625,2.884894,3.332655,1.0868525,3.264755,1.9820119999999999,2.044773333333333,1.07277,1.07277,3.5437,2.6485133333333333,4.313635,28.110750833333334,6.434659999999999,1.8863333333333332,3.59802,0.39464466666666664,6.06454,5.93015,2.6806533333333333,3.567305,5.4172325,3.6377,1.12849125,4.614395,1.284828,2.71178,4.419445,4.664,2.32652,3.234455,4.47617,2.549115,2.742662,4.29908,1.2906133333333334,2.4358558333333336,3.464665,5.3791,2.4990033333333335,3.019973333333333,2.7455700000000003,3.981145,4.0467,4.115145,4.329666666666667,1.736235,6.17418,2.48921,1.774244,4.052085,5.79831,4.05937,3.54824,0.75818625,2.959085,3.500745,2.05061,4.617527333333333,2.8287,3.89424,2.88368,3.4087,2.576665,3.1424566666666665,2.9176800000000003,3.12564,4.248755,5.54675,3.50227,1.77435,3.984275,4.17644,1.85989,2.13583,1.7114925,3.9153494444444443,4.48999,5.147950104166666,4.01364,3.312673333333333,3.724005,3.18378,1.3795666666666666,3.1659,2.912765,3.13629,4.554635,4.42271,4.233985,3.12801,1.90272,1.735945,1.53742,3.612435,2.48674,2.18743,3.34464,5.1281,1.60297,5.27395,1.368657142857143,1.9029375,3.24586,3.08933,3.08667,3.704305,3.11197,1.77509,0.9705142631578948,3.26006,4.92755,4.379035,8.742605,2.759846666666667,3.1864000000000003,1.5827499999999999,2.75508,2.6819933333333332,1.0548566666666666,2.75709,2.72791,2.9407766666666664,4.0168333333333335,3.01154,6.867553333333333,3.0746800000000003,0.7499781818181819,1.7438666666666667,3.72215,3.18434,3.401365,3.4905666666666666,2.613801,3.06011,2.944965,1.9868874285714286,3.879165,2.782065,3.33768,2.2088300000000003,4.62752,5.29975,4.42603,3.660205,3.6908,0.8939588888888887,4.68113,2.7992966666666668,2.6005233333333333,4.213505,2.7055733333333336,2.6548000000000003,0.4021642857142857,0.4021642857142857,4.221253333333333,4.126095,6.9462,3.11244,4.72863,3.60386,3.47874,4.730605,4.072095,1.0476275,3.7358,2.6419900000000003,4.197926666666667,2.97791,3.0742683333333334,1.7989133333333334,3.2493250000000002,2.36241,2.75297,2.5891366666666666,2.9112566666666666,1.8663733333333334,22.19044814245718,4.330735,4.044455,3.986885,3.3297,4.43049,3.28623,4.520055,4.35378,3.760555,3.723985,3.36391,2.591083333333333,2.8379966666666667,2.9336800000000003,3.0872316666666664,2.70589,4.33124,3.49654,4.86445,4.84122,4.305665,1.320738,1.497862,1.497862,5.14545,3.65528,2.5982433333333335,2.2223533333333334,2.8365333333333336,3.40299,3.54392,7.549048333333333,3.2101133333333336,3.5000666666666667,2.8672266666666664,5.48145,1.5624900000000002,6.0180625,2.41153,2.8105766666666665,1.6935525,3.6346,2.72552,6.63059,3.35656,2.828745,4.13507,4.07197,1.5292375,2.5116633333333334,1.7137533333333332,7.427628,4.270285,6.743883333333333,2.310235,3.808035,3.7007,4.06369,5.2123,3.4675333333333334,3.4675333333333334,2.2002175,4.341935,5.023,2.271425,6.626862857142857,1.629785,5.4987,8.862692000000001,3.861333333333333,4.3173140000000005,2.3310033333333333,2.13842,0.53653125,4.41418,2.569175,2.62265,3.711823,2.21398,2.4703166666666667,3.64422,5.78825,5.2985,5.1427,4.920695,4.39964,2.2866475,1.0239272727272726,2.995575,3.243825,2.7248900000000003,5.1644,4.045965,3.271525,2.705685,1.983474,4.174225,1.03858625,5.30105,1.0099444444444443,5.35285,3.354225,4.710005,5.07713,3.05474,3.22045,3.0815633333333334,2.35758,4.24435,3.167995,2.21607,3.642705,4.80214,5.765851666666666,4.558615,1.82966,3.55663,3.01483,5.48508,1.8899575,1.8899575,2.93295,2.45231,2.43974,2.7452633333333334,0.881123,6.1088,3.31664,1.98847,2.536165,2.54131,3.74246,2.636815,3.78989,5.30075,5.24935,4.91764,6.05845,5.88725,1.3593625,3.51766,1.1016916666666667,2.4999375,4.436133333333333,2.72237,3.063805,3.3328,4.97114,3.2618,0.45997473684210527,4.339295,4.10219,4.892055,3.364155,4.9756,5.3819,4.40689,4.10512,1.793995,4.32348,2.08318,4.358233333333334,4.358233333333334,6.60975,5.7258,5.3423,4.84667,2.652165,1.5624900000000002,4.137375,1.9823866666666667,1.6409333333333331,2.02075,4.282945,4.086465,4.4134,8.11147,1.5236616666666667,5.15205,1.2725766666666667,3.136015,6.0498,2.05021,4.607385,2.56041,4.92749,3.36132,4.77813,3.24283,4.232195,4.011005,5.8568,4.264645,4.069355,4.017625,5.8085,4.021345,4.511545,3.71401,4.301445,7.168248333333334,3.511595,7.29942,3.407595,5.6178,6.314112045454545,4.245835,3.565765,1.6057775,5.55305,3.920905,0.8525266666666667,8.20494,5.98505,4.919305,3.031785833333333,4.631195,2.90462,1.723996,3.88571,1.06154,5.86325,2.87453,4.52493,5.5788,4.495,3.997545,2.1085266666666667,4.47363,5.02535,1.761065,6.987065,2.888105,3.398645,5.00645,4.21354,2.284625,4.44018,3.48162,3.913345,2.6913633333333333,4.00435,3.67452,5.4542,4.548,3.300355,1.7688325,1.7688325,7.441238333333333,1.4713142857142858,4.993355,4.383555,5.1699,3.444205,3.808975,5.1245,3.8724,0.907995,0.907995,0.907995,3.591365,2.980435,4.003335,4.466134222222222,2.73454,1.4446466666666666,4.26749,2.2001025,2.751105,3.843645,4.55131,1.9152625,2.1206,5.82462,3.81386,2.848315,4.59984,1.6846925,2.002495,3.3130699999999997,2.68922,5.42055,1.407942,1.56259,0.98779125,3.92565,3.1365,2.69823,2.9992966666666665,5.28715,1.7490960000000002,2.06786,2.91209,1.6797714285714285,3.280345,3.58648,2.58575,5.5403,5.60575,2.78854,4.35847,3.64323,3.532515,3.383365,4.051175,3.57646,7.33024,5.1518,2.211466666666667,1.76715,3.39352,4.490135,4.220195,3.56229,2.890136666666667,4.118015,6.08315,5.0202,2.652206666666667,5.1829,3.88718,4.360335,8.260605,3.975935,0.7204981818181818,3.877645,4.301622500000001,2.170165,4.1691,3.7688333333333333,5.73065,3.93043,3.72674,3.679865,4.35968,4.643055,4.693285,2.86278,3.92414,4.934265,3.86578,2.56743,2.965195,6.34188,5.2046,2.15976,3.23935,4.615679166666667,4.0096,4.97246,4.280715,2.52662,0.8895822222222223,4.497466363636363,6.807255,3.510865,4.79073,3.663915,6.762158333333333,3.73302,3.6969,2.750026666666667,3.817985,1.827635,3.37537,4.32884,2.5241805,4.171025,5.98545,1.423755,4.841215,0.6305,6.10615,5.99295,6.0192,5.90375,1.6415749999999998,1.7524166666666667,4.583145,1.90286,5.58555,0.5438308333333334,5.9369,3.221355,1.5185499999999998,6.3392800000000005,6.56825,0.836075,1.5528149999999998,1.233606,1.233606,1.233606,2.31293,4.96221,3.624465,3.446105,4.106445,5.2382,3.767625,1.9053999999999998,4.225195,5.0024,0.3028878048780488,3.6679,4.566435,4.42391,38.80907625757576,6.0128875,4.904445,10.787602999999999,3.16652,4.068725,7.60274,3.136125,4.93231,3.88924,4.03201,9.40956,3.90829,2.7488533333333334,2.65198,4.71355,4.330315,3.64135,4.404515,2.17936,4.476195,4.273175,6.818220999999999,4.177155,5.03425,2.3378475,4.233745,0.519996875,1.4239816666666665,3.345095,6.1282,3.04844,1.2182833333333334,1.2182833333333334,3.16014,3.960145,4.17365,2.45265,1.6739333333333333,3.406985,4.33516,1.821735,3.2767999999999997,1.5633380000000001,1.9317399999999998,4.077545,4.44695,2.068925,4.68085,2.2931125,1.98143,3.62752,3.783655,4.05551,3.95125,6.047521333333334,2.3890013333333333,3.73584,0.7046572727272727,0.635075,3.508515,2.338245,8.602283333333334,3.409933333333333,4.832485,1.634045,4.595845,1.5665583333333333,3.956735,4.33142,2.5408166666666667,3.72239,4.93318,0.416139,0.416139,3.8083333333333336,3.2875,2.835736666666667,3.688025,3.703895,5.59905,1.0328454545454546,9.85081,10.89175,1.932445,4.7682,4.75999,4.85372,3.603595,2.54583,2.0073,2.0222,9.88814,2.114105,2.6807700000000003,3.62923,4.44944,3.62923,2.1882575,2.8147466666666667,2.7704966666666664,0.7341754545454545,5.393735833333334,2.8026700000000004,2.64556,4.05209,8.32339,9.8834,4.132395,4.098685,4.061205,6.5828225,1.9539525,1.3982,26.234785833333333,4.26525,3.85915,0.9919520000000001,4.657115,4.141565,4.98954,4.64572,5.49195,5.663223333333333,3.0155133333333333,2.147743333333333,0.6504588235294118,0.7415533333333334,4.727055,5.21255,1.3798216666666667,4.429958333333333,0.9013416666666667,3.626666666666667,1.4878133333333334,4.27657,5.9551,1.822615,2.590215,2.19772,3.82444,2.836345,0.40364,3.82722,3.609645,2.6790133333333332,3.227255,5.0222,2.9698966666666666,4.267795,3.1483,4.83021,8.164313333333334,4.687255,7.88297,2.7051,2.6222133333333333,4.49479,4.35232,4.38556,4.447675,3.728015,4.490405,1.18208375,3.3093508333333332,3.2679172142857142,0.708284,1.497862,1.497862,4.29489,7.209426666666667,0.8183,4.691615,0.8852683333333333,2.9356166666666668,2.367783333333333,2.599874090909091,6.107223333333334,2.4781166666666667,1.1253666666666666,2.281606666666667,1.2184625,1.9132033333333334,3.142996666666667,3.1062466666666664,3.400866666666667,2.46885,0.8852683333333333,4.56877,4.389495,5.48655,2.850425,3.89677,2.10366,5.93585,4.80249,4.265085,2.8539133333333333,3.06965,2.20599,1.336085,4.27659,2.634625,4.27038,5.69975,1.595664,4.67808,2.9574866666666666,6.466906666666667,3.52006,2.4011,0.8852683333333333,2.44103,2.43421,7.246358444444445,2.2709066666666664,1.873828,2.2709066666666664,0.4269658333333333,1.1761599999999999,3.81718,2.43933,1.65941,3.55646,3.8806920000000003,0.640467,0.640467,0.640467,8.253615,1.5916679999999999,0.7286845454545454,35.23902065584416,1.8236451111111112,0.6618111111111111,2.97898,0.6618111111111111,3.83267,1.994705,2.510745,2.51546,5.119,4.205995,4.51404,2.4462366666666666,0.8829828571428572,4.280335,3.3534,4.908975,1.0303371428571428,2.949575,2.949575,3.84736,4.277885,3.59804,4.854371153846154,3.19167,4.709445,5.2404,1.775298,0.999115,5.3266,6.56015,3.856595,0.665173,4.213195,4.021065,0.95064625,4.48497,2.37308,3.972485,4.23889,1.8535331313131314,1.8535331313131314,3.875845,3.361025,0.8712688888888889,3.096535,2.96543,3.33289,4.006305,4.440695,0.5351385714285714,0.31690294117647055,0.31690294117647055,0.31690294117647055,0.8520415126050419,0.5957061538461539,0.6557489999999999,0.31690294117647055,0.31690294117647055,6.847885,0.31690294117647055,0.8520415126050419,3.42144,1.2768975,4.495945,1.1712083333333334,0.5802669230769231,0.95064625,2.579945,2.595625,3.971525,2.976945,0.31690294117647055,0.31690294117647055,4.41241,3.74219,4.215535,2.744405,3.81697,1.482506,3.818535,0.6557489999999999,0.6557489999999999,4.68555,3.114335,2.77448,2.91353,3.69632,1.01651,0.9108307692307692,10.936435,1.2396275,3.50024,4.62077,4.960485,2.10894,0.3773004347826087,0.856335,2.7178633333333333,3.099305,3.083255,4.1591,1.342324,6.1004,3.285975,4.923295,3.89813,3.0330933333333334,2.912943333333333,6.26259,2.5853766666666664,4.68362,4.228935,3.8641499999999995,5.919595,0.5325833333333333,4.229575,3.3593333333333333,1.8563933333333333,0.6485299999999999,4.11554,4.32526,2.608795,2.358605,2.148665,5.0987,2.835325,2.852195,0.99709,0.47641692307692307,3.93689,0.35387599999999997,0.7949645454545454,3.938725,3.170785,4.06298,2.699815,5.3564,4.357235,6.265378,3.6099,3.503205,4.42175,1.585455,5.0238,1.704216,3.95326,2.500825,5.946036666666666,2.57943,1.023958,4.57559,7.0369,6.642304583333333,3.3909000000000002,0.8142891666666667,2.8524066666666665,4.308585,3.942765,4.57429,4.52805,4.177425,4.934815,2.934295,4.215765,1.8399733333333332,2.38599,1.4315933333333335,4.206625,9.495335,3.138325,3.550295,6.02605,2.93441,4.100185,2.5266566666666668,2.8247116666666665,3.375005,3.69618,3.48493,3.37358,3.37083,5.08685,5.77965,4.09181,4.772074999999999,4.880335,3.922485,2.654215,5.46605,7.8157749999999995,0.9412688888888889,3.834595,4.14541,4.910325,5.5597,4.900265,2.410885,8.24581,2.48631,3.51498,6.082,3.77303,4.29219,2.1586600000000002,1.6651575,3.0379766666666668,2.28315,2.1023533333333333,2.8979966666666663,4.293125,4.64968,4.06922,3.45389,4.641898333333334,3.25355,3.098065,4.062215,5.6654,2.914625,5.4378105,4.13303,3.861795,3.667795,7.61611,3.4737,3.76783,4.270155,4.96378,3.036885,10.4711,1.3299616666666667,2.13392,3.622585,2.8087999999999997,2.8087999999999997,2.00915,7.7962066666666665,0.8608666666666667,3.07961,0.89007875,2.06786,4.35945,4.79811,3.88237,4.10701,2.75269,3.216235,3.969765,3.814915,4.201335,3.025755,2.4976866666666666,4.049505,4.667063333333333,3.26774,4.23028,1.661046,1.616396,2.6641133333333333,5.64605,2.24702,1.7116866666666668,1.9743525,4.045115,4.796155,3.087025,2.795165,0.5382888888888888,2.41567,7.442335,3.275545,1.4909866666666665,0.83443625,1.20973,2.0073833333333333,2.3428375,1.31822,2.1672433333333334,4.3374334999999995,3.93831,4.571925,2.41126,2.004565,6.5554049999999995,3.073225,2.31535,2.31535,2.31535,6.429246666666666,2.22568,3.464845,2.47095,0.461676,1.159842,2.37652,5.836455000000001,0.44476,3.71471,3.9188633333333334,5.8634,2.9637233333333333,0.44476,2.9637233333333333,0.9357625,1.162292,5.84965,4.178835,6.72483,4.013265,4.622235,3.767265,4.179725,5.0703,5.2528,6.13415,3.729995,3.474775,5.00135,4.527885,4.25797,4.357705,4.472975,1.3550283333333333,2.4206866666666667,1.24205875,2.15358,3.2549054166666664,1.60922375,7.1042075,5.48508,2.5976150000000002,4.48755,3.010195,4.76496,2.79568,4.104815,4.938535,9.4101675,5.1798,4.39673,2.5245,2.7919,2.03768,0.634255,2.0986511111111112,5.5805,5.2999,5.0583,4.518235,0.5329966666666667,2.0533125,1.5765175,4.3489,0.7328707692307692,6.3037125,2.0380875,1.1746875,1.1746875,3.911908,2.01396,3.07591,2.6155,4.621555,3.8458550000000002,3.8458550000000002,4.58502,5.411365,2.768383333333333,2.47036,3.3042233333333333,4.673795,1.756128,2.7789,5.6353,5.15875,4.494255,3.95998,3.9397383333333336,4.528725,3.491245833333333,3.099543333333333,2.37644,4.28231,5.3171,3.33671125,5.1232,5.4517,2.06536,2.5942833333333333,6.2705,7.0206,1.147732,2.666925,2.3519675,2.699343333333333,2.29401,2.526625,2.3931025,1.0423633333333333,1.8628075,2.636675,2.3580875,2.476531666666667,2.476531666666667,2.884819,3.0217,2.254676153846154,2.60305,2.367075,1.9655719999999999,1.5434566666666667,5.029002500000001,14.685031666666667,2.9809633333333334,3.24187,1.78904,1.78904,1.6429033333333332,1.6429033333333332,2.9258366666666666,3.5362666666666667,2.88714,1.94246,1.94246,3.9796666666666667,2.46855,1.12537,1.4547,2.9609199999999998,2.893853333333333,3.5564666666666667,2.6265292857142857,3.3498,3.0784033333333336,0.6996439999999999,2.6824,3.6211040000000003,6.99661,4.65155,5.4821,4.332515,3.417775,4.94583,4.7112,2.752076666666667,4.166095,1.3605066666666668,3.1434866666666665,5.7634,5.18675,2.86939,1.2551933333333334,3.175495,2.4659999999999997,2.9702633333333335,1.507045,0.678325,3.0708466666666667,4.416425,4.845755,4.32343,4.7624,3.0997266666666667,2.0861466666666666,3.2978491666666665,2.3514466666666665,3.2645999999999997,3.1814999999999998,3.1099099999999997,2.592633333333333,2.249913333333333,3.6456999999999997,2.81643,5.2667,4.719375,5.236011666666666,5.236011666666666,3.294675,4.15189,3.702215,3.677475,2.88054,4.720265,3.42794,3.0543266666666664,6.01505,0.7851275000000001,5.1398,4.79803,2.539633333333333,5.197473333333333,3.4469999999999996,1.6702333333333332,1.2762242857142856,2.0943433333333332,0.959125,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.5408357142857143,0.5408357142857143,1.204595,0.8405197222222223,1.6163306313131311,1.0539342857142857,1.0539342857142857,1.232728409090909,0.38360222222222223,0.38764,1.2267875,1.44866,2.57327,2.259505,6.290713333333333,3.0964333333333336,3.750165,3.7228200000000005,4.779936,1.4070233333333333,4.87639,4.130595,4.860775,2.908715,1.470204,4.394413846153846,3.87799,4.34807,4.583935,3.041735,4.895745,4.749055,4.724335,1.274184,3.864575,4.71669,3.263115,2.397953333333333,3.367755,2.468785,3.323855,4.71462,3.045503333333333,4.8813,8.84915,3.31657,4.90632,4.36502,4.420425,2.606943333333333,4.44554,0.9594085714285715,4.38392,3.64578,2.1505400000000003,1.29275,2.88587,1.2968533333333332,0.505382,3.4571666666666663,4.41493,5.173513333333333,3.7083,2.4923025,2.521605,4.853115,3.980066666666667,4.560145,2.6475,2.3087733333333333,4.11889,3.781265,3.782825,5.1457,4.535555,3.705685,4.566935,3.115016666666667,4.385465,2.17874875,4.344515,5.2115,3.322605,4.36415,2.535095,3.849565,5.34175,3.775235,5.12215,4.661265,4.7848,2.2908666666666666,4.99357,5.021,4.885175,2.121205,1.1562825,4.068955,4.448925,3.982875,5.1355,1.98172,3.93289,2.342475,4.95804,4.709865,4.70184,2.2986175,4.15884,4.48212,4.216005,2.4450833333333333,4.44509,4.47124,5.02485,3.68572,2.121205,2.198765,2.67749,4.890365,4.017515,3.977795,3.45874,4.84298,2.392865,6.9686,4.932945,4.762155,5.352148875,5.101122500000001,5.1626,3.51429875,2.9577416666666667,2.9577416666666667,3.75036,3.61299,4.50182,2.005165,2.93234875,1.02551875,2.4067666666666665,2.997393333333333,2.4116500000000003,2.96504,4.140715,2.7002166666666665,5.11685,2.5707566666666666,4.35818,4.6335275,2.20932,4.19862,2.77745,2.7059233333333332,4.00484,0.861258,4.97263,4.57195,6.104715000000001,4.624145,5.4817,1.2422142857142855,4.697465,6.32165,8.29276,3.23165,3.3166100000000003,1.9143059999999998,0.8029299999999999,3.83854,1.04063,4.79298,4.537125,5.6723,3.04945,3.951315,1.1176314285714286,3.40859,3.61741,4.428485,4.06807,2.93289,2.820555,2.398875,4.265835,4.846405,5.71955,4.506905,3.45657,0.4073888888888889,0.4073888888888889,0.4073888888888889,0.4073888888888889,5.56945,2.92129,6.198,3.1480633333333334,5.04495,4.688025,3.70141,2.200505,2.5502,1.4542933333333332,5.14485,2.7640166666666666,4.27823,4.094725,3.420415,1.686055,1.14803375,4.271115,2.365095,5.7879483333333335,3.80318,4.831795,2.282075,1.503325,0.8777788888888889,3.23941,4.3735,3.28172,2.1262,7.837305000000001,4.96981,3.61092,2.30654,0.504321,3.128015,2.607645,2.10312,1.836355,2.820775,2.82505,2.341855,2.928653333333333,2.932125,3.61547,4.63536,3.82372,3.82441,3.32987,5.670715,0.6184879999999999,4.60805,5.90085,5.089,4.746525,3.332546666666667,5.235,4.59327,4.29851,5.393665,5.3377,4.715595,4.55945,3.68546,5.0163,2.853765,8.90482,5.0607,4.057175,4.627015,4.94809,5.8164,3.461125,1.1081577777777778,6.005166666666668,3.252705,4.595435,1.3246483333333334,4.38982,3.68096,6.348563333333333,4.636955,3.181055,1.8451966666666666,4.839715,2.09832,0.96199875,4.52662,6.06155,1.93224,2.345353333333333,2.8882666666666665,3.26818,3.618885,3.727675,4.928575,1.7721333333333333,4.236595,3.8638505,3.34255,3.8107666666666664,3.763105,2.800505,2.68191,2.0571,2.37749,2.6713166666666663,4.45225,0.5550825,2.6282866666666664,4.500015,2.944705,3.5444999999999998,4.4277,4.951535,3.89006,16.652453984848485,2.5235833333333333,4.136633333333333,1.4815200000000002,0.9066918181818182,0.9066918181818182,0.9066918181818182,0.9066918181818182,0.9066918181818182,4.573205,4.762965,4.869155,9.0138455,2.495445,2.495445,4.61175,4.743690833333333,1.3360575,2.13659,3.70692,2.40588,2.4263,2.1374025,3.0801,3.816684666666667,1.7868075,3.41542,0.8151357142857142,2.912516666666667,2.68385,3.06743,1.3928966666666664,3.1520733333333335,2.2123,0.9548425,2.778723333333333,2.70928,1.2251555555555556,2.4401800000000002,2.5056133333333332,2.3049666666666666,4.370395333333333,1.7832466666666666,2.806486666666667,2.1347025,2.5975,1.0603955555555555,2.818903333333333,4.782075333333333,3.7392,1.0203525,2.8388299999999997,1.348655,2.3008333333333333,2.3094933333333336,4.6318616666666665,3.060116666666667,2.3663933333333333,4.559689333333333,2.6300833333333333,2.14611,2.8365566666666666,2.3617,1.66348,2.7310733333333332,3.1215833333333336,2.8242166666666666,2.43158,3.0924766666666668,2.622333333333333,2.367655,3.808873,3.808873,2.956323333333333,1.9929933333333334,1.91556,2.6077066666666666,5.485446666666666,2.9979899999999997,2.05706,1.738565,3.0335666666666667,4.26379,2.3146033333333333,1.154606,2.819986,1.6010733333333331,3.3074066666666666,2.2277133333333334,2.7031433333333332,2.2020833333333334,3.1648933333333336,1.314956,1.6942133333333331,1.50305,4.347603333333334,2.6056866666666667,4.102635,1.008841111111111,4.0771,2.08569,2.0269575,1.737988,1.66795,3.2525566666666665,22.998287954545454,7.6792333333333325,2.6249933333333333,3.480009166666667,2.7638866666666666,10.053174,2.98615,0.9839775,2.47668,2.39371,2.13198,2.8017333333333334,2.5194666666666667,2.52697,0.9322969999999999,3.04259,2.59571,2.9672733333333334,2.6826066666666666,2.6600233333333336,2.149296666666667,2.11782,2.7993466666666666,2.66359,2.0789425,1.571872,5.10899,4.475555,2.3910125,2.975575,2.2173266666666667,2.456026666666667,8.257069166666668,1.9704666666666668,4.870695,2.4471325,1.895265,7.89559,2.9384333333333337,2.7590800000000004,2.4476825,1.929548,1.4916996153846154,3.2200133333333336,2.934563333333333,4.05448,1.391155,3.7441666666666666,1.50111,1.50111,4.07874,4.29608,3.58596,3.58596,5.857060000000001,3.497235,0.459131,12.032986266788766,1.2323466666666667,0.9332971428571428,4.034151666666666,1.4595149572649573,1.7810225,6.0162933333333335,3.68735,0.7619245454545454,2.2145733333333335,5.101545878787879,2.427906833333333,3.989955,1.28048,5.44295,4.94088,4.983335,3.1760655,1.962558,2.25447,2.5717833333333333,2.3635966666666666,2.20532,5.084436666666667,4.300315,4.17071,1.92278,4.652705,4.082005,3.4674333333333336,2.164885,4.629255,2.498133333333333,8.784003333333333,6.565777499999999,1.8843175,3.04239,1.706148,4.5774333333333335,4.5774333333333335,3.023903333333333,2.7841466666666665,2.947095,4.94891,9.839329999999999,4.22816,2.4850025,5.4359,4.264745,5.14085,2.05314,0.8930725,1.3767366666666667,4.631185,4.84904,3.6423,2.7623533333333334,3.7909333333333333,2.176746666666667,3.998125,4.83892,3.329155,5.25825,3.1534666666666666,3.574165333333333,3.3699333333333334,3.1898033333333333,3.2839533333333333,6.2732,3.049975,5.3889,4.85922,3.079005,3.3448,3.3448,5.903320833333333,11.868485,3.6041666666666665,6.3942075,7.458634444444444,3.603045,2.4437333333333333,3.87309,1.30519,3.93586,2.355655,2.95641,3.01079,3.341533333333333,1.9937239999999998,2.39264,2.6376166666666667,2.5194966666666665,2.8650533333333335,3.114686666666667,3.937675,2.53961,2.8529,3.8405,2.63231,2.4232366666666665,1.10519,2.06498,2.6903133333333336,2.4139133333333334,2.58438,2.4683100000000002,3.6595333333333335,2.378363333333333,2.38473,2.4709166666666667,3.146853333333333,2.649,2.659056666666667,2.63564,3.2602766666666665,2.8177966666666667,3.3807,2.6235399999999998,2.368473333333333,2.33875,2.80022,2.710483333333333,3.5269,3.239656666666667,2.574175,1.868385,1.868385,0.7507633333333333,1.4060840000000001,3.989905,3.147765,2.6762766666666664,1.9937239999999998,3.220556666666667,1.1829814285714286,2.7419100000000003,0.5684086666666667,3.2647866666666663,3.11782,3.149745,2.980283333333333,2.511573333333333,2.6131366666666667,2.95242,2.6639466666666665,3.2443233333333334,4.395723333333334,1.49946,2.7168433333333333,2.4206433333333335,1.8105433333333334,2.1983333333333333,2.8939299999999997,2.565046666666667,1.613636,2.492576666666667,2.6161533333333336,2.4970166666666667,2.775,2.8709233333333333,2.80114,3.2127700000000003,1.3427525,2.8535633333333332,2.3390999999999997,3.6904333333333335,3.750033333333333,2.0026625,2.061853333333333,3.31945,2.5833533333333336,3.3721666666666668,2.6784033333333332,2.13625,5.341075,3.3419333333333334,2.217033333333333,1.5133839999999998,3.384066666666667,6.139543333333333,3.1054133333333334,3.5761000000000003,2.77075,3.029533333333333,4.710752,1.6485220000000003,1.1585777777777777,2.12439,1.7799120833333333,4.694405,2.641366666666667,3.1972066666666668,3.0354500000000004,3.2217266666666666,2.2680833333333332,3.5074666666666663,2.57835,1.645918,2.883156666666667,3.47555,3.6646,3.178085,3.55452,1.6252675,2.769875,3.576325,3.27532,2.31746,3.7135,4.017966666666667,3.8145333333333333,1.313705,5.643969,3.1853937500000002,1.5056216666666666,3.24179,3.275785,2.954835,3.571285,1.82398,1.82398,3.32142,2.9889833333333335,2.82691,4.944765,4.31112,4.313927333333334,1.4757440000000002,3.2203533333333336,2.474956666666667,4.238755,3.1973833333333332,4.89362,2.6117066666666666,2.3993166666666665,2.48408,3.736745,4.40666,1.627064,3.0436533333333333,2.75948,2.344695,4.297855,1.3528966666666669,3.079665,4.281505,2.70097,3.57687,4.08101,1.840715,1.6086566666666666,2.38311,1.045335,2.0275292857142855,1.8736625,0.44518714285714284,3.829245,2.4135,4.6125,4.192865,2.97661,4.696185,3.374033333333333,3.1237966666666668,3.450533333333333,2.4800133333333334,3.2730633333333334,2.8076733333333332,2.9897566666666666,2.3709700000000002,0.6658953846153846,2.3445566666666666,0.6255621428571428,1.9466733333333333,2.4688733333333333,3.1739933333333332,3.2432,1.4350866666666666,1.40158,4.374065,4.55382,3.19132,3.751635,3.124205,1.93144,3.85929,7.838148888888889,3.303845,4.939175,1.6393825,3.860925,1.8686275,4.32243,3.63364,2.04256,4.079575,3.25869,3.888815,3.72256,2.029085,3.996985,5.6172225000000005,4.79356,3.427475,2.967015,1.7088525,1.967685,3.89145,3.197345,3.19424,3.77083,3.470005,3.617805,1.610585,3.618575,3.01954,1.7261925,4.1019974999999995,1.0699583333333333,3.31838,1.6891325,4.05094,4.463311666666667,3.59516,3.0612399999999997,3.709085,3.375205,1.8536275,2.2814525,3.9046000000000003,2.6673,5.6871275,4.27099,4.53591,2.382035,2.505755,4.45579,4.550405,2.398194,2.398194,6.111355333333333,3.8671845,2.6434925,3.021925,2.1885133333333333,2.824435,3.26901,3.7935258333333333,2.7496445,3.19117,0.9544119999999999,3.61136,3.02358,4.090935,2.63463,1.54748,1.412895,3.14638,5.925561,5.65171,3.684025,1.6081725,4.23825,3.868625,0.9390783333333333,2.908265,1.4297119999999999,5.2396675,1.3860966666666668,3.96068,1.829415,1.4350866666666666,3.07466,2.80696,4.763005,6.840208333333333,3.82953,4.65219,2.5521,2.91196,4.075305,3.85232,4.180975,4.39097,1.086995,1.6663175,1.0753275,2.601735,2.036035,4.839055,1.0753275,4.18543,2.3617,1.35283,1.35283,1.7261925,3.976805,4.225035,3.734275,1.443532,1.443532,0.968575,2.99015,2.084175,6.103885,4.09614,3.7187,2.7301,1.0170814285714287,3.501085,2.930285,4.279685,3.749505,3.85231,3.85231,3.12504,4.0541,1.8207125,2.757405,0.9450188888888889,1.9370933333333333,3.32036,2.53831,3.090655,3.090655,2.692535,4.567325,4.37603,3.818255,3.55193,4.010665,2.58149,4.3253900000000005,2.71501,3.979455,8.164065,5.3135,2.73849,3.183755,3.001305,4.43997,3.2517780000000003,7.58274,4.557016,4.680585,3.61417,3.858445,3.6564,4.41097,4.818075,2.496335,4.512485,6.492781666666667,2.65618,2.038412222222222,3.22193,3.271335,3.622805,5.8662,2.1438966666666666,2.395236666666667,2.830395,3.2821100000000003,3.355066666666667,7.185042666666666,1.60719,4.817528333333334,4.817528333333334,3.266725,3.822076666666667,3.22117,2.564906666666667,5.32709,4.390332,2.1161820000000002,3.8701,3.79814,3.516070833333333,2.858285,2.99836,5.844041666666667,3.438765,5.24305,3.19354,4.742205,4.07497,3.60959,2.9889833333333335,2.0550533333333334,2.97463,3.84187,2.978405,3.2243183333333336,2.976835,6.061428333333334,2.45751,1.730185,3.142098333333333,2.4140266666666665,3.937595,2.871585,0.9390783333333333,3.320835,3.802315,3.90527,5.9684225,3.00409,3.024935,3.02101,3.02101,4.009055,4.10317,3.668405,2.09145,5.5383575,2.163635,4.44317,3.53101,7.97349,2.8160966666666667,1.2531666666666668,3.00759,4.60706,0.615065,3.981615,3.40941,3.049055,3.27161,4.2846,2.0115333333333334,2.478145,9.19093,3.507415,3.02298,1.3860966666666668,3.799275,2.60863,2.26162,4.231195,5.28392,1.626315,1.2016816666666668,1.1116883333333334,4.40188,4.627735,3.74486,3.4786975,3.4786975,1.610585,2.35013,3.185453888888889,0.9166288888888889,3.09636,1.1527975,1.6252675,3.22996,3.42025,2.63552,2.718855,2.8156958333333333,4.51217,3.8164,3.19603,2.991885,2.59553,4.151905,6.872685000000001,3.98087,0.92574125,2.7553574999999997,8.63919,4.56596,4.146715,1.13125,4.654418333333334,1.3881716666666666,3.6029975,3.6029975,3.93589,8.806151666666667,0.8208322222222222,4.801565,4.249345,2.2927866666666668,4.177465833333333,3.70088,2.2019975,9.802705,1.7738975,2.5068766666666664,3.381715,1.7191433333333332,4.3389975,3.12463,3.310175,3.3707346666666664,2.74489,2.79576,1.1193633333333333,7.01517,3.86302,3.871345,3.729765,1.9655275,3.0612399999999997,4.2988525,3.780985,0.6161700000000001,3.41039,3.963295,4.49806,2.098445,1.399698,4.09557,4.20299,8.69026,0.6912684615384616,0.9299375,0.9299375,1.8501766666666668,1.3194366666666666,1.443454,1.8233033333333333,4.68642,1.2878366666666667,0.8344128571428572,4.029055,3.480325,1.13364,3.31798,4.61881,3.44842,0.75148,2.17796,9.4436,3.7042433333333338,3.35899,3.15372,1.841295,2.46012,2.51448,4.41053,4.30092,3.694365,0.9118771428571428,1.417078,0.8772220000000001,3.9571750000000003,4.372615,4.0679,0.9166288888888889,1.6548279999999997,3.975065,2.169047142857143,4.9363150000000005,0.98975,4.714615,0.605635,0.605635,0.605635,9.709635,3.911105,1.1527975,3.904905,4.76836,2.776165,3.229375,5.235596666666667,2.809415,1.820193333333333,2.203936666666667,0.75148,1.6905583333333334,0.5041566666666667,0.8174483333333334,1.4831566666666667,3.96698,3.724495,2.060205,7.271386666666666,4.83308,0.5675722222222223,6.1715,5.130776666666667,3.426235,4.457805,8.070589,3.7589410714285716,4.83308,4.489979,2.2998366666666668,4.125115,3.48899,7.416595,3.377135,0.504321,1.47084,4.32465,1.759946,1.2016816666666668,3.87892,2.363373333333333,1.80269,3.26145,1.682646,4.48161,4.26163,3.932615,4.736345,6.26779,2.740325,3.84755,1.4297119999999999,2.30312,3.513155,3.31505,2.1161820000000002,4.02043,2.342715,4.84014,2.831345,2.39845,3.3213616666666668,1.7916899999999998,3.477805,0.9166288888888889,2.1911490000000002,1.1116883333333334,1.8518,3.49046,1.60719,1.4831566666666667,2.0066725,3.34228,7.62632,0.9118771428571428,1.13125,1.275998,3.58075,3.819225,1.275998,3.96026,2.30312,0.615065,0.9166288888888889,1.8501766666666668,1.4297119999999999,0.44518714285714284,1.6601019999999997,4.248869333333333,2.2927866666666668,1.3102850000000001,3.09811,1.313705,1.7738975,2.8492466666666667,2.203936666666667,4.45037,2.8492466666666667,0.9390783333333333,2.985675,2.1692375,0.07002159090909091,0.07002159090909091,0.07002159090909091,0.07002159090909091,0.07002159090909091,3.18554,2.72709,2.7881933333333335,2.6395666666666666,4.82229,4.40332,1.737988,3.7318,3.659175,2.291295,5.00903,2.819785,2.522135,2.51138,2.798545,4.34395,8.371793333333333,2.21529,2.0093900000000002,2.94103,0.98275,1.4249483333333333,2.4347866666666667,1.9531666666666665,1.413125,2.760203333333333,2.2124200000000003,2.7364833333333336,2.53853,2.6447166666666666,3.67801,3.4429,2.593383333333333,1.311296,3.82061,3.694725,1.6381666666666668,1.313174,1.313174,1.313174,3.522675,2.6881866666666667,1.1156,2.21198,1.366542857142857,4.307535,1.5129299999999999,6.408709999999999,3.2589449999999998,2.53746,3.170032,3.170032,5.162326666666667,3.111625,4.35894,4.74193,2.2083325,2.9816599999999998 -GSM1946779,1.0,1.9964325,1.9964325,1.5630866666666667,5.12395,2.849605,2.554556052631579,1.7287100000000002,8.325521274509804,4.816495,3.0256366666666668,2.801125,2.312135,3.550875,4.735625,1.8107,1.4348100000000001,5.17525,2.423556666666667,2.4244875,5.25955,5.271985,4.19332,2.205595,2.0819199999999998,4.19243,5.07505,4.398615,0.7324625,1.578928888888889,1.8645255555555553,1.4452575,1.4798225,1.283442857142857,0.6844775,3.204672857142857,1.528185,1.3282825,1.1631625,2.12417,1.0211075,1.08429,1.055234,1.455684,0.903308,0.931392,0.777272,1.224187142857143,1.8025860000000002,1.819546,1.570362,2.10974,1.7426739999999998,17.694787083333335,0.37978466666666666,0.8287739999999999,1.173764,1.6768820000000002,1.689178,1.754782,1.0734371428571428,1.0734371428571428,1.0734371428571428,1.171525,1.366018,4.7708325,1.12754,2.113725,2.170345,2.6206,1.03073,2.37381,2.2831025,2.0389125,1.523435,1.87982,1.55574,1.73365,2.382353333333333,4.105645,4.62343,4.397245,1.5113333333333332,5.01265,4.764216666666667,4.029785,4.264455,1.0458475,7.53288,0.605990625,0.605990625,2.0753225,1.0460028571428572,17.03885,4.8918,5.19425,4.620915,3.845785,4.131295,4.90165,0.5191166666666667,2.248508333333333,1.68401,2.4161575,5.09805,4.496145,1.22256125,2.81226,3.050413333333333,2.4701066666666667,3.0001533333333334,3.515595,4.96244,2.6946085,4.72534,3.1863266666666665,0.7450963636363636,1.5168659999999998,2.146435,4.319645,3.33162,0.540676875,3.48131,3.901555,0.785705,3.90353,1.697052077922078,2.163505,2.33552,1.99832,2.916665,4.876035,3.48232,2.6323866666666667,3.00723,2.946963333333333,4.54671,2.7339533333333335,5.379,3.46533,4.21421,3.26887,1.91879,3.71421,2.3780575,7.265203333333333,3.8376,2.682565,3.514615,3.124595,4.96314,0.7538766666666666,9.51355357142857,3.47389,2.3271166666666665,1.9289566666666667,3.6149,2.535965,4.8243,5.3989,2.23131,4.531385,2.74154,4.502285,2.23131,2.788213333333333,4.751775,5.026273333333333,5.05555,7.195458333333333,3.275725,4.15443,2.98654,5.35315,4.86309,1.181385,8.23783,4.359105,3.500305,3.505965,3.573945,3.44203,2.31016,6.144629999999999,2.32178,3.94328,3.898875,4.199845,4.884975,4.527645,1.5620383333333334,2.771315,2.952115,1.9398575,1.9398575,6.062282857142857,3.232365,1.9002133333333333,4.06886,4.186625,2.83929,1.4754466666666666,1.2355222222222222,6.8254,2.69612,6.67585,5.01145,4.54181,3.771965,3.242395,3.823055,3.605025,3.76469,4.11244,6.718,2.89586,3.690195,8.906063333333334,4.48041,3.665366666666667,3.01713,2.817973333333333,3.759733333333333,3.9402991666666667,1.4762025,2.8604866666666666,2.1094833333333334,1.6672440000000002,1.7348933333333332,2.64903,1.823645,2.298885,3.0175633333333334,2.55004,2.4592266666666664,3.0346499999999996,4.764216666666667,3.58709,3.85708,3.157675,4.89981,1.3904500000000002,2.236205,2.9173228571428567,2.21026,2.575816666666667,3.1075700000000004,3.2665933333333332,1.891042,1.3432166666666667,2.9264966666666665,0.662914,1.6462333333333332,0.5395166666666666,0.5395166666666666,1.57184,2.02393,2.0865199999999997,1.23267,1.5102733333333334,0.31522384615384613,2.726593333333333,0.662914,1.15554,0.21823648648648647,1.5378566666666666,2.19006,3.467333333333333,2.1763833333333333,3.0052800000000004,2.6161966666666667,3.0129466666666667,2.438966666666667,2.664076666666667,2.4652166666666666,2.2539866666666666,2.6186633333333336,1.8664966666666667,2.72791,4.747855,0.7195550000000001,1.9499233333333335,2.8227966666666666,2.2646466666666667,4.145896666666666,1.54291,2.5336233333333333,2.4671933333333333,4.27453,1.9993333333333334,6.858954761904761,1.6324714285714286,2.8602166666666666,2.2168725,2.10669,3.6082666666666667,2.054215,1.9328675,4.67634,2.9302433333333333,2.149945,3.744935,4.107205,4.407675,3.80562,2.294725,3.283825,5.249450666666666,4.001705,3.79152,3.78318,5.0343,3.149205,4.576355,3.524235,0.9370075,4.767465,1.3195816666666667,4.02814,3.81271,6.289304,3.82202,4.18351,0.9750375,2.17534,3.477115,4.06753,0.8973942857142857,1.4331365384615387,2.0174690476190476,2.545398,5.30748,5.434621,2.11699,4.0173,5.3117,0.3385721428571428,3.68059,2.45076,0.97279875,4.264805,2.05471,12.26671,1.11367,1.349015,2.9062933333333336,2.33889,1.954335,4.430445,0.30174,1.7360499999999999,3.0548333333333333,0.9954675,1.92153,1.0212828571428572,4.970625,4.02315,2.09716,5.73935,5.4222,2.24629,1.2022785714285715,4.678363333333333,5.28045,4.26171,0.9319363636363637,7.939336666666666,2.8676366666666664,4.783905,2.63798,2.5495933333333336,4.84862,2.7110766666666666,3.01955,2.3415866666666667,2.47344,3.052845,2.972443333333333,0.3518725,4.21321,3.873285,3.835765,3.82454,4.34014,6.238542,4.21845,1.6316725,5.67285,4.88499,4.112585,4.421555,1.1919116666666667,3.085373333333333,3.3565,2.9362399999999997,15.961540000000001,3.339085,4.378255,4.731325,4.93889,2.633915,4.88523375,1.6222975,0.75863,2.575375,3.396825,3.831905,3.708885,6.431381666666667,2.8800566666666665,2.20222,2.25377,3.1458100000000004,4.09393,2.3907375,0.387948005952381,2.456556956521739,1.9591,1.16011875,0.49308148421325054,0.5982149624741201,0.387948005952381,0.387948005952381,0.387948005952381,1.12245,1.566295,0.83904,1.50461,4.3711075,0.21807411764705883,11.273193095238096,3.01481,2.7709333333333332,4.093595,3.95281,4.265665,2.177125,4.50042,4.202048666666666,4.45038,3.357565,0.7285030769230769,3.3486666666666665,3.7001653846153846,0.6148999999999999,3.871145,3.0457633333333334,5.06305,0.47112545454545457,1.782475,4.724495,3.524335,1.97004,1.8040266666666664,1.6708933333333331,3.609666666666667,4.001345,3.131275,2.943016666666667,5.4891,5.4246,3.909205,2.9617233333333335,3.240045,6.164483333333333,3.5352333333333337,5.1215,0.40800952380952377,3.5862,4.316776666666667,1.9923233333333332,2.643865,2.8731791666666666,5.262325000000001,0.6859391666666667,1.98598,4.530645,4.1653,1.04324,4.656695,4.302705,5.0082,3.4400666666666666,4.59275,3.54329,4.33336,1.2165633333333334,3.21964,2.73218,5.6189,4.121415,4.325835,5.44595,4.332335,2.828815,5.15656,2.122596666666667,2.332645,3.260013333333333,2.57538,2.60851,2.6671866666666664,1.812398,1.5239033333333334,2.00169,0.8278314285714286,1.61906,2.2767933333333334,1.9992566666666667,3.2627699999999997,3.3836,2.68653,0.98196,5.2179,3.413133333333333,5.42435375,2.679580416666667,2.8774200000000003,3.126493333333333,0.8938066666666667,0.8938066666666667,2.3512853246753247,2.3512853246753247,2.903085681818182,0.51539,1.6709233333333333,2.52819,3.6107333333333336,2.179334761904762,2.179334761904762,2.179334761904762,7.228984047619048,4.283058095238095,0.9073227272727272,3.69298,4.3266100000000005,2.20243,4.577135,3.3013,2.29885,5.65905,3.083543333333333,3.356666666666667,0.7667075,2.0197866666666666,2.9904433333333333,3.3662666666666667,2.4304866666666665,4.770495,2.9413300000000002,3.1774766666666667,4.377586666666667,1.4229266666666665,2.2683433333333336,2.5874266666666665,1.0109433333333333,2.1520233333333336,3.9214933333333333,8.0567625,1.4983625,2.855615,4.35835,2.11594,1.97818,1.97818,1.070655,4.872355,7.26937,4.51245,5.98409,4.887355,1.9031833333333334,4.404325,3.046865,4.971615,3.9549133333333333,0.3596394736842105,2.869625,2.682815,4.300295,4.17593,1.908076,1.9130525,2.565125,5.19185,3.78074,4.108345,2.572805,1.498142,7.11913,4.317485,3.72143,3.636355,4.10025,4.63371,4.696775,3.57724,3.70682,1.94597,1.0283900000000001,2.934935,3.95724,3.926255,5.6527899999999995,5.926292500000001,2.2602875,2.68808,2.7189599999999996,2.7909566666666668,3.0587700000000004,0.5794064285714285,2.32896,3.62689,1.118005,4.744375,3.213375,6.383800000000001,1.2840045454545455,1.2840045454545455,4.10911,3.74515,3.944825,5.5031,2.8125766666666667,2.32855,3.81893,5.13975,2.185365,3.3619,2.713226666666667,4.1614,3.174755,3.3455,4.86465,1.088791111111111,2.586365,4.43304,4.68601,3.318655,2.4644633333333332,1.836915,0.45488555555555554,0.45488555555555554,0.45488555555555554,0.45488555555555554,1.1986422222222222,3.7262925000000005,3.7262925000000005,1.7918066666666668,7.879716666666667,3.26073,4.489425,3.4591999999999996,2.7924,4.807995,4.180405,4.830965,5.23505,1.77288,4.655885,3.79725,2.74747,4.778725,3.49344,2.86079,4.841715,1.83144,4.4407,1.6986,3.636413333333333,3.011045,1.7553075,1.1851533333333333,2.895,3.704255,1.342524,0.8306888888888889,3.33743,1.2416025,4.925652666666666,4.732105,1.3011057142857143,3.531145,0.7760033333333333,2.6565499999999997,2.7309433333333337,2.24151,2.837295,4.46649,2.943755,4.13559,5.3151,4.66204,4.19334,2.563675,1.291677142857143,3.732525,4.94023,1.448815,1.448815,4.19457,0.24583666666666665,2.0499233333333335,0.24583666666666665,0.24583666666666665,0.24583666666666665,0.24583666666666665,3.62778,2.6727633333333336,3.001875,3.6303,3.3616333333333333,4.458375,2.28613,0.9870625,0.9870625,0.9905466666666666,0.9905466666666666,3.69196,1.81971,3.528815,1.4533844642857143,1.4533844642857143,4.18511,0.5659521428571429,2.059405,7.547158333333334,5.19415,3.21603,3.66245,0.91100875,2.561475,1.94945,5.0445,4.206815,4.358765,3.88291,1.2625899999999999,2.71628,1.8551475,7.64774,1.746425,4.52315,4.83677,2.718245,3.94967,6.21847,8.045875,4.310435,5.54485,4.829375,2.1617,3.092505,2.31842,2.32256,1.940795,3.91298,3.74269,6.04275,6.79411,4.5339,1.05748,1.61762,4.14286,4.710915,2.23631,5.09305,5.09005,4.456566666666666,1.7670133333333335,3.8091000000000004,1.5824666666666667,6.430540000000001,2.7520399999999996,2.36924,2.2679066666666667,2.505565,3.6180333333333334,3.4384,3.8699666666666666,3.31899,3.384933333333333,1.480734,3.750535,3.136355,3.481455,0.3552535,2.90204,3.889485,2.4166825,5.3953,5.13865,5.0102,6.5683739999999995,5.59445,2.207666666666667,4.12772,5.11865,1.6833666666666665,5.7461,5.98775,5.0571,4.69175,3.144755,5.81575,5.035,4.054495,5.8147199999999994,7.51975,3.88613,1.2622066666666667,1.5593883333333334,2.580805,1.767194,4.36137,4.14687,5.4594000000000005,2.379703333333333,2.65941,2.74544,2.4850966666666667,2.3330533333333334,1.1608333333333334,0.5308235294117647,3.938825,4.00808,3.32182,4.83323,2.900175,3.3297733333333333,5.567893333333333,2.9376533333333334,0.5889529411764706,3.699715,5.70365,1.777945,1.4632640000000001,4.518825,3.727015,2.556766666666667,3.9483333333333337,4.19705,2.7415000000000003,2.3254533333333334,2.3129833333333334,2.4440433333333336,2.67559,4.315136666666667,5.080618333333334,6.6248717500000005,1.581456,4.78236,3.3285245833333335,5.266369583333334,2.736473333333333,3.02205,2.302885,2.184746666666667,1.2585375,1.2585375,2.6655366666666667,2.4111966666666667,2.7357066666666667,4.097485,1.8157139999999998,2.227705,1.84742,0.51283125,3.85654,0.6246708333333334,0.981315,3.695005,4.40306,4.35033,1.6567075,4.11143,2.9602799999999996,0.9114500000000001,3.89819,3.4662357142857148,2.9390966666666665,2.342435,5.1019,0.2927362068965517,2.3157638333333335,3.1596,1.490505,3.698955,5.57225,2.26954,1.33368,3.868285,3.87025,2.8198566666666665,2.8198566666666665,3.62877,3.22031,4.87833,5.199553333333333,4.924845,1.0359533333333333,2.258906666666667,2.6436733333333335,3.609545,5.1239,6.0375,5.00265,4.329466666666667,3.8620666666666668,3.7784999999999997,3.30049,3.8622,3.3022500000000004,3.1317033333333337,0.6201078571428571,2.2048275,2.367105,3.491705,2.74352,3.3863,0.7789066666666667,2.43927,4.003059,4.416655,5.67685,4.00415,2.318325,2.318325,0.814251,3.2758,4.49039,4.437785,4.813540714285714,3.154745,5.27805,0.6366209090909091,3.18591,3.9546,3.96825,3.451835,0.7851085714285714,4.7827,3.907115,4.51012,3.91458,4.77914,2.81736,4.254345,1.6769725,0.9984500000000001,2.8177066666666666,4.844545,3.76394,3.203665,1.4203483333333333,4.002685,2.58965,2.920375,2.701385111111111,3.13077,5.01811,2.7166099999999997,1.73073,3.1958866666666665,1.4701310714285714,2.7974633333333334,2.93001,2.272425,2.7091333333333334,2.9726933333333334,2.526616666666667,1.9053433333333334,3.9998,2.799276666666667,3.1444106666666665,2.210576666666667,1.877065,4.294289999999999,2.9861166666666663,2.621026666666667,3.1444106666666665,2.2435133333333335,0.8213963636363637,2.44857,1.0077866666666668,2.232015,1.655625,0.9147545454545455,1.6750475,1.82595,2.6996685,2.660925,4.59979,1.565995,3.790315,2.7353133333333335,1.6220240000000001,2.2236166666666666,2.82963,1.56346,2.858143333333333,2.427583333333333,2.274306136363636,1.8051225,1.943508,3.5126000000000004,2.365743333333333,2.843655,3.14155,2.8907900000000004,3.6033333333333335,2.06907,4.3884,3.5485333333333333,3.7105,3.372,3.3946666666666663,3.499333333333333,2.1294233333333334,7.656549999999999,4.72662,4.264985,3.278545,2.89673,1.983355,4.071035,1.784506,4.02294,4.601515,1.446984,2.6052133333333334,1.1576366666666666,2.54334,1.68971,2.3508033333333334,4.880105,2.8291733333333333,3.52467,4.821645,0.74587,1.591374,0.9800890000000001,3.540005,11.735063333333333,4.349433333333333,6.6883,1.92848,5.16265,4.40397,2.4896,5.4051,0.29039470588235294,0.8411542857142857,4.66203,4.723015,7.1010375,2.2419975,4.33396,4.471265,4.576295,4.43573,3.94838,4.093795,3.12795,5.042825000000001,4.16277,3.60773,3.260695,2.13527,1.9291766666666668,1.3721501875,2.3943566666666665,4.335285,4.582805,1.573162,8.80779,1.9113266666666666,2.6644025,0.9879260000000001,0.9879260000000001,7.8041275,3.071165,2.6356,2.0674325,2.94523,2.11274,1.0754066666666666,3.2820566666666666,2.5457033333333334,0.5569557142857143,1.7493299999999998,3.410762,3.410762,1.1254733333333333,2.61611,2.39224,2.5333916666666667,1.40574,1.7461166666666665,5.159290666666666,2.80838,2.434105,1.2195275,1.2195275,4.52491,5.10185,4.784685,3.333215,3.735105,6.53861,2.853925,2.9601566666666668,3.532633333333333,3.979555,1.17161,3.19453,2.439955,4.181785,2.2110366666666668,4.65637,3.636085,4.27282,3.60655,5.586977999999999,1.0652288888888888,2.1814475,1.78218,3.656135,4.8067075,4.101305,3.75362,4.28247,4.06836,1.7140525,4.358415,3.455,3.622675,2.3894466666666667,0.843225,3.40539,4.632965,4.949645,1.2073433333333334,3.1053866666666665,3.1249233333333333,1.7535266666666667,1.7685825490196079,1.7685825490196079,1.1825466666666666,2.4971733333333335,1.1040157142857143,1.3983919999999999,4.571165,4.866305,0.5408809523809524,3.61577,3.347,4.084115,5.21475,0.416219,9.34178,5.39095,2.838105,3.37687,4.714895,5.5238635714285715,5.0393,6.534974999999999,0.75929,2.9387733333333332,5.36795,2.4927966666666665,1.834565,1.960266,4.83801,5.0453174999999995,2.480049642857143,2.704806666666667,3.7822333333333336,1.8549575,4.503735,10.61445,9.078164166666667,3.6336666666666666,4.833085,3.1929583333333333,2.992305,3.894565,1.673524,2.97383,3.82069,3.22154,4.65787,4.92518,5.49028,2.7389233333333336,2.938495,4.67742,4.96476,5.36475,4.628428333333334,3.93879,6.2598,3.4209,3.124665,2.96131,5.10195,3.710305,5.36485,2.202215,3.01524,3.43431,6.12265,4.138755,4.511,1.4746320000000002,0.92026375,2.541175,0.617406,3.718445,3.637515,3.40099,2.77905,2.11515,2.877675,2.583125,3.10675,1.9707560000000002,3.0321687500000003,2.8937,2.31242,2.67665,3.596006,1.2310066666666668,2.6398366666666666,5.2673,3.724066666666667,0.983635,2.821873333333333,3.724595,3.649998,1.514875,5.45435,5.40165,2.4139733333333333,2.9494566666666664,29.493327936367557,3.429233333333333,1.6934333333333333,3.9195333333333333,1.5689933333333332,2.53994,2.8650599999999997,3.361166666666667,1.9538225,2.62965,2.2707725,2.9105195,3.0228566666666663,2.3689475,1.6128825,2.12468,2.730425,0.3938327272727273,1.1169925,2.801356666666667,1.324276,3.460985,1.514875,1.85402,25.989503000000003,4.222555,4.945005,3.64976,2.76244,2.424615,2.4807566666666667,2.24353,3.741535,5.476674,5.46155,1.6163440000000002,1.8138359999999998,2.10484,2.5910883333333334,3.626085,4.90726,4.861175,4.72149,0.18926595744680852,4.850465,4.6219975,3.917055,9.12092,1.0607675,1.0607675,3.06949,3.478255,5.7819,2.1465344444444447,1.0627966666666666,5.24705,1.93162,4.31195,4.292385,3.25605,4.23286,4.006965,4.88038,3.205985,0.7497422222222222,3.291725,2.1588908333333334,4.57859,7.625875000000001,5.3966,1.9508066666666668,1.9508066666666668,6.35584,5.23105,4.246065,6.10805,2.48242,5.174883333333334,1.4452166666666668,1.4045766666666666,2.7128833333333335,2.049046666666667,2.964525,2.8121500000000004,3.848005,4.0782175,4.79013,5.3728,2.16073,2.3039625,1.9422775,2.713275,2.1628375,2.12606,1.978735,4.931445,1.8463975,3.830445238095238,2.5019,2.73375,2.718336666666667,1.76788,1.5606857142857142,0.9693339999999999,2.39474,3.6996,0.674484,4.714275,1.89313,5.809816666666666,1.9557,1.5285575,1.557985,1.5038533333333335,5.8385533333333335,1.783324,2.915286666666667,3.606666666666667,1.2606875,1.89251,4.972210666666667,3.1360733333333335,3.3593333333333333,3.756066666666667,2.832356666666667,2.9185266666666667,1.2650726785714286,0.2591016666666667,0.2591016666666667,0.2591016666666667,0.2591016666666667,0.2591016666666667,4.061665,2.7606966666666666,2.3835125,3.4736999999999996,1.42816,2.629096666666667,3.3001166666666664,2.1631066666666667,3.687905,3.083415,1.7691666666666668,2.9985233333333334,3.2768633333333335,2.25171,1.9516125,3.784685,2.71048,3.29597,6.0141,2.766776666666667,2.8667833333333337,2.7068933333333334,10.867862500000001,5.10385,4.79779,5.01425,4.03404,2.8738433333333333,5.0059,3.16392,2.514865,5.964341666666666,3.922365,2.982935,2.3544475,3.85815,5.087361714285715,3.54692,17.313414273809524,1.254675,4.97559,0.8622011111111111,1.11878875,2.958575,5.2572,4.9703,3.5106,1.30639,2.02728,4.29182,3.25999,4.339405,3.382635714285714,2.52564,0.68494,2.6876166666666665,5.04625,2.299125,2.0595975,2.1010225,18.922885833333332,1.6070239999999998,1.23326,2.46482,0.3002176923076923,1.919725,2.87438,1.9320700000000002,2.9202999999999997,2.554625,7.1265575000000005,2.1088325,2.677675,2.2992375,2.0658125,1.5960633333333334,3.3432,3.009105,2.908385,2.9306300000000003,1.9492275,2.5209229166666667,3.382534166666667,4.006955,0.38556166666666664,3.1527833333333333,2.946286666666667,2.960835,2.14415,3.596933,3.705185,1.6209666666666667,2.3278,2.1752033333333336,1.5895066666666666,1.8233,3.654715,3.387235,0.7965833333333333,3.30098,5.20925,4.55698,2.2764420000000003,2.2764420000000003,3.2546033333333333,5.28745,3.163655,3.309125,2.35006,1.1129727272727272,4.067635,3.539725,5.41855,4.05206,2.33477,2.33477,1.7189825,3.7139,5.125,3.34765,4.16505,3.21213,2.262913333333333,4.757465,3.440325,4.240405,3.9675333333333334,3.8059666666666665,4.720116,3.0957600000000003,2.70067,1.9327033333333334,3.587975,2.876275,1.64252,3.70738,4.350745,4.321705,2.3431266666666666,4.26531,4.53439,6.3049695,3.98795,2.16764,5.0254,2.57169,7.4173350000000005,2.4853133333333335,1.255155,4.18726,2.9980100000000003,4.407415,0.6689228571428572,0.825185,3.64881,3.67165,2.061330606060606,4.90541,2.84371,2.938415,8.93141,1.73151,1.319526,3.494905,2.598175,3.46679,3.685635,7.370306666666667,3.1406066666666668,2.1249833333333332,2.9776966666666667,2.4387166666666666,3.4642666666666666,8.70815341543514,0.9164623809523809,1.03825,5.63425,0.47767133333333334,1.6410925,2.4431475,3.0653,2.890675,1.693275,3.71732,2.638275,12.777334999999999,5.57617,2.5764,2.5764,4.290625,0.8561066666666667,5.528983333333334,3.95013,3.879565,5.597901666666667,3.364525,4.38148,1.370425,2.77535,2.756725,2.71427,3.237955,2.752715,3.10786,3.543425,3.664365,3.075225,3.020245,2.57469,4.283415,4.699475,2.8331366666666664,2.90598,5.234576666666666,4.49494,18.744944166666667,13.052324047619047,3.1468942857142856,0.6789991666666667,1.526557142857143,4.548795,3.614645,3.33690467948718,1.671555,0.8570744444444444,0.7017675,0.6309342857142858,2.09218,1.644154,5.426466666666667,3.4992,0.71816,3.320435,2.421045,2.1550825,1.8478439999999998,5.911076666666666,1.445658,4.796475,2.924985,2.9823566666666665,2.28589,2.63428,2.594203333333333,0.6709209090909091,2.6532,2.77167,3.4755986666666665,2.9326133333333337,4.970218333333333,3.596155,3.33927,1.9095325,3.71369,7.608974999999999,2.1047225,2.5395,2.480695,1.59312,2.74055,2.0596175,2.542475,0.967248,1.3705725,0.865635,2.80577,4.03112,6.4005,5.5645,3.10451,2.2353,2.751875,3.0053533333333333,7.149468333333334,1.17853,0.414981875,2.95581,2.070813333333333,1.601926,3.554446,1.26715,2.02073,4.4460033333333335,3.23835,1.1530500000000001,1.92804,4.03345,3.52953,4.60356,4.921035,2.4364375,5.70095,3.83495,0.7952923076923077,5.16835,4.342905,4.314754166666667,3.5852,2.466285,1.338536,1.2939,3.47539,2.70999,3.28078,4.311615,2.703485,2.6323333333333334,3.31875,3.932535,5.20175,2.34038,2.721755,3.817735,5.98175,0.572185,4.638145,1.7045,3.42879,4.1335,1.83332,2.965805,2.30318,2.03933,2.430665,2.4552125,1.9887566666666665,5.70575,3.73224,1.3286685714285713,7.06616,1.0579033333333332,3.704625,1.7919533333333335,4.522575,4.286305,2.1375466666666667,3.19851,4.115665,9.70799,2.88138,3.66354,4.17461,3.66416,1.660815,7.66904,3.627255,4.16519,1.498695,4.210075,2.9385,1.104035,1.853024,4.26684,2.18456,4.28849,4.8110975,4.358155,4.517685,2.34109,5.441,3.94438,3.2864,2.228216666666667,1.9731839999999998,5.41355,6.3438,5.4824,4.859665,3.00675,2.22668,4.28237,3.642865,1.0507056593406594,4.04937,4.853045,4.89535,2.747495,3.57649,0.5570771428571428,0.5570771428571428,5.9068,4.62971,5.93265,2.236705,3.65125,5.08325,0.836008,4.71561,5.20295,4.403305,4.4,3.61192,1.90892,3.13847,2.0967,4.409785,0.7010625,4.063995,4.3724,2.77765,2.8702,4.46118,2.192185,3.074015,58.69706165800866,3.599405,2.6465433333333332,1.6487225,3.188815,3.93913,0.7922175,0.98084375,1.937265,1.937265,1.365072,3.20932,2.18863,3.9324765,7.00507,2.8087133333333334,1.186402857142857,1.3935366666666666,2.7727033333333337,4.030130833333334,0.926721,1.864515,1.001954,1.832745,4.148815,4.24677,2.9492,22.120390800865803,5.0238,3.94663,3.122735,2.269573333333333,3.087015,3.406105,2.379325,5.35884,1.800228,3.849695,3.294730194444445,6.1243912499999995,2.09778,2.674615,1.97264,3.859255,2.39486,2.2079725,2.1161666666666665,3.435268888888889,4.161705,3.36352,4.374555,4.238495,2.58465,2.73683,3.256985,2.60653,3.004328888888889,2.247155,1.9121625,3.63127,1.1819783333333334,3.782275,4.41492,2.622655,4.91952,4.657795,5.112655,2.2661433333333334,2.280365,2.60997,2.755825,4.040195,3.49813,4.83665,0.7068114285714285,3.9333406666666666,2.95348,3.8477,2.344385,1.829262,4.439061666666667,1.3250666666666666,2.92513,4.426295,1.173284,3.80772,3.16622,4.7911,6.0243775,2.12041,2.845745,2.5218933333333333,3.5389,2.108026666666667,2.6531433333333334,3.236546666666667,2.4025633333333336,2.4352466666666666,1.41312,1.7570775,1.7570775,1.8854333333333333,2.09752,1.6889333333333332,3.3817333333333335,3.74365,5.67455,2.798595,1.710685,4.402205,3.407475,3.534895,4.22669,1.98193,1.79479,4.41123,1.799395,4.563248333333333,3.38394,3.620195,2.4336866666666666,3.839499375,3.139755,3.07946,3.52271,0.1455330612244898,2.8509766666666665,7.810684999999999,1.514546,3.46457,3.493245,1.0131657142857142,1.0166016666666666,1.9155875,4.05681,2.96167,7.034715,3.274545,3.662005,2.9247,2.81124,4.271665,3.53179,4.003945,3.42613,2.875946666666667,5.532,4.30391,4.68874,2.6263166666666664,2.015905,3.508885,3.96582,2.77294,2.98306,2.262315,3.954755,3.522185,3.62703,2.5896,4.093405,4.69688,2.762665,4.41956,5.01305,3.635345,4.685335,3.40418,2.94037,8.28026,4.5797,5.5461,5.129,3.89148,5.910905,3.91617,3.738535,1.291334,6.65485,2.469035,5.06045,4.210195,4.16754,2.8663666666666665,2.0329566666666667,2.3265,2.5132966666666667,0.875816,3.3367,3.6252,3.0505366666666665,2.063213333333333,3.67423,4.512525,2.2457766666666665,0.5493383333333334,4.493685,4.74265,4.67461,5.2219,3.450345,4.394775,5.0231,4.80216,1.4071,0.9718076923076923,3.1584266666666667,5.17085,5.67075,0.498431875,2.831845,2.469813333333333,3.305595,4.55743,3.9060666666666664,2.1878,4.053065,3.187345,4.070495,2.943065,6.52215,3.496485,7.12009,0.6535624999999999,4.063735,0.7716339999999999,2.32364,4.025733333333333,3.1776366666666664,1.2898666666666667,2.26478,4.587295,3.73061,4.022265,2.1633633333333333,2.2967625,2.93826,4.95738,3.731825,3.95147,1.695138,1.14802,5.7861,2.3783225,7.796374999999999,4.37301,3.62601,2.17922,1.607755,4.362345,4.88643,1.6261,2.347625,2.508725,2.8509766666666665,6.621995,3.1477583333333334,2.8133166666666667,4.460125833333333,3.45823,1.9917633333333333,5.59655,6.842617499999999,4.311295,5.5381,0.6309181818181818,3.458255,4.504135,4.5402875,4.09988,3.83251,3.15169,2.73235,3.14092,2.91947,3.5445010000000003,1.593018,5.147793,4.211275,4.93199,3.86825,3.355905,3.2521883333333332,2.25573,1.310635,0.903455,2.83037,2.345315,1.0714566666666667,2.7046266666666665,6.559,5.4715,3.515855,4.895855,15.670945476190477,5.0092,4.54515,3.688625,0.7141716666666666,5.2749,4.88054,4.72142,4.775275,4.858005,2.933545,3.51257,3.257505,1.483158,2.99657,4.41054,2.5424666666666664,1.25061,4.190155,4.923195,4.0041,5.6239,4.79677,5.41365,3.95465,2.489943333333333,4.31804,3.919155,2.57367,2.8808166666666666,2.97241,1.7274487500000002,5.1384,2.7551814285714284,3.2229200000000002,4.045595,2.78054,4.41441,4.294289999999999,2.082925,3.014415,4.212745,3.641205,4.305015,4.26624,4.34323,4.493354999999999,3.29466,5.4446,2.455945,3.26759,3.82942,1.5688280000000001,4.356135,1.022165,4.413155,3.509785,1.1044914285714287,3.69037,2.09731,6.49897,2.4809026666666663,2.4809026666666663,2.4809026666666663,0.58618,0.973455,1.814685,3.32468,5.51268,3.6367038888888885,1.89558,2.1827525,1.8320699999999999,3.791065,2.41407,0.40355230769230765,1.763575,2.250265,2.837115,1.78743,2.972295,2.279845,2.11707,3.89304,2.67411,2.770995,2.7897,1.912115,6.47178,2.036605,4.207615,4.05171,6.366895,1.5348933333333334,3.52549,3.70797,3.7607,3.622635,2.77027,2.102755,3.751895,6.1256829999999995,2.06867,3.58484,3.09941,2.02599,4.79603,5.10385,2.7173866666666666,2.228515,3.78598,6.026174999999999,5.6354,3.20777,2.45127,2.693605,2.923235,3.587655,3.49636,1.249015,2.834135,4.651855,0.7930525,3.97542,3.9975,3.77477,4.188775,2.495125,3.82018,2.006915,4.66298,8.01442,4.96242,3.374195,4.035315,0.988975,4.458555,2.385595,4.31886,5.6826975,4.524575,3.7566,11.08595,4.599745,3.830585,1.4862825,0.6919783333333333,3.069945,3.80241,3.570145,3.69354,2.25627,2.9161300000000003,3.11272,1.1464083333333333,1.1464083333333333,1.9270233333333333,2.47087,4.042566666666667,2.3515533333333334,3.7876333333333334,2.7803,3.6693,2.8668,1.5126266666666668,2.34324,2.0866466666666668,1.8533333333333333,1.5254925,2.7663333333333333,0.8642616666666667,9.712088333333334,0.8642616666666667,3.1496033333333333,2.1238616666666665,3.1403233333333334,4.72863,4.314725,5.1375,5.41235,2.3987966666666667,2.9692633333333336,3.33852,3.5338666666666665,3.5781666666666667,3.4746666666666663,3.03602,3.3030633333333337,1.5728666666666669,5.3898,6.482689142857144,3.824666666666667,3.566266666666667,2.9784100000000002,2.681736666666667,2.878406666666667,1.283442857142857,2.6564166666666664,2.76731,4.18763,5.7387,4.548225,3.1620566666666665,3.5965000000000003,3.20835,4.423373333333334,4.277925,2.6560200000000003,4.5408,3.3200233333333333,3.1642966666666665,4.745965,3.17705,4.121095,6.015188333333333,2.9618566666666664,2.5743199999999997,1.8089066666666669,1.44432,5.020333333333333,3.4540949999999997,2.68326,2.097916666666667,2.38787,4.52285,3.82159,2.61522,3.14162,3.5364,3.760566666666667,3.7205,3.9075666666666664,3.3892333333333333,0.55210375,3.996,2.55571,2.5967166666666666,3.40603,5.01735,5.28135,6.2401,2.733495,5.140241666666666,1.1931566666666666,2.6079466666666664,2.6079466666666664,4.263895,3.594945,3.82981,3.372055,1.770535,2.88329,3.85501,0.9554942857142857,3.766156,2.9631048095238097,1.9101876666666668,0.343371,3.462375,3.906455,6.669465,3.06966,4.688645,3.16514,3.8216,4.46469,1.7297170833333333,3.57004,5.20905,3.33842,3.1520166666666665,3.1992499999999997,5.991685,2.130075,1.02523875,2.00137,1.6302433333333333,5.5843,2.418883333333333,2.39553,1.7140075,4.731325,4.223355,4.60137,0.594936,4.581745,3.679795,2.5124933333333335,2.368583333333333,2.7172199999999997,3.390258888888889,3.8626899999999997,1.5086133333333331,0.6845052631578947,0.7661071428571429,3.676266666666667,4.327445,6.097158333333333,4.323705,5.2245,5.10945,1.4387857142857143,4.1335,2.163553333333333,0.97742,5.6276,5.8984,3.31914,4.822725,4.266435,6.922445,4.2769,6.299238333333333,3.72538,2.9151483333333337,6.3453,9.746307628205129,2.6561166666666667,0.772563,4.09649,4.000935,2.176605,6.1333,4.85736,3.517485,2.88304,2.88304,5.2297,3.47844,4.05617,5.215,3.898742619047619,2.5364585714285717,1.12894375,5.96385,2.626385,5.7968425,4.06625,4.92385,3.511335,2.2062025,4.72477,4.930425,3.7033666666666663,3.838295,4.569355,28.551464523809525,2.2383975,2.603975,2.1949625,1.6298533333333334,2.82441,1.3188328571428571,3.0333633333333334,3.03654,3.2497566666666664,3.4125333333333336,0.7523792307692307,3.2421166666666665,4.890295,3.383925,3.28635,4.122835,6.3073,5.3689,5.0189,4.659375,4.538971666666667,4.641945,3.6562333333333332,1.694445,0.9806083333333334,1.4442599999999999,3.0819266666666665,1.5930900000000001,3.6358333333333337,2.4962266666666664,2.33223,1.7415466666666666,2.66737,2.05976,2.390843333333333,2.93863,4.166235,3.662635,4.516365,1.339242,4.2732,2.5208233333333334,4.41717,2.533236666666667,2.63487,2.680835,1.4812366666666668,3.55793,6.628881666666667,2.83557,3.662045,4.08734,2.535425,3.166265833333333,3.6983333333333337,4.50378,4.577835,0.3333092664092664,0.3333092664092664,5.1977,5.06905,4.069655,2.919675,5.17625,4.64614,0.7397723076923076,4.039015,5.01905,3.744705,6.44545,4.56391,7.19294,13.467075,12.865668076923077,4.2484,4.378625,2.618813333333333,0.6558530769230769,2.5312566666666667,5.5847,1.3054433333333333,4.78778,3.6946333333333334,2.9304900000000003,2.2426566666666665,1.9365733333333335,4.96422,3.69523,9.06659738095238,5.0225,3.99006,6.955894053030303,3.398575,2.7143433333333333,1.4485675,4.452864166666666,1.6060275,2.3003466666666665,2.6915066666666667,0.31524375,3.13288,3.158765,4.463994166666667,1.020802,1.4878716666666667,4.38715,0.589522,0.589522,2.9146495833333335,2.76463,3.2911066666666664,3.63996,4.52912,5.7151,3.790675,4.21304,2.98877,3.1738466666666665,2.6436366666666666,0.5968875,2.6816433333333336,2.981935,3.135605,5.11718,2.830155,4.147175,1.2068,2.93153,2.75504,2.1182025,2.7204,2.904325,1.80917,2.35726,2.0296975,3.28362,2.580125,3.9913325000000004,2.878725,3.927635,3.927635,2.688613333333333,2.688613333333333,9.099821500000001,2.474886666666667,0.820543,2.6553233333333335,2.556313333333333,2.5508433333333334,3.9913325000000004,2.0583,1.761318,1.572914,3.902795,4.70428,1.83297,4.276575,4.140135,6.375855555555555,6.718916666666667,2.3694266666666666,4.14311,7.38189,4.53063,3.475425,2.776616666666667,4.61888,3.8417245454545457,4.374265,5.488901666666667,8.040307333333333,3.4974712500000003,3.512635,1.20512,4.550585,3.941764666666667,3.99677,3.7475008333333335,4.43229,2.399475,2.5690233333333334,7.962505,3.277545,1.2694459999999999,5.66471,3.80293,3.4616333333333333,5.1807,3.4616333333333333,2.794825,3.519035,5.131,1.0537628571428572,3.8305177777777777,4.47753,3.784415,1.3100583333333333,1.694315,5.03935,4.407905,2.714175,7.04252,4.000375,3.249795,4.559985,4.2293725,1.526605,4.19846,2.57628,4.006925,4.36211,4.152345,4.79415,3.087405,4.726095,4.80657,2.4702213333333334,1.884695,3.7498666666666662,2.839916666666667,3.055483333333333,3.1326866666666664,3.897266666666667,2.9524333333333335,5.20395,3.29716,3.444405,2.81135,1.7729266666666668,3.5627333333333335,2.139816666666667,3.271745,3.14758,2.895055,0.7010625,2.301695,1.84841,3.48473,2.08182,3.48529,3.546745,1.631986,3.1610625,4.44916,0.798844,2.411286666666667,3.2537,3.784745,4.01857,1.97426,1.5279966666666667,3.52572,2.4904683333333333,1.6761033333333335,2.870505,1.997,1.172596,1.4141875,6.3596,3.195095,2.159065,2.34384,2.5049,3.86973,0.87327625,0.3362171428571429,0.7844157142857143,4.950355,1.9758204285714287,4.381055,2.19692,2.019740857142857,3.3030814285714283,1.2833405714285715,1.055078857142857,0.6712659999999999,0.5945885714285714,2.6352141666666666,6.69365,3.05044,4.46934,0.30786250000000004,3.57829,18.444045476190478,3.21616,7.6899074259906754,1.1272475,1.1272475,1.1272475,1.1272475,5.668828333333334,3.74796,3.20934,2.1876266666666666,3.29262,3.81911,4.159035,3.745815,3.53246,4.65115,4.368295,4.148745,3.771956,4.27499,4.84119,4.14236,4.936085,3.47162,4.245745,2.6762099999999998,4.25089,3.31771,4.13824,4.27312,4.38841,3.10734,2.592825,2.4903933333333335,4.20056,1.2142021428571428,3.736525,3.0664766666666665,3.384024,4.358155,4.402785,3.14826,2.759745,4.053555,2.995415,3.175035,4.72701,5.22255,3.292245,4.210575,1.67865,1.67865,1.3309375,4.763325,4.102635,6.235418,5.0155,3.704425,6.10795,4.16679,2.0949325,9.11007,4.82524,6.1801825,4.482625,2.870896666666667,4.264655,0.2609762068965517,0.79987375,4.237268,3.4296,5.2501,3.181696666666667,5.248883333333334,5.3566,0.5680992857142857,2.73451,0.480039,1.7013671428571429,3.46444,2.417545,3.924135,3.901105,3.088325,3.659875,3.585985,3.63535,3.42741,3.61686,4.497575,2.57994,1.7013671428571429,2.74183,2.0051125,3.644295,2.44206,3.735705,3.61688,1.660815,4.478715,3.072795,1.4131066666666667,5.50255,4.78733,4.1959,2.8909599999999998,3.16493,4.801065,2.0121566666666664,1.443986,2.37112,2.598593333333333,2.6082933333333336,2.0302000000000002,5.3545,3.6925,5.4019208333333335,3.9892149999999997,4.8614,4.40996,1.92192,5.45405,4.754115,5.4196,4.126205,6.8498850000000004,1.544195,4.85977,3.285265,3.19884,1.909915,1.8158833333333335,3.89216,4.424655,2.3286433333333334,2.3853750000000002,3.3542225,3.3542225,2.7794399999999997,2.773343333333333,3.307435,3.937185,3.656825,0.7821076923076924,3.31138,4.35492,4.47197,2.86572,3.19636,1.756805,2.93706,3.47721,2.289235,4.60027,4.180515,4.457805,1.9117633333333333,1.021981818181818,6.09606,3.667515,3.565466666666667,3.30188,1.866546,30.105092523809525,4.482345,3.34306,4.993365,4.445275,0.9187416666666667,7.413585,2.3839025,5.58195,1.71615,4.890335,5.598918333333334,3.800945,3.063705,1.9720275,3.9479333333333333,5.04265,2.1433875,2.7725333333333335,3.71108,3.244285,2.573655,5.0418,2.085185,2.549345,1.12988375,4.55298,3.546695,4.00756,4.032115,3.17312,2.1342,4.448555,4.99086,3.80911,3.80911,6.35335,1.715515,4.391425,7.117161666666667,3.358545,4.443965,3.433475,1.8886,3.45507,4.222465,1.418365,2.10235,4.39578,4.390825,3.953465,4.51506,2.407235,8.775563333333332,2.50103,3.82204,1.6747571428571428,3.66171,2.2167966666666667,2.735253333333333,2.3732058333333335,1.3543533333333333,2.67909,0.9400657142857144,1.1076514285714285,1.1076514285714285,1.1076514285714285,1.8705433333333332,0.6017925,3.82948,1.1911866666666666,2.895113333333333,0.8961683333333333,1.8712600000000001,2.677466666666667,2.5069866666666667,0.78363875,1.7652166666666667,1.5008299999999999,2.2801233333333335,1.705156,1.705156,1.6781066666666666,2.2036466666666668,1.2074960000000001,1.8436766666666669,1.58345,1.1133666666666666,2.145555,1.94002,6.06445,1.586965,4.27519,18.179831333333333,6.5641099999999994,3.30456,3.398365,3.0941166666666664,2.7447199999999996,2.738936666666667,2.8520533333333336,0.7287408333333333,0.987904,0.987904,0.6718,2.3366266666666666,3.88364,4.543725,1.54849,5.58035,3.509495,2.469745,4.46633,4.197425,4.235085,4.5993,3.5574333333333334,3.33044,3.43695,5.4103,3.4401666666666664,4.63783,0.520748,0.520748,2.56893,3.493915,5.3019,3.42555,4.568545,4.900075,7.576524000000001,7.71011,3.689895,2.346865,4.38042,4.06071,2.57553,2.22929,3.107545,1.7199099999999998,3.068335,2.60342,1.6505975,3.31499,4.62112,1.903465,5.488901666666667,1.69737,3.6396333333333337,4.049555,0.9051157142857144,3.3164433333333334,2.97457,5.15025,1.1622383333333333,1.67676,2.5842,2.103055,1.763465,2.4055175,2.536775,1.9179475,4.594675,4.37157,2.401775,2.6498,1.48313,3.7712,2.0168066666666666,2.657025,4.466125,4.24576,2.238243333333333,3.085375,3.59026,3.68841,2.392465,5.58745,3.961235,3.191135,1.419175,4.419765,2.23765,2.4860633333333335,2.50866,4.0118,5.44425,5.34425,2.3352666666666666,2.8806666666666665,2.8476233333333334,3.5278333333333336,1.93535,1.545414,5.4955,3.3552,2.347314,2.9119966666666666,2.9711266666666667,2.1682466666666667,3.14367,3.2771500000000002,3.7532333333333336,4.999745,4.055305,3.1601700000000004,5.41155,3.58866,2.325125,3.64841,4.041645,3.65845,5.834413,1.9331980000000002,3.81454,2.571885,4.68376,3.673705,0.56634375,2.284685,2.253805,3.622625,2.655805,2.25548,2.708795,0.717952,2.7289133333333333,4.774115,2.23748,4.3993,2.418413333333333,4.16631,2.0370375,4.570035,3.62837,1.7240600000000001,2.95201,7.0272525,4.121205,4.456465,4.890455,6.762087954545454,4.260495,4.359595,2.283025,4.58951,3.908245,2.3279566666666667,1.935715,3.7670333333333335,1.0269071428571428,2.2951799999999998,2.768193333333333,2.68761,4.0104,1.825704,3.35064,1.9282533333333334,6.2148,6.8803525,1.0268825,1.8348966666666666,2.588886666666667,2.8798266666666668,2.0805966666666666,1.0924216666666666,5.691405,2.379305,2.73753,3.7505333333333333,3.2223100000000002,3.466666666666667,3.16414,2.241496666666667,3.1554866666666666,2.4804,4.501985,4.4682,4.15562,3.629,3.4626333333333332,0.937739,1.7045700000000001,2.3400125,2.1457833333333336,2.501866666666667,1.1833616666666666,2.70846,3.0036,3.4771,1.8803233333333333,3.4431,3.93293,6.1232,3.11357,0.6080666666666666,1.896978,2.87628,3.5989,0.7232172727272728,2.8244466666666668,3.502554,3.5132999999999996,2.8267066666666665,3.345154166666666,3.805985,3.6204,3.0469666666666666,1.9335575,5.735,5.35335,5.0735,5.23515,5.78685,1.82441,3.654145,3.7830666666666666,3.364133333333333,2.8587399999999996,2.849406666666667,4.0726,3.5700000000000003,3.2897,14.436933333333332,4.344715,1.04765,2.8697199999999996,1.569334,3.29983,3.1716533333333334,2.279993333333333,5.82348,6.554947666666667,2.22546,0.8305020000000001,4.06724,3.4482666666666666,3.039865,5.0113,5.14705,6.1505,4.78895,3.523675,2.08485,6.842594999999999,1.20512,6.808255000000001,4.69645,2.4725233333333336,4.06192,7.500106666666667,5.8876,2.3195666666666668,1.4645716666666668,2.2168725,6.00361,1.514875,3.013116666666667,2.658533333333333,4.2950116666666664,5.80985,4.403205,6.3969,3.397605,5.34085,3.78136,8.150649999999999,4.961045,5.78895,2.407845,2.54565,11.068836666666666,3.469955,2.507365,2.467286666666667,1.6675766666666665,2.0284299999999997,2.5331966666666665,0.70710625,1.007126,1.0936542857142857,3.91323,6.8068,2.993776,1.45376,4.49804,3.05656,0.588826,3.68253,3.313915,3.678875,4.405595,3.320765,2.65754,4.26193,9.818635,1.7823625,3.9617875,3.94195,4.262595,3.771165,0.9003583333333333,3.648566666666667,3.598966666666667,1.7111966666666667,2.50313,2.3488433333333334,2.64275,2.5479333333333334,2.190116666666667,2.39102,5.826457142857143,4.50983,4.180885,4.482609999999999,1.6323699999999999,2.56455,5.14115,4.76771,5.26075,4.464425,4.84526,4.235845,1.67865,3.85905,7.2078283333333335,1.37962,1.6743866666666667,2.7686466666666667,2.295733333333333,2.8245833333333334,4.890645333333333,0.7661071428571429,2.34588,3.28166,3.87233,4.463725,2.2919133333333335,2.915786666666667,1.8821175,0.59011125,2.3724825,2.83278,7.644675,4.242845,4.49285,0.9100529999999999,2.499843333333333,9.633518166666667,11.355541666666667,3.70296,1.16120125,3.578865,3.567985,2.67053,5.615604666666667,5.02285,3.77925,2.145345,3.485633333333333,2.3101166666666666,2.525873333333333,0.7784118181818183,0.3915093333333333,2.629275,3.386325,1.9970185000000003,3.45444,3.4680999999999997,5.08925,5.33525,1.52421,3.012793333333333,2.1130475,2.1130475,2.308015,2.770375,2.680885,2.8354966666666663,2.6555933333333335,3.4077,3.5368,4.14962,4.279815,4.2235,4.107505,4.00555,4.056355,3.640765,7.943441666666667,1.95064,2.2974366666666666,2.528163333333333,0.8979849999999999,0.7618916666666666,3.953115,2.2883,5.3487,2.919943333333333,3.108143333333333,1.896188,1.49519,4.15242,4.264855,4.265205,1.1643266666666667,1.3802466666666666,2.710316666666667,2.07802,2.624476666666667,1.11019,1.11019,2.7408366666666666,3.930545,2.570875,3.066065,3.427125,1.93021,18.824325393939393,3.826805,5.3703475,3.677985,3.65077,4.224275,3.6434,5.55705,6.03807,0.8782333333333333,0.8782333333333333,0.8782333333333333,2.7024966666666668,1.6766285714285714,3.5864999999999996,4.569765,4.524415,3.615005,4.349865,4.303095,0.8717388888888888,2.2397666666666667,3.02252,6.251920666666666,3.530444,4.327790666666666,4.64897,1.83332,1.9715566666666666,2.353283333333333,0.576325,0.8532080000000001,1.865955,1.9597,2.89652,12.783073333333332,2.5857233333333336,5.37005,0.7429642857142857,10.237315,5.75605,3.741585,4.175745,2.68285,5.8415,2.68285,2.9815319999999996,3.42347,3.802415,3.80708,3.84512,4.46042,3.374435,5.792,6.613874,1.8388533333333335,3.349874,2.8689,27.518381814028313,1.750656,6.29615,5.10053,4.08483,4.037815,4.59441,2.685475,3.024175,2.359655,5.17705,6.4152,4.86999,4.63266,4.519505,2.11399,1.974795,4.20023,0.43747923076923073,0.43747923076923073,0.43747923076923073,0.43747923076923073,4.219115,3.247901666666667,1.0658866666666666,1.7968233333333332,1.1791444444444443,4.69469,2.5016966666666667,2.2649225,7.1640266666666665,3.3237166666666664,0.17044413793103447,20.924499666666666,4.4224266666666665,1.807058,1.4176707142857143,2.25612,2.07194,2.53665,4.68214,3.072275,4.51979,4.216445,2.4040233333333334,7.1178,2.738675,1.99581,5.04705,5.98915,7.990503333333334,4.733545,0.2883,4.07515,4.058,3.2348,1.857725,3.1014633333333332,1.6399100000000002,1.6399100000000002,4.092055,5.897855,11.8430275,8.878350000000001,0.69585,2.58212,3.84163,3.21752,4.591085,5.17565,2.13566,2.13566,3.433195,4.50451,3.3039066666666668,3.571,5.50875,5.3727,5.231373,1.977908,4.673895,4.393585,2.646255,2.8649566666666666,3.118736666666667,4.814195,4.24382,5.175,4.38776,4.042805,4.3602,4.357815,3.83861,5.54535,2.744056666666667,3.0284166666666668,1.169162,4.487405,4.14857,4.232625,1.9015799999999998,2.56793,1.88628,2.6470833333333332,2.039076666666667,3.6579716666666666,1.3629283333333333,2.46609,4.0344,4.1517333333333335,2.5272833333333335,2.4584699999999997,3.3494333333333333,2.9826433333333333,2.3007766666666667,4.296343333333333,2.1354166666666665,2.7698966666666665,2.09009,4.934355,3.1783566666666663,43.117481166666664,2.0291027272727273,2.0291027272727273,2.5682899999999997,2.8323633333333333,2.2064366666666664,1.7607766666666667,2.9986866666666665,1.79076,0.7031761538461538,4.670025,7.209175,4.13011,4.17403,4.5271,2.009866666666667,4.350305,1.7349160000000001,5.3679,4.860845,5.81925,4.155725,1.694445,4.201315,5.41085,4.8141,5.39505,5.6586,4.1855,3.3843,2.54352,2.2294375,1.88842,4.178605,2.0735366666666666,3.8203475,3.8203475,2.2778300000000002,1.6103166666666666,2.074123333333333,2.47109,2.220126666666667,5.10668,2.7776899999999998,1.15209,1.15209,3.013726666666667,1.9480766666666665,2.724083333333333,2.60826,2.32069,2.6525333333333334,2.347226666666667,2.1869245,3.012608785714286,1.5964667857142858,0.8256842857142858,56.36408429563492,2.3522999999999996,1.75772,2.13641,0.907062,3.3881613333333336,1.599042,1.599042,2.1398066666666664,3.113436666666667,0.7707825,2.10838,4.221596666666667,3.23838,2.5150333333333332,2.826026666666667,2.02388,2.5188193333333335,0.29037875,2.167656666666667,0.7362960000000001,2.53401,1.2309860000000001,1.2309860000000001,2.25658,2.22188,1.9937266666666666,1.1950986666666668,2.5387133333333334,1.1950986666666668,2.12624,2.594473333333333,2.015566666666667,1.2865119999999999,1.2865119999999999,2.93534,1.4351766666666668,2.56207,2.06865,4.630205,4.045765,13.662400416666665,7.0458025,3.183515,2.62224,4.07679,4.833675,5.32175,3.1596141666666666,4.59327,3.788465,2.5838666666666668,4.154465,3.3012433333333333,2.7172433333333337,4.434995,2.3177600000000003,0.9913614285714286,4.296039583333334,3.0934633333333337,2.94469,0.7735185714285714,2.680135,3.853855,4.004525,4.370135,6.6403,3.25999,1.8255199999999998,3.9414,4.54308,2.291715,2.4568624999999997,2.02909,2.1676233333333332,0.92867,5.4429,4.500025,4.295865,3.60797,3.459633333333333,4.1314,5.469,3.16482,1.8232,0.5417393333333334,14.523990333333334,0.5184536363636364,0.5184536363636364,0.5184536363636364,3.2497000000000003,3.8211999999999997,0.5184536363636364,8.173658333333334,4.698073333333333,0.717699,0.717699,2.9324033333333333,3.286755,3.0209,4.62646,4.386475,4.40536,2.0521624999999997,4.684678,3.63325,3.4456569642857144,4.91542,2.924757,2.2802,2.2231875,2.61575,1.648575,3.4919391666666666,3.2187866666666665,2.39642,2.3432775,2.306865,1.8039500000000002,1.6122075,2.59915,1.0865944444444446,2.512525,0.6041335714285714,4.767595,1.68777,0.8022566666666666,2.682925,7.939465,2.59143,2.075902,3.31925,7.73555,2.481395,4.40527,3.017205,6.05374,3.92033,4.22435,3.7183,5.0311,3.0052833333333333,3.867795,1.1314242857142858,4.211675,2.472906666666667,2.4928166666666667,2.59369,2.41039,2.10366,1.286,5.36595,0.9147545454545455,4.86243,5.3768,4.913795,5.98355,3.771333333333333,2.4203466666666666,1.97715,2.8595400000000004,4.167366666666667,2.66988,3.5536333333333334,2.6966,4.202105,1.739066,41.16541134920635,4.892095,2.47359,2.9863966666666664,2.7116866666666666,1.66751,5.56726,4.796265,2.6244633333333334,3.5839,2.2403133333333334,1.6170525,5.47855,0.7883071428571429,4.875697142857143,1.2383428571428572,3.3516999999999997,3.5059,3.6108666666666664,1.3702,5.264056666666667,1.8577059999999999,1.8577059999999999,2.6934400000000003,3.1969833333333333,3.551933333333333,3.863566666666667,1.45979,3.1338833333333334,2.8732399999999996,6.577121833333333,3.0589833333333334,3.603108333333333,1.1955783333333334,1.3768799999999999,3.0827500000000003,0.895816,5.371713333333334,3.8113333333333332,2.89771,3.775733333333333,3.087986666666667,2.8828,3.3783333333333334,1.8339033333333334,2.5049,2.83408,3.682033333333333,2.3953933333333333,3.5606666666666666,2.95743,0.5834253333333332,9.662883012820513,2.7665,5.19755,4.78673,2.673633333333333,2.9262599999999996,1.4430325,2.1744666666666665,2.406075,1.4430325,3.075675,0.459125,0.459125,1.1265825,1.1265825,0.889265,0.889265,2.61963,2.90431,2.50993,1.43072,1.65492,3.424785,2.95334,4.63318,4.494835,2.16044,4.48099,2.28747,4.762584358974359,1.4789825,1.4789825,1.75165,1.87805,3.1789933333333336,1.9969075,4.58923,1.30639,2.2134975,0.6047161538461538,1.2059657142857143,2.2241725,1.95438,2.4201425,1.4662225,4.048905,4.501795,2.8596,3.004296666666667,1.4442966666666666,0.6617216666666667,2.60819,3.9137,2.0847599999999997,4.862495,5.55485,4.93288,3.876855,6.65239,1.6221566666666665,5.864435,1.77538,4.827715,4.831525,5.715561,2.6041633333333336,2.38497,1.759995,1.9859839999999997,1.9859839999999997,2.4317575,2.4317575,4.40983,5.34155,0.910912,4.57769,3.587085,3.507215,2.86504,1.4092525,2.8023000000000002,4.239525,4.3807,1.876764,6.10215,4.963715,1.8814066666666667,1.23075375,3.993135,4.110916666666666,3.62907,3.477845,4.25715,0.6524057142857143,3.21433,2.9895933333333335,2.668646666666667,2.8646166666666666,2.3345433333333334,3.0741033333333334,1.5025142857142857,1.5025142857142857,1.5025142857142857,3.423666666666667,3.0016599999999998,2.1603266666666667,3.317178833333333,2.425,1.2921542857142858,3.0984233333333333,3.3137933333333334,1.3703857142857143,3.11823,2.7223699999999997,1.2548385714285715,2.97962,3.0801,3.12436,2.6549833333333335,2.6715133333333334,2.0786925,3.2699700000000003,5.067856666666667,4.380605,1.01107,1.169662,0.743133,3.6410666666666667,9.251745,3.0135066666666668,3.307965,1.9244899999999998,4.328799166666666,1.9255525,7.464778333333333,6.569556666666666,2.65978,2.5135057142857145,4.051775,4.65535,1.5178660000000002,1.205212,1.33128,2.018,11.279563333333334,2.7445833333333334,3.0059966666666664,2.9318146666666665,4.29281,2.16408,1.2758625,5.6118,1.1655149999999999,3.4991080769230765,3.721245,3.233485,3.1274800000000003,3.580765,4.502125,1.1598866666666667,2.0624425,2.193379666666667,2.193379666666667,3.79543,5.13105,6.960345,3.75453,3.48839,5.1014,1.77872,2.3074575,4.67897,4.78421,3.85164,1.7228166666666667,3.205766666666667,3.54457,4.29217,2.64245,4.155775,3.899815,3.43505,4.09551,3.53639,3.78985,5.5046,3.23312,2.5105233333333334,4.475305,3.063825,3.772375,1.89906,2.511515,2.565505,5.51875,2.74603,3.2925960227272726,1.66544,2.632535,3.167965,2.0384325,2.1174225,0.8107783333333334,0.8107783333333334,1.78379,3.7895930303030303,3.92012,2.9221466666666664,3.77411,3.3852450000000003,2.4921168571428574,1.047395,2.642895,1.6415675,4.513625,4.10346,0.9288895833333333,1.8215275,3.77573,2.9664525,1.605645,1.64158,4.789725714285715,0.9153733333333333,2.79622,3.280965,2.773535,2.524795,2.752198,2.072385,1.00269,2.887875,3.026305,3.36228,1.4249433333333332,1.5348966666666666,1.74167,4.82903,2.342605,4.551305,4.87815,4.50835,5.48935,5.5176,4.315235,6.188585,4.151629047619048,0.777479090909091,2.829405,4.686485,4.179965,0.4551,0.8225339999999999,3.139485,3.775795,4.49411,4.98982,3.354440357142857,3.001405,4.71416,1.8299320000000001,2.5862,4.460105,4.363415,3.59629,2.765865,3.83877,4.559775,3.29984,5.582345,1.00016,3.162335,2.404755,4.275675,4.38819,4.378755,2.1002199999999998,2.49647,2.88622,2.058003333333333,5.0831,3.816955,1.6434142857142857,2.98023,3.85116,1.4453960000000001,5.96255,1.918328,2.58089,13.891039752586595,3.05832,1.4525366666666668,1.6104766666666668,2.268686666666667,5.571213333333333,1.695138,4.217841666666667,0.766573076923077,3.422166666666667,4.0906,7.5197175000000005,2.583126666666667,2.924526666666667,2.924526666666667,5.4325,4.166245,3.73822,3.313275,5.20475,5.27975,2.43918,3.4454666666666665,4.89593,1.2401016666666667,1.8922800000000002,4.68205,4.20861,3.835385,2.4765266666666665,3.22165,4.135345,7.299216666666666,6.2736624999999995,0.779754,3.819155,3.11084,3.24778,4.36538,3.954705,4.102425,1.625846,4.288865,2.511315,2.931155,4.169385,4.53314,4.624785,0.9325968571428571,2.4724533333333336,7.066906666666666,1.5808633333333333,2.1004755844155842,2.3938925,3.954895,3.601525,3.33299,0.7093054545454546,2.4918875,1.6928,2.2213875,4.69367,5.5272353333333335,2.957582,9.284654999999999,2.5089900000000003,2.9383233333333334,1.0886799999999999,4.84377,5.16065,2.0627,5.964341666666666,2.95358,3.19537,5.32215,4.50307,5.2613,2.68592,1.677545,1.677545,2.819535,3.415735,4.7547225,1.4792625,5.891525,1.43051,3.585145,1.486305,8.918369666666667,4.387165,2.84845,4.93468,5.24265,3.84527,1.0956666666666666,1.8334825,3.6095666666666664,3.1883166666666667,3.3577333333333335,3.8013333333333335,3.799075,2.768815,3.15053,3.39293,1.617305,2.53537,1.9884833333333332,2.89144,1.9789700000000001,5.2181575,3.2809899999999996,1.80406,3.0176933333333333,3.33486,2.960915,5.27635,5.84715,3.34813,3.58672,3.903375,3.086425,2.73764,1.1411833333333334,0.938006,7.18136,3.733215,4.26639,5.6232,5.78815,2.79823,3.2546033333333333,6.0826,2.614385,0.45837222222222224,5.2269,3.256795,3.57362,3.3015133333333337,1.4909857142857141,5.23095,1.100614,4.61711,0.89853875,1.3891066666666667,2.7578899999999997,2.4541033333333333,2.4705895714285715,3.712725,5.4826,4.721559166666667,4.721559166666667,4.0933375,4.0933375,4.734425,3.0417566666666667,4.53233,1.0330525,5.4678,4.641705,3.6025666666666667,4.446315,3.701245,4.719575,1.88593,4.464455,2.9569599999999996,2.89346,4.22947,2.43372,4.243765,5.1344,3.62071,3.4529,5.03115,4.28933,5.4857,3.58802,3.3666666666666667,6.33255,4.130575,2.9526233333333334,6.737733333333334,1.5948133333333334,2.1314625,5.00185,4.29824,5.31635,3.99219,2.0398829999999997,2.0398829999999997,13.917446773809523,5.34349,5.09155,3.262895,2.9184689743589742,4.588365,4.745165,2.4655,3.4606999999999997,2.98402,3.7031333333333336,3.5458,5.0301,2.11094,7.891456666666667,2.35779,2.0132775,4.454735,2.444365,4.782425,4.23315,4.68442,0.8270977777777778,3.707895,4.1821,0.8611639999999999,2.86319,4.023448333333333,1.527062,1.9025800000000002,3.043006666666667,2.61774,2.6953933333333335,3.6981,2.0973966666666666,0.49595428571428574,3.1035833333333334,2.7984500000000003,2.8970466666666668,3.1863433333333333,1.540528,3.047826666666667,7.404473333333334,4.62955,2.5438,2.1863966666666665,2.5936833333333333,3.71413,2.34251,3.836071,18.546935,5.68795,3.5669020000000002,5.1329,3.826705,5.423685,1.5563099999999999,5.3473,1.5588366666666669,3.77331,4.217875,5.38045,5.17045,0.9927033684210527,4.39198,2.77585,5.1616,2.801875,4.494995,4.653695,2.834175,2.2165466666666664,1.392272,2.0099475,4.48967,4.89047,2.453395,2.02139,2.9895600000000004,4.2709633333333334,2.863496666666667,6.1625,2.1360475,4.14797,4.39735,3.77062,5.1665,3.212215,4.286605,4.47929,4.41257,2.83662,2.83662,5.42576,2.005263333333333,2.66494,4.058735,1.805012,7.832855,3.643335,4.452826666666667,4.4321,4.62533,2.11594,4.420915,4.60383,3.566295,1.9170275,3.711785,3.298625,1.0484975,1.5008625,1.21452,0.72499,1.6451066666666667,0.9645216666666667,4.595275,1.2397555555555555,2.916423333333333,1.6339233333333334,1.815855,0.957065,2.0673075,2.560975,1.5766975,3.2392266666666667,2.7262,4.181218333333334,1.454675,2.4818425,3.7610333333333332,3.2853266666666667,2.26054,4.374873333333333,4.18639,5.270734166666666,21.768175333333335,2.78759,2.26137,0.6222276923076924,0.670488,4.857991666666666,1.9428640000000001,4.099655,5.2513,7.264040166666668,3.94404,3.664495,4.024195,3.2040466666666667,3.298033333333333,3.5118666666666667,3.03045,3.487133333333333,4.663205,3.72379,0.97211,1.15356,5.0991,3.3629,2.3262633333333333,2.1914533333333335,2.395453333333333,5.8266,5.17265,2.19666,1.5509933333333334,3.375005,5.09815,8.981616666666667,5.460121041666667,4.11936,4.639605,5.5033,4.979905,4.34724,4.636685,3.95491,5.71735,1.934535,5.6086,1.6368142857142858,5.49875,0.7379533333333334,5.013,5.75835,6.2477,6.29455,4.848685,5.7011,5.5804,6.5933025,1.7826166666666667,1.6357714285714287,5.6122,3.182645,6.623458333333334,5.25845,5.103893333333334,5.1588,6.2278,1.3011057142857143,4.072195,5.4097,4.133666666666667,4.775625,6.0592,2.6639,4.026185,4.4718,4.686345,0.9900666666666668,1.63887,1.333222,4.81528,4.087895,3.260575,2.36319,3.13501,2.3885566666666667,2.1366066666666668,0.38452083333333337,3.4529333333333336,1.573394,2.051591666666667,3.302576666666667,2.047,3.1438566666666667,2.633325,2.4544,10.321741333333334,3.5457,1.6378507692307693,3.7533,0.8107727272727273,4.5478137499999995,1.1548475,1.56221,1.82941,1.020555,5.785602333333333,1.1727215277777778,1.1727215277777778,1.1727215277777778,3.0397266666666667,1.8224779999999998,5.14595,2.86235,1.924735,1.663825,1.3015225,1.483325,1.6873280000000002,5.677690833333333,0.87107,4.392005,4.482125,3.2990633333333332,0.9958085714285714,2.2990825,2.2601325,2.2601325,1.68525,3.6089725,4.33133,4.60781,5.9336,4.23192,5.67415,3.0355733333333332,2.064455,3.089175,5.28715,3.8115,4.80369,1.0401275,4.031927916666667,5.4376,1.8806125,3.738235,2.83703,4.493425,5.00815,2.27512,6.0622,5.87845,5.2682,4.915665,4.200615,3.232605,7.99152,4.077595,6.035023333333333,3.370865,3.07192,5.1186,2.7002466666666667,3.16981,5.11415,2.8109699999999997,3.254945,4.01051,1.4521,10.8639525,4.256785,3.125655,15.00793119047619,4.229375,1.89349,2.830973333333333,2.75734,2.713415,4.542965,2.1919970833333333,3.072725,2.50799,2.872695,4.117505,5.957935,1.2963799999999999,2.2172075,4.202555,3.46553,4.70297,2.065765,0.5964793333333334,4.76075,4.411985,2.3867475,1.150725,4.77369,4.984705,0.9623533333333333,3.96108,12.647929999999999,1.309641,0.38558,3.9435333333333333,3.996715,0.8757677777777778,4.807065,3.97897,4.7934133333333335,1.3603383333333332,3.645495,4.092225,3.31925,4.185425,4.57775,4.70441,8.682285,3.72217,3.78573,2.812855,15.474235,3.54713,2.665175,1.2868725,1.61536,1.219745,1.9227474999999998,1.32044,1.9904775,1.777435,2.5732,2.2368975,2.72395,1.926735,4.48318,3.325425,2.863165,3.436085,5.359043333333334,2.5984633333333336,4.99388,3.137503333333333,1.1592375,3.94198,2.13409,2.8859033333333333,4.68621,4.713055,4.671755,4.32307,2.5682300000000002,3.1676033333333335,2.4437866666666666,4.73132,3.78824,2.409145,1.98066,3.7253666666666665,4.68142,4.944395,2.4200766666666667,11.168296666666667,0.551876,2.69624,4.72186,2.582798,1.013756,2.88032,7.628653333333334,7.3012033333333335,4.831895,4.18679,3.969455,2.2258925,2.677345,2.9749606666666666,2.1513466666666665,3.9307266666666667,3.95168,4.615405,0.547476,6.0757,3.4447666666666668,3.5467666666666666,3.669,6.57555,9.0702135,4.168871,1.1183075,2.214845,2.368755,3.885895,2.64968,4.42364,4.634525,3.5704,2.6353566666666666,3.862675,4.044075,3.8215,3.8044333333333333,1.83729,3.698685,5.1928,5.63635,3.751633333333333,1.2623,2.2726866666666665,29.153023948717948,1.4765725,1.4765725,2.56629,4.258342666666667,3.705445,4.83127,3.137385,3.8514,4.244845,3.111136666666667,4.214935,3.111136666666667,3.534025,1.9436666666666669,1.5113333333333332,5.42165,2.39898,4.747835,3.25565,2.689395,6.736546666666666,2.0210166666666667,5.11005,5.01435,3.448365,3.57962,4.78343,2.0320799999999997,4.70551,3.174755,5.961111666666667,5.251851666666667,2.49793,4.0747,4.051765,2.23956,3.4860666666666664,3.7715333333333336,0.4971335714285714,3.063223333333333,9.764213333333334,4.450225,4.283765,5.29645,3.40942,3.557265,1.341924285714286,3.615295,5.43635,3.132275,2.62654,4.836195,3.655645,4.1837,4.28237,2.236465,2.236465,4.03049,3.010675,2.9916945454545454,1.8914,4.62839,4.05374,1.2417742857142857,4.09075,4.548935,2.813496666666667,7.028305,7.86468,1.528486,4.39654,4.5561,6.882894,0.642483,7.432556666666667,3.454736666666667,0.6511927272727273,5.50305,5.5022,5.60115,4.42026,5.15805,4.42658,4.999275,4.02116,4.35463,4.726985,4.2339,5.59025,5.2424,3.876865,3.525855,4.260215,3.805095,0.671101,4.42493,3.30467,1.796295,3.7865,4.404085,5.63595,1.0412342857142858,4.784368333333333,2.853575,2.6735366666666667,2.5771,1.3094366666666668,12.762249166666667,3.417866666666667,3.4148333333333336,2.496593333333333,3.819277619047619,6.524263333333334,6.142821666666666,2.66383,1.86237,2.21452,2.21452,2.21452,1.3864533333333335,3.55249,3.665575,2.692035,4.691845,8.243185,4.41867,1.1295220000000001,2.4157,3.596555,2.26829,1.812398,3.97214,2.984925,1.4624933333333334,3.252713333333333,7.286135714285715,7.1370000000000005,5.4165,4.014005,3.1657666666666664,5.5465,4.60557,5.340978333333333,1.77807,1.77807,3.96278,3.90489,2.719424333333333,2.719424333333333,3.80292,1.0758314285714285,4.558835,3.35279,4.161115,4.419375,4.53075,3.0230766666666664,0.9750685714285714,4.223615,4.591245,4.06535,4.70859,5.2352,4.896005,4.434305,1.8230825,1.5084875,3.31442,3.833525,3.2548,4.292255,2.144345,3.2162025,4.18106,2.80506,4.8896,7.7386099999999995,2.3215466666666664,2.905866666666667,4.4315742857142855,4.531385,1.54729,2.0689985714285717,1.00372,2.0689985714285717,1.7165266666666668,1.7165266666666668,1.488606,4.30945,3.214725,3.6249,2.392175,3.973475,1.5627616666666666,5.44335,3.04811,1.693095,2.532366666666667,4.55691,3.24093,6.202609000000001,4.799375,1.278976,0.9052433333333334,3.541795,6.078953333333333,2.38436,3.588855,3.66898,3.66898,2.340255,3.415415,3.13289,1.4017746753246754,3.0792433333333338,3.535315,2.98903,4.813205,4.0122824999999995,1.6491775,3.579505,4.52028,4.653235,5.0032,4.402875,2.152045,2.121785,1.2700266666666666,2.374735,3.38707,1.921715,3.865855,3.1629233333333335,2.76073,4.17019,5.01795,2.904395,0.9563980000000001,1.7773966666666665,1.389455,1.129711111111111,5.07415,3.920795,1.169162,0.21026695652173916,0.21026695652173916,0.21026695652173916,3.52393,5.558728333333333,4.472725,5.2188,2.636395,3.66171,4.1778,4.371755,2.716945,3.4807,1.6301625,4.783265,3.94539,4.041015,4.463395,4.308485,0.8124136363636364,0.8124136363636364,0.8124136363636364,0.8124136363636364,1.130504,1.130504,4.013185,4.15183,3.78622,2.59304,2.62938,6.1332,3.593565,5.21705,4.24791,2.90819,2.55471,10.1652,1.660116,1.660116,4.47359,5.31355,3.18478,0.459125,0.459125,0.459125,0.459125,0.459125,0.459125,5.117,4.910535,3.75963,4.29293,2.613096666666667,2.613096666666667,2.81442,3.094543,2.7891,3.262855,3.69056,7.195591,1.417758,4.894895,3.56014,4.38502,10.768376666666667,2.518803333333333,3.37514,0.9174357142857142,3.67856,4.795705,4.327365,1.261125,2.7721733333333334,4.205095,5.748,2.777925,4.794355138888889,1.2355222222222222,1.8563466666666668,4.819905,4.663115,3.1414600000000004,2.6422333333333334,2.4174166666666665,1.2906,8.064475,3.4171333333333336,2.152816666666667,3.160095,2.8939033333333333,3.67953,3.541245,2.6397533333333336,3.1125166666666666,5.8293,1.5468716666666669,4.36879,5.0284,4.10566,3.93381,2.83756,3.308095,3.793075,3.921965,2.97691,4.662845,4.85772,2.9762766666666667,2.103175,2.9255033333333333,2.787153333333333,2.7704633333333333,0.8467418181818182,2.178705,8.385545,0.528070625,2.9855633333333333,1.4680166666666665,2.6148700000000002,3.29961,2.90283,1.1753888888888888,1.8477679999999999,2.7978199999999998,2.2026525,3.77427,2.20444,2.733503333333333,1.4535799999999999,2.9834060000000004,2.0796775,1.2541885714285714,2.8839066666666664,2.2111325,2.35856,2.4258966666666666,2.59286,3.1659333333333333,3.3596,3.2530966666666665,2.892716666666667,2.5689466666666667,2.7703466666666667,2.30944,1.5963266666666664,2.33034,2.5977466666666666,1.5547866666666668,2.933073333333333,4.033721904761904,2.7986233333333335,2.936636666666667,2.9356500000000003,3.5822333333333334,4.432798333333333,2.8723333333333336,1.67084,1.67084,2.26956,1.1491375,2.51795,3.276094,4.50525025,2.659525,1.82536,2.1171575,2.1329775,3.730875,3.14974,4.097945,5.14945,1.7706025,2.58481,3.680865,1.495272,1.495272,3.124925,0.7324723076923078,3.491161153846154,2.55675,2.55675,2.9979566666666666,2.6059666666666668,2.5374733333333332,2.6702616666666668,2.360625,6.013951666666667,3.96551,3.96551,3.809505,3.09404,2.345065,3.125445,2.469645,2.79368,5.27755,0.48746666666666666,0.673007,4.12097,2.27137,2.64605,6.592856666666666,4.079655,1.68922,3.9549133333333333,4.41788,3.97896,4.37317,5.54035,4.75388,13.320605500000001,3.888665,1.6612799999999999,2.836335,3.808515,5.05845,4.803485,4.43771,4.605225,3.760295,3.202845,2.833576666666667,3.943075,2.845356666666667,2.38677,2.38677,4.191815,3.1759,2.96294,3.45116,2.37154,2.582315,2.005435,1.9526775,1.947705,2.061165,1.7654325,4.0890705,3.66478,2.548565,6.4666825,3.322045,2.395086666666667,1.8201933333333333,3.57359,4.001625,3.68132,2.9879060416666667,3.43884,3.33416,4.36891,3.724185,3.872455,3.9569,3.856769,3.55669,0.6637166666666666,0.6637166666666666,0.6637166666666666,3.45597,2.40423,6.0285,2.719765,3.713935,7.960519814814814,3.1237766666666666,0.3101757692307692,5.0854,0.762609,4.319875238095237,1.938725,3.672805,2.018155,4.53115,5.62608,4.35973,3.31107,2.83272,2.7884333333333333,1.4554,2.240936666666667,0.6426578947368421,0.634435294117647,2.96461,1.4558466666666667,2.24331,3.9066,3.463715,5.16595,2.758176666666667,2.832228333333333,3.516675,6.7346,1.945045,1.0334571428571429,2.5992,2.912316,1.2448377272727273,5.42225,3.77816,3.624615,2.6738633333333333,5.29795,3.1910566666666664,2.90434,3.1389666666666667,2.20243,2.17276,2.2005825,3.4613333333333336,2.4299500000000003,5.745143333333333,2.428855,1.9618466666666665,2.4239333333333333,4.655096666666667,3.1816960000000005,3.1816960000000005,2.3668033333333334,3.95814,2.2725075,3.607625,2.94012,0.57976,4.3859,2.25999,11.90479111111111,7.16978,3.046285,3.35845,3.378725,5.68478,2.87362,3.62041,0.24583666666666665,1.81194,4.192566666666667,0.94405,4.05346,1.4089057142857142,4.9833,3.277105,4.793635,3.819835,4.038985,2.21254,4.54058,4.097445,4.108315,7.13346,4.2971,2.9748433333333337,3.07577,1.604506,1.93769,4.43226,5.10925,4.002447500000001,2.20638,3.408325,1.260814,2.879405,2.40157,4.19018,10.38073,3.69661,9.83353,3.796205,4.42679,0.96082,4.774041,4.95155,2.595143333333333,2.8941166666666667,3.5012666666666665,2.7834233333333334,2.4092233333333333,1.6770166666666666,1.8944400000000001,3.5992,1.695052,2.7054333333333336,5.331653333333334,2.6490066666666667,1.0511135714285713,1.0511135714285713,3.68687,3.7479005,3.7479005,3.3587666666666665,2.90603,3.6155956410256413,3.528233333333333,2.7274333333333334,2.7732466666666666,2.28684,2.5243933333333333,3.16691,2.2697325,2.816273333333333,1.6357679999999999,5.831683,9.49171,0.4800592307692308,0.4800592307692308,0.4800592307692308,0.589751048951049,0.589751048951049,0.4800592307692308,2.7498799999999997,3.020606666666667,4.2642999999999995,1.5007533333333332,1.7608825,3.346316,2.3937566666666665,3.0385833333333334,2.3723266666666665,3.063023333333333,3.5155999999999996,6.987328333333332,3.13961,2.620983333333333,3.7284666666666664,3.663935,2.77117,3.4078666666666666,5.89454,2.3803433333333333,3.4448333333333334,1.373195,1.373195,2.42222,0.5051821052631579,1.8903066666666666,2.8927533333333333,2.9738566666666664,3.0273866666666667,2.2959133333333335,1.42575,2.6881266666666668,2.7525633333333333,2.404383333333333,5.17735,2.3139546666666666,3.801355,2.99911,4.944635,0.5323249999999999,6.78175,2.9462019999999995,2.9462019999999995,7.363385,1.7567266666666665,1.7990133333333331,3.046946666666667,3.78024,2.4125666666666667,1.96865,2.6506466666666664,1.7128125,3.4733666666666667,1.76129,3.0526435000000003,1.3743625,0.27381136363636366,0.27381136363636366,5.02515,4.02351,3.153635,2.931063333333333,2.80074,3.48438,1.3338833333333333,6.62225,3.773435,3.087265,1.8897525,1.3250741666666666,2.095365,3.046946666666667,2.6171,2.103485,5.757885,6.5702,5.7149,3.636845,1.94959,0.6843225,7.0066375,2.0341075,1.40581,3.2077,4.54942,2.295665,1.8251666666666668,4.70796,4.453695,3.5891333333333333,3.31716,3.89877,5.15755,3.4502333333333333,2.534036,2.534036,4.18069,4.9562,6.08245,6.906293333333333,2.6808833333333335,3.58978,1.3823500000000002,1.9140525,4.169942666666667,3.983435,1.816076,3.851745,3.5704225000000003,4.20787,2.172235,4.07832,5.1225,5.24915,4.508035,2.4467766666666666,2.6762533333333334,3.6099333333333337,2.0867533333333332,2.778125,2.816193333333333,2.624006666666667,0.899141,1.940465,2.46297,2.259266,4.46239,4.478315,4.417585,4.24264,3.371475,6.137915,11.95325,5.1306,3.94769,4.524455,3.899275,4.72738,2.8689466666666665,2.742929,3.783333333333333,1.221885,2.87829,2.857575,4.959695,5.5722,4.24481,2.798626666666667,2.5175533333333333,2.290923333333333,3.8981666666666666,4.077565,3.469666666666667,4.077565,2.3114142500000003,2.2703533333333334,2.418328333333333,2.4410725,2.439486666666667,1.8022566666666666,0.7664783333333333,1.1937716666666667,1.80941,2.11911,1.6458566666666667,1.3315166666666667,1.5934433333333333,2.6549133333333335,1.5199120000000002,3.002076666666667,1.2815166666666666,1.6195300000000001,2.68094,1.9856800000000001,2.25775,2.0379866666666664,2.41407,3.40732,2.30742,3.01411,3.1315000000000004,2.53387,3.17618,3.11555,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,4.859175,4.36464,1.0468457142857142,3.218336666666667,2.6352333333333333,2.888033333333333,4.095245,3.1633933333333335,4.49073,3.6270446666666665,1.582492,3.242836666666667,1.6209333333333333,1.13557,0.842532,1.1670916666666666,0.9509150000000001,0.8123241666666666,1.322378,3.26337,1.84653,1.8061666666666667,1.9384200000000003,2.2770277777777777,1.1822066666666666,1.4856266666666667,1.4805716666666668,0.91315,1.269765,0.7568466666666667,1.018736,3.45228,3.5669,4.070395,4.447425,4.219405,2.9888399999999997,3.93646,3.8861666666666665,2.1878,3.598565,1.94945,3.638435,2.0861433333333332,0.7963945454545454,4.235695,4.03129,2.08245,1.250185,2.853105,3.360475,3.6089725,2.9974066666666666,2.61724,0.87016,2.197845,5.3018275,3.970255,2.45729,1.5068616666666665,3.82281,2.0487775,0.6769045454545455,5.26935,3.78895,4.02111,2.45416,1.375542,4.542895,4.497855,2.58817,2.6347366666666665,2.5694433333333335,2.6378833333333334,2.7334566666666666,2.9703533333333336,3.2738533333333333,1.3200125,2.6101,2.5009433333333333,5.45635,4.61056,3.93754,4.459155,15.458174606060606,4.1732075,4.733456,2.843505,4.030715,5.1769,1.551278,2.665825,2.3947366666666667,6.8900049999999995,4.119685,4.744425,4.291885,2.3947366666666667,3.95826,2.14305,2.3492566666666668,2.8519400000000004,2.72094,1.2863733333333334,4.318515,3.67188,2.688515,4.24306,2.37154,2.53046,3.72255,3.21761,5.1404,3.911235,2.736355,3.646305,2.66004,2.8612133333333336,1.098458,1.098458,2.896383333333333,2.0283666666666664,0.24023607142857142,5.172613,0.94383,2.713625,4.08232,0.58417,4.677475,7.759246666666668,1.884695,3.6945,3.662325,2.7433933333333336,3.319655,2.391765,3.04241,3.55241,4.11256,3.05348,4.091966666666667,0.9715833333333334,12.212657333333333,2.679215,2.92078,3.607145,2.69675,4.084065,7.589923333333333,4.29634,4.55881,4.0258,4.39201,5.2962325,1.6538475,2.992843333333333,4.562975,3.8566000000000003,1.870332,3.877025,3.92021,3.703915,3.9191,4.595465,4.29555,2.5569883333333334,3.76921,3.881405,5.08165,3.81,2.2592266666666667,2.43769,2.4017399999999998,3.13808,1.3260966666666667,3.680066666666667,0.7946072727272727,3.270566666666667,3.0559433333333335,2.57648,1.6317016666666666,4.32316,4.11059,4.17224,1.8572,4.58244,3.735525,0.7220200256410256,0.33907269230769227,4.54026,3.968625,0.94755125,0.33907269230769227,3.317485,0.7220200256410256,0.7220200256410256,0.33907269230769227,5.846628333333333,2.4523033333333335,2.4762033333333333,5.5276,2.46646,3.288895,0.8109866666666666,3.102295,3.771285,4.254175,5.4138,2.23546,0.7315207692307693,4.514926666666667,2.26514,1.571296,2.20879,1.1198014285714286,2.54638,2.3942900000000003,3.332,5.2785,3.02856,3.5045333333333333,3.124413333333333,2.42182,2.92242,4.12247875,1.4803575,1.994465,3.910035,5.5852,2.1027205555555555,5.23605,2.806225,4.189485,4.2857,3.499925,1.1844675,3.124265,6.2647,4.20916,3.79927,5.09085,6.32445,2.85931,5.10265,4.528985,3.31575,3.53568,8.38508,3.83836,4.432735,2.26157,1.0395925,2.38945,1.890155,2.19285,1.829765,4.94755,0.7012857142857143,3.668385,3.59692,1.93053,2.665973333333333,4.628245,4.411405,2.82197,4.583865,5.62475,9.995911333333334,2.7554866666666666,2.8773133333333334,1.698216,1.9547833333333333,1.3117733333333332,1.3861366666666666,3.2553533333333333,2.58952,3.17975,4.5512466025641025,1.4671725,2.3223266666666667,4.98566,5.59595,3.806025,3.519805,3.06095,2.59878,2.091865,2.051305,1.8000800000000001,2.06886,3.441315,3.89793,5.3576,5.53795,4.8856,5.28500875,3.37975,2.46786,6.476942916666666,5.2625,7.245635,4.933160833333334,4.933160833333334,5.348644999999999,1.6382033333333332,1.407265,1.35801,0.73182,5.03815,3.685366666666667,3.27217,3.27217,1.865782,4.48608,4.457325,4.797275,4.636625,2.8491733333333333,2.671495,4.11862,3.2136533333333333,5.119038333333333,4.074475,0.85368,5.71655,5.19855,5.27045,5.2383,3.105485,5.89115,4.5715,0.8824923076923077,5.2527,5.909688333333333,3.2046,5.74525,5.8658,3.48774,2.511705,3.716335,6.4601,2.100505,5.90145,1.86015,5.24,2.8630166666666668,2.225455,1.00016,4.39475,5.5845,3.29111,4.16404,1.8010566666666668,4.625565,8.108093333333334,3.50189,4.13487,2.54553,2.461465,0.885721,4.910145,1.54127,3.481511666666667,3.481511666666667,3.95131,2.35631,3.0355933333333334,4.095015,1.7614175,3.3063866666666666,3.3674666666666666,3.4220666666666664,2.87709,4.080595,2.63994,1.79308,3.533,2.0686775,2.889416666666667,2.07962,3.0124866666666663,2.769023333333333,1.4542857142857142,1.6474833333333334,0.42789666666666665,1.2800233333333333,0.42789666666666665,0.42789666666666665,1.6474833333333334,0.42789666666666665,3.3377,3.18924,3.18924,2.7282966666666666,5.0667,5.28755,4.447865,5.31455,4.75199,3.451165,4.487635,4.08314,2.02962,2.6601766666666666,2.5086333333333335,0.7978236363636363,5.631,2.8819700000000004,3.1131533333333334,5.5742,3.6154574999999998,5.2257,3.427735,2.6270599999999997,2.950995,3.25329,2.5446,2.7696366666666665,2.0899766666666664,5.62685,0.8946988888888888,4.1563,1.1843371428571428,4.01376,2.19328,2.9923466666666667,4.181365,4.241195,4.0042,4.77426,4.127965,4.13791,4.322105,4.339175,2.487455,2.64565,3.5534666666666666,4.19636,2.908945,3.215405,2.660845,4.776025,2.743396666666667,3.38743,3.29342,4.78367,3.98038,67.37898829177767,2.786620833333333,4.2452,16.596363,4.09057,3.02099,1.9279333333333335,1.9140566666666665,2.6281866666666667,4.6143625,3.1988866666666667,4.8776150000000005,5.27835,3.238975,7.820545,5.08125,2.583785,3.29957,3.66275,3.65787,1.910244,1.13973625,4.70317,3.02974,6.069498333333334,3.549745,2.1399133333333333,3.60715,3.16911,4.48494,3.172645,5.740215,4.76021,3.3713,3.274365,2.3021575,3.1449,4.352195,2.48124,3.87036,4.37243625,1.2229483333333333,2.694255,5.125405,3.12211,4.53687,3.56481,2.83248,4.637615,3.096305,3.684885,3.327375,4.367875,3.15742,2.740685,4.42023,9.514325,3.2007733333333337,4.23738,6.5759,3.37224,3.039245,3.994476875,1.9019733333333333,2.9507033333333332,3.4549960000000004,3.61866,3.268845,2.88568,3.15075,3.341765,3.9136,3.82304,4.190755,4.152595,3.6358,4.01606,2.5333916666666667,2.5333916666666667,6.654163333333333,1.755985,3.30468,3.64318,2.551855,4.769065,4.14245,2.78556,3.07561,5.3671,6.650499999999999,0.63422,3.569865,2.30653,2.9419566666666666,2.7238666666666664,5.35125,2.7128633333333334,2.0212725,1.12988375,2.1316331818181817,4.122565,3.889255,4.00463,5.77765,4.157515,5.83795,2.445305,1.78257,4.220205,4.449265,3.3596333333333335,2.15403,1.03196,2.55758,3.0523933333333333,1.666086,2.210836666666667,2.422388857142857,3.5483364835164832,2.823215,4.944245,3.39272,1.5663625,5.29965,3.45996,4.04552,4.82596,4.319855,4.815685,2.0339133333333335,1.42777,0.6271457142857143,1.5690266666666668,3.57252,2.59969,3.551991666666667,1.3276166666666667,2.585985,2.336735,3.448085,3.51834,3.836825,4.0403400000000005,1.6329225,1.4363425,1.9359725,2.09167,1.4974975,2.75075,6.331942833333334,4.91117,3.7702,2.90459,7.322675,4.68984,3.133765,3.11731,3.36624,2.625785,3.84022,2.31259,7.17084,0.9287550000000001,3.20742,6.26025,4.15063,5.0263,5.27855,1.4935766666666668,3.1481100000000004,2.6697566666666668,2.9196066666666667,1.72165,4.09129,8.70071,3.47883,4.599505,4.19599,4.888145,4.523415,0.8953016666666667,2.775536666666667,5.1855,6.61088,4.471425,5.0647,2.850665,3.9046000000000003,2.2856433333333332,5.11185,5.0076,3.8267406904761905,3.8267406904761905,0.6526728571428572,2.4778066666666665,0.909902,0.7914933333333334,1.8588775,3.5237,2.9287339999999995,4.153509714285714,2.3592166666666667,2.6840397142857144,2.789139047619048,3.1707366666666665,2.8824433333333332,4.5671333333333335,3.2552674999999995,2.0132475,2.0132475,3.72224,3.0568066666666667,2.8284233333333333,3.984955,3.3711333333333333,0.5448077777777778,3.3876000000000004,2.6115666666666666,2.941073333333333,2.743093333333333,2.64065,2.6644466666666666,3.3166333333333333,3.0635066666666666,0.8569229999999999,2.752743333333333,6.270704857142857,2.0373200000000002,7.581194166666667,1.586912,1.586912,3.3771516666666668,3.1093666666666664,3.3107633333333335,3.13768,1.8725460000000003,1.3905657142857142,3.2017366666666667,3.2547566666666667,1.6015616666666668,1.4993999999999998,2.9331566666666666,2.857538,2.71721,1.96737,2.1648175,2.744835,2.31715,2.86201,3.36983,1.63709,3.66154,3.21243,7.068759999999999,4.67304,1.8227125,3.93363,2.598965,2.248545,3.99079,2.77049,2.773245,6.9586275,0.8263307692307692,0.49785250000000003,4.53414,1.4033060000000002,1.4033060000000002,3.87742,2.3929625,4.76094,3.30974,1.4259266666666666,2.482558666666667,2.904476666666667,2.5482236666666664,4.91678,2.72887,2.5749866666666668,2.0609066666666664,1.5239328571428572,1.5239328571428572,1.9886533333333334,3.958785,3.875166666666667,5.7066,3.1744033333333337,5.2307,4.79903,6.9042,4.88883,2.616475,2.7792133333333333,2.68661,2.717496666666667,0.7562666666666666,0.7562666666666666,0.7562666666666666,3.300675,4.49866,4.239545,0.8312275,0.8312275,4.9436,6.39415,6.38826,22.020753166666665,12.4932,8.24609,3.359295,5.8837,2.3615725,4.63376,2.4771300000000003,3.3211433333333336,4.288333333333333,5.497724,2.04711,2.0282,6.99409,2.00118,2.00118,6.72885,3.356385,4.85087,1.8009925,4.691647833333334,5.00315,3.70699,5.1839,3.860015,1.7565799999999998,6.2328,8.83526,1.7565799999999998,1.8009925,2.1258766666666666,0.839294,0.839294,1.675288,2.2883066666666667,1.675288,4.3968,5.9146,6.4169,9.43122,1.8009925,11.905659666666667,6.22595,6.25055,2.3615725,3.068955,4.85309,9.23585,3.1479850000000003,3.99984,6.031,3.517085,5.02735,6.2459,4.751885,5.0877,5.12245,2.773795,5.29525,3.91618,4.311375,4.16622,0.80949625,1.57266,3.15018,5.7927,4.97784,2.6490066666666667,1.9604225,4.119565,4.64718,5.74165,5.08835,4.876575,4.46499,3.16229,4.282115,3.59423,2.1137275,4.8426675,2.124825,2.57393,3.55157,2.0730166666666667,3.98535,4.48322,3.791755,5.31425,2.98849,6.601371666666667,0.971588888888889,3.49227,5.1465,1.2490400000000002,5.523912,1.60534,1.7604666666666666,2.9158566666666665,2.7662555,3.110716666666667,2.9898866666666666,2.0648775,0.7978181818181818,2.441543333333333,2.521045,4.4647,0.6876207692307692,6.035446666666667,1.7500766666666667,1.24658,3.3788666666666667,1.24658,3.79617,0.7762854545454545,4.464045,3.1334733333333333,1.78635,4.042486,3.7060785000000003,3.7060785000000003,4.5844,2.6211,3.364466666666667,2.6232666666666664,1.540528,3.724525,3.806015,2.05418,0.7600941666666667,7.217734102564103,2.725245,3.67717,4.46303,7.48397,2.6104,3.94464,3.91624,3.169005,4.203285,5.5981,6.6541075,3.94588,4.900075,5.47925,2.90439,4.429445,3.87409,4.73474,1.1023388888888888,0.5151371428571428,3.05452,3.396933333333333,2.83269,5.6795,3.890135,4.378425,5.15855,4.703095,3.77844,4.44594,1.22247,2.396345,9.179345833333334,2.3139266666666667,1.9966566666666665,3.8699757142857143,10.755639623015872,1.558155,5.1603,5.9148,4.712425,3.096463333333333,2.141103333333333,3.192883333333333,3.733465,1.1134683333333333,3.3641666666666663,3.67269,0.4435794736842105,2.012983333333333,4.9629,4.493545,2.435935,4.077505,3.35347,5.145830833333333,1.2414366666666667,0.6201681818181819,3.904394166666666,1.1059428571428571,1.07984625,1.07984625,1.07984625,1.07984625,1.5715266666666665,2.9334433333333334,2.4248166666666666,3.013333333333333,5.1803,3.6351666666666667,4.87957,3.62801,4.69448,3.50836,3.9223,1.4404166666666667,7.450519999999999,2.36732,5.4501,5.46857,4.68932,5.190939166666666,2.5956966666666665,2.4977233333333335,2.775446666666667,3.43005,1.2312266666666667,4.998363333333334,2.6722633333333334,5.1435,2.714366666666667,2.270373333333333,3.83683,3.486565,2.868335,2.5328733333333333,2.7208166666666664,1.48171,0.4011588888888889,4.50101,3.049425,4.290505,3.58349,3.798585,5.8839,4.429035,0.5428569230769231,3.1057180000000004,7.201906666666667,2.106856666666667,1.9893319999999999,5.820141666666666,4.04333,2.6245966666666667,4.5921,5.10865,3.41479,4.13174,4.13568,5.0922,5.0488,4.84629,3.64789,5.5334505,1.6009740000000001,1.5519,4.49677,3.958285,4.909435,3.201385,5.1503,5.0785,3.92629,3.47316,15.77240178782204,1.373945224719101,1.3055125,2.1596470454545456,0.531034375,0.44620266666666664,1.563,0.3528852941176471,1.349116,3.161443333333333,1.427764,1.0101083333333334,0.9855291666666666,0.4839691666666666,0.9855291666666666,0.9855291666666666,0.4839691666666666,0.8721538461538461,0.7300642857142857,2.8194,2.5734666666666666,3.190535,4.59552,2.86145,2.6692,4.113185,4.698615,5.36505,2.78298,4.464695,0.714105,2.500627333333333,9.26319,4.646865,6.766748333333333,2.985595,3.766545,2.36304,4.73724,4.63454,3.19871,4.384715,2.678345,0.9705050000000001,4.187335,5.0417,0.8558920000000001,1.287426,1.5392333333333335,2.4489533333333333,2.6866466666666664,4.29352,5.50785,2.28295,2.28295,3.556781666666667,6.48017,2.0783333333333336,0.6578427272727273,0.78261,2.2704933333333335,3.4007666666666663,1.0620142857142858,1.0620142857142858,1.0620142857142858,0.3671876923076923,0.9913614285714286,3.086625,6.23535,3.8887666666666667,4.222366666666667,5.62665,1.06507,3.608333333333333,3.4278999999999997,4.1460333333333335,5.97375,2.73436,7.511166666666666,5.33675,1.1393666666666666,3.6705666666666663,1.674542,2.77761,2.29625,6.986303333333334,2.5118199999999997,4.608355,2.1129775,2.779845,4.10225,4.34435,0.408835,2.16864,1.4447733333333332,2.66557,4.19985,2.226246666666667,2.83363,2.0679766666666666,2.518123333333333,2.4069333333333334,2.77496,2.7657433333333334,2.9501266666666663,1.55329,2.1393,1.9974433333333332,2.7922100000000003,2.3971,2.04504,1.9288466666666666,1.9669066666666666,1.76468,3.40344,2.166463333333333,2.1005,2.18495,2.3733333333333335,2.54014,0.7748988888888889,0.7748988888888889,0.7748988888888889,2.53603,2.2424166666666667,3.0255766666666664,3.4161,2.77038,1.8457933333333332,3.849485,3.665105,1.3943416666666666,2.5708266666666666,2.8691166666666668,3.6591899999999997,1.5946285714285715,7.095763333333334,4.73363,3.254155,4.282475,3.616645,1.47238,0.41187642857142853,2.882775,3.784715,3.6591899999999997,5.0209,4.265205,4.841715,2.84301,4.044785,4.461445,0.836422,2.812485,3.34418,5.037616666666667,4.903715,3.602855,3.17858,2.498585,2.75507,2.6407833333333333,0.6370316666666667,5.331575,2.55965,4.405265,2.8263433333333334,3.753091666666667,3.1214999999999997,2.3835166666666665,2.9839936666666667,2.9839936666666667,2.4986,2.1258500000000002,2.8571766666666663,2.0509633333333332,4.094955,1.415354,2.7502,3.748515,3.915885,3.95209,4.959135,4.965415,2.3780575,2.2135,3.33665,2.927075,2.72635,4.63151,3.007725,0.7318171428571428,0.7318171428571428,4.17431,3.785359,0.936204,4.519825,0.936204,3.886465,4.291835,5.5304,3.297095,3.50172,6.4906275,4.718850833333334,6.2887,0.9459571428571428,0.9459571428571428,2.21026,4.533168333333333,1.4459933333333332,3.087175,3.491845,1.128437142857143,4.256375,4.050425,5.647399999999999,5.647399999999999,1.1116433333333333,5.8801,5.2093,4.1737,6.1739,2.0749725,2.0749725,7.0907,1.0124272727272727,6.81385,1.95763,5.8637049999999995,2.72966,2.5754033333333335,3.362275,1.3502319999999999,2.2059966666666666,2.528706666666667,3.0103733333333333,2.948870238095238,6.944737999999999,1.855572,5.64055,3.1050133333333334,2.6056766666666666,1.72981,2.30586,2.987935,3.60433,4.017925,2.628215,2.25556,2.12068,2.54272,1.124194,3.34532,2.12155,3.096325,2.185074,2.185074,2.98885,2.131893333333333,3.70154,3.751215,5.5642,7.660873333333333,4.641475,3.520335,6.381485166666667,1.9963499999999998,3.2467822222222225,2.1340266666666667,1.4697571428571428,1.72993,4.031625,1.7034833333333335,0.500175625,0.6548783333333333,4.44469,4.14779,2.78948,1.0694255555555554,2.91973,2.859226666666667,4.858025,1.891042,2.00743,1.1962111111111111,4.58656,4.022125,4.336035,0.6204989999999999,4.087745833333333,5.11855,4.121565,4.53696,3.50304,3.984325,3.0726066666666667,5.61365,3.838915,2.6612899999999997,2.54587,5.519704166666667,5.8336525,0.7289525,3.980315,3.99571,4.968605,3.417033333333333,3.5881666666666665,2.785625,3.179396666666667,3.7568,5.853705,2.857538,2.741282,3.329545,4.376355,2.282275,2.531175,8.366196666666667,4.6145,1.8469333333333333,4.973005,4.790655,1.8877659999999998,4.040535,1.3928625,1.7943857142857145,4.850605,4.136135,5.7962,3.29661,4.314985,5.0366,6.2185,4.520055,5.692,4.759815,5.8238,4.366545,4.5053350000000005,1.194251,1.194251,7.9502,0.6490825,2.167222777777778,0.6490825,0.8171933333333333,0.3618377777777778,2.984416111111111,2.296755,0.5961299999999999,2.167222777777778,1.814365,3.2151,2.3882861111111113,3.758825,4.439185,7.19021,1.94535,2.16352,2.287305,4.9117,5.6601,2.61164,1.684085,1.4369725,3.1210575,3.956725,2.7323,4.100315,6.530139999999999,0.44208555555555556,3.89874,0.710017,2.9467166666666667,2.544075,4.14723,1.242595,4.320145,4.6238025,4.33657,2.961895,4.13479,5.0909625,1.6437575,3.268265,0.6187384615384615,2.681635,2.550775,1.122222,3.042213333333333,2.5080733333333334,2.580366666666667,4.125285,10.194949999999999,3.569466969696969,3.57201,3.66501,8.702695,6.055759166666666,3.369666666666667,4.225305,3.71444,4.90656,5.4165,5.52305,4.36492,5.58635,6.307,2.6572766666666667,1.5050575,1.9170266666666667,2.3042666666666665,4.415545,2.4536000000000002,0.21823648648648647,0.21823648648648647,0.21823648648648647,31.337083214285713,0.21823648648648647,2.847486486486486,0.21823648648648647,0.21823648648648647,0.21823648648648647,3.307713153153153,4.3799,0.21823648648648647,0.21823648648648647,0.21823648648648647,0.21823648648648647,0.21823648648648647,2.99706,4.71571,3.10815,0.2680717948717949,0.2680717948717949,4.305162666666666,4.181697083333333,4.0575737499999995,3.005931861111111,4.059565238095239,8.071266666666666,10.999992174048174,6.554398,8.245658666666667,6.121038642857143,2.42222,6.206833809523809,4.3672233333333335,4.66774673076923,0.2680717948717949,7.907962666666666,6.779880952380952,7.293746666666666,1.6972,8.574959642857143,13.36704,18.56471333791209,56.062184280064706,115.22105012370717,1.373195,3.4448333333333334,3.05995,3.9948867194337194,0.2680717948717949,1.780304230769231,8.587994791666667,14.64961230952381,19.713994166666666,49.02710069152047,13.463410476190477,2.3827075,0.2356710344827586,0.2356710344827586,4.58874,2.78468,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,5.9211,0.2356710344827586,0.2356710344827586,0.2356710344827586,2.839595,1.9079066666666666,3.34243,3.956485,4.147670833333334,5.1848,2.599625,4.1559,4.19968,3.08279,1.4472533333333333,3.564935,1.0193466666666666,2.3089975,2.8003733333333334,5.593153333333333,5.97391,2.9152133333333334,5.734874722222222,0.37703277777777777,0.45859666666666665,2.5631833333333334,2.9339099999999996,3.11247,4.37118,3.27917,7.489128749999999,3.777575,3.20707,3.517255,4.14585,4.733035,3.319045,5.11865,1.9602,0.4754338461538462,0.9172545454545454,4.3331825,1.78894,3.61808,3.81319,4.507375,3.418365,2.580125,2.643685,0.5674546666666667,0.676304,4.19522,2.63487,4.565565,3.92952,4.05608,2.59506,2.905055,5.83495,5.2202,3.296365,0.8049136363636364,2.9983633333333333,4.871815,2.272185,0.9662725,1.72951,3.78407,4.405965,1.964265,3.66302,3.03851,2.31707,2.426425,2.50161,2.1899,4.060405,2.371575,3.928095,0.6738685714285715,2.470146666666667,3.28276,1.79838,6.33717,4.230985,4.19211,4.46742,2.96866,2.01357,0.6763318181818182,5.7461,3.814545,3.904535,2.450515,3.524995,3.55998,2.93769,2.66846,1.2953314285714286,5.25135,1.963645,2.669775,9.496805,4.395225,5.23235,3.41184,1.040991111111111,3.163095,1.0338714285714286,3.25155,6.33725,5.42505,5.6828,3.875395,5.01835,4.429805,1.76172,1.7088533333333331,5.31185,3.2371499999999997,3.7451000000000003,2.391765,4.38374,4.15834,1.491485,3.698,2.866195,2.712165,3.367985,9.26892,4.459445,1.8108025,4.80854,5.80759,4.8219025,4.06526,3.88288,3.832875,4.56861,8.32193,2.46257,3.25414,5.85025,4.25573,2.99953,3.135905,5.1909,3.95898,3.503075,4.035834666666666,18.933009000000002,2.9064200000000002,2.29984,3.3331633333333333,5.837525666666666,0.96441125,4.427975,2.1832583333333333,5.1029,1.4071666666666667,4.18994,4.49326,4.023745,0.94655125,4.285055,4.82426,1.73518,5.30464696969697,3.79979,1.2381185714285714,3.566785,2.05785,2.292995,1.551265,4.2738,3.868645,3.906445,3.689225,3.1095066666666664,4.15315,8.20885,4.35037,4.950445,5.2175,3.2106733333333337,4.230225,4.951335,6.598352,0.914602,0.914602,4.6662,4.85491,2.195253333333333,1.45386,7.533315,4.193925,3.21857,4.1484,4.503275,4.3154,3.49509,3.77194,6.57117,4.216186666666667,4.53886,5.34275,1.6100999999999999,2.9212,4.342435,5.18465,3.4974712500000003,0.1764136111111111,2.012585,2.1915025,2.50386,2.2040233333333332,0.9944966666666666,1.5428725,1.2836525,2.3489233333333335,0.6166666666666667,1.3834485714285714,1.889345,3.787135,4.0017000000000005,2.370766666666667,2.94812,3.0814066666666666,2.69196,0.69069,0.965585,2.706165,5.1705,4.319415,3.56364,3.694585,4.61019,5.1329,2.0826000000000002,4.381605,5.0355,4.705685,6.58456,3.73738,0.46014,5.70325,4.67812,4.38175,5.22955,3.441165,1.934472,4.872655,4.35515,2.91131,5.183494166666668,4.57072,1.4092566666666666,5.183494166666668,4.23306,6.4912425,3.66937,1.3250666666666666,4.046185,5.15025,4.418465,2.7071233333333335,5.33495,1.5473325,2.06485,4.774355,3.50889,0.8102033333333334,4.689165,4.71869,3.90685,4.10656,3.3509333333333333,3.1930033333333334,1.7909099999999998,2.1823725,3.214875,4.00023,3.567633333333333,2.432846666666667,2.899075,2.4702213333333334,5.68675,1.7478714285714285,0.8279933333333332,6.08074,4.438485,1.384282,2.68038,2.5007566666666667,3.532966666666667,6.782571666666667,2.3489144444444445,0.8750450000000001,2.56328,4.82266,2.5541966666666664,4.411525,6.17965,5.28135,5.448,3.98591,4.533305,2.61633,2.27278,1.61796,2.2962700000000003,1.904275,2.3808233333333333,2.2528966666666665,1.608235,2.70457,2.92537,3.733735,6.0883,5.55025,4.1466,5.002,3.97206,3.74665,4.31167,0.8738575,2.764343333333333,5.52695,1.18628,0.7540266666666666,4.76868,3.505615,2.6351033333333334,3.2974125,6.4416,3.255365,1.01563,1.3376628571428573,0.6983255555555555,4.153616666666667,2.31814,2.8221133333333337,1.163714285714286,3.21046,2.5763866666666666,5.41995,5.17745,4.470985,5.30795,3.847955,1.3049199999999999,3.556955,1.69533,3.49662,4.087185,3.68192,2.2950433333333335,3.075583333333333,2.7142966666666664,3.739295,4.27168,3.007335,2.7504,8.976015,10.3067075,4.35596,1.206597142857143,5.473,3.983085,5.27815,4.433635,4.20248,4.05875,3.39923,4.151645,3.7339906249999997,4.89446,3.85802,4.081635,4.5151,1.8348900000000001,4.99889,5.6809,4.615055,3.1696,3.31925,6.65324,0.62164,2.8699066666666666,2.765753333333333,2.4269666666666665,5.00455,2.813565,1.3189316666666666,4.4166,3.7510666666666665,3.64232,4.957435,3.397231666666667,6.70664,2.9845066666666664,2.87425,2.9988733333333335,3.0820566666666664,4.085885,2.46564,2.1290466666666665,3.11926,4.0463,3.4151791666666664,1.94895,1.56037,3.5517789285714287,3.397385,0.9587711111111111,2.837831666666667,2.837831666666667,1.5951525,5.68255,2.818135,3.24131,3.424925,3.290365,3.41675,3.54201,3.327135,3.04526,2.1023166666666664,0.5499866666666667,3.325755,5.940855,3.13444,3.65005,3.203095,4.009615,4.07412,3.040425,3.029675,3.43687,3.75532,2.991255,2.978905,3.870955,2.6557866666666667,4.08268,3.681665,9.08349,3.25124,3.73572,2.83193,4.000815,4.05519,3.636925,2.35983,3.74906,2.45571,2.805555,3.059625,3.20321,4.155725,1.70258,1.70258,2.199595,3.25124,3.090665,1.558918,2.38891,3.4728,1.837408,2.95309,1.558918,3.82187,2.96827,3.96945075,3.04851,3.69221,2.509165,3.71722,4.00793,4.034155,3.04144,4.12875,3.803255,4.322055,3.61512,3.12028,3.258475,3.0556,3.812125,2.7046266666666665,3.66677,4.88071,3.947475,3.735045,0.30216086956521737,3.661345,0.4375266666666667,3.792585,3.58195,2.994845,3.58219,3.895175,6.238533333333333,3.46687,2.603826666666667,2.313466666666667,2.7270266666666667,0.8602169999999999,5.975158333333333,3.0775,3.44107,3.812145,2.043535,2.561555,3.349215,3.249065,6.634905,4.03647,4.87613,4.511105,4.9543,4.22247,4.86204,1.5419133333333335,1.66416,3.699185,4.562755,5.2164425,2.390546666666667,4.488285,1.885375,3.5927666666666664,3.428015,1.8713128571428572,4.045195,4.7847574999999996,3.5186333333333333,3.9145,3.212963333333333,4.501665,5.37545,3.441266666666667,4.258635,4.42674,4.88579,4.35653,4.41781,3.69393,3.453555,4.345525,2.54565,3.0066066666666664,3.0066066666666664,3.75884,2.6523600000000003,4.00238,2.866286666666667,4.80666,3.30677,3.49462,1.88785,1.7324400000000002,1.1819783333333334,1.1819783333333334,1.712218,3.5472333333333332,1.7473566666666667,2.6775533333333335,3.56275,5.240903,3.597466666666667,5.22435,6.05578,2.64065,2.832025,2.9413066666666663,1.6247533333333333,3.759,4.21089,6.18725,1.5718033333333334,5.42735,5.3524,2.78703,3.21412,4.28248,7.01585,2.21691,2.4209725,3.8536,0.4784485714285714,4.42306,4.08868,4.66399,3.602795,4.114325,1.579762,1.543258,4.036475,4.632645,2.3910833333333334,3.72142,4.45404,4.679255,1.3004875,3.92525,4.13905,3.822865,5.05985,3.1860033333333333,5.643623333333333,3.74573,1.5950760000000002,3.70999,1.271725,2.733363333333333,7.7688500000000005,3.3377,0.8131418181818181,3.46701,4.255795,4.39045,2.3551825,2.3551825,5.02432,5.5593,2.928835,0.4989544444444445,1.986235,4.395994166666666,4.24045,4.54954,1.7840420000000001,3.1150533333333335,3.35644,1.0538109868421053,1.0538109868421053,1.0538109868421053,0.7890914035087719,1.3620797368421051,0.5729883333333333,1.0538109868421053,0.7890914035087719,0.24186473684210527,0.8148530701754386,0.24186473684210527,0.5472266666666666,0.5472266666666666,0.5472266666666666,0.5472266666666666,1.1187908333333334,1.329175,2.38855,2.4155166666666665,1.1607433333333332,6.319633333333333,2.685513333333333,5.4720200000000006,2.4967200000000003,3.47072,2.992115,3.300205,2.8443125,4.91232,2.745423333333333,4.10826,4.08383,5.14215,2.2276225,4.42109,5.09975,4.081125,3.07903,5.36345,3.291995,4.52496,4.974445,4.611865,5.89315,5.2584,1.4282625,3.321915,3.89219,2.49191,14.02704,4.503825,5.25945,2.7565333333333335,7.51713,4.13348,3.898725,4.05089,3.090885,1.0607675,2.493715,4.00753,4.294035,3.168415,3.47906,4.13431,2.9037666666666664,3.87041,4.56662,4.185935,6.677465,8.720978333333333,1.1353514285714286,3.564655,3.871105,3.84899,3.903565,3.48415,7.22,2.71149,2.90884,2.520785,3.970235,3.83946,4.55252,2.73653,1.783565,0.8945360000000001,4.94177,4.41844,3.733875,4.147405,3.44502,4.888695,3.8022,4.27144,3.842315,3.371765,3.618775,3.64639,3.31583,3.338295,3.524445,1.8601825,3.88501,3.638555,4.18067,4.726680833333333,4.726680833333333,2.4662,1.8601825,2.05394,2.717845,0.6891733333333333,1.5420208333333334,0.8528475,1.337435,2.531205,0.32127,2.854685,4.10784,1.337435,3.147483,11.091625,7.4217125,2.1201616666666667,0.980368,1.7693866666666667,4.33093,4.34572,6.082390238095238,1.9564725,2.26624,4.527515,4.09841,4.853575,1.8962733333333333,5.31065,3.5559999999999996,3.17604,5.2143,7.462402,3.94077,2.300475,2.7679233333333335,1.7680733333333334,4.139615,5.1654675,1.234312,4.6474,4.455365,6.074241,0.5480126666666667,5.125579999999999,4.258885,4.18543,2.742515,2.77094,4.412495,9.041116666666667,4.23163,1.8891166666666666,1.8891166666666666,1.8891166666666666,6.13505,5.30445,6.234,2.915315,2.693865,2.573803157894737,3.21387,3.149065,2.5793365,1.906535,2.5793365,7.1226165,4.512506666666667,4.443399523809523,6.31635,4.443399523809523,4.443399523809523,3.258002857142857,6.75238,5.711221,3.003336,3.003336,2.640485,4.96504,2.82279,3.52185,5.3002375,5.3002375,5.3002375,7.28929,3.5846574999999996,3.46528,3.6028775,3.509755,0.8440875,7.055516666666667,2.54301,3.77581,3.33116,13.830375333333333,3.894455,5.615365,7.00412,2.627068333333333,3.47297,1.1606566666666667,5.615365,3.50941,1.7399475,1.7399475,3.050905,5.170921666666667,1.7678125,4.748198333333334,0.8707229999999999,1.4706716666666668,0.8707229999999999,1.893395,2.6385354999999997,5.451653,3.7693,1.4706716666666668,3.14268,4.95562,1.01579,3.517945,4.52099,2.14525,4.250396666666666,2.72945,3.027,3.2952,0.960004,3.799205,2.35396,2.173955,1.71708,3.1213699999999998,3.89492,2.981015,3.68564,1.454631111111111,1.454631111111111,1.454631111111111,3.124035,2.4915533333333335,2.4915533333333335,2.23091,3.783975,2.4704166666666665,1.439315,1.439315,3.01016,4.432315,0.889265,1.48719,2.815915,1.4172866666666666,2.9044766666666666,0.960004,0.960004,1.9691658333333333,0.960004,3.2839475,0.7709383333333334,3.2839475,6.1523762500000005,3.495705,2.280813333333333,1.8594873611111111,0.6359383333333334,2.4954256944444446,3.65301,2.4954256944444446,0.9820311111111111,3.354245,4.142045,3.93796,3.21552,2.69066,3.62709,1.96113,0.9934862499999999,0.47901625,0.9934862499999999,0.51447,0.9934862499999999,0.9934862499999999,4.60141,4.861775,5.0058,3.476345,4.794935,4.97094,5.24035,3.48222,4.00449,1.2617885714285715,3.3210033333333335,4.417914166666667,3.818415,1.4158600000000001,2.7840066666666665,4.8361,3.748115,4.141085,4.19048,3.11946,3.654945,3.1884,4.470665,2.468243333333333,5.6751,3.7357,4.098675,5.477525714285714,1.2040032142857142,2.0832,3.14642,6.49799,5.1515,4.514305,3.29112,5.2608,8.251651666666667,3.8895999999999997,3.079435,3.6054666666666666,6.3663,4.071625,5.524,5.2322,4.70798,3.332855,5.27815,4.688785,3.319036666666667,4.06092,3.198423333333333,2.31922,1.98543,5.13045,6.47465,5.98365,5.80445,3.777075,5.0855,5.91355,0.43401230769230764,7.450835,4.262155,4.348895,3.71118,4.75427,4.2465,3.2335833333333333,2.7428,1.3434483333333331,0.5798261538461539,1.807628,3.160076666666667,3.399995,3.94899,4.218035,3.92532,11.880363333333332,3.71532,3.922525,2.797305,0.689995,6.35155,3.1218266666666667,1.5728066666666667,4.694633333333334,5.997181666666666,2.875355,8.83194,4.353185,2.148696,2.148696,2.148696,3.93493,8.90538,3.4083,1.4471925,1.4471925,3.333425,9.81303,1.02025125,5.1526,4.46907,4.31005,3.12705,2.3425233333333333,4.384865,3.973275,3.700595,6.147653333333333,3.95871,2.88405,3.957085,4.119365,3.5442745,1.472,3.2502099999999996,6.05866,3.6209350000000002,4.230785,0.93770625,3.8843333333333336,2.5883233333333333,2.606646666666667,1.82635,1.8166933333333333,2.17821,6.40885,2.08278,4.05664,5.849,1.855572,5.29185,3.765245,4.634,3.4793333333333334,2.1456,2.67709,4.02926,4.0390508333333335,4.0390508333333335,1.18374,1.6685699999999999,2.9895366666666665,4.378885,2.347314,4.817164666666667,1.7375979999999998,2.8820366666666666,2.098716666666667,1.60587,1.60587,4.837745,7.611788333333333,1.9776766666666665,3.2093566666666664,2.2646425,6.35005,3.04453,0.795234,2.94218,0.795234,2.725595,3.371685,4.705915,5.9338,3.743985,4.606865833333334,5.3716,2.26434,1.9159633333333332,2.4549,2.2210466666666666,6.2282,4.338585,2.55642,3.65678,2.734665,4.457425,1.1272475,1.122866,1.8208933333333333,1.60367,2.510693333333333,2.665696666666667,2.2858933333333336,3.8136666666666668,2.72512,4.37989,2.8150600000000003,2.4853533333333333,2.72499,2.44016,3.1838266666666666,2.8243466666666666,1.9324466666666666,2.52711,3.764475,3.35165,3.05684,3.251805,2.8902633333333334,2.1357075,2.03584,1.2739033333333334,0.2906975,0.15834847826086956,2.2111533333333333,2.120746666666667,0.15834847826086956,4.207606811594204,2.2464675,0.15834847826086956,5.999716666666667,2.514721666666667,6.00757,3.489555,3.8326333333333333,2.1941966666666666,3.0277066666666665,2.323915,4.41883,3.2430966666666667,3.1554066666666665,0.45746894736842103,4.110131666666667,2.506368947368421,3.028475,2.639935,2.757275,3.918695,2.654655,7.669040000000001,5.23835,3.498475,3.755455,6.57732,6.44296,1.7990966666666666,4.027429166666667,2.09856,1.941895,6.16476,8.04521,1.14087,2.00075,3.597435,2.625905,2.99592,3.12225,2.66139,3.9994300000000003,2.347825,3.015815,3.57027,3.246435,7.41324,1.4366533333333333,2.074425,3.18954,3.5453,1.67383,3.494125,1.55393,3.75763,3.31203,6.53971,3.452635,8.7718,3.66127,1.517562,1.7703866666666668,3.114305,6.93849,1.773685,1.50893,5.85754,3.481665,4.09227,2.80293,2.056556666666667,3.25657,10.609549999999999,5.17117,6.27481,3.584875,2.08751,2.29893,2.58296,2.74618,3.312645,1.8108000000000002,1.5643566666666666,2.50236,3.472915,1.7608825,3.273685,2.96056,2.846965,3.8095,3.288755,1.246535,2.64715,1.03833,1.348966,1.551545,3.09664,3.47726,3.615345,2.64129,3.774485,3.904945,2.72475,1.48807,3.42846,3.5704225000000003,3.22292,1.770865,3.067155,3.376635,1.510655,3.46232,1.5998533333333331,4.19792,4.07317,5.03195,2.6218,3.75093,1.718495,3.819545,3.74961,1.72229,1.0718942857142857,4.0496,2.690505,4.81256,4.08877,3.10779,4.47052,4.32053,2.64113,5.2487,5.3079625,6.4455,4.53496,5.548242666666667,3.851105,1.5629666666666668,2.80684,4.529315,5.1571,2.658776666666667,7.453476,1.343802857142857,3.8494333333333333,2.124405,1.766054,2.3168866666666665,2.741483333333333,0.40951785714285716,2.4535766666666667,2.79734,3.562335,2.682795,3.25196,2.298576666666667,2.521316666666667,2.156975,8.79726,4.926055,1.306988,4.85292,2.4350861304347826,0.7220200256410256,2.8549399999999996,8.216613333333333,1.715146,4.459765,6.189381666666667,1.4054275,1.5874825,1.46068,5.28065,3.283305,4.52079,4.32326,2.5392733333333335,3.661215,0.992332,2.8786620000000003,4.38234,4.114195,5.3881,2.884005,4.800765,3.91816,5.2126,5.1771,6.0252,5.3138,4.422755,3.917465,1.550368,1.8806125,3.120725,3.380405,1.1867,4.14421,2.29969,2.9934066666666665,3.839885,2.8025966666666666,2.8401866666666664,1.5704066666666667,3.17942,2.7501866666666666,2.9722033333333333,2.9876666666666662,1.8949999999999998,1.6033975,2.353995,4.13878,4.443415,4.15608,4.676735,3.502575,2.325905,3.07641,4.772985,3.4421999999999997,4.71835,4.564255,2.2568,4.448836666666667,1.7256266666666666,4.17736,5.195576666666666,6.305766666666666,4.098585,4.698405,5.4911,3.585366666666667,4.180325,4.23199,3.30708,3.9034345,3.75587,1.531545,3.240415,1.799865,2.250145,4.29301,5.299325,3.9034345,4.269125,3.4961,1.4459933333333332,3.84444,2.122305,2.77049,2.272955,2.83915,1.4833419696969696,1.4833419696969696,1.4833419696969696,0.46918363636363636,0.752821111111111,2.1130127777777776,1.053815,3.525875,1.18065,4.24063,5.0217,4.95593,3.238175,4.13167,3.084975,5.22075,1.8470825,3.04777,2.632235,3.212855,5.884969,4.50359,5.6756,3.952855,1.015455,2.26644,1.3709066666666667,3.844255,3.90994,4.258385,5.3091,3.906725,5.46795,5.3537,3.87392,1.73122,1.2807683333333333,5.701156666666667,1.0202844444444445,1.29041,2.60078,8.42527,2.913715,3.72657,2.95696,5.8346849999999995,1.72558,0.9866566666666667,1.58575,3.086415,3.55858,3.85038,3.68415,1.9155875,6.48339,2.9604433333333335,0.8607875,4.993505,2.8880966666666663,2.8273466666666667,2.48713,3.922633333333333,5.9132275,2.89552,3.0381066666666663,3.6415333333333333,2.8961366666666666,2.9769466666666666,3.0993166666666667,2.773175,1.98361,4.446395,4.98255,4.63969,1.0460055555555554,0.743086,3.4342,2.6757833333333334,0.98751,2.3853750000000002,4.216385,4.959785,7.075189999999999,4.57812,3.9263666666666666,1.756774,3.51255,3.635965,2.914683333333333,2.656789142857143,4.32814,2.913983333333333,4.867659333333333,0.9198755555555554,5.36375,1.712074,3.63539,4.819135,1.843585,1.029685,2.90375,0.43456799999999995,2.89648,6.12545,5.8558,2.9815319999999996,1.517614,2.447103333333333,0.7939,2.6359766666666666,0.7939,4.034435,4.913185,1.451155,1.7140075,5.340991666666667,1.8360666666666667,3.461635,4.15446,4.160775,1.243018,1.6023766666666666,4.031955,5.4647,4.613175,3.4549960000000004,2.053925,2.4804075,1.7067525,2.131925,1.7866225,1.9986725,4.338485,1.3906555555555555,1.3906555555555555,3.166485,4.479053333333333,7.590750833333334,5.231713333333333,7.099404999999999,1.913295,3.844415,4.25439,1.5863416666666668,3.6464133333333333,3.51319,3.927665,5.5598,3.079735,2.456475,2.9636033333333334,3.86019,1.13455625,4.05784,4.55905,1.2263866666666667,8.304416666666667,3.38294,3.172735,2.43304,3.766675,3.534605,3.9183874999999997,2.6849433333333335,2.733686666666667,1.9708133333333333,3.5533333333333332,2.1268225,2.24143,8.113692666666667,3.4443,3.4222,4.242625,21.939309368131866,0.6807266666666667,2.647,4.248095,4.817405,8.53381,4.33324,4.14894,4.607635,7.291106666666666,3.55007,1.5483500000000001,4.830086666666666,3.34222,1.22315,1.22315,1.22315,2.42767,1.7197525,3.299605,1.572205,3.033355,1.4935766666666668,2.578355,2.559775,2.92033,1.572205,3.34685,2.783485,4.303718333333333,5.0041416666666665,4.71219,0.7764025,3.22938,2.806405,4.916545,3.669215,2.9792,1.85062,1.69957,1.957195,1.3840299999999999,4.076845,1.476415,4.971095,12.741849666666667,2.89327,2.47296,5.0368233333333325,2.6846533333333333,4.159133333333333,5.8781,2.0489,6.055759166666666,4.356345,1.2151733333333332,1.1797714285714285,6.679049,4.10408,1.8287175,3.90748,1.919475,4.79351,4.660475,4.848,3.91535,1.3516700000000001,4.017365,4.966425,4.69487,6.350998000000001,3.606525,5.42585,4.40174,4.50098,5.09915,2.42642,3.876325,1.5457675,3.399745,3.410915,4.09392,3.860745,6.1405,4.67697,2.2052866666666664,3.6433666666666666,8.897085,4.501245,2.8337066666666666,3.64924,2.964385,4.61126,4.306705,4.96507,6.645001666666667,3.38495,2.7132733333333334,4.279655,2.259785,4.433885,3.1012,6.5831,1.5291933333333334,3.73038,4.499165,11.54961,0.5261685714285714,4.078245,4.56515,0.6791935714285715,3.57127,4.220535,4.38198,1.02884,4.979145,5.003423333333333,2.738163333333333,9.849948333333334,3.4108,1.8921433333333333,2.67598,4.013085,5.8734,0.5482983333333333,3.956925,2.2170925,4.025665,0.6985453846153846,4.20537,5.8391,5.167,3.580005,6.37499,4.192085,3.689375,2.5897666666666668,2.774563333333333,4.444645,4.715475,5.2617,5.1524,4.896085,3.28136,7.22751,2.834775,3.3282464999999997,1.6366725,3.530825,2.7838166666666666,1.5552333333333335,3.091606666666667,2.7790966666666663,2.98155,3.6063333333333336,3.4649666666666668,3.0122699999999996,2.64021,5.48865,3.1991533333333333,3.857945,4.763485,2.7275666666666667,1.1107166666666666,3.1976333333333335,2.8021333333333334,4.21004,3.8561666666666667,2.7347433333333337,4.637431666666667,2.017796666666667,1.633815,2.997735,3.809775,4.598925,1.1007575,4.73348,3.096565,4.034833333333333,3.0168,5.3408825,4.014,3.324215,3.69632,1.914155,3.86493,0.67150625,4.483315,4.798765,15.530222727272726,3.512166666666667,1.1647233333333333,4.58149,0.6189564285714286,2.5797,4.4674,1.861735,1.2886057142857141,3.358605,4.59483,2.8267466666666667,0.7836799999999999,2.656775,7.8055,4.021905,5.6984,5.32685,4.146495,3.28321,3.5337666666666667,3.1955500000000003,6.905295000000001,3.878465,5.09915,2.0677925,0.4648922222222222,2.09334,2.98965,2.23233,2.65766,4.69275,2.747723333333333,4.972165,0.6118075,4.79315,3.01636,2.908275,1.13906,2.56848,1.9868166666666667,4.930155,3.90703,2.31202,1.6324714285714286,4.222585,5.2556,5.08545,6.209176666666666,2.1744066666666666,5.62115,4.92184,4.742535,2.39348,4.3935,6.130808333333333,5.35235,2.4519,4.876955,3.345965,3.54331,4.000845,4.141375,1.4032499999999999,4.73092,2.5647166666666665,2.8639733333333335,5.344989999999999,5.344989999999999,5.17735,1.53689,4.76999,1.02598,1.8912,4.689065,2.62033,1.48285,3.2180166666666667,0.8611639999999999,4.299633333333333,4.860765,2.99417,4.597995,3.761145,3.87304,5.4100325,3.410855,2.99194,3.0299133333333335,2.62346,2.65045,2.8627933333333337,4.70852,1.4611656043956043,3.01134,4.59999,5.0439,2.5284145833333334,3.999705,4.617795,4.885571666666666,3.4724,5.37605,4.8873,5.58885,4.902055,4.008835,3.51474,3.76956,4.67509,5.74195,4.6605,5.0496,4.36891,4.547185,0.7618916666666666,5.0579,4.62577,4.410695,6.891584999999999,4.25993,4.351315,4.39969,4.680835,3.587825,3.898805,2.1598325,4.5247075,2.11884,1.3398828571428572,3.74603,2.0555833333333333,2.53192,4.021702666666666,3.08691,3.03371,1.0574733333333333,2.02599,3.69078,3.78401,1.9177675,1.9177675,4.60276,1.926914,3.155886666666667,4.678325,3.633985,3.730225,1.45414,2.07207,3.64503,2.03199,4.18537,4.834195,4.540645,4.07686,8.047983333333333,2.5496,3.82029,4.85331,4.32524,3.0025399999999998,4.35438,4.35862,4.1835,2.55179,2.5869433333333336,4.891685,3.907635,4.05361,4.158235,1.6170525,3.3618,4.34442,4.67262,4.151305,4.048462499999999,4.048462499999999,3.387505833333333,4.243225,4.78056,3.78327,1.8100239999999999,7.750275,4.04545,5.09535,4.63869,4.46767,4.774295,5.0006,2.95845,3.14527,5.37675,5.2272,2.02484,4.76813,5.212149444444445,5.4479,0.8033129999999999,4.853045,1.00583,5.1829,4.30299,5.1176,4.399455,5.42385,3.8435,3.8435,0.883456,2.2005825,5.1857,3.47236,4.036185,4.326985,4.35027,3.33738,4.126875,1.3601566666666667,2.767445,1.66319,1.23994125,4.528952666666666,0.8309179999999999,2.338443333333333,3.269963333333333,1.2818533333333333,2.3137925,2.73582,1.2770716666666666,6.20662,1.721345,2.5206733333333333,4.26455,2.1238225,2.564216666666667,3.137935,4.733055,3.7782,2.8549900000000004,4.0466,1.6163319999999999,2.0789733333333333,4.210805,0.6520421428571429,2.6849366666666667,3.1210183333333337,3.12924,2.8259600000000002,1.4407999999999999,0.857675,2.41398,4.18128,1.2209314285714286,2.137405,1.2146175,5.074887500000001,2.0865775,4.387015,4.60673,4.31689,4.645825,5.11955,4.219125,4.252685,1.4340733333333333,3.992233333333333,1.590262,2.5456433333333335,1.1581071428571428,4.53381,2.19692,5.1384240000000005,4.110305,3.5573,1.553898,6.527480000000001,4.72486,1.3625083333333334,4.07975,3.241885,3.72664,2.95648,2.0179625,2.0179625,3.15104,1.1937716666666667,1.1937716666666667,2.39348,2.4992733333333335,2.04504,1.3943416666666666,3.7033666666666663,1.08612875,3.269626666666667,2.56455,1.9255525,1.5867483333333334,2.26137,2.2365975,0.29039470588235294,2.37186,1.06716,2.5164133333333334,2.098716666666667,2.3780575,1.1215111111111111,1.124194,3.724066666666667,2.99682,2.0179625,1.78894,2.2015,2.57261,2.5235533333333335,1.8362200000000002,2.1375466666666667,1.04765,3.5534666666666666,2.8697199999999996,2.5058966666666667,1.5434139999999998,1.228858,2.514525,1.228858,2.514525,0.81352875,0.81352875,0.5080255555555556,2.504025,2.1342,0.81352875,2.3316025,2.4268033333333334,2.291715,1.76468,0.7748988888888889,0.81352875,0.81352875,1.652628,1.652628,2.19006,1.78894,0.81352875,2.35366,0.47380846153846157,2.67411,2.27893,2.55141,2.46002,2.46002,0.3552535,0.3552535,2.39348,2.07194,2.25612,2.11822,0.3552535,3.6946333333333334,2.67185,1.598634,0.617160625,1.598634,0.617160625,8.18892,2.583126666666667,3.727066666666667,2.7433933333333336,3.292923333333333,2.83703,2.969446666666667,3.2238,2.3021575,1.7111825,2.6948899999999996,3.8895999999999997,2.35765,1.652628,2.3025760317460318,2.3025760317460318,2.8125766666666667,2.379305,4.5442,2.395086666666667,3.19453,2.8475900000000003,1.800228,2.53745,2.425,0.8467418181818182,1.5833025,3.366745,1.87805,2.9237,2.68805,2.660925,3.814033333333333,1.497515,3.6244333333333336,3.459633333333333,3.928733333333333,1.3001,0.2356710344827586,1.2625899999999999,1.2625899999999999,1.0627966666666666,3.181696666666667,4.1460333333333335,2.9362399999999997,2.12787,2.12787,2.3400125,1.5998533333333331,1.03073,1.6306466666666666,1.6306466666666666,0.81352875,2.39348,2.875946666666667,4.0104,2.56455,2.1002199999999998,2.1002199999999998,2.1002199999999998,1.0515788888888888,1.4697571428571428,1.4697571428571428,2.454115,3.0773233333333336,2.757185946969697,4.1516,3.12349,2.5580166666666666,3.4712,3.829515,7.724,3.504785,4.26094,3.626333333333333,13.113679999999999,4.72468,3.74209,0.88878,4.0713,3.11466,2.435045,3.749315,5.39705,7.237869666666667,6.12455,0.48996117647058823,4.137525,2.3775,4.16788,2.5514,4.1997,4.242295,4.317275,8.026264999999999,3.4633,3.967255,3.80959,3.3735850000000003,8.477378256410256,3.5574999999999997,2.659143333333333,3.41162,3.334885,4.753685,3.878345,6.607766,4.89636,1.3304019999999999,4.992795,0.89755375,5.0189,5.9708,4.7672,4.84876,6.08425,4.44142,5.5976,4.078525,9.909880000000001,4.046705,5.001724,3.5778666666666665,5.32029,3.005145,0.79563,0.79563,3.46314,4.007365,2.21377,2.185945,3.868335,4.15517,3.94415,2.158045,2.521025,3.406415,2.554316666666667,1.2715875,4.128165,4.41282,9.01632,1.7817060000000002,3.546555,3.757635,3.469645,2.8620866666666664,8.21481,4.116035,3.5255666666666667,2.941463333333333,3.898325,3.6776,3.6377,2.8939033333333337,3.960415,3.727525,4.572645,4.19594,0.38883666666666666,1.5653033333333333,2.38127,1.759995,4.913095,3.73828,2.6184333333333334,2.2690325,4.35335,3.6624950000000003,2.20115,2.623515,0.84975,2.02081,2.6412133333333334,2.6412133333333334,5.44895,1.9535175,2.75258,2.3887899999999997,2.164826666666667,1.7573400000000001,3.10053,4.596725,3.709215,3.75877,4.83796,5.15245,2.810675,2.2100466666666665,1.765128,4.671215,5.539750000000001,2.655273333333333,3.03605,2.1318575,2.5146366666666666,3.9746566666666663,2.6060666666666665,5.004,3.71762,3.46323,4.65633,2.8163966666666664,3.66735,4.47849,2.2803066666666667,2.4960633333333333,0.42407,2.3097533333333335,2.5229233333333334,2.82392,6.06015,4.58898,5.8724975,1.8570825,1.640295,3.16614,5.4787,5.42195,4.005955,3.05091,2.2926800000000003,3.29666,2.3908566666666666,4.51314,2.48529,1.9869775,5.3484,4.86016,5.35585,1.7976625,1.9240175,1.071092,1.071092,1.1977,0.9060557142857143,0.9134420000000001,2.015025714285714,4.41185,11.385878333333332,4.15539,4.557645,4.189625,5.601165,2.67522,1.6589866666666666,3.5770266666666664,2.82438,4.24593,2.5148800000000002,2.874476666666667,3.0474366666666666,3.4339999999999997,2.4496866666666666,3.4168333333333334,3.7851666666666666,3.292536666666667,3.6488666666666667,3.4975,2.994286666666667,2.977733333333333,3.2761066666666667,2.5382333333333333,3.0395800000000004,3.0850833333333334,2.8757066666666664,3.6053333333333337,2.3048200000000003,5.2089916190476195,3.438,4.151764,3.2268033333333332,3.0938433333333335,3.767666666666667,2.845053333333333,2.76634,3.1842233333333336,3.1469166666666664,3.6969666666666665,3.16183,2.102755,2.8015566666666665,2.8269866666666665,3.014,3.014,3.33103,3.055426666666667,2.6233299999999997,2.7237566666666666,3.5043,4.3671,2.7871799999999998,2.723625,2.7797533333333333,2.8912666666666667,4.927019166666667,5.191,1.7092,3.3434333333333335,3.7925,3.449274,3.3153133333333336,3.873533333333333,3.6674666666666664,2.9965566666666668,3.457608,2.1113600000000003,2.6946085,3.7607666666666666,3.3509666666666664,2.6100833333333333,2.802986666666667,3.981866666666667,2.9461633333333332,2.931426666666667,2.4482025,1.29256,3.4994666666666667,2.6593566666666666,2.1607,2.6546,3.4875333333333334,3.3900333333333332,2.0669399999999998,5.6645286666666665,2.5681266666666667,0.9558139999999999,4.712015,1.9037074999999999,1.6448099999999999,4.882955,4.05402,3.3231,2.38999,1.8011825,3.39486,2.663195,4.12605,0.4853575,1.995025,0.4853575,2.152465,1.8011825,2.75708,3.72652,2.94965,4.193635,4.90031,0.5426793333333334,2.83165,0.9453275,0.45063294117647057,4.360665,3.94995,4.91771,2.508725,5.74785,4.05838,4.051825,2.21583,3.2415966666666667,1.757346,6.5308,4.217245,3.85338,4.764655,2.59554,2.4562466666666665,2.2252033333333334,1.478085,1.82449,1.0616825,1.0616825,4.482975,2.4289833333333335,6.217223333333333,2.3179,2.05219,2.44524,2.11873225,2.2929075,4.42431,4.325975,2.0330675,2.6407833333333333,2.11873225,4.297565,3.58287475,1.98326875,6.146203333333333,2.3179,3.3165075,3.35758,3.3276066666666666,5.5831,4.205315,1.6060275,2.0534175,2.3336325,3.276125,5.00065,5.4502,1.98207,3.919755,1.6247533333333333,1.69737,5.71,10.634528333333334,1.9887766666666666,2.5600166666666664,2.36003,4.72345,4.289095,2.010465,4.948875,4.130295,3.317535,38.90914358333333,3.0413433333333333,3.567833333333333,0.5254650000000001,5.214556666666667,2.0150533333333334,0.8482833333333333,4.38808,3.76402,2.039005,1.73446,2.3281633333333334,3.86709,1.3360328571428572,3.094543,3.81839,4.312425,0.931071,5.12085,4.214175,4.831455,3.0079700000000003,1.31757,3.7440325000000003,4.60763,4.07168,3.169965,3.597355,4.011965,12.396846111111111,2.766636666666667,2.90375,4.587855,2.44458,4.583255,3.603915,2.690355,3.231155,5.53515,5.15775,4.64638,5.3197,2.481205,3.6942,3.862165,3.550555,4.752825,4.729075,0.10195478260869564,2.40335,2.812375,2.83628,1.0884666666666667,0.5183325,0.5183325,1.867685,2.7306,2.844855,1.265844,2.9525466666666667,4.704815,2.656145,4.445205,0.5767621428571428,4.421515,3.43981,4.51344,4.02032,4.972795,1.345225,1.2736875,3.1747566666666667,2.87363,2.9346599999999996,4.433537696969697,4.61586,6.475395,5.5004,5.4975,3.6091,2.123245,1.5711966666666666,5.643,0.31572933333333336,3.34135,3.792925,4.135675,14.78813,1.88441375,2.9358066666666667,0.69994625,4.463525,8.143135,3.312935,2.3118666666666665,5.60605,3.4618333333333333,1.077951111111111,3.54084,2.87075,3.274885,4.860565,3.492620777777778,1.11582625,7.261191666666667,0.74088,4.33951,3.262633777777778,1.386185,2.114383111111111,3.2271525,3.2271525,3.76503,4.380594666666667,1.4752625,2.424085,2.65813,3.757595,2.82428,2.703765,3.146425,3.432485,6.4748193333333335,6.28915,4.027285,3.232395,5.3986,3.76438,4.253735,3.409145,3.49967,4.18136,5.24085,2.5305166666666667,2.4623733333333333,1.4919716666666665,2.32808,2.49916,1.53164,3.8173666666666666,3.5633666666666666,3.2418766666666667,3.3436333333333335,2.7117233333333335,1.4472533333333333,1.5460933333333333,0.5883918181818182,3.2922999999999996,1.002,1.4130075,2.8468033333333334,2.5702966666666667,2.6288933333333335,0.97051125,2.38854,2.50576,3.018,3.56295,5.76835,3.898495,2.87792,2.2275033333333334,3.430165,4.44619,2.50354,2.970255,2.070165,3.945565,2.67809,3.805645,1.32325,0.612914,2.3526975,3.3145,3.12223,3.88563,4.7743,8.579115,3.1365366666666668,2.190983333333333,1.7272566666666667,1.786066,1.786066,2.7667699999999997,2.3014233333333336,5.4026,4.648785,3.54606,4.33348,4.367365,4.498685,3.204510833333333,4.471815,7.8040675,2.49054,0.500175625,2.81189,1.3461999999999998,1.02225,1.68476,0.835351,2.1539275,5.1456,5.67065,6.1424674999999995,0.9987175,7.35864,2.10882,1.5355316666666667,2.716396666666667,4.08496,3.1450833333333335,2.51515,3.88284,3.135173333333333,3.729533333333333,2.9153233333333333,2.867713333333333,3.08117,6.83368,2.61138,3.896435,3.4666233333333336,3.7968325,1.5912899999999999,1.3020875,4.43471,2.75421,3.3391,6.094035,2.52842,3.04925,2.54815,3.14783,3.28126,2.2062466666666665,4.00375,2.9543466666666665,5.0442,2.4014213333333334,1.903455,4.911305,5.3548,5.00645,4.765445,1.5196800000000001,2.657125,2.0094325,3.421165,1.6113633333333333,0.95972,2.7660425,2.0552075,2.1590725,4.04078,0.81481,6.107717500000001,1.7965175,0.759240909090909,3.6962333333333333,4.174985,0.6633757142857143,3.310845,2.8327793750000003,0.857675,4.826435,0.1695692857142857,0.1695692857142857,0.1695692857142857,0.1695692857142857,0.1695692857142857,0.1695692857142857,1.808064,3.638645,1.808064,1.808064,1.7974066666666666,0.1695692857142857,0.1695692857142857,3.2662999999999998,2.568913333333333,3.37204,3.381265,2.42308,3.53034,1.5883857142857143,1.77881,3.5442745,1.541628,3.4570333333333334,2.748442,5.84038,4.48753,4.14615,4.197405,4.86097,4.79123,4.76933,4.017275,7.0900920833333325,3.8583,3.6403,2.7001166666666667,4.636473333333333,2.6749666666666667,2.0774075,2.00305,5.2671,4.194955,4.84861,5.3524,5.52845,4.620035,4.774595,0.6858909090909091,0.6747235714285714,0.6747235714285714,4.955465,2.44654,3.88755,1.0527114285714285,5.4428,1.5012857142857143,2.2718666666666665,2.51652,4.3082,4.3082,6.57135,3.911675,1.6078849999999998,12.183476666666667,3.3549666666666664,1.1151888888888888,5.0601,5.01495,3.11486,3.11126,2.56437,4.5163,0.5446706666666666,3.4337999999999997,2.87506,3.743066666666667,3.18247,1.5283533333333335,1.5499666666666665,4.7863541666666665,3.2751,3.0817866666666665,3.5027000000000004,5.237359166666667,3.5129200000000003,0.752346,1.6348733333333334,2.6373599999999997,2.211516666666667,3.7216,3.345966666666667,3.3893,3.7456,3.263723333333333,2.363513333333333,0.8179966666666667,3.0274699999999997,2.665216666666667,3.385685,3.36707,4.126085,2.69241,3.3997666666666664,2.66715,1.526246,2.2371,1.919402380952381,3.5710333333333337,1.8198060000000003,3.155276666666667,1.8474000000000002,3.9073333333333333,5.158723333333333,5.0334113333333335,2.411435,2.507325,2.7807,2.48627,1.5637142857142856,2.4082475,3.3029764285714283,2.443835,3.6170666666666667,2.98753,3.6880246666666667,3.08219,0.8762088888888889,1.28804,1.7936425,2.2051125,3.2896633333333334,3.5924666666666667,5.0964,7.4198474999999995,4.80364,4.10679,4.402845,16.010497666666666,0.50273,11.666605,0.9929744444444444,3.160425,2.4078466666666665,1.9039966666666668,2.994815,1.520998,1.48807,2.888403333333333,1.243894,2.8391046666666666,1.9646066666666666,3.28078,2.48463,2.7601366666666665,1.5469666666666668,0.8607999999999999,3.429133333333333,2.6049599999999997,3.2455200000000004,1.0515788888888888,3.7114,0.7578116666666667,0.35932000000000003,2.0395133333333333,4.344035,4.87725,3.542715,0.88044,4.09266,4.85513,1.2601075,2.830475,5.465016666666667,3.338205,4.15738,3.927685,3.919145,1.9173275,3.98647,2.7128633333333334,2.83653,3.46106,2.753625,2.75337,3.84254,3.134225,3.604425,2.99732,3.399395,5.1402,1.39008,4.437185,2.26597,4.09057,5.396833333333333,2.103085,2.76972,3.19493,5.6593,2.53272,3.321205,5.53115,3.727066666666667,4.14728,1.8893199999999999,2.4772225,4.89102,3.5074666666666663,4.401075,3.220076666666667,3.2542666666666666,3.1622333333333335,3.8364999999999996,3.1038333333333337,2.8352,2.8768333333333334,0.4454338888888889,2.005075,2.1308175,5.02835,4.85643,3.0641700000000003,2.7066866666666667,3.2968766666666665,9.303785000000001,3.532850625,3.9969,3.205413333333333,3.90844,3.38517,3.768836666666667,2.5711766666666667,2.418935,3.071153333333333,5.53865,4.65145,2.1674433333333334,3.26714,2.98312,2.7318366666666667,4.816582,1.7044679999999999,6.21586,4.08947,4.90782,4.38891,5.51995,3.638845,6.576008333333332,4.8688,4.25808,0.7171214285714286,2.52465,1.5891125,3.0600466666666666,3.6056725,4.310485,3.803555,6.0665,2.7250099999999997,5.05575,2.936106666666667,3.1094333333333335,3.1922466666666662,4.539865,4.525405,5.03745,2.760873333333333,5.760911666666667,4.38752,1.4304216666666667,5.47145,3.579245,2.608195,2.104405,2.2551166666666664,4.462538,1.1593699999999998,2.38835,1.997715,4.006665,4.272255,2.2091766666666666,3.305376666666667,2.8993876666666667,2.7854766666666664,4.065045,1.39184,2.2486566666666667,2.33908,2.808756666666667,2.5229333333333335,2.676353333333333,2.7065099999999997,4.08718,2.93326,2.829473333333333,4.53393,2.19095,3.912795,3.646675,1.505185303030303,1.505185303030303,4.85524,3.1810733333333334,1.7689675,1.3918025,2.3848925,1.870245,1.253632,1.40287,0.649116,1.6065866666666666,1.4469166666666666,2.74349,2.46977,1.7992,1.95705,2.3900466666666667,1.45203,1.8475166666666667,1.8837400000000002,2.067215,4.179205,3.00683,3.2089166666666666,2.87475,5.926925000000001,3.052175,4.43277,4.129275,2.0077,4.109225,3.51173,1.848695,3.44599,2.2410075,2.83796,3.78561,1.7661675,4.84814,2.42712,4.142095,3.4913666666666665,0.8130722222222223,3.9415,3.82042,3.0586,3.559335,3.414733333333333,4.93999,4.62397,5.6303525,9.330155833333333,4.309585,4.713845,3.0412199999999996,3.944585,3.75951,2.50367,2.675715,4.239925,2.2723125,5.565904,1.8693840000000002,2.716385,7.454196666666666,3.2601266666666664,3.91725,1.3516614285714286,4.80431,5.2817,3.4366333333333334,5.0526,5.07035,6.584352,16.55984648809524,0.6159941176470588,1.1215111111111111,3.5975,4.16389,3.43158,2.0967,3.300805,4.12804,4.772045,2.47674,4.89048,1.7448833333333333,1.7448833333333333,5.1595,0.7623081818181817,1.9310559999999999,2.850055,4.099615,0.3671876923076923,1.9910266666666667,4.577408083333333,1.1551616666666666,3.0211166666666665,2.7877533333333333,3.021405,8.02282,2.52652,3.13754,1.9795366666666665,2.219936666666667,4.8723125,3.81512,3.504655,7.071242166666667,1.7928875,3.04475,4.52263,6.897595000000001,1.6689666666666667,2.35406,2.5370266666666668,1.4643,2.52679,1.6931175,3.998945,3.990415,1.4703825,1.9483509999999997,1.9483509999999997,2.59546,5.35455,3.7643983333333333,3.870275,5.21865,5.06145,3.24288,3.74138,3.959505,3.645275,4.99908,3.2294475,4.24158,0.9406100000000001,0.3536275,5.4173,3.828565,2.5310433333333333,8.13229,1.6742466666666667,4.803233333333334,4.057165,0.2989425,1.9992033333333332,1.2898566666666667,1.86053,2.015966666666667,5.35538,3.17111,2.962595,4.564685,4.14038,4.3205,0.6261807692307693,2.003155,0.598763,5.535745,1.615078,4.861925,2.1826775,3.4897512500000003,3.263885,4.11509,4.953455,4.87788,0.9309545454545455,2.977735,4.175495,1.81194,1.7911375,3.696695,3.463945,3.52367,3.89799625,5.545561904761905,4.520835,5.108,3.0518066666666663,0.6109177777777778,3.3983666666666665,3.91115,0.7684330769230769,3.904685,5.3338,3.99064,3.50318,2.69556,5.12525,3.3302,3.314705,2.32352,3.768615,1.963268,3.42019,3.79209,0.7154,4.98474,4.2518,3.172305,4.029305,4.197395,2.60859,3.932525,0.613815,3.0024200000000003,3.937962222222222,4.324025,3.2573666666666665,2.169345,3.18277,2.169345,4.037175,3.018155,3.3583,1.5940333333333332,3.22879,2.05924,4.502285,2.95696,5.2405333333333335,3.4810666666666665,2.8602133333333337,3.177326666666667,2.506389821428572,2.506389821428572,2.506389821428572,2.1824333333333334,0.9789166666666667,4.68725,2.31004,1.66768,3.528366666666667,2.581253333333333,3.0757966666666667,3.934385,5.3732,4.357585,2.3839025,2.06266,4.080295,2.06096,2.6096033333333333,2.87896,3.764755,2.1317075,3.76335,2.94323,1.940174,4.642645,4.24261,3.33365,3.66111,0.7547166666666666,2.47252,4.521015,7.5950299999999995,3.344305,3.08914,2.6918,4.0825,3.673885,2.138115,2.2194425,4.696035,2.205565,4.754975,3.94563,4.22074,8.800983333333333,4.255605,4.72375,3.436835,4.832235,4.160295,3.3774699999999998,3.3774699999999998,3.672095,4.434953333333333,4.37689,4.25596,4.234075,4.36069,4.147545,1.17378,4.305595,4.04982,5.5695,8.195675,5.0542,3.7992926666666667,1.9354966666666666,1.4966516666666667,2.41601875,4.75271,3.72449,4.98127,2.78923,4.82264,5.21765,4.936675,5.1309,3.0866333333333333,4.29399,4.20961,5.39745,5.07315,4.21374,6.521818333333334,4.53649,2.257823333333333,5.036,4.521995,4.717335,4.06235,4.93322,0.7817790909090909,4.316775,4.823685,1.2953314285714286,1.3441420000000002,5.00385,5.37085,9.155955,4.64846,5.16885,6.7787,2.879395,2.704553333333333,5.15475,1.928105,1.928105,2.57167,1.5817500000000002,3.002865,3.3689,1.99777,4.286901363636363,1.35957,2.073465,5.987045,3.3834299999999997,3.57318,3.05679,4.17423,4.20607,3.0927666666666664,1.0076244444444444,4.072305,2.5395533333333336,3.96413,4.30819,3.681446666666667,5.47215,5.70005,5.4815,4.40042,5.205,6.5194,4.698435,3.27828,3.79491,2.00553,2.00553,3.89962,4.26894,2.24508,2.728736666666667,2.2438113636363637,2.92013,1.6883133333333333,1.6883133333333333,4.23088,3.451775,2.222945,3.572895,2.78815,1.88653,1.4845175,1.192611111111111,2.81787,0.49575157894736843,0.8235133333333333,2.688115,4.28352,0.41591636363636364,3.47925,1.9128720000000001,5.2976,3.38098,7.6352475,4.444395,5.46857,4.994205,4.300905,4.217055,1.882095,2.03306,4.972405,3.066805,3.710705,1.3390633333333335,3.24393,4.49738,2.7715,2.55288,3.412635,4.84276,4.23201,4.13591,3.885365,3.56132,3.331225,3.97928,0.9913614285714286,2.476055,2.268965,2.78509,4.314555,7.58415,0.895816,1.4678933333333333,1.4678933333333333,1.9194120000000001,3.90852,2.843105,3.06546,4.9665725,2.8653133333333334,1.1770425,1.1770425,1.1770425,3.07906,3.147483,4.75378,3.25179,4.13227,3.39477,3.748245,2.952655,3.274830833333333,3.67915,4.2956062500000005,2.4868949999999996,1.253632,3.012505,2.4868949999999996,3.72642,1.4661233333333332,1.96085,1.6467875,5.611618666666667,2.740075,6.045157,5.611618666666667,3.3050819999999996,1.7328016666666668,1.7328016666666668,3.143955,6.41929,1.7328016666666668,2.214315,5.72262,2.341655,2.75143,4.97283,3.528535,3.92398,2.08946,3.37495,4.0471,2.02361,2.388815,4.47407,2.08946,2.509765,2.13786,5.84498,2.52551,1.115052,2.6098,3.284175,3.084280166666667,1.99023,1.7868335000000002,4.09885,1.8798126666666666,1.833435,3.30669,2.460925,3.169595,3.27496,2.26876,2.692595,2.53502,6.5317,2.32597,3.218805,3.52895,3.52895,9.094986666666665,0.8912366666666666,3.013395,2.57448,3.26193,2.467945,1.1629366666666667,1.1629366666666667,3.2593,1.9248,6.766455,2.351685,3.46583,2.693525,5.58755,2.663745,2.644785,6.0457149999999995,6.0457149999999995,2.283125,1.43268,1.32655,1.32655,1.43268,1.9408366666666668,1.34031,1.1605666666666667,1.5641100000000001,1.94812,3.65005,1.715365,3.02009,2.88257,2.81323,2.942385,2.93886,2.529155,3.5859950000000005,3.5859950000000005,6.13975,2.059995,2.99278,3.083565,3.2786,2.872615,2.802065,2.61959,5.0686375,1.7235275,1.4778123333333335,1.2155706666666668,2.126759,5.36317,3.8642423333333333,3.2976183333333333,3.087605,1.8418375,1.8418375,1.8418375,4.14439,2.452115,1.1605666666666667,3.2575,3.377325,1.39692,5.0999525,3.1433975,5.99919,3.35452,1.83632,3.35005,2.85861,2.25943,3.07288,4.328,3.94992,1.700775,2.59282,2.935615,3.43629,5.58366,2.22905,3.402435,2.60481,5.59256,4.48609,1.96546,1.867405,5.72653,5.01407,5.28797,5.76034,0.992252,0.992252,2.384741,2.384741,0.918666,4.95674,3.17531,5.68855,4.50067,5.3519,2.150925,4.145498333333333,4.145498333333333,2.144115,3.466865,3.78798,1.24658,4.98836,3.342275,3.64452,2.71081,4.71421,2.42389,1.99535,3.407415,2.9137,2.78765,5.17984,2.72902,1.968195,3.645665,5.32182,5.86755,4.51047,2.54231,3.61265,2.8231,5.11275,2.61868,3.79943,2.16579,6.70478,4.13805,2.16859,2.86766,2.041215,4.69797,2.331215,2.67499,2.56219,7.52438,4.64536,3.37116,2.455395,2.410505,6.49854,2.56437,2.99735,5.97114,3.429515,3.188175,2.798215,3.149205,1.8525433333333332,2.011955,2.0934166666666667,1.7918066666666668,1.8814066666666667,1.8726133333333335,1.551545,1.9967933333333334,1.66033,1.8525433333333332,3.76084,3.90954,2.15827,1.6928225000000001,1.6928225000000001,3.8593633333333335,3.8593633333333335,3.301566666666667,3.301566666666667,2.78978,2.52618,1.795315,4.0795,2.2578175,2.2578175,2.456615,2.456615,3.06474,1.852185,4.7312,2.359595,3.05438,2.12677,2.12677,1.60206,4.11165,4.76511,1.4661233333333332,4.47764,2.26876,1.84693,4.26625,3.27894,2.031095,2.371155,6.34912,2.22281,6.40504,3.26875,3.404685,3.105185,2.723915,6.37108,3.31898,2.042935,2.760968076923077,2.962245,5.59351,3.591755,1.569162,1.569162,3.41933,5.03926,4.91985,5.92249,2.91217,2.954155,1.76,2.87672,1.65492,2.828565,1.86748,0.793512,0.793512,0.793512,2.0888783333333336,5.143483333333333,2.0888783333333336,1.887935,3.4991399999999997,1.638425,2.043275,4.95883,3.56526,5.49146,1.7921466666666666,4.78595,1.7921466666666666,1.7921466666666666,2.258555,1.776655,2.137885,6.43772,2.137885,2.424835,3.84353,2.173285,1.87334,2.96413,3.15157,3.2097474999999998,3.16484,4.071395,1.4361266666666666,4.5927,0.7344809090909091,4.270585,4.964955,2.5337275,2.5337275,0.7741327272727272,3.876666666666667,2.62766,5.64865,5.18605,3.843095,5.28205,4.26707,4.20919,4.575135,4.40708,4.21311,3.47087,4.10204,4.761465,5.28625,3.493925,3.24386,3.88124,2.647483333333333,1.342524,4.4832,4.20607,3.547165,1.5322857142857145,3.81607,4.41571,6.2424075000000006,1.1205075,4.74582,4.477635,2.142875,2.07117,3.26912,3.599315,1.683805,1.569162,3.59937,3.53291,2.59544,4.69356,3.05552,1.16897,2.56247,1.215094285714286,3.0808766666666667,1.8100366666666667,3.4284,1.860405,2.4726733333333333,4.20232,3.479655,4.481975,3.330975,2.2213875,4.76423,4.4337,3.06263,4.669915,3.94663,2.6810500000000004,6.17215,4.25929,3.1406066666666668,2.60243,2.47227,3.022016666666667,2.7207666666666666,2.7200133333333336,4.809715,4.349945,3.767075,2.39913,2.6422466666666664,2.38138,2.7181433333333334,2.5510433333333333,2.4101033333333333,2.4239966666666666,1.882715,1.287805,3.129226,1.2264425,1.890885,1.8932925,2.4301825,1.5662625,2.06704,4.39063,5.55095,2.0047125,4.197815,5.18315,6.64575,2.15956,1.539054,7.09145,3.379885,4.38599,4.15566,3.76792,2.03792,3.56315,2.695975,3.15058,4.69464,0.7141716666666666,4.233355,1.9731466666666666,0.8029890909090909,5.24565,4.674405,3.90651,1.834037857142857,4.791975,3.70103,2.5841533333333335,2.4487566666666667,2.4796833333333335,2.13644,0.8060499999999999,2.8869566666666664,2.963575,4.999185,2.48281,1.793265,4.204905,1.18965,1.8794400000000002,1.8794400000000002,2.66704,1.8794400000000002,4.372475,2.79211,4.874365,4.33607,5.8481,13.311206666666667,3.3443666666666663,5.16185,2.78031,4.57347,3.125695,6.8150525,3.17306,4.64645,4.96538,3.873195,1.5502399999999998,4.27427,3.0771033333333335,2.9949,1.0439366666666665,2.264745,3.34811,7.219735,4.248845,2.4992733333333335,4.256175,3.15104,4.32303,5.6102,4.686655,3.026895,2.76605,4.078795,5.7701,2.564255,4.53784,1.97086,1.97086,3.10514,4.599755,1.083535,3.95476,2.60025,3.72436,2.5588866666666665,2.2870333333333335,2.65223,2.3401166666666664,0.6197685714285714,3.42894,2.6547633333333334,4.596745,4.267885,0.255165625,5.45065,4.81421,3.79811,7.2023166666666665,3.3089333333333335,2.9362133333333333,2.29349,3.3369666666666666,3.448066666666667,1.4139533333333334,2.888333333333333,2.9527933333333336,1.4494566666666666,3.307926666666667,3.3554,3.0970166666666668,3.2651533333333336,1.3716955555555557,4.092765,2.368975,5.6426,4.571385,3.92976,1.65506,2.5525033333333336,1.3557675,1.877495,1.3557675,4.485975,3.7278333333333333,1.6673680000000002,2.4557425,3.859675,3.832095,3.079835,3.90439,0.3547615,1.2062004166666667,3.841495,4.09911,4.71117,2.0969125,2.7043733333333333,3.359766666666667,2.5412,3.146535,3.290235,4.38953,1.8424775,2.3000633333333336,3.0014966666666667,2.6247599999999998,2.6420666666666666,4.630295,2.18336,4.39824,3.6589983333333334,5.8317,7.7608175,0.7500766666666666,0.856851,3.61827,6.532885,1.633214,3.613685,1.59755,1.59755,3.664845,0.45431000000000005,4.08462,4.223545,3.02857,4.25135,3.23251,2.693345,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,2.011525,2.95219,3.983363333333333,3.1177283333333334,4.197825,6.417078333333333,3.001845,1.9007133333333333,0.9469833333333333,3.440765,0.728055,5.225875833333333,3.3251625,2.380835,0.728055,2.413275,2.632715,0.806355,4.1388050000000005,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,4.46118,1.717395,4.39355,4.767365,1.866546,4.33861,3.99493,5.46525,4.9637975,3.640072857142857,3.369795,4.47184,2.5644,4.754255000000001,4.179205,0.7864857142857142,1.2607785714285715,1.2256414285714285,3.4623333333333335,3.4623333333333335,3.0354400000000004,3.792815,5.1014,3.667275,4.7541,3.6858,2.02338,0.5570771428571428,4.124185,3.05513,3.1205,4.22275,3.296515,3.1587387500000004,3.50382,4.284165,6.854430000000001,4.269615,4.722045,5.11785,4.210075,1.2867742857142856,3.027375,4.6280719999999995,34.92820580266956,1.25689,4.89,4.48684,4.676975,4.397895,3.992155,5.50655,0.40800952380952377,4.78712,4.388515,2.118895,1.994955,3.73844,1.773685,2.43629,2.39628,1.7262475,2.800585,2.5235533333333335,3.182285,2.779315,0.6429238461538461,3.55865,3.751645,0.38219157894736844,2.61582,2.895515,2.58765,3.819555,1.833325,4.537495,3.92536,3.231735,4.852685,3.16529,4.333235,2.93339,3.734175,2.283025,4.6280719999999995,3.876375,4.126695,3.17585,1.605328,4.817675,3.558845,6.76976,3.329775,4.484485,6.478135,5.219044,2.25573,4.700955,6.9010549999999995,7.083502,2.2188233333333334,2.65815,5.1547,5.38263,3.71244,3.36818,5.321348333333333,2.394965,2.0274675,2.3244,60.89907645501622,5.7281,4.33156,2.6107,1.10581,3.19969,2.7935466666666664,3.2727466666666665,0.8967899999999999,4.71913,0.7661288888888889,7.783787857142857,2.06096,3.3026366666666664,1.830414,2.789725,2.6634766666666665,2.5660366666666667,2.449056666666667,2.311103333333333,3.2502433333333336,1.5403666666666667,3.917980833333333,2.437603333333333,1.4803775,2.3691400000000002,1.3852366666666667,1.4748625,7.17782,5.7665,3.422975,5.2931,5.0531125,1.5010285714285714,3.5286000000000004,3.666965,1.6465225,4.49378,3.60147,3.96786,2.1823725,3.0328033333333333,3.5541,3.938975,5.34925,4.08872,4.540285,1.7958725,3.68662,4.2339,3.3127266666666664,1.320524,3.57809,3.362966666666667,3.8748,4.747175,3.94205,4.00254,4.42307,4.42727,4.371115,4.501395,3.84632,3.2234833333333337,3.99119,4.549535,3.17653,4.00065,3.55132,1.51923,1.51923,4.539645,5.19135,5.54185,4.375175,4.85493,3.653233333333333,2.82126,4.40972,5.0071,0.74837,5.24745,7.2822525,5.6354,5.80435,1.3142777777777779,2.986575,0.9254466666666666,0.9254466666666666,0.9254466666666666,3.651655,3.5848,2.493933333333333,3.448366666666667,0.882493,4.668565,5.1713,3.166305,1.4158875,2.2258925,4.214785,3.8762,3.80777,3.194286,6.116,3.91026,2.6658466666666665,4.75827,6.95205,2.20985,4.17427,3.687635,3.208165,3.3685,3.51852,4.665825,5.2869,3.686995,3.440848888888889,1.9994933333333333,1.9994933333333333,0.71816,8.37761,2.21953,6.1915,5.3213,4.57943,4.488165,3.76013,3.1567700000000003,4.712555,7.452585,5.7482500000000005,2.1563666666666665,4.53269,1.01364,3.81687,1.9948333333333332,0.9143577777777777,1.15767,2.7024000000000004,3.19842,2.771126666666667,1.222427142857143,3.1194,3.1590733333333336,0.9232777777777778,2.805816666666667,3.317486666666667,1.672448,1.66998,3.0938866666666667,3.156283333333333,2.952583333333333,2.534476666666667,1.6361560000000002,5.1501,4.44453,3.487145,4.344425,4.78775,3.15465,4.67546,5.96225,5.14935,4.215745,4.33964,12.316036666666667,7.75244,2.7660433333333336,3.50582,2.1099966666666665,3.87089,3.244825,4.6384,1.105365,4.06395,3.49069,1.291945,3.660825,2.905866666666667,4.243505,3.348205,3.88451,5.5175,7.49165,3.912205,1.4965366666666666,1.4965366666666666,1.4965366666666666,4.624295,1.185225,1.402225,0.4651177777777778,4.267376666666666,3.055426666666667,3.90682,1.08257,1.08026875,3.05112,4.461775,3.758885,16.817464880952382,5.2164175,4.540225,5.8992024999999995,2.848053333333333,3.723225,2.953505,0.93067,1.4432,4.42226,3.69744,4.15252,3.726365,4.62602,4.032035,2.771909111111111,3.288725,5.2805,0.59178,4.816965,2.3833325,4.44211,4.90761,3.4694333333333334,2.46761,3.9021116666666664,1.69013,4.34457,6.13455,2.59454,2.523105,4.25417,4.463755,4.134205,4.25936,3.597775,3.548265,4.671655,4.52867,3.82357,4.904105,3.98171,1.1425985714285714,1.9098725,6.752469166666667,5.58095,4.356665,5.19785,2.555525,2.923083333333333,2.8530433333333334,5.273006666666666,1.933015,2.126585,3.1954333333333333,3.2020666666666666,3.3683,4.574915,3.8663,5.476681666666666,1.21356,4.646935,0.9293,4.14713,3.397425,1.7878516666666666,3.649595,0.9739411111111111,4.7714,4.977965,5.00035,5.0424,3.6253833333333336,3.91828,2.6328566666666666,5.00305,4.77223,2.9071119999999997,4.04113,2.46296,2.69395,2.071605,2.6016,3.97482,4.917745,1.08612875,4.485145,1.351665,3.33974,1.6389500000000001,1.08612875,0.21823648648648647,3.90088,3.047525,2.3215466666666664,1.8764866666666666,2.69974,1.08654,3.691225,3.55151,4.793975,2.56728,6.6898,7.7004,2.9134499999999997,3.265083333333333,2.7929033333333333,0.8637980000000001,2.3788266666666664,5.8629,4.78097,5.19205,5.00255,2.1494833333333334,1.2802933333333333,3.7403999999999997,1.5797825,2.4475425,1.7298275,1.6754825,1.6839525,1.9240775,2.0295075,1.74872,1.81376,1.206597142857143,1.4566875,1.881375,1.9077475,1.89189,2.4089,0.5226626666666667,1.908128,2.9406666666666665,3.2519266666666664,1.721345,1.8679833333333333,1.6247725,3.968305,2.21095,3.038095,3.01118,3.746865,4.818705,2.859226666666667,4.13322,1.6778405147058826,4.7394975,22.803851,4.745796666666667,5.2965,4.750675,2.3448366666666667,3.936565,4.976775,2.600365,4.163685,3.365933333333333,0.78558625,3.33923,4.906825,3.88343,4.068425,1.6597666666666668,2.01551,2.402606666666667,2.44117,1.1117085714285715,2.9667,5.29405,4.23791,3.320965,4.04055,5.35125,4.452085,6.0033,1.268675,3.246275,4.145865,5.07845,1.531056,2.48393,1.8752475,1.8752475,3.644785,4.91183,2.7602733333333336,2.8846633333333336,4.41416,3.832845,6.715482499999999,4.0002,2.25285,1.4432,2.700655,4.19213,3.269626666666667,2.3025760317460318,2.3025760317460318,3.346033333333333,4.59346,4.039585,5.543893888888889,2.31508,3.4947186666666665,0.6160566666666667,0.6160566666666667,0.6160566666666667,3.30155,3.81806,4.05052,5.2113,1.6033975,5.83675,5.03135,4.761995,3.772035,4.64233,2.87836,1.6362571428571429,5.6121,5.53655,0.4595535714285714,4.189633333333333,4.785535,1.5396666666666665,5.21715,4.84916,4.194225,4.143335,3.68493,2.9867,4.57151,1.69421,4.494935,1.5828116666666665,3.19634,6.00505,1.25225,3.239685,7.21201,3.897335,4.0656,2.544025,4.509485,4.89032,3.693766666666667,6.485715,4.234515,2.18356,2.96725,2.7758833333333333,2.88162,3.154253333333333,1.83169,4.873615,0.6827200000000001,1.9563975,1.9563975,3.142935,5.2338,2.35006,2.92978,4.94297,4.221785,4.730965,1.4624933333333334,5.326530791666666,4.832585,4.69156,3.79247,3.987592166666667,3.5397835000000004,0.4478086666666667,2.4705895714285715,1.05288375,0.4478086666666667,3.87629,0.8644833333333334,4.301225,4.318375,6.355834,2.1644666666666668,1.0320025,1.144832,2.37342,3.20392,1.8344866666666666,2.439693333333333,3.319625,3.47461,2.1037266666666667,2.3079466666666666,4.758035,3.3543525,3.909825,5.4286,3.45201,4.933755,6.846363333333334,4.099845,3.61053,4.54692,3.74367,3.73615,4.961005,6.2674375,5.14365,2.66593,0.9270044444444445,4.195585,4.005505,4.212245,5.1199,4.02051,3.49456,2.8245966666666664,2.60787,3.11416,2.4987566666666665,2.67182,3.4784,3.1960033333333335,2.5219466666666666,4.49082,4.226815,4.55597,5.8347,2.895573333333333,3.3567666666666667,2.901825,0.6879335714285714,4.672035,4.26523,4.91545,3.4255666666666666,6.115266666666667,3.449525,4.452215,3.834275,0.6143776923076923,0.5790264285714286,4.35572,2.7662555,3.686385,4.8635,4.69489,1.8461839999999998,5.0363,4.81365,2.9354099999999996,2.8465633333333336,2.3433625,2.1718795833333333,3.508433333333333,3.1971000000000003,3.3522,3.4491333333333336,3.6059,2.7023,3.3706,3.8828666666666667,5.008414999999999,0.54197375,0.54197375,0.54197375,3.005931861111111,3.7261,3.8305000000000002,3.0154566666666667,2.653113333333333,1.17378,3.1258199999999996,3.324726666666667,1.7982925,2.761253333333333,2.26168,0.9576311111111111,3.1123250000000002,4.924125,9.850905166666667,1.4960636666666667,0.585434,3.9244,0.585434,0.585434,0.585434,0.585434,2.17324,4.0842715,3.797625,4.92576,6.0297,2.7922933333333333,3.1192733333333336,2.9423174999999997,3.3666566666666666,5.35235,1.2302566666666668,2.48913,3.1405966666666667,2.736693333333333,3.4002,5.1411,2.3195666666666668,4.380765,1.1088088888888887,4.40397,5.7825,3.89891,0.828765,0.62537,0.62537,0.9809511304347827,1.8097161304347826,0.9809511304347827,0.9809511304347827,0.3677291304347826,0.3677291304347826,0.9809511304347827,1.5057833333333335,2.5053533333333333,3.10427,3.1111299999999997,2.6313233333333335,2.48182,3.07662,2.7568366666666666,4.503,3.55281,2.0082575,2.2717899999999998,1.8889525,0.18469524484536082,0.18469524484536082,0.18469524484536082,0.18469524484536082,2.5139566666666666,2.4022566666666667,0.833338,5.32705,0.7179436363636363,1.773806,4.463994166666667,5.25095,3.19546,2.57576,4.395995,3.981585,1.9813166666666666,1.2165325,3.886025,4.53728,5.9007,2.398895,1.4715166666666668,1.9041366666666668,3.298503333333333,1.46871,2.6909166666666664,3.3538333333333337,2.2983266666666666,4.75466,4.0035,3.196575,4.697335,2.480156666666667,4.45559,5.708,4.14951,4.54495,5.21575,5.15789,4.586355833333333,3.173158,4.967523333333333,4.43459,5.06275,4.36532,4.49558,2.044275,3.03029,4.237335,5.0178,4.411425,4.036875,3.471565,2.70371,3.94786,2.3759033333333335,5.65725,3.444255,7.579455,5.62375,6.08115,4.949385,1.4500428571428572,1.01647,0.6073392307692308,1.7683360000000001,4.283145,5.1632,3.936215,1.573394,4.259765,2.96094,4.74658,5.1254,6.2671589999999995,4.115235,3.262875,1.886358,5.4517475,3.993145,3.189445,1.6634525,1.0040125,3.961875,3.273995,3.4602575,3.59914,2.24695,4.703485,1.7036566666666666,2.881266666666667,2.522105,4.02887,3.33268,4.790855,2.1129775,1.69957,5.6727,3.0514566666666667,9.01205,2.902775,4.84437,5.7021,4.37011,4.72626,3.39686,3.98446,2.3345325,3.785085,5.186526,2.1482375,4.53338,4.344185,7.4597050000000005,5.08995,3.3620666666666668,4.345215,3.76145,3.3543525,3.63825,5.37125,5.25925,2.3929625,3.15323,3.2114333333333334,2.362225,2.762035,4.440805,5.83315,5.09255,4.57619,5.18825,5.05265,5.5316,0.6222276923076924,3.31316,1.2895585714285716,31.047252380046586,2.606825,4.600215,3.09999,4.495085,1.7370139999999998,2.4579566666666666,3.242666904761905,1.6837969047619048,1.6837969047619048,1.6837969047619048,1.6837969047619048,1.55887,3.46414,0.32454333333333335,7.20861375,0.32454333333333335,5.15015,5.02435,2.2294375,5.1763,2.291385,3.944402,2.541236666666667,2.523946666666667,2.74525,2.1997466666666665,0.6173346153846153,2.65508,0.7340033333333333,3.174856666666667,2.1015099999999998,2.351234,1.2730383333333333,2.351234,6.049,7.493684999999999,5.1482,4.36294,5.65235,5.8663,7.397003333333332,3.40068,1.72165,1.72165,2.4024633333333334,5.10135,3.73975,4.688765,5.715331666666667,4.282145,2.791385,4.10921,3.43752,3.533055,2.310555,1.104082,1.866185,4.31797,3.86944,5.147618888888888,1.904265,4.56622,1.570354,3.298125,1.375678,2.78703,3.1728733333333334,1.8947933333333333,3.01226,3.288513333333333,4.77509,0.6568423076923077,3.48548,3.5470333333333333,2.6146733333333336,2.36721,4.23432375,3.1763066666666666,2.0694933333333334,5.23500875,3.699685,4.851225,3.727255,3.6665,5.05495,5.16745,2.2355533333333333,6.0677,2.3317578333333335,2.0832,3.1269533333333333,2.7715666666666667,3.3859999999999997,2.95236,1.7421033333333333,3.1261662575757576,4.462485,3.27137875,2.050624,2.050624,2.49949,3.79952,4.16807,0.4953763636363636,3.057655,3.120945,8.42149,0.9319363636363637,4.15531,4.24079,5.87905,3.662195,4.10218,2.30992,3.505625,2.8636,6.057,2.6839158333333337,4.096365,2.6486566666666667,4.52104,2.5372533333333336,3.66975,3.70969,4.06678,4.912559,3.478405,2.00607,4.882535,2.4818333333333333,4.62117,4.35684,4.878815,4.735085,4.589735,3.14993,2.1839166666666667,2.9400333333333335,2.4939066666666667,2.997825,3.3511666666666664,2.751132857142857,5.085278333333333,2.99689,2.6683466666666664,7.163119166666667,5.412290416666667,4.002447500000001,3.240013333333333,3.812333333333333,4.07076,3.533545,2.579175,4.33295,5.27775,4.36536,1.3721916666666667,5.20995,2.9979566666666666,6.9910175,4.846875,8.31789611111111,4.09695,2.91725,2.751235,4.07506,5.68405,7.82454,3.20851,5.6871,4.141475,3.143035,3.98133,1.7044679999999999,4.574217,1.4203483333333333,4.58359,4.604485,3.4353,0.8793833333333333,9.470263333333333,1.2315444444444443,2.0340125,2.2309033333333335,1.8788466666666668,3.074953333333333,1.37268,3.526185,3.43642,3.13444,4.156335,0.9710633333333334,3.49254,1.3998683333333333,2.3289733333333333,3.929645,4.25062,2.5222,4.732512083333333,1.8547616666666666,8.17901,4.42962,2.841875,4.018585,3.17967,1.228345,7.47476,3.00288,3.329675,2.31974,4.07294,2.257265,3.1610625,2.102025,4.01422,1.3112175,4.651275,4.18612,4.20183,0.834255,2.0610523333333335,3.885775,4.63667,5.24351375,1.295242,1.295242,6.01765,4.44642,4.17711,3.77805,3.39205,7.72952,4.210165,5.84275,4.074585,2.757275,2.1327028074756784,0.367136,0.17932387096774194,0.6593827598566309,1.1061840476190477,0.6392995852534562,0.17932387096774194,1.244106,0.48005888888888887,1.4733200476190476,1.9034887598566308,2.1636075,2.35075,2.212546666666667,5.34705,6.977003333333334,5.11685,5.55555,4.73561,5.5723,1.2792666666666668,5.201,4.350825,6.0404,5.4932,5.44785,6.22275,5.4107,6.04315,1.4735933333333333,1.6956857142857142,1.809412,6.7989180000000005,1.4941179999999998,5.41,4.870475,7.219661666666667,4.98734,5.563,4.489595,5.0839,2.7182,5.82025,5.59595,4.776206666666667,5.2107,5.7187141666666665,5.8538,3.952725,4.4653,3.9161,1.0185600000000001,3.7049,4.64702,1.2529375,3.621233333333333,5.1827,4.2293725,5.3197,2.4270275,3.596155,2.5904666666666665,4.749615,2.136545,3.57301,1.3261066666666668,3.278795,3.768545,4.446655,4.684555,3.43995125,0.6258199999999999,5.9504,1.041075,3.800845,3.1628600000000002,3.722985,2.044966666666667,3.788185,3.6945223076923077,3.886233333333333,4.89599,14.784686785714285,5.013173333333333,2.22668,8.65392,1.6139025,3.763015,2.83107,2.9233499999999997,2.1313333333333335,0.21075434782608693,2.9369433333333332,5.1974,1.839968,2.3087733333333333,3.7685333333333335,1.9334775,2.2958000000000003,1.3891542857142858,3.2843,4.653465,5.19995,5.0864,0.4784485714285714,2.392866666666667,4.69856,2.99917,5.99105,5.0763,4.330955,4.59073,0.56011,2.5321533333333335,2.5321533333333335,5.28285,3.66512,4.90347,2.720775,3.816466666666667,3.118986666666667,5.1637,3.99223,6.001221111111111,5.12735,4.53171,5.10115,2.38567,2.18892,4.46266,4.214105,4.144965,3.20923,1.779568,4.19697,4.33002,3.836515,5.005,3.879095,4.65642,0.5856293333333333,3.683695,0.6769008333333333,3.1404333333333336,3.160635,4.740425,18.143704285714286,4.592005,3.711725,2.85861,1.2055675,2.760756666666667,2.5058966666666667,1.5434139999999998,2.605095,2.517785,4.423915,2.197853333333333,4.322235,3.842145,2.301695,4.690695,2.7908566666666665,4.25436,5.648,5.58025,1.426685,1.47982,3.306815,5.1089,5.3343,1.1740333333333333,5.20755,4.231595,5.75275,4.677975,1.6944933333333332,4.693495,3.11167,3.39114,4.01242,4.155775,3.1069,0.6564525,8.196843333333334,1.43623,0.1764136111111111,0.1764136111111111,0.1764136111111111,5.425,4.14375,2.6909766666666664,4.412825,3.471695,4.72325,4.245908571428571,3.8264983333333333,9.06955,3.93082,8.179706666666666,0.8369475,0.7824225,2.5532,4.75837,4.68078,2.0465,5.4371,5.94085,3.45837,3.627685,4.33384,2.2248733333333335,4.42533,4.9257745,2.5164133333333334,2.8263533333333335,3.023353333333333,2.75716,5.8682,3.72943,0.6977864285714286,4.401425,3.231985,4.30962,5.049473333333333,4.926385,3.006645,5.2782,3.45055,13.866277083333333,4.85494,6.834787166666667,3.0638666666666663,6.948785,4.778005,4.09387,2.2365975,2.35611375,9.64853,2.222443333333333,3.797,3.7684333333333337,3.7869333333333333,2.355773333333333,3.1211800000000003,2.1290575,2.08665,2.9769900000000002,1.8348900000000001,3.7811,2.57308,2.6063366666666665,2.89611,3.417066666666667,2.3963,2.3963,2.7689800000000004,3.4070666666666667,3.2907333333333333,2.77021,2.9210666666666665,2.8675433333333333,2.740266666666667,2.709016666666667,3.186026666666667,2.24147,2.391475,3.6808666666666667,3.0692299999999997,1.7827860000000002,4.143066666666667,2.89823,2.52978,2.8465399999999996,2.4829833333333333,3.4913333333333334,5.688898333333333,2.37198,3.8933,1.8182233333333333,10.383891,2.44744,1.9283233333333334,1.867456,1.0627966666666666,1.6946660000000002,4.360573333333333,2.7620059999999995,2.7620059999999995,1.548204,1.49033,3.7158166666666665,4.18689,2.19326,1.4133883333333335,1.6163319999999999,4.222871333333333,3.02609,4.131,8.048883333333333,2.7791942857142855,2.3042000000000002,3.1469234161490682,4.1948,2.391475,3.3453666666666666,3.286826666666667,3.00041,3.4229608333333337,0.9003675,3.3886570000000003,2.8583166666666666,2.8261133333333333,4.52549,3.114406666666667,0.68243,1.8713128571428572,4.62196,2.6389375,3.1045833333333337,1.5979150000000002,1.5979150000000002,2.11707,3.6245674999999995,1.04574,2.26524,4.991786666666667,4.991786666666667,0.6434761904761904,6.0110790000000005,3.522595,4.35972,5.29105,1.2353357142857142,3.6128,3.5856333333333335,4.7268825,6.725148666666667,3.2103300000000004,0.771416,2.5742866666666666,2.7187866666666665,3.157002,2.71163,2.6850966666666665,2.92417,2.4554925,2.49025,0.8224745454545453,3.258545,4.010248285714286,1.4568883333333333,1.0866342857142857,5.0387,2.45843,1.701595,4.32691,1.8192,3.483915,2.55675,3.510066666666667,8.40864625,3.8571766666666667,3.63625,5.0153,2.4224416363636365,0.684798,1.4903460000000002,7.252346666666667,1.7208966666666665,4.077395,4.300765,3.837605,21.386790666666666,3.200806666666667,1.44189,1.0903175,3.28097,1.4419366666666666,3.91725,5.2141,3.5073865,3.2747166666666665,1.2710299999999999,1.2527583333333332,3.187533333333333,0.563856875,3.26632,3.6501333333333332,3.04908,2.5078026666666666,2.464566666666667,2.8807733333333334,2.139606666666667,2.7571999999999997,1.695052,2.543813333333333,1.493,3.808445,4.31491,2.199543333333333,4.680855,3.23096,4.18527,5.1722,4.646555,3.2299066666666665,2.6822233333333334,2.75313,1.1520042857142858,1.1520042857142858,1.1520042857142858,2.007365,3.2922733333333336,2.6647966666666667,2.5781633333333334,2.4035800000000003,1.3551875,4.442895,3.663285,3.67995,6.755495,3.58503,1.6958,1.9240375,1.1798966666666666,2.45154,4.02725,2.5699866666666664,2.6898199999999997,2.206303333333333,2.5299133333333335,2.59548,2.8711533333333334,2.8204266666666666,2.9225833333333333,2.861496666666667,2.754303333333333,1.9853066666666666,2.27387,2.20377,1.504535,3.2617833333333333,2.8095,1.9895375,3.962755,5.00605,2.739463333333333,2.387868076923077,5.376893333333333,4.230345,4.95916,5.44085,4.439315,4.162675,5.7580425,1.20631375,4.40844,2.56169,5.2276,5.64255,3.388845,4.13178,2.13141,7.332955,2.44786,0.9003583333333333,8.15849,4.88215,6.0335592857142855,4.742675,2.924757,1.82629,5.4412,4.519765,4.746085,5.10725,2.823275,4.487135,4.60309,1.8889525,4.09739,2.847475,1.3657599999999999,4.696415,0.6416941176470587,4.465616666666667,3.701105,4.7909,3.17235,1.767425,3.636525,1.93703,1.22854375,2.8498533333333333,3.5910666666666664,3.203063333333333,7.028874871794871,1.510005,6.405477916666667,10.6191,6.558055,3.795235,1.2617885714285715,3.0849266666666666,1.2617885714285715,2.8198266666666663,2.148633333333333,0.2783876470588235,1.1508251470588235,0.2783876470588235,0.2783876470588235,0.2783876470588235,1.1508251470588235,1.1508251470588235,0.2783876470588235,0.8724375,5.07755,3.604215,3.264205,3.42049,3.61072,3.48958,2.887748333333333,1.672966,6.987328333333332,2.576346666666667,4.172705,2.59919,1.0431727272727274,1.2588625,4.49389,3.95382,1.0600611111111111,1.570086,0.7009990909090908,3.057982069264069,4.391575,5.2993,3.7532333333333336,5.680920833333333,0.5420269230769231,4.531735,3.60234875,2.961843333333333,2.94521,3.22621,2.534483333333333,2.8219833333333333,2.6970433333333332,2.72328,3.608635,4.535055,5.1912,1.424772,4.47007,4.492115,2.96663,3.76696,3.451115,0.340542,6.27325,3.803185,3.388825,3.103062,4.62701,3.87963,1.946735,3.21805,3.926545,9.50528,4.743535,5.59785,4.130765,3.9899,0.817495,2.22307,2.12001,1.466075,1.7974066666666666,4.134015,5.59235,4.34518,4.04573,3.194286,2.6702616666666668,1.0417066666666666,4.26024,1.2365483333333334,1.1710716666666667,3.265635,3.82023,4.367435,1.22266625,2.45803,8.665016666666666,3.061923333333333,2.8930524999999996,0.8992825,3.888365,11.67995,3.667145,4.241805,3.325635,2.95616,4.748515,5.0428,1.87775,4.233915,0.6154392307692308,4.781625,2.3316025,1.69435,1.69435,3.4903333333333335,4.521655,1.6534633333333335,5.1044,1.594542857142857,4.36992,2.5068808333333332,2.8552733333333333,4.87505,3.65169,3.6603095,2.4166825,2.733097,2.733097,11.332825,0.784331,3.31324,3.5959333333333334,2.13831,2.16639,0.8716785714285714,1.4274475,1.1913714285714287,1.98825,4.89682,2.509465,4.43519,2.118653333333333,4.33129,4.341345,1.5725683333333331,2.13409,1.0418683333333334,5.457853500000001,2.147295,2.11338,1.757346,1.234312,1.0903175,2.3766908333333334,3.646555,2.5235333333333334,3.1779933333333332,2.4209666666666667,2.53174,1.74631,3.0172133333333337,2.6846866666666664,1.2289466666666666,2.0383166666666668,3.1211033333333336,2.771216666666667,2.4749033333333332,1.1944133333333333,2.5705666666666667,2.17838,2.67507,0.3095215789473684,0.41252500000000003,2.36337,2.225776666666667,3.10677,3.1403066666666666,2.68906,4.88716,5.6321,4.43355,4.638475,4.608085,4.027055,2.2143966666666666,3.760075,0.6645818181818182,0.06262181818181818,4.056745,0.06262181818181818,3.087215,3.25532,5.49035,3.562965,6.0694,5.10065,2.4845566666666667,2.8671433333333334,1.3359733333333335,5.8273,6.35825,2.81458,5.40115,1.9376125,4.438595,2.2854041304347827,2.9536933333333333,3.3717666666666664,4.178895,4.3142483333333335,3.27515,1.9674500000000001,1.9674500000000001,4.00227,7.49116,4.39882,2.1503833333333335,2.3826266666666664,4.2452,2.692595,5.4671,3.79762,1.075911111111111,4.288115,2.9992566666666662,3.24905,4.287475,1.0156933333333333,2.327926666666667,3.84243,4.533195,4.500255,2.91034,3.0376,3.82252,3.98977,4.43037,5.1251,4.20634,3.1593091666666666,3.671275,2.34856,2.9606033333333333,2.844723333333333,3.653033333333333,4.706305,3.0102166666666665,4.783260833333333,5.08205,3.23869,4.410225,4.93331,3.53497,1.508418,1.418365,4.07309,3.0295566666666667,1.59626,2.8733866666666668,3.405525,3.11837,3.8305177777777777,3.192553333333333,2.27557,13.222304333333334,2.12891,1.832088,4.67306,0.9973259999999999,3.3343333333333334,4.07243,4.684435,3.31851,0.9679422222222223,2.2626500000000003,2.56728,1.4348100000000001,6.11825,0.9638125,0.9638125,3.943616666666667,2.1226033333333336,1.8210133333333334,1.77288,3.76506,3.515925,1.94125,2.658855,3.426686666666667,3.2205633333333332,3.07936,2.1795999999999998,6.14965,5.63685,3.281465,0.6374869230769231,3.275475,3.37681,1.004609090909091,4.99412,2.960933333333333,8.024283333333333,4.281265,4.738495,3.57108,1.5951775,3.15372,5.1344,4.96767,4.368285,3.741135,4.27147,3.049285,3.6616,3.6616,3.199435,2.8307808333333337,4.424905,1.613775,5.453198333333333,5.046826666666666,1.5396666666666665,4.79027,1.0278,4.998545,3.823745,4.858085,4.5408,3.89828,2.668285,2.62745,4.229945,4.44033,4.525485,4.251735,2.114175,1.385166,3.91662,2.0795666666666666,5.3733,3.000855,3.54104,6.3715150000000005,3.78562,4.600465,4.851035,4.23507,4.43946,8.125385,3.24834,3.002905,10.031385,3.634145,0.6315942857142858,2.099742918192918,4.961825,0.6429433333333333,4.43525,4.46681,5.1132,4.846715,3.26603,3.509905,4.84343,4.58258,2.169375,0.7101528571428571,4.813185,4.632555,4.29468,4.449915,2.7127499999999998,4.50072,3.493415,0.614808,3.41112,3.893345,2.522125,3.004103333333333,3.898725,2.1731616666666667,5.14445,5.07955,4.00983,3.3517333333333332,5.7041458333333335,5.7041458333333335,8.904723333333333,2.06366,0.87327625,0.87327625,24.942621666666668,2.809925,8.124401666666667,0.2989425,1.2898566666666667,2.88515,0.8217230000000001,3.783285,4.094155,2.2179775,2.2179775,4.6197,4.39224,3.55733,2.7371733333333337,2.7371733333333337,3.65016,3.75756,4.73481,2.7488266666666665,2.056713333333333,2.3838708333333334,4.188065,2.153405,3.574195,2.584773333333333,2.9116964285714286,2.9116964285714286,3.3379999999999996,0.8670966666666666,2.573733333333333,1.61193,3.3240133333333333,3.0432733333333335,2.8328133333333336,2.55784,5.0351,2.62377,3.0510433333333338,6.086992,1.389602,2.33599,3.14013,2.4707933333333334,4.072305,5.445867301587302,1.3526966666666667,3.8304333333333336,2.5178,5.10881,6.46395,1.69557,4.8288253333333335,4.820729333333333,3.1310142857142855,4.573766666666667,1.0652785714285715,1.531056,3.1008,3.6686004761904765,1.3276433333333333,2.02728,1.4396875,1.573734,2.811835,3.302746,4.7186335,1.2151733333333332,1.6434142857142857,2.8757066666666664,12.580115,4.77883,2.85928,1.146307142857143,2.681857142857143,0.9628571428571429,3.2268033333333332,4.3128383333333336,5.2886,3.3778,5.8054,1.315625,3.767666666666667,4.30845,2.845053333333333,3.855131111111111,2.50859,1.088791111111111,2.539213333333333,2.61984,6.279178333333333,3.1336135714285716,3.0073866666666667,0.717699,4.803233333333334,3.7035,1.141698,5.9647516666666665,2.078485,1.8903066666666666,5.97285,1.3003,2.862493333333333,1.0161909090909091,3.227446666666667,4.559085,3.3447999999999998,3.03633,2.2310033333333332,2.52466,4.409225,4.93808,4.870455,1.6586925,4.56835,3.61781,4.311983333333333,3.449274,2.5429733333333333,4.9013,1.0314999999999999,2.955408095238095,5.52495,2.64565,4.267495833333333,1.483325,2.9965566666666668,1.999428,1.999428,7.3226466666666665,3.14795,5.672923333333333,3.5794266666666665,1.9184133333333333,2.7827776190476188,4.79396,5.949366666666667,8.336538333333333,4.869770666666667,2.66949725,1.9569533333333335,2.093264,4.1273,3.83348,1.6551120000000001,2.0632825,2.6520180357142857,1.297225,3.3900333333333332,18.991425000000003,3.4943000000000004,2.9465033333333337,2.76284,3.21387,2.24492,1.6384733333333334,2.99262,3.3903,2.5645266666666666,2.6425566666666667,5.6645286666666665,2.5681266666666667,4.4340597142857145,2.9188397142857143,2.5370817142857143,1.49939,4.120491111111111,2.2757175,4.51886,4.86076,3.97712,3.4031925000000003,3.1761166666666667,2.16446,3.29401,2.2482533333333334,3.761533333333333,3.5352,0.8113372727272726,4.986465,2.38356,3.4985,2.864889444444445,2.0145975,2.258530416666667,2.258530416666667,3.7464020833333334,2.1933954166666667,4.786685,4.85925,4.076355,4.54635,4.8294,4.8462225,4.8462225,4.246025,3.2386199999999996,5.15445,2.76891,1.62222,3.4446666666666665,4.42382,3.999445,2.59795,3.85507,5.8925,4.037633333333333,6.41771830952381,3.1412,0.818284,0.818284,3.36918,4.371395,3.8306,3.457608,2.4012233333333333,1.88093,1.8547200000000001,3.220423333333333,6.341381,1.490855,3.976265,3.499366666666667,3.894035,5.1883,4.85353,4.8902411458333335,3.2727799999999996,2.363105,4.885925,2.893525,2.100505,1.12791,3.991515,2.735075,5.7699316666666665,3.0348566666666668,2.602295,3.34328,3.87049,3.478565,4.76615,3.258215,4.739075,4.038725,4.363525,3.711345,3.41397,3.546115,4.54598,2.7370300000000003,4.860025,3.50127,4.949615,0.7236955555555555,2.22468,1.855925,1.7242,1.8541325,2.5858133333333333,2.6593433333333336,1.8376400000000002,4.947825,6.38428,1.9481366666666666,4.4669,4.68033,2.3616875,5.882171666666666,4.2055291666666665,5.19,5.1531,7.314931666666666,2.0530066666666666,2.780483333333333,1.87669,2.804873333333333,1.728,1.813925,4.06443,3.784355,5.39445,1.0341588888888888,3.021495,4.4061,2.1352525,5.5381,3.70595,2.615805,3.7371666666666665,3.26725,1.9466575,1.3036265,2.87765,2.3827075,3.05995,2.05656,1.6916728571428572,1.6916728571428572,2.713075,2.4048475,16.70625851190476,1.0809533333333332,4.526599166666666,2.1763725,1.8558466666666666,3.95387,4.33592,2.0710675,3.853245,4.52058,1.4369866666666666,1.4369866666666666,1.2523166666666665,1.85123,2.89795,3.1799166666666667,4.222903333333333,4.41488,3.6427666666666667,0.5200310526315789,3.589154385964912,1.9727333333333332,2.199295,4.78156,3.366605,4.086225,3.72628,4.625835,3.879345,2.0722725,2.634795,5.38263,2.251225,4.303755,5.0256,2.12034,4.548625,5.44665,1.4353,1.991782,3.5659333333333336,0.84317,2.667123333333333,3.185985,5.0168,4.898275,2.7501866666666666,7.9485600000000005,3.06289,2.7748633333333337,0.45063294117647057,4.235765,5.3956985714285715,2.838530476190476,5.3122,3.86432,2.7481073333333335,1.8299320000000001,5.43535075,4.671525,4.572365,1.9290425,2.0302275,4.422035,3.6269666666666667,2.8373266666666663,1.8708075,4.391105,6.8573075,2.704345,3.85429,3.60183,4.11031,1.491357142857143,1.491357142857143,3.113103333333333,2.9740866666666665,4.31798,4.992245,4.050045,3.26569,2.46305,2.17962,1.5105533333333332,1.3574442857142857,4.958365,5.5002175,5.2256,5.53715,4.406715,6.77074,3.830045,2.801023333333333,3.919430666666667,2.2381100000000003,2.9790255,1.397268,4.60987,2.35765,4.309715,5.0892,4.26236,2.8424300000000002,3.0514566666666667,1.5883857142857143,2.592825,4.073966666666666,2.284695,0.56078375,3.10734,2.8863833333333333,2.5219466666666666,2.2851866666666667,1.9335575,1.712218,0.75929,0.75929,3.5559999999999996,2.0648775,2.19666,3.596555,5.8657,4.96928,2.851925,4.36509,4.01021,2.518992,1.2752666666666668,3.01306,3.420895,0.94328,3.60067,2.859895,3.190155,2.385175,4.10231,2.69775,2.050143333333333,1.3834485714285714,3.55371,6.61388,3.63346,1.6966798214285714,4.52749,3.49711,2.51616,3.417295,2.808475,1.8045933333333333,1.0772425,3.90341,2.5103191666666667,2.2589200000000003,1.7544533333333332,2.53099,2.25721,2.489876666666667,2.649705,1.2752533333333333,1.8534866666666667,1.135485,6.466292500000001,4.198555,3.71281,3.934635,3.411,3.0416166666666666,1.7209676923076924,4.34951,4.3096,2.502195,5.0814,2.04703,4.533865,1.2462,4.122285,3.70118,1.8294825,7.8732,3.651345,1.85735,1.7302225,1.7602175,2.672075,3.200153333333333,1.2448377272727273,3.0678633333333334,5.4624,4.776735,4.58633,5.8839,5.647,4.183605,0.96626875,4.43643,4.62932,4.291475,4.94024,4.203586666666666,4.82561,5.2094,2.814695,1.0884666666666667,1.0884666666666667,5.30015,5.361635,2.47618,2.7357333333333336,3.80453,3.397285,1.60329,3.350575,3.980405,3.73835,4.042325,3.21406,2.338156666666667,5.00375,2.46885975,10.808670277173807,2.0076666666666667,0.7796325,2.4689200000000002,1.8863325,1.9140525,2.18542,1.863796,3.0886133333333334,5.7025,4.979065,3.14596,1.5356533333333333,6.184778333333334,1.3823500000000002,3.17262,0.513,4.231283333333334,5.9234,3.538025,5.1305,12.064589999999999,5.5909,3.1157166666666662,2.7687500000000003,4.70912,3.0913799999999996,5.0815,1.0387525,1.153225,0.7007181818181819,6.0299,4.10649,1.725926,4.612794000000001,4.91977,6.2705,4.800815,4.028,4.82313,6.3086,4.000525,5.104,4.08893,1.119146,4.578295,5.9243,4.771235,4.07953,5.00765,2.88621,1.1914625,4.74113,3.89432,1.0778875,3.5101666666666667,2.9027433333333335,2.39804,2.6587566666666667,2.4054433333333334,2.6736166666666663,0.73752,2.6154266666666666,2.751523333333333,2.6127,2.1140233333333334,3.30402,2.046055,1.4188333333333334,2.4847725,2.1342,2.2078775,3.4417000000000004,2.844556666666667,0.636088,2.6597233333333334,3.56685,4.858855,2.3074766666666666,3.58425,5.39865,5.57745,3.317485,3.971115,1.2256414285714285,3.355705,2.587995,3.955401666666666,2.7530775000000003,4.39006,5.01205,5.3526,3.188105,4.175033333333333,0.893092,0.893092,2.2437032692307692,1.6730125,4.29311,2.5780815,2.5780815,5.17655,6.3576,3.133625,1.06716,1.4717857142857143,5.88485,3.647055,3.15183,3.170705,2.779615,3.24923,3.15183,4.3779375,3.11459,3.1494,2.832185,1.978635,3.09915,5.58075,3.0508,2.393965,2.475945,5.18895,6.2508,5.206935,5.206935,5.497,4.42371,0.68637,4.480325,4.491235,3.122385,2.68894,10.765733333333333,3.516833333333333,4.67909,3.712465,3.6527666666666665,6.1543,2.376885,3.11921,2.8264833333333335,2.80582,2.457953333333333,1.346492,1.346492,3.69473,3.389155,4.12191,1.20547,1.674886,48.70271541666666,2.726713333333333,0.8168699999999999,3.20501,1.733545,3.3566333333333334,2.9313300000000004,3.1038033333333335,2.92197,2.8270199999999996,1.90947,0.86979875,4.64742,3.276045,3.518915,4.242055,5.4159,5.12695,5.44255,5.8959,5.5549,5.2001,5.57115,6.446385,4.875445,5.5725,2.0567175,3.882475,6.74985,5.5606,3.97366,4.7924,5.0947,2.48968,3.98492,4.797255,3.3041433333333337,3.6611666666666665,1.659284,3.72036,1.39184,3.29311,3.88862,3.679575,6.837305,3.957635,2.3803475,4.45122,3.89759,4.005275,1.045945,3.007545,4.870005,4.466102380952381,1.1968375,4.857965,1.4759925,5.97025,0.6974077777777778,3.9333406666666666,10.574586666666667,4.656555,3.919065,4.12895,1.8423833333333333,4.70962,3.93797,3.0689566666666668,4.321665,8.887841666666667,3.5667000000000004,2.4410366666666667,2.87912,2.770773333333333,3.092423333333333,2.7892218333333334,1.8709133333333332,2.6784166666666667,3.2365633333333332,2.8224199999999997,2.69755,3.452935,2.3496166666666665,1.66328,4.230658666666667,2.20765,2.4960999999999998,4.998354,2.7042266666666666,1.275925,1.9721425,2.6469033333333334,5.274704285714286,2.743675,2.1130127777777776,2.1130127777777776,1.62293,1.685855,2.1014399999999998,1.780268,6.028555,4.383245,2.457115,3.0316033333333334,3.3966333333333334,2.0867875,0.6012558333333333,2.2082966666666666,1.9452025,0.6020284615384616,3.9523,2.7191,2.49744,3.81254,3.8407116666666665,2.444456666666667,1.6573766666666667,1.4546299999999999,2.05116,3.61175,3.643415,4.4123399999999995,2.79064,4.085635,4.005395,1.1223818181818181,9.196605,2.87381,3.233515,1.25745,2.636296666666667,2.36403,2.36403,2.36403,4.10933,5.7827,1.655525,4.943455,1.4905659999999998,5.352376666666666,1.561946,4.130055,4.262945,3.990895,3.886475,5.0505,1.97859,7.6247775,4.14857,5.0619,3.266735,3.7106433333333335,3.1329999999999996,3.0216666666666665,4.144085,2.7240133333333336,4.4183514285714285,4.611448333333334,1.604365,3.966025,1.604365,3.240185,4.471178333333333,5.0245999999999995,4.471178333333333,1.88896,6.27525,4.87537,4.236565,2.8549399999999996,3.1179633333333334,4.343695,3.15256,4.26697,0.5108192857142857,3.2147433333333333,3.186083333333333,5.442206666666667,4.924965,2.6321,3.52104,6.770686666666667,3.585535,3.233025,2.971685,2.1962566666666667,4.18069,3.542735,4.721395,2.55367,3.93144,0.903566,5.13695,3.24026,4.12865,2.8781433333333335,3.2367166666666667,2.3184833333333335,3.01245,2.7994133333333333,2.83285,3.444985,2.67185,2.67185,4.927019166666667,2.815625,4.49467,11.706325,0.9985766666666667,4.427315,2.5700566666666664,2.2924700000000002,2.6787233333333336,1.402225,7.394729833333333,3.8271333333333337,3.88092,3.8300166666666664,1.8005266666666666,3.6408,4.4180354444444445,2.08168,0.41063388888888885,1.8499020000000002,1.55391,5.06535,2.841765,3.385675,3.9355616666666666,3.472910833333333,2.5010825,3.7024,4.442585,4.233625,4.243335,2.224905,4.298115,2.57261,6.35155,3.198115,4.700345,4.61348,4.520115,4.636315,2.05721,3.833725,4.09011,2.6148433333333334,4.09877,2.71799,3.1499,3.13314,3.815335,3.07464,4.93476,1.9673166666666668,4.29153,3.236465,3.86801,3.086615,4.45745,4.830465,2.788535,4.20967,3.135005,4.04144,2.060773333333333,2.16675,2.91972,2.361795,0.8682966666666667,4.07029,2.085975,3.47326,2.756285,4.253515,3.495005,2.97771,3.168165,3.720755,4.829204000000001,4.01908,2.92304,1.5484099999999998,3.130225,2.491085,0.8712255555555556,4.34442,9.385845,3.947775,3.71858,5.204,5.09455,3.94236,2.13755,4.06773,3.970865,3.30683,3.13252,3.829205,0.667975,1.2597328571428572,6.2566925,1.6615575,2.70034,5.502231,2.4270275,2.332125,2.743935,8.79176,2.91964,3.974475,3.79701,0.7758544444444444,3.42134,2.752265,3.860455,4.264405,6.387898333333333,0.693861,3.41418,7.25272,3.165115,1.077951111111111,5.1868375,4.49507,5.1076,4.502905,5.161,3.33906,2.68805,7.365955,0.867936,3.523115,4.427415,3.24806,3.771025,2.255045,4.639965,1.4369383333333332,4.53831,4.073625,4.011655,1.70167,4.86628,4.106545,2.420735,2.13852,2.732575,1.141698,4.15199,3.5073865,1.680018,8.644845,5.80535,4.330065,4.97848,3.42592,4.24416,1.4307285714285716,4.41736,3.7859,5.4021,3.85134,2.4690766666666666,6.783583461538462,0.93086,0.93086,2.56253,0.9654085714285714,4.16174,2.5895533333333334,1.0271825,1.7206466666666669,0.41647083333333335,7.109355000000001,1.015455,2.76494,3.376815,4.07644,2.833015,4.429525,5.2691,5.5351825,2.843185,3.165185,2.500165,3.382675,5.45255,4.19174,4.01684,3.56643,6.4479,4.103405,4.382321111111111,5.236827,3.622485,3.9139175,2.28459,3.9139175,7.012954000000001,39.90154461038961,3.54046,3.54855,3.0707400000000002,4.71806,4.31726,3.431195,3.56096,3.884565,4.00325,4.30776,1.74835,5.1825,2.83789,4.202925,5.1978,5.36355,2.5485966666666666,4.781035,3.88842,3.2672,1.5222099999999998,0.6466123076923077,1.616638,3.599933333333333,2.9538333333333333,1.330975,3.4568333333333334,2.5173566666666667,2.9759166666666665,3.2684599999999997,3.0419699999999996,1.434434,2.77238,3.8087666666666666,1.8941403474903473,3.0216733333333337,2.9569599999999996,3.7673,2.697563333333333,3.3579666666666665,1.1684555555555556,4.2204,3.96629,1.1777416666666667,1.1777416666666667,1.1777416666666667,1.1777416666666667,2.9040754545454543,2.0701199999999997,2.53107,3.5274,3.84359,3.9923,4.39494,4.54131,6.1126,4.7881,2.37576,6.4075,3.451435,3.174075,3.63109,3.80246,4.51729,4.599535,0.8097384615384615,1.3703185714285715,1.5897933333333334,5.2096,5.0269,3.164825,4.28477,6.289935,2.22428,4.805475,1.63743,4.56688,5.4615,1.5757666666666665,5.9361,0.7688483333333332,4.971265,1.35747,1.31715,4.02824,4.48789,5.403,5.2083,5.72045,3.913385,1.500136,3.44768,1.4994575,3.54243,3.242645,2.7481073333333335,1.779815,3.498805,1.2299116666666667,4.131405,4.676745,2.8788133333333334,5.47805,123.6586696271645,0.49643666666666664,4.34179,2.4376166666666665,4.77216,4.379635,2.600105,1.50649,0.38308761904761907,2.8865,3.693435,5.32405,2.870185,3.7699,4.909615,3.76294,2.828115,8.17525,0.70441,2.7769,0.9762225,12.283639999999998,3.060075,3.545435,0.9940811111111112,2.237545,2.729995,2.1761625,3.06335,3.374166666666667,2.41173,4.42581,2.9109933333333333,2.2956966666666667,2.1763966666666668,2.4835,4.2881,3.029155,3.69916,3.7862,3.737765,2.3680533333333336,3.85507,3.22405,3.10818,1.0080811111111112,2.5792433333333333,4.42581,4.6015,5.54675,4.049205,5.4917,1.79603,11.41046,3.600335,2.744475,3.487835,6.1557,0.6049026666666666,0.6049026666666666,4.9574,4.9574,4.47048,3.644766666666667,1.8214663636363635,0.7140725,2.82928,4.349665,4.622495,3.14043,3.96439,5.84638,4.73849,1.9138025,4.375075,1.76164,2.77148,4.483336666666667,1.751975,2.526515,0.5075314285714285,2.2374674285714287,2.2374674285714287,1.96998,4.53793,4.80825,5.3052,6.245443,2.572525,3.053105,1.955105,1.83297,4.150233333333333,4.04539,6.20638,2.747905,6.20638,5.021,3.728205,6.35575,4.03546,2.402773333333333,2.27893,2.55141,1.4340225,1.4324375,1.4654625,1.630365,1.7182975,2.4524775,3.633233333333333,4.614195,2.38524,6.0336,2.8793699999999998,4.260675,2.12815,4.29955,3.1801133333333333,2.94751,6.0757666666666665,3.5211666666666663,4.662238666666666,3.1114433333333333,1.372615,2.50569,2.7683033333333333,2.3255833333333333,5.1396,4.0782175,4.734955,13.122935161364952,0.6880850000000001,2.00959675,2.32562,1.6226019999999999,1.3148228571428573,2.6201,2.4777,2.4341025,2.696425,0.7151123076923077,1.90762,0.5209031578947368,4.598295,1.882485,4.69519,4.914895,2.514525,5.8105225,4.001825,8.24361,3.823715,2.69095,3.1821,4.576785,4.335425,2.8745543809523806,4.78862,1.9923525,1.9923525,4.85769,4.06004,4.259495,4.095685,3.1629233333333335,4.046285,5.09885,4.168025,4.7788,4.363165,4.43288,4.493575,2.41658,4.74769,1.246535,5.1124,4.449555,2.69438,2.2683166666666668,3.86942,1.3503283333333334,4.594555,1.745745,5.995062463768116,3.847615,3.967565,1.5672033333333333,3.2981949999999998,3.2981949999999998,12.053455,3.8966,4.17866,1.13269875,4.62629,2.725375,1.424765,2.6242,1.7491575,2.1172025,1.9310559999999999,3.405375,6.72945,1.794835,5.12935,4.609421666666667,5.11325,2.2649075,2.60642,3.81336,4.605805,5.28355,4.082285,7.852616666666666,2.9527633333333334,2.8857933333333334,0.3731527777777778,3.80827,3.978755,3.4141666666666666,6.273236666666667,2.5378266666666667,3.2714866666666667,1.2904316666666666,1.62896,0.56078375,1.8499020000000002,2.9736,1.6329933333333333,1.8065333333333333,0.67150625,1.272194,4.68824,2.4330025,0.6842769230769231,1.8758,1.8027675,1.9015799999999998,1.3603383333333332,2.0298775,1.62896,2.1482375,1.272194,1.272194,0.6842769230769231,1.6368142857142858,2.5936399999999997,1.3276433333333333,2.9212,0.6842769230769231,2.6639,2.5936399999999997,1.3189316666666666,1.3189316666666666,1.3189316666666666,1.970638,1.20582125,0.6842769230769231,1.124194,1.2758625,1.0627966666666666,1.8107,2.5797,0.8793833333333333,2.2723125,1.6357714285714287,0.6842769230769231,1.805012,1.62896,1.93535,1.7826166666666667,0.924061,1.93535,1.1215111111111111,2.420735,2.54815,2.695975,1.2758625,2.3048200000000003,1.2299116666666667,1.2299116666666667,0.9983727272727273,0.9983727272727273,0.9983727272727273,1.2904316666666666,1.62896,1.6357714285714287,1.8758,1.0103157142857142,1.7826166666666667,1.415018,1.7827860000000002,1.7240600000000001,1.2904316666666666,2.85928,11.73349,0.67150625,2.53994,2.00305,2.541175,0.9628571428571429,0.9628571428571429,0.6842769230769231,1.192611111111111,1.712218,1.6357714285714287,1.8222539999999998,1.7826166666666667,1.1740333333333333,1.1740333333333333,1.773806,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,3.5975,1.1215111111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.3938327272727273,55.65606996536796,1.4922275,1.54127,1.6357714285714287,2.00305,1.0103157142857142,0.6159941176470588,0.717699,0.717699,0.717699,0.717699,4.4321,17.554205833333334,3.4949666666666666,0.6769045454545455,1.69361,1.69361,1.69361,0.6769045454545455,2.9736,0.6842769230769231,1.805012,1.8065333333333333,2.62022,1.1215111111111111,2.6321,1.1215111111111111,1.4942,1.4942,2.11515,2.11515,0.6842769230769231,2.1157,2.1157,1.0124272727272727,0.1764136111111111,2.9736,1.71615,2.5178,0.6769045454545455,0.6769045454545455,0.6769045454545455,0.6769045454545455,0.6769045454545455,2.00305,0.3938327272727273,1.1215111111111111,2.34109,2.34109,2.62745,3.1628600000000002,0.6434761904761904,0.6434761904761904,3.3619,4.133666666666667,1.2353357142857142,3.142576666666667,1.08053,2.675575,2.06366,1.0156933333333333,3.429066666666667,2.0128775,3.3517333333333332,5.46575,2.64129,1.2318222222222222,4.207865,4.854485,2.8925633333333334,1.779864,2.3497326923076924,5.0112,1.804773611111111,2.6219566666666667,2.8793333333333333,3.2854433333333333,2.589205,6.21586,4.602005,0.1764136111111111,3.3571333333333335,4.86814,4.4104,4.3948,4.312965,4.44784,2.925803333333333,1.943508,3.287315,4.47576,4.468085,4.74744,5.06515,3.176305,0.6782083333333334,6.915665000000001,1.2786766666666667,3.053424,4.686875,2.71384,2.71384,0.8231,1.779815,3.152565,3.089475,4.90046,4.29613,4.94155,5.602,1.1191385714285713,4.76301,5.21945,7.328366805555556,2.32471,4.188425,4.25197,3.998365,4.378925,4.49102,4.55471,5.526365,5.0989,4.3190100000000005,3.60019,4.55056,7.201597,1.630495,2.03504,2.9196333333333335,1.8099166666666668,2.879376666666667,1.8643533333333335,5.23645,2.7125299999999997,4.12925,1.793168,4.58591,4.018465,2.758745,4.341555,4.001515,2.4410433333333335,2.7878966666666667,2.7635466666666666,2.5478366666666665,2.7313899999999998,1.6777833333333334,2.8819966666666663,2.95225,1.447018,1.447018,4.02463,2.8910733333333334,1.9873066666666668,3.0293266666666665,2.0951166666666667,2.231473333333333,3.0381533333333333,2.6971333333333334,3.219516666666667,5.0553,4.887285,4.83708,3.723081333333333,3.723081333333333,3.938705,3.274453333333333,4.447295,4.490555,3.777555,3.523045,3.342685,7.45474,1.6046125,2.01166,3.529635,3.06877,1.20193,1.20193,3.57188,1.86445,3.7452646666666674,3.854765,3.41338,2.271936,2.201634666666667,0.518455,2.59213,3.951485,2.200265,2.498555,4.14236,1.30264,4.7736,1.2656966666666667,0.43611285714285714,0.5955603571428572,21.773822000992062,0.5955603571428572,0.43611285714285714,0.7550078571428571,11.460346666666666,2.9116633333333333,3.90097,3.944695,3.4276774999999997,2.855365,4.367967142857143,2.236425,2.609025,3.196675,3.37406,4.106235,4.64767,3.590245,2.278885,3.105435,3.70806,4.009625,3.072745,1.170031,1.170031,1.170031,1.170031,3.504085,2.90011,3.051595,1.8674166666666665,1.2010866666666666,2.495095,3.600165,3.245405,2.77334,3.22443,2.67856,2.5068808333333332,3.924445,4.163,1.122285,3.23087,1.20435,3.0597666666666665,2.09502,3.7650666666666663,5.07135,2.4217566666666666,4.67156,4.278316666666667,0.7828921428571429,0.21461214285714286,0.21461214285714286,0.56828,0.21461214285714286,0.21461214285714286,0.21461214285714286,0.56828,4.69238,7.143558333333333,3.59023,0.52147,3.805945,7.74344,3.338335,3.2792066666666666,1.1551616666666666,4.41119,5.5105,4.32233,5.48155,1.652348,4.90828,2.1466533333333335,2.3189153333333334,3.7338,5.5576,0.8245185714285714,0.8245185714285714,3.34689,3.1492133333333334,1.90553,3.84917,2.502425,3.10424,2.47219,1.952205,5.4163,5.29405,2.998575,1.70857,4.303665,3.47122,2.31556,3.86801,3.381825,1.823495,1.139635,4.058385,3.57132,5.049473333333333,6.4720483333333325,1.5711966666666666,3.89828,1.1074366666666666,2.61007,4.360355,3.92766,0.393055,3.710325,4.438085,0.945397,2.7907666666666664,8.003996666666666,5.8707,2.318505,5.806133,4.555285,3.764145,1.3513801666666665,5.610533333333333,3.2343833333333336,3.2878166666666666,3.5780999999999996,2.331366666666667,2.331366666666667,4.397655,4.397655,2.3811767857142856,2.3811767857142856,6.10975,2.3811767857142856,2.3811767857142856,3.0516823412698413,3.51471,3.422485,3.454736666666667,2.6867566666666662,4.13624,4.537395,3.2748233333333334,3.0540233333333333,4.63112,3.147596666666667,2.6651266666666666,3.1109066666666667,2.335836666666667,2.67822,4.97205,7.620515,6.7601875,4.251585,3.69191,4.01559,6.505164000000001,5.14205,3.76717,4.132965,3.320645,2.3154966666666668,2.144195,2.049695,5.48255,5.1873,4.5526675,4.331925,2.4161266666666665,2.7685600000000004,7.028038333333333,1.970638,2.554683333333333,3.2623366666666667,3.2623366666666667,3.273785,4.83415,0.7509691666666667,3.2238,3.944395,2.8477366666666666,10.465074999999999,4.510815,2.8673633333333335,2.5287566666666668,5.5656,6.662,3.1486,5.94375,2.5473,4.41918,3.059767714285714,4.34158,5.28575,4.871125,0.9153733333333333,3.5368333333333335,1.06672875,2.5291433333333333,5.122401897058824,7.800643333333333,3.3974333333333333,2.828056666666667,6.08106,1.715146,4.635075,5.70925,3.38259,3.726795,2.1608066666666668,4.929125,2.51865375,0.4826669230769231,5.32105,2.89493,3.6244333333333336,5.0764,4.845735,5.4359,6.7072650000000005,5.09785,5.6901,7.0078325,53.68985133333334,4.541555,3.96718,4.80697,6.47525,4.496455,4.01132,3.07185,4.75668,1.9650175,4.201745,4.18558,4.486665,2.48449,5.08985,3.89061,1.6390920000000002,5.56795,6.4735,7.497966666666667,5.46865,3.31651,5.2437,3.287575,3.35244,3.694055,4.26986,3.774125,6.66982,2.775575,1.1001814285714286,2.40176,0.570774,0.570774,3.385635,0.570774,2.3046285714285712,2.3046285714285712,3.069728571428571,4.44993,4.728838571428572,2.40176,4.419740833333334,2.658100833333333,1.3399133333333333,4.927895,2.12564,7.650420666666666,6.043396666666666,11.328539272727273,2.9582266666666666,2.98279,0.23466060606060607,1.8008886666666666,2.4707433333333335,0.88123,1.3832266666666666,2.635946666666667,1.68263,2.428845,0.61532,28.148587499999998,2.03786,0.7790769230769231,2.7220633333333333,2.7220633333333333,0.3933788888888889,1.7385875,3.0530825,1.34005,1.87264,1.6544725,4.43097,2.95745,2.19699,2.33622,1.1627,2.00602,1.612095,5.696872916666666,3.74975,6.8543025,2.3609875,3.378633333333333,1.0189716666666666,3.039835,4.764345,5.734035,3.1088633333333333,2.5504233333333333,6.082583333333334,2.59675,2.7490433333333333,4.3331825,1.1305433333333335,3.9362333333333335,2.4472033333333334,6.04055,5.24455,5.7818,3.202185,4.165967500000001,4.165967500000001,5.2829,2.023305,5.5047,2.4258166666666665,1.6301625,3.879715,4.15505,6.7469874999999995,4.344285,3.02378,3.1859300000000004,2.571255,1.253757142857143,4.906105,0.96519625,5.617383333333333,4.69022,8.125499999999999,4.51081,4.658365,4.18479,8.736735,5.23545,5.2503,1.12233,0.766792857142857,4.756615,4.790925,2.10035,3.249745,3.390705,4.32837,2.21719,4.587435,2.5469633333333332,4.86453,5.22085,5.00445,4.67913,4.369845,2.92588,6.923816,3.4436,5.2972,3.42023,3.951955,5.970512738095238,0.5971221428571428,3.856733333333333,1.76732,0.5448077777777778,4.44767,2.37413,1.01928875,1.95934,6.11515,3.72076,2.331515,2.5990100000000003,2.69074,5.22745,3.06959,1.744155476190476,4.16833,2.7358266666666666,3.4484333333333335,4.697735,5.0073,3.064750833333333,3.7825666666666664,3.703,2.0072,7.2174,4.791855,3.97958,4.771595,2.2906,4.09173,4.69238,2.593445,4.05349,11.081095,4.69744,4.72973,4.90272,4.460045,2.4209725,4.14065,3.565335,4.45784,3.319876666666667,4.165055,1.55309,2.6864333333333335,3.4915,3.485015,5.01985,1.8463100000000001,4.00678,3.191383333333333,5.17975,2.9908533333333334,2.72588,3.80996,4.4301,1.00898875,3.453645,2.6654666666666667,4.515059333333333,1.794404,1.6876499999999999,1.1255225,4.91908,6.0528,5.6500825,3.793,2.66921,2.459715,2.16105,2.037595,1.6154833333333334,4.052525,2.96976,1.7456675,0.9399692307692308,20.20596710897436,3.03759,2.84653,4.283356666666666,4.194585384615385,1.4693033333333334,2.7387070000000002,2.6600220454545456,1.246096,1.8982999999999999,3.912715,5.46785,3.677745,3.430155,5.2393,4.725275,7.3355475,4.762414166666666,5.13345,3.85764,2.8892399999999996,3.942465,3.98428,3.379,4.3695,1.9985325,5.0328,9.00468,3.40749,2.9562,3.647595,0.614665,2.9237,2.1055266666666665,2.5213,4.389635,3.251035,4.457955,3.61026,3.069785,2.2690325,1.677025,0.78454,1.44581,1.2712933333333334,4.39803,3.973395,4.30724,4.733305,7.30839,2.2489133333333333,1.3980700000000001,2.4383933333333334,8.083353333333333,3.18868,3.04475,3.153645,4.25388,3.7745274999999996,3.467265,1.599354,4.126145,4.775385,4.120285,3.946445,3.411755,4.24024,4.4786,3.805445,4.478675,3.63976,2.121345,2.95918,3.57163,4.91544,2.776875,4.40536,3.719575,2.96208,2.66324,2.4399466666666667,2.1714166666666666,2.1064553333333333,2.1064553333333333,1.9789166666666667,2.7888933333333337,2.3703966666666667,2.34533,1.8942333333333332,4.10277,2.3980466666666667,3.2375833333333333,2.884703333333333,1.75884,4.100845,2.96773,3.36824,1.73153,5.35135,5.34175,4.960850277777777,2.754565,2.308475,2.8689,2.70734,2.09288,3.0308,1.8944825,2.49526,2.3411625,6.806760833333334,4.41707,3.72956,0.54966375,4.19308,4.40856,4.35064,3.081675,3.82988,3.7444991666666665,5.8091,4.1951,3.223395,2.8854107142857144,2.1985128888888887,2.5491800000000002,1.6793019999999999,1.6513839999999997,1.575996,2.00898,1.8593925,1.2448933333333334,4.179046857142857,0.6842769230769231,0.5439588888888889,2.12496,1.5867483333333334,1.6458059999999999,1.5814766666666669,2.522324696969697,1.4908816666666667,1.752054,0.61443625,171.70279880064828,0.553492,2.10514,1.149554,1.218865,2.066115,1.47829,1.9833275,2.40652,2.313945,6.8991,3.19896,3.6665004761904765,1.81722,3.1913,1.3205583333333333,1.3205583333333333,5.6774325,0.5080255555555556,2.2817875,3.3344,3.13322,0.79525,0.6755058823529412,1.2414795897435895,1.0937272727272729,2.581575,3.712845,1.9499375,2.21519,2.43555,4.504958055555556,1.0671066666666666,4.315925,3.86898,3.60172,6.98153,1.8361133333333333,2.754465,2.514455,4.2289069999999995,2.27665,3.3825,3.303385,3.14804,4.339885,2.92938,6.79468,2.276425,2.65855,3.12367,1.60605,2.65299,2.486755,2.93893,1.694355,1.546985,2.418935,4.468715,5.716378333333333,3.05341,3.95413,1.29133,4.14249,3.4065999999999996,3.5521,2.981505,24.66476521001221,2.1633313333333333,2.8902666666666668,3.2053933333333333,3.3181166666666666,3.092886666666667,5.933286666666667,2.9735600000000004,2.44175,3.558566666666667,3.0544366666666662,2.089446666666667,3.18599,3.2023200000000003,3.048503333333333,1.6934333333333333,1.69607075,0.589522,2.2910633333333332,2.3250725,0.21136875,2.4354833333333334,2.695765,0.21136875,0.21136875,1.8803354166666666,0.21136875,0.21136875,0.21136875,0.21136875,2.9172700000000003,2.4448066666666666,0.5657361538461538,3.3224496428571433,1.4075325,1.9270980000000002,5.2893,5.008414999999999,6.3348175,2.1213475,4.888535,2.01041,2.58689,1.20966,5.816303333333333,2.7515466666666666,5.3202575,0.875525,1.2803275,4.952425,4.970335,36.438221616078366,1.694672,1.3854133333333334,2.35596,2.30347,0.9983727272727273,2.4064433333333333,2.231123333333333,2.806813333333333,2.0283666666666664,2.4609433333333333,1.6777683333333333,2.59935,2.4546766666666664,2.2673633333333334,2.5473033333333333,2.4998299999999998,4.27834,2.832943333333333,1.0299685714285716,3.287345,4.02766,19.366316222222224,2.7455200000000004,2.5562366666666665,2.8219766666666666,0.931766,3.264058,1.7521048888888888,3.264058,2.447903333333333,2.3738366666666666,3.2039633333333337,1.40468,1.866775,4.703535,3.978855,5.4118,4.304805,1.783452,5.03065,1.5923325,4.73716,4.196397571428572,4.718975,0.7406927272727273,2.4512225,2.30767,2.957582,3.39667,1.024015,3.42308,2.11068,2.08174,1.069648,1.069648,1.8652966666666666,3.0522899999999997,5.0852,30.60843708333333,6.45182,1.9380333333333333,3.653366666666667,0.37624133333333337,6.76915,3.89291,2.7349366666666666,3.13415,5.642125,4.38091,1.2813875,4.41352,1.302486,4.34522,4.84918,4.942865,2.090905,3.000245,4.047735,2.419585,3.609798,4.218585,1.3175000000000001,2.5372425,3.82146,5.2212250000000004,2.7778066666666668,3.02732,3.3609666666666667,2.97715,3.966725,4.03829,3.928733333333333,1.765725,6.08357,2.543105,1.76916,4.25084,5.711,3.862195,3.474795,0.85856625,3.003465,3.609645,2.036205,4.692006666666667,2.97805,3.91754,3.0482,3.048633333333333,2.509545,3.251773333333333,3.3051999999999997,3.353666666666667,4.77406,4.3693,3.673665,1.762105,4.24921,4.294455,1.909455,1.90458,1.823645,4.002389999999999,4.701485,5.4868592708333335,4.034395,3.6872000000000003,3.665785,3.3379,1.172495,3.00497,2.94261,3.403155,4.145655,4.565075,4.89184,2.7541,1.933675,1.49853,1.5001925,3.575975,2.406515,2.15711,3.417505,4.701275,1.726785,5.4236,1.394882857142857,1.7300825,3.55376,3.193105,3.05201,3.604895,3.054295,1.727455,0.9927033684210527,2.85834,3.533828333333333,5.2788,8.290296666666666,2.1767533333333335,2.9524633333333337,1.5614800000000002,2.732696666666667,3.1257933333333336,1.120105,3.1953300000000002,2.795923333333333,3.3670000000000004,4.170566666666667,3.3392999999999997,7.097861666666667,3.0894766666666666,0.7226772727272727,2.11319,3.424285,3.46013,3.560215,3.5925999999999996,2.543322,3.49662,5.19985,1.912298857142857,3.85709,3.036588333333333,3.36718,2.431826666666667,4.72822,5.1356,5.2163,4.204395,4.09773,1.4352777777777779,5.29745,3.5894666666666666,2.39906,4.82261,2.8378866666666664,3.0068133333333336,0.5376542857142858,0.5376542857142858,3.283605833333333,5.86535,3.239105,3.35064,3.40883,3.529745,3.140245,5.0005,4.72535,1.04832625,3.92601,2.801546666666667,4.6051424999999995,2.9717033333333336,3.1479850000000003,1.64445,3.354440357142857,2.35807,2.7381766666666665,2.609436666666667,2.8145399999999996,1.9145466666666666,23.005250489130436,6.56045,5.1049,3.969045,3.295495,4.7100025,3.21974,4.52417,4.544775,4.110015,3.569855,3.61619,2.75723,3.183783333333333,3.075616666666667,3.364466666666667,2.58278,4.485405,3.53868,4.564685,5.15305,3.638345,1.290978,1.748788,1.748788,4.58409,3.616455,2.85093,2.2585966666666666,2.962396666666667,4.833775,3.76583,7.951181666666667,3.3883666666666667,2.6442033333333335,3.112568333333333,4.78233,1.6776166666666665,6.4689,2.6587833333333335,2.4377233333333335,1.68777,3.985745,3.33719,6.70546,3.66898,2.568325,4.358885,3.8769793333333333,1.6374575,2.5781199999999997,1.6584133333333335,8.439495,4.609155,6.7358683333333325,2.3449775,4.34026,3.75029,4.12331,5.00015,3.889866666666667,3.889866666666667,2.080965,4.71607,5.3272,2.580215,6.29732,1.9618725,5.75465,9.705681666666667,3.5916333333333337,5.050936666666667,2.34146,1.94164,0.620264375,3.966825,2.5416,2.79185,4.366515,2.344465,2.337466666666667,4.06467,5.4865,4.772465,3.945335,5.8022,4.253035,2.268415,1.0962909090909092,2.969755,3.4407,3.12705,5.09745,4.006875,3.131715,3.15106,1.991782,4.52708,0.97460125,4.86884,0.8619311111111112,5.2418,3.439555,5.14315,5.014705,3.710285,3.339575,3.407966666666667,2.4268033333333334,4.45087,3.41179,2.379305,4.79644,4.4446,6.53538,3.763275,1.8968125,3.8327,3.609985,5.571886666666666,1.916165,1.916165,2.9244800000000004,2.41239,2.547823333333333,2.7187133333333335,0.938214,6.09755,4.240375,2.0132775,2.36469,2.691395,3.826775,2.883605,3.78012,4.194495,4.840185,5.312,5.93765,5.83215,1.318575,4.037505,1.0963833333333333,2.3940825,4.327366666666667,2.48354,3.067045,3.251505,4.10084,3.002035,0.43999157894736846,4.3744,4.2031,4.772035,3.358465,4.955185,5.5888,4.622545,3.79782,1.73858,4.71956,2.1439175,4.3826,4.3826,6.7018,5.52095,5.48205,5.59975,2.61446,1.6776166666666665,4.555105,2.2226666666666666,1.6672966666666669,2.052265,4.40238,4.165355,4.48728,8.29386,1.5131933333333334,5.3458,1.2976216666666667,3.204055,6.05795,1.919455,4.843545,2.2647566666666665,4.08963,3.564705,4.28226,2.81458,4.25519,4.019655,6.77635,3.945725,4.585495,4.430885,5.6901,3.887965,4.427535,3.69167,4.25944,7.822025,3.47595,7.11519,3.25862,5.14025,6.29671,4.83779,3.493295,2.1497375,5.45625,3.881345,0.7592244444444445,8.73458,6.06085,4.945565,3.0708975,5.0788,2.78474,1.79408,4.04249,1.122285,4.767415,3.046215,4.77257,5.4368,4.441055,4.44381,2.2123,4.0936,5.0656,1.8019,6.025433333333333,3.075265,3.540685,5.4492,4.146165,2.340005,4.37881,4.582035,4.84869,3.1858166666666663,3.969995,3.74109,5.52415,4.820205,3.45677,1.8562825,1.8562825,7.089761666666666,1.5494142857142859,5.03645,4.206245,5.85315,3.61978,3.631495,4.857815,3.770915,0.8861849999999999,0.8861849999999999,0.8861849999999999,3.54722,3.19988,3.964805,4.741249333333333,2.95392,1.4758883333333335,4.79487,2.1827525,2.560055,4.274155,5.0569,1.429155,2.16174,5.82384,4.2692,2.765245,4.44284,1.476415,1.99777,3.3340333333333336,3.10811,5.60905,1.443986,1.62114,1.20379875,4.26902,3.30212,3.0258266666666667,3.292923333333333,5.57645,1.8477679999999999,2.04725,3.049535,1.4081142857142857,3.64822,3.913655,2.42049,5.4961,5.7536,2.944395,4.473515,4.63159,3.567265,3.817445,4.291555,3.519735,6.60855,5.1272,1.8000800000000001,1.8039500000000002,3.542265,4.12481,4.02386,3.78456,3.3985,4.40745,4.87739,5.1674,2.8475900000000003,5.44005,4.25049,4.384555,5.6048875,4.81872,0.6446272727272727,4.184145,3.95782,2.336205,4.045985,3.6620333333333335,5.5526,3.80885,3.813035,3.827995,4.332745,4.71729,4.401845,3.65772,3.97523,5.1973,4.052375,2.49438,2.87587,6.23946,3.954855,1.7923559999999998,3.197215,4.147670833333334,3.873625,5.2304,4.84879,2.6523600000000003,0.8821811111111111,4.380894545454545,6.0070250000000005,4.344635,4.87214,3.60217,7.692411666666667,4.005955,3.546,2.6885733333333337,3.77289,2.176485,3.426255,3.96072,2.620096,3.84219,5.40735,1.4500925,5.13235,0.7012857142857143,2.951775,2.160455,2.643355,2.156555,0.7474533333333334,1.7271733333333332,3.480165,1.955885,3.072015,0.5302066666666666,3.730515,3.23567,1.51888,6.347977500000001,6.767,1.0106725,1.8499665,1.227842,1.227842,1.227842,2.2461433333333334,3.477575,3.67065,3.79124,2.87021,5.02645,3.70005,1.9401879999999998,4.277275,5.47435,0.2883,3.75176,4.043845,6.0497,40.595198045454545,5.318935833333333,4.200945,12.201199333333333,4.56594,4.32927,7.747723333333333,3.253555,4.23169,4.49163,4.963945,9.149145,4.596415,2.4559833333333336,2.60061,6.4784,4.19583,3.675995,4.4203,2.10055,4.62222,3.801155,7.1514240000000004,4.516585,5.28545,2.4010475,4.247645,0.527595625,1.42664,3.725575,6.2169,2.947145,1.3467183333333335,1.3467183333333335,4.03446,3.866385,3.856325,2.54732,1.8057400000000001,3.98571,4.322375,1.71447,3.2135833333333337,1.6960460000000002,2.13952,4.081015,4.536665,2.1571025,4.490955,2.2877725,2.19534,3.42287,3.566965,4.025575,3.911025,5.931279666666667,2.3139546666666666,4.313005,0.66617,0.6604433333333334,3.67333,2.32377,8.95822,3.4949666666666666,4.75384,1.654055,4.644785,1.4836533333333335,3.80327,4.29134,2.6928900000000002,4.320005,5.98715,0.416219,0.416219,3.3463333333333334,3.061083333333333,3.1024233333333338,3.677235,3.77538,4.96955,0.8311736363636364,9.830823333333333,8.762255,2.0298775,5.3260274999999995,4.734505,5.42035,3.314175,2.52131,2.20444,1.904265,10.0816125,2.156975,2.835546666666667,3.556634,4.978045,3.556634,2.525575,2.440366666666667,2.87959,0.7414754545454546,5.680920833333333,3.4391,2.566656666666667,4.51684,8.60289,9.886775,4.471695,4.047925,4.367745,6.7379525,2.0077575,1.39625,26.50268,4.053835,4.19002,0.9236230000000001,4.372105,4.2294,4.320795,3.744665,4.14923,5.8492766666666665,3.0055,2.0827766666666667,0.6726705882352941,0.7543708333333333,5.5561,4.84949,1.4207333333333334,4.2220733333333325,0.7766358333333333,3.6986000000000003,1.41397,4.18849,5.67075,2.04043,2.50893,2.50578,3.66679,3.01613,0.5835111111111111,5.0538,3.61314,2.3423266666666667,3.306265,5.31655,3.09705,4.226075,2.91805,5.1262,8.96967,4.95196,5.5580549999999995,2.55065,2.69981,4.457305,4.58261,3.86096,4.4466,3.75468,5.13165,1.17879875,3.20217125,3.2569042857142856,0.68787,1.748788,1.748788,5.28645,7.320311666666667,0.8930307692307693,4.93334,0.8891683333333332,2.900586666666667,2.3483933333333336,2.5188845454545454,6.483395555555555,2.54611,1.1747555555555556,2.355586666666667,1.3090875,2.3499666666666665,3.266336666666667,3.1477583333333334,3.0961700000000003,2.6920366666666666,0.8891683333333332,4.34022,4.27879,5.678,2.799995,5.1512,2.22456,5.8488,4.69473,4.08554,2.7883433333333336,3.2912,2.262635,1.180995,4.186055,2.745375,4.359425,5.59955,1.564806,4.53465,2.62522,6.1358749999999995,3.56675,2.45532,0.8891683333333332,2.372305,2.93726,6.969821388888889,2.3409733333333334,1.35791,2.3409733333333334,0.42411249999999995,1.187838,3.517145,3.780395,2.080885,3.685595,3.912802,0.615897,0.615897,0.615897,8.759905,1.6163440000000002,0.7978181818181818,37.04599165800866,1.8163355555555554,0.6705055555555556,2.6886225,0.6705055555555556,3.699645,2.68726,2.52275,2.7643966666666664,5.64775,4.330265,4.29542,2.36401,0.9070057142857142,4.322735,2.9219933333333334,5.0318,1.0056885714285715,2.62885,2.62885,3.86943,3.30018,4.18905,5.23541,3.29696,3.87969,5.34965,1.7633299999999998,1.1841675,5.44095,5.68415,3.99709,0.681703,4.461275,4.1815549999999995,0.98328,4.60666,2.82727,4.210935,4.111175,1.8785464646464647,1.8785464646464647,4.084835,3.45053,0.923831111111111,2.969995,3.3775,3.333495,3.9531,4.61439,0.403,0.3106188235294118,0.3106188235294118,0.3106188235294118,0.7136188235294119,0.70271,0.684905,0.3106188235294118,0.3106188235294118,7.29284,0.3106188235294118,0.7136188235294119,3.55197,1.2901425,4.774545,1.1605666666666667,0.6187384615384615,0.98328,2.70178,2.777925,3.924505,3.02066,0.3106188235294118,0.3106188235294118,4.44651,3.69312,4.35197,2.592205,3.96706,1.545414,3.77155,0.684905,0.684905,4.911975,3.11267,2.73997,2.855895,4.344444,0.909844,0.7707692307692308,10.604800000000001,1.2853,5.1306,4.513695,5.51845,2.1608799999999997,0.3913969565217391,0.89311625,3.1260866666666662,3.083535,3.15594,4.5415,1.559492,6.2901,3.913425,5.288305,4.14262,3.10899,2.7871133333333336,5.80952,2.80138,4.843935,4.229725,4.278316666666667,5.74785,0.541856,4.158945,3.1930133333333335,2.115883333333333,0.6659388888888889,4.38317,5.60288,2.729625,2.51446,2.15999,5.20205,2.724475,2.998785,0.984936,0.47380846153846157,4.00965,0.36790933333333337,0.7686345454545456,3.983795,2.958895,4.365295,2.7059,4.40446,4.403475,6.056288666666667,3.95067,3.39161,4.36264,1.523035,4.8427549999999995,1.96789,4.27935,2.62155,5.8961033333333335,2.76052,0.959236,4.64875,7.0759075000000005,6.55220875,3.2742400000000003,0.8105475000000001,2.773263333333333,4.62676,4.140265,4.60469,4.475695,4.24157,4.59216,2.713145,4.083525,1.82441,2.36275,1.44278,4.040475,7.099765,4.17244,3.623445,6.18875,2.518335,4.605335,2.45892,2.9318146666666665,3.24554,3.829015,3.61886,3.661645,3.393925,5.18305,5.79145,4.90719,4.457091,5.16085,4.470845,2.843355,5.53325,7.965294999999999,0.9173800000000001,3.973555,5.11925,5.1485,4.453005,4.446655,2.31069,8.598375,2.4840666666666666,3.27611,5.39585,3.72017,4.22914,2.05596,1.69839,2.9878933333333335,2.2754066666666666,2.01409,3.00907,4.172105,4.720675,4.327405,3.509925,4.981546666666667,3.26824,3.165395,3.8942825,4.067065,2.853575,5.791572666666667,4.4475,4.06321,3.46461,7.71712,3.87056,3.70878,4.587015,4.764955,3.501215,7.79339,1.3330766666666667,2.227175,4.156345,2.6251666666666664,2.6251666666666664,1.994425,7.399875,0.9266933333333333,3.119805,0.89755375,2.04725,4.35315,3.619975,3.296235,3.84192,2.9594666666666662,3.559665,4.231975,3.758565,4.6136,3.22008,2.919146666666667,4.687675,5.0368233333333325,4.195295,4.75472,1.489088,1.652628,2.7278800000000003,5.0367,2.418935,1.7153333333333334,1.92848,4.71566,5.07175,3.102775,2.697005,0.49338222222222217,2.254215,8.209875,3.10374,1.4892866666666666,0.8724375,1.2438533333333333,2.0314833333333335,2.0534725,0.8335283333333333,1.9935766666666668,4.2992675,4.062965,5.3407,2.39786,2.19644,7.277810000000001,2.9426,2.226821666666667,2.226821666666667,2.226821666666667,6.673656666666666,2.2769566666666665,3.49541,2.64905,0.497836,1.135994,2.0256125,5.7860875,0.4648922222222222,3.73793,3.867305,5.76,3.019852222222222,0.4648922222222222,3.019852222222222,0.80649875,1.22525,5.97085,4.200005,7.2068449999999995,4.52777,4.89683,4.043225,4.204445,5.30785,4.647595,5.80425,3.67276,3.329475,4.954605,4.50802,4.226495,4.42059,5.26895,1.4433049999999998,2.6930099999999997,1.16330125,2.205565,3.151058472222222,1.5062484722222222,6.6447650000000005,5.571886666666666,2.918603333333333,4.841115,2.81166,4.98414,2.749245,4.289025,4.531685,9.613024166666667,5.69165,4.5729,2.210015,2.987135,2.16764,0.614665,2.2176724444444442,5.35795,4.8389,4.883725,4.742575,0.6816,2.073555,1.46957,4.55226,0.7821076923076924,7.41962,2.14017,1.154915,1.154915,3.8545579999999995,2.0320799999999997,3.830633333333333,2.557785,4.65527,3.83842,3.83842,5.12435,6.0693649999999995,2.7545966666666666,2.7454933333333336,3.4046333333333334,4.584945,1.890962,2.9622100000000002,5.34055,5.8327,4.70053,4.30288,3.938108333333333,4.595395,3.540990833333333,3.3303833333333333,2.2725075,4.350055,5.16395,3.12187875,5.3043,5.74575,2.071753333333333,2.8453666666666666,6.3496,6.87315,1.252688,2.639675,2.2446575,3.01736,2.30212,2.552575,2.6569875,1.0426944444444444,1.9848875,2.5742,2.22414,2.5731450000000002,2.5731450000000002,3.0644465,2.6963,2.1088353846153844,2.588775,2.4290575,1.932836,1.5431179999999998,5.0236325,14.883167499999999,2.9489699999999996,3.7439666666666667,1.7705899999999999,1.7705899999999999,1.613685,1.613685,3.0375933333333336,3.7536666666666663,2.961396666666667,1.815355,1.815355,3.8252666666666664,3.0317366666666667,1.1114933333333334,1.5010285714285714,3.16662,2.8955,3.7821,2.5850911904761906,3.1317633333333332,3.2304666666666666,0.697521,2.49212,3.442686666666667,7.404473333333334,5.2048,3.93186,4.45361,3.604265,4.972815,4.745815,2.93651,4.506195,1.2906,3.2272533333333335,5.89455,4.90603,2.770545,1.3178283333333334,2.945205,2.879583333333333,3.038653333333333,1.5333783333333333,0.7261285714285715,3.31213,4.917883333333333,4.908255,4.441005,4.867425,3.0873166666666667,2.02939,3.202340833333333,2.5944266666666667,3.4417666666666666,3.0897433333333333,3.2764966666666666,2.5277333333333334,3.697433333333333,3.686833333333333,2.948776666666667,5.31455,5.2426,5.214365,5.214365,3.515095,4.272755,4.06661,3.81889,2.836535,4.93416,3.38223,3.2259733333333336,5.7964,0.8525583333333334,4.84511,5.11865,2.50126,4.614305,3.2925166666666663,1.6410583333333333,1.3920414285714284,2.3129433333333336,0.911427,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.5462157142857144,0.5462157142857144,1.18027,0.9538525,1.6931718939393938,1.0255957142857142,1.0255957142857142,1.2156518939393939,0.47751999999999994,0.34203666666666666,1.253695,1.541925,3.3221233333333333,2.4061,7.267035000000001,3.3234766666666666,4.05146,3.5735583333333336,4.010248285714286,1.4568883333333333,4.600645,3.847715,4.08534,2.96497,1.5027279999999998,4.165567692307692,3.64965,5.06855,4.29443,3.016055,3.90483,4.26201,4.69836,1.2643520000000001,4.23226,4.666685,3.25347,2.3824333333333336,3.38449,2.45841,3.218175,3.649125,3.2615866666666666,5.05955,8.88943,3.219055,4.80601,4.332935,4.365311666666667,2.68177,3.423275,0.8933214285714286,4.03543,3.51029,1.8734559999999998,1.112935,2.74811,1.1460316666666668,0.535362,3.6107666666666667,4.18979,5.228483333333333,3.4656000000000002,2.4074625,2.485955,5.0834,4.020766666666667,4.436365,2.579625,2.2926800000000003,3.90218,4.43492,4.238685,5.32035,4.954185,3.671635,4.89088,3.1598166666666665,4.83267,2.1080341666666667,4.573945,5.22175,3.25583,3.961885,2.52708,3.780035,4.996865,4.597455,5.56765,5.0359,5.1271,2.598403333333333,5.2236,5.0687,4.503965,2.53955,0.9147275,4.065015,4.658145,4.25836,4.536185,1.89803,4.08873,2.27751,5.1388,4.371215,5.3587,2.25939,4.36446,4.405195,4.59214,2.819763333333333,4.22767,4.937725,4.696245,4.022195,2.53955,2.36523,2.97473,4.03427,3.94008,4.191825,3.55556,4.97942,2.213135,6.46887,4.12826,3.81513,5.094788652777778,4.429205,5.00355,3.32076625,2.34883,2.34883,3.98467,3.677295,4.56812,2.2493175,3.3420575,1.070655,2.8487233333333335,3.16502,2.829193333333333,3.4570333333333334,4.9569,2.759926666666667,5.9369,2.967726666666667,3.97997,3.9433825000000002,2.054005,4.27993,1.9381666666666666,2.967886666666667,4.08893,0.952989,4.831225,5.05805,6.541625,4.186055,5.461,1.2765757142857144,4.61015,5.8989,8.93482,3.0797233333333334,3.4135000000000004,2.02812,0.8569229999999999,3.98213,1.0375528571428572,4.07847,4.69722,4.707535,3.231335,3.730385,1.4595142857142858,3.178575,3.689185,4.415055,4.262175,4.028305,4.61386,2.4119025,3.896505,5.50085,5.6478,4.635705,3.833065,0.3834911111111111,0.3834911111111111,0.3834911111111111,0.3834911111111111,5.63085,2.829765,5.97995,3.07387,5.4598,4.793775,4.94747,2.22657,2.5265033333333333,1.6199700000000001,5.3413,2.969446666666667,4.225485,3.959835,3.32669,2.110885,1.1626225,4.448905,2.44281,6.181633333333333,3.801665,6.20575,2.24042,1.5914599999999999,0.85317,3.198325,4.7528,3.1122,2.257265,8.137625,3.922255,3.487895,2.35366,0.450866,3.71725,2.786485,2.036325,1.93683,2.88629,2.83891,2.45579,3.435866666666667,2.75499,3.471495,4.261205,3.43104,4.108835,3.92394,5.276695,0.5856293333333333,4.49346,5.69045,4.99984,4.375055,3.1127800000000003,5.0309,4.404235,4.246305,5.447705,5.31115,4.074875,4.197175,3.6546649999999996,4.58556,2.88152,8.69176,5.04105,4.145415,4.66448,5.04885,4.882925,3.466185,1.068661111111111,5.5618075,3.41525,4.907255,1.33919,4.06928,4.889565,6.898173333333332,4.544515,3.377885,2.2461166666666665,3.903295,1.603526,1.2097575,4.005715,5.79625,2.0167333333333333,2.332543333333333,2.85118,3.55191,3.542,3.698565,5.1278,1.7531166666666669,4.172785,4.003059,3.49889,3.778166666666667,3.553865,3.008575,2.60416,1.6467875,2.4199466666666667,2.6385366666666665,4.380135,0.518455,2.6100533333333336,4.10785,2.91824,3.4136666666666664,4.6945,5.7891,4.302795,17.27923790909091,2.666193333333333,4.024566666666667,1.6551120000000001,0.8471509090909091,0.8471509090909091,0.8471509090909091,0.8471509090909091,0.8471509090909091,4.399775,5.01155,5.075,8.782445,2.740025,2.740025,4.609965,4.2754658333333335,1.2846225,2.087406666666667,4.217565,2.58525,2.28191,2.05946,2.98816,3.90267,2.2790975,3.503165,0.8302928571428572,2.9479100000000003,3.2543333333333333,2.8934200000000003,1.48086,3.314833333333333,2.1172033333333333,0.9123725,2.9258100000000002,2.7909,1.1079688888888888,2.490763333333333,3.0582,1.9606033333333333,4.552707333333333,2.136746666666667,3.2593333333333336,2.00075,2.7540366666666665,1.0425144444444445,2.7028433333333335,4.728497333333333,3.5850000000000004,1.09721,2.6548700000000003,1.243635,2.8026066666666662,3.13766,4.7573533333333335,3.104283333333333,2.5585533333333332,4.789237333333333,3.048526666666667,2.196925,2.676016666666667,2.555613333333333,1.83484,2.988,3.6611666666666665,3.392666666666667,2.9946533333333334,3.3459,2.711593333333333,2.454115,3.7422484999999996,3.7422484999999996,3.0141266666666664,2.12619,1.8546466666666666,2.67564,5.57224,2.925456666666667,2.005236666666667,1.64953,2.8156033333333332,4.593395,2.5608133333333334,1.094294,2.735510666666667,1.5272366666666668,2.5512266666666665,2.21291,2.65818,2.2368966666666665,3.064166666666667,1.26782,1.6697533333333334,1.4824566666666668,4.198486666666667,2.5536499999999998,4.085475,0.9484955555555555,4.074945,1.9358899999999999,2.428455,1.7282699999999998,1.497515,3.20621,24.53546569264069,7.036,2.6703333333333332,3.2636424999999996,2.3595533333333334,10.361084,2.9870966666666665,1.0015225,2.55208,2.44325,2.2152333333333334,2.4434066666666667,2.5918266666666665,2.630333333333333,0.8367190000000001,2.7681133333333334,2.55133,2.94366,2.7515666666666667,2.5388633333333335,2.02283,2.1526566666666667,2.9151666666666665,2.5332766666666666,2.18185,1.6288399999999998,5.5229083333333335,4.798325,2.4091825,2.69835,2.3179833333333333,2.3790666666666667,8.458934166666667,2.1641266666666668,5.1757,2.2252875,1.989935,7.80051,2.575626666666667,2.543876666666667,2.447825,1.8362200000000002,1.4446303846153847,3.3546,3.240576666666667,4.115005,1.739445,3.5465999999999998,1.7971325,1.7971325,3.69316,4.00542,2.8547202857142855,2.8547202857142855,5.969150000000001,3.467175,0.43379399999999996,10.207041846764346,1.2612433333333333,0.9051757142857142,3.1994058333333335,1.4681486324786324,1.299655,6.023503333333333,3.666235,0.8122845454545454,2.149833333333333,4.883213393939394,2.6906333333333334,4.43144,1.4745142857142857,6.06445,5.0843,4.776275,3.7445797499999998,1.934472,2.7688133333333336,2.8406300000000004,2.745013333333333,2.26816,4.75153,4.68211,4.51204,2.114175,4.56389,4.06596,2.81908,2.2497225,4.96207,2.5413133333333335,9.577183333333334,7.074282500000001,2.172355,2.64666,1.711616,4.707933333333333,4.707933333333333,3.490133333333333,3.14061,3.1187275,5.30585,9.5650725,4.309205,2.468175,5.3508,4.049995,5.4038,2.0168,0.86163,1.3430766666666667,4.63834,4.742715,3.9973333333333336,2.98081,3.7097333333333338,2.16107,3.372055,4.234035,3.31362,4.955015,3.14538,3.7421886666666673,3.5879666666666665,3.337733333333333,3.3863333333333334,6.27365,2.963575,5.7189,5.37375,3.301455,3.3883,3.3883,5.41033,11.919699166666668,3.5341,6.037577499999999,7.893866666666667,3.594245,2.464863333333333,4.02163,1.3850766666666667,3.717405,2.3881975,2.94393,3.066613333333333,3.5142,2.07748,2.41447,2.9103066666666666,2.6809833333333333,3.0679200000000004,2.979713333333333,3.891055,2.524716666666667,2.96637,3.68262,3.2482900000000003,2.47727,1.09280625,2.0677175,3.2504266666666664,2.5667233333333335,2.4499066666666667,2.5029133333333333,3.451233333333333,2.37751,2.32933,2.7183100000000002,2.788513333333333,2.937,2.8336666666666663,2.4393766666666665,3.0160366666666665,2.6612833333333334,3.4329940000000003,2.5910766666666665,2.411633333333333,2.291933333333333,2.2383833333333336,2.8125933333333335,3.3022733333333334,3.0861666666666667,2.754465,2.0230125,2.0230125,0.612005,1.599354,4.12748,3.3115,2.6197,2.07748,3.16827,1.36553,2.7568966666666666,0.6221873333333333,3.6294,3.198933333333333,3.256755,3.0527833333333336,2.23411,2.94373,3.10866,2.8308,3.3245400000000003,5.288303333333333,1.5429819999999999,2.25595,2.5206133333333334,1.73857,2.1760466666666667,2.913413333333333,2.76883,1.67045,2.6261,2.6125433333333334,2.6745533333333333,2.84375,2.953936666666667,3.0471166666666663,3.2159366666666664,1.37257,2.9272466666666666,2.411286666666667,3.7820666666666667,3.398766666666667,1.82832,1.7377933333333333,3.6062333333333334,2.822983333333333,3.5528999999999997,2.6145733333333334,2.2162466666666667,5.0190225,2.233493333333333,1.9720433333333334,1.577882,3.4257666666666666,5.788786666666667,3.462733333333333,3.4372000000000003,2.9788366666666666,3.3139066666666666,4.816289333333333,1.6002759999999998,1.2174555555555555,2.7267833333333336,1.9645058333333334,4.450165,3.05011,3.295166666666667,2.929906666666667,3.257843333333333,1.87544,3.24891,2.424615,1.598634,2.8510933333333335,3.457595,3.9477374999999997,4.01433,3.984645,1.7232,2.5356,3.64476,2.7501,2.3261066666666665,3.1951666666666667,4.0752,3.9360999999999997,1.403415,5.761721,3.24476125,1.573885,3.63544,3.419145,4.473055,3.93766,1.9331980000000002,1.9331980000000002,3.3526666666666665,2.9528533333333336,3.4888,5.2602,4.574095,4.149046666666667,1.29763,2.7922933333333333,2.5789466666666665,4.363415,3.00784,4.393565333333333,2.76775,2.353963333333333,2.4701066666666667,3.611145,3.706405,1.68922,3.1207266666666666,3.17025,2.344385,4.65355,1.3142133333333332,3.38348,4.630215,2.697165,3.575935,4.19397,1.6465225,1.5948133333333334,2.39862,1.0233133333333333,2.0242219047619048,2.1523275,0.45679785714285714,4.41891,2.229245,4.692465,4.17181,3.01962,4.41123,3.1915833333333334,3.12905,3.567833333333333,2.5181299999999998,3.2705966666666666,2.8991733333333336,3.1978066666666667,2.168886666666667,0.6703376923076922,2.2908933333333334,0.5855357142857143,1.9103666666666665,2.4909966666666667,3.436733333333333,2.9772433333333335,1.4648666666666665,1.3472075,3.705345,4.8353,3.563125,3.5445975,3.92065,1.2623,4.00788,7.764311111111111,3.692315,5.7607725,1.479655,3.814645,1.90586,3.99982,3.93261,1.82349,3.851,3.0196,3.774345,3.8938,2.2932175,4.132465,7.401750000000001,5.2991,3.274495,3.14771,1.8027675,1.9159875,3.756135,3.362195,3.19833,3.439835,3.67794,3.518735,1.65933,3.189135,3.1031,2.063975,3.8723374999999995,0.749755,3.438105,1.7020175,4.3552,4.615726666666666,3.54825,2.85532,3.798855,3.487015,1.8280625,2.3902275,3.814033333333333,2.47698,5.773605,4.00876,4.39702,2.25868,3.17548,4.337575,4.72203,2.827992,2.827992,5.799056333333333,3.6885179999999997,2.59814,2.93041,2.0970133333333334,2.726615,3.32605,3.8395841666666666,2.5149805,3.384055,0.990428,3.770135,2.658865,4.0243,2.67189,1.472115,1.262245,2.720485,5.696172,5.5575075,3.64152,1.3560825,3.908085,3.74601,0.8024066666666667,3.037255,1.029354,5.8195675,1.3331950000000001,4.111045,2.0347225,1.4648666666666665,3.08917,2.76818,4.329755,7.088315,4.100465,4.380365,2.541775,3.0278,4.632895,3.7124,4.92045,4.47598,1.0768275,1.69607075,1.10654875,2.308075,2.34643,4.629995,1.10654875,4.65796,2.283025,1.5722725,1.5722725,2.063975,3.758015,4.42178,4.07879,1.45909,1.45909,0.9957199999999999,2.93233,1.9883975,5.8880375,4.264335,3.68071,3.02258,0.9821428571428571,3.52874,2.854955,4.312985,3.57174,3.8307475,3.8307475,3.45219,4.00192,1.8620575,2.258435,0.9401044444444445,1.7149400000000001,3.4531,2.42606,3.415535,3.415535,2.71934,4.604075,4.32413,2.97814,3.49961,4.291405,2.57558,4.5240325,2.74267,3.70795,8.751545,4.930825,2.8447,3.184195,3.03788,4.778965,2.9834060000000004,7.394444999999999,4.367016,4.21764,3.374945,3.885715,3.466605,4.6902,4.696715,2.17057,3.8591,5.708065,2.647005,2.1587639999999997,2.888755,3.371475,3.18417,4.748025,2.1608066666666668,1.6513366666666667,2.34738,2.7510675,2.33079,6.849090666666667,1.391445,4.664195833333333,4.664195833333333,3.190695,3.8072308333333336,2.90964,2.4299233333333334,5.04303,3.8939790000000003,2.007704,4.02857,3.96767,3.5242458333333335,3.06394,2.78974,6.3205849999999995,3.378455,4.622355,2.581255,4.66613,4.015925,2.995505,2.9528533333333336,2.03042,2.62153,4.01297,2.9371,3.3400833333333333,3.104765,6.30779,2.47981,1.90339,3.4108099999999997,2.42435,3.864275,2.794895,0.8024066666666667,2.97768,4.28883,3.899375,5.9842325,3.15848,2.95591,2.7191466666666666,2.7191466666666666,3.6470883333333335,4.31656,3.795355,2.24251,6.0828299999999995,2.130695,4.416925,3.523735,7.96165,2.813893333333333,1.39008,3.397135,4.43535,0.70032125,4.06005,3.2454,2.707545,3.450805,4.716765,2.2309633333333334,2.46044,8.94323,3.349525,2.649415,1.3331950000000001,3.649205,2.691835,2.1078525,3.992555,5.538625,1.675125,1.1837183333333334,0.9949366666666667,4.02917,3.77239,3.57304,3.5832224999999998,3.5832224999999998,1.65933,2.352195,2.841328611111111,0.8226011111111111,2.59531,1.0877325,1.7232,2.80307,2.87989,2.404295,2.79079,2.5506875,4.50572,3.778695,2.72538,3.347595,2.46858,4.12735,6.3739550000000005,4.0172,0.898575,2.688291,8.68538,4.636285,4.247235,1.0550375,4.7072400000000005,1.3335350000000001,2.8195924999999997,2.8195924999999997,3.7425,7.88672,0.7625066666666667,4.94404,4.77754,2.1852033333333334,4.027429166666667,4.164675,2.310025,10.026606000000001,1.800695,2.3434633333333332,3.28052,1.69264,4.38433225,3.10514,3.529135,3.1152526666666667,2.858205,3.82718,1.0969566666666666,7.21433,3.990875,4.19747,4.227785,1.90768,2.85532,3.8113058333333334,3.68629,0.6318569230769231,4.246485,4.339485,4.840645,2.1293675,1.3216160000000001,4.075935,4.17299,7.63807,0.7853230769230769,0.763555,0.763555,1.7464333333333333,1.4537466666666665,1.375542,1.8179466666666666,4.535325,1.29281,0.85992,4.169585,3.60594,1.455295,3.19145,4.245995,3.490275,0.69373,1.924535,9.21904,3.5547733333333333,3.604695,2.693925,1.512055,2.4304333333333332,2.74817,4.58327,4.2961,3.984975,0.8832257142857143,1.502556,0.8964719999999999,4.659375,4.331435,4.11303,0.8226011111111111,1.768432,3.860745,2.260533214285714,4.4776175,1.0461075,4.619415,0.7393133333333334,0.7393133333333334,0.7393133333333334,9.442435,4.18892,1.0877325,3.925055,4.653645,2.660135,3.055195,3.7346500000000002,2.664105,1.8645255555555553,1.95753,0.69373,1.4961366666666667,0.5783788888888889,0.8317183333333333,1.2606183333333334,3.944805,3.70742,2.078075,7.2595616666666665,4.9242799999999995,0.6717,4.56977,5.407439999999999,3.26029,4.418995,7.530605333333334,3.552308690476191,4.9242799999999995,4.598046583333334,2.2755266666666665,4.41535,3.743885,6.768165,3.446125,0.450866,1.487064,3.721845,1.7639859999999998,1.1837183333333334,4.26645,2.2868133333333334,1.82742,3.28923,1.686102,4.29598,4.33604,3.90743,4.80046,6.78776,2.921995,3.855385,1.029354,2.31708,3.696745,3.30867,2.007704,3.991815,2.49185,4.66314,2.87901,2.30671,3.264815,1.7566359999999999,3.31116,0.8226011111111111,2.3009932500000003,0.9949366666666667,2.05792,3.426925,1.391445,1.2606183333333334,2.2250275,2.761745,7.54038,0.8832257142857143,1.0550375,1.307778,3.63425,3.795115,1.307778,4.023685,2.31708,0.70032125,0.8226011111111111,1.7464333333333333,1.029354,0.45679785714285714,1.6390920000000002,4.222642666666666,2.1852033333333334,1.333295,3.04941,1.403415,1.800695,2.886705,1.95753,4.47862,2.886705,0.8024066666666667,2.761345,2.513675,0.10969181818181818,0.10969181818181818,0.10969181818181818,0.10969181818181818,0.10969181818181818,3.5949333333333335,2.7297,2.7970133333333336,3.011816666666667,5.6042,3.861765,1.7282699999999998,3.59708,3.70385,2.202525,4.907335,2.805535,2.4466,2.53416,2.79666,4.81557,8.16409,2.504025,2.1198366666666666,3.2205507142857144,1.0679857142857143,1.402755,2.456376666666667,1.9572666666666667,1.414625,2.80442,2.2786399999999998,2.82973,2.8357500000000004,2.60048,4.028995,3.56626,2.713346666666667,1.3238759999999998,3.27784,3.803575,1.62578,1.308616,1.308616,1.308616,3.70291,2.823093333333333,1.0681233333333333,2.2524533333333334,1.22959,4.333015,1.6309033333333334,6.685145,3.6209350000000002,2.96423,3.178922,3.178922,5.360566666666667,3.40353,4.11067,5.363,2.1305275,3.26066 -GSM1946780,0.0,1.9522125,1.9522125,1.57677,4.257135,6.13165,2.3585644736842104,1.6201966666666667,7.398036078431373,4.516905,3.1548533333333335,2.63707,2.99386,3.539455,4.306435,1.8286719999999999,1.3830719999999999,4.924415,2.4941566666666666,2.260725,4.592465,5.291731666666666,3.695445,2.722705,1.746958,3.97934,4.574405,4.242825,0.6123833333333334,1.6957833333333334,1.9279033333333335,2.033405,1.7249825,1.0890914285714286,0.6982149999999999,3.0585939285714288,1.5501725,1.8094775,1.21343,2.046925,1.146155,1.1119725,1.12189,1.490524,0.9427260000000001,0.971008,0.80183,1.1616128571428572,1.6607040000000002,1.8083200000000001,1.498366,1.9992560000000001,1.6907340000000002,18.293203916666666,0.378094,0.87192,1.111446,1.85958,1.43598,1.7216799999999999,1.0497914285714285,1.0497914285714285,1.0497914285714285,1.1529283333333333,1.006616,4.70817125,1.231935,2.245335,2.0330975,2.47914,0.9666460000000001,2.287805,2.28561,1.9397075,1.392785,1.92548,1.5927775,1.6567225,2.5197533333333335,3.58984,4.774205,5.05675,1.58627,4.552385,4.56411,4.47734,4.04502,1.068345,7.21374,0.603478125,0.603478125,2.17006,1.1077171428571428,16.047475,4.61556,5.3191,5.75535,4.033475,4.160195,5.17685,0.4672483333333333,2.24444625,1.7413425,2.3346825,4.46069,3.790095,1.4940625,3.1707733333333334,3.6981333333333333,3.18336,3.6559000000000004,3.628855,4.85811,2.886421,4.49394,2.8692966666666666,0.7243127272727272,1.633912,2.560375,4.816165,4.440165,0.538875,3.58844,3.64402,0.82959875,4.19844,1.6911166233766235,2.481255,2.681175,2.01812,3.879505,5.81475,3.357495,2.6747866666666664,3.3328399999999996,3.037933333333333,4.3283,2.9840133333333334,5.57675,3.439985,4.34993,3.10282,2.661865,3.55374,2.445135,6.802741666666667,3.473315,3.33573,5.80165,3.226815,4.80594,0.7785266666666666,9.704162619047619,3.499155,1.9289933333333333,1.9133166666666668,3.268663333333333,2.41946,4.822345,5.55165,2.0854775,5.152583333333332,2.80682,4.52528,2.0854775,2.62773,4.314705,5.141375833333333,3.81799,8.824676666666667,3.854975,4.98493,3.095235,5.0057,4.44236,1.76795,7.99779,3.973005,3.801755,3.782155,3.578125,3.342835,2.26427,5.98013,2.301545,4.03055,3.9104,5.07105,4.86176,3.718575,1.4618116666666667,2.869215,2.955785,1.767555,1.767555,6.094251333333333,3.052975,1.915,4.35577,4.51249,2.820615,1.4956516666666666,0.8372655555555555,6.9577,2.662075,6.8377,3.288775,4.070395,3.788295,2.50696,4.11618,3.57329,3.949195,4.20181,5.65225,2.84453,3.5305,9.088816666666666,4.48865,3.4255999999999998,3.011503333333333,2.6841566666666665,3.945733333333333,4.421618333333333,1.970355,2.5698766666666666,2.001186666666667,1.7432379999999998,1.7660966666666666,2.553856666666667,1.7987425,1.92688,2.878833333333333,2.71301,2.3846866666666666,2.6915766666666667,4.56411,3.602865,3.28883,3.372865,4.1843,1.4387733333333335,2.77001,2.8370300000000004,2.0572399999999997,2.5823300000000002,2.1845,3.360633333333333,1.7543399999999998,1.4823033333333333,2.8765066666666663,0.707398,1.6372799999999998,0.5254522222222222,0.5254522222222222,1.5554366666666668,2.4462333333333333,2.1623066666666664,1.3948733333333332,1.5052,0.3377161538461539,2.6934566666666666,0.707398,1.3578733333333333,0.2005935135135135,1.5882166666666666,2.00334,3.5021,2.0685233333333333,2.028216666666667,2.51491,2.23358,2.316073333333333,2.5116733333333334,2.345003333333333,2.225233333333333,2.70023,1.9121133333333333,2.81021,4.160405,0.7013349999999999,1.8418166666666667,2.5486066666666667,1.9258633333333333,3.4825333333333335,1.508762,2.5563766666666665,2.2019166666666665,4.1822566666666665,2.049123333333333,7.2453385714285705,1.5942285714285713,2.8975066666666667,2.1421125,2.00712,3.26788,1.9394775,1.91433,3.997475,2.67891,2.1272675,3.59945,4.142055,4.3837,3.73644,2.38841,3.368815,4.411814,3.795875,3.9264,4.25185,4.306575,2.998025,4.327575,3.505535,0.8970025,4.88931,1.2483600000000001,4.73173,3.724055,5.76046,3.661295,4.277695,0.9744175,2.36267,3.457455,4.01782,0.8196728571428571,1.1423555982905982,2.025049523809524,3.354028571428571,5.3198775000000005,5.547739,2.1969075,3.229445,5.2509,0.34519142857142854,3.43316,2.249895,0.979205,4.582205,2.095255,11.90947,1.2757125,1.3510775,2.205763333333333,2.539485,2.183485657894737,5.236265657894736,0.36561315789473686,1.58496,2.9604466666666664,1.0714625,3.7983666666666664,1.0524157142857142,5.0452,3.86299,2.193306666666667,6.02175,5.46795,2.7555,1.1187542857142856,4.258993333333334,5.0191,4.303605,0.8552209090909091,7.721053333333334,2.7334033333333334,4.377405,2.66482,2.359566666666667,4.436045,2.3096533333333333,2.53066,2.1658133333333334,2.4446499999999998,3.16121,2.98179,0.356146875,3.96907,3.598435,3.75024,3.906285,4.46162,6.058794000000001,3.97385,1.6974125,5.49185,4.41922,4.372435,4.065105,1.0599366666666665,2.6593533333333332,3.094666666666667,2.579353333333333,15.668825,3.1138,3.78363,4.189405,5.62095,2.746605,5.140444166666667,1.65297,0.8071433333333333,2.671125,3.29046,3.653065,3.667105,6.267479999999999,2.9159666666666664,2.50395,2.19558,3.348966666666667,4.639995,2.3218325,0.3611486011904762,3.0561660869565217,1.9361125,1.1692825,0.5114816446687371,0.661814688146998,0.3611486011904762,0.3611486011904762,0.3611486011904762,1.125885,1.3487975,0.8132275,1.5002275,4.2964375,0.21889058823529411,11.189622104978357,3.5152,2.8453933333333334,4.15899,4.10991,3.96112,2.32621,4.69591,3.9652190000000003,4.169375,3.99491,0.7111376923076923,3.30166,4.282171794871795,0.5393292857142857,3.496335,2.8752933333333335,4.43973,0.5538663636363637,1.74298,4.44057,3.45358,1.8610225,1.7829899999999999,1.6355266666666666,3.1565933333333334,4.03649,3.06595,2.7855266666666663,5.42495,5.56175,4.83494,3.4095666666666666,3.48989,6.444333333333333,3.6872333333333334,4.952175,0.41453904761904764,3.0604133333333334,3.8778066666666664,2.0558799999999997,2.552355,2.852978333333333,5.592526666666666,0.5751041666666666,2.7484,4.26185,4.380255,1.0027757142857143,4.627555,2.85194,4.893305,3.0805133333333337,4.223945,3.525055,4.281125,1.0662933333333333,3.39298,2.72992,4.726995,4.02474,4.441655,5.65605,4.569055,2.58667,5.39693,2.163343333333333,3.09064,3.22557,2.642726666666667,2.611873333333333,2.2912500000000002,1.736926,1.6083800000000001,2.17541,0.8274471428571429,1.5372333333333332,2.39547,2.0456566666666665,3.00576,3.250523333333333,2.7035666666666667,0.9096277777777778,4.941645,3.3589,5.37829625,2.7044795833333333,3.0940666666666665,2.9215199999999997,1.7463,1.7463,2.431404805194805,2.431404805194805,3.258195162337662,0.5822385714285714,1.8038966666666667,2.14885,3.6865666666666663,2.1922361904761907,2.1922361904761907,2.1922361904761907,7.387330297619048,4.387421428571429,0.9621545454545455,2.8116,5.003739166666667,2.33094,4.80081,3.068195,2.355375,4.30163,2.99689,3.1048299999999998,1.23537625,1.88931,2.978736666666667,2.470493333333333,2.60543,5.6014,3.9941999999999998,3.8495666666666666,5.0452900000000005,1.9679333333333335,2.653913333333333,3.1575066666666665,1.0158744444444445,2.2036233333333333,4.591442,7.9386,1.54205,2.783155,5.0195,1.795356,1.78354,1.78354,0.9578275,4.90608,7.5356700000000005,4.08781,4.9165659999999995,4.37093,1.8063833333333335,3.735005,3.02175,4.7321,5.054596666666667,0.36280368421052633,2.78447,2.461215,3.975105,3.817625,1.736682,1.8630025,2.5422,4.13272,3.913135,2.9471,2.43013,1.35353,6.88509,5.4253,4.25773,3.41315,5.7426,4.467505,4.42083,3.495925,3.7882100000000003,2.037785,1.0601142857142858,2.80626,3.989995,3.859095,5.825995000000001,5.622529999999999,2.428725,1.6389033333333334,2.622176666666667,2.69054,3.028356666666667,0.7356,2.14637,3.725115,1.08791,4.980425,3.390005,5.9309425000000005,1.239084393939394,1.239084393939394,4.186025,3.685805,3.940645,5.4995,2.73626,2.2914966666666667,4.06548,3.27043,2.1470625,3.3521666666666667,2.4554533333333333,4.0847,3.3591225,3.610385,4.58746,1.0822155555555557,2.817455,4.328465,4.429445,3.16565,2.5495300000000003,1.83937,0.77747,0.77747,0.77747,0.77747,1.53829,3.606835,3.606835,1.8004733333333334,7.076078333333333,3.08652,3.653465,3.1053599999999997,2.65335,4.6946,4.313775,4.7987,5.191,1.8156525,4.10183,3.56954,2.557585,3.40846,3.447975,2.62092,4.19624,1.88023,4.615525,1.698345,3.365167083333333,2.94559,1.7382425,1.1567983333333334,2.81987,4.3624,1.2423899999999999,0.8289655555555555,3.476785,1.283175,4.790502,4.192825,1.3064814285714286,3.575765,0.7588633333333333,2.61123,2.7156933333333337,2.1808133333333335,2.61839,3.77384,2.896820833333333,4.66806,5.4602,4.367455,4.27081,2.2445775,1.2686142857142857,3.82251,5.07115,1.336095,1.336095,4.00352,0.29222266666666663,2.291446666666667,0.29222266666666663,0.29222266666666663,0.29222266666666663,0.29222266666666663,5.09505,2.65158,3.02303,3.81366,3.0587999999999997,4.4779,2.493046666666667,1.15881,1.15881,0.7858350000000001,0.7858350000000001,3.75626,1.84474,4.15849,1.8093980357142858,1.8093980357142858,5.12205,0.521985,2.6639,7.182475,4.909605,3.31088,3.84884,0.93201125,2.21749,2.051,4.419525,4.34212,4.17804,3.954065,1.274767142857143,2.715385,1.9632775,7.30742,1.77977,4.28604,4.654605,2.94795,3.822465,5.93481,7.848879999999999,4.090075,4.46689,3.67963,2.4659725,3.050325,2.35537,2.338625,1.897335,3.866605,3.23133,5.70721,6.23357,4.13001,1.3572499999999998,1.938485,3.696285,3.74917,2.12638,4.32225,3.220675,4.7167666666666666,1.8053800000000002,3.9840999999999998,1.6104733333333332,6.424259999999999,2.92921,2.4256599999999997,2.2575533333333335,2.29419,3.582466666666667,3.26671,3.295006666666667,2.7815133333333333,3.3228899999999997,2.03906,3.433425,3.119485,3.158055,0.3851195,2.949595,3.885,2.614975,5.51515,4.90789,4.55428,6.559735999999999,4.67598,2.0590466666666667,4.2948,5.0961,1.5870133333333334,4.692695,5.5636,4.922345,4.547355,3.20125,5.479,4.970465,3.84604,5.467640666666667,7.42568,4.008475,1.2231116666666666,1.44275,2.52989,1.808576,4.418795,3.99532,4.96946,2.4444733333333333,2.4711233333333333,2.6276033333333335,2.50868,2.2861,0.9655233333333333,0.5125576470588236,3.85428,3.9649,3.6775,4.055875,3.00801,3.3378333333333337,5.281416666666667,3.0080333333333336,0.5654899999999999,3.114965,5.4771,1.86449,1.6865480000000002,3.674275,3.186405,2.449733333333333,3.7428000000000003,3.993195,2.723786666666667,2.2761766666666667,2.3589733333333336,2.49363,2.854265,4.09425,5.030991666666667,6.204751833333333,1.275052,5.03645,3.2546737500000003,5.031815416666666,2.5371799999999998,3.019385,2.53773,1.90159,1.1957575,1.1957575,2.654646666666667,2.413656666666667,2.6924333333333332,4.88671,1.639364,2.236915,2.040515,0.462701875,3.58783,0.54491,0.948195,3.469145,3.99093,3.664215,1.6916775,4.29852,3.0875233333333334,0.7885357142857143,4.251455,3.9092828571428573,3.1629,2.49801,4.80516,0.27264275862068965,2.1004301666666665,3.27127,1.4821625,3.697295,6.6241,2.25661,1.4346966666666667,4.14202,3.829015,2.8295733333333337,2.8295733333333337,3.55606,3.48491,4.55478,5.558976666666667,5.01315,0.9605677777777779,2.7344833333333334,2.4211,4.50555,5.15045,5.29985,4.83551,4.304466666666666,3.8013,3.7632999999999996,3.5102333333333333,4.075066666666666,2.94951,2.9550300000000003,0.6208135714285714,2.3522775,2.39531,3.61123,3.0555766666666666,3.12264,0.7382508333333333,2.67531,3.8185320000000003,4.592045,5.7907,5.00205,1.86362,1.86362,0.833827,3.20819,4.6269,3.82631,4.294343571428572,3.059805,4.640945,0.5818309090909092,3.249945,3.82829,4.37624,3.892524166666667,0.8023114285714286,2.721275,3.88909,5.4968,3.83663,5.0404,2.77543,4.07788,1.47832,0.9989342857142857,2.621723333333333,5.23425,4.46474,3.12912,1.4420250000000001,3.941285,2.574525,2.46427,2.7150093333333336,3.0610999999999997,4.5499833333333335,3.0475966666666667,1.8150439999999999,3.4214,1.4626038095238096,2.891776666666667,2.4737733333333334,2.2464725,2.871593333333333,2.924746666666667,2.4180633333333335,2.6965033333333337,3.7058,3.0898333333333334,3.5400359999999997,2.2705066666666665,1.94777,4.076368333333333,3.1090166666666668,2.421316666666667,3.5400359999999997,2.014133333333333,0.7919736363636364,2.44329,1.000391111111111,2.2255825,1.507605,0.9252545454545454,1.7810125,1.782805,2.5627969999999998,2.6498,4.61769,1.528655,4.800115,3.110253333333333,1.589404,2.3140366666666665,2.59549,1.66178,2.777423333333333,2.5273166666666667,2.4944990909090907,1.92268,1.8153860000000002,3.561666666666667,2.29997,2.8954661111111113,3.140496666666667,3.0586599999999997,3.7120333333333337,2.1182433333333335,4.1123,3.4636333333333336,3.7324333333333333,2.8518399999999997,3.5229,3.687666666666667,1.7911533333333332,9.933710000000001,4.244895,4.308805,3.21948,2.822515,2.10752,3.892285,1.6905819999999998,4.07257,4.36295,1.383446,2.55597,1.173525,2.36574,1.7110833333333335,2.4199966666666666,5.24935,3.184703333333333,3.66097,4.926245,0.63682125,1.408662,0.984904,3.60288,9.949755,3.2923500000000003,6.695,2.0339875,5.07855,4.122345,2.475105,5.0166,0.30449588235294117,0.83988,4.433875,4.53275,7.2579,1.9835,4.37565,5.6127,4.502235,4.662515,3.365335,4.303815,3.493665,5.599921666666667,3.7694,3.398525,3.02842,1.89428,2.0240466666666665,1.3856255,2.4336066666666665,4.170535,4.675105,1.563232,9.01216,2.2412466666666666,2.9431108333333333,1.058136,1.058136,7.245055416666667,3.022715,2.240705,2.2175975,2.6877333333333335,2.1480166666666665,0.9430333333333333,3.4516299999999998,2.5765166666666666,0.600152857142857,1.7899900000000002,3.3432760000000004,3.3432760000000004,1.2546899999999999,2.5375900000000002,2.2333966666666667,2.7318249999999997,1.4079425,1.8333633333333335,4.596842666666666,2.6319066666666666,2.6401,1.3105775,1.3105775,3.89343,5.6472,4.47384,2.914735,3.7003,5.96783,2.77721,2.9717233333333333,3.00599,4.08501,1.1229733333333334,3.2770833333333336,2.630525,4.06282,2.2888966666666666,4.62962,3.606175,4.21687,3.5502,5.5719270000000005,0.9690388888888888,1.9364225,1.956955,3.63164,4.383705,3.636525,3.804075,3.572195,2.43108,1.664245,4.254695,3.32268,3.50507,2.5290066666666666,0.85409,3.367295,4.168395,4.8591,1.2898,2.8049666666666666,2.5439633333333336,1.8012866666666667,1.8427804901960785,1.8427804901960785,1.2714516666666666,2.03134,1.1141385714285714,1.391702,4.333215,4.442085,0.4942476190476191,3.325925,3.4361333333333337,3.862165,5.37325,0.415703,10.163795,5.45095,2.69768,3.9813,4.45311,5.292797142857143,4.89149,6.66042,0.6944981818181818,2.6636233333333332,5.4184,2.7598833333333332,1.7580625,1.975874,4.46257,5.11154125,2.421825357142857,3.5487,3.15734,1.8837225,4.436525,10.4048,8.153905416666667,3.8523666666666667,4.746765,3.080065,2.869855,3.963855,1.8857,2.9410933333333333,3.60388,4.517885,4.855215,5.05594,6.863133333333334,2.23931,4.58541,4.625035,4.86223,4.694615,7.212521666666667,4.459245,6.01085,3.536265,2.87334,2.90182,5.9304,3.705005,5.0078,2.20795,3.1823266666666665,3.26415,5.79525,4.04737,3.67368,1.50057,0.92689875,2.3534175,0.5557486666666667,4.10341,3.57984,3.37787,2.809,2.09795,2.912875,2.564225,3.0280579999999997,1.78145,3.10870125,2.8217,2.27019,2.55575,3.717352,1.2735116666666666,2.9111441666666664,5.0007,3.7226,1.0666875,2.7834,3.7473191666666668,3.626677,1.557625,5.62745,5.1843,2.151893333333333,3.010033333333333,30.322285968800806,3.21018,1.7194666666666667,3.952833333333333,1.64122,2.58622,2.9659999999999997,3.4159,1.937625,2.714725,2.01773,4.0982525,3.1862,2.4460625,1.5642775,2.22212,2.78475,0.3834872727272727,1.24668,2.7464033333333333,1.7184599999999999,3.361285,1.557625,2.05476,25.0879365,5.0577,3.86518,3.40667,2.48394,2.525675,2.560303333333333,2.1929375,3.56933,5.049568000000001,5.29915,1.586208,1.7446819999999998,2.17001,2.2880416666666665,3.743314166666667,5.26285,4.949675,4.57848,0.1746314893617021,5.0945,4.9010175,3.809525,8.80657,1.0488575,1.0488575,2.9816266666666666,2.96358,5.53855,1.9099755555555555,1.0160722222222223,4.59733,1.8716625,4.32535,3.6304,3.321205,3.961655,3.97863,4.647255,2.654165,0.7304277777777778,3.18377,2.252219166666667,4.24285,7.56125,4.249315,1.8055899999999998,1.8055899999999998,6.7162125,4.63609,4.06915,5.1188,2.1723733333333333,5.113266666666667,1.5354,1.4434766666666665,2.9660533333333334,2.30275,2.864365,2.6922633333333335,3.82087,4.413209999999999,3.772915,5.2348,2.230735,2.6915,1.93819,2.675975,2.297135,2.0224425,2.07037,4.4855025,1.8368175,3.3548400000000003,2.4034666666666666,2.8388166666666668,2.5711066666666667,2.1063966666666665,1.4241057142857143,0.96173,2.4623,3.861133333333333,0.718186,4.561285,1.6870275,5.664069166666667,1.898905,1.534455,1.4707925,1.5057733333333332,5.457088333333333,1.8357780000000001,3.0887433333333334,3.507766666666667,1.16984625,1.81698,4.7537606666666665,3.1033233333333334,1.9296300000000002,3.5525,2.8925699999999996,2.6464266666666667,1.3311464285714285,0.269845,0.269845,0.269845,0.269845,0.269845,3.92374,2.66257,2.54815,3.420166666666667,1.4485599999999998,2.6753966666666664,2.99556,1.93585,3.46593,2.90893,1.72354,2.87081,3.209213333333333,2.1420175,1.9885525,3.824165,2.7374166666666664,3.8714,5.0629,2.61632,2.60688,2.6228700000000003,10.723574166666667,4.706655,4.5091,4.97016,4.21952,2.8359199999999998,5.2389,3.616875,4.320105,5.458838333333334,3.90087,3.11748,2.2716175,3.293395,5.079292571428572,3.475565,16.773351845238096,1.114255,4.23464,0.8492177777777778,1.24733625,2.8708,4.577925,4.250485,4.41763,1.5984616666666664,2.332585,4.259005,1.9756066666666667,4.411055,3.190676785714286,2.5664966666666666,0.64565,2.9430899999999998,4.699675,2.3530925,2.3727575,2.1226025,19.9716775,1.414418,1.3445375,2.4859566666666666,0.2815296153846154,1.7839025,2.7427333333333332,1.9414066666666667,2.8247633333333333,2.632025,7.4225775,1.9100575,2.5814,2.209315,2.175705,1.6226200000000002,3.2425333333333337,3.144105,3.527635,3.02013,2.018315,2.577026666666667,3.2119055555555556,4.979035,0.45350416666666665,3.4910666666666668,3.0023466666666665,3.09155,2.0161925,3.6287555000000005,3.44459,1.5320366666666667,2.313973333333333,2.2212333333333336,1.46039,1.7441866666666668,3.431925,3.27813,0.7538066666666667,3.35667,4.854225,4.226215,2.5146040000000003,2.5146040000000003,2.86229,4.38586,3.211965,3.38435,2.3095625,0.8271154545454545,4.4309,3.52821,6.177,3.812585,2.302358,2.302358,1.3287275,3.484485,4.895155,4.101735,4.23802,3.0295133333333335,2.23327,4.28714,3.18543,4.1512,2.7804333333333333,2.1515,4.016260666666667,2.9889433333333333,2.647483333333333,1.8855166666666667,3.45384,2.6855,1.4875533333333333,3.72718,3.296675,4.353075,3.5719666666666665,4.96825,4.320365,6.34670025,3.95142,2.07188,4.55557,2.68715,7.170954999999999,2.4825333333333335,1.234395,4.519445,3.551966666666667,4.878215,0.5869578571428571,0.8116891666666667,3.7147,3.56654,2.062304696969697,4.315235,2.941185,2.898635,8.580018,1.910448,1.243046,3.569325,2.65883,3.52303,4.635985,6.371206666666667,3.1208816666666666,2.1325333333333334,3.0264433333333334,1.8193166666666667,3.266496666666667,8.679324039408867,0.9924404761904762,1.0202325,4.56069,0.455768,1.6546525,2.111535,2.884225,3.07655,2.870675,4.68075,2.3462225,12.99848,5.2632125,2.531775,2.531775,4.07155,0.8636116666666668,4.866666666666667,3.64285,3.949115,6.046386666666667,3.465605,4.98633,1.3739433333333333,2.757045,2.69281,2.629205,2.987055,2.669435,3.197,3.502065,3.512285,3.09598,2.73362,2.550055,4.28019,4.379225,2.9690066666666666,3.2366566666666667,4.793025833333333,4.32426,18.00383511904762,11.649218452380953,3.195187142857143,0.6759974999999999,1.4585714285714286,4.43017,3.412345,3.149165384615385,2.3836,0.8465044444444445,0.6422941666666667,0.6739214285714287,2.0557775,1.58983,5.0149099999999995,3.18782,0.7015881818181818,3.376935,2.325045,1.66365,1.7600799999999999,6.231556666666666,1.541576,4.35021,2.896465,3.0011566666666667,2.162425,2.64327,2.577663333333333,0.7551163636363636,3.2518,3.0121866666666666,3.7162919999999997,2.9419299999999997,4.736478333333333,3.757765,3.49841,2.389595,3.47534,6.13974,2.0226125,2.4315325,2.3885875,1.6034925,2.6072,2.02634,2.494775,0.913784,1.4048175,1.017465,2.969,4.32096,6.0687,5.47815,3.1703,2.54471,2.742875,3.212763333333333,7.061821666666667,1.2002166666666667,0.340374375,3.02108,2.07625,1.461704,3.476432,1.33164,1.6524306666666666,3.618306666666667,2.8265206666666667,1.2322516666666667,1.9031933333333333,4.253008333333334,3.663145,4.471305,3.91156,1.9408025,4.895405,3.867325,0.7758076923076923,4.453635,3.77529,4.338346666666666,3.3080366666666667,2.38548,1.2664360000000001,1.0667775,3.53786,2.676575,3.27203,3.87089,2.83954,2.6999333333333335,3.18059,3.49008,4.535995,2.588915,2.817375,4.232585,5.75415,0.54841375,4.5229,1.8198575,3.46668,4.139466666666666,1.49786,3.162665,2.2231225,2.127885,2.50709,2.273921666666667,1.5436833333333333,4.42073,3.61348,1.2219242857142858,6.80463,1.14677,3.566215,1.6409966666666669,4.54626,3.935305,3.0698133333333337,3.11639,4.182915,8.31223,3.029655,3.548655,3.488795,3.53542,1.6513775,7.76339,3.556605,3.930195,1.940595,4.1304,2.924225,1.0259975,1.914124,4.04599,2.185345,4.03721,4.8928925,4.08451,4.588405,2.11173,5.1972,3.912175,3.3090166666666665,2.3855766666666667,1.441288,4.117655,6.10495,4.122895,4.51991,3.132095,2.1677325,3.80023,3.451385,1.1943576923076924,4.148115,4.7569275,3.864625,2.802685,3.52304,0.4455585714285714,0.4455585714285714,4.42339,3.994635,3.76544,2.29678,3.819385,6.0718,0.844674,3.71148,4.682735,4.553225,4.813105,4.99848,1.8901875,3.21929,2.1572925,4.480135,0.68191875,4.006725,4.211955,2.599775,2.8166966666666666,4.09089,2.44175,3.243385,60.00970913852814,3.251385,2.5940833333333333,1.76021,3.228975,3.866825,0.86333375,0.96613,1.9835225,1.9835225,1.270994,3.15863,2.23145,3.7411185,7.32411,2.89475,1.2057485714285714,1.3401083333333332,2.7078100000000003,4.06982,0.8751599999999999,2.074,1.27578,1.92357,4.171465,4.07233,3.38635,20.184384543290044,3.447905,3.910825,3.34458,2.1753466666666665,3.15748,3.2033,2.511825,5.4323,1.444454,4.10212,3.286658535714286,5.918946944444445,2.1978,2.73569,1.989435,4.466295,2.33475,2.1466775,2.098986666666667,3.4655950000000004,3.411295,3.284535,3.8854,4.148455,2.581675,2.738,2.937185,3.02523,2.97546,2.22754,2.0218425,3.44959,1.2246233333333334,3.676855,4.393565,2.66805,4.58815,4.808265,5.380554999999999,1.9067766666666666,2.476445,2.803715,2.83408,4.01092,3.247565,4.5373,0.7721857142857144,3.936772,2.89804,3.85384,2.3313075,1.831774,4.05559,1.1685444444444444,2.746115,4.28528,1.147742,3.68638,3.21507,4.529755,6.14517,2.093005,2.89524,2.69127,3.8333333333333335,3.1264766666666666,2.717292,2.8463233333333338,2.516696666666667,2.41465,1.32013,2.0311075,2.0311075,1.90953,2.106133333333333,1.7648466666666665,2.5900866666666666,3.83739,5.5024,4.57467,1.72019,4.278375,4.02312,3.594385,4.206855,1.88703,1.920905,4.529749166666667,2.02479,4.428513333333333,3.68548,3.56866,2.4481066666666664,3.8620125,3.251575,3.215775,3.51113,0.14543673469387755,2.4846333333333335,7.6164,1.5023680000000001,3.436255,3.259365,1.0211257142857142,1.1922883333333334,1.8875175,3.90364,2.79866,7.032882,3.568105,3.628915,2.79784,2.54991,3.41821,3.363645,3.776715,3.47309,2.8331233333333334,5.33745,4.036145,4.14756,2.5003233333333332,2.12297,3.555745,4.515315,2.634335,2.953885,2.231855,2.549375,4.023205,3.75604,2.533305,4.491525,5.0988,2.88618,3.773235,4.09921,3.620275,4.542645,3.325755,2.73642,5.8295,4.50176,4.87821,5.0973,4.46026,5.0865375,4.274065,4.006085,1.3236700000000001,6.564,2.46843,4.432945,4.11897,4.109495,3.10681,1.9428633333333334,2.1436100000000002,2.49585,0.9914099999999999,3.2963799999999996,3.9498333333333338,3.14155,1.9074633333333333,3.7127,4.15047,2.6875,0.5601466666666667,4.381355,4.631895,5.0214,4.63183,3.76612,4.7905,4.809395,5.03275,1.3835555555555556,0.9352307692307692,2.9788200000000002,5.2089,5.75075,0.50211375,2.94382,2.5024166666666665,3.509175,4.51611,3.8839333333333332,1.9866,5.4075,3.655485,4.51813,3.164885,6.45025,4.915625,6.8436875,0.5622091666666666,4.082925,0.793534,2.46317,4.079866666666667,3.1271566666666666,1.3697033333333335,2.3061599999999998,4.141755,3.50154,4.34204,1.93487,1.9637825,2.885665,4.446395,4.168255,3.73686,1.626624,1.2023574285714287,5.7622,2.3089925,7.6473575,4.297355,3.6079,2.1665975,1.5885775,3.94001,4.424685,1.7581266666666666,2.378585,2.593675,2.4846333333333335,6.5501483333333335,3.0105116666666665,2.7920833333333337,3.8986525,3.551255,2.0115933333333333,3.03411,6.9865275,4.53563,4.9392,0.504769090909091,3.32493,3.689045,4.560965357142857,3.86766,4.23989,3.010345,2.750215,3.35526,2.94292,3.4832181666666666,2.0255199999999998,5.49011,4.8525,5.00525,3.95954,3.351445,3.2825175,2.3289575,1.4065925,0.89764,2.76567,2.600015,1.0926449999999999,2.6900099999999996,4.85056,4.68538,3.790395,4.08624,16.463876785714284,4.02442,4.53423,3.89805,0.7065225,4.95845,4.492735,3.99913,4.84889,5.33145,2.751035,3.53139,3.19779,1.497708,3.198605,4.657585,3.2488166666666665,1.4721259999999998,3.60074,4.99398,3.83872,5.05325,4.835735,5.58545,3.892845,2.7100166666666667,4.243045,4.18183,2.838005,3.05673,3.020016666666667,1.5877908333333335,4.83811,2.677057857142857,1.88924,3.88913,2.36213,4.3857,4.076368333333333,2.595775,2.68361,4.3143,3.74095,4.29487,4.521885,4.985715,4.911964,3.22004,5.49385,2.731025,3.800715,4.36317,1.56284,4.441405,1.0715166666666667,4.399335,2.92163,0.9418014285714286,3.681545,2.163045,6.369405,2.7050443333333334,2.7050443333333334,2.7050443333333334,0.6930299999999999,1.2205783333333333,1.933705,3.46292,5.82824,3.650801111111111,2.02081,2.11344,1.7524499999999998,3.781565,2.46457,0.39868384615384617,1.937855,2.225515,2.87713,1.897885,2.572895,2.420105,2.0421375,3.934915,2.95937,2.985435,2.95882,2.008735,6.45776,1.93081,4.320805,3.826725,6.35111,1.5269033333333333,3.674555,3.55336,3.781795,3.826695,2.719355,1.8433425,3.811385,5.7645745,2.122845,3.62964,3.027585,1.9648025,4.69294,4.1487,2.5245833333333336,2.061955,3.6256525,5.512305,5.94355,3.061955,2.42758,2.7189,3.0464,2.83001,4.0376,1.4135425,2.881005,4.693065,0.8880475,3.188175,3.84767,3.77293,3.29775,2.393135,3.28145,1.94111,4.517745,8.00331,4.293955,3.48583,3.26463,0.9689375,4.481775,2.21542,4.253885,5.5780075,3.752,4.259855,11.18521,4.89729,4.01935,1.4909725,0.6841541666666666,3.046065,3.9469,3.491225,3.705405,2.1398266666666665,2.4291933333333335,2.041706666666667,1.1576933333333332,1.1576933333333332,1.9632166666666666,2.35963,2.0284833333333334,2.2838533333333335,2.6186366666666667,2.5368033333333333,2.388646666666667,2.7254,1.4382933333333332,2.3620966666666665,2.092166666666667,2.0774933333333334,1.3823,2.619936666666667,0.641355,9.584043750000001,0.641355,3.2932066666666664,2.0552183333333334,1.6029466666666667,4.221005,4.342735,3.73065,3.99743,2.250723333333333,2.9403066666666664,3.283871333333334,1.9217733333333333,3.1062100000000004,2.9537133333333334,2.53785,2.6458566666666665,1.6826999999999999,5.452,6.262348190476191,3.050326666666667,3.337666666666667,3.209773333333333,2.5136966666666667,2.6279666666666666,1.0890914285714286,3.523733333333333,3.485,3.89403,6.1665,4.281565,2.8430166666666667,3.5713000000000004,2.8539133333333333,3.9550655555555556,4.32842,2.540383333333333,2.975825,3.1661533333333334,3.0347899999999997,4.763335,3.1129833333333337,3.548425,5.767268333333334,2.1654166666666668,2.3149633333333335,1.56724,1.5196933333333333,4.64335,3.412961666666667,2.2624866666666668,2.1051466666666667,1.8425866666666666,4.42437,3.709625,2.798105,3.3585666666666665,3.145723333333333,3.4123,3.4958666666666667,3.519966666666667,3.0977933333333336,0.59629,3.7238,2.50517,2.5392633333333334,3.487755,4.379675,3.924275,5.29305,2.86161,3.8019016666666667,1.0959166666666667,2.8387966666666666,2.8387966666666666,4.282035,2.669675,3.69404,4.077735,1.988745,3.28796,3.75556,1.1961814285714285,3.7882295,3.132833476190476,2.2629463333333333,0.38550300000000004,4.618635,3.008805,6.312255,2.937895,6.18895,3.36014,3.822745,3.66302,1.5761025,2.770085,3.995495,3.33315,3.31683,2.91982,5.2439025,2.0535525,0.96069,1.79744,1.5236599999999998,5.83509,2.2443433333333336,2.479013333333333,1.83024,4.275845,3.84873,4.038275,0.613075,4.102965,3.922885,2.5232466666666666,2.5818333333333334,2.7307900000000003,3.0269983333333332,3.889146666666667,1.45921,0.6482736842105263,0.7885428571428571,3.4546666666666668,3.97053,5.891408333333333,4.80773,4.33606,5.38095,1.4210285714285715,4.139466666666666,2.247243333333333,1.003095,5.2012,6.0032,2.90416,4.705625,4.02946,6.53051,3.8650333333333333,6.211641666666667,3.73612,2.428065138888889,5.81105,9.975433525641026,2.54609,0.628024,2.9656,4.149525,2.15852,6.12005,3.71859,3.81262,2.60636,2.60636,5.83075,3.352865,3.92572,5.00435,3.7832882380952384,2.324523142857143,1.10603625,4.74241,2.71795,5.293805,3.485775,4.085485,3.170915,2.2346925,4.340915,4.726315,3.447566666666667,3.871975,4.340835,27.286830000000002,1.92928,2.5458,2.33883,1.71025,2.587476666666667,0.9900399999999999,2.8353066666666664,3.0008666666666666,3.402366666666667,2.98373,0.6213207692307693,3.1694600000000004,3.682495,2.917425,3.2371,3.58949,5.7361725,4.451645,3.981565,3.76186,3.8485241666666665,3.62965,3.546333333333333,1.732665,0.9757666666666666,1.4420966666666668,2.30851,1.5024433333333331,2.9523566666666667,2.4399433333333334,2.4476533333333332,2.3141266666666667,2.756505,2.07164,1.8171533333333334,3.09639,4.304635,3.63461,4.02339,1.556788,3.2662633333333333,2.5080566666666666,3.689,2.0849933333333333,2.491075,2.394455,1.57833,4.30472,6.568476666666667,3.018855,3.549635,4.003565,2.6493,3.332291666666667,3.4070666666666667,3.34241,4.623825,0.3155518532818533,0.3155518532818533,4.910805,5.21525,3.129035,3.01853,5.36995,4.242105,0.6466753846153845,4.8593,4.42741,3.59601,6.3639,4.7759,7.29359,14.057305000000001,12.749368076923076,4.276485,4.27464,2.4776766666666665,0.583533076923077,2.4621566666666665,4.295525,1.3316366666666666,4.59771,3.4969,2.8624166666666664,2.1726,2.06412,4.92166,4.65462,8.95749511904762,4.926995,4.005595,7.370353257575758,3.40465,3.3158600000000003,1.450515,5.351553333333333,1.88242,2.42227,2.717843333333333,0.2478259375,2.972915,3.601055,4.595923333333333,0.8619199999999999,1.0387766666666667,3.916,0.587601,0.587601,2.966981666666667,3.2233933333333336,3.217503333333333,3.77158,4.2025,5.64605,3.747955,4.106765,2.892625,3.054766666666667,2.62109,0.8661833333333333,2.714036666666667,2.908955,2.8112,7.24756,2.888925,9.565850000000001,3.12015,5.84195,3.08678,2.22057,2.480515,2.6678,1.8145175,2.2804375,1.9306575,3.407455,2.4309,3.897225,2.6909,4.143026666666667,4.143026666666667,2.711164166666667,2.711164166666667,8.717195,2.4698033333333336,0.80623,2.583056666666667,2.4639866666666665,2.5049466666666667,3.897225,1.900892,1.915798,1.560284,3.845155,3.59021,1.7592175,4.491555,4.152115,5.696478333333333,6.39455,2.12174,4.26427,6.09417,3.7684,3.128915,2.08752,3.53517,3.394028484848485,4.11658,5.176986666666667,7.256004,3.3123537499999998,2.996025,1.1620516666666667,4.27445,3.7415139999999996,3.575615,3.660661666666667,4.317265,2.5024,2.49159,5.895855,2.90966,1.216996,5.53957,3.7362,2.6703666666666668,5.16385,2.6703666666666668,2.708015,3.38447,4.975225,1.0184442857142857,3.9732933333333333,4.440585,3.572155,1.2311116666666666,1.68232,3.73635,3.81998,2.469225,6.634079999999999,4.07743,3.80046,4.134785,4.3813949999999995,1.365525,3.748365,2.501195,3.58133,3.903555,3.55799,4.73656,3.367575,4.08759,4.8521,1.9416986666666665,1.8137125,3.2174533333333333,3.708066666666667,3.5555,2.7062333333333335,3.5257666666666663,3.0842266666666664,5.675,3.53584,3.509085,2.984715,1.9598533333333332,3.4540666666666664,2.03328,3.01741,3.244265,2.96683,0.68191875,2.05713,1.8178933333333334,3.456465,1.787634,3.719305,4.362985,1.168642,3.043665,4.549855,0.83559,1.35274,3.23373,3.8717,3.55885,2.01647,1.7869933333333332,3.54054,2.5338266666666667,1.6401066666666668,2.896565,1.917425,1.218542,1.3977325,6.482945,3.147185,2.331615,2.442195,2.388775,3.76398,0.80102125,0.35960285714285717,0.7742257142857143,4.868435,1.750384,4.6016,2.06495,1.7031804285714287,3.054315,1.3511345714285714,1.0219604285714285,0.674174,0.6383285714285715,2.4336925,6.43555,2.996815,3.618785,0.33672035714285714,3.418145,17.90825076190476,3.128225,7.015724027972027,1.02484375,1.02484375,1.02484375,1.02484375,5.878191666666666,4.15597,4.42766,2.2185799999999998,3.11165,4.61599,5.48645,3.932385,3.52417,4.11458,4.01073,3.905175,3.678752666666667,4.091815,4.975675,3.926945,4.65929,3.453985,4.18868,2.5690566666666665,3.694735,3.32146,3.732245,3.768475,4.182755,3.1478099999999998,2.3971325,2.46995,4.00081,1.2181335714285715,3.949975,2.48913,3.3467653333333334,4.08451,4.37236,3.068725,2.885,4.37951,2.750695,3.297045,5.09465,4.77599,3.29496,3.358085,1.718906,1.718906,1.7706775,4.61448,3.912755,5.334849999999999,5.0926,3.4772533333333335,6.44205,4.78873,2.02871,9.31907,5.47475,6.281477499999999,4.4799,2.81672,2.94184,0.26185758620689653,0.88421,3.304257333333333,3.37778,4.58373,2.911286666666667,6.0520283333333325,5.06145,0.568565,2.83879,0.47272400000000003,1.7064673809523812,3.0942,2.712935,3.69263,3.77018,3.359235,3.29835,3.1632,3.621515,3.372485,3.586485,3.59611,2.25788,1.7064673809523812,3.03394,2.17449,3.92477,2.518195,4.349055,3.56574,1.6513775,4.467495,2.758515,1.31673,4.56133,4.586285,4.237845,2.77111,2.9279666666666664,4.248835,1.8186499999999999,1.4155039999999999,2.619283333333333,2.505803333333333,2.5312233333333336,2.10859,4.78588,3.146725,4.8967875,3.6933871428571425,4.938565,3.847535,1.6797,5.1387,3.851015,5.4193,4.1517,6.90259,1.7676375,4.652205,3.593445,2.97558,1.7817975,1.7048433333333335,3.957835,4.43088,2.4274666666666667,2.7266395833333332,3.3987675,3.3987675,2.5837333333333334,3.13259,3.360485,3.904235,3.5732,0.6979507692307692,3.0727,4.36114,5.1311775,2.94566,3.11163,1.776705,2.70942,3.321585,2.219285,4.598255,3.129185,4.811525,1.9107666666666667,1.0075818181818181,6.2977,3.71487,3.28852,3.1643066666666666,1.8159079999999999,30.053422011904765,3.81152,3.42353,5.8498,4.399575,0.8607333333333332,6.8474699999999995,1.941355,5.55475,1.3760566666666667,3.909175,4.881361666666667,3.71325,3.23109,1.78969,3.4327666666666663,4.85148,2.040365,2.73687,3.536655,2.59961,2.653395,5.91365,2.26688,6.48395,1.09348625,4.27961,3.58927,3.8728,4.878065,2.95244,2.273286666666667,4.1366,4.478915,3.7538125,3.7538125,6.0617,2.1517275,4.308165,6.692703333333333,3.31121,4.09083,3.37089,4.75678,3.59969,4.24726,1.3848075,2.4256,4.19448,4.38955,5.4727,4.260565,1.86613,9.4942,2.997385,3.76468,1.7267428571428571,3.654905,2.1890133333333335,2.607206666666667,2.1079033333333332,1.2681266666666666,2.4975133333333335,0.9309428571428572,1.16538,1.16538,1.16538,1.8157766666666666,0.54974,3.94123,1.1578266666666666,2.5340666666666665,0.9222766666666667,1.8417433333333333,2.6214233333333334,1.9372633333333333,0.7910875,1.8351300000000001,1.6283933333333334,2.4245466666666666,1.6710540000000003,1.6710540000000003,1.7282166666666667,1.8424366666666667,0.789264,1.6829933333333333,1.6160366666666668,1.24424,2.66267,2.074085,5.77765,1.255115,5.52215,17.2885715,6.7018,3.50811,3.668973333333333,3.3960666666666666,2.7902799999999996,2.7050966666666665,3.039433333333333,0.7410833333333334,0.9950430000000001,0.9950430000000001,0.6554625,2.3895066666666667,3.6014,3.27228,1.501608,4.922165,3.753585,2.58778,3.615985,5.21175,3.74569,4.096235,3.5040666666666667,3.173355,3.471665,5.6196,3.0716933333333336,4.80948,0.5271790000000001,0.5271790000000001,2.352805,2.90474,4.6873,3.41825,3.931685,4.737155,7.689604,7.47238,3.49133,2.28,4.585845,3.465295,2.45593,2.37797,3.754305,1.3330033333333333,3.723275,2.399665,1.6662525,3.539066666666667,3.53486,1.9481925,5.176986666666667,1.6158575,3.4692333333333334,2.884445,1.0074257142857144,3.6209000000000002,2.7002900000000003,4.46117,1.1632866666666668,1.653135,2.17991,2.0021775,1.638845,2.3883925,1.8799425,2.0398875,4.176605,4.367725,2.495255,1.99405,1.5510233333333332,3.5691333333333333,2.0004433333333336,2.4950225,4.46544,7.2631,2.7378533333333337,3.145625,3.58531,3.461055,2.37174,5.00855,4.091435,3.125865,1.3893875,4.516685,2.307675,3.067833333333333,2.47854,3.54672,4.987545,5.83865,2.30579,2.61176,2.76625,3.2548866666666663,1.9343666666666666,1.552626,5.3308,3.3514,2.1864576363636363,3.2115766666666663,3.00587,2.4254599999999997,3.1689566666666664,3.040903333333333,3.523566666666667,5.10205,4.36476,2.910073333333333,4.83855,3.195585,2.328335,3.317635,3.83707,4.119495,6.0512630000000005,1.8509440000000001,3.89115,2.45976,3.085225,3.712845,0.5920825,2.3663,2.42986,3.188145,2.645425,2.198715,2.797585,0.6063729999999999,2.72992,4.48018,2.4225075,4.174415,2.4520133333333334,3.909695,1.8657725,4.486325,4.461645,2.06794,2.84572,6.98386,3.839755,4.25549,4.70475,7.059694318181819,4.305855,4.281815,2.12918,4.58714,2.87492,1.95298,1.94269,2.0630933333333332,1.0025242857142858,2.543163333333333,2.344533333333333,2.60791,3.384866666666667,1.765222,3.269365,1.9122666666666666,4.012755,5.0117325,1.0241875,1.8823666666666667,2.4900966666666666,2.85472,1.9577600000000002,1.1113633333333335,5.472818333333334,2.129735,2.6370033333333334,2.541706666666667,2.3657766666666666,2.63971,3.110845,2.2886366666666667,2.6595833333333334,2.173366666666667,3.97042,3.535575,3.88298,2.995556666666667,2.917873333333333,0.675919,1.7830666666666666,2.1445775,2.0372566666666665,2.5347166666666667,1.1721933333333332,2.71853,2.93994,3.62572,1.9970100000000002,3.300205,3.06203,5.0013,3.24785,0.6215733333333333,2.0917000000000003,2.71672,3.31275,0.7458063636363637,2.720613333333333,3.341158,3.4087666666666667,2.867226666666667,3.162848333333333,3.72712,3.6523333333333334,3.1039499999999998,1.931155,5.5277,4.963165,4.98303,5.464,5.609,1.7780866666666666,3.467715,3.7187333333333332,3.2838133333333333,2.95025,2.6246666666666667,3.8626666666666662,3.5261333333333336,3.01461,13.79063,4.35823,1.11831,2.69751,1.540068,3.219086666666667,3.1763166666666667,2.3427599999999997,5.658261666666666,6.4998743333333335,2.2105900000000003,0.841293,4.055685,3.4067666666666665,3.07232,4.48503,5.1987,5.6924,4.784095,3.49473,1.9090525,6.5057375,1.1620516666666667,6.2913250000000005,4.657955,2.3537133333333333,3.890115,7.007965,5.8257,2.19687,1.4602383333333335,2.1421125,7.041485,1.557625,2.911683333333333,2.3969966666666664,4.079850833333333,5.7778,4.42725,6.29655,3.46568,4.781405,3.60947,8.99459,4.65976,5.70575,2.351475,2.5249,11.207188333333333,3.338795,2.462905,2.374136666666667,1.6246,2.0936233333333334,3.5366666666666666,0.700345,1.102964,1.0702357142857142,3.255385,6.894853333333333,3.063344,1.3783033333333332,4.53051,4.12726,0.5728679999999999,4.52477,4.068375,4.78675,3.495595,3.30194,2.678596666666667,4.189285,10.06151,1.7948425,3.7645074999999997,3.662165,4.09272,3.600655,0.8492166666666666,3.6008666666666667,4.069233333333334,1.8109766666666667,2.48273,2.302756666666667,2.5333466666666666,2.192086666666667,2.172963333333333,2.24576,5.9901728571428565,5.132,3.54534,4.658468333333333,1.5713433333333333,2.34871,4.721935,4.362765,4.445055,4.24446,4.665115,4.81519,1.718906,3.73318,7.4917566666666655,1.2447683333333333,1.8157333333333332,2.440706666666667,2.4550733333333334,2.8074066666666666,4.74034225,0.7885428571428571,2.46525,3.407205,6.20485,4.53959,2.1672033333333336,2.8904433333333333,1.9177275,0.536975,2.60585,2.89876,7.6335,4.379245,4.481645,0.895622,4.7396666666666665,9.26981625,10.525341666666666,3.2106,1.21550125,3.59888,3.436525,2.5614233333333334,5.369922,4.880225,3.945405,1.9640525,3.7199000000000004,2.1764933333333336,2.56224,0.7491618181818183,0.3790673333333333,2.563115,3.363255,2.0325726666666664,3.353675,3.0119433333333334,4.036595,5.37165,1.499658,3.01791,2.2562325000000003,2.2562325000000003,2.389525,3.41917,6.71695,2.6353566666666666,2.302216666666667,3.3441333333333336,3.397766666666667,4.240505,4.432165,4.23088,4.184805,4.086125,4.128245,7.10015,7.930809999999999,2.011425,2.2537,2.9979600000000004,0.9088599999999999,0.6965533333333332,4.47909,2.36467,5.3107,2.9332700000000003,3.11265,1.82201,1.5164375,3.949195,4.159945,4.327425,2.0199666666666665,1.4347433333333333,2.6766466666666666,1.9366033333333332,2.49992,1.120977142857143,1.120977142857143,2.68472,4.85883,2.938225,3.247855,3.407735,2.391915,20.142014272727273,3.871095,5.3630325,4.161085,4.141745,3.868915,3.50471,5.57285,6.0990575,0.7271533333333333,0.7271533333333333,0.7271533333333333,2.72081,1.722414285714286,3.3356666666666666,4.090885,3.947815,3.302315,4.035365,4.59187,0.845891111111111,1.9824233333333332,2.224153333333333,5.6753445,3.0247045,3.996712,4.90991,1.49786,2.0330333333333335,2.3206666666666664,0.54334,0.7877799999999999,2.012555,2.163895,3.073705,12.868103333333334,2.5548233333333332,5.3486,0.7336857142857143,9.14635,5.5393,3.78648,4.2126,2.624375,5.45255,2.624375,2.85935,3.30217,3.80309,3.478085,3.952845,4.27234,3.39626,6.06775,6.491334,1.9260733333333333,2.098278,2.562215,26.509136900900902,1.493418,6.10225,3.5916959999999998,3.973585,4.13311,4.413505,2.6957,2.38111,2.37248,6.7878,7.1263,4.66126,4.66188,3.99508,1.8094475,1.93431,4.05588,0.22060846153846156,0.22060846153846156,0.22060846153846156,0.22060846153846156,4.08337,3.17309,1.0312133333333333,1.6855733333333334,1.151388888888889,4.4534,2.4524266666666668,2.30489,7.110521666666667,3.18243,0.18126517241379309,20.58349133333333,4.555054999999999,1.753028,1.3330760714285714,2.15624,2.02766,2.25269,4.66989,3.616545,3.4668,4.359645,2.039216666666667,7.3005775,2.77922,2.06276,4.104505,5.8132,8.690813333333333,4.241625,0.29762439024390247,3.608625,3.797695,2.8146299999999997,2.0196025,2.9313000000000002,1.6748666666666667,1.6748666666666667,4.10277,5.772325,11.216176666666666,9.095075000000001,0.6220833333333333,2.4752400000000003,3.889065,3.08114,4.447985,3.427555,1.27029,1.27029,3.29568,3.926095,2.6172866666666668,3.355065,4.37352,5.2869,6.811785,2.25196,4.74326,4.07109,2.624515,3.0855266666666665,3.0114666666666667,4.985185,4.138475,5.49645,4.14196,4.373,3.687055,4.271565,4.132115,5.2438,2.53013,3.1432533333333335,1.058606,4.349955,3.97117,3.802975,1.6394220000000002,1.8775433333333333,3.5423333333333336,2.8312166666666667,2.074073333333333,3.948901666666667,1.5825250000000002,1.91683,1.82287,1.6909,2.2063633333333335,1.5961333333333334,4.0851999999999995,3.092416666666667,4.1022,3.37406,2.2116666666666664,2.69444,1.9784066666666666,4.60709,1.9096466666666665,37.67168241666667,2.2872254545454545,2.2872254545454545,2.476836666666667,2.46841,2.0361866666666666,1.8654933333333332,2.87523,1.75649,0.7956615384615385,5.022,6.581245,4.04501,4.016515,5.51675,1.9199166666666667,4.29655,1.782412,4.915675,5.0402,5.6776,3.96819,1.732665,3.802635,3.757465,4.488535,4.633835,5.31885,3.860285,3.3541666666666665,2.6939266666666666,2.062185,1.944625,4.30602,2.402163333333333,3.7121325,3.7121325,2.210246666666667,1.5489766666666667,2.0857,2.532696666666667,2.3454166666666665,5.38485,2.6390033333333336,1.1915850000000001,1.1915850000000001,2.14327,2.012236666666667,2.6090566666666666,2.548756666666667,2.51642,2.3495466666666665,2.1882733333333335,2.23719325,3.040408964285714,1.5657969642857141,0.8032157142857143,62.00542546130952,2.3997159999999997,3.549,2.455982,0.9061600000000001,3.863062,1.549568,1.549568,3.2536199999999997,3.1840200000000003,0.76258125,3.0421333333333336,5.44233,3.299326666666667,2.4683466666666667,2.8303666666666665,2.0890166666666667,2.993640666666667,0.295373125,3.5409666666666664,0.8782439999999999,2.5370733333333333,1.105864,1.105864,3.31021,1.797882,2.7931233333333334,1.5305453333333334,3.4185666666666665,1.5305453333333334,2.1517433333333336,2.7683033333333333,3.0071166666666667,1.347384,1.347384,3.0747966666666664,1.49073,3.09733,2.2201633333333333,4.30153,3.550795,12.023312916666665,7.05147,3.07798,2.480775,3.897525,5.1451,5.4226,2.720675833333333,3.79874,3.637145,2.3923533333333333,4.1203,3.2474266666666662,2.7828366666666664,4.682335,2.200536666666667,1.0619871428571428,3.71333375,2.89859,2.917455,0.7668671428571429,2.605665,3.54173,4.056505,4.2243,6.4917,1.9756066666666667,1.9144100000000002,4.33757,4.43412,2.3468325,2.471988333333333,1.9307433333333333,2.336708,0.932348,4.96974,4.325085,3.274425,3.431335,2.9923266666666666,4.97217,5.2837,2.7888466666666667,1.7683933333333333,0.5239086666666667,14.457348166666668,0.5198036363636364,0.5198036363636364,0.5198036363636364,3.0055066666666668,3.897766666666667,0.5198036363636364,6.845655,4.28634,0.7294940000000001,0.7294940000000001,3.265356666666667,3.205175,3.193955,4.43157,4.94101,4.324261,2.2537225,4.6879306666666665,3.28112,3.457022142857143,4.91944,2.939924,2.34457,2.3133275,2.67335,1.73292,3.3206391666666666,2.9562399999999998,2.271675,2.0440675,1.8944975,1.7505666666666666,1.60196,2.648675,1.0596933333333334,2.464735,0.6064242857142857,5.633,1.749475,0.64857,2.2019,7.982171666666667,2.729795,2.058777,3.3081300000000002,7.16773,2.593555,4.345815,2.953335,5.85245,3.453245,3.78917,3.963445,4.0192,3.1078766666666664,4.302515,1.09903,4.173885,2.47314,2.5457033333333334,2.55379,2.240095,2.1546399999999997,1.24395125,5.5358,0.9252545454545454,4.865225,5.35975,5.18945,5.0947,3.5925333333333334,2.3843099999999997,2.0456399999999997,2.9072266666666664,2.9769233333333336,2.42704,3.932166666666667,2.72275,5.11665,1.8822500000000002,39.696490952380955,4.61165,2.3862433333333333,2.37189,2.9388566666666667,1.6502966666666667,5.937905,3.771955,2.3965633333333334,3.1482166666666664,2.3362333333333334,1.674315,5.0955,0.7832785714285714,4.347496428571429,1.3116771428571428,3.369566666666667,3.3879,2.7086166666666665,1.4099375,4.4632613333333335,1.67805,1.67805,2.451416666666667,2.814861666666667,3.4168000000000003,3.4271,1.46993,2.84685,2.7111866666666664,6.241999166666666,2.8474799999999996,4.005043333333333,1.4707433333333333,1.47387,2.988073333333333,1.005256,5.341335000000001,3.30524,2.7905033333333336,3.6826333333333334,2.7678999999999996,2.67395,3.287876666666667,1.7071666666666667,2.388775,2.4852833333333333,3.4011666666666667,2.4258533333333334,3.6698,1.9073766666666667,0.609064,9.758896282051282,2.7447133333333333,5.4143,4.85675,2.79839,3.033493333333333,1.3446325,2.255176666666667,2.285305,1.3446325,4.053345,0.442394375,0.442394375,1.1320175,1.1320175,1.1782375,1.1782375,2.62887,2.908425,2.36522,1.522565,1.9252,3.515725,2.846165,4.590485,5.3513,1.9349779999999999,4.36854,2.56331,4.606275213675214,1.591485,1.591485,2.137,1.6742819999999998,3.7234066666666665,2.0321775,4.3539,1.5984616666666664,2.585675,0.543146923076923,1.1153842857142857,2.14856,2.13809,1.9844675,1.3794775,4.17524,4.176355,2.118186666666667,2.49613,1.4695099999999999,0.7031058333333333,2.1914000000000002,3.38664,2.730506666666667,4.39184,5.0994,4.722,3.76913,6.634895,1.5406283333333333,5.90859,1.91853,4.41601,4.711505,5.679642,3.1945866666666665,2.33703,1.8194975,1.9544139999999999,1.9544139999999999,2.37545,2.37545,4.297685,5.68405,0.9352539999999999,3.94777,3.38524,3.50116,2.5616733333333332,1.3991525,2.782296666666667,4.010535,4.04174,1.7514759999999998,6.73265,5.19275,1.9181333333333335,1.3292625,3.916745,4.023499999999999,3.65151,3.38624,3.785795,0.6398821428571428,3.7895,3.4102333333333337,2.62977,2.85046,2.1418566666666665,3.657166666666667,1.4966285714285714,1.4966285714285714,1.4966285714285714,3.0656233333333334,2.9550733333333334,3.0815566666666663,3.3253931071428573,2.33866,1.2258442857142857,3.1761266666666668,3.2226666666666666,1.412354285714286,2.69308,2.69019,1.1971942857142857,2.6373433333333334,2.8197233333333336,2.8850833333333337,2.6419799999999998,2.5426166666666665,1.919585,3.1005233333333333,4.6181746666666665,4.14782,0.9816,1.435336,0.558566,3.5071,8.79702,2.999413333333333,3.42085,3.0297533333333333,4.3420974999999995,1.9159575,7.512325,6.487396666666667,2.6596466666666667,2.20891,3.739315,4.886215,1.5773160000000002,1.1987539999999999,1.40705,2.24151,10.716533333333334,2.6716800000000003,3.178186666666667,2.949109,3.77992,2.11646,1.13886375,5.5592,1.1070366666666667,3.2655453846153844,4.4981,3.31793,3.2577833333333337,3.03377,4.913905,1.1768783333333335,2.12309,1.976483,1.976483,3.842095,5.7781,8.9195675,4.38405,3.665195,4.81412,1.760555,2.3156458333333334,4.602365,3.668435,3.748445,1.5780566666666667,2.933476666666667,3.42547,3.7425,2.3973725,4.06837,3.810685,3.73584,4.052815,3.719065,3.935715,5.26145,3.30903,2.456986666666667,4.40243,2.84175,3.826805,2.01727,2.5047,2.592355,5.5327,2.55491,3.1008718181818185,1.6414475,2.50453,3.188265,2.147455,2.1084125,0.8262883333333333,0.8262883333333333,1.743855,3.6821606060606062,4.27933,2.79548,4.30966,3.0344083333333334,2.4903500000000003,0.97234125,3.108415,1.58968,4.06979,4.06994,0.8996183333333334,1.844615,3.95759,2.9553675000000004,1.6167275,1.61442,5.299382857142857,1.056805,2.749125,3.16634,2.78828,2.509295,2.987596,2.100925,1.05424,2.861175,2.99148,3.434195,1.4674399999999999,1.62381,2.0147,4.432875,2.439985,4.423755,4.496055,4.42044,5.9313,5.2326,4.1097,5.95346,4.018944285714285,0.7948427272727273,2.862375,3.953825,3.76988,0.45894545454545455,0.841798,3.03429,4.00384,4.72196,4.262125,3.144802142857143,2.688295,4.60343,1.6944780000000002,2.58905,4.365855,4.1277425,3.32027,2.89386,3.76651,4.7043,2.58967,5.095765,0.9015470000000001,3.20659,2.82924,4.33895,4.2462,4.384255,2.16824,2.54462,3.00193,1.9061966666666665,5.04935,3.43181,1.2731571428571429,2.65635,3.8009174999999997,1.426516,5.713825,1.776964,2.5193600000000003,13.437881855375618,2.862413333333333,1.5658033333333332,1.6138450000000002,2.18123,5.580348333333333,1.626624,4.162935,0.6579569230769231,3.3722,3.70615,7.4545325,2.6191833333333334,2.860386666666667,2.860386666666667,4.59637,4.384155,3.4269,3.17987,4.72344,4.99856,2.48436,3.1403766666666666,4.623605,1.25121,2.5745833333333334,4.51191,3.903715,2.80011,2.256813333333333,3.63269,3.333115,6.037558333333333,6.1472925,0.69684,4.05362,3.135655,3.7691666666666666,4.1471,3.85449,3.759655,1.388334,4.86549,2.55325,2.72128,4.195695,4.37759,4.396395,0.9095774285714285,2.69243,8.901661666666666,1.5415733333333332,2.119494025974026,2.3000275,3.83206,3.43923,3.19524,0.6302663636363636,2.3349075,1.7040075,2.2104575,4.34481,5.171828666666666,2.738722,8.834235,2.466536666666667,2.700006666666667,1.05122,4.38306,5.13285,2.222355,5.458838333333334,2.653265,3.271605,5.31975,4.35994,4.787245,2.25281,1.3088375,1.3088375,2.958785,3.270845,5.040655833333333,1.4056325,6.224615,1.6061633333333332,3.576125,1.31566,8.704904333333333,4.489945,2.799455,4.086475,3.68543,3.687115,1.1380983333333334,1.9764325,3.4497666666666666,3.0027566666666665,3.32725,3.6390999999999996,3.87454,2.87181,3.09733,3.2369,1.53543,2.48231,1.9560866666666668,2.8477599999999996,1.8562266666666665,5.102670833333333,3.2514833333333333,1.8130566666666665,2.778113333333333,3.30031,3.13268,6.37645,5.93945,2.92204,3.6203,2.87984,2.906725,2.96589,1.3159333333333334,1.017314,6.214045,2.97901,5.7781,4.538585,6.49085,2.910155,2.791236666666667,6.4863,2.691385,0.42760444444444445,5.3806,2.859415,3.71316,3.3575,1.3752285714285715,4.260105,1.019558,4.49534,0.9383375,1.3374266666666665,2.8872666666666666,2.333693333333333,2.7732642857142857,3.50481,4.55959,5.900094166666666,5.900094166666666,4.9024375,4.9024375,4.596255,2.9400866666666663,4.43491,1.0107625,5.78315,3.191765,3.6101666666666667,3.850575,3.80179,4.932225,1.860185,4.813385,3.1335319999999998,2.936475,4.09529,2.569605,4.685165,5.11365,3.643885,3.536425,5.1129,3.527385,5.89195,2.93849,2.5601833333333333,6.0976,3.929365,2.856946666666667,6.047688333333333,1.6160933333333334,1.86452,4.688935,4.307755,5.1506,4.073115,1.992781,1.992781,12.93721871031746,12.6049,4.60976,3.242945,2.985492307692308,4.613165,4.56123,2.6318566666666667,3.20664,3.101755,4.024466666666666,3.6291666666666664,4.879095,2.102035,8.24184,2.621785,1.9070825,5.738,2.434885,4.964875,4.36274,4.729025,0.7269844444444444,3.286055,3.58293,0.924432,2.879835,4.181394166666667,1.458464,1.9142166666666667,2.8089099999999996,2.7468533333333336,2.304323333333333,3.1264133333333333,2.374143333333333,0.4064514285714286,2.5024533333333334,2.849133333333333,2.768356666666667,3.16986,1.435124,2.9062699999999997,6.964975,4.539215,2.3707933333333333,2.0409966666666666,2.56453,3.59809,2.396365,3.612172,18.1052325,5.2908,3.3292515,4.596695,3.781415,5.379066666666667,1.4468466666666666,5.92875,1.612025,4.73036,4.44616,5.2806,4.71593,0.993456052631579,6.6941,2.472755,4.690395,3.02931,4.31308,3.608735,2.9337,2.18883,1.553524,1.9540125,4.282115,4.695325,2.127615,1.75276,2.9766933333333334,3.9442716666666664,2.9442633333333332,6.271,2.005165,3.53958,4.52052,4.58978,4.07943,2.746465,3.96026,4.784945,3.88657,2.66013,2.66013,5.585581666666666,1.9168833333333335,2.6016933333333334,3.76321,1.691246,7.30322,3.35752,4.409063333333334,4.292566666666667,4.09198,1.795356,4.4241,5.415,4.031115,2.1082975,3.493665,3.377125,1.1747775,1.29169,1.2887633333333333,0.7196583333333333,1.6666366666666665,0.961755,4.627425,0.91544,2.4373566666666666,1.71835,1.751655,1.070695,1.9254675,2.28257,1.59714,2.9263733333333337,2.6437733333333333,4.694205,1.4723916666666668,2.628825,3.165623333333333,2.9139166666666667,2.43335,4.382640833333333,4.532515,4.960913333333333,19.551849416666666,2.567413333333333,2.2143475,0.6753976923076923,0.629476,4.256888333333333,2.00008,3.999915,4.872715,6.709112666666667,3.6367,3.484515,4.06694,3.186973333333333,3.193286666666667,3.2120766666666665,4.061633333333334,3.1453900000000004,6.59215,3.531015,0.914837,1.11966875,5.1338,2.9804600000000003,2.54025,2.09776,2.163046666666667,5.49745,4.9471,2.27053,2.314503333333333,3.33209,4.856315,8.545613333333334,4.992236666666667,4.15174,3.97005,5.16445,4.593635,4.160715,4.77885,3.846005,5.20185,2.155615,5.56765,1.5822,5.0386,0.73128,4.973105,5.39475,6.0388,6.1345,4.594035,5.78025,5.71545,6.3175975,1.9313,1.5637285714285714,5.5334,3.70851,5.756074999999999,4.992215,5.47862,5.19425,6.18105,1.3064814285714286,4.38742,5.3344,4.148666666666666,4.783195,5.39245,2.55125,3.908445,3.147745,4.490775,0.978475,1.5549483333333332,1.335518,4.83683,4.058745,3.25485,2.21932,2.91743,1.6060066666666666,2.1627966666666665,0.40139416666666666,3.5369333333333333,1.59195,2.1476916666666668,2.8601799999999997,2.3748833333333335,3.1283066666666666,2.6035,2.4541625,10.189544,3.8760999999999997,1.7699741025641025,3.58307,0.89195,4.5355675,1.18829,1.7484475,1.9722525,1.060625,5.726122,1.1239611111111112,1.1239611111111112,1.1239611111111112,2.901816666666667,1.944594,4.97811,3.08405,1.39892,1.5496425,2.2707175,1.37465,1.992086,5.2325091666666665,0.7930699999999999,4.48586,4.12652,3.0913500000000003,0.9923114285714286,2.1528685,1.789725,1.789725,1.472605,3.651535,4.669865,4.97052,5.57335,3.918035,5.1488,2.65629,1.946105,2.870725,5.08395,3.153735,3.96426,1.00265625,3.9179564583333333,5.43455,1.8763175,3.54186,3.002553333333333,4.76312,4.785165,2.4941,7.042,6.33675,3.937395,4.539295,4.14966,3.210525,7.891,3.97872,5.407875,3.487755,2.3923433333333333,5.1316,2.650116666666667,5.6765,4.549565,2.648746666666667,3.19183,3.781235,1.37667,10.50255,4.012115,3.068965,15.156452202380953,4.17409,1.7597466666666666,2.7264266666666668,2.08928,2.68602,3.87125,2.6501906944444444,2.723875,2.89501,3.056185,4.100275,6.60882,1.2886966666666666,1.943025,4.158415,4.51875,4.80518,2.300045,0.5792373333333334,4.26711,4.28282,2.0006775,1.3344566666666668,4.69391,4.474795,0.9076755555555555,3.74132,12.255314166666667,1.2984787142857144,0.4089357142857143,3.4610333333333334,4.49654,1.043668888888889,3.98964,4.0546,6.289945,1.248195,3.368925,3.96211,3.27167,4.329265,4.406475,4.475005,8.0074,3.228215,4.00474,5.63385,16.27412125,3.5261975,2.819525,1.2001225,1.92788,1.3592225,2.367185,1.362005,1.98952,1.67639,2.02602,2.43583,2.35669,2.155405,5.4917,4.30849,5.60285,3.254285,5.801988333333333,2.836123333333333,4.999685,3.499233333333333,1.2766875,3.78411,2.0324925,2.715640666666667,4.724205,4.774445,4.882015,4.33548,3.3434666666666666,3.663933333333333,2.452906666666667,3.266445,3.67458,2.36535,1.941925,3.4850999999999996,4.4677,3.576395,2.39437,12.4473,0.6973133333333333,2.771175,4.786285,2.449207,1.050214,2.761095,7.280514999999999,7.0049416666666655,4.47345,3.624675,4.0086,2.0043625,2.32721,2.7613786666666664,1.9729666666666665,3.9270300000000002,5.09765,4.274025,0.444432,6.26385,3.3735999999999997,3.3022899999999997,3.6487,6.0921,8.6592055,4.4233905,1.02656,2.177225,2.488185,3.75423,2.5574,4.34959,4.5259,3.5065666666666666,2.744923333333333,3.95795,3.99668,3.73935,4.300666666666666,1.85958,2.989025,5.0001,5.473,3.2678766666666665,2.0122775,2.25315,29.615591782051283,1.490165,1.490165,2.34659,5.008272666666667,3.754505,4.533215,3.089405,2.86523,4.51363,3.0831166666666667,4.179395,3.0831166666666667,3.41912,1.8918333333333335,1.58627,5.9709,2.73855,4.597395,3.012735,2.58431,6.0907583333333335,1.9069833333333335,4.66928,5.21555,3.481185,3.440305,4.76401,1.9961559999999998,4.844675,3.3591225,7.445891666666666,5.20233,2.6993,3.68815,4.96063,2.12035,2.470396666666667,3.4203666666666668,0.4908578571428572,3.1094166666666667,9.856156666666667,4.188135,3.66088,4.913115,3.2539966666666666,3.1554,1.3325542857142858,4.047645,5.44495,3.316955,2.25618,4.39818,3.6993,4.290855,4.31067,2.779875,2.779875,4.18582,2.930485,2.5363984090909093,2.06329,4.877205,4.061295,1.0152628571428572,3.75698,4.91911,2.7600366666666667,6.8078575,7.64707,1.49581,4.26588,4.7546,6.800871000000001,0.6703129999999999,7.677403333333333,3.3511016666666666,0.6131754545454545,5.1348,5.3151,4.780685,4.302065,4.770135,4.282655,4.922235,3.88136,3.85096,4.46483,5.07605,4.65263,4.570095,3.855665,2.97426,4.103565,3.137265,0.9428129999999999,4.699735,2.50077,1.91821,4.440785,4.37675,5.8617,1.0536542857142857,4.898595,2.889575,2.6318733333333335,1.5029575,1.27807,11.532555833333333,2.3587599999999997,2.96819,1.80861,3.6618190476190478,5.20052,6.184493333333333,2.65989,1.926,2.10956,2.10956,2.10956,1.4094033333333333,3.864335,4.01812,3.20331,4.561745,8.136755,3.805925,1.204542,2.35341,3.049355,2.2559,1.736926,3.864845,3.0773,1.5220933333333333,3.07001,4.994722142857142,5.4246225,3.875265,4.149925,3.06838,5.0409,4.626315,5.619129999999999,1.90783,1.90783,4.050115,3.817065,2.7548893333333333,2.7548893333333333,3.965555,1.185487142857143,4.884715,3.28483,4.160785,3.672225,3.951135,3.28438,1.0307585714285714,4.36596,4.96044,4.27958,4.74717,4.823965,5.0222,4.35203,1.8830625,1.460135,3.304535,3.79864,3.37228,4.429175,2.06523,2.9756725,5.36635,2.80486,4.726735,7.269635,2.32547125,2.9073333333333333,4.229230476190477,5.152583333333332,1.4797775,2.172832380952381,1.0905366666666667,2.172832380952381,1.8043966666666666,1.8043966666666666,1.515836,4.936045,3.145775,3.73522,2.33489,3.87487,1.555595,5.4642,2.944915,1.722195,2.9949433333333335,3.77767,3.92158,6.848522,4.60457,1.266698,0.8796633333333334,3.557935,7.375023333333333,2.39419,3.571305,3.886795,3.886795,2.37504,3.395145,2.97418,1.4263612987012988,3.02928,3.332,2.754385,4.19509,3.8518925,1.5976575,3.412755,4.48237,4.86131,5.02895,4.392445,1.752075,2.143155,1.3762166666666669,2.2135475,3.316035,1.84918,4.32672,3.1973933333333338,3.50252,4.02852,5.2303,3.195315,0.984332,1.89562,1.45729,1.1590333333333334,5.08735,3.987465,1.058606,0.30066608695652175,0.30066608695652175,0.30066608695652175,3.54884,5.614836666666667,4.33709,5.25265,5.00445,5.3086,4.43114,4.478925,2.89073,3.38224,1.5927775,4.685675,4.026555,3.878645,4.226425,4.27173,0.7056218181818182,0.7056218181818182,0.7056218181818182,0.7056218181818182,1.0445980000000001,1.0445980000000001,3.913465,3.83826,3.46416,2.87526,2.680845,5.8547,4.927495,5.6527,4.24153,3.0054866666666666,2.5308366666666666,10.0293,1.522908,1.522908,4.09208,5.2064,3.3998333333333335,0.442394375,0.442394375,0.442394375,0.442394375,0.442394375,0.442394375,4.6688350000000005,5.21045,3.603845,4.388925,3.1259249999999996,3.1259249999999996,2.88129,3.1817686666666667,2.41298,2.6803,3.28583,6.868038,1.416846,4.55679,3.488665,3.86146,8.876226666666666,2.4457066666666667,2.517425,0.9654557142857143,2.15742,5.0875,3.0124,0.88481375,2.7902566666666666,3.957375,5.5266,2.67035,4.6143559722222225,0.8372655555555555,1.67481,4.78842,4.732025,2.8645015000000003,2.5066133333333336,2.1024566666666664,1.3372549999999999,6.729001666666666,3.266993333333333,1.95695,2.972655,2.5720560000000003,3.64095,3.938205,2.6896,3.07414,5.77135,1.4352766666666668,4.431955,5.3548,3.40707,4.039835,1.9886433333333333,3.04305,3.751365,3.632745,2.82958,4.878315,4.62237,2.7208133333333335,1.93500875,2.841153333333333,2.87894,2.864903333333333,0.8047636363636363,2.1546375,8.2071775,0.4652625,3.010733333333333,1.6758433333333331,2.55208,3.2058133333333334,2.7670166666666667,1.2786777777777778,1.691226,2.72898,2.17969,3.678655,2.0061,2.7571366666666663,1.4158166666666665,3.236128,2.00029,1.1563957142857144,2.770186666666667,2.0375125,2.3822933333333336,2.666866666666667,3.006883333333333,3.1300133333333338,3.4108666666666667,3.062203333333333,2.853896666666667,2.990266666666667,2.6551266666666664,2.6009,1.7167333333333332,2.346503333333333,2.5702366666666667,1.8352199999999999,3.1096866666666667,3.956482380952381,2.9627,2.44033,2.8646366666666663,3.6146333333333334,4.6221733333333335,2.9465466666666664,1.6941171428571429,1.6941171428571429,2.3270125,1.152485,2.39391,3.3113099999999998,4.504035,2.676025,1.9665525,2.0832375,2.0424275,3.74458,3.25633,3.76181,3.43121,1.8083875,2.12627,3.901055,1.153346,1.153346,2.05731,0.5860976923076924,2.3503588461538465,1.5965225,1.5965225,2.7098999999999998,2.4395266666666666,3.2557766666666663,2.6436733333333335,2.024685,5.534173333333333,3.840265,3.840265,3.637945,3.10348,2.3095,3.03506,2.44426,2.911495,5.5276274999999995,0.49922666666666665,0.6824709999999999,4.11821,2.211065,2.981275,6.2018450000000005,3.550385,1.632342,5.054596666666667,4.657595,4.07118,4.27729,5.2851,4.811445,13.6966435,3.547655,1.6575366666666669,2.839795,3.96013,4.961905,2.911045,3.885685,4.137335,3.61619,4.89372,2.836603333333333,2.846635,2.6546,2.39709,2.39709,3.85564,2.89574,3.333985,3.2764,2.447335,2.51617,2.23135,1.8940675,1.9501225,2.02562,1.72751,3.3259464999999997,3.2533,2.554955,7.18324,3.06168,2.2911033333333335,2.0691466666666667,3.62178,3.94472,3.6197,3.047987083333333,3.467085,3.36411,4.19237,3.6705,3.818165,3.87756,3.2201750000000002,3.50317,0.6626133333333334,0.6626133333333334,0.6626133333333334,3.45955,2.36564,5.756,2.44961,3.63446,7.005201666666666,2.817536666666667,0.3566723076923077,5.37595,0.770985,4.337871428571429,1.97903,3.75699,1.812905,3.90703,5.438531666666667,4.285725,4.137575,2.7600233333333333,2.7075866666666664,1.5119933333333335,2.672556666666667,0.41587052631578947,0.5379623529411764,2.64519,1.56384,1.8168575,3.724985,3.076715,4.776315,2.7140033333333338,3.0425750000000003,3.59085,5.78211,1.7943425,0.9520142857142858,2.425555,3.701048,1.22419525974026,4.765895,3.93031,3.6473,2.70114,4.203375,2.57002,2.47366,2.4499866666666668,2.33094,2.3321666666666667,2.1558525,3.09965,2.3969133333333335,5.455458,2.388255,2.0118466666666666,2.12678,4.9477546666666665,3.323696,3.323696,2.5137033333333334,3.93026,2.2930975,3.377945,3.02158,0.5737279999999999,4.20208,1.8210975,11.825527777777777,6.97818,2.96148,3.154665,3.33802,5.42376,3.02521,3.501275,0.29222266666666663,1.911275,3.2473166666666664,0.8097025000000001,3.86894,1.3309557142857142,4.842225,3.3498,2.93071,3.93752,3.433465,2.243,4.62466,3.74507,3.695995,7.12043,3.781485,2.7584966666666664,3.0449566666666663,1.573826,1.953695,4.09176,3.733195,3.7574475,2.390215,3.408615,1.367476,3.161815,3.20473,3.67703,10.377238333333333,3.661415,5.454585,3.854405,4.30953,1.0077144444444446,4.93263,4.77841,2.5759166666666666,2.6320200000000002,2.829546666666667,3.6554,2.4066933333333336,1.7390966666666667,2.0699166666666664,3.78695,1.6177499999999998,2.8194700000000004,5.121166666666667,2.6082433333333332,1.289580357142857,1.289580357142857,3.568,3.0241585000000004,3.0241585000000004,2.8520366666666668,2.8023933333333333,3.403869743589744,3.8326666666666664,3.4247666666666667,2.6417733333333335,2.20467,2.129373333333333,3.0969433333333334,2.2427575,2.45346,1.638438,5.756303,8.810826500000001,0.5446476923076923,0.5446476923076923,0.5446476923076923,0.641749965034965,0.641749965034965,0.5446476923076923,2.9832,2.9721666666666664,4.138181666666666,1.3679016666666666,1.65746,3.2885679999999997,2.5025233333333334,3.0462066666666665,2.25432,2.882896666666667,3.5002,6.736056666666666,3.166463333333333,2.5470466666666667,2.906973333333333,4.88646,2.28017,3.4088,5.79199,2.3703766666666666,3.385066666666667,1.3830433333333334,1.3830433333333334,2.8380500000000004,0.525728947368421,2.2645433333333336,2.6724,2.95433,3.2077000000000004,2.2460633333333333,1.4306733333333332,2.5959033333333332,2.797,2.4289866666666664,4.17055,2.4625296666666667,3.450535,2.59753,2.993025,0.48316499999999996,7.0818,2.915134,2.915134,7.706063333333334,1.7331633333333334,1.7762366666666667,3.0126666666666666,4.23134,2.3812,1.8786100000000001,2.6151466666666665,1.422745,3.4450333333333334,1.8348366666666667,2.9859095,1.4121825,0.27092363636363637,0.27092363636363637,4.816425,3.967825,3.13814,2.7856133333333335,2.78786,3.20774,1.3516733333333333,5.6142,3.601625,3.05345,1.8241675,1.21803,2.31404,3.0126666666666666,2.77523,2.01019,6.052475,3.748715,4.245475,3.907825,2.20835,0.6640716666666667,6.648065,2.0670175,1.5505275,3.463975,4.21471,2.283245,1.7646333333333333,4.539855,4.03475,3.2977066666666666,3.0730633333333333,4.06556,4.230985,3.4911,2.520328,2.520328,3.81171,4.69736,5.35765,6.37077,2.6010966666666664,3.942825,1.4303428571428571,2.4603625,5.406077333333333,3.678735,1.8958439999999999,5.13175,3.5939224999999997,3.599855,2.18923,4.19208,4.71678,4.70061,4.55197,2.435093333333333,2.43418,3.5629666666666666,2.0894166666666667,2.4681475,2.63707,2.4916666666666667,0.715026,2.66101,2.83382,1.8825876666666668,4.60727,4.57467,4.783145,3.610535,3.462735,4.909845000000001,11.880665,4.79792,3.655185,4.31324,4.023375,4.510435,2.89725,3.042556,3.5126333333333335,1.2278275,2.810165,3.024025,4.623345,5.3198,4.364345,3.4549333333333334,3.148233333333333,2.3227166666666665,4.2962,3.6892424999999998,3.6284666666666667,3.6892424999999998,2.18607675,2.2846800000000003,2.3585016666666667,2.0936175,2.60868,1.84683,0.8283,1.3365566666666666,1.9193466666666668,1.9108666666666665,1.7185966666666666,1.33283,1.7253266666666667,2.7335999999999996,1.51584,3.26637,1.44078,1.63458,2.683135,3.900866666666667,2.5345299999999997,2.20362,2.3039533333333333,3.264185,2.211785,2.950476666666667,3.2205433333333335,2.2850766666666664,3.1108533333333335,3.1654575,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,5.0727,3.09547,1.0004314285714286,3.127103333333333,2.5318166666666664,2.86533,3.188485,3.1729866666666666,4.572335,3.3789119999999997,1.505014,3.08825,1.7859333333333334,0.96978625,0.9400890000000001,1.6235833333333334,0.8978916666666666,0.7980616666666666,1.346716,3.17979,1.483204,1.5510533333333332,1.8975544444444443,2.1506066666666666,1.3766,1.222475,1.5374283333333334,0.9168866666666666,1.260365,0.7949350000000001,0.845724,3.159635,3.61244,4.27596,4.45534,4.01458,3.0670699999999997,4.527075,3.5161,1.9866,3.551585,2.051,3.40848,2.1378133333333333,0.8065045454545454,4.265575,5.0964,2.028653333333333,1.32423,2.965345,3.42063,3.651535,3.0048733333333337,2.599825,0.8744025,2.2396575,4.9684,3.750205,2.48208,1.522695,3.76808,1.86185,0.6051818181818182,4.39034,4.35163,4.125185,2.362005,1.414452,3.385805,4.47486,2.6051066666666665,2.5675433333333335,2.506603333333333,2.6993899999999997,2.781893333333333,2.7306566666666665,3.0747366666666665,1.2672875,2.68065,2.524286666666667,5.23725,4.294175,3.66462,4.55231,16.05086416161616,4.416535,4.554417333333333,3.01683,4.14498,4.938045,1.559466,1.88945,2.31656,5.5363050000000005,3.417645,3.261735,6.50915,2.31656,3.936215,2.073265,1.9508833333333333,2.86369,2.6550766666666665,1.1745616666666667,4.107955,3.751405,2.737855,4.18182,2.48151,3.036766666666667,3.62141,3.65068,4.351525,3.52366,2.82709,3.649765,2.56449,2.500106666666667,1.17863,1.17863,3.271183333333333,2.4217066666666667,0.3728535714285714,4.7229589999999995,0.9497479999999999,2.715375,3.568305,0.5659375,4.609965,7.822235000000001,1.8137125,3.62977,3.428065,2.5768133333333334,3.377825,2.53055,3.0079,3.55286,4.16181,3.213965,3.8911333333333338,0.9715250000000001,11.494163,2.753805,2.91309,5.94415,2.60836,3.873495,7.627531666666666,4.2615,4.00554,3.90033,4.084045,5.505635,1.625145,2.6873066666666667,4.503135,3.708466666666667,1.859466,3.79564,3.376255,3.5831,3.95552,4.1563,3.7875,2.44128,4.25179,3.759425,5.17465,3.319945,2.2123500000000003,2.2199966666666664,2.120763333333333,2.965116666666667,1.3331933333333332,3.5071666666666665,0.8762281818181819,3.1664999999999996,3.1662199999999996,2.5588933333333332,1.5496366666666666,4.270405,3.951605,4.155065,1.9478825,4.53662,3.750575,0.7198741025641026,0.3329407692307692,4.29316,5.4708,0.95849375,0.3329407692307692,4.37064,0.7198741025641026,0.7198741025641026,0.3329407692307692,5.92695,2.60085,2.2786133333333334,5.3905,3.35747,3.1663,0.8217522222222222,3.06614,3.77383,4.7037,5.5534,2.191275,0.7228546153846154,4.261651666666666,2.0650066666666667,1.37941,1.858385,1.03211,2.253503333333333,2.239803333333333,3.622095,5.1916,2.7374266666666665,2.89209,2.7246733333333335,2.1592233333333333,2.9036,4.4552375,1.69827,1.975555,3.96877,5.1013,2.117151388888889,5.1185,2.85717,4.12827,4.094965,3.08881,1.2492075,3.265255,6.75885,3.847305,3.48145,5.1791,6.4168,2.15781,3.082295,4.636665,3.32902,3.54137,8.2429,3.757935,4.2742175,2.291645,1.165485,2.515493333333333,1.977255,2.47691,2.117195,4.02257,0.6464142857142857,3.19308,3.858645,1.8919666666666668,2.9349366666666667,4.935225,3.124,2.62812,4.18605,4.987235,9.215082333333333,2.69005,2.57035,1.668358,1.3719533333333331,1.2057433333333334,1.42413,2.7199066666666667,2.4306633333333334,2.8451066666666667,4.241686858974359,1.6835525,2.42217,4.899635,5.30005,3.67957,3.45599,3.004985,2.623715,2.095135,2.27618,1.8480833333333333,1.94175,3.278045,3.643,4.7816,5.03415,4.053805,5.405097083333334,3.351175,2.354975,6.520417916666666,3.20528,8.66853,4.842630833333333,4.842630833333333,5.465615,1.5977766666666666,1.39818,1.4533866666666666,0.739179,4.952075,3.8969666666666662,3.2761225,3.2761225,2.10392,4.508435,4.29934,4.436465,4.115785,2.8840299999999996,2.592805,3.52163,3.0940499999999997,5.2396725,3.69451,0.7696490909090908,5.2422,5.11215,3.94155,4.830245,2.9038,6.09815,4.23739,0.8051999999999999,5.2884,6.94752,3.119555,5.627,5.7538,3.51041,2.80373,3.70154,6.07635,2.0919975,5.7462,1.9102225,4.54183,2.5122733333333334,2.254,0.9015470000000001,2.769685,5.88975,3.419305,3.729295,1.9344299999999999,4.7445,8.026653333333334,3.523925,4.123845,2.75479,2.80586,0.84676,4.616655,1.6115483333333334,3.4737975,3.4737975,3.888775,2.3474533333333336,2.9337999999999997,3.726605,1.8875075,2.83175,3.254906666666667,3.1239066666666666,2.82845,4.080875,2.982825,1.877675,3.16051,2.11767,3.0045066666666664,1.9388133333333333,3.0353,3.2163299999999997,1.398737142857143,1.4815233333333333,0.594005,1.3395416666666666,0.594005,0.594005,1.4815233333333333,0.594005,3.4537666666666667,2.5428100000000002,2.5428100000000002,2.76567,4.313185,3.868095,3.984305,5.2859,5.3497,3.522965,3.68327,4.053725,1.8364725,2.3158060000000003,2.41424,0.8165690909090909,5.66935,3.06874,3.07382,5.51805,4.0961725,4.68513,3.34651,2.690253333333333,2.84568,3.456565,2.49137,2.91906,2.07673,5.2342,0.8621533333333333,3.69003,1.1523785714285713,3.53339,3.104703333333333,2.8083233333333335,3.98054,3.83284,3.744425,4.334695,3.90091,3.952895,4.305215,4.21084,2.474175,2.70315,3.2218666666666667,4.217795,2.733925,3.27565,2.586065,2.94561,3.0849100000000003,3.51793,4.903365,4.64288,4.02991,68.32805082048507,2.6809966666666667,3.75095,16.070438666666668,4.07167,3.00774,2.1343633333333334,2.0111966666666667,2.6239933333333334,4.4102925,2.9558400000000002,4.146228333333333,5.6521,3.356345,7.25397,5.24245,1.98659,3.29048,3.55131,3.388495,1.858654,1.00944625,4.76539,2.4734,5.792728333333333,3.63928,2.254156666666667,3.441745,3.41901,4.500085,3.017105,5.489865,4.347495,3.38392,3.1505,2.47011,2.767865,5.896,2.4358,3.651785,4.257237083333334,1.2121183333333334,2.452465,5.0508275000000005,3.454555,3.07068,3.60973,2.85232,4.038925,3.13083,2.516245,2.783325,4.46666,3.115945,2.90376,4.578155,9.02552,3.2009600000000002,4.097815,6.15268,3.054005,2.00672,4.182053750000001,1.9603833333333334,2.912646666666667,2.885784,3.220905,3.17975,3.092615,3.09503,3.25875,4.022675,3.932395,4.251635,3.67143,3.041595,3.468225,2.7318249999999997,2.7318249999999997,6.739771666666666,1.608425,3.360135,3.28709,2.426435,4.593165,4.19814,3.020705,3.46898,4.12935,5.884107500000001,0.6278372727272727,3.82603,2.4306,2.8843566666666667,2.5378133333333333,5.08275,2.7152600000000002,1.93978,1.09348625,2.065675,4.207795,4.8832,4.22094,5.7544,5.4614,5.6235,2.71901,1.8514433333333333,4.11817,2.5752,2.859246666666667,1.8990233333333333,1.2355916666666666,2.8507866666666666,3.1502199999999996,1.3849420000000001,2.2843066666666667,2.2042477142857146,3.479083186813187,2.75669,4.953315,3.411655,1.3026425,3.05243,3.540015,5.71195,4.933345,5.8955,4.713025,2.122523333333333,1.5428766666666667,0.5955985714285715,1.55636,3.49619,2.58229,3.6243133333333333,1.4161933333333332,2.575305,2.468435,3.55151,3.478235,3.705595,4.0401325,1.6071475,1.38689,1.8886875,2.0463575,1.3447225,2.603725,6.640514083333334,4.79788,3.332045,2.992905,6.9137450000000005,4.64235,3.21968,3.098215,3.295665,2.753095,3.93344,2.34688,7.33581,0.9039866666666666,3.073035,6.6317,4.02969,4.65158,6.09485,1.5282499999999999,3.1219366666666666,2.8516333333333335,2.8435733333333335,1.5007625,3.942715,8.50104,3.273415,4.954945,4.00611,3.206575,4.738785,0.8880033333333334,2.83074,5.44815,6.159273333333333,4.99173,5.57375,3.26646,3.733166666666667,2.592496666666667,5.07765,4.67241,3.6875675238095242,3.6875675238095242,0.6873428571428571,3.6742666666666666,0.947048,0.6138366666666667,1.754815,3.6800333333333337,3.8834020000000002,5.366473428571428,2.9563166666666665,3.4558854285714284,3.1206080952380955,2.5219566666666666,3.1096866666666667,4.4937,3.5594200000000003,1.95465,1.95465,3.623375,3.0533333333333332,2.7741466666666668,3.514395,3.391666666666667,0.5818455555555555,3.14668,2.58435,2.452106666666667,2.65123,2.52035,2.52922,3.1859366666666666,2.792783333333333,0.811731,2.5586699999999998,6.410704952380952,2.10996,7.403924166666667,1.6016439999999998,1.6016439999999998,3.375436,3.3744,3.3434333333333335,2.7809866666666667,1.6905899999999998,1.2911985714285714,3.28405,3.310893333333333,1.4866533333333332,1.5654714285714284,2.7875433333333333,2.6417159999999997,2.55697,1.88201,1.865165,2.72392,2.27279,2.805495,3.29431,1.62827,3.49151,3.264535,6.5858550000000005,3.3809,1.657165,2.970555,2.5898,2.142735,4.005465,2.350956666666667,2.51916,7.09666,0.7917,0.7389833333333334,4.52346,1.519706,1.519706,3.570555,2.504575,4.28044,3.20267,1.33692,2.4516746666666664,2.8964233333333333,2.453161333333333,5.11515,4.95104,2.49707,2.05933,1.388207142857143,1.388207142857143,1.9694166666666666,3.865895,4.022733333333333,5.6368,3.063086666666667,4.62263,4.14389,6.6812,4.28147,2.53709,2.846636666666667,2.671386666666667,2.729893333333333,0.7387722222222223,0.7387722222222223,0.7387722222222223,3.00101,4.1393,3.91658,1.257,1.257,4.987445,5.48765,6.10099,21.464379222222224,11.3474,7.83875,2.452305,5.57275,2.242185,4.18337,2.4555533333333335,3.1289433333333334,3.8671333333333333,5.281672,2.06006,1.763175,6.07187,1.9942119999999999,1.9942119999999999,6.29895,3.216485,4.3316,2.0049,4.6922435,4.440905,3.345325,4.813155,3.63003,0.8361366666666666,5.8484,7.71315,0.8361366666666666,2.0049,2.15692,0.84565,0.84565,1.694702,2.32528,1.694702,4.39685,5.43225,5.9772,8.46132,2.0049,11.585412833333333,5.68015,5.8708,2.242185,3.451285,4.37844,8.3818,3.2476041666666666,3.43879,5.742,3.10058,4.395995,5.92045,4.42952,4.7632,4.85381,2.85819,4.8226,3.42368,4.529215,4.5363,0.797525,1.4540760000000001,3.078265,5.42225,4.701155,2.6082433333333332,2.0312625,4.035855,4.67076,5.7895,5.33625,5.1906,4.430415,3.31323,4.28697,3.790955,2.13757,5.02168,2.138785,2.746755,3.52368,1.6427766666666666,4.05901,3.8291,3.61243,5.203,2.87564,6.686495000000001,0.933008888888889,3.40851,2.505045,1.1584871428571428,5.081726,1.46122,1.56461,2.44921,2.7449215000000002,2.7871,2.7652466666666666,1.66036,0.7363672727272728,2.1459633333333334,2.77577,3.544745,0.6951553846153846,5.37203,1.71174,1.114002,3.3670000000000004,1.114002,3.701325,0.9366818181818182,4.500385,3.17876,2.412505,5.34324,4.542445000000001,4.542445000000001,4.67673,2.5282,2.9593966666666667,2.706026666666667,1.435124,3.883035,3.451555,1.9603133333333334,0.6923875,6.785608717948717,2.88551,3.957575,4.425445,7.52668,2.16617,4.15034,3.80641,3.188265,3.48374,5.48205,6.3272775,4.335465,4.86408,5.20275,2.9306300000000003,4.82805,4.19384,4.495015,1.0834477777777778,0.4705964285714286,3.12792,3.4039333333333333,2.7908666666666666,5.3886,3.852875,4.168785,4.4237,4.97804,4.39855,4.142275,1.17418,2.284935,8.406315,2.3024833333333334,1.9706733333333333,3.7668085714285713,11.340229464285713,1.5510625,4.514555,6.3917,5.034,3.4684333333333335,2.1509933333333335,3.336733333333333,4.008545,1.0962016666666667,3.1745300000000003,3.33533,0.34218894736842104,2.05762,4.54024,4.043575,2.20299,4.1384,2.88988,5.016525,1.3349399999999998,0.5182318181818182,3.681585,1.0838414285714286,0.99718125,0.99718125,0.99718125,0.99718125,1.6338583333333334,2.6766666666666663,1.9321466666666665,3.3571333333333335,5.2135,3.632766666666667,5.3315,3.71487,4.212025,3.769165,3.833105,1.4651500000000002,6.76914,2.590245,4.553835,5.157769999999999,4.94692,5.025434166666667,2.378836666666667,2.3015266666666667,2.5928633333333333,3.32592,1.2251,4.554151666666667,2.6657966666666666,4.94302,3.058566666666667,2.4392133333333335,3.731105,3.34747,3.0024,2.460386666666667,2.8502533333333333,1.56833,0.41313444444444447,4.014565,3.564205,4.12396,3.444645,3.881615,5.7704,4.27941,0.5385653846153846,3.117916,7.131142666666667,1.9518466666666667,2.06138,5.469455,6.0703,2.72507,4.660545,4.627965,4.224085,3.97612,4.171735,5.3318,5.69755,5.13555,3.51044,5.222008499999999,1.48089,1.58198,4.436735,4.10004,3.935595,3.21729,5.22585,4.79451,3.85467,3.24944,15.16899401965076,1.26008515917603,1.081895,1.6924386363636366,0.503815,0.48577933333333334,1.3114625,0.2927988235294117,1.313204,3.1964433333333333,1.768716,0.8738250000000001,1.8370841666666666,0.7947866666666666,1.8370841666666666,1.8370841666666666,0.7947866666666666,0.7846307692307692,0.5456392857142858,2.62404,2.6524733333333335,4.65559,3.877215,2.8129933333333335,2.695325,4.31629,4.54661,4.846915,2.833145,4.28199,0.6811292857142857,2.3294906666666666,7.928046666666667,4.1396,6.579685,2.88029,4.25758,2.370255,5.28455,5.4973,4.728145,4.348295,2.717005,1.010505,4.103085,4.775155,1.2609439999999998,1.281058,1.5344266666666666,2.3846133333333333,1.9057233333333334,5.2615,5.4777,2.30521,2.30521,3.6232841666666666,6.41762,2.0989033333333333,0.6581327272727273,0.8241242857142856,2.5382866666666666,3.3825333333333334,0.9473871428571429,0.9473871428571429,0.9473871428571429,0.3671992307692308,1.0619871428571428,2.9511,6.05845,3.820933333333333,4.2005825,5.04935,1.02044,3.4726,3.2456300000000002,3.879433333333333,5.74225,2.5166133333333334,7.3801,4.80438,1.1151222222222221,3.8560666666666665,1.7818619999999998,2.67955,2.421206666666667,6.803913333333333,3.2535966666666667,4.394655,2.2441425,4.60543,4.343015,4.90021,0.5007933333333333,3.01215,1.48674,2.65692,3.840543333333333,2.0746766666666665,2.8043066666666667,2.563353333333333,2.603893333333333,2.73401,2.8195266666666665,2.655883333333333,2.9116166666666667,1.30511,2.4558166666666668,1.9704833333333334,3.3043899999999997,2.685366666666667,2.16583,1.7857033333333332,1.9167233333333333,1.7223775,3.331985,2.1306033333333336,1.9932433333333333,1.93292,2.394956666666667,2.31353,0.6959500000000001,0.6959500000000001,0.6959500000000001,2.478596666666667,1.95123,3.02957,2.2795733333333335,2.5469766666666667,1.9772100000000001,3.578875,3.5311233333333334,1.32264,2.461393333333333,2.749143333333333,3.8951833333333337,1.5626,7.241408333333334,4.491545,3.30914,4.00455,3.49268,1.323495,0.8242357142857143,3.218705,3.71887,3.8951833333333337,3.94521,4.15648,4.516915,2.79993,3.712395,3.91396,0.8679919999999999,2.73208,3.36357,5.100884166666667,4.587895,3.57469,3.084355,2.37417,2.2244966666666666,2.397413333333333,0.6366741666666667,5.064619166666667,2.74595,3.8214,2.657033333333333,3.813221666666667,3.121966666666667,2.410623333333333,2.8994980000000004,2.8994980000000004,2.5578366666666668,2.19725,2.4780666666666664,1.9989233333333332,4.00936,1.406232,2.582005,3.6993,3.955365,3.883825,5.19485,3.69264,2.445135,2.110685,3.200905,2.81473,2.823565,5.10545,2.771535,0.9368114285714286,0.9368114285714286,4.408295,4.005279,1.029874,4.252635,1.029874,3.71541,4.74943,4.87399,3.090905,3.07383,6.37045,4.05122,5.7296,0.8569071428571429,0.8569071428571429,2.0572399999999997,4.474906666666667,1.5174816666666666,2.957425,3.415345,1.094312857142857,3.875165,3.82037,5.42865,5.42865,1.0301433333333334,5.5823,5.1956,5.14005,6.1229,1.9552575,1.9552575,7.02245,0.9374363636363636,7.25275,1.9822925,6.3668575,2.624865,2.431016666666667,3.450545,2.2508,2.145043333333333,2.21618,2.9421366666666664,2.497364761904762,6.2280299999999995,1.7836159999999999,4.97096,2.829753333333333,2.4679733333333336,1.92832,2.13513,3.221065,3.573855,3.543235,2.88513,2.53598,2.123725,2.84142,1.094754,3.143645,2.50363,3.12035,2.221897,2.221897,3.325365,1.8262433333333332,3.70325,3.40258,4.82349,7.169651666666667,4.053165,3.558515,6.299568,1.9936566666666666,3.1631766666666667,2.05984,1.4602714285714284,1.7204725,4.07952,1.5716116666666666,0.502068125,0.6385483333333334,4.4358,4.62428,2.8852,0.9623155555555556,2.8648,3.003026666666667,4.838355,1.7543399999999998,2.00274,1.1252333333333333,4.540305,2.454515,4.32563,0.801401,4.175422083333333,4.187465,3.59712,4.24113,3.386665,3.791735,2.8161166666666664,5.3065,3.583395,1.7820366666666667,2.732943333333333,5.805663333333333,6.1314475,0.7021975,3.780995,4.405395,5.19815,3.5937333333333332,3.7354333333333334,2.711925,3.1743466666666666,3.7787666666666664,6.17061,2.6417159999999997,2.577834,3.900985,2.729085,2.429285,2.4639125,8.396506666666667,4.38501,1.9202333333333332,4.88638,4.665565,1.786252,3.836275,1.286625,1.5654571428571429,4.299205,3.674165,4.58023,2.45105,2.995275,3.214045,4.994715,3.70841,3.39129,3.10874,3.46211,3.867035,3.9221700000000004,1.113397846153846,1.113397846153846,7.70357,0.8145875,2.3675029563492065,0.8145875,0.7325883333333333,0.5998477777777778,3.1000912896825397,2.43546,0.5952914285714286,2.3675029563492065,2.00956,3.415845,2.504799861111111,3.664425,4.546395,6.787435,1.98352,2.051935,2.06893,4.20912,5.71755,1.945145,1.6903825,1.237875,2.9282575,4.04721,2.86984,4.452375,6.37094,0.42421722222222225,3.64455,0.713486,2.8383766666666665,2.2593125,3.471255,1.2482033333333333,3.941585,4.576825,3.93011,2.9418,3.94909,5.077780000000001,1.55138,3.58754,0.5916707692307692,2.564605,2.442335,1.12197,2.8330866666666665,2.5459,2.536776666666667,3.77964,8.136275,2.8169781818181816,3.743965,3.51518,6.996315,5.3644875,3.147933333333333,4.26636,3.67063,5.5555,4.212635,5.31985,4.630775,4.092595,4.832665,4.077366666666667,1.45789,1.8137866666666669,2.38623,3.66698,2.5011533333333333,0.2005935135135135,0.2005935135135135,0.2005935135135135,29.311532476190475,0.2005935135135135,2.9576935135135134,0.2005935135135135,0.2005935135135135,0.2005935135135135,3.2761435135135133,4.150625,0.2005935135135135,0.2005935135135135,0.2005935135135135,0.2005935135135135,0.2005935135135135,2.93014,5.92368,3.075055,0.22646,0.22646,4.29088,3.9747162083333336,4.041236875,3.3456363194444445,4.020775714285715,8.001066666666667,11.375358813131314,5.812886333333333,7.976706666666667,7.5204747321428576,2.8380500000000004,6.153336190476191,4.1708783333333335,4.264512083333333,0.22646,7.758353333333334,6.651846000000001,7.103255,2.649375,8.862784732142858,13.646610922619047,17.972331169871794,55.864117279805164,114.7874747649034,1.3830433333333334,3.385066666666667,3.373875,3.848315851994852,0.22646,1.5589666666666666,8.640107291666666,14.705718523809523,19.920012222222223,47.79557397410192,13.31260056547619,3.163525,0.22546689655172414,0.22546689655172414,4.53054,2.7174833333333335,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,4.83317,0.22546689655172414,0.22546689655172414,0.22546689655172414,2.640145,2.05806,3.68447,3.696045,4.221828333333333,5.06535,1.8892125,4.203265,4.293115,2.88882,1.4871366666666666,3.31414,1.0072966666666667,2.2966425,1.9665866666666665,5.017776666666666,6.00565,2.505316666666667,5.7631623888888885,0.5284694444444444,0.46787533333333337,2.48832,2.8399733333333335,2.848405,4.011385,3.3782,7.355835,3.689635,3.743365,3.452825,4.019115,3.12881,3.188495,5.5616,2.12517,0.43747615384615385,0.8139281818181818,4.2742,1.7745825,3.79704,3.800625,4.32642,3.71913,2.4309,2.683425,0.6152826666666668,0.750417,4.279865,2.5838300000000003,5.3805,3.58524,3.693201666666667,2.692125,2.88015,5.98385,4.599905,3.30371,0.8454209090909092,3.4089333333333336,4.267995,2.297905,0.9472025,1.5124466666666667,4.133055,6.51805,1.869135,3.116035,3.877015,5.7627,2.504915,2.2215366666666667,2.47217,4.768555,2.48897,4.07821,0.7335171428571429,2.1133633333333335,3.205915,1.99405,6.086503333333333,2.195585,4.070215,4.66134,2.97491,1.97377,0.5222454545454546,4.266695,5.01345,6.7669,3.546545,3.85884,4.98824,3.06386,2.79612,1.2049414285714286,4.991415,2.04781,2.60572,8.75679,4.15738,5.2176,3.54401,0.7765644444444445,3.09014,1.224607142857143,3.211035,6.1119,4.91167,5.01195,3.586225,5.11375,4.285755,1.60253,1.7683633333333333,5.05475,2.9342966666666666,3.3443666666666663,2.4013025,5.22675,4.311655,1.4459366666666666,3.5515000000000003,2.84695,2.78779,3.868595,8.87476,4.687585,1.70152,4.67923,6.40031,4.4105825,3.919755,4.1561,3.980835,4.52666,8.017645,2.3875800000000003,3.102445,3.216255,4.301295,2.71708,2.953145,4.750435,4.311605,3.48333,3.7973559999999997,18.464985,2.786936666666667,2.4808666666666666,3.3118966666666663,5.58329,1.14225375,4.161385,2.1494524999999998,4.70431,1.3683383333333332,4.27324,4.28076,3.5255,0.97553625,4.49025,4.490185,1.76681,4.583788181818182,4.04344,1.04206,3.357535,1.74926,2.54312,1.596415,4.27147,3.820955,3.73327,3.648385,2.9404,4.285875,8.022158333333334,4.29823,4.326355,4.65571,3.132493333333333,3.86663,4.735405,6.2364180000000005,0.9607060000000001,0.9607060000000001,4.44129,4.681975,2.20748,1.3607383333333332,7.182785000000001,4.203905,3.757045,3.91219,4.70267,4.47293,3.767295,3.905125,6.508812000000001,4.082493333333334,4.652795,4.80837,1.425892857142857,2.655425,4.298495,4.60051,3.3123537499999998,0.20194638888888888,1.485915,2.076855,2.4999233333333333,2.0450399999999997,0.9513433333333333,1.515355,1.4595875,2.4123733333333335,0.6043266666666667,1.044592857142857,1.8470725,3.89892,3.9143333333333334,2.048313333333333,2.57288,2.9127500000000004,2.868843333333333,0.704326,0.944725,3.127995,4.5767,4.31955,3.12518,4.23203,4.458525,4.196415,2.10782,4.34541,4.842045,4.333475,6.1626575,3.612875,0.4997747058823529,5.32875,4.46847,3.49297,4.76584,3.060095,1.998714,3.80675,3.974045,2.829275,5.267359166666666,4.49788,1.4239516666666667,5.267359166666666,4.111825,6.7893075,3.70125,1.1685444444444444,3.85844,4.93739,4.05738,2.55805,4.97292,1.50096,1.994305,3.252505,3.45903,0.8064111111111111,4.77282,4.788595,3.53314,3.88489,3.3744666666666667,2.93007,1.718958,1.6663025,3.177435,3.38194,3.3739666666666666,2.40802,2.3058175,1.9416986666666665,3.69406,1.3132342857142858,0.8131688888888889,5.5626,3.9006,1.456846,2.58151,2.25636,2.9313933333333337,6.02918,2.194008888888889,0.8176589999999999,2.55168,3.99228,2.0496366666666668,4.09756,5.09065,5.3657,4.35292,4.126555,4.77076,2.1146833333333332,2.3255933333333334,1.6952133333333332,2.1415533333333334,1.890015,2.3149666666666664,2.212543333333333,1.621605,2.731835,3.05629,4.367865,6.4084,4.49184,3.972195,4.32481,3.85584,3.87783,4.961385,0.8996475,2.936503333333333,4.635455,1.2254619999999998,0.6424193333333333,4.971785,3.488355,2.54111,3.52289875,6.095504999999999,5.47645,0.958319,1.1950157142857143,0.68743,4.096443333333333,2.182586666666667,2.8323699999999996,1.1559085714285715,2.7206233333333336,2.5572433333333335,5.46815,4.649655,4.3252,5.10835,4.10678,1.2428116666666666,3.63892,1.74399,3.50356,3.8333,3.32821,2.3663766666666666,3.26153,2.77304,4.09808,3.913365,3.20266,2.363395,8.691320000000001,10.0767975,4.06688,1.3923271428571429,5.3598,3.96905,4.876595,4.498765,3.538405,3.847685,3.469975,4.203085,3.4563325000000003,4.54298,3.69617,3.57596,4.58259,1.8142099999999999,4.81992,5.71125,4.869835,3.3373,3.3081300000000002,7.25135,0.8007958333333334,2.5298133333333332,2.69205,2.3547033333333336,5.0476,3.440755,1.2273583333333333,4.22407,3.30292,3.7408,4.74827,4.1358258333333335,6.417641,3.1405666666666665,2.947846666666667,3.0542233333333333,2.8453999999999997,4.021195,1.8966900000000002,2.17413,2.951283333333333,3.871565,3.675088333333333,1.922555,1.53596,3.1067367857142854,3.0693805000000003,0.9520333333333334,2.4862466666666667,2.4862466666666667,1.20276,5.664,3.152665,3.52418,3.48431,3.120485,3.50111,3.36569,3.24384,3.115515,2.2419266666666666,0.528572,3.223345,5.52355,3.002175,3.850325,3.231255,3.968215,4.041125,3.073115,2.87139,3.6784,3.73259,2.959495,2.861965,3.388885,2.59944,4.144785,3.940315,8.71249,3.484145,3.60342,3.09074,3.93791,4.124245,3.566335,2.33849,3.70478,2.7534549999999998,2.87608,2.89001,3.105505,3.80189,1.7459233333333335,1.7459233333333335,2.31102,2.829605,3.145775,1.568688,2.45555,3.34622,1.8683520000000002,2.882755,1.568688,4.28553,3.039915,3.83896925,2.94728,3.46629,2.510545,3.26136,3.96696,4.13752,3.42289,4.26894,3.740785,4.229905,3.5522,3.12209,3.260965,3.10443,3.99373,2.6900099999999996,3.78381,5.1632,4.21819,3.672995,0.33199,3.530875,0.45340416666666666,3.48079,3.620815,3.105245,3.47506,3.73161,5.774573333333333,3.11388,2.5189,2.3004933333333333,2.851573333333333,0.679508,6.644753333333333,3.30122,3.358475,3.578895,2.126285,2.74767,3.238895,3.35343,6.688805,4.662035,4.849195,4.5435,4.310165,4.292195,3.762475,1.4246066666666666,1.6359000000000001,3.83244,4.546395,5.8152075,2.2899766666666665,4.897025,1.80379,3.3923,4.007085,1.9170259523809525,4.07421,4.7713775,3.551766666666667,3.737133333333333,2.767303333333333,4.441565,4.60335,3.395433333333333,4.371965,4.336225,4.875815,4.24386,4.424775,3.67167,3.048155,4.110685,2.5249,3.1908366666666663,3.1908366666666663,4.20068,2.56171,3.86467,2.4543633333333332,4.439295,3.15602,3.82097,1.765735,1.8894333333333335,1.2246233333333334,1.2246233333333334,1.54786,3.4208,1.73372,2.672686666666667,4.085065,5.076474,3.26266,4.07597,6.32788,2.43124,2.813525,3.0039700000000003,1.60389,4.11869,4.001495,6.172655,1.7532699999999999,5.22825,5.5828,3.4128000000000003,3.45453,4.24496,6.37795,2.0674233333333336,2.322545,3.76506,0.5838685714285715,3.78101,4.00849,4.332085,4.216175,2.90384,1.3753119999999999,1.640178,3.943265,3.168305,2.4061733333333333,3.77775,4.83004,5.12805,1.01983,3.248265,4.65664,3.63514,4.53957,2.48967,4.97047,3.765245,1.575726,3.363875,1.2704466666666667,2.727926666666667,7.347738333333334,3.270235,0.6380627272727273,3.308735,4.066065,3.82223,1.7752675,1.7752675,5.224141666666666,5.66245,2.980645,0.49776888888888887,1.914185,4.509549999999999,4.0934,4.316905,1.797512,2.86385,3.279585,1.1300210526315788,1.1300210526315788,1.1300210526315788,0.8157852192982455,1.3623818859649122,0.5465966666666667,1.1300210526315788,0.8157852192982455,0.28024105263157895,0.8268377192982457,0.28024105263157895,0.5355441666666666,0.5355441666666666,0.5355441666666666,0.5355441666666666,1.0933701666666666,1.07895875,2.3447766666666667,2.3300383333333334,1.0926150000000001,6.201546666666667,2.599936666666667,5.642715,2.10582,3.637085,2.82835,3.45407,2.670628333333333,4.66389,2.7560566666666664,4.077975,4.193035,4.472075,2.154265,3.71332,4.82437,4.00976,3.29296,5.04735,3.42095,4.552575,5.4675,4.980035,6.2266,5.1832,1.1217975,4.54864,3.742725,2.931,15.590175,4.47913,5.01855,2.53572,7.54669,3.927205,4.25046,4.76666,3.268055,1.0488575,2.582975,3.857015,4.21159,3.361495,3.300285,4.048405,3.0081399999999996,4.64383,4.574975,3.990695,6.480558333333333,7.398336666666667,1.2897757142857142,3.690565,3.898335,3.676445,3.798025,3.64522,7.1876,2.80926,2.68822,2.62567,3.942525,3.76753,4.4617,2.31662,1.8346825,0.994974,4.23094,3.57948,3.5642,3.88982,3.505405,4.78623,4.18228,6.5958,5.98595,5.4421,6.6502,3.77757,3.155505,3.21999,3.353065,1.9005725,4.49745,5.5116,6.10715,5.496438333333333,5.496438333333333,2.558795,1.9005725,2.039745,2.857485,0.79702,1.740745,0.943725,1.4928825,2.556215,0.402191,2.87847,4.20728,1.4928825,2.9376925,11.0435,6.5605925,2.307945,1.05332,2.14812,4.444985,4.217685,5.687396904761904,1.9791375,2.33785,3.648505,3.40231,4.57076,1.5025300000000001,5.20685,3.471966666666667,3.24055,5.07895,7.207688,3.73069,2.3373,2.7916733333333332,1.4608533333333333,3.90696,4.8573075,1.754232,5.6062,4.373115,5.836214,0.5343753333333333,4.452716666666666,4.601125,4.80163,2.37471,2.741325,7.3151,7.851116666666667,6.47005,1.9583666666666666,1.9583666666666666,1.9583666666666666,4.214865,4.6657,6.08865,3.352425,2.798825,2.6426315789473684,4.14302,4.827795,2.6543745,1.991705,2.6543745,7.0259944999999995,4.835990000000001,4.732072380952381,6.96706,4.732072380952381,4.732072380952381,3.524705714285714,7.01831,5.497391,2.7930460000000004,2.7930460000000004,2.671485,7.08815,2.730575,3.503675,5.29955875,5.29955875,5.29955875,8.29909,3.55892,3.487745,3.6298425,3.4875025,0.83135875,7.486296666666667,2.650306666666667,6.6262,3.51594,12.698288999999999,4.76295,5.317126666666667,6.99954,2.556471666666667,3.303635,1.119,5.317126666666667,3.3622,1.6670975,1.6670975,2.75747,5.395933333333333,1.81121,5.000501666666667,0.8452970000000001,1.5362683333333333,0.8452970000000001,1.9317,2.656507,5.3178920000000005,3.833255,1.5362683333333333,3.287295,4.730655,1.0098,3.445045,4.524805,1.98023,4.059195,2.571915,3.20573,2.918225,1.03142,3.748865,2.64186,2.48698,1.8526166666666668,3.424266666666667,3.814535,3.42116,3.665005,1.2873166666666667,1.2873166666666667,1.2873166666666667,4.120565,2.85798,2.85798,2.899315,3.77392,2.22084,1.2845275,1.2845275,3.031695,6.1452475,1.0183975,1.49608,2.89168,1.7057183333333332,3.2017983333333335,1.03142,1.03142,1.9733049999999999,1.03142,3.5117233333333333,0.9580833333333333,3.5117233333333333,5.68129375,3.429815,2.52239,1.5565370833333334,0.69789,2.2544270833333333,3.535135,2.2544270833333333,1.0084133333333334,3.514585,3.861395,3.81281,3.54206,2.44044,3.730325,2.2860533333333333,0.9129273611111111,0.50700625,0.9129273611111111,0.4059211111111111,0.9129273611111111,0.9129273611111111,4.196685,4.32412,5.432,3.42755,4.40797,4.336575,5.18665,3.54269,3.94402,1.3061614285714285,2.4917966666666667,4.173254166666666,3.796695,1.5203466666666667,2.74337,3.80283,3.808095,4.09596,3.50648,3.9128,3.56388,3.174375,4.451735,2.3467733333333336,6.10815,3.50668,3.5609,4.499122857142857,0.9466213571428572,1.862675,3.146405,6.10156,3.857335,3.312315,2.98456,4.29029,7.39612,3.090256666666667,4.238515,2.78037,3.79868,3.993095,5.5957,5.2932,3.98361,3.059695,5.1321,4.555775,3.5292333333333334,3.920065,3.2062866666666667,2.20778,2.2893,4.677985,6.38695,5.02725,4.916525,3.931635,4.934775,5.7602,0.5171430769230769,7.30564,4.322565,3.62932,3.701515,4.66124,4.00827,2.8928166666666666,2.489225,1.3282816666666666,0.5637761538461539,1.78701,3.11619,3.24709,3.18907,3.780115,3.98096,11.509419999999999,3.77873,3.89829,3.049985,0.6741983333333333,5.475806666666667,3.29678,1.60699,4.90377,5.409745,2.112965,8.62181,4.63011,2.117198,2.117198,2.117198,4.317335,8.72945,3.795565,2.590925,2.590925,3.733285,9.94808,1.005955,4.630125,4.31768,4.16603,2.5964566666666666,2.051626666666667,4.3838,3.805385,6.2721,5.794931666666667,3.863455,2.84315,3.84075,4.163092499999999,3.3766855,1.13279625,2.7942033333333334,6.2069,3.2399125,4.912125,0.95466125,3.6489666666666665,2.21889,2.5716,1.7708625,1.8682133333333333,2.08224,5.5014,2.004345,4.53201,5.5658,1.7836159999999999,4.613835,3.690295,4.600255,3.26591,2.361805,3.037865,4.35358,4.02157,4.02157,1.1575375,1.7000866666666665,2.81251,4.451303,2.1864576363636363,4.880581333333333,1.7150079999999999,2.741623333333333,2.2066066666666666,1.6371425,1.6371425,4.653945,7.349571666666667,1.8158899999999998,2.955163333333333,2.22732,4.750175,3.084555,0.8369440000000001,2.90537,0.8369440000000001,2.688885,3.35013,5.10865,5.5794,3.56432,4.792421666666667,5.52925,2.382915,1.8620966666666667,2.8816900000000003,2.24086,6.22325,4.735965,2.4932,4.454955,3.01607,4.383255,1.02484375,1.146326,1.9188233333333333,1.21226,2.558406666666667,2.73644,2.187926666666667,2.848653333333333,2.56702,4.38924,2.53247,2.4239433333333333,2.7299966666666666,2.3930599999999997,2.8195833333333336,2.614526666666667,2.0188366666666666,2.5436466666666666,3.868455,4.06754,3.26391,3.266605,2.8019,2.2211275,1.942585,1.1139116666666666,0.29402849999999997,0.13105673913043478,2.0538000000000003,1.9145066666666668,0.13105673913043478,3.4829117391304347,1.7449125,0.13105673913043478,5.809236736111111,2.000731666666667,6.6421,3.374515,3.19689,2.4656366666666667,2.9420066666666664,2.1580575,4.3332,3.0872333333333333,3.1712000000000002,0.4066515789473684,4.053745,2.6130015789473684,3.01994,1.829235,2.49001,4.22161,2.23918,7.726694999999999,5.15145,3.449315,3.78488,6.49397,6.29691,1.8590766666666667,4.1805433333333335,2.204845,1.9649,6.47358,8.02766,1.2943566666666666,1.9789875,3.664585,2.591005,2.919125,3.222865,2.705685,4.456675,2.497805,3.16404,3.62748,3.14928,7.65291,1.3933366666666667,2.110815,3.15267,3.24254,1.8529900000000001,3.42774,1.72041,3.70418,3.140685,6.69713,3.49961,9.2212025,3.386445,1.587454,2.028376666666667,2.88079,5.6591,1.6144475,1.53212,5.71489,3.466635,4.060875,3.033365,1.96251,3.23085,10.573885,5.21842,6.72163,3.571545,2.241455,2.12553,2.56946,2.93568,3.421335,1.625815,1.6547433333333332,2.4382,3.424925,1.65746,3.333885,2.197515,3.77321,3.745985,3.434955,1.1491283333333333,2.454865,1.2147333333333334,1.3971259999999999,1.5883,3.307655,3.369725,3.683615,2.478325,3.521115,4.005095,3.272175,1.4615719999999999,3.346595,3.5939224999999997,3.081895,2.134835,3.265275,3.42884,1.4418725,3.354515,1.5588300000000002,3.984365,3.74256,4.686475,2.77507,3.77818,1.913225,3.074015,5.53585,1.705215,1.0971,3.5820333333333334,2.69814,4.33269,4.225055,3.15161,4.431645,4.78293,2.3125033333333334,5.31835,5.4663175,6.49405,4.12214,6.549473333333334,4.03808,1.6586733333333334,2.9000233333333334,4.623375,4.662395,2.696293333333333,7.1538260000000005,1.1806057142857143,3.3778333333333332,2.0901,1.754152,2.1931433333333334,2.6776366666666664,0.3777028571428572,2.70997,3.8331,3.465565,2.6873,3.3571333333333335,2.3032333333333335,2.1927733333333332,2.236505,9.05019,4.93198,1.9685400000000002,5.08695,2.527988,0.7198741025641026,2.6640900000000003,7.319441333333334,1.6021260000000002,4.44160125,6.204465000000001,1.59607,1.6258675,1.402045,4.188485,3.2103,4.43563,3.7585775,2.4246766666666666,3.516335,1.014128,2.835578,4.242245,4.19063,4.797255,2.81033,4.9834,4.507605,4.12218,4.9618,5.57665,4.94663,4.14429,5.3946,1.713054,1.8763175,2.82286,3.490165,1.117788888888889,3.778215,2.0108333333333333,3.3352,4.25055,3.1312333333333338,2.5526166666666668,1.5419966666666667,3.0490433333333335,2.8259672222222223,2.684203333333333,2.8475333333333332,1.9514566666666668,2.0060375,2.322805,3.763035,4.304965,3.89521,4.548995,3.295605,2.30654,2.82689,4.907185,3.9094333333333338,4.576445,3.241465,2.35668,4.516846666666667,1.7899566666666666,4.023715,4.83919,5.960167142857143,3.90429,4.236785,5.3555,3.153786666666667,3.8969250000000004,4.439295,3.0361,3.8491714999999997,3.51389,1.3595,2.964025,1.87957,2.43738,4.579755,5.109845,3.8491714999999997,3.991375,3.23077,1.5174816666666666,3.481865,2.141985,2.350956666666667,2.195435,2.78109,1.6901657575757576,1.6901657575757576,1.6901657575757576,0.5718190909090909,0.8080533333333333,2.186888333333333,1.141895,3.63101,1.28242,3.82182,5.22715,4.61547,3.15447,3.948285,3.000725,4.995475,1.5336275,2.99417,2.90786,3.168785,5.861981999999999,4.130055,5.27185,4.330795,1.0556125,2.360405,1.391,3.800945,3.86581,4.204895,5.2221,4.44745,3.74455,4.473855,3.889025,1.74744,1.2366416666666666,5.4679199999999994,1.0779577777777778,1.3719833333333333,2.6996200000000004,7.95368,2.93115,3.58596,2.85214,5.465075000000001,1.6069,1.0139483333333332,1.4679275,3.20658,3.641915,3.903825,3.80128,1.8875175,6.237615,2.9544866666666665,0.90848,4.765155,2.91044,2.5931933333333332,2.4092566666666664,3.4768000000000003,5.399402500000001,2.639273333333333,3.3543000000000003,3.4035333333333333,2.5875933333333334,2.5935866666666665,2.8810266666666666,2.956255,2.024495,4.83803,4.62668,4.997925,1.0035066666666668,0.752412,3.7974333333333337,2.6756266666666666,1.03190625,2.7266395833333332,3.711615,4.193285,6.9486349999999995,4.68597,3.4904333333333333,1.730996,3.5879,3.676065,2.702053333333333,2.5312148571428574,3.913355,2.7381166666666665,4.983192666666667,0.8766155555555556,2.892835,1.7354880000000001,3.333485,4.317705,1.98985,1.0359425,3.14965,0.439078,3.16128,6.6171,5.4857,2.85935,1.471256,4.0380666666666665,0.7953622222222223,2.6541433333333333,0.7953622222222223,3.93975,4.38622,1.46583,1.83024,4.986048333333334,1.8491933333333332,3.61102,2.604775,3.78262,1.219188,1.6198266666666665,3.84416,4.20296,5.2529,2.885784,2.62035,3.26265,1.5587075,2.063085,1.8099175,1.9036125,4.153665,1.4311888888888888,1.4311888888888888,3.318555,4.82963,8.325994166666666,4.485123333333334,7.867155,2.22618,3.81578,3.988445,1.6837666666666669,3.521659166666667,3.80894,2.903035,4.162415,3.10471,2.53705,2.8683633333333334,3.89287,1.091965,4.24761,4.54345,1.1199766666666666,7.83462,2.72993,3.16724,3.523663333333333,4.896125,4.71889,3.43433,2.42017,2.8080499999999997,1.9335166666666668,3.6301,2.362205,2.2033925,7.170162,3.1329733333333336,2.81495,4.261665,22.362982375457875,0.6722733333333333,2.812335,4.52874,4.66528,8.52345,4.713265,4.589885,4.33295,6.991196666666667,3.592035,1.61318,4.7660116666666665,3.14399,1.090934,1.090934,1.090934,2.30234625,1.6414775,3.454715,1.5628375,3.005805,1.5282499999999999,2.77413,2.41248,2.891275,1.5628375,3.30048,2.58644,4.1836400000000005,4.87375,4.966635,0.7529075000000001,3.16528,2.666505,4.633155,3.348075,2.868515,2.3614675,1.71962,2.171945,1.438382,3.530825,1.7153625,4.581775,10.760518666666666,2.6140766666666666,2.5,4.787247499999999,4.713166666666667,4.477533333333334,6.3816,2.20635,5.3644875,4.458205,0.9690916666666666,1.1743157142857144,6.490371000000001,4.537745,2.4555675,3.56217,1.9530075,3.81834,4.777915,4.43411,4.051965,1.2587785714285715,4.17755,4.5856,4.59547,6.148041,3.3371,5.2201,4.39854,4.745945,5.0712,3.5172333333333334,4.991505,1.82742,3.35355,3.066695,3.23731,3.860395,6.09765,4.395325,2.6111033333333333,3.5474333333333337,8.89069,4.728565,3.21409,3.43184,3.23311,4.375295,4.19971,4.641195,6.664666666666667,3.617585,2.67079,3.9238758333333332,2.5339,4.214595,2.2822766666666667,6.3872975,1.599915,4.34334,4.671705,11.783372499999999,0.4980678571428571,4.203205,4.954455,0.6657835714285715,3.620405,3.86817,4.116625,0.9482290000000001,4.81913,4.75323,2.5300466666666668,9.86767,3.2003133333333333,1.8888066666666665,2.19803,3.75337,6.0031,0.5555466666666666,3.833035,1.9882425,5.23275,0.7001938461538462,4.223505,5.5916,5.97035,3.530345,6.466374999999999,4.636925,3.4668375000000005,2.5532266666666668,2.79556,4.229815,4.480315,4.93654,4.87123,5.47535,3.126583333333333,6.539448333333333,2.7806,2.974908,2.0739175,4.385175,2.1860866666666667,1.49784,3.0724766666666667,3.0724199999999997,3.1235733333333333,3.481033333333333,3.6017333333333332,3.12898,2.584966666666667,5.63455,3.1956633333333335,3.722405,4.784655,2.681763333333333,1.175888888888889,3.0630733333333335,2.9341399999999997,3.96681,2.9365466666666666,3.083546666666667,4.9952716666666666,2.0983266666666665,1.6958625,3.056525,3.69606,4.451325,1.06837,4.12373,3.038405,3.9712,2.92674,4.818851,3.958985,3.325355,4.10489,2.23004,3.829425,0.63489375,4.64218,4.936885,16.958122727272727,3.1636633333333335,1.09419,3.82584,0.611235,2.700125,4.343045,1.895065,1.2300671428571428,3.71479,4.626035,3.047136666666667,0.85283,2.61271,7.8167,3.904685,5.53085,4.769535,5.0159,3.2032566666666664,3.6178333333333335,3.2497833333333332,7.188338333333334,3.855855,4.914805,2.0275,0.4332427777777778,2.4937,3.52155,2.331935,3.883485,3.78473,2.861893333333333,4.559345,0.7054191666666667,4.53661,3.598135,2.599735,1.1172666666666666,2.67041,2.0145566666666666,4.814305,3.85195,2.08999,1.5942285714285713,3.514585,4.464165,4.37437,6.0609616666666675,2.155326666666667,4.74338,4.33911,3.85449,1.990244,4.116765,6.004076666666666,4.76613,2.71271,4.818675,2.682145,2.809745,3.95177,3.85424,1.3273666666666666,4.63768,2.07755,2.6499099999999998,5.106725,5.106725,5.12565,1.5550760000000001,4.9389,0.91298125,1.7840599999999998,5.0318,2.54536,1.4286733333333332,3.0327300000000004,0.924432,4.276166666666667,4.659765,2.83286,4.89359,4.08638,3.676825,5.17027,3.43252,3.5906333333333333,2.7172533333333333,2.4512733333333334,2.566275,2.82658,4.17769,1.65916978021978,2.9627033333333332,4.437055,4.82833,2.1969091666666665,4.106355,4.69232,5.002025,3.3785666666666665,5.2546,4.89082,5.31345,4.816195,3.46214,3.502645,3.67096,4.328105,5.3957,4.705795,4.90661,4.47452,4.454005,0.6965533333333332,4.93508,4.416585,3.90527,7.10147,4.15774,3.850635,4.27084,4.74167,3.292,3.49014,2.1132625000000003,4.4011575,1.8313275,1.3449628571428571,3.5372,2.12389,2.46936,3.8844813333333335,3.4088666666666665,2.712065,1.1899,1.9648025,4.505695,3.574775,1.82281,1.82281,3.57457,1.603236,3.1111233333333335,4.43382,3.544125,3.792965,1.56297,2.020545,3.4457358333333334,2.149825,4.05091,4.290155,4.269785,3.99706,6.528401666666666,2.7062,3.74451,4.5386,4.229465,3.1928,4.1134,4.00302,4.287605,2.140685,2.47108,4.37272,3.94681,3.69766,3.58952,1.674315,3.686645,4.376675,4.499905,4.196675,3.8367549999999997,3.8367549999999997,3.1347058333333333,4.00391,4.276615,3.88856,1.6409600000000002,7.2332125000000005,3.73973,4.906485,4.237825,4.15749,3.66761,4.870905,2.99644,3.40863,2.713825,4.988485,1.8824100000000001,4.067625,5.559558888888889,5.0999,0.685295,4.7569275,1.1289799999999999,4.874655,4.415055,4.502325,4.161035,5.16915,3.5554333333333332,3.5554333333333332,0.8404769999999999,2.1558525,4.893425,3.423535,3.99381,4.742145,5.5759,3.35331,4.148495,1.3761616666666667,2.753715,1.681575,1.24911625,4.216172,0.795814,2.44938,3.0886666666666667,1.2395733333333332,2.10381,2.6373933333333333,1.24217,6.4298,1.9916275,2.4377133333333334,5.6206,1.955265,2.6874033333333336,2.88526,4.594655,3.7606,3.3407999999999998,3.999366666666667,1.6929500000000002,2.030619166666667,4.197335,0.6402771428571429,2.157033333333333,2.2778549999999997,3.17202,2.8134766666666664,1.1467399999999999,0.8558333333333333,2.4904366666666666,4.1218,1.1843942857142857,2.0772575,1.2321,5.2816849999999995,2.177555,4.92523,4.3998,4.258805,4.97234,5.36335,4.104045,4.167325,1.4959583333333333,3.7637,1.7468419999999998,2.3949599999999998,1.1986371428571427,4.3363,2.06495,7.1490100000000005,4.081365,3.85451,1.4482659999999998,6.9640775,3.58005,1.5472966666666668,4.116655,3.160455,3.80044,3.660325,1.967715,1.967715,3.245293333333333,1.3365566666666666,1.3365566666666666,1.990244,2.83126,2.16583,1.32264,3.447566666666667,1.04332125,3.0463,2.34871,1.9159575,1.5310683333333335,2.2143475,2.117945,0.30449588235294117,2.4737975,1.1953933333333333,2.3571,2.2066066666666666,2.445135,1.0486144444444445,1.094754,3.7226,3.124303333333333,1.967715,1.7745825,2.2085966666666668,2.4764399999999998,2.4049733333333334,1.780452,3.0698133333333337,1.11831,3.2218666666666667,2.69751,2.53237,1.5206899999999999,1.014728,2.5225,1.014728,2.5225,0.68367,0.68367,0.47755000000000003,2.309855,2.273286666666667,0.68367,2.19734,2.322556666666667,2.3468325,1.7223775,0.6959500000000001,0.68367,0.68367,1.6715060000000002,1.6715060000000002,2.00334,1.7745825,0.68367,2.31058,0.4641207692307692,2.95937,2.019486666666667,2.5418,2.5222666666666664,2.5222666666666664,0.3851195,0.3851195,1.990244,2.02766,2.15624,2.03518,0.3851195,3.4969,2.4948975,1.575856,0.623175,1.575856,0.623175,5.65512,2.6191833333333334,3.9601333333333333,2.5768133333333334,2.9119266666666666,3.002553333333333,2.8006499999999996,3.4954666666666667,2.47011,1.7272075,2.81284,3.090256666666667,2.4041799999999998,1.6715060000000002,2.5995992063492066,2.5995992063492066,2.73626,2.129735,4.317315,2.2911033333333335,3.2770833333333336,2.751,1.444454,2.3675225,2.33866,0.8047636363636363,1.6678525,3.5715,1.6742819999999998,3.103213333333333,2.54014,2.6498,3.8594666666666666,1.5925316666666667,3.4842,2.9923266666666666,4.231933333333333,1.204726,0.22546689655172414,1.274767142857143,1.274767142857143,1.0160722222222223,2.911286666666667,3.879433333333333,2.579353333333333,2.192736666666667,2.192736666666667,2.1445775,1.5588300000000002,0.9666460000000001,1.7303300000000001,1.7303300000000001,0.68367,1.990244,2.8331233333333334,3.384866666666667,2.34871,2.16824,2.16824,2.16824,1.1017422222222222,1.4602714285714284,1.4602714285714284,2.389055,2.8240700000000003,2.6736446843434343,3.64711,2.49076,2.4751833333333333,3.64288,3.746125,6.621315,3.720395,4.428655,3.9736999999999996,13.388375,4.774985,3.419365,0.963875,3.814975,3.10256,2.4312,3.69973,5.0737,6.198138999999999,6.1738,0.48577764705882354,3.735475,2.901355,3.82006,2.439105,4.40263,5.0721,3.9334,8.23377,3.640765,3.629005,4.026115,3.228263181818182,8.057031794871795,3.24149,2.6671633333333333,3.44682,3.770825,4.798545,4.076005,6.523417,3.93413,1.344554,3.01997,0.9107225,4.717905,2.959165,2.772955,3.899625,3.25109,2.64905,4.795795,3.828635,8.78297,3.947975,4.556713,2.6424933333333334,5.0184,2.908795,0.71506,0.71506,3.340065,3.85869,2.17149,2.23044,3.87112,2.94454,3.051085,2.028645,1.95773,2.92157,2.3947533333333335,1.13200625,3.105925,4.68335,8.06179,1.590792,2.946865,3.09394,3.228705,2.86773,8.32633,4.07513,3.452033333333333,2.9130299999999996,3.844665,3.3572666666666664,2.9399766666666665,3.1117866666666667,3.887935,3.83552,4.59981,3.89368,0.3971906666666667,1.5885533333333333,2.22931,1.8194975,4.600995,3.521935,2.791173333333333,2.208985,4.400095,3.7631,2.0305,2.56417,0.89444,2.175675,2.53452,2.53452,5.12555,1.84325,2.9215766666666667,2.3377399999999997,1.9987599999999999,1.7883466666666665,3.109815,3.728415,4.712865,4.31997,5.3472,4.68959,2.8133,3.0911500000000003,2.01194,4.561115,5.432296666666667,2.02061,2.937523333333333,2.2060825,2.34631,3.8223833333333332,2.3853266666666664,5.119,3.9848,3.637255,4.249745,2.809336666666667,3.5039,3.848915,2.2751033333333335,2.3656900000000003,0.4218935714285714,3.7064,2.56581,3.129755,6.1027,4.652455,5.847638333333334,1.929435,1.5921833333333335,3.281685,5.124,6.29635,5.5904,2.9988799999999998,2.2203933333333334,3.620215,2.11641,4.615165,2.20422,2.3120575,5.29025,4.85761,4.20953,1.67585,1.897955,1.059476,1.059476,1.139184,0.8561985714285714,0.7340880000000001,1.7947425714285714,4.34029,10.082719166666667,3.89542,4.259915,4.019435,5.8327800000000005,2.633245,1.67641,3.4430825,2.83986,4.87879,2.3909433333333334,2.5775033333333335,2.7803233333333335,3.135403333333333,2.271916666666667,3.12777,3.299526666666667,2.8914733333333333,3.4646000000000003,3.4202,2.93848,2.7710733333333333,2.9974633333333336,2.26194,2.946486666666667,3.0213433333333337,2.80892,3.2414133333333335,2.17338,5.46459,3.11073,4.020388,3.2182833333333334,3.008383333333333,3.705133333333333,2.80102,2.7884333333333333,3.139666666666667,3.146793333333333,3.3432666666666666,3.117976666666667,1.8433425,2.6116,2.551883333333333,2.901275,2.901275,3.2930833333333336,3.0141466666666665,2.40439,2.7024166666666667,3.0052833333333333,4.1497,2.89652,2.694275,2.7690333333333332,2.837353333333333,4.208025833333333,4.652605,1.6003416666666668,3.3532666666666664,3.7336333333333336,3.37941,3.2451666666666665,3.6193666666666666,3.469333333333333,2.6602,3.3822840000000003,1.97992,2.886421,3.4062,3.3846666666666665,2.523406666666667,2.4275800000000003,3.908666666666667,2.8852233333333337,2.993916666666667,2.436955,1.1534583333333333,3.2110800000000004,2.63732,2.2031066666666668,2.422905,3.0363233333333333,3.1356033333333335,1.937814,5.487575333333333,2.4509333333333334,0.901842,4.42002,1.9198820833333334,1.6718166666666667,4.51424,3.8204,3.28382,2.45922,1.3734025,3.33687,2.896245,2.622995,0.386352,2.1214,0.386352,1.959495,1.3734025,2.66153,3.729145,2.353675,3.186385,3.23301,0.49434666666666666,2.8161666666666663,1.0204,0.44336764705882353,3.8121,3.98688,4.8895,2.593675,5.39685,4.125815,3.65593,1.91836,4.081466666666667,1.748904,5.3528,2.43241,4.16644,4.22317,2.8596266666666668,1.9684266666666668,2.072686666666667,1.3983516666666667,1.99722,1.020715,1.020715,4.40355,2.2807666666666666,5.955346666666667,2.580275,2.99427,1.505795,2.3995534999999997,2.699825,6.70405,4.9258625,2.2260375,2.44248,2.3995534999999997,2.208205,4.5433485,2.8415624999999998,6.647819999999999,2.580275,3.3314449999999995,3.72409,3.0827566666666666,5.484,4.904305,1.88242,2.06604,2.3440225,2.45422,4.796595,5.2029,1.8758875,3.7739,1.60389,1.6158575,5.3475,10.095643333333333,2.027276666666667,2.1889566666666664,2.36314,4.170445,4.083345,1.9408225,4.923345,4.393625,2.64717,38.87391304761905,2.8191100000000002,3.0094333333333334,0.4108811111111111,4.591754999999999,2.2068733333333332,0.9060044444444445,3.732985,3.596635,1.8979475,1.78984,2.4289466666666666,3.61256,1.3576014285714284,3.1817686666666667,3.711485,4.651195,0.913699,4.77803,4.91259,4.806375,2.84887,1.55392,3.726095,4.551315,3.74427,3.25802,3.563535,4.00321,11.531795959595959,2.7284400000000004,3.14965,3.936495,2.70341,4.304135,3.2465,2.09346,3.027545,5.2238,4.57144,5.14145,5.0839,2.57454,3.717125,4.41475,3.42563,4.749045,4.396655,0.12829347826086956,2.36291,5.15445,2.779345,1.5506266666666668,1.17195,1.17195,2.13051,2.76918,2.75503,1.923126,2.9391166666666666,4.344925,2.58184,4.485038333333334,0.5892735714285714,4.606145,3.71503,4.782715,4.750945,4.331695,1.13810625,1.0057125,4.290033333333334,2.9444433333333335,3.0637266666666663,3.8387006969696973,3.89981,6.33423,5.3348,4.098445,3.63917,2.1757616666666664,1.5097783333333332,4.475905,0.3245746666666667,3.30866,3.70956,4.008175,14.288789999999999,1.9364512500000002,3.0790633333333335,0.68724375,4.52677,8.637285,3.39849,1.8516533333333334,5.77445,3.14917,1.1178655555555554,4.840565,3.01031,2.83935,4.89528,3.3737884166666667,1.0259875,6.603326666666666,0.73559375,4.913785,3.1766746666666665,1.4096,2.0991704166666665,3.215745,3.215745,3.992045,4.29093175,1.3193125,2.501675,2.906185,3.43507,2.97252,2.499485,2.947605,3.36873,6.674755333333334,6.2025,3.917225,3.257605,4.49915,4.53459,3.52065,3.36707,3.51426,3.991155,4.506535,2.4928866666666667,2.6573166666666665,1.5868883333333335,2.28733,2.23578,1.55743,2.7219599999999997,3.6041000000000003,3.401666666666667,3.052433333333333,2.48092,1.4871366666666666,1.6481466666666666,0.4817463636363637,2.68088,1.5775857142857144,1.8948525,3.4370666666666665,2.46139,2.6066966666666667,0.93758625,2.1898975,2.544285,2.938965,3.56472,5.21195,3.719795,2.977785,2.2689833333333334,3.434855,4.31947,2.67488,3.4531,2.012885,3.85767,2.72821,4.008775,1.35631,0.632432,2.3640025,3.28301,3.1517,3.98437,4.7809800000000005,9.10255,3.1912033333333336,2.24095,1.76142,1.793874,1.793874,2.9334233333333333,2.4897933333333335,4.966395,4.65017,3.54036,4.89627,4.19579,4.248205,3.1838866666666665,4.304595,7.91802,2.57905,0.502068125,3.1781433333333333,1.3529333333333333,1.0128485714285715,1.8385466666666668,0.7659659999999999,2.1607425,5.26735,5.2122,6.01842,1.11182,7.46,2.01922,1.5248616666666666,2.6029733333333334,4.103765,3.2121833333333334,2.398325,3.687085,3.0977766666666664,4.327266666666667,2.9159366666666666,2.7986566666666666,2.9403466666666667,6.43432,2.55669,3.826205,3.8582016666666665,3.3325216666666666,1.3207966666666666,1.114085,4.163585,2.6802266666666665,3.07262,5.3185175000000005,2.83881,2.08532,2.31723,3.341705,3.7381333333333333,2.34278,3.9088775,2.99473,5.1171,2.3850377499999995,1.8703925,4.692305,5.5,4.471,4.03952,1.7677233333333333,2.336595,1.908925,3.25133,1.54145,0.9849483333333334,2.7889283333333332,2.0667225,1.9758525,4.16613,0.6881741666666666,5.62229,1.35997,0.7797027272727273,3.5081333333333333,4.0412,0.6678671428571429,3.155777,3.227060625,0.8558333333333333,4.3989,0.17752119047619047,0.17752119047619047,0.17752119047619047,0.17752119047619047,0.17752119047619047,0.17752119047619047,1.964054,3.750225,1.964054,1.964054,1.8208433333333334,0.17752119047619047,0.17752119047619047,3.2682300000000004,2.64264,3.22036,3.22757,2.26348,3.62763,1.3368371428571428,1.632696,3.3766855,1.414828,2.8137566666666665,2.616559111111111,5.816606666666667,4.169495,4.091585,6.5461,4.585425,4.53122,3.39973,3.80166,7.27104,3.9397,3.6780666666666666,2.2728766666666664,5.249716666666667,2.61514,2.133835,1.8101,4.604175,5.25225,5.05335,5.0594,5.4361,4.351785,4.697305,0.6810272727272727,0.7143499999999999,0.7143499999999999,4.637675,2.3248266666666666,3.89156,1.0361757142857144,4.54218,1.4946428571428572,2.3403,2.59088,4.579466666666667,4.579466666666667,6.9534,4.4164,1.387325,10.020771666666667,2.9079866666666665,1.2354111111111112,4.783365,4.874585,3.49139,3.24277,2.641085,4.294366666666667,0.7811533333333334,3.292533333333333,3.2871666666666663,3.8243666666666667,3.19624,1.51677,1.5310633333333332,4.382840833333334,3.1420833333333333,2.954686666666667,3.424533333333333,5.257709166666666,3.473675833333333,0.794231,1.6814833333333334,3.6549666666666667,2.15985,3.7432,3.4048,2.998866666666667,3.4214,2.97315,2.437116666666667,1.00133,3.1376666666666666,2.66601,3.48465,3.216095,3.865065,2.6192433333333334,3.214933333333333,2.81205,1.500208,2.167546666666667,2.7832028571428573,3.5739,1.7840520000000002,3.1490566666666666,1.8127833333333332,3.6811000000000003,5.255141666666667,4.942138666666667,2.43953,2.55435,2.673875,2.4693875,1.622642857142857,2.26727,3.1778710714285716,2.36709,3.514866666666667,2.7351,3.7450133333333335,3.067865,1.2213444444444446,1.3077325,1.73392,2.1794875,3.08679,3.451166666666667,5.05945,7.669555000000001,2.823715,5.10285,3.797425,15.313430666666667,0.477773,11.404965,0.8526311111111111,3.09002,2.41528,2.1139,2.94061,1.580316,1.4615719999999999,2.4301366666666664,1.249182,2.9161140000000003,1.9947533333333334,2.8696099999999998,2.2467799999999998,2.6527866666666666,1.5863500000000001,0.6254158333333334,3.06913,2.4367300000000003,2.89261,1.1017422222222222,3.5285333333333333,0.7222216666666667,0.34318923076923075,1.9723033333333333,4.448845,4.446245,4.658345,0.8018509090909092,4.05584,4.58101,1.1297675,2.295135,5.055571666666667,3.343625,3.73406,3.933415,3.911985,1.88001,3.95432,2.7152600000000002,2.822515,3.545555,2.68491,2.892345,3.824965,3.29068,3.64855,2.020375,3.38414,4.661235,1.2601066666666667,4.644275,2.3104625,3.895565,5.234203333333333,1.9435925,2.667196666666667,3.0137,5.89917,2.43804,3.1989,5.0188,3.9601333333333333,3.85772,2.0038,2.80995,4.800015,3.6824333333333334,4.052745,3.702733333333333,3.056316666666667,2.801296666666667,4.071166666666667,3.150536666666667,2.5475666666666665,2.648,0.4475105555555555,2.28288,2.1320775,4.51666,4.696915,3.1120466666666666,2.72579,3.161576666666667,8.29427,3.4050450000000003,3.933905,2.7565399999999998,4.118455,3.055225,3.6071475,2.8196266666666667,2.2425175,2.7201533333333336,6.4218,4.549135,1.9449100000000001,3.325485,3.078515,2.65376,4.440084000000001,1.697954,6.32264,3.875595,4.879055,4.257645,6.37965,3.682665,6.91357,3.636495,3.181425,0.6309721428571429,2.331105,1.672205,2.798173333333333,3.1076575,3.87054,3.978265,5.33215,2.60364,4.613115,3.725633333333333,3.8937333333333335,3.1260933333333334,4.51198,4.592965,4.790995,2.7572033333333335,6.005896666666667,4.60581,1.4213533333333332,5.43325,3.686265,2.74218,2.377815,2.26544,4.492991333333333,1.2231142857142856,2.484253333333333,1.99203,3.812975,4.13065,2.58506,3.4853666666666663,2.8996829999999996,2.4050333333333334,3.990485,1.3658860000000002,2.30651,2.4103266666666667,2.7455033333333336,2.480916666666667,2.5876733333333335,2.71655,4.008365,2.990693333333333,2.85511,4.048235,2.17563,3.80885,3.38167,1.639958484848485,1.639958484848485,4.666525,2.9127333333333336,1.799,1.3193,1.98318,2.0030125,1.187786,1.48299,0.611901,1.5943866666666666,1.5145799999999998,2.7972266666666665,2.203186666666667,1.7814066666666666,1.8439666666666668,2.1803966666666668,1.3598133333333333,1.7256866666666666,1.8428366666666667,2.541425,3.70215,2.89381,2.9423733333333337,2.63525,5.405025,2.769775,4.066985,3.940150833333333,2.1246,3.969865,3.0237,1.98721,3.54792,1.8605725,3.01773,3.666125,1.9107475,4.276905,3.3664,4.092525,3.3928999999999996,0.8442888888888889,4.611655,3.84858,3.20923,4.1461,2.4416266666666666,4.42653,4.752605,4.78392125,9.261084166666667,3.615045,4.31976,2.8577433333333335,3.61967,4.48196,2.13335,2.42554,3.91975,2.191035,5.9220500000000005,1.8609259999999999,2.71434,6.753785,2.9232633333333333,4.257426000000001,1.269712857142857,4.57423,4.455845,2.9751966666666667,4.8126,4.91555,6.467880000000001,15.655430892857144,0.6126470588235293,1.0486144444444445,3.10746,3.81444,3.586465,2.1572925,3.21535,4.101305,4.823925,2.646365,4.55262,1.7199499999999999,1.7199499999999999,5.2964,0.76557,1.762234,3.154815,3.847075,0.3671992307692308,1.9851066666666668,3.9334210833333336,1.1655016666666667,3.041536666666667,2.684973333333333,2.81979,7.88941,2.4985666666666666,3.7771333333333335,2.0292166666666667,2.2161733333333333,3.753125,3.757095,3.685355,6.8403228333333335,1.8744575,2.63295,4.513915,6.7143475,1.9415666666666667,2.36498,2.5612533333333336,1.4549833333333335,2.71576,1.69305125,3.926455,3.70643,1.5157925,1.852287,1.852287,2.6300433333333335,5.4373,4.189430000000001,3.9119,4.367335,4.321765,3.37662,3.714025,4.32416,3.5151,4.260305,3.76258,4.40095,0.9190910000000001,0.36286375,5.1274,3.803905,2.39883,7.88439,1.5771533333333334,4.6591,4.14823,0.37714416666666667,2.14347,1.3843366666666668,1.8688166666666666,1.9888666666666666,5.574834,3.256595,3.22596,4.7462275,4.68946,4.50544,0.5613223076923076,1.943025,0.600593,5.779858333333333,1.443754,4.96309,1.8984375,3.13331375,3.300275,4.03565,4.1289,5.14735,0.8500536363636364,3.25763,3.87809,1.911275,1.6653125,3.73398,3.13877,3.546065,3.860245,5.4507142857142865,4.221045,5.54265,2.8125766666666667,0.6196644444444445,3.324996666666667,3.54376,0.5440546153846154,3.85129,3.78738,4.13382,2.917675,2.699676666666667,4.884485,3.096315,3.16787,2.230015,3.72538,1.691868,3.30443,3.80658,0.5493384615384616,3.67767,3.890605,3.15292,4.118295,4.24715,2.855425,3.862045,0.607416,3.0259533333333333,3.7273555555555555,4.53053,3.682866666666667,2.483075,3.418533333333333,2.483075,4.670505,3.25359,2.93709,1.5500550000000002,2.8793699999999998,1.891555,4.072985,2.7027,5.2078,3.1003966666666667,2.7169366666666668,2.9937966666666664,2.340217142857143,2.340217142857143,2.340217142857143,2.247246666666667,1.1105633333333333,4.534915,2.4514333333333336,1.7230999999999999,3.9834,2.39495,3.0941766666666664,4.06106,5.55495,3.50493,1.941355,1.010864,4.04918,1.9072600000000002,2.10888,3.10103,3.321465,2.041955,3.55181,2.477745,1.579556,4.91471,4.099795,3.28293,3.635085,0.7609266666666668,2.3346,4.108975,7.62542,4.04651,3.096325,3.08879,3.45889,3.769375,1.66181,2.3438625,4.67585,2.0560525,4.24843,3.344675,5.42795,8.42468,3.97617,3.506175,3.283115,4.884345,3.84381,3.1568674999999997,3.1568674999999997,3.765125,3.9636033333333334,4.19622,3.899605,4.278365,4.36314,4.06427,1.1017075,4.18639,4.123975,5.14645,7.82447,5.11175,3.8244860000000003,1.9391800000000001,1.5042333333333333,2.4121474999999997,4.845595,3.813875,4.82329,2.2251733333333332,4.61991,4.942435,5.20085,4.88001,3.0475766666666666,3.5318,4.038155,5.15605,4.49926,3.647295,6.715936666666667,4.91012,2.3080066666666665,4.926405,3.981005,4.00805,3.70138,4.64954,0.7541554545454545,4.192195,4.32328,1.2049414285714286,1.297208,4.918015,4.66663,8.898259,5.3448,4.525165,5.8529,3.05848,2.592706666666667,5.05395,1.7673425,1.7673425,2.794395,1.6663033333333335,2.9853458333333336,3.2057233333333333,1.95436,4.2603836363636365,1.46497,2.02861,5.4933250000000005,3.78599,3.6033,3.048135,3.90842,3.907475,2.9380366666666666,1.0036088888888888,4.026535,3.145443333333333,3.792145,4.202075,3.7534216666666667,5.3556,4.47774,4.66246,3.503995,5.10665,6.45725,4.639315,3.2103,3.23941,1.9674275,1.9674275,3.849225,3.898535,2.48151,2.7785766666666665,2.0796668181818183,2.57085,1.8874533333333332,1.8874533333333332,4.24375,3.4943,2.150115,3.60552,2.796335,2.00442,1.2860575,0.9464488888888888,2.81371,0.45186421052631576,0.8611388888888889,2.912855,3.84892,0.4472936363636364,3.95625,1.90699,5.46065,3.431835,7.251882500000001,4.15611,5.157769999999999,4.555655,5.14525,4.12138,1.79013,1.896278,3.769095,2.922695,3.73834,1.2631366666666668,2.951445,4.50925,2.775365,2.593665,2.531295,4.39127,3.253955,3.24029,3.905695,3.42513,3.37719,3.193235,1.0619871428571428,2.0443,2.351215,2.67682,4.443115,7.6335,1.005256,1.5879433333333333,1.5879433333333333,1.8596879999999998,3.87352,2.68869,2.983605,5.3167625,2.9313766666666665,1.2023725,1.2023725,1.2023725,2.8843,2.9376925,4.809025,3.37752,4.20945,3.320245,3.52869,3.047075,3.4828941666666666,3.789705,4.02597125,2.690265,1.187786,2.125915,2.690265,3.57548,1.3352366666666666,1.9320466666666667,1.7681175,5.678050666666667,3.073885,6.314769,5.678050666666667,3.240884,1.6995083333333332,1.6995083333333332,2.10151,4.808,1.6995083333333332,2.42027,5.71369,2.381435,2.751895,6.08949,3.253345,4.6793,1.9571733333333334,3.206,4.67978,1.9426866666666667,2.401705,4.03198,1.9571733333333334,2.72087,1.954515,6.64062,2.653475,1.175188,2.690585,3.032425,3.346129,2.192745,2.1960990000000002,3.63926,1.952254,2.10214,3.0256,2.152125,2.792185,3.95267,1.9603966666666668,2.700705,2.795735,6.44082,2.40961,3.30959,3.349065,3.349065,8.82571,1.16123,3.293755,2.35087,3.174605,2.383425,1.3981966666666665,1.3981966666666665,4.32601,2.24877,7.330945,2.390325,2.81898,3.3767,6.61002,2.488575,2.3259,5.38608,5.38608,2.2088,1.4794875,1.1956175,1.1956175,1.4794875,2.154646666666667,1.3248333333333333,1.188825,1.6338266666666668,1.7659466666666666,3.6868,1.97541,3.33271,2.96935,2.568355,2.73346,2.977105,2.33483,3.3425525,3.3425525,6.24255,2.35719,3.061815,3.05376,3.59697,2.573035,2.81484,2.566255,5.8581425000000005,1.9850125,1.5468833333333332,1.3725233333333333,2.262696666666667,5.67565,4.160803333333334,3.5040933333333335,3.365315,1.608005,1.608005,1.608005,4.07039,2.43504,1.188825,3.292935,3.391745,1.349295,5.1850125,3.1351125,6.23164,4.04895,1.768095,3.509295,2.26976,2.197275,3.31003,4.77642,2.99736,1.59184,2.72309,2.741695,3.089935,5.39718,1.8216,3.36839,2.606105,6.44679,4.99508,2.190665,2.380035,5.74357,5.08941,5.31596,5.00832,0.6082620000000001,0.6082620000000001,2.840838,2.840838,0.8290179999999999,4.8234,3.42946,3.64366,4.03558,5.43158,2.026145,4.537893333333334,4.537893333333334,2.066755,3.257065,3.44745,1.114002,4.36579,3.001575,3.021275,2.893185,4.66522,2.799535,1.997215,3.07287,3.037415,2.86647,4.99988,2.45006,1.51167,3.858895,5.96574,5.78478,4.56969,2.794755,3.61144,2.023795,5.73628,2.895805,3.71396,2.73642,6.34744,3.87405,2.645025,2.72306,2.55355,5.59859,2.27931,2.739455,2.78534,7.46184,4.70865,3.581545,1.85283,2.21565,5.64448,3.187275,3.45275,5.16311,3.265005,2.74606,2.77414,2.864225,1.8673133333333334,2.097155,1.58131,1.8004733333333334,1.9181333333333335,2.054676666666667,1.5883,2.2299366666666667,1.64408,1.8673133333333334,4.90824,5.00109,2.110425,1.6341625,1.6341625,3.4330766666666666,3.4330766666666666,2.6526099999999997,2.6526099999999997,2.893405,2.244765,1.892815,3.82329,2.2553875000000003,2.2553875000000003,2.3507724999999997,2.3507724999999997,3.56403,2.123735,4.42822,2.328845,3.303635,1.8505933333333333,1.8505933333333333,1.94818,3.93781,5.0517,1.3352366666666666,4.66905,1.9603966666666668,2.4681,3.79818,2.90161,1.968055,2.46887,6.41411,2.22396,5.72538,3.068,3.641635,2.99422,2.90081,6.67689,3.18068,2.158825,2.519692307692308,2.71852,5.4382,3.364585,1.492452,1.492452,3.6519,4.64386,4.50773,5.77592,2.795245,2.84108,1.817195,2.985185,1.74302,2.98976,2.149715,0.785762,0.785762,0.785762,2.2271025,5.2751,2.2271025,2.52528,3.611605,1.700815,2.16074,4.09678,4.20305,5.45769,1.6296733333333335,5.58875,1.6296733333333335,1.6296733333333335,2.54892,1.97665,1.822505,5.94684,1.822505,2.653385,4.18011,2.02896,1.661915,2.86175,2.9083366666666666,3.1731491666666667,3.094163333333333,3.60201,1.3547133333333334,3.88482,0.7507072727272728,4.14338,4.24423,2.68765,2.68765,0.6852790909090909,3.855033333333333,2.55845,5.6053,4.89358,4.08944,5.2689,4.19046,4.10974,5.01745,4.24191,4.217235,3.636,3.878995,4.73307,5.1372,3.30143,3.34502,3.842875,2.314583333333333,1.2423899999999999,4.28019,3.413835,3.468725,1.2575228571428572,3.829625,3.973275,6.292484999999999,1.169235,5.1549,4.13623,2.36789,2.0468,3.25592,3.503355,1.98964,1.492452,3.91253,4.91812,2.65943,4.75345,3.149435,1.13266,3.01357,1.204622857142857,3.0490266666666668,1.7414366666666667,3.2205866666666663,1.8706125,2.61699,4.05023,3.144835,4.63277,3.21106,2.2104575,4.83612,4.30287,3.256015,5.3383,4.22898,2.536113333333333,6.01745,4.647375,3.1208816666666666,2.6783566666666663,2.849115,3.055806666666667,3.162153333333333,2.769823333333333,4.57683,4.1486,3.893585,2.41935,2.5817666666666668,2.3878866666666667,2.3829033333333336,2.2692166666666664,2.2413166666666666,2.3237099999999997,2.225905,1.1868525,3.0288070000000005,1.2441725,1.7722975,1.4976,2.697175,1.535045,1.86708,3.768635,4.19674,1.9237025,3.961925,3.776265,6.067638333333333,1.9871299999999998,1.603996,6.7289,3.255215,4.603195,4.14769,3.867215,2.303415,3.50538,2.439015,2.95176,4.276685,0.7065225,4.128275,2.2540299999999998,0.7773890909090909,4.87163,4.227265,4.0494,1.8443760714285715,4.679285,5.87825,2.762896666666667,3.1628900000000004,2.50979,2.09504,0.588187,3.07799,3.063,5.0717,2.44785,2.0204825,3.16254,1.02592,1.9518266666666666,1.9518266666666666,2.729445,1.9518266666666666,4.126685,2.711445,4.40841,4.309335,5.8331,13.539192499999999,3.2388999999999997,4.901025,2.75084,4.7153,3.191105,6.5242225000000005,2.865126666666667,4.43305,4.78425,3.94916,1.08803,4.87196,3.0569333333333333,2.70987,0.9697333333333334,2.1836425,3.109465,7.061778333333333,4.224575,2.83126,4.52087,3.245293333333333,4.19404,4.36535,4.380085,2.847355,2.8266466666666665,4.020815,5.67635,2.460115,4.422515,1.8542175,1.8542175,3.13898,4.691775,1.03884125,4.109718,2.266995,4.79747,2.5755966666666668,2.4547733333333333,3.162576666666667,2.2647633333333332,0.7064992857142858,3.427025,2.7843766666666667,5.20595,4.470465,0.221538125,4.957735,4.46025,4.153645,6.68688,3.007303333333333,2.85338,2.1643966666666667,2.9729233333333336,2.7220600000000004,1.40052,2.86011,2.66085,1.4376416666666667,3.165486666666667,2.9446999999999997,2.67135,2.89039,1.3242422222222223,4.181365,2.72023,5.1097,3.82923,3.671255,1.6222066666666668,2.49161,1.30438,1.862585,1.30438,4.94925,3.484666666666667,1.587598,2.3518525,4.08521,3.812065,3.04054,3.941465,0.3459335,1.36149,3.93932,4.38327,6.2946,2.0502875,2.841836666666667,2.9804033333333333,2.2706133333333334,2.77194,3.819915,4.725595,2.487045,2.4003099999999997,2.8570266666666666,2.6524466666666666,2.68265,4.199005,2.00547,4.46667,3.8315824999999997,5.99695,7.5544575,0.7407133333333333,0.85534,4.108355,6.645765,2.02816,3.54926,1.3852383333333333,1.3852383333333333,3.406165,0.4512233333333333,3.549995,3.57934,2.646815,3.78756,3.1395,2.824935,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,2.452335,3.009105,3.5812600000000003,3.01723,4.54477,5.7273425,2.949215,1.9323433333333335,0.839125,3.161625,0.7119725,5.405098333333333,3.472755,2.11372,0.7119725,2.076655,2.624315,0.90431,3.8406374999999997,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,4.26718,1.58351,4.44998,4.517005,1.8159079999999999,4.732455,4.14856,5.2841,4.568739166666667,3.4522482142857145,3.32836,4.351725,1.809665,5.216385,4.338955,0.7544214285714286,1.412447142857143,1.3257257142857142,3.15462,3.15462,2.959086666666667,3.79619,4.246325,3.543655,4.045175,2.82926,1.9543433333333333,0.4455585714285714,4.084165,3.03853,2.777015,4.059365,3.32399,3.060705,4.699885,4.44427,6.311237500000001,4.225385,4.601345,5.68575,4.322865,1.3175542857142857,3.072815,5.100783333333334,33.25838657070707,1.2840483333333335,4.257375,2.67919,4.52812,3.96542,5.0718,4.988125,0.41453904761904764,5.36565,4.33558,1.86794,1.98472,3.643025,1.6144475,2.44499,2.63518,1.6365675,2.933775,2.4049733333333334,2.829535,2.68058,0.5916015384615385,3.18073,3.794595,0.37047157894736843,2.590106666666667,2.82913,3.16868,3.900775,1.90135,4.411935,3.92199,3.296025,3.54489,3.111605,4.19116,2.9721,3.854045,2.12918,5.100783333333334,3.30369,3.416715,2.77684,1.732508,3.770685,3.592025,6.825408333333334,3.47981,4.77748,6.31196,5.160756,2.3289575,4.448975,5.9082799999999995,7.67234,2.47983,2.491795,4.895645,5.623866666666666,4.11009,3.6571,5.15538,2.673275,1.6096925,2.2056025,59.80503893545137,5.20965,4.27401,2.586625,0.8224880000000001,2.6988733333333332,2.8870233333333335,3.3877666666666664,0.7951744444444445,4.45873,0.7687622222222221,7.6195282142857135,1.9072600000000002,3.2874766666666666,1.740834,2.7532,2.4740233333333332,3.0193499999999998,2.4540133333333336,2.288606666666667,3.26359,1.5691899999999999,4.985100833333333,3.6802333333333332,1.3048675,2.891273333333333,1.4291133333333335,1.5079375,7.49641,5.84575,3.23954,4.257135,5.2681175,1.4038614285714286,3.424533333333333,3.57504,1.5726925,5.46305,3.38911,3.95664,1.6663025,2.9495941666666665,3.5693,3.78575,5.56545,4.224435,4.271455,2.2264975,3.98014,4.518,3.1408633333333333,1.415634,4.255425,3.316326666666667,4.16072,5.11395,3.872915,3.87754,4.45989,4.32484,4.17126,4.50181,3.765795,3.16568,3.996775,4.3128,3.13099,4.113235,3.77763,1.7601375,1.7601375,4.21987,5.0478,5.0163,3.50252,4.666715,3.3775999999999997,2.659955,4.88708,5.17445,0.7492318181818182,5.3319,6.726775,5.5136,5.8449,1.1110777777777778,3.1103,0.8458383333333334,0.8458383333333334,0.8458383333333334,3.661655,3.3608333333333333,2.584493333333333,3.5376,0.965952,5.04815,5.37955,3.021135,1.6497375,2.0043625,3.970615,3.81949,3.801945,3.081824,6.69295,3.520305,2.43944,4.625175,6.82015,2.723995,4.080735,3.60321,3.288765,5.50285,4.507625,4.92279,5.80105,3.138765,3.6073677777777777,1.93421,1.93421,0.7015881818181818,8.732218,2.04066,5.71215,5.59225,4.111955,5.46635,3.77436,2.871645,4.646285,7.5161525,5.6045,2.37167,4.361795,1.01083,3.660895,1.8728233333333335,0.8993244444444445,1.2278342857142857,2.6367833333333333,3.03023,2.72366,1.1291971428571428,2.5322366666666665,3.044356666666667,0.8690933333333333,2.7585433333333333,3.29126,1.66376,1.7827439999999999,2.9768033333333332,2.94666,2.7674566666666665,2.5434066666666664,1.749064,5.18205,4.219305,3.766885,4.288435,5.0284,3.306115,4.42134,6.37335,5.0098,4.2646,3.914735,10.77257,8.566814999999998,2.917453333333333,3.480265,1.9385733333333333,3.784145,3.31324,4.42181,1.0621066666666665,3.948445,3.67602,1.64325,3.821985,2.9073333333333333,4.2716,2.82218,4.00727,6.6708,7.603606666666668,3.99542,1.5373566666666667,1.5373566666666667,1.5373566666666667,4.71927,1.1176383333333333,1.4765375,0.47082111111111113,4.426340833333334,2.9462466666666667,3.525015,0.9560639999999999,1.16434,3.05925,4.241715,3.7817,16.440041833333332,4.13749,4.47127,5.977544999999999,2.7264733333333333,3.464315,3.16706,0.9188011111111111,1.4373575,3.99655,3.609815,4.46098,4.306695,4.350105,3.931425,2.706558444444444,3.499445,5.1302,0.54975,4.65459,2.273105,3.996905,4.812975,3.5113333333333334,2.500433333333333,3.9301150000000007,1.96519,3.68445,6.07445,3.0879366666666663,3.43736,4.28902,4.126355,4.534105,3.878205,3.43359,3.798235,5.03445,4.795305,3.84421,4.51217,3.779305,1.1080257142857142,1.6849875,6.299900166666667,5.8809,3.887895,4.691015,2.4777775,2.8071,2.7020966666666664,5.638063333333333,1.8960775,2.25219,2.9036266666666664,3.0204400000000002,3.3565666666666663,4.428435,3.06879,5.0139716666666665,1.18902,4.60877,1.0160116666666668,4.037885,3.351075,1.6400766666666668,4.31923,0.9369144444444445,4.847235,5.51935,4.978425,4.147585,3.7879474999999996,3.862985,3.02559,5.0028,5.9893,2.8485375,3.96151,2.461045,2.565685,1.98199,2.625915,3.388385,5.00085,1.04332125,4.4380875,1.2848875,3.323525,1.6135400000000002,1.04332125,0.2005935135135135,3.81186,3.059445,2.32547125,1.9973033333333332,2.76155,1.108825,4.13318,3.57837,4.71312,2.6019533333333333,6.1902,6.71069,2.711813333333333,3.3379333333333334,2.66779,0.8130900000000001,2.4054733333333336,6.12685,4.069145,5.3465,4.85325,2.0970866666666668,1.1795266666666666,4.15092,1.67342,2.1978725,1.67886,3.015425,1.8341575,1.9416,1.976145,2.0646975,1.8381425,1.3923271428571429,1.3485,1.96498,1.8309075,2.17833,2.2436966666666667,0.5244046666666666,1.1149580000000001,2.83849,3.163876666666667,1.9916275,1.75215,1.5947775,3.43629,2.21097,2.526645,3.22763,5.5274,2.907065,3.003026666666667,4.34816,1.533845367647059,3.663785,23.0502765,4.595746666666667,5.628,4.329075,2.0904866666666666,3.757925,4.689165,2.355165,5.08445,3.281413333333333,0.8531875,3.08192,4.55747,3.699715,4.15506,1.4351966666666665,1.8975466666666667,2.4149433333333334,2.15247,1.4616,3.3186633333333333,5.1022,4.242095,3.35366,3.925175,4.83017,3.754405,4.485145,1.23913875,2.771615,4.11431,4.79606,1.8392199999999999,3.3225866666666666,1.83789875,1.83789875,3.61572,4.60352,2.779526666666667,2.888033333333333,3.921475,3.939495,6.5805925,4.55749,2.280695,1.4373575,2.918705,4.34301,3.0463,2.5995992063492066,2.5995992063492066,3.2380600000000004,4.967805,3.66908,4.958505555555556,2.33634,3.4870368888888885,0.6514588888888889,0.6514588888888889,0.6514588888888889,3.286015,3.83073,4.033838333333334,5.54605,2.0060375,4.90622,4.685665,5.14165,3.411975,5.3246,2.54465,1.3757199999999998,4.513665,3.80059,0.4638935714285714,4.2406999999999995,4.760995,1.5055916666666667,5.0482,5.10865,4.482355,3.84782,3.687875,2.71002,4.50301,1.6600560000000002,4.490445,1.5871283333333333,4.128225,5.81025,1.11718625,2.937615,7.0591825,3.820845,3.3849666666666667,2.30091,3.874925,5.57645,3.0961933333333334,7.680156666666667,4.20349,2.087076666666667,3.15916,2.743263333333333,2.3504333333333336,2.738426666666667,1.7808633333333335,4.77065,0.62053,2.11927,2.11927,3.04876,3.495815,2.3095625,3.175505,4.186165,4.94237,4.31203,1.5220933333333333,4.481292404761905,4.23803,4.945035,3.62285,4.235334333333333,3.749441,0.48589333333333334,2.7732642857142857,1.0147,0.48589333333333334,4.12976,0.8541033333333333,4.174955,3.97946,6.541463,2.1658399999999998,1.0720725,1.126336,2.27157,2.8891833333333334,1.3674266666666668,2.465806666666667,3.40141,3.68133,2.01002,2.3182300000000002,4.564765,3.0380962499999997,3.989165,6.05925,3.529905,4.98511,6.56596,4.430805,3.441155,4.40851,3.68661,4.27597,5.0099,5.7969875,5.4303,2.4349333333333334,0.9375100000000001,3.57019,3.824815,4.156885,4.35302,4.22099,4.968315,2.541166666666667,2.4296433333333334,3.0705666666666667,2.3701666666666665,2.06371,2.8422633333333334,3.20675,2.4046133333333333,3.706775,4.423595,4.22433,5.35105,2.5524566666666666,3.413133333333333,2.865975,0.72075,4.015235,3.5773,4.612105,2.948096666666667,5.222306666666666,3.071905,4.53495,3.89896,0.5856261538461538,0.5452064285714285,4.343845,2.7449215000000002,3.04013,4.49078,4.207595,1.7037520000000002,5.2691,4.217265,2.6177433333333333,2.59904,2.2003225,2.01344125,3.534466666666667,3.1361333333333334,3.10215,2.974353333333333,3.5828666666666664,2.68405,2.86868,3.7144666666666666,4.3674025,0.541036875,0.541036875,0.541036875,3.3456363194444445,3.5208,3.5721000000000003,2.6270466666666668,2.8138966666666665,1.1017075,2.9669666666666665,3.0552466666666667,1.799755,2.7344033333333333,2.3856733333333335,0.9983277777777777,2.72506,4.62093,9.753260333333333,1.4863058333333332,0.488452,3.884485,0.488452,0.488452,0.488452,0.488452,2.1690975,3.927718,4.016805,4.982255,5.9684,2.7901166666666666,2.740326666666667,3.00097,3.4732233333333333,4.903735,1.1159883333333334,2.274723333333333,3.05226,2.575886666666667,2.9185700000000003,3.634865,2.19687,2.188565,1.1777666666666666,4.909675,2.628235,3.23829,0.928545,0.671277,0.671277,0.928166,1.856711,0.928166,0.928166,0.30014,0.30014,0.928166,1.6641666666666666,2.4235933333333333,2.95043,3.1364199999999998,2.53372,2.6107766666666667,3.2010400000000003,2.8410666666666664,4.52307,3.61833,1.8330475,2.2832033333333333,1.7675975,0.18273422312223858,0.18273422312223858,0.18273422312223858,0.18273422312223858,2.5547833333333334,2.5121766666666665,0.936072,4.833555,0.7684090909090909,1.6860220000000001,4.595923333333333,5.34335,4.439285,2.9672,4.40055,3.60912,1.7886300000000002,1.2777625,3.75633,4.57296,6.49925,2.369425,1.5212366666666668,1.9654366666666665,3.03313,1.4787966666666668,2.6816,2.7926333333333333,3.235696666666667,4.418325,3.782145,3.1001,4.907635,2.6228166666666666,4.1114,5.2288,3.96868,4.201645,4.592525,5.263669999999999,4.869808333333333,3.0570700000000004,4.9626850000000005,4.181935,6.4637,4.472735,4.529295,2.214735,3.015145,4.21822,4.77432,4.3444,3.97007,4.13346,4.095825,4.01856,2.4232466666666665,5.571,3.58401,7.366827499999999,6.05005,5.78395,4.986255,1.4900142857142857,0.976437,0.6112176923076923,1.78039,4.96187,5.5211,3.96776,1.59195,3.641525,3.047915,5.0426,5.07185,6.118021000000001,4.05516,3.190315,1.6459700000000002,5.2050675,4.00175,3.40214,1.72018,0.95874,3.880935,3.5072,3.67812,3.46738,2.20175,4.538665,1.7638466666666668,2.969253333333333,2.54932,4.13352,5.42455,4.71666,2.2441425,1.74056,5.61515,2.890556666666667,8.82753,2.82105,5.09405,5.802,4.39863,5.4386,3.607875,5.0577,2.1317,3.94253,4.766908,2.490245,4.32686,4.29514,7.223,4.987225,3.0913766666666667,4.182415,3.9087,3.0380962499999997,3.276455,5.1683,5.5341,2.504575,2.8847133333333335,3.2822633333333333,2.33203,2.600035,4.327175,5.92615,4.90396,4.62917,4.89502,4.41344,4.91958,0.6753976923076923,2.991656666666667,1.2116928571428571,31.169352911533817,1.90129,4.48373,2.88506,4.521435,1.742866,2.4640233333333335,3.1769810714285716,1.7178735714285716,1.7178735714285716,1.7178735714285716,1.7178735714285716,1.4591075,3.418455,0.3925977777777778,7.722565555555556,0.3925977777777778,4.296035,5.01855,2.062185,5.3605,2.8182,4.048802,2.376106666666667,2.4987366666666664,2.7068766666666666,2.1114966666666666,0.6252146153846153,2.6299766666666664,0.7275341666666666,3.2227533333333334,2.3069633333333335,2.331016,1.211915,2.331016,6.1306,7.5486450000000005,4.51596,4.314395,5.65815,6.20635,7.415873333333334,3.090145,1.5007625,1.5007625,2.35954,5.0228,3.699655,4.36054,6.182968333333334,3.871875,2.78129,3.831035,3.4308,3.46445,2.278965,0.8425560000000001,2.05278,3.619585,4.112875,5.263486666666666,1.9473925,3.982955,1.296982,3.201165,1.241754,3.4128000000000003,3.065376666666667,2.9379666666666666,3.23292,3.0218666666666665,4.87088,0.7033753846153845,3.385455,3.5582666666666665,2.685513333333333,2.3002933333333333,4.147713125,3.4391,2.1298533333333336,4.64295,3.500435,5.02955,4.01556,3.59511,5.5956,5.0602,2.2512133333333333,5.6327,2.3470641666666667,1.7568733333333333,3.1045866666666666,2.4699966666666664,2.7758266666666667,2.595195,1.9187900000000002,3.4052285909090907,4.18517,3.307015,2.363605,2.363605,2.619725,4.179835,4.21077,0.6428172727272727,3.430285,3.134005,8.68876,0.8552209090909091,4.412465,3.501745,5.52025,3.66517,3.79497,2.411565,3.863145,2.73659,5.564,2.6083516666666666,3.944305,2.69562,3.793275,2.653723333333333,3.60587,3.872915,4.084825,5.239733,3.222215,2.09475,5.1518,2.5586966666666666,4.564585,4.802935,4.854255,4.413635,4.04858,2.825015,2.2413633333333336,2.8512233333333334,2.6005566666666664,2.7062000000000004,3.23389,2.709953333333334,4.94568,2.9262266666666665,2.39773,6.552454166666667,5.001077083333334,3.7574475,3.02732,3.7751333333333332,4.031835,3.401695,1.9440125,4.2915125,4.839975,4.910535,1.3553683333333335,4.084755,2.7098999999999998,6.9285075,4.860625,8.689407777777777,4.163725,3.80501,2.2164,4.13512,5.7181750000000005,7.80558,4.13016,5.34851,3.77836,3.409165,3.860965,1.697954,4.387576,1.4420250000000001,3.67068,4.60337,3.4472666666666663,0.8759250000000001,8.941466666666667,1.1906,1.8903325,2.4567733333333335,1.95002,3.3804,1.36424,3.692605,3.34963,2.3986,4.18388,1.0379283333333333,3.599855,1.418455,2.9808483333333333,3.90608,5.0728,1.672495,5.844169583333333,2.419626666666667,8.13166,4.44944,3.01586,3.88836,3.33276,1.1302016666666668,7.54736,2.948655,3.282935,2.41018,4.161335,2.0901475,3.043665,2.3523,3.909855,1.3247525,5.69165,2.488055,4.177045,0.86744,1.9332783333333334,3.87089,5.1046,5.221992500000001,1.56941,1.56941,5.74255,4.343025,6.2877,3.755805,3.48743,8.794830000000001,4.31038,5.4314,4.116725,2.49001,2.1230059423963135,0.39511850000000004,0.22445387096774194,0.6345938709677419,1.0932935714285714,0.7252224423963134,0.22445387096774194,1.4112084999999999,0.41014,1.4884120714285713,2.045802370967742,1.999785,2.299245,2.2247233333333334,5.144,6.061436666666666,4.785155,5.1433,4.25697,4.95513,1.2073333333333334,4.69908,3.716675,5.6653,4.92762,4.85214,5.3903,5.6065,5.18785,1.1977366666666667,1.2447457142857143,1.8791,6.00697,1.3644399999999999,5.5621,4.676985,6.83906375,4.811355,5.3453,4.401545,4.48605,2.546375,5.2386,5.2618,4.393115,4.98832,5.866265833333333,5.53615,3.6578625,4.11073,3.6587666666666667,0.95676,3.7352000000000003,4.316495,1.14108625,3.7228,4.58228,4.3813949999999995,4.960775,2.45075,3.315155,2.635076666666667,4.53772,2.1762275,3.77915,1.2913483333333333,2.88723,3.658305,3.855575,4.48982,3.3451166666666667,0.5927491666666667,5.9874,1.00096625,3.55371,2.9474633333333333,3.742875,2.01642,3.78922,3.675418205128205,3.20734,4.423505,15.14107988095238,4.9299333333333335,2.1677325,8.27772,1.47044,3.57701,2.6964799999999998,2.82542,1.88879,0.23262565217391304,2.7531,4.20257,1.7390899999999998,2.353763333333333,3.2226700000000004,1.9714625,2.2596233333333333,1.4578142857142857,3.21977,4.66161,4.795505,3.765905,0.5838685714285715,2.4194833333333334,4.489355,2.872745,3.86055,4.537855,4.42982,5.07105,0.48277000000000003,2.4161,2.4161,5.5182,5.17215,4.795715,2.6555,3.6070333333333333,2.781193333333333,5.0958,3.54868,5.592943333333333,4.56285,4.3841,4.9334,2.5452,1.959874,4.419635,3.997795,3.908,3.42804,1.84977,4.776875,4.33019,3.7367,4.45024,3.84963,3.98519,0.6068446666666667,3.10277,0.5850783333333334,3.0957399999999997,3.25294,4.042375,17.550914285714285,3.52885,3.64752,2.26976,0.94315625,2.24509,2.53237,1.5206899999999999,2.377895,2.544345,4.744255,2.2057766666666665,3.847645,4.237595,2.05713,4.266315,2.8441899999999998,4.609555,4.897565,5.19725,1.586495,2.096405,2.47364,4.78161,4.843395,1.1479,5.1824,3.815625,5.66055,4.664855,1.73325,4.586985,3.070275,3.450315,3.979395,4.03445,3.0870033333333335,0.64615125,7.542046666666667,1.4594960000000001,0.20194638888888888,0.20194638888888888,0.20194638888888888,4.824615,3.938825,2.6542733333333333,4.26278,2.850235,4.27684,4.406777142857143,4.173448333333333,8.254913333333333,3.95896,6.770748333333334,0.9430425,0.75139,2.367205,4.41463,4.236485,2.250853333333333,5.1148,4.81159,3.404725,3.55557,4.35719,2.174723333333333,4.897705,4.6492450000000005,2.3571,2.795533333333333,2.9025266666666667,2.70801,6.06645,3.573895,0.6553178571428572,3.62099,3.19333,4.12852,4.87717,4.910045,2.86479,5.41715,3.70349,13.65055375,4.68081,6.8686955,2.4329966666666665,6.3587,4.375115,3.869135,2.117945,2.31846625,9.38599,2.2016266666666664,4.2467999999999995,4.105766666666667,3.715033333333333,3.3277733333333335,2.9204266666666663,2.0314825,2.2027525,3.0286399999999998,1.8142099999999999,3.9206333333333334,2.3923033333333334,2.66389,3.3128166666666665,3.5322999999999998,2.46976,2.46976,2.3036033333333332,3.4944333333333333,3.21923,2.290833333333333,3.146933333333333,4.267266666666667,2.7328499999999996,2.72364,3.6959666666666666,2.33921,2.1269625,3.8386333333333336,2.89382,1.4713100000000001,3.930266666666667,2.2565399999999998,2.35045,2.8515566666666667,2.1502433333333335,3.318683333333333,5.546531666666667,2.4359533333333334,3.7835666666666667,1.8715166666666667,10.155633333333334,1.9272933333333333,1.9398566666666666,2.1108599999999997,1.0160722222222223,1.53248,4.174823333333333,2.6957459999999998,2.6957459999999998,1.608844,1.4563783333333333,3.890166666666667,3.6904399999999997,2.30644,1.4843433333333333,1.6929500000000002,4.698538666666667,3.628133333333333,4.097566666666666,8.210106666666666,2.9409014285714283,2.7533833333333333,3.2410414285714286,4.3776,2.1269625,3.2527066666666666,2.70821,3.306103333333333,3.5623441666666666,0.9993575,3.3387580000000003,2.92248,2.69638,3.828165,3.2079166666666663,0.6759490909090909,1.9170259523809525,5.3219,2.6050199999999997,3.319406666666667,1.6303066666666668,1.6303066666666668,2.0421375,3.7255866666666666,0.917562,2.158005,4.5014,4.5014,0.6454714285714286,5.872475,3.420785,4.04078,4.819565,1.2349071428571428,3.3663666666666665,3.5130666666666666,5.1240258333333335,5.578715666666667,2.27977,0.650392,2.5946666666666665,2.52452,3.0318759999999996,2.2082366666666666,2.364523333333333,2.84214,2.35206,2.4619,0.7633509090909091,5.1809,4.757442,1.244265,1.6986,5.49765,2.258405,1.554535,4.03546,1.468006,3.46953,2.5919,3.5009,8.831745833333333,4.0867,4.236275,5.01355,2.3748296363636365,0.778397,1.862512,6.935043333333334,1.8397933333333334,4.01432,4.03386,3.4337,21.31571275,3.238913333333333,1.4276600000000002,1.05664375,3.12698,1.4632133333333333,4.257426000000001,5.37965,3.4291229999999997,3.384733333333333,1.6517666666666668,1.4743083333333333,2.8670466666666665,0.58248,3.5156666666666667,3.5521,3.03993,2.319347333333333,2.5026266666666666,2.78256,2.0544733333333336,2.8683366666666665,1.6177499999999998,3.7209333333333334,1.5062616666666668,3.80395,3.979295,2.539756666666667,5.3021,3.14775,4.074105,5.19585,4.532835,2.9833966666666663,2.83036,2.28205,1.0850357142857143,1.0850357142857143,1.0850357142857143,2.2942425,3.481533333333333,2.538933333333333,2.43567,1.9762033333333333,1.94016,3.68288,4.946485,3.72441,6.306025,3.098465,2.4682625,1.9084825,0.9432883333333333,2.42214,3.88645,2.407993333333333,2.676606666666667,2.35614,2.4405933333333336,2.55347,2.7903066666666665,2.6641966666666668,2.5481366666666667,2.1405499999999997,3.379433333333333,2.0624533333333335,2.1962475,1.5784725,1.641475,3.098456666666667,3.1192266666666666,1.9312125,4.01188,5.16755,2.87668,2.5255001923076925,5.6866183333333336,4.017375,4.702655,5.4391,4.45607,4.30349,6.063000000000001,1.2556,4.113745,2.6515,5.2652,4.972755,3.47825,3.568325,2.1489325,7.69148,2.520435,0.8492166666666666,7.04995,5.11292,5.458238095238095,4.3117,2.939924,1.7510325,4.8297,4.12792,4.256885,5.1392,2.543935,4.168435,4.463895,1.7675975,3.93695,2.729575,1.4375816666666665,4.643795,0.6059705882352941,4.214783333333333,3.416275,4.488475,2.929355,2.02245,3.52088,1.942215,1.4232375,2.81813,3.3641666666666663,3.2099933333333333,7.284109871794872,1.57108,6.608435,9.753585000000001,5.76588,2.96867,1.3061614285714285,2.92873,1.3061614285714285,2.9109200000000004,2.2171766666666666,0.3204982352941177,1.1589507352941177,0.3204982352941177,0.3204982352941177,0.3204982352941177,1.1589507352941177,1.1589507352941177,0.3204982352941177,0.8384525,4.17187,3.40887,3.217435,3.32804,3.39479,4.30269,2.8631276666666667,1.616528,6.736056666666666,3.033606666666667,4.099905,2.6475466666666665,1.039790909090909,1.184575,4.366865,3.64709,1.1414111111111112,1.4332340000000001,0.745809090909091,2.9314713073593075,4.25937,5.0837,3.523566666666667,5.204809166666667,0.5536976923076924,4.10651,3.0708937499999998,2.8289866666666668,2.4626733333333335,3.5183666666666666,2.516896666666667,2.9748699999999997,2.6569,3.003135,3.63626,4.582975,4.84111,2.1369,4.83116,4.462005,2.68898,3.63428,3.575735,0.347736,4.874795,3.478145,3.041535,2.99208,4.400585,3.883565,2.058715,3.21372,3.8281,8.1109,5.0644,5.65585,4.638515,4.3236475,1.0928475,2.07134,2.0781,1.515735,1.8208433333333334,4.2017,5.50415,4.082785,4.74884,3.081824,2.6436733333333335,0.9349166666666666,3.999135,1.2155233333333333,1.1314183333333332,3.318215,3.678905,4.596825,1.2640625,2.4883333333333333,8.568476666666667,3.2391133333333335,2.9452391666666666,0.9040425,3.7564,12.128456666666667,3.370285,4.074355,3.28789,2.84778,4.533855,4.928305,2.07044,4.3212,0.5722276923076923,4.633665,2.19734,1.8930575,1.8930575,3.4835333333333334,4.23726,1.51475,4.023515,1.3098785714285714,3.60741,2.863386666666667,3.4329666666666667,4.68771,3.40722,4.009815,2.614975,3.03123,3.03123,10.96404,0.714789,2.930775,3.1114766666666664,2.1230275,1.9774825,0.8760228571428571,1.4490475,1.1267114285714286,2.19732,4.82035,2.61872,4.1023325,2.00319,4.05927,3.95654,1.7042666666666666,2.0324925,1.0249683333333335,6.101339333333334,1.96584,2.196135,1.748904,1.754232,1.05664375,2.2312054166666666,3.65241,1.9660366666666667,3.0877266666666667,2.5194233333333336,2.769816666666667,1.84351,3.0752466666666667,2.53806,1.7610566666666667,1.9196233333333332,2.744423333333333,2.725873333333333,2.52815,1.17429,2.47443,2.0833066666666666,2.2879533333333333,0.31487526315789477,0.4232991666666666,2.268893333333333,2.12261,3.076835,3.2767099999999996,2.77346,4.84557,5.64515,4.392945,4.52085,4.419375,3.85215,2.762373333333333,3.73668,0.7160054545454545,0.0939265909090909,6.9599,0.0939265909090909,3.51432,2.955225,5.21915,3.531955,6.31525,4.66625,2.0027,2.56878,1.0396283333333334,5.1346,6.12505,2.9297533333333337,5.49365,1.799545,3.502345,1.910765,3.0305400000000002,3.1793899999999997,3.925735,4.814783333333333,3.129245,2.1657800000000003,2.1657800000000003,4.09282,7.17456,3.56899,2.1538666666666666,2.3814766666666665,4.170735,2.98936,4.84203,3.407075,0.9531777777777778,4.16452,2.4178833333333336,2.6018433333333335,4.18176,1.0975666666666666,2.3890333333333333,3.933775,3.36058,4.802825,2.989075,2.798915,3.94492,4.069435,4.2172,4.821345,4.004075,3.197457222222222,3.876215,2.8150333333333335,2.7861233333333337,2.52889,3.8181333333333334,4.04724,3.0052,4.917870833333334,4.156365,3.686515,5.102,4.44385,3.51703,1.429424,1.3848075,4.114195,3.29012,1.6705233333333334,2.73645,3.201605,3.10082,3.9732933333333333,3.01243,2.5128783333333335,12.654373388888889,2.279383333333333,1.787802,4.43122,1.0445,3.17203,3.668705,4.627275,2.98706,1.2078777777777778,2.2863,2.6019533333333333,1.3830719999999999,4.31398,1.04158,1.04158,3.6709433333333337,1.6594433333333332,2.0115000000000003,1.8156525,3.0937,5.7927,2.029045,2.61801,3.2870833333333334,2.810613333333333,2.8187266666666666,1.947026,6.46695,5.6559,3.506625,0.707043076923077,3.380305,3.323725,1.0281909090909092,5.339,3.25253,8.32038,4.91066,4.29949,3.550995,1.3194875,3.21623,4.607775,4.350265,3.86359,3.558245,4.399305,3.50795,3.5315999999999996,3.5315999999999996,4.091095,2.7195383333333334,4.03681,2.142385,5.325430833333334,5.143161666666667,1.5055916666666667,4.57646,1.03629,5.38635,4.020655,4.82441,4.46512,3.937745,2.584315,2.4772925,4.106485,4.149435,4.92386,4.21298,1.7801225,1.478768,4.2694,2.08157,5.1231,3.20879,3.614425,7.308835,3.98317,4.33068,4.969915,3.753415,4.43728,8.205995,3.98735,3.160085,8.749095,3.78969,0.6007600000000001,2.0674654700854704,4.6935,0.6193506666666667,4.683155,4.318215,4.76308,4.480415,3.208895,3.49102,4.378155,4.78643,2.580625,0.7045485714285714,4.684845,4.33871,4.40788,4.411225,2.7578,4.37139,3.54772,0.714688,3.289965,4.00385,2.442395,3.053796666666667,4.001955,2.1854933333333335,5.3992,5.2592,3.6910175,3.2276433333333334,5.171871666666666,5.171871666666666,8.422326666666667,2.05104,0.80102125,0.80102125,23.780475,2.5546,7.55705,0.37714416666666667,1.3843366666666668,2.9616000000000002,0.9736710000000001,3.736645,3.812945,2.0901075,2.0901075,4.21915,4.771045,3.48616,2.5778383333333332,2.5778383333333332,3.50779,4.244015,3.66068,3.4271999999999996,2.0125866666666665,2.5950687500000003,3.9643060000000006,2.14741,3.57693,2.80105,2.8860542857142857,2.8860542857142857,3.2427333333333332,0.8216711111111111,2.5219366666666665,1.8185799999999999,3.3231466666666667,2.8919099999999998,2.863426666666667,2.5301566666666666,4.442025,2.63801,2.997453333333333,5.881251,1.2316259999999999,2.37513,3.157455,2.7258099999999996,3.909555,5.54853561904762,1.5978133333333335,3.5953666666666666,2.291985,5.16389,6.25212,1.573885,4.848936666666667,4.849497333333334,3.187246,4.580866666666666,1.0822957142857141,1.8392199999999999,2.92167,3.8913961904761902,1.2243916666666668,2.332585,1.74033,1.9776900000000002,2.51534,3.7673740000000002,5.417111500000001,0.9690916666666666,1.2731571428571429,2.80892,12.67355,4.53709,2.67854,1.2172742857142858,2.5027978571428573,0.9474328571428572,3.2182833333333334,4.251198333333334,4.80639,3.3266666666666667,5.33635,1.56834,3.705133333333333,3.848725,2.80102,3.870648888888889,2.0554566666666667,1.0822155555555557,2.5052766666666666,2.974686666666667,7.174231666666667,2.8297235714285716,2.5506233333333332,0.7294940000000001,4.6591,3.4857666666666667,0.726778,5.463500833333334,1.8634675,2.2645433333333336,5.439,1.2332666666666665,2.9893466666666666,0.9909545454545454,2.93627,4.27245,2.77886,2.9740933333333337,2.19265,2.512236666666667,4.455905,4.62368,5.1301,1.75294,4.60272,3.79065,4.210036666666667,3.37941,2.3758966666666668,4.074274666666667,1.037088,2.7229319047619045,4.672935,2.70315,4.0737733333333335,1.37465,2.6602,1.9467780000000001,1.9467780000000001,7.114958333333334,3.0599333333333334,5.3500525,3.4046133333333333,1.8190266666666668,2.6178933333333334,4.584756666666666,5.493233333333333,8.446745,4.687973333333334,2.6449935,1.8514033333333335,1.9601751666666667,4.1099733333333335,3.931605,1.472884,2.0545975,3.164744285714286,1.4427225,3.1356033333333335,18.782458666666667,3.06751,2.8124599999999997,2.8396633333333337,2.90218,2.3402833333333333,2.1041133333333333,3.1636666666666664,3.5472333333333332,2.45587,2.56719,5.487575333333333,2.4509333333333334,4.912204,2.8821060000000003,2.8205039999999997,1.4448666666666667,3.6748877777777778,2.0516675,4.054045,5.07155,3.63944,3.2157608333333334,3.1199933333333334,2.21887,3.3466666666666662,3.4854000000000003,3.4166000000000003,3.2946166666666667,0.8168581818181818,5.3089,2.351355,3.071213333333333,2.7304316666666666,1.9189675,2.164437916666667,2.164437916666667,3.2032145833333336,1.8308929166666665,4.738645,4.224895,3.56626,4.176875,4.576185,4.4977575000000005,4.4977575000000005,3.778825,2.9919933333333333,4.63071,2.75846,1.6232739999999999,2.11733,4.504025,3.919055,2.708925,3.187075,5.4963975,3.7062666666666666,6.227629583333333,3.210025,0.932194,0.932194,3.15196,5.0041,3.80275,3.3822840000000003,2.4218333333333333,1.79223,1.6062166666666666,2.8728166666666666,5.988325,1.4262083333333333,4.10571,3.6938333333333335,3.92416,5.0945,4.762525,4.650668375,3.306573333333333,2.254235,4.26394,4.04237,2.0919975,1.122614,4.11552,2.8782,6.4129000000000005,3.5347000000000004,2.507855,3.174755,3.741085,3.52106,4.58639,2.964805,4.444115,3.85278,4.196545,3.781625,3.487455,3.597035,3.74231,2.7027300000000003,4.0741,3.08681,5.0538,0.6146655555555556,2.390375,1.8467675,2.103115,1.858205,2.4026633333333334,2.5798666666666668,1.7998266666666665,4.27199,5.86199,1.8407,3.989195,4.292415,2.4276475,5.398415,4.013534583333334,4.497435,5.0268,7.409258333333334,2.0961933333333334,2.89053,1.8114033333333335,2.734223333333333,1.861385,1.95006,4.06421,3.535435,5.3304,1.01427,3.171805,4.19205,2.227185,5.2166,3.676375,2.619085,3.7711333333333332,3.39665,1.9778525,1.7724985,2.688475,3.163525,3.373875,2.0816675,1.8525028571428575,1.8525028571428575,3.586625,3.432475,19.753773095238095,1.18801,5.132705,1.835685,2.1277466666666665,3.665535,3.698835,1.844145,3.90003,4.74576,1.2811949999999999,1.2811949999999999,1.2174433333333334,1.6940799999999998,2.3827933333333333,3.1791866666666664,4.584861666666667,3.20705,3.4301999999999997,0.4920878947368421,3.4119278947368423,2.022673333333333,2.321185,4.55908,3.496735,3.85793,3.42688,4.483605,4.626285,2.0451675,3.96019,5.623866666666666,2.39745,3.603345,5.2183,2.27349,4.712985,5.93465,1.3264957142857143,1.898986,3.5162999999999998,0.6792085714285714,3.1641266666666668,3.260685,4.95448,4.845425,2.8259672222222223,7.761721666666666,2.976156666666667,2.71252,0.44336764705882353,4.115545,5.216058095238095,3.0879161904761903,5.2288,3.694205,2.5789511111111114,1.6944780000000002,5.3869,4.22888,4.087345,2.828925,2.01021,3.562875,3.9481333333333333,2.85994,2.0251775,3.8684583333333333,5.9695025,2.9165,3.825285,3.566325,4.05549,1.5442571428571428,1.5442571428571428,3.1898999999999997,2.9356533333333332,4.336885,4.54002,6.52925,3.522865,2.87285,2.1660775,1.4985916666666668,1.382782857142857,4.88411,5.328305,5.0293,6.04215,4.33529,6.5855475000000006,3.173475,2.7681566666666666,3.94947,2.048486666666667,3.09312375,1.5791359999999999,4.67435,2.4041799999999998,4.039275,4.90889,4.04386,2.703953333333333,2.890556666666667,1.3368371428571428,2.3971325,3.7029,1.8439675,0.578304375,3.1478099999999998,2.6256133333333334,2.4046133333333333,2.3371833333333334,1.931155,1.54786,0.6944981818181818,0.6944981818181818,3.471966666666667,1.66036,2.27053,3.392405,5.4272,4.307305,6.02935,4.269715,4.472095,1.966269,1.2380866666666666,2.571415,4.54189,1.2164625,4.2769125,3.000545,2.656975,2.19394,3.998945,2.769535,1.9279566666666668,1.044592857142857,3.09742,8.76357,3.46164,1.5813658928571428,4.54018,3.354145,2.752325,3.489315,2.801145,1.8268966666666666,1.06228,3.60961,2.5298966666666667,2.24165,1.6905633333333334,2.3268166666666668,2.20119,2.489313333333333,2.8310199999999996,1.3067466666666667,1.8234633333333334,1.0337325,6.382705,5.5853,5.82775,4.06089,4.482595,2.9959433333333334,1.6103318803418802,4.91497,4.95334,2.463675,5.0839,2.289225,4.55511,1.03234,4.131405,4.15508,1.827165,7.66345,3.554445,1.827125,1.91854,1.762765,2.544425,3.3029466666666667,1.22419525974026,2.885453333333333,5.69945,3.46485,3.997985,5.43095,5.3824,5.40735,0.90594875,4.17378,4.394495,4.120295,4.686965,4.180406666666666,4.53899,4.983015,2.976695,1.5506266666666668,1.5506266666666668,5.1183,6.098098333333334,2.84222,2.6281466666666664,3.8985,4.39586,1.538176,4.20673,5.24365,3.43712,3.9497,2.85812,2.7045266666666667,4.878755,2.314986375,10.688670993016787,1.9524666666666668,0.79457875,2.4299,1.67759,2.4603625,2.15745,1.885306,2.7341866666666665,4.93119,5.3414,2.9248366666666663,1.6548733333333334,6.369461428571429,1.4303428571428571,3.03518,0.5201714285714286,4.107266666666667,5.6022,3.65401,4.511435,11.7231,5.31265,3.1148900000000004,3.270896666666667,4.00746,3.126106666666667,4.54703,0.8952575,1.0527083333333334,0.8914663636363636,5.7481,4.12069,1.736364,4.793544666666666,4.395855,6.594,4.85274,4.97423,4.33098,6.0316,3.87292,5.09795,3.684495,1.215924,3.919715,5.37385,2.65335,3.937375,2.783195,2.47191,1.267045,5.1346,3.87016,1.3377125,3.4471666666666665,2.87508,2.5321166666666666,2.501646666666667,2.5812,2.98375,0.7077636363636364,2.6183666666666667,2.599606666666667,2.64226,1.9111966666666669,3.0519933333333333,2.13932,1.5265333333333333,2.362635,2.0409525,2.112975,3.5119000000000002,2.87003,0.6799540000000001,2.7492099999999997,3.40509,4.591325,2.19663,3.738325,5.4421,5.11865,3.402725,3.967075,1.3257257142857142,3.67492,2.4580249999999997,4.355608333333333,2.76091875,4.51047,5.2745,4.76535,4.34768,4.2017999999999995,1.007882,1.007882,2.2812107692307695,1.70663,3.89219,2.435182,2.435182,4.98387,6.09645,3.08445,1.1953933333333333,1.5564285714285713,5.8046,3.5917,2.33318,3.29669,2.872975,3.26923,2.33318,4.4857675,3.33455,2.9657308333333336,2.76743,2.017415,2.979,6.5858,2.862915,3.428255,4.628395,6.572,6.6351,6.43825,6.43825,5.53505,4.85052,0.521253076923077,5.1732,4.53904,3.09211,2.853785,8.14902,2.888056666666667,3.94933,3.600265,2.752463333333333,4.6023,2.3132,3.2987225000000002,2.83851,3.3473666666666664,2.3476433333333335,1.509506,1.509506,3.553785,3.732105,5.0736,1.7359719999999998,1.443824,48.04109049242424,2.6266166666666666,0.869800909090909,3.0431500000000002,1.776745,3.3863333333333334,2.765423333333333,3.124563333333333,2.974095,2.7632833333333333,1.9612566666666666,0.98390875,4.35804,3.20617,3.55825,3.77121,5.21125,5.15855,5.1444,5.56655,5.3654,4.79295,5.4524,6.42073,4.95831,5.4874,2.0657175,3.98044,6.7533,5.28605,3.43836,4.22253,3.248035,2.490065,3.88378,4.618135,2.785766666666667,3.8715666666666664,1.617266,4.535725,1.3658860000000002,3.370205,3.869935,3.413635,6.429365,4.097515,1.9511425,4.09112,3.84283,3.898575,0.97192125,2.82538,3.01738,4.365270357142857,1.1822825,4.585595,1.346405,5.8264,0.6889144444444445,3.936772,9.964391666666668,4.43717,3.49139,3.245505,1.8545666666666667,4.104735,5.45185,3.1328366666666665,4.50283,9.146217777777778,3.471833333333333,2.1151733333333333,2.81183,2.7573366666666668,2.6895633333333335,2.6532827500000002,2.093856666666667,2.6313866666666668,3.0338233333333338,2.5951366666666664,3.1073466666666665,3.29804,2.32279,1.6282266666666667,4.931010666666666,3.9921,2.6111,4.888614,2.7116666666666664,1.02165625,2.0468725,2.881206666666667,5.357044285714286,2.910975,2.186888333333333,2.186888333333333,1.57763,1.6707125,2.1238,1.899772,5.766859999999999,4.452109999999999,2.169645,2.81209,3.7188,1.9891875,0.6180733333333334,2.6814199999999997,1.888805,0.55331,3.9182,2.52035,2.52275,3.689365,3.5386633333333335,2.4293,1.5376233333333333,1.1079633333333334,2.22181,3.491285,3.738785,4.1604575,2.82066,4.08617,3.582085,1.1256545454545455,9.2954,2.725685,3.31753,1.2621375,2.59665,2.3819975,2.3819975,2.3819975,5.00325,5.5104,1.695085,4.97233,1.4028399999999999,5.370843333333333,1.537966,4.180625,4.263125,4.12877,4.87408,4.33809,2.017125,8.416924999999999,3.95159,4.962665,3.22258,3.8256016666666666,3.1516300000000004,3.0030066666666664,3.807995,2.4562933333333334,4.4085914285714285,4.271193333333334,1.57437,3.98373,1.57437,3.221215,4.355248333333333,5.06519,4.355248333333333,1.6058966666666665,5.75395,4.51869,4.313685,2.6640900000000003,2.9822,4.158005,3.233445,5.0967,0.5207621428571428,2.9777400000000003,2.9642866666666667,5.215621666666667,4.712415,2.3936975,4.902705,5.918786666666667,3.484725,1.926175,2.710855,2.2040366666666666,3.76214,3.879535,4.5403,2.482035,3.70303,0.8517429999999999,5.39025,3.49383,4.11518,2.2417000000000002,3.05885,2.2776,2.9089066666666668,2.8202533333333335,2.771573333333333,3.01215,2.4948975,2.4948975,4.208025833333333,2.925055,4.765855,11.585537500000001,0.9493444444444444,4.472495,2.3607766666666667,2.36687,2.7069466666666666,1.4765375,7.664488833333333,3.3764333333333334,3.49197,3.635873333333333,2.4316166666666668,3.9429,4.255637472222222,2.1356633333333335,0.4321461111111111,1.416258,1.5727175,4.907815,2.84242,3.22755,3.6992700000000003,3.4990825,2.28373625,4.853075,4.62523,3.87744,4.37333,2.21071,3.82057,2.4764399999999998,5.475806666666667,3.172995,4.91175,4.077135,4.114605,4.242105,2.02725,3.896465,3.599895,3.292213333333333,3.69089,2.76716,3.09651,3.743875,4.214575,2.722386666666667,4.565215,1.5326816666666667,3.693915,2.712885,4.30783,4.230435,3.884305,4.58813,2.506375,4.21093,5.1884,4.03734,3.1128400000000003,2.23127,2.985435,2.465785,0.8733916666666667,4.504595,2.15329,3.492785,2.69812,4.07658,3.471455,2.8363,3.222165,4.04982,4.516758666666666,3.998855,2.99915,1.5971666666666666,3.493605,2.42096,0.9186555555555554,4.33215,8.70619,3.248085,3.67187,3.776845,5.0148,3.88373,2.154985,3.97465,3.8104,3.211145,3.116935,3.63065,0.61434,1.27961,6.2992550000000005,1.69275,2.71645,4.778642,2.45075,2.44843,2.771985,7.69651,2.63544,4.050425,3.71026,0.7815966666666667,3.45981,2.69361,3.87775,3.945895,6.180048333333334,0.665588,3.36892,9.2458,3.174425,1.1178655555555554,5.08066625,4.67183,5.2145,4.21935,4.70808,3.09265,2.54014,6.972955,0.8125709999999999,3.503125,3.99231,3.295155,4.22371,2.205565,4.205875,1.6970833333333333,4.06422,3.822095,4.022055,1.7585775,4.49422,4.478585,2.3202525,2.016445,2.254375,0.726778,4.174085,3.4291229999999997,1.489884,8.495275,5.782,4.526495,4.191785,3.52521,4.33718,1.4167257142857144,4.38015,3.90935,5.26005,3.758395,2.441336666666667,6.4618437606837595,1.06997,1.06997,2.53502,0.91022,4.18424,3.1735333333333333,1.035295,1.8018266666666667,0.4317583333333333,6.31803,1.0556125,2.810885,3.59439,4.009705,3.652475,4.14464,5.38865,5.489155,3.29218,3.13488,2.513685,3.97373,4.594035,4.27575,3.79347,3.52598,6.05575,4.26504,4.157590555555555,5.436959,3.56352,3.611275,2.277005,3.611275,6.862274,41.00717454437229,3.81817,3.485955,2.8127099999999996,4.345085,4.370225,3.56217,3.621545,3.871325,4.4595,4.117445,1.6004383333333332,4.811805,2.90513,4.666675,5.2488,4.679325,2.186166666666667,4.50682,4.040435,3.21423,1.51688,0.6207784615384615,1.6706420000000002,3.7647,2.84439,1.2900375,2.9844899999999996,2.5475833333333333,2.8110166666666667,3.5582999999999996,2.9867233333333334,1.367474,2.5999233333333334,3.741733333333333,1.9314280694980694,2.8572633333333335,3.1335319999999998,2.9835433333333334,2.57943,3.4761333333333333,1.1768333333333334,3.753155,4.126695,1.2201183333333334,1.2201183333333334,1.2201183333333334,1.2201183333333334,2.951739090909091,2.13721,2.46623,3.15123,4.81288,4.83763,4.27869,4.2207,5.7054,4.56605,2.404235,5.9239,3.693735,2.767235,3.943555,2.95568,4.150615,4.106555,0.7249046153846154,1.407617142857143,1.52543,4.22391,3.94805,4.34124,4.123945,5.979638333333334,2.20986,4.31673,1.5402633333333335,3.51769,4.876545,1.5268933333333334,5.24735,0.6541808333333333,4.473785,1.11484,1.1344375,3.761735,3.92347,5.3793,4.88227,6.03125,4.61447,1.495768,4.114725,1.5031225,3.566405,3.082295,2.5789511111111114,1.9241625,3.019855,1.36603,3.30702,4.71613,2.9574033333333336,5.76455,119.38384977507215,0.5095222222222222,4.56629,2.2871,4.724925,4.1545,3.355525,1.541105,0.32829142857142857,2.808175,3.880565,5.13485,3.219045,3.49566,4.391095,3.91196,4.361215,7.985836666666667,0.6866733333333334,2.70585,0.96692125,11.319564,2.891855,3.53239,0.9288700000000001,2.19743,2.74952,2.1503025,3.132623333333333,3.119946666666667,2.8704033333333334,4.2249675,3.13116,2.2380999999999998,2.1766733333333335,3.36078,3.518645,2.94319,3.614785,3.702025,3.26387,2.3278266666666667,3.855845,4.043975,3.088455,1.0176833333333333,2.5474866666666665,4.2249675,4.67956,5.5635,4.05699,3.481425,1.98681,11.02426,4.05534,2.665115,4.250565,5.32475,0.5240053333333333,0.5240053333333333,4.0388675,4.0388675,3.136455,3.607533333333333,1.7748136363636364,0.5549525000000001,2.926085,4.35185,4.19606,3.17782,3.92473,5.3071225,4.59846,2.1968775,4.73947,2.190675,2.719555,4.183569166666667,1.91187,2.08918,0.5238657142857143,1.2779977142857142,1.2779977142857142,1.911315,4.690395,4.29717,4.897025,6.021378,2.936685,2.91498,2.007885,1.765015,4.11709,3.49215,4.89584,2.395445,4.89584,4.233915,3.58373,5.9418,4.061315,2.37045,2.019486666666667,2.5418,1.46655,1.42064,1.5073525,1.750355,1.51508,1.66837,3.9019333333333335,4.53498,2.530295,6.662,2.8624566666666666,4.372785,3.32755,4.130225,2.93869,2.9025700000000003,6.1514299999999995,3.3339666666666665,4.642928,3.181573333333333,1.49534,2.4078466666666665,2.4772000000000003,2.2674433333333335,6.14595,4.413209999999999,4.77679,12.612556808704452,0.7465925000000001,1.99561675,2.2760675,1.639738,1.24711,2.551675,2.454185,2.510175,2.3428375,0.7025115384615385,2.0173775,0.5188215789473684,4.4779,2.05276,3.760085,4.50958,2.5225,5.6322575,4.2148,6.97681,3.891215,2.96279,3.199855,4.571125,4.79359,2.565704476190476,4.60966,2.1375975,2.1375975,4.92343,3.655865,4.229375,4.055025,3.1973933333333338,3.876005,4.947975,5.2233,4.666075,4.53423,4.598135,4.398875,2.82709,4.63144,1.1491283333333333,4.69626,4.77219,2.5235166666666666,2.206323333333333,3.974565,1.4938416666666667,5.04025,1.8310125,5.820365000000001,3.828175,3.91844,1.4559466666666667,3.6035,3.6035,12.01113,3.916975,4.14915,1.09406125,4.296519,2.273285,1.5215375,2.340955,1.6923075,1.9893825,1.762234,2.90117,5.90945,1.8038975,5.02475,4.6206175,5.2973,2.0924975,2.524905,3.02759,4.32103,5.4852,3.90362,7.174798333333333,3.0895499999999996,2.641966666666667,0.3759461111111111,3.787035,4.33853,3.2469066666666664,6.013476666666667,2.6005866666666666,2.9054699999999998,1.2507916666666665,1.5433966666666665,0.578304375,1.416258,2.901475,1.5162166666666668,1.4980983333333333,0.63489375,1.380912,4.63834,2.4266625,0.6131746153846154,1.68115,1.8352975,1.6394220000000002,1.248195,1.97093,1.5433966666666665,2.490245,1.380912,1.380912,0.6131746153846154,1.5822,2.48876,1.2243916666666668,2.655425,0.6131746153846154,2.55125,2.48876,1.2273583333333333,1.2273583333333333,1.2273583333333333,1.917022,1.17193625,0.6131746153846154,1.094754,1.13886375,1.0160722222222223,1.8286719999999999,2.700125,0.8759250000000001,2.191035,1.5637285714285714,0.6131746153846154,1.691246,1.5433966666666665,1.9343666666666666,1.9313,0.889543,1.9343666666666666,1.0486144444444445,2.3202525,2.31723,2.439015,1.13886375,2.17338,1.36603,1.36603,0.8968018181818181,0.8968018181818181,0.8968018181818181,1.2507916666666665,1.5433966666666665,1.5637285714285714,1.68115,0.98878,1.9313,1.518928,1.4713100000000001,2.06794,1.2507916666666665,2.67854,12.5976375,0.63489375,2.58622,1.8101,2.3534175,0.9474328571428572,0.9474328571428572,0.6131746153846154,0.9464488888888888,1.54786,1.5637285714285714,1.793318,1.9313,1.1479,1.1479,1.6860220000000001,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,3.10746,1.0486144444444445,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.3834872727272727,53.34759702813853,1.50141,1.6115483333333334,1.5637285714285714,1.8101,0.98878,0.6126470588235293,0.7294940000000001,0.7294940000000001,0.7294940000000001,0.7294940000000001,4.292566666666667,16.155964166666667,3.392533333333333,0.6051818181818182,1.58462,1.58462,1.58462,0.6051818181818182,2.901475,0.6131746153846154,1.691246,1.4980983333333333,2.4951,1.0486144444444445,2.3936975,1.0486144444444445,1.6050460000000002,1.6050460000000002,2.09795,2.09795,0.6131746153846154,1.9952,1.9952,0.9374363636363636,0.20194638888888888,2.901475,1.3760566666666667,2.291985,0.6051818181818182,0.6051818181818182,0.6051818181818182,0.6051818181818182,0.6051818181818182,1.8101,0.3834872727272727,1.0486144444444445,2.11173,2.11173,2.4772925,2.9474633333333333,0.6454714285714286,0.6454714285714286,3.3521666666666667,4.148666666666666,1.2349071428571428,3.2900899999999997,0.982423,2.1990825,2.05104,1.0975666666666666,2.9799133333333336,1.8752225,3.2276433333333334,5.1732,2.600615,1.1465666666666667,4.01846,4.321265,2.51588,1.644688,2.120090769230769,4.282,1.8171763888888888,2.656406666666667,2.92515,2.993673333333333,2.57793,6.32264,4.047775,0.20194638888888888,2.99361,4.89098,3.362355,4.350775,4.2065,4.40556,2.8544633333333334,1.8153860000000002,4.450875,4.49849,4.21987,4.617065,5.38865,3.12458,0.7074708333333333,6.817945,1.6025283333333336,3.143442,4.63198,2.58555,2.58555,0.8097372727272727,1.9241625,3.91653,3.063765,5.03205,4.3322,4.528685,5.0574,1.0686728571428572,4.5917,5.6907,6.7198843055555555,2.2485633333333332,4.09643,3.70622,3.91644,3.72361,3.91626,4.423515,5.974397499999999,4.910445,4.163306666666667,3.72556,4.33525,7.190485,1.8498125,2.288062051282051,2.907023333333333,1.7834933333333334,2.6786766666666666,1.8668366666666667,5.1455,2.9411133333333335,5.77925,1.945328,4.838715,4.04318,3.380025,4.366275,3.777715,2.539493333333333,2.7494833333333335,2.7389200000000002,2.7817000000000003,2.60612,1.6579633333333332,2.64826,2.69657,2.2702999999999998,2.2702999999999998,4.490445,2.9190233333333335,2.018006666666667,3.0277933333333333,2.0897966666666665,2.60472,3.0492166666666667,2.6602033333333335,3.0718599999999996,5.2228,4.00007,3.882915,3.329369333333333,3.329369333333333,4.06302,3.2420033333333333,4.057605,4.41937,4.099985,3.43131,3.39296,7.64487,1.8833375,2.07414,3.3332,3.21977,1.3384766666666668,1.3384766666666668,3.50528,1.94392,3.8484553333333333,3.808975,3.657015,2.2896015,2.08919575,0.5642491666666667,3.381415,3.90621,1.8642025,2.513025,4.30349,1.12836,4.57931,1.3269966666666666,0.3477342857142857,0.5103796428571429,21.142402775793652,0.5103796428571429,0.3477342857142857,0.673025,9.4213,2.899343333333333,3.59588,4.21134,3.633615,2.701695,3.968168571428571,2.430555,2.41108,3.58154,3.171315,3.9434,4.05555,3.73996,2.20543,2.99643,3.667275,3.859495,3.1316,1.0787390000000001,1.0787390000000001,1.0787390000000001,1.0787390000000001,3.35088,2.90946,3.3193,1.5925533333333333,1.1087266666666666,2.519315,3.78593,3.857295,2.90749,2.97771,2.514285,2.863386666666667,3.998095,4.003975,1.1234366666666666,2.6720433333333333,1.08558,2.53516,1.9953633333333334,3.8208333333333333,4.823535,2.4994866666666664,3.86946,3.9515666666666664,0.8276276190476191,0.2554042857142857,0.2554042857142857,0.5722233333333333,0.2554042857142857,0.2554042857142857,0.2554042857142857,0.5722233333333333,4.417125,7.311251666666667,3.66403,0.554415,3.720895,7.751005,3.44342,3.20093,1.1655016666666667,4.420875,5.1928,4.203475,4.966965,1.636394,4.51637,2.2077633333333333,2.3542813333333332,3.51675,5.29965,0.8042614285714286,0.8042614285714286,3.44122,2.8144733333333334,1.862935,3.75612,2.769125,6.8049,3.01377,6.4435,6.0379,5.44205,2.21609,1.698255,4.4373,3.46586,2.31143,3.83872,3.375605,1.891725,1.1507116666666668,4.085655,3.57929,4.87717,6.075901666666667,1.5097783333333332,3.986955,1.2523,2.50607,3.331505,3.81517,0.4131485714285715,3.160825,3.98813,0.915827,2.6101566666666667,7.687266666666666,4.2744,2.10152,5.634397,4.473285,3.704555,1.4061716666666666,5.42247,2.7265266666666665,3.2228433333333335,3.5106333333333333,2.114316666666667,2.114316666666667,6.305149999999999,6.305149999999999,3.687182142857143,3.687182142857143,9.68835,3.687182142857143,3.687182142857143,4.359146587301587,6.86545,3.654885,3.3511016666666666,3.022513333333333,4.263235,3.52725,3.1890933333333336,3.255433333333333,4.68065,3.1973066666666665,2.5092133333333333,3.28929,2.28384,2.73587,4.75759,7.41375,6.5674850000000005,4.82547,3.712405,3.9629,6.804598,5.2859,4.43606,3.725915,4.47469,2.286493333333333,2.1256,2.446805,5.5781,5.30505,4.6580025,3.964475,2.28793,2.5435233333333334,6.729088333333333,1.917022,2.54767,3.2502433333333336,3.2502433333333336,3.217195,5.277,0.7510258333333333,3.4954666666666667,3.757585,2.8484200000000004,10.1642125,4.256205,2.84306,2.4114066666666667,4.715965,5.9597,2.605825,5.6821,2.5373666666666668,4.020205,2.9182991428571428,4.09967,5.2657,4.85617,1.056805,3.6142,1.008055,2.58672,4.900977661764705,8.684166666666666,2.454963333333333,3.356033333333333,6.749146666666666,1.6021260000000002,4.665785,5.6552,3.711595,3.727835,2.2575333333333334,4.64797,2.3520425,0.4474284615384615,5.09735,2.92092,3.4842,4.866255,4.922375,5.2673,6.53092,4.59373,5.53475,6.906715,54.85463,4.699895,3.822155,4.81352,5.86505,4.592195,5.27275,4.03416,4.703975,1.967845,3.93866,3.842135,4.61286,2.71545,4.84735,3.880675,1.675318,5.49495,6.18685,7.057731666666667,5.04795,3.30222,4.61064,3.26284,3.245685,3.447085,4.28753,3.7629,6.42037,2.704925,1.1013185714285714,2.3862,0.522276,0.522276,3.33212,0.522276,2.3993602857142857,2.3993602857142857,3.097574285714286,4.450861000000001,4.804915285714285,2.3862,4.9538858333333335,2.7632108333333334,1.3964033333333334,5.5975,2.13763,6.881681333333334,5.467263333333333,10.97196462878788,3.2453533333333335,2.575396666666667,0.21486787878787877,1.8862613333333333,2.1290466666666665,0.92103875,1.2969083333333333,2.888113333333333,2.1030725,2.6155,0.583825,26.777817083333336,1.81962,0.7899153846153847,2.58116,2.58116,0.39671944444444446,1.6317825,3.0072599999999996,1.243295,1.6227925,1.62887,3.972515,2.884715,2.0028266666666665,2.456653333333333,1.12138,1.985105,1.487685,5.459646416666667,3.57376,6.788065,2.5075,3.30477,0.9450949999999999,2.802515,4.96702,6.19788,3.172696666666667,2.1019,5.265211666666667,1.942695,2.3638166666666667,4.2742,1.1327666666666667,3.5414,2.2858,4.953295,4.49187,5.93515,3.13615,3.95932,3.95932,5.29005,1.77569,5.3572,2.8534433333333333,1.5927775,3.065345,3.16226,5.2864716666666665,4.370645,2.781693333333333,2.51802,2.73871,1.0436542857142856,5.20065,0.91442875,5.538696666666667,4.286155,7.451002000000001,4.22526,4.328845,4.10597,8.323156666666666,4.142125,4.54869,1.1388500000000001,0.7134885714285714,4.53306,4.16564,2.19056,3.36311,3.228255,4.175835,2.261045,4.783885,2.53968,5.25515,5.17545,5.4453,4.42786,4.979885,3.376885,6.6526145,3.538735,3.987625,3.45245,4.46532,5.37287369047619,0.5720907142857143,3.5447,1.6801766666666669,0.5818455555555555,4.153055,2.446425,1.02787375,2.235775,6.10839,3.56713,2.44175,2.734523333333333,2.7991233333333336,4.87757,3.993305,1.6513042857142857,4.085485,2.258923333333333,3.6796666666666664,4.227685,5.1931,3.0677825,3.716333333333333,3.7526666666666664,1.897002,7.42657,4.66579,4.309135,5.27135,2.1806525,4.21836,4.677365,3.41607,3.905305,10.93028,3.165075,4.9229666666666665,4.72481,4.5707,2.322545,4.43847,4.115625,4.80777,3.2942199999999997,4.08829,1.5702975,2.9874233333333335,3.558615,3.54565,4.964505,1.843906,4.273745,3.0653433333333333,5.55155,3.2642866666666666,1.72974,3.9925,4.510435,1.0583925,3.094615,2.68534,4.499745333333333,1.692728,1.9117933333333335,1.2129375,3.507025,5.1703,5.684535,3.7551,3.397295,2.518415,2.13167,1.942935,1.57123,5.92185,2.8194,1.9334275,0.8898307692307692,20.37415462820513,2.934755,3.3480358333333333,4.741821666666667,3.92991358974359,1.2831733333333333,2.637582666666667,2.8738043181818185,1.373874,1.83728,4.507375,4.651585,3.495285,3.138745,5.30525,4.78856,6.9834225,4.5167850000000005,4.556525,3.67056,2.6805766666666666,3.86523,3.91621,3.5668,3.97913,1.90495,4.83202,8.10011,3.35719,2.651095,3.315525,0.60666875,3.103213333333333,2.161653333333333,2.2378475,4.284915,3.401855,4.7887,3.737885,3.21586,2.208985,1.711905,0.797258,1.5421133333333332,1.1712933333333333,3.805185,3.720145,4.53748,4.606615,7.31057,2.324733333333333,1.439194,2.4816133333333332,7.944913333333333,3.141285,2.63295,3.090715,4.28451,3.10015,3.66588,1.5182639999999998,4.760195,4.56859,4.170445,3.964915,3.569925,4.135665,4.24004,3.69706,4.345365,4.2082,2.20961,3.2346299999999997,3.361685,5.4371,2.87251,4.324261,2.83684,2.911635,2.1776266666666664,2.1924233333333336,2.12399,2.4625023333333336,2.4625023333333336,2.0846533333333332,2.80013,2.25189,2.30559,1.9835866666666666,4.031585,2.4231133333333332,2.7076933333333333,3.04453,1.7268066666666666,4.426885,2.742265,3.794925,2.3766666666666665,5.26025,5.20075,4.885662777777778,2.3907,2.276135,3.171635,2.8045,2.20743,2.974215,1.8809125,2.61215,2.74645,6.897156333333333,4.365145,3.741885,0.601065,4.323965,3.9758,4.036065,3.3679,3.95785,3.6765766666666666,6.2876,4.402635,3.1948,2.8174360714285713,2.087036,2.47852,1.6088999999999998,1.755294,1.477106,2.0608,1.8295775,1.2717083333333334,4.11441,0.6131746153846154,0.55773,1.9635840000000002,1.5310683333333335,1.428864,1.3980466666666667,2.2867936363636363,1.4040549999999998,1.6107040000000001,0.60271,166.7173048723527,0.4661153333333333,2.07374,1.1017540000000001,1.22454,2.1381,1.5440075,1.96184,2.2588166666666667,1.6818825,6.74285,3.08009,3.3659542857142855,1.7929133333333331,3.1636,1.2869916666666665,1.2869916666666665,6.0759475,0.47755000000000003,2.231205,3.2948533333333336,3.02144,0.8070981818181818,0.5369388235294118,1.168335487179487,1.0001818181818183,2.1790325,4.055905,2.0119575,2.1501025,2.29074,4.914265944444445,1.0083600000000001,4.30023,3.50496,3.616455,6.83235,2.0264966666666666,3.1614,2.26596,3.883136,2.48182,2.88062,3.49531,3.579475,3.66627,3.1283,6.61693,2.607685,3.09743,3.395715,1.33155,2.680555,2.609435,2.96663,1.60213,1.501245,2.26347,4.327085,5.293015,2.84577,2.86119,1.336575,4.259355,3.7678666666666665,3.875,2.89317,24.799052641330892,2.6821159999999997,2.6325166666666666,2.9807333333333332,3.4689,3.02193,5.781926666666666,3.096906666666667,2.3994866666666668,3.3018033333333334,3.406333333333333,2.1714766666666665,3.193443333333333,3.3065833333333337,3.1884766666666664,1.7194666666666667,1.6775485,0.587601,2.3206599999999997,1.946885,0.20024125,2.2472233333333334,2.63297,0.20024125,0.20024125,2.1418079166666666,0.20024125,0.20024125,0.20024125,0.20024125,2.823313333333333,2.6202566666666667,0.5354007692307692,3.2980442857142855,1.4584725,1.960812,5.70445,4.3674025,5.9441825,1.9290075,4.853445,2.0163,2.5662766666666665,1.2632442857142858,5.77121,2.809976666666667,6.03578,0.8600666666666666,1.37047,4.742255,4.6565,35.031344918414916,1.523384,1.3742333333333334,2.3570933333333333,2.3428925,0.8968018181818181,2.3808266666666666,2.2917366666666665,2.70377,2.02847,2.427776666666667,1.7662316666666666,2.5885433333333334,2.35563,2.22504,2.736356666666667,2.4112266666666664,3.936355,3.3942,1.1230371428571428,3.982135,3.82748,19.700668722222222,2.7817666666666665,3.3336333333333332,2.6287133333333332,0.8094699999999999,3.091604,1.6020055555555555,3.091604,2.3403733333333334,2.48868,2.9697533333333332,1.4338925,1.884365,4.38518,4.011685,5.0778,4.24898,1.669826,5.0978,1.6290625,4.6921,3.9855476666666667,4.413285,0.7663618181818183,2.1063875,2.239525,2.738722,3.43263,1.0558125,3.11072,1.947028,2.04806,1.083,1.083,2.7941366666666667,2.4815466666666666,4.399635,28.524933333333333,6.185689999999999,1.9669100000000002,3.762203333333334,0.38902000000000003,5.9385125,5.8398,2.875163333333333,3.442155,5.4644925,3.693775,1.1127025,4.546125,1.289946,2.636745,4.39417,4.625545,2.141155,3.08565,4.554565,2.510915,2.8735355,4.046045,1.3094966666666668,2.4605691666666667,3.735195,5.167,2.3665533333333335,3.13304,2.7452966666666665,4.003485,4.02343,4.040845,4.231933333333333,1.89162,5.94969,2.439025,1.71964,4.117645,5.53122,3.98991,3.47962,0.72725625,2.81375,3.51371,2.190675,4.828862666666667,2.833835,3.70477,2.8073433333333333,3.2907766666666665,2.544595,3.2503499999999996,2.990016666666667,3.036936666666667,4.09206,5.26105,3.456165,1.954765,3.92813,4.1352,1.84429,2.019845,1.7987425,3.8990833333333335,4.541435,5.0870074999999995,4.02676,3.5306333333333337,3.540905,3.18296,1.3465483333333335,3.164115,2.96768,3.151605,4.73431,4.620415,4.246045,2.720405,1.922195,1.55174,1.41464,3.561205,2.39257,2.27618,3.344715,4.905035,1.59682,5.21715,1.38921,1.8780625,3.1964,3.067695,3.027585,3.817035,2.993895,1.71835,0.993456052631579,3.54242,4.928476666666667,4.51059,9.036548333333332,3.1657933333333332,3.1050799999999996,1.6382633333333334,2.73556,2.683806666666667,1.1561683333333332,3.0298533333333335,2.7013166666666666,3.1630833333333332,3.9693,3.1066566666666664,6.7982700000000005,3.07555,0.7642118181818183,1.6960366666666669,3.233525,3.15839,3.31535,3.6381333333333337,2.433598,2.889195,2.62446,1.955921,3.96737,2.559415,3.5129,2.1329566666666664,4.66546,5.33145,4.40183,3.42717,3.614485,0.8573344444444444,4.444675,2.9493066666666667,2.9132433333333334,4.42749,2.5745833333333334,2.701586666666667,0.3799814285714286,0.3799814285714286,4.348438333333333,3.832405,7.00935,3.240035,4.60599,3.598365,3.255215,4.834355,4.19588,0.98459625,3.91398,2.4885766666666664,4.0747875,2.9161699999999997,3.2476041666666666,1.7689666666666666,3.144802142857143,2.14813,2.8068233333333334,2.5693966666666666,2.804953333333333,1.8909333333333331,22.148379437747035,3.857175,3.91915,3.978765,3.339725,4.544495,3.794955,4.55276,4.03939,3.898405,3.37384,3.519915,2.5385466666666665,2.7697066666666665,2.9151166666666666,2.9593966666666667,2.9136100000000003,4.21618,3.6928,4.7462275,4.93458,4.44405,1.2960720000000001,1.378994,1.378994,5.06725,3.892595,2.6035,2.3100566666666666,3.02538,3.37854,3.52221,7.682605000000001,3.21634,3.408466666666667,3.0025649999999997,5.29495,1.6135366666666666,5.87922,2.4241466666666667,2.75694,1.749475,3.61894,2.91685,6.37861,3.02002,2.78446,4.201715,4.454591333333333,1.432,2.438896666666667,1.64116,7.1866465,4.393775,7.054083333333333,2.19752,3.966155,3.602195,3.996145,5.29025,3.6008333333333336,3.6008333333333336,2.11163,4.26563,5.06075,2.58318,6.397964285714286,1.61079,5.7403,8.476253666666667,3.4774999999999996,4.201690666666667,2.2573166666666666,2.16265,0.518966875,4.520495,2.4996225,2.5887,3.6316015,2.3353975,2.5204233333333335,3.75786,5.80635,5.22545,5.0195,4.693785,4.08226,2.255865,1.0255454545454545,3.00376,3.385145,2.5964566666666666,5.4186,3.90538,3.18565,2.528225,1.898986,4.201785,1.03180625,5.2223,1.0217877777777777,5.48215,3.287125,4.86519,4.92572,3.15254,3.20595,3.0245833333333336,2.322556666666667,4.33432,2.835305,2.586805,3.333885,4.98062,5.74947,4.588665,1.4959825,3.28521,2.980145,5.60903,1.9455725,1.9455725,2.8708266666666664,2.379516666666667,2.3509966666666666,2.7171866666666666,0.8386990000000001,6.2585,3.470315,1.9070825,2.46326,2.72615,3.71972,2.6963,3.647445,5.0023,5.0885,4.910955,6.08175,5.7413,1.319275,3.593385,1.1088666666666667,2.4755875,4.276633333333334,2.67544,3.082645,3.223265,4.783155,2.972375,0.4339715789473684,4.38621,4.099205,4.902965,3.3085,4.436675,5.36745,4.26989,3.702845,1.94019,4.57459,2.0353325,4.2789,4.2789,6.4815,5.3737,5.5332,5.0533,2.742535,1.6135366666666666,4.28396,1.9459766666666667,1.6472866666666668,2.33634,4.113825,3.91575,4.44033,8.05048,1.6717166666666667,4.931485,1.2565266666666666,3.04679,6.039,2.0015875,4.880115,2.5614133333333333,4.61209,3.337885,4.739085,2.9297533333333337,4.096665,4.15196,5.9788,4.292515,3.829595,3.634665,5.90135,4.200515,4.608785,3.62,4.07051,7.046331666666667,3.59924,6.83343,3.65912,5.3655,6.077890454545455,4.4294,3.58714,1.7477475,5.2555,3.885,0.861281111111111,8.19324,5.8557,5.0798,3.086613333333333,4.90154,3.15282,1.730404,3.87166,1.1234366666666666,6.2786,2.95691,4.57559,5.23475,4.44457,3.940825,2.0962133333333335,4.28021,5.0297,1.720335,7.141541666666667,3.09429,3.33202,5.09555,4.119835,2.126625,4.646095,3.669915,3.53856,2.79658,3.926205,3.66898,5.39925,4.516345,3.272095,1.805745,1.805745,7.5765666666666664,1.4239214285714286,5.2063,4.250805,5.2154,3.497505,3.466025,4.993545,3.822455,0.8781783333333334,0.8781783333333334,0.8781783333333334,3.70254,3.12884,3.88221,4.609531111111111,2.60313,1.4586433333333335,4.253885,2.11344,2.712005,3.9229,4.79374,1.9783225,2.13932,5.05437,3.678075,2.876,4.25672,1.7153625,1.95436,3.2400966666666666,2.573615,5.19105,1.4155039999999999,1.616958,1.04616375,3.90302,3.431705,2.9275033333333336,2.9119266666666666,5.4213,1.691226,2.0787325,3.0412,1.6442999999999999,3.26305,3.54533,2.3721525,5.0326,5.5216,2.778395,4.18107,3.50121,3.29559,3.511865,4.070665,3.47536,7.42021,5.10725,1.8480833333333333,1.7505666666666666,3.393645,4.626655,4.061425,3.61224,2.9500566666666668,4.35099,6.08185,5.06195,2.751,5.5375,3.93246,3.78191,8.1016775,4.113225,0.7133590909090909,3.955745,4.1202925,2.25813,4.15362,3.7710333333333335,5.76115,3.83718,4.06815,3.657995,4.41232,4.711355,4.52338,3.03692,3.88259,5.1362,3.878615,2.757425,2.97771,6.91533,5.40225,1.9529859999999999,3.29759,4.221828333333333,3.84055,4.85538,4.44268,2.56171,0.8654366666666666,4.466093939393939,6.42566,3.470605,4.85715,3.29331,7.056916666666666,3.758685,3.6342666666666665,2.842966666666667,3.67312,1.961375,3.426125,4.55812,2.5040234999999997,3.88788,5.85285,1.4552,4.58804,0.6464142857142857,6.18735,6.3269,5.81645,6.10395,1.5140883333333335,1.8018633333333334,4.354295,1.904565,5.20065,0.5291458333333333,5.74905,3.12531,1.50267,6.142935,6.53045,0.795625,1.641275,1.3122099999999999,1.3122099999999999,1.3122099999999999,2.4689133333333335,4.579005,3.552145,3.329565,3.86636,4.975665,3.629465,1.9411100000000001,4.21088,4.987315,0.29762439024390247,3.459935,4.28257,4.40417,38.44264234090909,5.605330833333333,4.83407,10.941604333333334,3.6865,4.095615,7.193175,3.24424,4.74787,3.871785,3.95978,9.01878,3.79309,2.624886666666667,2.655075,4.640265,4.191405,3.80013,4.395625,2.1146,4.54303,4.13343,6.658968000000001,4.1483,4.752715,2.3268525,4.28378,0.50953875,1.4395816666666665,3.23666,5.99365,2.884645,1.2337933333333333,1.2337933333333333,2.619775,3.78524,3.932405,3.276195,1.6715,3.559345,3.97151,1.837825,3.2135233333333333,1.5071160000000001,1.8638000000000001,3.987375,4.536105,2.0523225,4.63512,2.1976375,2.18366,3.565575,3.431145,4.098415,3.88903,6.031579666666667,2.4625296666666667,3.90493,0.7663309090909091,0.6596066666666667,3.804955,2.139825,8.738416666666666,3.392533333333333,4.892475,1.694285,4.450835,1.5310733333333333,3.88474,4.498365,2.597163333333333,3.78287,5.06335,0.415703,0.415703,3.7015,3.1814999999999998,2.935643333333333,3.58286,3.558435,5.34905,1.0149363636363637,10.189938333333334,10.790065,1.97093,4.896035,4.493965,4.83512,3.498605,2.566333333333333,2.0061,1.9473925,9.7844175,2.236505,2.7006033333333335,3.637956,4.494555,3.637956,2.1052725,2.971776666666667,2.792923333333333,0.7276118181818181,5.204809166666667,2.932916666666667,2.6033233333333334,4.10727,8.836920000000001,10.206620000000001,4.0385,3.98114,4.138055,6.56728,1.925525,1.381225,25.992910833333333,4.19151,3.777055,1.0085000000000002,4.64521,4.109585,5.06785,4.448775,5.08165,5.570006666666666,2.926826666666667,2.0709466666666665,0.6630294117647059,0.7512083333333334,4.585315,5.0396,1.3678633333333332,4.230691666666667,0.9045083333333334,3.5850333333333335,1.5262566666666666,4.344045,5.82395,1.84655,2.514345,2.108295,3.75643,2.76432,0.4115566666666666,3.72908,3.66934,2.7644866666666665,3.316375,5.06145,2.8439033333333334,4.19016,2.75104,4.48245,8.370953333333333,4.803845,7.947485,2.6656,2.6986933333333334,4.376455,4.4503675000000005,4.470675,4.504195,3.710485,4.816735,1.18573875,3.1655929166666663,3.289908214285714,0.6992700000000001,1.378994,1.378994,4.325115,7.287773333333334,0.8339692307692308,4.757115,0.9010883333333334,2.80817,2.3250733333333335,2.596264090909091,6.329555555555555,2.5621199999999997,1.1345888888888889,2.4436966666666664,1.18544125,1.9684533333333334,3.1527366666666663,3.0105116666666665,3.1950833333333333,2.49164,0.9010883333333334,4.56226,4.43852,5.35755,2.72115,3.966975,2.06854,5.79765,4.706585,4.331405,2.9458966666666666,3.446445,2.1847275,1.2970475,4.090535,2.66295,4.16777,5.4692,1.591408,4.675785,2.8176666666666663,6.351520000000001,3.510555,2.605475,0.9010883333333334,2.586905,3.14889,7.285479277777778,2.2788866666666667,1.9429200000000002,2.2788866666666667,0.42119749999999995,1.288618,4.010335,2.694075,1.61008,3.61119,3.728549,0.648259,0.648259,0.648259,8.497135,1.586208,0.7363672727272728,34.78034597186147,1.8572884444444444,0.6719644444444444,3.0569775,0.6719644444444444,3.71744,2.067775,2.43652,2.5378666666666665,5.1027,4.11637,4.50175,2.44561,0.9324,4.21671,3.2219233333333333,5.04045,1.0317271428571428,2.84725,2.84725,3.953755,4.191755,3.49816,4.6772226923076925,3.324695,4.658725,5.2262,1.805236,1.0587425,5.25485,6.6031,3.79494,0.644346,4.42641,4.071353333333334,0.9439825,4.468385,2.384775,4.00769,4.373555,1.8432889898989897,1.8432889898989897,4.17379,3.58598,0.9072999999999999,3.081035,2.990213333333333,3.337055,4.130255,4.357335,0.4772971428571428,0.29618352941176473,0.29618352941176473,0.29618352941176473,0.7734806722689076,0.6125476923076923,0.66901,0.29618352941176473,0.29618352941176473,7.043419999999999,0.29618352941176473,0.7734806722689076,3.56623,1.313305,4.42365,1.188825,0.5916707692307692,0.9439825,2.58919,2.67035,3.96512,3.02717,0.29618352941176473,0.29618352941176473,4.42475,3.72213,4.160125,2.61941,3.90946,1.552626,3.8819,0.66901,0.66901,4.794135,3.02325,2.732165,2.98562,3.885253333333333,1.09921,0.8962307692307692,10.479875,1.2609125,3.696085,4.3858,5.18825,2.11986,0.3915773913043478,0.86392,2.7899366666666663,3.063545,3.15742,4.27181,1.432424,5.75675,3.34689,5.28516,3.972785,3.0210033333333333,2.86008,6.441458333333333,2.3854633333333335,4.83585,4.10601,3.9515666666666664,6.096415,0.5482813333333334,4.266995,3.3087999999999997,2.13153,0.6894877777777778,4.08942,4.44657,2.855655,2.38856,2.18667,5.0235,2.807535,2.851445,1.02511,0.4641207692307692,3.790835,0.349856,0.7556481818181818,3.927065,3.01266,3.975755,2.739245,5.4356,4.335565,6.0047033333333335,3.65437,3.3093,4.44801,1.6533125,5.3942825,1.758044,3.840745,2.462795,5.881083333333333,2.59467,1.120936,4.483465,6.8943650000000005,6.5556295833333325,3.4741,0.7788258333333333,2.8694,4.47566,4.07487,4.497645,4.4751,4.054885,4.8121,3.146255,4.1762,1.7780866666666666,2.390745,1.4857500000000001,4.07411,9.523635,2.863315,3.73969,5.97555,2.70293,4.1403,2.532216666666667,2.949109,3.283365,3.465675,3.50669,3.156235,3.968875,5.00175,5.7479,3.733805,4.727824999999999,4.93089,3.78573,2.694175,5.0014,7.4252,0.9140922222222222,3.824645,3.84132,4.55199,5.555,5.0499,2.542755,7.58578,2.41676,3.41359,6.0335,3.76858,4.239755,2.19766,1.7678175,3.0016866666666666,2.1049233333333333,1.90575,2.909826666666667,4.172795,4.410745,4.03692,3.267575,4.317678333333333,3.232315,3.29826,3.9218025,5.6005,2.889575,5.4137035000000004,3.865465,3.93042,3.649535,7.86202,3.781435,3.653085,4.088445,4.78509,3.14566,10.5274,1.3049899999999999,2.420675,3.71849,2.695536666666667,2.695536666666667,2.16715,7.808566666666667,0.8287066666666667,3.114885,0.9107225,2.0787325,4.29321,5.10545,3.76684,4.0989,2.81312,3.254005,3.79609,3.865935,3.979995,2.87057,2.54989,4.06845,4.787247499999999,3.52345,4.220675,1.6613900000000001,1.6715060000000002,2.6892066666666667,5.63505,2.2425175,1.7952933333333334,2.0339875,4.308505,4.671495,3.0952,2.795015,0.5166622222222222,2.30152,7.553285000000001,3.162485,1.52625,0.8384525,1.18751,2.04095,2.2530525,1.2278866666666668,2.00432,4.2323385,3.976075,4.646375,2.42915,1.9804575,6.3880925,2.94745,2.3801516666666664,2.3801516666666664,2.3801516666666664,6.680126666666666,2.3949599999999998,3.70538,2.624865,0.480428,1.246608,2.331735,5.824755,0.4332427777777778,3.802115,3.8893050000000002,5.4767,3.004982777777778,0.4332427777777778,3.004982777777778,0.93455625,1.168798,5.94015,4.21815,6.5825,3.907405,4.580965,3.57055,4.115255,4.89227,5.2958,6.0525,3.828135,3.390565,5.1927,4.6172,4.13526,4.403305,4.542485,1.3596816666666667,2.6370299999999998,1.21832,2.0560525,3.080512777777778,1.4086961111111111,6.291565,5.60903,2.671573333333333,4.37616,2.98304,4.843665,2.82318,4.23624,4.913085,9.2275975,5.28,4.57356,2.26281,2.613655,2.07188,0.60666875,2.1261302222222223,5.97125,5.1975,4.72229,4.440265,0.4688133333333333,1.98613,1.48979,4.23378,0.6979507692307692,6.2703999999999995,2.04012,1.076325,1.076325,3.9407499999999995,1.9961559999999998,3.0184800000000003,2.513195,4.518095,3.4122375,3.4122375,4.59357,5.5254916666666665,2.6322033333333335,2.5634366666666666,3.2266866666666663,4.802345,1.8573419999999998,2.68273,5.5676,5.15755,4.81384,4.32251,3.88638,4.458565,3.5990241666666662,3.0327800000000003,2.2930975,4.159125,5.1944,3.2420512500000003,4.99885,5.66435,2.0880633333333334,2.41701,6.0399,6.91845,1.105658,2.634625,2.31372,2.6027566666666666,2.155405,2.5867,2.5508645000000003,1.0981277777777778,1.9145425,2.6807,2.3882925,2.4757716666666667,2.4757716666666667,3.0122915,2.971675,2.230444423076923,2.66445,2.314085,2.03656,1.5690626666666667,5.146405,14.837733666666667,2.94326,3.2937933333333334,1.853768,1.853768,1.5955133333333331,1.5955133333333331,2.8993033333333336,3.6829,2.8207,1.952825,1.952825,3.887033333333333,2.36741,1.31769,1.4038614285714286,3.105916666666667,2.8227933333333333,3.6430333333333333,2.5204347619047622,3.242653333333333,3.1389533333333333,0.688458,2.6194,3.588410666666667,6.964975,4.903115,5.29805,4.23751,3.660725,4.866405,4.59555,3.098713333333333,4.01137,1.3372549999999999,3.284613333333333,5.6281,5.39055,2.61912,1.44958,3.095595,2.366356666666667,2.98112,1.5214816666666666,0.6772592857142856,2.99878,4.4105324999999995,4.794125,4.087345,4.721275,2.9178599999999997,1.9887866666666667,3.296648333333333,2.6614366666666665,3.285823333333333,3.1016766666666666,3.331113333333333,2.652956666666667,2.361003333333333,3.5311333333333335,2.857673333333333,5.133,4.73012,5.193381666666667,5.193381666666667,3.471655,4.02671,3.56564,3.76535,2.961005,4.2292,3.296245,3.0398633333333334,6.256,0.7497975,5.2323,4.78638,2.504453333333333,5.37322,3.392633333333333,1.8397500000000002,1.2825942857142858,2.0904066666666665,0.983839,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.5952157142857143,0.5952157142857143,1.2841775,0.9092063888888888,1.7304132575757576,1.0369028571428571,1.0369028571428571,1.2755943686868687,0.4548188888888889,0.3792277777777778,1.2417675,1.5233925,2.6742233333333334,2.2808925,6.341601666666667,2.97679,3.88148,2.739045,4.757442,1.244265,4.73752,4.183705,4.78739,3.147065,1.494322,4.156951153846154,3.649855,4.30214,4.323745,2.116255,4.730175,4.55937,4.57416,1.2271779999999999,3.892165,4.60389,3.196825,2.4395333333333333,3.41446,2.45541,3.329035,4.539745,2.9794033333333334,4.67465,8.656265,3.16663,4.804235,4.17944,4.46554,2.6792533333333335,4.22696,1.2214428571428573,4.380205,3.29387,2.15442,1.20466625,3.009615,1.304745,0.4981986666666666,3.336,4.151485,5.220933333333333,3.5528999999999997,2.39365,2.95361,4.833425,3.880266666666667,4.788875,2.4576725,2.2203933333333334,4.08293,3.98196,4.118755,5.16025,4.411065,3.73224,4.525705,3.04035,4.27306,2.1346875,4.530395,5.1364,3.25359,4.332935,2.640425,3.77477,5.61345,3.99583,5.16315,4.615525,4.81387,2.3371999999999997,4.887905,4.937125,4.82154,2.16763,1.08517,3.99909,4.71328,4.105535,4.882535,1.99146,4.014135,2.219515,4.867825,4.63186,4.62867,2.372055,4.21549,4.618555,4.274975,2.5213733333333335,4.591995,4.670025,5.11155,3.65154,2.16763,2.55231,2.611215,4.94143,3.990885,4.1602,3.44398,4.697565,2.25663,6.77501,4.837965,4.59493,5.280954652777778,5.0228925,5.07235,3.31596375,2.7755283333333334,2.7755283333333334,3.883485,3.20721,4.54031,2.136865,2.89984,0.9578275,2.634513333333333,3.0328866666666667,2.3493366666666664,3.004903333333333,4.391075,2.7798233333333333,5.3717,2.51231,4.412475,4.8636575,1.780135,4.014405,2.7067599999999996,2.6489966666666667,3.865725,0.88118,4.846725,4.47572,6.0195574999999995,4.862505,5.48705,1.3324228571428571,4.62462,6.3806,8.410875,3.1869366666666665,3.3155366666666666,1.917094,0.811731,3.865875,1.0253942857142857,4.721415,4.4556,5.61365,3.18222,3.57186,1.111872857142857,3.494665,3.542765,4.418975,3.980585,2.95023,2.92802,2.311245,4.272235,4.754005,5.56455,4.200725,3.50781,0.44916222222222224,0.44916222222222224,0.44916222222222224,0.44916222222222224,5.4697,2.804775,6.1223,3.0636799999999997,5.17595,4.603425,3.749145,2.367615,2.4327799999999997,1.4540033333333333,5.2872,2.8006499999999996,4.172475,3.67296,3.61028,1.914605,1.16693125,4.328405,2.55568,5.909318333333333,3.94348,4.57531,2.31476,1.486515,0.8816444444444445,3.33328,4.225015,3.769885,2.0901475,7.966855000000001,4.686295,3.15858,2.31058,0.480713,3.5629,2.39392,2.11798,2.263155,2.818425,2.9481,2.53244,2.835763333333333,3.047955,3.213425,4.332735,3.64356,3.989195,3.13238,5.602591666666667,0.6068446666666667,4.44897,5.7646,4.936975,4.72656,3.3356666666666666,5.1968,4.40916,4.026265,5.172865,5.16465,4.402985,4.49404,3.75636,4.85211,2.83719,9.11426,4.910855,4.12704,4.72619,5.00225,5.45505,3.59829,1.150611111111111,6.042775,3.478155,4.841625,1.38974,4.29537,3.8359,7.045366666666666,4.4609,2.94028,1.92418,4.627135,1.994536,0.89046375,4.049295,6.23885,1.8913866666666665,2.3243033333333334,2.921276666666667,3.21544,3.56559,3.795935,5.08755,1.7003133333333331,4.162725,3.8185320000000003,3.34504,3.6986000000000003,3.734905,2.92757,2.668465,1.7681175,2.43228,2.66058,4.281575,0.5642491666666667,2.551013333333333,4.14382,3.05896,3.5595666666666665,4.466245,4.959875,3.861205,16.875884954545455,2.753,4.0858,1.472884,0.8897954545454546,0.8897954545454546,0.8897954545454546,0.8897954545454546,0.8897954545454546,4.73072,4.64113,4.826705,9.1934555,2.4430875,2.4430875,4.45373,4.686356666666667,1.29149,2.10174,3.910625,2.34551,2.332285,2.16378,3.136855,3.654836666666667,1.788985,3.481715,0.8201357142857143,2.800826666666667,2.7566066666666664,3.0280533333333337,1.5375366666666668,3.1554300000000004,2.2070833333333333,0.92588875,2.695256666666667,2.64529,1.2718888888888888,2.4645366666666666,2.62249,2.16044,4.333802666666666,1.7980333333333334,2.9354899999999997,1.9789875,2.622196666666667,1.1266,2.789123333333333,4.775192666666666,3.548766666666667,1.03758125,2.96933,1.3022075,2.47113,2.4118999999999997,4.7003449999999996,3.0347766666666662,2.5326866666666668,4.699026,2.60756,2.238485,2.8606366666666667,2.499563333333333,1.5536833333333335,2.7426100000000004,3.21578,2.970993333333333,2.6064933333333333,3.06401,2.5852866666666667,2.389055,3.6595570000000004,3.6595570000000004,2.9373766666666667,1.9292933333333335,1.8697733333333335,2.55145,5.43317,2.76591,1.92375,1.7037075,3.0012966666666667,4.18462,2.4275933333333333,1.176466,3.003406,1.5352066666666666,3.365933333333333,2.1574566666666666,2.4280433333333336,2.04881,2.963713333333333,1.280114,1.6693300000000002,1.3746600000000002,4.154075000000001,2.5394799999999997,4.19326,0.9631355555555555,4.06688,2.0507666666666666,2.0864675,1.722638,1.5925316666666667,3.2152266666666667,23.129385987012988,7.324566666666668,2.6008566666666666,3.4665258333333338,2.7868433333333336,10.069963333333334,3.11356,1.01828,2.534053333333333,2.4815866666666664,2.01771,2.8912999999999998,2.514136666666667,2.5317233333333333,0.9093479999999999,3.09915,2.5152533333333333,2.96088,2.6991266666666665,2.3563666666666667,2.1749633333333334,2.1452433333333336,2.74851,2.5576633333333336,2.05495,1.52896,5.3428249999999995,4.52635,2.3472825,2.949975,2.19646,2.46766,8.256414166666666,2.1642766666666664,4.877275,2.4730175,1.9817,7.76101,2.9171666666666667,2.59156,2.540575,1.780452,1.4657434615384615,3.206376666666667,3.080856666666667,4.30258,1.628065,3.6415,1.610175,1.610175,4.026485,3.88714,3.3724242857142857,3.3724242857142857,5.820953333333334,3.610745,0.422864,11.924283208180709,1.3660033333333335,0.9389185714285714,3.7370658333333333,1.4667054700854703,1.95171,6.1133033333333335,3.81626,0.7521127272727273,2.106856666666667,4.843802242424243,2.4065973333333335,3.850165,1.3078057142857145,5.4799,5.11215,4.79279,3.2542602499999997,1.998714,2.4477733333333336,2.49761,2.51781,2.20366,5.201883333333333,4.53626,4.18028,1.7801225,4.7268,4.09463,3.3961333333333332,2.134495,5.0707,2.4751266666666667,8.790773333333334,6.625755,1.8124525,2.87492,1.764586,4.4831666666666665,4.4831666666666665,3.1231166666666668,2.73175,2.9086233333333333,4.97468,9.5406975,4.13395,2.4522075,5.5192,4.19031,5.1585,1.9429880000000002,0.8731875,1.3359066666666666,4.442185,4.706795,3.6612666666666667,2.7317733333333334,3.6900999999999997,2.1393666666666666,3.832975,4.795545,3.39626,5.30655,3.162713333333333,3.62434,3.3361666666666667,3.160436666666667,3.3551333333333333,6.12045,3.063,5.35315,4.727425,3.11025,3.339075,3.339075,5.610318333333333,12.022211666666667,3.677766666666667,5.83202,7.179712777777778,3.64729,2.3712133333333334,3.870485,1.43474,3.754475,2.490205,2.990126666666667,3.0108766666666664,3.395566666666667,2.0322,2.389823333333333,2.7482333333333333,2.5525066666666665,2.9040233333333334,3.1121200000000004,3.730955,2.61751,2.88476,3.84562,2.7644133333333336,2.5882866666666664,1.13573875,2.0378,2.8097133333333333,2.4673633333333336,2.45039,2.403636666666667,3.4892,2.0782599999999998,2.1909899999999998,2.5610733333333333,3.1636333333333333,2.739603333333333,3.0034533333333333,2.5804933333333335,3.12128,2.8904599999999996,3.317944,2.6231,2.4704566666666667,2.35512,2.6207966666666667,2.6013366666666666,3.4922,3.358333333333333,2.002985,1.950465,1.950465,0.68126,1.5182639999999998,4.26413,3.37133,2.580346666666667,2.0322,2.8570533333333334,1.2700600000000002,2.6732,0.5606486666666667,3.4136666666666664,3.073,3.23391,2.969383333333333,2.5497633333333334,2.5977799999999998,3.0145,2.74459,3.2853266666666667,4.69836,1.522392,2.85905,2.44748,1.8090466666666665,2.15963,2.80078,2.6842900000000003,1.652268,2.505383333333333,2.5803966666666667,2.52899,2.6442033333333335,2.86065,2.95849,3.1668233333333333,1.37506,2.86757,2.298293333333333,3.5767,3.817833333333333,1.8717525,2.1881866666666667,3.226373333333333,2.45791,3.5128,2.6326066666666668,2.2719633333333333,5.224375,3.32093,1.81239,1.515226,3.3107233333333332,6.266776666666667,3.0857733333333335,3.538066666666667,2.816046666666667,2.993626666666667,4.687391333333332,1.6164079999999998,1.1742,2.213886666666667,1.6732004166666665,4.56061,2.8360266666666667,3.056976666666667,3.073843333333333,3.2412799999999997,2.2384766666666667,3.3096366666666666,2.525675,1.575856,2.814853333333333,3.48304,3.6286525000000003,3.283455,3.492465,1.62836,2.84928,3.663935,3.24362,2.286583333333333,3.8377666666666665,4.0122,3.892533333333333,1.3940775,5.613398,3.23880125,1.4628566666666665,3.603935,3.51641,2.90509,3.717775,1.8509440000000001,1.8509440000000001,3.229283333333333,2.9175533333333337,3.07643,5.10555,4.0888,4.312822,1.508372,3.0525233333333333,2.51485,4.1277425,2.96266,4.81053,2.5160766666666667,2.29947,2.5329099999999998,3.43773,3.422055,1.632342,2.9879200000000004,2.683745,2.3313075,4.5509,1.328055,3.065,4.18851,2.64701,3.602645,3.944785,1.5726925,1.6160933333333334,2.3217425,1.1319166666666667,2.1057695238095238,1.919705,0.4593257142857143,3.992485,2.41702,4.701935,4.038925,2.99822,4.529749166666667,3.449866666666667,3.1740566666666665,3.4971,2.4904699999999997,3.30119,2.830246666666667,3.1603766666666666,2.311033333333333,0.6627423076923077,2.3760600000000003,0.6159457142857142,2.021306666666667,2.476176666666667,3.11263,3.1064966666666667,1.46846,1.251655,3.964625,4.443225,3.454775,3.3613325,3.10465,2.0122775,4.04915,7.042983333333333,3.380965,5.50453,1.472925,3.89501,1.8454325,4.09604,3.516185,2.353595,4.06145,3.177315,3.645735,4.12222,2.20965,4.042365,6.209395,4.97284,3.573855,2.867275,1.8352975,1.97674,3.930515,3.30139,3.20455,3.588995,3.47221,3.465095,1.55615,3.640375,3.22311,1.6704925,4.1484025,1.0564833333333332,3.202715,1.6480675,3.97728,4.813511666666667,3.62926,2.84763,3.676825,3.36631,1.9336675,2.259345,3.8594666666666666,2.596345,5.6475475,4.15639,4.56559,2.2814,2.62435,4.31567,4.37818,2.167768,2.167768,5.662166666666667,3.8683924999999997,2.6808924999999997,2.88223,1.9474266666666666,2.804655,3.29493,3.714710833333333,2.699015,3.53146,0.9072800000000001,3.897875,2.88696,4.01785,2.4733,1.5337,1.460965,3.11565,5.753817000000001,5.70105,3.72431,1.6163925,4.325645,3.616375,0.7825183333333333,2.85783,1.29925,5.1300799999999995,1.3910166666666666,3.46788,1.9023225,1.46846,3.130445,2.968915,4.48906,6.71493,4.01749,4.794928333333333,2.528175,2.81998,4.071745,3.7262,4.25874,4.4018,0.9852825,1.6775485,1.0899475,2.59387,2.157875,4.81456,1.0899475,4.3956,2.26257,1.547515,1.547515,1.6704925,3.748135,4.1969,3.886185,1.44225,1.44225,0.9065733333333333,3.07778,2.0259025,5.9142975,4.218655,3.78879,2.864106666666667,0.99974,3.463875,2.866575,4.184675,3.595655,3.8501225000000003,3.8501225000000003,3.44684,4.11352,1.8812575,2.518425,0.9781777777777777,2.1721166666666667,3.66812,2.4399166666666665,3.3058158333333334,3.3058158333333334,2.714245,4.725875,4.500985,3.643075,3.671345,4.046795,2.556293333333333,4.331838333333333,2.76906,3.925095,8.16505,5.05005,2.784425,3.22469,3.032205,4.41379,3.236128,8.00025,4.666046,4.635015,3.539345,3.54464,3.484145,4.274015,4.671445,2.67189,4.321895,6.5781575,2.796325,2.136797555555556,3.243385,3.237165,3.735445,5.4696,2.2575333333333334,2.63167,2.822255,3.0872775,3.2455499999999997,7.1200866666666665,1.527885,4.957656666666667,4.957656666666667,3.145725,3.458170833333333,3.088635,2.2813733333333333,4.65513,4.246007,2.052902,4.00277,4.015295,3.494438333333333,2.892115,2.88793,6.087603333333334,3.46682,5.2388,3.06254,4.686995,3.920075,3.79516,2.9175533333333337,2.170853333333333,3.079775,3.82786,2.85533,3.3219800000000004,2.74311,6.292314999999999,2.385525,1.7287625,3.2338225,2.2766066666666664,3.83109,2.847185,0.7825183333333333,3.40083,4.11712,3.87213,6.022665,3.16179,2.96833,3.0428033333333335,3.0428033333333335,3.6716125,4.20936,3.697865,1.972635,5.8148175,2.131765,4.60425,3.523345,7.68292,2.78863,1.2601066666666667,3.115405,4.52089,0.66919625,4.05742,3.1201,2.96681,3.013205,4.301595,2.254583333333333,2.58514,8.98678,3.39365,2.99788,1.3910166666666666,3.72214,2.711105,2.2218287500000002,3.85654,5.2710175,1.6149775,1.1346616666666667,1.03855,4.18968,4.1841,3.59657,3.150215,3.150215,1.55615,2.318165,3.097680833333333,0.8862333333333333,3.1012,1.0856725,1.62836,3.374175,3.47565,2.562775,2.5831,2.8081725,4.36801,3.74425,3.04263,2.993215,2.93598,4.206065,6.53336,3.96808,0.8909925,2.3996545,8.39829,4.614955,4.06268,1.008205,4.918593333333333,1.3936583333333334,3.51966,3.51966,3.767965,8.751369166666667,0.8201177777777777,4.580925,4.35441,2.3582233333333336,4.1805433333333335,3.64819,2.130935,9.748885333333334,1.824045,2.3794133333333334,3.327005,1.7684,3.9754240833333334,2.817465,3.469655,3.4228899999999998,2.829385,2.92919,1.1824216666666667,7.2802,4.155905,3.70816,3.954495,1.93595,2.84763,4.333749166666667,3.48861,0.6243830769230769,3.902935,4.12229,4.633515,2.0629625,1.41215,4.29268,4.14734,8.88014,0.717296923076923,0.876175,0.876175,1.8796333333333333,1.6469666666666667,1.414452,1.7752666666666668,4.641405,1.3202166666666666,0.8788814285714286,3.9354275,3.49973,1.2142025,3.017375,4.51726,3.733155,0.747814,1.911345,9.26575,3.433815,3.51015,3.029735,1.5939425,2.5263666666666666,2.70958,4.53041,4.31107,3.676105,0.9054957142857143,1.4057840000000001,0.9117279999999999,4.1083025,4.287655,4.04761,0.8862333333333333,1.688356,3.82681,2.0822932142857145,4.958048333333334,1.078,4.84065,0.5857249999999999,0.5857249999999999,0.5857249999999999,9.445205,4.02964,1.0856725,3.853,4.69278,2.87693,3.309115,5.081172499999999,2.602515,1.9279033333333335,2.05245,0.747814,1.5303323333333334,0.5621233333333334,0.7762600000000001,1.5255766666666668,3.9062,3.743975,2.0575975,7.313611666666667,4.823010833333333,0.6138155555555556,6.2493,4.9804433333333336,3.38992,4.529355,7.215500666666667,3.8289899404761907,4.823010833333333,4.416746916666667,2.4301666666666666,4.052565,3.498175,7.307970000000001,3.62725,0.480713,1.522982,4.08013,1.755172,1.1346616666666667,3.919505,2.34673,1.949485,3.232015,1.6741879999999998,4.377355,4.336735,4.27049,4.725975,6.20749,2.59214,3.797615,1.29925,2.3145525,3.598615,3.18166,2.052902,4.00746,2.453995,5.02665,2.99918,2.361275,3.2626791666666666,1.574042,3.465985,0.8862333333333333,2.15136025,1.03855,1.772815,3.50208,1.527885,1.5255766666666668,2.12629,3.38885,7.546,0.9054957142857143,1.008205,1.2572800000000002,3.36592,3.78419,1.2572800000000002,3.931945,2.3145525,0.66919625,0.8862333333333333,1.8796333333333333,1.29925,0.4593257142857143,1.675318,4.193718666666667,2.3582233333333336,1.3547583333333335,2.942355,1.3940775,1.824045,2.843561666666667,2.05245,4.82435,2.843561666666667,0.7825183333333333,3.027304,2.142765,0.09710227272727273,0.09710227272727273,0.09710227272727273,0.09710227272727273,0.09710227272727273,3.25676,2.6929200000000004,2.7850633333333334,2.9610633333333336,4.68272,4.23723,1.722638,3.614515,3.637195,2.282895,4.968815,2.721585,2.44696,2.478495,2.736705,4.47895,8.546563333333333,2.309855,1.9919366666666667,2.7743596428571426,0.9348771428571429,1.3883783333333335,2.3547033333333336,2.0119466666666668,1.543665,2.6833633333333338,2.20433,2.505873333333333,2.53615,2.686386666666667,3.691775,3.63217,2.65897,1.313326,3.610565,3.52576,1.5201833333333334,1.333914,1.333914,1.333914,3.467255,2.7840433333333334,1.12765,2.19354,1.3511657142857143,4.263015,1.5675166666666664,6.056343333333333,3.2399125,2.4195533333333334,3.0645439999999997,3.0645439999999997,5.3292866666666665,3.01897,4.391595,5.15855,2.1629625,3.06652 -GSM1946781,1.0,1.94519,1.94519,1.59521,5.4121,5.1689,2.641770131578947,1.72312,7.92639375,4.62117,2.9609733333333335,2.315045,2.279735,3.535035,4.476135,1.900532,1.503812,4.927955,2.4745833333333334,2.4746425,5.2496,5.113295,3.87177,2.199795,1.807044,3.96287,4.791355,4.22205,0.7350383333333333,1.6183433333333332,1.9084950000000003,2.55945,1.536055,1.2672657142857144,0.7091025000000001,3.248263214285714,1.4798475,1.7171825,1.4949675,2.082625,1.2073575,1.2890225,1.1823380000000001,1.48933,0.9148440000000001,0.908836,0.8444100000000001,1.0575285714285714,1.71238,1.741294,1.4797639999999999,2.2662400000000003,1.708694,18.429081749999998,0.3748866666666667,0.85211,1.185298,1.8495940000000002,1.61654,2.03484,1.0215128571428571,1.0215128571428571,1.0215128571428571,1.1473716666666667,1.25002,4.81616,1.297315,2.031105,2.190655,2.735925,1.04528,2.3147575,2.45419,2.0525,1.4198575,1.97946,1.4617275,1.658475,2.3909966666666667,4.154905,4.718065,4.91976,1.5894166666666667,4.751475,5.082213333333334,4.175135,4.2036,1.125645,7.60428,0.601165625,0.601165625,2.075775,1.2148414285714286,16.61835,5.032,5.6081,4.841595,4.28993,4.07343,5.06095,0.49408666666666673,2.3793804166666668,1.7769375,2.4098025,4.92322,4.48796,1.3114375,3.068936666666667,3.0614333333333335,2.7527166666666667,3.3074766666666666,3.24425,4.920035,2.921655,4.87461,3.104703333333333,0.7448354545454545,1.494788,2.190985,4.25906,3.67725,0.51126875,3.59653,3.79528,0.7927375,4.13463,1.6532358441558443,2.024205,2.4509575,2.0074925,3.74719,5.30155,3.323295,2.8281766666666663,3.3218833333333335,2.929676666666667,4.072275,2.23477,5.6233,3.51364,4.12377,3.315825,2.319,3.53744,2.42009,7.171681666666666,3.748305,4.213715,3.47019,3.39993,4.818905,0.7545088888888889,9.893103809523808,3.3931,2.0307166666666667,2.0989383333333334,3.26242,2.4288,4.803435,5.5916,2.239665,4.789359166666667,2.62645,5.38045,2.239665,2.61476,4.669445,5.095933333333333,4.85961,8.111466666666667,3.457995,4.2721,3.04373,5.21615,4.73358,1.2442883333333332,8.00245,4.46607,3.52739,4.272225,3.577235,3.609055,2.13229,6.0413250000000005,2.322145,3.95232,4.1956,5.18745,4.576685,4.196585,1.7143166666666667,2.655,2.90794,1.905785,1.905785,6.4580527142857145,3.152885,2.0084733333333333,4.542135,4.39017,3.13729,1.431375,1.1307666666666667,6.96935,3.75036,6.8882,4.30325,4.9074,3.608735,2.91709,3.6543,3.42217,3.831895,4.352645,6.5198,2.84457,3.66721,8.999996666666666,4.738015,3.5391,2.9537999999999998,2.532113333333333,3.8973666666666666,4.043059166666667,1.5454925,2.8628133333333334,2.1989433333333332,1.687264,1.7449166666666667,2.4893433333333332,1.662195,2.230545,2.83412,2.7337166666666666,2.3394,2.9484066666666666,5.082213333333334,3.738755,3.53315,3.449265,5.2785,1.54789,2.02635,2.923610285714286,2.1596599999999997,2.6130633333333333,2.4084066666666666,3.330666666666667,2.05932,1.35652,2.79972,0.715284,1.62188,0.5507500000000001,0.5507500000000001,1.6623833333333333,2.2300999999999997,2.6776133333333334,1.2732866666666667,1.4690233333333333,0.35637615384615384,2.7412166666666664,0.715284,1.2371166666666666,0.2827,1.4796033333333334,2.0796275,3.5007333333333333,3.1818166666666667,2.30195,2.49276,2.4694033333333336,2.3481133333333335,2.5360133333333335,2.4495733333333334,2.1485766666666666,2.563003333333333,1.8412266666666666,2.76743,4.42035,0.708125,1.8138699999999999,2.5236533333333333,2.0956966666666665,3.501763333333333,1.5358399999999999,2.5601233333333333,2.3623600000000002,4.167086666666666,2.1738833333333334,7.176057619047619,1.6875142857142857,2.9572366666666667,2.0955,2.1309875,3.6464,2.24011,1.8832175,4.881405,2.7897533333333335,2.25313,3.968295,3.9604,4.319725,3.94977,2.30324,3.26585,5.007104666666667,3.894015,3.715855,3.80088,4.60635,3.064735,4.74,3.57253,0.8755425,4.8611,1.30109,4.724535,3.7645,5.921546,3.549695,4.123755,0.93264,2.20861,3.490735,3.912935,0.9696328571428571,1.428535341880342,2.134408571428571,3.1529937142857145,5.134382499999999,5.384078,2.1688175,3.56121,5.94435,0.3553592857142857,3.90233,2.33726,1.0491775,3.986545,1.946095,13.35012,1.24684625,1.5798075,2.8218633333333334,2.370895,2.3184259210526315,6.167030921052632,0.35991842105263155,1.69611,2.93586,1.004945,2.5212266666666667,0.9033585714285713,5.1343,3.97332,2.0984000000000003,6.07225,5.4861,2.3954075,1.165177142857143,4.531253333333334,4.87475,4.1653,0.9103636363636363,8.269066666666667,2.923166666666667,4.57175,2.6288133333333334,2.5566166666666668,5.01295,2.9288233333333333,2.8013399999999997,2.2796266666666667,2.4355166666666666,3.149405,2.7849233333333334,0.348259375,4.065585,3.79397,3.74552,3.609525,4.36287,6.2166049999999995,4.13955,1.7000875,5.6751,4.60233,4.673765,4.349155,1.1279350000000001,2.90256,3.4159666666666664,2.6622266666666667,15.14613,3.10375,3.835015,4.342365,5.26815,2.41232,5.167631527777778,1.8181425,0.7536455555555555,2.697725,3.53376,4.26763,3.469025,6.48541,2.908673333333333,2.30665,2.217335,3.368866666666667,4.849895,2.359795,0.3957344345238095,2.5927696739130437,1.995295,1.09537125,0.49441552148033124,0.593096608436853,0.3957344345238095,0.3957344345238095,0.3957344345238095,1.1756675,1.4043875,0.8456375,1.5467975,4.584462500000001,0.208765,11.457692467532468,3.0335366666666665,2.864986666666667,4.00201,3.926685,3.94807,2.218115,4.75279,4.202761333333333,4.29988,3.777645,0.7774153846153846,3.3581333333333334,3.936722051282051,0.6154514285714285,3.290915,2.957266666666667,4.966495,0.4944763636363636,1.938935,4.401445,3.655055,2.0529075,1.7207,1.8028533333333332,3.630466666666667,3.86261,2.92079,2.8277733333333335,5.318,5.47435,4.83391,3.107666666666667,3.864455,6.360025,3.8979,5.82015,0.4097490476190476,3.4296666666666664,4.057733333333333,1.96879,2.43302,2.7096116666666665,5.826359999999999,0.6795524999999999,2.12413,4.509705,3.9826,1.0309771428571428,4.82478,4.75964,4.79115,3.3084466666666668,4.78928,3.453945,4.29237,1.1897533333333332,3.83274,2.7998766666666666,5.09095,4.595765,4.402725,5.7453,3.96303,2.57973,5.98259,2.341133333333333,3.296885,3.1779499999999996,2.9164999999999996,2.7658233333333335,2.633036666666667,1.796266,1.4332033333333334,2.2074366666666667,0.7870928571428571,1.8917466666666665,2.924936666666667,2.037713333333333,3.09286,3.4468666666666667,2.7283333333333335,0.90272,4.834805,3.5852,5.469764583333333,2.6393679166666666,2.9990466666666666,3.314913333333333,1.3909966666666669,1.3909966666666669,2.438224025974026,2.438224025974026,3.3261768831168834,0.5455514285714286,1.7044966666666665,2.666786666666667,3.470133333333333,2.1539795238095234,2.1539795238095234,2.1539795238095234,7.7506869047619045,4.54520380952381,0.966981818181818,4.419505,5.16797,2.3283275,4.79887,3.17388,2.176965,4.863555,3.108913333333333,3.1422633333333336,0.93575625,2.1036433333333333,3.2216766666666667,2.90306,2.4577633333333333,5.4672,3.7655,3.6504,4.799546666666666,1.9157833333333334,2.72857,2.923306666666667,1.0326244444444446,2.0924533333333333,3.920408666666667,8.051095,1.519245,2.99299,4.61483,2.0667999999999997,1.8344975,1.8344975,1.04890375,4.97533,7.576475,3.85996,6.06518,4.740225,1.9826499999999998,4.295525,3.13002,5.09825,4.8951199999999995,0.3416694736842105,3.10066,2.845345,4.51206,3.96877,1.7485060000000001,1.9727775,2.6737,4.49862,3.620215,3.188535,2.35284,1.501572,6.77741,4.21732,6.05365,3.455255,4.223725,4.64582,5.27705,5.0651,3.4630150000000004,1.9324925,1.15774,2.72526,3.800805,4.545395,5.3955075,5.7424275,2.1738925,2.3503700000000003,2.4734366666666667,2.676023333333333,2.866903333333333,0.6556664285714285,1.783375,3.65271,1.0852,4.888335,3.315025,6.069687500000001,1.3283862121212122,1.3283862121212122,3.92693,3.664145,3.5478,5.55025,2.7129,2.29,4.059275,4.23713,1.9662025,3.2782699999999996,2.5833166666666667,4.10391,3.5710675,3.42316,4.26645,0.9675622222222222,2.645045,4.30975,4.818715,3.238435,2.407646666666667,4.4914,0.6544977777777778,0.6544977777777778,0.6544977777777778,0.6544977777777778,1.4638244444444446,4.01982,4.01982,1.8141433333333332,7.202468333333334,3.9419,4.311845,3.2892966666666665,2.802575,4.914015,4.189775,4.56256,5.1524,2.04101,4.853505,3.76868,2.798605,4.47304,3.20554,2.455585,4.583295,1.957685,4.642705,1.747305,3.6287054166666666,3.058055,1.749125,1.3304133333333332,3.016905,4.22064,1.47378,0.83912,4.21654,1.211025,4.993476,5.1471,1.3978957142857145,3.54883,0.7489722222222223,2.5421033333333334,2.6975166666666666,2.34548,2.811675,4.27679,2.934990833333333,4.63267,5.26365,4.336495,4.270255,2.365875,1.2724942857142858,3.62892,5.103,1.3739275,1.3739275,4.12153,0.25982,2.0973666666666664,0.25982,0.25982,0.25982,0.25982,4.948145,2.55571,3.16558,3.77588,3.1959066666666662,4.2917,2.476246666666667,1.12374,1.12374,0.9672466666666667,0.9672466666666667,3.795175,1.824725,3.51347,1.4440426785714287,1.4440426785714287,5.7374,0.47488071428571427,2.3020625,7.165305,5.10895,3.09331,3.728085,0.98256,2.23027,1.9496525,4.289835,4.704145,4.197435,3.66953,1.2917828571428571,2.78311,2.12847,7.36136,1.878765,4.652425,4.963065,2.72914,3.86644,6.09197,7.756640000000001,4.072775,5.01855,5.4251,2.3167925,3.15449,2.363605,2.36655,2.08698,3.71047,4.674765,5.835941666666667,6.1928,4.38431,1.1484366666666668,1.543025,4.171385,4.41948,2.180295,5.1226,4.4601,4.6498333333333335,1.7411433333333333,3.852066666666667,1.5944733333333332,6.341933333333333,2.6668833333333333,2.4011,2.3169133333333334,2.716775,3.140843333333333,3.2537866666666666,3.6799,3.3911333333333338,3.4361333333333337,1.546218,4.530245,3.06576,3.432545,0.377935,2.88776,3.951335,2.4554525,5.7618,5.17595,4.68866,6.6357680000000006,5.2301,2.2120466666666667,4.2341,5.13975,1.6127966666666669,5.29955,5.8694,5.21245,4.68473,3.21435,5.5804,4.88023,3.97427,5.7093266666666675,7.52614,3.496205,1.2243950000000001,1.4159566666666665,3.04311,1.974438,4.83294,3.945285,5.2174075,2.3533166666666667,2.6499533333333334,2.77962,2.5582933333333333,2.5745133333333334,1.2463333333333333,0.5338523529411765,4.185925,3.87099,3.3619333333333334,4.356665,2.95063,3.2984466666666665,5.611090000000001,3.0534466666666664,0.5684794117647058,3.660535,5.4645,1.9578875,1.63503,3.65689,3.5351,2.510893333333333,3.857333333333333,4.751545,2.7382933333333335,2.22977,2.2865699999999998,2.5032166666666664,2.65209,4.20947,4.834614999999999,7.422211916666667,1.902098,5.37035,3.6690004166666665,5.869764750000001,3.01111,3.13336,2.077025,2.4867666666666666,1.4263875,1.4263875,2.6367066666666665,2.3149866666666665,2.73242,4.740265,1.775928,2.26761,1.981305,0.66911875,4.327935,0.7067691666666667,0.99574,3.59716,4.500325,4.005995,1.6726475,4.775065,3.0234366666666666,0.9075285714285714,4.31258,3.7345942857142855,3.241823333333333,2.459235,4.91663,0.2863696551724138,2.2318765,3.025185,1.442935,3.56378,6.59215,2.27521,1.4738166666666668,3.725315,3.73606,2.6547566666666667,2.6547566666666667,3.548375,4.24885,4.915245,5.442573333333334,5.08455,1.03896,2.54832,2.5574933333333334,4.33068,5.0753,5.46885,5.00665,4.2465,3.711933333333333,3.7464,3.3516999999999997,3.9908,3.19987,2.953386666666667,0.6761678571428572,2.136825,2.487925,3.642575,3.30303,3.180066666666667,0.7976116666666666,2.880525,4.0191285,4.2246,5.6008,4.006965,2.1916225,2.1916225,0.9089639999999999,3.54077,4.85534,4.385135,4.562746428571429,2.96436,4.91607,0.6180127272727273,3.298225,4.08723,4.35268,3.414811666666667,0.9064285714285714,3.586745,4.16522,4.900445,3.69756,5.1037,2.723945,4.187845,1.500625,1.0366328571428571,2.82007,5.15725,4.070725,3.28278,1.4605616666666668,4.155375,2.2995475,2.81225,2.752686,3.1079266666666663,4.58924,2.809806666666667,1.798394,3.3726333333333334,1.4825046428571427,2.78727,2.7362866666666665,2.237805,2.779733333333333,2.86885,2.6093366666666666,2.4782800000000003,3.42995,2.9743033333333333,3.7579233333333333,2.86344,1.77776,4.216921666666667,3.135593333333333,2.492926666666667,3.7579233333333333,2.44722,0.8088072727272727,2.41386,1.0605633333333335,2.2447975,1.557715,0.9073745454545455,1.9036075,1.99294,2.54393975,2.6168,4.589955,1.5273025,3.72598,2.966613333333333,1.647014,2.15678,2.6893133333333332,1.6356166666666667,2.9206800000000004,2.788683333333333,2.3509238636363636,1.7933175,1.905796,3.5573333333333337,2.3650533333333335,2.7298633333333333,2.9604433333333335,2.5953233333333334,3.736466666666667,2.24297,4.3884,3.425133333333333,3.6776999999999997,3.2164033333333335,3.5485,3.5657666666666668,1.6555366666666667,8.494245,4.167915,4.551315,3.354795,2.96838,2.038185,3.9695,1.70062,4.12506,4.582305,1.401196,2.3447366666666665,1.0964416666666665,2.53919,1.70013,2.4702933333333332,5.03268,2.77553,3.406885,4.90572,0.80628,1.6731500000000001,1.03345,3.596825,11.103085,3.852866666666667,6.4944,1.8965575,5.1926,4.413145,2.47279,5.19885,0.27453,0.7898085714285715,4.890505,5.2076,7.412694999999999,2.271995,4.334585,5.1021,4.623385,4.612095,3.97133,4.3957,2.991085,5.353898333333333,4.2186,3.85691,3.277305,2.0888033333333333,1.9552833333333333,1.6557319583333334,2.4173833333333334,3.88405,4.810855,1.53608,8.70624,2.427916666666667,2.7733833333333333,0.9718260000000001,0.9718260000000001,7.669357083333333,2.784285,2.3010725,1.9706725,2.6976366666666665,2.11326,0.9670766666666667,3.2052058333333333,2.5210733333333333,0.6572042857142858,1.78132,3.3387200000000004,3.3387200000000004,1.1581566666666667,2.45963,2.5231266666666667,2.5232099999999997,1.2701875,1.7539066666666667,4.953708000000001,2.685083333333333,2.548075,1.276245,1.276245,4.527565,5.1548,4.922995,3.130935,3.71835,6.35907,2.73177,3.4396,3.4139,4.06524,1.1369666666666667,3.3857666666666666,2.5206,3.822425,2.2031966666666665,4.50712,3.396155,4.34083,3.50286,5.151976,0.9529455555555556,2.0719625,1.771925,3.42996,4.8339925,3.879905,3.8778,4.36713,4.66674,1.8016275,4.49939,3.400165,3.586315,2.3382033333333334,0.81827875,3.60501,4.587865,4.979745,1.22889,3.083816666666667,3.0639000000000003,1.9188366666666665,1.619545,1.619545,1.083015,2.3622466666666666,1.0696885714285715,1.3750959999999999,4.519515,4.577625,0.527,3.327525,3.2247233333333334,4.089475,5.6949,0.4240145,9.12077,5.58205,3.688135,4.35721,4.507195,5.595475,4.907435,7.025715,0.698659090909091,2.9597366666666667,5.57235,2.7197366666666665,1.9273875,2.03238,4.932745,5.1057325,2.306393571428571,2.87158,3.3500666666666667,1.6274075,4.57313,10.60515,8.695718333333334,4.0343333333333335,5.03935,2.93899,3.43384,3.793265,1.841116,2.98176,3.567155,4.684755,4.91125,4.99005,6.807533333333334,2.5648866666666668,4.39781,4.757845,4.938685,5.6012,4.919980000000001,4.2159175,6.27915,3.32921,3.052175,2.80993,5.5853,3.724715,5.4258,2.24875,3.28504,3.403095,5.8477,4.29458,4.300255,1.488054,0.8897175,2.727475,0.6065833333333334,4.89417,3.59914,3.41269,2.755675,2.060916666666667,2.90675,2.49893,2.9095839999999997,1.771502,2.922,2.767675,2.266495,2.575675,3.501954,1.2587916666666665,2.7175616666666667,5.2096,3.7808333333333333,0.99187,2.58287,3.7252041666666664,3.705879,1.5648625,5.47615,5.4304,1.83681,2.925333333333333,30.514551266713678,3.21508,1.7270833333333335,4.1058666666666666,1.9873066666666668,2.6622399999999997,2.7904966666666664,3.5297,1.96251,2.793075,2.3420525,3.5845944999999997,3.061033333333333,2.3340125,1.53181,2.0348800000000002,2.84135,0.38874500000000006,1.10358,2.600826666666667,1.6888159999999999,3.445605,1.5648625,2.0490333333333335,25.447230388888887,4.78647,4.82474,3.75098,2.73232,2.49923,2.5688633333333333,2.206795,3.85203,5.212447,5.6427,1.583832,2.0201000000000002,2.31572,2.5173916666666667,3.9426249999999996,5.1835,4.72907,4.865695,0.2054368085106383,4.860245,5.035829166666666,3.68205,8.79557,1.0553375,1.0553375,3.039846666666667,3.16505,5.6432,2.160487777777778,1.0839122222222222,5.06445,1.8732,4.15405,3.961505,3.279445,4.08358,3.923275,5.12105,3.12278,0.7021755555555556,3.05425,2.149425,4.49076,7.842715,4.696345,2.3124866666666666,2.3124866666666666,6.551612499999999,4.794235,4.06972,5.97665,2.114596666666667,5.403625,1.4133733333333334,1.30827,2.829283333333333,1.9234499999999999,2.72114,2.6774133333333334,3.71044,4.2199575,4.403475,5.06755,2.3150825,2.495265,1.9521825,2.856475,2.1260975,2.1515825,2.06261,5.180422500000001,1.8958575,3.732998571428572,2.34394,3.4807,2.6596699999999998,1.6733200000000001,1.4363428571428571,0.9780150000000001,2.4739533333333332,3.8036666666666665,0.6817840000000001,4.8616,1.86712,6.128157916666667,1.9640725,1.501015,1.643265,1.5377766666666668,5.704757222222222,1.8598020000000002,3.1019900000000002,3.5375333333333336,1.20451375,1.8691675,4.684882666666667,2.9451666666666667,3.0384433333333334,3.705966666666667,2.9597933333333333,3.04373,1.2719685714285713,0.2931333333333333,0.2931333333333333,0.2931333333333333,0.2931333333333333,0.2931333333333333,4.791935,2.4574000000000003,2.5636,3.3891666666666667,1.3659783333333333,2.65454,3.5691666666666664,2.8610966666666666,3.430645,2.91741,1.7555166666666666,2.9653733333333334,3.10146,2.161255,1.919285,3.57218,2.9549333333333334,3.0357333333333334,5.52085,2.716606666666667,2.9016066666666664,2.561166666666667,10.6939925,5.12025,4.728715,5.0965,4.14231,2.7930766666666664,5.081,3.731755,2.927365,5.9251233333333335,4.28896,3.250005,2.502175,3.624645,4.643571142857143,3.84934,17.597809023809525,1.2381925,5.0092,0.8276044444444444,1.17383875,2.8921,5.01695,4.14917,3.51218,1.42387,2.384195,4.092675,2.5182733333333336,4.887555,3.4379028571428574,2.4284,0.6594066666666667,2.7209233333333334,5.22215,2.2852625,2.3696625,2.321995,19.227879166666668,1.8156580000000002,1.3437125,2.7459866666666666,0.2985692307692308,1.8713,2.6982633333333332,1.9963233333333334,2.9909666666666666,2.670625,7.676825,1.9472775,2.5988,2.2475225,2.2240525,1.6248883333333335,3.328246666666667,2.99372,3.781405,3.00108,2.056045,2.5599545833333335,3.1528111111111112,4.975415,0.4701108333333333,3.9979999999999998,3.1681333333333335,3.005365,2.1389025,3.6018095,3.52442,1.6188066666666667,2.204403333333333,2.1985466666666666,1.4827766666666669,2.0913633333333332,3.653515,3.356425,0.800465,3.16054,5.13725,4.374905,2.366042,2.366042,3.0798633333333334,5.2466,3.44965,3.34943,2.29931,1.0702545454545456,4.236045,3.63824,5.78815,4.34563,2.267554,2.267554,1.6737725,3.829165,5.5145,3.93138,4.190935,3.2111666666666667,2.32586,4.41712,3.88753,4.09847,2.9565900000000003,2.5326233333333334,4.428723333333333,3.1087666666666665,2.6645366666666668,1.7689933333333334,3.604925,2.870275,1.5699666666666667,3.609915,3.786445,4.20216,2.996283333333333,4.599945,4.194405,6.82239775,4.005025,2.2808,4.809845,2.841495,7.19694,2.6757299999999997,1.3885866666666666,4.18881,3.3918666666666666,4.733215,0.6225835714285715,0.8105833333333333,3.78127,3.75353,2.164675909090909,4.439405,2.803115,2.79372,10.453199999999999,1.87572,1.272146,4.06986,2.501135,4.22052,4.901865,6.603718333333333,2.8959133333333336,2.04874,3.21716,2.03437,3.4476999999999998,8.610511683087028,0.9396171428571428,1.0585825,5.2067,0.481464,1.735145,2.349145,2.9555,3.0657,2.101215,3.85929,2.5818,13.55292,5.098504999999999,2.30623,2.30623,4.34626,0.7727966666666667,5.285596666666667,4.147835,4.013125,6.571371666666668,3.140515,4.34714,1.5305933333333333,2.864705,2.62814,2.8814,2.99678,2.639315,3.118245,3.47633,3.487485,3.018115,3.07288,3.197225,4.68828,4.099885,3.1179433333333333,3.13271,4.87422,4.53936,18.5180225,12.996312857142858,3.0774864285714285,0.6681016666666667,1.493142857142857,4.73675,3.19841,3.1514112179487177,1.81473,0.9222522222222221,0.6921175,0.63303,2.13571,1.578016,4.939168333333334,3.090203333333333,0.6792927272727273,3.20112,2.44668,2.0220175,2.0205200000000003,6.375213333333333,1.526098,4.672955,3.4872,2.9301333333333335,2.265425,2.5955533333333336,2.4915133333333332,0.7419372727272727,3.21163,2.9153300000000004,3.4380006666666665,3.012003333333333,4.909511666666667,3.582405,3.307295,2.20436,3.723785,8.25465,2.0999625,2.34497,2.46473,1.599745,2.707025,2.2789875,2.72845,0.958219,1.401815,1.064785,2.85258,4.16965,6.0048,5.44555,2.718415,2.306255,2.789125,3.3753333333333333,7.618356666666667,1.33844,0.418584375,3.159715,2.1167466666666668,1.55391,3.560747,1.232264,2.2707983333333335,4.772741666666667,3.7537333333333334,1.2054866666666666,1.8340500000000002,3.659885,3.51636,4.690385,4.582045,2.08541,5.41205,3.862735,0.7895846153846153,4.61824,4.207885,4.54944125,3.5818,2.402515,1.324072,1.268305,3.52991,2.850495,3.21854,4.460315,2.83916,2.64744,3.198605,3.73174,5.1945,2.361525,2.62988,4.354365,5.85515,0.58369,4.522935,1.9723125,3.33357,3.9784,1.655705,3.13168,2.2022225,1.99039,2.428605,2.64785,1.8470533333333332,4.482255,3.428955,1.416157142857143,7.63913,1.2155933333333333,4.042135,1.7070333333333334,4.466245,4.04183,2.50623,3.35992,3.98071,9.55795,2.97067,3.62733,4.308825,3.47104,1.6861,7.55715,3.844235,4.40521,1.55313,3.97882,2.76153,1.06950625,1.995192,4.246485,2.163165,4.2253,4.8535375,4.2440375,4.68688,2.295215,5.4207,4.09613,3.346,2.25697,1.9930119999999998,5.6713,6.1351,5.61545,4.46041,2.70021,2.23352,4.137535,3.54301,1.1281395054945054,4.04885,4.7041275,4.071625,2.787285,3.560645,0.6531685714285714,0.6531685714285714,5.8504,5.11115,6.0981,2.182495,4.03843,5.32635,0.812538,4.523225,4.777385,4.613645,4.55164,4.706895,1.934875,3.03968,2.1170575,4.41368,0.69671875,3.98044,4.23981,2.901645,3.067653333333333,4.473235,2.198535,2.994215,60.64891069264069,3.201905,2.480983333333333,1.667275,3.33549,3.832265,0.9071275,0.97251125,2.04699,2.04699,1.331736,3.16503,2.191505,3.7925554999999997,8.4676,2.8003400000000003,1.1731571428571428,1.4842266666666666,2.589653333333333,3.956980833333333,0.9554790000000001,1.827895,1.14786,2.0477075,4.33856,4.442665,3.07765,22.551379978354976,4.92483,3.814675,3.126155,2.0841433333333335,3.4154,3.26904,2.480305,5.14898,1.62018,4.145475,3.36370201984127,6.340565416666667,2.035685,2.599935,1.924905,4.765605,2.399293333333333,2.1972525,2.0178133333333332,3.7636761111111112,4.21552,3.63152,4.531375,4.94531,2.7004,3.063175,2.90768,2.60312,2.9334361111111114,2.40355,2.0988925,3.765255,1.1729616666666667,4.17084,4.82965,2.47329,4.95295,5.07955,6.128963333333333,2.087216666666667,2.155925,2.631375,2.6775,3.78612,3.248565,4.652285,0.6865899999999999,3.84462,2.67977,3.763855,2.351555,1.8185120000000001,4.243648333333334,1.265011111111111,2.732005,4.333055,1.103412,3.6248,3.80791,4.678255,5.73824,2.086935,2.796535,2.81786,3.9872,2.0319233333333333,2.6242086666666666,3.4083666666666663,2.36628,2.4034,1.4391266666666667,2.099445,2.099445,1.82599,2.0526133333333334,1.7490066666666666,3.138116666666667,3.92251,5.54005,2.873725,1.62158,4.336235,3.75092,3.428805,4.10398,1.88844,2.26035,4.583489999999999,1.778875,4.670656666666667,3.990775,3.558875,2.4259766666666667,3.742143125,3.114795,2.96911,3.518295,0.14068857142857144,2.61322,7.696275,1.482016,3.334695,3.842875,0.9724414285714286,1.0555116666666666,1.89048,3.969525,3.06564,6.467836,3.15445,3.60934,2.78747,2.654875,3.743835,3.33709,3.853905,3.3948,2.7662666666666667,5.62275,4.325465,4.36557,2.533113333333333,1.96349,3.32317,4.314565,2.67551,3.301525,2.34234,4.922625,4.170665,3.694375,2.56868,4.608895,5.0605,2.612365,3.879225,4.588585,3.55214,4.500685,3.42699,2.745245,8.44753,4.491235,5.5988,5.1488,4.202845,5.2584825,5.36085,3.683155,1.329632,6.68595,2.276265,5.0213,4.152135,4.049935,3.03905,1.98235,2.2406566666666667,2.3573666666666666,0.9990650000000001,3.2815766666666666,3.3618333333333332,3.036486666666667,2.33683,3.706705,4.366655,2.64102,0.5250158333333333,4.647855,4.55,4.873755,4.965385,4.06518,4.741265,5.0076,4.89024,1.4460888888888888,0.9230307692307692,2.9959066666666665,5.25775,5.27745,0.46955875,2.7648,2.5289966666666666,3.180865,4.464595,3.876133333333333,1.7742,4.10428,2.99726,4.28473,2.92314,6.3244,5.20995,6.9440875,0.6124483333333334,3.563795,0.8167,2.279885,4.0286,3.3034833333333338,1.3371266666666666,2.2516,4.28563,3.499625,4.003405,1.97786,2.1092175,2.994635,4.874375,4.773415,4.077325,1.6095479999999998,1.2037145714285713,6.5078,2.4464375,7.771000000000001,4.78283,3.514665,2.040335,1.60376,4.100655,4.428335,1.6741833333333334,2.30861,2.546375,2.61322,6.8347825,3.18523,2.83865,4.0870775,3.832605,2.07313,4.130085,6.667735,4.46711,5.2014,0.5807709090909091,3.297185,4.542935,5.029256428571428,4.292275,4.289295,3.01243,2.83266,3.182985,3.160685,3.5904533333333335,1.8966539999999998,5.431134,4.61939,5.0552,3.65177,3.41495,3.230845,2.31502,1.3673225,0.99928,2.835635,2.459795,1.0580016666666667,2.668093333333333,6.18805,5.2346,3.490005,4.58062,16.044098214285714,4.27801,4.377005,4.260065,0.7056883333333334,5.44685,4.73265,4.573355,5.0734,5.49125,2.370295,3.598775,3.311035,1.51699,3.08828,4.414015,2.60514,1.649204,3.87468,5.02725,3.859325,5.33915,4.94502,5.26765,4.591475,2.8801366666666666,4.262815,4.13445,2.67772,3.063883333333333,2.84685,1.9014966666666666,5.18175,2.6453325,1.9656633333333333,4.150325,2.5666,4.226815,4.216921666666667,2.587895,2.963025,4.33986,3.612365,4.722495,4.231695,4.55326,4.902583,3.36582,5.4881,2.607895,3.91331,4.70386,1.5255839999999998,4.58459,0.9987316666666667,4.332285,3.03493,1.0625671428571428,3.253145,2.083055,6.357505,2.9075489523809526,2.9075489523809526,2.9075489523809526,0.7018049999999999,1.0858649999999999,1.79947,3.45423,6.12534,3.3527905555555555,1.895605,2.1977375,1.7305433333333333,3.62849,2.402655,0.41948615384615384,1.795395,2.28645,2.936095,1.915815,2.800805,2.373035,2.07219,3.854175,3.0008366666666664,2.41466,2.910135,1.94482,6.57763,2.146205,4.277855,3.88372,6.3347750000000005,1.5773033333333333,3.525375,3.79898,3.65956,4.454825,2.98322,1.8964675,3.83456,5.756416,1.986935,3.560855,3.188115,2.1382675,4.995435,4.825755,2.578046666666667,2.144175,3.79368,6.026567142857143,5.6287,3.073605,2.35135,2.70087,2.91029,2.91902,3.88143,1.3680225,2.88726,4.58025,1.0418025,4.296585,3.945315,3.768325,4.279325,2.28468,3.40397,2.21614,4.3994,8.269928333333333,4.54062,3.394695,4.153295,0.96731125,4.65583,2.337235,4.31538,5.4430475000000005,4.673425,4.174285,11.151045,5.1181,3.52734,1.499075,0.7204433333333333,3.004365,3.7504,3.27266,3.641405,2.133,3.06896,2.2694533333333333,1.1570616666666667,1.1570616666666667,2.0129466666666667,2.3397433333333333,3.4476,2.474136666666667,3.5063,3.4158000000000004,2.997946666666667,2.782833333333333,1.5285033333333333,3.1265300000000003,2.0453766666666664,2.0825833333333335,1.4572925,2.84319,0.6528066666666666,9.8250775,0.6528066666666666,3.685166666666667,2.0763,1.9720566666666668,4.573985,4.2881,4.149675,4.35327,2.41712,2.8557400000000004,3.411424666666667,3.4967666666666664,3.487,3.3761666666666668,2.9645766666666664,3.2750833333333333,1.6161766666666668,5.64095,6.5911500952380955,3.0081066666666665,3.3943,2.8953366666666667,2.8001766666666668,2.67322,1.2672657142857144,3.4085666666666667,2.8590999999999998,4.106115,5.85535,4.347985,2.884066666666667,3.7261333333333333,3.31536,3.86554,4.159335,2.6329433333333334,3.959185,3.2550233333333334,3.1739599999999997,4.766085,2.954413333333333,4.41422,6.701166666666667,3.0421566666666666,2.5480199999999997,1.8721333333333332,1.4743066666666669,5.0780199999999995,3.5366316666666666,2.7014,2.07168,2.0547933333333335,4.68949,3.816165,2.53754,3.3907333333333334,3.3199433333333332,3.7487999999999997,3.743733333333333,3.9796,3.223216666666667,0.56749,3.8714,2.53228,2.7611566666666665,3.64846,5.0774,5.2708,5.8009,2.852235,5.000678333333333,1.3259133333333333,2.4457,2.4457,4.971905,3.91915,3.8525,3.20328,1.972135,3.054955,3.799265,1.0078471428571427,4.119748833333333,2.9500039523809525,2.0195196666666666,0.367563,3.217085,4.38604,7.041525,3.63188,5.94285,3.2838,3.985825,4.12024,2.0397541666666665,3.16216,4.79678,3.381895,3.457133333333333,3.2295766666666665,6.112075,2.13206,1.02608625,2.01247,1.6519233333333334,4.90283,2.3656466666666667,2.35574,2.1055775,4.789765,3.993875,4.291905,0.8100440000000001,4.64623,4.47439,2.99062,2.93384,3.2125733333333333,3.5249502777777777,4.07065,1.5212633333333334,0.673278947368421,0.8130142857142857,3.5295666666666663,4.698705,6.065476666666667,5.21245,5.46985,5.67365,1.4863857142857142,3.9784,2.114246666666667,1.05538125,5.17105,6.3656,3.67043,4.819365,4.205835,6.94711,4.5957,7.713048333333333,3.861795,2.7553590277777777,6.21885,10.038526467948717,2.5640133333333335,0.733529,3.83324,4.69926,2.09832,6.39495,4.466235,4.381135,2.911966666666667,2.911966666666667,5.4233,3.803265,3.80523,4.955645,3.8251011904761905,2.501575714285714,1.0848675,5.52475,2.53604,6.13705,3.428675,5.3677,3.55032,2.1608825,4.61339,4.831395,3.5538000000000003,4.144315,4.67956,28.867092261904762,2.1449925,2.753725,2.22222,1.6986333333333334,2.55566,1.3284814285714286,3.2746433333333336,2.954803333333333,3.3791333333333333,3.591666666666667,0.6867615384615384,3.5003666666666664,4.51504,3.359265,3.2921266666666664,4.044935,6.2699475,5.1033,4.34877,4.3111,4.28745,4.208295,3.4799333333333333,1.673605,1.0233166666666667,1.4248933333333333,3.3964666666666665,1.4574133333333332,3.8199666666666663,2.42087,2.2898433333333332,1.9932733333333335,2.64138,2.20601,1.9151233333333335,2.971495,4.2239,3.66057,4.143005,1.6814419999999999,4.2591,2.56092,4.110015,2.5093433333333333,2.67136,2.415665,1.5154233333333333,4.27856,6.464508333333333,2.78888,3.56743,3.99249,2.63625,3.259239166666667,3.7043666666666666,4.45769,4.729415,0.2951008880308881,0.2951008880308881,5.05155,5.2485,4.37253,2.95073,5.4476,4.375215,0.7024546153846154,4.524955,4.748675,3.746255,6.3269,4.696605,7.70787,14.006551666666667,13.362329615384615,3.97326,4.036835,2.7343466666666667,0.6324146153846153,2.476383333333333,5.083,1.2731716666666666,4.747435,3.6970666666666667,3.1977499999999996,2.09417,1.8350266666666668,4.888325,4.86212,9.66208619047619,5.0763,4.009,7.286816704545455,3.418365,3.082926666666667,1.4027725,5.400190833333333,2.0790275,2.5179533333333333,2.7193400000000003,0.313575,2.977125,3.331625,4.6175291666666665,1.441962,1.433785,4.108185,0.611842,0.611842,3.0360904166666662,2.765943333333333,3.658533333333333,5.88985,4.421045,5.52825,3.57275,4.234705,2.87359,3.228123333333333,2.770023333333333,0.8033583333333333,2.883653333333333,2.943435,3.064255,6.6325,3.042515,7.73458,2.74155,3.086955,3.054155,2.1556475,2.8813,3.0053,1.768145,2.3476675,1.9968425,3.649725,2.503775,3.78308,2.883535,3.765060833333333,3.765060833333333,2.6355975,2.6355975,8.895196499999999,2.598813333333333,0.796843,2.55709,2.467286666666667,2.52176,3.78308,1.932294,1.849402,1.497118,3.88237,4.394685,1.6649175,4.41296,4.13403,6.078742777777778,6.942528333333334,2.5088833333333334,4.45649,6.97766,4.46121,3.394915,2.494083333333333,4.309555,3.886998181818182,4.26186,5.772178333333334,7.786948,3.596085,3.922675,1.1363916666666667,4.697735,4.018038,3.95965,3.717138333333333,4.40061,3.070815,2.7687833333333334,7.91369,2.99588,1.100014,6.45003,3.78228,3.22669,5.4571,3.22669,3.76136,3.78828,5.5298,1.0597814285714287,3.6642277777777776,4.690455,3.69451,1.3765183333333333,1.9133525,4.86323,4.235825,2.66508,6.991016666666667,4.508285,4.118775,4.51301,4.3324300000000004,1.3805075,3.882705,2.82484,3.883135,4.34637,4.251165,4.80471,3.36565,4.755455,4.955285,2.262039,1.804755,3.622533333333333,3.5172666666666665,3.5684666666666662,2.8932266666666666,3.5911000000000004,2.9781433333333336,4.803835,3.145545,3.573415,3.09579,1.9637366666666667,3.4421999999999997,2.0245133333333336,3.022735,3.04138,2.625895,0.69671875,2.2899175,1.86617,3.333975,2.0725000000000002,3.7669040000000003,3.71053,1.381108,3.57835,4.4697,0.8123480000000001,1.4954599999999998,3.53623,3.81823,3.922015,2.04712,1.6633266666666666,3.533365,2.5687974999999996,1.6143166666666666,3.140635,2.17152,1.08479,1.4170775,6.223755,3.645185,2.248745,2.47396,2.35858,3.814365,0.84935375,0.34877214285714286,0.7618485714285714,5.349,2.1800678571428573,4.38542,2.3165725,2.2575851428571427,3.5480414285714286,1.2904562857142858,1.0599211428571427,0.6858839999999999,0.5727142857142857,2.9009125,6.47575,2.99373,4.22703,0.3500614285714286,3.66809,18.771460523809523,3.08507,7.566036945221445,1.1121775,1.1121775,1.1121775,1.1121775,5.870405,3.773155,3.279685,2.3412433333333333,3.43683,3.15252,4.1942,4.06191,3.21956,4.61582,4.218075,4.20322,3.7433886666666663,4.312915,5.0444,3.7934,4.648545,3.44469,4.165695,2.748666666666667,3.72464,3.216695,3.971825,3.78796,4.514575,3.27026,2.4717975,2.41576,4.430005,1.380315,3.776975,2.9971300000000003,3.443216666666667,4.2440375,3.87127,3.136105,2.72388,4.92521,3.71803,3.144435,5.15415,4.847035,3.202725,4.224845,1.627814,1.627814,1.441535,4.65894,4.033395,6.188632,5.1874,3.461733333333333,6.3594,4.478975,2.20232,9.372055,5.0268,6.2417975,4.75532,2.8511100000000003,4.110255,0.24885586206896554,0.8238825,3.9572686666666668,3.513935,4.91361,3.1896833333333334,5.795123333333334,5.24825,0.5412685714285714,2.78173,0.48673599999999995,1.6836928571428573,3.32325,2.33429,4.03362,3.59051,3.41982,3.449145,3.33927,3.60946,3.42596,3.521185,4.041125,2.40832,1.6836928571428573,3.30231,2.0654525,3.54347,2.237995,4.13918,3.428615,1.6861,4.35071,3.952765,1.37192,5.5041,4.923445,4.02186,2.7130466666666666,3.4445666666666668,4.84139,1.8988800000000001,1.3997519999999999,2.3974733333333336,2.57711,2.5206933333333335,1.9556833333333332,5.0829,3.43386,5.166271666666667,4.196885714285714,4.95801,4.281015,1.9580179999999998,5.2518,4.722895,5.3725,4.178375,7.179225000000001,1.78804,4.68633,3.87321,3.16689,1.8861775,1.6783266666666667,3.898825,4.580015,2.3201133333333335,2.77788625,3.225515,3.225515,2.957456666666667,3.2184333333333335,3.19763,3.96684,3.584425,0.8179923076923077,3.32188,4.33796,4.576366944444445,2.833215,3.08222,1.730385,2.97472,3.498005,2.212795,4.6907,3.811275,4.572125,2.2104333333333335,0.9995636363636364,5.82858,3.49258,3.4685,3.358233333333333,1.8675080000000002,29.76971280952381,4.130795,3.257345,5.43235,4.216355,0.9186333333333333,7.423225,2.24409,5.4356,1.5873666666666668,4.98607,5.695048333333333,3.81697,2.94544,2.06385,3.852733333333333,4.99924,2.0722675,2.6944033333333333,3.81109,3.71045,2.556535,5.8961,2.011775,3.899565,1.11761125,4.389475,3.32009,4.08274,4.942595,3.505035,2.3630066666666667,4.173495,4.95493,3.527225,3.527225,6.2696,1.5620125,4.228355,7.156031666666667,3.247395,4.09577,3.345165,4.201,3.229465,3.98344,1.3802375,2.584035,4.207825,4.347685,5.449,4.34113,2.70628,8.70755,2.51843,3.74267,1.7078428571428572,3.520105,2.344116666666667,2.716813333333333,2.8045891666666667,1.4476133333333332,2.62753,0.9338785714285713,1.0055885714285713,1.0055885714285713,1.0055885714285713,1.9151933333333335,0.6063325,3.791725,1.35124,2.9827966666666668,1.1088983333333333,1.8942166666666667,2.540993333333333,2.316953333333333,0.77254,2.0778066666666666,1.8639933333333334,2.27536,1.7043399999999997,1.7043399999999997,1.67324,2.008183333333333,1.116282,1.8024866666666668,1.61121,1.2823733333333334,2.21327,2.01294,6.03825,1.865605,4.70151,17.695811916666667,7.29296,4.34323,3.6497283333333335,3.2325,2.9466099999999997,2.8349233333333337,3.21156,0.7389775,1.00126,1.00126,0.6383375,2.60365,4.56199,4.98026,1.55638,5.2274,3.44576,2.65739,3.88998,4.69969,3.80778,4.71004,3.448166666666667,2.88579,3.327315,5.72505,3.4771,4.815735,0.527713,0.527713,2.49004,3.07352,5.0933,3.50405,4.381125,4.742645,8.019014,7.5864899999999995,3.41867,2.29249,4.568,4.45517,2.61725,2.43339,2.97119,1.2691233333333334,3.31294,2.306005,1.8314975,3.3142899999999997,4.362995,2.0335625,5.772178333333334,1.55128,3.9631333333333334,4.24944,0.9283114285714286,3.438,2.774453333333333,5.027,1.1637883333333334,1.740095,2.639825,2.0740925,1.6605025,2.3910475,2.082435,1.9106225,4.79714,4.6263,2.51743,1.80276,1.5486633333333335,3.735333333333333,2.0415966666666665,2.555975,4.997975,7.0375,2.623725,3.05006,3.429805,3.75912,2.487495,5.25285,4.23213,3.0235,1.473675,4.30883,2.33439,2.8059133333333333,2.510915,3.776375,5.3132,4.86571,2.8899333333333335,2.8897099999999996,2.779833333333333,3.437666666666667,1.9801666666666666,1.580104,5.4573,3.4484999999999997,2.2465769090909093,3.167143333333333,3.3533000000000004,2.3166433333333334,3.1310866666666666,3.509133333333333,3.574033333333333,4.963055,4.04689,2.9538166666666665,5.3196,3.307815,2.56262,3.33858,3.845085,3.909935,5.8564620000000005,1.8873799999999998,4.77658,2.927655,3.09876,3.52059,0.59538375,2.40938,2.244535,3.4089,2.565555,2.21106,2.714615,0.7026030000000001,2.82396,4.894295,2.2546525,4.509725,2.5022166666666665,4.042025,1.9554025,4.66627,4.16507,1.8609660000000001,3.8257,7.393805,4.183415,4.29502,5.01165,7.159175568181817,4.358905,4.694375,2.32741,4.569955,3.294955,1.9242233333333332,1.885285,3.3869666666666665,1.0066771428571428,2.2940066666666667,2.500503333333333,2.5395166666666666,3.6290666666666667,1.771042,3.46486,1.8213266666666668,5.46705,6.3544675,1.03102625,1.6979333333333333,2.5367366666666666,2.79421,1.9909466666666666,1.0592766666666666,5.680688333333333,2.3089775,2.6456666666666666,3.5434,2.9044633333333336,3.0581899999999997,3.115695,2.172423333333333,2.7161666666666666,2.1511766666666667,4.239105,3.95218,3.95544,3.3684333333333334,3.23275,0.905518,1.88859,2.1164275,2.0802633333333334,2.58608,1.125975,2.6664933333333334,2.9292433333333334,3.39454,1.9132133333333332,3.236995,3.66748,5.8732,3.06139,0.5799841666666666,2.0196,3.0151533333333336,3.9072,0.7541809090909091,2.806013333333333,3.477566,3.3889666666666667,2.864046666666667,3.089928333333333,3.731995,3.5878,3.0071766666666666,2.1228475,5.7604,5.13345,5.1027,5.4325,5.62105,1.7322300000000002,3.46666,3.835366666666667,3.3998666666666666,3.122973333333333,2.50559,3.9284,3.6926,2.980923333333333,14.167506666666666,4.058675,1.10185,2.93914,1.6145559999999999,3.370033333333333,3.154666666666667,2.6084366666666665,5.872168333333333,6.578208500000001,2.4820933333333333,0.845858,4.15712,3.6898666666666666,3.050585,5.1643,5.421,6.0165,5.0593,3.412335,1.8672725,6.6803925,1.1363916666666667,6.7839575000000005,4.7395,2.548696666666667,3.436055,7.534834999999999,6.0921,2.2046433333333333,1.5302449999999999,2.0955,6.972566666666666,1.5648625,3.0508,2.647911666666667,4.261124166666668,5.68045,4.0662,6.12235,3.380935,5.13235,3.71978,9.09694,5.0359,5.85945,2.26486,2.59995,11.1209,3.384295,3.52727,2.407903333333333,1.5952466666666665,2.6704033333333332,3.1816666666666666,0.6364075,0.9896459999999999,1.0848114285714285,3.493555,7.11113,2.900366,1.4907966666666665,5.0709,4.159335,0.595005,4.162895,3.60581,4.705875,4.13653,3.701125,2.5006333333333335,3.9999,9.821135,1.7167225,3.6739775,3.955935,4.31616,3.720295,0.9193833333333333,3.5521666666666665,3.6704000000000003,1.6536600000000001,2.5605933333333333,2.3203533333333333,2.577,2.8912533333333332,2.0591166666666667,2.20774,5.907177857142857,4.86196,4.312565,4.318925,1.50463,2.48355,5.16175,4.8822,4.70557,4.47585,4.59178,4.905075,1.627814,3.723365,7.166964999999999,1.4058650000000001,1.6323333333333334,2.499546666666667,2.2865166666666665,2.78669,4.881339166666666,0.8130142857142857,2.4993,3.3965,5.8599,4.217185,2.451563333333333,2.8433833333333336,1.819595,0.584690625,2.19978,2.84111,7.428694999999999,4.239195,4.5484,0.826831,4.319933333333333,9.617268916666667,11.263593333333333,3.35596,1.15775875,3.554245,3.53698,2.850796666666667,5.809446666666666,5.4827,4.18488,1.9115525,3.7937333333333334,2.2268433333333335,2.4467233333333334,0.7867518181818182,0.42260733333333333,2.67392,3.40473,1.9673426666666667,3.292955,3.2421633333333335,4.53512,5.5998,1.38736,3.348266666666667,2.32465,2.32465,2.23344,2.82312,3.84249,2.6460466666666664,2.867926666666667,3.445133333333333,3.4652,4.520685,4.289455,4.57283,4.126985,3.81149,4.541575,5.67625,7.862263333333333,1.96237,2.230303333333333,2.6432466666666667,0.8914683333333334,0.7323683333333334,3.847445,2.709165,5.40425,2.9470333333333336,3.2618033333333334,1.917382,1.4869975,3.904425,4.086785,4.206335,2.007633333333333,1.30929,2.6433133333333334,1.9719133333333334,2.5963066666666665,1.0258328571428572,1.0258328571428572,2.68356,4.21516,2.997755,2.804555,3.47132,1.95309,18.810882499999998,3.738745,5.40447,4.109485,3.71502,4.03332,3.58207,5.3982,5.7277875,0.8823650000000001,0.8823650000000001,0.8823650000000001,2.6201833333333333,1.7051285714285715,3.657666666666667,4.411455,4.5648,3.470485,4.604105,4.41266,0.9626533333333334,2.3979933333333334,2.839206666666667,5.726595833333333,3.1809925,3.926273333333333,4.51096,1.655705,1.9432733333333332,2.2285833333333334,0.535795,0.772618,1.839875,2.284785,2.81096,13.438688333333333,2.5297533333333333,5.358,0.7411214285714286,9.6622725,5.6498,3.636325,4.578475,2.93705,5.9871,2.93705,2.92126,4.18114,3.64363,3.30594,3.905575,4.232765,3.259715,6.0897,6.589123000000001,1.91909,3.258768,2.875585,27.143814364221363,1.675724,6.2156,4.934492,3.93355,3.76764,4.88983,2.7108,2.64309,2.66867,5.5684,6.90605,5.0471,4.254845,4.577275,2.0769675,2.10564,4.147865,0.8868307692307693,0.8868307692307693,0.8868307692307693,0.8868307692307693,3.996915,3.393441666666667,0.9630866666666668,1.8432633333333335,1.1639111111111111,4.77153,2.4397266666666666,2.35959,7.424353333333333,3.364466666666667,0.17409,20.803958666666666,4.483708333333333,1.7743120000000001,1.3573342857142856,2.21726,1.92117,2.492845,4.47676,2.94795,4.110535,4.18563,2.221433333333333,7.2685975,2.73811,2.005675,4.39689,5.94225,8.255886666666667,4.618195,0.29278048780487803,3.463165,4.228635,2.824503333333333,2.2945775,2.966113333333333,1.5663083333333334,1.5663083333333334,3.939205,5.8088625,11.730964166666666,9.146775,0.6904722222222222,2.596,4.034945,3.359125,4.858,5.0642,1.9585380000000001,1.9585380000000001,3.997085,4.73878,3.15498,3.784775,5.2265,5.2709,5.28032,2.08568,4.44797,4.1268,2.676655,2.9546033333333335,3.1240400000000004,4.881725,4.51136,5.24375,4.17092,4.1331,3.76799,4.49388,4.136825,5.58675,2.82567,3.3618,1.126786,4.25359,4.14393,4.13629,1.8775179999999998,1.9781966666666666,2.9218833333333336,2.9671800000000004,2.23997,4.67939,1.77885,2.585225,3.7735333333333334,3.9198,2.3620733333333335,2.9673499999999997,4.4187,3.3488333333333333,3.9965666666666664,3.994925,2.0635066666666666,2.76192,2.27189,5.92995,3.6972666666666663,42.286937333333334,2.464670909090909,2.464670909090909,2.62607,2.79397,2.0948366666666667,1.8798433333333333,2.9646666666666666,1.4324766666666668,0.7231284615384616,4.912665,6.890245,3.94485,3.707995,5.2108,2.0839166666666666,4.41781,1.803086,5.6984,4.53466,5.84915,4.52687,1.673605,4.200095,5.2695,4.80773,5.20365,5.5002,4.02134,3.3229366666666666,2.8914500000000003,2.3913975,1.8614,4.674935,2.123746666666667,3.72107,3.72107,2.19044,1.58518,2.1104766666666666,2.35088,2.4910833333333335,5.07091,2.6831266666666664,1.1426966666666667,1.1426966666666667,3.3381333333333334,2.27684,2.53252,2.5710433333333333,2.4676733333333334,2.60918,2.5473966666666668,2.09314325,2.83756325,1.4578912499999999,0.74442,59.15578368055556,2.36207,3.0411966666666665,2.1471,0.95891,3.34352,1.5121740000000001,1.5121740000000001,2.3132033333333335,3.08835,0.71347125,2.33001,5.46864,3.5467666666666666,2.40301,2.7187866666666665,2.3667433333333334,2.5133560000000004,0.284205,2.510683333333333,0.744106,2.52176,1.0921340000000002,1.0921340000000002,2.1807766666666666,1.7968879999999998,2.0070133333333335,1.30962,3.2919033333333334,1.30962,2.0985766666666668,3.058173333333333,2.9435266666666666,1.145406,1.145406,2.8669233333333337,1.4895633333333331,2.4853533333333333,2.1371266666666666,4.401725,4.439815,12.798214833333333,7.0452875,3.80593,3.213795,4.518585,5.6008,5.373,2.8667724999999997,4.62009,3.388905,2.385823333333333,4.172215,3.26597,2.72509,4.990105,2.2532833333333335,1.03175,4.3397075,3.14683,3.019035,0.7743385714285714,2.779,3.516325,3.828015,4.436215,6.75375,2.5182733333333336,1.9086500000000002,3.783765,4.564795,2.2261275,2.478860833333333,2.0625833333333334,2.2243413333333333,0.839668,5.6719,4.454045,4.11118,4.121765,3.32827,4.51735,5.5588,3.20785,1.7162966666666666,0.5723146666666667,14.253807166666668,0.4935690909090909,0.4935690909090909,0.4935690909090909,3.0405533333333334,3.8749333333333333,0.4935690909090909,6.894065,4.27615,0.724035,0.724035,2.9328566666666664,3.140285,3.29781,4.64852,4.672715,4.3432255,2.22098,4.7428,3.49595,3.4444065476190477,5.03046,2.85309,2.40895,2.31621,2.643025,1.5922,3.3985425000000005,3.06842,2.45603,2.1181475,2.2681375,1.7765833333333332,1.5974175,2.7778,1.1671666666666667,2.62925,0.6257428571428572,5.11385,1.7227875,0.7844891666666666,2.4188625,7.855041666666667,2.653425,2.085896,3.0502475000000002,7.35602,2.4423,4.73607,2.996145,5.75858,3.99782,3.958685,3.74858,5.2741,3.0582266666666666,4.5965,1.15324,4.21201,2.3731233333333335,2.511086666666667,2.472315,2.288155,2.2861599999999997,1.2755625,5.3804,0.9073745454545455,5.0751,5.6549,5.06915,5.65775,3.918433333333333,2.38353,2.2100400000000002,2.891503333333333,3.0559166666666666,2.389675,3.8716333333333335,2.7314,3.643745,1.7065359999999998,40.939072857142854,4.87246,2.366496666666667,2.95618,2.9082233333333334,1.41223,5.466268333333334,4.193905,2.633646666666667,3.1951066666666663,2.13817,1.7698125,5.21945,0.7964357142857142,4.94111,1.3973614285714286,3.1607066666666666,3.5035666666666665,2.6962200000000003,1.410375,5.038813333333334,1.896714,1.896714,2.53988,2.9359183333333334,3.4066333333333336,3.8049999999999997,1.5110166666666667,3.0899366666666666,2.9138533333333334,6.486880333333334,2.9682933333333335,3.884593333333333,1.2841933333333333,1.4024133333333333,3.055626666666667,0.922212,5.67553,3.6562666666666668,2.762836666666667,3.8044666666666664,3.06842,2.6775800000000003,3.2344333333333335,1.64058,2.35858,2.412786666666667,3.3719333333333332,2.52991,3.5901666666666667,3.158166666666667,0.5878773333333334,9.710630064102563,2.763593333333333,5.44045,5.31505,2.7995733333333335,2.987956666666667,1.31873,2.1510233333333333,2.13549,1.31873,4.09419,0.4274125,0.4274125,1.10852,1.10852,0.937985,0.937985,2.832085,2.47601,3.32629,1.71088,2.12376,3.74826,2.891215,4.91402,4.659245,2.20194,4.43374,2.514705,4.8931678632478635,1.82837,1.82837,2.166055,1.8962379999999999,3.6360833333333336,2.02374,4.304475,1.42387,2.33517,0.5951592307692308,1.1720657142857143,2.2097175,2.2218575,2.2725175,1.65081,4.478085,4.215275,2.47892,2.8530333333333338,1.4632866666666666,0.6846208333333333,2.3328166666666665,3.97319,2.653026666666667,4.672525,5.626,4.96376,4.162375,6.86531,1.6393816666666667,5.943085,1.987135,4.69373,4.83356,5.754556,3.032216666666667,2.204885,1.7073675,1.923906,1.923906,2.4181825,2.4181825,4.26949,5.16605,0.92832,4.171675,3.29614,3.36698,2.5584533333333335,1.3792875,2.735656666666667,4.06546,4.505905,1.8497620000000001,6.31505,5.39435,2.1247233333333333,1.2155175,3.965305,4.146976666666667,3.754085,3.45845,4.12567,0.6669078571428572,3.32802,2.93526,2.6197033333333333,2.8279533333333333,2.1716933333333333,3.5829,1.5226714285714285,1.5226714285714285,1.5226714285714285,3.422333333333333,3.0903766666666663,2.82357,3.4249715595238097,2.43534,1.30242,3.1618399999999998,3.1945266666666665,1.4380428571428572,2.9301066666666666,2.7417533333333335,1.2361642857142858,3.373866666666667,2.833266666666667,3.1278699999999997,2.856856666666667,2.6807433333333335,2.0109075,3.1771666666666665,4.888463333333333,4.391935,1.01634,1.2274699999999998,0.6663669999999999,3.729533333333333,9.275745,2.9297066666666667,3.05135,2.5348166666666665,4.390574166666666,1.9977175,7.480086666666667,6.509823333333333,2.77823,2.643414285714286,4.267695,4.495775,1.5908200000000001,1.2616960000000002,1.236986,1.9685,10.989973333333333,2.7472999999999996,2.957076666666667,3.065045,3.82963,2.30159,1.16783625,4.729315,1.0905099999999999,3.387916923076923,3.67387,3.55327,3.1681399999999997,3.3432,5.08445,1.1289116666666665,2.032205,2.201575,2.201575,3.740875,5.57335,6.837289999999999,3.773025,3.41788,5.10755,1.78072,2.2415391666666666,4.844665,4.75968,3.902155,1.6876166666666668,2.989993333333333,3.46797,4.06135,2.543125,3.967695,3.647895,4.057,4.11719,4.355825,4.233025,5.7444,3.3804,2.50211,4.358865,3.018605,3.69821,2.0293,2.482,2.427765,6.1622,2.63561,3.4017802272727273,1.66773,2.662085,3.365165,1.97759,1.9724925,0.8400483333333333,0.8400483333333333,1.73045,4.0164912121212115,4.16007,3.025866666666667,4.493735,3.3638933333333334,2.5567142857142855,0.9962075,2.817415,1.7479825,4.907815,4.23542,0.9286329166666667,1.7885475,3.638765,2.9499725000000003,1.5497175,1.5678266666666667,5.129314285714286,0.9425083333333334,2.82047,3.182625,2.96967,2.432275,2.669906,2.06179,1.0130225,2.8819,2.95426,3.39258,1.5403799999999999,1.4601533333333334,2.048805,4.750045,2.158855,4.736715,4.917125,4.63805,5.8221,5.8983,4.26582,6.159995,4.005122380952381,0.7693445454545454,2.54673,4.34001,4.726595,0.47709545454545454,0.912638,2.90468,4.18693,4.86678,4.575515,3.2637157142857145,3.053015,4.79712,1.720716,2.691325,4.300505,3.8992475000000004,3.82838,3.215315,4.18742,5.08135,3.0122,5.645055,0.95358,3.4429,2.674745,4.461805,4.45017,4.29898,2.12864,2.706925,3.03411,2.023433333333333,5.01885,3.685155,1.5320571428571428,3.3404,4.0307175,1.391856,6.003445,1.884742,2.5731366666666666,13.244789325011245,3.0872833333333336,1.4570666666666667,1.4450283333333334,2.44495,5.4513766666666665,1.6095479999999998,4.057150666666667,0.7489584615384615,3.1752266666666666,3.767535,7.403974999999999,2.269233333333333,3.25363,3.25363,5.0963,4.525555,3.9587,3.343525,4.925675,5.44535,2.470485,3.4874333333333336,4.76466,1.288355,2.5688933333333335,4.727325,4.080565,4.210895,2.5835866666666667,3.24145,3.68105,6.643961666666666,6.316635000000001,0.733563,4.03166,3.124355,3.4804999999999997,4.189,3.800655,4.10049,1.8965260000000002,4.68123,2.539825,2.91162,4.153165,4.606675,4.62816,0.9564380714285714,2.7749699999999997,7.503832,1.5133599999999998,2.088357142857143,2.3754925,4.06203,3.61259,3.252965,0.7367754545454546,2.362305,1.751995,2.213685,4.167645,5.804309333333333,3.3063260000000003,9.178525,2.62434,2.74147,1.1274,4.809085,5.07935,1.98,5.9251233333333335,3.38812,3.139975,5.5712,4.41604,4.97571,2.414905,1.7020725,1.7020725,2.72584,3.390675,5.680716666666667,1.53971,6.5806016666666665,1.75244,3.68978,1.4897683333333334,8.8281255,4.952005,2.84824,5.1725,4.789845,3.74766,1.0646033333333333,2.0855225,3.4756,3.0942666666666665,3.4173666666666667,3.715733333333333,3.720335,2.692705,3.12812,3.235355,1.5519925,2.46085,1.8041866666666666,2.81061,1.8618866666666667,5.117448333333334,3.3838666666666666,1.7159700000000002,3.1497266666666666,3.260705,3.381435,6.2342,6.0707,3.05451,3.58051,3.74982,3.2134,2.850095,1.2446533333333334,0.9142060000000001,6.90934,2.98649,5.2905,5.0476,6.36895,3.08071,3.4116,6.5291,2.44892,0.4413783333333334,5.7644,3.594225,3.856935,3.3913333333333333,1.4447571428571429,5.30585,1.156768,4.62293,0.930925,1.3938966666666666,3.0620333333333334,2.425403333333333,2.415448714285714,3.64546,5.32555,5.932291666666666,5.932291666666666,4.9576675,4.9576675,4.671315,3.3143733333333336,4.509215,1.07744375,6.10525,4.375455,3.6905666666666668,4.365165,3.755515,4.691555,1.953305,4.695515,3.343442,3.13897,4.0527,2.70056,4.88432,5.15115,3.516075,3.051105,4.950835,3.82153,5.03595,3.461425,3.4310333333333336,6.2107,4.12659,2.8775399999999998,6.17431,1.6077366666666668,2.16219,4.60592,4.542975,5.5434,3.90741,2.0201155,2.0201155,13.954482777777779,4.95789,5.16795,3.49639,2.988342564102564,4.61156,5.00015,2.582246666666667,3.3213899999999996,3.27208,3.9230666666666667,3.5488999999999997,5.16605,2.206625,8.238993333333333,2.49998,2.2612825,4.736155,2.46973,4.869785,4.339385,4.630185,0.8779166666666667,3.538025,3.930775,0.878776,3.014875,3.7700691666666666,1.390468,2.1777833333333336,3.0270733333333335,2.5361566666666664,2.508246666666667,3.4222,2.272283333333333,0.5137992857142858,2.8083500000000003,2.5982233333333333,2.8616566666666667,3.173923333333333,1.758832,3.2506299999999997,7.368613333333332,4.768085,2.4566399999999997,2.0736399999999997,2.5545433333333336,3.783975,2.48104,3.5209,18.6688275,5.06615,3.473376,5.36635,3.680915,5.210373333333333,1.5306433333333331,5.94125,1.6506883333333333,3.649355,4.209565,5.3003,5.1451,0.9559236842105262,5.5901,2.9329,5.0035,2.663375,4.52283,4.79627,2.97956,2.041376666666667,1.465948,1.885315,4.54195,5.0836,2.260435,1.56255,3.12564,4.233924999999999,3.1696333333333335,6.1683,2.0868225,3.99725,4.053655,3.634585,4.604565,3.71538,4.001405,4.50303,3.855805,2.6134666666666666,2.6134666666666666,5.9549827777777775,1.9050866666666666,2.8849400000000003,3.70683,1.57702,7.482645,3.595665,4.800483333333334,4.358033333333333,4.50143,2.0667999999999997,4.651715,5.3979,3.73181,2.1297325,3.840695,3.1353,1.2520475,1.783795,1.2580933333333333,0.7280783333333334,1.63373,1.065555,4.427905,0.9898266666666667,2.875166666666667,1.5417133333333333,1.67723,0.9315699999999999,1.9959625,2.469995,1.546345,3.0552766666666664,2.4857466666666665,4.9798350000000005,1.5495016666666668,2.438075,3.646933333333333,3.108636666666667,2.608006666666667,4.3237075,4.51845,5.2153825000000005,20.360770666666667,2.6084066666666668,2.273705,0.6484015384615385,0.61938,4.616083333333333,1.86626,4.07847,5.61075,7.373661666666666,4.22408,3.94388,3.933365,3.0886566666666666,3.14612,3.6247000000000003,2.9909766666666666,3.1343266666666665,6.1323,4.296405,0.957619,1.15077875,4.99874,3.3346666666666667,2.6453933333333333,2.0405333333333333,2.1226133333333332,5.40595,4.80966,2.443425,1.6798566666666668,3.594925,5.68905,9.148096666666667,5.594095625,4.39229,3.96851,5.06125,4.7219,4.147105,4.48723,4.131415,5.57655,2.28015,5.54545,1.5939142857142858,5.44945,0.71412,5.00485,5.48045,6.196,6.1466,4.51347,5.9146,5.66035,6.5527525,1.9872166666666666,1.6807142857142858,5.6649,3.642225,6.317951666666667,4.878945,5.248401666666666,4.92577,6.2301,1.3978957142857145,4.278275,5.573,4.010166666666667,4.84999,5.9192,2.69005,3.9206,4.22381,4.629665,0.9825416666666666,1.5663066666666667,1.330566,4.732965,3.930805,3.374275,2.63414,3.00137,1.6117633333333332,2.1100266666666667,0.37023500000000004,3.4631000000000003,1.721058,2.149305,3.0285666666666664,2.1607533333333335,3.2806533333333334,2.5978,2.651875,10.807602,3.6127333333333334,1.697226282051282,4.44828,0.8345000000000001,4.8015325,1.1994275,2.06139,1.8945125,1.04840125,5.387563,1.1904091666666665,1.1904091666666665,1.1904091666666665,2.9541633333333333,1.630156,5.31645,2.895175,1.43129,1.4405675,1.79699,1.459175,1.411264,5.6971225,0.8867466666666667,4.61118,4.313895,3.4095,0.9988914285714285,2.1205715,2.13428,2.13428,1.5846966666666666,3.7102649999999997,4.60669,4.78546,5.83445,4.38053,5.5732,3.0642600000000004,2.1176525,3.050595,5.15695,3.574545,4.47658,1.040265,3.8826916666666667,5.16805,1.9154175,3.98429,2.9736100000000003,4.258915,4.98726,2.349545,6.21085,6.2011,5.0279,4.72856,4.155785,3.30046,7.68166,3.990915,6.425958333333334,3.3568,2.7617766666666665,4.68635,2.71379,3.283085,5.1352,2.78441,3.11862,3.931985,1.9123066666666666,10.526555,4.705545,3.20759,15.502312956349208,3.915845,1.7627166666666667,2.7692766666666664,2.479775,2.76571,4.28597,2.5048145138888893,3.33098,4.00043,2.799935,4.02307,6.064515,1.2690066666666666,2.48417,4.250725,4.213565,5.00605,2.1518625,0.653598,4.705205,4.26648,2.25755,1.1684283333333334,4.70139,4.832355,0.8936488888888889,3.970685,12.586924166666666,1.2830022857142855,0.4039792857142857,3.8958333333333335,4.23158,0.9918266666666666,4.47828,3.856295,5.1267966666666664,1.2565666666666666,3.91073,4.27514,3.30841,4.39735,4.61394,4.91865,7.46136,3.58355,3.986645,3.811765,15.402729375,3.201315,2.60665,1.2536025,2.0470475,1.3274025,1.82593375,1.292955,1.95065,1.6146125,2.307,2.586425,2.488495,1.992745,5.10025,3.435535,3.52359,3.178525,5.996600000000001,2.9625500000000002,4.930215,3.3723333333333336,1.16492375,3.63074,2.0225175,2.629742666666667,4.7856,4.719065,4.92233,3.974605,2.929123333333333,3.1490066666666667,2.43378,4.20528,3.755495,2.515775,1.953235,3.6625666666666667,5.0744,4.428815,2.3484766666666665,11.548293333333334,0.6420046666666667,2.62839,5.0077,2.6106100000000003,1.0200200000000001,2.70141,7.688181666666667,7.706816666666667,4.74356,4.467075,3.913035,2.063505,2.66414,2.8758773333333334,2.0688633333333333,4.121511666666667,5.75995,4.48621,0.5196066666666667,6.3062,3.718666666666667,3.607466666666667,3.7202333333333333,6.4779,9.44618375,4.8059575,1.02252125,2.1845375,2.14052,3.798895,2.61019,4.43064,4.79394,3.7432666666666665,2.7018533333333337,3.87219,4.161755,3.65857,4.081166666666666,2.24016,3.263485,4.64674,5.6252,3.5280666666666662,1.743645,2.1400166666666665,28.60794423076923,1.5586825,1.5586825,2.0910233333333332,4.14084,4.41424,4.754365,3.67177,3.621385,3.911695,2.96833,4.053595,2.96833,3.293935,1.9351033333333334,1.5894166666666667,5.58455,2.565125,4.535185,3.239275,2.59872,6.657658333333334,2.0812466666666665,4.986,5.15155,3.80307,3.656305,4.965815,1.979242,5.09015,3.5710675,7.568853333333333,5.603890833333333,2.315625,4.13473,4.586435,2.09459,3.0565833333333337,3.6734666666666667,0.5684178571428571,3.1249933333333337,9.586653333333334,4.629905,4.55226,5.3965,3.47294,2.969005,1.3257742857142856,4.388365,5.3186,3.14947,3.115555,5.5175,3.588215,4.46805,4.46278,2.41244,2.41244,3.86923,2.81489,2.8647152272727276,1.93804,5.0624,4.038325,1.2244971428571427,3.642745,4.58354,2.9507766666666666,7.65255,8.24387,1.48272,4.1947,4.442535,7.358538,0.7682450000000001,7.7923100000000005,3.557265833333333,0.6509427272727273,5.38365,5.3328,5.3903,4.48769,5.11995,4.497095,4.960295,3.897885,4.055995,4.73919,4.20438,5.68775,4.99146,3.857185,3.37813,4.610495,2.878895,0.676358,4.33464,3.02101,1.785455,4.22673,4.488915,5.87515,1.0564557142857143,4.944673333333333,3.06535,2.56961,2.312235,1.3004766666666667,11.8138975,3.0892233333333334,3.3173600000000003,2.5352433333333333,3.7613547619047614,5.354946666666667,6.17343,2.7246366666666666,2.05031,2.1744399999999997,2.1744399999999997,2.1744399999999997,1.4679066666666667,3.85644,3.84928,3.11873,4.57138,7.884650000000001,4.029035,1.033874,2.12259,3.497595,4.97854,1.796266,4.720715,3.02902,1.5543933333333333,3.29278,6.24681,6.490565,4.56022,3.894,3.089116666666667,5.5576,4.428665,6.881103333333334,1.9473425,1.9473425,4.39483,3.81324,2.621373,2.621373,3.697245,1.1430542857142856,5.1281,3.249795,4.009905,4.258525,4.332645,3.137086666666667,1.069402857142857,4.45313,5.27915,4.28473,4.8181,5.06515,4.836725,4.56258,2.043945,1.5121625,3.161555,3.80997,3.16585,4.24311,2.20919,4.0811975,5.0145,2.775845,5.03355,7.87977,2.3279466666666666,2.961263333333333,4.353853809523809,4.789359166666667,1.747265,2.0015140476190476,0.8910683333333332,2.0015140476190476,1.7545033333333333,1.7545033333333333,1.538556,4.526755,3.03972,3.736835,2.35898,3.806345,1.6823833333333333,5.4224,3.007895,1.605755,2.9197900000000003,3.8465,3.60812,5.843657,4.711365,1.382522,0.8685783333333333,3.514485,6.461556666666667,2.4008966666666667,3.415775,3.38721,3.38721,2.397025,3.43314,2.984855,1.3908560389610392,3.0997466666666664,3.890835,3.139765,4.562145,3.9838500000000003,1.5277825,3.620845,4.73324,4.76385,5.05825,4.2815,1.9650225,2.33038,1.3283833333333332,2.378085,3.10399,2.0212075,3.942715,3.4706333333333332,2.63901,4.02616,5.242,1.38168,1.024412,1.8145633333333333,1.75192,1.2435,5.0672,3.870525,1.126786,0.19736217391304348,0.19736217391304348,0.19736217391304348,3.501515,6.12063,4.550235,5.21635,2.87265,3.569805,5.52025,4.31568,2.633125,3.632955,1.635365,4.829065,4.443765,3.84511,4.41195,4.572525,0.7805845454545455,0.7805845454545455,0.7805845454545455,0.7805845454545455,0.9485239999999999,0.9485239999999999,3.918675,3.93762,3.91225,2.60976,2.550205,6.28485,4.74585,5.17815,4.29403,2.9195533333333334,2.50752,9.81642,1.7397459999999998,1.7397459999999998,4.57497,5.39165,3.4389333333333334,0.4274125,0.4274125,0.4274125,0.4274125,0.4274125,0.4274125,4.866273333333333,4.90632,4.047585,4.3264,2.8742791666666667,2.8742791666666667,2.731435,3.0035613333333337,2.6533666666666664,3.957005,3.666,6.788954666666667,1.2838100000000001,5.0663,3.491695,4.16115,10.15582,2.7746633333333333,3.22394,0.9816514285714285,2.966295,4.707685,4.00477,1.0980525,2.5993666666666666,4.685475,5.5842,2.574925,4.809230833333333,1.1307666666666667,2.10341,4.65061,4.787235,2.722142,2.527276666666667,2.61931,1.46804,8.332998333333332,3.5909999999999997,2.2640966666666666,3.18217,2.7562146666666667,3.35523,4.5182,2.6770633333333334,3.1911766666666668,5.97395,1.5270916666666665,4.819,4.99135,4.360565,3.819155,2.426266666666667,3.241435,3.74487,3.929965,2.910645,4.725885,4.543455,2.843833333333333,1.9368237499999998,2.726836666666667,2.7431933333333336,2.8239199999999998,0.8149272727272727,2.2975175,8.2982475,0.499640625,3.1237333333333335,1.63983,2.4323833333333336,3.2224133333333334,3.0357533333333335,1.264188888888889,1.7584060000000001,2.5902133333333333,2.1083,3.76064,2.086,2.978056666666667,1.5002233333333335,3.2475819999999995,1.980455,1.2107071428571428,2.8966833333333333,2.1061725,2.382496666666667,2.52408,2.7612400000000004,3.215863333333333,3.4447666666666668,3.3123633333333333,2.944993333333333,2.8089633333333333,2.8788,2.504075,1.6800766666666667,2.28557,2.7572733333333335,1.5886699999999998,3.07152,3.917710476190476,3.0394966666666665,2.9409500000000004,2.9435599999999997,3.7235,4.973569166666667,3.0638,1.7208785714285715,1.7208785714285715,2.4221125,1.1220775,2.520375,3.379811666666667,4.625392916666667,2.658625,2.0435975,2.0308325,2.031085,3.64097,3.71405,3.42047,4.97469,1.8447175,2.6109,3.569665,1.338954,1.338954,3.0296,0.7055315384615385,3.382365769230769,2.486965,2.486965,2.9327433333333333,2.475776666666667,2.9865766666666667,2.67245,2.3636425,6.28232,3.788055,3.788055,3.99549,2.86527,2.283705,3.05476,2.42387,3.12538,5.0336725,0.5226716666666666,0.639162,4.10744,2.233925,2.735525,6.41189,3.510665,1.672792,4.8951199999999995,4.680555,3.8992,4.23415,5.47035,5.0677,12.6709615,3.679435,1.7899466666666666,2.773655,3.59564,5.752,3.941265,4.341325,4.69871,3.802605,3.66897,2.63577,3.33884,2.84718,2.3187233333333332,2.3187233333333332,4.163445,3.26583,3.264285,3.07175,2.437225,2.43813,2.1804275,1.8974175,2.14063,2.1138425,1.75479,3.702599,3.70231,2.70382,6.8995375,3.38495,2.3465866666666666,1.9327733333333335,3.25721,3.70594,3.84843,3.185900833333333,3.474145,3.131455,4.192365,3.590615,3.80542,3.847215,3.247878,3.571925,0.8108483333333334,0.8108483333333334,0.8108483333333334,3.163615,2.38493,5.52355,2.33224,3.635535,7.8412779629629625,3.0308666666666664,0.34144384615384615,5.3257,0.771727,4.193145238095238,1.89452,3.71775,2.051375,5.10525,5.871214999999999,4.48474,4.053435,2.7970633333333335,2.952053333333333,1.4873066666666668,2.52331,0.5131147368421053,0.6078411764705882,2.7746666666666666,1.6226500000000001,2.12873,3.673615,3.28981,4.751665,2.79466,2.907021666666667,3.154795,5.94329,1.9419125,1.0169042857142858,2.302145,3.321612,1.322571948051948,4.727645,3.71652,4.3102,2.72266,4.34229,3.022346666666667,2.8464066666666668,3.1780000000000004,2.3283275,2.84755,2.1526175,3.0946466666666663,2.59709,5.735794666666666,2.651,1.92495,2.53579,5.076797333333333,2.92766,2.92766,2.4252066666666665,3.97536,2.2738825,3.744335,2.787165,0.6133986666666666,4.37573,2.1384725,11.68653888888889,7.14682,2.665305,3.23417,3.19411,5.61844,2.82126,3.41248,0.25982,1.957825,3.796466666666667,0.907,3.87396,1.4711714285714286,5.0133,3.368595,3.49991,2.490645,3.963725,2.28458,4.90252,3.672795,4.257435,7.48321,5.18035,3.0405200000000003,3.1551066666666667,1.565464,2.03635,4.442495,5.18405,3.9450775,2.563275,4.12501,1.59211,2.933775,2.34071,4.579405,10.817741666666667,3.566105,7.232803333333333,3.887615,4.65343,1.0564355555555556,4.9518450000000005,4.67078,2.50306,2.85323,3.6150333333333333,2.68859,2.3507433333333334,1.7369899999999998,1.82554,3.509905,1.830702,2.735716666666667,5.520418,2.819706666666667,1.1677432142857143,1.1677432142857143,3.537515,3.2767494999999998,3.2767494999999998,3.6945666666666668,2.9470266666666665,3.598052820512821,3.6595999999999997,2.805563333333333,2.6934400000000003,2.2383533333333334,2.3583766666666666,3.0474366666666666,2.2731325,2.6098733333333333,1.544258,5.587778,9.336768666666666,0.36129076923076925,0.36129076923076925,0.36129076923076925,0.4238509965034965,0.4238509965034965,0.36129076923076925,3.0019766666666663,2.86041,4.3170633333333335,1.4994733333333334,1.705725,3.254858,2.2073933333333335,2.9528366666666668,2.4238066666666667,3.3055800000000004,3.5802333333333336,7.187906666666667,3.1338933333333334,2.3244599999999997,3.5663666666666667,4.65033,2.8296966666666665,3.6191,5.66822,2.2752466666666664,3.3283233333333335,1.4012916666666666,1.4012916666666666,2.77721,0.5335052631578947,2.3126433333333334,2.7702266666666664,3.0418966666666667,3.253626666666667,2.2852333333333332,1.5796166666666667,2.77469,3.1489666666666665,2.47186,4.782455,2.4143673333333333,4.0998,3.42129,4.78396,0.567662,6.613461666666667,2.9375080000000002,2.9375080000000002,7.802388055555555,1.81754,1.6764166666666667,3.122673333333333,4.46361,2.2284533333333334,1.97752,2.5207166666666665,1.4409925,3.4519333333333333,1.7843733333333331,2.9826345000000005,1.42229,0.26129318181818184,0.26129318181818184,4.82705,3.836005,3.626335,3.0279633333333336,3.217515,3.44546,1.3611266666666666,6.7127,3.7193,2.62151,1.8091025,1.2059416666666667,2.18615,3.122673333333333,2.375915,2.059445,6.180669999999999,4.857035,4.70228,4.402845,2.51074,0.6706358333333333,6.3342975,1.86543,1.3579575,3.25904,4.5102,1.75009,1.9541666666666666,4.70895,4.53901,3.4576333333333333,3.32319,5.0897,4.775435,3.6153666666666666,2.5002519999999997,2.5002519999999997,4.41328,5.19105,6.00385,6.780823333333333,2.6726666666666667,3.79979,1.3817814285714287,2.2858225,4.778653333333334,3.75796,1.7579,4.461865,3.6062775,4.2485,1.961245,4.270285,4.6225,5.5926,4.686645,2.3773633333333333,2.7228166666666667,3.8404333333333334,2.1287333333333334,2.5309,2.81898,2.4579999999999997,0.974583,1.94239,2.704003333333333,2.4174179999999996,4.89504,4.596615,4.314095,3.87437,3.925215,5.3451925,11.00578,5.14725,3.86465,4.286695,3.697295,4.622755,3.414633333333333,2.843466333333333,3.8549333333333333,1.2183925,2.85874,2.716205,4.95222,5.08625,5.00185,3.2609100000000004,2.8028366666666664,2.3930000000000002,4.2754666666666665,4.369275,3.7918333333333334,4.369275,2.5848455,2.2965866666666668,2.2572883333333333,2.257125,2.81303,1.8114,0.8391166666666666,1.4332566666666666,1.6797833333333332,1.9544566666666665,1.5508766666666667,1.30294,1.6185933333333333,2.662246666666667,1.531404,3.1811433333333334,1.31904,1.5246633333333335,2.643185,3.381866666666667,2.8118833333333337,2.57895,2.41264,3.146755,2.273975,2.7537533333333335,3.0555333333333334,2.4836233333333335,3.060726666666667,2.934355,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,4.881025,4.01844,1.0150828571428572,3.0452600000000003,2.6162566666666667,2.9342466666666667,4.4872,2.9164266666666667,4.65264,3.841108666666667,1.65509,3.2004,1.6930333333333334,1.10678,0.912041,1.3081433333333334,0.8928916666666668,0.8067083333333334,1.402536,3.185525,1.717362,1.77365,1.892468888888889,2.396455555555556,0.9889083333333333,1.4523783333333335,1.39992,0.9798916666666666,1.2586116666666667,0.7368533333333334,0.922574,3.22534,3.57485,4.326375,4.274065,4.2069,3.0548133333333336,4.531545,3.6950000000000003,1.7742,3.757545,1.9496525,3.35864,2.3794166666666667,0.8269272727272727,3.98564,4.879275,2.0367633333333335,1.2593925,2.88014,3.355085,3.7102649999999997,2.9308333333333336,2.75867,0.8880075,2.1406425,5.131475,3.74134,2.4019,1.487895,3.65343,2.0230525,0.6791481818181818,4.43708,4.321915,4.25448,2.46181,1.263078,4.29677,4.364615,2.575606666666667,2.5180233333333333,2.5333733333333335,2.6403733333333332,2.6515033333333333,2.8188433333333336,3.102463333333333,1.3061125,2.777125,2.70884,5.18875,4.18608,3.74984,4.42452,15.923328147727272,4.6258175,4.798643333333334,2.837675,3.993645,5.16855,1.601658,2.7206,2.62924,6.876505,4.395815,4.803935,4.7843,2.62924,3.75539,2.05395,2.55403,2.79275,2.6203233333333333,1.2696183333333333,4.294355,4.05411,2.808095,4.178085,2.5472733333333335,2.5413566666666667,3.59048,3.06405,4.98076,3.415675,2.73519,3.469655,2.556235,2.6733533333333335,1.072718,1.072718,2.7666299999999997,2.2439133333333334,0.30148964285714286,5.4531,0.9201599999999999,3.406245,4.094195,0.5663025,4.61682,8.470713333333332,1.804755,3.743195,3.84702,2.6194,3.581815,2.54733,2.96758,3.59326,4.032575,3.222715,3.9686333333333335,0.951925,11.370230666666666,2.89228,2.942905,4.515655,2.601205,3.99314,7.768308333333334,4.25436,4.41998,4.226275,4.331245,5.9937925,1.5367025,2.966756666666667,4.3435,3.8664,1.8781780000000001,3.74567,3.95338,3.560575,3.898215,4.936865,4.05875,2.4380333333333333,4.276355,3.513805,4.996675,4.52733,2.18273,2.342093333333333,2.0354,2.98127,1.2429033333333332,3.5947333333333336,0.8469009090909091,3.4210333333333334,3.2019800000000003,2.4758400000000003,1.5517366666666668,4.40247,3.725435,4.160315,1.8596275,4.59398,3.654225,0.6790854102564103,0.33788807692307693,4.70829,4.67078,0.97469625,0.33788807692307693,3.466245,0.6790854102564103,0.6790854102564103,0.33788807692307693,5.7018466666666665,2.6030966666666666,2.4434,5.6063,3.58787,3.075635,0.7795855555555555,2.996285,3.671225,4.70408,5.4241,2.18099,0.7124784615384615,4.5354399999999995,2.84348,1.595964,2.07857,1.1422485714285713,2.5601966666666667,2.368186666666667,3.753505,5.76615,3.4430333333333336,3.6084333333333336,3.154873333333333,2.2599033333333334,3.093235,4.228365,1.443575,1.966655,4.20784,5.15825,2.143025972222222,5.0142,2.616225,4.19496,4.184295,3.87629,1.168715,2.98591,6.5877,3.86969,4.40814,4.98527,6.4911,3.045575,4.60894,4.467985,3.18756,3.338855,8.09344,3.681915,4.3189725,2.363,0.9307125,2.46945,2.11212,2.297795,1.843095,4.623555,0.7104007142857143,3.692385,3.946365,1.99986,3.0946266666666666,4.91049,3.927995,2.848235,4.68264,5.7828,9.767670333333333,2.5848566666666666,2.7788766666666667,1.615524,1.8787666666666667,1.2829266666666668,1.38515,3.2374066666666668,2.40515,3.0428366666666666,4.319406089743589,1.5945325,2.31469,5.3951,5.8192,3.890165,3.34364,2.91548,2.37553,2.101295,2.11511,1.9180466666666665,1.97837,4.426005,3.522575,5.0271,5.2468,4.537835,5.333599166666667,3.51202,2.543375,6.353527916666667,4.268985,8.213755,4.867221666666667,4.867221666666667,5.541618333333334,1.7321466666666667,1.2908225,1.2963433333333334,0.683807,5.2879,4.1783,3.3147699999999998,3.3147699999999998,1.893716,4.486695,4.409265,4.84377,4.919265,2.94504,2.65928,4.411335,3.1339733333333335,4.767779166666667,3.691445,0.8863918181818182,6.04525,5.3207,5.2162,5.22085,2.986535,5.90115,5.0454,0.8357769230769231,4.95871,7.161994999999999,3.6179,5.51145,5.84695,3.42156,2.623745,3.67769,6.07845,2.087725,5.75675,1.8604325,4.891155,2.7192266666666662,2.133335,0.95358,3.66354,5.5892,3.49713,4.389355,1.8465566666666666,4.48364,7.8289116666666665,3.665145,4.079975,2.6761,2.792135,0.89765,4.790265,1.4974466666666668,3.366039166666667,3.366039166666667,4.70385,2.2403666666666666,3.1099366666666666,4.345345,1.8351975,3.3681666666666668,3.221296666666667,3.3746333333333336,2.74171,3.98634,3.054735,1.847915,3.5179666666666667,2.2373575,2.98254,2.0194233333333336,2.9790433333333333,2.9776566666666664,1.4593285714285713,1.79183,0.48850666666666664,1.3036483333333333,0.48850666666666664,0.48850666666666664,1.79183,0.48850666666666664,3.4619999999999997,2.623168,2.623168,2.8170566666666663,5.26145,4.83011,4.377705,5.6396,3.933405,3.45121,4.31195,4.24373,2.3387275,2.6493011666666666,2.70406,0.7819945454545455,5.7751,3.071733333333333,3.031,5.59145,3.7816425,5.14295,3.31969,2.5712766666666664,3.116435,3.248415,2.477323333333333,2.736283333333333,2.07762,5.6378,0.8664444444444445,4.05548,1.2643814285714285,3.47904,3.0736233333333334,2.902946666666667,4.148705,4.321865,4.129045,4.77484,3.892345,4.106895,4.431835,4.07731,2.540475,2.651925,3.3059933333333333,4.10215,3.13175,3.728025,2.554885,3.681975,3.205963333333333,3.25812,3.591945,4.14165,3.96698,68.2923844980575,2.7144308333333336,4.103555,15.911693333333334,3.904555,3.09067,2.128766666666667,2.09742,2.39324,4.61717,2.89561,4.6526525,6.035,3.386175,8.207613333333335,5.42465,2.798765,3.377325,3.90692,3.495125,1.786646,1.23919625,4.529345,2.96585,6.016568333333334,3.88701,2.4342099999999998,3.44375,4.03441,4.381535,2.83585,5.436285,4.451225,3.895345,3.226265,2.1862075,3.55718,6.0055,2.84845,3.71859,4.3127941666666665,1.1699916666666665,3.494565,5.1764149999999995,4.22608,3.84289,3.578045,2.87513,4.12124,3.11023,3.59918,4.347835,4.439935,3.123105,2.615655,4.369565,9.157415,3.1212066666666662,4.174775,4.9181,3.15441,3.366925,3.9975537500000002,1.8972233333333335,2.7801299999999998,2.938136,3.55246,3.21099,3.06177,3.09106,3.573555,3.867845,3.75482,4.02756,4.296815,3.87055,3.72045,2.5232099999999997,2.5232099999999997,6.3879850000000005,2.45628,3.186845,3.505135,2.32732,5.12815,4.026945,2.85799,3.298085,5.20385,6.7719024999999995,0.6850172727272728,3.7263,2.48925,2.919033333333333,2.6344733333333332,5.28175,2.776543333333333,1.9767175,1.11761125,2.0590228787878786,3.968265,4.058875,3.711375,6.23555,3.973245,5.88595,2.36123,1.6864966666666668,4.724645,3.733,3.123476666666667,2.0028366666666666,1.261485,2.6546533333333335,3.1672266666666666,1.594496,2.50459,2.489883142857143,3.499685604395604,2.835865,5.20875,3.384045,1.3784075,5.2683,3.35002,5.32675,4.75039,5.301,4.69016,1.9492566666666666,1.4730966666666667,0.6002342857142857,1.5771066666666667,3.49846,2.489285,3.553095,1.33428,2.62192,2.317215,3.24078,3.41177,3.733825,4.05933,1.586525,1.47474,1.90088,1.95136,1.5076525,2.74575,6.547725416666666,5.00105,4.198925,2.949915,8.110195,4.919265,3.008925,2.97489,3.42526,2.636705,3.901935,2.3016566666666667,7.09811,0.8719416666666667,3.100755,6.4979,3.968005,4.695435,5.8128,1.6708266666666667,3.1046066666666667,2.6406266666666665,2.8611400000000002,1.634305,4.016965,8.6501,4.18309,5.12845,4.06645,4.201595,4.777625,0.8937566666666666,2.77113,5.48755,6.54024,4.973185,5.3528,2.8878,3.9293333333333336,2.48848,5.0581,5.01205,3.886128166666667,3.886128166666667,0.69449,3.494866666666667,0.862194,0.8895266666666667,1.86288,3.4185666666666665,3.20737,4.613518571428571,2.423506666666667,2.943726571428572,3.207061904761905,3.160816666666667,3.097963333333333,4.6325,3.176375,1.875025,1.875025,3.74946,2.9485200000000003,2.614316666666667,4.254625,3.555266666666667,0.6187577777777777,3.1905,2.469473333333333,2.6948233333333333,2.75108,2.543925,2.686976666666667,3.15536,2.8809166666666663,0.830033,2.85376,6.293803904761905,2.15242,7.583145,1.531512,1.531512,3.371558916666667,3.3588,3.313803333333333,3.118263333333333,1.839102,1.2592128571428571,3.119123333333333,3.348966666666667,1.5688316666666668,1.5412571428571429,2.812556666666667,2.678766,2.766723333333333,2.280925,2.05904,2.817825,2.250895,2.62538,3.3162,1.77002,3.41232,3.25396,6.73251,4.32745,1.6922125,3.42707,2.745495,2.278135,3.905695,2.747063333333333,2.72917,6.9793325,0.7888384615384615,0.6379941666666666,4.64344,1.390854,1.390854,3.594205,2.50845,4.968725,3.42322,1.3399433333333333,2.281694,2.91485,2.3869256666666665,5.2271,2.74345,2.767056666666667,2.70368,1.77137,1.77137,2.4219566666666665,3.78349,3.8858,5.88825,3.02371,5.10295,4.54781,6.83355,4.40342,2.20453,2.7577866666666666,2.64255,2.5665533333333332,0.70843,0.70843,0.70843,2.958215,4.762655,4.05813,1.228015,1.228015,5.16,6.19825,7.5417,22.279837,11.9586,8.07292,3.225185,5.86035,2.3946175,4.447245,2.8637766666666664,3.28354,4.1171,5.1816086666666665,1.97015,1.76289,6.51126,2.2932200000000003,2.2932200000000003,6.6083,3.985805,4.539205,1.76944,5.286425,4.900705,4.07656,5.1023,3.941465,2.00942,6.2839,9.54077,2.00942,1.76944,2.1479500000000002,0.9264300000000001,0.9264300000000001,1.743752,2.0483066666666665,1.743752,4.83672,6.0669,6.42215,9.58714,1.76944,11.4509445,6.10745,6.3304,2.3946175,3.85696,4.68095,9.368,3.065345833333333,3.889915,5.7129,3.454955,4.660745,6.11615,4.714275,5.1996,4.7442,2.65832,5.5523,3.77929,4.722885,4.207315,0.819305,1.55429,3.034015,5.5462,4.86054,2.819706666666667,2.0066475,4.070395,4.728015,5.7816,5.3656,5.3493,4.349005,3.71971,4.20065,3.615335,2.0333375,4.6494125,2.198305,2.65716,3.510425,1.9272266666666666,3.646235,4.486125,3.541205,5.44025,2.935325,6.585628333333333,0.9581066666666668,3.48096,3.512325,1.4929857142857144,5.799899,1.6642466666666669,1.6941733333333333,2.55408,2.8011135,3.3648000000000002,2.8465733333333336,2.0381675,0.7564927272727272,2.3889533333333333,2.461395,4.40547,0.7191792307692307,4.968396666666666,1.7064266666666665,1.0785040000000001,3.7200666666666664,1.0785040000000001,3.883325,0.9195818181818182,4.38076,3.3607666666666667,1.911455,4.313266,4.0614885,4.0614885,5.5338,2.607425,3.3810249999999997,2.6144633333333336,1.758832,3.772895,4.01892,1.88009,0.7686141666666666,7.448027564102564,2.64698,3.62061,4.13478,7.27794,2.837825,3.955555,3.579875,3.20782,3.910955,5.67625,6.154555,4.21616,5.3099,5.5896,2.9083466666666666,4.61499,4.050815,4.36682,1.1452666666666667,0.5183428571428571,3.1838,3.4409666666666667,2.947343333333333,5.7014,3.834895,4.370235,4.79247,4.81173,4.303075,4.2687,1.16151,2.249565,8.969355,2.358103333333333,2.1662233333333334,3.9656338095238093,11.944446607142856,1.5416375,5.1896,6.187,4.9376,3.300076666666667,2.3495933333333334,3.1821,3.847685,1.0449966666666668,3.3271833333333336,3.40791,0.40553,1.9431633333333334,4.9964,4.43652,2.261065,3.88255,3.286085,4.831508333333334,1.2209066666666668,0.5954927272727273,3.6106016666666667,1.1447114285714286,1.00670875,1.00670875,1.00670875,1.00670875,1.5720733333333332,2.9667999999999997,2.317633333333333,2.9333899999999997,5.76725,3.65,5.05515,3.74729,4.32484,3.258085,3.98253,1.4319199999999999,7.28566,2.487435,5.3662,5.317753333333334,4.78705,4.998891666666667,2.8610333333333333,2.5195000000000003,2.67849,3.989175,1.2744466666666667,5.276875,2.56673,4.95833,2.9849599999999996,2.41146,3.62373,3.517205,2.850035,2.547963333333333,2.5395233333333334,1.5037875,0.38123222222222225,4.61896,2.951935,4.186075,3.14917,3.94266,6.2652,4.68657,0.5441400000000001,3.3150759999999995,7.547199333333333,2.1065033333333334,2.12562,5.267666666666667,4.772695,2.63064,4.977425,5.07415,4.389395,4.32594,4.22982,5.0952,5.1075,4.9644,3.45821,5.4023115,1.6097560000000002,1.5724766666666667,4.465275,3.9618,4.31635,3.22292,5.3039,4.90654,3.848935,3.292425,16.07930752898163,1.3714985660781167,1.517625,2.4818704545454544,0.70588125,0.5892693333333334,1.6535875,0.3723705882352941,1.3928559999999999,3.1799766666666667,1.6015160000000002,1.1099833333333333,2.599758333333333,1.1066083333333332,2.599758333333333,2.599758333333333,1.1066083333333332,0.8974,0.7403785714285714,2.916005,2.616756666666667,3.642015,5.298,2.7666733333333333,2.74745,4.51825,4.89849,5.0021,3.171025,4.55033,0.7550857142857142,2.4548146666666666,8.627231666666667,4.76649,6.512311666666667,2.818745,3.99926,2.338905,4.958665,5.3368,3.021415,4.04208,2.555315,1.004815,4.302195,5.19805,1.14194,1.353898,1.5624,2.333223333333333,2.90173,4.65118,5.75165,2.2929575,2.2929575,3.539520833333333,6.87877,2.097046666666667,0.64771,0.7781571428571429,2.2479466666666665,3.6161666666666665,0.9411814285714285,0.9411814285714285,0.9411814285714285,0.37652846153846153,1.03175,3.0985,6.17235,3.8844999999999996,4.241649166666667,5.41145,1.0346899999999999,3.453666666666667,3.399366666666667,4.0069,5.8035,2.6600066666666664,7.538733333333333,5.10345,1.1700222222222223,3.972,1.591444,2.705365,2.1651366666666667,6.787095000000001,3.1701033333333335,4.663315,2.320565,3.896145,4.318805,4.572685,0.4125972222222222,3.1018966666666667,1.4086800000000002,2.698593333333333,4.231191333333333,2.1840366666666666,2.7201500000000003,2.24824,2.48471,2.39948,2.7750133333333333,2.8004833333333337,3.2193233333333335,1.6801480000000002,2.293433333333333,2.4293400000000003,2.7914733333333337,2.39797,2.0952825,1.7697766666666668,1.9548033333333334,1.8000825,3.17751,2.45308,2.56175,2.3037633333333334,2.3644166666666666,2.738326666666667,0.7699511111111111,0.7699511111111111,0.7699511111111111,2.5464766666666665,2.4187333333333334,2.9106400000000003,3.3122933333333333,2.6450366666666665,2.032363333333333,4.192205,3.0813699999999997,1.2689166666666667,2.56218,2.749416666666667,3.9860333333333333,1.5661,6.949331666666666,4.7838,3.237745,3.899955,3.955555,1.6803175,0.4679242857142857,2.916035,3.70322,3.9860333333333333,4.753605,4.37847,5.35235,2.8907833333333333,3.90242,4.243775,0.7565470000000001,2.78758,3.17866,5.286656666666667,4.480055,3.5671,2.95049,2.46556,2.5932833333333334,2.53554,0.6077391666666666,5.302695416666667,2.515575,4.36227,2.7772133333333335,3.7621149999999997,2.9258900000000003,2.38537,2.8603303333333336,2.8603303333333336,2.5133933333333336,2.0720633333333334,2.4672466666666666,1.9700666666666666,4.32287,1.40355,2.759145,3.87395,4.762825,3.82506,5.014,4.976255,2.42009,2.07096,3.276225,3.87391,2.726425,5.15525,2.87481,0.7687299999999999,0.7687299999999999,4.02694,3.989491,1.018256,4.686595,1.018256,4.106255,4.8302,4.93583,3.435875,3.24928,6.315255,4.388395833333333,6.3229,0.9193428571428571,0.9193428571428571,2.1596599999999997,4.671348333333333,1.5147483333333334,3.1566,3.889355,1.1000742857142858,4.759905,3.93452,5.91375,5.91375,1.29209,5.8641,5.44025,5.31205,6.4014,2.0587575,2.0587575,7.0648,1.0179454545454545,7.25005,1.8419925,6.1286775,2.74976,2.4378966666666666,3.452045,2.0773599999999997,2.1498766666666667,2.4441866666666665,3.011903333333333,2.6304476190476187,6.4103069999999995,1.8525839999999998,5.5064,3.17599,2.568846666666667,1.947405,2.255535,3.271905,3.31718,3.409095,2.61065,2.037425,2.18005,2.60154,1.16662,3.23764,2.040805,3.02137,2.098643,2.098643,2.993385,2.0685333333333333,3.664445,3.60263,5.3479,7.354416666666667,4.39152,3.311835,6.50024,1.9543566666666665,3.1599377777777775,2.1112866666666665,1.4988428571428571,1.7573825,4.174165,1.6088250000000002,0.500629375,0.6446766666666667,4.50104,4.73914,2.89274,0.9417288888888888,2.959095,2.7930833333333336,4.895245,2.05932,1.79921,1.1577555555555556,4.6627,2.36983,4.542655,0.703188,4.034015833333333,4.99862,4.293815,4.47299,3.39054,3.839955,3.1108466666666668,5.178,3.722855,2.36064,2.5339566666666666,6.037883333333333,6.7624675,0.6912175,4.275155,4.081365,5.1829,3.4185,3.6213333333333337,2.731125,3.4514333333333336,3.697533333333333,5.605665,2.678766,2.383349,3.602665,4.709365,2.344975,2.4386975,8.07371,4.623585,1.8983333333333334,5.09745,4.61486,1.8311620000000002,3.85043,1.4734875,1.8786142857142856,4.69571,4.186325,5.8471,3.1716800000000003,4.014095,4.636455,6.24205,4.41317,4.53957,4.11037,5.29705,4.39801,4.481375,1.160200076923077,1.160200076923077,8.79916,0.851705,1.9435449206349207,0.851705,0.8741416666666666,0.3549877777777778,2.8176865873015875,1.97572,0.6647471428571429,1.9435449206349207,1.943175,3.28238,2.1529394444444443,3.54897,4.605235,7.5329983333333335,2.58679,2.14843,2.79087,5.4045,5.658,2.307535,1.683315,1.00125,2.684565,4.042845,2.529965,4.40281,6.15597,0.44045388888888887,3.89359,0.724125,2.9170233333333333,2.401505,3.74701,1.2820833333333332,4.468835,4.5036075,4.433745,2.916865,4.05831,5.8611575,1.7938425,3.81386,0.7292861538461538,2.669185,2.589085,1.1058020000000002,2.9581733333333333,2.388193333333333,2.537453333333333,4.726705,8.960225000000001,3.4527042424242427,3.563725,4.222285,8.53543,5.483643333333333,3.4079333333333337,3.934555,3.596555,5.46975,5.02755,5.918,5.38635,5.6611,6.2658,3.2489000000000003,1.6542275,1.9565566666666667,2.26375,4.13177,2.37588,0.2827,0.2827,0.2827,29.972910666666667,0.2827,2.744825,0.2827,0.2827,0.2827,3.516256666666667,4.49948,0.2827,0.2827,0.2827,0.2827,0.2827,3.91818,5.19945,3.367585,0.3556102564102564,0.3556102564102564,4.531106666666666,4.397146333333334,4.139528333333334,3.120777111111111,4.129232380952381,8.160766666666667,11.237536585470083,6.182789333333333,7.864787333333333,7.301643142857143,2.77721,6.18202,4.241278333333334,4.446713044871795,0.3556102564102564,7.8947519999999995,6.722468285714285,7.036373333333334,3.139475,8.810445142857143,15.71681380952381,18.85368065018315,58.13738415247498,118.25548399839295,1.4012916666666666,3.3283233333333335,3.234675,3.9750939047619047,0.3556102564102564,1.6785017948717948,8.300413958333333,14.79815855952381,20.134698333333333,49.126500219089394,13.19592680952381,2.93245,0.33300620689655175,0.33300620689655175,4.479706666666667,2.7637366666666665,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,10.6838,0.33300620689655175,0.33300620689655175,0.33300620689655175,2.92905,2.0145566666666666,3.63634,3.548085,4.178105,5.2006,2.57045,4.46523,4.233715,3.071235,1.4722,3.394995,0.97989,2.351835,2.504253333333333,5.47474,6.046633333333333,2.5593766666666666,6.027525499999999,0.395625,0.5403426666666667,2.4877833333333332,3.0074466666666666,3.074515,4.763765,3.342833333333333,7.42649625,3.683535,3.10156,3.13058,4.193505,4.036625,3.07635,5.1843,2.97628,0.46366153846153846,0.8611981818181818,4.377985,1.8320075,3.458755,3.805885,4.518605,3.368625,2.503775,2.845265,0.5738946666666667,0.745668,4.10924,2.53602,4.71036,4.017875,4.429315,3.35907,2.7992,5.35085,5.6245,3.151655,0.9038172727272727,3.7369333333333334,5.18065,2.295885,0.928065,1.80202,3.8661,5.97865,1.727565,3.082095,4.391855,5.9424,2.463815,2.4909066666666666,2.26283,4.31322,2.183005,3.755795,0.68652,2.60325,3.290335,1.82551,5.9640949999999995,4.448725,4.53678,5.27695,2.90832,2.04329,0.5369127272727273,5.5405,4.10492,5.81975,3.08128,6.13185,5.075,2.856535,2.775485,1.2987471428571429,5.7015,1.75254,2.68648,9.02899,4.428475,5.3828,3.362675,0.9575877777777778,3.124,1.1045014285714285,3.30882,6.4505,5.18145,5.16055,3.655325,5.518,4.41983,1.8005,1.7647233333333334,5.21685,3.0492966666666668,3.3936666666666664,2.28935,5.09,4.41154,1.4599866666666665,3.499233333333333,2.85897,2.729145,3.986175,9.08769,4.77823,1.6982275,4.47512,6.28841,4.74009,4.03254,4.19184,3.702005,4.60685,7.43234,2.4894666666666665,3.083015,4.26484,4.421015,3.13954,3.173955,5.12225,3.73463,3.235885,4.022597333333334,18.191686,2.69552,2.2338400000000003,3.2397899999999997,5.8825009999999995,1.0419575,4.43391,2.0491333333333333,4.99363,1.3977166666666667,4.322405,4.422745,4.10682,1.04038875,4.589075,4.715675,1.7120375,5.164741742424242,4.16247,1.2028228571428572,3.600745,2.13353,2.52521,1.660915,4.164705,3.73454,4.454495,3.534585,3.0520333333333336,4.33024,7.693548333333334,4.413685,4.974725,4.96324,3.19873,4.27701,5.01505,6.683636,1.068284,1.068284,4.36132,4.45115,2.1506633333333336,1.5059483333333334,7.11933,4.107865,3.93313,4.224595,4.572255,4.43635,3.51886,3.749375,6.370783,4.25028,4.49059,5.1631,1.4630857142857143,2.7964,4.75469,5.23305,3.596085,0.21040722222222222,1.4825125,2.0523675,2.4248266666666667,2.0840466666666666,1.033148888888889,1.189185,1.3687775,2.779056666666667,0.6479522222222223,1.3363885714285715,2.0872075,3.763775,3.8415,2.66468,2.7879466666666666,3.1102900000000004,2.67582,0.693396,0.9809175,3.00077,4.657035,4.211925,4.08314,3.919185,4.48897,5.09715,2.2480599999999997,4.31042,5.2066,4.70343,6.462664999999999,4.25453,0.45433352941176475,5.74165,4.59562,4.708035,5.5523,3.424515,2.04326,4.284045,4.245215,2.73796,5.250280833333333,4.44896,1.412755,5.250280833333333,4.316115,6.6392125,3.91088,1.265011111111111,4.044255,4.998955,4.34627,2.633246666666667,5.22575,1.5804525,1.900425,4.75389,3.56046,0.7801611111111111,4.689115,5.03845,3.67134,4.32964,3.3716000000000004,3.4811666666666667,1.7644279999999999,2.0273325,3.10818,4.1046,3.6726666666666667,2.419486666666667,2.65805,2.262039,5.2041,1.7556571428571428,0.8223833333333332,6.78788,4.36052,1.6083539999999998,2.8783499999999997,2.48737,3.393166666666667,6.83488,2.4650299999999996,0.880044,2.43718,4.75454,2.396673333333333,4.2669,6.10095,5.43385,4.776955,4.368585,5.15525,2.2971733333333333,2.2126433333333333,1.7485600000000001,2.13842,1.8470825,2.856403333333333,2.2564566666666668,1.7908075,2.71553,3.00094,3.94643,6.47315,5.65095,4.19124,4.96102,3.87991,3.820915,4.83319,0.867065,2.5943,5.5223,1.16758,0.75512,5.1549,3.56552,2.4949966666666668,3.483485,5.8459425,5.19345,0.988027,1.2727242857142858,0.7004066666666666,4.155509166666667,2.2718599999999998,2.8555233333333336,1.2371514285714285,3.2968533333333334,2.5314533333333333,5.737,5.0362,4.416315,5.28855,3.90621,1.3016866666666667,3.5184,1.6801933333333334,3.370565,4.05157,3.60752,2.90054,3.4700666666666664,2.78797,5.99025,3.738845,3.078835,2.766,8.91742,10.32159,4.52078,1.2093314285714285,5.46655,4.29223,5.30025,4.43079,3.916535,3.868835,3.4364,4.08183,3.6489486458333333,4.93618,3.80986,3.760265,4.53371,1.838988,4.95459,5.7569,4.88068,3.3275,3.0502475000000002,6.6859,0.7294383333333333,2.79978,2.6982366666666664,2.271173333333333,5.00065,3.67996,1.18497,4.38402,3.626533333333333,3.60415,4.82002,3.7317508333333334,6.3875,3.107613333333333,2.8791333333333333,3.1034966666666666,3.2227433333333333,4.348145,2.3223733333333336,2.1709666666666667,3.22535,3.9419,3.3434637499999997,1.872285,1.45689,3.561893214285714,3.1250315000000004,0.9801411111111111,2.284135,2.284135,1.3252175,5.64475,2.78454,3.151715,3.6127,3.690555,3.48391,3.48502,3.028755,2.828385,1.9922033333333333,0.5677646666666667,3.12804,6.07463,2.966045,3.5332,3.10679,4.084005,3.960775,3.062215,3.07174,3.7031,3.545725,3.177265,2.79342,3.303225,2.4182966666666665,3.98527,3.888,8.50163,3.25435,3.699365,3.067255,3.85451,4.045505,3.620405,2.435735,3.619965,2.5712775,2.82573,3.238405,3.16184,3.80392,1.8129133333333334,1.8129133333333334,2.32806,3.09019,3.242005,1.573284,2.41684,3.13226,1.9445139999999999,2.700615,1.573284,3.783975,2.8612,3.80640775,2.76374,3.6326,2.25353,3.516715,3.76821,4.588825,3.677455,4.02236,3.61167,3.989065,3.419025,2.949135,2.99756,2.87348,3.663565,2.668093333333333,3.708675,5.25705,4.171225,3.56378,0.34311608695652174,3.502385,0.4439341666666667,3.7476,3.487855,2.848175,3.790175,3.94519,5.70058,3.01988,2.521523333333333,2.2944633333333333,2.680616666666667,0.823658,5.744086666666667,3.24789,3.246835,4.192765,2.01803,2.633235,3.171325,3.08492,6.27851,4.243645,4.842005,4.80619,4.63483,4.530265,3.454965,1.4555716666666667,1.6316320000000002,3.96501,4.752835,5.6848325,2.0828933333333333,4.424755,2.112385,3.698,3.62315,1.850335238095238,3.97562,4.73331,3.6468666666666665,3.8898333333333333,3.3657333333333335,4.336585,5.0432,3.5381,4.23722,4.56729,5.1098,4.14473,4.383185,3.4572,3.437975,4.6597,2.59995,3.1466333333333334,3.1466333333333334,4.32597,2.706106666666667,4.009685,2.571,4.587635,3.3339666666666665,3.49435,2.01142,1.8292233333333332,1.1729616666666667,1.1729616666666667,1.729888,3.4761666666666664,1.7014266666666666,3.0182266666666666,4.26723,5.402909,3.3643666666666667,5.0804,5.72468,2.524365,2.68747,3.0226100000000002,1.6005500000000001,4.67079,4.53811,6.145285,1.7685866666666668,5.56005,5.7114,3.167456666666667,3.445685,4.022735,6.35193,2.1614299999999997,2.535875,3.79665,0.46666714285714284,4.60781,4.108785,4.845725,4.46744,3.91743,1.616658,1.876724,3.761565,4.213905,2.3749833333333332,3.616965,4.5368,4.63649,1.2973,3.97514,3.86466,3.790315,5.1171,2.848546666666667,5.5182649999999995,3.68058,1.517264,3.64057,1.2596483333333335,2.8135966666666667,7.554353333333333,3.04053,0.7349254545454545,3.654675,4.70915,4.33432,2.07922,2.07922,4.823243333333333,5.9024,2.96283,0.4938266666666667,1.92898,4.270995,4.447575,4.231845,1.762038,2.9911366666666663,3.38519,1.1939217763157894,1.1939217763157894,1.1939217763157894,0.7906396929824561,1.4579413596491226,0.6673016666666666,1.1939217763157894,0.7906396929824561,0.29362052631578944,0.9609221929824561,0.29362052631578944,0.4970191666666666,0.4970191666666666,0.4970191666666666,0.4970191666666666,1.2113046666666665,1.3569,2.3956633333333333,2.335046666666667,1.117485,6.229833333333334,2.675933333333333,5.37781,2.17279,4.20596,3.18071,3.243595,2.7644816666666667,5.0028,2.8299266666666667,4.198815,4.123,5.0298,2.3598225,4.09415,5.0131,3.958705,3.213355,5.0185,3.19836,4.381815,5.3811,5.1369,5.9612,4.84024,1.3372375,2.97551,3.78912,3.03211,14.266494999999999,4.910355,5.42725,2.7463433333333334,7.41636,4.049375,3.703145,4.426655,3.09932,1.0553375,2.64015,4.059625,4.18139,3.67497,3.40574,4.05131,2.85548,4.304955,4.742565,4.02905,6.6167783333333325,8.130531666666666,1.462,3.50804,4.15044,4.157815,3.682855,3.594605,6.68374,2.559955,2.69142,2.468765,3.894995,3.77715,4.95664,2.621815,1.716255,0.831434,4.8671,4.158525,4.149195,3.972685,3.74655,5.07745,4.457815,6.7382,5.6373,4.72603,5.76875,4.520225,3.123,3.200365,3.355815,1.8743675,5.14685,6.5575,6.5805,6.24431,6.24431,2.295255,1.8743675,1.96655,3.14499,0.7339600000000001,1.648505,0.914545,1.704215,3.2329,0.433983,3.1715,3.92657,1.704215,3.206537,10.91539,6.535947500000001,2.3141933333333333,1.06351,1.8304566666666666,4.770495,4.356605,6.283765476190476,1.92696,2.32069,3.94952,3.97677,4.77617,2.1203366666666668,5.2481,3.7662999999999998,3.592335,5.10025,7.028666,4.09103,2.3923975,2.691126666666667,1.8108833333333332,4.078625,5.789680000000001,1.52647,5.33325,4.25956,6.1345149999999995,0.5539893333333333,5.005256666666667,3.81705,4.75257,2.560835,2.80521,6.54445,9.373716666666667,5.034,2.2462666666666666,2.2462666666666666,2.2462666666666666,6.1308,4.81827,4.358355,3.118525,2.868935,2.6178176315789474,3.956955,5.1784,2.552445,2.00434,2.552445,7.328374999999999,4.455503333333334,4.5914271428571425,6.7631,4.5914271428571425,4.5914271428571425,3.413237142857143,6.26558,5.800307,3.222922,3.222922,2.474205,4.210625,2.832875,3.5061,5.898425,5.898425,5.898425,7.07702,3.42348,3.33415,3.53578,3.37322,1.264475,6.994713333333333,2.53921,4.571395,3.22518,12.907681333333333,4.59239,5.545265,6.92907,2.653138333333333,3.327425,1.1318066666666666,5.545265,3.4882,1.581465,1.581465,3.16275,4.968355833333333,1.7106325,4.477196666666666,0.790343,1.4229633333333334,0.790343,1.9141225,2.5009755,4.882463,3.306985,1.4229633333333334,3.092825,4.7289925,1.1133925,3.45472,4.408315,2.22305,4.346988333333333,2.423985,2.93721,2.9455,0.9312340000000001,3.71001,3.017075,1.94956,1.3273466666666667,2.7498966666666664,3.60205,2.739525,3.55263,1.3011066666666666,1.3011066666666666,1.3011066666666666,3.43556,2.5777,2.5777,2.762955,3.497205,2.3482833333333333,1.2034025,1.2034025,2.551615,4.3311025,0.8114725,1.567,2.850205,1.2876616666666667,2.854661666666667,0.9312340000000001,0.9312340000000001,1.9148566666666667,0.9312340000000001,3.3262583333333335,0.69419,3.3262583333333335,5.712469166666667,3.236285,2.3585866666666666,1.6855680555555557,0.682585,2.3681530555555557,3.717155,2.3681530555555557,0.9451055555555556,3.024165,3.96305,3.88561,3.829155,2.720595,3.660265,2.0048733333333333,0.9581705555555555,0.550385,0.9581705555555555,0.40778555555555557,0.9581705555555555,0.9581705555555555,4.509795,4.64254,6.48245,3.438655,4.550355,4.854895,5.2964,3.47673,4.392735,1.2324428571428572,3.250586666666667,3.8476216666666665,3.826095,1.44634,2.9004100000000004,4.28955,3.77334,4.040095,4.1382,3.74587,3.84982,3.26134,4.674495,2.4893266666666665,6.00435,3.65132,3.963125,5.383373571428571,1.1395165714285713,2.268485,3.457045,7.14001,4.69097,4.047825,3.07015,4.41272,8.0558,3.6495333333333337,2.94796,3.4421999999999997,5.95845,4.036055,5.41975,5.27155,5.1942,3.08429,5.41115,4.56245,3.4039333333333333,3.884635,3.0686633333333333,2.2355225,1.9517166666666668,4.85912,6.553,5.58145,5.9332,4.12749,4.57125,5.9437,0.5141461538461539,7.44406,3.839205,4.22012,3.781275,4.86748,4.118725,3.0354566666666667,2.60075,1.3677766666666666,0.5769153846153846,1.895634,2.947226666666667,4.224245,3.6467,4.950605,3.786345,11.064168333333335,3.742565,3.785015,2.929605,0.7390249999999999,5.891123333333334,2.918646666666667,1.5238233333333333,4.44247,5.454566666666667,2.53592,8.25287,4.76182,3.662666,3.662666,3.662666,4.92415,8.62833,3.36062,3.2616,3.2616,3.475015,9.3914,1.0538675,5.46505,4.648445,4.08416,2.738113333333333,2.1659866666666665,4.513325,3.94377,6.439,5.699226666666666,3.81632,2.77413,3.75724,4.2242475,3.5489625,1.4256,3.3663666666666665,6.12027,3.4812375,5.15505,0.9681025,3.736966666666667,2.46642,2.5637166666666666,1.7858,1.7493100000000001,2.1228000000000002,6.43085,2.20585,4.160845,5.98325,1.8525839999999998,4.595695,3.796985,4.78196,2.5820266666666667,2.372445,2.82413,3.891785,3.8258258333333335,3.8258258333333335,1.1952375,1.5613133333333333,2.861273333333333,4.304328666666667,2.2465769090909093,4.789329333333333,1.714106,2.695743333333333,2.0708166666666665,1.83216,1.83216,5.13365,7.298018333333332,2.06433,2.977453333333333,2.2593525,6.18685,3.088895,0.77416,2.8572,0.77416,2.99992,3.538135,4.617955,6.22895,3.6779,4.907344999999999,5.8198,2.44437,1.9136633333333333,2.802403333333333,2.1393833333333334,6.30325,4.12385,2.60472,4.225485,2.77758,4.494375,1.1121775,1.109234,1.9164766666666668,1.50004,2.5123133333333336,2.6518533333333334,2.2197666666666667,3.5372,2.63725,4.573985,2.5307133333333334,2.68225,2.7334633333333334,2.3026933333333335,2.8466799999999997,2.65251,1.8956633333333333,2.46362,3.516205,4.44363,3.54456,4.07408,2.9039533333333334,2.1591125,2.1254725,1.3956983333333335,0.33755799999999997,0.17853152173913045,2.0786933333333333,2.3202266666666667,0.17853152173913045,4.650225688405797,2.33095,0.17853152173913045,6.031744930555556,2.5324850000000003,6.12754,3.310455,3.6743666666666663,2.1040233333333336,2.9008266666666667,2.2507775,4.35852,3.3047866666666668,3.11279,0.4440289473684211,3.953968333333333,2.561578947368421,2.715775,1.826865,2.582575,4.042855,2.597815,7.94993,4.98133,3.739115,3.60005,6.05858,5.26385,1.74775,3.9491941666666666,2.080335,1.84089,6.03304,8.72374,1.2538733333333334,1.982,3.51191,2.574865,2.895545,3.042645,2.841705,4.26532,2.384485,3.08306,3.47864,3.17399,7.46867,1.4850633333333334,2.10223,2.942,3.20536,1.7396200000000002,3.281045,1.57019,3.611945,3.459645,7.11859,3.359015,8.7652375,3.63071,1.59359,1.7663666666666666,2.9615,5.26754,1.5861725,1.5732466666666667,5.6441,3.480715,3.94092,2.506025,2.03004,3.052045,10.239675,4.29092,6.388,3.42328,2.158435,2.050875,2.40652,3.120305,3.57932,1.781,1.4903766666666665,2.43831,3.506935,1.705725,3.20801,2.622735,4.30031,3.57044,3.10989,1.4738566666666666,2.56655,1.3251600000000001,1.3362859999999999,1.668305,3.34827,3.573185,3.65909,2.339935,3.649865,3.88146,2.94693,1.4091879999999999,3.40882,3.6062775,3.18458,1.77198,2.95273,3.43614,1.3705975,3.4252,1.6676166666666665,3.804525,3.97648,5.4871,2.630995,3.67117,1.79449,4.15763,4.98707,1.781185,1.092842857142857,4.148499999999999,2.28245,4.617415,4.046635,3.071755,4.550595,4.4796,1.8709533333333335,5.5239,5.2622925,6.5647,4.71556,6.6073303333333335,3.68372,1.7065333333333335,2.6491700000000002,4.8926,4.761495,3.0264133333333336,7.341914,1.2913757142857143,3.6184333333333334,2.120975,1.733258,2.3048366666666666,2.7503166666666665,0.4152221428571429,2.3370466666666667,3.161433333333333,3.68254,2.59991,3.3269566666666663,2.1244533333333333,2.5026433333333333,2.2174675,8.965515,5.0652,1.5323639999999998,4.908665,2.5097312173913044,0.6790854102564103,2.726046666666667,8.144934666666666,1.7020700000000002,4.5037,6.6510283333333335,1.602545,1.572495,1.4513,5.2566,3.19834,4.495285,4.0991025,2.4169966666666665,3.85239,1.3007440000000001,3.1153506666666666,4.381535,4.069525,4.855165,2.7802,4.621235,4.74106,5.1382,5.468,5.91195,4.92608,4.34698,4.55973,1.664082,1.9154175,2.991865,3.372065,1.2501777777777778,4.41161,2.5036366666666665,2.9303666666666666,4.088065,3.25841,2.7712233333333334,1.6631333333333334,3.3189566666666668,2.7192075000000004,2.8706099999999997,2.8948733333333334,2.008226666666667,1.9957175,2.3555,4.371665,4.166435,3.97811,4.33937,3.467285,2.12545,3.06756,4.983645,3.7443666666666666,4.628725,4.26955,2.210775,4.454741666666667,1.7567766666666669,4.21536,5.172005833333333,6.197838690476191,4.3851,4.29153,5.5855,3.3756,4.189911666666667,4.69939,3.34619,3.9091595000000003,3.44092,1.369365,3.221285,1.713225,2.142175,4.527615,5.391305,3.9091595000000003,4.26097,3.32911,1.5147483333333334,3.745115,2.050335,2.747063333333333,2.114705,2.74334,1.6398713636363635,1.6398713636363635,1.6398713636363635,0.5576063636363636,0.7894122222222222,2.1308422222222223,1.1351075,3.39299,1.1913233333333333,4.105425,5.0657,4.71692,3.289195,4.083575,3.250315,4.82512,1.6412425,2.970115,2.408285,3.194165,5.749768,4.132065,5.22145,3.98143,1.0009975,2.22917,1.4158366666666666,3.65642,3.89791,4.120375,5.9294,4.589415,4.80598,5.27265,4.193675,1.78488,1.3855366666666666,5.577843333333334,0.9818455555555556,1.2918633333333334,2.892076666666666,8.27789,2.98785,3.59763,3.620545,5.4823925,1.6230425,0.9844383333333333,1.5091475,3.172125,3.38342,3.983505,3.66804,1.89048,6.591165,3.0473866666666667,1.06294125,5.1707,2.89879,2.7394133333333333,2.3147233333333332,3.6074333333333333,5.93062,2.9776900000000004,3.2644333333333333,3.5591666666666666,3.0179066666666667,3.139886666666667,2.8987133333333333,2.820385,1.92817,5.6424,4.77744,4.522625,1.0489388888888889,0.7189949999999999,3.648066666666667,2.3440166666666666,1.10948625,2.77788625,4.90672,5.03685,7.009259999999999,4.85657,3.6733,1.575064,3.445905,3.729605,2.8763666666666663,2.5963834285714285,4.191125,2.8465900000000004,4.802977333333334,0.86846,5.75715,1.592474,4.574725,4.42078,1.922575,0.8867225,2.845025,0.40713800000000006,3.421045,6.3969,5.84085,2.92126,1.418792,3.6161,0.76606,2.38862,0.76606,3.949635,4.48659,1.29917,2.1055775,5.147606666666666,1.8038566666666667,3.80905,4.23887,3.87059,1.154066,1.60882,3.981285,4.87875,4.98264,2.938136,2.07851,3.12235,1.62135,2.56675,1.6934525,1.9601825,3.473575,1.342888888888889,1.342888888888889,3.740225,4.9877,8.05415,4.95857,8.70257,2.13267,3.726975,4.00002,1.6786666666666665,3.6994075000000004,4.182785,3.364365,6.271,2.867205,2.51295,2.944236666666667,3.864685,1.08212625,3.969295,4.61441,1.3070433333333333,8.356273333333334,2.668625,2.934655,3.0180133333333337,4.04467,4.42201,4.117852916666666,2.6084166666666664,2.707606666666667,2.07804,3.6761666666666666,2.449215,2.19743,8.085380666666666,3.530533333333333,3.175473333333333,4.09635,22.93856377838828,0.68568,2.919105,4.473745,4.803375,8.38324,4.77158,4.182525,4.47688,7.698588333333333,3.487825,1.7047866666666665,4.998901666666667,3.535935,1.086374,1.086374,1.086374,2.33424625,1.69997,3.296165,1.5415675,2.926095,1.6708266666666667,2.449285,2.55367,2.81802,1.5415675,3.13162,2.497785,4.31639,4.960126666666667,5.06795,0.7924541666666666,3.35822,2.5638,5.1783,3.80813,2.726115,2.0953425,1.69963,1.920855,1.416962,3.7834,1.5533325,4.989205,11.400366666666667,2.9423600000000003,2.411005,4.890943333333333,2.9466666666666668,4.391033333333334,6.05745,2.11755,5.483643333333333,4.453265,0.9442383333333333,1.1544785714285715,6.530969,4.16147,1.9175475,3.84336,1.95349,4.95722,4.87007,4.77571,4.054215,1.334407142857143,4.132515,5.04575,4.73043,5.984698,3.802865,5.581,4.89843,3.968885,4.97982,3.219806666666667,4.688715,1.668095,3.645735,3.17345,3.53011,3.862695,6.27955,4.532245,2.445256666666667,3.3564333333333334,8.84356,4.81853,3.1380933333333334,3.572445,3.345625,4.51809,4.268035,4.70179,7.250661666666667,3.79121,2.7269900000000002,4.661561666666667,2.407275,4.689785,3.1144166666666666,6.5173925,1.6080916666666667,4.554455,4.35154,12.1488125,0.47093714285714283,4.75816,4.83685,0.6653685714285714,3.76586,4.16331,4.38662,1.02128,4.976465,4.77192,2.65231,10.002975000000001,3.3533000000000004,1.74589,2.316465,4.10147,5.9577,0.5544183333333333,3.79048,2.06023,4.80176,0.7598823076923077,3.98352,5.80225,5.72735,3.535375,6.527715,4.18523,3.6484625,2.48773,2.838896666666667,4.29801,5.10175,5.35625,5.2236,5.2867,3.2083600000000003,7.023475,2.9928,3.5194955,2.18601,3.649405,2.7667,1.5431033333333335,3.3565666666666663,3.4448000000000003,3.0559933333333333,3.8481666666666663,3.533333333333333,3.3836333333333335,2.7043233333333334,5.63175,3.255183333333333,3.63698,5.26485,2.6234433333333333,1.0660166666666668,3.448733333333333,3.0586933333333337,3.86449,3.4732000000000003,3.2149133333333335,4.687566666666667,1.9537566666666668,1.6282275,2.76528,3.72864,4.41788,1.09787,4.507835,3.07891,4.162766666666667,3.1811966666666667,5.2121625,4.209795,3.1223,3.69132,2.21186,3.857735,0.6744375,4.496235,5.16765,16.701945454545456,3.4349333333333334,1.0617566666666667,4.892395,0.64756,2.61985,4.42885,1.963405,1.35773,3.657225,4.58375,3.4775666666666667,0.7941933333333333,2.77298,7.57466,3.881705,6.0595,4.41503,4.38075,2.8982200000000002,3.6214666666666666,3.355066666666667,7.145248333333333,3.84194,5.4821,2.386235,0.44560888888888894,2.26836,3.303905,1.963125,2.359465,4.22268,2.7809500000000003,5.169,0.7094416666666666,4.79152,3.58207,3.137335,1.2387566666666667,2.6845966666666663,2.0476033333333334,4.910565,3.768705,2.16084,1.6875142857142857,3.838015,4.98243,4.99901,6.011101666666667,2.153826666666667,5.28765,4.906075,4.56731,2.2563,4.86269,6.25638,5.16905,2.69472,4.893905,2.74766,2.93614,3.9855,4.156115,1.387795,4.55813,3.209016666666667,2.9735366666666665,5.194143333333334,5.194143333333334,5.10335,1.7894919999999999,4.92646,0.99702875,1.821048,4.72223,2.52821,1.4541533333333332,3.172416666666667,0.878776,4.195333333333333,5.0677,2.94568,4.740815,4.00204,3.712905,5.66141,3.24414,3.2906433333333336,2.8834866666666668,2.4092366666666667,2.68995,2.8307033333333336,4.902685,1.4342123076923077,3.0342066666666665,4.35177,4.98759,2.331470416666667,4.184445,4.67475,4.973916666666667,3.4303000000000003,5.24095,5.14335,5.35055,4.9328,3.848955,3.35127,3.542035,5.0063,5.7436,4.95762,4.96854,4.671585,4.63574,0.7323683333333334,4.93681,5.1408,4.197265,6.932815,4.411615,4.350765,4.49227,4.47395,3.70305,3.764435,2.1933237500000002,4.483155,2.1419325,1.3695957142857142,4.090445,2.106666666666667,2.4816933333333333,3.4589933333333334,3.2177133333333336,3.442855,1.8050033333333333,2.1382675,3.9573,3.90612,1.88092,1.88092,4.19349,1.935772,3.0907766666666667,4.51057,3.47537,3.48506,1.6292166666666665,2.126235,3.505805,1.935435,4.13109,4.51245,4.35891,4.083905,8.173200000000001,2.599125,3.662035,4.650735,4.18396,3.11035,4.19829,4.198185,4.518885,2.124355,2.7451833333333333,4.75581,4.02227,3.764225,4.27917,1.7698125,3.58542,4.748235,4.602365,4.37649,3.6375625,3.6375625,3.4381775,4.357065,4.77281,4.22415,1.75773,8.1318,3.880315,5.22575,4.29411,4.2528,4.75309,5.2805,4.23264,4.680795,3.352235,5.127,2.06212,5.13685,5.884631111111111,5.20895,0.774939,4.7041275,1.13442,5.1651,4.565515,4.923165,4.492905,5.3645,3.541933333333333,3.541933333333333,0.872725,2.1526175,5.27005,3.275565,4.243725,4.252195,5.17585,3.25039,4.297015,1.3452816666666667,3.21913,1.60572,1.2267275,4.592415333333333,0.8489639999999999,2.7143433333333333,3.22697,1.24428,2.2063625,2.6805566666666665,1.2576683333333334,6.0307,1.6207275,2.2946966666666664,4.359215,2.37725,2.9754400000000003,4.37239,4.762725,2.42897,3.0366466666666665,3.8533000000000004,1.653098,2.155600833333333,4.755875,0.6218271428571428,2.56521,2.795113333333333,3.29156,2.921526666666667,1.3796542857142857,0.8598833333333333,2.3538166666666664,4.24397,1.3455300000000001,2.0421,1.2055,5.9541941666666665,2.2023275,4.541125,4.80251,4.36064,4.89205,5.2676,4.243665,4.2771,1.5007616666666665,3.746033333333333,1.868054,2.62076,1.1435328571428571,4.39918,2.3165725,5.998123,3.85911,3.705925,1.516514,7.01985,5.0048,1.478345,4.07561,3.002555,3.76434,3.737455,1.93413,1.93413,3.5022,1.4332566666666666,1.4332566666666666,2.2563,2.5669,2.0952825,1.2689166666666667,3.5538000000000003,1.0752475,3.0558866666666664,2.48355,1.9977175,1.5346966666666668,2.273705,2.3040875,0.27453,2.4437175,1.1255616666666668,2.3612266666666666,2.0708166666666665,2.42009,1.0531855555555554,1.16662,3.7808333333333333,2.9633933333333338,1.93413,1.8320075,1.5507233333333332,2.5214933333333334,2.544496666666667,1.8676860000000002,2.50623,1.10185,3.3059933333333333,2.93914,2.41827,1.45645,1.13602,2.6873,1.13602,2.6873,0.63235625,0.63235625,0.4820744444444444,2.3033975,2.3630066666666667,0.63235625,2.234365,2.350023333333333,2.2261275,1.8000825,0.7699511111111111,0.63235625,0.63235625,1.6187719999999999,1.6187719999999999,2.0796275,1.8320075,0.63235625,2.34564,0.4565484615384615,3.0008366666666664,1.8776633333333335,2.958576666666667,2.65076,2.65076,0.377935,0.377935,2.2563,1.92117,2.21726,2.00486,0.377935,3.6970666666666667,2.60895,1.675404,0.61585875,1.675404,0.61585875,8.44714,2.269233333333333,3.928266666666667,2.6194,3.1680466666666667,2.9736100000000003,2.8136799999999997,3.1796166666666665,2.1862075,1.76232,2.78302,3.6495333333333337,2.3665333333333334,1.6187719999999999,2.418228571428571,2.418228571428571,2.7129,2.3089775,4.219915,2.3465866666666666,3.3857666666666666,2.66504,1.62018,2.3789825,2.43534,0.8149272727272727,1.5235875,3.449005,1.8962379999999999,3.2188833333333338,2.6246933333333335,2.6168,3.7106999999999997,1.5763983333333333,3.4445,3.32827,4.162733333333334,1.3000019999999999,0.33300620689655175,1.2917828571428571,1.2917828571428571,1.0839122222222222,3.1896833333333334,4.0069,2.6622266666666667,2.13099,2.13099,2.1164275,1.6676166666666665,1.04528,1.6635466666666667,1.6635466666666667,0.63235625,2.2563,2.7662666666666667,3.6290666666666667,2.48355,2.12864,2.12864,2.12864,1.0675233333333334,1.4988428571428571,1.4988428571428571,2.417065,3.3538333333333337,2.6886229482323234,4.377185,2.5387,2.5510566666666668,3.61592,3.90938,7.3572299999999995,4.224875,4.15146,3.8338,13.1246475,4.64454,3.620335,0.9554675,3.944435,3.059635,2.37631,3.702815,5.1855,8.722638,6.4587,0.4913882352941177,4.187235,2.868385,4.316275,2.507325,4.416425,4.13061,4.454665,7.8969000000000005,3.44858,3.89713,3.75578,3.3781427272727274,7.927575282051282,3.2796466666666664,2.58273,3.80033,3.826375,4.605635,4.18394,6.462873,5.2122,1.344632,4.52423,0.86098625,4.94381,5.3518,4.08777,4.38144,5.8181,3.198125,5.38155,4.0322,8.81842,3.972995,5.031966000000001,3.8226999999999998,4.88051,2.90983,0.835295,0.835295,3.467295,4.05097,2.07805,2.120535,3.980805,4.064225,3.70485,2.041505,2.403485,3.339185,2.709443333333333,1.2047175,4.055165,4.74887,8.96347,1.919624,4.014775,4.01033,4.00234,3.00712,7.64377,4.240635,3.5825,2.9504633333333334,3.89555,3.7129,3.2573933333333334,3.02529,3.820465,3.76523,4.531975,4.28753,0.3897273333333333,1.4583633333333335,2.35566,1.7073675,4.82998,3.86894,2.5338966666666667,2.3972275,4.345675,3.89676225,2.2286275,2.661945,0.909262,2.280895,2.421953333333333,2.421953333333333,5.4123,1.9443525,2.970993333333333,2.2713933333333336,2.081116666666667,1.80016,3.20874,4.39111,4.356,4.63097,5.1147,4.861125,2.90322,2.71811,1.96894,4.84405,5.70285,2.4819466666666665,2.9900533333333335,2.08407,2.9221866666666667,4.105883333333333,2.65942,5.1108,3.66816,3.42889,4.706915,2.92566,3.582035,4.422835,2.3885066666666668,2.3225633333333335,0.41246214285714283,3.377266666666667,2.60793,3.45423,5.66165,4.68004,6.1416474999999995,2.1071625,1.634565,2.91499,5.31505,6.07205,5.3603,3.4504333333333332,2.2518333333333334,3.66025,2.4988633333333334,4.297245,2.31587,2.11446,5.3976,5.1177,5.2112,1.7985175,1.9031625,1.097712,1.097712,1.092164,0.9211157142857143,0.706286,1.8863077142857143,4.1371,11.515561666666667,3.98219,4.4264,4.079795,5.974857500000001,2.64394,1.6600933333333332,3.5632949999999997,3.02577,4.17075,2.5876466666666667,2.6455366666666666,3.12284,3.24883,2.5263733333333334,3.4653666666666667,3.037506666666667,3.001393333333333,3.5643999999999996,3.562333333333333,3.0187866666666667,3.0549700000000004,3.3369,2.6680766666666664,3.024566666666667,3.1377066666666664,2.812656666666667,3.6724,2.20848,5.34476619047619,3.285496666666667,4.429295333333334,3.2521166666666663,3.2482966666666666,3.6903,2.89275,2.8083333333333336,3.1832666666666665,3.27244,3.6127333333333334,3.2035733333333334,1.8964675,2.7473899999999998,2.7440366666666667,3.02205,3.02205,3.2866133333333334,3.4921333333333333,2.71862,2.6373599999999997,3.3348666666666666,4.296966666666667,2.70978,2.744375,2.79913,2.83189,4.667914166666666,5.04735,1.6899,3.4274,3.7213,3.442776,3.4357666666666664,3.6656333333333335,3.5958,2.7584199999999996,3.4025559999999997,2.1103,2.921655,3.6690666666666663,3.676933333333333,2.56119,2.63595,3.9143000000000003,2.849956666666667,3.169506666666667,2.47344,1.2819749999999999,3.5566333333333335,2.7660533333333333,2.0146333333333333,2.545075,3.310756666666667,3.1365200000000004,2.09196,5.733587333333333,2.535703333333333,0.990515,4.693555,2.0252233333333334,1.8016666666666667,4.352595,3.96184,3.348415,2.534845,1.6988825,3.026505,2.91681,4.01642,0.48131399999999996,2.156265,0.48131399999999996,2.3237,1.6988825,2.698215,3.833015,2.630575,3.324625,3.73102,0.5397053333333334,2.8719533333333334,0.9477525,0.46002,4.476495,4.054825,4.87656,2.546375,5.60115,4.331855,3.761685,2.2373,4.011166666666667,1.8738199999999998,6.4086,3.78295,4.04501,5.17815,2.855233333333333,2.0409633333333335,2.0281,1.4571983333333334,1.819685,0.99342,0.99342,4.380235,2.7250099999999997,6.480504999999999,2.292215,1.76128,2.25741,2.41640925,2.513525,3.934015,4.40384,1.890315,2.26964,2.41640925,3.801305,4.05357925,2.38523125,5.6578800000000005,2.292215,3.3422125,3.41749,3.3409,5.1414,4.78169,2.0790275,2.031515,2.2857525,3.235305,4.95936,5.05065,1.89659,3.85348,1.6005500000000001,1.55128,5.5223,10.495571666666667,2.1012333333333335,2.3807,2.248343333333333,4.5205,4.43736,1.9855975,4.721495,4.100705,2.74968,39.53452448809524,2.9250933333333333,3.4064333333333336,0.48233666666666664,4.86855,2.268003333333333,0.9535366666666667,4.38147,3.85513,2.004095,1.8279825,2.524366666666667,3.918825,1.3531514285714288,3.0035613333333337,4.088875,4.95606,0.915487,4.91947,4.662385,4.987075,2.8167899999999997,1.4363725,3.7528300000000003,4.427885,4.4174,3.344285,3.70083,4.43473,12.159921060606061,2.9931900000000002,2.845025,4.451405,2.93393,4.33834,2.627635,2.845495,3.26233,5.43385,5.3393,5.3503,5.06025,2.39902,3.61043,4.47197,3.51622,4.903335,4.74668,0.10736489130434783,2.34443,3.274255,2.542485,1.2089516666666666,0.5485766666666666,0.5485766666666666,1.880565,2.71223,4.156865,1.341734,2.8701133333333337,4.228375,2.690675,4.2907525,0.55683,4.52699,3.782065,4.601145,4.00785,4.930585,1.19123375,1.17626375,4.009566666666667,2.8892399999999996,2.98896,4.27623306060606,4.46673,6.3673850000000005,5.3353,5.26285,3.30968,2.0910975,1.5334416666666666,5.569,0.31715133333333334,3.29881,3.70921,3.9041,14.48774,1.919625,2.81395,0.75091,4.315065,8.038195,2.98342,2.010213333333333,5.4812,3.29327,1.0715511111111111,4.590965,2.747135,3.18759,4.781745,3.4839410277777776,1.1051975,8.092761666666668,0.72619625,4.894955,3.3416952777777778,1.4356125,2.060479361111111,3.15932,3.15932,3.766465,4.436932416666666,1.43635,2.45835,2.55744,3.501745,2.81426,2.73834,3.29095,3.296185,6.278037333333334,6.1808,3.926515,3.188635,5.1155,4.35847,3.853045,3.24724,3.502525,4.516235,5.28885,2.475276666666667,2.699533333333333,1.5714766666666666,2.3049766666666667,2.259445,1.539355,3.4833,3.659133333333333,3.3701666666666665,3.2270333333333334,2.76878,1.4722,1.7783300000000002,0.4447563636363636,3.2135833333333337,1.3142285714285715,1.44081,3.290343333333333,2.5835133333333333,2.64166,0.94575625,2.3497575,2.534615,3.132055,3.500165,5.96315,3.68906,3.15605,2.175946666666667,3.31088,4.584095,2.522085,2.97104,1.84167,3.75718,2.791215,3.76592,1.3348266666666666,0.5997,2.24034,3.30874,3.0803,3.79557,4.79302,8.703949999999999,3.4987999999999997,2.46833,1.8550066666666665,1.827582,1.827582,2.55082,2.4701233333333334,4.98907,4.93331,2.83397,4.941315,4.19622,4.283985,3.3096491666666665,4.387385,7.915545,2.60575,0.500629375,3.0637133333333337,1.3617,1.02318,1.7236666666666667,0.9260550000000001,2.144005,4.93315,5.26655,6.15483,1.26767,6.97919,2.08248,1.54178,2.6140433333333335,4.687855,3.149016666666667,2.699425,4.14822,3.2124633333333334,3.7585333333333337,3.0103033333333333,2.950476666666667,2.9002499999999998,6.79214,2.519785,3.817815,3.7256283333333333,3.9268858333333334,1.7128833333333333,1.2147225,4.227245,3.0628233333333337,3.1729333333333334,5.3846275,3.24411,2.25851,2.4232675,3.17575,3.691933333333333,2.5943866666666664,4.534313333333333,2.9334633333333335,5.1201,2.511227,1.91075,5.0067,5.2959,4.68513,4.3125,1.7268766666666666,2.34515,2.173035,3.331535,1.43638,0.8069333333333333,2.525078333333333,2.0432275,1.995115,4.18597,0.8458749999999999,5.6288374999999995,1.6918425,0.7577418181818182,3.7603333333333335,4.26254,0.6930285714285714,3.2038915,3.17682375,0.8598833333333333,4.559805,0.18397952380952382,0.18397952380952382,0.18397952380952382,0.18397952380952382,0.18397952380952382,0.18397952380952382,2.030954,3.749815,2.030954,2.030954,1.7926566666666668,0.18397952380952382,0.18397952380952382,3.269686666666667,2.89171,3.546985,3.350075,2.41958,3.525865,1.5688,1.743494,3.5489625,1.5391400000000002,3.2977900000000004,2.721744888888889,5.9810533333333336,4.621815,4.24775,5.31925,4.55833,4.582025,4.820405,4.486175,7.341290416666666,3.8509666666666664,3.6695333333333333,2.8104633333333333,4.628706666666666,2.6268333333333334,2.118375,1.8687166666666668,4.92131,4.845255,4.19929,5.3719,5.5831,4.618155,4.93132,0.7387454545454546,0.7071678571428571,0.7071678571428571,4.778545,2.3651666666666666,3.61607,1.023172857142857,5.59295,1.5684714285714285,2.356383333333333,2.6390599999999997,4.5912,4.5912,6.9901,5.15605,1.49315,11.91448,3.686866666666667,1.2404222222222223,5.2095,4.565325,4.144215,3.571685,2.60674,4.5300666666666665,0.7860466666666667,3.5574333333333334,3.6024,3.8504666666666663,3.2593033333333334,1.4578766666666667,1.4362133333333331,4.5625475,3.07516,3.0017300000000002,3.4301333333333335,5.3402416666666666,3.4086716666666668,0.779709,1.7414133333333333,3.1109833333333334,2.5148400000000004,3.6978666666666666,3.4098333333333333,3.425966666666667,3.8007666666666666,3.3808666666666665,2.2103800000000002,0.88213,3.0024033333333335,2.7969833333333334,3.70243,3.176005,4.20594,2.6128466666666665,3.595666666666667,2.742275,1.443462,1.65606,2.47509380952381,3.8437,1.922016,3.2222266666666664,1.8573000000000002,4.0147,5.210586666666667,5.098788000000001,2.388555,2.580575,2.671975,2.5804,1.572357142857143,2.519225,3.207939642857143,2.5239,3.721,2.928555,3.7560156666666664,3.34749,1.0115122222222221,1.2873925,1.737165,2.2444475,3.2922366666666663,3.511366666666667,5.12605,7.299245,3.26589,5.2696,4.37695,15.817268666666665,0.490909,11.745195,0.9458644444444444,3.33576,2.243646666666667,2.0413866666666665,2.92502,1.501598,1.4091879999999999,2.9032933333333335,1.389958,2.8500146666666666,2.299506666666667,3.269213333333333,2.3574800000000002,2.68097,1.6062033333333332,0.8069716666666666,3.305633333333333,2.473873333333333,3.3763,1.0675233333333334,3.7749,0.7617183333333334,0.3601361538461539,2.9348233333333336,4.57336,4.680565,4.837865,0.8813200000000001,4.03511,4.598975,1.1319175,2.8839,5.711233333333333,2.927765,3.791475,3.68408,3.845995,1.8052475,3.741245,2.776543333333333,2.889275,3.58399,2.58276,2.706715,3.707945,3.03678,3.6599,3.29943,3.314135,4.9275,1.5338833333333335,4.5409,2.2492175,3.669925,5.08112,2.1979425,2.9221266666666668,3.251936666666667,6.067625,2.4332433333333334,3.47575,5.6518,3.928266666666667,3.88923,2.087686666666667,2.7059,4.81157,3.625666666666667,4.689685,3.5109666666666666,3.14236,3.117153333333333,4.023633333333334,3.223043333333333,2.76195,2.768606666666667,0.4431777777777778,2.4888525,2.11724,4.869935,4.74362,3.17039,2.7401066666666662,3.4218666666666664,7.943965,3.6319237500000003,3.96774,3.3064466666666665,4.074565,2.80016,3.7187316666666668,2.6849233333333333,2.413065,2.8574699999999997,6.13635,4.715675,2.0476633333333334,3.314205,2.926435,2.853173333333333,4.75836,1.669398,6.306976666666667,3.955095,4.673305,4.098475,5.8858,3.58343,6.686451666666667,4.64896,3.882585,0.7098085714285715,2.426275,1.457815,3.0440066666666667,3.587035,4.539275,4.099025,5.78075,2.660833333333333,4.661895,3.2011333333333334,3.615866666666667,2.94627,5.15705,4.870685,5.24845,2.635076666666667,5.763156666666667,4.299105,1.5753683333333333,5.64735,3.565295,2.456045,2.15351,2.22336,4.72644,1.1985357142857143,2.3865266666666667,2.0750775,4.007235,4.67278,2.5652066666666666,3.5284333333333335,3.111704,2.5386833333333336,4.042575,1.350804,2.2853033333333332,2.2798666666666665,2.7771399999999997,2.4791833333333333,2.7175499999999997,2.627943333333333,3.915135,2.819293333333333,2.7749066666666664,4.107255,2.314555,4.209205,3.58424,1.4481733333333333,1.4481733333333333,4.62704,3.0608533333333336,1.790015,1.42219,2.471755,1.97465,1.34922,1.5270833333333333,0.652669,1.66085,1.5148766666666666,2.8831366666666667,2.417593333333333,1.7417133333333332,1.80661,2.352466666666667,1.58348,1.7845833333333332,1.8770066666666667,2.34653,4.01456,2.854885,3.4837333333333333,2.677825,5.4491499999999995,2.771325,3.99466,4.138818333333333,2.070595,4.02783,2.969825,1.915515,3.294425,2.172635,2.87705,3.55698,2.030645,4.799465,2.71478,4.12047,3.4689666666666668,0.8855411111111111,3.76697,3.73394,3.301095,3.49415,2.8779533333333336,4.97182,4.74268,5.3042750000000005,9.069579166666667,4.015935,4.47442,3.1642499999999996,3.728435,4.501975,2.41263,2.80673,4.37981,2.31729,5.76934,1.83857,2.65826,7.57801,3.025843333333333,4.180814,1.3330814285714285,4.52259,4.781485,3.0670966666666666,4.828695,4.886535,6.578900000000001,16.443729642857143,0.6276058823529411,1.0531855555555554,3.3833333333333333,4.26484,4.16373,2.1170575,3.40577,3.949105,4.97706,2.71304,4.96791,1.60204,1.60204,5.6624,0.7373645454545454,1.8251439999999999,3.014245,3.76257,0.37652846153846153,1.9631633333333334,4.517405333333333,1.1255416666666667,3.052963333333333,2.6669366666666665,2.93058,7.27019,2.4329966666666665,3.5947999999999998,2.0967033333333336,2.244946666666667,4.077695,3.19923,2.798755,6.764336,1.71886,2.961325,4.374475,6.886162499999999,1.7705666666666666,2.4184,2.5489566666666668,1.3950966666666667,2.866405,1.6760712500000001,3.847415,3.857695,1.41795,1.9223133333333333,1.9223133333333333,2.96213,5.78415,4.234345,3.689285,4.87105,4.482785,3.42484,3.72444,3.880065,3.562405,4.557886666666667,3.37193,4.26823,0.992345,0.348079375,5.3493,3.68737,2.50668,7.97882,1.3633066666666667,4.730433333333333,4.048735,0.3791533333333333,1.9314600000000002,1.29736,1.8441533333333335,1.6438533333333334,5.553615,2.99031,2.91857,4.68793,4.318325,4.607265,0.6033561538461538,2.047155,0.563437,5.5513683333333335,1.531584,4.92027,2.101635,3.37839125,3.175655,4.444245,4.502725,4.763455,0.9221727272727273,2.941945,4.171765,1.957825,1.7203325,3.53328,3.030305,3.65883,3.888195,5.438628571428572,4.63322,5.36975,2.8713466666666663,0.5958733333333334,3.4869333333333334,3.974285,0.7029792307692309,3.87224,4.24795,3.836215,2.687395,2.5459366666666665,5.47915,3.178115,4.09752,2.128975,3.9023,2.0021,5.04205,3.70272,0.6823823076923077,4.59407,3.9481,3.109835,5.15755,4.226635,2.6008,3.82152,0.638063,3.20356,3.8713166666666665,4.45134,3.3988,2.3451975,3.6160666666666668,2.3451975,4.71835,2.994125,3.4318000000000004,1.50086,3.233976666666667,2.1161275,4.27777,2.9389800000000004,5.40378,3.4073666666666664,2.91221,2.990206666666667,2.5307158928571427,2.5307158928571427,2.5307158928571427,2.3363033333333334,1.0171533333333334,4.517105,2.344813333333333,1.7004366666666666,3.7486333333333337,2.7604699999999998,3.1316133333333336,4.22093,5.172,3.59144,2.24409,1.90819,4.00713,2.08236,2.3497766666666666,2.90461,3.568415,2.150575,3.73266,2.817585,1.7809080000000002,4.350205,3.98108,3.989375,3.769195,0.7021911111111111,2.428853333333333,4.757915,7.317225,3.72366,3.05417,2.589,3.58748,3.511335,2.013475,2.08263,4.984345,2.3612425,4.503095,4.08775,4.33266,8.873216666666668,3.904655,3.92883,3.8107,4.64858,4.397,3.3622625,3.3622625,3.916255,4.123296666666667,4.33167,3.81343,3.95774,4.475475,3.86104,1.1410575,4.161595,4.170395,5.6235,7.7097299999999995,5.27315,3.5990159999999998,1.7397799999999999,1.5211483333333333,2.485725,4.582135,3.890055,4.97,2.9270033333333334,4.60438,4.892135,5.19465,5.22245,3.09388,3.931735,4.361575,5.5168,5.39895,3.938805,6.681841666666667,4.60533,2.2575366666666667,5.09755,4.324635,4.134495,3.797255,5.13075,0.8074427272727273,4.56311,4.478995,1.2987471428571429,1.413978,5.22785,5.2471,9.0345585,4.99876,4.81215,6.397,2.739735,2.7740333333333336,5.10095,1.72444,1.72444,2.797725,1.6817966666666668,3.006206666666667,3.5718333333333336,1.9078775,4.211178181818182,1.4757999999999998,2.31256,6.0696775,3.5317099999999995,3.421565,2.96494,3.83849,4.473115,3.013333333333333,1.0465111111111112,3.89823,2.567886666666667,3.861805,4.2896,3.5790033333333335,5.24615,5.2184,4.80798,4.745785,5.0601,6.58845,4.689995,3.222925,3.67709,1.9058925,1.9058925,3.69099,4.31618,2.19374,2.9210333333333334,2.2230539393939392,2.801493333333333,1.9763033333333333,1.9763033333333333,4.371265,3.38884,2.11671,3.64311,2.79705,1.78869,1.2260275,1.3227333333333333,2.64341,0.48988578947368416,0.9661577777777778,2.79257,4.3446,0.4354590909090909,4.341045,1.9683579999999998,5.5517,3.87506,7.566675,4.19635,5.317753333333334,5.03755,5.01255,4.02754,2.22386,1.9038,4.13355,2.995785,3.775185,1.5065833333333334,4.004085,4.96793,2.61417,4.5486,3.382155,4.81706,3.60813,3.962875,3.790085,3.23397,3.494925,4.261055,1.03175,2.880205,2.58648,3.33312,4.210275,7.47721,0.922212,1.54786,1.54786,2.05056,3.908535,2.815535,3.05135,5.1415524999999995,2.8587166666666666,1.17881,1.17881,1.17881,2.72841,3.206537,4.806875,3.04341,3.81213,3.275665,3.69613,2.92596,3.249023333333333,3.6843,4.243668749999999,2.8523625,1.34922,2.393275,2.8523625,3.49069,1.3708333333333333,1.8538266666666667,1.8101025,5.577324666666667,2.656695,5.925133000000001,5.577324666666667,3.268438,1.7202416666666664,1.7202416666666664,2.716495,5.35164,1.7202416666666664,2.09555,5.62847,2.002075,2.614725,5.05586,3.35972,4.44865,1.7145599999999999,3.46321,4.0619,1.8315966666666668,2.458725,4.105,1.7145599999999999,2.623835,2.04376,5.77982,2.57982,1.061874,2.565975,3.226415,3.532476166666666,1.99365,2.1744195,4.43282,2.1012686666666665,1.376325,3.079065,2.35019,3.020795,2.91398,1.9693066666666665,2.74601,2.09885,5.18089,2.357445,2.889035,3.094545,3.094545,8.196026666666667,1.1029066666666667,3.60232,2.476985,3.115145,2.14921,1.33722,1.33722,3.51283,2.07119,6.37065,2.125,3.020855,3.309565,7.14933,2.684205,2.38746,6.55226,6.55226,2.32691,1.52462,1.29242,1.29242,1.52462,1.9573266666666667,1.2887233333333332,1.12927,1.63615,1.49048,3.597135,1.90225,3.50681,3.07052,2.939875,2.72215,2.800285,2.59206,3.215445,3.215445,5.45925,2.442575,2.73579,2.914055,2.86459,2.54025,2.545795,2.550505,5.3905425000000005,1.7846175,1.6837903333333335,1.322632,2.353820333333333,5.44707,4.059177,3.406575,3.12199,1.6837675,1.6837675,1.6837675,4.34151,2.705215,1.12927,3.04041,3.188385,1.39468,5.428985,3.2206599999999996,5.82807,3.63517,2.42383,3.588405,2.92214,2.4188,3.243935,4.40957,3.97424,1.99472,2.555645,2.92301,2.81699,5.78172,2.14791,3.23677,2.49172,6.05009,4.4435,2.24398,2.539305,5.76274,5.33317,5.49081,5.02528,1.172226,1.172226,2.10594,2.10594,0.5785,5.07401,3.79572,5.044,4.23045,5.26815,2.046195,4.3353649999999995,4.3353649999999995,1.800425,3.530845,3.15122,1.0785040000000001,4.73475,3.263805,3.197005,2.58607,4.48264,2.65711,2.195765,3.34562,2.666865,2.763365,4.92188,2.655455,1.9685,3.885865,5.77065,6.16513,4.8025,2.57873,2.78985,1.993785,5.81143,2.54606,3.53046,2.38459,6.72423,4.39837,2.70098,3.19466,2.13741,4.69627,2.40649,2.55255,2.673085,7.21053,5.00303,3.343695,2.236695,2.6387,6.02826,2.770915,2.43357,5.82523,2.83854,2.729285,2.282225,3.07709,1.9402666666666668,2.0205,1.9759066666666667,1.8141433333333332,2.1247233333333333,2.1331633333333335,1.668305,2.1050166666666668,1.81838,1.9402666666666668,3.99343,4.11014,2.01033,1.6190725000000001,1.6190725000000001,3.7190833333333333,3.7190833333333333,3.0380233333333333,3.0380233333333333,2.65764,1.911165,1.851565,3.83062,2.2640575,2.2640575,2.4255525000000002,2.4255525000000002,2.76713,1.93371,4.39908,2.37789,3.13591,1.9455566666666666,1.9455566666666666,1.615955,3.99812,6.26184,1.3708333333333333,4.60685,1.9693066666666665,2.063215,4.30152,3.105085,2.05333,2.3862,6.74787,2.226845,5.71055,3.26579,3.43785,2.97635,2.67179,5.11452,3.6977,1.638635,2.6541084615384616,3.01547,6.44067,3.472645,1.493592,1.493592,3.88082,4.80417,4.91523,5.05138,2.85701,2.8721,1.7361,2.95026,1.84299,2.725375,1.806905,0.7282919999999999,0.7282919999999999,0.7282919999999999,2.2461308333333334,5.1078133333333335,2.2461308333333334,2.17816,3.70756,1.652755,1.982505,4.413,3.85943,5.20871,1.5817466666666666,5.28542,1.5817466666666666,1.5817466666666666,2.14218,1.60281,1.823435,5.65194,1.823435,2.48082,4.28727,2.074345,1.989615,2.59878,3.059746666666667,3.491639166666667,3.085383333333333,3.79653,1.4520099999999998,4.722385,0.7936736363636363,4.393845,4.5999475,2.3071825,2.3071825,0.7162227272727273,3.6273999999999997,2.703056666666667,5.62485,4.8924,4.165535,4.79756,4.483235,4.25783,5.0682,4.1517,4.312255,3.94588,3.89468,4.76569,5.28105,3.228515,3.422055,4.160855,2.6290533333333332,1.47378,4.312325,3.76205,3.98902,1.6805428571428571,3.790595,4.22963,6.4987675,1.3905675,4.677135,4.7477,1.992775,2.05478,3.21575,3.360715,1.7628,1.493592,3.982785,4.23227,2.482245,4.382435,2.91611,1.0795400000000002,3.268993333333333,1.3116,3.107153333333333,1.6557199999999999,3.098933333333333,1.849515,2.57286,4.602795,4.30575,4.46289,3.160695,2.213685,4.90793,4.33847,2.88236,5.2913,4.18653,2.6741833333333336,6.3078,4.23704,2.8959133333333336,2.3509933333333333,2.774835,3.057726666666667,2.7528333333333332,2.8235966666666665,4.29994,4.065015,3.749815,2.47239,2.5587266666666664,2.4810166666666666,2.7573133333333337,2.4618166666666665,2.38763,2.5742166666666666,2.1717025,1.52133,3.0731786666666663,1.195885,2.0685925,1.8158325,2.52555,1.6189575,1.9503875,4.10227,5.417,1.91464,4.20909,5.0658,6.82597,2.1521666666666666,1.515598,6.59565,3.926215,4.518915,4.092855,4.094855,2.00644,3.41175,2.3814175,2.876035,4.53306,0.7056883333333334,4.1018,1.8547500000000001,0.7731354545454546,5.21395,4.65133,3.88821,1.934567857142857,4.493845,3.57095,2.77783,2.65568,2.39492,2.0103133333333334,0.593567,3.2378400000000003,3.109925,5.2808,2.471935,1.9427825,4.508855,0.94827,1.828,1.828,2.753205,1.828,4.513625,2.710775,4.71897,4.13217,6.1264,13.346309999999999,3.28996,5.2628,2.798335,4.633275,2.973335,6.146990000000001,3.3483,4.15062,5.0656,4.092105,1.4163816666666669,4.874285,3.026733333333333,2.9015,1.103441111111111,2.1784475,3.77492,7.254791666666667,4.283175,2.5669,4.51329,3.5022,4.315,4.973595,4.327425,3.080865,2.863933333333333,4.18561,6.0355,2.41225,4.65286,2.0587975,2.0587975,3.06265,4.19341,1.04711625,4.111063333333333,2.517975,4.30439,2.55631,2.1446533333333333,2.6419099999999998,1.9750866666666667,0.6833778571428571,3.24032,2.6680266666666665,4.924135,4.410255,0.250310625,5.1173,4.941285,4.27806,7.098986666666667,3.276006666666667,2.8876066666666667,2.3021933333333333,3.0193366666666663,3.2895633333333336,1.3861766666666666,2.8484233333333333,3.0557533333333335,1.60954,3.1415333333333333,3.28297,2.8927899999999998,3.496066666666667,1.278401111111111,4.35039,2.27757,5.1747,4.783615,3.81045,1.58856,2.3673800000000003,1.3164325,1.92776,1.3164325,4.529735,3.5464333333333333,1.629908,2.3351825,3.952035,3.758405,2.841105,3.839445,0.3585435,1.39260875,3.60555,4.41416,4.90109,1.87475,2.88601,3.1500566666666665,2.7007999999999996,3.240935,2.994015,4.443025,2.278155,2.449733333333333,3.0040666666666667,2.6020266666666667,2.86956,5.12715,2.00349,4.730285,3.7350491666666663,6.01675,7.6318025,0.7716999999999999,0.886552,3.67621,6.571462500000001,1.9487860000000001,3.43106,1.6316066666666666,1.6316066666666666,3.379595,0.4672766666666667,3.600675,4.67852,2.611075,4.101085,3.18979,2.524445,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,2.042965,4.29169,5.6770966666666665,3.957806666666667,5.266235,7.0389816666666665,3.0874,2.5818233333333334,0.8572466666666667,3.58927,1.175085,6.8776383333333335,4.295814999999999,2.452265,1.175085,3.45504,3.11189,1.5838,5.749015,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,4.7299,1.7762825,4.584275,4.76653,1.8675080000000002,4.807435,4.69106,5.3549,4.592381666666666,3.7112382142857143,3.331415,4.64743,2.3355225,5.70443,4.23374,0.8041785714285714,1.38635,1.4450714285714288,3.7137,3.7137,3.00161,3.760235,5.03905,3.64853,4.53117,3.23436,2.14585,0.6531685714285714,4.069955,3.286045,2.710955,4.11342,3.340945,3.1158375,3.69415,4.132085,6.685885000000001,3.962115,4.64109,5.63945,4.64671,1.4464857142857144,2.970665,4.8694733333333335,35.23825867171717,1.4518983333333333,4.447105,4.201055,4.42423,4.09863,4.62183,5.17065,0.4097490476190476,4.98778,4.17839,2.13964,2.024445,3.94891,1.5861725,2.42144,2.41176,1.75813,2.71678,2.544496666666667,3.240695,3.64966,0.606863076923077,3.751455,3.7261,0.3690294736842105,2.5644,3.036265,2.633925,3.787125,1.917635,4.53948,3.926155,3.13535,3.723615,3.234205,4.67669,3.03136,4.197965,2.32741,4.8694733333333335,3.725655,3.89916,3.258685,1.789248,4.608945,3.513455,7.633236666666667,3.17138,4.702145,6.4247325,5.060956,2.31502,4.76144,6.7220200000000006,7.7430520000000005,2.25585,2.571315,5.0043,5.74743,4.24868,4.38342,5.31055,2.40372,1.9434825,2.5525,60.21308822399135,5.11275,4.55792,2.668025,0.9811460000000001,3.1746833333333337,2.86164,3.3894333333333333,0.8967977777777778,4.444725,0.8172277777777778,7.946943214285715,2.08236,3.273263333333333,1.7524760000000001,2.74011,2.5258833333333333,2.9850333333333334,2.4906,2.2593433333333333,3.2664000000000004,1.5643933333333333,5.610015833333334,3.9822333333333333,1.6277825,2.4284066666666666,1.3812533333333334,1.445875,7.35514,5.4368,3.243605,5.41165,5.213324999999999,1.5205428571428572,3.3806999999999996,3.702845,1.6398475,4.823575,3.756375,4.091955,2.0273325,3.1012383333333333,3.7685333333333335,3.89977,5.55365,4.310315,4.440425,1.9914275,3.74952,4.567633333333333,3.2292633333333334,1.6341480000000002,4.23001,3.2504833333333334,4.03334,4.973095,3.91406,4.075415,4.633085,4.286855,4.172395,4.76997,3.94659,3.091666666666667,4.032415,4.709435,3.012235,4.294525,3.799855,1.56484,1.56484,4.373865,5.3236,5.46315,4.269985,4.59671,3.609766666666667,2.842535,4.67404,4.99094,0.667630909090909,4.996305,7.06869,5.36,5.91515,1.3282111111111112,3.11964,0.9451,0.9451,0.9451,3.552435,3.3254066666666664,2.48805,3.3840333333333334,0.90594,4.994595,5.1945,3.12564,1.4547,2.063505,4.59008,4.20148,3.75961,2.970478,5.6618,4.3306,2.53384,4.81668,6.9476,2.097835,4.126035,3.830495,3.179845,5.5427,4.60886,4.558755,5.6635,3.77784,3.8014866666666665,2.0373366666666666,2.0373366666666666,0.6792927272727273,8.874464,2.224875,5.8536,5.74825,4.48118,4.759255,3.72708,3.2937700000000003,4.89316,7.432634999999999,5.633883333333333,2.2751733333333335,4.37886,1.10585,3.69473,2.067083333333333,0.9888033333333333,1.3034142857142859,2.6481766666666666,3.20511,2.7216133333333334,1.2377442857142857,2.7993966666666665,3.138033333333333,0.941068888888889,2.9258900000000003,3.4352666666666667,1.6559300000000001,1.827386,3.3262,3.1182833333333337,3.0444266666666664,2.6633,1.7068619999999999,4.407225,4.88376,3.2176,4.685105,5.18395,3.052335,4.77063,5.89095,4.87734,4.170085,4.12545,11.712641666666666,8.05004,2.8985333333333334,3.58027,2.15183,3.70287,3.033365,4.526755,1.0834333333333335,4.17425,4.162115,1.25813,3.539565,2.961263333333333,4.42689,3.56567,3.754145,7.0134,7.357136666666667,4.198265,1.5549466666666667,1.5549466666666667,1.5549466666666667,4.81488,1.1789433333333335,1.4343375,0.49374666666666667,4.4115975,3.1610133333333335,3.7623,0.886579,1.1422525,3.382065,4.26683,3.82092,17.01217401190476,5.1405475,4.05816,6.7447824999999995,2.8569766666666667,3.563605,2.97927,0.9261488888888889,1.6688775,4.526555,3.501645,4.544205,3.91604,4.66119,4.07101,2.8154868888888887,3.243765,5.2382,0.60042,4.897405,2.4285575,4.077455,5.64855,3.398433333333333,2.5043533333333334,3.9788316666666663,1.8706433333333334,4.40135,5.98795,2.6650766666666668,2.509495,4.266725,4.785625,4.57103,4.047195,3.95701,4.065825,4.857105,4.701545,4.274125,4.86106,4.07872,1.1189057142857144,1.9030075,6.620178166666666,5.8098,4.731655,4.894805,2.53655,2.6447266666666667,2.6172366666666664,5.371996666666666,1.9209125,1.91684,3.1424833333333333,3.0633666666666666,3.215536666666667,4.585595,3.638675,5.3145283333333335,1.30818,4.566065,0.9449299999999999,3.936255,3.41134,1.7356983333333331,4.91009,0.9575155555555556,4.514685,5.4747,5.07255,4.79132,3.6286008333333335,3.876395,2.6593666666666667,5.05205,5.4782,2.941005,3.814385,2.553895,2.55677,2.009535,2.614695,3.859425,5.24075,1.0752475,4.578025,1.485115,3.272005,1.6123900000000002,1.0752475,0.2827,3.873655,3.0016,2.3279466666666666,1.9553933333333333,2.865625,1.098565,3.41529,3.40126,4.604845,2.475756666666667,6.4281,7.4248899999999995,2.9620466666666663,3.1508366666666667,2.8998733333333333,0.8496689999999999,2.3200966666666667,6.2634,4.29544,4.97966,4.91482,2.0841233333333333,1.3347766666666667,3.6059574999999997,1.717105,2.4900125,1.7880325,1.5498625,1.6904125,1.8678725,2.109875,2.04352,1.7850975,1.2093314285714285,1.4999325,2.1092225,2.51935,2.0206,2.32793,0.5119906666666666,1.965108,2.7060999999999997,3.25653,1.6207275,1.9460433333333331,1.5304825,4.257945,2.2235033333333334,3.11858,2.929545,4.045985,4.84197,2.7930833333333336,4.277275,1.7404298529411764,4.10597875,23.489556,4.455043333333333,5.55585,4.81033,2.868133333333333,4.06914,4.55981,2.475745,4.36886,3.233836666666667,0.76199375,3.27949,4.849535,4.388525,3.930925,1.5845,2.15855,2.45186,2.27567,1.3932742857142857,3.3299833333333333,5.56255,4.122475,3.27708,3.91004,5.17765,4.838115,5.4805,1.2729125,3.302,4.20361,4.673145,1.520052,2.47435,1.847985,1.847985,3.550135,4.964875,2.83865,2.7864166666666663,4.717995,4.59294,6.3190125,3.91808,2.14221,1.6688775,3.38806,4.085335,3.0558866666666664,2.418228571428571,2.418228571428571,3.3222400000000003,4.566565,4.01305,5.431405000000001,2.417845,3.682672888888889,0.5673222222222223,0.5673222222222223,0.5673222222222223,3.70151,3.64717,4.488125,5.529,1.9957175,5.81895,4.78252,4.51959,4.30409,4.966065,2.974845,1.5908857142857145,4.7317,4.91517,0.47523428571428566,4.2706,4.717295,1.6381350000000001,5.4478,4.905145,4.37422,4.17481,3.77708,2.99356,4.754145,1.6709340000000001,4.3483,1.7243166666666667,3.9019,5.85275,1.16946125,3.102555,7.377745000000001,4.11939,3.632566666666667,2.5237,4.417255,5.44595,3.5268333333333337,6.450748333333333,4.13029,2.10359,2.9805833333333336,2.7767033333333333,3.0259300000000002,3.075343333333333,1.83197,4.11748,0.6041633333333333,1.8955600000000001,1.8955600000000001,3.085455,5.4033,2.29931,3.262045,4.752245,4.16895,4.572525,1.5543933333333333,5.344980494047618,4.72034,5.24155,3.786795,4.078384,3.634058,0.444326,2.415448714285714,1.01248375,0.444326,4.118705,0.8461066666666667,4.44967,4.05501,6.679130000000001,2.000086666666667,1.0461175,1.147232,2.22532,3.1639466666666665,1.6169733333333334,2.4673433333333334,3.30888,3.96802,2.0179633333333333,2.3189033333333335,4.727275,3.1736050000000002,3.923,6.14165,3.552685,4.884945,6.831258333333333,5.0934,3.587675,4.378545,3.71965,4.486245,5.1856,5.720345,5.5646,2.487206666666667,0.996248888888889,4.17099,4.287325,4.40419,4.7752,4.237055,3.22853,2.9173033333333334,2.5775633333333334,3.093666666666667,2.6318733333333335,2.48456,2.88247,3.376633333333333,2.6582866666666667,3.998935,4.582255,4.493105,5.35665,2.3589933333333333,3.6808666666666667,2.82765,0.7143357142857143,4.13899,4.47955,4.971665,3.0033333333333334,5.71239,3.34316,4.751015,4.13274,0.6136838461538462,0.5840442857142857,4.198985,2.8011135,3.228825,4.59399,4.517845,1.776604,5.04205,4.177055,2.9436933333333335,2.6957166666666663,2.501475,2.3070008333333334,3.4662,3.306093333333333,3.4148,3.0683733333333336,3.602866666666667,2.6759,2.9170166666666666,4.0839,4.410455,0.559295,0.559295,0.559295,3.120777111111111,3.717866666666667,3.4785333333333335,2.8078533333333335,2.59476,1.1410575,3.1130633333333333,3.243456666666667,2.0565025,2.7175266666666666,2.44862,0.9208477777777778,3.0905316666666667,4.829255,9.8435845,1.4152784999999999,0.636871,3.65651,0.636871,0.636871,0.636871,0.636871,2.1455475,3.8296089999999996,3.97932,4.91686,6.0156,2.7583800000000003,3.0011266666666665,3.067035,3.3690800000000003,5.21605,1.3233949999999999,2.3244700000000003,3.2005266666666667,2.522816666666667,3.1264766666666666,4.753075,2.2046433333333333,3.403645,1.1840777777777778,4.77489,4.89179,3.534255,0.8393,0.7529,0.7529,0.9175312173913044,1.7568312173913045,0.9175312173913044,0.9175312173913044,0.29266521739130436,0.29266521739130436,0.9175312173913044,1.42279,2.70082,2.957335,3.2432466666666664,2.65951,2.614806666666667,3.00433,2.7063,4.40881,3.535465,1.8860525,2.1839066666666667,1.7575675,0.1824471299705449,0.1824471299705449,0.1824471299705449,0.1824471299705449,2.37873,2.63986,0.881156,5.42165,0.7568018181818182,1.7054719999999999,4.6175291666666665,5.8195,4.09655,2.821385,4.428635,3.8283,1.7182333333333333,1.2198175,3.51186,4.47989,6.0434,2.16539,1.4244166666666667,1.8368766666666667,3.3608,1.5503833333333334,2.697423333333333,3.1079333333333334,2.7345133333333336,4.61733,3.73046,3.118825,5.0414,3.0093933333333336,4.255965,5.5539,3.0204,4.14556,5.1049,5.1829133333333335,5.1171875,3.298311142857143,4.823295,4.37065,5.9846,4.75421,4.8261,2.24692,3.09128,4.046835,4.79515,4.16108,3.82769,3.529855,3.54013,3.86136,2.4223933333333334,6.098,3.69491,7.51646,5.85325,5.8846,4.96171,1.5428857142857144,0.9923819999999999,0.64568,1.7914359999999998,4.82025,5.13755,3.94769,1.721058,4.919685,2.97502,4.787745,5.0846,6.0478250000000005,4.392935,3.099915,1.82682,5.32835,3.78659,3.260585,1.753235,1.01375375,3.83505,3.515275,3.5774350000000004,3.5687,2.10102,4.573385,1.7248833333333333,2.8843866666666664,2.2717,4.307585,3.27583,4.804335,2.320565,1.7414,5.3054,2.8143166666666666,8.80652,2.91285,4.861015,5.696,4.29356,5.0369,3.37879,5.3177,2.3225275,3.92004,5.478511999999999,2.4538075,4.42993,4.724825,7.69145,5.3389,3.32323,4.402455,3.928085,3.1736050000000002,3.47396,5.33635,5.30955,2.50845,3.1835766666666667,3.366766666666667,2.332425,3.959315,4.627785,6.1074,5.21645,4.563405,5.20985,4.657345,5.63185,0.6484015384615385,3.05733,1.3195285714285716,31.2619206554089,2.07446,4.594905,3.12236,4.542245,1.8850259999999999,2.3984,3.6835864285714286,1.4742314285714286,1.4742314285714286,1.4742314285714286,1.4742314285714286,2.209355,3.70789,0.41915888888888886,7.747402500000001,0.41915888888888886,4.93688,5.11305,2.3913975,5.3626,2.762675,3.8508539999999996,2.42293,2.36057,2.655456666666667,2.11727,0.6199892307692308,2.6184766666666666,0.7015666666666666,2.9176866666666665,2.053706666666667,2.345316,1.1814466666666668,2.345316,6.0752,7.639010000000001,5.093,4.397335,5.4099,5.9962,7.425096666666667,3.51924,1.634305,1.634305,2.292126666666667,5.1395,4.01776,4.69259,6.3017916666666665,4.456685,2.844385,4.68563,3.495025,3.679865,2.28691,0.95591,2.05366,4.583485,3.970695,5.300753333333334,1.90834,4.44797,1.644414,3.13548,1.452288,3.167456666666667,3.4423666666666666,2.2533066666666666,2.9244233333333334,3.2771600000000003,5.0227,0.7004461538461538,3.4343,3.4322666666666666,2.6419433333333333,2.2872133333333333,4.309740625,3.1819133333333336,2.6118166666666665,5.886632499999999,3.94606,4.82682,3.66381,3.640705,5.41615,5.1497,2.4823066666666667,5.94485,2.324327333333333,2.0373733333333335,3.22451,2.73633,3.0757133333333333,2.72518,1.8205333333333333,2.9818014545454545,4.264155,3.36118625,2.4549440000000002,2.4549440000000002,2.392105,3.960425,4.110105,0.5169772727272727,3.23983,3.017345,8.60225,0.9103636363636363,4.21417,3.721415,5.707,3.512125,4.14717,2.5367,4.300205,2.646745,6.5905,2.9271416666666665,3.93808,2.5969366666666667,3.95547,2.819266666666667,3.71102,3.72674,5.04795,5.463134999999999,3.069545,2.07011,4.88947,2.3730266666666666,4.877765,4.13489,4.706465,4.467855,4.157295,2.72725,2.1769966666666667,2.98436,2.673916666666667,2.708625,3.2949466666666667,2.780030714285714,4.968316666666667,3.0083,2.60113,6.900379166666666,5.2674287500000005,3.9450775,3.16557,3.8428,4.044975,3.327725,2.224285,4.081955,5.7026,4.615895,1.5184416666666667,4.878665,2.9327433333333333,7.011902500000001,5.00075,8.573688888888888,4.108095,3.311335,2.58457,3.850535,5.820065,7.69228,4.11506,5.38153,4.460705,2.97658,3.89232,1.669398,4.638835,1.4605616666666668,3.956335,4.555285,3.6130333333333335,0.9178166666666666,9.541095,1.243411111111111,1.9566925,2.4265866666666667,1.9711333333333334,3.3203333333333336,1.284335,3.58223,3.472685,2.655206666666667,4.464265,1.1181758333333334,3.830435,1.4521249999999999,2.7129278333333335,3.71661,5.4874,1.9652075,5.410125000000001,2.1928703333333335,7.67199,4.360555,2.73955,3.96772,3.38262,1.2852770833333333,7.40297,2.962205,3.21239,2.232135,3.935325,2.30671,3.57835,2.242465,3.85583,1.293535,5.56455,3.523755,4.11893,0.920471,2.0652523333333335,3.823245,5.4431,5.0144062499999995,1.527346,1.527346,6.238,4.076225,4.39207,3.8676,3.3312,8.281849999999999,4.14117,5.6458,3.950365,2.582575,2.2946398154121863,0.3532265,0.21617387096774193,0.6250283154121863,1.316385,0.747233870967742,0.21617387096774193,1.3520189999999999,0.4088544444444444,1.6696114999999998,1.9770473154121864,2.160655,2.4332875,2.12326,5.3664,6.548561666666666,5.35715,5.5036,4.471675,5.26945,1.2750233333333334,5.3791,4.33529,5.85035,5.14725,5.3395,5.9579,5.91805,5.7996,1.5546916666666668,1.6814857142857143,2.09572,6.039549,1.304584,5.73835,4.79331,7.26097,5.1622,5.5174,4.749515,4.593375,2.712575,5.7743,5.46245,4.591613333333333,5.31375,5.6454450000000005,5.95655,3.91266,4.100275,4.037733333333334,1.08634,3.7642666666666664,4.704035,1.2925,3.9532666666666665,4.88139,4.3324300000000004,5.24595,2.560525,3.27203,2.6002233333333336,4.514305,2.1393025,3.462885,1.2283033333333333,3.17965,3.668505,4.255295,4.888915,3.3297220833333334,0.6185941666666667,6.21425,1.0059525,3.765565,3.1221833333333335,3.511985,2.0115266666666667,3.516625,3.570954871794872,3.2575133333333333,4.351755,15.236279595238095,5.256489999999999,2.23352,8.25956,1.460975,3.99104,2.7709200000000003,2.8602233333333333,2.54652,0.22577217391304347,2.8950266666666664,5.22185,1.825816,2.2065466666666667,3.6044666666666667,1.84939,2.314513333333333,1.361337142857143,3.97317,4.77146,5.3764,4.818255,0.46666714285714284,2.3002033333333336,4.32849,2.71037,5.53865,5.0586,4.58292,4.532425,0.540235294117647,2.3487633333333333,2.3487633333333333,5.6766,4.178455,5.0139,2.69565,3.493,3.2597966666666665,5.2112,3.981415,5.672121111111111,5.04275,4.45436,5.3057,2.5057,2.04176,4.576575,4.273465,3.78859,3.923155,1.762734,4.49638,4.07576,3.667585,5.0021,3.99655,4.21969,0.6472726666666666,3.401415,0.7512608333333333,3.3947333333333334,3.143805,4.8393,18.330062857142856,4.07835,4.215775,2.92214,1.176935,2.95532,2.41827,1.45645,2.593325,2.436135,5.2318,2.15951,3.98874,4.258615,2.2899175,4.749655,2.7798433333333334,4.42062,5.72965,5.26945,1.60276,1.751965,3.35293,5.6025,5.08445,1.1676444444444445,5.33855,3.801655,6.07805,4.854535,1.76915,4.53178,3.259265,3.5846,4.28653,4.10883,2.8686233333333333,0.7163725,7.928353333333333,1.535904,0.21040722222222222,0.21040722222222222,0.21040722222222222,4.8466,3.9345,2.573723333333333,4.465145,2.85535,4.718,4.24718,4.4097100000000005,8.234796666666666,4.08404,7.31691,0.9072575,0.8938125,2.65295,4.683155,4.59513,2.0593733333333333,5.99085,5.55045,3.371595,4.21339,4.50828,2.4991566666666665,4.4321,4.8444485,2.3612266666666666,2.5669233333333334,2.892,2.77151,5.8063,3.53557,0.7147785714285714,4.173915,3.39243,4.39234,5.16535,4.67347,3.037305,5.3021,3.59787,13.812579583333333,4.695085,6.93904425,2.73292,6.5241050000000005,4.583605,4.094855,2.3040875,2.36428625,9.77971,2.2089233333333333,4.1453999999999995,3.812666666666667,3.7368666666666663,2.8596033333333337,3.01575,2.08698,2.07125,2.902293333333333,1.838988,3.9304666666666663,2.619756666666667,2.4933466666666666,3.2823233333333337,3.5813,2.52028,2.52028,2.5292066666666666,3.3839333333333332,3.4193,2.9527066666666664,3.19847,3.9282,2.8128666666666664,2.9014900000000003,3.347,2.3580133333333335,2.4177275,3.4011666666666667,3.233143333333333,1.808684,4.1894,2.624353333333333,2.5401233333333333,2.9656800000000003,2.3883783333333333,3.2941033333333336,5.630696666666667,2.5235866666666666,2.51585,1.88196,10.777761666666667,2.15279,2.0826733333333336,1.9857040000000001,1.0839122222222222,1.6424600000000003,4.635093333333334,2.7313100000000006,2.7313100000000006,1.6339020000000002,1.536255,3.66526,4.087165000000001,2.19364,1.50812,1.653098,4.486889333333333,3.303316666666667,4.1548,8.379876666666666,3.01239,2.5576233333333334,3.3050552173913044,4.413666666666667,2.4177275,3.411,3.293036666666667,3.6267666666666667,3.5120858333333334,0.9022125,3.561813,3.1272033333333336,2.808206666666667,4.23788,3.3075566666666667,0.7004563636363637,1.850335238095238,5.0658,2.5326485,3.1712233333333333,1.644065,1.644065,2.07219,3.5738575,1.04471,2.2019625,4.716076666666667,4.716076666666667,0.6575380952380951,6.62959,3.548835,4.215835,5.3168,1.2125771428571428,3.506866666666667,3.5669,5.180747500000001,6.527564,2.872,0.787001,2.88806,2.615746666666667,3.173179333333333,2.48666,2.550073333333333,2.920386666666667,2.4396675,2.40189,0.8351172727272727,4.534185,5.099823714285715,1.5915283333333334,1.6510857142857145,5.28735,2.26124,1.96284,4.41644,1.8499020000000002,3.79906,2.420155,3.4880666666666666,9.07696,4.711954166666667,4.730245,5.20575,2.499448,0.713846,1.8429300000000002,7.0898900000000005,1.72269,3.862255,4.056295,3.44904,22.08750225,3.4224,1.9398166666666665,1.13131375,3.223793333333333,1.4257799999999998,4.180814,5.3837,3.4629145,3.3834666666666666,1.2093866666666666,1.3533,3.115156666666667,0.539163125,3.23725,3.7448333333333337,2.9411466666666666,2.527535,2.59925,2.85515,2.2252966666666665,2.933543333333333,1.830702,3.1903900000000003,1.5104133333333334,3.837395,4.23925,2.33858,4.77763,4.252505,3.950695,5.4158,4.885645,3.3126599999999997,2.82841,2.6494766666666667,1.2433657142857142,1.2433657142857142,1.2433657142857142,2.195265,2.9661633333333337,2.5968466666666665,2.38417,2.6554033333333336,1.6207225,3.717145,4.03155,3.56011,6.34917,3.42268,2.3103175,1.933605,1.1348366666666667,2.5451566666666667,3.88803,2.557793333333333,2.6094399999999998,2.3370466666666667,2.3196,2.57816,2.7114833333333332,3.0363633333333335,2.7277466666666665,2.68251,3.1747566666666667,2.16848,2.022785,1.967925,1.2514525,3.1154766666666664,3.09017,1.9477425,4.027155,5.27745,2.713013333333333,2.5901194230769233,5.092336666666666,4.39774,5.006,5.80455,4.47881,4.05987,6.833292500000001,1.3008875,4.11635,2.701035,4.972825,4.991735,3.82528,4.341785,2.45407,7.40776,2.810865,0.9193833333333333,7.89953,5.00556,5.845668571428571,4.49847,2.85309,1.7601025,5.40805,4.221545,4.914475,5.4783,2.53479,4.317515,4.46321,1.7575675,3.889655,2.65645,1.4066266666666667,4.823105,0.6272529411764706,4.420958333333333,3.57052,4.677215,2.99124,1.696865,3.59992,2.02972,1.32095,2.9064033333333334,3.5479333333333334,3.0322766666666667,6.957840897435897,1.6949575,6.499842916666667,9.644995,6.2625875,3.820005,1.2324428571428572,2.9409500000000004,1.2324428571428572,2.72936,2.2622533333333332,0.31999235294117645,1.2045848529411765,0.31999235294117645,0.31999235294117645,0.31999235294117645,1.2045848529411765,1.2045848529411765,0.31999235294117645,0.8845925,3.690945,3.392935,3.178825,3.366735,3.623305,3.13121,3.2431133333333335,1.6140440000000003,7.187906666666667,2.66215,4.31373,2.5798833333333335,1.0236727272727273,1.297325,4.65513,3.820625,1.0206155555555556,1.5442719999999999,0.7639836363636363,3.053675913419913,4.25306,5.1815,3.574033333333333,5.526534166666666,0.5389507692307692,4.194295,3.30761125,3.1080366666666666,2.7863933333333333,3.676266666666667,2.4773366666666665,3.0646133333333334,2.6161833333333333,3.438755,3.548675,5.20755,5.25705,1.737198,4.57888,4.69021,2.974055,3.664855,3.28447,0.3671393333333333,4.96873,3.615285,3.31565,3.1522360000000003,4.43291,3.919055,1.99358,3.01275,3.83745,8.602285,5.17625,5.778,4.51538,3.88684,0.863835,2.19819,1.88053,1.902515,1.7926566666666668,4.73927,5.3437,4.19679,4.26524,2.970478,2.67245,0.9045233333333332,4.136595,1.2296316666666667,1.1801566666666667,3.08566,3.735775,4.620945,1.254925,2.9288000000000003,8.235628333333334,3.0124600000000004,3.404164166666667,0.9131775,4.08786,12.364846666666667,3.421695,3.983035,3.08894,3.020475,4.559185,4.85891,1.97155,4.299845,0.6383323076923078,4.806535,2.234365,1.814455,1.814455,3.404033333333333,4.59875,1.5860233333333333,4.750805,1.6115714285714287,4.213645,2.7737875,3.14841,4.62269,3.51382,3.9014485,2.4554525,3.0054485,3.0054485,10.85833,0.805354,3.578275,3.496866666666667,2.1201775,2.1483675,0.8693371428571428,1.40695,1.2496442857142858,2.110575,4.85513,2.36241,4.3425275,2.1895866666666666,4.103625,4.40026,1.6214933333333335,2.0225175,1.0721633333333334,5.6920135,1.942155,2.236775,1.8738199999999998,1.52647,1.13131375,2.400932083333333,3.569885,2.4690566666666665,3.09069,2.36137,2.597983333333333,1.7421333333333333,2.9451,2.54798,1.4016166666666667,2.05322,3.24936,3.1744566666666665,2.347163333333333,1.23394,2.5621566666666666,2.37763,3.2353233333333336,0.3343163157894737,0.39373083333333336,2.3222333333333336,2.3026433333333336,2.91775,3.2313400000000003,2.671685,4.82556,5.74635,4.265195,4.72077,4.54175,3.959405,2.2695466666666664,3.74826,0.6278945454545455,0.07270113636363637,6.27635,0.07270113636363637,2.752685,3.21749,5.54955,3.42043,6.15125,4.801615,2.3731066666666667,2.68722,1.3674350000000002,5.44595,5.95365,3.3399666666666668,5.41005,2.15203,4.196635,2.1386102173913044,3.009233333333333,3.3515,4.146605,4.249560833333334,3.13044,2.246653333333333,2.246653333333333,3.87384,7.42323,3.81664,2.1833733333333334,2.5704866666666666,4.513545,2.820945,5.0459,3.76675,1.1675,4.502035,2.775533333333333,2.8970766666666665,4.297985,1.1276183333333334,2.3827866666666666,3.850825,4.357965,5.3558,2.860245,2.84732,3.995595,4.00299,4.094045,5.5527,4.3451,3.3303366666666667,3.720325,2.7343100000000002,3.10078,2.8803066666666663,3.4134333333333333,4.32749,2.9793266666666667,4.916455,4.34158,3.059055,4.791945,4.923135,3.908315,1.466894,1.3802375,4.033535,3.2926933333333337,1.6078766666666666,2.67849,3.322545,3.1338633333333337,3.6642277777777776,3.1779566666666668,2.3599783333333333,12.842091611111112,1.6658099999999998,1.759396,4.563165,1.1013439999999999,3.061726666666667,4.297365,5.1053,3.211485,1.0907155555555557,2.3439666666666668,2.475756666666667,1.503812,5.9615,0.9907375,0.9907375,4.04085,2.1226166666666666,1.9182333333333332,2.04101,4.094915,5.05065,2.38487,2.757805,3.4554116666666665,3.03505,2.9150500000000004,2.02466,6.49695,5.88565,3.902685,0.7337330769230769,3.72772,3.2657,0.9404818181818182,4.938525,3.2102,8.23835,4.63153,4.574175,3.593785,1.4495875,3.199315,5.07935,4.88,4.35569,4.22001,4.372675,3.332545,3.5028333333333332,3.5028333333333332,3.137195,2.873270833333333,4.91463,1.799295,5.4777241666666665,5.31538,1.6381350000000001,4.971365,1.08845,5.08135,3.887955,4.8373,4.772485,4.4302,2.67035,2.606375,4.118475,4.469285,5.0026,4.919065,1.80636,1.46581,4.16503,2.1744566666666665,5.2342,3.02888,3.287695,7.68097,3.7616,4.63578,4.796915,4.26371,4.46117,7.955105,3.665515,3.89925,9.758355,3.79613,0.6278014285714286,2.070303907203907,4.949325,0.618732,4.83482,4.07136,5.39205,4.867495,3.37502,4.18019,4.52891,4.78472,2.5526,0.6885178571428572,5.06085,4.41218,4.27326,4.757905,2.7681766666666667,4.40022,3.5042,0.8243959999999999,3.460565,4.265665,2.3764325,3.1356699999999997,3.86222,2.2499466666666668,5.145,4.89874,4.0593,3.2128366666666666,5.713425833333334,5.713425833333334,8.544236666666666,2.0015,0.84935375,0.84935375,25.116396666666667,2.73395,7.788086666666667,0.3791533333333333,1.29736,3.1133900000000003,0.942785,3.6283,3.823315,2.2756975,2.2756975,4.519605,4.722585,3.600625,2.714624166666667,2.714624166666667,3.47894,3.785345,4.040895,3.0220800000000003,2.0691866666666665,2.394166666666667,4.210267,1.963825,3.491975,2.7396133333333332,2.7692007142857147,2.7692007142857147,3.5577,0.8415222222222222,2.49559,1.50854,3.5470333333333333,2.8557433333333333,2.9262200000000003,2.7297999999999996,4.691285,2.349165,3.0374666666666665,5.95788,1.487412,2.318545,3.21159,2.4741966666666664,3.55006,6.514122174603176,1.3218400000000001,3.5903666666666667,2.389485,4.86674,6.42865,1.60917,4.399420666666666,5.034015333333333,3.158068285714286,4.598433333333333,1.1104457142857143,1.520052,3.0378,3.5139433333333336,1.2167116666666666,2.384195,1.4326525,1.635666,1.981805,3.3758480000000004,4.830548,0.9442383333333333,1.5320571428571428,2.812656666666667,12.491525,4.697023333333334,2.66204,1.1792357142857142,2.566145476190476,0.9233971428571428,3.2521166666666663,4.335365,5.11955,3.3661999999999996,5.52155,1.84985,3.6903,3.581565,2.89275,3.7758955555555556,2.856503333333333,0.9675622222222222,2.5180833333333332,2.8301933333333333,5.748448333333333,3.319582142857143,2.639823333333333,0.724035,4.730433333333333,3.425133333333333,1.067756,5.51111,2.06991,2.3126433333333334,5.75235,1.3030777777777778,2.96759,1.0329727272727274,3.0747366666666665,4.63027,3.0599866666666666,2.9113966666666666,2.0751033333333333,2.6240866666666665,4.48889,4.68492,5.23275,1.6448525,4.442925,3.35427,4.550726666666667,3.442776,2.2531066666666666,4.709168,1.028368,2.7176538095238096,5.5518,2.651925,4.0835875,1.459175,2.7584199999999996,1.9175280000000001,1.9175280000000001,6.933776666666667,3.0741300000000003,5.62621,3.3455883333333336,1.8082166666666666,2.921690952380952,4.678675,5.52455,8.336205,4.843343333333333,2.628576,1.6891033333333334,2.0421835,4.10735,3.69932,1.6522279999999998,2.0589425,2.7208387500000004,1.176675,3.1365200000000004,19.269211666666667,3.3579333333333334,2.893213333333333,3.315533333333333,2.881266666666667,2.70116,1.6268266666666669,3.0669466666666665,3.5145999999999997,2.77103,2.4849533333333333,5.733587333333333,2.535703333333333,4.644799428571429,3.084033428571429,2.6251994285714284,1.59047,4.146473333333334,2.201865,4.018015,4.85339,3.72779,3.040941666666667,3.2507800000000002,2.59059,3.3192466666666665,3.287713333333333,3.8676333333333335,3.2773466666666664,0.8590663636363637,5.227,2.387235,3.397066666666667,2.8197444444444444,1.9539075,2.2328841666666666,2.2328841666666666,3.666669166666667,2.1409075,4.50036,4.386305,3.87548,4.39911,4.858215,4.4072725,4.4072725,3.87063,2.96941,4.40162,2.7873,1.584324,3.0704366666666663,4.41117,4.06141,2.521125,3.672825,5.47642,3.944266666666667,6.231338511904761,2.832105,0.971904,0.971904,3.321515,4.841785,3.756005,3.4025559999999997,2.4129666666666667,1.7577866666666668,2.0305766666666667,3.2394,6.762385999999999,1.4424783333333335,3.86038,3.5821,3.83919,4.67973,4.8141,4.901545666666666,3.1428999999999996,2.4560675,4.3249,3.190745,2.087725,1.177768,4.337775,2.78595,6.229316666666667,3.4433666666666665,2.58387,3.233965,3.793785,3.47838,4.775715,3.539625,4.58292,4.04916,4.216275,3.638285,3.28697,3.498595,5.2756,2.4758,4.5943,3.309095,5.0054,0.6532122222222223,2.3437675,1.89393,1.7834,1.78414,2.45229,2.7005666666666666,1.9999133333333334,4.887945,5.84408,1.9625666666666666,4.345655,4.680005,2.2797975,5.33845,4.289847916666667,4.907805,5.24885,7.463035,2.46916,2.9125533333333333,1.8882866666666667,2.9263766666666666,1.90398,1.8092,3.93441,3.45775,5.7282,1.02942,3.09752,4.40102,2.26983,5.51345,3.682885,2.586395,3.7122333333333333,3.340675,1.663145,1.983153,2.72175,2.93245,3.234675,1.9527875,3.6247999999999996,3.6247999999999996,3.555025,3.393675,20.048057083333333,0.90986,4.6503575,1.9267075,1.9413933333333333,4.06763,4.106525,1.8531425,3.55073,4.80911,1.7820833333333335,1.7820833333333335,1.4091333333333333,1.71319,2.5155066666666666,3.09445,4.432526666666667,3.389165,3.670533333333333,0.5116868421052632,3.5114335087719297,1.9195933333333333,2.184285,4.403065,3.51729,3.865175,3.83559,4.63438,4.198955,1.9788425,2.97848,5.74743,2.58829,3.84399,5.22695,2.266175,4.68339,6.09005,1.4721857142857144,2.02922,3.6817333333333333,0.9248885714285714,3.2184899999999996,3.21664,5.06055,4.708895,2.7192075000000004,8.130203333333334,3.0823033333333334,3.008836666666667,0.46002,4.46034,5.443058333333333,3.23365,5.3613,3.71505,2.598822222222222,1.720716,5.315915499999999,4.28611,4.11573,2.24613,2.0802625,4.1325,4.0887,2.9239633333333335,2.032175,4.270326666666667,6.595807499999999,2.735,3.81232,3.42353,4.236845,1.4365142857142856,1.4365142857142856,3.07274,3.1106033333333336,4.450105,4.87321,6.4421,3.45995,2.704325,2.15697,1.5236316666666667,1.3521457142857145,5.15825,5.9133375,5.3174,5.6727,4.32941,6.714385,3.92338,2.87302,3.823636666666667,2.162316666666667,2.966399,1.646198,4.40112,2.3665333333333334,4.16826,5.2004,4.01095,2.748443333333333,2.8143166666666666,1.5688,2.4717975,4.0037666666666665,2.12374,0.580568125,3.27026,2.803793333333333,2.6582866666666667,2.5196833333333335,2.1228475,1.729888,0.698659090909091,0.698659090909091,3.7662999999999998,2.0381675,2.443425,4.29336,5.25785,4.46338,4.826645,4.55139,4.220505,2.552819,1.2136500000000001,2.876165,3.912845,1.1185925,3.8002275,2.72927,2.86977,2.31977,3.873635,2.904395,1.9914333333333334,1.3363885714285715,4.386765,6.629655,4.081465,1.6460735714285715,4.65955,4.19907,3.519815,3.358885,2.72299,1.69498,1.0219375,3.78153,2.616364166666667,2.0768766666666667,1.6460133333333333,2.3050466666666667,2.2279633333333333,2.44903,2.712585,1.3045466666666667,1.8880633333333332,1.0237175,6.532795,5.4444,5.0953,3.845855,4.206975,3.1270366666666667,1.7661311965811968,4.9131,4.51929,2.623435,5.12225,2.081,4.343735,1.1676333333333333,4.01338,4.153635,1.88652,7.67311,3.44907,1.923385,1.75764,1.759295,2.55705,3.232006666666667,1.322571948051948,2.99159,5.75725,4.31779,4.48772,5.82365,5.5166,5.58085,0.97237625,4.337,4.6757,4.09052,4.91451,4.2597233333333335,4.65883,5.2883,2.97287,1.2089516666666666,1.2089516666666666,5.2654,6.376971666666666,2.92951,2.8758433333333335,4.426875,3.759055,1.653584,2.848215,4.851475,3.78708,3.98576,2.9254866666666666,2.7992399999999997,4.85542,2.329074125,11.020459296238075,1.8893366666666667,0.89831,2.417056666666667,1.87435,2.2858225,2.245605,1.8592359999999999,3.088756666666667,5.60275,5.48205,3.088573333333333,1.73565,6.3075390476190485,1.3817814285714287,3.150846666666667,0.5188428571428572,4.155626666666667,5.70065,3.38787,4.957775,12.80519,5.63935,3.2502933333333335,3.08196,4.949965,3.0725700000000002,5.21925,1.20460625,1.1567,0.6987454545454546,5.9885,3.93654,1.723918,4.747794,4.728495,6.22785,4.77669,5.0266,4.404925,6.67685,3.86336,5.4978,4.545485,1.274734,4.75145,5.8227,4.21883,3.950185,5.0764,3.028095,1.1683875,4.755185,3.754025,1.23393,3.521933333333333,2.85801,2.4260533333333334,2.6468366666666667,2.5761766666666666,2.7503100000000003,0.6955681818181818,3.055196666666667,2.8745833333333333,2.5643333333333334,2.132843333333333,3.0582700000000003,1.957645,1.6415033333333333,2.502075,2.33393,2.2129325,3.5782333333333334,3.0891800000000003,0.7183889999999999,2.63862,3.26531,5.02075,2.471303333333333,3.920255,5.6327,5.0527,3.398845,3.804795,1.4450714285714288,4.116895,2.6333194444444445,3.9699099999999996,2.960685,4.901145,5.17685,5.40565,3.92873,4.136733333333333,0.585592,0.585592,2.1910721153846153,1.6194075,4.17338,2.5156715,2.5156715,5.4758,6.35275,3.2248,1.1255616666666668,1.5709428571428572,6.1857,3.55659,3.1893766666666665,3.3129,2.801785,3.150275,3.1893766666666665,6.951935,3.289845,2.974458333333333,2.8935,2.03022,3.116195,6.1158,2.429815,2.56266,2.385425,5.7138,4.989,5.8225,5.8225,5.7073,4.531175,0.63521,4.725065,4.76852,2.854895,2.844695,10.086033333333333,3.161653333333333,4.562055,3.587185,3.7810666666666664,5.65735,2.55755,3.28648,2.9081466666666667,3.1652566666666666,2.49219,1.43728,1.43728,3.52137,3.74364,4.12611,1.761674,1.6855619999999998,49.26694299242424,2.6918066666666665,0.847840909090909,3.2670333333333335,1.7656425,3.3447333333333336,2.9036566666666666,3.3657333333333335,2.99553,2.9400666666666666,1.8935733333333333,1.00408125,4.6893,3.22141,3.487585,4.70701,5.18685,5.1185,5.19285,5.54875,5.6959,5.11065,5.7987,6.4564924999999995,5.1521,5.7597,2.037015,3.81247,6.69135,5.51775,4.20478,4.852905,4.40572,3.20022,3.972565,4.58428,3.1925833333333333,3.7753333333333337,1.69307,3.628965,1.350804,3.21153,3.83327,3.540865,6.9444425,4.12561,2.365585,4.296695,3.81277,3.856995,1.06671875,2.79518,3.872975,4.352375119047619,1.1525125,5.14375,1.4466075,6.2972,0.6937822222222222,3.84462,10.505403333333334,4.250485,3.888145,4.04406,1.8203833333333332,4.5577,5.3913,3.2604399999999996,4.251455,9.219220833333335,3.488766666666667,2.3335766666666666,2.9126666666666665,2.94027,2.921726666666667,2.755368,2.34204,2.7817333333333334,3.02612,2.7457133333333332,2.8135766666666666,3.37035,2.24586,1.5942666666666667,4.687239999999999,2.933386666666667,2.56628,5.025186,2.885676666666667,1.10459875,1.93951,2.8797766666666664,5.164039285714285,2.782725,2.1308422222222223,2.1308422222222223,1.63318,1.5793275,1.9949739999999998,1.790514,6.532885,4.38302,2.7575,2.8912166666666668,3.7845999999999997,1.968195,0.5619991666666667,2.377823333333333,1.93025,0.6060376923076923,3.842375,2.55715,2.638325,3.484335,4.0232475,2.785436666666667,1.5896033333333335,1.460915,2.127715,3.331175,3.82901,4.3945975,2.8324233333333333,3.94524,3.68203,1.116009090909091,8.88852,2.6184,3.209785,1.31355,2.8903766666666666,2.3654475,2.3654475,2.3654475,4.543525,5.6069,1.831695,5.16495,1.403586,5.707563333333333,1.58337,4.180545,4.153885,4.4735,3.637565,4.760545,1.948915,8.3576425,4.666625,5.03785,3.167895,3.748861666666667,3.1588766666666666,2.91295,3.93413,2.8214433333333333,4.630397142857142,4.804988333333333,1.613315,3.883945,1.613315,3.49111,4.4806425,5.21907,4.4806425,1.7412233333333333,6.0402,4.730905,4.39631,2.726046666666667,3.0732666666666666,4.467335,2.940285,4.283255,0.5753364285714285,3.1343333333333336,3.0657300000000003,5.4962625,4.72538,2.51975,4.886555,7.620336666666667,4.135455,3.02805,3.19316,2.6475666666666666,4.183905,4.04387,4.77954,2.53071,4.17919,0.900442,5.2158,3.731655,3.95284,2.5210966666666668,3.0515933333333334,2.2516966666666667,2.98683,2.8434633333333337,2.90089,3.357965,2.60895,2.60895,4.667914166666666,3.219125,4.656945,11.6038375,0.9975377777777779,4.63236,2.35035,2.2148,3.1334400000000002,1.4343375,7.414893666666666,3.8036666666666665,4.243125,3.7476858333333327,2.24703,3.861333333333333,4.783072916666667,2.672776666666667,0.5079666666666667,1.83527,1.4963575,5.05595,2.82958,3.228525,3.770385833333333,3.5784008333333333,2.5635875,4.73293,4.729945,4.03034,4.126725,2.205405,4.39941,2.5214933333333334,5.891123333333334,3.12045,5.2175,4.507215,4.055155,4.323935,1.895935,3.748915,3.518495,2.6030866666666665,4.53814,2.968435,3.231845,3.92504,3.55376,2.980323333333333,4.819595,1.9219,3.848145,2.78655,4.67708,3.773865,3.96598,4.98886,3.04417,4.6568,3.637675,3.94849,2.6350966666666666,2.06523,2.895605,2.389645,0.8522683333333334,4.460115,2.142725,3.44702,2.73958,4.198245,3.256725,2.87086,2.996545,4.03008,4.725422,3.861555,3.42235,1.6663466666666666,3.452045,2.54462,0.9993188888888889,4.76544,9.28642,3.27034,3.45892,4.17225,4.9898,3.77144,2.31029,4.009175,3.94234,3.12122,3.1064,3.33406,0.61755375,1.3399085714285714,6.2045625,1.5846075,2.683085,4.945138,2.560525,2.309535,2.686135,8.00437,3.090715,4.159125,3.62929,0.7471722222222222,3.436885,2.7649,3.73176,4.673455,5.6191699999999996,0.662524,3.379365,9.10647,3.226385,1.0715511111111111,5.111290416666667,4.78368,5.4026,4.770775,4.72625,3.253305,2.6246933333333335,7.56908,0.8593999999999999,3.39252,4.32692,2.845825,3.92622,2.35311,4.38274,1.7057833333333334,4.30489,4.04996,3.88167,1.71785,4.74948,4.47409,2.1760925,2.162825,2.553575,1.067756,4.02914,3.4629145,1.6328,8.952210000000001,5.61775,4.66469,4.48418,3.417245,4.374365,1.3320385714285714,4.66519,3.956925,5.4129,3.669215,2.3879,6.707327649572649,1.05498,1.05498,2.4315966666666666,0.9329085714285714,4.357185,2.787663333333333,1.00758,1.8080299999999998,0.40429,6.479125,1.0009975,2.789065,4.03514,4.041515,3.449175,4.36166,5.1775,5.61608,3.33007,3.05815,2.432125,4.807295,5.19525,4.46785,4.22675,3.883225,6.362,4.065895,4.130467777777778,6.022833,3.644555,4.1130375,2.310855,4.1130375,6.819465,41.542787255411255,3.64561,3.341065,2.896293333333333,4.589575,4.331705,3.355775,3.524055,3.94905,4.042935,4.26685,1.74655,5.00905,2.55294,4.55452,5.4158,5.3207,2.3519133333333335,5.13015,3.85476,3.255275,1.6765139999999998,0.6442623076923077,1.54522,3.976766666666667,2.9894833333333337,1.3054375,3.4285,2.7164633333333335,2.8468433333333336,3.00259,3.06396,1.334786,2.610063333333333,3.7576666666666667,1.8366978249678252,2.8757866666666665,3.343442,2.9142733333333335,2.60711,3.368,1.1492777777777778,3.95128,3.946335,1.196615,1.196615,1.196615,1.196615,2.9283763636363638,2.00354,2.406655,3.43994,3.917185,4.44804,4.28708,4.28176,5.6823,4.92577,2.260325,6.11575,3.571265,2.67028,3.67708,3.70796,4.620185,4.425725,0.7837999999999999,1.38926,1.5778466666666666,4.7851,4.4785,4.500845,4.115585,6.180123333333333,2.334616666666667,4.740235,1.6947333333333334,4.127895,5.37375,1.5305166666666665,5.6341,0.8247016666666668,5.01585,1.453746,1.223365,3.82185,4.61019,5.16385,5.6535,5.5586,3.623625,1.414974,4.479135,1.4947775,3.52388,3.21999,2.598822222222222,1.7469375,3.61221,1.3964800000000002,3.291805,4.632405,2.7760833333333337,5.81175,123.1718950609668,0.46893,4.61665,2.38942,4.76033,4.094355,2.763485,1.45545,0.34420047619047617,2.88349,3.643125,5.41935,2.5752,3.63168,4.51777,4.499805,4.543295,8.03642,0.6655599999999999,3.361,0.94888125,11.66624,2.97137,3.47649,0.9454822222222222,2.29632,2.616395,2.05304,2.9856166666666666,3.358033333333333,2.16404,4.24744,2.8360466666666664,2.396176666666667,2.2570799999999998,5.25605,3.970035,3.07092,3.448275,3.583785,3.921375,2.238586666666667,3.695375,3.32189,3.110395,1.1127555555555555,2.5012133333333333,4.24744,4.41384,5.4791,4.086285,3.97577,1.94622,10.51393,3.79845,2.58793,3.363545,5.84395,0.5545366666666667,0.5545366666666667,4.445422499999999,4.445422499999999,4.09345,3.8757333333333333,1.8381075,0.6317858333333334,2.89098,4.337915,4.245705,3.092155,3.965685,5.68609,4.825175,1.9960125,4.398295,2.02353,2.69864,4.202115833333333,1.860415,2.802565,0.58861,2.4304900000000003,2.4304900000000003,2.01022,4.73179,4.62295,4.706525,6.873746000000001,2.867525,3.078775,2.00793,2.19049,4.572509166666666,3.941215,5.415853333333334,2.36418,5.415853333333334,4.876905,3.57581,6.23125,3.76539,2.3525633333333333,1.8776633333333335,2.958576666666667,1.4333325,1.4335575,1.4390475,1.5236525,1.46434,1.575865,3.6275999999999997,4.62396,2.385135,6.93475,2.8436233333333334,4.67628,2.59785,4.28383,3.08104,2.9945,6.188333333333333,3.529533333333333,4.653022666666667,3.3815000000000004,1.33826,2.56618,2.7065266666666665,2.450273333333333,5.1078,4.2199575,5.0239,12.73270025168691,0.7184308333333332,1.96109375,2.517025,1.6795179999999998,1.29867,2.535125,2.44554,2.4180675,2.4017225,0.7283515384615384,1.96214,0.5179726315789474,4.74649,2.008685,4.53133,4.96979,2.6873,5.5086225,4.59839,7.79309,3.902405,2.86261,3.15653,4.72687,4.552775,2.8070012380952383,4.6631,2.1446275,2.1446275,5.1414,3.796935,4.21114,3.89726,3.4706333333333332,3.87083,4.943495,4.833275,4.67793,4.526085,4.493215,4.403535,2.40069,4.705455,1.4738566666666666,5.1377,4.52647,2.428103333333333,2.4252466666666668,4.692725,1.455795,4.677605,1.9817825,5.872134384057971,3.935625,3.74089,1.5946166666666668,3.2395491666666665,3.2395491666666665,12.66775,3.86121,4.57251,1.09813,4.3000620000000005,2.52575,1.430385,2.5264,1.697065,2.127215,1.8251439999999999,3.19926,6.6169,1.71632,4.9368,4.654751666666667,5.10385,2.25518,2.551925,4.403555,4.597725,5.41935,3.9397,7.048778333333333,3.1616666666666666,2.9852733333333332,0.47504611111111106,4.10281,3.96291,3.235803333333333,6.054038333333333,2.49522,3.028893333333333,1.2832816666666667,1.4416933333333333,0.580568125,1.83527,2.84,1.5096733333333334,1.6378633333333334,0.6744375,1.33439,4.53019,2.567725,0.5965838461538462,1.9420166666666667,1.6435675,1.8775179999999998,1.2565666666666666,2.077415,1.4416933333333333,2.4538075,1.33439,1.33439,0.5965838461538462,1.5939142857142858,2.6036200000000003,1.2167116666666666,2.7964,0.5965838461538462,2.69005,2.6036200000000003,1.18497,1.18497,1.18497,2.05068,1.14203125,0.5965838461538462,1.16662,1.16783625,1.0839122222222222,1.900532,2.61985,0.9178166666666666,2.31729,1.6807142857142858,0.5965838461538462,1.57702,1.4416933333333333,1.9801666666666666,1.9872166666666666,0.8790229999999999,1.9801666666666666,1.0531855555555554,2.1760925,2.4232675,2.3814175,1.16783625,2.20848,1.3964800000000002,1.3964800000000002,0.9552545454545455,0.9552545454545455,0.9552545454545455,1.2832816666666667,1.4416933333333333,1.6807142857142858,1.9420166666666667,0.9241842857142857,1.9872166666666666,1.564852,1.808684,1.8609660000000001,1.2832816666666667,2.66204,12.206705,0.6744375,2.6622399999999997,1.8687166666666668,2.727475,0.9233971428571428,0.9233971428571428,0.5965838461538462,1.3227333333333333,1.729888,1.6807142857142858,1.7180240000000002,1.9872166666666666,1.1676444444444445,1.1676444444444445,1.7054719999999999,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,3.3833333333333333,1.0531855555555554,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.38874500000000006,55.249914806637804,1.415515,1.4974466666666668,1.6807142857142858,1.8687166666666668,0.9241842857142857,0.6276058823529411,0.724035,0.724035,0.724035,0.724035,4.358033333333333,16.473160416666666,3.4364333333333335,0.6791481818181818,1.584896,1.584896,1.584896,0.6791481818181818,2.84,0.5965838461538462,1.57702,1.6378633333333334,2.44148,1.0531855555555554,2.51975,1.0531855555555554,1.564154,1.564154,2.060916666666667,2.060916666666667,0.5965838461538462,2.0975,2.0975,1.0179454545454545,0.21040722222222222,2.84,1.5873666666666668,2.389485,0.6791481818181818,0.6791481818181818,0.6791481818181818,0.6791481818181818,0.6791481818181818,1.8687166666666668,0.38874500000000006,1.0531855555555554,2.295215,2.295215,2.606375,3.1221833333333335,0.6575380952380951,0.6575380952380951,3.2782699999999996,4.010166666666667,1.2125771428571428,3.2173599999999998,1.01645,2.29223,2.0015,1.1276183333333334,3.043753333333333,2.2935775,3.2128366666666666,5.31145,2.340295,1.2722888888888888,4.3646,4.65504,3.0222333333333338,1.7390560000000002,2.221818076923077,4.84487,1.578952222222222,2.7268833333333333,2.84883,3.477133333333333,2.46103,6.306976666666667,4.32645,0.21040722222222222,3.3288433333333334,4.913735,4.37505,4.25654,4.250365,4.63219,3.0109366666666664,1.905796,3.65081,4.4473,4.28391,4.477705,5.57285,3.332945,0.6614483333333333,6.8587299999999995,1.4217716666666667,3.226616,4.91071,2.7987033333333335,2.7987033333333335,0.8265454545454546,1.7469375,3.34583,3.14545,4.993545,4.488005,5.0223,5.5193,1.0157171428571428,4.85372,5.23395,7.410748333333333,2.2388566666666665,4.137775,4.26355,3.4236,4.5225,4.52204,4.64589,5.423884999999999,4.979265,4.667978333333333,3.68299,4.458483333333334,7.213089999999999,1.8622575,1.6494197435897435,2.864546666666667,1.8105900000000001,2.69049,1.8868600000000002,4.947095,2.7888699999999997,4.556455,2.0027999999999997,5.08775,4.03984,2.879485,4.209025,3.679335,2.4453466666666666,2.6532966666666664,2.8479833333333335,2.721173333333333,2.2671466666666666,1.7313166666666666,2.6356066666666664,2.8475266666666665,1.94177,1.94177,3.763865,2.8850200000000004,1.9428366666666665,3.030666666666667,2.0977,2.12661,2.97793,2.64573,3.4023333333333334,5.11095,4.69465,4.561535,3.79347,3.79347,4.048115,3.340866666666667,4.74676,4.142615,3.64874,3.412345,3.304725,6.97049,2.00203,1.88262,3.433545,3.067175,1.6904766666666668,1.6904766666666668,3.40281,1.927645,3.942369333333333,3.59731,3.04271,2.103244,2.324882,0.5674791666666666,2.73658,4.01403,2.09301,2.5533,4.333075,1.1287866666666666,4.874725,1.2444933333333335,0.383835,0.5167928571428572,21.81213160218254,0.5167928571428572,0.383835,0.6497507142857143,10.919049999999999,3.241286666666667,4.272515,4.399855,3.5504075,2.55352,4.4410235714285715,2.44472,2.72856,3.00799,3.027935,4.210085,4.62841,3.36527,2.42493,3.110235,3.94815,3.929605,3.00155,1.0987459999999998,1.0987459999999998,1.0987459999999998,1.0987459999999998,3.22303,2.851135,2.978275,1.7437933333333333,1.231805,2.381745,3.597135,3.599825,2.77663,3.98089,2.584545,2.7737875,3.744215,4.067195,1.07301,3.1144866666666666,1.09937,2.9379299999999997,2.3022666666666667,3.6857,5.24895,2.442486666666667,4.759485,4.336943333333333,0.8472681746031747,0.25652928571428574,0.25652928571428574,0.5907388888888889,0.25652928571428574,0.25652928571428574,0.25652928571428574,0.5907388888888889,4.439815,7.400436666666667,3.537635,0.54975625,3.53165,7.409695,3.18748,3.2225433333333338,1.1255416666666667,4.48141,5.3983,4.347415,4.997345,1.6284300000000003,4.99849,2.1777,2.3767406666666666,3.684505,5.604,0.7910785714285715,0.7910785714285715,3.39836,2.818576666666667,2.88836,3.33436,2.53591,5.425,4.0482,5.15025,5.1906,5.5893,2.48077,1.78742,4.607815,3.480745,2.303905,3.6815,3.492145,1.9531625,1.1408166666666666,3.88724,3.1602,5.16535,6.564726666666667,1.5334416666666666,3.89693,1.15992,2.5895,3.670875,4.20522,0.38572071428571425,4.298905,4.413875,0.9447469999999999,2.899736666666667,7.80509,4.92953,2.237185,5.838272,4.54818,3.65827,1.3932666666666667,5.4708733333333335,3.2577966666666662,3.24287,3.3867,1.96225,1.96225,6.3949750000000005,6.3949750000000005,3.659830357142857,3.659830357142857,9.83447,3.659830357142857,3.659830357142857,4.395145912698413,6.59215,5.41445,3.557265833333333,2.7693100000000004,4.040775,4.40408,3.3436,3.24306,4.537435,3.3046900000000003,2.6365233333333333,3.1017833333333336,2.2256633333333333,2.59262,4.858465,7.380504999999999,6.6549525,4.342985,3.63077,3.916715,6.63491,5.10685,4.393115,4.450555,3.28187,2.3622566666666667,1.99533,2.194115,5.375,5.3419,4.72281,4.2395,2.308803333333333,2.86908,7.043551666666667,2.05068,2.4936633333333336,3.29054,3.29054,3.036085,5.3502,0.7766275,3.1796166666666665,3.877395,2.900463333333333,10.536575000000001,4.710355,2.6451366666666667,2.4605966666666665,5.9086,5.86645,2.778045,5.40345,2.520356666666667,3.969585,2.984283142857143,4.60433,5.42825,4.884145,0.9425083333333334,3.6718666666666664,1.154885,2.47837,5.1316695441176465,7.696680000000001,2.8594333333333335,2.6361433333333335,6.439076666666667,1.7020700000000002,4.561685,5.6551,3.774975,3.589255,2.2229633333333334,4.689755,2.464715,0.4572169230769231,5.0473,2.89047,3.4445,5.15795,4.92175,5.13485,6.811702499999999,4.70778,5.4788,7.28522,52.766313333333336,4.64445,3.83792,4.436855,6.16195,4.263825,4.748555,3.94163,4.8421,1.8355,4.145415,4.27414,4.81943,2.519675,5.00615,4.68713,1.5873680000000001,5.9404,6.522,7.601303333333333,5.2958,3.338105,4.734735,3.27028,3.18974,3.610515,4.099075,3.625705,6.49347,2.636,1.06115,2.3188255,0.693584,0.693584,3.216215,0.693584,2.404540642857143,2.404540642857143,3.006102642857143,4.9424185000000005,5.266668142857143,2.3188255,4.818575,2.795045,1.41993,5.49805,2.19635,7.944621333333334,6.128963333333333,11.51176859848485,3.2448,2.9305800000000004,0.2132848484848485,1.7090683333333334,2.4379866666666667,0.97604875,1.7219666666666666,2.5757,1.712,2.879475,0.629703,27.825660833333334,1.97189,0.8170307692307692,2.8466400000000003,2.8466400000000003,0.4049627777777778,1.65133,3.264665,1.21775,1.921645,1.5430875,4.37895,2.88685,2.0276533333333333,2.382026666666667,1.1598249999999999,2.0032025,1.6150399999999998,5.5459794166666665,3.483675,6.944821666666666,2.528875,3.3661999999999996,1.0266466666666667,2.947225,4.79068,5.814064999999999,3.3302300000000002,2.24626,5.6973625000000006,2.3440625,2.6691233333333333,4.377985,1.1273033333333333,3.7667333333333333,2.4263600000000003,6.1221,5.0361,6.21475,3.735655,4.241245,4.241245,5.3049,1.7146,5.68145,2.7027566666666663,1.635365,4.523055,3.48109,6.295885,4.20871,2.852123333333333,3.3320066666666666,2.8549,1.1673571428571428,4.99771,1.03508875,5.335123333333334,4.513885,7.79199,4.711855,4.51682,4.02454,8.509598333333333,5.30745,5.34425,1.09127,0.6901671428571429,4.552535,4.782625,2.133315,3.17055,3.231245,4.23166,2.29867,5.0733,2.2924866666666666,5.36325,5.41425,4.850545,4.86977,4.390055,3.59077,6.6622845,3.26872,4.69045,3.206,3.93862,5.825274761904762,0.5892228571428572,3.7534666666666667,1.71051,0.6187577777777777,4.26131,2.68621,1.004835,1.91582,6.28081,4.250995,2.212,2.722936666666667,2.6282433333333333,5.12875,3.903415,1.6009250000000002,3.99919,2.5482766666666667,3.4723333333333333,5.097,5.11185,3.2734783333333333,3.751533333333333,3.6098,1.9936399999999999,7.35877,4.699725,4.78325,4.952415,2.3966225,4.438895,4.71801,2.93661,3.94717,10.850805000000001,3.73932,4.578416666666667,5.2118,4.66163,2.535875,4.52085,4.419555,5.0413,3.1866333333333334,4.15063,1.6757025,2.8933066666666662,3.44767,3.36583,5.4576,1.823726,4.68403,3.14672,5.29665,3.1153633333333333,2.464365,4.07134,4.110245,1.075075,3.350295,2.6958533333333334,4.417256666666667,1.617252,1.6582066666666666,1.113705,4.089545,5.86075,5.856084999999999,3.7489225,3.28498,2.396415,2.14891,2.450575,1.5941866666666666,5.7053,3.024825,1.54857,0.9136153846153847,21.056727000000002,3.046715,3.0874958333333336,4.948121666666666,4.024523333333334,1.2669666666666666,2.6934246666666666,2.843340909090909,1.27453,1.7947833333333334,3.936495,5.37015,3.8085683333333336,3.408335,5.30575,4.8811,7.149962500000001,4.81107,4.995875,3.749355,2.95382,3.964055,3.933735,3.4202,4.385015,2.0459775,5.0213,8.33247,3.40226,2.821515,3.58407,0.587505,3.2188833333333338,1.9832833333333333,2.43011,4.322795,3.58899,5.2159,3.538215,2.879875,2.3972275,1.75614,0.9573919999999999,1.7176966666666666,1.2661833333333334,4.00519,3.88495,4.601065,4.8734,7.35512,2.3148133333333334,1.36984,2.4617666666666667,8.067136666666666,3.49377,2.961325,3.148815,4.49503,3.7796725,3.523755,1.6630220000000002,4.308855,4.97966,4.15864,3.714865,3.51908,4.36537,4.90499,3.901795,4.616225,3.63652,1.9948,3.08235,3.41371,5.35425,2.876995,4.3432255,3.43312,2.901155,2.73244,2.4586900000000003,2.098403333333333,2.6644743333333336,2.6644743333333336,1.9201833333333334,3.04907,2.36008,2.334026666666667,2.01055,3.955655,2.32846,2.780086666666667,2.678546666666667,1.70103,4.1022,2.94512,3.30834,1.8657833333333331,5.19795,5.19325,4.668389444444445,2.259615,2.202065,2.52986,2.52242,2.160805,2.62513,1.9233175,2.706825,2.529475,6.717253666666666,4.47631,3.56387,0.58531125,4.39205,4.306685,4.46105,2.89498,3.781165,3.7426841666666664,6.1143,4.43258,3.22385,2.840544285714286,2.1327913333333335,2.4153,1.8045259999999999,1.675702,1.569088,2.0164,1.65702,1.373825,4.200990285714286,0.5965838461538462,0.5518033333333334,2.13542,1.5346966666666668,1.5433759999999999,1.4577499999999999,2.3159848484848484,1.4303766666666666,1.8890360000000002,0.62350125,173.95073381576267,0.5215973333333334,2.0572399999999997,1.046098,1.25565,2.060445,1.461745,1.9796375,2.5254166666666666,2.05838,7.07645,2.964945,3.4201438095238093,1.9205733333333335,2.97855,1.273375,1.273375,5.8173675,0.4820744444444444,2.431645,3.4065999999999996,3.2050733333333334,0.7923572727272727,0.6853058823529412,1.3721154871794874,1.1251818181818183,2.66895,4.16425,2.0526425,2.13518,2.25901,4.945041555555555,1.1094455555555556,4.503175,3.49498,3.53946,6.79107,1.9706066666666666,3.005795,2.55451,3.7944750000000003,2.518345,3.19447,3.3844,2.99977,4.307205,3.083505,5.80451,1.98366,2.387265,3.07648,1.5391,2.3996,3.06631,2.942135,1.728915,1.499405,2.229,4.427225,5.56525,3.23728,2.902815,1.43453,4.094115,3.3741333333333334,3.6954666666666665,2.84937,25.52501794658119,2.51107,2.906553333333333,3.208493333333333,3.4171,3.164896666666667,6.296143333333333,3.1280066666666664,2.5209733333333335,3.5554333333333332,3.526733333333333,2.093856666666667,3.20666,3.3263166666666666,3.2533999999999996,1.7270833333333335,1.5854382500000002,0.611842,2.3505233333333333,2.16943,0.2311775,2.62508,3.07598,0.2311775,0.2311775,2.0017441666666667,0.2311775,0.2311775,0.2311775,0.2311775,2.8852666666666664,2.677773333333333,0.5891569230769231,3.394200714285714,1.6081775,2.0131,5.1641,4.410455,6.4221,2.27673,4.98899,2.190915,2.789213333333333,1.3019442857142856,5.805626666666666,2.7801266666666664,6.5727625,0.9647749999999999,1.2984125,4.79413,5.07675,36.142579397019645,1.8313479999999998,1.3799066666666666,2.290976666666667,2.3630675,0.9552545454545455,2.3255,2.50564,2.7163066666666666,2.2893399999999997,2.495903333333333,1.65009,2.6769233333333333,2.3235766666666664,2.51896,2.708883333333333,2.2352966666666667,4.58197,3.4857666666666667,1.144292857142857,3.734495,3.983355,20.019149555555554,2.8861733333333333,2.8529033333333333,2.7440700000000002,0.9282400000000001,2.9613039999999997,1.7504688888888889,2.9613039999999997,2.3983,2.66581,3.1233299999999997,1.76012,2.0181425,4.74959,3.9006,5.26375,4.25977,1.6360800000000002,5.17805,1.808085,4.83944,4.139176142857143,4.81274,0.7844336363636363,2.133045,2.3501575,3.3063260000000003,3.35135,1.06173375,3.358085,2.15382,1.9136333333333333,1.048632,1.048632,2.1247433333333334,3.11263,4.742305,30.35124,6.229134999999999,1.8959833333333334,3.5516,0.37518866666666667,6.4141975,4.906135,2.8280600000000002,3.06896,5.9259225,4.0263,1.2304575,4.287285,1.194368,3.60891,4.6975,5.4201,2.11248,3.0182,4.190745,2.572035,3.682958,4.18498,1.3811166666666665,2.56969,4.008345,4.6631775,2.8862966666666665,3.2104266666666668,3.0955266666666668,3.176395,3.911785,4.356835,4.162733333333334,1.60149,5.9193,2.60942,1.741048,4.130445,5.4981,3.96366,3.65452,0.7764975,2.864425,3.512185,2.140765,4.590925,2.774825,3.70741,2.89949,3.1710766666666665,2.58951,3.33056,3.4217999999999997,3.3365666666666667,4.648855,4.70596,4.94021,1.808405,4.27837,4.08574,1.929365,1.751945,1.662195,4.099398333333333,4.87058,5.527843229166667,3.865735,3.8214666666666663,3.697125,3.2986299999999997,1.3242816666666666,3.373785,3.13082,3.94636,4.30809,4.59771,4.690995,2.781165,1.98925,1.612135,1.4717025,3.687195,2.45047,2.36526,3.339255,5.06085,1.884995,5.21905,1.3531614285714286,1.84242,3.2787,3.0742,3.414605,3.439685,2.98905,2.055595,0.9559236842105262,3.18748,3.831225,4.85458,8.600950000000001,2.155063333333333,3.07499,1.5615633333333332,2.63555,2.8712199999999997,1.2745416666666667,3.2007033333333332,2.77666,3.5345999999999997,3.9924666666666666,3.5314,6.8919266666666665,3.233556666666667,0.780749090909091,2.1596233333333332,3.23965,3.2316,3.3861,3.6915333333333336,2.54882,3.497965,3.77702,1.9616647142857142,3.806785,2.851448333333334,3.17369,2.1190533333333335,5.0554,5.6264,4.74899,4.207535,3.86388,1.3239444444444444,4.94546,3.475766666666667,2.360326666666667,4.74054,2.7225933333333336,3.0432166666666665,0.45611857142857143,0.45611857142857143,4.118236666666666,5.30445,5.54295,3.17695,4.41231,3.663775,3.109105,5.14195,4.12302,0.9778025,4.039415,2.7554833333333337,4.4605325,3.3334333333333332,3.065345833333333,2.0396366666666665,3.2637157142857145,2.621843333333333,2.9494066666666665,2.6316166666666665,2.8360066666666666,2.03674,24.12851010177866,5.1641,4.72076,4.05078,3.29407,4.663472499999999,3.302055,4.53604,4.711305,3.955595,3.624215,3.405285,2.7190366666666663,2.9717300000000004,3.0281866666666666,3.3810249999999997,2.8394733333333337,4.273885,3.34413,4.68793,5.01665,3.85692,1.401688,1.5008940000000002,1.5008940000000002,4.503895,4.13434,2.897263333333333,2.55467,2.9968466666666664,4.390325,3.39105,7.904436666666667,3.256016666666667,3.100046666666667,3.3089183333333336,4.802725,1.7400666666666667,6.161965,2.4059,2.4922666666666666,1.7227875,4.137855,3.35731,6.80494,2.953405,2.71773,4.25602,4.141561333333334,1.660805,2.797356666666667,1.6002433333333332,8.25769,4.18676,6.902036666666666,2.1500125,4.273045,3.642285,4.047915,5.36855,3.8344666666666662,3.8344666666666662,2.08696,4.5052,5.3193,2.397215,5.999500714285714,1.844,5.9365,9.464011666666668,3.6073,4.812239999999999,2.19715,2.165485,0.6345,4.46786,2.7513,2.8921,4.19624,2.47201,2.432373333333333,4.03505,5.3115,4.92323,4.203405,5.64925,4.380515,2.253335,0.9880454545454544,2.948375,3.28756,2.738113333333333,5.1194,3.94647,3.03851,2.54924,2.02922,4.78921,1.074105,5.1025,0.9908177777777778,5.3995,3.24117,4.98456,5.0897325,3.25031,3.26534,3.3508999999999998,2.350023333333333,4.246845,3.534555,2.49126,4.52885,5.3392,6.8133816666666664,4.682135,1.9851625,4.07394,3.7277,5.42452,1.87804,1.87804,2.8132099999999998,2.4544266666666665,2.4207933333333336,2.6154533333333334,0.8698130000000001,6.14925,3.800185,2.2612825,2.29073,2.634205,3.60125,3.21855,3.67736,4.166565,5.2403,5.4414,6.071,5.9215,1.42275,4.31104,1.0972916666666668,2.4171575,4.1537,2.431425,3.09803,3.18899,4.16101,3.4666,0.45863842105263164,4.58993,4.140905,5.0159,3.285455,4.966915,5.60365,4.461515,3.585545,1.88524,4.894435,2.051325,4.4576,4.4576,6.32475,5.005,5.5312,5.2821,2.58075,1.7400666666666667,4.52454,2.46204,1.6730266666666667,2.510345,4.183515,4.254875,4.708605,8.03987,1.7547499999999998,5.1475,1.3959833333333334,3.369085,5.78005,2.04099,4.832835,2.44188,4.52131,3.77964,4.531525,3.3399666666666668,4.06216,3.883225,6.1594,3.854405,3.797965,3.957305,5.6881,4.046975,4.668105,3.59517,4.54427,7.413618333333334,3.39565,6.96577,3.33704,5.36235,6.360280454545454,4.69986,3.36033,2.141275,5.6309,4.098205,0.8634055555555555,8.61917,5.724,5.2325,3.2740341666666666,5.2009,2.794305,1.715136,3.828045,1.07301,5.9343,3.17114,4.596795,5.3298,4.7775,4.122035,2.3445133333333334,4.022175,5.0809,1.35005,7.035795,3.049595,3.598295,5.43315,3.96338,2.020595,4.626845,4.849755,4.64737,3.0188166666666665,3.8079,3.64411,5.39355,4.561645,3.722855,1.7978975,1.7978975,7.466873333333334,1.5720857142857143,5.44565,4.26836,5.5818,3.974285,3.647555,4.72082,4.03189,0.8055766666666666,0.8055766666666666,0.8055766666666666,3.773995,3.061625,3.81217,4.620322222222223,2.817725,1.4465066666666668,4.73096,2.1977375,2.49019,4.24036,4.910315,1.37227,2.2341,5.95714,3.717625,2.577475,4.55525,1.5533325,1.9078775,3.01118,3.26884,5.8788,1.3997519999999999,1.588616,1.07699875,4.06122,3.374725,3.1988466666666664,3.1680466666666667,5.4228,1.7584060000000001,2.0195725,3.1758,1.552642857142857,3.43316,3.81911,2.5672,4.911775,5.6925,3.09997,4.625275,4.39934,3.33606,3.97463,4.44373,3.518845,6.58152,5.40625,1.9180466666666665,1.7765833333333332,3.58106,4.433275,4.047515,4.36356,3.2376533333333337,4.362895,5.5987,5.1398,2.66504,5.56675,3.964205,5.7182,7.78209,4.69758,0.7012790909090909,4.02254,3.7449358333333334,2.304285,4.21829,3.8222666666666663,5.5775,3.878375,4.35108,3.5853,3.99841,4.96022,4.61053,3.225155,3.556165,5.0925,4.228455,3.524225,2.866385,6.84978,4.84876,1.7773720000000002,3.216175,4.178105,3.765055,4.45657,4.68919,2.706106666666667,0.9036677777777778,4.287609090909091,6.7776725,4.0021,5.09715,3.505965,7.504493333333333,3.716605,3.3605,2.73996,3.560055,1.959505,3.3444,4.410905,2.607728,4.009035,5.2835,1.411945,4.739105,0.7104007142857143,5.0352,3.75848,5.74695,5.66195,1.4843983333333333,1.62603,4.10913,2.01187,3.98268,0.5390608333333333,5.35345,3.13446,1.48316,6.0627825,6.6263,0.876225,1.8026550000000001,1.2726359999999999,1.2726359999999999,1.2726359999999999,2.07723,3.985775,3.810425,4.44352,3.58929,5.0277,3.684195,1.90185,4.37026,5.6166,0.29278048780487803,3.60312,4.699625,5.53255,40.3805643560606,5.417796666666667,4.850695,11.786884333333333,5.0827,4.55213,7.835775,2.911515,4.520555,4.0667,4.75756,10.74343,3.72978,2.4916533333333333,2.7795,5.9721,4.069005,3.775085,4.32898,2.65056,4.55304,3.621425,7.095352,4.687125,5.1206,2.2824175,3.991085,0.52216,1.35204,4.16767,6.35525,3.103325,1.267885,1.267885,4.10122,3.973945,4.171425,2.663165,1.8303099999999999,3.755635,4.36184,1.7595725,3.265553333333333,1.7387460000000001,2.04584,4.052535,4.71051,2.1348125,4.637065,2.31534,2.224955,3.54197,3.697395,3.909985,3.82906,5.8214923333333335,2.4143673333333333,4.61631,0.7199054545454545,0.662745,3.739165,2.367835,8.876933333333334,3.4364333333333335,4.683535,1.6102175,4.78886,1.640195,4.13757,4.576755,2.7556066666666665,4.242205,6.11245,0.4240145,0.4240145,3.3280933333333333,3.2521400000000003,2.8139533333333335,3.977505,3.519715,5.0559,0.9225454545454546,10.137496666666667,10.24514,2.077415,4.99284,4.601655,5.1485,3.323935,2.6214633333333333,2.086,1.90834,9.7038125,2.2174675,2.7514566666666664,3.95201,4.84018,3.95201,2.58715,2.90209,3.0421533333333333,0.7410399999999999,5.526534166666666,3.30602,2.7184933333333334,4.284685,8.919844999999999,10.508635,4.65974,4.22426,4.220545,7.1427125,2.0937575,1.426075,26.836780833333332,4.003805,3.922085,0.960348,4.48121,4.08595,3.92478,4.56662,4.700085,5.90929,2.9549066666666666,2.073366666666667,0.7262058823529411,0.7570133333333334,5.38245,4.388785,1.4847466666666669,4.2533216666666664,0.8481333333333333,3.761233333333333,1.5103266666666666,4.0744,5.8731,1.954245,2.4791,1.992795,3.804705,2.898755,0.490475,4.247865,3.435155,3.1520433333333333,3.26595,5.55915,2.923273333333333,4.673615,2.9527,6.06545,8.802443333333333,4.85607,8.303545,2.5537,2.7655966666666667,4.26152,4.3411125,4.165375,4.589605,3.632755,4.885995,1.19822625,3.0963879166666666,3.3967679285714287,0.843004,1.5008940000000002,1.5008940000000002,5.36455,6.528091666666667,0.8645384615384616,4.80094,0.9648133333333333,3.0282966666666664,2.394906666666667,2.5348297727272726,7.0292,2.5079966666666667,1.2554333333333334,2.670306666666667,1.10652375,2.3004633333333335,3.0139266666666664,3.18523,3.263756666666667,2.498276666666667,0.9648133333333333,4.26282,4.616785,5.24825,2.869515,5.22225,2.24614,5.8309,4.684985,4.686685,2.9575866666666664,3.488135,2.1845425,1.5300275,4.366375,2.69665,4.2702,5.65725,1.754504,4.91208,2.6600633333333334,6.4423216666666665,3.32393,2.954105,0.9648133333333333,2.43403,3.57105,7.432091555555555,2.4116633333333333,1.5947520000000002,2.4116633333333333,0.4376583333333333,1.068924,3.347405,5.27375,2.1436825,3.411875,3.7600979999999997,0.582623,0.582623,0.582623,7.775895,1.583832,0.7564927272727272,36.75341585930736,2.036791555555556,0.7353155555555556,2.90825,0.7353155555555556,3.458515,2.08281,2.29634,2.5683633333333336,5.8105,4.85078,4.18657,2.3928166666666666,0.8978142857142857,4.221365,2.892576666666667,5.0976,1.0420871428571428,2.748175,2.748175,3.73519,4.41573,4.2713,5.186175,3.36237,4.19523,5.3086,1.826896,1.16749375,5.4147,6.5222,3.866785,0.618647,4.68981,3.9974925,0.91277625,4.390395,2.621045,4.10154,4.461315,1.9012960606060607,1.9012960606060607,4.390315,3.44544,0.9579400000000001,2.821935,3.0643766666666665,3.24132,3.84081,4.770605,0.5122871428571428,0.3247535294117647,0.3247535294117647,0.3247535294117647,0.8370406722689075,0.6422300000000001,0.58519,0.3247535294117647,0.3247535294117647,7.799215,0.3247535294117647,0.8370406722689075,3.457445,1.26953,4.375925,1.12927,0.7292861538461538,0.91277625,2.46068,2.574925,3.760525,2.877825,0.3247535294117647,0.3247535294117647,4.448745,3.58302,3.56337,2.847635,3.980885,1.580104,3.742935,0.58519,0.58519,4.775125,3.1972,2.77259,3.20261,4.4250766666666665,1.0405099999999998,0.7721846153846154,10.9816,1.2557,4.878155,4.396755,5.1788,2.1048400000000003,0.3763908695652174,0.90216625,2.9062966666666665,2.982235,3.14578,4.75292,1.416706,5.88655,4.210265,4.9752125,4.388255,2.9843766666666665,2.7845766666666667,5.869441666666667,2.98894,5.1771,4.125265,4.336943333333333,5.6818550000000005,0.5248046666666667,4.052445,2.9633766666666665,2.1309366666666665,0.6458211111111111,4.38134,4.80406,3.693115,2.364215,2.22643,5.2661,2.68126,2.97538,0.9503780000000001,0.4565484615384615,4.02299,0.34325733333333336,0.7844445454545454,3.8558,3.077615,4.145415,2.74633,4.91597,4.17559,6.361585333333332,3.765095,4.184765,4.354265,1.42506,4.58989,1.7950119999999998,4.06441,2.682925,5.768953333333333,2.56299,1.157048,4.92981,7.0868,6.65844875,3.6954333333333333,0.8203141666666666,2.7213499999999997,4.96356,4.09804,4.554535,4.60691,4.1511,4.575305,3.16196,4.17044,1.7322300000000002,2.253495,1.51256,4.188995,9.83803,3.94714,3.630825,5.81445,2.94721,4.46868,2.5931866666666665,3.065045,3.352795,3.11778,3.61864,3.53374,3.41842,5.2173,5.8439,4.516925,4.6551089999999995,5.24265,4.18091,2.977895,5.1345,7.883175,0.9109211111111111,3.9802,4.37403,3.90743,4.70824,4.729155,2.53711,8.686515,2.4388433333333333,3.096045,5.6993,3.695335,4.451845,2.242,1.837305,3.2072066666666665,3.2433099999999997,1.9296633333333333,2.987276666666667,4.25635,4.669025,4.10916,3.4047,5.208798333333334,3.33676,3.2192,4.024195000000001,5.3827,3.06535,5.659931333333333,3.994115,4.609085,3.469965,8.40819,4.057425,3.605395,4.369235,4.82109,3.416725,8.5134,1.32576,2.40884,3.93545,2.6532899999999997,2.6532899999999997,2.03942,7.77343,0.9248588888888888,3.82627,0.86098625,2.0195725,4.373475,4.67422,4.29794,4.12085,2.950613333333333,3.41796,4.356,3.777415,4.107495,3.18255,2.64725,4.750175,4.890943333333333,4.354535,4.62426,1.720094,1.6187719999999999,2.79248,5.5003,2.413065,1.6556166666666667,1.8965575,4.27413,5.0655,2.957915,2.670965,0.5265155555555556,2.456925,8.279150000000001,3.18167,1.3792099999999998,0.8845925,1.32029,1.9613366666666667,2.0531,0.9192233333333334,2.0180766666666665,4.194173,4.48111,5.50775,2.41338,2.152755,6.691715,2.889125,1.9762833333333334,1.9762833333333334,1.9762833333333334,6.532276666666666,2.1925433333333335,3.636985,2.57842,0.516204,1.138082,2.4028375,5.9401174999999995,0.44560888888888894,4.03362,3.917185,5.353,2.9317022222222224,0.44560888888888894,2.9317022222222224,0.993775,1.2762280000000001,5.8819,4.25917,6.9875975,4.200965,4.795655,4.02575,4.01514,5.31155,4.792895,6.25265,3.520155,3.316955,5.24975,4.85223,4.084195,4.39662,4.919405,1.3583100000000001,2.7696,1.21602875,2.3612425,3.197130416666667,1.39546375,6.62767,5.42452,2.8843133333333335,4.6934,2.801865,4.743645,2.79905,4.888115,4.919305,9.75227,5.667,4.835695,2.13823,2.79287,2.2808,0.587505,2.151473777777778,5.92115,4.964965,4.651165,4.64403,0.5554833333333333,2.0303875,1.42488,4.50843,0.8179923076923077,6.917705,2.11339,1.148625,1.148625,3.6093979999999997,1.979242,3.6681000000000004,2.76366,4.695095,3.65349,3.65349,4.833265,6.1895750000000005,2.752143333333333,2.4945366666666664,3.297556666666667,4.30028,1.9186800000000002,2.941266666666667,5.55115,5.48495,4.72584,4.29244,3.9259866666666667,4.942215,3.6753925,3.3427666666666664,2.2738825,4.195135,5.41285,3.25069375,5.165,5.7753,2.15326,2.721223333333333,6.41345,6.78435,1.515628,2.695175,2.42781,2.960296666666667,2.4272925,2.721925,2.4725035,1.0312911111111112,1.9254675,2.563075,2.4387075,2.3361183333333333,2.3361183333333333,3.015675,2.89345,2.201985,2.7091,2.520225,2.1073,1.5859213333333333,5.0088925,14.959621833333333,2.7516033333333336,3.7889,1.7434180000000001,1.7434180000000001,1.5130949999999999,1.5130949999999999,3.1276200000000003,3.7801666666666667,2.8812166666666665,1.82067,1.82067,3.910433333333333,3.041703333333333,1.12449,1.5205428571428572,3.146943333333333,2.8829499999999997,3.7472,2.590329761904762,3.1601766666666666,3.1914700000000003,0.70358,2.528925,3.5410990000000004,7.368613333333332,4.889535,4.441585,4.30588,3.2399,4.72752,4.716325,3.2738033333333334,4.58521,1.46804,3.1782800000000004,5.82815,5.51935,2.86039,1.4632283333333334,2.967055,2.558476666666667,3.324073333333333,1.5777999999999999,0.6903078571428571,3.168226666666667,5.297034166666666,4.74998,4.89907,4.79656,2.898706666666667,2.332123333333333,3.2564349999999997,2.79661,3.4508666666666667,3.124966666666667,3.753833333333333,2.5421833333333335,2.60299,3.4918333333333336,2.964183333333333,5.23365,4.885865,5.323925833333334,5.323925833333334,3.47743,3.895845,3.463065,3.61149,2.759415,5.043,3.22923,3.1248833333333335,6.05895,0.8042241666666667,5.0921,4.672345,2.482083333333333,5.240365833333334,3.610533333333333,1.6661333333333335,1.3997785714285715,2.301363333333333,0.999449,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.5211228571428571,0.5211228571428571,1.145695,0.9616373611111111,1.7539420075757575,1.0840971428571429,1.0840971428571429,1.2664508964646464,0.4874911111111111,0.3836355555555555,1.235365,1.6101125,2.8012433333333333,2.54825,7.24874,3.0689433333333334,4.16035,4.483741666666667,5.099823714285715,1.5915283333333334,4.76219,4.33609,4.21835,3.049555,1.460684,4.021412307692308,3.51163,4.784185,4.3799,3.211145,4.24539,4.51131,4.5841,1.210384,3.99075,4.83828,3.161455,2.29045,3.33808,2.426405,3.12455,3.8012,3.12833,4.753475,8.707155,3.21739,4.928545,4.169235,4.311791666666667,2.4395700000000002,3.39892,1.2145657142857142,3.897915,3.24389,1.850698,1.09156625,2.78241,1.0344083333333334,0.5680873333333333,3.531166666666667,4.090555,5.087066666666667,3.4346666666666668,2.3616925,2.70594,4.78221,4.1243,4.746855,2.633025,2.2518333333333334,4.405215,4.04557,4.084455,5.36575,4.78987,3.65708,4.727835,3.1039833333333333,4.982195,2.2029729166666665,4.94779,5.32495,3.2457,4.08712,2.489825,3.760925,5.383,4.32347,5.84085,5.2139,5.0191,2.6243866666666666,5.02095,4.99586,4.74493,2.2333925,1.1384175,4.14169,4.883635,4.142185,4.83149,1.99194,4.33079,2.25021,5.08965,4.679385,5.2152,2.402375,4.33688,4.69232,4.45239,2.670946666666667,4.985675,4.852995,4.777835,3.70098,2.2333925,2.38889,3.1356,4.30957,4.145455,4.28415,3.543665,5.0543,2.500615,7.60974,4.86068,4.041685,5.184050222222222,4.5433975,5.4237,3.6316837499999997,2.514603333333333,2.514603333333333,3.97081,3.60097,4.47797,2.1868225,3.00847125,1.04890375,2.750833333333333,3.0867966666666664,2.3677466666666667,3.404033333333333,4.704155,2.89809,5.89405,2.7384633333333332,4.18861,4.743002499999999,1.896335,4.14994,2.1515833333333334,2.99648,3.885505,0.9232549999999999,5.09445,5.11455,6.59038,4.88475,5.3824,1.3840328571428573,4.455875,6.1827,8.40202,3.17375,3.5096666666666665,1.963448,0.830033,3.936815,0.9924999999999999,4.590385,4.83669,4.92872,3.12188,3.92514,1.3567171428571427,3.035685,3.634175,4.31216,4.320675,4.2453,4.19742,2.555275,4.253915,5.2014,5.6485,4.34039,3.98685,0.41377444444444444,0.41377444444444444,0.41377444444444444,0.41377444444444444,5.3858,2.590785,6.0005,2.955106666666667,5.41625,4.596975,3.77787,2.43489,2.48731,1.49529,5.35035,2.8136799999999997,3.90232,3.96404,3.329695,1.870365,1.1290425,4.44318,2.567065,5.914541666666667,3.597285,5.56035,2.40037,1.6201566666666667,0.8460588888888889,3.190135,4.51266,3.153865,2.30671,8.039470000000001,4.21001,3.271725,2.34564,0.483513,3.22179,2.602795,2.30558,1.96576,3.735095,3.89084,3.21289,3.1523833333333333,3.39144,3.72464,4.421195,3.38011,4.17574,3.834115,5.377588333333334,0.6472726666666666,4.32131,5.59065,5.20135,4.517995,3.29495,5.1687,4.376565,4.11832,5.370146666666667,5.58675,3.865235,4.245385,3.5163450000000003,4.30973,2.483465,8.29764,4.688195,4.5291,4.88197,5.15845,5.179,3.653515,1.1214333333333333,5.639499166666667,3.479505,5.18225,1.433765,4.38526,4.63808,7.162438333333334,4.583825,3.070775,2.1416366666666664,3.699635,1.5702,1.23773625,4.353725,6.4087,2.039076666666667,2.22999,2.82672,3.918945,3.525355,3.644145,5.29235,1.8367133333333332,4.34162,4.0191285,3.30845,3.4802999999999997,3.43756,2.744525,2.545515,1.8101025,2.46122,2.6194833333333336,4.119355,0.5674791666666666,2.54219,4.2674,2.739395,3.6636333333333333,4.607975,6.31725,3.790585,17.636464151515153,2.6885733333333337,3.8960000000000004,1.6522279999999998,0.8540518181818182,0.8540518181818182,0.8540518181818182,0.8540518181818182,0.8540518181818182,4.62357,4.68479,5.2944,9.474211,2.69225,2.69225,4.691325,4.817484166666667,1.3176175,2.1014133333333334,4.286905,2.44837,2.16049,2.13676,2.989065,3.8481753333333333,2.27175,3.71911,0.8041714285714285,2.9489900000000002,2.9248966666666667,2.98611,1.4388933333333334,3.4027333333333334,2.0223833333333334,0.96731375,3.0144800000000003,2.8879566666666663,1.1811444444444446,2.545783333333333,2.641793333333333,2.225706666666667,4.631296666666667,2.02611,3.1330766666666663,1.982,2.5483766666666665,1.1547333333333334,2.73941,5.001742666666667,3.529033333333333,1.08093,2.736693333333333,1.318345,2.9981899999999997,2.8772,4.471125000000001,3.172026666666667,2.6361666666666665,4.691118,2.7883133333333334,2.190565,2.9175833333333334,2.954743333333333,2.0453033333333335,2.72555,3.2336500000000004,3.2483733333333333,2.87725,2.929046666666667,2.729343333333333,2.417065,3.7602955,3.7602955,2.8305866666666666,1.97806,1.9253600000000002,2.95402,5.614269999999999,2.62977,1.9719300000000002,1.6170125,3.09386,4.33238,2.549986666666667,1.154546,2.7193593333333332,1.7654333333333332,3.7148333333333334,2.2241233333333335,2.8368233333333333,2.127866666666667,3.6727666666666665,1.197076,1.66758,1.4697466666666665,4.214908333333333,2.59507,3.870565,0.9582722222222222,4.212075,2.0362966666666664,2.560675,1.7850860000000002,1.5763983333333333,3.3232766666666667,24.115794958874456,6.6556266666666675,2.595406666666667,3.5500749999999996,2.1939933333333332,10.284106666666668,2.8680966666666667,0.95385875,2.5385666666666666,2.344786666666667,2.0592533333333334,2.5569433333333333,2.5364,2.4372633333333336,0.8589880000000001,2.9843933333333332,2.4288466666666664,2.704893333333333,2.7126099999999997,2.802296666666667,2.0599266666666667,2.266173333333333,2.9209,2.5229500000000002,2.2565075,1.592684,5.69223,4.72958,2.40008,2.76175,2.24168,2.4661466666666665,8.159342500000001,2.05058,5.11135,2.240295,1.97832,7.63535,3.0901866666666664,2.8352166666666663,2.51065,1.8676860000000002,1.5726542307692308,3.326143333333333,3.237716666666667,4.28152,1.902965,3.8843666666666667,1.6603825,1.6603825,4.274055,4.43996,2.808492,2.808492,5.987226666666667,3.441045,0.411798,11.175166883394382,1.2459466666666665,0.9245485714285715,3.5776808333333334,1.4425024786324787,1.683075,6.254993333333333,3.6366,0.8021245454545455,2.2187433333333333,4.965974060606061,2.6906025,4.08373,1.3906100000000001,5.8158,5.09195,4.780895,3.4890905,2.04326,2.72815,2.6772733333333334,3.0277499999999997,2.19124,5.397893333333333,4.881915,4.88975,1.80636,4.881,4.121605,3.11119,2.29127,5.0381,2.482206666666667,8.418906666666667,6.5988475,2.1118425,2.400875,1.7360959999999999,4.570566666666667,4.570566666666667,3.5056,2.9105600000000003,3.1489374999999997,5.35095,9.7698325,4.050955,2.5074,5.5037,4.28799,5.5915,1.918726,0.883625,1.3160466666666666,4.51378,4.656355,3.6468666666666665,2.9613066666666668,3.6260999999999997,2.2195199999999997,3.934095,4.73201,3.429595,5.6619,3.21311,4.282338666666666,3.618,3.0900833333333337,3.2484699999999997,6.2018,3.109925,5.5092,5.226,3.27089,3.424825,3.424825,5.8022775,12.132403333333333,3.625633333333333,6.48736,7.44373,3.52151,2.48705,3.912105,1.3358033333333335,3.64541,2.209595,2.89155,2.9936333333333334,3.4645333333333332,2.20118,2.4850933333333334,3.1107266666666664,2.5689033333333335,3.1210066666666667,3.035876666666667,4.01355,2.50184,2.83449,3.99371,3.1283766666666666,2.7253666666666665,1.1578725,2.1601825,3.3022633333333338,2.7651266666666667,2.4398133333333334,2.44467,3.4468333333333336,2.1961866666666667,2.3621133333333333,2.603473333333333,3.190376666666667,2.83177,3.2402233333333332,2.70572,3.15152,2.906546666666667,3.37458,2.62938,2.4011766666666667,2.2686566666666668,2.3461966666666667,2.7770799999999998,3.4156999999999997,3.2444866666666665,3.22961,2.0366475,2.0366475,1.0552316666666666,1.6630220000000002,3.982865,3.321555,2.4946333333333333,2.20118,3.6000666666666667,1.402677142857143,2.7635,0.5923666666666667,3.6149,3.26304,3.288325,3.04077,2.4894000000000003,3.056126666666667,3.10376,2.73268,3.3136466666666666,4.7475700000000005,1.539746,2.420576666666667,2.57376,1.88494,2.19569,3.02149,2.8658266666666665,1.7278980000000002,2.7260833333333334,2.6184933333333333,2.6897533333333334,2.68836,2.8749966666666666,2.9891166666666664,3.278893333333333,1.384925,3.1678433333333333,2.4067933333333333,3.7230333333333334,3.416866666666667,1.920945,1.8039466666666666,3.4741,2.6662433333333335,3.4562333333333335,2.6227033333333334,2.2356266666666667,4.884705,2.9973733333333334,1.9025299999999998,1.530936,3.366766666666667,6.051333333333334,3.4088333333333334,3.2614,2.897013333333333,3.3889333333333336,4.72176,1.55143,1.163822222222222,2.9452966666666662,1.90730625,4.778565,2.9785500000000003,2.9953533333333335,2.82668,3.355066666666667,2.2803733333333334,3.0517733333333332,2.49923,1.675404,2.77942,3.41167,3.519825,4.167195,4.27944,1.5927825,2.73117,3.286535,3.407255,2.3937066666666666,3.5162333333333335,4.023633333333334,3.8225,1.721125,5.959464,3.1973275,1.6171616666666668,3.547775,3.532115,2.873475,4.67077,1.8873799999999998,1.8873799999999998,3.2231533333333338,2.8635533333333334,3.38667,5.51615,4.41963,4.280052666666667,1.2688760000000001,3.0235800000000004,2.639136666666667,3.8992475000000004,3.0081133333333336,4.809964666666667,2.687386666666667,2.41098,2.5977433333333333,3.341065,3.73277,1.672792,3.0937866666666665,3.023485,2.351555,4.78047,1.3906716666666668,3.690455,4.25281,2.600645,3.390665,4.027275,1.6398475,1.6077366666666668,2.419425,1.0969716666666667,2.1560488095238095,1.9716325,0.45302785714285715,4.544395,2.10363,5.17895,4.396385,2.892465,4.583489999999999,3.430733333333333,3.0563466666666668,3.4690666666666665,2.605653333333333,3.2648966666666666,2.96761,3.1964799999999998,2.2382500000000003,0.6693984615384616,2.240416666666667,0.6110578571428571,1.8627933333333333,2.5148366666666666,3.18694,2.96672,1.3534866666666667,1.28244,3.761745,4.43546,3.54841,3.69192,3.976225,1.743645,4.223745,7.496274444444445,3.46883,6.10777,1.4710075,4.096105,1.84765,4.28796,3.86691,2.245475,3.99092,3.495175,3.70658,4.108975,2.15353,4.40317,6.4929325,5.24045,3.4354,2.9646,1.6435675,1.93499,4.23319,3.705395,3.164225,3.702145,3.88157,3.55517,1.6640275,3.75414,3.38474,1.93702,4.42395,0.935075,3.47324,1.78332,4.112845,4.596105,3.69873,2.8219225000000003,3.937315,3.364335,2.17703,2.39418,3.7106999999999997,2.156415,5.538445,4.050535,4.621285,2.569915,2.988725,4.924765,4.418695,2.7338240000000003,2.7338240000000003,6.095193,3.691758,2.5368199999999996,2.908785,2.25764,2.77305,3.609025,4.071186666666667,2.608698,3.82188,0.977994,3.80095,2.827065,4.014975,3.142915,1.474895,1.4351675,3.162,6.129137999999999,5.204305,3.269315,1.6944175,3.616415,3.40565,0.779935,2.968395,1.354448,5.69043,1.33606,3.796925,2.315245,1.3534866666666667,3.23805,2.729415,4.374155,7.013731666666667,4.28957,5.488875833333333,2.459065,2.804935,4.414435,3.90888,4.67468,4.46278,0.968835,1.5854382500000002,0.97359625,2.51999,2.331405,4.48165,0.97359625,4.47776,2.533005,1.3720125,1.3720125,1.93702,3.91789,4.37236,4.44472,1.708948,1.708948,1.1109366666666667,3.079115,1.988395,5.93597,4.037535,3.557695,3.14829,1.0607042857142857,3.50449,3.112835,4.270875,3.901285,3.9187925000000003,3.9187925000000003,3.60893,4.01578,2.0905125,2.850015,0.9913955555555556,2.55809,3.616715,2.447686666666667,3.6597033333333338,3.6597033333333338,3.27193,4.85565,4.735545,2.89634,3.365545,4.234425,2.8857733333333333,4.7331883333333336,2.825505,4.21387,8.793614999999999,5.1422,2.55567,3.220725,2.983925,4.657245,3.2475819999999995,7.745315,4.810665,4.294485,3.477625,3.59737,3.829755,4.36793,4.662745,3.35022,3.9444,6.476058333333333,2.7702,2.209325777777778,3.16853,3.33418,3.07411,4.82423,2.2229633333333334,2.3867933333333333,2.80432,2.761655,2.5718099999999997,7.0054213333333335,1.448,4.541635833333333,4.541635833333333,3.537505,4.133704166666667,3.07065,2.592496666666667,5.19405,4.364961,2.2711159999999997,3.85377,4.06166,3.492965,3.096985,3.16457,6.55217,3.48046,5.2499,3.205495,4.615915,4.200605,4.256075,2.8635533333333334,1.8985433333333335,2.83409,3.982005,3.00883,3.293861666666667,3.285235,6.717203333333334,2.613825,2.0832775,3.6872075,2.4329533333333333,4.06703,2.846545,0.779935,3.492105,4.298175,3.71495,6.0070274999999995,3.30185,2.555265,2.9869466666666664,2.9869466666666664,3.7206558333333333,4.471415,4.140375,2.1435675,5.796165,2.1445925,4.461685,3.621835,8.10117,2.55704,1.5338833333333335,3.30431,4.42077,0.73357375,4.132815,3.665185,2.984945,3.144575,4.35424,2.08061,2.32144,9.147625,3.398695,2.89455,1.33606,3.679085,2.751595,2.34452625,3.92457,5.4171125,1.6426125,1.18173,1.117995,4.270945,4.10104,2.97404,3.5832825,3.5832825,1.6640275,2.488795,3.0082344444444447,0.8998144444444445,3.30859,1.14189,1.5927825,3.87453,3.729635,2.68633,2.834645,3.0378558333333334,4.253765,3.991085,3.22839,3.35129,2.833825,4.36493,6.14879,4.002585,0.8931325,2.4984865,8.39333,4.8541,4.206345,1.0634775,4.877443333333334,1.37963,3.87883,3.87883,3.57631,8.775783333333333,0.8094711111111111,4.74456,4.408925,2.2812966666666665,3.9491941666666666,3.7032,2.237365,10.318460666666667,1.87509,2.4563099999999998,3.44657,1.7359133333333334,4.342996916666667,3.1676,3.520695,3.3683466666666666,3.369185,3.74597,1.2617833333333335,7.06785,3.916095,4.25781,4.29635,2.0474275,2.8219225000000003,4.458595833333334,4.0795,0.6584138461538462,4.467735,4.20099,4.742505,2.262365,1.38032,4.367465,4.184305,8.52807,0.7580207692307692,1.052545,1.052545,2.08007,1.39229,1.263078,1.8467500000000001,4.511855,1.3406933333333333,0.8424685714285715,4.1264125,3.48503,1.611905,3.35368,4.569555,3.852335,0.709678,1.81775,9.791125000000001,3.063391666666667,3.77119,2.687755,1.6746225,2.3802933333333334,2.769305,4.63905,4.54163,3.91592,0.9415557142857143,1.482246,0.906587,4.52134,4.09554,3.914365,0.8998144444444445,1.808268,4.016935,2.4827632142857143,5.394639166666667,1.3466575,4.521525,0.5993350000000001,0.5993350000000001,0.5993350000000001,9.5085,3.9971,1.14189,3.82214,4.690925,2.70936,3.422765,4.051024999999999,2.640355,1.9084950000000003,1.9138633333333335,0.709678,1.489613,0.5672333333333334,0.6831416666666666,1.4207400000000001,3.533645,3.826375,2.0050975,7.138355000000001,4.820685833333333,0.7064277777777778,5.86025,5.727316666666667,3.524475,4.40969,7.653674666666667,3.891215357142857,4.820685833333333,4.337048416666667,2.31458,4.605595,3.555205,7.23742,3.54019,0.483513,1.502898,4.075555,1.69737,1.18173,4.101205,2.3059499999999997,1.823585,3.313795,1.6248159999999998,4.37852,4.425445,4.11101,4.675585,7.00992,2.778265,3.98369,1.354448,2.37834,3.538345,3.45483,2.2711159999999997,4.221435,2.36968,4.72092,2.867875,2.517895,3.20926,1.596004,3.899985,0.8998144444444445,2.18947175,1.117995,2.232885,3.735245,1.448,1.4207400000000001,2.456565,3.88795,7.97961,0.9415557142857143,1.0634775,1.189388,3.7486,3.80124,1.189388,3.97087,2.37834,0.73357375,0.8998144444444445,2.08007,1.354448,0.45302785714285715,1.5873680000000001,4.26828,2.2812966666666665,1.3777533333333334,2.89205,1.721125,1.87509,2.899538333333333,1.9138633333333335,4.1618,2.899538333333333,0.779935,2.679073,2.562925,0.06256022727272727,0.06256022727272727,0.06256022727272727,0.06256022727272727,0.06256022727272727,3.4265333333333334,2.576093333333333,2.67834,2.719303333333333,4.955525,3.785765,1.7850860000000002,3.65895,3.58286,2.12568,4.902535,2.591095,2.397685,2.577315,2.798265,4.383755,8.538070000000001,2.3033975,2.20084,2.957744642857143,0.986887142857143,1.368215,2.3749233333333333,2.20254,1.5814275,2.7897366666666668,2.2550733333333333,2.4969633333333334,2.786,2.6823366666666666,3.760465,4.15439,2.681783333333333,1.35716,3.70909,3.77754,1.48609,1.4800879999999998,1.4800879999999998,1.4800879999999998,3.611545,3.029943333333333,1.11653,2.56921,1.3095142857142859,4.421485,1.6960233333333334,6.518685,3.4812375,2.7666299999999997,2.9692619999999996,2.9692619999999996,5.133073333333333,3.08637,4.399135,5.27,2.163745,3.1089800000000003 -GSM1946782,0.0,1.9773125,1.9773125,1.60017,4.28808,6.1335,2.271093947368421,1.5614666666666668,7.737353946078431,4.745405,3.2307633333333334,2.894455,2.555025,3.57333,4.41934,1.8453,1.52633,5.10945,2.617176666666667,2.3315225,4.684605,5.448783333333334,4.06763,2.676165,1.9324860000000001,4.452285,4.86674,4.311555,0.6857366666666667,1.690346388888889,2.0674172222222222,1.819365,1.54105,1.1075457142857144,0.7130666666666667,3.1589582142857147,1.498595,2.0451925,1.2714375,2.1186,1.1303175,1.0975925,1.151456,1.547954,0.9252179999999999,0.931184,0.74763,1.2252428571428573,1.791908,1.827514,1.476226,2.01194,1.7337440000000002,18.4075515,0.37065266666666663,0.822402,1.1450879999999999,1.781246,1.540996,1.813982,1.0406542857142858,1.0406542857142858,1.0406542857142858,1.1051883333333332,1.008632,4.7913375,1.119505,2.5078,2.147245,2.605075,0.9831239999999999,2.2610375,2.35144,1.8881925,1.70497,1.845025,1.5105325,1.6976425,2.4044466666666664,4.114625,4.770835,5.045,1.52916,4.77157,4.580428333333334,4.557675,4.223365,1.114815,7.50663,0.604964375,0.604964375,2.2680575,1.1934014285714285,16.746565,4.42763,5.51255,5.4436,4.5,4.175365,5.33455,0.49121888888888887,2.3232083333333335,1.80416,2.4189375,4.679495,3.828255,1.4908625,3.15138,3.1511633333333333,3.02207,3.6537,3.26418,5.01445,3.1115555,4.76861,3.112413333333333,0.7037672727272727,1.4791079999999999,2.689475,4.821875,3.994515,0.57532,3.76778,4.01188,0.9346375,4.47999,1.7378670129870128,2.517665,2.5385,2.028795,4.492725,5.83715,3.345485,2.7430833333333333,3.3448333333333333,3.0561900000000004,4.399335,3.0715800000000004,5.7051,3.48288,4.70774,3.40357,2.42164,3.740735,2.51915,6.817288333333334,3.51843,3.60507,5.69075,3.25827,4.64259,0.7509,9.740366904761904,3.511935,1.8799766666666666,1.785065,3.265086666666667,2.378475,4.907155,5.6558,2.2132975,5.016209999999999,2.73846,4.83898,2.2132975,2.7942033333333334,4.339765,5.264335,3.805105,8.602666666666666,3.956965,5.2279,2.85537,5.17585,4.6661,1.9285166666666667,8.06811,4.113305,4.309815,3.45455,3.61507,3.309905,2.317585,5.971265000000001,2.40895,4.295,4.058215,5.325,5.0756,3.948245,1.5315216666666667,2.703575,2.95989,2.0837525,2.0837525,6.173042428571429,3.03637,1.8321066666666666,4.592075,4.63316,2.7278,1.4484616666666668,0.9463433333333333,6.8278,2.74604,6.8364,4.18069,4.20619,3.672455,3.16333,3.815475,3.52082,3.68269,4.11324,5.7357,2.82681,3.619645,8.989366666666665,4.753185,3.5325333333333333,3.16316,2.7161666666666666,4.0140666666666664,4.4024725,1.9387525,2.8220466666666666,2.4364,1.8475380000000001,1.7730733333333333,2.643186666666667,1.6806425,2.0862025,3.0590566666666668,2.94914,2.36707,2.75117,4.580428333333334,3.44659,3.640855,3.69847,4.31133,1.4235016666666667,2.14667,2.9060237142857144,2.14454,2.5839266666666667,2.0948366666666667,3.441966666666667,1.814784,1.3565333333333334,2.8768966666666667,0.6681079999999999,1.5952766666666667,0.58833,0.58833,1.56825,2.58188,2.1947266666666665,1.25704,1.5474633333333332,0.32565076923076924,2.6961333333333335,0.6681079999999999,1.2963866666666666,0.1875762162162162,1.3790733333333334,1.9714675,3.332273333333333,1.8550000000000002,2.1583033333333335,2.5343,2.1827466666666666,2.3165766666666667,2.503226666666667,2.29569,2.202393333333333,2.694523333333333,1.8659166666666664,2.75366,4.07018,0.6730483333333334,1.7836299999999998,2.47967,1.89684,3.47912,1.468572,2.49563,2.1741466666666667,4.22956,1.9879266666666666,6.867941904761905,1.6095285714285714,2.8531566666666666,1.9477675,1.9635925,3.4738,1.9161175,1.8911575,4.170095,2.9393499999999997,2.19014,4.04406,4.46555,4.32439,3.641715,2.27694,3.34326,4.486422666666667,3.751455,3.81754,4.26469,4.58493,2.9622,4.08969,3.39202,0.87766,5.03505,1.2376500000000001,4.8936,3.71019,5.79231,3.88755,4.199,0.94089125,2.222045,3.46946,4.00767,0.7774485714285715,1.1756165811965813,2.024960238095238,3.015460857142857,5.87566,5.600255,2.37709,3.205285,5.42805,0.32729857142857144,3.34947,2.315825,0.9896,4.98637,1.977135,11.852565,1.20860875,1.34258,2.2143433333333333,2.328475,2.225636842105263,4.909986842105263,0.41965684210526316,1.7012266666666667,3.1639533333333336,0.9992975,4.003933333333333,1.1663242857142857,5.2362,3.660235,2.07018,5.94535,5.38235,2.3404425,1.136197142857143,4.529815,4.30794,4.204445,0.8749281818181818,8.26865,2.9491,4.606755,2.5477666666666665,2.515143333333333,4.47722,2.2201766666666667,2.7832000000000003,2.0175933333333336,2.4789033333333332,3.23385,3.0635999999999997,0.34860125,3.913235,3.67473,3.70064,3.704475,4.284215,6.215849,4.131935,1.581305,5.47185,4.65358,4.44814,4.49666,1.1260316666666668,2.58052,3.3383333333333334,2.4807366666666666,15.42117,2.836855,3.60721,4.082585,5.3592,2.62909,5.155549583333333,1.5969975,0.7646766666666667,2.611525,3.71044,3.850605,3.877165,6.498128333333334,3.13449,2.21006,2.024405,3.3961333333333332,4.99811,2.3105425,0.37811129464285714,2.533209456521739,1.9215825,1.13681375,0.47449477290372666,0.5708782511645962,0.37811129464285714,0.37811129464285714,0.37811129464285714,1.1106525,1.3670225,0.8528,1.4545975,4.4433175,0.21394117647058825,11.39828683982684,3.4464,2.965973333333333,4.41557,4.606875,3.832655,2.12252,4.880685,4.022456333333333,4.41057,4.230285,0.7057423076923077,3.3877,4.32844358974359,0.5100192857142857,3.083375,2.917946666666667,4.725935,0.48968545454545453,1.78867,4.41725,3.316035,2.0703375,1.79579,1.8158,3.216343333333333,3.88705,2.964895,2.86565,5.2572,5.61815,5.1508,3.3535,3.66389,6.817475,3.8527,5.21785,0.4046128571428571,3.135403333333333,4.241361666666666,1.9439333333333335,2.678605,2.7582933333333335,5.673385,0.6220833333333333,2.524525,4.52425,4.139485,1.01418,4.98931,2.982155,5.14365,3.2021033333333335,4.313075,3.41175,4.245805,1.227895,3.392235,2.790626666666667,4.89006,3.98736,4.645305,5.88105,4.46106,2.6015,5.96464,2.46639,3.553785,3.3357666666666668,2.6952933333333333,2.86609,2.2109799999999997,1.784774,1.5095466666666668,2.0450433333333335,0.8214428571428571,1.5269166666666667,2.5858666666666665,2.22267,3.1256566666666665,3.2746866666666663,2.90095,0.9262755555555555,4.97585,3.3722999999999996,5.507235416666667,2.73321875,3.242853333333333,3.047283333333333,1.7832,1.7832,2.6720103896103895,2.6720103896103895,3.609576818181818,0.5154799999999999,1.7262933333333335,2.2359833333333334,3.7456,2.1629159523809527,2.1629159523809527,2.1629159523809527,7.616811666666667,4.336073333333333,0.9648,3.243635,5.38535,2.522475,4.70998,3.20674,2.340595,4.307885,3.062196666666667,3.2473799999999997,1.316175,1.8641566666666665,2.795866666666667,2.5095566666666667,2.49324,6.0721,4.3266,3.9977666666666667,5.153713333333334,2.0259833333333335,2.89144,3.4061333333333335,1.0821922222222222,2.1024066666666665,4.7679046666666665,7.78733,1.44733,2.860415,4.843445,1.911976,1.9345575,1.9345575,1.08136875,4.884635,7.973115,4.462165,5.159526,4.659385,1.7879666666666667,4.175275,3.519355,5.0241,5.24904,0.35228263157894735,2.87964,2.40712,4.08181,4.129945,1.829444,1.9826975,2.561725,4.39189,4.17253,3.485355,2.419125,1.513582,6.82058,5.2017,3.81763,3.456825,5.4725,4.927815,4.91822,3.515715,3.4656025,1.8960875,1.1769157142857143,2.64483,3.915865,3.62191,5.36169,5.97226,2.40135,1.8409033333333333,2.53616,2.74503,2.9611133333333335,0.7546642857142858,2.24778,3.46475,1.10227375,5.1274,3.33268,6.184855,1.2704389393939395,1.2704389393939395,4.24578,3.634805,3.641165,5.647,2.7448833333333336,2.3070233333333334,3.66633,3.379975,2.108785,3.3990666666666667,2.6882066666666664,4.19997,3.49327,3.973175,4.705925,1.0501711111111112,2.69308,4.29847,4.229425,3.19709,2.6468933333333333,1.912785,0.89283,0.89283,0.89283,0.89283,1.7252466666666666,3.939495,3.939495,1.73748,7.163338333333333,3.315555,4.58898,3.3442333333333334,2.743475,5.12435,4.07659,4.926785,5.295,1.88924,4.179485,3.98954,2.76599,3.49955,3.39518,2.51124,4.04985,1.88079,4.016165,1.737305,3.5032533333333333,2.90654,1.6371925,1.1508216666666666,2.82717,4.66832,1.408346,0.8527344444444445,3.963495,1.23771,5.056216,4.381605,1.3949728571428572,3.580795,0.7473544444444444,2.6604633333333334,2.8064533333333332,2.5287833333333336,2.79059,4.21181,2.8938466666666667,4.87617,5.4132,4.3384,4.480465,2.2851075,1.3041542857142858,4.078105,5.21945,1.7390375,1.7390375,4.077285,0.28381866666666666,2.3613633333333333,0.28381866666666666,0.28381866666666666,0.28381866666666666,0.28381866666666666,5.15615,2.641226666666667,3.357165,3.5146,3.2283633333333337,4.817375,2.6800800000000002,1.0337175,1.0337175,0.8340433333333334,0.8340433333333334,3.743185,1.77357,4.42731,1.5352242857142857,1.5352242857142857,4.87244,0.61983,2.26334,7.457111666666666,4.93162,3.247225,3.682205,1.0159775,2.22357,2.1016425,4.916005,4.40425,4.41415,3.75857,1.2828357142857143,2.852585,2.0297225,7.4831,1.719005,4.41241,4.702185,3.19995,3.896015,5.74087,7.9903,4.06904,4.71318,4.073245,2.4787375,3.16105,2.31762,2.24419,1.972185,3.75664,3.51472,5.834951666666667,6.55677,4.40001,1.1063566666666667,1.5548,4.00653,3.7076,2.138745,4.40173,3.682945,4.679433333333333,1.6964033333333333,3.685233333333333,1.4967333333333332,6.5326933333333335,2.77354,2.40806,2.3194766666666666,2.54699,3.5968,3.5879666666666665,3.6067666666666667,2.8947633333333336,3.483366666666667,1.7608840000000001,3.561135,2.993315,3.029895,0.40168400000000004,2.93799,4.34261,2.626825,5.6096,5.1012,4.79997,6.968681999999999,4.790425,2.2326333333333332,4.24721,5.23705,1.6298616666666668,5.1068,5.7807,5.2793,4.791765,3.190085,5.43035,5.19065,4.216775,5.545186666666667,7.857125,4.295205,1.3066183333333334,1.4440483333333332,2.85702,1.939282,4.552215,4.05224,5.69519,2.5987833333333334,2.4498133333333336,2.68839,2.4687566666666667,2.45461,1.02925,0.5199864705882353,4.185,3.896275,3.7682,3.919995,2.987465,3.4453333333333336,5.456781666666666,3.10603,0.6009176470588236,3.40304,5.7932,2.174195,1.677938,3.74736,3.30942,2.4367433333333333,3.7992666666666666,4.26244,2.7103266666666666,2.29426,2.23033,2.4665266666666668,2.628025,4.36582,5.022589166666666,6.280425083333333,1.395216,5.04405,3.607645833333333,5.3886695,2.7556933333333333,2.907895,2.31145,2.20424,1.39153,1.39153,2.57801,2.234366666666667,2.6077233333333334,4.08754,1.648978,2.280555,1.97317,0.48709875,3.62583,0.6140375,1.0451625,3.48873,4.35073,3.858965,1.7097025,4.72788,3.1341366666666666,0.7799071428571428,4.482895,4.031149523809524,3.1846433333333333,2.48548,5.2175,0.27762241379310343,2.247042,3.0601,1.4167325,3.68451,6.66265,2.302645,1.27327,3.79981,3.71295,2.73345,2.73345,3.48812,2.826195,4.8842,5.708358333333333,5.1639,0.9766900000000001,2.8132966666666666,2.4306433333333333,4.79019,5.29275,4.92587,5.01985,4.304166666666666,3.8208333333333333,3.6958333333333333,3.6203000000000003,4.027466666666666,3.0183,3.21958,0.6450614285714286,2.4720575,2.50505,3.51641,3.283516666666667,3.160413333333333,0.7614333333333333,2.7526,3.7776045,4.839175,5.86675,4.489345,2.0695925,2.0695925,0.8868579999999999,3.16411,4.574485,4.0671,5.177437857142857,3.066125,4.586755,0.5593190909090909,3.2546,3.888665,4.575535,3.650946666666667,0.8226457142857143,2.96055,3.991945,5.59665,3.854975,5.1403,2.8041,4.16891,1.8002525,1.0024942857142858,2.70356,5.37105,4.32788,3.06934,1.4426350000000001,3.963375,2.496045,2.517275,2.7712335555555554,3.06166,4.5416566666666665,3.0081666666666664,1.7075420000000001,3.6107666666666667,1.4290914285714285,2.8213333333333335,2.53993,2.21805,2.9377600000000004,2.8488333333333333,2.354973333333333,2.8838166666666667,4.11419,3.274176666666667,3.69384,2.4519266666666666,1.77851,4.012131666666667,3.0484633333333337,2.41498,3.69384,2.3511366666666667,0.8290790909090909,2.470515,1.0366477777777776,2.1141,1.68001,0.9593,1.89373,1.872075,2.63674475,2.692075,4.67333,1.5525425,4.417905,3.23208,1.624072,2.4101733333333333,2.632406666666667,1.5894433333333333,2.9764666666666666,2.7313500000000004,2.6674863636363635,2.12472,1.880176,3.7510333333333334,2.394886666666667,3.0352905555555556,3.2894633333333334,3.0862700000000003,3.7454666666666667,2.17413,4.2736,3.51,3.9835666666666665,3.0927866666666666,3.5592666666666664,3.7627666666666664,1.7258133333333332,10.046825,4.518205,4.437845,3.28567,2.859345,1.983525,4.012,1.71088,4.168945,4.556035,1.385662,2.5741733333333334,1.1378766666666666,2.41085,1.79987,2.5648966666666664,5.143896666666667,3.2131833333333333,3.514625,5.04975,0.80600875,1.536154,1.00969,3.576585,10.196591666666666,3.3889,6.7104,2.0963325,5.18895,4.39994,2.580525,5.19965,0.2785782352941176,0.8135028571428571,4.80267,4.44117,7.0704275,2.0671275,4.362535,5.71,4.625495,4.46066,3.548165,4.877915,3.583905,6.198588333333333,3.836745,3.61372,3.10678,2.2489033333333333,1.9348599999999998,1.3450980208333334,2.40155,4.07646,5.0697,1.5437340000000002,8.79849,2.2785266666666666,2.9634108333333335,1.0371460000000001,1.0371460000000001,7.437152083333334,2.87957,2.30249,2.2875175,2.76641,2.151733333333333,1.1482333333333334,3.704565833333333,2.6945200000000002,0.5640828571428572,1.7802766666666667,3.328338,3.328338,1.2060966666666666,2.50868,2.2721566666666666,2.7634066666666666,1.2633025,2.00905,4.772684666666667,2.73307,2.75505,1.3301,1.3301,4.280825,5.5512,4.58886,3.21233,3.75086,5.91961,2.75653,3.270543333333333,2.999143333333333,4.000695,1.1383583333333334,3.4469,2.7611,3.7759,2.1558966666666666,4.74474,3.507785,4.60396,3.59666,5.669219,0.9706933333333334,2.1140675,2.009765,3.44763,4.47727,3.675095,3.619745,3.868665,2.890575,1.638865,4.26042,3.375995,3.60333,2.3990633333333333,0.8278425,3.32837,4.455455,4.93526,1.1810166666666666,3.0489200000000003,2.7026233333333334,2.08773,1.7257353921568628,1.7257353921568628,1.1583083333333333,2.1498266666666668,1.1182471428571428,1.373578,4.645245,4.619345,0.5195190476190477,3.58302,3.5964333333333336,3.8693,5.38525,0.41857449999999996,9.85939,5.581,3.142115,4.502165,4.660755,5.478695,4.85814,6.80908,0.7344627272727273,2.9830733333333335,5.3528,2.7166599999999996,1.94046,2.03798,4.657905,5.348358749999999,2.4761553571428574,2.9717000000000002,3.3674666666666666,2.0798675,4.69963,11.05745,8.758099583333333,3.8555333333333333,4.61284,3.0490358333333334,2.999575,3.885985,1.830038,3.0033333333333334,3.624875,4.7038,5.1471,4.90088,6.686706666666668,2.4107833333333333,3.5469,4.669,4.747305,4.83368,6.87929,4.1156425,6.17335,3.384835,3.06459,2.831675,5.7307,3.762565,5.24695,2.1776,3.25862,3.327075,6.0789,4.117615,4.09462,1.446856,0.89499,2.558975,0.5904506666666667,3.869205,3.548765,3.40472,3.006175,2.1446666666666667,2.9968,2.63625,2.946814,1.816172,3.05097625,2.901125,2.423345,2.598125,3.844436,1.423195,3.0501449999999997,5.2512,3.6558333333333333,1.3872575,2.7659300000000004,3.838175833333333,3.759182,1.5696125,5.76995,5.66025,2.11281,3.00053,30.687921942753324,3.273023333333333,1.6873666666666667,3.9895333333333336,1.54493,2.59166,2.9385733333333337,3.5173,1.9379675,2.8052,2.113445,3.6378649999999997,3.2761633333333333,2.4685875,1.48363,2.24208,2.844975,0.3893054545454545,1.20398,2.8945566666666664,1.8212599999999999,3.37908,1.5696125,2.444243333333333,25.886095666666662,5.0964,3.81108,3.506865,2.58215,2.5317,2.782016666666667,2.3910125,3.961995,5.38587,5.4855,1.6185199999999997,1.858988,2.11567,2.465918333333333,3.8725691666666666,5.41795,4.805645,4.509845,0.19925617021276595,5.14265,5.085093333333333,3.77729,9.49036,1.07978,1.07978,3.13001,2.780715,5.5594,1.9805188888888887,1.0789288888888888,4.634945,1.913735,4.391085,4.12847,3.360295,4.006485,3.885425,4.31843,2.890505,0.7089788888888889,3.21531,2.1854808333333335,4.303525,7.71552,4.417045,1.8092766666666666,1.8092766666666666,6.777254999999999,5.09295,4.106385,5.6885,2.304073333333333,5.453105,1.3332133333333334,1.54471,3.0655699999999997,2.554936666666667,2.926475,2.6752633333333335,3.68518,4.50207,4.245125,5.4375,2.262905,2.1696525,1.84312,2.586075,2.1721225,1.9768525,1.9342675,4.992478333333334,1.85054,3.359237142857143,2.3942133333333335,2.83313,2.5437233333333333,1.8834633333333333,1.418397142857143,0.966156,2.5473033333333333,3.7965666666666666,0.752845,4.59475,1.8615925,5.79153875,1.9207875,1.51804,1.4050425,1.4826966666666666,5.788254444444444,1.9423100000000002,3.1562333333333332,3.5262666666666664,1.2149625,1.8058925,4.774436666666666,3.2534233333333336,1.80518,3.6259,2.99321,3.0101999999999998,1.3201399999999999,0.27390583333333335,0.27390583333333335,0.27390583333333335,0.27390583333333335,0.27390583333333335,3.92799,2.7961666666666667,2.4761025,3.3830666666666667,1.3806266666666664,2.6346000000000003,2.9615633333333338,2.0772333333333335,3.30475,2.8861,1.7227,2.951003333333333,3.252713333333333,2.1996275,1.9681,3.59523,2.6763433333333335,3.9799666666666664,5.04075,2.647326666666667,2.51811,2.4080766666666666,11.00923,4.87902,4.576305,5.0238,4.502985,2.8088833333333336,5.1309,4.119095,4.42569,5.6241,4.214625,3.28042,2.4662375,3.797855,5.291227428571428,3.66938,17.423263357142858,1.19389,4.251115,0.8521344444444444,1.25495,2.9701,4.381415,3.81894,4.330345,1.5826683333333333,2.48246,4.092655,1.8883633333333334,4.66695,3.2316714285714285,2.7946166666666667,0.6605983333333333,3.1752633333333335,4.827205,2.3572,2.560425,2.23009,19.922210833333335,1.30084,1.23406625,2.732086666666667,0.29582846153846154,1.8038475,2.9990733333333335,1.95864,2.9751733333333337,2.554775,7.4787525,1.8793625,2.57865,2.2345825,2.2558675,1.5935383333333333,3.492366666666667,3.152305,3.54511,3.20124,1.98586,2.53302625,3.248136388888889,5.0267,0.4942058333333333,3.536566666666667,3.0201700000000002,3.03352,2.1677575,3.6831975000000003,3.444945,1.5672733333333333,2.23579,2.0524299999999998,1.4232133333333332,1.9205666666666668,3.39699,3.239765,0.741645,3.25054,5.1971,4.242535,2.388068,2.388068,2.959023333333333,4.641995,3.315005,3.271025,2.282075,0.8689309090909091,4.06235,3.525025,6.2636,3.977725,2.269648,2.269648,1.2698925,3.196615,5.086,4.176095,4.16071,2.9426366666666666,2.260126666666667,4.318925,3.4594,4.15641,3.009446666666667,2.3442766666666666,4.193002666666667,3.1949233333333336,2.62235,1.8414666666666666,4.04982,2.712675,1.6160933333333334,3.68259,3.43525,4.711465,3.5833,4.791315,4.42764,6.3724609999999995,3.95115,2.12262,4.718455,3.02891,7.35749,2.5583933333333335,1.3374383333333333,4.567955,3.4004333333333334,4.771975,0.6554521428571428,0.7680033333333333,3.699665,3.59839,2.1955334848484847,4.324225,2.66675,2.874015,9.027491999999999,1.876652,1.1918419999999998,3.75204,2.60587,3.324565,5.28575,6.197724999999999,3.102515,2.0593033333333333,3.15234,1.7898066666666665,3.4219000000000004,8.807054926108375,0.9533245238095238,0.9930275,4.678195,0.5141153333333334,1.6849225,2.2764975,2.7528,3.0812,2.87825,4.88722,2.40251,13.661919999999999,4.96268,2.532175,2.532175,4.45606,0.7966449999999999,5.15763,4.036045,4.005395,6.397866666666667,3.493505,4.744875,1.5324799999999998,2.634245,2.73373,2.73599,2.996265,2.678745,2.99168,3.570655,3.571475,2.998725,2.932945,2.946375,4.324905,4.508325,3.131083333333333,3.2807666666666666,5.026908333333333,4.29428,19.00714988095238,12.15132476190476,3.3442007142857144,0.6923308333333332,1.5115,4.531105,3.529665,3.117361153846154,2.111545,0.8687611111111111,0.6580766666666666,0.6434785714285713,2.071405,1.68279,5.119248333333333,3.3254966666666665,0.6983845454545454,3.23425,2.308355,1.889015,1.8202000000000003,6.342046666666667,1.538184,4.39127,3.04613,3.04393,2.40651,2.5743933333333335,2.54299,0.8113654545454545,2.73323,3.15126,3.8451113333333335,3.05801,4.858635,3.539515,3.281425,2.39842,3.401005,6.270995000000001,2.21271,2.49588,2.529325,1.5327475,2.70695,2.288495,2.690275,0.937913,1.498175,1.03625,3.294205,4.679255,6.35095,5.94495,2.92729,2.62282,2.844025,3.3464666666666667,7.7045933333333325,1.2785833333333334,0.371215,3.07246,2.1424600000000003,1.592244,3.600821,1.3286120000000001,1.9725426666666666,4.242893333333333,3.184356,1.1871633333333333,1.8680266666666665,3.838866666666666,3.53446,4.611335,4.1582,2.07681,5.2503,4.10221,0.7757153846153847,4.746865,4.08877,4.306387083333333,3.4560666666666666,2.30909,1.349752,1.21492,3.45704,2.555055,3.232065,4.117065,2.562085,2.42832,3.23306,3.6429,4.46946,2.562985,2.560335,4.54605,5.78555,0.61121875,4.431525,1.936795,3.41974,4.0449,1.837965,3.128525,2.17331,1.958465,2.752695,2.3960266666666667,1.7746066666666669,4.858865,3.71765,1.2766785714285713,7.56316,1.0488466666666667,3.90722,1.7372866666666666,4.594735,4.40837,2.9736766666666665,3.18903,4.072625,8.52946,2.761965,3.61125,3.755975,3.61292,1.6619775,7.56177,3.782455,4.336715,1.709415,3.998665,2.96795,1.10626125,2.1227,4.114355,2.39875,4.054335,4.908615,4.1772875,4.54614,2.159055,5.26475,3.947145,3.2924166666666665,2.5765733333333336,1.488702,4.17638,6.26495,4.18852,4.49972,2.859105,2.4078275,3.86056,3.261035,1.2438327472527473,4.0074,4.701102499999999,3.98831,2.69243,3.498105,0.6400557142857143,0.6400557142857143,4.708745,4.16391,4.134345,2.256865,3.67354,5.7118,0.8222289999999999,4.29676,4.950075,4.84739,5.2115,4.82352,1.8172975,3.24979,2.1382675,4.384255,0.699325,4.26485,4.299315,2.798975,2.842833333333333,4.25246,2.098285,3.28519,60.66608655627706,3.286685,2.4491633333333334,1.6010825,3.40144,3.89579,0.832065,0.95594125,2.210695,2.210695,1.285358,3.1132,2.181915,3.799093,7.55137,3.002283333333333,1.2484271428571427,1.38195,2.6966066666666664,3.993664166666666,0.98353,1.82045,1.3857,1.991265,4.457275,4.35007,3.157925,20.48022888961039,3.437965,3.82411,3.165515,2.05729,2.99932,3.127165,2.550275,4.92067,1.551368,4.2039,3.2683999166666666,6.002268333333333,2.004105,2.700365,1.89435,4.555925,2.3769466666666665,2.2709875,2.0188,4.054473333333333,3.339365,3.262675,4.08352,4.503155,2.68215,2.60191,3.012705,2.771555,2.9576233333333333,2.229005,2.1487875,3.42783,1.144155,3.78383,4.65793,2.553805,5.10285,4.891875,5.091760000000001,2.1928566666666667,2.20479,2.63011,2.798745,4.03902,3.070615,4.697625,0.7162014285714287,4.300581333333334,3.037255,3.84642,2.3449125,1.824494,3.853461666666667,1.2243111111111111,2.891665,4.37233,1.189036,3.62455,3.648225,4.802705,6.3273125,2.19115,2.969805,2.770656666666667,3.9561333333333333,3.2623033333333336,2.5753613333333334,2.8679633333333334,2.4494599999999997,2.38225,1.4409433333333332,2.21372,2.21372,1.9101299999999999,2.0944333333333334,1.7674833333333335,2.4992966666666665,4.037675,5.4566,4.859705,1.693575,4.38151,3.780195,3.35387,4.05574,1.8844125,1.89864,4.5961316666666665,1.88436,4.348248333333333,3.97327,3.508345,2.3943566666666665,3.5542606250000004,3.358225,2.989875,3.501,0.1456895918367347,2.606316666666667,7.56493,1.5131299999999999,3.360895,3.708615,0.9858314285714286,1.27651,1.8676475,3.83204,2.981725,7.28412,3.72045,3.56714,2.87284,2.639485,3.292785,3.36115,4.0239,3.256465,2.7954133333333337,5.3259,4.26662,4.263175,2.7362366666666667,1.8691225,3.42195,4.650115,2.63048,2.984275,2.06196,2.50534,3.97403,3.741455,2.643785,4.63701,5.32865,2.62619,4.237265,4.147965,3.46822,4.43154,3.191645,3.34091,5.44652,4.68985,5.69255,5.18365,4.451445,5.3491625,4.53141,4.053865,1.279376,6.5795,2.432015,4.484805,4.06888,3.90493,3.340066666666667,1.9523666666666666,2.204336666666667,2.4287666666666667,1.0077500000000001,3.4294333333333333,3.5210666666666666,2.9967233333333336,2.0898600000000003,3.7178,4.32458,2.70683,0.5335791666666666,4.559045,4.562525,5.12435,4.73521,3.879415,4.760795,5.16995,4.732845,1.4038666666666666,0.9406923076923076,2.9454700000000003,5.29315,5.8179,0.494279375,2.80541,2.4804666666666666,3.31502,4.39744,3.8687,2.1144625,5.0738,3.19391,4.779595,2.896285,6.43335,5.3744,6.9941575,0.6146608333333333,4.002135,0.8726240000000001,2.29276,4.1224,3.2199333333333335,1.3130833333333334,2.3304,4.243605,3.504395,4.323875,1.8941766666666666,2.265285,3.155645,4.66864,4.27438,4.08755,1.681608,1.233192857142857,5.5477,2.4572325,7.8296,4.47664,3.570975,2.338705,1.57514,4.15136,4.62016,1.6214133333333332,2.355085,2.5996,2.606316666666667,6.659505833333333,3.046291666666667,2.8158666666666665,4.159461666666667,3.706585,1.9420466666666665,3.404985,7.310915,4.75351,5.1363,0.5028409090909091,3.76558,4.063365,4.770027499999999,4.126175,4.31868,2.981115,2.772645,3.28123,2.806705,3.552299666666667,2.14554,5.8032,4.695725,5.27705,3.71564,3.2877,3.3656374999999996,2.4028175,1.2946825,0.936435,2.775595,2.442635,1.0979050000000001,2.58394,5.1933,4.89351,3.41673,4.16265,16.547104166666667,4.14746,4.396125,4.2274,0.7136683333333332,5.14895,4.58433,4.242175,4.91747,5.3759,2.42766,3.572625,3.265155,1.4902039999999999,3.059715,4.95942,3.3868666666666667,1.7476099999999999,3.692355,4.95484,3.746375,5.14685,4.776,5.74975,4.036015,2.83746,4.09191,4.419955,2.553205,3.078473333333333,3.03073,1.63928375,5.05685,2.7189142857142854,2.026263333333333,3.842755,2.24212,4.280485,4.012131666666667,2.448895,2.981065,4.57096,3.591875,4.44395,4.657535,4.869915,4.856439,3.553655,5.35305,2.795325,3.916895,3.729545,1.497608,4.608405,0.9925666666666667,4.308025,3.166425,1.0058042857142857,3.56767,2.12427,6.476475,2.588914714285714,2.588914714285714,2.588914714285714,0.6767216666666668,1.3448533333333332,1.88629,3.437925,6.075,3.4474116666666665,1.88915,2.2538175,1.69925,3.708095,2.41493,0.4841361538461539,1.70116,2.25463,2.936,1.97595,2.760935,2.340605,2.07208,3.78188,3.0197933333333338,3.808015,3.11128,1.97657,6.39182,1.988335,4.3587,3.706385,6.671936666666666,1.5899066666666668,3.536445,4.005035,3.67188,4.58065,2.767375,1.9722325,3.63207,6.026745166666667,1.9635,3.52744,3.100175,2.073615,4.933055,4.41848,2.7251133333333333,2.264165,3.6003525,5.908709999999999,6.0086,3.0955,2.37083,2.574845,2.92774,2.702015,3.88368,1.44794,2.78763,4.7141,0.8611525,3.87033,3.7952,3.722895,3.25436,2.38306,3.542815,1.95134,4.47677,7.976606666666667,4.337315,3.34674,3.59058,0.984685,4.6815,2.25147,4.284865,5.7616775,4.1926,4.28107,11.302045,4.79636,4.098115,1.45088,0.6750725000000001,2.680875,3.829695,3.416955,3.62125,2.123416666666667,2.419636666666667,2.1114333333333333,1.15438,1.15438,1.93204,2.3264333333333336,1.9109766666666665,2.3512033333333333,3.222853333333333,2.4352566666666666,2.3333633333333332,2.96297,1.3117033333333332,2.8250566666666668,2.0477166666666666,2.06602,1.55788,2.7603566666666666,0.7145283333333333,9.890267083333333,0.7145283333333333,3.6384333333333334,1.9996433333333332,1.7556333333333332,4.286005,4.207605,3.94542,4.04612,2.125976666666667,2.814493333333333,3.3983666666666665,1.9726566666666667,3.321543333333333,3.0682233333333335,2.798883333333333,2.85958,1.7130633333333334,5.40355,6.552460190476191,3.2411333333333334,3.3604333333333334,3.21573,2.53512,2.6460833333333333,1.1075457142857144,3.614433333333333,3.1956933333333333,4.261835,6.0934,4.39346,2.7525633333333333,3.5211666666666663,3.1353633333333337,4.2947500000000005,4.23925,2.5774933333333334,3.904605,3.3335666666666666,3.175473333333333,4.84582,3.04064,4.02686,6.362598333333333,2.1713366666666665,2.349493333333333,1.68825,1.4907633333333334,4.65028,3.52942,2.5694033333333333,2.03288,1.9286766666666668,4.596,3.786685,2.843525,3.5069666666666666,3.282106666666667,3.529333333333333,3.5470333333333333,3.624166666666667,3.1452033333333334,0.61879625,3.8055333333333334,2.60604,2.5281466666666668,3.57273,4.678015,3.93334,5.20625,2.812815,3.81365,1.065405,2.8255433333333335,2.8255433333333335,4.06375,2.84013,3.612285,4.725435,1.5779,3.74191,3.694535,1.3939557142857144,4.067955,3.354275238095238,2.4640766666666667,0.351,5.3519,2.835455,6.296405,3.29292,6.2309,3.354485,3.92802,3.829255,1.7564404166666667,3.295665,4.101345,3.23444,3.4455666666666667,3.00531,5.4503125,2.0632175,0.986455,1.8297966666666667,1.7292399999999999,5.4302,2.3007866666666668,2.3914166666666667,2.118095,4.213935,3.920775,4.152725,0.551398,4.49252,3.824855,2.822433333333333,2.90292,3.268466666666667,3.324321388888889,4.168433333333333,1.7553433333333333,0.6643842105263158,0.7992857142857143,3.7103,4.24253,6.1055383333333335,4.886155,4.724135,5.17795,1.4172428571428572,4.0449,2.1965533333333336,1.00996125,5.44175,5.61875,2.97625,4.70926,3.91929,6.765856666666666,4.132133333333333,6.322261666666666,3.71807,2.454622638888889,5.8063,10.410097506410256,2.5304066666666665,0.68901,3.441825,4.43575,2.33087,6.4606,3.999365,4.3441,2.759066666666667,2.759066666666667,5.7848,3.768805,3.98679,5.2543,3.9998086666666666,2.3650439999999997,1.24195875,5.02525,2.547185,5.6700975,3.55195,4.189085,2.909405,2.0659475,4.64623,4.72935,3.522133333333333,4.21436,4.80834,27.740380714285713,2.094765,2.5552,2.38695,1.6075233333333332,2.5531833333333336,1.0423957142857143,2.7836866666666666,3.0088866666666667,3.4449666666666663,3.170946666666667,0.63002,3.2988633333333333,3.768885,2.999805,3.3296733333333335,3.75299,5.74502,4.792245,4.016545,3.79444,3.950705,4.10393,3.5579666666666667,1.72553,1.0087249999999999,1.3954833333333332,2.2413333333333334,1.4797933333333333,2.996563333333333,2.411016666666667,2.368106666666667,2.2818766666666668,2.68474,2.059825,1.7700633333333335,3.272955,4.24469,3.555185,4.05579,1.3381539999999998,3.3373333333333335,2.4231433333333334,3.776285,2.164703333333333,2.562885,2.30467,1.3876966666666668,4.45077,6.428051666666667,2.81812,3.48061,3.967195,2.655925,3.2597875,3.6526,3.784995,4.812785,0.3105785328185328,0.3105785328185328,5.04275,5.31035,3.17249,2.740605,5.40965,4.467645,0.6449223076923077,5.09125,4.503705,3.77056,6.40865,4.649925,7.59368,14.113246666666665,13.277344102564102,4.402395,4.15498,2.6224233333333333,0.6339007692307692,2.71129,4.44493,1.3426583333333333,4.74371,3.5564999999999998,3.05456,2.112156666666667,2.2912133333333333,4.954765,4.304105,8.967319761904761,5.14975,3.939495,7.4287287878787875,3.4655,3.2422766666666667,1.46914,5.468119999999999,2.01882,2.5569366666666666,2.6800466666666662,0.26557625,3.00277,3.854465,4.811835,0.839578,1.2134983333333333,3.853755,0.530106,0.530106,3.2134783333333337,3.2508700000000004,3.4326333333333334,3.69028,4.244425,5.68405,3.76476,4.057595,2.96237,3.140546666666667,2.6837366666666664,0.7916433333333334,2.67724,2.86523,2.98986,6.74985,2.69938,8.6817,2.77985,4.673995,2.89454,2.26525,2.4485025,2.711525,1.777955,2.358025,2.230625,3.23889,2.4154175,3.6488525000000003,2.86976,3.8971316666666667,3.8971316666666667,2.741465,2.741465,8.876009333333334,2.65687,0.799982,2.5198199999999997,2.4484266666666668,2.537453333333333,3.6488525000000003,1.9419080000000002,1.97313,1.508568,3.50844,4.031375,1.741255,4.576135,3.983865,5.616328888888889,6.645511666666667,2.3366966666666666,4.281415,6.5139,4.135395,3.308785,2.4348199999999998,3.812495,3.492645454545455,4.25036,5.3300149999999995,7.574349333333334,3.5277175,3.100405,1.2051516666666666,4.419625,4.225632,3.81072,3.7140325,4.567575,2.682075,2.6609233333333333,6.97148,3.114185,1.427178,6.21084,3.82263,2.8825133333333333,5.04485,2.8825133333333333,2.88134,3.883645,5.4159,1.0458885714285715,4.1693,4.710505,3.54125,1.3307566666666666,1.88886,3.974755,4.264005,2.66371,7.159588333333334,4.34495,3.91907,4.102495,4.70504,1.547425,4.110675,2.656035,3.850655,4.214795,3.95346,5.08705,2.89447,3.64986,4.989445,1.9667836666666667,1.7829225,3.3808000000000002,3.703333333333333,3.4624333333333333,3.0180833333333332,3.7184333333333335,3.1760266666666666,5.67785,3.488335,3.75553,2.70636,1.89663,3.6706333333333334,2.469586666666667,2.986855,3.101025,2.74161,0.699325,2.1691975,1.7865333333333335,3.35157,1.9484780000000002,3.7577290000000003,4.09057,1.223876,3.1555825,4.791475,0.8178280000000001,1.36876,3.40154,3.81202,3.673295,2.025785,1.7699666666666667,3.39876,2.477778333333333,1.6662033333333335,2.94582,1.934495,1.1730779999999998,1.3843025,6.37656,3.528895,2.216695,2.62099,2.40927,3.831365,0.8295125,0.3579664285714285,0.7965942857142857,5.0646,1.7768504285714286,4.536535,2.1827425,1.8265822857142857,3.1019045714285713,1.2753222857142856,1.1471902857142857,0.8035859999999999,0.5853942857142858,2.4646816666666664,6.40525,3.087635,3.656345,0.3251075,3.679415,17.82946695238095,2.902095,6.836928587412587,1.0502025,1.0502025,1.0502025,1.0502025,6.075941666666667,4.04689,3.938715,2.22849,3.19382,4.942665,4.344755,3.935545,3.500305,4.21561,4.044415,4.19775,3.742122,4.402385,4.9223,4.240505,4.67737,3.678185,4.42036,2.6093566666666668,3.867085,3.29233,3.94515,4.13479,4.424405,3.1796966666666666,2.540025,2.4431933333333333,4.39041,1.3322028571428572,3.75219,2.7949,3.4147073333333333,4.1772875,4.43395,3.038855,2.684165,4.36844,2.855605,3.067945,5.16935,4.91045,3.24112,3.550855,1.803896,1.803896,2.037655,4.631265,3.99912,5.772128,5.16805,3.5545666666666667,6.5119,4.805255,2.1976175,9.930575000000001,5.03065,6.508495,4.490025,2.9142966666666665,2.9311,0.25761137931034483,0.8706475,3.7289700000000003,3.380745,4.59728,2.967276666666667,6.224248333333333,5.23585,0.5586607142857143,2.64522,0.46701499999999996,1.7085823809523808,3.268485,2.299455,3.871365,3.81887,3.196525,3.35773,3.42014,3.63896,3.374295,3.541685,3.644075,2.207655,1.7085823809523808,2.78853,2.0705975,3.63114,2.06721,4.24228,3.489975,1.6619775,4.356605,2.805385,1.317995,4.453175,4.670495,4.12623,2.962123333333333,2.8375133333333333,4.35838,1.7447166666666665,1.42245,2.3458033333333335,2.53268,2.52758,2.1846099999999997,4.97378,3.438635,4.967446666666666,3.9231485714285714,4.97967,4.073995,1.8084140000000002,5.24165,4.45072,5.4304,4.2284,6.52381,1.691695,4.916265,3.163615,2.987675,1.775055,1.7539433333333332,3.748785,4.35451,2.571283333333333,2.8053029166666663,3.3543075,3.3543075,2.7569033333333333,3.2346833333333334,3.22943,3.909625,3.621605,0.6967769230769231,3.205235,4.303755,4.926353888888889,3.14047,3.037605,1.755005,2.76056,3.427415,2.265885,4.76052,3.300925,4.76147,2.1308866666666666,1.0813272727272727,6.11447,3.62947,3.5296000000000003,3.1946866666666662,1.78352,30.684292345238095,3.98498,3.23992,5.30025,4.73513,0.8867583333333333,7.241705,2.0193825,5.58305,1.53054,3.899575,5.420725,3.692575,3.194635,2.1298675,3.4782666666666664,4.983625,2.163115,2.76791,3.706995,2.56289,2.577,6.28835,2.1203,6.1295,1.20341875,4.341865,3.55682,3.886415,5.0858,3.00485,2.49342,4.301155,4.5875,3.5789225,3.5789225,6.02755,1.840625,4.25033,6.94283,3.350215,4.159135,3.30029,3.344975,3.47969,4.068845,1.360735,2.48683,4.32553,4.323875,5.44915,4.296605,2.31949,9.495516666666667,3.468305,3.700945,1.7214142857142856,3.477945,2.3380966666666665,2.6620133333333333,2.08370125,1.2475166666666666,2.537993333333333,0.9000485714285714,1.1236871428571429,1.1236871428571429,1.1236871428571429,1.8377999999999999,0.56694125,3.730495,1.2413,2.7565766666666662,1.05052,1.79385,2.654526666666667,2.087833333333333,0.7404825,1.71844,1.4910966666666667,2.3409566666666666,1.6287939999999999,1.6287939999999999,1.6419833333333334,1.8842466666666666,0.9149520000000001,1.9300066666666666,1.6174933333333332,1.3106733333333334,2.185115,2.44427,5.92855,1.5226,5.5027,17.205593333333333,6.67654,3.340415,3.63931,3.3134566666666667,2.7405833333333334,2.6581033333333335,3.155913333333333,0.7593941666666667,1.00487,1.00487,0.65438125,2.5843233333333333,3.739955,3.13552,1.6255359999999999,5.1039,3.841035,2.534115,3.90483,5.2167,3.937775,4.23167,3.514533333333333,3.15707,3.381555,5.6759,3.1712833333333332,5.08855,0.510005,0.510005,2.228105,2.870775,4.970045,3.47797,3.931095,4.81964,7.555672,7.66791,3.73359,2.611965,4.2865,3.649775,2.6110166666666665,2.414365,3.93939,1.40582,4.01093,2.444355,1.7210075,3.5881666666666665,3.950275,1.970985,5.3300149999999995,1.683035,3.3998666666666666,3.046605,1.0787814285714286,3.7584666666666666,2.7323166666666663,4.45647,1.13655,1.70707,2.302525,2.222145,1.6526475,2.4682675,1.9459875,1.9686675,4.46577,4.55541,2.53432,1.863335,1.4942266666666668,3.7180666666666666,2.0229766666666666,2.612775,4.80044,7.10805,2.5108708333333336,3.036645,3.465635,3.477545,2.431365,5.23805,3.968075,3.067985,1.388875,4.512685,2.32381,3.0490733333333337,2.42868,3.66328,5.04505,5.6557,2.324386666666667,2.8160600000000002,2.9209333333333336,3.4572000000000003,1.9892333333333332,1.681188,5.543,3.5193,2.168602909090909,3.2773966666666667,3.1713633333333333,2.6131100000000003,3.413266666666667,3.2532366666666666,3.6491000000000002,5.40825,4.491685,3.04092,5.0879,3.28062,2.345815,3.461255,3.821035,3.69863,6.2252725,1.902936,3.6753,2.600755,3.9895,3.549935,0.55722125,2.273215,2.155425,3.297525,2.66723,2.23975,2.68961,0.658605,2.801603333333333,4.68999,2.542075,4.433495,2.6435833333333334,4.088995,1.9725275,4.51316,4.54548,2.04032,2.82797,7.30809,4.10971,4.60236,5.0673,7.258404431818182,4.657865,4.48626,2.233405,4.752545,2.80759,1.8939300000000001,1.873435,2.1406366666666665,0.9852342857142856,2.57204,2.29708,2.5862933333333333,3.4079333333333337,1.74304,3.195035,1.8630866666666668,4.09151,4.918975,1.02070625,1.8313766666666667,2.4807166666666665,2.7893033333333332,1.9150033333333332,1.082065,5.46237,2.076685,2.64377,2.6825233333333336,2.4383233333333334,2.66822,3.024045,2.1691933333333333,2.8266533333333332,2.125383333333333,3.88966,3.392925,3.867835,3.0055933333333336,2.92192,0.687756,1.8367866666666668,2.130235,1.99671,2.541333333333333,1.1429116666666668,2.65713,2.9346633333333334,3.85203,1.9614733333333334,3.30711,3.21498,5.08765,3.236325,0.5899958333333334,2.12066,2.8978699999999997,3.434533333333333,0.8100318181818181,2.8225266666666666,3.40965,3.6834333333333333,3.1369733333333336,3.2339933333333333,3.674705,3.9065333333333334,3.0572033333333333,2.1013625,5.6363,5.22635,5.09145,5.45255,5.69805,1.72567,3.31776,3.7406333333333333,3.4351333333333334,3.0663633333333333,2.876853333333333,3.8741,3.6468333333333334,3.0682566666666666,14.21684,4.4171,1.10661,2.80735,1.646536,3.273486666666667,3.3013999999999997,2.395426666666667,5.790355,6.8976445,2.5156433333333332,0.8797710000000001,4.21479,3.536633333333333,2.969415,4.89344,5.1442,5.5042,4.9008,3.5188,1.905125,6.473465000000001,1.2051516666666666,6.4348825000000005,4.88308,2.5907966666666664,4.46539,7.491748333333334,5.97325,2.1381966666666665,1.5240666666666665,1.9477675,7.412061666666666,1.5696125,3.057513333333333,2.612568333333333,4.182097222222222,5.8824,4.268925,6.42475,3.4474,5.20185,3.655185,8.94172,5.0549,5.8817,2.47178,2.661975,11.13106,3.37268,2.28522,2.32401,1.5227333333333333,2.6032433333333334,3.18678,0.66569875,1.24877,1.0657785714285715,3.39932,7.087256666666666,3.1620299999999997,1.4323333333333332,4.92776,3.67055,0.5459780000000001,4.866595,4.047415,4.671225,3.72782,3.544875,2.743043333333333,4.12324,10.046434999999999,1.7606775,3.76397,3.64686,3.99268,3.4954,0.8290000000000001,3.5681333333333334,4.0321,1.7713700000000001,2.4581500000000003,2.276013333333333,2.4926066666666666,2.037873333333333,2.1364466666666666,2.278165,6.008814285714285,5.14275,3.935555,5.233618333333333,1.6301533333333333,2.405585,4.942725,4.56482,4.629525,4.39426,4.75605,4.80693,1.803896,3.71324,7.801761666666666,1.4327066666666666,1.8556866666666665,2.4005033333333334,2.4304099999999997,2.795006666666667,4.762062083333333,0.7992857142857143,2.36046,3.190745,6.39195,4.618365,2.17623,2.858473333333333,2.119665,0.558768125,2.44686,2.884235,7.494675,4.309025,4.992055,0.947044,4.3496,9.41517125,10.9194,3.17899,1.21423625,3.45576,3.58578,2.448906666666667,5.406451333333333,5.01525,4.02759,2.1974625,3.8891333333333336,2.1730266666666664,2.4996233333333335,0.7506381818181819,0.4026146666666667,2.297945,3.183105,2.0710183333333334,3.356535,3.1631933333333335,4.47691,5.40975,1.500306,3.14662,2.0722050000000003,2.0722050000000003,2.32168,3.0491,6.29395,2.6214733333333333,2.3547866666666666,3.4095,3.4684000000000004,4.135385,4.385585,4.50143,4.053655,3.90734,4.259825,7.0183,7.695146666666666,1.969795,2.1902766666666666,3.257,0.8845216666666667,0.6818875000000001,4.33076,2.409525,5.4526,2.878436666666667,3.0344700000000002,1.84599,1.4570875,4.103165,4.289135,4.239745,1.9694833333333335,1.31112,2.59807,1.9634,2.5661466666666666,1.1250457142857144,1.1250457142857144,2.729786666666667,4.58205,2.926705,3.12274,3.42979,2.340405,20.372408954545456,3.870695,5.5270174999999995,4.46864,3.92303,4.19825,3.984535,5.70795,6.594994999999999,0.8326283333333334,0.8326283333333334,0.8326283333333334,2.6786999999999996,1.781442857142857,3.4840999999999998,4.02637,4.135155,2.88307,4.00324,4.221675,0.7973122222222222,1.8988699999999998,2.457246666666667,5.813143833333333,3.1123304999999997,4.072041333333333,5.0756,1.837965,1.9242100000000002,2.2607266666666668,0.51578625,0.8111039999999999,1.59615,1.954725,2.90922,13.448876666666667,2.4279266666666666,5.29985,0.6719392857142857,9.8182175,5.5216,3.60638,4.40403,2.789525,5.6545,2.789525,2.953338,3.255725,3.807195,3.687765,3.8391,4.31569,3.78061,5.8393,6.927842,1.7571199999999998,2.261978,2.435565,27.136959294723294,1.434192,6.2956,3.69617,3.99828,4.184965,4.652965,2.770195,2.607015,2.127155,6.66795,7.1152,4.7651,4.814085,4.50495,2.056155,2.05967,4.36807,0.40319538461538457,0.40319538461538457,0.40319538461538457,0.40319538461538457,4.05039,3.2480350000000002,0.9634933333333334,1.7614166666666666,1.184322222222222,4.86618,2.389343333333333,2.42681,7.465543333333333,3.300596666666667,0.16820862068965517,21.033917000000002,4.649443333333334,1.766852,1.37679,2.21278,2.1007000000000002,2.468065,4.63101,2.881245,3.502975,4.355875,2.0901333333333336,7.2230325,2.694935,1.97484,4.03341,5.8915,8.989753333333333,4.28951,0.3030073170731707,3.508905,3.95123,2.93101,2.1787675,3.1394866666666665,1.6048866666666666,1.6048866666666666,3.940645,5.66021,11.2435775,9.058325,0.6036944444444444,2.45798,3.883305,3.101065,4.76567,3.5866,1.368662,1.368662,3.674725,4.246105,2.253206666666667,3.87712,4.467285,5.25905,7.21571,2.13726,4.737585,4.085285,2.689605,3.0267199999999996,3.18521,4.946605,4.42367,5.6306,4.440455,4.580985,4.18646,4.481615,4.381195,5.6121,2.7556233333333338,3.0861033333333334,1.106738,4.6422,4.20683,4.16838,1.7520859999999998,2.1699466666666667,3.802566666666667,2.9042833333333333,2.491706666666667,4.74429,1.8546833333333332,1.6910825,3.3557666666666663,3.252526666666667,2.2467966666666666,1.84799,4.143433333333333,3.0974766666666667,4.2602,3.1055925,2.1394866666666665,2.5300533333333335,1.8636533333333334,3.42572,2.86441,38.59361825,2.1592961818181817,2.1592961818181817,2.5723066666666665,2.567973333333333,2.1382566666666665,1.9257966666666666,2.9129666666666663,1.8794266666666666,0.7868538461538462,5.0218,7.067925,4.27591,4.123115,5.8538,1.9159833333333334,4.49555,1.8724560000000001,5.17845,4.76461,5.77325,4.17428,1.72553,3.954395,4.45289,4.542855,5.03285,5.54435,4.049285,3.4373666666666662,2.863566666666667,1.907445,1.910875,4.728815,2.861416666666667,3.752015,3.752015,2.32341,1.5335066666666668,2.4027866666666666,2.547546666666667,2.5503433333333336,5.15534,2.92789,1.1545316666666667,1.1545316666666667,2.15061,1.9750933333333334,2.51106,2.617433333333333,2.6490199999999997,2.34186,2.1578933333333334,2.1869282500000002,2.960629678571429,1.6089776785714287,0.7737014285714287,63.435407165674604,2.266502,3.501333333333333,2.528764,0.8695660000000001,4.220791333333333,1.585658,1.585658,2.9158266666666663,2.8134266666666665,0.83527625,3.2423133333333336,5.9240200000000005,3.2976833333333335,2.432513333333333,2.78128,2.3734699999999997,3.1541213333333333,0.291686875,2.987106666666667,0.8245979999999999,2.4223500000000002,1.158804,1.158804,3.7137333333333333,1.98785,3.0738966666666667,1.7779466666666668,3.5493333333333332,1.7779466666666668,2.1078033333333335,2.918673333333333,3.2384,1.374022,1.374022,3.02213,1.4362433333333333,3.3767,2.21077,4.59039,3.62169,12.381481833333334,7.003645000000001,3.4322,2.30148,3.836385,5.28095,5.49795,2.7763816666666665,3.965825,3.77404,2.2533733333333332,4.32747,3.4228666666666663,2.848903333333333,4.84202,2.1518200000000003,1.104987142857143,3.8071441666666668,2.928976666666667,2.896815,0.7879028571428571,2.745925,3.3426,4.144025,4.235575,6.6762,1.8883633333333334,1.933306,4.632045,4.402475,2.500725,2.552299166666667,1.90718,2.2857293333333333,0.9322060000000001,5.14935,4.409885,3.6371,3.54355,3.087353333333333,4.736825,5.3377,2.8894300000000004,1.7919233333333333,0.5412606666666666,14.357319,0.5154254545454545,0.5154254545454545,0.5154254545454545,3.0858333333333334,3.9129,0.5154254545454545,6.978031666666666,4.2505266666666675,0.694635,0.694635,3.575466666666667,3.263985,2.740985,4.499815,4.93422,4.22518,2.1272675,4.778166,3.478925,3.6977393452380953,4.73432,3.0175867500000004,2.4555875,2.51115,2.669675,1.59192,3.453243333333333,3.080633333333333,2.46106,2.26439,2.073555,1.8172666666666668,1.60262,2.645125,1.1304444444444444,2.567525,0.6364871428571428,5.39225,1.7722425,0.6728550000000001,2.283945,7.775865,2.643745,2.012432,3.268515,7.10011,2.43008,4.55555,2.895665,5.86098,3.76649,3.674465,4.222165,4.66721,3.1351566666666666,4.437225,1.1399057142857143,4.42479,2.4095999999999997,2.5863166666666664,2.62062,2.174885,2.1547799999999997,1.2627625,5.62975,0.9593,5.11565,5.52895,5.16495,5.4646,3.7936333333333336,2.4918366666666665,1.9137419999999998,3.110863333333333,2.9995100000000003,2.428905,3.9290000000000003,2.687175,5.4083,1.888696,41.23440742063492,4.899685,2.3999966666666666,2.5791033333333333,3.225433333333333,1.4976200000000002,6.041146666666667,3.937065,2.5268533333333334,2.7918633333333336,2.17271,1.5938575,5.3126,0.8088071428571428,4.266931428571429,1.3510942857142858,3.383766666666667,3.4840999999999998,2.9832,1.4387625,4.876344666666667,1.7716660000000002,1.7716660000000002,2.61774,2.8598075,3.4873333333333334,3.5505333333333335,1.4424700000000001,2.9640766666666667,2.8267866666666666,6.500445999999999,2.825036666666667,3.681796666666667,1.0347466666666667,1.4501833333333334,3.090616666666667,0.8948560000000001,5.57367,3.4440666666666666,2.9269433333333335,3.676,3.0557433333333335,2.7467400000000004,3.3645333333333336,1.7110333333333332,2.40927,2.5643933333333333,3.4972666666666665,2.551066666666667,3.8748,2.3773966666666664,0.6172373333333333,9.75210532051282,2.91404,5.40525,4.83421,2.9178366666666666,3.09993,1.32813,2.1372166666666668,1.965535,1.32813,3.969255,0.4434575,0.4434575,1.1586875,1.1586875,0.7658725,0.7658725,2.819955,3.181215,2.47473,1.503195,1.793315,3.692115,2.8541,4.967225,5.3522,1.972288,4.522745,2.327885,4.706929145299146,1.6315625,1.6315625,2.707375,1.729154,3.833946666666667,2.01878,4.576195,1.5826683333333333,2.57985,0.5533853846153846,1.2446271428571427,2.1369,2.3353725,2.0688525,1.3439,4.46642,4.464665,2.5138333333333334,2.5309633333333332,1.3954833333333332,0.7234916666666668,2.4282566666666665,3.370695,3.30594,4.685845,5.26455,5.07635,3.688585,6.75343,1.585775,6.472975,1.751895,4.72701,4.730655,5.915524,3.3595333333333333,2.19756,1.732175,2.0058800000000003,2.0058800000000003,2.4992875,2.4992875,4.42946,5.80205,0.933038,3.92359,3.647025,3.391355,2.7060733333333338,1.371655,2.79309,4.19296,4.378665,1.812134,6.6945,4.999515,1.95099,1.3218375,4.047825,4.423883333333333,3.709945,3.439365,4.00491,0.6753735714285715,3.7112,3.317,2.875273333333333,2.8895966666666664,2.176083333333333,3.6798333333333333,1.5684,1.5684,1.5684,3.1584533333333336,3.260263333333333,2.39578,3.476616285714285,2.4030275,1.2624485714285714,3.3005066666666667,3.2471333333333336,1.3521514285714284,2.92952,2.6946499999999998,1.2213571428571428,2.87902,2.9028533333333333,2.97329,2.9018800000000002,2.7210866666666664,2.042025,3.235936666666667,4.976536,4.27772,0.9479960000000001,1.623188,0.605935,3.6842666666666664,9.038405000000001,3.120343333333333,3.32732,2.6679399999999998,4.2890041666666665,1.8884975,7.896228333333333,6.956043333333334,2.7926,2.4125388571428568,3.851555,4.91669,1.5756640000000002,1.203906,1.334184,1.693535,11.277326666666667,2.9099133333333334,3.2097833333333337,3.01469,3.721085,2.3291733333333333,1.1661175,4.514225,1.1147850000000001,3.4103753846153846,4.00041,3.22478,3.420533333333333,3.173695,5.1551,1.142765,2.268995,2.107216,2.107216,3.686575,5.7839,10.8044225,4.413865,3.43459,4.76396,1.78457,2.273814166666667,4.53247,3.879465,3.7774,1.5601450000000001,3.0235133333333333,3.48317,3.770935,2.552475,3.93948,3.553945,3.72161,4.017825,3.79193,3.7021,5.38095,3.2941966666666667,2.6982366666666664,4.524345,2.89099,3.87605,2.07836,2.50154,2.548195,5.62555,2.28798,3.2567882954545455,1.61926,2.412845,3.074005,2.17075,2.0352725,0.9533566666666666,0.9533566666666666,1.727535,3.8873484848484847,4.02742,2.8130100000000002,4.7835,3.183835,2.459317714285714,1.04729875,3.18285,1.553295,4.39056,4.023925,0.9353075,1.8028525,4.075515,2.8871075,1.5790475,1.5559433333333335,5.108542857142857,1.0258433333333332,2.73354,3.135545,2.764505,2.40255,2.7166390000000002,2.086265,1.0202025,2.884195,2.931775,3.36476,1.4300066666666666,1.4949566666666667,1.78451,4.356785,2.13052,4.597925,4.60518,4.323745,5.9815,5.2583,4.22363,5.806955,4.259280476190476,0.8178709090909091,2.98548,4.57317,3.638225,0.4665090909090909,0.8831239999999999,2.87673,4.001065,4.931805,4.470915,3.2773210714285717,2.799795,5.0179,1.8084700000000002,2.527875,4.562065,4.248565,3.195165,3.20514,3.88109,4.91033,2.795205,5.6287199999999995,0.9357710000000001,3.50415,2.999995,4.32573,4.393255,4.62507,2.13008,2.60078,2.929095,1.8854566666666666,5.10825,3.564915,1.4049,2.727495,3.997565,1.418644,5.89093,1.859378,2.51937,13.536337549482681,3.068756666666667,1.4786933333333332,1.5383416666666667,2.1095466666666667,5.541948333333333,1.681608,4.167028,0.678703076923077,3.3897999999999997,4.055475,7.3505175000000005,2.47072,2.93975,2.93975,4.685675,4.3837,3.403785,3.23943,4.941465,5.25765,2.356435,3.18262,4.502915,1.2196566666666666,2.17043,4.70776,4.25963,3.327105,2.4188266666666665,3.414745,3.534615,6.478036666666666,6.016852500000001,0.780447,4.42208,3.40412,3.6843,4.20631,3.820415,3.77164,1.414986,4.993545,2.325745,2.761535,4.122595,4.17212,4.6565,0.8976945714285716,2.8824133333333335,9.051805666666667,1.4996483333333332,2.1468707792207793,2.2537525,3.815655,3.545955,3.18386,0.6107336363636363,2.3633025,1.6695575,2.2271825,4.28861,5.341325333333334,2.782802,9.87335,2.7946866666666668,2.75121,1.06363,4.503315,5.20995,2.092615,5.6241,2.795315,3.141445,5.478,4.67861,4.761185,2.15652,1.3256575,1.3256575,2.75486,3.269525,4.8714475,1.4001375,6.099716666666667,1.6895233333333335,3.93096,1.4179983333333332,8.766192,4.759695,2.60828,4.445795,3.741945,3.763625,1.1093833333333334,2.0366975,3.6318333333333332,3.1134633333333332,3.5817666666666668,3.699733333333333,3.786395,2.81054,3.15387,3.18394,1.4456025,2.467703333333333,1.8571133333333334,2.813753333333333,1.9400266666666666,5.191023333333334,3.28557,1.7572566666666667,3.04893,3.296485,3.963275,6.4954,6.26605,2.88785,3.5706,3.04618,2.914485,2.6308,1.2417666666666667,0.8397500000000001,6.648664999999999,3.28098,6.1221,4.81777,6.47865,2.83434,3.001376666666667,6.72325,2.41352,0.4615644444444445,5.8146,3.30503,3.996075,3.4930333333333334,1.4534714285714287,4.261055,1.069812,4.6435,0.92829125,1.66833,3.18125,2.3316266666666667,2.6582364285714286,3.647615,4.89768,5.843249166666666,5.843249166666666,4.85056,4.85056,4.73664,3.09754,4.462975,1.03068625,5.7911,3.30873,3.692933333333333,4.22534,3.870405,4.237275,1.8445525,4.861705,3.221946,3.30702,4.095005,2.69086,4.94215,5.25555,3.555325,3.36868,5.0722,3.559175,5.1948,2.87361,2.68678,5.77315,3.94447,2.8169799999999996,6.253948333333334,1.5839466666666666,2.12104,4.802375,4.427695,5.099,3.951895,1.978932,1.978932,13.601973123015874,11.2151,5.0656,3.20509,2.9753476923076922,4.606835,4.78506,2.7203199999999996,3.26156,3.43797,4.1501,3.735133333333333,4.983515,2.11411,8.69031,2.377145,2.12866,5.8829,2.347915,5.13435,4.51753,4.707675,0.71271,3.397515,3.457195,0.8542500000000001,2.953545,3.824995,1.3762539999999999,2.1573366666666667,2.8122166666666666,2.8114833333333333,2.3759133333333335,3.16837,2.33623,0.46901071428571434,2.54363,2.9314033333333334,2.801816666666667,3.2391966666666665,1.440662,3.219273333333333,7.196758333333333,4.6632,2.2594833333333333,1.9928333333333335,2.57633,3.69231,2.51372,3.5705804999999997,18.5682725,5.8195,3.473794,4.814095,3.65903,5.25987,1.4799,6.06865,1.6302283333333334,4.930695,4.50719,5.54735,4.98102,1.0055175263157894,5.977,2.46305,5.04905,2.98122,4.435925,3.941025,2.913915,2.07831,1.631446,1.943685,4.54103,4.765815,2.039135,1.85241,2.9618,4.189548333333333,3.1453133333333336,6.3004,1.9212175,3.643185,4.17196,4.24687,4.12912,3.106155,4.2111,5.05875,4.1252,2.788743333333333,2.788743333333333,5.3571511111111105,2.128156666666667,2.745033333333333,4.00521,1.74894,7.290775,3.48109,4.461553333333333,4.415633333333333,4.443285,1.911976,4.389765,5.35145,3.981665,2.13469,3.785,3.26712,1.446035,1.495915,1.24072,0.6881666666666666,1.80895,1.03189,4.49522,0.9774022222222223,2.5195066666666666,1.6654833333333334,2.0082875,1.1162483333333333,1.8757125,2.240165,1.614635,3.1294133333333334,2.5540366666666667,4.806968333333334,1.5910616666666666,2.715025,3.1043299999999996,2.9589866666666667,2.3903733333333332,4.3227408333333335,4.750765,5.021628333333333,19.428995,2.7222833333333334,2.165625,0.6727584615384615,0.62641,4.163026666666667,1.9581779999999998,3.91991,4.372805,7.337187999999999,3.54047,3.4527,3.87493,3.4407333333333336,3.08175,3.197623333333333,3.7552333333333334,3.003486666666667,6.47245,4.12843,0.935615,1.14983875,5.4683,3.265966666666667,2.7045100000000004,2.157293333333333,2.238323333333333,5.6717,4.94969,2.64515,1.1265033333333332,3.628155,5.0304,8.797653333333333,5.2554252083333335,4.440635,4.423115,5.45345,4.730365,4.30099,4.788785,4.07926,5.393,1.678805,5.87405,1.6371142857142857,5.1804,0.7463266666666667,5.128,5.57795,6.21135,6.21985,4.80083,5.9438,5.97655,6.4474525,1.9656666666666667,1.6213,5.5559,3.731285,6.817128333333333,5.15575,5.6510875,5.0727,6.248,1.3949728571428572,4.616055,5.2871,4.1761333333333335,4.84842,5.3166,2.71735,4.040355,3.14408,4.62365,1.0176583333333333,1.6858833333333332,1.4157980000000001,4.93986,4.00787,3.286255,2.258356666666667,3.0122,1.6228,2.184623333333333,0.3869483333333333,3.6513333333333335,1.7259360000000001,2.2180416666666667,2.950723333333333,2.54804,3.1644733333333335,2.553525,2.55745,10.218475333333334,3.9091666666666662,1.8822894871794873,3.789195,0.9094818181818183,4.6683625,1.092685,1.923065,1.95631,1.03122,5.806525333333333,1.153820138888889,1.153820138888889,1.153820138888889,2.95402,1.995384,4.933855,3.128325,1.3419725,1.4509225,2.343535,1.3149125,2.03914,5.4897875,0.90344,4.59053,4.57399,3.1976166666666668,1.0267,2.114036,2.0095325,2.0095325,1.5286233333333332,3.6717491666666664,4.554435,5.0076,5.6595,4.23948,5.44805,2.9790766666666664,2.141655,3.06747,5.2162,3.340555,4.16866,1.01665625,3.8246614583333334,5.3674,1.8304875,3.774565,3.1388866666666666,4.704955,5.16645,2.884675,6.90995,6.5265,4.265125,4.68525,4.205905,3.15533,7.52056,4.025305,5.4667433333333335,3.32182,2.7159566666666666,5.3714,2.6806666666666668,5.7028,4.393355,2.759916666666667,3.111265,3.90414,1.4511966666666665,10.62526,3.83932,3.171105,15.615578412698412,4.54924,1.7056766666666665,2.9742766666666665,2.036815,2.623435,4.125535,2.636150486111111,2.83497,3.338285,2.8855,4.043805,6.990589999999999,1.24542,2.0466075,4.26153,4.6556,4.94006,2.4628925,0.5908359999999999,4.465415,4.149805,2.0231525,1.5351350000000001,4.70055,4.75701,0.9583311111111112,3.6811,12.869018333333333,1.3179175714285714,0.4126835714285714,3.5315999999999996,4.5654433333333335,1.0791677777777777,3.968575,3.915035,6.589626666666667,1.3720766666666666,3.356485,4.03047,3.346275,4.60969,4.7489,4.603295,8.693625,3.14581,4.16319,5.3484,16.047856875,3.4616249999999997,2.60625,1.143,2.06931,1.2308175,2.40486375,1.238395,1.9676325,1.6512125,1.91315,2.3660525,2.37116,2.257795,5.7429,4.864285,5.659,3.056515,5.859791666666666,3.0008966666666663,5.0228,3.5449,1.2462575,3.683195,2.0090925,2.743284,4.965285,5.01975,4.91192,4.739355,3.05311,3.5934666666666666,2.4205200000000002,3.689175,3.734635,2.152195,1.79969,3.6039666666666665,4.588185,3.97682,2.4005033333333334,12.685793333333333,0.7067733333333333,2.609775,5.00105,2.5163640000000003,1.050488,2.596915,7.450338333333334,7.229901666666667,4.568655,4.074975,4.38317,2.1541775,2.305755,3.0265036666666667,2.2069266666666665,3.934636666666667,4.41724,4.22605,0.45819,6.2435,3.3751333333333338,3.3955333333333333,3.6644666666666663,6.1437,9.451331249999999,4.757675,1.09972625,2.2238725,2.26829,3.677055,2.462405,4.07581,4.62493,3.6199,2.933066666666667,4.259375,4.131425,3.689865,3.9931,1.9217433333333334,3.249085,5.4207,5.6136,2.9771033333333334,2.0350425,2.2119866666666668,28.938867000000002,1.4300125,1.4300125,2.36776,4.34235,4.09813,4.87306,3.43421,3.042545,4.52707,3.0664166666666666,4.076885,3.0664166666666666,3.38988,1.8697433333333333,1.52916,5.9752,2.68255,4.70561,3.281445,2.692655,6.583631666666667,2.1923833333333334,4.816025,5.2503,3.5877,3.54618,4.958605,2.09484,5.1174,3.49327,7.654601666666666,5.745006666666667,2.636,3.96789,5.35855,2.095975,2.7556,3.5656,0.5196592857142857,3.3003666666666667,9.952816666666667,3.880135,3.63934,5.20745,3.282565,3.037535,1.3480871428571428,4.179255,5.49015,3.27616,2.56583,4.815025,4.038555,4.22048,4.452485,2.765225,2.765225,4.01424,2.94732,2.7523425,2.059885,4.99798,4.06539,1.0030771428571428,3.812595,5.23255,2.9705966666666668,7.1445799999999995,7.6393,1.4872640000000001,4.13456,5.1072,7.120682,0.7387699999999999,7.569139999999999,3.596546666666667,0.6344718181818182,5.3961,5.4246,5.0614,4.43904,4.71384,4.38781,4.990035,4.13927,4.07153,4.60256,5.26805,4.85251,4.726135,3.8543,3.08912,4.15868,3.172925,0.9390980000000001,4.516005,2.410255,1.861185,4.613945,4.620605,5.84075,1.0151985714285714,4.99174,2.9696,2.6845433333333335,1.865305,1.2696566666666667,11.621260833333334,2.4780933333333333,3.1449200000000004,1.89678,3.6668385714285714,5.4340166666666665,6.232936666666666,2.6120233333333336,2.09512,2.18414,2.18414,2.18414,1.34863,4.152765,4.140095,3.48367,4.62782,8.108665,4.0277,1.0933680000000001,2.20484,2.908655,2.19246,1.784774,4.407715,2.77095,1.42049,3.11801,5.724347857142857,6.1640725,4.06749,4.01288,3.3246366666666667,5.17035,4.65866,5.608328333333334,1.8223175,1.8223175,4.542305,3.71907,2.7560439999999997,2.7560439999999997,3.899885,1.06555,4.97558,3.30735,4.153645,4.2203,4.05669,3.3763,1.092037142857143,4.42346,5.4109,4.518825,4.64332,5.02455,4.8495,4.651535,2.03514,1.4379275,3.40636,3.72856,3.14343,4.25947,2.079185,3.3351475,5.40045,2.682215,4.8594,7.98387,2.3476670833333335,2.898391666666667,4.578553333333334,5.016209999999999,1.655555,1.9850285714285714,0.9285899999999999,1.9850285714285714,1.8269133333333334,1.8269133333333334,1.606602,5.1563,3.16792,3.692695,2.45811,3.82141,1.5188733333333333,5.43205,3.015285,1.64974,3.0497266666666665,3.76152,4.12762,6.532916999999999,4.716655,1.369994,0.8483583333333334,3.6373,6.520113333333334,2.4083166666666664,3.418815,3.594255,3.594255,2.27257,3.34886,3.215585,1.4348946753246752,3.11535,3.66801,2.774855,4.51287,3.909715,1.5628175,3.24356,4.65135,4.554035,5.15205,4.129485,1.8307525,2.110455,1.28683,2.22194,3.36548,1.895955,4.74701,3.281216666666667,3.58132,3.9269,5.0134,2.67694,0.97387,1.8173233333333334,1.2789425,1.2159555555555555,4.96018,3.981915,1.106738,0.1927669565217391,0.1927669565217391,0.1927669565217391,3.856335,5.54315,4.480285,5.294,5.15185,5.2504,4.56869,4.248225,2.74512,3.503435,1.5531925,4.779525,4.33058,3.924785,4.370105,4.32501,0.7417354545454546,0.7417354545454546,0.7417354545454546,0.7417354545454546,0.984112,0.984112,4.188605,4.101625,3.58097,2.71665,2.485495,5.14445,5.10435,5.28725,4.28122,3.1280666666666668,2.5214766666666666,9.83931,1.6206720000000001,1.6206720000000001,3.92086,5.43515,3.3749333333333333,0.4434575,0.4434575,0.4434575,0.4434575,0.4434575,0.4434575,4.742966666666667,5.2229,3.80221,4.55731,2.6616291666666667,2.6616291666666667,2.74975,3.502533333333334,2.46918,2.90526,3.479155,7.432327333333333,1.402404,4.683115,3.974615,4.02418,9.574538333333333,2.520986666666667,3.01485,0.9503928571428572,1.97733,5.3258,2.95525,0.86338875,2.8903966666666663,4.54603,5.55965,2.75485,4.904515833333333,0.9463433333333333,1.8804299999999998,4.817885,4.807735,3.1623704999999998,2.7638200000000004,2.2738466666666666,1.4323583333333334,7.020925,3.5009,2.00562,3.09054,2.8002433333333334,3.3936,4.081855,2.7237299999999998,3.27506,6.0796,1.451615,4.482035,5.1062,3.389045,3.771045,1.9798266666666666,2.949235,3.70178,3.801955,2.97255,4.810885,4.606595,2.87161,1.85707875,3.0597166666666666,2.8151100000000002,2.895993333333333,0.7773481818181818,2.178655,7.766135,0.459744375,3.0927933333333333,1.39616,2.5443633333333335,3.4534000000000002,3.0232966666666665,1.3220888888888889,1.7265059999999999,2.66685,2.156015,3.69432,2.11224,2.9486833333333333,1.4275866666666666,3.3037659999999995,2.0987025,1.1047242857142856,3.058503333333333,2.1289875,2.3374133333333336,2.87684,3.2444900000000003,3.3022666666666667,3.4552,3.3001566666666666,2.9443933333333336,2.9529633333333334,2.85803,2.47532,1.79431,2.296813333333333,2.8294599999999996,1.6159833333333333,3.167196666666667,3.8383042857142855,2.88256,2.6183533333333333,2.89481,3.7876666666666665,4.972306666666666,3.1494,1.7252285714285716,1.7252285714285716,2.323035,1.1751025,2.573475,3.379881666666667,4.579342916666667,2.79135,2.1826625,2.143785,2.14756,3.658505,2.99766,3.85141,3.581905,1.75591,2.523146666666667,4.22124,1.199724,1.199724,2.1727425,0.6854476923076922,2.515466346153846,1.6501775,1.6501775,2.7867033333333335,2.444,3.0698566666666665,2.6245666666666665,2.2743325,5.6315100000000005,3.84283,3.84283,3.72007,3.086145,2.206205,2.907495,2.420555,2.791905,5.053575,0.477765,0.659382,4.200855,2.27728,2.933275,6.708876666666667,3.96838,1.6304539999999998,5.24904,4.74684,4.402365,4.4404,5.43,4.867315,13.68719,3.81751,1.58732,2.83517,3.76302,5.1908,3.12805,4.043555,4.355175,3.623925,4.11036,2.8024,2.680225,2.7373,2.37749,2.37749,4.004265,2.72393,3.022955,3.67906,2.2531,2.51461,2.1982525,1.823715,2.005035,2.137005,1.6567025,3.7671825,3.313925,2.56708,6.5326325,3.15651,2.2591766666666664,2.0663733333333334,3.320065,3.78095,3.65374,3.256677708333333,3.472495,3.07249,4.29155,3.32337,3.624255,3.82824,3.399303,3.52732,0.6583183333333333,0.6583183333333333,0.6583183333333333,3.33883,2.34143,5.64615,2.52507,3.7781,7.376908518518518,2.924803333333333,0.3690430769230769,5.41605,0.7558309999999999,4.325845238095238,1.97035,4.065205,1.90909,4.21367,5.479955,4.508735,4.243715,2.900506666666667,2.7890800000000002,1.508375,2.932166666666667,0.4033263157894737,0.5638217647058824,2.821813333333333,1.3190933333333332,1.92789,3.796525,3.07667,5.0744,2.7340466666666665,3.147535,3.501965,4.94154,1.9140525,0.8678442857142857,2.26671,3.439972,1.2989805194805195,5.2033,3.72724,3.831055,2.7571,4.246535,2.5624366666666667,2.5863066666666668,2.61421,2.522475,2.679373333333333,2.2673175,3.2157633333333333,2.5170133333333333,5.646572,2.257295,1.9706666666666666,2.18158,5.067408666666667,3.184784,3.184784,2.500243333333333,3.892215,2.3946375,3.799425,3.11858,0.5818313333333334,4.415795,1.9833225,11.961612222222222,7.08324,2.92437,3.08729,3.329415,4.82689,2.81224,3.499965,0.28381866666666666,1.9520125,3.3767,0.8413166666666667,3.748215,1.35953,4.880345,3.345285,3.374635,3.534135,3.42718,2.354175,4.589055,3.68553,3.87235,6.62837,3.871545,2.9698466666666667,3.0696833333333333,1.6206340000000001,2.00871,4.19274,3.929475,3.843575,2.40547,3.31287,1.43724,3.312495,3.22587,3.731955,10.835963333333332,3.629935,5.34243,3.9083,4.752755,1.038582222222222,4.884212,4.926385,2.50567,2.889366666666667,2.77629,3.4341333333333335,2.2678,1.6630766666666668,1.8462766666666666,3.95207,1.7113720000000001,2.9405366666666666,5.263880666666667,2.897413333333333,1.1617575,1.1617575,3.53466,2.9429369999999997,2.9429369999999997,3.255153333333333,2.853566666666667,3.1284438461538464,3.957466666666667,3.4461333333333335,2.6195733333333333,2.405996666666667,2.402746666666667,3.0583033333333334,2.180995,2.4399466666666667,1.625588,5.690718,9.6323955,0.5051415384615384,0.5051415384615384,0.5051415384615384,0.6476283566433566,0.6476283566433566,0.5051415384615384,2.96278,2.9670400000000003,4.084016666666667,1.3746533333333335,1.7366525,3.2975399999999997,2.3938200000000003,2.9998066666666667,2.3432033333333333,2.9862266666666666,3.512033333333333,6.786965,3.043863333333333,2.4517599999999997,3.0075299999999996,5.0158,2.5586166666666665,3.611,6.01746,2.3663766666666666,3.3679666666666663,1.3499333333333334,1.3499333333333334,2.9128900000000004,0.541257894736842,2.6285966666666667,2.672083333333333,2.8841566666666663,3.238493333333333,2.2783366666666667,1.53936,2.7114700000000003,2.9064033333333334,2.285093333333333,4.434985,2.6429983333333333,3.36225,2.20989,3.637135,0.6047629999999999,7.317398333333333,3.141838,3.141838,7.642149166666666,1.7419166666666666,1.8043466666666665,3.035693333333333,4.502065,2.326286666666667,1.8842133333333333,2.7635966666666665,1.4094375,3.5772999999999997,1.7875166666666666,2.828501,1.3654225,0.27026863636363635,0.27026863636363635,5.12705,3.967855,3.21364,3.013253333333333,2.632715,3.494695,1.3785233333333335,4.974425,3.775605,2.83636,1.80583,1.2588308333333333,2.039125,3.035693333333333,2.90979,2.050635,5.42333,3.855595,4.295445,3.77848,2.68591,0.6729766666666667,7.3601875,2.0546775,1.395605,3.332105,4.237535,2.13829,1.8166166666666665,4.553365,4.247105,3.28513,3.2228666666666665,4.36926,4.523095,3.736333333333333,2.540132,2.540132,3.67479,4.643835,5.5687,6.507996666666667,2.65037,4.178525,1.3866657142857142,2.53915,5.007042,3.81714,1.796632,4.722475,3.5650525,3.94549,2.11769,4.209675,4.891225,4.951495,4.674195,2.2298233333333335,2.48441,3.7173,2.02364,2.3934825,2.7083733333333337,2.3824733333333334,0.830554,2.465115,2.9149233333333338,2.105064,4.66221,4.54908,4.815305,3.70403,3.65942,4.8549999999999995,12.447375,5.0557,3.991745,4.28738,3.852815,4.63312,2.5750933333333332,3.4477106666666666,3.6724,1.2483525,2.71518,2.835875,4.760815,5.42165,4.300865,3.6493,3.1328,2.3977366666666664,4.2682,3.8830325,3.5857666666666668,3.8830325,2.29331025,2.2362800000000003,2.3202716666666667,2.2347125,2.81749,1.8040566666666666,0.8667266666666666,1.4151916666666666,1.9456333333333333,1.9628566666666665,1.62863,1.3161066666666665,1.68794,2.8150399999999998,1.492954,3.2358700000000002,1.3334333333333335,1.5320966666666667,2.656115,3.814166666666667,2.40523,2.0734866666666667,2.2581866666666666,3.237445,2.253325,2.82101,2.93704,2.4409033333333334,3.0599433333333335,2.9576325,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,5.02125,3.07762,1.0037428571428573,3.0564999999999998,2.5608333333333335,2.9739299999999997,4.00298,3.104643333333333,4.6394,3.5619700000000005,1.5707900000000001,3.11614,1.7132666666666667,0.988765,0.99014,1.7102666666666666,0.8779283333333333,0.7595608333333334,1.294394,3.162005,1.54325,1.5938566666666667,1.943935,2.415602777777778,1.4220249999999999,1.264395,1.6208266666666666,0.9440633333333334,1.2501,0.7079133333333334,0.916696,3.205455,3.49515,4.07443,4.460805,4.383305,3.1501933333333336,5.0764,3.5769333333333333,2.1144625,3.497785,2.1016425,3.52245,2.30719,0.8321999999999999,4.351855,5.1475,1.97992,1.2620175,2.918585,3.331315,3.6717491666666664,2.96575,2.65466,0.956335,2.1475975,5.0380375,3.701245,2.624185,1.5303633333333335,3.708565,2.02946,0.6032154545454546,4.56627,4.22698,4.32134,2.343045,1.4771100000000001,3.45706,4.28818,2.47026,2.5354633333333334,2.4997833333333332,2.6156166666666665,2.70511,2.7619233333333333,3.21842,1.279675,2.63305,2.618723333333333,5.1192,4.465085,3.878105,4.78986,16.57766826388889,4.20765,4.652505333333333,2.776175,4.345015,5.096,1.551946,2.3152675,2.5983033333333334,6.1985825000000006,4.42036,3.5486,6.66475,2.5983033333333334,3.689975,1.942775,2.3738766666666664,2.9891233333333336,2.8273733333333335,1.30446,4.39951,4.00248,2.55148,4.1704,2.5634833333333336,3.1132899999999997,3.676475,3.327035,4.711235,3.89595,2.579555,3.407135,2.5351,2.66389,1.274664,1.274664,2.9186433333333333,2.505673333333333,0.33433535714285717,5.330613,0.994248,2.699075,3.797435,0.5505191666666667,4.878595,8.273796666666666,1.7829225,3.65762,3.697735,2.3733633333333333,3.303855,2.277445,2.993395,3.467365,4.100765,3.06566,3.8509333333333333,1.0037833333333335,11.364927333333334,2.86621,2.841425,5.7171,2.595515,3.85251,7.818583333333334,4.34542,4.18014,3.726745,4.41293,5.774817499999999,1.5158725,2.938753333333333,4.857645,3.8352,1.8432860000000002,3.78036,3.608475,3.544085,3.90803,4.334105,4.059415,2.4852366666666663,4.1071,3.818195,5.16915,3.288825,2.14487,2.176556666666667,2.150443333333333,3.018243333333333,1.25299,3.6346666666666665,0.8616909090909091,3.368233333333333,3.219003333333333,2.6802166666666665,1.6383966666666667,4.38052,4.42578,4.145725,1.83736,4.802265,4.006915,0.7086484615384615,0.33833846153846153,4.148725,5.28955,0.98042875,0.33833846153846153,5.0044,0.7086484615384615,0.7086484615384615,0.33833846153846153,5.5667816666666665,2.5105766666666667,2.4011566666666666,5.6125,3.7977,3.1435,0.7955055555555556,3.2284,3.71124,4.92425,5.7259,2.1783875,0.7575592307692307,4.3682575,2.29011,1.4299899999999999,2.0208475,1.0437557142857143,2.432113333333333,2.1416999999999997,3.901495,5.43335,2.86832,2.9918066666666667,3.00897,2.22802,2.966465,4.3728187499999995,1.75933,1.8760575,3.889665,5.2331,2.1969394444444443,5.6217,2.917385,4.015025,4.123905,2.89188,1.251625,3.040805,6.7363,3.81626,3.23981,5.28305,6.24745,2.19945,3.334065,4.416605,3.040745,3.364675,8.12003,3.75286,4.5911675,2.145915,1.0931275,2.64411,1.96794,2.116595,1.86853,4.07762,0.6869821428571428,3.32702,4.02795,1.8279233333333333,3.008646666666667,5.3791,3.169255,3.1107,4.434395,5.28855,9.294733,2.5612866666666667,2.6860766666666667,1.665206,1.5812366666666666,1.13149,1.5001933333333335,2.8622366666666665,2.4743566666666665,2.76385,4.210508525641026,1.5485275,2.57729,4.900325,5.43605,3.947685,3.37224,2.901125,2.344025,2.077795,2.145505,1.8899966666666668,1.945285,3.31728,3.967,4.842335,5.2337,4.12365,5.606802083333333,3.271575,2.758995,6.611348333333334,3.187345,8.72888,4.996522499999999,4.996522499999999,5.156659166666667,1.61596,1.369525,1.4502433333333336,0.721924,4.91617,3.8685666666666667,3.42957,3.42957,2.01936,4.50701,4.322975,4.55838,4.183365,2.82803,2.65443,3.704735,3.0638400000000003,5.114878333333333,3.497275,0.8203854545454546,5.32145,5.22015,4.078685,5.11725,3.29762,5.9365,4.518245,0.8262692307692308,5.58345,7.133698333333333,3.29274,5.8228,5.8157,3.304225,2.582435,3.65562,6.2046,2.13234,5.8584,1.85756,4.75977,2.635126666666667,2.13393,0.9357710000000001,3.05834,6.03795,3.255735,3.91489,1.9126433333333335,4.564235,8.163603333333333,3.486915,4.19554,2.459095,2.746185,0.8579269999999999,4.853325,1.5499150000000002,3.542349166666667,3.542349166666667,3.78556,2.3134466666666667,3.226126666666667,4.05333,1.93951,3.0345866666666663,3.5013,3.3978,2.945455,3.84134,2.74874,1.798285,3.366433333333333,2.2150425,3.0235833333333333,1.9890566666666667,3.0454066666666666,3.26329,1.4170528571428573,1.8316966666666668,0.7478883333333334,1.2899116666666666,0.7478883333333334,0.7478883333333334,1.8316966666666668,0.7478883333333334,3.5811333333333333,3.33627,3.33627,2.9356766666666663,4.37364,3.81011,4.38849,5.36765,5.3309,3.41184,4.15944,4.276035,2.157785,2.498107,2.5070200000000002,0.7984172727272728,5.6087,3.135283333333333,3.13944,5.7295,3.884595,5.2738,3.32744,2.5568633333333333,2.870455,3.351555,2.4000566666666665,2.6039833333333333,1.9685266666666665,5.34675,0.9093088888888889,4.019945,1.175892857142857,3.39862,2.6148466666666668,3.0084166666666667,4.25977,4.43646,3.9551,4.66383,3.955125,3.776235,4.528155,4.175895,2.554675,2.81455,3.2571366666666663,4.154085,2.87547,3.356495,2.613365,3.0641,3.2627966666666666,3.310695,5.2825,4.85915,3.994865,69.11953945303308,2.5857516666666664,4.01707,16.454013333333336,3.96279,3.0944966666666667,2.4332733333333336,1.8723633333333334,2.8942099999999997,4.6455175,3.0368366666666664,4.405549166666667,6.30825,3.297145,7.757513333333334,5.33825,2.226135,3.124165,3.698285,3.420565,1.89527,1.13943375,4.61357,2.934825,5.9196100000000005,3.769935,2.24005,3.357855,3.920625,4.45223,3.123475,5.4675275,4.18856,3.88934,2.891905,2.5942,2.684945,5.8974,2.804015,3.598445,4.341136666666666,1.1823949999999999,2.90993,5.1848125,4.250965,3.27477,3.57709,3.062625,4.06715,3.074145,3.26456,2.915175,4.505215,3.065445,2.84039,4.47297,9.313685,3.20081,4.01303,6.79288,3.01416,2.03947,3.953149375,2.0955033333333333,2.818443333333333,3.110128,3.277255,3.097275,2.891775,3.34584,3.44793,3.99041,3.784925,4.090225,3.91642,3.3521,3.73966,2.7634066666666666,2.7634066666666666,7.020491666666667,1.755915,2.988665,3.16586,2.356255,4.838595,4.127515,3.18157,3.80622,3.607015,6.21772,0.6355872727272728,3.81378,2.26618,2.806696666666667,2.593176666666667,5.15985,2.71869,1.91544,1.20341875,2.0584801515151514,4.13996,4.74802,4.222625,5.9565,5.3039,5.80925,2.393935,1.8291199999999999,3.95453,2.922395,2.88326,2.0583766666666667,1.3080766666666668,2.7133766666666665,3.3566333333333334,1.423592,2.5153633333333336,2.130802,3.492762445054945,2.808505,5.07735,3.29051,1.3514625,2.903805,3.44368,5.7066,5.03535,5.85615,5.03465,1.9347566666666667,1.4907466666666667,0.5936757142857143,1.5231133333333335,3.44932,2.512915,3.6304116666666664,1.5167766666666667,2.51448,2.3312,3.394065,3.553075,3.74296,4.032505,1.5970575,1.3969925,1.865625,2.0260225,1.46706,2.58355,7.152882583333334,4.89132,3.62756,2.91789,6.6054949999999995,4.716155,3.160035,3.01428,3.324985,2.65412,3.67452,2.24052,7.12247,0.886235,2.961605,6.70335,3.933855,4.702775,5.5671,1.4869933333333334,3.2585766666666665,2.9804,2.8217933333333334,1.47819,4.024285,8.61437,3.6181,4.969795,3.951235,3.21393,4.816075,0.8586550000000001,2.8120833333333333,5.2645,6.494293333333333,5.04265,5.742,3.01669,3.8280999999999996,2.646386666666667,5.12325,5.0431,4.012181047619047,4.012181047619047,0.6507757142857143,3.7774666666666668,0.917412,0.5395183333333333,1.8339725,3.896433333333333,4.430199999999999,5.906028571428571,3.2200933333333333,3.5553485714285715,3.121541904761905,2.7227933333333336,3.207803333333333,4.5963666666666665,3.0212891666666666,1.9201025,1.9201025,4.106,3.0096966666666667,2.6244366666666665,3.87267,3.5071333333333334,0.5801688888888888,3.3822666666666668,2.604346666666667,2.71213,2.8443966666666665,2.55425,2.5324,3.4210333333333334,3.01079,0.8451919999999999,2.8404000000000003,6.376890952380952,2.15764,7.2764310000000005,1.6389900000000002,1.6389900000000002,3.524351666666667,3.4098,3.4042333333333334,3.040236666666667,1.798276,1.3280642857142857,3.413866666666667,3.325556666666667,1.58388,1.4634142857142858,2.8336133333333335,2.7165939999999997,2.78055,1.68283,1.9065325,2.842555,2.234275,2.59591,3.25551,1.45152,3.55682,2.94357,6.883483,3.459025,1.6365325,2.93887,2.89606,2.10986,3.961705,2.318303333333333,2.669065,7.522285,0.842023076923077,0.7921666666666667,4.561815,1.571196,1.571196,3.884505,2.4528875,4.493535,3.267415,1.2881366666666667,2.299796,3.017303333333333,2.3310293333333334,5.07875,4.244195,2.6540166666666667,2.2624666666666666,1.4353542857142858,1.4353542857142858,2.4236566666666666,3.812605,3.852866666666667,5.83445,3.1681566666666665,5.136,4.45741,6.8598,4.74356,2.52743,2.7792766666666666,2.6487433333333334,2.5398366666666665,0.7582322222222222,0.7582322222222222,0.7582322222222222,3.002915,4.391,3.687175,0.887235,0.887235,5.16815,6.00555,6.43846,22.148330055555554,12.083,7.75065,3.119805,5.9885,2.3450025,4.47826,2.63977,3.1819100000000002,4.063366666666666,5.393958666666666,2.13612,2.18015,6.51696,2.01816,2.01816,6.47035,3.32882,4.15847,2.21765,4.811810833333333,4.44462,3.94065,5.17845,3.62823,1.5683966666666667,5.8256,8.90941,1.5683966666666667,2.21765,1.8787766666666668,0.9353199999999999,0.9353199999999999,1.8518519999999998,2.23335,1.8518519999999998,4.577645,5.778,6.4356,9.1188,2.21765,11.566830333333334,6.1957,6.09735,2.3450025,3.495125,4.482905,8.60437,2.9509316666666665,4.301945,6.0073,3.440535,4.74447,6.52035,4.56296,5.1171,4.9181,2.773675,5.01475,3.556595,4.62735,4.45537,0.77416,1.5121639999999998,2.99281,5.56035,4.615455,2.897413333333333,2.11348,4.47204,4.939105,5.9156,5.3999,5.2933,4.373655,3.14803,4.173665,3.789505,2.03864,4.846865,1.98721,2.514525,3.454725,1.56299,3.83155,3.972535,3.654035,5.19695,2.997765,6.540291666666667,0.9730455555555556,3.37125,2.63786,1.2264985714285714,5.1764790000000005,1.5455316666666665,1.7314433333333332,2.643946666666667,2.929069,3.120093333333333,2.8748666666666662,1.838335,0.7261772727272727,2.10569,2.553175,3.620685,0.7269923076923077,5.567355,1.53031,1.243598,3.2419100000000003,1.243598,3.84793,0.9260181818181817,4.379855,3.3166366666666662,1.725405,4.905368,4.3772780000000004,4.3772780000000004,4.934885,2.5021,3.044473333333333,2.9986333333333337,1.440662,3.64248,3.56511,1.9258300000000002,0.7066491666666667,7.079467307692308,2.734575,3.803955,4.274585,7.4485,2.4179175,4.14168,3.72113,3.07665,3.957065,5.56825,6.2723024999999994,4.663795,4.939295,5.42955,2.9114966666666664,5.1857,4.411365,4.45369,1.122211111111111,0.48205785714285715,3.116185,3.524233333333333,2.9003833333333335,5.4544,3.77337,4.22329,4.414565,5.41915,4.400855,4.325625,1.20634,2.330825,8.784229166666666,2.2896566666666667,1.8535133333333331,4.061494761904762,11.560221468253967,1.48578,4.91084,6.424,4.9928,3.5098333333333334,2.3158866666666666,3.4072999999999998,4.29793,1.0590483333333334,2.8407666666666667,3.51336,0.36314842105263156,2.21401,4.71825,4.0998,2.222055,4.35375,2.845045,5.199725,1.42234,0.5629609090909091,3.7773849999999998,1.201002857142857,1.0555125,1.0555125,1.0555125,1.0555125,1.6049016666666667,2.89962,2.0246633333333333,3.5787,5.36705,3.5967333333333333,5.381,3.71466,4.1997,3.30245,3.93083,1.3480733333333335,6.985405,2.372405,4.852785,5.4346,5.14275,5.1580425000000005,2.3545133333333332,2.53996,2.54282,3.635275,1.1481966666666665,4.561906666666666,2.5916266666666665,4.90858,3.1119299999999996,2.51176,3.63897,3.48226,2.92061,2.3874733333333333,2.7215399999999996,1.459195,0.3893877777777778,4.380385,3.817155,4.06532,3.525905,3.72996,6.0528,4.553455,0.5326223076923077,3.2033760000000004,7.475039333333333,2.110603333333333,2.16106,5.819301666666666,5.0633,2.8845733333333334,5.03895,5.15175,4.4734,4.08463,4.06566,5.3794,5.71205,5.21105,3.49262,5.356933,1.5578400000000001,1.6648683333333334,4.26118,4.19734,3.95809,3.131355,5.474,4.21448,3.71803,3.28467,15.832535228042868,1.2527021883360085,1.1722025,1.9554215909090908,0.506439375,0.48501,1.5048625,0.3609323529411764,1.348326,3.2633500000000004,2.04786,0.9731916666666667,1.1263604166666665,0.4481641666666667,1.1263604166666665,1.1263604166666665,0.4481641666666667,0.8486230769230769,0.5737192857142857,2.770325,2.8895633333333333,4.928045,4.166955,2.7509200000000003,2.66025,4.460385,4.582755,5.16935,2.805095,4.42431,0.6967435714285715,2.321124666666667,8.0849775,4.437695,6.590351666666667,2.886615,4.292955,2.320695,5.37795,5.6539,4.341015,4.12341,3.226975,1.0175966666666667,4.63345,4.89128,1.368104,1.3715439999999999,1.5719016666666665,2.2717300000000002,2.1548266666666667,4.381765,5.23055,2.3160625,2.3160625,3.542404166666666,6.71695,2.0582266666666666,0.6507118181818181,0.7279757142857143,2.6523066666666666,3.4535,0.9882857142857143,0.9882857142857143,0.9882857142857143,0.36423230769230763,1.104987142857143,3.005625,6.1434,3.8707999999999996,4.195614166666667,5.299,1.0708199999999999,3.4932666666666665,3.3149433333333334,3.9133333333333336,5.75865,2.695256666666667,7.472949999999999,5.17425,1.1336666666666666,3.8570333333333333,1.932468,2.585145,2.29114,7.32637,3.1603100000000004,4.31711,2.276975,4.555675,4.42983,4.95513,0.4744272222222222,2.8120433333333335,1.3960133333333333,2.613836666666667,3.8346653333333336,1.9255033333333333,2.7157433333333336,2.72382,2.5420233333333333,2.7911099999999998,2.9614100000000003,2.6510366666666667,2.8045333333333335,1.3250920000000002,2.293973333333333,2.06175,3.29095,2.5934133333333333,2.1547675,1.7275933333333333,1.94206,1.6563575,3.21863,2.16471,2.0617533333333333,2.0662433333333334,2.3903833333333333,2.35787,0.8425433333333333,0.8425433333333333,0.8425433333333333,2.3978466666666667,2.156946666666667,2.9594566666666666,2.21131,2.4597633333333335,1.9199966666666668,3.692915,3.345065,1.2527016666666666,2.46825,2.7135,3.6370899999999997,1.6387,7.0614783333333335,4.496395,3.15809,3.861195,3.547275,1.4402625,0.8262785714285714,3.455395,3.60714,3.6370899999999997,4.262985,4.3508,4.83345,3.0124333333333335,4.25568,4.129365,0.8583719999999999,2.71437,3.261915,5.115085,4.735205,3.364275,3.13199,2.56313,2.10955,2.26165,0.63863,5.390070833333334,2.627475,3.940425,2.7315400000000003,3.85022,2.992983333333333,2.42813,3.022554,3.022554,2.5066,2.0767700000000002,2.52923,2.0062133333333336,4.262435,1.436584,2.417325,3.707245,4.20214,3.96676,5.56635,4.191165,2.51915,2.185885,3.220235,2.90721,2.54495,5.36185,2.628605,0.9405014285714286,0.9405014285714286,4.86542,3.750661,0.9568960000000001,4.327615,0.9568960000000001,4.03286,4.926535,4.85003,3.255925,3.16381,6.48508,4.137133333333334,5.67115,0.8742571428571428,0.8742571428571428,2.14454,4.63015,1.615375,3.014775,3.41487,1.1093585714285714,3.91711,4.07916,5.7834,5.7834,1.17864,5.60885,5.2325,5.0885,5.95255,1.95036,1.95036,6.85415,0.9684181818181817,7.1739,1.99253,6.4855149999999995,2.628485,2.4841533333333334,3.46531,2.0364,2.0698866666666667,2.4502633333333335,2.98112,2.3645983333333334,6.323605000000001,1.7801259999999999,4.980135,3.2074166666666666,2.8023166666666666,1.889495,2.277625,2.98531,3.512695,3.63212,2.631305,1.997305,2.124315,2.665445,1.005926,3.22654,2.40547,3.094645,2.0715065,2.0715065,3.01581,2.00327,3.634715,3.406675,4.83513,7.317728333333333,3.996575,3.24609,6.571550833333333,2.0664633333333335,3.321527777777778,2.218976666666667,1.512857142857143,1.7190775,4.1086,1.5886233333333333,0.497018125,0.6935333333333333,4.078775,4.56243,2.84053,1.0067877777777778,3.104505,3.0370166666666667,4.71181,1.814784,1.915295,1.163722222222222,4.830555,2.29776,4.478075,0.753547,4.286238333333333,3.96045,3.53264,4.541485,3.332,3.83629,3.12217,5.4522,3.457275,1.9694266666666669,2.74255,5.953758333333333,6.4143075,0.7539075,3.703765,4.784845,5.40545,3.8363,3.7838,2.674075,3.3198966666666667,3.8113333333333332,6.059374999999999,2.7165939999999997,2.520633,4.122595,3.109175,2.272705,2.538525,8.453619999999999,4.596745,1.8196166666666667,5.1819,4.703885,1.74157,3.7689,1.3487625,1.610642857142857,4.763335,4.20799,5.02155,2.525396666666667,3.630855,3.43299,5.0116,4.237335,3.96189,3.595185,4.134995,4.34827,3.81994,1.1613618461538462,1.1613618461538462,7.89136,1.06217,2.2738269444444446,1.06217,0.6920116666666667,0.4088544444444444,2.9658386111111112,2.51055,0.5606099999999999,2.2738269444444446,2.03888,2.782725,2.405228611111111,3.36012,4.746935,7.298914999999999,1.94407,2.321925,2.16029,4.62005,5.71025,1.790585,1.6311275,1.2562425,2.8873699999999998,4.1773,2.600635,4.38696,6.32038,0.4736316666666667,3.79261,0.782853,2.8960899999999996,2.3209,4.18824,1.3084550000000001,4.10595,4.903075,4.246995,2.865205,4.184785,5.45944,1.85851,3.89349,0.6514876923076923,2.684105,2.774035,1.310314,3.0398566666666667,2.4602166666666667,2.4990433333333333,3.704215,9.04315,2.875079393939394,3.69285,3.412195,6.7640150000000006,5.26803,3.335433333333333,4.07687,3.507685,5.8268,4.31473,5.32735,4.90486,4.1744,4.95643,3.217503333333333,1.47749,1.9062833333333333,2.221083333333333,3.95149,2.3552633333333333,0.1875762162162162,0.1875762162162162,0.1875762162162162,30.392627857142855,0.1875762162162162,3.152351216216216,0.1875762162162162,0.1875762162162162,0.1875762162162162,3.2614795495495494,4.30179,0.1875762162162162,0.1875762162162162,0.1875762162162162,0.1875762162162162,0.1875762162162162,2.69999,5.39522,3.65576,0.18718153846153848,0.18718153846153848,4.365983333333333,4.101272666666667,4.060383333333333,3.4562113333333335,3.9989685714285717,8.090266666666668,11.431664553224552,6.641248,8.073730000000001,7.294813857142858,2.9128900000000004,6.597748571428571,4.54945,4.504916602564103,0.18718153846153848,7.92507,6.955231619047619,6.846776666666667,2.6489,9.651890357142857,13.896736904761905,18.9073623489011,56.70039487313504,118.28556210885765,1.3499333333333334,3.3679666666666663,3.3312,3.9545527747747746,0.18718153846153848,1.6363874358974357,8.294271041666667,15.285850773809525,19.832541388888888,48.43408565204678,13.129656523809524,3.1759,0.21939206896551725,0.21939206896551725,4.3801000000000005,2.6228433333333334,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,4.99267,0.21939206896551725,0.21939206896551725,0.21939206896551725,2.606715,2.0832833333333336,3.887795,3.644965,4.01113,5.30805,2.1875325,4.198405,4.30095,3.21258,1.4740566666666668,3.52539,1.0134933333333334,2.3458925,2.0878433333333333,5.285613333333334,6.193316666666666,2.72022,5.925147055555556,0.5311661111111111,0.49389466666666665,2.5602533333333333,3.03464,2.790865,4.22812,3.3827,7.30526375,3.884155,3.93235,3.316695,3.962475,2.957355,3.225715,5.7574,1.78637,0.44512769230769234,0.8201654545454545,4.3541225,1.755295,3.66742,3.520155,4.43403,3.5131,2.4154175,2.650865,0.6269806666666666,0.752846,4.46199,2.5873566666666665,5.34715,3.632775,3.887648333333333,2.79817,2.876625,4.77041,3.80602,3.065625,0.8698190909090908,3.1360533333333334,4.41951,2.2233,0.9449225,1.5254433333333333,4.087625,6.31825,1.95156,2.98937,3.96471,5.7431,2.52175,2.354366666666667,2.310025,4.71943,2.4,3.67672,0.67234,2.20787,3.17193,1.749655,6.036593333333333,3.051115,4.2161,4.710955,2.788145,1.93015,0.49496,4.675945,5.12535,5.89885,2.598845,3.318245,3.924585,2.79099,2.833575,1.22623,4.95942,2.07655,2.6771,8.20886,3.987445,5.0238,3.74291,0.8322777777777778,2.98445,1.25159,3.188695,6.2083,5.16345,5.30295,3.77969,5.12405,4.49928,1.78783,1.8875933333333332,5.20975,3.296416666666667,3.4345,2.5241,5.4778,4.865515,1.4326033333333335,3.731033333333333,2.885015,2.75331,4.15498,9.03097,4.73094,1.6684125,4.699435,6.59804,4.4168725,4.01426,3.935845,4.09173,4.950325,8.780835,2.296933333333333,3.128045,3.24753,4.11948,2.98464,3.18066,5.00265,4.2876,3.637715,4.0212053333333335,19.205505000000002,2.8728933333333333,2.6429666666666667,3.4206,5.7146,1.24711125,4.15192,2.0236816666666666,4.90473,1.4791383333333332,4.25737,4.275995,3.94171,0.98329875,4.64715,4.386885,1.64134,4.516419393939394,4.18175,1.1412285714285715,3.41585,1.882975,2.332415,1.808715,4.213735,3.814885,3.860095,3.569135,2.9714733333333334,4.65128,8.051291666666668,4.592665,4.66739,5.13855,3.31227,4.279265,5.0284,6.824206,0.9835160000000001,0.9835160000000001,4.51454,5.0525,2.38517,1.4922416666666667,7.497555,4.225325,3.7723,3.99934,4.66502,4.601365,3.39962,3.861115,6.567515,4.257873333333334,4.661875,4.905585,1.490757142857143,2.776075,4.655755,4.823485,3.5277175,0.20808055555555555,1.5188725,2.1488275,2.5107066666666666,2.0089099999999998,0.9666344444444444,1.3264675,1.3247075,2.4449033333333334,0.59572,1.0375528571428572,1.962415,3.823745,3.9828333333333332,2.33525,2.69859,2.86637,2.7232833333333333,0.67452,0.9082975,3.238425,4.583915,4.06499,2.97297,4.564575,4.776615,4.431455,2.1922,4.405995,5.0847,4.49032,6.1460225,3.685125,0.48413529411764705,5.53935,4.40902,3.90874,5.0616,3.305945,1.9371759999999998,3.819125,4.088545,2.435645,5.220494166666667,4.492945,1.3551549999999999,5.220494166666667,4.043905,6.8764175,3.54692,1.2243111111111111,3.967435,5.21465,3.976405,2.5582866666666666,5.06585,1.401665,1.98197,3.075875,3.3602,0.8058288888888889,5.04725,4.88113,3.610335,3.8426,3.3316166666666667,3.18525,1.8581720000000002,1.87082,3.16117,3.311545,3.5879333333333334,2.3829766666666665,2.2101275,1.9667836666666667,3.916945,1.4599,0.8113322222222222,5.68392,3.740295,1.531314,2.7640966666666666,2.240693333333333,3.122726666666667,6.086283333333333,2.236689444444444,0.819407,2.62331,4.486465,2.1044766666666668,4.31314,5.20425,5.4394,4.57753,4.279,4.783975,2.1626533333333335,2.2291366666666668,1.6472866666666668,2.0284066666666667,1.86628,2.3733299999999997,2.190636666666667,1.7488475,2.68006,2.97129,4.61514,6.63095,4.64124,4.14892,4.432095,3.723515,3.995755,4.73038,0.910095,3.3748,4.615075,1.187912,0.6469520000000001,4.96454,3.57196,2.5931466666666667,3.44298625,6.44156,5.50185,1.02394,1.23691,0.6948677777777778,4.018724166666667,2.2103766666666664,2.7563666666666666,1.2149371428571427,2.8778566666666667,2.73104,5.815,4.60492,4.546135,5.3224,4.70788,1.24172,3.56619,1.6714399999999998,3.419735,3.997895,3.390875,2.889606666666667,3.2322699999999998,2.7670600000000003,2.987455,4.170485,3.304805,2.5576,8.555425,10.1740275,4.20308,1.3494542857142857,5.42515,4.29352,4.881445,4.531715,3.852895,3.805455,3.343625,4.111225,3.654380729166667,5.96107,3.89041,3.96606,4.51169,1.8517579999999998,5.261,5.42525,4.815105,3.31335,3.268515,7.18494,0.8182908333333333,2.5960666666666667,2.7261699999999998,2.3213966666666668,5.11745,3.659895,1.3861383333333333,4.34064,3.432733333333333,3.65406,4.80943,4.0964475,6.69209,3.3110233333333334,3.1491866666666666,3.336066666666667,2.89275,4.18379,2.2169366666666668,2.2539633333333335,3.061253333333333,3.947755,3.5401675,1.8887775,1.535675,3.430017857142857,3.4727985,0.9755266666666667,2.768021666666667,2.768021666666667,1.3562575,5.7346,3.270115,3.24284,3.65501,3.33454,3.473375,3.52434,3.224395,3.22717,2.4877966666666667,0.5333406666666666,3.224345,5.621175,2.990495,3.56706,3.18542,3.950975,3.97806,3.149105,2.606325,3.69661,3.671905,3.208295,3.14965,3.29635,2.5201233333333333,4.09503,3.88233,8.81974,3.25602,3.572945,3.020865,3.932095,4.03315,3.56186,2.31072,3.60464,2.6236775,2.866535,2.96991,3.183235,3.76386,1.7916366666666665,1.7916366666666665,2.16647,2.770895,3.446585,1.507512,2.40984,3.372095,2.09524,2.734445,1.507512,4.75179,3.09152,3.8641815,3.07146,3.608585,2.26266,2.97444,3.918745,3.889435,3.76331,4.29599,3.681835,4.198115,3.54563,3.122805,3.051,2.85682,3.870385,2.58394,3.641915,5.1442,4.29495,3.65372,0.28442826086956524,3.64004,0.4189658333333333,3.57024,3.531255,2.95675,3.368375,3.72992,5.820589999999999,3.15643,2.53243,2.3275200000000003,2.762503333333333,0.6543,6.7998650000000005,3.09306,3.433075,3.51889,1.994895,2.59783,3.27696,3.103435,6.6459150000000005,4.96794,4.934345,4.28048,4.332895,4.285085,3.839855,1.5246083333333333,1.624594,4.1669,4.772085,5.800915,2.2924433333333334,5.0231,1.743575,3.4291666666666667,4.22819,1.9429542857142859,4.109225,4.9225325,3.612,3.8374666666666664,2.7792766666666666,4.52144,4.83055,3.4029000000000003,4.405385,4.605865,5.0371,4.671455,4.448025,4.44425,3.2454,4.44776,2.661975,3.3088933333333332,3.3088933333333332,4.608295,2.499826666666667,3.90126,2.3648866666666666,4.77552,3.3646333333333334,3.74252,1.81512,1.87727,1.144155,1.144155,1.762632,3.4393999999999996,1.7490366666666668,2.7751533333333334,4.123095,5.235407,3.3516999999999997,4.384305,5.58798,3.102725,2.76584,3.13768,1.59147,4.092445,4.37806,6.4728625,1.7607333333333333,5.28955,5.82625,3.5043333333333333,3.708175,4.016345,7.22504,2.22404,2.46942,4.267725,0.49948571428571426,4.147965,4.00824,4.47484,4.23376,3.126745,1.439696,1.7922740000000001,3.833,3.50492,2.34371,3.72704,4.69406,4.99199,1.0667275,3.624935,4.706645,3.791805,4.78334,2.57958,5.349916666666667,3.683725,1.544622,3.543985,1.1851933333333333,2.986736666666667,7.6671916666666675,3.282225,0.6725872727272727,3.74161,4.19328,3.78286,1.86258,1.86258,5.1247066666666665,5.72865,2.818535,0.4943966666666666,1.9188175,4.500724166666667,4.50019,4.40771,1.797918,2.78852,3.628115,1.1644088157894736,1.1644088157894736,1.1644088157894736,0.7191796491228071,1.300099649122807,0.58092,1.1644088157894736,0.7191796491228071,0.2611763157894737,0.8420963157894736,0.2611763157894737,0.4580033333333333,0.4580033333333333,0.4580033333333333,0.4580033333333333,1.0474431666666666,1.07119875,2.3035533333333333,2.3082666666666665,1.0802283333333333,6.084661666666666,2.5668666666666664,6.5074966666666665,2.3924566666666665,3.78355,2.929285,3.433515,2.8003141666666664,4.50268,2.7753666666666668,4.16274,4.027215,4.55857,2.21013,4.00705,4.9435,4.047915,3.31009,4.87953,3.409345,4.42671,5.4636,5.3486,6.28255,5.50005,1.10794375,4.844255,3.613355,3.3033,17.36079,4.915255,5.2643,2.6266700000000003,7.52393,3.96628,4.15193,4.926255,3.166435,1.07978,2.566255,4.21587,4.315495,3.658515,3.277765,4.10752,3.013476666666667,4.25906,4.816145,4.251565,6.531868333333334,7.793595,1.3327814285714286,3.795135,3.92486,4.230655,3.5824,3.73244,6.81881,2.808385,2.8818,2.45841,3.847155,3.89433,4.73744,2.349285,1.787025,0.906096,4.43428,3.807895,3.699285,4.18817,3.88455,5.13955,4.184405,6.0297,6.00305,4.69242,6.3561,3.68984,3.133275,3.235645,3.405245,1.7659075,4.127965,4.46652,5.6425,5.1142900000000004,5.1142900000000004,2.54375,1.7659075,2.34315,3.436365,0.7698166666666667,1.7431291666666668,0.9733125,1.77485,3.10111,0.362558,2.84269,4.16078,1.77485,3.0811305000000004,11.27816,6.6518025000000005,2.3439058333333334,1.0721500000000002,1.74182,4.726045,4.27879,6.017933619047619,1.9123025,2.244315,3.94694,3.699765,4.685065,1.9196966666666666,5.378,3.554933333333333,3.66377,5.20585,7.1111640000000005,3.87033,2.45992,2.72275,1.9555533333333335,4.239055,5.43276,1.859798,5.6258,4.34809,6.094665,0.5617906666666667,4.72446,5.94935,5.0476,2.85719,2.756325,7.31015,7.437283333333334,6.6817,1.7251833333333335,1.7251833333333335,1.7251833333333335,3.93627,4.798825,5.6574,3.806025,2.844575,2.896148684210526,3.931715,3.04347,2.6196770000000003,1.9352,2.6196770000000003,7.067207000000001,4.789253333333333,4.901025,7.60076,4.901025,4.901025,3.6196099999999998,7.01791,5.547759,2.877994,2.877994,2.48404,7.12,2.788515,3.511775,5.199734583333333,5.199734583333333,5.199734583333333,7.381805,3.4740475,3.31086,3.5373975,3.3832899999999997,0.80095125,7.626733333333332,2.83748,5.9638,3.423075,12.845047333333333,4.497785,5.429963333333333,6.76818,2.5673333333333335,3.42084,1.103225,5.429963333333333,3.280345,1.636875,1.636875,2.747035,5.311132499999999,1.7346925,4.864105,0.8458439999999999,1.445805,0.8458439999999999,1.8928325,2.5805365,5.298119,3.710165,1.445805,2.914555,5.0369625,1.3037375,3.33597,4.527265,2.04936,4.396045,2.571885,3.040115,2.82664,0.9234479999999999,3.72466,2.580475,2.01304,1.6616099999999998,3.1623799999999997,3.75158,3.048755,3.626415,1.287218888888889,1.287218888888889,1.287218888888889,3.953355,3.308396666666667,3.308396666666667,2.587045,3.781635,2.23585,1.0698925,1.0698925,2.926305,4.4816825,0.8329275,1.4497,2.682525,1.2663783333333334,2.7160783333333334,0.9234479999999999,0.9234479999999999,1.7710991666666667,0.9234479999999999,3.0282308333333336,0.6935866666666667,3.0282308333333336,5.563487083333333,3.343565,2.36451,1.7145270833333335,0.65572,2.370247083333333,3.14394,2.370247083333333,0.9769833333333333,3.41084,3.837955,3.97099,3.751685,2.425665,3.75873,1.8299233333333333,0.9513068055555556,0.50682125,0.9513068055555556,0.4444855555555556,0.9513068055555556,0.9513068055555556,4.53715,4.619855,5.6976,3.43359,4.549595,4.659455,5.1818,3.343895,4.01939,1.4290857142857143,2.767583333333333,4.395181666666667,3.85695,1.3436599999999999,2.8460133333333335,4.11099,3.83431,4.15315,3.52344,4.361,3.646355,3.174485,4.613725,2.5227999999999997,6.1054,3.64284,3.939155,4.214085,0.7771865,2.15763,3.11317,5.82893,4.18744,3.32916,3.0662066666666665,4.40381,7.65301,3.0972333333333335,3.857685,2.8911,4.097385,4.002635,5.66395,5.56805,4.38077,2.897465,5.21155,4.86076,3.6424333333333334,4.17194,3.5723000000000003,2.4245575,2.412436666666667,4.858915,6.5759,5.10625,5.4051,3.956375,5.03775,5.7645,0.5453238461538461,7.399825,4.56957,3.565185,4.00019,5.05795,4.07816,3.0743033333333334,2.5094,1.3279233333333333,0.5608792307692307,1.8493860000000002,2.98668,3.14458,3.118105,3.88753,3.98065,11.315528333333333,3.81138,3.844355,2.991865,0.7089866666666667,5.574450000000001,3.1909733333333334,1.4878166666666666,4.67879,5.829488333333334,2.638515,8.78862,4.24628,1.821822,1.821822,1.821822,4.00251,8.59916,3.29893,2.647175,2.647175,3.34197,9.57368,1.040455,4.908955,4.548035,4.219985,2.93005,2.2024399999999997,4.13023,3.78424,5.5232,5.97275,3.828845,2.776075,3.740025,4.1555175,3.5961355,1.2822,2.9320833333333334,5.79047,3.3900449999999998,5.01375,1.075285,3.7807333333333335,2.367383333333333,2.538133333333333,1.7564625,1.7830866666666667,2.15635,5.33255,2.19341,4.38697,5.4498,1.7801259999999999,4.954085,3.772395,4.797665,3.212566666666667,2.12202,2.757245,4.37207,3.9239208333333333,3.9239208333333333,1.1551075,1.54471,2.966153333333333,4.503061333333333,2.168602909090909,4.9826846666666675,1.7428080000000001,2.89776,2.0137033333333334,1.6875025,1.6875025,4.92492,7.5756950000000005,1.8134166666666667,3.189306666666667,2.228205,4.737355,3.08262,0.9696279999999999,2.821215,0.9696279999999999,2.752315,3.55491,5.2644,5.6493,3.704245,4.663919166666666,5.8031,2.294965,1.8868933333333333,2.9200633333333332,2.20164,6.0543,5.282,2.514925,4.271385,2.710145,4.752795,1.0502025,1.0953979999999999,1.9356466666666667,1.2086516666666667,2.4980033333333336,2.8183666666666665,2.16672,3.0557833333333337,2.934335,4.8418,2.4310300000000002,2.3997966666666666,2.7490233333333336,2.3673733333333336,2.9199466666666667,2.544096666666667,1.9277199999999999,2.433473333333333,4.28256,3.82031,3.408885,3.331875,2.8250466666666667,2.247645,1.96592,1.209545,0.2769165,0.12772760869565217,2.0958099999999997,1.7169033333333334,0.12772760869565217,3.7235892753623188,1.888925,0.12772760869565217,5.845990486111111,2.0650266666666663,6.13708,3.36399,3.2659366666666667,2.616823333333333,3.05776,2.2132875,4.311995,3.020913333333333,3.3277733333333335,0.4501484210526316,3.9290583333333338,2.6668484210526313,2.95981,1.83528,2.4635175,4.2804,2.33886,7.8081499999999995,5.40525,3.46365,3.687625,6.1889,6.40694,1.8089000000000002,4.3476550000000005,2.12842,1.8061,7.29146,7.98275,1.2279333333333333,2.0881,3.58628,2.3308,2.65365,3.02397,2.863585,4.467075,2.28885,3.040205,3.64399,3.147515,7.12635,1.2211433333333332,1.88298,2.85499,3.27203,1.9646466666666667,3.39862,1.420665,3.765295,3.15536,7.0238,3.555955,9.01202,3.81545,1.6238199999999998,1.6228333333333333,2.95376,5.82968,1.55706,1.6041933333333331,5.63739,3.377135,3.89065,2.72918,1.97753,3.10611,10.042390000000001,5.21683,6.26386,3.374,2.51908,2.15987,2.29252,2.974215,3.48965,1.7094666666666667,1.5191999999999999,2.5167566666666668,3.51481,1.7366525,3.41393,2.60715,2.910745,3.687665,3.15,1.292365,2.462145,1.2811433333333333,1.43558,1.650805,3.165035,3.28619,3.737125,2.67423,3.701675,3.886295,2.73765,1.43746,3.460405,3.5650525,3.07492,1.744425,2.99585,3.3024,1.47867,3.31256,1.5984666666666667,3.952795,4.139925,5.07655,2.535245,3.87645,1.75647,3.28948,5.28875,1.77345,1.1434985714285715,3.5398333333333336,2.581125,4.517915,4.062495,3.08571,4.605525,4.879285,2.3414366666666666,5.352,5.3156675,6.62145,4.221805,6.4522406666666665,4.102665,1.7469666666666666,3.000856666666667,4.575375,4.974385,2.70758,7.230321999999999,1.2571657142857142,3.3480000000000003,2.166335,1.775026,2.3320633333333336,2.665366666666667,0.3910442857142857,2.8485666666666667,3.3836333333333335,3.331245,2.501975,3.182096666666667,2.26174,2.3132266666666665,2.341525,9.683959999999999,5.1049,1.697904,5.09535,2.533282304347826,0.7086484615384615,2.8749800000000003,7.599260666666667,1.767664,4.6299025,6.406376666666667,1.93705,1.62066,1.388475,4.09452,3.169815,4.374435,3.7924825,2.3446933333333333,3.48187,0.8551080000000001,2.604874666666667,4.485825,4.260025,4.89361,2.91066,5.1164,5.03405,4.05886,5.05685,5.95045,4.79837,4.31091,4.731,1.55982,1.8304875,2.77071,3.2748,1.1505,4.347485,2.08934,3.351766666666667,4.32291,3.4097333333333335,2.685366666666667,1.4832566666666667,3.156703333333333,2.85764,2.711486666666667,2.8203133333333334,1.86998,1.9844275,2.35265,3.94002,4.603555,4.170705,5.14575,3.49138,2.34832,3.03401,5.0798,3.7502333333333335,4.728085,3.64766,2.286025,4.426565,1.73264,4.00468,4.910176666666667,6.035222380952381,4.11313,4.31592,5.35765,3.429766666666667,3.9876883333333333,4.670795,3.28033,3.8542915,3.26344,1.3060325,3.1873,1.82076,2.17127,4.115085,5.0048525,3.8542915,3.971455,3.542525,1.615375,3.765055,2.144495,2.318303333333333,2.132195,2.790485,1.5918996969696972,1.5918996969696972,1.5918996969696972,0.5427663636363637,0.8642833333333333,2.3072116666666664,1.1183825,3.43557,1.2175016666666667,4.305005,5.24495,4.601425,3.158955,4.00385,3.109525,5.1642,1.7041875,2.896435,2.55117,3.21995,5.824066,4.445045,5.1943,4.14468,1.02467,2.412695,1.3427466666666668,3.760465,3.722475,4.22261,4.993785,4.80195,4.064615,4.78703,3.53676,1.79526,1.362785,5.5845,1.0755122222222222,1.2963,3.04777,8.39882,3.071445,3.74253,3.35953,5.55841,1.63284,0.95594,1.4228825,3.065485,3.38285,4.06209,3.54414,1.8676475,6.471550000000001,2.9124666666666665,0.90165375,4.900195,3.1254733333333333,2.764256666666667,2.41115,3.635666666666667,6.004298333333333,2.8659833333333338,3.4177666666666666,3.5214,2.685563333333333,2.8768433333333334,2.95992,2.836535,2.02135,4.68597,4.63845,4.997995,1.031828888888889,0.748731,3.8888,2.73968,1.05948625,2.8053029166666663,3.71638,4.258885,6.957425000000001,4.73584,3.5445666666666664,1.748114,3.43599,3.58323,3.0379833333333335,2.6183268571428573,4.10547,2.894716666666667,5.0634673333333335,0.9545888888888889,3.121405,1.7668399999999997,3.550285,4.424035,2.28765,1.0763575,3.13705,0.424473,3.695,6.6559,5.4471,2.953338,1.466338,4.0706,0.77405,2.5662933333333333,0.77405,3.93343,4.38244,1.3726975,2.118095,4.951111666666667,1.5566466666666667,3.72308,3.268225,3.80558,1.2497479999999999,1.60599,3.820875,4.237305,5.2292,3.110128,2.5451,3.227225,1.5687375,2.2264075,1.8475425,1.916225,4.30993,1.3799777777777777,1.3799777777777777,3.83762,4.658768666666666,8.316849166666668,4.736573333333333,9.02419,2.416635,3.881315,4.00008,1.7152,3.7267708333333336,4.276735,3.373575,5.3124,2.906945,2.42924,3.1826033333333332,4.29348,1.09752875,4.164205,4.625715,1.13423,8.356480000000001,2.239025,3.16379,3.5920633333333334,4.92766,4.609485,3.6763216666666674,2.5888,2.839783333333333,2.04401,3.7169000000000003,2.3941925,2.15468,7.333892666666666,3.2645066666666662,2.98739,4.27798,22.928166527472527,0.7015666666666667,2.7869,4.677605,4.701885,8.22764,4.789215,4.17888,4.50827,6.774335000000001,3.408675,1.57677,4.732136666666666,3.22782,1.049714,1.049714,1.049714,2.33862125,1.6732075,3.198515,1.4668175,2.98548,1.4869933333333334,2.694955,2.480135,2.970275,1.4668175,3.0753,2.40846,4.20709,4.67223,5.094,0.7960208333333334,3.300585,2.8057,4.83902,3.741935,2.830045,2.3404425,1.713855,2.29193,1.397546,3.823415,1.9423125,4.784525,11.219808,2.8470099999999996,2.29328,4.9657725,4.6583,4.517433333333334,6.42975,2.2167,5.26803,4.631105,1.1077716666666666,1.1645642857142857,6.520684,4.397455,2.54855,3.649895,1.8416125,4.009625,5.0468,4.65873,4.089075,1.34287,4.43863,4.878175,4.90871,6.37754,3.72163,5.50355,4.869885,4.654575,5.0675,3.6935333333333333,5.2248,1.9499575,3.401615,2.985405,3.29377,3.98828,6.0761,4.48528,2.6578633333333332,3.3531999999999997,8.835149999999999,4.662115,3.3248599999999997,3.84622,3.729805,4.51745,4.225245,4.712965,6.879215,3.5931,2.8789166666666666,4.0597875000000005,2.37878,4.48859,2.4588733333333335,6.5405925,1.6479116666666667,4.39425,4.790375,11.7571675,0.5133628571428571,4.50363,4.572565,0.6776592857142857,3.672665,3.881085,4.40727,0.9360620000000001,5.0494,4.678183333333333,2.5724533333333333,9.917125,3.1564200000000002,1.80241,2.38519,3.601475,6.025,0.552635,3.77788,1.9317125,5.46715,0.744253076923077,4.14216,5.7235,5.9366,3.507915,6.331455,4.60587,3.5081599999999997,2.5794166666666665,2.723516666666667,4.297675,4.716905,5.04095,4.9112,5.4155,3.2824533333333332,7.221963333333333,2.8076,3.1201594999999998,1.9277775,4.3885,2.4491366666666665,1.5082266666666666,3.0520600000000004,2.955716666666667,3.1436433333333333,3.5929333333333333,3.5423666666666667,3.215726666666667,2.673626666666667,5.5881,3.1412866666666663,3.72229,5.13765,2.7195366666666665,1.174911111111111,3.1041733333333332,2.9053,4.059245,3.016363333333333,3.0132766666666666,4.687986666666666,2.0655766666666664,1.6090925,2.984945,3.677395,4.527315,1.0588125,4.442715,3.24389,4.1278999999999995,3.1334400000000002,4.8327525,3.967135,3.156215,4.45816,1.73418,3.78462,0.68174375,4.736035,4.93217,16.51117181818182,3.179596666666667,1.1144816666666666,4.133275,0.638695,2.6983,4.42112,1.880725,1.3131242857142857,3.85969,4.66163,3.24939,0.8209216666666667,2.562275,7.71747,4.23073,5.7897,5.2137,5.3916,3.3513333333333333,3.690533333333333,3.2905433333333334,7.132225,4.28846,5.2854,2.1963625,0.42544444444444446,2.1398,3.1119,2.315245,3.32829,3.54046,2.9148599999999996,4.73936,0.7509883333333334,4.89673,3.952685,2.891465,1.1728466666666666,2.772266666666667,1.9524633333333332,4.79405,3.868105,2.04125,1.6095285714285714,3.42204,4.36787,4.557505,6.313486666666667,2.1186066666666665,4.98589,4.4805,4.0251,1.9950679999999998,4.216295,6.49058,5.05425,2.698115,4.70969,2.84006,3.052195,4.2303,3.82506,1.3477649999999999,4.80858,2.1415,2.9300533333333334,5.273176666666666,5.273176666666666,4.5389,1.7057680000000002,4.894605,0.9452275,1.68944,4.99064,2.713276666666667,1.4252233333333333,3.3300666666666667,0.8542500000000001,4.3648,4.465555,3.23187,5.0505,4.4928,3.96389,5.6237525,3.451135,3.5675000000000003,2.94529,2.3669166666666666,2.616,3.037573333333333,4.40182,1.6960293406593407,2.981806666666667,4.49207,4.969115,2.2777108333333334,4.552305,4.78768,5.0892333333333335,3.4879333333333338,5.401,5.12525,5.2568,4.92905,3.949685,3.726635,3.69487,4.530085,5.5101,4.95968,5.0437,4.490895,4.509265,0.6818875000000001,4.963245,4.530065,3.945405,7.3219525,4.603035,3.9139,4.52965,4.99161,3.501235,3.584395,2.1037,4.4552,1.8507875,1.3087014285714285,3.497845,2.0627033333333333,2.4503733333333333,3.5873846666666664,3.3750999999999998,2.9447,1.1151633333333333,2.073615,4.81346,3.888085,1.8871225,1.8871225,3.67049,1.593884,3.1353933333333335,4.502635,3.483855,3.75224,1.4946033333333333,2.03482,3.6511183333333337,2.01317,3.860405,4.49649,4.30582,4.086635,6.563463333333333,2.819325,3.783015,4.8405,4.200515,3.11232,4.070645,4.3315,4.60908,2.17605,2.6594233333333333,4.771805,4.009035,3.84291,3.86964,1.5938575,4.14525,4.486245,4.55685,4.069625,3.9753325000000004,3.9753325000000004,3.1879466666666665,4.386035,4.41349,4.17682,1.783058,7.6985825000000006,3.86649,5.07325,4.30855,4.40829,3.46036,5.0337,2.930865,3.234195,2.753415,5.2368,1.842344,4.307955,5.77848,5.2339,0.729773,4.701102499999999,1.17843,4.844515,4.755425,4.405805,4.10035,5.5044,3.7217333333333333,3.7217333333333333,0.862805,2.2673175,4.980115,3.601505,4.200505,4.894995,5.7278,3.27883,4.46399,1.3934066666666667,2.63371,1.642115,1.231905,4.261056666666667,0.809436,2.5838233333333336,3.1923033333333333,1.1800366666666666,2.13083,2.58625,1.35998,6.41992,2.0647225,2.43571,5.636,2.110845,2.8019266666666667,3.194745,4.636545,3.8715333333333333,3.6635666666666666,4.161933333333333,1.6531420000000001,2.1847733333333332,4.528045,0.6531071428571428,2.14444,2.3644533333333335,3.160626666666667,2.7825866666666665,1.1744185714285713,0.8438249999999999,2.4624333333333333,4.191335,1.1553871428571427,2.2984525,1.3002325,5.6083675,2.2658675,5.07555,4.541965,4.38354,4.957475,5.22975,4.362755,4.211345,1.5156266666666667,3.9365666666666663,1.8316780000000001,2.728073333333333,1.2039614285714286,4.32714,2.1827425,6.897234,4.35209,4.16149,1.499652,6.8771275,4.014605,1.6350983333333333,4.04622,3.03271,4.184535,3.57128,1.984465,1.984465,3.3566000000000003,1.4151916666666666,1.4151916666666666,1.9950679999999998,3.07121,2.1547675,1.2527016666666666,3.522133333333333,1.05827,3.1648266666666665,2.405585,1.8884975,1.5347166666666665,2.165625,2.15414,0.2785782352941176,2.502925,1.2923733333333334,2.2497933333333333,2.0137033333333334,2.51915,1.049821111111111,1.005926,3.6558333333333333,3.1723966666666663,1.984465,1.755295,1.9227999999999998,2.5021633333333333,2.4293133333333334,1.8611280000000001,2.9736766666666665,1.10661,3.2571366666666663,2.80735,2.4956133333333335,1.519462,1.075326,2.45685,1.075326,2.45685,0.69876875,0.69876875,0.4915472222222222,2.45337,2.49342,0.69876875,2.2466825,2.37658,2.500725,1.6563575,0.8425433333333333,0.69876875,0.69876875,1.613724,1.613724,1.9714675,1.755295,0.69876875,2.30556,0.45352461538461536,3.0197933333333338,1.9734533333333333,2.4590166666666664,2.54934,2.54934,0.40168400000000004,0.40168400000000004,1.9950679999999998,2.1007000000000002,2.21278,2.07808,0.40168400000000004,3.5564999999999998,2.50035,1.6600819999999998,0.65433125,1.6600819999999998,0.65433125,7.248,2.47072,4.162166666666667,2.3733633333333333,3.16574,3.1388866666666666,3.0137066666666663,3.551966666666667,2.5942,1.73423,2.8605,3.0972333333333335,2.3307966666666666,1.613724,2.5006193650793653,2.5006193650793653,2.7448833333333336,2.076685,4.13116,2.2591766666666664,3.4469,2.8080366666666667,1.551368,2.43899,2.4030275,0.7773481818181818,1.66262,4.08633,1.729154,3.2308733333333333,2.65529,2.692075,3.9445333333333337,1.6366683333333334,3.5932666666666666,3.087353333333333,4.236066666666667,1.227266,0.21939206896551725,1.2828357142857143,1.2828357142857143,1.0789288888888888,2.967276666666667,3.9133333333333336,2.4807366666666666,2.0671166666666667,2.0671166666666667,2.130235,1.5984666666666667,0.9831239999999999,1.69446,1.69446,0.69876875,1.9950679999999998,2.7954133333333337,3.4079333333333337,2.405585,2.13008,2.13008,2.13008,1.1002366666666665,1.512857142857143,1.512857142857143,2.605025,2.9879033333333336,2.7063464457070707,4.212765,2.4338466666666667,2.6852866666666664,3.82676,3.82649,7.031125,4.01073,4.666375,4.0004333333333335,13.683835,5.0343,3.55975,1.194675,4.196155,3.251915,2.337695,3.5382,5.20945,7.032902,6.0461,0.5084088235294119,3.991765,2.927595,4.210435,2.43623,4.84347,4.28269,4.40337,8.509645,3.424565,3.90293,3.878775,3.2817595454545456,7.7561123589743595,3.035296666666667,2.60638,3.751255,4.18782,5.0749,4.09779,6.482908,4.301065,1.329188,2.83097,0.87132625,5.09325,3.002895,2.686725,3.816075,2.92792,2.4003,4.931155,3.982575,8.12226,3.866305,4.604827,2.4000133333333333,4.73756,2.848085,0.73421,0.73421,3.366885,3.823755,2.309905,2.24436,4.200485,2.819165,2.90435,1.999235,1.9709625,2.871165,2.28623,1.195375,3.62417,4.973565,8.35659,1.613766,3.015875,3.120065,3.58921,2.7924333333333333,8.18106,4.15767,3.672633333333333,3.071623333333333,3.959245,3.3404333333333334,3.0750666666666664,3.1861566666666667,3.87426,3.857315,4.574925,4.13676,0.3867706666666667,1.5965466666666668,2.3135766666666666,1.732175,4.565855,3.587865,2.68932,2.2428575,4.71005,3.82722575,2.148655,2.367335,0.9618040000000001,2.3142625,2.4618066666666665,2.4618066666666665,5.1452,1.82637,3.015083333333333,2.3488866666666666,2.1767433333333335,1.7394066666666665,2.885065,3.65518,4.638465,4.621235,5.37395,4.96993,2.801375,2.9879599999999997,2.07364,4.858105,5.5235666666666665,1.9513133333333332,2.955633333333333,2.253045,2.4102133333333335,4.053421666666667,2.7234866666666666,5.08645,3.877205,3.52678,4.331045,3.0180133333333337,3.496855,4.247005,2.2886366666666667,2.455086666666667,0.41588785714285714,3.8321,2.781803333333333,2.99564,5.948,4.823095,5.908024166666667,1.9342375,1.5919666666666668,3.02243,5.3209,6.4974,5.2641,3.1563499999999998,2.19073,3.561215,2.2005399999999997,4.826225,2.45053,2.34998,5.40125,5.11795,4.47011,1.653515,1.90561,1.050114,1.050114,1.331594,0.9045442857142857,0.792218,1.8314742857142856,4.445035,10.312895833333332,3.97853,4.296405,4.2287,6.01672,2.731895,1.6364233333333333,3.3937683333333335,2.94218,3.82419,2.594543333333333,2.6349033333333334,2.9370266666666667,3.292756666666667,2.37623,3.2328433333333333,3.3405666666666662,3.085593333333333,3.5254333333333334,3.445266666666667,2.94253,2.8327166666666668,3.21311,2.5097033333333334,3.1566666666666667,3.1552333333333333,2.9126133333333333,3.300713333333333,2.1936,5.881765238095238,3.309336666666667,4.369126666666667,3.2581399999999996,3.1831899999999997,3.8092,2.822013333333333,2.978536666666667,3.11683,3.2235566666666666,3.4764,3.379433333333333,1.9722325,2.8142866666666664,2.911716666666667,2.9956,2.9956,3.3770666666666664,3.0633733333333333,2.6391566666666666,2.6914866666666666,3.12999,4.258366666666666,2.7022666666666666,2.761125,2.8150099999999996,2.8109866666666665,4.6054075,5.1654,1.6795,3.3404000000000003,3.7101333333333333,3.484152,3.3396666666666666,3.7799333333333336,3.6411333333333338,2.85958,3.36097,2.06778,3.1115555,3.4769666666666663,3.429866666666667,2.627266666666667,2.566666666666667,3.8562,3.0420133333333332,3.05913,2.51465,1.2744216666666668,3.512366666666667,2.8547233333333337,2.3559066666666664,2.575125,3.3206666666666664,3.236943333333333,1.962832,5.7628113333333335,2.51751,0.9578599999999999,4.66408,1.9370816666666666,1.6963833333333334,4.472735,3.70288,3.23699,2.34888,1.3177075,3.342745,3.03232,3.09018,0.42369500000000004,1.965015,0.42369500000000004,1.890725,1.3177075,2.641975,3.857265,2.459675,3.56814,3.275575,0.547456,3.1138966666666668,0.963675,0.45603764705882355,4.07543,3.89154,4.79479,2.5996,5.72635,4.443895,3.71023,2.24726,4.017966666666667,1.7405519999999999,5.5005,2.44135,4.511875,4.45412,3.09624,1.8823699999999999,2.048713333333333,1.368385,1.885255,0.89259,0.89259,4.3522,2.26826,6.0028950000000005,2.2541125,2.071575,1.72942,2.24166175,2.0449475,5.63165,4.069452500000001,2.024505,2.2458033333333334,2.24166175,2.88563,3.86034175,2.17354375,5.7517483333333335,2.2541125,3.20435,3.338675,3.1089266666666666,5.63425,4.97266,2.01882,2.2202225,2.3336575,2.69148,4.893305,5.49895,1.976445,3.884675,1.59147,1.683035,5.36315,10.885253333333333,2.34089,2.2846866666666665,2.5073666666666665,4.453,4.360765,1.9417875,4.91722,4.548345,2.6998,40.20974547619048,2.8842033333333332,3.203523333333333,0.4110638888888889,4.714823333333333,2.1724433333333333,0.9407144444444445,4.07508,3.89951,2.122285,1.95743,2.4004733333333332,4.051465,1.4066614285714285,3.502533333333334,3.909875,4.889435,0.9625,5.01145,4.85584,5.082,2.927426666666667,1.7185225,3.9250499999999997,4.58868,4.10033,3.047035,3.502445,4.221925,11.980890656565656,2.9684866666666667,3.13705,4.29069,2.802575,4.73125,3.65513,2.629455,3.27136,5.2999,4.76132,5.1898,5.2725,2.528205,4.025665,4.457985,3.716185,4.55551,4.764425,0.10256608695652174,2.2709,5.66535,2.707025,1.4294716666666665,1.1446666666666667,1.1446666666666667,1.969445,2.734735,2.6417,1.613448,2.9029433333333334,4.47079,2.52391,4.3416,0.5728242857142857,4.633515,3.7226,4.66613,4.72972,4.66061,1.24286125,1.12378875,3.7999333333333336,2.9089733333333334,3.1220466666666664,3.948768909090909,4.37226,6.1487300000000005,5.3967,4.21163,3.43184,2.2156458333333333,1.4929,4.3689,0.3057926666666667,3.36848,3.703375,4.024745,15.008856666666667,1.93995,3.3941666666666666,0.688325,4.84431,8.131045,3.05808,1.7497633333333333,5.6742,3.2446033333333335,1.0571144444444445,4.27233,2.95705,3.009215,4.97016,3.430117722222222,1.01838125,7.164191666666667,0.7237275,5.03405,3.223363222222222,1.382855,2.0753350555555556,3.11981,3.11981,3.811415,4.327247166666666,1.366775,2.44753,2.79033,3.489065,3.05542,2.56755,2.93345,3.28651,6.719702666666667,6.4483,4.071435,3.13055,4.576975,4.9186,3.44642,3.246425,3.39561,4.36435,4.501455,2.482693333333333,2.712353333333333,1.6054433333333333,2.27549,2.29074,1.515285,2.5837866666666667,3.6086666666666667,3.551,3.1296433333333336,2.557303333333333,1.4740566666666668,1.7582966666666666,0.48451727272727274,2.717563333333333,1.5133714285714286,2.00457,3.289236666666667,2.4276666666666666,2.5702700000000003,1.03890625,2.21554,2.48249,2.88926,3.552955,5.6585,3.614115,3.0002,2.2209566666666665,3.37038,4.115555,2.415265,2.95736,1.979345,3.680285,2.72263,3.976835,1.40567,0.610467,2.515975,3.24845,3.080655,4.03948,4.76332,8.69669,3.19463,2.5923766666666666,2.180476666666667,1.9554680000000002,1.9554680000000002,2.8247066666666663,2.8729433333333336,4.913995,4.75983,3.726275,4.962665,4.4874,4.60676,3.4226616666666665,4.25737,7.9834075,2.45999,0.497018125,3.3342666666666667,1.35201,1.0167171428571429,2.2073066666666668,0.868358,2.102835,4.62541,5.1921,6.2537275,1.0562775,7.29147,1.951692,1.52051,2.5629433333333336,4.541665,3.383433333333333,2.528075,3.95687,3.1644166666666664,4.312366666666667,2.870646666666667,2.76126,2.9545333333333335,6.619635000000001,2.46083,3.77676,3.670263333333333,3.9819241666666665,1.7328666666666666,1.3126225,4.204925,2.8736266666666666,3.15417,6.0042425,3.05052,2.22722,2.493285,3.19183,3.7009333333333334,2.4748433333333333,3.965016666666667,3.106973333333333,5.09935,2.4568305833333337,1.7794175,4.91488,5.5974,4.73053,4.32158,1.51837,2.395265,1.8817575,3.243165,1.6327633333333333,0.8979400000000001,2.583695,2.06309,1.9671475,4.16371,0.69983,5.81579,1.379505,0.8106154545454545,3.622533333333333,4.367235,0.6807614285714285,3.424958,3.20561,0.8438249999999999,4.791245,0.188205,0.188205,0.188205,0.188205,0.188205,0.188205,1.8945219999999998,4.042415,1.8945219999999998,1.8945219999999998,1.8164366666666665,0.188205,0.188205,3.3996,2.9106199999999998,3.73212,3.27615,2.274425,3.480045,1.4603428571428572,1.69424,3.5961355,1.509854,2.861406666666667,2.6644222222222225,6.1371166666666666,4.44917,4.294955,6.2517,4.57213,4.48465,3.70221,3.75716,7.339015,3.8472000000000004,3.7283000000000004,2.55461,5.613933333333334,2.5983233333333335,2.1350125,1.8751833333333332,4.614975,5.1963,5.0717,5.26455,5.6847,4.470735,4.83119,0.7869127272727273,0.7326142857142858,0.7326142857142858,4.56638,2.21063,3.6521,1.0131842857142856,4.64818,1.5061285714285713,2.33635,2.5903,4.560333333333333,4.560333333333333,6.9402,4.404045,1.4463433333333333,10.756081666666667,3.039876666666667,1.2046555555555556,5.0731,4.971785,3.65286,3.156505,2.43489,4.259433333333333,0.7617533333333333,3.5145999999999997,3.5636666666666668,3.8069,3.317816666666667,1.48762,1.4308633333333332,4.8640425,3.278286666666667,3.125766666666667,3.5339666666666667,5.343206666666667,3.4067316666666665,0.809846,1.8920199999999998,3.6692,2.3897383333333337,3.83,3.4919333333333333,3.23291,3.5797000000000003,3.2215233333333333,2.629356666666667,1.1404033333333332,3.11205,2.5231933333333334,3.747075,3.357895,4.13631,2.71876,3.2685433333333336,2.770025,1.6135179999999998,2.2763566666666666,2.759057142857143,3.7346,1.982034,3.2088933333333336,1.8732499999999999,3.7448333333333337,5.366248333333333,5.139496,2.600125,2.66125,2.772025,2.624275,1.6326,2.3464725,3.3098389285714287,2.491325,3.6827666666666663,2.68662,3.907433,2.92354,1.303122222222222,1.2580175,1.7144725,2.2157525,3.0796500000000004,3.6063333333333336,5.19185,7.4104975,2.881835,5.15695,4.20741,16.287073,0.40493100000000004,11.745995,0.9109366666666667,3.20109,3.7708666666666666,3.1356033333333335,2.878005,1.56556,1.43746,2.5474666666666668,1.397068,2.7550746666666663,2.032696666666667,2.9100966666666666,2.4403,2.7972366666666666,1.5497666666666667,0.6376575,3.187333333333333,2.56201,3.14048,1.1002366666666665,3.6690666666666663,0.7497199999999999,0.3499269230769231,2.07009,4.655515,4.6377,4.869475,0.8472036363636364,3.924755,4.556155,1.1006325,2.3291375,5.306115,3.00661,3.96079,3.789485,3.83978,1.9480675,3.808755,2.71869,2.036395,3.5144,3.0463,2.65202,3.81957,3.14957,3.565905,2.02913,3.21383,4.80254,1.2490966666666667,4.710675,2.1739025,4.28144,5.330026666666667,1.94874,2.89077,3.1161433333333335,6.056216666666667,2.47905,3.067895,5.1782,4.162166666666667,3.85292,1.9205966666666667,2.824575,4.98235,3.6479,4.338115,3.8538,3.231246666666667,2.8899000000000004,3.7040666666666664,3.14449,2.65377,2.68306,0.4467216666666667,2.214345,2.262655,4.805245,4.81929,3.245373333333333,2.9487733333333335,3.313003333333333,8.72809,3.59765125,3.86063,2.9851533333333333,4.194265,2.968765,3.660661666666667,3.023353333333333,2.32449,2.947416666666667,6.3286,4.50376,2.0675333333333334,3.27715,2.98613,2.759256666666667,4.856503999999999,1.7109580000000002,6.107620000000001,4.20903,4.99306,4.577235,6.0567,3.49884,7.239703333333333,3.49121,3.151385,0.6755000000000001,2.379735,1.46886,3.006326666666667,3.4135737500000003,4.169555,3.924745,5.54165,2.67732,4.727775,3.7716,4.0019,3.262356666666667,4.764045,4.788755,4.891845,3.1844900000000003,6.39047,4.685075,1.496715,5.48515,3.65067,2.682565,2.15713,2.15997,4.715703333333333,1.3326600000000002,2.4471233333333333,1.9737775,3.73469,4.36789,2.6739766666666664,3.3790666666666667,3.134243666666667,2.62915,4.34982,1.3631,2.357813333333333,2.2363833333333334,2.760946666666667,2.4312766666666668,2.533986666666667,2.62358,3.900485,2.919506666666667,2.755333333333333,4.168745,2.28731,3.69133,3.49821,1.3202480303030302,1.3202480303030302,4.69409,2.99132,1.720425,1.320755,2.13227,2.1626375,1.126406,1.4915633333333334,0.643302,1.5954766666666667,1.5014733333333332,2.7432966666666663,2.19828,1.7588566666666667,1.9034966666666666,2.31428,1.5088866666666665,1.8147966666666668,1.7646833333333334,2.458755,3.785885,2.80994,3.042456666666667,2.69975,5.614,2.91425,4.341385,4.1355325,1.951815,4.273905,3.17275,1.852095,3.390815,1.9764025,3.19942,3.43354,1.9029125,4.52511,3.65518,4.0865,3.423166666666667,0.9012355555555556,5.261,3.703945,3.222865,3.5963,2.3784033333333334,4.79562,4.964295,5.2030787499999995,9.095543333333334,3.79491,4.441465,2.714226666666667,3.79416,4.528735,2.377215,2.49381,4.38481,2.277215,5.99653,1.823426,2.66932,6.4609483333333335,2.960516666666667,4.18022,1.3320514285714287,4.72477,4.739345,3.3808333333333334,4.724905,5.098,6.59224,16.59377208333333,0.6520176470588236,1.049821111111111,3.23779,3.946855,3.677045,2.1382675,3.319005,3.94112,4.70541,2.508165,4.65057,1.7764833333333332,1.7764833333333332,5.35575,0.7554718181818182,1.7910499999999998,3.074645,3.949615,0.36423230769230763,1.8767233333333333,4.231472833333333,1.1381916666666667,3.0443866666666666,2.69568,2.93904,7.74169,2.48106,3.716333333333333,1.9724333333333333,2.1988933333333334,4.2913475,3.434215,3.41749,6.9409535,1.8187075,2.98165,4.439735,6.9887524999999995,1.9146,2.3513766666666664,2.549446666666667,1.4050466666666666,2.49185,1.87494125,3.88359,3.721895,1.4774075,1.8915666666666668,1.8915666666666668,2.8898433333333333,5.3952,4.243653333333333,3.80014,4.355465,4.43561,3.236115,3.586925,4.08925,3.407595,4.2631499999999996,4.1471824999999995,4.728685,0.9374370000000001,0.3385025,5.36165,3.83252,2.4245233333333336,7.91622,1.4891766666666666,4.729933333333333,4.02238,0.3759341666666667,2.0328666666666666,1.21123,1.8035466666666666,2.0513833333333333,5.467134,3.11556,3.0101,4.5525,4.324615,4.73142,0.5899169230769231,1.90968,0.587772,5.724715,1.60501,4.97356,2.133255,3.10522,3.214045,4.063455,4.32634,5.0222,0.9086190909090909,3.40416,3.87838,1.9520125,1.685935,3.703565,3.20629,3.59111,3.714385,5.585309523809523,4.46811,5.58805,2.856173333333333,0.5348277777777777,3.4972,3.78402,0.6216746153846154,3.922565,3.78524,4.018655,3.04182,2.60297,4.877105,3.02954,3.007685,2.173985,3.77391,1.8096419999999998,3.552265,3.764355,0.5899984615384615,3.568745,3.78615,3.08638,3.95114,4.302225,2.84129,3.809185,0.602902,3.1565266666666667,3.78925,4.740625,3.532033333333333,2.51675,3.4736333333333334,2.51675,5.2106,3.088665,3.2513400000000003,1.632865,3.1797066666666667,1.953155,4.32748,2.959633333333333,5.588573333333333,3.2164066666666664,2.9961866666666666,3.096413333333333,2.486415,2.486415,2.486415,2.4543566666666665,1.188885,4.57333,2.29293,1.5947500000000001,3.908533333333333,2.5619433333333332,3.0466166666666665,4.46248,5.5077,3.69252,2.0193825,1.0832700000000002,4.03573,1.9881,2.3671533333333334,3.09097,3.51066,2.0480375,3.492675,2.79445,1.648918,4.66656,4.04904,3.184405,3.535645,0.7319777777777777,2.3785833333333333,4.782635,7.439275,4.3332,2.998205,2.61493,3.338025,3.772745,1.72261,2.2672775,5.05195,2.23076,4.436635,3.78742,5.51095,8.72499,3.893665,3.764365,3.471635,4.8633,4.051735,3.31955,3.31955,4.3802,4.207003333333334,4.458165,3.98415,4.29471,4.556145,4.051595,1.1565975,4.24129,4.291775,5.44165,8.092365000000001,5.3515,3.7317306666666665,1.8140766666666668,1.53231,2.48915875,5.17785,4.10223,5.26673,2.4397766666666665,4.645645,5.0858,5.23615,4.907,2.976226666666667,3.88234,4.42783,5.3127,4.90416,4.12799,6.654413333333334,4.54959,2.2592433333333335,4.978195,4.31755,4.321805,4.034445,4.89533,0.7649609090909091,4.555545,4.450475,1.22623,1.29002,5.02525,4.953815,9.073593,5.5461,4.761715,6.15865,2.925975,2.7048400000000004,5.2272,1.72044,1.72044,2.671075,1.5927766666666667,2.9609491666666665,3.25853,1.9380075,4.047705909090909,1.39089,2.214525,5.420095,3.587225,3.423545,3.09867,3.91267,3.87892,2.9965766666666664,1.06695,3.95283,3.1705566666666667,3.904195,4.131855,3.7544299999999997,5.4966,4.9566,4.800975,3.614585,5.5853,6.4447,4.852725,3.218825,3.72381,1.95464,1.95464,3.78181,4.0884,2.6112333333333333,2.7832566666666665,2.215170606060606,2.7606866666666665,2.198976666666667,2.198976666666667,4.579195,3.484535,2.13975,3.555855,2.734175,1.89709,1.252935,1.0665777777777778,2.726115,0.4583357894736842,0.8302333333333334,2.639825,4.075895,0.4179627272727273,4.177535,2.04372,5.38785,3.272225,7.7160875,4.430005,5.4346,4.656525,5.3576,4.160545,1.74583,2.0267399999999998,4.154245,2.983995,3.88836,1.2787033333333333,3.20339,4.3559,2.642715,2.646665,2.57153,4.383475,3.19247,2.886495,3.778585,3.551585,2.94456,2.963305,1.104987142857143,2.03727,2.239755,2.639815,4.367525,7.31021,0.8948560000000001,1.6663066666666666,1.6663066666666666,1.936834,3.96436,2.832165,3.07935,5.789885,2.9147466666666664,1.2715725,1.2715725,1.2715725,2.8826,3.0811305000000004,4.59142,3.14009,4.089795,3.324675,3.60579,2.86768,3.2666958333333334,3.67168,4.06494,2.8281625,1.126406,2.94313,2.8281625,3.71026,1.3400366666666665,1.9207,2.0679325,5.137549333333333,3.01532,6.055376,5.137549333333333,3.040056,1.9824433333333333,1.9824433333333333,2.542245,6.08471,1.9824433333333333,2.20658,5.60086,2.250425,2.36382,5.23571,3.456075,3.97484,1.7871133333333333,3.0845,4.21748,2.1304866666666666,2.39357,3.90027,1.7871133333333333,2.66208,2.04098,5.10688,2.563835,1.026958,2.62731,3.350065,3.3791156666666664,1.99438,1.914319,3.89755,2.1076506666666663,1.821085,3.29506,2.339705,3.128825,3.58549,2.11122,2.80849,2.38259,6.47281,2.322095,3.432925,3.28162,3.28162,8.82516,1.26354,3.160515,2.36999,2.987565,2.235275,1.0942766666666668,1.0942766666666668,3.67684,2.103355,6.09505,2.05882,2.729315,3.341855,5.57627,2.717415,2.24784,6.587825,6.587825,2.683895,1.384245,1.360275,1.360275,1.384245,1.9040833333333333,1.2244599999999999,1.1315416666666667,1.5224833333333334,2.060896666666667,3.839835,1.579625,3.2045,2.85492,2.825175,2.759795,2.62725,2.52256,3.2669325000000002,3.2669325000000002,6.03572,2.442035,2.835105,2.844885,3.14609,2.48427,2.708095,2.466895,5.39174,1.83285,1.750591,1.4340193333333333,2.5182243333333334,5.55107,4.421067666666667,3.7546816666666665,3.13937,1.782915,1.782915,1.782915,4.9939,2.31907,1.1315416666666667,2.940275,3.651475,1.2516825,5.2301725,2.99114,5.67977,3.59592,1.70195,3.46946,2.5336666666666665,2.277715,3.454435,4.62162,3.35446,1.96076,2.468825,3.0975,3.154285,5.00701,1.83824,3.23438,2.55108,5.4624,4.31188,1.904315,2.066785,6.08153,4.92245,5.35571,5.16023,1.2441900000000001,1.2441900000000001,2.349841,2.349841,0.630736,4.74042,3.23189,4.86333,3.81636,4.70196,2.156115,4.869691666666666,4.869691666666666,2.14254,3.390095,3.31098,1.243598,4.54247,3.156875,3.101,2.539535,4.58357,2.31591,1.973445,2.90372,2.830375,2.799685,5.41942,2.6818,1.67525,3.550265,4.98222,5.88057,4.40515,2.945475,3.61748,2.59878,5.70333,2.620135,3.85889,1.898545,6.49443,4.07504,2.247635,3.11855,2.547265,4.77319,2.017765,2.48859,2.49023,7.32205,5.07162,3.368245,2.19327,2.29557,6.12985,3.38669,3.31006,5.28896,2.842935,2.872205,2.724415,3.25305,1.8615000000000002,1.982455,1.9657966666666666,1.73748,1.95099,2.082953333333333,1.650805,2.21877,1.858115,1.8615000000000002,4.0687,3.65526,2.17207,1.746425,1.746425,3.5700200000000004,3.5700200000000004,2.8264566666666666,2.8264566666666666,2.690145,2.330505,1.80656,4.10263,2.2478875,2.2478875,2.4592225,2.4592225,3.41223,2.114,4.50956,2.192535,2.839775,2.0372566666666665,2.0372566666666665,1.42881,4.05526,4.75144,1.3400366666666665,4.388,2.11122,2.129235,4.48683,3.1488,1.89612,2.281285,5.78744,2.221555,5.6148,3.278455,3.177215,3.11451,2.663605,6.03175,3.2312,2.12836,2.4450003846153847,3.0267,5.76427,3.682195,1.5317859999999999,1.5317859999999999,4.04221,4.9697,4.78551,4.76419,2.74884,2.7673,2.021955,2.68231,1.690775,2.89428,1.69902,0.884342,0.884342,0.884342,2.0509500000000003,4.71976,2.0509500000000003,2.197425,3.590345,1.67505,2.155365,4.51075,3.48199,5.22091,1.7600066666666667,4.52886,1.7600066666666667,1.7600066666666667,2.344875,1.81918,2.444325,5.38086,2.444325,2.43757,4.18834,2.068455,1.765015,2.817345,3.0874966666666666,3.2623708333333337,3.2481299999999997,3.59881,1.4723783333333333,4.452625,0.7782354545454545,4.46249,4.303767499999999,2.7736549999999998,2.7736549999999998,0.7551654545454546,3.912266666666667,2.7770766666666664,5.75305,5.1151,4.00088,5.05245,4.339245,4.23674,5.13185,4.20896,4.31578,3.80519,3.88307,5.14715,5.15265,3.353125,3.43298,3.979575,2.5771433333333333,1.408346,4.34811,3.70343,2.997695,1.306827142857143,3.69256,3.896105,6.330345,1.161945,5.28535,4.312455,2.128855,2.01722,3.20125,3.44342,1.704195,1.5317859999999999,3.946425,4.90515,2.565405,4.64077,3.025975,1.153,3.068403333333333,1.2549242857142857,3.0416966666666667,1.6902333333333335,3.18798,1.868995,2.6388966666666667,4.242495,3.50146,4.563765,3.239785,2.2271825,4.74851,4.25754,3.294395,5.3692,4.350165,2.5975333333333332,6.1641,5.16015,3.102515,2.6300233333333334,3.15082,3.191546666666667,3.19688,2.8936933333333332,4.697835,4.138765,3.682105,2.444096666666667,2.5639066666666666,2.3400733333333332,2.48666,2.2049333333333334,2.30871,2.5108433333333333,2.325555,1.51288,3.0210143333333335,1.23306,1.994865,1.7335,2.713425,1.59417,1.748665,3.9357,4.093695,1.941125,3.849645,3.986025,6.203505,2.049263333333333,1.6889939999999999,6.75535,3.74046,5.04915,4.24987,4.0547,2.024245,3.536985,2.617675,3.030115,4.3701,0.7136683333333332,3.76308,2.2264,0.8117572727272727,5.04505,4.287375,3.88834,1.8400151785714285,4.802865,5.41465,2.7026133333333333,2.833206666666667,2.44422,2.1208933333333335,0.5994729999999999,3.0729966666666666,3.088925,5.01995,2.46778,2.1029675,3.82109,1.0356625,1.8932533333333335,1.8932533333333335,2.7257,1.8932533333333335,4.180445,2.84489,4.58835,4.363575,5.9597,14.086430833333333,3.265893333333333,4.96906,2.66763,4.744745,3.14215,6.767425,3.01341,4.651745,4.932085,3.893385,1.1568283333333333,4.986915,3.14039,2.7207166666666667,0.9393033333333334,2.155015,3.10238,7.5857,4.67239,3.07121,4.663155,3.3566000000000003,4.203395,4.607515,4.37096,2.7938,2.888866666666667,3.86366,5.7212,2.412275,4.75052,1.7948225,1.7948225,2.99335,5.03485,0.9313625,4.204725333333333,2.07566,4.98509,2.5470200000000003,2.7316933333333338,3.1484199999999998,2.1088733333333334,0.7307928571428571,3.573265,2.7619933333333333,4.877155,4.79999,0.2457084375,5.0049,4.58048,4.3779,7.033918333333333,3.1751833333333335,2.8804499999999997,2.208666666666667,3.0620366666666663,3.04769,1.4513866666666668,3.00225,2.815863333333333,1.4554,3.490266666666667,3.15059,2.9266799999999997,3.04853,1.4081516666666665,4.31115,2.710785,5.2939,3.898695,3.858775,1.6175533333333334,2.4767233333333336,1.3039225,1.76163,1.3039225,5.0865,3.5698000000000003,1.604082,2.4629375,3.92234,3.79029,2.861105,3.72627,0.34307750000000004,1.528715,3.69313,4.06676,6.1186,2.2085275,2.904916666666667,3.1165033333333336,2.4735466666666666,3.004855,3.277345,4.84809,2.683875,2.5560433333333332,3.0657333333333336,2.590716666666667,2.7343499999999996,4.26029,2.29952,4.654705,3.9207125,5.87545,7.7398325,0.7122366666666666,0.813297,4.32505,7.05928,1.9303940000000002,3.420315,1.0623583333333333,1.0623583333333333,3.476675,0.4460544444444445,3.559095,3.675735,2.811325,4.370675,3.225315,2.42687,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,2.10677,3.18544,3.6699216666666667,2.8724416666666666,4.6323075000000005,6.074884166666666,3.03276,2.166776666666667,0.9310466666666667,3.46802,0.8085975,5.754601666666667,3.587825,2.46738,0.8085975,2.435725,2.804155,1.1054375,4.0090275,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,4.509525,1.6314325,4.89553,4.693735,1.78352,4.742015,4.445345,5.26865,5.085684166666667,3.6538432142857142,3.21682,4.4801,2.2187325,6.136324999999999,4.794605,0.7733285714285714,1.4648428571428571,1.4512142857142858,3.3041966666666664,3.3041966666666664,3.0821216666666666,3.90906,4.520675,3.785775,4.37391,2.8673866666666665,1.9899666666666667,0.6400557142857143,3.96747,3.153315,2.649945,3.97263,3.29634,3.15227125,4.435595,4.45225,6.54133,4.03993,4.92818,5.89925,4.619425,1.3103542857142858,3.05114,4.943073333333333,34.522700222943726,1.2746666666666666,4.42089,3.38424,4.65127,4.110085,5.7003,5.1998,0.4046128571428571,5.2712,4.496885,2.11566,2.12454,4.00288,1.55706,2.476975,2.196585,1.673985,2.933735,2.4293133333333334,2.698725,2.784935,0.5942646153846154,3.36237,3.708575,0.3961842105263158,2.54352,2.973535,3.50513,3.83022,1.777125,4.52349,3.950635,3.254235,3.668945,3.116595,4.41061,2.965825,3.772725,2.233405,4.943073333333333,3.44907,3.43445,2.83744,1.7420680000000002,3.76295,3.38546,6.992965,3.35264,5.0268,6.86371,5.134798,2.4028175,4.498345,5.9795475,7.45649,2.7285133333333333,2.472255,4.965075,5.737346666666667,4.462765,3.350025,5.635538333333333,2.6413,1.6972775,2.22475,59.93258914363114,5.0041,4.515125,2.566325,0.8540430000000001,2.963483333333333,2.9340166666666665,3.5126333333333335,0.8874288888888889,4.54595,0.8737166666666667,7.726488214285713,1.9881,3.3519666666666663,1.745128,2.569185,2.6285366666666667,3.012043333333333,2.3998466666666665,2.2185333333333332,3.468666666666667,1.4145833333333335,5.1022083333333335,3.7171333333333334,1.385075,2.64208,1.3863533333333333,1.471375,7.2492,5.88465,3.34689,4.53683,5.495985,1.4360285714285712,3.5534666666666666,3.196885,1.6705525,5.05565,3.69864,3.929195,1.87082,2.9409199999999998,3.6496666666666666,3.92268,5.78525,4.084445,4.42445,2.05662,3.668335,4.5399666666666665,3.22336,1.572292,4.54054,3.3595666666666664,4.206425,5.2667,3.87299,4.09426,4.85305,4.40451,4.267965,4.702445,4.149045,3.21364,4.23643,4.46195,3.07196,4.479235,4.031665,1.45792,1.45792,4.36671,4.829205,5.01055,3.65685,4.919875,3.4667333333333334,2.743095,4.612825,4.92686,0.7196218181818183,5.4009,7.088632499999999,5.3857,5.7515,1.1302444444444444,2.9708,0.9180799999999999,0.9180799999999999,0.9180799999999999,3.673805,3.3538333333333337,2.98977,3.735466666666667,1.03214,5.2074,4.95011,3.216845,1.73444,2.1541775,4.23158,3.4781,3.746105,2.980312,6.8406,3.409515,2.5458366666666667,5.00115,6.70415,2.45828,4.280985,3.69346,3.056535,5.1261,4.676255,5.18845,5.95205,3.215645,3.8259822222222226,1.9230666666666665,1.9230666666666665,0.6983845454545454,8.746312,2.098605,6.0368,5.82375,4.42266,5.0248,3.701775,3.0468633333333335,4.89167,7.697,5.806233333333333,2.63293,4.418385,1.0264099999999998,3.73349,1.8684633333333334,0.9291688888888889,1.2185142857142857,2.9364133333333338,3.12134,2.81164,1.2134857142857143,2.7346466666666664,3.092083333333333,0.9216977777777777,2.841063333333333,3.400933333333333,1.637394,1.787538,3.1445333333333334,2.9235866666666666,3.069933333333333,2.63986,1.8014379999999999,5.5236,4.550275,4.24421,4.639225,5.39845,3.06108,4.398765,5.7284,4.852265,4.248115,3.844225,9.851288333333333,8.291575000000002,3.028226666666667,3.338185,2.2396233333333333,3.76382,3.229925,4.54856,1.0457400000000001,3.9267,3.6652,1.7474333333333334,4.169555,2.898391666666667,4.53888,2.49203,3.75822,6.4263,7.0919799999999995,4.269035,1.577445,1.577445,1.577445,4.69509,1.2001733333333333,1.4621875,0.4910538888888889,4.478640833333333,3.04199,3.77551,0.9556150000000001,1.157675,2.95724,4.34011,3.822575,16.77295104761905,4.2004025,4.38706,6.297185000000001,2.943073333333333,3.665785,3.657565,0.9479033333333332,1.6122225,4.16744,3.872785,4.78377,4.91985,4.653835,4.40393,2.7099213333333334,3.20269,5.33455,0.558535,4.79205,2.3986325,4.23344,4.90631,3.5990333333333333,2.523493333333333,4.053851666666667,1.9655633333333336,3.5393,6.0296,3.2342866666666663,4.251315,4.62715,4.345465,4.97833,3.95689,3.78335,3.964035,5.22815,4.954705,3.618115,4.696595,3.79357,1.2043057142857143,1.5143125,6.318363833333333,5.80555,4.05094,4.67895,2.47919,2.627006666666667,2.7716166666666666,5.74952,1.9498375,2.14051,3.110333333333333,3.10712,3.349933333333333,4.631075,3.421215,5.234921666666667,1.1680725,4.53105,0.9128216666666668,4.08552,3.277675,1.6384766666666668,4.685665,0.9500588888888889,5.01745,5.78555,5.184,3.93101,3.8550933333333335,3.86918,3.1689066666666665,5.1611,6.0199,2.8369175,3.94488,2.36495,2.627805,1.952775,2.74212,3.625095,5.21935,1.05827,4.4052525000000005,1.3882725,3.27427,1.5570866666666667,1.05827,0.1875762162162162,3.994865,2.914515,2.3476670833333335,2.01216,2.62137,1.121105,4.186035,3.71025,4.54516,2.5018766666666665,6.1548,6.43779,2.66056,3.422633333333333,2.64126,0.829743,2.2618933333333335,6.2532,4.09404,5.40575,4.96604,2.0095633333333334,1.3452400000000002,3.9229725,1.6334675,2.252505,1.6707975,2.88845,1.5710625,1.8895025,1.892895,2.0550275,1.928325,1.3494542857142857,1.4128725,1.988155,1.81864,2.221385,2.2460566666666666,0.553392,1.017214,3.1373933333333333,3.3515333333333337,2.0647225,1.9241166666666667,1.57153,3.90576,2.19186,2.61891,3.00887,4.997855,3.864685,3.0370166666666667,4.499455,1.5562835294117647,3.92027375,23.421940499999998,4.5559866666666675,5.5236,4.429655,2.2577599999999998,3.917135,4.81293,2.269845,5.2272,3.097936666666667,0.80937625,3.49699,4.60848,3.88121,4.129045,1.4463366666666666,2.074876666666667,2.214656666666667,2.206425,1.577142857142857,3.2279933333333335,5.1833,4.122905,3.262345,3.898775,4.8806,3.69821,4.990165,1.2953375,3.18667,4.10372,4.832955,1.6482299999999999,3.25313,1.8207425,1.8207425,3.53931,4.797015,2.7108399999999997,3.1859033333333335,3.73485,3.73142,6.6305125,4.55295,2.338185,1.6122225,2.9868,4.33821,3.1648266666666665,2.5006193650793653,2.5006193650793653,3.312196666666667,4.977995,3.56974,5.052874444444445,2.327865,3.1883213333333336,0.5834466666666667,0.5834466666666667,0.5834466666666667,3.807785,3.71427,3.9822283333333335,5.21205,1.9844275,4.859585,5.05625,4.53594,3.664575,5.6677,2.45391,1.3689385714285716,4.63285,3.93594,0.5039078571428571,4.3761,5.10335,1.5151666666666666,5.1542,5.24795,4.664565,4.59613,3.746885,2.936125,4.484505,1.6612660000000001,4.310455,1.6453216666666668,4.19772,5.91755,1.07210875,3.036425,6.98369,3.99341,3.27966,2.14021,3.881825,5.88545,3.13116,7.977428333333334,4.22937,2.1129233333333333,3.2010199999999998,2.686576666666667,2.654783333333333,2.746843333333333,1.83789,4.242195,0.6545283333333333,1.8361325,1.8361325,3.101735,3.58502,2.282075,2.995095,4.369305,5.1119,4.42551,1.42049,4.768513952380953,4.41706,5.128,3.84687,4.3622250000000005,3.9230169999999998,0.439208,2.6582364285714286,1.01520625,0.439208,4.548795,0.8329122222222222,4.593545,3.805565,6.628198,2.0963433333333334,1.0131,1.111516,2.2702,2.99975,1.9284266666666667,2.4040733333333333,3.30666,3.60035,1.9411666666666667,2.2865533333333334,4.67622,3.13132625,3.98915,5.65045,3.414585,4.957645,6.863508333333334,5.0873,3.5496,4.4982,3.78734,4.552365,5.17465,5.8955575,5.6388,2.4339833333333334,1.0278044444444445,3.95038,3.832,4.07254,4.321385,4.14186,5.08345,2.6521166666666667,2.5583066666666667,3.2946666666666666,2.65767,2.209496666666667,3.1874966666666666,3.347766666666667,2.634183333333333,3.940015,4.872245,4.258705,5.38445,2.69291,3.4187333333333334,2.9482,0.7395357142857143,4.19755,3.72856,4.62582,3.04185,5.627173333333333,3.686475,4.78053,4.17233,0.6307646153846154,0.5683685714285714,4.371075,2.929069,3.21286,4.60615,4.492105,1.8223639999999999,5.40005,4.51623,2.7479433333333336,2.5831833333333334,2.3808425,2.199217916666667,3.5621666666666667,3.3538333333333337,3.1955500000000003,3.1742933333333334,3.5370666666666666,2.6787,3.23334,3.7683666666666666,4.4193225,0.54835,0.54835,0.54835,3.4562113333333335,3.660766666666667,3.6846,2.8082933333333333,3.02543,1.1565975,3.0444266666666664,3.0940966666666667,1.891555,2.5688333333333335,2.5875833333333333,1.0283577777777777,2.8439883333333333,4.76653,9.85112625,1.492323,0.646692,3.64125,0.646692,0.646692,0.646692,0.646692,2.1145275,4.045305,4.10548,5.14445,6.0421,2.8961900000000003,2.790986666666667,3.134255,3.1370033333333334,4.912095,1.0045583333333334,2.3487066666666667,3.2172666666666667,2.6385133333333335,3.0819166666666664,3.047235,2.1381966666666665,2.427085,1.1613111111111112,4.324175,3.105865,3.989405,0.928655,0.687619,0.687619,0.9170083043478261,1.845663304347826,0.9170083043478261,0.9170083043478261,0.31764130434782606,0.31764130434782606,0.9170083043478261,1.4361266666666666,2.32032,2.909065,3.1046099999999996,2.4823766666666667,2.7116166666666666,3.1416066666666667,2.7279966666666664,4.521225,3.53496,1.891615,2.196356666666667,1.7590125,0.1864962941826215,0.1864962941826215,0.1864962941826215,0.1864962941826215,2.38526,2.3271933333333332,0.840204,5.1041,0.7821490909090909,1.691216,4.811835,5.08325,4.524265,3.351075,4.471975,3.766625,1.5556400000000001,1.2101175,3.708895,4.7705,6.4244,2.274875,1.4983666666666666,1.9259899999999999,3.12314,1.4128333333333334,2.7034866666666666,3.0376666666666665,3.3058833333333335,4.6365,4.19715,3.0593,5.06245,2.6651266666666666,4.411265,4.90586,4.29596,4.56606,4.84451,5.3674566666666665,5.288654166666666,3.1793760000000004,5.023804999999999,4.81366,6.20355,4.4173,4.676965,2.2395225,3.007355,4.25802,4.71933,4.2949,4.068395,4.608425,4.352685,4.240395,2.5127533333333334,5.38085,3.611335,7.5490900000000005,6.04125,5.95695,4.969145,1.5127285714285714,0.9945729999999999,0.6386938461538462,1.7520479999999998,4.93475,5.40225,3.819565,1.7259360000000001,3.970545,2.96847,4.656075,5.20255,6.039581999999999,4.013065,3.06069,1.643818,5.100675,3.87976,3.189805,1.905835,1.07929625,3.84964,3.35864,3.737675,3.65639,2.152545,4.41852,1.8457233333333332,3.0079499999999997,2.33498,4.38638,4.968475,4.916105,2.276975,1.532735,5.7239,2.98804,8.81374,2.90275,5.23695,5.94345,4.71153,5.2691,3.90271,5.00535,2.200595,4.270825,5.186319,2.700575,4.28466,4.62838,7.411149999999999,5.11395,3.270376666666667,4.43787,4.159145,3.13132625,3.55643,5.2473,5.46885,2.4528875,3.1060199999999996,3.3842,2.20759,2.6366,4.47954,5.97055,5.00355,4.671915,5.05035,4.373525,5.1769,0.6727584615384615,3.162333333333333,1.3349357142857143,31.561187179153727,2.44312,4.652745,3.252035,4.610055,1.67034,2.4699666666666666,3.194875119047619,1.6723576190476193,1.6723576190476193,1.6723576190476193,1.6723576190476193,1.5225175,3.36537,0.3347966666666667,7.868660972222222,0.3347966666666667,4.60893,5.00175,1.907445,5.56045,2.559675,3.9811680000000003,2.3955466666666667,2.46751,2.6734666666666667,2.148093333333333,0.62076,2.5394200000000002,0.7409233333333334,3.215536666666667,2.18988,2.2350440000000003,1.1718433333333333,2.2350440000000003,6.13085,8.10715,4.87871,4.37233,5.8265,6.33605,7.439346666666667,3.30278,1.47819,1.47819,2.3056566666666667,5.10795,3.63391,4.632115,6.401123333333333,4.08838,2.818555,3.95082,3.453765,3.535695,2.23673,1.142484,2.15665,3.694415,4.06359,5.375812222222223,2.03484,4.180615,1.3836,3.14507,1.362842,3.5043333333333333,3.2763566666666666,3.313993333333333,3.2513666666666663,3.17296,5.08805,0.6752776923076923,3.37655,3.722,2.8467033333333336,2.3190133333333334,4.3057525000000005,3.4625,2.28472,4.845785,3.80144,5.21595,3.8181,3.49981,5.4258,5.11525,2.3389266666666666,5.83095,2.3372539999999997,1.90974,3.19815,2.7013466666666663,3.0598733333333334,2.57483,1.9810266666666667,3.442850772727273,4.54194,3.24309375,2.5022686666666667,2.5022686666666667,2.529155,3.79958,3.991545,0.7000809090909091,3.083865,3.259635,8.67095,0.8749281818181818,4.72471,3.83371,5.44795,3.79512,3.959905,2.241595,4.18566,2.82908,5.5929,2.6769225,3.853125,2.6147933333333335,3.83402,2.7391366666666666,3.559175,3.727795,3.903065,5.231083,3.061195,1.933865,5.26135,2.3823933333333334,4.8644,5.14325,4.841975,4.400475,4.118265,2.83046,2.07441,3.0628100000000003,2.8627966666666667,2.801925,3.403166666666667,2.7439840476190476,5.09732,3.0583733333333334,2.775793333333333,6.802065833333334,5.241604166666667,3.843575,3.20443,3.8659,3.964505,3.329295,2.10075,3.855485,5.1469,4.854485,1.453905,4.11784,2.7867033333333335,6.7592324999999995,4.904095,8.936982222222223,4.01409,4.07334,2.044255,4.094245,5.709585,7.54025,3.87756,4.98203,3.943565,3.121735,3.86424,1.7109580000000002,4.775834,1.4426350000000001,3.634665,4.564085,3.5426333333333333,0.8587333333333333,9.498988333333333,1.2146777777777777,1.9176325,2.5039700000000003,1.80976,3.4849333333333337,1.3811266666666666,3.509675,3.36667,2.3705700000000003,4.185005,1.2271983333333334,3.614905,1.431985,2.9294143333333333,3.83747,4.44547,1.68075,5.630544166666667,2.3315526666666666,7.94359,4.359025,2.48408,3.92011,3.281775,1.2457966666666667,7.34722,2.955,3.27373,2.350975,4.01684,2.1887525,3.1555825,2.15033,3.98852,1.349855,5.3549,2.94856,4.047355,0.8682679999999999,1.9777866666666666,3.71178,5.26745,5.2714662500000005,1.462072,1.462072,5.84875,4.517545,5.4962,3.7903,3.363995,9.48046,4.51356,5.59695,4.115475,2.4635175,2.0985858054275472,0.327926,0.18007774193548387,0.571888853046595,1.1987709523809524,0.6439020276497696,0.18007774193548387,1.202866,0.3918111111111111,1.5266969523809524,1.774754853046595,2.1515575,2.308955,2.17477,5.25245,6.697536666666666,4.969005,5.30605,4.52988,5.04765,1.3099866666666666,5.10645,4.02169,5.8286,5.2389,5.19495,5.81025,5.68845,5.64055,1.363645,1.39658,1.9977,6.073178,1.341228,5.34755,4.96606,6.986854583333334,4.96237,5.49665,4.673455,4.66678,2.58335,5.2829,5.35005,4.455655,5.13195,6.156757499999999,5.7897,3.89767625,4.31811,3.8116333333333334,0.9647539999999999,3.6795000000000004,4.61877,1.18021375,3.7726666666666664,5.0337,4.70504,5.1307,2.571925,3.18602,2.5984766666666665,4.78878,2.197935,3.63071,1.253655,3.246385,3.702365,4.069115,4.507685,3.427033333333333,0.6437241666666667,6.12235,1.01462625,4.179685,3.1647133333333333,3.650915,1.9965366666666666,3.56636,3.7128530769230768,3.5012333333333334,4.48969,15.621316452380952,5.431196666666667,2.4078275,8.37695,1.52848,3.70805,2.9051299999999998,2.8845433333333332,2.0638033333333334,0.2003895652173913,3.04107,4.282425,1.757226,2.1033133333333334,3.408333333333333,1.7174275,2.2961233333333335,1.682742857142857,3.75013,5.2266,4.982155,3.45513,0.49948571428571426,2.313293333333333,4.485925,2.66129,4.0913,4.59962,4.31128,5.3427,0.48995705882352936,2.4822466666666667,2.4822466666666667,5.398,5.5675,4.777615,2.72095,3.713233333333333,2.8374666666666664,5.23555,3.62916,5.681491666666666,4.816025,4.47445,4.90608,2.64535,2.01152,4.65909,4.14837,4.290045,3.584455,1.8344799999999999,4.58714,4.313025,3.64329,4.723515,3.803175,4.28941,0.6329893333333333,3.26106,0.6868416666666667,3.198093333333333,3.336905,4.311935,18.05397904761905,3.541335,3.59994,2.5336666666666665,0.99717125,2.3255766666666666,2.4956133333333335,1.519462,2.367255,2.458445,4.74831,2.2257233333333333,3.681055,4.45477,2.1691975,4.34831,3.0879266666666667,4.589945,5.19395,5.45535,1.544115,1.37912,2.206905,5.1076,4.8792,1.1609222222222222,5.52715,4.02519,5.7151,4.74251,1.6756399999999998,4.58752,3.74137,3.743645,3.96991,4.332255,3.093716666666667,0.50574,7.4788049999999995,1.568238,0.20808055555555555,0.20808055555555555,0.20808055555555555,5.06455,4.035605,2.6787666666666667,4.30203,2.71367,4.462565,4.316122857142857,4.266861666666667,8.469233333333333,4.500265,6.660103333333334,0.8639,0.7747725,2.501575,4.4828,4.20874,2.081776666666667,5.3021,5.3792,3.37502,3.654805,4.4778,2.2945033333333336,4.924475,4.859164499999999,2.2497933333333333,2.7889366666666664,2.9564033333333337,2.600235,6.23285,3.931585,0.6930657142857143,3.967995,3.272035,4.270605,4.903893333333333,4.93692,2.801275,5.49615,3.629945,13.616518333333334,4.935955,6.842468916666667,2.482493333333333,6.585869,4.574005,3.98261,2.15414,2.3311525,9.39891,2.10276,4.237966666666667,4.1764,3.8026999999999997,3.0848099999999996,3.012043333333333,2.0069425,2.3306525,2.88989,1.8517579999999998,4.065266666666667,2.4157966666666666,2.5883266666666667,3.4243,3.5423666666666667,2.45228,2.45228,2.4444266666666667,3.6034666666666664,3.4312666666666662,2.4323799999999998,3.0976933333333334,4.296266666666667,2.7401966666666664,2.7464333333333335,3.8134333333333337,2.5536866666666667,2.1758575,3.9065999999999996,3.03397,1.666036,3.5866000000000002,2.3003133333333334,2.524506666666667,3.06052,2.261476666666667,3.3935,5.745556666666666,2.2905366666666667,3.7747333333333333,1.92385,10.628534666666667,1.79669,1.8841666666666665,2.19156,1.0789288888888888,1.521828,4.64124,2.9666360000000003,2.9666360000000003,1.8126120000000001,1.5137316666666667,3.534161666666667,3.77484,2.160953333333333,1.6072983333333333,1.6531420000000001,4.548270666666667,3.6892,4.0147,8.080126666666667,2.9701014285714287,2.4380966666666666,3.287742732919255,4.2668,2.1758575,3.2720000000000002,3.0719366666666663,3.288656666666667,3.4299175,0.9021975,3.3016575,2.99437,2.823173333333333,4.18853,3.32445,0.7228127272727273,1.9429542857142859,4.99886,2.663087,3.3577999999999997,1.56918,1.56918,2.07208,3.80396,0.972096,2.2553025,4.72541,4.72541,0.6555238095238095,6.005225000000001,3.774035,4.21343,4.914265,1.2037342857142856,3.4335,3.608,5.2770391666666665,5.9335320000000005,2.4364933333333334,0.734003,2.754296666666667,2.617426666666667,3.144125333333333,2.3590533333333332,2.3947966666666667,2.9378666666666664,2.391675,2.4198999999999997,0.8351263636363636,5.4488,4.771148,1.3689783333333334,1.6364,5.3552,2.12208,1.595455,4.16154,1.51616,3.50225,2.665525,3.5926333333333336,9.18145,4.848300833333333,4.74162,5.17,2.424336909090909,0.8146280000000001,1.990994,6.943786666666667,1.6904366666666668,4.000615,4.085585,3.4541,21.296940083333332,3.2554200000000004,1.3728733333333334,1.16125125,3.155613333333333,1.4275566666666668,4.18022,5.18105,3.3551055,3.4271333333333334,1.84295,1.415655,2.8703766666666666,0.5841975,3.4789333333333334,3.569366666666667,3.1659666666666664,2.5499746666666665,2.543956666666667,2.69016,2.1692066666666667,3.11086,1.7113720000000001,3.8953666666666664,1.5148533333333332,3.798845,4.08392,2.7902066666666667,5.3866,3.111875,3.878055,5.2518,4.74905,3.208073333333333,2.832966666666667,2.30393,1.1367142857142858,1.1367142857142858,1.1367142857142858,2.2635825,3.2828766666666667,2.6374366666666664,2.3931066666666667,2.205,2.0826125,3.74243,4.411565,3.69125,6.314095,3.242405,2.27396,1.8452025,0.9857383333333334,2.39703,3.83947,2.4884933333333334,2.6999666666666666,2.3575,2.43153,2.5170933333333334,2.8221366666666667,2.963373333333333,2.6592033333333336,2.2612466666666666,3.285073333333333,2.25721,2.1088275,1.6389275,1.9137275,3.0576566666666665,3.2904133333333334,1.967265,3.898605,5.28125,2.904973333333333,2.575062115384615,5.38206,4.25539,4.872565,5.63215,4.584655,4.26284,6.58431,1.2585125,4.50126,2.650775,5.2643,5.24835,3.871895,3.864065,2.36414,7.51,2.674055,0.8290000000000001,8.0948,5.50491,5.917141428571428,4.55322,3.0175867500000004,1.82734,5.1442,4.231305,4.63433,5.205,2.428635,4.386085,4.66812,1.7590125,4.073835,2.92005,1.3881500000000002,4.639375,0.6439235294117647,4.372258333333333,3.60672,4.570295,3.526325,1.680565,3.66194,1.966255,1.385125,3.04714,3.5226333333333333,3.3907666666666665,7.2235924358974355,1.8560625,6.903404583333334,9.57507,6.088055000000001,2.88818,1.4290857142857143,3.031226666666667,1.4290857142857143,2.7497566666666664,2.08093,0.29492117647058824,1.0973861764705881,0.29492117647058824,0.29492117647058824,0.29492117647058824,1.0973861764705881,1.0973861764705881,0.29492117647058824,0.802465,4.451915,3.32606,3.2097,3.305585,3.38434,4.118725,3.123724666666667,1.598646,6.786965,2.8028566666666666,4.065225,2.759486666666667,1.0526090909090908,1.23535625,4.436495,3.523115,1.1747555555555556,1.663514,0.7699254545454545,3.182936751082251,4.2559,5.03155,3.6491000000000002,5.485801666666667,0.61593,4.40791,3.2106375,3.035766666666667,2.25974,3.4472,2.45555,3.1646900000000002,2.6099466666666666,2.752415,3.49531,4.801025,4.771285,2.11592,4.69705,4.536275,3.070495,3.791005,3.37641,0.34002533333333335,4.951375,3.560175,3.19308,3.222632,4.277205,3.980275,1.97997,3.10041,3.8926,8.784555000000001,4.998915,5.7545,4.776165,3.9179500000000003,0.967455,2.17979,1.8702,1.385035,1.8164366666666665,4.55733,5.44915,4.004425,4.961245,2.980312,2.6245666666666665,0.9174533333333333,3.874465,1.1825666666666665,1.1108866666666668,3.32068,3.585875,4.77249,1.29075,2.66435,8.734916666666667,3.2162066666666664,3.2003908333333335,0.8142175,3.930735,12.255403333333334,3.38313,4.153255,3.05919,3.284525,4.796795,5.2294,2.1696400000000002,4.42107,0.5991661538461538,4.758065,2.2466825,1.71892,1.71892,3.5855333333333337,4.515585,1.5676516666666667,4.276935,1.3624271428571428,3.938235,2.842696666666667,3.3599,4.71775,3.3837,3.807183666666667,2.626825,2.7370486666666665,2.7370486666666665,11.2849,0.732526,2.926995,3.21473,2.12487,1.9901425,0.9128342857142858,1.3692125,1.2079428571428572,1.962015,4.968955,2.44797,4.3991575,2.1491233333333333,4.05051,4.22914,1.7021166666666667,2.0090925,1.0367433333333334,6.171801416666667,2.1342175,2.254595,1.7405519999999999,1.859798,1.16125125,2.46571125,3.560905,2.1158566666666667,3.1442,2.43983,2.776946666666667,1.7939866666666668,3.0989133333333334,2.456,1.4542866666666667,1.73388,2.68212,2.64509,2.37603,1.1328433333333334,2.52501,1.8836000000000002,2.5947,0.31102684210526316,0.4087608333333333,2.3086933333333333,2.13965,3.098445,3.038503333333333,2.790015,5.06605,5.56425,4.349765,4.59926,4.40646,3.84033,2.915103333333333,3.70648,0.7019354545454545,0.06680954545454545,6.9398,0.06680954545454545,3.515665,2.920755,5.3483,3.500995,6.3323,4.76228,2.02123,2.4964299999999997,1.039445,5.3194,5.94505,2.63705,5.2686,1.9091725,3.689175,1.9848463043478262,3.221303333333333,3.2194599999999998,3.79817,4.97135,3.257935,2.38577,2.38577,4.06797,7.6731,3.592495,2.156946666666667,2.4479866666666665,4.35424,3.17169,5.0744,3.758655,1.0324677777777778,4.390245,2.68322,2.83492,4.290775,1.1695766666666667,2.3774466666666667,3.82163,4.05131,5.1579,2.86025,2.807115,3.896425,3.76814,4.375125,5.07915,4.086675,3.3132077777777775,3.76619,2.8198066666666666,2.7799866666666664,2.85594,3.8115,4.34217,3.0925666666666665,5.317858333333334,4.335425,3.8838,5.1882,4.36936,3.47842,1.4542199999999998,1.360735,3.95929,3.412933333333333,1.5918466666666669,2.87215,3.377575,3.1929533333333335,4.1693,3.1487533333333335,2.3823875,12.615918194444445,2.184813333333333,1.8603459999999998,4.78154,1.157978,3.3399666666666668,3.834585,4.711355,3.314235,1.192611111111111,2.3204833333333332,2.5018766666666665,1.52633,4.30633,0.9306275,0.9306275,3.53325,1.69715,1.8361,1.88924,3.35024,4.21687,1.93378,2.979495,3.5295850000000004,2.7961533333333333,3.02396,2.03702,6.3546,5.7657,3.891675,0.7088476923076924,3.266135,3.697995,0.9898818181818182,5.3915,3.2392,8.60935,4.896605,4.796735,3.486585,1.4805425,2.776535,4.93973,4.85484,4.01512,3.644965,4.430065,3.919615,3.5292333333333334,3.5292333333333334,4.63601,2.760745,4.27807,1.740745,5.56328,5.426216666666667,1.5151666666666666,4.808755,1.09089,5.6163,4.26952,5.15195,4.632265,4.43481,2.643605,2.59265,4.798465,4.29777,5.1011,4.56283,1.8675675,1.4094060000000002,4.593285,2.06946,5.3754,3.15394,3.506645,7.16986,3.795715,4.593975,4.762,4.12096,4.619795,8.329965000000001,4.046405,3.507745,9.366615,3.98158,0.6094285714285714,2.1027820757020756,4.81203,0.6099926666666666,4.60326,4.30158,4.845495,4.6486,3.33448,3.36504,4.70631,4.88069,2.3605075,0.6988328571428571,4.58157,4.59605,4.529555,4.431215,2.88285,4.643665,3.715385,0.761536,3.45288,4.13341,2.5296,3.3198233333333333,4.20372,2.2626749999999998,5.5913,5.23335,3.8792524999999998,3.31053,5.765091666666667,5.765091666666667,8.76558,1.981188,0.8295125,0.8295125,24.831569666666667,2.7303,7.905706666666667,0.3759341666666667,1.21123,3.1468000000000003,1.0218,3.654465,3.809185,2.2643075,2.2643075,4.385305,4.784215,3.561085,2.750261666666667,2.750261666666667,3.499735,4.79488,3.60815,3.4704333333333337,2.0356733333333334,2.7459720833333336,4.008597,2.12418,3.48786,2.95178,3.013842857142857,3.013842857142857,3.4700333333333333,0.8835255555555556,2.4478766666666667,1.5181966666666666,3.3937000000000004,2.8890433333333334,3.0587733333333333,2.7005,4.90526,2.4275,3.149453333333333,5.556697,1.3683859999999999,2.2004,2.990135,2.6432966666666666,4.27547,5.587558555555556,1.4478533333333334,3.8129666666666666,2.4609425,4.9502,6.33587,1.3501075,4.840886666666667,5.147618666666667,3.429798285714286,4.6450000000000005,1.0564385714285713,1.6482299999999999,3.06373,4.088045238095238,1.3927833333333333,2.48246,1.7234125,1.7679459999999998,2.18288,3.589132,5.323572,1.1077716666666666,1.4049,2.9126133333333333,12.900085,4.63252,2.78822,1.2637628571428572,2.710442619047619,1.0557742857142858,3.2581399999999996,4.1035683333333335,4.893535,3.4004,5.70345,1.381175,3.8092,4.248305,2.822013333333333,4.028707777777778,2.1561966666666668,1.0501711111111112,2.49564,2.9068233333333335,7.281856666666667,3.0576002857142854,2.6326766666666668,0.694635,4.729933333333333,3.5661,1.395648,5.807363333333333,2.01153,2.6285966666666667,5.5052,1.258911111111111,3.106286666666667,1.0406545454545455,3.1338899999999996,4.474575,3.1117033333333333,3.1684566666666663,2.27676,2.6587,4.836265,4.70961,5.12615,1.706795,4.471375,4.26936,4.428066666666667,3.484152,2.5869733333333333,4.259594,1.206704,2.809078095238095,5.06825,2.81455,4.148322916666666,1.3149125,2.85958,2.0442799999999997,2.0442799999999997,6.993195,3.159243333333333,5.369488333333333,3.4706550000000003,1.88863,2.7152904761904764,4.657033333333334,5.912566666666667,8.612616666666666,4.945488,2.6759690000000003,2.1736299999999997,2.0228728333333335,4.166473333333333,3.92631,1.550168,1.89438,2.293461607142857,1.2266575,3.236943333333333,19.357999333333332,3.1202166666666664,2.7252266666666665,3.0617933333333336,2.8904633333333334,2.5314533333333333,2.3462433333333332,3.2122499999999996,3.6559666666666666,2.6763933333333334,2.5761600000000002,5.7628113333333335,2.51751,4.829268857142857,2.9248568571428573,2.708608857142857,1.4465700000000001,3.876981111111111,2.11379,4.16762,5.1144,4.030455,3.1170216666666666,3.3221233333333333,2.6146766666666665,3.4793000000000003,3.640166666666667,3.4886,3.2428633333333337,0.8037554545454545,5.2505,2.503995,3.3003366666666665,2.8242761111111108,2.11929,2.250731666666667,2.250731666666667,3.46423,1.9855033333333334,4.75032,4.174895,3.700735,4.454845,4.74999,4.68616,4.68616,4.05245,2.9833366666666667,4.47936,2.721505,1.664876,2.4798466666666665,4.641545,4.20217,2.7663,3.71839,5.436635,3.831933333333333,6.614815952380953,3.07374,0.7947879999999999,0.7947879999999999,3.185775,4.798,3.720135,3.36097,2.3753933333333332,1.7964799999999999,1.5380833333333335,3.150783333333333,6.1071670000000005,1.5023383333333333,4.358655,3.7754666666666665,3.87483,5.31705,4.921555,4.916457458333333,3.420033333333333,2.3468975,4.43058,4.296755,2.13234,1.097214,4.190335,2.86825,6.47025,3.602,2.687255,3.30271,3.70734,3.698565,4.713895,3.15201,4.39824,4.09076,4.253825,3.61915,3.39349,3.49661,4.064475,2.5814366666666664,4.545155,3.432955,4.840055,0.6030688888888889,2.485445,1.97903,2.3757325,1.8284675,2.7625333333333333,2.5374933333333334,1.9178833333333334,4.52209,5.10421,1.8230166666666667,3.859005,4.488395,2.4613975,5.8235816666666675,4.154502916666667,4.537865,5.052,7.310173333333333,2.29869,3.050266666666667,1.9086100000000001,3.2160466666666667,1.958815,1.781445,3.99523,3.510925,5.388,1.0504722222222223,3.02882,4.431155,2.31562,5.3684,3.687025,2.53273,3.7006666666666668,3.36865,2.07857,1.797972,2.6343,3.1759,3.3312,1.892065,2.0209957142857142,2.0209957142857142,3.579675,3.440525,19.917752023809523,1.10844,5.124884166666666,1.9764175,1.98127,3.703065,4.01927,1.86978,3.77101,4.446095,1.2418433333333334,1.2418433333333334,1.22983,1.6547,2.437673333333333,3.1103433333333332,4.96143,3.69826,3.5390333333333337,0.5068452631578948,3.4963019298245617,1.9834366666666667,2.171775,4.4815325,3.411355,3.887395,3.462915,4.477275,4.4723,1.99091,3.853985,5.737346666666667,2.491685,3.45877,4.993785,2.15416,4.767695,5.48245,1.3308214285714286,2.01216,3.7156333333333333,0.7235528571428571,3.1824133333333333,3.49671,4.9649,5.0466,2.85764,7.878516666666666,2.9986866666666665,2.8637366666666666,0.45603764705882355,4.21447,5.34122630952381,3.1060526190476194,5.5769,3.68114,2.5311079999999997,1.8084700000000002,5.52577725,4.331795,4.35065,2.65685,1.913735,3.95057,3.8297333333333334,3.04875,2.2002925,4.057061666666667,6.5177075,2.767175,3.838315,3.524465,4.254745,1.5221714285714287,1.5221714285714287,3.2062566666666665,3.1603,4.7896,4.63003,6.4776,3.518825,2.86645,2.16096,1.5907033333333331,1.4148599999999998,5.09155,6.1258325,5.2677,5.81005,4.54133,6.79138,3.51952,2.7861100000000003,4.117521333333333,2.1330899999999997,3.08420375,1.735848,4.50862,2.3307966666666666,3.95916,5.3728,4.034935,2.6863433333333333,2.98804,1.4603428571428572,2.540025,3.8777333333333335,1.950395,0.550825,3.1796966666666666,2.6890133333333335,2.634183333333333,2.3389333333333333,2.1013625,1.762632,0.7344627272727273,0.7344627272727273,3.554933333333333,1.838335,2.64515,3.44393,5.81765,4.13601,5.81385,4.572435,4.745645,2.0342723333333335,1.2695433333333332,2.557795,4.547465,0.8850925,2.9547675,2.857865,2.892775,2.230105,4.115465,2.50646,1.9742733333333333,1.0375528571428572,3.5225,9.293925000000002,3.79106,1.5925553571428572,4.595095,3.47081,2.94967,3.455515,2.82531,1.70849,0.991745,3.72841,2.3916383333333333,2.2662633333333333,1.6628866666666668,2.171683333333333,2.17243,2.4374533333333335,2.8205975,1.3580866666666667,1.8510733333333331,1.0654575,6.3303175,5.4894,5.73245,3.887845,4.465615,3.07645,1.6304791452991454,4.703405,5.1507,2.461985,5.3485,2.11651,4.56621,1.0588566666666666,4.23525,4.45028,1.8189225,7.74703,3.57845,1.8407375,2.2723875,1.706035,2.5283,3.3679333333333332,1.2989805194805195,3.18739,5.68885,3.67769,3.917115,5.6731,5.3632,5.17855,0.9563575,4.38759,4.57943,4.109575,4.85756,3.911181666666667,4.6734,5.107,2.999025,1.4294716666666665,1.4294716666666665,5.30035,5.8803833333333335,3.050315,2.5371533333333334,3.91809,4.47146,1.634128,4.56797,5.05855,3.593255,4.035235,2.9665199999999996,2.8116333333333334,5.02705,2.380269,10.866847370227813,1.9141866666666667,0.76834875,2.5083366666666667,1.752855,2.53915,2.2800075,1.917654,3.0382,5.1928,5.29355,3.064246666666667,1.6190383333333334,6.322177023809524,1.3866657142857142,2.964116666666667,0.5275571428571428,4.201063333333333,5.61035,3.71937,4.509915,12.650965,5.5403,3.0607900000000003,3.10831,4.19228,3.26454,4.710255,0.98459625,0.9939033333333334,0.8686272727272727,5.77165,4.37293,1.8544899999999997,4.787731333333333,4.305555,6.5432,4.8991,5.30415,4.68165,6.0569,3.866565,5.1393,3.247185,1.224502,4.248345,5.6767,2.67273,3.903845,2.83874,2.62089,1.1755,5.21175,3.81449,1.3320125,3.5269999999999997,3.0566266666666664,2.52534,2.46794,2.5434633333333334,3.1583400000000004,0.6803072727272728,2.708296666666667,2.539146666666667,2.612503333333333,1.9595533333333333,2.6819366666666666,1.89113,1.39785,2.4702675,2.1168325,2.16613,3.398066666666667,3.058566666666667,0.750004,2.90565,3.502,4.703445,2.6761766666666666,3.975825,5.61965,5.1197,3.37554,3.84974,1.4512142857142858,3.24625,2.5148894444444445,4.287546666666667,2.9698512499999996,4.776445,5.3665,4.783135,4.42986,4.387766666666667,0.7971320000000001,0.7971320000000001,2.294166153846154,1.70425,4.26846,2.662239,2.662239,5.2038,5.89605,3.131125,1.2923733333333334,1.6143571428571428,5.7814,3.62052,2.3629599999999997,3.31334,2.674345,3.15818,2.3629599999999997,4.436425,3.17639,3.1909245833333335,2.842285,2.0425,3.031105,6.49595,3.00841,4.72851,4.16176,6.7016,6.1789,6.6047,6.6047,5.58745,4.730295,0.5239846153846154,5.05725,4.48858,2.84993,2.721665,8.129866666666667,2.93535,4.051665,3.59363,2.7086966666666665,4.62953,2.474,3.3329075,2.918703333333333,3.238683333333333,2.4182366666666666,1.7221959999999998,1.7221959999999998,3.61311,4.38736,4.352155,1.8882400000000001,1.576756,49.62566162878788,2.6251366666666667,0.8892845454545455,3.206436666666667,1.96171,3.3667,2.91442,3.13759,3.621145,2.92079,2.394276666666667,1.03730625,4.64066,3.22149,3.442685,3.83821,5.25115,5.2364,5.1633,5.4973,5.5492,4.88983,5.6422,6.2601775,5.15115,5.49815,2.05879,4.06654,6.7384,5.3899,3.56271,3.917495,3.60295,2.265895,3.869915,4.70637,3.1376033333333333,3.9527,1.6993800000000001,4.122165,1.3631,3.229295,3.77574,3.467555,6.5596025,4.237065,2.05404,4.406625,3.968815,3.910835,1.0187675,2.66081,2.81719,4.342815476190476,1.18761,4.924425,1.304045,5.97265,0.69616,4.300581333333334,10.462731666666667,4.71001,3.71464,3.471955,1.8951833333333334,4.29929,5.58695,3.0911000000000004,4.65582,9.206007222222222,3.4129666666666663,2.1194466666666667,2.879383333333333,2.7022933333333334,2.7462666666666666,2.6625679166666667,1.8722666666666665,2.52445,2.9629,2.719003333333333,3.0380800000000003,3.377095,2.2367399999999997,1.81781,5.233337333333334,3.9308666666666667,2.5561,4.9127979999999996,2.792143333333333,1.06780875,2.2822875,2.8815233333333334,5.1513921428571425,2.812775,2.3072116666666664,2.3072116666666664,1.5531025,1.6139575,2.1411000000000002,1.978056,5.9253800000000005,4.5201575,2.16135,3.0727366666666662,3.794833333333333,1.969285,0.6253041666666667,2.89385,1.9017575,0.53751,3.814505,2.541975,2.482765,3.58869,3.6280159999999997,2.47267,1.59411,1.1958499999999999,2.042135,3.479855,3.61423,4.18446,2.7299966666666666,4.04286,3.67332,1.1548181818181817,9.45022,2.58297,3.18686,1.2884625,2.7099466666666667,2.404695,2.404695,2.404695,5.1568,5.5473,1.659825,5.13065,1.375192,5.650013333333333,1.707798,4.341105,4.268725,4.196545,4.4151,4.715655,1.89495,9.123505,4.04384,5.0839,3.30456,4.385776666666667,3.3561,3.13346,3.818755,2.5149,4.354835,4.30559,1.61922,3.93493,1.61922,3.45364,4.239483333333333,4.879535,4.239483333333333,1.7929300000000001,5.7713,4.434485,4.480505,2.8749800000000003,3.0596766666666664,4.34614,3.133905,5.42075,0.5413007142857144,3.1567566666666664,3.0404733333333334,5.238221666666667,4.65197,2.42969,4.994295,6.125796666666666,3.30357,2.945155,2.638265,2.2066166666666667,4.20838,4.20577,4.71322,2.53265,3.91137,0.8742300000000001,5.54535,3.27297,4.15228,2.2128200000000002,2.9883933333333332,2.20235,2.70086,2.7867766666666665,2.7173766666666666,3.237425,2.50035,2.50035,4.6054075,3.21927,4.944175,11.6887875,0.9669711111111111,4.82958,2.7178466666666665,2.4298800000000003,2.7412233333333336,1.4621875,7.6805255,3.5553666666666666,3.633185,3.691650833333333,2.643526666666667,3.9591999999999996,4.365969166666667,2.39099,0.43828833333333334,1.4669,1.484085,5.0138,2.712215,3.257065,3.6993591666666665,3.3888808333333333,2.47100875,4.875085,4.59433,3.72901,4.499405,2.194615,3.97652,2.5021633333333333,5.574450000000001,3.049895,4.91011,4.01228,3.991385,4.291185,1.996555,3.75138,3.68228,3.0038133333333334,3.478645,2.828245,3.18131,3.589545,4.226735,2.6851933333333338,4.724895,1.4717516666666668,3.650575,2.76114,4.343915,4.52697,3.70106,4.26873,2.587385,4.273325,5.4426,4.0257,3.1710066666666665,2.17608,2.87069,2.365085,0.843835,4.603165,2.04569,3.36151,2.681195,4.0346,2.818775,3.36016,2.96931,4.579065,4.463263333333333,4.24719,2.81002,1.3251,3.66551,2.436045,0.98288,4.553255,8.7146,3.431545,3.634565,4.131085,4.81752,3.67837,2.02615,3.91237,3.847435,3.18562,3.05796,4.14952,0.61126875,1.302177142857143,6.4857725,1.6256975,2.609025,4.939066,2.571925,2.21981,2.87204,7.84102,2.68024,4.14078,3.68455,0.7468755555555555,3.355435,2.709145,3.837085,4.08773,6.341046666666667,0.742211,3.204725,9.4959,3.088805,1.0571144444444445,5.2562637500000005,4.826715,5.4637,4.70564,4.688215,3.46237,2.65529,7.693265,0.857855,3.52626,4.140885,3.10779,4.277325,2.403855,4.22126,1.67945,4.485725,3.98783,4.09176,1.90404,4.781205,4.767645,2.435815,2.09509,2.3182125,1.395648,4.103765,3.3551055,1.594278,8.924240000000001,5.76905,4.83446,4.538765,3.40488,4.408255,1.4641142857142857,4.479265,3.945955,5.47045,3.711535,2.5138266666666667,6.6423796794871794,1.0141,1.0141,2.564433333333333,0.9314571428571429,4.16125,3.4243333333333332,1.0478375,1.6850133333333333,0.3998008333333333,6.27366,1.02467,2.63823,3.42484,4.088525,4.060725,4.272315,5.3318,5.4986275,3.46046,3.057115,2.411485,4.324865,4.58454,4.31069,3.805845,3.55619,6.14775,4.475945,4.320213333333333,6.180857,3.68338,3.526465,2.32278,3.526465,6.978881,41.88928002164502,3.75982,3.467245,2.9360199999999996,4.513015,4.56907,3.30565,3.397625,3.67076,4.888905,4.355765,1.7044833333333334,4.86571,2.649185,4.81535,5.1609,4.83067,2.4650133333333333,4.652265,3.85835,3.23404,1.661414,0.6473861538461538,1.79906,3.7763333333333335,3.1662933333333334,1.3307875,3.0273,2.712673333333333,2.8293033333333333,3.4928333333333335,3.13077,1.52456,2.86806,3.7823666666666664,1.9746090283140283,3.039163333333333,3.221946,3.0863366666666665,2.5852166666666667,3.6316666666666664,1.2134888888888888,3.986535,3.772105,1.3128616666666666,1.3128616666666666,1.3128616666666666,1.3128616666666666,2.86827,2.04424,2.390655,3.43838,4.826085,4.719175,4.32853,4.416605,5.94665,4.679065,2.333865,6.28845,3.541385,3.14949,3.824255,3.29594,4.24465,4.446825,0.7236453846153845,1.542,1.5765433333333334,4.36925,4.047255,5.0345,4.092105,5.983358333333333,2.1900633333333333,4.62461,1.5052183333333333,3.91324,5.2668,1.5806133333333332,5.26665,0.7411075,4.410685,1.265024,1.238705,3.81649,4.0888,5.1919,5.30635,6.1883,4.66741,1.456318,4.6182,1.4881525,3.33382,3.198365,2.5311079999999997,1.920745,3.973135,1.3356450000000002,3.801945,4.834495,2.8752666666666666,5.7775,123.46431906259019,0.48564444444444443,4.459195,2.3971233333333335,4.720525,4.021625,3.237805,1.53121,0.33098809523809525,2.831745,3.71496,5.3885,2.847445,3.70532,4.38546,4.156145,3.847385,8.354526666666667,0.6754755555555555,2.61947,0.95852625,11.437332000000001,2.97155,3.49024,0.9492711111111112,2.197765,2.74172,2.14436,3.0226966666666666,3.448866666666667,2.6650566666666666,4.1875775,3.2003466666666665,2.2264733333333333,2.1589966666666665,2.822295,3.802325,3.08289,3.483565,3.607695,3.339325,2.28182,3.81186,5.1009,3.08278,1.041738888888889,2.5522533333333333,4.1875775,4.72166,5.7102,4.05087,3.732195,1.87983,10.70751,5.0365,2.64211,3.778095,5.1988,0.5636433333333334,0.5636433333333334,4.2833974999999995,4.2833974999999995,3.182205,3.8316,1.8515002272727272,0.57704,2.88266,4.446155,4.010335,3.425195,3.887775,5.341285,4.820265,2.115135,4.891655,2.38985,2.5941,4.538465833333333,1.82148,2.02072,0.5142114285714285,1.2752894285714285,1.2752894285714285,1.924015,4.647285,4.72489,5.02395,5.650627,2.875665,3.000265,1.98041,1.98396,4.290983333333333,4.026555,5.12326,2.498565,5.12326,4.902825,3.500875,6.0259,3.86648,2.3942533333333333,1.9734533333333333,2.4590166666666664,1.3911425,1.4357925,1.4417975,1.8906975,1.5230625,1.87639,3.729366666666667,4.65803,2.37337,6.46355,3.07295,4.580395,3.3745,4.09514,2.8963933333333336,3.0579300000000003,6.681163333333334,3.4876,4.898764666666667,3.4194,1.4090375,2.4345433333333335,2.630943333333333,2.26587,6.19795,4.50207,4.817355,13.001333761519184,0.7885933333333334,2.0948815,2.3648825,1.7484760000000001,1.3266514285714286,2.5814,2.5347,2.571,2.5454,0.745133076923077,1.9059625,0.5490736842105263,4.72026,1.899045,4.14894,4.750495,2.45685,5.87405,4.28752,7.84847,4.34533,2.763045,3.12831,4.589625,5.15095,2.7851110476190475,4.500785,2.1857625,2.1857625,4.84923,3.919305,4.32936,4.018975,3.281216666666667,3.915925,4.962855,5.4272,4.953885,4.930295,4.589315,4.29267,2.509455,5.128,1.292365,4.791255,4.80896,2.41419,2.2028333333333334,3.803265,1.4625666666666666,5.135,1.81747,5.833077971014493,4.05439,4.06773,1.7323966666666666,3.1510791666666664,3.1510791666666664,12.084555000000002,3.886775,4.65876,1.15504625,4.315554,2.3105525,1.441655,2.507225,1.7405225,2.007055,1.7910499999999998,3.17364,5.812,1.7303575,5.17405,4.736634166666667,5.2942,2.2390475,2.5029,3.59865,4.438065,5.56405,3.918305,7.067159999999999,3.2707866666666665,2.99545,0.4106855555555555,3.662605,4.11009,3.3764000000000003,6.354480000000001,2.55425,3.1333366666666667,1.2736933333333333,1.6334333333333333,0.550825,1.4669,3.07375,1.5304283333333333,1.6809666666666667,0.68174375,1.3329520000000001,4.639145,2.3909575,0.6512953846153846,1.6678499999999998,1.781885,1.7520859999999998,1.3720766666666666,2.2499225,1.6334333333333333,2.700575,1.3329520000000001,1.3329520000000001,0.6512953846153846,1.6371142857142857,2.50656,1.3927833333333333,2.776075,0.6512953846153846,2.71735,2.50656,1.3861383333333333,1.3861383333333333,1.3861383333333333,1.922418,1.250425,0.6512953846153846,1.005926,1.1661175,1.0789288888888888,1.8453,2.6983,0.8587333333333333,2.277215,1.6213,0.6512953846153846,1.74894,1.6334333333333333,1.9892333333333332,1.9656666666666667,0.9052339999999999,1.9892333333333332,1.049821111111111,2.435815,2.493285,2.617675,1.1661175,2.1936,1.3356450000000002,1.3356450000000002,0.9031927272727273,0.9031927272727273,0.9031927272727273,1.2736933333333333,1.6334333333333333,1.6213,1.6678499999999998,1.004182857142857,1.9656666666666667,1.5946479999999998,1.666036,2.04032,1.2736933333333333,2.78822,12.673670000000001,0.68174375,2.59166,1.8751833333333332,2.558975,1.0557742857142858,1.0557742857142858,0.6512953846153846,1.0665777777777778,1.762632,1.6213,1.767636,1.9656666666666667,1.1609222222222222,1.1609222222222222,1.691216,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,3.23779,1.049821111111111,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.3893054545454545,56.13623005916306,1.4872475,1.5499150000000002,1.6213,1.8751833333333332,1.004182857142857,0.6520176470588236,0.694635,0.694635,0.694635,0.694635,4.415633333333333,17.172822916666668,3.4623666666666666,0.6032154545454546,1.699412,1.699412,1.699412,0.6032154545454546,3.07375,0.6512953846153846,1.74894,1.6809666666666667,2.5263400000000003,1.049821111111111,2.42969,1.049821111111111,1.792684,1.792684,2.1446666666666667,2.1446666666666667,0.6512953846153846,2.06438,2.06438,0.9684181818181817,0.20808055555555555,3.07375,1.53054,2.4609425,0.6032154545454546,0.6032154545454546,0.6032154545454546,0.6032154545454546,0.6032154545454546,1.8751833333333332,0.3893054545454545,1.049821111111111,2.159055,2.159055,2.59265,3.1647133333333333,0.6555238095238095,0.6555238095238095,3.3990666666666667,4.1761333333333335,1.2037342857142856,3.187246666666667,1.0307,2.565625,1.981188,1.1695766666666667,3.1666266666666663,2.02989,3.31053,5.2666,2.749625,1.1874222222222222,4.455275,4.566065,2.7176833333333335,1.7000879999999998,2.2914264615384616,4.516465,1.7364555555555556,2.699756666666667,3.050193333333333,3.194186666666667,2.465315,6.107620000000001,4.49202,0.20808055555555555,3.199033333333333,5.1409,3.49882,4.508325,4.45593,4.64227,2.9588566666666662,1.880176,4.343175,4.542235,4.336325,4.77286,5.38575,3.18638,0.710695,6.704219999999999,1.5929583333333335,3.134564,4.780385,2.6593433333333336,2.6593433333333336,0.8539890909090908,1.920745,4.184005,3.03189,4.7642,4.47413,4.7342,5.3259,1.1152071428571428,4.51787,5.1435,6.962734027777778,2.170533333333333,4.158195,3.57871,4.03267,3.612765,4.191485,4.621215,6.3539924999999995,5.38945,4.332825,3.485215,4.311865,7.428414999999999,1.7566025,2.3128269230769227,2.8913100000000003,1.7318533333333335,2.6750066666666665,1.8223266666666669,5.2102,3.25993,5.86075,2.03508,5.0033,4.009105,3.77768,4.35868,3.672225,2.4738966666666666,2.6785,2.6807700000000003,2.6990466666666664,2.6690666666666663,1.6874333333333331,2.71115,2.7982333333333336,2.3405,2.3405,4.64196,2.8950533333333333,1.8473733333333333,2.94183,2.11348,2.7970966666666666,3.0463733333333334,2.625426666666667,2.98106,5.40685,4.422955,4.07387,3.4599133333333336,3.4599133333333336,4.16535,3.317413333333333,4.217505,4.452615,3.819475,3.49689,3.30277,7.35993,2.1082625,2.01041,3.35401,3.08959,1.4655733333333334,1.4655733333333334,3.500685,2.06955,4.192624,3.600255,3.219425,2.1687555,2.116279416666667,0.6093116666666667,3.636795,3.865345,1.90342,2.335345,4.31655,1.10164,4.683415,1.2159466666666667,0.402145,0.5587471428571429,21.757914117063493,0.5587471428571429,0.402145,0.7153492857142857,9.639173333333334,3.013973333333333,3.925365,4.393455,3.60738,2.824595,4.249325714285714,2.112665,2.47314,4.04385,3.29754,4.154165,4.70294,3.353555,2.30925,3.260295,3.754255,3.74,3.006895,1.078827,1.078827,1.078827,1.078827,3.269025,2.69584,2.970885,1.80177,1.153505,2.409555,3.74956,4.31035,2.884635,3.4853,2.374455,2.842696666666667,3.862635,3.98449,1.1125283333333333,2.8469166666666665,1.096,2.65543,2.16704,3.894833333333333,5.13625,2.36442,3.702135,4.1935633333333335,0.7689573015873016,0.21355285714285713,0.21355285714285713,0.5554044444444445,0.21355285714285713,0.21355285714285713,0.21355285714285713,0.5554044444444445,3.977795,7.282043333333332,3.55206,0.58718,3.61892,7.372605,3.193965,3.2162333333333333,1.1381916666666667,4.84969,5.4457,4.3533,4.649435,1.666526,4.65488,2.169306666666667,2.36945,3.88053,5.46675,0.8556857142857143,0.8556857142857143,3.668865,2.7916866666666666,1.914845,3.31305,2.373555,6.64075,2.31081,5.44435,5.8101,5.656,3.207345,1.902415,3.739355,3.336865,2.12792,3.42184,3.31596,1.7769175,1.1304633333333334,3.933025,3.362225,4.903893333333333,6.206448333333333,1.4929,3.849265,1.1170866666666666,2.4296599999999997,3.123575,3.96265,0.3946714285714286,3.837895,4.322295,0.9703709999999999,2.7153666666666667,7.788966666666667,2.988155,2.112565,5.74064,4.4729,3.642705,1.5047916666666667,5.40201,2.882846666666667,3.1892633333333333,3.5332000000000003,1.9992066666666668,1.9992066666666668,6.0585249999999995,6.0585249999999995,3.4959875,3.4959875,9.34136,3.4959875,3.4959875,4.1642675,6.80615,3.31154,3.596546666666667,3.01056,4.689915,3.434965,3.2556700000000003,3.237603333333333,4.91126,3.2576933333333336,2.6490533333333333,3.1881733333333333,2.28397,2.57667,4.96192,7.24078,6.7692125,4.942745,3.68167,3.94828,6.856488000000001,5.3034,4.977865,4.09526,4.583095,2.3366866666666666,2.25772,2.12495,5.46685,5.40725,4.570685,4.25577,2.216563333333333,2.7269133333333335,6.7936700000000005,1.922418,2.4665966666666668,3.5071666666666665,3.5071666666666665,3.062545,5.29335,0.788535,3.551966666666667,4.032175,2.9796133333333334,10.361524999999999,4.404835,2.68639,2.5083800000000003,4.806125,6.0691,2.920065,5.49285,2.5346533333333334,4.467415,2.867152857142857,4.44785,5.39445,5.0471,1.0258433333333332,3.645766666666667,1.04159375,2.4767733333333335,5.136275426470588,8.31331,2.5938833333333333,3.0042666666666666,7.313908333333333,1.767664,4.658125,5.72975,3.538775,3.64045,2.1683066666666666,4.677665,2.4905412499999997,0.47351076923076924,5.30535,2.782585,3.5932666666666666,5.264,4.85467,5.6436,6.96485,4.959795,5.62805,7.0873225,54.632825,4.87273,3.894955,4.888695,6.04485,4.792765,5.3763,4.387235,4.53395,1.8990925,3.913825,4.140835,4.79714,2.49381,5.2131,4.08368,1.597174,5.59725,6.46465,7.462056666666667,5.5302,3.415325,4.72503,3.20472,3.298765,3.42461,4.075755,3.62894,6.79038,2.74215,1.0550342857142856,2.33287825,0.7298359999999999,0.7298359999999999,3.532155,0.7298359999999999,2.3713805357142856,2.3713805357142856,3.1022725357142855,4.64424625,5.051844285714286,2.33287825,4.910059166666667,2.5202091666666666,1.4452766666666665,5.46945,2.154985,6.983356666666666,5.682516666666666,10.583938606060606,2.96509,2.5243033333333336,0.22402060606060606,1.8576796666666668,2.11706,0.895785,1.307745,3.1352166666666665,2.3610575,2.704225,0.576967,26.871355833333332,1.8208325,0.7799538461538462,2.6056466666666664,2.6056466666666664,0.43342444444444445,1.7201975,3.0818424999999996,1.292915,1.6644825,1.54828,3.89962,2.807645,2.0103666666666666,2.3717166666666665,1.086035,2.133375,1.5981066666666666,5.643845083333334,3.993845,7.039621666666667,2.543275,3.3840333333333334,1.0614633333333334,2.29177,5.1558,6.5364450000000005,3.1735933333333333,2.199786666666667,5.311016666666666,2.00561,2.5712533333333334,4.3541225,1.15321,3.657633333333333,2.2986366666666664,5.4189,5.0135,5.99435,3.43774,4.180804999999999,4.180804999999999,5.48035,1.905825,5.48795,2.9734433333333334,1.5531925,3.152745,3.462405,5.133516166666666,4.45478,2.9638533333333332,2.27394,2.803455,1.1133357142857143,5.31795,0.9449975,5.503166666666667,4.554935,7.485609999999999,4.060465,4.537165,4.13914,8.665624999999999,4.304185,4.96935,1.1162699999999999,0.7178142857142857,4.72339,4.35939,2.32205,3.463555,3.117005,4.2299,2.131405,4.79662,2.59165,5.37485,5.0279,5.37765,4.61907,4.71885,3.26463,6.676883,3.461225,4.341915,3.201015,4.42416,5.516817619047619,0.5777185714285714,3.6663666666666668,1.7450999999999999,0.5801688888888888,4.03043,2.645275,1.03764,1.94615,5.65007,3.59264,2.231725,2.8118366666666668,2.72829,4.97909,4.24781,1.639922857142857,4.31219,2.1924366666666666,3.578333333333333,4.519015,5.1889,3.2217616666666666,3.7813666666666665,3.876466666666667,2.00076,7.30397,4.7651,4.23382,5.24555,2.2824975,4.48946,4.736625,4.39801,3.773945,10.092705,3.491495,4.730426666666666,4.87275,4.544655,2.46942,4.70707,4.228175,4.470505,3.29847,4.526425,1.654865,3.18322,3.487685,3.592855,5.1482,1.960474,4.33066,3.2711566666666667,5.5136,3.399366666666667,2.23879,4.439935,4.787835,1.102655,3.05987,2.7103566666666663,4.594546666666666,1.7661380000000002,1.6645666666666665,1.2636175,3.899415,5.2542,5.698205,3.7639675,2.856565,2.44558,2.097995,1.81385,1.5784533333333333,5.67455,2.98417,1.9862175,0.9173692307692308,20.598449724358975,3.06438,2.9799800000000003,4.973741666666666,4.025687948717949,1.3912666666666667,2.6617735000000002,3.01652,1.156096,1.8622666666666667,4.54042,5.0348,3.6251025,3.378625,5.53675,4.73874,7.2620675,4.776090833333333,4.96184,3.73168,2.8120333333333334,4.100675,3.92372,3.388333333333333,4.112925,1.9630775,5.03565,8.85743,3.431065,2.82538,3.9849,0.55767,3.2308733333333333,2.0155233333333333,2.2257175,4.37675,3.524275,5.11345,3.792575,2.8838,2.2428575,1.74471,0.810182,1.44639,1.2595733333333332,3.854165,4.19702,4.7591,4.729295,7.11326,2.31336,1.3700839999999999,2.45764,8.030906666666667,2.9722,2.98165,3.0276,4.67184,3.289125,3.503165,1.5745559999999998,4.73988,5.0472,3.976625,3.93753,3.84742,4.29771,4.50181,3.983935,4.209235,3.75391,2.17306,3.2616899999999998,3.299455,5.67975,2.844905,4.22518,2.868935,2.80195,2.2556566666666664,2.1709733333333334,2.0964766666666668,2.465628666666667,2.465628666666667,1.8609099999999998,2.8382466666666666,2.3504033333333334,2.3218466666666666,2.0433733333333333,3.94343,2.3121066666666668,2.9373466666666666,2.8163066666666663,1.66299,4.62316,2.92953,3.891305,2.568423333333333,5.253,5.1425,4.916488888888889,2.55602,2.433365,2.88472,2.614465,2.091495,2.75818,1.9536375,2.5434,2.5887,6.692947500000001,4.284689999999999,3.56515,0.60635375,4.518495,4.04719,4.116795,3.159715,3.878115,3.6197808333333334,6.26215,4.60139,3.498705,2.8451500000000003,2.2614555555555556,2.4892,1.7010020000000001,1.7717079999999998,1.6973299999999998,2.1235,1.67379,1.2508266666666665,4.108455714285714,0.6512953846153846,0.5631355555555556,2.04556,1.5347166666666665,1.52615,1.4653383333333334,2.2971792424242423,1.4924566666666665,1.778002,0.59974,171.772509421871,0.5488926666666667,2.14884,1.070776,1.22608,2.09716,1.3975975,1.97279,2.3282666666666665,1.72151,6.585,2.941045,3.442122380952381,1.4721833333333334,3.21995,1.2646433333333333,1.2646433333333333,6.341262500000001,0.4915472222222222,2.239505,3.335233333333333,3.1111400000000002,0.8224518181818182,0.6011882352941177,1.2152907692307693,1.0577545454545456,2.4156975,4.361285,2.21943,2.1616825,2.557,4.9965925,1.0366733333333333,4.404435,3.72006,3.37258,6.64353,1.60149,2.88748,2.58788,4.441784,2.22486,3.829035,3.09836,3.408235,4.908165,2.70441,6.22158,2.613335,2.20227,3.04042,1.694245,2.730895,3.17665,3.109225,1.669825,1.808915,2.318185,4.73758,5.636763333333334,3.29338,2.80606,1.401125,4.310875,3.7245000000000004,3.8469333333333338,2.845945,25.682363888431013,2.8072926666666667,2.77624,3.13255,3.6024666666666665,3.12855,5.792483333333333,3.2201633333333333,2.69092,3.5305666666666666,3.5028333333333332,2.14348,3.2781233333333333,3.3951333333333333,3.178506666666667,1.6873666666666667,1.62332225,0.530106,2.2369766666666666,2.14395,0.203906875,2.3659066666666666,2.8304,0.203906875,0.203906875,2.118506875,0.203906875,0.203906875,0.203906875,0.203906875,2.978566666666667,2.886143333333333,0.5914592307692308,3.5124878571428573,1.5622325,1.959952,5.33755,4.4193225,6.2650725000000005,2.1452325,4.98979,2.210735,2.7481533333333332,1.4486142857142856,6.011546666666666,2.8560266666666667,5.968237500000001,0.89325,1.2553125,4.748195,4.69136,36.12626473021423,1.7270420000000002,1.3212166666666667,2.1991033333333334,2.4323725,0.9031927272727273,2.31369,2.33651,2.67464,2.04319,2.463906666666667,1.74575,2.701703333333333,2.3146133333333334,2.2686033333333335,2.7609433333333335,2.3223433333333334,4.002545,3.5630666666666664,1.1384957142857144,4.371065,3.91735,20.888178833333335,2.7663933333333333,3.5794333333333337,2.813553333333333,0.840476,3.129242,1.6328793333333333,3.129242,2.3907000000000003,2.7729199999999996,2.9683766666666664,1.8030575,2.064685,4.482905,3.97822,5.21085,4.188645,1.6955660000000001,5.25635,1.56002,5.03735,4.027411476190476,4.559865,0.7382563636363636,2.0304325,2.2318775,2.782802,3.15391,1.106755,3.438095,1.9210260000000001,1.94299,1.055352,1.055352,2.8317633333333334,2.5686233333333335,4.362085,29.192919583333335,6.172499999999999,1.8991966666666666,3.5467699999999995,0.3730873333333333,6.547689999999999,5.19655,2.8761166666666664,3.2419,5.7821725,3.999085,1.198155,4.717175,1.2153079999999998,2.566285,4.74677,4.92575,2.103385,3.191905,4.744965,2.934325,2.9212540000000002,4.443055,1.2837266666666667,2.60332125,3.788305,4.990385,2.419306666666667,3.07154,2.723323333333333,3.960525,3.99805,4.14805,4.236066666666667,1.633075,6.01117,2.35555,1.7262499999999998,4.044135,5.62331,4.01071,3.702565,0.77321375,3.011185,3.4528,2.11152,4.7356386666666666,2.84353,3.880505,2.8637599999999996,3.334566666666667,2.79403,3.4295000000000004,3.158046666666667,3.2070000000000003,4.353085,5.46205,3.81711,1.81128,4.14025,4.193695,1.990965,1.869275,1.6806425,4.059982777777777,4.659955,5.363197916666667,3.93258,3.464233333333333,3.709695,3.2785266666666666,1.5148566666666667,3.114995,2.90236,3.32299,4.67291,4.613965,4.43902,2.668785,1.90543,1.705505,1.39634,3.592485,2.44028,2.152655,3.38193,5.0975,1.688135,5.3612,1.4014114285714285,1.73538,3.08149,3.412735,3.11023,3.419975,2.96885,1.718255,1.0055175263157894,3.765545,4.23015,4.72793,9.15756,3.1925566666666665,3.32007,1.5837866666666667,2.6931066666666665,2.74088,1.2665716666666667,3.05861,2.96248,3.25277,4.0526,3.2677,7.1214200000000005,3.0739033333333334,0.7542663636363636,1.6902266666666668,3.36281,3.380025,3.33458,3.5447333333333333,2.6347519999999998,3.37491,2.57544,1.9692217142857142,3.834735,2.5620800000000004,3.475975,2.3842466666666664,4.35637,4.4518,4.44766,3.47608,3.723355,1.0080944444444446,4.96774,3.0078266666666664,3.0229633333333332,4.647875,2.726406666666667,2.7707766666666664,0.3796342857142857,0.3796342857142857,4.179288333333333,4.011125,6.74455,3.03564,4.491295,3.511575,3.08826,4.96735,4.45249,1.0074775,4.248585,2.771406666666667,4.3666375,3.00097,2.9509316666666665,1.9827066666666668,3.2773210714285717,2.599466666666667,3.1006066666666663,2.554883333333333,2.8409999999999997,2.139186666666667,22.52884444071146,4.50228,3.853105,4.219155,3.296655,4.5509699999999995,3.781265,4.583215,4.12395,4.304885,3.94209,3.862565,2.7441066666666667,3.0239133333333332,3.0382466666666663,3.044473333333333,3.0661733333333334,4.23939,3.561055,4.5525,5.10755,4.3972,1.327296,1.451004,1.451004,5.1717,3.798405,2.85698,2.4680966666666664,3.138,3.2974,3.780125,8.216786666666666,3.3132566666666663,3.5766666666666667,3.1285749999999997,4.72152,1.6215849999999998,5.8112525,2.404783333333333,3.2304566666666665,1.7722425,3.713365,3.51288,7.05073,3.49028,2.55467,4.19074,4.795877333333333,1.6194325,2.5283666666666664,1.66964,7.7196880000000005,4.3141,6.896363333333333,2.30919,4.333475,3.93831,4.320935,5.2816,3.6557666666666666,3.6557666666666666,2.1625975,4.414195,5.06315,2.49021,6.66066,1.753495,5.87095,8.172247,3.01408,4.212200666666667,2.1812133333333334,1.97768,0.49133875,4.48593,2.618975,2.623575,3.898873,2.4339875,2.5696833333333333,3.84268,5.7248,5.1565,4.61626,4.803605,4.55074,2.32013,1.0522090909090909,2.882705,3.21233,2.93005,5.4868,4.12255,3.28414,2.84455,2.01216,4.44916,1.01360875,5.1066,1.0399888888888889,5.50705,3.354535,4.935825,5.47819,3.208395,3.11596,3.204136666666667,2.37658,4.02645,2.99885,2.719615,3.8443,5.38845,5.807483333333334,4.998725,1.68606,3.36846,2.910135,5.588386666666667,1.8926075,1.8926075,2.8467033333333336,2.2427533333333334,2.6006933333333335,2.832316666666667,0.909343,6.407,3.51295,2.12866,2.275615,2.59231,3.57577,2.856435,3.62086,5.054,5.38725,5.0529,6.15095,6.0396,1.3563875,3.991385,1.0913083333333333,2.579575,4.406666666666667,2.575245,2.95802,3.10555,4.888295,2.909435,0.45345736842105266,4.31858,4.151235,4.869705,3.21866,4.66999,5.6556,4.40863,4.046755,1.80213,4.723735,1.9927175,4.3389999999999995,4.3389999999999995,6.64075,5.70665,5.66335,5.0668,2.732685,1.6215849999999998,4.273705,2.0623733333333334,1.6228999999999998,2.25317,4.315085,4.148975,4.37043,7.93062,1.6610016666666667,5.2877,1.3456533333333331,3.24035,6.114,2.010525,4.766815,2.8895733333333333,4.94196,3.272445,4.95082,2.63705,4.160765,4.04512,6.1256,4.15852,4.20558,4.068515,5.6019,4.310245,4.68567,3.63926,4.54639,6.986343333333334,3.484665,7.13978,3.133715,5.60945,6.551584090909091,4.60516,3.54605,1.76994,5.6593,4.040145,0.9633966666666667,8.32731,6.00355,5.343,3.033215,5.21945,2.91978,1.7589839999999999,3.87668,1.1125283333333333,6.2784,2.952615,4.493025,5.44335,4.534785,4.540265,2.0640633333333334,4.55117,5.3463,1.46621,7.600273333333334,3.00267,3.85367,5.1801,4.25222,2.111175,4.666075,3.492505,3.665935,2.88401,3.99524,3.630985,5.63625,4.74757,3.499005,1.79086,1.79086,7.42497,1.3986228571428572,5.3615,4.42635,5.311,3.722735,3.80816,5.4224,3.85056,0.8789333333333333,0.8789333333333333,0.8789333333333333,3.76309,3.124445,3.746445,4.533708,2.726195,1.4199599999999999,4.30356,2.2538175,2.572225,4.220085,4.886995,1.81467,2.23118,5.1033,4.131035,2.978515,4.715055,1.9423125,1.9380075,3.360133333333333,2.518305,5.5257,1.42245,1.6385539999999998,1.1299825,4.14956,3.43333,3.0688566666666666,3.16574,5.38965,1.7265059999999999,2.1333775,3.091275,1.7212285714285716,3.25952,3.52501,2.527075,5.57855,5.55335,2.751285,4.634835,4.01764,3.47989,3.81784,4.21676,3.50862,6.82422,5.2478,1.8899966666666668,1.8172666666666668,3.520125,4.770685,4.101945,3.802575,3.1200433333333333,4.352795,5.7943,5.2288,2.8080366666666667,5.65915,4.022355,3.69797,7.870255,4.154025,0.7648627272727272,3.961575,3.9871141666666663,2.070365,4.304945,3.8173333333333335,5.85505,3.83293,4.191555,3.949715,4.68622,4.831715,4.754025,3.242625,4.32204,5.2107,4.064345,2.92617,3.171235,6.24888,5.4175,1.8796880000000002,3.19534,4.01113,3.875015,5.24105,4.61271,2.499826666666667,0.8920333333333333,4.604287272727273,6.4161025,3.428245,5.044,3.513585,7.228959999999999,4.05743,3.7706,2.8549900000000004,3.72634,1.885915,3.16417,4.555495,2.5060225,4.485815,5.61825,1.3572725,5.0404,0.6869821428571428,6.08965,5.8742,5.6391,5.5672,1.4739166666666668,1.7564933333333332,4.360365,1.88474,4.436705,0.51457,5.8183,3.05129,1.506822,6.2163450000000005,6.37965,0.801745,1.7370649999999999,1.259486,1.259486,1.259486,2.061456666666667,5.18785,3.645695,3.362905,4.05665,5.46715,4.198275,1.9610980000000002,4.257415,5.2178,0.3030073170731707,4.014145,4.726005,4.47063,40.14595687121212,5.662406666666667,4.95783,10.890889666666666,2.930875,4.37864,7.350203333333333,3.17117,4.742945,4.067515,4.1582,8.86929,3.702585,2.7343433333333333,2.72454,4.270105,4.106715,3.572175,4.508785,1.88141,4.44571,4.787655,6.925305,4.11595,4.586315,2.3558975,4.10784,0.50619625,1.3868283333333336,3.461425,6.10565,2.83508,1.2509933333333334,1.2509933333333334,3.1516,3.772705,4.401035,2.522215,1.5996499999999998,3.60046,4.177135,1.9366175,3.100073333333333,1.664378,1.8335933333333332,4.079235,4.434085,2.24197,4.667835,2.389695,2.1713,3.52565,3.396015,3.959685,3.89468,6.1990083333333335,2.6429983333333333,3.79281,0.7339236363636363,0.6647108333333334,3.695665,2.17905,8.969616666666667,3.4623666666666666,5.2104,1.6188175,4.594775,1.6025133333333335,4.195945,4.46646,2.6091933333333333,3.91493,5.09425,0.41857449999999996,0.41857449999999996,3.7087333333333334,3.33116,3.0353399999999997,4.08449,3.517935,5.49155,0.9901636363636364,11.058276666666666,10.742875,2.2499225,4.860530000000001,4.8492,4.77194,3.410175,2.62794,2.11224,2.03484,9.8483975,2.341525,2.669703333333333,3.63334,4.594005,3.63334,2.32738,3.2814,2.8579933333333334,0.7578745454545455,5.485801666666667,3.1402366666666666,2.73519,4.2242,8.819245,9.949,4.38231,3.892105,4.253045,6.612765,1.8597925,1.4022625,27.045178333333332,4.66503,4.07507,0.892364,4.24225,4.112145,5.132,4.70988,4.771865,5.846046666666666,3.2013833333333337,2.0625766666666667,0.6754823529411764,0.7322083333333333,4.706245,5.153,1.40526,4.490818333333333,0.9165666666666666,3.4771666666666667,1.5005733333333333,4.18413,6.02445,1.906095,2.48075,2.02415,3.88675,2.860315,0.44733111111111107,3.83862,3.48307,3.1150966666666666,3.243085,5.12355,3.112963333333333,4.266915,2.89001,4.523025,8.564616666666666,4.741985,7.726789999999999,2.77485,2.6827233333333336,4.45024,4.4888075,4.546185,4.398815,3.7657,4.74765,1.18108875,3.3168883333333334,3.2028897857142855,0.718708,1.451004,1.451004,4.601005,7.801175000000001,0.8452230769230769,4.76303,0.9477016666666667,2.879246666666667,2.44857,2.7138229545454546,6.519932222222222,2.566406666666667,1.1475555555555554,2.4657566666666666,1.17863875,2.169583333333333,3.333833333333333,3.046291666666667,3.4225999999999996,2.51184,0.9477016666666667,4.704945,4.565625,5.53705,2.934205,4.043715,2.1899,6.01665,4.855025,4.663755,3.06302,3.551075,2.22225,1.8797675,4.27438,2.758325,4.694005,5.52615,1.7718820000000002,4.950495,2.967363333333333,6.575768333333333,3.53221,2.697285,0.9477016666666667,2.525355,3.32221,7.456165833333333,2.4599533333333334,1.702216,2.4599533333333334,0.4528683333333334,1.195156,4.187605,2.588585,1.6881075,3.54608,3.7486810000000004,0.615591,0.615591,0.615591,9.031965,1.6185199999999997,0.7261772727272727,35.65127388961039,1.93415,0.66828,3.0624425,0.66828,3.550935,1.993545,2.33545,2.5993233333333334,4.829225,4.27842,4.374405,2.479573333333333,0.9129771428571428,4.290445,3.4377,5.09905,0.9991628571428571,2.85925,2.85925,3.772225,4.197745,3.891965,5.091623846153846,3.48635,4.866025,5.43025,1.9079059999999999,1.12895375,5.30055,6.6409,3.84526,0.657064,4.626205,4.232966666666667,1.022305,4.62825,2.5597,4.196015,4.55721,1.8814823232323232,1.8814823232323232,4.467125,3.33846,0.9390866666666666,2.99122,3.18262,3.331455,3.864505,4.456365,0.46708285714285713,0.300644705882353,0.300644705882353,0.300644705882353,0.7677275630252101,0.6315938461538462,0.6821659999999999,0.300644705882353,0.300644705882353,7.631185,0.300644705882353,0.7677275630252101,3.49122,1.26371,4.33683,1.1315416666666667,0.6514876923076923,1.022305,2.65922,2.75485,3.91887,2.914655,0.300644705882353,0.300644705882353,4.393265,3.641325,4.36651,2.65821,4.095785,1.681188,3.6811,0.6821659999999999,0.6821659999999999,4.77761,3.040205,2.70927,2.77621,3.8990833333333335,1.05,0.8478153846153845,10.50624,1.2873375,3.81004,4.59524,5.2348,2.10458,0.41508,0.90772125,2.87416,3.367645,3.329615,4.59878,1.552476,6.03625,3.764775,5.4746175,4.321005,3.0439866666666666,3.1244433333333332,6.643385,2.784266666666667,4.815,4.040445,4.1935633333333335,5.7437249999999995,0.566244,4.40223,3.2239799999999996,2.1596033333333335,0.6941700000000001,4.01547,4.18384,3.07041,2.36878,2.225235,5.14415,2.607565,2.824935,0.944352,0.45352461538461536,3.823835,0.344066,0.7912045454545455,3.881195,2.905885,4.547225,2.70114,5.4547,4.399925,6.363435333333333,3.58822,3.342455,4.171715,1.5742375,5.3685374999999995,1.8249939999999998,4.02242,2.505425,6.16843,2.598525,0.969006,4.69903,7.057237499999999,6.628642500000001,3.2252166666666664,0.8311649999999999,2.8181433333333334,4.513445,4.198455,4.545735,4.58501,4.299445,4.89247,3.43845,4.027515,1.72567,2.41458,1.4133066666666665,4.28575,10.33185,3.19568,3.61595,5.9463,3.106005,4.45316,2.6461433333333333,3.01469,3.217935,3.111915,3.32086,3.016525,3.928245,5.0617,5.81865,4.889305,4.76677,4.99379,3.890245,2.827015,5.22805,8.03315,0.9130944444444444,3.95873,4.022805,4.80996,5.44085,5.51775,2.425585,8.002625,2.4104233333333336,3.29582,6.10035,3.710245,4.11451,2.23502,1.7845525,2.962806666666667,2.3532966666666666,2.1482533333333333,3.056093333333333,4.400065,4.72411,3.989875,3.26021,4.918236666666667,3.202615,3.095075,4.03089,5.6375,2.9696,5.574269166666666,4.152525,4.05656,3.900355,8.05977,4.148535,3.57894,4.52583,5.1691,3.673705,10.2671,1.39305,2.232925,4.10251,2.8481566666666667,2.8481566666666667,1.962195,8.088516666666667,0.913478888888889,3.28876,0.87132625,2.1333775,4.3916,5.0564,4.085595,4.600115,2.7712866666666667,3.562,4.055175,3.805895,4.565395,3.19304,2.7339933333333337,4.29308,4.9657725,3.7874,4.474375,1.7515319999999999,1.613724,2.6887166666666666,5.68745,2.32449,1.6475733333333331,2.0963325,4.48094,4.898535,2.9099,2.86242,0.5722188888888888,2.356915,7.554205,3.20163,1.4444966666666668,0.802465,1.1685333333333332,1.90456,2.0020675,0.7658550000000001,1.9894133333333333,4.2708265,3.94848,4.460925,2.3885433333333332,2.1070225,7.9873975,3.06835,1.8285566666666666,1.8285566666666666,1.8285566666666666,6.442616666666666,2.1796166666666665,3.565185,2.62095,0.49054400000000004,1.130642,2.3217475,5.8949075,0.42544444444444446,3.709585,3.865405,5.35095,2.8624477777777777,0.42544444444444446,2.8624477777777777,0.95739875,1.29264,5.6929,4.389575,6.80969,4.30881,4.779695,3.940965,4.20453,5.1289,5.3295,6.0725,3.71184,3.366335,5.01015,4.550765,4.212715,4.467805,4.5679,1.3974316666666666,2.9360233333333334,1.230575,2.23076,3.2404716666666666,1.5440883333333333,6.6709,5.588386666666667,2.731156666666667,4.43843,2.95815,4.99368,2.92368,4.309065,5.04295,9.3883125,5.61915,4.598035,2.3948875,2.850825,2.12262,0.55767,2.201341333333333,6.27825,5.31985,5.2366,4.72073,0.5117313333333333,2.023085,1.4792475,4.407965,0.6967769230769231,6.413717500000001,2.0544925,1.1332775,1.1332775,4.090224,2.09484,3.2021333333333337,2.593295,4.66019,3.6645275,3.6645275,5.0619,6.0128699999999995,2.7893399999999997,2.67436,3.30188,4.78298,1.861978,2.8088466666666663,5.60865,5.334,5.0168,4.421605,3.9798783333333336,4.50235,3.6927250000000003,3.222433333333333,2.3946375,4.195975,5.18065,3.2133525,5.00435,5.71045,2.1378366666666664,2.386676666666667,6.2254,6.8777,1.2028940000000001,2.687475,2.3692025,2.6771966666666667,2.2523025,2.63555,2.459382,1.1238000000000001,1.8976125,2.71435,2.33176,2.55736,2.55736,2.953767,2.918325,2.2123771153846152,2.567425,2.418295,2.02278,1.5780859999999999,5.11433,14.9507045,2.9653266666666664,3.3503333333333334,1.7728259999999998,1.7728259999999998,1.69085,1.69085,2.9517666666666664,3.7653,2.952476666666667,1.9058375,1.9058375,3.851566666666667,2.62892,1.0943866666666666,1.4360285714285712,3.1324233333333336,2.938026666666667,3.707266666666667,2.744334523809524,3.4037666666666664,3.262366666666667,0.692655,2.721775,3.761457,7.196758333333333,4.81489,5.20885,4.35459,3.486275,4.72339,4.840605,3.0158466666666666,4.3103,1.4323583333333334,3.316333333333333,5.82745,5.39065,2.632755,1.26745,3.026505,2.6107066666666667,3.2506866666666667,1.6463633333333334,0.7090528571428572,3.2127133333333333,4.956205000000001,4.78675,4.21423,4.905435,3.0818499999999998,2.11016,3.236473333333333,2.629706666666667,3.4886666666666666,3.1524900000000002,3.3760333333333334,2.8071099999999998,2.3297133333333333,3.7073,2.9603333333333333,5.2455,4.909175,5.268285833333334,5.268285833333334,3.44648,3.997745,3.69687,3.508495,2.642845,4.469715,3.26122,3.3969,6.29715,0.77917,5.2445,4.931415,2.4684033333333333,5.325469999999999,3.195183333333333,1.93075,1.3445257142857143,2.2496899999999997,1.01229,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.5163114285714286,0.5163114285714286,1.1863125,0.8952359722222223,1.6972701136363635,0.975857142857143,0.975857142857143,1.2619378914141413,0.43533222222222223,0.39581777777777777,1.210515,1.4909175,2.717033333333333,2.39462,6.556178333333333,3.08829,3.991055,2.8902216666666667,4.771148,1.3689783333333334,4.707035,4.375655,5.08325,3.36627,1.454322,4.133243846153846,3.6166,4.709465,4.402565,2.825335,4.812005,4.452345,4.878035,1.24149,4.126295,4.744655,3.037355,2.3093566666666665,3.284705,2.455565,3.30952,4.83719,3.1091533333333334,5.0593,8.64694,3.24537,4.849,4.463705,4.617535,2.8505833333333332,4.09237,0.8462914285714286,4.152665,3.363095,2.0377,1.0872725,2.89823,1.3101383333333334,0.5342713333333333,3.4111666666666665,4.394595,5.117383333333334,3.6747333333333336,2.4904675,2.920745,4.87472,4.101966666666667,4.487465,2.672475,2.19073,3.94916,4.026735,4.070455,5.43535,4.63088,3.641445,4.77836,3.16832,4.38531,2.1537733333333335,4.62396,5.2588,3.239525,4.386275,2.48384,3.74069,5.6495,4.371025,5.2995,4.821835,4.90444,2.56799,5.0608,4.80024,5.0774,2.2745875,0.9466325,4.247225,4.850575,4.50788,5.02395,2.01238,4.22096,2.060725,4.99163,4.821625,4.891715,2.331585,4.534485,4.96501,4.428085,2.75999,4.69011,4.84056,5.407,4.086875,2.2745875,2.133675,2.960025,5.1415,4.28991,4.49485,3.455115,4.924095,2.292295,6.81008,4.787515,4.503275,5.210765548611111,4.80537,5.35535,3.43577875,2.4431383333333336,2.4431383333333336,4.30659,3.98251,4.4609,2.2511675,3.09678375,1.08136875,2.8409099999999996,3.11637,2.56312,3.25324,4.5191,2.945603333333333,5.4762,2.69172,4.776315,4.27855,1.75332,4.04164,1.6294700000000002,2.9067366666666667,4.04998,0.9231450000000001,5.09935,4.694195,6.5802625,5.00645,5.60585,1.3497285714285714,4.51321,6.4506,9.015754999999999,3.2677266666666664,3.3415,1.937034,0.8451919999999999,3.883225,0.9881657142857143,4.445985,4.44466,5.5421,3.057775,3.58595,1.1222400000000001,3.728565,3.583425,4.253795,4.23028,2.908395,2.87834,2.474315,4.6211,4.768335,5.6438,4.679785,3.721795,0.3404277777777778,0.3404277777777778,0.3404277777777778,0.3404277777777778,5.4897,2.89355,6.2979,3.0911333333333335,4.83145,4.761365,3.738575,2.18226,2.496593333333333,1.4248666666666667,5.3729,3.0137066666666663,4.05771,3.469015,3.358375,1.629045,1.18264375,4.703895,2.357335,6.079795000000001,3.95589,5.07935,2.22442,1.595915,0.9418144444444445,3.184005,4.601345,3.90067,2.1887525,8.027045,4.67822,3.165625,2.30556,0.506436,3.679825,2.55222,1.947725,1.914695,2.71832,2.87763,2.342015,3.02286,2.81464,3.254325,4.78907,4.061645,4.45463,3.56003,6.006733333333334,0.6329893333333333,4.535085,5.88115,5.193,4.830715,3.3944666666666667,5.25855,4.705465,4.37857,5.63125,5.5054,4.79764,5.00325,3.74671,4.70951,3.07166,8.9109,5.12345,4.542555,4.976415,4.965485,5.50085,3.78129,1.1730777777777779,5.998608333333333,3.782875,4.939385,1.477845,4.44939,4.073755,7.164051666666667,4.667535,2.998005,1.8989900000000002,4.581845,1.82498,0.92758125,4.231055,6.3499,1.9385266666666665,2.2686100000000002,2.7854533333333333,3.32302,3.47731,3.581495,5.30535,1.7896833333333333,4.154915,3.7776045,3.33018,3.710733333333333,3.858365,2.77118,2.53892,2.0679325,2.43244,2.6586066666666666,4.288135,0.6093116666666667,2.5744966666666667,4.12649,2.99528,3.5940666666666665,4.72869,5.19955,4.31644,17.28732315151515,2.9383966666666663,4.1043666666666665,1.550168,0.8881918181818182,0.8881918181818182,0.8881918181818182,0.8881918181818182,0.8881918181818182,5.04675,4.90279,5.032,9.063485,2.5072,2.5072,4.775685,4.716139166666666,1.3961425,2.2508066666666666,4.10278,2.618825,2.4552125,2.262595,3.023615,3.7243280000000003,1.8999975,3.665785,0.8248928571428572,3.055196666666667,2.9643333333333337,3.156223333333333,1.7642433333333332,3.261863333333333,2.5340433333333334,0.979185,2.715643333333333,2.6850533333333337,1.2339333333333333,2.54469,2.86599,2.405143333333333,4.58798,1.9918633333333335,3.1233966666666664,2.0881,2.62811,1.173311111111111,2.8110933333333334,4.727263333333333,3.562466666666667,1.05802625,3.1369399999999996,1.4269625,2.55418,2.3880500000000002,4.615831666666667,3.12772,2.525446666666667,4.829917333333333,2.6171633333333335,2.11787,3.0704499999999997,2.64262,1.5830933333333332,2.91835,3.22235,3.2000833333333336,2.6339166666666665,3.15297,2.65867,2.605025,3.8552045,3.8552045,2.883236666666667,1.9838366666666667,1.88886,2.8181999999999996,5.350350000000001,3.0896399999999997,1.9443533333333332,1.9151025,3.1097,4.529625,2.381623333333333,1.050104,2.7403073333333334,1.4316000000000002,2.721346666666667,2.189833333333333,2.4422900000000003,2.01827,2.9792400000000003,1.3007440000000001,1.4760966666666666,1.4176366666666667,4.204841666666667,2.520723333333333,3.91527,1.0545922222222222,4.158525,1.9792866666666666,2.243495,1.75519,1.6366683333333334,3.2627699999999997,24.09209824891775,7.193896666666666,2.61581,3.5932433333333336,3.186446666666667,9.970340666666667,3.0673866666666663,1.0079175,2.5132933333333334,2.3659966666666667,1.8923466666666666,3.182563333333333,2.5964833333333335,2.5692666666666666,0.9842599999999999,3.4780333333333338,2.6469633333333333,2.905336666666667,2.4941166666666668,2.560236666666667,2.022116666666667,2.0816166666666667,2.85237,2.3885,2.09302,1.601924,5.585999999999999,4.66356,2.4275575,2.97885,2.211516666666667,2.4642166666666667,8.167014166666666,1.9755866666666666,5.10805,2.265175,1.8520325,7.46174,2.9469366666666663,2.9302533333333334,2.615625,1.8611280000000001,1.4202711538461539,3.298973333333333,3.194036666666667,4.184135,1.782205,3.7249,1.407585,1.407585,4.386275,3.58324,2.780642857142857,2.780642857142857,5.99894,3.398475,0.43548,12.448612670940172,1.20637,0.91648,4.1305700000000005,1.4933535042735042,2.0148825,6.367843333333333,3.970895,0.7564045454545454,2.0667966666666664,5.030339757575757,2.5194906666666665,4.256565,1.3730085714285714,5.53965,5.2714,5.04385,3.402559,1.9371759999999998,2.46807,2.5198766666666668,2.476573333333333,2.2969999999999997,5.42328,4.758355,4.41302,1.8675675,4.72625,4.421215,3.3324533333333335,2.2099,5.1255,2.5816333333333334,8.90692,6.7166025000000005,1.9598575,2.284145,1.755226,4.5214,4.5214,3.11895,2.9547933333333334,3.0357525,5.04455,9.677335,4.438495,2.5011,5.4978,4.394255,5.3516,2.01094,0.86978,1.3123166666666666,4.60506,4.8272,3.6653000000000002,2.87999,3.8419000000000003,2.1950600000000002,3.891075,4.6572,3.317445,5.54415,3.2763833333333334,3.826281333333333,3.4913666666666665,3.4099,3.456,6.37665,3.088925,5.31145,5.0411,3.12673,3.339675,3.339675,5.9326975,12.163053333333334,3.654833333333333,6.410292500000001,7.117286666666667,3.533135,2.4595733333333336,3.923425,1.3201033333333334,3.77276,2.4500125,2.93254,3.0593833333333333,3.597566666666667,2.10544,2.355233333333333,3.0059566666666666,2.50447,3.1526099999999997,3.088513333333333,4.261135,2.40734,2.8686133333333337,4.066825,2.9160466666666665,2.7467333333333332,1.20225875,2.1660325,3.02244,2.538206666666667,2.709516666666667,2.4118666666666666,3.6824333333333334,2.5401133333333332,2.5092966666666667,2.7948033333333338,3.21187,2.86149,3.18093,2.6668333333333334,3.319793333333333,2.87513,3.3378560000000004,2.64242,2.4793366666666667,2.43805,2.8723566666666667,2.7438633333333335,3.4638000000000004,3.2816500000000004,2.517965,1.973335,1.973335,0.7696866666666667,1.5745559999999998,4.51103,3.214305,2.51937,2.10544,2.8887199999999997,1.32999,2.91108,0.598792,3.4837666666666665,3.1280966666666665,3.269005,2.9507666666666665,2.90024,2.6563333333333334,3.0429033333333333,2.8127433333333336,3.5066333333333333,4.941826666666667,1.559816,2.96421,2.38489,1.69086,2.2527133333333333,3.0023466666666665,2.8406933333333337,1.711112,2.4762,2.5689966666666666,2.81617,2.912803333333333,2.9444700000000004,2.972963333333333,3.3010066666666664,1.39185,2.8867166666666666,2.4304333333333332,3.723966666666667,3.7625666666666664,1.84707,2.49208,3.368,2.8113166666666665,3.529666666666667,2.54668,2.3533766666666667,5.316675,3.3139033333333336,2.0687866666666666,1.5524660000000001,3.3526333333333334,6.503036666666667,3.2028466666666664,3.602733333333333,2.923773333333333,3.2171299999999996,4.6231713333333335,1.554408,1.1689888888888889,2.3739933333333334,1.7938883333333333,4.766315,2.9678966666666664,3.1473133333333334,3.1736033333333338,3.226343333333333,2.5610933333333334,3.3502333333333336,2.5317,1.6600819999999998,3.0496,3.47708,3.73616,3.22286,3.90048,1.7658425,2.963965,3.8124,3.750615,2.5388699999999997,3.4482,4.0746,3.909933333333333,1.5521575,5.507071,3.20654875,1.52841,3.502235,3.700665,3.045195,4.270765,1.902936,1.902936,3.22451,2.93423,2.93638,5.32325,4.360425,4.435936666666667,1.2408899999999998,3.01469,2.6808599999999996,4.248565,3.278833333333333,4.955706666666667,2.6547133333333335,2.370556666666667,2.7680066666666665,3.404205,3.66773,1.6304539999999998,3.011896666666667,3.019925,2.3449125,4.758975,1.3745016666666665,2.86768,4.140375,2.5718,3.499865,3.930285,1.6705525,1.5839466666666666,2.48575,1.1845833333333333,2.1903433333333333,1.9836,0.46070285714285714,4.379085,2.94864,4.68589,4.427935,2.932165,4.5961316666666665,3.4625333333333335,3.1941,3.602233333333333,2.65693,3.4477333333333333,2.973053333333333,3.324586666666667,2.497193333333333,0.7039330769230769,2.2702533333333332,0.656845,2.0182933333333333,2.4741,3.1813066666666665,3.1261799999999997,1.60888,1.532475,4.002705,4.761675,3.588655,3.9572,2.9958,2.0350425,4.127755,8.07839888888889,3.58769,5.699465,1.59054,3.966865,2.114605,4.487485,3.90225,2.591225,4.378145,3.390095,4.12519,4.405495,2.2103275,4.085575,6.6001674999999995,5.193,3.42272,3.333945,1.781885,2.1066025,4.117945,3.287115,3.14658,3.787975,3.82163,3.906655,1.7304625,3.897335,3.384715,1.97649,4.3474275,1.0265833333333334,3.79902,1.779395,4.335375,4.788716666666667,3.6855,3.175335,3.709865,3.6022,2.107905,2.2847025,3.9445333333333337,3.300555,6.11556,4.142625,4.442925,2.280385,2.640885,4.59815,4.533875,2.5940839999999996,2.5940839999999996,6.170917,4.1378795,2.8639175,2.993295,2.245,3.08444,3.6542,3.887348333333333,2.950637,3.410185,0.960646,4.117385,3.04439,4.22884,2.707595,1.58569,1.673675,3.361475,6.054938,5.5524125,3.44581,1.7256275,4.279045,3.972665,0.9793033333333333,3.36663,1.4923579999999999,5.5789075,1.4997283333333333,4.105715,2.0231,1.60888,3.53209,3.64384,4.544745,6.945105,4.279055,5.383643333333334,2.3638,2.810415,4.367865,4.172745,4.28545,4.361695,1.12424,1.62332225,1.09321625,2.923745,2.11505,4.79447,1.09321625,4.53183,2.26537,1.7613775,1.7613775,1.97649,4.208955,4.4293,4.204825,1.5732599999999999,1.5732599999999999,1.0576983333333334,3.460405,2.1216875,6.0596025000000004,4.560745,4.024955,3.0570633333333332,0.9847814285714286,3.50182,3.1256,4.230095,3.836595,4.412,4.412,3.452465,4.05831,2.0242875,3.11881,1.0100144444444445,2.4403466666666667,3.64978,2.6206066666666668,3.547206666666667,3.547206666666667,3.065735,4.709535,4.637645,3.092475,3.609895,3.93561,2.6664733333333333,4.727675833333333,3.35484,4.41017,8.42623,5.1859,2.66721,3.164135,2.985615,4.65073,3.3037659999999995,7.879630000000001,4.950959,4.700625,3.59358,3.818,3.978725,4.711135,4.806785,3.290115,4.656285,7.033475833333333,2.8306,2.277785777777778,3.504765,3.27511,3.73209,4.913035,2.1683066666666666,2.74973,3.34028,3.33698,3.09173,7.9444099999999995,1.6933175,5.013665,5.013665,3.70717,4.1792316666666665,3.402295,2.510596666666667,5.53471,4.684705,2.49836,3.90119,4.256165,3.4220458333333332,3.26897,3.10934,6.634594999999999,3.453965,5.39345,3.614025,4.974005,4.021675,4.163095,2.93423,2.235536666666667,3.165145,4.05798,2.77017,3.2591883333333334,3.17454,6.678945,2.667665,1.89667,3.4389166666666666,2.217776666666667,4.207145,2.91839,0.9793033333333333,3.757065,3.94644,3.86548,5.9752125000000005,3.273645,3.45567,3.015773333333333,3.015773333333333,3.982124166666667,4.48058,4.08501,2.093715,6.27749,2.1852825,4.459145,3.83743,8.0668,2.7569133333333333,1.2490966666666667,3.180315,4.518345,0.72749125,4.061215,4.03095,3.26301,3.06792,4.51875,2.0603233333333333,2.384645,8.80709,3.368165,3.302115,1.4997283333333333,3.903655,2.797205,2.71794875,4.34995,5.762485,1.78107,1.2943433333333334,1.0987850000000001,4.207315,4.194245,3.848685,3.7609475000000003,3.7609475000000003,1.7304625,2.194305,3.285423888888889,0.8952488888888889,3.290055,1.2727725,1.7658425,3.78254,3.447125,3.120115,2.959955,2.9517525,4.74936,4.196235,3.41129,3.43665,3.06079,4.338485,6.560475,4.11253,0.9414725,2.6311895,8.5908,4.642285,4.18891,1.140725,5.279641666666667,1.4409333333333334,3.87507,3.87507,3.89671,9.426604166666667,0.8592466666666667,4.80524,4.501335,2.703583333333333,4.3476550000000005,3.900465,2.148415,10.436890333333334,1.959365,2.56405,3.69183,1.9075499999999999,4.416379083333334,3.064765,3.595425,3.899707333333333,3.40144,3.02959,1.2352933333333334,7.36885,4.35636,4.00556,4.15312,1.984625,3.175335,4.495774166666667,4.059745,0.6735661538461539,4.1492,4.437445,4.93153,2.1145425,1.561274,4.433845,4.222605,9.17838,0.7473907692307692,1.107375,1.107375,2.1092833333333334,1.4218766666666667,1.4771100000000001,1.7792533333333334,4.722985,1.2975366666666666,0.9364028571428572,4.0266375000000005,3.5933,1.33961,3.315885,4.62457,4.00218,0.7515080000000001,2.034915,10.484745,2.9524583333333334,3.70463,3.30252,1.7988375,2.471156666666667,2.610645,4.52382,4.343705,3.822825,0.96935,1.445422,0.942295,4.31766,4.184975,4.02358,0.8952488888888889,1.7232720000000001,4.05773,2.637985,5.478760833333333,1.1336775,4.761565,0.7392650000000001,0.7392650000000001,0.7392650000000001,10.669855,4.08931,1.2727725,3.852065,4.525845,2.94655,3.459445,4.896235,3.170705,2.0674172222222222,2.34088,0.7515080000000001,1.7308113333333335,0.5722088888888889,0.6063383333333333,1.5440216666666666,4.39269,3.686335,2.16837,7.583105,4.847845833333333,0.6941977777777777,6.22955,5.341493333333333,3.547005,4.62581,7.583058333333334,3.8088575000000002,4.847845833333333,4.4688445833333335,2.5855799999999998,4.13138,3.989145,7.87721,3.44183,0.506436,1.583588,4.402585,1.7284,1.2943433333333334,4.03711,2.4478666666666666,1.81421,3.480945,1.640914,4.520195,4.4118,4.191945,4.72114,6.68591,2.700975,3.97362,1.4923579999999999,2.4134025,3.6127,3.455585,2.49836,4.22937,2.482625,4.93885,2.78791,2.309295,3.4134633333333335,1.856162,3.49408,0.8952488888888889,2.18791125,1.0987850000000001,1.67737,3.527405,1.6933175,1.5440216666666666,2.0864725,3.75793,8.22066,0.96935,1.140725,1.424096,3.67152,4.217645,1.424096,3.87012,2.4134025,0.72749125,0.8952488888888889,2.1092833333333334,1.4923579999999999,0.46070285714285714,1.597174,4.36842,2.703583333333333,1.4436066666666667,2.93906,1.5521575,1.959365,2.896425,2.34088,4.260025,2.896425,0.9793033333333333,3.1050130000000005,2.282575,0.1424868181818182,0.1424868181818182,0.1424868181818182,0.1424868181818182,0.1424868181818182,3.271663333333333,2.6480533333333334,2.8885799999999997,3.1641,4.847015,4.263505,1.75519,3.566225,3.513555,2.170405,5.0333475,2.691085,2.400595,2.47176,2.58979,4.650545,8.529446666666667,2.45337,2.0618833333333333,3.029985357142857,0.8613928571428572,1.3751483333333334,2.3327433333333336,2.1482366666666666,1.6014225,2.7828133333333334,2.21252,2.5178333333333334,2.704003333333333,2.6086533333333333,3.79509,3.88993,2.6054133333333334,1.392084,3.884145,3.786275,1.5437533333333333,1.317422,1.317422,1.317422,3.64228,2.7858433333333337,1.1051766666666667,2.1761033333333333,1.3562257142857141,4.309655,1.6693366666666665,6.774496666666667,3.3900449999999998,2.6368066666666667,3.2191780000000003,3.2191780000000003,5.475936666666667,3.016785,4.71021,4.946995,2.2216325,3.3007266666666664 -GSM1946783,1.0,1.8728375,1.8728375,1.4790999999999999,5.6234,5.27685,2.7844107894736845,1.6847833333333335,8.458595490196078,4.88271,3.0620433333333335,4.63525,3.189345,3.91264,4.46863,2.0406199999999997,1.487622,5.22285,2.3253933333333334,2.3738125,5.228,5.236141666666667,4.02339,2.62661,1.8161960000000001,4.283095,5.22405,4.036645,0.7904375,2.0499344444444443,2.2258727777777776,2.611525,2.578225,1.1933957142857143,0.7600466666666666,3.2501457142857144,1.69085,2.0605425,1.594085,2.1967175,1.41797,1.5643175,1.209324,1.80995,0.8568339999999999,0.9268599999999999,0.774724,1.4296,1.821666,1.877816,1.535318,2.28612,1.852526,18.293621166666668,0.35162666666666664,0.8103339999999999,1.248378,1.912754,1.8120640000000001,2.40352,1.0264757142857144,1.0264757142857144,1.0264757142857144,1.0985,1.496456,4.7830224999999995,1.157655,2.32354,1.97383,2.6108,1.07949,2.36965,2.525875,2.33595,2.0926775,1.7894875,1.48082,1.58574,2.39586,4.88909,5.1365,4.97351,1.4095133333333332,4.67257,4.478696666666667,3.921625,4.328435,1.1474075,7.33486,0.58671625,0.58671625,2.3177775,1.1604557142857141,18.12125,5.02285,5.30375,5.08915,4.572235,4.360125,5.30575,0.5663888888888889,2.4640933333333335,2.14895,2.4189075,5.00615,4.62257,1.3492,2.756676666666667,2.491826666666667,2.8730266666666666,3.3156933333333334,2.85764,5.4578,2.9001615,4.486175,3.1028000000000002,0.7619836363636363,1.414664,2.24111,4.2822,3.665845,0.598496875,4.31777,3.86433,0.992295,4.04528,1.889172857142857,2.318475,2.487695,2.0152325,4.03454,5.499,3.163725,2.6632866666666666,3.6556333333333337,2.89634,4.291655,3.0491266666666665,5.94265,3.41938,4.889785,3.913515,2.686005,3.512185,2.514725,6.775138333333333,3.742905,3.624715,3.25902,3.248335,4.68925,0.6956144444444444,9.245483095238095,3.801765,2.2366033333333335,1.8173716666666668,3.5762666666666667,2.327125,5.0968,5.93805,2.0957575,4.7033725,2.785985,5.28165,2.0957575,2.7046333333333332,4.47024,5.212885,4.89325,8.180276666666666,3.268745,4.39222,2.915275,5.64195,4.67655,1.6714666666666667,7.70383,4.57357,4.238785,3.986065,3.325575,3.703075,2.1396,6.145455,2.131755,3.867935,4.037475,5.4802,5.20515,4.438455,1.35477,2.96495,2.7177,1.94416,1.94416,5.7682116190476185,3.00577,1.8322666666666667,4.743265,4.54067,3.108845,1.4108049999999999,1.3129777777777778,7.00245,3.83768,6.79085,5.8508,5.15285,3.578435,2.783135,3.73287,3.369795,3.704625,4.222305,5.773,2.75408,3.48694,8.841523333333333,4.496555,3.2932966666666665,3.311916666666667,2.873276666666667,4.0569,4.4481225,1.8486625,2.8462566666666667,2.597863333333333,1.789406,1.6241700000000001,2.4019833333333334,1.78016,2.44435,3.0742100000000003,2.93223,2.48741,3.0144333333333333,4.478696666666667,3.22835,3.98242,3.93689,4.870055,1.3730716666666665,1.800775,2.798006571428571,2.20964,2.4819666666666667,3.1428999999999996,3.3684333333333334,2.1299,1.3726900000000002,2.769023333333333,0.653772,1.67804,0.5055499999999999,0.5055499999999999,1.73217,3.859033333333333,2.5476666666666667,1.3289433333333334,1.42262,0.40432538461538464,2.7144066666666666,0.653772,1.2808166666666667,0.22002702702702703,1.34539,1.9416925,3.4586,2.4711766666666666,2.9387066666666666,2.5182100000000003,2.86274,2.2822766666666667,2.5124866666666668,2.3266433333333336,2.3556833333333334,2.5149133333333333,1.87346,2.67538,4.6621,0.7652716666666667,1.9526233333333334,2.68944,2.119196666666667,3.830086666666667,1.464742,2.51789,2.6357033333333333,4.46606,2.11392,6.255041904761905,1.6168285714285715,2.4936366666666667,2.09652,2.07471,3.7929666666666666,2.05073,1.84756,4.33686,2.5756833333333335,2.139355,3.79677,4.572975,4.170475,3.854735,2.371775,4.18668,5.403684,4.031775,3.98795,4.30721,4.244055,3.14788,4.404105,3.5745,0.84542125,4.861375,1.525035,5.1029,3.613715,6.2311510000000006,3.982195,4.072545,1.0589575,2.27364,3.58871,3.88799,0.7783800000000001,1.302918376068376,2.074287142857143,2.9971131428571427,4.775985,5.7521249999999995,2.02137,4.148335,5.5209,0.34061642857142854,3.534705,2.318115,0.93202625,3.74352,1.92187,13.080860000000001,1.20719,1.742835,3.1765600000000003,3.46028,2.16791802631579,5.492158026315789,0.3577605263157895,1.6084066666666665,3.199336666666667,0.93912,3.8501666666666665,1.076357142857143,5.6035,3.775015,1.9661166666666665,6.06015,5.52455,2.22895,1.1614414285714285,4.00162,4.77717,4.12277,0.9143181818181817,8.458603333333333,2.9368533333333335,4.579525,2.5883966666666667,2.41597,4.650235,2.4294966666666666,2.9672666666666667,2.5372666666666666,2.4736366666666667,3.23458,2.8019433333333335,0.3243325,3.70749,3.42556,3.761525,3.688305,4.17328,6.1493400000000005,3.863985,1.5566075,5.5882,4.70938,4.21102,5.33135,1.3340100000000001,3.2017733333333336,3.4266,2.52433,15.245289999999999,2.962475,3.728665,3.84821,4.909935,2.20681,5.386985555555556,2.352095,0.779541111111111,2.6857,3.305095,3.87963,3.5334,6.452591666666667,3.28927,2.10952,2.09091,3.4777666666666662,4.51253,2.43997,0.37154745535714284,2.4249321739130436,1.8014575,1.13158125,0.4695385423136646,0.5675296292701864,0.37154745535714284,0.37154745535714284,0.37154745535714284,1.1209375,1.522305,1.1858675,1.3922875,4.5906199999999995,0.22158970588235294,11.829418084415583,2.9451866666666664,3.05268,4.63437,4.452555,3.54036,2.08487,4.91476,4.314332333333334,4.53142,4.228825,0.7451415384615385,3.502266666666667,4.477646153846154,0.520145,3.049715,2.8701233333333334,4.981175,0.5862127272727272,2.03011,4.34887,3.943205,2.0938125,1.7180366666666667,1.69221,3.3138966666666665,3.61305,2.795745,2.82141,5.2602,5.65105,4.73828,3.304733333333333,4.171685,6.216575000000001,3.6704000000000003,5.7226,0.3987266666666667,3.17566,4.533813333333333,1.9489966666666667,2.486005,2.7390108333333334,5.521604999999999,0.63566,2.19811,4.8413,4.152045,1.0364185714285714,4.5326,3.257115,4.97912,3.3051666666666666,4.337265,3.307665,4.15624,1.1472016666666667,3.2393,2.751723333333333,4.572185,4.27999,4.74165,5.75795,4.147325,2.92179,5.21355,2.3707366666666667,3.104875,3.3072,2.865553333333333,2.83754,2.4585266666666667,1.8463640000000001,1.59562,1.8960966666666668,0.7674942857142858,1.9183733333333333,1.7642666666666666,2.2412033333333334,3.2117,3.3531999999999997,3.0399,0.9315822222222222,5.1024,3.5761000000000003,5.590989166666667,2.8133291666666667,2.9598099999999996,3.7522,2.1266333333333334,2.1266333333333334,3.259137662337662,3.259137662337662,4.86441551948052,0.47198142857142855,1.6769800000000001,2.801576666666667,3.5141333333333336,2.202127142857143,2.202127142857143,2.202127142857143,7.40157755952381,4.4062342857142855,0.9457,4.368605,4.760070833333334,2.3657075,4.82515,3.266135,2.17145,6.1201,3.22265,3.31275,1.55615,1.8525266666666667,2.79031,3.1191766666666667,2.299933333333333,5.69455,4.374933333333334,3.9117333333333337,4.3989,1.6994166666666668,3.145566666666667,2.983496666666667,0.6827755555555556,2.1339,4.379372,7.4574725,1.3410725,2.832795,4.38958,1.9791340000000002,2.04802,2.04802,1.10433375,4.963775,7.936465,4.201085,6.793214,4.793675,2.0113666666666665,4.20434,3.895215,5.1304,4.68322,0.35589631578947367,2.92217,2.86875,4.006735,4.096875,1.75283,1.958615,2.667725,5.0432,4.14344,3.2648,2.306875,1.92116,6.85293,4.07192,3.74628,3.310265,3.842285,4.464035,4.83741,3.4422,3.4711875,1.865575,1.1547271428571428,2.774445,3.72882,4.30272,5.3367625,6.071305000000001,2.105475,1.8561766666666666,2.4610166666666666,2.6441866666666667,2.97509,0.6241185714285714,1.997965,3.314975,1.08167125,4.943955,3.06248,5.784845,1.1623572727272728,1.1623572727272728,4.27039,3.60048,3.769805,5.3537,2.65216,2.20066,3.931295,3.85942,2.0691075,3.270303333333333,2.8875433333333334,3.884015,3.5017750000000003,4.077115,4.62274,0.9748466666666666,2.620985,4.398645,4.12531,3.333595,2.577463333333333,3.36225,0.8162111111111111,0.8162111111111111,0.8162111111111111,0.8162111111111111,1.7152277777777778,4.06722,4.06722,1.71584,7.861926666666666,3.93074,4.905345,3.4876666666666662,2.605,4.78181,3.94671,4.743175,5.4374,1.7736225,4.21243,4.68735,2.8721,4.37344,3.19522,3.060095,4.899845,1.89838,3.87193,1.491325,3.4762383333333338,2.878535,1.6451325,1.13892,3.124625,4.64183,1.589646,0.79701,4.35732,1.25699,5.072675333333334,4.702805,1.463342857142857,3.53485,0.7315411111111111,2.64647,3.0785433333333336,2.892576666666667,2.549065,4.49116,2.8151491666666666,4.906,5.2759,4.638125,4.433775,2.09534,1.2531214285714287,4.30215,5.05685,1.604205,1.604205,3.968885,0.28535866666666665,1.9707533333333334,0.28535866666666665,0.28535866666666665,0.28535866666666665,0.28535866666666665,4.404365,2.7102166666666663,3.865815,3.40602,3.2165233333333334,4.70997,2.788793333333333,0.9969175,0.9969175,0.8516066666666666,0.8516066666666666,3.54296,1.738335,3.63329,2.4413348214285713,2.4413348214285713,5.74249,0.7530357142857144,1.9676375,7.622616666666666,5.3341,3.04443,3.55499,1.04515,2.13055,1.89629,4.85828,4.423275,4.344425,3.63484,1.2597514285714286,2.61996,2.1546375,7.27314,1.874065,4.41836,4.86183,2.79483,3.73751,5.83711,8.220205,4.093475,5.58015,4.93325,2.24182,3.632305,2.322825,2.165335,2.4679,3.64172,4.175675,5.809746666666666,6.4456,4.499185,1.2493266666666667,1.648655,4.55106,4.326495,2.0463225,5.5638,4.70896,4.596333333333333,1.9668066666666668,3.6035,1.4762866666666667,6.457526666666666,2.612483333333333,2.37736,2.100893333333333,2.36699,3.07159,3.476933333333333,3.9219000000000004,3.3376333333333332,3.3592999999999997,1.557842,4.293245,3.10129,4.019905,0.396699,2.99087,4.155415,2.493645,5.27425,4.80562,4.78412,6.739413,5.0984,2.3877566666666667,4.29893,5.18935,1.6088083333333334,5.41835,6.10535,5.2683,5.09575,3.6186,5.551,5.0854,4.5124,5.7343866666666665,7.5692075,3.876435,1.2668233333333332,1.50254,2.348025,1.846618,4.805575,4.050385,6.0186525,2.58481,2.6565066666666666,2.656973333333333,2.4677366666666667,2.4520766666666667,1.093382222222222,0.5338652941176472,4.310155,3.762,3.4676333333333336,3.836075,2.90275,3.270633333333333,5.393868333333333,3.219803333333333,0.6076235294117647,3.53793,5.76795,2.0406225,1.540978,3.729345,3.85184,2.6191999999999998,4.077933333333333,4.901995,2.5258499999999997,2.1924266666666665,2.11987,2.28187,2.49024,4.055405,4.842891666666667,7.606356249999999,2.201,5.3241,3.878880416666666,6.033900083333333,2.9174966666666666,2.958825,2.26096,1.72637,1.5789225,1.5789225,2.5137300000000002,2.3053033333333333,2.52397,5.29185,1.6645379999999999,2.127325,1.80871,0.62608125,4.014595,0.591645,1.16964125,3.441375,4.228455,4.50748,1.759525,5.3808,3.0241966666666666,0.8755428571428572,4.688915,3.9278514285714285,3.3907333333333334,2.34756,4.66532,0.2911510344827586,2.645279,3.29044,1.5041425,3.48939,4.671915,2.18121,1.35606,3.726715,3.662455,2.6584600000000003,2.6584600000000003,3.407395,3.73785,4.78418,5.139003333333333,5.11,0.9819633333333333,2.83234,2.9736499999999997,4.89216,5.1662,4.917175,4.833635,4.4293000000000005,3.8535333333333335,3.9254333333333338,3.5499666666666667,3.5757666666666665,3.1299966666666665,2.9313800000000003,0.7072821428571429,2.42114,2.478025,4.290555,3.02134,3.0557233333333333,0.7492816666666666,2.25281,3.5665205,4.81124,5.4725,4.020835,2.3196375,2.3196375,0.950003,3.41509,4.272105,4.038395,5.149025,3.07147,5.28725,0.5572436363636363,3.87625,3.956765,4.640515,3.534955,1.1080914285714285,3.94865,3.91067,5.0794,3.880225,5.34115,2.67691,4.080185,2.03463,1.08778,2.6512933333333333,5.04675,3.68704,3.137445,1.5741949999999998,3.90652,2.488975,2.575525,2.596108222222222,3.0830800000000003,4.591763333333334,2.7047866666666667,1.904712,3.5493666666666663,1.4502144047619048,2.830016666666667,2.5876233333333336,2.1915275,3.2087866666666667,3.0843166666666666,2.6745566666666662,3.3213233333333334,4.36471,2.99473,3.88251,2.1479033333333333,1.761825,4.261821666666666,2.9866499999999996,2.545926666666667,3.88251,2.4858333333333333,0.8238872727272728,2.4476725,1.0074766666666666,2.1915125,1.5685325,0.9468363636363637,1.7526925,2.22221,2.5888679999999997,2.659675,4.74721,1.46931,3.932975,3.1935366666666667,1.5302060000000002,2.2821333333333333,3.280796666666667,1.55745,2.9090566666666664,2.964506666666667,2.8055179545454547,2.1189825,1.7714860000000001,3.7046666666666668,2.39525,2.743351666666667,3.2715033333333334,2.815186666666667,3.919233333333333,2.6050833333333334,4.3138,3.5132666666666665,3.707966666666667,3.3645333333333336,3.6057666666666663,3.6512666666666664,1.9640266666666666,8.570105,4.429245,4.612265,3.292055,3.21751,1.920535,3.84505,1.785126,4.3659,4.946325,1.6148399999999998,2.433413333333333,1.1977666666666666,3.0427033333333333,1.95346,2.45657,5.21986,3.2523,3.39226,4.60881,0.750835,1.5668060000000001,1.0302,4.242605,11.035025000000001,4.0563,6.59755,2.0473375,5.3574,4.452995,2.4240575,5.33695,0.2700782352941177,0.7822614285714286,4.78124,4.79119,7.3188125,2.2686125,4.43131,5.77645,4.66794,4.32071,4.445545,5.24115,2.932865,5.675721666666667,4.266985,4.238585,3.200785,1.8778,1.7779299999999998,1.3932147708333333,2.3704933333333336,4.31999,5.5419,1.53317,8.64562,2.8482333333333334,2.7850816666666667,1.033896,1.033896,7.77971,3.00231,2.654675,2.037725,2.9062133333333335,2.0367333333333333,0.9946066666666667,3.740408333333334,2.6218166666666667,0.5496514285714286,1.66203,3.580862,3.580862,1.14033,2.4475599999999997,2.2550266666666667,3.134245,1.32473,1.8257133333333335,4.8605833333333335,2.7779399999999996,2.624725,1.4903,1.4903,4.21916,5.21225,4.679055,3.04599,3.88185,6.17442,2.514985,3.26512,3.5479000000000003,3.87147,1.09418,3.5424666666666664,2.583225,4.011645,2.18031,4.74537,3.293695,4.50953,3.443225,5.395255,1.0800166666666666,2.2060375,2.07272,3.33983,4.93033,3.509455,3.913,4.90477,4.88136,1.5246975,4.559345,3.767155,4.116775,2.42723,0.80306875,3.80652,4.719835,5.2935,1.18618,3.0912133333333336,3.0106633333333335,2.364316666666667,1.696810980392157,1.696810980392157,1.1413233333333335,2.701686666666667,1.168472857142857,1.31944,4.38902,4.766795,0.5333666666666667,3.82059,3.5159000000000002,4.06684,5.58495,0.4147435,9.642669999999999,5.65485,2.64349,4.5272,4.89194,6.007800714285715,4.94592,6.47954,0.7476636363636363,2.6853433333333334,5.6718,2.769133333333333,1.9775275,2.125,4.78462,5.314316249999999,2.6943375,2.6238766666666664,3.514466666666667,2.34129,5.09505,8.877044999999999,8.6898075,3.6359999999999997,4.929825,3.0284491666666664,2.948245,3.73802,1.797352,2.9091199999999997,3.660845,4.06154,4.80311,4.74825,7.115499999999999,2.867926666666667,4.787385,4.73677,5.0264,5.7969,6.108796666666667,4.0891325,6.52285,3.47382,2.77399,2.78439,6.21645,3.751105,6.2197,2.154595,3.25629,3.22562,6.382,4.17224,5.21575,1.3895,0.85054125,2.761475,0.70406,3.764705,3.410325,3.309,2.8216,2.16045,2.986025,2.55925,3.350744,1.8905740000000002,2.97997875,2.923825,2.4272625,2.6965,3.6688560000000003,1.5188483333333334,3.0493233333333336,5.01955,3.5849333333333333,1.136225,2.737526666666667,3.7800308333333335,3.9348799999999997,1.5904375,5.5709,5.75745,2.035093333333333,2.920533333333333,30.53015708892252,3.3498,1.6500166666666667,3.692633333333333,1.74461,2.62946,3.010666666666667,3.6611,1.87593,2.65905,2.3327975,2.980801,2.7277633333333333,2.501525,1.64286,2.2709599999999996,2.842075,0.3968681818181818,1.046665,2.7540099999999996,1.76157,3.478575,1.5904375,2.269953333333333,26.24590388888889,5.2133,4.41499,3.640605,2.524075,2.4685775,2.7206533333333334,2.23869,4.876025,6.413556,5.5676,1.6006360000000002,2.05652,2.808945,2.660195,3.971285,5.50035,5.1225,4.51938,0.18127765957446806,5.0621,5.007691666666666,3.721395,9.39665,0.9896975,0.9896975,3.0379666666666663,3.444755,5.68765,2.267666666666667,1.1471333333333333,5.1351,1.8685475,4.58998,4.22392,3.45482,4.18548,3.742155,4.669875,3.354215,0.6957833333333334,2.94645,2.0469391666666668,4.194625,7.86796,4.41347,1.5409333333333333,1.5409333333333333,6.620125,4.84237,3.949145,5.7643,1.8042066666666667,5.913433333333334,1.7645866666666665,1.5258200000000002,2.9733199999999997,2.55271,3.64503,2.720306666666667,3.69082,4.2781199999999995,4.32994,5.3068,2.36024,2.0534675,1.73037,3.00325,2.10425,2.12134,1.9419425,4.9530275,1.852705,3.877017619047619,2.3290166666666665,3.3678666666666666,2.683726666666667,1.85625,1.457,0.993609,3.4234666666666667,3.9255999999999998,0.845984,4.51035,1.8269375,5.930849583333333,1.9833525,2.2241825,1.333415,1.4479300000000002,5.938491111111111,1.8013940000000002,2.87058,3.6636,1.20112375,1.906505,4.790698,3.237206666666667,3.2761933333333335,3.5538666666666665,2.939853333333333,2.855176666666667,1.2633325,0.27597,0.27597,0.27597,0.27597,0.27597,4.47956,2.715006666666667,2.310335,3.4891,1.2564016666666666,2.500426666666667,3.200203333333333,2.8963,3.042765,2.84697,1.9115066666666667,2.9422266666666665,3.26423,2.34607,1.8818525,3.4617,2.5814866666666667,2.5835733333333333,5.34335,2.6424499999999997,2.46498,2.4303266666666667,11.225503333333332,5.02365,5.1085,5.15635,4.511915,2.795246666666667,5.0027,3.644415,3.029325,5.600300000000001,4.403165,3.19178,2.2534725,3.52018,5.413462714285714,3.778075,18.118864523809524,1.3546,4.99019,0.81511,1.3135375,3.016925,4.63038,3.85194,3.69277,1.4000416666666666,2.5363,4.31883,2.32314,4.763,3.3017567857142858,2.7045600000000003,1.115275,2.9788200000000002,4.5917,2.3329675,2.3838475,2.14323,19.025289166666667,1.4273799999999999,1.26715,2.2540566666666666,0.3427776923076923,1.8964975,2.857423333333333,1.9235433333333332,2.7620666666666662,2.59555,7.785233333333333,2.0131125,2.646725,2.242695,2.306955,1.541505,3.5387,3.938875,3.1322,3.1129233333333333,2.06891,2.4115087500000003,3.3223183333333335,4.91321,0.44315583333333336,2.594883333333333,2.59922,3.260915,2.3487775,3.5891145,3.39909,1.57151,2.251183333333333,2.25994,1.9558600000000002,2.692676666666667,3.511165,3.202135,0.73603,3.02142,5.2212,4.260535,2.348758,2.348758,3.2302033333333333,4.788495,3.29972,3.05912,2.365935,1.0771454545454544,4.21679,3.565505,5.57425,3.944675,2.2635579999999997,2.2635579999999997,1.95358,3.79092,5.2316,4.19977,4.12039,3.3688333333333333,2.5224433333333334,4.5185,3.47389,4.1094,3.1217400000000004,2.5967266666666666,4.480026,3.489933333333333,2.541653333333333,1.8533233333333332,3.75523,2.738925,1.6885466666666666,3.504385,4.23589,4.93275,2.7743333333333333,4.566665,4.195315,6.875380750000001,3.87309,2.2812799999999998,4.690625,3.201645,7.561485,2.9018800000000002,1.4607766666666666,4.377405,3.301816666666667,4.80114,0.6210764285714285,0.7898141666666666,3.63399,3.840935,2.3260972727272726,4.71463,2.651605,2.638555,8.918068,1.826548,1.440468,4.00497,2.447245,3.71984,5.30065,6.86792,3.00838,2.183406666666667,3.2096933333333335,1.91036,3.637033333333333,8.33174869458128,0.7633571428571428,1.1622025,4.799195,0.5211313333333334,1.6632525,2.3638375,2.62005,2.98955,2.271385,4.280015,2.49248,14.155035,5.14952,2.439665,2.439665,4.426375,0.8156150000000001,5.704323333333333,4.088375,3.99799,6.622903333333333,3.434925,4.749905,1.4366883333333333,2.66693,2.532975,2.75521,2.848405,2.517775,3.00186,3.258365,3.507575,2.85198,2.771145,2.65667,4.66303,4.673735,3.2542266666666664,3.4567,4.977284166666666,4.46839,19.889123095238094,12.749010119047618,3.247772857142857,0.6933483333333333,1.5755,4.517515,3.69692,3.3539041025641025,1.807405,0.9361233333333333,0.6596808333333334,0.6186171428571429,2.02108,1.6804860000000001,5.256583333333333,3.6264333333333334,0.6883072727272728,3.11304,2.3009,2.366245,2.00604,5.99037,1.542778,4.40971,3.199285,2.984033333333333,2.174015,2.53049,2.517236666666667,0.8579327272727273,2.49916,3.0911000000000004,3.6916219999999997,3.106203333333333,4.754658333333333,3.51473,3.02741,2.146575,3.671135,6.6570800000000006,2.17382,2.4580275,2.4889875,1.53219,2.58465,2.3108975,2.59265,0.8716329999999999,1.518385,1.06628125,3.186445,4.50062,6.29285,6.00405,3.01855,2.168665,3.011275,3.571266666666667,7.852643333333333,1.2556666666666667,0.400278125,2.99681,1.9009466666666668,1.7137319999999998,3.7982819999999995,1.36997,2.0490423333333334,4.516041666666666,3.193284,1.1721166666666667,1.8000999999999998,3.9305949999999994,3.386245,4.36775,5.03025,2.471105,5.3131,3.982095,0.8130999999999999,5.0035,4.1788,4.6352037500000005,3.5655666666666668,2.223955,1.270256,1.118775,3.59462,2.70711,3.10324,4.2679,2.94386,2.4741566666666666,2.97341,3.52886,4.87239,2.33033,2.44888,4.320885,5.78245,0.57953,4.227285,1.8162775,3.499775,3.8937000000000004,2.0015775,3.094285,2.208585,2.04805,2.97552,2.626125,1.73227,6.00335,3.5997,1.2591914285714285,6.48692,1.0536833333333333,3.71608,1.6480833333333333,4.475325,4.211265,2.20985,3.17518,3.45035,9.22426,2.759175,3.58767,3.714625,3.5763,1.6580225,7.49851,3.43953,5.0962,1.54658,3.93443,3.03865,1.11223625,2.1144600000000002,4.105285,2.062905,4.06104,4.4880075,4.3596775,4.661355,2.3785975,5.4682,3.91305,3.245896666666667,2.70448,1.695656,4.75548,6.3743,4.826135,4.540665,3.037005,2.3360425,4.22479,3.415845,1.1709454945054945,3.904305,4.725020833333334,4.15655,2.856085,3.3999,0.6684971428571428,0.6684971428571428,5.75125,4.68519,5.65785,2.221715,4.14699,4.668925,0.793239,4.385945,4.87215,5.2335,4.917555,4.492815,1.96659,3.55173,2.196705,4.467195,0.706425,3.94749,4.303725,2.86036,2.923313333333333,4.566965,2.19735,3.135325,60.418838162337664,3.165095,2.4226666666666667,1.546995,3.017385,3.711495,0.89098875,0.96497125,2.3288425,2.3288425,1.2197580000000001,3.016255,2.512065,3.8085695,7.36598,3.10662,1.2254985714285715,1.5000433333333334,2.5305866666666668,3.774819166666667,1.00828,1.86829,1.520572,2.164105,4.476345,4.567085,3.152725,23.613123971861473,4.12592,3.822885,3.056135,1.9790166666666666,3.6184,3.1034,2.4267875,4.99847,1.802788,4.33938,3.404917464285714,6.331532916666667,1.85106,2.481485,2.00003,4.13161,2.29463,2.18936,1.9846566666666667,4.0692450000000004,3.99323,3.41066,4.70905,5.0056,2.7432,3.315505,3.03192,2.54438,2.88783,2.242825,2.266575,3.389805,1.1405216666666667,4.006745,4.705,2.607855,5.1828,4.96112,5.43476,2.1409233333333333,2.234485,2.60924,2.62188,3.82512,3.253955,4.484505,0.6911785714285715,4.276857333333334,2.73954,3.665185,2.193035,1.805086,4.03562,1.304588888888889,2.641165,4.4862,1.161624,3.35634,4.365275,4.80711,6.3216925,2.28925,2.647485,2.8726966666666667,3.7509,2.481473333333333,2.527905333333333,2.5964566666666666,2.1797133333333334,2.3081133333333335,1.30951,2.37705,2.37705,1.9014133333333334,2.0077366666666667,1.8998166666666665,2.438196666666667,4.01739,5.2637,3.67323,1.661265,4.524415,3.378435,3.314665,4.03135,1.84486,1.503835,4.461603333333334,1.90562,5.941171666666667,4.462265,3.38106,2.4472,3.481996875,3.19139,3.031105,3.312365,0.1393838775510204,2.98291,7.616785,1.46761,3.27696,4.936455,1.01443,1.4010999999999998,1.850785,3.964755,3.188735,6.992405,3.586805,3.406535,2.7638,2.535495,3.39593,3.18315,3.962545,3.102605,2.75069,5.05915,4.91475,4.68687,2.6034633333333335,1.80461,3.34841,4.65244,2.67465,3.92445,2.109395,2.8332,4.171945,3.632925,2.43653,4.49667,5.0938,2.654545,4.88449,5.1593,3.375525,4.50261,3.202995,3.093485,9.16947,4.46677,6.15305,5.2665,4.348465,5.948005,3.844455,3.677985,1.296954,6.703,2.29804,5.5883,4.072125,4.484815,3.3220766666666663,1.9756666666666665,2.063196666666667,2.3133266666666668,0.9191819999999999,3.28699,2.9160633333333332,2.944906666666667,2.5016833333333333,3.834435,4.520745,2.465176666666667,0.5215299999999999,4.453895,4.30827,4.92103,5.33935,4.048285,4.622635,5.5432,4.830725,1.4349333333333334,0.9415615384615384,3.261696666666667,5.08155,5.29405,0.48782125,2.748535,2.406773333333333,3.236335,4.254965,4.0184,1.8793975,4.096625,3.219745,4.74881,3.21566,6.1786,4.3176,7.0406200000000005,0.6674741666666667,3.91056,1.013468,2.25245,4.0854,3.4235333333333333,1.2036966666666666,2.2236599999999997,4.27606,4.36377,4.005085,2.1566,2.1579725,3.042505,4.885465,3.90476,4.250885,1.6110900000000001,1.2510494285714286,4.993665,2.51085,7.672905,4.5827,3.410905,2.31724,1.56165,4.261405,4.55011,1.6336000000000002,2.343395,2.6565,2.98291,6.777458333333334,2.9445683333333337,2.9396400000000003,4.314572500000001,3.46137,1.9418199999999999,2.72795,7.63306,5.1457,4.947715,0.51066,4.22105,4.185675,4.890187142857143,4.834075,4.419165,2.97765,3.708735,3.08435,2.738065,3.679791833333333,1.579282,5.835212,4.603785,4.87717,3.659225,3.157405,3.5040708333333335,2.2969475,1.451275,0.96758,2.742885,3.0643,1.0690766666666667,2.5341333333333336,5.3306,5.3862,3.13992,4.455385,15.556527738095237,4.50113,4.3194,4.4508,0.6755075,5.3034,4.7047,5.15315,4.68301,5.60405,2.671755,3.565295,3.246965,1.454278,3.04416,5.74175,3.5694666666666666,1.679422,4.300435,5.252,4.068155,5.37315,4.752565,5.8443,4.574265,2.9855133333333335,4.07728,4.205795,2.45465,3.0848133333333334,2.9159666666666664,1.8967654166666665,5.1191,2.7063085714285715,1.8618633333333332,3.81445,2.832625,4.222855,4.261821666666666,2.45504,3.100255,4.280625,3.470175,4.59997,4.14976,4.376365,4.977825,3.790315,5.3587,2.8587333333333333,4.29346,4.197495,1.477296,4.526815,1.0482166666666666,4.29071,4.023415,1.29241,3.54221,2.095235,6.736039999999999,2.761614380952381,2.761614380952381,2.761614380952381,0.6833916666666666,1.20029,2.20112,3.54947,6.055,3.808007777777778,1.784045,2.3608525,1.7608333333333333,3.55349,2.363375,0.49903461538461535,1.66219,1.9978175,3.419955,1.847215,3.045595,2.32576,2.0500325,3.700465,2.80129,5.2072,3.66193,1.927805,6.50098,1.95054,4.284995,3.77373,6.1804716666666675,1.41164,3.35496,3.930035,3.459105,4.617495,3.06264,2.0813325,3.641705,5.888108333333333,1.9135,3.43182,2.98783,2.1030775,5.01635,5.12635,2.8506433333333336,2.09774,3.803635,6.319439999999999,5.463,3.01128,2.418655,2.49922,2.771655,2.81926,3.74181,1.517185,2.664415,4.410035,0.7925425,4.485915,3.642655,3.74766,4.91161,2.23002,3.98512,1.86128,4.178185,7.5194833333333335,4.40183,3.313715,4.36394,0.9293075,4.49011,2.287505,4.322715,5.4913975,4.47458,4.215625,12.708065000000001,4.933735,3.449035,1.390365,0.6909366666666666,2.75415,3.588145,3.305845,3.400725,2.0161666666666664,3.2142866666666667,2.43518,1.1402716666666668,1.1402716666666668,1.9149433333333334,2.3170933333333332,3.2515533333333333,3.2018400000000002,3.7775,3.1149966666666664,3.3026433333333336,2.8760666666666665,1.4444633333333332,2.36408,2.10163,2.36443,1.4211125,2.4690366666666668,0.8311833333333333,10.147814583333332,0.8311833333333333,3.22893,2.1266066666666665,2.2247600000000003,4.343725,4.24299,4.80005,5.21175,2.7563633333333333,2.721766666666667,3.203502,3.3117133333333335,3.606833333333333,3.679233333333333,2.7281999999999997,3.228756666666667,1.6972266666666667,5.27125,5.773723904761905,3.1365,3.532966666666667,3.1893100000000003,3.28056,3.2463833333333336,1.1933957142857143,3.432066666666667,2.959873333333333,4.392935,5.89775,4.277055,2.7029666666666667,3.4864333333333337,3.5919666666666665,4.137381111111111,4.19077,2.4823066666666667,4.33461,3.513866666666667,3.27992,4.822175,2.96007,4.205175,7.068456666666666,2.6816933333333335,2.3063766666666665,1.7078233333333335,1.47696,4.901856666666667,3.51004,2.7526466666666667,1.9657066666666667,2.09956,4.34235,4.296615,3.69443,3.30232,3.442066666666667,3.6697666666666664,3.6481666666666666,3.9240333333333335,3.07696,0.55562375,3.9498333333333338,2.6676,2.4674333333333336,3.582975,5.40515,4.707085,5.4187,2.665405,4.465391666666667,1.1298116666666667,2.4710633333333334,2.4710633333333334,4.30848,3.6618,3.5953,3.70839,1.74287,3.333855,3.66194,1.085297142857143,3.783245,3.4137457142857146,2.06208,0.38172,4.03704,3.23878,6.448675,3.314875,5.55165,3.122295,3.63746,4.218425,1.7294175,4.036935,4.917255,3.40922,3.512,2.9312199999999997,5.682230000000001,2.10142,1.01675875,1.92009,1.5514266666666667,5.03386,2.2656033333333334,2.25713,1.8224975,4.4949,3.88146,4.93167,0.8169299999999999,4.37339,3.7418,2.5894266666666668,2.58166,2.7874866666666667,3.4301713888888887,4.113953333333333,1.4111566666666666,0.6762631578947369,0.8365714285714285,3.8375,4.117085,5.8018133333333335,4.78381,4.97308,5.43855,1.4911571428571428,3.8937000000000004,2.1095833333333336,0.9641425,5.5948,5.67445,3.01651,4.692315,3.9293,7.064803333333333,4.008966666666667,6.980526666666666,3.576555,2.7780041666666664,6.2331,10.15841983974359,2.83083,0.710191,3.81159,4.07489,2.125165,6.67255,5.01535,4.18589,3.1649,3.1649,4.460845,3.483025,3.958285,5.40325,4.155245761904761,2.611864857142857,1.17833125,5.4402,2.606535,6.204315,3.945805,5.1062,3.67778,2.3413975,4.967865,4.736275,3.4847,4.230445,4.634,29.11263119047619,2.7045,2.4716275,2.1951825,1.591145,2.6297966666666666,1.4032928571428571,3.06513,2.9419500000000003,3.5766333333333336,3.4859333333333336,0.763116923076923,3.5033666666666665,4.774325,3.986485,3.4026666666666667,4.400965,6.227415,4.757325,4.34682,3.864325,4.347851666666667,4.524925,3.529166666666667,1.65692,1.0030583333333334,1.3834366666666666,3.4608666666666665,1.4103266666666665,3.3283799999999997,2.3172266666666665,2.1489966666666667,1.8461166666666669,2.555485,2.14807,1.9684100000000002,2.95976,3.93467,3.50135,4.374565,1.78699,3.487966666666667,2.3772800000000003,4.412555,2.697646666666667,2.46229,2.178995,1.43168,3.96606,6.299623333333333,2.63519,3.421485,3.866225,2.52085,3.135791666666667,3.534333333333333,4.57953,4.58175,0.2849498069498069,0.2849498069498069,5.2655,5.14865,4.56203,2.86948,5.68425,4.97298,0.6359484615384615,4.704495,5.18755,3.78959,6.55545,4.63343,8.14617,15.165346666666666,13.971943846153849,4.32959,4.10494,2.686636666666667,0.6956338461538463,2.7126,4.70451,1.3819433333333333,4.644655,3.6153,3.2390633333333336,2.0086566666666665,2.00315,5.533245,4.2915,9.254448452380952,5.1001,3.959955,7.7593075,3.23141,3.1713400000000003,1.477545,5.4972975,2.1888675,2.5320533333333333,2.66738,0.2973215625,2.79328,4.039115,4.7892025,1.271434,1.3587533333333335,3.921515,0.5874159999999999,0.5874159999999999,3.031999166666667,3.0336366666666668,3.7320666666666664,3.824615,4.24828,5.87945,3.53924,3.96462,2.67937,3.3177633333333336,2.89225,0.8017491666666667,2.7615,2.7099,2.855845,6.1454625,2.99011,7.5636624999999995,2.3594625,4.123485,2.59889,2.297025,2.61805,2.847,1.64126,2.49214,2.4023325,4.06268,2.578025,4.429237499999999,2.900065,3.7389708333333336,3.7389708333333336,2.5995975,2.5995975,8.868791166666666,2.7716133333333333,0.757219,2.48549,2.397,2.4847266666666665,4.429237499999999,2.013,1.925482,1.49264,4.025395,4.925835,1.573955,4.540055,4.033205,6.488438888888889,6.53895,2.1418,4.46298,7.87435,5.41875,4.036305,3.0671,4.699705,3.984352424242424,4.649985,5.510688333333333,8.519927333333333,3.5858,4.0491,1.157685,4.271135,4.921953333333334,5.07005,3.8085241666666665,4.603095,3.58789,2.986663333333333,7.018784999999999,3.501105,1.518618,7.45406,3.616385,3.3441333333333336,4.868955,3.3441333333333336,3.9877,4.802825,5.196,1.082612857142857,4.074392222222222,4.907815,3.769135,1.3899666666666668,1.909235,4.730635,4.261395,2.748305,7.647556666666667,4.522645,4.85656,4.26479,4.9165849999999995,1.596825,4.51156,2.856155,3.92845,4.45224,5.2803,4.925115,2.800495,4.559135,4.989565,2.1028303333333334,1.7507625,3.970466666666667,3.3599,3.1105133333333335,3.2029033333333334,4.0699,3.131186666666667,4.47092,3.257005,3.40949,2.70867,1.76673,3.8110999999999997,2.53668,2.920485,2.876895,2.74719,0.706425,2.2843225,1.7100799999999998,3.30825,2.00542,3.8894909999999996,3.489155,1.655846,3.1273775,5.16455,0.79581,1.30783,3.964245,3.82618,3.37991,1.955015,2.49197,3.342755,2.3295416666666666,1.5663966666666667,2.95004,1.98282,1.154688,1.2897675,6.05469,3.433145,2.57573,2.63999,2.417835,3.49111,0.79485625,0.3430207142857143,0.9290728571428571,5.10245,1.942429142857143,4.411455,2.03321,2.208315285714286,3.420061857142857,1.2117465714285713,1.1410352857142858,0.723836,0.5382385714285715,2.951665833333333,6.43505,3.05184,4.250775,0.33593214285714285,3.63101,19.60275938095238,2.95291,6.861178458624709,0.98009875,0.98009875,0.98009875,0.98009875,5.9006875,3.89929,3.14115,2.3206366666666667,3.068595,3.81986,4.363715,4.0255,3.384,4.810055,5.10555,4.30262,3.637842666666667,4.205615,4.907875,3.950085,5.22505,3.50158,4.456685,2.9700366666666667,3.759745,3.213805,4.63643,4.420595,4.420555,3.3382,2.54435,2.3366866666666666,4.94863,1.2135114285714286,3.494825,3.0624833333333332,3.723927333333333,4.3596775,4.06796,2.88105,2.65491,5.04185,3.169635,3.075735,5.15345,4.910465,3.052155,4.051865,1.784626,1.784626,2.02384,4.606445,3.853235,6.353202,4.79651,4.005335,6.23615,4.52291,2.0418225,9.2905,4.391705,6.8547675,4.268615,2.9003333333333337,4.477455,0.26504793103448276,0.9475625,4.086791333333333,3.705755,4.9976,3.2824000000000004,6.07617,5.0009,0.5480857142857143,3.488005,0.616997,1.6449399999999998,3.0938,2.246955,4.67255,3.44051,3.250015,3.43037,3.1556,3.40868,3.34317,3.46516,4.158235,2.518785,1.6449399999999998,2.403755,1.975935,3.53061,2.112145,4.128965,3.360895,1.6580225,4.335565,3.198445,1.5702283333333333,4.961485,4.87745,3.900585,2.8558833333333333,3.2188166666666667,4.42414,1.92623,1.358014,2.4546966666666665,2.765613333333333,2.4526499999999998,2.53768,5.03885,3.326,4.8512175,4.049503571428572,5.0654,4.266965,1.746658,5.31415,4.629545,5.15055,4.01435,6.87838,1.8286225,4.81395,3.85587,2.823395,2.26762,1.6798333333333335,3.76725,4.469885,2.16968,2.2061166666666665,3.4120375000000003,3.4120375000000003,2.6409133333333332,3.5239999999999996,3.427755,3.83107,3.357165,0.7343661538461539,3.106895,4.084635,4.617553888888889,2.86796,2.843195,1.6900275,2.613675,3.441255,2.188725,4.3218,4.643225,4.48248,2.2750766666666666,1.005309090909091,6.37287,3.47903,3.4697999999999998,3.3989333333333334,1.818572,30.477663380952382,4.760435,3.0345,4.444785,4.112145,0.8685416666666667,7.7487575,2.476565,5.7332,1.6516133333333334,4.648215,5.741883333333333,3.574155,3.185255,2.379295,4.095566666666667,5.40175,2.1911175,2.7630733333333333,3.615425,3.44222,2.459175,6.3484,1.98464,3.49664,1.2662125,4.3425,3.325555,4.24888,4.731565,3.133755,2.5931133333333336,4.25745,4.574785,3.44508,3.44508,6.2877,1.563935,4.277925,7.318875,3.034975,4.319565,3.416045,2.41185,3.26876,3.94612,1.2588425,2.434855,3.97411,4.447725,5.5329,4.404915,2.153045,9.686433333333333,3.536085,3.625905,1.8370285714285715,3.516625,2.17361,2.5486366666666664,2.14544375,1.2374666666666667,2.7891266666666668,0.9077571428571429,0.9107385714285714,0.9107385714285714,0.9107385714285714,2.0456533333333335,0.53652375,3.70511,1.1332533333333334,2.2807033333333333,1.1249166666666668,1.71122,2.62162,2.1958033333333336,0.70567375,1.6171,1.6226033333333334,2.251673333333333,1.6332719999999998,1.6332719999999998,1.5809666666666666,2.2699233333333333,0.8675,1.85258,1.5199366666666665,1.31339,2.879815,2.72832,6.0131,2.106185,3.989635,17.847789416666664,6.4878800000000005,3.69899,3.52115,3.2500033333333334,2.8956199999999996,2.830416666666667,3.372,0.7714808333333334,1.04881,1.04881,0.6340875,2.53672,3.916065,4.305235,1.7008199999999998,5.3574,3.72533,2.457565,3.713695,4.822665,3.88153,4.3332,3.5559999999999996,3.09646,3.352135,5.73015,3.3599,4.792915,0.493729,0.493729,2.087905,3.699435,5.30315,3.983915,4.418955,5.0738,7.008106,8.08858,3.80019,2.64695,5.4944,3.35148,2.524966666666667,2.22315,2.977445,1.3185966666666666,3.649085,2.32882,1.9982775,3.30016,4.96494,2.061935,5.510688333333333,1.783345,3.4696,3.60338,0.9784357142857143,3.514,2.8637333333333337,4.963565,1.1244033333333332,1.7495925,2.538,2.221425,1.65141,2.551975,2.2541125,2.1822775,4.77628,4.24609,3.50183,1.80909,1.4243733333333333,3.8691,1.9380666666666666,2.5125,4.427405,5.3971,2.164839166666667,2.76277,3.328515,3.372925,2.355425,5.081,4.160065,3.05483,1.53195,4.22144,3.003275,2.983093333333333,2.45343,4.59056,5.1185,5.14455,2.5376,2.7928833333333336,3.14551,3.637033333333333,1.9176333333333335,1.6519059999999999,5.55045,3.67,2.2953038181818184,3.360666666666667,3.2011866666666666,2.344246666666667,3.3766,3.26031,3.855566666666667,5.27215,4.14664,3.1605633333333336,5.7128,3.76144,2.44809,3.30489,3.92215,4.44009,6.0313894999999995,1.8877859999999997,3.96177,3.445675,5.085,3.44013,0.5726475,2.55952,2.255005,3.510725,2.84368,2.07638,2.962935,0.780053,2.85045,4.668665,2.442275,4.19795,2.8207833333333334,3.97139,1.876795,4.57915,4.060315,2.0552,4.171645,7.453004999999999,4.596035,4.38166,4.47408,7.1934375,4.520865,4.359315,2.0921925,4.90475,3.813865,1.9610233333333333,1.786025,3.6672999999999996,0.9654628571428571,2.5780766666666666,2.9014133333333336,2.5615133333333335,3.2944166666666668,1.7847899999999999,3.180985,1.8235433333333333,6.1098,6.9279425,0.97870375,1.7599433333333332,2.43853,2.6943933333333336,1.9928633333333332,1.030635,5.4474333333333345,2.0669025,2.5705766666666667,3.8652333333333337,2.9876799999999997,3.2391633333333334,3.104875,2.1265266666666665,3.0352766666666664,2.20395,4.239715,4.315235,3.84688,3.4852000000000003,3.366433333333333,1.06219,1.83244,2.290795,2.229573333333333,2.53469,1.111845,2.59729,2.8024,4.147505,2.06087,3.287585,4.058745,5.8287,3.750645,0.5790725,1.9086919999999998,2.7134966666666664,3.8437666666666668,0.8190472727272727,3.0277366666666663,3.373786,3.6702666666666666,2.93233,3.0757258333333333,3.597245,3.8059666666666665,2.860133333333333,2.38825,5.8917,5.33655,5.73405,5.45355,6.1057,1.7358200000000001,3.676305,3.6462333333333334,3.542533333333333,3.04557,2.6980166666666663,3.9265666666666665,3.5656666666666665,3.2139666666666664,14.377223333333333,4.220395,1.1143100000000001,3.6077999999999997,1.858508,3.550133333333333,3.1808266666666665,2.628553333333333,5.6841,6.1940349999999995,2.43121,0.950217,4.530445,3.1779933333333332,3.025065,4.734465,4.881305,6.16815,5.22815,3.721015,2.000995,6.35017,1.157685,6.7164525,4.885945,2.784603333333333,4.768775,7.2342933333333335,5.7716,2.36332,1.4580583333333335,2.09652,8.397903333333334,1.5904375,2.9516899999999997,2.5320416666666663,4.314358333333334,5.9662,4.058535,6.56925,3.204315,5.1524,3.64208,8.92081,5.4802,5.81435,2.34873,2.675325,11.700448333333332,3.262685,3.380265,2.3046166666666665,1.6794799999999999,2.9663633333333332,2.214306666666667,0.63607875,1.036148,1.0412242857142857,4.14626,6.83457,2.9375546666666668,1.3758866666666665,5.61785,4.378545,0.571909,4.12787,3.476635,4.21614,4.388435,4.49634,2.626656666666667,4.046345,9.744045,1.6859825,3.613315,3.35065,4.369185,3.564185,0.85505,3.517466666666667,3.8407,1.6213966666666666,2.473316666666667,2.2025,2.41567,3.0701433333333337,2.1039033333333332,2.20183,6.520353571428571,4.77497,4.610075,4.16503,1.4692,2.3067675,4.85422,5.03395,4.9506,4.749715,4.710485,4.797265,1.784626,3.76646,7.30817,1.4072216666666666,1.7068433333333333,2.584163333333333,3.0545500000000003,2.847913333333333,4.88081775,0.8365714285714285,2.32701,3.001835,4.777655,4.338315,2.3513033333333335,2.7436966666666667,2.13476,0.544040625,2.0177525,2.73206,7.502215,4.213655,4.618035,0.94937,2.6119166666666667,9.597433833333334,11.70143,3.46625,1.24123125,3.381805,3.571195,2.8252400000000004,5.327068,5.0198,4.275335,2.196205,4.0714,2.1807733333333332,2.4668533333333333,0.7847763636363637,0.461192,2.461775,3.49487,2.033276,3.295255,3.4664,4.064105,4.6884,1.4165839999999998,3.5720666666666667,1.8779249999999998,1.8779249999999998,2.158165,2.76436,2.79939,2.593636666666667,2.8730266666666666,3.4629666666666665,3.5461666666666667,4.30934,4.486715,4.513165,3.926395,4.901575,4.413145,4.155,8.115140833333333,2.1729625,2.2073233333333335,3.06202,0.8425950000000001,0.7196816666666667,3.618215,2.20206,5.61235,2.9215533333333332,3.2122233333333337,1.9189859999999999,1.333725,4.22535,4.076435,4.063685,1.6773,1.2415666666666667,2.542333333333333,2.055006666666667,2.47838,1.0247371428571428,1.0247371428571428,2.7116233333333333,4.120605,2.76774,3.054095,3.39214,1.96442,20.47611618181818,3.62064,5.900532500000001,4.228775,3.50895,3.77982,4.23688,5.56995,6.658885000000001,0.8995966666666666,0.8995966666666666,0.8995966666666666,2.6228533333333335,1.7484428571428572,3.7138666666666666,4.39564,4.08109,3.35339,4.495775,4.24769,0.8750911111111112,2.49279,2.7834133333333333,5.942038333333333,3.341405,4.089343333333333,4.606285,2.0015775,1.8631933333333333,2.27228,0.4971525,0.8138,1.69393,1.97656,2.50834,13.288986666666666,2.508696666666667,5.3674,0.7414785714285713,10.691585,5.54395,3.45523,4.79363,2.850175,5.49795,2.850175,3.116428,3.316265,3.6515,3.851265,3.676725,4.73167,3.79566,6.0907,7.041600000000001,1.64703,3.7173119999999997,2.60182,28.058145068854568,1.8991820000000001,6.25585,5.616493999999999,3.88337,3.711095,4.470465,2.667335,2.73743,2.12893,6.33385,6.7089,5.0156,4.510235,4.490815,2.195855,1.95864,4.210095,0.32137923076923075,0.32137923076923075,0.32137923076923075,0.32137923076923075,3.879965,3.19847,1.0273966666666667,1.7248299999999999,1.1787222222222222,4.75774,2.3746266666666664,2.2691175,7.37664,3.3297233333333334,0.1660562068965517,20.863429666666665,4.518936666666667,1.731502,1.3485165714285714,2.2713,2.0267399999999998,2.551025,4.55901,2.904295,4.63189,4.10215,2.3390766666666667,7.7254425,2.585745,1.98264,4.17175,6.0814,7.9252183333333335,4.3135,0.2916707317073171,3.37262,4.242095,3.20341,2.4845825,3.0451099999999998,1.5807216666666666,1.5807216666666666,3.843945,5.5646175,11.925561666666667,9.4209,0.6835444444444445,2.53444,4.19228,3.112595,4.539575,5.60615,1.996582,1.996582,4.09869,4.522575,2.799523333333333,3.67213,5.14505,4.899755,5.584235,2.05024,4.562285,4.086555,2.73364,2.9931066666666664,3.1481166666666667,5.28775,4.777665,5.59605,4.32788,4.427125,4.08499,4.69545,4.61909,5.85935,2.6842633333333334,3.1946433333333335,1.089676,4.28388,4.433345,4.442265,1.7829339999999998,2.10966,1.8087533333333334,3.242086666666667,2.3709166666666666,4.423163333333333,1.7449333333333332,2.66085,3.28492,2.96453,2.5701666666666667,2.8357500000000004,4.289866666666667,3.472933333333333,3.8836,4.1975766666666665,2.0780533333333335,2.7362800000000003,2.52167,5.2291,3.0414666666666665,41.78531866666667,2.1769994545454545,2.1769994545454545,2.41722,2.817463333333333,2.1870066666666665,1.7001099999999998,2.8611466666666665,1.7943866666666668,0.7507107692307693,4.68985,6.947150000000001,4.280625,4.0719,5.67865,1.9249833333333333,4.69574,1.8041019999999999,5.15305,5.22575,5.76135,4.651775,1.65692,4.04,4.990145,4.75753,5.7331,5.2774,4.092315,3.3108833333333334,3.1500033333333337,2.2325025,1.788955,4.44631,1.9979433333333334,3.5676550000000002,3.5676550000000002,2.1356266666666666,1.4412099999999999,1.9330633333333334,2.3243833333333335,2.6993500000000004,5.05292,3.190023333333333,1.1014233333333332,1.1014233333333332,2.0563566666666664,2.5031333333333334,2.43144,2.4781233333333335,2.4645366666666666,2.3169633333333333,2.0180433333333334,2.03675925,2.8221763928571426,1.5324183928571427,0.7854171428571428,59.80052452976191,2.282268,3.083073333333333,2.46421,0.879564,4.105296,1.56304,1.56304,2.21792,2.9280233333333334,0.74700125,2.4414333333333333,5.390633333333334,4.0742,2.67588,2.67699,2.1252299999999997,2.494276,0.303045,2.718306666666667,0.754206,2.426093333333333,1.139294,1.139294,2.637916666666667,2.50008,2.62133,2.2111026666666667,2.4964566666666665,2.2111026666666667,2.0471766666666666,3.05501,3.042503333333333,1.2796239999999999,1.2796239999999999,2.890663333333333,1.3891366666666667,2.9726233333333334,1.91284,4.98389,4.56236,13.312597666666665,7.128805,3.711795,3.56,5.11075,5.2733,5.5125,2.717995,4.17321,3.98269,2.6365766666666666,4.767165,3.14917,2.6223233333333336,3.99623,2.3648433333333334,1.0909342857142856,4.139780833333334,2.9653333333333336,3.65181,0.7685142857142857,2.694645,3.80958,4.11262,4.17032,6.5207,2.32314,2.07366,3.906025,4.38806,2.297785,2.892901666666667,1.85817,2.0830106666666666,0.875714,5.68435,4.909185,4.28127,3.860315,3.2110833333333333,4.35318,5.24035,3.2128533333333333,1.5938233333333331,0.5629213333333334,15.214518333333334,0.5062145454545455,0.5062145454545455,0.5062145454545455,3.0988066666666665,4.188433333333333,0.5062145454545455,7.808161666666667,4.705826666666667,0.6980120000000001,0.6980120000000001,3.4942333333333333,3.35027,2.787105,4.588585,4.090365,4.1379185,2.15333225,4.787606666666666,4.31307,3.6183352976190477,4.6257,2.986541,2.451605,2.238675,2.77765,1.46182,3.3510833333333334,3.04269,2.53085,2.348985,1.89343,1.80415,1.536715,2.42596,1.189911111111111,2.7351,0.664885,5.3109,1.6251975,0.7424833333333334,2.804025,8.297768333333334,2.577685,2.2262779999999998,2.98869,7.64131,2.688595,4.68067,3.642885,6.9402,3.937185,4.02114,4.25094,5.4134,3.0803366666666663,4.5355083333333335,1.311402857142857,4.21486,2.305563333333333,2.4736233333333333,2.189185,2.578155,2.21916,1.21188125,5.4265,0.9468363636363637,4.988485,5.24875,5.21785,5.5507,4.196933333333333,2.6448,1.856548,3.0545633333333337,3.1188466666666668,2.385935,3.6866333333333334,2.73805,4.85838,1.8464639999999999,40.80170944444444,4.788425,2.25454,2.959156666666667,3.238863333333333,1.4458533333333332,5.607755000000001,4.42235,2.7860266666666664,2.756543333333333,2.0604999999999998,1.5023975,5.48175,0.8555214285714285,5.6027314285714285,1.4050200000000002,3.571066666666667,3.5714,3.0046466666666665,1.43495,5.474740000000001,1.702588,1.702588,2.6136233333333334,2.7909595833333336,3.5972000000000004,3.5041666666666664,1.3163133333333332,3.09285,2.65809,6.5789225,3.1056500000000002,3.6722533333333334,0.9864783333333333,1.35043,3.26955,0.862396,6.049390000000001,3.6268666666666665,2.91893,3.9362333333333335,2.91102,2.73053,3.3308066666666662,1.6208233333333333,2.417835,2.75008,3.3459,2.66682,3.7543333333333333,2.66903,0.5832106666666667,9.54683314102564,2.7252333333333336,5.3501,4.99237,2.8121899999999997,2.824756666666667,1.278825,1.8374633333333332,2.112065,1.278825,3.06506,0.43861625,0.43861625,0.9197425,0.9197425,0.8086425,0.8086425,2.40643,2.916445,3.104985,1.31522,1.638695,3.732085,2.502965,5.5463,4.57407,2.29194,4.448795,2.314425,4.7049450427350425,1.2860275,1.2860275,2.552855,1.880004,3.986045,1.944475,4.29059,1.4000416666666666,2.3221875,0.597126923076923,1.3915028571428572,2.21096,2.4622525,2.380765,1.7602925,4.89986,4.727705,2.910963333333333,3.122246666666667,1.6760766666666667,0.7513916666666667,2.0990866666666665,3.930225,2.3058333333333336,4.86288,5.31285,5.4323,3.91237,7.5840499999999995,1.80175,6.5738,1.992545,4.500925,4.609575,6.08065,2.56615,2.280575,1.671515,1.961232,1.961232,2.4837925,2.4837925,4.54026,5.5867,0.89085,4.38146,4.035785,3.31661,2.9798066666666667,1.4746975,2.7123000000000004,4.037905,4.0671,1.90791,6.5496,5.3801,1.8312433333333333,1.24585,3.68242,4.534786666666666,3.89175,3.30502,3.769215,0.69931,2.7236466666666668,3.31833,2.674493333333333,2.970753333333333,1.9975566666666669,3.419366666666667,1.4511571428571428,1.4511571428571428,1.4511571428571428,2.86213,3.20325,2.2047866666666667,3.5996093095238093,2.46081,1.322404285714286,3.4138,3.3361666666666667,1.3170442857142857,3.153116666666667,2.7624166666666667,1.4032985714285715,3.3847666666666663,2.911823333333333,2.8388033333333333,3.036706666666667,3.0122400000000003,2.07274,3.4476333333333335,5.35982,4.616875,0.9566169999999999,1.682696,0.704948,3.5788666666666664,9.04974,3.2921666666666667,3.03375,2.810313333333333,3.969498333333333,1.741955,8.152388333333334,7.2889,2.9954633333333334,2.774584857142857,4.63756,5.5972,1.587496,1.499262,1.236922,1.934525,11.732696666666666,2.881463333333333,3.14691,3.24304,3.696025,2.3269266666666666,1.22284375,4.57385,1.2098366666666667,3.5388315384615385,3.43459,3.3575,3.1952166666666666,3.809705,5.4675,1.2688983333333332,2.0546725,2.462094,2.462094,3.668995,6.04565,7.074565,4.284715,3.47095,4.84401,1.7299075,2.2199708333333334,4.732915,4.44547,3.66325,1.5688216666666666,2.881206666666667,3.38941,4.140355,2.3622125,3.90904,3.361885,3.09943,3.88677,4.60459,4.38689,5.52215,3.381066666666667,2.469586666666667,4.245325,2.798265,3.848485,1.96251,2.846335,2.54793,4.90812,2.499835,3.18827125,1.657505,3.367505,3.99513,2.09005,1.956615,0.8452316666666667,0.8452316666666667,1.668215,4.016019696969697,4.32012,2.7917799999999997,4.82897,3.338925833333333,2.4034245714285714,1.0824875,2.7031,1.6562575,4.24988,3.9593,0.94554125,1.7142225,3.960435,2.8295725000000003,1.530575,1.5635733333333333,4.889661428571429,1.4037766666666667,2.571395,3.07327,2.67973,2.43456,3.046288,2.07755,0.97413,2.823625,2.871175,3.23353,1.4263166666666667,1.5436633333333332,1.75115,4.857575,2.04372,4.335455,4.355465,4.466855,5.71645,6.1243,4.04752,5.6301950000000005,4.374322857142857,0.7812027272727273,2.853095,4.953585,4.2843,0.45848636363636364,0.953744,2.639845,4.265945,5.0379,5.10095,3.285662857142857,2.79409,5.256,1.8883079999999999,2.47205,4.62369,3.9675400000000005,4.250115,3.99159,4.254455,5.0868,2.847565,5.5987849999999995,0.9758279999999999,4.03073,2.76526,4.4627,4.42492,4.240835,2.09442,2.610755,2.75247,2.1948666666666665,5.00585,3.626145,1.4527428571428571,3.15571,4.174435,1.446936,5.6747700000000005,1.8447099999999998,2.3748366666666665,13.806806163067925,3.4035666666666664,1.4442466666666667,1.5045650000000002,2.046933333333333,5.744845,1.6110900000000001,4.341360666666667,0.7329353846153845,3.3790666666666667,3.841615,7.49757,2.3344533333333333,3.02523,3.02523,5.4054,4.7653,3.71029,3.112375,5.13765,5.43025,2.274325,3.2954000000000003,5.02115,1.2063833333333334,3.0812166666666667,4.792775,4.24333,3.755535,2.501656666666667,3.90655,4.0418,6.701716666666666,6.0254025,0.8788259999999999,4.01232,3.18148,3.3615999999999997,4.153905,4.078115,3.738205,1.683608,4.331835,2.516605,3.347875,4.03832,4.46555,4.68133,1.0312314285714286,2.913676666666667,8.871862666666667,1.5874183333333332,2.1049567532467535,2.157915,3.659085,3.41166,3.10895,0.6949145454545455,2.29301,1.6346925,2.236365,4.445615,5.365260666666666,2.937604,9.13454,2.5683833333333332,2.8416633333333334,1.12198,4.846475,5.355,2.217705,5.600300000000001,3.500265,3.082385,5.5639,4.657945,5.0347,2.06161,1.3450575,1.3450575,2.707425,3.76131,4.849265,1.537805,5.6301000000000005,1.51374,4.373735,1.5319,8.620859166666667,4.115825,2.597555,5.2478,5.2191,3.8088,1.1144616666666667,2.1168575,3.5664,3.1728,3.5691666666666664,3.5493666666666663,3.5756,2.735935,3.13863,3.04134,1.5763675,2.41163,1.82083,2.7504666666666666,1.92751,5.217579166666667,3.2986166666666663,1.6667133333333333,3.2331466666666664,3.204145,4.459555,5.8631,6.01435,2.906675,3.401835,3.598795,2.888425,2.581255,1.18611,0.906786,6.4809,4.140885,3.05273,5.37595,5.99325,2.74808,3.407166666666667,6.4446,2.34987,0.5930722222222222,5.67985,4.18318,4.066355,3.4050999999999996,1.3580057142857143,5.42735,1.261164,5.1801,0.98192625,1.6048099999999998,3.2801666666666667,2.3802333333333334,2.4445455714285713,4.19503,5.5816,5.281071666666667,5.281071666666667,4.2446025,4.2446025,4.80244,2.8386566666666666,4.587085,1.0777375,5.79415,4.61813,3.6397333333333335,4.593625,3.61311,4.93006,1.8810825,4.695165,3.120754,3.31871,4.05204,2.57401,4.44437,5.28265,3.366185,3.32528,5.0543,3.595695,4.533275,3.20105,3.2697966666666667,5.89455,3.891835,2.7685099999999996,6.396369999999999,1.4926533333333334,2.191665,4.400025,4.536555,5.78625,4.25389,1.9344925000000002,1.9344925000000002,13.939624539682539,5.03612,5.18245,4.124375,3.060116153846154,4.813555,4.632655,2.9552266666666664,3.4221333333333335,3.803355,4.076966666666666,3.8210333333333337,5.185,2.0313,8.347343333333333,2.38255,2.2432975,5.8243,2.483345,5.4111,4.39391,4.71382,0.8585311111111111,3.42859,4.20538,1.099364,3.06319,4.031301666666667,1.45534,2.440636666666667,3.05789,2.5769266666666666,2.943326666666667,3.212203333333333,2.3577666666666666,0.5926342857142857,3.3368333333333333,2.8035666666666668,2.76594,3.1809733333333337,1.87738,3.03209,6.94073,4.271975,2.6152466666666667,2.052426666666667,2.5699133333333335,3.403065,2.567,3.581613,19.1970275,5.4277,3.3854130000000002,5.92755,3.75482,5.408603333333334,1.5855833333333333,5.84475,1.6022666666666667,4.472025,3.68619,5.23735,4.942945,1.0081030526315788,4.986115,2.953275,5.25975,3.03336,4.37186,5.3912,2.753115,2.106106666666667,1.50239,2.2853925,4.259065,4.696,2.167725,1.46903,3.09441,4.293025,3.3486666666666665,6.15765,2.7217,4.675515,4.03455,3.43029,4.87938,3.78319,4.371945,4.758245,4.2248,2.9665033333333333,2.9665033333333333,5.091424444444445,2.1071133333333334,2.8614599999999997,3.820605,1.699328,7.15176,3.60608,4.99629,4.3106,4.32327,1.9791340000000002,4.527355,5.25615,4.36516,2.109685,3.813285,3.181445,1.4706775,1.964695,1.15785,0.6647833333333334,1.78957,1.16658,4.384905,1.0453000000000001,2.8117633333333334,1.5722533333333333,2.0859575,1.0655316666666665,1.9987175,2.3967975,1.6311825,3.4601666666666664,2.4842366666666664,4.142816666666667,1.6026733333333334,2.522475,3.3769666666666667,3.14087,2.37993,4.2790725,4.42367,5.308324166666667,21.401107,2.855183333333333,2.1901125,0.63051,0.636385,4.148210833333334,1.929692,4.132025,4.70043,7.7199005,4.18415,3.790055,3.729275,3.4255333333333335,2.9375,3.275653333333333,3.0734033333333333,3.02632,5.9477,4.230475,0.9726950000000001,1.184755,5.2506,3.3331033333333333,2.7131933333333333,2.201956666666667,3.01611,6.1469,4.686555,2.934,1.13605,3.61935,5.27775,9.234016666666665,5.841714583333333,4.90722,4.54284,5.4083,4.459885,4.329075,4.61067,4.564875,5.2127,1.973705,6.2019,1.5815714285714286,5.31475,0.7183133333333332,4.707215,5.40995,5.70475,6.1108,4.67551,5.94465,5.6487,6.0929424999999995,2.0177666666666667,1.7066714285714286,5.6747,3.65374,6.843368333333334,5.06955,5.290470833333334,4.97202,6.11915,1.463342857142857,4.48942,5.80615,4.126566666666666,4.942745,5.61935,2.599025,4.06991,4.88974,4.851365,0.956925,1.7233333333333334,1.390244,4.98934,3.88909,4.7633,2.8882333333333334,3.2428133333333338,1.73763,2.055963333333333,0.3549716666666667,3.5766333333333336,1.7044339999999998,2.161688333333333,3.3510333333333335,2.2820133333333334,3.3222733333333334,2.4879525,2.7405,10.49126,3.6131666666666664,1.8175730769230771,4.64576,0.8625781818181818,4.6678774999999995,1.0825125,2.074475,2.0157475,1.05740625,5.496476333333333,1.1674470833333332,1.1674470833333332,1.1674470833333332,2.9826533333333334,1.705886,5.1245,2.89055,2.1588025,1.483065,2.0289075,1.5263375,1.8335139999999999,5.8208075,0.8938255555555555,4.39222,4.140455,3.3958333333333335,1.0645900000000001,2.158397,2.13283,2.13283,1.59947,3.682265,4.470035,4.88369,5.5062,4.509685,5.3363,2.9370166666666666,2.06634,3.846915,5.2491,3.68685,4.383945,1.03905125,3.9213497916666666,5.1731,1.887345,4.538745,2.9479133333333336,4.36199,5.43385,2.98187,5.5659,6.1861,4.76534,4.913045,4.089705,3.102375,7.69625,4.079785,6.992276666666666,3.44208,3.04001,4.894105,2.644953333333333,2.955945,5.1498,2.89383,3.01053,3.77163,1.3735833333333334,11.142902500000002,4.66757,3.14554,16.296252222222222,4.677285,1.7733233333333331,3.0850500000000003,2.762475,3.388755,4.69067,2.7672420833333335,3.6734,4.576925,2.799355,3.891285,6.13943,1.28645,2.4572475,4.20567,4.894635,5.17495,2.016715,0.6396806666666667,4.872765,4.084085,2.1092925,1.2138416666666667,4.785195,4.979395,1.1014255555555554,3.50428,13.811063333333333,1.3642152857142857,0.4142742857142857,3.864133333333333,4.377955,1.09691,4.799195,3.86936,5.99519,1.353815,4.424375,4.23509,3.164585,4.685375,4.95995,6.0845,8.128045,3.534055,4.0241,3.52318,16.818630625,3.35602,2.6444,1.4441675,2.663425,1.296215,2.37723125,1.7523625,1.9353775,1.877325,2.1780875,2.520475,2.4571125,2.4643625,6.05445,3.744885,4.434645,3.703355,6.09122,3.0354799999999997,4.984365,3.411633333333333,1.1422225,3.46772,1.9555525,2.440798666666667,5.3262,4.87287,5.01845,5.4545,2.5812133333333334,3.140773333333333,2.36687,3.60362,3.55092,2.250395,1.75186,3.8121666666666667,5.3172,4.94074,2.2324966666666666,11.84296,0.6627506666666666,2.6542,5.56405,2.6147479999999996,1.147696,2.5415,7.504701666666667,7.127083333333333,4.98311,4.06572,4.04582,2.0889025,2.66899,2.995608,2.07224,4.3164283333333335,3.556545,4.29699,0.5720366666666667,5.82395,3.2963566666666666,3.559533333333333,3.610466666666667,6.28095,9.19704025,4.279453999999999,1.15542625,2.2544975,2.16233,3.743805,2.551895,4.03975,5.05305,3.4835,2.868126666666667,4.11306,3.931235,3.54727,3.6153333333333335,2.842373333333333,3.873615,5.617,5.79935,3.3281166666666664,2.0951525,2.18044,28.42647314102564,1.4774375,1.4774375,2.01064,4.20817,4.04729,4.708435,3.59011,3.493615,4.181835,2.814416666666667,4.018925,2.814416666666667,3.218835,1.7984600000000002,1.4095133333333332,5.6507,2.33636,4.48462,3.012995,3.088625,6.560003333333334,1.9806366666666666,5.15645,5.41555,3.44915,3.896295,5.05055,1.9782060000000001,4.888785,3.5017750000000003,6.774635,5.765211666666666,2.374735,4.178735,5.3451,2.026715,3.1737699999999998,3.7721666666666667,0.5711378571428571,3.2643166666666663,9.611836666666667,4.68426,5.0703,5.28855,3.3155633333333334,3.120315,1.33282,4.33069,5.34835,3.303335,2.55455,5.00405,4.131755,4.185375,4.345755,2.29192,2.29192,3.85133,3.10277,2.8576918181818183,1.948365,4.584835,3.84041,1.384982857142857,3.853625,4.66263,2.9592733333333334,6.917367499999999,7.25014,1.48774,4.134015,4.975375,6.823493,0.894514,7.396556666666667,3.9124749999999997,0.6812536363636363,5.1206,5.32075,5.3057,4.86202,4.533835,4.62797,4.732425,4.05178,4.055005,4.884965,4.5855,5.07565,5.02805,3.62188,3.52013,4.372545,3.035815,0.899699,4.363165,2.69095,1.81675,4.69724,5.31715,5.49065,1.024172857142857,5.05224,3.14035,2.4555666666666665,2.2350325,1.2382966666666666,11.536245833333332,3.3580666666666663,3.5525333333333333,3.27467,3.671010952380952,5.977969999999999,6.381138333333334,2.478396666666667,2.2397966666666664,2.20974,2.20974,2.20974,1.4216233333333335,3.917985,3.8671,3.533415,4.557425,7.797385,4.34846,1.057994,2.2629,3.58653,2.90652,1.8463640000000001,4.412225,2.774365,1.4742333333333333,3.002993333333333,7.023042857142857,7.8102675,4.475575,3.84775,3.1711899999999997,5.35775,4.577225,5.222213333333333,1.94416,1.94416,4.96664,3.685555,2.6649853333333335,2.6649853333333335,3.7963,1.0583042857142857,4.9407,3.73225,4.03114,4.43783,5.0585,3.3924333333333334,1.0263271428571428,4.28671,5.4782,4.57811,4.79554,5.20295,5.09155,4.60554,1.8609175,1.719375,3.370785,4.18745,3.069845,4.09962,2.132285,3.970495,5.3269,2.762955,5.2124,8.086034999999999,2.51856,3.0878633333333334,4.106109523809524,4.7033725,1.86411,2.0724683333333336,1.0723483333333335,2.0724683333333336,1.9955566666666666,1.9955566666666666,1.47242,5.14735,3.07295,3.53032,2.230395,3.67306,1.5347883333333332,5.68825,2.787025,1.5729,2.66227,5.42305,4.334535,6.093356,5.017,1.425388,0.7822433333333333,3.46529,6.11858,2.3360766666666666,3.479885,3.59012,3.59012,2.334855,3.29544,3.03579,1.4612835714285715,3.0956733333333335,3.857405,3.58306,4.2432,3.8676525,1.50522,3.48599,5.4413,4.888525,5.4381,4.12393,1.7770475,2.11887,1.2747966666666668,2.516975,3.42038,2.185895,4.030675,3.2522366666666667,2.9664,4.03648,5.13605,3.30735,1.011112,1.8137999999999999,1.198675,1.1248222222222222,4.99935,4.17604,1.089676,0.19598217391304348,0.19598217391304348,0.19598217391304348,3.33236,5.657736666666667,4.568225,4.965785,5.4721,3.60528,5.0744,3.99553,2.5949,3.52463,1.6787775,4.974945,4.428855,3.618235,4.296265,4.6065,0.9117999999999999,0.9117999999999999,0.9117999999999999,0.9117999999999999,0.9142020000000001,0.9142020000000001,4.04618,4.273695,3.63236,2.8217,2.400165,4.31417,3.770065,5.53355,4.37997,2.9843166666666665,2.359436666666667,9.2539,1.450596,1.450596,4.773925,5.40135,3.4041333333333337,0.43861625,0.43861625,0.43861625,0.43861625,0.43861625,0.43861625,4.791696666666667,5.24535,3.78428,4.546625,2.653521666666667,2.653521666666667,2.61319,3.1746239999999997,2.7067533333333333,3.68844,4.21211,7.288231333333334,1.378484,5.17775,3.738885,4.494395,10.930875,3.1566799999999997,3.023795,0.8943157142857142,3.740315,4.8766,3.77714,1.312575,2.9073499999999997,4.718495,5.5804,2.686775,4.848234027777778,1.3129777777777778,2.0180266666666666,4.768135,4.794395,3.708633,2.805903333333333,2.6698733333333333,1.484255,8.24906,3.533533333333333,2.6080866666666664,2.876515,2.8496266666666665,4.643145,4.311345,2.69847,3.460566666666667,6.0177,1.5076633333333334,4.919565,4.99994,4.62306,3.862805,3.0664033333333336,4.31119,3.588885,3.848165,2.58737,4.369895,4.579675,2.9723100000000002,2.2389725,2.76946,2.5898833333333333,2.91051,0.7897872727272727,2.078255,7.925635,0.50187,3.14301,1.4014499999999999,2.3667233333333333,3.288626666666667,3.05715,1.292588888888889,1.6531120000000001,2.75859,2.086855,3.524845,2.17072,3.15955,1.5323766666666667,3.0249119999999996,1.9521775,1.0095314285714285,3.2174833333333335,2.1780825,2.3391733333333335,2.8476866666666667,3.4514666666666667,3.4896333333333334,3.2003466666666665,3.5128333333333335,2.8666199999999997,2.90659,2.7388333333333335,2.36862,1.6473566666666668,2.3916166666666667,2.9926666666666666,1.5874566666666665,3.032386666666667,3.6972480952380953,2.910323333333333,3.1447366666666667,2.961866666666667,3.8309333333333337,4.844491666666667,3.110666666666667,1.8884500000000002,1.8884500000000002,2.286465,1.1386925,2.611475,3.265791666666667,4.444670416666667,2.725975,1.94902,2.1917425,2.10274,3.42354,3.129865,3.763425,4.706295,1.7075025,2.467173333333333,3.65493,1.336878,1.336878,2.767775,0.6604307692307692,3.0979903846153842,2.16204,2.16204,3.0487800000000003,2.340196666666667,3.0114433333333337,2.597478333333333,2.3712675,6.425818333333334,3.7832125,3.7832125,3.98231,3.0246,2.26272,2.949785,2.53046,2.996545,5.1319824999999994,0.47716749999999997,0.630182,4.054725,2.536305,2.9834,6.899401666666666,3.837355,1.654158,4.68322,4.452605,4.43145,4.35488,5.25035,5.2352,14.152794,4.114225,1.6275166666666667,2.40095,3.51845,5.3501,4.2719,4.02785,4.720395,3.58141,5.7921,2.6375266666666666,3.88006,3.0149733333333333,2.31322,2.31322,3.803685,2.884645,3.002355,3.335505,2.33988,2.31546,2.2669425,1.7977275,1.97174,2.0154975,1.82362,4.117481,3.76488,2.603075,6.012,4.18353,2.29743,1.8942533333333333,3.346205,3.699385,3.49179,3.2354477083333335,3.253795,3.132515,4.05441,3.65974,3.63805,3.776905,3.385815,3.319465,0.8938516666666666,0.8938516666666666,0.8938516666666666,3.216395,2.455845,5.30245,5.01935,3.51823,7.8859874074074074,2.8402600000000002,0.41820384615384615,5.2062,0.7477210000000001,4.2965961904761905,1.923655,3.71023,1.81866,4.394365,5.696481666666667,5.07325,4.259495,2.7561166666666668,3.022653333333333,1.49664,2.4467166666666667,0.524098947368421,0.5270158823529412,2.9279833333333336,1.6906633333333334,1.97191,3.630975,3.659385,4.930875,2.7971233333333334,2.968615,3.4204,4.95547,1.980675,1.0611457142857144,2.28241,3.465148,1.4405883766233765,4.952095,3.55507,3.97226,2.7187866666666665,4.14314,3.1470833333333332,2.711953333333333,2.9971599999999996,2.3657075,2.9231033333333336,2.0031125,2.96069,2.419486666666667,5.795744,2.48975,1.9090433333333332,2.55076,5.162827333333333,3.222162,3.222162,2.3494966666666666,3.815945,2.207765,3.990125,2.926515,0.61048,4.594175,2.10254,11.953936666666667,6.96536,2.97932,3.099085,3.22493,5.24136,2.634775,3.86506,0.28535866666666665,2.2800175,3.9303000000000003,0.8834083333333332,3.99769,1.477042857142857,5.32015,3.2447,3.50731,3.714035,4.297845,2.12059,4.611435,3.74259,4.89872,6.58688,3.91365,3.0329433333333333,2.947713333333333,1.653098,1.931375,4.216575,4.76808,4.1378125,2.63792,4.23813,1.6149419999999999,3.635695,2.813765,4.750465,11.377286666666667,3.438365,8.731243333333333,4.450815,5.0662,1.0240577777777777,4.960566999999999,4.93324,2.4759033333333336,2.8907333333333334,3.7241,2.9444166666666667,2.3849933333333335,1.6896966666666666,1.8333133333333331,3.49749,1.885306,2.8305733333333336,4.929801333333334,2.9589533333333335,1.1601628571428573,1.1601628571428573,3.48558,3.5203379999999997,3.5203379999999997,3.4856,2.9920000000000004,3.2173243589743588,3.7502,3.16501,2.558263333333333,2.22611,2.2496133333333335,3.0424900000000004,2.2051575,2.679016666666667,1.563442,5.697392,10.668664666666666,0.6465715384615385,0.6465715384615385,0.6465715384615385,0.7743599475524476,0.7743599475524476,0.6465715384615385,3.659333333333333,2.8784533333333333,4.301173333333333,1.46058,1.6125325,3.1185080000000003,2.3345733333333336,2.9346366666666666,2.2422633333333333,3.1324199999999998,3.519933333333333,6.816085,2.94693,2.4384833333333336,3.6534999999999997,4.745515,3.01578,3.358033333333333,5.60199,2.293486666666667,3.3711333333333333,1.32533,1.32533,2.7257533333333335,0.5007215789473684,2.749416666666667,2.722376666666667,3.09595,3.387166666666667,2.2146,1.4682566666666668,2.67732,3.1595066666666667,2.304863333333333,4.554965,2.796997333333333,3.796995,2.762255,4.17009,0.55887,8.296701666666667,2.9638419999999996,2.9638419999999996,8.295653611111112,1.8269266666666668,2.71049,3.0878633333333334,4.864935,2.2499733333333336,2.1256633333333332,2.7762333333333333,1.3865275,3.32326,1.7677800000000001,2.8967585,1.3350925,0.25436909090909093,0.25436909090909093,5.27845,4.126595,4.406665,3.0242166666666663,3.716545,3.85104,1.2926466666666667,5.35975,3.699675,2.620925,1.74998,1.4139575,2.118925,3.0878633333333334,2.45105,2.102335,6.134525,5.3611,4.477475,4.488075,2.225925,0.6487575,7.79162,2.16533,1.48583,3.349525,4.44121,2.047315,1.7612166666666667,4.716985,4.48724,3.4918,3.349466666666667,4.713115,4.964655,3.8036666666666665,2.66086,2.66086,3.6844,4.910805,5.89335,6.841266666666667,3.0426366666666667,3.8801,1.30242,2.549775,4.217939333333334,3.72352,1.686346,4.04739,3.3232725,4.66158,2.07009,4.063875,5.0396,5.7997,4.893405,2.4565066666666664,2.4281900000000003,3.8499,1.9659000000000002,2.460545,3.12608,2.3624266666666665,0.796637,2.30147,2.7616566666666666,2.2384836666666668,5.03855,4.63616,4.707335,4.295145,4.160915,5.846405000000001,13.015445,5.56795,4.654895,4.366355,3.792155,4.7682,3.1570666666666667,3.2328806666666665,3.7261666666666664,1.27435,2.65413,2.695675,5.0383,5.89925,4.99536,3.3092066666666664,2.6668299999999996,2.3144933333333335,4.2352,4.2699875,3.4821333333333335,4.2699875,2.680676,2.300266666666667,2.427496666666667,2.29829,3.0556099999999997,1.7211533333333333,0.9417749999999999,1.57378,1.6692799999999999,2.5173200000000002,1.5034666666666665,1.2718433333333332,1.6769866666666668,2.8585766666666665,1.454218,3.276196666666667,1.2929166666666667,1.5929399999999998,3.769175,2.7115299999999998,2.657223333333333,2.8333999999999997,2.413673333333333,3.070685,2.161645,2.866733333333333,2.93221,2.471713333333333,3.0180833333333332,2.8951075,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,4.83384,3.309525,0.9581857142857143,3.20237,2.450886666666667,3.0311566666666665,4.12714,2.585366666666667,4.3776,3.4829920000000003,1.593668,3.09259,1.6745333333333334,1.073955,0.9903549999999999,1.5093866666666667,0.8554183333333333,0.6787316666666667,1.31107,3.35245,1.680846,1.8255666666666668,2.091693333333333,2.642252777777778,1.20971,1.5654866666666667,1.5717400000000001,0.870785,1.1911383333333332,0.7018866666666667,0.873,3.09041,3.4568,3.68106,4.226375,4.57885,3.156226666666667,4.57805,3.7538666666666667,1.8793975,3.544585,1.89629,3.428235,2.2662400000000003,0.8797345454545454,4.264605,4.705765,2.04723,1.197335,2.767745,3.158325,3.682265,2.84456,2.44221,1.00368,2.26868,5.251950000000001,3.65024,2.248465,1.5177949999999998,3.529345,2.425695,0.7714990909090909,4.67802,4.066065,3.57649,2.380645,1.258178,4.81874,4.31311,2.4855199999999997,2.66217,2.3991233333333333,2.73661,2.6049966666666666,2.84117,3.2501200000000003,1.3155875,2.74565,2.451163333333333,5.2075,4.280345,3.6846,4.680605,15.886069181818183,4.6060275,4.8869940000000005,2.825345,4.30402,5.0867,1.672614,2.424435,2.6579833333333336,6.695005,3.715535,3.901035,5.834,2.6579833333333336,3.83009,2.045625,2.80357,2.704276666666667,2.8226533333333332,1.4497783333333334,4.224255,4.341705,2.617405,4.000725,2.4787733333333333,2.8114033333333333,3.515785,3.014265,5.6626,4.989775,2.60644,3.2927,2.446375,2.620836666666667,1.746086,1.746086,2.64669,2.6024499999999997,0.22435285714285716,5.7297530000000005,1.04223,4.616635,4.122865,0.5484383333333334,4.933605,8.194485,1.7507625,3.52954,3.72135,2.938973333333333,3.036095,2.245095,2.81603,3.308625,3.863245,3.241045,4.057066666666667,0.9921333333333333,11.875521666666668,3.05249,3.166765,3.92724,2.498925,3.7955,7.729581666666667,4.43388,4.27958,4.0518,4.50418,5.81304,1.58134,3.4533,4.95395,3.8646999999999996,1.8682839999999998,3.609795,3.51727,3.422655,3.69837,5.36055,4.55969,2.4727766666666664,3.530745,3.757745,5.50145,3.943215,2.3120366666666667,2.2297166666666666,2.641033333333333,2.8930066666666665,1.2110733333333334,3.2394933333333333,0.8174799999999999,3.3465000000000003,3.1131166666666665,2.6466066666666666,1.6814333333333333,4.61253,4.58235,4.047965,1.74544,4.98603,4.27267,0.7138757179487178,0.33250038461538456,4.43048,4.903405,0.9960525,0.33250038461538456,3.09097,0.7138757179487178,0.7138757179487178,0.33250038461538456,5.540776666666667,2.5302466666666668,2.5174933333333334,5.5275,4.068695,2.80165,0.7355011111111112,3.189215,3.639085,4.665375,5.33545,2.18898,0.7638323076923077,4.479067499999999,2.5950666666666664,1.5907360000000001,2.1002075,1.1216642857142858,2.680806666666667,2.3287833333333334,3.962845,5.416,3.12143,3.4044666666666665,3.074203333333333,2.542596666666667,2.86239,4.142435,1.5310075,1.9161575,3.856545,5.40435,2.228083888888889,5.21515,2.474605,3.9852,4.18171,3.716125,1.1951725,2.823435,5.6581,3.567995,3.48509,4.67792,5.84625,3.498525,5.10805,4.34325,3.20516,3.11696,8.11965,3.738555,4.7851475,2.19781,1.10943,2.9212633333333335,2.344495,2.146415,1.824785,4.801405,0.7371,3.653725,4.332465,1.7910433333333333,3.0826266666666666,5.12035,3.087175,2.794245,4.654655,5.4351,9.831074,2.9161366666666666,2.7282166666666665,1.632828,1.7890166666666667,1.16361,1.5236433333333332,3.2263966666666666,2.5101133333333334,3.12426,4.772520256410257,1.61507,2.4770166666666666,5.29625,5.9716,4.006945,3.28442,2.878955,2.487095,2.01095,1.99008,1.7221966666666668,2.570365,4.066795,3.896505,5.06235,5.1823,4.531555,5.965848333333334,3.39965,2.49494,6.485232916666666,4.60068,8.31563,4.9578475,4.9578475,5.618263333333333,1.5987099999999999,1.369675,2.7659933333333337,0.713983,4.60983,3.6793333333333336,3.4610374999999998,3.4610374999999998,1.7456,4.523555,4.48667,4.57736,4.37083,2.8601833333333335,2.491745,4.30409,3.1401833333333333,4.8718775,4.277185,0.7861554545454545,6.21735,5.3277,5.06565,5.6264,3.127755,5.7786,4.79152,0.8596538461538461,5.1984,7.901968333333333,3.40827,5.75005,5.8717,3.232125,2.605045,4.05907,6.28495,2.094075,5.70745,1.80671,4.34881,2.8216900000000003,2.2848525,0.9758279999999999,4.279055,5.7003,3.081465,4.087355,1.80175,4.250595,8.024698333333333,3.438585,3.975595,2.498215,2.59459,0.941019,4.78496,1.46573,3.5624008333333332,3.5624008333333332,4.07005,2.1640433333333333,3.4727333333333337,4.29854,2.2011125,3.13274,3.5539,3.1476400000000004,2.864215,3.77821,2.447635,1.7503525,3.8122333333333334,2.21393,2.9451133333333335,1.9595666666666667,3.12133,3.05917,1.3674157142857144,1.7174466666666666,0.4109716666666667,1.2708066666666666,0.4109716666666667,0.4109716666666667,1.7174466666666666,0.4109716666666667,3.470966666666667,3.1330919999999995,3.1330919999999995,3.273706666666667,5.6288,5.0981,4.56931,5.4366,5.35315,3.29163,4.64082,4.69168,2.131695,2.5646933333333335,2.9524166666666667,0.7761600000000001,5.6646,3.12494,3.236943333333333,5.78625,3.5889375,5.1139,3.39473,2.3713633333333335,2.78509,3.323125,2.46323,2.646993333333333,1.8601566666666667,5.26465,0.915528888888889,3.9269,1.1833500000000001,3.4949,2.7787133333333336,3.09834,4.339535,4.43757,4.702535,4.66545,3.90513,4.03612,4.667285,4.016315,2.7186,2.6279,3.6011666666666664,3.93053,5.28385,4.44138,3.263205,3.946385,3.362,3.06004,4.39319,5.1771,4.19942,68.19122140386003,2.8072891666666666,3.805855,16.854733,3.76883,3.0899933333333336,2.751796666666667,1.87267,2.51714,4.9823474999999995,3.0195233333333333,4.7486041666666665,6.701,3.07407,8.129823333333334,5.11575,2.58611,3.273125,3.717175,3.38216,1.842078,1.4067375,4.28981,2.836585,5.597813333333333,3.429005,2.47121,3.441135,3.043785,4.34842,3.0416,5.263765,4.36129,3.972395,3.174405,2.3507475,2.816585,4.897665,4.19458,4.302105,4.355433333333333,1.1012533333333334,2.80634,5.2918400000000005,3.60528,3.345665,3.44418,2.826655,4.594625,2.84416,3.50532,2.22142,4.20935,3.606205,2.555475,4.38389,9.015329999999999,3.0768633333333333,4.112295,6.05681,2.952615,2.549,3.90673125,1.9640133333333332,2.6961766666666667,3.0561679999999996,3.744525,3.23584,4.44451,3.780165,3.138365,4.0106,3.65562,4.021855,3.835535,3.40031,3.63526,3.134245,3.134245,6.577518333333333,1.746495,3.138945,3.47254,2.66451,5.38525,3.9991,3.19046,3.26804,4.23968,6.8009575,0.7570699999999999,4.17014,2.170995,2.8407633333333333,2.5922133333333335,5.34355,2.76121,2.004,1.2662125,2.029975606060606,3.98922,4.088005,3.9502,6.6016,4.59728,5.87005,2.350135,1.6559233333333332,4.891935,4.319465,3.1742333333333335,2.0608933333333335,1.3695933333333334,2.823676666666667,3.1966633333333334,1.48061,2.4730266666666667,2.1671657142857144,3.5806937362637363,2.82518,5.2546,3.355015,1.4513425,5.904,3.99693,4.984885,4.83686,5.05775,4.879065,1.8662233333333333,1.4715666666666667,0.5997642857142856,1.4991,3.37967,2.367685,3.4822266666666666,1.4048566666666666,2.4066,2.2908,3.259775,3.34709,3.72078,4.0093525,1.58765,1.3031,1.817405,1.9474525,1.402555,2.56795,7.325623416666667,4.696915,4.606,2.93236,7.381829999999999,4.78152,3.16739,2.872655,3.4512,2.568085,3.4777,2.166983333333333,6.69441,0.83636,3.07703,6.34885,3.85253,4.648095,5.17725,1.49428,3.1892833333333335,2.781703333333333,2.8215800000000004,1.805855,3.990035,8.09446,4.122085,4.456335,3.91633,4.12425,4.623015,0.8095433333333334,2.6485,5.3431,6.890093333333334,4.20151,5.5057,2.906935,3.632433333333333,2.8451166666666663,5.6384,4.988465,4.444849857142857,4.444849857142857,0.5979028571428572,3.8777666666666666,0.887952,0.541835,1.8395975,3.7481333333333335,4.78,6.421542857142858,3.9054333333333333,3.7802628571428576,4.09448619047619,3.06493,2.510076666666667,4.5422,3.0728108333333335,1.9192025,1.9192025,3.703915,2.904333333333333,2.6466433333333335,4.435575,3.3409999999999997,0.7451744444444445,3.4068,2.5218233333333333,3.1982966666666663,2.6960599999999997,2.5553,2.4922666666666666,3.2485766666666667,3.16474,0.89193,2.682513333333333,6.060772714285715,2.1693000000000002,8.018638333333334,1.558252,1.558252,3.5473425,3.13252,3.4016333333333333,3.2133633333333336,1.89805,1.3931557142857145,3.0556666666666668,3.3113733333333335,1.656325,1.5366,2.8305399999999996,2.8393599999999997,3.0328366666666664,1.907095,2.1454425,2.7417,2.065055,2.52672,3.32927,1.723745,3.4289,3.20473,6.856230999999999,4.846355,1.85309,4.387365,2.684385,2.121205,3.773355,2.8170033333333335,2.56287,7.5727475,0.7958,0.7239616666666667,5.2746,1.538574,1.538574,4.323425,2.4332075,5.13035,4.279945,1.33924,2.2668193333333333,2.8760666666666665,2.322972666666667,5.10215,2.55498,2.7850699999999997,2.247036666666667,1.5175142857142858,1.5175142857142858,1.9323966666666665,3.757015,3.7393666666666667,4.663745,3.6113999999999997,5.494,4.30602,7.08745,3.40751,2.440055,2.6829199999999997,2.59496,2.56584,0.6953977777777778,0.6953977777777778,0.6953977777777778,3.066375,4.44318,4.24866,0.9776875,0.9776875,5.4915,5.9803,7.05312,22.310690444444443,12.8499,8.53309,3.877555,6.18395,2.3077225,4.85368,2.527336666666667,3.3899333333333335,4.3434333333333335,5.3097460000000005,1.839665,1.91171,7.31708,2.2839400000000003,2.2839400000000003,6.10745,3.67765,4.497665,1.79661,5.131848333333334,4.889965,2.18243,5.86715,4.0565,1.0642766666666665,6.35145,9.16931,1.0642766666666665,1.79661,1.9888566666666667,0.8765499999999999,0.8765499999999999,1.940524,2.2166266666666665,1.940524,3.77283,6.09205,5.28285,7.22521,1.79661,11.909910666666667,6.80065,4.69064,2.3077225,3.083115,4.889755,7.99541,2.971173333333333,3.66799,4.96427,3.48455,5.42775,6.7935,5.18415,5.4546,3.904945,2.70412,5.49285,3.375165,4.8124,4.013,0.7724275,1.5569419999999998,3.128405,5.8099,4.89871,2.9589533333333335,2.10899,4.6732,4.82956,5.74045,5.43385,5.2581,4.11883,3.01749,3.93314,3.635665,1.9807675,4.7366825,1.94109,2.52523,3.80767,2.05492,3.735965,4.39096,3.5229,4.89534,2.95209,6.740715000000001,0.9984422222222222,3.46214,3.823245,1.4409285714285713,5.8021720000000006,1.8167833333333334,1.6466166666666666,2.7162666666666664,3.047711,2.9957666666666665,2.8326433333333334,2.1914925,0.7295336363636363,2.49541,2.48182,4.02879,0.7657946153846154,7.572166666666667,1.7628166666666667,1.093054,4.153966666666666,1.093054,3.746765,0.9131,4.31431,3.2628766666666666,1.69004,4.2627749999999995,4.10599,4.10599,5.18545,2.696775,3.0295050000000003,2.8226600000000004,1.87738,3.749335,3.365825,1.8556333333333335,0.8232816666666666,7.696481282051282,2.7073,3.48424,4.20318,7.05942,2.38498,3.8223,3.61166,2.99379,3.72504,5.68615,6.42352,4.2778,5.1704,5.29975,2.93564,4.537715,4.363445,4.66165,1.1680444444444444,0.507625,3.111345,3.5173,2.80076,5.6733,3.65367,4.441855,5.2042,4.9553,3.994925,4.369245,1.19604,2.96706,9.913575,2.23277,1.9314933333333333,3.9659257142857145,13.562969246031747,1.4459625,4.971505,5.9088,4.79306,3.2151,2.5763133333333332,3.1211233333333332,4.44258,1.1058816666666667,3.7770333333333332,3.777335,0.46045368421052635,2.2141699999999997,5.0996,4.18363,2.68141,4.086765,2.662875,5.0285383333333336,1.3747066666666665,0.6428472727272727,3.653831666666667,1.2219342857142856,1.08230375,1.08230375,1.08230375,1.08230375,1.4421249999999999,2.7504733333333333,1.9628933333333334,2.8183466666666668,5.1656,3.6020333333333334,5.16,3.35896,4.180235,3.475295,3.756385,1.35039,7.049725,2.1117,5.684,5.43487,4.987075,5.0124125,3.4736666666666665,2.57146,2.6691833333333332,4.032125,1.21371,6.084751666666667,2.4628166666666664,4.95332,3.191433333333333,2.6796333333333333,3.596985,3.76125,3.203105,2.4486233333333334,2.4769900000000002,1.41809,0.4372677777777778,4.94174,3.333485,3.95204,3.381905,4.072715,6.1758,4.4396,0.5183107692307692,3.464676,7.299269333333333,1.8277533333333331,2.00684,5.551511666666666,4.500665,2.8038900000000004,5.5587,5.35365,4.25428,4.99306,4.10581,5.21475,5.2795,5.0522,3.324515,5.3256915,1.517122,1.6952833333333333,4.420685,3.729015,4.79003,3.081255,5.21375,4.84784,3.641395,3.19438,16.33516575672455,1.348210989834136,1.1771725,1.9475924999999998,0.506376875,0.526286,1.4891625,0.34446764705882355,1.2710620000000001,3.030606666666667,1.6816600000000002,0.9516749999999999,0.8982741666666667,0.39809916666666667,0.8982741666666667,0.8982741666666667,0.39809916666666667,0.8541000000000001,0.6028542857142857,2.742685,3.1842566666666667,3.98995,5.315,2.7874933333333334,2.662,4.36772,4.484275,5.74105,3.639245,4.547845,0.7180785714285715,2.336431333333333,8.373950833333334,4.953455,6.886246666666667,2.57905,3.851695,2.175425,5.33945,5.36995,2.956315,3.907835,3.551505,0.9579383333333333,4.887365,5.3445,1.135262,1.403696,1.6253866666666665,2.2609233333333334,2.5346066666666665,4.441265,4.87796,2.280285,2.280285,3.618911666666667,5.93834,2.0840466666666666,0.6283154545454545,0.86344,2.4356766666666667,3.6943,1.0097642857142857,1.0097642857142857,1.0097642857142857,0.34421461538461534,1.0909342857142856,3.1633,6.23075,3.9085,4.479395833333333,5.33755,1.11517,3.5725,3.408666666666667,3.9123,5.75175,2.9193166666666666,7.6959,5.2731,1.2304444444444445,3.9486000000000003,1.889872,2.409285,2.2430666666666665,7.03038,2.7688566666666667,4.589635,2.0745725,4.118615,4.345095,4.63503,0.43554833333333337,3.1642799999999998,1.2923166666666666,2.5846899999999997,3.9118613333333334,2.027406666666667,2.6886033333333335,2.196076666666667,2.506693333333333,2.552916666666667,2.7515699999999996,2.694713333333333,3.1259599999999996,1.3300779999999999,2.1281333333333334,2.3782866666666664,3.0975966666666666,2.7496899999999997,2.08589,2.122403333333333,2.17322,1.84744,3.11319,2.2630833333333333,2.5014,2.0757233333333334,2.288656666666667,2.51221,0.80739,0.80739,0.80739,2.5075533333333335,2.35099,3.0325,3.10365,2.6562666666666668,1.6309833333333332,4.0651,3.530265,1.3464116666666666,2.58126,2.6436733333333335,3.3241533333333333,1.6798714285714287,6.976285,4.801065,3.203875,3.706865,2.8639,1.6885,0.5475514285714286,3.536715,3.54914,3.3241533333333333,4.75388,4.224165,5.78815,2.96069,4.17987,4.043745,0.8802530000000001,2.964745,3.26674,4.801356666666667,4.70025,3.30598,2.93772,2.64547,2.30598,2.538603333333333,0.6193516666666666,5.327312500000001,2.4166875,4.43856,2.846296666666667,3.8557083333333333,3.114716666666667,2.2790133333333333,2.7916323333333333,2.7916323333333333,2.3379066666666666,2.2285533333333336,2.632,1.9685566666666665,4.24305,1.434794,2.684405,3.542705,4.19399,3.824965,5.21835,5.06955,2.514725,2.049715,3.166695,2.955615,4.078585,5.46735,3.34264,0.9234614285714285,0.9234614285714285,4.33002,3.7842709999999995,0.8683859999999999,4.375315,0.8683859999999999,4.08616,4.741895,4.793035,3.937725,3.26362,6.159475,4.082540833333334,6.0476,0.9228714285714286,0.9228714285714286,2.20964,4.774906666666666,1.5350566666666667,3.23985,4.10585,1.0999471428571428,4.664865,4.434985,5.440325,5.440325,1.2187183333333333,4.37512,5.425,5.27325,6.2443,1.98075,1.98075,6.98595,1.0499727272727273,7.12985,1.91196,6.158695,2.57486,2.636956666666667,3.882915,1.778708,2.0411033333333335,2.7746833333333334,2.889893333333333,2.871542857142857,6.8680710000000005,1.9594619999999998,5.53035,3.2551633333333334,2.9351766666666665,1.82478,2.187315,2.91447,3.60627,3.184515,2.644915,2.07666,2.29715,2.738785,1.049398,3.50946,1.98073,3.107355,2.0726180000000003,2.0726180000000003,2.909765,1.8800133333333333,3.66483,3.30618,5.25125,7.537216666666667,4.563625,3.342605,6.426439500000001,2.3871100000000003,3.273305555555555,2.189693333333333,1.5523285714285715,1.71081,4.566655,1.6389883333333335,0.486388125,0.635725,4.57441,4.40766,3.14622,1.0353611111111112,3.28177,2.83165,4.929365,2.1299,1.87281,1.234588888888889,5.22995,2.62465,4.50324,0.692731,4.527330833333333,4.788035,4.342495,4.23131,3.286415,3.58866,3.1919466666666665,5.35845,3.493265,2.3763733333333334,2.676816666666667,6.1383383333333335,6.500055,0.724155,4.21869,4.318155,5.45075,3.9972999999999996,3.5131666666666668,2.98495,3.2878833333333333,3.6481666666666666,6.257965,2.8393599999999997,2.567243,3.904445,3.628365,2.17691,2.628825,8.129693333333334,4.99996,1.9041166666666667,5.17845,4.38477,1.7897760000000003,3.79779,1.4774,1.6328142857142858,4.41865,4.009495,5.77245,3.05687,3.899645,4.48578,5.7856,4.36406,4.19947,3.71494,4.56096,4.25644,4.192270000000001,1.100799846153846,1.100799846153846,8.58715,0.85408,2.0745498412698415,0.85408,0.7066316666666667,0.33168555555555557,2.781181507936508,2.27165,0.5812142857142858,2.0745498412698415,1.482575,3.138755,2.1999672222222224,3.606885,5.1065,8.051318333333334,1.85314,2.054805,2.11096,5.14985,5.7582,1.68931,1.605855,0.8875725,2.4934275,4.183765,2.63131,4.45817,6.150892499999999,0.5145988888888888,3.735215,0.808124,3.2202533333333334,2.614325,4.4016,1.344455,4.17424,4.61281,4.507595,3.496075,4.66202,6.177155,1.91409,3.839505,0.7684807692307692,3.34869,3.15963,1.18766,2.941926666666667,2.339773333333333,2.51689,5.04075,9.30796,3.789820303030303,3.56386,3.33447,8.00535,5.936330833333334,3.4591,3.987595,3.26866,5.89445,5.84925,5.9489,5.7671,4.50102,6.2367,2.42272,1.421835,1.9794166666666666,2.53052,3.97244,2.2460366666666665,0.22002702702702703,0.22002702702702703,0.22002702702702703,30.474622523809526,0.22002702702702703,2.7662020270270267,0.22002702702702703,0.22002702702702703,0.22002702702702703,3.416207027027027,3.942685,0.22002702702702703,0.22002702702702703,0.22002702702702703,0.22002702702702703,0.22002702702702703,3.372205,4.69388,3.64777,0.33784871794871796,0.33784871794871796,4.335863333333333,4.251042166666666,4.069100833333333,3.3171539444444447,4.208646666666667,8.024233333333333,11.114641244366744,6.437711333333333,8.023294666666667,6.871975535714285,2.7257533333333335,6.498674761904761,4.315036666666667,4.583059775641026,0.33784871794871796,8.092887333333334,6.662061428571429,6.829615,2.69365,9.404325035714285,15.071466845238096,19.120090064102563,56.36126718741553,120.35905465381025,1.32533,3.3711333333333333,3.029275,3.8079717516087515,0.33784871794871796,1.6845310256410257,8.249455416666667,15.084352702380952,20.991192777777776,49.12390169256474,13.353068535714286,2.3552,0.2837365517241379,0.2837365517241379,4.25213,2.5854166666666667,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,7.61889,0.2837365517241379,0.2837365517241379,0.2837365517241379,2.83352,2.631796666666667,4.738735,3.59075,3.8369633333333333,5.6673,2.304125,4.400365,4.810525,3.383615,1.5582,3.30773,1.0177066666666665,2.43229,2.537103333333333,5.621943333333332,6.242099999999999,2.8869966666666667,5.775515555555555,0.4696111111111111,0.49474999999999997,2.5903933333333335,2.782883333333333,3.02623,4.206355,3.4887333333333337,7.6585025,3.83805,3.0823,3.350535,3.8941,2.77655,3.08344,5.3767,3.319635,0.45840461538461535,0.8564009090909092,4.1959075,1.744025,3.451135,3.576195,4.25538,3.484995,2.578025,2.762905,0.5785680000000001,0.784964,4.157435,2.4470066666666668,4.48354,3.74719,4.977286666666666,2.71454,3.58224,5.28835,5.19205,3.008505,0.9813363636363637,2.7700600000000004,4.827835,2.13116,0.8787125,1.7370366666666666,3.51218,5.1108,1.838485,2.88103,4.10507,5.3391,2.32823,2.3975133333333334,2.36205,4.16677,2.457905,4.054855,0.6957685714285714,2.9179733333333338,3.137685,1.724635,5.6884049999999995,3.94339,4.248665,4.607295,2.68323,1.95716,0.68368,4.763,4.048705,3.95192,2.34527,5.0641,3.254545,2.76016,2.76883,1.3165342857142857,4.72733,1.924845,2.726705,8.92221,4.194545,5.6361,3.45185,0.97257,2.86656,1.3695199999999998,3.201415,6.4417,5.42505,5.17625,3.979795,5.4334,4.526435,1.84939,1.9148966666666667,5.504,2.991956666666667,3.4469999999999996,2.2917675,5.16075,4.52037,1.5181633333333335,3.3177266666666667,2.74056,2.89457,3.749555,9.4193,4.57501,1.7090175,4.55433,7.03142,4.3818225,4.0421,4.265535,4.54512,4.899515,8.68417,2.4969233333333336,2.82669,4.595115,4.429045,2.983145,3.12973,5.28335,3.735375,3.415135,4.588377333333333,18.617175333333336,2.84592,2.58041,3.2953666666666668,5.518998666666667,1.100815,4.66501,2.1193141666666664,4.74775,1.4907083333333333,4.214285,4.33095,4.114815,0.96070125,4.920585,4.568585,1.40851,5.198330303030303,4.790555,1.1840314285714286,3.38107,2.018085,2.438155,1.513015,4.026495,3.62483,4.70077,3.450065,3.0080666666666667,4.67027,7.770720000000001,4.559515,4.700655,5.1361,3.393266666666667,4.456275,5.20435,6.428917,0.91662,0.91662,4.29061,5.1711,2.30727,1.6419750000000002,7.482945000000001,4.145135,3.97683,4.42411,4.533545,4.559315,3.42002,3.798695,6.868925000000001,4.61041,4.71602,4.54675,1.5000714285714287,2.7484,4.78955,5.47235,3.5858,0.21187472222222223,1.450135,2.651925,2.5049033333333335,1.9531066666666668,1.01562,1.3305,1.3200125,2.8710566666666666,0.6260155555555555,1.480342857142857,1.9791625,3.731575,3.9059333333333335,2.510613333333333,3.16423,3.0926466666666665,2.83216,0.702858,1.00406625,2.9673,4.78244,3.947615,3.51806,4.670635,4.751145,4.954165,2.2570799999999998,4.27293,5.32605,4.573215,6.4517875,4.02028,0.4875311764705882,5.6115,4.30477,4.075135,5.02325,3.07806,1.9903020000000002,3.99905,4.180545,2.697005,5.020810833333334,4.406405,1.2892583333333334,5.020810833333334,3.909,6.3835675,3.56925,1.304588888888889,3.86317,5.4175,4.113465,2.5871166666666667,5.37455,1.37864,1.9596475,5.3099,3.363695,0.7467355555555556,4.91928,4.976585,4.104345,4.355405,3.229103333333333,3.2402033333333335,1.8254439999999998,2.309595,2.933845,4.363145,3.8510000000000004,2.37966,2.43868,2.1028303333333334,5.0805,1.7506285714285714,0.82994,7.42006,4.16813,1.4657019999999998,2.6287033333333336,2.431643333333333,3.7373333333333334,6.513218333333333,2.479152222222222,0.908768,2.77609,4.57263,2.6544233333333334,4.641595,5.7858,5.77695,4.87966,4.01789,5.65225,2.422686666666667,2.13522,1.6002066666666668,2.1373233333333332,1.864905,2.6565133333333333,2.1671400000000003,1.72513,2.727815,2.98336,3.887865,6.51485,5.6794,4.02909,4.52272,3.83176,4.817105,4.5475,0.9295625,2.7743599999999997,5.463,1.179182,0.7381533333333333,4.42461,3.225075,2.778043333333333,3.45393875,6.190189999999999,4.12374,1.08088,1.3461414285714286,0.6845,4.088796666666667,2.141626666666667,2.6853266666666666,1.1536828571428572,3.2673533333333338,2.851046666666667,5.68015,4.60455,4.39744,5.37465,4.46404,1.3000016666666667,3.40402,2.8454033333333335,3.599615,4.904065,4.15195,2.6782299999999997,3.367566666666667,3.03388,5.1079,4.08229,3.72499,2.54625,8.45125,10.817675000000001,4.480235,1.3057828571428571,5.0688,4.81089,5.40505,4.36753,4.24163,3.71744,3.25558,3.96711,3.4820769791666666,6.75523,3.62924,3.979215,4.36094,1.9483679999999999,5.2411,5.80155,4.80833,3.209625,2.98869,6.9245350000000006,0.7396075,3.021036666666667,2.62526,2.2538633333333333,5.09005,3.66396,1.4102783333333333,4.74986,3.3022899999999997,3.444105,4.95762,3.7455499999999997,6.315766999999999,3.1995966666666664,3.0885200000000004,3.3661,2.8769333333333336,4.16932,2.51662,2.2056,2.9619733333333333,3.866665,3.3561870833333334,1.8150675,1.4181625,3.9389014285714286,3.276261,0.9856388888888888,2.7327500000000002,2.7327500000000002,1.2274675,5.897,2.9057,3.09262,3.33125,3.54681,3.315315,3.292395,2.85421,2.9985,2.4563099999999998,0.5443633333333333,3.36585,5.769147500000001,2.85103,3.652635,3.087485,3.94318,4.12233,3.48002,3.1661,3.66448,3.791495,2.7557,4.13226,3.545785,2.4836066666666667,3.8607,3.643995,8.38174,3.859895,3.445725,3.22714,4.002785,3.90442,3.51294,2.157775,3.443135,2.5617375,3.320085,2.98787,3.124045,3.818465,1.7808866666666667,1.7808866666666667,2.192455,2.624375,3.369675,1.4648059999999998,2.437705,3.191495,1.943888,3.0268,1.4648059999999998,4.38086,2.92109,3.74715475,2.6416,3.239655,2.219115,3.53824,3.684225,4.9356,3.071435,4.189995,3.48127,4.145075,3.430385,2.96793,3.03663,3.29119,3.855645,2.5341333333333336,3.479815,4.684045,4.000035,3.6725,0.3723008695652174,3.65342,0.43426583333333335,3.63711,3.39838,2.97719,3.6249,3.754,5.876905000000001,3.163275,2.4469966666666667,2.2235333333333336,2.6426866666666666,0.757348,6.21985,2.820555,2.99697,4.99072,2.23195,2.64468,3.120845,3.12967,6.4903699999999995,4.29488,5.1134,4.00359,4.549215,4.218385,3.80932,1.5873666666666668,1.6506180000000001,4.157595,4.54239,5.9956025,2.3157133333333335,5.1786,1.61376,3.27997,3.58396,2.0224040476190472,3.82077,4.8541875,3.5993666666666666,4.013966666666667,3.4514,4.235155,4.97415,3.2456933333333335,4.33422,4.8549,5.27925,4.84085,4.432295,4.50717,3.31677,4.80398,2.675325,3.4576,3.4576,5.0282,2.60011,3.642595,2.929956666666667,4.721615,3.6984,3.29545,1.82476,2.2989966666666666,1.1405216666666667,1.1405216666666667,1.9075440000000001,3.5182333333333333,1.7265233333333334,2.8511933333333332,4.68888,5.0314645,3.3906333333333336,4.77012,5.41332,2.995685,3.82088,2.990686666666667,1.90768,4.05864,4.197705,6.75811,2.03194,5.67695,5.54325,3.500633333333333,3.66169,4.23494,6.049,2.6796433333333334,2.5925,4.23727,0.44999285714285714,4.646225,3.87,5.0962,4.089085,4.64893,1.6994859999999998,1.7799399999999999,3.74912,4.28697,2.2771133333333333,4.23475,4.66819,4.57444,1.30875,4.01861,4.94199,3.825755,4.71908,3.1638066666666664,6.072936666666667,3.554775,1.49893,3.49803,1.2601983333333333,3.11035,8.486930000000001,3.06499,0.7891018181818182,4.38402,4.543535,4.57203,2.3109675,2.3109675,4.476076666666667,6.0387,2.766305,0.4960955555555555,1.9625,4.274719166666666,4.9872,4.465995,1.66846,2.7943200000000004,3.838965,1.0583753289473685,1.0583753289473685,1.0583753289473685,0.6770032456140351,1.2664182456140352,0.589415,1.0583753289473685,0.6770032456140351,0.26335157894736844,0.8527665789473684,0.26335157894736844,0.4136516666666667,0.4136516666666667,0.4136516666666667,0.4136516666666667,1.0821971666666665,1.24228,2.14222,2.201551666666667,0.9995266666666667,6.029235,2.5651699999999997,6.83847,3.21318,4.353065,3.146865,3.091015,2.6550291666666666,4.690595,2.6427433333333332,4.288445,3.86546,4.838095,2.571375,4.674225,4.995525,3.94849,3.009325,4.96151,3.11566,4.47787,5.4264,4.806465,6.03515,4.8726,1.234225,4.30469,3.815425,3.069925,17.903755,4.50899,5.46685,2.620366666666667,6.96077,3.88087,3.923055,4.20683,3.35104,0.9896975,2.47291,4.47817,4.547115,4.75333,3.02992,3.925485,2.8738766666666664,4.255735,4.962675,4.15754,6.862145,10.532494999999999,1.693,3.52951,4.02837,3.802335,3.47468,3.756055,6.35769,2.5143,2.60127,2.511295,3.80763,3.690655,4.56581,2.432895,1.7089075,0.9369719999999999,5.0476,4.85329,3.95222,4.42117,3.880105,5.3281,4.68257,6.02035,5.4768,3.8869,4.448195,3.437035,2.99607,2.997085,3.268915,1.6904225,3.85695,4.923095,5.98215,5.302459166666667,5.302459166666667,2.63503,1.6904225,2.977745,3.12485,0.7788166666666667,1.6431716666666667,0.864355,1.4968375,2.76748,0.342044,2.98114,4.3704,1.4968375,3.0300994999999995,11.090499999999999,6.844402499999999,2.3410100000000003,1.08346,1.7195433333333332,4.44606,4.320345,6.557350333333334,1.8754225,2.27499,4.50416,4.75317,5.38585,2.1895599999999997,5.36205,3.8054333333333332,3.46904,5.1849,7.207456,3.8787,2.527125,2.6991066666666668,2.04598,4.70372,5.502375000000001,1.8049880000000003,5.65225,4.128905,6.37254,0.6030300000000001,5.102236666666666,4.201625,5.52525,3.261585,2.598045,6.96745,7.959316666666666,6.28365,2.0149166666666667,2.0149166666666667,2.0149166666666667,5.90705,4.90617,6.6909,2.970365,2.71533,2.4110597368421054,3.807245,3.01229,2.4840445,1.804585,2.4840445,6.6350245,4.1977866666666666,4.17085119047619,6.14455,4.17085119047619,4.17085119047619,3.0077128571428573,6.28168,5.160133,2.746318,2.746318,2.43939,4.671275,2.73575,3.533025,5.316175833333332,5.316175833333332,5.316175833333332,6.941625,3.3142300000000002,3.30681,3.3919024999999996,3.2515725,0.8671925,6.962443333333333,2.7646566666666668,3.973845,3.156925,13.659278333333333,4.085005,5.3153,6.38961,2.5096366666666667,3.07705,1.0947833333333332,5.3153,3.125225,1.6638975,1.6638975,2.740075,4.808510833333333,1.73449,4.446016666666667,0.824395,1.3784433333333332,0.824395,1.7409375,2.558885,4.72593,3.31628,1.3784433333333332,2.987985,4.828455,1.032155,3.27992,4.24929,1.98917,4.043351666666667,2.445435,2.636745,2.845365,0.932498,3.559865,2.70819,2.07378,1.3904166666666666,2.7728666666666664,3.73224,2.47757,3.31912,1.1948066666666668,1.1948066666666668,1.1948066666666668,3.459185,2.71706,2.71706,3.03626,3.552285,2.242856666666667,1.1650175,1.1650175,2.89607,4.0433875,0.7681925,1.6888466666666666,2.649325,1.0783049999999998,2.7671516666666665,0.932498,0.932498,1.7498458333333333,0.932498,3.1422975,0.5784766666666666,3.1422975,5.797419583333333,3.202175,2.3057166666666666,1.7089118055555557,0.634745,2.3436568055555558,3.56414,2.3436568055555558,0.8798155555555556,3.090525,3.628145,3.63174,3.702205,2.34775,3.587135,1.8922800000000002,0.8527673611111111,0.46158625,0.8527673611111111,0.39118111111111115,0.8527673611111111,0.8527673611111111,4.714485,4.65929,5.6689,3.458875,4.61331,4.690165,5.22315,3.285375,4.0398,1.3000157142857145,2.7044566666666667,4.353529999999999,3.59619,1.4589299999999998,2.6417266666666666,4.00814,3.820885,4.132165,4.016245,4.77567,3.801375,3.12457,4.35162,2.6451766666666665,5.60565,3.330635,3.93243,4.523756428571429,0.7607819285714286,2.07408,4.518185,7.92593,4.633865,4.61331,3.224396666666667,5.0759,8.634713333333334,3.647933333333333,3.01772,3.6794333333333333,5.4281,3.914295,5.6386,5.6513,5.2999,3.35844,4.90922,4.861365,3.3588,4.003675,3.4995333333333334,2.22695,2.272276666666667,4.74474,6.87355,5.7092,5.559,4.550045,5.10305,5.7225,0.5344676923076923,7.6989,4.74155,4.69161,4.158565,4.976305,4.19517,3.2117833333333334,2.67355,1.3235916666666667,0.5671838461538461,1.8805040000000002,3.0073566666666665,3.847875,4.47492,4.998825,3.331365,12.894676666666665,3.52628,3.74759,3.312785,0.7141500000000001,5.679539999999999,2.8397233333333336,1.7212666666666667,4.56099,5.971578333333333,3.131855,8.06603,4.054175,2.172818,2.172818,2.172818,4.031835,8.83236,3.28718,1.7741425,1.7741425,3.213435,9.15458,0.9895675,5.42925,4.15364,4.6639,3.0722733333333334,2.043763333333333,4.11023,3.665115,5.991,5.741108333333333,3.703915,2.592555,3.67005,4.445187499999999,3.7306809999999997,1.2535875,3.0940499999999997,6.05991,3.329755,4.35891,1.1383475,3.6951,2.86763,2.514396666666667,1.7077125,1.65231,2.1375433333333334,5.67545,1.91684,4.007105,5.7729,1.9594619999999998,4.657795,4.048355,4.967235,3.322366666666667,2.152745,2.705405,4.838115,3.860835,3.860835,1.22942,1.5395266666666665,3.16712,4.43489,2.2953038181818184,4.8947579999999995,1.6169280000000001,2.738986666666667,1.9475233333333335,1.874975,1.874975,5.0179,7.471121666666667,1.9383299999999999,3.10585,2.2870475,5.84415,2.95807,0.735804,2.834795,0.735804,2.68313,3.168755,4.53614,5.9523,3.52657,4.798125000000001,5.8249,2.370855,2.2404766666666664,3.337566666666667,2.2517733333333334,5.8561,4.73069,3.276825,4.135265,2.605845,4.588095,0.98009875,1.0592320000000002,1.8726933333333333,1.6500983333333332,2.3619533333333336,2.634866666666667,2.133086666666667,3.4109,2.541425,3.939065,2.4764266666666668,2.80598,2.64683,2.3059,3.074756666666667,2.6368633333333333,1.8891433333333334,2.4085300000000003,3.402815,3.74613,3.525605,3.96072,2.9852333333333334,2.4074125,2.0490075,1.2231216666666667,0.2820605,0.14372304347826087,2.0079,1.8772166666666665,0.14372304347826087,3.941303876811594,2.1399925,0.14372304347826087,5.802604583333333,2.251925,5.88256,3.0166,3.6869333333333336,2.4266433333333333,3.1139833333333335,2.3161375,4.167435,3.4611,3.2172699999999996,0.5108126315789473,3.9706599999999996,2.3280959649122805,2.803755,1.59291,2.49911,4.169,2.9072,7.770455,5.3023,4.338375,3.48752,6.21144,5.75075,1.7517500000000001,3.9613950000000004,2.008265,1.87667,6.9743,9.28054,1.26597,2.1998575,3.43992,2.34687,2.687475,3.24628,3.142775,5.0527774999999995,2.357425,3.023815,3.42495,3.046655,7.09117,1.2617466666666666,1.845255,3.04609,3.12301,1.8221866666666668,3.361635,1.506955,3.495985,3.312435,6.65527,3.184775,8.3216,3.830005,1.6691639999999999,1.6259499999999998,2.854195,6.46213,1.6954275,1.3788866666666666,5.58202,3.252945,3.864745,2.621245,2.0858866666666667,2.9193,10.017355,4.85232,6.02434,3.38033,2.37007,2.09118,2.58999,2.857755,3.574045,1.6844166666666667,1.54758,2.3868466666666666,3.51567,1.6125325,3.26946,2.414405,3.00805,3.51058,3.052945,1.4761733333333333,2.43933,1.2112966666666667,1.431246,1.59593,3.192925,3.21899,3.41591,2.539025,3.664675,3.896955,2.656045,1.427608,3.295575,3.3232725,3.076335,1.679695,3.058525,3.688515,1.4284975,3.18174,1.6906433333333333,3.68204,3.956615,5.11505,2.485685,3.838695,1.72487,3.524125,5.1856,1.70783,1.2004942857142857,3.827166666666667,2.50614,4.63979,4.08453,2.88051,4.72248,4.541265,2.55032,5.42475,5.0384625,6.33865,4.672325,7.735546666666666,3.91062,1.7219666666666666,3.086066666666667,4.28144,5.13635,3.11801,7.295579999999999,1.4942142857142857,3.6005000000000003,2.01776,1.720338,2.1756433333333334,2.64602,0.4534464285714286,3.1388766666666665,3.1554933333333337,4.125455,2.468695,3.368866666666667,2.1311666666666667,2.46082,2.531875,9.662500000000001,5.331,1.6383459999999999,4.963675,2.397444217391304,0.7138757179487178,3.0858066666666666,7.525118,1.783262,5.03361625,6.12444,2.103965,2.0606975,1.43332,4.70042,3.05521,4.63293,4.006525,2.4713166666666666,4.338395,0.841464,2.742554,5.04525,4.59313,4.64915,2.787805,4.591755,4.175,4.649765,5.21795,5.99995,4.561525,5.1245,4.725825,1.597668,1.887345,2.85172,3.088245,1.311688888888889,4.268265,2.281683333333333,3.2627966666666666,3.85601,3.2375066666666665,2.8119599999999996,1.6303866666666667,3.458766666666667,2.687525,2.77671,2.8286266666666666,1.9003966666666667,1.800675,2.29914,3.054345,5.08575,4.16421,5.275,3.164525,2.23747,3.23775,5.43495,3.3157766666666664,4.587315,4.81646,2.73028,4.52026,1.7989899999999999,4.50761,4.9908116666666675,6.01554880952381,4.784595,5.048,5.24725,3.6130666666666666,4.012919999999999,5.0645,3.00083,3.8356835,3.53329,1.620585,2.892145,1.792755,2.0723,4.134375,5.5189125,3.8356835,4.04753,3.545995,1.5350566666666667,3.917965,2.02135,2.8170033333333335,2.20994,2.668885,1.8598021212121214,1.8598021212121214,1.8598021212121214,0.6865354545454546,0.8530777777777777,2.361527777777778,1.165035,3.35704,1.6856833333333334,4.201105,5.1707,4.755655,3.09704,4.108255,3.381665,4.985675,2.048475,2.95139,2.308775,3.120115,5.632483000000001,4.50625,5.44185,3.98717,0.9798725,2.16198,1.44993,3.604295,3.91776,4.15249,5.30465,5.34015,4.91176,5.4459,4.22874,1.74076,1.3656916666666667,5.67772,1.0046666666666666,1.3228566666666668,3.31417,8.473255,3.322125,3.70982,3.39162,5.53859,1.747975,1.0192383333333332,1.6919925,3.12447,3.46448,3.805945,3.49872,1.850785,6.083325,3.0353333333333334,1.06830375,5.61,3.0498966666666667,2.96908,2.4298433333333334,3.9037333333333333,5.701256666666666,3.1689933333333333,3.4339,3.765233333333333,3.023953333333333,3.011556666666667,3.142526666666667,2.414775,1.9032075,4.52353,5.083,5.11305,1.00127,0.655513,3.5592,2.52809,0.968395,2.2061166666666665,4.65577,4.56488,7.189795,4.792645,3.5191666666666666,1.6620460000000001,3.348415,3.53092,2.965896666666667,2.4648005714285715,4.157425,2.8153133333333336,5.2777313333333336,1.0109977777777777,5.7891,1.7043199999999998,4.571875,4.5711,1.955535,1.0081,3.081,0.40401499999999996,4.057135,5.1027,5.25805,3.116428,1.440738,3.5506333333333333,0.7421588888888889,2.47129,0.7421588888888889,3.788435,3.537315,1.3697225,1.8224975,5.143513333333333,1.7224233333333334,3.69905,3.903245,4.05314,1.280994,1.6060566666666667,3.767845,5.69345,4.628085,3.0561679999999996,1.9345675,2.995225,1.49249,2.04999,2.2091225,2.4730175,4.16051,1.3548777777777776,1.3548777777777776,4.351615,4.526311333333334,8.074454166666666,4.861689999999999,9.256345,2.279315,4.10274,4.0594,1.77275,3.7544516666666667,4.65024,3.560755,5.83985,2.86594,2.26374,3.099693333333333,4.341835,1.14155125,4.003415,4.62016,1.3522983333333334,8.039783333333332,2.87201,2.972755,2.4650675,3.80523,3.878875,4.44385125,2.9752266666666665,2.7253066666666665,2.0953733333333333,3.779533333333333,2.26531,2.1434,8.285414666666666,3.6046,3.1961,4.26632,23.91077628021978,0.652682,2.67536,4.033365,4.58797,8.18163,4.558025,4.03634,4.801425,7.243331666666666,3.306265,1.5766433333333334,4.879205,2.943305,1.0755240000000001,1.0755240000000001,1.0755240000000001,2.096285,1.5593275,2.810475,1.48279,2.88061,1.49428,2.66225,2.354155,2.819825,1.48279,3.08497,2.33618,4.225103333333333,4.574873333333334,5.46555,0.8298241666666667,3.38195,2.616645,5.44645,4.18211,2.24646,2.2540225,1.658605,2.0597125,1.368446,4.025155,1.73589,4.98822,11.714076333333333,2.929953333333333,2.37333,5.090873333333334,2.8317633333333334,4.2885333333333335,6.57325,1.8172833333333334,5.936330833333334,4.45851,1.1300216666666667,1.1203042857142858,6.470391,4.099995,2.13965,3.978215,1.9095575,4.645395,5.3567,4.579745,3.98253,1.4549,4.786475,5.21185,4.872175,6.047915,4.04746,5.71225,5.29135,4.202165,4.99294,3.754633333333333,4.920875,2.1079625,3.37296,4.857215,5.71445,4.215415,6.03705,4.601465,2.84029,3.285833333333333,8.57898,4.530335,3.2454433333333337,3.892575,4.141555,4.55547,4.215455,4.760495,7.174720000000001,3.825225,2.732936666666667,4.291198333333334,2.44937,4.87146,3.0304466666666667,6.8368975,1.58212,4.722445,4.69362,11.898115,0.49928,4.55718,4.15421,0.67574,3.604385,4.093755,4.813015,0.984383,4.827,4.99498,2.7402266666666666,9.727321666666667,3.2039266666666664,1.86079,3.40352,4.67316,5.9109,0.7819858333333333,3.92266,2.096325,5.3752,0.7539584615384616,4.01368,5.64585,5.027,3.526785,6.2954925,4.39771,3.5111475,2.5533933333333336,2.7766066666666664,4.275365,4.89092,5.23835,5.33,4.86666,3.3790666666666667,7.502121666666667,2.997625,3.4520065,2.4746,3.441285,2.5244566666666666,1.5091566666666667,2.924096666666667,3.463566666666667,2.9638666666666666,3.9508666666666667,3.6633,3.1768033333333334,2.9365166666666664,5.53655,3.3515333333333337,3.448375,4.905845,3.4870666666666668,1.0643133333333334,3.0478666666666663,2.9431833333333333,4.04232,3.3811999999999998,3.1014133333333334,4.404696666666666,1.8528866666666666,1.79399,2.91638,3.57451,4.977505,1.06018625,4.98783,3.10719,4.218233333333333,3.0703766666666668,5.049905,3.725625,3.044,5.39465,1.67863,3.655355,0.70420625,4.76882,5.0643,15.67674,3.26855,1.089085,4.91295,0.6143364285714286,2.6068,4.550835,1.803165,1.5617142857142858,4.056285,4.78121,3.20095,0.6316499999999999,2.608495,7.25041,3.85236,6.13865,5.1174,4.770295,3.5404666666666667,3.5728333333333335,3.4070666666666667,6.784518333333333,4.29041,5.38855,2.36011,0.46721277777777775,2.10245,2.84448,1.98309,3.01544,4.608135,2.89442,4.8525,0.823365,5.10925,3.549985,2.773935,1.1573233333333333,2.9659099999999996,2.1494233333333335,4.95092,3.934795,2.090935,1.6168285714285715,4.158865,5.37365,5.2481,6.765783333333333,2.3286233333333333,5.29125,5.02165,4.994125,2.1787400000000003,4.975015,6.431915,5.15605,2.556035,4.915485,2.867835,4.420395,4.07829,3.916275,1.348005,4.88794,2.668946666666667,2.8573633333333333,5.389693333333334,5.389693333333334,4.645245,1.98738,5.12335,1.098635,1.714028,5.0905,3.2408266666666665,1.3622433333333335,3.4434,1.099364,4.435333333333333,5.7544,3.833595,5.32115,4.581625,3.989905,5.3871875,3.660845,3.9304,3.1344100000000004,2.4153066666666665,2.821075,2.9817733333333334,4.07781,1.6594875824175823,3.0536999999999996,4.302345,5.14755,2.438212083333333,4.17235,4.944335,6.307031666666667,3.6992,5.46485,5.4302,5.2651,4.835165,3.923865,3.54307,3.49755,5.0011,5.42295,4.88359,4.917515,4.480775,4.465815,0.7196816666666667,4.83664,4.770925,4.191385,7.303795000000001,4.37122,3.797215,4.314,4.755495,3.79396,4.265805,2.2111537500000003,4.446512500000001,2.3119175,1.3416757142857143,3.495115,2.73982,2.3420833333333335,3.5656866666666667,3.408466666666667,3.192855,1.0292233333333334,2.1030775,4.23912,4.10799,1.78853,1.78853,4.517095,2.05938,2.9875333333333334,4.37123,3.602585,4.10494,1.4941366666666667,1.982355,3.6552050000000005,1.753165,5.0132,4.466565,4.337605,4.20151,8.85015,2.705225,3.67743,4.996305,4.201995,2.9706233333333336,4.14774,4.609185,4.449985,2.290385,3.0780266666666667,4.465375,4.24737,3.99795,3.747085,1.5023975,3.730865,4.34443,4.442415,4.031095,4.3085225000000005,4.3085225000000005,3.2000525,5.0417,4.65965,4.20695,1.737826,7.544425,3.950825,5.23915,4.45131,4.838465,4.68824,5.01215,3.307935,4.61959,4.276115,5.45915,2.11374,5.1391,6.288834444444444,5.1678,0.7549710000000001,4.725020833333334,1.20385,4.772875,4.760035,4.61169,4.2291,5.6832,3.8449333333333335,3.8449333333333335,0.867535,2.0031125,4.53306,3.621085,4.285795,4.64587,5.8204,3.231965,4.28178,1.41422,2.98088,1.52284,1.1947575,4.284586,0.856863,2.79988,3.2576733333333334,1.3272,2.549825,2.6061633333333334,1.2067983333333332,6.28527,2.020925,2.4119433333333333,4.594615,2.2943525,2.6953566666666666,4.69852,4.57035,3.818433333333333,3.19487,4.1688,1.681022,1.9985591666666664,4.66785,0.6273957142857143,2.2001500000000003,2.6170083333333336,3.1324233333333336,2.908416666666667,1.3812985714285715,0.8459,2.3061633333333336,4.30216,1.208137142857143,2.245335,1.3925425,6.015244166666666,2.4043775,4.919825,4.306875,4.420495,4.77866,5.45915,4.406615,4.382405,1.6576766666666665,3.8536,1.7792020000000002,2.77326,1.1716885714285714,4.270945,2.03321,5.660302,4.094125,3.98291,1.760454,6.6624225,4.83909,1.4890999999999999,3.86187,2.91903,3.976455,3.3986,1.8911875,1.8911875,3.2795533333333338,1.57378,1.57378,2.1787400000000003,2.590003333333333,2.08589,1.3464116666666666,3.4847,1.03766875,3.2079400000000002,2.3067675,1.741955,1.558885,2.1901125,2.4035825,0.2700782352941177,2.5467,1.23595,2.25603,1.9475233333333335,2.514725,1.0481288888888889,1.049398,3.5849333333333333,3.1395866666666667,1.8911875,1.744025,1.5563566666666666,2.4104666666666668,2.4516,1.764414,2.20985,1.1143100000000001,3.6011666666666664,3.6077999999999997,2.4275166666666665,1.478812,1.295514,2.83495,1.295514,2.83495,0.69308875,0.69308875,0.5163361111111111,2.48247,2.5931133333333336,0.69308875,2.247785,2.5326566666666666,2.297785,1.84744,0.80739,0.69308875,0.69308875,1.545832,1.545832,1.9416925,1.744025,0.69308875,2.39648,0.4478561538461538,2.80129,2.6042166666666664,2.762776666666667,2.715173333333333,2.715173333333333,0.396699,0.396699,2.1787400000000003,2.0267399999999998,2.2713,1.9818259999999999,0.396699,3.6153,2.704375,1.6981860000000002,0.626125,1.6981860000000002,0.626125,6.59889,2.3344533333333333,4.2859,2.938973333333333,3.4239333333333337,2.9479133333333336,3.247006666666667,3.466533333333333,2.3507475,1.6431875,2.9761900000000003,3.647933333333333,2.255193333333333,1.545832,2.3907195238095236,2.3907195238095236,2.65216,2.0669025,4.223555,2.29743,3.5424666666666664,2.67944,1.802788,2.39348,2.46081,0.7897872727272727,1.51104,4.21742,1.880004,3.4951666666666665,2.7101933333333332,2.659675,3.9568666666666665,1.8048166666666667,3.563,3.2110833333333333,4.0101,1.2303060000000001,0.2837365517241379,1.2597514285714286,1.2597514285714286,1.1471333333333333,3.2824000000000004,3.9123,2.52433,1.9420566666666668,1.9420566666666668,2.290795,1.6906433333333333,1.07949,1.5937433333333333,1.5937433333333333,0.69308875,2.1787400000000003,2.75069,3.2944166666666668,2.3067675,2.09442,2.09442,2.09442,1.0406166666666667,1.5523285714285715,1.5523285714285715,2.578275,3.30953,2.8590145075757576,4.402355,2.6303199999999998,2.73141,3.886155,3.84358,7.747485,4.414625,5.0349,3.670033333333333,13.41922,4.66457,3.54441,0.94882,4.050155,3.19379,2.205065,3.571335,5.5671,8.928498333333334,6.16085,0.53495,3.97014,2.768775,3.53426,2.51015,4.702575,6.30525,4.67402,8.25525,3.122095,3.72413,3.984375,3.1541647727272726,8.138312358974359,3.2974633333333334,2.535153333333333,3.67387,4.283255,4.95668,3.745065,6.603964,5.3961,1.2640040000000001,3.69731,0.83219625,5.0824,5.87925,3.487895,5.52785,4.968755,3.661115,5.18765,4.057355,10.633995,3.78822,4.878826,3.795166666666667,4.71794,2.77317,0.986215,0.986215,3.426015,3.7712,2.066805,2.242265,3.718845,5.6108,4.14187,1.94558,2.2986475,3.51146,2.6786166666666666,1.12189875,4.341435,5.0156,8.43808,1.729598,3.74325,3.53763,3.36233,2.853153333333333,8.24724,4.103875,3.896433333333333,3.0180433333333334,3.815795,3.411766666666667,3.0641133333333332,3.1591066666666667,3.9177,3.91055,4.892925,4.23351,0.36628933333333336,1.3916766666666665,2.25118,1.671515,4.902235,3.56356,2.5931866666666665,2.1639975,4.79891,4.11720425,2.3694175,2.373875,0.962241,2.68545,2.639276666666667,2.639276666666667,5.3435,1.9000125,3.29595,2.21225,2.0571066666666664,1.6372033333333331,2.86329,3.880215,4.276325,4.56662,4.749435,4.971785,2.782335,2.5539166666666664,1.805546,5.599,5.571933333333333,2.94962,2.8710966666666664,2.237555,2.3895,4.136441666666666,3.28139,4.54158,3.667025,3.264285,4.4336,2.977273333333333,3.47652,4.63254,2.3992033333333334,3.1553466666666665,0.3937942857142857,3.5556666666666668,2.946353333333333,3.703735,5.7692,4.475085,6.007559166666667,1.9517025,1.6650366666666667,2.82496,5.43275,6.0232,4.742935,3.4187333333333334,2.0634366666666666,5.15325,2.51987,4.76819,2.71294,2.2471825,5.23725,4.85089,4.929295,1.6021,1.9352575,0.9869920000000001,0.9869920000000001,1.1079599999999998,0.8570328571428572,0.805968,1.7352728571428573,4.477475,11.556926666666666,4.17696,4.487505,4.161855,6.2233374999999995,2.598065,1.6353166666666665,3.2791625,2.90721,4.10848,2.405536666666667,2.5001633333333335,2.802913333333333,3.31367,2.60471,3.4126333333333334,3.1113999999999997,3.0312133333333335,3.4690999999999996,3.4736333333333334,3.2085266666666663,2.9051533333333333,3.1789533333333337,2.657503333333333,2.9929466666666666,3.3668,2.96602,3.1326699999999996,2.39026,6.069099619047619,3.26683,4.562737333333333,3.3152000000000004,3.2628633333333332,3.7510666666666665,2.843436666666667,2.74027,3.2559766666666667,3.1436833333333336,3.5528666666666666,3.4435333333333333,2.0813325,2.6394800000000003,2.91826,2.977125,2.977125,3.1571033333333336,3.710233333333333,2.50083,2.4756533333333333,3.4283333333333332,4.2619,2.511906666666667,2.7159,2.5801833333333333,2.9366966666666667,4.858456666666666,5.0629,1.7348166666666665,3.3554999999999997,3.582466666666667,3.569556,3.481866666666667,3.7284,3.5376666666666665,2.5427500000000003,3.341556,2.02818,2.9001615,3.4254333333333338,3.6363,2.7984533333333332,2.8736800000000002,3.660066666666667,2.97279,3.098876666666667,2.494635,1.3039783333333335,3.6691333333333334,2.650726666666667,2.6488466666666666,2.3907075,3.2142366666666664,3.2519533333333333,2.09916,5.711502,2.542613333333333,0.961716,4.91525,1.9413425000000002,1.658025,4.25652,3.870225,3.338755,2.1599,1.4468875,3.1456,3.14484,3.363165,0.44272,2.06814,0.44272,1.8284,1.4468875,2.678055,3.993125,2.757225,4.16075,4.15208,0.6334693333333333,3.29547,0.95708,0.49255352941176467,5.0253,4.014105,4.72479,2.6565,6.16905,4.456105,3.576155,3.19334,3.785966666666667,1.807514,6.13845,3.612315,4.189955,4.349095,3.1690666666666663,2.215053333333333,2.1750766666666665,1.29729,1.92055,1.2336625,1.2336625,4.36426,2.3533933333333334,5.9043133333333335,2.1185875,1.893715,1.915255,2.0807945,1.92081,3.911295,3.912305,1.991495,2.00696,2.0807945,2.499835,3.542652,2.04107,4.997439999999999,2.1185875,3.1745975,2.79386,3.05639,5.3509,5.0499,2.1888675,2.4317975,2.33518,4.110485,5.13945,5.26875,2.2249425,4.30134,1.90768,1.783345,5.40525,11.674655000000001,2.48356,2.6765866666666667,2.3691033333333333,4.65181,4.501985,1.8818925,4.78711,4.41391,3.029905,40.44276333333333,2.972096666666667,3.0740933333333333,0.46693833333333334,5.374204166666666,2.16906,0.9232733333333333,4.441685,3.69065,2.206745,1.939595,2.34722,4.119005,1.401492857142857,3.1746239999999997,4.097395,5.01925,0.9097419999999999,4.945725,4.71878,4.99736,2.9905233333333334,1.743875,3.8120725,4.47359,4.25077,3.011665,3.32716,4.28684,11.962805883838383,3.076506666666667,3.081,4.91299,2.87238,4.71558,3.430245,2.285555,3.512735,5.5535,5.3239,4.61646,4.893615,2.55663,3.94949,4.497875,3.59326,4.58385,4.83115,0.09869021739130435,2.341575,4.87083,2.47366,1.581065,0.6014341666666666,0.6014341666666666,2.44941,2.68742,3.52712,1.240478,2.772123333333333,4.35029,2.546705,4.514358333333333,0.5601885714285715,4.50023,4.347695,4.25089,4.398875,4.547915,1.3422625,1.276675,3.486166666666667,2.8891299999999998,2.911576666666667,4.3167523333333335,4.74125,6.64306,5.507,4.74956,3.322635,2.2711916666666667,1.5567833333333334,4.96345,0.29722933333333335,3.143685,3.58597,3.81079,14.236963333333332,2.14690375,3.2198166666666665,0.95173125,4.48483,8.15692,2.96939,2.2483999999999997,5.4263,3.3516999999999997,1.3779233333333334,3.37713,2.65056,2.847355,5.0134,3.217963888888889,1.259225,8.62245,0.68412,5.2872,3.091311388888889,1.4017175,1.9745588888888888,3.0364075,3.0364075,3.774995,4.1734925,1.431125,2.368555,2.53861,3.318055,3.090715,2.525685,2.899285,3.246345,6.458436000000001,6.4368,3.904125,3.03892,5.38635,5.4769,4.477045,3.266695,3.30598,5.0794,5.4661,2.41969,2.578516666666667,1.49092,2.1906666666666665,2.4283,1.51637,3.2875,3.6592333333333333,3.5036,2.972186666666667,2.6530366666666665,1.5582,2.5230533333333334,0.4492227272727272,3.2250300000000003,1.3774642857142858,1.98542,3.281026666666667,2.4643866666666665,2.5197966666666667,1.00201625,2.389685,2.43568,3.58838,3.41669,5.48205,3.45199,3.01205,2.1166666666666667,3.26356,4.668995,2.462275,2.759035,1.90196,3.702855,2.574585,3.65362,1.35541,0.5935509999999999,2.3989225,3.173095,2.96854,3.808135,4.77848,8.6999,2.99612,2.597836666666667,1.7849133333333331,1.926726,1.926726,2.5601533333333335,2.718776666666667,5.04395,4.849745,3.783815,4.90126,4.7165,4.891675,3.7248558333333337,4.39721,8.633062500000001,2.5017,0.486388125,2.8773766666666667,1.4114000000000002,0.9760571428571428,2.722606666666667,0.870018,2.2308475,4.757575,5.5806,5.9218175,0.8994175,6.74535,2.09686,1.5404366666666667,2.89738,4.763435,3.2479,2.533475,3.94226,3.2973033333333333,4.050033333333333,2.9190199999999997,2.821153333333333,2.8315133333333335,6.610105000000001,2.416225,3.825785,3.79475,3.4406000000000003,1.3702500000000002,1.10277,4.237425,2.88723,3.128906666666667,6.8348700000000004,3.442495,2.396695,2.5553,3.51602,3.5279333333333334,2.671416666666667,4.324538333333333,3.196566666666667,4.745225,2.338083666666667,1.73066,5.0965,5.62345,4.64893,4.39025,1.61655,2.3255675,1.8601175,3.09136,1.3601566666666667,0.9121733333333334,2.634708333333333,1.9028025,1.9694475,4.18066,0.9562750000000001,5.9172075,1.5421325,0.777651818181818,3.925933333333333,4.541795,0.9931028571428572,3.7053874999999996,2.907541875,0.8459,4.61979,0.20903785714285716,0.20903785714285716,0.20903785714285716,0.20903785714285716,0.20903785714285716,0.20903785714285716,1.813586,3.96926,1.813586,1.813586,1.7358466666666665,0.20903785714285716,0.20903785714285716,3.427633333333333,3.0024366666666666,3.9698,3.40169,2.58316,3.371675,1.600542857142857,1.8777719999999998,3.7306809999999997,1.881168,3.3350000000000004,2.6731735555555556,6.672409999999999,5.15525,4.539125,4.36776,4.61961,5.6665,4.470335,3.820145,7.6031525,3.6638,3.7831333333333332,2.597653333333333,4.984966666666667,2.57764,2.1229725,1.9201833333333334,4.97952,5.2126,4.51616,5.4353,5.46955,4.84075,5.04665,0.7768272727272727,0.7467928571428571,0.7467928571428571,4.855965,2.247926666666667,3.478165,0.9482057142857142,5.27235,1.575942857142857,2.3902,2.6513400000000003,4.6898333333333335,4.6898333333333335,7.0056,4.35306,1.5391533333333334,13.410628333333333,3.1567000000000003,1.1835444444444443,5.1849,4.521215,3.177205,3.55239,2.42605,3.9723333333333333,0.67286,3.6079666666666665,3.707933333333333,3.5434,3.109576666666667,1.4610766666666668,1.3547933333333333,4.944186666666667,3.1897533333333334,3.1630299999999996,3.6340333333333334,5.292235,3.456495,0.806868,2.2466266666666668,2.4579566666666666,2.7220916666666666,3.8612,3.495233333333333,3.521433333333333,3.7481333333333335,3.0484666666666667,2.3955033333333335,2.380403333333333,3.0127699999999997,2.9228400000000003,3.91918,3.519105,4.61243,2.6444933333333336,3.143133333333333,2.78665,1.6715399999999998,1.8780733333333333,3.1546161904761902,4.122333333333334,2.08268,3.1967,1.7322,3.7335333333333334,5.093506666666666,5.120035333333333,2.639225,2.77695,2.663475,2.659,1.637757142857143,2.4255075,3.2286235714285714,2.39129,3.523733333333333,2.6787,3.830689666666667,4.052975,1.2485777777777778,1.229335,1.7872225,2.2796875,3.1047533333333335,3.4032666666666667,5.03345,7.244815000000001,3.761935,4.917275,4.81547,15.936384333333333,0.5236,11.167695,1.1460666666666668,2.93227,3.013946666666667,1.8815600000000001,3.286105,1.5270899999999998,1.427608,2.68332,1.426558,2.7459533333333335,2.25667,3.254113333333333,2.61115,2.8666033333333334,1.52231,0.7709925000000001,3.4811666666666667,2.5191833333333333,3.0929566666666664,1.0406166666666667,3.7620666666666662,0.7661875,0.4048638461538462,2.8146133333333334,4.23214,5.16205,5.22895,0.9632636363636364,4.031075,4.4828,1.1599925,2.5283,5.7844375,3.011915,3.85478,3.553325,4.05082,1.900695,3.81952,2.76121,2.863165,3.306985,2.59048,2.67794,3.5789,2.9086,3.576465,3.562365,3.20814,5.4836,1.87249,4.695845,2.1528575,4.544035,5.26594,2.0573975,3.06198,2.9809699999999997,5.66996,2.53076,3.109225,5.8058,4.2859,4.270115,1.8058466666666666,2.3807,5.4539,3.5807,4.58398,3.595333333333333,3.2605733333333333,2.956186666666667,3.743,3.151286666666667,2.6580833333333334,2.71307,0.4473944444444445,2.40044,2.1800125,4.873785,4.93577,3.3376333333333332,2.8569333333333335,3.4678,9.06408,3.42543,3.72827,2.8786533333333337,4.128495,2.98203,3.8238716666666663,2.8940033333333335,2.4323275,2.9349166666666666,6.35215,4.53171,2.015136666666667,2.98959,2.740495,2.63381,5.069753333333333,1.639686,6.217386666666666,4.43545,4.891555,4.732985,5.56215,3.45786,6.932398333333333,5.3363,4.15586,0.7152071428571428,2.463985,1.4589225,3.0578266666666667,3.6277887499999997,3.983395,3.725505,5.23895,2.798273333333333,4.837555,2.7906866666666663,3.4360999999999997,3.1273999999999997,5.02685,4.81999,5.03725,3.26422,7.206455,4.55352,1.5236383333333334,5.864,3.246985,3.99246,2.07636,2.0848366666666664,4.905003333333333,1.2109514285714287,2.4770733333333332,2.07624,3.935485,4.152325,2.6861599999999997,3.3532666666666664,2.9455073333333335,2.7260633333333337,4.438055,1.256122,2.10859,2.24217,2.617243333333333,2.3577566666666665,2.533873333333333,2.528993333333333,3.93696,2.7891133333333333,2.7212566666666667,4.14078,3.059295,4.32226,3.501855,1.5168190909090908,1.5168190909090908,5.05505,3.258103333333333,1.669055,1.3495025,2.12232,2.0239975,1.087954,1.3858966666666666,0.630548,1.4430800000000001,1.3928833333333335,2.6469833333333335,2.212056666666667,1.70324,1.81344,2.2456533333333333,1.4208266666666667,1.6939399999999998,1.6745866666666667,2.14025,4.030415,2.51241,3.346633333333333,2.843725,5.6815750000000005,2.83785,4.17875,3.978583333333334,2.05858,3.924295,3.28336,1.872265,3.309295,2.10806,2.88607,3.838315,2.527375,3.783005,3.29625,3.9095,3.5716,0.8870077777777777,4.323275,3.798485,3.48796,3.49077,3.0634833333333336,5.5359,4.5206,5.457185,8.3998725,3.940315,4.470975,2.8798066666666666,3.78827,3.99282,2.10039,2.659665,4.761235,2.388025,5.767936,1.7412199999999998,2.53074,8.479066666666666,3.0401733333333336,4.20694,1.4057499999999998,4.74079,4.74035,3.7176333333333336,4.677935,4.914265,6.213520000000001,17.088497202380953,0.5900764705882353,1.0481288888888889,3.4992,3.865845,3.667115,2.196705,3.26482,4.065215,4.7588,3.327175,5.00635,1.6639833333333334,1.6639833333333334,5.7509,0.7536772727272727,1.8549700000000002,3.0409,3.93899,0.34421461538461534,1.77953,4.490492583333333,1.0990316666666666,2.920806666666667,2.60543,2.92136,6.95791,2.3623233333333333,3.2930533333333334,1.9100266666666668,2.107126666666667,4.4742775,4.45017,2.16569,6.953655333333334,1.64115,2.87725,4.53606,6.9729375,1.8009666666666666,2.30079,2.5066833333333336,1.3632466666666667,2.784005,2.0224875,3.922175,3.327435,1.3546775,1.8921936666666668,1.8921936666666668,3.4998666666666662,5.8035,4.29765,3.735715,4.406355,5.48405,3.047365,3.53804,3.86925,3.63698,5.430289999999999,3.5961100000000004,4.532825,0.895205,0.3811575,5.2693,3.694575,2.4146433333333333,7.91311,1.5808499999999999,4.444166666666667,4.038295,0.3543325,1.9269266666666667,1.24186,1.8036533333333333,2.0769166666666665,5.623135,3.0075,2.742105,4.581185,4.98359,4.88184,0.5619915384615385,1.967175,0.561563,5.644,1.725426,5.0033,2.2540975,3.20781125,2.996785,4.601185,4.572445,4.97154,0.9220363636363637,3.135345,4.236115,2.2800175,1.7866525,3.449285,3.452635,3.514925,3.6176675,5.4166428571428575,4.271415,5.5668,2.74562,1.0074233333333333,3.6103,3.834545,0.7116576923076923,4.233985,4.2085,3.784465,3.460995,2.6497366666666666,4.94812,3.450055,2.87392,2.1111,3.610935,2.03176,4.746465,3.695345,0.7470153846153846,4.459875,4.05709,3.13337,4.79179,4.142305,3.00179,3.74241,0.689271,3.1892600000000004,4.024990000000001,4.88953,3.507233333333333,2.584375,3.446733333333333,2.584375,4.45526,2.83376,3.676066666666667,1.5896083333333333,2.9202,1.924285,4.42375,2.8482766666666666,5.74945,3.5822000000000003,3.360466666666667,2.9504033333333335,2.352549285714286,2.352549285714286,2.352549285714286,2.7620633333333333,0.8509783333333334,4.52033,2.2541966666666666,1.6219666666666666,3.6463666666666668,2.47811,3.33288,4.486875,4.903725,4.57076,2.476565,1.486266,4.19472,1.9472639999999999,2.5133199999999998,2.873305,3.837425,1.9617525,4.47195,2.75341,1.7884699999999998,4.82943,3.981065,3.868355,3.49238,0.7040222222222222,2.3579766666666666,5.06355,7.065185,5.8296,3.05742,6.2672,3.26094,3.538365,2.0521775,2.261265,5.3678,2.194275,4.179825,3.566285,4.692755,9.091916666666666,3.94197,3.968915,3.676495,4.547435,4.30614,3.4319200000000003,3.4319200000000003,4.534335,3.782376666666667,4.481185,4.007495,4.37812,4.26691,4.37895,1.19297625,4.0842,4.35046,5.49365,7.453110000000001,5.3813,3.8358853333333336,1.9141833333333331,1.6444433333333333,2.5507487500000003,4.757765,3.91215,4.32185,3.0951233333333334,4.692015,5.5155,4.97492,4.701705,3.142186666666667,4.50427,4.901745,5.70245,5.59815,4.1077,7.21903,4.56243,2.17733,5.3416,4.430855,4.541765,4.360435,4.95801,0.7781518181818182,4.611775,4.781775,1.3165342857142857,1.68967,5.3187,5.013,9.354249,5.5099,5.29715,6.12875,2.86606,3.04642,5.1317,1.66886,1.66886,2.40488,1.54122,2.8376425000000003,3.3791666666666664,1.8959225,4.062263181818182,1.2685266666666666,2.011535,7.395175,3.302131666666667,3.24698,2.82215,3.891555,3.855325,3.0789933333333335,1.0674844444444445,3.750425,2.7456,3.80755,4.12589,3.6809449999999995,5.30015,5.55035,5.13715,3.76439,5.2019,6.6227,4.70687,3.1698,3.852615,1.9123575,1.9123575,3.799985,4.73835,2.2575533333333335,2.6648166666666664,2.405294848484848,3.164153333333333,1.69187,1.69187,4.864245,3.26437,2.157885,3.504115,2.954235,1.88601,1.18677,1.4813333333333334,2.633535,0.482041052631579,0.9050555555555556,2.61166,4.51211,0.4279145454545455,4.523275,1.9952459999999999,5.3531,3.717565,7.1696125,4.490435,5.43487,4.733635,5.28705,4.202725,2.59665,1.932424,4.618305,2.755,4.11296,1.2270166666666666,4.85354,4.45986,2.60903,2.43007,3.71409,4.50908,3.83215,3.696045,3.802115,3.49043,2.88762,3.613055,1.0909342857142856,2.7217,2.150305,2.6009,4.201395,7.44753,0.862396,1.5251866666666667,1.5251866666666667,2.1514800000000003,3.857675,2.707335,2.954435,5.6593175,2.74532,1.10754,1.10754,1.10754,2.5711,3.0300994999999995,4.25267,3.041055,3.87822,3.24258,3.4917,2.85673,3.2514233333333333,3.48064,4.15412125,2.0025725,1.087954,3.05001,2.0025725,3.66104,1.4422333333333333,1.8777766666666666,2.460035,5.300389333333333,2.564905,5.588181,5.300389333333333,3.023276,1.6299066666666668,1.6299066666666668,2.92657,5.61416,1.6299066666666668,2.26999,5.78459,2.13645,2.42754,4.8436,3.5524,4.22299,1.60656,3.31879,4.31979,1.7676033333333334,2.115415,3.67353,1.60656,2.4165,2.03099,5.31442,2.46221,1.101164,2.411265,2.96935,3.055305833333333,1.786015,1.9202425,3.758,1.7404533333333334,1.882155,3.137125,2.0799,2.97681,3.79727,2.03053,2.67919,2.137195,5.61434,2.163515,2.88498,2.59904,2.59904,7.5623,0.8753799999999999,3.137025,2.19173,3.07875,2.31203,1.31254,1.31254,3.09318,1.87854,6.3137,2.1609,3.492815,3.05636,6.61163,2.554225,2.683055,5.6512150000000005,5.6512150000000005,2.35429,1.41017,1.172125,1.172125,1.41017,2.00056,1.1832466666666666,1.0955583333333332,1.52959,1.6711799999999999,3.509585,1.87545,3.34464,2.913365,2.832665,2.671995,2.38805,2.015895,3.141119166666667,3.141119166666667,6.23399,2.239635,2.743585,2.37426,3.10544,2.52041,2.6562,2.443545,5.1586324999999995,1.8163475,1.6165833333333333,1.38076,2.303443333333333,5.49248,4.06776,3.37386,3.00719,1.545665,1.545665,1.545665,4.69988,2.48316,1.0955583333333332,2.99499,2.98922,1.1662075,4.90488,2.9195925000000003,6.43887,3.12704,1.80833,3.314155,3.0457300000000003,2.046025,3.34045,4.44632,3.66737,1.742065,2.473615,2.94759,2.633335,4.70697,1.95979,3.145445,2.440845,5.89316,4.45501,1.89581,1.95403,5.21265,4.67468,5.08956,4.73272,0.731674,0.731674,2.796391,2.796391,0.874686,3.25975,3.91521,5.71857,3.97878,5.25551,2.247075,4.727736666666667,4.727736666666667,2.13288,3.216635,2.974995,1.093054,4.31203,2.997655,3.299455,2.66293,4.4144,2.30334,1.751985,3.17681,2.55343,2.49487,4.91007,2.48363,1.871105,3.726945,5.54896,5.08166,3.90219,2.60304,3.24105,2.564055,4.96186,2.47782,3.28381,1.95831,5.69483,4.27662,2.186885,2.91266,2.473825,4.5303,2.426445,2.46053,2.706355,7.28359,4.71534,3.29782,2.36887,2.263915,6.01191,2.62695,2.7262,4.96696,2.923685,2.70289,2.539235,2.589525,1.6327299999999998,1.92553,1.29745,1.71584,1.8312433333333333,1.8862233333333334,1.59593,2.1146366666666667,1.692445,1.6327299999999998,3.62723,3.52722,2.25357,1.6616499999999998,1.6616499999999998,3.6539366666666666,3.6539366666666666,2.8702566666666667,2.8702566666666667,2.520185,1.841285,1.68588,3.4003,2.147995,2.147995,2.27722,2.27722,2.87732,1.946555,4.50168,2.04854,3.079005,1.9517233333333335,1.9517233333333335,1.51429,3.76256,4.66289,1.4422333333333333,4.65797,2.03053,2.05784,3.95039,2.83443,1.84922,2.232775,4.6557,1.84532,5.19468,2.969415,3.11855,2.99236,2.796525,6.20004,3.08034,2.364165,3.7113523076923074,3.009555,5.21377,3.258795,1.50544,1.50544,3.84782,4.58949,4.29033,5.15387,2.63981,2.68833,1.623355,2.82056,1.617485,2.818965,1.795915,0.802776,0.802776,0.802776,2.014710833333333,5.027283333333333,2.014710833333333,2.158615,3.6800049999999995,1.629395,1.89099,5.13299,3.20057,4.5696,1.6777733333333333,4.72433,1.6777733333333333,1.6777733333333333,2.175915,1.799035,2.181515,5.32981,2.181515,2.41306,3.44334,1.972995,1.614195,2.78188,3.19243,3.4339733333333333,3.264483333333333,3.98254,1.6072766666666667,5.07715,0.8647463636363636,4.710275,4.53602,2.665435,2.665435,0.8252727272727273,3.8095,2.9384099999999997,5.8377,4.89234,4.035665,4.98314,4.904045,4.31257,5.06845,4.55016,4.15907,4.274925,3.72677,5.04775,5.2736,3.27117,3.34,4.47107,2.3808866666666666,1.589646,4.64741,4.19665,3.3583,1.5598285714285713,3.688015,4.45288,6.097989999999999,1.04714,5.14185,4.49217,2.10332,1.88436,3.04659,3.38333,1.70827,1.50544,3.721615,3.20427,2.597115,4.3858,2.95394,1.09958,2.5286466666666665,1.2541357142857144,3.0684633333333333,1.6348833333333335,3.1954499999999997,1.8233325,2.79473,4.779095,4.41905,4.79434,3.10972,2.236365,4.70076,4.09386,3.17911,4.44712,4.26752,2.556173333333333,5.7939,4.675335,3.00838,2.50907,3.689885,3.03044,2.9247,2.7131333333333334,4.27767,3.93042,3.77328,2.5194,2.4753866666666666,2.3105366666666667,2.9829033333333332,2.4046,2.2187033333333335,2.5372833333333333,2.190685,1.4485,3.057161,1.1683275,1.9200175,1.8676125,2.27968,1.4785625,1.8080825,4.40521,4.48415,1.94787,4.231245,4.329185,6.271201666666666,2.0643733333333336,1.655018,6.644,3.512905,4.85054,4.84052,4.244605,1.92862,3.323955,2.67985,3.1727,4.384085,0.6755075,4.52293,2.04324,0.8157272727272727,4.886835,4.43276,3.850645,1.960582142857143,4.57912,3.522675,2.6092133333333334,2.2955433333333333,2.4342466666666667,2.05819,0.554612,3.18117,3.10385,4.983955,2.61785,1.9172525,4.194535,0.9953725,1.8130549999999999,1.8130549999999999,2.69394,1.8130549999999999,4.02876,2.74285,4.588445,4.510695,6.27415,13.937502499999999,3.3629,5.62455,2.63623,4.665705,3.813785,6.854749999999999,2.9779533333333332,4.42294,5.11825,3.86467,1.3921033333333332,4.612645,2.7825633333333335,2.945513333333333,1.086768888888889,2.184765,3.78955,7.781438333333334,4.52142,2.590003333333333,4.565065,3.2795533333333338,4.386635,4.974805,4.77446,2.85178,2.7245233333333334,4.045565,5.83185,2.548905,5.0523,2.01283,2.01283,2.98729,4.914875,1.14869125,4.237678,2.282325,3.94875,2.4370833333333333,2.4229,2.7239066666666667,2.001863333333333,0.7486285714285714,3.760835,2.659753333333333,4.903575,4.732545,0.2398403125,5.27055,5.1124,4.86317,6.8676,3.747666666666667,2.8274166666666667,2.48537,3.242316666666667,3.5784333333333334,1.4021933333333332,3.0675033333333332,2.8200333333333334,1.4195849999999999,3.4121,3.20532,3.0880799999999997,3.4976333333333334,1.6762127777777778,4.25989,3.146825,5.44695,4.72808,3.85898,1.4831033333333332,2.7366966666666666,1.258,1.81307,1.258,4.85438,3.571733333333333,1.6996379999999998,2.564475,3.567855,3.611955,3.74476,3.72148,0.349794,1.6398929166666667,3.55788,3.84188,4.78298,2.4605675,3.1773433333333334,2.97589,2.7926033333333335,2.86256,3.162125,4.8266,2.65735,2.4739666666666666,3.15315,2.63109,2.965946666666667,4.50221,1.9224,4.549975,4.234728333333334,5.8728,7.8266625,0.7610355555555555,0.849785,3.90425,7.791525,1.682598,3.322645,1.4913133333333333,1.4913133333333333,3.54741,0.42598555555555556,4.12866,4.466405,2.653025,3.942475,3.041745,2.46567,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,2.023075,4.501985,5.342141666666667,3.8213116666666664,5.7077075,7.890010416666666,3.390125,2.8318433333333335,0.8501566666666666,3.98368,1.19415375,7.463775833333333,4.6319325,2.899755,1.19415375,2.72672,3.065,2.0235375,5.7133087499999995,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,4.54251,1.709555,4.765625,4.85747,1.818572,4.819405,4.657265,5.20445,5.05164,3.8488967857142855,3.159735,4.30564,2.5347,7.3136399999999995,4.637655,0.7593,1.3654899999999999,1.509242857142857,3.6494666666666666,3.6494666666666666,3.344711666666667,4.15747,4.749275,4.267735,4.2993,3.5687333333333338,2.1390833333333332,0.6684971428571428,3.903185,3.5359,2.947605,4.201245,3.18931,3.2780225,4.78875,4.184385,6.905452500000001,4.07032,5.1404,5.86285,4.62112,1.4556,3.824815,4.597494666666666,35.77517853066378,1.527165,4.40587,4.12407,4.515955,4.14759,4.5603,5.23075,0.3987266666666667,4.900105,4.36515,2.25661,1.75559,4.05448,1.6954275,2.33188,2.63694,1.6903,3.068995,2.4516,3.62167,3.48314,0.6164115384615385,3.721325,3.5256,0.47621736842105267,2.5713266666666668,4.05237,2.48189,3.726235,1.770385,4.790425,3.67682,3.10497,3.90691,3.547145,4.56629,3.214335,4.259445,2.0921925,4.597494666666666,3.60653,4.058105,3.45567,1.826802,4.89496,3.522565,7.020943333333333,3.10729,4.70691,6.7792575,4.682841,2.2969475,5.12695,7.684140000000001,7.349476,2.71285,2.464085,5.13395,5.772953333333334,4.602725,4.110005,5.65175,2.1815575,2.348325,2.29732,60.72087430604698,5.28565,4.243165,2.4056075,0.991598,2.97278,2.89134,3.4669333333333334,0.9597666666666667,4.8271,0.7704555555555556,7.761506785714285,1.9472639999999999,3.312663333333333,1.76796,2.611225,2.471156666666667,2.3592733333333333,2.491423333333333,2.1281833333333333,3.1270399999999996,1.4366633333333334,5.177396666666667,3.6547666666666667,1.52263,2.498623333333333,1.3877499999999998,1.468,7.21251,5.6368,3.08661,5.7358,5.8896625,1.5484142857142857,3.4527666666666668,3.954655,1.6240675,5.033,4.174945,3.917035,2.309595,3.047851666666667,3.3599666666666668,3.88055,5.418,3.945175,4.719,2.00307,3.584565,4.545,3.27548,1.6271,4.67963,3.14237,4.18463,4.841455,3.684255,4.090085,4.839315,4.23414,4.17353,4.72272,3.872825,3.1705666666666663,3.785655,4.50338,2.91788,4.445165,3.78211,1.64442,1.64442,4.330755,5.08245,5.42475,4.473195,4.79612,3.554733333333333,2.777355,4.312205,5.0007,0.7124718181818182,5.23855,7.3468800000000005,5.39375,5.70755,1.3785222222222222,3.1634,0.7376916666666666,0.7376916666666666,0.7376916666666666,3.495395,3.3978333333333333,3.2904633333333333,3.4119333333333333,0.9609730000000001,5.08845,4.70738,3.432215,1.8584425,2.0889025,4.11594,4.33732,3.67176,3.4099320000000004,6.6585,3.66972,2.5416833333333333,5.09235,6.70435,2.002725,4.11796,3.578695,2.993755,4.329815,4.40392,4.74527,5.4737,3.656495,3.9998022222222227,2.191266666666667,2.191266666666667,0.6883072727272728,9.222194,2.05581,6.3684,5.51465,4.87048,4.70028,3.63027,3.141495,4.91889,7.638752500000001,5.675316666666667,2.0590333333333333,4.434215,1.17775,3.61283,2.1119933333333334,1.0261411111111112,1.2481285714285715,2.82412,3.3537666666666666,2.795923333333333,1.319967142857143,2.92116,3.2538300000000002,0.9508033333333334,2.8750133333333334,3.32811,1.5869360000000001,1.7028240000000001,3.402233333333333,3.1013366666666666,3.2307900000000003,2.63395,1.8632300000000002,5.27365,5.11545,4.30144,4.816395,4.91988,2.94958,4.518435,5.6231,5.01745,4.085915,4.213585,13.71296,7.77333,3.085596666666667,3.49233,2.6185033333333334,3.74574,2.98891,4.44519,1.3248866666666668,4.79108,4.403605,1.2827216666666665,3.44559,3.0878633333333334,4.36222,4.073035,3.77553,6.9277,7.019056666666667,4.274225,1.70265,1.70265,1.70265,4.89721,1.1176333333333333,1.400625,0.5289933333333333,4.62357625,3.1032833333333336,4.205355,0.975873,1.10167625,3.48048,4.381015,4.141035,16.732006023809525,5.12054,4.506945,7.08051,2.9013266666666664,3.95988,3.9479,0.9515577777777777,1.2683175,4.439885,3.847615,4.823645,4.38892,4.894945,4.3516,2.625099333333333,3.302305,5.48935,0.5918249999999999,5.08745,2.301335,4.476275,5.86145,3.631933333333333,2.536113333333333,3.920723333333333,1.67174,4.24527,5.9863,3.102516666666667,2.875345,4.64438,5.13765,5.3006,3.82805,3.73681,4.167115,5.27665,4.90342,4.82519,5.4442,3.807715,1.3067585714285712,1.70566,6.758391333333333,5.25445,4.745215,5.16635,2.5071,2.6727399999999997,2.5439833333333333,5.48398,1.775965,1.9374,3.2913866666666665,3.1830966666666662,3.4378333333333333,4.431595,3.869,5.678065,1.523495,4.652945,0.8996149999999999,3.944595,4.01886,1.6573449999999998,3.891635,0.96179,4.628505,5.35705,4.97967,4.337345,3.622016666666667,3.911455,2.9296633333333335,5.58255,5.28215,2.9828650000000003,3.92291,2.403145,2.49169,1.901815,2.634515,3.673295,5.60555,1.03766875,4.48152,1.37489,3.179855,1.5570066666666669,1.03766875,0.22002702702702703,4.439635,2.867405,2.51856,1.7625933333333332,2.58592,1.0855925,4.05299,3.343295,4.50244,2.4050233333333333,6.3039,6.673385000000001,3.0476233333333336,3.3712666666666666,2.6962733333333335,0.882903,2.1691266666666666,6.20555,4.750765,4.72,5.14765,2.386676666666667,1.2699833333333335,3.65447,1.5811875,2.2627625,1.6427375,1.8701225,1.58107,1.82742,1.8673525,1.797285,1.828285,1.3057828571428571,1.78706,1.71745,2.0719925,2.1347725,2.44447,0.5434439999999999,1.787146,3.499966666666667,3.5105,2.020925,2.2102033333333333,2.053215,4.78109,2.2042966666666666,2.537805,2.77563,5.57545,3.2531,2.83165,4.82273,1.6969863970588235,4.277615,22.9577855,4.93919,4.82626,4.979575,3.2184066666666666,3.79144,4.44139,4.008265,4.954605,3.139466666666667,0.76263125,4.259575,4.9988,4.122635,3.986625,1.75654,2.4521366666666666,2.5755233333333334,2.25658,1.5654571428571429,2.9437333333333338,5.68885,4.032495,3.22327,4.15153,4.83288,4.06275,4.471055,1.339575,4.35327,4.27215,4.910065,1.556774,2.80143,1.9708525000000001,1.9708525000000001,3.66556,5.0287,2.48509,2.968443333333333,4.042525,4.115095,6.2848275000000005,4.36855,2.194645,1.2683175,4.121105,4.224165,3.2079400000000002,2.3907195238095236,2.3907195238095236,3.2400800000000003,4.36053,4.31092,5.144545,2.254015,3.3376406666666663,0.5950866666666667,0.5950866666666667,0.5950866666666667,3.98651,3.522395,4.212958333333333,5.078,1.800675,5.2756,5.05085,4.256615,3.99523,4.742805,4.140905,1.5141142857142857,5.2044,4.774225,0.4905592857142857,4.3376,5.00975,1.7861500000000001,5.80855,5.48295,4.71669,4.3045,3.62927,3.017685,4.75524,1.606894,4.283075,1.6377566666666665,4.595815,5.81385,1.2901125,3.11268,6.9567049999999995,4.78859,3.810166666666667,2.5158,4.421685,5.7187,3.7429333333333332,7.475153333333333,4.452055,2.2040366666666666,3.193186666666667,2.8936533333333334,2.9674333333333336,3.3441333333333336,1.7825133333333334,4.528425,0.750215,1.7693025,1.7693025,3.17763,4.629185,2.365935,3.06446,4.594035,4.6277,4.26867,1.4742333333333333,5.513007583333334,4.557415,5.22115,4.168775,4.553272333333333,4.065857,0.48741533333333337,2.4445455714285713,1.0535725,0.48741533333333337,4.143755,0.8309955555555555,4.590485,4.228,6.575678,2.00727,1.0213425,1.05497,2.088595,2.9939966666666664,1.76618,2.22617,3.158955,3.67632,2.01977,2.27188,4.797755,3.5093075000000002,3.923525,4.97976,3.67472,4.675875,7.158313333333333,4.9474,3.29982,4.608545,3.68495,4.88992,5.10335,6.2740575000000005,5.3454,2.53858,1.0994511111111112,4.660075,4.320415,3.83845,5.1764,4.578725,5.1081,2.93617,2.8432033333333333,3.2822600000000004,2.92385,2.6065133333333335,3.313026666666667,3.562466666666667,3.00747,4.32993,4.752235,4.36997,5.13365,2.9519366666666667,3.10645,2.945425,0.7153,4.69699,3.792755,4.64724,3.296533333333333,6.12833,3.687935,5.21805,3.89451,0.7317038461538462,0.5549021428571429,4.1578,3.047711,4.204905,4.905755,4.794095,1.845996,5.0188,4.57214,2.934366666666667,2.5773366666666666,2.3261125,2.3270412499999997,3.5091666666666668,3.404166666666667,3.17037,3.3711,3.5298,2.758275,3.22301,4.232166666666667,4.5069225,0.5491675,0.5491675,0.5491675,3.3171539444444447,3.6806,3.431433333333333,2.6610366666666665,2.8298633333333334,1.19297625,3.0220966666666667,2.9709533333333336,2.0139125,2.51931,2.5281833333333332,1.0020966666666666,2.8742616666666665,4.58359,9.479789583333334,1.5987415833333334,0.5551280000000001,3.324,0.5551280000000001,0.5551280000000001,0.5551280000000001,0.5551280000000001,1.9764825,4.12809,4.4548,5.1876,6.0922,3.0227833333333334,2.950086666666667,3.2326387500000004,3.4132433333333334,5.72395,1.3193183333333334,2.44765,3.2832066666666666,2.8881033333333335,3.2209233333333334,4.37933,2.36332,4.3363,1.2563,4.556875,5.75035,4.39094,0.854845,0.667689,0.667689,0.8749102173913044,1.7297552173913044,0.8749102173913044,0.8749102173913044,0.29876521739130435,0.29876521739130435,0.8749102173913044,1.4431566666666666,2.5660000000000003,2.732805,3.3731333333333335,2.48714,2.4909833333333333,2.8432099999999996,2.576773333333333,4.403125,3.462875,1.851715,2.19486,1.65308,0.1757056093519882,0.1757056093519882,0.1757056093519882,0.1757056093519882,2.3772866666666665,2.709346666666667,0.866462,4.89729,0.75262,1.7214759999999998,4.7892025,4.91421,4.79007,3.0706,4.436255,3.988765,3.111076666666667,1.1358625,3.771525,4.569835,5.8838,2.331525,1.6484566666666665,1.8048066666666667,3.2017966666666666,1.4982133333333334,2.659596666666667,3.0368033333333333,3.0604633333333333,4.900045,4.065645,3.0844,5.3233,2.52577,4.641875,5.09505,4.48905,4.43103,5.325,5.570316666666667,5.439840833333333,3.176544,5.806298333333333,5.0313,4.74656,4.368645,5.09075,2.3237825,2.9253,4.211825,5.235,4.391405,3.907915,3.430615,4.48759,3.92045,2.3158499999999997,5.26185,3.36831,7.2586,6.00085,6.0844,5.1171,1.4922714285714285,1.0584099999999999,0.6861753846153846,1.7939260000000001,4.732305,4.74845,3.84822,1.7044339999999998,3.50161,2.90507,4.612675,5.336,5.991733,4.039845,3.056765,1.819366,5.03241,3.74864,3.45854,1.8795825,1.048845,3.92123,3.45616,3.6070925000000003,3.52301,2.262885,4.45389,1.6570099999999999,2.92084,2.336165,3.750785,3.775625,4.889455,2.0745725,1.59271,5.57455,2.8603199999999998,8.64212,3.005975,4.81262,5.8429,4.61243,4.97369,4.15603,4.75045,2.2008525,4.92469,5.3161380000000005,2.69265,4.461275,4.462035,7.798114999999999,4.97618,3.378,4.242885,3.906325,3.5093075000000002,3.343825,4.94398,5.5915,2.4332075,3.014806666666667,3.4827999999999997,2.219455,2.46988,4.636905,5.9971,5.17405,4.649495,4.905435,4.374975,5.8436,0.63051,3.266783333333333,1.418032857142857,32.45003948725414,2.148795,4.56654,2.749875,4.680025,1.872784,2.3950133333333334,3.635663333333333,1.5020833333333332,1.5020833333333332,1.5020833333333332,1.5020833333333332,2.13358,3.21447,0.4143688888888889,7.741307638888888,0.4143688888888889,5.1872,5.1894,2.2325025,5.5218,2.4448225,3.8298406666666667,2.39764,2.3042599999999998,2.5336233333333333,2.0036366666666665,0.6420123076923077,2.514273333333333,0.7353416666666667,3.2127866666666667,2.300593333333333,2.315076,1.1925666666666668,2.315076,6.3199,8.339275,4.93391,4.43352,5.35365,6.2904,7.58711,2.918685,1.805855,1.805855,2.3057966666666667,5.22965,4.024125,4.596565,6.63719,4.28983,3.418245,3.87952,3.39005,3.287665,2.27799,1.301312,2.018245,4.621015,4.383325,5.342266666666667,1.958145,4.755655,1.769422,3.23855,1.6407,3.500633333333333,3.4821666666666666,3.171753333333333,3.1746833333333337,3.28946,5.21775,0.7091253846153845,3.301335,3.6996333333333333,3.040926666666667,2.17402,4.3684393749999995,3.295923333333333,2.976986666666667,5.24049125,3.71768,4.83716,3.99538,3.414375,5.01085,5.46545,2.2288466666666666,6.0292,2.2287096666666666,2.45677,3.2401933333333335,3.1555066666666662,3.296746666666667,3.082585,1.92433,3.2192347727272725,4.81611,3.4638225,2.670899,2.670899,2.316855,3.564175,3.721805,0.5318290909090909,2.891135,2.926195,8.03804,0.9143181818181817,4.785,3.71333,5.06155,3.575065,3.970515,2.15186,3.86309,2.84196,6.2388,2.8106999999999998,3.927735,2.5334266666666667,4.09108,3.056146666666667,3.443285,3.702085,3.99506,4.933913,3.238915,2.190025,5.40605,2.2867166666666665,4.64649,5.4072,4.89099,4.60883,4.14097,2.81747,2.063826666666667,3.2794033333333332,2.94835,2.7583749999999996,3.6277333333333335,2.7721071428571427,4.932546666666666,3.0564933333333335,2.70814,7.520065833333333,5.612839583333333,4.1378125,3.1666433333333335,4.0574666666666666,3.885445,3.430485,2.36951,4.61287,5.5589,4.962005,1.5878766666666666,4.629575,3.0487800000000003,6.8976125,4.6978,8.978911666666667,4.09937,3.160425,2.6445,3.965975,5.976715,7.28379,3.63869,5.64897,4.57698,3.00868,3.716315,1.639686,5.042762,1.5741949999999998,4.272105,4.51759,3.7012666666666667,0.8877666666666667,9.792333333333334,1.3044333333333333,1.898575,2.41968,1.7189666666666668,3.351233333333333,1.2998049999999999,3.37775,3.45584,3.1228700000000003,4.24993,1.140935,4.262415,1.4509183333333333,2.631243,3.59113,4.186125,2.2549,4.851102916666667,2.072064666666667,7.83541,4.20683,2.85184,3.79245,3.22927,1.3532108333333333,7.06455,2.798435,3.166555,2.281915,3.8874,2.097365,3.1273775,2.02773,3.79806,1.2975525,4.942365,4.04012,3.9367,0.935538,2.929664,3.682855,5.65425,5.13929625,1.418438,1.418438,6.0826,5.2058,3.881005,3.669665,3.154205,9.83048,4.210045,5.4661,4.41551,2.49911,1.786204713261649,0.34004500000000004,0.18334193548387098,0.5150930465949821,0.9310666666666667,0.603031935483871,0.18334193548387098,1.158355,0.3317511111111111,1.2711116666666666,1.6734480465949821,2.61225,2.1083125,2.0119633333333335,5.37475,6.8582833333333335,5.03845,5.58165,4.788715,5.31465,1.2393166666666666,5.2148,4.023485,6.09075,5.62405,5.7774,5.79125,5.81065,5.86275,1.4181800000000002,1.5192285714285716,2.07008,6.316643,1.541758,5.6912,5.103,7.354175,5.1706,6.10365,5.09075,4.66785,2.83685,6.09965,5.8307,4.453645,5.0186,6.03685,5.5148,3.87333875,4.307885,3.6697333333333333,0.9778269999999999,3.8033333333333332,4.61942,1.36,3.7526333333333333,5.0762,4.9165849999999995,5.6503,2.542225,3.25301,2.36404,4.953825,2.18016,3.721335,1.2810733333333333,3.145225,3.647735,4.158325,5.03105,3.446105833333333,0.6801400000000001,6.13345,1.04266,3.99822,3.357533333333333,3.61196,1.9263866666666667,3.69346,3.6029784615384615,3.878833333333333,4.34143,15.463943071428572,5.57883,2.3360425,8.1167,1.4214975,3.718375,2.8696800000000002,2.8380466666666666,2.294563333333333,0.24586304347826085,3.02052,4.804015,1.7651039999999998,2.2616066666666668,3.7353666666666663,1.7171675,2.6510333333333334,1.5852,3.493645,4.90349,4.09581,4.66342,0.44999285714285714,2.26596,4.163175,3.78883,4.19838,4.900555,4.25204,4.17884,0.5619858823529412,2.4848866666666667,2.4848866666666667,5.47175,5.2077,4.979695,2.8567,3.928433333333333,3.1266933333333333,5.11465,4.1528,5.634933888888889,4.98972,4.83142,5.23525,2.521775,2.25642,4.77457,4.724215,3.8825,3.537505,1.812834,4.89258,4.11437,3.5309,4.959795,3.75572,4.54191,0.6329713333333333,3.94268,0.7105983333333333,3.1007166666666666,4.565315,4.48099,18.433878095238097,4.39978,3.89082,3.0457300000000003,1.20877375,3.2892566666666667,2.4275166666666665,1.478812,2.41442,2.468215,5.26235,2.201353333333333,3.93262,5.3706,2.2843225,4.66489,3.1162433333333333,4.725305,5.8777,5.7063,1.95282,1.901095,2.39188,5.50685,4.752905,1.1834555555555555,5.8192,4.206655,5.67845,4.589285,1.6014833333333334,4.4616,3.787395,3.703355,4.463505,4.576995,2.9550300000000003,0.8010575,7.754005,1.390598,0.21187472222222223,0.21187472222222223,0.21187472222222223,5.1398,4.415075,2.54593,4.499045,3.756355,4.769485,4.13433,4.364046666666666,8.867133333333333,4.37685,7.352838333333334,0.8534525,1.21344875,2.5742,5.33765,4.08837,2.1381433333333333,5.14205,5.27535,3.42008,4.80644,4.7406,2.3164966666666666,4.499745,5.496392,2.25603,2.7541499999999997,2.815103333333333,2.637155,5.7505,3.9073,0.6744521428571428,4.274655,3.79161,4.303425,4.792703333333334,4.755145,3.6478,5.32705,3.73247,13.66634625,5.02825,6.6317325,2.97415,6.8843,5.0464,4.074375,2.4035825,2.321340833333333,9.16492,2.05619,4.103266666666666,3.8670666666666667,3.7781333333333333,2.7863933333333333,2.9608399999999997,2.024585,2.1524325,2.9704533333333334,1.9483679999999999,3.9901999999999997,2.89638,2.7973433333333335,3.5957666666666666,3.7510333333333334,2.2477799999999997,2.2477799999999997,2.48338,3.6732333333333336,3.378933333333333,3.1222666666666665,3.0313199999999996,3.900933333333333,2.6857866666666665,2.7800833333333332,3.381266666666667,2.715033333333333,2.4150025,3.6634666666666664,2.951173333333333,1.7844200000000001,4.041766666666667,2.42581,2.48434,2.8557966666666665,2.491573333333333,3.3773666666666666,5.639518333333333,2.3906933333333336,3.4674666666666667,1.8468600000000002,12.156334666666666,3.1506266666666662,2.1396266666666666,2.0608,1.1471333333333333,1.592968,5.99155,2.887842,2.887842,1.858318,1.4569066666666668,3.5403666666666664,4.343555,2.20924,1.657005,1.681022,4.388295333333334,3.5181,4.151,8.28351,2.72677,3.314,3.025535217391304,4.4084666666666665,2.4150025,3.4008000000000003,3.02582,3.456566666666667,3.3963633333333334,0.88692,3.3327195,3.346966666666667,2.729886666666667,4.44832,3.249363333333333,0.7469854545454545,2.0224040476190472,4.31313,2.65084,3.4690999999999996,1.637505,1.637505,2.0500325,3.8573866666666667,1.01709,2.2300875,5.058633333333333,5.058633333333333,0.6362333333333334,6.752045000000001,4.037085,4.44573,5.0657,1.2113385714285714,3.6037,3.6802333333333332,5.42294,7.0791900000000005,3.089513333333333,0.701519,3.170576666666667,2.76022,3.2088200000000002,2.5803966666666667,2.5687966666666666,3.0651499999999996,2.4050575,2.40006,0.8554781818181817,3.622095,4.635737428571429,1.3330466666666667,1.5597714285714286,5.1891,2.38279,1.622405,4.460245,1.887716,3.588305,2.4882425,3.634133333333333,9.329159166666667,4.667145,5.039,5.3514,2.543925818181818,0.901362,1.920212,6.9384500000000005,1.58075,4.100765,4.50901,3.765245,21.503917083333334,2.933263333333333,1.43227,1.24820375,3.2212,1.4625733333333333,4.20694,5.2077,3.5713999999999997,3.276173333333333,2.3303933333333333,1.4660133333333334,2.9366766666666666,0.557258125,3.039146666666667,3.852133333333333,3.0247933333333332,2.720333666666667,2.6805066666666666,2.54096,2.3536466666666667,3.0770999999999997,1.885306,3.6789666666666663,1.6040766666666666,3.59665,4.106165,2.5911399999999998,5.0287,3.866695,4.129095,5.06285,4.98442,3.3096833333333335,3.2470266666666667,2.6508566666666664,1.1971214285714284,1.1971214285714284,1.1971214285714284,2.0182925,3.1157733333333333,2.510073333333333,2.6550433333333334,2.5512099999999998,2.0980175,3.53302,4.09693,3.50947,6.21075,3.75825,2.237365,1.8181775,1.2149400000000001,2.3684433333333335,3.91395,2.4793933333333333,2.5796266666666665,2.707683333333333,2.2706066666666667,2.6070166666666665,2.712566666666667,3.0504,2.7699700000000003,2.5008433333333335,3.1032166666666665,2.3128166666666665,2.0775575,2.1627325,2.071665,3.1744033333333337,3.28228,1.910335,3.64659,4.305965,3.0513066666666666,2.7660640384615385,5.804883333333334,4.67403,4.897355,5.9077,4.961365,4.10798,6.9622075,1.233745,4.239585,2.48925,5.17685,5.13025,3.370915,4.465945,2.2570775,7.525965,3.89367,0.85505,8.38572,4.88218,6.173446785714286,4.77236,2.986541,2.0303025,5.33465,4.586705,4.61661,5.06925,2.858915,4.345735,4.614295,1.65308,4.423955,2.68705,1.4411716666666667,4.988585,0.6555176470588235,4.264964166666666,4.076325,4.601355,3.591735,1.81914,3.825425,1.94197,1.278,3.18038,3.4347666666666665,3.2647133333333334,6.971351794871795,2.0033575,7.0974900000000005,10.30239,6.42424,3.9262,1.3000157142857145,3.1859366666666666,1.3000157142857145,2.70408,2.105916666666667,0.3310988235294118,1.1590213235294118,0.3310988235294118,0.3310988235294118,0.3310988235294118,1.1590213235294118,1.1590213235294118,0.3310988235294118,0.8279225,5.3689,3.27159,3.090235,3.32679,3.883265,4.199135,3.247682666666667,1.539554,6.816085,3.0245433333333334,4.379465,2.7667800000000002,1.025409090909091,1.30805,5.11785,4.284345,1.0745866666666666,1.73368,0.7086654545454546,3.2117403463203464,4.263625,5.2382,3.855566666666667,5.291890833333333,0.5948553846153847,4.55537,3.6301862500000004,3.4055999999999997,2.6489866666666666,3.2949933333333337,2.34315,3.1958633333333335,2.54769,2.71384,3.386095,5.59195,4.726765,1.5421939999999998,4.514095,4.39963,2.99601,3.65605,3.09606,0.37077000000000004,5.1873,3.581895,3.87148,3.643302,4.38181,3.84012,1.903555,3.73381,3.974075,9.256540000000001,4.81741,5.8723,4.01201,3.6145250000000004,0.845995,2.26429,1.609105,1.68388,1.7358466666666665,4.992215,5.1784,4.350665,4.42362,3.4099320000000004,2.597478333333333,0.9344666666666667,3.987145,1.1755366666666667,1.118275,3.091975,3.45266,4.92683,1.2678125,2.8834466666666665,8.311020000000001,3.18755,3.878274166666667,1.2392075,4.242265,12.022133333333334,3.338465,3.86129,3.107845,4.283435,4.930535,5.16655,2.08742,4.7768,0.6443030769230769,4.82989,2.247785,1.8012375,1.8012375,3.340066666666667,4.61614,1.7414833333333333,4.66163,1.7073857142857143,4.602375,2.9853225,3.2636233333333333,4.648155,3.384955,3.7444776666666666,2.493645,2.6882651666666666,2.6882651666666666,11.678065,0.789659,4.11109,3.4802999999999997,2.1189575,1.97636,1.0724742857142857,1.351525,1.2625114285714287,2.00611,4.93856,2.428465,4.50854,2.32136,4.635675,4.436235,1.7076666666666667,1.9555525,0.9509416666666667,5.791454,2.23776,2.220455,1.807514,1.8049880000000003,1.24820375,2.6979820833333337,3.42731,2.734643333333333,2.9216366666666667,2.3345466666666668,2.58792,1.81713,2.9305133333333333,2.6813833333333332,1.4459266666666668,1.9297233333333335,2.8381633333333336,3.304263333333333,2.2083266666666668,1.1969366666666665,2.672273333333333,2.750253333333333,3.456,0.32692736842105263,0.40129166666666666,2.1651599999999998,2.373013333333333,3.0949,3.0371866666666665,2.64212,5.10985,6.1836,4.350805,4.41812,4.247525,3.877905,2.5442666666666667,3.730855,0.6645972727272728,0.0739634090909091,3.7341,0.0739634090909091,4.090105,3.389865,5.64975,3.34821,6.092,5.13535,2.47449,2.657033333333333,1.5216616666666667,5.74755,5.2103,2.5294266666666667,4.96556,1.97149,4.604555,2.0869852173913044,3.176676666666667,3.0850333333333335,4.760895,4.363639166666667,3.11599,2.3366866666666666,2.3366866666666666,3.972465,7.61355,4.428535,2.320323333333333,2.0818666666666665,4.523405,2.799235,4.972915,4.296045,1.0851044444444444,4.15571,3.2258533333333332,3.0091733333333335,4.110845,1.1314366666666666,2.41191,4.09435,4.31873,5.28935,2.7771,3.62173,3.996025,3.806995,4.11269,5.15685,4.210965,3.3945905555555558,3.4876,2.9120899999999996,3.12608,2.934903333333333,3.3757333333333333,4.076345,3.036823333333333,5.447233333333333,4.54947,3.584835,4.84873,4.558935,3.804955,1.4708700000000001,1.2588425,4.088035,3.6216666666666666,1.5128933333333334,2.86167,3.227625,3.12914,4.074392222222222,3.23995,2.9922241666666665,13.221496527777777,2.10993,1.900972,4.24999,1.189246,3.1119833333333333,4.653115,4.934115,3.201345,1.0539555555555555,2.2247,2.4050233333333333,1.487622,5.54395,0.8731975,0.8731975,3.3333500000000003,1.73541,1.5979400000000001,1.7736225,3.280005,2.93977,1.859085,2.698275,3.7586516666666667,3.1722333333333332,3.1037933333333334,1.990802,6.4042,5.89505,4.181635,0.7380369230769231,3.52201,4.54359,0.9259636363636364,5.1463,3.4219333333333335,8.806283333333333,4.58679,4.56532,3.40974,1.60802,2.88381,5.17215,5.1963,4.22678,3.952175,4.4132,3.39344,3.5142333333333333,3.5142333333333333,4.11426,3.0504675,5.3678,1.67664,5.43029125,5.76661,1.7861500000000001,4.52082,1.1168799999999999,5.0602,4.4355,5.02415,5.12025,4.291505,2.734105,2.4767275,4.632365,4.236215,5.04435,5.4007,1.922585,1.332204,3.856995,2.2276933333333333,5.3972,3.35647,3.32131,6.918805,3.71542,4.515175,4.833815,4.54593,4.78113,7.768695,3.75703,2.989835,10.08025,3.82216,0.6606142857142857,2.192894713064713,5.3197,0.6185206666666667,4.91721,4.44235,4.90276,4.52152,3.55325,3.65771,4.890345,5.1933,2.07079,0.7136435714285714,4.43015,4.77281,4.796665,4.448495,2.8201699999999996,5.2883,3.774035,0.791682,4.202255,4.414845,2.3553075,3.097296666666667,4.552125,2.269375,5.42845,5.04245,4.08198,3.3645333333333336,5.877646666666667,5.877646666666667,9.094100000000001,1.992934,0.79485625,0.79485625,25.946455666666665,2.75085,8.149773333333332,0.3543325,1.24186,3.3381666666666665,0.977059,3.53334,3.90273,2.559375,2.559375,5.0514,4.53728,3.48842,3.25609,3.25609,3.41082,3.875535,4.6512,3.2455266666666667,2.073723333333333,2.477923333333333,4.5484100000000005,1.94747,3.351195,2.9954300000000003,3.1246614285714287,3.1246614285714287,3.7954000000000003,0.8869388888888889,2.4725800000000002,1.50655,3.4197666666666664,2.7965400000000002,3.1078233333333336,2.9115066666666665,4.90161,2.315885,3.116913333333333,5.570107,1.5540699999999998,2.156155,2.86331,2.55163,4.399845,6.006103523809524,1.2464766666666667,3.6172,2.22241,4.78471,6.31206,1.5479075,4.610661333333334,4.966066666666666,3.1929614285714285,4.5506,1.0001200000000001,1.556774,3.35716,3.8411714285714282,1.32209,2.5363,1.681005,1.56559,2.71372,3.332572,5.1910145,1.1300216666666667,1.4527428571428571,2.96602,12.36209,4.3024949999999995,2.65618,1.2216914285714287,2.7114635714285713,1.0780485714285715,3.3152000000000004,4.330508333333333,4.907575,3.362633333333333,5.1799,1.487285,3.7510666666666665,4.14289,2.843436666666667,3.715116666666667,2.46003,0.9748466666666666,2.4646233333333334,2.7819966666666667,8.355766666666666,3.4818670000000003,2.6326266666666664,0.6980120000000001,4.444166666666667,3.2874766666666666,1.415418,5.761621666666667,2.152355,2.749416666666667,6.14365,1.3423444444444443,3.0440133333333335,1.069709090909091,3.0772399999999998,4.41867,3.146433333333333,3.1433866666666668,2.1530366666666665,2.7922233333333337,4.896355,4.7678,5.3149,1.782225,4.250525,4.04107,4.4808666666666666,3.569556,2.1895933333333333,4.043251333333333,1.0026579999999998,2.7751685714285714,4.755485,2.6279,4.167982083333333,1.5263375,2.5427500000000003,1.9619039999999999,1.9619039999999999,7.1071599999999995,3.12918,5.088369166666666,3.321405,1.7908099999999998,2.8030914285714283,4.735519999999999,5.488666666666666,8.417145,4.876872666666667,2.6942535000000003,2.12356,2.2668291666666667,3.986423333333333,3.639405,1.634662,2.111455,2.3826257142857146,1.169965,3.2519533333333333,19.838099999999997,3.22701,2.9165799999999997,3.4409333333333336,2.79735,2.5592333333333332,2.79745,3.19143,3.163653333333333,3.2878333333333334,2.495366666666667,5.711502,2.542613333333333,3.6695005714285713,2.5798085714285715,1.7608085714285715,1.3920466666666667,4.016481111111111,2.0418075,4.103755,4.5543,3.58022,2.867350833333333,3.2576666666666667,2.91311,3.28492,3.339366666666667,3.683566666666667,3.24145,0.8392181818181819,5.01295,2.74832,3.5856666666666666,3.0053316666666667,2.1197425,2.2445625000000002,2.2445625000000002,3.6033158333333337,2.1078758333333334,4.722775,4.250365,4.257675,4.709585,4.96082,4.6958275,4.6958275,4.03501,2.9745266666666663,4.358115,2.744905,1.668796,2.9109866666666666,4.420345,4.624255,2.587975,4.029375,6.923679999999999,3.522733333333333,6.528364392857142,2.951585,0.762058,0.762058,3.239075,4.56039,3.678815,3.341556,2.2910066666666666,1.7980866666666666,2.4421933333333334,2.9730566666666665,7.2124559999999995,1.5718066666666666,4.27523,3.651733333333333,3.63031,5.11385,4.97808,4.928979354166667,3.3924333333333334,2.3624325,4.958535,3.63644,2.094075,1.0584,4.6732,2.78315,6.159816666666667,3.376666666666667,2.446835,3.31125,3.6523,3.944265,4.756345,3.33747,4.59184,3.407835,4.040415,3.728405,3.24405,3.320035,4.6379,2.3830833333333334,4.701495,3.78439,5.0114,0.6495533333333333,2.242175,1.96451,2.2237875,1.7206075,2.81061,2.6346933333333333,1.78362,5.11695,5.5555,2.212283333333333,4.17985,4.64414,2.47155,5.6442266666666665,3.9163008333333336,5.23335,4.97024,7.267473333333333,2.3772733333333336,2.79021,2.0458233333333333,3.2326366666666666,2.16674,1.662165,3.837655,3.332215,5.24545,1.0657388888888888,2.89335,4.716745,2.369495,5.7515,3.562665,2.976785,3.6125333333333334,3.31995,2.0318325,1.82151,2.664725,2.3552,3.029275,1.8795875,2.564447142857143,2.564447142857143,3.537425,3.185625,18.64904357142857,1.0761533333333333,4.502510833333334,2.2103075,1.9160066666666669,4.15187,3.67659,2.035005,3.759095,4.612205,1.1463616666666665,1.1463616666666665,1.1993566666666666,1.69967,2.6894633333333338,3.0434966666666665,4.71335,4.161905,3.7914999999999996,0.534242105263158,3.6072387719298247,1.89557,2.06363,4.6741825,3.366305,3.863815,3.613595,4.501075,4.0853,1.8872775,4.325495,5.772953333333334,2.335635,3.707645,5.16435,1.9643,4.444965,5.4669,1.3702457142857143,1.980094,3.7770333333333332,0.8116771428571428,3.1612333333333336,4.47353,5.12995,4.75655,2.687525,7.790651666666667,2.9687666666666668,3.063663333333333,0.49255352941176467,4.22803,5.2977654761904756,3.221330952380953,5.4534,3.599685,2.717191777777778,1.8883079999999999,5.39256675,4.254145,4.70844,2.1866175,1.896855,4.51062,4.3209,3.02451,2.22661,4.233028333333333,7.08692,2.687875,3.64786,3.43974,4.325535,1.4779142857142857,1.4779142857142857,3.116123333333333,3.021793333333333,4.95696,4.834975,3.845585,3.83508,2.80815,2.191925,1.6508933333333333,1.4765428571428572,5.1118,6.237209999999999,5.6335,5.43575,4.637635,6.5089500000000005,4.36349,2.7076966666666666,4.034262,2.473593333333333,3.0327565,1.641694,5.0659,2.255193333333333,4.242675,5.5368,4.013445,2.6783699999999997,2.8603199999999998,1.600542857142857,2.54435,3.871,2.21724,0.59421125,3.3382,2.9843733333333335,3.00747,2.71501,2.38825,1.9075440000000001,0.7476636363636363,0.7476636363636363,3.8054333333333332,2.1914925,2.934,5.1588,5.5944,4.897525,3.66619,4.046085,4.296795,2.7436776666666667,1.26937,2.90345,3.196775,0.8901425,3.5857925,3.07997,3.16898,2.173645,4.010895,2.60543,1.9039866666666667,1.480342857142857,3.71709,8.237275,3.9028,1.7656858928571428,4.78847,4.286485,3.678695,3.2788,2.67628,1.7252599999999998,0.9942925,3.87782,2.4781958333333334,2.1053966666666666,1.6249666666666667,2.6447233333333333,2.1225333333333336,2.37528,2.73801375,1.4761,2.1613700000000002,2.134705,6.580685,5.686,3.965775,3.823,3.339755,3.0586533333333334,1.6462917094017095,4.6915,4.81255,2.22682,5.7484,2.17795,4.195585,1.2061555555555554,4.228945,4.556625,1.7386975,6.93993,3.435085,1.817445,1.9080875,2.08523,2.52725,3.652066666666667,1.4405883766233765,3.149093333333333,6.09055,4.891935,4.595265,5.74945,5.4957,4.961,1.01650875,4.957565,4.964075,4.173015,5.04495,4.162628333333333,4.72559,5.4405,2.979205,1.581065,1.581065,5.1993,6.229900000000001,3.106995,2.986353333333333,3.988065,3.883645,1.604104,4.35126,3.775545,3.6512,3.976615,2.963646666666667,2.8365733333333334,4.90189,2.34704125,11.151456084361717,1.7701533333333332,0.9999775,2.3482133333333333,1.6947375,2.549775,2.48844,1.9217020000000002,3.1502133333333333,5.1887,5.4949,3.05568,1.7000166666666667,6.449268333333333,1.30242,3.3686000000000003,0.523747619047619,3.976303333333333,6.06275,4.51265,4.697995,14.765620000000002,5.6002,2.830026666666667,3.0006866666666667,4.98432,3.4946,4.90597,1.3288125,1.6498083333333333,0.7393545454545454,5.7736,3.8413,2.03836,4.689679333333333,5.0057,6.11295,4.866965,4.57015,4.484505,6.1425,3.727205,5.08775,4.599695,1.7879079999999998,4.29012,6.1719,3.89712,3.93354,4.27033,3.969645,1.2540675,4.900535,3.790035,1.32,3.4539666666666666,3.2986533333333337,2.4157966666666666,2.95539,2.348996666666667,2.837073333333333,0.6860345454545455,2.95818,2.67418,2.6542966666666667,2.99401,2.7298633333333338,1.704675,1.4319633333333333,2.64735,2.49801,2.336575,3.5887666666666664,3.293203333333333,0.8197050000000001,2.6446133333333335,3.831575,4.474885,2.4375633333333333,3.700555,5.52185,5.58925,3.181875,3.67318,1.509242857142857,4.061975,2.614160555555556,3.971046666666667,3.00207375,4.97699,5.20415,5.2004,4.08824,4.275733333333333,0.969788,0.969788,2.3474480769230768,1.765825,4.155265,2.441559,2.441559,5.17445,5.66415,3.1648,1.23595,1.6624142857142858,6.15225,3.69358,2.8737633333333332,2.97609,2.748615,2.959815,2.8737633333333332,4.7243475,2.87101,3.15234625,2.53118,1.778205,3.046615,5.85205,2.53559,3.090875,2.930675,6.2834,4.26133,5.9475,5.9475,5.29455,4.45335,0.4486,4.85475,4.806265,2.8183,2.438125,9.062788333333334,3.1373333333333338,4.89698,3.76767,3.4998666666666662,5.52985,4.08401,3.3470950000000004,2.9337666666666666,3.2756966666666667,2.6819066666666664,1.832282,1.832282,3.54548,3.85381,4.02397,2.01158,1.9110800000000001,50.08551439393939,2.6188433333333334,0.8677927272727272,3.0575566666666667,2.1654075,3.4193,2.836536666666667,3.245423333333333,4.002325,3.0912466666666667,2.04258,1.00077,5.0615,3.084435,3.30263,3.951865,5.2327,5.10935,5.18985,5.5389,5.83565,4.806375,5.5674,6.433235,4.928555,5.68,1.9528025,4.268555,6.5557,5.5884,3.60157,3.719485,5.34175,4.02134,3.78459,4.789305,3.2409966666666663,4.0225,1.7235340000000001,3.348595,1.256122,3.019465,3.531415,3.383815,7.1170175,4.260335,2.19045,4.31677,4.436945,3.894325,1.12746125,3.210155,4.18082,4.633750476190476,1.116935,4.734595,1.645225,6.44265,0.6890411111111111,4.276857333333334,10.511041666666666,4.66684,4.355555,4.28502,1.8558000000000001,4.1024,5.83145,3.12844,4.253035,9.288999166666667,3.4886666666666666,2.4741633333333333,2.7529500000000002,2.7454033333333334,2.8879300000000003,2.8071344166666665,1.84148,2.5627,2.9290800000000004,2.8163066666666663,3.095853333333333,3.29219,2.157016666666667,1.80417,4.739095333333333,3.131766666666667,2.4785,4.89343,2.7588333333333335,1.2671125,2.157485,3.22526,5.026199999999999,2.619475,2.361527777777778,2.361527777777778,1.536215,1.3660625,2.01314,1.8409,6.299695,4.377505,2.6015,3.1299333333333332,3.3709666666666664,2.0159375,0.5383491666666667,2.1264499999999997,1.8334775,0.5501792307692308,3.706195,2.3872625,2.4611575,3.42074,3.9022275000000004,2.6901566666666668,1.6272900000000001,1.3096083333333333,1.905575,3.3218,3.525535,4.10622,2.834303333333333,4.309755,4.4176,1.1166545454545456,9.214335,2.52582,3.23301,1.31515,2.8385866666666666,2.44355,2.44355,2.44355,4.705935,5.6556,2.21535,4.90235,1.603106,5.746449999999999,1.691892,4.307765,4.467515,4.48771,3.917155,5.00895,1.86626,8.4513725,4.07766,5.20355,3.341275,3.9202933333333334,3.1189733333333334,3.1179166666666664,3.78476,2.3882933333333334,4.356999285714286,4.1309483333333334,1.56312,3.817685,1.56312,3.383585,4.273154166666667,4.6077650000000006,4.273154166666667,1.5344266666666666,5.87045,4.778005,4.495105,3.0858066666666666,3.0214966666666663,4.650705,3.058915,4.598215,0.5886228571428571,3.2059366666666667,3.1405133333333333,5.4735941666666665,4.536545,2.4331,5.42175,6.954406666666666,3.51055,3.00329,2.58676,2.1010566666666666,4.150165,4.047225,4.46752,2.31014,4.30481,0.888856,5.22715,3.15355,4.170425,2.7598633333333336,3.11314,1.9918333333333333,2.9710366666666665,2.7245733333333333,2.75658,3.78487,2.704375,2.704375,4.858456666666666,3.791055,4.840395,11.433625,1.0224111111111112,4.88699,2.5825566666666666,2.2125966666666668,3.315746666666667,1.400625,8.032371,3.8852333333333333,3.790395,3.8982799999999997,2.08568,3.7745333333333337,4.375512083333334,2.3432,0.43505666666666665,1.65076,1.4283875,5.2706,2.737235,3.0199,3.7304483333333334,3.49365,2.33837375,3.85569,4.435845,3.993165,4.715115,2.04959,4.82077,2.4104666666666668,5.679539999999999,2.997375,5.053,4.666225,5.0344,4.43373,1.94578,3.667655,3.474375,2.4812499999999997,3.236015,2.743275,3.005885,3.360765,4.357985,2.7655133333333333,4.933545,1.6796333333333333,4.25436,2.8537,4.871455,4.625485,3.966945,4.723065,3.333315,4.380165,3.97913,3.909595,2.1883933333333334,2.00346,2.792095,2.32002,0.8102566666666666,4.74497,2.01042,3.246715,2.6368,4.105145,2.80258,3.18789,2.916485,4.265345,4.7223999999999995,4.41156,2.94294,1.6120766666666666,3.416135,2.48204,0.7519355555555556,5.23285,9.534805,3.460585,3.318395,5.0841,5.02195,3.72116,1.98774,3.75982,3.735035,2.898705,3.16336,3.672605,0.59630875,1.3235,6.2943875,1.6754475,2.657165,5.755540999999999,2.542225,2.273925,2.729715,6.71799,3.013005,4.797055,3.52171,0.7249966666666666,3.234945,2.47186,3.71951,4.55045,6.398691666666666,0.695067,3.51105,7.51723,3.081755,1.3779233333333334,5.58567125,4.71271,5.4926,4.783925,5.0836,3.580335,2.7101933333333332,8.321760000000001,0.9076150000000001,3.425425,4.35731,2.821745,4.19041,2.262705,4.24019,1.5967533333333332,4.54571,4.217695,3.949955,1.99356,4.7807,4.55384,2.42553,2.122195,2.4077475,1.415418,4.044085,3.5713999999999997,2.01612,8.5329,5.65395,4.940035,4.9254,3.249015,4.19788,1.3807314285714285,4.73325,3.91893,5.4842,3.51447,2.4364966666666668,6.711116794871796,1.1115075,1.1115075,2.36804,0.9674642857142857,4.31739,2.8994866666666668,1.0111975,1.7903766666666667,0.5669591666666667,6.82494,0.9798725,2.655715,3.34449,3.917125,4.159785,4.63944,5.0643,5.47359,2.84283,2.922905,2.27834,4.609075,5.12565,4.307705,3.87348,4.158495,6.47945,4.278975,4.2321550000000006,6.874388,3.88699,3.9537125,2.359385,3.9537125,6.9151620000000005,42.547005743506496,3.540025,3.347745,2.99498,4.53867,4.38996,3.237085,3.325235,3.642065,4.427515,4.929435,1.8757666666666666,5.3113,2.596155,4.69135,5.26535,5.0189,2.11668,5.29105,3.89115,3.182185,1.6593959999999999,0.6707007692307693,1.8619080000000001,3.7984333333333336,3.5462333333333333,1.413225,3.5197333333333334,3.1281433333333335,3.133453333333333,2.9448566666666665,3.16159,1.538958,3.029476666666667,3.8559,1.887333951093951,3.1191600000000004,3.120754,2.665903333333333,2.80565,3.6124333333333336,1.154288888888889,4.9228,4.250675,1.2044066666666666,1.2044066666666666,1.2044066666666666,1.2044066666666666,2.8477548484848487,1.9342366666666668,2.285665,4.125535,4.69907,4.145665,4.95804,4.49083,6.1099,4.80408,2.365,6.2365,3.349665,2.5701,3.575245,3.918685,4.302025,4.80367,0.7695923076923077,1.4626857142857141,1.5413500000000002,4.680625,4.879415,3.159395,4.26296,6.022825,2.18852,5.07835,1.7124,4.60007,5.08325,1.5624900000000002,5.5623,0.7461308333333333,5.20365,1.687026,1.333075,3.795925,4.50732,4.651875,6.0152,6.26795,4.16781,1.4363139999999999,4.241795,1.4453275,3.66663,3.49979,2.717191777777778,1.771625,4.14862,1.7118666666666666,3.73883,4.808895,2.7895800000000004,6.21425,126.49920151443001,0.4874555555555556,5.48015,2.458693333333333,4.65675,4.371825,2.815015,1.6632375,0.3943157142857143,3.06669,3.55982,5.3512,2.61515,3.769045,4.371225,4.35935,2.82481,7.394946666666668,0.6629511111111112,3.170635,0.9338075,12.948459999999999,3.040595,3.471105,1.0242377777777778,2.85148,2.56133,2.1837575,2.88867,3.3759,2.14946,4.2969,2.558316666666667,2.17193,2.1299933333333336,5.34175,2.77628,3.30304,3.4632,3.58572,3.236375,2.1696766666666667,3.89957,3.472475,2.88901,1.1505444444444446,2.4647466666666666,4.2969,4.755475,4.87587,3.90995,5.8593,1.813255,10.40335,3.53199,2.48994,3.954455,5.08725,0.568602,0.568602,4.4217949999999995,4.4217949999999995,3.947295,3.8150333333333335,1.810951590909091,0.6493633333333334,2.916265,4.58472,4.40553,4.62342,3.81472,5.28714,4.837985,2.3431425,4.435235,2.51845,2.723825,4.757730833333333,1.779175,3.2318,0.6488342857142857,2.3291962857142856,2.3291962857142856,1.92678,4.94237,4.05807,5.45005,5.864891,4.891945,2.942805,2.060215,2.25526,5.236695,4.28513,4.870186666666666,2.755125,4.870186666666666,5.4957,3.520095,5.79435,3.86772,2.3003133333333334,2.6042166666666664,2.762776666666667,1.37345,1.4163075,1.6242725,1.807705,1.441695,1.5230625,3.4223666666666666,4.746155,2.44146,5.9279,2.939486666666667,4.583655,2.057885,4.12973,2.9321533333333334,3.2623366666666667,6.766833333333333,3.419833333333333,4.870977333333333,3.6102333333333334,1.3807325,2.5039700000000003,2.562136666666667,2.495503333333333,5.31105,4.2781199999999995,4.75654,13.537691801571235,0.8575833333333334,2.085161,2.511225,1.783326,1.3507185714285714,2.642525,2.561775,2.623325,2.620975,0.7506984615384616,2.0571975,0.5598947368421052,5.45935,1.81206,4.912725,4.968285,2.83495,6.200435,4.826415,9.43626,4.328905,2.83202,3.1019,4.714045,4.617415,2.890943142857143,4.72212,2.2270625,2.2270625,5.37575,4.30995,4.79985,4.015945,3.2522366666666667,4.267995,4.814765,5.02355,5.081,4.533755,4.37847,4.426805,2.17852,5.41445,1.4761733333333333,4.803265,5.0374,2.4192199999999997,2.74512,4.34077,1.457045,4.58213,1.722175,5.878044384057971,4.01357,4.23028,1.4754533333333333,3.5676075,3.5676075,11.97208,3.916725,4.969555,1.15232875,4.593375,2.6045,1.3862925,2.556575,2.14006,2.17661,1.8549700000000002,3.26453,6.1033,1.7214375,5.0554,4.783871666666666,5.2225,2.46145,2.315175,3.65847,4.4702,5.51565,3.82592,7.404873333333333,3.4869333333333334,3.026923333333333,0.45757444444444445,3.436485,3.74747,3.3943999999999996,6.573695,2.545576666666667,3.25034,1.2198533333333332,1.5638966666666667,0.59421125,1.65076,2.9426,1.5372666666666666,1.7542166666666665,0.70420625,1.227192,4.55855,2.28233,0.6369807692307692,1.55595,1.61373,1.7829339999999998,1.353815,2.570775,1.5638966666666667,2.69265,1.227192,1.227192,0.6369807692307692,1.5815714285714286,2.52424,1.32209,2.7484,0.6369807692307692,2.599025,2.52424,1.4102783333333333,1.4102783333333333,1.4102783333333333,1.889568,1.19684125,0.6369807692307692,1.049398,1.22284375,1.1471333333333333,2.0406199999999997,2.6068,0.8877666666666667,2.388025,1.7066714285714286,0.6369807692307692,1.699328,1.5638966666666667,1.9176333333333335,2.0177666666666667,0.9499409999999999,1.9176333333333335,1.0481288888888889,2.42553,2.5553,2.67985,1.22284375,2.39026,1.7118666666666666,1.7118666666666666,0.8665018181818183,0.8665018181818183,0.8665018181818183,1.2198533333333332,1.5638966666666667,1.7066714285714286,1.55595,0.9630928571428571,2.0177666666666667,1.413286,1.7844200000000001,2.0552,1.2198533333333332,2.65618,11.908075,0.70420625,2.62946,1.9201833333333334,2.761475,1.0780485714285715,1.0780485714285715,0.6369807692307692,1.4813333333333334,1.9075440000000001,1.7066714285714286,1.68622,2.0177666666666667,1.1834555555555555,1.1834555555555555,1.7214759999999998,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,3.4992,1.0481288888888889,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.3968681818181818,56.30327046392497,1.4008425,1.46573,1.7066714285714286,1.9201833333333334,0.9630928571428571,0.5900764705882353,0.6980120000000001,0.6980120000000001,0.6980120000000001,0.6980120000000001,4.3106,17.109600416666666,3.5069666666666666,0.7714990909090909,1.69376,1.69376,1.69376,0.7714990909090909,2.9426,0.6369807692307692,1.699328,1.7542166666666665,2.426,1.0481288888888889,2.4331,1.0481288888888889,1.61139,1.61139,2.16045,2.16045,0.6369807692307692,2.2226600000000003,2.2226600000000003,1.0499727272727273,0.21187472222222223,2.9426,1.6516133333333334,2.22241,0.7714990909090909,0.7714990909090909,0.7714990909090909,0.7714990909090909,0.7714990909090909,1.9201833333333334,0.3968681818181818,1.0481288888888889,2.3785975,2.3785975,2.4767275,3.357533333333333,0.6362333333333334,0.6362333333333334,3.270303333333333,4.126566666666666,1.2113385714285714,3.1896400000000003,1.10403,2.5488,1.992934,1.1314366666666666,3.3274966666666668,2.19741,3.3645333333333336,5.5124,2.536415,1.2504222222222223,4.66956,4.898825,2.8590033333333333,1.747522,2.2998163846153843,4.90408,1.801819722222222,2.7538366666666665,2.7920433333333334,3.2603066666666667,2.34638,6.217386666666666,4.592885,0.21187472222222223,3.05726,4.81251,4.634005,4.43076,4.21152,4.83307,3.177543333333333,1.7714860000000001,3.83461,4.29005,4.43215,4.809665,5.46165,3.00423,0.692235,6.624995,1.5262433333333334,3.3429979999999997,5.02415,2.62457,2.62457,0.785109090909091,1.771625,3.78253,2.920075,4.42729,5.0298,4.671915,5.06235,1.13967,4.6563,5.14285,7.593518958333333,2.1045133333333332,4.123445,4.015935,3.877385,4.662415,4.41048,4.980245,5.380355,5.7802,4.480576666666667,3.6999,4.315943333333333,8.030402,2.05452,1.9456697435897436,2.87753,1.6895633333333333,2.5534399999999997,1.8145499999999999,4.78305,3.580833333333333,5.5408,2.1129000000000002,4.765915,4.1201,4.933725,4.232565,3.767245,2.4269166666666666,2.59323,2.6593733333333334,2.8830833333333334,2.4507733333333332,1.7060333333333333,2.61464,2.7894633333333334,2.56116,2.56116,4.65454,2.8221166666666666,1.7819766666666668,3.22152,2.9935033333333334,2.695873333333333,2.88551,2.567343333333333,2.7674833333333333,5.59755,4.67926,4.199585,3.7591593333333333,3.7591593333333333,4.167965,3.4459999999999997,4.587225,4.180975,3.63036,3.47079,3.179165,6.86603,2.1125825,1.9177,3.403475,2.92251,1.5334833333333335,1.5334833333333335,3.49486,1.750915,4.003134666666666,3.53969,3.269335,2.1156740000000003,2.2051186666666664,0.5794033333333334,3.15515,3.71497,2.36279,2.461115,4.30194,1.228,4.98884,1.1700966666666666,0.347695,0.49440749999999994,22.051889619047618,0.49440749999999994,0.347695,0.6411199999999999,11.72529,3.641,4.39074,5.01645,3.364665,2.841565,4.546477142857142,2.262495,2.92132,3.591855,2.77791,4.27944,5.1036,3.32659,2.099095,3.20917,3.79801,3.8098,2.82776,1.027415,1.027415,1.027415,1.027415,3.126105,2.70524,2.951005,1.7112866666666668,1.1981366666666666,2.28573,3.590395,3.94579,2.851285,3.17488,2.427855,2.9853225,3.751605,3.81492,1.0651066666666666,3.3254033333333335,1.1059100000000002,2.995433333333333,2.732976666666667,3.8166666666666664,5.1637,2.3067433333333334,4.207075,4.544993333333333,0.7363999206349207,0.23735214285714284,0.23735214285714284,0.4990477777777778,0.23735214285714284,0.23735214285714284,0.23735214285714284,0.4990477777777778,4.53838,7.351635,3.460815,0.63484375,3.785285,7.209440000000001,3.044165,3.288373333333333,1.0990316666666666,4.654895,5.51945,4.14491,4.812425,1.63623,4.71006,2.096903333333333,2.2496606666666668,4.58826,5.6916,0.77649,0.77649,3.559055,2.873416666666667,1.8701,3.06798,2.38507,4.314345,2.1481,2.37355,5.4844,5.8975,2.84092,1.73441,4.514985,4.166785,1.97484,3.2821,3.617565,1.724225,1.1065766666666665,3.83427,2.930925,4.792703333333334,6.060761666666666,1.5567833333333334,3.67934,1.0990833333333334,2.4359466666666667,4.408465,3.94416,0.3792028571428571,4.396835,4.71577,0.978898,3.13706,7.6670533333333335,5.93975,2.147445,6.095612,4.7443,3.567825,1.4653533333333333,5.628410000000001,3.0829033333333338,3.4206333333333334,3.688166666666667,1.9505533333333334,1.9505533333333334,5.8321000000000005,5.8321000000000005,3.2893357142857145,3.2893357142857145,7.59437,3.2893357142857145,3.2893357142857145,3.8922268253968255,6.1817,3.852075,3.9124749999999997,2.9305033333333337,4.58798,4.396645,3.1287633333333336,3.1130133333333334,4.661315,3.3148700000000004,2.4561633333333335,2.9500499999999996,2.150726666666667,2.553495,5.0714,7.72268,7.196905,4.488185,3.499575,3.75373,6.833178,4.937285,4.32404,4.53818,4.74413,2.26034,2.10069,2.06534,5.1826,4.89968,4.75266,4.47763,2.26845,2.9240566666666665,7.081546666666666,1.889568,2.4327433333333333,3.2575033333333336,3.2575033333333336,2.979345,4.90696,0.8393583333333333,3.466533333333333,4.569455,3.04025,10.3869525,4.835865,2.8812033333333336,2.5172966666666667,5.3536,6.02885,2.979615,5.60405,2.3649833333333334,4.23754,2.944364,4.47584,5.3275,4.73517,1.4037766666666667,3.8271333333333337,1.17149375,2.473123333333333,5.059294823529411,7.94148,2.716893333333333,2.961256666666667,6.840831666666666,1.783262,4.78649,5.52245,3.74348,3.493045,2.3590966666666664,4.83253,2.7361750000000002,0.52089,5.4557,3.459125,3.563,5.53645,4.826395,5.0753,7.1272625,5.10545,5.9156,7.8282975,54.77099,4.727355,3.972345,4.80987,6.2825,5.0133,5.5726,4.262725,4.75493,1.840265,4.34855,4.570685,4.29693,2.507675,5.2178,4.088935,1.5404579999999999,5.9013,6.6822,8.12931,5.542,3.14121,4.793095,2.93216,3.077385,3.45498,3.97323,3.626215,6.39827,2.5945,1.0704714285714285,2.1996027499999995,0.569834,0.569834,4.007755,0.569834,2.380551892857143,2.380551892857143,2.9683198928571426,4.48576975,4.891938142857143,2.1996027499999995,4.9157125,2.3972625,1.45604,5.42795,2.035815,7.135753333333333,5.708373333333332,11.113889560606061,3.13839,2.7722700000000002,0.24034939393939395,1.7149810000000003,2.2812466666666666,0.9666525,1.509735,2.816053333333333,2.0010125,2.968025,0.6861900000000001,28.35279333333333,1.989585,0.7718538461538462,2.91978,2.91978,0.42909055555555553,1.7652825,3.1717500000000003,1.2131275,1.971555,1.5333725,4.27566,2.770525,2.0313033333333332,2.26844,1.1007233333333333,2.502025,1.6746666666666667,5.868383833333333,4.622655,7.047855,2.555075,3.3217533333333336,1.1070016666666667,2.307045,4.97754,5.924005,2.9940766666666665,2.3213,5.676809166666667,2.3033425,3.000443333333333,4.1959075,1.1071833333333332,3.8735999999999997,2.3231733333333335,5.7542,5.4285,6.1776,3.413505,4.3106875,4.3106875,5.40255,2.270535,5.77335,2.8195266666666665,1.6787775,4.036555,3.96049,6.222238333333333,5.33755,3.1903633333333334,2.552303333333333,2.89612,1.3698642857142858,5.03365,1.08175,5.754836666666667,4.96363,7.44895,4.16753,4.431405,4.184505,8.440725,4.556475,5.10695,1.08969,0.7043435714285715,5.0127,4.756905,2.444075,3.261775,3.455215,4.189905,2.54875,4.923935,2.7340433333333336,5.62215,5.24045,4.7905,4.7048,4.477415,2.95599,7.049971,3.486975,4.52253,3.24002,3.87854,5.845954047619047,0.5777714285714286,3.6925666666666666,1.65597,0.7451744444444445,4.30373,3.586935,1.0848475,1.969285,6.20992,3.873665,2.21532,2.93641,2.5284333333333335,5.1744,4.44917,1.9237390476190477,4.09131,2.596103333333333,3.4848666666666666,4.569565,5.13825,3.4116133333333334,3.8996333333333335,3.925933333333333,1.87345,7.20267,4.865715,3.97609,4.85805,2.3967775,4.430615,4.736165,3.886425,3.89574,9.89056,4.184725,3.7486433333333333,4.55649,4.44085,2.5925,4.1309,4.09096,4.823635,3.2395833333333335,4.4382,1.96374,2.8954400000000002,3.40235,3.50491,4.778825,1.956852,4.356145,3.0152466666666666,5.3773,3.04588,2.546375,4.216805,4.811745,1.0235525,3.25297,2.664423333333333,4.938336,1.6856259999999998,1.8677599999999999,1.262415,5.29565,5.6806,5.793044999999999,3.8413425,3.59241,2.323455,2.22101,2.25242,1.39959,4.760535,2.74744,1.8146275,0.8696692307692307,22.452045064102563,2.84715,3.3683683333333336,5.8496500000000005,4.320071794871795,1.3407866666666666,2.728767333333333,2.857519318181818,1.167554,1.7006566666666665,4.14749,5.135,3.6554475,3.39212,5.62385,4.827115,7.5230375,5.044668333333333,5.0677,4.056595,3.092803333333333,3.92792,3.81514,3.411566666666667,4.58019,2.2764475,5.46775,9.70413,3.623125,4.05799,4.32494,0.54362,3.4951666666666665,2.2975866666666667,2.3709875,4.295305,3.87673,5.393,3.76879,2.72708,2.1639975,1.618845,1.073238,1.6473766666666665,1.24047,4.057855,4.24532,5.0205,4.851275,6.93831,2.3452033333333335,1.3421480000000001,2.5330533333333336,8.290893333333333,3.307045,2.87725,3.33438,4.7303,3.5909174999999998,3.40728,1.667048,4.332775,5.3304,3.90911,3.775195,4.49402,4.27484,4.515625,4.201325,4.41037,3.26756,1.977485,3.3805,3.35011,5.5626,2.81932,4.1379185,4.236205,2.929885,2.84935,2.0697633333333334,2.3179166666666666,3.183319,3.183319,2.0509733333333333,2.74797,2.28381,2.35531,1.9320199999999998,3.84911,2.3580666666666668,2.71939,2.6319666666666666,1.8320866666666669,4.295185,3.187475,3.792245,2.15578,5.1599,5.0653,4.876190555555556,2.557565,2.33914,2.635495,2.37795,2.058125,2.821965,1.91693,2.5171,2.449635,6.392271,4.131655,3.535065,0.613551875,4.396095,4.44647,4.26632,3.567195,3.99346,3.5585408333333333,5.9892,4.70886,3.97661,2.7351010714285713,2.263968666666667,2.44832,1.858324,1.6827739999999998,1.6623819999999998,2.1390000000000002,1.8491325,1.3823800000000002,3.9800725714285714,0.6369807692307692,0.5331866666666667,2.0119599999999997,1.558885,1.604264,1.6677833333333334,2.395658181818182,1.5223716666666667,1.8041340000000001,0.584205,174.00619988945655,0.5646266666666667,2.04032,1.01976,1.1665825,2.0466,1.5510675,1.9583925,2.388803333333333,2.4006525,6.8801,2.952765,3.6655876190476193,1.7103066666666666,3.1998,1.289075,1.289075,5.7663199999999994,0.5163361111111111,2.4456375,3.4830666666666663,2.973106666666667,0.7877209090909091,0.6275764705882353,1.2848690769230768,1.1297454545454544,2.44775,4.40083,2.485245,2.1963875,2.6525766666666666,4.468675111111111,1.1227,4.46825,3.745,3.367375,6.60311,1.9477033333333333,3.205965,2.79567,4.664802,2.37601,4.30254,3.85539,3.69606,5.544765,2.68328,5.62937,3.07397,2.32358,2.587225,2.140195,2.99071,3.85765,2.86519,1.786085,1.80027,2.71549,4.610925,6.019583333333333,3.20683,2.828785,1.492125,4.327085,3.7151666666666667,3.7473666666666667,2.700315,25.76995057814408,2.1812186666666666,2.77713,3.28079,3.509,3.346966666666667,5.938726666666667,3.1747099999999997,2.8123400000000003,3.5942333333333334,3.4205666666666663,2.059206666666667,3.129023333333333,3.354366666666667,3.3697666666666666,1.6500166666666667,1.7307359999999998,0.5874159999999999,2.2267233333333336,2.1891525,0.22707,2.472933333333333,2.687215,0.22707,0.22707,2.0280366666666665,0.22707,0.22707,0.22707,0.22707,2.807893333333333,2.8473566666666668,0.6424646153846154,3.6607739285714285,1.8291425,1.931374,5.07295,4.5069225,6.511067499999999,2.4195825,5.1985,2.4231,2.919086666666667,1.364712857142857,6.1027466666666665,2.7118800000000003,6.4445725,1.0057833333333333,1.2185725,4.955395,4.361365,36.38488818914419,1.8009879999999998,1.3080100000000001,2.24074,2.43988,0.8665018181818183,2.151333333333333,2.3099833333333333,2.8221066666666665,1.9455866666666666,2.3977666666666666,1.6843733333333333,2.9688499999999998,2.2897933333333333,2.4830900000000002,2.39393,2.357326666666667,4.10017,3.1767866666666666,1.2060600000000001,4.123375,3.841785,21.185530944444444,2.9234000000000004,3.5680333333333336,2.968253333333333,0.782788,2.9031959999999994,1.5688424444444444,2.9031959999999994,2.539363333333333,2.69079,3.226233333333333,2.0236525,1.9388175,4.66414,3.78575,5.34785,4.005765,1.967662,5.27715,1.657905,4.64266,4.1822190952380955,5.4728,0.7610209090909091,2.2501025,2.21712,2.937604,3.33009,1.110795,4.88551,1.9133900000000001,2.043746666666667,0.9907959999999999,0.9907959999999999,3.0645166666666666,3.5424,4.48492,29.92572375,6.22156,1.8311566666666668,3.5243900000000004,0.3523046666666667,6.78174,5.11115,3.0314833333333335,3.18681,6.25428,4.91902,1.1938025,4.930375,1.131608,3.99957,4.56355,5.47165,2.050745,3.309795,4.432975,3.63203,3.780706,4.708405,1.2902533333333335,2.7889866666666663,4.2352,5.0008775,3.0436033333333334,3.1905900000000003,2.9607799999999997,3.33942,3.96406,4.03608,4.0101,1.75275,6.02166,2.483025,1.66065,4.066505,5.11274,3.91447,3.981325,0.94347875,2.60721,3.33182,2.055945,4.631603666666666,2.92541,3.580295,2.7384066666666667,3.2083366666666664,2.69886,3.465666666666667,3.5995666666666666,3.0299266666666664,4.33298,3.970485,4.55157,1.67441,4.044,4.27344,1.905195,1.898525,1.78016,3.831072222222222,4.61886,5.596460729166667,3.88848,3.704266666666667,3.68911,3.625833333333333,1.3382083333333332,3.16994,3.20017,3.506705,4.475345,4.78949,4.874635,2.341615,1.928565,1.539085,1.4026475,3.479715,2.32085,2.15051,3.36488,5.035,1.65005,5.60425,1.3716685714285715,1.7072325,2.87403,3.27978,2.944935,3.41143,2.955935,1.658545,1.0081030526315788,3.423415,3.6689249999999998,4.921565,8.419346666666666,2.2531033333333332,3.2072933333333338,1.5433533333333334,2.59761,2.9588366666666666,1.2906433333333334,3.5781333333333336,3.1544166666666666,3.1209100000000003,4.117466666666666,3.838566666666667,6.795516666666666,3.19618,0.7484254545454546,1.96595,3.24915,3.11884,3.46205,3.8519,2.650702,4.47977,3.27289,1.973515142857143,3.490555,3.112135,3.734845,2.3188766666666667,4.59575,4.85761,4.837595,4.528015,4.256595,1.3324777777777779,5.2405,3.3849666666666667,3.1121833333333337,4.81162,2.900173333333333,2.86051,0.4000157142857143,0.4000157142857143,2.9333458333333335,5.18385,4.864105,3.085255,3.88459,3.535705,2.8202,5.48725,4.559125,0.9625475,4.57524,2.7679766666666663,4.747945,2.841953333333333,2.971173333333333,2.02587,3.285662857142857,2.767673333333333,2.9129733333333334,2.6191066666666667,2.7288366666666666,2.092896666666667,23.66328237779974,5.5321,5.2582,4.077965,4.08904,5.285795,3.83085,4.56612,4.18286,3.956845,4.35976,4.21763,3.131396666666667,3.2079966666666664,3.1510599999999998,3.0295050000000003,3.0404466666666665,4.4099,3.53128,4.581185,5.13555,4.237305,1.275502,1.641808,1.641808,3.77127,3.781915,2.5901033333333334,2.713706666666667,3.0817,4.79454,3.49995,8.480966666666667,3.2078166666666665,2.6764466666666666,3.0681333333333334,4.650615,1.7608666666666668,6.3385750000000005,2.5495033333333335,2.7574233333333336,1.6251975,4.3368,3.654295,6.65526,3.281405,2.46373,4.1869,4.303182666666666,1.792505,2.45696,1.6536066666666667,8.792349999999999,4.468775,6.6741150000000005,2.32802,4.774265,3.78709,4.347485,5.2995,3.7548999999999997,3.7548999999999997,2.1674525,4.570885,5.2294,2.53473,6.144071428571428,1.6664025,6.1263,9.969697333333333,3.7328666666666668,4.814948,2.732113333333333,1.982495,0.5955225,4.044325,2.457115,2.758675,4.222659999999999,2.6661,2.6061099999999997,4.17333,5.3651,5.15115,3.919535,5.3997,4.150055,2.19769,1.0724909090909092,2.80797,3.04142,3.0722733333333334,5.6441,3.87767,4.34782,3.21991,1.980094,4.714435,1.01662625,4.93203,1.0993944444444446,5.59855,3.12972,5.2087,5.9461025,3.506805,3.275055,3.4788,2.5326566666666666,4.12218,3.694255,2.417315,4.560915,4.648435,6.724306666666667,4.76831,2.17753,3.45559,3.044765,5.389596666666667,1.7435475,1.7435475,2.737883333333333,2.0582033333333336,2.69999,2.75102,0.9270379999999999,6.43295,4.40422,2.2432975,2.192595,2.435925,3.63394,2.90698,3.630685,4.236765,5.42425,5.07275,6.16195,5.9644,1.3517625,3.965845,1.0718583333333334,2.599175,4.4566,2.439305,2.90195,3.059245,4.75039,2.94109,0.46354684210526315,4.442565,4.07609,5.32715,3.282145,4.601095,5.78515,4.71141,4.011405,1.699235,4.7039,2.14802,4.1235,4.1235,6.63695,5.0748,5.6284,5.27425,2.610275,1.7608666666666668,4.47447,2.627013333333333,1.65951,2.18512,4.373925,4.188955,4.67138,7.57996,1.7905,6.00835,1.2992216666666667,3.33715,6.1041,2.10921,4.68225,3.548833333333333,5.0458,3.58113,4.785955,2.5294266666666667,4.042305,3.909225,6.16475,3.985925,3.85364,4.026625,5.8297,4.152485,4.67161,3.67704,4.40325,7.3921633333333325,3.386785,6.76593,3.128745,5.08105,6.441093863636364,4.778245,3.42185,2.021505,5.18415,4.028535,0.8843866666666667,8.2522,5.9476,5.8135,3.2783516666666666,5.4252,2.82863,1.704212,3.760955,1.0651066666666666,5.4574,3.03813,4.63935,5.40665,4.8748,4.73011,2.82084,4.549745,5.2769,1.74454,7.683333333333334,2.847905,4.37831,5.0975,4.04568,1.963195,4.43658,4.53953,4.6293,3.0465933333333335,3.940005,3.632625,5.3666,4.62116,3.87225,1.9216525,1.9216525,7.218541666666667,1.5818428571428573,5.2424,4.424935,5.7179,3.45878,3.94598,5.24135,3.603745,0.8611816666666666,0.8611816666666666,0.8611816666666666,3.888295,2.990005,3.745885,4.749031777777778,2.960315,1.4250783333333334,4.85767,2.3608525,2.439475,4.03851,5.5296,1.504685,2.2651399999999997,4.77689,4.08923,2.748165,4.342685,1.73589,1.8959225,3.13396,2.60473,5.9504,1.358014,1.604264,1.1816025,3.92119,3.59637,3.1229433333333336,3.4239333333333337,5.69185,1.6531120000000001,2.154065,2.78798,1.6130285714285715,4.536655,3.699125,2.49098,5.3988,5.68465,3.015805,5.08705,4.72433,3.326425,4.150145,4.81993,3.81053,6.17895,5.8476,1.7221966666666668,1.80415,3.564715,4.887725,4.20322,4.75185,3.628933333333333,4.45103,4.827965,5.4624,2.67944,5.5478,4.382475,4.817905,7.2489125,5.3723,0.7791272727272727,3.880325,3.8887525,2.168985,4.343125,3.7836,5.7779,3.73072,4.47117,3.774735,4.59661,5.4813,4.366025,3.62682,4.294805,5.2395,4.22673,3.795085,2.834385,6.28363,4.72013,1.8215599999999998,3.724985,3.8369633333333333,3.72653,5.0071,4.879375,2.60011,0.9325222222222221,4.4631878787878785,6.431497500000001,3.781105,5.01545,3.334895,7.9826033333333335,5.0261,3.5493333333333332,2.9691266666666665,3.55721,1.93778,3.261725,4.54148,2.8124624999999996,4.39853,5.0688,1.407635,5.5851,0.7371,5.27085,2.558415,5.2811,4.97435,1.3804550000000002,1.6478533333333332,4.183215,1.831195,4.442955,0.5227091666666667,5.99675,2.9996,1.506518,6.021224999999999,6.55955,0.731765,1.608315,1.292688,1.292688,1.292688,1.8758366666666666,5.0609,3.578145,4.80673,3.7264,6.06555,4.56278,1.94601,4.47882,5.0903,0.2916707317073171,4.144905,4.905955,5.5519,40.82674951515151,5.973395833333333,5.1338,11.704521333333334,4.669845,4.50152,8.058365,3.052705,4.320345,4.03784,4.579185,9.28134,3.771175,2.4292366666666667,3.530655,4.977315,4.018025,3.803845,4.44898,2.43376,4.54374,4.075535,6.933794,4.44626,5.2135,2.2978675,3.99123,0.514709375,1.3436566666666667,3.94155,6.3638,2.96124,1.3719216666666665,1.3719216666666665,3.417325,3.75295,4.515045,3.612895,1.79673,3.68447,4.11369,2.3361325,3.0019766666666663,1.706738,2.200486666666667,4.113265,4.70105,2.2777,4.38494,2.274635,2.096255,3.448605,3.46262,3.86355,3.66166,6.390137333333334,2.796997333333333,4.06174,0.6882845454545454,0.6161808333333333,3.63744,2.070375,9.12162,3.5069666666666666,5.231,1.59921,4.504095,1.67185,4.374965,4.95531,2.999233333333333,4.169885,5.4583,0.4147435,0.4147435,3.4555333333333333,3.1668766666666666,2.9894200000000004,3.76777,3.46282,4.852825,0.9063054545454545,11.268248333333332,9.75916,2.570775,4.7614675,4.905795,5.0933,3.342645,2.65206,2.17072,1.958145,9.9475,2.531875,2.6415566666666668,3.860842,4.371505,3.860842,2.82005,3.314033333333333,3.1058333333333334,0.7687463636363637,5.291890833333333,3.692266666666667,2.959566666666667,4.72864,8.64592,10.344495,4.76988,4.02628,5.0321,6.8018125000000005,2.0670175,1.277675,27.3557925,3.295855,4.968975,1.00088,4.4588,4.31793,4.378265,4.60953,4.66095,6.127566666666667,3.172496666666667,1.9119866666666667,0.7429764705882352,0.7492083333333334,5.1928,4.512175,1.3535199999999998,4.374718333333334,0.8403916666666666,3.3809666666666662,1.3170566666666665,4.09456,5.9321,2.00236,2.45595,2.14948,3.975115,3.03293,0.5632777777777778,4.324705,3.675315,3.5163333333333333,3.33541,5.1988,3.0509799999999996,4.40053,2.696175,5.4033,9.33393,5.12705,6.568695,2.65465,2.9520866666666667,4.39717,4.12842,4.450795,4.177345,3.6972,5.32455,1.18598625,3.58395125,3.144143071428571,0.709612,1.641808,1.641808,5.46035,7.731918333333335,0.9034384615384615,4.78877,0.9004516666666667,2.81319,2.3883966666666665,3.118620681818182,6.521168888888889,2.917996666666667,1.0874655555555557,2.48798,1.271725,2.7523733333333333,3.1993899999999997,2.9445683333333337,3.4094333333333338,2.6063366666666665,0.9004516666666667,4.758795,4.746425,5.46325,2.93912,5.3848,2.02738,6.05215,5.0812,4.92744,3.09031,4.143025,2.23354,1.80868,3.823535,2.683975,4.672835,5.46425,1.667794,4.416095,2.71888,6.492256666666666,3.41267,2.410105,0.9004516666666667,2.44903,3.04356,6.9269184444444445,2.4019033333333333,1.490308,2.4019033333333333,0.4925091666666667,1.3389099999999998,3.40431,3.60878,1.9515725,3.632955,3.6331230000000003,0.5208079999999999,0.5208079999999999,0.5208079999999999,8.807485,1.6006360000000002,0.7295336363636363,37.494807162337665,1.7417951111111112,0.6028911111111112,2.72688,0.6028911111111112,3.45676,2.004265,2.37303,2.657906666666667,5.02565,4.965415,4.42878,2.3181366666666667,0.8524114285714285,4.50761,3.09022,4.92809,0.9621685714285714,2.749775,2.749775,3.926075,4.799395,3.62712,5.259743846153847,3.833835,5.09405,5.2711,1.918928,1.169805,5.3278,6.2473,3.803605,0.638279,4.88303,4.239591666666667,0.8824425,4.395895,2.45669,4.55937,4.840315,1.9285757575757576,1.9285757575757576,4.411195,3.35591,0.9051977777777778,2.72356,3.1615866666666665,3.889855,3.79959,4.460085,0.4571314285714286,0.32930176470588235,0.32930176470588235,0.32930176470588235,0.786433193277311,0.6174838461538462,0.661135,0.32930176470588235,0.32930176470588235,8.026815000000001,0.32930176470588235,0.786433193277311,3.51077,1.2499175,4.323435,1.0955583333333332,0.7684807692307692,0.8824425,2.459015,2.686775,4.026865,2.9613,0.32930176470588235,0.32930176470588235,4.355105,3.4594,4.474435,2.577015,3.804895,1.6519059999999999,3.482435,0.661135,0.661135,4.81875,3.03352,2.63803,2.66931,4.366384333333333,0.985351,0.7359246153846153,10.311645,1.3177625,4.46475,4.347495,4.877905,2.0729800000000003,0.4074321739130434,1.00503375,2.87143,3.405235,3.65141,4.98554,1.57453,6.0376,3.708305,5.449025000000001,4.373615,3.0414866666666662,3.202636666666667,6.234536666666667,2.68756,5.2377,3.897805,4.544993333333333,5.79476,0.5791273333333333,4.291435,2.99659,2.198803333333333,0.6717299999999999,4.556335,6.25253,3.72927,2.566515,2.44837,5.1991,2.61481,3.047475,0.971308,0.4478561538461538,3.82335,0.351496,0.8497036363636364,3.754425,3.08624,4.62274,2.611785,4.830985,4.204305,6.493281,3.7203,3.173105,4.87744,1.5652775,5.3164275,2.0054,4.096255,2.56265,6.244123333333333,2.92362,1.415456,4.71907,6.6351925000000005,6.5662725,3.2625166666666665,0.7863416666666666,2.6674,4.99447,4.07022,4.60856,4.787345,4.440805,4.62271,3.44102,3.91418,1.7358200000000001,2.25443,1.30753,4.009415,9.594645,3.856515,3.41468,5.88715,3.01559,4.80236,2.4468566666666667,3.24304,3.075895,4.644795,3.17605,3.98851,3.79595,5.262,5.4902,4.903935,4.64758,5.1233,5.1911,3.457945,5.73795,8.424949999999999,0.8799844444444445,5.4462,4.20065,4.59529,5.098,5.9708,2.24102,8.68735,2.285626666666667,2.92621,5.4383,3.577765,4.00368,2.0997,2.08948,2.8152500000000003,2.3026,1.9523633333333335,3.1040566666666667,4.46723,4.50565,3.921875,3.140545,4.902098333333333,3.16801,2.918615,3.955265,5.1067,3.14035,6.181229166666666,4.469185,4.0996,3.7057,9.53392,4.91584,3.44655,4.64442,5.05375,4.24113,8.85261,1.304025,2.28607,4.146945,3.0469899999999996,3.0469899999999996,1.80507,8.433,0.9393600000000001,3.75465,0.83219625,2.154065,4.3045,4.489375,4.4381,4.62438,2.676293333333333,3.33635,3.923745,3.665215,4.55229,3.536325,2.9365066666666664,4.673705,5.090873333333334,4.666535,4.96659,1.768498,1.545832,2.55255,5.42205,2.4323275,1.6932333333333334,2.0473375,4.65626,4.825665,2.836495,4.179075,0.56518,2.63523,7.818035,3.001445,1.4324366666666668,0.8279225,1.2067833333333333,1.6186433333333332,2.000215,0.7586333333333334,1.9698533333333332,4.0590705,4.726395,5.2402,2.5759633333333336,2.20369,8.87738,3.056,2.223021666666667,2.223021666666667,2.223021666666667,6.313643333333333,2.1994433333333334,3.521085,2.48844,0.528528,1.46017,2.3919825,7.2356425,0.46721277777777775,3.70652,3.8724274999999997,5.43065,2.572652777777778,0.46721277777777775,2.572652777777778,1.08705625,1.249302,6.11545,4.74211,6.741705,4.512415,5.39325,3.71824,4.245965,4.86992,5.45465,6.33355,3.3948,3.229615,5.35695,4.67299,4.13283,4.37684,5.4155,1.3574616666666666,3.1578766666666667,1.17654625,2.194275,3.191844166666667,1.5338191666666665,7.143485,5.389596666666667,2.8994066666666667,5.60825,2.862665,5.07715,2.64885,4.91218,4.72964,9.132425,5.95015,5.155,2.208295,2.90366,2.2812799999999998,0.54362,2.313824,6.85745,5.2691,5.07535,4.53261,0.7511066666666667,2.0000575,1.340515,4.610495,0.7343661538461539,7.590815,2.098115,1.0862075,1.0862075,3.684092,1.9782060000000001,3.4678,3.13404,4.504095,3.7203625000000002,3.7203625000000002,4.71476,6.460833333333333,2.998753333333333,2.70588,3.389466666666667,4.231115,1.891444,2.957523333333333,5.6523,5.8285,4.994475,4.97073,3.9223250000000003,4.69401,3.6449225,3.339866666666667,2.207765,3.97548,5.4148,3.2299212500000003,5.2599,5.84555,1.9833100000000001,2.659336666666667,6.33925,6.8666,1.4952260000000002,2.757475,2.4162425,3.0055099999999997,2.2182875,2.736075,2.375468,1.0802811111111112,1.83157,2.53585,2.2376575,2.5627016666666664,2.5627016666666664,3.0754795,2.924075,2.2556759615384614,2.7063,2.34967,2.0936,1.6162546666666666,4.9600925,14.666039666666668,3.0318766666666668,3.3883666666666667,1.848574,1.848574,1.7247666666666666,1.7247666666666666,3.0571566666666663,3.8869666666666665,3.0058566666666664,2.0168975,2.0168975,4.027866666666667,3.3519666666666663,1.07975,1.5484142857142857,3.0715299999999996,2.947433333333333,3.862033333333333,2.780425952380952,3.2887033333333338,3.5224666666666664,0.690042,2.6162,3.613484666666667,6.94073,4.688215,4.35726,4.47395,3.449385,4.729505,4.67945,3.1875999999999998,4.384175,1.484255,3.3437,6.05135,5.32445,2.538625,1.3139133333333333,2.638745,2.73244,3.3444000000000003,1.6992666666666667,0.7517714285714286,3.1293166666666665,5.0004316666666675,4.719285,4.50128,4.79494,2.9432333333333336,1.9359,3.1658999999999997,2.82042,3.858,3.1726500000000004,3.8933666666666666,2.8584333333333336,3.935366666666667,3.4201,3.075483333333333,5.3783,5.04795,5.208471666666667,5.208471666666667,3.28911,3.7581,3.72848,3.559585,2.58749,5.2628,3.088005,3.1186866666666666,6.2345,0.8539333333333333,4.713195,4.757245,2.4774833333333333,4.832014166666667,3.28471,1.8961333333333332,1.5337,2.6971966666666667,1.02156,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.5492185714285714,0.5492185714285714,1.2335075,0.8291508333333333,1.5729723484848486,1.027982857142857,1.027982857142857,1.1260990151515151,0.44687333333333334,0.4204833333333333,1.2098725,1.3804675,3.5436,2.7329,7.70489,3.2116633333333335,4.16837,4.07722,4.635737428571429,1.3330466666666667,4.86461,4.79312,4.458225,3.43096,1.405722,3.992552692307692,3.478455,5.1894,4.81673,3.365935,4.61172,4.05556,4.815865,1.151564,4.458945,4.588485,3.23595,2.291263333333333,3.199985,2.331715,3.092885,3.936255,3.001163333333333,5.3225,8.483595000000001,3.09487,5.1023,4.659325,4.488008333333333,2.9112233333333335,3.414915,1.3195157142857143,3.6963,3.050745,1.8326619999999998,0.96727,2.66094,1.2667166666666667,0.5509346666666667,3.6049,4.106055,5.047726666666667,3.6500333333333335,2.53825,2.95443,4.847085,3.835733333333333,4.32675,2.776975,2.0634366666666666,4.29495,4.75355,4.050635,5.5401,4.75592,3.448785,4.612845,3.14441,4.399345,2.0146416666666664,4.84733,5.2838,3.031065,3.976095,2.48698,3.529805,5.2538,4.87618,5.3642,5.0414,4.98201,2.9899533333333337,5.7116,4.78075,4.959845,2.356465,0.90392,4.212125,4.98905,4.51877,4.707515,1.92393,4.580225,1.81975,5.00975,4.815165,4.874345,2.3439775,4.643485,5.30395,4.4807,3.204193333333333,4.63892,5.18095,5.0438,4.381505,2.356465,2.593595,2.949985,4.624865,4.063275,4.51051,3.65646,5.0797,2.276775,6.72235,4.54852,4.378795,5.2365949999999994,4.623415,4.957725,3.4002300000000005,2.5713166666666667,2.5713166666666667,4.392505,4.53461,4.34505,2.1738475,3.0530212499999996,1.10433375,3.20622,3.1717366666666664,2.818486666666667,3.161353333333333,5.0427,2.80482,5.4382,2.87098,4.902555,4.19902,1.89251,4.0992,1.6467599999999998,2.9534800000000003,3.814195,1.04032,5.022,4.570955,6.51011,4.675105,5.3656,1.443557142857143,4.471565,6.2495,9.158719999999999,3.5179666666666667,3.4467666666666665,1.9866679999999999,0.89193,4.00321,1.02194,4.29309,4.522305,5.16175,3.20953,3.99032,1.24164,3.087135,3.40737,4.099465,4.59142,4.48292,5.02225,2.55475,4.58849,4.965535,6.0269,4.44854,3.73734,0.3496255555555556,0.3496255555555556,0.3496255555555556,0.3496255555555556,5.19225,2.767445,6.37245,2.78691,5.4865,4.770685,3.96028,2.230545,2.3786833333333335,1.4689933333333334,5.75265,3.247006666666667,3.945035,3.237665,3.278225,2.342365,1.16021625,4.602495,2.4954,6.398858333333333,3.82976,5.78055,2.21088,1.3968383333333334,0.895611111111111,3.09684,4.44597,3.14517,2.097365,8.628615,4.46051,3.204145,2.39648,0.5249780000000001,3.324645,2.742075,2.14501,1.6405,3.44929,3.45262,2.592095,3.1218266666666667,2.82725,3.30518,4.435615,4.432615,4.45383,4.40295,5.782396666666667,0.6329713333333333,4.4878,5.4684,5.01375,4.745865,3.4215999999999998,4.975125,4.742355,4.585515,5.039728333333334,5.25425,4.53878,4.380355,3.70708,4.415975,2.78322,8.68147,5.05075,4.709375,5.08865,4.76253,4.99576,3.818885,1.0895822222222222,5.832990833333334,4.049745,5.17675,1.6215316666666666,4.149025,4.03865,8.35803,4.80389,2.93287,2.1147899999999997,4.59816,1.54215,1.02794125,3.876765,6.00195,1.7631066666666666,2.21326,2.716836666666667,3.90899,3.46557,3.46057,5.1853,2.8073333333333337,3.99895,3.5665205,3.183565,3.5013666666666663,3.479375,2.58594,2.52659,2.460035,2.2797233333333335,2.88271,4.2274,0.5794033333333334,2.4831933333333334,4.673035,2.86448,3.7119999999999997,4.573645,5.40675,4.150115,17.508296121212123,2.9712433333333332,3.9934333333333334,1.634662,0.7896454545454545,0.7896454545454545,0.7896454545454545,0.7896454545454545,0.7896454545454545,4.90154,4.97305,4.830115,9.361237000000001,2.56435,2.56435,4.5018,4.535286666666667,1.23848,2.2127166666666667,4.48345,2.582925,2.4453175,2.2279825,2.945545,3.7586753333333336,2.180145,4.318905,0.8213,3.0074799999999997,3.019576666666667,3.0453666666666668,1.5620866666666666,3.3214466666666667,2.5928366666666665,0.89549,2.7824733333333334,2.5656066666666666,1.2284333333333333,2.5900666666666665,2.8114666666666666,2.427426666666667,4.829600666666667,2.3315366666666666,3.3877666666666664,2.1998575,2.8203766666666668,1.1847444444444444,2.8619066666666666,4.976057333333333,3.5721333333333334,1.10354625,2.8419399999999997,1.446695,3.021793333333333,2.738993333333333,4.626638333333333,2.8156866666666667,2.84843,4.8196813333333335,2.90225,2.180085,3.067266666666667,2.8774800000000003,2.2021833333333336,2.8112366666666664,3.109586666666667,3.3414,3.3990333333333336,3.1985533333333334,2.770706666666667,2.578275,3.904383,3.904383,2.8530766666666665,1.8732966666666666,1.7399866666666668,2.6484566666666667,5.36401,2.807453333333333,1.8617733333333335,2.00073,3.2139333333333333,4.663385,2.7551366666666666,0.898072,2.4728320000000004,1.5771633333333333,2.4653300000000002,2.0680866666666664,2.7787633333333335,2.100443333333333,3.5241000000000002,1.184182,1.5214933333333331,1.3155066666666666,4.052066666666667,2.3726233333333333,4.00668,0.9677322222222222,3.95041,2.0841433333333335,2.528325,1.785462,1.8048166666666667,3.3466,25.271991735930737,6.775153333333334,2.9583166666666667,3.2847175,2.2714866666666667,10.220816,2.9436233333333335,0.95264875,2.9203799999999998,2.281093333333333,2.3163266666666664,3.0160933333333335,2.570933333333333,2.6220333333333334,0.827701,3.6108333333333333,2.5111866666666667,2.8078266666666667,2.6309766666666667,2.9901166666666668,2.0476933333333336,2.0849100000000003,3.0544366666666662,2.3736633333333335,2.224755,1.7027899999999998,5.717453333333333,4.768035,2.456745,3.0,2.1338399999999997,2.3399766666666664,7.727126666666667,1.5600166666666666,5.08455,2.0906075,2.0059775,6.67098,3.0492166666666667,2.6732,2.553125,1.764414,1.512773076923077,3.23737,3.4389333333333334,4.46981,1.50335,3.7430333333333334,1.729735,1.729735,3.86276,3.7789,2.3832977142857144,2.3832977142857144,6.384746666666667,3.21227,0.42595,11.68977257020757,1.2056799999999999,0.8907471428571428,3.77118,1.5322804273504271,1.614105,6.541013333333334,3.87858,0.7546400000000001,2.01174,5.128963090909091,2.6183224999999997,4.46941,1.4774571428571428,5.4919,5.3031,5.4442,3.73738525,1.9903020000000002,3.05606,2.5910100000000003,2.921226666666667,2.3672,5.138966666666667,5.19195,4.943415,1.922585,4.805045,4.18592,2.9310899999999998,2.34885,5.2887,2.773426666666667,8.31504,7.0359425,2.032305,2.69355,1.693404,4.308466666666667,4.308466666666667,3.690633333333333,3.24842,3.3574733333333335,4.91716,9.331822500000001,4.333365,2.474355,5.6119,4.6548,5.2816,2.03634,0.795675,1.33697,4.41357,4.862235,3.490133333333333,2.9842566666666666,3.9095333333333335,2.43073,3.68508,4.34851,3.274765,5.87205,3.2880033333333336,4.489300666666667,3.6138999999999997,3.26043,3.4149,6.31815,3.10385,5.68825,5.4514,2.835565,3.437,3.437,5.83823,12.418088333333333,3.7340999999999998,6.700010000000001,7.273073888888889,3.35738,2.4582433333333333,3.845215,1.2782333333333333,3.85879,2.227065,2.9066666666666667,3.0398266666666665,3.564666666666667,2.23366,2.3117666666666667,2.9007066666666668,2.7332966666666665,3.4173666666666667,2.87224,4.400395,2.3948266666666664,2.836123333333333,4.542175,3.0214466666666664,3.1346333333333334,1.2728625,2.1363025,2.915713333333333,2.9111333333333334,2.5233033333333332,2.34196,3.771933333333333,2.6630266666666667,2.579543333333333,3.011013333333333,3.12886,2.9324999999999997,3.4965333333333333,2.6206333333333336,3.295973333333333,2.6779666666666664,3.289012,2.684253333333333,2.5780600000000002,2.4099633333333332,2.54136,2.826416666666667,3.28787,3.10561,2.71074,2.0260225,2.0260225,0.7512650000000001,1.667048,4.53082,3.01954,2.6587433333333332,2.23366,3.2576066666666663,1.2960399999999999,2.9317966666666666,0.5929033333333333,3.5846999999999998,3.16348,3.190925,2.8355333333333337,2.6118866666666665,2.777153333333333,3.0738066666666666,2.8724933333333333,3.5231,6.110976666666668,1.686708,2.2727666666666666,2.691713333333333,1.8184133333333332,2.0598533333333333,3.0191166666666667,2.8776966666666666,1.71797,2.6791,2.47769,2.73621,3.076943333333333,3.0241433333333334,3.0375933333333336,3.391166666666667,1.4445325,2.99825,2.639813333333333,3.714066666666667,3.5354666666666668,1.9279875,1.7936466666666666,3.4444666666666666,3.0407266666666666,3.481033333333333,2.4149866666666666,3.2741633333333335,5.326325,3.3223133333333332,2.0321866666666666,1.8778099999999998,3.2958433333333335,6.453720000000001,3.414433333333333,3.374366666666667,2.8950633333333333,3.157386666666667,4.57014,1.55999,1.224788888888889,3.07619,1.8304387500000001,4.720975,2.93505,3.435866666666667,2.93207,3.4294333333333333,2.6087333333333333,3.6648333333333336,2.4685775,1.6981860000000002,3.04342,3.40711,3.8232350000000004,3.738715,3.93452,1.78566,2.68884,4.059655,4.400525,2.7661166666666666,3.33207,3.9581999999999997,3.7518999999999996,1.7498725,5.587688,3.1838587499999997,1.6126933333333333,3.549905,3.686645,2.811005,4.093465,1.8877859999999997,1.8877859999999997,3.1789633333333334,2.8217833333333338,3.5197,5.5921,4.38569,4.838150000000001,1.15255,2.7985900000000004,3.0933266666666666,3.9675400000000005,2.92624,4.294424,2.7017333333333333,2.270566666666667,2.8505833333333332,3.23554,3.449415,1.654158,2.9920033333333333,3.490615,2.193035,4.45572,1.31804,2.79839,4.23389,2.65035,3.404805,3.96101,1.6240675,1.4926533333333334,2.4659825,1.2339683333333333,2.290245476190476,2.1597475,0.47577714285714284,4.82088,2.436405,4.855345,4.983995,3.138325,4.461603333333334,3.1577566666666663,3.0952333333333333,3.6471999999999998,2.75529,3.3776666666666664,3.0464800000000003,3.3755333333333333,2.44978,0.6915092307692308,2.2374233333333335,0.6903585714285715,1.803,2.4495,3.259236666666667,3.32902,1.8493700000000002,1.40607,4.047395,4.71681,4.300875,4.225245,2.98714,2.0951525,4.42156,8.35069888888889,4.23722,6.0714025,1.477485,4.10147,2.19357,3.79201,4.205415,2.85992,4.875635,2.76903,4.1821,4.61155,2.330175,4.13814,6.96646,5.81245,3.10428,3.49595,1.61373,1.893405,3.969465,3.43787,3.16134,4.01839,3.625755,4.05082,2.070695,4.05712,3.78472,2.26345,4.619295,0.876325,4.17651,1.7282425,4.25529,4.88836,3.756195,2.920725,3.889775,3.476705,2.2955125,2.19613,3.9568666666666665,3.4986,6.331059999999999,4.04231,4.19741,2.13465,2.505685,5.00145,4.2698,2.719696,2.719696,6.729494333333333,4.7238285,3.2907124999999997,3.54797,2.3762233333333334,3.23861,3.650305,3.7911325,3.2721385,3.678255,1.048526,4.310265,3.13118,4.24453,2.70224,1.4976725,1.8595625,3.745135,5.827859999999999,5.01992,3.126515,1.9378325,4.347385,4.00675,0.799495,3.29576,1.456386,5.670155,1.6089466666666665,4.454875,2.07859,1.8493700000000002,3.769665,3.78954,4.3774,6.822113333333333,4.2446,4.700440833333333,2.43152,2.811055,5.03285,4.173355,4.7354,4.49967,1.12597,1.7307359999999998,1.14332,2.902915,1.82001,4.35686,1.14332,4.84406,2.67094,1.63022,1.63022,2.26345,4.37106,4.533935,4.628465,1.644212,1.644212,1.1472083333333334,3.533795,1.99931,5.866215,4.75314,3.98343,2.9070633333333333,1.033227142857143,3.634625,3.50715,4.33482,4.01041,4.146789999999999,4.146789999999999,3.2606,3.80345,2.1180025,3.21318,0.946168888888889,1.9548133333333333,3.829825,2.5737099999999997,3.663199166666667,3.663199166666667,3.55328,4.927095,4.50203,2.81144,3.386615,4.388765,3.0263833333333334,4.900070833333333,3.988935,4.37829,8.63086,4.954205,2.648365,3.067705,3.689155,4.652885,3.0249119999999996,7.4454525,4.780915,4.716525,3.711515,3.598975,3.882095,4.34689,4.826645,2.21568,4.52793,7.059465833333333,2.632905,2.5160164444444444,3.806375,3.60189,3.257765,4.8319,2.3590966666666664,2.4873833333333333,2.96061,3.31826,3.0217066666666668,8.162153333333332,1.667815,4.657951666666667,4.657951666666667,3.679825,4.166885833333334,3.320235,2.7792433333333335,6.11446,4.713,2.4869433333333335,3.801365,4.313035,3.458293333333333,3.505495,3.7015,7.3596933333333325,3.24706,5.55375,4.00903,4.776375,4.023745,3.6914,2.8217833333333338,2.3714366666666664,3.12571,4.42989,2.780595,3.2992933333333334,3.1983,7.491516666666666,2.69566,1.76366,3.1656066666666667,2.1881,4.378925,2.59709,0.799495,3.058195,4.378405,3.7106,5.6911325,2.84207,2.84602,2.853946666666667,2.853946666666667,4.064419166666667,4.989305,4.323535,2.20493,7.1133625,2.105265,4.568335,3.88174,7.94489,2.7109966666666665,1.87249,3.927455,4.37451,0.6913825,4.030965,3.90199,3.513585,3.542145,4.854905,2.02563,2.427455,8.649575,3.258365,2.793895,1.6089466666666665,3.68728,3.21992,2.68403,4.545745,6.0630125,1.8607575,1.3991866666666668,1.13892,4.070065,4.304595,3.76484,4.079205,4.079205,2.070695,2.211855,3.1925963888888886,0.9184288888888889,2.979585,1.4058025,1.78566,4.067605,4.060975,2.87671,3.163065,3.3816958333333336,4.35089,4.4619,3.414135,3.20381,2.8157,4.268895,6.122445,4.051805,0.98971875,2.7595685000000003,8.3941,4.684715,3.96855,0.9776875,5.261816666666666,1.433085,3.7463625,3.7463625,4.28208,9.5975725,0.908911111111111,4.714,4.51553,2.1390433333333334,3.9613950000000004,3.27551,2.079785,10.526044333333333,2.0739175,2.4829666666666665,3.719425,2.4890666666666665,4.598159333333333,3.27839,3.76747,4.015173333333333,3.520475,3.895,1.1786616666666667,7.31967,4.29173,4.557445,4.03638,2.1611575,2.920725,4.723809166666667,4.28728,0.7116600000000001,5.0649,4.653305,5.18305,2.0359825,1.6031099999999998,4.719785,4.23895,8.41499,0.7287523076923077,0.91261,0.91261,1.8479733333333332,1.46675,1.258178,1.86022,5.05545,1.2566,0.7970814285714286,3.9697325,4.072475,1.8824575,3.11059,5.4045,4.94087,0.676104,1.884375,12.513119999999999,3.2240583333333332,4.554365,2.2356,1.8866225,2.402486666666667,2.851525,4.835075,3.85411,3.689995,1.0654985714285714,1.488026,1.02574,5.6491625,3.918535,4.003565,0.9184288888888889,1.698686,4.08488,2.453141071428571,5.928388333333333,1.123405,4.61639,0.5976133333333333,0.5976133333333333,0.5976133333333333,10.678035,3.81769,1.4058025,4.12169,4.34061,3.502945,3.212775,4.933896666666667,2.438185,2.2258727777777776,2.00908,0.676104,1.4755989999999999,0.6882244444444444,0.7368633333333333,1.3421133333333335,3.456765,3.737135,2.190475,7.874436666666668,4.6970608333333335,0.8063044444444444,5.7405,5.511426666666667,3.509025,4.719555,7.399517666666666,3.9040647023809525,4.6970608333333335,4.360785166666666,2.753386666666667,4.23139,4.044765,6.904249999999999,3.468895,0.5249780000000001,1.7097120000000001,4.17368,1.6731639999999999,1.3991866666666668,4.16643,2.3744166666666664,1.895455,3.90814,1.597606,4.23218,3.958465,4.3547,4.597305,6.88214,3.386605,4.09903,1.456386,2.4632175,4.18077,3.466255,2.4869433333333335,4.14226,2.65503,5.0304,2.806895,2.271955,3.4774941666666663,1.9010660000000001,3.9316,0.9184288888888889,2.1047285000000002,1.13892,1.399625,3.44525,1.667815,1.3421133333333335,2.30722,3.72929,8.36417,1.0654985714285714,0.9776875,1.57327,3.46042,4.725605,1.57327,3.74255,2.4632175,0.6913825,0.9184288888888889,1.8479733333333332,1.456386,0.47577714285714284,1.5404579999999999,4.413030666666666,2.1390433333333334,1.4940116666666665,2.92835,1.7498725,2.0739175,3.0798433333333337,2.00908,4.543375,3.0798433333333337,0.799495,2.672029,2.4967925,0.1277884090909091,0.1277884090909091,0.1277884090909091,0.1277884090909091,0.1277884090909091,3.2980733333333334,2.63523,3.0331833333333336,2.9522399999999998,4.839045,3.94917,1.785462,3.532855,3.34565,2.037255,5.07290375,2.51705,2.390435,2.423535,2.79508,4.384665,8.3653,2.48247,2.30532,3.1961675,0.98595,1.3712683333333333,2.306923333333333,2.3367666666666667,1.8137325,2.54209,2.2358866666666666,2.594606666666667,2.766696666666667,2.5801633333333336,3.98744,4.16773,2.9603800000000002,1.36647,4.17397,3.68047,1.53387,1.397012,1.397012,1.397012,3.875945,2.781193333333333,1.0736633333333334,2.245983333333333,1.2712128571428571,4.11705,1.69876,7.060663333333334,3.329755,2.9098133333333336,3.0753319999999995,3.0753319999999995,5.826553333333333,2.678875,4.598615,5.0906,2.3678625,3.3116800000000004 -GSM1946784,0.0,2.0277,2.0277,1.5709966666666666,3.80396,6.0855,2.4237376315789474,1.8413066666666669,7.190692475490197,4.373075,3.1597766666666662,2.920895,2.33795,3.155095,4.216765,1.7584019999999998,1.47597,4.94453,2.578613333333333,2.175875,4.335365,5.371388333333333,3.809155,2.41349,1.7795359999999998,3.82821,4.38526,4.630935,0.6194916666666667,1.622026111111111,1.8407311111111109,1.5568975,1.5292825,1.0957071428571428,0.6811016666666667,3.123204642857143,1.555285,1.83073,1.20846,2.1113,1.1164175,1.09687,1.0999940000000001,1.479434,0.941296,0.9370240000000001,0.7994939999999999,1.1699242857142857,1.5794000000000001,1.8652719999999998,1.538096,1.9222819999999998,1.65361,18.012137833333334,0.3891326666666667,0.885792,1.1136380000000001,1.7885760000000002,1.34455,1.5858560000000002,1.0721542857142858,1.0721542857142858,1.0721542857142858,1.1931883333333333,0.993366,4.77547375,1.1287525,2.431465,2.016895,2.23019,0.944422,2.1586875,2.22486,1.9710925,1.5179575,1.97261,1.56237,1.6914775,2.4870466666666666,3.5712,4.75593,5.13015,1.6326766666666668,4.48399,4.4060983333333334,4.215955,4.01773,1.0351425,7.72862,0.62856875,0.62856875,2.2924875,1.0314514285714285,16.88623,4.77349,5.38365,5.54045,4.16171,4.197575,5.3648,0.4256,2.2579516666666666,1.68585,2.2776575,4.43875,3.47469,1.5325625,3.2036466666666663,3.5048666666666666,2.875196666666667,3.6484,3.412195,4.940625,2.8089589999999998,4.301885,2.9550433333333337,0.71786,1.803978,2.639475,4.900555,4.364545,0.52624125,3.56761,3.815595,0.7804125,4.323895,1.6790742857142855,2.26947,2.78725,2.08218,3.65492,5.72215,3.44451,2.615396666666667,3.1445366666666668,3.07428,3.98917,2.79734,5.5037,3.443655,4.464335,3.001165,2.3155,3.65781,2.3814825,7.0001299999999995,3.55229,3.747565,5.9038,3.422395,4.61508,0.7873633333333333,9.437229761904762,3.651275,1.9171500000000001,1.8586833333333332,3.0329266666666665,2.457525,4.80606,5.47755,2.1325975,5.231444166666667,2.87105,4.19518,2.1325975,2.852603333333333,4.386155,5.3184491666666664,3.549645,8.875183333333332,3.75507,4.905365,3.04232,5.0294,4.364315,1.7638166666666668,8.57426,4.15433,3.70525,3.66717,3.62875,3.353675,2.348455,5.95317,2.43946,3.772775,3.94152,4.87596,4.884305,3.095625,1.2646966666666668,2.871895,3.10757,1.794315,1.794315,6.03395619047619,3.11304,1.9375133333333334,4.289495,4.443675,2.779595,1.4831916666666667,0.8385833333333333,6.6536,2.70688,6.68605,3.10897,3.87401,3.85797,2.88695,3.938065,3.616545,4.12534,4.032195,5.69685,2.80927,3.64886,9.118626666666666,4.500365,3.5706333333333333,3.011286666666667,2.815236666666667,3.8095666666666665,4.206698333333334,1.789535,2.552923333333333,2.0492733333333333,1.6495760000000002,1.8152966666666668,2.75851,1.72797,1.828145,2.9897833333333335,2.7559733333333334,2.407103333333333,2.7525333333333335,4.4060983333333334,3.61897,3.244265,3.475,4.295285,1.2874299999999999,2.415295,2.9002737142857145,2.0214600000000003,2.6323366666666668,2.1430866666666666,3.4059666666666666,1.65653,1.4747366666666668,2.720383333333333,0.6632819999999999,1.5991466666666667,0.5584677777777778,0.5584677777777778,1.5365233333333332,2.44604,2.1221466666666666,1.3616566666666667,1.5904566666666666,0.31868769230769234,2.7453766666666666,0.6632819999999999,1.31735,0.19714297297297298,1.4761833333333334,2.069575,3.486666666666667,2.097933333333333,2.1885566666666665,2.566856666666667,2.2971166666666667,2.5140833333333332,2.5568233333333334,2.34505,2.1838166666666665,2.7067599999999996,1.93616,2.787115,4.15781,0.6932649999999999,1.8605166666666666,2.541796666666667,2.00629,3.458306666666666,1.553222,2.6234733333333335,2.140023333333333,4.357546666666666,2.0275733333333332,7.027933333333333,1.5873000000000002,2.8542,2.0564,1.866725,3.1826666666666665,1.8535,1.9897525,3.76637,2.5323933333333333,2.16296,3.82267,4.096925,4.39109,3.72625,2.358705,3.388465,4.276601333333333,3.90569,3.9601,4.29602,4.482805,3.09812,4.07521,3.489035,0.9206875,4.81811,1.2542683333333333,4.75108,3.955035,5.826338,3.588665,4.31568,0.98921,2.366035,3.59649,4.15808,0.8007799999999999,1.1349625213675214,2.0488895238095237,3.7761771428571427,5.4267675,5.532415,2.1570825,3.02156,5.12975,0.3438642857142857,3.46531,2.4564,0.9783875,4.50673,2.019435,11.865795,1.2584,1.3604725,1.8336,2.44498,2.2181686842105264,4.907408684210527,0.3945736842105263,1.65836,2.8692733333333336,1.0849425,3.712066666666667,1.0306614285714286,5.0943,4.00132,2.1168466666666665,6.08485,5.7164,2.644625,1.1227214285714286,4.601206666666666,5.08375,4.375505,0.8218818181818182,7.502801666666667,2.7490066666666664,4.43569,2.73661,2.4776866666666666,4.511175,2.3064233333333335,2.54581,2.2219,2.516226666666667,3.12026,2.9275599999999997,0.35398875,4.050045,3.85123,3.917055,4.122045,4.474155,6.2508989999999995,4.09628,1.72194,5.4374,4.30176,4.392635,4.06453,1.0022849999999999,2.65385,3.098796666666667,2.522,16.30648,3.405645,3.909815,4.089925,5.6458,2.582435,5.085366666666667,1.670115,0.8017833333333333,2.707475,3.265475,3.367585,4.19358,6.448476666666667,2.89164,2.2891,2.2609,3.3411666666666666,4.878365,2.27254,0.3890688095238095,2.875241086956522,1.912505,1.120125,0.5043768530020704,0.6196848964803312,0.3890688095238095,0.3890688095238095,0.3890688095238095,1.18566,1.30381,0.88157,1.540375,4.2610525,0.22583323529411764,11.02420147186147,3.4647666666666663,2.7010966666666665,3.94088,4.06182,3.81733,2.075485,4.514615,3.817956333333333,3.95483,3.71844,0.6634553846153846,3.3912666666666667,4.285328205128206,0.5317114285714285,3.45205,2.7660933333333335,4.3146,0.5503109090909091,1.877375,4.41729,3.32263,1.77589,1.76978,1.7137799999999999,3.170443333333333,4.11686,3.204235,2.92033,5.4233,5.4739,4.751845,3.2702333333333335,3.27594,6.636383333333333,3.713433333333333,4.48685,0.42884333333333335,3.0737233333333336,3.8307683333333333,2.1530299999999998,2.767595,2.862960833333333,5.764763333333333,0.5926458333333333,2.830675,4.269705,4.65126,1.057642857142857,4.610445,2.51466,4.77485,3.0265033333333338,4.09431,3.597505,4.3819,1.16381,3.407445,2.8180666666666667,4.434535,4.21945,4.410675,5.7034,4.42036,2.80159,5.48534,2.434903333333333,2.95935,3.0417466666666666,2.518336666666667,2.5313266666666667,2.2114133333333332,1.762014,1.6467533333333335,1.9831899999999998,0.84643,1.46153,2.229363333333333,1.9965966666666668,2.9365400000000004,3.0760166666666664,2.7188499999999998,0.9177044444444444,4.94162,3.337666666666667,5.424250833333334,2.718794166666667,3.1330266666666664,2.8712866666666668,1.6038916666666667,1.6038916666666667,2.4389385714285714,2.4389385714285714,3.1720135714285713,0.4932485714285714,1.71133,2.0771333333333333,3.8008333333333333,2.356346904761905,2.356346904761905,2.356346904761905,7.203488571428572,4.29282380952381,0.9424636363636364,2.39591,4.6529533333333335,2.432275,4.711065,3.281865,2.34644,4.040415,3.0653566666666667,3.028563333333333,1.1568125,1.9496166666666666,3.239183333333333,2.298243333333333,2.5541266666666664,5.63325,4.224466666666667,3.836,5.188283333333334,1.9618666666666666,2.5479600000000002,3.2405833333333334,0.9599677777777776,2.20821,4.90876,7.9151774999999995,1.4969775,3.015315,4.69297,1.7653159999999999,1.6497575,1.6497575,0.98163625,4.729695,7.114745,4.134325,5.2150110000000005,4.4113,1.7385333333333335,3.850655,2.987035,4.412865,5.008256666666666,0.36729947368421056,3.06686,2.905045,3.79858,3.946975,1.7559799999999999,1.9796475,2.4967775,4.177065,3.927525,3.17337,2.735785,1.337212,6.9206,5.5915,3.86591,3.556475,5.0312,4.519955,4.287,3.645415,3.59173,2.013365,1.0608414285714285,2.76116,4.119025,3.693515,5.6050949999999995,5.6053375,2.3968325,1.7856366666666668,2.7274233333333338,2.7769999999999997,2.95936,0.680745,2.315835,3.6567,1.108515,4.73903,3.192725,6.0787375,1.321819696969697,1.321819696969697,4.01076,3.75989,3.86691,5.62355,2.80733,2.4065533333333335,3.84921,3.258035,2.20118,3.3608666666666664,2.4458933333333333,4.302175,3.3318775,3.64519,4.49611,1.0981922222222222,2.55168,4.17122,4.11081,3.370935,2.54745,1.546845,0.6905888888888889,0.6905888888888889,0.6905888888888889,0.6905888888888889,1.401078888888889,3.67558,3.67558,1.8256466666666666,6.535076666666667,2.932435,4.29941,3.009403333333333,2.711675,4.67948,4.407135,4.82503,4.92326,1.77134,3.86335,3.400385,2.615785,3.086535,3.5088,2.677575,4.13064,1.93402,4.582965,1.785135,3.3405666666666667,3.126695,1.7823425,1.1859866666666667,2.852715,4.34383,1.207428,0.8437988888888889,3.52128,1.2905975,4.800793333333334,4.149285,1.2612957142857142,3.59837,0.761838888888889,2.6639066666666666,2.5078400000000003,2.13386,2.78739,3.747455,2.8479183333333333,4.57277,5.42545,4.338355,4.252645,2.323775,1.2799414285714286,3.92558,4.792075,1.47043,1.47043,4.20981,0.2828173333333333,2.4192199999999997,0.2828173333333333,0.2828173333333333,0.2828173333333333,0.2828173333333333,4.91501,2.7120366666666667,2.837885,3.58169,3.1972166666666664,4.32847,2.6244533333333333,1.0227075,1.0227075,1.013285,1.013285,3.936185,1.75717,4.444185,1.5289548214285713,1.5289548214285713,4.69689,0.5190992857142857,2.56815,7.383586666666666,4.6102,3.305265,3.23545,0.930945,2.349785,1.9341075,4.76389,4.27877,4.35322,3.93282,1.2722485714285714,2.646045,1.89177,7.75105,1.753635,4.506565,4.621965,2.9637,3.98121,6.30913,7.6990799999999995,3.9156,4.16081,3.66159,2.30201,3.11795,2.36493,2.39095,1.903545,3.938165,3.14969,5.932236666666666,7.03216,3.892655,1.3234966666666665,2.034955,3.639685,3.68933,2.0809475,3.875,3.108805,4.598433333333333,1.7691866666666665,4.115166666666666,1.6460833333333333,6.4727733333333335,2.764526666666667,2.4013400000000003,2.4192066666666667,2.53886,3.5025999999999997,3.3609333333333336,3.1837666666666666,2.6207033333333336,3.2634666666666665,2.24024,3.058095,3.134635,3.104605,0.3729225,3.02431,3.75304,2.602975,5.5215,4.88724,4.492895,6.7460249999999995,4.754845,2.1651266666666666,4.182505,5.1333,1.574215,4.71871,5.6002,5.17785,4.535965,3.16961,5.58345,5.00525,3.75025,5.233117333333333,7.4092400000000005,4.394555,1.1739333333333333,1.4192566666666666,2.557955,1.7773499999999998,4.514385,4.06194,5.0220375,2.54227,2.4939033333333334,2.7424033333333333,2.43402,2.1361866666666667,0.9013555555555555,0.4927023529411765,3.8358,4.10015,3.4050333333333334,4.220515,3.008935,3.26054,5.13293,2.9859266666666664,0.5859611764705882,2.85185,5.48125,1.9916375,1.611982,3.87522,3.35858,2.516426666666667,3.8089666666666666,3.90154,2.9005566666666667,2.26667,2.3819466666666664,2.4793600000000002,2.7918,4.449071666666667,4.946745,6.0553195,1.251164,4.7167,3.1020970833333337,4.695245416666666,2.3348299999999997,3.1817,2.330975,2.173363333333333,1.3732125,1.3732125,2.700613333333333,2.5247966666666666,2.7707033333333335,4.04347,1.689928,2.288085,1.97952,0.437041875,3.46136,0.5528491666666667,0.83184,3.73483,4.030205,3.51811,1.646625,4.29414,3.0475133333333333,0.7659285714285715,4.072685,3.7449685714285716,3.1810733333333334,2.521045,5.16105,0.26152275862068963,2.1410045,3.293425,1.476665,3.75577,6.6943,2.383335,1.3514933333333332,3.94966,3.968665,2.6984600000000003,2.6984600000000003,3.653845,2.593215,4.49935,5.621076666666667,5.0332,0.95212,2.626253333333333,2.4593266666666667,4.350855,5.1157,5.1922,4.746575,4.370133333333333,3.8392999999999997,3.7663333333333333,3.6006,4.175366666666666,3.0583233333333335,3.0105466666666665,0.5913285714285715,2.309245,2.4153225,3.66832,3.068216666666667,3.1424299999999996,0.7561566666666667,2.91321,3.9136995,4.17504,5.80245,4.90263,1.79634,1.79634,0.819197,2.88771,4.38171,3.76385,4.077981428571428,3.303345,4.345895,0.5783936363636364,3.11452,3.455015,4.17784,3.9365641666666664,0.7827014285714285,2.85215,3.91848,5.5697,3.907865,4.916195,2.826505,4.20205,1.373305,1.029802857142857,2.7444666666666664,5.17585,4.32313,3.138085,1.403265,3.826965,2.594075,2.625825,2.824279333333333,2.9685666666666664,4.544723333333334,3.100543333333333,1.6942620000000002,3.3882,1.472697261904762,2.9100900000000003,2.49262,2.31205,2.8099366666666667,2.85293,2.2501666666666664,2.8454433333333333,3.553095,3.059093333333333,3.495646333333333,2.2787633333333335,1.762805,4.0946983333333336,2.9150333333333336,2.48405,3.495646333333333,2.0418933333333333,0.7905327272727273,2.3504275,0.9857055555555555,2.211675,1.5361825,0.9533636363636364,1.6552475,1.589245,2.6634867499999997,2.620475,4.31473,1.4408325,4.835305,3.1385366666666665,1.597162,2.331836666666667,2.37046,1.8358566666666667,2.8078966666666667,2.5162400000000003,1.8686609090909092,1.38376,1.813864,3.660266666666667,2.31874,2.8556155555555556,3.2213666666666665,2.9543766666666667,3.7003333333333335,2.07984,4.1864333333333335,3.4819333333333335,3.836866666666667,2.8364,3.5349,3.6719000000000004,1.8712099999999998,10.03052,4.08545,4.223225,3.411545,2.739165,2.104195,4.1276,1.672946,4.030755,4.052995,1.292492,2.4445333333333332,1.1173833333333334,2.38454,1.7415866666666666,2.3568933333333333,5.105556666666667,3.2293066666666665,3.60519,4.89504,0.803055,1.394914,0.9523720000000001,3.59643,9.981831666666666,3.1018866666666667,6.59625,1.9789325,5.31195,4.17847,2.39644,4.96923,0.2993105882352941,0.8804685714285715,4.561965,4.24283,6.9474125,1.8366625,4.26297,5.7488,4.629155,4.739495,3.426865,4.74813,3.516665,5.649821666666667,3.649605,2.95001,3.18919,2.2221933333333332,1.9503133333333331,1.4409563333333333,2.432873333333333,4.110215,4.664955,1.584384,9.40136,1.7128066666666666,2.849361666666667,1.1816280000000001,1.1816280000000001,7.0723400000000005,3.087285,2.245645,2.1697,2.5434933333333336,2.257633333333333,1.2242666666666666,3.5236183333333333,2.56369,0.6125585714285714,1.7638666666666667,3.244156,3.244156,1.1670533333333333,2.6321566666666665,2.2300666666666666,2.6352416666666665,1.37079,1.8909733333333334,4.6426680000000005,2.57483,2.712175,1.31167,1.31167,4.007245,5.53935,4.178455,3.27774,3.70731,5.83365,2.714215,2.7452666666666663,2.87927,4.09114,1.1619833333333334,3.11472,2.61015,3.749485,2.2386466666666665,4.74313,3.57821,4.53278,3.831745,5.592215,0.95618,1.972135,1.806755,3.704145,4.2166274999999995,3.875385,3.63129,3.33955,2.29749,1.781465,4.212735,3.36341,3.139905,2.52645,0.85512125,3.41245,4.069125,4.56344,1.2405166666666667,2.635753333333333,2.3118133333333333,1.7266166666666667,1.7913191176470589,1.7913191176470589,1.218115,1.96323,1.0947571428571428,1.4165860000000001,4.21388,4.18223,0.4700738095238095,3.57007,3.3438666666666665,3.945615,5.20915,0.4164605,9.09412,5.38365,2.557655,3.86581,4.53651,5.397932857142857,4.916185,6.729565,0.6705154545454546,2.65538,5.0693,2.7505366666666666,1.536635,2.02954,4.472695,4.93195125,2.413261785714286,3.2691866666666667,2.9265600000000003,1.93385,4.2127,10.68335,8.049624166666668,3.832966666666667,4.374515,3.093155,3.273915,3.97405,1.832054,2.9243,3.654645,4.904225,4.601265,5.01884,6.436156666666667,2.0254333333333334,4.785725,4.56179,4.832495,4.3574,7.618894999999999,4.0818275,5.9513,3.489905,3.35108,3.030455,5.98185,3.838615,4.894145,2.220135,3.1403933333333334,3.363375,5.9091,4.14298,3.7049,1.483884,0.92683125,2.3162,0.5217373333333334,3.851295,3.652845,3.39603,2.8708,2.099483333333333,2.884925,2.57965,3.104772,1.929364,3.04095125,2.872475,2.3586475,2.587875,3.829842,1.20214,2.717035,4.958375,3.846166666666667,1.0539,3.0684799999999997,3.6744275,3.5299890000000005,1.5229875,5.8588,5.4746,2.0194233333333336,3.0195633333333336,30.23540209927001,3.2766366666666666,1.7514833333333335,4.001433333333334,1.5791166666666667,2.64012,3.0032833333333335,3.359833333333333,2.0309875,2.68855,1.8172125,3.9582075000000003,3.24792,2.4901775,1.51507,2.30488,2.92075,0.3718427272727273,1.1948325,2.7308033333333337,1.595106,3.45857,1.5229875,1.99587,25.09539822222222,4.734295,3.688795,3.607155,2.583175,2.63105,2.56941,2.32586,3.42496,4.773740999999999,5.323,1.599256,1.728914,2.11868,2.308345,3.6701449999999998,5.1711,4.55997,4.338035,0.1768291489361702,4.848145,4.887278333333334,3.852605,8.97698,1.0591375,1.0591375,2.97106,2.617625,5.4029,1.7898233333333333,0.9732322222222223,4.453555,1.94841,4.00002,3.86253,3.30717,3.953535,4.0748,4.77397,2.92588,0.7495400000000001,3.34597,2.2826508333333333,4.07969,7.703665,4.114945,1.91841,1.91841,6.49731,4.699715,4.32494,5.3971,2.1612566666666666,5.0610083333333336,1.44904,1.4534933333333333,3.10838,2.87729,3.265715,2.6883733333333333,3.90269,4.29082,4.152525,5.46345,2.24369,2.87745,1.8661275,2.568175,2.438925,2.07291,2.159195,4.7624975,1.8636125,3.5713409523809525,2.500226666666667,2.854456666666667,2.564296666666667,1.8705966666666667,1.4241728571428571,0.95383,2.4721066666666665,4.0542,0.685683,4.448945,1.7888,5.8519854166666665,2.0116175,1.6474025,1.48626,1.5854833333333334,5.563848888888889,1.8690339999999999,2.9993866666666666,3.7154000000000003,1.1912025,1.7809125,4.9194526666666665,3.1560333333333332,1.8136766666666666,3.5365,2.7965733333333334,2.935416666666667,1.2962826785714285,0.25316333333333335,0.25316333333333335,0.25316333333333335,0.25316333333333335,0.25316333333333335,3.62835,2.7512866666666667,2.51025,3.3349666666666664,1.4918133333333332,2.6860633333333332,2.9021666666666666,2.0152666666666668,3.557195,3.165455,1.7308233333333334,2.9334666666666664,3.06788,2.1517225,2.01789,3.975115,2.72482,3.891633333333333,5.4243,2.6384466666666664,2.711956666666667,2.5228433333333333,10.707705833333334,4.314605,4.266705,4.811075,4.164505,2.9562066666666666,5.13095,3.519655,4.332675,5.384656666666666,3.6525,3.12226,2.222825,3.23481,4.744874428571428,3.10369,16.672707,1.03745375,4.322355,0.8756133333333334,1.2144175,2.896875,4.52057,4.2386,4.886645,1.5647466666666665,2.354165,4.17642,2.01618,4.378925,3.1277978571428573,2.61076,0.6193366666666666,2.914516666666667,4.6106,2.3487175,2.3333275,2.073715,19.865984166666667,1.194234,1.304525,2.5784366666666667,0.28448769230769233,1.83235,2.777703333333333,2.03734,2.9640733333333333,2.69565,7.293514166666666,1.870995,2.52535,2.2216325,2.041415,1.60987,3.1846433333333333,3.09708,3.96284,3.096766666666667,1.9326425,2.534765,2.9678033333333333,4.92822,0.4086958333333333,3.648766666666667,3.0690233333333334,3.055615,1.9257975,3.638847,3.58162,1.5614066666666666,2.3653366666666664,2.1695800000000003,1.38392,1.8137666666666667,3.52144,3.484405,0.8142033333333334,3.33598,4.967745,3.974925,2.264504,2.264504,2.8684733333333337,4.12871,3.21083,3.38725,2.302635,0.8393318181818181,3.98334,3.619975,6.0802,3.76818,2.479324,2.479324,1.15938,3.527315,4.876345,4.177535,4.276075,2.88958,2.2774566666666667,4.213955,3.071695,4.15923,2.715426666666667,2.0244033333333333,4.142199333333333,2.8581766666666666,2.7649866666666667,2.0021633333333333,3.29839,2.65355,1.7309733333333333,3.78609,3.109975,4.24421,3.612,4.79203,4.21356,6.341967499999999,3.95314,2.0278,4.54747,2.63633,7.05148,2.5270233333333336,1.1940166666666667,4.67817,3.699666666666667,4.56679,0.4828807142857143,0.7933408333333333,3.594135,3.64452,1.9712856060606059,4.146555,2.76047,3.23806,8.437602,1.803002,1.26586,3.368135,2.65454,3.37378,4.70675,6.582273333333333,3.2031433333333332,2.16535,2.7678366666666663,1.7417966666666667,3.1139500000000004,8.78541880952381,0.8903104761904761,1.036675,4.31704,0.4314306666666667,1.61876,1.9242975,2.9536,3.033775,2.8834,4.37268,2.0915975,12.269895,4.9356975,2.4871725,2.4871725,4.17999,0.8740549999999999,4.618126666666667,3.69761,3.9511,5.442001666666666,3.466805,4.95648,1.44349,2.771565,2.613595,2.688555,3.259195,2.81118,3.194445,3.6617,3.65566,3.10613,2.898045,2.847475,4.115095,4.224775,2.8287566666666666,3.1903699999999997,4.637331666666666,4.31735,17.81877119047619,11.216594523809523,3.305037857142857,0.6811916666666668,1.4541285714285714,4.411025,3.442205,3.0097942628205128,2.239845,0.8376211111111111,0.6114883333333333,0.6862071428571428,1.99049,1.6040079999999999,5.3721,3.3577999999999997,0.7280954545454545,3.434995,2.48119,1.5986875,1.605462,6.299506666666667,1.547988,4.19943,2.717545,2.9489533333333333,2.478115,2.6073133333333334,2.5996133333333336,0.719489090909091,3.120485,2.9665733333333333,4.012476,2.92911,4.912136666666667,3.693535,3.29774,2.4406625,3.495245,5.5461725,1.9264425,2.3548875,2.467395,1.637355,2.4655275,2.12908,2.5661,0.9122830000000001,1.39164,0.9995,3.405735,4.45332,6.3355,5.4814,2.939305,2.46832,2.7819,3.2250099999999997,7.0795233333333325,1.2452033333333332,0.355405,2.943345,2.25257,1.434598,3.339532,1.224094,1.644522,3.59604,2.735465333333333,1.2456316666666667,1.9553433333333334,3.9995283333333336,3.761965,4.41325,3.758775,1.8846625,5.00035,3.844125,0.75056,4.66938,4.045335,4.175055416666667,3.1690833333333335,2.5432,1.374588,1.180495,3.51935,2.608325,3.42517,3.72754,2.62215,2.7168666666666668,3.36306,3.889705,4.238335,2.495375,2.80249,4.010505,5.6635,0.559305,4.522845,1.7514225,3.50301,4.029633333333334,1.312725,3.150225,2.1059275,2.038515,2.611015,2.3622608333333335,1.7606566666666668,4.564175,3.60063,1.2045614285714286,7.17156,1.0746266666666666,3.636815,1.7077566666666666,4.705565,3.963095,3.4408333333333334,3.160095,4.217775,8.45004,3.077945,3.76906,3.51201,3.77296,1.7393675,8.04376,3.69481,3.728545,1.636925,4.284065,2.9746,0.93893125,2.02624,4.12293,2.36617,4.231995,4.9402375,4.060935,4.431865,2.015745,5.22585,3.85849,3.2474399999999997,2.3848966666666667,1.497376,4.170455,6.18755,4.190725,4.741495,3.052505,2.1044725,3.86862,3.26934,1.1494826923076924,4.14813,4.885014166666666,3.930005,2.921175,3.703665,0.5392857142857143,0.5392857142857143,4.02779,3.71351,3.480075,2.20407,3.5896,6.12975,0.84681,3.850085,4.69547,4.549,4.82835,4.72401,1.8944275,3.182975,2.1545075,4.43529,0.66401875,4.043295,4.03505,2.73217,2.85519,4.175,2.33633,3.436675,59.97176557142857,3.424275,2.60765,1.765865,3.360155,4.07144,0.81546375,1.001525,1.94165,1.94165,1.388738,3.229995,2.241715,3.5907039999999997,7.31257,2.7909400000000004,1.258257142857143,1.2872466666666667,2.7135033333333336,4.125303333333333,0.849066,1.96424,1.2932359999999998,1.85262,3.95755,4.05381,3.222755,20.469471404761904,3.26214,4.047735,3.410635,2.292073333333333,2.757485,3.38744,2.416405,5.44873,1.420882,3.976045,3.3659309246031746,5.771975555555555,2.067945,2.76575,1.93707,4.60965,2.4292599999999998,2.29997,2.114,3.497757777777778,3.57692,3.349785,3.626885,3.988375,2.4833125,2.469225,2.942855,2.706875,3.175577777777778,2.217995,1.994485,3.35142,1.1826233333333334,3.856285,4.531365,2.668265,4.70533,4.86895,4.785111666666667,1.9882733333333331,2.507885,2.722895,2.900695,4.125995,3.447065,4.53432,0.7308642857142857,3.806662666666667,2.97296,3.727315,2.3578325,1.8328099999999998,3.73912,1.1635111111111112,2.893925,4.35422,1.134798,3.788125,3.361545,4.588285,6.124147499999999,2.19761,2.94841,2.65891,3.9066666666666667,3.0151833333333333,2.7750266666666663,2.84301,2.547563333333333,2.545106666666667,1.4682333333333333,2.0936975,2.0936975,1.9431033333333334,2.1229833333333334,1.74296,2.6274266666666666,3.70245,5.48645,4.636255,1.731415,4.28078,3.77079,3.62069,4.410515,2.001485,1.907215,4.6986349999999995,2.06553,4.431735,3.501725,3.62012,2.50474,3.95078,3.234195,3.125095,3.613665,0.15005061224489796,2.2323066666666667,7.795935,1.563906,3.478785,2.88125,1.0113571428571428,1.112995,1.9074925,3.846355,2.979195,7.18094,3.649545,3.923355,2.869695,2.758345,3.563785,3.64434,4.09303,3.4589,2.91093,5.45535,3.840885,4.071825,2.7190166666666666,1.9749325,3.495395,4.37345,2.79914,2.859625,2.141105,2.56839,4.13159,3.93851,2.72144,4.551105,5.20435,2.814495,4.035615,3.61282,3.647545,4.606595,3.51485,3.32538,5.50779,4.56643,5.2676,5.08225,4.535855,5.1829775,4.431915,3.687325,1.341064,6.5936,2.442155,4.142345,4.273125,4.037625,3.0895566666666667,1.9672066666666668,2.2338333333333336,2.501306666666667,0.9778230000000001,3.478733333333333,3.8682666666666665,3.085976666666667,1.9852233333333331,3.69645,4.21517,2.3947133333333332,0.5696100000000001,4.47515,4.67591,5.0073,4.533535,3.66691,4.61495,4.798315,4.93984,1.3673444444444445,0.9468076923076924,2.752353333333333,5.0759,5.90685,0.49309375,2.86744,2.4813266666666665,3.34768,4.501165,3.951333333333333,1.971615,5.6446,3.345425,4.26534,3.14533,6.4056,5.0455,6.876475,0.5076558333333333,4.11321,0.758602,2.49623,4.0862,3.2005733333333333,1.4977033333333332,2.29032,4.23284,3.50989,4.381455,1.73274,1.8093775,2.832395,4.477005,4.121035,3.721825,1.681646,1.1885095714285714,5.8841,2.175595,7.6087425,4.07097,3.71832,2.1153375,1.7122925,3.98197,4.52633,1.6907166666666666,2.42953,2.485645,2.2323066666666667,6.5935625,3.08323,2.7954033333333332,3.5421175,3.54759,1.9085,3.300205,6.896677499999999,4.47759,5.1201,0.49666272727272726,3.1085,4.0642,4.5831574999999996,3.53854,4.2246,3.0758,2.754525,3.30306,2.979265,3.4689015,2.03072,5.53789,4.650755,5.05865,3.975105,3.395405,3.2507349999999997,2.324365,1.333145,0.8908725,2.853835,2.475575,1.1272133333333334,2.708016666666667,4.431355,4.335805,3.776025,3.930575,16.808644404761903,4.06571,4.627665,3.74328,0.7237933333333334,4.956345,4.219715,3.785015,4.83701,5.1103,2.518345,3.57611,3.362395,1.47828,3.16023,4.603745,3.3198633333333336,1.529154,3.73958,4.969505,3.947335,5.0094,4.8101,5.49305,3.93464,2.6150800000000003,4.19735,4.09959,2.70973,3.061393333333333,2.9921933333333333,1.5053958333333333,4.698925,2.5974510714285715,1.89302,3.94176,2.19801,4.41233,4.0946983333333336,2.209395,2.59475,4.44836,3.84222,4.21753,4.517545,4.94561,4.580636,2.90865,5.3299,2.679105,3.666125,3.997405,1.5668659999999999,4.27337,1.0307199999999999,4.39959,2.88519,0.8614785714285714,3.73767,2.129705,6.356450000000001,2.466837095238095,2.466837095238095,2.466837095238095,0.7907233333333333,1.119135,1.803545,3.419715,5.42923,3.357342222222222,2.01109,2.2079475,1.7339066666666667,3.879085,2.41429,0.4173453846153846,1.779065,2.2538175,2.946755,1.91228,2.314625,2.35448,2.0914675,3.95856,2.8340833333333335,2.789395,2.934955,2.06107,6.83908,2.0167,4.316205,3.95343,6.450245,1.67235,3.66943,3.88589,3.754165,3.600185,2.84193,1.882855,3.805405,5.6643775,2.044495,3.58381,3.316035,1.9227475,4.53852,4.145215,2.4957133333333332,2.25755,3.619405,4.981635714285714,5.99525,3.157205,2.45149,2.92808,2.99559,2.6565,3.85979,1.3045175,2.987335,4.53482,0.767815,3.510005,3.97344,3.92001,3.10189,2.451285,3.170145,2.275745,4.44857,7.969608333333333,4.103145,3.370355,2.888705,1.00163125,4.561335,2.19971,4.255745,5.497847500000001,3.742905,3.84897,10.10506,4.70056,4.013095,1.5621975,0.6836841666666666,2.83215,3.887005,3.50374,3.771675,2.2490366666666666,2.5074666666666667,2.0984633333333336,1.1800916666666665,1.1800916666666665,2.0633033333333333,2.3688166666666666,1.9638233333333333,2.29944,2.76778,2.280066666666667,2.2538,2.932593333333333,1.4958799999999999,2.5573866666666665,2.1280066666666664,2.0373466666666666,1.5023575,2.5032099999999997,0.812135,9.505890416666666,0.812135,3.12431,2.0633299999999997,1.8435766666666666,4.252945,4.32974,4.01121,4.14646,2.1904866666666667,3.048493333333333,3.3343566666666664,1.9734533333333333,3.0822533333333335,2.84047,2.3868666666666667,2.336446666666667,1.7157833333333334,5.45055,6.204850380952381,2.7352333333333334,3.409133333333333,3.30027,2.5503833333333334,2.37999,1.0957071428571428,3.4605333333333337,3.4168333333333334,3.828305,5.9546,4.260595,2.8597099999999998,3.426633333333333,2.7331,4.061084444444444,4.246895,2.6909766666666664,3.20735,3.06211,2.8733233333333335,4.67571,3.2466566666666665,3.29341,5.593055,2.05634,2.4920266666666664,1.9545566666666667,1.4559933333333335,4.727013333333334,3.4862416666666665,2.50798,2.132163333333333,2.1382166666666667,4.336825,3.643855,2.698565,3.32004,3.1336033333333333,3.3209366666666664,3.3741333333333334,3.3277,3.0973733333333335,0.549745,3.6912000000000003,2.4999233333333333,2.8691,3.26838,4.064045,3.93433,4.978395,2.57732,3.8832433333333336,1.0938183333333333,2.8159166666666664,2.8159166666666664,4.26738,2.74418,3.926365,4.238225,1.57452,3.119485,3.725045,1.1891728571428573,3.5474758333333334,3.035092,2.160452,0.37934199999999996,4.664315,2.850125,6.40984,2.77869,5.88925,3.31124,3.86115,4.01683,1.610734583333333,2.86876,3.940565,3.199725,3.2904366666666665,2.9136966666666666,5.3819775,2.1381875,0.97848875,1.9876800000000001,1.7724233333333332,5.4622,2.278016666666667,2.439486666666667,1.67491,4.25214,4.03391,3.649855,0.459209,3.952485,3.783385,2.2061966666666666,2.28683,2.475496666666667,3.091241666666667,3.849763333333333,1.4883199999999999,0.637721052631579,0.7715714285714286,3.270896666666667,3.81246,6.010493333333333,4.543665,3.93749,5.2344,1.34895,4.029633333333334,2.3045033333333333,0.99858875,5.5381,6.06005,2.50314,4.821325,4.08576,6.504904999999999,3.7987,6.131241666666666,3.732775,2.372086944444445,5.6695,10.110205423076923,2.521306666666667,0.5836680000000001,3.010695,4.012835,2.175665,6.42105,3.882275,3.43625,2.653,2.653,5.6958,3.286895,3.943245,4.853945,3.8012801904761906,2.4155337142857145,1.07747125,4.68641,2.758105,5.03518375,3.547105,4.21522,3.006615,2.2250375,4.240805,4.846835,3.5201333333333333,3.94111,4.35637,27.11371488095238,1.91184,2.529675,2.3687975,1.6627433333333332,2.5931933333333332,1.0070857142857144,2.7934566666666663,3.09395,3.347466666666667,2.8864466666666666,0.6027276923076923,2.9749033333333332,3.36784,2.69453,3.083066666666667,3.43796,5.525555000000001,4.845765,3.937085,3.460105,3.8145366666666662,3.630325,3.451966666666667,1.69827,0.9672999999999999,1.47502,2.1625166666666664,1.5663233333333333,2.8052733333333335,2.477113333333333,2.360473333333333,1.88692,2.700665,2.131855,1.8938033333333333,3.14784,4.22506,3.71298,4.07715,1.40602,3.0818966666666667,2.54661,3.524255,2.1382233333333334,2.6068,2.405645,1.4951733333333335,3.845945,6.6581600000000005,2.860725,3.85998,4.13321,2.56485,3.3524266666666667,3.5069,3.335515,4.591735,0.3422165444015444,0.3422165444015444,4.637925,5.0275,3.25897,2.761675,5.3303,4.0766,0.6491930769230769,4.798445,4.15416,3.71537,6.3665,4.825105,7.68195,14.286353333333334,12.174984615384615,4.419985,4.386775,2.406076666666667,0.5656646153846154,2.3782533333333333,4.0809,1.3020766666666665,4.45697,3.5208333333333335,2.79553,2.0759266666666667,2.0324066666666667,4.816695,4.789235,8.658177857142856,4.989485,4.183265,7.328401893939395,3.483985,3.3221433333333334,1.361995,5.3572525,1.8298525,2.4962233333333335,2.8367533333333337,0.232755,2.950775,3.47043,4.630790833333333,0.758552,1.1270183333333332,4.04886,0.567045,0.567045,2.9824454166666663,3.2377566666666664,3.236026666666667,3.744305,4.339015,5.4213,3.839395,4.27714,3.149025,3.0838066666666664,2.45451,0.8770083333333334,2.7641733333333334,3.070375,3.07883,7.262455,2.817095,9.535375,3.211875,6.60185,2.93151,2.2599575,2.3985925,2.733225,1.85166,2.3377525,1.9508075,3.35978,2.3231225,4.100375,2.922645,4.1311675,4.1311675,2.8010358333333336,2.8010358333333336,8.655007833333332,2.317886666666667,0.828509,2.6396966666666666,2.56094,2.55347,4.100375,1.8970939999999998,1.8788019999999999,1.547708,3.34349,3.705725,1.6884825,4.396405,4.1948,5.532818333333333,6.575193333333333,2.2530033333333335,4.28968,5.40744,3.511045,2.773845,2.12701,3.058795,3.202760909090909,4.20708,5.014073333333334,7.140067999999999,3.2586725,2.859485,1.18714,4.156995,3.9236573333333333,3.57228,3.644518333333333,4.24886,2.376705,2.3055066666666666,5.78781,2.86312,1.250746,5.12633,3.72183,2.57686,5.1026,2.57686,2.71805,3.3737,5.013,1.0676471428571428,4.091247777777777,4.21742,3.464135,1.2569883333333334,1.6238225,3.630135,3.77305,2.61541,6.392208333333333,3.94938,3.406785,3.907895,4.56362,1.2747,3.598525,2.307875,3.602105,3.6021,3.462695,4.80083,3.30437,3.713295,4.57728,1.9785103333333334,1.8804525,3.1470599999999997,3.5819666666666667,3.4357,2.5928999999999998,3.5615666666666663,3.1350433333333334,5.52695,3.36792,3.560305,2.914085,1.83739,3.597466666666667,1.96595,3.152875,3.15042,3.0942,0.66401875,2.1036075,1.8553766666666667,3.302615,1.7657640000000001,3.519106,4.21331,1.2164160000000002,3.017585,4.41063,0.8958299999999999,1.3988066666666665,3.230225,3.936265,3.141455,1.976915,1.7259033333333333,3.539545,2.577795,1.7487300000000001,2.95158,1.92179,1.252844,1.38502,6.36281,3.09863,2.21191,2.521075,2.3634625,3.800305,0.91808,0.36602428571428575,0.7933842857142857,4.675275,1.7543465714285715,5.0093,2.05266,1.588526857142857,2.7847745714285717,1.1962477142857144,0.9987308571428571,0.681708,0.5954957142857144,2.540935833333333,6.39445,2.958085,4.288925,0.3287375,3.585565,17.618478619047618,3.110875,6.926215520979021,1.10919875,1.10919875,1.10919875,1.10919875,5.708355,4.11834,4.170445,2.226366666666667,3.059175,3.494015,5.6017,3.780115,3.49076,4.17573,3.948105,3.514285,3.878528,4.10081,4.78476,4.122505,4.377925,3.389835,4.222375,2.6031400000000002,3.726315,3.382065,3.405245,3.636785,4.048885,3.0720533333333333,2.353175,2.52381,3.80912,1.2320642857142858,3.849115,2.351383333333333,3.304542,4.060935,4.33697,3.319805,2.96913,4.38165,3.18587,3.37999,5.02515,4.82705,3.19352,3.31074,1.6816780000000002,1.6816780000000002,1.6968125,4.624285,3.703205,5.352136,5.2154,3.5338783333333335,6.5534,4.690925,2.098405,9.70766,5.4061,6.443944999999999,4.461605,2.8400499999999997,2.84953,0.25601137931034484,0.84385125,3.3045626666666665,3.577445,4.716955,2.8799433333333333,6.314863333333333,4.758375,0.580875,2.792075,0.532697,1.7743321428571428,3.29948,2.132325,3.847155,4.209735,3.324155,3.600645,3.54606,3.645545,3.579835,3.74595,3.400615,2.465515,1.7743321428571428,2.91688,2.0005625,3.62796,2.39195,3.63222,3.65483,1.7393675,4.567105,2.866,1.3169199999999999,4.53654,4.577405,4.362285,2.9333033333333334,2.994483333333333,4.13272,1.9940533333333335,1.440688,2.504653333333333,2.64847,2.586673333333333,2.192023333333333,4.777085,3.444305,4.980725833333333,3.8113407142857145,4.78259,3.63175,1.631824,5.1452,4.06763,5.2665,4.054445,6.746594999999999,1.8942925,4.83616,3.26213,3.19514,1.6076675,1.85612,3.939455,4.33912,2.71223,2.670263333333333,3.4110699999999996,3.4110699999999996,2.5954566666666667,2.9883866666666665,3.296025,4.02558,3.773885,0.7029484615384616,3.17571,4.560505,5.022836111111111,2.897585,3.039915,1.82812,2.826125,3.58211,2.32488,4.519045,2.798395,4.728945,1.7240733333333333,1.0204909090909091,6.13653,3.663045,3.3630333333333335,3.0877966666666663,1.7293220000000002,30.23007711904762,3.694685,3.532955,5.68865,4.50466,0.856175,6.6051400000000005,1.74812,5.63145,1.3187366666666667,4.21189,4.946806666666667,3.86995,3.13029,2.0768675,3.4437333333333338,4.65628,1.9544625,2.7473466666666666,3.60654,2.704625,2.642715,5.9377,2.34729,6.20625,1.1234675,4.34507,3.736145,3.91019,5.09105,2.984885,2.2976733333333335,3.97874,4.37811,3.8495425,3.8495425,5.79025,2.2494925,4.416335,6.29529,3.55677,4.03608,3.30104,4.26617,3.6444,4.30442,1.4006025,2.68352,4.48271,4.536125,5.54905,4.384455,2.052285,9.313846666666667,3.327955,3.76417,1.6999857142857144,3.490535,2.2290566666666667,2.7940133333333335,2.0796983333333334,1.2751833333333333,2.448796666666667,0.9230628571428571,1.1676828571428572,1.1676828571428572,1.1676828571428572,1.7936699999999999,0.617015,3.855055,1.2051333333333334,2.32476,0.8052833333333332,1.77794,2.7706766666666667,1.8749433333333334,0.7780325,1.7732066666666666,1.4675866666666666,2.4955433333333334,1.65902,1.65902,1.6789100000000001,1.86609,0.90194,1.65736,1.5612599999999999,1.18168,2.282235,2.07786,5.8112,1.7850375,5.60135,16.994960416666668,6.616565,3.65287,3.6160983333333334,3.334566666666667,2.670006666666667,2.7531133333333333,2.88293,0.6840408333333333,0.978921,0.978921,0.64808125,2.1938166666666667,3.539085,3.3669,1.456486,5.037,3.920165,2.45963,3.721725,4.849655,3.73718,4.029535,3.451833333333333,3.260355,3.55451,5.6142,3.1072366666666666,4.82145,0.5361830000000001,0.5361830000000001,2.61637,2.7761,4.634575,3.59835,3.806445,4.50565,7.642112,7.316610000000001,3.55172,2.47928,4.39441,3.45857,2.4554566666666666,2.326375,3.5091,1.3319400000000001,3.790235,2.568255,1.5617,3.5575666666666668,3.575525,2.07972,5.014073333333334,1.49643,3.3926,2.886105,1.0516842857142856,3.6734000000000004,2.828863333333333,4.077605,1.1124216666666666,1.6935575,2.209145,2.08245,1.76805,2.478945,1.926245,2.0654725,4.061705,4.43434,2.388325,1.846075,1.4690466666666666,3.452,2.0384233333333333,2.5326,4.53048,7.2635,2.2534141666666665,3.11812,3.656135,3.5549,2.424305,5.07655,4.036365,3.09785,1.304275,4.5598,2.38527,3.1096066666666666,2.62258,3.61063,4.893215,5.63185,2.1742233333333334,2.611056666666667,2.84747,3.4290333333333334,1.9768833333333333,1.438682,5.44345,3.22335,2.198854545454546,3.040903333333333,2.8708266666666664,2.1768300000000003,3.2271666666666667,3.102536666666667,3.338366666666667,5.30725,4.532035,2.93662,4.867685,3.15111,2.52332,3.57785,3.79093,4.115915,6.0829945,1.8112860000000002,3.95131,2.30931,3.17005,3.74492,0.56563,2.41759,2.32136,3.339985,2.771305,2.328475,2.854915,0.565356,2.7065266666666665,4.3302,2.4441475,4.179465,2.3913699999999998,3.784915,1.933655,4.388345,4.447345,2.01248,2.86194,6.8335799999999995,3.602875,4.264915,4.77432,6.926058522727272,4.306065,4.23433,2.16373,4.422305,3.06341,1.9726033333333335,1.9965025,2.06015,1.0336457142857143,2.308196666666667,2.37444,2.603266666666667,3.087476666666667,1.7795020000000001,3.276695,1.9442233333333334,4.199215,5.09375,1.05724875,1.8429633333333333,2.6105233333333335,2.9288000000000003,2.0121766666666665,1.096625,5.498323333333333,2.1383525,2.73531,2.6079233333333334,2.437203333333333,2.7559733333333334,3.19939,2.3286366666666667,2.716613333333333,2.2487033333333333,4.090995,3.552435,4.07379,2.96341,2.965616666666667,0.689072,1.8229766666666667,2.1182525,2.039703333333333,2.5937466666666666,1.1698483333333334,2.783053333333333,2.96396,3.84781,1.99174,3.428015,3.03525,4.896275,3.28618,0.6350541666666667,2.06682,2.8204100000000003,3.1605366666666668,0.7291672727272727,2.81819,3.36371,3.403033333333333,2.78907,3.3315141666666666,3.82649,3.9956333333333336,3.079196666666667,1.8077075,5.45325,4.98107,4.91671,5.4667,5.65975,1.8882333333333332,3.22267,3.5684666666666662,3.2983733333333336,2.7607633333333332,2.7060333333333335,3.778166666666667,3.5324000000000004,2.8359166666666664,13.405550000000002,4.44099,1.08134,2.64935,1.477386,3.164953333333333,3.279616666666667,2.0197233333333333,5.773685,6.5090275,2.2213499999999997,0.8337870000000001,3.994715,3.4110666666666667,3.1036,4.330525,5.2499,5.373,4.910555,3.508165,1.9565575,6.535762500000001,1.18714,6.093742499999999,4.49899,2.25835,4.091745,6.723211666666667,5.72645,2.2170033333333334,1.4193133333333332,2.0564,6.4356816666666665,1.5229875,2.9549766666666666,2.5083016666666667,4.124621111111111,5.7044,4.47526,6.43205,3.44833,5.10125,3.735695,8.19591,4.885195,5.87405,2.416935,2.4695875,11.203596666666666,3.456275,2.51459,2.5475866666666667,1.6400466666666667,2.2487866666666667,3.3040066666666665,0.6996325,1.040442,1.09043,3.100735,6.7889333333333335,2.9859620000000002,1.3997533333333332,4.475585,3.32845,0.588294,4.546965,4.25378,5.0452,3.585595,3.02568,2.7321766666666663,4.34471,10.462064999999999,1.8538575,3.90404,4.107215,4.215955,3.76709,0.8094741666666666,3.6803000000000003,3.9671000000000003,1.7481666666666669,2.47269,2.3354033333333333,2.52781,1.8780066666666666,2.19055,2.272745,5.807600714285714,5.43115,3.169695,4.7477833333333335,1.6832333333333331,2.325915,4.634675,4.06288,4.452685,4.0276,4.42225,4.739835,1.6816780000000002,3.83077,7.6143366666666665,1.2027050000000001,1.76557,2.4570133333333333,2.5753333333333335,2.8349266666666666,4.809727166666667,0.7715714285714286,2.47506,3.39031,5.96485,4.76429,2.28036,2.945593333333333,1.9625925,0.536831875,2.59265,3.024515,7.848965,4.496535,4.45592,0.853505,4.576066666666667,8.942037833333334,10.273126666666666,3.375,1.2124,3.72925,3.5584,2.5494666666666665,5.16323,4.60471,3.834525,1.917115,3.7261333333333333,2.21976,2.62635,0.7772245454545454,0.37755799999999995,2.66725,3.37234,1.9788634999999999,3.477055,2.978066666666667,4.48327,5.51175,1.5713279999999998,2.7958433333333335,2.24647,2.24647,2.29996,3.23376,6.5673,2.751443333333333,2.3531400000000002,3.2389733333333335,3.4016,4.31279,4.15485,3.991425,4.286845,4.143245,4.108265,7.02965,7.996785833333333,1.9203925,2.3748133333333334,2.8345233333333333,0.9865200000000001,0.6790666666666666,4.93857,2.362175,5.0457,2.8830333333333336,2.9849033333333335,1.6974740000000001,1.57471,3.905075,4.305385,4.53772,1.9928833333333333,1.3631900000000001,2.69298,2.04408,2.7106433333333335,1.144297142857143,1.144297142857143,2.7217566666666664,4.778535,3.111505,3.379465,3.59675,2.3549,19.71883106060606,3.82499,5.27548,4.20047,4.56602,3.920175,3.45702,5.5736,6.050767499999999,0.8263583333333333,0.8263583333333333,0.8263583333333333,2.7815933333333334,1.6952285714285715,3.171443333333333,4.02233,3.946965,3.146285,4.05865,4.27177,0.79232,2.0483,2.1203433333333335,6.269300833333333,3.5693374999999996,4.198763333333333,5.00185,1.312725,2.0858833333333333,2.3630833333333334,0.534135,0.843436,1.988695,2.212205,2.993305,12.58066,2.59504,5.32765,0.7358214285714286,9.217220000000001,5.3428,3.780305,3.852585,2.65945,5.19715,2.65945,2.7346019999999998,3.342715,3.930665,3.21634,4.02912,4.15398,3.65731,5.7281,7.033676,1.8397833333333333,2.4625079999999997,2.95273,26.028944544401543,1.420858,6.3437,3.8833659999999997,3.929975,4.431135,4.3206,2.74168,2.621825,2.388195,6.49305,7.1438,4.56217,4.694995,3.963685,1.7108,1.93314,4.22987,0.40418,0.40418,0.40418,0.40418,4.319505,3.3654749999999996,1.10473,1.87176,1.1513111111111112,4.377095,2.474883333333333,2.330835,7.033858333333333,3.14014,0.17298275862068965,20.058390166666666,4.672726666666667,1.764872,1.3157357142857142,2.14576,1.955394,2.0959425,4.564465,3.17022,3.478175,4.34681,2.2499766666666665,7.517565,2.822065,2.059915,4.548245,5.7222,8.446136666666668,4.277615,0.29743170731707314,3.686275,3.8022,2.5762033333333334,1.9989275,2.901873333333333,1.7107833333333333,1.7107833333333333,4.096955,5.7763325000000005,11.000082500000001,8.99635,0.5936722222222222,2.5125,3.613525,3.179625,4.470105,3.37705,1.2176500000000001,1.2176500000000001,3.158235,4.088715,2.6458666666666666,3.59664,4.453595,5.40055,6.8000549999999995,2.17962,4.801985,4.456065,2.67242,3.0871733333333338,3.0155833333333333,4.61919,3.935825,5.52225,3.99945,4.471595,3.66188,4.26809,4.174585,5.21585,2.6625666666666667,3.0970566666666666,1.048058,4.23309,4.01605,3.70635,1.518014,1.8565166666666666,3.5870333333333337,2.7801733333333334,2.5010266666666667,3.939513333333333,1.6319299999999999,2.036655,1.9188599999999998,1.9076166666666667,2.35732,1.8168166666666667,3.6,3.1063766666666663,4.2062333333333335,3.298911666666667,2.1720366666666666,2.5934733333333333,1.9916233333333333,2.86074,1.98357,38.52615591666667,2.1436769090909094,2.1436769090909094,2.603056666666667,2.35789,2.2061533333333334,1.67758,2.8407433333333336,1.9622433333333333,0.813023076923077,5.08,6.7049075,4.147685,4.102235,5.59655,1.8355666666666668,4.1933,1.8179200000000002,4.90408,4.638455,5.71915,4.01048,1.69827,4.018015,4.05088,4.54967,4.618985,5.30865,3.97505,3.4244,2.60264,2.1266625,2.024435,4.40152,2.4846633333333332,3.9430000000000005,3.9430000000000005,2.3570533333333334,1.6600066666666666,2.3105166666666666,2.4853366666666665,2.10269,5.4572,2.591816666666667,1.2137983333333333,1.2137983333333333,2.0599000000000003,2.02681,2.4955333333333334,2.685446666666667,2.448373333333333,2.3773233333333335,2.1599133333333334,2.170732,3.002332,1.53974,0.8316,61.62123732638889,2.7166420000000002,3.32764,2.46056,0.939794,3.8581326666666667,1.620188,1.620188,3.078886666666667,3.072566666666667,0.70814,3.18661,5.295546666666667,3.247593333333333,2.3892466666666667,2.9128600000000002,2.0838666666666668,2.6953886666666667,0.313011875,2.800316666666667,0.788342,2.5953399999999998,1.22051,1.22051,3.531,1.9321259999999998,2.714123333333333,1.5612753333333331,3.4022,1.5612753333333331,2.20844,2.2206633333333334,2.964173333333333,1.3572359999999999,1.3572359999999999,2.8369233333333335,1.5324733333333331,3.1224066666666666,2.2012933333333335,4.234445,3.464955,11.668777916666667,7.035620000000001,3.0971,2.34495,3.45268,5.19185,5.4567,2.7009233333333333,3.71351,3.66272,2.1802966666666665,3.850815,3.2361766666666667,2.8880933333333334,4.60799,2.2259533333333335,1.065222857142857,3.6417466666666667,2.8538666666666668,3.029195,0.80795,2.60813,3.486155,4.134375,4.40031,6.6048,2.01618,1.858276,4.331405,4.333055,2.379555,2.5234525000000003,2.06552,2.361311333333333,1.003418,5.03665,4.048015,3.5973,3.6798,2.9975633333333334,5.01935,4.99856,2.6229999999999998,1.7797133333333335,0.5070406666666667,14.294051166666666,0.5219654545454545,0.5219654545454545,0.5219654545454545,2.97143,3.8994999999999997,0.5219654545454545,6.860673333333333,4.335533333333333,0.741468,0.741468,3.3578333333333332,3.41963,3.03326,4.508875,5.1056,4.1663885,2.44931,4.982361333333333,3.05061,3.4555830357142856,5.02287,2.8277865,2.3227825,2.3754425,2.7633,1.656715,3.3164783333333334,3.027426666666667,2.04241,1.983015,1.9465025,1.8058833333333333,1.619025,2.595375,1.0364633333333333,2.4228875,0.5897271428571429,5.14045,1.755315,0.6114058333333333,2.01425,8.06017,2.790705,2.129662,3.35947,7.30235,2.599,4.23952,3.143885,5.87432,3.37073,3.74979,4.055245,3.845585,2.8569533333333332,4.144159999999999,1.116607142857143,4.13138,2.517043333333333,2.55375,2.585735,2.464805,2.01982,1.261425,5.54685,0.9533636363636364,4.84853,5.4944,4.89857,5.25895,3.7167,2.3157733333333335,1.7820820000000002,2.783516666666667,2.83099,2.574975,3.891166666666667,2.610825,5.1572,1.8004120000000001,39.37770880952381,4.507935,2.4222366666666666,2.1878733333333336,2.559223333333333,1.5363533333333335,5.8793,3.775145,2.3747966666666667,3.07523,2.29248,1.73087,5.24745,0.8000428571428572,4.242558571428572,1.2951042857142858,3.5424333333333333,3.2539700000000003,2.5526866666666668,1.34705,4.327026666666667,1.658858,1.658858,2.2105133333333336,2.6960916666666668,3.298783333333333,3.3167166666666668,1.4298133333333334,2.7392299999999996,2.7125466666666664,6.274921333333333,2.7628,3.5453116666666666,0.9986866666666666,1.4485599999999998,2.874943333333333,0.9514440000000001,5.040809166666667,3.21645,2.84895,3.4586333333333332,2.7435833333333335,2.7444666666666664,3.19016,1.6947133333333333,2.3634625,2.286563333333333,3.3065233333333333,2.5001633333333335,3.762366666666667,1.68801,0.6462866666666667,9.973074038461538,2.8460900000000002,5.22805,5.07305,2.7456266666666664,3.1066599999999998,1.3807125,2.1275999999999997,2.187855,1.3807125,4.321745,0.448435625,0.448435625,1.1803175,1.1803175,0.7872925,0.7872925,2.291065,3.145655,2.433065,1.4867,1.68043,3.61164,3.003165,4.000645,5.48815,1.83781,4.26195,2.601965,4.5869884615384615,1.687845,1.687845,2.116545,1.6179700000000001,3.6246383333333334,1.9942825,4.33631,1.5647466666666665,2.62365,0.5489207692307693,1.0673742857142856,2.0639175,2.07064,1.82262,1.3390375,3.969095,4.13293,1.9983666666666666,2.395776666666667,1.3160466666666666,0.6746383333333333,2.30192,3.53666,3.208466666666667,4.55993,4.886015,4.857195,3.96597,6.449237500000001,1.5079033333333334,5.9219550000000005,1.903765,4.53685,4.57585,5.739394,3.4503,2.330825,1.825295,1.993862,1.993862,2.522825,2.522825,4.221205,5.90525,0.959526,3.811145,3.208435,3.492295,2.4259033333333333,1.45011,2.831023333333333,4.26059,3.88798,1.643938,6.54875,4.811895,1.7661499999999999,1.2778,4.04371,4.153513333333333,3.59285,3.78032,3.85352,0.6195907142857143,3.755133333333333,3.3531333333333335,2.7348666666666666,2.87298,2.28312,3.6900666666666666,1.5434571428571429,1.5434571428571429,1.5434571428571429,3.0543833333333335,3.0783566666666666,3.1931066666666665,3.2517252976190476,2.194805,1.17981,3.0035333333333334,3.0900733333333332,1.4012928571428571,2.6114566666666668,2.6541833333333336,1.142934285714286,2.4411466666666666,2.867373333333333,2.90137,2.579286666666667,2.44309,1.9280425,3.06578,4.470432666666667,3.779315,0.9600519999999999,1.31998,0.535687,3.5088666666666666,8.70004,2.840616666666667,3.53063,3.108306666666667,4.44282,1.95943,7.473728333333333,6.620096666666667,2.64836,2.1228374285714287,4.039585,4.88815,1.580244,1.185138,1.408376,1.95053,10.09754,2.4432833333333335,3.03613,2.8384169999999997,3.95289,2.088983333333333,1.0722775,6.1024,1.2244816666666667,3.2652426923076923,4.293575,3.265685,3.2485766666666667,3.173545,4.71918,1.20725,2.0165475,1.8337713333333334,1.8337713333333334,3.832755,5.5803,10.0917925,4.41329,3.41927,4.68038,1.7819875,2.37479,4.510105,3.50528,3.910275,1.5353583333333332,2.7579166666666666,3.49899,3.770185,2.50985,4.10788,3.664255,3.508845,4.20269,3.877735,3.83392,5.10675,3.187753333333333,2.4501233333333334,4.28677,3.13566,3.84726,1.958895,2.461385,2.648815,5.4572,2.564405,3.2488212499999998,1.683105,2.49277,3.370125,2.1519975,2.1254125,0.8356733333333333,0.8356733333333333,1.846645,3.330912424242424,4.088715,2.846363333333333,4.306135,2.9559091666666664,2.5238017142857143,0.9623025,3.06974,1.623895,3.745975,4.19003,0.8713833333333334,1.900915,3.933635,3.03508,1.657475,1.7127133333333333,5.163238571428571,0.9690383333333333,2.761795,3.309295,2.86133,2.456345,2.820183,2.170315,1.030215,2.93254,3.11554,3.39952,1.4673333333333334,1.4308633333333332,1.843455,4.42962,2.18569,4.49897,4.404085,4.304685,5.9791,4.95939,4.085085,6.472825,3.9404142857142856,0.7891436363636365,3.11702,4.486365,3.570365,0.47458181818181816,1.006378,3.253495,4.00602,4.683865,3.76543,3.1337235714285714,2.842535,4.3462,1.723914,2.3309275,4.27191,4.248115,2.902315,2.66922,3.2643,4.60197,3.061525,4.8468375,0.9124399999999999,2.88263,2.93731,4.157905,4.41872,4.55934,2.18854,2.53161,2.97262,1.9988400000000002,4.951465,3.06172,1.3018814285714286,2.58217,3.8439674999999998,1.5489140000000001,5.643425,1.824248,2.5988700000000002,13.516459866846603,2.8193066666666664,1.50462,1.6232683333333335,2.17389,5.397065,1.681646,3.9490510000000003,0.6581715384615384,3.2044200000000003,4.39043,7.54903,2.6449866666666666,2.7051866666666666,2.7051866666666666,4.418725,4.13892,3.501815,3.41131,4.680595,5.1479,2.63161,3.122253333333333,4.285945,1.2894716666666668,2.3638266666666667,4.360985,3.68063,2.59465,2.1315833333333334,3.706505,3.343325,5.888553333333333,6.1979775,0.63909,3.776225,3.33816,3.7413333333333334,4.321165,3.88079,3.91621,1.273398,4.9427,2.42835,2.805095,4.20221,4.27805,4.49097,0.8831298571428572,2.54176,8.903883333333335,1.4877566666666666,2.1319498701298705,2.3470225,3.94937,3.51951,3.31382,0.6687972727272727,2.244995,1.72373,2.1980275,4.13019,5.223067333333334,2.788964,8.642065,2.2886133333333336,2.681093333333333,0.995795,4.195325,5.06115,2.160085,5.384656666666666,2.71418,3.252775,5.3236,4.152755,4.65329,2.22301,1.6567675,1.6567675,2.809035,3.143235,4.673568333333334,1.618435,5.945583333333333,1.4297199999999999,3.55813,1.2188916666666667,8.827722166666668,4.347665,2.790325,4.008465,3.911295,3.82211,1.16417,1.9279225,3.4294333333333333,3.1095966666666666,3.352133333333333,3.6911,3.955905,2.855545,3.17395,3.33913,1.58648,2.6411266666666666,1.98145,2.96097,1.9990966666666665,5.0949116666666665,3.1580600000000003,1.8821433333333333,2.6874466666666668,3.366135,3.12868,6.2929,5.9307,3.082225,3.67729,2.7111,3.080255,2.895505,1.3721266666666667,0.904594,6.334965,2.94949,5.86165,4.68221,6.31275,2.907615,2.721883333333333,6.46385,2.441435,0.37365333333333334,5.83815,3.030735,3.75042,3.4313000000000002,1.2920214285714287,3.783575,1.0804399999999998,4.574015,0.90116125,1.2259499999999999,2.885816666666667,2.395706666666667,2.8038857142857143,3.52605,4.41826,6.208266666666667,6.208266666666667,5.436225,5.436225,4.610955,2.7753099999999997,4.391075,0.96378125,5.89655,3.407185,3.528233333333333,3.84139,3.93741,4.64526,1.8612025,4.93789,3.2211000000000003,2.882775,4.2231,2.477565,4.765995,5.1197,3.64158,3.40512,5.16955,3.899515,5.93625,2.8113,2.6614533333333332,5.6509,4.028295,2.908856666666667,6.312791666666667,1.6116566666666667,2.1611125,4.526475,4.221695,4.93376,3.82029,2.0877255,2.0877255,12.49504011904762,11.7148,4.52536,3.236675,2.933287435897436,4.162575,4.55808,2.5666333333333333,3.295533333333333,2.980165,3.9364666666666666,3.7109,4.92386,2.22266,8.473213333333334,2.40442,2.049655,5.9636,2.365405,4.870785,4.372445,4.620235,0.7480833333333333,3.385405,3.574565,0.898044,3.05255,4.1058225,1.487482,1.8298166666666666,2.848053333333333,2.66132,2.20613,3.0026233333333336,2.1545166666666664,0.4252157142857143,2.42979,2.7121933333333335,2.7640433333333334,3.14311,1.461056,2.9459400000000002,7.074873333333333,4.18967,2.2932833333333336,1.9961833333333334,2.6678800000000003,3.763275,2.37243,3.5339165,18.141905,5.63825,3.3399929999999998,4.31704,3.749215,5.660571666666667,1.7615866666666669,5.9788,1.46035,4.809145,4.54785,5.56255,5.0141,0.9953789473684211,6.51725,2.560695,4.71194,2.715875,4.241745,3.349725,2.897535,2.07033,1.485272,1.90449,4.093065,4.52438,2.40619,1.9051,2.9916466666666666,4.0122383333333325,2.841416666666667,6.33845,1.772335,3.39544,4.47374,4.48113,3.91527,2.608455,3.8359,4.64662,3.861985,2.6077133333333333,2.6077133333333333,5.463065555555556,2.0507133333333334,2.4866633333333334,3.762415,1.804532,7.788214999999999,3.60451,4.042136666666666,4.257000000000001,3.9866,1.7653159999999999,4.15464,5.5406,3.86516,2.051915,3.66391,3.340105,1.16149,1.22999,1.31477,0.7356416666666666,1.6300166666666664,0.9191233333333333,4.672385,0.8765355555555555,2.4760133333333334,1.65407,1.72899,1.0058033333333334,1.95246,2.16809,1.432535,2.93509,2.7101566666666668,4.5267566666666665,1.4584533333333332,2.627475,3.01074,2.75168,2.27346,4.440054166666666,4.598835,4.8650416666666665,19.09590425,2.6910966666666667,2.2351925,0.6356,0.634779,3.9461683333333335,1.997942,4.1085,4.46553,6.530340833333332,3.57836,3.46388,4.2469,3.01782,3.1956366666666667,3.065573333333333,3.927633333333333,3.1443966666666667,6.43515,3.71184,0.926609,1.11291625,5.2674,3.1443366666666663,2.4185966666666667,2.14176,2.19406,5.46545,4.77537,2.4639175,1.1535566666666666,3.08889,4.412385,8.194853333333334,4.792228333333333,4.12826,3.87867,5.20815,4.696155,4.040095,4.761325,3.808075,4.911875,2.143815,5.52005,1.520842857142857,4.94145,0.7325933333333333,4.63306,5.28445,6.08965,6.1221,4.49206,5.7698,5.5863,6.103215,1.7601166666666668,1.523,5.4297,3.103905,5.790945000000001,5.0824,5.588921666666667,5.0886,6.364,1.2612957142857142,4.356215,5.12105,4.116733333333333,4.516235,4.86606,2.5414,4.093155,2.862805,3.959265,1.004975,1.5778466666666666,1.402836,4.64849,4.21096,3.26538,1.9853833333333333,2.9066500000000004,1.6604700000000001,2.2973399999999997,0.39892833333333333,3.4824333333333333,1.550722,2.30786,2.7898066666666668,2.4697666666666667,3.1483566666666665,2.65815,2.426125,10.131942666666667,3.7671666666666668,1.8111994871794872,3.493255,0.9108272727272727,4.47934625,1.1008725,1.723045,1.931935,1.049915,5.559540999999999,1.1662808333333334,1.1662808333333334,1.1662808333333334,2.7818766666666668,1.969332,4.984395,2.97865,1.42125,1.59167,2.190645,1.3534125,1.94422,5.070427500000001,0.7704588888888888,4.086525,4.165305,2.945396666666667,0.9846085714285715,2.257422,1.7418475,1.7418475,1.4327766666666666,3.6516450000000003,4.269155,5.269,5.6795,4.213625,5.2802,2.802963333333333,2.04129,2.73434,5.12465,3.13132,3.7359,1.077955,3.9916625,5.4752,1.8874025,3.852535,3.1500233333333334,4.690525,4.4942,2.499985,6.9221,6.36825,3.46315,4.343345,4.26446,3.168625,7.94478,4.07674,4.9427433333333335,3.466935,2.839226666666667,5.2598,2.6586633333333336,5.6014,4.238985,2.7098066666666667,3.42827,3.91536,1.52281,10.416765,3.71351,3.19914,15.053871825396826,4.243675,1.8072666666666668,2.7152133333333333,2.08339,2.347855,3.088805,2.5770745138888893,3.401585,2.905365,3.0808,4.317085,6.271129999999999,1.2390966666666667,1.835905,4.329865,4.23165,4.95518,2.2619175,0.5800219999999999,4.385675,4.289775,1.986625,1.3374683333333335,4.61693,4.21062,0.8094322222222222,3.767805,12.258935833333332,1.2639514285714286,0.3994614285714286,3.4074666666666666,4.464663333333333,1.0754122222222222,3.47605,4.123525,6.148048333333334,1.2333133333333333,3.217135,3.909015,3.392515,4.268915,4.1763,4.51019,9.183910000000001,3.20819,4.07553,5.16405,16.12123,3.5128174999999997,2.81575,1.20388,1.9717325,1.3758275,2.2934975,1.2696225,2.0570125,1.662945,1.989475,2.3449675,2.2919875,2.179445,5.48635,4.265285,5.74365,3.229485,5.526671666666667,2.7265266666666665,5.0923,3.4653333333333336,1.2750375,3.738195,2.0762675,2.980999333333333,4.426225,4.564095,4.72327,4.363445,3.4017999999999997,3.731733333333333,2.50448,2.97692,3.85618,2.45114,1.83982,3.4234000000000004,3.890715,3.242725,2.396246666666667,12.46961,0.71528,2.752855,4.461475,2.420147,1.0927339999999999,2.75602,7.278771666666667,7.118378333333334,4.22314,3.711685,4.02952,1.97012,2.09218,2.7738750000000003,2.03269,3.5962933333333336,5.28565,4.15221,0.44569133333333333,6.07085,3.249943333333333,3.267053333333333,3.5561333333333334,6.00695,8.507189499999999,4.282762,0.9546375,2.1594225,2.301875,3.711385,2.636295,4.24867,4.48182,3.4718999999999998,2.722913333333333,4.013,4.071915,3.876125,4.197933333333333,1.81963,3.172395,5.23195,5.5288,2.941876666666667,1.72543,2.414286666666667,29.902158641025643,1.58887,1.58887,2.158376666666667,5.081073333333334,3.637535,4.41059,2.935155,2.895715,4.6918,3.113443333333333,4.288875,3.113443333333333,3.5791,1.8579033333333335,1.6326766666666668,5.86955,2.634975,4.82561,3.316735,2.74317,6.272256666666667,2.0558633333333334,4.479585,5.1468,3.58336,3.34635,4.810195,1.989948,5.124,3.3318775,7.148666666666666,5.2911399999999995,2.8569,3.77873,4.874395,2.19391,2.21272,3.3416333333333337,0.45309642857142857,3.0421933333333335,10.062593333333334,4.03228,3.48053,4.860345,3.2616991666666664,3.1706,1.3266428571428572,3.884375,5.4146,3.31275,2.1189,3.824915,3.28562,4.21021,4.30619,2.798525,2.798525,4.211955,2.84518,2.4578879545454546,2.075195,4.813855,4.19933,0.9433100000000001,3.58466,4.87298,2.7231633333333334,6.8244125,8.0196,1.4806139999999999,4.236955,4.816835,6.764984999999999,0.6653990000000001,7.671050000000001,3.3694274999999996,0.6057609090909091,4.99105,5.0947,4.65113,4.11541,4.716655,4.16919,4.985885,3.73314,3.62609,4.105275,5.1269,4.60541,4.493115,4.05451,2.548605,3.6106,3.78382,1.0046300000000001,4.39648,2.47092,1.849365,4.24071,4.178485,5.68925,1.05109,4.952093333333334,2.93865,2.75424,1.844335,1.3017433333333333,11.3383625,2.1897466666666667,3.010343333333333,1.86169,3.8551933333333332,5.5349,6.07108,2.6560266666666665,1.9273966666666666,2.0590800000000002,2.0590800000000002,2.0590800000000002,1.3522233333333336,4.10124,3.94494,3.289635,4.597145,8.26858,3.933135,1.236756,2.426245,3.311415,2.286585,1.762014,4.205605,2.747955,1.4602533333333334,3.0547866666666668,4.967173571428571,5.9223125,3.98803,4.090585,3.0362833333333334,4.84738,4.530635,5.309398333333333,1.880985,1.880985,3.932815,3.790945,2.6114990000000002,2.6114990000000002,3.96821,1.2111314285714285,4.80977,3.21401,4.320375,3.618835,3.842195,3.2902299999999998,1.0009942857142857,4.21547,4.9634,4.03909,4.41832,4.79808,4.8506,4.379525,1.9317925,1.5042875,3.56749,3.816875,3.39473,4.470365,2.114485,2.72028,5.3458,2.85516,4.49579,7.0984750000000005,2.30383125,2.84776,4.2370214285714285,5.231444166666667,1.6255875,2.067472380952381,1.0392166666666667,2.067472380952381,2.038136666666667,2.038136666666667,1.5718999999999999,4.823515,3.345215,3.71864,2.458465,3.99181,1.536925,5.34275,3.17149,1.8269325,3.0808766666666667,3.13933,3.413265,6.793761,4.57289,1.239118,0.8899900000000001,3.53756,6.882921666666666,2.39933,3.61222,4.0116,4.0116,2.39472,3.492145,3.46331,1.381969220779221,3.0035166666666666,3.27824,2.499835,4.217185,3.8837375000000005,1.60776,3.35061,4.356505,4.314375,5.043,4.34938,1.5986125,2.33967,1.38952,2.0846,3.43064,1.8307075,4.339965,3.1774066666666667,3.381615,4.12398,4.963845,2.13202,0.945756,1.8934333333333333,1.454545,1.2077333333333333,4.95502,4.029625,1.048058,0.23061608695652175,0.23061608695652175,0.23061608695652175,3.97706,5.718943333333333,4.31933,5.2995,4.79541,5.6361,4.351595,4.615425,2.836645,3.452055,1.6392625,4.55668,3.97021,3.886275,4.10672,4.164485,0.6937981818181819,0.6937981818181819,0.6937981818181819,0.6937981818181819,1.1690340000000001,1.1690340000000001,3.995445,3.71919,3.44342,2.839025,2.63055,5.9026,4.851075,5.40945,4.377235,2.9645499999999996,2.551013333333333,9.87136,1.593296,1.593296,3.861985,5.30985,3.2948799999999996,0.448435625,0.448435625,0.448435625,0.448435625,0.448435625,0.448435625,4.5603533333333335,4.881415,3.17127,4.47447,2.809085,2.809085,2.66653,3.220945,2.41179,2.59268,3.206535,6.874304333333333,1.416996,4.406475,3.46859,3.80233,8.550675,2.1819833333333336,2.66005,1.01075,2.13506,4.98088,2.81165,0.85283375,2.7775499999999997,3.739035,5.3577,2.5978,4.58414,0.8385833333333333,1.9870033333333332,4.68732,4.822525,2.802148,2.4560366666666664,1.9553033333333334,1.3342749999999999,6.414845,3.196816666666667,1.9591433333333335,3.27734,2.672093333333333,3.28445,3.652705,2.716253333333333,3.068513333333333,5.71245,1.4253816666666665,4.18389,5.2209,3.252785,3.964625,1.9466999999999999,3.045385,3.82675,4.119975,3.04012,4.90111,4.57834,2.706376666666667,1.9839325,2.8381133333333337,2.8741633333333336,2.8579000000000003,0.7995145454545455,2.167025,8.320945,0.46818125,2.958716666666667,1.7238966666666666,2.587223333333333,3.2858933333333336,2.6932466666666666,1.2611666666666668,1.7589020000000002,2.72057,2.206635,3.677885,2.0106200000000003,2.569783333333333,1.5425000000000002,3.051578,1.9255575,1.1409385714285716,2.7360100000000003,1.94217,2.4494233333333333,2.64279,3.0632366666666666,3.003643333333333,3.3702,3.053456666666667,2.815,3.2682300000000004,2.6520266666666665,2.6891,1.6439333333333332,2.37307,2.4341766666666667,1.6959466666666667,2.963036666666667,3.831051904761905,2.839366666666667,2.270166666666667,2.8613133333333334,3.5079333333333333,4.562119166666666,2.9180966666666666,1.8449585714285712,1.8449585714285712,2.4394,1.175675,2.4547275,3.3787233333333333,4.547458333333333,2.769075,1.9569825,2.0265025,2.1256125,3.884395,3.090465,4.02539,3.21429,1.812545,2.1086633333333333,4.192845,1.146884,1.146884,2.04853,0.6379507692307692,2.3675053846153844,1.6561675,1.6561675,2.6531033333333336,2.4683566666666668,2.983283333333333,2.606275,1.8228775,5.653103333333333,3.9828475,3.9828475,3.807655,3.198625,2.36074,3.07182,2.55207,2.897555,5.2782475,0.4815608333333334,0.674379,4.220395,2.26673,2.8494,6.425940000000001,3.58801,1.6528580000000002,5.008256666666666,4.583075,4.027825,4.25082,5.39735,4.749045,13.555959999999999,3.358975,1.7235033333333334,2.97262,4.059095,4.6646,2.79449,3.945245,3.906685,3.60881,4.222765,2.8354700000000004,2.870825,2.6298866666666667,2.4267266666666667,2.4267266666666667,4.09171,2.92189,3.350165,3.650545,2.470705,2.4824,2.17832,1.8620025,1.9854775,2.07352,1.6916675,3.2997255,3.357915,2.637295,6.5656675,3.43224,2.31626,1.9036566666666666,3.452725,4.03347,3.85097,3.092834166666667,3.351565,3.29266,4.36031,3.673155,3.916745,4.004555,3.5530099999999996,3.636095,0.6252066666666667,0.6252066666666667,0.6252066666666667,3.67898,2.370605,5.6877,2.43924,3.77915,6.701430185185186,2.7231,0.32397038461538463,5.342,0.777044,4.324662380952381,1.934805,3.69555,2.059945,3.773735,5.254485000000001,4.14904,3.96961,2.7139066666666665,2.64681,1.4509666666666667,2.638856666666667,0.3890721052631579,0.5269735294117648,2.62303,1.4165133333333333,1.887105,4.01059,2.73409,4.908935,2.817603333333333,3.0407416666666665,3.35242,5.33995,1.60467,0.90703,2.37978,3.70613,1.1680513636363639,4.8768,4.006745,3.723985,2.7287466666666664,4.206265,2.5840833333333335,2.44957,2.3082866666666666,2.432275,2.240953333333333,2.30727,3.21874,2.33334,5.5287473333333335,2.1191125,2.0438199999999997,2.11977,5.008163333333333,3.40916,3.40916,2.47311,3.90184,2.3779,3.021115,2.917555,0.5585533333333333,4.293605,1.7683425,11.519895555555555,7.50971,2.924515,3.428885,3.44832,5.17055,3.086085,3.41593,0.2828173333333333,1.926915,3.2900233333333335,0.7902691666666667,3.922015,1.2747642857142856,4.625025,3.427795,2.793695,3.23061,3.307295,2.240565,4.49215,3.83379,3.407295,6.61742,3.955925,2.8204766666666665,3.0312333333333332,1.546958,1.936905,4.097695,3.412675,3.6977525,2.871065,3.20545,1.358324,3.061665,3.48188,3.30959,10.326165,3.615805,5.442399999999999,3.98131,4.202745,0.9905055555555555,4.79281,4.5146,2.600233333333333,2.5143866666666668,2.500786666666667,3.5749,2.4844633333333332,1.76807,1.93281,3.870815,1.498362,2.66481,5.038290666666667,2.64282,1.10086,1.10086,3.816415,2.88143,2.88143,2.857583333333333,2.8729333333333336,3.1760641025641028,3.891966666666667,3.4351333333333334,2.765693333333333,2.3667466666666668,2.499643333333333,3.17319,2.2997575,2.4448,1.6445599999999998,5.897675,8.547763,0.4444607692307692,0.4444607692307692,0.4444607692307692,0.5326112237762237,0.5326112237762237,0.4444607692307692,2.9044600000000003,2.96872,4.176193333333333,1.3814466666666665,1.84202,3.317794,2.4778933333333333,3.1342166666666667,2.30218,2.80041,3.24919,6.5596033333333335,3.12053,2.551813333333333,2.847236666666667,4.68513,2.2343100000000002,3.222386666666667,5.88778,2.446126666666667,3.401566666666667,1.4064699999999999,1.4064699999999999,2.8525500000000004,0.5171052631578947,2.235043333333333,2.68983,2.8237900000000002,3.1583966666666665,2.37504,1.3628099999999999,2.4592233333333335,2.75912,2.423573333333333,4.341035,2.4048403333333335,3.465295,2.605925,3.150535,0.47849700000000006,7.248598333333334,2.956118,2.956118,7.6750533333333335,1.8232333333333333,1.8266900000000001,2.9280266666666663,4.74902,2.4826166666666665,1.9602433333333333,2.63972,1.424495,3.4705999999999997,1.88157,3.055365,1.3698725,0.28079363636363636,0.28079363636363636,4.75915,3.97786,3.28919,2.6541866666666665,2.656265,3.32967,1.46106,5.07115,3.7988,3.016005,1.8319325,1.0517066666666668,2.37443,2.9280266666666663,2.646185,2.180385,5.799935,3.78133,4.34322,3.89604,2.29872,0.7041216666666666,7.276825,2.02907,1.53353,3.603335,4.515735,2.445465,1.69755,4.50995,3.927635,2.9354933333333335,2.9171300000000002,4.16378,4.1974,3.5698000000000003,2.39406,2.39406,3.83931,4.676725,5.2935,5.852623333333334,2.526386666666667,3.670015,1.5183,2.55075,5.440660666666667,4.016855,1.897794,5.1524,3.6117675,3.380755,2.18508,4.1841,4.520695,4.51195,4.555115,2.45903,2.5632,3.7227333333333337,2.0938033333333332,2.60255,2.4419233333333334,2.5862366666666667,0.675331,2.17535,2.7880533333333335,1.747321,4.46999,4.464875,4.45953,3.856855,3.27729,4.8296475,11.999500000000001,4.54561,3.867465,4.51171,3.93305,4.614325,2.12285,3.037938666666667,3.4632666666666663,1.19607375,2.85815,3.026745,4.56497,5.47845,4.395425,3.5284,3.0753,2.255873333333333,4.248566666666666,4.04502,3.6860666666666666,4.04502,2.2191975,2.3274133333333333,2.4224566666666667,2.0211175,2.5085333333333333,1.9803366666666669,0.7871800000000001,1.3809016666666667,1.9443833333333334,1.9412466666666666,1.7766133333333334,1.4001700000000001,1.7282866666666665,2.7548366666666664,1.5377319999999999,2.9109866666666666,1.4004466666666666,1.7929466666666667,2.709965,4.155366666666667,2.4353333333333333,2.220126666666667,2.3803966666666665,3.295875,2.23731,2.733226666666667,3.2188033333333332,2.51083,3.0826100000000003,3.1024575,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,5.1595,2.869315,1.025227142857143,3.1428133333333332,2.71381,2.875106666666667,3.444755,3.2673433333333333,4.711645,3.246249333333333,1.468622,3.058673333333333,1.70855,0.97977875,0.9665950000000001,1.5964066666666668,0.8966766666666667,0.7558824999999999,1.3287179999999998,3.259595,1.53841,1.5643366666666667,1.8744144444444446,2.3123483333333334,1.5400533333333335,1.22585,1.504645,0.9365483333333334,1.293995,0.7663000000000001,0.9961399999999999,3.441745,3.63742,4.053615,4.58219,3.93319,3.11895,4.706875,3.4013333333333335,1.971615,3.337365,1.9341075,3.61338,1.9050433333333334,0.8064490909090908,4.2736,4.821375,2.09191,1.309625,3.145745,3.3857,3.6516450000000003,3.0315133333333333,2.68019,0.8853975,2.219445,4.849327499999999,3.69396,2.476435,1.53832,3.912895,1.8321775,0.579760909090909,4.38596,4.00418,4.171905,2.30642,1.444464,3.14911,4.447185,2.6928666666666667,2.6037833333333333,2.50867,2.721413333333333,2.77459,2.8837533333333334,2.9926433333333335,1.2457275,2.4927275,2.5031,5.157,4.235875,3.867485,4.67155,15.939420387626264,4.15866,4.428649333333333,2.906625,4.122305,4.911775,1.5669359999999999,1.839345,2.2549966666666665,5.481475,3.669915,3.23487,6.3151,2.2549966666666665,3.862115,2.156035,2.0691866666666665,2.8911466666666663,2.6848766666666664,1.23194,4.17967,3.430515,2.60205,4.26347,2.51269,3.0485333333333333,3.622375,3.40021,4.328915,3.799185,2.8073,3.627245,2.69132,2.6608266666666665,1.230894,1.230894,3.476566666666667,2.480986666666667,0.38814642857142856,4.849937,0.9667540000000001,2.728315,3.68529,0.5829274999999999,4.381785,8.023768333333333,1.8804525,3.791325,3.58545,2.6756966666666666,3.45786,2.566725,3.05468,3.61933,4.3783,3.16036,3.9095,0.9836166666666667,11.667365,2.689485,2.97752,5.8812,2.696675,3.92258,7.35924,4.11719,3.70973,3.64997,4.27786,5.4992825,1.5214925,2.662506666666667,4.58278,3.814166666666667,1.9047360000000002,3.933635,3.59388,3.70997,4.006,3.811755,3.791015,2.506213333333333,4.300345,3.739615,5.09945,3.26092,2.13779,2.3279433333333333,2.073706666666667,3.1192966666666666,1.3753633333333333,3.698366666666667,0.8629154545454546,3.1702600000000003,3.0901633333333334,2.696736666666667,1.6125616666666664,4.2405,3.805005,4.272805,1.9734325,4.48589,3.83589,0.7751458974358975,0.3458992307692308,4.30871,5.3111,0.9249925,0.3458992307692308,4.72817,0.7751458974358975,0.7751458974358975,0.3458992307692308,5.866226666666666,2.6534366666666664,2.4314266666666664,5.3779,2.996195,3.56672,0.8336311111111111,3.26326,3.85792,4.655905,5.72995,2.1456625,0.6856376923076923,4.174219166666667,2.0288733333333333,1.196026,1.7850725,0.9841128571428571,2.1458833333333334,2.2518133333333332,3.34609,4.937875,2.43395,2.8297633333333336,2.7806466666666663,2.302843333333333,2.936375,4.5184375,1.70159,1.996435,3.950405,4.940875,2.0747915277777778,5.25185,2.337685,4.131565,4.361845,2.983245,1.2871175,3.418905,6.6427,3.765575,3.544595,5.2879,6.2385,2.373775,3.34449,4.58275,3.21987,3.580715,8.64826,3.88348,4.59283,2.46285,1.137825,2.5259266666666664,1.87776,2.111235,1.829475,3.7019,0.6152157142857143,3.202285,3.94556,1.9378833333333334,2.9267533333333335,5.1957,3.23188,2.9219,4.161625,4.962525,8.979045,2.6869066666666668,2.2890866666666665,1.72505,1.39475,1.2013566666666666,1.3906466666666668,2.422753333333333,2.6396966666666666,2.839816666666667,4.43949326923077,1.6739425,2.1817166666666665,5.01255,5.13065,3.66866,3.506355,3.08692,2.57988,2.15897,2.298045,2.0243100000000003,1.928045,3.02908,3.667625,4.891015,5.2652,3.657725,5.22833125,3.274475,2.587295,6.316892916666667,2.95634,8.691585,4.978323333333334,4.978323333333334,5.554449999999999,1.6936033333333331,1.4082,1.4300566666666665,0.715424,4.90693,3.7531,3.3629824999999998,3.3629824999999998,2.3389800000000003,4.226515,4.339155,4.221965,3.698045,2.882763333333333,2.709615,3.337515,3.0059,5.221053333333334,3.48836,0.7479272727272727,4.950555,4.961785,3.87232,4.880945,3.813295,6.25175,4.012615,0.8216769230769232,5.3918,7.02858,3.194985,5.9411,5.864,3.588885,2.695495,3.744735,6.09205,2.0922575,5.86285,1.899915,4.437345,2.5416433333333335,2.0918875,0.9124399999999999,2.854175,5.9312,3.5794,3.54257,2.0952800000000003,5.2106,7.936170000000001,3.41592,4.26476,2.679675,2.48252,0.8502919999999999,4.616815,1.4514366666666667,3.2742958333333334,3.2742958333333334,3.65477,2.3101033333333336,2.99565,3.68438,1.6618675,2.7874166666666667,3.31536,3.313266666666667,2.827995,4.198485,2.937145,1.8137725,3.1831566666666666,2.09774,2.98014,2.119753333333333,2.98836,3.0008533333333336,1.4006342857142857,1.6808833333333333,0.4339233333333334,1.323295,0.4339233333333334,0.4339233333333334,1.6808833333333333,0.4339233333333334,3.419233333333333,2.3174919999999997,2.3174919999999997,2.6432166666666665,3.99814,3.811545,4.112115,5.3053,5.60605,3.606335,3.82748,3.804365,1.90007,2.2568898333333336,2.30773,0.8070509090909092,5.3694,2.9166933333333334,3.0667166666666668,5.63505,3.85681,5.0466,3.52412,2.6192366666666667,3.123615,3.50241,2.7326333333333337,2.929156666666667,2.0878200000000002,5.3282,0.8358477777777779,3.59537,1.1285057142857142,3.69625,3.2888633333333335,2.8332333333333337,3.97021,4.204695,3.61161,4.349105,3.980215,3.535955,4.08489,4.29463,2.4774625,2.69535,3.21899,4.30094,2.846585,3.0509,2.830305,3.115735,3.2562333333333338,3.44279,4.8883,4.596455,4.06915,68.15705741913642,2.8050175,3.71323,15.70637,4.167445,3.08103,2.0612366666666664,1.9094300000000002,2.8142266666666664,4.2365200000000005,2.972573333333333,3.8277191666666663,5.3016,3.45396,7.516918333333333,5.32365,2.576055,3.46615,3.63428,3.421465,1.908756,1.08986,4.80795,2.69778,6.138505,3.7067,2.078186666666667,3.659525,3.243515,4.49095,3.100255,5.96762,4.32806,3.297665,3.02705,2.538,2.89325,5.9815,3.034315,3.618255,4.324043333333333,1.2440016666666667,2.444195,5.270745,3.028425,3.043935,3.640655,3.04739,3.914115,3.232755,2.877115,2.766545,4.630035,2.86512,2.90613,4.469935,10.051505,3.253766666666667,4.265785,5.85816,3.20438,1.7936,4.27910375,2.1354333333333333,3.05662,2.8867599999999998,3.670835,3.243315,3.12359,2.888105,3.453635,4.058815,3.935035,4.18917,3.564675,2.925115,3.53346,2.6352416666666665,2.6352416666666665,7.026976666666666,1.58473,3.16521,3.24873,2.37911,4.616735,4.20703,2.94949,3.303385,5.34555,5.7370625,0.6535772727272727,4.10266,2.503995,2.90831,2.571023333333333,5.1404,2.67548,2.0632075,1.1234675,2.0258001515151514,4.32409,5.16375,4.290965,6.01185,5.42655,5.6487,2.542285,1.9163533333333334,3.738085,2.435485,2.8332633333333335,2.0025233333333334,1.2805266666666666,2.8479033333333335,3.246173333333333,1.466498,2.32099,2.3030765714285715,3.3583566208791207,2.82503,4.95032,3.35711,1.3894975,2.532685,3.47462,5.58275,4.770205,5.66155,4.68215,2.0926033333333334,1.4745799999999998,0.6464542857142856,1.5637133333333333,3.51923,2.539905,3.600835,1.3686800000000001,2.44388,2.38208,3.44331,3.66972,3.96954,4.08412,1.6794225,1.470895,1.9444825,2.0657175,1.5020725,2.59275,6.6779719166666665,4.826605,3.097605,2.93265,6.531005,4.495195,3.31064,3.119535,3.42397,2.742335,3.84841,2.355,7.45272,0.9323616666666666,3.13773,6.74125,4.11215,4.52526,5.95155,1.5785766666666667,2.97113,2.93596,2.7262299999999997,1.4429225,4.126635,8.89565,3.176445,4.87427,4.06419,2.98713,4.768235,0.91037,2.8299233333333333,5.29635,6.086596666666667,5.2192,5.76105,3.079535,3.677,2.50172,4.89794,4.78795,3.9423006904761904,3.9423006904761904,0.6617228571428572,3.3854,0.823882,0.8369633333333333,1.713215,3.6895333333333333,4.19907,5.706927142857142,3.02378,3.318467142857143,3.273470476190476,2.60288,3.0949733333333334,4.617533333333333,3.661246666666667,1.91408,1.91408,3.863575,3.145713333333333,2.7097866666666666,3.41275,3.30097,0.5467866666666666,3.222466666666667,2.7003733333333333,2.5122133333333334,2.589183333333333,2.528975,2.3322833333333333,2.99887,2.5930833333333334,0.791496,2.6923933333333334,6.245600761904762,1.996234,7.3507995,1.642012,1.642012,3.365085166666667,3.3619333333333334,3.2255000000000003,2.67037,1.688788,1.2717685714285716,3.2705933333333337,3.29428,1.42218,1.5372571428571429,2.8028666666666666,2.674028,2.5637933333333334,1.791155,1.8353975,2.671335,2.031585,2.88276,3.286525,1.711395,3.72278,3.346305,6.809349,3.447665,1.6568625,2.944665,2.68347,2.13467,4.103195,2.4680833333333334,2.719355,6.7620450000000005,0.8525538461538461,0.764885,4.463995,1.422622,1.422622,3.773645,2.385895,4.02188,3.25991,1.3058533333333333,2.393758666666667,2.8747066666666665,2.429302,4.947755,4.797035,2.5150166666666665,2.01886,1.34555,1.34555,1.8299833333333335,4.06806,3.9433666666666665,5.48885,3.0727533333333334,4.667915,4.208805,6.6465,4.156455,2.490555,2.84189,2.65413,2.7482,0.7191733333333333,0.7191733333333333,0.7191733333333333,3.431205,4.206795,3.22302,0.9576475,0.9576475,5.00965,5.8759,6.22273,21.645375166666668,11.2543,7.67443,2.7279,5.63895,2.2806325,3.889455,2.568356666666667,3.1809366666666663,3.9839,5.3425693333333335,2.263725,2.54697,6.05438,1.959426,1.959426,6.29595,3.22838,4.36463,2.32046,4.6175215000000005,4.29859,2.32645,4.205415,3.23487,1.2768633333333332,5.7421,8.64633,1.2768633333333332,2.32046,2.21178,0.694582,0.694582,1.6786079999999999,2.3211833333333334,1.6786079999999999,3.944475,5.44875,5.8745,8.57908,2.32046,11.380061333333334,5.79335,5.48835,2.2806325,3.234595,4.365455,8.38268,3.0921491666666667,3.678255,5.63485,3.26452,4.646925,5.82175,4.143935,4.971865,4.566335,2.548625,5.18085,3.22944,4.364395,4.371555,0.83258375,1.547298,2.90433,5.57085,4.58651,2.64282,2.023115,4.0676,4.698695,5.645,5.43675,5.3064,4.542505,3.452225,4.38204,3.80689,2.2299875,5.0569475,2.225655,2.634985,3.50329,1.5765766666666667,3.988395,3.92483,3.833305,5.33115,2.91595,6.314563333333334,0.8996,3.527595,2.085265,1.1987657142857144,4.90493,1.3588366666666667,1.4493666666666665,2.5284,2.786352,2.7708600000000003,2.8229666666666664,1.5187,0.7341627272727272,2.1945133333333335,2.701425,3.49372,0.6498876923076923,5.690923333333333,1.6380633333333332,1.13598,3.1867900000000002,1.13598,3.96582,0.9485272727272727,4.592805,3.14095,2.35389,4.303131,4.344251,4.344251,4.715225,2.4194175,2.9839366666666667,2.7928266666666666,1.461056,3.74722,3.59524,2.2762,0.6836725,6.722789358974358,2.793355,4.01448,4.29982,7.55227,2.0587575,4.163525,3.904465,3.25999,3.647315,5.4664,6.4488449999999995,4.485095,4.655415,5.161,2.882766666666667,4.988455,4.205205,4.51847,1.055341111111111,0.48346785714285717,3.20731,3.3697,2.77826,5.3,3.819775,4.251295,4.066825,5.2133,4.57128,4.07969,1.17271,2.214995,7.838204166666666,2.1638966666666666,1.96692,3.6980180952380954,11.021123293650794,1.5761075,4.743085,6.39925,5.07065,3.460233333333333,2.110133333333333,3.26298,3.8589,1.1256716666666666,2.7124900000000003,3.20079,0.31479473684210524,2.0878466666666666,4.31143,4.163895,2.407535,4.054485,2.919635,5.18197,1.4245933333333334,0.5589954545454545,3.7573766666666666,1.070787142857143,0.98705125,0.98705125,0.98705125,0.98705125,1.5589966666666666,2.6373,1.90285,3.4088333333333334,5.15685,3.5581,5.27435,3.688265,4.195335,3.56374,4.021855,1.4378333333333335,6.784365,2.67366,4.388155,5.330736666666667,5.12575,5.061914166666667,2.41629,2.5338600000000002,2.65802,3.30115,1.2866633333333333,4.591428333333334,2.7084233333333336,4.92774,2.7746999999999997,2.41071,3.82166,3.508005,3.0509,2.5652866666666667,2.682173333333333,1.5705975,0.4285088888888889,4.07755,3.16255,4.23629,3.436065,3.91271,5.68245,4.18606,0.5520907692307693,3.007728,6.655493333333333,1.9425833333333333,1.705182,5.27402,5.44195,2.66677,4.485025,4.83403,4.046905,3.71046,3.978365,5.2788,5.5851,5.07505,3.588165,5.0198979999999995,1.429194,1.5404900000000001,4.079125,4.0014,3.66505,3.26534,5.26125,4.459025,3.81053,3.430905,15.033627224419153,1.2639628477795612,1.0797125,1.7514625000000001,0.49407,0.45124600000000004,1.34915,0.3104705882352941,1.3167339999999998,3.0807566666666664,1.590008,0.9013333333333334,1.0727279166666668,0.4185641666666667,1.0727279166666668,1.0727279166666668,0.4185641666666667,0.8216,0.5384714285714286,2.780145,2.6181233333333336,4.68332,3.54449,2.85314,2.761375,4.021535,4.36836,4.87192,2.72548,4.01643,0.6828042857142858,2.387954666666667,8.33611,4.096485,6.513798333333334,2.813315,4.26936,2.3936,5.0208,5.4616,3.62513,4.463365,2.935095,1.0917016666666666,4.291245,4.51731,1.174718,1.33982,1.5032616666666667,2.4612066666666665,1.85766,5.3722,5.3873,2.3115375,2.3115375,3.6640294444444446,6.56687,2.1472266666666666,0.6708327272727272,0.7500814285714286,2.56982,3.3356,0.9361328571428571,0.9361328571428571,0.9361328571428571,0.3826130769230769,1.065222857142857,2.833125,5.8686,3.6550999999999996,3.9592549999999997,5.12135,0.9770009999999999,3.494666666666667,3.0497366666666665,3.8281666666666667,5.85205,2.4454433333333334,7.171706666666667,4.63855,1.0289811111111111,3.6889000000000003,1.917196,2.533015,2.36374,6.580579999999999,3.1873799999999997,4.418725,2.26175,4.30047,4.415115,4.827095,0.5171994444444444,2.4855199999999997,1.4682866666666667,2.58099,4.045548,2.15507,2.8056533333333333,2.4191966666666667,2.5736166666666667,2.6604666666666668,3.018166666666667,2.9459400000000002,2.9024699999999997,1.445168,2.3287133333333334,1.9218033333333333,2.968386666666667,2.5078533333333333,2.1304225,1.80865,1.8680166666666667,1.649415,3.339795,2.2111633333333334,2.146596666666667,2.1356733333333335,2.4431533333333335,2.487436666666667,0.7826377777777778,0.7826377777777778,0.7826377777777778,2.4534866666666666,2.06741,3.0759399999999997,2.3451933333333335,2.5866466666666668,2.0022333333333333,3.81182,3.4797949999999997,1.318505,2.5321433333333334,2.8156866666666667,3.8033200000000003,1.5034857142857143,7.301968333333333,4.580035,3.299695,4.27961,3.487515,1.30557,0.8558857142857142,3.28891,3.864145,3.8033200000000003,3.684805,4.15282,4.271115,2.8091166666666667,3.91657,4.27177,0.9350210000000001,2.729435,3.421185,5.075021666666666,4.678905,3.59109,3.178175,2.645665,1.9357433333333331,2.4794300000000002,0.6506966666666667,5.082600833333333,2.720725,3.92349,2.747036666666667,3.8415866666666663,3.30404,2.4457299999999997,2.882052333333333,2.882052333333333,2.56302,2.22937,2.6956933333333333,2.0436133333333335,4.31368,1.459332,2.649095,3.77145,4.065065,3.925125,5.4259,3.303015,2.3814825,2.186295,3.434475,2.96936,2.7051,5.19575,2.60464,0.7946085714285714,0.7946085714285714,4.685945,4.075321,1.034616,4.19078,1.034616,3.843265,4.808615,4.687965,2.94197,3.29121,6.412005000000001,4.240584166666667,5.8869,0.8655071428571429,0.8655071428571429,2.0214600000000003,4.4606916666666665,1.5183916666666668,2.9423,3.30895,1.1198542857142857,3.63814,3.828605,5.5104500000000005,5.5104500000000005,1.0599716666666665,5.54945,5.3051,4.81781,5.9846,2.00323,2.00323,6.9883,0.9245363636363636,7.1437,2.0194775,6.3862225,2.849375,2.51815,3.44239,2.37332,2.3012966666666665,2.2723733333333334,3.0152966666666665,2.349510476190476,6.346324000000001,1.718776,4.975395,2.83529,2.42396,2.09741,2.189405,3.437355,3.642375,3.599305,2.89838,2.55442,2.157015,2.739195,1.1404299999999998,3.44702,2.856835,3.25728,2.183422,2.183422,3.21363,2.197906666666667,3.860305,3.29289,4.90523,7.171081666666666,4.14484,3.52814,6.3667175,2.0438566666666667,3.173318888888889,2.0981366666666665,1.4287714285714286,1.7311875,3.97964,1.5880983333333332,0.502141875,0.6803316666666667,4.124695,4.585615,2.90063,0.9264766666666667,2.77825,2.89404,4.809155,1.65653,1.752935,1.0547577777777777,4.510005,2.453205,4.119775,0.7288319999999999,4.09750625,3.695705,3.53982,4.387915,3.581945,3.846695,2.57544,5.403,3.568945,1.7224633333333335,2.7176500000000003,5.928461666666666,6.27877,0.99407,3.61662,4.649095,5.13475,3.7865,3.8394999999999997,2.583475,3.1537433333333333,3.7594666666666665,6.1579925,2.674028,2.7147205,3.985545,2.911935,2.415535,2.597625,8.485223333333334,4.66083,1.8827,4.95632,4.7081,1.831186,3.83899,1.18085,1.5792857142857142,4.39952,4.055365,4.53562,2.4151700000000003,2.785895,2.808235,4.076065,3.7188,3.560075,3.053545,3.39174,3.810235,3.5685025,1.1301676153846154,1.1301676153846154,7.3446,0.87884,2.0162291071428573,0.87884,0.6989533333333333,0.35705,2.7151824404761906,2.670295,0.4964728571428571,2.0162291071428573,1.761935,3.135365,2.2187095833333332,3.63831,4.436735,6.976905,1.93781,2.062175,1.988595,3.854935,5.6945,1.961725,1.748035,1.0971375,2.8451725000000003,4.08867,2.790955,4.049705,6.388204999999999,0.4236888888888889,3.75986,0.696971,2.7199166666666668,2.23523,3.518025,1.19821,4.05852,4.536372500000001,3.96797,2.72847,3.587615,5.1634275,1.7785525,3.23942,0.5678138461538461,2.350825,2.403815,1.136638,2.8114066666666666,2.5239766666666665,2.5784233333333333,3.617645,8.202,2.9860975757575754,3.751655,3.432825,6.964345,5.224475833333333,3.0632133333333336,4.302395,3.75604,5.95985,3.91771,5.00895,4.39389,4.14073,4.612735,3.5193,1.5034225,2.022553333333333,2.1781900000000003,3.966585,2.48572,0.19714297297297298,0.19714297297297298,0.19714297297297298,29.415028404761905,0.19714297297297298,3.120092972972973,0.19714297297297298,0.19714297297297298,0.19714297297297298,3.167672972972973,4.105815,0.19714297297297298,0.19714297297297298,0.19714297297297298,0.19714297297297298,0.19714297297297298,2.88535,5.5566,3.04328,0.19843923076923078,0.19843923076923078,4.217468,3.9070885416666665,3.7955018750000002,3.1003382083333335,3.884892380952381,7.933166666666667,11.347810930458431,6.349355,7.929976666666667,7.892528267857143,2.8525500000000004,6.065460952380953,4.336211666666666,4.385484198717948,0.19843923076923078,7.807317333333334,6.324547523809524,7.082661666666667,2.80095,8.651849767857142,14.090083482142857,18.278584553571427,56.46791367729819,115.53495548600337,1.4064699999999999,3.401566666666667,3.3809,3.861778438867439,0.19843923076923078,1.5881896153846156,8.966750416666665,14.690321642857143,19.55386083333333,46.5602100553467,13.367747434523809,3.212375,0.23274999999999998,0.23274999999999998,4.70564,2.8234966666666668,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,5.56496,0.23274999999999998,0.23274999999999998,0.23274999999999998,2.68839,1.8430866666666665,3.84996,3.87095,4.094423333333333,4.98211,1.99197,4.188485,4.22862,3.157025,1.5490733333333333,3.781925,1.05894,2.36326,1.7593566666666665,4.69789,5.811633333333333,2.78504,5.458692722222223,0.5157661111111111,0.44182933333333335,2.4771466666666666,2.63171,3.110095,3.8579,3.3879,7.453235,3.688885,4.13081,3.5729,4.057245,2.87223,3.30284,5.65485,1.980285,0.4503276923076923,0.8510518181818182,4.1199325,1.7918225,3.64809,3.88348,4.612205,3.5379,2.3231225,2.69502,0.6221973333333334,0.711884,4.311445,2.7139233333333332,5.7985,3.46399,3.7377633333333335,2.49479,3.07284,5.82185,3.537315,3.21448,0.8207654545454546,2.98256,4.180755,2.246505,1.04692,1.5440633333333331,3.90224,6.2424,1.96552,3.113895,3.61744,5.43565,2.552195,2.4246366666666668,2.41816,4.563375,2.39911,4.344285,0.7086471428571429,2.1896533333333332,3.324345,1.88383,5.753165,2.982995,3.75218,4.307405,2.93912,1.98521,0.5018390909090908,4.25298,5.18115,6.6012,3.048635,3.97124,4.23486,2.85844,2.89041,1.167007142857143,4.819825,2.01824,2.72325,9.14773,3.92446,4.902615,3.483795,0.6550333333333334,3.29366,1.23664,3.30046,6.0138,4.7463,5.0216,3.62985,5.0504,4.457945,1.6751175,1.6666066666666666,5.0096,3.11544,3.227513333333333,2.4478425,5.29745,4.34663,1.4366916666666667,3.4911999999999996,2.879735,2.72724,4.04847,9.20392,4.688895,1.773495,4.74922,6.24516,4.319475000000001,3.98959,3.621805,3.79108,4.53518,7.877700000000001,2.3332266666666666,3.341815,3.38071,4.248535,2.666245,3.122075,4.635655,4.20805,3.49683,3.9038053333333336,18.404365666666667,2.8359566666666667,2.5616,3.2745866666666665,5.602192333333333,1.094435,3.98321,2.2156124999999998,5.0996,1.241085,4.0341,4.32278,3.40065,0.99908125,4.421855,4.559645,1.713735,4.699832575757576,3.955325,1.0451257142857142,3.60174,1.97777,2.62577,1.551455,4.284915,3.888835,3.70543,3.663355,2.9574933333333333,4.146015,7.934240000000001,4.09855,4.258975,4.639935,3.0431666666666666,3.754505,4.633975,6.3819669999999995,1.082022,1.082022,4.539465,4.69395,2.02162,1.2943516666666668,7.073745000000001,3.836235,3.596445,3.50911,4.588555,4.369525,3.58377,3.97326,6.468271,3.7668566666666665,4.42525,4.77819,1.3463585714285713,2.4945475,4.16247,4.31986,3.2586725,0.20113722222222222,1.4789025,2.0216375,2.43248,2.270703333333333,0.9582255555555554,1.427245,1.5196225,2.2422733333333333,0.6256988888888889,1.0389771428571428,1.8790725,4.013245,3.951866666666667,1.9853733333333334,2.53426,2.79484,2.829883333333333,0.703176,0.9668,3.00402,4.485455,4.260635,2.825505,4.595765,4.29394,4.34051,2.0839600000000003,4.25029,4.84616,4.332135,6.22102,3.69507,0.49925352941176476,5.2751,4.566965,3.60376,4.58749,3.457925,1.88753,3.77416,4.14467,2.885155,5.2629391666666665,4.477285,1.366515,5.2629391666666665,3.84739,6.8283025,3.638915,1.1635111111111112,3.76683,4.904285,4.30548,2.792873333333333,4.548435,1.5324625,2.067805,3.07509,3.465,0.8192444444444444,4.83771,4.87142,3.226985,3.903825,3.404833333333333,2.9676533333333333,1.745014,1.553755,3.22641,3.492075,3.35,2.42083,2.1164825,1.9785103333333334,3.723385,1.3098642857142857,0.8523366666666666,5.52473,3.88467,1.41075,2.4498933333333333,2.1928966666666665,2.835296666666667,5.890466666666667,2.202177777777778,0.766515,2.682885,4.32699,2.06745,3.904355,4.981745,5.2607,4.169935,4.20631,5.06375,2.1338866666666667,2.31659,1.71735,2.1920800000000003,1.887205,2.2174466666666666,2.23474,1.523655,2.80491,3.13057,3.682455,6.4741,4.235625,3.92724,4.366285,4.01004,3.720955,5.12245,0.86718125,2.92217,4.470845,1.251492,0.606278,5.0107,3.45667,2.4998400000000003,3.4716362500000004,6.1649725,5.2808,0.8776189999999999,1.1620742857142858,0.7300211111111111,4.262245,2.392793333333333,2.7999666666666667,1.1429671428571428,2.64078,2.6333966666666666,5.47295,4.458825,4.252275,5.16425,4.223545,1.2617033333333334,3.66129,1.6692066666666667,3.569735,3.528655,3.161545,2.307583333333333,3.20154,2.6721800000000004,3.189695,4.141355,2.952425,2.36533,8.726825,10.0909875,3.90681,1.313772857142857,5.54365,3.87814,4.78547,4.505705,3.798635,3.87957,3.52908,4.28166,3.5235009374999997,3.86377,3.79624,3.65802,4.6864,1.77653,4.749395,5.7521,4.797225,3.305125,3.35947,7.247575,0.7788083333333334,2.57114,2.81655,2.37305,4.995795,3.287555,1.1891583333333333,4.02482,3.2302166666666667,3.664945,4.45974,4.0601575,6.439845,3.0650766666666667,2.8736866666666665,3.0682833333333335,2.7108933333333334,3.916165,1.9442233333333334,2.1805833333333333,3.017243333333333,4.13247,3.68418,1.97995,1.5780375,3.0357032142857143,3.2224484999999996,0.9040655555555556,2.5371433333333333,2.5371433333333333,1.29955,5.72765,3.17294,3.44378,3.553445,3.15224,3.630515,3.466665,3.100005,3.29427,2.4111966666666667,0.5170306666666666,3.28737,5.682975,3.118555,4.004505,3.410715,4.10411,3.98817,3.159765,2.661715,3.69488,3.694065,3.459665,2.886085,3.347535,2.7197766666666667,4.294925,3.86652,8.95283,3.372515,3.773325,3.06558,4.05759,4.14911,3.68887,2.44668,3.726205,2.665455,2.86973,3.095785,3.29147,3.712295,1.8257266666666665,1.8257266666666665,2.30032,3.045145,3.42951,1.592666,2.43819,3.58781,1.7615020000000001,2.818205,1.592666,4.028585,3.10268,3.8690545,3.05412,3.46292,2.580665,3.220325,3.96826,3.96216,3.37772,4.460925,3.878525,4.301575,3.731555,3.26657,3.20802,3.180445,3.87749,2.708016666666667,3.672115,5.2148,4.16201,3.780865,0.29013826086956523,3.64821,0.43956666666666666,3.673915,3.664685,2.938915,3.526055,3.846995,6.091828333333334,3.355485,2.6360566666666667,2.42775,2.9071866666666666,0.646096,6.668448333333333,3.10907,3.49071,3.67741,2.022125,2.599885,3.29573,3.49509,6.880574999999999,4.61129,4.779875,4.416515,4.201965,4.09553,3.674405,1.4438000000000002,1.635298,3.73056,4.344465,5.57429,2.3075466666666666,4.850205,1.94821,3.466466666666667,4.15484,1.832699761904762,4.127975,4.73061,3.445133333333333,3.6892666666666667,2.55414,4.49543,4.355995,3.377466666666667,4.248835,4.16481,4.729765,4.18474,4.467845,3.875005,3.08329,4.011285,2.4695875,3.3155066666666664,3.3155066666666664,4.279205,2.5950633333333335,3.70375,2.221276666666667,4.331275,3.2201766666666667,3.730905,1.983765,1.8927699999999998,1.1826233333333334,1.1826233333333334,1.506012,3.2777700000000003,1.6731800000000001,2.7015933333333333,3.891515,5.0013505,3.252463333333333,3.935605,6.2182,3.313905,2.976525,2.940906666666667,1.5793833333333334,4.21801,3.759385,6.1702224999999995,1.6257533333333332,5.1266,5.45595,3.2705333333333333,3.227425,4.27623,7.08988,1.9328433333333335,2.30456,3.915295,0.4570171428571429,3.413775,4.11026,3.99087,4.256225,2.86951,1.207622,1.518964,4.005755,2.863325,2.44921,3.827565,4.81018,5.18405,0.96256875,3.00009,4.7089,3.68854,4.480855,2.3857166666666667,5.262671666666667,3.860885,1.609394,3.47014,1.1714416666666667,2.819053333333333,6.74444,3.370145,0.6228018181818181,3.04478,3.810525,3.77312,1.7319175,1.7319175,5.107053333333333,5.51435,3.03355,0.49667000000000006,1.9555475,4.423326666666666,4.00851,4.3358,1.7981539999999998,2.935076666666667,3.1432,1.3083674342105263,1.3083674342105263,1.3083674342105263,0.9571520175438596,1.5586836842105263,0.6015316666666667,1.3083674342105263,0.9571520175438596,0.3514936842105263,0.953025350877193,0.3514936842105263,0.6056583333333333,0.6056583333333333,0.6056583333333333,0.6056583333333333,1.1167423333333333,1.01268375,2.41655,2.3972266666666666,1.091,6.373316666666667,2.7017866666666666,5.289776666666667,2.1043566666666664,3.458895,2.918145,3.5196,2.7287166666666667,4.450625,2.8423233333333333,4.037265,4.16951,4.421525,2.051585,3.836025,4.487075,4.09491,3.337335,4.717175,3.487785,4.48128,5.3407,4.98559,6.23305,5.22435,0.97752125,4.641755,3.84513,2.786645,15.350725,4.38066,5.0639,2.6524,7.74468,4.082855,4.18289,4.761295,3.18805,1.0591375,2.568085,3.77284,4.296495,3.28583,3.56929,4.14469,2.9183766666666666,4.41762,4.586735,4.169175,6.542313333333334,6.670163333333333,1.2800142857142858,3.64298,3.97427,4.107565,3.574835,3.564215,7.43197,2.845445,2.849255,2.641795,4.177735,3.783285,4.545375,2.6036,1.823475,0.9098979999999999,4.227345,3.28148,3.591905,3.81664,3.38685,4.910545,4.019455,6.02535,5.99975,5.04235,6.4325,3.71974,3.347155,3.253235,3.489265,1.87146,4.413345,4.751485,5.74345,5.308405,5.308405,2.376945,1.87146,1.924575,2.905655,0.6935983333333334,1.5242608333333334,0.8306625,1.368675,2.497535,0.36506,2.745545,4.283315,1.368675,2.9233985,11.006405,6.4319925,2.1487593333333335,0.985604,1.9771833333333333,4.32237,4.423325,5.524842666666666,1.9925125,2.25694,3.410835,3.14239,4.31638,1.8772466666666665,5.0479,3.5001333333333338,2.985095,4.96709,7.036490000000001,3.783745,2.38515,2.8046333333333333,1.6509333333333334,3.69064,5.11048,1.743184,5.6419,4.56042,5.937765,0.48751533333333336,4.220883333333333,3.997715,4.34399,2.37338,2.862365,7.25545,7.579833333333333,6.3628,1.9479333333333333,1.9479333333333333,1.9479333333333333,4.670525,4.78823,6.1963,3.279935,2.893335,2.6831186842105264,4.0244,4.93495,2.713038,1.85952,2.713038,7.4870980000000005,4.7867033333333335,4.65161119047619,6.64546,4.65161119047619,4.65161119047619,3.3651628571428573,7.21005,5.770108,2.996208,2.996208,2.549785,7.0289,3.00755,3.494175,5.346525,5.346525,5.346525,8.716225,3.7120675,3.451575,3.7502575,3.58988,0.825575,7.426306666666667,2.639603333333333,6.68965,3.499485,12.800938666666667,4.857915,5.548705,7.2027,2.6142683333333334,3.61355,1.1766616666666667,5.548705,3.37952,1.7639375,1.7639375,2.936525,5.4522208333333335,1.7820325,4.975361666666666,0.9053869999999999,1.4648283333333334,0.9053869999999999,1.9416875,2.6874195,5.831877,3.66633,1.4648283333333334,3.260605,5.0783925,1.0650675,3.61895,4.54326,2.018335,4.237903333333334,2.610565,3.419025,2.287285,0.8383839999999999,3.954685,2.768275,2.24731,1.62701,3.10813,3.614595,2.836625,3.90781,1.4529244444444445,1.4529244444444445,1.4529244444444445,4.10626,2.9330366666666667,2.9330366666666667,3.676495,3.989655,2.4504533333333334,1.36296,1.36296,3.43909,4.399145,0.798865,1.4990066666666666,2.9299,1.267075,2.7660816666666665,0.8383839999999999,0.8383839999999999,2.0658891666666666,0.8383839999999999,3.4366908333333335,0.5617433333333334,3.4366908333333335,5.893347500000001,3.49879,2.53851,1.8086063888888888,0.6440549999999999,2.4526613888888886,3.57385,2.4526613888888886,1.0214388888888888,3.483665,4.161645,3.72187,3.693155,2.634145,3.71724,2.0761333333333334,1.012654861111111,0.57782375,1.012654861111111,0.4348311111111111,1.012654861111111,1.012654861111111,4.35306,4.429295,4.5748,3.57214,4.151165,4.06495,5.0956,3.464275,3.864125,1.3488442857142857,2.4916833333333335,4.163562499999999,4.04487,1.43534,2.6165966666666667,3.70643,3.84377,4.056415,3.135155,3.910165,3.3146,3.1701,4.22371,2.0588233333333332,6.06415,3.724475,4.020475,4.60427,1.107214,2.12327,3.185925,5.90262,3.704925,3.166135,3.0361700000000003,3.961625,6.976699999999999,2.910633333333333,3.96523,2.59071,3.76845,4.103825,5.6235,5.39825,3.90591,3.09301,5.10815,4.69185,3.5089666666666663,3.9474,3.2505333333333333,2.24899,2.3383133333333332,4.79752,6.33285,4.663015,4.685935,3.96289,4.6615,5.45315,0.47147076923076925,7.17471,4.20562,3.228015,3.517205,4.407025,3.9177,2.9085466666666666,2.503775,1.32646,0.5846376923076924,1.712006,3.12148,3.15459,3.36851,3.785175,4.03168,11.269353333333335,3.756955,4.03477,2.954395,0.683445,5.469636666666666,3.7013,1.5832300000000001,5.28453,6.28583,2.58453,9.49532,4.50709,2.481426,2.481426,2.481426,4.281975,9.16591,3.46617,2.1428775,2.1428775,3.37476,10.2177,0.9876875,4.665245,4.267305,3.97459,2.8515566666666667,2.3184,4.41965,3.961115,6.3416,6.145630000000001,4.129665,3.057495,3.93605,4.14836,3.1763525,1.12297375,2.57164,6.40925,3.1829925,4.9117,0.89808625,3.5497333333333336,2.1967333333333334,2.6893999999999996,1.76285,1.83964,2.1224833333333333,5.11485,2.05285,4.58898,5.38605,1.718776,4.768905,3.79856,4.78242,3.2510766666666666,2.31138,2.79851,3.7134,4.077876666666667,4.077876666666667,1.225475,1.5730266666666666,2.7548766666666666,4.430213333333334,2.198854545454546,4.7891113333333335,1.787398,2.636136666666667,2.184886666666667,1.6220225,1.6220225,4.586115,7.3471166666666665,1.8524399999999999,2.8291299999999997,2.1375225,4.470075,3.25711,0.956386,2.907835,0.956386,2.76877,3.20486,5.4635,5.44345,3.785665,4.675014166666667,5.6167,2.45456,1.8637133333333333,2.9258,2.2074700000000003,6.15605,4.714285,2.59569,3.65772,2.946765,4.28965,1.10919875,1.1018700000000001,1.8468333333333333,1.3075866666666667,2.4960033333333334,2.74141,2.3301866666666666,3.2816166666666664,2.68102,4.537875,2.571283333333333,2.44802,2.87017,2.4826200000000003,2.9173299999999998,2.6883233333333334,1.9756466666666668,2.5422266666666666,3.592375,3.721135,3.15806,2.756335,2.8276566666666665,2.0950775,1.75047,1.20403,0.304334,0.13972847826086957,2.2165766666666666,1.78777,0.13972847826086957,3.7893709782608695,1.992585,0.13972847826086957,5.667765555555555,2.2596350000000003,6.35338,3.4075,3.0322099999999996,2.56367,2.8421233333333333,2.180865,4.49461,2.9254200000000004,3.1758633333333335,0.38559,4.086165,2.637856666666667,3.18897,1.80289,2.46938,4.301225,2.46824,7.80016,5.1341,3.17794,3.7207,6.89905,6.46617,1.9241966666666668,4.244623333333333,2.13608,1.920345,6.28239,7.66718,1.3443100000000001,2.0407625,3.875635,2.574865,2.968115,3.095015,2.907045,4.368505,2.446315,3.196465,3.34856,3.305335,7.49949,1.23145,2.130745,2.912955,3.28859,1.95723,3.47211,1.59379,3.77431,3.519085,6.49598,3.52388,9.4488625,3.481995,1.5040499999999999,1.7126299999999999,2.93078,6.19322,1.6190525,1.6555333333333333,5.93334,3.44739,4.145925,2.72857,2.0552266666666665,3.04554,10.775855,4.71937,6.40518,3.47167,2.128935,2.2086,2.57963,2.88555,3.15011,1.5813166666666667,1.6137566666666665,2.6302066666666666,3.584155,1.84202,3.43762,2.808995,3.5615,3.83937,3.469885,1.223045,2.88581,1.2482733333333333,1.331956,1.560885,3.26521,3.54282,3.884735,2.39559,3.87287,4.00001,2.84782,1.479884,3.474675,3.6117675,3.082775,1.73587,3.286235,3.56659,1.550135,3.37022,1.6179866666666667,4.22939,3.66729,4.56671,2.68515,3.89397,1.73917,3.19326,5.5481,1.80834,1.1016914285714285,3.3691666666666666,2.879345,4.03523,4.22705,3.043305,4.59736,4.936765,2.3705133333333333,5.0955,5.4832275,6.5696,4.025285,5.6475349999999995,4.08148,1.67505,2.93711,4.69916,4.744905,2.4789766666666666,7.254494,1.167,3.2837899999999998,2.27039,1.787368,2.39506,2.9205166666666664,0.391955,2.683073333333333,3.8017,3.54481,2.56033,3.2705800000000003,2.4418866666666665,2.5124033333333333,2.1152725,9.013919999999999,4.89151,1.9829979999999998,5.16945,2.525302543478261,0.7751458974358975,2.5599266666666667,7.189605333333333,1.591498,4.51689875,6.106108333333333,1.660925,1.647625,1.4378075,3.47954,3.29485,4.35063,3.80733,2.4437366666666667,3.67744,0.996628,2.8141613333333333,4.23009,4.093655,4.59757,3.100455,5.04295,4.46411,4.045875,4.773055,5.63915,5.06175,4.035555,5.34785,1.6641359999999998,1.8874025,2.84139,3.501135,1.0992322222222224,3.644295,2.28023,3.3770000000000002,4.28877,3.1028599999999997,2.4476733333333334,1.5126066666666667,2.8053733333333333,2.8789002777777775,2.5371866666666665,2.9095833333333334,2.03377,2.184305,2.382425,3.700285,4.305975,3.67457,4.55109,3.75359,2.29523,2.8978,5.0215,3.8882333333333334,4.69197,3.23224,2.30319,4.632361666666666,1.7756966666666667,4.126515,4.700340833333334,5.8446379761904765,3.620335,4.12395,5.33415,3.04719,3.8332949999999997,4.33567,3.56923,3.7810525,3.4862,1.4242725,3.25721,1.80209,2.243565,4.69223,5.166399999999999,3.7810525,4.048735,3.50051,1.5183916666666668,3.67083,2.127025,2.4680833333333334,2.216875,2.759025,1.4706925757575757,1.4706925757575757,1.4706925757575757,0.4849009090909091,0.7401088888888889,1.9867455555555555,1.091615,3.702715,1.3885333333333334,3.65829,5.08775,4.263185,3.25522,4.12383,3.401645,4.93455,1.4848525,3.202855,2.818595,3.299685,5.945428,4.08411,5.17295,4.04242,1.03352,2.371135,1.2573566666666667,3.949645,4.077045,4.20276,4.98687,4.46168,3.561305,4.257125,3.69764,1.808445,1.0863416666666665,5.126663333333333,1.0357822222222222,1.2965433333333334,2.7815366666666668,8.002615,3.061965,3.921885,2.6621,5.6025525,1.7382525,1.0167933333333334,1.549665,3.144015,3.60768,3.88717,3.78691,1.9074925,6.332795,2.8871333333333333,0.96424875,4.25157,2.86983,2.56252,2.39385,3.5407666666666664,5.6282966666666665,2.5915466666666664,3.200806666666667,3.4253,2.13029,2.5829066666666667,2.9464333333333332,2.73646,2.122715,4.68732,4.62994,4.806435,0.9782944444444445,0.720647,3.771333333333333,2.7699433333333334,1.012465,2.670263333333333,3.442645,4.171875,6.951285,4.706355,3.3960666666666666,1.8272279999999999,3.68806,3.84847,2.6256766666666667,2.4687837142857143,3.599695,2.7367333333333335,4.7601580000000006,0.8297333333333333,2.49731,1.731852,3.74603,4.1067,2.02741,1.1053725,3.115575,0.445507,3.0603,6.5662,5.24815,2.7346019999999998,1.492516,3.7937333333333334,0.7952611111111111,2.7200900000000003,0.7952611111111111,4.20656,4.416585,1.35394,1.67491,4.996268333333333,1.8040133333333335,3.477345,2.428095,3.402735,1.27909,1.6816700000000002,4.014735,4.85762,5.27365,2.8867599999999998,2.881675,3.216175,1.6436375,2.07914,1.84781,1.9285175,4.27723,1.5255999999999998,1.5255999999999998,3.183905,4.338968666666667,8.303436666666666,4.516586666666667,7.347325,2.088415,3.768105,4.165425,1.5756983333333334,3.4595075,3.72147,3.055555,4.899525,2.948685,2.75666,2.800936666666667,3.59782,1.0450125,4.06664,4.385895,1.171775,8.001859999999999,2.66186,3.301165,3.533723333333333,5.18655,4.848595,3.284673333333333,2.4706733333333335,2.88115,1.9891733333333335,3.6466666666666665,2.2037725,2.1643225,7.042012,3.2047066666666666,2.801296666666667,4.417295,21.692245888278386,0.6874199999999999,2.865195,4.50444,4.58492,8.72422,4.647765,4.73722,4.490655,7.049488333333333,3.707335,1.6452266666666666,4.911011666666667,3.435675,1.168688,1.168688,1.168688,2.39626625,1.73122,3.304915,1.60204,3.161685,1.5785766666666667,2.683215,2.613995,2.835005,1.60204,3.500645,2.724245,4.187093333333333,5.061303333333333,4.952375,0.7588775,3.315095,2.920905,4.672195,3.496175,2.926175,2.327945,1.719475,2.271495,1.475328,3.473785,1.672775,4.548565,10.776653000000001,2.6470033333333336,2.470585,4.449845833333333,4.7056,4.4393666666666665,6.0585,2.252266666666667,5.224475833333333,4.282315,1.129055,1.2011685714285714,6.461188,4.28704,2.4297,3.585795,1.9834675,3.36966,4.45712,4.579745,3.970895,1.2665857142857142,4.104485,4.63345,4.672335,6.290485,3.32333,5.3715,4.31321,4.584255,5.0258,3.5635333333333334,4.96112,1.71641,3.449485,3.107895,3.17331,4.12228,6.13295,4.67876,2.7640999999999996,3.585266666666667,8.75499,4.810935,3.2636633333333336,3.46632,3.08101,4.446245,4.39926,4.663815,6.375325,3.59698,2.6813833333333332,3.930113333333334,2.366935,3.850585,2.22913,6.30662,1.6110499999999999,4.388955,4.628685,11.329065,0.4840642857142857,4.357125,4.830965,0.6400514285714286,3.688705,3.847255,3.883285,0.9253899999999999,4.73013,4.996216666666667,2.7061533333333334,9.809608333333333,3.1984933333333334,1.88574,2.259255,3.39932,5.95945,0.558075,3.91383,2.022385,5.4745,0.6941415384615385,4.308495,5.6585,6.0619,3.566155,6.4456500000000005,4.554,3.37864,2.6133333333333333,2.8512566666666666,4.22453,4.23104,4.841225,4.89499,5.38355,3.00658,6.508935,2.7704,3.2761774999999997,1.8185475,4.18731,2.1833199999999997,1.6163066666666666,3.1842400000000004,2.82897,3.2377233333333333,3.2754600000000003,3.3912666666666667,2.99032,2.5350800000000002,5.5624,3.21902,3.78829,4.78623,2.4836266666666664,1.1386333333333334,2.9322666666666666,2.88407,3.831155,2.75965,3.1445566666666664,4.828175,2.18838,1.72935,3.24112,3.81362,4.319005,1.1019675,4.090015,3.311985,3.8824,2.822976666666667,4.831317,4.078105,3.36891,3.88917,1.827785,3.978255,0.6182525,4.734065,4.982045,16.72393,3.0453766666666664,1.179275,4.094655,0.6217750000000001,2.66345,4.4141,1.83095,1.1408228571428571,3.546775,4.50514,2.9669899999999996,0.7356066666666666,2.79295,7.83632,3.875255,5.32155,4.99306,5.2152,3.3946666666666663,3.6385,3.157446666666667,7.039281666666666,3.897035,4.95675,1.996165,0.43708166666666665,2.210665,3.131895,2.24111,4.28036,3.68485,2.8223000000000003,4.529495,0.6670816666666667,4.511345,3.54835,3.33392,1.1940866666666667,2.68041,2.01331,4.84297,3.980525,2.081455,1.5873000000000002,3.339405,4.235215,4.09927,6.0388649999999995,2.1277399999999997,4.63479,4.303085,3.673955,1.8383639999999999,3.621135,5.68852,4.609995,2.46828,4.86845,2.585995,2.606465,3.76985,3.857225,1.3911766666666667,4.583545,1.9943766666666667,2.65523,5.157215000000001,5.157215000000001,5.13385,1.440862,4.78489,0.88982125,1.7661120000000001,5.0468,2.6547066666666668,1.4895399999999999,3.2078233333333332,0.898044,4.3082666666666665,4.692655,2.889465,4.903765,3.764665,3.512375,5.37443,3.47745,3.530333333333333,2.7619399999999996,2.2612099999999997,2.533,2.8379266666666667,4.472245,1.6445281318681317,2.8111599999999997,4.372325,4.57141,2.1279666666666666,4.307005,4.44829,4.845516666666667,3.3596333333333335,5.031,4.872335,5.1952,4.94694,3.42923,3.65264,3.66178,4.30202,5.45925,4.43874,4.859445,4.583675,4.531885,0.6790666666666666,4.847955,4.38958,4.021605,7.2321824999999995,3.986815,3.704465,4.48985,4.720405,3.478315,3.5538,2.06696,4.5003125,1.7878425,1.3159928571428572,3.757025,2.1156900000000003,2.5245466666666667,3.5686833333333334,3.3106833333333334,2.975405,1.2221533333333332,1.9227475,4.42869,3.534815,1.8796175,1.8796175,3.257755,1.601354,3.2334300000000002,4.32136,3.62964,3.7866,1.4908366666666666,2.27116,3.4656775,2.014915,4.183645,4.305615,4.72287,3.97031,6.18843,2.5984,3.622875,4.332615,4.353275,3.3419666666666665,3.90074,3.80346,4.09454,2.291715,2.293156666666667,4.276445,3.843735,3.771215,3.652,1.73087,3.671405,4.28247,4.637455,4.229615,3.8871425000000004,3.8871425000000004,2.9749625,4.025885,4.10245,3.511255,1.559144,7.33797,3.89231,4.91337,4.408385,4.210655,4.004845,4.68145,2.995255,3.192885,2.848175,4.86375,1.844504,4.17045,5.242992222222222,5.00765,0.739668,4.885014166666666,1.15017,4.87437,4.533245,4.41444,4.153475,5.05455,3.7188,3.7188,0.7976409999999999,2.30727,4.87286,3.70168,3.88313,4.82271,5.6074,3.38448,4.054265,1.3779866666666667,2.742595,1.6645975,1.2692375,4.176242666666667,0.8531449999999999,2.30891,3.0812033333333333,1.2461533333333332,2.1102,2.6996033333333336,1.2166683333333335,6.42247,1.969395,2.7293299999999996,5.55385,1.8958975,2.7675933333333336,2.570965,4.55797,3.6094666666666666,3.5043333333333333,4.123866666666667,1.69222,2.1803325,4.19766,0.6482707142857143,2.0340266666666666,2.243851666666667,3.0414933333333334,2.8232466666666665,1.1515457142857142,0.833215,2.55105,4.129465,1.1866171428571428,2.12105,1.2349825,5.3537525,2.2609725,5.0115,4.435305,4.078935,5.2599,5.34315,3.994245,4.12293,1.3477233333333334,3.9566666666666666,1.688494,2.400986666666667,1.2188571428571429,4.30625,2.05266,7.13676,3.98577,3.765485,1.454242,6.9317675,3.37577,1.4901433333333334,4.125795,3.219645,3.733155,3.08301,2.04619,2.04619,3.2078233333333332,1.3809016666666667,1.3809016666666667,1.8383639999999999,2.7482166666666665,2.1304225,1.318505,3.5201333333333333,1.0655525,3.10862,2.325915,1.95943,1.5105616666666668,2.2351925,1.90244,0.2993105882352941,2.3601825,1.2007233333333334,2.3652666666666664,2.184886666666667,2.3814825,1.0380222222222222,1.1404299999999998,3.846166666666667,3.1011666666666664,2.04619,1.7918225,2.0022533333333334,2.6212066666666667,2.4466733333333335,1.885014,3.4408333333333334,1.08134,3.21899,2.64935,2.6015566666666667,1.56007,0.914648,2.4607125,0.914648,2.4607125,0.63653375,0.63653375,0.48353,2.129735,2.2976733333333335,0.63653375,2.210865,2.28986,2.379555,1.649415,0.7826377777777778,0.63653375,0.63653375,1.6420559999999997,1.6420559999999997,2.069575,1.7918225,0.63653375,2.2485600000000003,0.47758,2.8340833333333335,2.01654,2.4591600000000002,2.5210833333333333,2.5210833333333333,0.3729225,0.3729225,1.8383639999999999,1.955394,2.14576,1.99265,0.3729225,3.5208333333333335,2.56795,1.54702,0.623883125,1.54702,0.623883125,7.07757,2.6449866666666666,3.9901,2.6756966666666666,2.8610866666666666,3.1500233333333334,2.64265,3.5264333333333333,2.538,1.7316075,2.4502266666666666,2.910633333333333,2.381816666666667,1.6420559999999997,2.5453714285714284,2.5453714285714284,2.80733,2.1383525,4.36354,2.31626,3.11472,2.734446666666667,1.420882,2.34168,2.194805,0.7995145454545455,1.7032825,3.482375,1.6179700000000001,3.0517766666666666,2.56319,2.620475,3.821066666666667,1.5451266666666665,3.32534,2.9975633333333334,4.1978,1.2625439999999999,0.23274999999999998,1.2722485714285714,1.2722485714285714,0.9732322222222223,2.8799433333333333,3.8281666666666667,2.522,2.16791,2.16791,2.1182525,1.6179866666666667,0.944422,1.8209433333333334,1.8209433333333334,0.63653375,1.8383639999999999,2.91093,3.087476666666667,2.325915,2.18854,2.18854,2.18854,1.0863144444444446,1.4287714285714286,1.4287714285714286,2.3789575,2.58306,2.4952225694444445,3.498685,2.5729633333333335,2.2575866666666666,3.604475,3.85661,6.3032725,3.54524,4.236895,4.000366666666666,13.212769999999999,4.87366,3.603165,0.94439,3.86954,3.2094,2.50097,3.788075,5.04765,6.279727333333334,5.9661,0.44304529411764704,3.664525,3.055905,3.75297,2.468275,4.23171,4.37406,4.01761,8.4768,3.5752,3.933745,4.11682,3.2810454545454544,7.9952821025641025,3.2440766666666665,2.728486666666667,3.59547,3.935655,4.929005,3.614525,6.758303,3.62417,1.409362,2.75616,0.8991825,4.67638,2.67506,2.66891,4.008645,3.08298,2.56646,4.81298,3.954055,7.689080000000001,4.061615,4.525961,2.3890733333333336,5.29607,3.11889,0.7648775,0.7648775,3.60221,3.926455,2.4058,2.26853,4.172235,3.01284,3.452125,2.05866,1.9780125,2.9759,2.4724533333333336,1.11556625,3.18265,4.776805,8.36525,1.498392,2.80884,3.07849,3.159275,2.7482066666666665,8.52139,4.09736,3.3956999999999997,2.81672,3.834235,3.2638866666666666,2.7811166666666662,2.9691566666666667,3.79409,3.80227,4.411375,3.66744,0.4242026666666667,1.6193333333333333,2.4025333333333334,1.825295,4.315645,3.483735,2.520086666666667,2.226825,4.355825,3.56779625,1.99969,2.502595,0.85674,1.9533325,2.5263566666666666,2.5263566666666666,5.05085,1.90864,2.7367966666666668,2.3049500000000003,2.0893200000000003,1.8388133333333334,2.949135,3.669225,4.73347,4.210125,5.24215,4.55223,2.88624,2.791983333333333,2.11326,4.53953,5.53675,1.8814399999999998,2.939223333333333,2.098285,2.1230466666666667,3.7040949999999997,2.277883333333333,5.095,3.931665,3.554185,4.190465,2.963556666666667,3.73702,3.96648,2.30544,2.4507533333333336,0.4145042857142857,3.8051,2.6263900000000002,3.11684,6.25505,4.794805,5.675738333333333,1.87049,1.5608883333333334,3.192135,5.146,6.38275,5.92465,2.783103333333333,2.3002466666666668,3.45304,2.0995433333333335,4.60601,2.1910766666666666,2.255315,5.5084,4.920325,4.18123,1.815665,1.924135,1.1360480000000002,1.1360480000000002,1.23717,0.9748,0.798744,1.918264,4.17392,9.750533333333333,3.819835,4.072585,4.08288,5.7917175,2.72011,1.6901966666666668,3.337934166666667,2.941655,5.00113,2.2247600000000003,2.5541933333333335,2.8734699999999997,3.213926666666667,2.215123333333333,3.0849466666666667,3.2999266666666665,2.9779400000000003,3.4143666666666665,3.3647666666666667,2.8566366666666667,2.77136,2.9697033333333334,2.1500533333333336,3.070123333333333,2.99527,2.83323,3.277283333333333,2.07762,5.404487428571429,3.0778033333333332,4.173540666666667,3.1469133333333335,3.041513333333333,3.6461666666666663,2.7973466666666664,2.695953333333333,3.0034333333333336,3.1559899999999996,3.3916,3.067323333333333,1.882855,2.7668966666666663,2.7653766666666666,2.83725,2.83725,3.2374666666666667,2.761506666666667,2.4985833333333334,2.8865,3.0051,4.107366666666667,2.885643333333333,2.720825,2.7849133333333334,2.844446666666667,4.214470833333333,4.874005,1.5768983333333333,3.3032,3.7003,3.31778,3.2148766666666666,3.6130999999999998,3.4379000000000004,2.8054566666666667,3.430168,1.9496479999999998,2.8089589999999998,3.377333333333333,3.090613333333333,2.5138266666666667,2.291186666666667,3.825466666666667,2.77401,2.9908433333333337,2.2392975,1.1203833333333333,3.2216466666666665,2.634393333333333,1.88032,2.4763075,3.0186166666666665,3.0199933333333333,1.972038,5.560694,2.3764133333333333,0.871691,4.321375,1.8254683333333332,1.5517016666666665,4.150125,4.05776,3.385225,2.33765,1.36482,3.576165,2.710445,3.509605,0.3953645,2.09013,0.3953645,2.307915,1.36482,2.772385,3.628895,2.2067525,3.218395,3.39094,0.4705746666666667,2.8406566666666664,0.9539825,0.42384,3.71088,3.98852,4.94592,2.485645,5.3494,4.062685,3.920415,2.284545,3.8193333333333332,1.673906,5.06975,2.29361,4.27919,4.19265,2.91957,1.9166800000000002,2.0325166666666665,1.3134983333333332,1.916225,0.8129625,0.8129625,4.569105,2.3244700000000003,6.18065,2.412635,2.140905,2.11825,2.277577,2.489815,6.42615,4.72937,2.239555,2.4170933333333333,2.277577,2.4927,4.2141895,2.4333175000000002,6.008538333333334,2.412635,3.4671475000000003,3.496065,2.9546533333333334,5.4181,4.59042,1.8298525,1.977915,2.411675,2.329935,4.721175,5.382,1.9077375,3.710165,1.5793833333333334,1.49643,5.131,9.813231666666667,2.03016,2.0001433333333334,2.403653333333333,4.13625,4.03818,1.88109,4.744495,4.52014,2.364905,38.790621071428575,2.86614,3.0695266666666665,0.4225888888888889,4.766414166666667,2.045523333333333,0.908818888888889,3.489175,3.64744,1.8077975,1.833245,2.4339766666666667,3.593525,1.338627142857143,3.220945,3.608745,4.454305,0.9108890000000001,4.66128,4.9033,4.717485,2.8285033333333334,1.558875,3.799125,4.501455,3.589015,3.51234,3.71989,3.79467,11.491356565656567,2.60318,3.115575,3.73033,2.44929,4.266085,3.12594,3.16837,2.93486,5.33385,4.180925,5.0979,5.12125,2.4594,3.675175,4.18147,3.661045,4.630445,4.40938,0.12764347826086955,2.25672,5.3855,2.89499,1.6650083333333334,1.1422666666666668,1.1422666666666668,2.348145,2.815465,2.670545,1.786046,2.842223333333333,4.38245,2.72781,4.590175,0.5744514285714286,4.58519,3.42346,4.726325,4.575735,4.514375,1.14430625,0.96477875,4.290166666666667,2.94621,3.0411366666666666,3.747306,3.62167,6.016730000000001,5.45995,4.034055,3.697515,2.06364,1.4456633333333333,4.35684,0.3167986666666666,3.4609,3.82196,4.177675,13.82179,2.0780225,3.05759,0.790905,4.608205,8.40742,3.26933,1.7103033333333333,5.6624,3.1893333333333334,1.0815755555555555,4.87588,2.91786,3.131375,4.728545,3.4806762777777775,0.95954875,6.492523333333334,0.7520325,5.0231,3.2953497777777776,1.45041,2.1464109444444444,3.3145625,3.3145625,3.82544,4.4204118333333335,1.2873625,2.499435,2.77353,3.56942,3.085175,2.54769,3.42763,3.394535,6.853685333333333,6.3952,4.049685,3.22951,4.439855,4.65877,3.593035,3.417785,3.650895,3.79843,4.16406,2.5590066666666664,2.612906666666667,1.6139150000000002,2.3564966666666667,2.1893825,1.5649325,2.75013,3.5802666666666667,3.4129666666666663,3.1110366666666667,2.4992366666666666,1.5490733333333333,1.6444033333333332,0.47725909090909097,2.36191,1.5850285714285715,1.86874,3.4105666666666665,2.5215,2.5974333333333335,0.9311925,2.191825,2.668525,2.902375,3.613185,5.13,4.010585,3.03568,2.285553333333333,3.43849,4.32677,2.43198,3.4006,2.062575,3.86347,2.786235,4.1279,1.3925633333333334,0.614236,2.2719725,3.28431,3.19827,3.95672,4.69304,8.887675,3.1654366666666665,2.1114966666666666,1.7901300000000002,1.713524,1.713524,2.8842233333333334,2.4937,4.817655,4.267455,3.33911,4.983475,3.978035,4.067725,3.1752416666666665,4.412075,7.68976,2.5047,0.502141875,3.229643333333333,1.3566200000000002,1.02544,2.03307,0.75068,2.0853325,5.22785,4.88381,5.743075,0.924575,7.76086,1.9498640000000003,1.5394816666666669,2.6037933333333334,3.828515,3.2627433333333333,2.2886575,3.286905,3.0735033333333335,4.2609,2.84891,2.68562,3.0008933333333334,6.2294350000000005,2.535815,4.020385,3.8197416666666664,3.6624175,1.61046,1.161085,4.293275,2.7148333333333334,3.052906666666667,5.2814675,2.81147,2.18565,2.406415,3.124025,3.7266333333333335,2.0768766666666667,3.9128616666666662,2.891016666666667,5.5249,2.486454166666667,1.953595,4.74539,5.2751,4.27605,3.82555,1.66573,2.243735,1.9708925,3.278125,1.7107833333333333,1.0706916666666666,2.9109866666666666,2.04889,1.88219,4.36749,0.678395,5.4275275,1.4161825,0.7840481818181818,3.4062333333333332,3.791415,0.65561,2.8888265,3.18807625,0.833215,4.30564,0.168895,0.168895,0.168895,0.168895,0.168895,0.168895,1.917072,3.79878,1.917072,1.917072,1.8374166666666667,0.168895,0.168895,3.3309166666666665,2.50303,3.400775,3.319275,2.361825,3.63615,1.3247885714285714,1.542954,3.1763525,1.3362120000000002,2.6468233333333333,2.6152206666666666,5.582649999999999,4.113615,3.89912,6.6214,4.405305,4.799595,3.47329,3.77112,7.1971066666666665,3.8627000000000002,3.6204666666666667,2.19394,5.2713133333333335,2.59052,2.0985625,1.6911833333333333,4.54996,5.1131,5.0586,5.03305,5.48755,4.22999,4.522125,0.6744190909090909,0.68575,0.68575,4.649925,2.4093133333333334,3.935835,1.0692842857142857,4.406715,1.464942857142857,2.2886166666666665,2.44078,4.438466666666667,4.438466666666667,6.68175,4.177065,1.281115,9.467811666666666,2.7835133333333335,1.210222222222222,5.0547,5.10775,3.5168,3.11532,2.76522,4.245033333333333,0.8001933333333333,3.2561433333333336,3.33085,3.8059,3.2252166666666664,1.50683,1.4738433333333332,4.743448333333333,3.14925,3.10702,3.4485333333333332,5.4192,3.4925975,0.8135899999999999,1.5503766666666667,3.8361,2.2258666666666667,3.8580666666666663,3.4636,3.0705066666666667,3.4347666666666665,3.0022599999999997,2.43865,1.0512366666666666,3.146603333333333,2.4524500000000002,3.398045,2.962775,3.72331,2.6266700000000003,3.250453333333333,2.786925,1.567498,2.1906033333333332,2.6281873809523812,3.5316333333333336,1.8148440000000001,3.2158533333333335,1.8113666666666666,3.6430333333333333,5.378430833333334,4.953239333333332,2.42538,2.53395,2.7052,2.45924,1.5498285714285716,2.345975,3.328570357142857,2.4398875,3.5220333333333333,2.88636,3.7283636666666666,3.04603,1.2986222222222221,1.3325425,1.8347425,2.18322,2.927986666666667,3.5124,5.0772,7.6042025,2.613655,5.1136,3.604115,14.820300666666666,0.47972200000000004,11.4252775,0.8125022222222222,3.34881,2.5871566666666665,1.9103933333333334,2.934965,1.60872,1.479884,2.3334066666666664,1.22538,2.9064200000000002,2.03408,2.8173433333333335,2.0764666666666667,2.6580633333333332,1.6458566666666667,0.6247966666666667,2.9641699999999997,2.575886666666667,2.8909266666666666,1.0863144444444446,3.4638000000000004,0.7061166666666666,0.3634307692307692,1.9412233333333333,4.450685,4.288975,4.17737,0.725099090909091,4.01598,4.7815,1.1770725,2.3939175,5.2263166666666665,3.461775,3.722615,4.056805,4.038225,1.9597725,3.982605,2.67548,2.868685,3.72282,2.91715,2.79359,3.852215,3.253175,3.505335,2.172535,3.427795,4.244195,1.2771066666666666,4.48676,2.276345,4.06145,5.0823,1.9870825,2.6179900000000003,2.9794699999999996,5.757348333333333,2.500356666666667,3.26658,4.9136,3.9901,4.104485,1.9990233333333334,2.67495,4.35457,3.5821,3.7679,3.6462,2.9205133333333335,2.8790899999999997,3.8412666666666664,3.1684699999999997,2.6529633333333336,2.71217,0.44213777777777774,2.3384125,2.0794225,4.574625,4.74081,2.994173333333333,2.6040766666666664,3.1749333333333336,8.832405,3.476783125,4.087105,2.5573900000000003,4.09213,3.131915,3.592674166666667,2.7890366666666666,2.250605,2.638403333333333,6.3819,4.64742,2.2006,3.28941,3.134715,2.8032166666666662,4.370440666666667,1.7357140000000002,6.102543333333333,4.02705,4.76477,4.53326,6.49375,3.774235,6.77534,3.595475,3.2945,0.6388214285714285,2.1932275,1.56246,2.79121,2.77992125,4.06789,3.877665,5.2564,2.65464,4.492355,3.7005666666666666,3.8470666666666666,3.191603333333333,4.307735,4.488325,4.276995,2.8114666666666666,6.002395,4.520195,1.401345,5.14385,3.686555,2.813875,2.230005,2.22572,4.209136666666666,1.2730885714285713,2.498676666666667,2.00979,3.86685,4.37984,2.3891833333333334,3.306293333333333,3.0193133333333337,2.3130533333333334,3.55052,1.374846,2.2946133333333334,2.4265933333333334,2.9315266666666666,2.545436666666667,2.597906666666667,2.75302,4.06142,2.9658366666666667,2.81066,4.02006,2.374575,3.692185,3.64509,1.2572733333333332,1.2572733333333332,4.56594,2.828086666666667,1.81335,1.3472575,1.9847225,1.914745,1.29925,1.4958166666666666,0.657832,1.6264333333333332,1.5028166666666667,3.009916666666667,2.2419,1.8174299999999999,2.0308566666666668,2.3243766666666668,1.5129233333333334,1.8375266666666665,1.7769599999999999,2.386075,4.023245,2.92787,2.7581100000000003,2.6262,5.45745,2.83125,4.291695,4.01537625,2.08248,4.006335,3.04179,1.927725,3.65371,1.6146875,3.0626,3.67805,1.85826,4.325065,3.599185,4.257395,3.2817133333333337,0.8166888888888889,4.714265,3.804855,3.44107,3.92862,2.2572366666666666,4.36424,4.439315,4.4831825,9.158275,3.361005,4.44524,2.8124966666666666,3.57207,4.272035,2.259245,2.881775,3.71653,1.9341075,5.76538,1.8609380000000002,2.78281,5.540186666666666,2.802046666666667,4.103698,1.1869542857142859,4.26514,4.258295,2.987883333333333,4.71215,4.655155,5.907541999999999,15.277918273809524,0.6033470588235295,1.0380222222222222,2.8124000000000002,3.77596,3.496215,2.1545075,3.292565,4.07597,4.808575,2.4635,4.33164,1.6861333333333333,1.6861333333333333,5.20315,0.7617418181818182,1.67003,2.921945,3.96937,0.3826130769230769,1.9876966666666667,3.9987293333333334,1.1859866666666667,3.1476133333333336,2.8383766666666665,2.96982,8.12478,2.62771,3.6508333333333334,2.0277133333333333,2.2732733333333335,3.6573525,3.706785,3.33674,6.923511333333334,1.94155,2.899675,4.57789,6.60933,1.8976,2.4040466666666664,2.6237966666666668,1.4377033333333333,2.57073,1.6024237499999998,3.922335,3.91562,1.5725875,1.8635313333333334,1.8635313333333334,2.6708700000000003,5.3611,4.110783333333333,3.984745,4.288535,4.160385,3.221945,3.806265,4.29977,3.43322,4.707578333333333,3.8186425,4.446375,0.896666,0.361211875,5.4051,3.946645,2.48459,8.00061,1.5452333333333332,4.665533333333333,4.019985,0.3500775,2.009933333333333,1.4337900000000001,1.9393,2.0721166666666666,5.183307,2.96036,3.29009,4.992465,4.979425,4.620045,0.5869053846153846,1.993705,0.621891,5.87659,1.380808,4.825265,1.9815975,3.2141325,3.244445,4.1203,4.08342,5.1725,0.8258027272727273,3.272365,3.94875,1.926915,1.70957,3.72623,3.063225,3.843975,3.93940875,5.354495238095239,4.56893,5.6575,2.74113,0.5400233333333334,3.2455233333333333,3.607315,0.5193223076923077,3.77098,3.75566,4.06245,3.67743,2.6296633333333332,4.783655,3.16965,3.01215,2.178005,3.984355,1.6225580000000002,3.13541,3.922025,0.5520346153846154,3.461805,3.868825,3.18338,3.77706,4.47122,2.75718,3.965055,0.636143,2.8909933333333337,3.634901111111111,4.38439,3.4656333333333333,2.54525,3.391766666666667,2.54525,4.789265,2.98013,2.9490133333333333,1.4728516666666664,2.888833333333333,1.7813125,4.218035,2.6968833333333335,4.851213333333334,2.996923333333333,2.728953333333333,2.86265,2.421005357142857,2.421005357142857,2.421005357142857,2.12039,1.0794949999999999,4.518195,2.34585,1.6959799999999998,3.9916666666666667,2.2013000000000003,2.908326666666667,3.93593,5.39995,3.233805,1.74812,1.16847,4.20776,1.973074,2.20358,2.85052,3.50659,2.08705,3.490795,2.713155,1.6443180000000002,4.93481,4.24552,4.25721,3.767535,0.7604344444444444,2.43967,4.3197,7.65238,3.724675,3.11511,3.150305,3.52238,3.827515,1.63228,2.336365,4.419415,1.98982,4.45594,3.35447,5.36655,8.31044,4.0344,3.27799,2.932155,4.865425,3.844175,3.1359775,3.1359775,3.80887,3.87765,4.150425,4.18184,4.24496,4.499845,3.99876,1.1078775,4.337475,4.3512,5.1278,8.175464999999999,5.0324,3.751558,1.91633,1.3145783333333334,2.340955,5.13145,3.96937,5.14111,2.1291333333333333,4.270195,5.05165,5.1025,4.825515,2.9427966666666667,3.306385,3.83321,4.843065,4.25086,3.741465,6.524573333333333,4.76246,2.339933333333333,5.01265,3.895795,3.91515,3.54912,4.22256,0.7550654545454546,3.870415,4.203115,1.167007142857143,1.2132720000000001,4.78598,4.496865,8.5991575,4.937635,4.223155,6.04415,3.049535,2.3912633333333333,4.79217,1.8987475,1.8987475,2.62488,1.6608833333333333,3.0390208333333333,3.2179133333333336,2.009675,4.107171363636363,1.4296133333333334,2.22606,5.3569724999999995,3.3396233333333334,3.676695,3.11614,3.93775,4.166735,3.0250966666666668,1.0265822222222223,4.08271,3.0596599999999996,3.884315,4.251975,3.7109216666666667,5.6165,4.50521,4.54639,3.581325,5.2181,6.3823,4.71615,3.41667,3.17498,2.212035,2.212035,3.88207,3.77989,2.6185566666666666,2.8015933333333334,1.9505354545454545,2.38116,1.4531933333333333,1.4531933333333333,4.24468,3.51407,2.15035,3.56257,2.74962,2.00334,1.1572425,1.0328911111111112,2.678565,0.4232415789473684,0.8314488888888889,2.804605,3.58092,0.43434727272727275,3.81369,1.8807420000000001,5.3424,3.45886,7.1756899999999995,4.352215,5.330736666666667,4.610125,5.18195,4.110325,1.90402,1.760098,3.908455,3.050155,3.71513,1.2991533333333334,3.20516,4.219185,2.806705,2.684635,2.46112,4.09643,3.383745,3.134455,3.89165,3.666675,3.478935,3.249675,1.065222857142857,1.71272,2.30962,2.72305,4.41451,7.74359,0.9514440000000001,1.5168933333333332,1.5168933333333332,1.7747319999999998,3.90792,2.84278,3.196265,5.262825,2.9516833333333334,1.15738,1.15738,1.15738,3.055815,2.9233985,5.5154,3.3605,4.34429,3.430965,3.72531,3.001915,3.2085725,3.761275,4.1602525,2.7277500000000003,1.29925,2.772255,2.7277500000000003,3.52941,1.3615433333333333,2.01042,1.90452,5.5663599999999995,2.80273,5.89911,5.5663599999999995,3.09638,1.75894,1.75894,2.74195,5.43606,1.75894,2.223315,6.05496,2.238235,2.981495,4.97633,3.717065,4.11316,1.9162433333333333,3.346005,3.9046,1.9826766666666666,2.48839,4.27185,1.9162433333333333,2.72346,2.0047,5.98962,2.550315,1.14981,2.572455,3.3778,3.1298838333333334,1.921835,1.8756305,4.39841,1.8208313333333335,1.72772,3.37886,2.142675,3.362885,3.97371,2.3869666666666665,3.039385,2.47087,7.06338,2.36078,3.12077,3.23172,3.23172,8.845986666666667,1.0290766666666666,3.069755,2.572835,3.519635,2.30713,1.2142466666666667,1.2142466666666667,3.1461,2.176295,7.33679,2.25573,3.37571,3.321525,6.20705,2.812375,2.41974,6.14925,6.14925,2.563225,1.5319625,1.2787325,1.2787325,1.5319625,2.09629,1.4973966666666667,1.1953099999999999,1.6472499999999999,2.1417966666666666,3.780615,1.870965,3.22081,3.08379,2.74333,2.954045,2.975235,2.692205,3.4362608333333333,3.4362608333333333,6.57076,2.35116,3.012075,3.229585,3.51478,2.34584,2.806765,2.360195,5.5660025,1.7692225,1.6196343333333334,1.3762510000000001,2.3397793333333334,5.24994,3.9534793333333336,3.2973733333333333,3.45874,1.8148825,1.8148825,1.8148825,4.82251,2.406175,1.1953099999999999,3.2727,3.5377,1.362545,5.2845625,3.2681575,6.46585,4.15234,1.899065,3.427345,2.23808,2.181305,3.52815,5.2122,3.88825,1.820665,2.40024,3.60083,3.311075,5.54384,2.031075,3.557515,2.75752,6.45375,4.3086,2.04199,2.48385,5.40468,5.27385,5.15681,6.71706,1.095,1.095,4.168561,4.168561,0.868356,4.88248,3.59342,5.58581,4.19688,4.70701,2.396395,4.614138333333333,4.614138333333333,2.831465,3.4341,3.82862,1.13598,4.62511,3.146475,3.03656,2.78299,4.85322,2.541175,2.460615,3.50497,2.668465,3.21527,5.49484,2.45149,1.659005,3.858575,6.18573,5.38335,4.71125,2.630275,3.35648,2.76218,5.09746,2.991125,3.66581,2.525265,6.46308,4.72753,2.206875,2.629155,2.507335,5.41639,2.447615,2.73321,2.7564,7.42844,5.35436,3.552535,2.01117,2.285925,6.73103,3.31874,2.95547,5.36131,3.344065,3.101045,2.571635,3.02187,1.9837733333333334,1.84309,2.1281133333333333,1.8256466666666666,1.7661499999999999,2.0715866666666667,1.560885,2.2029733333333334,1.942655,1.9837733333333334,3.95793,4.37793,2.16661,1.655385,1.655385,4.08938,4.08938,2.823123333333333,2.823123333333333,2.83697,1.924115,1.834865,3.34669,2.2325075,2.2325075,2.37286,2.37286,2.97224,1.901655,5.08229,2.37693,3.048655,2.1259633333333334,2.1259633333333334,1.87633,4.0588,6.38031,1.3615433333333333,4.75511,2.3869666666666665,2.53966,4.57457,3.117685,1.95383,2.2988,7.50699,2.31236,6.38081,3.408845,3.497425,3.197725,2.52992,6.39196,3.00292,2.609905,2.576841153846154,2.819115,6.14087,3.52442,1.548466,1.548466,3.56683,4.63095,5.30882,5.50836,2.721755,2.887445,1.651235,3.156735,1.59281,2.601155,1.71344,0.7849039999999999,0.7849039999999999,0.7849039999999999,2.1505658333333333,5.1722133333333336,2.1505658333333333,2.22571,3.571505,1.737635,2.218245,4.32594,3.47839,5.79603,1.6524166666666666,5.38943,1.6524166666666666,1.6524166666666666,2.23141,2.244395,2.312755,6.09856,2.312755,2.51891,4.35899,2.391475,1.567835,2.84128,2.992103333333333,3.2572441666666667,3.15409,3.429915,1.26949,3.79626,0.7035781818181818,4.03214,4.289350000000001,2.8126175,2.8126175,0.66418,3.9924,2.6173333333333333,5.62415,4.980015,4.095395,5.43455,3.84265,4.113805,5.1288,4.213075,4.221735,3.523595,3.95555,4.803085,4.88778,3.26246,3.417605,3.79827,2.3116733333333332,1.207428,4.48929,3.30841,3.014335,1.1492314285714287,3.987345,3.958405,6.4517775,1.2457275,5.3233,3.90023,1.961,1.91697,3.320915,3.60245,1.74897,1.548466,3.75141,4.691625,2.729225,4.72094,2.999645,1.14191,3.07076,1.168692857142857,3.098176666666667,1.9369399999999999,3.0173466666666666,1.9009125,2.6055066666666664,3.99111,3.00601,4.59671,3.24754,2.1980275,4.90215,4.15612,3.17767,5.41045,4.03493,2.6887600000000003,5.9256,4.69169,3.2031433333333332,2.674166666666667,3.039555,2.882623333333333,3.040713333333333,2.66748,4.967805,4.45137,3.679415,2.50401,2.6995533333333337,2.47627,2.3882499999999998,2.20956,2.36414,2.2517,2.1621125,1.35254,2.9581796666666667,1.172225,1.72312,1.66856,2.6875,1.65393,1.8351,3.787575,3.68152,1.97679,4.151975,3.608785,6.52366,2.0666533333333335,1.588634,6.81675,3.3113,4.57047,4.13883,3.881905,2.04749,3.645965,2.4073025,3.05074,4.1713,0.7237933333333334,3.87134,2.23868,0.73129,4.794585,4.665545,4.024615,1.7684135714285714,4.693455,5.6582,2.693766666666667,2.8932366666666667,2.4865633333333332,2.1574233333333335,0.6168549999999999,3.0677466666666664,3.0364,4.88678,2.43441,2.071785,3.42852,1.0885875,1.9100283333333334,1.9100283333333334,2.84439,1.9100283333333334,3.929535,2.713345,4.054495,4.423515,5.74205,13.312568333333333,3.0178133333333332,4.651865,2.815385,4.7368,3.13855,6.5020175,2.66267,4.89213,4.684635,3.847265,1.1674116666666667,4.609745,3.0635366666666664,2.5026333333333333,0.9537277777777778,2.1883125,3.34835,6.915795,4.08057,2.7482166666666665,4.579765,3.2078233333333332,4.15221,4.33467,4.722245,2.818695,2.899696666666667,4.02616,5.49385,2.646075,4.101595,1.850275,1.850275,3.187645,4.806465,1.21458375,3.9142919999999997,2.22334,4.755565,2.619403333333333,2.58238,3.2033400000000003,2.46379,0.7144071428571428,3.50924,2.83498,5.2381,4.325165,0.234365,4.881415,4.451575,3.786415,6.665955,2.902343333333333,2.86557,2.11675,2.8586733333333334,2.5398733333333334,1.2987033333333333,2.7609266666666668,2.5651033333333335,1.3014383333333333,3.2517266666666664,2.8545533333333335,2.40002,2.8293666666666666,1.23642,4.172865,2.641115,5.06875,3.87455,3.59428,1.6584966666666665,2.5033433333333335,1.3559,2.03683,1.3559,4.891405,3.309646666666667,1.462454,2.37954,4.438625,3.872695,3.11593,3.893605,0.3512305,1.3581108333333334,3.963995,4.29972,6.3195,1.8692225,2.6608033333333334,3.0608566666666666,2.14731,2.90183,3.736325,4.463775,2.562725,1.9270100000000001,2.8349766666666665,2.57395,2.67615,4.27165,2.375465,4.52883,3.7184683333333335,6.07735,7.6496200000000005,0.7753233333333333,0.8173400000000001,4.06023,6.407855,2.04,3.5468,1.65811,1.65811,3.522275,0.45104,3.571,3.489225,2.75347,3.71495,3.341805,2.58465,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,2.77926,2.84976,3.8358016666666668,3.080906666666667,4.28559,5.727070416666667,2.79969,2.0991133333333334,0.9691766666666667,3.28891,0.73229875,5.3788108333333335,3.2796975,2.116935,0.73229875,2.572275,2.69548,0.91598,3.90492875,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,4.26585,1.6265,4.39325,4.37985,1.7293220000000002,4.617445,4.151335,5.304,4.369641666666666,3.4254800000000003,3.42443,4.2873,1.88182,5.575965,4.04073,0.7416,1.3886,1.2929114285714287,3.098903333333333,3.098903333333333,2.800831666666667,3.707215,3.978455,3.532715,3.71552,2.9372733333333336,2.038536666666667,0.5392857142857143,4.263835,3.066935,2.68562,4.453645,3.351955,3.0486924999999996,4.789415,4.35667,6.3799,4.254105,4.700215,5.65525,4.28783,1.22607,3.074835,5.2738933333333335,32.929666191919196,1.205805,4.04369,2.87319,4.654885,3.94355,5.1787,5.1663,0.42884333333333335,5.1597,4.38206,1.98687,2.23361,3.563835,1.6190525,2.545005,2.419475,1.7392375,2.807205,2.4466733333333335,2.928775,2.68009,0.5928276923076923,3.21358,3.860635,0.3656036842105263,2.4369733333333334,2.78642,3.33622,3.96878,1.786265,4.22394,4.0014,3.347775,3.464035,3.06837,3.996785,3.018195,3.8975,2.16373,5.2738933333333335,3.517795,3.225635,2.9011,1.723132,3.718175,3.571215,6.870398333333334,3.57855,4.70962,6.3477475000000005,5.352636,2.324365,4.422915,5.57876,7.61848,2.4893199999999998,2.57128,4.61102,5.70343,4.132135,3.25471,5.347395,2.7247,1.70836,2.250885,60.26819726178191,5.16605,4.093275,2.57235,0.844832,2.78117,2.8590633333333333,3.27528,0.7393122222222223,4.300515,0.78725,7.589364999999999,1.973074,3.2750533333333336,1.7597,2.818165,2.62794,3.0869866666666668,2.48998,2.3154333333333335,3.3261966666666667,1.6423033333333334,5.083215833333333,3.8086333333333333,1.2745825,2.6670166666666666,1.4351366666666667,1.49025,7.51394,6.0171,3.366725,3.650195,5.21261,1.420157142857143,3.429066666666667,3.43166,1.69184,5.4011,3.65121,3.7844,1.553755,2.8762616666666667,3.4844000000000004,4.14593,5.7853,4.379035,4.43197,2.4232825,3.88483,4.422266666666666,2.9972366666666663,1.377676,4.151375,3.268823333333333,4.27153,5.0445,4.061395,3.714245,4.495165,4.39744,4.296945,4.39475,3.88006,3.1778399999999998,3.7354,4.13943,3.171935,4.12205,3.79444,1.5213125,1.5213125,4.18049,4.929975,4.88299,3.70941,4.656945,3.329493333333333,2.796475,4.603925,5.31345,0.7300636363636364,5.53905,6.4535,5.5483,5.60725,1.005,2.983135,0.977955,0.977955,0.977955,3.75591,3.3316933333333334,2.40132,3.4859000000000004,1.01485,5.0434,5.55345,3.00489,1.6048175,1.97012,3.89024,3.807715,3.759645,3.3303700000000003,6.6956,3.707375,2.59828,4.795875,6.7928,2.55279,4.21204,3.717625,3.27906,5.21025,3.95014,4.96728,5.763,3.11471,3.38728,1.8857466666666667,1.8857466666666667,0.7280954545454545,8.57962,2.14489,5.672,5.5474,4.12947,5.3774,3.88955,2.9812600000000002,4.42654,7.6460275,5.576073333333333,2.4891099999999997,4.354865,0.9407080000000001,3.856115,1.93912,0.8968044444444444,1.2293800000000001,2.532646666666667,2.891106666666667,2.902286666666667,1.027972857142857,2.57218,3.0367466666666663,0.8738566666666666,2.6269466666666665,3.0637000000000003,1.6945720000000002,1.7545600000000001,2.854886666666667,2.94829,2.8053966666666668,2.3969633333333333,1.718686,5.22395,3.958695,3.75957,4.222075,5.15775,3.39193,4.268635,6.5194,5.1257,4.19508,3.83932,9.771045,8.579495000000001,2.9630566666666667,3.61608,1.8170566666666668,3.88253,3.299135,4.69614,1.0356750000000001,3.616365,3.17473,1.5983716666666667,3.805785,2.84776,4.30143,2.893535,3.99256,6.586,7.52949,3.698865,1.4905683333333333,1.4905683333333333,1.4905683333333333,4.619905,1.204235,1.4347375,0.4443433333333333,4.2170075,3.009653333333333,3.53787,0.9787229999999999,1.13897125,2.909485,4.339815,3.806065,16.384856202380952,4.23382,4.62104,5.7543175,2.61361,3.377435,2.81349,0.9245677777777777,1.3320925,3.598815,3.57592,4.25003,4.51916,4.468255,3.7469,2.749798444444445,3.44837,5.29345,0.54719,4.492645,2.3212725,3.68154,4.56046,3.4617,2.2312600000000002,3.9236033333333333,1.7248599999999998,3.62881,5.98625,3.0191466666666664,3.49291,4.1703,3.983805,4.36015,3.90994,3.18199,4.27209,4.694415,4.879495,3.544655,4.25179,3.812775,1.0791328571428571,1.4536075,5.799322166666666,6.09705,3.96961,5.04175,2.43133,2.77164,2.9739799999999996,5.718906666666667,1.8268425,2.259775,2.8658533333333334,2.856783333333333,3.3281066666666668,4.51341,3.05918,4.959325,1.1611675,4.758615,0.9594333333333332,4.223095,3.485225,1.78762,4.38507,0.9578566666666668,4.86093,5.55605,4.823105,3.884095,3.8288133333333336,3.84708,3.0050866666666667,4.861965,5.89245,2.8314635,4.172305,2.50901,2.577495,2.06252,2.745835,3.29171,4.79975,1.0655525,4.728210000000001,1.521605,3.411175,1.64501,1.0655525,0.19714297297297298,3.54545,3.08704,2.30383125,2.03255,2.756235,1.10385,3.988675,3.56104,4.888335,2.664146666666667,6.22095,6.68957,2.7004866666666665,3.2886966666666666,2.66323,0.788817,2.440053333333333,5.9453,4.23998,5.51075,4.73223,2.1237566666666665,1.3921166666666667,3.898645,1.66284,2.1611475,1.675935,2.89655,1.7916275,1.9961575,2.10186,1.998205,1.7292575,1.313772857142857,1.4064225,1.9528425,1.8062875,2.1174925,2.27434,0.527848,1.063258,2.69241,3.1820633333333332,1.969395,1.7939,1.6677,3.24974,2.33174,2.852055,3.486235,6.2463,3.911415,2.89404,4.2138,1.587138970588235,3.6147950000000004,23.39503,4.59189,5.75425,4.126995,2.0460333333333334,3.736665,4.75291,2.21172,5.1586,3.2500633333333333,0.78492625,3.668095,4.39677,3.798145,4.129515,1.5715199999999998,1.9682266666666666,2.303523333333333,2.13126,1.4652142857142858,3.25395,5.0761,4.31095,3.258425,3.911725,4.79337,3.32101,4.613455,1.2039225,3.05751,4.10862,4.746575,1.7998239999999999,3.2583633333333335,1.7675525,1.7675525,3.626665,4.77217,2.9990066666666664,2.93899,3.793585,3.958305,6.534705000000001,4.70645,2.32764,1.3320925,2.74372,4.436355,3.10862,2.5453714285714284,2.5453714285714284,3.16803,5.01535,3.640195,5.055578888888889,2.4735,3.4138735555555555,0.5997122222222222,0.5997122222222222,0.5997122222222222,3.164915,3.849615,3.7897375,5.7342,2.184305,4.529985,4.32898,5.03905,3.130605,5.61015,2.46379,1.3154114285714285,4.047165,3.92872,0.46864,4.266266666666667,4.82541,1.4087416666666668,5.06175,5.02895,4.69551,4.44192,3.813355,2.961085,4.4066,1.712052,4.55969,1.4430249999999998,4.32824,5.8886,1.14322,3.05844,6.863785,3.53115,3.07856,2.1098575,3.612205,5.63735,2.9618,7.34984,4.111175,2.2822666666666667,3.0502966666666667,2.73175,2.3339133333333333,2.75454,1.93464,4.363425,0.57186,2.02772,2.02772,3.17077,3.68351,2.302635,2.888325,4.072395,5.26445,4.224535,1.4602533333333334,4.511444494047619,4.24269,4.6117,3.426885,3.6649683333333334,3.2643969999999998,0.40057133333333333,2.8038857142857143,0.998625,0.40057133333333333,4.347925,0.86956,3.893705,3.962715,6.5068470000000005,2.18494,1.118505,1.123594,2.28441,2.98888,1.5445866666666666,2.526266666666667,3.28923,3.550095,2.18534,2.22236,4.1601,2.87133,4.16535,5.8596,3.478455,5.1786,6.636838333333333,4.75242,3.648355,4.529435,3.84266,4.12708,4.985305,5.27015,5.3642,2.34329,0.9292166666666666,3.51088,3.89107,4.22884,4.146315,4.21552,5.12485,2.5223,2.48167,2.9933333333333336,2.144476666666667,1.9915166666666666,2.9518866666666668,3.0191733333333333,2.252936666666667,3.557975,4.267795,4.147755,5.29525,2.4194366666666665,3.4598999999999998,2.909975,0.7283785714285714,3.886015,3.16173,4.450415,3.0818433333333335,5.14178,3.047545,4.36277,3.82711,0.5534476923076923,0.537035,4.304475,2.786352,3.12664,4.224935,3.70231,1.74196,5.2414,4.037375,2.4505033333333333,2.6231066666666667,2.1729475,2.0834154166666665,3.4684666666666666,2.9854066666666665,3.0184166666666665,3.0083466666666667,3.568,2.7048,2.970413333333333,3.4802,4.3278075000000005,0.546311875,0.546311875,0.546311875,3.1003382083333335,3.5088333333333335,3.723133333333333,2.5720066666666668,2.8232433333333335,1.1078775,2.8530866666666665,2.91901,1.6339,2.699123333333333,2.4631933333333333,0.9761211111111111,2.809753333333333,4.7722,9.817946833333334,1.4685138333333334,0.6173029999999999,3.79242,0.6173029999999999,0.6173029999999999,0.6173029999999999,0.6173029999999999,2.1960375,3.913392,3.98687,5.0,5.9063,2.8373233333333334,2.6920266666666666,3.041765,3.2366200000000003,4.609635,1.00357,2.2158333333333333,3.0870533333333334,2.5013033333333334,2.8967899999999998,3.31855,2.2170033333333334,2.646045,1.1828444444444444,5.3673,2.436235,3.194485,0.8967875,0.662748,0.662748,0.9657670434782609,1.8625545434782609,0.9657670434782609,0.9657670434782609,0.35070304347826087,0.35070304347826087,0.9657670434782609,1.47016,2.40489,3.04222,2.9073966666666666,2.66469,2.6286166666666664,3.1848266666666665,2.8414300000000003,4.523805,3.637545,1.913945,2.3057233333333333,1.7587775,0.1838657768777614,0.1838657768777614,0.1838657768777614,0.1838657768777614,2.5545266666666664,2.47578,0.914504,5.23545,0.7394618181818182,1.688418,4.630790833333333,5.0959,4.12019,3.016555,4.398135,3.26272,1.79791,1.2234125,3.907055,4.5586,6.58045,2.329475,1.4226766666666668,2.0112799999999997,2.903786666666667,1.48888,2.7385333333333333,2.811776666666667,3.1655800000000003,4.33207,3.756465,3.0545,4.726685,2.3934466666666667,3.985765,5.06285,3.61744,4.173905,4.738935,5.329806666666666,4.548415833333333,2.883391714285714,4.89271,4.17317,6.5135,4.432035,4.537,2.20056,3.143715,4.22332,4.86548,4.53769,3.970735,3.8429,4.03845,3.91248,2.4930166666666667,5.27025,3.66486,7.6589925,6.0641,5.79325,4.840445,1.4228757142857142,0.916654,0.6144192307692308,1.747392,4.815785,5.44765,4.013885,1.550722,3.774985,3.202075,4.91276,5.14695,6.158685,4.099995,3.284145,1.591138,5.4576325,4.099445,3.195965,1.7576725,0.97861875,3.880515,3.373515,3.7908325,3.72549,2.10515,4.340245,1.7458233333333333,3.01435,2.533105,4.32678,5.7143,4.817745,2.26175,1.542285,5.6441,2.9487566666666667,8.77004,2.8573,5.22515,5.9673,4.5939,5.26925,3.54643,4.93888,2.02853,3.792765,4.869013,2.4244475,4.24935,4.508005,7.1065249999999995,4.93579,2.9857266666666664,3.97675,4.026835,2.87133,3.527175,5.19125,5.5848,2.385895,2.8731666666666666,3.2284666666666664,2.385455,2.535215,4.370665,5.848,5.0404,4.56343,4.7276,4.046495,4.57624,0.6356,3.060373333333333,1.150167142857143,30.566932733954452,2.78654,4.514875,3.348925,4.35466,1.548824,2.5023166666666667,3.121300238095238,1.5786902380952381,1.5786902380952381,1.5786902380952381,1.5786902380952381,1.54261,3.61004,0.32063444444444444,7.741546111111111,0.32063444444444444,4.21874,4.84164,2.1266625,5.2842,2.839075,4.0603126666666665,2.371986666666667,2.5300233333333333,2.77509,2.2955200000000002,0.6163023076923076,2.65939,0.7245316666666667,3.280056666666667,2.081726666666667,2.448972,1.2191716666666668,2.448972,6.087,7.95076,4.56581,4.428855,5.74345,6.20405,7.367841666666667,3.02644,1.4429225,1.4429225,2.3486433333333334,4.96811,3.65362,4.384105,6.071645,3.825695,2.604035,3.85052,3.547345,3.5693,2.30264,0.736792,2.2661,3.53728,4.118945,5.233342222222222,2.0659275,3.62279,1.12639,3.25633,1.2187839999999999,3.2705333333333333,2.94169,3.363766666666667,3.2807633333333333,2.807916666666667,4.946625,0.6911715384615384,3.54939,3.628,2.6893466666666668,2.428706666666667,4.1528075,3.377133333333333,2.02034,4.44750625,3.65664,5.13905,3.955955,3.73383,5.62155,4.954195,2.117316666666667,5.6489,2.373015333333333,1.7434566666666667,3.1295,2.3289233333333335,2.6466333333333334,2.535235,1.8624466666666668,3.3591075,4.159,3.184495,2.377819666666667,2.377819666666667,2.56969,3.894415,4.21315,0.5833481818181818,3.370295,3.17213,8.95128,0.8218818181818182,4.495715,3.06641,5.33355,3.441855,3.852395,2.33053,3.773915,3.03864,5.2497,2.6330358333333335,3.84014,2.678433333333333,3.83182,2.56429,3.696725,3.83158,4.02266,5.015187,3.318805,2.05409,5.3035,2.55902,4.43231,4.813625,4.48835,4.5052,3.994835,2.987935,2.1829300000000003,2.6921666666666666,2.545733333333333,2.71025,3.10448,2.689437619047619,4.701228333333333,2.7223900000000003,2.30803,6.479020833333333,4.84398625,3.6977525,3.0546233333333332,3.6578,4.13503,3.598325,1.93095,3.5402,4.707795,4.702475,1.3277066666666666,3.776285,2.6531033333333336,6.647119999999999,4.783355,8.21524,4.187835,4.20061,2.134315,4.226565,5.713005000000001,8.11709,3.41183,5.25858,3.56818,3.43317,4.015435,1.7357140000000002,4.214222,1.403265,3.58744,4.756485,3.4019666666666666,0.8220000000000001,9.009177333333334,1.1384777777777777,1.92564,2.5100433333333334,1.87171,3.3618333333333332,1.3894316666666666,3.6875,3.59477,2.3263833333333332,4.314805,1.1217233333333332,3.598585,1.4097566666666665,2.7715593333333333,3.956615,5.0129,1.5715375,5.890964583333334,2.236772666666667,8.18991,4.522315,2.743995,4.092055,3.33655,1.1737866666666665,7.70682,3.06851,3.4929,2.522525,4.18921,2.14221,3.017585,2.229155,4.158805,1.349415,5.87865,2.789385,4.253525,0.8266730000000001,2.037017333333333,3.946415,4.92577,5.0987975,1.242154,1.242154,5.92325,3.653155,6.16115,3.898345,3.574355,8.825965,4.391285,5.4929,4.07787,2.46938,2.1802723888888886,0.3986635,0.20034,0.7192022222222222,1.0624066666666665,0.6168699999999999,0.20034,1.432491,0.5188622222222222,1.4610701666666666,2.1516932222222223,1.91438,2.2232225,2.233636666666667,4.94852,6.2913533333333325,4.480805,4.901865,4.222775,4.988185,1.3128566666666666,4.92058,3.98072,5.58625,4.920355,4.7739,5.64405,5.5379,5.48985,1.1679950000000001,1.1657771428571428,1.827908,5.934958,1.279398,5.16485,4.60412,6.646326666666667,4.85813,5.3355,4.43479,4.622225,2.417565,5.12535,5.1553,4.619186666666667,4.88314,5.8560324999999995,5.69175,3.66522625,4.264145,3.626666666666667,0.9821,3.5452666666666666,4.337,1.0848975,3.672266666666667,4.61617,4.56362,4.92672,2.439175,3.236275,2.8279599999999996,4.42494,2.07982,3.90139,1.2845199999999999,3.09739,3.76661,3.66908,4.496015,3.3585425000000004,0.5507425,5.9908,1.00222875,3.647195,2.7318533333333335,3.8355,2.03793,3.80829,3.7905746153846156,3.0903566666666666,4.40428,15.496762761904762,5.224766666666667,2.1044725,8.49244,1.5756725,3.898305,2.90673,2.93407,1.8153766666666666,0.2134804347826087,2.841283333333333,4.52508,1.7350619999999999,2.2660833333333334,3.2178233333333335,1.9109575,2.2945966666666666,1.4951857142857143,3.422005,4.732945,4.763075,2.98794,0.4570171428571429,2.48305,4.520365,2.82416,3.69675,4.29693,4.18418,5.5997,0.47080058823529414,2.54238,2.54238,5.1424,4.973445,4.856235,2.630275,3.311913333333333,2.8396500000000002,5.36675,3.55137,5.444685555555555,4.588335,4.369055,4.61211,2.5544,1.813984,4.36969,3.85213,3.991965,3.877005,1.78945,4.759895,4.41468,3.908365,4.457605,3.88496,3.847875,0.6132906666666667,2.90378,0.5419233333333333,3.0515566666666665,3.109015,4.041495,17.304200476190477,3.37667,3.90599,2.23808,0.91887,2.134376666666667,2.6015566666666667,1.56007,2.42468,2.533635,4.55419,2.29858,3.930875,3.51197,2.1036075,3.99333,2.863466666666667,4.595635,4.904375,5.4696,1.65292,1.798665,2.28495,5.1787,4.832555,1.0998444444444444,5.08055,3.54309,5.54325,4.539325,1.8423100000000001,4.550265,3.46187,3.335065,3.25565,3.86647,3.0446000000000004,0.66953375,7.552848333333333,1.430678,0.20113722222222222,0.20113722222222222,0.20113722222222222,4.77111,3.847365,2.7583933333333337,4.218885,3.058575,4.367735,4.33415,3.8304733333333334,8.302493333333333,4.21813,6.675908333333333,0.84553,0.733615,2.2810975,4.376205,4.23412,2.32586,5.35295,5.30855,3.481585,3.54515,4.25207,2.13532,5.0335,4.4616685,2.3652666666666664,2.784993333333333,3.069126666666667,2.761305,6.02805,3.88206,0.6265957142857143,3.55883,3.2158,4.138375,4.89231,4.989315,2.81115,5.37015,3.53431,13.515934999999999,4.50708,6.837077083333333,2.448446666666667,6.323043999999999,4.059465,3.739375,1.90244,2.3117183333333333,9.53538,2.272623333333333,4.202166666666667,4.1607666666666665,3.7806333333333337,3.3548666666666667,2.814026666666667,2.10544,2.2156,2.956103333333333,1.77653,3.8242666666666665,2.3795533333333334,2.66684,3.22139,3.4124,2.47612,2.47612,2.467346666666667,3.4901666666666666,3.24902,2.1125233333333333,3.1105466666666666,4.2177999999999995,2.6755133333333334,2.79589,3.7868,2.17315,1.983815,3.8569,2.8248766666666665,1.504956,3.826866666666667,2.200196666666667,2.4074866666666668,2.8895766666666667,2.17975,3.3580666666666663,5.802691666666667,2.38224,3.7033666666666663,1.8933666666666669,10.473037,1.9795666666666667,1.97535,2.10272,0.9732322222222223,1.622412,4.44919,2.816774,2.816774,1.607336,1.487205,3.472986666666667,3.6186516666666666,2.205506666666667,1.42913,1.69222,4.5691706666666665,3.6587,4.0446333333333335,8.30893,2.9425071428571425,2.583763333333333,3.2932101863354033,4.181966666666667,1.983815,3.2391799999999997,2.68566,3.4906,3.3440691666666664,0.9220225,3.2581895,2.72273,2.917256666666667,3.987685,3.108696666666667,0.6787981818181819,1.832699761904762,5.01345,2.4235344999999997,3.3287833333333334,1.5420083333333334,1.5420083333333334,2.0914675,3.878781666666667,0.904917,2.2541875,4.47397,4.47397,0.6295952380952381,5.497242,3.324765,3.769345,4.61861,1.210942857142857,3.295806666666667,3.5288,4.978118333333333,5.480251333333333,2.29226,0.628094,2.4861933333333335,2.5634833333333336,2.983696,2.2274266666666667,2.347933333333333,2.7696066666666668,2.3460525,2.5204133333333334,0.7457427272727273,4.697685,4.816494571428572,1.3160833333333333,1.7750285714285714,5.38075,2.12342,1.69956,3.952265,1.451708,3.490925,2.592125,3.4910333333333337,8.988825,3.9674791666666667,4.43172,4.95622,2.3946569090909087,0.786151,1.8106380000000002,6.967516666666667,1.8567166666666666,4.204085,3.8783,3.49547,21.033926583333333,3.2100666666666666,1.3917599999999999,1.01797125,3.115553333333333,1.4458666666666666,4.103698,5.0808,3.419274,3.363933333333333,1.7334566666666669,1.4369183333333335,2.7476299999999996,0.564435,3.473966666666667,3.733966666666667,3.1012299999999997,2.5298833333333333,2.4440566666666665,2.8234333333333335,1.9578233333333335,2.7324300000000004,1.498362,3.759133333333333,1.4103933333333334,3.902425,3.902215,2.70186,5.29495,3.225905,4.03302,4.833095,4.329785,3.0716866666666665,2.65945,2.302636666666667,1.0337242857142857,1.0337242857142857,1.0337242857142857,2.3038375,3.4593000000000003,2.55822,2.4719966666666666,2.2154599999999998,1.96638,3.884825,4.84249,3.766225,6.799185,3.049315,2.385545,1.9461525,0.9284416666666666,2.46975,3.946645,2.5242299999999998,2.7757566666666666,2.4690166666666666,2.452033333333333,2.6350233333333333,2.7528566666666667,2.6569966666666667,2.62786,2.2415866666666666,3.3590666666666666,2.104223333333333,2.1763775,1.65038,1.5828475,3.0197633333333336,3.023953333333333,1.978605,4.01667,4.937335,2.842693333333333,2.4100526923076924,5.1514516666666665,3.892605,4.499545,5.54825,4.224155,4.419375,5.98712,1.2421225,4.220975,2.77592,5.1444,4.97543,4.028895,3.269555,2.12733,7.62578,1.98248,0.8094741666666666,7.37066,5.75624,5.352294523809523,4.17122,2.8277865,1.7037225,4.91075,3.98785,4.164045,4.93621,2.46532,3.851595,4.138925,1.7587775,3.668325,2.876575,1.3309283333333333,4.52255,0.5886411764705882,4.086946666666666,3.171845,4.61256,3.17349,1.69367,3.227665,1.991195,1.4486,2.766996666666667,3.24063,3.1750833333333333,7.057063717948718,1.3620325,6.333317916666667,9.17352,5.97149,3.003765,1.3488442857142857,2.9644833333333334,1.3488442857142857,2.9375699999999996,2.0988633333333335,0.3383264705882353,1.1906577205882352,0.3383264705882353,0.3383264705882353,0.3383264705882353,1.1906577205882352,1.1906577205882352,0.3383264705882353,0.85233125,3.843695,3.60828,3.298935,3.43333,3.530315,4.18043,2.6409993333333333,1.68584,6.5596033333333335,3.0641499999999997,4.08067,2.5494600000000003,1.052190909090909,1.1487,4.435925,3.56242,1.138677777777778,1.432504,0.7129881818181818,2.8764115670995674,4.207295,4.944085,3.338366666666667,5.359875833333334,0.5337638461538462,3.94483,2.54758875,2.8312833333333334,2.4833666666666665,3.4467666666666665,2.52947,2.788733333333333,2.66701,3.054375,3.6935,4.647225,4.557,2.0949999999999998,4.904625,4.207765,2.8836,3.96728,3.393365,0.35003266666666666,4.86372,3.566465,3.00522,2.804806,4.465525,3.896295,1.93954,3.324415,3.948475,8.555765000000001,5.00235,5.38085,4.739865,4.00807,0.97835,2.19016,2.212205,1.481445,1.8374166666666667,4.275805,5.3689,4.141895,4.77625,3.3303700000000003,2.606275,0.9469433333333334,4.04813,1.2612400000000001,1.1836533333333332,3.408895,3.735385,4.60457,1.282325,2.5831500000000003,8.575073333333334,3.247716666666667,2.9618358333333337,0.8690825,3.54022,11.8382,3.527435,4.1566,3.314735,2.838905,4.61664,5.0863,2.03912,4.087505,0.5246715384615385,4.69897,2.210865,1.65856,1.65856,3.5353999999999997,3.98473,1.46796,3.768805,1.213037142857143,3.508985,2.7550325,3.3825333333333334,4.98065,3.73777,3.9711626666666664,2.602975,2.930482666666667,2.930482666666667,10.623,0.681454,2.973315,2.94666,2.1433075,1.99543,0.8968371428571429,1.4933675,1.0179314285714285,2.13809,4.393255,2.501945,4.2321575,1.9830833333333333,4.33899,3.823315,1.7413999999999998,2.0762675,1.0988499999999999,6.172338833333334,1.983375,2.1746,1.673906,1.743184,1.01797125,2.2499112500000003,3.547275,2.018686666666667,3.1174133333333334,2.5978933333333334,2.7126366666666666,1.8747,3.1026233333333333,2.584416666666667,1.7087700000000001,1.8440466666666666,2.493203333333333,2.4725800000000002,2.3931066666666667,1.1682733333333333,2.53807,2.0424933333333333,2.0838566666666667,0.3230942105263158,0.42395166666666667,2.39065,2.21008,3.108065,3.0715433333333335,2.847435,4.763455,5.47655,4.48537,4.63773,4.28213,3.988985,2.85545,3.85999,0.71641,0.07328386363636363,6.94205,0.07328386363636363,3.690405,3.03006,5.2568,3.690625,6.23865,4.51876,2.0211033333333335,2.4659066666666667,1.0073466666666666,5.0533,6.39015,3.0580166666666666,5.35255,1.82225,3.343935,1.9386480434782607,3.0143566666666666,3.1723933333333334,4.07979,4.976683333333334,3.37495,2.293833333333333,2.293833333333333,4.13069,7.71537,3.59979,2.102673333333333,2.3875433333333334,4.01084,2.92558,4.93204,3.282145,0.9257544444444444,4.181605,2.24378,2.55289,4.302085,1.0930366666666667,2.4200166666666667,3.99907,3.229035,4.43956,3.010675,2.791715,3.84934,3.94635,4.171825,4.906815,4.112185,3.2125619444444444,3.780505,2.8025233333333333,2.4390300000000003,2.34964,3.9471000000000003,4.261375,2.8805,4.860955833333334,3.96421,3.644715,5.21465,4.328685,3.412855,1.4906380000000001,1.4006025,4.204115,3.3834999999999997,1.5983166666666666,2.8087766666666667,3.34755,2.9619999999999997,4.091247777777777,2.9055366666666664,2.3726691666666664,12.67467825,2.02643,1.7747579999999998,4.46255,0.99651,3.1806633333333334,3.561125,4.683715,3.03271,1.2229,2.2453499999999997,2.664146666666667,1.47597,4.29737,0.959525,0.959525,3.7107566666666667,1.6322133333333333,2.078543333333333,1.77134,3.085075,5.63085,2.11416,2.587195,3.3560499999999998,2.7509866666666665,2.800876666666667,2.03138,6.38175,5.55025,3.76081,0.6518692307692308,3.711635,3.44189,1.0518272727272728,5.50965,3.2863966666666666,8.436596666666667,4.837045,4.58573,3.67993,1.471875,3.347165,4.707165,4.256145,3.88788,3.47833,4.281575,3.289075,3.5201333333333333,3.5201333333333333,4.155165,2.7467508333333335,3.82941,1.631885,5.365221666666667,5.064281666666666,1.4087416666666668,4.56948,1.01355,5.6115,3.968565,5.01835,4.64222,3.84042,2.63594,2.506825,4.37811,4.18203,5.01235,3.86377,1.8993275,1.431274,4.330735,2.2033066666666667,5.3245,3.3406,3.65081,6.813615,3.83269,4.18633,5.0042,3.69941,4.52125,8.15249,4.02963,2.93785,8.55933,3.62369,0.5708814285714287,2.058561343101343,4.29129,0.5995240000000001,4.68639,4.040205,4.696155,4.42507,3.306105,3.611775,4.510675,4.67843,2.589125,0.6913628571428572,4.54562,4.344025,4.446065,4.268085,2.7945966666666666,4.3237,3.59102,0.613624,3.352905,3.92692,2.5158,3.206246666666667,3.87331,2.1193616666666664,5.58855,5.31255,3.64725,3.1511266666666664,5.538296666666667,5.538296666666667,8.370466666666667,2.11394,0.91808,0.91808,23.207643333333333,2.577925,7.534295,0.3500775,1.4337900000000001,2.8902533333333333,0.9175090000000001,3.805505,3.811115,1.9115825,1.9115825,3.74962,4.92306,3.503555,2.879115833333333,2.879115833333333,3.63475,4.08415,3.926455,3.4949999999999997,2.0562866666666664,2.617495833333334,3.949719,2.02698,3.63975,2.769683333333333,2.775835714285714,2.775835714285714,3.24536,0.8625355555555555,2.5651533333333334,1.59225,3.2214166666666664,2.8313166666666665,2.64207,2.31001,4.27791,2.46327,2.76397,5.000163,1.248846,2.257915,3.148355,2.6206333333333336,4.20272,5.739970603174604,1.2878333333333334,3.6367,2.40245,5.1696,6.77341,1.512085,4.84503,4.853573333333333,2.9101808571428567,4.5684,1.0282557142857143,1.7998239999999999,3.03779,3.9154076190476195,1.2660883333333333,2.354165,1.74363,1.761748,2.407355,3.589676,5.1944935,1.129055,1.3018814285714286,2.83323,12.467685,4.413978333333333,2.7408,0.9689571428571429,2.455390238095238,0.9164885714285714,3.1469133333333335,4.357146666666666,5.20435,3.4662,5.79295,1.35588,3.6461666666666663,4.01445,2.7973466666666664,3.7941455555555557,1.8020433333333334,1.0981922222222222,2.5389500000000003,2.5503066666666667,6.603403333333333,2.714166,2.4243633333333334,0.741468,4.665533333333333,3.5856666666666666,1.18679,5.717380833333333,1.9388475,2.235043333333333,5.30275,1.2159555555555555,2.7954633333333336,0.9774,2.9342400000000004,4.384395,2.8880266666666667,2.84531,2.279053333333333,2.3218166666666664,4.32372,4.64626,5.03715,1.7477625,4.59457,3.82571,4.202353333333333,3.31778,2.652623333333333,3.9747286666666666,0.9966419999999999,2.732412857142857,4.440855,2.69535,4.007132916666667,1.3534125,2.8054566666666667,1.943336,1.943336,6.932548333333333,3.0861133333333335,5.053340833333333,3.3047933333333335,1.7069466666666668,2.595255238095238,4.40676,5.6715333333333335,8.252908333333334,4.527417333333333,2.66856275,1.4546566666666667,1.8526836666666666,4.1511733333333325,3.678145,1.475402,1.98658,2.363371785714286,1.211735,3.0199933333333333,18.471939,2.8752166666666668,2.8419366666666668,2.667783333333333,2.91703,2.2392333333333334,1.9432366666666667,2.9466866666666665,3.5752,2.4184266666666665,2.6427566666666666,5.560694,2.3764133333333333,4.929811714285714,2.8517397142857144,2.862991714285714,1.4453666666666667,3.6455911111111106,2.1079425,3.98736,4.969115,3.78821,3.001101666666667,3.1859066666666664,2.2089633333333336,3.320883333333333,3.523766666666667,3.5439666666666665,3.2624099999999996,0.82681,5.2423,2.417635,3.0011033333333335,2.7447355555555553,1.8515425,2.0975691666666667,2.0975691666666667,3.2245874999999997,1.8709258333333332,4.647765,4.096645,3.35158,4.14195,4.389515,4.479365,4.479365,3.8102,2.88219,4.19502,2.770255,1.667182,2.2683566666666666,4.420255,3.910505,2.67625,3.25379,5.3994,3.533333333333333,6.296745797619048,3.163755,0.76334,0.76334,3.1617,4.789855,3.885465,3.430168,2.4503033333333333,1.9284966666666667,1.5673966666666665,2.8540166666666664,5.757477,1.3834166666666665,4.025195,3.6879666666666666,4.07579,5.12655,4.93944,4.711093791666666,3.1721066666666666,2.2759775,4.049005,3.944135,2.0922575,1.1108959999999999,3.78556,2.756225,6.052791666666667,3.2965666666666666,2.737545,3.361775,3.73933,3.61571,4.474045,2.88798,4.60082,3.711515,4.33643,3.789945,3.570195,3.80715,3.93319,2.8532333333333333,4.14988,3.0462,5.08055,0.6273244444444445,2.37354,1.7323375,1.937385,1.86957,2.6977100000000003,2.6374666666666666,1.6728033333333334,4.40332,6.0743,1.8926933333333331,3.789785,4.35391,2.4022875,5.9275850000000005,4.1008708333333335,4.17878,4.905415,7.153238333333333,2.0604366666666665,2.72297,1.7612666666666668,2.624006666666667,1.850105,1.823185,4.06229,3.72137,5.45755,0.9920277777777778,3.086865,4.11379,2.2502875,5.05385,3.725145,2.59383,3.7701333333333333,3.29415,2.067945,1.8272274999999998,2.630925,3.212375,3.3809,2.0540275,2.4892457142857145,2.4892457142857145,3.5313,3.461075,20.082436607142856,1.00522,5.29246,1.74286,1.9412,3.460615,3.88621,1.7724425,3.793255,4.64973,1.3168783333333334,1.3168783333333334,1.3223166666666668,1.76915,2.247123333333333,3.1793266666666664,4.494941666666666,3.031775,3.4628666666666668,0.45970578947368423,3.343545789473684,2.11587,2.362645,4.6588125,3.43114,3.98313,3.7334,4.43212,4.388865,2.108935,3.436865,5.70343,2.3463,3.64379,5.1594,2.432795,4.845335,6.02385,1.3515957142857142,2.049,3.3897333333333335,0.6824328571428572,3.1000833333333335,3.154995,4.771005,5.05375,2.8789002777777775,7.637333333333333,2.907633333333333,2.6125433333333334,0.42384,4.43379,5.244920952380952,2.957575238095238,5.57455,3.86779,2.538159777777778,1.723914,5.17946875,4.264045,4.091355,2.790475,1.923405,3.351945,4.164499999999999,2.9419166666666663,1.968575,4.067421666666667,5.809705,2.784855,4.00477,3.62126,4.00295,1.4898285714285715,1.4898285714285715,3.1795033333333333,2.845053333333333,4.419735,4.66853,6.4955,3.34033,2.751075,2.1795375,1.4267466666666666,1.309637142857143,4.779655,5.378415,4.9661,6.0927,4.26336,6.659615,3.39319,2.806563333333333,3.8529220000000004,2.0587666666666666,3.03576125,1.5732620000000002,4.44568,2.381816666666667,3.827535,4.989825,4.17983,2.7430033333333337,2.9487566666666667,1.3247885714285714,2.353175,3.6689666666666665,1.7851675,0.576415625,3.0720533333333333,2.5485866666666666,2.252936666666667,2.0143366666666664,1.8077075,1.506012,0.6705154545454546,0.6705154545454546,3.5001333333333338,1.5187,2.4639175,3.089315,5.18785,4.28975,5.81765,4.119455,4.231585,2.1452356666666663,1.28602,2.625695,4.965815,0.99188,3.21556,2.955335,2.99798,2.37057,4.05535,2.715965,2.05742,1.0389771428571428,2.90046,9.216705000000001,3.162765,1.472186607142857,4.07557,2.973305,2.74649,3.68074,3.029995,1.8289433333333334,1.0998275,3.878625,2.580680833333333,2.26316,1.7141633333333333,2.384,2.28312,2.484793333333333,2.83885375,1.3228333333333333,1.86639,1.084905,6.17484,5.6649,5.73175,4.07814,4.25437,2.954413333333333,1.6325751282051284,4.66119,5.0533,2.832005,5.04495,2.133605,4.608285,0.9516922222222222,4.092115,3.79115,1.9182325,8.03095,3.675445,1.87957,1.9030025,1.8223125,2.5083,3.2891,1.1680513636363639,2.6329866666666666,5.73355,3.321485,3.984555,5.69955,5.363,5.5227,0.82993875,4.07008,4.367125,4.16574,4.78341,4.079141666666667,4.54447,4.71319,2.821245,1.6650083333333334,1.6650083333333334,4.98809,5.349748333333333,2.734805,2.632426666666667,3.902455,4.4425,1.4938179999999999,4.26615,5.07535,3.553185,4.04541,2.9743666666666666,2.786986666666667,4.954435,2.3323956249999998,10.453010968820395,1.98196,0.78392625,2.6119566666666665,1.71558,2.55075,2.09979,1.835228,2.6362366666666666,4.80609,5.38585,2.82357,1.5634566666666665,6.0741716666666665,1.5183,2.89744,0.5088809523809524,4.087983333333334,5.5536,3.324175,4.429265,11.493385,5.1213,2.9205366666666666,3.3358333333333334,4.213095,2.9998233333333335,4.468145,0.80572125,1.0264416666666667,0.7881218181818181,5.6642,4.120925,1.72535,4.641379333333333,4.399635,6.6475,4.85679,4.786265,4.48046,6.11305,4.041065,5.17685,2.892085,1.193806,3.69995,5.49255,2.899125,4.099815,2.74554,2.15766,1.2519475,5.06855,4.00204,1.2513625,3.404033333333333,2.8117733333333335,2.6401066666666666,2.5164233333333335,2.4795133333333332,3.1788366666666668,0.7207972727272728,2.378406666666667,2.710983333333333,2.65629,1.9822866666666668,2.9159,2.25313,1.4269733333333334,2.263885,1.88657,2.0537775,3.3328333333333333,2.56644,0.598649,2.8535266666666668,3.16706,4.599565,2.3736866666666665,3.57272,5.19125,5.0836,3.48431,3.80657,1.2929114285714287,3.30833,2.4626683333333332,4.263866666666667,2.63610625,4.153395,5.156,4.698565,4.14076,4.1285,1.127672,1.127672,2.2208886538461536,1.6104125,4.090105,2.6685765,2.6685765,4.90683,6.17085,3.053525,1.2007233333333334,1.5675142857142856,5.75195,3.656475,2.2372566666666667,3.282695,2.923205,3.4838,2.2372566666666667,4.586955,3.10004,2.882785833333333,3.062395,2.007935,3.201925,6.51585,3.13329,3.278055,4.217605,6.4652,6.53805,6.210925,6.210925,5.1913,4.76601,0.51033,4.815845,4.12884,3.015945,2.77228,8.048975,2.6495666666666664,3.708645,3.82541,2.3607400000000003,4.491325,2.12651,3.4924275000000002,3.131213333333333,3.4133999999999998,2.5385966666666664,1.3505420000000001,1.3505420000000001,3.74714,3.77291,4.695385,1.63715,1.558742,46.72539196969697,2.5797266666666667,0.8020636363636363,2.9805966666666666,1.7180625,3.1267766666666668,2.6763933333333334,3.0555800000000004,3.209515,2.6385666666666667,1.98751,0.9882625,4.232415,3.35079,3.601965,3.901725,5.13655,4.96079,5.0439,5.25305,5.12845,4.69102,5.40585,6.213875,4.89706,5.3066,2.115685,3.749075,6.6219,5.07165,3.052765,4.06209,3.42529,2.52273,3.8909,4.46052,2.938556666666667,3.8498666666666668,1.666554,4.212195,1.374846,3.39935,3.95861,3.73222,6.37985,4.012275,1.9150175,3.84788,3.867275,4.166245,0.8892625,2.93419,2.800355,4.466897619047619,1.1928525,4.472775,1.308405,5.64975,0.7063511111111112,3.806662666666667,9.783925,4.350335,3.373715,3.126235,1.8877666666666666,4.154275,5.348,3.0317066666666665,4.421255,9.023611666666667,3.5166,1.9440266666666668,2.8432366666666664,2.7246433333333333,2.7398066666666665,2.7724090833333332,2.7047566666666665,2.6015833333333336,3.01888,2.6977533333333334,3.04822,3.53048,2.3525133333333335,1.6647299999999998,4.831884666666667,4.053933333333333,2.59636,4.8968066666666665,2.7264233333333334,0.9727075,2.04485,2.9367066666666664,5.174472857142858,2.9422,1.9867455555555555,1.9867455555555555,1.6235425,1.442025,2.21744,1.9591699999999999,5.5684325,4.414045,2.0290425,3.0414366666666663,3.6098666666666666,2.076875,0.6386733333333333,2.6078633333333334,1.9637275,0.5490376923076923,4.03967,2.51495,2.531,3.72319,3.567133833333333,2.445396666666667,1.6406599999999998,1.132125,2.196995,3.61404,3.783565,4.12821,2.850186666666667,3.974515,3.766115,1.1427727272727273,9.13617,2.901295,3.374515,1.2852125,2.8803133333333335,2.39626,2.39626,2.39626,5.00155,5.2953,1.575795,4.9223,1.4511720000000001,5.225216666666666,1.457986,3.939865,4.336975,4.15427,4.95594,4.282515,1.955615,8.415564999999999,3.596715,4.849345,3.623835,4.2268,3.2757199999999997,3.0976433333333335,3.849975,2.5163866666666665,4.534772142857143,4.399101666666667,1.6083025,4.039615,1.6083025,3.48146,4.523868333333334,5.02225,4.523868333333334,1.9046566666666667,5.56905,4.48339,4.284695,2.5599266666666667,2.744956666666667,4.10458,3.251925,5.16345,0.49463785714285713,2.9076233333333334,2.952446666666667,4.7677175,4.58501,2.31476,4.7505,6.14256,3.302875,2.63736,2.857895,2.16192,3.761355,3.91912,4.582415,2.58815,3.793545,0.8613709999999999,5.69235,3.217975,4.16207,2.2241666666666666,3.1251833333333336,2.2906733333333333,2.78077,2.8266333333333336,2.7977399999999997,2.768005,2.56795,2.56795,4.214470833333333,2.836015,4.72045,11.3903475,0.9406844444444444,4.23292,2.50318,2.43358,2.6817666666666664,1.4347375,7.4274268333333335,3.3873333333333338,3.551205,3.5684775,2.2314233333333333,3.8287333333333335,4.022339583333333,1.81627,0.43055166666666667,1.42671,1.5113375,4.649465,3.022425,3.390495,3.7493775000000005,3.4552300000000002,2.2533000000000003,5.21435,4.4435,3.910955,4.659305,2.196465,3.64924,2.6212066666666667,5.469636666666666,3.30692,5.1168,4.066175,4.05582,4.25825,2.12601,3.92297,3.58625,3.1313066666666667,3.495005,2.910505,3.28383,3.608055,4.44468,2.58801,4.328085,1.3536299999999999,3.658915,2.927585,4.08185,4.193705,3.77653,4.897615,2.581015,4.1501,5.1521,4.145075,3.1904466666666664,2.177995,3.048165,2.53088,0.929075,4.45268,2.089195,3.5802,2.856275,4.09399,3.49079,2.96159,3.039475,4.00189,4.600328666666667,3.946655,2.95242,1.67954,3.412935,2.410275,0.8321244444444444,3.83456,8.803485,3.502425,3.68882,3.695595,4.901955,3.786725,2.300535,4.136895,3.968195,3.299245,3.40522,3.802855,0.66651625,1.2581414285714287,6.3690500000000005,1.782605,2.749265,4.762316,2.439175,2.317435,2.75724,7.27008,2.72688,3.92679,3.871815,0.7998933333333333,3.51664,2.65451,3.904365,3.59252,6.189558333333333,0.684832,3.41066,9.91294,3.29724,1.0815755555555555,4.953690416666667,4.69065,5.17375,3.98996,4.45703,3.272885,2.56319,7.08278,0.778879,3.566865,4.052885,3.395595,3.986425,2.32737,4.26416,1.7039666666666669,3.94368,3.82516,3.993735,1.681255,4.50399,4.546685,2.31303,2.241165,1.97085,1.18679,4.17982,3.419274,1.266194,7.630800000000001,5.88405,4.49716,3.90335,3.551655,4.38085,1.4419428571428572,4.173875,4.02426,5.18075,3.863615,2.5387866666666667,6.4474235042735035,0.9172125,0.9172125,2.6069333333333335,0.9557542857142857,4.250775,3.18004,1.034175,1.7888666666666666,0.417025,6.179857500000001,1.03352,2.763965,3.620855,4.055105,3.628035,4.15501,5.42995,5.7474225,3.16057,3.272255,2.689195,3.709895,4.232665,4.226255,4.072095,3.602435,5.94765,4.31207,4.373755,5.889138,3.72068,3.2374725,2.264195,3.2374725,7.048826,40.62847141125541,3.77415,3.618895,2.94557,4.02175,4.339455,3.450435,3.585735,3.777305,4.48073,4.056335,1.5786683333333331,4.409155,2.7229,4.510225,5.16365,4.720335,2.49524,4.41676,3.995355,3.272085,1.445566,0.6392692307692307,1.7188919999999999,3.6039999999999996,2.840726666666667,1.2922875,2.8189266666666666,2.6224366666666667,2.5979366666666666,3.7416666666666667,2.944013333333333,1.340128,2.67145,3.7531666666666665,1.8800867245817248,2.86405,3.2211000000000003,2.752876666666667,2.6208466666666665,3.4384,1.1875333333333333,3.611435,4.120485,1.2717333333333334,1.2717333333333334,1.2717333333333334,1.2717333333333334,2.914647575757576,2.150916666666667,2.567725,3.273185,5.0501,4.82484,3.877485,4.285075,5.4769,4.588385,2.388535,5.9188,3.923565,3.078075,3.595285,2.90497,4.051915,4.022655,0.6888692307692307,1.489342857142857,1.6210433333333334,4.181255,3.622565,4.660905,3.988065,6.0563400000000005,2.2613666666666665,4.221055,1.476815,3.526445,5.1027,1.66589,4.93334,0.7346841666666667,4.06912,1.090568,1.1349025,3.691755,3.904635,4.928815,4.80389,6.0162,4.113905,1.490332,3.89015,1.5438225,3.509505,2.937615,2.538159777777778,2.0076975,3.44965,1.24254,3.47211,4.85651,3.023843333333333,5.7585,118.30549660894661,0.49547444444444444,4.68572,2.33823,4.790935,4.134735,4.045885,1.5654375,0.30026714285714284,2.86564,3.844395,5.0434,3.395225,3.80256,4.35154,4.33285,4.202565,8.056243333333333,0.7247733333333334,2.657485,0.9820175,10.305857999999999,3.07702,3.62846,0.8918900000000001,2.28516,2.698525,2.11883,3.24066,3.206996666666667,2.4380266666666666,4.4303525,2.9067966666666667,2.29704,2.3419833333333333,4.35603,3.168805,3.04982,3.73208,3.963655,3.402925,2.3944933333333336,4.00409,4.14254,3.176025,0.8944455555555556,2.62186,4.4303525,4.683585,5.3058,4.170005,3.234525,1.857385,11.05357,3.48667,2.776385,4.224615,4.85853,0.5370713333333333,0.5370713333333333,3.8996125,3.8996125,3.171795,3.7036333333333338,1.8241088636363636,0.5665533333333334,2.98919,4.30394,4.018935,3.67486,4.020215,5.46896,4.555955,2.085385,4.6498,2.1367975,2.869275,3.966895833333333,1.870795,2.147965,0.5032599999999999,1.237466,1.237466,1.89576,4.44377,4.69411,4.72942,6.528336,2.73482,3.00067,1.905545,2.10429,3.953293333333333,3.560875,4.549003333333333,2.246055,4.549003333333333,4.185385,3.624745,5.8679,4.15068,2.4553166666666666,2.01654,2.4591600000000002,1.4063525,1.41063,1.5241575,1.7288375,1.6274025,1.8809,3.860666666666667,4.425825,2.356815,6.6931,2.7492633333333334,4.298615,3.3458,4.178085,3.0165900000000003,2.7907666666666664,6.0882000000000005,3.375633333333333,4.578439333333333,2.96063,1.3996075,2.52831,2.578253333333333,2.2520266666666666,6.2029,4.29082,4.42874,12.071441625988047,0.7514991666666666,1.97442925,2.10389,1.476094,1.2323542857142857,2.4626175,2.331815,2.4246525,2.382,0.7321646153846154,1.90685,0.5280736842105264,4.46069,1.905765,3.541745,4.104935,2.4607125,5.4366775,3.7093,6.41664,4.042645,2.808225,3.10912,4.54323,4.93295,2.5953599047619047,4.37693,2.0317425,2.0317425,4.72974,3.6232,3.972115,4.17884,3.1774066666666667,4.108895,4.70718,5.4378,4.589325,4.648185,4.608615,4.308895,2.50872,4.832445,1.223045,4.562815,4.642815,2.5542866666666666,2.1078233333333336,4.061115,1.5033016666666665,5.0932,1.84835,5.775283876811594,3.807495,3.79773,1.5476,3.3880841666666663,3.3880841666666663,12.362155000000001,4.23108,3.82928,1.11070875,4.233923,2.1686925,1.5154825,2.2546175,1.6771275,1.9670925,1.67003,3.14402,5.58235,1.825245,4.773305,4.5548425,5.40335,2.0787175,2.729145,3.121475,4.27668,5.4151,3.96748,7.0124216666666666,2.9934999999999996,2.4728033333333332,0.35590777777777777,3.76458,4.54321,3.284466666666667,5.9916366666666665,2.5422566666666664,2.9682766666666667,1.2446183333333334,1.4736833333333335,0.576415625,1.42671,2.948625,1.4657566666666666,1.3977783333333333,0.6182525,1.307104,4.61507,2.3950975,0.5682738461538461,1.5256016666666667,1.6831875,1.518014,1.2333133333333333,1.9707225,1.4736833333333335,2.4244475,1.307104,1.307104,0.5682738461538461,1.520842857142857,2.4935400000000003,1.2660883333333333,2.4945475,0.5682738461538461,2.5414,2.4935400000000003,1.1891583333333333,1.1891583333333333,1.1891583333333333,1.82213,1.21243625,0.5682738461538461,1.1404299999999998,1.0722775,0.9732322222222223,1.7584019999999998,2.66345,0.8220000000000001,1.9341075,1.523,0.5682738461538461,1.804532,1.4736833333333335,1.9768833333333333,1.7601166666666668,0.86449,1.9768833333333333,1.0380222222222222,2.31303,2.406415,2.4073025,1.0722775,2.07762,1.24254,1.24254,0.87397,0.87397,0.87397,1.2446183333333334,1.4736833333333335,1.523,1.5256016666666667,0.8714614285714285,1.7601166666666668,1.598144,1.504956,2.01248,1.2446183333333334,2.7408,12.4138325,0.6182525,2.64012,1.6911833333333333,2.3162,0.9164885714285714,0.9164885714285714,0.5682738461538461,1.0328911111111112,1.506012,1.523,1.8906420000000002,1.7601166666666668,1.0998444444444444,1.0998444444444444,1.688418,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,2.8124000000000002,1.0380222222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.3718427272727273,52.93202622655123,1.50495,1.4514366666666667,1.523,1.6911833333333333,0.8714614285714285,0.6033470588235295,0.741468,0.741468,0.741468,0.741468,4.257000000000001,15.714677083333333,3.3099600000000002,0.579760909090909,1.469552,1.469552,1.469552,0.579760909090909,2.948625,0.5682738461538461,1.804532,1.3977783333333333,2.45132,1.0380222222222222,2.31476,1.0380222222222222,1.389338,1.389338,2.099483333333333,2.099483333333333,0.5682738461538461,1.9745439999999999,1.9745439999999999,0.9245363636363636,0.20113722222222222,2.948625,1.3187366666666667,2.40245,0.579760909090909,0.579760909090909,0.579760909090909,0.579760909090909,0.579760909090909,1.6911833333333333,0.3718427272727273,1.0380222222222222,2.015745,2.015745,2.506825,2.7318533333333335,0.6295952380952381,0.6295952380952381,3.3608666666666664,4.116733333333333,1.210942857142857,3.303796666666667,0.948211,2.584975,2.11394,1.0930366666666667,2.8118366666666668,1.860285,3.1511266666666664,5.1203,2.276125,1.1607777777777777,4.279895,4.201935,2.57847,1.7105679999999999,2.2704532307692307,4.65649,1.8535422222222222,2.6691000000000003,3.0719966666666667,3.0215,2.578185,6.102543333333333,3.970925,0.20113722222222222,2.9781766666666667,4.76755,3.41242,4.60702,4.337215,4.24204,2.69729,1.813864,4.144945,4.62151,4.53834,4.63633,5.0482,3.12839,0.7201841666666667,6.8749199999999995,1.5801133333333333,2.8552020000000002,4.495565,2.621446666666667,2.621446666666667,0.853330909090909,2.0076975,4.39587,3.083195,5.01245,3.97093,4.58624,5.0533,1.0755385714285715,4.81702,5.57705,6.433236249999999,2.316943333333333,4.48026,3.756455,4.03452,3.70348,3.677975,4.334225,6.1111474999999995,5.2782,4.241956666666667,3.659595,4.493336666666667,7.025387,1.8822475,2.3104912820512817,2.89005,1.80489,2.7191266666666665,1.8533,5.43055,2.98179,6.03105,1.8235299999999999,4.74337,4.0596,3.69091,4.41925,3.889755,2.4794899999999997,2.7767700000000004,2.7202333333333333,2.595266666666667,2.57429,1.6939166666666667,2.82955,2.824643333333333,2.2657800000000003,2.2657800000000003,4.573755,2.9429700000000003,1.9931166666666666,2.9526233333333334,2.0367333333333333,2.493043333333333,3.06444,2.76323,3.2176333333333336,5.29095,3.67115,3.636405,3.1941699999999997,3.1941699999999997,3.974815,3.1573666666666664,3.65648,4.67818,3.922465,3.88467,3.405035,7.44823,1.9472625,2.11546,3.635945,3.00239,1.4679633333333333,1.4679633333333333,3.64683,1.90947,4.161159333333333,3.794675,3.63711,2.270433,2.0429048333333335,0.5890650000000001,3.22667,3.910315,1.80913,2.51166,4.14605,1.5296233333333333,4.34288,1.25118,0.39952928571428575,0.5446525,21.065430445436508,0.5446525,0.39952928571428575,0.6897757142857143,8.883055,2.6010833333333334,3.41573,4.000165,3.50598,2.6948,3.951545714285714,2.379725,2.38662,3.623605,3.30167,4.05254,4.31096,3.81789,2.37366,3.148095,3.363165,3.887105,3.10864,1.198728,1.198728,1.198728,1.198728,3.46142,2.949865,3.38169,1.9574999999999998,1.15041,2.42941,3.653605,3.79729,2.88643,3.01348,2.73058,2.7550325,3.998055,4.000395,1.1061783333333333,2.4437633333333335,1.1063,2.65843,1.6190033333333333,3.846,4.86266,2.5099066666666667,3.53769,3.89269,0.812416746031746,0.20473785714285714,0.20473785714285714,0.6076788888888889,0.20473785714285714,0.20473785714285714,0.20473785714285714,0.6076788888888889,4.4773,7.339536666666666,3.799895,0.5396025,3.718905,8.146855,3.460235,3.01226,1.1859866666666667,4.32297,5.0171,4.247715,4.80568,1.6702780000000002,4.564645,2.0688299999999997,2.4077313333333334,3.474405,5.2529,0.8100828571428572,0.8100828571428572,3.50212,2.8937566666666665,2.129285,3.91763,2.696285,6.6075,3.91515,6.42885,6.04375,5.6571,2.951175,1.81718,4.008945,3.477565,2.428175,3.8724,2.884545,1.8486125,1.223005,4.088445,3.62002,4.89231,6.10286,1.4456633333333333,4.19867,1.20293,2.575736666666667,3.32508,3.81279,0.3961742857142857,3.346995,4.06041,0.935678,2.507843333333333,7.571693333333334,3.363745,2.279515,5.568781,4.49079,3.77327,1.3506383333333334,5.56861,2.54137,3.06903,3.5884666666666667,2.21019,2.21019,5.863275,5.863275,3.654585714285714,3.654585714285714,9.1843,3.654585714285714,3.654585714285714,4.329052380952381,6.69025,3.29177,3.3694274999999996,3.108976666666667,4.39699,3.504335,3.176016666666667,3.1853866666666666,4.632665,3.2169899999999996,2.7507133333333336,3.3345333333333333,2.3914433333333336,2.74475,4.764035,7.39981,6.383895000000001,4.86147,3.80083,4.07205,6.827432,5.35165,4.365195,3.725875,4.33087,2.2478833333333332,2.01846,2.279255,5.2354,5.4996,4.6302275,4.17661,2.355163333333333,2.36633,6.72417,1.82213,2.5909033333333333,3.460266666666667,3.460266666666667,3.33079,5.18905,0.761835,3.5264333333333333,3.69121,2.80002,10.093775,4.01411,2.9482366666666664,2.3775366666666664,4.286315,5.8044,3.05713,5.2241,2.682646666666667,4.61107,2.9800328571428567,4.222555,5.21005,4.545015,0.9690383333333333,3.4003,0.9381875,2.5327366666666666,4.9571635441176465,8.548873333333333,2.4693833333333335,3.3458666666666663,6.496348333333334,1.591498,4.552165,5.3707,3.49806,3.8415,2.24811,4.479215,2.2919775,0.46174000000000004,4.93383,3.00681,3.32534,4.23113,4.67212,5.2457,6.4720125,4.389275,5.53595,7.277432500000001,55.043330000000005,4.481515,3.831975,4.8986,5.8253,4.156265,5.00155,4.02658,4.66263,1.9654725,3.768635,3.7336,4.63228,2.53987,5.02135,3.89395,1.6806640000000002,5.33415,6.1803,7.0911316666666675,5.44355,3.360055,4.33786,3.291545,3.282155,3.593465,4.50392,3.8979,6.95491,2.725225,1.117227142857143,2.48967625,0.61122,0.61122,3.146545,0.61122,2.5741728214285713,2.5741728214285713,3.2682348214285715,4.74230425,5.164886571428571,2.48967625,4.763178333333333,2.626380833333333,1.3816433333333331,5.5842,2.130225,6.647267333333334,5.453033333333334,10.525767992424242,2.9723633333333335,2.51859,0.21242757575757576,1.99974,1.9614233333333333,0.86122375,1.1996183333333332,2.6978566666666666,2.46596,2.42751,0.596222,26.906271666666665,1.9136425,0.7913538461538461,2.396993333333333,2.396993333333333,0.3865922222222222,1.622765,3.25467,1.331935,1.5035225,1.67479,4.03882,2.924125,2.0281733333333336,2.37223,1.1746683333333332,1.7795,1.43692,5.212877166666667,3.28622,6.706801666666666,2.39628,3.332183333333333,0.9070633333333333,2.57351,5.17005,6.215434999999999,3.0784966666666667,2.1533666666666664,5.224981666666666,1.880815,2.2627333333333333,4.1199325,1.0646366666666667,3.5257,2.3427466666666668,4.83677,4.469585,5.89835,2.92722,3.914575,3.914575,5.1288,2.00965,5.3441,2.7842533333333335,1.6392625,2.96268,2.98603,5.233869166666667,3.53173,2.7895833333333333,3.1856899999999997,3.3039,0.9304957142857143,5.38605,0.90254625,5.607096666666667,4.28269,7.474906,4.35525,4.40308,4.10541,8.281953333333334,4.13654,4.282615,1.1661199999999998,0.6990707142857142,4.41607,4.02863,2.11687,3.29107,3.262255,4.353425,2.136515,4.92395,2.4373366666666665,5.2926,4.900665,5.52635,4.2027,4.82745,2.76035,6.3683595,3.587695,4.48626,3.4005,4.396675,5.3136567857142865,0.5867935714285714,3.530366666666667,1.8082233333333333,0.5467866666666666,3.720125,2.2952,0.96720875,2.032705,5.62341,3.73648,2.36945,2.6875733333333334,2.7561966666666664,4.93046,3.99556,1.6305885714285715,4.020505,2.2201566666666666,3.6394333333333333,4.062905,5.14415,3.363783333333333,3.666,3.7611333333333334,1.998106,7.55641,4.70941,4.012955,5.2482,2.07308,4.242415,4.59814,3.697735,3.986375,10.90862,3.179865,4.6658816666666665,4.637475,4.541665,2.30456,4.28906,4.144915,4.622,3.3549666666666664,3.948135,1.4183375,2.99182,3.449375,3.71469,4.85491,1.8638400000000002,3.9792,3.2134733333333334,5.4297,3.2863466666666667,1.97811,4.170105,4.711125,1.06726125,3.008445,2.6344333333333334,4.397509333333334,1.663986,1.7754833333333335,1.2120675,3.228745,5.0522,5.64799,3.7775,2.829115,2.42579,1.996035,2.07256,1.6718866666666665,5.8771,2.91026,1.88173,0.8653461538461538,19.490972384615386,3.03329,3.1725849999999998,4.170958333333333,3.9825307692307694,1.3446266666666666,2.6730726666666667,2.9481338636363636,1.37985,1.9049866666666666,4.47484,4.45924,3.447048333333333,2.9511,5.4557,4.62413,6.831595,4.4757425,4.453275,3.682035,2.60988,4.33685,3.922525,3.6560333333333332,3.858925,1.74657,4.7362,8.36188,3.29908,2.715725,3.91989,0.54150625,3.0517766666666666,2.0841066666666666,2.2230075,4.412705,3.1027,5.0057,3.62922,2.988265,2.226825,1.78872,0.747744,1.4746233333333334,1.2443633333333333,3.866805,3.823235,4.504025,4.5573,7.57455,2.28438,1.4272880000000001,2.432186666666667,7.549675000000001,3.20614,2.899675,3.01877,4.09737,3.139195,3.57787,1.46583,4.694905,4.929225,4.25679,4.07052,3.434975,4.094555,4.32834,3.975705,4.33129,4.3496,2.251725,3.1467033333333334,3.444065,5.27925,2.89365,4.1663885,2.830955,2.95093,2.219543333333333,2.2149199999999998,2.12902,2.5156433333333332,2.5156433333333332,1.8730466666666665,2.8485300000000002,2.43517,2.3480266666666667,2.0356799999999997,4.21358,2.46049,2.7106266666666667,3.13885,1.7590199999999998,4.51399,2.720325,4.12354,2.4836833333333335,5.17105,4.996755,4.786993333333333,2.376425,2.283205,2.977895,2.202175,2.23908,2.79731,1.86953,2.505275,2.61425,7.038728,4.4021075,3.698385,0.6183025,4.30041,3.817935,3.963605,3.27255,3.973015,3.749348333333333,6.32465,4.38196,3.016435,2.7792657142857142,2.060947333333333,2.51096,1.573996,1.678798,1.521988,2.02948,1.5711625,1.1667416666666666,4.219939714285714,0.5682738461538461,0.5378033333333333,1.85858,1.5105616666666668,1.4059620000000002,1.409235,2.23887303030303,1.39858,1.708924,0.63777125,164.47856434597549,0.47757666666666665,2.10122,1.1781000000000001,1.1719875,2.11629,1.5986325,1.98213,2.28438,1.71972,6.5754,3.099675,3.306262380952381,1.5434466666666669,3.248225,1.2978166666666666,1.2978166666666666,5.5431525,0.48353,2.0105375,3.157016666666667,3.0040600000000004,0.8076763636363636,0.5266352941176471,1.1198206153846155,0.9735909090909091,2.1598575,3.84767,1.897515,2.141885,2.163726666666667,4.916270166666666,0.9697911111111112,4.19485,3.48557,3.61339,7.1105,1.6925533333333334,3.259675,2.574275,3.4410469999999997,2.31307,3.03763,2.08494,3.367155,4.56859,3.159325,7.88794,2.074845,2.77557,3.425485,1.560255,2.44623,2.40019,3.051925,1.68259,1.516645,2.331535,4.14059,5.052991666666666,2.687835,3.031205,1.56154,3.99351,3.792566666666667,3.9552666666666667,2.919095,24.636168887057384,2.672502,2.6113466666666665,3.0425833333333334,3.5379666666666663,3.16868,5.671506666666666,3.2039333333333335,2.309633333333333,3.3691999999999998,3.4605333333333337,2.2092733333333334,3.1938166666666667,3.3679333333333332,3.0309899999999996,1.7514833333333335,1.5663200000000002,0.567045,2.37629,1.9050525,0.2052575,2.1206133333333335,2.44954,0.2052575,0.2052575,2.1028575,0.2052575,0.2052575,0.2052575,0.2052575,2.7208466666666666,2.4672199999999997,0.570056923076923,3.0586496428571426,1.47419,1.904936,5.54995,4.3278075000000005,6.038305,1.987615,4.93588,1.990615,2.76868,1.2498414285714285,5.729963333333334,2.90048,5.9068000000000005,0.8211258333333333,1.328685,4.60985,4.651035,34.47566484074259,1.535798,1.3682266666666667,2.296866666666667,2.2306125,0.87397,2.3859033333333333,2.2913099999999997,2.7316800000000003,2.0770933333333335,2.50176,1.6969166666666666,2.59763,2.4333566666666666,2.2786666666666666,2.7642133333333336,2.49075,3.90069,3.4179666666666666,1.0677914285714285,3.86851,3.96729,19.80809888888889,2.7443166666666667,3.1384366666666668,2.5937766666666664,0.911054,3.184596,1.6745995555555555,3.184596,2.3897233333333334,2.47732,2.8145066666666665,1.60533,1.90943,3.91397,4.13701,4.849435,4.355715,1.6323940000000001,4.9047,1.648205,4.86868,4.02965519047619,4.143095,0.7401145454545456,2.0178275,2.1156475,2.788964,3.45292,1.04587375,3.534055,1.86347,1.8963,1.08547,1.08547,3.7802000000000002,2.553033333333333,4.20411,28.357255000000002,6.397935,1.8883999999999999,3.6543900000000002,0.39459933333333336,5.59811,5.74545,2.74353,3.4613,5.3895475,3.60105,1.10527625,4.49904,1.343906,2.62542,4.34668,4.28226,2.180695,3.21576,4.46239,2.604685,2.744513,4.18292,1.2967666666666666,2.419678333333333,3.701315,5.13565,2.4517533333333335,3.1130333333333335,2.8098533333333333,3.92631,4.06631,4.022245,4.1978,1.817015,6.02191,2.597445,1.772814,4.15408,6.15042,4.097495,3.261145,0.72861625,2.87952,3.62982,2.095615,4.748732333333333,2.897355,4.08786,2.8641433333333333,3.3678333333333335,2.629685,3.1730633333333333,2.882626666666667,3.06968,4.2069,5.4211,3.40686,1.894025,3.81018,4.242655,1.96891,2.203525,1.72797,3.8283833333333335,4.44571,4.952966666666667,4.111235,3.3087,3.727835,3.1315899999999997,1.3697533333333334,3.10799,2.962415,2.95543,4.58545,4.488285,3.98464,2.875055,1.9176,1.631105,1.499455,3.70735,2.513345,2.27489,3.48537,4.87545,1.61506,5.12985,1.3975585714285714,1.8916425,3.35852,2.87516,3.15369,3.82059,3.27019,1.656765,0.9953789473684211,3.166025,4.522623333333334,4.30073,8.673321666666666,2.7988233333333334,3.0248166666666667,1.6544166666666669,2.827453333333333,2.60473,1.09941,2.81125,2.5722133333333335,2.9896266666666667,3.8989,2.9375666666666667,6.80308,2.97053,0.7569463636363636,1.6948433333333333,3.49962,3.30634,3.43468,3.405333333333333,2.407699,3.121415,2.73025,1.9956342857142855,3.866145,2.500553888888889,3.456285,2.087223333333333,4.65539,4.63041,4.480885,3.263105,3.65285,0.8499966666666666,4.5384,2.57229,2.6214366666666664,4.196855,2.7626833333333334,2.5942066666666665,0.42505857142857145,0.42505857142857145,4.08646,3.821945,6.90815,3.136605,4.505,3.768775,3.24405,4.660125,3.93371,1.07684,3.70532,2.62873,3.9871991666666666,2.8761566666666667,3.0921491666666667,1.7830533333333334,3.1337235714285714,2.3221233333333333,2.8627800000000003,2.544966666666667,2.8134099999999997,1.9282233333333334,22.41921737549407,3.942065,3.836065,3.936835,3.35815,4.290855,3.64864,4.4898,3.937855,3.816945,3.37816,3.94777,2.3900266666666665,2.7244466666666667,2.76258,2.9839366666666667,2.693073333333333,4.243975,3.63214,4.992465,4.893925,3.896725,1.3276059999999998,1.413054,1.413054,4.601725,3.41657,2.6046733333333334,2.1619266666666666,2.7952600000000003,3.1712,3.463615,7.351196666666667,3.0819566666666667,3.4226666666666667,3.0114633333333334,5.2752,1.5766966666666666,5.6519925,2.451353333333333,2.914876666666667,1.755315,3.362775,2.79126,6.10604,3.48424,2.751725,4.24874,4.5198599999999995,1.5181725,2.54697,1.65219,7.1303365,4.064885,6.345079999999999,2.2175925,3.740595,3.81059,3.692855,5.009,3.4935666666666667,3.4935666666666667,2.12748,4.276875,4.988445,2.171615,6.598688571428571,1.54783,5.64465,8.183359,3.5521,3.9552580000000006,2.368326666666667,2.05699,0.4998625,4.446095,2.4784575,2.66245,3.5509315,2.264965,2.439973333333333,3.54978,5.70145,5.21335,5.4459,4.719625,4.19175,2.2596475,1.0203909090909091,2.91641,3.47779,2.8515566666666667,5.2704,4.04008,3.11959,2.58949,2.049,4.102085,1.03260375,5.19895,0.9780722222222222,5.4862,3.524905,4.532485,4.7763925,3.091645,3.31105,2.9299233333333334,2.28986,3.971425,2.882785,2.331835,3.503835,4.757055,5.585718333333333,4.4438,1.68695,3.552725,2.88197,5.595805,1.898435,1.898435,2.96562,2.2813433333333335,2.36115,2.6167833333333332,0.860121,6.4061,3.092165,2.049655,2.408265,2.785355,3.81473,2.74853,3.881385,5.061,5.11965,4.85262,6.05835,5.7617,1.3194625,3.625185,1.117875,2.4877075,4.3799,2.572955,3.134185,3.3186,4.786345,3.115705,0.4465073684210526,4.16728,4.21341,4.85488,3.407645,5.0966,5.4352,4.292145,4.227285,1.874815,4.494385,2.08463,4.372766666666666,4.372766666666666,6.5903,5.77385,5.5281,4.79687,2.692345,1.5766966666666666,3.99076,1.9374966666666669,1.6505166666666666,1.91105,4.149285,4.083485,4.2156,8.41774,1.5143483333333334,5.0645,1.2712116666666666,3.40322,6.0401,1.939325,4.64722,2.5048833333333334,4.604625,3.50238,4.84157,3.0580166666666666,4.20938,4.206685,5.721,4.216955,3.995095,3.83548,6.06335,3.99309,4.52698,3.739395,4.197885,7.008115,3.54769,7.24124,3.27301,5.64135,5.959154318181818,4.098815,3.60534,1.6620175,5.7295,3.894275,0.88399,8.28988,6.00125,5.0048,3.0644108333333335,4.898525,2.838665,1.72807,4.022345,1.1061783333333333,6.0689,2.629515,4.63964,5.44025,4.427645,3.86859,2.2127166666666667,4.562,5.0221,1.382285,6.828368333333334,3.04946,3.51254,5.0519,4.333965,2.25936,4.491855,3.713345,3.808855,2.6989466666666666,4.125645,3.80938,5.36725,4.62356,3.39627,1.91632,1.91632,7.532343333333333,1.41592,5.0258,4.33937,5.16165,3.198585,3.628995,5.05155,3.93484,0.9510299999999999,0.9510299999999999,0.9510299999999999,3.61194,3.34427,3.99845,4.517345777777778,2.750295,1.4415233333333333,4.025515,2.2079475,2.767005,3.982005,4.329555,2.1071375,2.1479600000000003,5.5211,3.70137,3.18038,4.462115,1.672775,2.009675,3.2268000000000003,2.62215,5.2259,1.440688,1.5563420000000001,0.99119375,3.76401,3.72311,2.6480333333333332,2.8610866666666666,5.27605,1.7589020000000002,2.06805,3.06865,1.6529,3.211345,3.660275,2.42457,5.504,5.47835,2.78426,4.17477,3.45054,3.517655,3.379785,3.84321,3.58562,6.8754,5.0685,2.0243100000000003,1.8058833333333333,3.614555,4.791105,4.18086,3.461755,2.8536033333333335,4.036245,5.98045,4.95323,2.734446666666667,5.2834,4.004585,3.275995,7.905222500000001,3.73,0.7135609090909091,3.84278,4.117153333333333,2.37762,4.10934,3.9586333333333332,5.80325,3.967095,3.359835,3.827425,4.357335,4.47254,4.57522,2.786315,3.80424,4.88471,3.795515,2.39511,3.010865,6.69757,5.1973,2.0091200000000002,3.20854,4.094423333333333,4.092115,4.93611,4.26087,2.5950633333333335,0.9108655555555555,4.635187272727273,6.0774824999999995,3.64322,4.789595,3.638835,6.392906666666667,3.641335,3.8452,2.824316666666667,3.849295,1.956775,3.424955,4.386555,2.5513605000000004,4.05541,5.7898,1.49109,4.607915,0.6152157142857143,5.96765,6.15315,5.80115,5.5682,1.5501533333333333,1.6555233333333332,4.50658,2.01954,5.50595,0.5211225,5.93895,3.2468,1.538688,6.325912499999999,6.52885,0.74603,1.440612,1.2164199999999998,1.2164199999999998,1.2164199999999998,2.2172066666666668,4.73237,3.706245,3.23422,3.87087,5.07395,3.650165,1.9659859999999998,4.169655,4.922945,0.29743170731707314,3.41116,4.740375,3.641415,38.19849461363636,6.100512500000001,4.933565,10.585551333333333,2.776225,4.11047,7.274828333333334,3.466465,4.990975,3.75277,3.809915,9.32009,3.79597,2.7547266666666665,2.56804,4.43286,4.29072,3.612575,4.28852,2.094585,4.484,3.90121,6.5999490000000005,3.978555,4.908895,2.311265,4.34241,0.51281625,1.4687733333333333,3.28171,5.9349,2.97667,1.2667116666666667,1.2667116666666667,2.994445,3.91046,3.95106,2.600285,1.67885,3.658465,4.32256,1.7112175,3.2682533333333335,1.502698,1.84453,4.15348,4.468225,1.9754225,4.546475,2.243095,2.14985,3.662855,3.711545,4.184925,3.91738,6.095455333333334,2.4048403333333335,3.798005,0.7181381818181818,0.68379,3.5574,2.38496,8.48059,3.3099600000000002,4.825045,1.6980975,4.343665,1.5012866666666669,3.78142,4.226305,2.5359766666666665,3.61514,4.57364,0.4164605,0.4164605,3.7594,3.19516,2.8279566666666667,3.551825,3.77042,5.49515,1.035,9.731580000000001,10.8905,1.9707225,4.71176,4.546525,4.72842,3.57368,2.42541,2.0106200000000003,2.0659275,10.13429,2.1152725,2.700086666666667,3.569824,4.341555,3.569824,2.02002,2.7541700000000002,2.6522866666666665,0.7053409090909091,5.359875833333334,2.754443333333333,2.592703333333333,3.98076,8.43861,10.20199,4.128875,4.00814,4.012085,6.44627,1.95887,1.3803,25.970685,3.89131,3.680665,0.9734069999999999,4.354875,4.18383,5.2737,4.440535,5.3868,5.5533866666666665,2.9977066666666663,2.202856666666667,0.6308470588235293,0.72646,4.603765,5.18185,1.3503100000000001,4.324593333333333,0.9253333333333332,3.6191666666666666,1.37378,4.21299,5.93545,1.98027,2.41852,2.003085,3.79512,2.90713,0.4102,3.57486,3.631815,2.5961666666666665,3.312385,4.86121,2.7257533333333335,4.225265,3.219465,5.1533,8.017206666666667,4.86786,8.56203,2.73585,2.556693333333333,4.531255,4.491185,4.32618,4.631915,3.800655,4.55135,1.14887875,3.2562929166666668,3.2624919285714284,0.657498,1.413054,1.413054,4.09853,6.871033333333333,0.8182692307692307,4.77773,0.87152,2.8275966666666665,2.238723333333333,2.481653863636364,6.1112544444444445,2.4123066666666664,1.1337777777777778,2.34748,1.23630125,1.9456566666666666,3.0698566666666665,3.08323,3.1897366666666667,2.4562,0.87152,4.43394,4.4562,5.4425,2.76522,3.86804,2.07488,5.9668,4.67123,4.18707,2.80617,3.049375,2.2157725,1.5391075,3.857195,2.623975,4.26261,5.60625,1.6656300000000002,4.58126,2.83344,6.295473333333334,3.697995,2.322695,0.87152,2.47747,3.08332,7.394096833333333,2.32657,1.649836,2.32657,0.414295,1.32329,4.223355,2.41864,1.700015,3.70948,3.987062,0.691477,0.691477,0.691477,8.39767,1.599256,0.7341627272727272,34.43665157142857,1.8882526666666668,0.6744666666666667,3.0280175,0.6744666666666667,3.777415,2.121685,2.57573,2.432986666666667,5.28065,4.05874,4.34955,2.4038933333333334,0.9256685714285714,4.36183,3.3036833333333333,4.93997,1.0552942857142857,2.964125,2.964125,3.80827,4.47174,3.35375,4.215572692307693,3.18548,4.505695,5.268,1.7992460000000001,1.03252875,5.17445,6.5632,3.855115,0.685909,4.266825,4.025251666666667,0.92965125,4.40926,2.56203,3.831955,4.268665,1.8656344444444444,1.8656344444444444,3.964715,3.398045,0.9080044444444445,3.11134,3.0025733333333338,3.26971,4.10599,4.401865,0.6055757142857142,0.3268788235294118,0.3268788235294118,0.3268788235294118,0.932454537815126,0.5396776923076924,0.745794,0.3268788235294118,0.3268788235294118,6.22337,0.3268788235294118,0.932454537815126,3.55203,1.3430925,4.604345,1.1953099999999999,0.5678138461538461,0.92965125,2.7496,2.5978,3.971225,3.049945,0.3268788235294118,0.3268788235294118,4.360135,3.945115,4.08609,2.662525,3.94725,1.438682,3.871205,0.745794,0.745794,4.80447,3.157225,2.76138,2.791325,3.6677066666666667,1.04412,0.896876923076923,10.088945,1.2113625,3.593315,4.55132,5.2423,2.08598,0.36701999999999996,0.86109,2.666043333333333,3.261015,3.06796,4.213165,1.3309,5.755,3.360775,4.87237,3.913275,3.01233,2.8471966666666666,6.361793333333333,2.4786,4.59054,4.180015,3.89269,6.019755,0.5284106666666667,4.34903,3.4821000000000004,1.9178533333333334,0.6943077777777779,3.98428,4.46929,2.71242,2.551225,2.10199,5.0353,2.85477,2.86023,1.031498,0.47758,3.958875,0.36483600000000005,0.7831236363636364,4.01041,3.001335,3.742435,2.80017,5.5071,4.49209,5.847048666666666,3.61182,3.324025,4.32169,1.612695,5.35199,1.649048,3.853285,2.461465,5.8595266666666666,2.461485,1.0303900000000001,4.43862,6.960459999999999,6.495992916666667,3.3506666666666667,0.8013558333333334,2.9278166666666667,4.280625,3.8291,4.572975,4.37384,4.048915,4.936465,3.103185,4.18072,1.8882333333333332,2.329335,1.5000566666666666,4.09016,8.84317,2.68574,3.798205,5.9393,2.790995,4.09055,2.5055466666666666,2.8384169999999997,3.368035,3.21692,3.39203,3.11645,3.610055,5.337,5.8903,4.06203,4.752395,4.96723,3.78948,2.768695,5.3083,7.6018,0.9151444444444444,3.95048,3.885075,4.707245,5.7478,5.01935,2.22719,7.845485,2.4463033333333333,3.487695,6.08935,3.748135,4.36871,2.19042,1.64042,3.0305400000000002,2.10898,2.1559266666666668,2.7479333333333336,4.18849,4.60879,4.148595,3.32624,4.885331666666667,3.42904,3.14846,4.075635,5.8049,2.93865,5.335057166666666,3.85096,3.690705,3.508305,7.23739,3.63769,3.82798,3.998265,4.947335,2.948495,10.6593,1.2869833333333334,2.39622,3.3717,2.7750566666666665,2.7750566666666665,2.043095,7.5228633333333335,0.8684922222222222,3.06686,0.8991825,2.06805,4.353805,4.75039,3.68592,4.04567,2.707656666666667,3.118685,3.701135,3.85998,4.105445,2.780725,2.417806666666667,3.908435,4.449845833333333,3.13167,4.17066,1.61422,1.6420559999999997,2.681926666666667,5.7351,2.250605,1.7659900000000002,1.9789325,4.041945,4.68494,3.04853,2.767615,0.5373966666666666,2.317585,7.264704999999999,3.276695,1.4475266666666666,0.85233125,1.1934133333333332,2.02398,2.143405,0.7939949999999999,2.1319766666666666,4.484639,3.929025,4.66463,2.44182,1.956445,6.50033,2.9116,2.259733333333333,2.259733333333333,2.259733333333333,6.496746666666667,2.281613333333333,3.600005,2.532565,0.46450800000000003,1.175408,2.324105,5.85975,0.43708166666666665,3.947275,3.95247,5.7612,2.9831583333333334,0.43708166666666665,2.9831583333333334,0.88756,1.17758,5.59775,3.859045,6.654299999999999,3.930285,4.465425,3.45122,4.183,5.0091,5.3069,5.90015,3.85854,3.521585,4.95935,4.52229,4.2773,4.43068,4.35518,1.34659,2.46644,1.20198875,1.98982,3.142205972222222,1.5905043055555557,7.0440875,5.595805,2.6256666666666666,4.227975,2.860375,4.669815,2.938585,4.096495,4.67002,9.266735833333334,5.06005,4.305965,2.4009275,2.9502,2.0278,0.54150625,2.160992222222222,6.06695,5.21705,4.908215,4.394335,0.5186313333333333,2.0375675,1.44598,4.24664,0.7029484615384616,6.401422500000001,2.0836975,1.14867,1.14867,3.95928,1.989948,2.967976666666667,2.722855,4.63108,3.4411625,3.4411625,4.491005,5.557073333333333,2.755456666666667,2.4759466666666667,3.139063333333333,4.84236,1.83959,2.8320600000000002,5.59175,4.946065,4.473735,4.04875,3.9097616666666664,4.20141,3.5495841666666665,3.0861466666666666,2.3779,4.299735,5.1599,3.28728,4.98637,5.42065,2.06189,2.4340466666666667,6.286,6.9296,1.2326700000000002,2.614975,2.3673325,2.747363333333333,2.315735,2.528275,2.350184,1.0343200000000001,1.961575,2.669925,2.212405,2.4867383333333333,2.4867383333333333,2.9230514999999997,2.935325,2.181193269230769,2.59255,2.28945,1.9152879999999999,1.5180106666666666,5.148300000000001,14.563262333333334,2.8895999999999997,3.1422733333333333,1.843768,1.843768,1.6346366666666665,1.6346366666666665,2.7854733333333335,3.558,2.7339066666666665,1.9022425,1.9022425,3.8656333333333333,2.4704433333333333,1.1217766666666666,1.420157142857143,3.083576666666667,2.886863333333333,3.5422999999999996,2.4831588095238097,3.320133333333333,3.050053333333333,0.671866,2.584325,3.6183083333333337,7.074873333333333,4.633615,5.3631,4.310885,3.38195,5.0407,4.56319,2.7058199999999997,3.992835,1.3342749999999999,3.1197866666666667,5.68375,5.25725,2.766145,1.12284,3.031385,2.2652533333333333,2.8867266666666667,1.4654416666666668,0.6518864285714285,2.91446,4.4573833333333335,4.806275,4.09943,4.70067,2.9981566666666666,2.248553333333333,3.2878133333333333,2.4538466666666667,3.1898700000000004,3.1270733333333336,3.0957733333333333,2.5823300000000002,2.3656333333333333,3.6683333333333334,2.8106766666666663,5.07545,4.655355,5.266703333333334,5.266703333333334,3.48737,4.21813,3.805085,3.793055,2.86039,3.959255,3.527455,3.06847,6.1132,0.7313000000000001,5.0157,4.74941,2.5954366666666666,5.080783333333333,3.5205,1.8065,1.2112128571428573,2.0561233333333333,0.980396,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.5604571428571429,0.5604571428571429,1.241745,0.863947361111111,1.74434625,1.0242957142857143,1.0242957142857143,1.2839351388888889,0.4604111111111111,0.4212988888888889,1.2943275,1.5364125,2.7473166666666664,2.29035,6.4116,3.044003333333333,3.68597,3.3451066666666667,4.816494571428572,1.3160833333333333,4.784515,3.87347,5.06525,3.006485,1.534284,4.408918076923077,3.881205,4.42725,4.31221,2.765185,4.822455,4.79076,4.69331,1.291818,3.88394,4.6604,3.243005,2.425413333333333,3.425815,2.501235,3.307895,4.600685,3.1141400000000004,4.825735,8.86092,3.38644,4.760965,3.98675,4.344806666666667,2.5055733333333334,4.74056,0.9815957142857143,4.599215,3.522685,2.1403,1.150445,3.016675,1.3539833333333335,0.49662133333333336,3.4227000000000003,4.24114,5.206926666666667,3.6893666666666665,2.4635825,2.514715,4.811485,3.8869666666666665,4.50219,2.64425,2.3002466666666668,4.052425,3.80678,3.88791,5.003,4.29667,3.778645,4.475835,3.11532,4.142865,2.1292404166666667,4.28326,5.2169,3.40381,4.51044,2.554325,3.809385,5.4566,3.7455,4.999455,4.836995,4.739215,2.24883,4.629765,4.95299,4.62014,2.1080275,1.11224375,4.00768,4.557505,3.84257,4.59105,1.7261,3.62311,2.511695,4.75736,4.43723,4.502345,2.18893,4.161825,4.33253,4.10453,2.3626633333333333,4.593025,4.52156,5.09715,3.547325,2.1080275,2.422295,2.677435,5.0858,3.920275,3.97045,3.44352,4.747,2.295345,6.77614,4.89942,4.57421,5.319176416666667,5.16306,5.0619,3.3395325000000002,2.36765,2.36765,3.647585,3.39774,4.64894,2.0036225,2.8589262499999997,0.98163625,2.4108899999999998,2.9253766666666667,2.1901033333333335,2.9537099999999996,4.191755,2.6921133333333334,5.04135,2.4365566666666667,4.30424,5.0628275,2.01733,4.18811,1.8172966666666666,2.5008266666666668,3.91164,0.912291,4.91791,4.33567,5.4441125,4.585295,5.57215,1.2316942857142856,4.50726,6.5369,8.35974,3.17882,3.2267733333333335,1.8664280000000002,0.791496,3.825195,1.0444042857142857,5.00435,4.51881,5.77485,3.182345,3.60199,1.09292,3.419515,3.63865,4.417025,3.932185,2.89603,2.707025,2.37468,4.23659,4.62892,5.54605,4.47469,3.461755,0.35475888888888885,0.35475888888888885,0.35475888888888885,0.35475888888888885,5.8213,2.665175,6.1541,2.995563333333333,4.758805,4.696455,3.72504,2.190895,2.5758966666666665,1.4625766666666669,5.0043,2.64265,4.347775,3.981795,3.52928,1.527675,1.14912625,4.23502,2.40268,5.898723333333333,3.946305,4.469815,2.307415,1.4850966666666665,0.8876544444444444,3.354965,4.218595,3.4186,2.14221,8.00561,4.60236,3.419725,2.2485600000000003,0.46124200000000004,3.414975,2.72168,2.15782,1.96717,2.723905,2.72382,2.377465,2.91532,2.899135,3.63533,4.30386,3.41458,3.93382,2.864565,5.6241699999999994,0.6132906666666667,4.52803,5.8475,4.86915,4.6387,3.1674433333333334,5.18415,4.35264,4.05186,5.274771666666666,5.15025,4.56946,4.603555,3.651825,4.968935,2.947185,9.1393,4.91179,4.11088,4.636555,4.99464,5.61205,3.4038,1.1224666666666667,5.844191666666667,3.127085,4.521405,1.3060833333333333,4.359445,3.438895,6.263498333333333,4.569955,3.301095,1.83246,4.82795,2.20298,0.92828125,4.33175,6.05285,2.0013666666666667,2.3674133333333334,2.9402166666666667,3.010085,3.708845,3.827125,5.08045,1.8245066666666665,4.194125,3.9136995,3.44086,3.8554999999999997,3.728595,2.852575,2.72454,1.90452,2.4659166666666668,2.74513,4.50921,0.5890650000000001,2.68129,3.952105,3.0308,3.4027666666666665,4.24939,4.916735,3.78659,16.866791303030304,2.7271533333333333,4.164133333333333,1.475402,0.9299636363636363,0.9299636363636363,0.9299636363636363,0.9299636363636363,0.9299636363636363,4.194615,4.54729,4.603065,8.798114,2.3995575,2.3995575,4.504035,4.593845833333333,1.2932525,1.9876966666666667,3.651,2.4238475,2.3231525,2.1289725,3.10452,3.9068500000000004,1.6257225,3.5368,0.835442857142857,2.83742,2.5727733333333336,3.0556666666666668,1.45306,3.0902700000000003,2.118116666666667,0.94310875,2.7357933333333335,2.6804666666666663,1.2717333333333334,2.3714666666666666,2.4740933333333333,2.2092899999999998,4.368050666666667,1.8096933333333334,2.7309,2.0407625,2.6147,1.081448888888889,2.6510933333333333,4.6787806666666665,3.630266666666667,1.01264375,2.84863,1.3666225,2.451236666666667,2.30335,4.639798333333333,2.9318733333333333,2.315866666666667,4.577574,2.67811,2.166595,2.705553333333333,2.299863333333333,1.62289,2.7207133333333338,2.9656033333333336,2.7683066666666662,2.342616666666667,3.0513833333333333,2.59002,2.3789575,3.7236145,3.7236145,3.0242733333333334,1.9971733333333335,1.9801833333333334,2.5483266666666666,5.522333333333333,2.821593333333333,2.1159433333333335,1.7383675,2.97132,4.383295,2.40864,1.071528,2.791031333333333,1.5244099999999998,3.2497833333333332,2.244056666666667,2.5017466666666666,2.1943366666666666,3.039593333333333,1.2663959999999999,1.7350366666666668,1.44878,4.352068333333333,2.76078,3.92218,1.0238377777777776,4.183865,1.9521666666666666,1.9131,1.7468139999999999,1.5451266666666665,3.2789300000000003,22.678957642857142,7.327266666666667,2.690996666666667,3.403849166666667,2.875313333333333,10.227266666666665,3.0018333333333334,0.982115,2.46812,2.34245,2.0701933333333336,2.99002,2.4443,2.56027,0.9361459999999999,3.217503333333333,2.6353666666666666,3.0452066666666666,2.78675,2.5100000000000002,2.10073,2.2097433333333334,2.8988033333333334,2.6876366666666667,2.09102,1.565326,4.9537,4.56528,2.060075,2.987975,2.2955833333333335,2.4549600000000003,8.185031666666667,2.0352566666666667,4.95661,2.3508175,1.83197,7.97449,2.84932,2.714143333333333,2.4712,1.885014,1.4800961538461541,3.0836733333333335,3.002026666666667,3.963595,1.561405,3.6710999999999996,1.7950175,1.7950175,4.39519,4.14484,2.8746342857142855,2.8746342857142855,5.754336666666667,3.583355,0.45507600000000004,12.124993247863248,1.3377299999999999,0.9517800000000001,3.9249558333333336,1.4876799145299144,1.8717575,5.882626666666667,3.67814,0.7327154545454545,2.23694,5.042292242424242,2.3884803333333333,3.66039,1.2723885714285714,5.2755,4.907485,4.271795,3.1189470000000004,1.88753,2.21311,2.55113,2.2320866666666666,2.1597,5.114723333333334,4.18931,3.858415,1.8993275,4.6187,4.130655,3.3373666666666666,2.11615,4.80408,2.4856433333333334,8.81207,6.19221,1.8422225,2.57894,1.807018,4.6108,4.6108,2.8622533333333333,2.753213333333333,2.83178,4.84349,9.7026775,4.37496,2.4959425,5.56025,4.382735,5.08975,2.07946,0.8415425,1.343565,4.549425,4.64486,3.660133333333333,2.6076099999999998,3.741633333333333,2.22864,3.823755,4.80651,3.35075,5.447,3.088343333333333,3.426475333333333,3.2464166666666667,3.2529966666666668,3.3654666666666664,6.28145,3.0364,5.47775,4.560175,3.436895,3.3419,3.3419,5.505799166666667,11.8020975,3.493933333333333,6.118275000000001,7.283037222222222,3.705195,2.4778266666666666,3.996085,1.3361066666666668,3.85389,2.3451525,2.95302,2.92258,3.250033333333333,1.8966699999999999,2.4336966666666666,2.6621966666666665,2.464373333333333,2.820586666666667,3.1782133333333333,3.753195,2.5459533333333333,2.9066899999999998,3.78248,2.5799766666666666,2.271873333333333,1.12883,2.1142025,2.7125566666666665,2.302513333333333,2.5317333333333334,2.51965,3.5186333333333333,2.37636,2.351503333333333,2.5273866666666667,3.02449,2.5930633333333333,2.7824866666666668,2.4135166666666668,3.038906666666667,2.8545933333333333,3.344326,2.6247766666666665,2.41314,2.274106666666667,2.6402733333333335,2.6465466666666666,3.5050666666666666,3.258763333333333,2.613585,1.93215,1.93215,0.8578566666666667,1.46583,3.872885,3.182295,2.650046666666667,1.8966699999999999,2.9749866666666667,1.1713857142857143,2.56861,0.5494646666666667,3.3416333333333337,3.0480133333333335,3.367695,2.9535933333333335,2.4194233333333335,2.307636666666667,2.8552466666666665,2.691523333333333,3.1728733333333334,4.136723333333333,1.490878,2.7078966666666666,2.391183333333333,1.7752033333333335,2.1136399999999997,2.68112,2.6259166666666665,1.5802720000000001,2.4884333333333335,2.665716666666667,2.5272566666666667,2.61969,2.66116,2.8887766666666668,3.1786333333333334,1.3579125,2.8196766666666666,2.3913100000000003,3.7198333333333333,3.8168333333333333,1.7697425,2.10402,3.1524733333333335,2.369943333333333,3.3732333333333333,2.7143800000000002,2.6008533333333332,5.282475,3.2012433333333337,2.0508833333333336,1.530692,3.303546666666667,6.099896666666666,3.070536666666667,3.5488666666666666,2.8734366666666666,2.9085633333333334,4.6263586666666665,1.6337119999999998,1.1488888888888888,2.04859,1.7269908333333333,4.52958,2.4418133333333336,2.9608266666666663,3.0879933333333334,3.1730666666666667,2.1938833333333334,3.4680999999999997,2.63105,1.54702,2.6370733333333334,3.56389,3.7149275,3.26237,3.619875,1.59465,2.82852,3.541905,3.402545,2.3544133333333335,3.8257,3.8813,3.8035333333333337,1.27981,5.540335,3.26471,1.400735,3.11956,3.137905,2.925005,3.4629,1.8112860000000002,1.8112860000000002,3.218453333333333,3.0185666666666666,2.72963,4.984185,4.344365,4.251565333333334,1.340922,3.13984,2.4139933333333334,4.248115,3.208403333333333,4.729783333333334,2.58675,2.34986,2.5059066666666667,3.789255,3.97568,1.6528580000000002,3.045553333333333,2.78215,2.3578325,4.32992,1.2899100000000001,3.19798,4.205885,2.78583,3.66034,4.10777,1.69184,1.6116566666666667,2.3698,1.1023033333333332,2.0676019047619048,1.879435,0.4444571428571429,3.77192,2.37475,4.704705,4.078335,3.011815,4.6986349999999995,3.3624333333333336,3.100766666666667,3.4209333333333336,2.3994866666666668,3.14602,2.65484,3.033326666666667,2.106663333333333,0.6598615384615385,2.403496666666667,0.61173,1.97757,2.543763333333333,3.1366866666666664,3.10298,1.4258033333333333,1.2915575,4.27187,4.40996,3.0182,3.69157,3.155765,1.72543,3.796615,6.550095555555555,3.500885,5.190645,1.6195275,3.862575,1.97808,4.418155,3.607475,2.085425,3.70087,3.17125,3.75313,3.771365,2.02183,3.895285,5.642805,4.85961,3.60215,3.020625,1.6831875,2.041225,3.735195,3.13715,3.34105,3.642025,3.492455,3.369235,1.57094,3.474065,3.22916,1.6483375,4.0336075,1.0611416666666666,3.13371,1.69273,3.562895,4.663806666666667,3.588265,3.008415,3.550155,3.342215,1.8330475,2.269415,3.821066666666667,2.986055,5.92152,4.18817,4.518155,2.4508,2.54121,4.37991,4.52779,2.245692,2.245692,5.7810950000000005,3.75273,2.64637,2.90247,1.9938200000000001,2.733635,3.339655,3.6848166666666664,2.702395,3.11449,0.9873419999999999,3.72368,2.828145,3.933875,2.683945,1.4519775,1.4102875,2.707025,5.877851,5.695074999999999,3.65385,1.514055,4.24384,3.75857,0.8311733333333334,2.7934,1.457068,5.1276425,1.4176066666666667,3.72463,1.882445,1.4258033333333333,3.014245,2.53035,4.653855,6.76222,3.935455,4.598490833333333,2.61063,2.74685,4.011085,3.61961,4.147585,4.330685,1.19583,1.5663200000000002,0.999275,2.55372,2.269775,5.044,0.999275,4.12055,2.098215,1.4232775,1.4232775,1.6483375,3.770495,4.06267,3.61307,1.499516,1.499516,0.99872,3.11846,2.08262,5.999615,4.113185,3.69705,2.9113633333333335,0.9958014285714285,3.520265,2.774125,4.123045,3.518645,3.791465,3.791465,3.321325,4.107615,1.74426,2.754715,0.9440322222222223,1.93297,3.38628,2.5620366666666667,2.953898333333333,2.953898333333333,2.752475,4.51719,4.350475,3.68054,3.425405,3.88803,2.6002300000000003,4.2945225,2.701075,3.773935,8.26115,5.01985,2.73653,3.351565,2.958695,4.4494,3.051578,7.3799874999999995,4.445203,4.649815,3.309555,3.7667,3.647625,4.33357,4.78839,2.68721,4.54934,5.9612,2.755265,2.1232617777777776,3.237385,3.26694,3.6558,5.7615,2.24811,2.3902433333333333,2.92921,3.0275175,3.1224900000000004,7.195970666666667,1.496365,4.975630000000001,4.975630000000001,3.114675,3.8900233333333336,3.24419,2.5221433333333336,5.25551,4.520085,2.1421166666666664,3.913785,3.884125,3.4576941666666663,2.833985,2.749025,5.765248333333334,3.430565,5.17865,3.08908,4.7564,4.07884,3.78159,3.0185666666666666,1.9797233333333333,3.111395,3.71983,2.92984,3.236266666666667,2.97188,6.299379999999999,2.46551,1.8045075,3.250820833333333,2.3078766666666666,3.765165,2.755555,0.8311733333333334,3.58966,4.07602,4.0701,6.091944999999999,3.01497,3.039695,3.0074133333333335,3.0074133333333335,3.8925875000000003,3.90097,3.665695,2.0463,5.4833275,2.16492,4.541125,3.61872,7.97137,2.8333033333333333,1.2771066666666666,3.24831,4.603675,0.6221625,3.92678,3.236545,2.864875,3.219485,4.024185,2.2529166666666667,2.437255,9.32399,3.465325,2.87181,1.4176066666666667,3.650715,2.614735,2.41190125,4.103315,5.3985075,1.5931875,1.15401,1.0485766666666667,4.301825,4.19975,3.652485,3.27936,3.27936,1.57094,2.37885,3.0784305555555553,0.9017455555555556,3.052335,1.10286,1.59465,3.42317,3.2749,2.73147,2.63242,2.5075666666666665,4.52111,3.651765,3.21741,3.32151,2.977825,4.181915,6.960715,3.95904,0.92276125,2.5667150000000003,8.89099,4.620475,3.969095,1.1071475,4.449048333333334,1.3930016666666667,3.5018225000000003,3.5018225000000003,3.78161,8.163786666666667,0.7917799999999999,4.55286,4.294325,2.37314,4.244623333333333,3.64468,2.1245225,9.65032,1.8661675,2.4244666666666665,3.213365,1.79714,4.187597500000001,2.903455,3.199775,3.365856,2.86177,3.01696,1.0827616666666666,7.36233,3.724665,3.904175,3.81224,1.9306725,3.008415,3.9036166666666667,3.746915,0.5952384615384616,3.59246,4.03162,4.42958,2.0591625,1.369876,4.012145,4.118645,8.36129,0.6948061538461539,0.77156,0.77156,1.7923533333333335,1.4703666666666668,1.444464,1.82467,4.670115,1.3055133333333333,0.9006242857142857,3.98988,3.575405,1.221515,3.353155,4.76215,3.45182,0.714564,2.12421,9.167655,3.3868066666666667,3.29254,3.097655,1.7137575,2.44236,2.598695,4.4271,4.12972,3.687335,0.8830871428571428,1.372176,0.888428,4.128115,4.39723,4.175465,0.9017455555555556,1.6617840000000001,3.762235,2.2509671428571427,5.2477100000000005,1.11122,4.76762,0.5286266666666667,0.5286266666666667,0.5286266666666667,9.711915,3.98754,1.10286,3.85773,4.82415,2.815405,3.28371,4.85845,2.536345,1.8407311111111109,2.0121933333333333,0.714564,1.5457373333333333,0.5435311111111111,0.8458816666666666,1.39605,4.04615,3.65512,1.9840575,7.252186666666667,4.952345833333333,0.5966177777777778,6.18765,4.981093333333334,3.348575,4.42988,7.804131,3.732933571428571,4.952345833333333,4.4906085000000004,2.2867666666666664,4.095605,3.85386,6.99501,3.571095,0.46124200000000004,1.526644,4.003075,1.77942,1.15401,4.020955,2.3483266666666665,1.72311,3.18634,1.71229,4.55477,4.35963,3.94164,4.79587,6.31933,2.56253,3.818305,1.457068,2.368595,3.462065,3.19271,2.1421166666666664,3.985505,2.57744,4.94167,2.80323,2.44357,3.366016666666667,1.6270700000000002,3.46978,0.9017455555555556,2.3123285,1.0485766666666667,1.779535,3.543915,1.496365,1.39605,1.8895825,3.303185,7.35009,0.8830871428571428,1.1071475,1.268078,3.58142,3.533605,1.268078,4.014765,2.368595,0.6221625,0.9017455555555556,1.7923533333333335,1.457068,0.4444571428571429,1.6806640000000002,4.2161566666666666,2.37314,1.2751533333333334,2.91582,1.27981,1.8661675,2.6049883333333335,2.0121933333333333,4.74675,2.6049883333333335,0.8311733333333334,3.071969,2.082875,0.08815045454545455,0.08815045454545455,0.08815045454545455,0.08815045454545455,0.08815045454545455,3.3373333333333335,2.7466000000000004,2.6461099999999997,2.7529566666666665,4.648905,4.455545,1.7468139999999999,3.76562,3.706225,2.24876,5.0072375000000005,2.80042,2.579175,2.57921,2.832005,4.42586,7.609206666666667,2.129735,1.8824333333333334,3.032995357142857,0.8943728571428571,1.4423700000000002,2.4383033333333333,1.99885,1.47294,2.862,2.1943766666666664,2.8081666666666667,2.5224166666666665,2.6676800000000003,3.61723,3.38,2.54744,1.246458,3.685305,3.62375,1.5916,1.268912,1.268912,1.268912,3.44398,2.6254033333333333,1.1557899999999999,2.13518,1.3463485714285715,4.319245,1.5385433333333334,6.214370000000001,3.1829925,2.55492,3.188472,3.188472,5.335806666666667,3.167315,4.220365,4.680085,2.084395,2.9434966666666664 -GSM1946785,1.0,1.9960775,1.9960775,1.5787633333333335,4.879335,5.9207,2.475477105263158,1.6544566666666667,8.03341431372549,4.540245,3.2003833333333334,2.930355,3.2536,3.376595,4.37675,1.83796,1.5260960000000001,5.0256,2.5803933333333333,2.271655,4.74607,5.390981666666667,3.940675,2.830655,1.903632,4.26022,4.760355,4.469115,0.7035191666666667,1.5531127777777778,1.9119244444444445,2.289995,1.942415,1.1798671428571428,0.6787491666666666,3.158644642857143,1.5320075,1.807545,1.19592,2.11652,1.18511,1.0823775,1.076552,1.498082,0.9547800000000001,0.9363720000000001,0.749652,1.2134800000000001,1.675842,1.8560500000000002,1.5011839999999999,2.09018,1.7149539999999999,18.330783166666667,0.3843493333333334,0.8250080000000001,1.148158,1.7067799999999997,1.5047380000000001,1.707214,1.0811300000000001,1.0811300000000001,1.0811300000000001,1.1582116666666666,1.0116,4.914820000000001,1.228715,2.50225,2.085865,2.593975,1.00061,2.300855,2.32029,2.1717925,1.4101975,2.079545,1.558335,1.6749525,2.47449,3.85789,4.75736,4.939435,1.6974099999999999,4.701725,4.491441666666667,4.0668,4.15735,1.09644375,7.74192,0.59814875,0.59814875,2.256305,1.1420171428571428,16.43956,4.90697,5.43055,5.67585,4.288,4.2325,5.3508,0.5080688888888889,2.2259654166666665,1.5880675,2.3491625,4.703085,3.97037,1.4736,3.062063333333333,3.1344999999999996,2.856,3.6363333333333334,3.356205,5.20525,2.79278,4.573325,3.09718,0.728129090909091,1.724702,2.502775,4.911865,4.28732,0.555546875,3.812215,3.738035,0.8884575,4.52172,1.7176038961038962,2.39537,2.797725,2.0465625,3.67255,5.6173,3.40134,2.7181466666666663,3.229886666666667,2.96278,3.89674,3.03589,5.7079,3.40981,4.54543,3.27837,2.75775,3.602485,2.499045,6.944598333333333,3.53714,3.665465,5.1909,3.26123,5.0248,0.7557333333333333,9.594729761904762,3.601965,2.230703333333333,2.1141316666666667,3.365133333333333,2.525725,4.69032,5.57475,2.1516975,5.138586666666667,2.81954,4.733975,2.1516975,2.708413333333333,4.557105,5.194665,4.438905,8.887666666666668,3.327935,4.86174,2.982175,5.2956,4.67237,1.7642666666666666,8.26239,4.32348,3.957725,3.992415,3.57273,3.34436,2.342725,6.38685,2.365865,3.905305,3.954585,5.2271,5.0882,3.92346,1.4936016666666667,2.728605,2.998325,1.643275,1.643275,6.132047523809524,3.10509,1.9419633333333335,4.211215,4.482785,2.887785,1.4686283333333332,1.034181111111111,6.8471,2.88694,6.76445,3.97731,4.317465,3.733265,3.08116,3.793505,3.541675,3.91797,4.16586,5.8676,2.78147,3.62506,9.059736666666666,4.67142,3.5911333333333335,3.083553333333333,2.899343333333333,3.986333333333333,4.3010825,1.8083725,2.66061,2.304796666666667,1.7777100000000001,1.78479,2.5689100000000002,1.74087,2.1801925,3.056696666666667,2.8162000000000003,2.4147666666666665,2.8805,4.491441666666667,3.54844,3.425665,3.456155,4.620005,1.4233183333333335,2.43502,2.8706197142857146,2.0903,2.6118566666666667,2.2732966666666665,3.393266666666667,1.8546779999999998,1.3663266666666667,2.91126,0.663842,1.6309233333333333,0.5503344444444445,0.5503344444444445,1.6365866666666669,2.9868433333333333,2.8588,1.3992066666666665,1.5410966666666666,0.3257969230769231,2.7139966666666666,0.663842,1.1708,0.2555954054054054,1.44027,2.0822275,3.6056333333333335,2.9341833333333334,2.3365966666666664,2.54041,2.45874,2.44366,2.54632,2.54122,2.16904,2.6319033333333333,1.9960833333333332,3.07896,4.234465,0.6881483333333334,1.8867399999999999,2.6199566666666665,1.9879166666666668,3.5165800000000003,1.522446,2.56995,2.39819,4.38926,2.1941366666666666,6.987759523809524,1.6405428571428573,2.8157333333333336,2.0305225,2.1496325,3.6117000000000004,2.0448025,1.973865,4.159865,2.6555866666666668,2.2271525,3.843895,4.26892,4.23973,3.88388,2.243525,3.338045,4.727409333333333,3.87489,3.859675,4.215475,4.548095,3.097515,4.349555,3.48301,0.8803625,4.85058,1.3340433333333335,4.914795,3.796125,5.9129629999999995,4.13141,4.221865,0.96332875,2.237435,3.469285,4.092635,0.8796299999999999,1.2641002991452992,2.052665238095238,3.7906714285714282,5.5898975,5.5637039999999995,2.3584225,3.30401,5.2656,0.33613,3.612375,2.38369,0.9829675,4.760855,2.03989,12.250685,1.3491125,1.57626,2.5312266666666665,2.46575,2.0847919736842107,5.03713197368421,0.3423794736842105,1.65184,3.132123333333333,1.0009625,3.5667000000000004,0.9563957142857143,5.46155,3.849315,1.97252,6.20645,5.54115,2.4938175,1.1483685714285714,4.43756,4.97355,4.33138,0.8940363636363636,8.072420000000001,2.8705200000000004,4.53791,2.6583099999999997,2.59061,4.56012,2.452786666666667,2.82531,2.4242,2.4437533333333334,3.094925,3.02443,0.34831125,4.02631,3.712915,3.81463,3.940925,4.371725,6.115864999999999,4.050755,1.639485,5.49755,4.6413,4.2954,4.46854,1.1385533333333333,2.85969,3.2802133333333336,2.7182033333333333,15.62361,3.14236,3.75485,4.33947,5.60785,2.650425,5.168334861111111,1.8011225,0.7824722222222222,2.701375,3.49249,3.91907,4.168515,6.427471666666667,2.972236666666667,2.110905,2.128165,3.3955333333333333,4.936125,2.352625,0.3730545386904762,2.7110383695652174,1.9394675,1.14722625,0.4816649734730849,0.5902754082556936,0.3730545386904762,0.3730545386904762,0.3730545386904762,1.107825,1.30769,0.98491,1.47844,4.356625,0.21748588235294117,11.48556882034632,3.239796666666667,2.8368633333333335,4.275395,4.075045,3.90446,2.155665,4.819525,4.114122999999999,4.374895,3.863605,0.71124,3.3356,4.325089743589744,0.5893757142857143,3.51019,3.0301566666666666,4.766895,0.5318472727272727,1.759955,4.37491,4.51441,1.96908,1.7285266666666665,1.6189866666666666,3.4837333333333333,3.890895,2.971955,2.89288,5.296,5.6579,4.91733,3.063696666666667,3.84305,6.30955,3.6245999999999996,5.29475,0.4152166666666667,3.22466,3.9508866666666673,1.9994433333333335,2.63141,2.9112816666666665,5.224021666666666,0.6626791666666666,2.601525,4.371075,4.06535,1.0324685714285715,4.594685,3.879645,5.10265,3.2123933333333334,4.305905,3.419035,4.354765,1.1653416666666667,3.55956,2.64837,4.654935,4.334195,4.64797,5.6615,4.39554,2.629345,5.26711,2.41298,3.09433,3.0589866666666663,2.772733333333333,2.6905966666666665,2.4488133333333333,1.784524,1.5553100000000002,1.9920766666666667,0.83004,1.76176,2.224206666666667,2.0733533333333334,3.0635833333333333,3.17566,2.94426,0.9879555555555556,5.13935,3.516833333333333,5.577389166666666,2.8052925,3.11547,3.213983333333333,1.8264166666666668,1.8264166666666668,2.416547922077922,2.416547922077922,3.215778279220779,0.49283714285714286,1.7739466666666666,2.486006666666667,3.5850666666666666,2.2086538095238097,2.2086538095238097,2.2086538095238097,7.4131487499999995,4.371816666666667,0.9584909090909091,3.82353,4.822230833333333,2.3086475,4.725895,3.21782,2.310345,5.0478,3.114993333333333,3.2446933333333337,0.83590875,1.96739,3.512166666666667,2.727743333333333,2.539966666666667,5.8867,3.8360333333333334,3.7434666666666665,5.036390000000001,1.9476166666666668,2.5753233333333334,3.0444766666666667,1.0483377777777778,2.1510266666666666,4.678006,7.804955,1.489305,2.86855,4.53016,1.8901800000000002,1.8731875,1.8731875,1.06801375,4.8943,7.54847,4.38875,5.491625,4.68479,1.7874166666666669,4.03195,3.39655,5.03145,5.1776599999999995,0.3627368421052632,2.90155,3.48085,3.983745,4.08154,1.7831959999999998,1.9281025,2.56885,4.456315,3.916015,3.01693,2.475065,1.577278,6.8707,4.81705,4.904105,3.547415,4.70273,4.530245,5.26975,4.065225,3.7611425,1.9235875,1.1329571428571428,3.00939,4.03667,3.904625,5.68473,6.0118925,2.3384375,1.8144600000000002,2.71149,2.7809233333333334,2.9144733333333335,0.6741400000000001,2.079435,3.60269,1.1148975,5.05475,3.255325,6.1020425000000005,1.244835909090909,1.244835909090909,3.905535,3.777725,3.71492,5.4374,2.7990333333333335,2.29434,3.85767,3.710825,2.076245,3.3863333333333334,2.6281033333333332,4.10366,3.411915,3.63734,4.5791,1.0712644444444444,2.77297,4.316,4.532595,3.28228,2.4864,5.8805,0.7469122222222222,0.7469122222222222,0.7469122222222222,0.7469122222222222,1.5394255555555556,3.83025,3.83025,1.8184566666666668,7.055076666666666,3.24865,4.452825,3.1957866666666668,2.7217,4.81291,4.21769,4.811105,5.23945,1.782275,4.116775,3.84476,2.67174,4.532705,3.31964,2.475565,5.11545,1.87626,4.467615,1.659685,3.4581375,3.22511,1.740875,1.1781949999999999,2.968595,4.381345,1.348188,0.84586,3.84156,1.2934675,5.000465999999999,4.622845,1.2939814285714284,3.634305,0.7702088888888888,2.60316,2.5706,2.46013,2.76298,4.135525,2.839859166666667,4.65936,5.4913,4.28994,4.499455,2.26676,1.2765885714285716,3.92122,4.99976,1.357795,1.357795,4.078765,0.248634,2.2037733333333334,0.248634,0.248634,0.248634,0.248634,5.1465,2.6693833333333337,2.936095,3.53745,3.13252,4.588395,2.6809733333333337,0.97437,0.97437,0.9860016666666667,0.9860016666666667,3.78932,1.83347,4.4743,1.6818805357142856,1.6818805357142856,5.00373,0.6088478571428572,2.319035,7.509738333333333,4.883975,3.24979,3.755345,0.9598325,2.23408,2.0025775,4.79326,4.49687,4.376085,3.79732,1.2698642857142857,2.5438,2.029115,7.65115,1.780115,4.32934,4.797695,2.80589,3.938805,5.89219,7.7973,3.971155,4.861095,5.03965,2.433805,3.32124,2.299435,2.399325,1.895215,3.807375,4.858715,5.634611666666666,6.79194,4.29002,1.0872666666666666,1.911225,4.087155,4.10874,2.172935,4.803505,4.1306,4.650266666666666,1.7241099999999998,3.9534333333333334,1.5295533333333333,6.505633333333333,2.8978699999999997,2.4006,2.2392766666666666,2.452345,3.6029999999999998,3.5027666666666666,3.6807,3.15297,3.3256866666666665,2.3618200000000003,3.785805,3.123495,3.20032,0.3847615,3.09474,4.32007,2.5958,5.50645,4.917615,4.45479,6.75283,4.871605,2.2021566666666668,4.37256,5.152,1.572745,5.2086,5.88925,5.24655,4.79812,3.209555,5.62585,5.0542,4.0426,5.44698,7.6086525,4.024005,1.2640433333333332,1.476735,2.543,1.8607600000000002,4.51842,3.999845,5.3747975,2.52563,2.5230133333333336,2.7558133333333337,2.4806733333333333,2.4554033333333334,1.08677,0.5049358823529412,3.977335,3.97343,4.1081666666666665,4.23258,2.898485,3.33187,5.401318333333333,3.0358366666666665,0.5940470588235295,3.447795,5.70915,2.0386675,1.737512,3.806185,3.6595,2.50829,3.9505,4.39278,2.7058199999999997,2.20879,2.33513,2.4586333333333332,2.657765,4.177393333333334,5.078105833333333,7.127148916666667,1.6152819999999999,4.950055,3.515892916666667,5.508618916666667,2.897256666666667,3.05665,2.31845,2.3629666666666664,1.4487425,1.4487425,2.68833,2.4214433333333334,2.7608599999999996,4.05591,1.761344,2.20429,2.04014,0.62700625,3.88813,0.632335,1.01438875,3.49479,4.60356,4.11333,1.6600225,4.69824,2.97047,0.8716642857142858,4.35323,3.8863595238095234,3.2028833333333337,2.452035,5.0375,0.2771906896551724,2.3076136666666667,3.214695,1.4536925,3.6848,6.7125,2.3595,1.38814,3.942095,3.80262,2.81643,2.81643,3.53663,3.89473,4.720415,5.426023333333333,5.01165,0.976061111111111,2.8874,2.5885599999999998,4.39416,5.2223,5.29835,5.0047,4.3895333333333335,3.871166666666667,3.8252333333333333,3.6255666666666664,4.0174666666666665,3.0962666666666667,3.09428,0.636615,2.3988075,2.4210475,3.78481,3.165673333333333,3.10472,0.7629366666666666,3.33389,3.922202,4.34723,5.6812,4.7611,2.037985,2.037985,0.8194570000000001,3.19985,4.50244,4.177295,4.562810714285714,3.31305,4.886445,0.5940500000000001,3.4111,3.87317,4.25977,3.7203066666666667,0.8981899999999999,3.728045,3.970035,5.51515,3.843295,5.0002,2.75605,4.24795,1.6590675,0.9929028571428571,2.7214066666666668,5.2287,4.14105,3.144145,1.4510616666666667,4.03536,2.5331,2.78515,2.760884222222222,3.001673333333333,4.386013333333333,3.0268866666666665,1.819868,3.4890666666666665,1.4583067857142857,2.8496799999999998,2.59614,2.288325,2.8590633333333333,3.0261433333333336,2.42831,2.7186766666666666,3.76895,3.0231066666666666,3.549856666666667,2.47872,1.956945,4.12971,2.89962,2.53171,3.549856666666667,2.33718,0.795660909090909,2.4024925,1.0234711111111112,2.1675075,1.6603275,0.9459,1.7238275,1.88404,2.644229,2.66955,4.630465,1.4919425,4.58539,3.16506,1.562508,2.2385433333333333,2.6335133333333336,1.89842,2.814033333333333,2.83338,2.325305,1.789285,1.8372039999999998,3.624233333333333,2.3823433333333335,2.9160044444444444,3.23578,2.999033333333333,3.8945666666666665,2.17158,4.306566666666667,3.507633333333333,3.9408,3.11823,3.5467999999999997,3.7678333333333334,1.9822366666666669,9.770755000000001,4.36178,4.42096,3.442415,2.8755,1.93449,3.992805,1.68548,4.053545,4.55137,1.4982,2.6583799999999997,1.1967683333333332,2.651733333333333,1.7229733333333332,2.3824166666666664,5.015723333333334,3.19435,3.61423,4.89595,0.817085,1.56269,0.979306,3.92853,10.606783333333333,3.731833333333333,6.74435,1.99098,5.2653,4.4378,2.4525525,5.21975,0.29011176470588235,0.8408457142857142,5.28195,4.61076,7.086755,2.015205,4.343735,5.81685,4.55333,4.689755,3.911215,4.75507,3.610765,5.652116666666666,3.837545,3.48904,3.401555,2.2491066666666666,1.9296766666666667,1.4388893125,2.43994,4.06146,4.85658,1.563504,9.04525,2.3549266666666666,2.9556633333333333,1.0200799999999999,1.0200799999999999,7.456742083333333,3.033265,2.4373575,2.152025,2.7453000000000003,2.1953866666666664,1.07488,3.4675658333333335,2.6222133333333333,0.6117228571428572,1.6422666666666668,3.2883579999999997,3.2883579999999997,1.1679666666666666,2.516653333333333,2.2650033333333335,2.7985966666666666,1.3104075,1.78456,4.834586,2.75979,2.67445,1.3741675,1.3741675,4.34667,5.477,4.785365,3.262815,3.79288,5.59902,4.5408,3.1490633333333338,3.1541200000000003,4.05576,1.146965,3.2792966666666667,2.5742,3.677015,2.20515,4.77838,3.48654,4.31661,3.484615,5.530131,1.0420922222222222,2.137675,1.847145,3.586315,4.199545,3.69027,3.902115,3.97025,3.18096,1.858595,4.347375,3.412845,3.418405,2.41598,0.84533,3.354325,4.35198,4.82367,1.2074266666666666,2.965003333333333,2.78525,1.96344,1.7390836274509804,1.7390836274509804,1.1686783333333333,2.4016466666666667,1.10848,1.377376,4.543915,4.397205,0.5101047619047618,3.48779,3.3784333333333336,4.449555,5.5799,0.41398900000000005,8.7808,5.4899,3.452625,3.943985,4.66204,5.4123535714285715,4.93778,6.704915,0.7060081818181818,2.76566,5.3399,2.9267333333333334,1.9023225,2.02614,4.720565,5.26640375,2.463655,3.10526,3.3440999999999996,2.0349425,4.58517,10.801300000000001,8.383880416666667,3.8504666666666663,4.72946,3.1331875,3.14886,3.88136,1.850048,3.0175466666666666,3.752975,5.02105,4.956035,5.00548,6.670726666666666,2.4934933333333333,4.841385,4.588115,4.97582,4.970455,8.223776666666666,4.265005,6.0619,3.368085,2.965465,2.910725,6.00605,3.72477,5.3082,2.180545,3.153176666666667,3.3253,6.1061,4.21127,4.10799,1.451288,0.89786375,2.47728,0.6387933333333333,4.19675,3.601805,3.50955,2.925125,2.1286666666666667,2.9288,2.5884,2.993126,1.8281420000000002,3.04980125,2.8886,2.1970575,2.639325,3.739034,1.3158483333333333,2.8162458333333333,5.23985,3.8553333333333337,1.3629225,2.9225499999999998,3.8094399999999995,3.529598,1.552075,5.7268,5.6984,2.1018133333333333,2.9564533333333336,31.342019307476836,3.417566666666667,1.7314999999999998,4.007666666666666,1.5899133333333333,2.62884,2.97494,3.4966000000000004,1.965075,2.843825,2.1120625,3.909365,3.2976233333333336,2.49476,1.4999875,2.25624,2.921775,0.3911163636363636,1.075375,2.8270733333333333,1.6828800000000002,3.382905,1.552075,2.05719,25.75259627777778,5.0948,4.33253,3.581305,2.62689,2.551675,2.65386,2.298435,3.983795,5.329924,5.44365,1.5841939999999999,1.8452940000000002,3.358075,2.491531666666667,3.862335833333333,5.3476,4.72568,4.49812,0.1882327659574468,4.97119,4.670820833333334,3.79171,9.51781,1.053725,1.053725,3.0131200000000002,3.185805,5.6311,2.032357777777778,1.0530933333333334,4.93556,1.924625,4.1356,4.01227,3.43721,4.13784,3.994355,4.977975,2.939015,0.7335644444444445,3.12567,2.139225,4.320155,8.268725,4.39036,2.343933333333333,2.343933333333333,6.8590125,4.79306,4.24885,5.9714,2.2977066666666666,5.443439166666666,1.5386233333333335,1.5190866666666667,2.88878,2.45264,3.30428,2.7377066666666665,3.86812,4.3454375,4.307215,5.4442,2.33369,2.735,1.8535825,2.70725,2.3185575,2.29331,2.06618,4.7164166666666665,1.8458025,3.5760523809523805,2.5347666666666666,3.16762,2.6587366666666665,1.7600033333333334,1.457157142857143,0.9897159999999999,2.6792866666666666,3.949533333333333,0.786948,4.53646,1.80573,6.1019595833333335,1.9562725,1.551785,1.492995,1.5481766666666665,5.6910388888888885,1.876986,3.0742700000000003,3.668066666666667,1.24625375,1.822495,4.888837333333333,3.1788433333333335,2.7598233333333333,3.550333333333333,2.8319666666666667,2.907016666666667,1.245765357142857,0.25192833333333337,0.25192833333333337,0.25192833333333337,0.25192833333333337,0.25192833333333337,3.48765,2.6036733333333335,2.4154075,3.32553,1.4106433333333335,2.6377466666666667,3.2811733333333333,3.5078,3.74005,3.05102,1.7006433333333335,2.95058,3.1970899999999998,2.353975,1.9859275,3.69116,2.870903333333333,3.6364,5.32625,2.803053333333333,2.6157333333333335,2.5512166666666665,11.035946666666668,4.805015,4.59938,4.8942,4.357615,2.8805300000000003,5.1292,3.969805,4.14577,5.62291,4.002435,3.22342,2.13262,3.49462,5.129437,3.718665,17.63016629761905,1.15190625,4.756835,0.8564422222222222,1.271,2.95595,4.681555,4.17217,4.79495,1.5819349999999999,2.377635,4.222945,2.705833333333333,4.3266,3.256170357142857,2.6232666666666664,0.6402283333333333,2.96395,4.692225,2.381175,2.4620575,2.143945,20.1722525,1.748742,1.3412125,2.64704,0.30996730769230774,1.85363,2.8178366666666665,2.01342,2.90673,2.691875,7.458293333333333,1.9181275,2.581025,2.2305225,2.100605,1.5747333333333333,3.3908,3.35354,3.76956,3.132623333333333,1.95502,2.509383333333333,3.118860833333333,4.90002,0.4094275,3.6147666666666667,3.05669,3.151675,2.07651,3.6305625000000004,3.460005,1.6425633333333334,2.3106933333333335,2.24882,1.6995266666666666,1.98199,3.59996,3.27092,1.1396283333333332,3.07567,5.2002,4.18273,2.521178,2.521178,3.1133,4.662495,3.03606,3.377295,2.3067325,0.9992818181818183,4.38572,3.550345,6.0784,4.15584,2.41287,2.41287,1.7492025,3.675675,5.08965,4.045525,4.19175,3.2006766666666664,2.2774300000000003,4.443155,3.540145,4.142125,3.0990300000000004,2.63369,4.378047333333333,3.07981,2.695736666666667,1.9651566666666669,3.581485,2.658125,1.61897,3.68517,3.988155,4.36119,3.509066666666667,4.597475,4.345495,6.730998750000001,3.907895,2.15408,4.670305,2.97579,7.527125,2.65692,1.2828933333333332,4.451255,3.4123,4.760555,0.5403478571428572,0.84245,3.82338,3.72407,2.134544090909091,4.392325,2.92404,2.829365,10.575337999999999,1.9130179999999999,1.185402,3.906345,3.91813,3.710385,4.917935,7.084875,3.1438550000000003,2.1069566666666666,3.131736666666667,1.8754066666666667,3.5450666666666666,8.55468145320197,0.9229138095238096,1.051575,4.693965,0.469568,1.6371325,2.175435,2.897375,3.0302,2.764725,4.22177,2.3715575,13.193475,5.004462500000001,2.4913275,2.4913275,4.245845,0.83379,5.081783333333333,3.99413,4.0555,6.130006666666667,3.450565,5.51525,1.4368016666666668,2.85935,2.864415,2.650325,3.068655,2.74807,3.076995,3.522175,3.702315,3.188685,2.94023,4.883735,4.40225,4.5228,2.9547966666666667,3.2783866666666666,4.916024166666666,4.365895,18.812238333333333,12.218965357142856,3.2644921428571427,0.68405,1.4961285714285713,4.45692,3.733035,3.0302517307692307,2.224045,0.8734711111111111,0.6710275,0.9073614285714287,1.987255,1.622438,5.237516666666667,3.4498333333333338,0.7225636363636364,3.326175,2.379115,1.96711,1.808434,6.37494,1.560616,4.44948,2.9836,2.9642700000000004,2.32408,2.718636666666667,2.54249,0.7505372727272728,3.202065,2.9903166666666667,3.9043593333333333,3.0488,4.745346666666666,3.57368,3.269445,2.3496425,3.54773,7.719225,2.0480825,2.4559625,2.565675,1.6390425,2.5164,2.296555,2.59375,0.913761,1.423785,1.02367,2.934485,4.352755,6.35475,5.76535,2.680925,2.360855,2.914575,3.5034666666666667,7.863313333333333,1.22224,0.399745625,3.01532,2.12588,1.586144,3.623154,1.301566,1.9853093333333334,4.303593333333334,3.1561593333333335,1.1921083333333333,1.9120366666666666,3.8051966666666663,3.527275,4.60431,4.48423,2.13368,5.32385,3.89149,0.7878923076923077,4.907695,4.047945,4.64826375,3.3246800000000003,2.367825,1.2551640000000002,1.1926375,3.561885,2.74454,3.275205,4.21149,2.636715,2.7076,3.33298,3.769035,4.616045,2.500025,2.71671,4.22482,5.8814,0.55140875,4.46944,1.7833675,3.467665,4.0659,1.8635375,3.085125,2.205155,1.993945,2.587965,2.442864166666667,1.74909,5.2269,3.7471,1.2734914285714287,7.0454,0.9984533333333333,3.54535,1.6649933333333333,4.55233,4.15915,3.4929333333333332,3.236125,4.034135,8.70616,2.9577,3.634465,3.81688,3.685025,1.687655,8.08703,3.54942,4.199935,1.506535,4.220735,3.017475,1.088615,2.17742,4.15949,2.14517,4.168335,4.8817225,4.0953975,4.57062,2.217995,5.19945,3.901865,3.2645033333333333,2.4869033333333332,1.773442,4.904495,6.19105,5.1402,4.594,3.00214,2.225315,4.746055,3.447675,1.1762269230769231,4.08786,4.841585833333333,3.97124,2.535605,3.59358,0.5107014285714285,0.5107014285714285,5.1108,4.12371,4.909715,2.368475,3.667875,5.9871,0.838968,4.21182,4.921095,4.74287,4.654035,4.633905,1.808635,3.116725,2.1742325,4.30744,0.69490625,4.16532,4.32882,2.8727,2.8413466666666665,4.36354,2.20769,3.312475,60.65711042207792,3.40671,2.60974,1.675905,3.267385,3.95814,0.8008225,0.98143625,2.140495,2.140495,1.336172,3.1358,2.45884,3.7315125,7.54436,2.8643366666666665,1.2535900000000002,1.417415,2.753826666666667,4.063599166666667,0.896397,1.867095,1.3352359999999999,1.9595775,4.21565,4.149275,2.967285,21.32248673160173,4.309065,3.888805,3.21584,2.188336666666667,3.018605,3.23579,2.508025,5.29693,1.6217320000000002,4.060815,3.315294488095238,6.050909722222222,2.05903,2.59866,1.810245,4.888325,2.34388,2.1888175,2.14516,3.6822083333333335,3.778285,3.524805,4.1553,4.54936,2.5912,2.914715,3.168985,2.799865,2.9185283333333336,2.136625,2.002655,3.383775,1.1558,4.332785,4.532905,2.603205,5.20975,4.92654,5.000138333333334,2.0292933333333334,2.370525,2.69477,2.763155,4.08782,3.453625,4.665025,0.72093,4.094072000000001,2.905985,3.831635,2.3865825,1.7848859999999998,4.188163333333334,1.2075888888888888,2.973865,4.365515,1.1591960000000001,3.584205,3.526865,4.694895,6.260199999999999,2.057025,2.822685,2.63129,3.768266666666667,2.9785766666666667,2.695489333333333,3.4938000000000002,2.4480299999999997,2.4350133333333335,1.3552333333333333,2.1788375,2.1788375,1.9129266666666667,2.06122,2.20499,2.63558,3.809665,5.5855,4.36814,1.632785,4.379485,3.72302,3.510935,4.269005,1.986105,1.821085,4.621735,1.76392,4.678981666666667,4.27529,3.57552,2.4739400000000002,3.6383075000000002,3.19726,3.0427,3.554775,0.1458669387755102,2.6346333333333334,7.732665,1.526464,3.45314,3.672665,0.9949542857142858,1.19694,1.90165,3.86259,2.97178,7.049379999999999,3.433425,3.663035,2.93317,2.691225,3.572415,3.51502,4.020785,3.47091,2.82799,5.5102,4.17114,4.307705,2.874503333333333,1.9757225,3.39851,4.618105,2.74251,3.21116,2.09746,2.576505,3.69353,3.787635,2.628765,4.512925,5.1071,2.729115,4.10604,4.5518,3.49045,4.55515,3.48438,3.2599,6.34803,4.55915,5.6506,5.28325,4.32049,5.354795,4.56344,3.897435,1.303504,6.6885,2.4043,5.0067,4.17019,4.060535,3.1107600000000004,1.9649733333333332,2.2960366666666667,2.391573333333333,0.994454,3.435166666666667,3.7845,3.0503066666666663,2.2190966666666667,3.73311,4.28399,2.5220766666666665,0.5434783333333334,4.57496,4.54485,4.895525,5.05065,3.876655,4.574095,5.0728,4.819075,1.4101,0.9618384615384615,2.80074,5.0691,5.7982,0.492970625,2.825555,2.4934366666666667,3.56502,4.42073,3.964733333333333,1.94756,5.3256,3.47762,4.58894,2.9919,6.2799,5.18975,6.9337425,0.5610208333333333,4.001275,0.802088,2.334435,4.181466666666666,3.3498,1.2599733333333334,2.3291,4.236215,3.574215,4.23826,2.110866666666667,2.1577075,3.045415,4.54475,4.14386,3.9092,1.656164,1.2248907142857144,5.9089,2.2973425,7.5729925,4.33564,3.61987,2.234275,1.5705225,4.236485,4.474885,1.7035,2.505685,2.5297,2.6346333333333334,6.665523333333334,3.0628666666666664,2.7718900000000004,4.268574166666667,3.86505,1.9240533333333334,3.204825,7.152,4.8271,5.43155,0.5378245454545455,3.784345,4.451885,4.730236428571429,4.06804,4.373495,3.01886,2.76119,3.18579,2.95803,3.632285,1.8371819999999999,5.545222,4.68797,5.0258,3.847715,3.38569,3.139518333333333,2.208075,1.3134125,0.98395,2.782805,2.48119,1.087435,2.6394100000000003,5.4732,4.9485,3.549115,4.134245,16.751285595238095,4.29077,4.485095,3.899645,0.7117,5.1222,4.450755,4.44332,4.81186,5.27805,2.481385,3.54015,3.344775,1.5083119999999999,3.12156,4.852705,3.24484,1.6041899999999998,3.871665,5.1034,3.886235,5.19395,4.82948,5.7033,4.110675,2.715786666666667,4.13549,4.279415,2.604765,3.040013333333333,2.9882733333333333,1.7529375,5.016,2.6833553571428572,2.0099233333333335,3.948415,2.164985,4.416375,4.12971,2.18283,2.615035,4.42118,3.74331,4.5527,4.463015,4.821295,4.7153860000000005,3.14888,5.2738,2.7721216666666666,3.811165,4.14221,1.541204,4.58664,1.01828,4.470325,3.281785,1.0516457142857143,3.76715,2.01966,6.3935949999999995,2.375834095238095,2.375834095238095,2.375834095238095,0.614355,1.1421966666666667,1.904965,3.451945,5.72983,3.5533627777777776,1.902475,2.21061,1.7127433333333333,3.712735,2.426095,0.4033253846153846,1.653105,2.19225,3.112625,1.83162,2.603125,2.352005,2.101295,3.82852,3.015836666666667,3.199605,2.95629,1.99744,6.56012,2.14269,4.30381,3.913555,6.530065,1.6017566666666667,3.495005,3.83313,3.78596,4.45123,2.96284,1.99328,3.82208,6.2349188333333325,1.953165,3.637395,3.136845,2.0171225,4.704425,4.77675,2.6404733333333334,2.164935,3.7421699999999998,5.839262142857143,5.82125,3.18119,2.39059,2.62842,2.99816,3.30311,3.989665,1.296275,2.819255,4.623565,0.839685,3.803645,3.910625,3.832805,3.395995,2.42478,3.46901,2.03162,4.53675,7.937403333333333,4.354765,3.48521,3.67166,0.9873375,4.549165,2.328925,4.213755,5.669922499999999,4.137765,4.153265,10.74899,4.6932,3.86167,1.51653,0.6987583333333333,2.802675,3.77094,3.40419,3.73597,2.1765233333333334,2.55844,2.17023,1.1607966666666667,1.1607966666666667,1.93288,2.4409199999999998,3.7200333333333333,2.27154,3.665366666666667,3.2789033333333335,2.4806266666666668,3.02138,1.4261133333333333,2.400866666666667,2.1296733333333333,1.8558133333333335,1.51546,2.5083266666666666,0.8179599999999999,10.003534583333334,0.8179599999999999,3.348266666666667,2.0459133333333335,1.9844833333333334,4.487705,4.261145,4.64965,4.912415,2.2125966666666668,2.89953,3.5216206666666667,2.21305,3.5010999999999997,3.2478700000000003,2.5972466666666665,3.0115,1.6807266666666667,5.59395,6.128255904761905,3.1130866666666663,3.538133333333333,3.2250666666666667,2.82654,2.6760800000000002,1.1798671428571428,3.6148333333333333,3.4322666666666666,3.999655,6.06925,4.335825,2.855783333333333,3.4829333333333334,3.0974,4.1523055555555555,4.28367,2.62933,3.85954,3.2598800000000003,3.115543333333333,4.631535,3.22682,4.14869,6.3271299999999995,2.4331466666666666,2.5427833333333334,1.7814133333333333,1.5267733333333335,5.07146,3.6960083333333333,2.6712000000000002,2.1232,2.1546,4.51362,3.820995,2.720075,3.31127,3.390166666666667,3.5629333333333335,3.595133333333333,3.6878333333333333,3.21059,0.56930125,3.8577333333333335,2.5418499999999997,2.7555099999999997,3.55045,4.53587,4.793045,5.4725,2.507775,4.085826666666667,1.1239266666666667,2.79902,2.79902,4.858315,3.380255,3.86172,3.85965,1.58132,3.23472,3.762245,1.1650257142857143,4.011454333333333,3.535626857142857,2.1590939999999996,0.374204,4.11779,3.340705,6.793205,3.157675,6.1495,3.28412,3.893845,4.001205,1.86352,3.455485,4.62586,3.41636,3.4122,3.078796666666667,5.859567500000001,2.1701575,0.99031,1.9342366666666668,1.7180933333333333,5.36495,2.44311,2.4174233333333333,2.0052275,4.53636,3.97898,4.152515,0.634528,4.38964,3.98778,2.9003833333333335,2.701696666666667,3.079053333333333,3.4009336111111113,4.138393333333333,1.6119966666666665,0.6621157894736842,0.8176071428571429,3.6963666666666666,4.633275,6.131201666666667,4.82436,5.1841,5.63705,1.4270571428571428,4.0659,2.1782166666666667,1.0049,5.40235,5.9459,4.26416,4.84225,4.268315,6.77259,4.224,7.019286666666667,3.74292,2.712813472222222,6.0716,10.518979756410257,2.8019133333333333,0.727705,3.64092,4.267435,2.252965,6.3579,4.34622,3.93891,2.866346666666667,2.866346666666667,5.7559,3.438445,3.91599,5.0708,3.9381660952380955,2.480658857142857,1.13939125,5.3726,2.635475,5.49816375,3.711035,4.581275,2.927725,2.20851,4.63199,4.84335,3.5055666666666667,4.05149,4.57125,28.297968095238094,2.1970525,2.530075,2.3068625,1.6891833333333333,2.61177,1.3923514285714287,2.856196666666667,2.99942,3.497033333333333,3.2872333333333335,0.6919923076923078,3.2557833333333335,4.44526,3.16776,3.3093766666666666,3.87096,5.942374999999999,4.788345,4.33703,3.97715,4.097535833333334,4.05423,3.4971666666666668,1.7047825,0.9812249999999999,1.3950466666666665,2.72854,1.5040533333333332,3.2069533333333333,2.4258866666666665,2.35886,1.75812,2.631815,2.019545,2.05411,2.991995,4.17047,3.638765,4.12571,1.5052720000000002,3.9354333333333336,2.5292499999999998,3.889895,2.3213033333333333,2.61963,2.36501,1.4722133333333334,3.90507,6.542278333333334,2.76579,3.747375,4.02211,2.60995,3.268371666666667,3.6070666666666664,4.151815,4.536095,0.3270613127413128,0.3270613127413128,4.990095,5.18705,3.877985,2.94931,5.35345,4.46448,0.6656192307692308,4.806205,4.75879,3.81893,6.5721,4.65516,7.71693,14.260608333333334,13.087578461538463,4.34277,4.242785,2.58346,0.6099284615384616,2.510666666666667,4.8592,1.3383983333333334,4.61257,3.500033333333333,2.9951233333333334,2.1302566666666665,2.0120333333333336,5.0189900000000005,4.60442,9.300078690476191,5.20015,4.09682,7.364474848484848,3.4543,3.33296,1.39646,5.432806666666667,1.99004,2.473666666666667,2.7023333333333333,0.2784378125,2.98156,3.80805,4.594636666666667,0.9213319999999999,1.307295,3.967725,0.54652,0.54652,3.5456312500000005,3.379633333333333,3.4284666666666666,5.548,4.333985,5.6578,3.753435,4.142335,2.90713,3.15822,2.66005,0.9151583333333333,2.8071800000000002,2.858825,3.137215,7.0319199999999995,2.83095,9.505825,3.073325,6.55885,2.943825,2.2146675,2.569475,2.750125,1.751585,2.4309675,2.07218,3.72043,2.427135,3.95571,2.92827,4.022358333333333,4.022358333333333,2.7788633333333332,2.7788633333333332,8.838217166666666,2.6102633333333336,0.8020910000000001,2.5945266666666664,2.5043333333333333,2.5394133333333335,3.95571,1.906114,1.917404,1.51983,3.71491,4.535245,1.7552475,4.36717,4.065025,6.0020677777777784,6.549323333333334,2.2110433333333335,4.244245,6.80271,4.388855,3.242925,2.5451,3.981085,3.5103284848484853,4.32703,5.41738,7.732102666666666,3.5674512500000004,3.449705,1.2248933333333334,4.25763,4.401255333333333,4.320035,3.7518208333333334,4.494185,2.636035,2.751253333333333,6.750135,3.368995,1.546702,5.87321,3.721015,2.99639,5.1296,2.99639,3.084475,3.783095,5.07145,1.06497,4.0937166666666664,4.604665,3.813065,1.4056716666666667,1.8084325,4.306365,4.06842,2.73957,6.894341666666667,4.041545,4.042695,4.197545,4.62681,1.4026625,3.98977,2.64149,3.78591,4.060615,4.066815,5.03215,3.05276,4.084965,5.2351,2.069458,1.8384125,3.508366666666667,3.8156666666666665,3.474266666666667,2.8905966666666667,3.6618,3.1470233333333333,5.33965,3.318585,3.499505,2.71758,1.8105333333333335,3.7311333333333336,2.1808033333333334,3.1363,3.101515,2.81178,0.69490625,2.13825,1.7311266666666667,3.444345,1.9613140000000002,3.671444,3.96355,1.326114,3.1743775000000003,4.634905,0.8389,1.4135366666666667,3.480195,3.78177,3.24075,2.14003,1.8682666666666667,3.48885,2.5657233333333336,1.6667733333333334,2.886825,1.97693,1.203052,1.4039975,6.3791899999999995,3.252115,2.260015,2.458655,2.3706025,3.9076,0.8751425,0.36693642857142855,0.7991857142857143,5.02225,1.9549107142857143,4.6782,2.05005,2.249096,3.601117142857143,1.352021142857143,1.105328,0.720808,0.5724071428571429,2.9979891666666667,6.60355,3.060235,4.270985,0.35356642857142856,3.64787,17.95031966666667,3.200485,7.3723985804195795,1.1359375,1.1359375,1.1359375,1.1359375,5.947858333333333,4.13686,3.91136,2.1610566666666666,3.16381,3.71502,5.4193,3.75173,3.33957,4.396095,4.252145,3.96795,3.676244,4.24255,4.97277,4.11216,4.87926,3.48695,4.21508,2.5925866666666666,3.678295,3.331785,3.883485,3.88558,4.2447,3.17062,2.4532325,2.4584733333333335,4.195465,1.2529821428571428,3.81125,2.760313333333333,3.374664666666667,4.0953975,4.35173,3.105155,2.967025,4.975515,4.304445,3.156835,5.34375,4.91761,3.338575,3.671745,1.716106,1.716106,2.122785,4.650615,3.903625,5.662125,5.1056,3.631373333333334,6.49345,4.86635,2.1402275,9.248255,5.4274,6.82867,4.424895,2.8546933333333335,3.88074,0.25609862068965517,0.8157725,4.233516,3.51726,5.0745,3.2082033333333335,5.942866666666666,5.02445,0.5695607142857143,2.700525,0.44199599999999994,1.7273585714285713,3.348085,2.426915,4.345445,3.69427,3.168815,3.431855,3.46827,3.63376,3.365365,3.60363,3.963015,3.086635,1.7273585714285713,3.38398,2.1227,3.758835,2.21341,3.7513,3.556685,1.687655,4.405745,2.94688,1.3732466666666667,5.7951,4.7873,4.21255,2.8902300000000003,2.9910366666666666,4.29557,1.9620600000000001,1.421436,2.3757533333333334,2.5891533333333334,2.5685866666666666,2.20468,5.21185,3.500955,5.055751666666667,3.8983914285714283,4.982575,4.17995,1.698734,5.299,4.434085,5.4042,4.212955,7.0222,1.7413825,4.85845,4.083685,3.132515,1.87043,1.71106,3.893505,4.38188,2.31254,2.6724129166666666,3.477875,3.477875,2.7962666666666665,3.128436666666667,3.42877,3.93309,3.58421,0.801376923076923,3.148665,4.35385,5.105319444444444,3.26833,3.09396,1.764265,2.839505,3.37269,2.15772,4.47468,3.71053,4.63905,2.0828533333333334,1.0086545454545455,6.10603,3.67776,3.5192333333333337,3.3241933333333336,1.7623919999999997,30.334065928571427,4.234715,3.320355,5.61535,4.41463,0.8546083333333333,7.227454999999999,2.04857,5.80705,1.493145,4.41258,5.397978333333333,3.66758,3.275015,2.29737,3.9134333333333333,4.92185,2.11511,2.7148299999999996,3.665385,3.222185,2.577245,6.2601,2.505275,6.2544,1.1984625,4.30653,3.577895,3.915725,5.30515,3.186545,2.448983333333333,4.14432,4.68228,3.7056175,3.7056175,6.2576,1.6406425,4.29184,7.027688333333334,3.4106,4.104565,3.389325,5.63755,3.485275,4.18064,1.3932625,2.55447,4.40781,4.347835,5.5537,4.42488,2.227045,9.5488,3.189995,3.69304,1.7354,3.489955,2.2541433333333334,2.7188433333333335,2.2139041666666666,1.28335,2.6305366666666665,0.9128985714285714,1.0700028571428573,1.0700028571428573,1.0700028571428573,1.9501133333333334,0.5594475,3.864355,1.2575266666666667,2.7827866666666665,0.97144,1.83415,2.6553333333333335,2.28537,0.76825,1.9442066666666669,1.7896533333333335,2.4239533333333334,1.6559259999999998,1.6559259999999998,1.6311600000000002,1.8796099999999998,1.393886,1.9858366666666667,1.51499,1.19286,2.43646,2.381245,5.939,2.1243225,5.55285,17.875650166666667,7.05631,3.721755,3.662025,3.3976333333333333,2.80125,2.865936666666667,3.0680033333333334,0.7307483333333334,0.991214,0.991214,0.64125,2.4419133333333334,3.747065,3.685385,1.568322,5.1835,3.937905,2.40987,3.973565,5.0297,3.905545,4.29976,3.472566666666667,3.10253,3.42722,5.65785,3.412433333333333,5.09365,0.525918,0.525918,2.39747,3.245,4.926405,4.33221,4.242805,4.679005,7.5410580000000005,7.6795,3.41331,2.47454,4.48023,3.93069,2.5113233333333334,2.294985,3.1556,1.3784333333333334,3.6312,2.28826,1.7874225,3.4558999999999997,3.86111,2.1393525,5.41738,1.580385,3.5214,3.676995,1.1347514285714286,3.7498666666666662,2.9216033333333336,4.816195,1.1353733333333333,1.72687,2.4175825,2.0878225,1.6775825,2.63385,2.042085,2.07643,4.54023,4.47242,2.52175,1.772055,1.4361833333333334,3.6841666666666666,1.9680033333333335,2.72325,4.67506,7.27645,2.679409166666667,3.0907,3.43528,3.555565,2.40024,5.1206,4.451025,3.226115,1.4255625,4.46388,2.268945,3.240576666666667,2.551095,3.674475,5.0933,5.57155,2.131603333333333,2.7551,2.9482033333333333,3.4751333333333334,1.9581166666666665,1.5689,5.5997,3.4856,2.208307090909091,3.1853833333333337,3.1244266666666665,2.45586,3.3227666666666664,3.3012099999999998,3.689766666666667,5.31125,4.22764,3.073586666666667,5.29875,3.29324,2.55106,3.64821,3.839275,3.97478,6.1422625,1.8961459999999999,3.85948,2.581785,3.91082,3.835605,0.59029625,2.311625,2.24888,3.37904,2.776675,2.207765,2.758975,0.612376,2.789846666666667,4.746245,2.5117,4.250735,2.51748,3.979695,1.93729,4.520525,4.28544,2.0235399999999997,3.38789,6.871897499999999,4.09721,4.45338,4.72233,7.1184857954545455,4.461055,4.36647,2.16031,4.546075,3.10387,1.89672,1.918765,3.0498499999999997,1.0093142857142856,2.2812666666666668,2.5006,2.615133333333333,3.397933333333333,1.771596,3.28794,1.9445066666666666,5.02485,6.1632275,1.02589875,1.8226533333333332,2.54704,2.8488066666666665,1.9546066666666666,1.09595,5.519241666666668,2.151965,2.7072066666666665,2.964976666666667,2.8836366666666664,3.164376666666667,3.245665,2.238306666666667,2.840066666666667,2.2368333333333332,4.149745,3.82409,3.974335,3.1439066666666666,3.111916666666667,0.833586,1.85287,2.162415,2.0300766666666665,2.551416666666667,1.1180216666666667,2.7548266666666668,3.02176,3.669375,1.9396033333333333,3.346085,3.455235,5.17195,3.27741,0.5962325,2.10156,2.908716666666667,3.5182333333333333,0.7771990909090909,2.86172,3.390428,3.5563000000000002,3.016856666666667,3.25204,3.82494,3.7654333333333336,3.02975,2.018265,5.70055,5.1963,5.21585,5.4315,5.7932,1.8107933333333335,3.52097,3.7353,3.394966666666667,2.99897,2.7446066666666664,3.8518333333333334,3.5257,3.0520300000000002,13.962186666666668,4.36619,1.09764,2.85401,1.6646260000000002,3.368933333333333,3.32737,2.3329233333333335,5.782865,6.421106833333333,2.3060133333333335,0.846487,4.165005,3.3838000000000004,2.939085,4.884655,5.12875,5.6004,5.0092,3.573595,1.90368,6.527975,1.2248933333333334,6.5369175,4.66844,2.57186,4.030375,6.936775000000001,5.9412,2.29049,1.5024716666666666,2.0305225,7.1396733333333335,1.552075,2.97968,2.590545,4.262010833333334,5.69435,4.3111,6.4681,3.82818,5.1143,3.650895,8.6318,5.0856,5.90235,2.349595,2.594225,11.429314999999999,3.440575,2.68793,2.46704,1.6297066666666666,2.363183333333333,3.2155299999999998,0.696665,1.06191,1.0861042857142857,3.49906,7.029203333333333,2.97999,1.4580266666666668,4.94225,4.78775,0.572901,4.53922,3.94569,5.03175,4.10119,3.61322,2.6775566666666664,4.195575,9.940065,1.8057875,3.9412625,4.813015,4.30867,3.76542,0.8478249999999999,3.579966666666667,3.8849666666666667,1.7289199999999998,2.547216666666667,2.364196666666667,2.540826666666667,2.36969,2.2331666666666665,2.32148,6.0352500000000004,5.1297,3.894945,4.7935316666666665,1.6620866666666665,2.351665,4.947595,4.58825,4.679015,4.406245,4.57576,4.657045,1.716106,3.880125,7.896706666666667,1.3267316666666666,1.80169,2.63679,2.6696899999999997,2.7588266666666663,4.7503736666666665,0.8176071428571429,2.449355,3.360855,5.8009,4.539775,2.1939533333333334,2.87373,1.998,0.55456875,2.1258375,2.92509,7.6773050000000005,4.28624,4.59231,0.9037409999999999,4.5963,9.316300583333334,10.698261666666667,3.353665,1.2313,3.689395,3.513385,2.6853266666666666,5.33355,4.939495,3.891845,2.0228225,3.7832000000000003,2.21835,2.58303,0.7969227272727273,0.3967586666666667,2.556385,3.364405,2.0079676666666666,3.36714,3.2497066666666665,4.023465,5.1576,1.55908,3.1777333333333337,2.1690899999999997,2.1690899999999997,2.2753,3.066345,5.99235,2.6938833333333334,2.6644366666666666,3.3631666666666664,3.4769,4.20799,4.371535,4.37088,4.105985,4.17727,4.258995,7.0102,7.924018333333334,1.99269,2.2909533333333334,3.0458966666666663,0.9034633333333333,0.674335,4.126615,2.313745,5.275,2.90089,3.0241366666666667,1.841152,1.50219,3.887565,4.138735,4.327615,2.145166666666667,1.28393,2.6826399999999997,1.8733000000000002,2.5907966666666664,1.10508,1.10508,2.7162166666666665,4.699265,3.013275,3.214535,3.258095,2.221725,20.0951766969697,3.70823,5.4889775,4.18638,4.51373,4.194195,3.4496,5.5476,6.1292,0.9008283333333332,0.9008283333333332,0.9008283333333332,2.757616666666667,1.7704428571428572,3.456933333333333,4.369045,4.19731,3.243745,4.806805,4.28561,0.8609800000000001,2.38931,2.6134633333333332,5.9800805,3.3550905,4.081298,4.85702,1.8635375,1.97156,2.4268899999999998,0.51963,0.763584,1.84227,1.999,2.905195,13.252333333333334,2.5961933333333334,5.31295,0.7489357142857143,9.674545,5.6654,3.765995,4.436135,2.73285,5.4871,2.73285,2.835146,3.357825,3.79167,3.387745,3.964245,4.522915,3.474105,5.82225,6.883818,1.8398533333333333,3.490266,2.821785,27.184263312741315,1.627092,6.3598,5.117358,3.78005,4.51758,4.67515,2.689815,2.56839,2.245925,6.5865,7.05845,4.7361,4.695845,4.361685,2.011815,1.84486,4.320615,0.36417692307692306,0.36417692307692306,0.36417692307692306,0.36417692307692306,4.178635,3.2761416666666667,1.0242366666666667,1.80453,1.1637444444444442,4.43589,2.478,2.40329,7.289015,3.188696666666667,0.16975586206896554,20.676311833333333,4.733781666666666,1.790472,1.3508771428571429,2.1807,1.9662739999999999,2.3567775,4.57268,3.043405,3.996165,4.306815,2.3822933333333336,7.628385000000001,2.744025,2.042235,4.03291,5.9785,8.682353333333333,4.32671,0.29757804878048777,3.55502,4.177715,3.0422666666666665,2.1528825,3.1045133333333332,1.633805,1.633805,4.07083,5.63858,11.465805,9.204525,0.6600555555555556,2.56154,3.9994,3.167235,4.91701,4.684495,1.6921220000000001,1.6921220000000001,3.774345,4.559215,2.99828,3.668855,4.95122,5.3317,6.079295,2.16536,4.656685,4.322665,2.68866,2.912046666666667,3.1646,5.026,4.28247,5.6071,4.16768,4.46762,3.830065,4.36208,4.27213,5.4591,2.68068,3.254443333333333,1.146744,4.369225,4.189565,3.849385,1.7169519999999998,1.9943733333333336,3.7678333333333334,2.8691333333333335,2.6467233333333335,4.454453333333333,1.8011,2.852725,3.6072,3.5639000000000003,2.36026,3.7218666666666667,4.4157,3.4218333333333333,4.0713333333333335,4.633088333333333,2.1667,2.630733333333333,2.5867999999999998,5.1063,3.1766733333333335,40.96661275,2.354905636363636,2.354905636363636,2.5815433333333333,3.3796999999999997,2.2660733333333334,1.7406466666666667,2.9491033333333334,1.63939,0.8072923076923076,5.01315,7.04451,4.19444,4.144155,5.61005,1.9147,4.44699,1.814406,5.26395,4.82242,5.68925,4.21207,1.7047825,4.114245,5.30165,4.75273,5.33055,5.34725,4.141155,3.378766666666667,2.9961300000000004,2.192175,1.81667,4.633455,2.39918,3.8329575,3.8329575,2.2402466666666667,1.5475266666666665,2.1934299999999998,2.44654,2.2575533333333335,5.15782,2.8351866666666665,1.178085,1.178085,3.085516666666667,2.3899966666666668,2.5330866666666667,2.6244333333333336,2.7136933333333335,2.504773333333333,2.3678733333333333,2.2310677500000002,3.0270506071428573,1.5556366071428571,0.7959828571428572,62.23649474107143,2.373682,3.4690666666666665,2.339792,0.9124700000000001,3.7825153333333335,1.597994,1.597994,3.2384866666666667,2.905416666666667,0.75965375,3.1052,5.317663333333334,3.4586666666666663,2.71911,2.8573866666666667,2.1507533333333333,2.6364566666666667,0.282554375,2.6043133333333333,0.7908999999999999,2.488723333333333,1.190002,1.190002,3.3003433333333336,1.79492,2.5946700000000003,1.5553973333333335,3.4494666666666665,1.5553973333333335,2.130453333333333,2.5363233333333333,3.2221933333333332,1.322346,1.322346,2.9292,1.42323,3.1673733333333334,2.2139666666666664,4.799745,4.12641,13.290621833333333,7.0405025,3.48341,2.55714,3.94075,5.2487,5.52525,2.746525,4.25149,3.85854,2.2085966666666668,4.455425,3.4947666666666666,2.74517,4.714705,2.2672833333333333,1.0846457142857144,4.01298125,2.9206,3.06821,0.7944042857142858,2.67097,3.479155,4.23205,4.40551,6.7114,2.705833333333333,1.907894,3.935045,4.431695,2.3259425,2.5657625,1.96769,2.1201233333333334,0.9018499999999999,5.4135,4.442205,3.9393,3.728405,3.1433366666666664,5.0894,5.2325,2.879466666666667,1.7616500000000002,0.5382586666666668,14.317603166666666,0.5069136363636364,0.5069136363636364,0.5069136363636364,3.05692,3.9526,0.5069136363636364,6.990668333333333,4.384033333333333,0.727063,0.727063,3.4266,3.253245,2.98426,4.39549,4.807,4.273065,2.58265,4.825258666666667,3.567265,3.62409880952381,4.68658,2.897349,2.36529,2.3364875,2.707375,1.6016725,3.3827808333333333,2.994123333333333,2.325425,2.133745,1.931985,1.8973666666666666,1.5723475,2.548925,1.0855044444444444,2.536575,0.6119242857142858,4.96659,1.7136625,0.7304541666666666,2.4174575,8.01044,2.604065,2.1802734999999998,3.1190350000000002,7.40389,2.56819,4.62387,3.169065,6.66661,3.664135,3.97196,3.99584,4.80453,3.09128,4.339646666666667,1.18036,4.13805,2.4238433333333336,2.450276666666667,2.63066,2.287935,2.1303,1.2602625,5.53045,0.9459,4.93402,5.5577,5.2557,5.5929,3.8663333333333334,2.35897,1.938122,2.9923266666666666,2.9642999999999997,2.63873,3.8036,2.723675,4.4048,1.814996,40.21810206349206,4.548045,2.3778966666666665,2.8572133333333336,2.969203333333333,1.5905666666666667,6.006805,4.15407,2.52651,3.1490733333333334,2.49626,1.6676225,5.48455,0.8040571428571429,5.38049,1.3331628571428573,3.4072999999999998,3.4306,2.8339766666666666,1.3836375,4.8909,1.70965,1.70965,2.5147233333333334,2.8739816666666664,3.5337,3.4723666666666664,1.4353966666666667,2.8756566666666665,2.6783,6.4037448333333336,2.8764299999999996,3.6797066666666667,1.0204316666666666,1.4397966666666668,3.0119866666666666,0.881954,5.375436666666667,3.4830666666666663,2.85453,3.673033333333333,2.9022166666666664,2.7437799999999997,3.328943333333333,1.7459466666666668,2.3706025,2.5554366666666666,3.445133333333333,2.5351733333333333,3.7043666666666666,2.969186666666667,0.611608,9.72608717948718,2.7368666666666663,5.3473,5.08975,2.7153533333333333,3.019546666666667,1.3251325,2.1323433333333335,2.137265,1.3251325,4.64715,0.468681875,0.468681875,1.0802175,1.0802175,0.859855,0.859855,2.52305,3.02173,2.333205,1.382555,1.99063,3.69938,3.113825,4.746025,4.99816,2.0549600000000003,4.358225,2.40102,4.735835811965813,1.6968225,1.6968225,2.26519,1.8169879999999998,3.7963775,2.0237275,4.711185,1.5819349999999999,2.59875,0.5778453846153846,1.1695357142857143,2.1126375,2.1703975,2.0199325,1.4511825,4.52972,4.330775,2.68019,2.7074433333333334,1.3546066666666665,0.6980866666666666,2.31961,3.861175,2.73686,4.643885,5.23255,5.19905,4.09877,6.46368,1.6235183333333334,6.081655,2.108505,4.674585,4.74737,5.8433720000000005,3.6626999999999996,2.218145,1.74024,1.977566,1.977566,2.505875,2.505875,4.41202,5.70675,0.9137359999999999,4.12388,3.332135,3.517535,2.531476666666667,1.413005,2.7727533333333336,4.242785,3.9858,1.79658,6.546,5.1682,1.7371299999999998,1.32935,3.988575,4.272843333333333,3.565035,3.572315,4.0014,0.6432492857142857,3.6302,3.2826766666666667,2.681093333333333,2.8851633333333333,2.2783433333333334,3.6140333333333334,1.511642857142857,1.511642857142857,1.511642857142857,3.1810066666666668,3.1375433333333334,3.292213333333333,3.407158130952381,2.40615,1.2665514285714286,3.2725033333333333,3.2147633333333334,1.4276628571428571,2.9200766666666667,2.697783333333333,1.2680028571428572,2.9545866666666663,2.9285666666666668,2.9240033333333333,2.8777566666666665,2.67479,2.09436,3.21096,4.947855333333333,4.19658,0.970978,1.420912,0.6336820000000001,3.600633333333333,8.736615,2.9925266666666666,3.334715,3.3574,4.243810833333333,1.8911175,7.528896666666667,6.666666666666666,2.69678,2.4237277142857145,4.147005,4.90664,1.553094,1.308174,1.35415,2.001295,10.659563333333333,2.57086,3.0069199999999996,3.0049356666666664,3.911825,2.2574633333333334,1.159525,5.77995,1.06857,3.9941092307692307,4.995395,3.27011,3.27294,3.246595,4.997095,1.1597183333333334,2.1051675,2.0544206666666667,2.0544206666666667,3.854985,5.6312,9.0604175,4.44368,3.4058,4.91929,1.8135675,2.2966925,4.7061,4.103075,3.92051,1.537795,2.829916666666667,3.54468,3.944745,2.4570175,4.165255,4.113325,4.381035,4.18917,4.393445,3.895845,5.27625,3.26576,2.3848833333333332,4.40836,2.95707,3.811755,2.17727,2.6328,2.541695,5.8001,2.65527,3.3003203409090904,1.701535,2.42884,3.400055,2.0797475,2.06047,0.8584466666666667,0.8584466666666667,1.770795,3.69104696969697,4.027675,2.6832999999999996,4.439755,3.268114166666667,2.4736077142857145,1.02400875,3.524525,1.6575075,4.205575,4.13762,0.9136341666666667,1.844685,3.833975,2.9773125,1.620395,1.6688833333333333,5.024602857142858,1.0954066666666666,2.791215,3.242605,2.795945,2.463005,2.6886330000000003,2.079805,0.9814675,2.913315,2.99033,3.34858,1.5557033333333334,1.6610500000000001,1.823455,4.596205,2.10829,4.66009,4.54897,4.5058,5.92945,5.57025,4.217255,6.17788,4.097369047619048,0.8012127272727273,2.89551,4.537695,3.83931,0.48962727272727274,0.8842019999999999,2.942825,4.34687,4.94474,4.8258,3.333919642857143,2.825455,4.69456,1.8016400000000001,2.400935,4.59375,4.16235,3.4273,2.90218,3.7236,4.819615,2.98304,5.2888875,0.9612170000000001,3.367695,2.85309,4.65246,4.29034,4.397605,2.15706,2.63286,2.87278,2.1856166666666668,5.02515,3.437515,1.4427285714285714,2.74403,4.06734,1.438978,5.725295,1.831944,2.6834066666666665,13.77707971839856,2.964323333333333,1.50499,1.6153449999999998,2.3726233333333333,5.48984,1.656164,4.105449,0.6759338461538462,3.3294099999999998,4.103045,7.521482499999999,2.4337233333333335,2.845833333333333,2.845833333333333,4.82998,4.395635,3.554,3.28758,4.882395,5.1643,2.471915,3.26375,4.777,1.2492416666666666,3.1403233333333334,4.51875,4.03358,3.40775,2.4629499999999998,3.53968,3.97509,6.36945,6.0555,0.745889,3.944395,3.29329,3.6230666666666664,4.291485,3.994955,3.902385,1.650158,4.942605,2.56615,2.927295,4.14516,4.30407,4.62692,0.9173757857142857,2.748063333333333,8.733133,1.5230666666666668,2.158516363636364,2.4014325,3.871845,3.502745,3.36578,0.6700745454545455,2.3443175,1.6937425,2.23633,4.36997,5.4956700000000005,2.79119,8.931215,2.2584566666666666,2.7410333333333337,1.0666499999999999,4.4847,5.07895,2.05254,5.62291,2.95043,3.1451,5.3572,4.398935,4.76386,2.12451,1.6978275,1.6978275,2.72455,3.27222,4.5618083333333335,1.549095,5.70963,1.4609133333333333,3.838555,1.39003,8.830110333333334,4.82783,2.6781,4.93718,4.410555,3.862905,1.119195,1.938935,3.659133333333333,3.1602933333333336,3.5201666666666664,3.6778333333333335,3.817145,2.735605,3.247805,3.3206,1.59211,2.5358899999999998,1.86822,2.86607,2.0565533333333335,5.117860833333333,3.2713666666666668,1.8131766666666669,2.992513333333333,3.41017,4.79608,6.3766,6.0669,3.03717,3.595775,3.124725,3.06029,2.95192,1.2278499999999999,0.965508,6.83555,3.373365,5.87585,5.0911,6.40905,4.99106,2.97814,6.49485,2.4023,0.4392622222222222,5.68405,3.201385,3.782905,3.4072999999999998,1.40959,4.819305,1.14581,4.70832,0.9154275,1.2152566666666667,2.966226666666667,2.4234233333333335,2.601662,3.836485,5.20795,6.302191666666667,6.302191666666667,5.51375,5.51375,4.75479,2.929126666666667,4.3236,1.04238125,6.2281,4.340865,3.6547,4.324505,3.702395,5.10475,1.956625,5.05065,3.29665,2.995905,4.189865,2.67007,4.774765,5.1643,3.569495,3.368785,5.00965,4.09648,5.72055,2.790425,3.092563333333333,5.9692,4.06155,2.9067633333333336,6.330181666666666,1.60002,2.152935,4.66344,4.257805,5.1978,3.94714,2.055657,2.055657,13.472708694444444,12.1716,4.87316,3.51585,2.9571305128205125,4.59194,4.667515,2.665646666666667,3.4160333333333335,3.14489,4.204400000000001,3.6499666666666664,4.95938,2.121515,8.524619999999999,2.29756,2.0639975,5.9547,2.3326,5.0079,4.39645,4.62566,0.8167044444444445,3.4429,3.70898,0.971512,3.034605,3.798305833333333,1.461344,2.048433333333333,2.9363499999999996,2.6499366666666666,2.5917266666666667,3.1376066666666667,2.5530066666666666,0.5058207142857143,2.8443799999999997,2.887723333333333,2.800193333333333,3.2656899999999998,1.6488600000000002,3.0361933333333333,7.196703333333334,4.462925,2.2702666666666667,2.0542433333333334,2.62196,3.863595,2.40862,3.671382,18.561635000000003,5.4332,3.417395,5.1933,3.72634,5.330145,1.54509,5.8058,1.663095,4.668115,4.51783,5.40795,4.989715,0.9687283684210527,6.2645,2.4926,4.957985,2.71487,4.228235,4.334785,2.84177,2.2441666666666666,1.716056,2.0869975,4.38673,4.56012,2.421545,1.624775,3.23439,4.138386666666666,3.1657333333333333,6.3249,2.3775375,4.17034,4.431785,3.911765,4.316195,3.30396,4.20944,4.663495,3.9213,2.703386666666667,2.703386666666667,5.432886666666667,2.01421,2.7022266666666668,3.92241,1.7642019999999998,7.37906,3.545825,4.553406666666667,4.3049,4.183415,1.8901800000000002,4.38158,5.25245,3.81955,1.9656775,3.57038,3.302625,1.1323575,1.565005,1.2911533333333334,0.7177783333333334,1.6904966666666665,1.0196966666666667,4.586395,1.2077333333333333,2.7829833333333336,1.5859500000000002,1.86264,1.1109166666666666,2.4294725,2.3259525,1.59557,3.1051933333333337,2.64652,4.659601666666667,1.537865,2.5148,3.2067566666666667,3.098926666666667,2.3757699999999997,4.477805833333333,4.55441,5.104074166666667,20.522073833333334,2.608,2.1983625,0.6393215384615385,0.632489,4.255816666666667,1.9093820000000001,4.056095,4.734405,7.3192485000000005,4.01914,3.60221,4.07197,3.1611366666666663,3.2276966666666667,3.1330500000000003,3.7692333333333337,3.2172933333333336,6.46455,3.9368,0.925098,1.12962875,5.42575,3.172166666666667,2.6058,2.1264233333333333,2.29236,5.6675,4.848825,2.614225,1.09468,3.44608,4.872655,8.786693333333334,5.500286041666667,4.428895,4.17334,5.4319,4.71045,4.450945,4.805155,4.002615,5.29825,1.70087,5.77025,1.5771857142857144,5.102,0.7304266666666667,4.74517,5.30365,6.0126,6.29865,4.679275,5.66265,5.61995,6.286785,1.9232833333333332,1.5885285714285715,5.5787,3.16188,6.696518333333334,5.18085,5.371520833333333,4.993225,6.27405,1.2939814285714284,4.415235,5.3052,4.1906,4.798105,5.4714,2.635475,3.953785,3.51523,4.522175,1.0042333333333333,1.6507500000000002,1.366244,4.844795,4.1524,3.437845,2.4775033333333334,2.9915566666666664,1.7019399999999998,2.1567333333333334,0.3931825,3.5631,1.67819,2.32955,2.9687666666666668,3.294503333333333,3.1936533333333332,2.628125,2.537675,10.464786666666665,3.775933333333333,1.760773076923077,3.951615,0.8887363636363635,4.71831875,1.3916125,1.9079425,1.9371025,1.0368425,5.782576666666667,1.1815781944444443,1.1815781944444443,1.1815781944444443,3.005326666666667,1.89136,5.11315,3.053875,1.67694,1.55554,2.4380625,1.41335,2.08826,5.389679166666666,0.8775766666666667,4.30574,4.225225,3.2227,1.0264657142857143,2.2142445,2.1176525,2.1176525,1.5848566666666668,3.8287899999999997,4.597615,5.3148,5.6426,4.3287,5.4566,2.876886666666667,2.0632325,3.034745,5.12795,3.46498,4.286845,1.05662375,3.9256335416666666,5.5088,1.836815,4.20321,3.0494833333333333,4.61853,4.882005,2.360705,6.8952,6.33725,4.67426,4.711775,4.249265,3.28994,8.21806,3.93088,6.131706666666666,3.32728,3.2074533333333335,5.2669,2.6373166666666665,5.2249,4.744705,2.79456,3.202735,3.92593,1.62667,10.7677,4.515155,3.144805,15.728821130952381,4.231185,1.7517833333333332,2.845693333333333,2.15849,2.987245,4.085395,2.6192929166666667,3.47312,3.454025,3.15415,4.13535,6.38157,1.2491999999999999,2.286995,4.13775,4.59281,5.0369,2.1932875,0.5911053333333334,4.90831,4.294005,2.0696275,1.290955,4.69242,4.58164,0.9561144444444444,3.86812,12.624667500000001,1.2831954285714287,0.3953064285714286,3.6585,4.506553333333333,1.0754666666666666,4.13362,4.085055,6.080283333333334,1.3047833333333334,3.70832,4.361725,3.36175,4.40326,4.6294,5.20465,8.795960000000001,3.416395,4.25301,5.3956,16.09919,3.4611075,2.8801,1.1576425,2.35443,1.1922875,1.92891,1.3253375,2.015515,1.70392,2.0622925,2.402235,2.44532,2.1202825,5.36865,3.98741,5.95685,3.25191,5.717356666666666,2.8002766666666665,5.08165,3.4064,1.235465,3.74175,2.0190725,2.7871819999999996,4.857835,4.80227,4.67865,4.2716,3.1910633333333336,3.5688666666666666,2.465613333333333,4.3671,3.738035,2.183905,1.95365,3.5809333333333337,4.605695,3.92095,2.3774366666666666,12.211373333333334,0.70312,2.62867,4.92926,2.5426729999999997,1.184974,2.86809,7.388808333333333,7.036128333333334,4.705545,3.942145,3.984525,2.0758,2.512345,2.8829396666666667,2.0875966666666668,3.792975,5.62765,4.315285,0.47606066666666663,6.1315,3.3378333333333337,3.4266,3.595966666666667,6.26115,9.14933375,4.36055,1.06283375,2.1589775,2.22692,3.71806,2.55974,4.22801,4.83252,3.6182,2.75863,4.070435,4.168725,3.728635,4.2026666666666666,2.47123,4.04031,5.2724,5.6704,3.4164333333333334,2.0296825,2.2832233333333334,29.490483141025642,1.45721,1.45721,2.2983033333333336,4.695876666666667,3.834985,4.58178,3.161385,3.206355,4.39037,3.0293200000000002,4.166285,3.0293200000000002,3.60359,1.9098766666666667,1.6974099999999999,5.87355,2.538125,4.760865,3.253385,2.68675,6.380605,2.1618999999999997,4.819355,5.17045,4.16686,3.427365,4.894505,2.08172,4.9396,3.411915,7.40686,5.50465,2.83495,4.028935,4.125095,2.117945,2.885073333333333,3.6797,0.4449564285714286,3.2444,9.97681,4.44519,5.07385,5.28795,3.4688775,3.22245,1.3391771428571428,4.140065,5.36875,3.275105,2.63887,4.90674,3.831035,4.17782,4.319905,2.62715,2.62715,4.08085,2.85566,2.666070681818182,2.032275,4.75496,4.014005,1.1645171428571428,3.696595,4.993945,2.93505,7.141430000000001,7.63943,1.4659879999999998,4.335405,4.936275,6.86501,0.8106180000000001,7.57001,3.5686799999999996,0.63115,5.2418,5.36095,4.99745,4.328495,4.815165,4.40336,4.84555,3.8294,4.046265,4.71635,4.905805,4.84765,4.853055,3.82398,3.35333,4.3064,3.455575,0.9647560000000001,4.40944,2.397475,1.68952,4.28826,4.603695,5.6692,1.06313,4.923206666666667,2.9883,2.6210299999999997,2.120465,1.2408599999999999,11.863511666666668,2.97624,3.2338566666666666,2.460573333333333,3.7009609523809526,6.051453333333334,6.300586666666666,2.6376666666666666,2.0472333333333332,2.14378,2.14378,2.14378,1.4020599999999999,3.77258,3.971465,3.481785,4.589585,8.174415,4.16707,1.159572,2.30147,3.167255,4.46269,1.784524,3.9988,2.757085,1.3696599999999999,3.0066699999999997,5.96527,6.9991900000000005,4.30701,4.117665,3.1468133333333337,5.19705,4.57268,5.468548333333334,1.8531625,1.8531625,4.455515,3.87031,2.5996259999999998,2.5996259999999998,3.71264,1.1690728571428572,4.750505,3.50886,4.138,4.348455,4.640065,3.3768,1.032797142857143,4.485565,5.05,4.360125,4.92007,4.94835,4.798015,4.46325,1.93177,1.4616175,3.403695,3.67632,3.246755,4.312615,2.179655,3.3343075,5.57825,2.759425,5.0272,7.6818550000000005,2.36188625,2.8390883333333337,4.432338571428572,5.138586666666667,1.7167,1.9960271428571428,0.98561,1.9960271428571428,1.6249033333333334,1.6249033333333334,1.523186,4.87463,3.25894,4.10856,2.333415,3.888485,1.5316533333333335,5.38775,3.163765,1.6947775,2.7440366666666667,4.269165,4.031975,6.325127,4.781795,1.342272,0.87549,3.511735,6.906598333333333,2.3711466666666667,3.602705,3.5283,3.5283,2.39481,3.42221,3.13676,1.4065332467532468,3.0765466666666668,3.47835,2.96893,4.3687,3.7905599999999997,1.4780425,3.7596,4.64223,4.419835,5.07055,4.358025,1.86184,2.371865,1.26122,2.3164825,3.4429,1.9098175,4.31263,3.218726666666667,3.438525,4.130095,5.0154,2.97623,0.977294,1.74707,1.4669725,1.1897222222222221,4.97213,4.077415,1.146744,0.21722086956521738,0.21722086956521738,0.21722086956521738,3.65529,6.183775,4.430285,5.18385,4.48784,5.2782,4.896875,4.363405,2.849665,3.60199,1.661115,4.87763,4.169195,3.88505,4.17408,4.26197,0.7867963636363636,0.7867963636363636,0.7867963636363636,0.7867963636363636,1.076968,1.076968,3.969615,3.988095,3.84437,2.74609,2.52824,5.91695,4.88388,5.63545,4.321545,2.921226666666667,2.5418833333333333,9.56278,1.51968,1.51968,4.219185,5.47065,3.3678000000000003,0.468681875,0.468681875,0.468681875,0.468681875,0.468681875,0.468681875,4.9331933333333335,5.1068,3.6005,4.444245,2.82619,2.82619,2.928275,3.0811673333333336,2.5798900000000002,3.257895,3.596755,6.96339,1.406066,4.64575,3.65049,3.96146,9.969809999999999,2.6025899999999997,2.84833,1.023642857142857,2.30704,4.947635,3.293335,0.96518125,2.89419,4.261935,5.4491,2.705425,4.867159444444445,1.034181111111111,2.0927166666666666,4.74108,4.80799,3.1240365,2.67718,2.285083333333333,1.3849583333333333,7.988148333333333,3.21672,2.1498766666666667,3.163905,2.770036666666667,3.93952,4.055165,2.66757,3.2050933333333336,5.92625,1.4799716666666667,4.939,5.19085,3.798505,3.873535,2.2756233333333333,4.29208,3.765715,4.146955,2.928575,4.78132,4.685225,2.7268233333333334,2.17051625,2.86252,2.795693333333333,2.846016666666667,0.7951736363636364,2.17265,8.27084,0.503518125,3.064743333333333,1.64735,2.5915866666666667,3.2880333333333334,2.8968066666666665,1.2841111111111112,1.747966,2.759923333333333,2.11822,3.66509,2.0801,2.8505033333333336,1.46868,3.2507520000000003,1.976715,1.1272771428571429,2.881936666666667,2.1639825,2.3661233333333334,2.693243333333333,3.0740366666666668,3.3349333333333333,3.365866666666667,3.3113433333333333,2.8562433333333335,3.0510099999999998,2.8016533333333338,2.6301,1.7011633333333334,2.43669,2.613096666666667,1.6421466666666669,3.10404,3.858927142857143,2.872306666666667,2.8480233333333334,3.0449366666666666,3.7028,4.846245833333334,3.02758,1.843562857142857,1.843562857142857,2.44383,1.1434725,2.501325,3.3259716666666668,4.5175366666666665,2.740775,2.0853,2.1496625,2.092495,3.673955,3.13019,3.8315,4.820765,1.7768,2.3913066666666665,4.277535,1.328918,1.328918,2.694175,0.6539792307692308,3.0211646153846154,2.08527,2.08527,2.8844833333333333,2.4412,3.2642433333333334,2.629525,2.161955,5.687373333333333,3.879415,3.879415,3.58727,3.185125,2.300475,3.12391,2.49048,3.01494,5.2143049999999995,0.48424833333333334,0.6642870000000001,4.139235,5.4612,2.942425,6.577291666666667,3.6839,1.633086,5.1776599999999995,4.57148,4.118105,4.25716,5.4464,4.87011,14.3905775,3.48243,1.5471933333333334,2.98743,3.84814,5.329,3.483855,4.14704,4.37992,3.644795,4.87628,2.80273,3.11922,2.816736666666667,2.37749,2.37749,3.99626,3.424235,3.28256,3.524115,2.342465,2.5849,2.1692575,1.89691,1.9910075,1.967375,1.9286675,3.6666185,3.613255,2.62845,6.56032,3.57954,2.3106966666666664,1.7992766666666666,3.420265,3.955255,4.620165,3.1432579166666668,3.54215,3.134675,4.46073,3.74922,4.3354,3.9724,3.73444,3.50085,0.6498766666666667,0.6498766666666667,0.6498766666666667,3.839575,2.581295,5.48695,2.572205,3.78684,7.477443518518518,2.8437133333333335,0.3501588461538461,5.429,0.759838,4.242995714285714,1.81281,3.788195,1.910175,4.44796,5.763561666666667,4.43811,4.270305,2.744476666666667,2.8809733333333334,1.4971766666666666,2.65091,0.4711636842105263,0.5558982352941176,2.7017233333333333,1.3994833333333334,1.9403175,3.86493,3.41075,4.98531,2.889666666666667,3.0588583333333332,3.474595,5.45873,1.8557025,0.9409257142857143,2.317815,3.619722,1.3420966233766234,4.878955,3.772075,3.495965,2.726383333333333,4.35377,3.0264333333333333,2.7319866666666663,2.7421399999999996,2.3086475,2.639746666666667,2.281895,3.23234,2.4279033333333335,5.560316,2.2476425,1.93753,2.4521933333333332,4.9488053333333335,3.340024,3.340024,2.42038,4.00932,2.3282925,3.349505,2.913365,0.5811646666666667,4.30704,1.9288125,11.614127777777778,7.02917,2.879265,3.253635,3.30996,5.09132,2.91414,3.44409,0.248634,2.04985,3.8094333333333332,0.8472583333333333,3.88792,1.3700700000000001,4.82075,3.400555,3.7806,4.085745,3.605805,2.198275,4.542255,3.772425,3.90723,6.22279,4.729905,2.919373333333333,3.021506666666667,1.6201560000000002,2.1146,4.30676,4.24452,3.9584574999999997,3.01826,3.324325,1.527648,2.96894,2.47469,4.019475,11.028251666666668,3.68377,7.189085,3.739765,4.409385,1.0135888888888889,5.169936000000001,4.66555,2.51902,2.8289899999999997,3.459,3.249086666666667,2.34003,1.71709,1.9314733333333332,3.698655,1.6336780000000002,2.8222199999999997,5.071367333333333,2.6733666666666664,0.9590003571428571,0.9590003571428571,3.531605,3.128082,3.128082,3.4804,2.860723333333333,3.2812176923076923,3.7421,3.3853000000000004,2.7337900000000004,2.33516,2.3791366666666667,3.129993333333333,2.22747,2.6638566666666668,1.623484,5.783389,9.471258166666667,0.6047246153846154,0.6047246153846154,0.6047246153846154,0.6873643881118882,0.6873643881118882,0.6047246153846154,3.144136666666667,2.9036299999999997,4.241855,1.4474850000000001,1.714265,3.323752,2.332543333333333,3.0715466666666664,2.4089466666666666,2.8753833333333336,3.454,6.540136666666666,3.0891133333333336,2.45147,3.3988666666666667,4.463515,2.5515933333333334,3.2636299999999996,6.07137,2.37682,3.4156666666666666,1.3569866666666668,1.3569866666666668,2.7862033333333334,0.5306842105263158,2.321826666666667,2.82365,2.87881,3.2390166666666667,2.3462833333333335,1.5366366666666667,2.68993,2.9589666666666665,2.43439,4.42205,2.419237,3.75459,2.986265,4.33649,0.521405,8.456446666666666,2.980308,2.980308,7.810819722222222,1.7601866666666668,1.99516,3.118653333333333,4.51956,2.3284266666666666,2.03279,2.6902666666666666,1.39909,3.4087333333333336,1.88025,3.0065435000000003,1.4377425,0.2685027272727273,0.2685027272727273,4.961005,3.933115,3.32463,2.9621566666666665,2.78544,3.368585,1.2568566666666667,5.61435,3.755655,3.01164,1.88519,1.1472125,2.150555,3.118653333333333,2.593625,2.123805,6.1670750000000005,4.32171,4.436825,3.92965,2.24103,0.6839283333333334,6.9837675,1.9867725,1.437905,3.521775,4.212065,2.273135,1.7349166666666667,4.72218,4.171095,3.3518000000000003,3.18195,4.650255,4.55114,3.6945,2.5252,2.5252,4.02844,4.965965,5.71845,6.53375,2.7952966666666668,3.721245,1.4686428571428571,2.584425,5.188728666666667,3.79434,1.839762,4.93809,3.5231425,3.9736,2.19488,4.322075,4.76622,5.00745,4.660345,2.447296666666667,2.6436933333333332,3.7502,2.058003333333333,2.677625,2.828393333333333,2.426886666666667,0.89268,2.10533,2.7619666666666665,2.396351666666667,4.596415,4.57565,4.68626,3.90875,4.06788,5.4726824999999995,12.49132,5.07975,4.046515,4.455885,3.929175,4.663845,3.1018666666666665,3.1648726666666667,3.6557,1.24652875,2.689095,2.84541,4.69435,5.44485,4.398345,3.5654,2.8206166666666665,2.41335,4.3018,4.2869399999999995,3.6908,4.2869399999999995,2.41205725,2.2649466666666664,2.4176233333333332,2.246155,2.6146566666666664,1.79821,0.8503683333333334,1.3384183333333333,2.0905133333333334,2.0153166666666666,1.6237833333333331,1.3084733333333334,1.7089766666666666,2.6676633333333335,1.532932,3.062836666666667,1.3551166666666665,1.6347933333333333,3.0723,3.974933333333333,2.77756,2.33508,2.4274066666666667,3.396255,2.21857,2.9803933333333332,3.0835866666666667,2.53601,3.0771333333333337,3.0427999999999997,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,5.0941,3.40706,1.0438699999999999,3.1132833333333334,2.6510000000000002,2.8511366666666667,3.765245,3.13504,4.605585,3.485414,1.679854,3.1153033333333333,1.8184166666666668,1.00668125,0.9867319999999999,1.5901516666666666,0.8791433333333334,0.8142166666666667,1.310054,3.381285,1.651272,1.7020166666666665,1.9911966666666667,2.4371272222222222,1.6028666666666667,1.43729,1.6284666666666665,0.99744,1.2514283333333334,0.7226483333333333,0.9186920000000001,3.333875,3.57436,4.373155,4.479355,4.06686,3.0244700000000004,4.595035,3.6806,1.94756,3.51322,2.0025775,3.564805,2.291653333333333,0.8186145454545454,4.253935,4.74243,2.1255333333333333,1.265745,2.923445,3.298,3.8287899999999997,2.9869133333333333,2.675725,0.884925,2.193615,5.021622499999999,3.641155,2.603615,1.4955100000000001,3.75331,2.0449375,0.6308618181818182,4.33094,4.29326,4.20088,2.632345,1.371838,4.30356,4.374705,2.59579,2.570856666666667,2.5306333333333333,2.6709599999999996,2.733366666666667,2.849546666666667,3.0635,1.2623625,2.63545,2.5448166666666667,5.12045,4.251965,3.634385,4.569445,16.036863888888888,4.3793500000000005,4.545572,2.60521,4.30466,4.967,1.586096,2.511875,2.6340533333333336,6.920635,4.592375,4.07517,6.2108,2.6340533333333336,3.994705,2.05259,2.59562,2.9120633333333337,2.84327,1.30837,4.20235,3.65354,2.499995,4.242835,2.670833333333333,3.0007333333333333,3.70982,3.19175,4.660475,4.10307,2.82875,3.49336,2.66684,2.728733333333333,1.4237600000000001,1.4237600000000001,3.2983933333333333,2.734693333333333,0.37035714285714283,5.167652,0.9325100000000001,3.58278,3.8291,0.5664216666666667,4.83535,8.347296666666667,1.8384125,3.736215,3.738515,2.5834633333333334,3.277935,2.31431,3.034965,3.534285,4.235795,3.10795,3.9493666666666667,0.9921083333333334,11.766089000000001,2.9334,3.21369,5.6902,2.61991,4.032715,7.725873333333333,4.225905,3.98843,3.801695,4.230875,5.8219075,1.7589475,2.8829999999999996,4.747685,3.832933333333333,1.859232,3.791395,3.69574,3.643295,4.010855,4.32651,4.13099,2.4925216666666667,4.03172,3.864835,5.4141,3.622555,2.28713,2.29936,2.2495533333333335,3.03158,1.2797566666666667,3.7324333333333333,0.8507063636363636,3.2422799999999996,3.107226666666667,2.678663333333333,1.6267433333333334,4.371645,4.34604,4.1813,1.9048675,4.572315,4.028155,0.7574948461538462,0.35499884615384614,4.4324,5.09985,0.9981075,0.35499884615384614,4.098245,0.7574948461538462,0.7574948461538462,0.35499884615384614,5.687458333333334,2.5394433333333333,2.4246066666666666,5.5877,3.224865,3.145785,0.7978166666666666,3.290655,3.78413,4.620505,5.6408,2.14184,0.7206930769230768,4.3633425,2.3144566666666666,1.512184,1.9961925,1.0629571428571427,2.4690066666666666,2.237556666666667,3.65701,5.1217,2.8562833333333333,3.2136899999999997,2.9194633333333333,2.3593699999999997,2.913995,4.4274675000000006,1.772245,1.95379,3.99251,5.0822,2.1563425,5.82345,2.72326,4.09074,4.17138,3.05559,1.2268375,3.284875,6.76955,3.811195,3.639345,5.23875,6.45485,2.497925,3.82666,4.565325,3.10502,3.072535,8.29204,3.752895,4.7198424999999995,2.39302,1.11086,2.5780433333333335,2.177965,2.167705,1.773755,4.30289,0.6776064285714286,3.39958,4.1924,1.9286566666666667,3.0760533333333338,5.13525,3.628145,2.78449,4.433105,5.10705,9.638685666666667,2.6376233333333334,2.7261933333333332,1.660118,1.7702666666666669,1.1881533333333334,1.4019199999999998,3.22091,2.4965733333333335,2.9994566666666667,4.394859358974359,1.562275,2.5409666666666664,5.00385,5.5746,3.895295,3.41425,3.00202,2.529645,2.159435,2.130665,1.9053733333333334,2.250045,3.93718,3.70545,5.04185,5.1588,4.209795,5.458444999999999,3.30608,2.511375,6.61691625,3.60878,8.536985,4.9821375,4.9821375,5.733253333333334,1.6063866666666666,1.3770925,1.4895133333333332,0.724243,4.90542,3.9461999999999997,3.353145,3.353145,2.13478,4.5923,4.30174,4.51588,4.38609,2.846883333333333,2.57715,3.81774,3.0850933333333335,5.192268333333333,3.943135,0.7709436363636364,5.34955,5.1451,4.627245,5.0535,3.348815,6.1662,4.505825,0.8654,5.4918,7.444646666666666,3.099785,5.6878,5.7578,3.40966,2.666325,3.79161,6.2633,2.0989975,5.8022,1.89854,4.68465,2.6891166666666666,2.0549375,0.9612170000000001,3.20263,5.9209,3.487815,4.101565,1.9888933333333334,5.0227,8.130756666666667,3.47853,4.175795,2.624735,2.59479,0.869584,4.8533,1.5603749999999998,3.4758500000000003,3.4758500000000003,3.858495,2.2767399999999998,3.0706066666666665,3.982055,1.88194,3.010173333333333,3.3086066666666665,3.320073333333333,2.78297,3.91062,3.35053,1.7994425,3.515833333333333,2.141945,2.9688933333333334,1.9848666666666668,3.0350033333333335,3.14324,1.4166942857142857,1.9485466666666669,0.37249333333333334,1.3012949999999999,0.37249333333333334,0.37249333333333334,1.9485466666666669,0.37249333333333334,3.4858666666666664,2.129908,2.129908,2.8295166666666667,4.849185,4.754705,4.398635,5.40385,5.32405,3.62516,4.291245,4.15426,2.0121075,2.5501161666666663,2.6759066666666667,0.8079945454545455,5.6203,3.079406666666667,3.1588133333333333,5.60705,3.88912,5.38825,3.524175,2.60071,2.96247,3.370215,2.63822,2.8236600000000003,2.0391733333333333,5.4318,0.8568788888888889,3.960135,1.1803542857142857,3.352065,3.1219066666666664,3.0030366666666666,4.090855,4.164045,3.86706,4.58883,4.03033,3.75377,4.30459,4.190025,2.531225,2.761275,3.276346666666667,4.22626,3.112375,4.28232,2.68675,3.22018,3.313546666666667,3.52005,4.53096,4.789075,3.979965,68.94759201205738,2.6639266666666668,3.612715,16.228551333333332,4.057595,3.090106666666667,2.2237533333333332,1.9280466666666667,2.800103333333333,4.649765,3.073726666666667,4.494243333333333,6.1784,3.34885,7.748548333333333,5.22885,2.643365,2.928235,3.853265,3.393825,1.898844,1.249975,4.64389,2.974565,6.051629999999999,3.762005,2.13573,3.38894,3.484865,4.421005,2.87797,5.6241,4.442965,3.516,3.569005,2.47879,3.07509,6.36325,3.190555,3.967095,4.35290875,1.1760833333333334,2.75699,5.4378625,3.92496,3.194035,3.658225,2.894965,4.234265,3.074675,3.47027,3.21834,4.408615,3.11374,2.965245,4.39006,9.374075,3.1389933333333335,4.14324,5.54368,3.23378,2.468705,4.015690625,2.6023633333333334,2.9397533333333334,3.183056,3.41981,3.15804,3.1554,3.126375,3.33351,4.044845,3.88631,4.15704,3.86149,3.434245,4.012075,2.7985966666666666,2.7985966666666666,6.878826666666667,1.706025,3.430965,3.388215,2.497925,4.879855,4.07231,3.209545,3.428405,5.64625,6.949535,0.6433536363636363,4.814925,2.38848,2.8858433333333333,2.630473333333333,5.1646,2.7519299999999998,2.0084725,1.1984625,2.086822727272727,4.11901,4.831965,4.12758,5.8724,5.58165,5.89125,2.58253,1.7711233333333334,4.53362,3.087045,3.0934233333333334,1.9738166666666668,1.368915,2.945273333333333,3.347433333333333,1.605208,2.269956666666667,2.385208,3.468758791208791,2.717725,5.05635,3.390485,1.374865,3.804425,3.361185,5.5528,4.709875,5.62265,4.62958,2.0406366666666664,1.45605,0.6013085714285714,1.5417566666666669,3.48217,2.49635,3.623778333333333,1.3959133333333333,2.5637,2.442255,3.41183,3.628185,3.838785,3.975601666666667,1.641005,1.455915,1.9169,2.053565,1.401755,2.618475,7.02080525,4.86861,4.140495,2.935455,7.26162,4.52584,3.151585,3.04786,3.377435,2.57833,3.934475,2.3119533333333333,7.34914,0.9092133333333333,3.25934,6.58005,3.92671,4.768465,5.6242,1.4626666666666666,3.2248300000000003,2.8755933333333332,2.8556066666666666,1.5786275,4.12309,8.55478,3.463635,4.998905,4.097335,4.026135,4.598665,0.9010266666666666,2.7917400000000003,5.34335,6.362293333333334,5.1345,5.6203,2.977025,3.8127999999999997,2.6063,5.03595,4.698945,3.5521710238095237,3.5521710238095237,0.6193228571428572,3.5059,0.908084,0.5762116666666667,1.8620425,3.7874666666666665,4.249891999999999,5.727049142857142,3.0901899999999998,3.3247091428571425,3.175380476190476,2.9554233333333335,3.0759899999999996,4.5713,3.579985833333333,1.9293875,1.9293875,3.79025,3.0814133333333333,2.7182433333333336,3.935225,3.407766666666667,0.6379733333333334,3.420866666666667,2.719663333333333,2.6671600000000004,2.83329,2.543875,2.5564833333333334,3.1585933333333336,2.9683499999999996,0.834852,2.9609633333333334,6.567472761904762,2.1134,7.810375166666667,1.548298,1.548298,3.43958625,3.313966666666667,3.3762000000000003,2.9886766666666666,1.751254,1.37309,3.3411000000000004,3.32856,1.5494883333333334,1.5222142857142857,2.785963333333333,2.7213279999999997,2.7373233333333338,1.944895,2.0470875,3.023995,2.1062,2.90874,3.37442,1.67958,3.60911,3.377515,6.906284,3.96075,1.6692675,3.381035,2.838295,2.061645,4.096855,2.7227433333333333,2.77775,7.272475,0.8481153846153846,0.7403666666666666,4.691745,1.4396499999999999,1.4396499999999999,3.90855,2.50665,4.65509,3.46648,1.3767366666666667,2.3355306666666666,2.978676666666667,2.4057606666666667,5.013,3.893595,2.62428,2.4360866666666667,1.4947064285714287,1.4947064285714287,2.4195466666666667,3.93806,3.948166666666667,6.06915,3.2465733333333335,5.0139,4.506,6.82435,4.470385,2.53044,2.7850300000000003,2.64398,2.6396833333333336,0.72973,0.72973,0.72973,3.214945,4.40058,4.043365,0.9977175,0.9977175,5.38925,6.2343,6.75523,22.431198666666667,12.1191,8.35198,3.15931,5.9218,2.47446,4.60421,2.5715166666666667,3.3845666666666667,4.2912,5.430125333333333,1.989295,2.12346,7.02928,2.15536,2.15536,6.61955,3.23577,4.56858,2.068395,5.007009666666667,4.649095,4.31128,5.1834,3.75859,1.5801699999999999,5.92365,9.40138,1.5801699999999999,2.068395,2.0672633333333335,0.8946859999999999,0.8946859999999999,1.8089780000000002,2.29452,1.8089780000000002,4.94876,5.97725,6.40155,8.90855,2.068395,11.708981333333334,6.437,6.0989,2.47446,3.364105,4.56797,9.01348,3.063505833333333,4.229575,6.10925,3.35081,4.898825,6.3273,4.54113,5.0664,5.2843,2.69387,5.39715,3.662685,4.454945,4.299735,0.79922625,1.5657159999999999,3.10164,5.6227,4.579905,2.6733666666666664,2.2031275,4.201365,4.8908,5.76255,5.284,5.36305,4.453065,3.95183,4.131085,3.804695,2.129485,5.25877,2.085815,2.60517,3.47505,1.7674899999999998,3.882,4.346045,3.740495,5.2751,3.04033,6.627495,0.9325333333333332,3.484415,3.90788,1.2449914285714285,5.277105,1.5751483333333332,1.6393566666666668,2.57741,2.9221130000000004,2.77,2.8198733333333332,1.8895475,0.7257981818181819,2.22053,2.638115,3.97901,0.7083446153846154,5.647998333333334,1.7065933333333334,1.190522,3.4247,1.190522,3.87449,0.9395545454545455,4.47566,3.3711,1.894605,4.503979,4.313889,4.313889,5.01555,2.5137,3.0659733333333334,2.733233333333333,1.6488600000000002,3.93599,3.53729,2.0730666666666666,0.7491249999999999,7.192521282051283,2.721335,3.8797,4.135125,7.53993,2.551675,4.20472,3.77189,3.124645,3.85001,5.74755,6.3010874999999995,4.31666,5.0448,5.25705,2.9061066666666666,4.60951,4.211545,4.541095,1.1065344444444445,0.5217471428571429,3.06541,3.5117,2.7720266666666666,5.52505,3.82041,4.27213,4.66481,5.20235,4.335295,4.18689,1.1915499999999999,2.509295,8.708175833333334,2.2675300000000003,1.8960633333333332,3.946626666666667,11.779209543650794,1.4953075,4.930235,6.38225,5.01895,3.4082333333333334,2.25021,3.2703399999999996,4.160905,1.0739566666666667,3.4431333333333334,3.583325,0.3955831578947368,2.21887,4.596095,4.28481,2.15382,4.024515,3.18961,5.018858333333333,1.2758566666666666,0.5445263636363636,3.743001666666667,1.1288457142857142,1.0218025,1.0218025,1.0218025,1.0218025,1.5924616666666667,2.834346666666667,2.2599033333333334,3.6788666666666665,5.42445,3.5916333333333337,5.1065,3.588335,4.37198,3.55675,3.969335,1.3576033333333333,7.1783150000000004,2.41561,5.10555,5.2985,5.1585,5.15002,2.7921133333333334,2.545593333333333,2.62758,3.346695,1.2841933333333333,4.965958333333333,2.6181933333333336,4.91389,2.9299233333333334,2.4218366666666666,3.7854,3.3764,2.954875,2.58766,2.6080900000000002,1.47573,0.38642444444444446,4.25616,3.498145,4.0582,3.537905,3.859155,5.8067,4.46958,0.5405607692307692,3.424758,7.339383333333333,1.9705133333333331,1.944112,5.766496666666667,4.80214,2.7594733333333337,4.924705,4.971905,4.333865,4.254135,4.20691,5.3246,5.43495,5.08125,3.66199,5.2800125,1.5485,1.6152,4.326625,3.816145,4.314255,3.19562,5.1902,4.69422,3.80733,3.370045,15.519124277181932,1.3132665262172285,1.2998625,2.1366906818181817,0.549930625,0.4874413333333333,1.5198,0.3437294117647059,1.300716,3.5582666666666665,1.7102540000000002,1.0215833333333333,1.1104733333333334,0.46861083333333337,1.1104733333333334,1.1104733333333334,0.46861083333333337,0.8781230769230769,0.6283799999999999,2.830085,2.6547066666666668,4.37843,4.33842,2.7835,2.760175,4.12761,4.607465,5.19315,3.331925,4.31309,0.6900221428571429,2.452770666666667,8.316447499999999,4.806975,6.834396666666667,2.71618,4.194165,2.3167,5.3006,5.5728,3.142045,4.367545,3.25226,1.033705,4.57935,4.962475,1.122644,1.244952,1.5672,2.4021733333333333,2.3554999999999997,5.56755,5.49615,2.30641,2.30641,3.586928611111111,6.79154,2.0744833333333332,0.6620627272727272,0.7651557142857143,2.2007766666666666,3.419333333333333,0.8970185714285714,0.8970185714285714,0.8970185714285714,0.3730476923076923,1.0846457142857144,3.03435,6.1371,3.8369,4.2068183333333335,5.31045,1.04154,3.6290999999999998,3.29204,3.9278666666666666,5.76965,2.7192966666666667,7.408616666666666,5.0855,1.1068855555555557,3.759,1.915466,2.758545,2.286653333333333,6.857296666666667,3.28956,4.444995,2.2333325,4.521905,4.299565,4.86167,0.5167461111111111,2.70098,1.4549766666666668,2.54019,4.054369333333333,1.9752966666666667,2.7400266666666666,2.47866,2.5412066666666666,2.5373066666666664,2.9088999999999996,2.7898,2.8678899999999996,1.500376,2.2900466666666666,2.1004766666666668,2.8887666666666667,2.4628133333333335,2.07172,1.7515833333333333,1.9234,1.7461125,3.21436,2.620433333333333,2.2045533333333336,2.2209499999999998,2.3798933333333334,2.6130299999999997,0.7997933333333334,0.7997933333333334,0.7997933333333334,2.423286666666667,2.2624133333333334,2.9766966666666668,2.6394100000000003,2.6268766666666665,2.1708833333333333,4.066105,3.5014466666666664,1.3415100000000002,2.5147766666666667,2.7495666666666665,3.4765333333333333,1.5866142857142855,7.3873999999999995,4.590205,3.178335,4.223075,3.40795,1.4731825,0.8271642857142857,2.962485,3.871565,3.4765333333333333,4.14623,4.279765,4.778985,2.93512,3.939545,4.25663,0.961042,2.79047,3.25383,4.926504166666667,4.75411,3.60066,3.20433,2.464505,2.3563899999999998,2.4062766666666664,0.6413233333333334,5.263556250000001,2.66125,4.112725,2.712536666666667,3.9068666666666667,3.4880666666666666,2.4086966666666667,3.1827613333333336,3.1827613333333336,2.53829,2.0846833333333334,2.5168833333333334,2.0530566666666665,4.335485,1.4454980000000002,2.7751,3.839565,4.092445,4.03274,5.39915,4.059825,2.499045,2.151565,3.34514,3.22285,3.07611,5.2694,2.830185,0.90791,0.90791,4.46473,3.8149629999999997,0.892228,4.334235,0.892228,4.042385,4.674655,4.83661,3.41515,3.38982,6.165045,4.280946666666667,5.9974,0.8964357142857143,0.8964357142857143,2.0903,4.688571666666666,1.5550716666666666,3.1335,3.49304,1.1185357142857142,4.584085,3.990555,5.749375000000001,5.749375000000001,1.1075783333333333,5.0476,5.37595,5.3745,6.1636,2.061965,2.061965,7.0775,0.9683181818181819,7.1835,1.9781425,6.199037499999999,2.628255,2.4472533333333333,3.418935,2.3859000000000004,2.1904533333333336,2.4270033333333334,3.04745,2.4656347619047616,6.483217,1.8095400000000001,5.3246,3.0747233333333335,2.7190133333333333,2.78171,2.95105,3.252905,3.50514,3.56297,2.74117,2.302765,2.276845,2.508625,1.092898,3.742565,2.495835,3.054425,2.1150405,2.1150405,3.02298,2.0321366666666667,3.779135,3.48171,5.09745,7.454368333333333,4.244185,3.472265,6.507895833333333,2.42343,3.3848522222222224,2.26113,1.4810285714285716,1.762635,4.038175,1.5971816666666667,0.49005625,0.6711999999999999,4.59262,4.790635,3.136915,0.9372977777777778,3.01015,2.7384500000000003,5.05395,1.8546779999999998,1.92128,1.1652,4.785305,3.08291,4.503605,0.7245969999999999,4.321571666666666,5.0001,4.307335,4.395845,3.51128,3.812695,2.822713333333333,5.5204,3.620545,2.367573333333333,2.6833633333333338,6.111055,6.78436,0.66131,4.29295,4.731835,5.32115,3.8154,3.7743,3.005325,3.2580666666666667,3.7296666666666667,6.359255,2.7213279999999997,2.5833390000000005,3.92891,3.865175,2.36193,2.64635,8.313813333333334,4.73077,1.8718666666666666,5.25,4.715045,1.8616879999999998,3.857905,1.392475,1.8447,4.40317,4.095935,5.5123,2.8588966666666664,4.487485,4.80155,6.3098,4.526845,4.973095,3.493915,5.01445,4.454625,4.1820450000000005,1.1305436153846156,1.1305436153846156,7.33577,0.76105,1.9762042658730157,0.76105,0.7072283333333332,0.34739444444444445,2.6834325992063492,2.308965,0.5926385714285713,1.9762042658730157,1.90505,2.8925,2.0907940277777777,3.612075,4.61526,7.507693333333334,2.16187,2.155085,2.25941,4.93643,5.7811,1.882525,1.741375,0.82123,2.562605,4.306055,2.833115,4.417455,6.400740000000001,0.460275,3.84466,0.71776,2.8892900000000004,2.47535,3.96534,1.2446733333333333,4.180935,4.638485,4.215455,2.94799,4.184135,5.396795,1.78105,3.42954,0.633373076923077,2.69023,2.677345,1.204876,3.0273966666666667,2.49757,2.54955,3.797705,9.262475,3.1093157575757577,3.67779,3.982735,7.39612,5.703895833333334,3.30294,4.084965,3.455595,5.7754,4.66138,5.66485,5.22875,4.599425,6.2522,3.6187666666666662,1.4835525,1.9713200000000002,2.23962,4.0042,2.414613333333333,0.2555954054054054,0.2555954054054054,0.2555954054054054,30.535438,0.2555954054054054,2.9405454054054054,0.2555954054054054,0.2555954054054054,0.2555954054054054,3.362902072072072,4.139065,0.2555954054054054,0.2555954054054054,0.2555954054054054,0.2555954054054054,0.2555954054054054,3.21805,5.21508,3.09562,0.33334615384615385,0.33334615384615385,4.448266666666667,4.017045958333334,4.021090625,3.2040286250000003,4.037197142857143,8.075733333333334,11.566871394716395,6.497215333333333,8.0668,8.068848232142857,2.7862033333333334,6.339658095238095,4.376401666666667,4.661028493589743,0.33334615384615385,7.734694999999999,6.592959714285715,6.935205,3.000875,8.453850232142857,15.089193779761905,18.677880107600732,57.041856485168424,117.66399088580945,1.3569866666666668,3.4156666666666666,3.387525,3.92443355984556,0.33334615384615385,1.6810397435897435,8.65798625,14.748122857142857,19.984271666666668,48.80481983437761,13.32756406547619,3.17445,0.2715493103448276,0.2715493103448276,4.5138766666666665,2.7007,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,7.6458,0.2715493103448276,0.2715493103448276,0.2715493103448276,2.80317,1.8962333333333332,3.564715,3.737015,4.367301666666667,5.32205,2.54775,4.234995,4.531135,3.354595,1.48689,3.61075,0.9868933333333333,2.295095,2.2388266666666667,5.32045,6.24403,2.74437,5.748548555555555,0.5117711111111112,0.5140893333333333,2.5709933333333335,2.7797033333333334,3.231135,4.26783,3.4187333333333334,7.51391375,3.768155,3.467705,3.41878,4.012405,3.36719,3.24609,5.64235,2.768695,0.45915000000000006,0.8550927272727272,4.417095,1.7335025,3.63979,3.73382,4.55928,3.50695,2.427135,3.035005,0.6183493333333333,0.749626,4.307625,2.597253333333333,5.58285,3.709285,4.061123333333334,2.52518,4.60154,6.2254,5.2052,3.355235,0.8795063636363636,3.3965333333333336,4.5637,2.26858,1.0189275,1.5358533333333335,3.927215,6.26465,1.77019,3.18565,3.976365,5.6588,2.36792,2.5426466666666667,2.411355,4.621975,2.85734,4.8195,0.6828971428571429,2.1734633333333333,3.41074,1.976205,6.036831666666666,4.83913,4.239835,4.834595,2.8562,2.15477,0.5572127272727273,5.12355,4.571105,6.67865,3.29672,5.61955,4.900905,3.194215,2.71439,1.2313100000000001,5.1973,1.99865,2.740295,8.585215,4.04205,5.2802,3.46158,0.9697688888888888,3.012345,1.2380457142857144,3.278405,6.2608,5.01415,4.999425,3.76465,5.21395,4.532085,1.7276575,1.7633466666666668,5.1551,3.0685966666666666,3.3770333333333333,2.38676,5.09845,4.504655,1.4400583333333332,3.5539666666666663,2.665055,2.737625,4.612075,9.39237,4.639375,1.8103875,4.579805,6.17287,4.3260275,4.043115,3.95136,4.068575,4.638695,7.980255,2.367993333333333,3.274015,4.150595,4.161765,2.76538,3.237075,4.89231,4.148735,3.49146,4.156172,18.726233333333333,2.8262666666666667,2.655886666666667,3.30728,5.645225,1.1561,4.33333,2.0864483333333332,5.1148,1.4046116666666668,4.28325,4.358725,3.820675,0.999975,4.59581,4.5191,1.685065,4.794380757575757,4.411675,1.1743385714285715,3.589945,2.02776,2.397925,1.53035,4.246025,3.85225,4.05136,3.65262,3.007733333333333,4.493685,8.014755,4.445075,4.453085,4.96846,3.2868766666666667,4.046845,4.968695,6.688654,0.9773479999999999,0.9773479999999999,4.525105,4.777205,2.1660366666666664,1.4962600000000001,7.290035,4.029935,3.891855,3.879645,4.617395,4.51274,3.488405,4.11158,6.3499,4.025073333333333,4.508825,4.769985,1.4421428571428572,2.695125,4.30121,4.99004,3.5674512500000004,0.21030000000000001,1.93158,2.233285,2.412,2.1252233333333335,0.9665911111111112,1.3503025,1.42012,2.3831533333333335,0.6038122222222222,1.2062214285714286,2.11615,3.84874,3.9369666666666667,2.39003,2.7197066666666667,2.89927,2.824056666666667,0.71846,0.95649375,2.905855,4.67684,4.418575,3.492475,4.497825,4.71262,4.948185,2.17088,4.307835,5.03095,4.478345,6.324775,3.94301,0.49418235294117646,5.461,4.71519,4.0872,5.19715,3.273475,1.96116,4.273915,4.07693,3.12343,5.289104166666666,4.4525,1.3682916666666667,5.289104166666666,3.882045,6.8440224999999995,3.6563,1.2075888888888888,4.01274,5.12675,4.205235,2.6889833333333333,5.0465,1.4982025,2.00845,3.888655,3.53649,0.806661111111111,4.844955,4.86795,3.693025,4.00315,3.3531999999999997,3.13194,1.7651160000000001,1.87603,3.1837,3.576905,3.563133333333333,2.4158833333333334,2.3470875,2.069458,4.50813,1.5490285714285714,0.8361255555555556,6.06435,4.21687,1.48524,2.681063333333333,2.358546666666667,3.6483333333333334,6.4262016666666675,2.328444444444444,0.827952,2.63119,4.80545,2.490553333333333,4.277265,5.53725,5.52745,5.10515,4.31017,5.49315,2.1639133333333334,2.2308,1.6893966666666669,2.1490533333333333,1.8998425,2.4060533333333334,2.20072,1.7122975,2.710135,3.025665,3.62923,6.59735,5.2973,3.997875,4.42761,4.00001,3.85141,4.864925,0.9071625,2.8405166666666664,5.0322,1.157982,0.7087666666666668,5.08985,3.724975,2.556756666666667,3.6039425000000005,6.2504,5.4994,1.03108,1.2416728571428572,0.7322377777777778,4.1925875,2.27757,2.8047299999999997,1.1461157142857143,2.766453333333333,2.66554,5.40095,4.569215,4.349085,5.42415,4.265535,1.31758,3.555175,1.6592200000000001,3.54161,4.20957,3.46617,2.6533533333333335,3.2827300000000004,2.6968433333333333,6.00925,3.992295,3.405135,2.5653,8.521655,10.27149,4.18931,1.2943085714285714,5.5072,4.179995,5.047,4.506445,3.932605,3.859425,3.49329,4.160965,3.610282708333333,5.43353,3.74988,3.747255,4.638225,1.8712579999999999,5.07625,5.7944,4.694995,3.2893,3.1190350000000002,7.32826,0.7556066666666666,2.58763,2.7391799999999997,2.331706666666667,4.990005,3.58169,1.3017833333333333,4.287425,3.3744666666666667,3.745185,4.625475,4.147461666666667,6.5410699999999995,3.15094,2.8859666666666666,3.1418933333333334,2.82507,4.152045,2.08025,2.15434,3.065906666666667,3.96935,3.731640416666667,1.9258775,1.528915,3.4699682142857142,3.373432,0.9280944444444444,2.6254633333333333,2.6254633333333333,1.3600875,5.75135,3.031315,3.118955,3.561935,3.423355,3.430315,3.4189,3.23587,3.1038,2.173016666666667,0.5452426666666667,3.269805,5.81927,3.218015,3.65536,3.21836,4.074465,4.022015,3.385905,2.76839,3.839545,3.800035,3.20407,2.88967,3.45875,2.5670100000000002,4.158505,3.90624,8.94331,3.27296,3.61694,3.086035,4.08615,4.085895,3.675475,2.384875,3.71286,2.6488325,2.947835,2.88951,3.15778,3.550325,1.6611233333333333,1.6611233333333333,2.317935,3.09406,3.30693,1.574392,2.480615,3.48365,1.811196,2.916415,1.574392,4.25414,2.99411,3.87598125,2.855635,3.239525,2.31557,3.44104,3.87442,4.14956,3.51148,4.43747,3.770235,4.275065,3.677345,3.27596,3.30875,2.963285,3.73577,2.6394100000000003,3.548495,5.25415,4.069815,3.81596,0.39057608695652174,3.76742,0.4243308333333333,4.44139,3.55581,2.94386,3.744495,4.005165,6.2413,3.48082,2.5850066666666667,2.359106666666667,2.7432833333333337,0.639861,6.119773333333333,3.07711,3.41649,4.119685,2.364785,2.630045,3.411465,3.18712,6.690135,4.61108,5.01975,4.326985,4.33915,4.3014,3.83448,1.4738583333333333,1.6754280000000001,3.871785,4.544715,5.668945000000001,2.4575333333333336,4.91321,2.08254,3.5221,3.68369,1.9102064285714286,4.081335,4.7923725,3.5777,3.906,2.9730000000000003,4.49811,4.93797,3.4128333333333334,4.384465,4.34011,4.84504,4.57776,4.422035,3.916885,3.176095,4.35883,2.594225,3.3263133333333332,3.3263133333333332,4.475215,2.6457966666666666,3.97842,2.4701033333333333,4.751205,3.2769266666666668,3.55194,1.82807,1.8807866666666666,1.1558,1.1558,1.673064,3.4683666666666664,1.7096366666666667,2.8782300000000003,4.258455,5.117078,3.293146666666667,4.766105,5.87844,2.805995,2.75922,3.006873333333333,1.6394166666666665,4.319475,4.00648,6.5088475,1.72116,5.55385,5.6185,3.3053066666666666,3.3709,4.30792,6.81556,2.245623333333333,2.4367375,4.024615,0.4579457142857143,4.165865,4.08161,4.387575,4.410365,3.6925,1.456202,1.595288,3.904685,3.775,2.41344,4.44177,4.7742,5.09755,1.12708875,3.54971,4.48858,3.682785,4.775775,2.85394,5.386933333333333,3.786095,1.536978,3.55693,1.218735,2.82396,7.514528333333333,3.427985,0.7364418181818183,3.56155,4.179055,4.359735,2.0785325,2.0785325,5.111315,5.8045,3.28136,0.49382888888888893,1.9875725,4.604495,4.454015,4.56699,1.75349,2.967116666666667,3.376505,1.1662961184210525,1.1662961184210525,1.1662961184210525,0.759995701754386,1.3468973684210526,0.5869016666666667,1.1662961184210525,0.759995701754386,0.24148736842105264,0.8283890350877193,0.24148736842105264,0.5185083333333333,0.5185083333333333,0.5185083333333333,0.5185083333333333,1.1167556666666667,1.10142125,2.372446666666667,2.343716666666667,1.1006500000000001,6.292926666666666,2.625976666666667,6.574111666666667,2.639596666666667,3.52765,3.02222,3.318575,2.719705,4.621565,2.7405033333333333,4.096915,4.057345,4.723635,2.2640325,4.128005,4.75168,4.057485,3.09716,4.79269,3.291235,4.46449,5.39775,5.03845,6.0772,5.22555,1.1704975,4.30181,3.77201,2.81623,16.318355,4.399965,5.26635,2.7059366666666667,7.51142,3.97742,4.191205,4.794155,3.25542,1.053725,2.54975,4.111845,4.344455,3.73283,3.37265,4.1405,3.06003,4.53638,4.70886,4.21426,6.714251666666666,8.855471666666666,1.4260428571428572,3.80138,3.97036,3.95636,3.61449,3.540025,7.27347,2.703285,2.8252,2.60258,3.93729,3.86517,4.523055,2.43309,1.7594025,0.869002,4.586175,4.385145,3.96458,4.082325,3.832335,4.843365,4.307485,6.67035,5.95255,5.3645,6.5701,4.82995,3.41427,3.230865,3.457245,1.8732575,5.23105,6.2931,6.6234,6.087861666666667,6.087861666666667,2.3195,1.8732575,2.09176,3.121215,0.708405,1.586075,0.87767,1.50823,2.47942,0.35025300000000004,2.797175,4.126685,1.50823,3.288795,10.905135,6.5016825,2.1933003333333336,1.0354100000000002,1.8398966666666665,4.52127,4.314715,5.994152714285714,1.978015,2.100355,3.80078,3.894215,4.61128,2.0874133333333336,5.19715,3.5195333333333334,3.410725,5.2026,7.107284,3.92238,2.42026,2.7781033333333336,1.7060333333333333,3.98973,5.459792500000001,1.736344,5.6427,4.527215,5.996779999999999,0.5309833333333334,4.94916,4.978185,6.4519,2.466925,2.692955,7.24005,9.275516666666666,6.1447,2.2265166666666665,2.2265166666666665,2.2265166666666665,5.8353,4.484715,6.0761,3.47525,2.68471,2.510564736842105,5.3171,5.7325,2.6044644999999997,1.83306,2.6044644999999997,7.4012945,4.65594,5.228036904761905,6.81135,5.228036904761905,5.228036904761905,3.880478571428571,7.02003,5.9619,3.05586,3.05586,2.99485,6.9363,2.960205,3.51255,5.89819875,5.89819875,5.89819875,8.27408,3.708075,3.49199,3.69918,3.53404,1.22849875,7.417476666666667,2.7615366666666668,6.48215,3.47101,13.339147333333333,4.986915,5.7992925,7.20906,2.7155716666666665,4.86028,1.2079183333333334,5.7992925,3.414585,1.874195,1.874195,3.201755,5.265535833333333,1.74843,4.76833,0.863918,1.3952966666666666,0.863918,1.8925025,2.612348,5.179448,3.71263,1.3952966666666666,4.372495,4.9978025,1.0617325,3.507585,4.574525,2.951105,5.4656,2.36804,3.37881,2.808185,0.98263,4.63598,3.60515,2.06601,1.85119,3.3956299999999997,4.386005,2.7506,3.760295,1.7053666666666665,1.7053666666666665,1.7053666666666665,3.752715,3.0476833333333335,3.0476833333333335,3.12293,4.12671,2.39577,1.3879375,1.3879375,3.31425,4.9215775,1.1860575,1.6194966666666666,3.125235,1.4755783333333334,3.095075,0.98263,0.98263,1.805721666666667,0.98263,3.0911383333333333,0.9290516666666666,3.0911383333333333,6.0857270833333335,3.161075,2.379376666666667,1.8381804166666664,0.6221583333333334,2.46033875,3.538905,2.46033875,1.0095366666666665,3.409125,4.205325,3.812505,3.525005,3.263165,3.785155,1.8319433333333333,1.2767552777777778,0.4443075,1.2767552777777778,0.8324477777777778,1.2767552777777778,1.2767552777777778,4.529445,4.502645,6.48525,3.416555,4.4328,4.404055,5.1995,3.38072,3.76625,1.4205314285714288,3.0701633333333334,4.5373850000000004,3.89471,1.36916,2.6946766666666666,3.82779,3.83225,4.184645,3.864285,4.28766,3.53057,3.201945,4.398275,2.23721,5.98355,3.71526,4.08907,4.948102857142858,1.0000218571428572,2.180475,3.358575,6.66123,4.561065,3.795245,2.97634,4.782265,7.613641666666666,3.3132566666666663,3.194895,3.1522066666666664,5.5022,4.089605,5.636,5.50665,5.2274,4.2717,5.19735,4.70409,3.5847333333333338,4.208515,3.340066666666667,2.37043,2.3653233333333334,4.979105,6.6317,5.6727,5.56505,4.42282,5.083,5.6926,0.5191576923076924,7.524825,4.36834,4.494415,3.86876,4.73116,4.020535,3.0330933333333334,2.56605,1.360715,0.5841469230769231,1.824896,3.0715500000000002,3.68791,4.085965,4.27926,3.65801,11.330936666666666,3.752585,3.778545,3.274285,0.684965,5.623900000000001,2.99621,1.7967533333333332,4.792963333333333,6.826295,3.830085,9.24678,5.7867,4.5673200000000005,4.5673200000000005,4.5673200000000005,5.4462,9.24858,5.11705,3.18395,3.18395,3.406395,9.68913,1.02634125,5.0424,4.530395,4.21376,2.9257266666666664,2.2281666666666666,4.280305,3.939905,6.60995,6.002446666666667,3.85443,2.837245,3.867515,4.22755,3.5176119999999997,1.3143,3.1244566666666667,6.04511,3.33861,4.932965,0.999935,3.6636666666666664,2.3548433333333336,2.58891,1.7820625,1.8004833333333332,2.1479166666666667,5.64375,2.03717,4.36679,5.43905,1.8095400000000001,4.519095,3.882335,4.79584,3.2868333333333335,2.201435,2.75856,5.3115,3.9753183333333335,3.9753183333333335,1.1713425,1.7488533333333331,2.9249166666666664,4.401529666666667,2.208307090909091,4.791026666666667,1.7546,2.7037,2.058246666666667,1.7695025,1.7695025,5.04715,7.385258333333334,1.9268599999999998,2.91879,2.1460825,5.6766,3.20105,0.8390700000000001,2.92539,0.8390700000000001,2.68392,3.559395,5.1686,5.758,3.70894,4.646969166666667,6.09785,2.4901,1.9500966666666668,2.621426666666667,2.2229433333333333,6.17975,4.944195,3.37885,4.04623,2.654685,4.31745,1.1359375,1.1134359999999999,1.8866800000000001,1.4669383333333332,2.6020166666666666,2.731313333333333,2.2776366666666665,2.9580866666666665,2.713155,4.35047,2.5635066666666666,2.5075566666666664,2.76043,2.3655566666666665,2.86366,2.682166666666667,2.0445433333333334,2.4435866666666666,3.74041,3.824945,3.21381,3.720375,2.8701899999999996,2.2242225,1.9141725,1.241365,0.297309,0.14161782608695653,2.0856033333333333,1.9457166666666668,0.14161782608695653,4.02385865942029,2.080675,0.14161782608695653,5.944846458333334,2.3395633333333334,6.27025,3.479485,3.3548666666666667,2.486,2.9067900000000004,2.3409275,4.350765,3.2014,3.2811766666666666,0.46988052631578947,3.9307833333333333,2.714597192982456,2.93749,1.89501,2.4991525,4.38942,2.553065,7.9164,5.33725,3.543275,3.72181,6.41628,6.00378,1.7504799999999998,4.114528333333333,2.167625,1.85845,6.18435,7.63616,1.2435333333333334,2.0788225,3.821975,2.569875,2.80174,3.2354,2.894925,4.197735,2.363435,3.13103,3.31639,3.113815,7.42425,1.3000800000000001,2.052735,2.953015,3.35283,1.67298,3.406945,1.50286,3.74804,3.365795,6.48881,3.53604,8.9951175,3.788355,1.562556,1.8280399999999999,3.009215,6.15823,1.79625,1.57366,5.93232,3.461855,4.083995,2.681145,2.030823333333333,3.22599,10.30616,5.13521,6.37272,3.475955,2.42793,2.23409,2.59482,2.81053,3.227455,1.7688,1.6768466666666668,2.5741466666666666,3.476685,1.714265,3.279695,2.936455,4.148865,3.674,3.15306,1.2628616666666665,2.7193,1.1964066666666666,1.363156,1.684245,3.088055,3.29358,3.6251,2.82438,3.8331,4.032875,2.754545,1.47662,3.60154,3.5231425,3.142665,1.787825,3.173505,3.474565,1.4917025,3.250115,1.6204266666666667,4.089665,3.976385,4.9044,2.656915,3.93141,1.74754,3.86392,5.39875,1.63878,1.0889842857142857,3.9686,2.75193,4.3355,4.15337,3.016355,4.571475,4.766385,2.3294333333333332,5.5177,5.4305225,6.5454,4.268865,6.756028333333333,4.06296,1.7669333333333332,2.7659066666666665,4.63608,4.866115,2.7581433333333334,7.184478,1.2586928571428573,3.4748666666666668,2.09021,1.7408899999999998,2.31724,2.838903333333333,0.37031285714285717,2.84329,3.8045333333333335,3.406255,2.522825,3.3381000000000003,2.3201966666666665,2.40952,2.2635625,8.928505,5.05315,1.850396,5.15575,2.4415300869565217,0.7574948461538462,2.8296433333333333,7.623230666666667,1.7774819999999998,4.5876825,6.117801666666666,1.7456925,1.6695325,1.426125,5.22375,3.226725,4.53883,4.4803225,2.4952733333333335,3.742715,1.035118,2.9037646666666665,4.070385,4.12669,4.90011,2.917885,4.86139,4.68778,4.689025,5.19515,5.8155,4.80695,4.446665,5.11305,1.6592759999999998,1.836815,3.046555,3.47574,1.1095211111111112,4.366365,2.266,3.3699,4.30624,3.2452733333333335,2.6681233333333334,1.6085733333333332,3.0970333333333335,2.8013844444444445,2.6293633333333335,2.902293333333333,1.9186233333333333,2.3390875,2.46852,3.95671,4.317375,3.966645,4.562315,3.51293,2.33603,3.010285,4.818125,3.848133333333333,4.67228,4.11266,2.26977,4.478468333333333,1.7334133333333333,4.17531,4.8643125000000005,5.9693925,4.45196,4.519785,5.5678,3.3345000000000002,3.9584124999999997,4.67853,3.16512,3.7814059999999996,4.867875,1.3313825,3.12652,1.738685,2.3043,4.67138,5.3389325,3.7814059999999996,4.100355,3.54344,1.5550716666666666,3.593275,2.11619,2.7227433333333333,2.336105,2.78296,1.4924033333333333,1.4924033333333333,1.4924033333333333,0.5360199999999999,0.8097711111111111,2.192057777777778,1.1152675,3.48813,1.3106866666666666,4.198535,5.22105,4.65436,3.31489,4.087375,3.25529,5.0519,1.97001,2.98082,2.56552,4.068415,5.8398,4.351825,5.40245,4.068775,0.9894275,2.257165,1.26437,3.810615,4.024995,4.32454,5.288,5.00375,4.67175,5.13285,3.941055,1.76915,1.2717816666666668,5.403766666666667,1.0508111111111111,1.4383366666666666,2.733743333333333,8.219225000000002,5.05625,3.755375,3.29168,5.64485,1.682515,1.0028866666666667,1.684185,3.175495,3.52203,3.7925,3.644635,1.90165,6.284145,2.9657933333333335,1.12366375,4.82261,2.94363,2.8937733333333333,2.245546666666667,3.6892333333333336,5.8832725,2.87129,3.3257833333333333,3.5322,2.72097,3.08684,3.02129,2.63924,2.03415,4.556455,4.875195,4.769765,1.0238977777777778,0.744467,3.9095666666666666,2.68042,1.04616125,2.6724129166666666,4.27884,4.321405,7.080439999999999,4.639695,3.501,1.738816,3.802235,3.74629,2.8463499999999997,2.5157225714285714,4.17656,2.8644533333333335,5.024922666666667,0.8919144444444443,4.770995,1.710032,4.22048,4.263785,2.591165,1.1671925,3.1409,0.420392,3.236615,6.6313,5.752,2.835146,1.482502,3.9496333333333333,0.8321277777777778,2.524896666666667,0.8321277777777778,4.088235,4.23472,1.3661775,2.0052275,5.182763333333334,1.8072733333333335,3.48516,3.624395,3.85929,1.216712,1.6083733333333334,4.124735,5.21485,5.1437,3.183056,2.628875,3.22785,1.5954675,2.4903375,1.9873825,2.07697,4.629695,1.3853111111111112,1.3853111111111112,3.47712,4.612765333333334,8.219638333333332,4.579903333333333,7.80248,2.19455,3.835945,4.21655,1.7393833333333333,3.6588025,4.22639,3.18513,6.2352,3.03886,2.64307,3.0215533333333333,4.169515,1.09692,4.015355,4.63097,1.1541233333333334,7.96879,2.914545,3.144645,3.5382016666666667,5.1738,4.91828,3.8454825,2.47384,2.7685733333333338,1.9846833333333331,3.6945,2.32956,2.16449,7.729237333333333,3.358233333333333,3.2028366666666668,4.353825,22.757884098901098,0.7115066666666666,2.734745,4.37559,4.64921,8.36128,4.594715,4.523605,4.513455,6.881141666666666,3.59721,1.9081933333333332,4.941838333333333,3.251755,1.169822,1.169822,1.169822,2.34231875,1.67939,3.29848,1.519465,3.038495,1.4626666666666666,2.658385,2.63669,2.886665,1.519465,3.21344,2.690015,4.180641666666666,4.776891666666667,5.0995,0.8006233333333334,3.359085,2.76266,4.859515,3.77762,2.86534,2.3555875,1.6713025,2.173315,1.4418659999999999,3.999815,1.60578,4.69128,11.491635333333335,2.780113333333333,2.64028,5.027338333333333,4.690733333333333,4.488666666666666,6.1922,2.2447166666666667,5.703895833333334,4.62001,1.4045133333333333,1.1742742857142858,6.466271,4.159545,2.3321075,3.75837,1.9104025,4.575115,5.04215,4.60172,3.98426,1.4039157142857144,4.406605,4.8821,4.758605,6.2049009999999996,3.78028,5.37435,4.72811,4.336845,5.24875,3.592333333333333,4.742285,1.6749625,3.420225,3.217365,3.808915,4.349585,6.18295,4.507445,3.1051033333333335,3.474066666666667,9.00896,4.86974,3.30912,3.63435,3.369605,4.372705,4.392585,4.765675,6.992416666666667,3.62365,2.612206666666667,4.308235,2.43928,4.39447,2.6306333333333334,6.6351175,1.6491533333333335,4.720455,4.647495,11.862985,0.4792528571428571,4.62178,4.74727,0.6597071428571429,3.68197,4.03284,4.2994,0.9669719999999999,4.911,4.915963333333334,2.66216,10.080203333333333,3.335733333333333,1.90294,2.90834,3.530095,5.98115,0.6098,3.898015,2.0036675,5.40095,0.7260246153846153,4.19647,5.67225,5.82475,3.742245,6.5686325,4.46976,3.6047725,2.5683666666666665,2.8584933333333336,4.177215,4.6299,5.0146,5.0888,5.40285,3.2708600000000003,6.97212,2.88615,3.6148125,2.113845,3.60696,2.5981033333333334,1.4366899999999998,2.950583333333333,3.289626666666667,3.2522466666666667,3.569266666666667,3.5754333333333332,3.1103466666666666,2.6714566666666664,5.70365,3.271876666666667,3.65827,4.98551,2.6886666666666668,1.144011111111111,3.04081,2.92432,4.00932,3.14622,3.1142133333333333,4.795923333333333,2.050943333333333,1.6724375,3.04482,3.735545,4.575705,1.11821625,4.542235,3.27853,4.106366666666667,3.09707,4.934101,3.923285,3.22349,4.082235,1.72896,3.92369,0.65201875,4.65307,4.8832,16.358552727272727,3.2606466666666667,1.1760516666666667,4.59947,0.64589,2.64155,4.48803,1.940935,1.3396171428571428,3.79663,4.57427,3.146986666666667,0.7963233333333334,2.70706,7.5363,3.802635,5.62695,5.32415,5.0304,3.25379,3.7955,3.2358233333333337,7.0143233333333335,4.1718,5.15285,2.17594,0.4619183333333333,2.053125,3.204035,2.029945,3.1814,4.507205,2.93784,4.696255,0.6798175,4.74884,3.603865,2.971745,1.1683999999999999,2.63432,2.02562,4.94131,3.93838,2.23832,1.6405428571428573,3.83064,4.88492,4.735585,6.156055,2.11862,4.99305,4.68184,4.27275,2.0927,4.47884,6.192921666666667,4.93955,2.43495,4.870885,3.208475,3.129,4.125675,4.010595,1.3557433333333335,4.716465,2.3964666666666665,2.8444533333333335,5.386921666666666,5.386921666666666,5.16295,1.8835540000000002,4.868555,0.93824375,1.7978619999999998,5.22045,2.58507,1.44642,3.4031333333333333,0.971512,4.332866666666667,4.82476,3.061625,5.2067,4.026365,3.77401,5.3693275,3.511065,3.5821666666666663,3.0134166666666666,2.4653666666666667,2.6944,2.92993,4.399515,1.6121660439560437,2.9663033333333337,4.470105,4.84783,2.3138229166666666,4.3306,4.652505,4.907918333333333,3.5351666666666666,5.31145,5.1931,5.14895,4.81026,3.815555,3.60025,3.69526,4.661515,5.52315,4.81547,4.97719,4.588095,4.5405,0.674335,4.85672,4.586245,4.05285,7.4254625,4.297825,3.75574,4.36174,4.8893,3.490705,3.63711,2.1286325,4.4580874999999995,1.9343175,1.29271,3.76834,2.111143333333333,2.526386666666667,3.9648393333333334,3.2160466666666667,3.25973,1.0906233333333333,2.0171225,4.53669,3.52416,1.92194,1.92194,3.78651,1.658046,3.0829866666666668,4.45683,3.64882,3.739595,1.5031033333333335,2.066795,3.5477608333333333,1.9327,4.08461,4.577955,4.475315,4.16151,7.629858333333333,2.72435,3.67018,4.777745,4.328845,3.1825799999999997,4.08129,4.31157,4.435045,2.061235,2.5302966666666666,4.417725,3.900195,3.887135,3.84945,1.6676225,3.87336,4.272695,4.53334,4.226915,3.891185,3.891185,3.1245183333333335,4.3379,4.26877,4.05641,1.670958,8.04255,3.975395,5.11645,4.42406,4.27708,4.522355,4.985185,3.322855,3.936545,3.299705,5.26795,1.9908100000000002,4.67073,5.698226666666667,5.1566,0.724522,4.841585833333333,1.15956,5.0233,4.83701,4.6735,4.277715,5.4911,3.8401,3.8401,0.887791,2.281895,4.819215,3.54725,4.21354,4.80393,5.69985,3.24711,4.355,1.4207783333333335,2.722485,1.65448,1.2509375,4.326681333333333,0.8596220000000001,2.65566,3.12079,1.3072066666666666,2.4083125,2.6591,1.4595133333333334,6.24163,1.939005,2.472663333333333,5.2898,2.02448,2.8777833333333334,3.697985,4.63076,3.745033333333333,3.2880299999999996,4.169866666666667,1.697138,2.152545,4.41941,0.6444335714285714,2.3563966666666665,2.62698,3.1691266666666666,2.772933333333333,1.2829,0.8308833333333333,2.54645,4.23201,1.2270957142857142,2.2745975,1.23173,5.666951666666667,2.305685,4.79958,4.395495,4.33985,4.96125,5.23985,4.356115,4.2671,1.5190066666666666,3.9614,1.725922,2.5972766666666667,1.1922957142857142,4.37436,2.05005,7.137600000000001,3.915665,3.96646,1.558432,6.800805,4.564455,1.5607366666666669,4.103365,3.200055,3.966815,3.19984,1.9826075,1.9826075,3.370433333333333,1.3384183333333333,1.3384183333333333,2.0927,2.8462933333333336,2.07172,1.3415100000000002,3.5055666666666667,1.043795,3.0914300000000003,2.351665,1.8911175,1.5192966666666667,2.1983625,2.1222125,0.29011176470588235,2.4279175,1.18727,2.3589766666666665,2.058246666666667,2.499045,1.0810166666666667,1.092898,3.8553333333333337,3.0738266666666667,1.9826075,1.7335025,1.9197866666666668,2.543883333333333,2.4211666666666667,1.829508,3.4929333333333332,1.09764,3.276346666666667,2.85401,2.4953499999999997,1.517782,1.034724,2.51015,1.034724,2.51015,0.6691275,0.6691275,0.49471611111111113,2.3419725,2.448983333333333,0.6691275,2.2055125,2.35125,2.3259425,1.7461125,0.7997933333333334,0.6691275,0.6691275,1.6201139999999998,1.6201139999999998,2.0822275,1.7335025,0.6691275,2.3404,0.4695853846153846,3.015836666666667,2.057373333333333,2.651666666666667,2.5391733333333333,2.5391733333333333,0.3847615,0.3847615,2.0927,1.9662739999999999,2.1807,2.00982,0.3847615,3.500033333333333,2.598725,1.62897,0.6377,1.62897,0.6377,8.87514,2.4337233333333335,4.020766666666667,2.5834633333333334,3.075396666666667,3.0494833333333333,2.9296100000000003,3.4530666666666665,2.47879,1.6539625,2.7095066666666665,3.3132566666666663,2.350956666666667,1.6201139999999998,2.4662831746031744,2.4662831746031744,2.7990333333333335,2.151965,4.32475,2.3106966666666664,3.2792966666666667,2.6696933333333335,1.6217320000000002,2.3984325,2.40615,0.7951736363636364,1.69475,3.50987,1.8169879999999998,3.066073333333333,2.5541966666666664,2.66955,3.828333333333333,1.7083166666666667,3.518266666666667,3.1433366666666664,4.185033333333333,1.280796,0.2715493103448276,1.2698642857142857,1.2698642857142857,1.0530933333333334,3.2082033333333335,3.9278666666666666,2.7182033333333333,2.125113333333333,2.125113333333333,2.162415,1.6204266666666667,1.00061,1.78473,1.78473,0.6691275,2.0927,2.82799,3.397933333333333,2.351665,2.15706,2.15706,2.15706,1.0728433333333334,1.4810285714285716,1.4810285714285716,2.531675,2.8923466666666666,2.672879835858586,3.951395,2.52869,2.60142,3.74995,3.88775,7.0539974999999995,3.834505,4.59001,3.7404333333333333,13.142822500000001,4.83917,3.586,0.9355025,4.083745,3.357355,1.98362,3.73275,5.4632,7.622765333333333,6.05115,0.4893558823529412,3.74873,3.372975,4.03726,2.457835,4.349915,5.13795,3.96481,8.034915,3.32968,3.91437,3.981285,3.3072636363636367,8.105704307692308,3.293476666666667,2.6399033333333333,3.683565,4.147355,4.884035,3.805875,7.014702,5.14855,1.371382,3.99222,0.8709775,4.913035,5.547,4.46916,4.301335,6.0185,4.57125,5.1527,3.964665,8.018205,3.94326,4.757317,3.0481,5.2777,3.012415,0.87303,0.87303,3.586145,3.97757,2.24449,2.16876,4.040175,4.842395,4.152785,2.677925,2.7683,3.318575,2.4408133333333333,1.12737625,3.8464,4.92669,8.47057,1.606094,3.19475,3.459725,3.74232,2.729506666666667,8.29776,4.15577,3.6718666666666664,2.8984199999999998,3.985975,3.3224133333333334,3.0954266666666665,3.190443333333333,4.07636,3.86774,4.519165,4.272455,0.395596,1.4738466666666667,2.3627966666666667,1.74024,4.641985,3.53369,2.5619666666666667,2.2597725,4.535415,3.8331665,2.2183525,2.489775,0.926448,2.2722025,2.5256433333333335,2.5256433333333335,5.24735,1.86606,3.0318466666666666,2.322503333333333,2.25928,1.69683,3.143315,3.80633,4.71359,4.322505,5.0501,4.80349,2.82614,3.2822600000000004,2.0278199999999997,4.86834,5.5523533333333335,2.26786,2.97396,2.19912,2.39993,3.932633333333333,2.692826666666667,4.895985,3.70066,3.49611,4.39652,2.95527,3.63009,4.13033,2.24093,2.3164966666666666,0.40350285714285716,3.779833333333333,2.6094066666666667,4.18691,6.1665,4.674125,5.9476933333333335,1.997985,1.6013083333333331,3.14884,5.30835,6.4445,5.8036,3.0098833333333332,2.2485833333333334,3.614965,2.44549,4.692715,2.277293333333333,2.31107,5.4524,5.0587,4.571235,1.7688425,1.87666,1.072506,1.072506,1.218768,0.9137085714285714,0.8735160000000001,1.8105205714285715,4.23029,10.530703333333333,3.932445,4.365645,4.07227,5.6897375,2.68342,1.6503466666666666,3.556445,3.00262,3.97518,2.53802,2.6510000000000002,2.9705966666666668,3.2763899999999997,2.3434866666666667,3.2998433333333335,3.3737666666666666,3.0287333333333333,3.4304,3.4998666666666662,3.02678,2.8058333333333336,3.1264299999999996,2.47317,3.06558,3.128823333333333,2.9657666666666667,3.4055999999999997,2.26142,5.600063619047619,3.2813666666666665,4.332452666666667,3.1453366666666667,3.18026,3.7673666666666663,2.8305933333333333,2.88862,3.080083333333333,3.1896299999999997,3.4722333333333335,3.25749,1.99328,2.79101,2.9394899999999997,2.95575,2.95575,3.3265766666666665,3.0744633333333335,2.58695,2.7155799999999997,3.2233133333333335,4.2497,2.8160066666666665,2.77725,2.712733333333333,2.8250733333333335,4.6499425,5.02125,1.6754166666666668,3.406,3.7354333333333334,3.4319119999999996,3.299886666666667,3.826366666666667,3.5743666666666667,2.798033333333333,3.4759780000000005,1.9946560000000002,2.79278,3.4338333333333337,3.253553333333333,2.5641166666666666,2.4604466666666664,3.831466666666667,2.8653833333333334,3.078673333333333,2.3998925,1.2327516666666667,3.3942333333333337,2.6845766666666666,2.3810933333333333,2.49977,3.20373,3.156473333333333,2.03582,5.659655333333333,2.4851733333333335,0.904519,4.58721,1.8571225,1.597425,4.438885,3.80793,3.238095,2.26023,1.457835,3.334485,2.696635,2.910695,0.42503349999999995,2.038665,0.42503349999999995,2.09353,1.457835,2.799875,3.795325,2.589625,3.47262,3.78902,0.5363566666666666,3.0712566666666667,0.941995,0.44140411764705884,4.206435,4.110625,4.891235,2.5297,5.64585,4.252965,3.938505,2.500895,4.0068,1.688872,5.90105,2.802105,4.25383,4.806005,2.998283333333333,2.0922300000000003,2.0638833333333335,1.2579033333333334,1.801335,0.91482,0.91482,4.470645,3.3109800000000003,7.049015000000001,2.2193775,2.12592,1.957625,2.34072375,2.166285,5.00345,4.282365,2.11608,2.2248966666666665,2.34072375,2.67498,4.37043625,2.69034625,5.826371666666667,2.2193775,3.1691375,3.26042,3.056013333333333,5.50045,4.746355,1.99004,1.9419725,2.3129225,2.75831,4.83807,5.38425,2.0262025,3.89477,1.6394166666666665,1.580385,5.418,10.462498333333334,2.1606833333333335,2.2782133333333334,2.371966666666667,4.560785,4.26775,1.9081575,4.834495,4.68946,2.93804,39.74113155952381,2.93866,3.1165866666666666,0.4777427777777778,5.1259225,2.6978166666666668,0.971698888888889,4.28517,3.621865,1.971175,1.8787325,2.368046666666667,3.87207,1.3846900000000002,3.0811673333333336,3.803605,4.68424,0.921028,4.943295,4.881995,5.0275,2.9827966666666668,1.5354325,3.8340725000000004,4.514405,4.09442,3.763865,3.584335,4.04982,11.952445303030302,2.7474900000000004,3.1409,4.18599,2.709325,4.44662,3.277085,2.555645,3.1519,5.3799,4.873335,5.1653,5.00875,2.437955,3.75089,4.25776,3.64479,4.67476,4.63131,0.12323043478260869,2.39938,5.4957,2.680535,1.54463,1.144625,1.144625,2.4866975,2.795255,5.0134,1.388496,2.8764066666666666,4.41704,2.534815,4.412949166666667,0.5757007142857143,4.61825,4.10718,4.699775,4.635505,4.663345,1.3849375,1.316425,4.152633333333333,2.913266666666667,3.0074733333333334,4.197151696969697,4.093525,6.29884,5.36805,4.58139,3.51046,2.3881633333333334,1.4835216666666666,5.0262,0.31146799999999997,3.40218,3.74393,4.040985,14.040786666666666,1.992095,3.1429899999999997,0.7652575,4.51715,9.10199,3.202795,1.8337333333333332,5.9021,3.3318366666666663,1.25616,4.53594,2.754145,3.12272,4.827755,3.363512777777778,1.108035,6.871081666666667,0.726705,5.1175,3.1993372777777775,1.4152075,2.053400777777778,3.1709875,3.1709875,3.903635,4.304702499999999,1.37305,2.27261,2.66129,3.609265,3.0205,2.582625,3.181205,3.42344,6.836510666666667,6.6327,4.231425,3.21488,4.996,4.90398,3.760365,3.362535,3.550565,4.13044,4.920995,2.5159533333333335,2.5417633333333334,1.5542033333333334,2.31504,2.2773925,1.5534325,3.3523666666666667,3.592233333333333,3.4581999999999997,3.2200233333333332,2.6585533333333333,1.48689,1.9130466666666666,0.49168,2.8870466666666665,1.5629142857142857,1.8705675,3.4782333333333333,2.5660166666666666,2.5702700000000003,0.93780125,2.229085,2.470995,3.08546,3.558855,5.37145,3.711835,2.931555,2.27724,3.38191,4.19501,2.45979,3.62781,2.011735,3.65238,2.798295,3.851255,1.5097066666666665,0.61741,2.38673,3.28925,3.072005,3.90648,4.70188,8.65014,3.23089,2.5107566666666665,1.9189866666666668,1.786584,1.786584,2.766553333333333,2.6217833333333336,4.96782,4.714385,3.44948,4.98414,4.386135,4.4125,3.3893066666666667,4.489425,7.8820125,2.510575,0.49005625,3.238493333333333,1.30541,1.0076314285714285,1.8957633333333332,0.819881,2.1308525,5.4692,5.3175,6.1523175000000005,1.0761675,7.24536,1.9805319999999997,1.5473516666666667,2.8237900000000002,4.208245,3.2618733333333334,2.4318375,3.809765,3.1381333333333337,4.2388,2.8519,2.77016,2.9243633333333334,6.586705,2.498315,3.977145,3.7861949999999998,3.6921275000000002,1.55508,1.1530975,4.29359,2.6151466666666665,3.227586666666667,6.21159,2.545385,2.049975,2.4354125,3.48241,3.6738999999999997,2.3339366666666668,4.241371666666667,3.11256,5.3221,2.4173896666666668,1.83126,4.95745,5.66405,4.69278,4.425735,1.68856,2.2418,1.9830225,3.34065,1.4969733333333333,0.8878366666666667,2.6105441666666667,2.061455,1.998395,4.27674,0.8018891666666667,6.2433475000000005,1.5185975,0.7816372727272728,3.6804666666666663,4.168775,0.7311585714285714,3.2926465,3.1609475000000002,0.8308833333333333,4.683055,0.182515,0.182515,0.182515,0.182515,0.182515,0.182515,1.91589,3.89778,1.91589,1.91589,1.8177466666666666,0.182515,0.182515,3.3376,2.66436,3.738865,3.33014,2.33244,3.5309,1.4977,1.679824,3.5176119999999997,1.576406,3.06714,2.6606562222222223,6.0241299999999995,4.355295,4.25248,6.4648,4.4938,4.947425,4.209865,4.114045,7.415731666666667,3.9255999999999998,3.749,2.6283333333333334,5.123659999999999,2.6170466666666665,2.0892925,1.8666666666666665,4.821175,5.2252,4.86473,5.1925,5.61275,4.5363,4.60519,0.7832190909090909,0.7120571428571428,0.7120571428571428,4.686815,2.2013833333333332,3.85969,1.027847142857143,5.14685,1.5061,2.3131666666666666,2.5571,4.4969,4.4969,6.8422,4.40845,1.4864766666666667,11.325411666666666,3.0763766666666665,1.2579333333333333,5.21275,5.1837,3.88976,3.24751,2.806125,4.2208,0.8062933333333333,3.227453333333333,3.269493333333333,3.7999333333333336,3.2927700000000004,1.44531,1.45706,4.750663333333334,3.2221833333333336,3.17586,3.5444,5.2831,3.4016633333333335,0.843398,1.8771333333333333,3.3907333333333334,2.3625533333333335,3.8547666666666665,3.4451,3.2545266666666666,3.645433333333333,3.1268733333333336,2.5402733333333334,1.2238866666666668,3.091763333333333,2.6360633333333334,3.631835,3.22547,4.02598,2.7147,3.22911,2.7642,1.613756,2.1995033333333334,2.848595238095238,3.655466666666667,1.897032,3.1973933333333338,1.8673833333333334,3.723433333333333,5.41238,5.085886666666666,2.524275,2.60765,2.7384,2.6001,1.6000857142857143,2.4000575,3.2800682142857145,2.424625,3.5078333333333336,2.825915,3.8065966666666666,3.26854,1.2942111111111112,1.27348,1.7696525,2.1952025,3.11533,3.5922,5.08995,7.403689999999999,3.195735,5.1143,4.23467,15.782685666666666,0.5182,11.1613225,1.0754877777777778,3.32752,3.2002433333333333,1.8457166666666665,2.983425,1.574376,1.47662,2.7017100000000003,1.290342,2.7111893333333335,2.14413,3.0711633333333332,2.229546666666667,2.8738200000000003,1.54683,0.6862858333333333,3.3394,2.4816333333333334,3.0751933333333334,1.0728433333333334,3.508266666666667,0.7455058333333334,0.36503153846153846,2.964503333333333,4.51335,4.711255,5.08615,0.8407436363636364,3.99661,4.75238,1.183245,2.501925,5.509685833333333,3.45973,3.916875,4.05239,3.930165,1.965975,3.87729,2.7519299999999998,3.02176,3.530285,2.657455,2.726505,3.82875,3.165305,3.65037,2.325145,3.351445,4.79501,1.3152133333333333,4.643565,2.2860275,4.058725,4.9745800000000004,2.0213075,2.7572266666666665,2.9916966666666664,5.831731666666666,2.5004399999999998,3.33493,5.42675,4.020766666666667,4.33666,2.6555933333333335,2.54325,4.807955,3.5505333333333335,4.26795,3.4794,3.276066666666667,3.054983333333333,3.8305000000000002,3.200343333333333,2.69421,2.882543333333333,0.43571499999999996,2.4405775,2.107785,4.604025,4.92067,3.0541433333333337,2.812606666666667,3.3205500000000003,7.935425,3.6208,4.03253,2.7993633333333334,3.75065,3.127305,3.8672899999999997,2.818853333333333,2.35405,2.82452,6.3642,4.573325,2.1617366666666666,3.348325,3.21967,2.6022266666666667,4.727,1.72077,6.232049999999999,3.855655,4.77347,4.67062,6.18225,3.670945,6.714824999999999,4.5049,3.47341,0.6919342857142857,2.3068325,1.5478525,2.9069599999999998,3.4127925,4.10054,3.84542,5.3905,2.6940866666666667,4.815695,3.6623666666666668,3.7512666666666665,3.2772166666666664,4.731495,4.659155,4.82421,2.9252800000000003,5.99828,4.42542,1.4709750000000001,5.44845,3.5478,2.73387,2.16302,2.2474000000000003,4.632699333333333,1.2407214285714285,2.49347,2.12573,3.83863,4.568735,2.524923333333333,3.3078833333333333,3.003519333333333,2.5296833333333333,3.914215,1.35904,2.2678566666666664,2.334913333333333,2.89866,2.51285,2.6042566666666667,2.6341033333333335,3.927895,2.89607,2.7950966666666663,4.049395,2.37655,3.794655,3.606315,1.3453065151515151,1.3453065151515151,4.697925,2.9283699999999997,1.79968,1.346055,2.1620725,2.014545,1.22997,1.4163833333333333,0.6403179999999999,1.63884,1.5626233333333335,3.00793,2.3353966666666666,1.8082366666666667,1.8664266666666667,2.2518933333333333,1.56457,1.7419666666666667,1.8129333333333333,2.3507675,4.165465,2.9409,3.010033333333333,2.81595,5.661075,2.845125,4.267685,3.953006666666666,2.43146,3.97359,3.107915,1.87259,3.42261,2.027395,2.98946,3.659215,2.0530025,4.491295,3.416735,4.123615,3.419233333333333,0.8326988888888889,4.66577,3.769965,3.30293,3.70124,2.650776666666667,4.776315,4.70781,5.089768749999999,9.195166666666667,3.812055,4.40737,3.11023,3.635705,4.434705,2.45001,2.968865,4.252985,2.2361825,5.67223,1.8342680000000002,2.626185,6.67542,2.9312233333333335,4.220167999999999,1.2871542857142857,4.597245,4.655595,3.3295833333333333,4.80429,4.914555,6.203761999999999,16.087978154761903,0.6101235294117647,1.0810166666666667,3.189163333333333,3.922895,3.481315,2.1742325,3.58742,4.057295,4.824055,2.3984,4.45441,1.7221833333333334,1.7221833333333334,5.13195,0.7566427272727272,1.7645579999999998,2.91459,3.97778,0.3730476923076923,1.93043,4.191172249999999,1.1368500000000001,3.0167,2.7615766666666666,3.03356,7.92152,2.508356666666667,3.4625,2.01796,2.1832533333333335,3.982005,3.434845,3.339815,6.935501666666666,1.792965,2.95725,4.49255,6.68121,1.9181666666666668,2.3020133333333335,2.58174,1.3656566666666665,2.67254,1.8029937500000002,3.95506,3.678955,1.46046,1.898901,1.898901,2.9899466666666665,5.5858,4.35049,3.83006,4.564585,4.83274,3.049375,3.7148,4.00505,3.494845,4.638108333333333,3.7549525,4.48114,0.908929,0.362289375,5.2754,3.839285,2.5050166666666667,8.07777,1.55244,4.6494,4.035155,0.43248166666666665,1.9700566666666666,1.2419666666666667,1.81818,1.9138166666666667,5.16863,2.979895,3.262165,4.5954875,4.98596,4.643715,0.6055761538461538,2.110255,0.578075,5.739971666666667,1.532476,4.92735,2.09525,3.20757,3.24936,4.104665,4.25343,5.01575,0.8572663636363637,3.085015,4.07697,2.04985,1.7593325,3.708005,3.13097,3.59707,3.8026662499999997,5.598409523809524,4.61081,5.57475,2.7576699999999996,0.7826077777777778,3.4884,3.62592,0.6793761538461538,3.956105,4.013305,3.961605,3.03366,2.6752533333333335,5.22905,3.296995,3.61743,2.19578,3.858345,1.77667,3.593,3.806375,0.641916923076923,4.968135,4.126355,3.06589,4.06645,4.2352,2.62333,3.830325,0.616435,3.0647066666666665,3.80412,4.522865,3.5017333333333336,2.53815,3.4995999999999996,2.53815,5.1783,3.08134,3.2239733333333334,1.5133333333333334,3.0001700000000002,1.9209025,4.33656,2.9176566666666663,5.306783333333334,3.2965999999999998,2.864716666666667,2.9553666666666665,2.356998571428571,2.356998571428571,2.356998571428571,2.3292366666666666,1.1021833333333333,4.558055,2.3989066666666665,1.69127,4.047266666666666,2.6590666666666665,3.105923333333333,4.181845,5.35115,3.607045,2.04857,1.666208,4.096395,1.9205539999999999,2.391576666666667,2.89621,3.347525,2.0745775,3.57168,2.729125,1.7152560000000001,4.671945,4.18575,4.08921,3.66899,0.75886,2.434536666666667,4.51341,7.556100000000001,4.18016,3.022965,3.93399,3.42697,3.70965,1.98536,2.3718025,4.932185,2.245565,4.390105,3.573585,5.07665,8.769486666666666,4.004165,3.723245,3.27109,4.803865,4.2343,3.4727275,3.4727275,4.144065,4.087705,4.14604,4.210105,4.31916,4.488615,4.216765,1.14227375,4.281675,4.314085,5.2295,7.840339999999999,5.08315,3.8522193333333337,1.8985433333333335,1.4740066666666667,2.5754925,4.8543,4.04618,5.0991,2.6453166666666665,4.36134,5.1137,5.06765,4.83832,2.9803466666666663,3.975205,4.217355,5.2856,5.0021,3.94219,6.88974,4.55301,2.25467,4.97199,4.189665,4.32779,3.9134,4.607825,0.7641463636363636,4.394215,4.559195,1.2313100000000001,1.4261659999999998,4.984045,4.716005,8.9038325,5.3299,4.799765,6.22095,2.913965,2.6327666666666665,5.00995,1.7048975,1.7048975,2.708675,1.62518,2.9367925,3.4619999999999997,1.8967,4.225109090909091,1.4465433333333333,2.203245,5.9746025,3.4984883333333334,3.50477,3.19895,4.15415,4.06768,3.03626,1.0480766666666665,4.057985,3.07412,3.97487,4.226295,3.632816666666667,5.7609,5.5326,5.09825,4.036925,5.29825,6.5003,4.778295,3.365705,3.519045,2.018705,2.018705,3.80117,4.260525,2.55074,2.784823333333333,2.248369696969697,2.8052466666666667,1.5797966666666667,1.5797966666666667,4.408885,3.495285,2.229765,3.560035,2.89544,4.80942,2.334135,1.192611111111111,2.701765,0.47058947368421056,0.9250966666666667,2.81169,4.071655,0.42591818181818186,4.02311,1.8958179999999998,5.45305,3.616455,7.117185,4.372585,5.2985,4.778565,5.0974,4.151665,1.95158,1.8082,4.23225,3.01429,3.92131,1.3127933333333333,3.42984,4.427075,2.656655,2.70647,2.741175,4.39564,3.586655,3.57128,3.908125,3.60789,3.36056,3.36764,1.0846457142857144,2.0221,2.258445,2.98592,4.32416,7.67379,0.881954,1.5288599999999999,1.5288599999999999,1.9079920000000001,3.951935,2.767595,3.089655,5.2989225,2.8591833333333336,1.157805,1.157805,1.157805,2.94987,3.288795,4.75941,3.24022,4.19202,3.29356,3.65993,2.906965,3.2148083333333335,3.59396,4.22708,2.84875,1.22997,3.248275,2.84875,3.52118,1.3489566666666668,1.9389733333333332,1.972605,5.658082666666667,2.807875,6.008241,5.658082666666667,3.200366,1.6778466666666667,1.6778466666666667,2.93579,6.81069,1.6778466666666667,2.353595,5.39676,2.219985,2.65249,5.01046,3.53293,4.45614,2.0012866666666667,3.39723,4.17446,2.0702333333333334,2.300535,3.78527,2.0012866666666667,2.42953,2.02079,6.12439,2.51049,1.1571580000000001,2.477,3.254145,3.3377805,1.88422,2.1648705,3.75005,1.8551480000000002,1.70613,3.235185,2.31701,3.351765,3.29295,2.0089866666666665,2.8652,2.249895,6.32144,2.36868,3.45687,3.12796,3.12796,8.928113333333334,0.9296433333333334,2.676355,2.40234,2.98769,2.29035,1.28987,1.28987,3.47386,2.132005,7.041729999999999,2.31812,3.741075,3.30492,6.17667,2.742625,2.44007,5.967625,5.967625,2.5242,1.5490125,1.1974775,1.1974775,1.5490125,1.95809,1.1780366666666666,1.1565916666666667,1.6042066666666666,2.01647,3.72665,1.679305,3.245,2.542665,2.942125,2.744905,2.85341,2.416605,3.3465849999999997,3.3465849999999997,5.92583,2.23921,2.873535,2.375575,3.495135,2.388465,2.864895,2.514015,5.0277875,1.9433575,1.4283869999999999,1.1846303333333332,2.0473453333333334,5.10002,3.829992,3.26432,3.24364,1.60233,1.60233,1.60233,4.78536,2.326295,1.1565916666666667,3.15955,3.47455,1.31808,5.17174,3.0561,6.14386,3.72698,1.879075,3.496035,2.7368133333333335,2.15626,3.40729,4.59135,3.57492,1.72944,2.68033,3.10719,2.888265,5.4219,1.99824,3.321775,2.641645,5.66966,3.94802,2.17923,2.034475,5.52978,5.22315,5.51645,5.48112,1.019502,1.019502,3.983167,3.983167,0.878242,5.1139,3.46964,5.20572,4.0621,5.42043,2.171465,4.177825,4.177825,2.24057,3.213075,3.55766,1.190522,5.07065,3.12294,3.230835,2.849755,4.66678,2.406175,2.42631,3.262665,2.94875,2.77353,4.69234,2.55307,1.74606,3.686945,6.63186,6.047,4.1388,2.608105,3.39931,3.029475,5.68419,2.54768,3.47628,1.76064,6.86118,4.23233,2.19651,2.019105,2.86821,4.68634,2.39846,2.761265,2.70475,7.23913,4.96187,3.202875,2.15918,2.601845,6.53081,3.418475,3.15524,5.07585,2.923175,2.98978,2.426715,3.173565,1.8609166666666666,2.00356,1.8663633333333334,1.8184566666666668,1.7371299999999998,2.0652133333333333,1.684245,2.0204133333333334,1.709975,1.8609166666666666,3.66789,4.1884,2.043595,1.6251925,1.6251925,3.8168266666666666,3.8168266666666666,2.9200133333333333,2.9200133333333333,2.855155,2.17222,1.677545,3.57296,2.221105,2.221105,2.412595,2.412595,3.08651,1.965635,4.87492,2.29854,3.166615,2.2208733333333335,2.2208733333333335,1.530425,4.05279,5.1769,1.3489566666666668,4.75618,2.0089866666666665,1.742,3.80266,3.14059,1.890045,2.294415,6.11101,2.16103,6.05027,3.07776,3.27087,3.043,2.522405,6.15647,3.02561,2.50997,2.6540011538461536,2.729795,5.33816,3.5053,1.533756,1.533756,4.03507,4.76753,4.98923,5.22578,3.00758,2.694715,1.72925,3.09637,1.699,2.86639,2.02577,0.759052,0.759052,0.759052,2.072020833333333,5.020813333333334,2.072020833333333,2.11229,3.57743,1.552695,2.026125,4.25551,3.53548,5.26399,1.7901,4.84194,1.7901,1.7901,2.18405,1.922525,2.142765,6.3745,2.142765,2.36949,3.7888,2.01289,2.01256,2.884805,3.024713333333333,3.4029908333333334,3.071623333333333,3.741865,1.4270466666666666,4.367845,0.78996,4.4228,4.4985275,2.6084625,2.6084625,0.7414945454545454,3.917666666666667,2.8162366666666667,5.69395,5.0127,4.196835,5.27165,4.375095,4.238295,5.14945,4.49227,4.23398,3.88174,3.993445,4.97744,5.242,3.37404,3.53308,3.953565,2.452856666666667,1.348188,4.509825,3.8539,3.4371,1.424127142857143,3.828005,4.056055,6.326595,1.165195,5.21035,4.450185,1.995825,2.015665,3.23787,3.5361,1.647905,1.533756,4.06185,4.731985,2.69699,4.604035,2.96959,1.1489699999999998,3.031136666666667,1.2590957142857142,3.0668966666666666,2.107423333333333,3.1447966666666667,1.874555,2.57442,4.302875,3.518635,4.477765,3.26316,2.23633,4.93221,4.16837,3.044115,5.40505,4.33258,2.6762599999999996,5.97655,4.7316,3.1438550000000003,2.600956666666667,2.76616,3.0954800000000002,3.088696666666667,2.77857,4.888905,4.29606,3.75391,2.45763,2.60553,2.4025933333333334,2.642673333333333,2.3114466666666664,2.367906666666667,2.305893333333333,2.1681725,1.393385,2.9498870000000004,1.2166675,2.1405475,1.70802,2.649025,1.622465,1.994805,4.112475,4.015765,1.9778125,4.119785,4.147735,6.47072,2.043633333333333,1.570976,6.7875,3.383885,4.87768,4.23422,4.005995,1.979525,3.598055,2.5498,2.986385,4.394275,0.7117,4.18233,2.2577333333333334,0.8443245454545455,4.880925,4.65975,3.86064,1.83883625,4.59729,5.2986,2.707216666666667,2.7381266666666666,2.4882966666666664,2.14392,0.5816250000000001,3.0970033333333333,3.083925,4.96296,2.4936525,2.074665,3.961085,1.0438075,1.8072983333333332,1.8072983333333332,2.84606,1.8072983333333332,4.20293,2.76575,4.660555,4.32055,5.9581,13.687145833333332,3.299023333333333,4.99597,3.10558,4.641185,3.146965,6.565025,2.981723333333333,4.851985,4.90518,3.893135,1.31103,4.77802,3.08512,2.6618166666666667,1.0444744444444445,2.192355,3.52253,7.2710316666666674,4.275345,2.8462933333333336,4.470015,3.370433333333333,4.20979,4.96578,4.499545,2.761985,2.837423333333333,4.016835,5.68765,2.377315,4.71854,2.1271075,2.1271075,3.09748,5.0543,1.385775,4.2362313333333335,2.2550325,4.476745,2.54599,2.3190033333333333,2.8492866666666665,2.2868833333333334,0.7086742857142857,3.48769,2.7964933333333337,5.2291,4.509055,0.2464640625,5.33185,4.6239,5.5441,6.968795,3.2109166666666664,2.87863,2.20791,3.2920200000000004,3.27354,1.4335066666666665,2.8314166666666662,2.653563333333333,1.3846800000000001,3.286896666666667,3.1056933333333334,2.7665733333333336,3.439633333333333,1.346983888888889,4.235925,2.46031,5.1048,4.308475,3.95037,1.6358066666666666,2.547006666666667,1.218065,2.03546,1.218065,4.906575,3.521933333333333,1.613486,2.4636275,3.961645,3.795915,3.36016,3.831935,0.3646975,1.5254804166666667,3.793905,4.047005,6.1071,1.8429,2.8278199999999996,3.1087733333333336,2.590786666666667,2.886045,3.33821,4.69622,2.5371,2.328466666666667,2.9182666666666663,2.6419866666666665,2.7675666666666667,4.33665,2.057245,4.381225,3.8177225,6.05955,7.7036625,0.7523477777777778,0.8309279999999999,3.99736,6.854017499999999,1.993318,3.470995,1.5501283333333333,1.5501283333333333,3.467945,0.4468788888888889,3.69629,4.43002,2.65038,4.094225,3.163465,2.624035,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,2.506575,3.35089,3.6301233333333336,3.6711733333333334,4.444285,6.527172083333333,2.85617,2.3608766666666665,0.9075283333333334,3.334725,0.70580375,6.016136666666666,3.65526,2.310905,0.70580375,3.357425,2.87681,1.11736,4.11949875,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,4.342125,1.639685,4.55534,4.606535,1.7623919999999997,4.850095,4.39386,5.3143,4.655752499999999,3.5488678571428576,3.39393,4.39753,2.312795,5.37315,4.36233,0.7578571428571428,1.4145257142857144,1.3790957142857143,3.4089333333333336,3.4089333333333336,3.0456216666666664,3.750065,4.54816,3.735175,4.15685,3.074396666666667,2.1199266666666667,0.5107014285714285,3.98249,3.06912,2.727315,4.269285,3.352915,3.12507875,4.736195,4.480015,6.75672,4.29549,4.79141,5.8054,4.301695,1.2806757142857141,3.287925,5.365863333333333,34.123197494949494,1.2829966666666668,4.347215,3.74071,4.556035,4.168195,5.0735,5.18145,0.4152166666666667,5.20885,4.41718,2.0632375,1.94648,3.629325,1.79625,2.448755,2.28979,1.6909925,2.883105,2.4211666666666667,2.81086,2.870745,0.6035592307692308,3.760415,3.76738,0.3938684210526316,2.6110866666666666,3.70293,2.644055,3.868415,1.87106,4.5549,3.915175,3.124425,3.75857,3.18231,4.34191,2.850745,3.8817,2.16031,5.365863333333333,3.60786,3.795915,3.03893,1.769326,4.22723,3.57569,6.949165000000001,3.458065,4.82431,6.7015025,5.218072,2.208075,4.91765,6.217945,7.89034,2.65984,2.54646,4.78612,5.649563333333334,4.382515,3.421065,5.6436150000000005,2.65245,1.7559725,2.3102325,60.784929040370535,5.4071,4.196725,2.554575,1.00019,2.9357666666666664,2.903923333333333,3.4494333333333334,0.8293955555555556,4.40268,0.8001066666666667,7.7150478571428565,1.9205539999999999,3.306243333333333,1.807514,2.67054,2.59683,3.1460899999999996,2.417726666666667,2.2203633333333332,3.363,1.60681,5.567269166666668,4.267166666666667,1.3001025,2.6526366666666665,1.3539766666666668,1.5174625,7.19937,5.71735,3.436325,5.0793,5.45413,1.4695714285714288,3.4970666666666665,5.30555,1.6557125,5.3194,3.765645,3.901535,1.87603,2.948008333333333,3.4966333333333335,3.74807,5.6008,4.103765,4.5244,2.292405,3.95763,4.5210333333333335,3.19952,1.481118,4.386925,3.285773333333333,4.220545,5.14385,3.976035,3.84146,4.77799,4.330905,4.311395,4.62776,4.163505,3.2297366666666663,3.916065,4.333105,3.08104,4.13022,3.859655,1.4603125000000001,1.4603125000000001,4.331705,4.87134,5.1307,4.05613,4.70409,3.5313,2.74244,4.911285,4.97717,0.6975863636363636,5.2875,6.9196,5.31825,5.7801,1.2336,2.829005,0.9495683333333332,0.9495683333333332,0.9495683333333332,3.52074,3.4438333333333335,2.728343333333333,3.5342333333333333,0.966958,4.959215,5.08215,3.10122,1.6729775,2.0758,3.878295,4.387395,3.7771,3.714546,6.64455,3.715585,2.5523599999999997,4.71416,6.82805,2.181825,4.10255,3.65119,3.116125,5.30815,4.480845,4.774575,6.06715,3.667295,3.7224188888888885,1.9025400000000001,1.9025400000000001,0.7225636363636364,8.781002,2.19031,5.8559,5.60715,4.4009,5.2594,3.766895,3.0025916666666665,4.808455,7.68496,5.749553333333333,2.15664,4.453585,1.01394,3.775445,2.01941,0.9095933333333333,1.2896128571428573,2.902753333333333,3.1034666666666664,2.81334,1.1805114285714284,2.6959466666666665,3.0989400000000002,0.9110744444444444,2.798023333333333,3.1941366666666666,1.699628,1.74218,3.0321466666666663,3.1500233333333334,2.8544733333333334,2.485106666666667,1.7500440000000002,5.16965,4.536085,3.945185,4.250315,5.01405,3.192775,4.43793,6.3076,4.96673,4.21027,3.97984,10.578216666666666,8.38829,3.0016533333333335,3.656385,2.0666033333333336,3.817355,3.127515,4.48394,1.2473233333333333,4.0336,3.525175,1.49707,3.749585,2.8390883333333337,4.17831,2.949875,3.83815,7.02665,7.399653333333333,4.096715,1.5186966666666668,1.5186966666666668,1.5186966666666668,4.76845,1.1650166666666666,1.429375,0.4813444444444444,4.40999375,3.059136666666667,3.58669,1.02427,1.1705075,3.326715,4.310075,3.804735,16.795208976190477,4.43106,4.539175,6.3378475000000005,2.8250499999999996,3.59426,3.347945,0.949858888888889,1.4382125,4.12944,3.53486,4.460665,4.507255,4.423465,3.86005,2.7506199999999996,3.318515,5.2725,0.565465,4.735525,2.3145325,4.115445,5.10085,3.6085666666666665,2.3072666666666666,3.957641666666667,1.8172233333333334,3.949475,6.0626,2.912623333333333,3.142875,4.489435,4.496485,4.855895,4.030505,3.88302,4.26978,4.82993,4.76827,3.998125,4.876965,3.88368,1.2795971428571427,1.592455,6.2325289999999995,5.8264,4.58644,5.1968,2.484495,2.6973333333333334,2.7569133333333333,5.5607500000000005,1.9029675,2.046845,2.94101,3.0527599999999997,3.356833333333333,4.51507,3.318455,5.337535,1.32023,4.633425,0.8981316666666667,4.041375,3.708325,1.6566049999999999,4.334385,0.94885,4.911245,5.5716,5.09375,4.30222,3.731315,3.88529,2.9467,5.05515,5.8444,3.0541695,4.08133,2.49324,2.54712,1.8974,2.53474,3.57568,5.2508,1.043795,4.4094475,1.3632475,3.33322,1.61191,1.043795,0.2555954054054054,4.023855,2.949995,2.36188625,1.9611466666666668,2.66677,1.0755325,4.087715,3.40104,4.868365,2.5593933333333334,6.34925,6.8216675,2.8029499999999996,3.4031000000000002,2.6534166666666668,0.8193699999999999,2.39336,6.0453,4.60595,5.32975,4.96179,2.179386666666667,1.4553166666666666,3.803955,1.6386975,2.18842,1.69603,1.6781175,1.705555,1.97876,2.106895,2.188845,1.987395,1.2943085714285714,1.47343,2.148315,2.3470875,2.20505,2.1533,0.5342800000000001,1.8406099999999999,2.7318599999999997,3.2359000000000004,1.939005,1.8962633333333334,1.552505,4.011025,2.322976666666667,2.685235,3.15387,6.3383,3.956345,2.7384500000000003,4.404835,1.7252361764705881,4.3091550000000005,24.8649935,4.54067,5.87125,4.513205,2.536313333333333,3.832845,4.73838,2.6224,5.0307,3.2467133333333336,0.7598275,3.58941,4.731665,4.00571,4.04955,1.5759033333333334,2.0549566666666665,2.391506666666667,2.23201,1.444942857142857,3.4021000000000003,5.2031,4.211065,3.253645,3.910875,4.710775,4.38681,4.99494,1.268125,3.60265,4.162125,4.745955,1.7226299999999999,3.1318866666666665,1.813345,1.813345,3.671045,4.93052,2.8958,3.0297300000000003,4.11766,4.068225,6.47315,4.506005,2.229495,1.4382125,2.718015,4.31166,3.0914300000000003,2.4662831746031744,2.4662831746031744,3.3419333333333334,4.758205,4.011255,5.228865,2.403105,3.527701333333334,0.6239366666666667,0.6239366666666667,0.6239366666666667,3.532165,3.76183,4.091513333333333,5.6759,2.3390875,5.16825,5.0641,4.783805,3.829545,4.96586,2.63611,1.4556428571428572,4.711895,4.381085,0.47135714285714286,4.303766666666667,4.865655,1.5712366666666666,5.1576,5.25025,4.768445,4.307325,3.673885,2.9477,4.50576,1.6751359999999997,4.311245,1.6663366666666668,4.357695,5.90285,1.25235,3.12498,7.04566,3.830205,3.3147800000000003,2.321675,3.924005,5.7314,3.3560666666666665,7.14709,4.177355,2.213713333333333,3.0766500000000003,2.720746666666667,2.78078,2.9197433333333334,1.8362800000000001,5.20455,0.5870449999999999,1.899775,1.899775,3.306605,4.781055,2.3067325,2.97952,4.461865,4.68951,4.37566,1.3696599999999999,5.401459553571429,4.43989,4.944615,3.70077,4.003277333333333,3.586496,0.41678133333333334,2.601662,1.01900375,0.41678133333333334,4.333915,0.8499255555555556,4.22816,4.05442,6.744212,2.12159,1.0733275,1.09586,2.22735,2.95128,1.6310766666666667,2.44732,3.38556,3.4314,2.267866666666667,2.395376666666667,4.420985,3.24184875,4.06078,6.0242,3.73176,4.94518,7.064986666666666,4.716855,3.618535,4.465745,3.730165,4.64023,5.1203,5.9522425000000005,5.31815,2.4554966666666664,1.0230822222222222,3.893855,3.994875,4.191795,4.815335,4.242255,5.53805,2.736936666666667,2.52053,3.0704700000000003,2.4911033333333332,2.1927066666666666,3.0256266666666662,3.2150499999999997,2.5784333333333334,4.074015,4.682835,4.324655,5.3346,2.70513,3.3439333333333336,2.92045,0.7222928571428572,4.35979,3.552545,4.591285,3.197843333333333,5.780099999999999,3.249415,4.675855,3.9474,0.5970615384615384,0.5560935714285714,4.28818,2.9221130000000004,3.41104,4.55621,4.238465,1.805772,5.16,4.24688,2.7012633333333333,2.648093333333333,2.30935,2.076155,3.4836666666666667,3.336,3.0665366666666665,3.18118,3.567066666666667,2.691625,3.2371700000000003,3.8133666666666666,4.4077325,0.567090625,0.567090625,0.567090625,3.2040286250000003,3.595833333333333,3.7367000000000004,2.71575,2.845606666666667,1.14227375,2.963276666666667,3.0433733333333333,1.884655,2.62568,2.3230733333333333,1.00769,2.949775,4.700115,9.614563583333332,1.4709438333333331,0.6493909999999999,3.659615,0.6493909999999999,0.6493909999999999,0.6493909999999999,0.6493909999999999,2.1444425,4.0539594999999995,4.027375,5.2948,6.0567,2.8974933333333333,2.8840166666666662,3.0029025,3.5588583333333332,5.37085,1.2998733333333334,2.3211999999999997,3.1762866666666665,2.6307666666666667,3.0318633333333334,4.17952,2.29049,3.052845,1.1918333333333333,5.11365,3.73399,3.837295,0.916695,0.614715,0.614715,0.9101200869565218,1.8268150869565218,0.9101200869565218,0.9101200869565218,0.30462608695652177,0.30462608695652177,0.9101200869565218,1.4961333333333335,2.5310833333333336,2.983315,3.077693333333333,2.5939133333333335,2.6287166666666666,3.141916666666667,2.918813333333333,4.511265,3.523555,1.90784,2.2648566666666667,1.8076575,0.17928542157584684,0.17928542157584684,0.17928542157584684,0.17928542157584684,2.46984,2.5693533333333334,0.8336220000000001,5.13935,0.7800245454545455,1.675982,4.594636666666667,5.19085,4.24145,3.303355,4.28268,3.77592,2.21449,1.2324825,3.857175,4.758165,6.2729,2.358475,1.3476133333333333,1.9023933333333334,3.1773133333333337,1.5071633333333334,2.7292566666666667,2.997896666666667,3.087896666666667,4.511185,4.15383,3.08765,4.85373,2.6349,4.25778,5.52645,4.04894,4.38946,4.939575,5.4445033333333335,5.076718333333334,3.1320931428571432,4.909833333333333,4.555735,6.2311,4.43178,4.76029,2.2715625,3.180715,4.154845,4.917165,4.36407,3.86537,3.89256,3.952195,3.907485,2.4177166666666667,5.40755,3.63575,7.4909225,6.12065,5.9413,4.939205,1.475442857142857,0.977347,0.6131776923076923,1.774314,4.724375,5.18725,3.88935,1.67819,4.455245,2.987715,4.95456,5.3914,6.149857000000001,4.114185,3.13131,1.715964,5.4369075,3.95683,3.122325,1.7079175,1.01344125,3.872955,3.24474,3.5057575,3.57384,1.99306,4.475995,1.6608066666666668,2.93971,2.339145,4.453585,5.76135,4.909345,2.2333325,1.56921,5.66325,3.0160033333333334,8.85505,2.9765,5.18505,5.91325,4.68367,5.28645,3.661575,5.0957,2.20444,3.982075,5.185522,2.455625,4.431895,4.403575,7.459985,5.04805,3.3139133333333333,4.27585,3.87939,3.24184875,3.574335,5.2982,5.6479,2.50665,3.0412133333333333,3.4077,2.34833,2.76999,4.467175,5.93585,5.1998,4.60561,4.94212,4.353745,5.3964,0.6393215384615385,3.1578700000000004,1.2487471428571428,31.825042396588163,2.74131,4.627415,2.976005,4.43997,1.6976559999999998,2.52333,3.412245238095238,1.5288752380952382,1.5288752380952382,1.5288752380952382,1.5288752380952382,1.88337,3.578895,0.31558444444444445,7.872208888888889,0.31558444444444445,4.75462,4.956855,2.192175,5.4399,2.8018,3.9153553333333333,2.34594,2.4198033333333333,2.7237899999999997,2.1588,0.6166423076923077,2.5903666666666667,0.7668858333333333,3.2826833333333334,2.283776666666667,2.384028,1.2006116666666666,2.384028,6.20545,7.932449999999999,4.854925,4.40921,5.6764,6.21455,7.567589999999999,3.22658,1.5786275,1.5786275,2.3699166666666667,5.087,3.721615,4.70788,6.292768333333333,4.190635,2.81284,3.986545,3.37784,3.57153,2.22901,0.89456,1.766105,4.137305,4.13873,5.279347777777778,2.090755,4.07998,1.44388,3.25758,1.373972,3.3053066666666666,3.2049566666666665,2.6709633333333334,3.220876666666667,3.0207266666666666,4.983325,0.7575123076923076,3.50652,3.6551666666666667,2.6995766666666667,2.3599,4.3247743750000005,3.4281666666666664,2.5082133333333334,5.1427125,3.8181,5.09485,3.86362,3.772755,5.51045,5.11285,2.31269,5.7409,2.370382,2.1511133333333334,3.158246666666667,2.8035599999999996,2.91198,2.64476,1.8912466666666665,3.480290378787879,4.440745,3.32892375,2.384398,2.384398,2.51038,3.73884,4.179325,0.7285627272727272,3.310435,3.19986,8.70611,0.8940363636363636,4.42632,3.658995,5.4124,3.71352,3.89761,2.352985,4.112015,2.8574,5.9863,2.734776666666667,3.8697,2.66929,3.96756,2.496773333333333,3.62895,3.621125,4.31254,5.185947,3.24912,1.941225,5.31165,2.47287,4.525715,5.1155,4.69517,4.46211,4.046305,3.064985,2.1538766666666667,2.94948,2.6845866666666667,2.7753,3.2232800000000004,2.7786269047619045,5.028688333333333,2.9506433333333333,2.4690433333333335,6.87148,5.30867875,3.9584574999999997,3.082003333333333,3.8124333333333333,4.00919,3.4372,2.1903025,4.0045625000000005,5.10465,4.6362,1.4491666666666667,4.49292,2.8844833333333333,6.6993675,4.838025,8.592685,4.22906,3.59934,2.334035,4.081125,5.7869575,7.80881,3.48812,5.7894,4.001545,3.18974,3.87405,1.72077,4.67887,1.4510616666666667,3.930745,4.573775,3.5149000000000004,0.8531333333333334,9.212251666666667,1.2181444444444445,1.933615,2.4834533333333333,2.0307133333333334,3.5549666666666666,1.3330133333333334,3.648795,3.529875,3.1296199999999996,4.33807,1.1918183333333334,4.086445,1.3956600000000001,2.9008643333333333,3.91578,5.35935,2.0885475,5.911125,2.398456,7.88201,4.38114,2.693815,3.97283,3.289455,1.3145541666666667,7.32531,2.95679,3.39695,2.32734,4.094585,2.162835,3.1743775000000003,2.32607,3.896005,1.3679325,5.5637,3.52721,4.155725,0.8700720000000001,2.0108103333333336,3.856265,5.138,5.087562500000001,1.45434,1.45434,6.02045,4.50496,5.6625,3.749205,3.41451,8.67541,4.356525,5.57135,4.10771,2.4991525,2.0700021884280595,0.378358,0.19816387096774193,0.6532127598566309,1.0384314285714287,0.6399252995391705,0.19816387096774193,1.248658,0.4550488888888889,1.4167894285714286,1.901870759856631,2.1160125,2.25393,2.1279566666666665,5.2484,6.6410583333333335,5.02805,5.4485,4.774365,5.24805,1.2015866666666668,5.214,4.096925,5.99195,5.4062,5.39655,5.95445,5.72815,5.73345,1.4041433333333335,1.5192999999999999,1.9514019999999999,6.221162,1.414342,5.4904,4.797515,7.074559166666667,5.0866,5.60905,4.729505,4.805035,2.69585,5.42395,5.51415,4.4718583333333335,5.0455,5.862695,5.65005,3.77721,4.301505,3.861133333333333,1.0415699999999999,3.6674333333333333,4.531165,1.2550625,3.6789,4.772275,4.62681,5.05215,2.5376,3.065275,2.790483333333333,4.57142,2.24927,3.84202,1.289105,3.21654,3.76302,4.341845,4.90851,3.4020333333333332,0.6454166666666666,6.07085,0.98033125,3.694615,3.0977633333333334,3.84144,2.087286666666667,3.787785,3.682018205128205,3.4304,4.46922,15.424825214285715,5.34191,2.225315,8.44682,1.4937075,3.748785,2.962203333333333,2.8983033333333332,2.17511,0.20139434782608695,3.2398399999999996,4.871905,1.778782,2.2863,3.4904666666666664,1.8094575,2.3040333333333334,1.4464285714285714,3.475625,4.724465,4.639515,3.986415,0.4579457142857143,2.3876399999999998,4.607825,2.93743,4.532305,4.626905,4.20034,5.2844,0.5287847058823529,2.5184166666666665,2.5184166666666665,5.3886,4.441155,4.920245,2.734325,3.7840333333333334,3.0685033333333336,5.2109,3.721325,5.469829444444445,4.701055,4.53684,4.967815,2.80605,2.00478,4.416275,4.15411,3.852665,3.67839,1.7858059999999998,4.791615,4.31354,3.76454,4.75318,3.920245,4.335045,0.623886,3.212985,0.717025,3.166036666666667,3.24037,4.54655,18.094882857142856,3.718865,3.88853,2.7368133333333335,1.0914125,2.5619833333333335,2.4953499999999997,1.517782,2.416505,2.50527,4.873335,2.2171866666666666,4.406265,4.547295,2.13825,4.52199,3.0046933333333334,4.850425,5.24995,5.50795,1.446425,2.197275,2.83826,5.2901,4.882915,1.1577444444444445,5.37075,3.9098,5.50975,4.724525,1.7845266666666666,4.511475,3.674695,3.6941,4.02817,4.120105,3.08088,0.721415,7.78534,1.443104,0.21030000000000001,0.21030000000000001,0.21030000000000001,4.99483,3.939255,2.6801999999999997,4.28501,2.952145,4.36872,4.369250714285714,4.03533,8.611883333333333,4.222525,6.916528333333334,0.84991,0.97288125,2.523825,4.511125,4.264625,2.2034,5.1925,5.42305,3.50185,3.83105,4.354935,2.33676,4.741575,4.7943295,2.3589766666666665,2.9077966666666666,2.987636666666667,2.809585,5.9965,3.77256,0.68218,3.944075,4.266755,4.209025,4.988883333333333,4.92876,3.6847,5.39115,3.52349,13.668902916666667,4.67564,6.808943416666667,2.6358200000000003,6.472530000000001,4.425645,3.917325,2.1222125,2.3109166666666665,9.56562,2.2633266666666665,4.2823,4.170533333333333,3.7291000000000003,3.1724,2.896176666666667,2.0739575,2.2081075,2.953803333333333,1.8712579999999999,3.9023,2.4432966666666665,2.6148966666666666,3.4115333333333333,3.6085999999999996,2.44148,2.44148,2.5627299999999997,3.598433333333333,3.4506333333333337,2.6522099999999997,3.2617133333333332,4.278866666666667,2.727403333333333,2.8806366666666663,3.8313333333333333,2.3512733333333333,2.045805,3.9140333333333337,2.9418066666666665,1.617392,4.188366666666666,2.6608199999999997,2.5096433333333334,3.0147666666666666,2.40277,3.401033333333333,5.928448333333333,2.3829066666666665,3.8013666666666666,1.9633266666666669,11.375225,2.07631,1.7933166666666667,2.07036,1.0530933333333334,1.6118700000000001,5.446653333333333,2.809222,2.809222,1.663664,1.4871683333333332,3.6033466666666665,3.8953133333333336,2.2371233333333334,1.5307266666666666,1.697138,4.552088666666666,3.6273,4.0759,8.360373333333333,2.8737285714285714,2.43146,3.1783546583850932,4.291966666666666,2.045805,3.29093,2.88851,3.4965333333333333,3.4778266666666666,0.93087,3.3405379999999996,2.990763333333333,2.85196,4.13523,3.1812199999999997,0.7031445454545454,1.9102064285714286,5.0092,2.564351,3.3064966666666664,1.6396633333333333,1.6396633333333333,2.101295,3.7178950000000004,1.02426,2.2668675,4.59818,4.59818,0.6420285714285714,6.034084,3.49524,4.175455,4.92423,1.2614442857142856,3.3363666666666667,3.535266666666667,5.1152725,6.356918666666667,2.8103700000000003,0.649277,2.8050766666666664,2.62837,3.072172,2.4598766666666667,2.5757733333333332,2.9055933333333335,2.3789925,2.4741233333333335,0.7910072727272727,4.570225,4.927828857142857,1.3520883333333333,1.792142857142857,5.35925,2.076235,1.73339,4.174005,1.848186,3.680175,2.598275,3.6229333333333336,8.97609,4.3336925,4.63126,5.13305,2.439359636363636,0.778554,1.8896799999999998,6.974693333333333,1.7897933333333331,4.314915,4.042145,3.47464,21.186440249999997,3.1916499999999997,1.3523233333333333,1.13282125,3.14067,1.38465,4.220167999999999,5.2811,3.3529910000000003,3.4393999999999996,1.5623633333333335,1.36553,2.9002033333333332,0.58102,3.4007666666666663,3.6869333333333336,3.0976966666666663,2.4362333333333335,2.60887,2.8328366666666667,2.0795566666666665,2.820843333333333,1.6336780000000002,3.6309666666666662,1.4892533333333333,3.88138,4.042735,2.6994633333333335,5.1477,3.33913,4.07867,5.2279,4.708145,3.27291,2.8419000000000003,2.4038633333333332,1.0935785714285715,1.0935785714285715,1.0935785714285715,2.3710775,3.376666666666667,2.5960733333333335,2.4993166666666666,2.3170966666666666,1.99451,4.15194,4.66215,3.656305,6.703335,3.275975,2.54195,1.92102,1.0334316666666667,2.4841433333333334,3.8343,2.446286666666667,2.64505,2.38536,2.5101400000000003,2.51749,2.798246666666667,3.199203333333333,2.9179999999999997,2.5502933333333333,3.321566666666667,2.21773,2.1005825,1.8252275,1.6619425,3.044003333333333,3.0934500000000003,1.9927125,3.89707,5.1668,2.8995200000000003,2.5060503846153845,5.533636666666666,4.2759,4.722665,5.6103,4.768295,4.19878,6.413684999999999,1.22740375,4.26884,2.685215,5.0925,4.9333,3.851235,3.87078,2.1917475,7.554920000000001,2.563855,0.8478249999999999,7.63349,4.93082,5.712290476190477,4.52776,2.897349,1.7925,5.18255,4.28925,4.49945,5.1324,2.92336,4.149795,4.463575,1.8076575,3.952065,2.88825,1.353985,4.848555,0.6208588235294118,4.309083333333334,3.59208,4.60352,2.85438,1.74396,3.485385,2.093365,1.444025,2.9348533333333333,3.452,3.2273099999999997,7.131071538461538,1.7487275,6.660175833333333,9.753975,6.7160125,3.56401,1.4205314285714288,2.99412,1.4205314285714288,2.8114133333333338,2.1519,0.3413341176470588,1.1983978676470588,0.3413341176470588,0.3413341176470588,0.3413341176470588,1.1983978676470588,1.1983978676470588,0.3413341176470588,0.85706375,5.3695,3.49935,3.199155,3.44624,3.73751,4.02725,3.0575263333333336,1.6446619999999998,6.540136666666666,2.933756666666667,4.166885,2.6545533333333333,1.0379727272727273,1.251375,4.578595,3.9091,1.1584444444444444,1.5007920000000001,0.7411636363636362,3.011445199134199,4.18878,5.32765,3.689766666666667,5.432770833333333,0.599566923076923,4.15207,3.60077875,3.3667,2.56691,3.518133333333333,2.53405,2.9136100000000003,2.65082,3.09639,3.63176,5.7852,4.90845,2.1784600000000003,4.747835,4.38965,3.277185,3.68948,3.52044,0.3631686666666667,4.9628,3.642055,3.173505,3.125062,4.363785,3.88165,1.95639,3.1711,3.95517,9.01907,4.95264,5.6352,4.464365,3.8674074999999997,0.7663125,2.147895,2.18829,1.420695,1.8177466666666666,4.840915,5.31435,4.36935,4.89271,3.714546,2.629525,0.9288033333333333,4.088385,1.186675,1.147225,3.30137,3.79003,4.806005,1.2944,2.48724,8.725223333333332,3.2547433333333333,3.0884708333333335,0.8947975,3.82043,12.145893333333333,3.447885,4.121015,3.347205,3.180345,4.66488,5.05595,2.09818,4.327105,0.5875969230769231,4.734835,2.2055125,1.682195,1.682195,3.6313999999999997,4.4725,1.63638,4.36968,1.4746571428571429,4.02849,2.6934008333333335,3.286846666666667,4.88425,3.5123,3.8390413333333333,2.5958,2.769706333333333,2.769706333333333,11.04052,0.775146,3.181295,3.198036666666667,2.10795,1.9851975,0.9666285714285714,1.44894,1.2298799999999999,1.97315,4.645495,2.47778,4.3265150000000006,2.0335466666666666,4.046085,4.312325,1.67255,2.0190725,1.0400449999999999,5.857105166666667,2.018265,2.182335,1.688872,1.736344,1.13282125,2.44119125,3.571225,2.57428,3.0532299999999997,2.4458266666666666,2.7090866666666664,1.9037966666666666,3.0294833333333333,2.8434733333333333,1.4323833333333333,1.9126333333333332,2.7468533333333336,3.2652466666666666,2.4676566666666666,1.1485266666666667,2.5825733333333334,2.2477133333333335,2.757123333333333,0.3227057894736842,0.399635,2.3468133333333334,2.1888466666666666,3.05154,3.0881833333333333,2.711495,5.06265,5.7282,4.44635,4.55954,4.3816,4.031645,2.9845466666666667,3.81852,0.7142745454545455,0.06788704545454545,6.9236,0.06788704545454545,3.686435,3.27465,5.3326,3.54694,6.2735,4.790675,2.2702466666666665,2.60617,1.3213883333333334,5.2327,6.28615,2.8241566666666666,5.2958,2.014055,3.964855,1.9876385869565218,3.1119966666666667,3.1820733333333333,4.32732,4.854091666666667,3.28303,2.103336666666667,2.103336666666667,4.072495,8.01807,3.842555,2.1698866666666667,2.6010466666666665,4.25555,2.876245,5.06825,3.919705,1.0388566666666668,4.04858,2.721913333333333,2.954553333333333,4.274045,1.14086,2.3539566666666665,3.92947,3.78883,4.943055,2.884715,2.927285,3.905975,3.872545,4.115275,4.95602,4.66351,3.2852230555555555,3.738405,2.81793,2.768216666666667,2.6831266666666664,3.7016666666666667,4.326305,3.0046866666666667,5.093319999999999,4.46133,3.576095,5.22735,4.297175,3.68501,1.461974,1.3932625,4.06869,3.3658333333333332,1.57606,2.7876499999999997,3.347905,3.1373233333333332,4.0937166666666664,3.1406466666666666,2.172855833333333,12.695952694444443,2.1642466666666667,1.83078,4.48394,1.0589359999999999,3.2193066666666668,3.911265,4.923195,3.243385,1.1761,2.2754,2.5593933333333334,1.5260960000000001,4.909285,0.969655,0.969655,3.854983333333333,1.6799233333333332,2.1750599999999998,1.782275,3.4057,5.6757,1.990805,2.77646,3.4582049999999995,2.924383333333333,2.94018,2.0576,6.38925,5.69775,3.9223,0.686503076923077,4.174155,3.80686,1.0591,5.378,3.4809,8.7044,4.934805,4.743815,3.556825,1.46007,3.11513,4.8158,4.73752,4.08195,3.69852,4.35629,3.247475,3.5651333333333333,3.5651333333333333,4.157085,2.8830425,4.419825,1.754385,5.500370833333333,5.452076666666667,1.5712366666666666,4.602235,1.0683799999999999,5.59295,3.96208,5.25335,4.81804,4.26356,2.593945,2.674875,4.672275,4.309645,5.00665,4.36666,1.95438,1.3762180000000002,4.43173,2.11505,5.4198,3.771725,3.669305,7.2589500000000005,3.903225,4.56866,5.261,4.011365,4.506215,8.091574999999999,3.87406,2.994845,9.412395,3.78935,0.6035014285714286,2.087755702075702,4.59184,0.6204186666666666,4.63431,4.211645,4.846015,4.51452,3.314235,3.826485,4.63443,4.65942,2.535275,0.7001114285714286,4.63451,4.561785,4.717635,4.37407,2.784323333333333,4.426545,3.544675,0.670286,3.93714,4.23595,2.4557725,3.2216166666666664,4.034495,2.223606666666667,5.55305,5.1714,3.8716150000000003,3.2661033333333336,5.8901625,5.8901625,8.687446666666666,2.05476,0.8751425,0.8751425,24.919115,2.681175,7.820495,0.43248166666666665,1.2419666666666667,3.1644966666666665,0.958077,3.72787,3.93173,2.209115,2.209115,4.34088,4.757295,3.506845,2.732736666666667,2.732736666666667,3.500515,3.78407,4.01943,3.2983499999999997,2.034726666666667,2.5535070833333333,4.073827,1.9311,3.58915,2.9053566666666666,2.8718307142857142,2.8718307142857142,3.4359333333333333,0.90989,2.5293666666666668,1.68137,3.491766666666667,2.8467966666666666,2.932933333333333,2.690516666666667,4.750035,2.317,3.0744566666666664,5.770394,1.41709,2.178035,3.02999,2.706516666666667,4.17416,6.038539634920634,1.3717033333333333,3.6954,2.4517025,5.03413,6.54543,1.6132975,4.766956666666667,5.430986,3.1625597142857145,4.575866666666667,1.010417142857143,1.7226299999999999,2.885635,3.866488095238095,1.3108216666666668,2.377635,1.6520675,1.768338,2.32561,3.580494,5.2534715,1.4045133333333333,1.4427285714285714,2.9657666666666667,13.048565,4.6254566666666665,2.7374199999999997,1.06469,2.591070476190476,0.9503871428571429,3.1453366666666667,4.3313266666666665,5.142,3.474066666666667,5.6711,1.560895,3.7673666666666663,4.25391,2.8305933333333333,3.9598844444444445,2.762563333333333,1.0712644444444444,2.50765,2.2354499999999997,7.055891666666667,3.0603427142857145,2.6442633333333334,0.727063,4.6494,3.5374666666666665,1.284332,5.689419166666667,1.9086525,2.321826666666667,5.822,1.2885666666666666,2.9363433333333333,1.0099636363636364,2.97061,4.448745,3.09887,3.0656866666666667,2.22466,2.5040666666666667,4.844645,4.74245,4.994775,1.6785275,4.491925,3.645715,4.399,3.4319119999999996,2.4403900000000003,4.323344,0.9683439999999999,2.8395190476190475,5.02775,2.761275,4.141136666666666,1.41335,2.798033333333333,1.9469699999999999,1.9469699999999999,7.513303333333333,3.2543466666666667,5.266961666666667,3.377796666666667,1.7467933333333334,2.674609523809524,4.576756666666666,5.750166666666667,8.257081666666666,4.723628,2.63892425,1.8977700000000002,2.1145758333333333,3.9084133333333333,3.77527,1.49467,2.0874025,2.5118323214285714,1.432485,3.156473333333333,19.419703333333334,3.2701166666666666,2.9515766666666665,2.9945766666666667,2.98104,2.4876533333333333,2.1694366666666665,3.1665433333333333,3.6057666666666663,2.7062033333333333,2.5602066666666667,5.659655333333333,2.4851733333333335,4.802983714285714,2.826561714285714,2.7014237142857143,1.5216133333333335,3.8401566666666667,2.156275,4.121335,4.899025,3.813035,3.05524,3.256546666666667,2.3474733333333333,3.421466666666667,3.4377666666666666,3.535766666666667,3.29021,0.8227927272727272,5.1637,2.401945,3.2593633333333334,2.9439822222222225,1.95296,2.19875375,2.19875375,3.50604875,2.04909375,4.62862,4.348865,3.828415,4.31152,4.87573,4.5720849999999995,4.5720849999999995,3.9593,2.9943066666666667,4.486305,2.74727,1.6516600000000001,3.2896933333333336,4.58255,4.03378,2.771425,3.761405,5.7042125,3.680566666666667,6.396428892857143,2.941765,0.871768,0.871768,3.21312,4.73147,3.871985,3.4759780000000005,2.3904566666666667,1.8692766666666667,1.6657733333333333,2.965946666666667,6.154982,1.484815,4.159675,3.7669333333333337,3.90171,5.3985,5.33985,4.7871873958333335,3.2554766666666666,2.3125175,4.372505,4.099595,2.0989975,1.146236,4.34275,2.742825,6.172591666666667,3.429766666666667,2.63467,3.312805,3.709755,3.65594,4.689655,2.9808,4.59629,3.63732,4.27338,3.60117,3.50888,3.5091,4.243255,2.65149,4.48135,3.46805,5.0087,0.6495233333333333,2.3652525,1.84745,2.040835,1.8492025,2.506396666666667,2.62001,1.68213,4.782815,5.01715,1.8446533333333335,4.698335,4.58294,2.40602,5.3561466666666675,4.1142975,4.91834,5.11955,6.98571,2.0615833333333335,2.8933400000000002,1.9318266666666668,2.9522933333333334,1.89765,1.7278,4.04414,3.69173,5.2745,1.025218888888889,3.00682,4.407495,2.2915175,5.3766,3.6853,2.56951,3.679266666666667,3.3569,2.1311075,1.952308,2.665625,3.17445,3.387525,1.9298025,3.3533357142857145,3.3533357142857145,3.57735,3.475575,20.766772857142858,1.01735,5.695320833333334,1.9576875,1.9447433333333333,3.88503,3.799915,1.8703675,3.930665,4.60663,1.404235,1.404235,1.2124833333333334,1.8497000000000001,2.3679333333333332,3.1648,4.686018333333333,3.608555,3.5652333333333335,0.502251052631579,3.4718243859649123,1.95606,2.16676,4.6610125,3.40336,4.073855,3.9909,4.57696,4.341555,2.06042,3.74286,5.649563333333334,2.268335,3.6336,5.03575,2.155355,4.61883,6.2629,1.5105428571428572,2.06188,3.6138666666666666,0.8015485714285714,3.1398433333333333,3.690725,4.839085,4.94107,2.8013844444444445,7.9304033333333335,2.997863333333333,2.768053333333333,0.44140411764705884,4.340335,5.340334761904762,3.129602857142857,5.4998,3.804965,2.5290555555555554,1.8016400000000001,5.4613385,4.351685,4.242825,2.69965,1.980755,4.047055,4.1636999999999995,2.97104,2.145355,4.119795833333333,6.6199025,2.694685,3.80068,3.535875,4.084915,1.4971714285714286,1.4971714285714286,3.1626833333333333,2.9192933333333335,4.607795,4.8708,6.57585,3.28842,2.8897,2.193865,1.5102233333333333,1.3256914285714285,4.94455,5.7494250000000005,5.2604,5.9218,4.455975,6.7424175,3.593515,2.811453333333333,3.864148666666667,2.350893333333333,3.0185472499999997,1.59702,4.692575,2.350956666666667,4.089585,5.3869,4.144705,2.7422466666666665,3.0160033333333334,1.4977,2.4532325,3.8442333333333334,1.96766,0.581481875,3.17062,2.7312766666666666,2.5784333333333334,2.3993266666666666,2.018265,1.673064,0.7060081818181818,0.7060081818181818,3.5195333333333334,1.8895475,2.614225,3.713525,5.5842,4.401645,5.83275,4.374875,4.421075,2.651828,1.2487133333333333,2.73262,4.03805,0.91788,3.349195,3.021505,2.899525,2.190675,4.13938,2.589815,2.03764,1.2062214285714286,3.5815,7.92137,3.71273,1.7880326785714287,4.519505,3.44578,3.00943,3.326205,2.82024,1.7853166666666667,1.04883,3.77518,2.458483333333333,2.2405,1.70124,2.4970933333333334,2.248256666666667,2.464116666666667,2.8291424999999997,1.3045966666666666,1.8952866666666666,1.0701075,6.415585,5.4614,5.24945,3.977895,3.98148,3.001136666666667,1.7346991452991452,4.910605,5.0063,2.723295,5.2232,1.982625,4.502455,1.1183444444444444,4.077545,4.105615,1.8499575,7.47519,3.458155,1.8740525,1.9047025,2.034575,2.56715,3.4154999999999998,1.3420966233766234,3.11204,5.70395,4.455175,4.04757,5.59115,5.42775,5.45485,0.92171375,4.346425,4.65763,4.31398,4.94345,4.058375,4.79108,5.07295,2.956725,1.54463,1.54463,5.21365,5.846626666666666,3.11385,2.7687666666666666,4.01692,4.605515,1.544136,4.431655,5.2891,3.637025,4.07839,2.97615,3.01705,5.1278,2.364677875,10.74942251172357,1.8966266666666665,0.81480625,2.5353499999999998,1.69288,2.584425,2.26555,1.9536760000000002,3.005603333333333,5.1802,5.50195,3.0054166666666666,1.65766,6.406288095238095,1.4686428571428571,3.1157,0.527047619047619,4.112246666666667,5.84175,3.780995,4.90722,12.864345,5.587,3.2149933333333336,3.2515733333333334,4.929085,3.128023333333333,4.835355,1.20407125,1.8134333333333332,0.7883890909090909,5.96375,4.186,1.822074,4.867096666666667,4.90293,6.5068,4.79827,5.2358,4.76616,6.30805,3.8749,5.292,3.80237,1.351302,4.438185,5.73415,3.38425,4.147025,4.3297,3.402755,1.3399975,5.057,3.883085,1.2287375,3.481533333333333,3.0770700000000004,2.53246,2.54363,2.46503,2.907173333333333,0.7060181818181819,2.55947,2.712123333333333,2.615746666666667,2.10577,3.0760166666666664,1.85651,1.5258166666666666,2.499395,2.124525,2.1696575,3.3725,2.9983566666666666,0.659506,2.66316,3.563935,4.73528,2.4368266666666667,3.870365,5.36115,5.4931,3.387075,3.740495,1.3790957142857143,3.49447,2.5288600000000003,4.17685,2.88365,4.63818,5.1264,4.986915,4.248975,4.319833333333333,1.1376519999999999,1.1376519999999999,2.227693076923077,1.65419,4.069105,2.4862435,2.4862435,5.1797,6.05075,3.098175,1.18727,1.6087714285714285,5.99925,3.55206,3.0009533333333334,3.246165,2.94641,3.12931,3.0009533333333334,6.055837499999999,3.052305,2.9966725,2.82846,2.22645,3.090025,6.6278,3.174295,3.544795,4.25598,6.67205,6.444,6.525375,6.525375,5.42025,4.72089,0.6744815384615385,5.22915,4.821985,2.96368,2.753495,8.818078333333332,3.18552,4.362475,3.72669,3.2248966666666665,5.51135,2.765225,3.3869525,3.1387033333333334,3.260123333333333,2.56032,1.576614,1.576614,3.677995,3.851425,4.588235,1.89025,1.624332,48.324525,2.608546666666667,0.83385,3.146216666666667,1.77161,3.312443333333333,2.7757733333333334,3.3438,3.367045,2.7778899999999997,2.02018,1.01891,4.512725,3.233155,4.17274,4.059085,5.17135,5.06075,5.0789,5.541,5.5263,4.787325,5.419,6.247465,5.09165,5.53575,2.0709375,3.72471,6.7349,5.38845,3.46072,3.99145,3.227155,2.324495,4.14839,4.589405,3.2606866666666665,3.9799,1.666026,3.931555,1.35904,3.20005,3.858925,3.62983,6.59606,4.251895,2.0675725,4.08106,4.053255,3.9272,1.093125,2.7855,4.39138,4.60638630952381,1.13703,4.664115,1.3479775,6.15935,0.7191233333333333,4.094072000000001,10.344095,4.705355,3.830605,3.67389,1.9025999999999998,4.164045,5.59015,2.998343333333333,4.292945,9.042960555555556,3.4641333333333333,2.13881,2.8175133333333338,2.74976,2.8882966666666667,2.7897029166666667,2.76965,2.64828,2.9247666666666667,2.7236233333333337,3.074173333333333,3.42323,2.23905,1.6549133333333332,4.8325439999999995,3.9581,2.6398800000000002,4.975970666666666,2.7704466666666665,1.08461625,2.1083725,2.902696666666667,5.238707142857143,2.818,2.192057777777778,2.192057777777778,1.6090775,1.66543,2.12892,1.911486,6.07951,4.1851400000000005,2.475325,3.12175,3.6002666666666667,2.120605,0.5828725,2.590856666666667,1.9204925,0.5668723076923077,3.89573,2.5406,2.549425,3.610225,3.744185,2.54499,1.6714733333333334,1.2209866666666667,2.08876,3.662675,3.734335,4.255665,2.96102,5.01815,4.00873,1.157218181818182,9.177565,2.75668,3.333645,1.275625,2.8573566666666665,2.39645,2.39645,2.39645,4.8791,5.56815,1.63406,5.1321,1.4282819999999998,5.389456666666667,1.5753840000000001,4.24762,4.20727,4.281025,4.75407,4.507685,1.917185,8.82944,3.916545,4.961485,3.44935,4.47341,3.2765733333333333,3.026733333333333,3.864245,2.68409,4.3631,4.63001,1.609815,4.00392,1.609815,3.330285,4.590391666666667,5.03165,4.590391666666667,1.87988,5.68015,4.700805,4.26942,2.8296433333333333,3.1058233333333334,4.30877,3.027235,4.984785,0.5230671428571428,3.0777300000000003,2.9837133333333337,4.941929166666666,4.64424,2.4832175,4.701915,7.242161666666666,3.45294,2.58537,2.885765,2.3262266666666664,4.137815,4.15144,4.5958,2.375795,3.86231,0.865604,5.3536,3.36388,4.26017,2.285773333333333,3.048553333333333,2.18935,2.8688566666666664,2.7395,2.7002400000000004,3.485225,2.598725,2.598725,4.6499425,3.16797,4.61046,11.490275,0.9565633333333332,4.59303,2.535226666666667,2.3172366666666666,3.0558833333333335,1.429375,7.556111666666666,3.6353000000000004,3.881625,3.8550866666666668,2.5732866666666667,3.9186666666666667,4.579553166666667,2.3575833333333334,0.485565,1.731678,1.511315,5.003,3.00936,3.33078,3.8057225,3.4763675000000003,2.4692175,5.2338,4.53088,3.861755,4.952105,2.214115,4.2349,2.543883333333333,5.623900000000001,3.151555,4.968845,4.53872,4.44234,4.311015,1.9629,3.82207,3.65706,3.115013333333333,4.04926,2.67126,3.13252,4.51622,3.87363,2.7902466666666665,4.620485,1.7959166666666666,4.155225,2.96222,4.21569,3.85834,4.295585,4.783595,3.1722,4.26231,4.73416,4.108165,3.0826266666666666,2.177715,2.985625,2.28317,0.881255,4.614385,2.090355,3.44291,2.65558,4.19886,3.36974,3.03849,3.78342,4.322515,4.609386,4.325745,3.112835,1.5670733333333333,3.854435,2.679375,0.9510077777777778,4.61546,8.904,3.33755,3.68551,4.333465,5.1183,3.733285,2.131565,4.02956,3.932295,3.237345,3.12172,3.79652,0.64043625,1.27584,6.09734,1.71168,2.668295,4.932549,2.5376,2.324215,2.73101,7.8299,2.66571,3.99167,3.78106,0.7698722222222222,3.499515,2.624575,3.812895,4.06422,5.992100000000001,0.6778109999999999,3.286675,9.1454,3.254435,1.25616,5.196149583333334,4.77632,5.44345,4.42933,4.77925,3.25381,2.5541966666666664,7.44958,0.860678,3.650075,4.119575,3.09916,4.10779,2.245415,4.276005,1.6397716666666666,4.45536,4.106265,4.01001,1.6728375,4.75527,4.298965,2.3669375,2.00006,2.2760225,1.284332,4.07757,3.3529910000000003,1.63718,8.170665,5.7808,4.719655,4.407805,3.50096,4.32932,1.4320714285714284,4.43223,3.948885,5.45505,3.69161,2.43839,6.623121538461539,0.87186,0.87186,2.54973,0.9240457142857144,4.15751,2.6376466666666665,1.0086625,1.74437,0.41157333333333335,6.2561800000000005,0.9894275,2.82246,4.058365,3.99,3.980945,4.18042,5.44745,5.607,3.18932,3.216845,2.511995,4.31433,4.735905,4.33277,4.164695,3.876975,6.2341,4.315845,4.357253888888889,6.013408,3.941775,3.6983825,2.284675,3.6983825,6.981636,41.34572833549784,3.757975,3.46974,2.9989233333333334,4.537755,4.460555,3.447535,3.45829,3.85932,4.37773,4.503085,1.7562666666666666,5.1342,2.738275,4.88917,5.2319,5.44575,2.5315266666666667,4.809375,3.911365,4.24827,1.6154540000000002,0.6632876923076924,1.778916,3.6940333333333335,3.154056666666667,1.3697375,3.1831866666666664,2.803803333333333,2.9053633333333333,3.5718333333333336,3.002613333333333,1.59351,2.782026666666667,3.7475,1.9491711325611325,2.8817533333333336,3.29665,3.03064,2.698586666666667,3.5493666666666663,1.170777777777778,4.89925,3.981805,1.28358,1.28358,1.28358,1.28358,2.823174848484849,2.006416666666667,2.377355,3.466795,4.879935,5.18845,4.54195,4.424555,5.856,4.66266,2.34891,6.15505,3.98818,3.077085,3.922335,3.233,4.311115,4.47866,0.7498,1.4423285714285714,1.5796999999999999,4.36501,4.627675,4.84406,4.13553,6.128475,2.2806633333333335,5.08435,1.62471,4.438265,5.219,1.5947533333333332,5.52965,0.864375,4.59385,1.404164,1.23226875,3.75688,4.233725,5.3183,5.3574,6.00145,4.276175,1.571672,4.885585,1.4426275,3.46778,3.22405,2.5290555555555554,1.9029075,3.70713,1.2700133333333332,3.486725,4.82178,3.0974766666666667,5.8045,122.78828226334777,0.4927011111111111,4.747625,2.3482266666666667,4.84785,4.28658,2.96776,1.4966225,0.3682638095238095,3.055085,3.699575,5.29645,3.352925,3.702125,4.50444,4.494325,5.01515,8.368773333333333,0.6992522222222222,2.838755,0.9672275,11.689229999999998,3.033245,3.57276,0.9897655555555556,2.27205,2.820935,2.1837775,3.122733333333333,3.2640333333333333,2.3084533333333335,4.2559425,3.0021566666666666,2.2929933333333334,2.25861,5.7749,3.968815,3.040995,3.59639,3.758455,3.37839,2.4070233333333335,3.857725,3.64283,3.00632,1.0310777777777778,2.5596133333333335,4.2559425,4.77171,5.30115,4.13212,4.5924,1.91588,10.5357,3.7417,3.11508,4.0368,5.37595,0.5381859999999999,0.5381859999999999,4.308135,4.308135,4.0597,3.8234666666666666,1.8402706818181818,0.6222216666666667,3.031235,4.35638,4.289665,3.881495,4.319725,5.3548575,4.770805,2.171735,4.50321,2.164885,2.710725,4.4790775,1.799195,2.324045,0.4941271428571428,1.2014591428571428,1.2014591428571428,1.924485,5.1938,4.200755,4.93706,6.236153,2.898045,3.515455,1.987935,2.00549,4.31726,3.877485,5.342313333333333,2.537735,5.342313333333333,4.88182,3.5104,6.00665,3.91273,2.43391,2.057373333333333,2.651666666666667,1.449035,1.410325,1.504755,1.8914775,1.581885,2.0153625,3.8516666666666666,4.71723,2.45727,6.92895,2.920193333333333,4.51932,3.14155,4.18884,2.929323333333333,3.18566,6.241996666666667,3.3716333333333335,4.747510666666667,3.2574733333333334,1.32049,2.6750900000000004,2.8540733333333335,2.50897,6.00965,4.3454375,4.868965,12.75171156622325,0.7246275,2.0039795,2.3969925,1.746564,1.2873228571428572,2.582975,2.4574975,2.48589,2.46658,0.7358815384615384,1.9306475,0.5448947368421052,4.67163,2.064525,4.215975,4.70462,2.51015,5.731855,4.217715,7.99275,4.129735,2.7209,2.961535,4.683375,4.89102,2.656808857142857,4.563625,2.075515,2.075515,4.997985,3.863645,4.30757,4.11725,3.218726666666667,3.96276,5.0471,5.32865,4.719665,4.49365,4.48694,4.443395,2.591255,4.94079,1.2628616666666665,4.901405,4.712375,2.5313966666666667,2.25925,4.163055,1.4531766666666668,5.0676,1.9484825,5.769530253623189,4.515785,4.359985,1.53894,3.1111633333333337,3.1111633333333337,12.294744999999999,3.93381,4.34425,1.1267275,4.335687999999999,2.5332,1.4239525,2.4607875,1.69361,2.019175,1.7645579999999998,3.237745,5.96135,1.78524,4.959915,4.8375475,5.2441,2.179895,2.35402,3.42716,4.40449,5.377,4.00669,6.7470066666666675,3.10594,3.1087666666666665,0.39120444444444447,3.75316,4.14992,3.3119033333333334,6.240263333333333,2.6134766666666667,3.172636666666667,1.2323083333333333,1.5763333333333334,0.581481875,1.731678,2.96025,1.5232433333333333,1.6370966666666666,0.65201875,1.236072,4.634575,2.385175,0.59565,1.6624100000000002,1.7052,1.7169519999999998,1.3047833333333334,2.13336,1.5763333333333334,2.455625,1.236072,1.236072,0.59565,1.5771857142857144,2.56534,1.3108216666666668,2.695125,0.59565,2.635475,2.56534,1.3017833333333333,1.3017833333333333,1.3017833333333333,1.88845,1.22681375,0.59565,1.092898,1.159525,1.0530933333333334,1.83796,2.64155,0.8531333333333334,2.2361825,1.5885285714285715,0.59565,1.7642019999999998,1.5763333333333334,1.9581166666666665,1.9232833333333332,0.887889,1.9581166666666665,1.0810166666666667,2.3669375,2.4354125,2.5498,1.159525,2.26142,1.2700133333333332,1.2700133333333332,0.9115909090909091,0.9115909090909091,0.9115909090909091,1.2323083333333333,1.5763333333333334,1.5885285714285715,1.6624100000000002,0.9460057142857143,1.9232833333333332,1.510242,1.617392,2.0235399999999997,1.2323083333333333,2.7374199999999997,12.5048675,0.65201875,2.62884,1.8666666666666665,2.47728,0.9503871428571429,0.9503871428571429,0.59565,1.192611111111111,1.673064,1.5885285714285715,1.8263539999999998,1.9232833333333332,1.1577444444444445,1.1577444444444445,1.675982,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,3.189163333333333,1.0810166666666667,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.3911163636363636,54.9175767987013,1.544465,1.5603749999999998,1.5885285714285715,1.8666666666666665,0.9460057142857143,0.6101235294117647,0.727063,0.727063,0.727063,0.727063,4.3049,16.588940416666667,3.3535,0.6308618181818182,1.622356,1.622356,1.622356,0.6308618181818182,2.96025,0.59565,1.7642019999999998,1.6370966666666666,2.5044,1.0810166666666667,2.4832175,1.0810166666666667,1.585374,1.585374,2.1286666666666667,2.1286666666666667,0.59565,2.01656,2.01656,0.9683181818181819,0.21030000000000001,2.96025,1.493145,2.4517025,0.6308618181818182,0.6308618181818182,0.6308618181818182,0.6308618181818182,0.6308618181818182,1.8666666666666665,0.3911163636363636,1.0810166666666667,2.217995,2.217995,2.674875,3.0977633333333334,0.6420285714285714,0.6420285714285714,3.3863333333333334,4.1906,1.2614442857142856,3.2832233333333334,1.0106199999999999,2.6628,2.05476,1.14086,3.2766466666666667,2.0865025,3.2661033333333336,5.30515,2.57221,1.2086333333333334,4.53942,4.66622,2.7664033333333333,1.7588180000000002,2.340392846153846,4.592085,1.78473,2.705486666666667,2.97106,3.0972933333333335,2.402255,6.232049999999999,4.218935,0.21030000000000001,3.0053300000000003,4.909595,4.006,4.53187,4.366845,4.56423,2.8546266666666664,1.8372039999999998,4.15317,4.481625,4.44569,4.764365,5.3152,3.28459,0.71148,6.697765,1.555105,3.119032,4.64213,2.5017066666666667,2.5017066666666667,0.8193881818181818,1.9029075,4.01197,3.09207,4.87155,4.39291,4.656755,5.2776,1.1027914285714286,4.615525,5.6289,7.115620763888889,2.259133333333333,4.25567,4.34182,3.951985,4.12627,4.08246,4.50799,6.0330125,5.23995,4.567323333333333,3.637375,4.422453333333333,7.215186,1.93442,2.2391466666666666,2.8217033333333332,1.77309,2.7820066666666663,1.8465266666666666,5.21755,3.04545,5.99405,1.9690159999999999,4.84437,4.170995,4.23517,4.307,3.834005,2.57788,2.8193566666666663,2.7166033333333335,2.608026666666667,2.6582666666666666,1.6494866666666665,2.72807,2.847996666666667,2.19038,2.19038,4.51162,2.8680333333333334,1.9582,3.096966666666667,2.1125666666666665,2.3864433333333332,3.022536666666667,2.68259,3.14833,5.2722,4.43227,4.351075,3.5169793333333335,3.5169793333333335,3.9975,3.29785,4.14172,4.59064,4.10007,3.55951,3.287985,7.54427,2.1205625,1.955185,3.34962,3.26547,1.3209566666666668,1.3209566666666668,3.611565,1.905725,4.079614,3.652855,3.618385,2.132486,2.153798,0.5871491666666667,3.60678,3.92902,2.0658225,2.498865,4.242895,1.2811033333333333,4.73757,1.14863,0.3757907142857143,0.5282642857142857,21.783952326388892,0.5282642857142857,0.3757907142857143,0.6807378571428572,10.619646666666666,3.055153333333333,3.76314,4.383475,3.5938225,2.78322,4.192711428571428,2.13765,2.69227,3.76527,3.063335,4.09201,4.487655,3.451495,2.244515,3.163255,3.63806,3.98522,3.07077,1.1100729999999999,1.1100729999999999,1.1100729999999999,1.1100729999999999,3.390245,2.858165,3.0855,1.7390033333333335,1.1804866666666667,2.441165,3.692535,3.965715,2.875885,3.3138,2.633265,2.6934008333333335,3.94068,3.996455,1.1073066666666667,2.9284499999999998,1.11942,2.6595766666666667,2.288673333333333,3.9136,5.2697,2.40185,4.46701,4.300543333333334,0.7993869047619047,0.22381357142857142,0.22381357142857142,0.5755733333333333,0.22381357142857142,0.22381357142857142,0.22381357142857142,0.5755733333333333,4.6073,7.55963,3.604265,0.58969875,3.755745,7.669840000000001,3.37838,3.1362466666666666,1.1368500000000001,4.414545,5.37265,4.28399,4.792545,1.682592,4.7753,2.1794266666666666,2.349067333333333,3.848825,5.50835,0.8259442857142857,0.8259442857142857,3.420915,2.8950666666666667,2.17943,3.86618,2.77242,6.58485,4.647265,6.4947,5.85805,5.6639,2.87877,1.71774,4.426815,3.45025,2.45653,3.35946,3.26053,1.9705375,1.1566316666666667,4.01108,3.61844,4.988883333333333,6.3252749999999995,1.4835216666666666,3.96201,1.0886633333333333,2.52601,3.33512,4.89591,0.3897014285714286,3.55974,4.328505,0.9568619999999999,2.8446266666666666,7.713966666666666,4.985055,2.08757,5.628603999999999,4.55201,3.78552,1.4205683333333334,5.365336666666666,2.95173,3.1788966666666667,3.7415333333333334,2.0532166666666667,2.0532166666666667,6.3378,6.3378,3.757560714285714,3.757560714285714,10.3119,3.757560714285714,3.757560714285714,4.403437380952381,6.7759,3.75548,3.5686799999999996,2.8705033333333336,4.78855,4.43092,3.1916166666666665,3.1453233333333332,4.68916,3.1023300000000003,2.67169,3.1929200000000004,2.4465233333333334,2.653385,4.906725,7.79618,6.883967500000001,4.836235,3.74557,3.96464,6.9220619999999995,5.26445,4.485955,3.993195,4.239545,2.293816666666667,2.271565,2.089955,5.67135,5.48155,4.55738,4.26673,2.2847433333333336,2.607013333333333,7.134028333333333,1.88845,2.5357066666666666,3.28994,3.28994,3.139145,5.3076,0.7612408333333334,3.4530666666666665,3.905155,2.94319,10.35145,4.327365,2.88363,2.3449966666666664,5.43785,6.048,2.969355,5.6489,2.6245966666666667,4.38582,3.019697142857143,4.44839,5.34425,5.06575,1.0954066666666666,3.5977333333333337,1.064125,2.506463333333333,5.078151455882353,8.120416666666667,2.763643333333333,3.0954800000000002,6.6156266666666665,1.7774819999999998,4.524625,5.41175,3.466075,3.72584,2.2429033333333335,4.64046,2.4717812500000003,0.50549,5.3531,3.10941,3.518266666666667,5.0467,4.87215,5.17165,6.716817499999999,4.793005,5.6309,7.1121575,54.670118333333335,4.738365,3.88802,4.873135,6.06055,4.67071,4.986505,4.579125,4.62809,1.9171675,3.95401,4.034215,4.56962,2.587205,5.0402,3.92259,1.6504280000000002,5.6697,6.4794,7.333116666666667,5.6781,3.29158,4.741085,3.275795,3.265365,3.72733,4.273705,3.82423,6.40145,2.7584,1.0995128571428572,2.42320375,0.6133339999999999,0.6133339999999999,3.553295,0.6133339999999999,2.4033403214285713,2.4033403214285713,3.1941623214285713,4.421916749999999,4.779331571428571,2.42320375,5.106491666666667,2.941606666666667,1.4354366666666667,5.59385,2.168965,8.152388666666667,6.403646666666667,11.325032106060606,3.07408,2.7309,0.2131472727272727,1.8644706666666666,2.5127166666666665,0.9297175,1.5811966666666668,2.96396,2.3566675,2.67465,0.613544,28.21074625,1.986885,0.7664438461538462,2.7045,2.7045,0.4170022222222222,1.79395,3.18926,1.3006675,1.829115,1.632975,4.1923,2.88645,1.9933233333333333,2.4078399999999998,1.1215616666666668,2.0889675,1.5779500000000002,5.480026499999999,3.85897,6.8432216666666665,2.4920925,3.315236666666667,0.98731,2.45037,5.13525,6.093125,3.147323333333333,2.26593,5.627785833333333,2.2437525,2.5911166666666667,4.417095,1.0998566666666667,3.7005,2.35913,6.03475,5.10825,6.28095,3.307795,4.120105,4.120105,5.0935,5.29305,5.51755,2.79035,1.661115,3.9658,3.633445,5.8897379999999995,4.33502,2.76536,3.7350999999999996,3.117335,1.1906828571428572,5.1312,1.0031725,5.631946666666667,4.839725,7.669735999999999,4.267925,4.494845,4.111885,8.46361,4.8124,5.0452,1.1461999999999999,0.7127100000000001,4.67821,4.429415,2.170775,3.321885,3.311915,4.25094,2.305455,4.946005,2.5797433333333335,5.4697,5.35215,5.3414,4.49735,4.707465,3.14409,6.7965865,3.44866,4.44465,3.38753,4.284035,5.716927380952381,0.5864814285714285,3.6565,1.7016733333333331,0.6379733333333334,3.93376,2.90432,1.04071125,1.94681,5.86845,4.03798,2.666045,2.7758266666666667,2.692156666666667,5.04285,4.004775,1.6103376190476189,4.1653,2.42962,3.620233333333333,4.581305,5.0975,3.3916208333333335,3.7994,3.8958333333333335,1.9755859999999998,7.28623,4.748975,4.35901,5.2794,2.229545,4.21621,4.784455,4.291745,3.864935,10.609155,3.60117,4.300938333333333,4.652925,4.543735,2.4367375,4.53856,4.04446,4.833805,3.2492366666666666,4.42879,1.5804225,3.1582966666666668,3.49182,3.711655,4.93736,1.8905,4.243635,3.193426666666667,5.49435,3.2338633333333333,2.12499,4.45127,4.750345,1.062015,3.202395,2.6835733333333334,4.445743333333333,1.7406400000000002,1.68218,1.178385,4.31224,4.924755,5.7966725,3.7986875,4.054015,2.385285,2.8181,3.76011,1.5923266666666667,5.89875,3.07955,1.8954925,0.8997384615384616,20.3284763974359,2.998335,3.100365833333333,4.4166083333333335,4.005418461538461,1.3525033333333332,2.665387,3.003275681818182,1.188288,1.9069066666666667,4.28355,4.843275,3.6229499999999994,3.21632,5.58165,4.749325,7.226274999999999,4.7017291666666665,4.865015,3.712035,2.8533899999999996,4.215085,3.92944,3.6583,4.052715,1.9585675,5.11945,8.59635,4.099645,2.8436,4.52388,0.6065025,3.066073333333333,2.0662366666666667,2.33475,4.31292,3.39278,5.15445,3.705745,2.93067,2.2597725,1.644665,0.793738,1.6016766666666669,1.1620566666666667,4.08261,4.07198,4.65964,4.678265,7.23994,2.43638,1.44789,2.3775866666666667,7.890476666666666,3.56334,2.95725,3.03882,4.294495,3.5115724999999998,3.545075,1.569338,4.494915,5.1036,4.213115,3.97643,3.587855,4.211465,4.359725,3.86129,4.430135,3.87552,2.14419,3.2667466666666667,3.551075,5.53615,2.798985,4.273065,3.88143,2.92627,2.6918399999999996,2.3136466666666666,2.1514366666666667,2.7908713333333335,2.7908713333333335,1.9337233333333332,2.8084966666666666,2.3927333333333336,2.31976,1.9514333333333334,4.041205,2.398433333333333,2.752126666666667,2.85805,1.72133,4.375615,2.847965,3.909685,2.4335366666666665,5.26145,5.30205,4.887796388888889,2.416655,2.270645,2.90188,2.408975,2.09702,2.764095,1.917005,2.592725,2.5917,6.832005,4.3672875,3.564915,0.609238125,4.422015,4.105035,4.12451,3.05051,3.884515,3.67815,6.3146,4.379505,3.384325,2.846467142857143,2.098841111111111,2.49798,1.72801,1.730782,1.725494,2.03994,1.733255,1.2970599999999999,4.132181714285714,0.59565,0.5263811111111111,1.988646,1.5192966666666667,1.5153240000000001,1.4781366666666667,2.331594090909091,1.4521366666666669,1.7762280000000001,0.593695,172.44525634098335,0.5209406666666667,2.043,1.116166,1.2117975,2.105135,1.5283975,2.0185225,2.5314200000000002,1.920515,6.77735,3.37818,3.5456261904761908,1.91936,3.20515,1.327985,1.327985,5.9874125,0.49471611111111113,2.41501,3.3287066666666667,3.0411466666666667,0.8071454545454546,0.6526117647058823,1.2373044102564101,1.0778181818181818,2.3580125,4.16708,2.1087,2.1939025,2.4846633333333332,4.843830666666666,1.0782633333333334,4.292275,3.653385,3.425845,6.67561,2.0388933333333332,3.12663,2.88687,4.137065,2.272665,3.610765,3.33535,3.375675,4.370195,2.97177,6.10405,2.22722,2.38994,3.006185,1.362765,2.667945,2.99981,2.822995,1.682075,1.443815,2.669775,4.445865,5.417188333333334,2.768725,3.01702,1.591185,4.272115,3.711,3.9191333333333334,2.917105,25.273893102716723,2.4635746666666662,2.7718366666666667,3.0890633333333333,3.6133333333333333,3.2280933333333333,5.958786666666667,3.141296666666667,2.617313333333333,3.4588666666666668,3.4281,2.1310066666666665,3.2304133333333334,3.2767766666666667,3.2364266666666666,1.7314999999999998,1.6526200000000002,0.54652,2.3285066666666667,2.1198725,0.225625625,2.36654,2.946805,0.225625625,0.225625625,2.1437922916666667,0.225625625,0.225625625,0.225625625,0.225625625,2.7685366666666664,2.5967733333333336,0.5633392307692308,3.294645,1.46359,1.90914,5.44275,4.4077325,6.1586225,2.1164725,5.0275,2.1860225,2.93304,1.3353942857142855,5.846873333333334,2.7696533333333337,5.8118775,0.8948666666666667,1.3163325,4.72079,4.594055,35.766046582972585,1.6628779999999999,1.4552866666666666,2.285606666666667,2.3357525,0.9115909090909091,2.3241333333333336,2.3073099999999998,2.7889666666666666,2.0675399999999997,2.4823566666666665,1.7170283333333334,2.8450366666666667,2.3455166666666667,2.3974966666666666,2.5731066666666664,2.4518233333333335,4.217255,3.5561333333333334,1.12198,4.088935,4.13421,20.04911511111111,2.7532366666666666,3.112883333333333,2.6059033333333335,0.819674,3.3019800000000004,1.5867051111111112,3.3019800000000004,2.4303466666666664,2.57304,3.237206666666667,1.68502,1.9945975,4.26726,4.24103,5.07045,4.31312,1.6929500000000002,5.01495,1.6552575,4.83123,4.145015047619047,4.635025,0.7663590909090909,2.06518,2.18249,2.79119,3.336415,1.0940825,3.674055,1.9723960000000003,1.9306966666666667,1.060946,1.060946,3.3945333333333334,2.882006666666667,4.376085,29.73639125,6.486135,1.8622166666666666,3.5590333333333333,0.383156,6.210205,5.546,2.7778066666666668,3.355315,5.9468499999999995,4.161145,1.21587625,4.85303,1.21408,3.18606,4.6172,4.91601,2.113565,2.96018,4.430225,2.926295,3.5134475,4.360805,1.2902799999999999,2.5594804166666667,3.940395,5.106475,2.7511033333333335,3.08858,2.8418033333333335,3.8497,4.02924,4.06606,4.185033333333333,1.681325,6.2415,2.61951,1.72041,4.14451,5.50062,4.056435,3.476465,0.7669275,2.89824,3.45525,2.14128,4.644284,2.7837,3.88955,2.88331,3.3409666666666666,2.660385,3.301296666666667,3.1452333333333335,3.171726666666667,4.55512,5.43535,4.78065,1.690265,3.97913,4.136545,1.931335,1.994525,1.74087,3.979905,4.492305,5.307858333333333,3.986405,3.7128,3.76653,3.1741200000000003,1.3908616666666667,3.09893,3.096375,3.356975,4.630475,4.5255,4.436995,3.005395,2.06491,1.53593,1.4557425,3.666465,2.39995,2.203925,3.349765,4.77108,1.66115,5.38135,1.4121828571428572,1.8571125,3.21277,3.19548,2.996295,3.68338,3.01964,1.65016,0.9687283684210527,3.3499,4.083006666666667,4.740815,8.61312,2.3313333333333333,3.1572066666666667,1.6335133333333334,2.7011866666666666,2.7372566666666667,1.1468116666666666,3.06364,2.899043333333333,3.04001,4.016266666666667,3.320323333333333,6.969571666666667,3.1073066666666667,0.7519354545454546,2.06264,3.469565,3.355085,3.4609,3.6435666666666666,2.6271639999999996,3.439095,3.127005,2.0339565714285714,3.781995,2.937476111111111,3.38015,2.2097366666666667,5.62875,4.95638,4.56761,4.498605,3.86712,1.2176888888888888,5.138,3.1269033333333334,2.411566666666667,4.48249,2.8590933333333335,3.031663333333333,0.4308042857142857,0.4308042857142857,4.02776,4.82728,6.81755,3.117755,4.811765,3.936825,3.478315,5.0639,4.360575,1.0207275,4.05498,2.6764833333333335,4.744736666666666,2.87631,3.063505833333333,1.9375600000000002,3.333919642857143,2.766923333333333,2.9151433333333334,2.6412466666666665,2.8277300000000003,1.9752233333333333,22.83150500395257,4.95887,4.125655,3.951785,3.304475,4.4226325,4.135975,4.587025,4.399,3.99387,3.53231,4.0406,2.653913333333333,2.92089,3.0691733333333335,3.0659733333333334,2.88945,4.30108,3.44546,4.5954875,4.976345,4.22379,1.24102,1.6936399999999998,1.6936399999999998,4.474885,3.835785,2.732746666666667,2.2511966666666665,3.0039200000000004,4.261425,3.38024,8.063043333333333,3.2634733333333332,3.445066666666667,3.1565450000000004,5.03415,1.6582383333333333,6.1551325,2.461396666666667,3.1534133333333334,1.7136625,4.034165,3.035725,7.12619,3.49844,2.688,4.14744,3.8825986666666665,1.5193575,2.67117,1.7878866666666668,7.908239,4.43564,6.544005,2.2923675,4.36478,3.81179,4.18417,5.1802,3.730033333333333,3.730033333333333,2.15071,4.339025,5.1785,2.39125,6.534871428571429,1.545435,5.90315,9.11514,3.680266666666667,4.378916666666666,2.257896666666667,1.933505,0.5980075,4.263705,2.5449,2.652725,3.928974,2.4096375,2.403913333333333,3.767,5.6849,5.15465,4.98311,5.1519,4.23513,2.236115,1.0151454545454546,2.996785,3.116765,2.9257266666666664,5.3735,3.981405,3.84946,2.766575,2.06188,4.332265,1.0056775,5.2165,1.047331111111111,5.393,3.2983,4.91682,5.257225,3.144115,3.49975,3.0983666666666667,2.35125,4.362555,3.294645,2.53082,4.422145,5.14135,6.372456666666666,4.59917,1.9423625,3.598185,3.256615,5.4702883333333325,1.8868925,1.8868925,2.8979433333333335,2.4169633333333334,2.5498366666666668,2.7865866666666665,0.889917,6.4034,4.10745,2.0639975,2.2552,2.584605,3.732865,2.850095,3.725755,5.1643,5.40295,5.10705,6.1934,6.02005,1.3250125,3.823895,1.125975,2.524925,4.422433333333333,2.514295,3.04694,3.17413,4.30219,3.931555,0.45509578947368423,4.3845,4.165425,4.96962,3.264695,4.906765,5.66695,4.53189,4.14613,1.80892,4.456495,2.0681825,4.323833333333334,4.323833333333334,6.605,5.5827,5.7402,5.3261,2.802985,1.6582383333333333,4.37437,2.4629166666666666,1.61141,1.93769,4.27456,4.141335,4.544465,8.22342,1.7071333333333334,5.44645,1.2966216666666666,4.5084,5.9408,1.9966525,4.761575,2.5369633333333335,4.885955,3.5993,4.601025,2.8241566666666666,4.21682,4.0007,6.04845,4.36488,4.00828,4.071045,5.88745,4.084485,4.44918,3.66181,4.200135,7.453666666666667,3.52941,7.14936,3.274555,5.4204,6.245502272727273,4.63591,3.52468,1.837045,5.4651,3.963115,0.8765044444444444,8.57127,6.0085,5.2849,3.219151666666667,5.1518,2.847795,1.755904,4.058555,1.1073066666666667,6.1277,3.16314,4.578375,5.37345,4.331915,4.1298,2.24386,4.389425,5.3698,2.057945,7.201978333333333,3.09553,3.82216,5.04805,4.366365,2.21766,4.490065,4.47689,4.589255,2.8643366666666665,3.949085,3.66466,5.4923,4.6581,3.427755,1.881135,1.881135,7.316066666666666,1.5202428571428572,5.32345,4.47088,5.53885,3.60911,3.682955,5.2201,3.78121,0.8762383333333333,0.8762383333333333,0.8762383333333333,3.728405,3.186295,3.81768,4.535815555555555,3.38134,1.44956,4.4997,2.21061,2.69709,4.016735,4.93346,2.383165,2.1478,5.49876,3.80039,3.06077,4.50413,1.60578,1.8967,3.314026666666667,2.7536,5.4252,1.421436,1.6054939999999998,1.12661125,4.059195,3.66525,2.9023533333333336,3.075396666666667,5.5084,1.747966,2.02005,3.076105,1.6517142857142857,3.69939,3.6463,2.42869,5.59,5.5752,2.85373,4.363245,4.196295,3.718985,3.71989,4.281525,3.534685,6.76619,5.5617,1.9053733333333334,1.8973666666666666,3.500975,4.47961,4.16189,4.175185,3.1932666666666667,4.251295,5.90005,5.1936,2.6696933333333335,5.3851,3.95856,5.62045,8.211234999999999,4.332205,0.7425427272727273,4.10737,4.1998,2.478055,4.30712,4.059,5.9395,3.925155,4.115155,3.804195,4.654205,4.785775,4.494315,3.221205,4.029005,5.2013,4.0973,2.786885,2.92637,6.34468,5.2949,1.9337140000000002,3.19352,4.367301666666667,3.93685,5.0746,4.659255,2.6457966666666666,0.8700422222222222,4.66256696969697,6.4941925,3.73744,4.64166,3.610505,7.226795000000001,4.15368,3.7869333333333333,2.9752333333333336,3.826815,2.09181,3.37407,4.268285,2.514002,4.108695,5.73015,1.410935,5.1442,0.6776064285714286,6.4076,6.10755,6.3412,6.0405,1.8142333333333334,1.7941099999999999,4.610335,1.984635,5.49175,0.5945983333333333,5.68285,3.179025,1.530996,6.2905525,6.6561,1.348455,2.2431409999999996,1.283602,1.283602,1.283602,2.09828,4.97639,3.51,4.38581,4.088765,5.43255,3.89523,1.937224,4.259295,5.1363,0.29757804878048777,4.05297,4.629835,5.05845,40.69692556060606,6.010291666666666,5.0731,12.151783333333332,4.471955,4.23076,7.556346666666666,3.35634,4.7574,4.005575,4.611135,9.393655,3.99203,2.7966200000000003,3.989105,5.288,4.230165,3.745215,4.36593,2.38274,4.429325,4.63774,6.884436000000001,4.336975,5.25585,2.317205,4.11907,0.524378125,1.4341916666666668,4.45267,6.34365,3.084765,1.3024016666666667,1.3024016666666667,3.50537,3.848295,4.047625,2.872055,1.6707833333333333,3.751425,4.273965,1.8320375,3.2414799999999997,1.68343,2.3625933333333333,4.080875,4.39314,2.127245,4.547055,2.3084175,2.04364,3.568565,3.627705,3.989405,3.756995,6.094957,2.419237,3.975095,0.6907727272727272,0.6521933333333333,3.69867,2.09027,8.85992,3.3535,5.05535,1.6344525,4.517255,1.5181483333333334,4.02434,4.28915,2.54166,4.232965,5.131,0.41398900000000005,0.41398900000000005,3.6615333333333333,3.15924,3.02843,3.739055,3.70155,5.39025,1.0099090909090909,10.5695,9.99824,2.13336,4.610799999999999,4.86222,4.936695,3.50769,2.6262366666666668,2.0801,2.090755,10.0487275,2.2635625,2.716616666666667,3.830508,4.41552,3.830508,2.49893,3.05712,2.8192,0.720389090909091,5.432770833333333,3.2783466666666663,2.6876366666666667,4.452825,8.42765,10.43705,4.521555,3.951925,4.411955,6.897740000000001,1.9613825,1.3797375,26.65757,3.822475,3.98482,0.9778460000000001,4.300105,4.133655,4.947475,4.52461,5.3412,5.824746666666667,3.103946666666667,2.086273333333333,0.670335294117647,0.7272008333333333,4.844795,5.03005,1.39495,4.482728333333334,0.9006500000000001,3.5736333333333334,1.4572333333333332,4.28313,6.022,1.986835,2.430535,2.598165,3.9255,3.14439,0.46248777777777783,4.114625,3.57697,2.91354,3.236445,5.05515,2.9002866666666667,4.067885,2.965255,5.09675,8.516546666666667,5.0188,7.836535,2.719575,2.660766666666667,4.409895,4.596365,4.318095,4.291975,3.770385,5.05605,1.193845,3.6502437500000005,3.2286977142857145,0.632902,1.6936399999999998,1.6936399999999998,4.76552,7.52099,0.8688153846153847,4.77823,0.9320616666666667,2.8454599999999997,2.3935166666666667,2.606040227272727,6.404064444444444,2.6393066666666667,1.152677777777778,2.3927733333333334,1.2594625,2.137523333333333,3.0716699999999997,3.0628666666666664,3.3200333333333334,2.4327666666666667,0.9320616666666667,4.50135,4.392195,5.6429,2.70238,4.56067,2.09394,5.9567,4.811465,4.492765,2.953996666666667,3.391295,2.262075,1.55129,4.01582,2.822775,4.496455,5.51,1.6385660000000002,4.86981,2.958826666666667,6.472533333333334,3.55467,2.634885,0.9320616666666667,2.483565,3.46932,7.305227333333334,2.4858166666666666,1.709046,2.4858166666666666,0.4434108333333333,1.2223739999999998,3.58003,3.421895,1.7901625,3.56373,3.721087,0.6253070000000001,0.6253070000000001,0.6253070000000001,7.6373299999999995,1.5841939999999999,0.7257981818181819,36.03999542207792,1.8162806666666667,0.6458766666666667,3.0275499999999997,0.6458766666666667,3.71636,2.09751,2.55606,2.6687666666666665,5.40975,4.59565,4.34526,2.4272666666666667,0.8712442857142857,4.32192,3.2189433333333333,5.1066,1.014292857142857,2.917625,2.917625,3.88151,4.7033,4.025825,5.519185,3.309325,4.72138,5.3804,1.8100660000000002,1.1090675,5.3373,6.4672,3.82489,0.6775800000000001,4.51053,4.14956,0.9801675,4.373335,2.726795,4.183695,4.526725,1.9019525252525253,1.9019525252525253,4.168895,3.359055,0.9010411111111112,2.89967,3.0447866666666665,3.34833,3.941105,4.483175,0.4493742857142857,0.31040529411764706,0.31040529411764706,0.31040529411764706,0.7597795798319328,0.62193,0.687071,0.31040529411764706,0.31040529411764706,6.762499999999999,0.31040529411764706,0.7597795798319328,3.613565,1.25886,4.59029,1.1565916666666667,0.633373076923077,0.9801675,2.599395,2.705425,3.98162,2.985525,0.31040529411764706,0.31040529411764706,4.38408,3.714465,4.21362,2.69274,3.973765,1.5689,3.893765,0.687071,0.687071,4.82915,3.10636,2.66581,2.849715,4.0544633333333335,1.00645,0.8531307692307692,10.620655,1.3070375,4.261995,4.554025,5.1868,2.10188,0.3882930434782609,0.90359625,2.7163566666666665,3.41999,3.12184,4.572335,1.481946,6.1422,3.61048,5.2478225,4.288255,3.0439833333333333,2.8930666666666665,6.402976666666666,2.645563333333333,4.870545,4.17896,4.300543333333334,6.16939,0.5526946666666667,4.273975,3.311193333333333,2.13052,0.75628,4.24701,6.78197,3.316915,2.62498,2.27746,5.1079,2.75644,2.806075,0.9976139999999999,0.4695853846153846,3.995605,0.35771800000000004,0.7812118181818182,3.9752,3.208275,4.195515,2.7234,5.2313,4.3377,6.077098666666667,3.6975,3.625675,4.576735,1.520425,5.100035,1.8240379999999998,4.10544,2.541925,5.937049999999999,2.675575,1.007674,4.51589,6.9182975,6.66225,3.385,0.7852100000000001,2.8405833333333335,4.577955,4.034735,4.55643,4.487405,4.15528,4.92289,3.18466,4.152705,1.8107933333333335,2.28323,1.4403133333333333,4.12105,9.471815,3.226015,3.62964,5.9859,2.83108,4.44301,2.4931,3.0049356666666664,3.32322,3.945645,3.412595,3.720085,3.6887,5.3215,5.89295,4.930045,4.70953,5.01725,4.12291,3.605245,5.75495,7.975125,0.930818888888889,4.67211,4.250315,5.00285,5.7216,4.53813,2.46832,8.29015,2.4984800000000003,3.44689,5.85205,3.74586,4.325565,2.17698,1.8635875,2.907806666666667,2.13344,2.1082233333333336,2.9321466666666667,4.22844,4.632045,4.038875,3.443725,4.7096350000000005,3.271385,3.18253,3.96112,5.72405,2.9883,5.558771999999999,4.002685,3.929815,3.576985,8.00312,3.911315,3.73925,4.23182,4.92025,3.58367,10.4182,1.3456883333333334,2.24845,3.798605,2.7542500000000003,2.7542500000000003,1.93071,7.754871666666667,0.8861844444444444,3.35741,0.8709775,2.02005,4.307485,4.90908,3.99998,4.43101,2.9248266666666667,3.309265,3.909705,3.80571,4.41265,3.05597,2.69335,4.286165,5.027338333333333,3.927575,4.53953,1.6147960000000001,1.6201139999999998,2.6623033333333335,5.5798,2.35405,1.6968166666666666,1.99098,4.39854,4.815925,3.11567,3.67149,0.5488366666666668,2.293875,7.5466750000000005,3.362655,1.50451,0.85706375,1.2009966666666667,2.0969333333333333,2.06885,0.7779066666666666,2.08141,4.3756390000000005,3.94887,5.02425,2.4399166666666665,2.2397925,7.3238925,3.057075,2.3102383333333334,2.3102383333333334,2.3102383333333334,6.72219,2.35529,3.563895,2.59638,0.485352,1.164984,2.49724,6.625715,0.4619183333333333,3.74077,3.8814816666666667,5.58745,3.004155,0.4619183333333333,3.004155,1.01629,1.277574,5.843,4.241955,6.860844999999999,4.21834,4.60551,3.635845,4.16214,5.11165,5.06895,6.1262,3.717275,3.43694,5.0234,4.711605,4.165615,4.59866,5.28295,1.3623516666666668,2.7600533333333335,1.2157075,2.245565,3.191005138888889,1.593580138888889,7.3163725,5.4702883333333325,2.746126666666667,5.3749,2.86965,4.887405,2.778755,4.343785,4.88697,9.51028,5.61245,4.624565,2.4042125,2.97069,2.15408,0.6065025,2.197055333333333,5.9501,5.30375,5.1858,4.61526,0.5866386666666668,2.0320225,1.401545,4.466725,0.801376923076923,7.1110275000000005,2.0719275,1.1240775,1.1240775,3.9730799999999995,2.08172,3.482366666666667,2.971535,4.571395,3.5137375000000004,3.5137375000000004,4.858275,5.8875183333333325,2.8117866666666664,2.522326666666667,3.3533333333333335,4.6949,1.907,2.7786766666666662,5.61275,5.31685,4.970795,4.578785,3.9352816666666666,4.820745,3.5989158333333338,3.2195766666666668,2.3282925,4.21188,5.3312,3.191735,4.954245,5.60855,2.1091166666666665,2.7106766666666666,6.35935,6.8908,1.376576,2.6934,2.42793,2.76618,2.364395,2.620825,2.596775,1.07796,1.95344,2.683525,2.3230675,2.5839800000000004,2.5839800000000004,3.3679715,2.99445,2.2395034615384617,2.671575,2.41513,2.03932,1.5942319999999999,5.1167425,15.1725675,3.004016666666667,3.5771333333333337,1.8106459999999998,1.8106459999999998,1.69135,1.69135,2.872,3.744666666666667,3.029116666666667,2.016365,2.016365,3.851233333333333,2.9127433333333332,1.11611,1.4695714285714288,3.122116666666667,2.960623333333333,3.666233333333333,2.6084490476190476,3.3331199999999996,3.3125166666666668,0.699084,2.620175,3.6814249999999995,7.196703333333334,4.78991,5.19315,4.38058,3.406665,4.829815,4.694405,2.8800866666666667,4.264655,1.3849583333333333,3.25282,5.82255,5.4034,2.763275,1.3201266666666667,2.965685,2.684556666666667,3.0674200000000003,1.5751966666666668,0.7014235714285714,2.9998966666666664,4.721714166666667,4.699205,4.40323,4.73815,3.0422766666666665,2.1129599999999997,3.3406858333333336,2.608283333333333,3.5307,3.13509,3.3894,2.7293633333333336,3.8180333333333336,3.686,2.93381,5.21905,5.02935,5.164603333333334,5.164603333333334,3.37088,3.927975,3.756465,3.816335,3.01947,4.86863,3.377235,3.12364,6.26685,0.6278725,4.90586,4.93841,2.5522933333333335,5.104538333333333,3.5792333333333333,1.7425166666666667,1.4163171428571428,2.2434433333333335,1.01436,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.5502271428571428,0.5502271428571428,1.2006875,0.8528291666666667,1.6929263383838384,1.0221785714285714,1.0221785714285714,1.2511696717171716,0.4417566666666667,0.39394444444444443,1.20482,1.7314575,2.8006766666666665,2.570125,7.0361199999999995,3.0583533333333333,3.79126,4.249538333333333,4.927828857142857,1.3520883333333333,4.74365,4.31472,4.877265,3.307905,1.513034,4.234425,3.713195,4.837115,4.490205,3.2538,4.725995,4.73018,4.735485,1.204334,4.214235,4.653575,3.29303,2.2943966666666666,3.305725,2.436615,3.324235,4.49142,3.1008266666666664,5.05005,8.762965,3.254995,4.75615,4.193585,4.4791083333333335,2.8035366666666666,4.331195,0.94946,4.09427,3.419425,1.986462,1.10905375,2.87489,1.2025733333333333,0.5047033333333333,3.5698666666666665,4.206455,5.261126666666667,3.728666666666667,2.45231,2.392155,4.864825,4.0065333333333335,4.454095,2.6847,2.2485833333333334,4.195025,4.140675,4.059805,5.3318,4.62044,3.58028,4.72186,3.1632700000000002,4.416935,2.222201666666667,4.702305,5.2383,3.289345,4.2543,2.494205,3.772885,5.53295,4.48471,5.18305,4.9853,4.799845,2.46226,5.09955,4.91307,4.86141,2.3392075,1.09889375,4.116425,4.67532,4.284915,4.98454,1.833005,4.18056,2.15476,5.0582,4.48399,4.856585,2.318835,4.444435,4.92135,4.2769,2.6788366666666668,5.04165,4.883,5.14425,3.753955,2.3392075,2.51106,3.10548,5.08365,3.98696,4.262835,3.520785,4.82354,2.31903,6.90949,5.20055,4.64151,5.258141201388888,5.023540000000001,5.1652,3.43492875,2.430555,2.430555,4.03179,3.8999,4.50255,2.2337575,2.9971662500000003,1.06801375,2.7132666666666663,3.0145433333333336,2.525326666666667,3.0094066666666666,4.545385,2.808896666666667,5.32165,2.7162733333333335,4.596935,5.00226,2.15085,4.140495,1.6496233333333334,2.9179866666666663,4.037795,0.954701,4.925235,4.568205,6.1555575000000005,4.741005,5.6374,1.3137014285714286,4.87211,6.6281,8.72177,3.1931433333333334,3.276073333333333,1.9238600000000001,0.834852,3.93287,1.0648,4.68237,4.462785,5.50515,3.2405,3.819235,1.2060857142857144,3.58631,3.568125,4.33206,4.230745,4.322575,3.802185,2.3867475,4.350995,4.7661,5.7447,4.41975,3.50723,0.4180744444444444,0.4180744444444444,0.4180744444444444,0.4180744444444444,5.45685,2.775885,6.22415,3.0709999999999997,5.09945,4.620015,3.83411,2.284435,2.558263333333333,1.54403,5.1584,2.9296100000000003,4.11202,4.103655,3.422115,1.598235,1.19553375,4.503495,2.432785,6.046796666666667,3.88107,5.2465,2.185995,1.5034049999999999,0.8830366666666667,3.256235,4.401935,3.45088,2.162835,8.130289999999999,4.650985,3.49533,2.3404,0.438354,3.435305,2.482475,2.056255,1.832945,3.648975,3.26354,2.5518,3.0614166666666667,3.01823,3.305595,4.41893,3.731845,3.9095,3.68707,5.648865,0.623886,4.509745,5.68285,5.14955,4.670475,3.280196666666667,5.1705,4.65033,4.353935,5.46774,5.4373,4.749735,4.703815,3.659345,4.859155,2.71191,9.04116,5.01605,4.38186,4.919145,4.898355,5.6331,3.661525,1.1179777777777777,5.8471150000000005,3.586,4.875825,1.4161266666666668,4.474385,3.97632,7.354569999999999,4.594705,3.23987,2.104766666666667,4.54302,2.0328600000000003,1.0140925,4.406455,6.2187,2.011836666666667,2.29934,2.8680866666666667,3.30364,3.568255,3.74927,5.24995,1.8103366666666665,4.266855,3.922202,3.37277,3.698733333333333,4.11199,2.80108,2.58093,1.972605,2.3773233333333335,2.663816666666667,4.456805,0.5871491666666667,2.62704,4.14435,2.926115,3.5050000000000003,4.59585,5.48125,4.08179,17.28324272727273,2.6296433333333336,4.018766666666667,1.49467,0.8630727272727273,0.8630727272727273,0.8630727272727273,0.8630727272727273,0.8630727272727273,4.563715,4.850405,4.927225,9.574864999999999,2.526375,2.526375,4.57648,4.6082141666666665,1.3192675,2.0523866666666666,4.028645,2.575175,2.29616,2.243145,3.03603,3.8059760000000002,1.88793,3.833855,0.8438071428571429,3.0078566666666666,2.9601966666666666,3.04265,1.4278566666666668,3.21013,2.4692333333333334,0.9564175,2.7888966666666666,2.700616666666667,1.2524,2.4681833333333336,2.7834299999999996,2.2240533333333334,4.511149333333334,2.0270699999999997,3.0327633333333335,2.0788225,2.63602,1.0870011111111113,2.7973466666666664,4.807422666666667,3.6083,1.06162625,2.9814866666666666,1.4092575,2.6348733333333336,2.5647533333333334,4.738178333333333,2.96485,2.4530166666666666,4.672122666666667,2.7356466666666663,2.131725,2.9212166666666666,2.59292,1.6088066666666665,2.87979,3.1771,3.2094400000000003,2.6743133333333335,3.3090166666666665,2.6587666666666667,2.531675,3.74012,3.74012,2.9728833333333333,2.11375,1.8488,2.60324,5.52015,3.06338,1.9734833333333333,1.6926525,3.1203333333333334,4.46217,2.4948133333333335,1.005942,2.696402,1.5168100000000002,3.650866666666667,2.1254733333333333,2.6444,2.188616666666667,3.7752,1.295502,1.7682200000000001,1.4398733333333331,4.196671666666667,2.62398,4.168425,1.0068922222222223,4.186035,2.2764,2.450835,1.84193,1.7083166666666667,3.379633333333333,23.70379081818182,6.980343333333334,2.67196,3.6356200000000003,2.35739,10.265395333333334,3.3246966666666666,1.1087875,2.5367533333333334,2.3662466666666666,2.0626166666666665,2.824756666666667,2.6146033333333336,2.538933333333333,0.917152,3.6036333333333332,2.541236666666667,2.9541766666666667,3.0932933333333335,2.7055833333333332,2.0685566666666664,2.199666666666667,2.77238,2.5915399999999997,2.1539825,1.63007,5.493611666666666,4.68658,2.3531025,2.981825,2.27397,2.3631366666666667,8.1782525,1.92204,5.044,2.3298075,2.0202675,7.18453,3.0631233333333334,2.69807,2.510675,1.829508,1.4791134615384616,3.117316666666667,3.3703000000000003,4.211465,1.501345,3.8399,1.705,1.705,4.14346,4.65104,2.917608571428571,2.917608571428571,6.237486666666667,3.43991,0.419186,12.093585463980464,1.2294066666666665,0.9259528571428571,3.8885866666666664,1.4842542735042734,1.986315,6.096676666666667,3.75492,0.7610727272727273,2.169776666666667,4.989714727272727,2.5449466666666667,4.01779,1.3611228571428573,5.5366,5.18275,5.13905,3.65369925,1.96116,2.70114,2.574073333333333,2.5161866666666666,2.2921199999999997,5.088830000000001,4.7688,4.411785,1.95438,4.722355,4.162225,3.2045033333333333,2.221235,5.1419,2.63117,8.831596666666666,6.9241425,1.94275,2.340035,1.764106,4.533166666666667,4.533166666666667,3.2187133333333335,2.966396666666667,3.116083333333333,5.01675,9.7032025,4.57249,2.4486425,5.6024,4.506535,5.3481,2.05302,0.79762,1.32198,4.466305,4.64531,3.8289333333333335,2.7182766666666667,3.8210333333333337,2.3706766666666668,3.81719,4.762575,3.23648,5.65175,3.2852266666666665,3.7704686666666665,3.4459666666666666,3.3397666666666663,3.4194666666666667,6.28555,3.083925,5.4818,5.13195,3.240975,3.383375,3.383375,5.7758416666666665,12.046754166666666,3.5661666666666663,6.449059999999999,7.439024444444445,3.577365,2.461396666666667,3.88088,1.3351166666666667,3.922455,2.17449,2.92624,3.048583333333333,3.3760666666666665,2.1068000000000002,2.4277,2.76786,2.5677566666666665,3.0136566666666664,3.1300866666666667,3.926995,2.56082,2.8728533333333335,3.998595,2.94319,2.431646666666667,1.1158475,2.05486,2.8032033333333337,2.5459166666666664,2.49859,2.4861333333333335,3.5787999999999998,2.31676,2.2840766666666665,2.906446666666667,2.98863,2.81508,2.99105,2.5071233333333334,3.2721533333333332,2.8381399999999997,3.3145860000000003,2.5648033333333333,2.37317,2.4146233333333336,2.62725,2.7477433333333336,3.4098333333333333,3.2764333333333333,2.36011,1.9819975,1.9819975,0.7138100000000001,1.569338,4.231445,3.23348,2.6906966666666663,2.1068000000000002,3.4359333333333333,1.307197142857143,2.68739,0.5766866666666667,3.4807666666666663,3.0907966666666664,3.107535,2.9319166666666665,2.5728433333333336,2.771236666666667,3.08094,2.7105366666666666,3.4264666666666668,4.94666,1.556588,2.74001,2.4521133333333336,1.8228733333333331,2.1623,2.7943266666666666,2.796476666666667,1.701622,2.5548100000000002,2.6426766666666666,2.6413699999999998,2.5873033333333333,2.85833,2.933203333333333,3.216366666666667,1.3245,2.9386200000000002,2.2821766666666665,3.7108666666666665,3.827833333333333,1.8783625,1.89244,3.3906333333333336,2.70849,3.444366666666667,2.5969,2.669826666666667,5.2288475000000005,3.31692,2.0019833333333334,1.6294499999999998,3.3796,6.210426666666667,3.2408633333333334,3.5038,3.067083333333333,3.05719,4.732479333333334,1.648066,1.1510777777777779,2.462213333333333,1.8248141666666666,4.595965,2.7305966666666666,3.2599400000000003,3.1003600000000002,3.257626666666667,2.4971133333333335,3.3780666666666668,2.551675,1.62897,2.8233599999999996,3.528325,3.6299175000000004,3.369005,3.756395,1.5891025,2.687895,3.450805,3.398885,2.3789166666666666,3.5666333333333333,3.863766666666667,3.779833333333333,1.3347125,5.527258,3.17235125,1.5029066666666668,3.328105,3.48861,2.921335,3.74035,1.8961459999999999,1.8961459999999999,3.22368,2.9445033333333335,2.76953,5.26945,4.31519,4.32705,1.21725,3.0236866666666664,2.6662500000000002,4.16235,3.1208066666666667,4.98986,2.73841,2.398213333333333,2.63418,3.737705,4.59976,1.633086,3.00643,3.365705,2.3865825,4.407035,1.3127183333333334,3.78064,4.35561,2.66548,3.481745,4.129275,1.6557125,1.60002,2.34588,1.03961,2.0223714285714287,1.9569275,0.4592778571428572,4.17048,2.273255,4.64813,4.29062,3.06716,4.621735,3.2713566666666662,3.189436666666667,3.6981,2.6625833333333335,3.2891,2.7884433333333334,3.355033333333333,2.159873333333333,0.6945723076923076,2.3855833333333334,0.6324007142857143,1.9790633333333334,2.466816666666667,3.216953333333333,3.019163333333333,1.5334166666666667,1.3183575,4.17631,4.51417,3.22895,3.6606825,3.17111,2.0296825,3.93989,6.762983333333334,3.865265,5.7037075,1.59017,3.814905,1.9571625,4.18761,3.846945,2.07984,4.02936,3.18953,4.00683,4.00021,2.1428475,4.11394,6.3656825,5.29795,3.43981,3.14353,1.7052,1.9922925,3.75369,3.3612,3.221155,3.761715,3.55726,3.60871,1.66343,3.607775,3.45046,1.7720125,4.2399275,1.0333666666666665,3.58813,1.6296525,3.878235,4.74925,3.684825,2.858635,3.763405,3.33494,1.968365,2.2581425,3.828333333333333,2.993145,5.9149625,4.179505,4.49167,2.49588,2.74318,4.662955,4.581285,2.662622,2.662622,6.049312666666667,4.1253735,2.9209275000000003,2.99558,2.1597766666666667,2.80744,3.361275,3.6014524999999997,2.7995435000000004,3.40161,0.915188,3.829425,3.13411,4.1172,2.53893,1.5470475,1.50137,3.20132,5.977492,5.5669875,3.574695,1.623895,4.02511,3.717415,0.8301433333333333,3.045875,1.411544,5.4542325,1.4208083333333335,3.97028,2.0510025,1.5334166666666667,3.507695,2.984425,4.52326,6.96762,4.183825,4.7722983333333335,2.446925,2.946495,4.37104,3.89044,4.462815,4.34239,1.0822175,1.6526200000000002,1.1061,2.599665,2.38551,4.694095,1.1061,4.448,2.28622,1.63249,1.63249,1.7720125,3.968105,4.21963,4.012515,1.53966,1.53966,1.0403566666666666,2.954665,2.0707675,6.0192575,4.365475,3.716485,3.01134,0.9963214285714285,3.47746,2.76346,4.188255,3.70854,3.9849525000000003,3.9849525000000003,3.344955,4.02549,1.86185,2.587875,0.9426577777777777,2.0504666666666664,3.57832,2.531356666666667,3.3155391666666665,3.3155391666666665,2.75657,4.635115,4.549695,3.52913,3.47368,4.09197,2.6084366666666665,4.486621666666666,3.258815,3.927045,8.425685,5.1393,2.840355,3.29376,3.013885,4.679205,3.2507520000000003,8.0346475,4.663003,4.5409,3.530165,3.812725,3.73385,4.349935,4.704505,2.544365,4.535755,6.570047499999999,2.523015,2.194368888888889,3.14665,3.301105,3.564955,5.73855,2.2429033333333335,2.1418399999999997,2.82011,3.0630550000000003,2.8619233333333334,7.300363333333333,1.5476025,4.859151666666667,4.859151666666667,3.157805,4.089536666666667,2.98287,2.6025066666666667,5.02509,4.29248,2.1010933333333335,4.11922,3.946735,3.517271666666667,3.020395,2.99903,6.438633333333334,3.274655,5.36635,3.337915,4.741945,3.952625,3.674775,2.9445033333333335,2.0218133333333332,2.849955,4.029525,2.78675,3.1793183333333332,3.180355,6.388493333333333,3.123815,1.8212175,3.284250833333333,2.3572933333333332,3.86046,2.83982,0.8301433333333333,3.193855,4.16702,3.928285,5.9282,3.070285,2.84989,2.9667066666666666,2.9667066666666666,3.690585833333333,4.275005,3.80673,2.147205,6.1017075,2.13376,4.537355,3.665015,8.05054,2.7894900000000002,1.3152133333333333,3.49829,4.490145,0.6591525,3.907045,3.330245,3.108505,3.21757,4.432795,2.1179866666666665,2.93769,8.990965,3.487355,3.54444,1.4208083333333335,3.76733,2.679135,2.53735,4.199495,5.372925,1.66784,1.2006683333333334,1.1190766666666667,4.14824,3.92121,3.35766,3.4389975,3.4389975,1.66343,2.334665,3.1949508333333334,0.8431533333333333,2.875155,1.085225,1.5891025,3.473945,3.43854,2.73065,2.61582,2.7952399999999997,4.305695,3.65175,3.08082,3.12381,2.53838,4.21583,6.764455,4.114945,0.91929625,2.478096,8.63865,4.55239,4.030395,1.0843625,5.010438333333333,1.4086933333333331,3.7138375,3.7138375,3.8437,8.8897925,0.8492655555555556,4.730775,4.6398,2.2957199999999998,4.114528333333333,4.01221,2.1767975,9.570632666666667,1.8811075,2.4502433333333333,3.214665,1.8225333333333333,4.177605166666667,3.206305,3.34736,3.4041726666666667,2.929795,3.48118,1.0978033333333335,7.42921,4.05335,4.04434,3.958395,1.9569825,2.858635,4.129928333333333,3.854965,0.6520515384615385,4.022495,4.22294,4.94061,2.0986275,1.383766,4.07435,4.15693,8.64149,0.718343846153846,0.6445425,0.6445425,1.69937,1.54233,1.371838,1.7735566666666667,4.8343,1.2564666666666666,0.8961742857142857,4.076280000000001,3.569955,1.3426225,3.33155,4.749885,3.450335,0.675632,1.90374,9.105125000000001,3.621078333333333,3.54568,3.09158,1.5504425,2.47376,2.664775,4.47402,4.22116,3.827995,0.9045628571428572,1.462942,0.9013629999999999,4.5908425,4.26508,4.04711,0.8431533333333333,1.688176,3.921275,2.3915928571428573,4.939244166666667,1.1909825,4.637235,0.6059566666666667,0.6059566666666667,0.6059566666666667,9.787600000000001,3.983715,1.085225,3.87179,4.714175,2.962425,3.490835,4.606620833333333,2.684955,1.9119244444444445,2.0815933333333336,0.675632,1.5057753333333332,0.5231877777777778,0.8067133333333333,1.3346883333333333,3.66701,3.71583,2.03606,7.3510816666666665,4.880801666666667,0.6852788888888889,6.0363,5.200913333333332,3.44975,4.501685,8.093977666666667,3.8441493452380953,4.880801666666667,4.631575166666667,2.3606766666666665,4.19019,3.947245,7.12885,3.451175,0.438354,1.50909,4.024885,1.74567,1.2006683333333334,3.991495,2.35494,1.593185,3.11331,1.6667840000000003,4.430245,4.33573,4.010105,4.73348,6.36957,2.702695,3.81768,1.411544,2.3282675,3.610685,3.16368,2.1010933333333335,4.01589,2.486165,5.0042,2.93207,2.43441,3.3454333333333333,1.605066,3.64258,0.8431533333333333,2.2722685,1.1190766666666667,1.72065,3.60917,1.5476025,1.3346883333333333,2.1988925,3.26962,7.80049,0.9045628571428572,1.0843625,1.3648339999999999,3.60995,4.053255,1.3648339999999999,3.989055,2.3282675,0.6591525,0.8431533333333333,1.69937,1.411544,0.4592778571428572,1.6504280000000002,4.147913333333333,2.2957199999999998,1.3417016666666666,2.918855,1.3347125,1.8811075,2.818623333333333,2.0815933333333336,4.80293,2.818623333333333,0.8301433333333333,2.8023670000000003,2.3307,0.08263977272727273,0.08263977272727273,0.08263977272727273,0.08263977272727273,0.08263977272727273,3.338533333333333,2.751746666666667,2.8453166666666667,2.89911,4.94045,4.22362,1.84193,3.69692,3.57566,2.219895,4.92007,2.92584,2.47223,2.37537,2.7182,4.59404,7.915446666666666,2.3419725,2.09072,3.104049642857143,0.9824371428571429,1.4117916666666668,2.387563333333333,2.0853733333333335,1.48228,2.77083,2.262166666666667,2.6504833333333333,2.67452,2.5560133333333335,3.795685,3.648135,2.61671,1.358718,3.83979,3.730205,1.5362266666666666,1.3440239999999999,1.3440239999999999,1.3440239999999999,3.553475,2.6705733333333335,1.0751666666666666,2.239736666666667,1.33334,4.317885,1.6447399999999999,6.736666666666667,3.33861,2.843336666666667,3.145004,3.145004,5.424456666666666,3.141235,4.5512,4.98032,2.158915,3.202663333333333 +,Esophageal_Cancer,A1BG,A1BG-AS1,A1CF,A2M,A2ML1,A4GALT,A4GNT,AAA1,AAAS,AACS,AADAC,AADACL2,AADAT,AAGAB,AAK1,AAMDC,AAMP,AANAT,AAR2,AARS1,AARS2,AARSD1,AASDH,AASDHPPT,AASS,AATF,ABAT,ABCA1,ABCA10,ABCA11P,ABCA12,ABCA13,ABCA17P,ABCA2,ABCA3,ABCA4,ABCA5,ABCA6,ABCA7,ABCA8,ABCA9,ABCB1,ABCB10,ABCB11,ABCB4,ABCB5,ABCB6,ABCB7,ABCB8,ABCB9,ABCC1,ABCC10,ABCC11,ABCC12,ABCC13,ABCC2,ABCC3,ABCC4,ABCC5,ABCC6,ABCC6P1,ABCC6P2,ABCC8,ABCC9,ABCD1,ABCD2,ABCD3,ABCD4,ABCE1,ABCF1,ABCF2,ABCF3,ABCG1,ABCG2,ABCG4,ABCG5,ABCG8,ABHD1,ABHD10,ABHD11,ABHD12,ABHD12B,ABHD13,ABHD14A,ABHD14B,ABHD15,ABHD16A,ABHD16B,ABHD17A,ABHD17AP1,ABHD17B,ABHD18,ABHD2,ABHD3,ABHD4,ABHD5,ABHD6,ABHD8,ABI1,ABI2,ABI3,ABI3BP,ABITRAM,ABL1,ABL2,ABLIM1,ABLIM2,ABLIM3,ABO,ABR,ABRA,ABRACL,ABRAXAS1,ABRAXAS2,ABT1,ABTB1,ABTB2,ABTB3,ACAA1,ACAA2,ACACA,ACACB,ACAD10,ACAD11,ACAD8,ACAD9,ACADL,ACADM,ACADS,ACADSB,ACADVL,ACAN,ACAP1,ACAP2,ACAP3,ACAT1,ACAT2,ACBD3,ACBD4,ACBD5,ACBD6,ACBD7,ACCS,ACCSL,ACD,ACE,ACE2,ACER1,ACER2,ACER3,ACHE,ACIN1,ACKR1,ACKR3,ACKR4,ACLY,ACMSD,ACO1,ACO2,ACOT1,ACOT11,ACOT12,ACOT13,ACOT2,ACOT4,ACOT7,ACOT8,ACOT9,ACOX1,ACOX2,ACOX3,ACOXL,ACP1,ACP2,ACP3,ACP4,ACP5,ACP6,ACP7,ACR,ACRBP,ACRV1,ACSBG1,ACSBG2,ACSF2,ACSF3,ACSL1,ACSL3,ACSL4,ACSL5,ACSL6,ACSM1,ACSM2A,ACSM2B,ACSM3,ACSM5,ACSM6,ACSS1,ACSS2,ACSS3,ACTA1,ACTA2,ACTB,ACTC1,ACTG1,ACTG2,ACTL6A,ACTL6B,ACTL7A,ACTL7B,ACTL8,ACTL9,ACTMAP,ACTN1,ACTN2,ACTN3,ACTN4,ACTR10,ACTR1A,ACTR1B,ACTR2,ACTR3,ACTR3B,ACTR3C,ACTR5,ACTR6,ACTR8,ACTRT1,ACTRT2,ACTRT3,ACVR1,ACVR1B,ACVR2A,ACVR2B,ACVRL1,ACY1,ACY3,ACYP1,ACYP2,ADA,ADA2,ADAD1,ADAD2,ADAM10,ADAM11,ADAM12,ADAM15,ADAM17,ADAM18,ADAM19,ADAM2,ADAM20,ADAM21,ADAM21P1,ADAM22,ADAM23,ADAM28,ADAM29,ADAM30,ADAM32,ADAM33,ADAM3A,ADAM5,ADAM6,ADAM7,ADAM8,ADAM9,ADAMDEC1,ADAMTS1,ADAMTS10,ADAMTS12,ADAMTS13,ADAMTS14,ADAMTS15,ADAMTS16,ADAMTS17,ADAMTS18,ADAMTS19,ADAMTS2,ADAMTS20,ADAMTS3,ADAMTS4,ADAMTS5,ADAMTS6,ADAMTS7,ADAMTS8,ADAMTS9,ADAMTSL1,ADAMTSL3,ADAMTSL4,ADAMTSL4-AS1,ADAMTSL5,ADAP1,ADAP2,ADAR,ADARB1,ADARB2,ADAT1,ADAT2,ADAT3,ADCK1,ADCK2,ADCK5,ADCY1,ADCY10,ADCY2,ADCY3,ADCY4,ADCY5,ADCY6,ADCY7,ADCY8,ADCY9,ADCYAP1,ADCYAP1R1,ADD1,ADD2,ADD3,ADGRA1,ADGRA2,ADGRA3,ADGRB1,ADGRB2,ADGRB3,ADGRD1,ADGRD2,ADGRE1,ADGRE2,ADGRE3,ADGRF1,ADGRF2P,ADGRF3,ADGRF4,ADGRF5,ADGRG1,ADGRG2,ADGRG3,ADGRG4,ADGRG5,ADGRG6,ADGRG7,ADGRL1,ADGRL2,ADGRL3,ADGRL4,ADGRV1,ADH1A,ADH1B,ADH1C,ADH4,ADH5,ADH6,ADH7,ADHFE1,ADI1,ADIG,ADIPOQ,ADIPOR1,ADIPOR2,ADIRF,ADISSP,ADK,ADM,ADM2,ADM5,ADNP,ADNP2,ADO,ADORA1,ADORA2A,ADORA2B,ADORA3,ADPGK,ADPRH,ADPRHL1,ADPRM,ADPRS,ADRA1A,ADRA1B,ADRA1D,ADRA2A,ADRA2B,ADRA2C,ADRB1,ADRB2,ADRB3,ADRM1,ADSL,ADSS1,ADSS2,ADTRP,AEBP1,AEBP2,AEN,AFAP1,AFAP1-AS1,AFAP1L1,AFAP1L2,AFDN,AFDN-DT,AFF1,AFF2,AFF3,AFF4,AFG1L,AFG2A,AFG2B,AFG3L1P,AFG3L2,AFM,AFP,AFTPH,AGA,AGAP1,AGAP10P,AGAP11,AGAP2,AGAP3,AGAP4,AGAP5,AGAP6,AGAP7P,AGAP9,AGBL1,AGBL2,AGBL3,AGBL4,AGBL5,AGER,AGFG1,AGFG2,AGGF1,AGK,AGL,AGMAT,AGMO,AGO1,AGO2,AGO3,AGO4,AGPAT1,AGPAT2,AGPAT3,AGPAT4,AGPAT4-IT1,AGPAT5,AGPS,AGR2,AGR3,AGRP,AGT,AGTPBP1,AGTR1,AGTR2,AGTRAP,AGXT,AGXT2,AHCTF1,AHCY,AHCYL1,AHCYL2,AHDC1,AHI1,AHNAK,AHNAK2,AHR,AHRR,AHSA1,AHSA2P,AHSG,AHSP,AICDA,AIDA,AIF1,AIF1L,AIFM1,AIFM2,AIFM3,AIG1,AIM2,AIMP1,AIMP2,AIP,AIPL1,AIRE,AIRIM,AJAP1,AJM1,AJUBA,AK1,AK2,AK3,AK4,AK5,AK7,AK8,AK9,AKAP1,AKAP10,AKAP11,AKAP12,AKAP13,AKAP14,AKAP3,AKAP4,AKAP5,AKAP6,AKAP7,AKAP8,AKAP8L,AKAP9,AKIP1,AKIRIN1,AKIRIN2,AKNA,AKNAD1,AKR1A1,AKR1B1,AKR1B10,AKR1B15,AKR1C1,AKR1C2,AKR1C3,AKR1C4,AKR1D1,AKR1E2,AKR7A2,AKR7A2P1,AKR7A3,AKR7L,AKT1,AKT1S1,AKT2,AKT3,AKTIP,ALAD,ALAS1,ALAS2,ALB,ALCAM,ALDH16A1,ALDH18A1,ALDH1A1,ALDH1A2,ALDH1A3,ALDH1B1,ALDH1L1,ALDH2,ALDH3A1,ALDH3A2,ALDH3B1,ALDH3B2,ALDH5A1,ALDH6A1,ALDH7A1,ALDH8A1,ALDH9A1,ALDOA,ALDOAP2,ALDOB,ALDOC,ALG1,ALG10,ALG10B,ALG11,ALG12,ALG13,ALG14,ALG1L1P,ALG2,ALG3,ALG5,ALG6,ALG8,ALG9,ALK,ALKAL1,ALKAL2,ALKBH1,ALKBH2,ALKBH3,ALKBH4,ALKBH5,ALKBH6,ALKBH7,ALKBH8,ALLC,ALMS1,ALMS1P1,ALOX12,ALOX12B,ALOX15,ALOX15B,ALOX5,ALOX5AP,ALOXE3,ALPG,ALPI,ALPK1,ALPK2,ALPK3,ALPL,ALPP,ALS2,ALS2CL,ALX1,ALX3,ALX4,ALYREF,AMACR,AMBN,AMBP,AMBRA1,AMD1,AMDHD1,AMDHD2,AMELX,AMELY,AMER1,AMER2,AMER3,AMFR,AMH,AMHR2,AMIGO1,AMIGO2,AMIGO3,AMMECR1,AMMECR1L,AMN,AMN1,AMOT,AMOTL1,AMOTL2,AMPD1,AMPD2,AMPD3,AMPH,AMT,AMTN,AMY1A,AMY1B,AMY1C,AMY2A,AMY2B,AMZ2,AMZ2P1,AN,ANAPC1,ANAPC10,ANAPC11,ANAPC13,ANAPC15,ANAPC16,ANAPC2,ANAPC4,ANAPC5,ANG,ANGEL1,ANGEL2,ANGPT1,ANGPT2,ANGPT4,ANGPTL1,ANGPTL2,ANGPTL3,ANGPTL4,ANGPTL5,ANGPTL6,ANGPTL7,ANGPTL8,ANK1,ANK2,ANK3,ANKAR,ANKDD1A,ANKEF1,ANKFN1,ANKFY1,ANKH,ANKHD1,ANKK1,ANKLE1,ANKMY1,ANKMY2,ANKRA2,ANKRD1,ANKRD10,ANKRD11,ANKRD12,ANKRD13A,ANKRD13B,ANKRD13C,ANKRD13C-DT,ANKRD13D,ANKRD16,ANKRD17,ANKRD18A,ANKRD18B,ANKRD2,ANKRD20A1,ANKRD20A11P,ANKRD20A2P,ANKRD20A3P,ANKRD20A4P,ANKRD20A8P,ANKRD22,ANKRD23,ANKRD26,ANKRD26P1,ANKRD27,ANKRD28,ANKRD29,ANKRD30A,ANKRD30B,ANKRD30BL,ANKRD30BP2,ANKRD33,ANKRD34B,ANKRD35,ANKRD36,ANKRD36B,ANKRD36BP1,ANKRD36BP2,ANKRD37,ANKRD39,ANKRD40,ANKRD40CL,ANKRD42,ANKRD44,ANKRD45,ANKRD46,ANKRD49,ANKRD50,ANKRD52,ANKRD53,ANKRD54,ANKRD55,ANKRD6,ANKRD60,ANKRD7,ANKRD9,ANKS1A,ANKS1B,ANKS3,ANKS4B,ANKS6,ANKZF1,ANLN,ANO1,ANO10,ANO2,ANO3,ANO4,ANO5,ANO7,ANOS1,ANP32A,ANP32A-IT1,ANP32B,ANP32CP,ANP32D,ANP32E,ANPEP,ANTKMT,ANTXR1,ANTXR2,ANXA1,ANXA10,ANXA11,ANXA13,ANXA2,ANXA2P1,ANXA2P2,ANXA2P3,ANXA2R,ANXA3,ANXA4,ANXA5,ANXA6,ANXA7,ANXA9,AOAH,AOC2,AOC3,AOPEP,AOX1,AP1AR,AP1B1,AP1G1,AP1G2,AP1M1,AP1M2,AP1S1,AP1S2,AP1S3,AP2A1,AP2A2,AP2B1,AP2M1,AP2S1,AP3B1,AP3B2,AP3D1,AP3M1,AP3M2,AP3S1,AP3S2,AP4B1,AP4E1,AP4M1,AP4S1,AP5M1,AP5S1,AP5Z1,APAF1,APBA1,APBA2,APBA3,APBB1,APBB1IP,APBB2,APBB3,APC,APC2,APCDD1,APCDD1L,APCS,APEH,APEX1,APEX2,APH1A,APH1B,API5,APIP,APLF,APLN,APLNR,APLP1,APLP2,APMAP,APOA1,APOA2,APOA4,APOA5,APOB,APOBEC1,APOBEC2,APOBEC3A,APOBEC3B,APOBEC3C,APOBEC3D,APOBEC3F,APOBEC3G,APOBEC3H,APOBEC4,APOBR,APOC1,APOC1P1,APOC2,APOC3,APOC4,APOD,APOE,APOF,APOH,APOL1,APOL2,APOL3,APOL4,APOL5,APOL6,APOLD1,APOM,APOO,APOOL,APP,APPBP2,APPL1,APPL2,APRG1,APRT,APTX,AQP1,AQP10,AQP11,AQP2,AQP3,AQP4,AQP4-AS1,AQP5,AQP6,AQP7,AQP7P1,AQP8,AQP9,AQR,AR,ARAF,ARAP1,ARAP2,ARAP3,ARB2A,ARCN1,AREG,AREL1,ARF1,ARF3,ARF4,ARF5,ARF6,ARFGAP1,ARFGAP2,ARFGAP3,ARFGEF1,ARFGEF2,ARFGEF3,ARFIP1,ARFIP2,ARFRP1,ARG1,ARG2,ARGLU1,ARHGAP1,ARHGAP10,ARHGAP11A,ARHGAP11B,ARHGAP12,ARHGAP15,ARHGAP17,ARHGAP18,ARHGAP19,ARHGAP20,ARHGAP21,ARHGAP22,ARHGAP24,ARHGAP25,ARHGAP26,ARHGAP27,ARHGAP28,ARHGAP29,ARHGAP30,ARHGAP32,ARHGAP33,ARHGAP35,ARHGAP36,ARHGAP4,ARHGAP42,ARHGAP44,ARHGAP45,ARHGAP5,ARHGAP5-AS1,ARHGAP6,ARHGAP8,ARHGAP9,ARHGDIA,ARHGDIB,ARHGDIG,ARHGEF1,ARHGEF10,ARHGEF10L,ARHGEF11,ARHGEF12,ARHGEF15,ARHGEF16,ARHGEF17,ARHGEF18,ARHGEF19,ARHGEF2,ARHGEF25,ARHGEF26,ARHGEF28,ARHGEF3,ARHGEF35,ARHGEF37,ARHGEF38,ARHGEF39,ARHGEF4,ARHGEF40,ARHGEF5,ARHGEF6,ARHGEF7,ARID1A,ARID1B,ARID3A,ARID3B,ARID3C,ARID4A,ARID4B,ARID5A,ARIH1,ARIH2,ARK2C,ARK2N,ARL1,ARL10,ARL11,ARL13B,ARL14,ARL14EP,ARL15,ARL17A,ARL17B,ARL2,ARL2BP,ARL3,ARL4A,ARL4C,ARL4D,ARL5B,ARL6,ARL6IP1,ARL6IP4,ARL6IP5,ARL6IP6,ARL8A,ARL8B,ARL9,ARLN,ARMC1,ARMC10,ARMC12,ARMC2,ARMC3,ARMC5,ARMC6,ARMC7,ARMC8,ARMC9,ARMCX1,ARMCX2,ARMCX3,ARMCX4,ARMCX5,ARMCX5-GPRASP2,ARMCX6,ARMH1,ARMH3,ARMH4,ARMT1,ARNT,ARNT2,ARPC1A,ARPC1B,ARPC2,ARPC4,ARPC5,ARPC5L,ARPIN-AP3S2,ARPP19,ARPP21,ARR3,ARRB1,ARRB2,ARRDC1,ARRDC1-AS1,ARRDC2,ARRDC3,ARRDC4,ARSA,ARSB,ARSD,ARSF,ARSG,ARSJ,ARSK,ARSL,ART1,ART3,ART4,ART5,ARTN,ARV1,ARVCF,ARX,AS3MT,ASAH1,ASAH2,ASAH2B,ASAP1,ASAP1-IT1,ASAP2,ASAP3,ASB1,ASB10,ASB11,ASB12,ASB13,ASB14,ASB15,ASB16,ASB16-AS1,ASB17,ASB18,ASB2,ASB3,ASB4,ASB5,ASB6,ASB7,ASB8,ASB9,ASB9P1,ASCC1,ASCC2,ASCC3,ASCL1,ASCL2,ASCL3,ASCL4,ASF1A,ASF1B,ASGR1,ASGR2,ASH1L,ASH2L,ASIC1,ASIC2,ASIC3,ASIC4,ASIC5,ASIP,ASL,ASNS,ASNSD1,ASPA,ASPDH,ASPH,ASPHD1,ASPHD2,ASPM,ASPN,ASPRV1,ASPSCR1,ASRGL1,ASTE1,ASTL,ASTN1,ASTN2,ASXL1,ASXL2,ASZ1,ATAD1,ATAD2,ATAD2B,ATAD3A,ATAD3B,ATAD3C,ATAD5,ATAT1,ATCAY,ATE1,ATF1,ATF2,ATF3,ATF4,ATF5,ATF6,ATF6B,ATF7,ATF7IP,ATF7IP2,ATG10,ATG101,ATG12,ATG13,ATG14,ATG16L1,ATG2B,ATG3,ATG4A,ATG4C,ATG4D,ATG5,ATG7,ATG9A,ATG9B,ATIC,ATL1,ATL2,ATL3,ATM,ATMIN,ATN1,ATOH1,ATOH7,ATOH8,ATOSB,ATOX1,ATP10A,ATP10B,ATP10D,ATP11AUN,ATP11B,ATP11C,ATP12A,ATP13A1,ATP13A2,ATP13A3,ATP13A4,ATP13A5,ATP1A1,ATP1A2,ATP1A3,ATP1A4,ATP1B1,ATP1B2,ATP1B3,ATP1B4,ATP23,ATP2A1,ATP2A2,ATP2A3,ATP2B1,ATP2B2,ATP2B3,ATP2B4,ATP2C1,ATP2C2,ATP4A,ATP4B,ATP5F1A,ATP5F1B,ATP5F1C,ATP5F1D,ATP5F1E,ATP5F1EP2,ATP5IF1,ATP5MC1,ATP5MC2,ATP5MC3,ATP5ME,ATP5MG,ATP5MGL,ATP5MJ,ATP5MK,ATP5PB,ATP5PD,ATP5PF,ATP5PO,ATP6,ATP6AP1,ATP6AP2,ATP6V0A1,ATP6V0A2,ATP6V0A4,ATP6V0B,ATP6V0C,ATP6V0D1,ATP6V0D2,ATP6V0E1,ATP6V0E2,ATP6V1A,ATP6V1B1,ATP6V1B2,ATP6V1C1,ATP6V1C2,ATP6V1D,ATP6V1E1,ATP6V1E2,ATP6V1F,ATP6V1G1,ATP6V1G2,ATP6V1G3,ATP6V1H,ATP7A,ATP7B,ATP8,ATP8A1,ATP8A2,ATP8B1,ATP8B2,ATP8B3,ATP8B4,ATP8B5P,ATP9B,ATPAF2,ATPSCKMT,ATR,ATRAID,ATRIP,ATRN,ATRNL1,ATRX,ATXN1,ATXN10,ATXN2,ATXN2L,ATXN3,ATXN7,ATXN7L1,ATXN7L2,ATXN7L3B,ATXN8,ATXN8OS,AUH,AUNIP,AUP1,AURKA,AURKAP1,AURKB,AURKC,AUTS2,AVEN,AVIL,AVL9,AVP,AVPI1,AVPR1A,AVPR2,AWAT2,AXDND1,AXIN1,AXIN2,AXL,AZGP1,AZGP1P1,AZI2,AZIN1,AZU1,B2M,B3GALNT1,B3GALNT2,B3GALT1,B3GALT2,B3GALT4,B3GALT5,B3GALT5-AS1,B3GALT6,B3GAT1,B3GAT2,B3GAT3,B3GLCT,B3GNT2,B3GNT3,B3GNT4,B3GNT5,B3GNT6,B3GNT7,B3GNT8,B3GNT9,B3GNTL1,B4GALNT1,B4GALNT2,B4GALNT3,B4GALNT4,B4GALT1,B4GALT2,B4GALT3,B4GALT4,B4GALT5,B4GALT6,B4GALT7,B4GAT1,B9D1,B9D2,BAALC,BAALC-AS2,BAAT,BABAM1,BABAM2,BACE1,BACE2,BACH1,BACH2,BAD,BAG1,BAG2,BAG3,BAG4,BAG5,BAG6,BAGE,BAGE2,BAGE3,BAGE4,BAGE5,BAHCC1,BAHD1,BAIAP2,BAIAP2L1,BAIAP2L2,BAIAP3,BAK1,BAMBI,BANF1,BANF2,BANK1,BANP,BAP1,BARD1,BARHL1,BARHL2,BARX1,BARX2,BASP1,BATF,BATF2,BATF3,BAX,BAZ1A,BAZ1B,BAZ2A,BAZ2B,BBC3,BBLN,BBOF1,BBOX1,BBS1,BBS10,BBS12,BBS2,BBS4,BBS5,BBS7,BBS9,BBX,BCAM,BCAN,BCAP29,BCAP31,BCAR1,BCAR3,BCAS1,BCAS2,BCAS3,BCAS4,BCAT1,BCAT2,BCCIP,BCDIN3D,BCHE,BCKDHB,BCKDK,BCL10,BCL11A,BCL11B,BCL2,BCL2A1,BCL2L1,BCL2L10,BCL2L11,BCL2L12,BCL2L13,BCL2L14,BCL2L2,BCL3,BCL6,BCL6B,BCL7B,BCL7C,BCL9,BCL9L,BCLAF1,BCO1,BCO2,BCOR,BCORL1,BCR,BCS1L,BDH1,BDH2,BDKRB1,BDKRB2,BDNF,BDP1,BECN1,BEGAIN,BEND2,BEND4,BEND5,BEND6,BEND7,BEST1,BEST2,BEST3,BEST4,BET1,BET1L,BEX1,BEX2,BEX3,BFAR,BFSP1,BFSP2,BGLAP,BGN,BHLHA15,BHLHE22,BHLHE40,BHLHE41,BHMT,BHMT2,BICC1,BICD1,BICD2,BICDL1,BICRA,BID,BIK,BIN1,BIN2,BIN3,BIRC2,BIRC3,BIRC5,BIRC6,BIRC7,BIRC8,BIVM,BLCAP,BLID,BLK,BLM,BLMH,BLNK,BLOC1S1,BLOC1S2,BLOC1S3,BLOC1S4,BLOC1S5,BLOC1S6,BLTP1,BLTP2,BLTP3A,BLTP3B,BLVRA,BLVRB,BLZF1,BMAL1,BMAL2,BMERB1,BMF,BMI1,BMP1,BMP10,BMP15,BMP2,BMP2K,BMP3,BMP4,BMP5,BMP6,BMP7,BMP8A,BMP8B,BMPER,BMPR1A,BMPR1B,BMPR2,BMS1,BMS1P1,BMX,BNC1,BNC2,BNIP1,BNIP2,BNIP3,BNIP3L,BNIPL,BOC,BOD1,BOD1L1,BOD1L2,BOK,BOK-AS1,BOLA1,BOLL,BORA,BORCS5,BORCS6,BORCS7,BPESC1,BPGM,BPHL,BPI,BPIFA1,BPIFA2,BPIFA3,BPIFA4P,BPIFB1,BPIFB2,BPIFB3,BPIFB4,BPIFB6,BPIFC,BPNT1,BPNT2,BPTF,BRAF,BRAP,BRAT1,BRCA1,BRCA2,BRCC3,BRD1,BRD2,BRD3,BRD3OS,BRD4,BRD7P3,BRD8,BRD9,BRDT,BRF1,BRF2,BRI3,BRI3BP,BRICD5,BRINP2,BRINP3,BRIP1,BRIX1,BRK1,BRME1,BRMS1,BRMS1L,BRPF1,BRS3,BRSK1,BRSK2,BRWD1,BRWD1-AS2,BRWD3,BSCL2,BSDC1,BSG,BSN,BSND,BSPRY,BST1,BST2,BTAF1,BTBD1,BTBD10,BTBD16,BTBD2,BTBD3,BTBD6,BTBD7,BTBD8,BTBD9,BTC,BTD,BTF3,BTF3L4,BTF3P11,BTF3P9,BTG1,BTG2,BTG3,BTG4,BTK,BTLA,BTN1A1,BTN2A1,BTN2A2,BTN2A3P,BTN3A1,BTN3A2,BTN3A3,BTNL2,BTNL3,BTNL8,BTNL9,BTRC,BUB1,BUB1B,BUB3,BUD13,BUD23,BUD31,BYSL,BZW1,BZW2,C10orf126,C10orf53,C10orf55,C10orf62,C10orf67,C10orf71,C10orf88,C10orf90,C10orf95,C11orf16,C11orf21,C11orf24,C11orf40,C11orf42,C11orf54,C11orf58,C11orf65,C11orf68,C11orf71,C11orf87,C11orf91,C11orf98,C12orf42,C12orf43,C12orf50,C12orf54,C12orf57,C12orf60,C12orf75,C12orf76,C14orf119,C14orf132,C14orf39,C14orf93,C15orf32,C15orf39,C15orf40,C15orf48,C16orf46,C16orf54,C16orf74,C16orf78,C16orf82,C16orf87,C16orf89,C17orf107,C17orf50,C17orf58,C17orf75,C17orf78,C17orf99,C18orf15,C18orf21,C18orf32,C19orf12,C19orf18,C19orf25,C19orf33,C19orf44,C19orf47,C19orf48P,C19orf53,C19orf73,C1GALT1,C1GALT1C1,C1QA,C1QB,C1QBP,C1QC,C1QL1,C1QL2,C1QL3,C1QTNF1,C1QTNF2,C1QTNF3,C1QTNF4,C1QTNF5,C1QTNF6,C1QTNF7,C1QTNF8,C1QTNF9,C1QTNF9B,C1R,C1RL,C1S,C1orf105,C1orf115,C1orf116,C1orf159,C1orf162,C1orf174,C1orf198,C1orf21,C1orf210,C1orf216,C1orf220,C1orf226,C1orf35,C1orf43,C1orf50,C1orf52,C1orf54,C1orf56,C1orf74,C1orf87,C1orf94,C2,C20orf141,C20orf144,C20orf173,C20orf203,C20orf204,C20orf96,C21orf58,C21orf91,C21orf91-OT1,C22orf15,C22orf23,C22orf31,C22orf39,C22orf46P,C2CD2,C2CD2L,C2CD3,C2CD4A,C2CD4B,C2CD5,C2CD6,C2orf15,C2orf42,C2orf49,C2orf69,C2orf88,C3,C3AR1,C3orf18,C3orf20,C3orf22,C3orf33,C3orf36,C3orf38,C3orf49,C3orf52,C3orf62,C4A,C4B,C4BPA,C4BPB,C4orf17,C4orf33,C4orf36,C4orf46,C4orf50,C5,C5AR1,C5AR2,C5orf15,C5orf22,C5orf24,C5orf34,C5orf46,C5orf58,C6,C6orf118,C6orf136,C6orf141,C6orf147,C6orf15,C6orf47,C6orf58,C6orf62,C6orf89,C7,C7orf25,C7orf33,C8A,C8B,C8G,C8orf17,C8orf33,C8orf34,C8orf44,C8orf48,C8orf58,C8orf76,C8orf82,C9,C9orf153,C9orf163,C9orf40,C9orf43,C9orf50,C9orf72,C9orf78,C9orf85,CA1,CA10,CA11,CA12,CA13,CA14,CA2,CA3,CA4,CA5A,CA5B,CA5BP1,CA6,CA7,CA8,CA9,CAAP1,CAB39,CAB39L,CABCOCO1,CABIN1,CABLES1,CABP1,CABP2,CABP4,CABP5,CABP7,CABS1,CABYR,CACHD1,CACNA1A,CACNA1B,CACNA1C,CACNA1D,CACNA1E,CACNA1F,CACNA1G,CACNA1G-AS1,CACNA1H,CACNA1I,CACNA1S,CACNA2D1,CACNA2D2,CACNA2D3,CACNA2D4,CACNB1,CACNB2,CACNB3,CACNB4,CACNG1,CACNG2,CACNG3,CACNG4,CACNG5,CACNG6,CACNG7,CACNG8,CACUL1,CACYBP,CAD,CADM1,CADM2,CADM3,CADM4,CADPS,CADPS2,CAGE1,CALB1,CALB2,CALCA,CALCB,CALCOCO1,CALCOCO2,CALCR,CALCRL,CALD1,CALHM1,CALHM2,CALHM3,CALHM4,CALHM5,CALM1,CALM2,CALM3,CALML3,CALML4,CALML5,CALML6,CALN1,CALR,CALR3,CALU,CALY,CAMK1,CAMK1D,CAMK1G,CAMK2A,CAMK2B,CAMK2D,CAMK2G,CAMK2N1,CAMK2N2,CAMK4,CAMKK1,CAMKK2,CAMKMT,CAMKV,CAMLG,CAMP,CAMSAP1,CAMSAP2,CAMTA1,CAMTA2,CAND1,CANT1,CANX,CAP1,CAP2,CAPG,CAPN1,CAPN10,CAPN11,CAPN12,CAPN13,CAPN15,CAPN2,CAPN3,CAPN5,CAPN6,CAPN7,CAPN9,CAPNS1,CAPNS2,CAPRIN1,CAPRIN2,CAPS,CAPS2,CAPSL,CAPZA1,CAPZA2,CAPZA3,CAPZB,CARD10,CARD11,CARD14,CARD16,CARD17P,CARD18,CARD19,CARD6,CARD8,CARD9,CARF,CARHSP1,CARINH,CARM1,CARMIL1,CARMIL3,CARNMT1,CARNS1,CARS1,CARS2,CARTPT,CASC2,CASC3,CASD1,CASK,CASKIN1,CASKIN2,CASP1,CASP10,CASP12,CASP14,CASP2,CASP3,CASP4,CASP5,CASP6,CASP7,CASP8,CASP8AP2,CASP9,CASQ1,CASQ2,CASR,CASS4,CAST,CASTOR1,CASTOR3P,CASZ1,CAT,CATIP,CATSPER1,CATSPER2,CATSPER2P1,CATSPER3,CATSPERB,CATSPERD,CATSPERE,CATSPERG,CATSPERZ,CAV1,CAV2,CAV3,CAVIN1,CAVIN2,CAVIN3,CBARP,CBFA2T2,CBFA2T3,CBFB,CBL,CBLB,CBLC,CBLL1,CBLL2,CBLN1,CBLN2,CBLN3,CBLN4,CBR1,CBR3,CBR4,CBS,CBX1,CBX2,CBX3,CBX4,CBX5,CBX6,CBX7,CBX8,CBY1,CBY2,CC2D1A,CC2D1B,CC2D2B,CCAR1,CCAR2,CCBE1,CCDC102A,CCDC102B,CCDC106,CCDC107,CCDC110,CCDC112,CCDC115,CCDC116,CCDC117,CCDC12,CCDC120,CCDC121,CCDC122,CCDC124,CCDC125,CCDC126,CCDC127,CCDC13,CCDC134,CCDC136,CCDC137,CCDC138,CCDC14,CCDC140,CCDC141,CCDC142,CCDC144A,CCDC144BP,CCDC144CP,CCDC144NL,CCDC146,CCDC148,CCDC149,CCDC15,CCDC150,CCDC158,CCDC159,CCDC169,CCDC17,CCDC170,CCDC171,CCDC172,CCDC174,CCDC177,CCDC178,CCDC18,CCDC181,CCDC183,CCDC185,CCDC186,CCDC190,CCDC191,CCDC196,CCDC197,CCDC198,CCDC22,CCDC24,CCDC25,CCDC26,CCDC27,CCDC28A,CCDC28B,CCDC3,CCDC30,CCDC32,CCDC33,CCDC34,CCDC38,CCDC40,CCDC42,CCDC43,CCDC47,CCDC50,CCDC51,CCDC54,CCDC57,CCDC59,CCDC6,CCDC60,CCDC62,CCDC63,CCDC65,CCDC68,CCDC69,CCDC7,CCDC70,CCDC71,CCDC73,CCDC77,CCDC78,CCDC8,CCDC80,CCDC81,CCDC82,CCDC83,CCDC85B,CCDC85C,CCDC86,CCDC87,CCDC88A,CCDC88B,CCDC88C,CCDC89,CCDC9,CCDC90B,CCDC91,CCDC92,CCDC93,CCDC97,CCDC9B,CCER1,CCHCR1,CCIN,CCK,CCKAR,CCKBR,CCL1,CCL11,CCL13,CCL14,CCL15,CCL16,CCL17,CCL18,CCL19,CCL2,CCL20,CCL21,CCL22,CCL23,CCL24,CCL25,CCL26,CCL27,CCL28,CCL4,CCL4L1,CCL4L2,CCL5,CCL7,CCL8,CCM2,CCM2L,CCN1,CCN2,CCN4,CCN5,CCN6,CCNA1,CCNA2,CCNB1,CCNB1IP1,CCNB2,CCNB3,CCNC,CCND1,CCND2,CCND3,CCNDBP1,CCNE1,CCNE2,CCNF,CCNG1,CCNG2,CCNH,CCNI,CCNJ,CCNJL,CCNK,CCNL1,CCNL2,CCNO,CCNP,CCNQ,CCNT1,CCNT2,CCNY,CCNYL1,CCP110,CCPG1,CCR1,CCR10,CCR2,CCR3,CCR4,CCR6,CCR7,CCR9,CCRL2,CCS,CCSAP,CCSER1,CCSER2,CCT2,CCT3,CCT4,CCT5,CCT6A,CCT6B,CCT7,CCT8,CCT8L2,CD101,CD109,CD14,CD151,CD160,CD163,CD163L1,CD164,CD164L2,CD177,CD180,CD19,CD1A,CD1B,CD1C,CD1D,CD1E,CD2,CD200,CD200R1,CD200R1L,CD207,CD209,CD22,CD226,CD24,CD244,CD247,CD248,CD27,CD274,CD276,CD28,CD2AP,CD2BP2,CD300A,CD300C,CD300E,CD300LB,CD300LD,CD300LD-AS1,CD300LF,CD300LG,CD302,CD320,CD33,CD34,CD36,CD37,CD38,CD3D,CD3E,CD3G,CD4,CD40,CD40LG,CD44,CD46,CD47,CD48,CD5,CD52,CD53,CD55,CD58,CD59,CD5L,CD6,CD63,CD68,CD69,CD7,CD70,CD72,CD74,CD79A,CD79B,CD80,CD81,CD82,CD83,CD84,CD86,CD8A,CD8B,CD9,CD93,CD96,CD99,CD99L2,CDA,CDADC1,CDAN1,CDC123,CDC14A,CDC14B,CDC16,CDC20,CDC20B,CDC23,CDC25A,CDC25B,CDC25C,CDC26,CDC27,CDC34,CDC37,CDC37L1,CDC40,CDC42,CDC42BPA,CDC42BPB,CDC42BPG,CDC42EP1,CDC42EP2,CDC42EP3,CDC42EP4,CDC42EP5,CDC42SE1,CDC42SE2,CDC45,CDC5L,CDC6,CDC7,CDC73,CDCA2,CDCA3,CDCA4,CDCA5,CDCA7,CDCA7L,CDCA8,CDCP1,CDCP2,CDH1,CDH10,CDH11,CDH12,CDH13,CDH15,CDH16,CDH17,CDH18,CDH19,CDH2,CDH20,CDH22,CDH23,CDH24,CDH26,CDH3,CDH4,CDH5,CDH6,CDH7,CDH8,CDH9,CDHR1,CDHR2,CDHR3,CDHR4,CDHR5,CDIN1,CDIP1,CDIPT,CDK1,CDK10,CDK11A,CDK11B,CDK12,CDK13,CDK14,CDK15,CDK16,CDK17,CDK18,CDK19,CDK2,CDK20,CDK2AP1,CDK2AP2,CDK3,CDK4,CDK5,CDK5R1,CDK5R2,CDK5RAP1,CDK5RAP2,CDK5RAP3,CDK6,CDK7,CDK8,CDK9,CDKAL1,CDKL1,CDKL2,CDKL3,CDKL5,CDKN1A,CDKN1B,CDKN1C,CDKN2A,CDKN2A-AS1,CDKN2AIP,CDKN2AIPNL,CDKN2B,CDKN2B-AS1,CDKN2C,CDKN2D,CDKN3,CDO1,CDON,CDPF1,CDR1,CDR2,CDR2L,CDRT15L2,CDRT15P2,CDRT4,CDS1,CDS2,CDSN,CDT1,CDV3,CDX1,CDX2,CDX4,CDYL,CDYL2,CEACAM1,CEACAM19,CEACAM20,CEACAM21,CEACAM3,CEACAM4,CEACAM5,CEACAM6,CEACAM7,CEACAM8,CEBPA,CEBPB,CEBPD,CEBPE,CEBPG,CEBPZ,CECR2,CECR7,CEL,CELA1,CELA2A,CELA2B,CELA3A,CELA3B,CELF1,CELF2,CELF3,CELF4,CELF5,CELF6,CELP,CELSR1,CELSR2,CELSR3,CEMIP,CEMIP2,CEMP1,CENATAC,CEND1,CENPA,CENPB,CENPBD1P,CENPC,CENPE,CENPF,CENPH,CENPI,CENPK,CENPL,CENPM,CENPN,CENPO,CENPP,CENPQ,CENPS-CORT,CENPT,CENPU,CENPV,CENPX,CEP104,CEP112,CEP120,CEP128,CEP135,CEP15,CEP162,CEP164,CEP170,CEP170B,CEP170P1,CEP19,CEP192,CEP20,CEP250,CEP290,CEP350,CEP41,CEP43,CEP44,CEP55,CEP57,CEP57L1,CEP63,CEP68,CEP70,CEP72,CEP76,CEP83,CEP85,CEP85L,CEP89,CEP95,CEP97,CEPT1,CER1,CERCAM,CERK,CERKL,CERS1,CERS2,CERS3,CERS4,CERS5,CERS6,CERT1,CES2,CES3,CES4A,CES5A,CETN1,CETN2,CETN3,CETP,CFAP100,CFAP107,CFAP141,CFAP157,CFAP161,CFAP184,CFAP20,CFAP206,CFAP20DC,CFAP251,CFAP263,CFAP298,CFAP299,CFAP300,CFAP36,CFAP410,CFAP418,CFAP43,CFAP44,CFAP45,CFAP46,CFAP52,CFAP53,CFAP54,CFAP57,CFAP61,CFAP65,CFAP68,CFAP69,CFAP70,CFAP73,CFAP74,CFAP77,CFAP91,CFAP92,CFAP97,CFB,CFD,CFDP1,CFH,CFHR1,CFHR2,CFHR3,CFHR4,CFHR5,CFI,CFL1,CFL1P1,CFL2,CFLAR,CFP,CFTR,CGA,CGAS,CGB2,CGB5,CGB7,CGB8,CGGBP1,CGN,CGNL1,CGREF1,CGRRF1,CH25H,CHAC1,CHAC2,CHAD,CHAF1A,CHAF1B,CHAMP1,CHAT,CHCHD1,CHCHD10,CHCHD2,CHCHD3,CHCHD4,CHCHD5,CHCHD6,CHCHD7,CHCT1,CHD1,CHD1L,CHD2,CHD3,CHD4,CHD5,CHD6,CHD9,CHDH,CHEK1,CHEK2,CHERP,CHFR,CHGA,CHGB,CHI3L1,CHI3L2,CHIA,CHIC2,CHID1,CHIT1,CHKA,CHKB,CHKB-CPT1B,CHL1,CHLSN,CHM,CHML,CHMP1A,CHMP1B,CHMP2A,CHMP2B,CHMP4A,CHMP4B,CHMP4C,CHMP5,CHMP6,CHMP7,CHN1,CHN2,CHODL,CHORDC1,CHP2,CHPF,CHPF2,CHPT1,CHRAC1,CHRD,CHRDL1,CHRDL2,CHRFAM7A,CHRM1,CHRM2,CHRM3,CHRM4,CHRM5,CHRNA1,CHRNA10,CHRNA2,CHRNA3,CHRNA4,CHRNA5,CHRNA6,CHRNA7,CHRNA9,CHRNB1,CHRNB2,CHRNB3,CHRNB4,CHRND,CHRNE,CHRNG,CHST1,CHST10,CHST11,CHST12,CHST13,CHST14,CHST2,CHST3,CHST4,CHST5,CHST6,CHST7,CHST8,CHST9,CHSY1,CHSY3,CHTF18,CHTF8,CHTOP,CHUK,CHURC1,CIAO1,CIAO2A,CIAO2B,CIAO3,CIAPIN1,CIART,CIB1,CIB2,CIB3,CIBAR1,CIBAR1P2,CIBAR2,CIC,CIDEA,CIDEB,CIDEC,CIDECP1,CIITA,CILK1,CILP,CILP2,CIMAP1A,CIMAP1B,CIMAP1C,CIMAP1D,CIMAP2,CIMAP3,CIMIP1,CIMIP2A,CIMIP4,CIMIP5,CIMIP6,CINP,CIP2A,CIPC,CIR1,CIRBP,CIRBP-AS1,CIROZ,CISD1,CISD2,CISD3,CISH,CIT,CITED1,CITED2,CITED4,CIZ1,CKAP2,CKAP2L,CKAP4,CKAP5,CKB,CKLF,CKM,CKMT2,CKS1B,CKS2,CLASP1,CLASP2,CLASRP,CLBA1,CLC,CLCA1,CLCA2,CLCA3P,CLCA4,CLCC1,CLCF1,CLCN1,CLCN2,CLCN3,CLCN4,CLCN5,CLCN6,CLCN7,CLCNKA,CLCNKB,CLDN1,CLDN10,CLDN11,CLDN12,CLDN14,CLDN15,CLDN16,CLDN17,CLDN18,CLDN19,CLDN2,CLDN20,CLDN23,CLDN3,CLDN4,CLDN5,CLDN6,CLDN7,CLDN8,CLDN9,CLDND1,CLDND2,CLEC10A,CLEC11A,CLEC12A,CLEC12B,CLEC14A,CLEC17A,CLEC18A,CLEC18B,CLEC18C,CLEC1A,CLEC1B,CLEC20A,CLEC2A,CLEC2B,CLEC2D,CLEC3A,CLEC3B,CLEC4A,CLEC4C,CLEC4D,CLEC4E,CLEC4F,CLEC4G,CLEC4GP1,CLEC4M,CLEC5A,CLEC6A,CLEC7A,CLEC9A,CLECL1P,CLGN,CLHC1,CLIC1,CLIC2,CLIC3,CLIC4,CLIC5,CLIC6,CLINT1,CLIP1,CLIP2,CLIP3,CLIP4,CLK1,CLK2,CLK2P1,CLK3,CLK4,CLMN,CLMP,CLN5,CLN6,CLN8,CLNK,CLNS1A,CLOCK,CLP1,CLPB,CLPP,CLPS,CLPSL2,CLPTM1,CLPTM1L,CLPX,CLRN1,CLRN1-AS1,CLRN3,CLSPN,CLSTN1,CLSTN2,CLSTN3,CLTA,CLTB,CLTC,CLTCL1,CLTRN,CLU,CLUAP1,CLUHP3,CLUL1,CLVS1,CLXN,CLYBL,CMA1,CMAHP,CMAS,CMBL,CMC1,CMC2,CMC4,CMIP,CMKLR1,CMKLR2,CMPK1,CMPK2,CMSS1,CMTM1,CMTM2,CMTM3,CMTM4,CMTM5,CMTM6,CMTM7,CMTM8,CMTR1,CMTR2,CMYA5,CNBD1,CNBD2,CNBP,CNDP1,CNDP2,CNEP1R1,CNFN,CNGA1,CNGA2,CNGA3,CNGB1,CNGB3,CNIH1,CNIH2,CNIH3,CNIH4,CNKSR1,CNKSR2,CNKSR3,CNMD,CNN1,CNN2,CNN3,CNNM1,CNNM2,CNNM3,CNNM4,CNOT1,CNOT10,CNOT11,CNOT2,CNOT3,CNOT4,CNOT6,CNOT6L,CNOT7,CNOT8,CNOT9,CNP,CNPPD1,CNPY2,CNPY3,CNPY4,CNR1,CNR2,CNRIP1,CNST,CNTD1,CNTF,CNTFR,CNTLN,CNTN1,CNTN2,CNTN4,CNTN5,CNTN6,CNTNAP1,CNTNAP2,CNTNAP4,CNTNAP5,CNTRL,CNTROB,COA1,COA3,COA4,COA5,COA7,COA8,COASY,COBL,COBLL1,COCH,COG1,COG2,COG3,COG4,COG5,COG6,COG7,COG8,COIL,COL10A1,COL11A1,COL11A2,COL12A1,COL13A1,COL14A1,COL15A1,COL16A1,COL17A1,COL18A1,COL18A1-AS1,COL19A1,COL1A1,COL1A2,COL20A1,COL21A1,COL22A1,COL23A1,COL24A1,COL25A1,COL26A1,COL27A1,COL2A1,COL3A1,COL4A1,COL4A2,COL4A3,COL4A4,COL4A5,COL4A6,COL5A1,COL5A2,COL5A3,COL6A1,COL6A2,COL6A3,COL6A5,COL7A1,COL8A1,COL8A2,COL9A1,COL9A2,COL9A3,COLCA1,COLEC10,COLEC11,COLEC12,COLGALT1,COLGALT2,COLQ,COMMD1,COMMD10,COMMD2,COMMD3,COMMD4,COMMD5,COMMD6,COMMD8,COMMD9,COMP,COMT,COMTD1,COP1,COPA,COPB1,COPB2,COPE,COPG1,COPG2,COPRS,COPS2,COPS3,COPS4,COPS5,COPS6,COPS7A,COPS7B,COPS8,COPS9,COPZ1,COPZ2,COQ10A,COQ10B,COQ2,COQ3,COQ4,COQ6,COQ7,COQ8A,COQ8B,COQ9,CORIN,CORO1A,CORO1B,CORO1C,CORO2A,CORO2B,CORO6,CORO7,CORT,COTL1,COX10,COX11,COX14,COX15,COX16,COX17,COX18,COX19,COX20,COX3,COX4I1,COX4I2,COX5A,COX5B,COX6A2,COX6B1,COX6B2,COX6C,COX7A1,COX7A2,COX7A2L,COX7B,COX7B2,COX7C,COX8A,COX8C,CP,CPA1,CPA2,CPA3,CPA4,CPA5,CPA6,CPAMD8,CPAP,CPAT1,CPB1,CPB2,CPD,CPE,CPEB1,CPEB2,CPEB3,CPEB4,CPED1,CPLANE1,CPLANE2,CPLX1,CPLX2,CPLX3,CPLX4,CPM,CPN1,CPN2,CPNE1,CPNE2,CPNE3,CPNE4,CPNE5,CPNE6,CPNE7,CPNE8,CPNE9,CPO,CPOX,CPPED1,CPQ,CPS1,CPS1-IT1,CPSF1,CPSF2,CPSF3,CPSF4,CPSF6,CPSF7,CPT1A,CPT1B,CPT1C,CPT2,CPVL,CPXCR1,CPXM1,CPXM2,CPZ,CR1,CR1L,CR2,CRABP1,CRABP2,CRACDL,CRACR2A,CRACR2B,CRADD,CRAMP1,CRAT,CRB1,CRB2,CRB3,CRBN,CRCP,CRCT1,CREB1,CREB3,CREB3L1,CREB3L2,CREB3L3,CREB3L4,CREB5,CREBBP,CREBL2,CREBRF,CREBZF,CREG1,CREG2,CRELD1,CRELD2,CREM,CRH,CRHBP,CRHR1,CRHR2,CRIM1,CRIP1,CRIP2,CRIP3,CRIPT,CRIPTO,CRIPTO3,CRISP1,CRISP2,CRISP3,CRISPLD1,CRISPLD2,CRK,CRKL,CRLF1,CRLF3,CRLS1,CRMA,CRMP1,CRNKL1,CRNN,CROCC,CROCCP2,CROCCP3,CROT,CRP,CRSP8P,CRTAC1,CRTAM,CRTAP,CRTC1,CRTC2,CRTC3,CRX,CRY1,CRY2,CRYAA,CRYAB,CRYBA1,CRYBA2,CRYBA4,CRYBB1,CRYBB2,CRYBB2P1,CRYBB3,CRYBG2,CRYGA,CRYGB,CRYGC,CRYGD,CRYGEP,CRYGN,CRYGS,CRYL1,CRYM,CRYZ,CRYZL1,CS,CSAD,CSAG1,CSAG2,CSAG3,CSDC2,CSDE1,CSE1L,CSF1,CSF1R,CSF2,CSF2RB,CSF3,CSF3R,CSGALNACT1,CSGALNACT2,CSH1,CSH2,CSHL1,CSK,CSKMT,CSMD1,CSMD2,CSMD3,CSN1S1,CSN1S2AP,CSN2,CSN3,CSNK1A1,CSNK1A1L,CSNK1D,CSNK1E,CSNK1G1,CSNK1G2,CSNK1G2-AS1,CSNK1G3,CSNK2A1,CSNK2A2,CSNK2A3,CSNK2B,CSPG4,CSPG5,CSPP1,CSRNP1,CSRNP2,CSRNP3,CSRP1,CSRP2,CSRP3,CST1,CST11,CST12P,CST2,CST3,CST4,CST5,CST6,CST7,CST8,CST9,CST9L,CSTA,CSTB,CSTF1,CSTF2,CSTF2T,CSTF3,CSTL1,CSTPP1,CT45A1,CT45A2,CT45A3,CT45A5,CTAG2,CTAGE1,CTAGE3P,CTAGE7P,CTBP1,CTBP1-DT,CTBP2,CTBS,CTC1,CTCF,CTCFL,CTD,CTDNEP1,CTDP1,CTDSP1,CTDSP2,CTDSPL,CTDSPL2,CTF1,CTH,CTHRC1,CTIF,CTLA4,CTNNA1,CTNNA2,CTNNA3,CTNNAL1,CTNNB1,CTNNBIP1,CTNNBL1,CTNND1,CTNND2,CTNS,CTPS1,CTPS2,CTR9,CTRB1,CTRB2,CTRC,CTRL,CTSA,CTSB,CTSC,CTSD,CTSF,CTSG,CTSH,CTSK,CTSL,CTSLP8,CTSO,CTSS,CTSV,CTSW,CTSZ,CTTN,CTTNBP2,CTTNBP2NL,CTU1,CTXN1,CUBN,CUEDC1,CUEDC2,CUL1,CUL2,CUL3,CUL4A,CUL4B,CUL5,CUL7,CUL9,CUTA,CUTC,CUX1,CUZD1,CWC15,CWC25,CWC27,CWF19L1,CWF19L2,CWH43,CX3CL1,CX3CR1,CXADR,CXADRP2,CXCL1,CXCL10,CXCL11,CXCL12,CXCL13,CXCL14,CXCL16,CXCL17,CXCL2,CXCL3,CXCL5,CXCL6,CXCL8,CXCL9,CXCR1,CXCR2,CXCR2P1,CXCR3,CXCR4,CXCR5,CXCR6,CXXC1,CXXC4,CXXC5,CYB561,CYB561A3,CYB561D1,CYB561D2,CYB5A,CYB5B,CYB5D1,CYB5D2,CYB5R1,CYB5R2,CYB5R3,CYB5R4,CYB5RL,CYBA,CYBB,CYBC1,CYBRD1,CYC1,CYCS,CYCSP52,CYFIP1,CYFIP2,CYGB,CYLC2,CYLD,CYP11A1,CYP11B1,CYP11B2,CYP17A1,CYP19A1,CYP1A1,CYP1A2,CYP1B1,CYP1B1-AS1,CYP20A1,CYP21A1P,CYP21A2,CYP24A1,CYP26A1,CYP26B1,CYP26C1,CYP27A1,CYP27B1,CYP27C1,CYP2A13,CYP2A6,CYP2A7,CYP2A7P1,CYP2B6,CYP2B7P,CYP2C18,CYP2C19,CYP2C8,CYP2C9,CYP2D6,CYP2D7,CYP2E1,CYP2F1,CYP2G1P,CYP2J2,CYP2R1,CYP2S1,CYP2U1,CYP2W1,CYP39A1,CYP3A4,CYP3A43,CYP3A5,CYP3A7,CYP46A1,CYP4A11,CYP4A22,CYP4B1,CYP4F11,CYP4F12,CYP4F2,CYP4F22,CYP4F3,CYP4F8,CYP4V2,CYP4X1,CYP4Z1,CYP4Z2P,CYP51A1,CYP7A1,CYP7B1,CYP8B1,CYREN,CYRIA,CYRIB,CYS1,CYSLTR1,CYSLTR2,CYSTM1,CYTH1,CYTH2,CYTH3,CYTH4,CYTL1,CYTOR,CYYR1,CZIB,D2HGDH,DAAM1,DAAM2,DAB1,DAB2,DAB2IP,DACH1,DACH2,DACOR1,DACT1,DACT2,DACT3,DAD1,DAD1P1,DAG1,DAGLA,DAGLB,DALRD3,DAND5,DAO,DAOA,DAOA-AS1,DAP,DAP3,DAPK1,DAPK2,DAPK3,DAPP1,DARS1,DARS2,DAW1,DAXX,DAZ1,DAZ2,DAZ3,DAZ4,DAZAP1,DAZAP2,DAZL,DBF4,DBF4B,DBH,DBH-AS1,DBI,DBIL5P,DBIL5P2,DBN1,DBNDD1,DBNDD2,DBNL,DBP,DBR1,DBT,DBX2,DCAF1,DCAF10,DCAF11,DCAF12,DCAF12L1,DCAF13,DCAF15,DCAF16,DCAF17,DCAF4,DCAF4L1,DCAF4L2,DCAF5,DCAF6,DCAF7,DCAF8,DCAKD,DCANP1,DCBLD1,DCBLD2,DCC,DCD,DCDC1,DCDC2,DCHS1,DCHS2,DCK,DCLK1,DCLK2,DCLRE1A,DCLRE1B,DCLRE1C,DCN,DCP1A,DCP1B,DCP2,DCPS,DCST1,DCST2,DCSTAMP,DCT,DCTD,DCTN1,DCTN2,DCTN3,DCTN4,DCTN5,DCTN6,DCTPP1,DCUN1D1,DCUN1D2,DCUN1D3,DCUN1D4,DCUN1D5,DCX,DCXR,DDA1,DDAH1,DDAH2,DDB1,DDB2,DDC,DDHD1,DDHD2,DDI1,DDI2,DDIAS,DDIT3,DDIT4,DDIT4L,DDO,DDOST,DDR1,DDR2,DDRGK1,DDT,DDX1,DDX10,DDX17,DDX18,DDX19A,DDX19B,DDX20,DDX21,DDX23,DDX24,DDX25,DDX27,DDX28,DDX31,DDX39A,DDX3X,DDX3Y,DDX4,DDX42,DDX43,DDX46,DDX47,DDX49,DDX5,DDX50,DDX51,DDX52,DDX53,DDX54,DDX55,DDX56,DDX59,DDX6,DDX60,DEAF1,DECR1,DECR2,DEDD,DEDD2,DEF6,DEF8,DEFA4,DEFA5,DEFA6,DEFA8P,DEFB1,DEFB109A,DEFB109B,DEFB117,DEFB118,DEFB119,DEFB121,DEFB123,DEFB125,DEFB126,DEFB127,DEFB128,DEFB129,DEFB132,DEGS1,DEGS2,DEK,DELE1,DELEC1,DELYQ11,DENND10,DENND10P1,DENND11,DENND1A,DENND1B,DENND1C,DENND2B,DENND2C,DENND2D,DENND3,DENND4A,DENND4B,DENND4C,DENND5A,DENND5B,DENND6A,DENR,DEPDC1,DEPDC1B,DEPDC4,DEPDC5,DEPDC7,DEPP1,DEPTOR,DERA,DERL1,DERL2,DERL3,DES,DESI2,DET1,DEUP1,DEXI,DFFA,DFFB,DGAT2,DGAT2L6,DGAT2L7P,DGCR11,DGCR2,DGCR6,DGCR6L,DGCR8,DGKA,DGKB,DGKD,DGKE,DGKG,DGKH,DGKI,DGKQ,DGKZ,DGLUCY,DGUOK,DHCR24,DHCR7,DHCR7-DT,DHDDS,DHDH,DHFR,DHFR2,DHH,DHODH,DHPS,DHRS1,DHRS11,DHRS12,DHRS13,DHRS2,DHRS3,DHRS4,DHRS4L1,DHRS4L2,DHRS7,DHRS7B,DHRS9,DHTKD1,DHX15,DHX16,DHX29,DHX30,DHX32,DHX33,DHX34,DHX35,DHX36,DHX37,DHX38,DHX40,DHX57,DHX58,DHX8,DHX9,DIABLO,DIAPH1,DIAPH2,DIAPH3,DICER1,DIDO1,DIMT1,DIO1,DIO2,DIO3,DIO3OS,DIP2A,DIP2B,DIP2C,DIPK1A,DIPK1B,DIPK2A,DIRAS1,DIRAS2,DIRAS3,DIRC1,DIS3,DIS3L,DIS3L2,DISC1,DISP2,DIXDC1,DKC1,DKK1,DKK2,DKK3,DKK4,DKKL1,DLAT,DLC1,DLD,DLEC1,DLEU1,DLEU2,DLEU2L,DLEU7,DLG1,DLG2,DLG3,DLG4,DLG5,DLGAP1,DLGAP2,DLGAP4,DLGAP5,DLK1,DLK2,DLL1,DLL3,DLL4,DLST,DLX1,DLX2,DLX3,DLX4,DLX5,DLX6,DMAC1,DMAC2,DMAC2L,DMAP1,DMBT1,DMBX1,DMC1,DMD,DMGDH,DMKN,DMP1,DMPK,DMRT1,DMRT2,DMRT3,DMRTA1,DMRTB1,DMRTC1,DMRTC1B,DMRTC2,DMTF1,DMTN,DMWD,DMXL1,DMXL2,DNAAF1,DNAAF10,DNAAF11,DNAAF19,DNAAF2,DNAAF3,DNAAF4,DNAAF8,DNAH1,DNAH10,DNAH10OS,DNAH11,DNAH12,DNAH14,DNAH17,DNAH2,DNAH3,DNAH5,DNAH6,DNAH7,DNAH8,DNAH9,DNAI1,DNAI2,DNAI3,DNAI4,DNAI7,DNAJA1,DNAJA1P5,DNAJA2,DNAJA3,DNAJA4,DNAJB1,DNAJB11,DNAJB12,DNAJB13,DNAJB14,DNAJB2,DNAJB3,DNAJB4,DNAJB5,DNAJB6,DNAJB7,DNAJB8,DNAJB9,DNAJC1,DNAJC10,DNAJC11,DNAJC12,DNAJC13,DNAJC14,DNAJC15,DNAJC16,DNAJC17,DNAJC18,DNAJC19,DNAJC2,DNAJC21,DNAJC22,DNAJC24,DNAJC25,DNAJC27,DNAJC28,DNAJC3,DNAJC30,DNAJC4,DNAJC5,DNAJC5B,DNAJC5G,DNAJC6,DNAJC7,DNAJC8,DNAJC9,DNAL1,DNAL4,DNALI1,DNASE1,DNASE1L1,DNASE1L2,DNASE1L3,DNASE2,DNASE2B,DND1,DNER,DNHD1,DNLZ,DNM1,DNM1L,DNM1P41,DNM1P46,DNM2,DNM3,DNMBP,DNMBP-AS1,DNMT1,DNMT3A,DNMT3B,DNMT3L,DNPEP,DNPH1,DNTT,DNTTIP1,DNTTIP2,DOC2A,DOC2B,DOCK1,DOCK10,DOCK11,DOCK2,DOCK3,DOCK4,DOCK5,DOCK6,DOCK7,DOCK8,DOCK8-AS1,DOCK9,DOHH,DOK1,DOK2,DOK3,DOK4,DOK5,DOK6,DOK7,DOLK,DOLPP1,DONSON,DOP1A,DOP1B,DOT1L,DPAGT1,DPCD,DPEP1,DPEP2,DPEP3,DPF1,DPF2,DPF3,DPH1,DPH2,DPH3,DPH3P1,DPH5,DPH6,DPH7,DPM1,DPM2,DPM3,DPP10,DPP3,DPP4,DPP6,DPP7,DPP8,DPP9,DPPA2,DPPA3,DPPA3P2,DPPA4,DPT,DPY19L2,DPY19L2P1,DPY19L2P2,DPY19L2P4,DPY19L3,DPY19L4,DPY30,DPYD,DPYS,DPYSL2,DPYSL3,DPYSL4,DPYSL5,DQX1,DR1,DRAM1,DRAM2,DRAP1,DRAXIN,DRC1,DRC3,DRC7,DRD1,DRD2,DRD3,DRD4,DRD5,DRG1,DRG2,DRICH1,DROSHA,DRP2,DSC1,DSC2,DSC3,DSCAM,DSCAML1,DSCC1,DSCR10,DSCR4,DSCR8,DSCR9,DSE,DSEL,DSG1,DSG2,DSG3,DSG4,DSN1,DSP,DSPP,DST,DSTN,DSTNP2,DSTYK,DTD1,DTD2,DTL,DTNA,DTNB,DTNBP1,DTWD1,DTWD2,DTX1,DTX2,DTX3,DTX3L,DUOX1,DUOX2,DUOXA1,DUOXA2,DUS1L,DUS2,DUS3L,DUS4L,DUSP1,DUSP10,DUSP11,DUSP12,DUSP13A,DUSP14,DUSP15,DUSP16,DUSP18,DUSP19,DUSP2,DUSP21,DUSP22,DUSP23,DUSP26,DUSP29,DUSP3,DUSP4,DUSP5,DUSP5P1,DUSP6,DUSP7,DUSP8,DUSP9,DUT,DUXA,DUXAP10,DVL1,DVL2,DVL3,DXO,DYDC1,DYDC2,DYM,DYNAP,DYNC1H1,DYNC1I1,DYNC1I2,DYNC1LI1,DYNC1LI2,DYNC2I1,DYNC2I2,DYNC2LI1,DYNLL1,DYNLL2,DYNLRB1,DYNLRB2,DYNLT1,DYNLT2,DYNLT2B,DYNLT3,DYNLT5,DYRK1A,DYRK1B,DYRK2,DYRK3,DYRK4,DYSF,DYTN,DZANK1,DZIP1,DZIP1L,DZIP3,E2F1,E2F2,E2F3,E2F4,E2F5,E2F6,E2F7,E2F8,E4F1,EAF1,EAF2,EAPP,EARS2,EBAG9,EBF1,EBF2,EBF4,EBI3,EBLN2,EBNA1BP2,EBP,EBPL,ECD,ECE1,ECE2,ECEL1,ECEL1P2,ECH1,ECHDC1,ECHDC2,ECHDC3,ECHS1,ECI1,ECI2,ECM1,ECM2,ECPAS,ECRG4,ECSIT,ECT2,EDA,EDA2R,EDAR,EDARADD,EDC3,EDC4,EDDM3A,EDDM3B,EDEM1,EDEM2,EDEM3,EDF1,EDIL3,EDN1,EDN2,EDN3,EDNRA,EDNRB,EDRF1,EEA1,EED,EEF1A1,EEF1A1P9,EEF1A2,EEF1AKMT1,EEF1AKMT2,EEF1AKMT3,EEF1B2,EEF1D,EEF1DP3,EEF1E1,EEF2,EEF2K,EEF2KMT,EEFSEC,EEIG1,EEPD1,EFCAB10,EFCAB11,EFCAB12,EFCAB13,EFCAB2,EFCAB3,EFCAB5,EFCAB6,EFCAB7,EFCC1,EFEMP1,EFEMP2,EFHB,EFHC1,EFHC2,EFHD1,EFHD2,EFL1,EFNA1,EFNA2,EFNA3,EFNA4,EFNA5,EFNB1,EFNB2,EFNB3,EFR3B,EFS,EFTUD2,EGF,EGFL6,EGFL7,EGFL8,EGFLAM,EGFR,EGLN1,EGLN2,EGLN3,EGR1,EGR2,EGR3,EGR4,EHBP1,EHD1,EHD2,EHD3,EHD4,EHF,EHHADH,EHMT1,EHMT2,EI24,EID1,EID2,EID2B,EID3,EIF1,EIF1AD,EIF1AX,EIF1AY,EIF1B,EIF2A,EIF2AK1,EIF2AK2,EIF2AK3,EIF2AK4,EIF2B1,EIF2B2,EIF2B3,EIF2B4,EIF2B5,EIF2S1,EIF2S2,EIF2S3,EIF3A,EIF3B,EIF3D,EIF3E,EIF3G,EIF3H,EIF3I,EIF3J,EIF3K,EIF3L,EIF3M,EIF4A1,EIF4A2,EIF4A3,EIF4B,EIF4E,EIF4E2,EIF4E3,EIF4EBP1,EIF4EBP2,EIF4EBP3,EIF4ENIF1,EIF4G1,EIF4G2,EIF4G3,EIF4H,EIF5,EIF5A,EIF5A2,EIF5B,EIF6,EIPR1,ELAC1,ELAC2,ELANE,ELAPOR1,ELAPOR2,ELAVL1,ELAVL2,ELAVL3,ELAVL4,ELF1,ELF2,ELF3,ELF4,ELF5,ELK1,ELK3,ELK4,ELL,ELL2,ELL3,ELMO1,ELMO2,ELMO3,ELMOD1,ELMOD2,ELMOD3,ELN,ELOA,ELOA2,ELOA3BP,ELOA3CP,ELOB,ELOC,ELOF1,ELOVL1,ELOVL2,ELOVL3,ELOVL4,ELOVL5,ELOVL6,ELP1,ELP2,ELP3,ELP4,ELP5,ELP6,ELSPBP1,EMB,EMBP1,EMC1,EMC10,EMC2,EMC3,EMC4,EMC6,EMC7,EMC8,EMC9,EMCN,EMD,EME1,EMG1,EMID1,EMILIN1,EMILIN2,EMILIN3,EML1,EML2,EML3,EML4,EML5,EMP1,EMP2,EMP3,EMSY,EMX1,EMX2,EN1,EN2,ENAH,ENAM,ENC1,ENDOD1,ENDOG,ENDOU,ENG,ENGASE,ENHO,ENKD1,ENKUR,ENO1,ENO2,ENO3,ENOPH1,ENOSF1,ENOX1,ENOX2,ENPEP,ENPP1,ENPP2,ENPP3,ENPP4,ENPP5,ENPP6,ENPP7,ENSA,ENTHD1,ENTPD1,ENTPD2,ENTPD3,ENTPD4,ENTPD5,ENTPD6,ENTPD7,ENTPD8,ENTR1,ENTREP1,ENTREP3,ENY2,EOGT,EOMES,EP300,EP400,EP400P1,EPAS1,EPB41,EPB41L1,EPB41L2,EPB41L3,EPB41L4A,EPB41L4A-AS1,EPB41L4B,EPB41L5,EPB42,EPC1,EPC2,EPCAM,EPCIP,EPDR1,EPG5,EPGN,EPHA1,EPHA10,EPHA2,EPHA3,EPHA4,EPHA5,EPHA6,EPHA7,EPHA8,EPHB1,EPHB2,EPHB3,EPHB4,EPHB6,EPHX1,EPHX2,EPHX3,EPHX4,EPM2A,EPM2AIP1,EPN1,EPN2,EPN3,EPO,EPOR,EPPIN,EPRS1,EPS15,EPS15L1,EPS8,EPS8L1,EPS8L2,EPS8L3,EPSTI1,EPX,EPYC,EQTN,ERAL1,ERAP1,ERAP2,ERAS,ERBB2,ERBB3,ERBB4,ERBIN,ERC1,ERC2,ERC2-IT1,ERCC1,ERCC2,ERCC3,ERCC4,ERCC5,ERCC6,ERCC6L,ERCC6L2,ERCC6L2-AS1,ERCC8,EREG,ERF,ERG,ERG28,ERGIC1,ERGIC2,ERGIC3,ERH,ERI1,ERI2,ERI3,ERICH1,ERICH3,ERICH5,ERICH6,ERICH6B,ERLEC1,ERLIN1,ERLIN2,ERMAP,ERN1,ERN2,ERO1A,ERO1B,ERP27,ERP29,ERP44,ERRFI1,ERV3-1,ERVFRD-1,ERVK-19,ERVK3-2,ERVV-1,ERVV-2,ERVW-1,ESAM,ESCO1,ESD,ESF1,ESM1,ESPL1,ESPN,ESPNL,ESPNP,ESR1,ESR2,ESRG,ESRP1,ESRP2,ESRRA,ESRRB,ESRRG,ESS2,ESX1,ESYT1,ESYT2,ESYT3,ETAA1,ETF1,ETFA,ETFB,ETFBKMT,ETFDH,ETFRF1,ETHE1,ETNK1,ETNK2,ETNPPL,ETS1,ETS2,ETV1,ETV3,ETV3L,ETV4,ETV5,ETV6,ETV7,EVA1A,EVA1B,EVA1C,EVC,EVC2,EVI2A,EVI2B,EVI5,EVI5L,EVL,EVPL,EVPLL,EVX1,EWSAT1,EWSR1,EXD1,EXD2,EXD3,EXO1,EXO5,EXOC1,EXOC2,EXOC3,EXOC3-AS1,EXOC3L1,EXOC3L2,EXOC4,EXOC5,EXOC6,EXOC7,EXOC8,EXOG,EXOSC1,EXOSC10,EXOSC2,EXOSC3,EXOSC4,EXOSC5,EXOSC6,EXOSC7,EXOSC8,EXOSC9,EXPH5,EXT1,EXT2,EXTL1,EXTL2,EXTL3,EYA1,EYA2,EYA3,EYA4,EYS,EZH1,EZH2,EZR,F10,F11,F11R,F12,F13A1,F13B,F2,F2R,F2RL1,F2RL2,F2RL3,F3,F5,F7,F8,F8A1,F8A2,F8A3,F9,FA2H,FAAH,FAAH2,FAAP100,FAAP20,FAAP24,FABP1,FABP2,FABP3,FABP4,FABP5,FABP6,FABP7,FABP9,FADD,FADS1,FADS2,FADS3,FADS6,FAF1,FAF2,FAH,FAHD1,FAHD2A,FAHD2B,FAIM,FAIM2,FAM106A,FAM106C,FAM107A,FAM107B,FAM110A,FAM110B,FAM110D,FAM111A,FAM111B,FAM114A1,FAM114A2,FAM117A,FAM117B,FAM118A,FAM118B,FAM120A,FAM120AOS,FAM120B,FAM120C,FAM124A,FAM124B,FAM131A,FAM131B,FAM131C,FAM133A,FAM133B,FAM135A,FAM135B,FAM136A,FAM13A,FAM13B,FAM13C,FAM149B1,FAM151A,FAM151B,FAM153A,FAM153B,FAM153CP,FAM156A,FAM156B,FAM161B,FAM162A,FAM163A,FAM167A,FAM167A-AS1,FAM167B,FAM168A,FAM168B,FAM169BP,FAM170A,FAM171A2,FAM171B,FAM174A,FAM174B,FAM174C,FAM177A1,FAM177B,FAM178B,FAM180A,FAM181A,FAM181B,FAM182A,FAM182B,FAM184A,FAM186B,FAM187B,FAM193A,FAM199X,FAM200A,FAM200C,FAM204A,FAM209A,FAM209B,FAM20A,FAM20B,FAM210A,FAM210B,FAM215A,FAM216A,FAM216B,FAM217A,FAM217B,FAM218A,FAM219A,FAM219B,FAM220BP,FAM221A,FAM222A,FAM222B,FAM223A,FAM227B,FAM228A,FAM230C,FAM234A,FAM241A,FAM241B,FAM24B,FAM25A,FAM25C,FAM25G,FAM27E5,FAM30A,FAM32A,FAM3A,FAM3B,FAM3D,FAM43A,FAM43B,FAM47A,FAM47B,FAM47E,FAM50A,FAM50B,FAM53A,FAM53B,FAM53C,FAM72A,FAM72B,FAM72C,FAM72D,FAM74A3,FAM74A4,FAM76A,FAM76B,FAM78A,FAM81A,FAM81B,FAM83A,FAM83C,FAM83D,FAM83E,FAM83F,FAM83G,FAM83H,FAM86C1P,FAM86DP,FAM89A,FAM89B,FAM8A1,FAM90A1,FAM90A10,FAM90A5,FAM90A7,FAM90A8,FAM90A9,FAM91A1,FAM98A,FAM98B,FAM98C,FAM9A,FAM9B,FAM9C,FAN1,FANCA,FANCB,FANCC,FANCD2,FANCD2OS,FANCE,FANCF,FANCG,FANCI,FANCL,FANCM,FANK1,FAP,FAR1,FAR2,FARP1,FARP2,FARS2,FARSA,FARSB,FAS,FAS-AS1,FASLG,FASN,FASTK,FASTKD1,FASTKD2,FASTKD3,FASTKD5,FAT1,FAT2,FAT4,FATE1,FAU,FAXC,FAXDC2,FBF1,FBH1,FBL,FBLIM1,FBLN1,FBLN2,FBLN5,FBLN7,FBN1,FBN2,FBN3,FBP1,FBP2,FBRS,FBRSL1,FBXL12,FBXL13,FBXL14,FBXL16,FBXL17,FBXL18,FBXL19,FBXL19-AS1,FBXL2,FBXL20,FBXL21P,FBXL22,FBXL3,FBXL4,FBXL5,FBXL6,FBXL7,FBXL8,FBXL9P,FBXO10,FBXO11,FBXO15,FBXO16,FBXO17,FBXO2,FBXO21,FBXO22,FBXO24,FBXO25,FBXO27,FBXO28,FBXO3,FBXO30,FBXO31,FBXO32,FBXO33,FBXO34,FBXO36,FBXO39,FBXO4,FBXO40,FBXO42,FBXO44,FBXO46,FBXO5,FBXO6,FBXO7,FBXO8,FBXO9,FBXW10,FBXW10B,FBXW11,FBXW12,FBXW2,FBXW4,FBXW4P1,FBXW5,FBXW7,FBXW8,FBXW9,FCAMR,FCAR,FCER1A,FCER1G,FCER2,FCF1,FCGBP,FCGR1A,FCGR1BP,FCGR2A,FCGR2B,FCGR2C,FCGR3A,FCGR3B,FCGRT,FCHO1,FCHO2,FCHSD1,FCHSD2,FCMR,FCN1,FCN2,FCN3,FCRL1,FCRL2,FCRL3,FCRL4,FCRL5,FCRL6,FCRLA,FCRLB,FCSK,FDCSP,FDFT1,FDPS,FDX1,FDX2,FDXACB1,FDXR,FECH,FEM1A,FEM1B,FEM1C,FEN1,FER,FER1L6-AS1,FER1L6-AS2,FERD3L,FERMT1,FERMT2,FERMT3,FERRY3,FES,FETUB,FEV,FEZ1,FEZ2,FEZF1,FEZF2,FFAR1,FFAR2,FFAR3,FFAR4,FGA,FGB,FGD1,FGD2,FGD3,FGD4,FGD5,FGD6,FGF1,FGF10,FGF11,FGF12,FGF13,FGF14,FGF17,FGF18,FGF19,FGF2,FGF20,FGF21,FGF22,FGF23,FGF3,FGF4,FGF5,FGF6,FGF7,FGF7P3,FGF7P6,FGF8,FGF9,FGFBP1,FGFBP2,FGFBP3,FGFR1,FGFR1OP2,FGFR2,FGFR3,FGFR4,FGFRL1,FGG,FGGY,FGL1,FGL2,FGR,FH,FHDC1,FHIP1B,FHIP2A,FHIP2B,FHIT,FHL1,FHL2,FHL3,FHL5,FHOD1,FIBCD1,FIBIN,FIBP,FICD,FIG4,FIGLA,FIGN,FIGNL1,FILIP1,FILIP1L,FIP1L1,FIRRM,FIS1,FITM1,FITM2,FIZ1,FJX1,FKBP10,FKBP11,FKBP14,FKBP15,FKBP1A,FKBP1B,FKBP2,FKBP3,FKBP4,FKBP5,FKBP6,FKBP7,FKBP8,FKBP9,FKBP9P1,FKBPL,FKRP,FKSG29,FKTN,FLACC1,FLAD1,FLCN,FLI1,FLII,FLJ13224,FLJ20712,FLJ30679,FLJ33534,FLJ37201,FLJ40288,FLJ42393,FLJ43315,FLJ46875,FLNA,FLNB,FLNC,FLOT1,FLOT2,FLRT1,FLRT2,FLRT3,FLT1,FLT3,FLT3LG,FLT4,FLVCR1,FLVCR1-DT,FLVCR2,FLYWCH1,FLYWCH2,FMC1-LUC7L2,FMN2,FMNL1,FMNL2,FMNL3,FMO1,FMO3,FMO4,FMO5,FMO9P,FMOD,FMR1,FMR1NB,FN1,FN3K,FN3KRP,FNBP1,FNBP1L,FNBP4,FNDC11,FNDC3A,FNDC3B,FNDC4,FNDC5,FNDC7,FNDC8,FNDC9,FNIP1,FNTA,FNTB,FOCAD,FOLH1,FOLH1B,FOLR1,FOLR2,FOLR3,FOS,FOSB,FOSL1,FOSL2,FOXA1,FOXA2,FOXA3,FOXB1,FOXC1,FOXC2,FOXD1,FOXD2,FOXD3,FOXD3-AS1,FOXD4,FOXD4L1,FOXD4L3,FOXD4L4,FOXD4L5,FOXD4L6,FOXE1,FOXE3,FOXF1,FOXF2,FOXG1,FOXH1,FOXI1,FOXI2,FOXJ1,FOXJ2,FOXJ3,FOXK2,FOXL1,FOXL2,FOXM1,FOXN1,FOXN2,FOXN3,FOXN3-AS2,FOXN4,FOXO1,FOXO3,FOXO3B,FOXO4,FOXP1,FOXP2,FOXP3,FOXP4,FOXQ1,FOXR1,FOXR2,FOXRED1,FOXRED2,FOXS1,FPGS,FPGT,FPR1,FPR2,FPR3,FRA10AC1,FRAS1,FRAT1,FRAT2,FRAXE,FREM1,FREM2,FRG1,FRK,FRMD1,FRMD3,FRMD4A,FRMD5,FRMD6,FRMD7,FRMD8,FRMPD1,FRMPD2,FRMPD2B,FRS2,FRS3,FRY,FRYL,FRZB,FSAF1,FSCB,FSCN1,FSCN2,FSCN3,FSD1,FSD1L,FSHB,FSHMD1A,FSHR,FSIP1,FSIP2,FST,FSTL3,FSTL4,FSTL5,FTCD,FTH1,FTH1P3,FTH1P5,FTHL17,FTL,FTMT,FTO,FTSJ1,FTSJ3,FUBP1,FUBP3,FUCA1,FUCA2,FUNDC1,FUNDC2,FUNDC2P2,FUOM,FURIN,FUS,FUSE,FUT1,FUT10,FUT11,FUT2,FUT3,FUT4,FUT5,FUT6,FUT7,FUT8,FUT9,FUZ,FXN,FXR1,FXR2,FXYD1,FXYD2,FXYD3,FXYD4,FXYD5,FXYD6,FXYD7,FYB1,FYB2,FYCO1,FYN,FYTTD1,FZD1,FZD10,FZD2,FZD3,FZD4,FZD5,FZD6,FZD7,FZD8,FZD9,FZR1,G0S2,G2E3,G3BP1,G3BP2,G6PC1,G6PC2,G6PC3,G6PD,GAA,GAB1,GAB2,GAB3,GABARAP,GABARAPL1,GABARAPL2,GABARAPL3,GABBR1,GABBR2,GABPA,GABPB1,GABPB2,GABRA1,GABRA2,GABRA3,GABRA4,GABRA5,GABRA6,GABRB1,GABRB2,GABRB3,GABRD,GABRE,GABRG1,GABRG2,GABRG3,GABRP,GABRQ,GABRR1,GABRR2,GAD1,GAD2,GADD45A,GADD45B,GADD45G,GADD45GIP1,GADL1,GAGE1,GAGE12B,GAGE12C,GAGE12D,GAGE12E,GAGE12F,GAGE12G,GAGE12H,GAGE12I,GAGE12J,GAGE13,GAGE2A,GAGE2B,GAGE2C,GAGE2D,GAGE2E,GAGE4,GAGE5,GAGE6,GAGE7,GAGE8,GAK,GAL,GAL3ST1,GAL3ST2,GAL3ST3,GAL3ST4,GALC,GALE,GALK1,GALK2,GALM,GALNS,GALNT1,GALNT10,GALNT11,GALNT12,GALNT13,GALNT14,GALNT15,GALNT17,GALNT18,GALNT2,GALNT3,GALNT4,GALNT5,GALNT6,GALNT7,GALNT8,GALNT9,GALNTL5,GALNTL6,GALP,GALR1,GALR2,GALR3,GALT,GAMT,GAN,GANAB,GANC,GAP43,GAPDHP62,GAPDHS,GAPT,GAPVD1,GAR1,GAREM1,GARIN1B,GARIN2,GARIN3,GARIN4,GARIN5A,GARIN5B,GARIN6,GARNL3,GARRE1,GART,GAS1,GAS2,GAS2L1,GAS2L2,GAS2L3,GAS5,GAS6,GAS7,GAS8,GAS8-AS1,GASK1A,GASK1B,GAST,GATA1,GATA2,GATA3,GATA4,GATA5,GATA6,GATAD1,GATAD2A,GATAD2B,GATB,GATC,GATD1,GATD1-DT,GATD3,GATM,GBA1LP,GBA2,GBA3,GBE1,GBF1,GBGT1,GBP1,GBP2,GBP3,GBP4,GBP5,GBP6,GBP7,GBX2,GC,GCA,GCAT,GCC1,GCC2,GCDH,GCFC2,GCG,GCGR,GCH1,GCHFR,GCK,GCKR,GCLC,GCLM,GCM1,GCM2,GCNA,GCNT1,GCNT2,GCNT2P1,GCNT3,GCNT4,GCOM1,GCSAM,GCSAML,GDA,GDAP1,GDAP1L1,GDAP2,GDE1,GDF1,GDF10,GDF11,GDF15,GDF2,GDF3,GDF5,GDF6,GDF7,GDF9,GDI1,GDI2,GDNF,GDPD1,GDPD2,GDPD3,GDPD4,GDPD5,GEM,GEMIN4,GEMIN5,GEMIN6,GEMIN7,GEMIN8,GEMIN8P4,GEN1,GET1,GET3,GET4,GFAP,GFER,GFI1,GFI1B,GFM1,GFM2,GFOD1,GFOD2,GFOD3P,GFPT1,GFPT2,GFRA1,GFRA2,GFRA3,GFRA4,GFRAL,GFUS,GGA1,GGA2,GGA3,GGACT,GGCT,GGCX,GGH,GGN,GGNBP1,GGNBP2,GGPS1,GGT1,GGT3P,GGT5,GGT6,GGT7,GGT8P,GGTA1,GGTLC1,GGTLC2,GGTLC3,GH1,GH2,GHDC,GHITM,GHR,GHRH,GHRHR,GHRL,GHSR,GID4,GID8,GIGYF1,GIGYF2,GIMAP1,GIMAP2,GIMAP4,GIMAP5,GIMAP6,GIMAP7,GIMAP8,GIN1,GINM1,GINS1,GINS2,GINS3,GINS4,GIP,GIPC1,GIPC2,GIPC3,GIPR,GIT1,GIT2,GJA1,GJA10,GJA3,GJA4,GJA5,GJA9,GJB1,GJB2,GJB3,GJB4,GJB5,GJB6,GJB7,GJC1,GJC2,GJC3,GJD2,GJD3,GJD4,GK,GK2,GK3,GK5,GKAP1,GKN1,GKN2,GLA,GLB1,GLB1L,GLB1L2,GLB1L3,GLCCI1,GLCE,GLDC,GLDN,GLE1,GLG1,GLI1,GLI2,GLI3,GLI4,GLIPR1,GLIPR1L1,GLIPR1L2,GLIPR2,GLIS1,GLIS2,GLIS3,GLIS3-AS1,GLMN,GLMP,GLO1,GLOD4,GLP1R,GLP2R,GLRA1,GLRA2,GLRA3,GLRA4,GLRB,GLRX,GLRX2,GLRX3,GLRX5,GLS,GLS2,GLT1D1,GLT6D1,GLT8D1,GLT8D2,GLTP,GLUD1,GLUD2,GLUL,GLYAT,GLYATL1,GLYATL2,GLYCTK,GLYR1,GM2A,GMCL1,GMCL2,GMDS,GMEB1,GMEB2,GMFB,GMFG,GMIP,GML,GMNN,GMPPA,GMPPB,GMPR,GMPR2,GMPS,GNA11,GNA12,GNA13,GNA14,GNA15,GNAI1,GNAI2,GNAI3,GNAL,GNAO1,GNAQ,GNAS,GNAT1,GNAT2,GNAZ,GNB1,GNB1L,GNB2,GNB3,GNB4,GNB5,GNE,GNG10,GNG11,GNG12,GNG13,GNG2,GNG3,GNG4,GNG5,GNG7,GNG8,GNGT1,GNGT2,GNL1,GNL2,GNL3,GNL3L,GNL3LP1,GNLY,GNMT,GNPAT,GNPDA1,GNPDA2,GNPNAT1,GNPTAB,GNPTG,GNRH1,GNRH2,GNRHR,GNRHR2,GNS,GOLGA1,GOLGA2,GOLGA2P5,GOLGA3,GOLGA4,GOLGA5,GOLGA6L1,GOLGA6L10,GOLGA6L2,GOLGA6L3P,GOLGA6L5P,GOLGA6L6,GOLGA6L9,GOLGA7,GOLGA8A,GOLGA8B,GOLGB1,GOLIM4,GOLM1,GOLM2,GOLPH3,GOLPH3L,GOLT1A,GOLT1B,GON4L,GON7,GOPC,GORAB,GORASP1,GORASP2,GOSR1,GOSR2,GOT1,GOT1L1,GOT2,GP1BA,GP1BB,GP2,GP5,GP6,GP9,GPA33,GPAA1,GPALPP1,GPAM,GPANK1,GPAT2,GPAT3,GPAT4,GPATCH1,GPATCH11,GPATCH2,GPATCH2L,GPATCH3,GPATCH4,GPATCH8,GPBAR1,GPBP1,GPBP1L1,GPC1,GPC2,GPC3,GPC4,GPC5,GPC6,GPCPD1,GPD1,GPD1L,GPD2,GPER1,GPHA2,GPHB5,GPHN,GPI,GPIHBP1,GPKOW,GPLD1,GPM6A,GPM6B,GPN1,GPN2,GPN3,GPNMB,GPR101,GPR107,GPR108,GPR119,GPR12,GPR132,GPR135,GPR137,GPR137B,GPR139,GPR141,GPR142,GPR143,GPR146,GPR148,GPR15,GPR150,GPR151,GPR152,GPR153,GPR155,GPR156,GPR157,GPR158,GPR15LG,GPR160,GPR161,GPR162,GPR17,GPR171,GPR173,GPR174,GPR176,GPR179,GPR18,GPR180,GPR182,GPR183,GPR19,GPR20,GPR21,GPR22,GPR25,GPR26,GPR27,GPR3,GPR31,GPR32,GPR34,GPR35,GPR37,GPR37L1,GPR39,GPR4,GPR45,GPR50,GPR52,GPR55,GPR6,GPR61,GPR62,GPR63,GPR65,GPR68,GPR75,GPR75-ASB3,GPR78,GPR82,GPR83,GPR84,GPR85,GPR87,GPR88,GPRASP1,GPRASP2,GPRC5A,GPRC5B,GPRC5C,GPRC5D,GPRC6A,GPRIN1,GPRIN3,GPS1,GPS2,GPSM1,GPSM2,GPSM3,GPT,GPT2,GPX1,GPX2,GPX3,GPX4,GPX5,GPX6,GPX7,GPX8,GRAMD1A,GRAMD1B,GRAMD1C,GRAMD2B,GRAMD4,GRAP,GRAP2,GRAPL,GRB10,GRB14,GRB2,GREB1,GREB1L,GREM1,GREM2,GRHL1,GRHL2,GRHL3,GRHPR,GRIA1,GRIA2,GRIA3,GRIA4,GRID1,GRID2,GRIK1,GRIK1-AS1,GRIK1-AS2,GRIK2,GRIK3,GRIK4,GRIK5,GRIN1,GRIN2A,GRIN2B,GRIN2C,GRIN2D,GRIN3A,GRINA,GRIP1,GRK2,GRK3,GRK4,GRK5,GRK6,GRK7,GRM1,GRM2,GRM3,GRM4,GRM5,GRM6,GRM7,GRM8,GRN,GRP,GRPEL1,GRPEL2,GRPR,GRSF1,GRTP1,GRWD1,GRXCR2,GSC,GSC2,GSDMB,GSDMC,GSDMD,GSDME,GSE1,GSG1,GSG1L,GSK3A,GSK3B,GSKIP,GSN,GSN-AS1,GSPT1,GSPT2,GSR,GSS,GSTA1,GSTA2,GSTA3,GSTA4,GSTA5,GSTA7P,GSTCD,GSTK1,GSTM1,GSTM2,GSTM3,GSTM4,GSTM5,GSTO1,GSTO2,GSTP1,GSTT1,GSTT4,GSTTP2,GSTZ1,GSX1,GSX2,GTDC1,GTF2A1,GTF2A1L,GTF2A2,GTF2B,GTF2E1,GTF2E2,GTF2F1,GTF2F2,GTF2H1,GTF2H3,GTF2H4,GTF2H5,GTF2I,GTF2IP1,GTF2IRD1,GTF2IRD2,GTF2IRD2B,GTF3A,GTF3C1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C6,GTPBP1,GTPBP10,GTPBP2,GTPBP3,GTPBP4,GTPBP8,GTSCR1,GTSE1,GTSF1,GTSF1L,GUCA1A,GUCA1B,GUCA1C,GUCA2A,GUCA2B,GUCD1,GUCY1A1,GUCY1A2,GUCY1B1,GUCY1B2,GUCY2C,GUCY2D,GUCY2EP,GUCY2F,GUF1,GUK1,GULP1,GUSB,GUSBP1,GUSBP4,GXYLT1,GXYLT2,GYG1,GYG2,GYPA,GYPB,GYPC,GYPE,GYS1,GYS2,GZF1,GZMA,GZMB,GZMH,GZMK,GZMM,H1-0,H1-1,H1-10,H1-2,H1-3,H1-4,H1-5,H1-6,H1-7,H1-8,H1-9P,H2AB1,H2AB2,H2AB3,H2AC1,H2AC11,H2AC12,H2AC13,H2AC14,H2AC15,H2AC16,H2AC17,H2AC20,H2AC21,H2AC25,H2AC4,H2AC6,H2AC7,H2AC8,H2AJ,H2AX,H2AZ1,H2AZ2,H2BC1,H2BC10,H2BC11,H2BC12,H2BC12L,H2BC14,H2BC15,H2BC17,H2BC18,H2BC21,H2BC26,H2BC3,H2BC4,H2BC5,H2BC6,H2BC7,H2BC8,H2BC9,H2BP1,H2BW1,H2BW2,H2BW4P,H3-3B,H3-4,H3-5,H3C1,H3C10,H3C11,H3C12,H3C13,H3C14,H3C2,H3C3,H3C4,H3C6,H3C7,H3C8,H3P20,H4C1,H4C13,H4C16,H4C2,H4C3,H4C4,H4C5,H4C6,H4C7,H4C8,H4C9,H6PD,HAAO,HABP2,HABP4,HACD1,HACD2,HACD3,HACD4,HACE1,HACL1,HADH,HADHA,HADHB,HAGH,HAGHL,HAL,HAMP,HAND1,HAND2,HAND2-AS1,HAO1,HAO2,HAP1,HAPLN1,HAPLN2,HAPLN3,HAPLN4,HAPSTR1,HARBI1,HARS1,HARS2,HAS1,HAS2,HAS3,HASPIN,HAT1,HAUS1,HAUS2,HAUS3,HAUS4,HAUS5,HAUS6,HAUS7,HAUS8,HAVCR1,HAVCR2,HAX1,HBB,HBD,HBE1,HBEGF,HBG2,HBM,HBP1,HBQ1,HBS1L,HBZ,HCAR1,HCAR2,HCAR3,HCCS,HCFC1,HCFC1R1,HCFC2,HCG11,HCG27,HCG4,HCG9,HCK,HCLS1,HCN1,HCN2,HCN3,HCN4,HCP5,HCRT,HCRTR1,HCRTR2,HCST,HDAC1,HDAC10,HDAC11,HDAC2,HDAC3,HDAC4,HDAC5,HDAC6,HDAC7,HDAC8,HDAC9,HDC,HDDC2,HDDC3,HDGF,HDGFL1,HDGFL2,HDGFL3,HDHD2,HDHD3,HDHD5,HDLBP,HDX,HEATR1,HEATR3,HEATR4,HEATR5A,HEATR6,HEATR9,HEBP1,HEBP2,HECA,HECTD1,HECTD2,HECTD3,HECTD4,HECW1,HEG1,HELB,HELLS,HELQ,HELZ,HELZ2,HEMGN,HEMK1,HENMT1,HEPACAM,HEPACAM2,HEPH,HEPN1,HERC1,HERC2,HERC2P2,HERC2P3,HERC2P9,HERC3,HERC4,HERC5,HERC6,HERPUD1,HERPUD2,HES1,HES2,HES4,HES6,HES7,HESX1,HEXA,HEXA-AS1,HEXB,HEXD,HEXIM1,HEXIM2,HEY1,HEY2,HEYL,HFE,HFM1,HGF,HGFAC,HGS,HGSNAT,HHAT,HHATL,HHEX,HHIP,HHIPL1,HHIPL2,HHLA1,HHLA2,HIBADH,HIBCH,HIC1,HIC2,HID1,HIF1A,HIF1AN,HIF3A,HIGD1A,HIGD1AP1,HIGD1B,HIGD2A,HIKESHI,HILPDA,HINFP,HINT1,HINT2,HINT3,HIP1,HIP1R,HIPK1,HIPK2,HIPK3,HIPK4,HIRA,HIRIP3,HIVEP1,HIVEP2,HIVEP3,HJURP,HJV,HK1,HK2,HK3,HKDC1,HLA-B,HLA-C,HLA-DMA,HLA-DMB,HLA-DOA,HLA-DOB,HLA-DPA1,HLA-DPB1,HLA-DPB2,HLA-DQA2,HLA-DQB2,HLA-DRA,HLA-DRB1,HLA-DRB3,HLA-DRB4,HLA-DRB5,HLA-DRB6,HLA-E,HLA-F,HLA-L,HLCS,HLF,HLTF,HLX,HM13,HMBOX1,HMBS,HMCES,HMCN1,HMG20A,HMG20B,HMGA1,HMGA2,HMGB2,HMGB3,HMGB4,HMGCL,HMGCLL1,HMGCR,HMGCS1,HMGCS2,HMGN1,HMGN2,HMGN2P46,HMGN3,HMGN4,HMGN5,HMGXB3,HMGXB4,HMHB1,HMMR,HMOX1,HMOX2,HMX1,HMX3,HNF1A,HNF1A-AS1,HNF1B,HNF4A,HNF4G,HNMT,HNRNPA0,HNRNPA1,HNRNPA1L2,HNRNPA1P10,HNRNPA1P27,HNRNPA1P6,HNRNPA2B1,HNRNPAB,HNRNPD,HNRNPDL,HNRNPF,HNRNPH1,HNRNPH2,HNRNPH3,HNRNPK,HNRNPL,HNRNPLL,HNRNPM,HNRNPR,HNRNPU,HNRNPUL1,HNRNPUL2,HOATZ,HOGA1,HOMER1,HOMER2,HOMER3,HOMEZ,HOOK1,HOOK2,HOOK3,HOPX,HORMAD1,HORMAD2,HOXA1,HOXA10,HOXA11,HOXA13,HOXA2,HOXA3,HOXA4,HOXA5,HOXA6,HOXA7,HOXA9,HOXB1,HOXB13,HOXB2,HOXB3,HOXB4,HOXB5,HOXB6,HOXB7,HOXB8,HOXB9,HOXC10,HOXC11,HOXC12,HOXC13,HOXC4,HOXC5,HOXC6,HOXC8,HOXC9,HOXD1,HOXD10,HOXD11,HOXD12,HOXD13,HOXD3,HOXD4,HOXD8,HOXD9,HP,HP1BP3,HPCA,HPCAL1,HPCAL4,HPD,HPDL,HPF1,HPGD,HPGDS,HPN,HPR,HPRT1,HPS1,HPS3,HPS4,HPS5,HPS6,HPSE,HPSE2,HPX,HR,HRAS,HRC,HRCT1,HRG,HRH1,HRH2,HRH3,HRH4,HRK,HROB,HS1BP3,HS2ST1,HS3ST1,HS3ST2,HS3ST3A1,HS3ST3B1,HS3ST4,HS3ST5,HS6ST2,HS6ST3,HSBP1,HSCB,HSD11B1,HSD11B1L,HSD11B2,HSD17B1,HSD17B10,HSD17B11,HSD17B12,HSD17B13,HSD17B14,HSD17B2,HSD17B3,HSD17B4,HSD17B6,HSD17B7,HSD17B7P2,HSD17B8,HSD3B1,HSD3B2,HSD3B7,HSD3BP4,HSDL1,HSDL2,HSF1,HSF2,HSF2BP,HSF4,HSH2D,HSP90AA1,HSP90AB1,HSP90AB3P,HSP90AB4P,HSP90B1,HSP90B2P,HSP90B3P,HSPA12A,HSPA12B,HSPA13,HSPA14,HSPA1A,HSPA1B,HSPA1L,HSPA2,HSPA4,HSPA4L,HSPA5,HSPA6,HSPA7,HSPA8,HSPA9,HSPB1,HSPB2,HSPB2-C11orf52,HSPB3,HSPB6,HSPB7,HSPB8,HSPB9,HSPBAP1,HSPBP1,HSPD1,HSPE1,HSPG2,HSPH1,HTATIP2,HTATSF1,HTN1,HTN3,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,HTR2A,HTR2B,HTR2C,HTR3A,HTR3B,HTR3C,HTR3D,HTR3E,HTR4,HTR5A,HTR6,HTR7,HTRA1,HTRA2,HTRA3,HTRA4,HTT,HUNK,HUS1,HUS1B,HUWE1,HVCN1,HYAL1,HYAL2,HYAL3,HYAL4,HYCC1,HYCC2,HYDIN,HYI,HYLS1,HYMAI,HYOU1,IAH1,IAPP,IARS1,IARS2,IBSP,IBTK,ICA1,ICA1L,ICAM1,ICAM2,ICAM3,ICAM4,ICAM5,ICE2,ICMT,ICMT-DT,ICOS,ICOSLG,ID1,ID2,ID2B,ID3,ID4,IDE,IDH1,IDH2,IDH3A,IDH3B,IDH3G,IDI1,IDI2,IDI2-AS1,IDNK,IDO1,IDO2,IDS,IDUA,IER2,IER3,IER3IP1,IER5,IER5L,IFFO1,IFI16,IFI27,IFI27L1,IFI27L2,IFI30,IFI35,IFI44,IFI44L,IFI6,IFIH1,IFIT1,IFIT2,IFIT3,IFIT5,IFITM1,IFITM2,IFITM3,IFITM4P,IFNA1,IFNA10,IFNA13,IFNA14,IFNA16,IFNA17,IFNA2,IFNA21,IFNA4,IFNA5,IFNA6,IFNA7,IFNA8,IFNAR1,IFNAR2,IFNB1,IFNE,IFNG,IFNGR1,IFNGR2,IFNK,IFNL1,IFNL2,IFNL3,IFNLR1,IFNW1,IFRD1,IFRD2,IFT122,IFT140,IFT172,IFT20,IFT22,IFT25,IFT27,IFT43,IFT46,IFT52,IFT56,IFT57,IFT70A,IFT70B,IFT74,IFT80,IFT81,IFT88,IFTAP,IGBP1,IGDCC3,IGDCC4,IGF1,IGF1R,IGF2,IGF2-AS,IGF2BP1,IGF2BP2,IGF2BP3,IGF2R,IGFALS,IGFBP1,IGFBP2,IGFBP3,IGFBP4,IGFBP5,IGFBP6,IGFBP7,IGFL1,IGFL2,IGFL3,IGFL4,IGFLR1,IGFN1,IGHA1,IGHA2,IGHD,IGHD2-15,IGHE,IGHG1,IGHG2,IGHG3,IGHG4,IGHM,IGHMBP2,IGHV2-70,IGHV3-23,IGHV3-48,IGHV4-31,IGHV4-59,IGHV5-78,IGHV7-81,IGIP,IGK,IGKC,IGKJ1,IGKJ2,IGKJ3,IGKJ4,IGKV1-12,IGKV1-13,IGKV1-5,IGKV1-8,IGKV1D-17,IGKV1D-22,IGKV1D-37,IGKV1D-42,IGKV1D-43,IGKV1D-8,IGKV2-40,IGKV2D-10,IGKV2D-14,IGKV2D-18,IGKV2D-19,IGKV2D-23,IGKV2D-24,IGKV2D-26,IGKV2D-28,IGKV2D-30,IGKV2D-38,IGKV2D-40,IGKV3-31,IGKV3-7,IGKV3D-11,IGKV3D-15,IGKV3D-20,IGKV3D-25,IGKV4-1,IGKV5-2,IGKV6D-21,IGKV6D-41,IGLC1,IGLC7,IGLL1,IGLL3P,IGLL5,IGLV1-36,IGLV1-40,IGLV1-44,IGLV10-54,IGLV2-11,IGLV2-18,IGLV2-23,IGLV3-12,IGLV3-16,IGLV3-19,IGLV3-22,IGLV3-25,IGLV3-27,IGLV4-3,IGLV4-60,IGLV4-69,IGLV5-37,IGLV5-45,IGLV6-57,IGLV7-43,IGLV7-46,IGLV8-61,IGSF1,IGSF10,IGSF11,IGSF21,IGSF22,IGSF3,IGSF6,IGSF8,IGSF9,IGSF9B,IH,IHH,IHO1,IK,IKBIP,IKBKB,IKBKE,IKBKG,IKZF1,IKZF2,IKZF3,IKZF4,IKZF5,IL10,IL10RA,IL10RB,IL11,IL11RA,IL12A,IL12B,IL12RB1,IL12RB2,IL13,IL13RA1,IL13RA2,IL15,IL15RA,IL16,IL17A,IL17B,IL17C,IL17D,IL17F,IL17RA,IL17RB,IL17RC,IL17RD,IL17RE,IL17REL,IL18,IL18BP,IL18R1,IL18RAP,IL19,IL1A,IL1B,IL1F10,IL1R1,IL1R2,IL1RAP,IL1RAPL1,IL1RAPL2,IL1RL1,IL1RL2,IL1RN,IL2,IL20,IL20RA,IL20RB,IL21,IL21R,IL22,IL22RA1,IL22RA2,IL23A,IL23R,IL24,IL25,IL26,IL27RA,IL2RA,IL2RB,IL2RG,IL3,IL31,IL31RA,IL32,IL34,IL36A,IL36B,IL36G,IL36RN,IL37,IL4,IL4I1,IL4R,IL5,IL5RA,IL6,IL6R,IL6ST,IL7,IL7R,IL9,ILDR1,ILDR2,ILF2,ILF3,ILK,ILKAP,ILRUN,ILVBL,IMMP1L,IMMP2L,IMMT,IMP3,IMP4,IMPA1,IMPA2,IMPACT,IMPDH1,IMPDH2,IMPG1,IMPG2,INA,INAFM1,INAVA,INCA1,INCENP,INE1,INF2,ING1,ING2,ING3,ING4,ING5,INGX,INHA,INHBA,INHBB,INHBC,INHBE,INIP,INKA1,INKA2,INMT,INO80,INO80B,INO80C,INO80D,INO80E,INPP1,INPP4A,INPP4B,INPP5A,INPP5B,INPP5D,INPP5E,INPP5F,INPP5J,INPP5K,INPPL1,INS,INS-IGF2,INSIG1,INSIG2,INSL3,INSL4,INSL5,INSL6,INSM1,INSM2,INSR,INSRR,INTS1,INTS10,INTS11,INTS12,INTS13,INTS14,INTS15,INTS2,INTS3,INTS4,INTS4P1,INTS4P2,INTS5,INTS6,INTS6L,INTS7,INTS8,INTS9,INTU,INVS,IP6K1,IP6K2,IP6K3,IPCEF1,IPMK,IPO11,IPO13,IPO4,IPO5,IPO7,IPO8,IPO9,IPPK,IPW,IQCA1,IQCB1,IQCC,IQCD,IQCE,IQCF1,IQCF2,IQCG,IQCH,IQCJ,IQCK,IQCN,IQGAP1,IQGAP2,IQGAP3,IQSEC1,IQSEC3,IQUB,IRAG1,IRAG2,IRAK1,IRAK2,IRAK3,IRAK4,IREB2,IRF1,IRF2,IRF2BP1,IRF2BP2,IRF2BPL,IRF3,IRF4,IRF5,IRF6,IRF7,IRF8,IRF9,IRGC,IRGQ,IRS1,IRS2,IRS4,IRX1,IRX2,IRX2-DT,IRX3,IRX4,IRX5,IRX6,ISCA1,ISCA2,ISCU,ISG15,ISG20,ISG20L2,ISL1,ISL2,ISLR,ISLR2,ISM2,ISOC1,ISOC2,ISY1,ISYNA1,ITCH,ITFG1,ITFG2,ITGA1,ITGA10,ITGA11,ITGA2,ITGA2B,ITGA3,ITGA4,ITGA5,ITGA6,ITGA7,ITGA8,ITGA9,ITGAE,ITGAL,ITGAM,ITGAV,ITGAX,ITGB1,ITGB1BP1,ITGB1BP2,ITGB2,ITGB3,ITGB3BP,ITGB4,ITGB5,ITGB6,ITGB7,ITGB8,ITGBL1,ITIH1,ITIH2,ITIH3,ITIH4,ITIH5,ITIH6,ITK,ITLN1,ITLN2,ITM2A,ITM2B,ITM2C,ITPA,ITPK1,ITPKA,ITPKB,ITPKC,ITPR1,ITPR2,ITPR3,ITPRID1,ITPRID2,ITPRIP,ITPRIPL1,ITSN1,ITSN2,IVD,IVL,IVNS1ABP,IWS1,IYD,IZUMO1,IZUMO2,IZUMO4,JADE1,JADE2,JADE3,JAG1,JAG2,JAGN1,JAK1,JAK2,JAK3,JAKMIP1,JAKMIP2,JAKMIP3,JAM2,JAM3,JAML,JARID2,JAZF1,JCHAIN,JDP2,JHY,JKAMP,JMJD1C,JMJD4,JMJD6,JMJD7,JMJD8,JMY,JOSD1,JOSD2,JPH1,JPH2,JPH3,JPH4,JPT2,JPX,JRK,JRKL,JSRP1,JTB,JUN,JUNB,JUND,JUP,KAAG1,KALRN,KANK1,KANK2,KANK3,KANK4,KANSL1,KANSL1L,KANSL2,KANSL3,KARS1,KASH5,KAT2A,KAT2B,KAT5,KAT6A,KAT6B,KAT7,KAT8,KATNA1,KATNAL1,KATNAL2,KATNB1,KAZALD1,KAZN,KBTBD11,KBTBD12,KBTBD2,KBTBD3,KBTBD4,KBTBD6,KBTBD7,KBTBD8,KCMF1,KCNA1,KCNA10,KCNA2,KCNA3,KCNA4,KCNA5,KCNA6,KCNA7,KCNAB1,KCNAB2,KCNAB3,KCNB1,KCNB2,KCNC1,KCNC2,KCNC3,KCNC4,KCND1,KCND2,KCND3,KCNE1,KCNE2,KCNE3,KCNE4,KCNE5,KCNF1,KCNG1,KCNG2,KCNG3,KCNG4,KCNH1,KCNH2,KCNH3,KCNH4,KCNH5,KCNH6,KCNH7,KCNH8,KCNIP1,KCNIP2,KCNIP3,KCNIP4,KCNIP4-IT1,KCNJ1,KCNJ10,KCNJ11,KCNJ12,KCNJ13,KCNJ14,KCNJ15,KCNJ16,KCNJ18,KCNJ2,KCNJ3,KCNJ4,KCNJ5,KCNJ5-AS1,KCNJ6,KCNJ8,KCNJ9,KCNK1,KCNK10,KCNK12,KCNK13,KCNK15,KCNK16,KCNK17,KCNK18,KCNK2,KCNK3,KCNK4,KCNK5,KCNK6,KCNK7,KCNK9,KCNMA1,KCNMB1,KCNMB2,KCNMB4,KCNN1,KCNN2,KCNN3,KCNN4,KCNQ1,KCNQ1DN,KCNQ2,KCNQ3,KCNQ4,KCNQ5,KCNRG,KCNS1,KCNS2,KCNS3,KCNT2,KCNU1,KCNV1,KCNV2,KCP,KCTD1,KCTD10,KCTD11,KCTD12,KCTD13,KCTD14,KCTD15,KCTD17,KCTD18,KCTD2,KCTD20,KCTD21,KCTD3,KCTD4,KCTD5,KCTD6,KCTD7,KCTD8,KCTD9,KDELR1,KDELR2,KDELR3,KDF1,KDM1A,KDM2A,KDM2B,KDM3A,KDM3B,KDM4A,KDM4B,KDM4C,KDM4D,KDM5A,KDM5B,KDM5C,KDM5D,KDM6A,KDM6B,KDM8,KDR,KDSR,KEAP1,KEL,KERA,KGD4,KHDC1,KHDC1L,KHDC4,KHDRBS1,KHDRBS2,KHDRBS3,KHK,KHNYN,KHSRP,KIAA0040,KIAA0087,KIAA0232,KIAA0319,KIAA0319L,KIAA0408,KIAA0513,KIAA0586,KIAA0753,KIAA0825,KIAA0930,KIAA1191,KIAA1217,KIAA1328,KIAA1549,KIAA1549L,KIAA1586,KIAA1614,KICS2,KIDINS220,KIF11,KIF12,KIF13A,KIF13B,KIF14,KIF15,KIF16B,KIF17,KIF18A,KIF19,KIF1A,KIF1B,KIF1C,KIF20A,KIF20B,KIF21A,KIF21B,KIF22,KIF23,KIF24,KIF25,KIF25-AS1,KIF26A,KIF26B,KIF27,KIF2A,KIF2B,KIF2C,KIF3A,KIF3B,KIF3C,KIF4A,KIF4B,KIF5A,KIF5B,KIF5C,KIF6,KIF7,KIF9,KIFAP3,KIFBP,KIFC2,KIFC3,KIN,KIR2DL1,KIR2DL2,KIR2DL3,KIR2DL4,KIR2DL5A,KIR2DL5B,KIR2DS1,KIR2DS2,KIR2DS3,KIR2DS4,KIR2DS5,KIR3DL1,KIR3DL2,KIR3DP1,KIR3DS1,KIR3DX1,KIRREL1,KIRREL2,KIRREL3,KIRREL3-AS3,KISS1,KISS1R,KIT,KITLG,KIZ,KL,KLB,KLC1,KLC2,KLC3,KLC4,KLF1,KLF10,KLF11,KLF12,KLF13,KLF14,KLF15,KLF16,KLF17,KLF2,KLF3,KLF4,KLF5,KLF6,KLF7,KLF8,KLF9,KLHDC1,KLHDC10,KLHDC2,KLHDC3,KLHDC4,KLHDC7A,KLHDC7B,KLHDC8A,KLHDC8B,KLHDC9,KLHL1,KLHL10,KLHL11,KLHL12,KLHL13,KLHL14,KLHL17,KLHL18,KLHL2,KLHL20,KLHL21,KLHL22,KLHL23,KLHL24,KLHL25,KLHL26,KLHL28,KLHL29,KLHL3,KLHL30,KLHL30-AS1,KLHL31,KLHL32,KLHL34,KLHL35,KLHL36,KLHL4,KLHL40,KLHL41,KLHL42,KLHL5,KLHL6,KLHL7,KLHL8,KLHL9,KLK1,KLK10,KLK11,KLK12,KLK13,KLK14,KLK15,KLK2,KLK3,KLK4,KLK5,KLK6,KLK7,KLK8,KLK9,KLKB1,KLKP1,KLRA1P,KLRB1,KLRC1,KLRC2,KLRC3,KLRC4,KLRD1,KLRF1,KLRG1,KLRG2,KLRK1,KMO,KMT2A,KMT2B,KMT2C,KMT2E,KMT5A,KMT5B,KMT5C,KNCN,KNDC1,KNG1,KNL1,KNTC1,KPNA1,KPNA2,KPNA3,KPNA4,KPNA5,KPNA6,KPNB1,KPTN,KRAS,KRBA1,KRBA2,KRBOX4,KRBOX5,KRCC1,KREMEN1,KREMEN2,KRI1,KRIT1,KRR1,KRT1,KRT10,KRT10-AS1,KRT12,KRT13,KRT14,KRT15,KRT16,KRT16P2,KRT16P3,KRT17,KRT18,KRT19,KRT2,KRT20,KRT222,KRT23,KRT24,KRT25,KRT26,KRT27,KRT28,KRT3,KRT31,KRT32,KRT33A,KRT33B,KRT34,KRT35,KRT36,KRT37,KRT38,KRT39,KRT4,KRT40,KRT5,KRT6A,KRT6B,KRT6C,KRT7,KRT71,KRT72,KRT73,KRT74,KRT75,KRT76,KRT77,KRT78,KRT79,KRT8,KRT80,KRT81,KRT82,KRT83,KRT84,KRT85,KRT86,KRT9,KRTAP1-1,KRTAP1-3,KRTAP1-5,KRTAP10-1,KRTAP10-10,KRTAP10-11,KRTAP10-12,KRTAP10-2,KRTAP10-4,KRTAP10-5,KRTAP10-6,KRTAP10-7,KRTAP10-8,KRTAP10-9,KRTAP11-1,KRTAP12-1,KRTAP12-2,KRTAP12-3,KRTAP12-4,KRTAP13-1,KRTAP13-2,KRTAP13-3,KRTAP13-4,KRTAP15-1,KRTAP16-1,KRTAP17-1,KRTAP19-1,KRTAP19-2,KRTAP19-3,KRTAP19-4,KRTAP19-5,KRTAP19-6,KRTAP19-7,KRTAP2-1,KRTAP2-2,KRTAP2-4,KRTAP20-1,KRTAP20-2,KRTAP20-4,KRTAP21-1,KRTAP21-2,KRTAP23-1,KRTAP26-1,KRTAP27-1,KRTAP3-1,KRTAP3-2,KRTAP3-3,KRTAP4-1,KRTAP4-11,KRTAP4-12,KRTAP4-2,KRTAP4-3,KRTAP4-4,KRTAP4-5,KRTAP4-6,KRTAP4-7,KRTAP4-8,KRTAP4-9,KRTAP5-1,KRTAP5-11,KRTAP5-2,KRTAP5-3,KRTAP5-4,KRTAP5-5,KRTAP5-6,KRTAP5-7,KRTAP5-8,KRTAP5-9,KRTAP6-1,KRTAP6-2,KRTAP6-3,KRTAP7-1,KRTAP8-1,KRTAP9-1,KRTAP9-2,KRTAP9-3,KRTAP9-4,KRTAP9-6,KRTAP9-8,KRTAP9-9,KRTCAP2,KRTCAP3,KRTDAP,KSR2,KTI12,KTN1,KXD1,KY,KYAT1,KYAT3,KYNU,L1CAM,L1CAM-AS1,L1TD1,L2HGDH,L3HYPDH,L3MBTL1,L3MBTL2,L3MBTL3,L3MBTL4,LACC1,LACRT,LACTB,LACTB2,LAD1,LAG3,LAGE3,LAIR1,LAIR2,LALBA,LAMA1,LAMA2,LAMA3,LAMA4,LAMA5,LAMB1,LAMB2,LAMB3,LAMB4,LAMC1,LAMC2,LAMC3,LAMP1,LAMP2,LAMP3,LAMP5,LAMTOR1,LAMTOR2,LAMTOR3,LAMTOR5,LANCL1,LANCL2,LANCL3,LAP3,LAPTM4A,LAPTM4B,LAPTM5,LARGE1,LARGE2,LARP1,LARP1B,LARP4,LARP4B,LARP6,LARP7,LARS1,LARS2,LAS1L,LASP1,LAT,LAT2,LATS1,LATS2,LAX1,LAYN,LBH,LBP,LBR,LBX1,LBX2,LCA5,LCA5L,LCAT,LCE1A,LCE1B,LCE1C,LCE1D,LCE1E,LCE1F,LCE2A,LCE2B,LCE2C,LCE2D,LCE3A,LCE3B,LCE3C,LCE3D,LCE3E,LCE4A,LCE5A,LCK,LCLAT1,LCMT1,LCMT2,LCN1,LCN10,LCN12,LCN15,LCN2,LCN6,LCN8,LCN9,LCNL1,LCOR,LCORL,LCP1,LCP2,LCT,LCTL,LDAF1,LDAH,LDB1,LDB2,LDB3,LDHA,LDHAL6A,LDHAL6B,LDHB,LDHC,LDHD,LDLR,LDLRAD2,LDLRAD3,LDLRAD4,LDLRAP1,LDOC1,LEAP2,LECT2,LEF1,LEFTY1,LEFTY2,LEKR1,LEMD1,LEMD3,LENEP,LENG1,LENG8,LENG9,LEO1,LEP,LEPR,LEPROT,LEPROTL1,LETM1,LETM2,LETMD1,LFNG,LGALS1,LGALS12,LGALS13,LGALS14,LGALS16,LGALS17A,LGALS2,LGALS3,LGALS3BP,LGALS4,LGALS8,LGALSL,LGI1,LGI2,LGI3,LGI4,LGMN,LGR4,LGR5,LGR6,LGSN,LGTN,LHB,LHCGR,LHFPL1,LHFPL2,LHFPL3,LHFPL4,LHFPL5,LHFPL6,LHFPL7,LHPP,LHX1,LHX2,LHX3,LHX4,LHX5,LHX6,LHX8,LHX9,LIAS,LIAT1,LIF,LIFR,LIG1,LIG3,LIG4,LILRA1,LILRA2,LILRA3,LILRA4,LILRA5,LILRA6,LILRB1,LILRB2,LILRB3,LILRB4,LILRB5,LILRP2,LIM2,LIMA1,LIMCH1,LIMD1,LIMD2,LIME1,LIMK1,LIMK2,LIMS1,LIMS2,LIMS3,LIN28A,LIN28B,LIN37,LIN54,LIN7A,LIN7B,LIN7C,LIN9,LINC00029,LINC00051,LINC00052,LINC00114,LINC00115,LINC00158,LINC00161,LINC00173,LINC00174,LINC00189,LINC00200,LINC00205,LINC00208,LINC00242,LINC00243,LINC00260,LINC00265,LINC00269,LINC00299,LINC00301,LINC00303,LINC00304,LINC00305,LINC00308,LINC00310,LINC00311,LINC00312,LINC00313,LINC00314,LINC00315,LINC00319,LINC00324,LINC00334,LINC00336,LINC00339,LINC00467,LINC00469,LINC00471,LINC00472,LINC00473,LINC00474,LINC00477,LINC00479,LINC00482,LINC00518,LINC00526,LINC00528,LINC00574,LINC00575,LINC00588,LINC00593,LINC00597,LINC00612,LINC00615,LINC00652,LINC00852,LINC00869,LINC01121,LINC01465,LINC01547,LINC01551,LINC01554,LINC01555,LINC01559,LINC01565,LINC01587,LINC01590,LINC01600,LINC01602,LINC02210,LINC02605,LINC02694,LINC02870,LINC02872,LINC02873,LINC02875,LINC02897,LINC02899,LINC02905,LINC02907,LINC02908,LINC02914,LINC02915,LINC02961,LINC03040,LINC03042,LINGO1,LINGO2,LINGO4,LINS1,LIPA,LIPC,LIPE,LIPF,LIPG,LIPH,LIPI,LIPT1,LITAF,LIX1,LIX1L,LKAAEAR1,LLCFC1,LLGL1,LLGL2,LLPH,LMAN1,LMAN1L,LMAN2,LMAN2L,LMBR1,LMBR1L,LMBRD1,LMCD1,LMF1,LMF2,LMLN,LMNA,LMNB1,LMNB2,LMNTD1,LMNTD2,LMO1,LMO2,LMO3,LMO4,LMO7,LMOD1,LMOD3,LMTK2,LMX1A,LMX1B,LNP1,LNPEP,LNPK,LNX1,LNX2,LOC100288966,LOC102724197,LOC102724428,LOC107228383,LOC108281177,LONP1,LONP2,LONRF1,LONRF2,LONRF3,LOX,LOXHD1,LOXL1,LOXL2,LOXL3,LOXL4,LPA,LPAL2,LPAR1,LPAR2,LPAR3,LPAR4,LPAR5,LPAR6,LPCAT1,LPCAT2,LPCAT3,LPCAT4,LPGAT1,LPIN1,LPIN2,LPIN3,LPL,LPO,LPP,LPXN,LRAT,LRATD1,LRATD2,LRBA,LRCH1,LRCH2,LRCH3,LRCH4,LRFN3,LRFN4,LRFN5,LRG1,LRGUK,LRIF1,LRIG1,LRIG2,LRIG3,LRIT1,LRIT3,LRMDA,LRP1,LRP10,LRP11,LRP12,LRP1B,LRP2,LRP2BP,LRP3,LRP5,LRP5L,LRP6,LRP8,LRPAP1,LRPPRC,LRR1,LRRC1,LRRC10,LRRC14,LRRC15,LRRC17,LRRC18,LRRC19,LRRC2,LRRC20,LRRC23,LRRC24,LRRC25,LRRC27,LRRC28,LRRC3,LRRC31,LRRC32,LRRC34,LRRC36,LRRC37A,LRRC37A2,LRRC37A3,LRRC37A4P,LRRC37B,LRRC37BP1,LRRC39,LRRC3B,LRRC4,LRRC40,LRRC41,LRRC42,LRRC43,LRRC45,LRRC46,LRRC47,LRRC49,LRRC4C,LRRC52,LRRC55,LRRC56,LRRC57,LRRC59,LRRC61,LRRC69,LRRC7,LRRC70,LRRC71,LRRC75A,LRRC75B,LRRC8A,LRRC8B,LRRC8C,LRRC8D,LRRC8E,LRRC9,LRRCC1,LRRFIP1,LRRFIP2,LRRIQ1,LRRIQ3,LRRK1,LRRN1,LRRN2,LRRN3,LRRN4,LRRN4CL,LRRTM1,LRRTM2,LRRTM3,LRRTM4,LRSAM1,LRTM1,LRTM2,LRTOMT,LRWD1,LSAMP,LSG1,LSM1,LSM10,LSM11,LSM14A,LSM14B,LSM2,LSM3,LSM4,LSM5,LSM6,LSM7,LSMEM1,LSMEM2,LSP1,LSR,LSS,LST1,LTA,LTA4H,LTB,LTB4R,LTB4R2,LTBP1,LTBP2,LTBP3,LTBP4,LTBR,LTC4S,LTF,LTK,LTN1,LTO1,LTV1,LUC7L,LUC7L2,LUC7L3,LUM,LURAP1,LURAP1L,LUZP1,LUZP2,LUZP4,LUZP6,LVRN,LXN,LY6D,LY6E,LY6G5B,LY6G5C,LY6G6C,LY6G6D,LY6G6E,LY6G6F,LY6H,LY6K,LY6S-AS1,LY75,LY86,LY86-AS1,LY9,LY96,LYAR,LYG1,LYG2,LYL1,LYN,LYNX1,LYPD1,LYPD2,LYPD3,LYPD4,LYPD5,LYPD6,LYPD6B,LYPLA1,LYPLA2,LYPLA2P1,LYPLAL1,LYRM1,LYRM2,LYRM4,LYRM7,LYRM9,LYSMD1,LYSMD2,LYSMD3,LYSMD4,LYST,LYVE1,LYZ,LYZL4,LYZL6,LZIC,LZTFL1,LZTR1,LZTS1,LZTS2,M1AP,M6PR,MAB21L1,MAB21L2,MAB21L3,MAB21L4,MACC1,MACF1,MACIR,MACROD1,MACROD2,MACROH2A1,MACROH2A2,MAD1L1,MAD2L1,MAD2L1BP,MAD2L2,MADCAM1,MADD,MAEA,MAEL,MAF,MAF1,MAFA,MAFB,MAFF,MAFG,MAFK,MAG,MAGEA1,MAGEA10,MAGEA11,MAGEA12,MAGEA2,MAGEA2B,MAGEA4,MAGEA5P,MAGEA8,MAGEB1,MAGEB10,MAGEB17,MAGEB18,MAGEB2,MAGEB3,MAGEB4,MAGEB6,MAGEC1,MAGEC2,MAGEC3,MAGED1,MAGED2,MAGEE1,MAGEE2,MAGEF1,MAGEH1,MAGEL2,MAGI1,MAGI2,MAGI3,MAGIX,MAGOH,MAGOH2P,MAGOHB,MAGT1,MAIP1,MAK,MAK16,MAL,MAL2,MALAT1,MALL,MALSU1,MALT1,MAMDC2,MAMDC4,MAML1,MAML2,MAML3,MAMLD1,MAMSTR,MAN1A1,MAN1A2,MAN1B1,MAN1C1,MAN2A1,MAN2A2,MAN2B1,MAN2B2,MAN2C1,MANBA,MANBAL,MANEA,MANEAL,MANF,MANSC1,MAOA,MAOB,MAP10,MAP1A,MAP1B,MAP1LC3A,MAP1LC3B,MAP1S,MAP2,MAP2K1,MAP2K2,MAP2K3,MAP2K4,MAP2K5,MAP2K6,MAP2K7,MAP3K10,MAP3K11,MAP3K12,MAP3K13,MAP3K14,MAP3K15,MAP3K19,MAP3K2,MAP3K20,MAP3K3,MAP3K4,MAP3K5,MAP3K6,MAP3K7,MAP3K7CL,MAP3K8,MAP3K9,MAP4,MAP4K1,MAP4K2,MAP4K3,MAP4K4,MAP4K5,MAP6,MAP6D1,MAP7,MAP7D1,MAP7D2,MAP9,MAPDA,MAPK1,MAPK10,MAPK11,MAPK12,MAPK13,MAPK14,MAPK15,MAPK1IP1L,MAPK3,MAPK4,MAPK6,MAPK7,MAPK8,MAPK8IP1,MAPK8IP2,MAPK8IP3,MAPK9,MAPKAP1,MAPKAPK2,MAPKAPK3,MAPKAPK5,MAPKAPK5-AS1,MAPRE1,MAPRE2,MAPRE3,MAPT,MARCHF1,MARCHF10,MARCHF2,MARCHF3,MARCHF5,MARCHF6,MARCHF7,MARCHF8,MARCHF9,MARCKS,MARCKSL1,MARCO,MARF1,MARK1,MARK2,MARK3,MARK4,MARS2,MARVELD1,MARVELD3,MAS1,MAS1L,MASP1,MASP2,MAST1,MAST2,MAST4,MASTL,MAT1A,MAT2A,MAT2B,MATCAP1,MATK,MATN1,MATN2,MATN3,MATN4,MATR3,MAU2,MAVS,MAX,MAZ,MB,MB21D2,MBD1,MBD2,MBD3,MBD3L1,MBD4,MBD5,MBD6,MBIP,MBL1P,MBL2,MBLAC1,MBLAC2,MBNL1,MBNL2,MBNL3,MBOAT1,MBOAT2,MBOAT7,MBP,MBTD1,MBTPS1,MBTPS2,MC1R,MC2R,MC3R,MC4R,MC5R,MCAM,MCAT,MCC,MCCC1,MCCC2,MCEE,MCEMP1,MCF2,MCF2L,MCF2L2,MCFD2,MCHR1,MCHR2,MCL1,MCM10,MCM2,MCM3,MCM3AP,MCM3AP-AS1,MCM4,MCM5,MCM6,MCM7,MCM8,MCM9,MCMBP,MCMDC2,MCOLN1,MCOLN2,MCOLN3,MCPH1,MCRIP1,MCRIP2,MCRS1,MCTP1,MCTP2,MCTS1,MCTS2,MCU,MCUB,MCUR1,MDC1,MDFI,MDFIC,MDGA1,MDGA2,MDH1,MDH1B,MDH2,MDK,MDM1,MDM2,MDM4,MDN1,MDP1,MDS2,ME1,ME2,ME3,MEA1,MEAF6,MEAK7,MECOM,MECP2,MECR,MED1,MED10,MED11,MED12,MED12L,MED13,MED13L,MED14,MED15,MED16,MED17,MED18,MED19,MED20,MED21,MED23,MED24,MED25,MED26,MED27,MED28,MED29,MED30,MED31,MED4,MED6,MED7,MED8,MED9,MEDAG,MEF2A,MEF2B,MEF2C,MEF2D,MEFV,MEGF10,MEGF11,MEGF8,MEGF9,MEI1,MEIOB,MEIOC,MEIS1,MEIS2,MEIS3,MEIS3P2,MELK,MELTF,MEMO1,MEN1,MEOX1,MEOX2,MEP1A,MEP1B,MEPCE,MEPE,MERTK,MESD,MESP1,MEST,MET,METAP1,METAP1D,METAP2,METRN,METRNL,METTL1,METTL13,METTL14,METTL15,METTL16,METTL17,METTL18,METTL21A,METTL22,METTL24,METTL25,METTL25B,METTL26,METTL27,METTL2A,METTL2B,METTL3,METTL4,METTL5,METTL6,METTL8,METTL9,MEX3B,MEX3C,MEX3D,MFAP1,MFAP2,MFAP3,MFAP3L,MFAP4,MFAP5,MFF,MFGE8,MFHAS1,MFN1,MFN2,MFNG,MFRP,MFSD1,MFSD10,MFSD11,MFSD12,MFSD13A,MFSD14A,MFSD14B,MFSD14CP,MFSD2A,MFSD2B,MFSD3,MFSD4A,MFSD4B,MFSD5,MFSD6,MFSD6L,MFSD8,MFSD9,MGAM,MGARP,MGAT1,MGAT2,MGAT3,MGAT4A,MGAT4B,MGAT4C,MGAT5,MGAT5B,MGC12916,MGC16025,MGC2889,MGC34796,MGLL,MGME1,MGMT,MGP,MGRN1,MGST1,MGST2,MGST3,MIA,MIA2,MIB1,MIB2,MICAL1,MICAL2,MICALL1,MICALL2,MICB,MICOS10,MICOS10-NBL1,MICOS13,MICU1,MICU2,MICU3,MID1,MID1IP1,MID2,MIDEAS,MIEF1,MIEF2,MIEN1,MIER1,MIER2,MIER3,MIF,MIF4GD,MIGA1,MIGA2,MIIP,MILR1,MINDY1,MINDY2,MINDY3,MINDY4,MINK1,MINPP1,MIOS,MIOX,MIP,MIPEP,MIPOL1,MIR1-1,MIR1-1HG,MIR103A1,MIR105-1,MIR105-2,MIR106B,MIR107,MIR10A,MIR10B,MIR1181,MIR1225,MIR1227,MIR1234,MIR1247,MIR1257,MIR126,MIR128-1,MIR128-2,MIR1281,MIR1282,MIR1287,MIR129-1,MIR129-2,MIR1292,MIR1298,MIR1307,MIR130B,MIR133A2,MIR133B,MIR137,MIR138-2,MIR139,MIR140,MIR147B,MIR148B,MIR149,MIR152,MIR153-1,MIR153-2,MIR15A,MIR15B,MIR16-1,MIR16-2,MIR17,MIR17HG,MIR185,MIR186,MIR188,MIR18A,MIR1909,MIR190A,MIR191,MIR196A1,MIR196A2,MIR19A,MIR19B1,MIR200A,MIR200B,MIR202,MIR206,MIR20A,MIR21,MIR211,MIR2110,MIR218-1,MIR218-2,MIR22,MIR22HG,MIR23B,MIR24-1,MIR25,MIR26A1,MIR26A2,MIR26B,MIR27B,MIR2861,MIR301A,MIR30B,MIR30C1,MIR30D,MIR30E,MIR31,MIR3120,MIR3128,MIR3189,MIR32,MIR330,MIR331,MIR33A,MIR34A,MIR3667HG,MIR423,MIR4260,MIR4287,MIR429,MIR4315-1,MIR4315-2,MIR4321,MIR455,MIR503,MIR504,MIR555,MIR564,MIR567,MIR572,MIR573,MIR589,MIR598,MIR600HG,MIR601,MIR604,MIR621,MIR630,MIR632,MIR635,MIR636,MIR637,MIR639,MIR646HG,MIR650,MIR658,MIR659,MIR664A,MIR671,MIR7-1,MIR7-2,MIR7-3,MIR7-3HG,MIR711,MIR873,MIR877,MIR9-1,MIR9-1HG,MIR92A1,MIR93,MIR935,MIR936,MIR939,MIR941-1,MIR941-2,MIR941-3,MIR943,MIR98,MIRLET7F2,MIRLET7G,MIS12,MIS18A,MIS18BP1,MISP,MITD1,MITF,MIXL1,MKI67,MKKS,MKLN1,MKNK2,MKRN1,MKRN2,MKRN3,MKRN9P,MKS1,MKX,MLANA,MLC1,MLEC,MLF1,MLF2,MLH1,MLH3,MLIP,MLKL,MLLT1,MLLT10,MLLT11,MLLT3,MLLT6,MLN,MLNR,MLPH,MLST8,MLX,MLXIP,MLXIPL,MLYCD,MMAA,MMAB,MMACHC,MMADHC,MMD,MMD2,MME,MMEL1,MMGT1,MMP1,MMP10,MMP11,MMP12,MMP13,MMP14,MMP15,MMP16,MMP17,MMP19,MMP2,MMP20,MMP21,MMP23A,MMP23B,MMP24,MMP25,MMP26,MMP27,MMP28,MMP3,MMP7,MMP8,MMP9,MMRN1,MMRN2,MMS19,MMS22L,MMUT,MN1,MNAT1,MND1,MNDA,MNS1,MNT,MNX1,MOAP1,MOB1A,MOB1B,MOB2,MOB3A,MOB3B,MOB4,MOCOS,MOCS1,MOCS2,MOCS3,MOG,MOGAT1,MOGAT2,MOGAT3,MOGS,MOK,MON1A,MON1B,MON2,MORC1,MORC2,MORC2-AS1,MORC3,MORC4,MORF4,MORF4L1,MORF4L2,MORN1,MORN2,MORN3,MORN4,MORN5,MOS,MOSMO,MOSPD1,MOSPD2,MOSPD3,MOV10,MOV10L1,MOXD1,MPC1,MPC2,MPDU1,MPDZ,MPG,MPHOSPH10,MPHOSPH6,MPHOSPH8,MPHOSPH9,MPI,MPIG6B,MPL,MPLKIP,MPND,MPO,MPP1,MPP2,MPP3,MPP4,MPP7,MPPE1,MPPED2,MPRIP,MPST,MPV17,MPV17L,MPV17L2,MPZ,MPZL1,MPZL2,MPZL3,MR1,MRAP,MRAP2,MRAS,MRC2,MRE11,MREG,MRFAP1,MRFAP1L1,MRGBP,MRGPRD,MRGPRF,MRGPRG,MRGPRG-AS1,MRGPRX1,MRGPRX2,MRGPRX3,MRGPRX4,MRI1,MRLN,MRM1,MRM2,MRM3,MRNIP,MRO,MROH2B,MROH7-TTC4,MROH8,MROH9,MRPL1,MRPL10,MRPL11,MRPL12,MRPL13,MRPL14,MRPL15,MRPL16,MRPL17,MRPL18,MRPL19,MRPL2,MRPL21,MRPL22,MRPL23,MRPL24,MRPL27,MRPL28,MRPL3,MRPL30,MRPL32,MRPL33,MRPL34,MRPL35,MRPL37,MRPL38,MRPL39,MRPL4,MRPL40,MRPL41,MRPL42,MRPL42P5,MRPL43,MRPL44,MRPL45,MRPL45P2,MRPL46,MRPL47,MRPL48,MRPL49,MRPL50,MRPL51,MRPL52,MRPL53,MRPL54,MRPL55,MRPL57,MRPL58,MRPL9,MRPS10,MRPS11,MRPS12,MRPS14,MRPS15,MRPS16,MRPS17,MRPS18A,MRPS18B,MRPS18C,MRPS2,MRPS21,MRPS22,MRPS23,MRPS24,MRPS25,MRPS26,MRPS27,MRPS28,MRPS30,MRPS31,MRPS33,MRPS34,MRPS35,MRPS5,MRPS6,MRPS7,MRPS9,MRRF,MRS2,MRTFA,MRTFB,MRTO4,MS4A1,MS4A10,MS4A12,MS4A14,MS4A15,MS4A2,MS4A4A,MS4A4E,MS4A5,MS4A6A,MS4A6E,MS4A7,MS4A8,MSANTD2,MSANTD3,MSANTD4,MSC,MSH2,MSH3,MSH4,MSH5,MSH6,MSI1,MSI2,MSL1,MSL2,MSL3,MSLN,MSMB,MSMO1,MSMP,MSN,MSR1,MSRA,MSRB1,MSRB2,MSRB3,MSS51,MST1R,MSTN,MSTO1,MSTO2P,MSX1,MSX2,MSX2P1,MT1A,MT1B,MT1DP,MT1E,MT1F,MT1G,MT1H,MT1HL1,MT1IP,MT1JP,MT1L,MT1M,MT1P3,MT1X,MT2A,MT3,MT4,MTA1,MTA2,MTA3,MTAP,MTARC1,MTARC2,MTBP,MTCH1,MTCH2,MTCL1,MTCL2,MTCL3,MTCP1,MTDH,MTERF1,MTERF2,MTERF3,MTERF4,MTF2,MTFMT,MTFP1,MTFR1,MTFR1L,MTFR2,MTG1,MTG2,MTHFD1,MTHFD1L,MTHFD2,MTHFD2L,MTHFR,MTHFS,MTHFSD,MTIF2,MTIF3,MTLN,MTM1,MTMR1,MTMR10,MTMR11,MTMR12,MTMR14,MTMR2,MTMR3,MTMR4,MTMR6,MTMR8,MTMR9,MTMR9LP,MTNAP1,MTNR1A,MTNR1B,MTO1,MTOR,MTPAP,MTPN,MTR,MTRES1,MTREX,MTRF1,MTRF1L,MTRFR,MTRNR2L1,MTRR,MTSS1,MTSS2,MTTP,MTURN,MTUS1,MTUS2,MTX1,MTX2,MUC1,MUC13,MUC15,MUC17,MUC20,MUC21,MUC22,MUC4,MUC7,MUCL1,MUCL3,MUL1,MUS81,MUSK,MUSTN1,MUTYH,MVB12A,MVB12B,MVD,MVK,MVP,MX1,MX2,MXD1,MXD3,MXD4,MXI1,MXRA5,MXRA7,MXRA8,MYADM,MYADML,MYB,MYBBP1A,MYBL2,MYBPC1,MYBPC2,MYBPC3,MYBPH,MYC,MYCBP,MYCBP2,MYCBPAP,MYCL,MYCN,MYCNOS,MYCT1,MYD88,MYDGF,MYEF2,MYEOV,MYF5,MYF6,MYG1,MYH1,MYH10,MYH11,MYH13,MYH14,MYH2,MYH3,MYH4,MYH6,MYH7,MYH7B,MYH8,MYH9,MYL1,MYL10,MYL11,MYL12A,MYL2,MYL3,MYL4,MYL5,MYL6,MYL6B,MYL7,MYL9,MYLIP,MYLK,MYLK2,MYLK3,MYNN,MYO10,MYO15A,MYO15B,MYO18A,MYO18B,MYO19,MYO1A,MYO1B,MYO1C,MYO1D,MYO1E,MYO1F,MYO1H,MYO3A,MYO3B,MYO5A,MYO5B,MYO5C,MYO6,MYO7A,MYO7B,MYO9A,MYO9B,MYOC,MYOCD,MYOD1,MYOF,MYOG,MYOM1,MYOM2,MYOM3,MYORG,MYOT,MYOZ1,MYOZ2,MYOZ3,MYPN,MYRF,MYRFL,MYRIP,MYSM1,MYT1,MYT1L,MZF1,MZT2A,MZT2B,N4BP1,N4BP2,N4BP2L1,N4BP2L2,N4BP2L2-IT2,N4BP3,N6AMT1,NAA10,NAA15,NAA16,NAA20,NAA25,NAA35,NAA38,NAA40,NAA50,NAA60,NAA80,NAAA,NAALAD2,NAALADL1,NAALADL2,NAB1,NAB2,NABP1,NABP2,NACA,NACA2,NACA4P,NACC1,NACC2,NADK,NADK2,NADSYN1,NAE1,NAF1,NAGA,NAGK,NAGLU,NAGPA,NAGS,NAIF1,NALCN,NALF2,NAMPT,NANOG,NANOGNB,NANOGP1,NANOS1,NANP,NANS,NAP1L1,NAP1L2,NAP1L3,NAP1L4,NAP1L5,NAPA,NAPB,NAPEPLD,NAPG,NAPRT,NAPSA,NAPSB,NARF,NARS1,NARS2,NASP,NAT1,NAT10,NAT14,NAT16,NAT2,NAT8,NAT8B,NAT8L,NAT9,NATD1,NAV1,NAV2,NAV3,NAXD,NAXE,NBAS,NBEA,NBEAL1,NBEAL2,NBL1,NBN,NBPF1,NBPF10,NBPF11,NBPF12,NBPF14,NBPF15,NBPF22P,NBPF3,NBPF4,NBPF6,NBPF7P,NBPF8,NBPF9,NBR1,NBR2,NCALD,NCAM1,NCAM2,NCAN,NCAPD2,NCAPD3,NCAPG,NCAPG2,NCAPH,NCAPH2,NCBP1,NCBP2,NCBP3,NCCRP1,NCDN,NCEH1,NCF2,NCF4,NCK1,NCK2,NCKAP1,NCKAP1L,NCKAP5,NCKAP5L,NCKIPSD,NCL,NCLN,NCOA1,NCOA2,NCOA3,NCOA4,NCOA5,NCOA6,NCOA7,NCOR1,NCOR1P1,NCOR2,NCR1,NCR2,NCR3,NCS1,NCSTN,ND1,ND3,ND4,ND4L,ND5,ND6,NDC1,NDC80,NDE1,NDEL1,NDFIP1,NDFIP2,NDN,NDNF,NDP,NDRG1,NDRG2,NDRG3,NDRG4,NDST1,NDST2,NDST3,NDST4,NDUFA1,NDUFA10,NDUFA11,NDUFA12,NDUFA13,NDUFA2,NDUFA3,NDUFA4,NDUFA4L2,NDUFA5,NDUFA6,NDUFA7,NDUFA8,NDUFA9,NDUFAB1,NDUFAF1,NDUFAF2,NDUFAF3,NDUFAF4,NDUFAF5,NDUFAF6,NDUFAF7,NDUFB1,NDUFB10,NDUFB11,NDUFB2,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,NDUFC1,NDUFC2,NDUFS1,NDUFS2,NDUFS3,NDUFS4,NDUFS5,NDUFS6,NDUFS7,NDUFS8,NDUFV1,NDUFV1-DT,NDUFV3,NEB,NEBL,NECAB1,NECAB2,NECAB3,NECAP1,NECAP2,NECTIN1,NECTIN2,NECTIN3,NECTIN4,NEDD1,NEDD4,NEDD4L,NEDD8,NEDD9,NEFH,NEFL,NEFM,NEGR1,NEIL1,NEIL2,NEIL3,NEK1,NEK10,NEK11,NEK2,NEK3,NEK4,NEK5,NEK6,NEK7,NEK8,NEK9,NELFA,NELFCD,NELFE,NELL1,NELL2,NEMF,NENF,NEO1,NEPRO,NES,NET1,NETO1,NETO2,NEU1,NEU2,NEU3,NEU4,NEURL1,NEURL2,NEURL3,NEURL4,NEUROD1,NEUROD2,NEUROD4,NEUROD6,NEUROG1,NEUROG2,NEUROG3,NEXN,NEXN-AS1,NF1,NF1P5,NF2,NFAM1,NFASC,NFAT5,NFATC1,NFATC2,NFATC2IP,NFATC3,NFATC4,NFE2,NFE2L1,NFE2L2,NFE2L3,NFE4,NFIA,NFIB,NFIC,NFIL3,NFIX,NFKB1,NFKB2,NFKBIA,NFKBIB,NFKBID,NFKBIE,NFKBIL1,NFKBIZ,NFRKB,NFS1,NFU1,NFX1,NFXL1,NFYA,NFYB,NFYC,NGB,NGDN,NGEF,NGF,NGFR,NGLY1,NGRN,NHEJ1,NHERF1,NHERF2,NHERF4,NHLH1,NHLH2,NHLRC1,NHLRC2,NHLRC4,NHP2,NHS,NHSL3,NIBAN1,NIBAN2,NIBAN3,NICN1,NID1,NID2,NIF3L1,NIFK,NIM1K,NIN,NINJ1,NINJ2,NINL,NIP7,NIPA1,NIPA2,NIPAL1,NIPAL2,NIPAL3,NIPBL,NIPSNAP1,NIPSNAP2,NIPSNAP3A,NIPSNAP3B,NISCH,NIT1,NIT2,NKAIN1,NKAIN2,NKAIN3,NKAIN4,NKAP,NKAPD1,NKAPP1,NKD1,NKD2,NKG7,NKIRAS1,NKIRAS2,NKPD1,NKRF,NKTR,NKX2-1,NKX2-2,NKX2-3,NKX2-5,NKX2-8,NKX3-1,NKX3-2,NKX6-1,NKX6-2,NKX6-3,NLE1,NLGN1,NLGN2,NLGN3,NLGN4X,NLGN4Y,NLK,NLN,NLRC3,NLRC4,NLRC5,NLRP1,NLRP10,NLRP11,NLRP12,NLRP13,NLRP14,NLRP2,NLRP3,NLRP4,NLRP5,NLRP6,NLRP7,NLRP8,NLRP9,NLRX1,NMB,NMBR,NMD3,NME1,NME1-NME2,NME2,NME3,NME4,NME5,NME6,NME7,NME8,NME9,NMI,NMNAT1,NMNAT2,NMNAT3,NMRAL1,NMRK1,NMRK2,NMT1,NMT2,NMU,NMUR1,NMUR2,NNAT,NNMT,NNT,NOA1,NOB1,NOC2L,NOC3L,NOC4L,NOCT,NOD1,NOD2,NODAL,NOG,NOL10,NOL11,NOL12,NOL3,NOL4,NOL4L,NOL6,NOL7,NOL8,NOL9,NOLC1,NONO,NOP10,NOP14,NOP16,NOP2,NOP53,NOP56,NOP58,NOP9,NOS1,NOS1AP,NOS2,NOS3,NOSIP,NOSTRIN,NOTCH1,NOTCH2,NOTCH2NLB,NOTCH3,NOTCH4,NOTO,NOVA1,NOVA2,NOX1,NOX3,NOX4,NOX5,NOXA1,NOXO1,NOXRED1,NPAP1,NPAS1,NPAS2,NPAS3,NPAS4,NPAT,NPBWR1,NPBWR2,NPC1,NPC1L1,NPC2,NPDC1,NPEPL1,NPEPPS,NPFF,NPFFR1,NPFFR2,NPHP1,NPHP3,NPHP4,NPHS1,NPHS2,NPIPB15,NPIPB3,NPL,NPLOC4,NPM1,NPM2,NPM3,NPNT,NPPA,NPPB,NPPC,NPR1,NPR2,NPR3,NPRL2,NPRL3,NPSR1,NPTN,NPTX1,NPTX2,NPTXR,NPVF,NPW,NPY,NPY1R,NPY2R,NPY5R,NPY6R,NQO1,NQO2,NR0B1,NR0B2,NR1D1,NR1D2,NR1H2,NR1H3,NR1H4,NR1I2,NR1I3,NR2C1,NR2C2,NR2C2AP,NR2E1,NR2E3,NR2F1,NR2F2,NR2F6,NR3C1,NR3C2,NR4A1,NR4A2,NR4A3,NR5A1,NR5A2,NR6A1,NRAP,NRAS,NRBF2,NRBP1,NRBP2,NRCAM,NRDC,NRDE2,NREP,NRF1,NRG1,NRG2,NRG4,NRGN,NRIP1,NRIP2,NRIP3,NRK,NRL,NRM,NRN1,NRN1L,NRP1,NRP2,NRROS,NRSN1,NRSN2,NRTN,NRXN1,NRXN2,NRXN3,NSD1,NSD2,NSD3,NSDHL,NSF,NSFL1C,NSFP1,NSG1,NSG2,NSL1,NSMAF,NSMCE1,NSMCE2,NSMCE3,NSMCE4A,NSRP1,NSUN2,NSUN3,NSUN4,NSUN5,NSUN5P1,NSUN5P2,NSUN6,NSUN7,NT5C,NT5C1A,NT5C1B,NT5C2,NT5C3A,NT5C3B,NT5DC1,NT5DC2,NT5DC3,NT5DC4,NT5E,NT5M,NTAN1,NTAQ1,NTF3,NTF4,NTHL1,NTM,NTM-AS1,NTMT1,NTN1,NTN3,NTN4,NTN5,NTNG1,NTNG2,NTPCR,NTRK1,NTRK2,NTRK3,NTS,NTSR1,NTSR2,NUAK1,NUAK2,NUB1,NUBP1,NUBP2,NUBPL,NUCB2,NUCKS1,NUDC,NUDCD1,NUDCD2,NUDCD3,NUDT1,NUDT10,NUDT11,NUDT12,NUDT13,NUDT14,NUDT15,NUDT16,NUDT16L1,NUDT16L2P,NUDT17,NUDT18,NUDT2,NUDT21,NUDT22,NUDT3,NUDT4,NUDT4B,NUDT5,NUDT6,NUDT8,NUDT9,NUDT9P1,NUF2,NUFIP1,NUFIP2,NUMA1,NUMB,NUMBL,NUP107,NUP133,NUP153,NUP155,NUP160,NUP210,NUP210L,NUP210P1,NUP214,NUP35,NUP37,NUP42,NUP43,NUP50,NUP54,NUP58,NUP62,NUP62CL,NUP88,NUP93,NUP98,NUPR1,NUSAP1,NUTF2,NUTM1,NVL,NXF1,NXF2,NXF2B,NXF3,NXF4,NXF5,NXN,NXNL1,NXNL2,NXPE1,NXPE2,NXPE3,NXPE4,NXPH1,NXPH2,NXPH3,NXPH4,NXT1,NXT2,NYAP1,NYNRIN,NYX,OAF,OARD1,OAS1,OAS2,OAS3,OASL,OAT,OAZ1,OAZ2,OAZ3,OBI1,OBP2A,OBP2B,OBSCN,OBSL1,OCA2,OCEL1,OCIAD1,OCIAD2,OCM,OCM2,OCRL,ODAD1,ODAD2,ODAD3,ODAD4,ODAM,ODAPH,ODC1,ODF1,ODF2,ODF2L,ODF4,ODR4,OFCC1,OFD1,OGA,OGDH,OGDHL,OGFOD1,OGFOD2,OGFOD3,OGFR,OGFRL1,OGG1,OGN,OGT,OIP5,OIT3,OLA1,OLAH,OLFM1,OLFM2,OLFM3,OLFM4,OLFML1,OLFML2A,OLFML2B,OLFML3,OLIG1,OLIG2,OLIG3,OLR1,OMA1,OMD,OMG,OMP,ONECUT1,ONECUT2,OOEP,OOSP1,OOSP2,OPA1,OPA3,OPALIN,OPCML,OPHN1,OPLAH,OPN1LW,OPN1MW,OPN1MW2,OPN1SW,OPN3,OPN4,OPN5,OPRD1,OPRK1,OPRL1,OPRM1,OPRPN,OPTC,OPTN,OR10A2,OR10A3,OR10A4,OR10A5,OR10A6,OR10A7,OR10AD1,OR10D1P,OR10G4,OR10G6,OR10G7,OR10G8,OR10G9,OR10H1,OR10H2,OR10H3,OR10H4,OR10H5,OR10J1,OR10J3,OR10J5,OR10K1,OR10K2,OR10Q1,OR10R2,OR10R3P,OR10S1,OR10T2,OR10V1,OR10W1,OR10X1,OR10Z1,OR11A1,OR11H4,OR11H6,OR11L1,OR12D2,OR12D3,OR13A1,OR13C2,OR13C3,OR13C5,OR13C8,OR13C9,OR13D1,OR13F1,OR13H1,OR13J1,OR14A16,OR14A2,OR1A1,OR1A2,OR1B1,OR1C1,OR1D2,OR1D4,OR1D5,OR1E1,OR1E2,OR1F1,OR1G1,OR1I1,OR1J1,OR1J2,OR1J4,OR1L1,OR1L3,OR1L4,OR1L6,OR1L8,OR1M1,OR1N1,OR1N2,OR1Q1,OR1S1,OR1S2,OR2A12,OR2A14,OR2A2,OR2A25,OR2A5,OR2AE1,OR2AG1,OR2AJ1,OR2AK2,OR2AT4,OR2B11,OR2B2,OR2B3,OR2B6,OR2C1,OR2C3,OR2D2,OR2D3,OR2F1,OR2F2,OR2G2,OR2G3,OR2H1,OR2H2,OR2J3,OR2K2,OR2L13,OR2L2,OR2L3,OR2L8,OR2M1P,OR2M2,OR2M3,OR2M4,OR2M5,OR2M7,OR2S2,OR2T12,OR2T33,OR2T8,OR2V2,OR2W1,OR2W3,OR2W5P,OR2Z1,OR3A1,OR3A2,OR3A3,OR3A4P,OR4A15,OR4A16,OR4A5,OR4B1,OR4C11,OR4C12,OR4C15,OR4C16,OR4C3,OR4C6,OR4D1,OR4D10,OR4D11,OR4D2,OR4D5,OR4D6,OR4D9,OR4E2,OR4F6,OR4K1,OR4K13,OR4K14,OR4K17,OR4L1,OR4M1,OR4M2,OR4N2,OR4N3P,OR4N4,OR4N5,OR4P4,OR4S1,OR4S2,OR4X1,OR4X2,OR51A2,OR51A4,OR51A7,OR51B2,OR51B4,OR51B5,OR51B6,OR51D1,OR51E1,OR51E2,OR51F1,OR51F2,OR51G1,OR51G2,OR51I1,OR51I2,OR51L1,OR51M1,OR51Q1,OR51S1,OR51T1,OR51V1,OR52A1,OR52A4P,OR52A5,OR52B4,OR52B6,OR52D1,OR52E2,OR52E4,OR52E5,OR52E6,OR52E8,OR52H1,OR52I2,OR52J3,OR52K1,OR52K2,OR52L1,OR52M1,OR52N1,OR52N2,OR52N4,OR52N5,OR52R1,OR52W1,OR56A1,OR56A3,OR56A4,OR56B1,OR56B4,OR5A1,OR5A2,OR5AC2,OR5AK2,OR5AN1,OR5AP2,OR5AR1,OR5AS1,OR5AU1,OR5B12,OR5B21,OR5D13,OR5D14,OR5I1,OR5K1,OR5K2,OR5L1,OR5L2,OR5M1,OR5M10,OR5M11,OR5M3,OR5M8,OR5M9,OR5P2,OR5P3,OR5T1,OR5T2,OR5T3,OR5V1,OR5W2,OR6A2,OR6B1,OR6B2,OR6B3,OR6C1,OR6C2,OR6C3,OR6C74,OR6C76,OR6F1,OR6K2,OR6K3,OR6K6,OR6M1,OR6N1,OR6N2,OR6Q1,OR6S1,OR6T1,OR6V1,OR6W1P,OR6X1,OR6Y1,OR7A10,OR7A17,OR7A5,OR7C1,OR7C2,OR7D4,OR7E125P,OR7E154P,OR7E5P,OR7G1,OR7G2,OR7G3,OR8A1,OR8B12,OR8B4,OR8B8,OR8D1,OR8D2,OR8D4,OR8G1,OR8G2P,OR8G5,OR8H1,OR8H2,OR8H3,OR8I2,OR8J1,OR8J3,OR8K1,OR8K3,OR8K5,OR8S1,OR8U1,OR8U3,OR8U8,OR8U9,OR9A2,OR9A4,OR9G1,OR9G4,OR9G9,OR9H1,OR9I1,OR9K2,OR9Q1,OR9Q2,ORAI1,ORAI2,ORAI3,ORC1,ORC2,ORC3,ORC4,ORC5,ORC6,ORM1,ORM2,ORMDL1,ORMDL2,ORMDL3,OS9,OSBP,OSBP2,OSBPL10,OSBPL11,OSBPL1A,OSBPL2,OSBPL3,OSBPL5,OSBPL6,OSBPL7,OSBPL8,OSBPL9,OSCAR,OSCP1,OSER1,OSGEP,OSGEPL1,OSGIN1,OSGIN2,OSM,OSMR,OSR1,OSR2,OSTC,OSTCP1,OSTF1,OSTM1,OSTN,OTC,OTOA,OTOF,OTOGL,OTOP1,OTOP2,OTOP3,OTOR,OTOS,OTP,OTUB1,OTUB2,OTUD4,OTUD5,OTUD6A,OTUD6B,OTUD7A,OTUD7B,OTULIN,OTULINL,OTX1,OTX2,OVCA2,OVCH1,OVCH2,OVGP1,OVOL1,OVOL2,OVOS2,OXA1L,OXCT1,OXCT2,OXER1,OXGR1,OXNAD1,OXR1,OXSM,OXSR1,OXT,OXTR,P2RX1,P2RX2,P2RX3,P2RX4,P2RX5,P2RX6,P2RX7,P2RY1,P2RY10,P2RY11,P2RY12,P2RY13,P2RY14,P2RY2,P2RY4,P2RY6,P3H1,P3H2,P3H3,P3H4,P4HA1,P4HA2,P4HA3,P4HTM,PA2G4,PAAF1,PABIR1,PABIR2,PABIR3,PABPC1P2,PABPC3,PABPC4,PABPC5,PABPN1,PABPN1L,PACC1,PACRG,PACRGL,PACS1,PACS2,PACSIN1,PACSIN2,PACSIN3,PADI1,PADI2,PADI3,PADI4,PADI6,PAEP,PAF1,PAFAH1B1,PAFAH1B2,PAFAH1B3,PAFAH2,PAG1,PAGE1,PAGE2,PAGE2B,PAGE4,PAGE5,PAGR1,PAH,PAICS,PAIP1,PAIP2,PAK1,PAK1IP1,PAK2,PAK3,PAK4,PAK5,PAK6,PALB2,PALD1,PALLD,PALM,PALM2AKAP2,PALMD,PALS1,PALS2,PAM,PAM16,PAMR1,PAN2,PAN3,PANK1,PANK2,PANK3,PANK4,PANX1,PANX2,PANX3,PAOX,PAPLN,PAPOLA,PAPOLB,PAPOLG,PAPPA,PAPPA-AS1,PAPPA2,PAPSS1,PAPSS2,PAQR3,PAQR4,PAQR5,PAQR6,PAQR7,PAQR8,PAQR9,PARD3,PARD3B,PARD6A,PARD6B,PARD6G,PARG,PARK7,PARL,PARM1,PARN,PARP1,PARP10,PARP11,PARP12,PARP14,PARP15,PARP16,PARP2,PARP3,PARP4,PARP6,PARP8,PARP9,PARPBP,PARS2,PART1,PARVA,PARVB,PARVG,PASD1,PASK,PATE1,PATE2,PATE3,PATJ,PATL1,PATZ1,PAWR,PAX1,PAX2,PAX3,PAX4,PAX5,PAX6,PAX7,PAX8,PAX9,PAXBP1,PAXIP1,PAXX,PBK,PBLD,PBOV1,PBRM1,PBX1,PBX2,PBX3,PBX4,PBXIP1,PC,PCAT4,PCBD1,PCBD2,PCBP1,PCBP2,PCBP3,PCBP4,PCCA,PCCB,PCDH1,PCDH10,PCDH11X,PCDH11Y,PCDH12,PCDH15,PCDH17,PCDH18,PCDH20,PCDH7,PCDH8,PCDH9,PCDHA1,PCDHA10,PCDHA11,PCDHA12,PCDHA13,PCDHA2,PCDHA3,PCDHA4,PCDHA5,PCDHA6,PCDHA7,PCDHA8,PCDHA9,PCDHAC1,PCDHAC2,PCDHB1,PCDHB10,PCDHB11,PCDHB12,PCDHB13,PCDHB14,PCDHB15,PCDHB16,PCDHB17P,PCDHB18P,PCDHB19P,PCDHB2,PCDHB3,PCDHB4,PCDHB5,PCDHB6,PCDHB7,PCDHB8,PCDHB9,PCDHGA1,PCDHGA10,PCDHGA11,PCDHGA12,PCDHGA2,PCDHGA3,PCDHGA4,PCDHGA5,PCDHGA6,PCDHGA7,PCDHGA8,PCDHGA9,PCDHGB1,PCDHGB2,PCDHGB3,PCDHGB4,PCDHGB5,PCDHGB6,PCDHGB7,PCDHGB8P,PCDHGC3,PCDHGC4,PCDHGC5,PCED1A,PCED1B,PCF11,PCGF1,PCGF2,PCGF3,PCGF5,PCGF6,PCID2,PCIF1,PCK1,PCK2,PCLAF,PCLO,PCM1,PCMT1,PCMTD1,PCMTD2,PCNA,PCNA-AS1,PCNP,PCNT,PCNX1,PCNX2,PCNX4,PCOLCE,PCOLCE2,PCOTH,PCP2,PCP4,PCSK1,PCSK1N,PCSK2,PCSK4,PCSK5,PCSK6,PCSK7,PCSK9,PCTP,PCYOX1,PCYOX1L,PCYT1A,PCYT1B,PDAP1,PDC,PDCD10,PDCD11,PDCD1LG2,PDCD2,PDCD2L,PDCD4,PDCD5,PDCD6,PDCD6IP,PDCD7,PDCL,PDCL2,PDCL3,PDE10A,PDE11A,PDE1A,PDE1B,PDE1C,PDE2A,PDE3A,PDE3B,PDE4A,PDE4B,PDE4C,PDE4D,PDE4DIP,PDE5A,PDE6A,PDE6B,PDE6C,PDE6D,PDE6G,PDE6H,PDE7A,PDE7B,PDE8A,PDE8B,PDE9A,PDF,PDGFA,PDGFB,PDGFC,PDGFD,PDGFRA,PDGFRB,PDGFRL,PDHA1,PDHA2,PDHB,PDHX,PDIA2,PDIA3,PDIA4,PDIA5,PDIA6,PDIK1L,PDILT,PDK1,PDK2,PDK3,PDK4,PDLIM1,PDLIM2,PDLIM3,PDLIM4,PDLIM5,PDP1,PDP2,PDPK1,PDPN,PDPR,PDRG1,PDS5A,PDS5B,PDSS1,PDSS2,PDX1,PDXDC1,PDXK,PDXP,PDYN,PDZD11,PDZD2,PDZD4,PDZD7,PDZD8,PDZD9,PDZK1,PDZK1IP1,PDZK1P1,PDZRN3,PDZRN4,PEA15,PEAK3,PEBP1,PEBP4,PECAM1,PECR,PEDS1,PEF1,PEG10,PEG3,PELI1,PELI2,PELI3,PELO,PELP1,PEMT,PENK,PEPD,PER1,PER2,PER3,PERM1,PERP,PES1,PET117,PEX1,PEX10,PEX11A,PEX11B,PEX11G,PEX12,PEX13,PEX14,PEX16,PEX19,PEX2,PEX26,PEX3,PEX5,PEX5L,PEX6,PEX7,PF4,PF4V1,PFAS,PFDN1,PFDN2,PFDN4,PFDN5,PFDN6,PFKFB1,PFKFB2,PFKFB3,PFKFB4,PFKL,PFKM,PFKP,PFN1,PFN2,PFN4,PGA3,PGA4,PGA5,PGAM2,PGAM5,PGAP1,PGAP2,PGAP3,PGAP4,PGAP6,PGBD1,PGBD2,PGBD3,PGBD4,PGBD5,PGC,PGCKA1,PGD,PGF,PGGHG,PGGT1B,PGK1,PGK2,PGLS,PGLYRP1,PGLYRP2,PGLYRP3,PGLYRP4,PGM1,PGM2,PGM2L1,PGM3,PGM5,PGM5P2,PGP,PGPEP1,PGR,PGRMC1,PGRMC2,PGS1,PHACTR2,PHACTR3,PHAF1,PHAX,PHB1,PHB2,PHC1,PHC2,PHC3,PHETA1,PHEX,PHF1,PHF10,PHF11,PHF12,PHF13,PHF14,PHF19,PHF2,PHF20,PHF20L1,PHF21A,PHF21B,PHF23,PHF3,PHF5A,PHF6,PHF7,PHF8,PHGDH,PHIP,PHKA1,PHKA2,PHKB,PHKG1,PHKG2,PHLDA1,PHLDA2,PHLDA3,PHLDB1,PHLDB2,PHLDB3,PHLPP1,PHOSPHO1,PHOSPHO2,PHOX2A,PHOX2B,PHPT1,PHTF1,PHTF2,PHYH,PHYHD1,PHYHIP,PHYHIPL,PHYKPL,PI15,PI16,PI3,PI4K2A,PI4K2B,PI4KA,PI4KAP1,PI4KAP2,PI4KB,PIANP,PIAS1,PIAS2,PIAS3,PIAS4,PIBF1,PICALM,PICK1,PID1,PIDD1,PIERCE1,PIEZO1,PIEZO2,PIF1,PIGA,PIGB,PIGC,PIGF,PIGG,PIGH,PIGK,PIGL,PIGM,PIGN,PIGO,PIGP,PIGQ,PIGR,PIGS,PIGT,PIGU,PIGV,PIGW,PIGX,PIGY,PIGZ,PIH1D1,PIH1D2,PIK3AP1,PIK3C2A,PIK3C2B,PIK3C2G,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3IP1,PIK3R1,PIK3R2,PIK3R3,PIK3R4,PIK3R5,PIKFYVE,PILRA,PILRB,PIM1,PIM2,PIMREG,PIN1,PIN1P1,PIN4,PINK1,PINX1,PIP,PIP4K2A,PIP4K2B,PIP4K2C,PIP4P1,PIP4P2,PIP5K1A,PIP5K1B,PIP5K1C,PIP5K1P1,PIP5KL1,PIPOX,PIPSL,PIR,PISD,PITHD1,PITPNA,PITPNB,PITPNC1,PITPNM1,PITPNM2,PITPNM3,PITRM1,PITX1,PITX2,PITX3,PIWIL1,PIWIL2,PIWIL3,PIWIL4,PJA1,PJA2,PKD1,PKD1L1,PKD1L1-AS1,PKD1L2,PKD1L3,PKD1P1,PKD1P3,PKD2,PKD2L1,PKD2L2,PKDREJ,PKHD1,PKHD1L1,PKIA,PKIB,PKIG,PKLR,PKM,PKMYT1,PKN1,PKN2,PKN3,PKNOX1,PKNOX2,PKP1,PKP2,PKP3,PKP4,PLA1A,PLA2G10,PLA2G12A,PLA2G12B,PLA2G15,PLA2G1B,PLA2G2A,PLA2G2D,PLA2G2E,PLA2G2F,PLA2G3,PLA2G4A,PLA2G4B,PLA2G4C,PLA2G4D,PLA2G4E,PLA2G4F,PLA2G5,PLA2G6,PLA2G7,PLA2R1,PLAA,PLAAT1,PLAAT2,PLAAT3,PLAAT4,PLAAT5,PLAC1,PLAC4,PLAC8,PLAG1,PLAGL1,PLAGL2,PLAT,PLAU,PLAUR,PLB1,PLBD1,PLBD2,PLCB1,PLCB2,PLCB3,PLCB4,PLCD1,PLCD3,PLCD4,PLCE1,PLCG1,PLCG2,PLCH2,PLCL1,PLCL2,PLCXD2,PLCZ1,PLD1,PLD2,PLD3,PLD4,PLD5,PLD6,PLEC,PLEK,PLEK2,PLEKHA1,PLEKHA3,PLEKHA4,PLEKHA5,PLEKHA6,PLEKHA7,PLEKHA8,PLEKHA8P1,PLEKHB1,PLEKHB2,PLEKHF1,PLEKHF2,PLEKHG2,PLEKHG4B,PLEKHG5,PLEKHG6,PLEKHG7,PLEKHH1,PLEKHH2,PLEKHH3,PLEKHJ1,PLEKHM1,PLEKHM1P1,PLEKHM2,PLEKHN1,PLEKHO1,PLEKHO2,PLEKHS1,PLG,PLGLA,PLGLB1,PLGLB2,PLGRKT,PLIN1,PLIN2,PLIN3,PLIN5,PLK1,PLK2,PLK3,PLK4,PLLP,PLN,PLOD1,PLOD2,PLOD3,PLP1,PLP2,PLPBP,PLPP1,PLPP2,PLPP3,PLPP5,PLPP6,PLPP7,PLPPR1,PLPPR2,PLPPR3,PLPPR4,PLRG1,PLS1,PLS3,PLSCR1,PLSCR2,PLSCR3,PLSCR4,PLTP,PLVAP,PLXDC1,PLXDC2,PLXNA1,PLXNA2,PLXNA3,PLXNA4,PLXNB1,PLXNB3,PLXNC1,PLXND1,PM20D1,PMAIP1,PMCH,PMCHL1,PMCHL2,PMEL,PMEPA1,PMF1,PMFBP1,PML,PMM1,PMM2,PMP2,PMP22,PMPCA,PMPCB,PMS1,PMS2,PMS2CL,PMS2P1,PMS2P11,PMS2P3,PMS2P6,PMVK,PNCK,PNISR,PNKD,PNKP,PNLDC1,PNLIP,PNLIPRP1,PNLIPRP2,PNMA1,PNMA2,PNMA3,PNMA5,PNMA6A,PNMA8A,PNMT,PNN,PNO1,PNOC,PNP,PNPLA1,PNPLA2,PNPLA3,PNPLA4,PNPLA5,PNPLA6,PNPLA7,PNPLA8,PNPO,PNPT1,PNRC1,POC1A,POC1B,POC5,PODN,PODNL1,PODXL,PODXL2,POF1B,POFUT1,POFUT2,POGK,POGLUT1,POGLUT2,POGLUT3,POGZ,POLA1,POLA2,POLB,POLD1,POLD2,POLD3,POLD4,POLDIP2,POLDIP3,POLE,POLE2,POLE3,POLE4,POLG,POLG2,POLH,POLI,POLK,POLL,POLM,POLN,POLQ,POLR1A,POLR1B,POLR1C,POLR1D,POLR1E,POLR1F,POLR1G,POLR1H,POLR1HASP,POLR2A,POLR2B,POLR2C,POLR2D,POLR2E,POLR2F,POLR2G,POLR2H,POLR2I,POLR2J,POLR2J2,POLR2J3,POLR2J4,POLR2K,POLR2L,POLR3A,POLR3B,POLR3C,POLR3D,POLR3E,POLR3F,POLR3G,POLR3GL,POLR3H,POLR3K,POLRMT,POM121,POM121C,POM121L10P,POM121L12,POM121L1P,POM121L4P,POM121L8P,POM121L9P,POMC,POMGNT1,POMGNT2,POMK,POMP,POMT1,POMT2,POMZP3,PON1,PON2,PON3,POP1,POP4,POP5,POP7,POPDC1,POPDC2,POPDC3,POR,PORCN,POSTN,POT1,POTEA,POTEB,POTEC,POTEE,POTEF,POTEG,POTEH,POTEJ,POTEKP,POTEM,POU1F1,POU2AF1,POU2AF2,POU2F1,POU2F2,POU2F3,POU3F1,POU3F2,POU3F3,POU3F4,POU4F1,POU4F2,POU4F3,POU5F1,POU5F1B,POU5F1P3,POU5F1P4,POU5F2,POU6F2,PP2D1,PPA1,PPA2,PPAN,PPARA,PPARD,PPARG,PPARGC1A,PPARGC1B,PPAT,PPBP,PPBPP2,PPCDC,PPCS,PPDPF,PPDPFL,PPEF1,PPEF2,PPFIA1,PPFIA2,PPFIA3,PPFIBP1,PPFIBP2,PPHLN1,PPIA,PPIB,PPIC,PPID,PPIE,PPIF,PPIG,PPIH,PPIL1,PPIL2,PPIL3,PPIL4,PPIP5K1,PPIP5K2,PPL,PPM1A,PPM1B,PPM1D,PPM1E,PPM1F,PPM1G,PPM1H,PPM1J,PPM1K,PPM1L,PPM1M,PPM1N,PPME1,PPOX,PPP1CA,PPP1CB,PPP1CC,PPP1R10,PPP1R11,PPP1R12A,PPP1R12B,PPP1R12C,PPP1R13B,PPP1R13L,PPP1R14A,PPP1R14B,PPP1R14C,PPP1R14D,PPP1R15A,PPP1R15B,PPP1R16A,PPP1R16B,PPP1R17,PPP1R18,PPP1R1A,PPP1R1B,PPP1R1C,PPP1R2,PPP1R21,PPP1R26,PPP1R27,PPP1R2B,PPP1R2C,PPP1R2P1,PPP1R35,PPP1R36,PPP1R37,PPP1R3A,PPP1R3B,PPP1R3C,PPP1R3D,PPP1R3E,PPP1R42,PPP1R7,PPP1R8,PPP1R9B,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R2D,PPP2R3A,PPP2R3C,PPP2R5A,PPP2R5B,PPP2R5C,PPP2R5D,PPP2R5E,PPP3CA,PPP3CB,PPP3CC,PPP3R1,PPP3R2,PPP4C,PPP4R1,PPP4R2,PPP4R3A,PPP4R3B,PPP4R3C,PPP4R4,PPP5C,PPP6C,PPP6R1,PPP6R2,PPP6R3,PPRC1,PPT1,PPT2,PPTC7,PPWD1,PPY,PPY2P,PQBP1,PRAC1,PRADC1,PRAF2,PRAM1,PRAME,PRAMEF1,PRAMEF13,PRAMEF14,PRAMEF2,PRAMENP,PRAP1,PRB1,PRB3,PRB4,PRC1,PRCC,PRCD,PRCP,PRDM1,PRDM10,PRDM11,PRDM12,PRDM13,PRDM14,PRDM15,PRDM16,PRDM2,PRDM4,PRDM5,PRDM7,PRDM8,PRDM9,PRDX1,PRDX2,PRDX3,PRDX4,PRDX5,PRDX6,PREB,PRECSIT,PRELID1,PRELID2,PRELID3A,PRELID3B,PRELP,PREP,PREPL,PREX1,PREX2,PRF1,PRG2,PRG3,PRG4,PRH1,PRH2,PRICKLE1,PRICKLE2,PRICKLE3,PRICKLE4,PRIM1,PRIM2,PRIMA1,PRIMPOL,PRINS,PRKAA1,PRKAA2,PRKAB1,PRKAB2,PRKACA,PRKACB,PRKACG,PRKAG1,PRKAG2,PRKAG3,PRKAR1A,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKCI,PRKCQ,PRKCSH,PRKCZ,PRKD1,PRKD2,PRKD3,PRKDC,PRKG1,PRKG2,PRKN,PRKRA,PRKRIP1,PRKX,PRKY,PRL,PRLH,PRLHR,PRLR,PRM1,PRM2,PRM3,PRMT1,PRMT2,PRMT3,PRMT5,PRMT6,PRMT7,PRMT8,PRMT9,PRND,PRNP,PRNT,PRO2268,PROC,PROCA1,PROCR,PRODH,PRODH2,PROK1,PROK2,PROKR1,PROKR2,PROM1,PROM2,PROP1,PRORP,PROS1,PROSER1,PROSER2,PROSER3,PROX1,PROZ,PRP4K,PRPF18,PRPF19,PRPF3,PRPF31,PRPF38A,PRPF38B,PRPF39,PRPF4,PRPF40A,PRPF40B,PRPF6,PRPF8,PRPH,PRPH2,PRPS1,PRPS1L1,PRPS2,PRPSAP1,PRPSAP2,PRR11,PRR12,PRR13,PRR14,PRR14L,PRR15,PRR15L,PRR16,PRR18,PRR19,PRR22,PRR23C,PRR27,PRR3,PRR30,PRR34,PRR35,PRR4,PRR5,PRR5L,PRR7,PRRC1,PRRC2A,PRRC2B,PRRC2C,PRRG1,PRRG2,PRRG3,PRRG4,PRRT1,PRRT2,PRRT3,PRRX1,PRRX2,PRSS1,PRSS12,PRSS16,PRSS2,PRSS21,PRSS22,PRSS23,PRSS27,PRSS3,PRSS30P,PRSS33,PRSS35,PRSS36,PRSS38,PRSS3P2,PRSS41,PRSS42P,PRSS45P,PRSS48,PRSS50,PRSS53,PRSS54,PRSS55,PRSS57,PRSS58,PRSS8,PRTFDC1,PRTN3,PRUNE1,PRUNE2,PRX,PRXL2A,PRXL2B,PRY,PRY2,PSAP,PSAT1,PSCA,PSD,PSD2,PSD3,PSD4,PSEN1,PSEN2,PSENEN,PSG1,PSG10P,PSG11,PSG2,PSG3,PSG4,PSG5,PSG6,PSG7,PSG8,PSG9,PSIP1,PSKH1,PSKH2,PSMA1,PSMA2,PSMA3,PSMA4,PSMA5,PSMA7,PSMA8,PSMB1,PSMB10,PSMB2,PSMB3,PSMB4,PSMB5,PSMB6,PSMB7,PSMB8,PSMB9,PSMC2,PSMC3,PSMC3IP,PSMC4,PSMC5,PSMD1,PSMD10,PSMD11,PSMD12,PSMD13,PSMD14,PSMD2,PSMD3,PSMD4,PSMD5,PSMD6,PSMD7,PSMD8,PSMD9,PSME1,PSME2,PSME3,PSME3IP1,PSME4,PSMF1,PSMG1,PSMG2,PSMG3,PSMG4,PSORS1C1,PSORS1C2,PSPC1,PSPH,PSPN,PSRC1,PSTK,PSTPIP1,PSTPIP2,PTAFR,PTBP1,PTBP2,PTBP3,PTCD1,PTCD2,PTCD3,PTCH2,PTCHD1,PTCHD4,PTCRA,PTDSS1,PTDSS2,PTEN,PTENP1,PTER,PTF1A,PTGDR,PTGDR2,PTGDS,PTGER1,PTGER2,PTGER3,PTGER4,PTGES,PTGES2,PTGFR,PTGFRN,PTGIR,PTGIS,PTGR1,PTGR2,PTGR3,PTGS1,PTGS2,PTH,PTH1R,PTH2,PTH2R,PTHLH,PTK2,PTK2B,PTK6,PTK7,PTMA,PTMAP5,PTMS,PTN,PTOV1,PTP4A1,PTP4A2,PTP4A3,PTPA,PTPDC1,PTPMT1,PTPN1,PTPN11,PTPN12,PTPN13,PTPN14,PTPN18,PTPN2,PTPN21,PTPN22,PTPN23,PTPN3,PTPN4,PTPN5,PTPN6,PTPN7,PTPN9,PTPRA,PTPRB,PTPRC,PTPRCAP,PTPRD,PTPRE,PTPRF,PTPRG,PTPRH,PTPRJ,PTPRK,PTPRM,PTPRN,PTPRN2,PTPRO,PTPRR,PTPRS,PTPRT,PTPRU,PTPRZ1,PTRH1,PTRH2,PTRHD1,PTS,PTTG1,PTTG1IP,PTTG2,PTTG3P,PTX3,PUDP,PUF60,PUM1,PUM2,PUM3,PURA,PURB,PURG,PUS1,PUS10,PUS3,PUS7,PUS7L,PUSL1,PVALB,PVR,PVRIG,PWAR1,PWAR5,PWARSN,PWP1,PWP2,PWWP2B,PWWP3A,PWWP3B,PXDC1,PXDNL,PXK,PXMP2,PXMP4,PXN,PXT1,PXYLP1,PYCARD,PYCR2,PYCR3,PYDC1,PYGB,PYGL,PYGM,PYGO1,PYGO2,PYHIN1,PYM1,PYROXD1,PYROXD2,PYY,PYY2,PZP,QARS1,QDPR,QKI,QNG1,QPCT,QPCTL,QPRT,QRFP,QRFPR,QRICH1,QRICH2,QRSL1,QSER1,QSOX1,QSOX2,QTRT1,QTRT2,R3HCC1L,R3HDM1,R3HDM2,R3HDM4,R3HDML,RAB10,RAB11A,RAB11B,RAB11FIP1,RAB11FIP2,RAB11FIP3,RAB11FIP4,RAB11FIP5,RAB13,RAB14,RAB15,RAB17,RAB18,RAB1A,RAB1B,RAB1C,RAB20,RAB21,RAB22A,RAB23,RAB24,RAB25,RAB26,RAB27A,RAB27B,RAB28,RAB29,RAB2A,RAB2B,RAB30,RAB31,RAB32,RAB33A,RAB33B,RAB34,RAB35,RAB36,RAB37,RAB38,RAB39B,RAB3A,RAB3B,RAB3C,RAB3D,RAB3GAP2,RAB3IL1,RAB3IP,RAB40A,RAB40AL,RAB40B,RAB40C,RAB42,RAB43,RAB44,RAB4A,RAB4B,RAB5A,RAB5B,RAB5C,RAB5IF,RAB6A,RAB6B,RAB6C,RAB7A,RAB7B,RAB8A,RAB8B,RAB9A,RAB9B,RAB9BP1,RABAC1,RABEP1,RABEP2,RABEPK,RABGAP1,RABGAP1L,RABGEF1,RABGGTA,RABGGTB,RABIF,RABL2A,RABL2B,RABL6,RAC1,RAC2,RAC3,RACGAP1,RACGAP1P1,RACK1,RAD1,RAD17,RAD18,RAD21,RAD21L1,RAD23A,RAD23B,RAD50,RAD51,RAD51AP1,RAD51B,RAD51C,RAD51D,RAD52,RAD54B,RAD54L,RAD54L2,RAD9A,RADIL,RAE1,RAET1E,RAET1G,RAET1K,RAET1L,RAF1,RAG1,RAG2,RAI1,RAI14,RAI2,RALA,RALB,RALBP1,RALGAPA1,RALGAPA2,RALGAPB,RALGDS,RALGPS1,RALGPS2,RALY,RALYL,RAMP1,RAMP2,RAMP3,RAN,RANBP10,RANBP17,RANBP2,RANBP3,RANBP3L,RANBP9,RANGAP1,RANGRF,RAP1A,RAP1B,RAP1GAP,RAP1GAP2,RAP1GDS1,RAP2A,RAP2B,RAP2C,RAPGEF1,RAPGEF2,RAPGEF3,RAPGEF4,RAPGEF5,RAPGEF6,RAPGEFL1,RAPH1,RAPSN,RARA,RARB,RARG,RARRES1,RARRES2,RARS1,RARS2,RASA1,RASA2,RASA3,RASA4,RASA4B,RASA4CP,RASAL1,RASAL2,RASAL3,RASD1,RASD2,RASEF,RASGEF1A,RASGEF1B,RASGEF1C,RASGRF1,RASGRF2,RASGRP1,RASGRP2,RASGRP3,RASGRP4,RASIP1,RASL10A,RASL10B,RASL11A,RASL11B,RASL12,RASSF1,RASSF2,RASSF3,RASSF4,RASSF5,RASSF6,RASSF7,RASSF8,RASSF9,RAVER1,RAVER2,RAX,RAX2,RB1,RB1CC1,RBAK,RBBP4,RBBP5,RBBP6,RBBP7,RBBP8,RBBP8NL,RBBP9,RBCK1,RBFA,RBFOX1,RBFOX2,RBIS,RBKS,RBL1,RBL2,RBM10,RBM11,RBM12,RBM12B,RBM12B-AS1,RBM14,RBM15,RBM15B,RBM17,RBM18,RBM19,RBM22,RBM23,RBM24,RBM25,RBM26,RBM27,RBM28,RBM3,RBM33,RBM38,RBM39,RBM4,RBM41,RBM42,RBM43,RBM44,RBM45,RBM46,RBM47,RBM48,RBM4B,RBM5,RBM6,RBM7,RBM8A,RBMS1,RBMS2,RBMS3,RBMX,RBMX2,RBMXL1,RBMXL2,RBMXL3,RBMY1A1,RBMY1A3P,RBMY1B,RBMY1D,RBMY1E,RBMY1F,RBMY1J,RBMY2FP,RBMY3AP,RBP1,RBP2,RBP3,RBP4,RBP5,RBP7,RBPJ,RBPJL,RBPJP3,RBPMS,RBPMS2,RBSN,RBX1,RC3H2,RCAN1,RCAN2,RCAN3,RCBTB1,RCBTB2,RCC1,RCC1L,RCC2,RCD1,RCE1,RCHY1,RCL1,RCN1,RCN2,RCN3,RCOR1,RCOR2,RCOR3,RCSD1,RCVRN,RD3,RDH10,RDH11,RDH12,RDH13,RDH14,RDH16,RDH5,RDH8,RDM1,RDX,REC8,RECK,RECQL,RECQL4,RECQL5,REDIC1,REEP1,REEP2,REEP3,REEP4,REEP5,REEP6,REG1A,REG1B,REG1CP,REG3A,REG3G,REG4,REL,RELA,RELB,RELCH,RELL1,RELL2,RELN,RELT,REM1,REM2,REN,RENBP,REPIN1,REPS1,REPS2,RER1,RERE,RERG,RERGL,RESF1,REST,RET,RETN,RETNLB,RETREG1,RETREG2,RETREG3,RETSAT,REV1,REV3L,REX1BD,REXO1,REXO1L1P,REXO1L2P,REXO2,RFC1,RFC2,RFC3,RFC4,RFC5,RFESD,RFFL,RFK,RFLNA,RFPL1,RFPL1S,RFPL2,RFPL3,RFT1,RFTN1,RFTN2,RFWD3,RFX1,RFX2,RFX3,RFX4,RFX5,RFX6,RFX7,RFX8,RFXANK,RFXAP,RGCC,RGL1,RGL2,RGL3,RGL4,RGMA,RGMB,RGN,RGP1,RGPD1,RGPD3,RGPD4,RGR,RGS1,RGS10,RGS11,RGS12,RGS13,RGS14,RGS16,RGS17,RGS18,RGS19,RGS2,RGS20,RGS22,RGS3,RGS4,RGS5,RGS6,RGS7,RGS8,RGS9,RGS9BP,RGSL1,RHAG,RHBDD1,RHBDD2,RHBDD3,RHBDF1,RHBDF2,RHBDL1,RHBDL2,RHBDL3,RHBG,RHCE,RHCG,RHD,RHEB,RHEBL1,RHNO1,RHO,RHOA,RHOB,RHOBTB1,RHOBTB2,RHOBTB3,RHOC,RHOD,RHOF,RHOG,RHOH,RHOJ,RHOQ,RHOT1,RHOT2,RHOU,RHOV,RHOXF1,RHOXF2,RHOXF2B,RHPN1,RHPN1-AS1,RHPN2,RIBC1,RIBC2,RIC1,RIC3,RIC8A,RIC8B,RICTOR,RIDA,RIF1,RIGI,RILP,RILPL1,RIMBP2,RIMKLA,RIMKLB,RIMOC1,RIMS1,RIMS2,RIMS3,RIMS4,RIN1,RIN2,RIN3,RING1,RINL,RINT1,RIOK1,RIOK2,RIOK3,RIOX1,RIOX2,RIPK1,RIPK2,RIPK3,RIPK4,RIPOR1,RIPOR2,RIPOR3,RIPPLY1,RIPPLY3,RIT1,RIT2,RITA1,RLBP1,RLF,RLIG1,RLIM,RLN1,RLN2,RLN3,RMC1,RMDN1,RMDN2,RMDN3,RMI1,RMI2,RMND1,RMND5B,RN7SL2,RN7SL263P,RNA28S5,RNASE1,RNASE11,RNASE12,RNASE2,RNASE2CP,RNASE3,RNASE4,RNASE6,RNASE7,RNASE8,RNASE9,RNASEH1,RNASEH2A,RNASEH2B,RNASEH2C,RNASEK,RNASEK-C17orf49,RNASEL,RNASET2,RND1,RND2,RND3,RNF10,RNF103,RNF103-CHMP3,RNF11,RNF111,RNF112,RNF113A,RNF113B,RNF114,RNF115,RNF121,RNF122,RNF123,RNF125,RNF126,RNF126P1,RNF128,RNF13,RNF130,RNF133,RNF135,RNF138,RNF138P1,RNF139,RNF14,RNF141,RNF144A,RNF144B,RNF145,RNF146,RNF148,RNF149,RNF152,RNF166,RNF167,RNF168,RNF169,RNF17,RNF170,RNF175,RNF181,RNF182,RNF183,RNF185,RNF186,RNF19A,RNF19B,RNF2,RNF20,RNF207,RNF208,RNF212,RNF213,RNF214,RNF216,RNF216P1,RNF217,RNF220,RNF24,RNF25,RNF26,RNF31,RNF32,RNF32-DT,RNF34,RNF38,RNF39,RNF4,RNF40,RNF41,RNF43,RNF44,RNF6,RNF7,RNF8,RNFT1,RNFT2,RNGTT,RNH1,RNLS,RNMT,RNPC3,RNPEP,RNPEPL1,RNPS1,RNR2,RNU1-1,RNU11,RNU12-2P,RNU2-2,RNU4-3P,RNU5D-1,RNU5E-1,RNU6-1,RNU7-1,RNU7-55P,RNY1,RNY5,RO60,ROBO1,ROBO3,ROBO4,ROCK1,ROCK1P1,ROCK2,ROGDI,ROM1,ROPN1,ROPN1B,ROPN1L,ROR1,ROR2,RORA,RORB,RORC,ROS1,RP1,RP1L1,RP2,RP9,RP9P,RPA1,RPA2,RPA3,RPA4,RPAIN,RPAP1,RPAP2,RPAP3,RPE,RPE65,RPF1,RPF2,RPGR,RPGRIP1,RPH3A,RPH3AL,RPIA,RPL10,RPL10L,RPL11,RPL13,RPL13AP17,RPL13AP3,RPL13P5,RPL14,RPL15,RPL17,RPL18,RPL19,RPL21P19,RPL21P44,RPL22,RPL23,RPL23A,RPL23AP32,RPL23AP53,RPL23AP64,RPL23AP7,RPL23AP82,RPL24,RPL26,RPL27,RPL27A,RPL28,RPL30,RPL31,RPL32,RPL32P3,RPL34,RPL35,RPL35A,RPL36,RPL36AL,RPL36AP40,RPL37,RPL37A,RPL38,RPL39,RPL39L,RPL39P5,RPL3L,RPL4,RPL41,RPL5,RPL6,RPL7A,RPL8,RPL9,RPL9P11,RPLP0,RPLP0P2,RPLP2,RPN1,RPN2,RPP14,RPP21,RPP25,RPP25L,RPP30,RPP38,RPP38-DT,RPP40,RPRD1A,RPRD1B,RPRD2,RPRM,RPRML,RPS10P7,RPS11,RPS12,RPS13,RPS14,RPS14P3,RPS15,RPS15A,RPS15AP10,RPS16,RPS16P5,RPS17,RPS18,RPS18P9,RPS19,RPS19BP1,RPS2,RPS20,RPS20P27,RPS21,RPS23,RPS24,RPS25,RPS26,RPS27,RPS27L,RPS28,RPS29,RPS2P32,RPS3A,RPS4X,RPS4Y1,RPS4Y2,RPS5,RPS6,RPS6KA1,RPS6KA2,RPS6KA3,RPS6KA4,RPS6KA5,RPS6KA6,RPS6KB1,RPS6KB2,RPS6KC1,RPS6KL1,RPS7,RPS9,RPSA,RPSA2,RPSAP15,RPSAP52,RPTOR,RPUSD1,RPUSD2,RPUSD3,RPUSD4,RRAD,RRAGA,RRAGB,RRAGC,RRAGD,RRAS,RRAS2,RRBP1,RREB1,RRH,RRM1,RRM2,RRM2B,RRN3,RRN3P1,RRN3P2,RRN3P3,RRP1,RRP12,RRP15,RRP1B,RRP36,RRP7A,RRP7BP,RRP8,RRP9,RRS1,RS1,RSAD1,RSAD2,RSBN1,RSBN1L,RSC1A1,RSF1,RSKR,RSL1D1,RSL24D1,RSPH1,RSPH10B,RSPH10B2,RSPH14,RSPH3,RSPH6A,RSPH9,RSPO1,RSPO2,RSPO3,RSPRY1,RSRC1,RSRC2,RSRP1,RSU1,RTBDN,RTCA,RTCB,RTEL1,RTF1,RTF2,RTKN,RTKN2,RTL10,RTL4,RTL6,RTL8A,RTL8B,RTL8C,RTL9,RTN1,RTN2,RTN3,RTN4,RTN4IP1,RTN4R,RTN4RL1,RTN4RL2,RTP1,RTP2,RTP3,RTP4,RTP5,RTRAF,RTTN,RUBCN,RUBCNL,RUFY1,RUFY2,RUFY3,RUFY4,RUNDC1,RUNDC3A,RUNDC3B,RUNX1,RUNX1-IT1,RUNX1T1,RUNX2,RUNX3,RUSC1,RUSC1-AS1,RUSF1,RUVBL1,RUVBL2,RWDD1,RWDD2A,RWDD2B,RWDD3,RWDD4,RXFP1,RXFP2,RXFP3,RXFP4,RXRA,RXRB,RXRG,RXYLT1,RYBP,RYK,RYR1,RYR2,RYR3,S100A10,S100A11,S100A12,S100A13,S100A14,S100A16,S100A6,S100A7,S100A7A,S100A8,S100A9,S100B,S100G,S100P,S100PBP,S100Z,S1PR1,S1PR2,S1PR3,S1PR4,S1PR5,SAA1,SAA2,SAA3P,SAA4,SAAL1,SAC3D1,SACM1L,SACS,SAE1,SAFB,SAFB2,SAG,SAGE1,SALL1,SALL2,SALL3,SALL4,SAMD1,SAMD10,SAMD11,SAMD12,SAMD14,SAMD3,SAMD4A,SAMD4B,SAMD7,SAMD8,SAMD9,SAMD9L,SAMHD1,SAMM50,SAMSN1,SAMTOR,SANBR,SAP130,SAP18,SAP25,SAP30,SAP30BP,SAP30L,SAPCD1,SAPCD2,SAR1A,SAR1B,SARAF,SARDH,SARM1,SARNP,SARS2,SART1,SART3,SASH1,SASH3,SASS6,SAT1,SAT2,SATB1,SATB2,SAV1,SAXO1,SAXO4,SAXO5,SAYSD1,SBDS,SBDSP1,SBF1,SBF2,SBNO1,SBNO2,SBSN,SBSPON,SC5D,SCAF1,SCAF11,SCAF4,SCAF8,SCAI,SCAMP1,SCAMP2,SCAMP3,SCAMP4,SCAMP5,SCAND1,SCAND2P,SCAND3,SCAP,SCAPER,SCARA3,SCARA5,SCARB1,SCARB2,SCARF1,SCARF2,SCARNA1,SCARNA10,SCARNA11,SCARNA12,SCARNA14,SCARNA16,SCARNA21,SCARNA22,SCARNA23,SCARNA27,SCARNA3,SCARNA4,SCARNA5,SCARNA6,SCARNA7,SCARNA8,SCARNA9L,SCCPDH,SCD,SCD5,SCEL,SCFD1,SCFD2,SCG2,SCG3,SCG5,SCGB1A1,SCGB1D1,SCGB1D2,SCGB1D4,SCGB2A1,SCGB2A2,SCGB3A1,SCGB3A2,SCGN,SCHIP1,SCIMP,SCIN,SCLT1,SCLY,SCMH1,SCML1,SCML2,SCML4,SCN10A,SCN11A,SCN1A,SCN1B,SCN2A,SCN2B,SCN3A,SCN3B,SCN4A,SCN4B,SCN5A,SCN7A,SCN8A,SCN9A,SCNM1,SCNN1A,SCNN1B,SCNN1D,SCNN1G,SCO1,SCO2,SCOC,SCP2,SCP2D1,SCPEP1,SCRG1,SCRIB,SCRN1,SCRN2,SCRN3,SCRT2,SCT,SCTR,SCUBE1,SCUBE2,SCUBE3,SCYL1,SCYL2,SCYL3,SDAD1,SDC1,SDC2,SDC3,SDC4,SDCBP,SDCBP2,SDCCAG8,SDE2,SDF2,SDF2L1,SDF4,SDHA,SDHAF2,SDHAF3,SDHAF4,SDHAP1,SDHAP2,SDHB,SDHC,SDHD,SDK1,SDK2,SDR16C5,SDR39U1,SDR42E1,SDR9C7,SDS,SDSL,SEC11A,SEC11C,SEC13,SEC14L1,SEC14L2,SEC14L3,SEC14L4,SEC14L5,SEC16B,SEC1P,SEC22A,SEC22B,SEC22C,SEC23A,SEC23B,SEC23IP,SEC24A,SEC24B,SEC24C,SEC24D,SEC31A,SEC31B,SEC61A1,SEC61A2,SEC61G,SEC62,SEC63,SECISBP2,SECISBP2L,SECTM1,SEH1L,SEL1L,SEL1L3,SELE,SELENBP1,SELENOF,SELENOH,SELENOI,SELENOK,SELENOM,SELENON,SELENOO,SELENOP,SELENOS,SELENOT,SELENOV,SELENOW,SELL,SELP,SELPLG,SEM1,SEMA3A,SEMA3B,SEMA3C,SEMA3D,SEMA3E,SEMA3F,SEMA3G,SEMA4A,SEMA4B,SEMA4C,SEMA4D,SEMA4F,SEMA4G,SEMA5A,SEMA5B,SEMA6A,SEMA6B,SEMA6C,SEMA6D,SEMA7A,SEMG1,SEMG2,SENP1,SENP2,SENP3,SENP5,SENP6,SENP7,SENP8,SEPHS1,SEPHS2,SEPSECS,SEPTIN1,SEPTIN10,SEPTIN11,SEPTIN12,SEPTIN14,SEPTIN14P20,SEPTIN3,SEPTIN4,SEPTIN5,SEPTIN6,SEPTIN7,SEPTIN8,SEPTIN9,SERAC1,SERBP1,SERF1A,SERF1B,SERF2,SERF2-C15ORF63,SERGEF,SERHL,SERHL2,SERINC1,SERINC2,SERINC3,SERINC4,SERINC5,SERP1,SERP2,SERPINA1,SERPINA10,SERPINA12,SERPINA13P,SERPINA2,SERPINA3,SERPINA4,SERPINA5,SERPINA6,SERPINA7,SERPINA9,SERPINB1,SERPINB10,SERPINB11,SERPINB12,SERPINB13,SERPINB2,SERPINB3,SERPINB4,SERPINB5,SERPINB6,SERPINB7,SERPINB8,SERPINB9,SERPINC1,SERPIND1,SERPINE1,SERPINE2,SERPINF1,SERPINF2,SERPING1,SERPINH1,SERPINI1,SERPINI2,SERTAD1,SERTAD2,SERTAD3,SERTAD4,SERTAD4-AS1,SERTM1,SESN1,SESN2,SESN3,SESTD1,SET,SETBP1,SETD2,SETD3,SETD4,SETD5,SETD6,SETD7,SETD9,SETDB1,SETDB2,SETMAR,SETX,SEZ6,SEZ6L,SEZ6L2,SF1,SF3A1,SF3A2,SF3A3,SF3B1,SF3B2,SF3B3,SF3B4,SF3B5,SF3B6,SFI1,SFMBT1,SFN,SFPQ,SFR1,SFRP1,SFRP2,SFRP4,SFRP5,SFSWAP,SFT2D1,SFT2D2,SFT2D3,SFTA2,SFTA3,SFTPB,SFTPC,SFTPD,SFXN1,SFXN2,SFXN3,SFXN4,SFXN5,SGCA,SGCB,SGCD,SGCE,SGCG,SGCZ,SGF29,SGIP1,SGK1,SGK2,SGK3,SGMS1,SGMS2,SGO1,SGO2,SGPL1,SGPP1,SGPP2,SGSH,SGSM2,SGSM3,SGTA,SGTB,SH2B1,SH2B2,SH2B3,SH2D1A,SH2D1B,SH2D2A,SH2D3A,SH2D3C,SH2D4A,SH2D4B,SH2D6,SH3BGR,SH3BGRL,SH3BGRL2,SH3BGRL3,SH3BP1,SH3BP2,SH3BP4,SH3BP5,SH3BP5L,SH3D21,SH3GL1,SH3GL1P1,SH3GL1P2,SH3GL2,SH3GL3,SH3GLB1,SH3GLB2,SH3KBP1,SH3PXD2A,SH3PXD2B,SH3RF1,SH3RF2,SH3TC1,SH3TC2,SH3YL1,SHANK1,SHANK2,SHANK2-AS3,SHARPIN,SHB,SHBG,SHC1,SHC3,SHC4,SHCBP1,SHCBP1L,SHD,SHF,SHFL,SHH,SHISA2,SHISA4,SHISA5,SHISA6,SHISA7,SHISAL2A,SHKBP1,SHLD1,SHLD2,SHLD2P1,SHLD2P3,SHMT1,SHMT2,SHOC1,SHOC2,SHOX2,SHPK,SHPRH,SHQ1,SHROOM1,SHROOM2,SHROOM3,SHTN1,SI,SIAE,SIAH1,SIAH2,SIAH3,SIDT1,SIDT2,SIGIRR,SIGLEC1,SIGLEC10,SIGLEC11,SIGLEC12,SIGLEC14,SIGLEC15,SIGLEC5,SIGLEC6,SIGLEC7,SIGLEC8,SIGLEC9,SIGLECL1,SIGMAR1,SIK1,SIK2,SIK3,SIKE1,SIL1,SIM1,SIM2,SIMC1,SIN3A,SIN3B,SINHCAF,SIPA1,SIPA1L1,SIPA1L2,SIRPA,SIRPB1,SIRPB2,SIRPD,SIRPG,SIRT1,SIRT2,SIRT3,SIRT4,SIRT5,SIRT6,SIRT7,SIT1,SIVA1,SIX1,SIX2,SIX3,SIX4,SIX5,SIX6,SKA1,SKA2,SKA2P1,SKA3,SKAP1,SKAP2,SKI,SKIC2,SKIC3,SKIC8,SKIDA1,SKIL,SKOR1,SKP1,SKP2,SLA,SLA2,SLAIN1,SLAIN2,SLAMF1,SLAMF6,SLAMF7,SLAMF8,SLAMF9,SLBP,SLC10A1,SLC10A2,SLC10A3,SLC10A4,SLC10A5,SLC10A6,SLC10A7,SLC11A1,SLC11A2,SLC12A1,SLC12A2,SLC12A3,SLC12A4,SLC12A5,SLC12A6,SLC12A7,SLC12A8,SLC12A9,SLC13A1,SLC13A2,SLC13A3,SLC13A4,SLC13A5,SLC14A1,SLC14A2,SLC15A1,SLC15A2,SLC15A3,SLC15A4,SLC16A1,SLC16A10,SLC16A12,SLC16A13,SLC16A14,SLC16A2,SLC16A3,SLC16A4,SLC16A5,SLC16A6,SLC16A8,SLC16A9,SLC17A1,SLC17A2,SLC17A3,SLC17A4,SLC17A5,SLC17A6,SLC17A7,SLC17A8,SLC17A9,SLC18A1,SLC18A2,SLC18A3,SLC18B1,SLC19A1,SLC19A2,SLC19A3,SLC19A4P,SLC1A1,SLC1A2,SLC1A3,SLC1A4,SLC1A5,SLC1A6,SLC1A7,SLC20A1,SLC20A2,SLC22A1,SLC22A10,SLC22A11,SLC22A12,SLC22A13,SLC22A14,SLC22A15,SLC22A16,SLC22A17,SLC22A18,SLC22A18AS,SLC22A2,SLC22A20P,SLC22A23,SLC22A24,SLC22A25,SLC22A3,SLC22A4,SLC22A5,SLC22A6,SLC22A7,SLC22A8,SLC22A9,SLC23A1,SLC23A2,SLC23A3,SLC24A1,SLC24A2,SLC24A3,SLC24A4,SLC24A5,SLC25A1,SLC25A10,SLC25A11,SLC25A12,SLC25A13,SLC25A14,SLC25A15,SLC25A16,SLC25A17,SLC25A18,SLC25A19,SLC25A2,SLC25A20,SLC25A21,SLC25A22,SLC25A23,SLC25A24,SLC25A25,SLC25A26,SLC25A27,SLC25A28,SLC25A29,SLC25A3,SLC25A31,SLC25A32,SLC25A33,SLC25A34,SLC25A35,SLC25A36,SLC25A37,SLC25A39,SLC25A4,SLC25A40,SLC25A41,SLC25A42,SLC25A43,SLC25A44,SLC25A45,SLC25A46,SLC25A47,SLC25A48,SLC25A5,SLC25A51,SLC25A52,SLC26A1,SLC26A10P,SLC26A11,SLC26A2,SLC26A3,SLC26A4,SLC26A5,SLC26A6,SLC26A7,SLC26A8,SLC26A9,SLC27A1,SLC27A2,SLC27A3,SLC27A4,SLC27A5,SLC27A6,SLC28A1,SLC28A2,SLC28A3,SLC29A1,SLC29A2,SLC29A3,SLC29A4,SLC2A1,SLC2A10,SLC2A11,SLC2A12,SLC2A13,SLC2A14,SLC2A2,SLC2A3,SLC2A4,SLC2A4RG,SLC2A5,SLC2A7,SLC2A8,SLC2A9,SLC30A1,SLC30A10,SLC30A2,SLC30A3,SLC30A4,SLC30A5,SLC30A6,SLC30A7,SLC30A8,SLC30A9,SLC31A1,SLC31A2,SLC32A1,SLC33A1,SLC34A1,SLC34A2,SLC35A1,SLC35A2,SLC35A3,SLC35A4,SLC35A5,SLC35B1,SLC35B2,SLC35B3,SLC35B4,SLC35C1,SLC35C2,SLC35D1,SLC35D2,SLC35E1,SLC35E2B,SLC35E3,SLC35E4,SLC35F2,SLC35F3,SLC35F5,SLC35F6,SLC35G1,SLC35G2,SLC35G3,SLC35G4,SLC35G5,SLC35G6,SLC36A1,SLC36A2,SLC36A3,SLC36A4,SLC37A1,SLC37A2,SLC37A3,SLC37A4,SLC38A1,SLC38A10,SLC38A11,SLC38A2,SLC38A3,SLC38A4,SLC38A5,SLC38A6,SLC38A7,SLC38A9,SLC39A1,SLC39A11,SLC39A12,SLC39A13,SLC39A14,SLC39A2,SLC39A3,SLC39A4,SLC39A5,SLC39A6,SLC39A7,SLC39A8,SLC39A9,SLC3A1,SLC3A2,SLC40A1,SLC41A1,SLC41A2,SLC41A3,SLC43A1,SLC43A2,SLC43A3,SLC44A1,SLC44A2,SLC44A3,SLC44A4,SLC44A5,SLC45A2,SLC45A3,SLC45A4,SLC46A1,SLC46A2,SLC46A3,SLC47A1,SLC47A2,SLC48A1,SLC49A3,SLC49A4,SLC4A1,SLC4A10,SLC4A11,SLC4A1AP,SLC4A2,SLC4A3,SLC4A4,SLC4A5,SLC4A7,SLC4A8,SLC4A9,SLC50A1,SLC51B,SLC52A1,SLC52A2,SLC52A3,SLC5A1,SLC5A10,SLC5A11,SLC5A12,SLC5A2,SLC5A3,SLC5A4,SLC5A5,SLC5A6,SLC5A7,SLC5A8,SLC66A1,SLC66A2,SLC66A3,SLC6A1,SLC6A10P,SLC6A11,SLC6A12,SLC6A13,SLC6A14,SLC6A15,SLC6A16,SLC6A18,SLC6A19,SLC6A2,SLC6A20,SLC6A3,SLC6A4,SLC6A5,SLC6A6,SLC6A7,SLC6A8,SLC6A9,SLC7A1,SLC7A10,SLC7A11,SLC7A13,SLC7A14,SLC7A2,SLC7A3,SLC7A4,SLC7A5,SLC7A5P1,SLC7A5P2,SLC7A6,SLC7A6OS,SLC7A7,SLC7A8,SLC7A9,SLC8A1,SLC8A3,SLC8B1,SLC9A1,SLC9A2,SLC9A3,SLC9A5,SLC9A6,SLC9A7,SLC9A8,SLC9A9,SLC9B1,SLC9B2,SLC9C2,SLCO1A2,SLCO1B1,SLCO1B3,SLCO1B3-SLCO1B7,SLCO1C1,SLCO2A1,SLCO2B1,SLCO3A1,SLCO4A1,SLCO4C1,SLCO5A1,SLCO6A1,SLED1,SLF1,SLF2,SLFN11,SLFN12,SLFN13,SLFN5,SLFNL1,SLIRP,SLIRP-OT1,SLIT1,SLIT2,SLIT3,SLITRK1,SLITRK2,SLITRK3,SLITRK4,SLITRK5,SLITRK6,SLK,SLMAP,SLN,SLPI,SLTM,SLU7,SLURP1,SLX4,SLX9,SMAD1,SMAD2,SMAD3,SMAD4,SMAD5,SMAD5-AS1,SMAD6,SMAD7,SMAD9,SMAGP,SMAP1,SMAP2,SMARCA1,SMARCA2,SMARCA4,SMARCA5,SMARCAD1,SMARCAL1,SMARCB1,SMARCC1,SMARCC2,SMARCD1,SMARCD2,SMARCD3,SMARCE1,SMC1A,SMC1B,SMC2,SMC3,SMC4,SMC5,SMC6,SMCHD1,SMCO4,SMCP,SMCR5,SMCR8,SMDT1,SMG1,SMG5,SMG6,SMG6-IT1,SMG7,SMG8,SMG9,SMIM10L2B,SMIM10L3,SMIM11,SMIM12,SMIM14,SMIM15,SMIM19,SMIM29,SMIM3,SMIM43,SMIM7,SMIM8,SMNDC1,SMO,SMOC1,SMOC2,SMOX,SMPD1,SMPD2,SMPD3,SMPD4,SMPDL3A,SMPDL3B,SMPX,SMR3A,SMR3B,SMTN,SMTNL2,SMU1,SMUG1,SMURF1,SMURF2,SMYD1,SMYD2,SMYD3,SMYD4,SMYD5,SNAI1,SNAI2,SNAI3,SNAP23,SNAP25,SNAP29,SNAP47,SNAP91,SNAPC1,SNAPC2,SNAPC3,SNAPC4,SNAPC5,SNAPIN,SNCA,SNCAIP,SNCB,SNCG,SND1,SND1-IT1,SNED1,SNF8,SNHG11,SNHG12,SNHG20,SNHG28,SNHG29,SNHG3,SNHG32,SNHG4,SNHG7,SNIP1,SNN,SNORA1,SNORA10,SNORA11C,SNORA12,SNORA13,SNORA14B,SNORA16A,SNORA16B,SNORA17A,SNORA17B,SNORA18,SNORA19,SNORA20,SNORA21,SNORA23,SNORA25,SNORA28,SNORA29,SNORA2A,SNORA2B,SNORA2C,SNORA30,SNORA31,SNORA32,SNORA35,SNORA36A,SNORA36B,SNORA36C,SNORA37,SNORA38,SNORA38B,SNORA4,SNORA40,SNORA41,SNORA44,SNORA46,SNORA48,SNORA49,SNORA50A,SNORA51,SNORA53,SNORA54,SNORA55,SNORA56,SNORA58,SNORA59A,SNORA59B,SNORA5A,SNORA5B,SNORA5C,SNORA60,SNORA61,SNORA63,SNORA64,SNORA66,SNORA67,SNORA70,SNORA70E,SNORA70F,SNORA71E,SNORA72,SNORA73A,SNORA74A,SNORA74B,SNORA75,SNORA77,SNORA7A,SNORA7B,SNORA8,SNORA80B,SNORA80E,SNORA81,SNORC,SNORD10,SNORD103A,SNORD103B,SNORD105,SNORD107,SNORD108,SNORD109A,SNORD109B,SNORD11,SNORD110,SNORD115-1,SNORD115-2,SNORD115-3,SNORD115-4,SNORD115-5,SNORD115-6,SNORD115-7,SNORD115-8,SNORD115-9,SNORD116-1,SNORD116-2,SNORD116-3,SNORD116-4,SNORD116-5,SNORD116-6,SNORD116-7,SNORD116-8,SNORD116-9,SNORD117,SNORD12C,SNORD13P3,SNORD19B,SNORD2,SNORD20,SNORD21,SNORD23,SNORD24,SNORD36A,SNORD36B,SNORD36C,SNORD37,SNORD3F,SNORD41,SNORD44,SNORD45A,SNORD45B,SNORD45C,SNORD47,SNORD49A,SNORD5,SNORD51,SNORD52,SNORD54,SNORD56,SNORD56B,SNORD57,SNORD58A,SNORD58B,SNORD59A,SNORD59B,SNORD6,SNORD62A,SNORD62B,SNORD63,SNORD64,SNORD65,SNORD67,SNORD68,SNORD74,SNORD75,SNORD76,SNORD78,SNORD80,SNORD82,SNORD84,SNORD86,SNORD88B,SNORD88C,SNORD89,SNORD94,SNORD95,SNORD96A,SNORD96B,SNORD97,SNPH,SNRK,SNRNP200,SNRNP25,SNRNP27,SNRNP35,SNRNP40,SNRNP48,SNRNP70,SNRPA,SNRPA1,SNRPB,SNRPB2,SNRPC,SNRPD1,SNRPD2,SNRPD3,SNRPF,SNRPN,SNTA1,SNTB1,SNTB2,SNTG1,SNU13,SNUPN,SNURF,SNW1,SNX1,SNX10,SNX11,SNX12,SNX13,SNX14,SNX15,SNX16,SNX17,SNX18,SNX19,SNX2,SNX20,SNX21,SNX22,SNX24,SNX25,SNX27,SNX29,SNX29P1,SNX3,SNX30,SNX31,SNX32,SNX33,SNX4,SNX5,SNX6,SNX7,SNX8,SNX9,SOAT1,SOAT2,SOBP,SOCS1,SOCS2,SOCS3,SOCS4,SOCS5,SOCS6,SOD1,SOD2,SOD3,SOHLH2,SON,SORBS1,SORBS2,SORBS3,SORCS1,SORCS2,SORCS3,SORD,SORL1,SORT1,SOS1,SOS2,SOST,SOSTDC1,SOWAHA,SOX1,SOX10,SOX11,SOX12,SOX13,SOX14,SOX15,SOX17,SOX18,SOX2,SOX2-OT,SOX21,SOX3,SOX30,SOX4,SOX5,SOX6,SOX7,SOX8,SOX9,SP1,SP100,SP110,SP140,SP140L,SP2,SP3,SP4,SP5,SP6,SP7,SP8,SP9,SPA17,SPACA1,SPACA3,SPACA4,SPACA5,SPACA5B,SPACA6,SPACA7,SPACA9,SPACDR,SPAG1,SPAG11A,SPAG11B,SPAG16,SPAG17,SPAG4,SPAG5,SPAG6,SPAG7,SPAG8,SPAG9,SPAM1,SPANXA1,SPANXA2,SPANXB1,SPANXC,SPANXD,SPANXN5,SPARC,SPARCL1,SPART,SPAST,SPATA1,SPATA12,SPATA13,SPATA16,SPATA17,SPATA18,SPATA19,SPATA2,SPATA20,SPATA21,SPATA22,SPATA24,SPATA25,SPATA2L,SPATA3,SPATA31D1,SPATA31D3,SPATA31D4,SPATA31D5P,SPATA31E1,SPATA31G1,SPATA31H1,SPATA32,SPATA33,SPATA4,SPATA46,SPATA6,SPATA6L,SPATA7,SPATA8,SPATA9,SPATC1,SPATC1L,SPATS1,SPATS2,SPATS2L,SPC24,SPC25,SPCS1,SPCS3,SPDEF,SPDL1,SPDYA,SPDYE1,SPDYE2,SPDYE2B,SPDYE3,SPDYE5,SPDYE6,SPDYE7P,SPDYE8,SPECC1,SPECC1L,SPEF1,SPEF2,SPEG,SPEM1,SPEM2,SPEN,SPESP1,SPG11,SPG21,SPG7,SPHK1,SPHK2,SPI1,SPIB,SPIC,SPICE1,SPIN1,SPIN2A,SPIN2B,SPIN3,SPINDOC,SPINK1,SPINK14,SPINK4,SPINK5,SPINK6,SPINK7,SPINT1,SPINT2,SPINT3,SPINT4,SPIRE1,SPMAP2,SPMIP10,SPMIP2,SPMIP4,SPMIP5,SPMIP6,SPMIP8,SPMIP9,SPN,SPNS1,SPNS2,SPNS3,SPO11,SPOCD1,SPOCK1,SPOCK2,SPOCK3,SPON1,SPON2,SPOP,SPOPL,SPOUT1,SPP1,SPP2,SPPL2A,SPPL2B,SPPL2C,SPPL3,SPR,SPRED1,SPRED2,SPRING1,SPRN,SPRNP1,SPRR1A,SPRR1B,SPRR2A,SPRR2B,SPRR2C,SPRR2D,SPRR2E,SPRR2F,SPRR3,SPRR4,SPRTN,SPRY1,SPRY2,SPRY4,SPRYD3,SPRYD4,SPRYD7,SPSB1,SPSB2,SPSB3,SPSB4,SPTA1,SPTAN1,SPTB,SPTBN1,SPTBN2,SPTBN4,SPTBN5,SPTLC1,SPTLC2,SPTLC3,SPTSSA,SPTSSB,SPTY2D1,SPX,SPZ1,SQLE,SQOR,SQSTM1,SRA1,SRARP,SRBD1,SRC,SRCAP,SRCIN1,SRD5A1,SRD5A1P1,SRD5A2,SRD5A3,SREBF1,SREBF2,SREK1,SREK1IP1,SRF,SRFBP1,SRGAP1,SRGAP3,SRGN,SRI,SRL,SRM,SRMS,SRP14,SRP19,SRP54,SRP68,SRP72,SRP9,SRPK1,SRPK2,SRPK3,SRPRA,SRPRB,SRPX,SRPX2,SRR,SRRD,SRRM1,SRRM2,SRRM3,SRRM4,SRRM5,SRRT,SRSF1,SRSF10,SRSF11,SRSF12,SRSF2,SRSF3,SRSF4,SRSF5,SRSF6,SRSF7,SRSF9,SRXN1,SRY,SS18,SS18L1,SS18L2,SSB,SSBP1,SSBP2,SSBP3,SSBP4,SSC4D,SSH1,SSH2,SSH3,SSMEM1,SSNA1,SSPN,SSPOP,SSR1,SSR2,SSR3,SSR4,SSR4P1,SSRP1,SST,SSTR1,SSTR2,SSTR3,SSTR4,SSTR5,SSU72,SSUH2,SSX1,SSX2,SSX2B,SSX2IP,SSX3,SSX4,SSX4B,SSX5,SSX6P,SSX7,SSX8P,ST13,ST13P4,ST13P5,ST14,ST18,ST20,ST20-AS1,ST3,ST3GAL1,ST3GAL2,ST3GAL3,ST3GAL4,ST3GAL5,ST3GAL6,ST6GAL1,ST6GAL2,ST6GALNAC1,ST6GALNAC2,ST6GALNAC3,ST6GALNAC4,ST6GALNAC5,ST6GALNAC6,ST7,ST7-OT3,ST7L,ST8SIA1,ST8SIA2,ST8SIA3,ST8SIA4,ST8SIA5,STAB1,STAB2,STAC,STAC2,STAC3,STAG1,STAG2,STAG3,STAG3L4,STAM,STAM2,STAMBP,STAMBPL1,STAP1,STAP2,STAR,STARD10,STARD13,STARD3,STARD3NL,STARD4,STARD5,STARD6,STARD7,STARD8,STAT1,STAT2,STAT3,STAT4,STAT5A,STAT5B,STAT6,STATH,STAU1,STAU2,STBD1,STC1,STC2,STEAP1,STEAP2,STEAP3,STEAP4,STH,STIL,STIM1,STIM2,STIMATE,STING1,STIP1,STK10,STK11,STK11IP,STK16,STK17A,STK17B,STK24,STK25,STK26,STK3,STK31,STK32A,STK32B,STK32C,STK33,STK35,STK36,STK38,STK38L,STK39,STK4,STK40,STKLD1,STMN1,STMN2,STMN3,STMN4,STN1,STOM,STOML1,STOML2,STOML3,STON1,STON2,STOX1,STPG1,STPG2,STPG4,STRA6,STRA8,STRADA,STRADB,STRAP,STRBP,STRC,STRIP1,STRIP2,STRN,STRN3,STRN4,STS,STT3A,STT3B,STUB1,STUM,STX10,STX11,STX12,STX16,STX17,STX18,STX19,STX1A,STX1B,STX2,STX3,STX4,STX5,STX6,STX7,STX8,STXBP1,STXBP2,STXBP3,STXBP4,STXBP5,STXBP6,STYK1,STYX,STYXL1,SUB1,SUCLA2,SUCLG1,SUCLG2,SUCNR1,SUCO,SUDS3,SUFU,SUGCT,SUGP1,SUGP2,SUGT1,SUGT1P1,SUGT1P3,SULF1,SULF2,SULT1A1,SULT1A2,SULT1B1,SULT1C2,SULT1C4,SULT1E1,SULT2A1,SULT2B1,SULT4A1,SUMF1,SUMF2,SUMO1,SUMO1P1,SUMO1P3,SUMO2,SUMO3,SUMO4,SUN1,SUN2,SUN3,SUN5,SUOX,SUPT16H,SUPT20H,SUPT3H,SUPT4H1,SUPT5H,SUPT6H,SUPT7L,SUPV3L1,SURF6,SUSD1,SUSD2,SUSD3,SUSD6,SUV39H1,SUV39H2,SUZ12,SUZ12P1,SV2A,SV2B,SVBP,SVEP1,SVIL,SVOPL,SWAP70,SWSAP1,SWT1,SYAP1,SYBU,SYCE1,SYCE1L,SYCP1,SYCP2,SYCP2L,SYCP3,SYDE1,SYF2,SYK,SYMPK,SYN1,SYN2,SYN3,SYNC,SYNCRIP,SYNDIG1,SYNDIG1L,SYNE1,SYNE2,SYNE3,SYNE4,SYNGAP1,SYNGR1,SYNGR2,SYNGR3,SYNGR4,SYNJ1,SYNJ2,SYNJ2BP,SYNM,SYNPO,SYNPO2L,SYNPR,SYNRG,SYP,SYPL1,SYPL2,SYS1,SYT1,SYT10,SYT11,SYT12,SYT13,SYT14,SYT14P1,SYT16,SYT17,SYT2,SYT3,SYT4,SYT5,SYT6,SYT7,SYT8,SYT9,SYTL1,SYTL2,SYTL4,SYTL5,SYVN1,SZRD1,SZT2,TAAR1,TAAR2,TAAR5,TAAR6,TAAR8,TAAR9,TAB1,TAB2,TAB3,TAC1,TAC3,TAC4,TACC1,TACC2,TACC3,TACO1,TACR1,TACR2,TACR3,TACSTD2,TADA1,TADA2A,TADA3,TAF1,TAF10,TAF11,TAF12,TAF13,TAF15,TAF1A,TAF1B,TAF1C,TAF1D,TAF1L,TAF2,TAF4,TAF5,TAF5L,TAF6,TAF6L,TAF7,TAF7L,TAF8,TAF9,TAF9B,TAFA1,TAFA2,TAFA3,TAFA4,TAFA5,TAGAP,TAGLN,TAGLN2,TAGLN3,TAL1,TAL2,TALDO1,TAMALIN,TAMALIN-AS1,TAMM41,TANGO2,TANK,TAOK1,TAOK2,TAOK3,TAP1,TAP2,TAPBP,TAPBPL,TAPT1,TARBP1,TARBP2,TARDBP,TARP,TARS1,TARS2,TARS3,TAS1R1,TAS1R2,TAS2R1,TAS2R10,TAS2R13,TAS2R14,TAS2R16,TAS2R19,TAS2R20,TAS2R3,TAS2R31,TAS2R38,TAS2R39,TAS2R4,TAS2R40,TAS2R41,TAS2R46,TAS2R5,TAS2R50,TAS2R60,TAS2R7,TAS2R8,TAS2R9,TASOR,TASOR2,TASP1,TAT,TATDN1,TATDN2,TAX1BP1,TAX1BP3,TBATA,TBC1D1,TBC1D10A,TBC1D10B,TBC1D13,TBC1D14,TBC1D15,TBC1D16,TBC1D17,TBC1D19,TBC1D2,TBC1D20,TBC1D21,TBC1D22A,TBC1D22B,TBC1D23,TBC1D24,TBC1D26,TBC1D28,TBC1D29P,TBC1D2B,TBC1D3,TBC1D31,TBC1D32,TBC1D3B,TBC1D3C,TBC1D3F,TBC1D3G,TBC1D3H,TBC1D3I,TBC1D3P2,TBC1D4,TBC1D5,TBC1D7,TBC1D8,TBC1D8B,TBC1D9B,TBCA,TBCB,TBCC,TBCCD1,TBCD,TBCE,TBCEL,TBCK,TBK1,TBKBP1,TBL1X,TBL1XR1,TBL1Y,TBL2,TBL3,TBP,TBPL1,TBPL2,TBR1,TBRG1,TBRG4,TBX10,TBX19,TBX2,TBX20,TBX21,TBX22,TBX3,TBX4,TBX5,TBX6,TBXA2R,TBXAS1,TC2N,TCAF1,TCAIM,TCAP,TCEA1,TCEA2,TCEA3,TCEAL1,TCEAL2,TCEAL3,TCEAL4,TCEAL6,TCEAL7,TCEAL8,TCEAL9,TCEANC,TCEANC2,TCERG1,TCERG1L,TCF12,TCF15,TCF19,TCF20,TCF21,TCF25,TCF3,TCF4,TCF7,TCF7L1,TCF7L2,TCFL5,TCHH,TCHP,TCIM,TCIRG1,TCL1A,TCL1B,TCL6,TCN1,TCN2,TCOF1,TCP1,TCP10L,TCP10L2,TCP10L3,TCP11,TCP11L1,TCP11L2,TCTA,TCTE1,TCTN1,TCTN2,TCTN3,TDG,TDH,TDO2,TDP1,TDP2,TDRD1,TDRD10,TDRD3,TDRD5,TDRD6,TDRD7,TDRD9,TDRKH,TDRP,TEAD1,TEAD2,TEAD3,TEAD4,TEC,TECPR1,TECPR2,TECR,TECRL,TECTA,TECTB,TEDC1,TEDC2,TEDDM1,TEF,TEFM,TEK,TEKT1,TEKT2,TEKT3,TEKT4,TEKT5,TEKTL1,TELO2,TEN1-CDK3,TENM1,TENT2,TENT4A,TENT4B,TENT5A,TENT5B,TENT5C,TENT5D,TEP1,TEPSIN,TERB1,TERB2,TERC,TERF1,TERF2,TERF2IP,TERT,TES,TESC,TESK1,TESK2,TESMIN,TESPA1,TET1,TET2,TET3,TEX10,TEX101,TEX11,TEX12,TEX13A,TEX13B,TEX14,TEX15,TEX19,TEX2,TEX26,TEX261,TEX264,TEX28,TEX29,TEX30,TEX35,TEX44,TEX47,TEX55,TEX56P,TEX9,TF,TFAM,TFAP2A,TFAP2B,TFAP2C,TFAP2D,TFAP2E,TFAP4,TFB1M,TFB2M,TFCP2,TFCP2L1,TFDP1,TFDP2,TFDP3,TFE3,TFEB,TFEC,TFF1,TFF2,TFF3,TFG,TFIP11,TFPI,TFPI2,TFPT,TFR2,TFRC,TG,TGDS,TGFA,TGFB1,TGFB1I1,TGFB2,TGFB3,TGFBI,TGFBR1,TGFBR2,TGFBR3,TGFBRAP1,TGIF1,TGIF2,TGIF2LX,TGIF2LY,TGM1,TGM2,TGM3,TGM4,TGM5,TGM6,TGM7,TGOLN2,TGS1,TH,THADA,THAP1,THAP10,THAP11,THAP12,THAP2,THAP3,THAP5,THAP6,THAP7,THAP8,THAP9,THBD,THBS1,THBS2,THBS3,THBS4,THEM4,THEM5,THEM6,THEMIS2,THG1L,THNSL1,THNSL2,THOC1,THOC2,THOC5,THOC6,THOC7,THOP1,THPO,THRA,THRAP3,THRB,THRSP,THSD1,THSD1P1,THSD4,THTPA,THUMPD1,THUMPD2,THUMPD3,THY1,THYN1,TIA1,TIAL1,TIAM1,TIAM2,TICAM1,TICAM2,TICRR,TIE1,TIFA,TIFAB,TIGAR,TIGD1,TIGD2,TIGD3,TIGD4,TIGD5,TIGD6,TIGD7,TIGIT,TIMD4,TIMELESS,TIMM10,TIMM10B,TIMM13,TIMM17A,TIMM17B,TIMM21,TIMM22,TIMM23,TIMM23B,TIMM29,TIMM44,TIMM50,TIMM8A,TIMM8B,TIMM9,TIMMDC1,TIMP1,TIMP2,TIMP3,TIMP4,TINAG,TINAGL1,TINCR,TINF2,TIPARP,TIPIN,TIPRL,TIRAP,TJAP1,TJP1,TJP2,TJP3,TK1,TK2,TKFC,TKT,TKTL1,TKTL2,TLCD1,TLCD3A,TLCD3B,TLCD4,TLCD5,TLDC2,TLE1,TLE2,TLE3,TLE4,TLE5,TLE6,TLK1,TLK2,TLL1,TLL2,TLN1,TLN2,TLNRD1,TLR1,TLR10,TLR2,TLR3,TLR4,TLR5,TLR6,TLR7,TLR8,TLR9,TLX1,TLX1NB,TLX2,TLX3,TM2D1,TM2D2,TM2D3,TM4SF1,TM4SF18,TM4SF19,TM4SF20,TM4SF4,TM4SF5,TM6SF1,TM6SF2,TM7SF2,TM7SF3,TM9SF1,TM9SF2,TM9SF3,TM9SF4,TMA16,TMBIM1,TMBIM4,TMBIM6,TMC1,TMC2,TMC3,TMC4,TMC5,TMC6,TMC7,TMC8,TMCC1,TMCC2,TMCC3,TMCO1,TMCO3,TMCO4,TMCO5A,TMCO6,TMED1,TMED10,TMED10P1,TMED2,TMED3,TMED4,TMED5,TMED6,TMED7,TMED8,TMEFF1,TMEFF2,TMEM100,TMEM101,TMEM102,TMEM104,TMEM105,TMEM106B,TMEM106C,TMEM107,TMEM108,TMEM109,TMEM11,TMEM115,TMEM116,TMEM117,TMEM119,TMEM120A,TMEM120B,TMEM121,TMEM121B,TMEM123,TMEM125,TMEM126A,TMEM126B,TMEM127,TMEM128,TMEM129,TMEM130,TMEM131L,TMEM132A,TMEM132D,TMEM132E,TMEM132E-DT,TMEM134,TMEM135,TMEM138,TMEM139,TMEM140,TMEM141,TMEM143,TMEM144,TMEM145,TMEM147,TMEM14A,TMEM14B,TMEM14C,TMEM14EP,TMEM150A,TMEM151A,TMEM151B,TMEM154,TMEM156,TMEM158,TMEM160,TMEM161A,TMEM161B,TMEM163,TMEM164,TMEM165,TMEM167A,TMEM168,TMEM169,TMEM17,TMEM170A,TMEM171,TMEM174,TMEM175,TMEM176A,TMEM176B,TMEM177,TMEM178A,TMEM179,TMEM179B,TMEM18,TMEM182,TMEM183A,TMEM183BP,TMEM184A,TMEM184B,TMEM184C,TMEM185A,TMEM185B,TMEM186,TMEM187,TMEM19,TMEM190,TMEM191A,TMEM191B,TMEM191C,TMEM192,TMEM196,TMEM198,TMEM199,TMEM200A,TMEM200B,TMEM204,TMEM205,TMEM207,TMEM208,TMEM209,TMEM213,TMEM214,TMEM215,TMEM216,TMEM217,TMEM219,TMEM220,TMEM221,TMEM222,TMEM229B,TMEM230,TMEM231,TMEM234,TMEM237,TMEM241,TMEM242,TMEM243,TMEM245,TMEM248,TMEM249,TMEM25,TMEM252,TMEM254,TMEM255A,TMEM255B,TMEM256,TMEM258,TMEM259,TMEM26,TMEM260,TMEM263,TMEM266,TMEM267,TMEM268,TMEM270,TMEM272,TMEM30A,TMEM31,TMEM33,TMEM35A,TMEM37,TMEM38A,TMEM38B,TMEM39A,TMEM39B,TMEM40,TMEM41A,TMEM42,TMEM43,TMEM44,TMEM45A,TMEM45B,TMEM47,TMEM50B,TMEM51,TMEM51-AS1,TMEM52B,TMEM53,TMEM54,TMEM59,TMEM59L,TMEM60,TMEM61,TMEM62,TMEM63A,TMEM65,TMEM67,TMEM68,TMEM69,TMEM70,TMEM71,TMEM74,TMEM74B,TMEM79,TMEM80,TMEM81,TMEM86A,TMEM86B,TMEM87A,TMEM87B,TMEM88,TMEM8B,TMEM9,TMEM91,TMEM92,TMEM94,TMEM95,TMEM97,TMEM98,TMEM9B,TMF1,TMIE,TMIGD1,TMIGD2,TMLHE,TMOD1,TMOD2,TMOD3,TMOD4,TMPO,TMPPE,TMPRSS11A,TMPRSS11B,TMPRSS11D,TMPRSS11E,TMPRSS11F,TMPRSS12,TMPRSS13,TMPRSS15,TMPRSS2,TMPRSS3,TMPRSS4,TMPRSS5,TMPRSS6,TMPRSS9,TMSB10,TMSB15A,TMSB15B,TMSB4X,TMSB4XP1,TMSB4XP8,TMSB4Y,TMT1A,TMT1B,TMTC1,TMTC2,TMTC3,TMTC4,TMUB1,TMUB2,TMX1,TMX2,TMX3,TMX4,TNC,TNF,TNFAIP1,TNFAIP2,TNFAIP3,TNFAIP6,TNFAIP8,TNFAIP8L1,TNFAIP8L2,TNFAIP8L3,TNFRSF10A,TNFRSF10B,TNFRSF10C,TNFRSF10D,TNFRSF11A,TNFRSF11B,TNFRSF12A,TNFRSF13B,TNFRSF13C,TNFRSF14,TNFRSF17,TNFRSF18,TNFRSF19,TNFRSF1A,TNFRSF1B,TNFRSF21,TNFRSF25,TNFRSF4,TNFRSF6B,TNFRSF8,TNFRSF9,TNFSF10,TNFSF11,TNFSF12,TNFSF13,TNFSF13B,TNFSF14,TNFSF15,TNFSF18,TNFSF4,TNFSF8,TNFSF9,TNIK,TNIP1,TNIP2,TNIP3,TNK1,TNK2,TNKS,TNKS1BP1,TNKS2,TNMD,TNNC1,TNNC2,TNNI1,TNNI2,TNNI3,TNNI3K,TNNT1,TNNT2,TNNT3,TNP1,TNP2,TNPO1,TNPO2,TNPO3,TNR,TNRC6A,TNRC6B,TNRC6C,TNS1,TNS2,TNS3,TNS4,TNXA,TNXB,TOB1,TOB2,TOE1,TOGARAM1,TOGARAM2,TOLLIP,TOM1,TOM1L1,TOM1L2,TOMM20,TOMM20L,TOMM22,TOMM34,TOMM40,TOMM40L,TOMM5,TOMM6,TOMM7,TOMM70,TONSL,TOP1,TOP1MT,TOP1P1,TOP2A,TOP2B,TOP3A,TOP3B,TOP6BL,TOPBP1,TOPORS,TOR1A,TOR1AIP1,TOR1AIP2,TOR1B,TOR2A,TOR3A,TOX,TOX2,TOX4,TP53,TP53AIP1,TP53BP1,TP53BP2,TP53I11,TP53I13,TP53I3,TP53INP1,TP53INP2,TP53RK,TP53TG1,TP53TG5,TP63,TP73,TPBG,TPCN1,TPCN2,TPD52,TPD52L1,TPD52L2,TPD52L3,TPGS1,TPGS2,TPH1,TPH2,TPI1,TPI1P2,TPK1,TPM1,TPM2,TPM3,TPMT,TPO,TPP1,TPP2,TPPP,TPPP2,TPPP3,TPR,TPRA1,TPRG1,TPRG1L,TPRKB,TPRN,TPRX1,TPRXL,TPSD1,TPSG1,TPST1,TPST2,TPT1,TPTE,TPTE2,TPTE2P2,TPTE2P3,TPX2,TRA2A,TRA2B,TRABD,TRAC,TRADD,TRAF1,TRAF2,TRAF3,TRAF3IP1,TRAF3IP2,TRAF3IP3,TRAF4,TRAF5,TRAF6,TRAF7,TRAFD1,TRAIP,TRAJ17,TRAK1,TRAK2,TRAM1,TRAM1L1,TRAM2,TRAP1,TRAPPC1,TRAPPC10,TRAPPC11,TRAPPC12,TRAPPC13,TRAPPC14,TRAPPC2,TRAPPC2L,TRAPPC3,TRAPPC4,TRAPPC5,TRAPPC6A,TRAPPC6B,TRAPPC8,TRAPPC9,TRARG1,TRAT1,TRAV20,TRAV8-3,TRBV10-2,TRBV20OR9-2,TRBV27,TRBV29-1,TRBV5-4,TRDMT1,TRDN,TREH,TREM1,TREM2,TREML1,TREML2,TREML3P,TREML4,TREML5P,TRERF1,TREX1,TREX2,TRG,TRGC1,TRGC2,TRGV11,TRGV3,TRGV9,TRH,TRHDE,TRHR,TRIAP1,TRIB1,TRIB2,TRIB3,TRIL,TRIM10,TRIM11,TRIM13,TRIM14,TRIM15,TRIM16,TRIM16L,TRIM17,TRIM2,TRIM21,TRIM22,TRIM23,TRIM24,TRIM25,TRIM26,TRIM27,TRIM28,TRIM29,TRIM3,TRIM31,TRIM32,TRIM33,TRIM34,TRIM35,TRIM36,TRIM37,TRIM38,TRIM39,TRIM39-RPP21,TRIM4,TRIM40,TRIM41,TRIM42,TRIM44,TRIM45,TRIM46,TRIM47,TRIM48,TRIM49,TRIM49B,TRIM49C,TRIM49D2,TRIM5,TRIM50,TRIM51,TRIM51BP,TRIM52,TRIM53AP,TRIM53BP,TRIM54,TRIM55,TRIM56,TRIM58,TRIM59,TRIM6,TRIM60,TRIM61,TRIM62,TRIM63,TRIM64,TRIM64B,TRIM65,TRIM67,TRIM68,TRIM69,TRIM7,TRIM71,TRIM72,TRIM73,TRIM74,TRIM8,TRIM9,TRIML1,TRIML2,TRIO,TRIOBP,TRIP10,TRIP11,TRIP12,TRIP13,TRIP4,TRIP6,TRIR,TRIT1,TRMO,TRMT1,TRMT10A,TRMT10B,TRMT10C,TRMT11,TRMT112,TRMT12,TRMT13,TRMT1L,TRMT2A,TRMT2B,TRMT44,TRMT5,TRMT6,TRMT61A,TRMT61B,TRMT9B,TRMU,TRNAU1AP,TRNP1,TRNT1,TRO,TROAP,TRPA1,TRPC1,TRPC3,TRPC4,TRPC4AP,TRPC5,TRPC6,TRPC7,TRPM1,TRPM2,TRPM3,TRPM4,TRPM5,TRPM6,TRPM7,TRPM8,TRPS1,TRPT1,TRPV1,TRPV2,TRPV3,TRPV4,TRPV5,TRPV6,TRRAP,TRUB1,TRUB2,TRX-CAT1-2,TSACC,TSBP1,TSC1,TSC2,TSC22D1,TSC22D2,TSC22D3,TSC22D4,TSEN15,TSEN2,TSEN34,TSEN54,TSFM,TSG101,TSGA10,TSGA10IP,TSGA13,TSHB,TSHR,TSHZ1,TSHZ2,TSHZ3,TSKS,TSKU,TSLP,TSN,TSNARE1,TSNAX,TSNAXIP1,TSPAN1,TSPAN10,TSPAN11,TSPAN12,TSPAN13,TSPAN14,TSPAN15,TSPAN16,TSPAN17,TSPAN18,TSPAN2,TSPAN3,TSPAN31,TSPAN32,TSPAN33,TSPAN4,TSPAN5,TSPAN6,TSPAN7,TSPAN8,TSPAN9,TSPEAR,TSPEAR-AS2,TSPO,TSPOAP1,TSPY26P,TSPYL1,TSPYL2,TSPYL4,TSPYL5,TSPYL6,TSR1,TSR2,TSR3,TSSC4,TSSK1B,TSSK2,TSSK3,TSSK4,TSSK6,TST,TSTD1,TSTD2,TTBK2,TTC1,TTC12,TTC13,TTC14,TTC16,TTC17,TTC19,TTC21B,TTC22,TTC23,TTC23L,TTC27,TTC28,TTC28-AS1,TTC29,TTC3,TTC31,TTC33,TTC34,TTC36,TTC38,TTC39A,TTC39B,TTC39C,TTC4,TTC5,TTC8,TTC9B,TTC9C,TTF1,TTF2,TTI1,TTI2,TTK,TTL,TTLL1,TTLL10,TTLL11,TTLL12,TTLL13,TTLL2,TTLL3,TTLL4,TTLL5,TTLL6,TTLL7,TTN,TTPA,TTPAL,TTR,TTTY10,TTTY11,TTTY12,TTTY13,TTTY14,TTTY15,TTTY5,TTYH1,TTYH2,TTYH3,TUB,TUBA1A,TUBA1B,TUBA1C,TUBA3C,TUBA3D,TUBA3E,TUBA4A,TUBA4B,TUBA8,TUBAL3,TUBB,TUBB1,TUBB2A,TUBB2B,TUBB3,TUBB4A,TUBB4B,TUBB6,TUBB7P,TUBB8,TUBBP5,TUBD1,TUBE1,TUBG1,TUBG2,TUBGCP2,TUBGCP3,TUBGCP4,TUBGCP5,TUBGCP6,TUFM,TUFT1,TUG1,TULP1,TULP2,TULP3,TULP4,TUSC1,TUSC2,TUSC3,TUT1,TUT4,TUT7,TVP23A,TVP23B,TVP23C-CDRT4,TWF1,TWF2,TWIST1,TWSG1,TXK,TXLNA,TXLNB,TXLNG,TXN2,TXNDC11,TXNDC12,TXNDC15,TXNDC17,TXNDC2,TXNDC5,TXNDC8,TXNDC9,TXNIP,TXNL1,TXNL4A,TXNL4B,TXNRD1,TXNRD2,TXNRD3,TYK2,TYMP,TYMS,TYMSOS,TYR,TYRL,TYRO3,TYRO3P,TYROBP,TYRP1,TYSND1,TYW1,TYW1B,TYW3,TYW5,U2AF1,U2AF1L4,U2AF2,UACA,UAP1,UAP1L1,UBA1,UBA2,UBA3,UBA5,UBA52,UBA6,UBA7,UBAC1,UBAC2,UBALD1,UBALD2,UBAP1,UBAP2,UBAP2L,UBASH3A,UBASH3B,UBB,UBC,UBD,UBE2A,UBE2B,UBE2C,UBE2D1,UBE2D2,UBE2D3,UBE2D4,UBE2DNL,UBE2E1,UBE2E2,UBE2E3,UBE2E4P,UBE2F,UBE2G1,UBE2G2,UBE2H,UBE2I,UBE2J1,UBE2J2,UBE2K,UBE2L1,UBE2L3,UBE2L6,UBE2M,UBE2MP1,UBE2N,UBE2NL,UBE2O,UBE2Q1,UBE2Q2,UBE2Q2P1,UBE2Q2P2,UBE2R2,UBE2T,UBE2U,UBE2V1,UBE2V2,UBE2W,UBE2Z,UBE3A,UBE3B,UBE3C,UBE3D,UBE4A,UBE4B,UBFD1,UBIAD1,UBL3,UBL4A,UBL4B,UBL5,UBL7,UBLCP1,UBN1,UBOX5,UBP1,UBQLN1,UBQLN2,UBQLN3,UBQLN4,UBQLNL,UBR1,UBR2,UBR3,UBR4,UBR5,UBR7,UBTD1,UBTD2,UBTF,UBXN1,UBXN10,UBXN11,UBXN2A,UBXN4,UBXN6,UBXN7,UBXN8,UCHL1,UCHL3,UCHL5,UCK1,UCK2,UCKL1,UCKL1-AS1,UCMA,UCN,UCN2,UCN3,UCP1,UCP2,UCP3,UEVLD,UFC1,UFD1,UFL1,UFM1,UFSP1,UFSP2,UGCG,UGDH,UGGT1,UGGT2,UGP2,UGT1A1,UGT1A10,UGT1A3,UGT1A4,UGT1A5,UGT1A6,UGT1A7,UGT1A8,UGT1A9,UGT2A1,UGT2A2,UGT2A3,UGT2B10,UGT2B11,UGT2B15,UGT2B17,UGT2B28,UGT2B4,UGT2B7,UGT3A1,UGT3A2,UGT8,UHMK1,UHRF1,UHRF2,UIMC1,ULBP1,ULBP2,ULBP3,ULK1,ULK2,ULK3,ULK4,UMOD,UMODL1,UMODL1-AS1,UMPS,UNC119,UNC119B,UNC13B,UNC13D,UNC45A,UNC45B,UNC50,UNC5B,UNC5C,UNC5CL,UNC5D,UNC79,UNC80,UNC93A,UNC93B1,UNG,UNKL,UPB1,UPF1,UPF2,UPF3A,UPF3B,UPK1A,UPK1B,UPK2,UPK3A,UPK3B,UPP1,UPP2,UPRT,UQCC1,UQCC2,UQCC3,UQCC6,UQCR10,UQCR11,UQCRB,UQCRC1,UQCRC2,UQCRFS1,UQCRQ,URB1,URB1-AS1,URB2,URGCP,URI1,URM1,UROC1,UROD,UROS,USB1,USE1,USF1,USF2,USH1C,USH1G,USH2A,USHBP1,USO1,USP1,USP10,USP11,USP12,USP13,USP14,USP15,USP16,USP18,USP2,USP20,USP21,USP24,USP25,USP26,USP28,USP29,USP3,USP30,USP31,USP32,USP33,USP34,USP36,USP37,USP38,USP39,USP4,USP40,USP41P,USP44,USP45,USP46,USP47,USP48,USP49,USP5,USP50,USP51,USP53,USP54,USP6,USP6NL,USP7,USP8,USP9X,USP9Y,USPL1,UST,UTF1,UTP11,UTP14A,UTP14C,UTP15,UTP18,UTP20,UTP23,UTP25,UTP3,UTP4,UTP6,UTRN,UTS2,UTS2B,UTS2R,UTY,UVRAG,UVSSA,UXS1,UXT,VAC14,VAMP1,VAMP2,VAMP3,VAMP4,VAMP5,VAMP8,VANGL1,VAPA,VAPB,VARS1,VARS2,VASH1,VASH2,VASN,VASP,VAT1,VAT1L,VAV1,VAV2,VAV3,VAX1,VAX2,VBP1,VCAM1,VCAN,VCF1,VCF2,VCL,VCP,VCPIP1,VCPKMT,VCX,VCX2,VCX3A,VCX3B,VDAC1,VDAC2,VDAC3,VDR,VEGFA,VEGFB,VEGFC,VEGFD,VENTX,VEPH1,VEZF1,VEZT,VGF,VGLL1,VGLL2,VGLL3,VGLL4,VHL,VHLL,VIL1,VILL,VIM,VIP,VIPAS39,VIPR1,VIPR2,VIRMA,VIT,VKORC1,VKORC1L1,VLDLR,VMO1,VMP1,VN1R1,VN1R10P,VN1R2,VN1R3,VN1R5,VNN1,VNN2,VNN3P,VOPP1,VPREB1,VPREB3,VPS11,VPS13A,VPS13B,VPS13C,VPS13D,VPS16,VPS18,VPS25,VPS26A,VPS26B,VPS26C,VPS28,VPS29,VPS33A,VPS33B,VPS35,VPS35L,VPS36,VPS37A,VPS37B,VPS37C,VPS37D,VPS39,VPS41,VPS45,VPS4A,VPS4B,VPS50,VPS52,VPS53,VPS54,VPS72,VPS8,VPS9D1,VRK1,VRK2,VRK3,VRTN,VSIG1,VSIG10,VSIG2,VSIG4,VSIR,VSNL1,VSTM1,VSTM2A,VSTM2L,VSTM4,VSX1,VSX2,VTA1,VTCN1,VTI1A,VTI1B,VTN,VWA1,VWA2,VWA3A,VWA3B,VWA5A,VWA5B1,VWA7,VWC2,VWC2L,VWCE,VWF,VXN,WAC,WAPL,WARS1,WARS2,WAS,WASF1,WASF2,WASF3,WASH2P,WASH3P,WASH5P,WASH7P,WASHC1,WASHC3,WASHC4,WASHC5,WASL,WBP11,WBP11P1,WBP1L,WBP2,WBP2NL,WBP4,WDCP,WDFY1,WDFY2,WDFY3,WDFY3-AS2,WDFY4,WDHD1,WDPCP,WDR1,WDR11,WDR12,WDR13,WDR17,WDR18,WDR19,WDR20,WDR24,WDR25,WDR26,WDR27,WDR3,WDR31,WDR33,WDR35,WDR36,WDR37,WDR4,WDR41,WDR44,WDR45,WDR45B,WDR46,WDR47,WDR49,WDR53,WDR54,WDR55,WDR59,WDR5B,WDR6,WDR62,WDR64,WDR7,WDR70,WDR72,WDR73,WDR74,WDR75,WDR76,WDR77,WDR81,WDR82,WDR83,WDR83OS,WDR86,WDR87,WDR88,WDR89,WDR90,WDR91,WDR93,WDSUB1,WDTC1,WEE1,WFDC1,WFDC10A,WFDC10B,WFDC11,WFDC12,WFDC13,WFDC2,WFDC3,WFDC5,WFDC6,WFDC8,WFDC9,WFIKKN1,WFIKKN2,WFS1,WHR1,WHRN,WIF1,WIPF1,WIPF3,WIPI1,WIPI2,WLS,WNK1,WNK2,WNK3,WNK4,WNT1,WNT10A,WNT10B,WNT11,WNT16,WNT2,WNT2B,WNT3,WNT3A,WNT4,WNT5A,WNT5B,WNT6,WNT7A,WNT7B,WNT8A,WNT8B,WNT9A,WNT9B,WRAP53,WRAP73,WRN,WRNIP1,WSB1,WSB2,WSCD1,WSCD2,WT1,WT1-AS,WTAP,WWC1,WWC2,WWC2-AS2,WWC3,WWOX,WWP1,WWP2,WWTR1,XAB2,XAF1,XAGE3,XAGE5,XBP1,XCL1,XCL2,XCR1,XDH,XG,XGY2,XIAP,XIRP1,XIRP2,XK,XKR3,XKR5,XKR6,XKR8,XKRX,XPA,XPC,XPNPEP1,XPNPEP2,XPNPEP3,XPO1,XPO4,XPO5,XPO6,XPO7,XPOT,XPR1,XRCC1,XRCC2,XRCC3,XRCC4,XRCC5,XRCC6,XRN1,XRN2,XRRA1,XXYLT1,XYLB,XYLT1,XYLT2,YAE1,YAF2,YAP1,YARS1,YARS2,YBX1,YBX2,YBX3,YBX3P1,YEATS2,YEATS4,YES1,YIF1A,YIF1B,YIPF1,YIPF2,YIPF3,YIPF4,YIPF5,YIPF6,YIPF7,YJEFN3,YJU2,YJU2B,YKT6,YLPM1,YME1L1,YPEL1,YPEL2,YPEL3,YPEL4,YPEL5,YTHDC1,YTHDC2,YTHDF1,YTHDF2,YTHDF3,YWHAB,YWHAE,YWHAG,YWHAH,YWHAH-AS1,YWHAQ,YWHAQP8,YWHAZ,YY1,YY1AP1,YY2,ZACN,ZAN,ZAP70,ZAR1,ZBBX,ZBED10P,ZBED2,ZBED3,ZBED4,ZBED5,ZBED6,ZBP1,ZBTB1,ZBTB10,ZBTB11,ZBTB12,ZBTB14,ZBTB16,ZBTB17,ZBTB18,ZBTB2,ZBTB20,ZBTB21,ZBTB22,ZBTB25,ZBTB26,ZBTB3,ZBTB32,ZBTB33,ZBTB34,ZBTB37,ZBTB39,ZBTB4,ZBTB40,ZBTB41,ZBTB43,ZBTB44,ZBTB45,ZBTB46,ZBTB47,ZBTB48,ZBTB49,ZBTB5,ZBTB6,ZBTB7A,ZBTB7B,ZBTB7C-AS2,ZBTB8A,ZBTB8B,ZBTB8OS,ZBTB9,ZC2HC1A,ZC2HC1C,ZC3H10,ZC3H11A,ZC3H12A,ZC3H12D,ZC3H13,ZC3H14,ZC3H15,ZC3H18,ZC3H18-AS1,ZC3H3,ZC3H6,ZC3H7A,ZC3H7B,ZC3H8,ZC3HAV1,ZC3HAV1L,ZC3HC1,ZC4H2,ZCCHC10,ZCCHC12,ZCCHC13,ZCCHC14,ZCCHC17,ZCCHC2,ZCCHC24,ZCCHC3,ZCCHC4,ZCCHC7,ZCCHC8,ZCCHC9,ZCRB1,ZCWPW1,ZDHHC1,ZDHHC11,ZDHHC12,ZDHHC13,ZDHHC14,ZDHHC15,ZDHHC16,ZDHHC17,ZDHHC18,ZDHHC19,ZDHHC2,ZDHHC20,ZDHHC21,ZDHHC22,ZDHHC23,ZDHHC24,ZDHHC3,ZDHHC4,ZDHHC5,ZDHHC6,ZDHHC7,ZDHHC8,ZDHHC8BP,ZDHHC9,ZEB1,ZEB2,ZER1,ZFAND1,ZFAND2A,ZFAND2B,ZFAND3,ZFAND4,ZFAND5,ZFAND6,ZFAT,ZFC3H1,ZFHX2,ZFHX3,ZFHX4,ZFP1,ZFP14,ZFP2,ZFP28,ZFP3,ZFP30,ZFP36,ZFP36L1,ZFP36L2,ZFP37,ZFP41,ZFP42,ZFP64,ZFP69,ZFP69B,ZFP82,ZFP90,ZFP91,ZFP91-CNTF,ZFPL1,ZFPM1,ZFPM2,ZFR,ZFTRAF1,ZFX,ZFY,ZFYVE1,ZFYVE16,ZFYVE19,ZFYVE21,ZFYVE26,ZFYVE27,ZFYVE28,ZFYVE9,ZG16,ZG16B,ZGLP1,ZGPAT,ZGRF1,ZHX1,ZHX2,ZHX3,ZIC1,ZIC2,ZIC3,ZIC4,ZIC5,ZIM2,ZIM3,ZKSCAN1,ZKSCAN3,ZKSCAN4,ZKSCAN5,ZKSCAN7,ZKSCAN8,ZMAT1,ZMAT2,ZMAT3,ZMAT4,ZMAT5,ZMIZ1,ZMIZ2,ZMPSTE24,ZMYM1,ZMYM2,ZMYM3,ZMYM4,ZMYM5,ZMYM6,ZMYND10,ZMYND11,ZMYND12,ZMYND15,ZMYND19,ZMYND8,ZNF10,ZNF100,ZNF101,ZNF106,ZNF107,ZNF112,ZNF114,ZNF117,ZNF12,ZNF121,ZNF124,ZNF131,ZNF132,ZNF133,ZNF134,ZNF135,ZNF136,ZNF137P,ZNF138,ZNF14,ZNF140,ZNF141,ZNF142,ZNF143,ZNF146,ZNF148,ZNF154,ZNF155,ZNF157,ZNF16,ZNF160,ZNF165,ZNF169,ZNF17,ZNF174,ZNF175,ZNF177,ZNF18,ZNF180,ZNF181,ZNF184,ZNF185,ZNF189,ZNF19,ZNF195,ZNF197,ZNF2,ZNF20,ZNF200,ZNF202,ZNF204P,ZNF205,ZNF207,ZNF208,ZNF211,ZNF212,ZNF213,ZNF214,ZNF215,ZNF217,ZNF219,ZNF22,ZNF22-AS1,ZNF221,ZNF222,ZNF223,ZNF224,ZNF225,ZNF226,ZNF227,ZNF23,ZNF230,ZNF232,ZNF233,ZNF234,ZNF235,ZNF236,ZNF239,ZNF24,ZNF248,ZNF25,ZNF250,ZNF252P,ZNF252P-AS1,ZNF253,ZNF254,ZNF256,ZNF257,ZNF26,ZNF260,ZNF263,ZNF264,ZNF266,ZNF267,ZNF268,ZNF271P,ZNF273,ZNF274,ZNF276,ZNF277,ZNF28,ZNF280A,ZNF280B,ZNF280C,ZNF280D,ZNF281,ZNF282,ZNF285,ZNF286A,ZNF286B,ZNF287,ZNF295-AS1,ZNF296,ZNF29P,ZNF3,ZNF30,ZNF300,ZNF300P1,ZNF302,ZNF304,ZNF317,ZNF318,ZNF32,ZNF32-AS2,ZNF320,ZNF321P,ZNF324,ZNF324B,ZNF326,ZNF329,ZNF330,ZNF331,ZNF333,ZNF334,ZNF335,ZNF337,ZNF33A,ZNF33B,ZNF34,ZNF341,ZNF343,ZNF345,ZNF346,ZNF347,ZNF35,ZNF350,ZNF354A,ZNF354B,ZNF354C,ZNF358,ZNF362,ZNF365,ZNF366,ZNF367,ZNF37A,ZNF37BP,ZNF382,ZNF383,ZNF384,ZNF385A,ZNF385B,ZNF385C,ZNF385D,ZNF394,ZNF395,ZNF396,ZNF397,ZNF398,ZNF407,ZNF408,ZNF41,ZNF410,ZNF414,ZNF415,ZNF416,ZNF417,ZNF418,ZNF419,ZNF420,ZNF423,ZNF425,ZNF426,ZNF428,ZNF429,ZNF43,ZNF430,ZNF431,ZNF432,ZNF433,ZNF436,ZNF436-AS1,ZNF438,ZNF439,ZNF44,ZNF440,ZNF441,ZNF442,ZNF443,ZNF444,ZNF445,ZNF446,ZNF449,ZNF45,ZNF451,ZNF454,ZNF460,ZNF461,ZNF462,ZNF467,ZNF468,ZNF469,ZNF470,ZNF471,ZNF473,ZNF474,ZNF479,ZNF48,ZNF480,ZNF483,ZNF485,ZNF487,ZNF488,ZNF490,ZNF491,ZNF492,ZNF493,ZNF496,ZNF497,ZNF500,ZNF501,ZNF502,ZNF503,ZNF503-AS2,ZNF506,ZNF507,ZNF510,ZNF511,ZNF512,ZNF512B,ZNF513,ZNF514,ZNF516,ZNF517,ZNF519,ZNF521,ZNF524,ZNF525,ZNF526,ZNF528,ZNF529,ZNF530,ZNF532,ZNF534,ZNF536,ZNF540,ZNF541,ZNF542P,ZNF543,ZNF544,ZNF546,ZNF547,ZNF548,ZNF549,ZNF550,ZNF551,ZNF552,ZNF554,ZNF555,ZNF556,ZNF557,ZNF558,ZNF559,ZNF560,ZNF561,ZNF562,ZNF563,ZNF564,ZNF565,ZNF566,ZNF567,ZNF568,ZNF569,ZNF56P,ZNF57,ZNF570,ZNF571,ZNF572,ZNF573,ZNF574,ZNF575,ZNF576,ZNF577,ZNF578,ZNF579,ZNF580,ZNF581,ZNF582,ZNF583,ZNF584,ZNF585A,ZNF585B,ZNF586,ZNF587,ZNF589,ZNF592,ZNF593,ZNF595,ZNF596,ZNF597,ZNF598,ZNF600,ZNF605,ZNF606,ZNF607,ZNF610,ZNF611,ZNF613,ZNF614,ZNF615,ZNF616,ZNF618,ZNF619,ZNF620,ZNF621,ZNF622,ZNF623,ZNF624,ZNF625,ZNF626,ZNF627,ZNF638,ZNF639,ZNF641,ZNF644,ZNF646,ZNF649,ZNF652,ZNF653,ZNF654,ZNF655,ZNF658,ZNF658B,ZNF66,ZNF660,ZNF662,ZNF663P,ZNF664,ZNF665,ZNF667,ZNF668,ZNF669,ZNF670,ZNF671,ZNF672,ZNF675,ZNF676,ZNF677,ZNF678,ZNF679,ZNF680,ZNF681,ZNF682,ZNF683,ZNF684,ZNF687,ZNF688,ZNF689,ZNF69,ZNF691,ZNF692,ZNF695,ZNF696,ZNF697,ZNF699,ZNF7,ZNF70,ZNF700,ZNF701,ZNF702P,ZNF703,ZNF705A,ZNF705D,ZNF705G,ZNF706,ZNF707,ZNF709,ZNF71,ZNF710,ZNF711,ZNF713,ZNF714,ZNF718,ZNF721,ZNF725P,ZNF728,ZNF729,ZNF732,ZNF735,ZNF737,ZNF738,ZNF74,ZNF740,ZNF746,ZNF747,ZNF749,ZNF750,ZNF75A,ZNF75D,ZNF76,ZNF761,ZNF763,ZNF764,ZNF765,ZNF767P,ZNF768,ZNF77,ZNF770,ZNF771,ZNF772,ZNF773,ZNF774,ZNF775,ZNF776,ZNF777,ZNF778,ZNF781,ZNF782,ZNF783,ZNF784,ZNF785,ZNF786,ZNF787,ZNF788P,ZNF789,ZNF79,ZNF790,ZNF791,ZNF792,ZNF793,ZNF799,ZNF8,ZNF80,ZNF800,ZNF804A,ZNF804B,ZNF805,ZNF808,ZNF81,ZNF812P,ZNF813,ZNF814,ZNF818P,ZNF821,ZNF823,ZNF826P,ZNF827,ZNF83,ZNF830,ZNF833P,ZNF835,ZNF836,ZNF839,ZNF84,ZNF841,ZNF843,ZNF844,ZNF845,ZNF846,ZNF85,ZNF850,ZNF852,ZNF862,ZNF875,ZNF876P,ZNF879,ZNF880,ZNF883,ZNF891,ZNF90,ZNF91,ZNF92,ZNF93,ZNF98,ZNF99,ZNFX1,ZNG1A,ZNG1B,ZNG1C,ZNG1E,ZNG1F,ZNHIT1,ZNHIT2,ZNHIT3,ZNHIT6,ZNRD2,ZNRF1,ZNRF2,ZNRF4,ZP1,ZP2,ZP3,ZP4,ZPBP,ZPBP2,ZPLD1,ZPR1,ZRANB1,ZRANB2,ZRANB3,ZRSR2,ZRSR2P1,ZSCAN1,ZSCAN10,ZSCAN12,ZSCAN16,ZSCAN18,ZSCAN2,ZSCAN20,ZSCAN21,ZSCAN22,ZSCAN25,ZSCAN26,ZSCAN29,ZSCAN30,ZSCAN31,ZSCAN32,ZSCAN4,ZSCAN5A,ZSCAN5B,ZSCAN5C,ZSCAN9,ZSWIM1,ZSWIM2,ZSWIM3,ZSWIM8,ZSWIM9,ZUP1,ZW10,ZWILCH,ZWINT,ZXDA,ZXDB,ZXDC,ZYG11A,ZYG11B,ZYX,ZZEF1,ZZZ3 +GSM1946756,0.0,2.011265,2.011265,1.5660233333333335,4.41636,6.2221,2.5638967105263157,1.6998166666666668,7.510320637254901,4.43974,3.186916666666667,2.466645,2.307185,3.3906,4.43702,1.865232,1.484496,5.0383,2.5021133333333334,2.267795,4.91678,5.3744499999999995,3.869825,2.443965,1.855828,4.33428,4.59319,4.409285,0.7240483333333333,1.5675483333333333,1.9262266666666668,2.1910625,1.8155125,1.11024,0.69596,3.10492,1.53129,1.9714075,1.1761575,2.1861525,1.1059825,1.0685775,1.1128740000000001,1.487162,0.925874,0.91105,0.7476659999999999,1.1954314285714285,1.7098939999999998,1.824798,1.522166,2.06556,1.694828,18.3446775,0.382554,0.8438399999999999,1.127496,1.75551,1.490892,1.7372779999999999,1.0796428571428571,1.0796428571428571,1.0796428571428571,1.1703966666666668,1.0010999999999999,4.74626125,1.186795,2.435675,2.0331675,2.6346,0.987357,2.2956475,2.270275,2.1270275,1.4744075,2.0441025,1.556535,1.7004525,2.45842,3.67981,4.381915,4.869965,1.5645366666666665,4.71266,4.380288333333334,4.12785,4.13438,1.04367875,7.39652,0.603771875,0.603771875,2.2947625,1.0822642857142857,16.243965,4.859345,5.28005,5.54885,4.376985,4.18587,5.32645,0.45924000000000004,2.2604249999999997,1.68844,2.3777325,4.577855,3.715305,1.536325,3.1985766666666664,3.4950666666666668,2.62569,3.6661333333333332,3.5217,4.735425,2.9362380000000003,4.573335,3.0292933333333334,0.7225472727272727,1.642484,2.75725,4.89615,4.603755,0.560843125,3.5836,3.75821,0.84181,4.479405,1.6986914285714283,2.139065,2.759275,2.043775,4.11838,5.7046,3.42758,2.81174,3.3507,3.0261899999999997,4.17512,3.084186666666667,5.74775,3.362015,4.358415,3.26003,2.211455,3.64875,2.5633,6.9359633333333335,3.508915,3.62749,5.70075,3.16035,5.08995,0.7841922222222223,9.63789619047619,3.61083,1.9633833333333335,1.9087899999999998,3.3402333333333334,2.35945,4.68342,5.50165,2.1585775,5.102790833333334,2.794955,4.621625,2.1585775,2.7130799999999997,4.384255,5.18877,4.14106,8.9539,3.56785,5.11695,2.96866,5.0195,4.476275,1.8384,8.22317,4.351195,3.96788,4.182705,3.62366,3.417545,2.237745,6.389565,2.35314,3.970755,4.07099,5.15105,5.1965,3.952325,1.54901,2.768915,2.97311,1.601075,1.601075,5.776089761904762,3.112565,1.8985200000000002,4.128945,4.665235,2.66625,1.508595,0.8142033333333333,5.5029,2.95664,6.899,3.30175,3.988395,3.723665,3.12017,3.80918,3.510115,3.95761,3.972455,5.89665,2.81328,3.677895,9.113136666666666,4.81324,3.5704666666666665,3.0942900000000004,2.79865,3.9530999999999996,4.3513158333333335,1.9615225,2.7438300000000004,2.21575,1.730788,1.6608266666666667,2.600956666666667,1.7527775,1.926435,3.0055266666666665,2.75792,2.33576,2.72308,4.380288333333334,3.47311,3.18551,3.505425,4.41533,1.2703833333333334,2.543725,2.842612,2.13322,2.5728033333333333,2.21048,3.4065999999999996,1.801702,1.3212066666666666,2.6079166666666667,0.6570199999999999,1.6276366666666666,0.5225388888888889,0.5225388888888889,1.4535033333333331,2.744123333333333,2.1976833333333334,1.3118166666666666,1.5421566666666668,0.32280615384615385,2.750583333333333,0.6570199999999999,1.2422333333333333,0.19852675675675674,1.45218,2.0218375,3.3557666666666663,2.5909,2.3045166666666668,2.5303833333333334,2.16609,2.3997633333333335,2.5012,2.4082866666666667,2.2190499999999997,2.718386666666667,1.9647566666666665,2.68526,4.121295,0.68402,1.8232833333333334,2.5447566666666668,1.9935833333333333,3.3372633333333335,1.5135239999999999,2.583343333333333,2.2122533333333334,4.273353333333334,2.0374466666666664,7.211578095238096,1.6469714285714285,2.879716666666667,2.0180875,2.2033725,3.4099,1.9516175,1.9228875,4.154195,2.6288,2.19124,3.79772,4.200835,4.310895,3.695165,2.31987,3.313155,4.525864666666667,3.783695,3.972675,4.15116,4.496165,3.078345,4.445005,3.400735,0.90451625,4.81617,1.2361583333333332,4.83014,3.790015,5.797581999999999,3.757725,4.279045,0.951525,2.22238,3.541915,4.15169,0.80685,1.1849418376068375,2.010833095238095,3.3350185714285714,5.5299949999999995,5.554993,2.246815,3.125195,5.12375,0.33538285714285715,3.519315,2.355385,0.9917525,4.34332,2.063025,11.831859999999999,1.3478,1.4389275,2.1326300000000002,2.398555,2.0072892105263156,4.8135042105263155,0.3364042105263158,1.7424866666666665,2.771236666666667,1.04889,3.706,0.9870142857142856,5.15595,3.89523,2.097583333333333,6.0457,5.68515,2.570425,1.1476771428571428,4.35171,4.800435,4.332665,0.8708836363636364,8.067309999999999,3.01151,4.434395,2.6905433333333337,2.4870766666666664,4.65651,2.52323,2.6381133333333335,2.1398699999999997,2.5209333333333332,3.28355,2.9865633333333332,0.342903125,4.03022,3.868935,3.83546,3.90148,4.522285,6.150748999999999,4.14007,1.6656975,5.43375,4.50909,4.31783,4.292265,1.1917766666666667,2.60222,3.2518333333333334,2.690136666666667,15.736,3.513035,3.76905,4.153715,5.75935,2.803055,5.118540138888888,1.6838175,0.7670477777777778,2.8004,3.355275,3.656295,4.120065,6.551878333333334,2.9652100000000003,2.198955,2.16646,3.4439666666666664,4.36282,2.27695,0.3626201785714286,2.784827173913044,1.9349,1.130335,0.46982126552795034,0.5770223524844721,0.3626201785714286,0.3626201785714286,0.3626201785714286,1.210235,1.336185,0.81709,1.4790125,4.2035800000000005,0.21396500000000002,11.324229361471861,3.205023333333333,2.8642466666666664,4.12196,4.223795,3.94554,2.08812,4.777895,4.0313843333333335,4.212065,3.90637,0.6457761538461538,3.4951666666666665,4.174307692307692,0.59112,3.494505,2.97227,4.58511,0.5463154545454546,1.87357,4.288375,3.412295,1.9019775,1.7979766666666668,1.5233966666666667,3.2201833333333334,4.005675,2.96831,2.8522966666666663,5.11305,5.7803,4.834515,3.3509333333333333,3.0446125,6.812474999999999,3.8966999999999996,5.07085,0.4015290476190476,3.1401299999999996,3.932568333333333,2.00254,2.67146,2.845455,5.28494,0.5868675,2.9279,4.450995,4.01613,1.04072,4.654335,2.96558,4.99935,3.076446666666667,4.09771,3.505525,4.304145,1.184975,3.335755,2.7897433333333335,4.62389,3.91301,4.287895,5.9405,4.41575,2.624585,5.14176,2.3469,3.045655,3.1564200000000002,2.7386866666666667,2.822153333333333,2.23135,1.8306080000000002,1.5681200000000002,2.0353133333333333,0.8061428571428572,1.5340733333333334,2.4071766666666665,1.9873466666666666,3.1076766666666664,3.181086666666667,2.8554566666666665,0.8624866666666667,5.0227,3.3902666666666668,5.43440625,2.658439583333333,3.0180066666666665,2.9785866666666667,1.9544333333333332,1.9544333333333332,2.7380272727272725,2.7380272727272725,3.5958140584415585,0.5376542857142858,1.70861,2.0704033333333336,3.655666666666667,2.1959414285714285,2.1959414285714285,2.1959414285714285,7.35974363095238,4.2669080952380956,0.9635545454545454,2.78803,4.9048791666666665,2.307415,4.67872,3.144295,2.28719,3.860255,3.0880033333333334,3.174246666666667,1.19348875,1.93062,3.120786666666667,2.4839966666666666,2.551746666666667,5.54905,4.119433333333333,3.8378666666666668,4.919363333333333,1.9252500000000001,2.510406666666667,3.1895966666666666,0.9940944444444444,2.168953333333333,4.728738666666667,7.960369999999999,1.54022,2.93598,4.833795,1.8163340000000001,1.784335,1.784335,1.0144925,4.83679,7.53895,4.132645,5.125204,4.590705,1.6890666666666665,4.093315,3.212155,4.71311,5.052623333333333,0.35963473684210523,2.92503,2.630435,3.86158,3.81273,1.8284759999999998,1.9158275,2.5422,4.32296,3.980585,3.2168,2.47849,1.443426,6.96613,5.1909,5.196,3.524405,5.6613,4.361445,4.98126,3.96379,3.749955,1.992245,1.0948571428571428,2.781725,4.032825,3.82161,5.7422,5.709715,2.40205,1.5775266666666665,2.69363,2.7470233333333334,2.9455766666666663,0.6808878571428572,2.119085,3.650645,1.12878625,5.1464,3.224655,6.101725,1.2443046969696971,1.2443046969696971,4.098095,3.74303,3.827965,5.6568,2.7701433333333334,2.3198233333333333,3.9867,3.143635,2.16059,3.4688,2.43981,4.18354,3.390715,3.507155,4.59518,1.0415455555555555,2.52949,4.2891,4.679915,3.232305,2.47792,1.820915,0.7340311111111111,0.7340311111111111,0.7340311111111111,0.7340311111111111,1.4743461111111111,3.7690449999999998,3.7690449999999998,1.73184,7.08774,3.481765,4.193025,2.9730399999999997,2.663675,4.665255,3.944405,4.948495,5.22185,1.6868975,3.936395,3.71201,2.595915,3.027655,3.405625,2.46269,4.031,1.726205,5.0403,1.621255,3.4791700000000008,2.933485,1.7709225,1.1815666666666667,2.760925,4.40737,1.1922000000000001,0.8240555555555555,3.64388,1.2505475,4.9261566666666665,4.37419,1.3613157142857144,3.56887,0.7543266666666667,2.6011933333333332,2.446473333333333,2.309813333333333,2.6315,4.01903,2.8805199999999997,4.90793,5.59785,4.336385,4.497755,2.094035,1.306442857142857,3.956745,5.0739,1.4038925,1.4038925,4.02387,0.26511066666666666,2.4191,0.26511066666666666,0.26511066666666666,0.26511066666666666,0.26511066666666666,5.3933,2.68999,3.057535,3.53618,3.1838200000000003,4.57838,2.6196699999999997,0.93252,0.93252,0.8605216666666666,0.8605216666666666,3.80851,1.70425,4.446835,1.5165610714285715,1.5165610714285715,5.1954,0.465135,2.628275,7.418025,4.65819,3.270295,3.431085,0.96536375,2.262485,2.0585725,4.652075,4.41002,4.2104,3.824435,1.2681228571428573,2.58705,1.963455,7.60836,1.72957,4.48425,4.818405,2.906795,3.88274,6.22233,7.86655,4.083435,4.623305,4.18421,2.44899,3.139935,2.30805,2.29143,1.81699,3.916705,3.618555,5.596385,6.30376,4.012575,1.06216,1.87412,3.833595,3.84304,2.1094375,4.429815,3.55675,4.689933333333333,1.7060166666666667,3.9247,1.6329566666666666,6.3551400000000005,2.7870633333333337,2.39404,2.3172133333333336,2.50077,3.12157,3.3226633333333333,3.2829833333333336,2.88353,3.417866666666667,1.969772,3.76785,3.095425,3.20149,0.3812875,2.879855,4.031275,2.68095,5.63995,4.93864,4.559665,6.8075209999999995,4.540885,2.1919933333333335,4.37798,5.161,1.6207183333333333,4.88555,5.41685,5.114,4.826855,3.16036,5.61045,5.0244,3.737605,5.347339333333333,7.675447500000001,4.048685,1.2146433333333333,1.4336133333333334,2.61001,1.9338259999999998,4.47072,4.01416,5.1374675,2.4708366666666666,2.4652933333333333,2.733836666666667,2.4543866666666667,2.3881033333333335,0.9607244444444445,0.5066005882352941,4.09814,4.05761,3.5736333333333334,4.10357,2.912375,3.3442666666666665,5.289033333333333,2.988,0.5704452941176471,2.984515,5.68225,1.9013075,1.619068,3.83629,3.210615,2.4870433333333333,3.844666666666667,3.912745,2.718593333333333,2.3039466666666666,2.4023933333333334,2.4233933333333333,2.669095,4.174178333333334,5.093633333333334,7.015857416666666,1.390554,4.642805,3.3315129166666666,5.062758916666667,2.5569,3.08919,2.37613,2.0846666666666667,1.421185,1.421185,2.6868533333333335,2.37632,2.7517,3.997725,1.678804,2.28705,1.838625,0.516765625,3.707625,0.6280291666666666,1.0246725,3.44398,4.325615,3.7639,1.67018,4.541375,3.04888,0.8163357142857143,4.410255,3.8805690476190473,3.2011633333333336,2.499955,5.0954,0.27778827586206895,2.1663215,3.17645,1.5051825,3.5991,6.8098,2.35005,1.36301,3.97865,3.87491,2.782413333333333,2.782413333333333,3.474555,2.89758,4.900305,5.4480933333333335,4.961815,0.9673599999999999,2.90724,2.4874266666666665,4.443435,5.2204,5.1307,4.92,4.3609333333333336,3.8356,3.7263,3.4890333333333334,4.139233333333333,3.0521733333333336,3.0444366666666665,0.6362557142857143,2.45925,2.481815,3.78071,3.18347,3.156826666666667,0.7392783333333334,2.851005,4.2139135,4.580285,5.7515,4.849975,1.9889225,1.9889225,0.815044,3.17222,4.440525,3.883985,4.417517142857143,3.40487,4.760805,0.5811045454545455,3.08116,3.7939,4.37121,3.8549125,0.8166728571428571,2.741105,4.018675,5.6748,3.84421,5.0488,2.704245,4.15869,1.4189,1.0018685714285716,2.7362699999999998,5.2972,4.15439,3.178775,1.4349166666666668,3.982635,2.54705,2.76385,2.8066180000000003,3.06781,4.554273333333334,3.042526666666667,1.7094919999999998,3.593666666666667,1.4795123809523811,2.968116666666667,2.57381,2.39119,2.8702533333333338,2.8051766666666667,2.2583066666666665,2.7308266666666667,3.498195,3.24288,3.408892333333333,2.415836666666667,1.80687,4.050538333333334,3.0651766666666664,2.40325,3.408892333333333,2.3186933333333335,0.7976890909090909,2.405465,0.9854777777777779,2.223085,1.497865,0.9155272727272727,1.765255,1.7746625,2.67324225,2.743175,4.674295,1.4134275,4.7031,3.17511,1.599962,2.4119433333333333,2.58391,1.6564633333333332,2.8201366666666665,2.7173866666666666,2.5259293181818183,1.9376075,1.783932,3.548666666666667,2.2587966666666666,2.9191916666666664,3.1715633333333333,3.1171733333333336,3.7387333333333337,2.024766666666667,4.1597333333333335,3.4303333333333335,3.774266666666667,2.8375866666666667,3.5361333333333334,3.7634333333333334,2.0228266666666666,10.1073,4.305845,4.389995,3.32173,2.762245,2.00645,4.02682,1.708614,4.017795,4.427515,1.357142,2.40338,1.11815,2.415833333333333,1.6686500000000002,2.4152366666666665,4.90343,3.0848333333333335,3.603055,5.0869,0.78146125,1.4692180000000001,0.979249,3.59497,10.617986666666667,3.5251333333333332,6.6741,1.982305,5.14455,4.43044,2.4926975,5.219,0.2898529411764706,0.8273171428571429,4.88033,4.35676,7.113115,1.928165,4.29194,5.96925,4.522075,4.673025,3.53429,4.52147,3.515145,5.817488333333333,3.689265,3.198495,3.13753,2.26659,1.9675799999999999,1.4197752291666668,2.4691,4.102445,4.861375,1.537406,9.14575,1.8422333333333334,2.9339933333333335,1.0628600000000001,1.0628600000000001,7.332672083333334,3.00387,2.1953825,2.180725,2.6105533333333333,2.1312466666666667,1.0651433333333333,3.548684166666667,2.6471766666666667,0.6208657142857142,1.7356766666666665,3.1991120000000004,3.1991120000000004,1.0943033333333334,2.570073333333333,2.3220733333333334,2.6979533333333334,1.3125225,1.7766133333333334,4.813118666666666,2.7219266666666666,2.7128,1.168075,1.168075,4.00647,5.6898,4.55198,3.42892,3.918965,6.27652,2.700385,2.936916666666667,2.84703,4.03145,1.1609516666666666,3.3815000000000004,2.561625,3.755625,2.1476533333333334,4.844725,3.55397,4.2594,3.671225,5.555022999999999,1.0045611111111112,2.0477525,1.96486,3.71928,4.46309,3.683655,4.06227,3.706745,2.61238,1.6676,4.192305,3.382075,3.371085,2.4184633333333334,0.84916625,3.38622,4.28236,4.824985,1.2137766666666667,2.953193333333333,2.5865266666666664,1.91638,1.7221829411764706,1.7221829411764706,1.13635,2.090943333333333,1.0833485714285715,1.379794,4.60692,4.357795,0.47872380952380955,3.47694,3.3584333333333336,3.99152,5.3842,0.4136115,8.89838,5.517,2.65626,3.97949,4.51857,5.507264285714285,4.9466,6.80645,0.685710909090909,2.80033,5.34685,2.8728933333333333,1.709855,1.99619,4.61777,5.1857225,2.4353889285714283,3.280913333333333,3.142633333333333,1.9773425,4.52651,10.84835,8.51320625,3.9657999999999998,4.463245,3.119205,3.05572,3.946165,1.89607,2.971626666666667,3.70485,5.0104,4.974325,5.12451,6.860633333333334,2.4326266666666667,3.87506,4.6364,4.584705,4.904575,7.568576666666667,4.1756,6.114,3.505135,3.07679,2.92979,5.93965,3.780415,5.13015,2.15039,3.1560133333333336,3.322525,6.1026,4.173145,4.213815,1.466768,0.90628375,2.438245,0.5729053333333333,3.81602,3.642885,3.4849,2.89135,2.1273833333333334,2.960275,2.552375,2.895646,1.80656,3.01574,2.85675,2.3340725,2.56285,3.7754639999999995,1.2946133333333334,2.7527983333333337,5.2227,3.7706999999999997,1.114435,2.7332466666666666,3.74418,3.7215619999999996,1.54445,5.65635,5.5259,2.1710533333333335,3.0264866666666665,30.3544705948447,3.3163300000000002,1.7137333333333336,4.007133333333333,1.54908,2.59754,2.8732233333333332,3.476233333333333,1.9929,2.7794,2.0234275,3.7110225000000003,3.5018333333333334,2.4456625,1.491985,2.2473199999999998,2.880775,0.3827681818181818,1.1501725,2.8280766666666666,1.688724,3.45767,1.54445,2.111083333333333,25.398883444444447,5.2916,3.93763,3.60718,2.358015,2.41941,2.68735,2.32855,3.496915,5.235609,5.31445,1.564654,1.8227879999999999,2.08709,2.3685650000000003,3.769210833333333,5.2794,4.637735,4.43637,0.18569978723404257,4.937005,4.680831666666666,3.80121,8.87574,1.060685,1.060685,2.96951,3.0191,5.53155,1.93682,1.037721111111111,4.56242,1.8776775,4.046525,4.135395,3.32498,4.129595,3.95536,5.04245,2.852815,0.7138422222222222,3.17002,2.2334066666666668,4.28224,7.687785,4.255385,1.73632,1.73632,6.905107500000001,4.69616,4.173895,5.77315,2.0399066666666665,5.248059166666667,1.3657933333333334,1.6628633333333334,2.99661,1.9896900000000002,2.852655,2.74395,3.824385,4.4457125,4.106825,5.45795,2.3689175,2.702125,1.85654,2.7641,2.4538525,2.06222,2.086355,4.818514166666667,1.8378725,3.451267619047619,2.40821,3.1992133333333332,2.61473,1.8554766666666669,1.4377,0.936638,2.5602133333333335,3.8399,0.720853,4.524775,1.751915,5.78591125,1.9479425,1.53274,1.50587,1.4865466666666667,5.598626666666666,1.9087260000000001,3.094863333333333,3.668066666666667,1.2766625,1.7472625,4.833725333333334,3.21998,2.00467,3.5158,2.818656666666667,2.9522033333333333,1.2744298214285714,0.25932499999999997,0.25932499999999997,0.25932499999999997,0.25932499999999997,0.25932499999999997,3.991835,2.62922,2.452065,3.454266666666667,1.3486016666666665,2.65305,3.105643333333333,2.3546766666666668,3.50136,3.04709,1.6492866666666668,2.913653333333333,3.1229333333333336,2.16204,1.9947725,3.70741,2.7296,3.7093666666666665,4.96629,2.6530366666666665,2.65965,2.531363333333333,10.905438333333333,4.91206,4.48732,4.977395,4.381005,2.856176666666667,5.0914,4.129495,4.12549,5.370253333333334,3.983795,2.85133,2.2709275,3.32717,4.984033999999999,3.50519,17.544880714285714,1.116385,4.2788,0.8579411111111112,1.2549375,2.864825,4.688135,4.124145,4.326675,1.632625,2.3671825,4.24341,2.0827633333333333,4.441225,3.2716010714285715,2.67127,0.645565,2.820766666666667,4.682565,2.45034,2.3100975,2.2224975,20.191234166666668,1.348728,1.3679625,2.6898466666666665,0.2875507692307692,1.78263,2.8173933333333334,1.9669066666666666,3.0213566666666662,2.735625,7.631743333333333,1.90204,2.527275,2.2012025,2.07652,1.5984866666666668,3.4083,3.165025,4.020385,3.2756833333333333,1.9332325,2.633394166666667,3.1502213888888893,4.96352,0.4196216666666666,3.7392333333333334,3.0237700000000003,3.07622,2.08453,3.60671,3.57281,1.50559,2.3384199999999997,2.16191,1.4901333333333333,1.8247,3.493625,3.28844,0.7704483333333334,3.34371,4.92921,4.100955,2.285586,2.285586,2.8685533333333333,4.323955,3.16844,3.361035,2.3165,0.8952109090909091,4.550635,3.61198,6.23045,3.794485,2.369634,2.369634,1.245095,3.247515,5.08445,4.24802,4.194125,3.0051733333333335,2.272953333333333,4.42075,3.475645,4.12049,2.909753333333333,2.8272633333333332,4.2708173333333335,3.1923166666666667,2.6746700000000003,1.9219866666666665,3.494505,2.64105,1.6392233333333335,3.7227,3.38701,4.362915,3.6603,4.660235,4.36473,6.43513475,3.97866,2.1239999999999997,4.73146,2.92501,7.317995,2.5216966666666667,1.3154183333333334,4.260755,3.661,4.843565,0.4954328571428572,0.8727666666666667,3.57863,3.59955,2.1078168181818184,4.21699,2.901125,2.97937,9.1967,1.9279199999999999,1.195022,3.67354,2.72178,3.45435,4.597595,6.339891666666667,3.126231666666667,2.1230433333333334,2.9775833333333335,1.7693266666666665,3.3450333333333333,8.793519819376026,0.951709761904762,1.0315175,4.757275,0.439178,1.66106,2.201995,3.049575,3.06505,2.885375,4.352185,2.32594,13.34234,5.118270000000001,2.488135,2.488135,4.249065,0.8326250000000001,5.235463333333334,3.89715,4.119605,5.536498333333333,3.465315,4.747215,1.3538366666666668,2.801295,2.861075,2.65636,3.10777,2.791105,3.10587,3.602175,3.59071,3.132995,3.028315,4.393285,4.291995,4.622755,2.9852133333333337,3.3358666666666665,4.825426666666667,4.26601,18.01402392857143,11.935299404761906,3.2961992857142857,0.6883691666666666,1.4525714285714284,4.381175,3.590125,3.0333991666666664,1.919065,0.8332444444444445,0.6472783333333333,0.6473142857142857,2.0712825,1.6110119999999999,5.15285,3.362633333333333,0.7077436363636364,3.34568,2.32437,1.6583475,1.8065760000000002,6.591713333333333,1.529586,4.400595,2.92783,2.9338266666666666,2.18062,2.6238,2.5823199999999997,0.7872827272727272,2.629825,3.1284500000000004,3.9172200000000004,2.96415,7.432639166666666,3.653715,3.479645,2.43489,3.459725,6.625187499999999,2.1411175,2.4629375,2.550325,1.595425,2.547775,2.06308,2.6288,0.921026,1.3760475,1.02008,2.726835,4.197375,6.1249,5.5961,3.07324,2.267085,2.87385,3.406333333333333,7.525816666666667,1.1291933333333333,0.38322,3.233365,2.1667666666666667,1.454856,3.331792,1.209284,1.8247763333333333,3.938575,2.9269246666666664,1.216115,1.8754866666666665,3.944701666666666,3.646665,4.55933,4.02788,2.02715,5.0124,3.87432,0.7671961538461538,4.684995,4.020835,4.3421891666666665,3.27812,2.376825,1.333784,1.15443,3.595995,2.720955,3.32864,3.9754,2.688665,2.61819,3.29032,3.825935,4.45427,2.39977,2.709015,4.31214,5.73065,0.56221875,4.312965,1.8207175,3.53613,4.0841666666666665,1.979325,3.19339,2.1998925,1.97967,2.555305,2.2446083333333333,1.7163733333333333,4.55381,3.755585,1.2754628571428572,6.85724,1.0091400000000001,3.574335,1.6702933333333334,4.63675,4.0851,3.3239033333333334,3.15823,4.18399,8.33551,2.94245,3.560695,3.691145,3.68194,1.673885,7.91367,3.70672,3.946055,1.82424,4.25728,2.92923,1.06496125,2.07192,4.050255,2.179455,4.17263,4.86154,4.135025,4.51363,2.18695,5.00675,3.959495,3.3943,2.33775,1.596646,4.59345,6.21225,4.58625,4.57377,3.013455,2.1586075,3.965415,3.384485,1.158607857142857,4.18555,4.795099166666667,3.74163,2.798145,3.703875,0.4302428571428571,0.4302428571428571,4.782045,4.06,4.21353,2.20709,3.6358,5.83365,0.838519,4.128555,4.756635,4.67652,4.756275,4.953585,1.7942825,3.06738,2.1465175,4.375605,0.67625,4.00674,4.13155,2.693735,2.8576833333333336,4.263695,2.32317,3.283855,60.17807910606061,3.281485,2.5874200000000003,1.7035425,3.31258,3.943065,0.7920575,0.9833875,2.2104525,2.2104525,1.316754,3.261665,2.24546,3.7662009999999997,7.49041,2.8279666666666667,1.2656185714285715,1.3499549999999998,2.6850633333333334,3.9995683333333334,0.8936820000000001,1.87164,1.323174,1.88971,4.12437,4.358235,3.18003,20.78739174891775,3.83679,3.94731,3.3324,2.1740233333333334,2.945135,3.25906,2.550925,5.40495,1.481598,4.036,3.289669892857143,5.835758194444445,1.99338,2.68801,1.96464,4.663865,2.3907633333333336,2.220385,2.1097333333333332,3.5632949999999997,3.321345,3.558765,3.88227,4.38658,2.525575,2.561065,2.88573,2.76022,2.87221,2.22576,2.020585,3.50739,1.2024966666666665,3.704475,4.673195,2.66878,4.88871,4.85683,4.704658333333333,1.9657733333333332,2.450875,2.686645,2.83808,4.12575,3.18984,4.56199,0.7313457142857143,3.89747,2.951635,3.819895,2.3977175,1.7763839999999997,3.640686666666667,1.1949666666666667,2.7782,4.420055,1.112126,3.6864,3.5119,4.585475,6.5476575,2.06173,2.89997,2.6497699999999997,3.8841666666666668,2.933533333333333,2.629815333333333,3.28801,2.4335166666666668,2.4376533333333334,1.3661966666666665,2.1709225,2.1709225,1.9220133333333334,2.0887766666666665,1.7788733333333333,2.585026666666667,3.84663,5.58075,4.635995,1.660995,4.421015,3.761345,3.563145,4.208815,1.958785,1.96812,4.6592199999999995,1.9682,4.211496666666667,3.980055,3.561035,2.44441,3.6799156250000005,3.247945,3.02593,3.529055,0.14850877551020408,2.4361266666666666,7.66183,1.5539720000000001,3.446835,2.852065,1.00721,1.149975,1.90271,3.902885,2.87307,6.918695,3.6333,3.708895,3.124915,2.67106,3.389585,3.47519,4.00454,3.43799,2.8582366666666665,5.36875,4.062755,4.23451,2.5367166666666665,2.04178,3.461385,4.468595,2.721775,2.92429,2.14708,2.56859,3.93421,3.761685,2.71256,4.436425,5.3281,2.75356,4.45516,3.96815,3.615715,4.543055,3.51028,3.24482,5.3671,4.709795,5.30055,5.1124,4.307705,5.3446075,4.279265,3.838605,1.312782,6.6653,2.39747,4.4043,4.188875,4.006895,3.1064399999999996,1.9756766666666667,2.3037033333333334,2.4523766666666664,1.0179,3.3795333333333333,3.699066666666667,3.144743333333333,2.105516666666667,3.793115,4.285345,2.54179,0.5432400000000001,4.54906,4.562275,5.1278,4.610185,3.72293,4.64682,5.09505,4.857735,1.4122999999999999,0.9378,2.7372333333333336,4.946315,5.80145,0.492750625,2.815245,2.5115866666666666,3.249425,4.549785,3.8083666666666667,2.0499125,5.64135,3.624795,4.57827,3.066225,6.29965,5.1098,6.9429775,0.5421575,4.04513,0.838664,2.331415,4.1457,3.2864166666666663,1.25973,2.2471,4.2762,3.574125,4.345475,1.89602,2.0596125,3.421425,4.558305,4.329515,3.76138,1.6621479999999997,1.1751037142857141,6.0758,2.3025075,7.7001875,4.46185,3.637185,2.260245,1.5804825,4.26644,4.60532,1.7924433333333332,2.47101,2.521125,2.4361266666666666,6.698659166666667,3.090915,2.8032566666666665,3.9556325,4.011125,2.0725966666666666,3.25632,6.9189475,4.17656,5.2878,0.5207772727272727,3.27008,4.13329,4.861222857142857,3.913705,4.272995,2.9584,2.760995,3.355245,2.85598,3.6146991666666666,1.941122,5.473307,4.682595,5.14585,4.00331,3.430285,3.2622466666666665,2.291425,1.3153275,0.92342,2.768465,2.391025,1.07989,2.66959,5.18485,4.918155,3.795515,4.11058,16.47332952380952,3.94857,4.4946,3.836765,0.7178141666666668,5.12635,4.634845,3.919395,4.8956,5.1801,2.930655,3.61033,3.32778,1.4732239999999999,3.0857,4.877115,3.3917333333333333,1.511394,3.652775,4.8343,3.929475,4.990835,4.794065,5.50355,3.85773,2.61462,4.13155,4.232215,2.552255,3.0283933333333333,3.0402466666666665,1.60252125,5.00065,2.7148842857142856,2.0385766666666667,4.008205,2.295045,4.24854,4.050538333333334,2.169295,2.81553,4.260825,3.71487,4.309925,4.466165,4.864635,4.894455,3.116665,5.29755,2.7304483333333334,3.8158,3.31055,1.53782,4.32847,1.030805,4.40195,3.02048,0.9368985714285715,3.71923,2.05618,6.433635000000001,2.4734005238095236,2.4734005238095236,2.4734005238095236,0.7099000000000001,1.1511216666666666,1.813595,3.37572,5.45619,3.426753888888889,1.88716,2.0861175,1.7449633333333334,3.795835,2.39869,0.4413469230769231,1.67203,2.1291375,2.8636,1.86322,2.583965,2.276985,2.07622,3.86997,3.018406666666667,4.2986,2.860655,1.925215,6.507,2.040395,4.32505,3.87009,6.555138333333334,1.6364633333333334,3.59808,3.81331,3.704085,4.11138,2.7032,1.9778275,3.92727,5.895662333333333,2.0351,3.53198,3.097325,1.9712575,4.83253,4.128045,2.6150166666666665,2.1879,3.6041225,5.757553571428572,6.03805,3.13943,2.39908,2.766365,3.162105,2.77857,3.99862,1.37193,2.840195,4.66842,0.7713825,3.443225,3.884195,3.7402,3.12021,2.40374,3.331205,2.064945,4.594665,8.143663333333333,4.43132,3.41063,3.20209,1.00298625,4.536405,2.38662,4.21713,5.5452325,4.015235,4.041855,11.394680000000001,4.716515,4.025605,1.529925,0.6902833333333334,2.772605,3.89212,3.44012,3.63182,2.115693333333333,2.5592266666666665,2.118106666666667,1.12712,1.12712,2.0007766666666664,2.37902,1.88859,2.2594966666666667,2.7460066666666667,3.5985333333333336,2.3942566666666667,2.8555733333333335,1.4313666666666667,2.2400866666666666,2.1422966666666667,2.0202066666666667,1.5124825,2.5025,0.6401533333333334,9.702720000000001,0.6401533333333334,3.26281,2.023511666666667,1.8858433333333335,4.220765,4.26011,3.741065,4.25865,2.1789866666666664,2.9674866666666664,3.234056,2.07236,3.2646266666666666,3.0092266666666667,2.5221966666666664,2.7859433333333334,1.6917933333333333,5.53015,6.1687223809523815,3.2156000000000002,3.429133333333333,3.2055166666666666,2.5813099999999998,2.6810766666666663,1.11024,3.5705333333333336,3.626633333333333,4.036055,6.11605,4.298525,2.80618,3.5705333333333336,3.0008866666666667,4.219467777777778,4.31508,2.6062333333333334,3.657565,3.25695,3.102176666666667,4.766875,3.1846566666666667,3.86274,6.0664050000000005,2.16489,2.5731033333333335,1.6021733333333332,1.42175,5.101570000000001,3.5533316666666668,2.5155600000000002,2.13502,1.93056,4.45103,3.73849,2.71076,3.4127333333333336,3.31943,3.5076,3.5402,3.5419,3.2087800000000004,0.56092375,3.7866999999999997,2.6453966666666666,2.7003633333333332,3.48547,4.51931,4.448455,4.920905,2.64228,4.139141666666666,1.1589866666666666,2.951916666666667,2.951916666666667,5.50075,3.09027,3.82069,3.92623,1.5976,3.32762,3.69132,1.1509214285714287,3.9143545,3.0712703333333335,2.192950333333333,0.348627,4.279215,3.12958,6.59471,3.42767,6.22495,3.410445,3.84489,4.032805,1.6811470833333333,3.17398,3.957875,3.435295,3.4357333333333333,2.92529,5.616524999999999,2.138175,0.99192625,1.9276600000000002,1.68422,5.55198,2.30789,2.446493333333333,1.784265,4.3641,3.941495,3.823745,0.607554,4.326765,3.854415,2.8249933333333335,2.8213666666666666,3.0441266666666666,3.267812777777778,4.2596533333333335,1.91145,0.6637473684210526,0.8174928571428571,3.5851666666666664,4.30272,6.302725000000001,4.808205,4.80604,5.546,1.4248171428571428,4.0841666666666665,2.20405,1.02058125,5.2153,6.0853,3.200885,4.878805,3.996505,6.569668333333334,4.0842,6.331148333333333,3.69707,2.5072775,5.88525,10.05683241025641,2.4110766666666668,0.688795,3.180835,4.260805,2.231605,6.27155,3.980635,4.4108,2.7101466666666667,2.7101466666666667,5.75235,3.42355,4.007875,5.1428,3.7330850952380956,2.354876857142857,1.179435,4.984645,2.66268,5.2737675,3.65896,4.492735,2.661405,2.14028,4.56763,4.85229,3.5271333333333335,4.058505,4.452585,27.65743880952381,1.8680475,2.63515,2.3393675,1.6286633333333331,2.54833,1.103657142857143,2.862636666666667,3.0119000000000002,3.4370999999999996,3.22392,0.6248923076923076,3.14921,3.90338,2.93459,3.2434999999999996,3.72,5.68844,4.687205,3.942135,3.61306,3.8007508333333333,3.89259,3.5693333333333332,1.6877325,1.0029333333333332,1.4807233333333334,2.2259033333333336,1.4921866666666668,2.9354,2.4548433333333333,2.43257,2.1639500000000003,2.70554,2.010655,1.8149266666666666,2.83204,4.231055,3.644445,4.03505,1.335612,3.572433333333333,2.4842233333333334,3.70873,2.18555,2.69896,2.40197,1.4302599999999999,4.27212,6.561623333333333,2.739465,3.63467,4.076445,2.615775,3.326389166666667,3.3695,3.55119,4.624845,0.30652343629343637,0.30652343629343637,5.0657,5.2155,3.05628,3.020715,5.3735,4.485275,0.6392946153846153,4.93559,4.44037,3.66138,6.4492,4.590255,7.26748,14.086658333333334,12.688769102564102,4.348525,4.3003,2.5291200000000003,0.6026707692307692,2.5822433333333334,4.441715,1.3300133333333333,4.721875,3.5916,2.8515800000000002,2.1217333333333332,1.9562166666666665,4.89946,5.0323,8.929879404761905,5.0235,4.04156,7.276716931818182,3.38133,3.2576066666666663,1.4229575,5.443255,1.933055,2.4240166666666667,2.744236666666667,0.26538375,2.957235,3.46379,4.5530225,0.841926,1.2011433333333332,3.957235,0.5682750000000001,0.5682750000000001,3.0388183333333334,3.446633333333333,3.341666666666667,3.831085,4.237735,5.55285,3.796435,4.169155,2.864985,3.07794,2.591623333333333,0.9401083333333333,2.888306666666667,3.00274,3.17957,7.10031,2.80222,9.6206,3.11015,6.7436,3.18074,2.3141525,2.518675,2.81265,1.8584125,2.4086875,2.1217575,3.432375,2.39064,3.9211074999999997,2.852815,4.047671666666666,4.047671666666666,2.767975,2.767975,8.879058333333333,2.5835066666666666,0.8148,2.59723,2.4816233333333333,2.555356666666667,3.9211074999999997,1.956974,1.950534,1.553072,4.551465,3.92965,1.711635,4.38259,4.04747,5.766182777777777,6.69328,2.30287,4.207305,6.2332,3.90999,2.97662,2.2316,3.46992,3.37324393939394,4.198305,5.336211666666667,7.371258,3.66675,2.962745,1.15866,4.32602,3.6370926666666668,3.719665,3.7831625000000004,4.380755,2.329925,2.5281166666666666,6.30589,2.98356,1.389402,5.41375,3.758985,2.72967,5.15635,2.72967,2.743115,3.711525,5.12975,1.0324285714285715,4.061742222222223,4.707855,3.43304,1.324645,1.68096,3.984765,3.89161,2.471175,6.385365,3.97855,3.853825,4.12859,4.441955,1.4180025,3.905775,2.51546,3.63545,4.031505,3.73094,4.865845,3.083545,3.92336,4.869915,2.012966,1.86453,3.2537766666666665,3.7031666666666667,3.5337666666666667,2.84408,3.5659666666666667,3.1370799999999996,5.59355,3.377195,3.584135,2.899505,1.9107466666666666,3.6135333333333333,2.1265666666666667,3.08603,3.18782,2.85299,0.67625,2.1113725,1.7756733333333334,3.306405,1.8065200000000001,3.4878270000000002,4.097745,1.235032,3.0199425,4.617235,0.88214,1.3123033333333334,3.39602,3.893595,3.715845,1.9729,1.7016033333333331,3.58392,2.513961666666667,1.7039533333333334,2.859925,1.863395,1.1721840000000001,1.35683,6.451575,3.365255,2.241715,2.44331,2.3760025,3.74827,0.8814125,0.3401078571428572,0.7831914285714285,5.06465,1.8820037142857142,4.56084,2.0933925,1.9355584285714287,3.2169230000000004,1.2813645714285715,1.0797724285714285,0.729086,0.5868985714285715,2.876005,6.46415,2.95376,3.438605,0.3445628571428571,3.540135,17.95197419047619,3.224545,7.112181703379953,1.06622875,1.06622875,1.06622875,1.06622875,5.882298333333333,4.064675,4.552765,2.19668,3.087155,4.7125,5.5618,4.01145,3.50055,4.155065,3.953735,3.914745,3.7840473333333335,4.03051,4.953485,3.912325,4.71698,3.61023,4.19059,2.57675,3.50106,3.422755,3.91736,3.801715,4.39741,3.11158,2.509825,2.467033333333333,4.06143,1.2587992857142858,3.808805,2.47253,3.3222120000000004,4.135025,4.490635,3.08384,2.87834,4.449315,3.10273,3.23165,5.39875,4.79848,3.261375,3.51137,1.721452,1.721452,1.967735,4.618775,3.95794,5.5181260000000005,5.14875,3.5887,6.522,4.82891,2.1371375,9.2651,5.46955,6.6101975,4.41548,2.79983,3.20928,0.2629337931034483,0.87404375,4.215165333333333,3.57355,4.683455,2.9933633333333334,5.679308333333333,4.85985,0.5708792857142857,2.753395,0.440531,1.734939523809524,3.463685,2.237855,3.814645,3.86991,3.264015,3.458825,3.43341,3.72188,3.509045,3.678415,3.81972,2.19523,1.734939523809524,2.816935,2.0700775,3.884955,2.282945,3.89639,3.592745,1.673885,4.4385,2.78599,1.2832266666666667,5.1241,4.61904,4.236295,2.7096400000000003,2.9492999999999996,4.16915,2.0315833333333333,1.413408,2.51756,2.5434666666666668,2.63598,2.06011,4.82299,3.303515,4.9647925,3.879511428571429,4.81533,4.162455,1.601052,5.24855,4.42465,5.52035,4.17644,6.80603,1.9804475,4.775285,3.777915,3.184525,1.7440325,1.75643,3.819075,4.34761,2.5045266666666666,2.77074375,3.4349475,3.4349475,2.769413333333333,3.1689433333333334,3.40973,3.962565,3.725995,0.7650069230769231,3.209295,4.4763,5.054353333333333,2.78656,3.060695,1.7847775,2.8444,3.442485,2.23052,4.67069,3.070095,4.848765,1.9453500000000001,1.0120363636363636,6.34836,3.734585,3.4911,3.160433333333333,1.7262080000000002,30.071091523809525,3.925475,3.39852,5.61825,4.29509,0.8519583333333333,7.208565,1.94145,5.68705,1.4762133333333332,4.234015,5.219925,3.71697,3.235785,2.3244475,3.5052,4.91675,2.0694375,2.7276000000000002,3.753965,2.4347,2.65764,6.2466,2.288265,6.2294,1.15664625,4.382885,3.598215,3.91187,5.15145,2.98662,2.4843699999999997,4.116115,4.488415,3.7698975,3.7698975,5.9134,1.5711575,4.3041,6.84372,3.481545,4.025485,3.17733,5.2739,3.62764,4.18467,1.40205,2.297905,4.349925,4.308605,5.29295,4.44785,2.77992,9.30181,3.08736,3.69562,1.715,3.62464,2.2984633333333333,2.71567,2.1102333333333334,1.3190433333333333,2.5529433333333333,0.9154014285714285,1.1321128571428571,1.1321128571428571,1.1321128571428571,1.8342133333333335,0.54407,3.88125,1.2189466666666666,2.36916,0.9758066666666667,1.7256366666666667,2.66159,2.126446666666667,0.74923875,1.6955633333333333,1.47398,2.3542533333333333,1.657924,1.657924,1.7056433333333334,1.9818766666666667,0.970698,1.8880733333333335,1.7290366666666666,1.1623166666666667,2.22506,1.944025,5.74705,1.984705,5.6775,17.527672083333336,6.64237,3.327825,3.683861666666667,3.4523333333333333,2.7011633333333336,2.6691800000000003,2.955856666666667,0.7343141666666666,0.9877549999999999,0.9877549999999999,0.6634875,2.3729033333333334,3.57917,3.272805,1.523492,5.0462,3.933055,2.46522,3.91938,5.15675,3.82289,4.24045,3.5192666666666668,3.286485,3.490245,5.5925,3.1415366666666666,5.12035,0.515107,0.515107,2.3283,2.85911,4.75202,3.520705,3.871265,4.785725,7.583712,7.72971,3.69692,2.320615,4.316275,3.40982,2.5058333333333334,2.3356,3.702475,1.3288733333333334,3.742165,2.447645,1.6235025,3.580033333333333,3.55682,2.0184825,5.336211666666667,1.5812025,3.608366666666667,3.43577,1.1451185714285714,3.6902333333333335,2.8223000000000003,4.52112,1.15182,1.742175,2.26871,2.1109925,1.686905,2.5136,1.9564875,1.9379875,4.212965,4.610085,2.288305,1.801885,1.5084099999999998,3.6118,2.0257066666666668,2.76455,4.757115,7.2916,2.5738325,3.09018,3.469145,3.55903,2.42881,5.17115,4.14421,3.084385,1.37495,4.31708,2.25978,3.169233333333333,2.52733,3.435175,5.00275,5.68915,2.34071,2.7311099999999997,2.822286666666667,3.349933333333333,2.0244666666666666,1.541102,5.60075,3.4621999999999997,2.239584727272727,3.1729833333333333,3.0680533333333333,2.3573033333333333,3.3114933333333334,3.1817266666666666,3.5307666666666666,5.2102,4.290745,2.96142,4.810505,3.26451,2.310115,3.513785,3.825085,4.167685,6.1060300000000005,1.899032,3.86991,2.378535,2.56679,3.697565,0.55596625,2.311005,2.29575,3.29267,2.72188,2.22756,2.777025,0.6159779999999999,2.708906666666667,4.399905,2.49932,4.238075,2.3767533333333333,3.99047,1.9108675,4.479605,4.261815,2.04344,2.75133,6.920415,3.93811,4.55229,4.85671,6.950579659090909,4.39617,4.328735,2.15611,4.562885,2.88431,1.88453,1.929085,2.1876266666666666,1.0008314285714286,2.5726366666666665,2.36971,2.6038099999999997,3.3150099999999996,1.7820399999999998,3.18814,1.8941966666666668,4.24766,5.03124,1.02960125,1.7863766666666667,2.5209266666666665,2.8339700000000003,1.9833033333333334,1.0858866666666667,5.4662766666666665,2.12585,2.67036,2.682093333333333,2.4765133333333336,2.7050300000000003,3.122805,2.24889,2.756406666666667,2.1966266666666665,4.02414,3.3931,3.916485,3.011753333333333,2.99748,0.683453,1.8422166666666666,2.1278825,1.99658,2.5744766666666665,1.126005,2.7022,2.95971,3.97591,2.035816666666667,3.40712,3.246415,5.02985,3.244225,0.613175,2.07496,2.6055033333333335,3.3166966666666666,0.7573818181818183,2.7256633333333333,3.3676,3.5446333333333335,3.00956,3.3690758333333335,3.727475,3.7002666666666664,3.0633166666666667,2.0310875,5.62705,5.3478,5.15285,5.3187,5.63825,1.75617,3.451055,3.7997,3.4059333333333335,3.11098,2.7258,3.8552,3.4240999999999997,2.927756666666667,13.931365,4.38181,1.0712300000000001,2.6950833333333333,1.5057420000000001,3.323463333333333,3.2399233333333335,2.31338,5.613965,6.651103333333333,2.1998266666666666,0.826109,4.08015,3.3899333333333335,3.04187,4.7886,5.30815,5.6889,4.90714,3.499,1.925855,6.4183675000000004,1.15866,6.428895000000001,4.77364,2.42306,3.9925,7.267036666666667,5.8533,2.2034933333333333,1.488205,2.0180875,6.941165,1.54445,2.9732066666666666,2.5802449999999997,4.217035277777778,5.51535,4.31286,6.3295,3.640705,5.0179,3.753825,9.340250000000001,4.8675,5.9143,2.35284,2.647325,10.983694999999999,3.43408,2.46187,2.5076566666666666,1.5756633333333332,2.86045,3.1406066666666668,0.6962675,1.089132,1.086172857142857,3.29845,7.124113333333334,3.030575333333333,1.3390566666666668,4.87434,3.841905,0.58548,4.738075,4.267515,5.08225,3.45909,3.13723,2.6146066666666665,4.22994,9.905529999999999,1.8197225,3.8979299999999997,4.223065,4.33736,3.718045,0.8331333333333334,3.6349666666666667,4.0126,1.69845,2.4654433333333334,2.3271866666666665,2.5710266666666666,2.1239733333333333,2.16976,2.198225,5.931455,5.0681,3.6873,4.880811666666666,1.6323266666666667,2.3466525,5.04865,4.407785,4.555475,4.14833,4.579305,4.9083,1.721452,3.776355,7.671428333333333,1.2204283333333332,1.6069433333333334,2.4986,2.5330966666666668,2.7743800000000003,4.778549166666667,0.8174928571428571,2.39321,3.306125,6.11215,4.468355,2.2596133333333333,2.8804433333333335,2.0494225,0.53803125,2.2245575,2.876365,7.78036,4.320235,4.56832,0.868028,4.5703000000000005,9.24741775,10.528071666666666,3.2652,1.20780875,3.634865,3.52209,2.57611,5.360952666666666,4.784585,3.853255,2.0040175,3.8285666666666667,2.2295866666666666,2.52033,0.7735245454545455,0.3893686666666667,2.55492,3.32988,2.0848079999999998,3.41458,3.0932166666666667,3.661,5.34845,1.517718,2.9366,2.000585,2.000585,2.23688,3.156625,6.59105,2.69421,2.2986999999999997,3.361333333333333,3.4616000000000002,4.234765,4.56881,4.358,4.11741,4.09365,4.312085,7.08095,7.913153333333334,1.949395,2.282713333333333,2.884183333333333,0.8950999999999999,0.6812866666666667,3.96392,2.393375,5.1389,2.92022,2.990273333333333,1.835308,1.5040225,3.78887,4.362995,4.378565,1.9324666666666666,1.3783933333333334,2.65887,2.009576666666667,2.570186666666667,1.16463,1.16463,2.7184633333333337,4.775425,2.63923,3.155665,3.627355,2.060715,20.01573984848485,3.688985,5.3802924999999995,4.344245,4.21612,3.93826,3.69611,5.59315,6.2260475,0.8638016666666667,0.8638016666666667,0.8638016666666667,2.7221533333333334,1.7498714285714285,3.4346666666666668,4.374765,4.03134,3.20507,4.231455,4.617505,0.8039044444444445,2.0009166666666665,2.20766,5.9595175,3.3193675000000002,3.96873,4.98495,1.979325,2.0129466666666667,2.31622,0.51524125,0.802886,1.92651,2.05857,3.00064,13.494375,2.57083,5.25165,0.7485214285714286,9.59129,5.6298,3.801015,4.29695,2.74655,5.582,2.74655,2.771764,3.124655,3.820065,3.508205,4.020615,4.22243,3.41003,5.7111,6.60834,1.8133100000000002,2.288658,2.725525,26.661549745817247,1.440836,6.16665,3.729494,3.919725,4.232605,4.576835,2.775505,2.70919,2.31144,6.74805,7.10295,4.667605,4.666925,4.333575,1.8859925,2.02734,4.226535,0.3493630769230769,0.3493630769230769,0.3493630769230769,0.3493630769230769,4.16897,3.2496583333333335,0.9687199999999999,1.8836533333333334,1.1576444444444443,4.36382,2.4653033333333334,2.3304525,7.200423333333333,3.2066033333333333,0.17729655172413794,20.684008,4.734918333333333,1.78478,1.309956142857143,2.1459,1.9726400000000002,2.315125,4.53158,3.16662,3.47561,4.234645,2.174513333333333,7.4322775000000005,2.742395,2.00209,3.68369,5.9433,8.638983333333334,4.38102,0.30466829268292683,3.5671,3.911915,3.0264966666666666,2.018375,3.17433,1.6193183333333332,1.6193183333333332,4.108535,5.677362499999999,11.278843333333334,8.983325,0.6396555555555555,2.525,3.747815,3.163535,3.978035,3.456855,1.54354,1.54354,3.249915,4.05828,2.87932,3.732575,4.467845,5.28755,6.835685,2.18264,4.79562,4.247515,2.64136,2.9131133333333334,3.053623333333333,4.943465,4.345985,5.6093,4.296615,4.535215,3.881925,4.29374,4.22292,5.21065,2.688746666666667,3.1199999999999997,1.1237439999999999,4.419675,4.12829,3.769475,1.6851340000000001,1.9182566666666665,3.4975666666666663,2.8206966666666666,2.3998066666666666,4.45855,1.7453,2.15224,3.6777333333333337,3.5950333333333333,2.303996666666667,1.83472,4.0526333333333335,3.0713000000000004,4.1249,3.7538333333333336,2.1552933333333333,2.6074033333333335,1.9071633333333333,4.066245,3.1500233333333334,38.74700525,2.2135712727272727,2.2135712727272727,2.53763,2.73676,2.02785,1.8310966666666666,2.878816666666667,1.85391,0.8022461538461538,5.0438,6.629795,4.15255,4.07642,5.5554,1.8979333333333335,4.39195,1.7565300000000001,5.01415,4.85148,5.6718,4.1282,1.6877325,3.96405,4.65527,4.68584,4.897655,5.34005,4.01404,3.148945,3.4356333333333335,2.8339266666666667,2.0191475,1.86823,4.54284,2.41278,3.8191075000000003,3.8191075000000003,2.2456133333333335,1.5722666666666667,2.07474,2.5845833333333332,2.3100066666666668,5.16074,2.7308566666666665,1.1777566666666666,1.1777566666666666,2.5293966666666665,1.9351,2.5398033333333334,2.63184,2.468663333333333,2.42237,2.1900066666666667,2.12926475,2.895351892857143,1.538895892857143,0.7660871428571429,62.16481491865079,2.646402,3.4949999999999997,2.336724,0.9319179999999999,3.7029026666666667,1.559708,1.559708,3.1213800000000003,2.9466466666666666,0.77280875,3.0669466666666665,5.5362366666666665,3.3194133333333333,2.414973333333333,2.8873766666666665,2.136413333333333,2.633262,0.29842,3.1424533333333335,0.781272,2.5449533333333334,1.140094,1.140094,3.09817,1.9779579999999999,2.8848566666666664,1.7431606666666666,3.5625,1.7431606666666666,2.15435,2.62615,3.0516733333333335,1.320242,1.320242,3.0892033333333333,1.46193,3.3366666666666664,2.1493800000000003,4.28107,3.435505,12.306248333333333,6.990605,3.10718,2.609725,3.84753,5.1663,5.39465,2.7096283333333333,4.02796,3.643495,2.267,4.01675,3.2324933333333337,2.7699166666666666,4.96594,2.21635,1.0674685714285714,3.7388616666666663,2.8309466666666663,2.956715,0.7805385714285714,2.71336,3.46529,4.097,4.303475,6.5962,2.0827633333333333,1.88016,4.16214,4.369665,2.3475025,2.64533,1.9440799999999998,2.161874666666667,0.894118,5.10295,4.444185,3.66285,4.1091,3.0940433333333335,5.08695,5.1743,2.791066666666667,1.7412,0.5085446666666666,13.9371275,0.5092663636363637,0.5092663636363637,0.5092663636363637,3.0848766666666667,3.8429,0.5092663636363637,6.858793333333334,4.222713333333333,0.723177,0.723177,3.5071,3.1965,2.73806,4.19891,4.827035,4.149826,2.1477174999999997,4.845338666666667,3.489945,3.5234288690476188,4.65427,2.95206575,2.524075,2.369585,2.762525,1.62244,3.3456683333333332,3.0053066666666663,2.2964575,2.1076725,1.923845,1.8263333333333334,1.6480275,2.68115,1.095981111111111,2.4332925,0.60548,5.08325,1.71549,0.6764433333333333,2.0515675,7.861401666666667,2.66434,2.014342,3.2576549999999997,7.31607,2.50867,4.491835,3.0113,5.89314,3.5427,3.671935,4.03695,4.12149,3.02711,4.243458333333333,1.12762,4.19737,2.4557033333333336,2.4915266666666667,2.407845,2.2972,2.14024,1.24471375,5.6572,0.9155272727272727,5.05725,5.45135,5.23335,5.354,3.7754,2.50132,1.9353500000000001,2.9166566666666665,3.04017,2.51409,3.714366666666667,2.714525,4.63815,1.752542,40.389564444444446,4.774895,2.3908666666666667,2.57648,2.900463333333333,1.6775466666666665,6.165641666666668,4.13562,2.353146666666667,3.480566666666667,2.2995433333333333,1.6158,5.20495,0.7784214285714286,4.307142142857143,1.2937614285714287,3.4433333333333334,3.4263333333333335,2.9376433333333334,1.4147875,4.782821333333334,1.7256879999999999,1.7256879999999999,2.4481333333333333,2.90119375,3.4347,3.4991,1.4009366666666667,2.8953333333333333,2.705906666666667,6.435128499999999,2.921413333333333,3.6657583333333332,0.9923583333333333,1.4255133333333332,3.0307433333333336,0.90216,5.279368333333334,3.3548333333333336,2.8628433333333336,3.6837666666666666,2.90892,2.741873333333333,3.3456333333333332,1.7164533333333332,2.3760025,2.646916666666667,3.4675333333333334,2.44476,3.8343333333333334,2.3762666666666665,0.615112,9.739158974358975,2.81521,5.2833,5.03165,2.7746833333333334,3.0029233333333334,1.37218,2.22438,2.02137,1.37218,4.00002,0.47242875,0.47242875,1.1316825,1.1316825,0.87211,0.87211,2.41609,2.99222,2.42838,1.37185,1.9175,3.633305,3.095995,4.68112,5.31365,1.9496580000000001,4.27152,2.38124,4.7191591452991455,1.469825,1.469825,1.787625,1.728218,3.860265,2.05286,4.54193,1.632625,2.65805,0.5464969230769231,1.1958157142857144,2.0874275,2.32291,1.8917775,1.33118,4.40037,4.321,2.295316666666667,2.4832666666666667,1.3521,0.6920066666666668,2.3719066666666664,3.36705,2.762893333333333,4.606765,5.15125,5.2037,3.83504,6.69116,1.5570316666666668,5.89251,1.866735,4.63857,4.65676,5.752295999999999,3.4935333333333336,2.330435,1.7829975,1.93174,1.93174,2.430795,2.430795,4.321725,5.7994,0.9142699999999999,3.878555,3.38132,3.40861,2.7511733333333335,1.37915,2.814966666666667,4.228155,4.170935,1.698298,6.61305,5.1461,1.7835766666666668,1.3288375,3.93909,4.201020000000001,3.53915,3.536815,3.925455,0.6287507142857143,3.6012,3.1858233333333335,2.66175,2.80814,2.2885133333333334,3.5841666666666665,1.5309857142857144,1.5309857142857144,1.5309857142857144,2.991046666666667,3.01491,3.270573333333333,3.430075535714286,2.350665,1.187272857142857,3.2833900000000003,3.2217033333333336,1.4162985714285714,2.8413733333333333,2.70926,1.4173428571428572,2.7792333333333334,2.9429933333333334,2.9385100000000004,2.668813333333333,2.54101,1.9530425,3.2265366666666666,4.7770953333333335,4.04263,0.990804,1.491418,0.605251,3.7156333333333333,8.833905,3.033466666666667,3.43984,3.473933333333333,4.236036666666666,1.8974,7.645116666666666,6.727813333333333,2.690913333333333,2.3189251428571427,3.912615,4.788435,1.526648,1.257616,1.300474,2.15308,10.888066666666667,2.6065566666666666,3.046046666666667,2.983961,3.86873,2.1182966666666667,1.1844175,5.28785,1.0757416666666666,3.3315546153846154,4.94496,3.061105,3.3100066666666668,3.12106,4.99391,1.17632,2.1179425,1.9826293333333331,1.9826293333333331,3.816005,5.68965,8.404265,4.32333,3.448985,4.845495,1.7784625,2.3132458333333332,4.47653,3.83307,3.796955,1.518,2.879986666666667,3.495195,3.736535,2.4593825,3.920455,3.696625,3.85907,4.071395,3.849395,3.91916,5.45915,3.2162,2.4721699999999998,4.31861,3.056705,3.876335,1.96255,2.46404,2.670605,5.7112,2.50297,3.243129147727273,1.6905675,2.368225,3.355185,2.14713,2.0612275,0.8837833333333333,0.8837833333333333,1.79728,3.5563930303030307,3.991275,2.8991900000000004,4.59917,3.090133333333333,2.50892,0.97438375,2.69212,1.4426925,4.39367,4.12257,0.8955554166666667,1.8800775,3.9259,2.9755925,1.6365325,1.6035933333333334,5.082745714285714,1.0342083333333334,2.78925,3.25517,2.77038,2.419665,2.732797,2.03103,0.98921,2.882015,3.02533,3.36307,1.4163633333333332,1.4617333333333333,1.791235,4.495,2.16911,4.63407,4.61186,4.67085,6.1388,5.3026,4.11874,6.105575,4.149915714285714,0.8084954545454545,3.07629,4.322755,3.748525,0.47204999999999997,0.911228,3.048815,4.15358,4.805225,4.408595,3.3269675,2.661415,4.66375,1.7693059999999998,2.65375,4.514405,4.22119,3.284145,2.869825,3.701545,4.83027,2.86677,5.22546,0.9486190000000001,3.1227,2.71511,4.564095,4.34415,4.396515,2.1992599999999998,2.538505,2.7979,1.9255633333333335,5.1488,3.165285,1.4015014285714287,2.692215,3.9046424999999996,1.424658,6.089955,1.820666,2.55971,13.59956835537562,2.84041,1.50204,1.63889,2.10804,5.570978333333334,1.6621479999999997,5.861057166666667,0.6679215384615385,3.389666666666667,4.21738,7.484755,2.4519466666666667,2.86865,2.86865,4.73793,4.294775,3.420645,3.384895,4.84982,5.14015,2.424095,3.2779566666666664,4.86547,1.24096,2.674376666666667,4.57529,4.100105,3.49972,2.394136666666667,3.66243,3.538245,6.047026666666667,6.3065325,0.695894,4.04793,3.262305,3.8407999999999998,4.38157,3.843475,3.855765,1.441716,4.921355,2.33303,2.743115,4.16225,4.32848,4.36407,0.8732852857142857,2.811716666666667,9.433463333333332,1.5471766666666669,2.13396038961039,2.373205,3.913865,3.567065,3.25035,0.6623527272727272,2.3766425,1.703515,2.2277625,4.34097,5.29605,2.75863,9.150685,2.4094233333333333,2.7225300000000003,1.0655,4.47771,5.08075,2.095365,5.370253333333334,2.766845,3.175785,5.1522,4.444615,4.75132,2.07481,1.603815,1.603815,2.765025,3.19983,4.6832525,1.4200125,6.082174999999999,1.38809,3.847475,1.3109633333333333,8.750571833333334,4.984175,2.80719,4.324945,3.569945,3.79851,1.1628816666666666,2.015295,3.601433333333333,3.0176433333333335,3.350633333333333,3.6450333333333336,3.671315,2.82298,3.10873,3.35834,1.5058725,2.531363333333333,1.9145,2.9103600000000003,2.012446666666667,5.215629166666667,3.2465533333333334,1.7571866666666667,2.8029533333333334,3.290065,3.18071,6.5033,6.1641,2.936545,3.554405,2.969915,3.066,2.84985,1.2007233333333334,0.9988060000000001,6.554455000000001,3.03457,6.13025,4.477755,6.5978,2.889455,2.76345,6.65985,2.417945,0.41530055555555556,5.6456,2.821205,3.778525,3.4004333333333334,1.4315,4.053525,1.061302,4.560065,0.90020625,1.4189299999999998,2.7991766666666664,2.37945,2.7220814285714288,3.642295,4.96206,6.177983333333334,6.177983333333334,5.454000000000001,5.454000000000001,4.64624,2.9873766666666666,4.418155,0.98358875,5.9008,3.66301,3.691966666666667,4.022705,3.76358,4.59534,1.91933,4.91535,3.257034,2.86182,4.20738,2.63057,4.73873,5.18085,3.61806,3.325235,5.0285,3.723,5.89285,2.852685,2.5410733333333333,6.0362,4.202255,2.882146666666667,6.200703333333333,1.63975,2.08409,4.737005,4.26754,5.0591,3.891425,1.9879285,1.9879285,13.180444253968254,12.8349,5.0717,3.108515,2.9432766666666668,4.571095,4.659235,2.6559466666666665,3.2620833333333334,3.132205,4.124266666666666,3.6871333333333336,4.92901,1.92727,8.487639999999999,2.468575,2.045485,5.8869,2.35809,5.077,4.282645,4.600685,0.7578333333333334,3.318205,3.600685,0.8798920000000001,2.906935,3.6020208333333334,1.45498,1.95235,2.822853333333333,2.65408,2.329613333333333,3.1779266666666666,2.3074333333333334,0.4715728571428572,2.5192366666666666,2.73103,2.7987800000000003,3.2197033333333334,1.500896,3.01115,7.12153,4.407155,2.2811533333333336,2.036426666666667,2.5739300000000003,3.648025,2.51262,3.5921415000000003,18.922195000000002,5.5224,3.460983,4.417085,3.81473,5.559555,1.73824,5.90865,1.57254,4.5668,4.54568,5.4026,4.9063,0.9529600526315789,6.6607,2.37618,4.937395,2.76257,4.285805,3.721085,2.713395,2.14274,1.554014,1.8715925,4.429195,4.6343,2.11556,1.812205,3.159103333333333,3.9926683333333335,3.1125333333333334,6.3248,1.9492175,3.41503,4.56513,4.1137,4.175915,2.91347,4.108585,4.92833,4.016705,2.74893,2.74893,5.6266227777777775,2.0167533333333334,2.664756666666667,3.87112,1.7675699999999999,7.391685,3.748585,4.490366666666667,4.390233333333334,4.249185,1.8163340000000001,4.240045,5.5995,3.689435,1.999415,3.44503,3.37452,1.112365,1.3621325,1.2769766666666666,0.6747716666666667,1.6358666666666668,0.9316433333333333,4.633765,0.9438855555555556,2.4949966666666668,1.6810466666666668,1.7597775,1.0447333333333333,1.9196925,2.2152775,1.60882,3.02904,2.63922,4.6526000000000005,1.5304200000000001,2.5765,3.184003333333333,2.9975,2.2898433333333332,4.498330833333334,4.547145,4.8867925,19.479849,2.5075,2.17082,0.6475907692307692,0.6237280000000001,4.20836,1.974456,4.035565,5.4184,6.668074833333334,3.61552,3.573195,4.05612,3.3457000000000003,3.3093566666666665,3.08656,3.9471000000000003,3.3262366666666665,6.5942,3.55932,0.946186,1.10893625,5.4552,3.0033499999999997,2.605766666666667,2.196963333333333,2.2505633333333335,5.5456,4.84719,2.4291625,1.1359033333333333,3.17965,4.90796,8.513946666666667,5.014768958333333,4.23478,3.950365,5.3966,4.73111,4.354,4.919015,3.87143,5.3447,1.728,5.79765,1.6051428571428572,5.21,0.7433066666666667,5.08495,5.52465,6.23445,6.2055,4.78092,5.68105,5.8174,6.405682499999999,1.9742499999999998,1.5485428571428572,5.6556,3.43354,6.462246666666667,5.06445,5.449325,5.002,6.252,1.3613157142857144,4.369855,5.3176,4.2073,4.76095,5.632,2.7565,3.988385,3.16976,4.56886,0.995575,1.5289533333333332,1.401966,4.881695,4.13723,3.27606,1.88077,2.9922966666666664,1.67663,2.2064033333333333,0.3962733333333333,3.5818999999999996,1.6507619999999998,2.3207,2.9154699999999996,2.3814366666666666,3.1665266666666665,2.621525,2.480455,10.206986,3.976566666666667,1.8131634615384615,3.552455,0.9243727272727273,4.46552625,1.09988,1.756515,1.8709575,1.0511325,5.687266,1.1627830555555554,1.1627830555555554,1.1627830555555554,2.8476766666666666,1.886702,4.86856,3.140675,1.407795,1.5480625,2.319335,1.361375,2.13886,5.4264425,0.84727,4.259875,4.198105,3.09506,0.9871942857142857,2.158846,1.986395,1.986395,1.4996133333333335,3.5819925,4.57912,5.0623,5.5566,4.280455,5.40435,2.90475,2.0303525,2.868725,5.1149,3.12835,4.11238,1.014645,3.9285358333333336,5.4037,1.91686,4.2663,3.1508933333333338,4.671355,4.762765,2.85099,6.99755,6.36515,3.9093,4.510295,4.228435,3.232135,8.05842,4.04811,5.798078333333333,3.34027,2.708766666666667,5.34895,2.58115,5.8605,4.4807,2.6766400000000004,3.313895,3.84958,1.3361266666666667,10.5498925,4.13393,3.06184,15.323923095238097,4.43087,1.7577133333333332,2.8550133333333334,2.01474,2.459465,3.263835,2.6756183333333334,2.9461,2.70525,3.055635,4.19278,6.405305,1.3019233333333333,2.0174825,4.26445,4.40945,4.868045,2.31296,0.5669706666666666,4.620485,4.259695,2.0941825,1.280955,4.586675,4.54952,0.9168777777777777,3.769165,12.549650833333333,1.2997035714285716,0.40111357142857146,3.5449,4.672725,1.0488444444444445,3.690535,4.090165,6.405578333333334,1.2955783333333333,3.303195,4.018205,3.36986,4.422495,4.494285,4.337185,8.198165,3.13565,4.226855,5.83315,16.26009375,3.5621825,2.929125,1.1695875,2.27482,1.311835,2.0617475,1.2455725,2.04155,1.6894225,2.0116625,2.4001675,2.33169,2.141625,5.51625,4.410925,5.93955,3.134325,5.761713333333334,2.9254333333333338,5.069,3.430266666666667,1.23739375,3.742505,2.013815,2.7478160000000003,5.0144,4.847855,4.878295,4.28733,3.3504,3.7056,2.48232,3.808935,3.776935,2.22383,1.916245,3.5042666666666666,4.587965,2.907645,2.3680600000000003,12.359626666666667,0.7167866666666666,2.674015,4.91145,2.573475,1.07199,2.72169,7.347555,7.100053333333333,4.438365,4.126445,4.11819,2.09179,2.33217,2.847979666666667,2.050116666666667,3.8623450000000004,5.15375,4.138085,0.47344800000000004,6.24265,3.3179700000000003,3.4092000000000002,3.4713666666666665,6.23305,9.03609025,4.314709,1.01429125,2.162345,2.31859,3.68143,2.57053,4.11357,4.6017,3.630333333333333,2.73555,4.021475,4.258305,3.75533,4.3674333333333335,1.91775,3.785105,5.0659,5.71175,3.21997,1.834745,2.24756,15.16721348193473,0.5589681818181819,1.4874975,1.4874975,2.227463333333333,4.6904753333333336,3.90919,4.60496,3.181785,3.03253,4.739465,3.0731566666666663,4.15433,3.0731566666666663,3.59296,1.8563633333333334,1.5645366666666665,6.0838,2.697675,4.77674,3.301145,2.658825,6.366581666666667,2.1120466666666666,4.647315,5.3191,3.665135,3.388655,4.94262,2.0575,4.82322,3.390715,7.50469,5.629720833333334,2.831125,3.9278,4.515185,2.08739,2.795996666666667,3.6572333333333336,0.41030214285714284,3.04312,9.95137,3.916885,3.589655,4.924235,3.3511491666666666,3.0514,1.31537,4.0516,5.4267,3.25761,2.42463,4.73187,3.79903,4.33856,4.399135,2.78335,2.78335,4.15244,2.866555,2.6157404545454543,2.16403,4.78789,4.0953,1.0192057142857143,3.578385,5.08335,2.9868633333333334,6.8888300000000005,7.8919,1.503582,4.266915,4.889165,7.034926,0.706614,7.64355,3.5480508333333334,0.6171918181818182,5.29475,5.24995,5.0305,4.255005,4.67404,4.27106,5.0229,3.851675,4.010655,4.3965,5.3664,4.73963,4.834695,3.9329,2.46827,4.09384,2.844765,0.931771,4.46593,2.396715,1.752495,4.400175,4.59555,5.7577,1.05579,4.901976666666666,2.9009,2.6951366666666665,1.8837825,1.2354433333333332,11.738199166666668,2.3573166666666667,2.8972166666666666,1.8974966666666668,3.7618395238095235,5.554836666666667,6.163408333333333,2.64035,1.9230966666666667,2.08284,2.08284,2.08284,1.37788,3.72467,3.891525,3.558285,4.61207,8.176485,4.01726,1.158838,2.249865,3.027735,2.73011,1.8306080000000002,4.08973,2.9486,1.3364500000000001,3.0620366666666663,5.281754285714285,5.7322925,3.98757,4.07571,3.1558733333333335,5.1766,4.50393,5.316043333333333,1.666,1.666,4.01679,3.79654,2.679281,2.679281,3.765775,1.176057142857143,4.8712,3.258865,4.18805,3.928565,4.07072,3.299656666666667,1.077402857142857,4.27676,5.2839,4.0657,4.86377,4.953645,4.893605,4.400705,1.9592825,1.444275,3.453355,3.751405,3.28284,4.449835,2.087715,2.9202950000000003,5.67705,2.91614,4.853125,7.380675,2.266789583333334,2.9657899999999997,4.388294761904762,5.102790833333334,1.65461,1.9927435714285715,0.936335,1.9927435714285715,1.9307933333333331,1.9307933333333331,1.57824,5.1969,3.17265,4.215395,2.46025,3.71139,1.48072,5.32925,3.11459,1.65183,2.9063866666666667,3.42566,3.85595,6.177744,4.638545,1.311642,0.8184083333333333,3.654565,7.667306666666667,2.4565766666666664,3.633565,3.64435,3.64435,2.33034,3.37581,3.14437,1.4033137662337662,3.1588433333333334,3.18836,3.043805,4.36599,3.910785,1.6468525,3.22734,4.49257,4.88816,5.02635,4.360465,1.8411175,2.047425,1.2760333333333334,2.3373325,3.316225,1.9246825,4.39309,3.32629,3.40509,4.210215,5.0386,2.27086,0.9610920000000001,1.7527533333333334,1.49709,1.1757,5.0251,4.00393,1.1237439999999999,0.2144021739130435,0.2144021739130435,0.2144021739130435,3.72539,5.5772916666666665,4.40148,5.2826,4.85659,5.41365,5.18185,4.44952,2.9214,3.63906,1.6869825,4.857645,4.071865,3.871445,4.17536,4.156525,0.7108663636363637,0.7108663636363637,0.7108663636363637,0.7108663636363637,1.0187599999999999,1.0187599999999999,4.0822,3.909085,3.79931,2.774015,2.62456,6.0868,4.987945,5.66365,4.385245,3.04571,2.5576233333333334,9.90007,1.583518,1.583518,4.147955,5.3732,3.3336333333333332,0.47242875,0.47242875,0.47242875,0.47242875,0.47242875,0.47242875,4.921786666666666,5.19505,3.63383,4.39854,2.7670316666666666,2.7670316666666666,2.77285,3.2286633333333334,2.51522,2.88342,3.39659,7.085267333333333,1.437914,4.56612,3.60698,3.858585,9.292193333333334,2.296046666666667,2.725875,0.9797028571428571,2.069225,5.30655,2.88295,0.9113925,2.8414900000000003,4.12326,5.55035,2.703725,4.7201975,0.8142033333333333,1.9585133333333333,4.856545,4.701525,2.904634,2.6586933333333334,2.2038100000000003,1.387075,7.21115,3.407166666666667,1.9894733333333334,3.240305,2.711725,3.536705,3.57709,2.6652400000000003,3.2402033333333335,5.962,1.4453683333333334,4.20799,5.1784,3.334005,3.98625,1.9455333333333333,2.985895,3.78087,3.630965,2.89309,4.86154,4.63115,2.7810366666666666,1.95441,2.8880033333333333,2.7990066666666666,2.8579333333333334,0.7848263636363636,2.1769575,8.1771075,0.454575,2.9153533333333335,1.5137366666666667,2.5498600000000002,3.4150666666666667,2.79834,1.287288888888889,1.75046,2.694596666666667,2.1591375,3.656705,2.05228,2.80288,1.4827833333333331,3.1234580000000003,1.9363975,1.1237985714285714,2.8836433333333336,2.152135,2.3020533333333333,2.6698566666666665,3.1758966666666666,3.24157,3.4244333333333334,3.212376666666667,2.8565733333333334,3.1805,2.6915833333333334,2.7657,1.6567566666666667,2.3684266666666667,2.5423733333333334,1.6687833333333335,3.1841733333333333,3.8532385714285713,2.904723333333333,2.5836433333333333,2.95588,3.585733333333333,4.664166666666667,3.0785466666666665,1.8333442857142854,1.8333442857142854,2.43381,1.1359725,2.511625,3.2916583333333334,4.518500833333333,2.82145,2.10254,2.1226175,2.063455,3.71038,2.986975,4.00106,3.7284,1.76791,2.37664,4.86729,1.209908,1.209908,2.32364,0.65628,2.65178,1.74774,1.74774,2.5451466666666667,2.4665966666666668,3.10922,2.6302849999999998,1.9466225,5.707506666666667,3.8760250000000003,3.8760250000000003,3.708905,3.176935,2.30818,2.96334,2.43456,2.87895,5.1413075,0.46857666666666664,0.681164,4.177155,2.33289,2.958525,6.456423333333333,3.612855,1.629588,5.052623333333333,4.6622,4.20534,4.3065,5.403,4.82865,13.95612,3.622685,1.5610466666666667,2.94414,3.829995,4.96097,2.9045,4.036945,4.333735,3.649295,3.73691,2.836323333333333,2.88819,2.6824166666666667,2.466693333333333,2.466693333333333,4.09742,2.93782,3.035695,3.403075,2.376205,2.589885,2.21089,1.9098175,1.9922875,2.0957275,1.6873575,3.498497,3.371715,2.6677,6.9202975,3.27283,2.28192,1.92356,3.360755,3.921315,3.58834,3.1094543750000003,3.45386,3.2072,4.308835,3.79278,3.88468,3.984805,3.3687500000000004,3.61459,0.6054533333333333,0.6054533333333333,0.6054533333333333,3.48784,2.258305,5.69855,2.34869,3.805555,7.0950983333333335,2.8365666666666667,0.3552346153846154,5.5811,0.770713,4.25692,1.84991,3.56809,1.986775,4.285825,5.441473333333333,4.45902,4.12675,2.7457433333333334,2.7945499999999996,1.5210016666666668,2.56473,0.3851226315789474,0.5385376470588235,2.63304,1.40144,1.9271125,3.904225,2.65225,4.80043,2.81611,3.0436066666666663,3.46333,5.42374,1.7765475,0.9256514285714286,2.276015,3.678294,1.2482005844155843,4.695095,3.97802,3.790835,2.7074533333333335,4.31492,2.58305,2.4986099999999998,2.43531,2.307415,2.512163333333333,2.1906125,3.1074066666666664,2.4330866666666666,5.4867,2.554725,2.05688,2.174706666666667,4.901597333333333,3.342332,3.342332,2.502193333333333,3.945375,2.34381,3.456635,2.913065,0.5613873333333333,4.306785,1.881615,11.651747777777778,6.75434,2.91822,3.3119,3.27204,5.00134,2.857095,3.41288,0.26511066666666666,1.908065,3.5365,0.8269475000000001,3.81543,1.2742542857142856,4.54654,3.39167,2.97403,3.644425,3.490275,2.25032,4.48282,3.765865,3.6315,6.9281,5.02725,2.8654466666666667,3.0103266666666664,1.6167500000000001,1.89875,4.22322,3.91373,3.84785,2.36641,3.509495,1.401576,2.8912,2.5421,3.57298,10.809805,3.64379,5.272271666666667,3.83749,4.02952,1.0399311111111111,4.856179,4.75741,2.53197,2.68178,2.79865,3.367566666666667,2.39521,1.66064,1.87278,3.901545,1.668518,2.8018199999999998,5.010252,2.82973,1.2129207142857144,1.2129207142857144,3.596115,2.9934405,2.9934405,3.1626066666666666,2.7980633333333333,3.322485641025641,3.8376,3.3602666666666665,2.668423333333333,2.3043066666666667,2.5868533333333334,3.1119866666666667,2.265915,2.4001766666666664,1.637178,5.732938000000001,9.154212333333334,0.4180138461538461,0.4180138461538461,0.4180138461538461,0.5212424825174825,0.5212424825174825,0.4180138461538461,2.9809933333333336,2.9750333333333336,4.152223333333334,1.3876799999999998,1.7793925,3.29596,2.5006833333333334,3.07728,2.4148566666666667,2.9301133333333333,3.4219333333333335,6.788315000000001,3.0565366666666667,2.52853,2.9173633333333338,4.676845,2.491356666666667,3.377166666666667,5.90512,2.423,3.3846666666666665,1.3340249999999998,1.3340249999999998,2.76905,0.5189584210526316,2.1989,2.7096966666666664,2.7924466666666667,3.3167666666666666,2.3128933333333332,1.5005466666666667,2.63676,2.7979233333333333,2.4020266666666665,4.324955,2.466829333333333,3.500525,2.45897,3.83288,0.506752,7.1946666666666665,2.9500279999999997,2.9500279999999997,7.744172777777777,1.78327,1.8281366666666665,3.0799033333333337,4.39822,2.3921533333333334,1.8933366666666667,2.5476566666666667,1.400805,3.5295666666666663,1.7859866666666668,3.0380804999999995,1.4483225,0.2723022727272727,0.2723022727272727,4.95866,3.89411,4.259125,3.0495966666666665,2.629815,3.34739,1.3291866666666667,5.5104,3.77344,3.009275,1.8355575,1.128385,2.279265,3.0799033333333337,2.578395,2.06125,5.6189599999999995,3.55209,4.32375,3.80317,2.606235,0.683075,7.1450875,2.059325,1.6165175,3.5829,4.021845,2.23913,1.7450666666666665,4.58214,4.239065,3.229786666666667,3.1486033333333334,4.165515,4.340965,3.6153333333333335,2.5100240000000005,2.5100240000000005,4.100005,4.78509,5.6053,6.3783900000000004,2.678193333333333,3.93617,1.4206885714285715,2.50325,5.4040626666666665,3.738515,1.8647960000000001,5.15015,3.425045,3.582285,2.21514,4.168895,4.71497,4.606515,4.55719,2.436713333333333,2.5609800000000003,3.6179,2.1231766666666667,2.558575,2.5805966666666666,2.54394,0.8122909999999999,2.226975,2.8724266666666662,2.076699333333333,4.585695,4.522635,4.7061,3.79141,3.68158,4.7734125,12.553404999999998,4.791825,3.852885,4.3495,4.01195,4.53461,2.4167733333333334,3.279642,3.6172,1.21932125,2.864395,2.958675,4.594015,5.51235,4.316905,3.522933333333333,3.068986666666667,2.391426666666667,4.234666666666667,3.9669925,3.637,3.9669925,2.2365575,2.275263333333333,2.446841666666667,2.1668925,2.6096866666666667,1.8432266666666666,0.8029566666666667,1.2344266666666666,1.94283,2.0196433333333332,1.6149866666666668,1.27913,1.6699966666666668,2.686476666666667,1.541038,3.0165466666666667,1.3220733333333332,1.6406666666666665,2.677295,2.5161266666666666,2.570683333333333,2.24701,2.3445,3.326935,2.287525,2.8787833333333332,3.068706666666667,2.5076933333333336,3.0269600000000003,3.0222375,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,0.13647387096774194,5.133,3.018005,0.9967385714285715,3.127663333333333,2.6553633333333333,2.794983333333333,3.5192,3.2617333333333334,4.674115,3.428922,1.5984099999999999,3.0799033333333337,1.8606166666666668,1.021295,0.9410740000000001,1.6418016666666666,0.8823,0.7877241666666667,1.285792,3.12997,1.55928,1.64043,1.8880616666666667,2.3536255555555554,1.2390616666666667,1.2611366666666666,1.636665,0.94413,1.2784633333333333,0.7547566666666666,0.8843780000000001,3.347125,3.57291,4.162265,4.590025,3.99859,3.0760400000000003,4.90914,3.500033333333333,2.0499125,3.31492,2.0585725,3.49592,2.172613333333333,0.8484245454545455,4.24853,4.94089,2.1214166666666667,1.313695,2.95084,3.422945,3.5819925,2.96716,2.72238,0.91986,2.3278025,5.078927500000001,3.801205,2.4794,1.5251849999999998,3.775855,1.84387,0.5821772727272727,4.30183,4.480885,4.15669,2.520465,1.434784,3.263975,4.396145,2.641713333333333,2.60528,2.5167533333333334,2.6314933333333332,2.7523966666666664,2.8514133333333334,3.0434066666666664,1.2761625,2.568625,2.511276666666667,5.1038,4.25335,3.579255,4.52725,16.27794756691919,4.568665,4.491527333333333,2.73205,4.299375,5.07435,1.547584,2.398035,2.5701566666666666,6.32019,4.195905,4.00059,6.48635,2.5701566666666666,3.903015,2.06418,2.2642966666666666,2.928976666666667,2.7325233333333334,1.3233483333333333,4.320945,3.684785,2.453705,4.303895,2.507756666666667,2.930806666666667,3.660675,3.28628,4.849605,3.909285,2.74837,3.556045,2.60088,2.499136666666667,1.25905,1.25905,3.0933566666666668,2.6091866666666665,0.3904142857142857,4.624423,0.9548220000000001,2.67403,3.794655,0.5693374999999999,4.760715,8.489716666666666,1.86453,3.60431,3.627405,2.670533333333333,3.272545,2.41429,3.1703,3.343265,4.223575,3.088675,3.8804,0.9989583333333334,11.654345,2.72228,2.94045,5.90455,2.609775,3.90081,7.5644350000000005,4.25535,4.290895,3.637365,4.13884,5.6009225,1.5419275,2.84055,4.650555,3.782966666666667,1.8814240000000002,3.82793,3.661145,3.604355,4.06255,4.27941,3.81217,2.5289383333333335,4.32585,3.6775,5.3144,3.64434,2.1784433333333335,2.3348833333333334,2.13762,3.0794433333333333,1.2984799999999999,3.6776,0.8580163636363636,3.164073333333333,3.128,2.6999433333333336,1.60747,4.306075,4.02017,4.211905,1.960655,4.650175,3.82228,0.7366237692307693,0.33718576923076926,4.3438,5.3279,0.9345,0.33718576923076926,4.48111,0.7366237692307693,0.7366237692307693,0.33718576923076926,5.5212916666666665,2.4817966666666664,2.369613333333333,5.5761,3.1656,3.190995,0.7891966666666667,3.211495,3.828915,4.56834,5.8066,2.1040925,0.73,4.4245075,2.244936666666667,1.413576,2.0157475,1.0614657142857142,2.3129433333333336,2.23016,3.64932,5.2476,2.7142433333333336,3.0186466666666667,2.8295999999999997,2.193233333333333,2.92129,4.37393375,1.695095,1.9884725,3.96296,5.1407,2.1902331944444446,5.27225,2.828075,4.180485,4.085775,3.0672,1.1831475,3.24005,6.981,3.85766,3.492085,5.3417,6.6544,2.29066,3.21934,4.577755,3.200025,3.389895,8.3732,3.732835,4.7418475,2.33656,1.1007225,2.5660633333333336,1.81591,2.109415,1.787735,4.184935,0.6453121428571428,3.137175,3.823565,1.8985,2.900423333333333,5.2629,3.379775,3.126815,4.32667,5.2841,9.411339,2.6485566666666664,2.55396,1.695008,1.5189966666666666,1.29009,1.37159,2.9707033333333333,2.55467,2.8549366666666667,4.509249487179487,1.62183,2.55471,5.0708,5.5062,3.688085,3.38046,2.949875,2.515235,2.094,2.03105,1.9207599999999998,1.9406,2.987345,3.7294,4.918455,5.19585,3.958015,5.451865416666666,3.347975,2.562005,6.5302395833333335,3.130445,8.930005000000001,4.869941666666667,4.869941666666667,5.612975,1.65435,1.3626125,1.3090766666666667,0.736973,4.90008,3.8279,3.307245,3.307245,2.14328,4.44863,4.430565,4.42624,4.043755,2.83469,2.60803,3.637655,3.0616566666666665,5.276656666666667,3.59616,0.7676781818181818,5.3269,5.0889,4.090395,4.970495,3.023505,6.3118,4.313225,0.8322461538461539,5.4707,7.324960000000001,3.223065,5.7617,5.7453,3.44294,2.68475,3.66149,6.01425,2.09347,5.8239,1.85174,4.49552,2.620433333333333,2.36985,0.9486190000000001,3.16482,5.95295,3.45537,3.927415,2.08997,4.83077,7.968181666666667,3.499815,4.32929,2.404135,2.627015,0.849037,4.885865,1.6328316666666665,3.4669274999999997,3.4669274999999997,3.808025,2.3713366666666666,3.032443333333333,3.795285,1.7916175,3.12852,3.3306466666666665,3.23574,2.86823,4.02987,3.475165,1.812845,3.3063800000000003,2.1444075,3.0862866666666666,2.0009533333333334,3.0759399999999997,3.2209966666666667,1.4531285714285715,1.2838466666666666,0.49444166666666667,1.3326483333333334,0.49444166666666667,0.49444166666666667,1.2838466666666666,0.49444166666666667,3.4434,2.7314619999999996,2.7314619999999996,2.8480966666666667,4.190625,3.93217,4.34633,5.31325,5.23575,3.62343,4.05203,4.124535,2.01323,2.3952793333333333,2.3798133333333333,0.8143463636363637,5.53045,3.067073333333333,3.1223266666666665,5.74545,3.8896325000000003,5.3474,3.38329,2.6175833333333336,3.04971,3.395615,2.5370066666666666,2.9379033333333333,2.0350766666666664,5.2541,0.8350455555555556,3.787435,1.122872857142857,3.59641,3.16923,2.9425933333333334,4.03624,4.041295,3.903985,4.551315,3.965565,3.92873,4.37011,4.259845,2.5539,2.72095,3.3199,4.237435,2.67855,3.22539,2.664645,3.095,3.3620666666666668,3.40112,4.6596,4.892805,3.935575,68.59098377172828,2.7408975,3.85418,16.193249333333334,4.087555,3.0930933333333335,2.0595766666666666,1.8555133333333333,2.6521466666666664,4.3881,3.0027666666666666,4.301220833333333,5.80495,3.33476,7.656393333333333,5.1125,2.23256,3.36323,3.673705,3.421805,1.8377120000000002,1.16212875,4.73961,2.84296,6.0291266666666665,3.59085,2.2466566666666665,3.51688,3.932915,4.546525,3.12113,5.790015,4.457995,3.50313,2.93134,2.5516,2.79913,6.3799,2.683415,3.565805,4.318183333333334,1.2110583333333333,3.03459,5.0799725,4.21632,3.16185,3.606465,2.97253,4.081915,3.234385,3.2351,2.510895,4.49722,3.149555,2.869155,4.445005,9.69224,3.2092500000000004,4.138775,5.57788,3.09657,2.4449,4.041375625,2.398426666666667,2.946236666666667,2.9286700000000003,3.467245,3.369845,3.014265,3.29407,3.5136,4.15631,3.832775,4.232405,3.651475,3.399585,3.774245,2.6979533333333334,2.6979533333333334,6.861675,1.82385,3.25658,3.3194,2.315605,4.733215,4.100685,3.07934,3.31423,5.4325,5.9159775,0.6601036363636363,3.99033,2.26903,2.8845733333333334,2.57803,5.0954,2.7161566666666666,2.0156375,1.15664625,2.0635083333333335,4.197055,5.0786,4.08245,5.77845,5.6809,5.6014,2.48277,1.88589,3.717335,2.73614,2.87257,2.0078,1.3167516666666665,2.7789066666666664,3.1912333333333334,1.598406,2.5302633333333335,2.2889102857142856,3.3832010714285716,2.832685,4.94814,3.414285,1.3780225,2.756875,3.40208,5.97545,4.882765,5.6248,4.684685,2.0103266666666664,1.5344566666666666,0.6111800000000001,1.55664,3.56105,2.531895,3.5534316666666665,1.3797466666666667,2.431745,2.290005,3.408085,3.48021,3.829075,4.026145,1.657585,1.437595,1.938845,2.0770125,1.4265225,2.53955,6.949775666666667,4.880275,3.65689,3.03607,6.943925,4.53925,3.214845,3.080625,3.29162,2.77364,3.862145,2.3367466666666665,7.30406,0.8919266666666666,3.035345,6.5654,4.06961,4.758385,6.2734,1.52926,3.22546,3.0329433333333333,2.863706666666667,1.44183,4.024935,8.53036,3.29284,5.19685,3.983365,3.289525,4.66519,0.8755799999999999,2.78899,5.3451,6.3239600000000005,5.28635,5.5039,2.939415,3.7978,2.465593333333333,5.1698,4.84469,3.6488169047619046,3.6488169047619046,0.5646285714285714,3.7131666666666665,0.8324,0.6555783333333333,1.818,3.6239000000000003,4.204394000000001,5.715394,3.165433333333333,3.3880939999999997,3.147596666666667,2.6361933333333334,3.07414,4.5821,3.1362216666666667,1.931535,1.931535,3.790745,3.044093333333333,2.741206666666667,3.557025,3.4949,0.5322344444444445,3.3321400000000003,2.61916,2.5887333333333333,2.8303133333333332,2.560325,2.5901166666666664,3.223193333333333,2.923,0.813345,2.7494366666666665,6.186365904761905,2.10826,7.338509166666666,1.573924,1.573924,3.433811,3.3516,3.36,2.931976666666667,1.7700859999999998,1.2984814285714286,3.24352,3.4287666666666667,1.51687,1.5269857142857144,2.850096666666667,2.77522,2.6239066666666666,1.892655,1.854175,2.59108,2.285305,2.72459,3.45015,1.84356,3.665815,3.196025,6.863637,3.252015,1.64572,2.95204,2.59283,2.15507,4.026665,2.54174,2.651625,7.20184,0.8241307692307692,0.6933400000000001,4.518765,1.409426,1.409426,3.891185,2.547375,4.43893,3.261835,1.2948566666666668,2.2856106666666665,2.6163233333333333,2.3175006666666667,5.0927,4.673455,2.5993233333333334,2.2096566666666666,1.4346678571428573,1.4346678571428573,2.3991866666666666,3.926855,4.016633333333333,5.64345,3.114406666666667,4.82837,4.37009,6.7117,4.50068,2.56265,2.8463733333333336,2.6310266666666666,2.6834733333333336,0.7104077777777777,0.7104077777777777,0.7104077777777777,3.208275,4.26486,3.62929,1.05638,1.05638,4.859845,5.89495,6.47139,21.940490944444445,11.1718,7.7802,3.091675,5.71,2.3806925,4.28751,2.53273,3.2774300000000003,4.180366666666667,5.202134,2.06542,2.189545,6.53652,2.04272,2.04272,6.3385,3.19093,4.40121,1.95845,4.770415166666667,4.47864,3.276865,4.866775,3.561845,1.0067666666666668,5.7715,8.72705,1.0067666666666668,1.95845,2.1905933333333336,0.736172,0.736172,1.784018,2.232416666666667,1.784018,4.35933,5.60435,6.13655,8.80815,1.95845,11.665465500000002,5.89485,5.63975,2.3806925,3.250205,4.317815,8.29874,3.1223,3.855815,5.8835,3.29348,4.65589,6.0668,4.46958,4.84933,4.725305,2.76251,4.92641,3.503595,4.59136,4.362125,0.7988675,1.4747540000000001,2.979115,5.59245,4.47893,2.82973,2.1970625,3.97522,4.766725,5.7592,5.1956,5.172,4.413105,3.08849,4.1896,3.70763,2.0778975,4.9549325,1.98706,2.65878,3.499845,1.5484766666666667,3.984675,3.967675,3.63379,3.703878333333333,3.016955,6.67939,0.9687255555555555,3.51475,2.1777,1.2471614285714288,5.146077999999999,1.4890433333333333,1.5491733333333333,2.6202566666666667,2.7619015,2.8983866666666667,2.808536666666667,1.7522125,0.7308981818181818,2.1466533333333335,2.470465,3.651535,0.6924823076923077,5.506878333333334,1.7216433333333334,1.22964,3.2172533333333333,1.22964,3.88551,0.9221909090909091,4.462585,3.2088433333333337,1.934365,4.7820339999999995,4.519094,4.519094,4.69602,2.506575,3.014993333333333,2.9050499999999997,1.500896,3.614,3.61565,2.06432,0.6971133333333334,7.012228974358974,2.74345,4.039745,4.177395,7.65007,2.386625,4.219825,3.83114,3.12958,3.742095,5.4696,6.336080000000001,4.28747,4.900385,5.30985,2.9826866666666665,4.74753,4.195465,4.336265,1.0889744444444445,0.471115,3.12021,3.3825000000000003,2.68918,5.4622,3.74066,4.158395,4.535005,5.15055,4.48252,4.171305,1.19336,2.181255,8.635159999999999,2.3358133333333333,1.8918966666666668,4.04544,11.662567916666667,1.5284825,4.771015,6.41035,5.17865,3.5649333333333337,2.2777933333333333,3.2740833333333335,4.16308,1.102385,3.042593333333333,3.37287,0.34772684210526317,2.0625966666666664,4.46461,4.29907,2.277725,4.148715,2.92861,5.1162725,1.3239033333333332,0.5620336363636363,3.792369166666667,1.1911614285714285,1.044525,1.044525,1.044525,1.044525,1.6570150000000001,2.8058899999999998,1.87174,3.307513333333333,5.39275,3.503833333333333,5.1395,3.3337,4.320155,3.58242,3.988805,1.4178166666666667,6.762095,2.48787,4.716575,5.302193333333333,5.16575,5.064655833333333,2.3523366666666665,2.324406666666667,2.639456666666667,3.14138,1.1909666666666667,4.464715,2.63579,4.89934,2.8771299999999997,2.2906833333333334,3.80776,3.312095,2.93922,2.4954033333333334,2.7067366666666666,1.51683,0.39422666666666667,4.018035,3.393575,4.11333,3.47988,3.930315,5.89885,4.266745,0.5390492307692308,3.3823619999999996,7.3613653333333335,2.0248433333333336,1.95416,5.602095,6.12735,2.656283333333333,4.776305,4.958365,4.176575,3.86943,4.2896,5.3522,5.67795,5.31695,3.64317,5.248923,1.482722,1.6414983333333335,4.179785,3.96561,3.852005,3.21826,5.4908,5.0034,3.867235,3.401905,15.301214659658381,1.2583345385232745,1.19054875,1.9577332954545454,0.504303125,0.45470400000000005,1.31035,0.3053382352941177,1.342094,3.32262,1.578036,0.9593916666666668,1.11348875,0.5098575,1.11348875,1.11348875,0.5098575,0.8579461538461538,0.5999878571428571,2.70613,2.625176666666667,4.643625,3.62475,2.812143333333333,2.7592,4.143625,4.7392,4.993865,2.9109,4.2814,0.6690092857142858,2.3585706666666666,7.938181666666667,4.18617,6.786020000000001,2.615355,4.19706,2.33314,5.3743,5.6969,3.83742,4.336985,2.91509,1.0653116666666667,4.23583,4.80978,1.206438,1.31799,1.5627233333333335,2.4363,2.0125800000000003,5.4844,5.4435,2.2743,2.2743,3.6186947222222225,6.48927,2.11897,0.6649163636363636,0.7603671428571428,1.9566333333333334,3.3806,0.9612942857142857,0.9612942857142857,0.9612942857142857,0.37599461538461537,1.0674685714285714,2.9657,6.10895,3.7829333333333337,4.1726675,5.1983,1.01976,3.5277666666666665,3.252076666666667,3.905533333333333,5.82505,2.5369633333333335,7.408166666666666,4.9008,1.1076422222222222,3.7814666666666668,1.82725,2.60735,2.33076,7.162391666666666,3.3143733333333336,4.39831,2.2240975,4.65261,4.444015,5.0243,0.5200305555555556,1.9654299999999998,1.4011966666666666,2.513943333333333,3.9957166666666666,2.1001333333333334,2.762166666666667,2.3308133333333334,2.53084,2.5239966666666667,2.7610733333333335,2.7395133333333335,2.92735,1.3983700000000001,2.3556833333333334,1.9484133333333336,2.74293,2.4789166666666667,2.0268375,1.75816,1.8443633333333331,1.63244,3.077395,2.222443333333333,1.9181666666666668,2.15525,2.394676666666667,2.3305466666666668,0.73337,0.73337,0.73337,2.46392,2.047536666666667,3.02277,2.2792966666666667,2.49512,2.014013333333333,3.87892,3.4537199999999997,1.3305433333333332,2.41736,2.7534500000000004,3.8309300000000004,1.5762285714285713,7.108131666666667,4.43728,3.16325,4.082135,3.56059,1.470265,0.7730285714285714,3.2286,3.82918,3.8309300000000004,4.22846,4.2091,4.514775,2.8754899999999997,3.962695,4.090235,0.979468,2.753755,3.260425,4.9374400000000005,4.83135,3.56772,3.159625,2.526535,2.2350833333333333,2.32222,0.6461241666666667,5.147885833333333,2.698875,3.956285,2.7511466666666666,3.8478966666666667,3.27158,2.43867,3.1100689999999998,3.1100689999999998,2.614786666666667,2.10155,2.62867,2.0235433333333335,4.17048,1.391152,2.52594,3.798075,4.09642,3.96758,5.29505,3.665465,2.5633,2.09484,3.29426,2.85009,2.65852,5.1406,2.655165,0.9060971428571428,0.9060971428571428,4.48826,3.8610939999999996,0.916504,4.532365,0.916504,3.901415,4.931715,4.857935,3.145755,3.28159,6.3135025,4.10831,5.8186,0.8655499999999999,0.8655499999999999,2.13322,4.62393,1.5581800000000001,3.06575,3.41436,1.1242814285714287,4.01099,3.97078,5.5398,5.5398,1.0871983333333333,5.2766,5.37145,5.272,6.1449,2.014905,2.014905,6.9948,0.992009090909091,7.1136,1.9543425,6.3238175000000005,2.58272,2.4233066666666665,3.368815,2.31964,2.16553,2.3051666666666666,2.98704,2.4625790476190477,6.292197999999999,1.7545439999999999,5.27965,2.8856566666666663,2.6068700000000002,1.842665,2.275,3.427265,3.516005,3.41135,2.73895,2.195155,2.17631,2.48344,1.064232,3.334905,2.252325,3.266535,2.1529585,2.1529585,3.054645,2.0375533333333333,3.78443,3.424895,4.974495,7.156293333333334,4.124295,3.521595,6.365438,2.0485633333333335,3.353963333333333,2.2597533333333333,1.5186142857142857,1.69982,4.223645,1.531845,0.50167375,0.6126183333333334,4.776795,4.917145,2.888175,0.9121466666666667,3.057195,3.014943333333333,4.87257,1.801702,1.86722,1.1840333333333333,4.743055,2.417965,4.59239,0.753577,4.22793,5.0732,3.5675,4.48723,3.490805,3.844095,2.8896800000000002,5.4524,3.605695,2.11492,2.882846666666667,6.126728333333332,6.13689,0.73384,3.616955,4.27769,5.48625,3.6627666666666667,3.880933333333333,3.00205,3.19286,3.6971333333333334,6.31444,2.77522,2.6376720000000002,3.85654,3.66257,2.298835,2.636875,8.436866666666667,4.46979,1.8879333333333335,4.903015,4.5245,1.811678,3.86369,1.3549375,1.7222000000000002,4.521755,3.843315,4.99177,2.5184433333333334,3.64029,3.2781,5.13205,3.995765,3.53888,3.124435,4.254265,4.09028,3.98205,1.0933563846153846,1.0933563846153846,7.53541,0.8920275,1.9583441865079365,0.8920275,0.7192850000000001,0.3744722222222222,2.6776291865079367,2.478675,0.5675457142857143,1.9583441865079365,1.930755,3.269235,2.110083472222222,3.462605,4.78525,7.565641666666666,1.994785,2.27345,2.25401,4.5529,5.7907,2.12912,1.7627425,1.03835,2.8010925,4.164565,2.6318,4.506885,6.510674999999999,0.4194738888888889,3.736745,0.715136,2.652696666666667,2.22501,3.606585,1.2314816666666666,4.049765,4.55332,4.015435,2.8777,3.933755,5.14304,1.74168,3.361935,0.5940723076923077,2.489915,2.512235,1.14598,2.959433333333333,2.4667233333333334,2.5357833333333333,3.54977,8.24828,2.921039393939394,3.69936,3.36089,7.204675,5.511381666666667,3.210506666666667,4.270045,3.537225,5.6269,4.22474,5.23365,4.244945,4.135045,4.802185,4.080866666666666,1.5589475,1.9666466666666667,2.2168566666666667,3.919765,2.4884166666666667,0.19852675675675674,0.19852675675675674,0.19852675675675674,30.293218952380954,0.19852675675675674,3.1143017567567566,0.19852675675675674,0.19852675675675674,0.19852675675675674,3.3079400900900895,4.23708,0.19852675675675674,0.19852675675675674,0.19852675675675674,0.19852675675675674,0.19852675675675674,2.760245,5.779,3.057995,0.21791358974358976,0.21791358974358976,4.486196666666666,4.0251325,3.9496158333333335,3.225180166666666,4.028561904761905,7.957933333333334,11.4471167016317,6.358009333333333,8.081626666666667,7.593073964285715,2.76905,6.225714761904762,4.460908333333334,4.378908878205128,0.21791358974358976,7.911688,6.654626857142857,6.924298333333334,2.90075,9.109843964285714,14.722038273809524,18.01595277930403,56.423606657243084,117.66381268262049,1.3340249999999998,3.3846666666666665,3.338325,3.9117968545688546,0.21791358974358976,1.6293784615384614,8.666160208333332,14.141457714285714,19.61463861111111,47.544417168755224,13.313297797619049,3.195,0.22868172413793106,0.22868172413793106,4.499956666666667,2.74277,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,0.22868172413793106,5.58138,0.22868172413793106,0.22868172413793106,0.22868172413793106,2.66697,1.92289,3.615865,3.68508,4.185218333333333,5.09725,2.11538,4.14104,4.15449,3.17803,1.46631,3.569415,1.0198416666666665,2.280515,2.03581,5.124133333333333,5.92784,2.7891866666666663,5.848254555555556,0.5411911111111112,0.49696799999999997,2.4905133333333334,2.7800700000000003,3.01581,4.11657,3.4995666666666665,7.34745625,3.66804,3.56349,3.426825,4.018335,3.089175,3.19942,5.76185,1.83949,0.44422076923076925,0.8473245454545455,4.13874,1.7633275,3.79425,3.73565,4.424005,3.510225,2.39064,2.7102,0.6212273333333334,0.756076,4.240225,2.71562,5.87405,3.65523,3.9729716666666666,2.82497,3.578135,5.92405,3.96822,3.36046,0.8464400000000001,2.9915533333333335,4.440285,2.332875,0.97499,1.6171966666666666,4.127465,6.2722,1.90794,3.158595,3.580355,5.6025,2.54317,2.411426666666667,2.78531,4.918095,2.385425,4.406275,0.7356128571428571,2.1789666666666667,3.495785,1.910145,6.09362,3.44541,4.11245,4.54313,2.83605,2.131505,0.5283436363636363,4.625655,4.66908,6.73145,3.348505,5.1504,5.22165,2.867265,1.9154866666666668,1.2112414285714286,5.1853,1.949425,2.7514,8.511025,4.15321,5.42515,3.35901,0.9347699999999999,2.97333,1.1939785714285713,3.200475,6.20315,5.0009,4.971905,3.679945,5.08875,4.551885,1.69373,1.6921333333333333,5.0271,3.06888,3.3586333333333336,2.504525,5.23225,4.38401,1.4456733333333334,3.611166666666667,2.81956,2.780605,4.08805,9.2023,4.580195,1.7536375,4.718435,6.27667,4.4143625,3.97034,3.91834,3.92179,4.381465,8.22495,2.3327833333333334,3.25236,3.35393,4.23444,2.743235,3.179345,4.753685,4.27825,3.506055,3.956947333333334,18.881515333333333,2.7513733333333334,2.67934,3.4296333333333333,5.563238666666667,1.16352375,4.280525,1.9554108333333333,5.05195,1.4020383333333333,4.208835,4.258205,3.753785,0.95835125,4.461415,4.42036,1.65236,4.573399393939394,4.521845,1.0214771428571428,3.553895,2.09635,2.286,1.662165,4.29758,3.855015,3.865975,3.63905,2.9500933333333332,4.43703,8.067155,4.495255,4.583425,4.83502,3.1266233333333333,4.04528,4.91218,6.396721,0.91515,0.91515,4.442615,4.90367,2.2507766666666664,1.41253,7.1902550000000005,4.06469,3.48078,3.87354,4.643125,4.338595,3.525785,3.92997,6.750313,4.106316666666666,4.60161,4.90952,1.4712857142857143,2.788475,4.3746,4.66018,3.66675,0.20402833333333334,1.490085,2.06367,2.4749466666666664,2.1338933333333334,0.9537911111111111,1.438095,1.4503725,2.2866866666666668,0.6134444444444445,1.0135657142857144,1.9090075,3.86267,4.010533333333333,2.26775,2.6208266666666664,2.8708566666666666,2.7600533333333335,0.6746179999999999,0.93321125,2.775305,4.675455,4.62837,3.098395,4.55989,4.763465,4.64108,2.04376,4.260575,4.926595,4.409795,6.19885,3.673985,0.48222176470588235,5.1561,4.55335,4.001925,4.978575,3.432155,1.888402,3.95182,4.08028,2.90713,5.255626666666667,4.408925,1.3890516666666668,5.255626666666667,4.24371,6.6520399999999995,3.704095,1.1949666666666667,3.784265,5.01645,4.212625,2.612556666666667,5.0181,1.443715,2.014185,3.321905,3.392615,0.8103644444444444,4.831135,4.79611,3.45441,3.92714,3.4510666666666663,3.1004566666666666,1.7300999999999997,1.713855,3.132705,3.460095,3.19224,2.44006,2.3337475,2.012966,3.84495,1.4393714285714285,0.8123722222222223,5.62407,3.924595,1.551548,2.74257,2.25707,3.0532033333333337,6.025535,2.1960983333333335,0.8290240000000001,2.61149,4.457555,2.0860833333333333,4.086645,5.15645,5.22095,4.67258,4.254725,4.641075,2.168153333333333,2.25089,1.67106,2.2036533333333335,1.898655,2.35247,2.22847,1.775505,2.723115,2.953285,3.45684,6.5753,4.53364,4.08332,4.3916,4.016945,3.73675,5.2383,0.88929375,3.1390266666666666,4.73218,1.1752179999999999,0.673,5.37785,3.608925,2.4949066666666666,3.6868624999999997,6.1394,5.31085,0.9699030000000001,1.2333957142857144,0.7341188888888889,4.130730833333334,2.3112333333333335,2.8114833333333333,1.1806485714285715,2.6602033333333335,2.7144366666666664,5.47135,4.56857,4.312025,5.3082,4.49976,1.2805683333333333,3.693575,1.68297,3.584725,3.76417,3.36451,2.71325,3.3581333333333334,2.7067266666666665,3.608,3.993195,3.05798,2.5174,8.828520000000001,10.24311,4.068865,1.4626000000000001,5.27275,4.120525,4.66058,4.404665,3.893995,3.880755,3.46392,4.169545,3.552460625,5.12362,3.82075,3.761195,4.594635,1.791768,4.69992,5.6758,4.64592,3.32335,3.2576549999999997,7.4393650000000004,0.7934183333333333,2.539356666666667,2.79292,2.360933333333333,5.02745,3.185885,1.3026283333333333,4.143895,3.3670000000000004,3.811585,4.699905,4.075680833333333,6.58428,3.2554233333333333,2.882766666666667,3.14081,2.77129,3.964815,1.8764466666666666,2.1289866666666666,2.98897,3.908985,3.7147183333333333,1.967235,1.5472725,3.2860014285714287,3.1611504999999998,0.9488088888888888,2.587693333333333,2.587693333333333,1.40101,5.84065,3.112095,3.592165,3.61247,3.358825,3.44441,3.3735,3.322525,3.17756,2.21807,0.5410106666666666,3.214035,5.7575325,3.129365,3.7392,3.22471,4.08969,4.045395,3.087465,2.547785,3.75461,3.68831,3.186695,3.11227,3.73602,2.64643,4.018285,3.832935,8.95444,3.50383,3.654835,3.003475,4.03062,4.07088,3.624535,2.38251,3.738925,2.6597350000000004,2.778405,2.95825,3.233705,3.75357,1.6933266666666666,1.6933266666666666,2.222905,3.08784,3.37141,1.539368,2.336935,3.344755,1.906382,2.899785,1.539368,4.44237,3.05186,3.9098954999999997,3.02703,3.29735,2.31225,3.258345,4.091245,4.234445,3.52245,4.526905,3.80491,4.2505,3.626185,3.04695,3.33457,2.953465,3.785085,2.66959,3.80927,5.30535,4.081245,3.768585,0.29882043478260867,3.55031,0.4405966666666667,3.651915,3.684995,2.923045,3.5252,3.790835,6.149608333333333,3.414665,2.5880199999999998,2.4168,2.81554,0.628721,6.754736666666667,3.160575,3.37595,3.741105,1.94511,2.875245,3.360935,3.37189,6.713609999999999,4.60344,5.06885,4.7507,4.34392,4.13215,3.967095,1.4852400000000001,1.634522,3.840785,4.490735,5.7173324999999995,2.4434033333333334,4.98098,2.00018,3.588566666666667,3.97945,1.8581819047619046,4.07413,5.13982,3.4991333333333334,3.8320666666666665,2.80213,4.37718,4.824085,3.509866666666667,4.41961,4.44682,4.81923,4.293885,4.434885,4.17435,3.15845,4.400775,2.647325,3.3757,3.3757,4.61771,2.5294433333333335,3.828385,2.5067066666666666,4.4987,3.3559666666666668,3.559025,1.7913,1.8911433333333332,1.2024966666666665,1.2024966666666665,1.565434,3.470466666666667,1.6953033333333334,2.832543333333333,4.053625,5.10405,3.2948533333333336,3.966425,6.10722,2.96754,2.829735,2.93759,1.5725633333333333,4.22348,4.100575,6.483585,1.61818,5.2186,5.71465,3.3795333333333333,3.25145,4.174925,6.89258,1.99606,2.3729775,4.075555,0.45373714285714284,3.96502,4.103915,4.182655,4.45044,3.023955,1.377596,1.70764,3.960875,3.34685,2.4133566666666666,3.757495,4.752475,5.0801,1.0395125,3.247775,4.67819,3.671605,4.59885,2.5518,5.26203,3.8707,1.577534,3.569635,1.24353,2.7448200000000003,7.531750000000001,3.346355,0.6687718181818182,3.399845,3.98011,3.839745,1.7972625,1.7972625,5.088873333333333,5.8006,2.93649,0.49377777777777776,1.970035,4.545278333333334,4.443755,4.47601,1.780238,2.9460466666666663,3.482425,1.1800194078947368,1.1800194078947368,1.1800194078947368,0.7706514912280702,1.335528157894737,0.5648766666666667,1.1800194078947368,0.7706514912280702,0.2527331578947368,0.8176098245614035,0.2527331578947368,0.5179183333333334,0.5179183333333334,0.5179183333333334,0.5179183333333334,1.1034425,1.030015,2.3930166666666666,2.386365,1.14335,6.38305,2.69721,6.146599999999999,2.60898,3.42501,2.808495,3.519975,2.7236725,4.58681,2.8043633333333333,3.99939,4.09035,4.769555,2.18502,3.98888,4.810865,4.12671,3.16702,4.834165,3.50326,4.505065,5.5375,5.2131,6.2592,5.2262,1.11477375,4.48761,3.83954,2.9251,15.07638,4.619675,5.0415,2.68493,7.56368,4.01194,4.56388,4.71176,3.06877,1.060685,2.58332,3.940365,4.33402,3.62233,3.38105,4.13372,3.0238133333333335,4.32157,4.612585,4.235775,6.497728333333333,7.458219999999999,1.2494514285714284,3.70022,3.97677,4.13865,3.620595,3.398305,7.27349,2.88001,2.80027,2.624455,3.994445,3.844855,4.601025,2.387045,1.820355,0.906144,4.35112,3.586775,3.671375,3.85596,3.508175,4.969765,3.81003,6.488,5.8905,5.56525,6.789,3.80116,3.183105,3.22299,3.44066,1.869315,4.44093,6.01095,6.59585,5.885536666666667,5.885536666666667,2.349555,1.869315,2.057675,3.50911,0.7349950000000001,1.5774825,0.8424875,1.51383,2.719925,0.343919,3.01569,4.139605,1.51383,2.934071,11.10387,6.592147499999999,2.314985,1.03917,1.7278399999999998,4.60834,4.27394,5.90991419047619,1.96634,2.11163,3.747255,3.541805,4.6554,1.5702533333333333,5.47015,3.5543333333333336,3.342915,5.22225,7.2746960000000005,3.877495,2.4354575,2.7885866666666668,1.5353533333333333,3.94007,5.42879,1.755614,5.7259,4.441485,5.9768550000000005,0.5308913333333334,4.600136666666667,5.14395,5.68665,2.51403,2.837065,7.28745,8.673516666666666,6.5426,2.199316666666667,2.199316666666667,2.199316666666667,4.817185,4.68532,5.7074,3.49491,2.799325,2.5748486842105263,4.30461,5.47875,2.6002495000000003,1.981715,2.6002495000000003,7.2436495,4.913209999999999,4.952290714285715,6.81569,4.952290714285715,4.952290714285715,3.6421357142857143,7.31236,5.590667,2.944662,2.944662,2.639535,7.0927,2.906965,3.56495,5.532799166666667,5.532799166666667,5.532799166666667,7.630285000000001,3.6774575,3.44503,3.7745325,3.559485,0.8643325,7.631036666666667,2.717826666666667,6.5141,3.563745,12.988021666666667,4.85282,5.516640833333334,6.90658,2.6086650000000002,3.540375,1.1277933333333332,5.516640833333334,3.474625,1.66255,1.66255,3.142225,5.3067975,1.850755,4.780926666666667,0.8467119999999999,1.4059266666666668,0.8467119999999999,1.9317975,2.6974669999999996,5.388437,3.588085,1.4059266666666668,3.20937,4.83948,0.98866,3.56792,4.481965,2.276305,4.3166400000000005,2.923345,3.41248,2.780165,0.9949939999999999,3.838495,2.25493,2.24929,1.7031333333333334,3.0875983333333332,3.85258,2.683295,3.80187,1.2759477777777777,1.2759477777777777,1.2759477777777777,4.06893,3.1505566666666667,3.1505566666666667,3.383265,3.890015,2.4170000000000003,1.339825,1.339825,3.004785,4.6350075,0.8285625,1.6209366666666665,2.868075,1.2780533333333333,2.8989899999999995,0.9949939999999999,0.9949939999999999,1.838258333333333,0.9949939999999999,3.027641666666667,0.62728,3.027641666666667,6.0738183333333335,3.489105,2.3348733333333334,1.820707222222222,0.5887516666666667,2.409458888888889,3.474735,2.409458888888889,1.0120222222222222,3.36951,3.996555,3.932485,3.798435,2.53003,3.76962,1.8401566666666669,0.8476140277777777,0.40081625,0.8476140277777777,0.4467977777777778,0.8476140277777777,0.8476140277777777,4.22953,4.39206,6.36895,3.493305,4.45538,4.466345,5.12265,3.44076,3.782055,1.354072857142857,3.2947900000000003,4.4206916666666665,3.886405,1.4417266666666666,2.76698,3.766635,3.825,4.12331,3.515425,3.971185,3.807275,3.14792,4.385515,2.2326366666666666,6.05245,3.638935,3.744615,4.688389285714286,0.9999867857142857,2.063485,3.195935,6.03096,3.95095,3.237195,3.0409,4.16888,7.2217633333333335,3.1052733333333333,3.448485,2.7542733333333334,3.76937,4.031095,5.57115,5.47565,4.35994,3.070405,5.09645,4.639435,3.471766666666667,7.451205,3.3115133333333335,2.29679,2.4270033333333334,4.809585,6.5071,5.14305,5.0614,3.93376,4.89222,5.7903,0.5230023076923077,7.471415,4.353515,3.54146,3.701885,4.856865,3.997355,3.0009200000000003,2.4367175,1.36494,0.5699346153846154,1.767016,3.0781766666666663,3.327935,3.170245,3.77794,3.8476,11.388178333333334,3.81569,3.927965,2.972155,0.6978416666666667,5.47888,3.1671333333333336,1.4935066666666668,4.660640000000001,5.621588333333333,2.454455,8.15699,4.642025,2.275944,2.275944,2.275944,4.25172,9.08018,3.469375,2.72845,2.72845,3.418115,10.1986,1.035635,4.78833,4.39585,4.223195,2.742103333333333,2.2815,4.51903,3.78296,6.3633,6.15729,3.972705,2.97041,3.855845,4.441190000000001,3.394952,1.2326375,2.94083,6.14052,3.3516825,5.03395,0.92755,3.719533333333333,2.2527933333333334,2.6029233333333335,1.774975,1.78885,2.21497,5.42915,2.10576,4.558295,5.43975,1.7545439999999999,4.670775,3.81133,4.809635,3.1396333333333337,2.31066,2.73741,4.39089,4.053016666666666,4.053016666666666,1.1710775,1.5095599999999998,2.88101,4.415002333333334,2.239584727272727,4.864901333333333,1.8037379999999998,2.8335033333333333,2.125253333333333,1.592755,1.592755,4.792255,7.4670966666666665,1.8318899999999998,2.93877,2.1847425,4.62528,3.14353,0.8073600000000001,2.89005,0.8073600000000001,2.824785,3.31898,5.052,5.0909,3.747305,4.669293333333334,6.0102,2.363945,1.7922766666666667,2.6476,2.273216666666667,6.2156,5.03895,2.495865,4.158865,2.80038,4.33127,1.06622875,1.146226,1.8611266666666666,1.3237933333333334,2.58718,2.70443,2.25125,2.60006,2.682075,4.38714,2.6039133333333333,2.4140166666666665,2.76197,2.410066666666667,2.7607233333333334,2.66743,1.9853966666666667,2.4673133333333332,3.91373,3.955045,3.156405,3.23256,2.7972866666666665,2.21041,2.044015,1.17985,0.2865125,0.13650652173913044,2.117923333333333,1.8516700000000001,0.13650652173913044,3.696894855072464,2.037385,0.13650652173913044,5.748887291666667,2.162961666666667,5.96506,3.41371,3.2132966666666665,2.5802033333333334,2.9125,2.1964525,4.343265,2.9314199999999997,3.2567733333333333,0.4323005263157895,4.0303683333333336,2.652800526315789,3.127685,1.756635,2.46001,4.59334,2.35943,7.9551549999999995,5.32315,3.30533,3.92648,6.60871,5.78424,1.7585933333333335,4.19037,2.045365,1.93814,6.20779,8.10328,1.0237100000000001,2.09616,3.721515,2.57555,2.88734,3.021495,2.672155,4.732984999999999,2.49563,3.198785,3.27555,3.18689,7.52598,1.30773,2.06024,3.08533,3.347165,1.8143799999999999,3.406995,1.3768,3.8707,3.453345,6.46707,3.40691,9.264415,3.478315,1.551172,1.7253233333333335,3.0061,5.61079,1.582035,1.67143,5.73181,3.422275,4.094435,2.829535,2.0129699999999997,3.17878,10.3627,5.2945,6.48426,3.4752,2.280205,2.201475,2.43666,2.88001,3.334435,1.7542833333333334,1.5860266666666665,2.5588833333333336,3.580185,1.7793925,3.407175,2.546975,4.040525,3.77523,3.19821,1.1911916666666666,2.484705,1.2347733333333333,1.405648,1.53831,3.26503,3.5496,3.64195,2.775725,3.751465,3.995985,2.847485,1.444156,3.51776,3.425045,3.07039,1.827165,3.129525,3.44554,1.5435025,3.384425,1.57615,4.0083,4.214095,4.853945,2.804845,4.101905,1.666795,3.49956,5.2871,1.66642,1.0574457142857143,3.4501666666666666,2.817035,4.09399,4.190285,2.926395,4.604145,4.916155,2.4595433333333334,5.41485,5.4077075,6.58745,3.95013,6.634334333333333,3.886835,1.6963833333333334,2.6698133333333334,4.56452,4.690955,2.643623333333333,7.399634,1.227852857142857,3.416066666666667,2.122145,1.732442,2.39104,2.81059,0.36386928571428573,2.71323,3.7161666666666666,3.45289,2.465095,3.369533333333333,2.3511,2.4180533333333334,2.2471525,9.14825,4.98797,1.911816,5.2675,2.3537125,0.7366237692307693,2.786576666666667,7.385429333333333,1.81983,4.55495875,6.312216666666667,1.7095825,1.62526,1.441595,4.70947,3.20779,4.377135,3.82661,2.3890533333333335,3.6235,0.8796900000000001,2.65874,3.786245,4.11218,5.01425,2.90681,4.95591,5.1782,4.112595,4.894405,5.68925,4.665775,4.27689,5.3859,1.9316020000000003,1.91686,2.84072,3.406335,1.1437222222222223,4.149795,2.0891766666666665,3.3645333333333336,4.14177,3.3603,2.6181966666666665,1.4814666666666667,2.9484766666666666,2.7736688888888885,2.6931266666666667,2.92808,2.01347,2.513375,2.405085,4.06651,4.23886,3.923295,4.74536,3.557145,2.444355,3.05894,4.97545,3.846633333333333,4.63869,3.35989,2.30967,4.435081666666667,1.7004166666666667,4.102195,4.785680833333333,5.950310833333333,3.94943,4.535105,5.39525,3.338566666666667,3.9305266666666667,4.574545,3.297035,3.719639,3.4053,1.3793225,3.295495,1.74746,2.187305,4.77738,4.99915,3.719639,4.005805,3.44478,1.5581800000000001,3.661745,2.08622,2.54174,2.035985,2.78948,1.5577918181818182,1.5577918181818182,1.5577918181818182,0.5883218181818182,0.7892855555555556,2.119777222222222,1.1031625,3.669365,1.3975633333333333,4.042225,5.19735,4.61548,3.27127,4.0166,3.241895,5.00815,1.554705,3.08371,2.6701,3.32789,5.848687,4.175405,5.46855,4.167615,0.975615,2.23384,1.2944366666666667,3.797785,4.008815,4.20181,5.2336,4.851625,4.17067,4.71765,3.6749,1.703105,1.1586716666666665,5.300226666666667,1.0760711111111112,1.2676633333333334,2.636773333333333,8.04757,2.822135,3.757145,3.14145,5.57573,1.643865,1.0035133333333335,1.5196775,3.208825,3.609595,3.87287,3.707685,1.90271,6.1653400000000005,2.9755366666666667,0.9120225,4.866435,3.04395,2.7190366666666663,2.3278066666666666,3.5718333333333336,5.543750000000001,2.701943333333333,3.2544033333333338,3.4475,2.59375,2.824316666666667,2.90917,2.74486,2.06925,4.551855,4.62609,5.04225,1.0021077777777778,0.764934,3.9055999999999997,2.64393,1.08394375,2.77074375,3.702395,4.25874,7.002000000000001,4.62328,3.5602666666666667,1.7583680000000002,3.52309,3.71167,2.950623333333333,2.5112557142857144,4.21195,2.84909,4.881983333333333,0.8867411111111111,3.331025,1.726734,3.660695,4.09062,2.132735,1.0268175,3.210975,0.428351,3.010965,6.73995,5.3405,2.771764,1.483828,3.575366666666667,0.8074166666666667,2.56514,0.8074166666666667,4.0372,4.223855,1.36961,1.784265,5.111348333333334,1.8676033333333333,3.77361,3.15484,3.86473,1.270016,1.5573966666666665,3.84994,5.19915,5.36135,2.9286700000000003,2.622575,3.213425,1.59422,2.580875,1.817545,1.945215,4.331645,1.4344222222222223,1.4344222222222223,3.3552,4.5420766666666665,8.557601666666667,4.672063333333333,7.85805,2.341415,3.77756,4.03697,1.7008999999999999,3.6757091666666666,4.027475,2.933295,5.5756,3.025965,2.534235,2.832383333333333,3.79416,1.08089125,4.13311,4.48842,1.1600583333333334,7.915486666666666,2.7292,3.162915,3.5913233333333334,5.07645,4.68822,3.7649495833333333,2.5873766666666667,2.78895,1.9729766666666666,3.7251999999999996,2.3122225,2.156165,7.409181333333333,3.2872333333333335,2.89216,4.271655,22.771010637362636,0.6949000000000001,2.747125,4.528865,4.59235,8.47381,4.922775,4.409285,4.571695,6.948023333333333,3.54975,1.6186233333333335,4.724211666666666,3.239675,1.131396,1.131396,1.131396,2.37117625,1.649,3.30117,1.5181525,2.945905,1.52926,2.585185,2.63837,3.01846,1.5181525,3.24036,2.674395,4.213455,4.905481666666667,4.983395,0.76126,3.314165,2.80217,4.657855,3.520635,2.882855,2.3121825,1.7022425,2.25389,1.4460760000000001,3.752675,1.6576375,4.52244,11.475478666666667,2.802713333333333,2.393105,4.98716,4.704033333333333,4.4685,6.40965,2.2205,5.511381666666667,4.736575,1.0455816666666666,1.1929085714285714,6.431043,4.01326,2.371125,3.69405,1.8565275,4.199395,4.97935,4.495715,4.00251,1.357307142857143,4.257325,4.73545,4.770995,6.343997,3.496155,5.16735,4.525395,4.37698,5.1604,3.687533333333333,5.05405,1.935405,3.340115,3.082285,3.162925,4.200835,6.2288,4.45586,2.8012200000000003,3.5036,9.04152,4.831215,3.29509,3.560095,3.17731,4.35774,4.30287,4.617515,6.756043333333334,3.408575,2.6857366666666667,4.074884166666667,2.423325,4.30334,2.3408666666666664,6.4332475,1.6579016666666666,4.50499,4.84153,11.9007175,0.4910907142857143,4.44933,4.92398,0.6555242857142857,3.728135,3.9017,4.205925,0.9614990000000001,4.982635,4.877303333333333,2.622263333333333,10.038338333333334,3.29092,1.8731233333333333,2.40638,3.295685,6.0076,0.5712975,3.90124,2.01833,5.4694,0.7298030769230769,4.20248,5.7095,6.02505,3.55117,6.8150975,4.52105,3.624715,2.5303400000000003,2.752883333333333,4.275345,4.66653,5.00795,5.03815,5.45435,3.22907,6.848035,2.820375,3.171477,1.9750375,4.2865,2.338506666666667,1.5674066666666666,3.07624,2.92416,3.2232466666666664,3.4144,3.626,3.09383,2.677896666666667,5.66205,3.1099933333333336,3.77476,5.0005,2.6392266666666666,1.1497000000000002,3.1478633333333335,2.9682566666666665,3.927825,2.8171033333333333,3.01115,4.911391666666667,2.043956666666667,1.70024,3.0993,3.751655,4.36926,1.09338,4.313355,3.32225,4.121766666666667,2.8753833333333336,4.8561545,3.9573,3.33449,3.921815,1.622985,3.796465,0.66030625,4.710695,4.855375,16.77192,3.10357,1.1942266666666665,4.062875,0.6367785714285714,2.704825,4.39977,1.82427,1.2403514285714288,3.61927,4.563195,3.1588233333333338,0.8250983333333334,2.49429,7.92376,3.947385,5.58055,5.0441,5.1547,3.04955,3.7886333333333333,3.1538233333333334,7.014573333333333,4.05575,5.05625,2.1333425,0.4482494444444445,2.20848,2.93685,2.56007,3.62004,3.77272,2.8933233333333335,4.74511,0.6784658333333334,4.70979,3.68565,2.96741,1.15862,2.7155,2.0008233333333334,4.606745,3.896915,2.09687,1.6469714285714285,3.522695,4.31323,4.366705,6.331921666666666,2.1543466666666666,4.78063,4.333905,3.91448,1.928584,3.9086,6.208408333333333,4.98145,2.4399,4.770295,2.921665,2.652765,4.009035,3.945355,1.3589149999999999,4.655775,2.1196433333333333,2.7711733333333335,5.312976666666667,5.312976666666667,5.17655,1.844542,4.92302,0.911815,1.74778,5.005,2.6971266666666662,1.4871800000000002,3.1703200000000002,0.8798920000000001,4.308033333333333,4.303975,2.89132,5.07415,4.286545,3.89501,5.2891725,3.527465,3.7006,2.8897033333333333,2.39822,2.576075,2.8457500000000002,4.31097,1.5807521978021974,2.9727099999999997,4.324515,4.904185,2.2787979166666665,4.21902,4.670215,4.851435,3.517466666666667,5.3532,5.1895,5.1385,5.0268,3.77138,3.621435,3.69111,4.508715,5.58345,4.77898,4.998375,4.37987,4.57078,0.6812866666666667,4.953725,4.765945,3.88897,7.267035,4.309755,3.91714,4.391845,4.86679,3.450465,3.64685,2.1077875,4.452992500000001,1.8172275,1.26553,3.67749,2.056153333333333,2.5192799999999997,3.799244,3.3300466666666666,2.94389,1.1348733333333334,1.9712575,4.380445,3.579245,1.88682,1.88682,3.56893,1.5697839999999998,3.19811,4.406505,3.382805,3.739565,1.4319666666666666,2.089455,3.47367,1.88081,4.145125,4.4313,4.4803,3.960005,6.631383333333334,2.71465,3.676505,4.686695,4.401135,3.3180333333333336,4.070015,4.130455,4.367325,2.183555,2.65495,4.478145,3.82912,3.61475,3.71261,1.6158,3.7968,4.210945,4.520385,4.15905,3.9115925000000002,3.9115925000000002,3.0310366666666666,4.10874,4.331505,3.968965,1.717154,7.61908,3.92677,4.867775,4.410715,4.269685,3.835385,5.02275,2.973235,3.193035,2.82841,5.0094,1.8219740000000002,4.547125,5.661680555555556,5.19115,0.720769,4.795099166666667,1.13674,4.7522,4.753115,4.547875,4.170285,5.18975,3.7096,3.7096,0.88515,2.1906125,4.914315,3.57501,4.154585,4.889525,5.65,3.314505,4.268515,1.4164,2.58423,1.67673,1.24203375,4.319868,0.817999,2.603543333333333,3.0820233333333333,1.2628566666666667,2.1662175,2.681673333333333,1.3766749999999999,6.33643,1.9812075,2.5067266666666668,5.2893,1.92222,2.7584733333333333,2.933685,4.55945,3.6633999999999998,3.2855066666666666,4.080033333333334,1.653434,2.1389775,4.45597,0.6490842857142857,2.1764933333333336,2.4182483333333336,3.1282933333333336,2.8146566666666666,1.1514585714285714,0.8248033333333334,2.46527,4.17208,1.1783642857142858,2.2955975,1.2416175,5.384975,2.233875,5.14325,4.414075,4.39989,4.91077,5.20675,4.24945,4.29421,1.4697033333333334,3.8673,1.697378,2.4916466666666666,1.2000157142857142,4.273495,2.0933925,6.914282,4.137265,3.90612,1.438414,6.9104350000000005,3.76823,1.5825866666666668,4.197925,3.228675,3.87478,3.31001,1.9796475,1.9796475,3.379633333333333,1.2344266666666666,1.2344266666666666,1.928584,2.8388233333333335,2.0268375,1.3305433333333332,3.5271333333333335,1.06032625,2.9759333333333333,2.3466525,1.8974,1.52649,2.17082,2.0616825,0.2898529411764706,2.4930075,1.234945,2.3381933333333333,2.125253333333333,2.5633,1.0674766666666669,1.064232,3.7706999999999997,3.1008766666666667,1.9796475,1.7633275,2.0309933333333334,2.5254533333333335,2.4274766666666667,1.8884899999999998,3.3239033333333334,1.0712300000000001,3.3199,2.6950833333333333,2.5831933333333335,1.54745,1.050986,2.4919325,1.050986,2.4919325,0.69360125,0.69360125,0.47998722222222223,2.272675,2.4843699999999997,0.69360125,2.22093,2.332883333333333,2.3475025,1.63244,0.73337,0.69360125,0.69360125,1.635342,1.635342,2.0218375,1.7633275,0.69360125,2.30706,0.46368615384615386,3.018406666666667,2.0093666666666667,2.49642,2.5335033333333334,2.5335033333333334,0.3812875,0.3812875,1.928584,1.9726400000000002,2.1459,1.962998,0.3812875,3.5916,2.501525,1.6375319999999998,0.6264625,1.6375319999999998,0.6264625,8.74857,2.4519466666666667,4.017333333333333,2.670533333333333,3.0366033333333333,3.1508933333333338,2.8886333333333334,3.521333333333333,2.5516,1.6993525,2.7352733333333332,3.1052733333333333,2.3544899999999997,1.635342,2.564550158730159,2.564550158730159,2.7701433333333334,2.12585,4.22901,2.28192,3.3815000000000004,2.663676666666667,1.481598,2.390665,2.350665,0.7848263636363636,1.71044,3.676895,1.728218,3.1361266666666663,2.5866266666666666,2.743175,3.89,1.6680833333333334,3.5824,3.0940433333333335,4.2067000000000005,1.210116,0.22868172413793106,1.2681228571428573,1.2681228571428573,1.037721111111111,2.9933633333333334,3.905533333333333,2.690136666666667,2.1789533333333333,2.1789533333333333,2.1278825,1.57615,0.987357,1.7039600000000001,1.7039600000000001,0.69360125,1.928584,2.8582366666666665,3.3150099999999996,2.3466525,2.1992599999999998,2.1992599999999998,2.1992599999999998,1.083018888888889,1.5186142857142857,1.5186142857142857,2.5123,2.802466666666667,2.5370325,4.015295,2.5062133333333336,2.4469499999999997,3.49246,3.900065,6.916752499999999,3.763135,4.52386,4.067333333333333,13.4722575,4.90731,3.47432,0.9356575,3.876585,3.605735,2.34239,3.704545,5.0332,5.6895826666666665,5.9496,0.4752529411764706,3.92221,3.27076,3.91366,2.45775,4.42565,4.40337,3.8027,8.31758,3.53454,3.909445,3.986845,3.2565186363636363,7.985419692307692,3.2477133333333335,2.6365666666666665,3.64421,4.170585,4.98281,3.81348,6.814284000000001,3.96803,1.37711,2.773695,0.90323875,4.851135,2.78628,2.684805,4.030445,4.207425,2.741625,4.615375,3.88985,8.4614,3.950365,4.548876,2.4384533333333334,5.05133,3.086465,1.4188125,1.4188125,3.452655,3.966675,2.267855,2.165165,4.09864,2.88451,2.81941,1.92566,2.0603175,2.879955,2.5488566666666665,1.13888875,3.307395,4.772335,8.4043,1.5825179999999999,2.798235,2.94055,3.237945,2.7945433333333334,8.19649,4.1439,3.5908333333333338,2.8931166666666663,4.01556,3.3608,2.9061133333333333,3.157643333333333,4.06081,3.92639,4.315255,4.17964,0.404532,1.4934866666666666,2.4615133333333334,1.7829975,4.481295,3.375895,2.7342833333333334,2.21157,4.70448,3.77255875,2.0940625,2.28475,0.9680799999999999,2.203145,2.46452,2.46452,5.27265,1.894975,2.849683333333333,2.335503333333333,2.0133933333333336,1.70386,3.11618,3.84107,4.9155,4.4214,5.0026,4.72847,2.78261,2.95815,2.06316,4.805745,5.4508,1.9622733333333333,2.9550366666666665,2.23173,2.4164833333333333,3.9757333333333333,2.4903033333333333,5.0309,3.818335,3.56296,4.255945,2.9362666666666666,3.616465,4.074025,2.24465,2.5460966666666667,0.4141228571428571,3.862766666666667,2.6092400000000002,2.9686,6.1326,4.65532,5.746339166666667,1.9016225,1.5843766666666665,3.054875,5.27125,6.48315,5.9944,3.02929,2.2582633333333333,3.287945,2.2036333333333333,4.537405,2.27961,2.274455,5.33185,4.99267,4.502785,1.71309,1.922715,1.055372,1.055372,1.086976,0.93532,0.677978,1.885246,4.345365,10.243850833333333,3.885095,4.29937,4.07298,5.6775424999999995,2.623935,1.65851,3.442196666666667,2.90527,3.63793,2.46636,2.6327766666666665,2.854456666666667,3.2118599999999997,2.3405833333333335,3.1806366666666666,3.3022666666666667,3.040843333333333,3.3917,3.3609333333333336,2.9721533333333334,2.7022933333333334,3.10549,2.3854,3.1365200000000004,3.0019666666666667,2.8706099999999997,3.3998000000000004,2.18294,5.639423047619047,3.236966666666667,4.143396,3.18553,3.0730166666666663,3.6836333333333333,2.802073333333333,2.9443133333333336,3.1175833333333336,3.1381599999999996,3.3371666666666666,3.2718666666666665,1.9778275,2.69764,2.8499866666666667,2.918175,2.918175,3.3277300000000003,3.03266,2.480376666666667,2.7857966666666667,3.2138566666666666,4.177333333333333,2.8297066666666666,2.693925,2.7312666666666665,2.848133333333333,4.5108625,4.9657,1.61513,3.566933333333333,3.6366,3.3379380000000003,3.263873333333333,3.738566666666667,3.5433,2.7794266666666663,3.3372580000000003,1.921894,2.9362380000000003,3.4235,3.358966666666667,2.5823,2.4292700000000003,3.878833333333333,2.9506,3.0786200000000004,2.4023075,1.1992716666666667,3.31113,2.6897233333333332,2.12916,2.544925,3.19349,3.1561,1.972626,5.631578,2.42505,0.9166359999999999,4.563755,1.8778291666666664,1.6574933333333333,4.407685,3.71354,3.275745,2.37392,1.4217875,3.546795,3.319145,2.72764,0.42294600000000004,2.14767,0.42294600000000004,2.062425,1.4217875,2.675685,3.759855,2.381865,3.19499,3.38263,0.49424666666666667,2.9677133333333336,0.926775,0.4294976470588235,3.941595,3.917585,4.78709,2.521125,5.4501,4.145065,3.723085,2.28389,3.9928333333333335,1.675334,5.82595,2.695345,4.264165,4.679455,2.9084066666666666,1.913,2.1276633333333335,1.346425,1.823635,0.8943625,0.8943625,4.472575,2.27223,6.049165,2.1434725,2.403765,1.92687,2.18369525,1.5736225,4.652555,3.6947875,2.121165,2.305703333333333,2.18369525,2.04928,3.4858877500000003,1.8741137500000002,5.814813333333333,2.1434725,3.28366,3.474485,3.0669866666666667,5.5601,4.84459,1.933055,2.048975,2.313805,2.323505,4.85246,5.43415,1.9519775,3.702765,1.5725633333333333,1.5812025,5.35485,10.18675,2.008173333333333,2.27795,2.4069966666666667,4.30875,4.200785,1.85408,4.70839,4.65109,2.564615,39.56301860714286,2.865936666666667,3.09276,0.4407,4.905491666666666,2.2042966666666666,0.9526944444444444,3.73915,3.65204,1.9471425,1.85314,2.3798566666666665,3.93456,1.3759485714285715,3.2286633333333334,3.73661,4.70681,0.9170210000000001,4.978215,4.934935,4.93111,3.0038666666666667,1.5957375,3.8218375000000004,4.45276,3.73727,3.134245,3.61166,3.963285,11.869339191919192,2.7836433333333335,3.210975,4.02658,2.780545,4.358685,3.2557,2.28187,2.95488,6.153662499999999,4.81617,5.36515,4.94426,2.454815,3.516635,4.355435,3.595095,4.6783,4.60749,0.12214239130434783,2.30523,5.3344,2.73571,1.5596050000000001,1.1634499999999999,1.1634499999999999,2.468235,2.690865,2.735555,1.7095120000000001,2.86,4.390665,2.60616,4.477198333333333,0.5704721428571429,4.55263,3.56356,4.704585,4.808565,4.63835,1.23322,1.12110125,4.308166666666667,2.954753333333333,2.991766666666667,3.938804,4.126075,6.271395,5.3746,3.837735,3.595175,2.1671741666666664,1.5245566666666666,4.389905,0.31706666666666666,3.362715,3.77592,3.96634,14.39162,1.81537625,3.2840733333333336,0.63222875,4.52394,8.50652,3.33313,1.8271033333333333,5.88955,3.0995033333333333,1.064497777777778,4.389055,2.70595,3.036435,4.75526,3.483691527777778,1.0806575,6.62508,0.73703375,5.02575,3.278361277777778,1.4091575,2.113765527777778,3.24483,3.24483,3.94725,4.39357125,1.3593625,2.44573,2.82955,3.56951,2.88336,2.64449,3.226065,3.404215,6.703780666666667,6.31105,3.969845,3.316015,4.4589,4.622685,3.540525,3.385555,3.541745,4.097335,4.55244,2.5437066666666666,2.5591566666666665,1.6460733333333335,2.2993366666666666,2.316075,1.54229,3.355933333333333,3.5905,3.4749666666666665,3.127143333333333,2.5964899999999997,1.46631,1.5893300000000001,0.47719636363636364,2.810026666666667,1.6197714285714286,1.9822375,3.4318666666666666,2.5648733333333333,2.5761833333333333,1.00907875,2.304115,2.58253,2.82221,3.571695,5.1417,3.8843,2.942825,2.25104,3.37522,4.29934,2.48942,3.97087,2.071585,3.82979,2.820205,4.061155,1.3835199999999999,0.6166210000000001,2.3726775,3.333305,3.13407,3.972385,4.5503,8.574445,3.26953,2.3432833333333334,1.8129766666666667,1.7910879999999998,1.7910879999999998,2.8923966666666665,2.51338,5.0128,4.87459,3.604835,4.98956,4.488925,4.45251,3.2294625000000003,4.23519,8.105504999999999,2.49053,0.50167375,3.273756666666667,1.3190266666666666,1.0181214285714286,1.8490633333333333,0.781434,2.115845,5.164,5.08905,5.82113,0.96749,6.99343,2.0007,1.5482116666666668,2.50955,4.193945,3.32887,2.43827,3.7619,3.04215,4.1902,2.8956466666666665,2.7230333333333334,2.96085,6.67044,2.496745,3.972555,3.949556666666667,3.6082266666666665,1.5510466666666665,1.13376,4.31568,2.8217133333333333,3.29182,5.65227,2.68266,2.095705,2.4287275,3.353105,3.733966666666667,2.34516,3.9249675,3.133226666666667,5.2634,2.36333275,1.8127875,4.918995,5.48465,4.7018,4.304125,1.5728033333333336,2.36978,1.976145,3.317395,1.6746100000000002,0.9111250000000001,2.6811325,2.1020375,2.0025975,4.258115,0.8036075,5.7490375,1.4125675,0.7882445454545455,3.4776333333333334,4.193015,0.6678271428571428,3.274403,3.203338125,0.8248033333333334,4.598265,0.18072833333333332,0.18072833333333332,0.18072833333333332,0.18072833333333332,0.18072833333333332,0.18072833333333332,1.854516,3.904045,1.854516,1.854516,1.8217466666666666,0.18072833333333332,0.18072833333333332,3.2393466666666666,2.61482,3.347905,3.29679,2.317065,3.5543,1.3910442857142857,1.6733660000000001,3.394952,1.461492,2.8183666666666665,2.660540888888889,6.019643333333334,4.23705,4.12094,6.5654,4.561665,4.43892,3.690315,4.108935,7.3079875,4.034866666666667,3.7410666666666668,2.5114266666666665,5.29638,2.6203233333333333,2.1313325,1.8653166666666667,4.68187,5.55215,5.10935,5.26995,5.59695,4.438265,4.6877,0.7361554545454545,0.7184357142857143,0.7184357142857143,4.680805,2.3826933333333336,3.900395,1.0392442857142856,4.563445,1.4689999999999999,2.3164166666666666,2.5948599999999997,4.536766666666667,4.536766666666667,6.86205,4.48323,1.4079816666666665,9.985201666666667,2.95191,1.2535888888888889,4.99726,5.01265,3.773685,3.021955,2.78235,4.3670333333333335,0.7839733333333334,3.252636666666667,3.3060533333333333,3.8813333333333335,3.2574233333333336,1.5018399999999998,1.4625899999999998,4.640763333333333,3.215666666666667,3.0419733333333334,3.4471333333333334,5.285585,3.2862475,0.76305,1.7485600000000001,3.7249666666666665,2.172515,3.807733333333333,3.3867999999999996,3.1264633333333336,3.5428333333333337,3.0857466666666666,2.5384100000000003,1.0986533333333333,2.9965266666666666,2.5278633333333334,3.603385,3.234405,3.878325,2.71393,3.235113333333333,2.762975,1.534644,1.9705666666666666,2.859841904761905,3.567766666666667,1.839496,3.1369900000000004,1.8426833333333335,3.7292,5.33813,4.859336666666667,2.56055,2.5458,2.758375,2.4629925,1.6336142857142857,2.219755,3.3356785714285713,2.4219425,3.5281333333333333,2.938425,3.7826666666666666,3.096395,1.3039111111111112,1.2580675,1.7907,2.16662,2.952503333333333,3.4499,5.2011,7.61463,2.746895,5.2818,3.940925,15.640524666666666,0.4993605,11.092794999999999,0.85914,3.237595,2.530483333333333,1.9370399999999999,2.923645,1.5983420000000002,1.444156,2.49795,1.2315099999999999,2.796479333333333,1.98877,2.9374933333333337,2.1183333333333336,2.7394966666666662,1.5759400000000001,0.6402975,3.294356666666667,2.4705966666666668,3.10638,1.083018888888889,3.5574333333333334,0.7328183333333333,0.35534615384615387,1.98942,4.66892,4.493775,4.565565,0.7859627272727273,4.015235,4.681255,1.133615,2.371405,5.249193333333333,3.354735,3.77323,3.889085,3.90434,1.88488,3.940015,2.7161566666666666,2.918715,3.474425,2.7997,2.888545,3.87713,3.21579,3.56624,2.08604,3.366225,4.684675,1.2441633333333333,4.667655,2.2227775,4.01431,5.194976666666667,1.93119,2.7790199999999996,2.9623666666666666,6.014851666666667,2.4748,3.30485,5.21925,4.017333333333333,4.054865,1.82512,2.6575,4.507235,3.6167,3.966475,3.6178333333333335,3.1986333333333334,2.861416666666667,4.150566666666667,3.1338966666666668,2.6611166666666666,2.6799999999999997,0.43231277777777777,2.4026875,2.1560125,4.60493,4.7892,3.1299833333333336,2.8755366666666666,3.2230366666666668,7.91024,3.6262525,3.96917,2.979006666666667,4.02307,3.13541,3.6367891666666665,2.86882,2.19764,2.7451633333333336,6.41115,4.58062,2.1052733333333333,3.317305,3.025775,2.59878,4.656824,1.763438,6.100896666666666,3.818205,4.87298,4.78261,6.337,3.698275,6.747495,3.594115,3.29577,0.6569142857142857,2.3215475,1.5587175,2.9862933333333337,3.2024012500000003,3.98972,3.831295,5.3353,2.620913333333333,4.71862,3.6791666666666667,3.8626,3.2798200000000004,4.629915,4.542675,4.507945,2.591746666666667,5.62221,4.53689,1.4243966666666665,5.2581,3.53665,2.74598,2.25629,2.27943,4.522324,1.3052528571428572,2.36686,1.9749675,3.822445,4.295455,2.50871,3.28477,2.9138780000000004,2.54449,4.01568,1.317682,2.2602233333333333,2.37999,2.801826666666667,2.4887133333333336,2.6666899999999996,2.7238,4.0246,2.9680066666666662,2.7990766666666667,4.105935,2.398465,3.73694,3.60212,1.2922354545454546,1.2922354545454546,4.579105,2.8657,1.8591475,1.298235,2.20067,1.9950675,1.2560499999999999,1.5222133333333332,0.651602,1.6113366666666666,1.4888033333333333,2.9300200000000003,2.25316,1.8456400000000002,2.0196733333333334,2.3371033333333333,1.4558900000000001,1.8010933333333332,1.79765,2.5559,4.07659,2.86006,2.9404266666666667,2.685275,5.578049999999999,2.892775,4.206705,4.00058625,2.077655,4.09001,2.962375,1.91953,3.59917,2.1943625,2.839635,3.67225,1.98657,4.1485,3.798455,4.1884,3.3715333333333333,0.8257355555555556,4.97298,3.831475,3.32842,3.71201,2.36618,4.54694,4.78105,5.08263375,9.233128333333333,3.77113,4.434695,2.9528433333333335,3.65141,4.569695,2.60145,2.778125,4.126615,2.2457675,5.653404999999999,1.86511,2.733545,6.411491666666667,3.134183333333333,4.2776119999999995,1.2982185714285712,4.532285,4.737655,3.1531866666666666,4.6536,5.0394,6.34563,15.875914642857143,0.628929411764706,1.0674766666666669,3.2629333333333332,4.2577,3.659165,2.1465175,3.400395,4.059005,4.796295,2.538625,4.62371,1.7836166666666669,1.7836166666666669,5.37565,0.7596900000000001,1.7811240000000002,3.03255,4.005215,0.37599461538461537,1.9350533333333333,4.039383083333334,1.1466516666666666,3.0037933333333338,2.72466,2.939595,7.71587,2.5127966666666666,3.6279333333333335,1.9826499999999998,2.2529666666666666,3.9851875,3.52965,3.557735,7.269122333333334,1.987325,2.8644,4.53591,6.62281,1.9633666666666667,2.308683333333333,2.62092,1.35876,2.49115,1.7178,3.95217,3.74509,1.56485,1.9465013333333334,1.9465013333333334,2.80002,5.58155,4.13791,3.877685,4.48088,4.326425,3.24922,3.77187,4.273965,3.469595,4.330273333333333,4.020515,4.498895,0.885931,0.363033125,5.20115,3.872285,2.43138,7.98014,1.5250633333333334,4.7377,3.928755,0.362935,2.1105066666666668,1.30942,1.88249,1.9305,5.437278,3.2451,3.08092,4.91225,5.31125,4.594225,0.6009815384615385,2.058515,0.604894,5.817591666666667,1.510772,4.897915,1.98076,3.1811425,3.317585,4.052675,4.06717,5.1202,0.8728172727272727,3.099105,3.91766,1.908065,1.69559,3.723735,3.095855,3.77378,3.8487025,5.416904761904761,4.63527,5.6487,2.7521799999999996,0.6075566666666666,3.4565,3.751115,0.5620846153846154,3.865955,3.804375,4.080905,2.685405,2.6412766666666667,5.52185,3.178135,3.2855,2.169675,3.986225,1.6204740000000002,3.27184,3.743445,0.6032684615384615,3.94359,3.855335,3.164365,3.85001,4.33419,2.712565,3.82716,0.6302730000000001,3.06164,3.7516355555555556,4.61655,3.6185333333333336,2.57225,3.4674333333333336,2.57225,5.0225,3.13479,2.9742633333333335,1.5348133333333334,3.0716433333333337,1.80186,4.266895,2.887723333333333,5.22692,3.1598466666666667,2.7381499999999996,3.0390566666666667,2.383000892857143,2.383000892857143,2.383000892857143,2.2885033333333333,1.0575833333333333,4.544225,2.37176,1.6759266666666666,4.0822666666666665,2.4479533333333334,3.075606666666667,4.14734,5.39475,3.63156,1.94145,1.034862,4.094345,1.934082,2.2803733333333334,2.943985,3.300915,2.0485975,3.46642,2.745035,1.674092,4.83037,4.17432,3.461455,3.75038,0.7511822222222223,2.425733333333333,4.399915,7.563345,3.90807,3.02798,2.68861,3.44323,3.781705,1.64881,2.5031,4.6671,2.13451,4.32597,3.50263,5.47515,8.496073333333333,4.070875,3.76602,3.36293,4.723505,3.98759,3.3232575000000004,3.3232575000000004,3.997635,3.87235,4.112585,4.11051,4.17332,4.43161,4.04224,1.12653,4.256085,4.26132,5.34065,7.76884,5.1152,3.616985333333333,1.7343433333333333,1.4776033333333334,2.38850875,4.84779,3.908855,5.14559,2.32895,4.603935,5.10545,5.10365,4.82421,3.02983,3.72283,4.2104,5.28555,4.66523,3.87518,6.757876666666666,4.69618,2.3430066666666667,5.3256,4.06218,4.04282,3.75857,4.592005,0.7723254545454545,4.22287,4.5219,1.2112414285714286,1.256072,5.0963,4.72272,9.0138365,5.25875,4.59893,5.99815,2.9378,2.57546,5.0549,1.59287,1.59287,2.667835,1.6176166666666667,2.9342941666666666,3.2907100000000002,1.948045,4.151495909090909,1.3548866666666666,1.982775,5.7409025,3.3694216666666668,3.52341,3.04271,4.111345,4.091295,3.0076199999999997,1.0309055555555555,4.02166,2.88559,3.9687,4.167255,3.6634633333333335,5.37595,4.863075,4.78049,3.96232,5.3877,6.46905,4.689105,3.33071,3.524355,1.8759725,1.8759725,3.853795,3.744215,2.49842,2.7103066666666664,2.090734090909091,2.55693,1.8792833333333334,1.8792833333333334,4.488995,3.525225,2.126165,3.58179,2.707925,1.801735,1.204475,1.0603077777777778,2.668175,0.44607684210526316,0.8815544444444444,2.849965,3.857485,0.43311727272727274,4.112035,1.9551459999999998,5.4765,3.438215,7.3936275,4.321775,5.302193333333333,4.60325,5.1837,4.09451,1.873265,1.912626,3.97277,3.014365,3.766415,1.3801500000000002,3.38522,4.460605,2.656955,2.592345,2.544995,4.1851,3.358785,3.158225,3.846965,3.65155,3.40459,3.263715,1.0674685714285714,1.904865,2.279215,3.196185,4.25017,7.57766,0.90216,1.5579733333333332,1.5579733333333332,1.916378,3.920035,2.73259,3.06082,5.4931149999999995,2.9290866666666666,1.2867875,1.2867875,1.2867875,2.779805,2.934071,4.715695,3.23982,4.17714,3.37994,3.6498,2.983465,3.2464083333333336,3.685175,4.091565,2.89947,1.2560499999999999,2.948835,2.89947,3.67648,1.4416833333333334,1.95822,1.934935,5.596879333333334,2.893935,6.1706710000000005,5.596879333333334,3.276736,1.8086166666666665,1.8086166666666665,2.50633,5.25971,1.8086166666666665,2.05613,5.66779,2.475045,2.729045,4.48098,3.654135,4.22323,1.86984,3.148875,4.74204,2.1071633333333333,2.34136,3.92038,1.86984,2.4433,1.98229,5.95086,2.58461,1.11809,2.441685,3.27231,3.126186333333333,1.95282,1.940293,3.61584,1.8662313333333334,1.643635,3.27514,2.24622,3.2774,3.70125,2.2294066666666668,2.505655,2.04592,6.25222,2.23528,3.031455,3.35011,3.35011,8.839453333333333,1.0573733333333333,2.80974,2.51106,3.102685,2.327455,1.1664233333333334,1.1664233333333334,3.71147,2.303075,6.460175,1.959095,3.497905,3.44889,6.73185,2.69986,2.43283,5.189655,5.189655,2.30525,1.6204225,1.19396,1.19396,1.6204225,1.7960099999999999,1.2065533333333334,1.1899366666666666,1.4826300000000001,2.0529466666666667,3.796915,1.935775,3.13429,3.05277,2.803475,2.78526,3.03967,2.28976,3.322866666666666,3.322866666666666,6.01302,2.382735,3.00126,3.14828,3.47127,2.65674,2.798365,2.793195,5.7164275,2.0952025,1.4582030000000001,1.275763,2.170508,5.50044,4.011048000000001,3.44759,3.21568,1.83522,1.83522,1.83522,4.11862,2.43616,1.1899366666666666,3.187025,3.565815,1.255175,5.4537125,3.1340225,6.44279,3.7012,1.69431,3.49276,2.5929733333333336,1.999025,3.41596,4.00998,3.28386,1.589305,2.167545,2.793495,3.17937,5.13262,2.03588,3.412265,2.88528,5.85438,4.16159,2.05846,2.17849,5.63151,5.22182,4.98175,5.50267,0.97902,0.97902,2.5887160000000002,2.5887160000000002,0.859886,5.22537,2.79016,5.30482,4.43512,4.79391,2.213055,4.286875,4.286875,2.138585,3.366815,3.70299,1.22964,4.30255,3.25279,3.03678,2.72758,4.5519,2.384595,2.218745,3.347795,2.87196,2.985885,4.56942,2.62794,1.59246,3.55973,5.67169,5.36519,4.52208,2.86668,3.41913,2.81596,5.21666,2.68409,3.43117,2.50404,6.91025,3.94507,2.29072,2.43489,2.58431,4.61476,2.412825,2.85039,2.830695,7.29477,4.63873,3.11064,2.80509,2.23081,6.55981,2.956285,3.065075,4.82964,2.95329,3.00126,2.39824,3.03782,1.8839966666666665,1.96442,1.6382899999999998,1.73184,1.7835766666666668,2.0717733333333332,1.53831,2.15546,1.86796,1.8839966666666665,3.80149,3.75705,2.07797,1.63595,1.63595,3.8744733333333334,3.8744733333333334,2.8005066666666663,2.8005066666666663,3.017945,2.01853,1.71212,4.32573,2.2032100000000003,2.2032100000000003,2.3906325,2.3906325,3.09734,1.805575,4.40677,2.32635,3.194815,1.9606066666666668,1.9606066666666668,1.804725,3.92521,5.43075,1.4416833333333334,4.3527,2.2294066666666668,2.258965,3.71372,3.115935,1.841375,2.276115,6.86689,2.195945,5.93714,3.26298,3.48583,3.103995,2.643005,6.16188,3.05977,2.590535,2.5992042307692307,2.81456,5.27278,3.57689,1.520112,1.520112,3.57023,4.87909,4.70542,5.29931,2.750795,2.866975,1.853925,2.930645,1.813605,2.808725,1.95572,0.760694,0.760694,0.760694,1.9975208333333332,4.923183333333333,1.9975208333333332,2.4958,3.43084,1.63691,2.266255,4.46692,3.12614,5.09711,1.8039399999999999,5.0941,1.8039399999999999,1.8039399999999999,2.153895,1.77354,2.311505,6.15204,2.311505,2.50233,4.07333,2.182895,1.656035,2.67507,2.9898066666666665,3.1930891666666668,3.059203333333333,3.53545,1.3557566666666665,4.119735,0.7448681818181818,4.32613,4.249615,2.7508625,2.7508625,0.7443254545454546,3.961,2.6632266666666666,5.6256,4.994845,4.087315,5.2837,4.15147,3.959495,5.19735,4.113335,4.21495,3.861555,3.89657,5.10995,5.025,3.41826,3.39539,4.14307,2.4184466666666666,1.1922000000000001,4.383755,3.540125,3.418195,1.33551,3.802495,3.821955,6.26272,1.17012,5.3208,4.170965,2.183865,2.05599,3.20834,3.567575,1.67444,1.520112,3.937275,5.01255,2.790665,4.66949,3.0362,1.13971,2.93587,1.2220742857142857,3.10059,2.1138333333333335,3.1595833333333334,1.8885675,2.46369,4.16666,3.21347,4.50157,3.409545,2.2277625,4.98748,4.32527,3.069795,5.38555,4.24951,2.726226666666667,5.71435,4.86909,3.126231666666667,2.6367966666666667,2.734075,3.1746933333333334,3.0835933333333334,2.8506400000000003,4.710485,4.25783,3.75821,2.4310233333333335,2.6593566666666666,2.413603333333333,2.4927766666666664,2.29743,2.3399566666666667,2.31313,2.28182,1.38996,2.998419666666667,1.1834025,1.8470525,1.5970425,2.763,1.5312575,1.889585,3.890015,4.664355,1.959785,3.99961,3.77337,6.004398333333333,2.0448133333333334,1.59985,6.78595,3.217285,4.74507,4.11315,3.789365,2.072125,3.55022,2.4875625,3.020525,4.367585,0.7178141666666668,4.10134,2.14084,0.797050909090909,4.935605,4.40177,4.062365,1.7983357142857144,4.734155,5.5213,2.6770533333333333,2.743016666666667,2.4830566666666667,2.202463333333333,0.58463,3.1410633333333333,2.989275,4.827155,2.4488025,2.01118,3.697745,1.033175,1.799255,1.799255,2.824985,1.799255,4.068735,2.83416,4.459385,4.38079,5.8506,13.618915833333332,3.221083333333333,4.831165,2.740735,4.634385,3.124265,6.70574,2.929266666666667,4.710495,4.877915,3.80636,1.1372233333333333,4.648825,3.07807,2.6606466666666666,0.9888155555555556,2.1300625,3.322005,7.144465,4.342775,2.8388233333333335,4.59044,3.379633333333333,4.17081,4.573985,4.50684,2.88766,2.89064,3.95344,5.7762,2.450955,4.4226,2.041365,2.041365,3.12003,4.97077,1.13754875,4.141266666666667,2.2196125,4.56702,2.52547,2.4366766666666666,2.8770133333333336,2.3416633333333334,0.7074592857142857,3.500205,2.823933333333333,5.17435,4.7072,0.23600875,5.0736,4.53745,4.026295,6.783878333333333,3.08179,2.8733866666666668,2.1839866666666667,3.1038366666666666,3.0092666666666665,1.3786966666666667,2.8759766666666664,2.57828,1.3790733333333334,3.2960433333333334,3.06319,2.7186066666666666,3.107013333333333,1.36179,4.2525,2.286435,4.94368,3.96181,3.78302,1.6247299999999998,2.5416766666666666,1.2644725,2.040995,1.2644725,5.09625,3.559366666666667,1.5292400000000002,2.34932,4.050825,3.82638,2.947465,3.910085,0.35128550000000003,1.4236658333333334,3.84088,4.243145,6.2639,2.1034775,2.802376666666667,3.0089900000000003,2.4291233333333335,2.63485,3.62373,4.849485,2.4168975,2.3480433333333335,2.8383333333333334,2.6810833333333335,2.6422433333333335,4.328595,2.205755,4.32451,3.776440833333333,5.90175,7.697145000000001,0.7393933333333333,0.8164859999999999,4.097165,6.605315,1.9863199999999999,3.505945,1.4195216666666668,1.4195216666666668,3.458075,0.4449444444444445,3.551905,3.693615,2.667145,3.905335,3.26258,2.65659,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,0.236871,2.29716,3.05088,3.9246516666666666,3.162961666666667,4.4068275,6.023475416666667,2.84229,2.21901,0.9731516666666667,3.422675,0.68576375,5.334205,3.115195,2.15878,0.68576375,2.641705,2.681085,0.8734675,3.81117375,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,0.15828311111111112,4.2082,1.5567375,4.594495,4.421005,1.7262080000000002,4.821725,4.29306,5.376,4.889005,3.5121128571428573,3.310035,4.50511,2.074685,5.44266,4.424585,0.7506857142857143,1.4232928571428574,1.3586071428571427,3.3396666666666666,3.3396666666666666,2.99012,3.869065,4.517655,3.61737,4.02807,2.8496966666666665,1.9952966666666667,0.4302428571428571,4.096565,3.08717,2.70766,4.24806,3.2911,3.11309375,5.0107,4.562315,6.6058825,4.17641,4.565385,5.80335,4.39082,1.2967714285714287,3.09494,5.1947,33.49826589141414,1.252805,4.4202,3.03112,4.55261,4.089305,5.1397,5.096,0.4015290476190476,5.2895,4.49991,2.0200175,1.90054,3.91099,1.582035,2.512035,2.149685,1.7254825,2.86401,2.4274766666666667,2.82349,2.74103,0.6016792307692308,3.170585,3.770445,0.3703231578947368,2.5455466666666666,2.5854,2.73174,3.86521,1.846255,4.39094,4.0422,3.098745,3.6395,3.056195,4.27838,2.93425,3.894105,2.15611,5.1947,3.553135,3.271045,2.85728,1.766478,3.786485,3.465545,7.050926666666666,3.41637,4.832485,6.299237499999999,5.307513,2.291425,4.55386,5.989212500000001,7.58412,2.55506,2.46631,4.81046,5.600783333333333,4.389055,3.43387,5.372835,2.68355,1.66662,2.136975,60.06487115644504,5.02615,4.337175,2.619,0.8305580000000001,3.11673,2.89344,3.4383,0.8325222222222223,4.67883,0.7849644444444445,7.670967857142857,1.934082,3.4128666666666665,1.7506160000000002,2.72885,2.56019,3.03904,2.4157800000000003,2.29545,3.5338999999999996,1.5099600000000002,5.358345,4.0881,1.270245,2.91174,1.39081,1.5168125,7.65278,5.90675,3.503875,4.29289,5.2616499999999995,1.3978057142857143,3.480566666666667,3.16469,1.6069325,5.55935,3.57517,4.007695,1.713855,2.912605833333333,3.4705333333333335,3.94628,5.5776,4.54026,4.46377,2.509525,3.89992,4.5309333333333335,3.1799,1.44049,4.395455,3.3176366666666666,4.28916,5.01775,3.903535,3.903,4.750125,4.350235,4.3156,4.502045,4.035195,3.1792233333333333,3.943635,4.196825,3.1396,4.133615,3.749225,1.4669599999999998,1.4669599999999998,4.312165,4.788935,5.0915,3.673295,4.60388,3.4098333333333333,2.73429,4.59753,5.3905,0.7243772727272727,5.47105,6.8168825,5.56495,5.6575,1.1148666666666667,3.118,1.0442483333333332,1.0442483333333332,1.0442483333333332,3.66343,3.485,2.64473,3.4751,0.962216,4.992805,5.265,3.01681,1.5857375,2.09179,4.089355,3.87659,3.731,3.340118,6.76995,3.54912,2.52085,4.78871,6.9086,2.21878,4.11144,3.78742,3.27418,5.41775,4.106015,4.960675,6.16195,3.08904,3.729858888888889,1.7928866666666667,1.7928866666666667,0.7077436363636364,8.365663999999999,2.17355,5.91605,5.56035,4.19899,5.05175,3.68675,2.9936716666666663,4.76385,7.6683787500000005,5.709586666666667,2.2874866666666667,4.336825,0.988678,3.737465,2.0445733333333336,0.8754855555555555,1.2236014285714287,2.7340666666666666,2.9458966666666666,2.8115,1.14461,2.6521433333333335,3.08919,0.9219133333333333,2.788273333333333,3.1933966666666667,1.666734,1.751284,2.9995366666666663,3.0313966666666663,2.8382566666666666,2.483826666666667,1.7724579999999999,5.1463,4.425585,4.06584,4.347365,5.2573,3.24732,4.36942,6.4181,5.1545,4.26269,3.851185,10.59624,8.550625,2.884453333333333,3.46173,1.8454566666666665,3.823925,3.23275,4.415955,1.0423,3.912255,3.35463,1.52865,3.805515,2.9657899999999997,4.260885,2.893605,3.864275,6.5973,7.72256,3.965455,1.5252283333333334,1.5252283333333334,1.5252283333333334,4.83353,1.1688633333333334,1.4685625,0.47047555555555554,4.400763333333333,2.98509,3.615955,1.0199500000000001,1.20652125,3.04525,4.307775,3.796905,16.65790769047619,4.1137375,4.56245,6.135555,2.8497800000000004,3.59692,3.17832,0.9157166666666667,1.5355,3.858315,3.577,4.56667,4.596135,4.47219,3.85496,2.754665777777778,3.380205,5.29155,0.552995,4.68434,2.229065,4.5503,4.797865,3.5816,2.41369,4.004231666666667,1.82249,3.685835,6.28735,3.0299366666666665,3.4011,4.063475,4.11879,4.58871,3.898675,3.50717,4.27106,4.757545,4.857595,3.76156,4.59357,3.90641,1.15211,1.409185,5.917262333333333,6.19325,4.144415,4.95864,2.463305,2.7489600000000003,2.76702,5.616253333333333,1.9912325,2.005435,3.005326666666667,2.94131,3.3451,4.50149,3.142555,5.175296666666666,1.1501275,4.58302,0.969195,4.044285,3.32716,1.6841516666666667,4.481995,0.9569144444444445,5.0852,5.7006,5.0694,4.336455,3.8076499999999998,3.932995,2.99546,5.22705,5.95635,2.981883,4.033475,2.38614,2.639565,1.997745,2.53187,3.29059,5.09745,1.06032625,4.444125,1.330335,3.37219,1.6017333333333335,1.06032625,0.19852675675675674,3.731285,3.073205,2.266789583333334,1.94106,2.70544,1.1009475,3.96064,3.46889,4.760165,2.5922966666666665,6.20825,6.6363125,2.6929533333333335,3.4324666666666666,2.6686033333333334,0.82585,2.4945999999999997,6.22055,4.407585,5.5011,4.805695,2.07407,1.43494,4.0130075000000005,1.5956175,2.11999,1.7014675,1.743005,1.7501475,1.9776575,2.0213175,2.29946,1.797095,1.4626000000000001,1.3794025,2.040765,2.6796,2.2800975,2.2224866666666667,0.5303166666666667,1.24801,2.825976666666667,3.363633333333333,1.9812075,1.8046466666666667,1.55082,3.875635,2.2412199999999998,2.668145,3.20768,5.4599,3.77811,3.014943333333333,4.33507,1.666202720588235,3.66654125,23.66335,4.5919533333333336,5.85015,4.326015,2.25585,3.91296,4.76063,2.140995,4.97934,3.250716666666667,0.7976675,3.10506,4.62262,3.82667,4.104095,1.4669966666666667,2.0331533333333334,2.37432,2.18207,1.4845857142857142,3.4823,4.902115,4.252825,3.228185,4.018135,4.858905,3.52586,4.682465,1.2705625,3.22381,4.146485,4.91692,1.8060680000000002,3.2088,1.7739500000000001,1.7739500000000001,3.60749,4.6982,3.0051233333333336,3.05607,4.259755,3.852925,6.6241775,4.552125,2.274755,1.5355,2.72061,4.317995,2.9759333333333333,2.564550158730159,2.564550158730159,3.3881666666666668,4.905715,3.68879,5.071900555555556,2.35415,3.2797866666666664,0.6210466666666666,0.6210466666666666,0.6210466666666666,3.54627,3.800195,4.086476666666667,5.7121,2.513375,4.795095,4.91396,4.967455,3.31987,5.19635,2.536775,1.349852857142857,4.359705,3.90694,0.49383,4.22,4.827005,1.5879516666666669,5.1413,4.959275,4.62534,4.43847,3.856565,2.85598,4.502325,1.691338,4.38921,1.6064666666666667,4.2476,5.94335,1.1541225,3.117135,7.050815,3.70967,3.3310633333333333,2.2197025,3.852725,5.768,3.1089300000000004,7.716006666666667,4.094245,2.17332,3.1230233333333337,2.7404333333333333,2.5796666666666668,2.7650799999999998,1.8317233333333334,5.2154,0.6429366666666666,1.9032125,1.9032125,3.046015,3.71555,2.3165,3.117215,4.36551,4.9334,4.587155,1.3364500000000001,4.677718809523809,4.458085,4.81665,3.696815,4.060501166666667,3.5657885,0.49471266666666663,2.7220814285714288,0.96205625,0.49471266666666663,4.208325,0.8465,4.158685,3.880335,6.5788530000000005,2.1504733333333332,1.04165,1.137464,2.23755,2.9385833333333333,1.5569566666666665,2.4645766666666664,3.327965,3.745865,2.0505999999999998,2.3501566666666664,4.414955,3.21104125,4.045625,6.10515,3.44275,4.927745,6.685693333333333,4.676715,3.586805,4.43203,3.70731,4.49924,5.1025,5.93716,5.2777,2.377003333333333,0.998418888888889,3.756595,3.87784,3.962775,4.39121,4.158485,5.1556,2.6203433333333335,2.5017666666666667,3.0628833333333336,2.4802,2.1581733333333335,2.8835866666666665,3.1208066666666667,2.497383333333333,3.780215,5.4796,4.230305,5.3751,2.582996666666667,3.2858033333333334,2.89855,0.7102978571428571,4.12208,3.767025,4.55364,3.0344166666666665,5.494143333333334,3.17732,4.562545,3.971275,0.5944692307692307,0.5487978571428571,4.367165,2.7619015,3.095915,4.629595,4.488865,1.700646,5.3422,4.2577,2.6286133333333335,2.67156,2.33279,2.1325416666666666,3.514466666666667,3.2710266666666663,3.1241,3.0200633333333333,3.4949,2.639375,3.112826666666667,3.7648333333333333,4.386025,0.5276825,0.5276825,0.5276825,3.225180166666666,3.455633333333333,3.6591666666666662,2.753073333333333,2.9367033333333334,1.12653,2.9937666666666662,3.0427,1.8606975,2.6568533333333333,2.39216,0.9731322222222223,2.898375,4.687375,9.746607916666667,1.5169464166666666,0.6133390000000001,3.86673,0.6133390000000001,0.6133390000000001,0.6133390000000001,0.6133390000000001,2.1802575,3.910384,3.989025,4.977375,6.0358,2.8319033333333334,2.7815166666666666,2.9164262499999998,3.263605,4.83179,1.052475,2.327296666666667,3.09558,2.529506666666667,2.85717,3.651505,2.2034933333333333,2.378015,1.1622444444444444,4.93734,2.85034,3.41652,0.8668975,0.57756,0.57756,0.9092549999999999,1.7761524999999998,0.9092549999999999,0.9092549999999999,0.31192,0.31192,0.9092549999999999,1.4757933333333335,2.4933433333333332,3.102445,3.07433,2.58662,2.7014633333333333,3.24265,2.7721733333333334,4.521075,3.609395,1.89148,2.2385066666666664,1.7621125,0.17196493372606772,0.17196493372606772,0.17196493372606772,0.17196493372606772,2.49044,2.4480166666666667,0.885764,5.25935,0.7852972727272728,1.669228,4.5530225,5.2209,4.28581,2.74259,4.416245,3.849695,1.7266833333333331,1.1900625,3.83067,4.56781,6.3006,2.34389,1.37425,1.8972066666666667,3.0934933333333334,1.4870999999999999,2.7532766666666664,2.934336666666667,3.25672,4.40274,4.08095,3.0742,4.99793,2.41299,4.105465,5.76255,3.997765,4.119695,4.68311,5.288403333333333,4.125449166666666,3.0109945714285713,5.032086666666666,4.36086,6.56255,4.44624,4.52771,2.2753,3.00686,4.18549,4.855315,4.440105,3.858155,3.655415,4.020885,3.88402,2.47724,5.44095,3.547925,7.5136325,6.12465,5.88625,4.850735,1.4621142857142857,0.995433,0.6295146153846154,1.761356,4.828735,5.5114,4.007445,1.6507619999999998,4.175405,2.94128,5.0277,5.3713,6.160077,4.20448,3.105385,1.6273579999999999,5.2774825,3.953575,3.13496,1.714515,0.99793,3.80719,3.24606,3.515955,3.58653,2.268495,4.463475,1.5609566666666668,2.9492100000000003,2.385235,4.77277,6.0124,4.92754,2.2240975,1.52651,5.70335,2.9238033333333333,8.92252,2.906175,5.2209,5.86435,4.685335,5.3732,3.55838,5.23895,2.1998075,4.05897,5.0665320000000005,2.578825,4.2939,4.509365,7.12077,5.3216,3.2849866666666667,4.20356,3.849975,3.21104125,3.66743,5.1593,5.79545,2.547375,3.0395966666666667,3.3647666666666667,2.32919,2.475615,4.388,5.9065,5.17625,4.67119,5.0126,4.43332,4.949905,0.6475907692307692,3.091836666666667,1.2470414285714286,31.440432033385093,2.747875,4.5359,2.96958,4.64634,1.6796019999999998,2.528653333333333,3.06918,1.5345900000000001,1.5345900000000001,1.5345900000000001,1.5345900000000001,1.53459,3.40517,0.35511444444444445,7.800195416666667,0.35511444444444445,4.38629,4.927605,2.0191475,5.36875,2.920675,3.9984546666666665,2.3147333333333333,2.5209699999999997,2.7335933333333333,2.174603333333333,0.6293446153846154,2.61468,0.7536041666666667,3.294973333333333,2.1951233333333335,2.426932,1.1977716666666667,2.426932,6.1296,7.97584,4.760975,4.206585,5.55855,5.9671,7.42431,3.22367,1.44183,1.44183,2.4075,5.155,3.71422,4.530085,6.023443333333333,4.084985,2.61472,4.121915,3.44041,3.55532,2.22189,0.8259719999999999,2.62251,3.847615,4.0416,5.2108244444444445,2.0099525,3.66872,1.250626,3.258025,1.210996,3.3795333333333333,3.05172,2.6320433333333333,3.3115,2.73907,5.0211,0.6914184615384615,3.482005,3.631933333333333,2.661773333333333,2.368723333333333,4.1621625,3.4904666666666664,2.03966,4.85865125,3.57753,4.986695,3.954115,3.566825,5.75435,5.02285,2.2360366666666667,5.64205,2.3694438333333334,1.8351133333333334,3.1198266666666665,2.5896966666666668,3.024846666666667,2.48069,1.8169266666666666,3.3165104090909088,4.298655,3.1874712499999998,2.4353700000000003,2.4353700000000003,2.523455,3.88147,4.070535,0.7024363636363636,3.24256,3.344395,9.0561,0.8708836363636364,4.38611,3.81847,5.49115,3.74374,3.76928,2.290995,4.10997,2.833075,5.70115,2.748241666666667,0.9578225,3.87129,2.7414366666666665,3.731865,2.4863633333333333,3.64994,3.782925,3.93637,5.284063,3.284615,2.118605,5.2201,2.56881,4.58711,4.766015,4.756815,4.477275,4.00479,2.968425,2.1725033333333332,2.8919200000000003,2.62307,2.7495500000000006,3.1991833333333335,2.7209280952380954,4.9688099999999995,2.947086666666667,2.5799733333333332,6.694826666666668,5.190578333333334,3.84785,3.136696666666667,3.8285666666666667,4.0931,3.445365,2.0583325,3.8491375000000003,5.0545,4.79042,1.4685766666666666,4.08672,2.5451466666666667,6.9110949999999995,4.78339,8.932524444444445,4.136135,3.722855,2.1428,4.13891,5.7164375,7.80547,4.19003,5.80957,3.74327,3.271715,3.80215,1.763438,4.324642,1.4349166666666668,3.674615,4.63047,3.4191333333333334,0.8399,9.128723333333333,1.2354888888888889,1.943425,2.45159,1.86686,3.4964333333333335,1.35437,3.68717,3.655335,2.3804933333333334,4.301,1.2026675,3.74342,1.3853466666666667,3.0169055,3.894335,5.63545,1.6303375,5.901047083333333,2.4651696666666667,8.03954,4.421465,2.8356,3.98351,3.3464,1.2319020833333334,7.70753,3.0746,3.298845,2.43452,4.118545,2.145525,3.0199425,2.17079,4.02676,1.34212,5.6163,2.77958,4.157665,0.813189,1.9074213333333334,3.789655,5.1073,5.20801875,1.524578,1.524578,5.8067,4.422935,5.4415,3.8081,3.40702,8.586885,4.493885,5.54485,4.100325,2.46001,2.2483413965693804,0.37159749999999997,0.19869548387096775,0.61671770609319,1.2600261904761905,0.6614083410138248,0.19869548387096775,1.4120125000000001,0.41802222222222224,1.6316236904761905,2.02873020609319,2.0321475,2.2494075,2.2810266666666665,5.2662,6.375323333333333,5.02695,5.4163,4.708535,5.09325,1.2333066666666668,5.0033,3.955425,5.74715,5.1254,5.0771,5.7606,5.86075,5.5281,1.31956,1.4079542857142857,1.877158,6.062937,1.332492,5.3833,4.875855,7.027258333333333,4.946605,5.55245,4.641035,4.677635,2.6025,5.41505,5.3699,6.28121,5.1785,6.159159166666667,5.6707,3.81789625,4.317545,3.778866666666667,0.991789,3.6862666666666666,4.360865,1.2263225,3.646333333333333,5.06575,4.441955,4.957545,2.506175,3.189835,2.8434399999999997,4.69861,2.2080825,3.78969,1.28382,3.230955,3.77638,4.046105,4.220855,3.361545,0.6036316666666667,6.23945,1.0044625,3.822835,3.079776666666667,3.718925,2.05093,3.81977,3.783188205128205,3.3409,4.47733,15.47016676190476,5.30613,2.1586075,8.26105,1.4657925,3.77529,2.944646666666667,2.7786933333333335,2.114263333333333,0.21039521739130435,2.7826466666666665,4.36419,1.786768,2.2276000000000002,3.3968000000000003,1.848735,2.2719,1.5834285714285714,3.52615,4.76506,4.672645,3.19232,0.45373714285714284,2.360603333333333,4.71479,2.81107,3.93407,4.50333,4.319835,5.44135,0.47758882352941173,2.4786333333333332,2.4786333333333332,5.23445,4.77891,4.82241,2.690975,3.6649666666666665,2.8782300000000003,5.07265,3.621475,5.498823888888889,4.56322,4.46913,4.964435,2.690575,1.9014060000000002,4.35899,4.11189,3.974895,3.55588,1.8085920000000002,4.556615,4.436055,3.78339,4.596425,3.83472,4.05446,0.6247433333333333,3.082495,0.6716875,3.1953833333333335,3.519465,4.227215,17.92556523809524,3.58764,3.826425,2.5929733333333336,0.9525925,2.16569,2.5831933333333335,1.54745,2.34732,2.45621,4.644655,2.253546666666667,3.842545,4.547055,2.1113725,4.4612,2.8453933333333334,4.691225,4.98062,5.3803,1.71196,1.68368,2.143955,4.878,4.810875,1.1465222222222222,5.253,4.020515,5.64135,4.753975,1.7126866666666667,4.58739,3.486645,3.770725,3.998375,4.238095,3.17768,0.59154125,7.766831666666667,1.4791940000000001,0.20402833333333334,0.20402833333333334,0.20402833333333334,4.99097,4.08258,2.7037766666666667,4.22192,2.93719,4.0859,4.419422857142857,4.270025,8.387535,3.981785,6.786631666666667,0.9273225,0.81460625,2.33431,4.38174,4.26551,2.2418299999999998,5.2198,5.61525,3.46027,3.488015,4.40531,2.2882233333333333,4.97314,4.76047,2.3381933333333333,2.9765099999999998,3.064666666666667,2.701105,6.03505,3.766495,0.6646892857142858,3.57713,3.65276,4.138445,5.001423333333333,4.85987,2.945235,5.44475,3.65633,13.608714583333333,4.836185,6.961926666666667,2.53687,6.399544,4.339145,4.11546,2.0616825,2.2918345833333333,9.62637,2.29549,4.348633333333333,4.165233333333333,3.710233333333333,3.1861266666666666,3.0511133333333333,2.101835,2.1943775,2.9991466666666664,1.791768,3.9820666666666664,2.3757066666666664,2.5965700000000003,3.430066666666667,3.5994333333333333,2.432,2.432,2.48551,3.615,3.4561333333333333,2.1969866666666666,3.248893333333333,4.197633333333333,2.7279033333333333,2.80176,3.8668333333333336,2.358493333333333,2.0204675,3.9201333333333337,2.8753166666666665,1.6186019999999999,4.187166666666667,2.340203333333333,2.560783333333333,2.89404,2.2343,3.5398666666666667,5.755565,2.447366666666667,3.875633333333333,1.92616,10.440615333333334,1.9775466666666668,1.7137266666666668,2.06764,1.037721111111111,1.5957219999999999,4.56766,2.7850780000000004,2.7850780000000004,1.6548500000000002,1.5125766666666667,3.4855333333333336,3.78449,2.1831833333333335,1.5074416666666668,1.653434,4.655030666666667,3.6559333333333335,4.004066666666667,8.45015,2.95761,2.46237,3.26953,4.2683,2.0204675,3.2491833333333333,2.73673,3.5452999999999997,3.512120833333333,0.8763175,3.3036585,3.013533333333333,2.8026466666666665,4.007535,3.31005,0.6696718181818182,1.8581819047619046,5.3105,2.542193,3.341333333333333,1.5527316666666666,1.5527316666666666,2.07622,3.712666666666667,0.965954,2.2173625,4.493773333333333,4.493773333333333,0.6434142857142857,5.904406,3.51509,4.025365,4.77204,1.23617,3.3044700000000002,3.6008,5.186754166666667,5.590991,2.3084233333333333,0.660187,2.5660866666666666,2.6222166666666666,3.055148,2.2182066666666667,2.3915633333333335,2.9435933333333337,2.3430875,2.4903233333333334,0.7990018181818183,5.08635,4.972794,1.3012483333333333,1.7117,5.5749,2.15001,1.61388,4.111235,1.400002,3.476885,2.6228,3.6516,8.905459166666667,4.64319,4.469895,5.2318,2.408614,0.790502,1.922242,6.806566666666667,1.7427166666666667,4.21808,3.82388,3.54505,21.389306833333332,3.2212433333333332,1.33331,1.13829,3.1034666666666664,1.5497266666666667,4.2776119999999995,5.24115,3.3387915,3.3221433333333334,1.47225,1.4598683333333333,2.8973166666666668,0.580859375,3.7020666666666666,3.6424,3.1312800000000003,2.5923136666666666,2.5173466666666666,2.8359,1.95439,3.0568733333333333,1.668518,3.807933333333333,1.5244183333333332,3.95409,3.89809,2.2788233333333334,5.3918,3.23371,3.96838,5.25365,4.540995,3.09647,2.9470333333333336,2.322506666666667,1.06969,1.06969,1.06969,2.4482775,3.3317033333333335,2.694266666666667,2.55993,2.3156966666666667,2.0123425,3.66815,4.731665,3.74732,6.58647,3.17074,2.591875,1.8970475,0.9495533333333334,2.482346666666667,3.96553,2.4718433333333336,2.642516666666667,2.366033333333333,2.3402866666666666,2.618256666666667,2.8004766666666665,2.7917466666666666,2.74373,2.2721433333333336,3.248193333333333,2.0632266666666665,2.169245,1.694315,1.491245,3.0443166666666666,2.9309766666666666,2.043055,3.90969,5.2668,2.9080866666666663,2.452828653846154,5.440426666666666,4.159895,4.770515,5.45885,4.6508,4.27987,6.3537525,1.20390375,4.21935,2.63972,5.1849,5.0139,3.60346,3.6295,2.2336725,7.54546,3.60992,0.8331333333333334,7.36213,4.97742,5.684238333333333,4.5385,2.95206575,1.75592,5.0451,4.20414,4.350585,5.05235,2.436585,4.20403,4.540235,1.7621125,3.92375,2.8851,1.3686916666666666,4.737065,0.6234647058823529,4.008986666666667,3.54534,4.52428,3.05433,1.664135,3.51011,1.937555,1.49515,2.7559566666666666,3.172703333333333,3.246926666666667,7.196268205128206,1.78007,6.422570416666667,9.606885,6.2090275,2.99369,1.354072857142857,2.92432,1.354072857142857,2.8341433333333335,2.1157733333333333,0.26671764705882356,1.1316888970588235,0.26671764705882356,0.26671764705882356,0.26671764705882356,1.1316888970588235,1.1316888970588235,0.26671764705882356,0.86497125,4.12985,3.528065,3.274215,3.35711,3.43021,3.98601,2.8899380000000003,1.6283280000000002,6.788315000000001,2.8603366666666665,4.00669,2.6347533333333333,1.0344545454545455,1.2207425,4.516045,3.54661,1.138011111111111,1.4565519999999998,0.7596736363636364,3.0332892467532466,4.19865,4.96039,3.5307666666666666,5.4364625,0.59818,4.34859,3.068375,3.059506666666667,2.4766266666666668,3.7952333333333335,2.51825,2.845133333333333,2.6882699999999997,3.054005,3.72531,5.15135,5.0174,2.26174,4.931845,4.428015,3.17074,3.802105,3.51402,0.34853799999999996,4.882705,3.57203,3.095005,3.11475,4.21085,3.832535,1.92948,3.066795,3.87883,8.873194999999999,4.87345,5.38845,4.62906,3.9368825000000003,1.0647575,2.176755,2.21747,1.35842,1.8217466666666666,4.945155,5.4071,4.081305,5.1193,3.340118,2.6302849999999998,0.9270833333333334,3.980565,1.2358466666666665,1.1503216666666667,3.224775,3.67119,4.71733,1.2806625,2.458396666666667,8.788086666666667,3.1079399999999997,3.0655416666666664,0.896215,4.101015,12.26959,3.419715,4.24343,3.175995,2.875465,4.536025,5.03865,2.06996,4.40198,0.5887453846153846,4.696245,2.22093,1.6591875,1.6591875,3.5399333333333334,4.26415,1.52598,4.134095,1.2762957142857143,3.77747,2.7145591666666666,3.3633,4.83037,3.51333,3.8675976666666667,2.68095,2.7268426666666667,2.7268426666666667,10.975415,0.713544,2.72231,3.2213733333333336,2.13145,1.999625,0.8861,1.419765,1.1086,2.00746,4.752225,2.503065,4.195965,2.0714466666666667,4.007945,3.979515,1.6896166666666668,2.013815,1.0432333333333335,5.988541083333333,2.0259475,2.147835,1.675334,1.755614,1.13829,2.461638333333333,3.569185,2.3067733333333336,3.12644,2.52577,2.6926166666666664,1.7978066666666666,3.09258,2.5125766666666665,1.5995166666666665,1.8629033333333334,2.6581233333333336,2.5631366666666664,2.4244833333333333,1.1123800000000001,2.5033600000000003,1.98349,2.4374933333333333,0.3143078947368421,0.3965,2.3365,2.1891333333333334,3.06007,3.0807166666666665,2.738235,4.92053,5.5077,4.406375,4.62006,4.413005,3.997745,2.7623599999999997,3.811,0.711760909090909,0.07453772727272727,7.01175,0.07453772727272727,3.301305,3.003885,4.98746,3.560435,6.2555,4.613765,2.0454333333333334,2.4802500000000003,0.930815,4.907835,6.1913,3.084146666666667,5.32405,1.9086625,3.5202,1.94803,3.0372733333333333,3.190443333333333,4.03955,4.879308333333333,3.311385,2.1085066666666665,2.1085066666666665,4.07039,7.74399,3.403595,2.159996666666667,2.36945,4.47537,3.050435,4.898095,3.562495,1.0251955555555556,4.22062,2.666183333333333,2.7234033333333336,4.22464,1.0913533333333334,2.449786666666667,3.99764,3.47186,4.844755,2.91797,2.87791,3.892595,3.94206,4.31681,4.82761,4.10851,3.2225686111111114,3.76923,2.8842466666666664,2.8324266666666666,2.6298966666666668,3.9391,4.37814,3.0891566666666663,5.0599325,4.304385,3.70519,5.46965,4.366345,3.455155,1.431156,1.40205,4.056025,3.4953000000000003,1.53212,2.7571133333333333,3.188105,3.213896666666667,4.061742222222223,3.1747099999999997,2.3460349999999996,12.650227944444445,2.29493,1.8393640000000002,4.504145,1.005438,3.17752,3.71034,4.629795,2.977415,1.2027666666666665,2.2944166666666668,2.5922966666666665,1.484496,4.455955,0.9553775,0.9553775,3.572716666666667,1.5544366666666667,2.0182800000000003,1.6868975,3.197895,4.86356,2.05427,2.741375,3.42843,2.756766666666667,2.8960166666666667,2.02688,6.19605,5.3814,3.535795,0.7034607692307693,4.116985,3.582655,1.0096545454545454,5.4447,3.3617666666666666,8.423916666666667,4.931365,4.667765,3.61756,1.46431,3.121745,4.756635,4.682385,3.9604,3.415595,4.314155,3.64143,3.5178,3.5178,4.235885,2.7001516666666667,4.161455,1.81389,5.482980416666667,5.296591666666667,1.5879516666666669,4.69613,1.05989,5.6585,3.88596,4.791455,4.641705,4.13673,2.62875,2.569075,4.176825,4.261015,4.882485,3.9833,1.750105,1.383588,4.26611,2.0959600000000003,5.4069,3.035075,3.70799,7.33416,4.015815,4.442735,5.1683,3.9683,4.77289,8.267779999999998,3.9754,3.173365,9.490404999999999,3.7286,0.6011128571428571,2.0505156776556777,4.63758,0.6004793333333333,4.8154,4.16431,4.69756,4.532955,3.23506,3.41395,4.535155,4.730565,2.595925,0.6979428571428572,4.610195,4.426975,4.304015,4.212375,2.8512066666666667,4.31466,3.529085,0.700622,3.504405,4.05333,2.47021,3.1543733333333335,4.008335,2.2161408333333337,5.46495,5.14355,3.8609299999999998,0.8826125,3.2092533333333333,5.678605833333334,5.678605833333334,8.507813333333333,2.0184,0.8814125,0.8814125,24.125113333333335,2.57105,7.617893333333333,0.362935,1.30942,3.1351933333333335,1.0049,3.70644,3.794585,2.1972575,2.1972575,4.19403,4.71058,3.67364,2.6918466666666667,2.6918466666666667,3.56433,4.19769,3.843385,3.4967333333333332,2.097776666666667,2.502337916666667,3.937691,2.074875,3.60071,2.8751833333333336,2.8850089285714287,2.8850089285714287,3.31062,0.8506977777777778,2.5433933333333334,1.5146466666666667,3.3491666666666666,2.8285766666666667,2.8737333333333335,2.622126666666667,4.71131,2.36551,3.064166666666667,5.95328,1.336482,2.236985,3.129085,2.45825,4.0801,5.787965317460318,1.3972966666666666,3.7124333333333333,2.4252175,5.09187,6.37924,1.568195,4.90099,5.032698,3.2629268571428574,4.597,1.0564085714285716,1.8060680000000002,3.00013,3.8403147619047617,1.3243883333333333,2.3671825,1.58018,1.860116,2.17864,3.71441,5.3001475000000005,1.0455816666666666,1.4015014285714287,2.8706099999999997,13.34822,4.4407733333333335,2.74338,1.1608628571428572,2.5966204761904765,0.9781371428571429,3.18553,3.9216816666666667,5.0424,3.4514666666666667,5.4551,1.390955,3.6836333333333333,3.96146,2.802073333333333,3.985858888888889,1.9801766666666667,1.0415455555555555,2.4534466666666668,2.856173333333333,6.691536666666667,2.955180857142857,2.568983333333333,0.723177,4.7377,3.5483333333333333,1.194546,5.759269166666667,2.0302025,2.1989,5.47335,1.2786777777777778,3.03693,1.0031181818181818,3.109863333333333,4.25141,2.96846,3.0399966666666667,2.1979666666666664,2.5582333333333334,4.58758,4.68735,5.0726,1.69982,4.52139,4.006645,4.353723333333334,3.3379380000000003,2.3643,4.121556,1.018886,2.851111904761905,4.191755,2.72095,4.117979166666666,1.361375,2.7794266666666663,1.952102,1.952102,7.6636050000000004,3.1480633333333334,5.551650833333333,3.4009850000000004,1.7389299999999999,2.7497390476190477,4.5467450000000005,5.7541166666666665,8.237843333333334,4.791277333333333,2.62581175,1.7800633333333333,1.9567778333333334,4.012823333333333,3.79338,1.49565,2.0168075,2.349123392857143,1.229045,3.1561,19.32433633333333,3.1668766666666666,2.8929633333333338,3.005133333333333,2.96603,2.584146666666667,2.1348,3.2994966666666667,3.6563,2.558246666666667,2.5983199999999997,5.631578,2.42505,4.450958857142857,2.762696857142857,2.375998857142857,1.4160966666666666,3.789485555555556,2.1386525,4.03585,4.84823,3.92305,3.4201991666666665,3.1720633333333335,2.28931,3.5370666666666666,3.7132,3.4231,3.3111333333333337,0.8332672727272729,5.36915,2.465615,3.233,2.793508888888889,1.9821825,2.16276,2.16276,3.363903333333333,1.9070183333333333,4.82057,4.364675,3.61198,4.49648,4.851585,4.638915,4.638915,4.02768,3.0313033333333332,4.66158,2.866925,1.6691880000000001,2.4275966666666666,4.492455,3.99465,2.830375,3.718865,5.3873475,3.7451333333333334,6.43757944047619,3.05297,0.876508,0.876508,3.36373,4.790095,3.85461,3.3372580000000003,2.39283,1.7988166666666665,1.6502800000000002,3.03049,5.85643,1.4872883333333335,3.901195,3.6818666666666666,3.86341,5.25345,4.9845,4.772306625000001,3.27945,2.2639325,4.323015,4.055815,2.09347,1.1007099999999999,3.98454,2.7638,6.196233333333334,3.4324333333333334,2.673885,3.29152,3.7106,3.63624,4.573765,3.03443,4.51596,3.89474,4.2267,3.766085,3.538685,3.552135,4.143935,2.7118333333333333,4.53903,3.17747,4.771925,0.6139022222222222,2.3239575,1.850195,2.193685,1.8535225,2.619013333333333,2.684336666666667,2.25911,4.36264,5.69629,1.8414866666666667,4.05488,4.34998,2.41735,5.587623333333333,3.9645241666666666,4.52142,5.0028,7.212113333333333,2.08211,2.8864533333333333,1.81085,2.8210633333333335,1.759765,1.738065,3.994585,3.64659,5.3888,1.0085133333333334,3.02153,4.21011,2.2413275,5.15545,3.677355,2.57356,3.7288666666666668,3.28555,2.037555,1.884389,2.529175,3.195,3.338325,1.965195,2.924017142857143,2.924017142857143,3.573,3.4611,20.21962023809524,1.0978066666666666,5.364043333333333,1.83001,1.9139,3.640265,3.733765,1.8914825,3.723335,4.441135,1.3693166666666667,1.3693166666666667,1.1952366666666667,1.7300033333333333,2.3813999999999997,3.1571766666666665,4.568978333333334,3.59695,3.4639666666666664,0.48716210526315795,3.3928221052631575,1.98587,2.21505,4.56597,3.38644,4.053695,3.548405,4.592635,4.43433,2.052365,3.661895,5.600783333333333,2.227355,3.4769,5.20995,2.27981,4.795705,5.93785,1.3330028571428572,1.9294160000000002,3.6063333333333336,0.7462557142857144,3.171943333333333,3.272995,4.79506,4.944675,2.7736688888888885,7.755269999999999,2.9567200000000002,2.758793333333333,0.4294976470588235,4.25593,5.362717857142857,3.2522357142857143,5.4723,3.793975,2.489319777777778,1.7693059999999998,5.35741775,4.257685,4.27635,2.833425,2.01767,3.787025,4.0334666666666665,2.9455333333333336,1.9340825,3.9482141666666664,6.2373775,2.720155,3.794155,3.521905,3.946875,1.577,1.577,3.2306966666666668,3.0590833333333336,4.69192,4.86537,6.7227,3.261525,2.90275,2.174515,1.5715866666666667,1.3665857142857143,4.878495,5.6325875,5.2051,5.84025,4.34646,6.5863700000000005,3.96811,2.8351733333333335,3.910779333333333,2.229156666666667,3.0518632500000002,1.6752340000000001,4.28269,2.3544899999999997,3.85555,5.1583,4.05764,2.7620833333333334,2.9238033333333333,1.3910442857142857,2.509825,3.7791,2.098,0.579763125,3.11158,2.668616666666667,2.497383333333333,2.3663666666666665,2.0310875,1.565434,0.685710909090909,0.685710909090909,3.5543333333333336,1.7522125,2.4291625,3.01278,5.902,4.042805,6.06745,4.455625,4.3925,2.064994,1.2221133333333334,2.550395,3.520895,0.9408475,3.2496774999999998,3.016005,2.993295,2.253615,4.005605,2.68968,2.07609,1.0135657142857144,3.269105,7.83512,3.501005,1.5753635714285714,4.344885,3.43024,2.80785,3.50966,2.78845,1.7639066666666665,1.040745,3.764205,2.428541666666667,2.2273533333333333,1.64861,2.3312566666666665,2.2645133333333334,2.4855633333333333,2.8773987500000002,1.2849533333333334,1.8905566666666667,1.0226325,6.09603,5.765,5.8653,4.113985,4.73912,2.9982433333333334,1.7209158119658121,4.82041,4.920725,2.548235,5.3346,2.04898,4.63462,1.0018855555555557,3.99181,3.99584,1.8919125,7.71538,3.537855,1.85399,1.8783375,1.801425,2.547075,3.4369333333333336,1.2482005844155843,3.088063333333333,5.694,3.42384,3.97935,5.47125,5.4316,5.66175,0.89677375,4.187615,4.383855,4.204555,4.77567,3.7099,4.6354,5.1066,2.905005,1.5596050000000001,1.5596050000000001,5.22275,6.149716666666667,3.27265,2.6266366666666667,3.985805,4.60191,1.5391759999999999,4.314875,5.5407,3.564995,4.00424,2.8950766666666667,2.920363333333333,4.97372,2.4082391249999997,10.639716022046581,1.9541700000000002,0.78867375,2.5741666666666667,1.72127,2.50325,2.2208575,1.882642,2.8526233333333333,5.13055,5.52215,2.9839599999999997,1.69775,6.4970992857142855,1.4206885714285715,3.162293333333333,0.5226190476190476,4.117290000000001,5.62425,3.619315,4.75542,11.23292,5.40015,3.1640866666666665,3.3683666666666667,4.566005,3.215593333333333,4.755025,0.89743375,1.076945,0.80138,5.7163,4.16783,1.864638,4.739781333333333,4.474765,6.6289,4.86448,4.976625,4.36439,6.1435,3.95614,5.00935,3.29903,1.196072,4.245445,5.40655,2.73721,4.039985,3.189925,2.61771,1.223085,5.0479,3.937615,1.2531375,3.5713000000000004,2.9550699999999996,2.4570366666666668,2.4516266666666664,2.50143,2.896646666666667,0.7078354545454546,2.363766666666667,2.6552533333333335,2.616686666666667,1.93407,3.0867533333333337,1.86964,1.4277766666666667,2.4273925,2.008945,2.0968425,3.3111766666666664,2.9027733333333336,0.675129,2.7885299999999997,3.28002,4.593765,2.35512,3.813415,5.62275,5.1074,3.475735,3.936125,1.3586071428571427,3.311285,2.5915077777777777,4.315216666666667,2.78876625,4.69644,5.26915,4.884865,4.263175,4.303166666666667,1.090708,1.090708,2.2592809615384617,1.6810625,4.120965,2.630544,2.630544,5.019,5.88455,3.07405,1.234945,1.6174857142857142,5.9251,3.504915,2.4770666666666665,3.273305,2.82225,3.23522,2.4770666666666665,4.47822,3.29944,3.1131675,2.826315,1.96848,3.05883,6.7013,2.859365,5.02635,4.69621,6.81275,6.12795,6.67695,6.67695,5.5715,4.82499,0.4942984615384616,5.1869,4.880475,3.02621,2.898755,8.194801666666667,2.8784033333333334,4.192225,3.753995,2.9273666666666665,4.69615,2.245765,3.336785,3.1539866666666665,3.6555666666666666,2.43643,1.33072,1.33072,3.62401,3.84228,4.803675,1.761356,1.5189,48.06076295454545,2.54266,0.8585454545454546,3.1657766666666665,1.8404225,3.24478,2.833536666666667,3.1454633333333333,2.931875,2.7189300000000003,2.052563333333333,1.0284375,4.6401,3.190855,3.5274,3.907405,5.2632,5.05215,5.04225,5.3655,5.50465,4.78364,5.61885,6.19514,4.99454,5.5252,2.1124825,3.83373,6.7733,5.31515,3.383325,4.14577,3.25665,2.32661,3.95546,4.633355,2.95658,3.9739,1.62816,4.22925,1.317682,3.272965,3.865395,3.52201,6.5090224999999995,4.096105,1.9641925,4.09503,3.79289,3.9306,0.8821325,2.6839,2.838925,4.464060952380953,1.150055,4.66532,1.3036925,6.04535,0.6938144444444444,3.89747,10.134693333333333,4.608405,3.538385,3.37964,1.9025833333333333,4.31537,5.47355,3.0570866666666667,4.483735,9.2754225,3.3933,2.0061566666666666,2.75421,2.783,2.7471666666666668,2.779090083333333,2.34576,2.5542166666666666,3.00459,2.6879000000000004,3.027393333333333,3.434595,2.2703133333333336,1.5394933333333334,4.783471333333333,3.9044000000000003,2.6104,4.920899333333334,2.8850766666666665,1.0661275,2.1806675,2.878913333333333,5.361215,2.819975,2.119777222222222,2.119777222222222,1.619225,1.6582325,2.1602,1.92851,5.898505,4.5123025000000005,2.2057725,2.8993066666666665,3.5452999999999997,2.1243725,0.56765,2.7010166666666664,1.91183,0.5553030769230769,3.895305,2.4489875,2.63405,3.76278,3.569615333333333,2.4132599999999997,1.5756533333333334,1.1512233333333333,2.11712,3.536825,3.72562,4.214510000000001,2.78086,4.05061,3.74429,1.099909090909091,9.4114,2.630685,3.40207,1.2616875,2.725163333333333,2.41837,2.41837,2.41837,5.09505,5.53765,1.590815,5.32305,1.39849,5.599806666666667,1.58749,4.243195,4.234315,4.214475,4.927405,4.68314,1.889015,8.588875,3.92661,5.0355,3.54225,4.088838333333333,3.20701,3.0398633333333334,3.78044,2.568773333333333,4.292286428571429,4.462535833333333,1.55111,4.003125,1.55111,3.6396,4.439895833333333,5.1260425,4.439895833333333,1.8202233333333335,5.72155,4.551605,4.36161,2.786576666666667,2.970556666666667,4.243865,3.16406,4.988535,0.5080992857142858,2.994616666666667,2.9932533333333335,5.227563333333333,4.793,2.3900075,4.810875,6.30252,3.32006,2.935935,2.796,2.23048,3.968945,4.105995,4.59086,2.67671,3.827565,0.8583489999999999,5.337,3.360825,4.164595,2.3676633333333332,3.03635,2.32002,2.7340633333333333,2.74342,2.7681233333333335,3.114765,2.501525,2.501525,4.5108625,3.13202,4.533615,11.551662499999999,0.9651255555555556,4.6179,2.5159966666666667,2.27673,2.7243733333333338,1.4685625,7.2090293333333335,3.411566666666667,3.797755,3.8436000000000003,2.193026666666667,3.942,4.490816027777778,2.5230633333333334,0.4432872222222222,1.547544,1.5011625,5.01265,2.77189,3.23319,3.745475833333333,3.4278808333333335,2.445575,5.1354,4.58599,3.725005,4.594185,2.173485,3.97218,2.5254533333333335,5.47888,3.120145,5.0863,4.20922,4.122045,4.247115,1.93529,3.867485,3.6853,3.165506666666667,3.569765,2.912125,3.168405,3.70608,3.167505,2.648496666666667,4.59573,1.6445166666666668,3.624685,2.88364,4.36473,4.25901,3.7311,4.89526,2.51328,4.16894,5.34405,4.029755,3.2414733333333334,2.21177,3.002715,2.408045,0.8595633333333333,4.51312,2.11579,3.4168,2.787585,4.136665,3.31486,3.07822,3.132155,4.19011,4.586943333333333,4.108285,2.90853,1.6903866666666667,3.55163,2.429525,0.9527522222222221,4.24222,8.882825,3.50363,3.646455,4.16406,4.81846,3.77539,2.10182,4.0661,3.970975,3.192365,3.22555,3.738505,0.63227875,1.2674528571428572,6.3961250000000005,1.73036,2.69418,4.933982,2.506175,2.304935,2.69469,7.96404,2.644005,3.95864,3.8185,0.7664522222222222,3.50283,2.59694,3.929165,4.083375,6.017738333333334,0.667538,3.215705,9.69188,3.138325,1.064497777777778,5.185510833333334,4.823985,5.27775,4.212605,4.697765,3.14614,2.5866266666666666,7.163505,0.820864,3.514825,4.16217,3.142965,4.20491,2.32592,4.25836,1.5970950000000002,4.33241,4.058885,3.92217,1.6919475,4.62597,4.430265,2.35331,2.088875,2.37864,1.194546,4.154035,3.3387915,1.4444919999999999,8.152225,5.7853,4.41145,4.13587,3.496955,4.331385,1.3905557142857143,4.419445,3.9526,5.4281,3.76112,2.4779666666666667,6.562764551282052,0.93719,0.93719,2.59999,0.9531442857142858,4.23102,2.56629,1.0568375,1.8016933333333334,0.40842666666666666,6.324014999999999,0.975615,2.76724,3.935895,4.026815,3.57256,4.2447,5.5762,5.5923075,3.084405,3.202285,2.39776,4.229195,4.36583,4.259845,3.87607,3.82402,6.2283,4.19181,4.268978333333333,5.059235,3.712105,3.4469374999999998,2.28943,3.4469374999999998,6.858051,41.4998034978355,3.75637,3.456165,2.924193333333333,4.18185,4.464625,3.433465,3.523365,3.9276,4.529375,4.304055,1.6764166666666667,4.95122,2.61146,4.850035,5.20365,4.835675,2.338086666666667,4.443095,3.898945,3.26787,1.530942,0.6353130769230769,1.731852,3.6788333333333334,2.84714,1.3360375,2.97749,2.671613333333333,2.7438266666666666,3.5649333333333337,2.9076633333333333,1.47038,2.7501700000000002,3.8472000000000004,1.9223760038610038,2.7660366666666665,3.257034,3.020046666666667,2.5847233333333333,3.5233333333333334,1.1845777777777777,3.626015,4.08406,1.2215766666666668,1.2215766666666668,1.2215766666666668,1.2215766666666668,2.8579133333333333,2.064243333333333,2.473805,3.49096,4.737925,4.940975,4.304915,4.299985,5.82405,4.600255,2.33363,6.16135,4.15451,2.58656,3.61232,2.981425,4.208355,4.331885,0.7121953846153846,1.4538142857142857,1.5558533333333333,4.181285,3.83042,4.56727,3.976805,5.9527616666666665,2.32776,4.61039,1.5380316666666667,3.683155,5.26525,1.5504833333333332,5.2315,0.6960466666666667,4.4436,1.193772,1.1004975,3.81629,4.125015,5.2994,5.2384,5.97595,4.284295,1.460724,4.64614,1.48542,3.65971,2.974725,2.489319777777778,1.89454,3.075515,1.3118683333333332,3.484485,4.78298,2.928316666666667,5.62285,121.70924980411255,0.4808922222222222,4.58297,2.4340466666666667,4.650075,4.10747,3.191395,1.526525,0.3832547619047619,2.850875,3.79268,5.3669,3.428275,3.6903,4.35134,4.53327,5.1074,8.320453333333333,0.6979166666666666,2.67567,0.9749075,11.244036,3.029765,3.64666,0.9347566666666667,2.157685,2.71649,2.0944525,3.12602,3.1412033333333333,2.59755,4.4196675,3.01237,2.2670866666666667,2.233163333333333,4.38217,3.729965,2.932325,3.631295,3.763815,3.36948,2.3324333333333334,3.91684,4.15476,3.0841,0.9678688888888889,2.597933333333333,4.4196675,4.854165,5.4069,4.12124,4.97813,1.934515,11.0373,4.332785,2.721085,3.779825,5.3424,0.5815613333333334,0.5815613333333334,4.2273825,4.2273825,3.2709,3.5785666666666667,1.779161590909091,0.5743608333333333,2.92774,4.405335,4.200985,3.26477,4.0005,5.3993375,4.840365,2.2076425,4.585575,2.2356775,2.67735,4.260501666666666,1.74425,2.07959,0.48228857142857146,1.2458345714285715,1.2458345714285715,1.871365,4.331245,4.20813,4.8742,6.504336,2.720325,3.11241,1.929875,1.877545,3.98128,3.750695,4.898596666666667,2.347725,4.898596666666667,4.74977,3.618355,5.90235,3.821445,2.4332133333333332,2.0093666666666667,2.49642,1.3837275,1.40006,1.553505,1.8692275,1.598695,1.7882875,3.9489,4.716455,2.400485,7.0439,2.9736233333333337,4.42865,3.403125,4.354215,2.9967166666666665,3.05759,6.324753333333333,3.3194966666666663,4.672332666666667,3.1785866666666664,1.40332,2.5163333333333333,2.5807466666666667,2.22919,5.94145,4.4457125,4.82124,12.559769301812223,0.7484891666666668,2.02218,2.34648,1.6714259999999999,1.2532257142857142,2.522675,2.47119,2.47713,2.466935,0.7352415384615385,1.9158375,0.5433736842105263,4.655085,1.89932,3.970045,4.675315,2.4919325,5.76453,4.183925,7.60362,4.071275,3.01771,3.265125,4.72498,4.825935,2.743863619047619,4.506025,2.155525,2.155525,4.87958,3.954935,4.069485,4.05916,3.32629,3.98048,5.08855,5.0908,4.69645,4.27466,4.47724,4.393945,2.600515,4.914805,1.1911916666666666,4.78368,4.601265,2.5332766666666666,2.17784,4.74317,1.5049700000000001,5.10035,1.8825525,5.592365,4.379735,3.84891,1.51794,3.3471933333333332,3.3471933333333332,12.30097,3.95271,4.21029,1.1150325,4.3330079999999995,2.19208,1.46429,2.3322825,1.6546675,2.0048475,1.7811240000000002,3.05122,5.78355,1.81977,4.9537,4.692184999999999,5.3387,2.09101,2.427365,3.268945,4.386785,5.4514,3.92794,6.967065,3.181236666666667,2.598736666666667,0.37163888888888885,3.760595,4.24046,3.3496,6.17102,2.606263333333333,3.086883333333333,1.241095,1.5621683333333334,0.579763125,1.547544,2.923,1.46803,1.508415,0.66030625,1.394142,4.632945,2.34324,0.6261284615384616,1.59235,1.68286,1.6851340000000001,1.2955783333333333,2.01009,1.5621683333333334,2.578825,1.394142,1.394142,0.6261284615384616,1.6051428571428572,2.51142,1.3243883333333333,2.788475,0.6261284615384616,2.7565,2.51142,1.3026283333333333,1.3026283333333333,1.3026283333333333,1.916986,1.2464975,0.6261284615384616,1.064232,1.1844175,1.037721111111111,1.865232,2.704825,0.8399,2.2457675,1.5485428571428572,0.6261284615384616,1.7675699999999999,1.5621683333333334,2.0244666666666666,1.9742499999999998,0.8985900000000001,2.0244666666666666,1.0674766666666669,2.35331,2.4287275,2.4875625,1.1844175,2.18294,1.3118683333333332,1.3118683333333332,0.8991109090909091,0.8991109090909091,0.8991109090909091,1.241095,1.5621683333333334,1.5485428571428572,1.59235,1.0133871428571428,1.9742499999999998,1.53801,1.6186019999999999,2.04344,1.241095,2.74338,12.863055,0.66030625,2.59754,1.8653166666666667,2.438245,0.9781371428571429,0.9781371428571429,0.6261284615384616,1.0603077777777778,1.565434,1.5485428571428572,1.8143439999999997,1.9742499999999998,1.1465222222222222,1.1465222222222222,1.669228,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,3.2629333333333332,1.0674766666666669,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.20402833333333334,0.3827681818181818,55.01808233116883,1.521465,1.6328316666666665,1.5485428571428572,1.8653166666666667,1.0133871428571428,0.628929411764706,0.723177,0.723177,0.723177,0.723177,4.390233333333334,16.6704975,3.3891333333333336,0.5821772727272727,1.615418,1.615418,1.615418,0.5821772727272727,2.923,0.6261284615384616,1.7675699999999999,1.508415,2.53152,1.0674766666666669,2.3900075,1.0674766666666669,1.657784,1.657784,2.1273833333333334,2.1273833333333334,0.6261284615384616,2.00846,2.00846,0.992009090909091,0.20402833333333334,2.923,1.4762133333333332,2.4252175,0.5821772727272727,0.5821772727272727,0.5821772727272727,0.5821772727272727,0.5821772727272727,1.8653166666666667,0.3827681818181818,1.0674766666666669,2.18695,2.18695,2.569075,3.079776666666667,0.6434142857142857,0.6434142857142857,3.4688,4.2073,1.23617,3.523066666666667,1.0064899999999999,2.6179,2.0184,1.0913533333333334,3.01445,1.9693525,3.2092533333333333,5.2198,2.420515,1.1689222222222222,4.251365,4.288655,2.703086666666667,1.683416,2.288957769230769,4.689545,1.5742933333333333,2.688383333333333,2.889836666666667,3.1050799999999996,2.48347,6.100896666666666,4.067435,0.20402833333333334,3.0848666666666666,4.968855,3.387545,4.5561,4.28625,4.49445,2.81871,1.783932,4.604745,4.661335,4.399435,4.771835,5.22835,3.233075,0.7197650000000001,6.781375,1.5278066666666668,3.018522,4.562065,2.5739466666666666,2.5739466666666666,0.8385018181818182,1.89454,3.8976,3.13117,5.2451,4.22404,4.641085,5.3329,1.0899557142857144,4.651885,5.4775,6.928683611111111,2.298556666666667,4.271735,3.861675,4.08105,3.897115,4.00766,4.341895,5.983504999999999,5.2287,4.383041666666666,3.6506,4.513488333333333,7.399953,2.0164475,2.0966241025641024,2.842893333333333,1.7836166666666669,2.772133333333333,1.8382533333333333,5.20495,2.9234066666666667,6.0613,1.952924,4.98775,4.064515,3.25504,4.40394,3.80039,2.5172866666666667,2.7658166666666664,2.705416666666667,2.6000433333333333,2.5557933333333334,1.704,2.7377933333333337,2.8440066666666666,2.17152,2.17152,4.4526,2.9142433333333333,1.9536,2.92076,1.9643866666666667,2.5277,3.0740366666666668,2.7201400000000002,2.9458,5.34495,4.08994,3.961425,3.4329586666666665,3.4329586666666665,4.001865,3.22287,3.94919,4.455,4.20651,3.516915,3.26834,7.53976,1.9985525,1.97686,3.32207,3.255945,1.2146733333333333,1.2146733333333333,3.578385,1.702545,4.02603,3.692315,3.43336,2.1706765,2.1424699166666663,0.55997,3.679085,3.919655,1.8707325,2.480295,4.14824,1.1883133333333333,4.764555,1.2286033333333333,0.4135235714285714,0.5445107142857143,21.454943357142856,0.5445107142857143,0.4135235714285714,0.6754978571428571,9.480251666666668,2.587833333333333,3.76089,4.35021,3.4623549999999996,2.815465,4.1276278571428575,2.23819,2.30716,3.59646,3.11429,3.88929,4.119175,3.585415,2.2316,3.22144,3.46086,3.93196,3.214215,1.102986,1.102986,1.102986,1.102986,3.35536,2.808825,3.16814,1.7907166666666667,1.1656483333333334,2.46514,3.69879,3.633355,2.988405,3.015195,2.689355,2.7145591666666666,3.937015,4.19948,1.12559,2.65384,1.0474999999999999,2.54867,1.7121366666666666,3.794966666666667,5.13265,2.4438866666666668,4.070695,3.9773,0.843334761904762,0.2693214285714286,0.2693214285714286,0.5740133333333334,0.2693214285714286,0.2693214285714286,0.2693214285714286,0.5740133333333334,4.37321,7.333426666666666,3.613755,0.53805625,3.690135,7.823865,3.30697,3.151566666666667,1.1466516666666666,4.62879,5.37535,4.351275,4.839295,1.6890319999999999,4.54983,2.2388233333333334,2.3409133333333334,3.590215,5.3797,0.8103314285714286,0.8103314285714286,3.53626,2.8008066666666664,1.995695,3.72456,2.660535,6.70465,2.99182,6.28265,6.0358,5.6193,3.040525,1.657625,4.208355,3.517035,2.24236,3.64721,2.99403,1.80229,1.1655883333333332,4.089965,3.431795,5.001423333333333,6.113315,1.5245566666666666,4.057615,1.1833666666666667,2.537783333333333,3.270245,4.046525,0.3894971428571429,3.3212,4.03164,0.914525,2.76913,7.52152,3.80846,2.19617,5.765077,4.405275,3.684395,1.3948016666666665,5.449846666666667,2.7718333333333334,3.0113,3.6927,2.02519,2.02519,6.40755,6.40755,3.721733928571429,3.721733928571429,10.9377,3.721733928571429,3.721733928571429,4.419605039682541,6.87,3.908695,3.5480508333333334,2.8639466666666666,4.066345,3.657145,3.2211700000000003,3.1028300000000004,4.827035,3.11037,2.6555566666666666,3.242236666666667,2.2733133333333333,2.708325,4.94161,7.429795,6.313815,5.0796,3.81409,4.002015,6.7978179999999995,5.41165,4.31463,3.95575,4.23093,2.353613333333333,2.261265,2.26673,5.8524,5.6831,4.5651775,4.15801,2.3140466666666666,2.6278099999999998,6.846945,1.916986,2.54136,3.4101,3.4101,3.194055,5.01875,0.7654691666666666,3.521333333333333,3.85665,2.973216666666667,10.11103,4.363535,2.706386666666667,2.317743333333333,4.83001,5.83995,3.0383,5.49515,2.6409166666666666,4.422155,2.9410777142857145,4.336545,5.32005,4.950545,1.0342083333333334,3.5678,1.020545,2.490666666666667,4.938462367647059,7.7475933333333336,2.38904,3.25713,7.099581666666667,1.81983,4.438705,5.62525,3.527605,3.760645,2.19192,4.6069,2.41013625,0.4472615384615385,5.1901,2.82718,3.5824,4.98337,4.887655,5.37715,6.82636,4.73955,5.4075,7.2696625,54.22206833333333,4.729685,3.8503,4.797255,5.91655,4.527455,5.0393,4.06569,4.581875,1.910905,3.85463,4.033355,4.627135,2.64652,4.937795,3.776965,1.66116,5.6754,6.285,7.17664,5.4934,3.30898,4.64282,3.349895,3.18189,3.584645,4.38058,3.83513,6.71482,2.77205,1.0862671428571429,2.4171375000000004,0.582064,0.582064,3.26284,0.582064,2.3893966428571427,2.3893966428571427,3.1414246428571433,4.5100795,4.877869142857143,2.4171375000000004,4.8130299999999995,2.5773525,1.381595,5.569,2.140805,6.937091333333333,5.588363333333334,11.000045454545454,3.316606666666667,2.478873333333333,0.20602545454545454,1.950755,2.15035,0.897435,1.272155,2.7730366666666666,2.194045,2.4896175,0.593297,27.12533125,1.852065,0.7856461538461539,2.44888,2.44888,0.39587555555555554,1.67478,3.1798525,1.380525,1.795475,1.6326375,4.171155,2.87281,1.9763633333333335,2.4412066666666665,1.1290033333333334,1.98084,1.5581216666666666,5.350797333333333,3.735715,6.770548333333334,2.5287,3.3016233333333336,0.9540500000000001,2.322385,5.1485,6.0401,3.0536600000000003,2.1789133333333335,5.372925833333333,2.0251925,2.4542966666666666,4.13874,1.0007966666666668,3.637,2.3393333333333333,5.639,4.76295,6.30835,3.33993,4.1714775,4.1714775,5.21085,1.92196,5.5432,2.9102266666666665,1.6869825,3.045375,3.33973,5.8228800000000005,4.03888,2.73929,3.3588,3.00677,1.0600871428571428,5.20895,0.9400475,5.53341,4.35797,7.605373999999999,4.24104,4.38974,4.08564,8.412666666666667,4.48223,4.921835,1.16754,0.7099285714285715,4.641535,4.34012,2.197065,3.19376,3.22797,4.269635,2.10096,5.1433,2.4461633333333332,5.38715,5.2547,5.60695,4.533995,4.783715,3.05728,6.6571175,3.468605,4.56954,3.44936,4.350045,5.6281920238095235,0.5936207142857143,3.7123000000000004,1.7288633333333332,0.5322344444444445,4.164405,2.24165,0.9949675,2.06108,5.93845,3.66307,2.2789,2.6851366666666667,2.735246666666667,4.93559,4.07738,1.677417380952381,4.22689,2.27908,3.7738,4.48339,5.0797,3.1314275,3.7222333333333335,3.9025,1.981474,7.35499,4.69091,4.524965,5.2317,2.185125,4.49378,4.732095,4.049255,3.888135,10.819405,3.352235,4.763988333333334,4.75585,4.505315,2.3729775,4.360815,4.020445,4.61404,3.2564766666666665,4.27445,1.4938525,3.1816,3.43183,3.986125,5.04895,1.797522,4.047465,3.1953833333333335,5.4151,3.15319,1.610855,4.31889,4.598335,1.0566375,2.976305,2.7117633333333333,4.532347333333333,1.745666,1.5704466666666665,1.07074,3.07305,4.70035,5.5513650000000005,3.6497425000000003,3.223575,2.46938,2.01102,1.92371,1.5805933333333335,5.97915,2.958685,1.89329,0.8622692307692308,19.97987376282051,3.152015,3.0681241666666663,4.48673,3.8518676923076924,1.3408733333333334,2.6491223333333336,2.8370754545454546,1.25473,1.8692733333333333,4.355845,4.918115,3.5432033333333335,2.924755,5.48125,4.751645,7.182752499999999,4.646261666666667,4.709705,3.69283,2.68384,3.98141,4.04222,3.5703666666666667,3.99176,1.9566375,5.10945,8.39568,3.33669,2.831635,3.10196,0.53922,3.1361266666666663,2.06542,2.316775,4.31396,3.209015,5.20075,3.641485,2.925685,2.21157,1.69791,0.765996,1.4443866666666667,1.2021833333333334,4.03191,3.814205,4.65683,4.64817,7.39219,2.2899533333333335,1.4231019999999999,2.3380966666666665,7.88626,3.162,2.8644,3.08173,4.593445,3.4496175,3.574785,1.52043,4.501535,4.715585,4.25699,4.083655,3.612615,4.217165,4.176445,3.711805,4.297375,4.855265,2.175935,3.3970000000000002,3.18527,5.4579,2.90136,4.149826,2.80936,2.96001,2.39785,2.24646,2.1295800000000003,2.8760586666666668,2.8760586666666668,2.02381,2.723966666666667,2.3331,2.3389433333333334,2.17306,4.12196,2.42278,2.8906899999999998,2.90002,1.64067,4.41879,2.82359,3.876405,2.6559399999999997,5.17325,5.1937,4.887695833333334,2.47328,2.49746,2.994425,2.854225,2.24117,2.83507,1.8602625,2.663075,2.72825,6.770142666666667,4.384175,3.73862,0.6123875,4.371045,3.940865,4.18014,3.2057,3.891025,3.7740675,6.29355,4.32156,3.242575,2.7667221428571427,2.1565666666666665,2.48246,1.6898,1.711628,1.7201239999999998,2.0904599999999998,1.8336425,1.2694166666666666,4.140181999999999,0.6261284615384616,0.5336666666666666,2.05606,1.52649,1.469408,1.4305566666666667,2.2630142424242425,1.4441050000000002,1.7464680000000001,0.61322875,168.92686068465642,0.5180113333333334,2.01388,1.094834,1.237685,2.087915,1.521825,1.97383,2.29966,1.7098625,6.5727,3.023115,3.440057142857143,1.9894533333333333,3.19515,1.2878766666666668,1.2878766666666668,5.980825,0.47998722222222223,2.1902725,3.4206,3.05831,0.836629090909091,0.6154117647058823,1.185960153846154,1.0080363636363636,2.265895,4.04114,2.0825675,2.115775,2.3679333333333332,5.051385111111111,1.0835733333333333,4.518885,3.52807,3.494745,6.95849,1.8936833333333334,2.947775,2.694475,3.814217,2.2119,3.007645,2.72004,3.39811,4.067410000000001,2.891795,6.77098,2.52092,2.67761,3.377165,1.43229,2.808915,2.86304,2.741525,1.742105,1.606955,2.344305,4.353405,5.619723333333333,2.904205,2.92572,1.33919,4.247705,3.744666666666667,3.917733333333333,2.964245,25.094124471611725,2.575228666666667,2.6198833333333336,3.0484666666666667,3.4377,3.30974,5.711943333333334,3.1139500000000004,2.29997,3.4385666666666665,3.5437333333333334,2.15377,3.2813700000000003,3.4233666666666664,3.1720133333333336,1.7137333333333336,1.6466687500000001,0.5682750000000001,2.2434499999999997,2.0527675,0.22045,2.2961733333333334,2.612865,0.22045,0.22045,2.1838166666666665,0.22045,0.22045,0.22045,0.22045,2.8330800000000003,2.6831066666666668,0.5668223076923077,3.311012857142857,1.44566,1.9648219999999998,5.45905,4.386025,6.002542500000001,2.0258075,5.0409,2.1042925,2.6070733333333336,1.30968,5.856843333333334,2.84797,5.9551625,0.8583333333333334,1.3429525,4.662905,4.70677,35.63399778729604,1.59811,1.4149033333333334,2.35317,2.3448575,0.8991109090909091,2.3820866666666665,2.26851,2.6909899999999998,1.9048166666666668,2.470076666666667,1.6522983333333334,2.699396666666667,2.391766666666667,2.1794566666666664,2.65441,2.4522066666666666,4.073635,3.6112,1.0902542857142856,4.13806,4.08741,19.915080500000002,2.7426133333333333,3.0612933333333334,2.538413333333333,0.744656,3.2815220000000003,1.508296,3.2815220000000003,2.4405433333333333,2.6554166666666665,3.013033333333333,1.6869825,1.9003175,4.38981,4.01779,5.08985,4.31267,1.7309,5.0136,1.6367175,4.95278,4.001309619047619,4.33601,0.7489936363636364,2.0080825,2.0858075,2.75863,3.379795,1.11566875,3.34652,1.916038,2.0076933333333336,1.063084,1.063084,3.0160666666666667,2.58146,4.364845,29.322713750000002,6.35471,1.8957866666666667,3.6157233333333334,0.38150399999999995,5.992592500000001,5.96425,2.74757,3.391095,5.385525,3.720765,1.15002375,4.73707,1.282992,2.76656,4.49708,4.6427,2.10974,3.2049,4.438475,2.369865,2.9399575000000002,4.28435,1.2773633333333334,2.48204125,3.8348,5.3321000000000005,2.4730666666666665,3.037596666666667,2.7728366666666666,4.178615,4.00789,4.14276,4.2067000000000005,1.758195,5.97874,2.594675,1.7695440000000002,4.120545,5.77761,4.122765,3.45564,0.757765,3.069795,3.541825,2.02795,4.715040666666667,2.76066,3.981785,2.8776433333333333,3.365,2.58235,3.2590533333333336,2.9950733333333335,3.2745599999999997,4.18374,5.6246,3.68717,1.7512,4.00824,4.10403,1.894445,1.904405,1.7527775,4.112836111111111,4.49517,5.326423854166666,4.06909,3.4263666666666666,3.798005,3.1402433333333337,1.33305,2.980975,3.109545,2.96927,4.52581,4.48515,4.52911,3.174475,1.85337,1.46794,1.521395,3.544545,2.392725,2.16379,3.41225,5.10175,1.581235,5.1876,1.3882314285714286,1.9051225,3.206585,3.1783,2.982895,3.663685,3.045765,1.79009,0.9529600526315789,3.45411,3.7435033333333334,4.518505,8.631841666666666,2.6724266666666665,3.011426666666667,1.55304,2.7810566666666667,2.7962366666666667,1.127605,3.07478,2.7126,3.3378,4.0234,2.9858733333333336,6.985989999999999,3.109413333333333,0.7508863636363636,1.8513533333333332,3.46277,3.334095,3.38716,3.579966666666667,2.6809510000000003,2.89899,2.69941,1.9268114285714286,3.86469,2.473961111111111,3.34249,2.203866666666667,4.874395,4.93924,4.313045,3.369035,3.53767,0.947601111111111,4.86259,3.00512,2.6376833333333334,4.584185,2.6249933333333333,2.7342833333333334,0.38044285714285714,0.38044285714285714,4.4268,4.01271,7.06955,3.076745,4.70359,3.616235,3.17435,4.83861,4.238385,1.0450375,4.02311,2.6536166666666667,4.018501666666666,2.981996666666667,3.1223,1.7881866666666666,3.3269675,2.3025100000000003,2.88637,2.5137266666666664,2.81837,1.9507433333333333,22.387064321475627,4.198545,4.08206,3.975785,3.20932,4.5118875,3.466055,4.550255,4.254825,3.99684,3.54231,3.969775,2.7000733333333335,2.9379266666666664,2.9358633333333333,3.014993333333333,2.857813333333333,4.216645,3.57018,4.91225,5.0108,4.43197,1.32087,1.48,1.48,4.95739,3.968585,2.6787766666666664,2.3473466666666667,3.0266,3.293875,3.43842,7.877528333333334,3.2928333333333337,3.6202,2.9468249999999996,5.20115,1.6619433333333333,6.083185,2.44908,3.00357,1.71549,3.854355,2.991355,6.80803,3.40871,2.653135,4.26417,3.88428,1.407455,2.59295,1.64048,7.673795,4.08962,6.728993333333333,2.242935,4.17683,3.71066,4.10736,5.20335,3.6689000000000003,3.6689000000000003,2.0912,4.386855,5.0403,2.356915,6.626352857142858,1.7344425,5.69,8.433812666666666,3.5833666666666666,4.302065333333333,2.3276133333333333,1.979015,0.524705625,4.34257,2.636175,2.795425,3.9045199999999998,2.4016225,2.53503,3.491915,5.83165,5.1948,4.88077,4.808825,4.210175,2.180655,1.0425454545454544,2.90967,3.21983,2.742103333333333,5.1001,4.061095,3.27729,2.58534,1.9294160000000002,4.29112,1.02479875,5.2149,1.0217466666666666,5.34675,3.37058,4.905965,4.976145,3.151,3.229825,3.1631033333333334,2.332883333333333,4.34055,3.076075,2.39492,3.701445,4.7216,5.8522066666666674,4.604865,1.77119,3.54195,3.03215,5.483725,1.913975,1.913975,2.8742033333333334,2.364453333333333,2.4360866666666667,2.5892633333333333,0.87564,5.90535,3.387615,2.045485,2.365665,2.63157,3.68665,2.714305,3.72679,5.1039,5.30225,4.917585,6.1536,5.9133,1.330125,3.78185,1.11585,2.588125,4.371866666666667,2.55105,3.03956,3.24337,4.387045,3.443685,0.45181315789473686,4.6676,4.15751,4.83854,3.269395,4.60264,5.454,4.27526,4.035515,1.763795,4.50623,2.049605,4.378666666666667,4.378666666666667,6.52945,5.6508,5.3536,5.2337,2.789845,1.6619433333333333,4.254195,1.9187733333333332,1.6508900000000002,2.12187,4.17979,4.13361,4.333005,8.0958,1.6218616666666668,5.15835,1.24763,3.169425,5.7104,1.99,4.64203,2.6997466666666665,4.969655,3.487335,4.752145,3.084146666666667,4.213815,4.08565,6.0097,4.30565,4.010955,3.944565,5.8237,4.16698,4.57826,3.63362,4.32604,6.959486666666667,3.52187,7.17835,3.320245,5.3723,6.1654775,4.405115,3.62541,1.696735,5.5003,3.87753,0.9155899999999999,8.90907,6.0214,5.106,3.0322741666666664,5.2166,2.811555,1.694772,4.04236,1.12559,6.1879,2.875495,4.604835,5.43705,4.32919,4.3013,2.1527333333333334,4.3143,5.1563,1.564165,7.192408333333333,3.06912,3.347135,5.0841,4.043265,2.13344,4.45191,3.67149,3.84065,2.8657166666666662,3.981665,3.697845,5.34,4.716925,3.249745,1.9176925,1.9176925,7.468328333333333,1.4535714285714287,5.21335,4.2745,5.2915,3.484475,3.6811,5.1467,3.954555,0.9413766666666666,0.9413766666666666,0.9413766666666666,3.607285,3.22607,3.923445,4.461067777777778,2.79461,1.4558883333333332,4.389155,2.0861175,2.6465,4.021075,4.719575,1.92211,2.1382000000000003,5.27818,3.66974,2.79644,4.38323,1.6576375,1.948045,3.312796666666667,2.71712,5.10785,1.413408,1.610258,1.0294025,4.042265,3.552325,2.799326666666667,3.0366033333333333,5.4206,1.75046,2.01978,3.176795,1.6530857142857143,3.23812,3.622935,2.517825,5.45405,5.4655,2.76492,4.336625,3.685955,3.40497,3.623695,4.05451,3.447395,6.63214,5.4231,1.9207599999999998,1.8263333333333334,3.466375,4.664165,4.147235,4.064595,2.9538266666666666,4.100395,6.1484,5.15295,2.663676666666667,5.4327,4.039945,3.65704,8.4256125,3.887025,0.7297954545454545,3.960135,4.1055825,2.403775,3.99848,3.724466666666667,5.8078,3.896615,3.730215,3.835885,4.293775,4.63386,4.569665,2.7822,3.966405,4.988955,4.055745,2.584885,3.08258,6.35051,5.38685,2.0663799999999997,3.198145,4.185218333333333,3.846245,5.10005,4.35519,2.5294433333333335,0.8575611111111111,4.547883636363637,6.4292074999999995,3.38411,4.76324,3.64129,6.645941666666667,3.84599,3.7459000000000002,2.943576666666667,3.888055,2.006015,3.48069,4.292155,2.5673555,3.96297,5.7646,1.41139,4.83253,0.6453121428571428,6.3322,6.15905,6.3459,6.0725,1.7533666666666667,1.7427599999999999,4.69541,1.913905,5.7794,0.536045,6.0188,3.205305,1.528218,6.276965,6.461,0.9030025,1.6391745000000002,1.1634600000000002,1.1634600000000002,1.1634600000000002,2.1622866666666667,4.81197,3.60657,3.486965,4.012135,5.228,3.89674,1.935512,4.178185,5.1608,0.30466829268292683,3.69867,4.643825,4.51754,39.22593918939394,5.778708333333334,5.03575,11.380079333333333,3.01275,4.25947,7.095713333333333,3.035575,4.92751,4.02018,4.194385,8.999775,3.97322,2.6283133333333333,2.69919,4.691685,4.149905,3.3784,4.321225,1.98368,4.542855,4.24836,6.800806,4.191035,5.3977,2.3610625,4.26876,0.52557125,1.4379333333333333,3.431055,6.28505,2.844115,1.2306033333333333,1.2306033333333333,3.24091,3.875495,3.99485,2.928135,1.66339,3.735775,4.20615,1.7380425,3.1765033333333332,1.6766159999999999,1.83404,4.01972,4.45897,2.12949,4.598365,2.35814,2.11013,3.686345,3.645575,4.065785,3.90972,6.244629333333333,2.466829333333333,3.960985,0.7098690909090909,0.6600266666666667,3.71808,2.308415,8.811083333333332,3.3891333333333336,5.0545,1.6636225,4.39832,1.5338933333333333,3.86482,4.326115,2.5247800000000002,3.683125,5.2656,0.4136115,0.4136115,3.7225,3.1521266666666663,2.9107466666666664,3.809695,3.73094,5.3763,1.002709090909091,10.22691,10.522784999999999,2.01009,4.7221275,4.69501,4.81193,3.64874,2.5847966666666666,2.05228,2.0099525,10.220555000000001,2.2471525,2.7020633333333333,3.667716,4.709805,3.667716,2.2095575,3.005596666666667,2.9065100000000004,0.70722,5.4364625,2.94019,2.6978633333333337,4.07014,8.80049,10.112210000000001,4.41574,3.931995,4.054235,6.5910325,1.933985,1.4001125,26.332355833333335,4.300735,3.95264,1.0051,4.4135,4.0911,4.94039,4.32929,5.3523,5.809336666666667,3.03337,2.13165,0.6600176470588235,0.7297958333333333,4.709495,5.1801,1.3709449999999999,4.4427183333333335,0.9094083333333334,3.6534999999999997,1.4303833333333333,4.24836,5.8819,1.90884,2.433045,2.37974,4.01318,2.96338,0.3982238888888889,3.860795,3.58921,2.729433333333333,3.295545,4.89784,3.0025433333333336,4.04111,3.019415,4.165595,8.33436,4.71421,7.897444999999999,2.734675,2.6390833333333332,4.49161,4.664422500000001,4.390605,4.45261,3.728005,4.652455,1.2038225,3.2950608333333333,3.2972359285714283,0.726312,1.48,1.48,4.44669,7.4407950000000005,0.8448923076923076,4.831075,0.9336916666666667,2.84245,2.3394333333333335,2.5164097727272727,6.539506666666667,2.4800999999999997,1.1503333333333332,2.58203,1.20781125,2.0193533333333336,3.196266666666667,3.090915,3.3195533333333334,2.454293333333333,0.9336916666666667,4.465495,4.38578,5.53695,2.8038,3.945355,2.11932,5.8574,4.895585,4.5278,2.9193,3.47452,2.1942,1.65158,4.031615,2.741975,4.317255,5.5637,1.5386380000000002,4.673235,2.9948866666666665,6.41861,3.529145,3.13952,0.9336916666666667,2.376775,3.7443,7.558695111111111,2.4565633333333334,1.814238,2.4565633333333334,0.4295641666666667,1.366076,3.53323,2.800975,1.741215,3.568805,3.884547,0.617092,0.617092,0.617092,8.155345,1.564654,0.7308981818181818,2.614895,39.93169210606061,1.902695111111111,0.6978711111111111,3.14869,0.6978711111111111,3.73502,2.034785,2.451225,2.522536666666667,5.22995,4.175545,4.671455,2.421186666666667,0.8950857142857143,4.307405,3.408466666666667,5.02745,1.0321257142857143,2.9973,2.9973,3.85552,4.396015,3.711075,4.959567692307693,3.27078,4.80465,5.2746,1.816038,1.06164875,5.3266,6.6111,3.762935,0.692501,4.411705,4.174143333333333,0.93297125,4.486115,2.486565,4.101765,4.3458,1.8894515151515152,1.8894515151515152,4.21965,3.37381,0.8868666666666667,3.111455,3.0427733333333333,3.228765,4.016405,4.385605,0.40159,0.2803952941176471,0.2803952941176471,0.2803952941176471,0.6819852941176471,0.5942376923076923,0.658847,0.2803952941176471,0.2803952941176471,6.830220000000001,0.2803952941176471,0.6819852941176471,3.54688,1.2583475,4.721225,1.1899366666666666,0.5940723076923077,0.93297125,2.621685,2.703725,4.04322,3.041215,0.2803952941176471,0.2803952941176471,4.32798,3.762015,4.09232,2.55773,3.94172,1.541102,3.93081,0.658847,0.658847,4.575925,3.13983,2.71983,2.89397,3.8228299999999997,1.0026199999999998,0.8918,10.866795,1.3013,3.81512,4.55918,5.0452,2.05254,0.3927269565217391,0.88487,2.8565466666666666,3.353475,3.28884,4.49978,1.440522,5.94735,3.60202,5.2409225,4.17553,3.016016666666667,2.9692966666666667,6.4848,2.70231,4.904025,4.187155,3.9773,5.82989,0.5564766666666666,4.16712,3.4403333333333332,2.09232,0.6887011111111111,4.014585,4.35502,2.81877,2.323505,2.17892,5.1812,2.758455,2.834425,1.01857,0.46368615384615386,3.963625,0.35099600000000003,0.7685327272727274,3.956065,3.13119,4.125725,2.7124,5.6713,4.323435,6.158008666666667,3.5682,3.397635,4.54891,1.4935325,5.1591375,1.7915579999999998,4.13999,2.396065,5.985313333333334,2.52884,0.9755119999999999,4.53973,6.983207500000001,6.633335416666666,3.528166666666667,0.8136774999999999,2.8324466666666663,4.43614,4.203125,4.48029,4.572165,4.130925,5.048,2.955815,4.176995,1.75617,2.21224,1.4459,3.98605,9.482975,3.31672,3.68716,5.964,2.731275,4.22218,2.5443599999999997,2.983961,3.29715,2.821255,3.32945,3.45841,3.39507,5.3168,5.78635,3.996835,4.705835,4.927455,3.91657,2.59654,5.2334,7.754075,0.91027,3.84962,4.079665,4.816185,5.66,4.956345,2.58569,8.120885,2.4391666666666665,3.39303,6.04445,3.75137,4.247185,2.18516,1.7873675,3.02077,2.12668,1.9454399999999998,3.0265066666666667,4.07093,4.601895,4.10582,3.60053,4.988901666666667,3.43147,3.05933,3.964255,5.83685,2.9009,5.6292488333333335,3.89701,3.99509,3.582205,8.06313,3.81825,3.6802,4.292565,4.874535,3.12244,10.9021,1.3357216666666665,2.25716,3.853975,2.6637833333333334,2.6637833333333334,1.99087,7.740846666666666,0.8749833333333333,3.097125,0.90323875,2.01978,4.491975,5.168,4.2945,4.33624,2.823,3.36359,3.978255,3.813525,4.145015,2.946415,2.6057266666666665,4.214475,4.98716,3.50911,4.37668,1.630976,1.635342,2.672686666666667,5.66685,2.19764,1.7199366666666667,1.982305,4.32162,4.81588,3.06282,2.786745,0.5088111111111111,2.36001,7.782085,3.36658,1.4905333333333333,0.86497125,1.19159,1.9833800000000001,2.14309,0.7892783333333333,2.10453,4.3553025,3.927685,4.648315,2.447626666666667,1.8885275,6.4292875,3.13565,2.0078633333333333,2.0078633333333333,2.0078633333333333,6.662743333333333,2.273476666666667,3.456345,2.525735,0.47348,1.089086,2.45982,5.9576,0.4482494444444445,3.628105,3.9278775,5.7242,2.9713594444444444,0.4482494444444445,2.9713594444444444,0.98825875,1.2166460000000001,5.7184,4.028045,6.834922499999999,4.17243,4.848095,3.838625,4.17591,5.0181,5.14495,6.0868,3.758515,3.40665,5.06195,4.70742,4.12223,4.417765,4.529255,1.33168,2.64129,1.2376475,2.13451,3.2005483333333333,1.543055,7.308305,5.483725,2.6764366666666666,4.480195,2.96818,4.784165,2.72604,4.33961,4.953565,9.374735000000001,5.23395,4.50492,2.39732,2.891585,2.1239999999999997,0.53922,2.1968715555555556,5.6969,5.41475,5.17205,4.56037,0.5442033333333334,1.9984575,1.4491675,4.32161,0.7650069230769231,6.586295,2.036305,1.1225,1.1225,3.944202,2.0575,3.1323933333333334,2.60059,4.57762,3.662545,3.662545,4.760815,5.801948333333334,2.820396666666667,2.4134266666666666,3.27399,4.751605,1.9109760000000002,2.7737233333333333,5.6612,5.25775,4.804885,4.277125,3.881263333333333,4.99437,3.4915325,3.2012199999999997,2.34381,4.170415,5.2357,3.24105,4.90416,5.55545,2.1403233333333334,2.53531,6.18265,6.96925,1.19706,2.6783,2.3398125,2.68369,2.3849175,2.573925,2.6307289999999997,1.0516633333333332,1.8856075,2.6414,2.29139,2.372001666666667,2.372001666666667,3.043488,3.0169,2.2401376923076923,2.62365,2.3729575,2.07134,1.603006666666667,5.1348775,14.894363166666666,2.8403333333333336,3.4534333333333334,1.8228760000000002,1.8228760000000002,1.62394,1.62394,2.9325533333333333,3.6771666666666665,2.9145066666666666,1.9649725,1.9649725,3.9597333333333338,2.60362,1.10873,1.3978057142857143,3.0798233333333336,2.9928399999999997,3.5314666666666668,2.6846864285714283,3.352066666666667,3.2229533333333333,0.6977369999999999,2.712375,3.6971863333333332,7.12153,4.75536,5.54055,4.35941,3.449545,4.94028,4.463665,2.9955966666666662,4.158295,1.387075,3.25578,5.8383,5.2571,2.73035,1.3619866666666667,3.0048,2.54318,3.0979466666666666,1.59408,0.7133192857142857,3.2170366666666665,4.70041,4.696295,4.053265,4.83443,3.06627,2.1760533333333334,3.2867191666666664,2.4840766666666667,3.3909333333333334,3.1186333333333334,3.2893333333333334,2.7289600000000003,2.2610766666666664,3.687466666666667,2.9547333333333334,5.2764,4.815545,5.197285,5.197285,3.391345,3.92189,3.76786,3.74952,2.71445,4.516025,3.44044,3.1075433333333335,6.2361,0.7611941666666667,5.04515,4.891175,2.55349,5.301901666666667,3.607666666666667,1.7553666666666665,1.3499042857142858,2.1690033333333334,1.02328,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.2914032142857143,0.5696257142857143,0.5696257142857143,1.211035,0.8170033333333333,1.6307133333333332,0.9054085714285713,0.9054085714285713,1.19452,0.4361933333333333,0.37994,1.221575,1.49701,2.6707633333333334,2.4009725,6.538568333333333,2.99703,3.84239,3.463801666666667,4.972794,1.3012483333333333,4.718615,4.03582,4.84334,3.1556,1.504854,4.340596153846154,3.82043,4.55569,4.525915,3.196545,5.09775,4.64509,4.6602,1.26499,4.0008,4.76,3.20792,2.3445566666666666,3.47025,2.47327,3.30249,4.41439,3.06574,4.9541,8.654505,3.24066,4.92818,4.417915,4.409325,2.6708166666666666,4.65416,1.0672271428571427,4.13487,3.45651,2.09654,1.2342775,2.910065,1.3188,0.5140146666666666,3.4435333333333333,4.235695,5.20612,3.6968333333333336,2.4335875,2.798805,4.800025,4.0031,4.44944,2.682775,2.2582633333333333,4.021935,4.120855,3.95375,5.2084,4.365625,3.68783,4.530935,3.0793466666666665,4.29325,2.1462241666666664,4.568715,5.1783,3.210415,4.337975,2.529255,3.8605,5.61255,4.227235,5.22705,4.58241,4.935825,2.3167866666666668,5.0958,4.920895,4.98775,2.1659625,1.1562525,4.08708,4.522915,4.350555,4.948655,1.856375,4.079555,2.458445,5.0903,4.54934,4.69411,2.4565125,4.30462,4.89002,4.396335,2.63651,4.81923,4.685355,5.32095,3.72996,2.1659625,2.28968,2.921075,5.07045,4.17349,4.286145,3.518365,4.8769,2.33012,6.87989,4.939925,4.664715,5.359498666666666,5.1561,5.3977,3.4630462499999997,2.4800283333333333,2.4800283333333333,4.047165,3.53068,4.553335,2.20693,3.0043875,1.0144925,2.799936666666667,3.045083333333333,2.5170333333333335,3.09247,4.394455,2.9315166666666665,5.4777,2.7183233333333336,4.470795,4.764215,1.977075,4.20649,1.7139566666666666,2.708466666666667,4.055465,0.885556,4.95413,4.537975,5.959465,4.531825,5.6038,1.2936942857142857,4.593745,6.42675,8.58896,3.2853399999999997,3.308953333333333,1.9096039999999999,0.813345,3.82241,1.0194485714285715,5.03185,4.502555,5.61765,3.157245,3.613545,1.147382857142857,3.654675,3.530145,4.36753,4.10361,2.997955,2.78266,2.46294,4.283655,4.793535,5.7874,4.45994,3.62282,0.34307777777777776,0.34307777777777776,0.34307777777777776,0.34307777777777776,5.61955,2.96904,6.23015,3.0975633333333334,5.1343,4.553945,3.63435,2.176725,2.5820633333333336,1.4102833333333333,5.0559,2.8886333333333334,4.19476,3.96181,3.341465,1.67443,1.1491825,4.458335,2.551805,6.034974999999999,3.76545,4.875845,2.15305,1.4973866666666666,0.8628922222222222,3.364215,4.451315,3.3231,2.145525,8.05941,4.76466,3.49523,2.30706,0.390598,3.59626,2.899855,2.032685,1.87792,2.82166,2.8801,2.2759,2.8782300000000003,3.18316,3.32605,4.45417,3.846765,4.08726,3.541005,5.881391666666667,0.6247433333333333,4.565035,5.6267,5.15005,4.785075,3.2665566666666668,5.13025,4.528905,4.316725,5.442076666666667,5.44455,4.76018,4.606695,3.74308,4.933775,2.879765,8.98913,5.0586,4.24357,4.782805,5.02935,5.7044,3.573985,1.1138555555555554,5.890386666666666,3.49335,4.6998,1.3871016666666665,4.390275,3.95545,7.0504516666666674,4.611235,3.14664,2.017333333333333,4.554815,1.9430420000000002,1.02298875,4.089035,6.1299,1.8485266666666667,2.3276566666666665,2.864803333333333,3.10208,3.51316,3.60883,5.15055,1.7706733333333335,4.2202,4.2139135,3.3604,3.7671666666666668,3.729595,2.92905,2.610125,1.934935,2.4782433333333334,2.6755633333333333,4.284755,0.55997,2.5947733333333334,4.16909,2.96501,3.5996666666666663,4.593575,5.69325,3.981605,16.887214424242423,2.5471766666666666,4.111766666666667,1.49565,0.8851790909090909,0.8851790909090909,0.8851790909090909,0.8851790909090909,0.8851790909090909,4.677055,4.89835,4.916465,9.190717,2.43525,2.43525,4.5941,4.566520833333333,1.3120275,2.156143333333333,3.92907,2.4686025,2.495985,2.274835,2.9289,3.7871059999999996,1.7964675,3.479675,0.82165,2.906893333333333,2.868346666666667,3.03055,1.4615833333333335,3.23931,2.30186,0.94008,2.7523066666666662,2.6656066666666667,1.2803111111111112,2.4687233333333336,2.88294,2.2323066666666667,4.45394,1.8563433333333332,3.0778233333333334,2.09616,2.73817,1.1535555555555554,2.8827366666666667,4.792302,3.6488666666666667,1.04253375,3.0811266666666666,1.342715,2.42928,2.3881099999999997,4.790736666666666,3.0518733333333334,2.4666200000000003,4.65657,2.7084499999999996,2.22967,2.93709,2.524,1.8141733333333334,2.8333333333333335,3.17277,3.14793,2.6319433333333335,3.154146666666667,2.663186666666667,2.5123,3.5864875000000005,3.5864875000000005,2.927286666666667,2.020566666666667,1.8705666666666667,2.583883333333333,5.483583333333333,2.9276966666666664,2.0049066666666664,1.6788875,2.9542333333333333,4.318575,2.4778,1.07607,2.690663333333333,1.5341033333333334,3.242096666666667,2.1994700000000003,2.5599966666666667,2.10238,2.9430533333333333,1.219166,1.5550266666666666,1.4861533333333332,4.236726666666667,2.587896666666667,3.89046,1.0294922222222223,4.10526,2.062273333333333,2.212965,1.7998020000000001,1.6680833333333334,3.1884200000000003,23.47834701948052,7.368633333333333,2.6507133333333335,3.6640525,2.6860966666666664,10.033369333333333,3.09038,1.0034975,2.5939566666666667,2.3503366666666667,2.074333333333333,2.6665466666666666,2.5693699999999997,2.5568833333333334,0.918294,3.1285633333333336,2.4916133333333335,3.0203399999999996,2.649833333333333,2.6546499999999997,2.1040533333333333,2.2771133333333333,2.812163333333333,2.65611,2.06466,1.552284,5.350976666666667,4.646185,2.318,3.004075,2.282973333333333,2.3980200000000003,8.062091666666667,1.9638366666666667,4.997495,2.28289,1.9716975,7.64297,2.9373566666666666,2.7533066666666666,2.4902575,1.8884899999999998,1.4971784615384616,3.2305466666666667,3.0556699999999997,4.24875,1.581175,3.7403999999999997,1.499435,1.499435,4.287465,4.660275,2.810477142857143,2.810477142857143,5.915446666666666,3.50177,0.42245499999999997,11.957837463369962,1.27132,0.9279871428571429,3.7556966666666662,1.4494028205128204,1.9745075,6.188296666666667,3.74395,0.7259981818181818,2.1578466666666665,4.969672545454546,2.4638436666666665,4.20718,1.3580528571428572,5.57205,5.22045,5.12185,3.3154565,1.888402,2.34586,2.58994,2.43446,2.23712,5.030916666666667,4.696935,4.351515,1.750105,4.659955,3.950065,3.6456,2.119985,4.96201,2.5003800000000003,9.0397,6.76405,1.876705,2.2888,1.7367339999999998,4.558333333333334,4.558333333333334,3.086016666666667,2.810636666666667,3.3493431666666664,4.91462,9.7531,4.240655,2.4655875,5.2543,4.249865,5.13385,2.03238,0.8494975,1.32133,4.540385,4.734325,3.668366666666667,2.8194733333333333,3.844466666666667,2.1875266666666664,4.10592,4.67696,3.405925,5.4603,3.2266600000000003,3.741886,3.3813666666666666,3.29051,3.4385333333333334,6.25165,2.989275,5.33105,4.789195,3.48439,3.3588,3.3588,5.8474375,11.8842075,3.5751333333333335,6.310992499999999,7.421480555555556,3.61489,2.50731,4.03346,1.3069433333333333,3.77629,2.46943,2.943146666666667,3.0125266666666666,3.3201666666666667,2.06608,2.393686666666667,2.72491,2.46312,3.0592666666666664,3.1020333333333334,3.92576,2.699066666666667,2.9176233333333332,3.861285,2.83394,2.582273333333333,1.163535,2.059765,2.8033699999999997,2.4457633333333333,2.523746666666667,2.44002,3.5647,2.30857,2.3117366666666666,2.71029,2.983973333333333,2.70412,2.8825000000000003,2.52802,3.175046666666667,2.8247033333333333,3.2809660000000003,2.625436666666667,2.438546666666667,2.3519133333333335,2.6136133333333333,2.71781,3.5483333333333333,3.32835,2.686315,1.9262475,1.9262475,0.7651283333333333,1.52043,4.01263,3.098565,2.6327000000000003,2.06608,3.168433333333333,1.2439785714285716,2.74187,0.5767100000000001,3.5101,3.150346666666667,3.21972,2.96663,2.486476666666667,2.5972466666666665,2.9338033333333335,2.6830866666666666,3.4022,4.6484,1.5287739999999999,2.7428733333333333,2.3969766666666668,1.7874999999999999,2.0697300000000003,2.8500266666666665,2.6797133333333334,1.6666640000000001,2.515076666666667,2.599483333333333,2.65342,2.6994666666666665,2.85118,2.98169,3.13499,1.3453375,2.7542033333333333,2.33235,3.6458999999999997,3.8901,1.959345,1.9825566666666665,3.29556,2.56122,3.3839333333333332,2.6662966666666668,2.3715966666666666,5.370525,3.4321333333333333,2.0522266666666664,1.506822,3.3256200000000002,6.226753333333333,3.104976666666667,3.5770999999999997,3.0070833333333336,3.00221,4.586465333333333,1.586652,1.1406,2.16966,1.8984895833333333,4.68033,2.9412266666666667,3.2647333333333335,3.118793333333333,3.2668166666666667,2.3522000000000003,3.4765,2.41941,1.6375319999999998,2.9006966666666667,3.56821,3.600885,3.18808,3.738305,1.684145,2.697365,3.48955,3.33426,2.5016333333333334,3.7785666666666664,3.9773,3.8261333333333334,1.365725,5.581898000000001,3.22584625,1.46326,3.347095,3.600645,2.820405,3.91438,1.899032,1.899032,3.1593633333333333,2.962483333333333,2.80615,5.15095,4.307985,4.2779826666666665,1.1958959999999998,3.0683900000000004,2.6050066666666667,4.22119,3.0976966666666663,5.03526,2.56013,2.42226,2.561926666666667,3.703675,3.942075,1.629588,3.0861366666666665,2.89425,2.3977175,4.355285,1.3409116666666667,3.03478,4.16735,2.68487,3.539925,3.974215,1.6069325,1.63975,2.3949875,1.054475,1.9989435714285715,1.921585,0.4499478571428571,3.943665,2.470675,4.48592,4.191795,2.880845,4.6592199999999995,3.469633333333333,3.0495666666666668,3.5469666666666666,2.570316666666667,3.369533333333333,2.7616833333333335,3.210763333333333,2.29725,0.6865176923076923,2.39702,0.6297499999999999,1.9430133333333333,2.4976566666666664,3.2132,3.1561866666666667,1.3886866666666666,1.3302525,4.21383,4.576985,3.37842,3.4681825,3.156985,1.834745,3.935975,8.227033333333333,3.337835,5.619352500000001,1.5245575,3.90585,1.9815375,4.106925,3.56018,1.785055,4.14341,3.41508,4.010165,4.14637,2.1433425,4.08568,6.365135,5.0882,3.56495,3.055915,1.68286,1.9677675,3.77135,3.307615,3.22248,3.719305,3.56427,3.467495,1.5956275,3.650555,3.135775,1.8011925,4.2050375,1.0545583333333333,3.311505,1.6623375,4.09899,4.671635,3.663935,2.8458075000000003,3.62699,3.503925,1.9297375,2.2718225,3.89,2.40817,5.695987499999999,4.13665,4.411775,2.40861,2.899655,4.498,4.423365,2.374152,2.374152,5.8202826666666665,3.7134210000000003,2.579275,2.959735,2.020556666666667,2.80704,3.312065,3.7282841666666666,2.623621,3.29431,0.926474,3.77872,3.112265,4.101935,2.656795,1.5448175,1.426185,3.221315,5.8375509999999995,5.5166275,3.54886,1.6096375,4.292985,3.652445,0.777165,2.98284,1.411816,5.312985,1.4037016666666666,3.931355,2.07153,1.3886866666666666,3.16582,2.754715,4.733775,6.902265,4.171475,4.5577525,2.37012,2.84323,4.22812,3.834335,4.19403,4.391115,1.0528375,1.6466687500000001,1.07839375,2.584245,2.214645,4.90767,1.07839375,4.327595,2.204145,1.57807,1.57807,1.8011925,3.9365,4.364835,3.77002,1.494052,1.494052,0.9394066666666667,3.06,2.113295,5.98517,4.30642,3.70169,2.8861566666666665,0.9910657142857142,3.529235,2.760265,4.26473,3.695255,3.8787400000000005,3.8787400000000005,3.408485,3.99723,1.8354175,2.72044,0.9665666666666666,1.9626833333333333,3.59078,2.51865,3.3333791666666666,3.3333791666666666,2.845305,4.512805,4.20438,3.535245,3.53752,4.006365,2.6829533333333333,4.448675833333334,3.074365,3.95896,8.176739999999999,5.1374,2.68894,3.20305,3.0526,4.653955,3.1234580000000003,7.481997499999999,4.700675,4.764195,3.58534,3.79125,3.670535,4.636345,4.65542,2.126665,4.70349,6.265201666666666,2.554385,2.146513777777778,3.30967,3.34842,3.643635,5.9767,2.19192,2.3974866666666665,3.0621,3.1386725,3.04311,7.526904,1.509655,4.771293333333333,4.771293333333333,3.24783,3.5882674999999997,3.106455,2.24144,5.40962,4.407303,2.0445646666666666,3.948725,4.077205,3.512314166666667,2.85131,2.99061,6.14363,3.382215,5.45545,3.20129,4.56432,4.082205,3.839045,2.962483333333333,2.1783,2.877625,3.806235,2.9698,3.3886116666666664,2.918515,6.264853333333333,2.520395,1.8250225,3.3178758333333334,2.36649,3.95986,2.75122,0.777165,3.48036,4.01045,3.979125,5.9582025000000005,2.964955,3.18017,2.9476633333333333,2.9476633333333333,4.018245833333333,4.21238,3.75129,2.0748075,5.7774,2.137915,4.513595,3.664675,8.03719,2.7666066666666667,1.2441633333333333,3.170935,4.561365,0.64331375,3.882215,3.052605,3.007865,3.075155,4.28176,2.1692033333333334,2.415765,9.120615,3.42967,2.980005,1.4037016666666666,3.72197,2.695505,2.5036525,4.13281,5.323415000000001,1.625985,1.20524,1.0752866666666667,4.186435,3.97127,3.66244,3.587815,3.587815,1.5956275,2.254155,3.3196708333333333,0.9669433333333333,3.079795,1.05492,1.684145,3.50436,3.437865,2.800045,2.52672,2.723650833333333,4.480925,3.85643,3.24695,3.17125,2.896695,4.263765,6.7425,4.020285,0.89883,2.484025,8.6114,4.63535,4.0789,1.089185,5.006565,1.4127733333333332,3.7038275,3.7038275,3.98989,8.545728333333333,0.8865555555555555,4.639535,4.60507,2.4157366666666666,4.19037,3.71819,2.18803,9.628876666666667,1.80887,2.45792,3.28141,1.6959633333333333,4.066745416666667,3.18189,3.58092,3.646766,2.93883,3.082345,1.08494,7.30459,4.089695,3.934155,3.90866,1.998715,2.8458075000000003,4.152774166666667,3.70963,0.6424476923076923,3.99506,3.945115,4.76474,2.0960125,1.480616,4.132375,4.14677,9.15894,0.7289153846153845,0.801395,0.801395,1.88835,1.3364099999999999,1.434784,1.7317333333333333,4.689465,1.2661866666666668,0.89827,4.0536200000000004,3.500665,1.2022875,3.207005,4.628405,3.937395,0.778214,1.85511,9.66051,3.3087716666666664,3.348675,3.162535,1.8625325,2.5128333333333335,2.673665,4.397555,4.211905,3.84546,0.9048785714285714,1.351688,0.912021,4.2094325,4.35646,4.108105,0.9669433333333333,1.697664,3.81288,2.2517060714285715,4.833379166666667,1.0522375,4.62156,0.6353633333333334,0.6353633333333334,0.6353633333333334,9.89936,3.902085,1.05492,3.83605,4.67171,2.81857,3.17389,4.85153,2.92711,1.9262266666666668,2.2880133333333332,0.778214,1.5553789999999998,0.5298233333333333,0.8063666666666666,1.4291233333333333,3.88824,3.717055,2.0647625,7.298225,4.809159166666666,0.6248177777777778,6.1876,5.115406666666667,3.34176,4.420485,8.127920333333334,3.8499822023809522,4.809159166666666,4.578849083333333,2.34747,4.18372,3.600455,7.56072,3.486985,0.390598,1.521696,3.95956,1.766148,1.20524,4.040015,2.43394,1.716675,3.22391,1.669896,4.47958,4.34383,4.070155,4.7213,6.3598,2.606525,3.81787,1.411816,2.3680075,3.518645,3.300565,2.0445646666666666,4.051305,2.550285,4.948995,2.929435,2.348695,3.2813791666666665,1.6441700000000001,3.551685,0.9669433333333333,2.22031575,1.0752866666666667,1.712605,3.559295,1.509655,1.4291233333333333,2.0040425,3.24849,7.68159,0.9048785714285714,1.089185,1.361488,3.60174,3.812475,1.361488,3.95874,2.3680075,0.64331375,0.9669433333333333,1.88835,1.411816,0.4499478571428571,1.66116,4.178928,2.4157366666666666,1.3980716666666666,2.97518,1.365725,1.80887,2.779655,2.2880133333333332,4.62153,2.779655,0.777165,2.9446890000000003,2.2764525,0.10322863636363637,0.10322863636363637,0.10322863636363637,0.10322863636363637,0.10322863636363637,3.2905233333333332,2.7661866666666666,2.708493333333333,3.0642266666666664,4.68368,4.21903,1.7998020000000001,3.822515,3.744225,2.20948,4.82733125,2.72806,2.42314,2.479685,2.679315,4.596405,8.845550000000001,2.272675,2.0317866666666666,3.006158214285714,0.9518057142857143,1.3809533333333333,2.366826666666667,2.10113,1.5420775,2.7617966666666667,2.16784,2.6431633333333333,2.58783,2.6518633333333335,3.75211,3.416795,2.5946000000000002,1.3297599999999998,3.78854,3.63081,1.5510766666666667,1.301342,1.301342,1.301342,3.504565,2.6687966666666667,1.1016566666666667,2.23109,1.3668514285714284,4.41038,1.61414,6.448413333333334,3.3516825,2.5367833333333336,3.169768,3.169768,5.148249999999999,2.99055,4.653105,4.939115,2.249905,3.1550966666666667 +GSM1946757,1.0,1.94616,1.94616,1.5305933333333333,4.980305,5.57905,2.6713065789473682,1.6644933333333334,8.3420606127451,4.64762,3.02379,2.02597,2.102645,3.729695,4.12704,1.7841619999999998,1.505662,4.942205,2.370303333333333,2.4242375,4.99109,5.146448333333334,4.00496,2.666495,1.753332,3.60602,4.99924,4.147645,0.7463299999999999,1.4917633333333333,1.8918483333333334,2.0651975,2.534625,1.2286671428571427,0.7239874999999999,3.2286496428571425,1.52725,1.577985,1.2092,2.12553,0.97955,1.051095,1.077358,1.5255699999999999,0.8886139999999999,0.92189,0.783514,1.0779228571428572,1.7173919999999998,1.7939699999999998,1.512348,2.11604,1.721376,17.935232000000003,0.37012999999999996,0.8027900000000001,1.1251659999999999,1.8894860000000002,1.795262,1.803582,1.045662857142857,1.045662857142857,1.045662857142857,1.1445433333333332,1.305558,4.7797075,1.037535,2.1777375,2.0861425,2.585125,0.9861409999999999,2.31634,2.33457,2.1135125,1.388115,1.8364575,1.604435,1.6860175,2.6731433333333334,4.320735,4.711445,4.91013,1.4506033333333335,4.577475,4.846673333333333,4.09794,4.34853,1.025555,7.46203,0.6028925,0.6028925,1.9795725,1.1216314285714286,16.6462,4.25874,5.2466,4.488825,4.050115,4.031705,5.2248,0.5034844444444445,2.1967845833333337,1.6320025,2.2944375,4.759975,4.6204,1.11585625,3.28347,2.6486466666666666,2.32041,3.500666666666667,3.51151,4.81809,3.0083504999999997,4.543555,2.9815066666666667,0.7521136363636365,1.647618,1.9933775,4.31419,3.491945,0.560771875,3.660265,3.8665,0.936425,3.95172,1.6828712987012988,2.15586,2.52625,2.0404325,3.82136,5.4105,3.253645,2.7016266666666664,3.1783566666666663,2.9908133333333335,4.024045,2.9792400000000003,5.67545,3.44266,4.658955,3.5878,2.47554,3.51083,2.44876,6.964223333333333,3.678715,2.825275,3.47675,2.996695,4.687905,0.7599,9.337472857142856,3.324735,2.21749,1.8315183333333334,3.6032666666666664,2.32409,4.487305,5.5622,1.9761275,5.018481666666666,2.775175,4.733165,1.9761275,2.5573,4.496795,5.226283333333333,5.78895,8.185468333333333,3.30038,4.1907,2.988675,5.03475,4.533285,1.4355316666666667,8.12573,4.31451,4.051045,3.60952,3.567395,3.651685,2.224675,5.968685,2.2262,4.486185,4.12561,4.87617,4.526905,4.696105,1.3499416666666668,2.744715,2.87721,2.0334975,2.0334975,5.922771000000001,2.994895,1.9155066666666667,4.07157,4.448885,2.975595,1.4714366666666667,1.1233555555555557,5.47675,2.64691,6.88855,4.71181,4.50117,3.78108,3.09715,3.930465,3.46895,3.838135,4.16438,6.5222,2.78714,3.49711,9.034673333333334,4.695795,3.407666666666667,3.1660233333333334,2.8922399999999997,3.8244333333333334,3.9523391666666665,1.4127425,2.9750366666666666,2.3015233333333334,1.65611,1.65822,2.6553833333333334,1.73115,2.2098125,2.9513266666666667,2.71968,2.4704533333333334,2.94335,4.846673333333333,3.39828,4.22087,3.47357,4.64074,1.3321983333333334,2.021085,2.829265142857143,2.05086,2.52568,2.8203866666666664,3.3817333333333335,1.9123819999999998,1.3481366666666668,2.801906666666667,0.64345,1.70852,0.511108888888889,0.511108888888889,1.71971,1.9269733333333334,3.2499300000000004,1.2613966666666667,1.4842033333333333,0.3807176923076923,2.6851133333333332,0.64345,1.20943,0.2128783783783784,1.4582433333333331,2.1203975,3.6726666666666667,2.7482933333333333,2.23875,2.56052,3.173916666666667,2.36465,2.5679333333333334,2.8307466666666667,2.238163333333333,2.5490333333333335,1.84225,2.7302,4.789785,0.8006766666666666,1.8484433333333332,2.763056666666667,2.098193333333333,3.64715,1.484312,2.46635,2.3471433333333334,4.310583333333334,1.9523533333333332,6.75023238095238,1.6281857142857141,2.67292,2.322135,1.926385,3.6684666666666668,2.39067,1.84294,4.375045,2.6259900000000003,2.14779,3.828305,4.463205,4.460785,3.75434,2.280845,3.363895,5.318296666666666,3.714815,4.27541,3.92116,4.316455,3.03774,4.52138,3.37977,0.90103375,4.72234,1.2434216666666666,4.794155,3.721815,6.437364,3.98474,4.22422,1.0219975,2.14928,3.382925,3.963685,0.8229014285714286,1.3639861965811968,1.997995238095238,2.0653377142857146,4.88838,5.501548,1.883,3.498745,5.41115,0.32612214285714286,3.49012,2.326985,0.9484875,4.313575,1.9773,12.69392,0.945845,2.2184375,2.5554099999999997,2.43834,1.8908451315789474,4.552665131578948,0.30384263157894736,1.7099,2.9788833333333335,1.0070175,2.7274766666666665,0.8736071428571428,4.58306,3.904715,2.0559266666666667,5.8156,5.52625,2.2269225,1.2337557142857143,4.442393333333333,5.6186,4.20706,0.9290090909090908,8.546483333333335,3.1003833333333333,4.89317,2.6461900000000003,2.5865033333333334,4.829,2.6026000000000002,2.7717166666666664,2.2316266666666666,2.47343,3.748145,2.9470533333333333,0.334164375,4.37562,3.695925,3.77335,3.863265,4.440865,6.27557,4.106485,1.6394975,5.43895,4.808625,4.306155,4.929405,1.2125416666666666,3.224466666666667,3.404,2.4921433333333334,16.173285,3.249635,3.900155,4.739295,4.98936,2.72312,5.2437023611111115,2.35654,0.7538422222222222,2.4845225,3.50193,4.06803,3.74995,6.430415,2.91437,2.18062,2.177535,3.5577,4.380665,2.314175,0.3710445386904762,2.4475807608695654,1.9071875,1.13208875,0.4813736691252588,0.5917027995600415,0.3710445386904762,0.3710445386904762,0.3710445386904762,1.1133125,1.5118825,0.83238,1.466775,4.521952499999999,0.21198235294117646,11.501829004329004,2.9716966666666664,2.859476666666667,4.4169,4.399255,4.129735,2.206635,4.78648,4.112884333333334,4.92611,4.067035,0.6607500000000001,3.32298,4.000352820512821,0.6141864285714286,3.53588,3.388033333333333,4.64212,0.6111727272727273,1.808565,4.471155,3.433815,2.179315,1.8528833333333334,1.5687499999999999,3.561533333333333,3.9776,3.055845,2.8195599999999996,5.55395,5.4641,4.56766,3.2579166666666666,3.229635,6.735266666666667,3.978566666666667,5.9695,0.4123047619047619,3.2097833333333337,4.333745,1.93388,2.76955,2.8142899999999997,5.844233333333333,0.6347775,1.689405,4.440475,3.9176,1.008052857142857,4.369175,3.795095,5.2565,3.2857066666666666,4.75933,3.4608,4.293105,1.1872316666666667,3.597305,2.7225900000000003,4.927965,4.156485,4.730215,5.5545,4.352,2.821265,4.88667,2.2068066666666666,3.048875,3.3803666666666667,2.90342,2.9505733333333333,2.4833433333333335,1.7901399999999998,1.56046,2.059676666666667,0.8222028571428571,1.7810866666666667,2.4755333333333334,2.2034133333333332,3.12776,3.3397666666666663,3.001113333333333,0.892301111111111,4.89394,3.344466666666667,5.40236875,2.63459875,3.024266666666667,3.4659666666666666,1.0125183333333332,1.0125183333333332,2.4639340259740257,2.4639340259740257,3.0110197402597403,0.49665428571428566,1.7350066666666668,2.8409766666666667,3.661633333333333,2.105057142857143,2.105057142857143,2.105057142857143,7.417787857142858,4.161622380952381,0.9024654545454546,3.524075,4.797953333333334,2.1050575,4.43897,3.138075,2.22455,5.5038,3.0902233333333338,3.25574,1.1803,1.8253966666666666,3.3162966666666667,3.10934,2.4649733333333335,5.0095,2.81245,3.5849333333333333,4.334813333333333,1.4796766666666665,2.4668266666666665,3.2183833333333336,0.7518,2.0484133333333334,4.123581333333334,7.8891225,1.4409225,2.82607,4.9824,1.915446,2.0651975,2.0651975,1.0466525,5.02125,7.387035,4.043205,6.089816,4.43653,1.7841833333333332,4.49391,3.396505,4.70986,4.4344149999999996,0.36161421052631576,2.80063,2.52991,4.31852,3.785595,1.810966,1.9849925,2.7998,4.886705,3.95436,3.115915,2.47249,1.700116,6.90928,4.216995,4.42233,3.363775,4.041135,4.123125,4.41569,3.79709,3.5951200000000005,1.9206,1.2413528571428571,2.853985,3.81868,3.77032,5.515720000000001,5.443020000000001,2.16671,2.0639366666666668,2.651116666666667,2.701726666666667,2.8998933333333334,0.6662292857142856,2.26973,3.499905,1.04774,4.71104,3.14393,6.0184175,1.1976690909090908,1.1976690909090908,3.73193,3.720235,3.69759,5.21505,2.72915,2.26442,3.847505,3.9506,2.0525025,3.16046,2.51737,4.064235,3.8073725000000005,3.24255,4.234985,0.9782333333333333,2.55856,4.432885,4.27349,3.294295,2.6228933333333333,5.31095,0.7716277777777778,0.7716277777777778,0.7716277777777778,0.7716277777777778,1.5515327777777776,3.9737774999999997,3.9737774999999997,1.6048933333333333,7.551186666666666,3.74218,4.5524,3.17341,3.092475,5.24575,4.059635,4.86067,5.0959,2.1138175,4.46281,4.19153,2.73716,4.45683,3.352825,2.541765,5.1163,1.87028,5.213,1.58037,3.566707083333333,3.010835,1.730535,1.1895333333333333,2.90109,4.781525,1.4884499999999998,0.8386866666666667,4.055625,1.2022,4.964314666666667,5.2377,1.2998928571428572,3.65644,0.75811,2.6472599999999997,2.8648633333333335,2.4375666666666667,2.682095,4.59357,2.851906666666667,4.69667,4.82356,4.469555,4.44509,2.05881,1.265127142857143,4.141925,5.2863,1.5097975,1.5097975,4.095805,0.24704466666666666,2.03807,0.24704466666666666,0.24704466666666666,0.24704466666666666,0.24704466666666666,3.61594,2.6844933333333336,3.75507,3.43651,3.230916666666667,4.593515,2.3932800000000003,0.978605,0.978605,1.0347566666666668,1.0347566666666668,3.551045,1.944765,3.639815,1.6319482142857145,1.6319482142857145,4.68193,0.5082157142857143,2.2425625,7.325058333333333,5.2949,3.13425,3.31934,0.91400125,2.28071,2.1404975,4.57915,4.40723,4.074285,3.796615,1.2547042857142858,2.470175,1.830725,7.44288,1.93069,4.559955,4.72152,2.63873,3.84669,6.09632,8.21223,4.13171,5.72935,6.6833,2.14149,3.05939,2.287415,2.2629,1.770765,3.826125,3.61189,5.532368333333333,6.36691,4.354585,1.0402733333333334,1.67096,4.479445,4.151275,2.110405,5.6128,4.60573,4.471633333333333,1.7139966666666666,3.5189333333333335,1.54328,6.17642,2.65021,2.33892,2.1615166666666665,2.49423,3.427633333333333,3.5797666666666665,3.693,3.291816666666667,3.3156166666666667,1.487976,3.71854,3.116765,3.368135,0.41344450000000005,2.87113,4.30364,2.2428,5.26845,5.2029,4.62136,6.678303,4.81882,2.2410133333333335,3.783205,5.2177,1.578855,5.84635,5.5464,4.717125,4.43423,3.08152,5.52525,4.79906,4.35329,5.661580000000001,7.3604375,3.63117,1.4092366666666667,1.5286133333333334,2.968805,1.9474779999999998,4.726785,4.04853,5.3516275,2.48962,2.8716666666666666,2.78515,2.4754833333333335,2.33641,1.1455555555555557,0.5205782352941177,3.9068,3.93181,3.23826,4.203865,2.86687,3.295436666666667,5.498261666666667,2.84219,0.5875935294117647,3.512135,5.55935,1.9753225,1.702508,3.801195,3.307025,2.5613366666666666,3.8964666666666665,4.665345,2.5763599999999998,2.3292066666666664,2.2672966666666667,2.37061,2.629795,4.124623333333333,5.0102925,7.00008725,1.9086120000000002,4.99286,3.4819641666666667,5.4937785,2.76043,3.053535,2.383165,2.1902733333333333,1.219035,1.219035,2.5960033333333334,2.37732,2.74611,3.48592,1.7595580000000002,2.121725,1.86513,0.550095625,3.80474,0.5961775,0.90764375,3.39578,4.055785,4.34833,1.6876675,4.8773,2.80025,0.9115642857142857,4.22789,3.8575733333333337,3.324066666666667,2.55454,4.95856,0.2691151724137931,2.330280833333333,3.151565,1.38833,3.54872,4.082315,2.29033,1.30046,3.805505,3.73818,2.7740299999999998,2.7740299999999998,3.44058,3.530205,5.01025,5.28569,4.77159,1.192788888888889,2.5914699999999997,2.549463333333333,4.511825,5.0492,5.2883,4.95543,4.329933333333334,3.502266666666667,3.6117000000000004,3.3759333333333337,3.8831666666666664,3.1874599999999997,2.823093333333333,0.6967464285714285,2.554975,2.581725,4.0595,2.974576666666667,3.0784133333333332,0.7637383333333333,2.487005,3.4890784999999997,4.574035,5.2536,3.75598,2.4590125,2.4590125,0.937443,3.146395,4.33257,4.34228,5.630597857142857,3.05399,5.30145,0.5784845454545455,3.12141,3.881345,4.17301,3.2940891666666667,0.8804485714285715,4.170935,3.935585,4.50721,3.85793,5.2261,2.6577,4.201895,1.8045375,1.0092914285714285,2.8601799999999997,5.1716,3.754045,3.073735,1.455855,3.88805,2.5849,2.60875,2.7210597777777776,3.1516,5.282713333333334,2.831573333333333,1.7976959999999997,3.4000333333333335,1.4301305952380952,2.8912533333333332,2.8286366666666667,2.2006675,2.972856666666667,2.9257899999999997,2.6129166666666666,2.01351,3.905705,2.710103333333333,2.655793666666667,2.48278,1.849835,4.290471666666667,2.7554966666666663,2.488723333333333,2.655793666666667,2.282993333333333,0.8161209090909091,2.468305,1.0103977777777777,2.2993275,1.489665,0.868230909090909,1.8875925,1.9652225,2.7611845,2.600075,4.537125,1.4625625,3.71358,2.90265,1.5752599999999999,2.039,3.0953166666666667,1.4349100000000001,2.9710033333333334,3.0825833333333335,2.4061452272727273,1.9499525,1.8562360000000002,3.5984,2.463443333333333,2.8496766666666664,3.25881,2.62275,3.795666666666667,2.178033333333333,4.467,3.4757,3.8344,3.17971,3.673166666666667,3.5297,2.0109333333333335,8.02577,4.850635,4.94471,3.36438,2.87862,1.99203,3.9128,1.6776820000000001,4.039795,4.620565,1.459008,2.4183066666666666,1.1094883333333334,2.4443066666666664,1.6852866666666666,2.4019633333333332,4.920913333333333,2.9496066666666665,3.60144,4.776365,0.83417125,1.539602,1.02562,3.558895,11.518451666666667,4.1818,6.30305,1.9625575,5.1066,4.032305,2.4238825,5.8278,0.28136470588235296,0.8027928571428572,4.1475,4.89522,7.00718,2.137425,4.70245,5.3671,4.57633,4.57861,3.811245,4.335115,2.826455,5.251106666666667,5.17515,3.62557,3.37174,1.97783,2.24437,1.4372527083333333,2.36613,4.13104,5.0722,1.550072,8.79187,2.3715733333333335,2.70623,0.9744300000000001,0.9744300000000001,7.665230833333334,3.007195,2.4549225,2.169435,2.74985,2.1828600000000002,1.0221799999999999,3.0751841666666664,2.88607,0.6198699999999999,1.7588666666666668,3.2448119999999996,3.2448119999999996,1.1127366666666667,2.5401133333333332,2.2749633333333334,2.9448233333333333,1.378695,1.7207833333333333,4.865751333333333,2.56658,2.463515,1.3855975,1.3855975,4.71664,4.873105,4.778305,2.96455,3.55841,5.92962,2.86958,3.043283333333333,3.395633333333333,3.943555,1.10288,3.577366666666667,2.725725,4.312005,2.13045,4.77852,3.534705,4.23829,3.583295,5.294487,1.0580077777777777,2.0147975,1.7048,3.52234,4.8821,3.898545,3.69375,5.01735,3.90904,1.7594175,4.390905,3.34429,3.734425,2.379723333333333,0.8299675,3.269805,4.849705,5.016,1.1917666666666666,3.1537933333333332,3.3096300000000003,1.9650966666666667,1.787348725490196,1.787348725490196,1.2152716666666665,2.69299,1.0833314285714286,1.3154,4.699645,4.5199,0.517204761904762,3.57867,3.4367,3.833415,5.4118,0.4077805,8.784945,5.29005,3.27145,3.919525,4.233415,5.346629285714286,4.54614,6.8534749999999995,0.6887763636363636,2.9710366666666665,5.39235,2.3541333333333334,1.8927,1.9903980000000001,4.757525,5.16539375,2.249376607142857,2.6797166666666663,3.3206,1.85576,5.00105,10.87895,8.511828333333334,3.699533333333333,4.98405,3.0983058333333333,2.945055,3.857525,1.625364,2.74343,3.68918,3.673135,4.56644,4.86235,6.287376666666667,2.8861633333333336,5.3715,4.685295,5.1672,5.4252,4.5420533333333335,3.8395275,6.3839,3.38464,3.10724,2.905595,6.19995,3.61457,5.84285,2.01013,3.3231533333333334,3.319735,5.76325,4.11883,4.437275,1.4816340000000001,0.89752375,2.93,0.6305313333333333,4.370055,3.54591,3.491635,2.69735,2.0527833333333336,3.0369,2.4934025,2.9574920000000002,1.841082,2.95058625,2.90025,2.3076325,2.41827,3.589366,1.1454316666666666,2.699069166666667,5.3507,3.7321666666666666,0.9194625,2.703696666666667,3.6659116666666667,3.660743,1.5483875,5.56345,5.46975,2.0829,2.842143333333333,30.33602962627732,3.2460966666666664,1.61283,3.5904666666666665,1.75517,2.5167200000000003,2.8566933333333338,3.3963666666666668,1.96801,3.01245,2.4057,3.1571735,2.770653333333333,2.203515,1.7344125,2.1732,2.7531,0.37855545454545453,1.0624525,2.6752033333333336,1.51058,3.34414,1.5483875,1.8970900000000002,25.652800055555556,4.994505,4.75957,3.7299,2.579,2.3106875,2.5755833333333333,2.3028125,3.972465,5.656029,5.90245,1.600524,2.1413,2.119795,2.6777883333333334,3.6479825,5.3796,4.538585,4.593185,0.20270191489361702,4.883225,4.985844166666666,3.698405,7.9863,1.0371325,1.0371325,3.166373333333333,3.402935,5.7289,2.2424666666666666,1.1310444444444443,5.41375,1.8701775,4.31153,3.926855,3.40535,4.341205,3.829165,4.850475,3.060235,0.7041533333333333,3.07147,2.1937291666666665,4.506495,7.52095,4.6999,2.1638933333333332,2.1638933333333332,6.5402375,5.21015,4.062315,6.04685,2.23967,5.363016666666667,1.3532966666666668,1.5065266666666668,2.8200266666666667,2.0963233333333333,2.95576,2.9545033333333333,3.693495,4.071175,4.498225,5.32995,2.19664,2.104905,1.907735,2.551475,2.1243875,2.088985,1.939715,4.883216666666667,1.8757425,3.751619523809524,2.6153833333333334,3.15174,2.840533333333333,1.80672,1.5116857142857143,0.969965,2.65116,3.7129,0.734754,4.632995,1.6879,5.9078075000000005,1.926975,1.7935225,1.54365,1.4845266666666666,5.67413,1.868816,3.222096666666667,3.7535666666666665,1.30245,2.02406,4.836650000000001,3.1223266666666665,2.81758,3.6097,3.281163333333333,2.8740400000000004,1.2009155357142858,0.26043083333333333,0.26043083333333333,0.26043083333333333,0.26043083333333333,0.26043083333333333,4.40265,2.754573333333333,2.354045,3.6575333333333333,1.3255083333333333,2.59836,2.93608,2.8970866666666666,3.26607,2.808195,2.10221,2.992226666666667,3.0403333333333333,2.24437,1.9509475,3.6956,2.786773333333333,2.9134499999999997,5.34265,2.61712,2.65017,2.54187,10.629298333333333,5.142,4.74973,4.82077,3.901995,2.8576833333333336,5.1078,3.64176,5.04225,5.464488333333334,3.973575,3.129615,2.49221,3.595865,4.949167428571428,3.868515,18.51793555952381,1.24652375,4.689985,0.8518444444444444,1.19723375,2.8707,4.83224,4.28575,3.482105,1.3309933333333335,2.47243,4.38065,3.15251,4.619015,3.2674207142857146,2.6966533333333333,0.9437516666666667,2.8828633333333333,4.803215,2.2891275,2.456265,2.2432675,19.256100833333335,1.6380019999999997,1.2581625,2.56564,0.30742615384615385,1.8443375,2.7118,1.9698233333333333,2.8743,2.6456,7.801563333333333,1.9104825,2.54325,2.2667625,2.1387275,1.57507,3.3146133333333334,2.834445,2.96965,3.301273333333333,1.956615,2.4679495833333336,3.1040924999999997,4.459765,0.5217975,3.3410666666666664,2.76835,3.01132,2.0784225,3.549261,3.43495,1.52181,2.29301,2.181693333333333,1.5068933333333332,1.7767066666666667,3.538225,3.289825,0.7413116666666667,3.18099,5.61515,4.11463,2.14371,2.14371,3.210013333333333,4.955855,3.657505,3.235405,2.357775,1.1164181818181818,3.970055,3.51164,6.15755,5.07905,2.2613700000000003,2.2613700000000003,1.9111125,3.40084,4.952465,3.31252,4.096955,3.249446666666667,2.51781,4.40264,3.37247,4.27452,3.2054533333333333,3.5171666666666668,4.5148779999999995,3.342366666666667,2.5840633333333334,1.8966333333333332,3.823075,2.6808,1.5870866666666668,3.609645,4.228465,3.986645,2.35836,4.39254,4.131215,6.6647465,3.827495,2.1101,5.1096,3.05006,7.36747,2.6205066666666665,1.2829316666666666,4.44044,3.0682233333333335,4.438245,0.6523985714285715,0.9064166666666668,3.827155,3.793395,2.313427878787879,5.14105,2.860495,2.769645,11.658164,1.760914,1.179718,3.45749,2.6703,3.514955,4.886545,7.048995,3.1097399999999995,2.12479,3.0423333333333336,1.7690766666666666,3.442766666666667,8.294292257799672,0.8252071428571428,1.0139275,5.17735,0.48179733333333336,1.6505475,2.2485775,3.046275,3.248175,1.85642,3.844905,2.493885,13.677880000000002,4.90819,2.2334425,2.2334425,4.594835,0.8172383333333334,5.5832299999999995,4.036975,3.86378,6.080393333333333,3.35408,5.14245,1.4367566666666667,2.739405,2.55354,2.49623,2.98636,2.591575,3.139965,3.482735,3.53463,2.90643,2.85496,2.867655,4.42421,4.825475,2.9704866666666665,3.3078766666666666,4.966570833333333,4.491725,18.482142380952382,13.127545714285715,3.0755149999999998,0.6741833333333332,1.4436142857142857,4.717285,3.5104,2.8513950961538463,2.05626,0.8359322222222222,0.7014533333333333,0.6314585714285714,2.1845925,1.7820239999999998,5.214541666666666,3.2775499999999997,0.7080463636363636,3.354995,2.434215,2.15698,1.9532219999999998,6.15465,1.485822,4.374285,3.468445,2.9528,2.355405,2.6064133333333332,2.5435466666666664,0.7612172727272728,2.60693,2.8499533333333336,3.7453779999999997,2.945456666666667,7.557567083333334,3.598245,3.219265,1.87736,3.585935,6.23937,2.1766225,2.451435,2.2903675,1.581575,2.7078,2.428085,2.76845,0.926268,1.5721825,0.9050475,2.6319,4.19263,5.91505,5.81145,2.94018,2.312595,3.110175,3.429133333333333,8.066189999999999,1.1557899999999999,0.372321875,2.737305,2.0756,1.535452,3.501761,1.291642,1.9669836666666667,4.245025,2.936208666666667,1.19799,1.8677866666666667,3.8726016666666663,3.55362,4.40512,4.98581,2.5233,5.50475,3.864135,0.8012615384615385,5.08835,3.81137,4.256129583333333,3.4453333333333336,2.301695,1.276578,1.2658375,3.394895,2.79067,3.23126,4.43675,2.58757,2.561733333333333,3.241255,3.650185,4.82049,2.31782,2.693605,4.222005,6.2428,0.53917,4.35632,1.789755,3.46786,4.0139000000000005,2.020335,3.01805,2.05959,2.02557,2.652995,2.6672933333333333,1.9782166666666667,5.85905,3.54349,1.290782857142857,6.30605,1.0127366666666666,4.17198,1.6049499999999999,4.28842,3.98793,2.5143366666666664,3.04979,4.03738,9.12978,2.8808,3.51361,3.852535,3.66604,1.6366425,7.66314,3.71223,4.45366,1.692815,4.15448,3.082405,1.135135,2.0412600000000003,4.254305,2.21804,4.21712,4.72629,4.2646525,4.44053,2.3613225,5.2655,3.722265,3.5492666666666666,2.3220433333333332,1.842588,5.15855,6.27585,5.00945,4.67417,3.06504,2.39919,5.21735,3.44581,1.2069185164835163,3.92648,4.6691400000000005,4.1354,2.760035,3.56535,0.5017628571428572,0.5017628571428572,6.3704,5.3574,5.91585,2.133625,4.15994,5.09215,0.824244,4.262885,5.1619,4.649445,3.976775,3.832765,1.8690925,3.27918,2.1661025,4.38413,0.708625,3.927485,4.39229,2.941115,3.0571099999999998,4.838845,2.288575,3.2328,58.30226002597403,3.210495,2.6074733333333335,1.6655225,3.18779,3.93643,0.7900075,0.95416625,2.32761,2.32761,1.281574,3.046405,2.23937,3.6071584999999997,7.27645,2.46345,1.1456300000000001,1.3702266666666667,2.6881266666666668,3.957034166666667,0.9760329999999999,1.95066,1.081182,1.968525,3.907395,4.304685,3.02758,22.571369264069265,4.6,3.957365,3.137975,2.15966,3.359475,3.511015,2.557825,5.25149,1.739836,4.142515,3.307936698412698,6.174289027777778,2.05609,2.580915,1.821095,4.54372,2.4492566666666664,2.4224675,2.17709,3.822036111111111,3.532525,3.215985,4.26508,4.710455,2.440425,2.7969,3.17533,2.6106,2.9881611111111113,2.203885,1.9356925,3.389515,1.1607166666666666,3.896215,4.52501,2.696515,4.437195,4.444605,4.886331666666667,2.21993,2.40141,2.644645,2.79368,3.97485,3.28796,4.68604,0.7045957142857143,4.220922666666667,2.76724,4.23872,2.35136,1.818346,4.008761666666667,1.2833777777777777,2.775485,4.323805,1.102036,3.46262,3.601075,4.543995,5.7035075,2.031045,2.79002,2.668293333333333,3.8714,2.3581066666666666,2.738414666666667,3.4566,2.3618433333333333,2.3892933333333333,1.2868633333333335,2.153085,2.153085,1.8537566666666667,2.0562066666666667,1.7036133333333332,3.6809999999999996,3.80326,5.0695,3.385425,1.48666,4.38864,4.18494,3.402085,4.116055,1.8624425,1.76787,4.51572,1.82861,4.127585,4.019505,3.517445,2.460906666666667,3.68284625,3.10537,3.013855,3.428615,0.14152448979591836,3.0925,7.6287400000000005,1.481428,3.418525,2.999755,0.99922,1.132355,1.88259,4.232695,2.8202,6.777365,3.309585,3.63029,2.82491,2.618895,3.627315,3.33277,3.891865,3.302195,2.7814433333333333,5.36915,4.48582,4.8224,2.326346666666667,1.9781625,3.41722,4.201315,2.64995,3.01421,2.2308,3.511155,3.343035,3.736175,2.65776,4.162195,5.18395,2.784395,3.56035,5.12185,3.5169,4.761415,3.369045,3.032385,7.04138,4.41771,5.85505,5.0441,3.683765,5.39617,3.683975,3.58695,1.27454,6.6985,2.23827,5.0618,4.15265,4.09561,3.5460999999999996,2.0786633333333335,2.2638066666666665,2.4364933333333334,1.02843,3.2754499999999998,3.272273333333333,3.0432133333333335,1.9894433333333332,3.756455,4.42654,2.5767933333333333,0.5495033333333333,4.478035,4.63219,4.519835,5.19435,3.764135,4.49061,5.02545,4.565865,1.4069,0.9231076923076924,2.35307,4.94074,5.3866,0.479431875,2.815525,2.5030733333333335,3.21731,4.442225,3.8732333333333333,1.94859,3.936805,2.999565,4.435125,2.96894,6.0721,3.70313,6.889515,0.6339816666666667,4.2557,0.7509159999999999,2.30738,3.9476999999999998,3.3998666666666666,1.2037666666666667,2.1383,4.41208,3.552595,4.050275,1.9164266666666665,1.9811875,2.79933,4.967905,3.58486,3.91574,1.632732,1.1986498571428572,5.496,2.3339775,7.6156749999999995,4.332175,3.496205,2.1136825,1.610675,4.052225,4.73599,1.7813166666666669,2.400375,2.59975,3.0925,6.634759166666667,3.1199583333333334,2.7165866666666667,3.8976141666666666,3.047225,1.9933233333333333,3.759275,6.833537499999999,4.15873,4.958435,0.6214163636363637,3.827955,4.307415,4.356099642857143,4.34821,4.02439,3.023775,2.677935,3.243485,2.88522,3.6836618333333337,1.6068079999999998,5.050168,4.60685,5.17265,3.86849,3.276715,3.399700833333333,2.2878675,1.3319275,0.87625,2.715335,2.77201,1.0507333333333333,2.62917,6.3765,5.5505,3.63691,4.77335,15.608763571428572,4.746055,4.429935,4.294905,0.6983991666666666,5.40095,4.647635,4.975935,4.751095,5.1689,2.342665,3.647645,3.250775,1.5146359999999999,3.08526,3.955725,2.488913333333333,1.414994,3.804725,4.8086,3.984455,5.58025,4.635395,5.7316,4.31195,2.935696666666667,4.202045,4.294815,2.574065,2.9601366666666666,3.0453166666666664,1.7141116666666667,5.1368,2.8087110714285717,1.8887333333333334,4.108435,2.77553,4.361885,4.290471666666667,2.042905,2.79711,4.1542,3.50107,4.23965,4.210935,4.196025,5.015381,3.316885,5.21715,2.528375,3.92528,4.482545,1.540152,4.55251,1.0581166666666666,4.202385,3.17345,1.1483342857142858,3.649155,2.056295,6.631845,2.4127599999999996,2.4127599999999996,2.4127599999999996,0.7125233333333334,1.3861416666666668,1.74537,3.4246,6.37471,3.459715,1.94204,2.2824975,1.7014266666666666,3.751375,2.40164,0.4187584615384615,1.602145,2.10841,2.8418,1.725245,3.363765,2.41785,2.059525,3.82119,2.7668133333333333,3.05658,3.416605,1.915545,6.61494,1.97442,4.17515,3.782675,6.8029633333333335,1.5333966666666665,3.54603,4.021825,3.780125,4.969115,2.704555,2.1065725,3.701515,6.428297166666667,2.22737,3.577635,3.147845,2.04202,4.82644,4.722275,2.7273599999999996,2.201725,3.8160225,5.975875714285714,5.6923,2.97256,2.349815,2.634795,2.89144,3.187995,3.44338,1.481725,2.655595,4.621995,0.7530275,4.336415,3.839455,3.74992,4.9354,2.36445,3.695725,1.94658,4.60881,7.9612549999999995,4.441545,3.26076,4.808495,0.96967625,4.8158,2.247075,4.254685,5.4545325,5.4359,4.30891,10.749105,4.61322,3.950985,1.4901625,0.7008308333333333,2.594415,3.898115,3.433415,3.638685,2.0592566666666667,2.457126666666667,2.367316666666667,1.1140649999999999,1.1140649999999999,1.8890066666666667,2.334373333333333,3.1071000000000004,2.8492633333333335,3.2161233333333334,3.7870333333333335,3.040343333333333,2.6149999999999998,1.3407833333333334,2.3156833333333333,2.080573333333333,1.8439533333333333,1.403315,2.68445,0.8045,9.54757625,0.8045,3.3300733333333334,1.9128383333333334,2.126256666666667,4.629335,4.090305,4.604595,5.0395,2.74354,2.8245733333333334,3.2890059999999997,3.2243999999999997,3.6153,3.19894,3.1300066666666666,3.348466666666667,1.6768766666666668,5.4126,7.291492761904761,2.672973333333333,3.4017,3.0106633333333335,2.65136,2.77407,1.2286671428571427,3.282996666666667,3.1463466666666666,4.015075,6.08415,4.342815,2.9587133333333333,3.552,3.23092,4.4158655555555555,4.127355,2.59883,3.79705,3.101433333333333,3.0865299999999998,4.86807,2.76564,4.423315,6.245966666666666,2.7329333333333334,2.6060466666666664,1.6605766666666666,1.47068,4.964583333333334,3.3471116666666667,2.529456666666667,2.0737366666666666,1.9736133333333334,4.55488,3.95532,2.48432,3.5129,3.259126666666667,3.5888666666666666,3.806233333333333,3.7611333333333334,4.0071666666666665,0.63344375,3.790566666666667,2.600443333333333,2.5793133333333333,3.15598,5.27705,4.911595,5.48385,2.561625,4.64653,1.22769,2.73136,2.73136,4.015035,3.58196,3.631405,3.38208,1.6348,3.06173,3.859125,0.8989771428571428,3.7745135000000003,2.8150687142857143,1.8650829999999998,0.356423,3.37827,3.365815,6.559385,3.157675,5.35145,3.191595,3.842855,4.049705,1.7595654166666665,2.90666,4.94835,3.288045,3.1439466666666664,2.89345,5.85211,2.11473,0.982235,1.87517,1.5822833333333335,5.26951,2.3541733333333332,2.3750566666666666,1.7239075,4.77698,3.86979,3.985195,0.509355,4.25677,4.60197,2.751136666666667,2.467,2.90868,3.2953041666666665,4.263306666666667,1.4888866666666667,0.6811894736842106,0.7985857142857142,3.802466666666667,4.317005,5.951313333333333,4.6574,4.99107,5.33035,1.4846714285714284,4.0139000000000005,2.1959233333333334,0.97889375,5.2254,6.04195,3.170025,4.723325,3.980605,7.017683333333334,4.034766666666667,6.609436666666667,3.71644,2.7288763888888887,6.0233,10.00095983974359,2.6374166666666667,0.74147,3.716875,4.29211,2.218425,6.58845,4.37683,4.004225,2.8107433333333334,2.8107433333333334,3.650245,3.79728,4.09163,5.32295,4.017420857142858,2.4840017142857143,1.1873625,5.86005,2.551905,5.51898375,3.631735,5.83545,3.370185,2.1884125,5.05075,4.731045,3.4626333333333332,3.953095,4.577375,28.663502023809524,2.09719,2.701975,2.2153225,1.6341583333333334,2.7052633333333334,1.5998428571428571,3.26923,2.9461633333333332,3.2699133333333332,3.23908,0.6713023076923077,3.244543333333333,4.817195,3.59177,3.405466666666667,4.918475,6.42803,5.19065,4.544105,3.801485,4.201671666666667,4.44253,3.4471000000000003,1.72634,0.9066416666666667,1.41395,3.911766666666667,1.7994899999999998,4.046233333333333,2.3949700000000003,2.27679,1.7273133333333333,3.493075,3.03825,1.91834,2.909925,4.068075,3.663965,4.16148,1.57117,4.078633333333333,2.4996566666666666,3.889675,2.30803,2.62081,2.910225,1.5113966666666665,4.14277,6.5235666666666665,2.96731,3.6978,3.95547,2.5675,3.041990833333333,3.5675333333333334,4.857685,4.70231,0.31108342985842985,0.31108342985842985,5.085,5.2491,5.2267,2.83315,5.58525,4.63497,0.7579476923076923,4.799505,4.866535,3.76193,6.20565,4.527375,7.47151,13.537035,13.053008205128204,4.01938,4.290105,2.6998933333333333,0.6381315384615385,2.7273266666666665,5.6793,1.303685,4.62904,3.5316333333333336,2.9816266666666666,2.087876666666667,1.9177133333333334,4.670115,3.890535,8.993389047619047,5.3231,4.027725,6.869816704545454,3.263845,2.719773333333333,1.4317725,5.121454999999999,2.338915,2.57342,2.7732799999999997,0.344965625,2.955595,3.250955,4.908549166666667,1.4719659999999999,1.3640683333333332,3.97132,0.6033540000000001,0.6033540000000001,2.9143620833333337,2.70247,3.815533333333333,4.39868,4.395985,5.48875,3.77683,4.09397,2.843145,3.032166666666667,2.522346666666667,0.6540741666666666,2.6189899999999997,2.85195,2.964785,5.83962,2.898085,5.493265,1.94158,2.906165,2.95316,2.0837425,2.91755,3.180575,1.6708,2.3491625,2.0410925,3.23872,2.431335,3.795185,2.868955,4.081475833333333,4.081475833333333,2.6922275,2.6922275,8.773763,2.4711066666666666,0.8071759999999999,2.5779799999999997,2.5087966666666666,2.4912666666666667,3.795185,1.960854,1.96606,1.6815740000000001,3.70516,4.37621,1.7524225,4.34428,3.99683,6.55796,6.667836666666666,2.3237466666666666,4.54402,9.22849,5.1318,3.78029,2.9562033333333333,4.307955,3.886240606060606,4.472525,5.256233333333333,8.239236666666667,3.42342375,3.56995,1.2233166666666666,4.49506,3.870975333333333,4.357215,3.8276508333333332,4.53227,2.912665,2.7153666666666667,7.91553,3.8568,1.489316,6.17764,3.759535,3.3461,5.0049,3.3461,3.49403,4.150875,5.0624,1.0636128571428571,3.6441,4.992725,3.69343,1.3462816666666668,1.764845,5.04525,4.285075,2.82164,7.06444,4.88413,4.348755,4.670615,4.19309,1.517945,4.29266,2.78839,3.943755,4.46902,4.585695,4.817705,3.018495,4.90023,5.02985,2.1246833333333335,1.8005125,3.8903666666666665,2.8982966666666665,3.14364,3.0251366666666666,3.5327,2.8700666666666668,4.34554,3.17864,3.566025,2.920415,1.7653366666666666,3.485533333333333,2.12076,2.97124,3.135,2.854135,0.708625,2.1573625,1.8686666666666667,3.29237,1.9550360000000002,3.467397,3.652705,1.488364,3.262985,4.338075,0.800798,1.3950466666666665,4.5135,3.793895,4.84253,1.97866,1.6300333333333334,3.55972,2.3600241666666664,1.7202033333333333,2.860165,1.86382,1.196094,1.3641975,6.242845,3.52465,2.300305,2.322055,2.3552325,3.747085,0.862725,0.34040857142857145,0.7822785714285715,5.20345,2.0441860000000003,4.135375,2.2156175,1.9614791428571432,3.2251037142857144,1.2636245714285714,1.0095571428571428,0.6620199999999999,0.6125485714285714,2.6358708333333336,6.4013,2.863285,4.31235,0.30288464285714284,3.410925,18.555437857142856,3.12289,7.334038355477856,1.0800075,1.0800075,1.0800075,1.0800075,6.148558333333333,3.748665,3.05464,2.3171500000000003,3.400495,2.97722,4.037105,3.939695,3.44338,4.60704,4.26763,4.166855,3.6817246666666668,4.056085,4.81405,5.3699,4.81665,3.43763,4.511205,2.78134,3.887695,3.23037,3.831335,4.0539,4.52399,3.2212533333333333,2.6621,2.46628,4.579265,1.3441192857142856,3.774335,3.12536,3.348542666666667,4.2646525,3.794655,3.010425,2.95395,4.874015,4.464875,3.18224,5.22115,4.644715,3.39692,3.841745,1.8564399999999999,1.8564399999999999,1.375495,4.569665,3.776095,5.808749,5.04715,3.5151183333333336,6.25305,4.665485,2.1504975,9.323654999999999,5.43995,6.3316525,4.302445,3.0655066666666664,4.28616,0.2514641379310345,0.86877875,3.984566,3.36522,5.1551,3.07997,6.208066666666667,5.32415,0.5680828571428571,2.58031,0.455037,1.7260097619047619,3.486795,2.561455,4.38838,3.546125,3.302575,3.47132,3.290415,3.53679,3.36905,3.50624,4.085175,2.3699,1.7260097619047619,2.680475,2.0384925,3.603285,2.38711,3.56368,3.58054,1.6366425,4.402405,2.874555,1.3996233333333334,5.4953,4.76807,4.16789,2.9710866666666664,3.11987,4.815925,1.8285866666666666,1.42037,2.35641,2.6011666666666664,2.5063666666666666,1.9150766666666668,5.39375,3.52769,5.098039999999999,4.011372857142857,4.90316,4.27798,1.791192,5.1038,4.402935,5.2583,4.164525,6.694925,1.606055,4.647765,4.42916,3.05323,2.110575,1.6878333333333335,3.841905,4.50952,2.25682,2.192177916666667,3.2522225000000002,3.2522225000000002,2.8326366666666662,3.0615466666666666,3.323185,4.00101,3.45426,0.8301923076923077,3.39531,4.21407,5.0464633333333335,2.978755,2.99761,1.7572625,2.8638,3.49732,2.389675,4.6079,4.14783,4.151655,1.9705633333333334,1.0294272727272729,6.19501,3.56156,3.7596333333333334,3.6460333333333335,1.9420179999999998,30.074255833333336,4.609685,3.192685,4.893195,4.45053,0.8906333333333333,7.8237,2.565525,5.35755,1.6927666666666665,4.819955,5.585251666666666,3.595655,3.032735,2.09431,3.9977,4.78649,2.1795125,2.7601333333333335,3.76511,2.813205,2.50643,5.6108,2.03917,2.82255,1.12833875,4.35052,3.56076,3.98321,4.153615,3.27761,2.33564,4.364095,4.641015,3.71206,3.71206,6.58375,2.679675,4.25839,7.5706,3.369275,4.385775,4.11194,2.29501,3.51528,4.14177,1.3572525,2.607335,4.341455,4.30644,4.58421,4.34628,2.628865,7.898746666666667,2.51707,3.69627,1.7057428571428572,3.56855,2.0626933333333333,2.6452966666666664,2.9488129166666663,1.4656133333333334,2.5893333333333333,0.9249085714285714,1.0735857142857144,1.0735857142857144,1.0735857142857144,1.84178,0.55701625,3.7883,1.1578066666666667,3.10096,1.1214883333333334,1.7624366666666667,2.577453333333333,2.247716666666667,0.763245,1.75585,1.6726833333333333,2.3588066666666667,1.6388000000000003,1.6388000000000003,1.5682433333333332,1.9616466666666668,1.137036,1.7718633333333333,1.5567633333333333,1.1970133333333333,2.109025,2.335465,5.6546,1.8010025,4.169605,18.23270533333333,6.70542,3.38462,3.30405,3.1076,2.92052,2.7688466666666667,3.00418,0.7562566666666667,1.05441,1.05441,0.6413375,2.4732266666666667,4.39271,5.1841,1.6993580000000001,5.1269,3.747365,2.43663,3.788165,4.89731,3.825875,5.3787,3.542033333333333,3.263665,3.345525,5.53445,3.5022,4.40235,0.5190210000000001,0.5190210000000001,2.23258,3.283755,5.34885,3.736225,4.321775,4.56122,6.8807100000000005,7.943760000000001,3.33298,2.740935,4.18366,4.070545,2.5445733333333336,2.303605,3.090935,1.5376966666666665,3.777975,2.47247,1.8319025,3.199683333333333,4.66723,1.8851375,5.256233333333333,1.783425,3.6098666666666666,3.668665,0.8480257142857143,3.4524333333333335,2.829886666666667,5.35515,1.1342366666666666,1.6520225,2.549425,2.1281175,1.65589,2.49595,2.49617,2.0442625,4.09942,4.20424,2.54594,1.796885,1.4524100000000002,3.720333333333333,1.9630433333333333,2.4010825,4.460005,5.471,2.1195458333333335,3.02798,3.46091,3.748645,2.366545,5.57425,4.031405,3.274955,1.4948875,4.281765,2.196665,2.9453133333333334,2.53035,3.85783,5.1122,5.28485,2.3139600000000002,2.9531533333333333,2.9291199999999997,3.3487333333333336,1.95085,1.55294,5.0989,3.2708266666666668,2.2416454545454547,3.11932,2.90906,2.5323733333333336,3.555566666666667,3.2384766666666667,3.5418333333333334,5.0414,3.97204,2.9601366666666666,5.1851,3.637285,2.320605,3.523125,3.992225,3.76667,5.8438435,1.79462,3.77857,3.132565,2.41574,3.677445,0.53971875,2.318755,2.236815,3.597335,2.8686,2.090935,2.731035,0.736782,2.84991,4.93278,2.2945825,5.0261,2.3579133333333333,3.98686,2.02453,4.226085,3.638515,1.580152,3.05129,6.8856175,4.19174,4.43316,4.804615,7.019250795454545,4.765215,4.48396,2.1800725,4.862265,4.0441,2.26348,1.902605,4.2007,0.98878,2.179996666666667,2.7061433333333333,2.809293333333333,3.881933333333333,1.798962,3.167685,1.9084633333333334,6.205,6.941202499999999,1.01579625,1.78625,2.6129966666666666,2.788866666666667,2.0362033333333334,1.0805016666666667,5.662326666666667,2.271305,2.6759833333333334,3.8114333333333335,2.973046666666667,3.290233333333333,3.147125,2.259183333333333,3.0186333333333333,2.37052,4.38031,4.4798,3.98905,3.8190666666666666,3.7316000000000003,1.04556,1.71837,2.328085,2.0874466666666667,2.57974,1.1343349999999999,2.7129499999999998,2.9427800000000004,3.120055,1.9932333333333334,3.44773,3.967185,5.8812,3.276505,0.6054875000000001,2.01678,2.7109566666666667,3.5749333333333335,0.8389745454545454,2.7346533333333336,3.5031619999999997,3.9195333333333333,2.9848700000000004,3.2221141666666666,3.667145,3.5192,2.9459700000000004,2.10362,5.7303,5.87665,5.07875,5.1832,5.71145,1.7266966666666665,3.481265,3.951833333333333,3.4794666666666667,2.9916633333333333,2.9610633333333336,3.9351333333333334,3.7071666666666663,2.93346,14.312806666666667,4.214395,1.00882,3.1885999999999997,1.519632,3.121836666666667,3.1641266666666668,2.4185766666666666,5.4335016666666665,6.574069166666667,2.3565066666666667,0.916873,4.26489,3.3648666666666665,3.04321,4.74215,4.996515,5.5645,4.848105,3.35726,2.012755,6.42056,1.2233166666666666,6.418525000000001,4.87968,2.7325933333333334,3.71366,7.545275,5.97495,2.263456666666667,1.6225816666666668,2.322135,7.3972516666666674,1.5483875,3.036706666666667,2.5551,4.282305833333333,5.36025,4.19509,6.497,4.08387,5.2445,3.705675,8.90936,5.23645,5.5302,3.65009,2.57255,11.17935,3.46553,5.0188,2.44704,1.62456,1.8468566666666666,2.80381,0.68786375,1.23692,1.0762228571428571,4.181055,6.806146666666667,3.2059433333333334,1.5502533333333333,5.2356,3.30953,0.567424,4.085415,3.251005,4.02621,3.885425,3.59921,2.597863333333333,4.14116,9.967015,1.778115,3.8315875,3.317545,4.524035,3.7841,0.884775,3.5465,4.042933333333333,1.6500666666666666,2.502553333333333,2.2612633333333334,2.6961999999999997,2.69946,2.16069,2.238645,6.114822857142857,4.11636,4.5128,4.87655,1.58852,2.491775,5.1466,4.73446,4.863255,4.197515,4.696285,4.760795,1.8564399999999999,3.947695,7.288805,1.1131083333333334,1.6116000000000001,2.6050733333333334,2.319573333333333,2.7270266666666667,4.8043825,0.7985857142857142,2.41147,3.1332,4.14441,4.280615,2.3516366666666664,2.84951,1.8777275,0.551573125,2.326685,2.88102,7.577545000000001,4.23841,4.828375,0.880152,3.1640266666666665,9.407024166666666,11.453431666666667,3.64604,1.174035,3.40332,3.702385,2.8889266666666664,5.479811333333334,5.14735,4.218905,2.011455,3.746033333333333,2.11728,2.55172,0.7523299999999999,0.41456666666666664,2.45989,3.301395,2.0082413333333333,3.370355,3.5757666666666665,4.990245,5.1051,1.513048,3.2628,2.12082,2.12082,2.186625,2.826165,2.74362,2.7348966666666663,2.8661733333333337,3.449666666666667,3.383366666666667,4.06823,4.33273,4.843605,4.07691,4.08083,4.627075,3.89468,8.102448333333333,2.0436,2.315043333333333,2.4768733333333333,0.9167000000000001,0.6952858333333333,4.11445,2.21415,5.5636,2.8620033333333335,3.1817266666666666,1.8172799999999998,1.3659625,3.5284,4.15936,4.249725,1.4868016666666666,1.3370066666666667,2.6159333333333334,1.9423566666666667,2.5335433333333333,1.0717628571428572,1.0717628571428572,2.7068333333333334,3.985535,2.862545,3.060035,3.49926,2.129805,19.670802454545456,3.741525,5.545719999999999,4.17749,3.69877,4.18898,3.787555,5.3381,5.925057499999999,1.226625,1.226625,1.226625,2.66368,1.6990142857142858,3.753766666666667,4.34591,4.113555,3.52203,4.208345,4.19228,0.8571366666666667,2.615596666666667,3.0498166666666666,6.0079775,3.3623175,4.08861,4.34325,2.020335,1.9962966666666666,2.35996,0.51550875,0.793428,1.776445,1.92903,3.04769,12.538523333333334,2.5207133333333336,5.15775,0.7306928571428571,9.527875,5.76015,3.72427,4.443325,2.765025,5.70685,2.765025,2.6333,4.412635,3.851865,3.92573,3.822665,4.268515,3.521995,5.775,6.5489820000000005,1.73442,2.279526,2.681355,27.84195335842986,1.438772,6.10395,3.718298,3.878605,4.189535,4.43279,2.634855,2.855185,2.282555,5.55675,6.5645,5.1488,4.377725,4.373865,2.0199725,2.602185,4.09795,0.8402846153846154,0.8402846153846154,0.8402846153846154,0.8402846153846154,3.973945,3.1114349999999997,0.9535633333333333,1.7558166666666668,1.1501333333333335,4.54358,2.463556666666667,2.46158,7.226291666666667,3.2669833333333336,0.17275689655172413,20.582688333333333,4.430705,1.7657800000000001,1.346105,2.24286,1.97901,2.75625,4.579065,3.16525,4.918875,4.16312,2.29179,7.1745875,2.6975,1.91637,4.575615,6.1081,8.006053333333334,4.71434,0.2717487804878049,3.54876,4.12446,2.90561,2.125185,2.9198466666666665,1.605385,1.605385,3.980245,5.5816300000000005,11.925499166666667,9.34395,0.6452055555555556,2.53622,4.10245,3.118235,4.1791,5.30865,1.893952,1.893952,3.58059,4.361125,3.0323766666666665,3.60962,5.2731,5.5943,5.270702,1.950322,4.751265,4.166085,2.639955,3.0127333333333333,3.3290466666666667,5.07225,4.66841,5.12835,4.28755,4.26705,3.78048,4.417475,4.17057,5.4042,2.89754,3.4674,1.12326,4.265025,4.300105,3.798645,1.8320180000000001,2.0910866666666665,2.1319466666666664,3.1999600000000004,1.9887433333333335,4.3103,1.91095,3.051025,3.8751333333333338,3.7919666666666667,2.44908,2.92444,3.4276666666666666,3.2946233333333335,2.660553333333333,4.599845,2.09851,2.6745066666666664,2.2796966666666667,6.0746,3.689633333333333,40.55256475,2.0881529090909092,2.0881529090909092,2.4230666666666667,3.4305333333333334,2.0701733333333334,1.7340266666666666,2.85179,1.7783,0.71191,4.78271,7.4033875,4.12521,3.88793,4.728395,1.8915499999999998,4.181885,1.8209779999999998,4.832985,4.735585,5.83105,4.059205,1.72634,4.057805,4.944775,4.837275,5.51395,5.65415,4.03255,2.85705,3.5414333333333334,2.7094,2.114405,1.81204,4.469575,1.9905933333333332,3.718025,3.718025,2.1658566666666665,1.5830266666666668,2.85004,2.4907833333333333,2.60917,5.16852,2.69975,1.1541033333333333,1.1541033333333333,3.27085,1.9828000000000001,2.5023433333333336,2.55866,2.5549766666666667,2.36273,2.35473,2.149262,2.9016634285714287,1.5411614285714288,0.7524014285714287,58.73817601984127,2.347944,1.72637,1.9139239999999997,0.810394,3.2474,1.585402,1.585402,2.24687,3.0471266666666668,0.78876,2.1351466666666665,6.250096666666668,3.775,2.520986666666667,2.7714533333333335,2.005123333333333,2.598322666666667,0.2939725,2.18184,0.7401760000000001,2.46755,1.277582,1.277582,2.21566,1.6391339999999999,2.078953333333333,1.2419413333333333,2.7089366666666668,1.2419413333333333,2.04367,3.026806666666667,3.324313333333333,1.338936,1.338936,3.1023099999999997,1.4179233333333334,2.6408366666666665,2.1590599999999998,4.699555,4.07518,12.791421833333334,7.303329999999999,3.13503,2.70858,4.20748,5.015,5.33545,2.89528,4.505155,3.52613,2.3212366666666666,3.76227,3.2105,2.74767,4.82037,2.1975266666666666,1.100982857142857,3.9318275,2.8184299999999998,2.7942,0.7680342857142858,2.49124,3.58018,4.64752,4.28899,6.6685,3.15251,1.9951059999999998,4.17702,4.62114,2.40227,2.670373333333333,1.9266333333333332,2.090434666666667,0.895348,5.50045,4.855015,4.76052,3.76063,3.275043333333333,3.985375,5.41815,3.2106933333333334,1.7613,0.5200406666666667,15.718114333333332,0.5032454545454546,0.5032454545454546,0.5032454545454546,3.010666666666667,3.7544,0.5032454545454546,7.602256666666666,4.471086666666666,0.70424,0.70424,2.8988866666666664,3.23997,2.984255,4.178825,4.17917,4.1773945,2.0953105,4.704703333333333,3.910505,3.489363809523809,4.45974,2.96802625,2.4248225,2.2707825,2.5659,1.6218075,3.6642591666666666,3.08995,2.34927,2.122345,1.986665,1.7330333333333332,1.550145,2.510275,1.1683555555555556,2.516475,0.6058557142857143,5.14855,1.73214,0.9048166666666666,2.629825,7.749063333333333,2.49165,2.011025,3.16548,7.45572,3.031955,5.20445,3.00975,5.8935,3.943325,4.0435,4.461495,5.2504,2.9839866666666666,4.47457,1.1598171428571429,4.43953,2.44687,2.7578366666666665,2.54163,2.26012,2.18452,1.2430625,5.13385,0.868230909090909,4.716715,5.21135,5.3103,5.7625,3.7898,2.5749866666666668,1.908596,3.09191,2.8187333333333338,2.357675,3.6732333333333336,2.6476,3.91358,1.7822179999999999,40.46934126984127,5.0094,2.37637,3.18825,3.5451333333333337,1.55342,5.583986666666667,4.180385,2.539,4.0565,2.2380166666666668,1.609675,5.3855,0.79655,5.288953571428571,1.3887714285714285,3.4866333333333333,3.551966666666667,2.9082866666666667,1.4378125,5.00226,1.728586,1.728586,2.58938,3.0090624999999998,3.3555333333333333,3.7680666666666665,1.3841400000000001,3.1458,2.7129066666666666,6.410563499999999,3.0013666666666663,3.46209,0.93189,1.3904066666666666,3.0064733333333336,1.067768,5.186695,3.623466666666667,2.9003200000000002,3.7002,3.3537666666666666,2.6749766666666663,3.289453333333333,1.7096833333333334,2.3552325,2.55612,3.531966666666667,2.6804566666666667,3.6750333333333334,2.7447766666666666,0.5822193333333333,9.758586282051283,2.7107500000000004,5.34615,5.1783,2.756596666666667,2.874563333333333,1.3815775,2.130923333333333,2.31054,1.3815775,2.718075,0.437800625,0.437800625,1.0262825,1.0262825,0.8862175,0.8862175,2.848555,2.991415,2.85345,1.434495,1.75453,3.674455,2.88266,4.838945,4.70115,2.1758800000000003,4.32295,2.12029,4.758537863247863,1.3770575,1.3770575,2.524315,1.828484,3.6302616666666667,1.99805,4.562195,1.3309933333333335,2.1189575,0.6441707692307692,1.2754942857142857,2.23373,2.279615,2.366155,1.41283,4.848905,4.047445,2.9180233333333336,2.6796666666666664,1.4297433333333334,0.6722683333333334,2.448446666666667,4.1517,2.43886,4.93559,5.51955,5.22935,3.843655,6.74444,1.6840666666666666,6.2165,1.81202,4.65273,4.68793,5.945277000000001,2.6404633333333334,2.34815,1.770675,1.8463360000000002,1.8463360000000002,2.3780675,2.3780675,4.30016,4.905545,0.930194,4.50553,3.794315,3.411495,3.06438,1.617765,2.7977366666666668,4.07199,4.447505,1.806476,6.4945,6.42755,1.7746433333333334,1.18854875,3.93631,4.119806666666666,4.002115,3.50342,4.03382,0.6906635714285715,3.013123333333333,3.061783333333333,2.6685833333333338,2.9157733333333336,2.1651266666666666,3.5815,1.5148571428571427,1.5148571428571427,1.5148571428571427,3.036303333333333,3.3606,2.1681766666666666,3.5636890952380953,2.358705,1.2126214285714287,3.0328199999999996,3.2603766666666663,1.3826657142857144,2.95148,2.7197833333333334,1.2441242857142856,3.0747233333333335,2.9029333333333334,2.9650499999999997,3.047416666666667,2.8763466666666666,1.986885,3.3444333333333334,5.1824580000000005,4.094465,0.91327,1.6792200000000002,0.748302,3.6024,9.460329999999999,2.90301,3.276075,2.16826,4.222790833333334,1.8903275,7.588446666666667,6.45352,2.99966,2.534418,4.561275,4.5913,1.529776,1.19662,1.2454779999999999,1.971925,11.275703333333333,2.8155933333333336,2.87688,3.1081046666666667,3.885385,2.462223333333333,1.2233125,4.74147,1.2251416666666668,3.766526153846154,3.5524,3.3735,3.1656033333333333,3.438375,4.995975,1.1732850000000001,2.033395,2.171222666666667,2.171222666666667,3.70229,5.5214,6.5908775,3.624615,3.66481,5.1245,1.7336875,2.2738766666666668,4.749985,4.886785,3.755005,1.5168416666666669,2.9928266666666663,3.455995,3.90103,2.5417,3.975045,3.723815,3.411085,4.031625,4.332045,4.514335,5.5639,3.270443333333333,2.4533733333333334,4.39267,2.94878,3.7927,1.93414,2.632835,2.51028,5.52385,2.413555,3.1935702840909093,1.59577,2.60039,3.261485,2.1814875,2.0584725,0.7505633333333334,0.7505633333333334,1.7258175,3.9593684848484845,4.19912,2.7817233333333333,4.167875,3.9057866666666667,2.479059142857143,1.028355,2.72695,1.664505,4.70191,4.1529,0.8848704166666668,1.77105,3.830285,2.8777375,1.5340375,1.6063633333333334,5.10664,1.0330783333333333,2.87694,3.108135,2.695,2.73037,2.750187,2.06147,0.9828975,2.77625,2.855315,3.404455,1.3658166666666667,1.4981799999999998,1.764235,4.35362,2.15572,4.301705,4.64508,4.240305,5.5454,5.44265,4.23338,5.998245,4.245120952380953,0.7950554545454545,2.735205,4.065725,4.167635,0.3813954545454546,0.9325939999999999,2.940425,4.042255,4.955645,4.521785,3.334044642857143,2.962085,4.97165,1.757066,2.65925,4.42171,4.3155025,3.65918,2.940885,4.40723,5.0656,2.796375,5.7152125,0.956882,3.426345,2.4751,4.549555,4.38996,4.652535,2.03404,2.592535,2.83997,2.0405466666666667,4.922575,3.468225,1.5593000000000001,3.056605,4.31545,1.45363,5.622195,2.01398,2.51358,13.725351301619433,3.173643333333333,1.4798499999999999,1.5280316666666665,2.411,5.535575,1.632732,5.903271333333333,0.7541076923076923,3.146183333333333,4.116615,7.49062,2.50599,2.8947000000000003,2.8947000000000003,5.21805,4.48813,3.807865,3.218805,4.87796,5.24195,2.416815,3.5657666666666668,4.945245,1.28169,2.4212866666666666,4.98425,3.924375,4.450255,2.4653266666666664,3.301415,4.1348,7.464231666666667,6.28919,0.8527939999999999,3.65689,3.148695,3.7032333333333334,4.180545,4.117985,3.77986,1.483108,4.42688,2.507285,2.93432,4.183155,4.26766,4.16852,0.9452343571428572,2.694623333333333,7.017457333333333,1.5517466666666666,1.9999081818181819,2.2889,3.82521,3.415775,3.19407,0.6850054545454545,2.456575,1.6327,2.2703425,4.45535,5.502343333333333,3.1413599999999997,10.366825,2.9251633333333333,2.793153333333333,1.13323,4.569095,5.3062,2.084475,5.464488333333334,3.0341,3.146575,5.5259,4.325515,4.911465,2.436165,1.6909675,1.6909675,2.774235,3.40595,5.613675833333334,1.4488125,7.175133333333333,1.47764,3.925685,1.6814333333333333,8.927097999999999,4.97242,2.71421,6.16375,4.87447,3.78627,1.1183016666666667,1.944375,3.7011000000000003,3.05232,3.531833333333333,3.5440666666666663,3.714475,2.758495,3.119685,3.19959,1.5876375,2.53648,1.9291,2.8288466666666667,1.9188066666666668,5.113080833333333,3.3884666666666665,1.75309,3.1333266666666666,3.36826,3.159785,5.6167,6.1478,2.933695,3.484215,4.050205,3.036235,2.78547,1.1747066666666666,0.932522,6.935840000000001,3.129505,3.150865,5.5877,6.10765,2.68659,3.3905666666666665,6.22505,2.504285,0.48880777777777773,5.74365,3.779865,4.069085,3.5791,1.4088914285714285,5.2362,1.082278,4.87489,0.8968125,1.7185333333333332,2.5053199999999998,2.467076666666667,2.4342194285714287,3.779965,5.47295,5.158423333333333,5.158423333333333,3.8728475,3.8728475,4.645345,2.84154,4.49028,1.07728625,5.7395,4.257845,3.4976000000000003,4.46694,3.68656,4.55288,1.8676775,4.66359,3.006432,3.064105,4.19298,2.471165,4.142345,5.1679,3.607155,3.265905,4.886995,3.49055,4.47215,3.33417,3.4863666666666666,6.13525,3.99167,2.939693333333333,6.832276666666667,1.52203,2.1257975,4.62084,4.474345,5.29695,3.736495,1.9564180000000002,1.9564180000000002,14.271936182539683,4.75725,5.4226,3.779835,2.9057971794871795,4.855645,4.481505,2.9199133333333336,3.297636666666667,3.56086,3.7975999999999996,3.659266666666667,5.0557,2.082455,7.92334,2.331125,1.9825275,4.86787,2.381215,4.98629,4.091615,4.49237,0.9320266666666667,3.677325,3.81908,0.8728859999999999,2.929705,5.071678333333333,1.494206,2.387163333333333,2.989603333333333,2.7107500000000004,2.4397699999999998,3.3014766666666664,2.5956333333333332,0.5148792857142858,2.88246,2.6441266666666667,2.82398,3.1008066666666667,1.48953,3.2746033333333333,7.00779,4.26497,2.380873333333333,1.90981,2.5230633333333334,3.69275,2.63837,3.720794,18.8252475,5.6757,3.440354,5.7958,3.748015,5.268916666666667,1.4808766666666668,5.8448,1.6095416666666666,3.86546,4.245365,5.2394,5.13105,0.9585665263157894,4.58269,2.747715,5.11505,2.63762,4.55678,4.910565,2.7248,2.003153333333333,1.4847139999999999,1.9380925,4.26158,4.739625,2.124555,1.63711,2.9944900000000003,4.308508333333333,3.2337133333333337,6.01395,2.01644,4.139525,4.77551,3.67309,4.995585,3.138705,4.288505,4.553235,4.008915,2.8607,2.8607,5.656140000000001,2.0938766666666666,2.944933333333333,3.852445,1.631426,7.809455,3.47635,4.36883,4.497466666666667,4.398065,1.915446,4.585185,4.926085,3.6515,2.1399175,3.83545,3.317715,1.05294,1.6206225,1.19891,0.66539,1.5785333333333333,1.0631566666666667,4.478555,1.0801544444444444,2.95055,1.69682,1.88662,1.04348,1.98666,2.424285,1.541545,3.4553999999999996,2.7588866666666667,4.988946666666667,1.7173166666666668,2.2248625,3.4979,3.26824,2.44345,4.335700833333334,4.262445,5.277105,20.32771175,2.7139933333333333,2.2095625,0.5934338461538462,0.625456,5.301925,1.9990359999999998,4.02373,5.97325,6.741851500000001,4.452525,3.65583,4.129895,3.4349000000000003,3.1503433333333333,3.558033333333333,3.1007700000000002,3.3575666666666666,6.04485,4.018705,0.944003,1.1130025,5.2735,3.5084999999999997,2.57641,2.0981666666666667,2.178716666666667,5.5374,4.73217,2.4743,1.0598633333333334,3.375875,5.30765,9.098206666666666,5.659740416666667,4.295725,4.60309,5.00025,4.649345,4.376575,4.65754,4.04015,5.4325,1.861,5.959,1.6384142857142856,5.3444,0.7324266666666667,5.4799,5.64385,6.3741,6.25355,4.75407,5.6786,6.01885,6.4252775,1.9028166666666666,1.6876285714285715,5.635,3.659515,6.454996666666666,4.776065,5.324408333333333,5.20185,5.8712,1.2998928571428572,3.99776,5.1534,3.9918,4.751325,5.3829,2.6796,3.954915,4.29529,4.2042,0.9329416666666667,1.5547116666666667,1.400996,4.67009,4.031505,3.290665,2.6752466666666668,2.9623899999999996,1.5651366666666666,2.1604733333333335,0.37648583333333335,3.5064333333333333,1.6408840000000002,2.2248816666666666,3.15549,1.9360366666666666,3.14789,2.4017375,2.64115,10.224853333333334,3.4217333333333335,1.7542966666666664,4.420415,0.8257009090909091,4.59458625,1.14758,1.7957375,1.886345,1.01387125,5.625753,1.1398505555555556,1.1398505555555556,1.1398505555555556,3.1722633333333334,1.7938960000000002,4.895675,2.87495,1.43497,1.689745,2.117605,1.4145125,1.8256080000000001,5.601330833333334,0.9088622222222222,4.789915,4.48297,3.3950666666666667,0.9819271428571429,2.163769,2.33894,2.33894,1.594775,3.612299166666667,4.708665,4.62469,5.80455,4.29757,5.54235,2.8977733333333333,2.2911825,2.6091,5.29845,3.83852,4.71147,1.01455,3.9605091666666667,5.4263,1.8487125,3.625855,2.91543,4.508285,5.28105,2.239785,5.8587,6.4089,5.18185,4.65239,4.161295,3.18857,8.0463,3.98602,6.524428333333333,3.4487,3.08478,4.988435,2.6263366666666665,3.16016,4.753165,2.99426,3.09049,3.910625,1.5562966666666667,10.7145625,5.85975,3.178845,15.478236765873017,4.01005,1.8038699999999999,2.9770233333333334,3.0282,3.03046,4.102895,2.172419722222222,2.7805,2.453965,2.95094,4.16232,6.1688600000000005,1.2325,2.19525,4.22726,3.54341,5.36615,2.1368325,0.6217539999999999,4.52264,4.31974,2.2145825,1.10259,4.721955,4.973425,0.94139,3.814015,12.904043333333334,1.2725648571428572,0.37427285714285713,3.6671,4.33292,1.0243755555555554,4.682155,3.71251,4.40201,1.3751499999999999,3.666695,3.79543,3.206415,4.67208,4.338255,5.19955,8.3226,3.15881,3.87712,2.84021,15.60359375,3.454195,2.5128,1.59015,1.98381,1.29733,1.8253575,1.3151175,1.9816825,1.6925925,2.1574475,2.3640975,2.720425,1.9165425,4.95329,3.710225,3.20443,3.223555,5.572488333333333,2.661513333333333,4.79813,3.31094,1.133685,3.677015,2.04714,2.7326386666666664,4.955505,4.815485,4.78644,3.705885,2.6655,3.0171766666666664,2.4330166666666666,4.18365,3.70186,2.240405,1.85212,3.5551,5.18255,3.063175,2.348876666666667,11.937786666666666,0.6000153333333333,2.572785,4.758235,2.652018,1.1309960000000001,2.824555,7.440616666666667,7.227666666666666,4.57059,4.29533,4.095175,2.1729475,2.480875,2.9374886666666664,2.0855266666666665,3.844408333333334,5.35545,4.59823,0.45049799999999995,6.0764,3.2024899999999996,3.4450333333333334,3.8469333333333338,6.50195,9.75267475,4.3841735,1.07887625,2.322945,2.28441,3.599805,2.560365,3.98176,5.18935,3.599933333333333,3.120416666666667,3.998575,4.061875,3.643125,4.1376333333333335,2.3114866666666667,3.478415,4.90126,5.53765,3.9414,1.189485,2.2367666666666666,14.545330463869465,0.5200363636363636,1.38932,1.38932,2.300336666666667,3.9459159999999995,3.89951,4.946695,3.939455,3.27583,4.182085,3.0875033333333337,4.19059,3.0875033333333337,3.477175,1.8338566666666667,1.4506033333333335,5.6656,2.19742,4.798365,3.216655,2.65353,6.130118333333333,1.9919566666666666,4.930585,5.5324,3.597495,3.979515,4.392815,1.9296700000000002,4.609145,3.8073725000000005,6.385388333333333,5.371666666666666,2.77795,4.23717,4.33344,2.097795,3.2661833333333337,3.7860333333333336,0.508915,3.4344333333333332,10.223103333333333,4.879995,4.73158,5.434,3.2432891666666666,3.56319,1.3304114285714286,4.193275,5.39325,3.267335,2.65615,4.781,3.93796,4.1953,4.349435,2.2358425,2.2358425,3.96453,3.005265,2.717079772727273,1.801795,4.925025,4.006865,1.247272857142857,3.859005,4.94557,2.8414433333333338,7.200075,7.67982,1.459978,4.171385,5.0859,7.114827999999999,0.750509,7.432980000000001,3.5269916666666665,0.6405854545454545,5.3628,5.5395,5.21355,4.43458,4.673955,4.52088,4.98493,4.00437,4.317935,4.55174,4.04714,5.65715,4.97358,3.838375,3.513895,4.53398,2.79015,0.728316,4.607085,2.445745,1.721175,4.622015,4.562515,5.3967,0.9974528571428571,4.946893333333334,2.988,2.6332566666666666,1.966135,1.2136066666666667,11.804406666666667,2.8633633333333335,2.7662099999999996,2.3175733333333333,3.7031461904761906,6.064450000000001,6.278223333333333,2.6092333333333335,1.98503,2.14104,2.14104,2.14104,1.3700333333333334,3.53415,3.774015,3.33243,4.69845,8.156839999999999,4.45833,1.1377000000000002,2.29923,3.53554,5.2911,1.7901399999999998,4.38596,2.78421,1.4288333333333334,3.5807,7.331957142857142,6.9065650000000005,4.49378,3.883655,3.3514666666666666,5.07995,4.390775,4.859391666666667,1.7417475,1.7417475,4.29454,3.79319,2.7298966666666664,2.7298966666666664,3.776435,1.1490071428571427,5.0964,3.286245,4.1395,4.150175,3.332575,3.3844,0.9918614285714286,4.20172,4.88117,4.2563,4.440545,5.10705,4.888625,4.52895,1.9462325,1.4779575,3.069375,3.730735,3.24155,4.15574,2.085085,3.6764025,4.95932,2.690315,4.6415,8.844014999999999,2.254786666666667,2.776746666666667,4.547743333333333,5.018481666666666,1.5065025,1.9982454761904762,0.9599183333333333,1.9982454761904762,1.84285,1.84285,1.55387,4.916875,3.12688,4.34289,2.403945,3.85713,1.7338666666666667,5.2968,3.050015,1.648835,2.785826666666667,3.75882,3.30503,6.054403,4.602835,1.4150800000000001,0.932605,3.6261,6.36419,2.390773333333333,3.447225,3.485055,3.485055,2.221215,3.30566,3.013735,1.388613831168831,3.0967266666666666,3.82949,3.247935,4.793785,3.9864675,1.6355125,3.76146,4.882365,4.86534,5.23885,4.33898,2.0633475,2.07315,1.2371999999999999,2.4432075,3.441895,1.928505,3.72839,3.4508666666666667,2.990665,4.008925,4.884295,2.501155,1.16573,1.8067533333333332,1.472955,1.1717777777777778,4.90553,4.104275,1.12326,0.22065826086956522,0.22065826086956522,0.22065826086956522,3.524785,5.9577,4.422735,5.434,2.57371,3.7243,4.67132,4.389885,2.546445,3.56573,1.64425,5.24115,3.86743,3.920225,4.52833,4.083385,0.8811072727272727,0.8811072727272727,0.8811072727272727,0.8811072727272727,0.97811,0.97811,4.074535,4.14769,3.553785,2.817095,2.57968,5.3837,3.443115,5.31975,4.233265,2.728493333333333,2.43581,9.6219,1.9949860000000001,1.9949860000000001,4.42008,5.3377,3.183146666666667,0.437800625,0.437800625,0.437800625,0.437800625,0.437800625,0.437800625,5.188313333333333,4.707365,3.847375,4.40882,2.6637424999999997,2.6637424999999997,2.74554,3.2826013333333335,2.7311533333333333,3.43978,3.762035,7.488899999999999,1.4363519999999999,4.874315,3.57475,4.34676,10.223406666666667,2.8628699999999996,3.210985,0.93074,3.575855,4.748395,3.03382,1.2166,2.758986666666667,4.289755,5.56125,2.568125,4.958268055555556,1.1233555555555557,2.001716666666667,4.83563,4.75009,3.0269044999999997,2.48012,2.5209699999999997,1.4724633333333335,8.278028333333333,3.3917333333333333,2.0881233333333333,3.117735,2.82083,3.78174,4.18396,2.6985333333333332,3.4067000000000003,6.13815,1.4995783333333332,4.954405,5.1431,3.69352,3.96637,3.058263333333333,3.716635,3.71088,3.612965,2.826395,4.558275,4.64795,2.82742,2.28739875,2.9724166666666663,2.65238,2.8123133333333334,0.8037327272727274,2.148505,8.117075,0.50254625,3.2601600000000004,1.5962233333333333,2.51368,3.4715000000000003,3.1198633333333334,1.2188444444444444,1.7969460000000002,2.7109633333333334,2.12185,3.626215,2.05136,3.2042866666666665,1.4673733333333334,3.4480199999999996,2.0221975,1.1144457142857143,2.918203333333333,2.0559125,2.3827333333333334,3.10839,2.5935099999999998,3.2175833333333332,3.4078999999999997,3.2300066666666667,2.9115699999999998,3.4623666666666666,2.7489933333333334,2.427935,1.7069933333333334,2.5550366666666666,3.0588433333333334,1.6951066666666668,3.0820333333333334,3.8987057142857138,2.65064,3.067903333333333,2.9222900000000003,3.6329,4.564595,2.8146400000000003,1.6343228571428572,1.6343228571428572,2.1967525,1.15666,2.4520325,3.3070183333333336,4.479629583333334,2.723875,1.8826175,2.0869125,2.0706525,3.691655,3.119095,3.920995,4.523265,1.7488625,2.5594733333333335,3.620545,1.44225,1.44225,2.906825,0.6580976923076923,3.2358738461538463,2.3841375,2.3841375,2.941333333333333,2.3702833333333335,2.465523333333333,2.5989733333333334,2.795825,6.32624,3.7337175,3.7337175,3.62224,3.188175,2.236825,3.00593,2.49712,3.06021,5.286885,0.4908516666666667,0.6832320000000001,4.115005,5.12435,2.9526,6.809281666666667,3.498905,1.6730360000000002,4.4344149999999996,4.576025,3.95962,4.29778,5.1995,4.84221,13.6162305,3.55636,1.6102966666666667,2.860545,3.75561,5.7375,4.01015,4.111305,4.67527,3.66389,3.17456,2.77571,4.01881,2.9170133333333332,2.412993333333333,2.412993333333333,4.086005,3.44455,3.05292,3.14371,2.3135,2.479345,2.0955475,1.854665,1.9638025,2.0142225,1.73435,3.9057355,4.017615,2.432915,6.597172499999999,3.7687,2.267866666666667,1.6913433333333332,3.4076,3.84085,4.57393,3.172047291666667,3.534745,3.1628,4.1816,3.607915,4.362605,4.27558,3.577488,3.417595,0.6623233333333333,0.6623233333333333,0.6623233333333333,3.33518,2.25744,4.53704,3.782305,3.653795,7.654376481481481,3.03858,0.36115384615384616,5.2995,0.765761,4.375242857142856,1.884025,3.80197,1.73663,4.492975,5.7118,4.33288,4.70014,2.73666,2.8229399999999996,1.6181916666666665,2.589933333333333,0.5132421052631578,0.5734405882352941,2.8924333333333334,1.40581,2.0252475,3.76106,4.413195,4.98567,2.62258,2.8896683333333333,3.46557,5.12258,2.0210275,0.9867642857142858,2.476555,3.256126,1.3713032467532464,5.06045,3.702555,3.95316,2.7113666666666667,4.64741,3.171666666666667,2.6440033333333335,2.962566666666667,2.1050575,2.5595733333333333,2.3047775,3.13461,2.42637,5.822845333333333,2.63665,1.9259066666666669,2.54661,4.972224000000001,3.3872740000000006,3.3872740000000006,2.273023333333333,3.904145,2.3463125,3.809585,2.9902,0.5679339999999999,4.597995,1.9988725,11.791715555555555,6.87406,2.93053,3.095265,3.381395,4.85995,2.812295,3.622395,0.24704466666666666,1.838995,4.093566666666667,0.9239583333333333,4.0377,1.2812742857142858,4.70737,3.309025,4.80221,4.39017,4.114315,2.10483,4.67262,3.79538,4.4619,7.02159,4.20198,2.9272566666666666,2.940656666666667,1.589392,1.92129,4.431205,5.16035,4.0540975,2.72045,3.577135,1.5946479999999998,2.82818,2.255515,4.47814,11.061733333333333,3.6253,9.172643333333333,4.128495,4.511795,0.9909466666666665,4.826426,4.88479,2.5336866666666666,3.0717,3.7814666666666668,2.9067366666666667,2.33058,1.7844733333333334,1.8136833333333333,3.70986,1.727274,3.129023333333333,5.269892,2.7379700000000002,1.016992142857143,1.016992142857143,3.57735,3.130262,3.130262,3.7032666666666665,2.8683633333333334,3.340926153846154,3.8731333333333335,2.8237633333333334,2.676023333333333,2.3070533333333336,2.4012,3.1193500000000003,2.3333225,2.52534,1.616622,5.719172,9.500457833333332,0.4770569230769231,0.4770569230769231,0.4770569230769231,0.5952319230769231,0.5952319230769231,0.4770569230769231,3.18665,2.9385600000000003,4.232466666666667,1.50347,1.760915,3.340864,2.348986666666667,2.9659866666666663,2.221363333333333,3.17498,3.606733333333333,7.261333333333333,3.156553333333333,2.443243333333333,3.7444333333333333,3.54597,3.236613333333333,3.5031666666666665,5.27868,2.2556499999999997,3.472633333333333,1.3701283333333334,1.3701283333333334,2.467286666666667,0.5352631578947369,2.05798,2.6893700000000003,2.7609133333333333,3.5429333333333335,2.20497,1.417,2.6351733333333334,2.8962800000000004,2.2287733333333333,4.878325,2.5185286666666666,3.561595,3.06833,4.493385,0.5484880000000001,7.864595,2.937014,2.937014,8.041154722222222,1.7270733333333332,2.8712966666666664,2.9904566666666668,4.64456,2.3806,1.8931733333333334,2.5136266666666667,1.3689775,3.4488,1.7464266666666666,2.965621,1.32763,0.2683586363636363,0.2683586363636363,4.82741,3.990235,3.73037,3.043896666666667,2.665765,3.50335,1.2057200000000001,6.56355,3.883995,2.91195,1.847315,1.37154,2.03484,2.9904566666666668,2.532535,2.062075,6.2038150000000005,5.6662,5.5133,3.46615,2.4656,0.6718783333333334,7.2808375,2.05958,1.4019525,3.468295,4.218305,2.115505,1.8822833333333333,4.56359,4.2912,3.377133333333333,3.1519333333333335,4.54713,4.54281,3.6410666666666667,2.51136,2.51136,4.581635,5.11135,5.7545,6.529066666666667,2.6512766666666665,4.159435,1.3062414285714286,2.150065,4.283863333333334,3.792125,1.84452,3.88014,3.4618175,4.62119,2.0614,4.344425,4.863635,5.2275,4.591165,2.3684600000000002,2.65617,4.042766666666666,2.01045,2.826825,3.16844,2.50116,0.8004300000000001,1.94356,2.62147,2.284265,4.591425,4.84016,4.16341,3.996545,4.52119,5.2569675,10.36382,5.6299,4.261105,4.30094,3.954635,4.773645,3.0506499999999996,3.1050336666666665,3.604566666666667,1.25435,2.686455,2.830315,4.7791,4.875315,4.89574,2.8177,2.4165233333333336,2.225966666666667,4.0764000000000005,3.9198049999999998,3.528,3.9198049999999998,2.4329229999999997,2.1854766666666667,2.428186666666667,2.46842,2.8950933333333335,1.8119366666666668,0.7956599999999999,1.583755,1.70285,1.9240133333333331,1.5997666666666666,1.2956566666666667,1.6860333333333333,2.6003066666666665,1.510926,3.189553333333333,1.3332233333333334,1.6165666666666667,2.77442,3.1231266666666664,2.5334666666666665,2.4923933333333332,2.4315466666666667,3.249515,2.14302,2.85722,3.0863133333333335,2.3986966666666665,3.0306533333333334,3.36386,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,0.14455451612903225,4.83277,3.333355,1.0153185714285715,3.18084,2.5760733333333334,2.905606666666667,4.52572,2.928013333333333,4.59993,3.916043333333333,1.7374759999999998,3.16785,1.6774666666666667,1.062315,0.963927,1.183135,0.8985233333333333,0.7652308333333333,1.34024,3.26066,1.800334,1.7304166666666667,1.8811794444444443,2.3564133333333332,1.0764583333333333,1.2964566666666666,1.4032600000000002,0.91328,1.24716,0.7140666666666666,0.9106479999999999,3.30632,3.55625,4.0389,4.31293,4.096995,2.9758566666666666,4.275135,3.7962000000000002,1.94859,3.516915,2.1404975,3.516595,1.9889033333333332,0.7913272727272727,4.31865,4.88425,2.0679966666666667,1.212935,2.81016,3.28572,3.612299166666667,2.8915466666666667,2.476125,0.8980675,2.210435,4.9469325,3.96746,2.329235,1.4915066666666668,3.715695,2.13829,0.6755472727272728,4.61301,3.7854,3.897225,2.399045,1.3573439999999999,4.524375,4.255845,2.5749566666666666,2.53118,2.4091533333333333,2.5852933333333334,2.7064166666666662,2.9500933333333332,3.4690999999999996,1.22725125,2.7304,2.3580533333333333,5.04125,4.14973,3.517005,4.30808,15.794868176767677,4.2744175,4.709640666666667,3.05252,4.26314,5.10345,1.567892,2.615675,2.5284866666666668,6.4443850000000005,4.18172,4.965925,4.248435,2.5284866666666668,3.90657,2.14852,2.5435766666666666,2.781003333333333,2.7209466666666664,1.2595699999999999,4.37932,4.14835,2.62596,4.21586,2.3792433333333336,2.547,3.68608,3.1249,4.745205,4.152385,2.724375,3.520725,2.509505,2.5271399999999997,1.106118,1.106118,2.5529733333333335,1.9555566666666666,0.20919107142857143,5.635040999999999,0.909902,3.193985,4.23307,0.5603266666666666,4.529515,8.053576666666666,1.8005125,3.589965,3.692555,2.515676666666667,3.25145,2.2451,3.09884,3.50089,4.10711,3.04888,4.0693,1.0181333333333333,11.429117666666667,2.56119,2.86388,4.124575,2.535005,4.03238,8.104943333333333,4.43523,4.237225,4.00244,4.266695,5.832805,1.57233,3.299023333333333,4.474085,3.8510000000000004,1.8645900000000002,3.802815,3.778945,3.597515,3.77783,4.582285,3.686835,2.41681,3.724515,3.5874,5.0985,5.13945,2.11199,2.37636,2.1017966666666665,3.0005633333333335,1.2157266666666666,3.5633,0.8290509090909091,3.1763066666666666,3.01376,2.7040333333333333,1.6367649999999998,4.445495,4.682265,4.15839,1.882695,4.865715,4.22882,0.7196957435897435,0.3355230769230769,4.628265,4.036705,1.06059625,0.3355230769230769,2.979815,0.7196957435897435,0.7196957435897435,0.3355230769230769,5.92769,2.73903,2.5049533333333334,5.48155,4.62278,2.99236,0.7828177777777777,3.166955,3.805435,4.704585,5.5162,2.2399025,0.6928399999999999,4.313174999999999,2.27651,1.416924,2.058925,1.0604871428571427,2.2793733333333335,2.2796366666666668,3.498805,5.6536,3.4633333333333334,3.5091666666666668,2.96287,2.7466166666666667,2.87121,3.9671337499999995,1.3963625,1.94032,4.022445,5.37605,2.0395079166666665,5.8815,2.72707,4.29065,3.9515,2.86581,1.1791425,3.006785,6.48815,4.029185,4.365635,5.1183,6.11965,2.64342,4.91395,4.422535,3.089505,3.41942,8.27642,3.7127,4.5574525,2.26042,1.1562,2.3963266666666665,1.808535,2.1627,1.89752,4.468785,0.6886471428571428,3.503625,4.107955,1.8857133333333334,2.8844600000000002,5.21915,3.164955,3.544665,4.472995,5.67445,9.646196999999999,2.66254,3.0616033333333337,1.6974740000000001,1.8387,1.1962833333333334,1.3861166666666669,2.9073766666666665,2.510683333333333,3.0520633333333334,5.178086346153846,1.6229825,2.60943,5.1182,5.2573,3.794,3.33453,2.88196,2.54313,1.99472,2.029,1.8375566666666667,1.920075,3.38073,3.83885,5.0819,5.25035,5.25855,5.569035,3.21589,2.53913,6.439700416666667,4.363615,7.59663,4.79221,4.79221,5.420696666666666,1.6411233333333335,1.3200775,1.3182233333333333,0.722395,4.645655,3.6783333333333332,3.3999475,3.3999475,1.9051040000000001,4.437545,4.465445,4.83935,4.307375,2.86214,2.72468,3.858275,3.012453333333333,4.7928991666666665,3.56498,0.8656654545454546,5.69495,5.16765,5.3561,5.4057,2.79922,5.7023,4.562355,0.8518076923076923,5.06635,6.54067,3.06212,5.52705,5.83885,3.422745,2.658695,3.95605,6.3466,2.039215,5.9052,1.840665,4.686455,2.9964600000000003,1.8041175,0.956882,3.66776,5.734,3.22196,3.969375,1.9479499999999998,3.439285,7.983645,3.30361,4.04146,2.652145,2.58352,0.860229,4.921025,1.5322916666666666,3.316018333333333,3.316018333333333,4.28832,2.3636166666666667,3.3330966666666666,3.946385,1.923945,3.2395933333333335,3.27981,3.3656666666666664,3.139895,3.94423,2.598945,1.8244725,3.5269999999999997,2.1014225,2.8583866666666666,1.9447400000000001,2.879023333333333,2.9377600000000004,1.4782285714285714,1.18937,0.5797316666666666,1.271105,0.5797316666666666,0.5797316666666666,1.18937,0.5797316666666666,3.6445666666666665,3.131124,3.131124,2.9510733333333334,5.35955,4.94542,4.659605,5.4699,4.914385,3.32499,4.3523,4.37698,2.1960425,2.8921086666666667,2.8131066666666666,0.7692381818181818,5.20395,2.8641400000000004,3.1257066666666664,5.39185,3.6530275,5.3088,3.311785,2.58069,2.97249,3.36986,2.4374766666666665,2.8836366666666664,2.05143,5.58125,0.91601,3.969375,1.1676742857142857,3.668495,2.29804,3.1969433333333335,4.233695,4.37449,4.251995,4.84502,4.06647,3.89547,4.540095,4.2965,2.49897,2.70145,3.2265099999999998,4.24044,2.66892,4.653965,2.6851,3.99301,3.2004866666666665,3.29052,3.70145,4.55964,4.144155,67.9437288923299,2.7035425,4.176055,16.657213,4.110375,2.945126666666667,2.0246666666666666,1.8926633333333334,2.61835,4.795655,2.9506200000000002,4.7073275,5.379,3.28159,7.508036666666666,5.21405,2.442465,3.141545,4.035845,3.41639,1.8140999999999998,1.21253875,4.679705,3.33074,5.935476666666666,3.48963,2.6665733333333335,3.622675,3.02295,4.51594,3.265925,5.5327475,4.72841,3.72231,3.083955,2.3190025,3.613555,4.32137,2.522605,4.059965,4.4134975,1.1879683333333333,2.70531,4.982677499999999,3.988265,4.480605,3.559445,2.844035,4.879365,3.109765,3.284695,3.7963,4.417415,3.338285,2.588035,4.523885,9.025575,3.2056633333333333,4.12216,6.27133,2.974995,2.576375,4.013181875,1.9419666666666666,2.982693333333333,2.96144,3.44736,3.124735,2.85742,3.574,3.309155,4.02689,3.86085,4.16063,3.298885,3.512215,3.80034,2.9448233333333333,2.9448233333333333,6.582666666666666,1.663445,3.051655,3.075935,2.44144,4.86077,4.15879,2.961385,3.07193,4.30533,6.3454500000000005,0.7373545454545455,3.61005,2.46522,2.8812866666666666,2.627353333333333,5.25605,2.73522,1.9979375,1.12833875,2.0248304545454547,4.057675,3.755615,4.024755,5.25715,3.743635,6.18765,2.48422,1.74071,4.321235,3.60178,3.1568233333333335,2.0103466666666665,1.1379883333333334,2.63313,3.2141633333333335,1.557642,2.30214,2.256212,3.6359424999999996,2.7287,4.788265,3.323715,1.3732725,5.6464,3.39493,4.474275,4.904455,4.46568,4.556935,1.9583166666666667,1.4564366666666666,0.6017657142857143,1.4661433333333334,3.375885,2.77962,3.647541666666667,1.4387166666666669,2.36524,2.42199,3.3337,3.368825,3.71461,4.069266666666667,1.94682,1.3844275,1.8885425,2.0438,1.405465,2.61335,6.762610166666667,4.820235,3.84353,2.951315,8.14351,4.64131,3.19721,3.058055,3.369135,2.65902,3.84948,2.2619700000000003,7.39336,0.8831166666666667,3.034205,6.08095,4.21709,4.61166,5.10045,1.4797966666666669,3.2802000000000002,2.7783833333333336,2.8297733333333333,1.8542375,4.032635,8.65758,3.400985,3.57678,4.17473,4.77642,4.421425,0.8770383333333333,2.7468766666666666,5.37935,6.72016,4.34936,5.3955,2.88963,3.7228999999999997,2.3242866666666666,5.1619,4.95913,3.8464937857142854,3.8464937857142854,0.6055142857142857,3.19261,0.954362,0.6296849999999999,2.086375,3.635,3.335406,4.763970285714286,2.7080633333333335,2.9253422857142857,3.0848176190476186,2.8339433333333335,3.0896566666666665,4.457533333333333,2.982765833333333,1.8117575,1.8117575,3.77245,2.9001266666666665,2.8006166666666665,3.747525,3.423166666666667,0.68764,3.1576866666666668,2.5406833333333334,2.810513333333333,3.0313033333333332,2.3604925,2.79281,3.454,2.962146666666667,0.815216,2.6231833333333334,6.075335523809525,2.1013,7.256408,1.5430160000000002,1.5430160000000002,3.4735001666666667,3.1004199999999997,3.3610333333333333,3.0288166666666663,1.789876,1.3327985714285713,3.0609699999999997,3.281276666666667,1.6701,1.3563485714285715,2.8633100000000002,2.812754,2.731473333333333,1.98859,2.117155,3.4565,2.23323,2.90859,3.223415,1.73535,3.594005,3.021855,6.610543999999999,4.30025,1.809355,3.769145,2.638635,2.096325,4.07307,2.6464966666666667,2.654885,6.953765000000001,0.8003615384615385,0.53437,4.67796,1.526638,1.526638,3.5165,2.4993325,4.726755,3.215075,1.2797433333333335,2.4362053333333336,2.8962533333333336,2.419580333333333,5.1784,2.631955,2.7197333333333336,2.76319,1.6209321428571428,1.6209321428571428,2.1809366666666667,3.8735,3.9964333333333335,4.56033,3.4045,5.1367,5.07695,6.9257,5.1796,2.70588,2.7279033333333333,2.5991166666666667,2.675213333333333,0.7393211111111111,0.7393211111111111,0.7393211111111111,3.22919,4.36856,3.692205,0.924285,0.924285,5.39255,6.3253,6.90162,22.52362077777778,13.2126,8.64775,3.514375,5.8208,2.35173,4.36254,2.4924,3.2955733333333335,4.285566666666667,5.598551333333333,1.97911,1.676185,6.3586,1.3649,1.3649,6.6106,3.455045,4.55781,1.7506925,4.130784500000001,5.3556,3.94241,5.09375,3.529725,1.2361433333333334,6.1159,9.02804,1.2361433333333334,1.7506925,2.10325,0.792504,0.792504,1.7723859999999998,2.3865633333333336,1.7723859999999998,4.777735,6.05455,6.54705,9.96149,1.7506925,11.740385166666666,6.329,6.2654,2.35173,3.0856,4.634625,8.96588,3.183158333333333,4.12932,6.19895,3.179165,5.00805,6.30265,4.808265,4.9076,4.07658,2.54847,4.351855,4.03074,5.17425,4.370365,0.77826,1.5438560000000001,3.10447,5.9772,4.39398,2.7379700000000002,2.080785,4.140025,5.0525,5.88945,5.2919,5.23355,4.364605,3.073775,4.09211,3.62975,2.070215,4.99127,2.012885,2.655835,3.64958,2.0770766666666667,3.902995,4.607485,3.567715,3.6241950000000003,2.85915,6.137496666666666,0.922478888888889,3.40337,3.891625,1.427272857142857,5.7854149999999995,1.5998716666666668,1.5214566666666667,2.8483133333333335,2.8048535,3.4056333333333337,2.9213400000000003,2.15473,0.7445209090909092,2.33733,2.497815,4.08765,0.7180661538461539,5.27981,1.57867,1.14135,3.1640533333333334,1.14135,3.86439,0.8578145454545454,4.438735,3.1412366666666665,1.764295,4.384129,4.2364415,4.2364415,4.408675,2.57885,3.1558333333333337,2.638853333333333,1.48953,3.786905,3.812455,1.9543,0.7224316666666667,7.079814487179487,2.75847,3.679445,4.22408,7.197,2.3786175,4.01581,3.77329,3.133625,3.716115,5.5529,6.5407675,4.24689,4.939205,5.19305,2.8875533333333334,4.868635,4.11057,4.554725,1.0624177777777777,0.5225307142857143,3.101605,3.3907000000000003,2.7887166666666663,5.73075,3.75219,4.281805,5.08515,4.712285,3.85748,4.244785,1.15633,2.075815,9.479355,2.128136666666667,1.9693933333333333,3.6917414285714285,11.987330654761905,1.4872675,5.10325,6.0724,4.791895,3.3122966666666667,2.37439,3.18967,3.719335,1.1644050000000001,3.101343333333333,3.73228,0.45193052631578945,2.1718366666666666,4.927335,4.38879,2.179675,4.13004,3.262455,4.984975,1.2877666666666667,0.6001299999999999,3.697208333333333,1.1443128571428571,1.1080075,1.1080075,1.1080075,1.1080075,1.4968283333333332,2.9745033333333333,1.9117566666666665,2.50759,5.039,3.6636333333333333,4.960505,3.56461,4.358465,3.466645,3.936675,1.3916733333333333,6.92549,2.026435,5.2433,5.325753333333333,4.780685,5.200334166666666,2.9649199999999998,2.3062866666666664,2.704166666666667,3.47015,1.2038533333333332,4.405455,2.63124,4.9828,3.2424033333333333,2.4504,3.778475,3.323675,2.940815,2.5413433333333333,2.87255,1.47829,0.40310666666666667,4.85083,2.854045,4.16571,3.204515,3.777175,5.7509,4.122795,0.52377,3.509896,7.417538,1.93984,1.967802,5.542795,5.69985,2.7365266666666668,4.66395,5.1215,4.04279,4.99186,4.098515,4.974905,4.9412,5.17755,3.43873,5.2111165,1.603958,1.7095166666666666,4.42027,4.45979,4.45086,3.15936,5.30175,5.32055,3.88696,3.307545,15.29685750020267,1.309377054574639,1.17340875,2.012890568181818,0.51279875,0.48086666666666666,1.368075,0.31124705882352943,1.362356,3.1454533333333337,1.38163,0.969575,1.13863,0.5365875,1.13863,1.13863,0.5365875,0.8435999999999999,0.6996135714285714,2.86696,2.8380533333333333,3.813795,4.849945,2.8246966666666666,2.7123,4.63621,4.78008,5.31015,3.26838,4.052225,0.7369071428571429,2.4207506666666667,8.654604166666667,4.889545,6.83506,2.66476,4.143085,2.27364,4.550105,5.2784,3.068545,4.258065,2.77025,0.9965266666666667,4.14429,5.12235,1.0285360000000001,1.40379,1.53351,2.3385166666666666,2.4539466666666665,4.118995,4.9504,2.260725,2.260725,3.5446058333333332,6.47451,2.0426333333333333,0.6426363636363637,0.79941,2.1358,3.3042033333333336,0.9647357142857143,0.9647357142857143,0.9647357142857143,0.3558192307692308,1.100982857142857,3.07395,5.70475,3.7815999999999996,4.255794166666667,5.34795,1.01861,3.4252000000000002,3.3222233333333335,3.9417333333333335,5.94335,2.90148,7.502233333333333,5.0894,1.1546888888888889,3.8729666666666667,1.797428,2.392635,2.270443333333333,6.632846666666667,2.9852266666666663,4.47392,2.168525,3.304485,4.224245,5.09465,0.4231477777777778,2.1483466666666664,1.3473166666666667,2.57824,3.9499386666666667,2.08008,2.7630866666666667,2.19618,2.57775,2.560486666666667,2.8239066666666663,2.8667433333333334,3.1897866666666665,1.306142,2.2398700000000002,2.394626666666667,2.812556666666667,2.6064833333333333,2.0894625,1.75668,1.8167233333333332,1.764235,3.359175,2.3043766666666667,2.1933866666666666,2.20832,2.3563,2.601156666666667,0.7765211111111111,0.7765211111111111,0.7765211111111111,2.4909133333333333,2.3681566666666667,2.9787533333333336,2.816126666666667,2.59253,1.9838866666666668,3.871585,3.5051900000000002,1.2919566666666666,2.6095966666666666,2.719556666666667,3.478553333333333,1.6448857142857143,7.11335,4.56471,3.14877,3.845265,3.46793,1.51563,0.4215271428571428,2.76057,3.778895,3.478553333333333,4.99788,4.25622,5.132,2.75952,4.446295,4.16452,0.7550790000000001,2.674615,3.278585,5.6040383333333335,4.495225,3.534415,3.17045,2.52264,2.5165133333333336,2.5317166666666666,0.6129125,5.194845833333334,2.621925,4.51593,2.8174433333333333,3.8345933333333333,2.767886666666667,2.4003833333333335,2.9291366666666665,2.9291366666666665,2.4520833333333334,2.0955666666666666,2.35007,2.024286666666667,3.945845,1.3579459999999999,2.771005,3.801895,3.96618,3.75012,4.75827,4.56947,2.44876,2.16559,3.363945,3.309685,2.694145,4.694955,2.873275,0.9714885714285714,0.9714885714285714,4.643205,3.955415,0.9801399999999999,4.778215,0.9801399999999999,3.953425,4.42457,5.1997,3.462755,3.39351,6.32132,4.287840000000001,6.19245,0.8834785714285714,0.8834785714285714,2.05086,4.66041,1.45766,3.20275,4.4605,1.095057142857143,4.714805,4.22698,5.245,5.245,1.137645,5.17055,4.715,3.772715,6.2175,2.19635,2.19635,6.8056,0.9461181818181817,6.8491,1.90412,6.062335,2.677345,2.3879766666666664,3.42012,1.439622,2.059276666666667,2.58933,2.9131366666666665,2.358990238095238,6.31091,2.04046,5.2371,2.9114233333333335,2.6664,1.938215,2.293385,3.192995,3.47583,3.698165,2.658095,2.067145,2.00859,2.50879,1.050624,3.131735,2.042695,3.263075,2.1398295000000003,2.1398295000000003,2.997265,2.07723,3.860105,3.99432,5.25375,7.69178,4.75687,3.597395,6.306547833333333,1.9194433333333334,3.3119933333333336,2.1798266666666666,1.4545285714285714,1.724075,4.294355,1.5932333333333333,0.503085625,0.6964566666666667,4.432005,4.095085,2.80638,0.9699255555555555,3.067265,2.3650466666666667,4.791025,1.9123819999999998,1.80842,1.1723000000000001,4.96734,2.48334,4.36001,0.6218130000000001,4.123159583333333,4.89374,4.029695,4.23634,3.282225,3.820995,3.0359700000000003,5.40535,3.81719,2.2669633333333334,2.761086666666667,6.265691666666666,6.5156525,0.8218025,3.97954,3.98224,5.1141,3.2859766666666665,3.3800333333333334,2.714775,3.3427000000000002,3.747033333333333,6.1623675,2.812754,2.5508534999999997,3.5732,4.80769,2.356225,2.6776,8.440353333333332,4.298995,2.064833333333333,5.114,4.527045,1.83432,3.863615,1.4292875,1.5330714285714286,4.775045,4.38101,5.51245,2.9735066666666667,3.460035,4.49773,6.0852,4.093465,4.25245,3.43843,4.787095,4.142545,4.32441,0.9762501538461539,0.9762501538461539,8.44256,0.960145,2.0618925,0.960145,0.744335,0.3286,2.8062275000000003,2.348295,0.52573,2.0618925,1.86265,3.10099,2.2804975,3.336265,4.80298,7.976633333333334,1.76473,2.65092,2.57167,5.30045,5.80835,1.95863,1.5293825,1.1057325,2.635115,4.11014,2.545865,4.29127,6.2830425000000005,0.47884944444444444,3.973485,0.768802,3.0983133333333335,2.612675,4.007275,1.21607,4.373135,4.56015,4.491635,3.072305,4.33744,5.1702275,1.7172575,3.886895,0.6755238461538462,2.841075,3.02423,1.302376,2.9076066666666667,2.4559966666666666,2.5140166666666666,3.584605,9.559515000000001,3.1516606060606063,3.59938,3.372275,8.14955,5.562834166666667,3.437533333333333,3.98165,3.50258,5.2942,4.985825,6.2337,4.82932,4.875455,6.33885,3.3655333333333335,1.80441,1.9840600000000002,2.4236733333333333,4.053735,2.44224,0.2128783783783784,0.2128783783783784,0.2128783783783784,30.42236814285714,0.2128783783783784,2.9695783783783782,0.2128783783783784,0.2128783783783784,0.2128783783783784,3.220441711711712,4.747615,0.2128783783783784,0.2128783783783784,0.2128783783783784,0.2128783783783784,0.2128783783783784,3.162845,4.57293,2.978965,0.3199076923076923,0.3199076923076923,4.240263333333333,4.3169835,4.177270833333333,3.5035725,4.00774380952381,8.198533333333334,11.135077771173272,6.591001333333334,7.960513333333333,6.677551125,2.467286666666667,5.999860952380953,4.550398333333334,4.670441762820513,0.3199076923076923,8.603211,6.6592902857142855,7.233041666666667,2.669175,9.210389625,15.315149196428571,18.904609228479853,57.01123372244259,119.33714947395497,1.3701283333333334,3.472633333333333,3.085225,4.129283427284428,0.3199076923076923,1.7172121794871795,8.157513333333334,14.493271666666667,20.035791944444444,48.97958153571428,13.080163458333333,2.841325,0.2587234482758621,0.2587234482758621,4.452396666666667,2.6993066666666667,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,0.2587234482758621,7.43059,0.2587234482758621,0.2587234482758621,0.2587234482758621,2.871865,1.9115133333333334,3.89639,3.754235,4.001600833333333,5.2514,2.457005,4.50977,4.468665,3.124605,1.4301033333333333,3.51428,1.0058566666666666,2.1110825,2.526806666666667,5.766636666666667,6.060700000000001,2.846463333333333,5.594797944444444,0.3506238888888889,0.4712953333333333,2.4898866666666666,2.9499566666666666,3.083635,4.12561,3.4440333333333335,7.776232500000001,3.703055,3.26047,3.37729,4.019805,2.98132,3.23609,5.09315,1.949325,0.47629307692307693,0.8878527272727272,4.165637500000001,1.7892275,3.765785,3.617515,4.491715,3.39482,2.431335,2.60203,0.5732786666666667,0.727532,4.098755,2.6414566666666666,4.790435,4.217415,3.958455,2.97287,3.621605,6.40985,5.2106,3.19132,0.8567372727272727,3.8471666666666664,4.672235,2.128515,0.981855,1.4846899999999998,3.56329,5.17065,1.860955,3.646455,3.40471,5.489,2.51655,2.39218,2.169285,4.00487,2.753525,3.532685,0.69485,2.77901,3.296545,1.78805,6.117186666666667,4.185745,4.203455,4.573305,2.830325,2.019425,0.5521509090909091,4.817145,4.135375,3.748425,2.67184,6.0705,3.88119,2.92217,2.0055075,1.2768057142857143,4.783665,1.988185,2.71487,9.658605,4.07935,5.10105,3.3534,0.9877422222222223,3.066455,1.1417442857142857,3.27613,6.3543,5.2917,5.17855,3.72723,4.804275,4.427985,1.8312725,1.9170166666666668,5.2084,2.954446666666667,3.3631333333333333,2.538825,5.01945,4.671515,1.4657016666666667,3.7447,2.79247,2.74089,3.500425,9.46602,4.74815,1.7422775,4.777315,6.38296,4.7455275,4.01408,3.914255,3.939295,4.92557,7.89075,2.36789,3.142685,6.1034,4.528835,2.804235,3.016465,4.774195,3.90175,3.48941,4.147566666666666,18.759674666666665,2.79257,2.2177466666666668,3.228543333333333,5.810794666666666,0.92603625,4.36792,2.1884466666666667,5.18415,1.44923,4.14657,4.389165,4.45668,0.96763125,4.59947,5.1966,1.659415,4.811075606060607,4.405555,1.1260357142857143,3.630965,1.896615,2.47405,1.66017,4.23713,3.823645,4.47471,3.6554,3.0593066666666666,5.0898,8.08648,4.821725,4.90873,4.863655,3.229086666666667,4.44379,5.2371,6.535176,0.956404,0.956404,4.46799,4.823105,2.0791999999999997,1.47589,7.392710000000001,4.475565,3.50702,4.22088,4.565945,4.363235,3.536345,3.84451,6.4500589999999995,4.07438,4.378735,5.06685,1.5452285714285714,2.88725,4.51905,5.2495,3.42342375,0.2102911111111111,1.4084525,2.3107875,2.5534966666666667,2.03458,1.0078655555555556,1.499275,1.26945,2.5373433333333333,0.6365288888888889,1.3534128571428572,2.004855,3.752885,3.9059333333333335,2.6638466666666667,3.27173,3.039903333333333,2.7763266666666664,0.673192,0.94692125,2.723235,4.75522,4.55491,4.2465,3.99351,4.262155,5.2306,2.1159600000000003,4.29971,5.172,5.0208,6.4334325,3.799155,0.46418470588235294,6.0594,4.449335,4.23702,5.1279,3.295725,1.9772459999999998,4.222875,4.485695,2.91587,5.147779166666666,4.500055,1.4572716666666665,5.147779166666666,4.64187,6.633302499999999,3.6007,1.2833777777777777,3.90395,4.799245,4.16694,2.5287633333333335,5.0431,1.5001875,1.9661375,4.96103,3.409265,0.7984611111111111,4.330025,4.703005,3.66152,4.36701,3.3933666666666666,3.2541499999999997,1.8947120000000002,2.2055075,3.17894,4.25786,3.9071,2.4093,2.701575,2.1246833333333335,5.93445,1.6719714285714284,0.8111,5.42907,4.14412,1.51847,2.6777933333333332,2.3141066666666665,3.15053,6.377031666666666,2.341053333333333,0.900468,2.439775,4.79126,2.4634466666666666,4.856205,6.44805,5.5737,5.15725,3.98852,5.9058,2.4700933333333333,2.2386166666666667,1.6468766666666665,2.0945533333333333,1.8894,2.268143333333333,2.1864433333333335,1.683035,2.685225,3.02387,3.371395,6.46915,5.55465,4.20978,4.652895,4.02093,4.317215,4.43226,0.9098675,2.6470966666666667,5.77365,1.169808,0.7347133333333333,4.73353,3.399225,2.49832,3.4042575,5.50382,3.449695,1.12439,1.2090657142857142,0.67821,4.0192425,2.16253,2.8326,1.1486657142857144,3.148846666666667,2.21189,6.22985,5.03695,4.430945,5.53175,3.6919,1.2913166666666667,3.58982,1.6877066666666665,3.41851,4.153135,3.70998,2.39935,3.19286,2.7839733333333334,4.037255,3.68415,3.257265,2.675325,8.67319,10.3965775,4.606155,1.3148185714285714,5.16645,4.140175,5.2974,4.43498,4.10664,3.865265,3.438905,4.073145,3.695949895833333,5.34536,3.690645,3.93961,4.52985,1.868976,5.44975,5.7413,4.66324,3.23765,3.16548,6.588675,0.646885,2.7574666666666663,2.71331,2.3978633333333335,5.2046,3.16064,1.29209,4.362655,3.4557333333333333,3.62981,5.1551,3.4643516666666665,6.58469,3.4987999999999997,2.9932933333333334,3.3070033333333337,3.0387133333333334,4.35297,2.6945766666666664,2.12169,3.2220133333333334,3.97674,3.4786116666666667,1.904815,1.528405,4.0461446428571435,2.9840419999999996,0.9152133333333333,2.8480366666666663,2.8480366666666663,1.187205,5.8256,3.1176,3.272095,3.43916,3.309745,3.42422,3.40182,3.01677,3.220915,2.0983633333333334,0.5665613333333333,3.253165,5.86461,3.015035,3.579965,3.1847,3.96891,4.1479,3.11018,3.245995,3.75329,3.650315,3.180115,3.132425,3.7036,2.5919766666666666,4.026865,3.88815,8.72975,3.3506,3.570305,2.94177,3.96015,4.04236,3.564825,2.31343,3.51674,2.5707199999999997,3.047795,3.00585,3.131605,3.885615,1.7495366666666667,1.7495366666666667,2.279135,3.000305,3.317515,1.555562,2.42789,3.365555,1.694912,2.876075,1.555562,3.883,3.027375,3.72947925,3.06434,3.37925,2.30754,3.57981,3.960025,4.641215,3.658165,4.3904,3.774285,4.223775,3.637255,3.004865,3.113645,2.98408,3.8836,2.62917,3.55084,4.54799,3.976865,3.624305,0.32916913043478263,3.442495,0.43618833333333334,3.57004,3.54445,2.878815,3.60679,4.341075,5.911764999999999,3.188395,2.53465,2.30833,2.7446133333333336,0.772489,6.343673333333333,2.975865,3.47376,5.04375,2.04432,2.72961,3.168635,3.210515,6.653995,3.64007,4.3912,5.10165,4.55015,4.28592,3.491455,1.46085,1.6915900000000001,3.70266,4.37278,5.22775,2.22905,4.651775,1.7976,3.27124,3.47096,1.9189945238095238,4.02343,5.512615,3.6488666666666667,3.882433333333333,3.4938333333333333,4.492175,5.1284,3.4308333333333336,4.176895,5.1363,4.857005,4.249565,4.563655,4.38471,3.437305,4.835775,2.57255,3.2884433333333334,3.2884433333333334,4.495415,2.51952,3.69496,2.4480133333333334,4.84652,3.3371,3.545795,1.78241,1.7389666666666665,1.1607166666666666,1.1607166666666666,1.724146,3.6353000000000004,1.69932,3.579466666666667,4.726485,5.244922,3.4063666666666665,5.48305,6.04482,2.81853,2.74538,2.913346666666667,1.6595333333333333,3.856125,4.42871,6.1831575,1.6042833333333333,5.3544,5.45875,3.4192,3.511755,4.239385,7.30471,2.1649533333333335,2.404115,4.03604,0.4450571428571429,4.815695,4.14464,4.36456,4.257015,4.56129,1.782234,1.8970600000000002,3.920935,4.75633,2.3792266666666664,3.72815,4.79074,4.603865,1.24952875,4.146835,3.756735,3.87008,4.992315,3.0038,5.534411666666666,3.77628,1.542098,3.540925,1.22875,2.8017566666666665,7.6454466666666665,3.31489,0.8600636363636363,3.478715,4.47697,4.18709,2.0697075,2.0697075,4.8915,6.0082,2.92106,0.4991744444444444,1.9241725,4.157788333333333,4.73536,4.56956,1.820984,2.92235,3.622735,1.1560357894736841,1.1560357894736841,1.1560357894736841,0.7784749561403508,1.3007849561403508,0.5223099999999999,1.1560357894736841,0.7784749561403508,0.2740557894736842,0.7963657894736842,0.2740557894736842,0.5044191666666666,0.5044191666666666,0.5044191666666666,0.5044191666666666,1.0617955000000001,1.3768875,2.3134200000000003,2.2879316666666667,1.056565,6.2117,2.63681,5.704943333333333,2.5404533333333332,4.23235,2.78138,3.290765,2.8359616666666665,4.641935,2.6875666666666667,4.140565,4.027045,5.28275,2.5254,3.73101,5.39795,4.06924,3.108985,4.80006,3.31156,4.3243,5.24255,4.98028,6.0838,5.3822,1.3739875,2.957105,3.925515,3.135935,15.584485,4.984495,4.965975,2.6682,7.28185,4.00393,3.885895,4.17173,3.33551,1.0371325,2.504265,4.451435,4.395025,4.35723,3.242155,4.080415,2.7122833333333336,3.560505,4.685845,4.604935,6.587511666666667,8.054198333333334,1.5000714285714287,3.396615,4.15381,4.07613,3.66075,3.364625,7.20184,2.57475,2.897155,2.515875,3.85502,3.70694,4.881525,2.37055,1.75026,0.8694559999999999,4.861175,4.771645,3.70581,4.247285,3.49447,4.81679,3.765705,6.0181,4.96814,3.27301,3.90118,4.51866,3.04857,3.22491,3.25847,1.789845,3.76712,4.60838,5.4929,5.304119999999999,5.304119999999999,2.387455,1.789845,2.191245,3.100825,0.7194583333333333,1.5544533333333335,0.834995,1.51104,3.01926,0.320747,2.94564,4.188125,1.51104,3.2118089999999997,11.1791725,6.8393425,2.2843108333333335,1.23067,1.7690533333333331,4.433165,4.261845,6.1794877619047615,1.9464875,2.20274,4.9551,4.304225,4.712725,2.04862,5.34745,3.4393999999999996,3.794915,5.26415,7.35856,3.82575,2.30368,2.7741933333333333,1.6722533333333331,4.15078,5.5181175,1.703416,5.25395,4.393635,6.195548,0.6049473333333334,4.926466666666666,3.71292,3.945925,2.99318,2.743995,4.753325,9.060416666666667,5.46355,2.0006666666666666,2.0006666666666666,2.0006666666666666,6.2547,4.491565,4.77971,2.981815,2.628525,2.474684210526316,4.22027,3.053315,2.4707179999999997,1.81981,2.4707179999999997,6.717078,4.415553333333333,4.140155476190476,6.80454,4.140155476190476,4.140155476190476,2.996957142857143,6.6706,5.4671069999999995,2.8479019999999995,2.8479019999999995,2.462985,4.20272,2.762445,3.460675,5.374639999999999,5.374639999999999,5.374639999999999,7.195185,3.47883,3.330685,3.5803624999999997,3.4246774999999996,0.87944,6.902559999999999,2.487006666666667,3.70873,3.12581,12.964437666666667,4.03901,5.4891483333333335,6.57003,2.5857133333333335,3.304745,1.12087,5.4891483333333335,3.479255,1.575305,1.575305,3.09345,5.199380833333334,1.6605425,4.682968333333333,0.828318,1.397775,0.828318,1.9141875,2.4888605,5.384093,3.46327,1.397775,3.20005,4.80196,0.932695,3.404375,4.08773,2.041825,4.311778333333334,2.026355,3.1583,3.084445,1.018206,3.686385,2.312685,2.28203,1.6010266666666666,2.9928816666666664,3.71404,2.76091,3.57115,1.2433922222222222,1.2433922222222222,1.2433922222222222,3.074745,2.3578733333333335,2.3578733333333335,2.831335,3.84307,2.4943133333333334,1.1821075,1.1821075,3.032215,4.21913,0.748985,1.3726733333333332,2.80575,1.39344,2.766113333333333,1.018206,1.018206,1.9185583333333334,1.018206,2.9782900000000003,0.7395616666666666,2.9782900000000003,5.938737083333334,3.627925,2.4305733333333333,1.7285048611111111,0.690505,2.4190098611111113,3.418275,2.4190098611111113,0.9215711111111111,3.678185,3.711805,3.733495,3.337205,2.595505,3.65072,1.71361,0.90157125,0.53255125,0.90157125,0.36902,0.90157125,0.90157125,4.5092,5.47175,6.20785,3.466905,4.66582,5.14405,5.39445,3.7538,4.430145,1.349117142857143,3.4478000000000004,4.138368333333333,3.776385,1.24948,2.80723,4.14714,3.99245,3.938155,3.84705,3.26727,3.286085,3.18287,4.47648,2.696896666666667,5.7217,3.70497,4.074405,4.656716428571428,0.8886269285714284,1.98195,3.8346,6.60252,5.00725,4.524145,3.23411,5.06175,8.475033333333334,4.209066666666667,3.089815,3.6009333333333333,6.4997,3.98906,5.4079,5.49675,4.35926,3.456465,5.7105,4.92323,3.2214233333333335,7.5100549999999995,3.3841,2.7659,2.1132433333333336,4.910215,6.5738,5.99865,5.3568,3.904525,5.2567,5.5747,0.5088961538461538,7.012065,4.470675,4.562,4.25656,4.789665,3.879365,2.9088133333333333,2.566325,1.3506266666666666,0.5770561538461538,1.8894380000000002,3.015973333333333,3.451445,3.96534,5.06195,3.828325,11.727128333333333,3.714635,3.86948,2.86953,0.6690550000000001,6.022766666666667,3.072233333333333,1.63689,4.709123333333333,5.791598333333333,2.719365,8.17835,4.282765,2.37819,2.37819,2.37819,4.40922,9.05573,3.107265,2.500875,2.500875,3.013805,9.84993,1.0272325,5.4407,4.453565,4.4299,2.82433,2.12059,4.227195,3.75717,6.0698,5.71635,3.769375,2.86346,3.84443,4.13528,3.5204090000000003,1.254525,3.13782,6.05438,3.5328099999999996,4.595975,1.02635625,3.8206666666666664,2.3944199999999998,2.5708033333333336,1.841175,1.7408733333333333,2.0988599999999997,5.75105,1.93926,4.078035,5.8998,2.04046,4.78876,3.884005,4.61313,3.253603333333333,2.21581,2.71164,3.704715,4.042963333333333,4.042963333333333,1.127415,2.8560133333333333,2.849653333333333,4.288849,2.2416454545454547,4.844366666666668,1.82498,3.034883333333333,2.1449933333333333,1.6550875,1.6550875,5.1288,7.333663333333333,1.91307,3.10519,2.490825,6.5703,2.940695,0.702214,2.831655,0.702214,2.671065,3.202205,5.06775,4.39621,3.67544,4.849945,5.6705,2.197115,1.8684966666666665,2.4595466666666668,2.306156666666667,6.286,5.0682,5.79885,4.045975,2.756185,4.705685,1.0800075,1.1076359999999998,1.8058333333333334,1.5280083333333332,2.5549666666666666,2.7877166666666664,2.3020133333333335,3.24517,2.70454,4.361315,2.6590133333333332,2.3531633333333333,2.6692666666666667,2.44048,2.78039,2.618793333333333,1.94411,2.4523699999999997,3.858015,3.318775,4.105355,3.779055,2.9143866666666667,2.4398575,1.8858925,1.148225,0.2746955,0.16037239130434783,2.07218,1.99036,0.16037239130434783,3.9427115579710144,2.283325,0.16037239130434783,5.752554930555555,2.3490433333333334,6.03657,3.23152,3.262776666666667,2.1449933333333333,3.03223,2.2545025,4.406205,3.0546133333333336,3.0822933333333338,0.4699736842105264,3.992605,2.369123684210526,2.90282,1.8489,2.528,4.06685,2.46593,7.49031,5.50325,4.02306,3.74941,6.31724,6.01583,1.67375,4.231895833333333,1.97787,1.92244,6.74636,9.24256,1.1422166666666667,2.015945,3.50778,2.570665,2.94975,3.23191,2.911375,3.8316974999999998,2.29517,3.17874,3.38329,3.235345,7.35697,1.2907633333333333,1.9794,2.83402,3.325225,1.8879966666666668,3.40377,1.457265,3.733025,3.3473,7.06612,3.61532,8.955235,3.770315,1.573858,1.6885666666666665,3.166795,6.56266,1.6434,1.5341633333333335,5.3537,3.34872,3.97693,2.603135,2.1351,3.027155,10.86281,5.03083,6.32297,3.39711,2.378615,2.069235,2.733875,2.91373,3.27714,1.8729500000000001,1.5562966666666667,2.4198233333333334,3.54775,1.760915,3.37924,2.83886,3.011805,3.692445,3.374355,1.3568533333333335,2.50595,1.2933999999999999,1.385318,1.529755,3.065465,3.214465,3.662045,2.827985,3.68877,3.92432,2.79194,1.525984,3.476725,3.4618175,3.133225,1.73986,3.10275,3.61231,1.5000625,3.41934,1.6432133333333334,3.938585,3.79505,5.41305,2.45813,3.83569,1.66864,3.396105,3.882535,1.71566,1.0576957142857144,3.9561333333333333,2.755225,4.919475,4.140185,3.0417,4.751855,4.46847,2.2487833333333334,5.3634,5.2695549999999995,6.2738,4.089765,6.561613333333333,3.66211,1.7011333333333332,2.9077533333333334,4.639535,4.98301,2.6644,7.600198,1.3150514285714288,3.6851333333333334,2.08961,1.7452999999999999,2.41613,2.64785,0.3680764285714285,2.6756499999999996,2.8737366666666664,3.482345,2.429495,3.4472666666666663,2.31954,2.57294,2.29358,8.700735,4.802505,1.51113,4.972855,2.4909614782608696,0.7196957435897435,2.569593333333333,7.344264666666667,1.702984,4.60725125,6.2825516666666665,1.9420375,1.576355,1.32825,5.3714,3.137655,4.545785,4.540135,2.4874300000000003,3.866645,0.908982,3.003192,3.54095,4.364225,5.49835,2.866415,4.90811,4.23677,5.18115,5.96695,6.2349,4.789435,4.69675,4.319,1.558706,1.8487125,2.93956,3.321135,1.2064777777777778,4.15206,3.0454733333333333,3.32368,4.107995,3.0715733333333333,2.891156666666667,1.5355400000000001,3.25829,2.7037838888888888,2.9936333333333334,2.899623333333333,1.9236366666666667,1.5646425,2.289235,4.44544,5.0131,4.265945,4.787965,3.433805,2.339695,3.148595,5.1662,3.389,4.542615,4.628495,2.240465,4.505951666666666,1.7338066666666665,4.18152,5.118500833333333,6.190263690476191,4.507715,4.762345,5.40495,3.602,4.1147275,4.038775,3.288675,3.863471,4.082755,1.6917875,3.111715,1.68816,2.15411,4.311295,5.6008475,3.863471,4.04112,3.546225,1.45766,3.768925,2.13654,2.6464966666666667,2.133365,2.69154,1.507779393939394,1.507779393939394,1.507779393939394,0.45619272727272725,0.8083322222222222,2.342127222222222,1.1566275,3.57478,1.20781,4.51724,5.03605,4.758765,3.112115,4.10026,3.08554,5.0098,1.911875,2.961595,2.56581,3.291315,5.794385,4.566735,5.40885,3.948425,0.97529,2.22654,1.2433733333333332,3.81265,3.96157,4.33188,5.4662,4.7376,5.16895,5.5022,4.24997,1.690825,1.732,5.386010000000001,0.9813555555555555,1.2873433333333333,2.76354,8.495989999999999,3.2605,3.625125,3.29322,5.6247325,1.6904925,0.9986166666666666,1.5828875,3.245185,3.507205,3.829485,3.64581,1.88259,7.573845,3.0775233333333336,1.09708625,5.03665,3.0960900000000002,2.8127999999999997,2.4757866666666666,3.6968666666666667,6.167190833333333,2.9875133333333337,3.0357833333333333,3.6323000000000003,2.96304,2.8033466666666667,2.997306666666667,2.782575,1.9761025,4.390905,4.761475,4.60341,1.0192655555555554,0.715595,3.650066666666667,2.62855,1.00737625,2.192177916666667,5.95115,5.1356,7.167475,4.947925,3.811833333333333,1.726708,3.31539,3.66376,2.9452466666666663,3.0740594285714287,4.07131,2.8599266666666665,4.972391999999999,0.9612277777777778,5.5714,1.777824,4.304275,4.39888,1.93866,0.917615,2.93075,0.423976,2.88264,5.88645,6.10395,2.6333,1.47498,2.65863,0.7682588888888888,2.5904700000000003,0.7682588888888888,3.889945,4.2293,1.4092275,1.7239075,4.989733333333334,1.7789733333333333,3.604005,3.88965,3.65023,1.223052,1.6049633333333333,3.96652,5.22275,5.0885,2.96144,2.0004525,2.643775,1.60731,2.1935325,1.823895,2.0414575,4.343495,1.424388888888889,1.424388888888889,3.52106,4.672069333333333,7.700588333333334,5.0195566666666664,7.729495,2.030885,3.82079,4.17928,1.5777416666666666,3.5628066666666665,4.10893,3.476145,5.84545,3.08342,2.43346,2.9184533333333333,4.148105,1.067395,3.83566,4.634585,1.0974533333333334,8.24204,2.68628,3.309815,2.9821508333333333,3.75621,3.935845,4.1485658333333335,2.20785,2.7964466666666667,1.8879299999999999,3.4984333333333333,2.613775,2.2391925,7.885376,3.2962433333333334,3.3914666666666666,4.23357,22.576991554945057,0.6637446666666666,2.768685,4.255235,4.652795,8.39683,4.668635,4.2804,4.43925,7.277585,3.412775,1.8682766666666666,5.601565,4.102325,1.236434,1.236434,1.236434,2.35328125,1.63551,3.19863,1.568455,2.93964,1.4797966666666669,2.463365,2.63768,2.94785,1.568455,3.134245,2.540835,4.202005,4.7421766666666665,4.864795,0.7716816666666667,3.211285,2.66399,4.85852,3.818735,2.747165,2.0565225,1.69198,2.0005825,1.379516,3.928815,1.4600425,4.96614,11.982485666666665,2.69357,2.38164,5.435934166666667,2.665156666666667,4.3191999999999995,6.22715,1.89915,5.562834166666667,4.69429,1.2296583333333333,1.1588399999999999,6.462493,4.702695,1.9441375,3.671575,1.8729575,4.640135,4.8726,4.670635,3.9079,1.3291885714285716,4.12293,5.2707,4.701005,6.248163999999999,4.54909,5.5873,4.877845,4.175615,4.990495,2.68317,4.621895,1.9681375,3.38711,3.25931,4.226885,3.687025,6.0868,4.550235,2.1519,3.2261633333333335,8.801590000000001,4.476685,3.01557,3.6044,3.248875,4.554075,4.330375,4.742315,7.332341666666666,3.90614,2.5512166666666665,4.093120833333334,2.321535,4.575975,2.8520366666666668,6.4628725000000005,1.6832333333333331,4.59827,4.574125,11.735814999999999,0.4614385714285714,4.51916,4.28491,0.6719928571428572,3.56208,4.08853,4.587765,0.90373,5.11335,4.8074433333333335,2.63099,9.897454999999999,3.32719,1.88548,3.062215,3.978215,5.81645,0.5679725,3.849295,2.1674375,4.53863,0.6490269230769231,4.2284,5.6099,5.37085,3.55454,6.8892925,4.30353,3.679085,2.407223333333333,2.777556666666667,4.330345,4.75838,5.02055,5.2337,4.95351,3.1601866666666667,7.036576666666667,2.953375,3.3303205,2.0917425,3.58663,2.545173333333333,1.5301266666666666,3.1247566666666664,2.851183333333333,2.8897066666666666,3.7585333333333337,3.303516666666667,3.305813333333333,2.6907,5.50425,3.1889233333333333,3.757215,5.0582,3.1214933333333335,1.0637833333333333,3.1771700000000003,2.8740633333333334,3.562465,3.28393,3.111883333333333,4.77699,2.08182,1.6561825,2.998395,3.756265,4.664775,1.1008325,5.0907,3.044165,3.8942666666666668,3.04616,4.739848,4.13414,3.28182,3.92139,1.79414,3.774625,0.6716875,4.563575,5.03805,15.626181212121212,3.3475,1.112865,4.506835,0.6129764285714286,2.580125,4.39664,1.867795,1.3472242857142855,3.43972,4.26331,3.4197666666666664,0.7000766666666666,2.461855,7.7134,3.833805,5.83265,5.3386,4.257285,3.1116733333333335,3.321196666666667,3.223456666666667,6.564911666666666,4.26224,5.20075,2.150585,0.44667833333333334,2.158595,3.0027,1.72521,2.40173,4.24867,2.737816666666667,4.87091,0.6730916666666666,4.453405,3.43883,3.100025,1.3268266666666666,2.6140433333333335,2.01507,4.71443,3.903945,2.135065,1.6281857142857141,4.33179,5.1518,4.75239,6.290765,2.22036,5.5402,4.85373,4.39328,2.35906,5.10755,5.9328,5.4404,2.908005,4.83219,2.90749,2.42589,4.38327,4.240535,1.3443333333333334,4.43965,2.777176666666667,2.916933333333333,5.144183333333333,5.144183333333333,5.0729,1.969744,4.633025,1.003025,1.716932,4.79099,2.47822,1.4007333333333334,3.3709666666666664,0.8728859999999999,4.2523333333333335,4.30908,2.91914,4.74997,4.27216,3.865045,5.8556775000000005,3.479035,2.849653333333333,3.1425066666666663,2.3439866666666664,2.549625,2.9950433333333333,4.255495,1.3059727472527471,3.131016666666667,4.45712,5.16285,2.3604858333333336,4.251765,4.577335,4.8308333333333335,3.4990666666666663,5.4189,5.3402,5.1631,5.00865,3.74344,3.37646,3.512045,4.242155,5.6877,4.921255,5.1291,4.30012,4.52151,0.6952858333333333,5.003,4.63859,4.43125,6.8614675,4.379025,4.088775,4.197055,4.3672,3.70858,3.878305,2.11435625,4.4400975,1.9514375,1.3247785714285716,3.697595,2.1752733333333336,2.49012,3.589388666666667,2.9751333333333334,3.13714,1.0837066666666666,2.04202,3.829395,3.825,1.876205,1.876205,4.369915,1.90487,3.11318,4.42297,3.8053,3.63186,1.4741033333333335,2.009875,3.6515641666666667,1.89087,3.777095,4.479225,4.42011,4.1555,8.41091,2.526425,3.65418,4.68997,4.163175,2.9260133333333336,4.03483,4.370985,4.380955,2.345545,2.717076666666667,4.786655,4.09805,3.789075,4.112435,1.609675,3.998695,4.66369,4.53839,4.39446,3.9390549999999998,3.9390549999999998,3.3065541666666665,4.287955,4.60184,4.002145,1.6243120000000002,7.655755000000001,3.877935,5.49605,4.44622,4.291055,5.25935,4.688955,2.94583,3.4233,4.638145,5.2771,2.07698,5.6323,5.574958333333333,5.18995,0.7167589999999999,4.6691400000000005,1.00198,5.17,4.74106,4.92426,4.25188,5.392,3.5503,3.5503,0.84823,2.3047775,5.17725,4.476445,4.162565,3.83316,5.04835,3.28285,4.047025,1.2875383333333332,2.817965,1.5964275,1.17246,4.481666666666667,0.899455,2.297966666666667,3.0769233333333332,1.1366766666666666,2.153355,2.60104,1.3207166666666665,6.21219,1.7696275,2.3869599999999997,3.778695,2.3686175,2.7029433333333333,3.534665,4.576515,2.8945066666666666,2.890563333333333,4.283066666666667,1.585094,2.0439708333333333,4.509405,0.6526771428571428,2.37984,2.82035,3.05696,2.991816666666667,1.267737142857143,0.8546916666666666,2.4319866666666665,4.085655,1.2417285714285715,2.287575,1.4314475,5.297245833333333,2.0609625,4.514535,4.698055,4.424615,4.69501,5.27505,4.42929,4.24505,1.40153,3.8251333333333335,1.697288,2.8832233333333335,1.1404328571428572,4.50596,2.2156175,5.474376,3.661045,4.0816,1.64482,6.7318925,4.74016,1.4731283333333334,4.077825,3.003335,3.904855,4.110755,1.961325,1.961325,3.3887,1.583755,1.583755,2.35906,2.5334666666666665,2.0894625,1.2919566666666666,3.4626333333333332,1.07556625,3.107886666666667,2.491775,1.8903275,1.6141500000000002,2.2095625,2.1544375,0.28136470588235296,2.54225,1.1821566666666665,2.5369766666666664,2.1449933333333333,2.44876,1.0814155555555556,1.050624,3.7321666666666666,2.7870333333333335,1.961325,1.7892275,2.0750266666666666,2.48335,2.551676666666667,1.713194,2.5143366666666664,1.00882,3.2265099999999998,3.1885999999999997,2.5357933333333333,1.527006,1.108066,2.6048,1.108066,2.6048,0.738655,0.738655,0.47759555555555555,2.349255,2.33564,0.738655,2.219135,2.6100566666666665,2.40227,1.764235,0.7765211111111111,0.738655,0.738655,1.66128,1.66128,2.1203975,1.7892275,0.738655,2.39476,0.46068,2.7668133333333333,2.207806666666667,3.480066666666667,2.3014466666666666,2.3014466666666666,0.41344450000000005,0.41344450000000005,2.35906,1.97901,2.24286,2.0205200000000003,0.41344450000000005,3.5316333333333336,2.624925,1.6324,0.613573125,1.6324,0.613573125,10.7913,2.50599,3.4662,2.515676666666667,3.1614966666666664,2.91543,2.8822166666666664,3.3874333333333335,2.3190025,1.6554675,2.85816,4.209066666666667,2.3107,1.66128,2.2272612698412697,2.2272612698412697,2.72915,2.271305,4.273565,2.267866666666667,3.577366666666667,2.8112033333333333,1.739836,2.4450325,2.358705,0.8037327272727274,1.5692525,3.04592,1.828484,3.4445,2.7342066666666667,2.600075,3.8707999999999996,1.6694666666666667,3.6245333333333334,3.275043333333333,4.0568,1.546046,0.2587234482758621,1.2547042857142858,1.2547042857142858,1.1310444444444443,3.07997,3.9417333333333335,2.4921433333333334,2.05437,2.05437,2.328085,1.6432133333333334,0.9861409999999999,1.7182933333333335,1.7182933333333335,0.738655,2.35906,2.7814433333333333,3.881933333333333,2.491775,2.03404,2.03404,2.03404,1.04757,1.4545285714285714,1.4545285714285714,2.39957,3.061106666666667,2.626618207070707,4.607035,2.6281966666666667,2.4221166666666667,3.92929,3.828085,7.8499725,4.61533,4.626465,3.9905333333333335,12.909767500000001,4.64266,3.534885,0.9148075,4.104255,3.081195,2.28963,3.579485,4.88172,8.260380333333334,6.2652,0.49855941176470586,4.4171,2.59493,3.78001,2.4568025,4.815475,4.22415,4.66849,8.52231,3.18322,3.80641,3.897685,3.2924213636363637,7.984465794871795,3.1487266666666667,2.630806666666667,3.58875,3.962725,4.669325,4.08115,6.4350179999999995,5.4384,1.337998,3.491655,0.88982375,5.11265,5.662,5.0925,5.28665,6.1849,4.37079,5.30125,4.017935,9.01881,3.924355,4.815327,3.9959666666666664,4.74637,2.93186,1.300305,1.300305,3.37268,3.87367,2.136305,2.090415,5.01745,3.828755,6.5776,2.21779,2.8754,3.084395,2.4836833333333335,1.18429,4.21908,4.534135,8.85227,1.735306,3.334025,3.51956,3.439475,2.749356666666667,8.08716,4.14631,3.6098,3.160963333333333,3.88459,3.6942,2.99236,2.8307333333333333,3.864855,3.732975,4.069355,4.228755,0.39954999999999996,1.4131966666666667,2.3808599999999998,1.770675,4.700445,3.471135,2.5927966666666666,2.2213475,4.408305,3.7911795,2.210855,2.43485,0.907699,2.15454,2.453953333333333,2.453953333333333,5.13815,1.8690525,2.80111,2.2736300000000003,2.09257,1.6730233333333333,2.85142,4.02247,3.87206,3.902635,5.01915,4.7021,2.818385,2.0979366666666666,1.8708580000000001,5.17255,5.2685233333333334,2.53791,2.958903333333333,2.0942225,2.38738,4.121323333333333,2.6658133333333334,4.865135,3.700795,3.438075,4.70263,2.96302,3.58554,4.205885,2.281356666666667,2.5051533333333333,0.4120864285714286,3.1132933333333335,2.46463,2.82057,5.91545,4.74198,6.032211666666667,2.059635,1.5582566666666666,3.13991,5.5621,5.6905,4.237645,3.1671633333333333,2.2265566666666667,3.752065,2.3170533333333334,4.94077,2.4893566666666667,1.863065,5.0557,4.87479,5.53075,1.712535,1.8904,1.02613,1.02613,1.0149240000000002,0.8771771428571429,0.9435439999999999,1.8581571428571428,4.498685,11.098706666666667,3.98071,4.40167,4.09339,5.4998425,2.692375,1.6537266666666666,3.5390441666666668,2.81479,4.3564,2.63616,2.7805433333333336,2.9392933333333335,3.3945333333333334,2.4906200000000003,3.1759133333333334,3.591366666666667,3.114516666666667,3.3613999999999997,3.5673333333333335,2.969416666666667,2.7620799999999996,3.8592999999999997,2.344656666666667,3.10188,3.28668,2.9050333333333334,3.3784333333333336,2.2764800000000003,5.114907714285714,3.2348233333333334,4.4878626666666666,3.276096666666667,3.144906666666667,3.8049666666666666,2.8041766666666668,2.784136666666667,3.1580600000000003,3.077,3.3916,3.1297033333333335,2.1065725,2.70459,2.7190366666666663,3.08065,3.08065,3.072756666666667,3.20342,3.1539866666666665,2.7173766666666666,3.3154766666666666,4.382133333333333,2.7185066666666664,2.74805,2.741376666666667,2.92047,4.959045833333334,5.035,1.6795666666666669,2.9405033333333335,3.4537,3.389304,3.4318333333333335,3.6956666666666664,3.5917333333333334,3.6596333333333333,3.263658,1.9944199999999999,3.0083504999999997,3.6183,3.4904666666666664,2.62786,2.7738533333333333,3.9909666666666666,2.914956666666667,3.261623333333333,2.321755,1.4125883333333331,3.5582,2.8322866666666666,2.2727933333333334,2.565525,3.308873333333333,3.0690066666666667,2.04516,5.677488,2.431296666666667,0.935267,4.430185,1.94000875,1.7034,4.44874,3.719825,3.212185,2.325215,1.6530075,3.370025,2.47883,3.433125,0.44428349999999994,2.071925,0.44428349999999994,1.985955,1.6530075,2.642715,3.81552,2.849125,3.55694,4.07936,0.6002393333333333,2.9413366666666665,0.898295,0.4519276470588235,4.906925,3.836135,4.81831,2.59975,5.74195,3.98889,3.64852,2.71318,3.4502666666666664,1.717934,6.27985,3.514915,3.83557,4.508245,2.91757,2.1128766666666667,2.1106700000000003,1.3643666666666665,1.816165,1.0543125,1.0543125,4.417275,2.5999733333333332,6.301833333333333,2.237585,2.276595,1.908715,2.096442,2.59415,4.639935,4.75548,2.16133,2.2670233333333334,2.096442,2.137435,3.4446195,1.9833875,6.306513333333333,2.237585,3.2392775,3.586075,3.3768999999999996,5.3373,4.77533,2.338915,2.0104525,2.32302,3.57356,4.81834,5.03835,1.955605,4.174555,1.6595333333333333,1.783425,5.67365,11.058266666666666,2.03244,2.74293,2.206836666666667,4.678655,4.195575,2.0483425,5.31045,4.37563,3.387135,39.50485711904762,2.98718,3.307026666666667,0.5044716666666667,4.957726666666667,2.3069633333333335,0.9271566666666666,4.125515,3.819055,2.2366875,1.819205,2.3691133333333334,3.96553,1.3670957142857143,3.2826013333333335,4.58459,4.80094,0.8999900000000001,4.964265,4.44606,5.2965,3.022733333333333,1.3486075,3.992725,4.478205,4.135175,3.199145,3.533665,3.920585,12.111846919191919,3.0429933333333334,2.93075,4.609295,2.740425,4.41093,3.706535,2.688325,3.047005,5.96301875,5.21735,5.3617,4.854695,2.51044,3.93564,4.878865,3.54412,4.69635,4.65508,0.10276510869565217,2.27594,2.939155,2.81012,1.1422433333333333,0.5473258333333334,0.5473258333333334,1.8689225,2.76375,4.3526,1.199464,2.85197,4.425405,2.57553,4.421976666666667,0.5963714285714286,4.51247,3.807725,4.471595,4.052115,4.657075,1.0116225,0.9920575,3.4596,2.9271933333333333,2.9050466666666668,4.424446939393939,5.18575,6.1354,5.5083,5.0982,3.507345,2.15558,1.54606,5.30045,0.311432,3.21662,3.7051,4.031725,14.146259999999998,1.9304325,3.0728899999999997,0.75129,4.367755,8.700725,3.3595,1.7315066666666665,5.3576,3.2782999999999998,1.0243044444444445,3.79763,2.79806,2.99564,4.75765,3.3099683611111113,1.03979375,7.297751666666667,0.71215625,4.77934,3.102429611111111,1.3545075,2.0272106944444443,3.1615325,3.1615325,3.80894,4.199311416666667,1.422775,2.37952,2.62865,3.6221,2.470755,2.47326,3.240005,3.31115,6.469522666666666,6.0647,4.010985,3.27218,5.05695,3.694595,4.00839,3.303705,3.478165,4.345265,5.5882,2.4827533333333336,2.6054766666666667,1.5311266666666665,2.2698199999999997,2.4493825,1.5192325,3.6663,3.7393666666666667,3.6116333333333333,3.25703,2.6418166666666667,1.4301033333333333,1.49451,0.45458,3.486166666666667,1.228892857142857,1.625235,2.9315866666666666,2.587823333333333,2.58968,0.98695,2.4034975,2.590955,2.756805,3.42989,5.78525,3.76261,2.768125,2.239446666666667,3.3713,4.10287,2.51725,2.831105,1.92111,3.828985,2.713915,3.770655,1.2999766666666666,0.606872,2.433535,3.26773,3.097475,3.87085,4.448804,8.452364000000001,3.205603333333333,2.34605,1.9405766666666666,1.875114,1.875114,2.62075,2.611143333333333,5.13185,4.58267,3.83944,4.65694,4.23586,4.34813,3.383165833333333,4.108685,8.1210875,2.378225,0.503085625,3.07426,1.2521933333333333,1.00249,1.9803499999999998,0.8451739999999999,2.1871675,4.584815,5.2086,5.7049425,1.0717925,7.14908,1.949666,1.50232,2.61588,4.7479,3.7747333333333333,2.5725,3.77832,3.195116666666667,3.5098333333333334,2.9953833333333333,2.7710066666666666,3.0135066666666668,6.895795,2.52233,3.848525,3.604625,3.8637266666666665,1.6451866666666666,1.34229,4.32203,2.8546866666666664,3.04092,6.1370925,2.646375,2.16335,2.445635,3.66201,3.2356366666666667,2.5918933333333336,4.576506666666667,2.9399033333333335,4.328125,2.5361651666666667,1.86114,5.26135,5.28215,4.768315,4.59767,1.56975,2.428405,2.04764,3.35137,1.6673866666666666,0.97996,2.7794950000000003,2.10617,2.0634925,4.051965,0.9007999999999999,6.653074999999999,1.816895,0.7432009090909091,3.7177666666666664,4.67385,0.7719714285714286,3.26166,2.830120625,0.8546916666666666,5.1168,0.20169333333333336,0.20169333333333336,0.20169333333333336,0.20169333333333336,0.20169333333333336,0.20169333333333336,1.956552,4.059945,1.956552,1.956552,1.7717733333333332,0.20169333333333336,0.20169333333333336,3.332883333333333,2.58956,3.881785,3.20768,2.32731,3.44896,1.7137571428571428,1.844026,3.5204090000000003,1.675882,3.248226666666667,2.7573315555555555,5.913356666666667,4.53651,4.125755,4.60943,4.41571,4.516875,4.708235,3.92893,7.5279662499999995,3.7708666666666666,3.582266666666667,2.6220666666666665,4.586543333333333,2.5465533333333332,2.18735,1.8576333333333332,4.83693,4.75645,4.436885,5.3897,5.54705,4.637045,4.984365,0.8541254545454545,0.7424714285714286,0.7424714285714286,4.793035,2.3256833333333335,3.77548,1.0247742857142856,5.0423,1.5009571428571429,2.3425333333333334,2.60652,4.5752999999999995,4.5752999999999995,6.8798,4.226915,1.5950383333333333,12.093086666666666,3.522266666666667,1.1329777777777776,4.928205,4.69642,3.667015,3.031165,2.801055,4.700933333333333,0.6752400000000001,3.6247333333333334,3.0193766666666666,3.26534,3.190376666666667,1.4822133333333334,1.4544366666666668,4.755650833333333,3.0998966666666665,2.9577899999999997,3.3842666666666665,5.259870833333333,3.4267875,0.699596,1.8252433333333336,3.4926,2.4900900000000004,3.798633333333333,3.2970633333333335,3.2021433333333333,3.7878333333333334,3.0938866666666667,2.395496666666667,0.97151,2.9742366666666666,2.4970466666666664,3.84079,3.551555,4.317055,2.759116666666667,3.3502333333333336,2.5979,1.523336,1.91632,2.0671440476190472,3.7792333333333334,1.872392,3.1395133333333334,1.8165333333333333,4.0112,5.0509275,4.706539333333334,2.3238775,2.6174,2.633575,2.513325,1.589357142857143,2.4991575,3.1847260714285714,2.37678,3.5568000000000004,2.919015,3.607955,3.43398,0.9312444444444444,1.289005,1.7390525,2.3196625,2.9627966666666663,3.419233333333333,4.74952,7.379005,3.16425,4.68864,4.49247,15.545809,0.49804649999999995,11.22652,1.0616366666666666,2.914635,3.2700366666666665,1.9371066666666668,2.84277,1.506364,1.525984,2.903116666666667,1.310698,2.7305200000000003,2.1174399999999998,3.5820000000000003,2.49941,2.723516666666667,1.5179933333333333,0.77296,3.339733333333333,2.4780166666666665,3.3425999999999996,1.04757,3.786,0.7325283333333333,0.3482476923076923,2.47951,4.51033,5.09445,4.584565,0.945609090909091,4.052725,4.57909,1.3381925,2.52005,5.405873333333334,3.255395,3.89786,3.83601,3.765115,1.9708825,3.927655,2.73522,2.835945,3.48775,2.70961,2.74596,3.8385,3.17456,3.54754,2.90003,3.368165,5.35265,1.2732066666666666,4.363915,2.2082925,4.148715,4.513413333333333,2.314445,2.8906766666666663,3.0256900000000004,5.652586666666667,2.48793,3.2498,5.78135,3.4662,4.60337,1.6986633333333332,2.5451,5.3263,3.4333333333333336,5.3608,3.3770666666666664,3.6126,3.2514066666666666,4.339466666666667,3.0877133333333333,2.816926666666667,2.8562133333333333,0.4391361111111111,2.531025,2.09614,4.9541,4.90496,3.0288533333333336,2.72466,3.2564666666666664,9.15552,3.5533681250000004,3.850805,3.3000566666666664,4.53508,3.15172,4.003299166666666,2.713506666666667,2.1708575,3.00076,5.3903,4.59397,2.0612833333333334,3.193885,2.91153,2.5916099999999997,5.064873333333334,1.6984179999999998,6.053026666666666,4.181,4.66529,4.141065,5.4705,3.554435,6.976143333333333,4.53504,4.057935,0.67169,2.2856225,1.6813575,3.1617933333333332,3.66380375,3.904555,3.79949,5.35425,2.9401966666666666,4.728,2.7396166666666666,3.401533333333333,3.0507866666666668,5.03695,4.607985,6.45855,2.7702766666666663,5.917854999999999,4.306635,1.4702849999999998,5.69815,3.546615,2.785695,2.190645,2.15453,4.873506666666667,1.2050642857142857,2.4803333333333333,2.044465,4.201645,4.42436,2.5026533333333334,3.2354566666666664,3.2111903333333336,2.735383333333333,4.12965,1.341396,2.2099166666666665,2.2951,2.6979399999999996,2.43484,2.8064766666666667,2.66994,4.003675,2.8571833333333334,2.7904633333333333,4.298315,2.312325,4.408335,3.522945,1.4278912121212124,1.4278912121212124,4.486935,3.0573099999999998,1.71365,1.3531325,2.2184775,2.09641,1.1659599999999999,1.4127866666666666,0.64141,1.5566833333333332,1.5125533333333332,2.8399433333333337,2.2617933333333333,1.6951566666666666,1.9246333333333334,2.3045,1.3811200000000001,1.7838566666666666,1.75167,2.175025,4.096845,2.80777,3.0363066666666665,2.83225,5.90195,3.0697,4.006105,3.9842875000000006,1.985435,3.71231,3.3828,1.86625,3.44338,2.27776,2.735275,3.688675,2.3378525,3.82138,3.02291,4.05929,3.512866666666667,0.9408022222222221,4.5538,3.866465,3.310715,3.57293,3.090666666666667,5.0398,5.09015,5.444017499999999,9.032567499999999,4.085465,4.34874,2.9890566666666665,3.87639,4.794295,2.544695,2.822095,4.24988,2.26136,5.524847,1.78233,2.530575,7.772786666666667,2.8783733333333337,3.8545040000000004,1.3131542857142857,4.6733,4.749775,3.124033333333333,4.691265,5.0031,6.146967,17.0253775,0.666464705882353,1.0814155555555556,3.2671966666666665,3.991075,3.69624,2.1661025,3.5514,4.099605,4.901285,2.347745,4.831645,1.59615,1.59615,5.0294,0.7478154545454546,1.88983,2.955655,3.84429,0.3558192307692308,1.9541266666666666,4.669251333333333,1.1133,3.00957,2.7271533333333333,3.09287,7.57552,2.4707433333333335,3.4286,1.9400266666666666,2.1695066666666665,4.273125,3.51522,3.187465,6.765055333333334,1.79217,3.100325,4.42908,6.9363,1.7097333333333333,2.1778233333333334,2.5417,1.39165,2.816405,1.9586099999999997,3.995665,3.72102,1.5038025,1.9551066666666665,1.9551066666666665,2.7869833333333336,5.50325,4.176271666666667,3.77387,4.757225,4.221605,3.02087,3.629135,4.070905,3.661945,4.689421666666667,4.396375,4.522715,0.8947269999999999,0.360965625,5.42465,3.902305,2.44441,8.19486,1.5843,4.8918,4.04162,0.31440166666666663,2.0756033333333335,1.3191866666666667,1.8794199999999999,1.2722866666666668,5.295762,2.97321,2.95162,5.283875,5.2359,4.626415,0.5905646153846154,1.902235,0.5995510000000001,5.531291666666666,1.589808,5.0388,2.1934475,3.3561587499999996,3.09383,4.094735,4.172345,4.682575,0.9775727272727273,2.93652,4.01604,1.838995,1.689495,3.57338,3.118165,3.25208,3.70939,5.340314285714285,4.559825,5.40255,2.9515933333333333,0.55387,3.534966666666667,3.990205,0.6898315384615384,4.01235,4.49271,3.90572,2.62907,2.624823333333333,5.8424,3.026895,3.468595,2.23558,3.93926,1.92057,5.0954,3.57595,0.6888446153846155,4.960835,3.86352,3.20374,3.715385,4.3507,2.71028,3.86696,0.632161,2.86294,3.9304699999999997,4.970495,3.3098333333333336,2.31776,3.550133333333333,2.31776,3.74632,2.9182,3.5324000000000004,1.7165833333333333,3.08864,2.31982,4.719085,3.04428,5.741383333333333,3.29467,3.119806666666667,3.17727,2.4781025,2.4781025,2.4781025,2.6888666666666663,0.9362866666666667,4.74498,2.40064,1.6750666666666667,3.6877333333333335,2.7877666666666667,3.3412333333333333,4.756025,5.3369,3.653405,2.565525,1.9349,4.061925,2.06306,2.6689566666666664,2.73378,3.609395,2.05535,4.06206,2.65187,1.692618,4.84641,4.133695,2.552725,3.59892,0.7399355555555556,2.375723333333333,4.664435,7.513695,5.0387,2.95745,2.72497,3.31351,3.854625,2.3543525,2.1921425,5.11515,2.33852,4.46181,4.31648,4.71991,8.769919999999999,4.037725,4.34115,3.378955,4.838715,4.4988,3.6313075,3.6313075,3.90526,4.018773333333333,4.399605,4.20537,4.251275,4.316835,3.90247,1.15128,4.25229,4.125425,5.5685,7.735155,5.1,3.6284193333333334,1.9260433333333333,1.5486783333333334,2.50814125,4.687335,3.62987,4.82008,3.3536,4.878395,4.978145,6.01845,4.95152,3.1616066666666662,4.063875,4.56577,5.19415,5.37995,3.981795,6.561375,4.53591,2.2919199999999997,4.98656,4.22203,4.1731,3.780075,4.942655,0.7704345454545455,4.96695,4.97737,1.2768057142857143,1.4779820000000001,5.2334,5.01765,8.878222000000001,5.49,5.71285,6.1984,2.89488,2.7477533333333333,5.17915,1.6670175,1.6670175,2.54955,1.5747833333333334,2.8817258333333333,3.6803333333333335,1.9380125,4.260632272727273,1.3114033333333335,1.88184,6.772030000000001,3.0969533333333334,3.566275,2.894305,4.059235,4.409305,3.1103233333333336,1.1298333333333332,3.937985,2.5654766666666666,3.917335,4.27318,3.754815,4.45594,4.77397,4.733045,3.74181,5.32525,6.57025,4.429235,3.18327,3.907395,1.9200225,1.9200225,3.831215,4.35251,2.268353333333333,2.85462,2.116165303030303,2.6682433333333333,1.7180133333333334,1.7180133333333334,4.477415,3.27046,2.108925,3.56649,2.727845,2.87395,1.2316825,1.346411111111111,2.696175,0.47956736842105263,0.8573655555555555,2.46569,4.398865,0.42981545454545456,4.23038,1.89603,5.4088,3.33213,7.291915,4.208735,5.325753333333333,5.01685,5.08885,4.084795,1.829745,1.874398,5.0121,2.834815,3.83149,1.2317466666666668,4.33006,4.590245,2.810945,2.680925,3.34844,4.60364,3.663525,3.70369,3.86056,3.517385,3.27817,3.802,1.100982857142857,2.222815,2.1705,2.63195,4.37243,7.32509,1.067768,1.50513,1.50513,2.00736,3.845825,2.70525,3.026905,5.201325,2.879303333333333,1.174235,1.174235,1.174235,2.859895,3.2118089999999997,4.57073,3.15861,4.19232,3.433455,3.721255,2.935265,3.1728474999999996,3.5605,4.25180375,2.4302875,1.1659599999999999,3.004875,2.4302875,3.4292,1.4011666666666667,1.8948166666666666,1.670265,5.472042,2.53418,5.826312,5.472042,3.2921319999999996,1.85473,1.85473,2.68825,5.1889,1.85473,2.04666,5.75447,2.28218,2.6165,4.87287,3.475815,4.34728,1.92968,3.161255,4.78762,1.9127266666666667,2.1368,3.79703,1.92968,2.48073,1.906635,5.80459,2.5611,1.093098,2.460105,3.11006,3.4119713333333332,1.99486,2.062548,3.7578,1.9581313333333332,1.764505,3.14347,2.21612,3.25247,3.7046,2.318843333333333,2.736855,2.266845,6.3951,2.338045,2.782515,3.24177,3.24177,8.7263,1.01645,2.93298,2.49795,2.972265,2.28725,1.39836,1.39836,2.93442,1.89783,6.135755,2.302295,3.33631,2.967185,6.2279,2.674115,2.47598,5.919625,5.919625,2.4322,1.51399,1.3156625,1.3156625,1.51399,2.0180333333333333,1.4435433333333334,1.1569399999999999,1.6324966666666667,1.71476,3.79584,1.753775,3.11662,2.786605,3.01322,2.71448,2.753555,2.31775,3.3330408333333335,3.3330408333333335,6.02655,2.37712,2.962185,2.578795,3.500225,2.356865,2.670765,2.4921,5.40031,1.758395,1.487271,1.2812043333333332,2.150279333333333,5.32121,3.937786,3.31959,3.369495,1.68408,1.68408,1.68408,5.02136,2.4392,1.1569399999999999,3.083125,3.373975,1.302725,5.2873149999999995,3.1469300000000002,6.14236,3.19636,1.679655,3.13733,2.8598733333333333,2.246495,3.279015,3.12943,3.19369,1.573115,2.66969,2.54686,3.153225,5.02711,1.828675,3.138205,2.56336,5.45068,4.59274,1.8793,2.270025,5.56868,4.95228,5.33411,5.13029,0.919284,0.919284,2.4563889999999997,2.4563889999999997,0.689854,4.83058,2.81721,5.40203,4.371,4.8372,2.02727,4.100693333333334,4.100693333333334,2.339455,3.279285,3.34293,1.14135,4.69371,3.12264,3.143585,2.713385,4.64998,2.34652,2.34666,3.12258,2.96332,2.88749,5.12114,2.576595,1.921215,3.575835,5.44116,5.61775,4.45888,2.552035,3.45617,2.473645,5.14867,2.53995,3.07656,1.98447,6.8475,3.97253,2.103095,2.583705,2.46798,4.81817,2.231235,2.75931,2.362975,7.37576,4.95526,3.029035,2.176625,2.311635,6.40663,2.85903,3.358055,5.60148,2.732325,2.943725,2.486255,2.871525,1.8083099999999999,1.80866,1.69794,1.6048933333333333,1.7746433333333334,2.0073,1.529755,2.228153333333333,1.74722,1.8083099999999999,3.81942,3.9549,2.114825,1.63093,1.63093,4.157243333333334,4.157243333333334,3.0965166666666666,3.0965166666666666,2.60968,2.07733,1.75137,3.52612,2.15013,2.15013,2.4438975,2.4438975,2.95256,2.04835,4.50174,2.247585,3.218775,1.9951833333333333,1.9951833333333333,1.634865,3.75457,4.96881,1.4011666666666667,4.02564,2.318843333333333,2.221025,4.26231,3.142535,1.86739,2.3044,6.8285,2.147665,6.09775,2.979155,3.31098,3.04101,2.561205,6.24648,3.06445,2.102195,2.610294615384616,2.609765,4.5476,3.461135,1.5119719999999999,1.5119719999999999,3.51934,4.95745,4.41702,4.91938,2.60255,2.9722,1.78249,2.89529,1.60937,2.60387,1.79022,0.74391,0.74391,0.74391,1.9310025,5.05767,1.9310025,2.280635,3.426035,1.666705,2.09279,4.12109,3.47853,4.89152,1.60856,4.81342,1.60856,1.60856,2.173085,1.943035,2.41603,5.7756,2.41603,2.33064,3.56184,2.00413,1.729975,2.731095,3.05176,3.363150833333333,3.137116666666667,3.99465,1.3811633333333333,4.89039,0.7218281818181818,5.1705,4.748022499999999,2.5878699999999997,2.5878699999999997,0.7084145454545454,3.7086333333333332,2.695116666666667,5.46285,4.857115,3.870935,5.48715,4.39555,4.248535,4.71694,4.763195,4.35634,3.68255,3.880335,4.87004,5.2386,3.325745,3.34222,4.107925,2.62913,1.4884499999999998,4.1495,4.135015,3.27415,1.7186857142857142,3.83627,4.03577,6.2143825,1.1255325,4.508195,4.290655,2.11457,1.92321,3.233045,3.56029,1.639825,1.5119719999999999,3.72349,3.573845,2.61281,4.6373,3.074835,1.10392,2.8680833333333333,1.2133214285714284,2.96781,1.8948733333333332,3.3549,1.819175,2.6462666666666665,4.382685,3.31532,4.4808,3.27193,2.2703425,4.68306,4.07627,3.036045,4.625735,4.29717,2.7470833333333338,6.1141,4.565755,3.1097399999999995,2.687053333333333,2.42954,2.9786533333333334,3.1933733333333336,2.8365833333333335,4.68604,4.116205,3.813895,2.3983633333333336,2.5917600000000003,2.3348999999999998,2.8036600000000003,2.4676233333333335,2.3054900000000003,2.22945,1.7566375,1.2862125,3.1080266666666665,1.11893,1.768345,1.7767125,2.77645,1.58392,1.93745,4.5222,5.4542,2.11157,4.165905,5.65485,7.357968333333334,2.08015,1.5587680000000002,6.50245,4.12549,4.341065,4.03724,3.845095,2.01474,3.423635,2.652825,2.94472,4.558445,0.6983991666666666,4.11159,1.9664933333333332,0.8049463636363636,5.07325,4.583445,3.885615,1.8760989285714285,4.51501,3.65512,2.61825,2.4004366666666668,2.5050733333333333,2.1174033333333333,0.599128,2.9026599999999996,2.981025,4.853005,2.618875,1.8695375,4.414165,1.01056,1.7740833333333335,1.7740833333333335,2.685835,1.7740833333333335,4.289885,2.745885,4.94636,4.244095,5.90495,13.207031666666667,3.111076666666667,5.09995,2.68007,4.489525,2.9134,6.731815,3.10821,4.593505,5.0264,3.69328,1.5350383333333333,4.763905,2.85444,2.8179200000000004,1.1506333333333334,2.13448,3.458805,7.335616666666667,4.476165,2.5334666666666665,4.508595,3.3887,4.42857,5.09075,4.3809,2.61431,2.83947,4.10352,5.7453,2.50681,5.0782,2.1722525,2.1722525,3.143775,4.952415,1.12516,4.242907333333333,2.4901,3.386425,2.6395933333333335,2.36781,2.72175,2.29921,0.7049414285714286,3.50291,2.6291733333333336,5.0532,4.15796,0.2459140625,5.3883,4.682675,3.8765,7.18541,3.4177666666666666,2.9419966666666664,2.326023333333333,3.2284466666666667,3.4210333333333334,1.4311466666666668,2.908193333333333,3.0497433333333333,1.4787866666666665,3.401733333333333,3.22857,2.92879,3.15049,1.370955,4.271115,2.14051,5.2914,4.362895,3.592585,1.58309,2.5136533333333335,1.25688,1.79646,1.25688,4.95554,3.6033000000000004,1.670044,2.3709275,3.844645,3.68232,2.96947,3.76995,0.342659,1.5255104166666669,4.028895,4.083755,5.02595,2.02104,2.9246466666666664,3.12045,3.2700366666666665,2.55515,3.166385,4.56362,2.068525,2.23564,2.81613,2.8415266666666668,2.739466666666667,4.29624,2.13774,4.357005,3.7850975,5.75485,7.7853225,0.7210066666666667,0.845762,4.10124,6.875344999999999,1.651042,3.80427,1.396575,1.396575,3.42578,0.4326588888888889,3.82,4.22047,2.4579,3.845935,3.163335,2.62106,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,0.238154,2.368905,3.67874,5.000773333333333,3.3650583333333333,4.3226325,6.4450545833333335,3.23731,2.1441333333333334,0.9901983333333333,3.52282,0.70987625,4.845795833333334,2.7016625,3.416725,0.70987625,2.492855,2.86224,1.0471825,4.45666625,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,0.1581037777777778,5.0289,1.74501,4.23985,4.63294,1.9420179999999998,4.34062,4.48744,5.42535,5.132334999999999,3.9236514285714286,3.184435,4.5317,2.421155,4.64757,4.829625,0.783,1.6481857142857144,1.4538714285714285,3.8623,3.8623,2.996325,3.73791,5.19975,4.145625,4.61491,3.4576,2.2630733333333333,0.5017628571428572,4.158725,2.93931,2.67811,4.320165,3.23413,3.18337,4.98128,4.184125,6.6467575,4.35693,5.08485,5.34545,4.41372,1.2802971428571428,3.204985,4.554255333333334,34.536113100288595,1.3138933333333334,4.347845,3.897925,4.60321,4.232655,4.15252,5.36805,0.4123047619047619,4.84134,4.25592,2.060255,1.94881,3.81223,1.6434,2.610305,2.3462,1.6917125,2.86745,2.551676666666667,3.25537,4.18442,0.63609,4.336265,3.71525,0.38323684210526315,2.576513333333333,2.91379,2.618235,3.815485,1.763265,4.61692,3.84749,3.123405,5.03105,3.179245,4.39158,2.88476,3.729975,2.1800725,4.554255333333334,3.72709,4.369325,2.87587,1.744996,4.99105,4.60897,6.840038333333333,3.42474,4.454355,6.4536175,5.121067,2.2878675,4.911575,6.861597499999999,7.341716,2.54665,2.527065,5.1827,5.685103333333334,4.477975,3.831605,5.548575,2.517725,2.156105,2.017935,59.20640550036243,5.63485,4.139045,2.454975,1.0501099999999999,3.3747000000000003,2.9881533333333334,3.4539000000000004,0.99154,4.856875,0.7908577777777778,7.946556428571428,2.06306,3.3754000000000004,1.8521519999999998,2.655415,2.37875,3.1550499999999997,2.40866,2.292386666666667,3.30458,1.4844266666666668,5.285705833333333,3.862033333333333,1.4236725,2.4084,1.3751266666666666,1.4331,7.18388,5.50375,3.205905,4.939815,5.38293,1.4970285714285716,3.3811999999999998,3.69867,1.6088475,5.5232,3.545525,3.982535,2.2055075,3.0153624999999997,3.779533333333333,3.794775,5.3318,4.5802,4.357355,2.2444825,3.79759,4.4552000000000005,3.0157066666666665,1.631612,4.49565,3.4468,4.051635,4.80246,3.98749,4.094855,4.819315,4.21951,4.182565,4.608815,4.51307,2.9855699999999996,3.845305,4.471565,3.18491,4.183225,3.71032,1.5893525,1.5893525,4.49639,4.636945,5.35655,4.47,4.5932,3.3935333333333335,2.834055,4.24748,5.8357,0.7991345454545455,5.32165,6.837702500000001,5.5755,5.7483,1.1498333333333333,3.113385,0.8901483333333333,0.8901483333333333,0.8901483333333333,3.57359,3.3401333333333336,2.77538,3.3529666666666667,0.9125030000000001,4.965605,5.04245,3.082295,1.54021,2.1729475,4.51781,3.76037,3.819375,3.103564,5.4995,5.0288,2.5525266666666666,4.51704,6.8217,2.32498,4.10412,3.627125,3.075765,4.69123,4.330305,4.873625,5.57935,3.70418,3.686765555555555,1.8618333333333332,1.8618333333333332,0.7080463636363636,8.821364,2.069005,6.1033,5.27015,4.46423,4.292085,3.759505,3.0632116666666667,4.70885,7.5434175,5.886783333333334,2.28279,4.46711,1.0996700000000001,3.62908,1.9639966666666666,0.9295111111111112,1.2014714285714285,2.815303333333333,3.1924566666666667,2.807453333333333,1.2912257142857142,2.75892,3.158023333333333,0.9919544444444445,2.9538766666666665,3.2271633333333334,1.621454,1.646512,3.3493,3.1242199999999998,3.1588433333333334,2.46515,1.593898,4.44088,4.81822,3.77556,4.51678,4.793955,3.434025,4.689855,5.84775,4.58163,4.12299,4.223385,12.670491666666667,7.929740000000001,2.8874033333333333,3.630665,2.0552766666666664,3.719585,3.11467,4.50035,1.08183,4.283165,4.53852,1.219115,3.47147,2.776746666666667,4.232655,4.136105,3.709065,6.59115,7.128973333333333,3.903175,1.5286283333333335,1.5286283333333335,1.5286283333333335,4.72306,1.3154516666666667,1.374625,0.4738205555555555,4.396426666666667,3.00853,4.27259,1.01359,1.15729625,4.279145,4.367915,3.8839,17.18063498809524,4.236135,4.42736,6.253035000000001,2.7285166666666663,3.80733,3.678185,0.9178366666666666,1.493675,4.556105,3.997235,4.4361,3.99218,4.70773,4.21137,2.726992444444444,3.32438,5.3569,0.6116349999999999,5.1366,2.39986,4.138655,5.3339,3.445233333333333,2.533603333333333,3.845553333333333,1.5172866666666665,4.364985,6.56495,2.6311966666666664,2.33962,4.06272,4.5018,4.74438,4.01878,3.54493,3.96925,4.770105,4.668375,3.761065,4.96602,3.833805,1.1116785714285713,1.6353325,6.5292604999999995,5.25485,4.37256,5.1862,2.437405,2.8976166666666665,2.769633333333333,5.083836666666667,2.0373325,2.072025,3.06192,3.13335,2.9716299999999998,4.602445,3.807065,5.2138,1.1567925,4.479565,0.889335,4.00124,3.421375,1.60351,4.646705,0.9342155555555556,4.645265,5.1226,4.75355,4.055325,3.646323333333333,3.79798,2.8351866666666665,5.42305,4.58694,3.0411035,3.891485,2.37651,2.607635,1.95025,2.621375,3.61021,4.930535,1.07556625,4.3886400000000005,1.302225,3.21548,1.5697633333333334,1.07556625,0.2128783783783784,3.978615,2.972005,2.254786666666667,1.7869033333333333,2.82349,1.0731925,3.45786,3.373185,4.85487,2.5840333333333336,6.17965,7.299845,2.995573333333333,3.3389,2.6472666666666664,0.926755,2.26816,6.15505,4.83672,4.823175,4.690895,2.1233033333333333,1.5601900000000002,3.8033275,1.595075,2.2829325,1.65037,1.58924,1.6192025,1.9448775,2.022665,1.899795,1.9914125,1.3148185714285714,1.5015425,1.902435,2.48107,1.77016,2.34091,0.5351086666666667,1.7201119999999999,3.2477766666666668,3.202976666666667,1.7696275,1.8955033333333333,1.6190825,3.97023,2.18193,2.86109,2.837315,3.576025,4.840715,2.3650466666666667,4.33332,1.7726133088235296,4.35947125,22.46018,4.609733333333333,4.72361,4.42395,3.29719,3.80007,4.77796,2.90576,4.31497,3.28539,0.73972375,3.122215,5.10545,3.824135,4.086785,1.7436533333333333,2.18506,2.3095433333333335,2.19018,1.3519428571428571,3.2824833333333334,5.21545,4.127795,3.28284,4.13562,5.3259,4.33279,5.5144,1.4043625,3.526655,4.157975,4.70419,1.514466,2.7047833333333333,1.8277649999999999,1.8277649999999999,3.618455,4.551245,2.777336666666667,3.1561233333333334,4.432965,3.815215,6.4699975,3.91101,2.21949,1.493675,3.99876,4.1846,3.107886666666667,2.2272612698412697,2.2272612698412697,3.3031333333333333,4.479315,4.04515,5.232471666666667,3.76264,3.626859777777778,0.6236677777777778,0.6236677777777778,0.6236677777777778,3.789275,3.73924,4.307083333333333,5.0423,1.5646425,5.66565,4.51865,4.772105,4.09439,5.26425,2.67794,1.6167285714285715,5.32615,5.3001,0.46228714285714284,4.266033333333334,5.36585,1.5921816666666666,5.6153,5.4191,4.651355,4.072375,3.757885,2.77447,4.543375,1.6550799999999999,4.351805,1.5699249999999998,4.176425,5.9641,1.16886875,3.133525,7.32117,4.046475,3.8053666666666666,2.27604,4.4665,5.83465,3.7927,6.205733333333333,4.63835,2.2165233333333334,3.0808233333333335,2.85496,2.9543966666666663,3.0978366666666663,1.8297866666666665,4.59544,0.577515,1.8422025,1.8422025,3.061185,6.18235,2.357775,3.04033,4.55168,4.62913,4.277935,1.4288333333333334,5.486494470238095,4.42345,5.48165,3.690325,4.391455,3.878745,0.51271,2.4342194285714287,1.038145,0.51271,4.10327,0.83983,4.25357,3.983715,6.851108,2.16601,1.0078025,1.1123319999999999,2.21637,2.9673766666666666,1.4945833333333332,2.4211133333333335,3.250275,3.278005,2.0723733333333336,2.32391,4.46867,3.34346,4.03038,5.5008,3.379585,4.75889,6.7699300000000004,4.67819,3.403135,4.427775,3.6753,4.13057,5.14485,6.5703025,5.5469,2.6171666666666664,1.01684,4.105275,4.021175,4.31102,5.04905,3.866295,4.78301,3.0304699999999998,2.6466866666666666,3.1798933333333337,2.680426666666667,2.68666,2.9121166666666665,3.364966666666667,2.648216666666667,4.190835,5.16425,4.531235,5.689,2.665906666666667,3.27518,2.819275,0.7168214285714286,4.41357,4.425005,4.564465,3.1452333333333335,5.803416666666667,3.722305,4.32192,4.588415,0.6343576923076923,0.5639907142857143,4.49334,2.8048535,3.63877,4.483715,4.563745,1.661222,5.395,4.489845,2.7882933333333333,2.570136666666667,2.2310025,2.0797379166666667,3.4057999999999997,3.5468666666666664,3.1858733333333333,2.99202,3.4795,2.70455,3.3959333333333332,3.980866666666667,4.750417499999999,0.5705375,0.5705375,0.5705375,3.5035725,3.8719333333333332,3.2029866666666664,2.819516666666667,2.5321766666666665,1.15128,3.3588666666666662,3.0074733333333334,2.058005,2.4956733333333334,2.42471,0.9125300000000001,2.9221766666666666,4.683515,9.889709,1.555415,0.5678639999999999,3.66787,0.5678639999999999,0.5678639999999999,0.5678639999999999,0.5678639999999999,2.1430975,4.315074,3.86923,5.60455,5.95055,2.7910233333333334,3.01069,3.1885174999999997,3.9959049999999996,5.50355,1.8389,2.3473866666666665,3.179926666666667,2.603823333333333,3.2248699999999997,4.75168,2.263456666666667,4.21227,1.1512444444444445,4.564965,5.51215,4.395925,0.86501,0.631695,0.631695,0.9942564782608696,1.8592664782608694,0.9942564782608696,0.9942564782608696,0.3992934782608696,0.3992934782608696,0.9942564782608696,1.4540366666666669,2.4597233333333333,2.932565,3.1801566666666665,2.6164133333333335,2.5872033333333335,3.111963333333333,2.745096666666667,4.44791,3.49818,1.905005,2.26171,1.7723275,0.18770788107511044,0.18770788107511044,0.18770788107511044,0.18770788107511044,2.48097,2.77933,0.833346,5.6838,0.8140727272727273,1.7195900000000002,4.908549166666667,4.99748,3.2358,2.80421,4.51608,4.563295,1.8521166666666666,1.2066025,3.498855,4.513655,5.9492,2.463255,1.4380933333333334,1.8708633333333333,3.8323,1.4762766666666665,2.66286,3.1601766666666666,2.81447,4.35719,4.046785,3.0544,4.18761,2.4517433333333334,4.419965,5.195,4.053385,4.41238,4.755965,4.9216966666666675,4.192676666666666,3.2433937142857143,5.228888333333333,4.36712,4.91992,4.542835,4.771665,2.17015,3.07324,4.131685,4.93224,4.242155,3.96386,3.109005,3.157665,3.87781,2.48035,5.32595,3.764985,7.227074999999999,5.94235,5.8341,4.78822,1.373557142857143,1.01045,0.6399330769230769,1.7369379999999999,4.40237,5.2088,3.895335,1.6408840000000002,4.80087,2.873295,4.979615,5.18335,6.16413,4.05035,3.037355,1.7933299999999999,5.1872375,3.94501,3.146795,1.6884925,1.1681775,3.91974,3.178405,3.6146325,3.678685,2.1442,4.8578,1.6318833333333334,2.91869,2.388795,4.633705,3.695225,4.76641,2.168525,1.533485,5.18135,2.94908,8.91544,2.7018,5.09625,5.658,4.214745,4.86599,3.352365,3.604455,2.3867575,4.132245,5.635285,2.381485,4.80484,4.816065,7.206805,5.18945,3.890233333333333,4.46716,4.595765,3.34346,3.56404,5.0212,5.1475,2.4993325,3.1511066666666667,3.5503666666666667,2.286835,4.86024,4.46708,5.7212,4.946155,4.59298,5.04775,4.533065,5.564,0.5934338461538462,3.3417333333333334,1.2490828571428572,31.4301105525578,2.214665,4.392065,2.916215,4.354525,1.7314019999999999,2.4408533333333335,3.5052511904761907,1.6330711904761905,1.6330711904761905,1.6330711904761905,1.6330711904761905,1.87218,3.343405,0.3863211111111111,7.485227500000001,0.3863211111111111,4.94773,4.981335,2.114405,5.0009,2.71535,3.878096666666667,2.3076033333333332,2.263523333333333,2.71311,2.0937266666666665,0.6406292307692307,2.588016666666667,0.7338,2.888396666666667,2.201686666666667,2.3449619999999998,1.2017233333333335,2.3449619999999998,5.92905,7.669625,5.1739,4.51075,5.17795,5.88665,7.687443333333334,3.094085,1.8542375,1.8542375,2.36619,5.18165,3.792345,4.89859,6.162661666666667,4.40837,2.69869,4.47147,3.34047,3.25249,2.21391,0.942998,1.935455,4.732575,4.588035,5.2338988888888895,1.8948625,4.506525,1.460454,3.399115,1.442052,3.4192,3.4378333333333333,1.90147,2.8982666666666668,3.252276666666667,4.88509,0.6567261538461538,3.47313,3.5774000000000004,2.794,2.3060033333333334,4.28468,3.1851566666666664,2.2059866666666665,5.94071125,3.626135,4.825825,3.864485,3.549135,4.980465,5.0925,2.1007633333333335,6.10715,2.3431651666666666,2.052773333333333,3.14335,2.9983533333333336,3.5111333333333334,2.866495,1.8242766666666668,3.140539196969697,4.241005,3.4582725,2.3275836666666665,2.3275836666666665,2.52421,3.875925,3.94871,0.6484963636363636,2.925305,3.03438,8.24392,0.9290090909090908,4.351505,3.66413,5.50215,3.405675,3.874555,2.16823,3.72164,2.806425,6.28965,2.6606475,0.9405925,3.99069,2.55062,4.639915,2.4715433333333334,3.560425,3.761275,4.215585,5.1542829999999995,3.20494,1.998505,4.166655,2.4503233333333334,4.522455,4.79083,4.56619,4.48322,4.188455,2.89744,2.1183433333333332,2.8055,2.7301533333333334,2.88435,3.3137066666666666,2.7018750000000002,4.994503333333333,2.941073333333333,2.768886666666667,6.8005691666666666,5.18110875,4.0540975,3.3675333333333337,3.9893,4.038925,3.51915,2.3094175,4.3032225,5.31295,4.60143,1.5223699999999998,5.365,2.941333333333333,6.6942725,4.872585,8.294353888888889,4.018845,2.480455,2.252375,4.060755,5.744125,7.63692,4.94103,5.83791,3.930575,3.205525,4.022635,1.6984179999999998,4.438218,1.455855,3.72756,4.766965,3.352066666666667,0.8385333333333334,9.142978333333334,1.2511555555555556,1.7764925,2.328183333333333,1.8200733333333332,2.9095633333333333,1.3820033333333335,3.522095,3.42678,3.1518333333333337,4.308605,1.0610916666666668,4.66104,1.360775,2.4129476666666667,3.726905,4.156945,1.9633875,4.8658975,1.8844210000000001,7.63505,4.316965,2.74837,3.880175,3.303615,1.1787741666666667,7.32336,3.01199,3.359085,2.24762,3.99991,2.284145,3.262985,2.25917,3.9996,1.3590525,5.01935,3.02535,4.118985,0.87776,1.917365,3.796765,5.07545,5.268258749999999,1.324468,1.324468,5.94455,4.468655,4.330155,3.749515,3.444265,10.48985,4.587725,5.6676,4.01926,2.528,1.9803789080901177,0.3515775,0.17667870967741933,0.6018842652329749,1.0269171428571429,0.6296158525345622,0.17667870967741933,1.2222,0.42520555555555556,1.378494642857143,1.8240842652329747,2.22128,2.21624,2.13001,5.72055,6.8356449999999995,5.187,5.34405,4.35538,5.41695,1.1784700000000001,5.2297,4.11426,5.89085,5.4277,5.5979,5.88465,5.60555,5.5828,1.355005,1.5411714285714286,2.0324400000000002,5.972149,1.433794,5.2036,4.69098,7.006102916666666,5.07355,5.45795,4.47861,4.675165,2.53265,5.49355,5.61325,6.366743333333334,5.09185,5.518034166666666,5.6595,3.87945375,4.175335,3.961766666666667,0.9968349999999999,3.6536333333333335,4.45407,1.41595,3.9053,5.0682,4.19309,5.27025,2.4370925,3.45985,2.5770833333333334,4.899475,2.772,3.78996,1.299425,3.299185,3.764965,4.613595,4.59175,3.30596,0.6727558333333333,6.02775,1.064015,3.603735,3.2608333333333337,3.7068,2.0351399999999997,3.79647,3.7077141025641027,3.7342333333333335,4.42592,14.575381690476192,5.114806666666667,2.39919,8.20731,1.56021,3.717385,2.73771,2.7857233333333333,2.3898766666666664,0.21585565217391306,3.012696666666667,4.82007,1.794904,2.3993366666666667,3.5837333333333334,1.8592725,2.3861733333333333,0.9012757142857143,3.22531,4.659985,4.25838,5.10805,0.4450571428571429,2.36435,4.40853,4.02886,5.75455,5.27955,4.709045,4.544225,0.5364800000000001,2.482133333333333,2.482133333333333,5.6033,4.38937,4.90718,2.4141925,3.9248999999999996,3.6138333333333335,4.80113,4.2469,5.509248333333333,4.850705,4.555735,5.20635,2.5705,2.21138,4.383605,4.24919,3.792555,3.46195,1.7527460000000001,4.243875,4.36418,3.73913,5.30125,3.903305,4.478315,0.663092,3.113575,0.6881166666666667,3.1601433333333335,3.20248,4.917615,19.101173809523807,4.22219,3.780635,2.8598733333333333,1.2489875,2.9062533333333334,2.5357933333333333,1.527006,2.44378,2.4865,4.54901,2.14852,4.483585,5.6499,2.1573625,4.713495,2.92094,4.342435,5.47855,5.63615,1.6514,1.864995,2.58956,4.914515,5.05585,1.179311111111111,5.57015,3.86282,5.27195,4.7101,1.6386133333333335,4.462135,3.551955,3.451775,5.32535,4.211945,3.01913,0.6097875,7.639390000000001,1.495228,0.2102911111111111,0.2102911111111111,0.2102911111111111,4.905085,4.03394,2.6360266666666665,4.49796,2.87282,4.43498,4.931880714285715,4.201781666666667,8.553133333333333,4.08838,7.360328333333333,0.880885,0.9679625,2.4061025,4.84811,4.38458,2.1257333333333333,5.525,5.53285,3.3416,3.303135,4.569325,2.3212733333333335,4.13391,5.193047,2.5369766666666664,2.839066666666667,3.2515633333333334,2.62201,6.08645,3.70238,0.7001942857142858,3.98553,3.8904,4.39657,4.761303333333333,4.80219,3.610165,5.2473,3.48899,13.813152291666666,5.03,6.7604162500000005,2.6835633333333333,6.786645,4.661375,4.22392,2.1544375,2.33863875,9.66533,2.1752733333333336,4.013766666666666,3.6808666666666667,3.754766666666667,2.62644,3.14039,2.1087575,2.066715,2.9037566666666668,1.868976,3.7171333333333334,2.4916266666666664,2.5757333333333334,3.2478933333333333,3.5767,2.30896,2.30896,2.5725933333333333,3.4277333333333337,3.3680333333333334,2.8371366666666664,2.9922,3.521266666666667,2.753833333333333,2.6937233333333332,3.3915333333333333,2.4095566666666666,2.3142025,3.7743333333333333,3.15054,1.75618,3.8836999999999997,2.6036366666666666,2.46636,2.83709,2.44106,3.153696666666667,5.6068,2.3207033333333333,3.8326333333333333,1.9023033333333332,10.378802,2.0863366666666665,1.84513,1.9862100000000003,1.1310444444444443,1.6799320000000002,4.418093333333333,2.694668,2.694668,1.698984,1.5418916666666667,3.6692566666666666,4.096738333333334,2.1553833333333334,1.5219950000000002,1.585094,4.162279333333333,3.0870599999999997,4.082433333333333,7.931416666666667,3.1320485714285717,2.4121333333333332,3.5313420496894414,4.206266666666667,2.3142025,3.1833633333333338,3.2561166666666668,3.049386666666667,3.428014166666667,0.8970875,3.431651,3.0692066666666666,2.7117799999999996,4.11982,3.32265,0.7156918181818182,1.9189945238095238,4.546285,2.555705,3.057893333333333,1.6260666666666665,1.6260666666666665,2.059525,3.8273666666666664,1.09704,2.28365,4.843396666666666,4.843396666666666,0.6424809523809524,6.414567,3.64491,4.361865,5.5581,1.2160457142857144,3.455966666666667,3.4965333333333333,5.695144166666667,6.985870333333333,3.1647966666666663,0.8213329999999999,2.8900166666666665,2.7230966666666667,3.2645546666666667,2.8628133333333334,2.6158533333333334,2.9035266666666666,2.407965,2.4970166666666667,0.8382927272727273,3.10549,4.516704857142857,1.3754883333333332,1.460942857142857,5.2148,2.49755,1.572675,4.572695,1.8241140000000002,3.480565,2.4820075,3.31095,8.621170833333334,4.8967125000000005,4.715775,5.33265,2.4658320000000002,0.7066939999999999,1.725922,7.174313333333333,1.7291633333333334,3.999625,3.91216,3.59725,20.721738666666667,3.0162633333333333,1.4198633333333335,1.0786775,3.14649,1.5469466666666667,3.8545040000000004,5.2616,3.4143304999999997,3.124973333333333,1.77236,1.3532633333333333,2.9267566666666665,0.557273125,3.254966666666667,3.6231333333333335,3.0726766666666667,2.571176,2.4945033333333333,2.6239133333333333,1.9861000000000002,3.1953133333333334,1.727274,3.3767333333333336,1.5705799999999999,3.67644,4.166465,2.503413333333333,4.630535,4.168635,4.27601,4.997855,4.82317,3.076833333333333,2.9075133333333336,2.680426666666667,1.2492642857142857,1.2492642857142857,1.2492642857142857,2.00546,3.0124999999999997,2.5766,2.51646,2.9016033333333335,1.461835,4.588805,4.56377,3.657415,6.471875000000001,3.579145,2.4749125,1.83065,1.0491,2.3388066666666667,3.659855,2.43333,2.6054533333333336,2.08197,2.556173333333333,2.50962,2.80815,2.7796766666666666,2.8427733333333336,2.6302166666666666,2.802326666666667,2.2815233333333333,2.0915,1.9411275,1.097565,3.0953700000000004,3.1817733333333336,1.9457875,3.84702,5.4399,3.143963333333333,2.606246923076923,5.636475,4.44031,4.683145,5.45235,5.28355,4.118285,6.780810000000001,1.23136625,4.202175,2.617015,4.99695,5.6572,3.43019,4.744815,2.41113,7.157275,2.312935,0.884775,8.30897,4.92743,6.0395015476190475,4.68508,2.96802625,1.880465,5.27145,4.105195,4.39401,5.2885,2.507935,4.27643,4.646355,1.7723275,4.152905,2.681575,1.390525,4.926695,0.651129411764706,4.231029166666667,3.862235,4.68041,3.239765,1.71323,3.517995,1.999215,1.2033125,3.178046666666667,3.4122333333333335,3.181596666666667,6.9227808974358975,1.652365,6.491793749999999,9.74901,6.543895,3.71679,1.349117142857143,3.1265699999999996,1.349117142857143,2.79433,2.1404,0.2874717647058823,1.1278305147058822,0.2874717647058823,0.2874717647058823,0.2874717647058823,1.1278305147058822,1.1278305147058822,0.2874717647058823,0.84035875,4.698065,3.490975,3.20824,3.200645,3.737385,2.972475,3.047083333333333,1.5906,7.261333333333333,2.508766666666667,3.95948,2.5418366666666667,1.0519818181818181,1.251525,4.34254,3.75747,1.0690844444444445,1.690444,0.6805618181818182,3.109822432900433,4.194065,5.1366,3.5418333333333334,5.773551666666667,0.6003276923076923,4.15996,3.249985,3.26409,2.8544933333333335,3.4507333333333334,2.45045,3.0235766666666666,2.6392366666666667,3.120975,3.670745,5.53955,5.0097,1.457544,4.51773,4.65504,3.070435,3.76235,3.229245,0.379258,5.19245,3.648905,3.296875,3.383692,4.64665,3.75342,1.832235,3.06137,3.984325,9.16254,5.1492,5.3202,4.35834,4.1432649999999995,0.88313,2.104685,1.949775,1.17691,1.7717733333333332,5.26315,5.3613,4.440435,4.19326,3.103564,2.5989733333333334,0.9513116666666667,4.55428,1.2356466666666666,1.1699033333333333,3.216335,3.56329,4.5406,1.2609125,2.6615733333333336,8.5862,3.091396666666667,3.01511,0.85913,4.280765,12.173996666666667,3.37821,4.04247,3.18828,3.71597,4.78048,5.0769,1.9507480000000001,4.278215,0.6407446153846154,4.70877,2.219135,2.2451025,2.2451025,3.3721666666666668,4.618895,1.6655116666666665,5.08075,1.6017714285714286,4.160095,2.6577783333333334,3.1662466666666664,4.69406,3.506145,3.402284,2.2428,2.6137765,2.6137765,11.295605,0.786132,3.84148,3.3784666666666667,2.10234,2.1898,0.96802,1.3658575,1.2036385714285716,2.018685,4.94731,2.67109,4.394895,2.12856,4.72142,4.247285,1.57542,2.04714,1.0231366666666666,5.31846975,1.9390875,2.13705,1.717934,1.703416,1.0786775,2.3382474999999996,3.397855,2.6400799999999998,3.1291266666666666,2.38914,2.59304,1.63743,2.97275,2.8256933333333336,1.4120799999999998,1.9124933333333332,3.04015,3.1390466666666668,2.4777533333333333,1.11067,2.5483733333333336,2.2128433333333333,2.56602,0.3518242105263158,0.4043191666666666,2.34314,2.2038933333333333,2.87489,3.16228,2.7724,4.819965,5.41,4.342835,4.728295,4.621875,4.01621,2.500436666666667,3.7305,0.6644936363636363,0.06796204545454546,5.99155,0.06796204545454546,3.51581,3.265155,5.7069,3.504515,6.0511,4.67483,2.16981,2.8173433333333335,1.3397233333333334,5.7612,5.2058,2.94176,4.68518,2.01367,4.018205,2.2012209782608694,3.1623866666666665,3.285503333333333,4.188115,4.552466666666667,3.27842,2.1047166666666666,2.1047166666666666,3.98113,7.64572,3.80533,2.11145,2.45211,4.18365,2.696525,4.95448,3.800395,1.1509888888888888,4.74068,2.8636166666666667,2.6154733333333335,4.29098,1.0162266666666666,2.292406666666667,3.95162,4.28439,5.05925,2.9354,3.14598,3.90721,3.839275,4.211855,5.4589,4.178855,3.3154455555555553,3.59491,3.361166666666667,2.834766666666667,2.549933333333333,3.447433333333333,4.54767,2.9373299999999998,4.5900075,4.86571,3.198785,4.80205,4.57036,3.58637,1.492522,1.3572525,4.059985,3.2310166666666666,1.5835866666666665,2.5160133333333334,3.271315,3.530366666666667,3.6441,2.8904866666666664,2.2389400000000004,12.934605777777778,1.8972166666666668,1.7444220000000001,5.1338,1.013554,3.0951299999999997,4.33573,5.0138,3.43741,0.9908044444444444,2.3127999999999997,2.5840333333333336,1.505662,5.55245,0.982215,0.982215,3.5033133333333333,1.5734966666666665,1.9298166666666667,2.1138175,3.370775,3.179355,2.26732,2.558755,3.54655,3.0818833333333333,3.2050366666666665,2.02752,6.0405,5.9271,3.630705,0.7026215384615385,3.495555,3.176105,0.8643681818181819,4.74003,3.04529,8.14774,4.316265,4.494395,3.582985,1.4749775,2.984325,5.0431,4.943035,5.15545,4.162005,4.23434,2.876285,3.549466666666667,3.549466666666667,4.97172,2.811558333333333,4.638735,1.75403,5.30403625,5.273721666666667,1.5921816666666666,5.01625,1.03142,4.85955,3.873045,5.6325,4.575935,3.98207,2.526485,2.408945,4.72893,4.36359,4.6895,4.351325,1.8893225,1.343178,4.330685,2.4406866666666667,5.44765,2.90752,3.40946,6.510575,4.087575,5.31215,5.50915,4.523955,4.441025,8.305045,3.32399,3.187095,9.82724,3.82843,0.6305464285714286,2.1113700183150184,5.2751,0.6462093333333333,5.02795,4.030505,4.96063,4.61706,3.47268,3.6845,4.38028,4.53045,2.1152725,0.6823492857142857,4.707275,4.412055,4.258945,4.22385,2.796673333333333,4.839415,3.254685,0.623598,3.72365,4.101,2.33619,2.8404366666666667,3.99965,2.1387525000000003,5.2897,4.85278,3.9606624999999998,0.88396875,3.294363333333333,5.709906666666667,5.709906666666667,8.649196666666667,2.01982,0.862725,0.862725,24.901796666666666,3.1412,8.429786666666667,0.31440166666666663,1.3191866666666667,3.363,1.0734400000000002,3.71088,3.877305,2.30301,2.30301,4.781065,4.794075,3.502805,2.707221666666667,2.707221666666667,3.50858,4.216245,4.573235,2.810283333333333,1.9664866666666667,2.46407,6.846707,2.112155,3.528215,2.4231833333333332,3.2927896428571426,3.2927896428571426,3.488933333333333,0.8679766666666667,2.550126666666667,1.6419233333333334,3.4187333333333334,2.976103333333333,3.051,2.66797,4.579175,2.346145,3.16315,5.997826000000001,1.4061400000000002,2.15235,3.0073,2.3534333333333333,3.866815,6.295133888888889,1.3155733333333333,3.901033333333333,2.410235,4.98865,6.57156,1.4179225,4.784599999999999,5.286502666666666,3.2978902857142858,4.6312,1.038327142857143,1.514466,3.229445,3.6552042857142855,1.4485183333333334,2.47243,1.6446675,1.5470840000000001,2.420035,3.37903,4.91924,1.2296583333333333,1.5593000000000001,2.9050333333333334,12.117460000000001,4.725453333333334,2.8498799999999997,1.1866128571428571,2.5954730952380953,0.9780614285714285,3.276096666666667,4.065486666666667,4.95028,3.26728,5.38625,1.46768,3.8049666666666666,4.0197,2.8041766666666668,3.76237,2.7731066666666666,0.9782333333333333,2.421203333333333,2.8147966666666666,5.78644,3.2311644285714287,2.461176666666667,0.70424,4.8918,3.6336666666666666,1.277768,5.913434166666667,2.2237675,2.05798,5.86785,1.3345,2.823096666666667,0.9878090909090909,2.9945833333333334,4.340255,3.1065066666666667,3.160106666666667,2.1771366666666667,2.2861466666666668,4.70609,4.764375,5.1172,1.721005,4.376105,3.705665,4.342186666666667,3.389304,2.6409966666666667,3.912431333333333,0.9172480000000001,2.6872719047619045,4.6716,2.70145,4.16990625,1.4145125,3.6596333333333333,1.957958,1.957958,7.121848333333333,3.2070333333333334,5.557618333333334,3.5628516666666665,1.8287833333333332,2.8643076190476187,4.679283333333333,6.020583333333334,8.287771666666668,4.971707,2.6145075,1.7193500000000002,2.1653021666666667,4.272303333333333,3.68453,1.516454,1.7896725,2.243816785714286,1.1865125,3.0690066666666667,19.117341666666665,3.634733333333333,2.81897,2.8950266666666664,2.9042833333333333,2.83469,1.4273333333333333,3.1868266666666667,3.2259433333333334,2.800466666666667,2.5601833333333333,5.677488,2.431296666666667,4.049434,2.53856,2.032654,1.85651,4.008365555555556,2.09822,4.372055,4.76483,3.87848,2.9048274999999997,3.2538066666666663,2.33709,3.3279333333333336,2.60235,3.995566666666667,3.3905999999999996,0.834049090909091,4.8956,2.61511,3.3091633333333337,2.8889433333333336,2.20802,2.2129362500000003,2.2129362500000003,3.5770045833333333,2.061099583333333,4.6251,4.44189,4.11185,4.494505,4.37791,4.67774,4.67774,3.910995,3.022403333333333,4.702645,2.64579,1.6870699999999998,2.62614,4.645535,4.102235,2.57195,3.7945,5.62599,3.9841333333333337,6.234712607142857,2.84894,0.9584699999999999,0.9584699999999999,3.318265,4.62869,3.711095,3.263658,2.3743766666666666,1.7891599999999999,1.6555133333333334,3.0756200000000002,6.531892000000001,1.47651,4.102725,3.6824999999999997,3.80305,5.05515,4.741045,4.950662541666667,3.4205666666666663,2.350955,4.740935,3.825855,2.039215,1.134736,4.249085,2.567975,5.2654950000000005,2.6975200000000004,2.66936,3.174855,3.740355,3.52508,4.765395,3.1359,4.542005,4.202805,4.4469,3.661885,3.39847,3.617885,4.191075,2.6245133333333333,4.863945,3.72581,4.681615,0.6385033333333333,2.236955,1.9405975,2.038225,1.862025,2.6351466666666665,2.5221833333333334,1.7715333333333334,5.25665,7.51498,1.8754233333333332,4.34355,4.80565,2.3873,5.959251666666667,4.200149166666667,4.91028,4.99542,7.023476666666666,2.2493733333333332,2.8109800000000003,2.01398,2.7045366666666664,1.75335,1.703925,3.90618,3.58916,4.97623,0.9996266666666666,2.985185,4.2779,2.34162,5.76225,3.588965,2.584685,3.729566666666667,3.2959,1.9556075,1.7746635,2.926675,2.841325,3.085225,2.003895,3.1839285714285714,3.1839285714285714,3.43145,3.2173,19.505205535714286,1.1366766666666666,4.895635,2.181495,1.91772,3.62651,4.14706,2.0507325,3.76101,4.383425,2.5025,2.5025,1.1776866666666665,2.402336666666667,2.9847133333333336,3.0897433333333333,4.344356666666667,4.19889,3.567633333333333,0.50908,3.464023333333333,2.0076233333333335,3.472005,4.50947,3.218825,3.81602,3.865455,4.58582,4.01967,1.9858775,3.06946,5.685103333333334,2.294735,3.93507,4.94772,2.166795,4.43671,5.26965,1.3669285714285715,1.870524,3.6717,0.8159614285714286,3.1832733333333336,3.77809,4.655825,4.875135,2.7037838888888888,8.037896666666667,2.8938966666666666,2.8908400000000003,0.4519276470588235,4.34534,5.197725952380952,2.859851904761905,5.6349,3.74332,2.4938402222222225,1.757066,5.18238325,4.4307,4.190715,1.80619,1.99765,4.553085,3.959433333333333,2.9548799999999997,1.7077125,4.3532416666666665,7.49381,2.58111,3.658545,3.453315,4.08684,1.3741542857142857,1.3741542857142857,3.1535166666666665,3.1456966666666664,4.600925,5.1184,5.99515,3.862155,2.650625,2.1533875,1.51882,1.3261114285714286,4.89151,6.0826575,5.35815,5.25885,4.487645,6.283564999999999,4.164705,2.8222966666666665,3.9386693333333334,2.3503333333333334,2.9794085,1.571682,4.68496,2.3107,4.337325,5.4361,4.088645,2.792526666666667,2.94908,1.7137571428571428,2.6621,4.1163,2.0350775,0.558276875,3.2212533333333333,2.8829,2.648216666666667,2.25873,2.10362,1.724146,0.6887763636363636,0.6887763636363636,3.4393999999999996,2.15473,2.4743,4.69232,5.88325,4.620815,3.91014,4.42492,4.43986,2.084541333333333,1.2356966666666667,3.34949,3.305965,0.940895,3.1382450000000004,2.80444,2.98435,2.18941,4.067575,2.67239,2.046203333333333,1.3534128571428572,3.598365,6.112775,3.823295,1.7251891071428571,5.03275,2.757745,2.54814,3.33242,2.812225,1.77547,1.0280375,3.85662,2.4431141666666667,2.1806033333333334,1.6060833333333333,2.2305800000000002,2.1848366666666665,2.4660266666666666,2.6477025,1.2285633333333335,1.9531766666666668,1.0649525,6.4092275,4.24556,4.62355,4.02565,4.18765,2.96642,1.7921178632478632,4.51208,4.672,2.620165,5.527,1.98707,4.43401,1.1284555555555555,4.16689,3.520315,1.74744,7.71509,3.61853,1.816285,1.8675425,1.926035,2.6172,3.13739,1.3713032467532464,3.3320966666666667,5.28535,4.40798,4.487855,6.03495,5.7131,4.483015,0.99390125,4.596855,4.51613,4.05134,4.90522,4.276543333333333,4.651125,5.56885,2.774305,1.1422433333333333,1.1422433333333333,5.2772,5.847063333333333,3.02742,2.9603533333333334,4.502635,4.51369,1.613876,4.0079,4.021905,3.56962,3.83086,3.0086600000000003,2.7156966666666666,4.707235,2.3692428750000003,10.923717264681397,1.9564933333333334,0.82128125,2.427706666666667,1.699795,2.150065,2.3391575,1.702376,3.2585466666666663,5.74585,5.30815,3.08318,1.5466233333333335,6.371489047619048,1.3062414285714286,3.00558,0.5119428571428571,4.059586666666667,5.584,3.74955,6.3841,13.473875,5.4921,3.25779,3.0770166666666667,4.5579,3.0635866666666662,5.11525,1.12757875,1.267195,0.6865218181818181,5.98575,4.013635,1.769498,4.598786666666667,5.3791,6.4454,4.930535,4.05272,4.390655,6.29785,3.82885,4.996335,3.91543,1.1296,4.197875,5.9107,4.27864,4.222865,5.17665,4.191275,1.20948,4.36219,3.907275,1.22567375,3.4730666666666665,3.0069266666666667,2.32978,2.761623333333333,2.433406666666667,3.3135033333333332,0.7108763636363636,3.457133333333333,2.7399533333333337,2.61463,2.62071,2.9819633333333333,1.824755,1.4438266666666666,2.4581075,2.1288325,2.1661975,3.335366666666667,2.8558966666666667,0.781698,2.5364400000000002,3.57686,4.675135,2.5106433333333333,3.647395,5.76175,5.5569,3.25042,3.885505,1.4538714285714285,4.10596,2.505575,3.910751666666667,2.7979837499999998,4.724275,4.826975,5.3228,3.68269,4.1639,0.861724,0.861724,2.2605675,1.6884275,4.761185,2.4718725,2.4718725,5.26255,5.66195,3.131825,1.1821566666666665,1.5115,5.86065,3.53148,3.2309666666666668,3.28089,2.970635,3.194905,3.2309666666666668,6.371945,3.24995,3.1672899999999995,2.789815,2.02729,3.047995,5.61975,3.368605,2.394235,3.551185,5.2712,5.08145,5.2170275,5.2170275,5.50285,4.356135,0.7631046153846154,4.36636,4.750275,2.946145,2.558035,10.5345,3.2649933333333334,4.877475,3.691835,3.5498333333333334,5.72405,2.489965,3.1797425,2.9924733333333333,3.5032666666666668,2.6662466666666664,1.8526420000000001,1.8526420000000001,3.56136,3.609035,3.96025,1.870384,1.850826,48.46956818181818,2.6128033333333334,0.8584181818181819,3.20478,1.719215,3.2736433333333337,2.8211933333333334,2.849883333333333,2.710775,2.8858366666666666,2.170853333333333,0.95495,4.65466,3.23283,3.42608,4.11284,5.1705,5.03725,5.15175,5.57275,5.58405,4.9653,5.76645,6.14692,4.959645,5.6866,2.0023375,3.7056,6.2704,5.51735,3.94942,4.016075,5.34835,2.675655,3.750095,4.4875,3.0967000000000002,3.684533333333333,1.64214,3.5659,1.341396,3.304585,3.797625,3.52732,6.5929375,4.30204,2.3548875,4.660915,3.736295,3.785575,1.18966125,3.037065,3.943075,4.303695833333333,1.2878325,5.04345,1.5439,6.1773,0.7279633333333333,4.220922666666667,10.547763333333332,4.355435,4.2699,4.02009,1.8890833333333334,4.416255,4.901085,2.900236666666667,4.43668,9.368959166666667,3.4365666666666663,2.4181133333333333,2.777503333333333,3.0503366666666665,2.8694699999999997,2.7230100833333335,1.8181200000000002,2.532783333333333,3.12706,2.68215,3.0198300000000002,3.37975,2.224413333333333,1.6482466666666669,4.623936,2.2433333333333336,2.52652,5.101848666666667,2.90936,1.18523625,1.960715,2.79733,5.673446428571429,2.6096,2.342127222222222,2.342127222222222,1.52812,1.474615,2.06996,1.7867159999999997,6.029925,4.23032,2.58535,2.9937733333333334,3.3751333333333338,2.1282525,0.5771866666666666,2.0445333333333333,1.9008575,0.679103076923077,3.8449,2.600425,2.55985,3.646145,4.1689758333333335,2.573046666666667,2.3081566666666666,1.4051683333333334,2.074505,3.40742,3.84007,4.1583775,2.7527899999999996,4.52954,3.988495,1.0744181818181817,8.669425,2.64026,3.273315,1.2952875,2.8990633333333338,2.36352,2.36352,2.36352,4.423595,5.7562,1.933645,5.19555,1.4340920000000001,5.665986666666667,1.6655200000000001,4.158965,4.12693,3.983605,4.49733,4.91701,1.84397,7.6901150000000005,4.540885,4.911715,3.27147,3.724433333333333,3.118673333333333,3.2651866666666667,3.869765,2.5266866666666665,4.469250714285715,4.3382266666666665,1.5258075,3.960175,1.5258075,3.230175,4.285030833333334,4.8935949999999995,4.285030833333334,1.7182633333333335,5.69,5.18535,4.54484,2.569593333333333,2.9984033333333335,4.16356,3.09884,4.234205,0.469715,3.176156666666667,3.099206666666667,5.508978333333333,4.767715,2.41752,4.09794,7.13415,3.53163,3.18531,2.756345,2.2388,4.331045,3.897505,4.69998,2.36836,3.97053,0.902321,5.03275,3.240915,4.251965,2.58287,3.06358,2.229696666666667,2.8069100000000002,2.7788500000000003,2.7980533333333333,3.81178,2.624925,2.624925,4.959045833333334,2.894305,4.73799,11.924525,0.9497488888888888,4.517935,2.2707200000000003,2.22409,3.1316400000000004,1.374625,7.496823833333333,3.6344999999999996,3.85536,3.6087283333333335,1.7091333333333332,3.7147666666666663,4.571611166666667,2.3318933333333334,0.442535,1.7733139999999998,1.64269,5.22115,2.661965,3.229995,3.7224150000000003,3.3593441666666664,2.45872125,5.00665,4.285265,3.98202,4.4459,2.11395,5.0714,2.48335,6.022766666666667,3.035515,4.6723,5.2055,4.29542,4.56009,1.97448,3.75302,3.694585,2.6896799999999996,3.32735,2.712315,3.124335,3.626235,3.692205,2.7556133333333332,4.80859,1.9368999999999998,3.798815,2.77308,4.040375,3.780875,3.82528,5.12595,2.761775,4.160935,3.203565,3.99219,1.9123533333333331,2.077465,2.910315,2.28928,0.8525683333333333,4.3386,1.95703,3.496375,2.639245,4.13271,3.277155,2.68377,3.161415,4.28349,4.704302,4.06245,3.101025,1.3795233333333332,3.94282,2.44439,1.0041044444444445,5.27235,9.0596,3.29286,3.584255,4.972,4.97049,4.336385,1.94711,3.97818,3.910045,3.25521,3.144195,3.375805,0.63710125,1.3407499999999999,5.9555375,1.6365625,2.653975,5.127184,2.4370925,2.21316,2.650445,10.5065,4.397865,4.058525,3.69266,0.7598811111111111,3.31688,2.52286,3.808455,4.94244,6.28157,0.657235,3.31304,7.55004,3.0758,1.0243044444444445,5.0324725,4.84616,5.358,4.453675,5.0453,3.230715,2.7342066666666667,7.492155,0.868477,3.404625,4.261935,3.25914,3.821765,2.214295,4.28708,1.5097966666666667,4.354065,3.692915,3.990705,1.6729525,4.61035,4.539805,2.296305,2.11356,2.706,1.277768,4.03866,3.4143304999999997,1.7691620000000001,11.1533,5.60655,4.403705,4.695365,3.42852,4.196385,0.8972257142857142,4.42338,3.912435,5.0137,3.685285,2.43641,6.670817158119657,0.794035,0.794035,2.5584666666666664,0.9323928571428571,3.981495,2.8787000000000003,1.04605,1.7347400000000002,0.4123941666666667,7.1534825,0.97529,2.7332,3.524845,4.123615,2.68585,4.685595,5.01885,5.45796,2.813755,3.14703,2.293,4.502225,4.88962,4.339525,3.855635,3.69953,6.84395,4.195615,4.225588888888889,6.093805,3.55147,4.0545525,2.37128,4.0545525,7.037952,40.64216613311689,3.68718,3.4632,2.913116666666667,3.893875,4.70113,3.56642,3.38983,3.849755,4.169695,4.237695,1.7892833333333333,5.2475,2.64326,4.589155,5.03925,4.91623,2.2909200000000003,4.821115,3.760315,4.20303,1.536572,0.5973630769230769,1.7149819999999998,3.28208,3.13658,1.340975,3.1945533333333334,2.530893333333333,2.8064066666666663,2.807173333333333,3.1405966666666667,1.337082,2.724816666666667,3.772066666666667,1.9482096911196911,2.8257366666666663,3.006432,3.0704700000000003,2.6856833333333334,3.5368333333333335,1.08296,3.99295,3.996535,1.1043100000000001,1.1043100000000001,1.1043100000000001,1.1043100000000001,2.829606666666667,2.0537566666666667,2.44747,3.67765,4.021725,4.39256,4.52211,4.475315,5.73575,4.78498,2.21419,6.07095,3.60583,2.52028,3.557225,4.118095,4.14586,4.282745,0.8086076923076924,1.4163542857142857,1.5623033333333334,4.82095,5.5696,3.574005,4.01292,6.0298,2.20528,5.1778,1.4852699999999999,4.63471,5.39135,1.6500366666666666,5.3404,0.8018025,5.04165,1.427872,1.3233375,3.94059,4.47621,4.979195,5.571,5.1815,3.473915,1.438562,4.245085,1.5473175,3.905915,3.243195,2.4938402222222225,1.7592625,3.656545,1.2035283333333333,3.25178,4.328365,2.8801566666666667,5.59,122.50370485461761,0.46415999999999996,4.69688,2.5743633333333333,4.718005,4.447015,2.67403,1.53616,0.34207190476190474,2.765715,3.700415,5.50815,2.920115,3.855145,4.562765,4.68959,4.67842,8.1555,0.6636733333333333,4.1974,0.9590425,12.69286,2.86568,3.52751,0.9828677777777778,2.15914,2.646135,2.1519225,2.91551,3.540366666666667,2.2586166666666667,4.605465,2.9741966666666664,2.2784133333333334,2.1634433333333334,3.77614,4.564705,2.879665,3.62686,3.801305,3.78659,2.3821333333333334,3.77961,3.147185,2.995425,1.025298888888889,2.5705766666666667,4.605465,4.070925,5.21455,4.0516,3.952575,1.820015,10.607890000000001,5.93775,2.602265,3.3619,5.33855,0.60448,0.60448,4.43528,4.43528,4.04822,3.6797,1.7513252272727273,0.6081325,2.87331,4.336,4.275965,3.972475,3.8719,5.5624375,4.91839,2.1043775,4.61325,1.9394525,2.868965,5.2881175,1.769575,2.44777,0.5453557142857143,2.5065817142857143,2.5065817142857143,1.88987,3.84944,4.19273,5.19345,6.597869,2.51669,3.0236,1.92664,2.282745,4.216880833333333,3.899295,4.41452,2.22236,4.41452,5.52165,3.565815,5.9624,3.80244,2.3919433333333333,2.207806666666667,3.480066666666667,1.4278125,1.3590475,1.5068475,1.6134825,1.684915,2.7634,3.555633333333333,4.72071,2.420285,6.93135,2.745786666666667,4.41393,2.1041175,4.245355,3.063053333333333,2.9916199999999997,6.481843333333334,3.3296200000000002,4.884862666666666,3.1411366666666667,1.3777425,2.559563333333333,2.794753333333333,2.2452133333333335,4.44876,4.071175,4.835915,12.728927454164255,0.7546575,2.02490125,2.3957225,1.647006,1.2674014285714286,2.494965,2.4757,2.42608,2.44701,0.7202907692307693,2.025325,0.5376842105263158,4.902985,1.88223,4.838925,5.10535,2.6048,6.328732499999999,4.89071,7.95228,3.89848,2.93998,3.10705,4.559335,4.569695,3.058049714285714,4.60619,2.101705,2.101705,4.945105,4.140605,4.67853,3.93322,3.4508666666666667,4.05277,4.97256,4.233695,4.32958,5.05765,4.502035,4.37115,2.4963,4.842865,1.3568533333333335,4.840085,4.626265,2.46779,2.1694233333333335,4.56117,1.3310583333333332,4.72604,1.7390425,5.61885997826087,3.71342,3.972945,1.50173,3.332373333333333,3.332373333333333,12.14422,3.91045,4.09799,1.08561125,4.681173,2.556475,1.44691,2.573225,1.902415,2.106135,1.88983,3.14037,6.73075,1.6994925,5.1267,4.606318333333333,4.99066,2.2422475,2.733495,3.929365,4.743075,5.11495,3.87994,6.457388333333333,3.3025800000000003,2.2535366666666667,0.4223061111111111,3.759895,3.845865,3.4884,6.5870999999999995,2.5654600000000003,3.14466,1.2714533333333333,1.6022966666666667,0.558276875,1.7733139999999998,3.101925,1.5600133333333333,1.7644166666666665,0.6716875,1.3000859999999999,4.67006,2.2914975,0.6780376923076923,1.5480833333333335,1.6692575,1.8320180000000001,1.3751499999999999,2.2022825,1.6022966666666667,2.381485,1.3000859999999999,1.3000859999999999,0.6780376923076923,1.6384142857142856,2.58522,1.4485183333333334,2.88725,0.6780376923076923,2.6796,2.58522,1.29209,1.29209,1.29209,1.9049779999999998,1.2740875,0.6780376923076923,1.050624,1.2233125,1.1310444444444443,1.7841619999999998,2.580125,0.8385333333333334,2.26136,1.6876285714285715,0.6780376923076923,1.631426,1.6022966666666667,1.95085,1.9028166666666666,0.898292,1.95085,1.0814155555555556,2.296305,2.445635,2.652825,1.2233125,2.2764800000000003,1.2035283333333333,1.2035283333333333,0.9554181818181818,0.9554181818181818,0.9554181818181818,1.2714533333333333,1.6022966666666667,1.6876285714285715,1.5480833333333335,0.96647,1.9028166666666666,1.661808,1.75618,1.580152,1.2714533333333333,2.8498799999999997,12.049995,0.6716875,2.5167200000000003,1.8576333333333332,2.93,0.9780614285714285,0.9780614285714285,0.6780376923076923,1.346411111111111,1.724146,1.6876285714285715,1.7992380000000001,1.9028166666666666,1.179311111111111,1.179311111111111,1.7195900000000002,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,3.2671966666666665,1.0814155555555556,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.2102911111111111,0.37855545454545453,56.396224373737375,1.445505,1.5322916666666666,1.6876285714285715,1.8576333333333332,0.96647,0.666464705882353,0.70424,0.70424,0.70424,0.70424,4.497466666666667,16.370936666666665,3.4232,0.6755472727272728,1.65741,1.65741,1.65741,0.6755472727272728,3.101925,0.6780376923076923,1.631426,1.7644166666666665,2.64846,1.0814155555555556,2.41752,1.0814155555555556,1.6594760000000002,1.6594760000000002,2.0527833333333336,2.0527833333333336,0.6780376923076923,2.00448,2.00448,0.9461181818181817,0.2102911111111111,3.101925,1.6927666666666665,2.410235,0.6755472727272728,0.6755472727272728,0.6755472727272728,0.6755472727272728,0.6755472727272728,1.8576333333333332,0.37855545454545453,1.0814155555555556,2.3613225,2.3613225,2.408945,3.2608333333333337,0.6424809523809524,0.6424809523809524,3.16046,3.9918,1.2160457142857144,3.0148466666666667,1.03423,2.6677,2.01982,1.0162266666666666,3.28036,2.02598,3.294363333333333,5.24905,2.479635,1.2639333333333334,4.522635,4.38086,2.6441433333333335,1.8033819999999998,2.212787076923077,4.592095,1.869176111111111,2.7119166666666668,2.8569166666666668,3.2791933333333336,2.505885,6.053026666666666,4.47479,0.2102911111111111,3.1884599999999996,4.54407,5.04045,4.260945,4.028535,4.92126,2.9386266666666665,1.8562360000000002,4.20618,4.53337,4.387175,4.318825,4.915755,3.161005,0.6581033333333334,6.684654999999999,1.2297183333333332,3.055448,4.95561,2.55831,2.55831,0.8125718181818182,1.7592625,3.073765,2.98965,4.600575,4.52905,4.972855,5.59165,1.1666485714285713,4.81445,5.1164,7.268856111111111,2.245153333333333,4.24021,4.610665,3.659935,4.567105,4.283325,4.967395,5.3602975,5.1322,5.058871666666667,3.543365,4.292126666666666,7.471204999999999,1.67652,1.9643702564102563,3.0123200000000003,1.7310800000000002,2.7034466666666668,1.8172300000000001,5.20905,3.5427999999999997,4.8034,2.0207,4.99716,3.764675,4.18204,4.34523,3.78469,2.4285633333333334,2.7569700000000004,2.7241366666666664,2.736306666666667,2.4513633333333336,1.6121566666666667,2.691966666666667,2.7975666666666665,2.0149,2.0149,3.84617,2.8234066666666666,1.96049,3.07849,2.0161366666666667,2.6761933333333334,3.018356666666667,2.6385866666666664,3.5333666666666663,5.2568,4.37237,4.030345,3.523754666666666,3.523754666666666,4.048965,3.3412,5.28855,4.412535,3.954905,3.33037,3.208205,7.3902,1.7902175,1.94649,3.38928,2.998345,1.2501633333333333,1.2501633333333333,3.50618,1.87739,3.8261466666666664,3.709465,3.381695,2.3750555,2.382466083333333,0.5228125,2.76791,4.056955,2.22105,2.44791,4.36996,1.3232466666666667,5.1402,1.2189933333333334,0.40872785714285714,0.5695710714285714,21.99368980654762,0.5695710714285714,0.40872785714285714,0.7304142857142857,11.077413333333332,2.91804,3.651695,4.76009,3.6685875,2.778805,4.464272857142857,2.30684,3.088245,3.38977,2.891935,4.04794,4.977035,3.50516,2.235435,3.268655,3.81274,3.86408,3.122925,1.0820210000000001,1.0820210000000001,1.0820210000000001,1.0820210000000001,3.32105,2.7409,3.1225,1.7111599999999998,1.1588566666666666,2.43628,3.660685,4.01717,2.703735,4.142025,2.502225,2.6577783333333334,3.927295,4.15325,1.0954283333333332,2.96115,1.04315,2.83248,2.087336666666667,3.6978000000000004,4.940325,2.4275800000000003,4.11226,4.407500000000001,0.7951367460317461,0.21847785714285714,0.21847785714285714,0.5766588888888889,0.21847785714285714,0.21847785714285714,0.21847785714285714,0.5766588888888889,4.53421,7.243398333333333,3.51482,0.61376,3.7644,7.193385,3.238065,3.3651999999999997,1.1133,4.828725,5.33005,4.500735,5.01735,1.6416799999999998,4.673925,2.151386666666667,2.2479906666666665,3.973,5.432,0.7649214285714285,0.7649214285714285,3.28131,2.8214433333333333,2.427135,3.24055,2.462455,4.50922,3.060665,1.75642,5.58715,5.52295,2.58854,1.77945,4.297725,3.446995,2.26764,3.47525,3.59784,1.7822475,1.1191016666666667,3.87014,3.389195,4.761303333333333,6.148621666666667,1.54606,3.833685,1.1413766666666667,2.5156199999999997,3.94532,3.92773,0.3905585714285714,4.03619,4.610855,0.9632970000000001,2.7435033333333334,7.591511666666667,5.8898,2.29632,6.79608,4.434775,3.6752,1.4437018333333334,5.369003333333334,3.4432333333333336,3.4246666666666665,3.4288666666666665,1.8263566666666666,1.8263566666666666,5.1820275,5.1820275,3.0914124999999997,3.0914124999999997,7.08534,3.0914124999999997,3.0914124999999997,3.745440277777778,3.993065,3.624145,3.5269916666666665,3.0023733333333333,5.04235,4.077075,3.1998599999999997,2.79795,4.661455,3.1687433333333335,2.8282066666666665,3.0631733333333333,2.311996666666667,2.683615,4.99657,7.495480000000001,7.2058675,4.28847,3.60323,3.924055,6.751958,5.2223,4.25457,4.30024,3.311605,2.5183133333333334,2.073785,2.007215,5.90555,5.61055,4.4469025,4.077015,2.25862,2.8797599999999997,7.146738333333333,1.9049779999999998,2.4836833333333335,3.5596333333333336,3.5596333333333336,3.25671,5.3012,0.7812633333333333,3.3874333333333335,3.824725,2.75916,10.0180175,4.21314,2.656363333333333,2.8689733333333334,5.46175,6.17495,2.88234,5.38025,2.4971200000000002,4.507625,2.7966145714285715,4.588795,5.1686,5.26555,1.0330783333333333,3.4715666666666665,1.2883375,2.54543,4.870694029411765,7.58099,2.9700233333333332,2.8241666666666667,6.893296666666666,1.702984,4.452615,5.5283,3.522115,3.61906,2.136136666666667,4.839895,2.5045900000000003,0.4906030769230769,5.30345,2.873385,3.6245333333333334,4.97998,5.0035,5.0535,7.086187499999999,5.0272,5.35715,6.86034,53.69849666666667,4.59998,4.01767,4.84609,6.06315,4.483115,4.412865,4.1902,4.680115,1.90263,4.149255,4.081285,4.497985,2.718335,5.04865,4.316835,1.6399979999999998,5.624,6.62765,7.130163333333333,5.23045,3.29185,4.764065,3.209965,3.219145,3.48123,4.187495,3.62819,5.7255,2.71105,1.0762571428571428,2.4294787500000004,0.5842259999999999,0.5842259999999999,3.363155,0.5842259999999999,2.47472875,2.47472875,3.2125487500000003,4.52833875,4.93707,2.4294787500000004,4.352831666666667,2.4133791666666666,1.3412566666666665,4.93147,2.016125,7.455218666666667,5.817216666666667,11.95309815909091,3.2933533333333336,2.825223333333333,0.23725424242424242,1.844156,2.7579,0.99521125,1.5962633333333331,2.62595,1.7972525,2.749475,0.618855,28.269174166666666,2.1159125,0.7889538461538461,2.6116333333333333,2.6116333333333333,0.4190872222222222,2.3968325,3.1638775,1.306965,1.8325025,1.589825,4.17415,2.813155,2.4166833333333333,2.310566666666667,1.1036599999999999,2.22294,1.7354833333333335,5.7536505,3.949745,6.671641666666667,2.372255,3.2154000000000003,0.9377166666666666,2.125665,4.9214,6.32373,3.671533333333333,2.5414033333333332,5.851280833333334,2.3709475,2.6194533333333334,4.165637500000001,1.0725866666666668,3.6001666666666665,2.2981166666666666,5.74725,4.889725,6.22405,3.654855,4.58738,4.58738,4.988845,2.674295,5.67265,2.6822733333333333,1.64425,5.4692,3.941725,6.3596639999999995,5.193,3.106586666666667,2.729423333333333,2.751715,1.330935714285714,4.964725,1.02654875,5.4371833333333335,4.70763,7.557715999999999,4.38157,4.503375,4.10662,8.422268333333335,5.00525,5.2549,1.11453,0.6963764285714286,4.7621,5.096,2.508205,3.22346,3.32905,4.356395,2.661915,4.98274,2.4243433333333333,4.951175,5.36165,4.15125,4.791755,4.177325,2.594595,7.008881499999999,3.563175,4.88372,3.34893,3.895605,5.673518333333334,0.6031700000000001,3.7698666666666667,1.69625,0.68764,3.771225,2.347,1.0873225,1.923305,6.11861,3.921485,2.34875,2.5339633333333333,2.57654,4.78724,3.62464,1.882661904761905,4.02076,2.572973333333333,3.4564,4.666765,5.119,3.050413333333333,3.810333333333333,3.7493,1.933716,7.27742,4.774145,3.89653,4.792565,2.26861,4.075255,4.645855,2.757485,4.10978,10.439675000000001,3.853705,4.354091666666666,4.723095,4.43172,2.404115,4.28735,4.25825,4.99758,3.1512966666666666,4.15641,1.6938875,2.72537,3.984575,3.115875,5.1804,1.6247440000000002,4.41426,3.0816733333333333,5.0444,3.1065,2.38555,4.179,4.344905,1.04638875,3.847055,2.583056666666667,4.520265333333334,1.7254079999999998,1.7090666666666667,1.1347125,5.4046,5.93075,5.77413,3.7144950000000003,2.514705,2.37353,2.02065,2.82969,1.5210233333333332,4.427765,2.783075,1.8990575,1.0880384615384615,20.47308678846154,2.82368,3.1044316666666667,4.900471666666666,3.92565641025641,1.49874,2.749106666666667,2.9802822727272726,1.196236,1.8718433333333333,3.45109,5.4184,3.7539483333333337,3.790415,5.5372,4.681595,7.164797500000001,5.014190833333333,5.06015,3.73319,2.4892233333333333,3.88701,3.962115,3.5912333333333333,4.02366,2.1050675,5.4202,9.32211,4.050145,2.840075,3.910185,0.54074375,3.4445,2.0163766666666665,2.39151,4.17584,3.726075,4.876485,3.648175,2.86672,2.2213475,1.609045,1.18692,1.4052499999999999,1.1864666666666668,4.126425,4.19646,4.23821,4.837725,7.15342,2.2819166666666666,1.408098,2.3611999999999997,7.891016666666667,3.328555,3.100325,3.11005,5.15155,3.6839075,3.45365,1.5627739999999999,4.311755,4.84656,4.190035,3.924495,3.585275,4.260825,4.49575,3.777875,4.57075,3.52445,2.17906,3.1556200000000003,3.45669,5.56265,2.822225,4.1773945,2.96436,2.849055,2.8055299999999996,2.2242,2.074943333333333,2.3942953333333334,2.3942953333333334,1.9007966666666667,2.8568033333333336,2.3060566666666666,2.2848833333333336,1.9215733333333331,4.03178,2.4306633333333334,3.063563333333333,2.7579833333333332,1.6717633333333335,4.242165,2.81543,3.31363,1.7003533333333334,5.0957,5.48005,4.920802777777777,2.65875,2.24575,2.956135,2.6159,2.06323,2.881575,1.9465725,2.567675,2.3578225,6.624463833333333,4.3144525,3.66835,0.559639375,4.11106,4.31327,4.121595,3.07874,3.814545,3.8244508333333336,5.69075,4.566165,3.671265,2.789025,2.0875546666666667,2.40014,1.665492,1.823866,1.358338,2.1124,1.69621,1.3346349999999998,4.083807142857143,0.6780376923076923,0.4968266666666667,2.1731000000000003,1.6141500000000002,1.501748,1.5474816666666669,2.4810406060606063,1.4558366666666667,1.703322,0.55877875,171.00505492317077,0.4973606666666667,1.902132,1.05982,1.1851225,2.08141,1.49459,2.05642,2.4320166666666667,2.1745975,6.80205,3.148075,3.757562380952381,1.9407233333333334,2.854525,1.246885,1.246885,6.01471,0.47759555555555555,2.2637075,3.4723333333333333,3.0169366666666666,0.7884172727272727,0.6429764705882353,1.2223589743589742,1.0818727272727273,2.579175,3.889825,2.25225,2.083455,2.3554233333333334,4.636814277777778,1.0676255555555556,4.544845,3.801535,3.577135,6.7761,1.8003033333333331,3.11499,3.08715,4.127328,2.40473,3.949775,3.610845,3.598385,5.030725,3.073195,5.87695,2.762895,2.54112,3.40193,1.988875,2.903035,3.244545,2.85142,1.71077,1.59947,2.18746,4.672605,5.881093333333333,3.277515,2.939385,1.406945,4.12643,3.472633333333333,3.5214,2.825315,25.109251834859588,2.1863599999999996,2.750526666666667,2.9446999999999997,3.3904333333333336,3.1659366666666666,6.07296,3.1204300000000003,2.6923366666666664,3.2227933333333336,3.3878333333333335,2.09285,3.32189,3.1130033333333333,3.2896300000000003,1.61283,1.7614990000000001,0.6033540000000001,2.2036633333333335,2.0896175,0.21675125,2.8224433333333336,3.240255,0.21675125,0.21675125,1.9264845833333333,0.21675125,0.21675125,0.21675125,0.21675125,3.0639533333333335,2.81306,0.5604192307692307,3.539800357142857,1.5988975,1.927966,5.12565,4.750417499999999,6.08961,2.239975,5.26185,2.24807,2.7159933333333335,1.4092500000000001,5.827960000000001,2.7438300000000004,6.1062625,0.948975,1.2561725,4.824985,4.69493,35.498840024558774,1.7310400000000001,1.3454366666666668,2.29348,2.2207875,0.9554181818181818,2.3589466666666667,2.634323333333333,2.73537,1.9472766666666665,2.4400366666666664,1.5968200000000001,3.0047433333333333,2.3798533333333336,2.3343433333333334,2.5053533333333333,2.41447,4.145945,2.4777066666666667,1.182197142857143,3.67826,4.06313,20.346611777777778,2.8747666666666665,3.2803400000000003,2.7097200000000004,0.861262,3.159722,1.6586731111111113,3.159722,2.54209,2.3782099999999997,3.0732733333333333,1.74309,1.8749875,4.411565,3.96603,5.18855,4.26625,1.635166,5.3196,1.624515,4.8383,4.050558666666666,5.02055,0.810150909090909,2.1947025,2.440835,3.1413599999999997,3.3034,0.98850125,4.57731,2.00584,1.9994066666666666,1.019862,1.019862,2.066126666666667,2.8841633333333334,4.632855,30.61151375,6.1576249999999995,1.90165,3.6197033333333337,0.3887173333333333,6.6850325,5.07345,2.5768766666666667,3.28871,5.65746,4.39749,1.23558375,4.24356,1.1949640000000001,3.511175,4.873705,4.768245,2.026215,3.088085,4.559755,2.35013,3.3930645,3.93038,1.2967366666666666,2.678310416666667,3.71371,4.79972,2.7526966666666666,2.7737166666666666,3.209516666666667,3.037645,3.94119,4.198255,4.0568,1.77471,6.05066,2.520365,1.7480740000000001,4.058245,5.39802,4.041005,3.441515,0.7701825,2.907125,3.58451,2.0517,4.781029666666667,2.765995,3.828035,2.879073333333333,3.2781833333333332,3.16354,3.241796666666667,3.5163333333333333,3.1913866666666664,4.565915,4.468915,4.17416,1.59639,4.42447,4.274415,1.84869,1.88063,1.73115,4.193092777777778,4.580335,5.364284895833333,3.996485,3.7574,3.57111,3.3995333333333337,1.5115566666666667,3.072695,2.895895,4.250795,4.724205,4.4411,4.685345,2.67843,1.83687,1.566935,1.3908575,3.47419,2.360885,2.145545,3.128145,4.568645,1.65706,5.1002,1.3949371428571429,1.722325,3.142285,3.562895,2.871825,3.545365,2.974325,1.86667,0.9585665263157894,3.23167,3.56666,4.99556,8.202153333333333,2.2832500000000002,2.9386166666666664,1.5598466666666668,2.7397266666666664,2.9336633333333335,1.297715,3.3372333333333333,2.6809833333333333,3.2076766666666665,4.113366666666667,3.467366666666667,7.039951666666667,3.0075633333333336,0.7539472727272727,2.0008500000000002,3.23929,3.160095,3.32892,3.4648333333333334,2.520455,3.6637,2.822735,1.835506,3.954485,2.874631111111111,3.65696,2.3365899999999997,4.651145,5.1843,4.923725,5.43165,4.128605,1.4297444444444443,5.17645,3.3943,2.83365,4.393765,2.7309866666666665,3.231116666666667,0.40745714285714285,0.40745714285714285,3.4249816666666666,5.44365,3.717675,3.13671,3.966865,3.50294,3.06983,4.798335,4.62822,1.013445,4.543795,2.991263333333333,4.642298333333333,3.0320466666666666,3.183158333333333,2.0145066666666667,3.334044642857143,2.727376666666667,2.95398,2.447223333333333,2.8136433333333333,2.112153333333333,23.41011608580369,5.99745,5.2758,4.35942,3.258905,5.0890925,3.23597,4.59707,4.54761,4.10996,4.659745,3.768565,2.6650566666666666,3.24371,2.9512366666666665,3.1558333333333337,2.8631166666666665,4.317,3.525705,5.283875,5.17515,4.084645,1.244106,1.751424,1.751424,3.99133,3.87013,2.751136666666667,2.51342,3.0724133333333334,4.67118,3.06172,8.306191666666667,3.345266666666667,2.9022666666666663,3.5756483333333335,4.633285,1.6507333333333334,6.2461025,2.480636666666667,2.89293,1.73214,3.83407,3.1515,6.82798,3.618225,2.471975,4.515425,4.28249,1.51989,2.63973,1.6602233333333334,7.9992935,4.01259,6.50727,2.2495925,4.123385,3.626055,4.046055,5.09845,3.748466666666667,3.748466666666667,2.0248775,4.37564,5.15935,2.38573,6.221614285714285,1.8403,5.7911,9.687250666666667,3.6090666666666666,5.278198000000001,2.31157,1.98741,0.679375,3.99238,2.68105,2.63455,3.9901135,2.555,2.29898,3.84333,5.14085,4.568725,3.9434,5.53635,4.23363,2.2859375,1.0339363636363637,2.94127,3.4489,2.82433,4.99872,3.8954,4.15854,3.04281,1.870524,4.74587,1.0161125,4.881215,0.9512844444444445,5.2156,3.334565,4.887765,5.282815,2.955165,3.095435,3.5419,2.6100566666666665,4.28273,3.802425,2.41138,5.49265,3.869555,6.316816666666666,5.3917,2.5391,3.577775,3.41639,5.448358333333333,1.84823,1.84823,2.8529633333333333,2.3413033333333333,2.6259033333333335,2.8979366666666664,0.8790509999999999,6.6113,3.64664,1.9825275,2.19613,2.553445,3.523625,2.73576,3.714165,4.112935,5.10075,5.3963,6.0625,5.9175,1.38565,4.38488,1.0732583333333332,2.46234,4.232833333333333,2.4258,2.964395,3.157355,4.427455,2.943575,0.45198,4.30738,4.135725,4.81352,3.44668,4.443655,5.7734,4.688045,3.811495,1.71128,4.685895,2.11062,4.412833333333333,4.412833333333333,6.4117,5.2084,5.6832,5.1733,2.57232,1.6507333333333334,4.655365,2.2573233333333333,1.6458300000000001,1.877235,4.31512,4.23771,4.222755,8.03008,1.7584666666666668,5.52395,1.3532716666666669,3.621555,5.81885,1.98462,4.52992,2.5629066666666667,4.461505,3.40848,4.778215,2.94176,4.182675,4.01461,6.6031,3.871905,4.04369,3.8954,5.236,4.027055,4.5317,3.710635,4.161265,8.097963333333333,3.356825,6.9452,3.071095,5.2438,6.601865454545454,4.745665,3.463385,1.9896175,5.46775,3.925575,0.7595966666666666,9.81785,6.2549,5.06605,2.9959249999999997,5.08535,2.828835,1.728214,3.87145,1.0954283333333332,5.3094,2.98824,4.69952,5.46485,4.60716,4.25415,2.2503800000000003,4.35652,5.4681,1.572975,7.172968333333333,3.05431,3.88342,5.12635,3.55708,2.1536,4.394545,4.13199,4.371785,2.8732633333333335,3.99206,3.718605,5.70745,5.02155,3.53526,1.9542475,1.9542475,7.021094999999999,1.5369285714285714,5.1285,4.134925,5.48185,3.644195,4.00647,5.0085,3.79343,0.8630116666666666,0.8630116666666666,0.8630116666666666,3.327645,3.231745,3.89155,4.356122222222222,2.961695,1.4797366666666667,4.98291,2.2824975,2.677705,4.17257,5.32495,1.4619,2.18762,5.41792,4.160125,2.659185,4.41287,1.4600425,1.9380125,3.2456066666666668,2.73498,5.6893,1.42037,1.6016020000000002,1.07320125,4.021105,3.440455,3.1056566666666665,3.1614966666666664,5.5079,1.7969460000000002,2.05658,3.0266,1.4824428571428572,4.56813,3.63303,2.631625,5.61675,5.55735,3.068775,5.06245,4.24018,3.40399,4.39075,4.244495,3.571605,6.56402,5.3005,1.8375566666666667,1.7330333333333332,3.401055,3.9959,3.996465,4.661875,3.2601833333333334,4.418235,4.737555,5.04315,2.8112033333333333,5.41195,4.16931,5.36335,6.59452,5.0082,0.7075336363636363,3.894065,3.9566383333333337,2.40889,3.875585,3.7683999999999997,5.81715,3.80307,4.041375,3.830525,4.51803,5.10115,4.86472,4.030085,4.447135,5.11685,4.257835,2.70348,2.784635,6.4905,4.115985,1.7096699999999998,3.381905,4.001600833333333,3.716905,5.3317,4.90148,2.51952,0.9097844444444445,4.210423939393939,6.2463049999999996,4.00158,4.877,3.515955,7.676613333333333,4.468105,3.2886966666666666,2.8450399999999996,3.686435,2.03598,3.31236,4.60154,2.5081625,4.11059,5.6593,1.4649225,4.96083,0.6886471428571428,4.078035,2.388805,5.62715,3.56957,0.7219133333333333,1.6296633333333332,3.763635,1.90322,3.186745,0.5941733333333333,5.38565,3.06443,1.513558,6.1289175,6.775,1.0012075,1.7937115000000001,1.2579179999999999,1.2579179999999999,1.2579179999999999,2.0539066666666668,3.185335,3.74761,3.047995,3.448575,5.16675,4.228055,1.989274,4.15125,5.6079,0.2717487804878049,3.676815,4.70954,5.9595,41.065428295454545,5.235025833333334,5.90185,13.024678666666667,5.34485,4.6531,7.58615,3.218825,4.277095,4.703515,5.50985,9.898505,4.77087,2.4001233333333336,2.842365,5.6502,3.89346,3.761465,4.46535,2.15816,4.805655,4.44511,7.087816,4.35711,5.02275,2.3218075,4.14149,0.54642375,1.4186783333333333,3.965775,6.1543,2.989375,1.2743733333333334,1.2743733333333334,3.866655,3.79675,4.273505,4.006665,2.2078,3.51946,4.17205,1.6483825,3.0801866666666666,1.7817519999999998,2.56264,4.24877,4.488335,2.4679025,4.366875,2.2250525,2.121885,3.61651,3.536985,4.00284,3.70299,6.364658666666667,2.5185286666666666,4.50183,0.7255781818181818,0.6488766666666667,3.81897,2.16062,9.0259,3.4232,5.017,1.6475625,4.424335,1.64032,4.24883,4.425155,2.6433233333333335,4.807605,6.30595,0.4077805,0.4077805,3.572533333333333,3.051353333333333,2.8167500000000003,3.92622,3.626305,4.58474,0.8644627272727273,10.989403333333334,9.4414,2.2022825,4.95685,4.69242,5.01935,3.34063,2.5731766666666664,2.05136,1.8948625,10.3349675,2.29358,2.7589,3.8741079999999997,5.5974,3.8741079999999997,2.88125,2.989943333333333,3.02417,0.7023509090909091,5.773551666666667,3.4086,2.6512333333333333,4.137535,9.03552,9.551715,4.48138,3.879125,4.53317,6.7470375,1.9896475,1.3588,26.769993333333332,3.721685,4.28757,0.939818,4.00448,4.23199,3.701315,4.12028,3.989825,5.794136666666667,3.2047333333333334,1.99847,0.6906823529411765,0.7714541666666667,5.2738,4.368745,1.6980666666666666,4.682545,0.8371416666666667,3.692066666666667,1.4081866666666667,4.185705,5.74495,1.99083,2.45675,2.432885,3.84815,3.12385,0.5202027777777778,4.36177,3.656225,2.5054333333333334,3.26439,5.0973,3.137786666666667,4.05002,3.12527,4.446045,9.14674,4.88067,6.344720000000001,2.616925,2.7241999999999997,4.183,4.1489675,4.04994,4.384645,3.673635,5.3881,1.14735625,3.1935308333333334,3.174538357142857,0.633618,1.751424,1.751424,5.5666,7.262951666666666,0.8509538461538462,4.92653,0.8895133333333334,2.8006266666666666,2.6734633333333337,2.4196070454545455,6.9255555555555555,2.4611533333333333,1.2040555555555554,2.53681,1.17723375,2.4131666666666667,3.145716666666667,3.1199583333333334,3.02193,2.57781,0.8895133333333334,4.42366,4.293625,5.9347,2.959095,4.838615,2.18186,5.7994,4.54553,4.362695,2.9327366666666665,3.227595,2.2130325,1.632525,4.160835,2.7279,4.112845,5.4786,1.830842,4.52464,2.7001833333333334,6.40233,3.489905,2.604855,0.8895133333333334,2.37547,3.25819,7.107330944444445,2.3957533333333334,1.3518560000000002,2.3957533333333334,0.5018874999999999,1.172526,3.46545,4.1804,1.8351475,3.62181,3.841786,0.650766,0.650766,0.650766,7.645054999999999,1.600524,0.7445209090909092,3.19042,40.07110269264069,1.7552217777777779,0.6540277777777779,2.8815925,0.6540277777777779,3.875335,2.8533,2.307935,2.441593333333333,5.7541,5.34735,4.44401,2.293556666666667,0.8885914285714286,4.35556,3.1106233333333333,4.73159,1.0229700000000002,2.550175,2.550175,3.80432,4.440075,3.79302,4.71519,3.3537,4.40762,5.03955,1.632844,1.0993975,5.53895,5.9487,3.831125,0.67892,4.50821,4.117394166666667,0.79599625,4.701655,2.335485,4.46033,3.98296,1.8056757575757576,1.8056757575757576,4.783955,3.373805,0.8620622222222223,2.95903,3.12842,3.334255,4.026395,4.865645,0.50468,0.3008352941176471,0.3008352941176471,0.3008352941176471,0.8055152941176471,0.5792,0.677679,0.3008352941176471,0.3008352941176471,7.240905,0.3008352941176471,0.8055152941176471,3.619375,1.28914,4.617415,1.1569399999999999,0.6755238461538462,0.79599625,2.600445,2.568125,3.821125,2.956595,0.3008352941176471,0.3008352941176471,4.640585,3.727365,4.31098,2.6077,3.87048,1.55294,3.723495,0.677679,0.677679,4.761425,3.006405,2.766695,2.848665,4.478140333333333,0.9775069999999999,0.7455261538461537,10.100655,1.20837125,4.95073,4.07763,5.26,2.0456,0.38469086956521736,0.8750025,2.9887833333333336,3.169495,3.333025,4.571635,1.572276,6.17415,3.98716,5.4190625,4.515705,2.99586,2.9975566666666666,6.133265,2.9852433333333335,5.2358,4.2065,4.407500000000001,5.89175,0.5519686666666667,4.328115,3.1276200000000003,2.133296666666667,0.6503633333333334,4.23361,4.52583,3.862255,2.390475,2.248535,5.2265,2.677505,2.789675,0.976252,0.46068,3.953595,0.3430933333333333,0.7879954545454545,3.83965,2.80342,5.1048,2.651695,5.5122,4.252955,6.299653666666666,3.833075,3.507515,4.582405,1.5302975,4.8730525,1.992748,4.118565,2.414515,5.993416666666667,2.64835,1.0585499999999999,4.56165,6.934075,6.586270833333333,3.209633333333333,0.8801916666666667,2.7580500000000003,4.73216,4.02314,4.557485,4.597095,4.06424,4.98736,2.81742,4.1347,1.7266966666666665,2.24733,1.4039033333333333,4.03158,9.65426,4.47315,3.52919,5.7686,2.750395,4.25819,2.63841,3.1081046666666667,3.25621,3.977975,3.372685,3.45747,3.254675,5.4721,5.48585,5.17745,4.54929,4.788905,4.21704,4.521305,5.183,7.843775,0.9000877777777778,3.76945,4.513095,4.46351,5.08325,4.28426,3.63086,9.19712,2.4330066666666665,3.235065,5.74605,3.65907,4.31567,2.0047,1.7630575,2.70436,2.989786666666667,2.0991166666666667,2.979756666666667,3.92983,4.59577,3.96826,3.4213,4.681883333333333,3.426025,3.27541,3.9416775,5.0469,2.988,5.500575833333333,4.44639,3.729585,3.596035,8.34457,4.007015,3.564665,4.55984,4.957925,3.705325,8.13577,1.2318966666666666,2.213055,4.215565,2.660363333333333,2.660363333333333,1.96411,7.792153333333333,0.9324455555555556,3.692615,0.88982375,2.05658,4.470285,3.55236,3.99635,4.4161,2.8717466666666667,3.92394,4.112505,3.70717,4.3802,3.027715,2.760196666666667,4.61205,5.435934166666667,4.348095,4.74222,1.704852,1.66128,2.545246666666667,5.41245,2.1708575,1.7180533333333334,1.9625575,4.384235,5.04275,2.820945,2.552965,0.5134155555555555,2.15053,7.827405,3.21428,1.4160899999999998,0.84035875,1.1472133333333334,1.8076633333333334,2.0353125,0.736695,1.9686066666666668,4.2243355000000005,4.16462,5.31105,2.4007533333333333,2.0884275,7.220682500000001,2.830175,2.19475,2.19475,2.19475,6.412496666666668,2.1701633333333334,3.674565,2.43864,0.49207999999999996,1.11641,1.889825,5.384539999999999,0.44667833333333334,3.702375,3.915779166666667,4.93632,3.015651666666667,0.44667833333333334,3.015651666666667,1.06876875,1.2805659999999999,5.8567,4.354385,7.3792075,4.55145,5.1903,3.900395,4.20558,5.04175,4.238845,5.9274,3.691975,3.29191,5.34395,4.874965,4.089435,4.32792,5.807,1.3665966666666665,2.917923333333333,1.151615,2.33852,3.1188865277777778,1.4154865277777777,6.8597025,5.448358333333333,2.8379849999999998,4.936635,2.73752,4.77337,3.366585,4.551155,4.63863,9.405929166666667,5.8003,4.65198,2.0618375,2.68945,2.1101,0.54074375,2.118512,5.19595,4.97393,4.82868,4.429735,0.5198513333333333,1.992,1.37672,4.48346,0.8301923076923077,7.1423775,2.0420275,1.0446525,1.0446525,3.7235660000000004,1.9296700000000002,3.433866666666667,3.70454,4.722575,3.685495,3.685495,5.00065,5.5096799999999995,2.771513333333333,2.5610133333333334,3.3166700000000002,4.27297,1.885472,2.8441233333333336,5.55385,5.9237,4.788735,4.42552,3.8524833333333333,4.967685,3.5466208333333333,3.2899700000000003,2.3463125,4.035625,5.35145,3.1633625,4.80428,5.68185,2.079076666666667,2.6170633333333333,6.3375,6.9051,1.365988,2.60385,2.186025,3.22195,2.3371975,2.47029,2.733545,1.0341833333333335,1.82758,2.4077875,2.20522,2.50938,2.50938,2.9427375,2.712925,2.0639955769230767,2.5689,2.405755,2.0189,1.580916,4.7675325,14.66342,2.6439,3.4061,1.8103500000000001,1.8103500000000001,1.52784,1.52784,3.0304300000000004,3.7379,2.8864433333333337,1.8825825,1.8825825,3.866633333333333,3.197673333333333,1.1251333333333333,1.4970285714285716,3.204916666666667,3.0742066666666665,3.824066666666667,2.698072857142857,3.142053333333333,3.2399233333333335,0.721096,2.508225,3.5544689999999997,7.00779,4.93119,4.553975,4.493645,3.333915,4.794435,4.393215,2.6765133333333337,4.453545,1.4724633333333335,3.1701366666666666,5.87645,4.87533,2.55294,1.4311266666666667,2.85337,2.93178,3.100956666666667,1.4893183333333333,0.7478,3.3895,5.151809166666666,4.76266,4.58368,4.91622,3.0842466666666666,2.11668,3.2254300000000002,2.6349933333333335,3.339066666666667,3.1244066666666668,3.5075333333333334,2.761703333333333,2.3542833333333335,3.5101333333333335,2.948323333333333,5.15925,4.970975,5.422069166666667,5.422069166666667,3.31811,4.13853,3.74958,3.50359,2.846535,4.83948,3.303395,3.4393666666666665,6.10775,0.7462933333333334,5.0695,4.820935,2.5740000000000003,4.822799166666666,3.0322433333333336,1.62022,1.331307142857143,2.55472,1.01548,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.2283325,0.5904771428571428,0.5904771428571428,1.178485,0.8191411111111111,1.5844525252525252,1.0546257142857143,1.0546257142857143,1.1744514141414142,0.4100011111111111,0.36531777777777774,1.2256925,1.5535925,3.2648200000000003,2.569125,6.934925,3.0923133333333332,4.18345,4.333101666666666,4.516704857142857,1.3754883333333332,4.73309,4.585715,4.21192,3.31832,1.446132,4.043226538461539,3.545075,4.79089,4.475875,2.79584,4.04452,4.434135,4.550795,1.203154,3.8845,5.0421,3.19807,2.43327,3.401425,2.331305,3.160105,3.657475,3.1992933333333333,5.06535,8.641335,3.199785,4.833715,4.564265,4.444681666666667,2.7544033333333338,3.510445,0.8698557142857143,3.888725,3.32877,1.824738,1.04147625,2.82197,1.1127816666666666,0.5408533333333333,3.5061666666666667,4.119285,5.14996,3.551933333333333,2.3826925,2.995095,4.885825,3.9739,4.41898,2.4122625,2.2265566666666667,3.93537,4.1299,4.137935,5.45515,4.43859,3.668185,4.74931,3.06622,4.537005,2.2169920833333334,4.691935,5.54855,3.216565,3.98326,2.4636,3.68677,5.73845,4.63215,5.40745,5.39685,5.3447,2.6565233333333333,4.889065,4.50205,4.73602,2.1596425,0.98112,4.085925,4.75609,4.575645,4.860385,1.85472,4.52238,1.93057,4.985935,4.37404,5.07925,2.3415975,4.61004,5.2275,4.409225,2.845736666666667,4.26052,4.917355,4.805435,3.66461,2.1596425,2.46,2.921175,4.716875,3.838755,4.35651,3.590795,5.02785,2.34391,6.68235,4.72349,4.541965,5.130341097222222,4.684267500000001,5.18185,3.57417,2.4325616666666665,2.4325616666666665,4.419935,4.064955,4.46414,2.19959,3.1518975,1.0466525,2.6076466666666667,3.3298633333333334,2.548903333333333,3.4438,5.17285,2.7680233333333333,5.6504,2.859363333333333,4.263535,4.6277875,1.732065,4.091325,1.5782033333333334,2.8315699999999997,4.00688,0.9117770000000001,5.0862,4.76673,6.7192050000000005,4.56607,5.4999,1.4525285714285714,4.54277,6.0177,8.72693,3.0680933333333336,3.4121,1.870138,0.815216,3.929465,1.0616514285714287,3.970385,4.53969,4.79113,3.272845,3.722985,1.4296142857142857,3.103405,3.501035,4.34157,4.432495,4.435015,5.08265,2.4038475,4.149655,5.264,5.52645,4.747755,3.737875,0.31900555555555554,0.31900555555555554,0.31900555555555554,0.31900555555555554,5.35995,2.835955,6.35545,2.9943333333333335,5.56585,4.739835,3.929025,2.2531,2.4588466666666666,1.5976633333333332,5.78985,2.8822166666666664,4.12733,3.370565,3.40241,1.659885,1.16043875,4.480865,2.378725,6.176716666666667,3.81569,6.05395,2.288175,1.5537133333333333,0.8959388888888888,3.19801,4.925315,3.05882,2.284145,8.418755,4.330735,3.31887,2.39476,0.442776,3.46276,2.867655,2.217,1.830905,3.89621,3.12383,3.02436,4.045366666666667,2.834745,3.338405,4.374975,3.722375,4.729915,4.072075,5.682903333333333,0.663092,4.55474,5.4336,5.1808,4.60125,3.233423333333333,5.3518,4.14408,3.99906,5.188838333333333,5.3532,4.632425,4.69278,3.91224,3.983135,2.764305,8.74178,5.0973,4.494,4.82558,4.96618,4.75057,3.930055,0.9906055555555555,5.576655833333334,3.732805,4.99173,1.3482450000000001,4.20397,4.7145,7.92362,4.538025,3.125885,2.14095,3.90995,1.549996,1.0992775,4.205875,6.16535,1.9183933333333334,2.4179366666666664,2.82085,3.96621,3.466985,3.66474,5.0742,2.0424433333333334,3.98878,3.4890784999999997,3.350235,3.7142,3.84527,2.77145,2.5975,1.670265,2.44801,2.6753433333333336,4.31007,0.5228125,2.5115366666666668,3.97855,2.9894,3.7014,4.56406,5.41725,3.953375,16.418332015151513,2.00454,4.040533333333333,1.516454,0.8281281818181818,0.8281281818181818,0.8281281818181818,0.8281281818181818,0.8281281818181818,4.603615,4.74559,5.3033,9.1683415,2.58135,2.58135,4.51007,4.323862500000001,1.2551425,2.33527,4.496225,2.39608,2.190665,2.10298,2.943945,3.7252566666666667,2.29732,4.270965,0.79965,3.0060300000000004,2.7956233333333333,2.93561,1.4268066666666668,3.3457000000000003,2.3573666666666666,0.939285,2.831113333333333,2.67318,1.151388888888889,2.5933633333333335,2.7139233333333332,2.1347133333333335,4.421443333333333,2.3393433333333333,3.119946666666667,2.015945,2.5961366666666668,1.04562,2.85952,4.794418666666666,3.5296333333333334,1.00776875,2.79201,1.3099175,2.5882466666666666,3.1950800000000004,4.482401666666667,3.07325,2.6371466666666667,4.717741333333334,2.88226,2.12602,2.7825,2.7307333333333332,2.20553,2.66608,3.3802333333333334,3.1848433333333332,2.935643333333333,2.848943333333333,2.7288633333333334,2.39957,3.6366495,3.6366495,2.9872533333333333,1.9966166666666665,1.8136733333333332,2.81157,5.40328,2.93838,1.9271099999999999,1.61944,3.018266666666667,4.754775,2.31232,1.042516,2.7692793333333334,1.5026066666666666,2.532826666666667,2.20568,2.7922366666666663,2.10197,3.5892666666666666,1.211252,1.47267,1.5268166666666667,4.247655,2.5234666666666667,4.065195,0.9510911111111111,4.036695,2.0584633333333335,2.4574775,1.7507940000000002,1.6694666666666667,3.20103,23.819676807359308,6.932880000000001,2.57164,3.327545833333333,2.28304,10.481219333333332,3.18881,0.98325375,2.60207,2.3685233333333335,2.2001133333333334,2.695793333333333,2.65238,2.590803333333333,0.871205,3.10922,2.4604233333333334,2.96842,2.9190666666666663,3.01999,2.055756666666667,2.2119166666666668,2.800326666666667,2.4914066666666668,2.185635,1.6118919999999999,6.216808333333334,4.69659,2.468275,2.770925,2.2694533333333333,2.4136166666666665,7.836449166666667,1.8311066666666667,5.37215,1.8691825,1.8949775,7.16019,2.8119666666666667,2.65569,2.746425,1.713194,1.4754857692307692,3.384066666666667,3.03584,4.338885,1.42217,3.5792333333333333,1.6731025,1.6731025,3.816845,4.7587,2.838604285714286,2.838604285714286,5.895003333333333,3.381385,0.41612,10.798013946886448,1.2149766666666666,0.9333328571428572,3.5333458333333336,1.4808235897435897,1.541625,6.30501,3.728025,0.8078390909090909,2.0711233333333334,5.095489151515151,2.6421666666666663,4.48441,1.353407142857143,5.55325,5.67385,4.81008,3.62134575,1.9772459999999998,2.81519,2.79689,2.75413,2.17028,5.130963333333334,4.984475,4.898995,1.8893225,4.748975,3.97037,2.96645,2.43683,5.1939,2.5591566666666665,8.16732,6.854475,2.0340825,2.09491,1.682776,4.4910000000000005,4.4910000000000005,3.5121333333333333,3.1374999999999997,3.310661,5.07335,9.85324,4.04969,2.501425,5.15525,4.30603,5.0764,1.9258440000000001,0.8698,1.3181933333333333,4.597335,4.88188,3.6237333333333335,3.026096666666667,3.917566666666667,2.1346633333333336,3.336865,4.37988,3.396105,5.4067,3.2210966666666665,4.222089333333333,3.595,3.15536,3.5319333333333334,6.1671,2.981025,5.41155,5.0432,3.389335,3.362725,3.362725,5.774279166666667,12.176243333333334,3.639866666666667,6.128995,7.522772777777778,3.61358,2.4705166666666667,3.908155,1.29095,3.6755,2.59605,2.9605633333333334,3.05236,3.325616666666667,2.1522200000000002,2.34189,3.1631400000000003,2.7508166666666667,3.1932899999999997,3.0790133333333336,3.995195,2.4346533333333333,2.9480533333333336,3.71412,2.979146666666667,2.8488466666666667,1.24134875,2.089575,3.6106,2.4984033333333335,2.465003333333333,2.4275233333333333,3.588366666666667,2.4650466666666664,2.52015,2.775703333333333,3.15766,2.865406666666667,3.4446666666666665,2.4834833333333335,3.1991533333333333,2.8150366666666664,3.364832,2.6716233333333332,2.438753333333333,2.396036666666667,2.32694,2.6900133333333334,3.3345000000000002,3.157016666666667,2.79503,2.0848675,2.0848675,0.91321,1.5627739999999999,4.255205,3.25526,2.6472533333333335,2.1522200000000002,3.6357,1.3539557142857144,2.9028533333333333,0.6015006666666667,2.465176666666667,3.155616666666667,3.258365,3.00433,3.0862200000000004,2.916676666666667,3.113573333333333,2.8996933333333335,3.3664,4.50256,1.576276,2.5256633333333336,2.243916666666667,1.68917,2.0477466666666664,3.0299933333333335,2.7624333333333335,1.7975059999999998,2.5579,2.51201,2.705503333333333,2.824806666666667,2.78711,2.8779266666666667,3.3047733333333333,1.42861,2.9673466666666664,2.3947566666666664,3.7710333333333335,3.3356666666666666,1.8498875,1.6353666666666669,3.5167,2.8345066666666665,3.2918866666666666,2.60603,2.98095,5.4498,2.5324433333333336,1.8885033333333334,1.572,3.2967066666666667,5.982316666666667,3.4188666666666667,3.105116666666667,2.926213333333333,3.116013333333333,4.693606666666667,1.59457,1.1983000000000001,2.81729,1.9672570833333334,4.515345,3.3259133333333337,3.407,2.9452866666666666,3.0545466666666665,2.552376666666667,3.3076033333333332,2.3106875,1.6324,2.9178800000000003,3.40984,3.7742700000000005,3.40579,4.03125,1.8485475,2.816355,3.61024,2.26619,2.5239233333333333,3.1727166666666666,4.0133,3.9446,1.704285,5.943274000000001,3.4595637499999996,1.611605,3.84888,3.609775,2.79114,4.76341,1.79462,1.79462,3.1928,2.9269833333333337,3.27009,5.5729,4.474545,4.228420666666667,1.112674,2.843916666666667,2.5709033333333333,4.3155025,3.05721,4.293580666666667,2.6507466666666666,2.3247,2.8202266666666667,3.568165,4.289305,1.6730360000000002,3.1378866666666667,3.54367,2.35136,4.235235,1.2651033333333335,4.29332,4.297845,2.592925,3.605285,3.983565,1.6088475,1.52203,2.4585975,1.0367433333333334,2.065803333333333,2.1586725,0.4386614285714286,4.33104,2.3054,4.26123,4.28804,2.715745,4.51572,3.4078999999999997,3.1607066666666666,3.4791000000000003,2.7095633333333335,3.4440000000000004,2.7270366666666668,3.27689,2.2874833333333333,0.6879846153846153,2.3171866666666667,0.6749521428571429,1.9146166666666666,2.3903166666666666,3.1937233333333332,2.9604533333333336,1.4560533333333332,1.3861725,3.698255,4.898805,3.76845,4.094155,3.164515,1.189485,4.187065,7.23238,3.885615,6.1128225,1.444655,4.260875,1.8969,3.733895,3.894575,1.738195,4.251475,3.708965,3.937605,4.197745,2.0986225,4.305705,7.2303975000000005,5.4813,3.440205,3.267485,1.6692575,2.0352575,4.43006,3.255885,3.02062,3.76516,3.514775,3.755985,1.755475,3.817225,3.452045,2.0197525,4.12143,0.7506133333333334,3.58411,1.67991,4.236725,4.605448333333333,3.645,2.7567975000000002,3.65893,3.443655,1.95128,2.3346325,3.8707999999999996,2.3623,5.773899999999999,4.02551,4.335685,2.35808,3.136425,5.15905,4.15457,2.9240260000000005,2.9240260000000005,6.174997333333334,4.0458765,2.7941225000000003,3.172955,2.2267633333333334,3.016635,3.429435,3.806626666666667,2.8548115000000003,3.63298,1.013122,3.75685,3.24378,4.313135,2.66961,1.459085,1.636785,3.92482,6.226151,5.5408375,3.50558,1.69893,3.619935,3.39156,0.8384683333333333,2.974175,1.297724,5.45443,1.388425,4.206235,2.2473375,1.4560533333333332,3.09505,3.13735,4.397925,7.001498333333333,4.709015,4.215096666666667,2.430425,2.8818,4.709545,4.133995,4.79251,4.465425,1.25498,1.7614990000000001,1.158145,2.7606,2.10494,4.489395,1.158145,4.722805,2.471025,1.6855475,1.6855475,2.0197525,3.76311,4.448345,4.31899,1.7283680000000001,1.7283680000000001,1.0214866666666667,3.12668,2.05491,5.938325,4.273315,3.782075,2.688606666666667,1.0093357142857142,3.61921,2.700035,4.28187,4.064685,4.18183,4.18183,4.038195,3.875145,2.11773,2.64561,0.9205366666666666,1.7615800000000001,3.353755,2.464843333333333,3.4181275,3.4181275,2.859895,4.777915,4.737205,2.994135,3.4503,4.20447,2.8251033333333333,4.763353333333333,2.79796,4.13704,8.671315,4.933465,2.66736,3.253365,3.091,4.902765,3.4480199999999996,7.517525,4.662342,4.432045,3.53047,3.60015,3.72474,4.46082,4.71681,2.12309,4.070795,6.176095833333333,2.515455,2.241827333333333,3.330165,3.268255,3.10585,3.85263,2.136136666666667,2.35479,2.288175,3.0530675,2.4138433333333333,7.683139333333333,1.2876025,4.71293,4.71293,3.381705,3.6926175,2.87993,2.3980099999999998,4.7999,3.929774,2.1349773333333335,3.87718,4.176515,3.4685466666666667,3.292595,3.124425,6.4378383333333336,3.213885,4.932085,3.38545,4.338785,3.99179,3.58768,2.9269833333333337,2.3923833333333335,2.402845,4.373595,3.31687,3.48862,3.076125,6.418995,2.381245,1.91735,3.3885899999999998,2.4392566666666666,3.836765,2.73476,0.8384683333333333,3.173985,4.418825,3.836595,5.89203,3.249105,3.225355,3.02707,3.02707,3.735240833333333,4.608165,3.935865,2.3619075,6.0895624999999995,2.1016925,4.471475,3.594255,7.90204,2.8340899999999998,1.2732066666666666,3.531365,4.500315,0.64263375,4.044,3.05051,3.03004,3.225905,4.705175,2.085996666666667,2.43331,8.91565,3.273745,2.54952,1.388425,3.094405,2.845575,2.389455,3.88625,5.4144925,1.7128475,1.2197366666666667,0.9405833333333334,4.12398,3.88263,3.57675,3.8719099999999997,3.8719099999999997,1.755475,2.24427,2.9364,0.84429,2.5363,1.07121,1.8485475,3.82251,3.855135,3.25055,2.77723,2.5924733333333334,4.01723,3.936905,3.207655,3.38051,2.50625,4.136585,6.63707,3.959135,0.9772,2.306881,8.54206,4.625975,4.294415,1.0093225,5.825613333333333,1.3888433333333332,3.7933275,3.7933275,3.721405,8.336415833333334,0.8333955555555556,4.56578,4.66074,1.95181,4.231895833333333,3.213755,2.175825,9.014032666666667,1.71113,2.5026433333333333,3.209345,1.61669,3.9710014166666667,3.06729,3.96096,3.795802,3.090985,3.433715,1.0431066666666666,7.70283,3.98379,4.0493,4.48467,2.1221075,2.7567975000000002,3.8232916666666665,4.120305,0.6623546153846154,4.424885,4.556955,5.00175,2.08156,1.471112,4.43334,4.330185,9.80126,0.5521792307692308,0.774255,0.774255,1.6694566666666668,1.3215833333333333,1.3573439999999999,1.7830133333333331,4.562915,1.1717666666666666,0.8345842857142857,4.030495,3.696955,1.502105,3.10857,4.64137,3.731695,0.703056,1.68909,10.62359,3.355125,3.906405,2.37424,1.5200375,2.4113966666666666,2.83064,4.5728,4.34509,3.887225,0.9315742857142857,1.50747,0.940427,4.833485,4.28652,4.095715,0.84429,1.7830559999999998,3.82215,2.2261817857142856,4.358546666666667,1.005935,4.787385,0.6438083333333333,0.6438083333333333,0.6438083333333333,10.01765,4.30452,1.07121,4.039395,4.242915,2.988835,4.8748,4.080738333333334,2.27975,1.8918483333333334,1.76026,0.703056,1.5415243333333333,0.5263833333333333,0.7813150000000001,1.2308183333333333,4.464745,3.661125,2.0779825,7.34996,4.839270833333333,0.6979833333333334,4.911315,5.043153333333334,3.39302,4.383055,7.7914536666666665,3.8728454761904763,4.839270833333333,4.512962416666666,2.42985,4.282765,3.65271,7.274545,3.60672,0.442776,1.543844,3.98298,1.7348919999999999,1.2197366666666667,4.2781,2.3218533333333333,1.75413,3.23588,1.6854600000000002,4.33227,4.34105,4.10044,4.7041,5.83587,2.927555,3.868205,1.297724,2.3682725,3.798675,2.993615,2.1349773333333335,4.040765,2.47836,4.807205,2.98404,2.286295,3.2586025000000003,1.442466,3.45734,0.84429,2.1708457500000002,0.9405833333333334,1.437105,3.60083,1.2876025,1.2308183333333333,2.278035,2.571715,8.13478,0.9315742857142857,1.0093225,1.422494,3.67875,4.0029,1.422494,3.800025,2.3682725,0.64263375,0.84429,1.6694566666666668,1.297724,0.4386614285714286,1.6399979999999998,4.189052,1.95181,1.39691,2.73078,1.704285,1.71113,2.5603266666666666,1.76026,4.26903,2.5603266666666666,0.8384683333333333,2.694376,2.51015,0.118175,0.118175,0.118175,0.118175,0.118175,3.5053666666666667,2.604103333333333,2.95955,2.8478933333333334,4.782795,3.88574,1.7507940000000002,3.641745,3.71005,2.118275,5.0911475,2.657875,2.425955,2.339655,2.73687,4.402315,8.4982,2.349255,2.32312,2.956388571428571,0.9122185714285714,1.3526,2.37732,1.9072466666666665,1.45483,2.64541,2.21309,2.796053333333333,3.0014533333333335,2.5961166666666666,3.967735,3.808485,2.8661433333333335,1.316592,3.10979,3.65629,1.4693800000000001,1.333036,1.333036,1.333036,3.52288,2.776893333333333,1.1340066666666666,2.1982266666666668,1.240344285714286,4.381745,1.5808866666666666,6.613073333333333,3.5328099999999996,2.8383633333333336,3.1055460000000004,3.1055460000000004,5.517483333333333,2.837885,4.652875,4.98337,2.23852,3.3249766666666667 +GSM1946758,0.0,1.979805,1.979805,1.6285166666666668,4.21716,6.36235,2.6174003947368423,1.5565633333333333,7.600346936274509,4.57574,3.23556,2.255665,2.051035,3.413785,4.34597,1.845392,1.5213480000000001,5.0333,2.47446,2.3100325,4.51596,5.446015,3.945125,2.353705,1.8157419999999997,4.208395,4.68692,4.384635,0.6992933333333333,1.539344722222222,1.8629138888888888,1.8162375,1.619015,1.1437000000000002,0.6884666666666667,3.1171875,1.5403375,1.886145,1.231935,2.13673,1.10029,1.06048,1.0948259999999999,1.49353,0.894122,0.92498,0.76149,1.1939757142857144,1.6263580000000002,1.8266300000000002,1.5644360000000002,2.01422,1.673272,18.672211249999997,0.377626,0.81861,1.10422,1.8249900000000001,1.390234,1.685716,1.0678085714285714,1.0678085714285714,1.0678085714285714,1.1491083333333334,0.984068,4.60935875,1.145045,2.3201175,2.04049,2.409615,0.9693630000000001,2.21769,2.2681775,2.1615775,1.4591875,2.163255,1.5529775,1.697905,2.4226633333333334,3.75154,4.64707,5.394,1.9472466666666666,4.59759,4.464815,4.3259,4.132915,1.07777875,7.43105,0.57958625,0.57958625,2.3439775,1.0919171428571428,16.194139999999997,4.88678,5.42615,5.8152,4.1769,4.297305,5.53485,0.4627811111111111,2.2924816666666668,1.77259,2.3887725,4.577085,3.76844,1.576525,3.073866666666667,3.9385999999999997,2.83324,3.7556666666666665,3.450875,4.6632,2.8306690000000003,4.700925,2.952446666666667,0.7133872727272728,1.7547799999999998,2.59545,4.876095,4.30641,0.55525,3.644355,3.833635,0.75120375,4.465085,1.6968299999999998,2.399425,2.77355,2.1267475,4.02537,5.85315,3.311605,2.6874933333333337,3.293863333333333,3.07123,4.347345,2.9505933333333334,5.47735,3.40048,4.471005,3.26258,2.339495,3.62549,2.4881325,6.794483333333334,3.50272,3.67622,5.79475,3.240795,4.85582,0.7652,9.880010714285714,3.546495,2.01428,1.8309033333333333,3.25379,2.35324,4.954085,5.58825,2.136155,5.009143333333333,2.753685,4.39441,2.136155,3.2020166666666667,4.34486,5.240905833333334,3.80568,9.05655,3.768685,4.92441,2.87289,4.972065,4.41334,1.7741833333333332,8.16715,4.39519,4.14926,3.78161,3.62898,3.298645,2.25396,5.966895,2.29214,4.075065,4.004555,5.10835,4.892725,3.707035,1.417035,2.719905,3.11377,1.744715,1.744715,6.233040428571428,3.137745,1.9975066666666665,4.421335,4.577195,2.73713,1.4791566666666667,0.8472555555555555,6.84335,2.70632,7.00735,3.020555,3.91255,3.735095,3.181015,3.96141,3.57032,3.88534,4.20073,5.5326,2.81168,3.615535,9.12255,5.01265,3.5607666666666664,3.131346666666667,2.6628266666666667,3.935833333333333,4.424974166666667,1.9349775,2.741573333333333,2.2251766666666666,1.698502,1.8286499999999999,2.675613333333333,1.73684,1.877165,2.9366766666666666,2.748423333333333,2.353146666666667,2.6769433333333335,4.464815,3.46261,3.25358,3.62929,4.71733,1.1952183333333333,2.28997,2.9143322857142855,2.0772,2.6097233333333336,2.0640899999999998,3.371066666666667,1.664214,1.2976533333333333,2.56428,0.6912,1.6801266666666665,0.5510633333333333,0.5510633333333333,1.4871100000000002,2.69396,2.1483333333333334,1.26783,1.5355999999999999,0.31439076923076925,2.7077666666666667,0.6912,1.3070566666666668,0.19686783783783784,1.4505133333333333,1.99174,3.4587333333333334,2.0961233333333333,2.220543333333333,2.5255433333333333,2.1676066666666665,2.33163,2.5170933333333334,2.3174566666666667,2.23062,2.7290266666666665,1.9377666666666666,2.743055,4.09268,0.6633233333333334,1.7786033333333335,2.5486633333333333,1.9397466666666665,3.4554133333333334,1.502874,2.5773266666666665,2.1936966666666664,4.322743333333333,2.02483,7.582203333333334,1.6671,3.0004899999999997,2.1129175,2.05685,3.3583,1.95859,1.9195575,4.07919,2.64323,2.0726025,3.934175,4.15252,4.306645,3.74032,2.238595,3.257225,4.427372666666667,3.831255,3.98014,4.2611,4.33674,3.08033,4.50307,3.53022,0.87459625,4.86649,1.232035,4.875875,3.774675,5.773236000000001,3.66902,4.27373,0.94693,2.18494,3.478115,4.113415,0.7952957142857143,1.1791253846153846,2.067692380952381,3.6463914285714285,5.26023,5.5258769999999995,2.1745,3.03455,5.1635,0.3339892857142857,3.4147,2.284155,0.96920875,5.0835,1.912175,11.794184999999999,1.249295,1.3333925,1.9273999999999998,2.303465,2.0724552631578947,4.9069102631578945,0.34886526315789473,1.7143566666666665,2.863466666666667,0.9570125,3.6501,1.075737142857143,5.28435,3.90878,2.163273333333333,6.2747,5.8331,2.86935,1.1245985714285713,4.509218333333333,5.55465,4.267945,0.8646436363636364,8.051876666666667,2.902426666666667,4.40511,2.65769,2.508103333333333,4.628275,2.2376400000000003,2.6231933333333335,2.16726,2.4537166666666668,3.199595,2.9822133333333336,0.34456375,3.93502,3.783315,3.92627,3.77055,4.61509,6.081765000000001,4.12254,1.7205425,5.6936,4.56444,4.41079,4.198265,1.0436683333333334,2.5882633333333334,3.1796433333333334,2.609573333333333,15.88214,2.967475,3.85647,4.393925,5.82155,2.796755,5.1477804166666665,1.7165075,0.7627033333333333,2.7649,3.39908,3.624815,4.20582,6.492165,2.9508833333333335,2.2786,2.146565,3.3933,4.50612,2.3368125,0.3736445386904762,3.25075,1.922875,1.15680125,0.5643445386904762,0.7550445386904763,0.3736445386904762,0.3736445386904762,0.3736445386904762,1.134185,1.3585675,0.810905,1.465765,4.382194999999999,0.2225879411764706,11.411847121212121,3.4735666666666667,2.8287266666666664,4.17747,4.123775,3.906965,2.144445,4.69402,3.920316333333333,4.13807,3.98198,0.6892,3.3385,4.166302564102564,0.5568557142857143,3.57874,2.8042433333333334,4.465665,0.5460090909090909,1.71403,4.455205,3.323925,1.9416175,1.7820833333333335,1.6911566666666669,3.207316666666667,3.97027,3.03408,2.8306833333333334,5.7752,5.4835,4.98435,3.4340333333333333,3.132086,6.734958333333333,3.8694333333333333,4.895925,0.4248142857142857,3.2591966666666665,4.068901666666667,2.0446466666666665,2.700225,2.7896858333333334,5.482843333333333,0.5702925,2.98915,4.455895,4.482505,1.04542,4.8229,2.727525,4.82461,3.1136233333333334,4.30296,3.40866,4.325595,1.1663416666666666,3.316045,2.6000033333333334,4.874985,4.038925,4.594205,5.81305,4.500205,2.65061,5.35718,2.358773333333333,3.169105,3.172273333333333,2.7464666666666666,2.77454,2.2550033333333332,1.824748,1.63645,2.1371966666666666,0.7632199999999999,1.4443666666666666,2.3204266666666666,1.9679266666666668,3.07696,3.311106666666667,2.7894733333333335,0.9784488888888888,5.064,3.4547333333333334,5.2988558333333335,2.5767291666666665,3.0796233333333336,2.9044866666666667,1.7655833333333335,1.7655833333333335,2.5938545454545454,2.5938545454545454,3.377281331168831,0.5388942857142858,1.7306800000000002,2.3952566666666666,3.7265333333333337,2.2062607142857145,2.2062607142857145,2.2062607142857145,7.592377916666667,4.528263333333333,0.9906545454545455,2.44539,5.0283925,2.3917875,4.599185,3.24798,2.24485,3.66973,3.0539,3.1619733333333335,1.0760725,1.9054933333333333,3.2740266666666664,2.5004233333333334,2.6023833333333335,5.70295,4.183333333333334,3.8882999999999996,5.1540566666666665,1.8866333333333334,2.6840266666666666,3.240413333333333,1.0443033333333334,2.1534233333333335,4.718353333333333,7.98323,1.54958,2.976145,4.935595,1.801486,1.849205,1.849205,0.9893875,4.821345,7.874995,4.1149,4.899556,4.495655,1.7779666666666667,4.087205,3.200705,4.75029,5.198493333333333,0.35750473684210526,2.849175,2.698545,4.1665,3.826115,1.864826,1.91902,2.576275,4.320265,4.25015,3.113835,2.47217,1.4069639999999999,6.86253,5.5814,4.053415,3.53075,5.65365,5.03005,4.387525,3.513795,3.590045,1.9392475,1.0763114285714286,2.751235,3.971705,3.65844,5.5292925,5.673755,2.444995,1.7775299999999998,2.6799166666666667,2.72878,3.0169866666666665,0.7198571428571429,2.1669,3.687335,1.126105,4.933845,3.19447,5.9489625,1.3370363636363636,1.3370363636363636,4.16021,3.750495,3.703755,5.6425,2.76586,2.3130266666666666,3.695885,3.3514,2.1467675,3.4187666666666665,2.554136666666667,4.165825,3.5795775,3.71005,4.61179,1.0791866666666667,2.680055,4.26049,5.17925,3.27396,2.5147266666666668,1.69378,0.75928,0.75928,0.75928,0.75928,1.5026466666666667,3.8826674999999997,3.8826674999999997,1.8252,7.056096666666667,3.325745,4.00132,3.0244700000000004,2.72425,4.856655,4.091625,4.85707,5.3626,1.68334,4.046775,3.723735,2.716805,3.126115,3.404515,2.403245,3.96174,1.848885,4.683825,1.6172,3.4953104166666664,3.01597,1.8522,1.1643216666666667,2.75511,4.3984,1.26677,0.8417966666666667,3.62867,1.4260125,4.946186,4.303485,1.3139699999999999,3.531375,0.7362877777777778,2.6292466666666665,2.4901466666666665,2.52994,2.656465,4.03503,2.899010833333333,4.887125,5.61475,4.296865,4.434915,2.410175,1.3286614285714287,4.006775,5.0198,1.45945,1.45945,4.08053,0.25731,2.4225566666666665,0.25731,0.25731,0.25731,0.25731,5.14145,2.6555866666666668,3.26174,3.48431,3.21794,4.330145,2.724413333333333,0.924105,0.924105,0.8884416666666667,0.8884416666666667,3.73801,1.905485,4.363185,1.7118028571428572,1.7118028571428572,4.72319,0.5388071428571429,2.83065,7.3977466666666665,4.90087,3.211935,3.461175,0.96647125,2.314195,2.02375,4.69831,4.27123,4.381,3.87742,1.2958314285714285,2.728785,2.014335,7.53536,1.720555,4.472545,4.6957,2.95494,3.914105,6.45287,7.84554,4.091135,4.511555,3.6356,2.4696025,3.163985,2.390065,2.290855,1.89655,3.809125,3.580635,5.513566666666667,6.75556,4.29903,1.0039766666666667,2.10775,3.62468,3.738385,2.1313675,4.177565,3.139275,4.7272,1.7260766666666667,4.186266666666667,1.6098999999999999,6.48612,2.82452,2.42252,2.39606,2.18831,3.437466666666667,3.3356333333333335,3.2327833333333333,2.6911400000000003,3.4491,2.1586,3.35662,3.056825,3.090865,0.383158,2.855775,3.973075,2.6214,5.655,5.0844,4.64938,6.927788,5.05595,2.1197399999999997,4.2338,5.2893,1.6333583333333335,4.7443,5.57775,5.38075,4.783275,3.314295,5.5133,5.15025,3.975995,5.406362000000001,7.9341,4.36083,1.210685,1.4257266666666668,2.708995,1.910838,4.513465,4.07684,5.127845,2.55934,2.3743666666666665,2.7348733333333333,2.4423966666666668,2.2798133333333332,0.9733077777777778,0.5074441176470588,3.875405,4.06196,3.6319666666666666,4.05333,2.845095,3.1893499999999997,5.400526666666666,3.0566533333333332,0.5952176470588235,3.11105,5.54965,1.8717,1.679476,3.806655,3.27573,2.483353333333333,3.7736666666666667,4.03349,2.74268,2.25584,2.4280666666666666,2.592416666666667,2.63439,4.3814866666666665,5.071366666666666,6.42960775,1.447968,4.94035,3.3318329166666665,5.09236125,2.599763333333333,2.89085,2.378285,1.79688,1.431615,1.431615,2.5691200000000003,2.3403133333333335,2.7801066666666667,4.400875,1.622682,2.11836,2.026935,0.4615725,3.532145,0.581635,0.94644375,3.45448,4.18204,3.47675,1.7297675,4.758085,3.071623333333333,0.7888214285714286,4.4084,3.8656176190476192,3.3040299999999996,2.442705,5.08475,0.27989275862068963,2.1683491666666668,3.20216,1.424055,3.710735,6.6649,2.41121,1.4375466666666668,4.074505,3.89851,2.87536,2.87536,3.611265,2.73189,4.711595,5.79299,5.13265,0.9935999999999999,2.7547266666666665,2.4281099999999998,4.58303,5.23955,5.2665,4.841885,4.374933333333334,3.9122333333333335,3.7311666666666667,3.6918333333333333,4.1901,3.063193333333333,3.1159266666666667,0.6105728571428571,2.38957,2.407975,3.793275,3.005236666666667,3.2752499999999998,0.7495791666666666,2.690285,4.2645100000000005,4.782645,5.83655,5.4305,1.913015,1.913015,0.8424060000000001,2.91479,4.61489,3.7934,4.763011428571429,3.36997,4.803175,0.5824863636363636,3.059,3.726135,4.06877,4.042818333333334,0.7929457142857144,2.820805,3.894545,5.67595,3.79863,5.04095,2.747095,4.12513,1.5427075,1.0338957142857141,2.7109966666666665,5.5754,4.6565,3.119225,1.4366683333333334,3.984375,2.508325,2.6683,2.757598222222222,3.0586366666666667,4.5520233333333335,3.110136666666667,1.81615,3.5122666666666666,1.4431345238095237,2.959373333333333,2.5537033333333334,2.37024,2.87181,3.1375733333333335,2.41907,2.806233333333333,3.632235,3.1097066666666664,3.4588726666666663,2.50305,1.756545,4.113803333333333,2.9653266666666664,2.4264233333333336,3.4588726666666663,2.0662833333333332,0.8134627272727273,2.4229025,1.0489066666666667,2.27379,1.593055,0.9465545454545455,1.802575,1.7309825,2.65623825,2.73255,4.71145,1.5536175,5.0079,3.2271433333333337,1.62075,2.2021533333333334,2.552376666666667,1.6709800000000001,2.7921899999999997,2.8046466666666667,2.225936818181818,1.629205,1.8012799999999998,3.6039666666666665,2.2825866666666665,2.8873572222222226,3.2543699999999998,3.2252466666666666,3.5226666666666664,2.1073,4.1768,3.5157000000000003,3.7916666666666665,2.917426666666667,3.5078,3.6501333333333332,1.8904333333333332,10.58615,4.29872,4.274375,3.36559,2.73399,2.015695,4.034715,1.708334,4.063745,4.292225,1.3339919999999998,2.54873,1.1631316666666667,2.3980366666666666,1.76258,2.4397766666666665,5.126335,3.2297100000000003,3.630225,5.02585,0.7789175,1.479398,0.9905889999999999,3.581445,10.095738333333333,3.4763,6.8059,2.06193,5.18625,4.416495,2.55265,5.0899,0.28147,0.8515928571428572,4.59734,4.37266,7.5380725,2.0402725,4.284425,5.7701,4.663605,4.83171,3.34157,4.58351,3.467085,5.865996666666667,3.69666,3.199965,3.08451,2.2492266666666665,1.92305,1.3870764583333335,2.4858,3.891685,4.64565,1.566498,9.0085,2.1873633333333333,2.9609741666666665,1.093058,1.093058,7.233264166666666,3.03934,2.3581325,2.199155,2.6922866666666665,2.2025333333333332,1.1438333333333335,3.6439624999999998,2.6686266666666665,0.5876042857142857,1.8510499999999999,3.365412,3.365412,1.19051,2.51303,2.23966,2.7299283333333335,1.3776625,1.7664066666666667,4.679888,2.7033533333333337,2.73415,1.2492825,1.2492825,4.1041,5.90785,4.40065,3.23188,3.81688,6.03784,2.877025,2.8786799999999997,3.11183,3.96533,1.1324033333333332,3.3014200000000002,2.60885,3.704245,2.154993333333333,4.830485,3.569195,4.41053,3.760535,5.601088,0.9400944444444446,1.9208175,1.912895,3.641775,4.37327,3.65326,3.672415,3.55119,2.27543,1.7584775,4.28926,3.48758,3.360725,2.4085533333333333,0.83354125,3.338985,4.327965,4.796135,1.18296,2.801633333333333,2.4849533333333333,2.0493866666666665,1.8944580392156862,1.8944580392156862,1.3107733333333333,2.02833,1.1036771428571428,1.3899139999999999,4.488855,4.2033,0.4877952380952381,3.353045,3.4422333333333337,3.95846,5.36815,0.4140125,9.26856,5.55355,3.22389,4.034845,4.57716,5.509065714285715,5.14005,6.9856750000000005,0.689509090909091,2.7717333333333336,5.22745,2.89034,1.80941,2.0392,4.441165,5.1282075,2.4434744642857145,3.5934666666666666,2.99572,2.08539,4.21824,10.9458,8.49108125,4.0048,4.53117,3.107885,3.240225,3.867845,1.9463259999999998,3.0194799999999997,3.619965,4.546655,4.882455,5.14249,6.682693333333333,2.2032233333333333,4.566115,4.6676,4.781985,4.491155,7.49689,4.0527299999999995,5.8737,3.36731,3.034965,2.87075,5.74275,3.672475,5.05615,2.198375,3.161096666666667,3.35737,5.80935,4.03606,3.68584,1.4538639999999998,0.90155625,2.355145,0.5588653333333333,3.79476,3.673765,3.516375,2.9016,2.1534833333333334,2.95605,2.655225,3.023434,1.848434,3.0615025,2.835775,2.318255,2.5681,3.750376,1.3414733333333333,2.855035833333333,5.2654,3.808666666666667,1.2762825,2.8149599999999997,3.7764241666666667,3.7364420000000003,1.5249,5.69065,5.3532,2.1973733333333336,2.9682933333333335,30.580360311931535,3.330913333333333,1.78725,3.9560666666666666,1.5418166666666666,2.64498,2.9739466666666665,3.3427000000000002,1.9961975,2.766275,1.931165,3.9129255,3.615266666666667,2.4972275,1.3637025,2.2765,2.904375,0.3777745454545455,1.1613225,2.9174,1.646978,3.37313,1.5249,2.01797,25.544898166666666,5.1301,3.67405,3.568325,2.501495,2.5473,2.6522566666666667,2.30111,3.593645,5.029317,5.28965,1.589142,1.753752,2.119005,2.4490233333333333,3.7687675,5.3587,4.92114,4.539595,0.18979617021276596,4.99593,4.778149166666667,3.825445,8.98607,1.0395325,1.0395325,2.98453,2.86752,5.57225,1.9621833333333334,1.0138933333333333,4.51628,1.9136975,4.19298,4.32618,3.314285,4.00433,4.02158,5.5066,3.065535,0.7064822222222222,3.26014,2.1234525,4.337365,7.884005,4.09243,1.9344033333333333,1.9344033333333333,6.9382850000000005,4.74272,4.20537,5.31115,2.2448799999999998,5.151263333333333,1.3730799999999999,1.3933099999999998,2.998836666666667,2.21527,3.17948,2.711596666666667,3.751535,4.46341,4.00451,5.45035,2.2477775,2.8018,1.91292,2.52965,2.4812025,2.0533075,2.0971225,4.882729166666667,1.85222,3.3700719047619048,2.3449933333333335,3.0049833333333336,2.64576,1.8575,1.4242171428571428,0.965708,2.3870066666666667,4.0924000000000005,0.757872,4.701115,1.7408625,5.840778333333334,1.98801,1.510655,1.6202275,1.5159066666666667,5.7130027777777785,1.8987159999999998,3.051543333333333,3.695266666666667,1.224165,1.7488525,5.005966,3.23376,2.03084,3.599133333333333,2.88953,2.90475,1.2923298214285714,0.28719,0.28719,0.28719,0.28719,0.28719,3.89982,2.76709,2.5494,3.458066666666667,1.3707,2.66877,3.026123333333333,2.03481,3.62779,2.965145,1.7336833333333335,3.034186666666667,3.230033333333333,2.0875275,1.997375,3.63435,2.7450033333333335,3.8305333333333333,5.1671,2.645303333333333,2.6224133333333333,2.5971933333333332,10.96983,4.744645,4.37565,5.158,4.313035,2.83876,5.17745,4.05798,4.62203,5.552396666666667,4.02542,3.07755,2.2977475,3.51107,5.073238714285714,3.50823,17.75282488095238,1.1067475,4.2484,0.854991111111111,1.2821625,2.892575,4.622315,4.245825,4.857115,1.64511,2.4285975,4.305115,2.1344433333333335,4.66073,3.1869796428571426,2.67552,0.6164933333333333,2.9629133333333333,4.75777,2.4402325,2.3764175,2.1427075,20.19823,1.349272,1.3859625,2.7008233333333336,0.2772976923076923,1.7863575,2.882766666666667,1.9637633333333333,2.97524,2.68865,7.5419358333333335,1.86815,2.51285,2.229645,2.1345925,1.6158299999999999,3.3478999999999997,3.153905,4.441665,3.1717633333333333,1.94584,2.68648,3.22041,4.981285,0.44950333333333337,3.7282666666666664,3.06076,2.980735,2.005285,3.7521190000000004,3.521335,1.5724133333333334,2.310583333333333,2.1754700000000002,1.3803866666666667,1.88216,3.402605,3.32753,0.7685466666666666,3.248795,4.907385,4.22793,2.2591340000000004,2.2591340000000004,3.104146666666667,4.535955,3.236185,3.412815,2.31501,0.9199090909090909,4.27505,3.629395,6.1622,3.691315,2.25033,2.25033,1.43804,3.54988,5.09125,4.265935,4.282415,2.9432766666666663,2.33283,4.38926,3.345085,4.193935,2.84864,2.2322233333333332,4.109493333333333,3.04797,2.582473333333333,1.94878,3.690225,2.7713,1.5241033333333334,3.69278,3.2642,4.529885,3.7054666666666667,5.14,4.42923,6.388254249999999,3.95252,2.0864000000000003,4.64818,2.594275,7.10018,2.5554833333333336,1.2741233333333333,4.486805,3.957966666666667,4.86694,0.6155292857142857,0.8665333333333334,3.58032,3.557435,2.1526643939393937,4.2727,2.87136,3.02235,9.11985,1.92759,1.233792,3.64619,2.578895,3.373605,5.03005,6.2390099999999995,3.1584999999999996,2.1203266666666667,3.078606666666667,1.79031,3.29334,8.559499039408866,0.8586221428571429,1.0083775,4.76441,0.4599646666666667,1.58797,2.0523425,3.136475,3.108475,2.979325,4.81567,2.355475,12.78594,5.193720000000001,2.516575,2.516575,4.11307,0.8167716666666666,4.960713333333333,3.980325,4.21344,5.889293333333333,3.43835,5.49755,1.3857483333333331,2.73365,2.6139,2.704215,3.09137,2.58091,3.15781,3.550435,3.53002,3.03534,3.04461,3.341115,4.208,4.314715,3.07029,3.2540133333333334,4.761460833333334,4.27928,18.429595714285714,11.798812976190476,3.274402142857143,0.7048825,1.4757,4.43626,3.52465,3.1447183974358976,2.049665,0.8714588888888889,0.6679916666666667,0.6331671428571429,2.1001175,1.6196860000000002,5.20768,3.279693333333333,0.7190500000000001,3.387235,2.457285,1.7030025,1.7261399999999998,6.697420000000001,1.562192,4.56793,3.023695,2.9715399999999996,2.31773,2.6285766666666666,2.56915,0.780839090909091,3.38893,3.09305,4.036259333333334,3.0747533333333332,7.4658958333333345,3.65109,3.296145,2.4616325,3.464375,5.5092175,2.073355,2.4407425,2.577275,1.6423575,2.582875,2.1114675,2.787275,0.955929,1.35176,1.0403975,2.984195,4.229485,6.13855,5.4496,2.904765,2.39251,2.8789,3.2798133333333332,7.589106666666666,1.2490366666666668,0.363785,3.02226,2.04637,1.495838,3.4471290000000003,1.268402,1.8697103333333334,3.947238333333333,2.940072,1.2149699999999999,1.8078200000000002,3.613085,3.52841,4.449725,3.959215,2.0215,5.0141,4.03426,0.7690315384615385,4.538075,3.91096,4.382815416666666,3.274563333333333,2.39898,1.352942,1.2549625,3.49232,2.6569,3.303285,3.902005,2.812875,2.628013333333333,3.25742,3.682925,4.54929,2.37999,2.80638,4.23366,5.75075,0.57264375,4.61182,1.8229225,3.35161,4.165866666666667,1.752305,3.119495,2.1503775,2.18532,2.630495,2.4116825000000004,1.6732266666666666,4.26432,3.54812,1.2788257142857142,7.26267,1.06317,3.83418,1.7196566666666666,4.65752,4.0535,3.3903,3.261765,3.84002,8.45856,3.013485,3.700945,3.651975,3.631345,1.696835,8.0588,3.71253,4.03871,1.466715,4.154175,3.06532,1.0396675,2.10524,4.15748,2.30858,4.144045,4.997215000000001,4.2248925,4.575565,2.2960575,5.35075,4.061475,3.5810333333333335,2.4609133333333335,1.495042,3.934585,6.0874,4.115735,4.495565,3.12614,2.245055,3.975945,3.389715,1.1906456043956044,4.203295,4.75983,3.771145,2.823545,3.58351,0.5776342857142858,0.5776342857142858,4.48335,4.077705,3.92013,2.2636,3.655555,6.12075,0.8284670000000001,3.63863,4.69085,4.514405,4.805695,4.929135,1.8374975,3.082055,2.113675,4.46503,0.68956875,4.066565,4.10048,2.48973,2.901816666666667,4.220515,2.285515,3.246985,60.26061904545455,3.071555,2.63752,1.6070025,3.23728,3.993495,0.84764,0.974385,2.2093275,2.2093275,1.314136,3.215,2.22785,3.7962545,7.41953,3.0023866666666668,1.2721257142857143,1.3556716666666666,2.76744,4.0637775000000005,0.933133,1.94238,1.2009919999999998,1.9543825,4.24246,4.055055,3.163755,20.607108902597403,3.347625,3.868155,3.282895,2.182793333333333,2.935125,3.368545,2.4870875,5.39605,1.4245139999999998,4.00515,3.3201701706349205,5.882037916666667,1.967535,2.65625,1.87524,3.99119,2.342843333333333,2.186445,2.11781,3.715305555555555,3.46854,3.34409,3.84131,4.26034,2.527825,2.603125,3.045795,2.91799,3.008075555555555,2.215945,2.1177425,3.44826,1.1655849999999999,3.7497,4.48416,2.510335,4.77336,4.89547,5.425283333333333,1.97147,2.406565,2.65042,2.804865,3.90528,3.346615,4.668755,0.7057857142857143,3.893837333333334,3.04218,3.845355,2.3812425,1.8129639999999998,4.03565,1.1725444444444444,2.876245,4.363635,1.137994,3.67487,3.583525,4.750475,6.3536725,2.039095,2.90557,2.673716666666667,3.879566666666667,2.8657266666666668,2.63872,2.9694866666666666,2.42723,2.471836666666667,1.3773233333333332,2.059655,2.059655,1.9402866666666665,2.15502,1.7896066666666668,2.5736733333333333,3.88113,5.60405,4.620515,1.632565,4.35376,4.225765,3.609355,4.184425,1.9022775,1.94333,4.6538691666666665,1.85098,4.249888333333333,3.91154,3.54622,2.4092533333333335,3.69909,3.20094,3.06421,3.551735,0.14681489795918368,2.4134733333333336,7.6597,1.512384,3.423275,3.083705,0.9987014285714286,1.0718216666666667,1.8971,3.818235,2.85716,7.0499849999999995,3.777045,3.76033,3.003575,2.76788,3.357715,3.441555,3.93639,3.464385,2.8605066666666663,5.4628,4.08991,4.257665,2.5492,1.875125,3.430985,4.33652,2.66966,2.7932,2.114625,2.48814,4.26303,3.889055,2.682715,4.69425,5.2768,2.650545,3.940745,3.85659,3.646435,4.387855,3.422855,3.354955,4.99912,4.661515,4.9972,5.2097,4.39051,5.1725825,4.23109,4.14529,1.282334,6.4733,2.450835,4.123785,4.119715,3.91389,3.2514866666666666,1.9959066666666667,2.2191199999999998,2.41751,0.9860070000000001,3.457966666666667,3.9029000000000003,3.1412633333333333,1.95777,3.68813,4.236835,2.687193333333333,0.5444891666666667,4.43038,4.608665,5.1027,4.66907,3.631905,4.63945,4.942185,5.10135,1.3783777777777777,0.9473384615384616,2.9666033333333335,5.3029,5.9264,0.49231625,2.82454,2.5013,3.29351,4.534365,3.8446,2.095005,5.2948,3.933475,4.407385,3.07139,6.56805,5.2377,6.8683125,0.57756,4.220915,0.81586,2.37363,4.113833333333333,3.142416666666667,1.1445966666666667,2.35108,4.237335,3.49512,4.298095,1.9887,2.1049175,3.6077,4.31194,4.23067,3.756615,1.6876460000000002,1.1613964285714284,6.1412,2.2201225,7.752275,4.300005,3.51087,2.2504325,1.6041675,4.067,4.734625,1.7494633333333331,2.40981,2.57145,2.4134733333333336,6.590325833333333,3.0577666666666667,2.7763066666666667,4.0936175,3.91685,1.9622566666666668,3.08954,7.0390775,4.563415,5.0507,0.5232181818181818,3.43224,3.9963,4.848155,3.82172,4.43052,2.987935,2.681975,3.240165,2.74309,3.5373583333333336,2.07056,5.39326,4.807095,5.0858,3.91409,3.42774,3.298426666666667,2.33094,1.2746025,0.9189025,2.79137,2.5269,1.10211,2.65848,5.11295,4.954065,3.79286,4.133725,16.957338095238093,4.01447,4.492305,4.05692,0.6963341666666666,4.98513,4.56975,4.103945,4.86995,5.21355,2.368695,3.616,3.312205,1.450304,3.252935,4.84559,3.1754466666666663,1.5002499999999999,3.71077,5.146,3.944315,4.823175,4.80781,5.3091,3.951315,2.7879,4.236825,4.21503,2.747445,3.05411,3.0262933333333333,1.6101333333333334,4.90024,2.7207857142857144,2.0362066666666667,3.975445,2.14402,4.33211,4.113803333333333,2.34814,2.640975,4.54802,3.73932,4.576575,4.448705,5.1237,4.86616,3.15724,5.4662,2.852426666666667,3.44069,4.510445,1.553164,4.518955,1.0417833333333333,4.462395,3.093525,0.9540414285714285,3.705915,2.02726,6.47825,2.4453680476190476,2.4453680476190476,2.4453680476190476,0.683015,1.1966683333333334,1.87151,3.43912,5.93155,3.348238888888889,1.94238,2.12644,1.74624,3.821455,2.352975,0.41622384615384617,1.682595,2.085795,2.80165,1.90376,2.468365,2.42574,2.076815,3.86516,2.9998299999999998,2.81688,2.944765,2.074735,6.57585,2.03735,4.4047,3.8631,6.365221666666667,1.7312333333333332,3.59097,3.94801,3.58252,3.877545,2.810885,1.985535,3.887175,5.7668585,1.93217,3.68856,3.173905,2.0260325,4.716715,4.377725,2.47313,2.150435,3.600015,5.7546992857142865,6.14695,3.145405,2.506345,2.75175,3.004235,2.65315,4.09512,1.40546,2.77464,4.65488,0.9303325,3.631275,3.961925,3.889415,3.0259,2.48262,3.199625,1.996505,4.48105,8.043905,4.541505,3.438115,3.145205,1.008595,4.48786,2.35969,4.31891,5.592395,4.05754,4.49064,10.652989999999999,4.88636,4.06286,1.491035,0.6817433333333334,2.90403,3.79553,3.298995,3.60283,2.148213333333333,2.3915333333333333,2.12909,1.1884333333333335,1.1884333333333335,1.90227,2.4892866666666666,1.9836266666666666,2.246026666666667,3.4344333333333332,2.554603333333333,2.26399,2.8398299999999996,1.3689366666666667,2.285293333333333,2.0532166666666667,1.9026833333333333,1.58114,2.6131699999999998,0.7268849999999999,9.768191666666667,0.7268849999999999,3.1436433333333333,2.0172233333333334,1.6980266666666666,4.37547,4.275825,3.683075,4.34846,2.1734966666666664,2.9339666666666666,3.262480666666667,2.0473166666666667,3.1989133333333335,2.9024733333333335,2.6560566666666667,2.9441166666666665,1.74352,5.4714,6.352819714285714,3.3656,3.3323666666666667,3.3270366666666664,2.6218533333333336,2.6129000000000002,1.1437000000000002,3.6036333333333332,3.6072333333333333,3.95901,6.10635,4.212335,2.83797,3.5408000000000004,2.9650866666666666,4.171906666666667,4.14007,2.61193,3.586885,3.2384866666666667,3.0208833333333334,4.80524,3.162186666666667,3.7453,5.9969149999999996,1.8437766666666666,2.408916666666667,1.4816066666666667,1.4340866666666667,4.846523333333333,3.296343333333333,2.408576666666667,2.0708766666666665,2.1537466666666667,4.41619,3.628415,2.91275,3.3782666666666668,3.202196666666667,3.4632666666666663,3.421,3.5103666666666666,3.1028066666666665,0.56678,3.6904333333333335,2.541116666666667,2.7139433333333334,3.36663,4.05568,3.965505,5.16275,2.651485,3.792988333333333,1.1255333333333333,2.9195366666666662,2.9195366666666662,4.066165,2.857455,3.73073,3.9332,1.762435,3.382215,3.78361,1.1156885714285714,3.7088866666666664,3.0675640476190478,2.258208333333333,0.389335,4.471355,2.917035,6.49211,2.885805,6.3889,3.36449,3.795715,3.73204,1.6162562500000002,3.098615,4.135265,3.02183,3.4683666666666664,2.997263333333333,5.3897224999999995,2.1298225,0.99111625,1.8467166666666666,1.7227033333333335,5.43315,2.336203333333333,2.4121200000000003,1.7384725,4.313645,3.886625,3.82364,0.566557,4.10746,3.92819,2.46826,2.536486666666667,2.7525033333333333,3.1707344444444443,3.9621433333333336,1.54334,0.6466894736842106,0.7590642857142856,3.4177666666666666,3.86289,5.943933333333334,4.57301,4.11005,5.4805,1.2918914285714287,4.165866666666667,2.201303333333333,0.96925,5.0948,6.1155,2.609795,4.815005,4.04582,6.705316666666667,3.6720333333333333,6.630491666666666,3.83574,2.452167222222222,5.95195,10.185511006410257,2.5162400000000003,0.633645,3.02746,4.150945,2.10643,6.09845,3.847745,3.6604,2.6632000000000002,2.6632000000000002,5.9602,3.34127,4.007535,5.0439,3.7618103809523813,2.3586074285714287,1.10996125,4.92221,2.649765,5.3022025,3.58064,4.183125,2.839785,2.1284775,4.53318,5.1769,3.6029666666666667,4.071395,4.284115,27.589003214285714,1.933265,2.62305,2.3508325,1.7171166666666666,2.5001266666666666,1.0293357142857142,2.8095866666666667,3.1070166666666665,3.5401666666666665,3.02197,0.6056553846153846,3.0582333333333334,3.682545,2.82186,3.1983200000000003,3.5763,5.815815,4.693225,4.096755,3.64164,3.88138,4.05615,3.5,1.7059725,0.9700583333333334,1.4090366666666665,2.282646666666667,1.5639866666666666,2.79518,2.4537,2.3248,2.121846666666667,2.67711,2.06048,1.81196,3.04856,4.285085,3.62512,3.90675,1.32094,3.410933333333333,2.4795166666666666,3.5931,2.1371166666666666,2.627,2.461855,1.4672866666666666,4.393155,6.520058333333333,2.741865,3.594685,3.982085,2.6309,3.3164708333333333,3.5596,3.94709,4.712045,0.31167385456885455,0.31167385456885455,4.995735,5.17085,3.267945,2.88139,5.4563,4.266785,0.6398007692307692,4.95236,4.3479,3.78546,6.56365,4.776065,7.87855,14.235826666666666,12.918385897435899,4.37346,4.309125,2.47948,0.6198592307692308,2.6333766666666665,4.43867,1.3818000000000001,4.77553,3.5196,2.8231800000000002,2.1483333333333334,2.1465666666666667,4.888985,5.25065,8.878322976190477,5.0675,4.011425,7.54294071969697,3.324115,3.3692333333333333,1.4952075,5.531956666666667,1.94949,2.41574,2.735473333333333,0.2551290625,2.8903,3.760135,4.757461666666667,0.772222,1.1815066666666667,3.868535,0.546609,0.546609,2.6463441666666667,3.308396666666667,3.267136666666667,3.767495,4.2387,5.572,3.868595,4.18255,2.814595,3.1181966666666665,2.64386,0.8990166666666667,2.6891200000000004,2.919105,3.09511,7.203474999999999,2.729225,9.633475,3.148875,6.23735,3.04404,2.24956,2.5129,2.774375,1.7636175,2.25521,1.8056675,3.37802,2.38059,4.124555000000001,2.92547,4.061580833333333,4.061580833333333,2.862781666666667,2.862781666666667,8.680035333333333,2.5042266666666664,0.794784,2.5859533333333333,2.4402133333333333,2.519413333333333,4.124555000000001,1.9169820000000002,1.8346019999999998,1.526176,3.78509,3.765555,1.6531925,4.517085,4.09549,5.824265,6.5617350000000005,2.26076,4.11688,6.11482,4.02182,3.1435,2.1876933333333333,3.260455,3.385192121212121,4.075495,5.1752641666666666,7.421472666666666,3.4729687499999997,2.95037,1.143875,4.465265,4.046128666666666,3.65316,3.803306666666667,4.387225,2.73473,2.50286,6.562049999999999,2.987365,1.440396,5.54127,3.82336,2.5218966666666667,5.34905,2.5218966666666667,2.80665,3.71591,5.04175,1.0320157142857143,4.085773333333334,4.509785,3.60534,1.3046,1.706235,3.82362,3.965895,2.494235,6.47233,4.147275,3.884125,4.138565,4.52186,1.3933325,3.831435,2.53642,3.6607,4.051705,3.648235,4.778125,3.108865,3.731195,4.98471,1.849609,1.829975,3.2783533333333335,3.7783333333333338,3.5145666666666666,2.9254700000000002,3.4827999999999997,3.1363266666666667,5.5241,3.32297,3.662555,2.857845,1.9697166666666668,3.5757,2.0424166666666665,3.033395,3.09926,2.981125,0.68956875,2.16348,1.7795366666666668,3.26476,1.819362,3.5752599999999997,4.50596,1.179246,3.1264025,4.583725,0.7451920000000001,1.34831,3.169935,3.93631,3.53399,1.95294,1.7614333333333334,3.37785,2.506708333333333,1.6896333333333333,2.797595,1.88875,1.178258,1.3562825,6.34271,3.258945,2.174515,2.46,2.4369825,3.69318,0.83657,0.34690714285714286,0.78613,4.83975,1.7841291428571429,4.980215,2.181245,1.7499097142857143,2.9404582857142856,1.1905485714285713,0.9867937142857144,0.650298,0.5745685714285714,2.578505,6.3908,3.143205,3.75716,0.353675,3.57995,17.635556238095237,3.067755,6.986501232517482,1.0845025,1.0845025,1.0845025,1.0845025,5.813410833333333,4.101065,4.84067,2.152276666666667,3.10758,4.11036,5.6016,3.630655,3.441265,4.32811,3.975935,3.92634,3.7767453333333334,4.32794,5.06455,4.16612,4.47769,3.461345,4.186815,2.6398433333333333,3.495545,3.30914,3.694555,3.74368,4.289985,3.1976433333333336,2.4405975,2.4704433333333333,4.124305,1.2384514285714285,3.782315,2.54826,3.4689506666666663,4.2248925,4.462855,3.09587,2.733555,4.237875,2.917215,3.19385,5.34085,4.902275,3.148885,3.619365,1.7649519999999999,1.7649519999999999,1.9723125,4.74245,3.88801,5.229407,5.274,3.649995,6.56875,4.77113,2.22422,9.446655,5.30105,6.4588825,4.593315,2.8503399999999997,2.79648,0.25527758620689656,0.92852875,4.21945,3.528095,4.620375,2.889813333333333,5.957258333333334,4.892585,0.5724864285714286,2.850745,0.48352700000000004,1.7292766666666668,3.308255,1.88329,3.61637,3.724,3.36171,3.411095,3.503305,3.693005,3.46688,3.597765,3.547925,2.16359,1.7292766666666668,2.80864,2.1030575,3.75749,2.291695,4.226395,3.482675,1.696835,4.382415,2.948435,1.2802550000000001,4.61796,4.6153,4.244035,2.7482866666666665,2.934483333333333,4.226655,1.9460966666666666,1.4084160000000001,2.3280533333333335,2.51004,2.5829633333333333,2.1893166666666666,4.790525,3.2255,5.0208458333333335,3.9209185714285715,4.805625,4.00496,1.6899539999999997,5.20535,4.5795,5.3212,4.291945,6.768995,1.732565,4.80406,3.400645,3.229345,1.794735,1.7842033333333334,3.93319,4.42578,2.7001566666666665,2.762265833333333,3.27779,3.27779,2.6180566666666665,3.1216500000000003,3.32885,3.9092,3.632895,0.7111423076923077,3.179575,4.42829,5.203678888888889,3.08548,2.97609,1.7793875,2.787195,3.408125,2.09786,4.575695,3.01611,5.00025,1.8539366666666668,1.0318727272727273,6.36646,3.59274,3.3927,3.1060866666666667,1.82167,30.679444642857142,3.988785,3.38825,6.00375,4.58965,0.8712333333333334,7.174650000000001,1.87975,5.67,1.4390133333333335,4.250655,5.192101666666667,3.65924,3.241,2.16681,3.595333333333333,4.88759,2.0109475,2.7937366666666663,3.723425,2.579675,2.528125,5.9543,2.221495,6.36625,1.0771525,4.242415,3.54223,3.82711,5.0571,2.91723,2.23623,4.06031,4.495915,3.62669,3.62669,5.53125,2.24139,4.242435,6.38288,3.467375,4.019565,3.11091,5.42595,3.49158,4.089195,1.3143275,2.13115,4.2707,4.331725,5.6036,4.265715,2.597365,9.532680000000001,3.167445,3.7906,1.7021857142857144,3.52042,2.2458933333333335,2.65941,1.98217375,1.3149433333333334,2.5504533333333335,0.9522957142857144,1.0610357142857143,1.0610357142857143,1.0610357142857143,1.8674033333333335,0.57133375,3.88386,1.2938699999999999,2.64235,0.8659500000000001,1.85522,2.6631266666666664,2.0242466666666665,0.7529125,1.66156,1.4516833333333334,2.3582033333333334,1.61463,1.61463,1.6346866666666668,1.79511,0.887392,1.8364866666666666,1.7015233333333333,1.1657533333333332,2.429565,2.09978,5.919,1.937595,5.83315,17.068239916666666,6.5132449999999995,3.446925,3.6886533333333333,3.4678,2.763576666666667,2.6227066666666667,2.96994,0.7167091666666666,0.982123,0.982123,0.68525625,2.3838500000000002,3.811735,3.26486,1.550108,5.0304,3.853745,2.442155,3.979135,5.21035,3.980695,4.248045,3.5396,3.16853,3.449265,5.7007,3.12281,4.862905,0.525946,0.525946,2.24384,2.59018,4.697175,3.45906,3.84161,4.853775,7.56175,7.48672,3.65909,2.51725,4.569295,3.48609,2.5752166666666665,2.3706,3.81675,1.3281133333333333,4.010675,2.433095,1.6705525,3.5683333333333334,3.82254,2.04225,5.1752641666666666,1.6281375,3.571733333333333,3.174625,1.0557228571428572,3.6329333333333333,2.76389,4.310435,1.1542316666666668,1.7661675,2.292855,2.14171,1.6696,2.4438825,1.8810575,1.9664125,4.188775,4.401825,2.47962,1.839615,1.5133933333333334,3.5136000000000003,2.06694,2.72685,4.67489,7.3487,2.5067416666666666,2.927345,3.471865,3.575365,2.36718,5.0052,4.076115,3.198585,1.341575,4.54031,2.29047,3.3403666666666667,2.513135,3.59172,5.0024,5.5645,2.40854,2.7414633333333334,2.760543333333333,3.5151,2.03785,1.475662,5.42675,3.4967333333333332,2.2901730909090907,3.18789,2.96344,2.39085,3.3714333333333335,3.110863333333333,3.4519,5.3014,4.389565,2.9749733333333332,4.920675,3.246615,2.375055,3.501985,3.818805,4.34918,6.294344000000001,1.84489,3.92338,2.478745,3.17772,3.582875,0.56539875,2.290425,2.198545,3.383,2.691645,2.21134,2.77755,0.6248630000000001,2.7609,4.387775,2.542225,4.356265,2.4593633333333336,4.04333,2.038605,4.57789,4.42511,2.09408,2.792335,7.0560575,3.974585,4.404015,4.94785,6.959596704545454,4.365185,4.29776,2.1615225,4.49667,2.79216,1.8679533333333334,1.9155775,1.9665800000000002,1.0015442857142858,2.5787566666666666,2.34918,2.6082266666666665,3.368066666666667,1.7760179999999999,3.238125,1.9125466666666666,4.159695,4.831335,1.02409375,1.8306666666666667,2.50259,2.81561,1.94378,1.0923800000000001,5.48122,2.171045,2.642583333333333,2.55448,2.412923333333333,2.6689566666666664,3.129025,2.24368,2.5817566666666667,2.130996666666667,3.93147,3.43537,3.900925,3.2270033333333337,3.0556966666666665,0.686557,1.9124166666666669,2.15324,2.0197033333333336,2.56514,1.1360266666666667,2.70994,2.962203333333333,3.92897,2.048826666666667,3.389155,3.0827,4.965735,3.207815,0.5968591666666666,2.1558599999999997,2.86826,3.325036666666667,0.8068227272727273,2.7889866666666667,3.393116,3.2028266666666667,2.9418933333333332,3.3173899999999996,3.74659,3.7703666666666664,3.1376866666666667,2.070465,5.6031,5.08955,5.02335,5.6432,5.62525,1.7678533333333333,3.23499,3.7373333333333334,3.3798333333333335,2.885923333333333,2.76268,3.99,3.7124,2.9063033333333332,13.987383333333334,4.417075,1.19899,2.80911,1.559216,3.1576566666666666,3.20705,2.3165400000000003,5.632455,6.6645311666666665,2.34056,0.8586389999999999,4.190965,3.4878666666666667,3.004135,4.659965,5.42025,5.6835,4.85167,3.52043,1.93204,6.427725,1.143875,6.576467500000001,4.846835,2.5374966666666667,3.858395,7.319086666666667,5.9328,2.12497,1.46835,2.1129175,7.126338333333334,1.5249,2.96097,2.6001866666666666,4.149704444444445,5.7719,4.36344,6.4491,3.573075,5.265,3.79513,9.36156,4.934535,5.888,2.4827,2.578425,11.236965,3.426025,2.371675,2.47367,1.65167,2.1918833333333336,3.6648333333333336,0.68335125,1.164556,1.0874285714285714,3.26182,6.972743333333333,3.0223793333333333,1.36967,4.62902,3.99557,0.5757749999999999,4.5373,4.276395,4.89484,3.365945,3.358465,2.7368666666666663,4.15739,9.99175,1.875665,4.058475,4.03709,4.608915,3.632135,0.8729666666666667,3.603066666666667,4.113866666666667,1.7196833333333332,2.4266866666666664,2.3642266666666667,2.5456133333333333,2.2655166666666666,2.1609633333333336,2.198515,5.8118807142857145,5.3189,3.52785,4.981198333333333,1.7480833333333334,2.3912075,4.842275,4.446845,4.577345,4.288325,4.63901,4.69423,1.7649519999999999,3.621535,7.787800000000001,1.1715583333333333,1.8129833333333334,2.5000033333333334,2.4928233333333334,2.85346,4.7396598333333335,0.7590642857142856,2.43553,3.431005,6.3913,4.59848,2.2223866666666665,2.9157433333333334,2.0349775,0.560695,2.5537,2.85596,7.766484999999999,4.30766,4.385265,0.905883,4.745066666666667,9.24473475,10.820635000000001,3.34592,1.19828125,3.64093,3.58431,2.53669,5.330132,4.876185,3.95401,2.0018975,3.8308666666666666,2.170036666666667,2.6059366666666666,0.7693172727272728,0.3996,2.37819,3.43206,2.1152961666666665,3.37017,3.048386666666667,3.789905,5.34955,1.50552,3.0327366666666666,2.32688,2.32688,2.203885,3.39762,6.737,2.6422033333333332,2.3607299999999998,3.3783666666666665,3.4553,4.31218,4.48692,4.36407,4.12056,4.08676,4.20425,7.0702,7.99214,2.05539,2.19198,3.0549033333333333,0.8901116666666667,0.6863608333333334,4.327735,2.315365,5.4058,2.923643333333333,3.0993166666666667,1.837012,1.4636725,4.037235,4.34288,4.366245,2.1114166666666665,1.3121166666666666,2.659656666666667,2.04432,2.607083333333333,1.115592857142857,1.115592857142857,2.7079,5.2825,2.98162,2.949525,3.388275,2.07668,19.996374545454547,3.82663,5.176355,4.53119,4.13831,3.91102,3.68698,5.67155,6.278874999999999,0.8656133333333332,0.8656133333333332,0.8656133333333332,2.6840733333333335,1.7433571428571428,3.4669666666666665,4.05959,3.758015,3.305345,4.03686,4.587715,0.80049,2.10896,2.16605,5.741270999999999,3.179671,3.9635059999999998,5.0387,1.752305,1.9837566666666666,2.2988500000000003,0.524785,0.870552,1.8428,2.037915,2.78646,13.058116666666667,2.6204266666666665,5.4416,0.7842785714285715,9.59527,5.67495,3.60611,4.15591,2.7178,5.4429,2.7178,2.811084,3.33207,3.884205,3.527755,4.2057,4.37982,3.47709,5.8878,6.7272739999999995,1.8427066666666667,2.3354039999999996,2.6967,26.732581425997427,1.4867279999999998,6.42095,3.822132,3.874065,4.399105,4.255385,2.747255,2.861285,2.54084,6.7521,7.162,4.733075,4.68313,4.271285,1.90346,2.21795,4.30242,0.3321030769230769,0.3321030769230769,0.3321030769230769,0.3321030769230769,4.05474,3.2381816666666667,0.9531366666666666,1.8888833333333332,1.1629444444444443,4.34645,2.47004,2.3597575,7.188931666666667,3.1905566666666663,0.1798655172413793,20.631401,4.770266666666667,1.7523360000000001,1.347845714285714,2.16668,1.99637,2.29944,4.699525,3.81416,3.45486,4.336975,2.0434933333333336,7.351929999999999,2.75526,1.953745,4.268745,5.84875,8.773060000000001,4.22575,0.3006463414634146,3.53012,3.94495,2.771796666666667,2.0268175,2.98071,1.6121866666666669,1.6121866666666669,3.99439,5.9383925,11.309236666666667,9.093924999999999,0.5796166666666667,2.42578,3.88697,3.20431,5.55885,3.430195,1.327456,1.327456,3.435205,3.82141,2.9135066666666667,3.61085,4.373,5.39625,6.850445000000001,2.28262,4.71909,4.147305,2.581815,3.072786666666667,3.0113066666666666,4.76094,4.323835,5.42945,4.21718,4.55349,3.888685,4.33026,4.247015,5.4432,2.567016666666667,3.155193333333333,1.10246,4.55909,4.16329,3.71585,1.682534,1.8924,3.5637000000000003,2.7440766666666665,2.1540166666666667,4.2256800000000005,1.7159666666666666,1.9600225,2.53727,1.92943,2.2527266666666668,1.9163866666666667,4.074066666666667,3.200153333333333,4.267233333333333,3.292885833333333,1.91763,2.6255433333333333,1.9982833333333332,4.028415,2.0509733333333333,37.84857516666666,2.1577640000000002,2.1577640000000002,2.52379,2.2992333333333335,2.18861,1.70791,2.9830366666666666,1.8186933333333333,0.8166230769230769,5.04205,6.958435,4.15871,3.839175,5.5434,1.90175,4.419805,1.8074059999999998,4.98743,4.856805,5.6977,4.05597,1.7059725,3.953865,3.858985,4.493225,4.45326,5.26015,3.912695,2.707335,3.635666666666667,2.65188,2.0006025,1.85138,4.478965,2.564826666666667,3.808275,3.808275,2.2809666666666666,1.5344499999999999,2.13379,2.5180533333333335,2.2845999999999997,5.00871,2.7094066666666667,1.138275,1.138275,2.2425366666666666,1.9617266666666666,2.5252466666666664,2.6409733333333336,2.580013333333333,2.3716566666666665,2.213443333333333,2.1833165,3.0067265,1.6455525,0.82341,61.81251273611111,2.56625,3.3503666666666665,2.465528,0.9515739999999999,3.843424,1.5939640000000002,1.5939640000000002,3.1537100000000002,2.9581700000000004,0.8221425,2.9795433333333334,5.60668,3.3224633333333333,2.3441966666666665,2.8176,2.1239066666666666,2.6279719999999998,0.29948875,3.4128000000000003,0.797542,2.564503333333333,1.333086,1.333086,3.288866666666667,1.448814,2.7449399999999997,1.6222493333333332,3.4438666666666666,1.6222493333333332,2.1280533333333334,2.52655,3.26026,1.3288980000000001,1.3288980000000001,2.9174433333333334,1.4286866666666667,3.228823333333333,2.207003333333333,4.411825,3.89004,12.208505083333334,6.9514,3.45547,2.516915,3.85867,5.4503,5.58865,2.70182,3.88606,3.673295,2.3504666666666667,4.147115,3.4061,2.8059066666666665,4.867295,2.142916666666667,1.0600985714285713,3.7594075,2.94485,2.90997,0.7895157142857142,2.698685,3.50727,4.129005,4.34127,6.5917,2.1344433333333335,1.857378,4.40486,4.33893,2.367485,2.3922983333333336,1.9308733333333334,2.2016293333333334,0.959456,4.996835,4.40674,3.692495,3.774425,3.0064266666666666,5.2127,5.0969,2.7990566666666665,1.71839,0.5256846666666667,14.792055333333334,0.5302045454545454,0.5302045454545454,0.5302045454545454,3.09383,4.022166666666666,0.5302045454545454,6.8921399999999995,4.38835,0.708943,0.708943,3.4339666666666666,3.333805,2.953485,4.36485,5.1025,4.2353525,2.2747450000000002,4.7892980000000005,3.223005,3.5322606547619047,4.68067,2.8808517499999997,2.458035,2.4448125,2.802425,1.5396,3.3253975000000002,2.986333333333333,2.3266575,2.06757,2.03187,1.7920166666666668,1.6039675,2.72715,1.0718055555555557,2.517925,0.6070321428571429,5.41655,1.65667,0.6539091666666667,2.0831525,7.807668333333333,2.600605,2.0507015,3.246115,7.2952,2.41769,4.29383,3.070465,5.95557,3.237515,3.839645,4.04089,4.45047,3.0235866666666666,4.388999999999999,1.1522042857142856,4.267175,2.4252366666666667,2.52529,2.53911,2.32026,2.21016,1.2726875,5.7704,0.9465545454545455,4.944915,5.57995,5.02215,5.3635,3.551966666666667,2.4080833333333334,2.0045200000000003,3.0063099999999996,2.9965566666666668,2.539815,3.9144666666666663,2.751775,5.05165,1.855756,40.4790726984127,4.941605,2.4191933333333333,2.3852366666666667,2.9089833333333335,1.6794833333333334,5.965666666666667,3.859625,2.39029,3.347766666666667,2.3702466666666666,1.6297175,5.12165,0.7876071428571428,4.4947735714285715,1.3026700000000002,3.30421,3.2464766666666667,2.8268733333333333,1.4292125,4.496026,1.705386,1.705386,2.3885633333333334,2.8131316666666666,3.3830666666666667,3.3821,1.4358166666666667,2.8989333333333334,2.72315,6.3760683333333334,2.836203333333333,4.062601666666667,1.4933766666666666,1.39229,3.025673333333333,0.9189,5.205164999999999,3.4398999999999997,2.9001333333333332,3.5102666666666664,2.8700200000000002,2.7477466666666666,3.30846,1.7637466666666668,2.4369825,2.5528766666666667,3.4849,2.4957266666666666,3.7584666666666666,2.0945766666666668,0.6328606666666666,10.0027025,2.7708033333333333,5.32485,5.1245,2.7848100000000002,3.0596099999999997,1.39207,2.24585,2.10727,1.39207,4.148905,0.447848125,0.447848125,1.413895,1.413895,0.86963,0.86963,2.49878,3.21761,2.433325,1.642875,1.69587,3.77102,2.873785,4.738045,5.48055,1.891046,4.44179,2.405355,4.634868974358975,1.70208,1.70208,1.90043,1.7456140000000002,3.7110416666666666,2.01283,4.50284,1.64511,2.708025,0.5411884615384616,1.1842742857142858,2.1014375,2.2580975,1.94297,1.358475,4.3382,4.478395,2.14539,2.48657,1.35571,0.7211841666666667,2.4689799999999997,3.40228,2.9735033333333334,4.751575,5.11845,4.956295,3.755925,6.613804999999999,1.5223266666666666,6.257095,1.83086,4.643715,4.659035,5.712921,3.2758066666666665,2.38088,1.746905,1.967594,1.967594,2.4624175,2.4624175,4.34695,5.84215,0.8868600000000001,3.946055,3.45718,3.378675,2.6120933333333336,1.39144,2.80301,4.24309,4.232975,1.770024,6.57895,4.84661,1.7074433333333332,1.292025,4.024685,4.18139,3.49775,3.53296,4.037995,0.6769735714285714,3.9328000000000003,3.4687,2.7377599999999997,2.9259866666666667,2.235183333333333,3.784966666666667,1.5536428571428573,1.5536428571428573,1.5536428571428573,2.8834400000000002,3.082936666666667,3.3574,3.3435551904761907,2.3120775,1.2254085714285714,3.22976,3.19732,1.3710771428571429,2.739216666666667,2.7394,1.2713857142857141,2.58543,2.917173333333333,2.912126666666667,2.79879,2.507816666666667,1.9255225,3.168176666666667,4.680518,4.333175,0.961127,1.484902,0.5986130000000001,3.5793,9.038715,2.9706466666666667,3.36827,3.0749766666666667,4.297128333333333,1.892565,7.702926666666667,6.703953333333333,2.6893333333333334,2.210202285714286,3.9871,4.674945,1.587306,1.20223,1.401216,1.96162,10.809819999999998,2.755103333333333,3.094003333333333,2.853016666666667,3.727335,2.12649,1.14094,6.05875,1.1761633333333334,3.141242692307692,4.88996,3.063405,3.3653333333333335,3.08119,4.73891,1.1444483333333333,2.20338,1.962674,1.962674,3.921225,5.7894,9.5057675,4.3282,3.424875,4.765865,1.7483775,2.3380658333333333,4.5437,3.64558,3.8331,1.5656916666666667,2.93572,3.529865,3.78388,2.4678425,3.86422,3.73851,3.726435,4.053665,3.99784,3.91037,5.59725,3.312136666666667,2.5152733333333335,4.39079,2.99131,3.793795,2.01947,2.49319,2.577995,5.62225,2.514705,3.243919147727273,1.67963,2.431065,3.22894,2.17676,2.0777425,0.8927683333333333,0.8927683333333333,1.75516,3.743409090909091,4.1203,2.94563,4.37111,3.1460275,2.5139662857142855,0.97756875,3.26228,1.48056,4.30197,4.071335,0.9016004166666667,1.9043375,3.975625,3.00152,1.596995,1.6053199999999999,5.131164285714286,0.9155533333333333,2.71587,3.170825,2.72694,2.44471,2.7494050000000003,2.066105,0.9910075,2.90138,3.02471,3.356575,1.5733333333333333,1.4946233333333332,1.81424,4.411615,2.23486,4.48146,4.61529,4.715435,6.2498,4.963755,4.02638,6.117395,3.9273442857142857,0.8064936363636364,3.109805,4.24281,3.722675,0.5041954545454546,0.9171860000000001,2.9512,3.848965,4.797665,4.178915,3.2036035714285713,2.90534,4.54158,1.762792,2.604975,4.4595,4.2787575,3.333635,2.962675,3.59484,4.522685,2.915235,5.2728375,0.9094,3.142135,2.938665,4.28181,4.45049,4.6256,2.2995200000000002,2.47929,3.011975,1.8979566666666667,4.970885,3.50466,1.3788171428571427,2.80052,4.0163675,1.421984,6.00479,1.878088,2.596436666666667,13.652214360098965,2.8373866666666667,1.4721566666666668,1.6293383333333333,2.0889666666666664,5.553979999999999,1.6876460000000002,5.855562333333333,0.6320538461538461,3.3215833333333333,3.732755,7.6378775,2.42053,2.909523333333333,2.909523333333333,4.63168,4.316205,3.51016,3.265715,4.865515,5.265,2.382085,3.201693333333333,4.53553,1.2422633333333333,2.448846666666667,4.593635,3.864505,2.88797,2.2257633333333335,3.776605,3.444215,6.111248333333334,6.41193,0.685137,4.166175,3.25077,3.8830333333333336,4.17175,3.939415,3.79262,1.4563739999999998,5.1771,2.37921,2.74415,4.20259,4.27409,4.539385,0.8807199285714286,2.657696666666667,9.016755666666667,1.5163516666666668,2.1754293506493507,2.343115,3.776495,3.552245,3.25029,0.6319372727272727,2.4040925,1.68625,2.2438075,4.34834,5.546843333333333,2.8571400000000002,9.067035,2.462616666666667,2.6761666666666666,1.08048,4.57571,5.0775,2.10729,5.552396666666667,2.707185,3.136415,5.4019,4.43689,4.840755,2.14408,1.566895,1.566895,2.77786,3.27931,4.735538333333333,1.475535,5.784791666666667,1.5573666666666668,3.667835,1.3080616666666667,8.708749,4.76143,2.744435,3.9854,3.71873,3.988905,1.112325,1.9936025,3.516766666666667,3.0713833333333334,3.3794,3.6884333333333337,3.655635,2.797135,3.185745,3.23944,1.47739,2.5518433333333332,1.9588666666666665,2.928796666666667,1.84523,5.264780833333333,3.2515300000000003,1.7556766666666668,2.818756666666667,3.317725,3.04343,6.37685,5.9233,2.95992,3.599425,2.9721,3.11691,2.87964,1.2570133333333333,1.018446,6.448485,2.980065,5.92735,4.4906,6.41925,2.85578,2.8577999999999997,6.6189,2.538,0.4198983333333333,5.73745,3.15616,3.76605,3.3682666666666665,1.4752857142857143,4.116035,1.057936,4.628775,0.90898875,1.3918133333333333,2.9893666666666667,2.4141933333333334,3.0064385714285717,3.5789,4.69184,6.0377616666666665,6.0377616666666665,4.8837425,4.8837425,4.759145,3.11998,4.50168,0.94540125,6.11805,3.375425,3.741733333333333,3.775745,3.793815,5.5962,1.9787325,5.08935,3.180844,2.849125,4.093605,2.635335,4.854325,5.2999,3.609175,3.44158,5.25795,3.92345,6.218,2.941415,2.5624166666666666,5.9479,4.168505,2.8376633333333334,6.1535416666666665,1.5353633333333334,2.1095225,4.85555,4.420655,5.06015,3.878055,1.997429,1.997429,13.176957404761906,12.5302,5.1094,3.248435,2.9959935897435894,4.504755,4.648785,2.6233866666666668,3.3151466666666667,3.10733,4.2819666666666665,3.6408666666666663,5.1143,2.036715,8.368756666666668,2.366885,1.94298,5.9943,2.40231,5.0741,4.44903,4.84068,0.7536333333333334,3.238025,3.49699,0.90242,2.996255,4.3025166666666665,1.4311719999999999,1.9423700000000002,2.8551,2.66745,2.2322433333333334,3.129443333333333,2.2821966666666667,0.4219342857142857,2.5546933333333333,2.7425800000000002,2.7977633333333336,3.1537466666666667,1.465916,3.066853333333333,7.212881666666667,4.47407,2.255716666666667,1.8952633333333333,2.5764366666666665,3.638325,2.41481,3.517923,18.029615,5.42125,3.4214260000000003,4.680705,3.784465,5.476295,1.63289,6.126,1.5176233333333335,4.842595,4.846945,5.514,4.98468,0.9865984210526315,6.80585,2.41352,4.86945,2.83223,4.402965,3.594805,2.864105,2.3981233333333334,1.529326,1.9329975,4.49703,4.72601,2.230685,1.66577,3.0561633333333336,4.021686666666667,2.82532,6.2788,2.0320175,3.272035,4.95402,4.596515,4.257005,2.74991,4.046625,4.871345,4.068965,2.6654466666666665,2.6654466666666665,5.764203888888888,2.0760666666666667,2.668623333333333,3.940875,1.746498,7.45559,3.54538,4.342636666666667,4.405266666666667,4.304965,1.801486,4.21254,5.66095,4.117455,2.0398025,3.613295,3.24238,1.3164775,1.3152325,1.2765,0.6813866666666667,1.7184766666666667,0.97548,4.61412,0.9406488888888889,2.5801966666666667,1.6024766666666668,1.8340125,1.0488033333333333,1.88275,2.26649,1.5595375,2.907923333333333,2.65677,4.820005,1.5320216666666668,2.65295,3.09422,2.891196666666667,2.32661,4.390831666666667,4.714295,4.893693333333333,19.10103425,2.826086666666667,2.19313,0.64421,0.615468,4.140931666666666,1.9735800000000001,4.148455,4.92121,6.930685333333333,3.58935,3.485855,3.96355,3.17638,3.2823933333333333,3.1079033333333332,3.9897666666666667,3.26797,6.638,3.77211,0.92663,1.1296725,5.3616,3.09018,2.5700133333333333,2.1384833333333333,2.1933966666666667,5.71075,4.98119,2.228745,2.3116333333333334,3.345,4.92433,8.517823333333334,5.1078149999999996,4.109815,4.092235,5.4327,4.69297,4.26256,4.80481,3.853445,5.19265,1.752255,5.67245,1.5886571428571428,5.0855,0.74532,5.0038,5.53485,6.1261,6.10105,4.64723,5.96925,6.00705,6.5381325,2.02975,1.5897000000000001,5.6104,3.932135,6.950088333333333,5.12895,5.5282675,5.07595,6.4563,1.3139699999999999,4.466355,5.29685,4.237933333333333,4.81023,5.09715,2.71255,4.00127,2.597945,4.33374,1.0020499999999999,1.589295,1.375636,4.900065,4.00498,3.225145,1.9430500000000002,2.9545433333333335,1.5023033333333335,2.178246666666667,0.38246,3.5512,1.632876,2.389385,2.96341,2.3035033333333335,3.1998533333333334,2.716925,2.501325,10.280649333333333,3.933533333333333,1.8466530769230771,3.49725,0.9266636363636365,4.4640362499999995,1.1696625,1.6338725,1.9442775,1.0663825,5.793937666666667,1.149112638888889,1.149112638888889,1.149112638888889,3.0147733333333337,1.870502,5.27985,3.11895,1.3784625,1.478415,2.1943025,1.304925,1.98272,5.405019166666667,0.8405366666666666,4.355055,4.347335,3.1798800000000003,1.0164442857142857,2.113675,1.84589,1.84589,1.4321566666666667,3.7854150000000004,4.412105,5.4375,5.77335,4.29132,5.3669,2.917173333333333,1.9696075,2.75627,5.23855,3.335185,4.1929,1.027665,3.9211899999999997,5.2896,1.86459,4.435535,3.0917033333333332,4.71476,4.647665,2.62237,7.08675,6.23115,3.789385,4.542225,4.282925,3.26562,7.92538,3.917485,5.322008333333334,3.30989,2.6997,5.205,2.6405499999999997,5.5621,4.282535,2.75217,3.170395,3.936675,1.2528066666666666,10.5845425,4.032555,3.166875,15.371940178571428,4.50246,1.7542966666666666,2.881963333333333,2.1109,2.31301,3.217925,2.559210486111111,2.86036,2.8218,2.97081,4.04623,6.316415000000001,1.3674566666666665,2.00009,4.15626,4.24913,4.666225,2.3617325,0.6055406666666666,4.431815,4.2175,2.08758,1.3612333333333335,4.55818,4.605245,0.8979144444444445,3.609455,12.454803333333334,1.2901937142857143,0.39079071428571427,3.4211333333333336,4.604883333333333,1.0986633333333333,3.5875,4.14552,6.347878333333333,1.2795783333333333,3.26711,3.89174,3.377645,4.445215,4.425895,4.108955,8.20141,3.0854,4.711425,5.7577,16.017345,3.5074449999999997,2.917025,1.11278,2.014465,1.2471475,2.20444,1.2561525,1.9920425,1.6710425,1.988575,2.4102625,2.3404925,2.17842,5.43955,4.60172,5.9034,3.07081,5.645738333333334,2.8701933333333334,5.05145,3.5472,1.2596125,3.82452,2.0452475,2.807938,4.58701,4.82591,4.967595,4.45576,3.6592000000000002,3.8625000000000003,2.42958,3.553525,3.78294,2.278105,1.80762,3.6171,4.208775,3.568505,2.4072666666666667,12.740713333333334,0.7236666666666667,2.685095,4.902065,2.4871879999999997,1.0717240000000001,2.82874,7.420726666666667,7.196246666666666,4.477505,3.927165,4.101115,2.1132275,2.189695,2.8524356666666666,2.0531466666666667,3.7788716666666664,5.25745,4.310705,0.46599866666666667,6.33805,3.3585333333333334,3.3117900000000002,3.7043,6.1776,8.94222175,4.633508,1.04867375,2.1395225,2.19383,3.764255,2.623355,4.14017,4.35681,3.5352333333333337,2.6480266666666665,4.05534,4.091675,3.712755,4.4336,1.7757833333333333,3.778865,5.2164,5.55505,3.230613333333333,2.2313625,2.2195833333333335,15.268846033799532,0.5478372727272727,1.504555,1.504555,2.4706333333333332,5.417619999999999,3.91968,4.58172,3.05048,2.83555,4.9953,3.1273133333333334,4.20825,3.1273133333333334,3.50981,1.8737633333333334,1.9472466666666666,6.1162,2.7491,4.964525,3.281025,2.646185,6.528578333333334,2.0772866666666667,4.593575,5.38595,3.647985,3.445685,5.0213,2.1045000000000003,5.06695,3.5795775,7.483571666666666,5.464475833333333,2.8197,3.88577,4.230895,2.09919,2.4621366666666664,3.5088666666666666,0.4522285714285714,3.1941699999999997,10.05132,4.08217,3.605665,5.0382,3.275869166666667,3.1099,1.3126457142857144,4.213635,5.45585,3.27048,2.33256,4.19141,3.76488,4.36012,4.34862,2.955075,2.955075,4.110975,2.762515,2.547781590909091,1.993025,4.97173,4.075395,0.9585400000000001,3.634,4.847215,2.8734,7.1223425,7.77202,1.48217,4.185605,4.85298,6.862068,0.730896,7.76103,3.5904833333333332,0.6210254545454545,5.37575,5.2232,5.0011,4.38751,4.79782,4.442025,4.98071,3.83929,4.045475,4.47703,5.4991,4.71857,4.61102,3.873,2.792875,4.068045,4.24331,0.9590020000000001,4.6911,2.3172,1.703425,4.54377,4.233205,5.76395,1.047267142857143,4.966215,2.932975,2.69801,1.5989725,1.2145633333333332,11.486995833333333,2.239856666666667,3.0848933333333335,1.8375366666666666,3.721115238095238,5.355973333333333,6.038788333333334,2.637633333333333,2.007426666666667,2.17704,2.17704,2.17704,1.4504033333333333,3.90861,3.97909,3.46206,4.575675,8.207695000000001,4.173445,1.093224,2.21543,3.009235,2.149055,1.824748,4.07056,2.7284,1.4037366666666669,3.07761,5.493892142857143,5.905965,4.046615,4.100305,3.1535933333333332,5.163,4.614515,5.5535966666666665,1.9055575,1.9055575,4.02112,3.69277,2.704435666666667,2.704435666666667,3.925555,1.2981014285714285,5.13055,3.380875,4.33699,4.043965,3.92098,3.314493333333333,1.0562871428571428,4.34569,5.13835,4.19916,4.73843,4.94442,4.91409,4.47433,1.937405,1.44024,3.442015,3.8211,3.28459,4.44722,2.09006,2.8775,5.2537,2.84122,4.716545,7.423355,2.275393333333333,3.0544783333333334,4.375927142857142,5.009143333333333,1.6050975,2.048019523809524,0.9723466666666667,2.048019523809524,1.6144299999999998,1.6144299999999998,1.533802,5.1935,3.09222,3.86399,2.38026,3.82479,1.5177816666666668,5.4434,3.090525,1.6844375,3.1115166666666667,3.428165,3.824195,6.572245000000001,4.70248,1.2613400000000001,0.8249,3.66171,6.865858333333334,2.4653233333333335,3.75322,3.53011,3.53011,2.27795,3.43904,3.24273,1.4351877272727271,3.1393066666666667,3.370185,3.106955,4.371455,3.9599824999999997,1.580255,3.774705,4.40055,4.92453,5.14675,4.086075,1.7190825,2.176015,1.3598666666666668,2.2285275,3.605045,1.8870475,4.71755,3.2603266666666664,3.589425,4.20866,5.24535,1.89228,0.956006,1.8240733333333334,1.42294,1.1725222222222222,5.06755,4.031995,1.10246,0.3814,0.3814,0.3814,3.583265,5.803261666666667,4.58573,5.3442,5.01505,5.5025,4.685045,4.40872,2.686835,3.62077,1.62423,4.83578,4.197215,3.93949,4.418295,4.285475,0.7154354545454545,0.7154354545454545,0.7154354545454545,0.7154354545454545,0.937618,0.937618,4.049075,3.98871,3.542135,2.84697,2.45567,6.179,5.1057,5.55135,4.29896,3.123893333333333,2.55947,10.0776,1.62194,1.62194,4.010305,5.34185,3.2828866666666667,0.447848125,0.447848125,0.447848125,0.447848125,0.447848125,0.447848125,4.6146883333333335,5.00385,3.600595,4.550785,2.9283825,2.9283825,2.805425,3.3190749999999998,2.4791433333333335,2.738305,3.506125,7.032813666666666,1.375592,4.54732,3.74743,4.030665,9.234585,2.30881,2.673005,1.0125357142857143,1.949025,5.0308,2.87521,0.8793375,2.8341766666666666,4.272755,5.5267,2.68225,4.731081805555555,0.8472555555555555,1.9978766666666665,4.89619,4.8755,2.7573214999999998,2.437813333333333,2.00904,1.3888816666666666,7.004976666666668,3.4135000000000004,1.9588333333333334,3.143055,2.6240249999999996,3.47731,3.774915,2.7512066666666666,3.25733,5.98635,1.4420116666666667,4.32052,5.20775,3.40164,3.92764,1.98934,2.968005,3.763515,3.72342,2.88364,4.850735,4.51003,2.819523333333333,1.8319812500000001,2.8443199999999997,2.9130566666666664,2.8796866666666667,0.7875754545454545,2.1900575,8.338967499999999,0.471535,3.0234133333333335,1.5878466666666666,2.5874966666666666,3.3887,2.764803333333333,1.2668555555555556,1.7223,2.7282966666666666,2.13962,3.723865,2.03314,2.67724,1.4511466666666666,3.329058,2.089535,1.1304071428571427,2.9111999999999996,2.1602475,2.367176666666667,2.6910166666666666,3.352066666666667,3.15896,3.497733333333333,3.09717,2.8785966666666667,3.5706333333333333,2.7796766666666666,2.837225,1.7015933333333333,2.31214,2.6267766666666668,1.58859,3.239803333333333,3.8887538095238092,2.9595000000000002,2.41383,2.8806733333333336,3.6721333333333335,4.749915,3.1173300000000004,1.7817442857142858,1.7817442857142858,2.45316,1.0686525,2.44789,3.3650649999999995,4.601134999999999,2.78815,2.07153,2.08846,2.09101,3.65483,2.963285,3.74119,3.60491,1.750425,2.470476666666667,4.01492,1.105106,1.105106,1.9689975,0.5665184615384615,2.252256730769231,1.628365,1.628365,2.6823,2.4100733333333335,3.278036666666667,2.5875016666666664,2.00465,5.5384166666666665,3.8290725,3.8290725,3.57101,3.069015,2.257845,2.944925,2.550075,2.872455,5.0254475,0.4828491666666667,0.666736,4.196565,2.174035,2.956225,6.49292,3.76699,1.636758,5.198493333333333,4.68662,4.23426,4.326915,5.36915,5.14545,13.543415,3.618535,1.5842866666666666,3.00265,3.768,5.14205,2.84878,3.97485,4.28211,3.702245,3.49275,2.88514,2.86921,2.66404,2.4299933333333334,2.4299933333333334,3.90052,2.4879,3.09803,3.305235,2.297195,2.534715,2.2295575,1.88114,1.9651475,2.2338875,1.7076575,3.385867,3.355045,2.57935,7.2853575,3.45535,2.3267633333333335,1.90852,3.416565,3.921415,3.60999,3.1326718749999998,3.519655,3.211425,4.327485,3.61701,3.861485,3.98495,3.466417,3.52616,0.617115,0.617115,0.617115,3.39889,2.29527,5.541,2.509845,3.785675,7.005256666666667,2.7043166666666667,0.36421423076923076,5.4101,0.757897,4.247081428571429,1.850645,3.873925,1.870865,3.86413,5.218281666666667,4.249345,3.97623,2.761556666666667,2.95084,1.5065866666666665,2.78477,0.4029442105263158,0.5509305882352941,2.6995066666666667,1.3950133333333332,1.8892675,3.78359,2.8074,4.913905,2.79722,3.059708333333334,3.50335,5.79747,1.662905,0.9053814285714286,2.390735,3.792714,1.2306125974025974,4.98752,3.938405,3.726825,2.7654433333333333,4.390215,2.5399533333333335,2.5165666666666664,2.3866366666666665,2.3917875,2.710046666666667,2.17196,3.0291366666666666,2.50585,5.504363333333333,2.2761275,2.0267399999999998,2.17215,5.220993333333333,3.248686,3.248686,2.53908,3.921805,2.31204,3.474575,2.92109,0.56096,4.293995,1.8305025,11.8199,6.9236,2.826045,3.52977,3.35494,4.47969,2.73583,3.293525,0.25731,1.9205275,3.4415666666666667,0.814435,3.83012,1.33113,4.96921,3.32923,3.308375,3.582795,3.15693,2.28387,4.488385,3.76985,3.710705,6.59445,4.15207,2.8505333333333334,3.1501300000000003,1.626122,1.85549,4.132605,3.56883,3.82453,2.51041,3.23106,1.4080920000000001,2.98982,2.564735,3.473635,10.678906666666666,3.589765,5.235573333333333,3.867115,4.308425,1.0114822222222222,4.827724999999999,4.749525,2.51803,2.669146666666667,2.7840133333333337,3.6941333333333333,2.3978366666666666,1.7146466666666667,1.95882,3.728735,1.574726,2.86896,5.126954,2.8059600000000002,1.0747503571428572,1.0747503571428572,3.724635,2.9758315,2.9758315,3.0937133333333335,2.6919833333333334,3.3814164102564104,3.942766666666667,3.5187666666666666,2.71461,2.4205666666666668,2.4936333333333334,3.1179066666666664,2.2175575,2.5301899999999997,1.6393119999999999,5.7964269999999996,8.5930565,0.5039976923076923,0.5039976923076923,0.5039976923076923,0.6104631468531468,0.6104631468531468,0.5039976923076923,2.897623333333333,2.9997933333333333,4.09622,1.3951466666666665,1.7722475,3.3121479999999996,2.435486666666667,3.1682133333333335,2.4280500000000003,2.94697,3.4355666666666664,6.6252200000000006,3.0884533333333333,2.480653333333333,3.0181466666666665,4.8281,2.3575833333333334,3.353733333333333,5.65154,2.412783333333333,3.365766666666667,1.3747966666666667,1.3747966666666667,2.914566666666667,0.5312157894736842,2.3409033333333333,2.6441233333333334,2.8685766666666663,3.2862033333333334,2.33647,1.5548433333333334,2.69116,2.7466866666666667,2.3955933333333332,4.330205,2.4305406666666665,3.400975,2.55671,3.040465,0.5094879999999999,6.985351666666667,3.017918,3.017918,7.7698358333333335,1.7654966666666667,1.7555800000000001,3.0118766666666663,4.37094,2.35702,1.9675,2.6601733333333333,1.4172725,3.4537,1.8124399999999998,2.9673534999999998,1.3909225,0.2681809090909091,0.2681809090909091,4.84394,3.954815,3.799385,2.827366666666667,2.644735,3.30617,1.2546133333333334,5.5779,3.850735,2.95688,1.84752,1.1978441666666666,2.17992,3.0118766666666663,2.575395,2.08995,5.666869999999999,3.554075,4.34591,3.807195,2.1047,0.6876525,7.3035175,2.1200825,1.508675,3.642615,5.0848,2.27677,1.7628000000000001,4.783335,4.171625,3.169636666666667,3.14122,4.150805,4.18975,3.5032333333333336,2.557396,2.557396,3.987,4.81496,5.42375,6.310856666666667,2.6375533333333334,3.97253,1.5159714285714287,2.5285,5.543328,3.748105,1.874928,5.3604,3.4995200000000004,3.43505,2.10678,4.239635,4.75183,4.696155,4.63403,2.4954433333333332,2.6498666666666666,3.7470666666666665,2.0964033333333334,2.583975,2.680476666666667,2.39757,0.724013,2.39838,2.8696466666666667,1.8607696666666667,4.6675,4.525485,4.622985,3.67396,3.510415,4.645135,11.992915,4.689925,3.772465,4.324955,3.95849,4.66616,2.497736666666667,3.219905333333333,3.5917666666666666,1.227885,2.820015,2.79124,4.553525,5.4584,4.30317,3.526066666666667,3.2314066666666665,2.1936233333333335,4.3955,4.0572775,3.9061,4.0572775,2.20331725,2.2642233333333333,2.314636666666667,2.14808,2.64723,1.78229,0.7942016666666666,1.29137,1.9674666666666667,1.90219,1.5940133333333335,1.3487200000000001,2.0617533333333333,2.6262866666666667,1.524062,3.2176033333333334,1.2317,1.61127,2.659555,3.811533333333333,2.4510466666666666,2.05966,2.350703333333333,3.241025,2.260805,2.96227,3.262233333333333,2.4622433333333333,3.1058166666666662,3.059025,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,0.16490741935483869,5.13205,2.86264,1.0449385714285715,3.09935,2.6102266666666667,2.91555,3.48733,3.457933333333333,4.56286,3.4704026666666667,1.557252,3.0245366666666667,1.8065833333333332,0.9708525,0.9518449999999999,1.7015333333333331,0.8470966666666667,0.7596725000000001,1.314886,3.285435,1.558574,1.5680883333333335,1.901885,2.348463888888889,1.294645,1.24326,1.5329316666666666,0.9486849999999999,1.261305,0.7330483333333334,0.8876139999999999,3.24818,3.49879,4.151435,4.55034,4.105865,3.17128,4.737465,3.443633333333333,2.095005,3.501935,2.02375,3.5143,2.0782599999999998,0.8462036363636364,4.24077,5.1764,2.09092,1.315875,2.950425,3.340955,3.7854150000000004,2.9868799999999998,2.75534,0.9312775,2.330095,5.002174999999999,3.822885,2.60617,1.5295866666666667,3.76337,1.825775,0.5861354545454546,4.394485,4.426695,4.3103,2.56498,1.449654,3.18686,4.39779,2.56521,2.570793333333333,2.47445,2.6484166666666664,2.72461,2.7864533333333337,3.029856666666667,1.2747625,2.5843,2.610716666666667,5.045,4.389455,3.653575,4.7445,16.429173564393942,4.4933625,4.642290666666668,2.82527,4.270495,5.0741,1.55971,2.054045,2.24697,6.094495,3.46908,3.129785,6.4351,2.24697,3.8766,2.00098,2.1298233333333334,2.94997,2.69682,1.344265,4.35594,3.46864,2.492585,4.30714,2.4450533333333335,3.20904,3.652765,3.5296,4.38229,3.65789,2.637945,3.48509,2.62517,2.48467,1.285652,1.285652,3.2439199999999997,2.51529,0.395625,4.6627089999999995,0.938884,2.73133,3.50992,0.5613233333333333,4.612935,8.231594999999999,1.829975,3.66899,3.55052,2.611616666666667,3.338675,2.288825,3.02796,3.56062,4.191035,3.058025,3.8943999999999996,0.985525,11.398926333333334,2.86918,2.866225,5.9984,2.564665,3.90291,7.498665,4.13863,4.05492,3.47964,4.16885,5.5715325,1.4306075,2.81289,4.664225,3.823566666666667,1.9813120000000002,3.848885,3.763855,3.690485,3.978035,3.9597,3.86948,2.4054,4.586275,3.74995,5.10335,3.214365,2.1379733333333335,2.2000100000000002,2.1131333333333333,3.02218,1.3050766666666667,3.6545,0.8999272727272728,3.30925,3.1662166666666667,2.6605333333333334,1.5161916666666666,4.086415,3.85511,4.15273,1.8693925,4.6152,3.70508,0.7476960769230769,0.33960807692307693,4.258305,5.3809,0.98288375,0.33960807692307693,4.460905,0.7476960769230769,0.7476960769230769,0.33960807692307693,5.816746666666667,2.4952866666666664,2.508853333333333,5.69185,3.61822,3.2736,0.8040177777777777,3.149035,3.655305,4.826435,5.8152,2.14402,0.724326923076923,4.225255833333334,2.037593333333333,1.245398,1.8117425,0.9675371428571429,2.233566666666667,2.20248,3.606175,5.24235,2.6671066666666667,3.194013333333333,2.83643,2.1620066666666666,2.991155,4.56294,1.6559,1.98788,3.86138,5.20375,2.162227222222222,5.00975,2.134885,4.179665,3.951975,2.74165,1.2294,3.246545,6.8168,3.865385,3.50698,5.3141,6.39885,2.394995,3.30881,4.64668,3.25858,3.232285,8.21984,3.711335,4.528124999999999,2.254705,1.079375,2.4839333333333333,1.93394,2.01752,1.908345,4.054075,0.6649714285714285,3.30932,3.834045,1.8555066666666666,3.153256666666667,4.9596,3.5295,2.78094,4.46796,4.947425,9.026852166666666,2.6239033333333333,2.548293333333333,1.6579260000000002,1.4424683333333332,1.2065966666666668,1.3985766666666668,2.5436799999999997,2.5437499999999997,2.811616666666667,4.365345192307692,1.6064675,2.42365,4.9734,5.39905,3.775835,3.4239,3.048435,2.586775,2.064725,2.081545,1.85903,1.97991,2.94456,3.715685,4.82876,5.16435,3.777675,5.434635833333333,3.268835,2.762705,6.508562916666667,3.020765,8.70164,4.853704166666667,4.853704166666667,5.847508333333334,1.5997833333333331,1.39154,1.4348866666666666,0.714902,5.08895,3.7944,3.27029,3.27029,2.34296,4.44591,4.335955,4.486175,3.89575,2.91609,2.67307,3.7605,3.0659733333333334,5.215770833333334,3.495,0.8047918181818182,4.97946,5.26245,4.00418,4.97984,3.44564,6.29265,4.23145,0.8555307692307692,5.1534,7.581635,3.029215,5.75025,5.93295,3.46413,2.71897,3.748295,6.02175,2.1371525,5.92175,1.917015,4.54544,2.5879166666666666,2.381945,0.9094,3.086625,6.1155,3.160975,3.676295,2.116233333333333,4.634865,7.947744999999999,3.52769,4.34988,2.5415,2.550155,0.845636,4.599145,1.6156166666666667,3.4303616666666668,3.4303616666666668,3.76364,2.34807,3.04672,3.95168,1.73211,3.0053666666666667,3.2900766666666663,3.2763766666666663,2.83451,4.05719,3.209845,1.84751,3.1553299999999997,2.1684375,3.1042166666666664,2.0488566666666665,3.079143333333333,3.1147899999999997,1.4428285714285713,2.0388533333333334,0.45893500000000004,1.3679033333333335,0.45893500000000004,0.45893500000000004,2.0388533333333334,0.45893500000000004,3.4328333333333334,2.766806,2.766806,2.8800600000000003,3.996035,3.819065,4.177285,5.3419,5.66155,3.43098,3.99954,4.09207,1.8968725,2.3450991666666665,2.4423033333333333,0.8460290909090908,5.53365,3.1245600000000002,3.0718,5.5027,3.9079475,5.11915,3.23613,2.6125633333333336,2.930395,3.361495,2.6774633333333333,2.807536666666667,2.0645233333333333,5.3525,0.8528488888888889,3.911965,1.1735957142857143,3.585,3.2866233333333335,2.9042866666666662,4.10809,3.912695,3.688525,4.573505,3.961635,3.868835,4.35418,4.184755,2.508225,2.7513,3.1983200000000003,4.19804,2.728035,3.314735,2.777065,2.99015,3.385,3.485595,4.81854,4.6609,3.95598,68.430410372003,2.6884616666666665,3.9941,16.361046666666667,4.027585,3.0171233333333336,2.1067933333333335,1.89478,2.6388433333333334,4.406975,2.9937633333333333,4.111155833333333,5.60925,3.326745,7.509836666666667,5.4249,2.38682,3.405785,3.545655,3.439545,1.917086,1.09976,4.636155,2.472695,5.948513333333333,3.581415,2.3643366666666665,3.506225,3.30679,4.55243,3.002845,5.5316475,4.45036,3.42341,2.97414,2.501,2.80769,6.16515,3.36856,3.61816,4.362852916666666,1.2169533333333333,2.44741,5.20349,3.477175,3.18289,3.710915,2.899025,3.97982,3.078525,2.75949,2.34972,4.359465,2.882085,2.94566,4.3692,9.271945,3.22801,4.197775,5.96576,3.250195,1.91966,4.09489625,2.2377233333333333,2.9342133333333336,2.944642,3.42507,3.408475,3.4047,3.108455,3.17074,4.06285,3.827895,4.220255,3.679375,3.070095,3.557715,2.7299283333333335,2.7299283333333335,7.03824,1.582775,3.16176,3.23444,2.343115,4.64599,4.16492,3.12528,3.458545,5.0591,6.1393575,0.6547609090909091,3.98775,2.206365,2.8899833333333333,2.3525633333333333,5.16305,2.728146666666667,2.136045,1.0771525,2.0509833333333334,4.285765,5.15935,4.19391,5.94895,5.675,5.82425,2.487535,1.9869066666666668,3.87853,2.66542,2.86102,2.003816666666667,1.3381666666666667,2.78154,3.1449033333333336,1.53145,2.3590433333333336,2.438155714285714,3.4235304945054943,2.75216,5.0507,3.308295,1.335845,2.772405,3.47993,5.9479,4.95605,5.7839,4.77017,1.9957,1.4491966666666667,0.6011414285714285,1.5581433333333334,3.51531,2.46036,3.586013333333333,1.4494433333333332,2.438185,2.30307,3.315525,3.51125,3.796445,4.084286666666666,1.6423975,1.37574,1.9153275,2.031165,1.38787,2.515675,6.95842425,4.913265,3.382105,2.88897,6.64406,4.67652,3.12904,3.02599,3.480045,2.5125,3.760825,2.3606700000000003,7.32769,0.8901233333333334,3.01739,6.6571,3.880865,4.724995,6.4478,1.4871800000000002,3.1167233333333333,3.0909166666666668,2.88152,1.43621,3.99736,8.58408,3.41554,5.08615,3.98198,3.261205,4.88399,0.9019050000000001,2.8124866666666666,5.4396,6.295603333333333,5.10995,5.7861,2.96492,3.7433333333333336,2.629696666666667,5.16435,4.95063,4.082593452380952,4.082593452380952,0.6926342857142858,3.6098,1.0314,0.8226016666666666,1.7896975,3.7851666666666666,3.682478,5.087376571428571,2.93535,3.2687525714285712,2.9724919047619043,2.7440466666666663,3.114403333333333,4.629166666666666,3.7680575000000003,2.0286075,2.0286075,3.98464,3.0377066666666668,2.7220600000000004,3.48618,3.4151333333333334,0.5739833333333333,3.3339,2.6375566666666668,2.4205099999999997,2.802846666666667,2.5907,2.4964033333333333,3.2394933333333333,2.841113333333333,0.819498,2.9614933333333333,6.584542666666666,2.10214,7.5340066666666665,1.6086459999999998,1.6086459999999998,3.4659680833333333,3.4705333333333335,3.3378333333333337,2.7946833333333334,1.73014,1.3368785714285714,3.1915433333333336,3.396433333333333,1.46021,1.609142857142857,2.8250466666666667,2.689094,2.671136666666667,1.8427,1.91839,2.59845,2.20635,2.759415,3.36347,1.595415,3.622165,3.06995,7.06656,3.279495,1.681615,2.939975,2.553215,2.134365,4.04236,2.2049166666666666,2.687175,6.934670000000001,0.8384307692307692,0.7533724999999999,4.49611,1.416746,1.416746,3.84488,2.39938,4.5214,3.245245,1.2968933333333335,2.396186,2.9307433333333335,2.393702666666667,5.1991,5.14945,2.57727,2.229906666666667,1.3774964285714286,1.3774964285714286,1.9019366666666666,3.821135,4.000066666666666,5.6028,3.117156666666667,4.83256,4.22616,6.4921,4.20915,2.47609,2.8072233333333334,2.6206333333333336,2.7156533333333335,0.7209655555555555,0.7209655555555555,0.7209655555555555,2.99087,4.08032,3.86605,0.8094225,0.8094225,4.79144,5.7353,6.38563,21.760571388888888,10.9088,7.72688,2.837325,5.71295,2.34734,4.295255,2.5276366666666665,3.26436,3.8711333333333333,5.201216666666666,2.19835,2.15444,6.11322,2.1962599999999997,2.1962599999999997,6.26725,3.04757,3.90005,2.14098,4.882153166666667,4.49758,3.587365,5.1407,3.463195,1.4709533333333333,5.7617,8.86697,1.4709533333333333,2.14098,2.0541933333333335,0.684228,0.684228,1.767624,2.3159300000000003,1.767624,4.360925,5.2651,6.0727,8.68392,2.14098,11.490774833333333,5.848,5.55665,2.34734,3.42247,4.319585,8.74897,2.9471725,3.798445,5.9177,3.252065,4.76755,6.0913,4.37185,4.897085,4.910595,2.23226,4.96533,3.683695,4.225615,4.510495,0.776185,1.456146,3.059395,5.316,4.42004,2.8059600000000002,2.08063,3.97305,4.783485,5.7592,5.3546,5.1649,4.38774,3.24122,4.280415,3.679325,2.02274,4.828670000000001,2.0445,2.66691,3.461805,1.6101999999999999,3.95642,4.01918,3.66801,3.7939799999999995,2.94949,6.675038333333333,0.9265988888888889,3.52821,2.089805,1.2235185714285712,5.163175,1.4031033333333334,1.6789766666666666,2.6381966666666665,2.7658465,2.9837399999999996,2.8076733333333332,1.7839475,0.7402527272727273,2.1558333333333333,2.76367,3.371705,0.7289092307692309,7.121636666666666,1.8324366666666665,1.1657579999999998,3.3003033333333334,1.1657579999999998,4.04564,0.9558454545454546,4.46343,3.2420466666666665,1.63936,4.814622,4.283022,4.283022,4.80178,2.4930975,3.0843733333333336,2.8206933333333333,1.465916,3.514865,3.773995,2.0723733333333336,0.6900041666666666,6.8102375641025645,2.753305,4.254625,4.31721,7.50371,2.2216225,4.103595,3.77644,3.114035,3.556235,5.43115,6.373165,4.46867,4.681015,5.2798,2.93065,4.947,4.32033,4.488185,1.0922411111111112,0.4700714285714286,3.12471,3.41,2.8974733333333336,5.44355,3.775395,4.266085,4.36527,5.2191,4.54949,4.37641,1.1968299999999998,2.3771,8.500754166666667,2.2767500000000003,1.8701733333333335,4.242699047619047,11.256438611111111,1.5698425,5.26955,6.5468,5.2133,3.5690000000000004,2.309956666666667,3.3377,4.311435,1.105175,3.1627433333333332,3.405115,0.33124315789473685,2.0819366666666665,4.65004,4.253885,2.240915,4.25172,2.79964,5.161308333333333,1.3152533333333334,0.5261881818181818,3.846055,1.161702857142857,1.03212125,1.03212125,1.03212125,1.03212125,1.6188183333333335,2.737023333333333,1.8029366666666666,3.33266,5.26615,3.5411333333333332,5.3197,3.66954,4.28543,3.57186,3.96087,1.42304,6.83766,2.503275,4.66218,5.248056666666667,5.12435,5.123940833333333,2.37812,2.561853333333333,2.614246666666667,3.178915,1.16866,4.480065,2.64775,5.0805,2.8457333333333334,2.4374366666666667,3.827625,3.255165,2.878865,2.49408,2.82874,1.46343,0.3967277777777778,4.323025,3.69957,4.14339,3.593315,3.815665,5.76305,4.54404,0.5334692307692308,3.149448,7.330574666666666,1.9288466666666666,2.25228,5.696548333333333,6.171,2.8476266666666668,4.976945,5.3026,4.185845,3.791525,4.251545,5.35975,5.5563,5.4029,3.424705,5.3394005,1.543146,1.5602150000000001,4.436545,4.046945,3.8939,3.24961,5.3703,4.714395,3.82986,3.32334,15.639724005281547,1.2321976565008024,1.05293375,1.7378182954545456,0.47951625,0.45555666666666667,1.19605,0.28562529411764703,1.265262,3.196483333333333,1.42054,0.853625,0.9977170833333333,0.47120083333333335,0.9977170833333333,0.9977170833333333,0.47120083333333335,0.8118307692307692,0.5417142857142857,2.714535,2.7293366666666667,4.64986,3.66621,2.79181,2.721475,4.146235,5.00285,4.87205,2.66526,4.332945,0.7052842857142857,2.3061553333333333,8.094676666666667,4.111175,6.667493333333334,2.83469,4.52737,2.34349,5.0953,5.3261,3.5266,4.132705,3.31283,1.0547833333333334,4.289845,4.696225,1.241368,1.306954,1.545215,2.41101,1.9934766666666668,5.9011,5.77645,2.2951725,2.2951725,3.5728508333333333,6.11269,2.1053,0.6602090909090909,0.78818,2.066196666666667,3.4092000000000002,0.9251414285714287,0.9251414285714287,0.9251414285714287,0.3746,1.0600985714285713,2.9008,6.08435,3.7901000000000002,4.0100175,5.14,0.991541,3.4547666666666665,3.11288,3.7808333333333333,5.62315,2.5373466666666666,7.4199166666666665,4.824345,1.08138,3.8805333333333336,1.920026,2.68418,2.3135666666666665,6.838353333333333,3.3725,4.42595,2.439705,4.47778,4.473725,4.86153,0.516115,2.14267,1.4047766666666668,2.6690166666666664,3.832846,2.07041,2.77117,2.525986666666667,2.5934733333333333,2.60413,2.842803333333333,2.77709,3.0598799999999997,1.337276,2.2205333333333335,1.9188466666666668,2.65926,2.5166833333333334,2.01718,1.7277133333333332,1.8525366666666667,1.605685,3.191425,2.1899566666666668,2.15349,2.1559399999999997,2.4208366666666667,2.426676666666667,0.8466255555555555,0.8466255555555555,0.8466255555555555,2.4318566666666666,2.21576,3.0572133333333333,2.1393999999999997,2.5302266666666666,2.0999,3.77327,3.3256683333333332,1.3332683333333333,2.438963333333333,2.7662533333333332,3.5486333333333335,1.5689285714285715,7.263461666666666,4.52319,3.13205,4.106155,3.513345,1.5362025,0.8319857142857143,3.13503,3.801715,3.5486333333333335,4.271425,4.374055,4.425705,2.8918533333333336,3.803275,4.234965,0.870234,2.60972,3.26329,4.94039,4.818395,3.50228,3.3244,2.45089,2.2363833333333334,2.3713233333333332,0.6364391666666667,5.30176125,2.794925,4.00073,2.7356533333333335,3.787236666666667,3.17818,2.4312566666666666,3.002642333333333,3.002642333333333,2.59118,2.09698,2.5326566666666666,2.1010266666666664,4.217575,1.477034,2.51758,3.784705,4.077225,4.039465,5.49685,3.58281,2.4881325,2.13594,3.131125,3.122045,2.629755,5.067,2.78419,1.1309585714285715,1.1309585714285715,4.61148,3.907179,0.972164,4.58995,0.972164,3.94781,4.91614,4.79696,3.09142,3.25495,6.381175,4.18327,5.84115,0.8385,0.8385,2.0772,4.451655,1.5845799999999999,2.867075,3.45037,1.1444814285714284,3.571645,3.969055,5.754525,5.754525,1.062665,5.5561,5.21145,5.0834,5.7935,2.0099975,2.0099975,7.0189,0.9300454545454545,7.25315,2.0037925,6.5825625,2.366595,2.4769166666666664,3.42952,2.3238399999999997,2.228403333333333,2.2972533333333334,3.06819,2.49575119047619,6.422082,1.7479140000000002,5.11035,3.0092199999999996,2.5860966666666667,1.75256,2.172095,3.14367,3.45117,3.463275,2.593415,2.27928,2.1003,2.726195,1.098082,3.129405,2.415,3.182965,2.0545584999999997,2.0545584999999997,2.998695,1.9332200000000002,3.57742,3.34483,5.03315,7.086705,4.032095,3.50274,6.436763166666667,2.0782633333333336,3.35959,2.2558933333333333,1.523642857142857,1.63765,4.008065,1.5569066666666667,0.5045225,0.6607183333333333,4.52511,4.951,2.91029,0.9415733333333333,2.848665,3.0339566666666666,4.720815,1.664214,1.86508,1.1341111111111113,4.64229,2.423305,4.682155,0.761995,4.153712916666667,3.87523,3.56047,4.41658,3.56339,3.781525,2.8796866666666667,5.3564,3.68476,1.8814,2.7411933333333334,6.1288599999999995,5.869517500000001,0.8129175,3.695545,4.6275,5.20205,3.7271666666666667,3.8855,2.68805,3.1762833333333336,3.8523333333333336,6.1800049999999995,2.689094,2.631357,4.112835,3.13677,2.3254,2.57025,8.39155,4.53633,1.9514333333333334,4.8258,4.738155,1.776984,3.931985,1.3232875,1.270592857142857,4.45524,3.56382,4.78716,2.6264933333333333,3.068835,3.09009,5.13405,3.754505,3.641525,3.102745,3.837835,4.062915,4.039765,1.1491300769230768,1.1491300769230768,7.85392,1.040935,2.184074365079365,1.040935,0.6795016666666666,0.35186222222222224,2.8635760317460317,2.148885,0.6885571428571428,2.184074365079365,1.852905,3.46835,2.175018888888889,3.37011,4.74284,7.521511666666667,2.076135,2.156475,2.20023,4.252335,5.6903,1.77581,1.6883525,0.993625,2.6819775,4.08004,2.43529,4.39154,6.394265000000001,0.4194333333333333,3.83566,0.702925,2.7916666666666665,2.290785,3.564235,1.27271,4.230615,4.79251,4.25282,2.7821,3.848885,5.051935,1.68234,3.44807,0.5826661538461538,2.43919,2.54576,1.170766,3.1322166666666664,2.4732833333333333,2.52519,3.8307,8.14887,2.8293230303030303,3.72036,3.430565,6.8303899999999995,5.490348333333333,3.0623133333333334,4.343295,3.41612,5.59155,4.083465,5.33585,4.53426,4.135715,4.56792,3.8508,1.5126825,1.93792,2.1500966666666668,3.647705,2.4448833333333333,0.19686783783783784,0.19686783783783784,0.19686783783783784,30.471453642857142,0.19686783783783784,3.0623928378378378,0.19686783783783784,0.19686783783783784,0.19686783783783784,3.303787837837838,4.232445,0.19686783783783784,0.19686783783783784,0.19686783783783784,0.19686783783783784,0.19686783783783784,2.96497,5.63909,3.08155,0.2258605128205128,0.2258605128205128,4.43323,4.048056916666667,3.9748929166666667,3.2552725833333334,3.9892061904761906,8.013,11.496306297202798,6.217093,8.28253,7.690397696428571,2.914566666666667,6.248286666666667,4.543488333333333,4.357461506410256,0.2258605128205128,8.101916,6.840707809523809,7.04227,2.89255,9.087270196428571,14.613988958333334,18.052527928113552,56.5921096285316,117.21099996312756,1.3747966666666667,3.365766666666667,3.395575,3.942998157014157,0.2258605128205128,1.6268619230769228,8.980255416666667,15.061671238095238,19.761008055555557,47.682776937343355,13.245414363095238,3.226325,0.23650689655172413,0.23650689655172413,4.551233333333333,2.7955566666666667,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,0.23650689655172413,5.54872,0.23650689655172413,0.23650689655172413,0.23650689655172413,2.67228,1.84159,3.67853,3.644975,4.404788333333333,5.00615,1.833395,4.083145,4.2552,3.11138,1.62514,3.62478,1.0032666666666665,2.2581125,2.035953333333333,5.0336,5.973643333333333,2.7125533333333336,5.715702111111111,0.5352855555555556,0.4589486666666666,2.4847566666666667,2.8795466666666667,2.698635,4.0045,3.625766666666667,7.470505,3.766405,3.67001,3.376965,3.95125,3.142205,3.222885,5.7962,1.88217,0.43321461538461536,0.83431,4.3706775,1.725355,3.87045,3.66889,4.510385,3.48549,2.38059,2.672095,0.6274413333333333,0.741404,4.263875,2.7171966666666667,6.1956,3.607855,3.7837016666666665,2.491485,3.136025,5.63695,3.69762,3.231995,0.8659790909090909,3.1544066666666666,4.360145,2.2552,0.950035,1.5949466666666667,4.131315,6.4669,2.020445,2.988585,4.14892,5.71555,2.39383,2.3005166666666668,2.353975,4.942835,2.33445,3.95766,0.7090157142857143,2.063536666666667,3.319615,1.78422,6.261658333333333,3.034045,3.818005,4.370615,2.98995,2.323845,0.49751999999999996,4.31586,5.1598,6.76615,3.53748,4.108475,5.07445,2.818085,2.0228333333333333,1.21153,5.02745,1.920625,2.60623,8.47382,3.986475,5.3058,3.430025,0.7254733333333333,3.13796,1.2240942857142856,3.148525,6.07535,5.00285,4.99954,3.62873,5.2312,4.34377,1.7105625,1.6973933333333333,4.92627,3.0677766666666666,3.3224633333333333,2.488355,5.6153,4.6182,1.4457550000000001,3.627166666666667,2.804165,2.73572,4.0567,9.0303,4.735125,1.7545475,4.86871,6.49496,4.36071,3.98626,3.850915,3.8511,4.705655,8.13199,2.4749,3.196605,3.17845,4.192185,2.956825,3.181035,4.63241,4.362185,3.58003,3.995566666666667,18.924457666666665,2.8682933333333334,2.620503333333333,3.339933333333333,5.700382666666667,1.1720975,4.15303,2.128465,4.937395,1.3999300000000001,4.442695,4.296265,3.736925,0.95815125,4.595805,4.683805,1.736965,4.56628803030303,4.06852,1.0482157142857143,3.595055,1.964975,2.2026,1.566805,4.301275,3.84866,3.754005,3.596375,2.971106666666667,4.35543,8.029228333333332,4.41796,4.39465,4.865415,3.1685433333333335,4.002775,4.88532,6.573888,0.8983399999999999,0.8983399999999999,4.425685,4.847545,2.21397,1.38656,7.190564999999999,4.159395,3.6359,3.96767,4.661985,4.57054,3.554985,3.856175,6.278259,3.97391,4.57082,4.8571,1.4488285714285714,2.70815,4.45307,4.61622,3.4729687499999997,0.2146475,1.6069825,1.98041,2.5270333333333332,2.110113333333333,0.9507955555555555,1.1744875,1.4589325,2.41224,0.60607,1.0672514285714285,1.9676975,3.99474,3.9387000000000003,2.1084533333333333,2.5890766666666667,2.8779033333333337,2.8613233333333334,0.64535,0.91715875,2.94354,4.62255,4.41721,3.0108,4.59782,4.6916,4.27413,2.06878,4.295735,4.98902,4.41439,6.2802825,3.481635,0.4811405882352941,5.6474,4.5498,3.633665,5.03365,3.317075,1.973626,3.765495,4.088545,2.670235,5.266214166666666,4.408165,1.3985816666666666,5.266214166666666,4.05989,7.0543425,3.7287,1.1725444444444444,3.86927,5.0348,4.04211,2.5170966666666668,5.00245,1.4693825,2.01996,3.17183,3.43257,0.8016244444444445,4.827205,4.80631,3.463855,3.932915,3.5005333333333333,3.011843333333333,1.75213,1.559725,3.185945,3.400805,3.3213966666666668,2.43019,2.29589,1.849609,3.840405,1.3463071428571427,0.8336822222222222,5.63974,3.866525,1.44339,2.5473933333333334,2.2260933333333335,2.8106033333333333,5.993718333333334,2.225465555555555,0.8233750000000001,2.55796,4.294415,2.09274,3.8407,5.2062,5.2571,4.4684,4.27505,4.945685,2.1534766666666667,2.2387466666666667,1.7039333333333333,2.14155,1.8256775,2.3397099999999997,2.22389,1.5235025,2.650075,3.061895,4.33762,6.5273,4.39079,4.07489,4.458465,3.956575,3.80387,5.3498,0.87396375,3.046193333333333,4.620955,1.16547,0.6480506666666667,5.41535,3.529685,2.5965966666666667,3.7216075,6.21982,5.50555,0.938483,1.1616457142857144,0.7188122222222222,4.112174166666667,2.25237,2.787383333333333,1.2020128571428572,2.7286099999999998,2.7539200000000004,5.5053,4.681915,4.35122,5.28205,4.37328,1.2463466666666667,3.634045,1.6105366666666667,3.61059,3.7484,3.398055,2.5097133333333335,3.2928833333333336,2.725706666666667,4.190375,4.12315,3.385695,2.3533625,8.912385,10.242475,4.2743,1.3913371428571428,5.5158,4.02732,4.72709,4.51022,3.783405,3.911145,3.494045,4.157395,3.639505833333333,5.29919,3.88778,3.62667,4.60372,1.8090199999999999,4.860385,5.9422,5.01105,3.3438,3.246115,7.320914999999999,0.8311116666666667,2.555756666666667,2.714866666666667,2.334896666666667,5.0897,3.42601,1.3049166666666667,4.20352,3.381066666666667,3.79128,4.77665,4.1845783333333335,6.768784999999999,3.1612266666666664,2.94948,3.21557,2.8789200000000004,3.93415,2.0435466666666664,2.17464,3.0490833333333334,3.95634,3.7757050000000003,1.9313475,1.511435,3.1852871428571428,3.2297044999999995,0.9718077777777778,2.6353416666666662,2.6353416666666662,1.2338075,5.80595,3.14161,3.110405,3.58598,3.157075,3.3947,3.3667,3.186105,3.288965,2.315796666666667,0.5158633333333333,3.29362,5.5610599999999994,3.04531,3.791885,3.237385,4.14998,4.03524,3.12164,2.492495,3.78066,3.698805,3.24606,3.008115,3.69294,2.6171266666666666,3.924645,3.990315,8.71419,3.44314,3.757525,2.899045,3.98946,4.07557,3.590185,2.333425,3.739465,2.6291225000000003,2.794925,2.85009,3.217385,3.706315,1.7128333333333332,1.7128333333333332,2.28266,3.077725,3.24737,1.5340820000000002,2.41369,3.42573,1.784876,2.91171,1.5340820000000002,4.298865,2.97933,3.87194475,3.01616,3.61412,2.43509,3.248485,4.03341,4.22593,3.49934,4.445635,3.79485,4.281555,3.578905,3.02194,3.15813,2.957945,3.88197,2.65848,3.80653,5.36305,4.17744,3.83386,0.2917391304347826,3.545655,0.43193666666666664,3.82665,3.628225,2.91241,3.48925,3.80805,5.966008333333333,3.238125,2.6013266666666666,2.3192233333333334,2.80078,0.637369,6.757266666666666,3.278345,3.448635,3.432025,1.9295,2.52598,3.25917,3.13587,6.7437450000000005,4.75397,5.1458,4.82071,4.389795,4.32362,3.89233,1.4738116666666665,1.61579,3.86563,4.70886,5.833012500000001,2.6236566666666667,4.921555,2.07727,3.4934,3.77683,1.9213616666666666,4.067785,4.891065,3.5564999999999998,3.7886,2.64531,4.63139,4.70099,3.5401000000000002,4.36757,4.48905,4.910525,4.3473,4.54291,4.066785,3.14274,4.271895,2.578425,3.2988866666666667,3.2988866666666667,4.399435,2.4662866666666665,3.992255,2.2336233333333335,4.48194,3.285553333333333,3.588615,1.8027,1.9884166666666667,1.1655849999999999,1.1655849999999999,1.6325220000000003,3.4057,1.6505966666666667,2.707356666666667,4.006615,5.159461,3.3270433333333336,4.049695,5.66406,2.84511,2.71935,3.01245,1.5851199999999999,4.14592,4.131115,6.578305,1.6664,5.4083,5.62405,3.4384333333333337,3.4644,4.126815,6.11813,2.0292666666666666,2.37238,4.039515,0.47063428571428567,3.79254,4.06233,4.506245,4.263565,2.93584,1.336794,1.6980799999999998,3.92364,3.399535,2.3501133333333333,3.748355,4.894585,5.2553,1.0470525,3.37452,5.03665,3.61041,4.68621,2.4773133333333335,5.27866,3.78714,1.568192,3.73299,1.224,2.7699599999999998,7.129501666666666,3.258065,0.6715927272727273,3.294515,4.016275,3.861695,1.83693,1.83693,5.309951666666667,5.538,2.902525,0.4818444444444444,1.96406,4.411355833333333,4.15819,4.44406,1.7898319999999999,2.9725466666666667,3.48245,1.2363759868421051,1.2363759868421051,1.2363759868421051,0.7508422368421053,1.3282305701754384,0.5773883333333333,1.2363759868421051,0.7508422368421053,0.27585473684210526,0.8532430701754385,0.27585473684210526,0.47498749999999995,0.47498749999999995,0.47498749999999995,0.47498749999999995,1.0463971666666667,1.04474125,2.342783333333333,2.3752633333333333,1.1368516666666666,6.560816666666667,2.6813266666666666,5.997226666666666,2.6239966666666668,3.69572,2.784595,3.36625,2.8454525,4.62753,2.8175566666666665,4.04873,4.016485,4.51124,2.176675,3.71847,4.71512,4.071215,3.142625,4.8842,3.35616,4.50337,5.57275,5.21555,6.2562,5.28275,1.07378875,4.80317,3.764105,3.031365,15.919535,4.628695,5.33055,2.7644,7.37431,3.917675,4.355395,4.845105,3.21439,1.0395325,2.5895,3.828415,4.34703,3.604845,3.08283,4.156255,2.9226233333333336,4.338295,4.609475,4.246935,6.562376666666667,7.353585000000001,1.3098871428571428,3.70944,4.13137,3.93324,3.641825,3.658985,6.99778,2.851045,2.782835,2.558195,4.032435,3.938135,4.752785,2.474695,1.7400425,0.8265079999999999,4.395815,3.270465,3.482855,4.04272,3.46527,4.94066,3.812905,6.53455,6.11125,5.4297,6.7982,3.75286,3.22024,3.262975,3.300135,1.8125375,4.70018,5.7824,5.90095,5.320238333333334,5.320238333333334,2.35357,1.8125375,1.957465,3.151545,0.7259166666666667,1.5353191666666666,0.8094025,1.4782875,2.6106,0.359095,2.82936,4.103515,1.4782875,2.942512,11.126595,6.5621675,2.3168299999999995,1.0176500000000002,1.7590466666666666,4.54464,4.37046,5.6787151428571425,1.9718625,2.21733,3.70404,3.35011,4.541025,1.5664666666666667,5.2232,3.553266666666667,3.36866,5.05695,7.175962,3.925705,2.4251625,2.778116666666667,1.8409566666666668,4.11806,5.35877,1.844728,5.60055,4.39538,6.045065,0.51598,4.512625,4.667125,4.845095,2.913255,2.994605,7.3314,8.107966666666666,6.7293,2.0988666666666664,2.0988666666666664,2.0988666666666664,5.308,4.807565,6.58675,3.395665,2.755615,2.724187105263158,4.22648,5.77295,2.6298585,1.81924,2.6298585,7.2265685,4.9617,4.4791759523809525,9.08946,4.4791759523809525,4.4791759523809525,3.315804285714286,7.09405,5.4509360000000004,2.780376,2.780376,2.54096,7.13295,3.11696,3.55525,5.359059166666667,5.359059166666667,5.359059166666667,7.60616,3.6746800000000004,3.454755,3.787955,3.57991,0.8757925,7.731083333333333,2.7693833333333333,6.82785,3.71795,12.664382,4.88166,5.490409166666667,6.84259,2.605575,3.412305,1.0785716666666667,5.490409166666667,3.404815,1.752785,1.752785,2.93455,5.140453333333333,1.778355,4.653583333333334,0.8280160000000001,1.3859599999999999,0.8280160000000001,1.87283,2.606371,5.115901,3.652865,1.3859599999999999,3.214425,4.751925,0.96695,3.490085,4.430155,2.288065,3.98534,2.64461,3.0617,2.97019,0.986178,3.732445,2.457215,2.09975,1.69658,3.10335,4.17389,2.63055,3.821305,1.2515377777777779,1.2515377777777779,1.2515377777777779,4.14998,3.16766,3.16766,3.15883,3.78444,2.11812,1.27308,1.27308,2.991815,5.2050825,0.7905725,1.30209,2.861375,1.18021,2.4823,0.986178,0.986178,1.8672533333333332,0.986178,3.1512933333333333,0.6120266666666666,3.1512933333333333,5.850544166666667,3.37642,2.2843433333333336,1.8287530555555556,0.660695,2.4894480555555556,3.272885,2.4894480555555556,0.9849955555555555,3.22887,4.05034,3.919175,3.75363,2.614485,3.80723,1.8522233333333336,0.8186294444444444,0.464305,0.8186294444444444,0.35432444444444444,0.8186294444444444,0.8186294444444444,4.52138,4.35905,5.07365,3.32717,4.362115,4.405315,5.20955,3.544165,3.936875,1.2898485714285715,2.908526666666667,4.399055833333334,3.936675,1.3484733333333334,2.7565500000000003,3.844305,3.886205,4.13674,3.39626,4.155345,3.714375,3.16259,4.34215,2.2882933333333333,6.1834,3.546065,3.96799,4.356352142857142,0.8668676428571428,2.13811,3.25491,5.95269,3.976005,3.20759,3.048056666666667,4.07159,7.255796666666667,3.0369566666666667,4.26531,2.7887066666666667,3.759445,4.043355,5.66025,5.4773,4.595015,2.89437,5.55605,4.667985,3.4834333333333336,8.01025,3.27136,2.2864625,2.44548,4.70705,6.46895,5.1388,4.703325,3.925215,4.901725,5.7118,0.5192130769230769,7.423185,4.42578,3.64242,3.762675,4.608715,4.1382,2.9445533333333334,2.55245,1.3267416666666667,0.5693569230769231,1.8142399999999999,3.1863566666666667,3.16719,3.9205,3.781285,3.75883,10.708918333333333,3.84008,3.937575,2.995825,0.7367833333333333,5.657246666666667,2.8992,1.5784633333333333,4.477663333333333,5.349545,2.450345,7.79813,4.558435,2.352328,2.352328,2.352328,4.20699,9.05816,3.925695,3.232925,3.232925,3.31398,9.96401,0.999365,4.66295,4.4582,4.17426,2.7188466666666664,2.23459,4.1758,3.94024,6.4644,5.997954999999999,3.875665,2.79122,3.84874,4.475474999999999,3.3624845,1.12770625,2.7051933333333333,6.10582,3.3267875,5.37445,0.99130625,3.7602666666666664,2.3072466666666664,2.5613033333333335,1.7706625,1.7749433333333335,2.127056666666667,5.75285,2.245785,4.651395,5.3716,1.7479140000000002,4.98849,3.706125,4.82005,3.3333999999999997,2.375735,2.723595,4.209665,4.163455,4.163455,1.1314625,1.5602066666666667,2.786113333333333,4.43386,2.2901730909090907,4.870176000000001,1.739706,2.69284,2.0874566666666667,1.6405025,1.6405025,4.595675,7.426796666666666,1.8971099999999999,2.96679,2.201095,4.609255,3.21159,0.82879,2.78197,0.82879,2.63725,3.28899,5.5408,5.4859,3.71466,4.617544166666667,5.59625,2.44121,1.8168833333333334,2.92553,2.2210199999999998,6.0337,4.965385,2.53544,3.94149,2.5435,4.576355,1.0845025,1.108266,1.8816166666666667,1.2483899999999999,2.5403733333333336,2.77858,2.2823433333333334,2.8028066666666667,2.5139,4.674105,2.645636666666667,2.435636666666667,2.79935,2.4601633333333335,2.8026466666666665,2.6506666666666665,1.92832,2.5240833333333335,4.178295,4.2975,3.23708,2.90797,2.826966666666667,2.2728025,1.8980975,1.1739666666666666,0.2961205,0.13172391304347827,2.1046766666666668,1.8269433333333334,0.13172391304347827,3.5917022463768116,1.911725,0.13172391304347827,5.710420277777777,2.11519,6.18311,3.39149,3.353566666666667,2.6141133333333335,2.9638166666666668,2.206505,4.326595,2.9579966666666664,3.3095266666666667,0.4081478947368421,4.017173333333333,2.711997894736842,2.982725,1.828375,2.5759,4.292025,2.32081,7.915855,5.2338,3.295095,3.756715,6.18969,6.05987,1.74731,4.1418808333333335,2.168475,2.060665,6.65937,7.86724,1.1465533333333333,2.0975925,3.716865,2.55237,2.955235,3.09674,2.71719,4.958285,2.34999,3.102855,3.29717,3.11839,7.66786,1.3403533333333335,2.05669,2.92502,3.408305,1.7553833333333333,3.331605,1.566315,3.821965,3.25838,6.68375,3.31401,9.0395225,3.422925,1.607514,1.7337266666666666,3.119965,6.09932,1.592935,1.7242566666666665,5.38782,3.38378,4.007815,2.606305,2.0776166666666667,3.195265,10.488295,5.04052,6.30572,3.38885,2.421265,2.135985,2.68244,2.921535,3.532445,1.6239483333333335,1.6091766666666667,2.54332,3.529315,1.7722475,3.23612,2.76741,4.10397,3.710445,3.602425,1.2099183333333332,2.57028,1.10273,1.431692,1.895365,3.4553,3.398985,3.78786,2.648715,3.63609,3.96636,3.25577,1.45,3.45471,3.4995200000000004,3.10479,1.663445,3.284985,3.45794,1.522805,3.230615,1.6209166666666668,3.99574,3.96749,4.715665,2.59864,3.93179,1.70984,3.34506,5.5926,1.783735,1.0851428571428572,3.569933333333333,2.66577,4.431105,4.25307,2.9948,4.683755,4.873365,2.258836666666667,5.2789,5.539645,6.6033,4.08602,6.377002666666667,4.06258,1.7137166666666666,2.776426666666667,4.572235,4.65383,2.6002,6.964792,1.1736185714285714,3.4039333333333333,2.17292,1.7701059999999997,2.432656666666667,2.790506666666667,0.3843292857142857,2.6491000000000002,3.9857,3.482665,2.46264,3.4553666666666665,2.3115633333333334,2.43934,2.138875,8.92687,4.795165,2.04388,5.39725,2.4943477826086955,0.7476960769230769,2.7789133333333336,7.260768,1.778004,4.524246250000001,6.232403333333334,1.7082025,1.621355,1.38779,3.801675,3.215215,4.35666,3.9014800000000003,2.37512,3.63123,0.9266260000000001,2.6500559999999997,3.918365,4.128365,4.91856,3.051715,5.01735,4.470885,4.15633,5.07855,5.78065,4.824515,4.113525,5.6843,1.7178999999999998,1.86459,2.77865,3.383855,1.1376,3.8873,2.2862633333333333,3.4821333333333335,4.446005,3.2395099999999997,2.53249,1.5023733333333331,3.052766666666667,2.8396058333333336,2.67135,2.83299,2.0219733333333334,2.1896725,2.38291,3.71115,4.345635,3.80824,4.681705,3.550705,2.353615,3.04322,4.88433,3.9882000000000004,4.61494,3.288915,2.25533,4.499358333333333,1.7825533333333334,4.10661,4.8591516666666665,5.974744523809523,3.84244,4.23364,5.3845,3.1411166666666666,3.9765741666666665,4.552255,3.29308,3.8106539999999995,3.455665,1.281495,3.296575,1.66124,2.190815,5.16935,5.2461625000000005,3.8106539999999995,3.993595,3.443145,1.5845799999999999,3.672945,1.970855,2.2049166666666666,2.013165,2.715735,1.6194001515151515,1.6194001515151515,1.6194001515151515,0.5967318181818182,0.8168744444444445,2.219871111111111,1.112925,3.650585,1.3948600000000002,3.786035,5.28195,4.578655,3.217825,4.119475,3.153925,4.971735,1.6627275,3.00604,2.68922,3.352265,5.973146,4.254385,5.23025,4.262515,0.9673375,2.245075,1.2706433333333333,3.72735,4.008985,4.20359,5.11655,4.44418,3.8125,4.336035,3.6421,1.70548,1.1551883333333333,5.320893333333333,1.0735066666666666,1.4067566666666667,2.7688966666666666,8.35116,3.04179,3.796155,2.93993,5.5663175,1.5820525,0.9900933333333333,1.48288,3.20423,3.487905,3.94553,3.768505,1.8971,6.725455,2.8970266666666666,0.90404875,4.675785,2.9993433333333335,2.6307633333333333,2.4265733333333332,3.547166666666667,5.656760833333334,2.7863900000000004,3.14408,3.5603,2.4858733333333336,2.7794233333333334,2.8960933333333334,3.080465,2.009515,4.823375,4.70361,5.16085,1.02073,0.7316469999999999,3.9125333333333336,2.5864333333333334,1.0470325,2.762265833333333,3.67662,4.315465,7.016895,4.672015,3.6026000000000002,1.7579879999999999,3.644385,3.76974,2.774376666666667,2.5934197142857145,4.02392,2.81147,4.923258666666667,0.8923933333333333,3.16456,1.736212,3.96081,4.24436,2.1351,1.0147175,3.128675,0.41420899999999994,3.30397,6.5826,5.2778,2.811084,1.473566,4.056466666666666,0.7646955555555555,2.402413333333333,0.7646955555555555,4.007975,4.518355,1.302235,1.7384725,5.021725,1.7707499999999998,3.5518,2.745645,3.56406,1.273126,1.6023433333333335,4.02638,4.306225,5.3169,2.944642,2.7593,3.205975,1.6306675,2.113675,1.8208025,1.86053,4.46201,1.440911111111111,1.440911111111111,3.393775,4.82584,8.274911666666666,4.57649,8.234225,2.13833,3.862855,3.968745,1.6726999999999999,3.6056875,3.876205,2.796165,5.02445,3.055555,2.60344,2.9024099999999997,3.869395,1.09682125,4.18266,4.653155,1.1535783333333334,7.941363333333333,2.720595,3.323545,3.4994899999999998,5.35555,4.88771,3.4612625,2.4165266666666665,2.87505,2.0324466666666665,3.7687666666666666,2.4064925,2.1716175,7.5075346666666665,3.4281,2.92643,4.22649,22.631270080586084,0.6894666666666667,2.5667,4.53467,4.60489,8.52405,4.84286,4.575485,4.595915,6.877193333333333,3.62072,1.5825500000000001,4.863945,3.301065,1.16195,1.16195,1.16195,2.3879562500000002,1.6839925,3.339445,1.5454275,2.974175,1.4871800000000002,2.676425,2.65422,3.023225,1.5454275,3.348885,2.61926,4.192855,4.797513333333334,5.0934,0.7694058333333333,3.37148,2.657165,4.652685,3.637075,2.98743,2.396675,1.672885,2.430675,1.444026,3.691175,1.7323625,4.470605,10.910915,2.781523333333333,2.36798,4.821446666666667,4.7899666666666665,4.513466666666667,6.57405,2.30385,5.490348333333333,4.503435,1.0271766666666666,1.1993957142857143,6.462333,4.20785,2.3807625,3.75563,1.927405,3.742515,4.78,4.48743,4.01887,1.3129285714285714,4.306805,4.79426,4.69532,6.317736,3.469715,5.385,4.397,4.431685,5.047,3.6039,4.906,2.0416975,3.38586,3.108735,3.159535,4.50892,6.16225,4.438095,2.766106666666667,3.664,9.039719999999999,4.943795,3.285856666666667,3.634315,3.34981,4.52811,4.22831,4.67019,6.660091666666666,3.633065,2.7853866666666662,4.1334599999999995,2.390525,4.23151,2.28699,6.47555,1.6150383333333334,4.71077,4.78807,11.9223575,0.5150542857142857,4.3203,5.23305,0.6441128571428572,3.600095,3.930085,4.06298,0.946451,4.90974,4.86539,2.6260866666666667,9.940393333333333,3.1953133333333334,1.8462399999999999,2.3139,3.431575,6.07485,0.5786766666666666,3.901045,2.002905,5.49735,0.7194392307692308,4.15642,5.7584,6.1813,3.532885,6.4564475,4.76163,3.5726837499999995,2.6322300000000003,2.7407766666666666,4.29198,4.46103,5.0519,4.94508,5.3577,3.2321266666666664,6.866881666666666,2.746625,3.090801,2.0588675,4.177705,2.1487866666666666,1.5836,3.1654233333333335,2.9886199999999996,3.292146666666667,3.431233333333333,3.6586,3.2101566666666668,2.6479633333333332,5.71735,3.1595866666666663,3.772245,5.10675,2.7233199999999997,1.1636,3.1075533333333336,2.9988533333333334,3.889065,2.9263600000000003,3.206436666666667,4.623773333333333,1.9548033333333334,1.6599925,2.97373,3.730685,4.385925,1.09254375,4.19466,3.310455,4.092966666666666,3.0077466666666663,4.774822,3.899505,3.346835,4.07129,1.520135,3.832485,0.6512375,4.756495,5.044,17.153175454545455,3.2175933333333333,1.1201266666666667,3.917415,0.6392957142857142,2.68455,4.43588,1.97124,1.2338471428571427,3.797285,4.61123,3.134306666666667,0.7187916666666667,2.646695,8.01002,3.79148,5.5034,4.88413,5.2587,3.255193333333333,3.7321000000000004,3.2241766666666667,7.127976666666667,3.92691,5.0691,2.082775,0.43942,2.024905,3.15898,1.8333,3.850075,3.731275,2.8911599999999997,4.975665,0.6917049999999999,4.630685,3.797895,3.04854,1.16358,2.7260233333333335,1.9936999999999998,4.869525,3.908555,2.247195,1.6671,3.48487,4.348635,4.342165,6.189731666666667,2.1230166666666666,4.677825,4.368665,3.822895,1.9060479999999997,3.77979,6.021538333333334,4.83142,2.70954,4.860725,2.63757,2.6261,3.93388,3.971965,1.3463450000000001,4.86145,2.02772,2.7660033333333334,5.2196750000000005,5.2196750000000005,5.50575,1.596284,4.907975,0.9190375,1.78943,5.1356,2.5633766666666666,1.4192033333333332,3.1268833333333332,0.90242,4.324933333333333,4.68041,2.987405,5.01955,3.9338,3.76643,5.526315,3.62049,3.6995,2.772873333333333,2.4457400000000002,2.78275,2.9045433333333333,4.449695,1.6370569230769234,3.0066066666666664,4.47188,4.78404,2.3155808333333336,4.14331,4.676935,4.74913,3.4936000000000003,5.3286,4.99368,5.28225,4.96056,3.809995,3.889355,3.689335,4.4961,5.5272,4.67752,4.93601,4.644565,4.63005,0.6863608333333334,5.01755,4.53248,3.908395,7.249560000000001,4.128615,3.96804,4.200585,4.76109,3.6866,3.64634,2.1220962500000002,4.4678775,1.7091475,1.3285457142857144,3.6636,2.0595933333333334,2.4695633333333333,3.874562,3.4691666666666667,2.91984,1.1356066666666667,2.0260325,4.639325,3.88419,1.8586175,1.8586175,3.584085,1.6167919999999998,3.1563866666666667,4.537965,3.47204,3.778595,1.48845,2.05412,3.5594574999999997,1.981425,4.039855,4.337425,4.47253,4.01627,6.771413333333333,2.733275,3.73352,4.64213,4.439865,3.351433333333333,4.338645,4.14428,4.31292,2.33914,2.5772933333333334,4.62108,3.854485,3.605225,3.788745,1.6297175,3.85479,4.402855,4.5909,4.20956,3.7747675,3.7747675,3.1424625,4.060845,4.288765,4.011115,1.6948619999999999,7.345345,3.95667,4.971855,4.35006,4.2665,3.582065,4.919605,2.8433,3.2649,2.83154,5.03905,1.859318,4.287405,5.41841,5.12165,0.711602,4.75983,1.17373,4.88312,4.63012,4.46493,3.93345,5.12535,3.6770666666666667,3.6770666666666667,0.8550840000000001,2.17196,4.91435,3.510655,3.951645,5.2178,5.27605,3.320485,4.07869,1.3542916666666667,2.67307,1.67095,1.276925,4.3311106666666666,0.8704230000000001,2.4153333333333333,3.0870200000000003,1.18298,2.04793,2.6915366666666665,1.3329583333333332,6.34876,2.043895,2.58561,5.6371,1.9593825,2.78275,2.990035,4.631135,3.7978,3.2731866666666662,3.9849333333333337,1.741172,2.1790616666666667,4.280435,0.6557564285714286,2.178533333333333,2.3385766666666665,3.21243,2.7927,1.1112185714285714,0.8416,2.4638066666666667,4.200465,1.3040571428571428,2.2162525,1.1922,5.507651666666667,2.211405,5.0607,4.40731,4.346205,5.2021,5.36685,4.086845,4.24632,1.440825,3.9741,1.74298,2.51449,1.2102514285714285,4.39226,2.181245,7.2194,4.41466,3.91596,1.46627,6.991585,3.51448,1.5400533333333335,4.171225,3.128225,3.89795,3.32195,1.98453,1.98453,3.1044466666666666,1.29137,1.29137,1.9060479999999997,2.825293333333333,2.01718,1.3332683333333333,3.6029666666666667,1.07033375,3.1702266666666667,2.3912075,1.892565,1.5030766666666666,2.19313,2.118055,0.28147,2.46273,1.26204,2.396306666666667,2.0874566666666667,2.4881325,1.0582433333333334,1.098082,3.808666666666667,3.2086966666666665,1.98453,1.725355,1.6351033333333334,2.50859,2.3886233333333333,1.86557,3.3903,1.19899,3.1983200000000003,2.80911,2.5220466666666668,1.555234,0.987194,2.5718,0.987194,2.5718,0.71125625,0.71125625,0.48766,2.2703825,2.23623,0.71125625,2.2105775,2.3870299999999998,2.367485,1.605685,0.8466255555555555,0.71125625,0.71125625,1.64854,1.64854,1.99174,1.725355,0.71125625,2.24622,0.46899153846153846,2.9998299999999998,1.9874,2.4384466666666667,2.52344,2.52344,0.383158,0.383158,1.9060479999999997,1.99637,2.16668,2.06276,0.383158,3.5196,2.506575,1.670984,0.6303,1.670984,0.6303,8.66489,2.42053,4.063433333333333,2.611616666666667,3.010623333333333,3.0917033333333332,2.9081566666666667,3.5919666666666665,2.501,1.6395525,2.6894333333333336,3.0369566666666667,2.4051066666666667,1.64854,2.670764126984127,2.670764126984127,2.76586,2.171045,4.187115,2.3267633333333335,3.3014200000000002,2.7045999999999997,1.4245139999999998,2.45468,2.3120775,0.7875754545454545,1.66071,3.770375,1.7456140000000002,3.21207,2.5232033333333335,2.73255,3.9863999999999997,1.6030266666666666,3.4967,3.0064266666666666,4.2721,1.2282579999999998,0.23650689655172413,1.2958314285714285,1.2958314285714285,1.0138933333333333,2.889813333333333,3.7808333333333333,2.609573333333333,2.1126366666666665,2.1126366666666665,2.15324,1.6209166666666668,0.9693630000000001,1.6872800000000001,1.6872800000000001,0.71125625,1.9060479999999997,2.8605066666666663,3.368066666666667,2.3912075,2.2995200000000002,2.2995200000000002,2.2995200000000002,1.1020966666666667,1.523642857142857,1.523642857142857,2.4484525,2.8357833333333335,2.650727051767677,3.90003,2.4886166666666667,2.4973,3.64567,3.71673,6.78636,3.708645,4.41755,4.1731,13.6416325,4.842585,3.391965,1.0036325,4.171835,3.347165,2.375455,3.708975,5.1008,6.3399486666666665,6.1426,0.47912,3.99597,2.972165,4.03331,2.460215,4.634705,4.44746,4.23723,8.522525,3.599375,4.00844,3.93894,3.3159500000000004,7.976951589743589,3.2651166666666662,2.6397,3.75543,3.809385,5.0718,4.093915,6.57949,3.663425,1.33938,2.784735,0.9050925,4.70622,2.71176,2.66497,3.99537,3.085235,2.769865,4.797345,3.990425,8.08109,3.960675,4.626381,2.4776333333333334,5.01544,2.82958,0.9690325,0.9690325,3.39996,3.86733,2.22787,2.16314,4.21308,2.735645,3.38038,1.857545,1.92481,2.807605,2.39556,1.1659275,3.318825,4.71439,8.32647,1.619098,2.769835,3.109265,3.422765,2.78924,8.32124,4.09268,3.4372666666666665,2.8656900000000003,4.06726,3.30767,3.062343333333333,3.1634266666666666,3.99047,3.779885,4.531075,4.20991,0.4056686666666666,1.52166,2.4312833333333335,1.746905,4.52843,3.609775,2.75607,2.27214,4.582045,3.78492825,2.1451125,2.355645,0.916269,2.24848,2.5581866666666664,2.5581866666666664,5.24415,1.87964,3.072173333333333,2.294556666666667,2.2304333333333335,1.7540233333333333,3.146145,4.05641,5.0749,4.428565,5.223,4.76845,2.745515,3.00571,2.0444400000000003,4.80757,5.466023333333334,1.95217,2.9563333333333333,2.1172775,2.42503,3.9032999999999998,2.490276666666667,5.39275,3.790675,3.5187,4.338045,3.0209833333333336,3.609465,4.18121,2.2713933333333336,2.5381466666666666,0.40683142857142857,3.8638666666666666,2.78622,3.378415,6.14225,4.710635,5.853035,1.939655,1.5772000000000002,3.041315,5.18845,6.448,5.9677,3.03336,2.1725566666666665,3.886065,2.1634466666666667,4.733355,2.2540566666666666,2.2807475,5.15805,4.79359,4.5175,1.645215,1.8881225,1.05949,1.05949,1.206316,0.9210200000000001,0.801998,1.846756,4.318505,10.35272,4.068585,4.362605,4.03286,5.9919525,2.644785,1.6622833333333331,3.4096091666666664,2.920775,4.84531,2.432586666666667,2.6867733333333335,2.8922833333333333,3.200226666666667,2.31438,3.1003233333333333,3.18155,3.027863333333333,3.4878666666666667,3.386366666666667,2.9135333333333335,2.7323166666666663,3.28314,2.4199566666666668,3.303803333333333,3.0617699999999997,2.9790500000000004,3.3655333333333335,2.08376,5.583521523809524,3.083043333333333,4.136712666666666,3.2335,2.999413333333333,3.817066666666667,2.9250833333333333,2.797966666666667,3.10181,3.23744,3.4397,3.3106733333333334,1.985535,2.7291066666666666,2.784746666666667,2.923775,2.923775,3.2897233333333333,3.06335,2.5396666666666667,2.7444366666666666,3.0683433333333334,4.2645,2.80706,2.7576,2.7163133333333334,2.8258666666666667,4.536988333333333,4.913935,1.6613783333333334,3.5341666666666662,3.7239,3.390858,3.2631866666666665,3.7048666666666663,3.5644666666666667,2.91872,3.3961040000000002,1.9592199999999997,2.8306690000000003,3.5453666666666668,3.4067333333333334,2.5362466666666665,2.58473,3.8604333333333334,2.9107033333333336,3.148903333333333,2.4853675,1.1705583333333334,3.17679,2.559346666666667,2.192693333333333,2.45049,3.160966666666667,3.150513333333333,1.9731560000000001,5.6647799999999995,2.41154,0.948704,4.298485,1.9006254166666667,1.6537733333333333,4.44996,4.27719,3.332375,2.3463,1.3457275,3.382585,2.941485,2.629205,0.396204,2.11637,0.396204,1.820905,1.3457275,2.67508,3.93703,2.3672975,3.446105,3.27266,0.47037266666666666,2.9215233333333335,0.92959,0.44097470588235294,3.69107,3.90747,4.950245,2.57145,5.2843,4.25846,3.84473,2.181395,3.8971999999999998,1.7081140000000001,5.72035,2.32062,4.330425,4.600135,3.3369999999999997,1.9584633333333334,2.0770399999999998,1.3393,1.84404,0.8864575,0.8864575,4.369705,2.216886666666667,5.999826666666667,2.3141125,2.69199,2.28922,2.2770785,2.20236,5.99505,4.2497325,2.0473725,2.0640933333333336,2.2770785,2.59788,3.9034185,2.2137624999999996,5.750388333333333,2.3141125,3.323575,3.51418,3.133153333333333,5.6332,4.87641,1.94949,2.0651525,2.282565,2.46211,4.853835,5.44715,1.969625,3.780245,1.5851199999999999,1.6281375,5.26485,10.378408333333333,2.14326,2.2868133333333334,2.49222,4.145605,4.281445,1.9038725,4.665865,4.90279,2.806365,39.55747542857143,2.8405466666666666,3.0616066666666666,0.40924722222222226,4.6217250000000005,2.262723333333333,0.9243033333333334,3.974635,3.74193,1.89723,1.8907075,2.37594,3.846565,1.4281485714285715,3.3190749999999998,3.683605,4.717745,0.918032,5.01555,5.12695,4.917625,2.84226,1.6440725,3.771935,4.55506,3.832955,3.134825,3.63205,3.897515,11.824212222222222,2.793763333333333,3.128675,4.03945,2.79882,4.373165,3.513975,2.335495,3.204825,6.40795,4.64337,5.20035,5.19905,2.43882,3.783035,4.56136,3.661445,4.65357,4.421065,0.12106195652173914,2.282295,5.29385,2.717905,1.7183166666666667,1.167425,1.167425,2.27463,2.630375,2.772375,1.862884,2.82839,4.455125,2.60326,4.4072241666666665,0.5739357142857143,4.830545,3.67736,4.95602,4.77344,4.594825,1.222745,1.03691,4.3768,2.966476666666667,3.103006666666667,3.9456700606060604,4.41688,6.188409999999999,5.33935,3.963955,3.45067,2.1253758333333335,1.5158416666666668,4.42654,0.30254,3.374355,3.787815,3.881655,14.393606666666667,1.9853025,3.1828800000000004,0.7559025,4.598775,8.330975,3.181515,1.8645133333333332,5.73265,3.1510433333333334,1.0654044444444444,4.94706,2.771765,2.84719,4.879725,3.4402733055555554,1.0931875,6.688861666666667,0.74730375,5.1331,3.2138985555555557,1.410955,2.108658638888889,3.2535875,3.2535875,4.03458,4.3798994166666665,1.3284875,2.33711,2.82379,3.61411,3.06186,2.66277,3.08648,3.485035,6.702079333333334,6.4978,3.998995,3.257365,4.59369,4.64347,3.352455,3.421735,3.51203,3.90282,4.50751,2.523023333333333,2.6322,1.6440616666666665,2.315186666666667,2.2939825,1.5383775,3.147536666666667,3.5441333333333334,3.5129333333333332,3.0857500000000004,2.53403,1.62514,1.6939733333333333,0.4565027272727273,2.64864,1.6415285714285714,1.9005475,3.5808666666666666,2.4825466666666665,2.6186700000000003,1.0126375,2.2524075,2.50872,2.8002,3.608225,5.47825,3.77617,2.9256,2.2463466666666667,3.41524,4.38937,2.36437,5.2451,1.92599,3.71652,2.75175,3.930225,1.32689,0.628362,2.2839025,3.34557,3.148565,4.153545,4.90974,8.959315,3.3783,2.2396366666666667,1.8318366666666668,1.794666,1.794666,2.86068,2.5570533333333336,4.936105,4.543415,3.54689,4.983145,4.30692,4.32231,3.1694674999999997,4.40549,7.924497499999999,2.509275,0.5045225,3.1985799999999998,1.3539166666666667,1.0372514285714287,1.9503366666666666,0.857382,2.1119475,5.2977,5.1458,5.99767,0.94027,7.28753,2.029,1.5396033333333332,2.31924,4.118875,3.3480000000000003,2.371055,3.746885,2.982226666666667,4.2548,2.9247266666666665,2.8164433333333334,3.0219733333333334,6.9292750000000005,2.50957,3.88466,3.8310750000000002,3.5107774999999997,1.47928,1.112595,4.277855,2.802656666666667,3.3673,5.7202625000000005,2.624785,2.295085,2.38326,3.277455,3.8564666666666665,2.40312,3.920233333333333,3.02457,5.6175,2.4473485,1.869675,4.846445,5.3422,4.74867,3.93399,1.6630666666666667,2.3401625,1.9212875,3.38674,1.65046,0.9133683333333332,2.657665833333333,2.10386,2.03927,4.287435,0.761415,5.70305,1.346185,0.7982618181818182,3.550466666666667,4.04975,0.6696014285714286,3.3471605,3.172616875,0.8416,4.4118,0.17873071428571427,0.17873071428571427,0.17873071428571427,0.17873071428571427,0.17873071428571427,0.17873071428571427,1.91836,3.757065,1.91836,1.91836,1.8348766666666665,0.17873071428571427,0.17873071428571427,3.5056,2.6943366666666666,3.61631,3.29008,2.30021,3.51331,1.4274471428571427,1.6779879999999998,3.3624845,1.404866,2.6856500000000003,2.6359666666666666,5.840473333333334,4.03996,4.176355,6.6868,4.52879,4.806745,3.728925,3.926255,7.277929583333334,3.997866666666667,3.683866666666667,2.28309,5.251643333333334,2.59071,2.1143625,1.7632833333333335,4.686655,5.23765,5.23025,5.194,5.60065,4.607795,4.74637,0.7201681818181819,0.7189285714285714,0.7189285714285714,4.776655,2.367863333333333,3.60753,1.0159514285714286,4.50424,1.4413857142857143,2.3600166666666667,2.65986,4.3466,4.3466,6.96335,4.601335,1.3646533333333333,10.227891666666666,2.990346666666667,1.2776666666666667,5.2262,5.3842,3.91277,3.18948,2.61514,4.343366666666666,0.8096733333333332,3.4129666666666663,3.3468666666666667,3.819733333333333,3.18939,1.5301200000000001,1.47435,4.886278333333333,3.224156666666667,3.27703,3.4484,5.32158,3.4396958333333334,0.799607,2.0524766666666667,3.7916000000000003,2.2537016666666667,3.701833333333333,3.4332666666666665,3.2008166666666664,3.5005333333333333,3.119946666666667,2.698866666666667,1.1911666666666667,3.09708,2.54801,3.58172,3.12964,3.62374,2.722936666666667,3.4056333333333337,2.992175,1.645224,2.169513333333333,2.7294061904761904,3.5741333333333336,1.828876,3.2825,1.8454166666666667,3.8249333333333335,5.183283333333334,4.90606,2.4956875,2.55525,2.8538,2.3777475,1.6662571428571429,2.2264825,3.415497142857143,2.479245,3.647766666666667,2.924135,3.8414083333333338,3.19594,1.3071333333333335,1.271305,1.7794475,2.229205,3.1312766666666665,3.542733333333333,5.04175,7.7568,2.749135,5.22895,3.830525,15.510264333333334,0.52697,10.996405,0.8127466666666667,3.27101,2.8958866666666663,2.2224533333333336,2.821265,1.6091259999999998,1.45,2.390076666666667,1.2521879999999999,2.8116693333333336,2.0413799999999998,2.867426666666667,2.143143333333333,2.68168,1.48067,0.668295,3.12416,2.4678666666666667,3.0440066666666667,1.1020966666666667,3.5798666666666663,0.7210108333333333,0.3613346153846154,2.2005,4.58049,4.773805,4.496615,0.7695345454545456,4.011825,4.567535,1.1309325,2.54425,5.235755833333333,3.346005,3.89931,4.148705,3.978385,1.89428,3.817405,2.728146666666667,2.951455,3.535275,2.74469,2.710435,3.864005,3.25649,3.75954,2.169655,3.374665,4.60655,1.9554633333333333,4.565265,2.2118575,4.14323,5.16042,1.9652825,2.6585199999999998,3.11121,6.049943333333333,2.44352,3.37289,5.13525,4.063433333333333,3.81504,1.9547800000000002,2.837775,4.851045,3.6089,4.310395,3.7383333333333333,3.1418666666666666,2.8521733333333334,4.051,3.2209633333333336,2.7149699999999997,2.7541966666666666,0.44675944444444443,2.382225,2.20809,4.702705,4.74289,3.130076666666667,2.677403333333333,3.161913333333333,8.164075,3.65628,3.807785,3.0489833333333336,4.18897,3.165305,3.7135033333333336,2.6952366666666667,2.28797,2.70261,6.4622,4.688935,2.1078,3.353155,3.190935,2.6092233333333334,4.67612,1.74282,6.188783333333333,4.038045,4.94549,4.517785,6.5413,3.616515,6.808241666666667,3.5654,3.206295,0.6329314285714285,2.23597,1.55021,2.979816666666667,3.4867962500000003,3.90893,4.041935,5.24935,2.7534233333333336,4.77346,3.6506333333333334,3.9502666666666664,3.3146966666666664,4.50332,4.729375,4.673645,2.9378433333333334,5.635676666666667,4.694655,1.4591316666666667,5.2809,3.526225,2.670555,2.22467,2.3666066666666667,4.627613333333334,1.3238957142857142,2.36482,1.989,3.764315,4.230575,2.61757,3.4763,3.025022,2.467093333333333,3.913275,1.371786,2.321946666666667,2.3446433333333334,2.8111866666666665,2.5547933333333335,2.6592766666666665,2.7034233333333333,3.994985,2.9292366666666667,2.8056099999999997,4.139775,2.208295,3.85728,3.573045,1.6961062121212123,1.6961062121212123,4.603455,2.8023933333333333,1.7944475,1.3142525,2.0632575,2.08005,1.25597,1.51123,0.646948,1.5923066666666665,1.5559066666666668,2.96195,2.111596666666667,1.73686,1.9579733333333333,2.3125833333333334,1.45549,1.77088,1.89426,2.5015,4.00743,2.859995,2.88519,2.710275,5.727775,3.0175,4.34205,4.005410833333333,2.01448,3.987935,2.910115,1.878985,3.61157,1.9190975,2.996005,3.66346,1.93604,4.548615,4.1506,4.09802,3.4307,0.8429477777777777,5.0224,3.862115,3.344345,4.095815,2.404063333333333,4.591815,4.77558,5.0584412500000004,9.209523333333333,3.720415,4.43722,2.916593333333333,3.696505,4.48731,2.361395,2.712385,4.016315,2.1673525,6.033135000000001,1.849362,2.800315,5.877688333333333,2.9896966666666667,4.286296,1.2734485714285715,4.483405,4.532075,3.2452466666666666,4.78091,4.821825,6.653235,15.952540654761906,0.6510470588235294,1.0582433333333334,3.068376666666667,3.94543,3.6047,2.113675,3.309825,4.04838,4.87488,2.461605,4.722245,1.7075500000000001,1.7075500000000001,5.2644,0.7531300000000001,1.812856,3.158595,3.863065,0.3746,1.97881,4.0953514166666665,1.139115,3.1018600000000003,2.7196866666666666,2.973635,7.53514,2.5645000000000002,3.9629333333333334,1.9943733333333336,2.217706666666667,3.9136375,3.13344,3.478615,7.0791303333333335,1.877435,2.870725,4.587865,6.8058175,1.9670666666666667,2.3461066666666666,2.6080799999999997,1.39815,2.461395,1.6395974999999998,3.913285,3.48034,1.4614925,1.885705,1.885705,2.8770466666666668,5.59635,3.9508433333333333,3.865495,4.56457,4.54742,3.14989,3.714945,4.9431,3.48188,4.544826666666667,3.537385,4.42513,0.9132960000000001,0.35877625,5.2848,3.84627,2.4531633333333334,7.93641,1.57465,4.7148666666666665,3.974935,0.35530083333333334,1.96586,1.3857466666666667,1.87665,1.9058333333333335,5.534692,3.17029,3.234455,4.98925,4.689625,4.766465,0.5866646153846153,2.03173,0.600857,5.762358333333333,1.456412,4.95494,2.001045,3.26600125,3.295405,4.02357,4.11951,5.3877,0.8776981818181819,3.282275,3.845945,1.9205275,1.6172325,3.594375,3.080965,3.66027,3.867385,5.49302380952381,4.677595,5.71685,2.780143333333333,0.5158755555555555,3.410966666666667,3.690425,0.5930261538461539,3.95467,3.856935,4.06016,4.007745,2.7302700000000004,5.08675,3.19581,3.159355,2.152605,3.75752,1.649238,3.48119,3.77282,0.5905038461538461,3.72767,3.8865,3.24459,3.79816,4.416435,2.766585,3.86343,0.623076,3.0985933333333335,3.7228066666666666,4.57835,3.6286666666666663,2.6263,3.485,2.6263,4.813555,2.958795,3.06995,1.5525833333333334,3.192626666666667,1.8389325,4.237485,2.836203333333333,5.203923333333334,3.1615300000000004,2.6950800000000004,3.0459066666666668,2.387507321428571,2.387507321428571,2.387507321428571,2.371843333333333,1.1212933333333333,4.606155,2.4341166666666667,1.6782733333333333,4.113266666666667,2.3558333333333334,3.144576666666667,4.144345,5.6745,3.64401,1.87975,1.040844,4.00265,2.00758,2.25675,3.01802,3.34681,2.12079,3.42047,2.87453,1.6394480000000002,4.84341,4.258685,3.677935,3.682125,0.7390111111111111,2.401456666666667,4.502505,7.4427,3.89482,3.032545,2.88846,3.417085,3.798835,1.699785,2.4496325,4.69159,2.19166,4.493015,3.595235,5.35615,8.652543333333334,4.12455,3.49966,3.377265,4.84063,4.094565,3.365685,3.365685,3.955605,4.063173333333333,4.291935,4.06004,4.286745,4.597025,4.115725,1.12116875,4.27684,4.123475,5.3694,8.006335,5.00885,3.7130506666666667,1.7741866666666668,1.5918416666666666,2.48686375,4.9045,3.886705,4.79936,2.2683866666666668,4.462175,5.0733,5.3145,5.0912,3.0067833333333334,3.580125,4.046855,5.13055,4.444155,3.951485,6.520503333333334,4.52541,2.257963333333333,5.5443,3.922575,4.027405,3.7321,4.75614,0.7579181818181818,4.2056,4.50086,1.21153,1.2827899999999999,4.96927,4.720055,8.996847,5.0512,4.64984,6.00195,2.910795,2.573366666666667,5.091,1.6195325,1.6195325,2.703285,1.62099,2.90293,3.3735999999999997,1.9470575,4.205474545454545,1.4313099999999999,2.143415,5.536825,3.33683,3.56923,3.10243,4.03855,3.96725,2.952576666666667,1.02478,4.006185,3.16513,3.874595,4.150565,3.6684583333333336,5.5837,4.94235,4.827705,3.66066,5.40775,6.51785,4.766605,3.20892,3.31698,2.0583475,2.0583475,3.85156,3.894825,2.5257833333333335,2.726843333333333,2.152050303030303,2.6528533333333333,1.7775766666666666,1.7775766666666666,4.470775,3.45989,2.19174,3.70599,2.82577,1.862755,1.18725,0.9839211111111111,2.62768,0.4603626315789474,0.8467311111111111,2.655625,3.738835,0.42331090909090907,4.01619,1.988228,5.30155,3.379785,7.3584974999999995,4.387225,5.248056666666667,4.89495,5.1614,4.12636,1.798045,1.89435,3.8584,2.95254,3.78954,1.3085266666666666,3.133135,4.29588,2.69687,2.64643,2.51308,4.360055,3.29504,3.153945,3.934525,3.587465,3.36912,3.201375,1.0600985714285713,1.835535,2.429315,2.9402,4.406405,7.44744,0.9189,1.5398533333333333,1.5398533333333333,1.8274979999999998,4.013355,2.78484,2.98665,5.3488575,2.8991566666666664,1.3362475,1.3362475,1.3362475,2.784665,2.942512,4.52111,3.227275,4.28245,3.303055,3.63128,2.98762,3.1277958333333333,3.656445,4.37656625,2.6106525,1.25597,2.94833,2.6106525,3.44885,1.4827366666666668,1.6679233333333334,2.0333675,5.401542,2.903185,6.156257,5.401542,3.253072,1.7233649999999998,1.7233649999999998,2.49304,6.11253,1.7233649999999998,2.279985,5.54183,2.18566,2.60032,4.78042,3.44269,3.89686,2.1537933333333332,3.119805,4.73849,2.0898233333333334,2.314505,4.192,2.1537933333333332,2.464335,1.965065,6.03171,2.484025,1.0876519999999998,2.496985,3.302555,3.1534538333333333,2.088075,2.0300405,3.65171,1.7214013333333333,1.70766,3.306525,2.293845,3.26939,3.30195,2.0915066666666666,2.99297,2.42853,5.9328,2.354335,3.424815,3.359155,3.359155,8.387863333333334,0.9740533333333333,2.6946,2.380905,2.843925,2.17189,1.3091866666666667,1.3091866666666667,3.59189,2.33073,6.5390049999999995,2.221665,3.70134,3.532085,6.38097,2.683805,2.446415,6.288815,6.288815,2.431075,1.529235,1.262225,1.262225,1.529235,2.10257,1.33122,1.1717,1.4909666666666668,1.9879166666666668,3.727235,1.773455,3.14339,3.06334,2.57236,2.796855,2.877905,2.506005,3.148645,3.148645,6.17287,2.267125,2.844005,2.8574,3.412575,2.55558,3.02722,2.54095,5.4842425,1.9767775,1.5591616666666666,1.2822066666666667,2.2159383333333333,5.54599,4.071671666666666,3.4462416666666664,2.985455,1.7113675,1.7113675,1.7113675,4.34687,2.43036,1.1717,3.168835,3.60745,1.310065,5.27436,3.0907850000000003,6.31545,3.43802,1.851415,3.38034,2.4887333333333332,2.076685,3.43606,4.68566,3.51373,1.96843,2.509865,2.47425,2.927285,5.2361,1.988305,3.40691,2.544155,5.92173,4.63463,1.786575,2.56798,5.44583,4.91127,5.18332,5.82663,1.0372400000000002,1.0372400000000002,2.292412,2.292412,0.769832,5.34248,2.99897,5.06468,4.60501,5.3278,2.261625,4.346016666666666,4.346016666666666,2.077925,3.403695,3.645895,1.1657579999999998,4.22627,3.13938,3.190085,2.386735,4.51823,2.53648,2.052005,3.154915,2.914005,3.008645,5.42066,2.547905,1.844905,3.85425,5.40338,5.40845,4.18263,2.686975,3.25548,2.30241,5.4118,2.60014,3.67495,2.26004,6.18276,3.49982,2.47374,2.535965,2.61575,4.91241,2.33453,2.82243,2.7224,7.07147,5.26623,3.070345,2.05972,2.20481,6.61304,3.35151,3.442355,5.53958,2.901165,2.73266,2.742415,3.033395,1.7753366666666668,1.998315,1.96152,1.8252,1.7074433333333332,2.09992,1.895365,1.99114,1.74633,1.7753366666666668,4.07142,4.51643,2.015355,1.6213950000000001,1.6213950000000001,3.44905,3.44905,3.063793333333333,3.063793333333333,2.94135,2.11839,1.764345,3.79746,2.179265,2.179265,2.27263,2.27263,3.08356,1.86056,4.35131,2.197905,2.86672,1.8857333333333333,1.8857333333333333,1.52835,3.98834,5.67536,1.4827366666666668,3.85532,2.0915066666666666,2.178435,4.0124,3.079625,1.966915,2.07963,6.20001,2.21409,5.6719,3.039255,3.288775,3.083485,2.681655,6.29529,3.2323,2.287125,2.538245769230769,2.88042,6.60563,3.597665,1.5059,1.5059,4.11353,5.19892,4.68069,5.15742,2.848225,2.807845,1.6608,3.07092,1.58811,2.60495,1.796465,0.790306,0.790306,0.790306,2.1504325,4.9038,2.1504325,2.219215,3.51104,1.596045,2.00991,4.60298,3.49045,5.27415,1.5695866666666667,4.81191,1.5695866666666667,1.5695866666666667,2.20132,1.81741,2.228065,6.63479,2.228065,2.449515,4.00448,2.044455,1.781715,2.65099,3.0187899999999996,3.1221283333333334,3.214166666666667,3.445875,1.3606966666666667,4.065595,0.7581272727272726,4.204155,4.2896175,2.6508825,2.6508825,0.7376227272727273,3.9673,2.728173333333333,5.62255,4.929935,4.26758,5.44515,4.08498,4.255915,5.25275,4.182985,4.30733,3.748335,3.91042,5.04335,5.051,3.24452,3.56443,4.23905,2.6700966666666663,1.26677,4.33402,3.55351,3.381365,1.2526871428571429,3.77174,3.873655,6.3104125,1.1850125,5.55405,4.131475,2.13078,1.960385,3.206355,3.5447,1.77358,1.5059,4.203415,4.98546,2.609815,4.687085,3.07111,1.17011,3.17835,1.2100371428571428,3.1073833333333334,1.9844,2.97996,1.9071075,2.6887899999999996,4.131535,3.036345,4.49718,3.042995,2.2438075,4.9066,4.48814,3.099065,5.53375,4.33118,2.6264766666666666,6.1376,4.792555,3.1584999999999996,2.617176666666667,2.44771,2.9748099999999997,3.137026666666667,2.7730566666666667,4.64041,4.248405,3.734465,2.38306,2.596833333333333,2.4475433333333334,2.4290833333333333,2.2616533333333333,2.3726066666666665,2.18439,2.2744175,1.1055075,2.9950836666666665,1.1339925,1.7364325,1.6702025,2.7209,1.588485,1.8324125,3.78737,4.08304,1.9462875,3.90116,3.984875,6.341231666666666,2.067346666666667,1.613532,6.57285,3.63915,4.47179,4.558175,4.13968,2.088655,3.62466,2.471045,3.048375,4.52393,0.6963341666666666,4.121115,2.10605,0.7821554545454545,5.02665,4.37978,3.867565,1.855906607142857,4.892225,6.04715,2.755576666666667,3.25294,2.50981,2.04224,0.589283,3.191003333333333,3.017325,4.970085,2.4787725,2.0907425,3.537035,1.172055,1.8051016666666668,1.8051016666666668,2.85038,1.8051016666666668,4.24894,2.728435,4.58894,4.21403,5.70685,13.141976666666666,3.0868066666666665,4.92833,2.71195,4.740665,3.038,6.645975,2.9170833333333337,4.606145,4.63311,3.799445,1.1643116666666666,4.81071,3.22941,2.66309,1.0108199999999998,2.14086,3.34692,7.2899883333333335,4.422965,2.825293333333333,4.70696,3.1044466666666666,4.2055,4.41082,4.421935,2.73091,2.90195,4.0441,5.7339,2.571955,4.32539,2.0327775,2.0327775,3.13181,4.87842,1.20005375,4.02358,2.15064,4.6645,2.5823933333333335,2.4501399999999998,3.14434,2.19812,0.7426142857142857,3.528105,2.7846233333333337,5.4971,4.594895,0.2338140625,5.22175,4.57609,3.976305,6.729420000000001,2.9891900000000002,2.880926666666667,2.2331666666666665,3.0335666666666667,2.7292133333333335,1.3362333333333334,3.034803333333333,2.6423733333333335,1.3946383333333332,3.3821666666666665,3.1132000000000004,2.659616666666667,2.94688,1.2749055555555557,4.315335,2.73287,5.27645,3.88058,3.785065,1.60817,2.4967799999999998,1.3329325,1.80687,1.3329325,4.906385,3.5559666666666665,1.5785420000000001,2.40521,3.903875,3.756195,2.923575,3.833955,0.359289,1.4148558333333332,3.810285,4.170365,6.39505,1.8692425,2.7734466666666666,3.0789000000000004,2.30167,2.85446,3.56445,4.72118,2.5111,2.227203333333333,3.12705,2.59134,2.7161566666666666,4.32221,2.039415,4.828225,3.795259166666667,6.2187,7.6455874999999995,0.7303522222222223,0.833467,4.141545,6.723025,2.0265999999999997,3.569115,1.463035,1.463035,3.407755,0.4477855555555556,3.53121,4.002285,2.76516,3.9641,3.18135,2.59651,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,0.23981433333333332,2.065085,2.80589,3.99669,3.1061549999999998,4.35646,5.68307375,2.90408,2.0789066666666667,0.91742,3.37385,0.81887875,5.174939166666666,3.0960324999999997,2.19798,0.81887875,2.36206,2.747,0.865795,3.92616875,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,0.1569331111111111,4.31716,1.590695,4.66868,4.62427,1.82167,4.669705,4.313795,5.18225,4.827475,3.4990960714285713,3.332235,4.349785,2.04746,5.352955,4.36655,0.7484428571428571,1.4599428571428572,1.3743642857142857,3.2950933333333334,3.2950933333333334,2.9905749999999998,3.935005,4.315505,3.568315,4.06562,2.838063333333333,1.93876,0.5776342857142858,4.105865,3.17047,2.619055,4.082875,3.296525,3.0815762500000003,5.0753,4.481705,6.534392500000001,4.177835,4.9423,5.5939,4.49862,1.292835714285714,3.049715,5.314893333333333,33.75538039430015,1.1955366666666667,4.407025,3.17064,4.57503,4.16859,5.21045,4.898355,0.4248142857142857,5.382,4.535015,1.98592,1.91667,3.361635,1.592935,2.473155,2.61392,1.7127325,2.83025,2.3886233333333333,2.7916,2.640925,0.6008853846153847,3.08455,3.821865,0.36937947368421054,2.50985,2.651,2.955755,3.868725,1.829955,4.52009,3.9752,3.111585,3.587705,3.038975,4.242105,2.88743,3.84506,2.1615225,5.314893333333333,3.45515,3.527085,2.8232,1.748834,3.790655,3.37664,6.96016,3.518815,4.809975,6.500305,5.201566,2.33094,4.37908,5.87635,7.549328,2.5484833333333334,2.481755,4.728695,5.676780000000001,4.432015,3.36252,5.493358333333333,2.74415,1.67096,2.142405,60.84093890627304,4.96296,4.278705,2.5748,0.8745390000000001,2.7603866666666668,3.0327866666666665,3.4258333333333333,0.8286555555555556,4.507275,0.7607677777777778,7.603751071428571,2.00758,3.3332533333333334,1.781838,2.635915,2.6440533333333334,3.1266599999999998,2.412786666666667,2.2401966666666664,3.350433333333333,1.60923,5.364819166666667,3.936166666666667,1.4286525,2.74724,1.4556433333333334,1.5189125,7.62756,6.0121,3.415305,4.024105,5.2774975,1.4858428571428572,3.5269666666666666,3.216385,1.667405,5.713,3.589755,3.90425,1.559725,2.9394733333333334,3.613466666666667,4.09334,5.56835,4.234805,4.37286,2.16008,3.759815,4.536933333333333,3.09364,1.473374,4.248245,3.3885666666666663,4.106175,5.15945,3.97926,4.00312,4.447,4.4012,4.270225,4.592305,4.09479,3.2234433333333334,3.850135,4.30663,3.18527,4.278065,3.845295,1.443485,1.443485,4.33891,4.819745,5.0154,3.64107,4.92517,3.3047833333333334,2.723605,5.00615,5.5274,0.7437881818181818,5.48095,6.7471925,5.5632,5.76705,1.0738133333333333,2.998285,0.8674499999999999,0.8674499999999999,0.8674499999999999,3.72321,3.4746,2.6621166666666665,3.5808666666666666,0.97219,5.16155,5.48545,3.03516,1.6546525,2.1132275,4.158495,3.685205,3.745685,3.857338,6.7994,3.678485,2.5853800000000002,4.68789,6.9369,2.24311,4.30149,3.674525,3.159005,5.39675,4.171755,5.27315,5.7727,3.228275,3.575337777777778,1.9114833333333332,1.9114833333333332,0.7190500000000001,8.864889999999999,2.07331,5.70745,5.5835,4.284525,5.60425,3.79821,3.060931666666667,4.537465,7.6719349999999995,5.669556666666667,2.553713333333333,4.356605,0.9996409999999999,3.77858,1.9284299999999999,0.9175222222222222,1.200902857142857,2.69168,3.013453333333333,2.854556666666667,1.0897428571428571,2.6674133333333336,3.07736,0.9215455555555556,2.72161,3.2911133333333336,1.649878,1.851672,2.9594233333333335,3.1094566666666665,2.8853933333333335,2.4794933333333335,1.7735499999999997,5.28005,4.31186,4.17551,4.413345,5.3563,3.084575,4.54473,6.5786,5.18795,4.583755,3.963405,9.939281666666666,8.756920000000001,3.0156899999999998,3.573155,1.9638833333333334,3.80091,3.267855,4.604215,1.02559,3.803525,3.999525,1.6277466666666667,4.14038,3.0544783333333334,4.455465,3.01844,3.771005,6.51105,7.857266666666667,3.91672,1.540955,1.540955,1.540955,4.800105,1.1383983333333334,1.5050875,0.48882388888888895,4.422065416666666,3.0078333333333336,3.698905,1.0078900000000002,1.16313,2.995195,4.32812,3.73282,16.57905573809524,4.084545,4.556315,6.03714,2.81485,3.448785,3.24709,0.9387588888888888,1.5440175,3.906945,3.510195,4.293905,4.685285,4.41507,4.16067,2.770576666666667,3.58054,5.3366,0.5503199999999999,4.730635,2.3231175,3.95455,4.87049,3.5118666666666667,2.3510166666666668,4.283501666666666,2.3055166666666667,3.611815,6.00055,3.0517299999999996,3.79438,4.314505,4.03444,4.5678,3.87762,3.27177,4.03575,4.86898,4.90464,3.62969,4.39032,3.787195,1.1158442857142856,1.40727,5.999653333333333,6.2102,4.06499,4.937155,2.583325,2.7288599999999996,2.6385166666666664,5.710613333333333,1.9064925,2.00406,2.9728766666666666,3.0650833333333334,3.3930000000000002,4.52241,3.05963,5.108593333333333,1.17849,4.672885,0.9283716666666666,4.00618,3.31485,1.7529933333333334,4.463655,0.9711388888888889,4.99687,5.72595,4.879355,4.149885,3.941063333333333,3.951415,3.100146666666667,5.17955,6.1361,2.8300199999999998,4.000265,2.411275,2.5995,2.01195,2.627945,3.28036,5.14395,1.07033375,4.4032775,1.3086875,3.34734,1.6355266666666666,1.07033375,0.19686783783783784,3.82097,3.01368,2.275393333333333,1.88784,2.72048,1.0807475,4.021315,3.57604,4.96795,2.54293,6.27995,6.48742,2.68378,3.3414,2.66227,0.823205,2.4170000000000003,6.1886,4.273015,5.60955,4.86652,2.06756,1.3008466666666667,3.854205,1.6605325,2.142755,1.74115,2.51665,1.6914525,1.8840175,1.9566625,2.088325,1.86603,1.3913371428571428,1.3212875,1.941805,1.7781125,2.194045,2.2602800000000003,0.5460066666666666,1.046502,2.7781066666666665,3.2682233333333333,2.043895,1.8592166666666667,1.5036,3.85948,2.1949866666666664,2.734815,3.306575,5.5463,3.745845,3.0339566666666666,4.53404,1.6313696323529414,3.7705625000000005,23.173257,4.56756,5.97575,4.21027,2.10384,3.841295,4.903505,2.314925,5.0366,3.464933333333333,0.81275,3.34452,4.55543,3.78771,4.150575,1.6093433333333333,2.016896666666667,2.4718066666666667,2.040345,1.5073857142857143,3.4999000000000002,5.01805,4.12433,3.249795,3.915535,4.92869,3.34607,4.75368,1.2502,3.222575,4.087265,4.725945,1.8214359999999998,3.342,1.81149625,1.81149625,3.593045,4.761115,2.96853,3.013453333333333,3.88529,3.919925,6.56216,4.824015,2.20508,1.5440175,2.868225,4.336965,3.1702266666666667,2.670764126984127,2.670764126984127,3.3889333333333336,4.988925,3.66668,5.0769866666666665,2.398705,3.315154888888889,0.6650988888888889,0.6650988888888889,0.6650988888888889,3.48902,3.81446,4.049763333333333,5.7986,2.1896725,4.99504,4.84474,5.4409,3.337175,5.3272,2.27254,1.3398257142857144,4.157785,3.964425,0.4931628571428571,4.335066666666667,4.933535,1.5685733333333334,4.9789,5.0134,4.499115,4.30213,3.73865,2.89833,4.366595,1.6750139999999998,4.435685,1.5799116666666666,4.19188,5.9896,1.17685375,3.046455,7.0103775,3.957955,3.307256666666667,2.1006525,3.78795,5.6051,3.045616666666667,7.535746666666666,4.094155,2.18595,3.1140066666666666,2.73417,2.3548899999999997,2.7308833333333333,1.8218533333333333,4.61251,0.5684233333333334,1.9474974999999999,1.9474974999999999,3.169425,3.73551,2.31501,3.17208,4.39295,5.2338,4.427625,1.4037366666666669,4.366238726190476,4.45267,4.83091,3.578885,4.2841585,3.8386405000000003,0.44551799999999997,3.0064385714285717,1.1392125,0.44551799999999997,4.37526,0.8280544444444444,4.210715,3.98131,6.5638760000000005,2.05277,1.01833,1.1515520000000001,2.33568,3.031216666666667,1.6670766666666665,2.43815,3.41037,3.770605,1.9667700000000001,2.31199,4.443855,3.0060337500000003,3.985915,5.76695,3.40332,5.0695,6.7073133333333335,4.723735,3.527815,4.545725,3.760665,4.219675,5.239,5.685875,5.4687,2.4359766666666665,0.9915488888888889,3.725105,3.92108,4.234005,4.170065,4.223645,5.32835,2.63829,2.5658600000000003,3.0791833333333334,2.4062266666666665,2.0845833333333332,2.8954733333333333,3.182593333333333,2.4516466666666665,3.89481,4.904575,4.234875,5.42515,2.631413333333333,3.5846999999999998,2.9601,0.7514714285714286,4.175665,3.822095,4.56077,2.9600233333333335,5.3809000000000005,3.29924,4.8503,4.046265,0.5946023076923077,0.561195,4.36732,2.7658465,3.13051,4.523395,4.170905,1.7184979999999999,5.42835,4.38322,2.5503833333333334,2.6669766666666668,2.333645,2.1118408333333334,3.5535333333333337,3.07147,3.175456666666667,3.06458,3.5493,2.611225,3.10354,3.746866666666667,4.29159,0.53932625,0.53932625,0.53932625,3.2552725833333334,3.536466666666667,3.6404,2.7548333333333335,2.85755,1.12116875,2.95361,3.14373,1.86882,2.6404466666666666,2.3780666666666668,1.0119633333333333,2.86362,4.637285,10.0289945,1.5675642499999998,0.709124,3.67021,0.709124,0.709124,0.709124,0.709124,2.141145,3.9957495,4.050985,4.81994,6.0602,2.8198633333333336,2.8278966666666663,3.1258512499999997,3.233033333333333,4.61698,1.0033783333333333,2.27862,3.263476666666667,2.52664,2.8780933333333336,3.619545,2.12497,2.300565,1.1196555555555556,5.22505,2.610725,3.603845,0.87623,0.67622,0.67622,0.9418977826086956,1.8181277826086957,0.9418977826086956,0.9418977826086956,0.3208247826086956,0.3208247826086956,0.9418977826086956,1.5240666666666665,2.4742966666666666,2.95079,3.025206666666667,2.5140566666666664,2.6244666666666667,3.3170266666666666,2.7391366666666666,4.521955,3.80295,1.89045,2.2270333333333334,1.7044225,0.192413985640648,0.192413985640648,0.192413985640648,0.192413985640648,2.4045433333333333,2.462153333333333,0.8942819999999999,5.1131,0.7983690909090909,1.6730519999999998,4.757461666666667,5.48335,4.257725,2.939855,4.40046,3.444395,1.7422666666666666,1.17843,3.82048,4.5975,6.70435,2.31902,1.3761066666666668,1.8716766666666667,3.0167033333333335,1.5071166666666667,2.75053,2.945463333333333,3.3840333333333334,4.397185,4.070265,3.0443,5.00735,2.574806666666667,4.18035,5.6264,3.94725,4.270565,4.65237,5.331556666666666,4.679329166666666,3.0126842857142857,4.940461666666667,4.38248,6.6732,4.62444,4.48236,2.2595475,3.00428,4.2744,4.91686,4.375915,3.985175,3.873545,4.039855,4.04889,2.4636633333333333,5.60855,3.482855,7.5983675,6.09175,5.90055,4.932905,1.5011142857142856,0.9587389999999999,0.6351269230769231,1.810504,5.15025,5.63125,4.08737,1.632876,4.058965,2.923365,5.2599,5.28945,6.183826,4.17413,2.97699,1.6567859999999999,5.2123175,3.952675,3.147,1.7354825,0.948,3.94304,3.439385,3.6851275,3.618345,2.210285,4.3944,1.7364666666666666,2.9309233333333338,2.516865,4.5271,6.00765,4.837395,2.439705,1.643405,5.60325,2.9466966666666665,8.7227,2.8615,5.24095,5.97525,4.583145,5.4176,3.72408,4.955285,2.2541725,3.86654,4.9747,2.5802,4.196825,4.62384,7.536735,5.0749,3.1209666666666664,4.118725,4.094055,3.0060337500000003,3.472265,5.23065,5.7818,2.39938,3.013036666666667,3.3180566666666667,2.31944,2.51319,4.412725,5.98765,5.0922,4.61714,4.91474,4.323015,4.839095,0.64421,3.17531,1.19979,31.55340528720238,2.56468,4.651895,2.998655,4.533625,1.712866,2.4697133333333334,3.090762023809524,1.5558345238095237,1.5558345238095237,1.5558345238095237,1.5558345238095237,1.5349275,3.244305,0.3467166666666667,7.869506805555556,0.3467166666666667,4.413785,5.0455,2.0006025,5.4597,2.915175,3.9490206666666667,2.41192,2.5826566666666664,2.7195633333333333,2.0883499999999997,0.6244284615384615,2.6041766666666666,0.7369383333333334,3.3973999999999998,2.2754033333333332,2.494754,1.1900683333333333,2.494754,6.2719,8.349440000000001,4.766785,4.349085,5.89435,6.1129,7.373678333333333,3.357765,1.43621,1.43621,2.4027433333333335,5.14295,3.60712,4.315165,6.30454,3.935695,2.737555,3.791255,3.461755,3.563085,2.1396,1.120028,2.21562,3.860235,4.062525,5.371652222222222,2.0587125,3.870215,1.302856,3.18184,1.271522,3.4384333333333337,2.9400099999999996,3.01866,3.412266666666667,3.119866666666667,4.90345,0.6960230769230769,3.43263,3.6530666666666662,2.6231766666666667,2.36881,4.16820875,3.3796999999999997,2.0263466666666665,4.72079,3.512625,5.10205,4.060665,3.671645,5.7798,5.0526,2.1814,5.6352,2.383103666666667,1.7990566666666667,3.13958,2.43097,2.9383233333333334,2.579615,1.8948566666666666,3.256543454545455,4.37354,3.3863399999999997,2.4164956666666666,2.4164956666666666,2.475235,4.016015,3.83335,0.6279572727272728,3.107645,3.305305,8.85075,0.8646436363636364,4.60465,3.42048,5.82895,3.62354,3.8448,2.336545,3.909945,2.987085,5.44875,2.65001,0.9798425,3.83711,2.7596166666666666,3.649725,2.7369866666666667,3.625795,3.72115,3.87285,5.410731,3.29161,1.98561,5.2255,2.5002066666666667,4.53672,4.72759,4.8368,4.700605,4.02872,2.802205,2.2548333333333335,2.8810633333333335,2.679486666666667,2.8129000000000004,3.21392,2.7909661904761904,4.958071666666667,2.8882100000000004,2.4909966666666667,6.665465833333334,4.960545,3.82453,3.108696666666667,3.7932333333333332,4.046235,3.59891,2.0845725,3.9073325,4.9454,5.0988,1.4495733333333334,4.37815,2.6823,7.3541375,4.838865,8.75075388888889,4.074255,4.02411,2.071465,4.126035,5.8218025,7.80587,4.84662,5.65084,3.91118,3.35743,3.83028,1.74282,4.783188,1.4366683333333334,3.68152,4.660575,3.426,0.858,9.389686666666666,1.2013444444444443,2.0470575,2.50437,1.9608400000000001,3.5384333333333333,1.3552583333333335,3.61962,3.64762,2.435966666666667,4.33107,1.1418141666666666,3.67698,1.4120666666666668,3.0147941666666664,3.848985,5.14505,1.474375,5.989117916666666,2.4652866666666666,8.16083,4.44054,2.78194,3.968485,3.315325,1.1925370833333333,7.64421,2.930575,3.327955,2.333925,4.079775,2.1905,3.1264025,2.243995,4.006625,1.350835,6.02065,2.923095,4.182945,0.8963829999999999,1.8716780000000002,3.819215,4.946465,5.1908225,1.45958,1.45958,5.8174,4.4278,6.0278,3.8,3.406035,9.540600000000001,4.42293,5.4895,3.88485,2.5759,2.1185509411162315,0.37795100000000004,0.20632129032258065,0.6131901792114696,1.1274097619047618,0.6767627188940092,0.20632129032258065,1.287511,0.4068688888888889,1.505360761904762,1.9007011792114696,1.9260675,2.3537425,2.203066666666667,5.3145,6.25442,4.73057,5.2916,4.34445,5.0273,1.2598666666666667,4.837645,3.95756,5.6863,5.0575,5.1424,5.4586,6.0626,5.45345,1.2793016666666668,1.3199771428571427,1.8202559999999999,6.046583,1.2808579999999998,5.42925,4.769495,6.951304583333334,4.86781,5.40875,4.510375,4.59675,2.45484,5.2464,5.3778,6.553036666666666,5.05305,5.871605833333334,5.46335,3.90232875,4.25052,3.8335000000000004,1.01183,3.7012666666666667,4.69969,1.1582,3.7495,4.74024,4.52186,4.868305,2.450135,3.210285,2.6058333333333334,4.5796,2.1916325,3.810435,1.27058,3.2012,3.69677,3.930155,4.607555,3.35971125,0.6024308333333334,6.12825,1.0003875,3.649,2.931713333333333,3.68526,1.9778833333333334,3.838905,3.7489428205128204,3.2776333333333336,4.52271,15.853809404761906,5.32351,2.245055,8.48594,1.4486925,3.70854,2.946956666666667,2.8281066666666668,2.05431,0.20410391304347827,2.674523333333333,4.339005,1.7548819999999998,2.20247,3.199336666666667,1.84473,2.2130966666666665,1.5892428571428572,3.39198,4.848655,4.549385,3.08978,0.47063428571428567,2.3382333333333336,4.447375,2.76037,3.81365,4.604045,4.37203,5.53885,0.47776294117647056,2.5131533333333334,2.5131533333333334,5.4236,4.918265,4.906895,2.68015,3.4952666666666663,2.8211999999999997,5.27075,3.61704,5.569087777777778,4.6706,4.376465,4.67183,2.6226,1.9706620000000001,4.52024,4.00511,3.962675,3.70812,1.7990279999999998,5.03075,4.41144,3.76597,4.517555,3.804745,4.21493,0.6398793333333334,3.023295,0.5628449999999999,3.1546800000000004,3.299185,4.363725,17.93514619047619,3.45402,3.77662,2.4887333333333332,0.97533,2.2306066666666666,2.5220466666666668,1.555234,2.358805,2.49152,4.69848,2.2436833333333333,3.862545,3.97536,2.16348,4.40113,2.9941,4.72398,4.93194,5.43835,1.60585,1.448485,2.263575,4.728675,4.83619,1.148011111111111,5.24835,3.80547,5.54715,4.722805,1.6552566666666666,4.66132,3.433185,3.712955,3.87468,4.11021,3.1161433333333335,0.59165,7.370520000000001,1.50726,0.2146475,0.2146475,0.2146475,4.800115,4.079715,2.6959666666666666,4.287365,2.926,4.759835,4.3647478571428575,4.05823,8.6796,4.25629,6.984736666666667,0.8417925,0.7651675,2.343435,4.462855,4.34513,2.217713333333333,5.3202,5.50655,3.411705,3.614455,4.384915,2.22502,4.90266,4.723299,2.396306666666667,2.8329766666666667,2.958626666666667,2.70762,6.0348,3.84279,0.6434621428571429,3.848935,3.07677,4.154385,4.8526066666666665,5.04715,2.8435,5.39885,3.80495,13.490133750000002,4.73088,7.008095583333333,2.45118,6.500758,4.313615,3.951645,2.118055,2.3129591666666665,9.97143,2.29306,4.3005,4.158033333333333,3.7813666666666665,3.3262066666666663,2.858916666666667,2.0764925,2.2543825,3.1143733333333334,1.8090199999999999,3.9341666666666666,2.3840033333333333,2.5788033333333336,3.456566666666667,3.4791000000000003,2.53186,2.53186,2.4327133333333335,3.5747666666666666,3.4276666666666666,2.2613933333333334,3.246166666666667,4.3431,2.7652633333333334,2.8473466666666667,3.8445,2.418956666666667,2.0370125,4.006966666666666,2.9809566666666663,1.766346,4.0002,2.17496,2.4799933333333333,2.9187600000000002,2.2003250000000003,3.3996,5.778866666666667,2.32201,3.7466333333333335,1.9237266666666668,10.795031999999999,1.9371933333333333,1.8160666666666667,2.08042,1.0138933333333333,1.582782,4.765016666666666,2.762162,2.762162,1.691994,1.589945,3.47749,3.916386666666667,2.2122566666666668,1.5770366666666666,1.741172,4.714348666666667,3.7669,4.094966666666667,8.40089,2.977692857142857,2.5401166666666666,3.2985176397515525,4.3479,2.0370125,3.342333333333333,2.766856666666667,3.5221666666666667,3.3773899999999997,0.87796,3.3356405,2.92796,2.8413233333333334,4.06825,3.330026666666667,0.664540909090909,1.9213616666666666,5.30985,2.48203,3.2971466666666664,1.7183166666666667,1.7183166666666667,2.076815,3.884288333333333,0.9441940000000001,2.18069,4.55917,4.55917,0.6543571428571429,5.80339,3.46762,3.960645,4.755415,1.225604285714286,3.3871,3.5437666666666665,5.2230791666666665,5.6685099999999995,2.2580633333333333,0.6649510000000001,2.6668566666666664,2.5818066666666666,3.098457333333333,2.2780133333333334,2.3981266666666667,2.9163599999999996,2.363575,2.4952733333333335,0.8084381818181818,5.0134,4.904676857142857,1.30397,1.7884428571428572,5.6289,2.17054,1.65602,4.053815,1.5067460000000001,3.52945,2.5986,3.6385,9.050548333333333,4.6836416666666665,4.45464,5.1624,2.418372727272727,0.793052,1.941214,6.9646099999999995,1.70346,3.96162,3.937435,3.532585,21.32168075,3.31258,1.4016466666666665,1.07261125,3.1301799999999997,1.4355066666666667,4.286296,5.15685,3.2933935,3.4116666666666666,1.3194033333333333,1.4662233333333334,2.8251500000000003,0.5861825,3.4879333333333338,3.8026999999999997,3.0059666666666662,2.4238786666666665,2.49819,2.8036966666666667,2.0426366666666667,2.844913333333333,1.574726,3.8104999999999998,1.4623783333333333,3.91197,3.94855,2.7152333333333334,5.42455,3.215885,3.96163,5.00815,4.381885,3.0768400000000002,2.893546666666667,2.3258966666666665,1.070747142857143,1.070747142857143,1.070747142857143,2.3407525,3.5825333333333336,2.59679,2.488916666666667,2.1252133333333334,1.9766125,3.650565,5.40295,3.68369,6.601875,3.0962,2.64485,1.8773125,0.9332400000000001,2.4404333333333335,4.12717,2.489203333333333,2.617523333333333,2.4460533333333334,2.4398,2.576566666666667,2.8307633333333335,2.7067200000000002,2.7707333333333337,2.22575,3.5490666666666666,2.1668366666666667,2.224375,1.6237525,1.7826725,3.096856666666667,3.0048166666666667,2.030105,3.794825,5.1371,2.8996833333333334,2.4389586538461536,5.8779,4.05853,4.80338,5.51665,4.71554,4.35087,6.286054999999999,1.2429975,4.24617,2.642745,5.30415,5.0056,3.733045,3.623355,2.3050425,7.9786,2.92455,0.8729666666666667,7.82795,4.97616,5.616716904761905,4.52638,2.8808517499999997,1.7467425,5.08205,4.297595,4.59627,5.28255,2.444825,4.13485,4.507095,1.7044225,3.89815,2.8421,1.3796816666666667,4.616845,0.6213176470588235,4.2734000000000005,3.494805,4.728565,3.069455,1.698705,3.37646,2.102615,1.45625,2.776393333333333,3.4005666666666667,3.2714866666666667,7.20410358974359,1.9136825,6.635813333333333,9.42979,6.298467499999999,2.998985,1.2898485714285715,2.873806666666667,1.2898485714285715,2.8097666666666665,2.171463333333333,0.3304970588235294,1.1972408088235293,0.3304970588235294,0.3304970588235294,0.3304970588235294,1.1972408088235293,1.1972408088235293,0.3304970588235294,0.86674375,4.24453,3.36997,3.182675,3.34813,3.467845,4.42893,2.791819666666667,1.620066,6.6252200000000006,3.154443333333333,4.110265,2.6561166666666667,1.0277727272727273,1.22616625,4.468315,3.4995,1.125622222222222,1.552014,0.761439090909091,3.0793294025974025,4.167105,5.0693,3.4519,5.430110833333334,0.563513076923077,4.373105,3.1646,2.9981166666666668,2.4188300000000003,3.5668666666666664,2.4926266666666668,3.0096233333333333,2.6596766666666665,3.07473,3.702245,4.635055,4.524795,2.14938,5.23265,4.24339,2.940225,3.951745,3.493795,0.36662733333333336,5.0457,3.56848,3.056905,3.041684,4.240055,3.96853,1.96994,3.145595,3.79702,8.38583,5.13555,5.40055,4.89532,3.768275,0.78887,2.153505,2.04725,1.556645,1.8348766666666665,4.379345,5.5803,4.12675,4.94737,3.857338,2.5875016666666664,0.9361483333333332,3.99022,1.2225433333333333,1.114205,3.165205,3.681145,4.680385,1.296725,2.5787233333333335,8.860666666666667,3.2838133333333333,2.9528375000000002,0.8537175,3.72804,12.197016666666666,3.38578,4.128085,3.122615,3.01248,4.657845,5.04745,2.09624,4.26478,0.55962,4.752195,2.2105775,1.93278,1.93278,3.5289333333333333,4.27596,1.5481466666666668,3.995355,1.2511085714285712,3.81947,2.7156841666666667,3.5182333333333333,4.98261,3.463985,3.830076666666667,2.6214,2.7642016666666667,2.7642016666666667,11.028735000000001,0.710244,2.792785,3.2025400000000004,2.1576775,2.0099525,0.9015571428571428,1.4026775,1.2187585714285714,1.94058,4.888605,2.458895,4.2637475,2.0161633333333335,4.0733,3.991595,1.7434166666666666,2.0452475,1.0725233333333333,6.094795833333334,2.043225,2.20067,1.7081140000000001,1.844728,1.07261125,2.41687625,3.57695,1.8558766666666668,3.1379699999999997,2.5676733333333335,2.7137233333333337,1.7278866666666666,3.1264566666666664,2.538116666666667,1.76731,1.7850666666666666,2.8521633333333334,2.7107666666666668,2.3559066666666664,1.1279033333333335,2.536166666666667,2.052853333333333,2.3062733333333334,0.30978526315789473,0.4087241666666667,2.3636033333333333,2.1942766666666667,3.433975,3.26635,2.79226,4.82471,5.4715,4.32887,4.749565,4.27272,4.10573,2.9805166666666665,3.747115,0.7078690909090909,0.060077954545454545,7.0413,0.060077954545454545,3.46981,2.98166,5.3158,3.5133,6.409,4.65296,2.0164966666666664,2.4862233333333332,0.9791083333333334,5.231,6.4033,3.2060066666666667,5.42605,1.763415,3.57333,2.004132282608696,3.0842033333333334,3.2128200000000002,4.008255,5.04255,3.2045,2.1747333333333336,2.1747333333333336,4.10032,7.77901,3.42139,2.1860466666666665,2.35492,4.502145,3.150325,4.978905,3.57061,0.9794522222222223,4.257045,2.467356666666667,2.80146,4.226615,1.154085,2.4147666666666665,3.95986,3.453825,4.81172,2.90915,2.921115,3.910855,3.994225,4.40048,5.00515,4.330895,3.1973277777777778,3.80331,3.0029566666666665,2.71196,2.5968666666666667,3.9949,4.32385,2.9944,4.996064166666667,4.17229,3.61827,5.44975,4.4235,3.402895,1.428272,1.3143275,4.07991,3.416166666666667,1.61303,2.892916666666667,3.180475,3.1957066666666667,4.085773333333334,2.99889,2.1688158333333334,12.45764625,2.5063133333333334,1.8224620000000002,4.594425,1.052652,3.2018633333333333,3.70478,4.79248,3.15993,1.2207444444444446,2.293266666666667,2.54293,1.5213480000000001,4.16154,0.95739,0.95739,3.4908033333333335,1.5746900000000001,1.9161133333333333,1.68334,3.040345,6.0117,2.1629,2.7767,3.3973850000000003,2.75128,2.8269300000000004,2.0074,6.3025,5.7366,3.683995,0.731613076923077,3.4678,3.61951,1.0299818181818183,5.6611,3.3041766666666668,8.476076666666668,5.02285,4.766045,3.57737,1.455145,3.10782,4.885855,4.525825,3.96827,3.740845,4.42671,3.563035,3.5330666666666666,3.5330666666666666,4.230195,2.6301083333333333,4.18141,1.50479,5.68120375,5.378278333333333,1.5685733333333334,4.43477,1.0307499999999998,5.7695,4.002865,5.1587,4.587185,4.159315,2.617115,2.44435,4.250455,4.353235,5.12805,4.02696,1.8171925,1.3969260000000001,4.557815,2.08779,5.225,3.291825,3.55018,8.090385,3.83138,4.41619,5.43715,3.930735,4.67305,8.400575,4.30152,3.049785,9.187125,3.882085,0.5898542857142858,2.0559782173382173,4.53629,0.5996533333333333,4.715945,4.219905,4.980355,4.61606,3.198835,3.591275,4.642535,4.87719,2.85885,0.7078749999999999,4.684745,4.416345,4.510515,4.2729,2.836883333333333,4.464975,3.54851,0.639462,3.385975,3.979575,2.576925,3.28097,4.082925,2.2425499999999996,5.7568,5.27705,3.9908825,0.8842,3.2016899999999997,5.5954775,5.5954775,8.64075,1.9983239999999998,0.83657,0.83657,24.026872333333333,2.669875,7.727211666666667,0.35530083333333334,1.3857466666666667,3.0020566666666664,0.9623459999999999,3.72267,3.768275,2.129655,2.129655,4.04099,5.10575,3.63426,2.4943583333333335,2.4943583333333335,3.50238,4.53573,3.82312,3.4476666666666667,2.0433766666666666,2.5605408333333335,3.90107,2.04016,3.554385,2.88495,2.773069642857143,2.773069642857143,3.377333333333333,0.8561477777777777,2.48534,1.6213866666666668,3.2990733333333337,2.91138,2.8794866666666667,2.6121933333333334,4.649995,2.315905,2.9860399999999996,5.224642,1.314198,2.26497,3.116405,2.5219,4.169485,5.737402888888888,1.4829466666666666,3.826033333333333,2.5206,4.90906,6.76481,1.5612675,5.182206666666667,4.900192,3.3528411428571427,4.626633333333333,1.075672857142857,1.8214359999999998,2.99734,3.82833,1.239685,2.4285975,1.60768,1.772656,2.574905,3.704854,5.3595065,1.0271766666666666,1.3788171428571427,2.9790500000000004,13.35669,4.6417166666666665,2.6383199999999998,1.1279185714285715,2.533745952380952,0.9922242857142857,3.2335,4.166086666666667,4.924565,3.4375666666666667,5.56965,1.52258,3.817066666666667,3.91709,2.9250833333333333,3.8771533333333337,1.9494133333333332,1.0791866666666667,2.5394533333333333,2.75588,7.51784,2.820775142857143,2.681316666666667,0.708943,4.7148666666666665,3.685866666666667,0.869848,5.673818333333333,1.967785,2.3409033333333333,5.32385,1.237188888888889,2.9162666666666666,1.0224363636363636,3.045666666666667,4.28253,3.0528366666666664,3.0749999999999997,2.1529666666666665,2.5038233333333335,4.554205,4.752405,5.33645,1.6890125,4.56027,3.64122,4.372529999999999,3.390858,2.6301733333333335,3.997581333333333,0.923038,2.8777004761904763,4.845735,2.7513,4.090720833333333,1.304925,2.91872,1.964806,1.964806,7.45002,3.099906666666667,5.5643775,3.428773333333333,1.7727466666666667,2.805715238095238,4.574588333333333,5.4900166666666665,8.760841666666668,4.821897,2.66466775,2.1049866666666666,1.9192711666666666,4.125216666666667,3.834125,1.529306,1.9598475,3.1792162499999996,1.242585,3.150513333333333,18.993419666666668,3.0914033333333335,2.85182,2.824996666666667,2.9362166666666667,2.40708,2.3163199999999997,3.0428566666666668,3.6369666666666665,2.44535,2.6515400000000002,5.6647799999999995,2.41154,4.942412857142857,2.9554348571428566,2.786552857142857,1.53204,3.753112222222222,2.1664925,4.05066,5.0068,3.97814,3.0883216666666664,3.2072766666666666,2.3580133333333335,3.465866666666667,3.6636,3.436166666666667,3.3798999999999997,0.81675,5.35075,2.473405,3.1891933333333333,2.7377044444444443,1.9685375,2.0814404166666667,2.0814404166666667,3.262947083333333,1.8730104166666668,4.700425,4.27335,3.53001,4.355245,4.71988,4.5738,4.5738,4.152945,3.0097766666666668,4.61866,2.72516,1.652878,2.236873333333333,4.429645,3.957725,2.7102,3.64912,5.502947499999999,3.7866,6.310978678571428,3.011255,0.858496,0.858496,3.379615,4.88284,3.82142,3.3961040000000002,2.410816666666667,1.7934766666666666,1.54191,2.99504,5.916287,1.507155,4.361805,3.7289333333333334,3.7563,5.11095,4.882925,4.7744201041666665,3.3708666666666667,2.3797275,4.337865,4.084755,2.1371525,1.10672,4.1557,2.8141,6.734633333333333,3.920533333333333,2.65185,3.363135,3.66331,3.71876,4.563135,3.06877,4.511745,3.976955,4.31026,3.762755,3.331735,3.61134,3.789315,2.6357133333333334,4.455505,3.245065,4.88964,0.6204977777777778,2.34478,1.8172075,2.149615,1.847075,2.596153333333333,2.634533333333333,1.9430033333333334,4.40205,5.21572,1.9256833333333334,3.786765,4.265055,2.469335,5.656055,4.1195925,4.504685,5.01165,7.276503333333333,2.0341133333333334,2.9967699999999997,1.9015700000000002,2.77432,1.827165,1.79982,3.98702,3.439,5.4823,1.0214033333333332,3.09923,4.32761,2.21367,5.27245,3.687715,2.53437,3.7777333333333334,3.435225,2.1439925,1.8992165,2.6612,3.226325,3.395575,2.06278,2.6722014285714284,2.6722014285714284,3.5846,3.4507,20.133822797619047,1.08544,5.159880833333333,1.8666075,1.8891233333333333,3.65323,3.777735,1.815905,3.90708,4.6043,1.3958933333333334,1.3958933333333334,1.3090266666666668,1.7688566666666665,2.39739,3.1217233333333336,4.498993333333333,3.40672,3.6107,0.4936468421052631,3.43738350877193,1.9024133333333333,2.22547,4.6548300000000005,3.448605,4.04655,3.50712,4.587195,4.743625,2.02198,4.02893,5.676780000000001,2.032895,3.66073,5.26165,2.16404,4.90102,6.12905,1.340032857142857,1.945628,3.5681333333333334,0.6595171428571429,3.25657,3.3165,4.95759,5.01405,2.8396058333333336,7.908166666666666,3.047826666666667,2.8167333333333335,0.44097470588235294,4.19764,5.2558428571428575,3.165685714285714,5.49795,3.769935,2.515512222222222,1.762792,5.4392715,4.360925,4.143085,2.905575,1.9444125,3.599415,4.052333333333333,2.979006666666667,1.99678,4.0759316666666665,6.449125,2.7729,3.867175,3.48028,4.041075,1.605442857142857,1.605442857142857,3.242043333333333,3.042403333333333,4.4649,4.731365,6.4639,3.69707,2.83505,2.2138825,1.5266666666666666,1.390997142857143,4.925885,5.8166925,5.0644,6.0607,4.400305,6.569252499999999,3.55086,2.8531833333333334,3.881336666666667,2.064153333333333,3.038753,1.625054,4.538415,2.4051066666666667,3.956655,4.83858,4.10317,2.7441766666666667,2.9466966666666665,1.4274471428571427,2.4405975,3.8107,1.9003075,0.6180225,3.1976433333333336,2.62071,2.4516466666666665,2.2562366666666667,2.070465,1.6325220000000003,0.689509090909091,0.689509090909091,3.553266666666667,1.7839475,2.228745,3.152655,6.0073,4.0992,6.22895,4.421555,4.459805,2.0820369999999997,1.3080633333333334,2.52735,4.311165,0.9482425,3.3441725,2.879575,2.80652,2.127515,4.039565,2.718445,2.08456,1.0672514285714285,3.38089,8.302545,3.611735,1.5887723214285714,4.424355,3.234175,2.88467,3.384875,2.811315,1.74486,0.98989,3.795245,2.4074866666666668,2.2176966666666664,1.6045,2.2492033333333334,2.3141633333333336,2.4815633333333333,2.804385,1.2321066666666667,1.82969,1.03397,6.392195,5.6857,6.08755,3.924695,4.50057,3.01074,1.6241289743589742,4.76388,5.14485,2.594265,5.25255,2.05195,4.743825,0.9733666666666667,4.10283,4.212985,1.95224,7.6546,3.56154,1.84984,1.992905,1.75838,2.60295,3.4981666666666666,1.2306125974025974,2.9665,5.6268,3.44939,3.94955,5.51355,5.467,5.836,0.9109925,4.133135,4.456955,4.2379,4.779725,4.0862099999999995,4.75647,4.77751,2.881235,1.7183166666666667,1.7183166666666667,5.2467,6.023093333333334,3.584675,2.59554,3.993615,4.64436,1.594182,4.164195,5.20495,3.571925,4.075285,2.915176666666667,2.8687799999999997,4.965175,2.4828485000000002,10.626299006601242,1.9498166666666668,0.7536175,2.5718866666666664,1.6802625,2.5285,2.120545,1.938864,2.8218266666666665,4.98626,5.49905,2.8919099999999998,1.6894,6.338099047619047,1.5159714285714287,2.9481866666666665,0.5187428571428571,4.135833333333333,5.5193,3.53097,4.38744,11.588745,5.1637,3.1591566666666666,3.5662000000000003,4.38747,3.06762,4.491525,0.85530125,1.0355883333333333,0.83062,5.5926,4.137125,1.746722,4.712085333333333,4.493905,6.64395,4.87789,5.1769,4.30507,6.00995,3.8819,5.2917,3.32377,1.180452,3.71423,5.43295,2.92229,4.01086,2.90425,2.570375,1.216295,5.06405,3.918205,1.29865,3.4374333333333333,2.9213566666666666,2.6377333333333333,2.56763,2.475286666666667,3.0641433333333334,0.7032645454545454,2.2946633333333333,2.590943333333333,2.58182,1.89111,3.208323333333333,2.001055,1.4864433333333331,2.4103575,2.0181675,2.1673425,3.383433333333333,2.8717466666666667,0.661562,2.9455299999999998,3.65105,4.703945,2.34205,3.742705,5.27145,5.00595,3.36309,3.86438,1.3743642857142857,3.377245,2.5226194444444445,4.277078333333334,2.7081237500000004,4.84165,5.4548,4.86231,4.173105,4.2058,0.8675280000000001,0.8675280000000001,2.257318076923077,1.672705,4.15934,2.5361125,2.5361125,4.818515,6.15785,3.0835,1.26204,1.5364,5.80995,3.61283,2.35003,3.18276,2.82324,3.12224,2.35003,4.4116325,3.19122,3.06046375,2.70026,2.08017,2.915415,6.57315,3.27024,3.353035,4.53016,6.64365,6.5804,6.637449999999999,6.637449999999999,5.58645,4.92601,0.5554561538461539,4.9959,4.470715,2.951595,2.82087,8.21383,2.9854299999999996,3.96969,3.676155,2.6343466666666666,4.67981,2.482125,3.329845,3.1266033333333336,3.647866666666667,2.5255566666666667,1.5730439999999999,1.5730439999999999,3.76092,3.99957,5.6796,1.8293679999999999,1.507302,48.15426746212121,2.58875,0.8563945454545454,3.2366533333333334,1.8661275,3.3159233333333336,2.81934,3.0467666666666666,3.1556,2.7830266666666668,2.05153,1.01762875,4.43351,3.20571,3.590415,3.83992,5.288,5.19075,5.0333,5.1576,5.27715,4.84481,5.67585,6.29279,5.0396,5.477,2.0729875,3.778345,6.66225,5.2045,3.51922,4.326435,3.595995,2.347835,3.864875,4.690385,3.004383333333333,3.9370666666666665,1.609598,4.378665,1.371786,3.179975,3.843235,3.58645,6.34101,4.10026,1.99409,4.2718,4.0332,3.946605,0.951695,2.798545,2.936785,4.39802119047619,1.1770575,4.672855,1.283265,5.8425,0.6949622222222223,3.893837333333334,10.089283333333332,4.338665,3.353485,3.270025,1.8699000000000001,4.266605,5.5454,3.057646666666667,4.563855,9.431830833333333,3.5254333333333334,2.0502833333333332,2.83662,2.78838,2.7042300000000004,2.7667301666666666,1.9987233333333334,2.4815833333333335,3.252133333333333,2.71027,3.1415633333333335,3.3447,2.2613499999999997,1.6796499999999999,5.004034666666667,4.0353666666666665,2.614,5.069011333333334,2.8193333333333332,1.07827125,2.1340025,3.018003333333333,5.4090807142857145,3.039125,2.219871111111111,2.219871111111111,1.57626,1.6617825,2.14496,1.946116,5.9640675000000005,4.4785825,2.1592425,2.8878766666666666,3.7283666666666666,2.0496775,0.6222991666666667,2.3446166666666666,1.907695,0.5433623076923078,3.894605,2.56115,2.6131,3.69838,3.621719333333333,2.446473333333333,1.6197133333333333,1.20754,2.095165,3.414755,3.63767,4.2490475,2.8183966666666667,4.12897,3.80076,1.1298363636363637,8.850235,2.58585,3.267675,1.2783375,2.8914866666666668,2.3444275,2.3444275,2.3444275,5.0405,5.54695,1.597585,5.0267,1.399032,5.475056666666667,1.514038,4.15912,4.250465,4.1124,5.0822,4.660195,1.871105,8.87958,3.878585,5.1233,3.404205,4.035893333333334,3.2502,3.01547,3.81132,2.47159,4.32761,4.2889875,1.6068075,3.94744,1.6068075,3.48791,4.5156775,4.9393475,4.5156775,1.7912733333333335,5.7654,4.491765,4.52219,2.7789133333333336,2.9531033333333334,4.166495,3.10855,5.3446,0.5087521428571429,3.0774333333333335,3.026336666666667,5.0000925,4.82637,2.3607875,4.748165,6.537668333333333,3.24476,2.899255,2.73397,2.1305533333333333,3.92841,4.226235,4.753735,2.411825,3.869295,0.874601,5.4346,3.29686,4.272515,2.2278166666666666,3.04935,2.1899466666666667,2.798996666666667,2.7813,2.75076,3.31787,2.506575,2.506575,4.536988333333333,2.903515,4.80381,11.6890875,0.9535044444444445,4.49369,2.575746666666667,2.33108,2.60409,1.5050875,7.281217,3.3791333333333333,3.58003,3.6654099999999996,2.361073333333333,3.9587,4.142021638888889,2.0145766666666667,0.5213511111111111,1.438008,1.4187225,4.836465,2.893905,3.3413,3.7479066666666663,3.466570833333333,2.35498875,4.97693,4.547695,3.71456,4.556565,2.22498,3.744985,2.50859,5.657246666666667,3.10012,5.2634,4.04625,4.360285,4.307445,1.89723,3.883395,3.612655,3.1292233333333335,3.59739,2.8826,3.083285,3.5874,4.053005,2.6567433333333335,4.482825,1.4754683333333334,3.488235,2.78311,4.35429,4.28475,3.88724,4.751725,2.485235,4.07874,5.0179,4.1652,3.1771666666666665,2.03765,3.006765,2.34559,0.876055,4.45034,2.1376,3.523565,2.689315,4.061295,3.117195,2.917935,3.146245,3.91155,4.5498579999999995,3.936455,2.853165,1.4798099999999998,3.53315,2.46528,0.9455111111111112,4.210475,8.83569,3.36305,3.592925,4.075275,5.1164,3.756555,2.1224,4.019415,3.875995,3.139965,3.213855,3.742845,0.6143025,1.2698257142857143,6.4735625,1.7581325,2.686735,4.903461,2.450135,2.26688,2.63939,7.80593,2.62101,4.05541,3.778165,0.7655,3.44956,2.60895,3.814825,4.017045,6.0681899999999995,0.674388,3.288275,10.2159,3.18072,1.0654044444444444,5.187282083333333,4.712105,5.47605,4.214405,4.418425,3.293995,2.5232033333333335,7.440055,0.8229939999999999,3.46809,4.048245,3.13813,4.17808,2.50454,4.343125,1.7140833333333332,4.12669,4.081995,4.03515,1.64636,4.691405,4.69907,2.37075,2.16014,2.25923,0.869848,4.14477,3.2933935,1.44569,8.51132,6.0156,4.57871,4.253205,3.51267,4.42692,1.4878857142857143,4.253315,3.975555,5.26995,3.76185,2.322086666666667,6.555451538461539,0.953525,0.953525,2.55953,0.9169385714285714,4.181335,2.7162933333333332,1.032615,1.7292133333333333,0.408485,6.302715,0.9673375,2.66887,3.817235,4.04842,3.591085,4.1475,5.35065,5.598715,3.44128,3.140605,2.406095,3.847575,4.40496,4.26104,3.95034,3.668645,6.0555,4.41405,4.380305555555555,5.324738,3.717485,3.294565,2.32898,3.294565,6.851623,41.466053696969695,3.871095,3.467185,2.9608133333333337,4.28867,4.357575,3.429085,3.545105,3.871815,4.49152,4.097735,1.6343183333333335,4.59989,2.65946,4.76577,5.0603,5.05455,2.4127733333333334,4.25172,3.832665,3.2468,1.4935399999999999,0.6475653846153846,1.8581800000000002,3.7264666666666666,2.899566666666667,1.2770125,2.9137733333333333,2.6424333333333334,2.7395899999999997,3.7248,3.0149399999999997,1.4255879999999999,2.726793333333333,3.8041,1.931206332046332,2.867043333333333,3.180844,2.95251,2.6362099999999997,3.4465333333333334,1.1719,3.597905,4.019075,1.267175,1.267175,1.267175,1.267175,2.785818787878788,2.0114533333333333,2.41228,3.284465,5.0427,5.0951,4.13574,4.38898,5.5269,4.511625,2.309105,5.9263,4.31971,3.16904,3.85688,3.10558,4.186385,4.20089,0.7132423076923077,1.4444857142857142,1.5935033333333333,4.201335,3.834515,4.53734,4.026555,5.982025,2.29672,4.46035,1.51978,3.391585,5.11975,1.54565,5.22085,0.7187891666666667,4.381265,1.1542780000000001,1.18374375,3.631535,3.9453,5.22325,5.0868,6.019,4.450385,1.507038,2.7246,1.4262075,3.77859,2.99776,2.515512222222222,1.9960875,3.153415,1.2944066666666667,3.2821,4.97839,2.951703333333333,5.862,121.32762282521645,0.4768411111111111,4.801535,2.4025833333333333,4.88827,4.08959,3.721285,1.527245,0.3472952380952381,2.799525,3.723425,5.28775,3.48634,3.456525,4.34062,4.340345,4.10382,8.515080000000001,0.6928377777777778,2.698945,0.9641625,10.908356,3.13883,3.60725,0.9266433333333334,2.308925,2.735285,2.08281,3.4362,3.28581,2.8049233333333334,4.40039,2.999053333333333,2.3443566666666666,2.238156666666667,4.37619,3.49887,3.01066,3.59049,3.775955,3.35542,2.2497700000000003,3.83973,4.002495,3.028565,0.8955222222222221,2.520843333333333,4.40039,4.613915,5.47715,4.158765,3.479605,1.83635,10.470279999999999,4.26935,2.68559,4.114895,5.3493,0.5589633333333333,0.5589633333333333,4.1861975000000005,4.1861975000000005,3.134155,3.643166666666667,1.819309772727273,0.5562291666666667,2.872195,4.341205,4.15623,3.468445,4.112075,5.3468125,4.56298,2.1444875,4.721305,2.1395125,2.75571,4.197848333333333,1.721545,2.047325,0.47704857142857143,1.2135985714285715,1.2135985714285715,1.88058,4.186255,4.609635,4.79743,6.630735,2.68218,3.053585,1.864225,1.96038,3.93794,3.748805,4.8209599999999995,2.58144,4.8209599999999995,4.59187,3.57505,5.9459,3.777795,2.4128000000000003,1.9874,2.4384466666666667,1.4512775,1.4407475,1.526095,1.8605725,1.587075,1.6833775,3.9941333333333335,4.59624,2.36384,6.7666,3.04204,4.406365,3.3695,4.229365,2.887696666666667,2.892863333333333,6.131846666666667,3.3961,4.670352666666666,3.13088,1.3178475,2.503836666666667,2.57069,2.2867633333333335,6.36915,4.46341,4.764505,12.568377939078465,0.7829808333333333,1.9768815000000002,2.20403,1.6084900000000002,1.3234542857142857,2.55515,2.42721,2.5045,2.394685,0.7498761538461539,1.9708475,0.5325421052631579,4.434945,1.909205,3.868015,4.408545,2.5718,5.6759225,4.090695,7.3192,4.048615,2.77329,3.058585,4.824345,4.90175,2.837957333333333,4.562545,2.17096,2.17096,5.05325,3.959535,4.330425,4.10292,3.2603266666666664,3.965485,4.813085,5.2682,4.630365,4.351985,4.48386,4.211655,2.37485,5.1651,1.2099183333333332,4.719455,4.694335,2.4699166666666668,2.17906,4.93326,1.5368683333333333,5.0634,1.7575375,5.978575615942029,3.809745,4.062075,1.6128666666666664,2.94552,2.94552,11.79118,4.027615,4.545385,1.143645,4.417932,2.3858475,1.4513975,2.3309075,1.7111575,2.0245775,1.812856,2.95797,5.84975,1.738195,4.97394,4.6552075,5.63665,2.194405,2.451225,3.490405,4.396235,5.53195,3.879835,7.3557500000000005,3.1567333333333334,2.8332466666666662,0.3608783333333333,3.81665,4.606045,3.2769866666666663,6.113991666666666,2.6136066666666666,3.2025166666666665,1.2363266666666666,1.6179916666666667,0.6180225,1.438008,3.007775,1.5218,1.4964016666666666,0.6512375,1.4289239999999999,4.63166,2.375835,0.6264192307692308,1.5301799999999999,1.6830325,1.682534,1.2795783333333333,1.969035,1.6179916666666667,2.5802,1.4289239999999999,1.4289239999999999,0.6264192307692308,1.5886571428571428,2.4176200000000003,1.239685,2.70815,0.6264192307692308,2.71255,2.4176200000000003,1.3049166666666667,1.3049166666666667,1.3049166666666667,1.897832,1.227145,0.6264192307692308,1.098082,1.14094,1.0138933333333333,1.845392,2.68455,0.858,2.1673525,1.5897000000000001,0.6264192307692308,1.746498,1.6179916666666667,2.03785,2.02975,0.8994030000000001,2.03785,1.0582433333333334,2.37075,2.38326,2.471045,1.14094,2.08376,1.2944066666666667,1.2944066666666667,0.9082509090909091,0.9082509090909091,0.9082509090909091,1.2363266666666666,1.6179916666666667,1.5897000000000001,1.5301799999999999,0.9507842857142857,2.02975,1.45801,1.766346,2.09408,1.2363266666666666,2.6383199999999998,12.864587499999999,0.6512375,2.64498,1.7632833333333335,2.355145,0.9922242857142857,0.9922242857142857,0.6264192307692308,0.9839211111111111,1.6325220000000003,1.5897000000000001,1.811852,2.02975,1.148011111111111,1.148011111111111,1.6730519999999998,0.2146475,0.2146475,0.2146475,0.2146475,3.068376666666667,1.0582433333333334,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.2146475,0.3777745454545455,54.67663591774892,1.4887325,1.6156166666666667,1.5897000000000001,1.7632833333333335,0.9507842857142857,0.6510470588235294,0.708943,0.708943,0.708943,0.708943,4.405266666666667,16.189551666666667,3.3627000000000002,0.5861354545454546,1.55244,1.55244,1.55244,0.5861354545454546,3.007775,0.6264192307692308,1.746498,1.4964016666666666,2.5423999999999998,1.0582433333333334,2.3607875,1.0582433333333334,1.7641839999999998,1.7641839999999998,2.1534833333333334,2.1534833333333334,0.6264192307692308,2.02752,2.02752,0.9300454545454545,0.2146475,3.007775,1.4390133333333335,2.5206,0.5861354545454546,0.5861354545454546,0.5861354545454546,0.5861354545454546,0.5861354545454546,1.7632833333333335,0.3777745454545455,1.0582433333333334,2.2960575,2.2960575,2.44435,2.931713333333333,0.6543571428571429,0.6543571428571429,3.4187666666666665,4.237933333333333,1.225604285714286,3.4619,0.983395,2.519625,1.9983239999999998,1.154085,3.038956666666667,1.9217675,3.2016899999999997,5.24675,2.197315,1.1973777777777779,4.18215,4.12053,2.6670366666666667,1.7451,2.406168076923077,4.364285,1.7982325000000001,2.7046433333333333,2.99133,3.1433199999999997,2.41874,6.188783333333333,4.238205,0.2146475,2.9645166666666665,5.18475,3.49526,4.62535,4.54793,4.480555,2.774126666666667,1.8012799999999998,4.63074,4.733955,4.4234,4.725965,5.236,3.199265,0.7398258333333333,6.795904999999999,1.6823166666666667,3.146166,4.57993,2.57145,2.57145,0.8532763636363636,1.9960875,4.03851,3.044225,5.2358,4.06567,4.657055,5.1231,1.091327142857143,4.71749,5.72255,6.766367152777778,2.24871,4.28313,3.908155,3.999665,3.72538,3.98524,4.341745,6.1880625,5.1602,3.9759933333333333,3.538125,4.481235,7.392182,1.929625,1.9266641025641027,2.815243333333333,1.73722,2.6414666666666666,1.8562466666666666,5.06045,2.9570900000000004,6.05485,1.9503499999999998,5.1045,4.029235,3.599785,4.39863,3.80923,2.5430433333333333,2.769743333333333,2.731393333333333,2.58102,2.46772,1.6653233333333333,2.64255,2.7997366666666665,2.21278,2.21278,4.321215,2.94701,1.9793066666666668,3.0004566666666665,2.053873333333333,2.59739,3.008456666666667,2.68783,3.1412266666666664,5.30065,4.124955,3.917885,3.3298313333333334,3.3298313333333334,4.098075,3.2121733333333338,3.89079,4.45608,4.211465,3.45434,3.271755,7.48247,2.1348075,2.00336,3.4192,3.315385,1.31396,1.31396,3.58631,1.828035,4.081679333333334,3.736545,3.533855,2.279384,2.1668469999999997,0.5635058333333333,3.75232,3.978215,1.9377575,2.42025,4.237895,1.2827366666666666,4.58527,1.2082966666666668,0.4375892857142857,0.5802510714285714,21.46246302777778,0.5802510714285714,0.4375892857142857,0.7229128571428571,9.079416666666667,2.523563333333333,3.65891,4.309835,3.5293725,2.719105,4.115069285714286,2.127775,2.35111,3.86288,3.262005,4.130915,4.50564,3.491455,2.304405,3.191935,3.506935,3.982585,3.09423,1.15798,1.15798,1.15798,1.15798,3.39046,2.830935,3.301275,1.7362533333333332,1.1956383333333334,2.479935,3.78408,3.949555,3.1405,3.22712,2.594615,2.7156841666666667,3.894635,4.11887,1.144045,2.71984,1.09794,2.71695,1.91315,3.7827,5.01275,2.4271433333333334,3.759855,3.8042800000000003,0.8135090476190477,0.2335057142857143,0.2335057142857143,0.5800033333333334,0.2335057142857143,0.2335057142857143,0.2335057142857143,0.5800033333333334,4.633915,7.575453333333334,3.56961,0.539655,3.642185,7.4186700000000005,3.4056,3.14603,1.139115,4.573625,5.46185,4.4408,4.99123,1.670878,4.51474,2.3026433333333336,2.2913673333333335,3.62248,5.3216,0.8112214285714286,0.8112214285714286,3.57788,2.793723333333333,1.93564,3.37139,2.96059,6.7792,2.87487,6.65185,6.054,5.50295,2.403905,1.65501,4.739235,3.370525,2.180875,3.66893,3.08831,1.8407325,1.1288033333333334,4.040945,3.274405,4.8526066666666665,6.092851666666667,1.5158416666666668,3.989305,1.1539333333333335,2.4994166666666664,3.185685,3.744715,0.3982671428571428,3.519805,4.064055,0.9223459999999999,2.611873333333333,7.69065,2.919895,1.971585,5.613786,4.414335,3.68741,1.3829766666666667,5.55825,2.7873133333333335,3.112496666666667,3.5454333333333334,1.7660366666666667,1.7660366666666667,6.45685,6.45685,3.7167625,3.7167625,9.85502,3.7167625,3.7167625,4.386351388888889,6.86675,3.457195,3.5904833333333332,2.9740466666666667,4.546665,3.51951,3.16028,3.189296666666667,4.74797,3.2003766666666666,2.6476266666666666,3.5778,2.28678,2.70139,5.1116,7.3397,6.387905,4.963445,3.823995,4.0515,6.999976,5.2428,4.443115,3.867915,4.677695,2.40732,2.27996,2.155025,5.2323,5.64695,4.675475,4.18395,2.323113333333333,2.5513933333333334,6.83732,1.897832,2.55625,3.3878,3.3878,3.17482,5.21775,0.7579075,3.5919666666666665,3.75282,2.9629100000000004,10.3307,4.14919,2.994096666666667,2.39457,4.357355,5.99155,3.047885,5.52475,2.576163333333333,4.614945,2.9275648571428574,4.43511,5.46365,4.84068,0.9155533333333333,3.5471,1.02464625,2.5357133333333333,4.840164897058823,7.606253333333333,2.57297,3.494533333333333,7.167870000000001,1.778004,4.64539,5.69245,3.604485,3.691285,2.2686733333333335,4.651275,2.33405875,0.4419376923076923,5.06345,2.932395,3.4967,5.04155,4.81147,5.64925,6.7066875,4.62888,5.47385,7.22734,54.372769999999996,4.762425,3.85085,4.58197,5.5815,4.344925,5.2426,4.350675,4.720455,1.894765,3.998265,4.05859,4.732015,2.644775,5.1156,3.784785,1.6280740000000002,5.30935,6.2683,7.109361666666667,5.48465,3.294165,4.67891,3.09887,3.200785,3.418295,4.246125,3.785595,7.16893,2.796275,1.0750142857142857,2.3677900000000003,0.553216,0.553216,3.190095,0.553216,2.474820285714286,2.474820285714286,3.150414285714286,4.686976,5.133450285714286,2.3677900000000003,4.749318333333333,2.6098058333333336,1.4513233333333335,5.57735,2.144325,7.205218666666667,5.855946666666667,10.835688863636364,3.243063333333333,2.58786,0.2143330303030303,1.926665,2.00419,0.8595775,1.33234,2.8502266666666665,2.1905425,2.6971,0.571389,26.66215833333333,1.8467625,0.8152538461538461,2.4690499999999997,2.4690499999999997,0.401685,1.6528975,3.1391275,1.378735,1.559055,1.6527775,4.01695,2.89179,1.94084,2.431103333333333,1.1076716666666666,1.933285,1.5094866666666666,5.431705833333333,3.729905,6.9192816666666666,2.493865,3.4427,0.9700316666666667,2.454255,5.1643,6.447065,3.2592766666666666,2.2117999999999998,5.2648850000000005,1.996135,2.282716666666667,4.3706775,1.08945,3.513333333333333,2.3260066666666668,5.05225,4.90825,6.02405,3.046985,4.04918,4.04918,5.2133,1.69453,5.4302,2.87059,1.62423,2.90664,3.27153,5.052948166666667,3.877005,2.7664266666666664,2.9044266666666663,2.861435,1.038007142857143,5.18955,0.90824875,5.56061,4.287525,7.75126,4.504845,4.515245,4.107395,8.213436666666666,4.33514,4.511045,1.20465,0.7226571428571429,4.564555,4.323725,2.320405,3.17876,3.308305,4.218025,2.19353,4.924465,2.6255433333333333,5.32385,5.36555,5.5226,4.31635,4.83102,2.79848,6.604395,3.44425,4.237535,3.33755,4.86071,5.467683928571429,0.5827978571428571,3.7352333333333334,1.7045966666666665,0.5739833333333333,4.274915,2.77197,1.065325,1.939815,5.81206,3.5697,2.274795,2.7866933333333335,2.703673333333333,5.06085,4.104895,1.684132380952381,4.144835,2.2257933333333333,3.7474666666666665,4.27097,5.16445,3.1300858333333332,3.6443333333333334,3.7353,2.04656,7.44834,4.97522,4.29466,5.2209,2.2103875,4.485725,4.751945,3.593495,3.876175,10.964535,3.434765,4.4267433333333335,4.719505,4.9105,2.37238,4.45322,4.300325,5.08865,3.3795333333333333,4.080665,1.5393025,3.0674766666666664,3.41656,4.003385,5.1204,1.9597460000000002,4.021395,3.2341033333333336,5.3579,3.32582,1.83304,3.857335,4.471525,1.0828,2.92589,2.798806666666667,4.578030666666667,1.729702,1.4651433333333335,1.246245,3.6189,5.1998,5.60475,3.665095,3.188455,2.368325,2.103,1.96745,1.63685,6.00635,2.99984,1.94917,0.8862615384615384,20.44038725,3.040285,3.3294925,4.489798333333334,4.1226899999999995,1.2601966666666666,2.7512245,2.9943861363636364,1.189024,1.84841,4.40667,4.78868,3.6016733333333333,3.14101,5.5381,4.808075,7.0609675,4.660395833333333,4.602895,3.627685,2.69605,4.025805,3.78233,3.8491666666666666,4.087455,1.9741575,4.951155,9.00246,3.303165,2.81037,3.451885,0.57977625,3.21207,2.0829366666666664,2.404065,4.3339,3.277285,5.13095,3.72106,2.980705,2.27214,1.670365,0.764468,1.40595,1.2606633333333332,3.91924,3.906885,4.673775,4.65965,7.45551,2.24165,1.421218,2.37559,7.701321666666667,3.11338,2.870725,3.01147,4.557915,3.36918,3.6069,1.5860319999999999,4.775015,4.793145,4.220955,3.91797,3.569665,4.263935,4.55527,3.90712,4.337525,5.64425,2.137065,3.4181333333333335,2.84495,5.3172,2.98503,4.2353525,2.77306,2.918135,2.1558966666666666,2.2519733333333334,2.1266000000000003,2.407198333333333,2.407198333333333,1.9211600000000002,3.0246433333333336,2.3139366666666668,2.31848,1.9619666666666669,4.0641,2.36335,2.9369833333333335,2.8699399999999997,1.7020766666666667,4.51549,2.7653,3.837845,2.8031666666666664,5.0139,5.3678,4.832351666666666,2.772595,2.063575,2.74118,2.15997,2.20952,2.7065,1.9127075,2.6872,2.8189,6.9033929999999994,4.3837375,3.702495,0.607965625,4.37443,3.9668,4.232545,3.097085,3.94299,3.717135,6.3583,4.40008,3.42053,2.769425714285714,2.1786324444444443,2.49102,1.680552,1.7568639999999998,1.620422,2.0655799999999997,1.8750575,1.2881166666666666,4.179424285714285,0.6264192307692308,0.5536044444444445,1.9782160000000002,1.5030766666666666,1.4441000000000002,1.4240233333333334,2.2650812121212125,1.4437333333333333,1.617252,0.61490375,167.87929209817713,0.5122633333333334,2.0206,1.0065680000000001,1.2118275,2.11804,1.49536,1.9751725,2.203393333333333,1.6694675,6.5893,3.09636,3.33752380952381,1.9801266666666668,3.19455,1.27058,1.27058,5.8011725,0.48766,2.146515,3.3231033333333335,3.1017233333333336,0.8337545454545455,0.5533670588235294,1.1333405128205127,0.9935727272727273,2.2458875,3.935385,1.96333,2.174825,2.4318566666666666,4.889043888888889,0.9960355555555557,4.346575,3.54793,3.504075,6.67353,1.81266,2.82135,2.424385,4.016198,2.212965,2.648305,3.501,3.45099,4.46221,2.8891,5.88859,2.508415,2.77588,3.41544,1.540025,2.621125,2.959575,2.908015,1.71423,1.508735,2.50326,4.100455,5.35592,2.812055,2.828945,1.36235,4.2892,3.898,4.213966666666667,2.870465,25.287464597832724,2.741013333333333,2.7100500000000003,3.0531166666666665,3.4735333333333336,3.317183333333333,5.742366666666667,3.21482,2.4852,3.5035000000000003,3.5276333333333336,2.1606566666666667,3.25808,3.4212333333333333,3.1242966666666665,1.78725,1.539414,0.546609,2.31225,2.00581,0.227553125,2.2515533333333333,2.59224,0.227553125,0.227553125,2.1946197916666668,0.227553125,0.227553125,0.227553125,0.227553125,2.8877333333333333,2.6061633333333334,0.5607676923076923,3.2115585714285713,1.5514625,1.9909500000000002,5.5401,4.29159,6.117979999999999,2.04405,4.94522,2.05186,2.905196666666667,1.3255985714285714,5.813493333333334,2.9091199999999997,6.07766,0.8665083333333333,1.47889,4.64607,4.750625,35.48528692304917,1.581738,1.4054433333333334,2.321756666666667,2.3639875,0.9082509090909091,2.4485333333333332,2.5194433333333333,2.6330533333333332,1.9125833333333333,2.4490166666666666,1.7268483333333333,2.5759466666666664,2.3811666666666667,2.25985,2.69351,2.3875733333333335,3.93593,3.3704666666666667,1.10253,4.13828,4.11642,19.981870555555556,2.8100566666666666,3.26324,2.69102,0.8691340000000001,2.967826,1.640412888888889,2.967826,2.371303333333333,2.5834366666666666,2.804486666666667,1.654575,2.0161225,4.252905,3.96655,5.23805,4.316915,1.599794,5.1416,1.57834,4.98938,4.076481571428571,4.54231,0.7471118181818182,2.001005,2.0966425,2.8571400000000002,3.37273,1.089635,2.925155,1.96489,1.9928833333333333,1.052732,1.052732,3.2168666666666668,2.58609,4.375985,28.62953,6.409495,1.90546,3.6101966666666665,0.37032600000000004,6.2168849999999996,6.13705,2.7739266666666667,3.34879,5.390795,3.71378,1.1803275,4.43806,1.256866,2.311435,4.5856,4.80056,2.051375,3.093565,4.61248,2.64445,2.692862,4.256135,1.3122866666666666,2.5117808333333334,3.76999,5.461825,2.4325533333333333,3.0734266666666668,2.8101066666666665,4.02137,3.98496,4.124245,4.2721,1.725045,6.2704,2.609325,1.7588519999999999,4.129995,5.64052,4.14805,3.64971,0.73320875,2.93656,3.531535,1.8928,4.69965,2.667245,3.89202,2.8657333333333335,3.3971,2.60692,3.2557066666666667,2.99676,3.0229266666666668,4.20025,5.61995,3.48493,1.77517,3.978845,4.307445,1.880995,2.12286,1.73684,4.003982777777778,4.56611,5.245894583333334,4.036415,3.4179333333333335,3.64046,3.235056666666667,1.4316066666666665,3.15511,3.009285,3.151715,4.66037,4.495535,4.39524,2.94075,1.90649,1.59024,1.5476725,3.47495,2.421115,2.337005,3.426095,5.1815,1.549615,5.2346,1.4097185714285714,1.85885,3.12775,3.044285,2.901135,3.66611,3.027595,1.62716,0.9865984210526315,3.4726,3.9781883333333337,4.37935,8.881865000000001,2.9918833333333335,3.18543,1.6121333333333334,2.7142166666666667,2.759866666666667,1.1491683333333333,2.90396,2.7141066666666664,3.167313333333333,3.9273000000000002,3.11852,6.93065,3.10692,0.7498518181818181,1.7062933333333332,3.25428,3.343275,3.4754,3.6038666666666668,2.6325,2.79804,2.559525,2.006329857142857,3.84643,2.460286111111111,3.356865,2.0619533333333333,4.768675,5.19805,4.206435,3.451975,3.635655,0.8568755555555555,4.690455,2.8396600000000003,2.8177966666666667,4.4402,2.6673533333333332,2.8073766666666664,0.4691571428571429,0.4691571428571429,4.242923333333334,3.966265,7.0412,3.03931,4.456795,3.62617,3.12667,4.71083,4.138325,1.046375,3.943675,2.6829666666666667,4.320764166666667,3.1064666666666665,2.9471725,2.0095,3.2036035714285713,2.3367999999999998,2.8078833333333333,2.60737,2.8983666666666665,1.86162,21.965735312582346,3.89405,4.05597,4.03278,3.208055,4.32963,3.46261,4.64639,4.003055,3.969155,3.6903,4.04017,2.6577633333333335,2.7930166666666665,2.9393733333333336,3.0843733333333336,2.9577333333333335,4.266395,3.48862,4.98925,5.07,4.405595,1.25996,1.527714,1.527714,5.11915,4.026635,2.6309766666666667,2.3143466666666668,2.9301600000000003,3.287675,3.67845,7.634483333333334,3.1848833333333335,3.5185,2.9661383333333333,5.4985,1.5639933333333333,6.074175,2.418813333333333,2.826363333333333,1.65667,3.894135,2.92654,6.27778,3.24395,2.55564,4.220505,4.023247333333333,1.4477975,2.437246666666667,1.5615066666666666,7.4817345,4.19094,6.882365,2.289205,4.09349,3.80223,4.206975,5.21925,3.4674666666666667,3.4674666666666667,2.106885,4.33857,5.1032,2.48098,6.737145714285714,1.60939,5.8889,8.481809,3.6748333333333334,4.149108,2.2366766666666664,2.00401,0.538889375,4.601015,2.621275,2.698875,3.7196695,2.328125,2.51421,3.625965,5.9703,5.4103,5.3696,4.79259,4.45674,2.3302,1.0470727272727272,2.83452,3.261155,2.7188466666666664,5.1902,3.963555,2.99815,2.89643,1.945628,4.244515,1.03988,5.20345,1.048482222222222,5.65605,3.29475,4.89327,5.0058,3.13688,3.180285,3.1386233333333333,2.3870299999999998,4.41742,2.89654,2.49571,3.725195,4.87649,5.800355,4.525855,1.6290975,3.391875,2.925695,5.420315,1.9157,1.9157,2.9116066666666662,2.3864433333333332,2.381413333333333,2.925186666666667,0.8383290000000001,6.08075,3.199395,1.94298,2.253095,2.855235,3.763495,2.579675,3.773025,5.18565,5.592,4.787215,6.03645,5.8117,1.316025,3.670585,1.1089499999999999,2.48586,4.415933333333333,2.696485,3.03631,3.212685,4.967585,3.031375,0.44575631578947367,4.67031,4.11334,4.96582,3.25129,5.2354,5.3716,4.325825,4.263555,1.958525,4.61442,2.0905275,4.268966666666667,4.268966666666667,6.4435,5.6567,5.5778,5.00455,2.66426,1.5639933333333333,4.311285,1.9768166666666669,1.64835,1.996735,4.20182,4.153555,4.367755,7.80006,1.6161,5.31435,1.312305,3.19055,6.0055,2.047195,4.839325,2.67327,4.61521,3.327395,4.902695,3.2060066666666667,4.229645,4.02504,5.86715,4.196565,3.967735,3.982465,6.02205,4.02648,4.56269,3.63409,4.12645,7.103423333333334,3.500045,7.08509,3.368195,5.5351,6.132360454545455,4.48634,3.620675,1.58243,5.68665,4.020425,0.8806255555555556,8.47991,6.05485,4.96594,2.976825,5.1408,2.99562,1.7553180000000002,3.89994,1.144045,6.09125,2.809445,4.513865,5.40465,4.42798,4.13746,2.1097233333333336,4.445505,5.15735,1.84218,7.159355,2.99688,3.62431,4.956655,4.20624,2.00371,4.49244,3.531995,3.774455,2.8524766666666665,3.91385,3.78371,5.33125,4.758095,3.28443,1.77722,1.77722,7.500443333333333,1.4477,5.25415,4.31408,5.0091,3.622595,3.63845,4.995645,3.8822,0.9599883333333333,0.9599883333333333,0.9599883333333333,3.648445,3.146725,3.80371,4.490876222222223,2.784425,1.4410933333333331,4.302985,2.12644,2.7036,3.98035,4.516655,1.9696075,2.16498,5.89731,4.02535,2.90197,4.42572,1.7323625,1.9470575,3.3559,2.690525,5.2521,1.4084160000000001,1.610986,1.0594475,4.13886,3.630825,2.99196,3.010623333333333,5.43165,1.7223,2.0637475,3.118485,1.6825142857142856,3.0951,3.56146,2.3944525,5.89585,5.5212,2.79138,4.38425,3.788295,3.46343,3.512995,4.064335,3.68258,6.43904,5.0093,1.85903,1.7920166666666668,3.48093,4.64837,4.11654,3.87028,2.9217666666666666,4.126225,6.26555,4.89047,2.7045999999999997,5.32065,3.983375,3.94766,8.370989999999999,3.62769,0.7290854545454546,3.92868,4.182671666666667,2.486435,4.12358,3.939766666666667,5.84155,3.89721,3.860905,3.704365,4.400015,4.569135,4.467165,2.981305,3.91928,4.951615,3.930085,2.81059,3.19599,6.31029,5.3461,2.05626,3.111005,4.404788333333333,3.91086,4.868805,4.157695,2.4662866666666665,0.9010411111111112,4.443414848484848,6.745135,3.622605,4.891655,3.538355,6.905706666666667,3.92777,3.6644666666666663,2.8534166666666665,3.733715,1.963445,3.344455,4.45806,2.5348075,4.25573,6.09285,1.41095,4.701545,0.6649714285714285,6.2197,6.19595,5.9599,6.1838,1.4386983333333332,1.7661833333333332,4.59081,1.95076,5.7011,0.53689,5.96095,3.166195,1.5376020000000001,6.239105,6.5202,0.8500825,1.5343105,1.2875320000000001,1.2875320000000001,1.2875320000000001,2.25559,4.952765,3.5578,3.4168,4.16823,5.1336,3.86824,1.954272,4.35739,5.05415,0.3006463414634146,3.544855,4.66089,4.20316,38.866422984848484,5.942158333333333,4.915165,10.971439333333333,2.80632,4.18091,7.068898333333333,2.973805,5.00155,3.90161,4.21323,8.98541,3.83194,2.6920966666666666,2.74328,4.75984,4.37355,3.436565,4.344405,1.934055,4.49688,4.007045,6.794395999999999,4.15883,5.15645,2.333835,4.217985,0.520676875,1.4155,3.34538,5.9027,2.994635,1.2334816666666668,1.2334816666666668,2.89249,3.870845,4.295255,2.57136,1.6206933333333333,3.53044,4.101985,1.84247,3.384933333333333,1.654946,1.76783,3.94988,4.499345,2.1363525,4.76656,2.3302125,2.239435,3.78968,3.52519,4.00405,3.84052,6.156690666666667,2.4305406666666665,3.90049,0.7631854545454545,0.679685,3.87529,2.23936,8.613016666666667,3.3627000000000002,5.08675,1.66166,4.63684,1.5336883333333333,4.073185,4.501065,2.5912366666666666,3.70174,5.0829,0.4140125,0.4140125,3.8480000000000003,3.2780133333333334,2.9570666666666665,3.799765,3.682525,5.5097,1.0442909090909092,10.782361666666667,10.99145,1.969035,4.60741,4.701185,4.965195,3.579135,2.5578433333333335,2.03314,2.0587125,9.966335,2.138875,2.7357633333333333,3.670732,4.73298,3.670732,2.27961,2.929396666666667,2.8901,0.7384736363636364,5.430110833333334,2.8627266666666666,2.7309066666666664,4.134415,8.59984,10.55292,4.0183,4.104865,4.266105,6.540525,1.8747025,1.4382625,26.510591666666667,4.61441,3.997055,1.03286,4.840435,4.11087,5.4312,4.59543,5.28865,5.637883333333333,3.0611333333333337,2.0700966666666667,0.6633764705882353,0.7356341666666667,4.53261,5.26005,1.3687783333333332,4.352975,0.92145,3.6995,1.5594033333333333,4.33792,5.9601,1.967865,2.483925,2.517545,3.790835,2.800165,0.4328761111111111,3.9106,3.59617,2.8616533333333334,3.2766,4.967765,2.9393733333333336,4.18687,3.056575,4.609935,8.36798,4.971335,8.284905,2.679525,2.572363333333333,4.476865,4.4771275,4.5831,4.36436,3.74146,4.75543,1.20628875,3.3054083333333333,3.3936735714285713,0.79716,1.527714,1.527714,4.53766,7.535711666666666,0.8167384615384615,4.75792,0.9007966666666666,3.0122133333333334,2.3508166666666668,2.612141818181818,6.279288888888889,2.5009466666666667,1.1349555555555557,2.3466366666666665,1.2801625,1.9049533333333333,3.2201833333333334,3.0577666666666667,3.3353,2.44838,0.9007966666666666,4.503065,4.68153,5.49555,2.67269,3.961835,2.1125,5.9562,4.821325,4.463265,2.97941,3.33449,2.2192625,1.50713,4.18708,2.70215,4.588475,5.63245,1.662372,4.62207,2.9981299999999997,6.497755,3.641885,2.445565,0.9007966666666666,2.445015,3.375,7.308440555555555,2.3007633333333333,1.87298,2.3007633333333333,0.43412083333333334,1.106896,4.112785,2.38936,1.722295,3.54745,3.8099309999999997,0.633196,0.633196,0.633196,7.710139999999999,1.589142,0.7402527272727273,2.68513,39.17631904545455,1.942818888888889,0.6695888888888889,2.946225,0.6695888888888889,3.74864,1.953195,2.438415,2.548033333333333,5.0035,4.164285,4.607905,2.3753800000000003,0.8624085714285714,4.35182,3.318016666666667,5.204,1.02722,2.933925,2.933925,3.80344,4.59145,3.8246,5.176076538461539,3.07479,4.72398,5.3893,1.859054,1.095085,5.34125,6.5974,3.82329,0.679489,4.60286,4.11713,0.983235,4.46261,2.37989,3.9968,4.3787,1.9093863636363637,1.9093863636363637,4.168445,3.390095,0.9204977777777779,2.96198,3.07422,3.271875,3.97923,4.45413,0.51401,0.2754682352941176,0.2754682352941176,0.2754682352941176,0.7894782352941176,0.6153515384615384,0.6481779999999999,0.2754682352941176,0.2754682352941176,6.70906,0.2754682352941176,0.7894782352941176,3.51699,1.2972775,4.74718,1.1717,0.5826661538461538,0.983235,2.518945,2.68225,4.036515,3.026335,0.2754682352941176,0.2754682352941176,4.40265,3.730895,4.143935,2.6882,4.00834,1.475662,3.822305,0.6481779999999999,0.6481779999999999,4.90229,3.09369,2.686715,2.768745,3.8907266666666667,1.09567,0.9502153846153847,10.64141,1.2832625,3.85451,4.61007,5.0993,2.11652,0.3967426086956522,0.89876625,2.8336066666666664,3.226,3.321605,4.37341,1.386952,6.0918,3.522755,5.113155,4.20445,3.015423333333333,2.9010533333333335,6.5936699999999995,2.6850633333333334,4.679115,4.13716,3.8042800000000003,5.95461,0.550444,4.45368,3.5058333333333334,2.0918233333333336,0.6882688888888889,4.111805,4.71812,2.791325,2.36886,2.097845,5.12465,2.721325,2.77788,0.9774160000000001,0.46899153846153846,3.894145,0.34632,0.7761563636363636,3.957985,3.13766,4.11494,2.62836,5.5842,4.34723,6.154074666666666,3.560565,3.361525,4.39151,1.5553875,5.1671675,1.7612320000000001,4.060875,2.409295,5.916476666666666,2.50636,1.0184279999999999,4.64737,7.146889999999999,6.87250875,3.686033333333333,0.8097808333333334,2.8744899999999998,4.537715,3.97131,4.61605,4.61716,4.192365,5.18935,3.05922,4.24306,1.7678533333333333,2.32675,1.4779200000000001,4.08634,9.550415000000001,3.083775,3.69322,5.9081,2.61073,4.19812,2.5554866666666665,2.853016666666667,3.34957,3.34188,3.496145,3.26237,3.36159,5.15535,5.91265,3.920765,4.688935000000001,4.814995,3.90383,2.633895,5.16645,7.784000000000001,0.9200744444444445,4.163435,3.99688,4.83558,5.57725,5.3328,2.48949,8.22593,2.4189833333333333,3.60566,6.0757,3.76066,4.341365,2.21174,1.803505,3.031556666666667,2.18512,2.0752099999999998,2.97148,4.40422,4.62475,4.07128,3.31915,4.727643333333333,3.39299,3.11131,3.9790849999999995,5.70025,2.932975,5.509150833333334,3.94313,3.957345,3.75642,7.46849,3.82308,3.64627,4.29837,4.845525,3.25333,10.7793,1.347075,2.170855,3.841135,2.7655933333333333,2.7655933333333333,1.958165,7.995761666666667,0.8939277777777777,3.246575,0.9050925,2.0637475,4.57159,5.1336,3.976115,4.25217,2.792533333333333,3.462525,4.048355,3.887755,4.28368,2.988805,2.5204866666666668,4.289415,4.821446666666667,3.419265,4.40476,1.686836,1.64854,2.7258266666666664,5.73875,2.28797,1.7047366666666666,2.06193,4.35006,4.7924,2.974475,2.64886,0.46094,2.353095,7.6017,3.346875,1.53808,0.86674375,1.1947566666666667,1.8589033333333334,2.3325325,1.3080533333333333,2.08778,4.3710455,3.891755,4.608865,2.4577966666666664,2.02042,6.323105,2.953225,2.2822899999999997,2.2822899999999997,2.2822899999999997,6.446963333333333,2.2364966666666666,3.586645,2.514665,0.473,1.175,2.396065,5.6516850000000005,0.43942,3.61631,3.9728541666666666,5.94215,3.0808033333333333,0.43942,3.0808033333333333,0.93576125,1.211064,5.8248,4.118375,6.6456175,4.09015,4.92164,3.90149,4.18782,5.12985,5.7034,6.08925,3.80685,3.32719,5.1704,4.637765,4.1959,4.57412,4.525655,1.3770449999999999,2.6664,1.23241125,2.19166,3.144089722222222,1.4903163888888888,7.261345,5.420315,2.6105783333333337,4.337295,2.895385,4.771585,2.865995,4.1717,5.1108,9.225185,5.2668,4.42241,2.44926,2.927155,2.0864000000000003,0.57977625,2.1865093333333334,5.97205,5.32525,5.0524,4.80839,0.5051433333333333,1.99648,1.4350675,4.30404,0.7111423076923077,6.738025,2.03641,1.16101,1.16101,3.9750020000000004,2.1045000000000003,3.027896666666667,2.640065,4.63125,3.7875325,3.7875325,4.19279,5.880423333333333,2.7537299999999996,2.5280533333333333,3.358966666666667,4.7891,1.7952359999999998,2.69887,5.68085,5.24535,4.788375,4.1834,3.9424200000000003,4.46111,3.5008566666666665,3.190846666666667,2.31204,4.174015,5.41275,3.37907,5.2132,5.5857,2.0542133333333332,2.5527466666666667,6.1601,7.029,1.167036,2.746975,2.3626125,2.6929200000000004,2.24038,2.578125,2.7924055,1.07376,1.930435,2.6323,2.40489,2.467716666666667,2.467716666666667,3.1044405,3.105,2.29399,2.6721,2.423325,2.00518,1.564350666666667,5.1498675,15.115817166666666,3.0119566666666664,3.3186066666666663,1.785808,1.785808,1.61983,1.61983,2.9307933333333334,3.7172666666666667,2.9819433333333336,2.019595,2.019595,4.0407,2.5488766666666667,1.0501233333333333,1.4858428571428572,3.0237833333333337,3.0098333333333334,3.7115666666666667,2.6483978571428572,3.417566666666667,3.101706666666667,0.6960379999999999,2.654025,3.640223,7.212881666666667,4.857515,5.63285,4.457465,3.36515,4.825915,4.71325,2.7872733333333333,4.29719,1.3888816666666666,3.24365,5.69485,5.1823,2.79797,1.2793366666666668,3.00346,2.4136433333333334,2.99917,1.5288566666666668,0.7057528571428572,3.1154333333333333,4.6498425,4.77957,4.35571,4.852705,3.1035500000000003,2.1747333333333336,3.285915833333333,2.603616666666667,3.3119866666666664,3.215403333333333,3.3538,2.6901200000000003,2.2638866666666666,3.7031666666666667,2.8579399999999997,5.29855,4.68925,5.208474166666667,5.208474166666667,3.546455,3.80383,3.71926,3.705575,2.7901,4.243185,3.36091,3.0756933333333336,6.24095,0.7524058333333333,5.175,4.788765,2.5653366666666666,5.607530000000001,3.5984,1.8071166666666667,1.2276557142857143,2.16356,1.02674,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.29597357142857145,0.5383214285714286,0.5383214285714286,1.18524,0.812197638888889,1.6282029924242425,0.9638228571428571,0.9638228571428571,1.1899041035353535,0.4382988888888889,0.39336444444444446,1.234245,1.4433825,2.58761,2.323625,6.467183333333333,3.0986966666666667,3.83653,3.3688266666666666,4.904676857142857,1.30397,4.89221,4.235125,5.17385,3.224965,1.50271,4.226428076923077,3.699975,4.47362,4.5363,3.26532,4.9798,4.69247,4.654705,1.211174,3.839095,4.797225,3.053745,2.3544533333333333,3.39413,2.62504,3.353115,4.425705,3.07076,4.68344,8.859490000000001,3.27562,4.970925,4.32066,4.42833,2.622386666666667,4.55494,1.0067985714285714,4.53801,3.328815,2.33992,1.3255625,2.857635,1.3238683333333332,0.5244433333333334,3.5988666666666664,4.3236,5.197726666666666,3.6405666666666665,2.540875,2.647435,4.79571,3.9977666666666667,4.51326,2.651175,2.1725566666666665,4.03466,3.89091,4.143355,5.16135,4.492855,3.713215,4.63386,3.2041,4.33092,2.2260999999999997,4.61599,5.2228,3.24602,4.389795,2.489235,3.812495,5.54855,4.069805,5.332,4.81438,4.87043,2.3802033333333332,4.966465,4.91852,4.84139,2.2380375,1.1734025,4.151,4.808975,4.13733,5.1009,1.835315,4.164985,2.27438,4.95304,4.72807,4.682055,2.2464775,4.136225,4.523375,4.386735,2.544563333333333,5.01135,4.733225,5.2427,3.900335,2.2380375,2.30782,2.92172,4.95314,3.937155,4.241855,3.48569,4.81998,2.49747,6.96209,5.3641,4.720345,5.3316937569444445,5.2009725,5.20225,3.6568924999999997,2.934595,2.934595,3.907085,3.71836,4.490045,2.1516425,2.924875,0.9893875,2.605516666666667,2.9464333333333332,2.4568666666666665,3.0854933333333334,4.305135,2.846103333333333,5.4016,2.582056666666667,4.48937,4.59972,1.988015,4.18405,2.82945,2.6466833333333333,3.98894,0.8869960000000001,5.2932,4.652095,6.2733574999999995,4.7228,5.4162,1.275577142857143,4.70179,6.5429,8.569995,3.2434333333333334,3.31857,1.9215440000000001,0.819498,3.8339,1.0250514285714287,5.11655,4.50166,5.9306,3.25786,4.324175,1.1776557142857143,3.644845,3.5727,4.28519,4.09938,3.02742,2.747745,2.4032525,4.46247,4.708,5.5903,4.401755,3.709975,0.3515511111111111,0.3515511111111111,0.3515511111111111,0.3515511111111111,5.4644,2.991065,6.17125,3.170503333333333,5.09105,4.720865,3.50884,2.31118,2.4631066666666666,1.4249233333333333,5.2441,2.9081566666666667,4.18199,3.973995,3.44566,1.65775,1.1714925,4.521275,2.434745,5.925998333333333,3.995795,4.566545,2.23508,1.587015,0.8987822222222223,3.36992,4.35779,3.630605,2.1905,7.761015,4.778355,3.48312,2.24622,0.525952,3.293395,2.411465,2.14928,1.9068,2.777725,2.82809,2.30994,2.9357633333333335,2.86888,3.46419,4.566355,3.73595,4.115275,3.25803,5.795261666666667,0.6398793333333334,4.557595,5.6873,5.01655,4.816835,3.4670666666666663,5.25085,4.596465,4.19268,5.4746749999999995,5.44355,4.77873,4.7502,3.7303075,5.27505,2.97566,8.85231,5.0698,4.272805,4.78861,5.26855,5.7152,3.48769,1.1566333333333334,5.916663333333334,3.384695,4.940155,1.40693,4.356395,3.826895,6.769425,4.83316,3.104215,1.9116366666666667,5.0118,2.18806,0.90248875,4.51015,6.0862,1.9464866666666667,2.3981166666666667,2.777893333333333,3.17085,3.545875,3.78086,5.1066,1.8420699999999999,4.347365,4.2645100000000005,3.340655,3.705766666666667,3.726575,2.909185,2.66456,2.0333675,2.4358866666666668,2.63774,4.30572,0.5635058333333333,2.563146666666667,4.423965,3.016925,3.6414666666666666,4.438975,5.193,3.98287,16.691073575757578,2.56371,4.149866666666667,1.529306,0.896170909090909,0.896170909090909,0.896170909090909,0.896170909090909,0.896170909090909,4.98853,4.6625,4.84032,9.21004,2.473985,2.473985,4.702455,4.790623333333333,1.31879,2.21429,3.94422,2.38503,2.3219575,2.23146,2.969325,3.708517333333333,1.7887275,3.64109,0.8297928571428572,2.85307,2.8169033333333338,3.068156666666667,1.4600033333333335,3.185636666666667,2.28435,0.980355,2.80232,2.7149,1.2903333333333333,2.48205,2.6886666666666668,2.2245166666666667,4.389744666666667,1.8125466666666668,2.867376666666667,2.0975925,2.715543333333333,1.1214666666666666,2.8130433333333333,4.833192666666667,3.5080666666666667,1.0654525,3.0690666666666666,1.322905,2.46162,2.3915933333333332,4.768231666666667,3.0913833333333334,2.4112466666666665,4.772128666666666,2.6165533333333335,2.183085,2.81314,2.59144,1.6288633333333333,2.86303,3.2056299999999998,3.0383633333333333,2.55898,3.1181033333333334,2.64704,2.4484525,3.7677605000000005,3.7677605000000005,2.9398666666666666,2.07,1.8448666666666667,2.5555566666666665,5.454863333333334,2.8339266666666667,1.9252933333333333,1.710765,3.0624633333333335,4.361525,2.400866666666667,1.116376,2.7506893333333333,1.51751,4.0950999999999995,2.0826,2.5034033333333334,2.1276800000000002,3.068403333333333,1.297628,1.68037,1.5033066666666668,4.259755,2.5224699999999998,3.930425,1.047711111111111,4.14138,2.01003,2.04258,1.74331,1.6030266666666666,3.3177566666666665,23.32520046753247,7.561533333333333,2.5831133333333334,3.609445,2.837896666666667,10.008488,3.040126666666667,0.99577125,2.5538266666666667,2.3646066666666665,2.0191433333333335,2.8388766666666663,2.590593333333333,2.5079366666666667,0.9479960000000001,3.0974566666666665,2.624276666666667,2.9983966666666664,2.65884,2.6770300000000002,2.1344333333333334,2.221373333333333,2.8678899999999996,2.6212,2.107125,1.585196,5.188416666666667,4.52916,2.4407425,3.0334,2.232063333333333,2.46763,8.243518333333334,1.9795233333333335,4.828205,2.485705,1.9426825,7.58554,2.9374000000000002,2.87323,2.46516,1.86557,1.5246892307692308,3.24485,3.181103333333333,4.012355,1.518835,3.6569000000000003,1.2994225,1.2994225,4.096595,3.81411,3.5751999999999997,3.5751999999999997,6.004083333333333,3.429115,0.417261,11.967454764957264,1.21654,0.92323,3.8345766666666665,1.4661239316239314,1.9002675,6.11098,3.845165,0.7569236363636364,2.1127366666666667,4.945608727272727,2.4715766666666665,4.12072,1.2932042857142856,5.45995,5.09265,4.984905,3.268289,1.973626,2.3087133333333334,2.5938,2.4043566666666667,2.1738399999999998,5.141133333333333,4.326015,4.258295,1.8171925,4.701905,3.941105,3.2820966666666664,2.2177825,4.88532,2.4847,8.857676666666666,6.604817499999999,1.9324475,2.12214,1.7371500000000002,4.650066666666667,4.650066666666667,3.082076666666667,2.82465,3.3050213333333334,4.905475,9.783395,4.2606,2.518325,5.50755,4.272995,5.2032,2.0185199999999996,0.816115,1.3424950000000002,4.55132,4.89463,3.7209333333333334,2.7820400000000003,3.8348999999999998,2.1228599999999997,4.12682,4.98234,3.427575,5.36965,3.184196666666667,3.5797653333333335,3.3626666666666662,3.3365666666666667,3.4042333333333334,6.21635,3.017325,5.3782,4.81711,3.406215,3.323975,3.323975,6.049402499999999,12.015803333333333,3.7114999999999996,6.117475,7.404606666666667,3.55761,2.4193966666666666,3.946485,1.2520900000000001,3.783235,2.67185,2.990153333333333,2.9970700000000003,3.228123333333333,2.17182,2.3192166666666667,2.7346333333333335,2.4810466666666664,2.99412,3.0307066666666667,3.952545,2.4914366666666665,2.9031633333333335,3.90906,2.7468833333333333,2.53793,1.14813,2.0613325,2.8002033333333336,2.368936666666667,2.5937733333333335,2.4254633333333335,3.5452999999999997,2.382146666666667,2.52279,2.5385133333333334,3.12877,2.684196666666667,2.8458666666666663,2.61544,3.2442333333333333,2.902623333333333,3.358288,2.58961,2.4244233333333334,2.41731,2.8205766666666663,2.6231133333333334,3.5233666666666665,3.3485,2.665025,1.93261,1.93261,0.7471800000000001,1.5860319999999999,4.22256,3.332,2.593053333333333,2.17182,3.0154366666666665,1.1984442857142859,2.75202,0.5813186666666667,3.4141999999999997,3.1684699999999997,3.19795,2.9917,2.5851366666666666,2.5846933333333335,3.0286899999999997,2.6573533333333335,3.3716666666666666,4.494406666666666,1.535934,2.8545166666666666,2.483216666666667,1.78017,2.17095,2.8799533333333334,2.73298,1.682846,2.5068699999999997,2.59471,2.726993333333333,2.6873400000000003,2.874913333333333,2.91423,3.14682,1.36606,2.797276666666667,2.3216933333333336,3.705966666666667,3.8506,2.0812025,2.235536666666667,3.4233,2.5118533333333333,3.4179,2.5633433333333335,2.995206666666667,5.445600000000001,3.2760233333333333,2.1028566666666664,1.53849,3.309886666666667,6.347146666666666,3.0077533333333335,3.6648,2.9037333333333333,3.0675833333333333,4.631504,1.6122039999999997,1.1660444444444444,2.0752266666666666,1.7994166666666667,4.73987,2.913743333333333,3.2205366666666664,3.1149766666666667,3.226433333333333,2.3560766666666666,3.551766666666667,2.5473,1.670984,2.8835633333333335,3.471765,3.7084799999999998,3.339615,3.684105,1.701065,2.837765,3.46155,3.60922,2.4089300000000002,3.9398999999999997,4.034033333333333,3.8552,1.407825,5.564591,3.31725125,1.50532,3.37318,3.53825,2.99242,3.947725,1.84489,1.84489,3.260313333333333,2.95511,2.895455,5.10025,4.34657,4.4396466666666665,1.59258,3.2957466666666666,2.5088766666666666,4.2787575,3.11901,4.978396666666667,2.6893733333333336,2.41581,2.6083066666666666,3.442025,3.884995,1.636758,3.0341633333333333,2.77352,2.3812425,4.48892,1.36955,2.89715,4.23878,2.719395,3.49945,4.040655,1.667405,1.5353633333333334,2.455395,1.1711716666666667,2.1352959523809525,1.8762325,0.4562714285714286,3.971725,2.51068,4.77539,4.370835,2.841345,4.6538691666666665,3.4626,3.1024766666666665,3.4525333333333332,2.4531300000000003,3.3533000000000004,2.832246666666667,3.1703833333333336,2.4087733333333334,0.680826923076923,2.278896666666667,0.63421,2.0208333333333335,2.423973333333333,3.157773333333333,3.1922266666666665,1.4587433333333333,1.3659075,4.40344,4.47284,3.23094,3.59039,3.13453,2.2313625,4.016895,7.872554444444444,3.398715,5.564355,1.7183675,3.9025,1.9965475,4.227065,3.52332,2.21493,4.159655,3.49721,4.021105,4.231325,2.19776,4.148035,6.12861,4.992775,3.352695,3.325125,1.6830325,2.104145,3.85582,3.300395,3.30089,3.748725,3.63316,3.68122,1.6747625,3.72515,3.131145,1.7753925,4.191835,1.0762083333333334,3.36895,1.6742775,4.1149,4.709371666666667,3.65419,2.9633849999999997,3.67025,3.477695,1.9322875,2.3152775,3.9863999999999997,1.88261,5.9123925,4.387905,4.480975,2.877345,2.673345,4.541385,4.56057,2.468902,2.468902,5.859066333333333,4.054048,2.89288,2.928445,2.046953333333333,2.8556,3.19011,3.7519641666666668,2.6784455,3.393795,0.9577859999999999,3.92151,3.130015,4.12789,2.793815,1.598535,1.447385,3.028455,6.080522,5.681324999999999,3.57718,1.58521,4.48903,3.87022,0.85902,2.96975,1.409348,5.3457574999999995,1.5014200000000002,3.859795,2.005665,1.4587433333333333,3.35358,2.98117,4.80821,6.835743333333333,4.085365,4.9552466666666675,2.3147,2.899605,4.145865,3.909795,4.209765,4.38687,1.058035,1.539414,0.992805,2.658435,2.0268,4.879875,0.992805,4.36002,2.48216,1.58689,1.58689,1.7753925,3.969725,4.295975,3.89299,1.587176,1.587176,1.0175833333333333,3.241015,2.102885,6.0932200000000005,4.24578,3.837485,2.8247466666666665,1.0086442857142857,3.48283,2.960395,4.24585,3.825045,3.9558649999999997,3.9558649999999997,3.40331,4.0926,1.9172,2.746055,0.9720844444444445,2.1579200000000003,3.69168,2.36858,3.3030266666666668,3.3030266666666668,2.854195,4.56223,4.58912,3.874595,3.450535,4.00606,2.6022866666666666,4.4358691666666665,3.1573,3.951445,8.456895,5.0847,2.62955,3.198255,3.06161,4.546215,3.329058,7.712235,4.708534,4.83755,3.520965,3.887295,3.7562,4.730825,4.740045,2.90223,4.8373,6.892393333333333,2.77982,2.090263111111111,3.24821,3.28784,3.84779,6.1929,2.2686733333333335,2.61607,3.27346,3.610985,3.613766666666667,7.425855333333334,1.666335,4.913918333333333,4.913918333333333,3.356315,3.9183858333333337,3.15959,2.4947333333333335,5.47452,4.522049,2.1490240000000003,3.939945,4.10389,3.495916666666667,3.03357,3.04162,6.062111666666667,3.254165,5.2689,3.211075,4.872685,4.101525,3.760225,2.95511,2.296,3.17242,3.98785,2.84457,3.07998,2.882525,6.196763333333333,2.642575,1.8671125,3.2680925,2.37041,3.98374,2.802395,0.85902,3.74379,4.13943,3.96554,6.0248525,2.956275,3.201655,2.9983833333333334,2.9983833333333334,3.8272749999999998,4.24821,3.76462,2.0537775,5.8802075,2.1398775,4.489645,3.63242,7.94005,2.75497,1.9554633333333333,3.172205,4.432235,0.64101875,4.046705,3.67463,3.21343,3.116775,4.32249,2.0518566666666667,2.56441,8.90321,3.50622,3.343435,1.5014200000000002,3.875205,2.721195,2.36357,4.17997,5.3484825,1.6429425,1.21414,1.1000916666666667,4.292045,4.492525,3.746585,3.4829774999999996,3.4829774999999996,1.6747625,2.37827,3.314841944444445,0.9773244444444446,3.12571,1.1085175,1.701065,3.12719,3.501345,2.89595,2.728,2.8736283333333335,4.345825,3.86966,3.103125,2.91767,2.91775,4.40936,6.716075,4.096095,0.937785,2.5904755,8.66426,4.658835,4.056055,1.0754275,5.14192,1.44693,3.8477425,3.8477425,3.845935,9.206624999999999,0.8840322222222222,4.87412,4.471575,2.4161466666666667,4.1418808333333335,3.85019,2.1721475,9.951671333333334,1.865935,2.41371,3.456015,1.6482633333333334,4.249077583333333,3.35198,3.318665,3.691699333333333,2.931885,3.12773,1.1619383333333333,7.01061,4.173805,4.01106,3.908955,1.9457575,2.9633849999999997,4.450555,3.847475,0.6325007692307693,3.806985,4.20457,4.59996,2.0920075,1.5215859999999999,4.13472,4.19408,8.87593,0.7054661538461539,0.8769875,0.8769875,1.9416666666666667,1.4218666666666666,1.449654,1.7672100000000002,4.808325,1.2897766666666668,0.8942142857142857,4.021739999999999,3.255305,1.1836075,3.193145,4.893545,4.112315,0.7770859999999999,2.13454,9.024405,3.241735,3.395855,3.53508,1.665985,2.49066,2.378195,4.55683,4.348745,3.829465,0.8793971428571429,1.4619300000000002,0.93668,4.2136825,4.296885,4.01006,0.9773244444444446,1.699024,4.02475,2.3030496428571428,5.010635833333334,0.9982775,4.70683,0.7606799999999999,0.7606799999999999,0.7606799999999999,10.100404999999999,3.87506,1.1085175,3.89615,4.740685,2.80416,3.2817,5.858844166666667,3.196595,1.8629138888888888,2.6374833333333334,0.7770859999999999,1.6361059999999998,0.4825722222222222,0.731725,1.5769266666666668,4.16691,3.72816,2.10293,7.404546666666667,4.903885,0.6430811111111111,6.1496,5.24669,3.446465,4.473,7.574458333333334,3.8570519047619047,4.903885,4.509212083333334,2.4444966666666668,4.16879,3.745565,7.396295,3.4327,0.525952,1.447182,3.778955,1.7500499999999999,1.21414,3.917515,2.3731466666666665,1.72115,3.350755,1.6894120000000001,4.47359,4.44559,3.99063,4.734535,6.43663,2.395025,3.911065,1.409348,2.3211425,3.356075,3.26254,2.1490240000000003,4.14393,2.310355,5.054,2.9376,2.25038,3.4151175,1.736018,3.35556,0.9773244444444446,2.12963875,1.1000916666666667,1.56236,3.61916,1.666335,1.5769266666666668,2.035865,3.64311,7.86613,0.8793971428571429,1.0754275,1.3655760000000001,3.557715,3.795075,1.3655760000000001,3.94951,2.3211425,0.64101875,0.9773244444444446,1.9416666666666667,1.409348,0.4562714285714286,1.6280740000000002,4.300566666666667,2.4161466666666667,1.3255866666666667,2.95436,1.407825,1.865935,2.944443333333333,2.6374833333333334,5.0644,2.944443333333333,0.85902,2.8991809999999996,2.1807,0.10646545454545454,0.10646545454545454,0.10646545454545454,0.10646545454545454,0.10646545454545454,3.26736,2.7695166666666666,2.8695066666666666,2.8412100000000002,4.66509,4.38947,1.74331,3.69211,3.570995,2.15497,5.02061625,2.65271,2.449435,2.44765,2.663915,4.55377,8.573333333333334,2.2703825,1.9914333333333334,3.102700357142857,0.9741528571428572,1.3702699999999999,2.3691666666666666,2.0527333333333333,1.481315,2.8839466666666667,2.2226166666666667,2.580443333333333,2.6990766666666666,2.6681866666666667,3.64631,3.625465,2.6343166666666664,1.354684,3.84676,3.63961,1.5546733333333334,1.33345,1.33345,1.33345,3.53401,2.81779,1.0518466666666666,2.3082933333333333,1.355092857142857,4.28936,1.5267566666666665,6.567643333333333,3.3267875,2.6755533333333332,3.126264,3.126264,5.2459,3.1929,4.487535,5.0284,2.17935,3.041323333333333 +GSM1946759,1.0,2.05452,2.05452,1.5425933333333333,4.178945,5.5344,2.605555263157895,1.6674366666666665,7.851880906862745,4.48658,3.11637,2.020895,2.14041,3.05485,4.308535,1.831278,1.5108380000000001,5.04485,2.5770666666666666,2.3984325,4.888375,5.294886666666667,3.92828,2.16782,1.7306260000000002,3.70338,4.92317,4.341695,0.7701583333333333,1.5052691666666667,1.6797183333333334,2.4127325,2.141805,1.25667,0.7039483333333334,3.2096575,1.5698475,1.3868975,1.123745,2.13086,1.0082775,1.0552975,1.04801,1.472524,0.9326079999999999,0.924508,0.764084,1.1350885714285714,1.6459759999999999,1.8014420000000002,1.52195,2.07206,1.68343,18.00320075,0.3817506666666667,0.818706,1.239924,1.711188,1.566292,1.9121359999999998,1.08521,1.08521,1.08521,1.1606266666666667,1.154784,4.69544875,1.1074,2.12301,2.0785175,2.56415,1.00121,2.38076,2.394085,2.2652475,1.3275275,1.97484,1.60158,1.6859825,2.4909866666666667,3.7349,4.724985,4.712405,1.5948033333333334,4.569925,4.8409233333333335,4.27783,4.141925,1.04540625,7.72074,0.617515,0.617515,2.15139,1.0332871428571428,15.650155000000002,4.463815,5.25775,5.20195,4.247015,4.20317,5.0539,0.4817166666666666,2.17612375,1.5299775,2.26645,4.842215,4.47804,1.3799625,3.0203466666666667,3.2942066666666663,2.3977666666666666,3.4441333333333333,3.447195,4.49072,2.6309604999999996,4.489085,2.976986666666667,0.7407054545454546,1.664168,2.421415,4.751045,3.72874,0.533089375,3.398005,3.752555,0.7894425,4.108245,1.6510942857142858,2.26719,2.2955975,2.0579925,2.991765,5.3883,3.434475,2.6963000000000004,3.1390833333333332,3.0499266666666665,3.89675,2.7846333333333333,5.5327,3.40505,4.19429,3.362965,2.467895,3.595805,2.4685025,7.083031666666667,3.618925,3.10612,4.369865,3.095805,4.73565,0.8085711111111111,9.608306666666667,3.58858,2.12682,1.9340000000000002,3.5531333333333333,2.32035,4.5305,5.5536,2.1410025,4.784525,2.80422,4.64578,2.1410025,2.68741,4.87486,5.130795833333334,4.762865,8.215811666666667,3.37131,4.56403,3.00183,4.96108,4.74799,1.4783816666666667,8.28502,4.537695,4.035535,4.51801,3.583425,3.49447,2.338825,6.212445,2.2309,3.75404,4.0608,4.97695,4.5162,4.41916,1.2455633333333334,2.75748,2.970075,1.7264475,1.7264475,5.990795761904762,3.106725,1.8735466666666667,4.009095,4.47931,2.74768,1.4940300000000002,0.9230411111111112,6.8593,2.82477,6.84485,3.4824,4.469865,3.82109,3.098095,3.91963,3.63558,3.882495,4.211985,6.50875,2.865875,3.69663,9.048283333333334,4.657235,3.675966666666667,3.07987,2.62027,3.8465000000000003,4.076015,1.559675,2.8611299999999997,1.9092666666666667,1.651454,1.8273933333333332,2.6224333333333334,1.7427275,2.15837,2.8394633333333332,2.5103766666666667,2.446286666666667,2.816603333333333,4.8409233333333335,3.62551,3.653705,3.148395,4.864995,1.2968333333333333,2.103425,2.931138857142857,2.0845,2.60935,2.3203733333333334,3.403833333333333,1.824116,1.3624066666666668,2.61238,0.651966,1.5406000000000002,0.5104788888888889,0.5104788888888889,1.5625366666666667,2.7129999999999996,2.34661,1.39081,1.57087,0.31566461538461543,2.74414,0.651966,1.2456366666666667,0.23283621621621622,1.4352233333333333,2.1536925,3.6075666666666666,2.5842933333333336,2.3778433333333333,2.55607,2.3487,2.4009966666666664,2.52975,2.6808366666666665,2.25075,2.64649,1.92024,2.7425,4.25846,0.7003783333333334,1.85329,2.616826666666667,1.8917633333333335,3.44454,1.560152,2.58882,2.22134,4.31478,2.0438266666666665,7.256231904761905,1.6414285714285715,2.8757633333333334,2.22948,2.3326,3.547833333333333,2.330965,1.9279325,4.303235,2.61771,2.1693425,4.04197,4.12477,4.467,4.02268,2.32391,3.457415,4.866064,3.837805,3.844745,3.995935,4.62792,3.09393,4.345915,3.6137,0.91789375,4.826725,1.3011533333333334,4.27444,3.853605,5.857027,3.834365,4.270355,0.98354125,2.2015,3.530105,4.125835,0.9245442857142857,1.3983799572649571,2.4297542857142855,3.027166285714286,5.1087525,5.479876,2.0733825,3.21449,5.49415,0.3267292857142857,4.164955,2.34231,0.96966875,4.11199,2.112865,13.016594999999999,1.17340875,1.6103725,2.1228433333333334,2.40233,1.9704252631578947,4.582990263157895,0.31295526315789474,1.6545966666666667,2.9017766666666667,1.0407225,2.6646966666666665,0.9202885714285715,4.97211,4.07132,2.0864533333333335,5.9642,5.4032,2.618475,1.2033657142857144,4.376313333333334,5.14255,4.39966,0.9562,7.667693333333334,2.7780633333333333,4.475925,2.69055,2.6937599999999997,4.795965,2.445613333333333,2.7884700000000002,2.258903333333333,2.50915,3.126305,3.06755,0.35431375,4.613365,3.867955,3.890075,3.857265,4.445275,6.052078,4.036905,1.760655,5.88855,4.917495,4.216445,4.12835,1.30417,2.93678,3.2742533333333337,2.80214,16.300105000000002,3.36071,4.071045,4.57375,5.2305,2.67367,5.180601111111111,2.090555,0.7759722222222222,2.569375,3.33449,3.8514,3.62756,6.561771666666666,2.9408766666666666,2.25322,2.15486,3.2844433333333334,4.31605,2.36229,0.37404238095238096,2.8184828260869565,1.9781475,1.1485475,0.47404629399585924,0.5740502070393375,0.37404238095238096,0.37404238095238096,0.37404238095238096,1.1382275,1.3489425,0.8058275,1.5125125,4.345965,0.22012705882352943,11.305990974025974,3.1493566666666664,2.759206666666667,4.03981,3.779235,4.14941,2.144695,4.681755,3.957582666666667,4.26769,3.5753,0.6933953846153845,3.465533333333333,3.9090087179487183,0.6372442857142857,3.65785,2.9806233333333334,4.464165,0.48802090909090906,1.87505,4.689685,3.332595,1.9255575,1.8446033333333334,1.6362433333333335,3.6511333333333336,4.016,3.02852,2.8622033333333334,5.52295,5.51,4.748085,3.1352499999999996,3.0412485,6.490225000000001,3.7386,5.2576,0.4127247619047619,3.4042,4.05537,1.9819833333333332,2.58754,2.7873475,5.213521666666667,0.6224091666666667,2.475205,4.2612,3.871675,1.0658271428571429,4.521595,3.94876,4.850575,3.4377999999999997,4.554045,3.4994,4.38697,1.19245,3.587785,2.78976,4.8397,4.528155,4.30832,5.5722,4.49287,2.622505,4.92945,2.26335,2.542605,3.0184466666666663,2.55621,2.56864,2.4489033333333334,1.7010079999999999,1.5081833333333332,2.0310366666666666,0.8409171428571429,1.60882,2.279853333333333,1.9983366666666667,3.0942000000000003,3.3963,2.5953766666666667,0.9506533333333334,5.106,3.3703000000000003,5.3571220833333335,2.62547875,3.0605266666666666,3.4625,1.7643833333333332,1.7643833333333332,2.7255285714285717,2.7255285714285717,3.408676428571429,0.5037114285714286,1.7739066666666667,2.0634266666666665,3.5861666666666667,2.176430476190476,2.176430476190476,2.176430476190476,7.608146011904761,4.537022857142857,0.9808727272727272,3.002375,4.633369166666666,2.1751,4.830545,3.173705,2.364855,4.38022,3.122533333333333,3.19074,0.73083125,1.9510833333333333,3.7868666666666666,2.5940133333333333,2.50256,5.43345,3.2733666666666665,3.316853333333333,4.742196666666667,1.8648833333333332,2.42203,2.7587966666666666,1.0230066666666666,2.18227,4.249705333333334,8.076985,1.539235,2.980145,4.276525,1.9700520000000001,1.7906475,1.7906475,0.9489825,4.99108,7.7720199999999995,4.040855,5.707587,4.50049,1.9735333333333334,4.029425,3.164225,4.905025,4.851086666666666,0.35910315789473685,2.98727,2.618345,4.28177,3.98283,1.907682,2.0518125,2.5971,4.416665,4.03822,2.89374,2.568945,1.45398,6.88905,4.50732,5.0616,3.496795,5.17675,4.593375,5.09785,4.45674,3.7859925,1.981575,1.0161014285714285,2.8271,3.94583,4.38407,5.7675675,5.574035,2.28672,1.8251333333333333,2.6830233333333333,2.7790199999999996,3.04276,0.6039928571428571,2.267605,3.65254,1.1395575,4.679675,3.356825,6.08817,1.3484990909090908,1.3484990909090908,3.998645,3.826155,3.839025,5.37685,2.8272,2.283393333333333,3.74676,4.08632,2.2547725,3.573933333333333,2.5883966666666667,4.181745,3.6358525,3.46202,4.686035,1.0117166666666666,2.48841,4.560575,4.900105,3.91206,2.5714799999999998,2.54203,0.5588955555555555,0.5588955555555555,0.5588955555555555,0.5588955555555555,1.2811738888888886,3.677245,3.677245,1.73153,7.279115,3.30078,4.049715,3.0557,2.7577,4.680595,4.092435,4.848705,5.2382,1.8129975,4.76034,3.557955,2.55238,3.75589,3.41318,2.69051,3.981045,1.8373,4.95559,1.65574,3.6641174999999997,3.07023,1.816895,1.1998716666666667,2.76622,3.851995,1.25245,0.8491211111111111,3.497905,1.241435,4.927879333333333,4.607235,1.3021314285714285,3.55224,0.7771811111111111,2.65453,2.4659633333333333,2.2656266666666665,2.740995,4.21691,2.8908508333333334,4.320355,5.061,4.62704,4.278235,2.225925,1.3340014285714286,4.28653,4.862075,1.3691,1.3691,4.1282,0.2261446666666667,2.0606966666666664,0.2261446666666667,0.2261446666666667,0.2261446666666667,0.2261446666666667,5.1032,2.724906666666667,3.052965,3.42072,3.234776666666667,4.173185,2.69333,0.9585425,0.9585425,1.0629866666666665,1.0629866666666665,3.854895,1.77904,3.804335,1.6758380357142855,1.6758380357142855,4.64461,0.5625471428571428,2.3459325,7.617786666666667,4.793815,3.165395,3.61895,0.8984175,2.27019,1.99492,4.50511,4.173175,4.344245,3.904615,1.365667142857143,2.613405,1.9606825,7.54518,1.71242,4.716815,4.822855,2.715475,3.85146,6.15051,7.607215,4.160575,5.12105,6.1703,2.3813425,3.122335,2.47605,2.370305,1.86647,3.88378,3.16628,5.816811666666666,6.43903,4.00407,1.1389566666666666,1.977285,3.88342,4.56148,2.1959925,4.83455,4.81122,4.635166666666667,1.7680833333333332,3.8956666666666666,1.6566566666666667,6.208073333333333,2.6923866666666663,2.3068400000000002,2.3868533333333333,2.232145,3.29417,3.4158333333333335,3.5872666666666664,2.92879,3.3337,1.647126,3.62194,3.095165,3.203905,0.3683535,2.9508,3.79753,2.588925,5.34305,5.1209,4.837055,6.580808000000001,5.74345,2.2610333333333332,4.177875,5.2987,1.6047533333333333,5.1265,5.97475,5.37095,4.461135,3.234325,5.5986,4.79724,4.10182,5.292032666666667,7.81865,3.57555,1.1736183333333334,1.5551183333333334,2.767765,1.7670280000000003,4.348395,4.174675,5.1581600000000005,2.4316633333333333,2.47125,2.8645566666666666,2.4627399999999997,2.3695033333333333,1.2051555555555555,0.5220482352941176,3.55125,4.041435,3.1731,4.25339,2.989095,3.21048,5.720656666666667,3.1970466666666666,0.5925411764705882,3.288585,5.51555,1.865685,1.612104,3.829265,3.33215,2.5027633333333332,3.9760333333333335,4.39747,2.6958466666666667,2.294426666666667,2.3744433333333332,2.499503333333333,2.66541,4.177013333333333,5.168798333333333,7.7912675,1.93952,4.837425,3.19819875,5.37665075,2.6751966666666664,3.09166,2.243515,2.36459,1.4311575,1.4311575,2.59067,2.38775,2.7986633333333333,3.492545,1.727108,2.184235,1.94382,0.502506875,3.72754,0.5518916666666667,0.95010875,3.58404,4.002325,4.09567,1.7133475,4.62796,2.41887,0.8833857142857143,3.83213,3.698444285714286,3.000163333333333,2.375355,5.15955,0.27481,2.2641134999999997,3.28872,1.4429,3.74389,6.5117,2.26891,1.3062466666666668,3.96741,3.84215,2.8035266666666665,2.8035266666666665,3.616505,4.70514,4.457075,5.197895,4.989325,1.0151144444444444,2.6425199999999998,2.504156666666667,4.02934,4.97794,6.30585,5.0308,4.4040333333333335,3.8094,3.7421333333333333,3.5940999999999996,3.948366666666667,3.1867,3.09146,0.6266578571428572,2.20861,2.3041375,3.641655,2.94035,3.3034733333333333,0.780455,2.43907,4.2229565000000004,4.295535,5.85295,4.284455,1.7455475,1.7455475,0.809986,3.208725,4.496415,3.817425,4.714697142857143,3.11073,5.38685,0.60857,3.035495,3.98286,4.09846,3.5923508333333327,0.7883842857142858,2.76068,3.973565,4.9772,3.830475,4.923995,2.806445,4.209565,1.33415,1.0141257142857143,2.878386666666667,4.912875,4.293025,3.08997,1.5555833333333335,4.005405,2.520775,2.53935,2.7483031111111114,3.15785,4.669613333333333,2.9445200000000002,1.732768,3.2748933333333334,1.482037738095238,2.96376,2.571613333333333,2.3221025,2.786846666666667,3.0039766666666665,2.4704966666666666,2.11407,3.56401,2.9828566666666667,3.0867473333333333,2.4488966666666667,1.820455,4.295495,2.9751100000000004,2.5380433333333334,3.0867473333333333,2.0948033333333336,0.7934409090909091,2.3889575,0.9978111111111111,2.3527325,1.5444075,0.9291272727272727,1.6148525,1.805095,2.7874272500000004,2.51235,4.75454,1.5161375,3.955965,2.822843333333333,1.699472,2.26667,2.5745566666666666,1.6164933333333333,2.73128,2.55089,1.8027311363636362,1.3419975,1.9469999999999998,3.4116,2.35842,2.838738333333333,3.0502966666666667,3.0280233333333335,3.635066666666667,2.0823766666666668,4.2653,3.4685,3.7410333333333337,3.0512,3.5114666666666667,3.6281666666666665,1.8221666666666667,8.791595,4.23316,4.79383,3.380795,2.91213,1.94275,4.0042,1.7205100000000002,4.1401,4.32837,1.39568,2.43265,1.1267483333333332,2.2695466666666664,1.6750133333333332,2.26966,4.9418050000000004,2.9834433333333332,3.652175,4.90666,0.7508175,1.436826,1.00746,3.5362,11.723766666666666,4.3414,6.6244,1.98391,5.1896,4.622785,2.54305,5.0214,0.2879505882352941,0.8349285714285715,4.962655,4.825765,7.6037475,2.2047475,4.37847,5.3287,4.94466,4.86953,3.788155,4.151175,2.99702,5.039673333333333,4.184235,3.183995,3.16834,2.21247,1.9987033333333333,1.396230875,2.43691,4.269305,4.78495,1.610992,9.09193,1.8539899999999998,2.811633333333333,1.01919,1.01919,7.530433333333333,3.192585,2.4196475,2.0078425,2.7963299999999998,2.1166233333333335,1.08462,3.0703316666666667,2.74342,0.6099542857142858,1.7520766666666667,3.26903,3.26903,1.1481766666666666,2.5202166666666668,2.36306,2.543783333333333,1.4093475,1.772,5.054876,2.6401866666666667,2.527625,1.262245,1.262245,4.14115,5.49925,4.487605,3.264635,3.76025,5.87243,2.77776,2.7917166666666664,3.4709333333333334,4.09341,1.1690016666666667,3.2194366666666667,2.472165,3.83775,2.1593166666666668,4.749465,3.646965,4.42573,3.67546,5.556937,1.0071388888888888,1.9733825,1.801545,3.58887,4.6224075,4.053265,3.844155,3.970905,2.409965,1.7476825,4.22242,3.44433,3.31517,2.4892533333333335,0.85512,3.48369,4.41011,4.573455,1.14,2.92064,2.8711800000000003,1.9004333333333332,1.8435276470588238,1.8435276470588238,1.24971,2.0351833333333333,1.0469471428571429,1.4137879999999998,4.33222,4.43406,0.4826857142857143,3.3417,3.3643666666666667,4.031525,5.3522,0.4138625,8.812985000000001,5.5091,2.886715,3.62626,4.679315,5.397692142857143,5.05835,6.455015,0.7039518181818182,2.72954,5.213,2.77216,1.86382,2.0572,4.45788,5.4265425,2.3571273214285715,2.9278366666666664,3.3971666666666667,1.61375,4.23956,11.07265,8.024175833333333,3.832433333333333,4.94938,3.178720833333333,3.140715,3.98338,1.877326,3.2604366666666666,3.684835,3.95159,4.935155,5.25592,6.5958733333333335,2.7643633333333333,3.7438,4.72288,4.99162,5.60645,6.234603333333333,3.8202024999999997,6.1878,3.495235,2.898485,2.90425,5.538,3.724445,5.24185,2.17399,3.1278133333333336,3.370145,5.78995,4.16211,4.379115,1.489758,0.9181325,2.609175,0.5966206666666667,4.69696,3.66044,3.573595,2.76395,2.0972833333333334,3.04845,2.644575,3.0106659999999996,1.902598,2.99722375,2.821,2.2792775,2.603825,3.706256,1.09172,2.4749825000000003,5.20505,3.733366666666667,1.141,2.8041,3.655190833333333,3.67984,1.4646125,5.69665,5.2627,2.1834633333333335,2.994756666666667,30.561842975511418,3.5277666666666665,1.7327166666666667,3.9009,1.76521,2.61374,2.8455833333333334,3.247576666666667,2.0216325,2.80795,2.1956125,3.486885,3.158353333333333,2.3647,1.5701275,2.24272,2.78415,0.3876695454545454,1.141935,2.7312366666666663,1.5266199999999999,3.50052,1.4646125,1.8987633333333334,25.389267888888885,4.61815,4.3828,3.61308,2.58238,2.3154625,2.49785,2.2251925,3.599055,5.164864,5.39845,1.612724,1.792958,2.171985,2.54747,3.8724008333333337,5.12565,4.675945,4.57898,0.1752021276595745,4.819595,5.089169166666666,3.82521,8.75751,1.084595,1.084595,2.8919200000000003,3.23756,5.80435,2.094082222222222,1.0365922222222224,5.0687,1.91496,4.10635,3.86692,3.32521,4.145665,3.955905,4.94855,3.03792,0.72524,3.244335,2.1723666666666666,4.48421,7.7074549999999995,4.114515,2.27598,2.27598,6.8243525,4.658245,4.212755,5.5381,1.7385400000000002,5.424851666666667,1.4925266666666666,1.3208166666666667,2.908776666666667,2.0077000000000003,2.96222,2.807726666666667,3.8079,4.2967475,4.5133,5.4382,2.426735,2.396335,1.9493825,2.782325,2.2903275,2.0637325,2.08037,4.724716666666667,1.89717,3.8091976190476187,2.4131766666666667,3.3786666666666663,2.81774,1.8796866666666665,1.5187000000000002,1.02127,2.337893333333333,3.740133333333333,0.761978,4.97716,1.8980975,5.868964166666666,1.925715,1.532315,1.4899775,1.5669633333333335,5.800131111111111,1.683894,2.9417833333333334,3.660433333333333,1.2052075,1.81708,5.060304,3.029033333333333,2.8451466666666665,3.5854,2.99629,2.8128966666666666,1.2509953571428571,0.26628583333333333,0.26628583333333333,0.26628583333333333,0.26628583333333333,0.26628583333333333,4.26108,2.7382666666666666,2.4044725,3.5497666666666667,1.4138,2.6697433333333334,3.402233333333333,2.9010466666666663,3.64396,2.919875,1.67995,3.0863066666666668,3.3108,2.1243425,1.9891725,3.8593,2.9038233333333334,3.3431333333333337,5.56765,2.73397,2.6448933333333335,2.6149,10.915969166666667,4.981185,4.37546,4.939445,3.684825,2.8748533333333337,5.1514,3.28808,3.321135,5.797421666666667,3.60237,3.04545,2.070675,3.55417,5.008300428571429,3.696555,18.021905678571425,1.199545,4.351565,0.87356,1.23610125,3.07395,4.8845,4.3083,3.871515,1.44676,2.1971725,4.31214,2.7284733333333335,4.67755,3.164160714285714,2.65918,0.6019566666666667,2.6321666666666665,5.31305,2.290675,2.327955,2.3501825,19.543375833333332,1.823298,1.3306875,2.601523333333333,0.29654153846153847,1.8600025,2.8343866666666666,1.9363299999999999,2.8955933333333337,2.762525,7.2701725,1.9373225,2.509575,2.34508,2.1645575,1.591515,3.16443,2.897435,3.133745,2.82673,1.9528875,2.6501475,3.2385280555555553,4.920725,0.3898908333333333,4.0281,3.15142,3.0024,1.97314,3.521983,3.545925,1.5274,2.3105100000000003,2.17699,1.4421466666666667,1.7659733333333334,3.694685,3.343675,0.777625,3.44235,5.18055,4.29685,2.296518,2.296518,3.19751,4.938255,3.232185,3.35414,2.2885625,0.8912854545454546,4.277435,3.653785,5.995,4.467725,2.340798,2.340798,1.3591425,3.84267,5.17395,3.65006,4.22481,3.3392666666666666,2.2460133333333334,4.639815,3.48472,4.0853,2.7833433333333333,2.5182533333333335,4.322711333333333,2.9503299999999997,2.7007,1.9800133333333332,3.637395,2.8527,1.6623266666666667,3.79569,3.510715,4.36601,3.1620233333333334,4.58426,4.288265,6.53868725,4.00593,2.20606,4.7026,2.638655,7.043115,2.54845,1.2626033333333333,4.40404,3.5098333333333334,4.53133,0.5797735714285714,0.8964833333333333,3.616905,3.681765,2.062656818181818,4.518735,2.80552,2.917195,10.889,1.99005,1.258956,3.33287,2.548585,4.043575,4.260375,6.487369999999999,3.1503799999999997,2.135733333333333,3.0812566666666665,1.993,3.3097333333333334,8.317871001642036,0.8218307142857143,1.0310925,5.2829,0.42638533333333334,1.706475,2.046555,2.94675,3.0191,2.59515,3.887425,2.573775,12.61886,5.225555,2.52025,2.52025,4.321875,0.8371566666666667,5.2051333333333325,4.410475,4.054975,5.50218,3.573265,4.75623,1.4715216666666666,2.817215,2.654995,2.72003,3.0165,2.61608,3.049875,3.628275,3.6833,3.07374,2.952695,4.11477,4.28232,4.52655,2.74013,3.0983933333333336,4.9962816666666665,4.499525,17.73005285714286,11.961725714285715,3.138529285714286,0.6790866666666666,1.4216985714285715,4.676385,3.479845,3.1010597756410254,2.02219,0.8301522222222223,0.6687408333333332,0.6284528571428571,2.179445,1.6177420000000002,5.3464833333333335,3.3551,0.7115381818181818,3.48275,2.52765,1.7180825,1.849766,6.51714,1.540932,5.20225,2.97955,3.00125,2.357985,2.6585466666666666,2.5761,0.7032154545454545,2.953515,2.70602,3.982861333333333,3.026313333333333,7.579637916666666,3.68642,3.487925,2.23845,3.639845,7.4809225,1.9932775,2.29936,2.3928875,1.5946225,2.67975,2.1208175,2.853675,0.922129,1.2802575,0.94754375,2.756215,4.018105,6.04755,5.24145,2.70636,2.44782,2.96375,3.4303666666666666,7.612635,1.2514566666666667,0.361433125,2.79059,2.13418,1.5501099999999999,3.4558609999999996,1.236304,1.769839333333333,3.839996666666667,2.664286,1.2257133333333334,1.8500366666666668,3.8018366666666665,3.61909,4.444625,4.50647,2.19065,5.2493,3.751125,0.7667876923076923,4.95582,4.210755,4.404815416666667,3.5490999999999997,2.446705,1.327576,1.44673,3.50091,2.765405,3.32004,3.88288,2.72718,2.7943700000000002,3.295975,3.87671,5.31265,2.27463,2.721615,3.69739,5.73465,0.561365,4.8348,1.7223225,3.71941,4.0864666666666665,1.87037,3.11289,2.25197,1.927395,2.6422,2.565624166666667,1.8959733333333333,4.717755,3.657665,1.3369700000000002,7.00832,1.0167766666666667,3.666365,1.71314,4.491915,3.89144,2.8383833333333333,3.195205,4.057875,9.52825,2.897165,3.72562,3.886615,3.688205,1.7340325,7.99876,3.725195,3.953415,1.498575,4.258855,3.159355,1.01635875,1.8929719999999999,4.291555,2.14817,4.267345,4.932847499999999,4.29982,4.763715,2.47119,5.3501,4.04323,3.1409633333333336,2.034476666666667,1.6499780000000002,4.753275,6.2515,4.997385,4.69397,3.19072,2.01952,4.70802,3.40217,1.070399010989011,4.247175,4.8200183333333335,4.016555,2.6736,3.664995,0.4858357142857143,0.4858357142857143,5.3273,4.79443,5.31725,2.315145,3.758495,5.4119,0.848944,3.97477,4.897895,4.69672,4.618455,4.49212,1.9017975,3.1438,2.1759375,4.54621,0.6921125,4.1172,4.24796,2.73162,2.979393333333333,4.4633,2.342315,3.32377,60.26790473809524,3.302895,2.593253333333333,1.700925,3.441435,4.032555,0.77300375,0.99741125,1.899,1.899,1.34281,3.28312,2.18501,3.8984035,7.31643,2.965056666666667,1.2147928571428572,1.44865,2.7552733333333332,4.093373333333333,0.9199849999999999,1.893545,0.9357279999999999,1.91673,4.076835,4.021275,3.050325,22.069098333333333,4.94312,3.913265,3.33697,2.18434,2.945255,3.372145,2.3173,5.30736,1.6372060000000002,4.01519,3.3351167420634917,5.992402777777778,1.97768,2.69434,1.972585,3.61119,2.3934366666666667,2.2103,2.1716933333333333,3.266220555555556,4.33055,3.577355,3.98566,4.133355,2.55555,2.433585,3.025755,2.80284,2.9516905555555555,2.296775,1.92258,3.725405,1.2165383333333333,3.792985,4.47809,2.548125,4.738165,4.77499,4.973003333333334,2.15629,2.28163,2.72429,2.830605,4.1292,3.52498,4.737335,0.7029614285714285,3.7016506666666666,2.999595,3.90545,2.3861375,1.793534,4.03198,1.204122222222222,3.06472,4.355915,1.100904,3.685985,3.52527,4.58491,5.763805,2.076405,2.952525,2.55959,3.7133333333333334,2.3272733333333333,2.653122,3.6724333333333337,2.4218366666666666,2.4648600000000003,1.39204,1.9233425,1.9233425,1.9326299999999998,2.1185266666666664,1.7306066666666666,3.29846,3.600225,5.5237,3.307615,1.632495,4.439485,3.749245,3.64745,4.26419,1.97655,1.93853,4.797997499999999,1.87648,4.380781666666667,3.474205,3.61945,2.4712133333333335,3.73576,3.12162,3.08516,3.523055,0.1457569387755102,2.30086,7.68832,1.5218120000000002,3.48252,2.976345,1.0249342857142858,1.0368683333333333,1.9286825,4.154245,2.92425,7.051515,3.29413,3.683705,2.99743,2.703175,3.57563,3.49582,4.00762,3.46065,2.9064533333333333,5.45395,4.09612,4.403265,2.2257366666666667,2.0746825,3.484155,4.36165,2.72479,2.788395,2.176685,2.476555,3.96594,3.76033,2.746985,4.239395,4.695835,2.71397,3.455495,4.113815,3.585385,4.49067,3.58884,2.983855,6.22499,4.51499,5.09665,5.25345,4.426255,5.1077175,4.113465,3.88689,1.378464,6.60415,2.41894,4.756015,4.247485,4.07983,2.92324,2.1619533333333334,2.3372566666666668,2.4647633333333334,0.9358879999999999,3.373466666666667,3.2099666666666664,3.164123333333333,2.2717933333333336,3.742305,4.46035,2.4410966666666667,0.5583066666666666,4.517215,4.69952,4.817445,4.79307,3.558585,4.57802,4.723015,4.837895,1.4035444444444445,0.9625153846153847,2.8589866666666666,5.4202,5.8413,0.496183125,2.963475,2.5975333333333332,3.342585,4.469635,3.8567,1.940705,4.343165,3.600275,4.07865,3.056545,6.3275,4.48738,6.91304,0.6474316666666667,4.124715,0.73514,2.40688,4.0743,3.0114066666666663,1.3103066666666667,2.2903,4.59819,3.587855,4.20991,1.8155700000000001,1.946735,3.051795,4.88944,3.876825,3.752315,1.6960760000000001,1.1609057142857142,6.28845,2.1824825,8.034775,4.298195,3.63924,2.04972,1.595905,4.094555,4.882575,1.7021199999999999,2.347265,2.42722,2.30086,6.742604166666666,3.1796499999999996,2.7958466666666664,3.7623050000000005,3.351145,1.9376833333333332,5.18235,6.8310249999999995,4.45368,5.08265,0.5453399999999999,3.577795,4.07316,4.583774285714286,3.723365,4.137645,3.05756,2.752915,3.344925,3.26267,3.646605166666667,1.86901,5.2222,4.62478,4.96019,3.96341,3.422985,3.2694474999999996,2.3170325,1.359035,1.017545,2.865615,2.494615,1.089895,2.671863333333333,6.15085,5.29305,3.60547,4.6245,16.798527857142858,4.24234,4.506,4.014335,0.7192875,5.021,4.62933,4.4748,5.3196,5.3729,2.744485,3.65347,3.312965,1.4808439999999998,3.222865,4.629435,3.1217733333333335,1.3391199999999999,4.16224,4.783945,3.942005,5.265,4.6952,5.21085,4.42779,2.65773,4.202125,4.318565,2.456055,3.0479833333333333,3.0509500000000003,1.6565858333333332,4.849855,2.727980714285714,1.9819366666666667,4.028765,2.16802,4.318005,4.295495,2.146535,2.553625,4.35718,3.665505,4.566865,4.298295,4.56937,4.850095,3.07572,5.6815,2.5288733333333333,3.406945,3.786995,1.55548,4.73243,1.0522483333333332,4.39784,3.18837,0.9125214285714286,3.809025,2.089115,6.774015,2.353292380952381,2.353292380952381,2.353292380952381,0.7458316666666667,1.0444833333333332,1.773895,3.490435,5.84268,3.4188044444444445,1.83267,2.2876,1.6412000000000002,3.73751,2.370695,0.3816576923076923,1.74753,2.1902925,2.941145,1.794195,2.7443,2.32947,2.1211525,3.964885,2.653303333333333,2.84189,2.851515,1.886055,6.59421,2.105065,4.3024,4.021495,6.0371033333333335,1.6166099999999999,3.67391,3.439555,3.964905,4.69006,2.631965,2.0065425,3.87135,5.823665,1.87932,3.658755,3.1839,1.87782,4.583035,4.468545,2.61649,2.22889,3.68751,5.449882857142858,5.64285,3.16908,2.45959,2.71744,2.907385,3.19532,4.01854,1.28581,2.79655,4.700945,0.8006275,3.779605,4.01072,3.79457,3.2483,2.35773,3.07109,2.01135,4.86735,8.022153333333334,5.1962,3.423615,3.763045,1.00406375,4.667295,2.54034,4.45777,5.5304725,4.477635,4.4384,11.42175,4.80183,3.858,1.5297925,0.6907708333333332,2.83415,3.94998,3.516315,3.677935,2.19356,2.35988,2.3112933333333334,1.1638416666666667,1.1638416666666667,1.9931166666666666,2.3792066666666667,3.6511,2.2872533333333336,3.1724333333333337,3.7815,2.5960566666666667,2.840363333333333,1.43029,2.4507666666666665,2.1395566666666666,1.8786399999999999,1.500345,2.3605633333333333,0.7563766666666667,10.001882083333333,0.7563766666666667,4.0811,2.022555,2.2544833333333334,4.97438,4.30093,4.069905,4.23107,2.21519,2.908386666666667,3.185640666666666,3.4440000000000004,3.4032999999999998,3.229013333333333,2.6968866666666664,3.00366,1.63859,5.236,6.779442666666666,3.31153,3.5612999999999997,2.966953333333333,3.16633,2.6366166666666664,1.25667,3.5066666666666664,3.1840433333333333,3.980525,5.77325,4.348775,2.947173333333333,3.5208333333333335,2.9763033333333335,4.148558888888889,4.31953,2.7154433333333334,4.20083,3.07896,2.92797,4.76665,3.0292066666666666,3.711015,5.3943650000000005,2.96326,2.5777366666666666,1.5739366666666665,1.5137533333333335,5.404566666666667,3.2660416666666667,2.6235166666666667,2.166803333333333,2.3218099999999997,4.6671,3.87719,2.612365,3.214283333333333,3.28219,3.6463,3.7089666666666665,3.6411,3.28802,0.54999875,3.9359333333333333,2.45418,2.58006,3.4878,4.717155,5.22445,5.90975,2.664245,4.220291666666666,1.1573016666666667,2.8455966666666668,2.8455966666666668,4.59999,3.376775,3.80414,3.62356,1.75468,3.191595,3.84058,0.9255014285714286,3.7694615000000002,2.7759634761904763,1.9003263333333333,0.368693,3.48893,3.323055,6.679935,2.97929,5.8146,3.16476,3.82436,3.78395,1.7664229166666667,3.086515,5.1084,3.401225,3.108363333333333,3.2266100000000004,5.9365575,2.1688925,1.05490375,2.06285,1.6627366666666665,5.29974,2.3866566666666666,2.43223,1.5836625,4.85983,3.88656,3.74634,0.557242,4.21534,3.99689,2.6296466666666665,2.397936666666667,2.704026666666667,3.233517777777778,3.753593333333333,1.47801,0.6792894736842104,0.74935,3.8554,4.47109,6.022748333333333,4.39292,5.0533,5.4035,1.3710257142857143,4.0864666666666665,2.2204333333333333,0.99617625,5.0801,6.18675,3.74755,4.87036,4.22006,7.0278133333333335,3.9185666666666665,6.6671499999999995,3.7974,2.5975336111111114,6.2276,10.223344083333334,2.7405066666666666,0.6726099999999999,3.594245,4.05718,2.207165,6.3214,4.074885,3.46536,2.9349866666666666,2.9349866666666666,5.7925,3.313985,4.150475,5.1154,3.8090461904761908,2.474125714285714,1.03822125,5.87455,2.727185,5.54377875,3.8604,4.63097,3.31869,2.0748125,4.40749,5.14935,3.663233333333333,3.825545,4.11713,28.600916666666667,2.0878425,2.65335,2.3065275,1.75805,2.9622166666666665,1.32315,2.9298866666666665,3.03863,3.4004999999999996,3.2781633333333335,0.6980161538461539,3.0325233333333332,4.220755,2.87633,3.13771,3.89212,6.496065,5.231,5.00265,4.072075,4.210641666666667,4.323105,3.7027,1.695045,0.9882833333333334,1.3952200000000001,3.07872,1.5278,3.478733333333333,2.4704633333333335,2.3508133333333334,1.7792533333333334,2.739555,2.098405,1.7676833333333333,2.967975,4.225405,3.659135,4.20299,1.397022,4.273033333333333,2.56196,3.726555,2.2822566666666666,2.566495,3.097855,1.4659933333333333,3.892985,6.814626666666666,3.076295,3.729995,4.035365,2.502125,3.2200225,3.7787,4.09972,4.54762,0.3154266473616474,0.3154266473616474,5.0592,5.139,4.31867,2.97548,5.33005,4.28892,0.7051284615384615,4.414115,4.610335,3.718285,6.54825,4.76808,7.416,14.409791666666667,12.740575897435896,4.3747,4.44251,2.6024233333333333,0.5740792307692307,2.368186666666667,5.3549,1.2691066666666666,4.37507,3.6608,2.7524866666666665,2.0818233333333334,1.90137,4.77674,4.32473,9.444010714285714,5.2123,4.0457,7.211892045454546,3.489435,3.103673333333333,1.470775,5.4457241666666665,1.9601575,2.4501166666666667,2.7898333333333336,0.30254375,2.879335,3.413425,4.847930833333333,0.7859320000000001,1.4418183333333332,4.04842,0.5950230000000001,0.5950230000000001,2.833029166666667,3.0915533333333336,3.343033333333333,5.39335,4.44796,5.58165,3.86244,4.24894,3.007395,3.167206666666667,2.6960833333333336,0.8416250000000001,3.124886666666667,2.94304,3.18931,7.070780000000001,3.058965,8.461775,2.848825,4.815845,3.025605,2.3365725,2.934175,2.96615,1.769435,2.345195,1.8512175,3.728265,2.61605,3.876905,2.844385,4.128471666666666,4.128471666666666,2.7401899999999997,2.7401899999999997,8.9507095,2.44643,0.827629,2.6562333333333332,2.51026,2.5208666666666666,3.876905,2.04668,1.9190619999999998,1.5551679999999999,3.899355,4.170685,1.745315,4.29626,4.07949,6.093207222222222,6.480758333333333,2.2876733333333332,3.72625,7.22029,4.28802,3.175155,2.66515,3.553775,3.8600821212121215,4.434285,5.338635,7.555300666666667,3.53918,3.00345,1.1524683333333334,4.50587,3.965238666666667,3.786035,3.9069683333333334,4.3241,2.46817,2.4088333333333334,7.21769,2.934875,1.293834,5.07619,3.88143,2.93373,5.497,2.93373,2.9238,3.6502,4.56373,1.0616542857142857,3.790117777777778,4.51182,3.83232,1.2670916666666667,1.670485,4.50458,3.78562,2.54211,6.411845,4.25284,3.33508,4.21364,4.2659,1.3108,4.02632,2.6339,3.745015,3.737635,3.6987,4.745615,3.072395,4.85707,5.1277,2.0563103333333332,1.8973975,3.7251666666666665,3.64,3.4916,2.975023333333333,3.5182,2.9158333333333335,4.87262,3.271355,3.45287,2.962585,1.8144200000000001,3.7420333333333335,1.8135700000000001,3.084045,3.15086,2.93269,0.6921125,2.4689825,1.8225166666666668,3.31567,1.9837520000000002,3.4144430000000003,3.968715,1.351264,3.1147275,4.436295,0.845782,1.22685,3.45575,3.87357,3.581295,1.987345,1.65169,3.57365,2.475671666666667,1.69768,3.123255,1.879355,1.208554,1.38232,6.5028950000000005,3.120225,2.11493,2.45496,2.4364975,3.915675,0.88017875,0.336805,0.7645642857142858,5.02285,1.94061,4.68895,2.1443925,1.8807455714285715,3.101071,1.2203254285714284,1.0681615714285715,0.727478,0.5782614285714286,2.725555,6.7948,3.162025,3.80999,0.3365992857142857,3.673525,18.263329,3.09236,7.725610822261071,1.09975375,1.09975375,1.09975375,1.09975375,5.408073333333333,3.89881,3.68514,2.1276033333333335,2.877685,3.79579,5.2337,3.832485,3.506365,4.4834,4.17845,3.739405,3.7810593333333333,3.99543,5.0782,4.171355,4.89195,3.507045,4.333995,2.8025533333333335,3.75826,3.370155,3.73973,3.89638,4.175355,3.0419866666666664,2.5579,2.5231833333333333,3.942795,1.2039985714285715,3.91197,2.7904400000000003,3.4468693333333333,4.29982,4.03821,3.119705,2.962765,4.36134,4.114575,3.304655,5.02325,4.96937,3.33228,4.34416,1.692198,1.692198,1.9880925,4.79165,3.558995,5.694107,5.3151,3.5662749999999996,6.4001,4.87006,2.243155,9.195755,4.91116,6.0875375,4.59181,2.8695533333333336,3.193975,0.25474620689655175,0.8126075,3.5624173333333333,3.536,5.12655,3.1033166666666667,5.4416416666666665,4.783005,0.5763635714285714,2.786885,0.501943,1.7153359523809524,3.5249,2.676715,4.097905,3.74086,3.318995,3.483985,3.48144,3.62521,3.308375,3.691245,3.773405,2.597695,1.7153359523809524,2.7738,2.131185,3.66955,2.35355,3.804245,3.65557,1.7340325,4.474085,4.645145,1.2852116666666666,5.7962,4.914765,4.29356,2.857056666666667,3.1778133333333334,4.371785,1.9591333333333332,1.417456,2.39189,2.59911,2.6287533333333335,1.9988966666666668,5.0383,3.389825,5.306233333333333,4.119835714285714,4.87387,4.02915,1.765148,5.44535,4.454275,5.2328,4.262325,7.211885,1.596755,4.868945,4.06972,3.15866,1.9164125,1.7234833333333333,3.96117,4.513505,2.5407533333333334,2.5694791666666665,3.429865,3.429865,2.598666666666667,2.7989833333333336,3.326865,4.00181,3.58794,0.8515076923076923,3.28003,4.38586,4.644670555555556,2.841105,3.04094,1.7869975,2.912295,3.580825,2.22008,4.67114,4.042185,4.67029,1.6774966666666666,0.9841454545454545,6.29689,3.66172,3.3538333333333337,3.2859533333333335,1.95417,30.061529309523813,3.951035,3.33406,5.45945,4.526325,0.8863,7.162100000000001,2.25726,5.5825,1.6486716666666668,4.815885,5.544008333333333,3.762625,3.058515,2.1716425,3.8682,4.90266,2.093145,2.76568,4.042685,2.889545,2.572515,6.0241,2.076115,5.0711,1.12114875,4.599795,3.59743,4.08522,4.683295,2.97631,2.253766666666667,4.128185,4.81598,3.7358625,3.7358625,6.12075,1.6837225,4.23882,6.854783333333334,3.357285,4.247265,3.09793,4.66127,3.595515,4.20669,1.42651,2.334065,4.31351,4.294015,5.4303,4.445945,2.69476,8.962236666666666,2.618675,3.93546,1.7077428571428572,3.612995,2.1786366666666668,2.7058433333333336,2.4133699999999996,1.34534,2.518403333333333,1.1864642857142855,1.1164028571428573,1.1164028571428573,1.1164028571428573,1.8055933333333334,0.57097,3.914235,1.17981,2.39934,0.9218133333333333,1.77328,2.6658733333333333,2.3056733333333335,0.77012375,1.8788133333333334,1.8646233333333333,2.3614333333333333,1.6643640000000002,1.6643640000000002,1.7465833333333334,2.1249833333333332,1.10605,1.9900333333333335,1.5399266666666669,1.2002066666666666,2.040105,2.017765,6.0269,1.64513,5.19375,17.921071,6.460955,3.430635,3.5155033333333336,3.262363333333333,2.8802299999999996,2.705303333333333,2.7146833333333333,0.6687691666666667,0.985671,0.985671,0.65255,2.2898133333333335,4.349975,5.60685,1.519348,5.227,3.72274,2.514115,4.08305,4.674085,4.11528,4.537615,3.6362666666666663,3.35737,3.47614,5.71165,3.2293633333333336,4.494535,0.517829,0.517829,2.305305,3.026315,4.975045,3.533645,4.18262,4.70472,7.794922,7.3785,3.648285,2.30089,4.06402,3.384535,2.5236433333333332,2.43572,3.378435,1.3597533333333331,3.26352,2.452805,1.6111225,3.451366666666667,4.07406,2.1550675,5.338635,1.6495275,3.6654,3.572575,0.9907357142857143,3.4548666666666663,2.9872633333333334,4.82703,1.1467433333333334,1.763315,2.46773,2.1433925,1.7151725,2.4765125,2.2244275,1.961625,4.38648,4.222785,2.50934,1.81585,1.5039766666666667,3.6582000000000003,1.9819866666666668,2.633225,4.339085,7.17985,2.163125833333333,3.07772,3.58921,3.8451,2.385455,5.14225,4.34116,3.08465,1.4703625,4.37736,2.21866,2.77706,2.55105,3.6334,5.2465,5.00965,2.1810533333333333,2.72535,2.7219833333333336,3.5180000000000002,1.8714333333333333,1.46485,5.48975,3.27074,2.322532727272727,3.03464,2.996446666666667,2.33988,3.137783333333333,3.2111966666666665,3.5665999999999998,5.23095,4.05012,2.9746,4.97051,3.46643,2.383755,3.51983,3.90773,3.5886,5.8260705,1.8856439999999999,4.039885,2.478265,4.86659,3.75639,0.56043,2.318945,2.23226,3.427225,2.85948,2.176875,2.755425,0.578917,2.77172,4.78421,2.3040875,4.494215,2.4017500000000003,4.216245,2.0424,4.50305,4.08189,1.820884,2.916525,6.660465,4.060735,4.13656,4.737895,7.138888636363637,4.070855,4.476905,2.1595225,4.127635,2.89876,1.8884999999999998,1.9542,3.890833333333333,1.0135742857142858,2.2662066666666667,2.41191,2.6865066666666664,3.749233333333333,1.793534,3.314145,1.9145633333333334,4.624915,5.2218824999999995,1.04931375,1.827,2.58695,2.863793333333333,1.9924533333333334,1.0993783333333333,5.820101666666667,2.27668,2.7055233333333333,2.7932799999999998,2.794503333333333,3.0541666666666667,3.19168,2.2391166666666664,3.288933333333333,2.5104233333333332,4.244655,3.825215,4.0992,3.3322599999999998,3.2990366666666664,0.750957,1.7449566666666667,2.2540575,2.0365066666666665,2.658326666666667,1.136975,2.7359333333333336,2.9952199999999998,3.307825,2.0804066666666667,3.42086,3.30169,5.85565,3.179155,0.6168033333333334,2.12548,2.7856366666666665,3.361166666666667,0.7529518181818182,2.774376666666667,3.398564,3.086983333333333,2.822203333333333,3.3543483333333333,3.79659,3.883266666666667,3.0965433333333334,2.0340275,5.62005,4.950195,4.93099,5.62745,5.6093,1.8045799999999999,3.410235,3.6810666666666667,3.283986666666667,2.965246666666667,2.6581333333333332,4.242,3.800933333333333,3.02204,14.19654,4.37949,1.1325100000000001,2.667643333333333,1.452072,3.090426666666667,3.2004133333333336,2.2543233333333332,5.745358333333334,6.401970833333333,2.0687,0.8483370000000001,4.187805,3.4346,3.05342,5.0035,5.29655,5.8356,4.59902,3.490275,2.015985,6.665347499999999,1.1524683333333334,6.4827775,4.64152,2.2882866666666666,3.619255,6.911613333333333,5.8491,2.2736,1.4369983333333334,2.22948,6.368343333333334,1.4646125,2.8760433333333335,2.626195,4.310390277777778,5.7587,4.372795,6.34955,3.65779,5.01805,3.839785,8.22922,4.99862,5.77915,2.311845,2.587075,11.216303333333332,3.615205,2.454145,2.5134666666666665,1.6435000000000002,2.393056666666667,3.0390333333333337,0.689065,1.001802,1.0973185714285714,3.36484,7.012203333333334,2.9212153333333335,1.3521933333333334,4.79886,3.552525,0.575519,4.303545,3.396275,4.442935,3.557965,3.377535,2.7242566666666668,4.20873,10.13954,1.821815,4.0640525,4.08389,4.279875,3.80259,0.8657499999999999,3.6746666666666665,3.9013666666666666,1.69543,2.4955666666666665,2.3722666666666665,2.64034,2.6632966666666666,2.2311033333333334,2.30077,6.133177857142858,4.58562,3.919255,4.659278333333333,1.7194233333333333,2.41635,4.87639,4.482775,5.1782,4.318435,4.772185,4.37242,1.692198,3.79487,7.426966666666667,1.2613816666666666,1.6213833333333334,2.4030566666666666,2.49233,2.78,4.856034416666667,0.74935,2.398105,3.37538,5.7378,4.472285,2.2997033333333334,2.9138800000000002,1.902245,0.564865625,2.582075,2.898395,7.763055,4.353715,4.16545,0.9600569999999999,4.621133333333334,9.278467416666667,11.102070000000001,3.272415,1.1766475,3.604545,3.360445,2.872833333333333,5.31381,5.09695,3.736815,1.9023175,3.7177666666666664,2.28117,2.5540033333333336,0.7889227272727273,0.4016473333333333,2.40112,3.40456,1.907303,3.45436,3.095273333333333,3.56153,5.0178,1.4994640000000001,2.8800066666666666,2.3152925,2.3152925,2.209975,2.954575,4.366535,2.6621466666666667,2.5376733333333332,3.3283,3.6149,4.453675,4.20037,4.278995,4.147965,4.06708,3.937405,6.6202,7.828352499999999,1.8896175,2.27121,2.4472833333333335,0.92582,0.7682866666666667,3.918935,2.185975,5.41265,2.929133333333333,3.1522900000000003,1.8483440000000002,1.5614925,3.583865,4.24064,4.29323,2.0035166666666666,1.3269033333333333,2.6450299999999998,2.10868,2.6002966666666665,1.1001257142857142,1.1001257142857142,2.805073333333333,4.6795,3.005515,3.08828,3.404835,1.91501,18.682377545454546,3.93667,5.5472875,4.335125,3.816155,3.8765,3.32145,5.3674,5.8543575,0.9353416666666666,0.9353416666666666,0.9353416666666666,2.7615933333333333,1.6726285714285714,3.5787999999999998,4.2455,4.10559,3.410125,4.5763,4.63604,1.0116755555555554,2.3611999999999997,2.58392,5.902219,3.220519,3.982424,4.59567,1.87037,2.0247800000000002,2.3832133333333334,0.51931875,0.83177,1.90747,2.0409,2.814915,12.95025,2.62783,5.29435,0.7834071428571429,9.298745,5.93495,3.823165,4.010135,2.54115,5.5778,2.54115,2.79478,4.05525,3.88429,3.51542,4.1886,4.34061,3.37097,5.69465,6.767182,1.7235333333333334,2.5316,2.88595,26.201210361647362,1.505818,6.35275,4.037418000000001,3.95026,4.727315,4.856425,2.835035,2.78825,2.52697,6.38435,7.0205,4.811525,4.636365,4.233235,1.9231475,1.891785,4.165015,0.401,0.401,0.401,0.401,4.228565,3.180063333333333,0.95858,1.8626699999999998,1.1799666666666666,4.44633,2.5027733333333333,2.27525,7.109541666666667,3.0715833333333333,0.1800489655172414,20.6370165,4.592201666666667,1.7910879999999998,1.3411742857142857,2.14486,1.9633859999999999,2.3576825,4.71486,3.03061,3.7622,4.174835,2.2702266666666664,7.205965,2.780625,1.978855,3.51071,5.9508,8.38036,4.482285,0.2887073170731707,3.617725,4.32733,2.9254366666666667,1.9923125,2.814553333333333,1.6139666666666665,1.6139666666666665,4.098215,5.954644999999999,12.135721666666667,9.18675,0.6758666666666666,2.5162,3.794795,3.272725,4.75133,3.751995,1.8775939999999998,1.8775939999999998,3.40405,3.94066,3.00825,3.64458,4.901715,5.8213,5.61305,2.1406400000000003,4.848425,4.35668,2.60292,3.0245200000000003,3.30649,4.752145,4.26687,5.1256,4.206465,3.68653,3.43462,4.30698,3.92283,5.5408,2.5829133333333334,3.396266666666667,1.0519560000000001,4.097035,4.47148,3.650465,1.79689,1.7959466666666666,3.3666,2.76403,2.1595999999999997,4.202645,1.6398483333333334,2.97195,3.32507,2.5143666666666666,2.210636666666667,1.6585966666666667,4.291533333333333,3.2986966666666664,3.7622666666666666,4.41357,2.129086666666667,2.7114966666666667,2.50192,6.2973,2.31506,41.51725366666667,2.647900909090909,2.647900909090909,2.4907166666666667,2.83835,2.1999166666666667,1.6948133333333333,3.11452,1.8921666666666666,0.7496053846153846,4.921095,7.42018,4.203095,3.99541,5.4517,1.9249666666666665,4.106905,1.799146,5.68805,4.888885,5.9566,4.084165,1.695045,4.188945,4.640335,4.74002,3.941125,5.36045,4.073705,3.075595,3.4992,2.7581233333333333,2.055275,1.85743,4.12876,2.1291866666666666,3.8082925000000003,3.8082925000000003,2.2635833333333335,1.5811533333333332,2.211246666666667,2.45147,2.5280533333333333,5.1826,2.5511233333333334,1.1958849999999999,1.1958849999999999,3.1167866666666666,1.9539966666666666,2.665576666666667,2.6625,2.4723366666666666,2.9471399999999996,2.6292766666666667,2.27785825,3.084021107142857,1.6094091071428571,0.8061628571428571,59.690998025793654,2.313236,2.8549333333333333,2.149446,0.907652,3.3654140000000003,1.609804,1.609804,2.99141,3.2048366666666666,0.80324625,2.6994966666666667,5.20875,3.4860666666666664,2.2605066666666667,2.8916066666666667,2.078066666666667,2.427604,0.287015,2.7791633333333334,0.691144,2.5284400000000002,1.266934,1.266934,2.3885733333333334,1.395828,2.162996666666667,1.246414,3.4721666666666664,1.246414,2.112303333333333,2.28028,2.965393333333333,1.284416,1.284416,2.976406666666667,1.4223566666666667,2.5813866666666665,2.22023,4.622295,4.115075,12.793846583333334,7.003215,3.17604,2.59376,4.44854,5.11565,5.59095,2.8890066666666665,4.61334,3.85594,2.46148,3.80149,3.2858066666666663,2.8671900000000003,4.5016,2.2229566666666667,1.0200371428571429,3.9909816666666664,2.8950766666666667,2.948505,0.8110571428571428,2.611675,3.64486,4.03835,4.36934,6.69515,2.7284733333333335,1.9069559999999999,3.86119,4.586105,2.380175,2.433745833333333,2.04636,2.215456666666667,0.9569300000000001,5.21475,4.585425,3.687055,3.79334,3.319733333333333,4.827565,5.201,3.205076666666667,1.7295633333333333,0.5377746666666667,14.3380825,0.5133927272727272,0.5133927272727272,0.5133927272727272,3.1293733333333336,3.7802666666666664,0.5133927272727272,7.28889,4.43126,0.729363,0.729363,3.2094400000000003,3.22509,3.01476,4.80765,4.828165,4.259853,2.2465574999999998,4.717330666666667,3.24289,3.368796488095238,4.83221,2.86118975,2.2835375,2.2621325,2.576325,1.6423375,3.4062858333333335,3.0573333333333337,2.336095,2.10338,2.106395,1.8311333333333335,1.609165,2.6557,1.0393144444444444,2.4467575,0.589875,5.0283,1.7522725,0.8106108333333334,2.4664175,7.944185000000001,2.578185,2.038378,3.325595,7.35587,2.47724,4.264575,3.000305,5.99403,3.19804,3.88953,3.781805,4.04829,3.017163333333333,4.493461666666667,1.0949342857142856,4.171405,2.4838366666666665,2.51726,2.54355,2.429055,2.2675,1.2947125,5.51415,0.9291272727272727,4.89309,5.52115,4.9056,5.9855,3.662933333333333,2.38469,2.1413,2.846463333333333,3.08802,2.481535,3.6961999999999997,2.788,3.431005,1.670768,40.42211694444445,4.737975,2.40266,2.8780366666666666,2.9757833333333337,1.54115,5.607718333333334,4.645915,2.4002933333333334,3.627133333333333,2.2926233333333332,1.6926025,5.32235,0.7827000000000001,4.355764285714286,1.2804785714285714,3.3678000000000003,3.21443,2.872673333333333,1.40675,4.680842666666667,1.7237079999999998,1.7237079999999998,2.5058700000000003,2.9749283333333336,3.3938,3.6823333333333337,1.4123400000000002,3.058566666666667,2.712963333333333,6.459693166666667,3.01703,3.765350833333333,1.3235433333333333,1.41267,2.7786933333333335,0.9183479999999999,5.249080000000001,3.769066666666667,2.944176666666667,3.5014000000000003,2.928036666666667,2.7958933333333333,2.9912566666666667,1.7218333333333333,2.4364975,2.6057099999999997,3.6400333333333332,2.380743333333333,3.5132,2.9551200000000004,0.5844633333333333,9.698468974358974,2.81261,5.41435,5.28935,2.7866933333333335,2.9611133333333335,1.3304875,2.282,2.16452,1.3304875,4.356795,0.4567675,0.4567675,1.217605,1.217605,0.79289,0.79289,2.582015,3.02342,2.4981,1.59425,1.767735,3.74012,3.030085,4.603105,5.2163,1.958126,4.259225,2.42181,4.741407692307693,1.62536,1.62536,1.86415,1.8275099999999997,3.6636675,2.0254175,4.429125,1.44676,2.4130675,0.6127307692307692,1.0743085714285714,2.1926275,2.0945525,2.141335,1.3281925,4.437855,4.30118,2.42639,2.78613,1.3557866666666667,0.6912933333333333,2.39846,3.65371,2.544356666666667,4.875365,5.46295,4.70793,3.947125,6.65621,1.59387,5.878855,1.76606,4.89129,4.93504,5.757339,3.6512333333333333,2.381055,1.7426075,2.0014,2.0014,2.43761,2.43761,4.317015,5.3547,0.91867,4.41563,2.860285,3.379755,2.5767599999999997,1.401855,2.884733333333333,4.295765,4.042765,1.9183540000000001,6.5031,5.51655,1.9400033333333333,1.2643,4.00945,4.000216666666667,3.53897,3.6178,4.0391,0.6944942857142857,3.7338,3.2334766666666668,2.68207,2.93745,2.31338,3.6662666666666666,1.5489857142857144,1.5489857142857144,1.5489857142857144,3.2422299999999997,3.0592133333333336,3.3022633333333338,3.4508320833333332,2.318315,1.2375900000000002,3.121506666666667,3.2843,1.3241057142857142,2.896316666666667,2.8259966666666667,1.1455985714285715,2.7056633333333333,2.9565300000000003,2.9674533333333333,2.40407,2.52916,2.0120625,2.936723333333333,4.827748,4.40583,0.9539690000000001,1.490784,0.567077,3.5787,8.850985,2.944546666666667,3.21827,3.113156666666667,4.47853,1.98829,7.55784,6.562786666666666,2.6948266666666663,2.4801668571428572,3.933405,4.50418,1.596786,1.191504,1.30935,2.096575,10.60146,2.451703333333333,2.944623333333333,2.9774846666666663,4.34521,2.122123333333333,1.224,4.434535,1.0810516666666665,3.1745857692307693,4.22873,3.37523,3.09116,3.319715,4.96441,1.1844266666666667,2.0029025,1.839592,1.839592,3.856195,5.3497,7.093109999999999,3.873155,3.41365,4.939615,1.7676225,2.3711025,4.71878,4.138135,3.825965,1.5096749999999999,2.9044933333333334,3.56945,4.068835,2.4974775,4.177475,3.92951,3.740745,4.118265,4.074205,3.946765,5.68635,3.3602666666666665,2.3287299999999997,4.3832,3.021275,3.90133,2.05417,2.477485,2.548815,6.0442,2.54516,3.2061565340909093,1.726255,2.464095,3.292625,2.1521625,2.108055,0.77648,0.77648,1.774045,3.580729393939394,4.036985,2.9552099999999997,3.943965,3.4066875000000003,2.537896857142857,0.9741725,2.83878,1.662095,4.48033,4.23023,0.9071479166666667,1.8393925,3.904235,2.9526874999999997,1.5912475,1.6474399999999998,4.963194285714287,0.9302316666666667,2.8498,3.286935,2.789975,2.49424,2.765961,2.01507,0.98621,2.90783,2.980855,3.47188,1.39068,1.4698533333333332,1.852265,4.371425,2.08788,4.184095,4.748445,4.226715,6.0755,5.44045,4.10914,6.221204999999999,3.965871904761905,0.8032581818181818,2.83649,3.842815,5.15185,0.5095090909090909,0.868604,3.05009,4.17651,4.54434,4.33227,3.261828214285714,2.70466,4.44879,1.663976,2.561425,4.30428,4.22428,3.48795,2.898935,4.117425,4.75787,2.920975,5.2253799999999995,0.924283,3.096025,2.46832,4.3805,4.50246,4.70382,2.20682,2.567495,2.876295,2.051536666666667,4.771105,3.53027,1.4501857142857144,2.79923,4.04621,1.4466480000000002,5.94616,2.09226,2.66461,13.924495970535313,2.96592,1.4325066666666666,1.5301466666666668,2.6368966666666664,5.575073333333333,1.6960760000000001,5.7141658333333325,0.7465723076923076,3.177633333333333,4.09715,7.55361,2.6132433333333336,3.0296333333333334,3.0296333333333334,5.03315,4.27248,4.218015,3.334375,4.983505,5.312,2.45527,3.3445,4.73549,1.2446383333333333,2.7713133333333335,4.285185,3.48644,4.292025,2.3952233333333335,3.53592,3.90067,6.771713333333334,6.430285,0.779809,3.70459,3.186095,3.5729666666666664,4.308445,3.97591,3.915085,1.777392,4.920605,2.37727,2.855525,4.257555,4.543575,4.77114,0.9004060714285714,2.5138766666666665,8.280360333333334,1.559305,2.113701948051948,2.2839875,3.855555,3.6072,3.34226,0.7280972727272726,2.52495,1.6909125,2.189475,4.573045,5.534402666666667,2.921016,9.315715,2.3403066666666668,2.8485066666666667,1.09514,4.92772,5.22505,2.11895,5.797421666666667,2.910995,3.29133,5.4586,4.08632,4.995925,2.157095,1.5965,1.5965,2.74593,3.264875,4.696463333333334,1.46697,5.962008333333333,1.36995,3.60923,1.4558900000000001,8.710930833333332,5.02,2.735455,4.373695,4.22415,4.10722,1.1464633333333334,1.99059,3.5262666666666664,3.0999199999999996,3.3905333333333334,4.037833333333333,3.83093,2.837215,3.13055,3.396575,1.59943,2.5502966666666667,1.9582233333333334,2.91906,1.9523733333333333,5.40845,3.2786033333333333,1.8732233333333335,2.74989,3.361415,3.798145,6.34725,6.02625,3.11423,3.61828,3.70188,3.042095,2.91708,1.2623466666666667,1.009986,6.902675,2.77794,5.5889,5.12225,6.38975,2.885275,3.1066599999999998,6.456,2.56289,0.4342733333333333,5.48375,3.19965,3.656095,3.3895666666666666,1.4841714285714287,4.760775,1.0934620000000002,4.617815,0.8997775,1.2119333333333333,2.727403333333333,2.435356666666667,2.578113142857143,3.65562,4.98811,5.824164166666666,5.824164166666666,4.7073025,4.7073025,4.792785,3.1410733333333334,4.422615,1.103935,5.9932,4.013505,3.6092,4.0117,3.779885,4.92642,1.9558525,5.2306,3.2356920000000002,2.82168,4.27347,2.55909,4.884855,5.12535,3.605795,3.439575,4.769805,3.983455,5.27875,3.219725,3.491433333333333,6.4694,4.085605,2.93521,6.302573333333333,1.5495133333333333,2.2757775,5.02785,4.445915,5.5073,3.927125,1.9776775,1.9776775,13.54227930952381,10.9467,5.3901,3.703775,2.9381364102564103,4.731955,4.450055,2.5617366666666666,3.4077333333333333,2.79542,3.7114666666666665,3.5127333333333333,5.14095,1.981555,7.940965,2.43639,2.2957075,5.38225,2.380315,4.70468,4.249685,4.720315,0.8556288888888889,3.47108,3.890135,0.838262,2.78134,3.9060825,1.44337,2.07899,3.0618366666666668,2.5985766666666668,2.5098,3.345133333333333,2.3960833333333333,0.44114642857142855,2.799416666666667,2.6009233333333333,2.86842,3.2415266666666667,1.371684,2.8554933333333334,7.28919,4.47027,2.35024,2.04968,2.597933333333333,3.82999,2.39766,3.742404,18.75095,5.3952,3.2762210000000005,5.17765,3.88062,5.41726,1.4937500000000001,5.82805,1.3831216666666668,4.198605,4.60245,5.28135,4.98421,0.9833683684210526,5.8881,2.47231,4.58285,2.75135,4.50215,4.2974,2.82048,2.1786066666666666,1.496232,1.9161325,4.41131,4.741425,2.30306,1.632395,3.1033633333333337,4.273673333333334,2.978806666666667,6.23795,1.9715875,4.08197,4.344395,3.735105,5.1506,2.74288,3.89786,4.46835,3.894225,2.727513333333333,2.727513333333333,5.78664,1.9289399999999999,2.4176466666666667,3.95559,1.747674,7.5464,3.610335,4.57698,4.3838333333333335,4.26179,1.9700520000000001,4.537545,5.0833,3.664875,2.2183225,3.528365,3.39495,1.01949,1.220165,1.23381,0.6902716666666667,1.5689966666666668,0.92346,4.584375,1.0616366666666666,2.915846666666667,1.5846033333333331,1.5291375,0.958565,1.9769375,2.49812,1.5941475,3.1758566666666668,2.6911633333333334,4.992701666666667,1.575335,2.495875,3.5911333333333335,3.3363666666666667,2.353543333333333,4.527027500000001,4.64903,5.100395,20.094950666666666,2.448726666666667,2.2631475,0.6292630769230769,0.636725,4.651133333333333,1.9793220000000002,4.173305,5.1094,7.064030333333333,4.211015,3.54571,4.0825,3.067633333333333,3.6569333333333334,3.6034333333333333,3.361133333333333,3.5971666666666664,6.2255,3.65718,0.9467610000000001,1.133765,4.98311,3.0490866666666663,2.543696666666667,2.12712,2.23035,5.663,5.4908,2.0348425,1.8570900000000001,3.354805,4.929715,9.00365,5.41405125,3.978515,4.19258,5.26665,4.901765,4.34979,4.675965,4.01711,5.4975,1.503145,5.57095,1.5489714285714287,5.45025,0.7607866666666666,4.950235,5.63445,6.1242,6.17615,4.50481,5.93895,5.7626,6.5020775,1.8919666666666668,1.6231142857142857,5.5884,3.39654,6.38628,5.12205,5.290066666666666,5.34205,6.11235,1.3021314285714285,4.370575,5.5965,4.0788,4.64888,5.6484,2.655425,4.082695,3.840165,4.55811,1.0238333333333334,1.5558166666666666,1.3184960000000001,4.76809,4.099885,3.461205,2.3313866666666665,3.0125266666666666,1.8037233333333333,2.23632,0.37355999999999995,3.27286,1.57421,2.195675,3.0957166666666667,2.1068966666666666,3.163266666666667,2.5974,2.5007,10.363640666666667,3.7812666666666668,1.7560711538461538,3.75013,0.8555827272727273,4.34964875,1.1608775,1.613255,1.90935,1.03941875,5.620631333333334,1.1443211111111111,1.1443211111111111,1.1443211111111111,3.062253333333333,1.788116,5.48455,3.07915,1.4062025,1.5505325,2.2079175,1.361575,1.671472,5.282553333333333,0.8205077777777778,4.18553,4.08939,3.2890366666666666,1.0212299999999999,2.211199,1.81573,1.81573,1.521505,3.7784949999999995,4.469475,5.0888,5.4572,4.225295,5.0322,2.99011,2.0620775,2.69766,5.5535,3.362575,4.837915,1.04486625,3.9923281250000002,5.4706,1.91019,3.930245,2.9351299999999996,4.45899,4.68936,2.53998,6.5915,6.00655,5.19615,4.94033,4.337435,3.305245,8.48388,4.122985,6.317781666666667,3.36761,2.757293333333333,5.2252,2.7113766666666668,4.70474,4.570695,2.78954,3.304495,4.00347,1.6874433333333334,10.690562499999999,5.23735,3.30382,15.553279662698412,4.11929,1.7711933333333334,2.833676666666667,2.156915,2.223395,3.35547,2.5510909027777773,2.802,2.626075,2.921095,4.18566,5.86062,1.2563566666666668,2.147445,4.412405,4.539175,4.433655,2.1480475,0.640928,5.0416,4.310265,2.37539,1.21325,4.84971,4.83502,0.9075811111111111,3.715675,12.368255833333333,1.289405,0.40302000000000004,3.6950333333333334,4.363668333333333,0.9824977777777778,4.235645,4.06364,5.177983333333334,1.2391133333333333,3.64714,4.15171,3.3278,4.082855,4.118135,4.72148,8.53359,3.244915,3.93759,5.45505,15.9678725,3.5224599999999997,2.78165,1.136865,2.149545,1.21652,1.8343224999999999,1.2911525,2.0160625,1.7087125,2.345185,2.5078,2.683125,2.009085,5.0094,3.724115,5.37125,3.182265,5.4731033333333325,2.666443333333333,5.1749,3.3388000000000004,1.23134,3.838535,2.0747225,2.762774,4.577185,4.653515,4.850815,3.246095,3.0791233333333334,3.4251666666666662,2.4581733333333333,4.310395,3.82617,2.280965,2.01448,3.6015333333333337,4.349385,3.685095,2.4496566666666664,11.935026666666666,0.6343753333333333,2.66973,4.600525,2.636393,1.068266,2.900155,7.854616666666667,7.525385,4.68773,3.96855,3.759615,1.9527325,2.380725,2.7399713333333335,1.9711033333333334,3.7522933333333333,6.5332,4.583715,0.52073,6.2606,3.5386,3.3250933333333332,3.6954333333333333,6.45975,8.5872235,4.0486635,1.042305,2.22992,2.26362,3.76157,2.56475,4.04512,4.386215,3.5043333333333333,2.68214,3.832355,4.20501,3.77359,4.099633333333333,1.79026,4.21384,5.03695,5.4819,3.6514666666666664,1.592175,2.2368799999999998,14.99033270862471,0.5414645454545455,1.40679,1.40679,2.4082433333333335,4.359222666666667,3.704215,4.480455,2.814445,3.17901,4.237665,3.0946166666666666,4.285245,3.0946166666666666,3.492295,1.8900133333333333,1.5948033333333334,5.88315,2.59845,4.97079,3.377875,2.59744,6.773166666666667,1.9934133333333335,4.99269,5.07865,3.65687,3.396775,4.77455,1.9574000000000003,4.94593,3.6358525,6.85946,5.200549166666667,2.83845,4.038805,4.547375,2.16999,2.9428733333333335,3.8674666666666666,0.4013185714285714,3.1496933333333335,10.098343333333332,4.201535,4.05304,5.3901,3.2783366666666667,3.229245,1.3320014285714286,4.24818,5.5288,3.27241,2.38116,4.761705,3.767945,4.46571,4.52043,2.6003,2.6003,4.20289,2.893755,2.64623,1.751145,4.767615,4.110485,1.1145157142857143,3.613605,4.467205,2.77847,7.017362500000001,7.93224,1.481314,4.27336,4.577745,6.598948,0.679562,7.457116666666666,3.493545,0.6059281818181819,5.36595,5.2531,5.5526,4.333625,5.2363,4.620475,5.0041,3.846055,3.998395,4.647915,4.500655,5.57475,5.18895,3.966855,2.821015,4.58691,3.009715,0.810075,4.24837,2.477315,1.660315,3.90168,4.22231,5.57175,1.0230285714285714,4.9668399999999995,2.97965,2.7346333333333335,1.954495,1.2312666666666667,12.090744166666667,2.6142833333333333,3.140563333333333,1.8915033333333333,3.8078085714285717,5.97696,6.551493333333333,2.6800866666666665,1.8788533333333335,2.23416,2.23416,2.23416,1.41091,3.707765,3.806425,3.06169,4.566335,8.225565,4.191675,1.225864,2.30042,3.100795,3.31252,1.7010079999999999,4.66687,2.82496,1.3963433333333333,3.7855000000000003,7.046314285714286,6.5795375,4.61676,4.05066,3.1314100000000002,5.3539,4.49994,5.4024,1.8960175,1.8960175,3.78459,3.80143,2.7127333333333334,2.7127333333333334,3.89392,1.240052857142857,4.97496,3.33252,4.267925,3.921855,3.97739,3.1263533333333338,1.005877142857143,4.35034,4.64714,4.190885,4.637245,4.87459,4.786675,4.33195,2.0462225,1.4722025,3.34986,3.95244,3.24907,4.489045,2.117105,2.9088425,4.85318,2.8003,4.941055,7.46299,2.3219908333333334,2.8154633333333337,4.321892380952381,4.784525,1.616925,2.147935,1.0552949999999999,2.147935,1.7108466666666666,1.7108466666666666,1.51227,4.690495,3.20215,3.894805,2.37459,3.764975,1.5749016666666666,5.49615,3.050825,1.7275225,2.8657500000000002,3.412,3.791195,6.101017,4.74915,1.156954,0.8418683333333333,3.586405,6.648085,2.398946666666667,3.635525,3.67224,3.67224,2.29881,3.443725,3.192545,1.3953748051948052,3.432166666666667,3.77149,3.179485,4.314545,4.02483,1.6268325,3.68625,4.661115,4.780855,5.2778,4.35111,1.8828925,1.99671,1.3188666666666666,2.3395675,3.407005,1.9678275,4.118865,3.303876666666667,2.81339,4.14485,5.01685,1.42509,0.9703379999999999,1.8109333333333335,1.360625,1.162511111111111,4.99876,4.053995,1.0519560000000001,0.20000782608695652,0.20000782608695652,0.20000782608695652,3.57608,5.720081666666667,4.473345,5.76925,3.7742,4.288375,5.39075,4.525545,2.7401,3.59208,1.5906875,4.77205,3.932815,4.037945,4.363945,4.36725,0.76632,0.76632,0.76632,0.76632,1.032886,1.032886,4.01697,3.58344,3.571515,2.861115,2.683525,6.5081,4.76271,5.20985,4.270035,3.1437633333333337,2.5428566666666668,9.86516,1.7482099999999998,1.7482099999999998,4.843225,5.91115,3.2777233333333338,0.4567675,0.4567675,0.4567675,0.4567675,0.4567675,0.4567675,4.974153333333334,4.962455,3.28728,4.454005,2.8260258333333335,2.8260258333333335,2.693205,2.7081306666666665,2.630993333333333,2.96477,3.465285,6.493582,1.409008,4.809565,3.36475,4.16509,9.512901666666668,2.4369166666666664,2.806865,0.9252942857142857,2.3478,4.46151,3.48861,0.92606375,2.8104866666666664,4.43195,5.74905,2.6306,4.801055277777778,0.9230411111111112,1.9046833333333335,4.80243,4.8478,2.8066355,2.38168,2.02257,1.3284316666666667,8.042641666666666,3.463033333333333,1.92565,3.197025,2.7399516666666663,3.56995,3.616535,2.730506666666667,3.333206666666667,6.0061,1.5435133333333333,4.437265,5.14215,3.5602,3.968015,2.1208199999999997,3.1217,3.799995,3.650895,2.85593,4.759145,4.691985,2.978543333333333,1.9432375,2.927296666666667,2.7716833333333333,2.79775,0.8526427272727273,2.25953,8.18052,0.523220625,3.1708499999999997,1.8946833333333333,2.6375066666666664,3.051766666666667,2.7489566666666665,1.2171666666666665,1.830562,2.6674100000000003,2.1785525,3.717825,2.03374,2.6927800000000004,1.46047,3.064064,2.22514,1.1929571428571428,2.739293333333333,2.0950175,2.32369,2.48626,3.23122,3.10207,3.3718333333333335,3.0846400000000003,2.9862966666666666,2.9567433333333333,2.8050566666666668,2.424685,1.6714733333333334,2.38802,2.5078533333333333,1.7051233333333335,3.0913166666666663,4.022747142857142,2.99578,2.628486666666667,3.043286666666667,3.5983,4.5126083333333336,2.929463333333333,1.73788,1.73788,2.3653625,1.1674375,2.3646975,3.260075,4.5859375,2.790975,1.94106,2.0468525,2.1159275,3.747585,3.660845,3.63611,5.06605,1.799525,2.4407366666666666,3.79423,1.2284760000000001,1.2284760000000001,2.972825,0.7175369230769231,3.3315934615384615,2.3097075,2.3097075,2.8891066666666667,2.4917366666666667,2.830163333333333,2.8027583333333332,2.2677625,6.801208333333333,3.919965,3.919965,3.518165,3.083025,2.282255,2.95478,2.546795,2.980525,5.2407925,0.49467833333333333,0.714855,4.13501,2.608185,2.9251,6.7576,3.44683,1.700612,4.851086666666666,4.46592,3.85488,4.33076,5.2461,4.70313,13.526357,3.368055,1.7853966666666665,2.965025,3.94135,5.58565,3.425425,4.203315,4.43337,3.70563,3.195455,2.883013333333333,4.292365,2.7625766666666665,2.451093333333333,2.451093333333333,3.97102,3.586555,3.061825,3.217585,2.38595,2.541435,2.2721925,1.8928175,2.0492475,1.9612225,1.70348,3.5611835000000003,3.43532,2.52103,6.976799999999999,3.409095,2.3996833333333334,1.8440066666666668,3.53482,3.990695,3.70514,3.029639375,3.454355,3.25445,4.309135,3.71917,3.845085,4.003985,3.3544169999999998,3.60815,0.6348233333333334,0.6348233333333334,0.6348233333333334,3.539385,2.401015,5.669,2.665145,3.72041,7.328689814814815,2.900456666666667,0.3256015384615385,5.1836,0.8087030000000001,4.341201428571429,1.912745,3.752175,1.80583,4.246725,5.682281666666667,4.308965,3.913285,2.8057166666666666,2.73269,1.5197683333333334,2.6722466666666667,0.5186215789473684,0.6159235294117648,2.9404966666666668,1.4375333333333333,2.0821775,3.93378,2.931515,5.3786,2.72716,2.864148333333333,3.498525,7.08857,1.793695,0.9570328571428571,2.171595,3.2629080000000004,1.2313145454545456,5.2823,3.923755,3.58206,2.7621566666666664,4.940245,2.6297566666666667,2.6906,3.1559666666666666,2.1751,2.514953333333333,2.1638925,3.2282100000000002,2.4148166666666664,5.8372980000000005,2.2357025,1.9916133333333335,2.2166133333333335,4.965858,3.180836,3.180836,2.457946666666667,3.978815,2.2930525,3.091915,2.866355,0.609014,4.31491,1.92787,11.283897777777778,7.47456,3.00141,3.286105,3.358525,4.83953,2.8822,3.39485,0.2261446666666667,1.86736,4.147233333333333,0.94875,3.96362,1.409402857142857,4.963465,3.31881,4.826395,4.58583,3.450705,2.217515,4.58391,3.832975,3.97362,6.91418,4.3444,3.026593333333333,3.15484,1.6150980000000001,2.078795,4.502795,4.788745,3.9727224999999997,2.817385,3.312425,1.347772,2.88822,2.43093,3.48824,10.763318333333334,3.692245,6.803895000000001,3.66358,4.299645,1.0108866666666667,4.626046,4.626715,2.5805166666666666,2.48439,3.4603333333333333,3.07878,2.38017,1.7777133333333335,2.00788,3.71508,1.590066,2.7382166666666667,5.157514666666666,2.61741,1.1469925,1.1469925,3.62252,3.1687065,3.1687065,3.7309,2.889696666666667,4.168594102564103,3.5655666666666668,3.1128966666666664,2.8268466666666665,2.354766666666667,2.4673633333333336,3.1348833333333332,2.27934,2.7193966666666665,1.665912,5.882572,8.539317166666667,0.5012315384615385,0.5012315384615385,0.5012315384615385,0.5774331293706294,0.5774331293706294,0.5012315384615385,3.0444,3.0224166666666665,4.227435,1.475475,1.7750325,3.38151,2.46341,3.0300433333333334,2.3578966666666665,3.3810000000000002,3.536466666666667,6.458613333333334,3.146036666666667,2.49552,3.7453000000000003,4.174275,2.7803233333333335,3.232203333333333,5.85831,2.3645033333333334,3.3877333333333333,1.3875466666666665,1.3875466666666665,2.566263333333333,0.5039305263157895,2.026003333333333,2.742226666666667,2.9642133333333334,3.1966366666666666,2.314103333333333,1.58442,2.7353566666666667,2.9060566666666667,2.29783,4.929185,2.3493743333333335,4.211635,3.569445,4.265745,0.46197699999999997,6.772333333333333,2.956448,2.956448,7.898552222222222,1.76048,1.8103333333333333,3.0256000000000003,3.37997,2.43693,1.9591133333333335,2.6057166666666665,1.4365275,3.3001733333333334,1.80162,3.1096385,1.426515,0.2728190909090909,0.2728190909090909,4.644595,3.97818,3.430015,2.921673333333333,2.631825,3.46136,1.2754066666666668,6.7561,3.8106,2.886435,1.8733025,1.1376183333333334,2.049045,3.0256000000000003,2.486765,2.061755,5.576285,5.09425,5.31515,3.76046,2.373705,0.6934741666666667,6.70966,2.0339575,1.4925125,3.631675,4.904385,2.24269,1.7720333333333331,4.78623,4.11487,3.3224366666666665,3.113496666666667,4.1886,4.237635,3.355566666666667,2.60874,2.60874,4.7745,5.21625,5.644,6.435933333333333,2.6815266666666666,4.024665,1.3801414285714286,2.424455,4.851095333333333,3.850945,1.856852,4.56673,3.4263125,3.762835,2.184895,4.44452,4.58727,4.96379,4.6099,2.4972166666666666,2.64928,3.7687666666666666,2.1231533333333332,2.751625,2.64403,2.5989133333333334,1.02488,1.986465,2.778233333333333,2.3354566666666665,4.699885,4.45443,4.470505,3.87974,3.329265,5.1010100000000005,11.642769999999999,5.2253,3.85177,4.59225,4.03141,4.798805,3.5621666666666667,2.933917666666667,3.7799666666666667,1.2281725,2.82559,3.00847,4.590675,5.61785,4.56344,3.1740999999999997,2.79392,2.3028999999999997,4.245533333333333,4.0858875,3.5625,4.0858875,2.210611,2.2460733333333334,2.2546150000000003,2.25516,2.6115866666666667,1.8512766666666665,0.8305466666666667,1.3300133333333333,1.7133766666666668,2.07405,1.6453766666666667,1.3337066666666668,1.6816166666666668,2.704803333333333,1.530196,3.3518000000000003,1.2746666666666666,1.6413533333333332,2.768605,2.28057,2.6991366666666665,2.1525266666666667,2.399723333333333,3.217165,2.291085,2.9275466666666667,3.1308866666666666,2.5033166666666666,3.1599633333333332,3.18737,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,0.1458277419354839,4.95585,4.2054,1.0401928571428571,3.2085033333333333,2.6547666666666667,2.754516666666667,3.6677,3.087346666666667,4.52534,3.531938,1.482208,3.2614,1.6874,1.09207125,0.911848,1.2210750000000001,0.9082566666666666,0.7977025000000001,1.327434,3.32013,1.839772,1.7359166666666666,1.9733561111111109,2.3009405555555555,1.0056183333333333,1.4940583333333333,1.4503883333333334,0.95031,1.2870966666666666,0.7416616666666668,0.93298,3.416525,3.62982,4.18914,4.504935,4.03665,3.0061066666666663,4.213575,3.7311666666666667,1.940705,3.725835,1.99492,3.661165,2.10777,0.8051063636363637,4.270255,5.128,2.3525633333333333,1.3048925,2.884005,3.41213,3.7784949999999995,3.0201933333333333,2.616655,0.941025,2.0824025,5.27528,3.803975,2.45945,1.6036033333333333,3.84364,1.8133175,0.6550054545454546,4.228725,4.066505,3.975225,2.729845,1.426288,3.63861,4.55691,2.6104,2.59572,2.599206666666667,2.6701333333333337,2.7428899999999996,2.9674133333333335,3.1163066666666666,1.3361625,2.644675,2.5837933333333334,5.26815,4.397615,3.64624,4.56951,15.902007650252525,4.56106,4.564691333333333,2.777895,3.76567,5.13685,1.501774,2.219995,2.2435733333333334,6.179685,3.030955,3.86402,5.4924,2.2435733333333334,4.093315,2.103335,2.33509,2.9230633333333333,2.7034066666666665,1.2171016666666665,4.487515,3.55534,2.57297,4.22977,2.24699,2.7898599999999996,3.79123,3.213175,4.317175,4.254445,2.7771,3.578755,2.81815,2.4025866666666666,1.163802,1.163802,2.43587,2.374616666666667,0.3326917857142857,4.895816,0.949254,3.139305,4.12384,0.5879333333333333,4.572235,7.919423333333333,1.8973975,3.630755,3.917645,2.63363,3.43547,2.320795,3.142915,3.561475,4.20819,3.15539,4.1747000000000005,0.9988916666666667,11.762677666666667,2.60197,2.945705,5.296,2.639165,4.3043,7.809811666666667,4.23352,4.380935,3.87153,4.343155,5.585077500000001,1.6234525,2.58219,4.44554,3.872666666666667,2.02358,3.811475,3.800935,3.78567,3.999635,4.095495,3.718025,2.5343866666666663,4.195725,3.74224,5.1275,4.95321,2.1823266666666665,2.309466666666667,2.1801833333333334,3.0932633333333333,1.3465766666666665,3.697433333333333,0.8818090909090909,3.08646,3.0323166666666665,2.6657100000000002,1.5983333333333334,4.15908,3.995815,4.214865,1.895505,4.556885,3.72129,0.7293141282051281,0.3345734615384615,4.52494,4.743965,0.93252375,0.3345734615384615,2.997705,0.7293141282051281,0.7293141282051281,0.3345734615384615,5.980033333333333,2.579833333333333,2.4528866666666667,5.4017,3.27302,3.302,0.809188888888889,3.129825,3.8787,4.368375,5.48415,2.2321,0.6943807692307692,4.248969166666667,2.031966666666667,1.312222,1.9054725,1.0214485714285715,2.1580933333333334,2.273146666666667,3.315575,4.94769,2.8712133333333334,3.4296,2.8938400000000004,2.4287566666666667,2.92202,4.37689375,1.5560825,1.955705,4.02883,5.3401,2.044764861111111,5.4621,2.667725,4.20199,4.22625,3.087135,1.1935075,3.16038,6.76445,4.059005,3.849315,5.3765,6.50555,2.3485,4.317175,4.640275,3.15495,3.392845,8.25167,3.861375,4.6095825,2.243355,1.100055,2.32047,1.768555,2.232095,1.87679,4.817535,0.6995935714285714,3.361865,3.730715,1.9307666666666667,2.8888133333333332,4.3826,3.98802,2.76761,4.528515,5.17065,9.990943666666668,2.667206666666667,2.96753,1.712914,1.9507666666666665,1.2349566666666667,1.3393466666666667,3.2142,2.4372333333333334,3.1102333333333334,4.520859487179488,1.55455,2.3844766666666666,5.0576,5.6526,3.620265,3.57668,3.00876,2.672685,2.09767,2.005095,1.8396866666666665,1.99792,3.62858,3.700445,5.056,5.2933,4.13205,5.2512783333333335,3.623035,2.57122,6.426875833333333,3.29247,8.401125,4.752090833333333,4.752090833333333,5.561864999999999,1.6008833333333332,1.3594625,1.2971933333333332,0.730548,5.0015,3.9993,3.3130699999999997,3.3130699999999997,1.925482,4.49846,4.434775,4.638085,4.403035,2.9258,2.739575,3.90705,3.1408233333333335,5.323425833333333,3.72258,0.84023,5.39635,5.359,5.34885,4.843225,2.8725,6.2239,4.810405,0.8785153846153846,5.0566,7.193235,3.129835,5.27075,5.86285,3.5607,2.704145,3.767565,6.15095,2.147055,6.19115,1.880485,4.8063,2.712986666666667,1.963775,0.924283,3.4152,5.96435,3.37301,3.81182,2.1868133333333333,4.977435,7.87756,3.44792,4.32671,2.70475,2.47324,0.861626,4.806285,1.529305,3.5738833333333337,3.5738833333333337,3.96603,2.3604,3.081383333333333,4.27244,1.6694875,3.29214,3.017723333333333,3.3114033333333333,2.832045,4.029835,3.16749,1.861095,3.3149200000000003,2.0788175,2.989796666666667,1.9298433333333334,2.9814000000000003,2.8967233333333335,1.38864,1.70003,0.42584833333333333,1.3371933333333335,0.42584833333333333,0.42584833333333333,1.70003,0.42584833333333333,3.390233333333333,2.110296,2.110296,2.6936033333333333,4.71686,3.81066,4.388815,5.1747,4.949655,3.478355,4.27811,4.04031,2.03136,2.5287848333333334,2.536113333333333,0.8050345454545454,5.54635,2.91122,3.0701066666666663,5.3009,3.8137600000000003,5.2753,3.30518,2.6387233333333335,3.06024,3.4656,2.5934566666666665,2.8573066666666667,2.04252,5.5547,0.8417933333333333,3.777995,1.1984614285714286,3.73512,3.1120733333333335,3.246783333333333,4.03804,3.81947,4.040085,4.645845,4.08669,4.064015,4.14202,4.296385,2.4140775,2.591375,3.2957,4.244085,2.685685,2.971265,2.75736,3.239865,3.0071133333333333,3.41075,3.726675,4.586085,4.03717,68.23888207062382,2.7217291666666665,4.22472,16.345764333333335,4.10475,2.9508733333333335,1.95856,1.95566,2.5315433333333335,4.423685,3.0755866666666667,4.2580825,5.51835,3.11156,7.756806666666666,5.41505,2.249485,3.30164,4.79925,3.48978,1.892814,1.07844375,4.61863,2.71438,6.123628333333333,3.917645,2.45993,3.51891,3.48248,4.55548,3.33846,5.75512,4.9091,3.428995,2.86214,2.523325,2.894385,6.2821,2.8186,3.999495,4.44392375,1.2127166666666667,2.50915,5.1454825,2.884825,3.9987,3.671145,2.70979,4.29034,3.071445,3.44679,3.27044,4.465075,2.811815,2.894175,4.57225,9.708025000000001,3.2414166666666664,4.2089,6.3585,3.130195,2.409675,4.064428125,2.4345966666666667,2.923806666666667,3.297968,3.588965,3.35134,4.419605,3.23163,3.38874,4.12328,3.916505,4.34887,4.00519,3.63942,3.966045,2.543783333333333,2.543783333333333,6.81729,1.61001,3.22501,3.48626,2.33089,4.56845,4.24107,2.96332,3.05724,5.73415,6.1102925,0.6639827272727273,3.54321,2.30148,3.0417966666666665,2.5651800000000002,5.3008,2.7515733333333334,2.085895,1.12114875,2.109432575757576,4.16866,4.47067,4.092265,5.58175,5.65405,6.176,2.500185,1.89142,3.85978,2.76553,3.1414866666666668,2.0174499999999997,1.1740683333333333,2.5985066666666667,3.2625233333333337,1.617706,2.2512833333333333,2.394748857142857,3.595085054945055,3.590685,4.94007,3.39149,1.49363,4.19445,3.500405,5.41595,4.81784,5.3246,4.66819,1.9846233333333334,1.8723866666666666,0.6276357142857142,1.55734,3.73794,2.539495,3.607588333333333,1.3985733333333332,2.53219,2.32749,3.472815,3.592015,3.861565,4.18256,1.6377125,1.438015,1.944795,2.0749725,1.4604725,2.691575,6.534448833333332,4.917385,4.19734,2.963005,7.683959999999999,5.0751,3.16104,3.164775,3.518635,2.882355,3.71994,2.3195966666666665,7.49326,0.9036783333333333,3.116595,6.46655,4.086445,4.88445,6.07045,1.52841,3.1004533333333337,2.965196666666667,3.0330266666666668,1.594405,4.02955,8.67573,3.18745,5.3602,4.06591,4.847915,4.638195,0.9029766666666666,2.8179133333333333,5.5111,6.264989999999999,4.9142,5.1152,2.981695,3.7550333333333334,2.48038,4.585745,4.946825,3.713087119047619,3.713087119047619,0.6395442857142858,3.1928,0.910232,0.7096183333333334,1.865905,3.6006666666666667,2.87421,3.9768300000000005,2.4759100000000003,2.5651720000000005,2.6682566666666667,3.06643,2.9203666666666668,4.5935999999999995,3.4730041666666667,1.8417275,1.8417275,3.821095,3.0191966666666663,2.782033333333333,3.8683,3.3394666666666666,0.548278888888889,3.220663333333333,2.4775466666666666,2.7036333333333338,2.81073,2.562025,2.419853333333333,3.134256666666667,2.791166666666667,0.837875,2.7672233333333334,6.353754190476191,2.05398,7.465535000000001,1.584848,1.584848,3.3596090000000003,3.234996666666667,3.2219466666666663,2.6686933333333336,1.756994,1.3506457142857144,3.29656,3.3794,1.5049333333333335,1.511,2.8787933333333338,2.8286700000000002,2.6376,2.02588,2.071685,2.645015,2.233495,2.718165,3.42963,1.61177,3.73958,3.36954,7.11064,4.053745,1.6911975,3.536415,2.5509,2.214285,4.037735,2.5959766666666666,2.71364,6.605475,0.8527384615384614,0.5554525,4.468145,1.412156,1.412156,3.56291,2.360865,4.793715,3.274085,1.2999466666666668,2.592904,2.71442,2.5065573333333333,5.30385,3.609005,2.634256666666667,2.0969333333333333,1.3751078571428572,1.3751078571428572,2.0401666666666665,3.938545,4.0625,5.109,3.206886666666667,4.89047,4.42411,6.7589,4.80875,2.550715,2.784213333333333,2.68169,2.7536400000000003,0.7719066666666667,0.7719066666666667,0.7719066666666667,3.18488,4.404435,4.230295,0.7052275,0.7052275,5.39595,6.31985,6.7902,22.436952,11.9546,8.45026,3.36858,5.74545,2.413315,4.53072,2.6871266666666664,3.2544966666666664,4.200433333333334,5.497428666666667,2.104045,1.785105,6.60172,2.12502,2.12502,6.5832,3.30481,4.46366,1.87054,4.751297666666667,5.08885,3.151065,5.1306,3.66523,1.3983866666666664,6.0075,9.30264,1.3983866666666664,1.87054,2.106133333333333,0.742632,0.742632,1.6777460000000002,2.343026666666667,1.6777460000000002,4.45171,5.80945,6.32785,9.26166,1.87054,11.489106000000001,6.0037,5.26475,2.413315,3.02867,4.449575,9.02279,3.1831408333333338,3.878495,6.30215,3.212505,4.821945,6.11145,4.396615,4.931485,4.576345,2.66843,5.0083,4.049835,4.344705,4.337845,0.81864,1.5269,3.14845,5.346,4.646195,2.61741,1.8432075,3.83242,4.9147,5.49255,5.03745,5.21895,4.50235,3.414835,4.299755,3.81739,2.1269,5.1353,2.016305,2.649455,3.5496,1.6739166666666667,3.969685,4.21342,3.681345,3.6317,2.958665,6.716796666666667,0.9317722222222221,3.51098,4.468505,1.4893857142857143,5.417337,1.4581566666666665,1.5576433333333333,2.69093,2.7580995,3.079083333333333,2.8305466666666668,1.825435,0.7929245454545455,2.185563333333333,2.603835,3.83741,0.7354676923076924,5.749821666666667,1.6537566666666665,1.21903,3.909333333333333,1.21903,4.00361,0.8884036363636363,4.577725,3.0140733333333336,1.876025,4.644108,4.6753979999999995,4.6753979999999995,4.828075,2.583925,3.2695483333333333,2.50384,1.371684,3.830175,3.72277,2.035413333333333,0.7627066666666668,7.206044358974359,2.785595,3.868355,4.48616,7.62794,2.388645,4.0887,3.841815,3.17254,3.749185,5.57665,6.7211275,4.328005,4.760255,5.5397,3.0236199999999998,4.405745,3.93257,4.51752,1.0581488888888888,0.4653764285714286,3.162895,3.2849866666666667,2.835433333333333,5.6977,3.923705,4.351195,4.58534,4.840845,4.12049,4.698,1.17654,2.39868,8.891200000000001,2.2284133333333336,1.9230633333333333,3.9295414285714285,11.40933875,1.5196875,5.5122,6.2958,4.89292,3.277756666666667,2.21161,3.2617733333333336,3.75676,1.1037166666666667,3.03119,3.37724,0.357921052631579,1.9676133333333334,4.46462,4.45024,2.353815,4.16814,3.089095,5.040495,1.2822566666666666,0.551769090909091,3.758238333333333,1.09995,0.98761,0.98761,0.98761,0.98761,1.5984366666666665,2.7260733333333333,2.1487000000000003,3.414566666666667,5.1438,3.5281000000000002,5.0314,3.91123,4.41276,3.68707,4.026665,1.4319633333333333,7.065685,2.493085,4.961195,5.206806666666667,4.622875,5.057600833333334,2.341886666666667,2.318583333333333,2.67441,3.19757,1.1806766666666666,4.7939066666666665,2.6939166666666665,5.041,2.9257566666666666,2.30302,3.861075,3.35335,2.97986,2.492426666666667,2.831463333333333,1.482525,0.40276222222222224,4.276425,3.301625,4.171915,3.46646,3.92529,6.0335,4.31804,0.5415130769230769,3.331792,7.359542,1.97081,2.05694,5.491286666666666,5.27415,2.729816666666667,4.843235,5.0745,3.909235,4.10434,4.418535,5.0046,5.3617,5.00915,3.590245,5.4853195,1.586916,1.6031683333333333,4.176755,4.012385,4.35989,3.231125,5.2715,5.444,3.917415,3.42088,16.001741065652514,1.3021666827180312,1.16242125,1.9264230681818182,0.50953375,0.47108133333333335,1.22725125,0.29761470588235295,1.329322,2.884306666666667,1.426924,0.941825,1.0708425,0.4964125,1.0708425,1.0708425,0.4964125,0.8382615384615384,0.6156807142857142,2.736215,2.7159033333333333,3.50438,4.11058,2.8615100000000004,2.758525,4.02144,5.4653,4.971915,2.79856,4.093525,0.7564214285714286,2.408268,8.3697925,4.16811,7.052655,2.77063,4.162785,2.351885,5.0027,4.956035,3.16569,4.29643,2.31233,1.0261733333333334,3.8106,4.87856,0.9882899999999999,1.2980399999999999,1.5434533333333331,2.357416666666667,2.5111266666666667,5.09665,5.8072,2.3079775,2.3079775,3.6246794444444443,6.67244,2.1501533333333334,0.6575727272727273,0.7586685714285714,2.0058700000000003,3.3813666666666666,0.8226057142857143,0.8226057142857143,0.8226057142857143,0.37108461538461535,1.0200371428571429,3.013825,6.10985,3.7983666666666664,4.0437025,5.2409,0.967657,3.4430333333333336,3.0811466666666667,3.9208,5.7767,2.5423899999999997,7.362933333333334,4.911565,1.1076166666666667,3.7817333333333334,1.796048,2.568315,2.3163033333333334,6.913821666666667,3.4627,4.95658,2.1979025,4.07357,4.36509,4.63404,0.4886272222222222,2.076496666666667,1.3856933333333332,2.6822466666666664,4.015143999999999,2.1303566666666667,2.7368,2.29291,2.60965,2.5833133333333334,2.74995,2.7641466666666665,2.8880733333333333,1.3587339999999999,2.3153900000000003,2.1427166666666664,2.6296933333333334,2.3519433333333333,2.0702825,1.7935633333333334,1.9269266666666667,1.62209,3.21036,2.263993333333333,2.3804233333333333,2.2309033333333335,2.398633333333333,2.727543333333333,0.7863655555555555,0.7863655555555555,0.7863655555555555,2.53839,2.21936,3.0450433333333335,3.10723,2.7628866666666667,2.0818266666666667,4.09167,3.40182,1.3209733333333333,2.6018766666666666,2.8119866666666664,3.803716666666667,1.5435142857142858,7.529941666666668,4.83196,3.255675,4.148655,3.65756,1.5236625,0.6195107142857142,2.823605,3.844,3.803716666666667,4.19667,4.220835,4.33983,2.85956,3.53516,4.31126,0.8323740000000001,2.730885,3.38769,5.015193333333333,4.820225,3.579415,3.20566,2.538205,2.657043333333333,2.5841066666666666,0.6417683333333334,5.6516745833333335,2.635125,4.18782,2.7611966666666667,3.749041666666667,3.16196,2.4455033333333334,2.971072,2.971072,2.54439,2.26168,2.4821766666666667,2.0277166666666666,3.77759,1.4251559999999999,2.561695,3.981595,3.970505,3.978875,5.38825,4.14991,2.4685025,2.218835,3.30617,4.215835,2.805775,4.60262,2.839945,0.9273942857142857,0.9273942857142857,4.40303,3.938283,0.987528,4.80669,0.987528,3.906565,4.29534,5.03755,3.08683,3.30761,6.4261225,4.281139166666667,5.9603,0.8802714285714286,0.8802714285714286,2.0845,4.484215,1.4496650000000002,3.03455,3.73921,1.11822,4.038125,4.02425,5.43,5.43,0.9709216666666666,5.15205,4.87381,4.889425,6.11245,2.1479675,2.1479675,7.15015,0.9568545454545454,7.2259,1.9367325,6.0233875,2.688255,2.4697333333333336,3.46985,2.11412,2.2402266666666666,2.4236400000000002,3.11147,2.3696230952380954,6.437319,1.9377,5.35435,2.98842,2.6013033333333335,1.61949,2.07213,3.343875,3.55739,3.60747,2.796835,2.340125,2.12792,2.463235,1.091494,3.32223,2.12103,3.234255,2.1121475,2.1121475,3.00908,2.1161499999999998,3.856315,3.888895,5.23105,7.621790000000001,4.26261,3.52314,6.2536155,1.9378466666666665,3.2639755555555556,2.1391533333333332,1.5369428571428572,1.6804725,4.036535,1.6377633333333332,0.52833,0.9668133333333334,4.55872,4.626275,2.807905,0.9599833333333332,2.79586,2.4413233333333335,4.908875,1.824116,1.95297,1.1205555555555557,4.52445,2.455425,4.221965,0.669416,4.101095416666666,4.855995,3.68022,4.473785,3.5537,3.869595,2.6858166666666663,5.4679,3.66168,2.20703,2.804373333333333,6.059495,6.44602,0.93237,4.093795,4.183865,4.933505,3.4084,3.8064666666666667,2.8118,3.09159,3.9391,6.15015,2.8286700000000002,2.6765559999999997,3.45855,3.2687,2.31269,2.55995,8.516733333333333,4.75071,2.1019,4.713585,4.78829,1.8698260000000002,3.936745,1.389625,1.769557142857143,4.63675,3.73982,5.63825,3.0614600000000003,4.39618,5.06385,6.70415,4.40772,5.1146,3.87855,4.967455,3.943795,4.384025,1.100623153846154,1.100623153846154,7.75414,0.8838475,1.9052083928571428,0.8838475,0.76618,0.36078,2.6713883928571427,2.496945,0.5492371428571429,1.9052083928571428,2.1101,3.28815,2.12215125,3.47928,4.222885,7.419079999999999,2.121705,2.20047,2.072675,4.92722,5.88945,1.91788,1.7637525,1.38794,3.1516925000000002,4.261055,2.67318,4.02367,6.6084700000000005,0.40882944444444447,3.82218,0.68033,2.6903666666666664,2.555675,3.75592,1.2762683333333333,4.494905,4.54579,4.24919,2.81695,4.342115,5.130599999999999,1.61598,3.026395,0.5308330769230769,2.419525,2.41576,1.15986,3.0300499999999997,2.51419,2.5389500000000003,3.88098,8.37867,3.032451212121212,3.68775,3.410105,8.02239,5.440141666666666,3.1906933333333334,4.092805,3.653195,5.31585,4.75408,5.48955,3.855115,5.14955,5.5765,2.7048233333333336,1.5967975,1.9898066666666667,2.2220866666666668,3.97019,2.4680166666666667,0.23283621621621622,0.23283621621621622,0.23283621621621622,30.59127828571429,0.23283621621621622,2.9844612162162165,0.23283621621621622,0.23283621621621622,0.23283621621621622,3.4401928828828834,4.388825,0.23283621621621622,0.23283621621621622,0.23283621621621622,0.23283621621621622,0.23283621621621622,3.549,5.20136,3.05226,0.3233846153846154,0.3233846153846154,4.2649946666666665,4.558073333333334,4.138646666666667,3.1716575555555555,4.0241533333333335,7.971679999999999,11.250782220279719,6.494622,8.048373333333332,7.107347142857143,2.566263333333333,6.12214619047619,4.479416666666667,4.390796057692308,0.3233846153846154,7.7811710000000005,6.550272095238095,7.042481666666667,3.039,8.365920642857143,15.163242738095239,17.857075476190477,56.61477414593413,117.12753415670115,1.3875466666666665,3.3877333333333333,3.347675,4.108142012870013,0.3233846153846154,1.7349623076923075,8.708320833333334,14.257789976190477,19.66396,49.04587432999165,13.365574476190476,3.02935,0.27885862068965517,0.27885862068965517,4.6716033333333336,2.79838,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,0.27885862068965517,7.4187,0.27885862068965517,0.27885862068965517,0.27885862068965517,2.790315,1.8670433333333334,3.549105,3.736655,4.315003333333333,5.2551,2.36578,4.592935,4.44085,3.18723,1.5129266666666668,3.704305,1.0083433333333334,2.2135425,2.27548,5.272273333333333,5.982446666666666,2.89582,5.646196888888889,0.4475777777777778,0.578326,2.4172733333333336,2.7407766666666666,3.14929,4.319305,3.2161399999999998,8.022727499999998,3.687895,3.03575,3.44306,4.003005,3.35025,3.356275,5.95435,2.694155,0.4601392307692308,0.8648545454545455,4.199195,1.776515,3.763045,3.79084,4.65125,3.42495,2.61605,2.66021,0.6057426666666667,0.762532,4.299255,2.664606666666667,4.75604,3.74796,4.262818333333334,2.8258,3.45348,6.5173,6.1587,3.324505,0.8235927272727271,3.8425,4.97893,2.227755,0.9825825,1.8367633333333335,3.7993,6.25735,1.84469,3.57547,3.64074,5.3844,2.3721,2.3930966666666666,2.261655,4.495045,2.432215,4.303735,0.6812542857142857,3.241483333333333,3.412715,1.828435,6.494973333333333,3.833785,3.941355,4.634985,2.94701,1.938555,0.5626363636363636,4.801015,4.126795,6.35,3.381775,6.49085,5.3154,2.883955,1.9524,1.276882857142857,5.65665,2.069825,2.688725,9.33367,4.560385,5.1715,3.05684,1.1851777777777779,3.041845,1.1524571428571428,3.294905,6.31335,5.10275,5.2139,3.76226,5.14315,4.380925,1.641245,1.6869866666666666,4.902575,2.895683333333333,3.5793666666666666,2.3428775,5.11945,4.25072,1.5209566666666667,3.702033333333333,2.89683,2.74783,3.44654,9.57305,4.814165,1.7592825,4.713195,5.96903,4.724622500000001,4.004155,3.93704,3.85142,4.683695,7.900715,2.4803133333333336,3.24762,5.7472,4.48762,2.9836,3.2232,4.32486,4.39308,3.54768,4.121429333333333,18.713869333333335,2.9299199999999996,2.415643333333333,3.217166666666667,5.821374333333333,1.04853,4.50065,2.2495991666666666,4.90738,1.3618883333333331,4.146845,4.48408,3.922215,0.9603525,4.492915,4.633125,1.7156325,4.748083712121212,4.052725,1.1111685714285715,3.61964,2.13274,2.428055,1.573465,4.298995,3.90621,3.805555,3.698795,3.0591000000000004,4.326695,8.13232,4.675945,4.694115,4.647425,3.272683333333333,3.768765,4.910925,6.402139,0.941986,0.941986,4.72073,4.39398,2.13619,1.3253933333333332,7.3374500000000005,4.110955,3.314875,3.86803,4.64386,4.467545,3.57551,3.90492,6.007328,3.91826,4.661235,5.2909,1.5038857142857143,2.6816,4.3159,4.92728,3.53918,0.1854763888888889,1.8106325,2.020805,2.540366666666667,2.047823333333333,1.0143033333333333,1.5160825,1.4525325,2.45552,0.5949944444444444,1.2122600000000001,1.8887425,3.81737,3.8109,2.399716666666667,2.7609600000000003,2.9959133333333337,2.8687799999999997,0.68808,0.9368825,2.744575,5.16095,4.863595,3.22295,3.95985,4.13722,4.33872,2.09018,4.37641,5.16275,4.648415,6.6596475,3.78151,0.48457999999999996,5.9501,4.8727,3.963705,5.2078,3.306715,1.995272,4.33717,4.30734,2.787855,5.2709158333333335,4.443095,1.4229516666666668,5.2709158333333335,3.97947,6.7379125,3.692235,1.204122222222222,4.099665,4.66968,4.53812,2.5951066666666667,5.3055,1.52477,2.0235825,3.288295,3.449055,0.8061577777777778,4.44755,4.979775,3.61163,4.002285,3.2062266666666663,2.9560866666666663,1.8111979999999999,1.6242775,3.19608,3.51656,3.5207333333333337,2.4484333333333335,2.720825,2.0563103333333332,5.57495,1.6346,0.8352966666666667,5.4275,3.99797,1.4558820000000001,2.5913733333333333,2.514013333333333,3.28524,7.033048333333333,2.4678233333333335,0.846328,2.645415,4.681655,2.2849266666666668,4.06781,5.8957,5.3685,5.02905,4.047125,4.948655,2.17582,2.3034066666666666,1.6600533333333332,2.1861133333333336,1.9165275,2.33536,2.24104,1.5969125,2.764395,3.02874,3.297075,6.4338,5.1451,4.051055,4.75947,4.0133,4.01506,4.92417,0.897365,2.7395066666666668,5.31475,1.192648,0.71344,5.0945,3.620375,2.5741833333333335,3.4723437500000003,5.73254,5.5409,0.975221,1.2043128571428572,0.7079777777777778,4.2086508333333335,2.2681299999999998,2.9168966666666667,1.1790371428571427,3.1278166666666665,2.5441533333333335,5.4391,4.921665,4.537275,5.35675,3.55942,1.2874299999999999,3.74421,1.6887233333333331,3.516305,3.50046,3.333485,2.562796666666667,3.3424666666666667,2.75296,5.2232,3.912465,3.31036,2.435015,8.457514999999999,10.880257499999999,4.35427,1.35134,5.4265,3.73049,5.2251,4.578915,4.296205,3.92599,3.49548,4.262665,3.7961278125000004,4.44038,3.766265,3.434145,4.66462,1.8539100000000002,5.2024,5.9593,4.77309,3.2883,3.325595,7.08999,0.7317575000000001,2.6358266666666665,2.75203,2.4000366666666664,4.691775,2.94867,1.2293,4.433605,3.4790666666666668,3.728345,4.627995,3.881265,7.11615,3.0585566666666666,2.5608766666666667,2.959543333333333,2.9975533333333337,4.128135,2.09737,2.134586666666667,3.0258933333333338,4.003535,3.6058366666666664,1.9603025,1.5290175,3.3854675,2.9787660000000002,0.9729755555555555,2.5424283333333335,2.5424283333333335,1.38872,5.5844,3.188525,3.299545,3.471075,3.195035,3.50207,3.44698,3.27034,3.260625,2.0970400000000002,0.5518973333333334,3.280045,5.9227375,3.147765,3.72943,3.218805,4.0569,4.257665,3.16815,2.82194,4.285,3.72782,3.17945,3.041705,3.61416,2.6662,4.13803,3.95409,8.99688,3.450555,3.68084,3.02942,4.09275,4.190735,3.66953,2.451735,3.665315,2.5995549999999996,2.90581,2.961655,3.2,3.783595,1.70624,1.70624,2.27558,3.264425,3.31553,1.599602,2.44439,3.461445,1.919704,2.8048,1.599602,3.665635,3.118065,3.97958675,2.900145,3.378495,2.337875,3.160775,4.09369,4.57858,3.89424,4.451565,3.958895,4.29096,3.797915,3.133905,3.344505,2.978725,3.94725,2.671863333333333,3.58977,5.4073,4.184595,3.7985,0.31173304347826086,3.53534,0.4503791666666667,4.099335,3.73213,2.91239,3.58347,4.235055,6.011793333333333,3.26138,2.61585,2.4165933333333336,2.81493,0.8169700000000001,5.698083333333333,3.183355,3.533895,3.95159,2.0666,2.52023,3.420615,3.312195,6.79927,4.1879,5.0353,4.771875,4.494715,4.617235,3.73693,1.4818916666666666,1.697032,3.610025,4.47072,5.428415,2.5354466666666666,4.308435,1.952395,3.5732,3.34942,1.9819911904761907,4.18201,4.7409025,3.6762333333333337,3.8803,3.0501833333333335,4.482005,4.94035,3.3419666666666665,4.297365,4.274455,4.83667,4.221445,4.503655,3.742875,3.068995,4.378015,2.587075,3.2183466666666667,3.2183466666666667,3.76527,2.57297,3.883695,2.29326,4.61321,3.1840466666666667,3.477185,1.76551,1.6746533333333333,1.2165383333333333,1.2165383333333333,1.592146,3.4928666666666666,1.7631033333333335,3.4358,3.74148,5.2760175,3.4143666666666665,4.71824,5.73139,2.760665,2.80783,2.9428199999999998,1.6009133333333334,4.17331,4.00197,6.244972499999999,1.6520233333333334,5.80305,5.5594,3.2028133333333333,3.24956,4.28931,7.11117,1.99278,2.504125,3.746565,0.4736885714285714,3.890445,4.152885,4.613855,4.38632,3.37448,1.5129160000000001,1.6215140000000001,4.05174,3.921755,2.408253333333333,3.794355,4.58894,4.835625,1.20395375,3.39607,3.945645,3.767945,5.016,2.6602166666666665,5.12639,3.8011,1.592558,3.63331,1.2675666666666667,2.6909899999999998,7.1225216666666675,3.2931,0.7412299999999999,3.27993,4.278845,4.209075,2.1320875,2.1320875,4.766558333333333,5.65535,2.89627,0.501588888888889,1.9567275,4.459229166666666,4.458615,4.195705,1.821472,3.0880566666666667,3.41146,1.260181842105263,1.260181842105263,1.260181842105263,0.8100085087719298,1.3598035087719298,0.549795,1.260181842105263,0.8100085087719298,0.2923968421052631,0.8421918421052632,0.2923968421052631,0.5176116666666667,0.5176116666666667,0.5176116666666667,0.5176116666666667,1.1386638333333334,1.3125125,2.44223,2.3406949999999997,1.0981033333333332,6.444515,2.69031,5.303231666666667,2.2724966666666666,3.4178,2.929145,3.32358,2.851414166666667,5.25755,2.90528,4.04201,4.161545,5.069,2.22736,3.861505,4.712205,4.158495,3.258,5.25125,3.411755,4.48209,5.22255,4.61502,6.06625,5.387,1.3378,3.88294,3.77336,2.50444,14.409115,4.39698,5.23025,2.76256,7.71582,4.175645,3.99905,5.06355,3.16776,1.084595,2.49424,3.761065,4.20753,4.369835,3.34662,4.180295,2.9741066666666662,4.172195,4.53873,4.272245,6.920528333333333,7.8920650000000006,1.2602200000000001,3.785115,4.117025,3.809275,3.674955,3.386235,7.30519,3.00778,2.954095,2.51532,3.96082,4.009685,4.698415,2.419925,1.8071425,0.889454,4.868145,4.621675,3.7096,4.175415,3.65264,4.53367,3.775445,6.6205,5.7704,4.79413,6.4357,3.90818,3.19856,3.245745,3.435615,1.8773675,5.8935,6.66045,6.67985,6.530308333333333,6.530308333333333,2.37102,1.8773675,1.93991,2.766155,0.73314,1.5199099999999999,0.78677,1.330745,2.40443,0.307604,3.089025,4.166055,1.330745,3.082307,10.86923,6.51853,2.1931198333333333,1.161,1.7832366666666666,4.23985,4.36999,5.894451380952381,2.02122,2.200785,4.052535,3.339635,4.64749,1.6629033333333334,5.1184,3.4525333333333332,3.235815,5.09705,6.882788000000001,4.050235,2.3367325,2.8354733333333333,1.6798033333333333,3.642665,5.247465,1.5333679999999998,5.50955,4.57736,6.2925249999999995,0.5227086666666667,4.880366666666667,3.96391,4.53748,2.55227,2.761745,7.15655,9.555066666666667,5.6566,2.2612666666666668,2.2612666666666668,2.2612666666666668,6.32015,5.05435,5.67695,3.057,2.69285,2.532551052631579,4.535395,4.46356,2.5561154999999998,1.71116,2.5561154999999998,7.014365499999999,4.665553333333333,4.61916619047619,6.695,4.61916619047619,4.61916619047619,3.406572857142857,6.81189,5.8963470000000004,3.2493920000000003,3.2493920000000003,2.572825,5.03115,2.906745,3.545125,5.1387025,5.1387025,5.1387025,7.656145,3.6709825,3.49142,3.67121,3.5478825,0.9876525,7.306513333333333,2.64096,5.8342,3.46978,12.913253333333333,4.7184,5.5682825000000005,6.93791,2.6193033333333333,3.377655,1.1293416666666667,5.5682825000000005,3.468355,1.676675,1.676675,2.82964,5.2674725,1.7796225,4.743186666666667,0.848901,1.3827866666666668,0.848901,1.9070725,2.6285235,5.404420999999999,3.766365,1.3827866666666668,3.06924,4.8239175,0.9329225,3.4392,4.323835,2.23653,4.04619,2.12013,3.327415,3.104525,0.9600479999999999,3.75087,2.048075,2.08478,1.6040999999999999,2.99094,3.77553,2.73389,3.724935,1.3893022222222222,1.3893022222222222,1.3893022222222222,3.66785,2.7462633333333333,2.7462633333333333,2.86049,4.000585,2.23599,1.2905275,1.2905275,3.191045,4.4894300000000005,0.885515,1.4087066666666666,2.82989,1.319855,2.7285616666666663,0.9600479999999999,0.9600479999999999,1.8951108333333333,0.9600479999999999,3.2565808333333335,0.7028216666666666,3.2565808333333335,6.224487916666667,3.54913,2.5408933333333334,1.7695301388888889,0.60239,2.3719201388888886,3.23504,2.3719201388888886,0.9523188888888888,3.31197,4.056265,3.86227,3.664785,2.76047,3.734255,1.9785033333333333,0.9017490277777778,0.41200125,0.9017490277777778,0.4897477777777778,0.9017490277777778,0.9017490277777778,4.58275,4.500035,6.51165,3.43605,4.600815,4.46656,5.65225,3.48062,4.05265,1.2060785714285716,3.3399666666666668,4.563395833333333,3.908955,1.4112566666666666,2.6922433333333333,3.974285,3.862555,4.15213,3.627195,3.31213,3.43102,3.200595,4.37719,2.3284066666666665,6.1315,3.69378,4.171845,4.9973978571428574,1.1555283571428572,2.15908,3.78838,6.01965,4.57979,3.39,3.1522666666666663,4.78814,7.806111666666666,3.8884666666666665,3.08979,3.3488666666666664,6.24105,4.05227,5.5591,5.17675,5.2717,2.988865,5.6366,4.74046,3.456466666666667,7.907375,3.079003333333333,2.2163425,2.1275133333333334,4.89018,6.39425,5.8573,5.65335,4.68403,5.5646,5.9069,0.4715607692307692,7.091044999999999,4.28651,4.57356,3.51341,4.69437,4.15568,3.0816,2.6807,1.3448083333333332,0.6097661538461538,1.732106,2.9782433333333334,3.44058,3.942745,4.08217,3.92923,11.695471666666666,3.836395,3.89199,2.55937,0.6871016666666666,6.018456666666667,3.1277933333333334,1.5609233333333332,4.688716666666666,5.733863333333334,2.60607,8.61892,5.22065,3.3453919999999995,3.3453919999999995,3.3453919999999995,5.4046,9.57054,4.24513,3.332625,3.332625,3.217155,9.88246,1.018735,4.89757,4.60807,4.02008,2.8015833333333333,2.2614233333333336,4.510365,3.87521,5.8755,6.045153333333333,3.89849,2.87294,3.89739,4.0642325,3.3302829999999997,1.2632375,3.3411000000000004,6.17796,3.3044225000000003,5.0019,0.92108125,3.7893000000000003,2.2102566666666665,2.57664,1.8122625,1.8117866666666667,2.105166666666667,6.4614,2.181155,4.22174,5.9138,1.9377,5.0056,3.82874,4.657215,2.9732266666666667,2.231795,2.678585,3.612845,4.099775,4.099775,1.13669,1.6047200000000001,2.67127,4.391364,2.322532727272727,4.777115333333333,1.755602,2.64884,2.2011766666666666,1.654985,1.654985,4.924635,7.320238333333333,2.0598733333333334,2.86375,2.2155475,5.7073,3.19029,0.856312,2.883075,0.856312,2.62235,3.379645,4.965285,5.60415,3.658765,4.650616666666666,5.77755,2.367455,2.1189066666666667,2.4023,2.2570866666666665,6.10475,4.593585,2.486975,3.749515,2.834125,4.3597,1.09975375,1.129108,1.8976466666666667,1.5497183333333335,2.624756666666667,2.8336566666666667,2.29459,2.5940066666666666,2.843725,4.33756,2.696013333333333,2.454823333333333,2.7729033333333333,2.44966,2.81486,2.666513333333333,1.9518766666666665,2.5649133333333336,3.82589,3.877785,3.594395,3.081915,2.9003099999999997,2.14576,2.043345,1.3116083333333333,0.3347155,0.17904304347826086,2.106133333333333,2.4175,0.17904304347826086,4.189457210144927,2.337865,0.17904304347826086,6.006945277777778,2.4479333333333333,6.15208,3.53704,3.5766666666666667,2.2002366666666666,2.8900900000000003,2.2621825,4.41316,3.2311533333333333,3.388833333333333,0.42607736842105265,4.04523,2.554260701754386,2.95482,1.86126,2.631475,3.997815,2.505345,7.93759,4.907445,3.34375,3.71741,6.62669,6.36279,1.6456833333333334,3.9635233333333333,2.06552,1.92898,5.96757,8.55875,1.2203633333333335,2.06721,3.71214,2.548625,2.947485,3.184595,2.62678,3.7468275,2.456605,3.14366,3.37037,3.183965,7.78548,1.2800966666666667,1.985225,2.98454,3.403345,1.7687099999999998,3.54618,1.497905,3.81774,3.42852,6.65516,3.439425,8.996725,3.526205,1.5456239999999999,1.6861533333333334,3.105315,6.78347,1.996035,1.5150266666666665,6.0082,3.55492,4.0351,2.862875,2.0298666666666665,3.199635,10.713305,5.2227,6.70681,3.54623,2.184195,2.17819,2.62046,2.98165,3.11417,1.78955,1.6592766666666667,2.4967333333333332,3.51331,1.7750325,3.383795,2.91974,3.796835,3.81833,3.1087,1.1600466666666667,2.60558,1.0560133333333332,1.269318,1.464775,3.26558,3.645185,3.58134,2.67939,3.745425,4.071,2.88513,1.50188,3.53053,3.4263125,3.1423,1.794595,3.171165,3.476235,1.513125,3.48991,1.81505,3.943265,3.797,4.684345,2.59818,3.943815,1.72765,3.868915,4.57123,1.68494,1.0663628571428572,4.029466666666667,2.74983,4.713385,4.329045,3.122425,4.650745,4.484835,2.2271566666666667,5.20125,5.49843,6.62445,4.40925,5.949971666666666,3.86712,1.5278366666666667,2.55198,4.866255,4.905895,2.70866,7.3318080000000005,1.250937142857143,3.704266666666667,2.077845,1.753858,2.4084499999999998,2.753156666666667,0.3803992857142857,2.7144033333333333,3.3829,3.477675,2.49674,3.3287,2.31536,2.5361833333333332,2.0681,8.68818,4.974275,1.642198,4.904215,2.4521713260869564,0.7293141282051281,2.70665,8.000814,1.821482,4.52148125,6.075441666666666,1.57125,1.5749925,1.42902,4.75347,3.225585,4.372525,4.13075,2.49879,3.615095,0.861516,2.6265893333333334,3.653375,4.17475,5.6804,2.6453,4.980755,3.945135,5.0146,4.949065,6.1396,4.495555,4.41357,4.607,1.623674,1.91019,2.79771,3.38599,1.1891555555555557,4.19415,2.7238100000000003,3.422833333333333,4.22323,3.080883333333333,2.6059733333333335,1.4945066666666669,3.2358266666666666,2.7670338888888892,2.8288533333333334,2.9909133333333333,1.95381,2.0380075,2.350745,4.04505,4.723675,4.00999,4.09484,3.56663,2.2998,3.172855,4.832705,3.7050666666666667,4.56364,4.612415,2.2779,4.465396666666667,1.7040266666666666,4.48162,5.154040833333333,6.2541665476190476,4.61256,4.75281,5.5526,3.094063333333333,4.054696666666667,4.482375,3.342895,3.8002564999999997,3.567415,1.3643825,3.2463,1.698295,2.241955,4.67543,5.6349025,3.8002564999999997,4.21101,3.331525,1.4496650000000002,3.81955,2.03982,2.5959766666666666,2.063085,2.76419,1.457375303030303,1.457375303030303,1.457375303030303,0.46073363636363635,0.6894877777777778,1.9507577777777776,1.0875775,3.64574,1.3336566666666665,3.956535,5.21825,4.941895,3.295635,4.086915,3.18829,4.90272,1.7308975,3.01738,2.741775,3.44052,5.859903,4.227715,5.4756,4.10232,0.98278,2.243815,1.2505433333333333,3.89506,3.988825,4.3971,5.507,4.69149,5.29295,5.14725,4.15189,1.68919,1.21763,5.22794,0.9959077777777777,1.20832,2.44708,8.167785,2.77626,3.77922,2.79363,5.623545,1.691575,1.01165,1.463815,3.259,3.46999,3.965755,3.708275,1.9286825,6.437234999999999,3.2927733333333333,0.94584875,5.1366,3.022683333333333,2.8108833333333334,2.5136233333333333,3.512866666666667,5.678400833333333,2.9103999999999997,3.01694,3.8523333333333336,2.7202466666666667,2.8733400000000002,2.976793333333333,2.91406,1.99025,4.645385,4.888305,4.825595,1.0642,0.730477,3.6805333333333334,2.7080800000000003,1.0679525,2.5694791666666665,4.98165,4.58223,7.51005,4.64788,4.081733333333333,1.7844039999999999,3.53828,3.76441,2.67478,2.878376,3.979275,2.7747733333333335,4.738208,0.7775466666666666,4.30658,1.732848,4.129095,4.436685,1.94879,1.02528,3.0857,0.435225,2.621485,6.6157,5.75335,2.79478,1.484326,3.25771,0.7736488888888888,2.5585166666666668,0.7736488888888888,3.99199,4.761505,1.417735,1.5836625,5.2937916666666665,1.8982066666666666,3.54341,3.53994,3.910035,1.302524,1.6010166666666665,4.112445,5.1281,5.23895,3.297968,2.090885,3.19015,1.6351475,2.812975,1.8295925,1.882445,3.952995,1.4090666666666667,1.4090666666666667,3.17663,4.870643333333334,8.0731325,5.185253333333334,7.161345,2.143495,3.795045,4.06447,1.5901316666666665,3.519405,4.02293,3.114545,5.71785,3.14782,2.73585,2.81556,3.558405,1.1585525,4.027565,4.60755,1.2801616666666666,8.141536666666667,2.684395,3.19019,3.1815666666666664,4.59219,3.8747,3.896270416666667,2.4434366666666665,2.84267,1.9800466666666667,3.6417,2.38386,2.2490825,7.646792666666666,3.331996666666667,3.308873333333333,4.220295,22.28603434065934,0.6833066666666666,2.6874,4.406535,4.62754,8.74544,4.846625,4.387365,4.49258,7.382505,3.589425,1.53333,4.795288333333334,3.668785,1.153,1.153,1.153,2.4486575,1.725055,3.261095,1.59596,3.14462,1.52841,2.625365,2.571005,2.93668,1.59596,3.32884,2.69398,4.291245,4.91506,4.956145,0.7898016666666666,3.273565,2.856985,5.04265,3.628535,2.935915,2.205525,1.693755,1.95773,1.431984,3.89773,1.508195,4.82293,11.168525666666667,2.646943333333333,2.401455,5.0793775,4.4813,4.391266666666667,6.14105,2.1281833333333333,5.440141666666666,4.441375,1.0083866666666668,1.190652857142857,6.627214,3.61494,1.975045,4.368655,1.95289,4.401545,4.502025,4.665255,4.00033,1.323847142857143,3.93403,4.949945,4.71294,6.133628,4.356705,5.4934,4.013645,4.117705,5.1775,3.0830066666666665,4.62837,1.88155,3.377595,3.158215,3.937925,3.913555,6.02525,4.519165,2.61132,3.4874333333333336,9.047665,4.74018,3.0317600000000002,3.457705,2.78944,4.593415,4.461285,5.2189,6.781734999999999,3.546315,2.6349,4.169108333333334,2.375245,4.396515,3.099603333333333,6.380387499999999,1.5248633333333332,4.31307,4.66961,11.62805,0.4855192857142857,4.550605,4.751415,0.6798278571428572,3.61494,4.495745,3.917495,1.0651,4.552895,5.041806666666667,2.81272,10.015503333333333,3.4677000000000002,1.8616533333333332,2.946585,3.297005,6.0153,0.5440958333333333,4.006615,2.2704125,5.0142,0.7018284615384616,4.251575,5.4946,5.88155,3.587195,6.447747499999999,4.316775,3.39707,2.594866666666667,2.8551633333333335,4.3222,4.70644,5.24415,5.19295,5.48675,3.1822933333333334,6.887933333333333,2.812275,3.2334945,2.0621,3.643425,2.462336666666667,1.5603933333333335,3.18376,2.893276666666667,2.91507,3.337566666666667,3.4080333333333335,3.0853066666666664,2.8070033333333337,5.54195,3.2991266666666665,3.817355,4.71531,2.96742,1.140088888888889,3.2456033333333334,3.055593333333333,3.95732,3.4075666666666664,3.2028466666666664,4.774706666666667,2.0371966666666665,1.7142875,3.002805,3.818925,4.55101,1.16172,4.478035,3.17679,4.022766666666667,2.8956766666666667,4.722239,3.97799,3.34577,3.60604,1.637265,3.87532,0.64770625,4.486455,4.818095,16.54470090909091,3.532666666666667,1.3266466666666668,4.70212,0.6645371428571429,2.564725,4.54292,1.80601,1.2274114285714286,3.396115,4.425235,3.1301799999999997,0.6844683333333333,2.60955,7.99096,3.717695,5.5278,4.86814,4.28074,3.1495366666666667,3.660066666666667,3.3610666666666664,7.1187000000000005,3.49483,4.960175,2.0829575,0.47057166666666667,2.165425,3.214485,2.216355,3.07723,4.21834,2.9732266666666667,4.98337,0.6460491666666667,4.53447,3.617895,3.348105,1.1736033333333333,2.6243633333333336,2.06824,4.81251,3.96876,2.161745,1.6414285714285715,3.999725,4.77753,4.59909,6.110125,2.14783,5.06265,4.776635,4.22507,2.29998,3.871485,5.663931666666667,5.00695,2.35874,4.96773,2.67695,2.568985,3.905565,4.15688,1.3859316666666668,4.64399,2.759396666666667,2.6745133333333335,5.009341666666667,5.009341666666667,5.11315,1.7763120000000001,4.771315,0.930515,1.908192,4.825285,2.53609,1.4048100000000001,3.0729633333333335,0.838262,4.335866666666667,4.748805,2.73776,4.70254,3.753635,3.71827,5.47522,3.494915,3.435833333333333,3.0362733333333334,2.4256766666666665,2.820575,2.8779466666666664,4.580215,1.425505934065934,3.1171933333333333,4.61516,5.13325,2.32367625,4.17245,4.590395,4.769758333333334,3.247503333333333,5.1131,4.866425,5.5547,4.89646,3.58608,3.54415,3.80091,4.46201,5.63205,4.357215,4.857995,4.55324,4.66307,0.7682866666666667,4.991785,4.836705,4.26243,7.0383925,3.936545,3.813125,4.04818,4.65861,3.615785,3.722565,2.1104325,4.59969,1.83244,1.3189414285714285,4.227625,2.09706,2.5228033333333335,3.8034766666666666,3.160346666666667,3.073115,1.14033,1.87782,4.01437,3.307985,1.881425,1.881425,3.83254,1.795476,3.2054533333333333,4.91348,3.411785,3.76039,1.5123633333333333,1.953065,3.673795,2.0488,3.7236,4.44172,4.508265,4.09359,7.6274033333333335,2.654,3.66791,4.456275,4.423245,3.177913333333333,4.212565,4.430915,4.054485,2.168945,2.4163366666666666,4.60151,3.868695,3.61891,4.075545,1.6926025,3.285435,4.476895,4.724285,4.311685,3.8773275,3.8773275,3.28964,3.931325,4.63689,4.00875,1.718684,7.85733,3.993505,5.20105,4.44893,4.151905,4.75321,4.8396,3.11701,3.00148,3.032065,5.19675,1.894444,4.893495,5.748437777777777,5.1846,0.769234,4.8200183333333335,1.05476,5.45745,4.15115,5.1801,4.364475,5.43965,3.5765666666666664,3.5765666666666664,0.9200969999999999,2.1638925,5.34235,3.493145,3.83575,4.672425,4.90304,3.498455,4.040685,1.3820783333333333,3.22548,1.6787175,1.23539875,4.476119333333333,0.8262660000000001,2.15002,3.29182,1.2351366666666668,2.150725,2.717033333333333,1.31259,6.40055,1.7994825,2.552773333333333,4.75348,1.914615,2.765476666666667,3.27537,4.70686,3.9453666666666667,2.812656666666667,3.9326333333333334,1.6419380000000001,2.0557350000000003,4.049765,0.6552057142857143,2.7449033333333333,3.03869,3.351233333333333,2.859196666666667,1.2294885714285715,0.8728583333333333,2.5068966666666666,4.379705,1.2164428571428572,2.0234275,1.1955075,5.4521,2.25221,4.735045,4.766415,4.450075,4.76803,5.63405,4.11025,4.336645,1.3922866666666665,4.083333333333333,1.657198,2.6639166666666667,1.1929285714285716,4.63224,2.1443925,6.176411,3.829805,3.697025,1.565996,6.8862325,3.9772,1.4212166666666668,4.0849,3.056855,3.59205,2.938575,2.0152825,2.0152825,3.29628,1.3300133333333333,1.3300133333333333,2.29998,2.61015,2.0702825,1.3209733333333333,3.663233333333333,1.07303375,3.3457666666666666,2.41635,1.98829,1.5252583333333334,2.2631475,2.20228,0.2879505882352941,2.4180025,1.1548749999999999,2.367176666666667,2.2011766666666666,2.4685025,1.0794455555555555,1.091494,3.733366666666667,3.0277166666666666,2.0152825,1.776515,2.31117,2.53803,2.4492966666666667,1.768844,2.8383833333333333,1.1325100000000001,3.2957,2.667643333333333,2.61016,1.5598940000000001,0.916132,2.24909,0.916132,2.24909,0.719355,0.719355,0.5171138888888889,2.333295,2.253766666666667,0.719355,2.2542075,2.3653866666666667,2.380175,1.62209,0.7863655555555555,0.719355,0.719355,1.6793420000000001,1.6793420000000001,2.1536925,1.776515,0.719355,2.2908999999999997,0.4684184615384615,2.653303333333333,2.077173333333333,2.77671,2.5224266666666666,2.5224266666666666,0.3683535,0.3683535,2.29998,1.9633859999999999,2.14486,2.03664,0.3683535,3.6608,2.3685,1.627674,0.596645,1.627674,0.596645,9.6613,2.6132433333333336,3.9905333333333335,2.63363,2.9538966666666666,2.9351299999999996,2.8059133333333333,3.5581,2.523325,1.727915,2.43634,3.8884666666666665,2.3699766666666666,1.6793420000000001,2.3505338095238093,2.3505338095238093,2.8272,2.27668,4.264245,2.3996833333333334,3.2194366666666667,2.6871466666666666,1.6372060000000002,2.5426,2.318315,0.8526427272727273,1.63395,3.296915,1.8275099999999997,3.1216066666666666,2.7342099999999996,2.51235,3.6743666666666663,1.4160083333333333,3.385666666666667,3.319733333333333,4.1535,1.424512,0.27885862068965517,1.365667142857143,1.365667142857143,1.0365922222222224,3.1033166666666667,3.9208,2.80214,2.1494233333333335,2.1494233333333335,2.2540575,1.81505,1.00121,1.7348266666666667,1.7348266666666667,0.719355,2.29998,2.9064533333333333,3.749233333333333,2.41635,2.20682,2.20682,2.20682,1.0993555555555554,1.5369428571428572,1.5369428571428572,2.421405,2.7057633333333335,2.6543421906565654,3.724265,2.58633,2.5123433333333334,3.393455,3.88008,7.2669675,3.672285,4.146465,3.864466666666667,13.0439775,4.673975,3.56031,0.9230175,3.87317,3.20408,2.292415,3.75317,5.23665,7.870288666666667,6.5303,0.474564705882353,4.06434,2.799605,3.865485,2.528125,4.38185,4.10385,3.477875,8.252265,3.50213,3.981,3.942915,3.376113181818182,8.199638307692307,3.3669666666666664,2.692323333333333,3.52956,3.6645,4.823665,4.226365,6.248318,4.403395,1.381874,3.409455,0.89870625,4.91537,6.29575,4.59272,4.12268,5.6602,3.720035,5.1185,4.03037,9.57038,4.07878,4.764369,2.9696433333333334,5.20392,3.091715,1.05638,1.05638,3.45126,4.184145,2.311,2.10598,4.574975,4.836795,3.22554,1.929705,2.709675,3.0145,2.556923333333333,1.1909875,3.447035,4.36622,8.73779,1.720526,3.229665,3.65139,2.875865,2.82157,8.2492,4.10706,3.3502333333333336,2.7963799999999996,3.99165,3.7209,3.26684,2.851366666666667,4.03893,3.802945,4.352715,4.218845,0.398932,1.46734,2.2397966666666664,1.7426075,4.85137,3.698,2.8471666666666664,2.2180125,4.119615,4.01539225,2.30769,2.3434,0.8656119999999999,2.4781875,2.5791933333333334,2.5791933333333334,5.53925,1.8946825,2.7898133333333335,2.3371566666666665,2.2289333333333334,1.7665666666666666,3.02061,4.319035,4.221785,3.78471,5.32745,4.793745,2.799995,2.4835233333333333,1.8192540000000001,4.78649,5.4968,2.03936,3.01965,2.0044275,2.7418633333333333,3.7700416666666667,2.2788333333333335,5.17325,3.78581,3.526775,4.55738,3.0228533333333334,3.658295,4.120615,2.259796666666667,2.4337133333333334,0.41566,3.4120333333333335,2.55924,2.76376,5.9308,4.84019,6.058036666666666,2.00377,1.7296666666666667,3.13657,5.44025,6.332,5.4785,3.015233333333333,2.2752733333333333,3.46464,2.2831533333333334,4.323055,2.04773,2.34225,5.2118,4.6584,5.0879,1.7419925,1.9320225,1.0359159999999998,1.0359159999999998,1.161324,0.8715957142857143,0.807408,1.9047157142857143,4.314835,10.838717500000001,4.50837,4.572005,3.987845,5.665775,2.62382,1.7114,3.5908249999999997,2.9031,4.15727,2.5963600000000002,2.6259966666666665,3.3155900000000003,3.288413333333333,2.507213333333333,3.2742966666666664,3.5414666666666665,3.14654,3.5934666666666666,3.3072466666666664,2.931513333333333,2.75652,3.3567,2.5044333333333335,3.1147633333333338,3.1299200000000003,2.906966666666667,3.503766666666667,2.11328,5.192507523809523,3.3342333333333336,3.9022706666666664,3.2825,2.9480566666666665,3.8724000000000003,2.8566633333333336,2.719003333333333,3.260893333333333,3.2565733333333333,3.6481,3.0496866666666667,2.0065425,2.7706766666666667,2.625863333333333,3.0426,3.0426,3.20612,3.3281899999999998,2.60296,2.9464733333333335,2.9894,4.423533333333333,2.8108166666666663,2.83345,2.7005266666666667,2.962953333333333,4.511583333333333,4.892275,1.6997,3.27844,3.6840333333333333,3.4624379999999997,3.3533666666666666,3.7306666666666666,3.547166666666667,3.1765933333333334,3.319738,1.9248819999999998,2.6309604999999996,3.8183666666666665,3.391033333333333,2.4990799999999997,2.5774066666666666,4.064066666666666,2.916166666666667,3.0745566666666666,2.4186675,1.2453016666666665,3.226623333333333,2.5270033333333335,2.0890033333333333,2.502425,3.3350000000000004,3.1806666666666668,2.0638,5.575931333333333,2.4565366666666666,0.8771169999999999,4.25767,1.9556,1.6090200000000001,4.68418,3.88563,3.360455,2.335315,1.4864875,3.50821,2.569,3.44654,0.421228,2.117515,0.421228,2.00466,1.4864875,2.842015,3.723685,2.601975,3.229005,5.0205,0.499384,2.7310766666666666,0.9363825,0.42910529411764703,4.13914,3.94261,4.80765,2.42722,5.24545,4.132935,3.82442,2.48306,3.7961666666666667,1.686438,6.3576,2.838725,3.932475,5.21135,2.9931,1.8964866666666669,2.1150866666666666,1.4770450000000002,1.81406,0.924805,0.924805,4.57776,2.4638033333333333,6.289973333333333,2.246055,1.898145,2.244655,2.2018435,2.29917,3.879705,4.456815000000001,2.157645,2.33044,2.2018435,2.29689,3.5164809999999997,1.894765,5.9285049999999995,2.246055,3.3415875,3.34799,3.3542666666666663,5.4221,4.40438,1.9601575,1.953715,2.27703,2.898495,4.8813,5.44215,2.011945,3.863035,1.6009133333333334,1.6495275,5.5651,10.29754,2.04468,2.5128866666666667,2.2661433333333334,4.345285,4.243195,2.0888625,4.867995,4.520755,2.785835,39.41553333333333,2.9891366666666666,3.312056666666667,0.4974333333333333,5.039479166666666,2.6078333333333332,0.9692488888888889,3.983155,3.687715,1.909805,1.68241,2.362483333333333,3.863935,1.3702928571428572,2.7081306666666665,4.11114,4.42588,0.9343489999999999,4.74899,4.69313,4.892685,2.7227366666666666,1.357015,3.77595,4.548455,3.73136,3.290705,3.657295,4.078835,12.035760404040403,2.6187333333333336,3.0857,4.45611,2.569125,4.411255,3.234175,2.853945,3.05527,6.2994125,4.746625,5.66275,4.99131,2.537025,3.90659,3.916005,3.604965,4.84583,4.55345,0.10431695652173914,2.35709,4.452385,2.79102,1.4473016666666665,1.0155333333333334,1.0155333333333334,1.8985475,2.761755,4.141025,1.390952,2.882236666666667,4.83191,2.557935,4.4730675,0.5940464285714285,4.84003,3.495055,4.86978,4.307115,4.68374,1.34835,1.3041375,4.069766666666667,2.944523333333333,3.0373866666666665,4.219365121212121,3.537645,6.2823150000000005,5.455,4.73256,3.5924,2.0623750000000003,1.55241,5.68415,0.30994200000000005,3.413135,3.80327,4.115305,14.588389999999999,1.9322425,2.92296,0.738735,4.515135,8.47457,3.248825,1.7296166666666668,5.9492,3.4111999999999996,1.0379544444444444,3.83533,3.01858,2.94495,4.84288,3.398889027777778,1.11659625,7.091938333333333,0.73255125,4.70171,3.1764692777777777,1.3861475,2.0997016944444447,3.2820675,3.2820675,3.821705,4.293902083333334,1.493625,2.39943,2.739285,3.60224,2.89973,2.562745,3.22882,3.44285,6.677182666666667,6.44105,4.092975,3.375885,4.49668,3.913575,3.563275,3.430885,3.58926,3.945365,5.04475,2.53634,2.53737,1.5631116666666667,2.327393333333333,2.494105,1.5465375,3.5531333333333333,3.5869666666666666,3.3394999999999997,3.1478933333333337,2.77867,1.5129266666666668,1.51623,0.45827727272727276,3.297413333333333,1.4395714285714285,1.5006175,3.08886,2.5124366666666664,2.7133000000000003,0.91842125,2.3847125,2.632255,2.82794,3.594855,5.4561,3.7951,2.861395,2.2687466666666665,3.51376,4.083665,2.39725,3.498115,1.89337,3.82227,2.793065,3.804815,1.3270066666666667,0.621948,2.18157,3.37,3.2208,3.924705,4.93214,8.95604,3.2440266666666666,2.22902,1.5811466666666665,1.6675419999999999,1.6675419999999999,2.8187333333333338,2.378976666666667,5.4405,4.70882,3.262135,4.447615,4.07429,3.9314,3.1656525,4.514335,7.9003499999999995,2.452985,0.52833,2.90281,1.2780433333333334,1.0425814285714285,1.6554433333333334,0.793542,2.197875,5.11845,5.3461,5.7708,0.99974,7.3611,2.1036,1.5790766666666667,2.7188466666666664,4.3305,3.22448,2.3568725,3.845955,3.2116900000000004,4.137366666666667,2.9632733333333334,2.8070166666666663,3.00464,6.75675,2.52762,4.03102,4.058133333333333,3.7916566666666665,1.5428166666666667,1.231295,4.425005,2.74119,3.11988,5.49875,2.54228,2.16896,2.3707925,3.083645,3.691466666666667,2.37445,4.278511666666667,2.9453833333333335,5.05,2.466316583333333,1.8669025,4.75926,5.2918,4.74244,4.17757,1.4873566666666667,2.4342775,2.0739775,3.450905,1.5646133333333332,0.9261416666666666,2.787681666666667,2.11595,2.1182875,4.113875,0.8961749999999999,6.150665,2.02131,0.7766490909090908,3.9031000000000002,3.912915,0.6341214285714286,3.1719945000000003,3.092291875,0.8728583333333333,4.4045,0.16251333333333334,0.16251333333333334,0.16251333333333334,0.16251333333333334,0.16251333333333334,0.16251333333333334,1.955214,3.75464,1.955214,1.955214,1.9013833333333334,0.16251333333333334,0.16251333333333334,3.1018966666666667,2.470876666666667,3.397425,3.36159,2.286705,3.571905,1.595114285714286,1.69088,3.3302829999999997,1.4168100000000001,3.0828699999999998,2.748188,5.39917,4.50625,3.88092,6.2897,4.64062,4.369255,4.942425,4.3127,7.0235883333333335,3.8648000000000002,3.4752333333333336,2.3368933333333333,4.91735,2.637,2.051765,1.8515,5.05075,4.812665,4.55718,5.11785,5.3299,4.546305,4.703085,0.7107445454545455,0.6685478571428571,0.6685478571428571,4.681455,2.4124033333333332,3.8131,1.0234028571428573,5.51505,1.4537,2.2960333333333334,2.58932,4.230066666666667,4.230066666666667,6.79245,4.450225,1.4866783333333335,11.27454,3.3386333333333336,1.2323,5.2256,4.82679,3.50024,3.06344,2.75118,4.654433333333333,0.73562,3.5065666666666666,3.3269466666666667,3.7843,3.09126,1.5000933333333333,1.4391066666666665,4.569425833333334,3.07769,3.14175,3.3244966666666667,5.2291799999999995,3.46663,0.798354,1.7486333333333333,3.4522999999999997,2.4998233333333335,3.739333333333333,3.4705666666666666,3.1623633333333334,3.7373666666666665,3.197756666666667,2.48028,0.9899333333333334,3.1984999999999997,2.545193333333333,3.46966,3.26934,3.83836,2.6915866666666663,3.4587333333333334,2.84035,1.563772,2.14959,2.737330476190476,3.6408666666666663,1.7144739999999998,3.3201199999999997,1.82725,4.106733333333334,5.213450833333334,4.959848,2.3100375,2.52685,2.8782,2.4339125,1.6022571428571428,2.185515,3.463147857142857,2.53545,3.6595666666666666,2.81698,3.732226,3.066165,1.058721111111111,1.2885,1.8004775,2.2984425,3.4867333333333335,3.5216999999999996,5.12855,7.4839825,2.90338,4.972055,3.88019,15.032988666666666,0.5108900000000001,11.5926125,0.9620822222222222,3.28912,2.44645,2.0689733333333336,2.945775,1.6042079999999999,1.50188,2.6293233333333332,1.1709939999999999,2.8272053333333336,1.9912599999999998,3.0828,2.1315633333333333,2.6749233333333335,1.4906499999999998,0.7764383333333332,3.182423333333333,2.4152366666666665,3.04935,1.0993555555555554,3.6189666666666667,0.7440208333333334,0.3583884615384615,2.423626666666667,4.017955,4.96822,4.17349,0.8097136363636364,4.053305,4.777895,1.1096025,2.77285,5.476070833333333,3.529995,4.268405,3.98176,3.978935,1.975455,3.8944,2.7515733333333334,2.90201,3.565145,2.659775,2.859875,3.81819,3.274465,3.780425,2.01458,3.44014,4.54972,1.2214633333333333,4.529565,2.284595,3.944195,4.873648333333334,2.1298925,2.729033333333333,3.2074266666666666,5.877846666666667,2.50391,3.39757,5.39805,3.9905333333333335,4.521745,2.0021,2.620175,4.517835,3.519833333333333,4.5122,3.3732333333333333,3.4035666666666664,3.2838966666666667,4.1995,3.3471666666666664,2.7423233333333332,3.0020133333333336,0.4424633333333333,2.39078,2.13359,4.789685,4.83597,2.88011,2.5932933333333335,3.25094,8.25817,3.4541500000000003,4.017635,3.09689,4.12575,3.32576,3.7651775,2.5806033333333334,2.2632325,2.7169733333333332,6.2269,4.67211,2.2384033333333333,3.28787,3.080435,2.7052,4.253821333333334,1.7617920000000002,6.419793333333333,3.995745,4.895425,4.49812,6.00895,3.64938,6.8114550000000005,3.966055,3.36087,0.6457085714285714,2.3605125,1.5725975,2.8665233333333333,3.714165,4.046245,3.80912,5.5335,2.83178,4.81302,3.3439333333333336,3.4758,2.9725633333333334,4.60458,4.93678,5.1309,2.492426666666667,5.744298333333333,4.45802,1.5453716666666668,5.3017,3.601695,2.74419,2.23876,2.260753333333333,4.3572386666666665,1.1208685714285713,2.43155,1.9972975,3.889825,4.34818,2.507476666666667,3.4267333333333334,3.0657306666666666,2.324586666666667,3.94698,1.3879860000000002,2.3135,2.3815233333333334,2.9409500000000004,2.515023333333333,2.718476666666667,2.70669,4.110735,2.91991,2.8334499999999996,4.19216,2.31729,3.96212,3.57889,1.6053266666666666,1.6053266666666666,4.487165,2.9685400000000004,1.7654,1.3949475,2.1418875,1.9892975,1.6153819999999999,1.4358733333333333,0.681213,1.5929633333333333,1.49418,3.000913333333333,2.33359,1.8130899999999999,1.9460366666666669,2.382546666666667,1.72524,1.8118033333333334,1.8339266666666667,2.3001225,4.334555,2.869065,2.8584300000000002,2.772475,5.871700000000001,3.099225,4.203205,4.2153599999999996,1.944365,3.961275,2.9916,1.88116,3.505205,1.9468025,2.86453,3.71204,2.078165,4.765285,3.087705,4.149265,3.3430666666666666,0.85568,4.136005,3.89308,3.27332,3.768745,2.73002,4.38156,4.613725,5.2700724999999995,9.259554166666668,3.87955,4.47547,3.422833333333333,3.695425,4.471155,2.41111,2.78418,4.164705,2.1312925,5.822025,1.8184,2.70098,8.0444,3.004846666666667,4.07124,1.20598,4.552405,4.68544,3.2222833333333334,4.51706,4.8557,6.5985,15.886322202380953,0.6291058823529412,1.0794455555555555,3.227983333333333,4.124035,3.69696,2.1759375,3.254215,4.083385,5.01375,2.360815,4.941335,1.7139499999999999,1.7139499999999999,5.4131,0.7560809090909092,1.9386040000000002,2.923805,3.92173,0.37108461538461535,1.90445,4.1891885,1.1574766666666667,3.0813633333333335,2.75156,2.899555,7.97771,2.5527333333333333,3.647733333333333,2.0021666666666667,2.26059,3.6303775,3.69871,3.51713,6.897144166666667,1.8750275,2.9552,4.531175,6.8323825,1.8029666666666666,2.16037,2.5868733333333336,1.46063,2.462215,1.66520375,3.99099,3.991605,1.494345,1.9146589999999999,1.9146589999999999,2.51863,5.47945,3.7597766666666668,3.91214,5.1569,5.30915,3.279755,3.70166,4.11047,3.542395,4.405341666666667,3.334835,4.322365,0.934511,0.369555,5.1968,4.01095,2.532836666666667,8.21276,1.5821166666666666,4.738,4.162615,0.3556958333333333,2.0739366666666665,1.3071266666666668,1.88268,1.6607683333333334,5.514304,3.25816,3.19263,4.5785425,4.23576,4.662095,0.6137284615384615,1.975815,0.603266,5.89447,1.4413360000000002,4.89753,2.23539,3.3912387500000003,3.2497,4.118375,4.190665,5.18825,0.9046290909090909,3.061175,4.064865,1.86736,1.748255,3.645575,3.061855,3.645775,3.84696,5.370295238095238,4.80069,5.46175,2.8839333333333332,0.7713955555555556,3.4725,3.66775,0.6591023076923077,3.9658,4.622725,4.019195,2.646645,2.71881,5.48155,3.269715,3.451585,2.21952,4.03528,1.8916,3.399025,3.82531,0.6581869230769232,4.48479,3.95884,3.244015,3.63978,4.446145,2.66582,3.879715,0.61188,3.02998,3.8257555555555554,4.37074,3.6478,2.2686675,3.4234666666666667,2.2686675,4.883895,3.039545,3.1162466666666666,1.6069416666666667,3.276203333333333,2.08334,4.089555,2.8357200000000002,5.100256666666667,3.213843333333333,2.6467199999999997,2.982136666666667,2.4689305357142857,2.4689305357142857,2.4689305357142857,2.2084766666666664,1.0003900000000001,4.563985,2.38678,1.6777533333333334,3.811866666666667,2.4982,3.221693333333333,3.68972,5.64955,3.777135,2.25726,1.8280319999999999,3.89606,2.02492,2.5302966666666666,2.97923,3.650375,2.144605,3.491155,2.725635,1.800326,4.615395,4.278365,3.175085,3.709435,0.7627266666666667,2.47871,5.02965,7.71068,3.51246,3.054285,2.648335,4.20433,3.781455,1.8252675,2.31753,4.506885,2.1698475,4.59458,3.720245,4.009325,8.686486666666667,4.157885,4.179805,3.5746,5.0834,4.2539,3.37418,3.37418,3.62813,3.812218333333333,4.38679,3.89715,4.163855,4.617045,4.053545,1.1785225,4.32033,4.029935,5.1682,8.166665,4.86577,3.6301726666666667,1.8364266666666669,1.5669616666666668,2.57761875,4.850045,3.829715,4.98359,2.58499,4.267545,4.720545,5.14135,5.1955,3.3258233333333336,3.72787,4.239615,5.19565,5.0016,4.131425,6.378833333333333,4.5713,2.2728333333333333,5.0085,4.031405,4.042385,3.91493,4.65829,0.7706709090909091,4.3179,4.646095,1.276882857142857,1.56676,4.85887,4.98078,8.77826,4.736995,4.893695,6.4416,2.86503,2.6706733333333332,5.24945,1.8817175,1.8817175,2.601765,1.6242433333333333,2.9621283333333333,3.560966666666667,1.953515,4.296574090909091,1.34765,2.14258,5.854665,3.32591,3.59003,2.99643,4.01796,4.1533,3.1138166666666667,1.0826277777777777,4.06514,2.5911566666666666,3.931065,4.59731,3.6108333333333333,5.7551,5.49485,5.2087,5.2437,4.80618,6.5908,4.58032,3.283375,3.47122,2.15925,2.15925,3.92301,3.759275,2.4245,2.7474233333333333,2.2721843939393938,2.987163333333333,2.1748533333333335,2.1748533333333335,4.16625,3.452285,2.13863,3.63692,2.731755,1.916405,1.244525,1.4852999999999998,2.8087,0.49571947368421054,0.8515822222222222,2.69606,3.77268,0.44987090909090904,3.817985,1.8248719999999998,5.55835,3.481285,6.939814999999999,4.24529,5.206806666666667,4.944745,4.405025,4.22677,1.83777,1.883464,4.253125,2.95728,3.718925,1.2736466666666666,3.427705,5.431,2.77577,2.533715,2.606385,4.385475,3.59038,3.349455,4.00235,3.648225,3.468255,4.267655,1.0200371428571429,1.8501,2.42161,3.01224,4.338285,7.87626,0.9183479999999999,1.5836633333333332,1.5836633333333332,1.863998,3.952405,2.76711,2.971565,4.96157,2.8727366666666665,1.20097,1.20097,1.20097,3.042945,3.082307,4.68234,3.169825,4.219925,3.355955,3.704145,2.95008,3.302875,3.68046,4.23068125,2.5610175,1.6153819999999999,3.130955,2.5610175,3.78542,1.4153733333333334,1.8480633333333334,1.9338925,5.410078,2.953845,6.291722999999999,5.410078,3.337878,1.7894633333333334,1.7894633333333334,2.639995,5.39115,1.7894633333333334,2.334315,5.65838,2.252495,2.765705,5.16146,3.641105,4.30893,1.89936,3.3488,4.67087,2.2134833333333335,2.23702,4.35628,1.89936,2.501215,2.06028,6.10936,2.58658,1.174256,2.490785,3.280005,3.283385833333333,1.829795,2.0356025,4.20352,1.971493333333333,1.904005,3.234465,2.215555,3.302675,3.5523,2.2470233333333334,2.609545,2.33539,6.64683,2.362865,3.27133,3.27631,3.27631,8.65488,0.9387099999999999,3.1035,2.549175,3.1183,2.278515,1.2479133333333332,1.2479133333333332,3.3298,2.027285,7.2832550000000005,2.152495,3.472275,3.30485,6.28875,2.546325,2.50449,5.99215,5.99215,2.25455,1.4443325,1.2076525,1.2076525,1.4443325,2.06443,1.4360666666666668,1.1958166666666667,1.5398433333333335,1.9932999999999998,3.659945,1.80539,3.58762,2.883095,2.844225,2.793675,2.78104,2.318465,3.315376666666667,3.315376666666667,5.97348,2.35964,2.88429,2.905765,3.25428,2.383195,2.72922,2.50444,5.8720125,2.0405875,1.522495,1.3034266666666667,2.2324616666666666,5.75618,4.063835,3.4703749999999998,3.23832,1.813695,1.813695,1.813695,5.54876,2.44593,1.1958166666666667,3.30674,3.400625,1.36228,5.33582,3.1390599999999997,6.36479,3.3011,1.755895,3.426625,3.088786666666667,2.445815,3.61593,5.06102,3.2573,1.852665,2.25366,2.921735,3.1495,5.13378,1.947105,3.298475,2.57812,5.92838,4.6223,1.93322,2.343815,5.55544,5.05901,5.01757,5.73294,1.114276,1.114276,2.193352,2.193352,0.781272,5.53975,3.2887,5.30516,4.09246,5.18226,2.149265,4.316343333333333,4.316343333333333,2.18668,3.312275,3.660535,1.21903,4.49069,3.38169,3.100685,2.672605,4.49195,2.59818,1.8448,3.4292,2.852425,3.064525,4.84774,2.53705,1.89517,3.69155,5.97108,5.78854,4.29775,2.76378,3.84289,2.22815,5.12573,2.55806,3.64823,2.002385,6.60003,3.89262,2.47354,3.0564,2.28317,4.93714,2.308125,2.69356,2.977955,7.25155,5.09152,3.333635,2.202765,2.10945,6.70773,3.19267,3.08232,4.75478,2.93676,2.847455,2.67024,3.12995,1.9020000000000001,2.0205,1.8371333333333333,1.73153,1.9400033333333333,1.92425,1.464775,2.0617666666666667,1.72262,1.9020000000000001,3.94006,3.91351,2.04785,1.7012800000000001,1.7012800000000001,3.812286666666666,3.812286666666666,2.929333333333333,2.929333333333333,2.782675,2.199,1.75769,3.58314,2.134985,2.134985,2.3726599999999998,2.3726599999999998,2.828,1.95789,4.49371,2.188525,3.41782,2.0022933333333333,2.0022933333333333,1.717275,3.91258,5.09316,1.4153733333333334,4.50052,2.2470233333333334,2.152645,4.1947,3.176985,1.83887,2.56587,6.09016,2.175405,5.75766,3.259455,3.404665,3.064145,2.634245,6.61019,3.34142,2.411475,2.657077692307692,2.9145,5.35166,3.56554,1.530874,1.530874,4.47192,5.17826,4.72611,5.33574,2.85465,2.753955,2.001425,2.96579,1.68063,2.73474,1.871725,0.85662,0.85662,0.85662,1.8952816666666665,4.8196666666666665,1.8952816666666665,2.10675,3.6390149999999997,1.57773,2.09865,4.73766,3.49183,5.12518,1.7082033333333333,5.16349,1.7082033333333333,1.7082033333333333,1.984575,1.795405,2.402445,5.9073,2.402445,2.48133,4.20944,2.14558,1.951785,2.680235,3.17688,3.5324325,3.0172233333333334,3.86908,1.3450666666666666,3.962555,0.7186845454545454,5.03515,4.314455,2.5051949999999996,2.5051949999999996,0.66808,3.9371666666666667,2.5700499999999997,5.4657,5.0597,4.12341,5.2465,4.000565,4.121875,4.91126,4.379975,4.299365,3.936705,3.879765,4.528775,5.1731,3.45607,3.355725,3.83757,2.7057966666666666,1.25245,4.340395,4.052295,4.440955,1.6260571428571429,3.967845,4.12173,6.394885,1.124735,4.817815,4.24888,2.088615,1.98911,3.26466,3.62888,1.609365,1.530874,3.809405,4.012305,2.69009,4.779615,3.07145,1.18232,3.1819733333333335,1.23187,3.044496666666667,2.0324233333333335,3.2053833333333333,1.891065,2.56685,4.1082,3.314205,4.470535,3.217065,2.189475,4.73824,4.34148,3.07613,5.645,4.134925,2.7343466666666667,6.1757,4.22363,3.1503799999999997,2.6174733333333333,2.41794,2.99121,2.7451033333333332,2.76533,4.792355,4.15742,3.765125,2.4644133333333333,2.6234866666666665,2.43662,2.6432966666666666,2.56333,2.3809333333333336,2.1573066666666665,2.1485,1.2907975,3.0448756666666665,1.1796175,1.94242,1.6425825,2.622175,1.580885,2.05449,4.103575,5.07555,1.9805825,4.08291,4.40435,6.434258333333333,2.17755,1.5273400000000001,6.8498,3.47436,4.139705,3.76679,3.45761,2.037515,3.58426,2.4021975,3.067165,4.503955,0.7192875,4.24243,2.04752,0.7759481818181818,5.36825,4.663105,4.03871,1.8384878571428571,4.94793,4.698655,2.72654,2.57588,2.52486,2.12841,0.62827,3.10895,2.954025,5.07205,2.6175,1.9540925,4.06381,1.1300075,1.9117916666666668,1.9117916666666668,2.75552,1.9117916666666668,4.50086,2.77517,4.712725,4.50533,5.8478,13.183528333333333,3.1822533333333336,5.13665,2.723155,4.75164,3.006345,6.41208,2.9526299999999996,4.64738,4.656305,3.809695,1.2707116666666667,4.709255,2.9171133333333334,2.8637766666666664,1.0432788888888889,2.1313475,3.36508,6.685840000000001,4.080575,2.61015,4.18248,3.29628,4.35668,5.16715,4.44553,2.948925,2.8983633333333336,4.14744,5.5198,2.499845,4.51755,2.137045,2.137045,3.111685,4.652995,1.004275,4.19468,2.536475,4.47784,2.599833333333333,2.3082966666666667,2.6943933333333336,2.2999199999999997,0.6747492857142857,3.45834,2.6625466666666666,5.18205,4.443615,0.23668,5.2544,4.75421,3.724175,6.879935,3.26003,2.867013333333333,2.0516,3.3611,2.98413,1.32295,2.7767633333333333,2.68955,1.3567716666666667,3.1417,3.2526533333333334,2.6337266666666665,3.2726366666666666,1.1884177777777778,4.3752,2.403105,4.863945,4.69321,3.777495,1.63312,2.5489433333333333,1.3119725,1.85567,1.3119725,4.594975,3.5924333333333336,1.630744,2.264965,3.977425,3.86137,3.08396,3.853465,0.3693025,1.3624058333333333,3.90758,4.212645,5.6548,1.85852,2.730933333333333,3.3953666666666664,2.4423733333333333,2.44639,3.17116,4.361885,2.0119025,1.9531433333333332,2.9605766666666664,2.7512000000000003,2.6195,4.770695,1.9957,4.445225,3.740665,5.89625,7.61912,0.8410411111111111,0.906565,3.45678,6.57923,1.8857500000000003,3.55669,1.5891199999999999,1.5891199999999999,3.44267,0.45093222222222223,3.60402,3.891055,2.64524,4.16872,3.28989,2.569305,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,0.237822,1.974255,3.16316,4.414008333333333,3.1225483333333335,4.263482499999999,5.964565833333333,2.91201,2.0223033333333333,0.9569133333333334,3.456705,0.6659875,5.111135833333333,3.0888324999999996,2.289765,0.6659875,3.036525,2.753465,0.8907525,4.0708874999999995,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,0.16285222222222223,4.28498,1.6392225,4.38082,4.794835,1.95417,4.584095,4.01448,5.31555,4.8091550000000005,3.581389642857143,3.24941,4.512055,2.117695,5.2799700000000005,3.99582,0.7519785714285714,1.3058857142857143,1.2388185714285715,3.2988999999999997,3.2988999999999997,2.8517900000000003,3.76259,4.85756,3.97999,4.06589,3.0337266666666665,1.9979333333333333,0.4858357142857143,4.11531,3.106355,2.76102,4.34112,3.32228,3.0633075,4.40381,4.362965,6.47346,4.33012,4.342245,5.4539,4.66699,1.3926200000000002,3.06109,5.276636666666667,34.00657510064935,1.1987666666666665,4.56515,3.63332,4.42235,4.223485,4.03516,5.1535,0.4127247619047619,5.05075,4.26209,1.9104325,1.7769,3.720075,1.996035,2.450575,2.1601,1.7351675,2.835325,2.4492966666666667,2.823805,3.271725,0.62129,3.848575,3.81627,0.3471563157894737,2.672423333333333,2.531515,2.756835,3.88911,1.87465,4.60953,4.02557,3.256085,4.15046,3.0532,4.592665,2.894455,3.799125,2.1595225,5.276636666666667,3.85217,4.194,2.819175,1.62071,4.010535,3.47263,6.9694183333333335,3.42918,4.51162,6.185715,5.179727,2.3170325,4.63552,6.647724999999999,7.35913,2.35005,2.66955,4.780165,5.450773333333333,3.84404,3.291395,5.1939,2.444305,1.6572525,2.340565,60.493722825691684,5.21325,4.179915,2.520725,1.0580500000000002,2.8044,3.055153333333333,3.352266666666667,0.8348477777777777,4.584415,0.7470155555555555,7.685519642857143,2.02492,3.4280666666666666,1.884094,2.738735,2.59956,2.677163333333333,2.439976666666667,2.2994133333333333,3.2994566666666665,1.4994566666666669,5.607700833333333,4.082533333333333,1.5251675,2.7020233333333334,1.38002,1.4881625,7.57571,5.7286,3.29782,4.770585,5.16887,1.5355285714285714,3.5889,3.26519,1.7140425,4.90792,3.546995,4.22109,1.6242775,3.0089875,3.7124,4.00021,5.47135,4.10877,4.241845,1.8569375,3.88632,4.498633333333333,3.3405,1.3703319999999999,3.97816,3.4355666666666664,4.00463,5.1564,4.035075,3.66039,4.434155,4.425245,4.432075,4.59386,4.11329,3.232336666666667,3.59541,5.16545,3.19398,4.156775,3.6194,1.3865824999999998,1.3865824999999998,4.30212,4.978515,5.40455,3.85056,4.715685,3.495566666666667,2.792605,4.656775,5.7128,0.724470909090909,5.2566,6.738507500000001,5.7044,5.7951,1.0445422222222223,3.11731,0.9712616666666666,0.9712616666666666,0.9712616666666666,3.72826,3.5851333333333333,2.5441266666666666,3.4250333333333334,0.915131,4.558415,5.1706,3.02845,1.5065525,1.9527325,3.810045,4.47118,3.783765,3.285932,6.4087,4.865475,2.6470366666666667,4.51019,6.9814,2.401225,4.317405,3.786195,3.20244,5.13055,4.71611,5.13125,5.82145,4.550265,3.44688,1.9119666666666666,1.9119666666666666,0.7115381818181818,8.502588,2.13424,6.203,5.45575,4.535595,4.35506,3.74255,3.0139716666666665,4.480835,7.5834,5.738063333333333,2.1373866666666665,4.572135,1.01261,3.776365,1.9435733333333334,0.9319055555555555,1.1450171428571427,2.6267366666666665,3.00904,2.80353,1.146297142857143,2.7201633333333333,3.0174866666666667,0.9156077777777778,2.9289400000000003,3.3313166666666665,1.698028,1.80585,2.84306,3.3445,2.53649,2.5197433333333334,1.7006599999999998,4.558605,4.30162,3.93867,4.272405,4.829045,3.25073,4.70845,6.17045,5.29785,4.502025,4.037975,11.801621666666668,8.332944999999999,2.7070266666666662,3.61743,1.9981133333333334,3.81108,3.217135,4.575435,1.0031233333333334,3.76821,3.708845,1.36838,3.77205,2.8154633333333337,4.39345,3.80913,3.912085,6.97545,7.632153333333333,3.970375,1.52051,1.52051,1.52051,4.703005,1.1847999999999999,1.3781875,0.46215611111111105,4.5235891666666666,3.0769366666666667,3.41402,0.9402200000000001,1.1414575,3.38836,4.345945,3.7941,16.931355321428573,4.043565,4.55863,6.0864875000000005,2.56086,3.637485,2.99125,0.9627055555555556,1.4475075,4.100245,3.514285,4.288495,3.927155,4.44264,3.97022,2.8150542222222223,3.469765,5.11705,0.575885,4.708725,2.34893,4.392115,5.3113,3.4813666666666667,2.5322999999999998,4.011839999999999,1.65606,4.033585,5.8675,2.7363999999999997,2.65553,3.97602,4.315485,4.141835,4.268695,3.498355,3.984755,4.70736,4.818605,3.598545,4.567095,4.12034,1.0843971428571428,1.805845,6.474149,5.75235,4.47052,5.1595,2.656125,2.8640133333333337,2.83663,5.346453333333334,2.0060225,2.11084,2.8399666666666668,3.30288,3.4065666666666665,4.72504,3.516645,5.199145,1.162565,4.64731,0.9068483333333334,4.204005,3.38,1.6679650000000001,4.016555,0.9927,4.84348,5.5166,5.0242,4.57643,3.8999541666666664,4.00867,2.9333533333333333,5.29205,5.70465,2.8934855,4.009295,2.4241,2.59123,2.04297,2.463005,3.99153,5.10305,1.07303375,4.5570775,1.4481275,3.318875,1.5898433333333333,1.07303375,0.23283621621621622,3.581535,3.085475,2.3219908333333334,1.9275900000000001,2.69355,1.0858975,3.708375,3.452245,4.833725,2.57104,6.5411,7.440059999999999,2.9846466666666664,3.110746666666667,2.7981700000000003,0.8440960000000001,2.38265,6.19435,4.656405,5.2912,4.88433,2.09691,1.4308633333333332,3.8834750000000002,1.6763775,2.306505,1.738465,1.7170325,1.6869825,1.9778525,2.37589,1.9586275,1.995895,1.35134,1.4307625,2.14191,2.74745,2.148845,2.303783333333333,0.5245173333333333,1.7359259999999999,2.9076533333333336,3.0627333333333335,1.7994825,1.9520066666666667,1.597145,3.58308,2.2558366666666667,2.716055,2.92515,4.16299,3.51347,2.4413233333333335,4.19821,1.7353043382352942,4.538423750000001,24.963538,4.5553566666666665,5.22335,4.51342,2.353616666666667,3.878025,5.06475,2.21148,4.80186,3.391766666666667,0.80184375,3.05056,4.890695,4.336725,4.201445,1.4916,2.06181,2.4050533333333335,2.3733,1.296172857142857,3.4854000000000003,5.20895,4.229065,3.44409,4.001645,5.17185,4.919625,6.16025,1.21867375,3.12283,4.12845,4.855635,1.575546,2.8250766666666665,1.80855375,1.80855375,3.584165,4.827395,2.8757366666666666,2.9046366666666668,4.515695,3.999145,6.790285,4.398685,2.22838,1.4475075,2.71345,4.28338,3.3457666666666666,2.3505338095238093,2.3505338095238093,3.4132,4.746885,4.020175,5.38943611111111,2.385025,3.226946,0.6003566666666666,0.6003566666666666,0.6003566666666666,3.398625,3.83071,4.433025,5.7011,2.0380075,5.6994,4.82593,4.932035,3.363285,4.597335,2.36706,1.495242857142857,4.394305,5.22255,0.478595,4.248566666666666,4.85053,1.5438266666666667,5.2363,4.85132,4.362505,4.18507,3.87077,2.80885,4.83147,1.689924,4.380125,1.65956,3.52856,6.1874,1.21385875,3.113595,7.48732,3.487205,4.087366666666667,2.2407725,3.71512,5.37745,3.5402,6.688563333333333,4.552485,2.2827633333333335,3.0361,2.85891,2.7070566666666664,2.9489699999999996,1.8187033333333333,4.830975,0.56342,1.9351224999999999,1.9351224999999999,3.119545,5.34665,2.2885625,3.186655,4.57433,4.63786,4.408,1.3963433333333333,5.004273583333333,4.532535,5.12935,3.516625,4.204174833333333,3.7190895,0.4850853333333333,2.578113142857143,1.1497825,0.4850853333333333,4.316555,0.8472577777777778,3.865555,4.20914,6.749654,2.23088,1.0687975,1.12345,2.38497,3.1295333333333333,1.7351133333333333,2.450736666666667,3.370705,3.535915,2.11387,2.3998233333333334,4.364865,3.2400425,4.050255,6.1715,3.658235,4.810525,6.914798333333334,3.989705,3.65435,4.474505,3.73476,4.311425,4.94352,6.1973275,5.38815,2.62916,0.9564422222222222,3.81934,3.846595,4.139265,4.780095,4.034925,4.455105,2.8823733333333332,2.62175,3.038513333333333,2.5333433333333333,2.4607566666666667,2.694656666666667,3.1450066666666667,2.460053333333333,4.34254,5.0216,4.49296,5.81605,2.946213333333333,3.5969333333333338,2.87155,0.7419357142857143,4.259875,4.185355,4.562175,3.1266533333333335,5.4793166666666675,3.156305,4.452555,3.855555,0.5664492307692307,0.5672064285714286,4.403555,2.7580995,3.114975,4.696685,4.38102,1.714528,5.0717,4.29286,2.730653333333333,2.7643166666666663,2.319075,2.090930833333333,3.334766666666667,3.0685066666666665,3.2337666666666665,3.1906166666666667,3.6624666666666665,2.75675,3.390966666666667,3.972766666666667,4.41722,0.60218,0.60218,0.60218,3.1716575555555555,3.628033333333333,3.7009333333333334,2.9139433333333336,2.4986333333333333,1.1785225,3.0905799999999997,3.2439699999999996,1.8178575,2.8068000000000004,2.3002033333333336,1.0220233333333333,3.0332183333333336,4.76701,10.223025583333333,1.5628928333333334,0.613634,3.877745,0.613634,0.613634,0.613634,0.613634,2.1626275,4.1116304999999995,4.111235,5.1005,5.9462,2.7762933333333333,3.03935,3.1341625,3.538526666666667,4.978275,1.2225416666666666,2.4339833333333334,3.2318700000000002,2.5070833333333336,3.4003666666666668,4.2312,2.2736,4.197455,1.1474444444444445,4.711585,3.08234,3.3378,0.8487125,0.633747,0.633747,0.9697118260869566,1.8184243260869564,0.9697118260869566,0.9697118260869566,0.32843782608695654,0.32843782608695654,0.9697118260869566,1.4092366666666667,2.4859466666666665,3.137065,3.1190466666666663,2.5970366666666664,2.665033333333333,3.2491066666666666,2.7911566666666663,4.53245,3.653145,1.922995,2.31324,1.7508475,0.18966266016200298,0.18966266016200298,0.18966266016200298,0.18966266016200298,2.5584166666666666,2.5706599999999997,0.859828,5.0336,0.8049081818181818,1.7361339999999998,4.847930833333333,5.5182,4.119935,2.802125,4.45934,3.777295,1.9269299999999998,1.2324875,3.6485,4.21445,6.3115,2.299075,1.35265,1.8975,3.7626666666666666,1.4649133333333333,2.78538,3.0645866666666666,2.987436666666667,4.30775,3.89719,3.113825,4.862515,2.71035,4.1226,5.95245,3.979185,4.4026,4.888595,5.126786666666666,4.513379166666667,2.9248388571428574,4.816495,4.23134,5.83605,4.12553,4.229045,2.06981,3.061305,4.327045,5.0272,4.398375,4.093045,3.32801,3.43606,3.807195,2.4389766666666666,5.8887,3.69756,7.6479550000000005,5.66675,5.71515,4.95071,1.4769857142857143,0.924474,0.6180207692307692,1.842336,4.69282,5.3606,3.98176,1.57421,4.505805,3.042825,5.18775,5.12995,6.269947999999999,4.09571,3.09563,1.80404,5.3657325,4.005495,3.07939,1.6515975,0.98240625,4.01115,3.403335,3.3815075,3.66202,2.24124,4.81475,1.67173,3.00342,2.54138,4.274945,5.07635,4.90878,2.1979025,1.55312,5.38105,2.9099466666666665,8.879,2.7885,4.755155,5.8617,4.380025,5.03325,3.426365,5.4592,2.27161,4.111775,4.905829,2.2814475,4.93691,4.452645,7.67235,5.0871,3.4433333333333334,3.962735,3.75252,3.2400425,3.62591,5.4235,5.68355,2.360865,3.028423333333333,3.3058333333333336,2.30336,4.383555,4.45807,5.8096,5.3134,4.76868,4.893205,4.54424,5.16775,0.6292630769230769,3.15451,1.1537514285714285,31.346426718599034,2.512555,4.6036,3.04342,4.687065,1.753932,2.5296566666666664,3.3494716666666666,1.6352966666666666,1.6352966666666666,1.6352966666666666,1.6352966666666666,1.714175,3.53591,0.35729333333333335,7.710641249999999,0.35729333333333335,4.538405,5.1411,2.055275,5.4413,2.669425,4.016947333333333,2.4259066666666667,2.445393333333333,2.7443633333333337,2.1440366666666666,0.6410215384615385,2.6499533333333334,0.7052200000000001,3.0589166666666667,2.2081733333333333,2.465592,1.2642516666666668,2.465592,6.14505,8.169215000000001,4.607795,4.627075,5.73625,6.0025,7.618236666666666,3.277625,1.594405,1.594405,2.41939,4.87449,3.651175,4.493855,5.861951666666666,4.349865,2.635175,3.92633,3.494095,3.445085,2.17491,1.13987,1.90581,4.177665,4.4725,5.281236666666667,1.984905,4.115095,1.346384,3.364075,1.205462,3.2028133333333333,3.04045,2.13292,3.1278,3.4363333333333332,4.90655,0.6500746153846154,3.55172,3.6029,2.372813333333333,2.37787,4.07761875,3.3057133333333333,1.94088,5.1918325,3.54192,5.09665,3.89611,3.69761,5.4031,5.1098,2.382163333333333,5.8476,2.3714709999999997,1.7987666666666666,3.1837433333333336,2.6301533333333333,3.1153133333333334,2.519665,1.7857166666666666,3.175261681818182,4.308185,3.6154174999999995,2.2427263333333336,2.2427263333333336,2.49401,3.981135,4.17985,0.5711372727272728,3.3304,3.188625,8.7683,0.9562,4.21232,3.579655,5.5532,3.73424,3.91455,2.295915,3.65143,2.94591,6.2552,2.721645,1.003645,4.032095,2.6500833333333333,4.021675,2.4277333333333333,3.66263,3.79138,5.4586,5.083589,3.30957,2.02004,5.1907,2.51968,4.526195,4.45487,4.604705,4.72983,4.05185,2.84775,2.2528466666666667,2.7824233333333335,2.49645,2.9627250000000003,3.21659,2.801614047619047,5.029098333333333,2.9433966666666667,2.44962,6.5721041666666675,4.987487916666667,3.9727224999999997,3.1332866666666668,3.8412,4.07021,3.59885,2.582275,4.471755,5.4968,4.534375,1.3798966666666665,4.691945,2.8891066666666667,7.29142,5.1334,8.551784999999999,4.14963,3.3674,2.274435,4.142735,6.026795,8.01047,4.46791,6.04357,4.087175,3.331145,4.080405,1.7617920000000002,4.864515,1.5555833333333335,3.822355,4.764795,3.368866666666667,0.8562416666666667,9.750741666666666,1.2540333333333333,1.86168,2.4963933333333332,1.8807166666666666,3.2948299999999997,1.3588533333333332,3.719325,3.42837,2.4934366666666667,4.446215,1.1998775,3.629985,1.3617683333333332,2.8806935,3.86831,5.38,1.89938,5.776011666666666,2.3184393333333335,8.01958,4.44837,2.991885,4.04966,3.36475,1.3469679166666666,7.57282,3.015815,3.345895,2.447315,4.13522,2.3731975,3.1147275,2.27077,4.017805,1.3780175,5.71705,3.629455,4.291965,0.9075810000000001,1.9239353333333333,3.887705,4.99802,5.34554125,1.50458,1.50458,5.88955,3.94492,5.15595,3.7774,3.46756,8.239435,4.671905,5.58695,4.041905,2.631475,2.2243066021505378,0.368483,0.19618193548387097,0.6548386021505377,1.200985,0.6611619354838709,0.19618193548387097,1.4631154999999998,0.45865666666666666,1.569468,2.1179541021505375,1.902465,2.33885,2.11382,5.1599,6.683809999999999,4.9557,5.3323,4.594345,5.35175,1.26914,4.95266,3.941025,5.8029,5.56025,5.47125,5.8479,5.89775,5.7587,1.2641866666666666,1.4356428571428572,2.0647200000000003,6.486356,1.357856,5.69415,4.50531,6.97225625,5.1464,5.4214,4.241085,4.689005,2.60415,5.81375,5.5129,6.75568,4.75573,5.670170000000001,5.50465,3.89449,4.35745,3.894,1.01694,3.7203999999999997,4.422,1.20826,3.7368666666666663,5.0361,4.2659,5.26355,2.52695,3.17922,2.6346133333333333,4.51391,2.24061,3.68796,1.3591199999999999,3.10803,3.869385,4.382955,5.2229,3.34927625,0.6065841666666667,5.9673,1.06597625,3.5124,2.885683333333333,3.711275,2.0655466666666666,3.94931,3.749566923076923,3.5813,4.665525,15.099691642857143,5.3099066666666666,2.01952,8.47898,1.50073,3.927915,2.8773233333333335,2.8874933333333335,2.225566666666667,0.2036295652173913,2.88668,5.0574,1.843906,2.19828,3.5651333333333333,1.8925075,2.2807833333333334,1.334232857142857,3.272795,4.60743,4.05663,5.09675,0.4736885714285714,2.4023066666666666,4.70398,2.740665,5.49585,4.74111,4.431935,4.81508,0.5188982352941176,2.5510566666666668,2.5510566666666668,5.63325,3.66629,5.04425,2.633875,3.5144333333333333,3.21218,5.24615,3.790665,5.925270555555556,4.978635,4.369725,5.0403,2.472285,1.941266,4.391485,4.086185,3.90991,3.610615,1.817792,4.12895,4.43442,3.820325,4.51704,3.882835,4.09842,0.599164,2.993545,0.6600783333333333,3.171473333333333,3.49274,4.553215,18.678300476190476,4.269595,3.92563,3.088786666666667,1.0413225,2.4183833333333333,2.61016,1.5598940000000001,2.35594,2.503395,5.03945,2.2593633333333334,4.14235,4.891885,2.4689825,4.616835,2.6892366666666665,4.244975,5.49285,5.5125,1.601995,1.758365,3.05943,4.626005,5.0076,1.1551666666666667,4.939865,3.74027,5.72345,4.919135,1.74766,4.676365,3.423335,3.49917,5.179,3.854055,3.10352,0.6404075,8.217536666666668,1.433494,0.1854763888888889,0.1854763888888889,0.1854763888888889,4.93343,4.2306,2.67844,4.33867,2.757425,4.6804,4.303995714285715,4.070963333333333,8.631183333333333,4.01148,7.395386666666667,0.854255,0.81635625,2.526625,4.84586,4.602935,2.2123166666666667,5.3885,5.8732,3.51413,3.314665,4.45201,2.2964233333333333,4.48262,4.7272935,2.367176666666667,2.859246666666667,3.0796500000000004,2.667345,5.80735,3.757415,0.6559864285714285,3.53211,3.36819,4.42316,4.952893333333334,4.85542,3.14641,5.2049,3.6003,13.79535875,4.621995,6.904127083333333,2.7696433333333332,6.591504,4.44477,3.85515,2.20228,2.3151462499999997,10.4565,2.3841733333333335,4.121066666666667,3.8402333333333334,3.7167999999999997,2.976573333333333,2.83607,2.1393225,2.1396225,3.0981233333333336,1.8539100000000002,3.722566666666667,2.4875833333333333,2.5865766666666667,3.1833233333333335,3.442833333333333,2.5626,2.5626,2.6532733333333334,3.281333333333333,3.4469,2.5483733333333336,3.4217666666666666,4.062033333333333,2.71908,2.656683333333333,3.5429666666666666,2.216886666666667,2.296115,3.7414666666666663,2.9198133333333334,1.85868,4.3674333333333335,2.53478,2.5319933333333333,2.92267,2.417925,3.236803333333333,5.806488333333333,2.3932100000000003,3.9966000000000004,1.8962166666666667,10.762138666666665,2.672966666666667,1.95809,2.07846,1.0365922222222224,1.6738019999999998,4.5718966666666665,2.683752,2.683752,1.596216,1.5660366666666665,3.669411666666667,3.9714116666666666,2.280886666666667,1.4309933333333333,1.6419380000000001,4.500661333333333,3.27995,4.117,8.227926666666667,2.892902857142857,2.39646,3.2213406832298137,4.278066666666667,2.296115,3.315716666666667,2.9992300000000003,3.3847,3.4462033333333335,0.84791,3.559041,2.90569,2.8102733333333334,4.446925,2.93223,0.659429090909091,1.9819911904761907,5.18515,2.5136645,3.1930066666666668,1.6115199999999998,1.6115199999999998,2.1211525,3.6776766666666667,1.10483,2.176605,4.69099,4.69099,0.6550952380952381,6.157465999999999,3.41376,4.097315,5.0719,1.2492185714285713,3.5131666666666668,3.4333666666666667,5.313599166666666,6.062559666666667,2.8173166666666667,0.728158,2.41038,2.6404366666666665,3.165536666666667,2.55669,2.50294,2.9354566666666666,2.45237,2.545706666666667,0.8337427272727272,4.310745,4.745945142857142,1.28431,1.7000571428571427,5.30905,2.272815,1.77442,4.167145,1.675956,3.56676,2.4514075,3.6264333333333334,8.732073333333334,4.346940833333334,4.16034,4.991675,2.362955818181818,0.698082,1.831224,7.2309866666666665,1.7459366666666665,4.243455,3.7989,3.545075,21.189815833333334,3.2001066666666667,1.3787666666666667,1.0805725,3.185976666666667,1.4365666666666668,4.07124,5.64785,3.42492,3.251383333333333,1.2067933333333334,1.4504533333333332,2.8348866666666663,0.5661775,3.27974,3.7838666666666665,2.894833333333333,2.614684,2.4588566666666667,2.939216666666667,2.05593,2.9247833333333335,1.590066,3.2091366666666663,1.5122083333333334,3.85316,4.257515,2.1767833333333333,4.995585,3.15369,4.107265,5.18715,4.250935,3.0824599999999998,2.69694,2.4386733333333335,1.1684557142857144,1.1684557142857144,1.1684557142857144,2.34792,3.1488866666666664,2.6130733333333334,2.5135033333333334,2.8994033333333333,1.68003,3.928795,4.378745,3.761665,6.537129999999999,3.48316,2.46546,1.9446625,0.9620233333333333,2.58145,4.003025,2.5565599999999997,2.7147966666666665,2.3128233333333332,2.4125866666666664,2.5945899999999997,2.87377,2.83422,2.9546266666666665,2.3695366666666664,3.153283333333333,2.0124400000000002,2.2501,2.0891625,1.07576,3.1397366666666664,2.80266,2.0173125,3.94916,5.0382,2.6933933333333333,2.398530576923077,5.648581666666667,4.103865,4.53961,5.45315,4.5035,4.28656,5.9925675,1.20293625,4.234125,2.653245,5.22615,5.3731,3.53351,3.78322,2.1734425,7.500265,2.29286,0.8657499999999999,7.63172,5.00883,5.937093095238096,4.64401,2.86118975,1.8439525,4.98209,4.418915,4.730835,4.987695,2.4747,4.121855,4.428975,1.7508475,3.95663,2.740275,1.3188283333333333,4.987525,0.6115176470588235,4.382433333333333,4.01503,4.834695,2.986355,1.710525,3.39668,2.10022,1.375275,2.67641,3.5099666666666667,3.09948,6.926954615384615,1.4850475,6.341328333333333,9.706119999999999,5.56115,3.30272,1.2060785714285716,2.728953333333333,1.2060785714285716,2.8580666666666663,2.1938766666666667,0.2559135294117647,1.1272672794117646,0.2559135294117647,0.2559135294117647,0.2559135294117647,1.1272672794117646,1.1272672794117646,0.2559135294117647,0.87135375,5.0657,3.439315,3.30572,3.3768,3.667625,3.473215,2.6179346666666667,1.640412,6.458613333333334,2.62602,4.131865,2.6796133333333336,1.0128000000000001,1.20877875,4.791265,3.567045,1.05247,1.5472759999999999,0.7356863636363635,3.0272103484848483,4.232225,5.22155,3.5665999999999998,5.5236175,0.5452523076923077,4.283335,2.9312625,2.9347100000000004,2.623206666666667,3.5139666666666667,2.5284166666666668,2.8635266666666666,2.6780266666666663,3.077325,3.84242,5.3656,5.0834,2.0642,4.755455,4.32663,3.66595,3.743475,3.40917,0.35780999999999996,4.78543,3.640245,3.02007,3.0360959999999997,4.43187,3.748625,1.901505,3.08643,3.9209,7.92814,4.96093,5.2564,4.676925,4.00204,0.88305,2.074975,2.17494,1.348265,1.9013833333333334,4.57306,5.8544,4.53732,4.26392,3.285932,2.8027583333333332,0.9524516666666667,4.308515,1.242215,1.1903466666666667,3.256705,3.81959,4.570825,1.19571,2.5404733333333334,8.688816666666668,3.0467633333333333,2.9086366666666668,0.94447,3.90181,11.962546666666666,3.460765,4.20348,3.33419,2.76824,4.683005,4.91687,1.9903279999999999,4.1136,0.5814569230769231,4.88632,2.2542075,1.9869575,1.9869575,3.5506333333333333,4.36122,1.6301583333333334,4.296385,1.5422428571428572,3.9845,2.516471666666667,3.22604,4.84264,3.55533,3.842321666666667,2.588925,2.7493716666666668,2.7493716666666668,11.359835,0.902912,2.781555,3.3024566666666666,2.13058,2.1879075,0.7942271428571429,1.4192975,1.252402857142857,2.01688,4.59602,2.529915,4.54035,2.0061033333333333,3.777705,4.169785,1.645665,2.0747225,1.0746983333333333,5.713911499999999,2.034055,2.17466,1.686438,1.5333679999999998,1.0805725,2.2976741666666665,3.626,2.34679,3.1061533333333333,2.4551933333333333,2.6956966666666666,1.6671766666666665,3.098523333333333,2.4581433333333336,1.51865,1.8956766666666667,3.1965033333333337,3.4982666666666664,2.6236966666666666,1.1244566666666667,2.5152633333333334,1.9546966666666667,2.286216666666667,0.31819,0.40808,2.3501,2.208626666666667,3.00356,3.1913366666666665,2.76272,4.78805,5.6867,4.51742,4.80789,4.543825,4.042155,2.6953266666666664,3.73772,0.7009709090909091,0.061634999999999995,6.6637,0.061634999999999995,3.200545,2.997465,5.6867,3.559405,6.2029,4.67843,2.168083333333333,2.6691266666666666,1.0927533333333332,6.05705,6.0919,3.2036033333333336,5.415,2.09816,3.810175,2.1087178260869566,2.82415,3.2854533333333333,4.181095,4.763516666666666,3.232935,2.1817366666666667,2.1817366666666667,4.11116,7.57007,3.87902,2.11944,2.4775199999999997,4.040065,2.810635,5.06195,3.606945,1.0890288888888888,4.33485,2.5281333333333333,2.99016,4.28086,1.0443,2.3394666666666666,3.953945,3.812135,4.59425,2.951625,3.357505,4.193415,4.024255,4.82282,4.754325,4.19066,3.2543647222222223,3.78151,3.1311166666666668,2.934863333333333,2.57403,3.411766666666667,4.57239,3.1252366666666664,4.796555000000001,4.88916,3.4164,5.0541,4.61682,3.851835,1.469006,1.42651,4.00293,3.209163333333333,1.6154566666666668,2.8330266666666666,3.32646,3.0684466666666665,3.790117777777778,2.9495400000000003,2.1742575000000004,12.883954416666667,2.2992333333333335,1.7490200000000002,4.64785,0.95889,3.2634933333333334,3.52174,4.75849,2.95505,1.1486111111111112,2.2744166666666668,2.57104,1.5108380000000001,5.2933,0.99567,0.99567,4.02979,1.9710566666666667,2.058733333333333,1.8129975,3.3941,4.736845,1.93237,2.971275,3.4261950000000003,3.078806666666667,2.7998933333333333,2.30424,6.308,5.8037,3.121335,0.6917776923076923,4.069915,3.37442,0.8848136363636364,5.08455,2.9285333333333337,7.8075583333333345,4.622675,4.62568,3.634805,1.4507025,3.11624,4.95259,5.02305,4.23768,4.423825,4.41707,3.04248,3.657033333333333,3.657033333333333,4.05424,2.7095175,4.697635,1.86802,5.596222916666667,5.244456666666666,1.5438266666666667,4.70617,1.0242900000000001,5.28815,4.154785,5.077,4.625325,3.83435,2.657475,2.675575,4.10258,4.38533,4.74106,4.477465,1.9988725,1.344954,4.34926,2.0778733333333332,5.2371,2.993745,3.53159,7.763069999999999,3.98094,4.53499,5.29285,4.098775,4.16383,8.300105,3.753025,3.108535,9.490525,3.717535,0.62133,2.109650854700855,4.399455,0.6252186666666667,4.583905,4.22022,4.981335,4.76066,3.38351,3.862935,4.605255,4.34958,2.59625,0.7032257142857142,4.78775,4.557025,3.97677,4.431285,2.4160166666666667,4.351475,3.386395,0.664384,3.30161,3.78578,2.4911575,2.972246666666667,3.72772,2.1657391666666665,5.2487,5.1429,4.066262500000001,0.8717125,3.2579533333333335,5.59758,5.59758,8.59363,1.9723140000000001,0.88017875,0.88017875,24.761204,2.750825,8.075331666666667,0.3556958333333333,1.3071266666666668,2.8898333333333333,0.976456,3.7781,3.950955,2.096755,2.096755,4.129475,4.696845,3.44341,2.6437483333333334,2.6437483333333334,3.667855,4.07268,4.572055,2.994756666666667,2.0053366666666665,2.4633045833333336,4.7469790000000005,2.096245,3.64439,2.5652433333333335,3.054635,3.054635,3.3110733333333333,0.8583166666666666,2.5657866666666664,1.6755433333333334,3.17933,2.99475,2.91084,2.42909,4.536945,2.30761,3.0017899999999997,5.532661,1.296672,2.22395,3.133215,2.471086666666667,3.877785,5.805710428571428,1.42784,3.7118,2.50315,5.24203,6.67668,1.6943675,4.774076666666666,4.832883333333333,2.9568054285714287,4.664433333333333,1.09264,1.575546,2.848925,3.617712857142857,1.3646533333333333,2.1971725,1.6977525,1.6708279999999998,2.35246,3.513422,5.0199745,1.0083866666666668,1.4501857142857144,2.906966666666667,13.581325,4.926073333333333,2.6954000000000002,1.0690285714285714,2.6211052380952387,0.9539885714285715,3.2825,4.328041666666667,5.0622,3.5655666666666668,5.6148,1.324735,3.8724000000000003,3.978475,2.8566633333333336,3.73072,2.57972,1.0117166666666666,2.65197,2.6561866666666667,6.118180000000001,3.1068247142857146,2.6633299999999998,0.729363,4.738,3.7742,1.020722,5.834569999999999,2.07287,2.026003333333333,5.77545,1.2893,2.92191,1.0152181818181818,2.90779,4.2724,2.984973333333333,3.1043800000000004,2.262913333333333,2.57818,4.50372,4.903915,4.864085,1.6525025,4.56367,3.46091,4.294183333333333,3.4624379999999997,2.5820266666666667,4.647447333333333,0.9911139999999999,2.9728561904761905,5.2218,2.591375,4.131454166666667,1.361575,3.1765933333333334,1.996686,1.996686,7.455326666666667,3.266306666666667,5.8704350000000005,3.5341966666666664,1.8689133333333334,2.7427238095238096,4.66687,5.523366666666666,8.528220000000001,4.862904,2.6559817500000005,1.3619700000000001,2.0183308333333336,4.229006666666667,3.87564,1.511824,2.0953525,2.9259837499999994,1.086255,3.1806666666666668,19.105338333333336,3.520566666666667,2.872063333333333,2.9646633333333337,3.27073,2.3284466666666668,1.6807733333333335,2.8767766666666668,3.5743333333333336,2.6590133333333332,2.560243333333333,5.575931333333333,2.4565366666666666,4.6065248571428565,2.7419988571428573,2.481044857142857,1.6579966666666666,3.9869022222222217,2.29297,4.104185,4.97199,3.81316,3.0081033333333336,3.2082533333333334,2.4066899999999998,3.4584333333333332,3.0610700000000004,3.9879,3.3960000000000004,0.8073318181818181,5.1916,2.425635,3.169636666666667,2.8457294444444443,1.960995,2.123112916666667,2.123112916666667,3.56493125,2.158489583333333,4.720045,4.64841,3.632415,4.57682,4.72822,4.90925,4.90925,3.977575,3.2629133333333336,4.75345,2.745155,1.632882,3.550333333333333,4.2208,3.71674,2.512975,3.582025,5.5215525,3.8491666666666666,6.103904178571429,3.086485,0.889308,0.889308,3.393325,4.565,3.872875,3.319738,2.442956666666667,1.8857666666666668,1.5622133333333332,2.8978966666666666,6.049726,1.3533033333333335,3.983855,3.6827,3.978615,4.984825,5.25605,4.623011979166667,3.2093666666666665,2.3979975,4.847245,3.027705,2.147055,1.1425,4.39077,2.802375,6.221608333333333,3.419233333333333,2.72163,3.30532,3.96005,3.58146,4.760375,3.086195,4.69721,4.41613,4.374295,3.755605,3.559435,3.65891,3.805595,2.6752300000000004,4.28644,3.28828,5.07705,0.7075233333333333,2.2826275,1.65629,1.8840325,1.887545,2.6521033333333333,2.7715,1.8491666666666668,4.80392,5.3754,1.8190099999999998,4.34561,4.52242,2.456545,5.74446,4.250840833333333,5.0751,5.2469,7.2713383333333335,2.08146,2.961926666666667,1.8647433333333332,2.49929,1.74188,1.77115,4.135805,3.77645,5.47995,0.9850177777777778,3.19628,4.2905,2.2403425,5.43535,3.705475,2.631265,3.7523666666666666,3.376275,2.0647825,1.9995285,2.649025,3.02935,3.347675,2.0388125,3.5764714285714287,3.5764714285714287,3.55595,3.417875,20.085113214285713,1.1065066666666665,5.274609166666666,1.9589625,1.9417499999999999,3.740295,4.31625,1.9605475,3.805465,4.67583,1.474965,1.474965,1.1732,1.8073933333333334,2.3544633333333334,3.219583333333333,4.13295,3.9344,3.6898,0.49942263157894734,3.4578592982456144,2.0392266666666665,2.6807,4.7990125,3.33724,4.0319,3.7263,4.796965,4.421445,2.0595075,3.313725,5.450773333333333,2.150035,3.952505,5.19825,2.165775,4.45121,5.78515,1.3299728571428573,1.862656,3.6183333333333336,0.8584085714285715,2.88143,3.29592,4.94086,4.693385,2.7670338888888892,8.100859999999999,2.9186099999999997,2.8794466666666665,0.42910529411764703,4.423635,5.260049047619048,3.0510980952380953,5.20155,3.82975,2.459655111111111,1.663976,5.596939000000001,4.7011,4.054155,2.423115,2.0313,4.013675,3.9654000000000003,2.9235,1.835645,4.391136666666666,6.2767800000000005,2.740295,3.84827,3.5963,4.023225,1.591314285714286,1.591314285714286,3.22066,2.89573,4.20067,5.0374,6.5836,3.353815,2.6748,2.1937725,1.4156566666666668,1.3390771428571429,4.687475,5.8930625,5.11235,5.654,4.664705,6.7727025,3.468335,2.9197,3.805118666666667,2.187323333333333,3.05820075,1.526916,4.045335,2.3699766666666666,4.29732,5.0146,4.17041,2.7543933333333332,2.9099466666666665,1.595114285714286,2.5579,4.1126,1.9756125,0.56122875,3.0419866666666664,2.7264,2.460053333333333,2.37092,2.0340275,1.592146,0.7039518181818182,0.7039518181818182,3.4525333333333332,1.825435,2.0348425,3.44063,5.7513,4.482435,5.08735,4.233245,4.311925,2.17416,1.2535666666666667,2.949345,3.390925,0.9395625,3.6067975,3.075015,2.89046,2.14496,4.082205,2.59831,2.08775,1.2122600000000001,3.416345,6.23415,3.74183,1.6839819642857141,4.588185,3.687725,2.65752,3.481425,2.83359,1.7852133333333333,1.016675,3.820325,2.460405,2.2696866666666664,1.66019,2.3937733333333333,2.24236,2.4649233333333336,2.82531,1.2596800000000001,1.8722833333333335,1.0435,6.6280975,4.71954,5.2084,4.553925,4.65801,2.94515,1.7962576923076923,4.36032,4.63161,2.5571,4.748935,2.103605,4.565655,1.1456222222222223,4.089975,3.85659,1.8726025,8.02114,3.66533,1.88234,1.744095,1.8125975,2.831725,3.15354,1.2313145454545456,3.0845466666666668,5.70775,3.9174,4.385765,5.91455,5.6739,5.33505,0.91352375,4.19276,4.50813,4.289035,4.976765,3.88209,4.88817,5.2252,2.921755,1.4473016666666665,1.4473016666666665,5.16555,5.735481666666667,2.5562,2.9773666666666667,4.05565,4.447615,1.6060459999999999,4.33212,5.39215,3.84954,4.00975,2.92006,2.708016666666667,5.11115,2.46891075,10.86267754963174,1.9974433333333332,0.82406875,2.5293666666666668,1.6876075,2.424455,2.174915,1.793746,3.143333333333333,5.19855,5.1593,2.8358566666666665,1.6844666666666666,6.142604047619048,1.3801414285714286,2.939693333333333,0.514,4.077693333333333,5.75795,3.6798,4.92166,11.708685,5.3031,3.03819,2.9389566666666664,4.82256,2.9611199999999998,4.92048,1.01167,1.14854,0.7130181818181819,5.81015,4.146655,1.6964759999999999,4.737740666666666,4.82026,6.53285,4.915635,4.671575,4.39541,6.2702,3.951475,5.4125,4.36619,1.230452,4.385175,5.7547,3.227325,4.144425,5.1653,3.274995,1.2286575,4.90606,4.008865,1.23657375,3.6104000000000003,2.98462,2.4339,2.762896666666667,2.4463133333333333,2.9786300000000003,0.7159090909090909,2.8972166666666666,2.821563333333333,2.6341266666666665,2.2093866666666666,3.3126233333333333,1.746555,1.42157,2.3362025,2.1316775,2.2035,3.5058333333333334,2.9027766666666666,0.621238,2.5272966666666665,3.43995,4.854135,2.1518533333333334,3.68482,5.1369,4.9963,3.35572,3.80419,1.2388185714285715,4.19735,2.5221116666666665,4.204288333333333,2.8032425,4.54824,5.0566,5.091,3.73488,4.1222666666666665,0.931618,0.931618,2.263673653846154,1.6624775,4.08977,2.6484435,2.6484435,4.77317,6.37935,3.09525,1.1548749999999999,1.5472571428571429,5.9174,3.60202,3.4799,3.350135,2.812955,3.22919,3.4799,7.0000575000000005,3.222675,3.07135625,2.87953,2.0387,3.11309,6.55685,3.01809,2.66653,2.691765,6.21045,6.0286,6.6289,6.6289,5.5965,4.629995,0.6885092307692309,4.675765,4.88404,2.954,2.98649,10.354966666666666,3.1827633333333334,3.95783,3.748715,2.9252599999999997,6.0724,2.29181,3.271485,3.0446666666666666,3.2672000000000003,2.55759,1.410684,1.410684,3.699155,3.47495,4.850115,1.770242,1.653086,47.787639431818185,2.73608,0.8281981818181818,3.3421333333333334,1.7152525,3.29747,2.8269033333333335,3.0233633333333336,3.038605,2.7171133333333333,1.7782600000000002,0.94555875,4.42417,3.31442,3.586305,4.320015,5.2425,5.14975,5.2798,5.35145,5.2717,5.22705,5.5409,6.4330425,5.1598,5.38535,2.11469,3.591635,6.87295,5.2676,3.564275,3.947995,3.38447,2.403655,3.962135,4.517425,3.0970033333333333,3.7680000000000002,1.64114,3.730895,1.3879860000000002,3.31286,3.94734,3.68342,6.80598,4.09887,2.2280625,4.40633,4.14693,3.97644,0.89487375,2.736975,2.938455,4.3165547619047615,1.196855,4.85207,1.2983475,5.88645,0.7278155555555555,3.7016506666666666,10.26467,4.29593,3.71958,3.49152,1.7913333333333332,4.563255,5.47845,3.1302733333333332,4.287575,9.500993611111111,3.5803333333333334,2.1997133333333334,2.859306666666667,3.1271766666666667,2.96669,2.6293246666666668,2.055963333333333,2.9401966666666666,3.32897,2.71651,2.9001099999999997,3.39324,2.3243533333333333,1.6575766666666667,4.240443333333333,2.9979133333333334,2.68546,5.215324,2.8769233333333335,1.14524625,2.00984,2.90001,5.334846428571428,2.847075,1.9507577777777776,1.9507577777777776,1.615725,1.5144125,2.16538,1.888026,6.03615,4.2155675,2.500575,3.08488,3.7255000000000003,1.99958,0.5676083333333334,2.1136933333333334,1.94553,0.5901946153846154,3.882675,2.63195,2.6172,3.701615,3.9680091666666666,3.0556,1.5941733333333332,1.210585,2.15933,3.576415,3.786435,4.467105,2.8729633333333333,4.244345,3.85808,1.1561727272727274,9.145205,2.68138,3.31366,1.312825,2.782806666666667,2.3365125,2.3365125,2.3365125,4.24069,5.69225,1.58577,4.863605,1.443366,5.59446,1.424466,4.24428,4.219345,4.30952,4.204715,4.43719,1.90936,8.303867499999999,3.82683,5.06665,3.442345,3.8879099999999998,3.0302466666666668,2.965286666666667,3.933555,2.508716666666667,4.543007857142857,4.396111666666667,1.66248,3.981715,1.66248,3.360055,4.4958325,4.990525,4.4958325,1.7701166666666666,6.0523,4.809635,4.253525,2.70665,2.937856666666667,4.40146,3.26042,4.43266,0.5265792857142857,2.9534866666666666,3.2122233333333337,5.2925375,5.04815,2.4965075,4.781075,6.775195,3.77432,3.4022,2.766405,2.1645600000000003,3.788825,3.97087,4.77627,2.61141,3.950195,0.9122629999999999,5.1095,3.3873,4.309705,2.6059366666666666,3.1297099999999998,2.38532,2.989243333333333,2.824726666666667,2.85604,3.34614,2.3685,2.3685,4.511583333333333,2.824845,4.56143,11.6013875,0.9631500000000001,4.21323,2.4056933333333332,2.2672233333333334,2.88668,1.3781875,6.821998666666667,3.7545,3.893875,3.723403333333333,1.9913733333333334,3.8593666666666664,4.210460138888889,1.9663766666666669,0.44518611111111117,1.61748,1.5087225,4.913,2.884075,3.30074,3.954888333333334,3.528366666666667,2.3657612500000003,4.87258,4.520595,4.388765,4.28588,2.19584,3.957325,2.53803,6.018456666666667,3.16746,4.415155,4.29335,4.590715,4.571025,1.98945,3.887895,3.5957,2.87076,3.991615,2.78197,3.143045,3.98546,3.16467,2.719003333333333,4.730085,1.9076166666666667,3.934565,2.717145,4.472675,3.224385,3.90503,4.86124,2.53412,4.126645,3.738395,4.102395,2.5876533333333334,2.132425,3.066185,2.35198,0.8818216666666667,4.448205,2.0195,3.48305,2.773765,4.097265,3.55768,2.84506,3.257285,3.619445,4.7836273333333335,4.26697,3.317255,1.4349333333333334,3.62028,2.548005,1.0026044444444446,4.81459,9.415939999999999,3.374545,3.65837,4.85897,5.0119,3.882475,2.04405,4.051525,3.97996,3.27727,3.302685,3.35416,0.656025,1.2404842857142857,6.148874999999999,1.60821,2.756235,4.934674,2.52695,2.356535,2.693695,8.33288,3.168385,4.06717,3.830415,0.7870222222222222,3.521605,2.59626,3.88693,4.220205,6.024828333333334,0.615783,3.38169,8.87561,3.2423,1.0379544444444444,5.307349583333334,4.68518,5.505,4.20737,4.791835,3.084185,2.7342099999999996,7.13701,0.895412,3.54995,4.15024,3.307145,4.019245,2.192235,4.45228,1.5966366666666667,4.42091,4.063185,3.93205,1.5851075,4.804265,4.728515,2.2797775,2.088065,2.571675,1.020722,4.15165,3.42492,1.50582,9.685265000000001,6.01015,4.40632,4.17473,3.60352,4.314315,1.4504,4.500595,3.967555,5.26045,3.818935,2.4772366666666668,6.618453568376068,0.7821925,0.7821925,2.61783,0.9458942857142858,4.244685,2.6529000000000003,1.0295425,1.8175966666666667,0.416755,6.5318275,0.98278,2.82074,4.60209,4.088055,2.770875,4.21757,5.7421,5.614845,2.8806,3.175815,2.53115,5.08485,5.07495,4.62443,3.7368,4.07831,6.63965,4.023655,4.476123333333333,4.969622,3.83669,4.463705,2.384015,4.463705,7.175034,40.65832579978355,3.65749,3.56511,3.11551,4.90599,4.48181,3.482675,3.58979,3.93993,4.05694,3.97323,1.630915,5.02685,2.68196,4.61945,4.85743,5.20175,2.4191166666666666,4.369805,3.972875,3.97409,1.4418380000000002,0.6585738461538462,1.51807,3.777566666666667,2.6413266666666666,1.2758375,3.28699,2.4797066666666665,2.9029966666666667,3.4133999999999998,3.0026233333333336,1.473934,2.2908033333333333,3.920733333333333,1.8554843951093953,2.77487,3.2356920000000002,3.1027666666666662,2.6566566666666667,3.3177333333333334,1.1685222222222222,3.90282,4.041245,1.1941,1.1941,1.1941,1.1941,2.9272127272727273,2.06018,2.64082,3.13387,4.23699,4.73666,4.47622,4.46623,5.625,4.711065,2.306935,6.0439,3.74506,2.619945,3.9934,3.44318,4.441975,4.193095,0.8038384615384615,1.3474871428571429,1.5562666666666667,4.954565,4.6947,3.773345,4.217455,6.191216666666667,2.289073333333333,4.82283,1.5962766666666666,4.119905,5.17635,1.5719866666666666,5.70935,0.6718783333333334,4.846295,1.312614,1.2598125,3.75431,4.61864,4.927765,5.026,5.74135,3.80738,1.4710800000000002,3.225975,1.4853525,3.87711,3.28928,2.459655111111111,1.82677,2.88502,1.184045,3.30698,4.9426,2.9709266666666667,5.65845,122.02868573124098,0.47429111111111116,4.653775,2.4355333333333333,4.89733,4.30917,2.68839,1.5577125,0.3771561904761905,2.84039,3.799275,5.50095,3.1684,3.543215,4.68339,4.30944,5.3419,8.422366666666667,0.7027488888888889,3.20783,0.9907475,11.74713,3.0695,3.653885,0.9629488888888889,2.20309,2.68486,2.1345575,3.167073333333333,3.1445133333333337,2.340883333333333,4.428725,3.2565000000000004,2.28965,2.2747433333333333,4.95622,3.948845,3.000605,3.63877,3.848785,3.475565,2.3939933333333334,3.952125,3.17095,3.05569,0.9842033333333333,2.6164833333333335,4.428725,4.44568,5.1179,4.05502,4.69013,1.867515,10.93467,5.38655,2.813925,3.669285,5.68125,0.5698506666666667,0.5698506666666667,4.5084275,4.5084275,3.733865,3.7773,1.8037672727272727,0.5640625,2.977715,4.369295,4.50066,3.415715,3.98697,5.6105975,4.83039,2.0707175,4.340625,1.898285,2.7697,4.880675833333333,1.748615,2.37809,0.5444957142857143,2.0901837142857143,2.0901837142857143,1.90212,3.96406,4.05425,4.75583,6.641396,2.74731,3.159765,1.963565,2.077415,3.9313333333333333,3.610825,4.473293333333333,2.22551,4.473293333333333,4.763435,3.717335,6.0269,3.972765,2.39721,2.077173333333333,2.77671,1.4462425,1.4653375,1.5213825,1.7437275,1.5797475,1.7215,3.6214,4.58908,2.52716,6.87725,2.7184666666666666,4.1499,2.938275,4.238015,3.1517433333333336,2.9889200000000002,5.7682199999999995,3.3092733333333335,4.464219333333333,3.18259,1.423515,2.5310566666666667,2.68789,2.429683333333333,5.65655,4.2967475,4.780405,12.29359223785425,0.660975,1.9329917499999998,2.29467,1.516714,1.30302,2.634025,2.4482825,2.37209,2.46811,0.7367069230769231,1.9219225,0.4882010526315789,4.65177,1.881565,3.74079,4.445355,2.24909,5.334335,3.955535,7.6438,3.637055,2.91581,2.99356,4.55378,4.501065,2.6697000952380954,4.73067,2.09924,2.09924,5.04955,3.736325,4.3655,4.099555,3.303876666666667,3.992205,4.999115,4.724075,4.318695,4.171095,4.59733,4.599075,2.51217,4.955625,1.1600466666666667,4.781225,4.551005,2.498526666666667,2.1468000000000003,4.79335,1.3624333333333334,4.88296,1.9247775,6.04881115942029,4.052075,3.863305,1.6016133333333336,3.2707141666666666,3.2707141666666666,13.155470000000001,3.96172,4.162845,1.10719125,4.683401,2.32851,1.44159,2.3336575,1.825845,2.0661075,1.9386040000000002,3.47607,6.39875,1.805955,4.894165,4.657190833333333,5.4114,2.2974675,2.64551,3.907295,4.68161,5.2836,4.070985,7.133913333333334,3.05149,2.7224866666666667,0.4028361111111111,4.012215,4.089835,3.328273333333333,6.090958333333333,2.546456666666667,3.2021833333333336,1.2800483333333335,1.5040783333333334,0.56122875,1.61748,2.89955,1.5715583333333332,1.4865633333333335,0.64770625,1.2790380000000001,4.558585,2.4442725,0.5807615384615384,1.6671666666666667,1.7241375,1.79689,1.2391133333333333,1.9673975,1.5040783333333334,2.2814475,1.2790380000000001,1.2790380000000001,0.5807615384615384,1.5489714285714287,2.46482,1.3646533333333333,2.6816,0.5807615384615384,2.655425,2.46482,1.2293,1.2293,1.2293,1.91551,1.0941525,0.5807615384615384,1.091494,1.224,1.0365922222222224,1.831278,2.564725,0.8562416666666667,2.1312925,1.6231142857142857,0.5807615384615384,1.747674,1.5040783333333334,1.8714333333333333,1.8919666666666668,0.886385,1.8714333333333333,1.0794455555555555,2.2797775,2.3707925,2.4021975,1.224,2.11328,1.184045,1.184045,1.0111272727272729,1.0111272727272729,1.0111272727272729,1.2800483333333335,1.5040783333333334,1.6231142857142857,1.6671666666666667,0.9692528571428571,1.8919666666666668,1.662934,1.85868,1.820884,1.2800483333333335,2.6954000000000002,12.314029999999999,0.64770625,2.61374,1.8515,2.609175,0.9539885714285715,0.9539885714285715,0.5807615384615384,1.4852999999999998,1.592146,1.6231142857142857,1.817702,1.8919666666666668,1.1551666666666667,1.1551666666666667,1.7361339999999998,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,3.227983333333333,1.0794455555555555,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.1854763888888889,0.3876695454545454,53.93979596825397,1.4851225,1.529305,1.6231142857142857,1.8515,0.9692528571428571,0.6291058823529412,0.729363,0.729363,0.729363,0.729363,4.3838333333333335,16.131839166666666,3.4683666666666664,0.6550054545454546,1.5772819999999999,1.5772819999999999,1.5772819999999999,0.6550054545454546,2.89955,0.5807615384615384,1.747674,1.4865633333333335,2.5997399999999997,1.0794455555555555,2.4965075,1.0794455555555555,1.407834,1.407834,2.0972833333333334,2.0972833333333334,0.5807615384615384,2.1185400000000003,2.1185400000000003,0.9568545454545454,0.1854763888888889,2.89955,1.6486716666666668,2.50315,0.6550054545454546,0.6550054545454546,0.6550054545454546,0.6550054545454546,0.6550054545454546,1.8515,0.3876695454545454,1.0794455555555555,2.47119,2.47119,2.675575,2.885683333333333,0.6550952380952381,0.6550952380952381,3.573933333333333,4.0788,1.2492185714285713,3.321486666666667,1.01554,2.604625,1.9723140000000001,1.0443,3.1318533333333334,1.948655,3.2579533333333335,5.3899,2.402755,1.222688888888889,4.215125,4.486785,2.67868,1.846854,2.3773134615384612,4.78274,1.5512513888888888,2.8242133333333332,3.03626,3.2604133333333336,2.499815,6.419793333333333,4.128415,0.1854763888888889,3.0598766666666664,4.859325,4.311675,4.39839,4.467165,4.47695,2.659613333333333,1.9469999999999998,3.885125,4.641505,4.506755,4.58258,4.89732,3.21742,0.6853508333333332,6.890335,1.37185,3.045104,4.702325,2.72917,2.72917,0.8066518181818182,1.82677,3.20105,3.132715,4.76644,4.09573,4.623305,5.1054,1.0754728571428571,4.77351,5.0833,7.099725972222222,2.303193333333333,4.270795,4.77179,3.851305,4.78734,3.961485,4.18163,5.4329,4.900525,4.6351016666666665,3.65539,4.3661650000000005,7.335929,1.762425,1.9880684615384614,2.8359233333333336,1.7405766666666667,2.77136,1.9188733333333332,5.2493,2.842833333333333,5.2207,1.8022719999999999,4.801505,4.0038,3.057115,4.37988,3.874365,2.5024166666666665,2.8066033333333333,2.781826666666667,2.685313333333333,2.42918,1.7018000000000002,2.7326433333333333,2.892113333333333,1.8751719999999998,1.8751719999999998,4.06247,2.9614966666666667,1.9980033333333334,3.10913,2.1559333333333335,2.215196666666667,3.057123333333333,2.7250433333333333,3.2011966666666667,4.854625,4.47719,4.35316,3.5320026666666666,3.5320026666666666,3.79895,3.1208500000000003,4.25087,4.569115,3.93582,3.438895,3.331655,7.58309,1.92204,1.989885,3.407635,3.204295,1.50348,1.50348,3.525585,1.865455,3.922094,3.823605,3.280125,2.255096,2.2403313333333337,0.5183274999999999,3.025765,3.923095,1.9994075,2.4635,4.17326,1.1552366666666667,4.732135,1.27965,0.39278214285714286,0.5382378571428572,21.716222503968254,0.5382378571428572,0.39278214285714286,0.6836935714285715,9.643306666666668,2.4386033333333335,3.530065,4.131995,3.3992050000000003,2.78088,4.245870714285714,2.29207,2.431945,3.33544,2.994945,4.26597,4.381125,3.65914,2.25083,3.239965,3.55894,4.10054,3.13992,1.1257169999999999,1.1257169999999999,1.1257169999999999,1.1257169999999999,3.45829,2.944325,3.178405,1.8723766666666668,1.19693,2.452255,3.73649,3.210575,2.78675,3.17864,2.65216,2.516471666666667,3.992935,4.09156,1.1250116666666667,2.875636666666667,1.07964,2.84187,2.22808,3.7568333333333332,5.2654,2.5396533333333333,4.088925,3.78967,0.8184765873015872,0.23854214285714284,0.23854214285714284,0.5799344444444444,0.23854214285714284,0.23854214285714284,0.23854214285714284,0.5799344444444444,4.36977,7.526109999999999,3.58174,0.51818125,3.76244,7.505375,3.25206,3.1383766666666664,1.1574766666666667,4.18671,5.3517,4.41915,5.11575,1.648514,4.93629,2.1562433333333333,2.296170666666667,3.517155,5.22805,0.7896414285714286,0.7896414285714286,3.4417,3.02681,1.888405,3.72583,2.60806,6.0784,3.33139,6.0982,5.65235,5.65575,2.74208,1.699835,4.52844,3.441495,2.38725,3.61067,3.030035,1.858275,1.16475,4.049195,3.49021,4.952893333333334,6.493858333333333,1.55241,4.005215,1.1106166666666668,2.67432,3.783325,3.94632,0.399995,3.401485,3.9783,0.849966,2.7898933333333336,8.002876666666667,4.133635,2.178315,5.674883,4.4631,3.717335,1.3530383333333331,5.53783,2.94019,3.116376666666667,3.5045,2.0507666666666666,2.0507666666666666,6.40175,6.40175,3.6607642857142855,3.6607642857142855,10.1921,3.6607642857142855,3.6607642857142855,4.32606873015873,6.69065,3.979435,3.493545,2.6379033333333335,4.55902,4.31451,3.18265,3.161906666666667,4.53027,3.2313166666666664,2.770566666666667,3.156336666666667,2.29786,2.68303,5.01535,7.47635,6.8357525,4.70125,3.764185,4.03597,6.321774,5.23395,4.027045,4.177425,3.48401,2.1865,2.214795,2.08716,6.04725,5.77015,4.646285000000001,4.418255,2.44106,2.51777,7.0905233333333335,1.91551,2.5690166666666667,3.4187333333333334,3.4187333333333334,3.22434,5.0793,0.7536041666666667,3.5581,3.61879,2.7445166666666663,10.3474,4.11526,2.7822933333333335,2.3590666666666666,5.76665,6.36495,3.01965,6.0233,2.64006,4.656755,2.957653714285714,4.28511,5.0684,4.785555,0.9302316666666667,3.5015666666666667,1.3047625,2.59261,4.862383977941176,7.544936666666667,3.2434433333333335,2.903113333333333,6.746328333333333,1.821482,4.61,5.55545,3.5881,3.75343,2.189713333333333,4.892775,2.3136200000000002,0.4549869230769231,5.1135,2.92429,3.385666666666667,4.74931,4.72498,4.89708,6.2211475,4.570725,5.585,7.1659025000000005,54.099957,4.519765,3.997105,4.759215,6.07355,4.32841,4.718085,3.50744,4.82357,1.950595,4.07698,4.03551,4.61486,2.58096,5.33545,4.399165,1.6730820000000002,5.60645,6.59985,7.047275000000001,5.7393,3.369905,5.00695,3.289425,3.28006,3.642625,4.326635,3.810855,7.03789,2.789575,1.09649,2.4226475,0.56733,0.56733,3.117885,0.56733,2.5885869285714285,2.5885869285714285,3.246138928571429,4.6837955,5.147659428571428,2.4226475,4.496148333333333,2.5978633333333336,1.3744533333333333,5.42065,2.177725,8.072054666666666,6.248756666666667,12.020387075757576,3.778,2.8180933333333336,0.23221090909090908,1.7763969999999998,2.4754033333333334,0.9402825,1.540805,2.5790266666666666,1.914675,2.7233,0.597799,28.059022083333332,1.91618,0.8237,2.5701300000000002,2.5701300000000002,0.398435,1.826035,3.110005,1.3350825,2.0617675,1.649435,4.282915,2.88095,1.9882666666666668,2.4188966666666665,1.138405,1.898865,1.4293116666666668,5.52905525,4.10754,6.960891666666667,2.35474,3.4579,0.9808666666666667,2.47605,5.03575,6.216335,3.5155999999999996,2.240866666666667,5.9110925000000005,2.3076925,2.4357133333333336,4.199195,1.0390466666666667,3.671466666666667,2.344863333333333,5.47015,4.885625,6.21775,3.33925,4.115482500000001,4.115482500000001,4.995335,1.65198,5.6193,2.672636666666667,1.5906875,4.303295,4.419665,6.639889166666666,4.864915,3.0596599999999996,3.2153333333333336,2.730315,1.1025914285714287,5.0862,0.96598875,5.6724466666666675,4.72538,8.1296,4.719075,4.55953,4.14188,8.567366666666667,4.97143,5.2793,1.15008,0.74575,4.36795,4.644355,2.18118,3.278845,3.33349,4.494885,2.134085,4.70415,2.4463433333333335,4.97469,5.28715,5.13125,4.418085,4.58995,3.052495,6.809659999999999,3.47149,5.27575,3.47637,4.03927,5.880518928571428,0.6191478571428571,3.8569333333333335,1.7086566666666665,0.548278888888889,4.68079,2.25834,1.06148125,1.85181,6.04568,4.36659,2.33383,2.5902366666666667,2.6363600000000003,5.38285,3.430595,1.6234449999999998,4.225155,2.988426666666667,3.3821,4.65747,5.15855,2.900103333333333,3.7444,3.6771666666666665,2.0498000000000003,7.47279,5.24115,4.39533,4.99338,2.2460825,3.983165,4.642005,2.957965,4.17042,10.712235,3.873355,4.492098333333333,5.11615,5.03175,2.504125,4.123485,3.988835,5.1803,3.2167266666666667,3.87597,1.4599375,2.83521,3.342865,3.62814,4.849615,1.880566,4.046665,2.9319966666666666,5.11165,2.9106366666666665,1.8345,3.9954,4.18082,1.06428125,3.659535,2.6939466666666667,4.524456666666667,1.5548920000000002,1.49143,1.10742,3.902595,5.41665,5.7040049999999995,3.7002349999999997,3.39449,2.43927,1.954655,1.95627,1.5668066666666667,5.8537,2.92136,1.9002625,0.9398538461538462,19.97260762179487,3.103955,2.763306666666667,4.060555,4.20390641025641,1.32398,2.826220833333333,2.9774329545454545,1.337072,1.9019933333333334,3.777725,5.08115,3.6544766666666666,3.37425,5.239,4.83532,7.0027825,4.654388333333333,4.69115,3.78008,2.6767866666666666,3.930735,3.84447,3.548766666666667,4.12184,1.976965,4.64802,8.41156,3.35886,2.71617,3.58571,0.566435,3.1216066666666666,2.0220866666666666,2.2746275,4.370165,3.291375,4.744145,3.53378,2.9634,2.2180125,1.65608,0.738846,1.42365,1.2870566666666667,4.10478,3.597695,4.21775,4.775605,7.407,2.3007133333333334,1.4272399999999998,2.4471666666666665,7.542838333333334,3.198175,2.9552,3.033625,4.47509,3.6972675,3.525425,1.625076,4.459965,5.1456,4.29365,4.007105,3.4167,4.182535,4.462785,3.7909,4.75408,3.9888,2.221655,2.9701400000000002,3.134645,5.5647,2.597005,4.259853,2.888235,2.93241,2.4043366666666666,2.3226733333333334,2.1126666666666667,2.713267,2.713267,1.9917633333333333,2.6753033333333334,2.407853333333333,2.335506666666667,1.9835500000000001,4.24447,2.3429433333333334,2.964933333333333,2.8354733333333333,1.73866,4.32738,2.653165,3.45758,2.3660633333333334,5.3201,5.3838,4.788191666666666,2.48772,2.323815,2.81972,2.63694,2.175905,2.93069,1.9751075,2.4615775,2.643175,6.936963833333333,4.3182025,3.691385,0.551871875,4.15013,4.19665,4.20474,3.12666,3.904015,3.799963333333334,6.1976,4.242675,3.238915,2.8453292857142856,2.1086866666666664,2.54216,1.6865860000000001,1.678474,1.574708,1.926888,1.824315,1.1508333333333334,4.225632857142857,0.5807615384615384,0.5450166666666667,2.10772,1.5252583333333334,1.464142,1.5206866666666665,2.5201274242424243,1.4696033333333334,1.6847660000000002,0.6027675,169.66634487693108,0.49545,1.9136600000000001,1.058824,1.2541275,2.1747375,1.51936,2.00382,2.509133333333333,1.823665,7.00035,3.35156,3.480958095238096,1.7710466666666667,3.025275,1.2804933333333333,1.2804933333333333,5.809465,0.5171138888888889,2.25485,3.16642,3.17158,0.7726545454545455,0.5978882352941176,1.1651236410256411,1.056181818181818,2.568475,3.77663,2.0300625,2.1757175,2.14507,4.527248944444445,1.0009533333333334,4.219445,3.40826,3.535625,7.21293,1.9537766666666665,2.839845,2.766765,4.12552,2.21792,3.116825,3.14009,3.37574,4.8572,3.071705,6.06192,2.07099,2.55419,3.069655,1.76787,2.47844,3.21319,2.884555,1.57282,1.68358,2.299355,3.971795,5.458766666666667,2.839195,2.826925,1.277545,4.300035,3.3981,4.0086,2.98195,24.83607048382174,2.532338666666667,2.890613333333333,3.1085499999999997,3.4557333333333333,2.9479933333333332,6.04472,3.0607666666666664,2.313,3.497533333333333,3.21634,2.15817,3.2590466666666664,3.23179,2.907106666666667,1.7327166666666667,1.5596717500000001,0.5950230000000001,2.2998933333333333,2.0529825,0.2768075,2.44739,2.644125,0.2768075,0.2768075,2.0797741666666667,0.2768075,0.2768075,0.2768075,0.2768075,2.8931966666666664,2.3936933333333332,0.5753161538461539,3.1464510714285714,1.60493,2.02386,5.42315,4.41722,6.1989775,2.2093375,4.835695,2.216125,2.4856233333333333,1.294427142857143,5.47146,2.764086666666667,6.037495,0.9387249999999999,1.3936,4.972215,4.895095,35.37583498651349,1.605412,1.3722766666666668,2.387896666666667,2.2760625,1.0111272727272729,2.3879,2.404666666666667,2.71752,2.5217199999999997,2.4497466666666665,1.6619733333333333,2.754243333333333,2.3899133333333333,2.186386666666667,2.6911,2.384863333333333,4.266245,3.169226666666667,1.1540685714285714,3.68274,4.15132,19.037361444444446,2.82333,2.5027500000000003,2.7369800000000004,0.785082,3.3323,1.5687064444444445,3.3323,2.3826,2.19186,3.0694666666666666,1.498835,1.9616375,4.445165,4.053425,5.0434,4.351575,1.5887600000000002,5.20925,1.6326525,4.75607,4.13909780952381,4.589475,0.7764836363636364,2.1516025,2.0572825,2.921016,3.36485,1.01709375,4.184215,1.9546379999999999,2.1341433333333333,1.0420260000000001,1.0420260000000001,2.4478966666666664,2.9187966666666667,4.832735,29.55156875,6.454115,1.9615766666666667,3.77248,0.37343466666666664,6.5295274999999995,4.939605,2.8458,3.318055,5.255497500000001,3.477965,1.2231175,4.46257,1.2723900000000001,3.271915,4.753085,4.76623,2.071535,3.114105,4.15629,3.161135,3.3210334999999995,4.0624,1.312,2.5776149999999998,3.89919,4.61296,2.8671366666666667,3.004913333333333,3.4151000000000002,3.334215,4.038715,4.305485,4.1535,1.6996,6.05482,2.65188,1.816084,4.24772,5.78134,4.058295,3.32624,0.70621625,2.94334,3.61946,2.117385,4.721704666666667,2.798405,3.998035,2.9572333333333334,3.2413566666666664,2.58363,3.1509866666666664,3.1309766666666667,3.0711933333333334,4.589635,5.13435,4.01532,1.72676,4.231445,4.199275,1.89489,1.89755,1.7427275,4.2004938888888885,4.67784,5.18492875,4.10283,3.558,3.72118,3.3991333333333333,1.3105900000000001,3.15905,2.99761,3.47747,4.532185,4.580595,4.377575,2.776935,1.857645,1.601745,1.54554,3.586345,2.390575,2.151985,3.31077,4.5432,1.5983,5.37265,1.41695,1.8407225,3.30615,3.18033,2.91466,3.675445,3.07208,1.646925,0.9833683684210526,2.615695,3.569436666666667,4.49687,8.613418333333334,2.2896733333333334,2.9825700000000004,1.6265133333333335,2.7878133333333337,2.9668433333333333,1.055285,2.9954666666666667,2.55932,2.956053333333333,4.031066666666667,2.999686666666667,6.886636666666667,3.207356666666667,0.7735581818181818,1.7757233333333333,3.25935,3.40558,3.43544,3.5809333333333337,2.682793,2.95417,5.83245,1.991809714285714,3.92727,2.7985211111111106,3.434365,1.9105299999999998,5.18685,5.6205,4.52939,4.43097,3.865995,1.3729333333333333,4.700035,3.243513333333333,2.46836,4.728295,2.7613466666666664,3.1828133333333333,0.4451528571428572,0.4451528571428572,4.0112016666666666,4.776175,6.4615,3.249415,4.308645,3.63759,3.261345,4.857065,4.400945,1.03819875,3.770495,2.697763333333333,4.274524166666667,3.1890199999999997,3.1831408333333338,1.79108,3.261828214285714,2.68064,2.7786000000000004,2.637566666666667,2.863963333333333,1.8815533333333334,23.734983608860343,4.95147,4.15867,3.959175,3.25314,4.178705,3.43653,4.493585,4.702595,3.99638,3.537845,4.0706,2.61772,2.5978233333333334,3.11279,3.2695483333333333,2.7691933333333334,4.35948,3.601155,4.5785425,4.93996,4.281465,1.312048,1.718766,1.718766,4.2952,4.059315,2.601836666666667,2.2587266666666665,2.9602766666666667,3.66145,3.300915,7.553395,3.11326,3.2537766666666665,2.9556883333333333,4.98242,1.5691066666666666,5.9646975,2.467353333333333,2.566996666666667,1.7522725,4.30291,2.85901,6.21685,3.400015,2.61443,4.372375,3.95094,1.448755,2.6488066666666668,1.6588366666666667,7.8285695,4.493185,6.707438333333332,2.37077,4.14929,3.747645,3.87157,5.34465,3.5433333333333334,3.5433333333333334,2.16423,4.57327,5.3245,2.75883,6.3031685714285715,1.7543475,5.96825,9.349791666666668,3.2468800000000004,4.48656,2.3305433333333334,1.9291,0.6417,4.32513,2.783625,2.5696,3.9593645000000004,2.3443425,2.3166466666666667,3.76342,5.2275,4.923005,4.38869,5.2789,4.375455,2.33878,1.0577,3.01848,3.383195,2.8015833333333333,5.0549,4.01349,3.10916,2.679575,1.862656,4.58436,1.0127325,5.0469,1.0036455555555555,5.3886,3.324035,4.867025,4.77299,3.70831,3.314075,3.2759766666666668,2.3653866666666667,4.38271,3.390565,2.42368,4.404395,3.95164,6.527353333333334,4.21597,2.042,3.38,3.22403,5.474310000000001,1.92543,1.92543,2.898963333333333,2.4362633333333332,2.3422466666666666,2.78454,0.8511380000000001,6.03125,3.14919,2.2957075,2.303535,2.51208,3.7957,2.58494,3.738925,4.653415,5.18395,5.12905,5.84995,5.5763,1.3513875,3.78732,1.10155,2.2957025,4.248066666666666,2.528495,3.06172,3.185115,4.36997,3.251285,0.4636384210526316,4.68692,4.173565,4.75805,3.380995,5.161,5.47355,4.32529,3.8462,1.85494,4.86817,2.07521,4.3842,4.3842,6.3521,5.418,5.8102,5.34205,2.689595,1.5691066666666666,4.821005,2.4574866666666666,1.6616233333333332,2.092785,4.29031,4.224205,4.501005,8.3164,1.5045516666666667,5.3748,1.3067616666666666,3.36065,6.24325,1.96983,4.930835,2.277093333333333,4.3673,3.362405,4.62081,3.2036033333333336,4.267435,4.019545,6.04405,4.13089,3.6048,3.820065,5.76985,3.936945,4.475855,3.69258,4.198225,8.096453333333333,3.539935,7.27713,3.27658,5.4522,5.937276590909091,5.0781,3.61882,2.0030125,5.88715,3.92601,0.690131111111111,8.32033,6.2507,4.551235,3.0264625,4.95032,2.847425,1.79041,4.095515,1.1250116666666667,5.7974,3.3282,4.837305,5.6086,4.8266,3.911885,2.20583,4.69575,5.28845,1.7044,6.32294,3.07543,3.724695,5.0576,3.99873,2.277445,4.48922,4.33634,4.33981,3.0806633333333333,4.017745,3.812795,5.78475,4.72777,3.483705,1.9177525,1.9177525,7.349805,1.5646142857142855,5.119,4.50716,5.51105,3.508235,3.890425,4.715855,3.85982,0.96618,0.96618,0.96618,3.74617,3.245175,3.94822,4.416785111111111,2.567035,1.4999583333333335,4.30628,2.2876,2.584395,4.08496,4.677785,1.8528675,2.1724799999999997,5.42329,4.017615,2.769095,4.34896,1.508195,1.953515,3.307983333333333,2.71141,5.2933,1.417456,1.582956,1.02334625,4.21822,3.3149,2.834956666666667,2.9538966666666666,5.65995,1.830562,2.0603975,3.24241,1.5874000000000001,3.127575,3.774525,2.582325,6.00415,5.5931,2.829315,4.379005,3.944395,3.4642,3.47815,4.17027,3.65357,6.62271,5.0957,1.8396866666666665,1.8311333333333335,3.549445,4.40137,4.28884,3.897285,3.1310599999999997,4.186215,6.04635,5.4096,2.6871466666666666,5.3372,4.26546,4.599295,8.133189999999999,3.75709,0.6471581818181819,4.227235,4.077780833333334,2.55668,3.969265,4.148366666666667,5.59055,3.948715,3.645605,3.765685,4.01544,4.7173,4.6669,3.32152,3.88902,5.09725,4.16788,3.549815,2.901865,6.53155,5.01345,1.8538419999999998,3.021805,4.315003333333333,3.87219,4.814,4.44785,2.57297,0.8686144444444444,4.313041212121212,6.58528,3.859765,4.650295,3.55503,7.118566666666666,3.4945,3.4489666666666667,2.6697699999999998,3.79776,2.08621,3.405725,4.478835,2.549389,3.723585,5.28275,1.4951475,4.649605,0.6995935714285714,5.46835,4.68613,5.997,5.7168,1.490245,1.7173766666666666,4.55572,1.93029,4.558555,0.5395408333333334,5.71545,3.168305,1.535206,6.3990849999999995,6.9054,0.84817,1.590802,1.27079,1.27079,1.27079,2.2388733333333333,3.896665,3.633765,5.0109,3.627115,4.929585,3.920425,2.00122,4.10463,5.08645,0.2887073170731707,3.39657,4.31357,5.68155,40.038848060606064,5.592648333333334,4.9605,12.792608666666666,4.02145,4.361465,7.85413,3.24263,4.798275,4.386625,5.07925,11.103825,3.78669,2.4139,2.827905,6.1373,4.3238,3.814185,4.312865,2.01739,4.54396,3.846195,7.0984940000000005,4.674535,5.30515,2.38703,4.289765,0.525210625,1.4501666666666668,3.674405,6.20065,2.985205,1.2952299999999999,1.2952299999999999,3.560695,3.96674,3.657015,2.75075,1.6517433333333333,3.614735,4.279085,1.620545,3.32612,1.799652,2.4428366666666665,4.14009,4.72454,2.0690725,4.88513,2.1893375,2.201165,3.68056,3.62844,4.13525,3.89789,6.1377093333333335,2.3493743333333335,4.437495,0.7198881818181818,0.656235,3.779525,2.24101,8.672833333333333,3.4683666666666664,4.90546,1.6819475,4.28865,1.526565,3.8096,3.87616,2.57098,4.05718,5.61,0.4138625,0.4138625,3.3486999999999996,3.2016766666666663,2.8859766666666666,3.47635,3.7143,5.30895,0.9921636363636364,9.252631666666666,9.509625,1.9673975,4.9194725,4.788935,5.3388,3.49684,2.72923,2.03374,1.984905,9.645420000000001,2.0681,2.763253333333333,3.621852,4.822925,3.621852,2.25657,2.651873333333333,2.9095866666666663,0.7374045454545454,5.5236175,2.9765266666666665,2.42998,4.25368,8.747209999999999,9.91862,4.381365,4.26055,4.687775,7.070995,2.044035,1.3706,25.752129166666666,4.15751,4.03981,1.0337999999999998,4.176935,4.19672,4.399985,4.21795,4.479045,5.740356666666667,2.8397066666666664,2.0769766666666665,0.7032823529411765,0.741175,5.3179,4.575515,1.4385933333333334,4.228368333333333,0.8694333333333333,3.8326,1.3705133333333333,4.23999,5.8024,1.767805,2.511735,2.37561,3.87675,3.073085,0.4654244444444444,4.13766,3.569915,2.7111466666666666,3.3164,5.0193,2.8758866666666667,4.147595,3.1023,4.12118,8.62812,4.953615,7.284585,2.573675,2.65633,4.514765,4.4018275,4.32445,4.509905,3.735555,5.3341,1.298125,3.0319991666666666,3.2018966428571427,0.600562,1.718766,1.718766,5.1586,7.0583583333333335,0.8523538461538462,5.04135,0.8675383333333334,3.118626666666667,2.665626666666667,2.431467727272727,6.752698888888888,2.491206666666667,1.1943888888888887,2.4611566666666667,1.266875,2.140566666666667,2.9566233333333334,3.1796499999999996,3.1159266666666667,2.59158,0.8675383333333334,4.5099,4.032185,5.5154,2.558575,4.653735,2.1829,5.9796,4.617155,4.278335,2.927713333333333,3.011085,2.3258725,1.3942075,4.395745,2.754875,4.45785,5.76665,1.669904,4.338245,2.7072000000000003,6.16843,3.549015,2.322225,0.8675383333333334,2.264215,4.43738,7.058225611111111,2.33753,1.680816,2.33753,0.40889166666666665,1.222462,3.571065,4.889785,1.96864,3.719445,3.999258,0.6207779999999999,0.6207779999999999,0.6207779999999999,7.535119999999999,1.612724,0.7929245454545455,2.62316,40.149258571428575,1.7632564444444445,0.6653044444444444,2.7639924999999996,0.6653044444444444,3.74165,1.995295,2.52501,2.5496833333333333,5.95655,4.299585,4.368245,2.3713233333333332,0.8756,4.507775,2.9229633333333336,5.07485,1.0368885714285714,2.797275,2.797275,3.877125,3.78606,4.00466,5.020579230769231,2.95972,4.336725,5.29985,1.7415859999999999,1.1336575,5.40955,6.3933,3.931775,0.684225,4.39223,4.050542500000001,0.90965375,4.49837,2.61559,3.758225,3.980525,1.845920404040404,1.845920404040404,4.419315,3.57991,0.9065277777777777,3.09029,3.06725,3.30481,4.046305,4.70604,0.47103285714285714,0.29561529411764703,0.29561529411764703,0.29561529411764703,0.7666481512605041,0.6030992307692308,0.686167,0.29561529411764703,0.29561529411764703,6.899965,0.29561529411764703,0.7666481512605041,3.606455,1.3001275,4.583185,1.1958166666666667,0.5308330769230769,0.90965375,2.747075,2.6306,3.98656,3.178025,0.29561529411764703,0.29561529411764703,4.448995,3.779655,3.77837,2.564925,3.997905,1.46485,3.84132,0.686167,0.686167,4.64872,3.13859,2.88331,3.06228,4.05587,1.02071,0.8447153846153845,10.449605,1.23552625,4.2191,4.372825,5.41055,2.0788599999999997,0.37940391304347826,0.82566375,3.04635,2.993925,3.10562,4.52846,1.27507,6.3352,4.11412,4.9150725,4.060355,3.1219633333333334,2.877876666666667,6.134758333333333,2.738466666666667,4.835905,4.29597,3.78967,5.9300999999999995,0.5555653333333334,4.165275,3.3242,1.9670366666666668,0.6691733333333334,4.283145,4.99016,2.644795,2.456005,2.173035,5.1661,2.691695,2.796535,0.9968260000000001,0.4684184615384615,4.02989,0.35701466666666665,0.7947827272727274,4.01548,3.243185,4.050155,2.75401,5.06315,4.642295,6.273391999999999,3.668625,4.14526,4.108925,1.5302575,5.0034475,1.953776,4.09832,2.514025,5.999840000000001,2.767025,1.0191839999999999,4.53963,6.91929,6.64602125,3.4717000000000002,0.7979658333333334,2.83665,4.81805,4.036595,4.745725,4.6299,4.087955,4.537235,2.73264,4.26785,1.8045799999999999,2.373325,1.42839,4.033375,9.777445,3.575705,3.65351,5.91015,3.16963,4.216015,2.5406633333333333,2.9774846666666663,3.302045,3.120865,3.69906,3.3402,3.30352,5.45475,5.79385,4.55728,4.686545000000001,5.44545,3.946845,2.734265,5.0851,7.929975000000001,0.9232433333333332,4.090865,4.19739,4.761105,5.16595,4.969905,2.11002,9.32888,2.4815633333333333,3.442405,5.90775,3.73945,4.33282,2.1044,1.8041675,2.7215133333333337,2.182533333333333,2.1177466666666667,2.929273333333333,4.44825,4.725065,4.128695,3.524885,5.013096666666667,3.329965,3.15371,3.8777,5.4966,2.97965,5.413019,4.124575,3.96274,3.349655,8.20552,3.71766,3.68207,4.385385,4.55186,3.235975,9.61119,1.2638399999999999,2.218025,3.71176,2.5644966666666664,2.5644966666666664,1.943415,7.785293333333334,0.9008055555555556,3.43194,0.89870625,2.0603975,4.337635,4.959965,3.83411,4.067925,2.9584166666666665,3.488145,4.02515,3.911385,4.387565,2.906615,2.676066666666667,4.465885,5.0793775,3.65277,4.853415,1.565136,1.6793420000000001,2.7646033333333335,5.55445,2.2632325,1.8109033333333333,1.98391,4.532945,4.66183,3.01741,2.923645,0.5090222222222223,2.32204,8.046545,3.223205,1.50764,0.87135375,1.27498,2.012723333333333,2.2794575,1.0056566666666666,2.112696666666667,4.4548155,4.317295,5.6154,2.4465033333333333,1.9628375,6.3276175,2.919475,2.0848916666666666,2.0848916666666666,2.0848916666666666,6.850883333333334,2.3461166666666666,3.68964,2.943775,0.46787599999999996,1.1080679999999998,2.608525,6.228625,0.47057166666666667,3.832675,4.0067474999999995,5.87225,3.0102183333333334,0.47057166666666667,3.0102183333333334,0.923015,1.106504,6.06365,4.17791,6.880380000000001,4.01338,4.93759,3.70813,4.16461,5.32505,4.88766,6.11705,3.736575,3.41736,5.35985,4.558725,4.45037,4.51783,5.10995,1.4161533333333332,2.71189,1.11753,2.1698475,3.1235580555555558,1.5145380555555557,6.87423,5.474310000000001,2.8079,4.78328,2.72841,4.693095,2.820275,4.359265,5.12475,9.411729166666667,5.74145,4.540045,2.3208525,2.88052,2.20606,0.566435,2.243710666666667,5.87645,5.0449,4.832615,4.69599,0.5611553333333333,2.009695,1.405,4.50398,0.8515076923076923,6.9177375,2.0599625,1.123975,1.123975,3.7455160000000003,1.9574000000000003,3.685833333333333,2.47739,4.738225,3.6833850000000004,3.6833850000000004,3.91558,5.5006933333333325,2.758153333333333,2.3676766666666667,3.4678,3.831765,1.921724,2.892493333333333,5.48405,5.32975,4.72487,4.13248,3.9727533333333334,4.565215,3.433073333333333,3.419866666666667,2.2930525,4.14021,5.24815,3.1370125,5.0985,5.64065,2.0752466666666667,2.94285,6.22565,6.8696,1.1609859999999999,2.53655,2.2026375,2.931646666666667,2.155045,2.620875,2.6188655,1.039908888888889,1.9736375,2.690375,2.42951,2.5264100000000003,2.5264100000000003,3.1996664999999997,2.868075,2.1925105769230773,2.57725,2.4244525,1.907098,1.5284423333333332,5.142367500000001,15.0410805,2.9517733333333336,3.5342000000000002,1.845738,1.845738,1.4610750000000001,1.4610750000000001,2.97313,3.7759,3.0098000000000003,1.936215,1.936215,3.771933333333333,2.93219,1.1094233333333332,1.5355285714285714,2.9513833333333337,2.9251566666666666,3.6971666666666665,2.4274033333333334,3.12861,3.1928033333333334,0.713632,2.5323,3.4907156666666666,7.28919,4.932235,4.25426,4.769915,3.542385,4.93147,4.564375,2.9615833333333335,4.30978,1.3284316666666667,3.2724433333333334,5.5936,5.27395,2.639545,1.2886683333333333,2.885575,2.6210466666666665,2.87431,1.5276466666666666,0.7104778571428572,3.1844066666666664,4.7494733333333325,5.0288,4.665325,4.71266,3.147486666666667,2.0344966666666666,3.371030833333333,2.4532766666666666,3.2489633333333336,3.1728466666666666,3.5469666666666666,2.48961,2.3551933333333332,3.7338666666666662,2.7876266666666667,5.33545,5.0949,5.265618333333334,5.265618333333334,3.39927,4.01317,3.81104,3.901085,2.87468,4.562025,3.31542,2.897273333333333,6.01805,0.8335916666666666,5.17625,4.712,2.63306,5.038735833333334,3.3151433333333333,1.6802000000000001,1.313862857142857,2.1289666666666665,0.9530390000000001,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.22684464285714287,0.5472442857142857,0.5472442857142857,1.2037275,0.8365384722222222,1.6844716035353535,0.9729471428571428,0.9729471428571428,1.2501893813131313,0.43428222222222224,0.4065722222222222,1.2342725,1.5013625,2.59293,2.392995,6.90208,3.205303333333333,3.99145,3.18743,4.745945142857142,1.28431,4.82402,3.816205,4.612585,3.26878,1.534068,4.2143007692307695,3.68841,4.69952,4.55159,3.058325,4.3302,4.479395,4.5786,1.268144,3.918985,4.50417,3.196145,2.4193433333333334,3.46793,2.482695,3.316285,4.229345,3.146853333333333,4.58934,8.759795,3.251965,5.02185,4.3131,4.183198333333333,2.2160366666666667,3.656385,0.8822442857142857,3.992355,3.42457,1.964496,1.23555375,2.825045,1.0099733333333334,0.5336413333333333,3.704966666666667,4.411355,5.2346466666666664,3.7111666666666667,2.4946425,2.77009,4.852865,3.9205666666666663,4.469245,2.67075,2.2752733333333333,4.245055,4.23752,4.293205,5.12135,4.656835,3.74808,4.733495,3.26214,4.74095,2.2360420833333334,4.812335,5.255,3.250265,4.087615,2.50753,3.814945,5.32215,4.13766,5.3086,4.69788,4.948925,2.6971600000000002,5.01735,5.04945,4.416795,2.34905,1.2247975,4.154995,4.74685,4.274085,4.565145,1.89568,4.065725,2.11246,4.85692,4.430285,5.13875,2.26361,4.07147,4.61289,4.372845,2.55043,4.638755,4.80826,4.84251,3.665555,2.34905,2.25666,2.888595,4.403745,3.571595,3.884055,3.5781,5.19355,2.229835,6.92167,4.79906,4.07193,5.199662916666667,4.79279,5.0161,3.2714475,2.5275600000000003,2.5275600000000003,4.025045,3.89992,4.543535,2.1415775,2.8555574999999997,0.9489825,2.6552266666666666,2.9078466666666665,2.4107499999999997,3.3257600000000003,4.450125,2.8344466666666666,5.72985,2.6632333333333333,3.65053,4.2553025,1.96104,4.19698,2.37495,3.093783333333333,4.0723,0.929265,5.10945,4.888625,6.588900000000001,4.48222,5.3124,1.35475,4.61141,6.50065,8.484065000000001,3.1499400000000004,3.4533666666666663,1.957406,0.837875,3.83837,1.0114757142857143,4.49245,4.7754,5.2722,3.23685,3.88376,1.4421285714285716,3.413245,3.712955,4.48276,4.18638,3.0326,3.43097,2.292035,4.509495,5.00655,5.6938,4.281755,3.529145,0.34244111111111114,0.34244111111111114,0.34244111111111114,0.34244111111111114,5.5021,2.81396,6.17715,3.1757066666666667,5.427,5.34665,4.51485,2.192775,2.5541266666666664,1.4408033333333332,5.0743,2.8059133333333333,4.23259,4.220305,3.49514,1.557435,1.1764275,4.63491,2.588815,5.98302,3.835745,5.44715,2.274645,1.5998533333333331,0.8530688888888889,3.31875,4.60454,3.137175,2.3731975,8.296655,4.44915,3.477435,2.2908999999999997,0.478166,3.45297,2.89361,2.10324,1.94887,3.516675,4.07942,3.03581,3.213506666666667,3.084665,3.3309,4.3492,3.215155,4.08043,3.33602,5.477515,0.599164,4.562575,5.58325,4.83152,4.659265,3.3490333333333333,5.24095,4.31583,4.050385,5.3014133333333335,5.1846,4.35378,4.22338,3.6987550000000002,4.527055,3.239685,9.05366,4.861915,4.114135,4.464405,5.1449,5.1021,3.517395,1.0500733333333332,5.625566666666667,3.27858,5.12485,1.4680566666666666,4.328195,4.297005,7.138506666666666,4.796325,3.258705,2.6132866666666668,3.66211,1.769866,1.03318625,4.103315,5.7504,1.95789,2.3732133333333336,2.922746666666667,3.110195,3.621475,3.734125,4.877505,1.7194733333333332,4.14188,4.2229565000000004,3.434795,3.746866666666667,3.589875,2.826435,2.63258,1.9338925,2.451216666666667,2.66487,4.38083,0.5183274999999999,2.63539,3.97222,2.993785,3.4591333333333334,4.20341,5.3659,3.736025,16.76888866666667,2.40367,3.8524666666666665,1.511824,0.8459399999999999,0.8459399999999999,0.8459399999999999,0.8459399999999999,0.8459399999999999,4.41446,4.482895,5.19965,10.023793000000001,2.665075,2.665075,4.53016,4.4998825,1.3097325,1.9136866666666668,3.955285,2.3087625,2.27966,2.183965,3.13157,3.799795333333333,2.0069675,3.55145,0.8231428571428571,2.599676666666667,2.87397,2.90636,1.4038300000000001,3.348966666666667,2.1286833333333335,0.935215,2.861603333333333,2.753216666666667,1.120011111111111,2.5261766666666667,2.7454433333333337,2.01774,4.39386,1.84967,3.00807,2.06721,2.776683333333333,1.0634544444444445,2.98417,4.856378666666667,3.461133333333333,1.0858925,2.91438,1.311755,2.743463333333333,2.9173266666666664,4.786146666666667,3.0749166666666667,2.4845166666666665,4.613523333333333,2.7866366666666664,2.18267,2.5969466666666667,2.724066666666667,1.8115733333333335,2.783246666666667,3.6081,3.1100600000000003,2.7540066666666667,3.308666666666667,2.6671600000000004,2.421405,3.7421679999999995,3.7421679999999995,2.977653333333333,2.0587233333333335,1.8515233333333334,2.609436666666667,5.510706666666667,2.9332933333333333,1.98809,1.6077675,3.0217166666666664,4.207465,2.4229966666666667,1.035204,2.751874,1.48658,3.8157333333333336,2.097323333333333,2.5154033333333334,2.1669766666666668,4.242666666666667,1.246864,1.5759133333333333,1.55284,4.327473333333333,2.57409,4.291025,1.020151111111111,4.12951,1.9371099999999999,2.265725,1.833618,1.4160083333333333,3.30995,23.819306924242426,7.074390000000001,2.6463633333333334,3.5373391666666665,2.33998,9.965569333333335,3.1906266666666667,1.00606875,2.63861,2.3442266666666667,2.118036666666667,2.7046433333333333,2.571683333333333,2.5948333333333333,0.933202,2.8811133333333334,2.41164,2.9731166666666664,2.9907800000000004,3.1068200000000004,2.13939,2.2430133333333333,2.85132,2.5753833333333334,2.16642,1.612744,5.27436,4.92597,2.3736425,2.8208,2.277406666666667,2.4156366666666664,8.056791666666667,1.9248666666666667,4.87175,2.2608775,2.037265,7.18583,3.00807,2.6664600000000003,2.626,1.768844,1.4935842307692309,3.2875033333333334,3.2735133333333333,4.044195,1.40048,3.7527666666666666,1.59049,1.59049,3.922965,4.183555,3.211906,3.211906,5.75065,3.463645,0.40787000000000007,11.379905735653235,1.1939833333333334,0.9572157142857144,3.6505,1.4883208547008546,1.8446125,5.823043333333334,3.66695,0.7485181818181819,2.132756666666667,4.942077333333334,2.6053111666666666,3.93635,1.3622585714285713,5.8506,4.95568,4.76338,3.57889775,1.995272,2.5060733333333336,2.871613333333333,2.50305,2.12504,5.1017600000000005,4.164285,4.25688,1.9988725,5.05485,3.82516,3.1511066666666667,2.2226375,5.0705,2.3214466666666667,8.44731,6.8615725,2.05928,2.513465,1.7146439999999998,4.732366666666667,4.732366666666667,3.5239333333333334,2.7925133333333334,3.3494018333333333,5.6345,10.1130475,4.246555,2.575775,5.3746,3.85669,5.25235,1.941974,0.8285425,1.3514799999999998,4.68754,4.946935,3.9372666666666665,2.77417,3.6419,2.0990699999999998,3.742745,4.553765,3.33288,5.12465,3.0130933333333334,3.4444420000000004,3.4568666666666665,3.2562200000000003,3.335266666666667,6.0862,2.954025,5.5583,5.2683,3.62922,3.36825,3.36825,5.6092675,11.784789166666666,3.5782666666666665,6.063867500000001,7.456957777777777,3.664435,2.5309766666666667,3.96096,1.2574433333333335,3.817605,2.3704325,2.99977,3.1045966666666662,3.024706666666667,2.1001000000000003,2.45979,2.672696666666667,2.5174933333333334,2.9085933333333336,3.152253333333333,3.66582,2.4963633333333335,2.9714066666666668,3.878515,2.8999466666666667,2.2430600000000003,1.13045375,2.0773075,3.075606666666667,2.396596666666667,2.4377400000000002,2.47525,3.1994633333333335,2.2282800000000003,2.4196766666666667,2.6709066666666668,2.8940433333333337,2.7298733333333334,2.81453,2.51717,3.07107,2.88773,3.534284,2.6565766666666666,2.46217,2.33453,2.3344033333333334,2.391366666666667,3.350633333333333,3.26717,2.98129,1.99818,1.99818,0.7321333333333334,1.625076,3.61899,3.16672,2.5113233333333334,2.1001000000000003,3.5167333333333333,1.1927328571428573,2.571966666666667,0.5848306666666667,3.4785,3.141033333333333,3.35364,3.0161700000000002,2.3123066666666667,2.5968533333333332,3.1767333333333334,2.7453466666666664,3.4125333333333336,4.725913333333333,1.53657,2.4265766666666666,2.3924733333333332,1.7893833333333333,2.16634,2.7772666666666663,2.81541,1.733932,2.64144,2.6363600000000003,2.6222933333333334,2.62618,2.63768,2.8042266666666666,3.1241,1.3611775,2.8709066666666665,2.3430066666666667,3.8716333333333335,3.4684333333333335,2.18521,1.7544933333333335,3.5996666666666663,2.40494,3.5462333333333333,2.6865133333333335,2.3426066666666667,4.7827775,2.9347999999999996,2.0449066666666664,1.497818,3.579966666666667,6.004720000000001,3.287803333333333,3.4918,2.796836666666667,3.08222,4.861522666666667,1.598616,1.1666555555555556,2.1173233333333332,1.8076295833333333,4.6148,2.9573133333333335,3.29743,3.006373333333333,3.1598400000000004,2.2281,3.0313199999999996,2.3154625,1.627674,2.6450633333333333,3.498315,3.7043675,3.27207,3.7491,1.521785,2.75079,3.26359,2.7277,2.1633566666666666,3.6474666666666664,3.9446,3.7846666666666664,1.25265,5.786379,3.9813425000000002,1.5712666666666666,3.40997,3.29384,2.756205,4.04962,1.8856439999999999,1.8856439999999999,3.4529666666666667,2.9830900000000002,2.902085,5.09455,4.366185,4.200471333333333,1.420248,2.905343333333333,2.38715,4.22428,3.0804899999999997,4.983796666666667,2.6829066666666663,2.392846666666667,2.7154000000000003,3.62893,3.733995,1.700612,3.14106,2.844715,2.3861375,4.456865,1.3064916666666666,3.448975,4.460265,2.66324,3.596625,4.146815,1.7140425,1.5495133333333333,2.4815725,1.05696,2.0355342857142857,2.0134725,0.4491642857142857,3.855015,2.15814,4.635425,4.259795,2.84893,4.797997499999999,3.24964,3.2938466666666666,3.486166666666667,2.4830566666666667,3.082473333333333,2.819983333333333,3.025063333333333,2.084983333333333,0.6544300000000001,2.3322933333333333,0.5952957142857143,1.9460233333333334,2.4584733333333335,3.4198,2.9718699999999996,1.3318333333333332,1.2285125,3.74509,4.41302,3.149305,3.428925,3.483985,1.592175,3.91141,6.744335555555555,3.66403,5.595212500000001,1.554685,3.854765,1.785965,3.95053,3.27668,1.795525,4.019725,2.81127,3.64388,3.459605,2.1937325,3.96511,6.025270000000001,4.868475,3.45259,3.017985,1.7241375,1.8785575,3.142,3.27833,3.09158,3.440425,3.70267,3.327315,1.602065,3.44472,2.984365,1.6132,3.91683,0.9936250000000001,3.155345,1.677625,3.417205,4.623985,3.65731,2.74444,3.795215,3.35998,1.84702,2.36417,3.6743666666666663,1.487415,5.46106,4.16494,4.447935,2.46146,2.507075,4.604335,4.39747,2.557922,2.557922,5.652909,3.6422065,2.5321825000000002,2.85095,2.0015,2.60136,3.260435,3.6959649999999997,2.491219,3.47822,0.9944219999999999,3.45557,2.93652,4.08182,2.50349,1.498455,1.324985,2.863245,5.863537,5.4123475,3.53379,1.40184,3.74327,3.085245,0.8051550000000001,2.80033,1.151056,5.459535,1.3626766666666665,3.5072,2.02329,1.3318333333333332,2.83889,2.695745,4.36146,7.012138333333333,3.9916,4.06284,2.36881,2.849875,3.92349,3.459105,4.51457,4.504025,1.07164,1.5596717500000001,0.96464875,2.198395,2.21373,4.749515,0.96464875,4.737625,2.057,1.5565475,1.5565475,1.6132,3.697775,4.33534,3.75019,1.5188380000000001,1.5188380000000001,0.79393,2.82092,2.0948475,6.1118525,3.99144,3.39554,2.7724733333333336,1.0348857142857144,3.493985,2.81268,4.30575,3.63969,3.521,3.521,3.465695,4.00074,1.8588425,2.45165,0.9702333333333334,1.6603933333333334,3.572075,2.31054,3.408969166666666,3.408969166666666,2.90351,4.673255,4.296895,3.338115,3.444945,4.11639,2.5210500000000002,4.1812775,2.60805,3.442335,9.009640000000001,4.981075,2.718845,3.196305,2.996905,4.78694,3.064064,7.737175,4.579848,4.54684,3.40984,3.9649,3.468295,4.522885,4.733725,2.25465,4.13362,5.785776666666667,2.634715,2.078208666666667,2.888615,3.217255,3.30497,5.26515,2.189713333333333,1.9503933333333334,2.44042,2.6765925,2.50124,6.7216320000000005,1.4857475,4.775666666666666,4.775666666666666,3.192075,3.6846791666666667,2.933335,2.3060766666666668,4.43209,4.0642689999999995,2.002504,3.97192,4.006255,3.54195,2.935745,2.96551,5.890255,3.330395,5.115,2.844245,4.44532,4.183995,3.102505,2.9830900000000002,1.9213166666666668,2.67077,4.0098,2.949745,2.9831416666666666,3.230075,5.966108333333334,2.385115,1.757435,3.145411666666667,2.3308633333333333,3.617195,2.660105,0.8051550000000001,2.892775,4.33209,3.92057,6.0398575,3.01302,2.993605,3.02892,3.02892,3.5327025,4.110455,3.608155,2.2335,5.7033000000000005,2.184575,4.4476,3.574965,8.18896,2.79153,1.2214633333333333,3.02787,4.499275,0.5133675,4.17454,2.82274,2.887745,3.076495,4.491285,2.1898133333333334,2.49527,8.973295,3.49601,2.865245,1.3626766666666665,3.60075,2.58703,2.1804437500000002,3.87899,5.207902499999999,1.5607775,1.1049016666666667,0.9416066666666666,4.14933,3.79402,3.604515,3.3702425,3.3702425,1.602065,2.257615,2.9705280555555555,0.8566155555555555,2.83092,0.9436725,1.521785,2.97205,3.21731,2.37063,2.48923,2.3334683333333333,4.04013,3.32218,2.87545,3.299945,2.675735,4.36874,6.8101,4.044125,0.87936125,2.4322660000000003,8.66854,4.74556,4.27657,1.058135,4.473001666666667,1.4521600000000001,3.4294450000000003,3.4294450000000003,3.642645,7.832285,0.8455377777777778,4.730515,4.89832,2.1792433333333334,3.9635233333333333,3.67629,2.2746325,8.642866,1.612245,2.3270933333333335,3.045495,1.6243633333333334,3.7395635,3.095305,3.22984,3.151256,2.74966,3.280465,1.1086833333333332,7.22757,4.05604,4.00821,3.926795,1.8940525,2.74444,3.67401,3.583285,0.5997576923076923,4.28372,4.140265,4.446,2.08972,1.2532260000000002,3.99283,4.27328,7.8167,0.7481776923076923,0.8290525,0.8290525,1.7889866666666665,1.3926,1.426288,1.8142766666666665,4.591675,1.1997266666666666,0.8459171428571429,4.0626299999999995,3.541135,1.335,3.310835,4.48835,2.431545,0.724326,1.71759,9.53661,3.513891666666667,3.473875,2.20389,1.3631025,2.4850333333333334,2.538475,4.516665,4.51328,3.888145,0.8788871428571429,1.423922,0.9324600000000001,4.40642,4.413755,4.19141,0.8566155555555555,1.680882,4.110585,2.2574896428571427,4.2830725,1.0574525,4.697775,0.7161766666666667,0.7161766666666667,0.7161766666666667,9.52272,3.97781,0.9436725,3.87693,4.60355,2.619705,3.1491,3.94932,2.551305,1.6797183333333334,1.7438033333333334,0.724326,1.529481,0.5259666666666667,0.7847516666666667,1.3405416666666667,3.30807,3.820565,1.9549325,7.30481,4.981403333333334,0.5092066666666667,5.6285,5.16794,3.25825,4.441805,7.793707,3.6992694047619046,4.981403333333334,4.434509500000001,2.27506,4.4883,3.76379,6.696505,3.58562,0.478166,1.569002,3.850395,1.7864339999999999,1.1049016666666667,4.147555,2.3486833333333332,1.653405,3.11546,1.677938,4.456,4.490125,4.14442,4.714515,5.82996,2.528135,3.95806,1.151056,2.2427125,3.2258,3.060725,2.002504,4.06103,2.540965,4.6668,2.89049,2.291785,3.2776366666666665,1.511846,3.26467,0.8566155555555555,1.9777895,0.9416066666666666,1.52112,3.65816,1.4857475,1.3405416666666667,2.2975,2.623685,7.29756,0.8788871428571429,1.058135,1.259836,3.60019,3.44754,1.259836,3.94662,2.2427125,0.5133675,0.8566155555555555,1.7889866666666665,1.151056,0.4491642857142857,1.6730820000000002,4.111847333333333,2.1792433333333334,1.3347366666666665,2.87008,1.25265,1.612245,2.6087116666666663,1.7438033333333334,4.30282,2.6087116666666663,0.8051550000000001,2.689156,2.4453175,0.0762015909090909,0.0762015909090909,0.0762015909090909,0.0762015909090909,0.0762015909090909,3.4943000000000004,2.821923333333333,2.8785066666666665,2.79937,5.5402,3.91106,1.833618,3.762335,3.66222,2.22546,5.0847575,3.779975,2.41785,2.418655,2.754065,4.823305,8.038818333333333,2.333295,1.98719,3.138420714285714,0.9652557142857142,1.3919216666666667,2.4339066666666667,2.0394200000000002,1.4321675,2.7167966666666667,2.231126666666667,2.6279333333333335,2.8877433333333333,2.6708433333333335,3.93272,3.60204,2.585323333333333,1.312628,3.55616,3.74307,1.4962933333333333,1.295394,1.295394,1.295394,3.449665,2.85712,1.13432,2.334616666666667,1.287872857142857,4.40441,1.4771633333333334,6.3725000000000005,3.3044225000000003,2.70499,3.133426,3.133426,5.3145766666666665,3.279425,4.41531,5.3138,2.0772775,3.076826666666667 +GSM1946760,0.0,1.9645725,1.9645725,1.5630899999999999,4.48979,6.41355,2.2827939473684213,1.7596299999999998,7.290424019607843,4.30143,3.1561766666666666,2.635715,2.38513,3.340125,4.25898,1.8991,1.50299,4.952935,2.430006666666667,2.248015,4.508335,5.45197,3.73883,2.412255,1.7459219999999998,4.02505,4.542765,4.28217,0.6351325,1.519678888888889,1.905413888888889,1.72265,1.61127,1.0535428571428571,0.6883825,3.016250357142857,1.56116,1.9466025,1.260125,2.1042275,1.1160175,1.095185,1.141362,1.503308,0.940936,0.9298819999999999,0.773634,1.1886457142857143,1.603932,1.827322,1.495704,1.9695699999999998,1.6797920000000002,18.42891691666667,0.37554933333333335,0.811992,1.046548,1.7566199999999998,1.354022,1.680088,1.0390314285714286,1.0390314285714286,1.0390314285714286,1.12838,0.999574,4.672233749999999,1.08526,2.4473475,1.979145,2.414515,0.9792059999999999,2.199605,2.25813,1.89083,1.5133625,1.9876175,1.6210475,1.753455,2.4604766666666666,3.73136,4.85807,5.2102,1.5671233333333332,4.49958,4.283486666666667,4.142705,3.9234,1.0672025,7.47398,0.585179375,0.585179375,2.21576,1.07918,16.19842,4.849815,5.2849,5.90995,4.231605,4.08787,5.425,0.45902166666666666,2.3349633333333335,1.89289,2.282685,4.35024,3.773165,1.558775,3.3115466666666666,3.763033333333333,3.004096666666667,3.4994666666666667,3.453405,4.827385,2.754422,4.54131,2.8795066666666664,0.7324363636363637,1.8692060000000001,2.6069,5.12625,3.44471,0.54426375,3.570505,3.813085,0.813565,4.636315,1.7356172727272727,2.374725,2.92965,2.087505,3.90591,5.85675,3.30281,2.55633,3.4476,3.1085499999999997,4.19822,2.8896833333333336,5.63705,3.367015,4.39758,3.144395,2.19265,3.635325,2.3768975,6.73535,3.45426,3.52981,5.80815,3.10309,4.94882,0.8108422222222222,9.683031428571429,3.706685,1.9214333333333335,1.74946,3.1623366666666666,2.44768,4.75032,5.48465,2.272125,5.128185833333333,2.893375,4.202175,2.272125,3.05635,4.40048,5.2231966666666665,3.57376,8.9937,3.85305,5.08015,3.0177,4.874885,4.273905,1.8352833333333332,8.05777,4.253285,3.96321,3.50615,3.57731,3.328045,2.257165,5.953984999999999,2.2241,3.93272,3.91414,4.980995,5.06295,3.52858,1.3972783333333334,2.826345,2.840965,1.833375,1.833375,5.95396738095238,3.04344,1.8967066666666668,4.25228,4.399035,2.602775,1.528005,0.8408144444444444,6.98335,2.64652,6.945,3.384735,3.79504,3.85643,2.869285,3.97374,3.58603,3.919375,3.93484,5.75965,2.88684,3.650325,9.21744,4.805605,3.567933333333333,3.0308466666666667,2.69666,3.964166666666667,4.404218333333334,1.899735,2.66567,2.0551733333333333,1.778568,1.70812,2.6168066666666667,1.7534375,1.8487275,2.9877366666666667,2.8304666666666667,2.3643366666666665,2.6724333333333337,4.283486666666667,3.388815,3.260075,3.325905,4.198675,1.1816666666666666,2.109895,2.8425742857142855,2.06208,2.5126766666666667,2.12076,3.3474,1.7382560000000002,1.3805399999999999,2.6776400000000002,0.624934,1.8346633333333333,0.49585888888888885,0.49585888888888885,1.5121666666666667,2.4213400000000003,2.06218,1.4050333333333331,1.4942733333333333,0.3180169230769231,2.7187333333333332,0.624934,1.29754,0.18826702702702702,1.45924,1.99488,3.4193,2.0124,2.1366633333333334,2.504863333333333,2.3029633333333335,2.3417866666666667,2.4671066666666666,2.27389,2.267376666666667,2.6610466666666666,1.8782966666666667,2.795125,4.2046,0.6305933333333333,1.8422366666666665,2.550666666666667,1.9742833333333334,3.47269,1.461182,2.56137,2.1866766666666666,4.293963333333333,1.9540466666666667,7.198922857142858,1.6704428571428571,2.9159133333333336,2.18006,1.93613,3.2983499999999997,1.846595,1.88927,3.98092,2.6675633333333333,2.0711325,3.661515,4.08855,4.389385,3.760075,2.307955,3.369745,4.330994666666667,3.949455,3.93835,4.11675,4.331295,3.04392,4.419075,3.346765,0.90851625,4.889255,1.2326333333333335,4.9362,3.733885,5.876424,3.7083,4.29714,0.97065125,2.23877,3.45969,4.034285,0.77281,1.1257516666666667,1.9677680952380956,3.888222857142857,5.772337500000001,5.685002,2.2660075,3.27555,5.06705,0.33342,3.37198,2.292805,0.937615,4.665635,2.00851,10.605004999999998,1.3416875,1.374775,2.239446666666667,2.35662,2.211993684210526,5.324808684210526,0.4025236842105263,1.7089733333333335,2.7640700000000002,1.0300025,3.7976666666666667,1.0822357142857144,5.1006,3.85189,2.1538233333333334,6.35,5.79065,2.954325,1.1092328571428571,4.199870000000001,4.83423,4.20491,0.8431954545454545,7.828763333333334,2.7721133333333334,4.21913,2.6469733333333334,2.4910033333333335,4.43714,2.28085,2.4894666666666665,2.2065266666666665,2.36408,3.18288,2.9522733333333337,0.332385,4.049725,3.724445,3.820825,3.91115,4.48876,6.108917,4.08621,1.6977625,5.60125,4.258245,4.40956,4.223635,1.0778833333333333,2.6914766666666665,3.0767166666666665,2.5032833333333335,16.054075,3.297705,3.84341,4.19571,5.89225,2.957555,5.1255774999999995,1.61022,0.7984100000000001,2.751375,3.280305,3.59427,4.1471,6.324436666666667,2.8528866666666666,2.30107,2.09119,3.4446333333333334,4.959845,2.291395,0.3618643452380952,3.2933484782608695,1.8740575,1.14778875,0.53137608436853,0.7008878234989647,0.3618643452380952,0.3618643452380952,0.3618643452380952,1.097115,1.2440875,0.8729675,1.4946375,4.3053225,0.2196305882352941,11.223095243506494,3.6751666666666662,2.7984000000000004,4.035995,4.050345,3.8508,2.07836,4.61179,4.020727333333333,4.17736,3.874055,0.6575976923076923,3.3089833333333334,4.096710512820513,0.5414207142857143,3.6181,2.8797200000000003,4.3036,0.5533554545454545,1.778325,4.392185,3.48845,1.8386075,1.85133,1.6775366666666667,3.1273133333333334,4.039065,3.123545,2.87248,5.672,5.5091,4.920295,3.352233333333333,3.0088615,6.8867416666666665,3.9383666666666666,4.994915,0.42934047619047616,3.079,4.05059,2.0567800000000003,2.566995,2.69609,5.554591666666667,0.57558,2.883925,4.19448,4.31266,1.0150014285714286,4.842515,2.747635,4.831995,3.0150133333333335,4.079085,3.47083,4.25559,1.2033716666666667,3.37583,2.74096,4.70222,4.116635,4.49069,5.91235,4.652215,2.74829,5.03986,2.345403333333333,3.168235,3.07237,2.5732766666666667,2.71752,2.3282666666666665,1.829004,1.44665,2.07145,0.7944385714285714,1.4942166666666665,2.32352,1.9994966666666667,3.01852,3.2774699999999997,2.8862799999999997,0.8331766666666667,5.1207,3.4423666666666666,5.30414375,2.66332375,3.059013333333333,2.844303333333333,1.6232233333333335,1.6232233333333335,2.4119757142857146,2.4119757142857146,3.255924642857143,0.5134471428571429,1.8068066666666667,2.18961,3.7350333333333334,2.235740714285714,2.235740714285714,2.235740714285714,7.34751880952381,4.3187709523809525,0.9502636363636363,2.773515,4.934116666666666,2.358555,4.780305,3.155035,2.378855,4.44782,2.929396666666667,3.0585133333333334,1.07102375,1.8934333333333333,2.8270933333333335,2.2479733333333334,2.62486,5.63275,4.320166666666666,3.8617333333333335,5.0555666666666665,1.9472666666666667,2.7141,3.07324,0.9337899999999999,2.1994766666666665,4.707869333333333,7.845574999999999,1.497075,2.87119,4.80387,1.7329440000000003,1.6211675,1.6211675,0.98073,4.667675,7.615145,3.89715,5.167619,4.45695,1.7051666666666667,3.9636,3.01866,4.543335,5.163153333333334,0.36776315789473685,2.787305,2.672415,4.005545,3.87958,1.796834,1.92286,2.42352,4.183045,3.99875,3.065765,2.43894,1.4246919999999998,6.96593,5.3623,3.95872,3.390025,5.2424,4.584315,4.357045,3.512375,3.6568775000000002,2.02498,1.0999542857142857,2.67274,3.9622,3.794895,5.6818575,5.767212499999999,2.4802575,1.7389700000000001,2.6962333333333333,2.73291,2.9304733333333335,0.7559142857142858,2.32586,3.559525,1.09611,5.00285,3.25988,5.885555,1.258565606060606,1.258565606060606,4.11206,3.78788,3.941015,5.71345,2.7755433333333333,2.25319,3.83809,2.93173,2.18272,3.3791666666666664,2.5246733333333333,4.13432,3.3136925,3.6994,4.587085,1.1021455555555555,2.69464,4.2806,3.96444,3.316575,2.5083866666666665,1.650445,0.8253222222222223,0.8253222222222223,0.8253222222222223,0.8253222222222223,1.5880955555555558,3.6151174999999998,3.6151174999999998,1.6474900000000001,6.784531666666666,3.028085,4.189945,3.0747133333333334,2.6674,4.638505,3.946495,4.92652,5.17665,1.666265,3.8711,3.65179,2.51644,3.23322,3.293795,2.72372,4.1878,1.855775,4.53747,1.659265,3.360155,3.18156,1.8351025,1.1315533333333334,2.95394,4.446055,1.197466,0.8294722222222223,3.425815,1.353845,4.911384666666667,4.339525,1.3409042857142857,3.54443,0.7235066666666667,2.644343333333333,2.47897,2.3472833333333334,2.520185,3.75191,2.8236833333333333,4.846775,5.43865,4.316825,4.39561,2.1607975,1.2714542857142859,3.80313,5.00635,1.4109275,1.4109275,4.01317,0.29105533333333333,2.361,0.29105533333333333,0.29105533333333333,0.29105533333333333,0.29105533333333333,5.21665,2.7293866666666666,3.024825,3.39837,3.10446,4.419205,2.56073,0.8802,0.8802,0.946565,0.946565,3.76985,1.759655,4.60367,1.43479375,1.43479375,6.19853,0.5461085714285715,2.4244425,7.350806666666666,4.51408,3.199845,3.497515,0.97382625,2.163065,1.9539,4.53218,4.152845,4.207195,3.918045,1.2611214285714285,2.77266,1.9587125,7.27205,1.7689,4.44685,4.715685,3.014495,3.85055,6.0186,7.791129999999999,4.06496,4.2084,4.089045,2.4311375,3.152545,2.26237,2.27679,1.849735,3.878325,3.479415,5.494691666666666,6.58987,4.001605,1.0463666666666667,1.473745,3.701775,3.666975,2.096745,4.20907,3.159135,4.735766666666667,1.7929199999999998,4.100266666666667,1.5559266666666665,6.498846666666667,2.9667066666666666,2.48648,2.3486,2.37422,3.7045,3.226183333333333,3.2918766666666666,2.728173333333333,3.338366666666667,2.2807,3.16048,3.07584,3.16052,0.383598,2.91154,3.782175,2.6045,5.6428,4.86128,4.516935,6.698789,4.68388,2.1456633333333333,4.332955,5.1544,1.5747833333333334,4.69109,5.63995,5.0198,4.77051,3.182355,5.4195,5.0221,3.833345,5.370378666666666,7.3997675,4.438545,1.1919250000000001,1.41275,2.606005,1.8242740000000002,4.45304,4.057055,4.6006875,2.51985,2.3272866666666667,2.6302166666666666,2.35757,2.1905633333333334,0.9382900000000001,0.5029670588235294,4.01317,4.033775,3.7421333333333333,4.01494,3.05337,3.2914366666666663,5.172805,2.8970766666666665,0.5712947058823529,2.906755,5.44115,1.4582125,1.6442219999999999,3.66603,3.198845,2.4842400000000002,3.751533333333333,3.847955,2.6890199999999997,2.3735133333333334,2.317903333333333,2.4801033333333335,2.75931,4.222655,4.9964025,6.560855999999999,1.303342,4.61297,3.11876,4.7966999999999995,2.329143333333333,2.861085,2.237545,2.007756666666667,1.3794025,1.3794025,2.5986166666666666,2.2443766666666667,2.7349766666666664,4.811095,1.637992,2.33598,1.86831,0.43415375,3.505065,0.5573616666666666,0.8691725,3.356415,3.995975,3.490185,1.691795,4.43527,3.14519,0.7952428571428571,4.257335,3.819530952380952,3.2335333333333334,2.616405,4.80541,0.26226172413793103,2.1850003333333334,3.24791,1.45065,3.684845,6.6157,2.30625,1.3491566666666666,3.91645,3.829445,2.631796666666667,2.631796666666667,3.46754,2.44459,4.653885,5.459295,4.931945,0.9254233333333334,2.8731066666666667,2.45497,4.388155,5.19715,5.6526,4.84341,4.396,3.795,3.7977333333333334,3.5471,4.1753,2.96575,3.0615400000000004,0.592135,2.3842275,2.41579,4.026035,3.071146666666667,3.2185233333333336,0.7399983333333333,3.3832,3.909662,4.82942,5.72285,5.1824,1.7535475,1.7535475,0.8215389999999999,3.065565,4.615735,3.591775,3.963187142857143,3.229855,4.79883,0.5824845454545454,3.06878,3.47766,4.32464,3.909585833333333,0.7422357142857142,3.117945,4.038735,5.7508,3.7334,4.83527,2.69803,4.057305,1.368215,0.97176,2.682123333333333,5.47545,4.734455,3.007015,1.4010883333333333,3.767025,2.456365,2.72335,2.7605348888888885,2.9543033333333333,4.582073333333334,3.17219,1.8056899999999998,3.544966666666667,1.4382141666666668,2.92182,2.47424,2.305275,2.834963333333333,3.122536666666667,2.29218,2.99717,3.693795,3.11854,3.675935,2.3798266666666668,2.054145,4.00901,3.0942399999999997,2.4314966666666664,3.675935,2.0501066666666667,0.7892618181818182,2.41625,1.032221111111111,2.2013575,1.511705,0.9351727272727272,1.79095,1.8125025,2.6690085000000003,2.7068,4.61443,1.501565,4.890075,3.0905833333333335,1.635136,2.3867766666666665,2.43649,1.7447100000000002,2.6230933333333333,2.79894,2.4199875,1.8220575,1.7686620000000002,3.567833333333333,2.1399066666666666,2.956,3.2148966666666667,3.0383999999999998,3.5718333333333336,2.0747233333333335,4.0988999999999995,3.3807666666666667,3.788933333333333,2.7293133333333333,3.4124666666666665,3.735633333333333,1.9959866666666668,10.79495,4.087405,4.33101,3.43744,2.88054,1.984575,3.95791,1.675922,4.027715,4.291315,1.39171,2.3466133333333334,1.0991116666666667,2.23327,1.6107766666666665,2.4001066666666664,4.883635,3.0195133333333337,3.658075,4.983175,0.74076,1.44924,0.971622,3.48633,10.208133333333333,3.3226099999999996,6.792,2.0729525,5.25735,4.32611,2.4352425,4.86961,0.2919394117647059,0.8316028571428572,4.346405,4.1357,7.2937625,2.0514625,4.40483,6.11,4.59344,4.6144,3.38007,4.476875,3.52965,5.792971666666667,3.539615,3.061035,3.17449,2.1257966666666666,1.9051266666666666,1.4362830833333333,2.494613333333333,3.992605,4.625805,1.545216,9.09026,1.8493700000000002,2.96706,1.029484,1.029484,7.052410833333333,2.829215,2.438375,2.2464575,2.5926666666666667,2.20588,1.16838,3.597265,2.5315766666666666,0.6227842857142857,1.7765066666666665,3.2963699999999996,3.2963699999999996,1.1241133333333333,2.627266666666667,2.2112233333333333,2.8229800000000003,1.348995,1.8294033333333333,4.582945333333333,2.66286,2.625175,1.30608,1.30608,3.91153,5.6697,4.431525,3.25887,3.786385,5.59414,2.815905,2.8541000000000003,2.6859,4.034895,1.14549,3.3889333333333336,2.598075,3.7768,2.081253333333333,4.99709,3.62965,4.30091,3.473595,5.564074000000001,0.9202822222222221,1.9354125,2.03991,3.525825,4.265115,3.69792,3.89119,3.23119,2.550015,1.79049,4.059835,3.214715,3.32626,2.4853433333333332,0.84485875,3.340225,4.164125,4.838835,1.2130866666666666,2.848803333333333,2.3488666666666664,1.7562300000000002,1.859459705882353,1.859459705882353,1.281265,1.8795333333333335,1.122857142857143,1.3278219999999998,4.421885,4.247075,0.47367095238095236,3.52276,3.5248666666666666,3.80429,5.45225,0.42435349999999994,9.296455,5.5749,2.56911,3.937225,4.54112,5.3699264285714285,5.00245,6.826655000000001,0.6979081818181818,2.7741866666666666,5.2452,2.7620566666666666,1.7641325,1.92578,4.38731,5.20398375,2.4378294642857146,3.3922666666666665,3.049996666666667,1.8596375,4.48917,10.8008,8.34590625,4.0064,4.33236,3.14085,3.03497,3.922245,1.846466,3.0797866666666667,3.566555,4.910355,4.81887,4.85794,6.805133333333334,2.1039133333333333,4.049135,4.56148,5.03485,4.532335,7.792565,4.1245625,5.9,3.479165,2.89917,2.9593,6.0325,3.67023,4.866295,2.067495,3.0899933333333336,3.215525,5.82185,3.95129,3.781165,1.495074,0.88973,2.42951,0.5419226666666667,4.04546,3.58845,3.44801,2.795775,2.1135333333333333,2.8623,2.54535,2.880586,1.809222,3.005865,2.771575,2.23478,2.517375,3.801872,1.2552583333333334,2.8412233333333337,4.973555,3.7499000000000002,1.2096125,2.716953333333333,3.6328975000000003,3.632491,1.5559125,5.7199,5.38795,2.0776600000000003,2.830856666666667,30.022195069704804,3.382733333333333,1.7297666666666667,3.9697999999999998,1.5733533333333334,2.6225,2.93301,3.456566666666667,2.0285425,2.770725,1.8653325,4.251225,3.3362,2.5156,1.4733675,2.24418,2.879225,0.3837604545454545,1.1443025,2.7897966666666663,1.6959240000000002,3.33756,1.5559125,2.055613333333333,25.07324161111111,5.0024,3.87809,3.532545,2.37816,2.48964,2.5687333333333333,2.3089075,3.56209,5.089358000000001,5.2624,1.596918,1.728222,2.04764,2.35367,3.8152783333333335,5.12485,4.802255,4.32826,0.18538617021276596,5.03885,4.878229166666667,3.81811,8.73732,1.0771925,1.0771925,2.9288633333333336,2.677275,5.5189,1.8743144444444446,1.0414355555555557,4.2315,1.9027875,4.13148,3.839785,3.423855,4.00227,3.939045,5.2226,2.691455,0.6779877777777777,3.02042,2.19645,4.22929,7.724959999999999,4.15142,1.8187533333333334,1.8187533333333334,6.90241,4.746105,3.992585,5.28035,2.06414,5.186170000000001,1.5052899999999998,1.4754933333333333,3.0403566666666664,2.0436033333333334,2.82563,2.7142633333333333,3.76381,4.4654025,3.793095,5.4297,2.2972125,2.708075,1.8335325,2.64975,2.4078825,2.1319725,2.0684875,4.883365833333333,1.78331,3.3129971428571428,2.2905633333333335,3.0432466666666667,2.5774500000000002,1.6703700000000001,1.3995099999999998,0.930453,2.6665266666666665,3.9393666666666665,0.703864,4.57599,1.7160975,5.63800875,1.9210775,1.5007175,1.416245,1.5184433333333331,5.5146016666666675,1.890894,2.886646666666667,3.6623,1.22816375,1.82664,4.825096666666667,3.2277066666666667,2.0320966666666664,3.485333333333333,2.812246666666667,2.8163300000000002,1.2805319642857143,0.2803791666666667,0.2803791666666667,0.2803791666666667,0.2803791666666667,0.2803791666666667,3.682785,2.5610866666666667,2.60645,3.4541,1.4301199999999998,2.6436100000000002,3.0925,2.0538000000000003,3.213875,2.758165,1.7299066666666667,2.930616666666667,3.13551,2.0878,1.980885,3.75052,2.7751633333333334,3.8102,4.9871,2.519276666666667,2.5524333333333336,2.5517066666666666,10.898106666666667,4.739295,4.459535,5.0085,4.48909,2.81526,5.00295,3.73629,4.631335,5.355188333333333,3.794885,2.980255,2.275315,3.21578,4.956804571428572,3.374355,17.67402869047619,1.0762725,4.13221,0.8787977777777778,1.3170875,2.82095,4.548065,4.42722,5.0201,1.6664866666666667,2.406575,4.210755,1.9407733333333335,4.379755,3.1540325,2.548646666666667,0.5910466666666666,2.8613633333333333,4.59469,2.3812275,2.4000975,2.163415,20.19136,1.2320600000000002,1.3604125,2.6480566666666667,0.2955803846153846,1.7393175,2.8009500000000003,1.9529566666666665,2.9544533333333334,2.5831,7.485422499999999,1.862225,2.48783,2.159125,2.07933,1.629615,3.3468,3.102385,3.703825,3.2748899999999996,1.91231,2.6566783333333337,3.134763611111111,4.83387,0.4523525,3.6219,3.030056666666667,2.88609,2.036,3.6243499999999997,3.53868,1.5864466666666666,2.3376633333333334,2.235256666666667,1.4237166666666665,1.7558166666666668,3.40115,3.210095,0.717385,3.38422,4.77535,4.111895,2.25803,2.25803,2.7898133333333335,4.05961,3.198495,3.392085,2.2856725,0.8791127272727273,4.32508,3.617095,6.09685,3.686795,2.413328,2.413328,1.255645,3.34381,5.002,4.24977,4.21619,2.9012700000000002,2.2622433333333336,4.267715,3.091975,4.164745,2.7818766666666668,2.052776666666667,3.8753053333333334,3.0625533333333332,2.616373333333333,1.8882199999999998,3.499525,2.61985,1.6226666666666667,3.799985,3.06031,4.31936,3.7725000000000004,5.1798,4.21668,6.29250825,3.95422,2.1032800000000003,4.379015,2.64619,6.99912,2.4556533333333332,1.2018733333333333,4.62943,3.7264,4.940505,0.44958714285714285,0.8368916666666667,3.537755,3.568575,2.0120407575757575,4.42933,2.83412,2.795415,8.958894,1.967734,1.281898,3.459675,2.61201,3.42883,4.894475,6.3700849999999996,3.14635,2.12737,2.93056,1.8728333333333333,3.2877666666666667,8.494218727422004,0.826469761904762,0.9805125,4.3496,0.4416966666666667,1.6334525,2.06092,3.0214,3.097425,3.0577,4.597375,2.24342,13.17684,5.0171399999999995,2.5613,2.5613,4.184785,0.8637516666666666,4.79886,3.93993,4.137615,5.5515,3.59347,5.53105,1.3700866666666667,2.698545,2.716585,2.555885,2.96588,2.608515,2.992595,3.515335,3.51427,3.015885,2.90125,3.128625,3.979665,4.33197,2.9490233333333333,3.30313,4.721615833333334,4.277875,18.16324642857143,11.408655833333334,3.242165714285714,0.7019408333333333,1.4603714285714287,4.391425,3.504195,3.067458301282051,2.02132,0.8585422222222223,0.6525975,0.6353814285714285,2.0180175,1.587624,5.213351666666667,3.1833033333333334,0.7092727272727273,3.38744,2.41168,1.6147,1.743926,6.783060000000001,1.55941,4.39422,2.84529,2.9717966666666666,2.17625,2.5577666666666667,2.5615666666666668,0.7739981818181818,2.81253,3.069706666666667,3.919623333333333,3.0412966666666663,7.385345833333333,3.721585,3.4001,2.44376,3.538925,5.52705,2.1140125,2.43758,2.494755,1.57899,2.4203675,2.0980375,2.706025,0.91625,1.3963425,1.01871375,3.073835,4.288715,6.067,5.3951,3.020495,2.428225,2.6982,3.310726666666667,7.205473333333334,1.1078033333333333,0.357695625,2.888515,2.129793333333333,1.4909000000000001,3.417015,1.255578,1.7214946666666666,3.7526866666666665,2.738638,1.2555583333333333,1.8604633333333334,3.913783333333333,3.672715,4.28196,3.62281,1.793205,4.792415,3.80855,0.7636576923076923,4.5868,3.97486,4.43509625,3.2042366666666666,2.220645,1.2352919999999998,1.1823225,3.588745,2.6544,3.29826,3.88514,2.568695,2.6527766666666666,3.16872,3.60605,4.18594,2.41241,2.748265,4.268805,5.5556,0.53201625,4.388265,1.7835625,3.37563,4.114033333333333,1.9369575,3.039795,2.06518,1.977325,2.450795,2.240708333333333,1.7667133333333334,3.82294,3.68015,1.2775314285714285,7.00647,1.03349,3.469875,1.65424,4.49929,3.95025,3.1546000000000003,2.948925,3.98171,8.25323,2.89822,3.566035,3.543915,3.615275,1.6841725,7.86857,3.566,3.80165,1.424735,4.179665,2.951105,1.00156375,1.994162,3.97047,2.148485,4.00873,5.01265,4.017962499999999,4.43366,2.076955,5.0688,3.90883,3.4560666666666666,2.42557,1.46522,4.184905,5.85355,3.83929,4.49687,3.309855,2.18832,3.79342,3.40579,1.2321904395604397,4.154495,4.64412,3.800995,2.889325,3.55374,0.5400242857142857,0.5400242857142857,4.320885,3.75455,3.939715,2.277255,3.802165,6.3052,0.8390470000000001,3.931985,4.65189,4.669735,4.80805,4.758015,1.845965,3.11706,2.1672075,4.452935,0.67435,4.048285,4.14303,2.805625,2.88354,4.263675,2.3508,3.363765,59.97023988095238,3.26752,2.5759633333333336,1.6729625,3.18176,3.922795,0.7831875,0.9588675,2.01727,2.01727,1.301636,3.21484,2.26465,3.699496,6.95821,2.8072666666666666,1.2209314285714286,1.292885,2.6650633333333333,4.032098333333334,0.7846529999999999,1.967745,1.248862,1.968705,4.281865,4.160105,3.22733,20.417313261904763,3.07131,4.0181,3.277435,2.2620333333333336,2.873635,3.248345,2.5232,5.61664,1.452216,4.054785,3.371843765873016,5.881351111111111,1.934185,2.576065,1.93774,4.3645,2.4108133333333335,2.19217,2.10981,3.559123888888889,3.3477,3.35045,3.798965,4.333915,2.5014,2.60408,3.08129,2.77051,2.934058888888889,2.24062,2.1023525,3.581725,1.1956166666666668,3.774075,4.574525,2.59263,4.73689,4.816235,5.4022,2.013736666666667,2.470135,2.75447,2.85585,3.95073,3.62267,4.62683,0.8029557142857142,3.961787333333333,3.005595,3.834895,2.3024325,1.76935,3.8112733333333333,1.1112,2.934485,4.117675,1.107842,3.63768,3.474255,4.467325,6.173045,2.11597,2.775675,2.6086766666666668,3.6905666666666668,2.9829633333333336,2.740856,3.11523,2.5746066666666665,2.431156666666667,1.3495833333333334,2.0589225,2.0589225,2.0139533333333333,2.0321533333333335,1.7785733333333333,2.6165333333333334,3.835915,5.69025,4.69526,1.568875,4.203835,4.18545,3.46626,4.14323,1.897495,1.88812,4.6542225,1.7446,4.190026666666666,3.75724,3.566635,2.3908533333333333,3.6446168749999996,3.272215,3.090545,3.445725,0.14634897959183674,2.3774533333333334,7.598965,1.4975580000000002,3.503055,3.390065,1.0245157142857144,1.178345,1.8637325,3.852915,2.808365,6.86311,3.48034,3.71654,2.983105,2.67767,3.397255,3.367375,4.003825,3.39909,2.798023333333333,5.43805,4.03675,4.132245,2.396873333333333,2.0215325,3.58218,4.418065,2.768365,2.95616,2.094315,2.529095,4.48183,3.75768,2.695885,4.63268,5.16955,2.794675,3.81268,3.938315,3.57035,4.33195,3.32909,3.365435,5.72572,4.71542,5.038,4.8541,4.487475,5.1670075,4.359575,4.029255,1.304922,6.5046,2.491255,4.201305,4.112205,3.901825,3.1644799999999997,2.0190333333333332,2.23581,2.5202966666666664,1.00016,3.342033333333333,4.002633333333333,3.223046666666667,2.0182266666666666,3.657255,4.1078,2.649573333333333,0.5616108333333333,4.47887,4.66223,4.981855,4.698065,3.81985,4.492535,4.82371,4.9417,1.3704666666666665,0.9494307692307692,2.8595733333333335,5.3364,5.8817,0.500945,2.92493,2.48534,3.414,4.44525,4.052966666666666,2.0605675,5.38285,3.490735,4.427775,3.16569,6.40245,5.0187,6.887152499999999,0.5319925,4.183515,0.8112999999999999,2.290875,4.128566666666667,3.0469033333333333,1.2583633333333333,2.3317,4.197215,3.527445,4.291895,2.123886666666667,2.055545,2.95367,4.4136,4.11622,3.64006,1.65018,1.2089564285714287,6.10375,2.202125,7.536490000000001,4.159735,3.54039,2.1795675,1.5945,3.998995,4.520705,1.8018833333333333,2.36007,2.519925,2.3774533333333334,6.481609166666667,2.9868233333333336,2.7711733333333335,4.179431666666667,3.97998,1.9235366666666665,3.1618,6.9182525,4.56486,5.26335,0.4903436363636363,3.35883,3.87979,4.789987857142857,3.823955,4.36135,2.986875,2.84572,3.38666,2.792225,3.5285645,1.970678,5.576838,4.831535,4.6553,4.012,3.317565,3.3028025000000003,2.2878375,1.319975,0.9180275,2.80388,2.49851,1.08977,2.60088,5.09195,4.71605,3.87186,3.97369,16.891889642857144,3.87195,4.53569,3.9245,0.6909025,4.98704,4.33938,4.18649,4.743645,5.2783,2.562985,3.65085,3.328835,1.50672,3.179575,4.54469,3.2961833333333335,1.492236,3.63022,4.901135,3.900245,4.719165,4.76548,5.19585,3.96683,2.653846666666667,4.1052,3.927365,2.63082,3.0129699999999997,3.069483333333333,1.5245383333333333,4.68294,2.6294192857142855,2.1198533333333334,3.90758,2.101025,4.245825,4.00901,2.3174,2.74525,4.604945,3.685595,4.350525,4.447635,4.892575,4.718737,3.31566,5.35245,2.7391550000000002,3.443125,4.54547,1.594006,4.146965,1.0755016666666666,4.395905,2.97569,0.9544371428571429,3.82325,2.06621,6.430815000000001,2.324254142857143,2.324254142857143,2.324254142857143,0.6762416666666667,1.2057883333333332,1.75258,3.49838,5.51286,3.410172222222222,1.995335,2.04276,1.6610033333333334,3.9517,2.429225,0.4140692307692308,1.73075,2.1614775,2.839415,1.79795,2.25397,2.471725,2.038725,3.912305,3.07002,3.63592,3.06644,1.927545,6.34139,1.918605,4.27701,3.828185,5.999090000000001,1.5807466666666665,3.681225,3.85724,3.725205,4.17065,2.85536,1.931255,3.83613,5.642015000000001,2.010475,3.50057,3.14469,1.88081,4.64139,4.18575,2.45024,2.29643,3.6246975,5.413645,6.0816,2.948295,2.33709,2.654845,2.91555,2.60605,4.299575,1.2837875,2.83387,4.669685,0.7741825,3.284995,3.88583,3.70972,3.264535,2.291685,3.10538,2.007805,4.529615,7.961318333333334,4.21455,3.384035,3.17884,0.9885975,4.30087,2.256715,4.307435,5.534685,3.98635,4.16424,11.29248,4.66673,4.083625,1.46812,0.7034158333333332,2.529175,3.904915,3.59313,3.62684,2.1468633333333336,2.292473333333333,2.08224,1.1716733333333333,1.1716733333333333,1.9927833333333334,2.349676666666667,1.81131,2.2955366666666666,2.6451266666666666,2.29964,2.5268133333333336,2.71484,1.4441533333333334,2.4824066666666664,2.1231033333333333,2.00295,1.5209175,2.50689,0.5888950000000001,9.411409583333333,0.5888950000000001,3.0635766666666666,2.0331833333333336,1.7906433333333334,4.271905,4.31301,3.84429,4.39028,2.17914,2.891086666666667,3.3265686666666667,1.97076,2.9361633333333335,2.657363333333333,2.48904,2.41146,1.6453166666666668,5.52535,6.285223523809524,3.13973,3.3981,3.270016666666667,2.5555933333333334,2.4140266666666665,1.0535428571428571,3.5339333333333336,3.5642,3.940965,6.06565,4.198565,2.8512233333333334,3.5332333333333334,3.0392166666666665,4.184435555555556,4.3674,2.5404666666666667,3.26954,3.2075033333333334,3.085836666666667,4.74294,3.3392,3.35817,5.80979,1.8932399999999998,2.7344266666666663,1.4003166666666667,1.49038,4.6615,3.3838783333333335,2.27053,2.14567,2.10417,4.353115,3.74826,2.718395,3.4016,3.05462,3.3972333333333338,3.3412333333333333,3.4583666666666666,3.0612433333333335,0.58012,3.5925,2.426633333333333,2.66037,3.38533,4.29648,4.0916,4.96539,2.73336,3.811015,1.04671,2.8866433333333332,2.8866433333333332,4.029855,2.85303,3.68647,4.33617,1.822345,3.4559,3.722245,1.3011914285714286,3.6170150000000003,3.1383274285714284,2.247956,0.368706,4.797615,2.815125,6.343109999999999,2.803505,6.40705,3.250595,3.791175,3.832325,1.6479616666666668,2.90291,3.84986,3.3792,3.5374666666666665,2.9269700000000003,5.4350125,2.1037075,0.93767375,1.8855433333333333,1.6818333333333333,5.00743,2.3051766666666667,2.37141,1.8010425,4.201435,3.87127,4.089905,0.5163610000000001,3.91375,3.794745,2.3927166666666664,2.3760133333333333,2.3740733333333335,3.1183125,3.87484,1.5788333333333335,0.6429736842105264,0.803,3.4002666666666665,3.704055,5.765333333333333,4.68834,3.977265,5.4391,1.3446771428571427,4.114033333333333,2.2313733333333334,0.95425625,5.2621,5.9333,2.315395,4.783845,3.92302,6.345865,3.9055,6.1559116666666664,3.710585,2.358326111111111,5.7656,10.169361384615385,2.479416666666667,0.6734060000000001,3.117765,4.108145,2.260845,6.20865,3.725785,3.55236,2.6822933333333334,2.6822933333333334,5.8036,3.24518,3.902465,4.812175,3.631043857142857,2.2673877142857144,1.06136375,4.480375,2.68697,5.185740000000001,3.433545,3.8568,2.575145,1.97762,4.37832,4.98321,3.5402,3.9341,4.27311,27.00103107142857,1.884095,2.57795,2.3739525,1.6495416666666667,2.5685933333333333,0.9797185714285714,2.6823566666666667,2.98743,3.474833333333333,2.77965,0.5882523076923077,3.09665,3.180735,2.661515,3.256693333333333,3.476275,5.25253,4.66897,3.62706,3.549305,3.7504199999999996,3.8084,3.466366666666667,1.72493,1.0006166666666667,1.4098733333333333,2.2330200000000002,1.5216033333333332,2.782363333333333,2.475773333333333,2.38803,1.8185799999999999,2.708545,2.002265,1.8134033333333335,3.28187,4.315505,3.58863,3.929175,1.3675700000000002,3.2130666666666667,2.4704099999999998,3.6945,2.25968,2.63132,2.3261,1.44337,4.07961,6.656655,2.85818,3.79067,3.98305,2.630375,3.2690508333333335,3.4317666666666664,3.22,4.519125,0.32272626769626767,0.32272626769626767,4.830405,5.33845,3.19931,2.89889,5.3199,4.250945,0.6498169230769231,4.969205,4.106765,3.59014,6.2808,4.51259,7.31111,13.821760833333332,12.561564230769228,4.41597,4.32346,2.4112899999999997,0.5938892307692307,2.58568,4.19752,1.3669799999999999,4.624495,3.488766666666667,2.8550799999999996,2.0797866666666667,2.0480666666666667,4.86835,5.0159,9.136957500000001,5.3573,3.99265,7.575196666666667,3.35768,3.567466666666667,1.56709,5.468719999999999,1.91452,2.3583633333333336,2.67013,0.2287278125,3.034775,3.42869,4.472915,0.8412919999999999,1.1519166666666667,3.95572,0.560398,0.560398,2.8419837500000003,3.455966666666667,3.1460899999999996,3.865445,4.19948,5.53005,3.90491,4.182755,2.883775,3.237413333333333,2.4718166666666668,0.9170250000000001,2.68824,2.834575,2.93236,6.95279,2.73432,9.71035,3.17615,4.88755,2.88919,2.235265,2.412915,2.7307,1.8028675,2.2877575,1.9541825,3.3504,2.3100825,4.0446675,2.619635,4.024870833333333,4.024870833333333,2.8725233333333335,2.8725233333333335,8.578169833333334,2.3977233333333334,0.825553,2.53964,2.44427,2.5164866666666668,4.0446675,1.907754,1.9316140000000002,1.566484,3.92201,3.947375,1.618795,4.51802,4.15377,5.586702222222223,6.343821666666667,2.1724566666666667,4.35382,5.51171,3.545375,2.879245,1.85461,3.140905,3.282823333333334,4.056945,5.087983333333334,7.3027413333333335,3.389095,3.28453,1.1580966666666666,4.29448,3.7842006666666665,3.569945,3.720083333333333,4.285535,2.317315,2.4193266666666666,6.15935,2.981585,1.3563779999999999,5.43264,3.698665,2.557376666666667,5.10215,2.557376666666667,2.57199,3.40706,4.942175,1.0274571428571428,4.002143333333333,4.57234,3.585165,1.2589816666666667,1.706645,3.19075,3.81841,2.54247,6.5719433333333335,3.926045,3.61612,4.10505,4.3842550000000005,1.370945,3.75804,2.582465,3.557305,3.9109,3.49858,4.75262,3.22918,3.860185,4.414555,1.9103676666666667,1.8198975,3.08494,3.7144,3.2975,2.7766866666666665,3.5404999999999998,3.0990633333333335,5.6122,3.41401,3.487585,2.86258,1.7849933333333334,3.4088666666666665,2.0786233333333333,2.99382,3.27009,2.910255,0.67435,2.0300525,1.7362533333333332,3.477445,1.755574,3.513623,4.520905,1.1630800000000001,3.0591475,4.366845,0.845162,1.3091233333333332,3.228455,3.85978,3.32347,1.928415,1.7431566666666667,3.5895,2.4212491666666667,1.6507666666666667,2.851355,1.79892,1.227258,1.346235,6.74422,3.137615,2.20121,2.32275,2.341175,3.7725,0.83324,0.35216357142857146,0.7869900000000001,4.742015,1.7738938571428569,4.843135,2.05288,1.718965,2.9865627142857143,1.267597714285714,1.079633,0.746838,0.5994357142857142,2.472713333333333,6.3176,2.97712,4.55292,0.3574178571428571,3.583785,17.469310095238097,3.25426,6.7808607762237765,1.07440625,1.07440625,1.07440625,1.07440625,5.772453333333333,4.23137,4.54438,2.1969233333333333,2.959605,4.247905,5.4577,3.788555,3.46084,4.047245,3.62174,3.62896,3.6512886666666664,3.994845,5.06245,3.69559,4.492735,3.498765,4.28301,2.6186766666666665,3.6025,3.29388,3.77556,3.649815,4.33008,3.0789733333333333,2.43979,2.529526666666667,4.01972,1.3075214285714285,3.792215,2.26593,3.2113259999999997,4.017962499999999,4.38682,3.045345,2.76651,4.48284,3.098025,3.26822,5.3965,4.611785,3.396235,3.408555,1.6855660000000001,1.6855660000000001,1.7792975,4.665345,3.72784,5.581127,5.1511,3.6047316666666664,6.5182,4.912035,2.1461225,9.36754,5.2837,6.2265975000000005,4.43393,2.81142,2.998765,0.2600803448275862,0.81569375,3.9750440000000005,3.26197,4.705355,2.9394033333333334,6.045351666666667,4.97752,0.5735057142857143,2.81777,0.474563,1.6631192857142858,3.151655,2.271755,3.91573,3.64649,3.27594,3.55061,3.36987,3.66516,3.364875,3.559215,3.06249,2.2205,1.6631192857142858,2.936595,2.077625,3.72361,2.34706,3.971105,3.60324,1.6841725,4.479255,2.731195,1.3009133333333334,4.37419,4.667115,4.30684,2.637286666666667,2.9995700000000003,4.16862,1.9186533333333333,1.36944,2.464393333333333,2.4428966666666665,2.57821,2.0770866666666667,4.680735,3.432605,4.8796175,3.6731742857142855,4.812775,3.851575,1.6224319999999999,5.2471,4.27087,5.2847,4.127555,6.706485,2.0982625,4.625675,3.138205,3.16069,1.7475275,1.7172633333333334,3.86165,4.306595,2.4058633333333335,2.6423929166666666,3.6378125,3.6378125,2.589836666666667,3.060363333333333,3.354725,3.92412,3.62481,0.6941453846153846,3.22613,4.317295,5.1577866666666665,2.78954,2.893265,1.8045575,2.814305,3.56157,2.30235,4.42182,2.75887,5.11455,1.9650433333333333,1.0253272727272729,6.23021,3.74964,3.1973566666666664,2.9511066666666665,1.7610540000000001,30.284666059523808,3.792445,3.38802,5.90025,4.495135,0.839375,6.564405,1.818455,5.63985,1.3896666666666666,4.16243,5.007265,3.70182,3.37007,2.0408575,3.2116733333333336,4.888065,2.0197775,2.7256066666666663,3.547305,2.409065,2.65271,6.05845,2.36475,6.41525,1.07651375,4.233085,3.60694,3.979555,5.10095,2.959675,2.3437933333333336,4.107675,4.488405,3.7900574999999996,3.7900574999999996,5.99155,2.3159925,4.411295,6.4691,3.37327,4.04121,3.246135,5.11015,3.599385,4.180945,1.33074,2.351695,4.37545,4.32301,5.95035,4.328305,2.463725,9.274553333333333,3.00932,3.606725,1.7617285714285715,3.53808,2.1473566666666666,2.62541,1.9813483333333335,1.1969666666666667,2.57875,0.9214814285714287,1.0976457142857143,1.0976457142857143,1.0976457142857143,1.8001666666666667,0.551185,3.965095,1.12567,2.2353066666666668,0.8382566666666666,1.7195600000000002,2.7356466666666663,1.8713966666666666,0.70534625,1.58997,1.4101800000000002,2.44843,1.6476359999999999,1.6476359999999999,1.63634,1.7850066666666666,0.92616,1.6890366666666665,1.5720966666666667,1.29461,2.268915,2.134275,5.8885,1.6091375,5.69635,17.064690916666667,6.66118,3.285145,3.611485,3.4821333333333335,2.7808333333333333,2.6397833333333334,3.108703333333333,0.7223041666666666,0.987408,0.987408,0.64915625,2.4240766666666667,3.491905,3.288755,1.533968,4.764365,4.081435,2.496305,3.64298,5.28065,3.958225,4.05051,3.4888333333333335,3.33321,3.640435,5.6888,3.0358433333333337,4.886875,0.517352,0.517352,2.149895,2.73193,4.64797,3.536045,3.675215,4.813055,7.690036,7.52855,3.58703,2.28951,4.139625,3.23965,2.488523333333333,2.186135,3.66393,1.3053966666666665,3.86685,2.20164,1.51824,3.5565333333333338,3.68817,2.03125,5.087983333333334,1.585485,3.3876000000000004,2.91359,1.0829142857142857,3.5661666666666663,2.7973733333333333,4.132665,1.095225,1.69903,2.1777325,2.146815,1.65509,2.3750425,1.8832275,1.973205,4.220605,4.394435,2.481335,1.800505,1.4162133333333333,3.5288,1.96115,2.5281,4.690565,7.2226,3.0050841666666663,2.90049,3.56738,3.5094,2.404785,4.773955,3.953085,3.12877,1.330275,4.783835,2.25976,3.3913666666666664,2.51393,3.54525,4.806265,5.74915,2.1661333333333332,2.607413333333333,2.746863333333333,3.3539999999999996,2.0315166666666666,1.54433,5.4454,3.4149999999999996,2.241553090909091,3.2019066666666665,2.93267,2.52643,3.246446666666667,3.001023333333333,3.4514666666666667,5.2315,4.475,2.8749300000000004,4.81929,3.161555,2.320315,3.532085,4.00972,4.209095,6.0278175,1.81449,3.8305,2.38372,3.49181,3.74599,0.5784175,2.220105,2.350035,3.273205,2.75099,2.18237,2.81278,0.577733,2.62801,4.310445,2.4034675,4.15356,2.45504,4.018035,1.9703225,4.418705,4.515135,2.10244,2.816535,7.051270000000001,3.804835,4.40509,4.96278,7.044624204545455,4.19358,4.25202,2.0909625,4.292835,2.849135,1.9156033333333333,1.9418075,2.1133566666666668,0.9763828571428571,2.6158,2.3370166666666665,2.6564633333333334,3.267136666666667,1.764022,3.17655,1.9237533333333332,4.190775,5.2362,1.019925,1.9183966666666665,2.48356,2.898766666666667,1.9734833333333333,1.0982183333333333,5.453903333333334,2.0622475,2.61116,2.7714499999999997,2.4072833333333334,2.648823333333333,3.170495,2.2683733333333334,2.68603,2.1010133333333334,3.94891,3.53745,3.8579,3.0151966666666667,2.96077,0.727811,1.7586166666666667,2.16377,2.0101400000000003,2.55955,1.158155,2.7362300000000004,2.936616666666667,3.559445,2.03797,3.541685,3.073915,4.8119,3.26559,0.6286508333333333,2.14378,2.8033099999999997,3.22964,0.7247790909090909,2.697843333333333,3.4061719999999998,3.119783333333333,2.80443,3.2455691666666664,3.708905,3.8133,3.1059,2.0550275,5.52925,4.977235,5.0414,5.53625,5.6309,1.8362299999999998,2.94785,3.6722333333333332,3.2514466666666664,2.8386533333333333,2.618986666666667,3.8714999999999997,3.4794,2.86487,13.539235,4.321105,1.09585,2.650186666666667,1.500148,3.3308466666666665,3.1845866666666667,2.1662333333333335,5.3812375,6.560226166666666,2.2182733333333333,0.8504479999999999,4.13157,3.4059000000000004,3.150095,4.48863,5.3707,5.64045,4.42749,3.52124,1.8693,6.406252500000001,1.1580966666666666,6.0726675,4.62281,2.2456733333333334,4.183775,7.100994999999999,5.79445,2.2210466666666666,1.3916199999999999,2.18006,7.113045,1.5559125,2.8970966666666667,2.5146550000000003,4.044758888888889,5.7967,4.38122,6.4353,3.52185,4.972625,3.64965,8.27269,4.75284,5.72945,2.59281,2.635525,11.138136666666666,3.472315,2.575225,2.46929,1.73996,1.96424,3.4255,0.69847,1.07668,1.0878742857142858,3.085155,6.88218,3.00441,1.41019,4.64552,3.975605,0.566324,4.831315,4.43072,5.3069,3.52572,3.256365,2.69444,4.2529,10.447605,1.8383475,3.854335,3.580965,4.53678,3.84898,0.81076,3.531166666666667,4.1072,1.84734,2.5175,2.3030866666666667,2.4951133333333333,2.013333333333333,2.198803333333333,2.17185,5.8374435714285715,5.34745,3.62906,5.132916666666667,1.6990966666666667,2.29297,4.61512,4.288695,4.551995,4.05268,4.47115,4.676295,1.6855660000000001,3.707085,7.439066666666667,1.265375,1.6371200000000001,2.464846666666667,2.3635433333333333,2.886976666666667,4.767992333333333,0.803,2.44564,3.45545,6.47685,4.71709,2.155273333333333,2.8512766666666667,1.9944825,0.538903125,2.2311575,3.06652,7.67693,4.362995,4.435825,0.9083690000000001,4.7540000000000004,9.110135083333333,10.452521666666666,3.237005,1.19596125,3.6151,3.51133,2.6278966666666665,5.260548666666667,4.54783,4.29149,2.0350375,3.7553,2.179603333333333,2.5630666666666664,0.7547027272727272,0.3533386666666667,2.43956,3.61558,2.030276333333333,3.339335,3.138006666666667,4.316905,5.55315,1.523194,3.0422333333333333,2.0193275,2.0193275,2.15561,3.69052,6.90075,2.6175366666666666,2.363846666666667,3.268333333333333,3.3983000000000003,4.139505,4.19731,4.182745,4.08645,4.1461,4.119895,7.20685,8.1525575,1.9864075,2.416,3.00962,0.9189466666666667,0.6733525,4.48674,2.284245,5.12855,2.9052966666666666,3.0031833333333338,1.698336,1.42665,4.100055,4.366835,4.298755,2.1495166666666665,1.2892633333333332,2.7182166666666667,1.9663866666666667,2.5068566666666667,1.1474842857142857,1.1474842857142857,2.7570566666666667,5.10005,2.95869,3.305915,3.59667,2.079715,19.942471954545454,3.9063,5.46105,4.046345,4.439685,3.92369,3.705375,5.61875,6.1413150000000005,0.7458066666666667,0.7458066666666667,0.7458066666666667,2.7087733333333333,1.7447,3.3585333333333334,3.940005,4.079975,3.138195,3.94324,4.543575,0.8032133333333333,1.9530200000000002,2.1606533333333333,5.920156666666667,3.32163,3.962386666666667,4.995535,1.9369575,2.0334033333333332,2.3734466666666667,0.5000725,0.808832,1.659095,2.07118,2.89329,13.266011666666667,2.5221766666666667,5.43875,0.7518214285714285,9.07314,5.60895,3.718745,4.08842,2.68235,5.2762,2.68235,2.8339980000000002,3.30386,3.837755,3.486475,4.116085,4.190085,3.43302,5.76875,6.651590000000001,1.7537533333333333,2.23423,2.691405,26.12499391055341,1.5924939999999999,6.3326,3.8267239999999996,3.891675,4.632795,4.03996,2.813715,2.71637,2.14286,6.78875,7.2069,4.48636,4.88883,4.096845,1.858255,1.85496,4.216645,0.4368484615384615,0.4368484615384615,0.4368484615384615,0.4368484615384615,4.087365,3.1835916666666666,0.86709,1.8169966666666666,1.1569666666666665,4.343665,2.4302733333333335,2.3242875,6.932586666666666,3.12076,0.1676706896551724,20.256258333333335,4.633616666666667,1.7747160000000002,1.2957925714285714,2.14946,1.9504259999999998,2.217555,4.519715,3.27189,3.470245,4.423735,2.1489166666666666,7.5062325,2.81616,1.90787,4.524495,5.86655,8.638676666666667,4.109435,0.3024390243902439,3.611845,3.982815,2.749216666666667,1.9460125,2.898823333333333,1.6271133333333332,1.6271133333333332,4.1151,5.659912500000001,11.154430833333334,9.1208,0.5810833333333334,2.4210599999999998,3.74828,3.15201,4.835585,3.649815,1.23682,1.23682,3.39476,3.95641,2.8872466666666665,3.58313,4.22839,5.2879,6.96375,2.28268,4.63725,4.18179,2.580435,2.9957666666666665,2.88936,4.88089,4.14276,5.62895,4.1828,4.39517,3.769495,4.29742,4.22152,5.3865,2.54198,3.14752,1.091796,4.282305,4.08604,3.71056,1.6089759999999997,1.96556,3.7058666666666666,2.8231033333333335,2.145383333333333,4.15817,1.7633166666666666,1.8452125,2.52846,2.20012,2.4263266666666667,1.6783433333333333,3.8627333333333334,3.01549,4.2576,3.2674825,2.1017766666666664,2.6081666666666665,1.94825,3.370635,2.3630833333333334,37.30991933333333,2.1309880000000003,2.1309880000000003,2.4516133333333334,2.4132333333333333,2.1003633333333336,1.5601566666666666,2.8276166666666662,1.65256,0.8170692307692308,5.05825,6.6158575,4.26099,3.920655,5.3047,1.8256500000000002,4.12571,1.789768,5.10495,4.85021,5.56915,4.040365,1.72493,3.843065,3.93132,4.355435,4.57498,5.19715,3.907845,3.05974,3.4629666666666665,2.61891,1.96757,1.81826,4.334955,2.42836,3.759445,3.759445,2.1425733333333334,1.48205,2.10583,2.4295033333333333,2.0932366666666664,5.34598,2.6872933333333333,1.1725066666666668,1.1725066666666668,2.0215466666666666,1.8584633333333331,2.6054066666666666,2.5891433333333334,2.492173333333333,2.3705700000000003,2.21254,2.124689,2.8858975714285715,1.5474235714285713,0.7612085714285713,61.79411460515873,2.50533,3.5352,2.401056,0.82524,4.080782666666667,1.565556,1.565556,3.201193333333333,2.9738933333333333,0.786215,3.25414,5.401526666666666,3.2370433333333337,2.4444,2.9480866666666667,2.0521266666666667,2.7870359999999996,0.29221375,3.11931,0.7545759999999999,2.497456666666667,1.109446,1.109446,3.423166666666667,1.97821,2.8069333333333333,1.7795020000000001,3.5629333333333335,1.7795020000000001,2.1386166666666666,2.5670466666666667,3.0551066666666666,1.418478,1.418478,3.0503,1.4129133333333332,3.21259,2.3349266666666666,4.35374,3.445215,11.88299875,7.05518,3.1495,2.40196,3.92141,5.28375,5.5796,2.722384166666667,3.66989,3.765195,2.2611166666666667,3.907585,3.163046666666667,2.8290166666666665,4.870935,2.22763,1.0434171428571428,3.6737737500000005,2.8040000000000003,2.855975,0.7862214285714285,2.481515,3.41193,4.094705,4.310455,6.6148,1.9407733333333335,1.8339919999999998,4.387115,4.565845,2.354335,2.5075691666666664,1.9473933333333333,2.0418933333333333,0.81477,5.0607,4.39709,3.437165,3.74658,3.0305,5.3348,5.07675,2.7025233333333336,1.7200633333333333,0.5095406666666666,14.389491166666666,0.5142490909090909,0.5142490909090909,0.5142490909090909,2.9326933333333334,3.8768,0.5142490909090909,6.95275,4.25171,0.7080460000000001,0.7080460000000001,3.3254966666666665,3.22134,2.92496,4.36886,4.917085,4.144942,2.4281225,4.973551333333333,3.27674,3.538674642857143,4.7487,2.91983225,2.3879775,2.3967425,2.731625,1.6575275,3.3647825000000005,2.9388366666666665,2.3196525,2.049905,1.9095325,1.7796166666666666,1.63507,2.647275,1.0563411111111112,2.423645,0.6105392857142856,5.17665,1.729475,0.6408291666666667,2.052235,7.73412,2.530445,1.9865525,3.3505975,7.18125,2.548825,4.187755,2.96205,6.06372,3.27904,3.92622,4.333875,4.085945,3.05965,4.238668333333334,1.1257242857142857,3.945785,2.4730333333333334,2.6078766666666664,2.572675,2.274965,2.0058599999999998,1.269825,5.60195,0.9351727272727272,4.927755,5.65385,5.1771,5.1246,3.8008,2.4286600000000003,1.937376,2.8874033333333333,2.8059066666666665,2.442215,3.7721666666666667,2.682275,5.0341,1.860172,39.92179373015873,4.50084,2.46972,2.31675,2.838366666666667,1.61428,6.272816666666667,3.543695,2.45524,3.2893266666666663,2.260283333333333,1.7078825,5.07555,0.7825285714285714,4.334495714285715,1.2308128571428572,3.4600666666666666,3.2789800000000002,2.7241633333333333,1.41725,4.373450666666667,1.635706,1.635706,2.38374,2.756474166666667,3.3419333333333334,3.3508333333333336,1.3620733333333332,2.85228,2.5571633333333335,6.228741666666667,2.72665,3.5479149999999997,0.98249,1.4511233333333333,2.9959233333333333,0.93606,5.23519,3.4184666666666668,2.82314,3.5441333333333334,2.769,2.6954100000000003,3.31456,1.6633666666666667,2.341175,2.3960733333333333,3.4812999999999996,2.508853333333333,3.7283333333333335,2.0105933333333335,0.6325780000000001,9.761080448717948,2.7063633333333335,5.23335,4.999565,2.7735,3.0853866666666665,1.232865,2.229763333333333,2.11856,1.232865,4.38604,0.452325,0.452325,1.24482,1.24482,0.79708,0.79708,2.248895,2.94393,2.19936,1.264715,1.731595,3.614875,2.830935,4.656405,5.36505,1.826144,4.34512,2.312615,4.54425094017094,1.4604625,1.4604625,2.56568,1.620396,3.8683066666666663,1.964315,4.24675,1.6664866666666667,2.6356,0.5501115384615385,1.092067142857143,2.090175,2.26939,1.8040025,1.30091,4.175425,4.170445,2.0332233333333334,2.3313366666666666,1.3325566666666666,0.6983833333333332,2.1862033333333333,3.262125,2.84042,4.432975,4.948335,4.8996,3.75861,6.668464999999999,1.4910483333333333,5.8959150000000005,1.81782,4.36554,4.603195,5.763929,3.3628,2.30551,1.75418,1.921992,1.921992,2.44862,2.44862,4.18932,5.87305,0.9349999999999999,3.86984,3.21202,3.46038,2.562133333333333,1.4114525,2.8404166666666666,4.22962,4.07425,1.731886,6.6567,4.86237,1.8278933333333331,1.3092125,3.93064,3.982223333333333,3.4892,3.55091,3.795415,0.648115,3.765233333333333,3.5401333333333334,2.73244,2.8459766666666666,2.1806933333333336,3.7662666666666667,1.5390142857142857,1.5390142857142857,1.5390142857142857,2.927303333333333,3.03661,3.4115333333333333,3.258904583333333,2.3224925,1.2274942857142859,3.2829599999999997,3.1555433333333336,1.40139,2.6852533333333333,2.6353833333333334,1.2087185714285713,2.6122,2.8041300000000002,2.9047466666666666,2.66147,2.4917666666666665,1.959605,3.2142366666666664,4.6551746666666665,4.052555,1.01479,1.439724,0.494668,3.5627666666666666,8.882315,2.936006666666667,3.469445,3.2178766666666667,4.224645000000001,1.843865,7.47656,6.602086666666667,2.5933466666666667,2.185770571428572,3.915905,4.673325,1.54642,1.206762,1.399586,2.02603,10.495103333333333,2.5817666666666668,3.1144766666666666,2.9296456666666666,3.795145,2.11923,1.0870375,4.62576,1.1406266666666667,3.1601338461538466,4.4298,3.1907,3.2025,3.08801,4.708595,1.1994416666666667,2.063815,1.8823050000000001,1.8823050000000001,3.801345,5.7753,8.984475,4.29394,3.27402,4.60085,1.800595,2.3674458333333335,4.519695,3.225365,3.7389,1.5726266666666666,2.8908,3.42324,3.7641,2.3383,4.085355,3.8162,3.74729,4.03692,4.0903,3.92997,5.3761,3.0960933333333336,2.4946733333333335,4.29681,2.88653,3.92879,1.872535,2.37244,2.73382,5.83985,2.572435,3.231558806818182,1.6797675,2.500205,3.115755,2.1318825,2.11089,0.8357266666666666,0.8357266666666666,1.72619,3.551156363636364,4.03022,2.869263333333333,4.50837,2.9445775000000003,2.4462462857142855,0.96083125,2.74495,1.36647,3.982255,4.018335,0.8815662500000001,1.83159,4.045025,2.9164375,1.5787475,1.6161033333333332,5.014364285714286,1.1463583333333334,2.710885,3.24395,2.68971,2.444045,2.922942,2.08956,1.013455,2.810035,2.938895,3.3564,1.43072,1.4821633333333333,1.77812,4.47658,2.083665,4.473915,4.496725,4.47446,6.0533,5.1049,4.07497,5.996585,3.9687204761904766,0.8083636363636363,2.884325,4.42029,3.605065,0.49450909090909095,0.919846,3.00141,4.1329,4.67525,4.208815,3.217945,2.74932,4.57968,1.6941,2.484385,4.481255,4.37781,3.16325,2.95953,3.716795,4.58324,2.94603,5.1327750000000005,0.89301,3.312225,2.6776,4.360195,4.44632,4.43422,2.2084,2.614075,3.11616,1.95028,4.871875,3.449235,1.3185042857142857,2.658705,3.807235,1.460288,5.689584999999999,1.7714200000000002,2.49905,13.60090699280252,2.7670333333333335,1.4812566666666667,1.6331833333333332,2.15504,5.492495,1.65018,5.717154833333334,0.6787500000000001,3.2541733333333336,4.17362,7.549994999999999,2.7546866666666667,2.83901,2.83901,4.41813,4.216465,3.402875,3.25578,4.76741,4.88058,2.3021,3.16654,4.587965,1.1966533333333333,2.2441999999999998,4.390165,3.856995,2.797805,2.2765366666666664,3.940765,3.501435,6.134881666666667,6.238792500000001,0.684901,4.07053,3.39918,3.938466666666667,4.26109,3.92808,3.599105,1.36411,4.920285,2.35332,2.8195,4.23867,4.23879,4.33899,0.8492944285714286,2.6953266666666664,9.177671333333333,1.4845816666666665,2.049872337662338,2.2634425,3.82594,3.38901,3.228945,0.6398490909090909,2.30656,1.67047,2.1838975,4.23026,5.263699333333333,2.6914059999999997,8.990095,2.3710066666666667,2.67494,1.06248,4.42803,5.1526,2.19351,5.355188333333333,2.672305,3.304615,5.2593,4.34203,4.71275,2.227865,1.4602475,1.4602475,2.768045,3.331325,4.8835775,1.4665075,6.167695,1.57095,3.760725,1.2737033333333334,8.823480166666666,4.678175,2.69926,4.28498,3.74886,3.757105,1.1735933333333333,1.9571275,3.4684666666666666,3.000776666666667,3.423133333333333,3.6426,3.90921,2.924205,3.150675,3.324145,1.4612725,2.536706666666667,1.97269,2.8575533333333336,1.9567133333333333,5.135731666666667,3.1587,1.82426,2.7734400000000003,3.25563,3.255475,6.4668,5.9413,2.97353,3.55137,2.78821,3.10588,2.832475,1.1468266666666667,0.947614,6.33944,2.95469,6.0805,4.79022,6.5697,2.8898,2.72087,6.6813,2.619635,0.42529944444444445,5.61965,3.045835,3.825575,3.2166933333333336,1.3812385714285715,3.98152,1.0154239999999999,4.50692,0.8798925,1.3952900000000001,2.85248,2.3726033333333336,2.967137142857143,3.353175,4.70966,6.123680833333333,6.123680833333333,5.106412499999999,5.106412499999999,4.555045,3.00081,4.41752,0.97322875,6.1527,3.670495,3.6842333333333332,3.69495,3.797245,4.920335,1.905045,5.1255,3.039408,2.90919,4.27244,2.57675,4.6935,5.2242,3.53353,3.44177,5.2471,4.064695,6.13605,2.847445,2.30838,5.8664,4.000055,2.8026199999999997,5.906078333333333,1.5593133333333336,2.136315,4.852265,4.220645,4.938035,3.917005,2.0440635,2.0440635,12.637379444444445,11.656,4.965015,3.325015,2.9996630769230768,4.384965,4.611635,2.645516666666667,3.15108,2.98548,4.212533333333334,3.628633333333333,5.06885,1.973445,8.239686666666667,2.486645,1.9329975,5.94715,2.471745,5.0931,4.32455,4.68739,0.7432177777777778,3.16251,3.55245,0.9324960000000001,2.853105,4.142699166666667,1.480102,1.9571966666666667,2.865883333333333,2.671943333333333,2.2447500000000002,2.986776666666667,2.3546866666666664,0.4361807142857143,2.312203333333333,2.6618133333333334,2.7834533333333336,3.1993500000000004,1.4116199999999999,2.9857,6.92051,4.49549,2.4019833333333334,1.9307633333333334,2.4993333333333334,3.56824,2.553485,3.5281455,18.0312675,5.2409,3.4056800000000003,4.622585,3.84526,5.553461666666666,1.5912166666666667,5.7888,1.44285,4.97787,3.953155,5.3842,4.942385,0.9920521052631579,6.7535,2.32084,4.794155,2.68037,4.103725,3.356445,2.69687,2.0631133333333334,1.509266,1.87479,4.293845,4.59942,2.134295,1.80418,3.0786233333333333,3.875155,2.9543666666666666,6.1812,1.8789225,3.90083,4.55326,4.471805,4.072585,3.1436,3.98842,4.911915,3.799105,2.7860066666666667,2.7860066666666667,5.4591038888888885,1.7559933333333333,2.4798433333333336,3.78784,1.720394,7.035985,3.46993,4.4153,4.2671,4.115565,1.7329440000000003,4.0898,5.4784,3.911705,2.0863925,3.477115,3.428415,1.1764975,1.3709375,1.2092533333333333,0.6920066666666668,1.6425866666666666,0.909135,4.66939,0.9565655555555556,2.49025,1.7134833333333335,1.8009275,1.007755,1.9873225,2.2099875,1.5315475,2.8791166666666665,2.64634,4.816265,1.525155,2.68985,2.9612499999999997,2.9159433333333333,2.2279633333333333,4.496670833333333,4.43821,4.693523333333333,19.656335666666667,2.55376,2.1557025,0.6855438461538461,0.6366780000000001,4.169698333333334,2.01276,4.034845,4.93175,6.6067745,3.518015,3.46268,4.121675,3.163866666666667,3.2078733333333336,3.0456,3.9544333333333337,3.3076933333333334,6.66365,3.58744,0.9184150000000001,1.11056375,5.17355,3.0146766666666664,2.5038233333333335,2.0696866666666667,2.235106666666667,5.67375,4.757795,2.314165,1.0570166666666667,3.145145,4.863005,8.362763333333334,5.083997291666666,4.245015,3.88355,5.154,4.52005,4.17027,4.88117,3.83775,5.1272,2.11531,5.5473,1.6045571428571428,5.01135,0.729,4.864055,5.442,6.02965,6.054,4.71762,5.8685,5.64815,6.124232500000001,1.9890999999999999,1.5762,5.5271,3.69618,6.65624,5.11975,5.458164999999999,5.16605,6.4245,1.3409042857142857,4.39146,5.35095,4.2558,4.7985,5.1153,2.675425,3.84587,2.738515,4.4713,1.0101916666666666,1.5731,1.3435679999999999,4.690125,3.99342,3.37869,2.1199733333333333,2.8572966666666666,1.5331666666666666,2.12055,0.3946433333333333,3.5912,1.6629740000000002,2.3398683333333334,2.7965199999999997,2.33642,3.08083,2.668875,2.42863,10.102746666666667,3.952666666666667,1.7848375641025642,3.641835,0.9325,4.44880375,1.0871825,1.690205,1.92192,1.0778475,5.6972249999999995,1.1484391666666667,1.1484391666666667,1.1484391666666667,2.867383333333333,1.9154399999999998,5.09305,3.168175,1.3818475,1.50057,2.30213,1.3059875,1.97552,5.100051666666666,0.7834477777777777,4.154675,4.1743,2.9082033333333333,0.9792528571428571,2.0592414999999997,1.9294775,1.9294775,1.5058233333333335,3.624345833333333,4.575755,5.6893,5.7591,4.279715,5.2852,2.8241533333333333,1.8979,3.01506,5.045,3.177765,3.898365,1.01364375,3.9167618749999997,5.35265,1.873925,4.11252,3.0574166666666667,4.6733,4.783535,2.622885,7.1257,6.37135,3.909515,4.41537,4.313335,3.13985,7.79727,4.052155,5.379978333333334,3.589495,2.877966666666667,5.2926,2.6009366666666667,5.5632,4.39461,2.65677,3.102005,3.9382,1.3057233333333333,10.4107425,3.64191,2.98164,14.995689166666667,4.263825,1.6689333333333334,2.689643333333333,1.976485,2.44527,2.9912,2.498885277777778,3.088315,2.948415,3.1094,3.967705,5.7708200000000005,1.15367,1.93495,4.14043,4.38829,4.97179,2.3464475,0.5622573333333333,4.20545,4.17145,1.992025,1.3633816666666665,4.52847,4.40724,0.8745400000000001,3.679415,12.268140833333334,1.260915,0.38776499999999997,3.4382,4.62867,1.0690844444444445,3.80191,4.07862,6.546805,1.290455,3.197455,3.96638,3.38275,4.406495,4.492185,4.23244,8.3523,3.238,4.285405,5.8216,16.33587,3.555105,2.88575,1.2409475,2.0337975,1.3791,2.32006,1.29272,2.0223875,1.696675,2.0325275,2.44571,2.2932825,2.2020775,5.45,4.433175,5.79495,3.147205,5.5971,2.82107,4.93892,3.437466666666667,1.23912,3.79048,1.9693025,2.6289693333333335,4.664895,4.98191,4.89134,4.31438,3.5536999999999996,3.7988,2.5317633333333336,3.54792,3.70608,2.290425,1.873855,3.4216333333333337,4.13167,3.83478,2.3510666666666666,12.445546666666665,0.7437933333333333,2.679735,5.079,2.4615799999999997,1.085144,2.92897,7.22514,7.03158,4.39641,3.74054,4.12901,2.0548,2.08782,2.818370333333333,2.036093333333333,3.8037216666666662,5.3862,4.15235,0.447282,6.04895,3.3124333333333333,3.320593333333333,3.448933333333333,5.98605,8.807177750000001,4.3239365,0.99245125,2.17469,2.307095,3.70007,2.58108,4.11164,4.531045,3.541233333333333,2.6417266666666666,3.99671,4.15053,3.70434,4.314466666666667,1.8219733333333332,2.91755,4.990985,5.53865,3.2191466666666666,2.3740575,2.26351,15.09722818065268,0.5804381818181819,1.4435375,1.4435375,2.23655,5.025253333333334,3.81864,4.29695,3.007685,2.926005,4.581265,3.163873333333333,4.272355,3.163873333333333,3.592785,1.8461866666666669,1.5671233333333332,6.01415,2.670125,4.749315,3.277265,2.63729,6.484975,1.96777,4.54829,5.42075,3.58627,3.3818,5.0406,1.9812819999999998,4.97712,3.3136925,7.366630000000001,5.556519166666666,2.8708,3.87807,5.26535,2.11341,2.46659,3.4296666666666664,0.421045,3.1611499999999997,10.121929999999999,3.79328,3.316915,4.858315,3.211545,3.186895,1.3372242857142855,3.95485,5.48655,3.33172,2.048635,4.157155,3.951865,4.19027,4.177345,2.932475,2.932475,4.17591,2.781315,2.556450909090909,1.970135,4.829725,4.05648,0.9274257142857143,3.618605,5.0014,2.76951,6.9447875,7.62204,1.478262,4.17167,4.84125,6.755429,0.659,7.653723333333334,3.56093,0.6237909090909091,5.29955,5.2439,4.607535,4.24672,4.588845,4.28452,5.05045,3.749365,3.77061,4.309075,5.61975,4.50834,4.508895,3.9947,2.548895,3.964965,3.65393,0.945139,4.721015,2.38833,1.79788,4.551085,4.30005,6.0178,1.0593085714285715,5.072331666666667,2.996225,2.7131966666666667,1.785705,1.2924433333333334,11.241895,2.21951,2.999306666666667,1.9057333333333333,3.7106409523809525,5.775406666666667,6.167496666666667,2.556216666666667,1.9286966666666665,2.1241,2.1241,2.1241,1.3028566666666668,3.59163,3.987515,3.40064,4.45728,8.188704999999999,3.86682,1.1103640000000001,2.36985,3.544595,2.1576,1.829004,3.920565,2.84235,1.3367833333333332,2.9313300000000004,4.70991,5.5712325,3.908485,4.016805,3.107196666666667,5.06545,4.42862,5.410810000000001,1.925945,1.925945,4.017765,3.69013,2.5435186666666665,2.5435186666666665,4.082125,1.1435371428571428,4.763,3.454555,4.32019,3.83822,3.64328,3.2651166666666662,1.019127142857143,4.123375,4.906705,4.28098,4.73005,4.71746,4.903985,4.551225,1.937385,1.4231125,3.53054,3.72185,3.35343,4.33554,2.083745,2.81384,5.42815,2.615475,4.895285,7.33205,2.2532058333333334,2.9520416666666667,4.241480952380952,5.128185833333333,1.5443875,1.9992785714285715,0.9864,1.9992785714285715,1.95734,1.95734,1.551742,5.05265,3.16081,3.48537,2.42825,3.94907,1.48576,5.4197,3.140725,1.752495,2.7761933333333335,3.55908,3.93775,6.5793349999999995,4.554625,1.29232,0.8418633333333333,3.61654,7.2576,2.36815,3.606145,3.58846,3.58846,2.33821,3.30021,3.10229,1.4261982467532468,3.085513333333333,3.3492,2.659945,4.257945,3.863315,1.58657,3.408535,4.332315,4.7113,5.0415,4.30018,1.66804,2.09729,1.31115,2.152285,3.496605,1.82643,4.56214,3.1785433333333333,3.67008,4.057465,5.21495,1.45071,0.939228,1.8700666666666665,1.457075,1.1594888888888888,5.0335,3.90661,1.091796,0.33902347826086954,0.33902347826086954,0.33902347826086954,3.481475,5.527303333333333,4.43262,5.04015,5.11515,5.64675,4.68786,4.46769,2.701815,3.754335,1.573225,4.623435,3.963145,3.86438,4.219915,4.2051,0.6228536363636364,0.6228536363636364,0.6228536363636364,0.6228536363636364,0.9501,0.9501,4.081885,3.783835,3.52305,2.680245,2.59813,5.68015,4.78065,5.71895,4.262295,2.9970133333333333,2.52924,9.82559,1.45791,1.45791,4.07042,5.3038,3.2902466666666665,0.452325,0.452325,0.452325,0.452325,0.452325,0.452325,4.68347,5.09115,3.29135,4.398165,2.7841416666666667,2.7841416666666667,2.637195,3.2111333333333327,2.35433,2.623905,3.355255,6.964271999999999,1.471922,4.490145,3.5136,3.81117,8.547506666666667,2.3100333333333336,2.55877,0.9567814285714286,2.000205,5.11685,2.96814,0.817755,2.8573533333333336,3.98844,5.37775,2.656675,4.598533611111112,0.8408144444444444,1.9924966666666668,4.740715,4.60393,2.7914585,2.4671166666666666,2.1354866666666665,1.376285,6.869064999999999,3.458933333333333,2.0671466666666665,3.0467,2.626926666666667,3.571775,3.72525,2.7134933333333335,3.1470033333333336,5.7156,1.4443416666666666,4.30982,5.14595,3.50786,3.988025,2.0351266666666668,3.011015,3.69554,4.050495,2.887495,4.78352,4.53113,2.7518266666666666,1.94004625,2.857886666666667,2.851983333333333,2.88737,0.8066881818181819,2.084845,8.096575,0.466369375,3.092843333333333,1.5570266666666666,2.44508,3.324953333333333,2.6783,1.2743666666666666,1.709346,2.73176,2.13162,3.662655,1.991592,2.7637199999999997,1.4589433333333333,3.067618,1.9127475,1.1451628571428571,2.76605,2.0563425,2.4553233333333333,2.6573466666666667,2.8966833333333333,3.2748333333333335,3.4888333333333335,3.1354066666666665,2.81556,3.3748666666666662,2.7212666666666667,2.699425,1.7133033333333334,2.2714233333333333,2.56175,1.6704433333333333,3.147536666666667,3.888139523809524,2.8608933333333333,2.37684,2.87747,3.5477000000000003,4.682174999999999,3.0338066666666665,1.9605599999999996,1.9605599999999996,2.4543225,1.1625725,2.4395775,3.298986666666667,4.558861666666667,2.715475,2.1183225,1.9582525,2.073185,3.762785,2.970625,3.7199,3.44961,1.78375,2.1642433333333333,4.189135,1.1764160000000001,1.1764160000000001,2.05651,0.605643076923077,2.3593315384615385,1.66131,1.66131,2.59667,2.3735399999999998,3.3870666666666662,2.6294,1.885505,5.65904,3.8398575,3.8398575,3.654615,3.138125,2.18641,3.05445,2.556615,2.85711,5.1813725,0.46808083333333333,0.685232,4.101985,2.318225,2.9646,6.7483683333333335,3.686,1.58362,5.163153333333334,4.535625,3.99757,4.22508,5.3397,4.75273,13.6891575,3.567585,1.6041133333333333,2.85453,3.86605,4.83432,2.868835,3.82547,4.13782,3.590965,4.567895,2.8784433333333332,2.605085,2.73657,2.5376866666666666,2.5376866666666666,3.85093,2.640045,2.92997,3.363535,2.428355,2.58762,2.12796,1.9314775,1.9402425,2.1665025,1.731685,3.353693,3.269555,2.767445,6.740914999999999,3.29979,2.31271,1.8791933333333333,3.5493,3.9942,3.59331,3.2320860416666664,3.318615,3.18296,4.239435,3.557245,3.874595,3.979255,3.4192869999999997,3.16239,0.63637,0.63637,0.63637,3.34826,2.290555,5.4697,2.38648,3.731065,6.750157962962962,2.684113333333333,0.3555073076923077,5.2688,0.778731,4.328980952380952,1.87999,3.777535,1.816975,3.989685,5.330743333333333,4.24028,4.09706,2.6960533333333334,2.8145233333333333,1.4811433333333335,2.7026233333333334,0.3790394736842105,0.5408505882352941,2.6219533333333334,1.4367599999999998,1.84692,3.779885,2.73791,4.80149,2.8706133333333335,3.0399883333333335,3.578715,6.10648,1.682935,0.9560457142857143,2.36053,3.7839639999999997,1.220722987012987,4.829635,3.874995,3.41093,2.6931966666666667,4.08664,2.5426866666666665,2.417656666666667,2.51384,2.358555,2.5745633333333333,2.2440925,3.1225633333333334,2.3665499999999997,5.325106666666667,2.3976775,1.9150433333333332,2.1557133333333334,4.914264666666667,3.3236480000000004,3.3236480000000004,2.5608233333333335,3.91308,2.2781775,3.1969,3.15297,0.5755326666666666,4.2177,1.82868,12.04660888888889,6.96437,2.911975,3.05699,3.46819,4.53537,2.88893,3.463185,0.29105533333333333,1.9529175,3.3915666666666664,0.8270925,3.927575,1.281857142857143,4.467625,3.306835,3.202765,3.45826,3.348245,2.190725,4.32862,3.85674,3.597915,6.73468,4.02543,2.7871566666666667,3.0062166666666665,1.60165,1.98848,4.08252,3.44053,3.6629899999999997,2.750075,3.74233,1.336672,3.02356,2.657345,3.70357,10.493746666666667,3.62353,5.779516666666667,3.683755,4.225445,0.9817766666666667,4.960154999999999,5.0444,2.4827033333333333,2.5779666666666667,2.7488200000000003,3.5554666666666663,2.4551166666666666,1.7983366666666667,1.9344333333333334,3.86323,1.593576,2.75487,5.089231999999999,2.72254,1.0513639285714287,1.0513639285714287,3.671015,2.8491280000000003,2.8491280000000003,2.9826566666666667,2.841583333333333,3.281830769230769,3.8176,3.4026,2.6789366666666665,2.2388266666666667,2.4126833333333333,3.162263333333333,2.2273875,2.48666,1.689856,5.879746,8.770346833333333,0.48795846153846156,0.48795846153846156,0.48795846153846156,0.5876098251748252,0.5876098251748252,0.48795846153846156,2.8191333333333333,3.0574266666666667,4.146443333333333,1.4095000000000002,1.760635,3.2872440000000003,2.4645366666666666,3.113633333333333,2.3770666666666664,2.78839,3.4248999999999996,6.517786666666666,3.038816666666667,2.518333333333333,2.63044,4.66592,2.3651766666666667,3.279973333333333,5.47989,2.3850166666666666,3.3425,1.4525249999999998,1.4525249999999998,2.8532333333333333,0.5145678947368421,2.3423066666666665,2.5922300000000003,2.82067,3.271053333333333,2.2518866666666666,1.3947266666666664,2.5621666666666667,2.661633333333333,2.3510133333333334,4.157745,2.3901786666666665,3.279305,2.26592,3.44275,0.514046,7.203428333333333,2.9526339999999998,2.9526339999999998,7.705579999999999,1.7229766666666666,1.7801466666666668,2.991046666666667,4.57492,2.45607,1.9162766666666666,2.6111,1.3907725,3.5725,1.7170699999999999,3.068322,1.356645,0.2623768181818182,0.2623768181818182,4.883795,3.962165,3.45789,2.870506666666667,2.69737,3.29421,1.2679766666666665,5.1714,3.853535,2.980125,1.782055,1.0835308333333333,2.19504,2.991046666666667,2.758525,2.059565,6.1060550000000005,3.750895,4.205025,4.116515,2.42737,0.67525,7.1851175000000005,2.096235,1.6366925,3.48149,4.597195,2.297295,1.6369533333333333,4.81207,4.0583,3.1481,3.0545033333333333,4.08358,4.03746,3.3943333333333334,2.604654,2.604654,3.76969,4.81142,5.23775,6.202603333333333,2.6375933333333332,3.912865,1.5167714285714287,2.608575,5.456947333333333,3.68331,1.8495139999999999,5.26925,3.3469300000000004,3.439045,2.122705,4.08191,4.544215,4.42241,4.48432,2.537436666666667,2.4771933333333336,3.5721000000000003,1.9605566666666665,2.423625,2.516506666666667,2.444643333333333,0.682024,2.356245,3.0040033333333334,1.8417523333333334,4.798775,4.625035,4.7289,3.771335,3.32716,4.6306175,12.001735,4.63914,3.8559,4.26514,4.0852,4.53785,2.3239300000000003,3.1646133333333335,3.5534666666666666,1.24755125,2.75303,2.945395,4.26431,5.4192,4.236545,3.5797000000000003,3.16324,2.205293333333333,4.334333333333333,4.1319824999999994,3.6530666666666662,4.1319824999999994,2.2293589999999996,2.2547966666666666,2.3667983333333336,2.1195075,2.577783333333333,1.9067733333333334,0.8252266666666667,1.313045,2.0669033333333333,1.97109,1.65012,1.38073,1.68475,2.6861033333333335,1.514736,3.10043,1.3928533333333333,1.61841,2.695685,3.9446999999999997,2.39925,2.126133333333333,2.429396666666667,3.293195,2.149765,2.7640333333333333,3.3828,2.45186,3.0523233333333333,3.12677,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,0.15326935483870968,5.1606,2.89321,1.0394128571428571,3.1713966666666664,2.6311466666666665,2.8568700000000002,3.352205,3.460366666666667,4.524085,3.2652846666666666,1.508292,2.9411166666666664,1.81525,0.98359875,0.936295,1.6500199999999998,0.8382566666666666,0.8046000000000001,1.311142,3.301175,1.5034319999999999,1.5993533333333334,2.019972222222222,2.3001449999999997,1.5364783333333334,1.203535,1.5698583333333334,0.9028633333333334,1.2138733333333334,0.765755,0.92548,3.18866,3.489725,4.08337,4.51719,3.9327,2.982153333333333,4.78676,3.4314666666666667,2.0605675,3.570925,1.9539,3.413075,2.12087,0.853969090909091,4.26179,4.857325,2.077576666666667,1.2525775,3.03945,3.424435,3.624345833333333,2.96013,2.58701,0.86949875,2.384185,4.8702725000000004,3.656935,2.44967,1.486175,3.72019,1.8589975,0.5803,4.23739,4.274435,3.983925,2.56526,1.437284,3.470465,4.501195,2.557253333333333,2.620886666666667,2.4522566666666665,2.6674433333333334,2.7550633333333336,2.80785,3.0729366666666666,1.22019875,2.639475,2.5840833333333335,4.91944,4.344435,3.66586,4.579255,16.286201669191918,4.6173,4.479403333333333,2.792085,4.152945,4.93008,1.469374,2.0699175,2.31094,5.8244975,3.91767,3.22227,6.56415,2.31094,4.065645,2.132995,2.0498499999999997,2.87777,2.7474066666666666,1.4140216666666667,4.102145,3.702115,2.52347,4.254985,2.4759266666666666,3.4080999999999997,3.76263,3.577855,4.70531,3.900755,2.801025,3.587175,2.59661,2.59193,1.24621,1.24621,3.489933333333333,2.6298366666666664,0.38391785714285714,4.723205999999999,0.91234,2.622465,3.6382,0.56339,4.681615,7.971576666666667,1.8198975,3.594905,3.6516,2.75703,3.169825,2.40623,3.0115,3.51961,4.333955,3.12452,3.8353333333333333,0.9695833333333334,11.696940333333334,2.63039,2.863035,5.92865,2.61257,3.80768,7.398253333333334,4.12881,4.083495,3.542365,3.98107,5.3132675,1.4904475,2.6551033333333334,4.319305,3.747,1.9778559999999998,3.764545,3.56452,3.58588,3.965575,3.933615,3.930665,2.4978766666666665,4.16349,3.7436,5.1678,3.335765,2.20848,2.272953333333333,2.188,3.0250066666666666,1.3446033333333334,3.4647,0.86902,3.195066666666667,3.1850400000000003,2.5199933333333333,1.521465,4.257565,3.890965,4.13087,1.9262525,4.565895,3.68935,0.7325661025641026,0.3433807692307692,4.20991,5.41035,0.94812375,0.3433807692307692,4.476215,0.7325661025641026,0.7325661025641026,0.3433807692307692,5.704913333333334,2.461003333333333,2.36007,5.4025,3.214295,3.17317,0.8187944444444445,3.272845,3.88702,4.73369,5.80105,2.1686925,0.7392884615384615,4.37946,2.05721,1.210472,1.89007,1.0440157142857143,2.33702,2.266243333333333,3.45373,5.13995,2.3841533333333333,2.9266966666666665,2.754433333333333,2.3281966666666665,2.85695,4.3786625,1.59723,1.936745,3.806135,4.82772,2.1477569444444446,4.936975,2.875735,4.14866,3.988845,3.02116,1.2479725,3.12942,6.69335,3.81442,3.483575,5.1354,6.3688,2.48595,3.16263,4.61554,3.234165,3.40393,8.28544,3.80594,4.530565,2.43809,1.2053575,2.5709033333333333,1.903615,2.629705,3.039225,4.07035,0.6592821428571429,3.13099,3.80398,1.7995733333333332,2.9471833333333333,4.923325,3.21215,2.652725,4.13401,5.01905,9.0921445,2.70398,2.5227666666666666,1.6725539999999999,1.459465,1.2238966666666666,1.4039466666666665,2.5353533333333336,2.574176666666667,2.720136666666667,4.132187115384616,1.5834025,2.3220966666666665,4.912025,5.21495,3.68011,3.484845,2.95054,2.66797,2.0125,2.148925,1.8845933333333333,1.92652,2.809335,3.724845,4.68416,5.00315,3.914905,5.325707083333333,3.17678,2.573895,6.377337916666667,3.173255,8.499855,4.9007175,4.9007175,5.451653333333334,1.6255533333333334,1.3276875,1.4036566666666666,0.738291,4.87483,3.7872333333333335,3.291405,3.291405,2.31352,4.481885,4.30113,4.247335,3.729915,2.83347,2.665255,3.29695,3.0124999999999997,5.247976666666666,3.616745,0.7586527272727271,5.02,4.89068,3.89616,4.851645,3.6861,6.1716,4.094565,0.8395,5.33655,6.571833333333333,3.284045,5.6702,5.82455,3.51682,2.9705,3.646225,6.017,2.023405,5.86675,1.833,4.458605,2.43739,2.4090825,0.89301,3.291955,6.05615,3.55172,3.60955,2.009583333333333,5.2823,8.046710000000001,3.378665,4.35053,2.498215,2.69772,0.8400779999999999,4.807125,1.5749183333333334,3.4568866666666667,3.4568866666666667,3.611285,2.3258199999999998,2.9060699999999997,3.717435,1.751115,2.8502166666666664,3.2383333333333333,3.1523066666666666,2.878065,4.09384,3.156435,1.8826725,3.13726,2.060105,3.1149233333333335,1.9711833333333333,3.0761066666666665,3.19598,1.4236585714285714,1.8353166666666667,0.53042,1.3340416666666668,0.53042,0.53042,1.8353166666666667,0.53042,3.4539333333333335,2.8668,2.8668,2.8611766666666667,4.24667,3.74256,4.056725,5.3095,5.61525,3.51327,3.97322,4.11403,1.8835175,2.3073111666666666,2.3449433333333336,0.8142827272727273,5.5078,3.00534,3.0164833333333334,5.51365,3.8901525,4.60617,3.28538,2.5964533333333333,2.92608,3.431375,2.6199,2.8329066666666667,2.07687,5.2944,0.8289144444444445,3.666325,1.1925985714285716,3.76468,3.3069066666666664,2.8535733333333333,4.007985,3.987225,3.67063,4.5622,4.030955,3.851675,4.31936,4.36666,2.602275,2.76125,3.2768533333333334,4.2707,2.64682,2.882305,2.62348,2.947735,3.2721466666666665,3.373665,4.83511,4.70342,4.04495,67.97824825396826,2.7401524999999998,3.70813,15.646776666666668,4.227005,3.0454399999999997,2.34884,1.96335,2.6292166666666668,4.2957725,3.0079100000000003,3.86733,5.6023,3.31373,7.440636666666666,5.23245,2.550095,3.21101,3.632855,3.440755,1.83092,1.0395375,4.641315,2.39802,6.045038333333334,3.586555,2.3163933333333335,3.54882,2.93562,4.66448,3.211235,5.687385,4.398505,3.60822,3.036855,2.49562,2.717265,6.09385,2.496185,3.55059,4.292550416666667,1.2371283333333334,2.426855,5.0156975,3.177815,3.042115,3.601065,2.793325,3.52928,2.961555,2.77043,2.690715,4.387585,3.026025,3.16561,4.44721,9.29235,3.2312999999999996,4.17541,5.41095,2.98635,1.97347,4.16862,2.0063333333333335,2.8899266666666663,2.83928,3.22322,3.27564,2.95902,3.45858,3.324805,4.249985,3.87828,4.26419,3.753695,3.131255,3.57508,2.8229800000000003,2.8229800000000003,7.199021666666667,1.675925,2.960335,3.11534,2.26005,4.814605,4.269415,3.005385,3.26381,4.98067,5.915792499999999,0.623889090909091,4.210915,2.331345,2.92562,2.492426666666667,5.1043,2.6307566666666666,1.96335,1.07651375,2.0724109090909093,4.274775,5.18905,4.073185,5.7355,5.7253,5.6466,2.586545,2.0027933333333334,3.714565,2.647815,2.824996666666667,1.81149,1.31127,2.72995,3.0340966666666667,1.560928,2.34909,2.329312285714286,3.4447431043956045,2.77932,4.831315,3.34488,1.3653475,3.02752,3.62321,6.02445,4.81847,5.7517,4.638355,1.9740533333333332,1.4983766666666665,0.5982942857142858,1.4928466666666667,3.45701,2.59536,3.5864100000000003,1.4050500000000001,2.450975,2.37212,3.48777,3.53852,3.80577,4.08416,1.61004,1.392135,1.87729,2.01507,1.28626,2.4490775,7.071167583333334,4.848725,3.29395,3.003315,6.990715,4.553055,3.28398,3.140875,3.441275,2.7539,3.61465,2.2798366666666667,7.41362,0.9048033333333333,3.14308,6.6375,3.918805,4.564565,6.1471,1.4931866666666667,3.0865333333333336,2.8665000000000003,2.8144299999999998,1.510835,3.905045,8.41563,3.25129,5.0406,4.031495,3.075035,4.822385,0.8583883333333334,2.8102366666666665,5.24555,6.308693333333332,5.12025,5.92965,2.94092,3.7296666666666667,2.4330233333333333,4.908435,4.64653,4.028855428571428,4.028855428571428,0.6774114285714286,3.4665666666666666,0.986524,0.662235,1.723135,3.722766666666667,3.370176,4.673906,2.6134,3.135958,2.88089,2.6105666666666667,2.91801,4.5667,3.4795283333333336,1.88836,1.88836,3.93723,3.00749,2.769816666666667,3.578305,3.3945333333333334,0.57196,3.2800233333333337,2.65281,2.5886566666666666,2.717893333333333,2.528875,2.38171,3.12495,2.70532,0.8265079999999999,2.8604966666666667,6.365895714285714,2.1119,7.3817208333333335,1.59063,1.59063,3.4328154166666667,3.5089,3.3102866666666664,2.7815066666666666,1.6792500000000001,1.2937714285714286,3.216143333333333,3.3374666666666664,1.4771150000000002,1.558142857142857,2.8221666666666665,2.6445480000000003,2.6343833333333335,1.73018,1.780075,2.649645,2.133065,2.94311,3.47517,1.71326,3.78496,3.165775,6.816985,3.364895,1.61304,2.983965,2.50113,2.10729,3.97215,2.30113,2.55143,7.0539125,0.8222846153846154,0.8008816666666667,4.59089,1.44732,1.44732,3.739395,2.3691825,4.21713,3.12437,1.3418533333333331,2.3568540000000002,2.8226333333333335,2.3849306666666665,4.907455,5.22845,2.6067266666666664,1.9899133333333332,1.2928042857142856,1.2928042857142856,1.83852,3.769215,3.995433333333333,5.30635,3.0261666666666667,4.478135,4.110165,6.50635,4.096335,2.60284,2.765826666666667,2.716286666666667,2.69604,0.6982066666666666,0.6982066666666666,0.6982066666666666,3.29135,4.07548,3.622815,0.88283,0.88283,4.881765,5.23685,6.20184,21.26228,10.4552,7.89734,2.85764,5.66985,2.3703575,4.03699,2.5277600000000002,3.1458399999999997,3.8047,5.10358,2.19665,1.993095,5.96867,2.2461200000000003,2.2461200000000003,6.04675,3.11205,3.781875,2.1413275,4.74533,4.638135,3.41773,5.03205,3.12075,0.9770133333333333,5.73925,8.96889,0.9770133333333333,2.1413275,2.05796,0.75166,0.75166,1.7446840000000001,2.21284,1.7446840000000001,4.220175,5.18625,5.7657,7.90008,2.1413275,11.437693166666666,5.60545,5.31785,2.3703575,3.42308,4.128805,8.45846,3.0648400000000002,3.476,5.6202,3.51031,4.397185,5.9253,4.252265,4.90521,4.733875,2.501445,5.3345,3.231275,4.40176,4.471325,0.76248,1.460272,2.88485,5.6564,4.649805,2.72254,2.0734925,4.016775,4.510625,5.81355,5.37935,5.0176,4.347055,3.70516,4.204465,3.81636,2.163885,4.94874,1.91526,2.78641,3.44006,1.6858966666666666,4.06917,3.729535,3.516105,3.773105,2.98286,6.6871833333333335,0.9426788888888888,3.40311,1.97763,1.1209742857142857,4.7173680000000004,1.4054083333333331,1.6589633333333333,2.5060033333333336,2.806066,2.8546099999999996,2.7475133333333335,1.56436,0.70843,2.10933,2.579805,3.56386,0.7013692307692309,6.265333333333333,1.7222133333333334,1.215384,3.26636,1.215384,3.844185,0.9883454545454545,4.429215,3.2561633333333333,1.49696,4.247811,4.191846,4.191846,4.59913,2.3906275,2.9426233333333336,2.7950266666666668,1.4116199999999999,3.84635,3.97713,2.1355633333333333,0.6871158333333334,6.9423258974358975,2.8898,4.347075,4.26351,7.62874,2.1066275,4.18413,3.85487,3.20426,3.52386,5.4177,6.15371,4.409505,4.71919,5.1994,2.9345166666666667,4.853725,4.252665,4.47188,1.0343388888888887,0.48775857142857143,3.027695,3.30346,2.75907,5.23525,3.92651,4.065545,4.239485,5.1016,4.26547,3.889955,1.1899,2.21075,8.343789166666667,2.2061733333333335,2.0096366666666667,3.9485119047619044,11.158111706349207,1.53743,4.834585,6.5358,5.22175,3.6220666666666665,2.2722233333333333,3.2473733333333334,4.17582,1.1257516666666667,3.3288233333333337,3.216955,0.2948805263157895,2.18129,4.2965,4.08253,2.21955,4.110695,2.82497,4.961923333333333,1.41042,0.5322272727272727,3.5515033333333332,1.1429399999999998,0.99736375,0.99736375,0.99736375,0.99736375,1.6534266666666666,2.665853333333333,1.8667066666666667,3.3626,5.356,3.7114,5.1635,3.835735,4.347425,3.649595,3.95692,1.50697,6.38582,2.38413,4.322335,5.18446,5.2303,4.8829674999999995,2.17978,2.4206499999999997,2.6443933333333334,3.119305,1.2392333333333332,4.828465,2.70189,5.01085,2.8261299999999996,2.3458033333333335,3.86857,3.342155,2.971525,2.4211933333333335,2.75451,1.4719875,0.38916,4.11505,3.651125,4.069175,3.54357,3.76731,5.68235,4.152,0.5250261538461538,3.0821620000000003,7.005705333333334,1.8729433333333334,2.0506,5.510785,5.2604,2.6851599999999998,4.706855,4.998185,4.37876,3.92314,4.26561,5.45115,5.62685,5.21075,3.566555,5.16181,1.462314,1.63628,4.585575,4.00682,3.732255,3.27185,5.36555,4.90703,3.836395,3.297575,15.370990532572922,1.2666437493311933,1.09336625,1.8101626136363638,0.5110675,0.48904866666666663,1.3659125,0.32380588235294117,1.322086,3.5778666666666665,1.751224,0.8945833333333333,1.0156145833333332,0.4843133333333333,1.0156145833333332,1.0156145833333332,0.4843133333333333,0.8223384615384616,0.5146307142857143,2.75432,2.6486666666666667,4.37263,3.601825,2.8588733333333334,2.72915,4.15895,4.639925,4.824295,2.721765,4.18345,0.6731278571428572,2.3384053333333332,8.0765375,3.904125,6.516663333333334,2.680955,4.361415,2.340415,5.3913,5.29535,3.730615,4.15848,3.17138,1.06284,4.36097,4.62686,1.166674,1.239768,1.5012116666666666,2.46072,1.8589833333333334,5.33425,5.74275,2.28716,2.28716,3.5942805555555553,6.31433,2.0549033333333333,0.6564018181818182,0.7934885714285714,2.4650833333333333,3.291043333333333,0.9066728571428572,0.9066728571428572,0.9066728571428572,0.35657923076923076,1.0434171428571428,2.868525,5.94295,3.743066666666667,4.073315833333333,5.0046,0.994912,3.4788666666666668,3.1268466666666668,3.8006666666666664,5.44235,2.47463,7.2815650000000005,4.681175,1.0980366666666665,3.7334,1.91004,2.53721,2.2857600000000002,6.843064999999999,3.2913866666666665,4.35131,2.2879725,4.592465,4.5994,5.09645,0.527241111111111,3.118316666666667,1.3576066666666666,2.6012633333333333,3.965705333333333,2.0748866666666665,2.810373333333333,2.4270366666666665,2.5881666666666665,2.6116333333333333,2.7595533333333333,2.7434666666666665,2.7753599999999996,1.3549120000000001,2.28616,1.9559066666666667,3.24719,2.6016233333333334,2.1344225,1.7127299999999999,1.7631966666666665,1.643395,3.111135,2.1120933333333336,1.9674166666666668,2.10975,2.300733333333333,2.2758133333333332,0.8020288888888889,0.8020288888888889,0.8020288888888889,2.3359799999999997,2.1353233333333335,3.05242,2.362556666666667,2.5622133333333332,2.126653333333333,3.92474,3.5609333333333333,1.3374266666666665,2.4747066666666666,2.7521466666666665,3.6562133333333335,1.5720285714285716,7.052383333333333,4.36522,3.25722,4.068765,3.63616,1.4280775,0.8435214285714286,3.196035,3.706685,3.6562133333333335,3.924415,4.093345,4.31106,2.8486966666666667,3.827535,4.16799,0.9092879999999999,2.604155,3.188005,4.880983333333333,4.607115,3.4988,3.076815,2.54136,2.1358533333333334,2.3913233333333332,0.6250175,5.2463516666666665,2.753625,3.747085,2.7697066666666665,3.8038799999999995,3.5022333333333333,2.4048066666666665,2.879307333333333,2.879307333333333,2.5696600000000003,2.1858766666666667,2.42124,2.03062,4.08031,1.400696,2.655335,3.725255,3.89332,3.876875,5.2133,3.45633,2.3768975,2.12897,3.11553,2.831635,2.619395,5.1098,2.44812,0.7791057142857143,0.7791057142857143,4.517945,3.9470470000000004,0.9620520000000001,4.24676,0.9620520000000001,3.85742,4.706435,4.834065,3.013205,3.18833,6.276905,4.17384,5.6765,0.8624285714285714,0.8624285714285714,2.06208,4.365966666666667,1.4865666666666666,2.8794,3.329535,1.09845,3.51493,3.900575,5.761875,5.761875,1.0154716666666668,5.7167,5.32645,5.05195,6.0389,2.06945,2.06945,6.94145,0.928590909090909,7.2687,1.99939,6.5685,2.685335,2.4641100000000002,3.56036,2.36382,2.1233066666666667,2.3445466666666666,2.970546666666667,2.4391273809523812,6.111136,1.78571,5.0057,2.8961133333333335,2.5382366666666667,1.827565,2.199595,3.260645,3.45272,3.64081,2.81762,2.34177,2.117375,2.680925,1.091374,3.29857,2.48658,3.23099,2.2856235,2.2856235,3.14093,2.14643,3.84656,3.204355,4.946085,7.025885000000001,4.228815,3.581475,6.337735499999999,2.01984,3.3390911111111112,2.26652,1.4762857142857142,1.6212125,4.25447,1.5427283333333335,0.5014475,0.6517783333333333,4.639945,4.73059,2.774775,0.9449077777777778,2.720795,3.07461,4.810245,1.7382560000000002,1.697555,1.117911111111111,4.59492,2.50283,4.57517,0.743473,4.032550416666666,4.126995,3.49667,4.32808,3.5563,3.73545,2.7668533333333336,5.41695,3.56302,1.72107,2.7430066666666666,5.967665,6.2952075,0.7866575,3.663205,4.575195,5.2212,3.6395666666666666,3.7351666666666667,2.634575,3.1344999999999996,3.757566666666667,6.5115375,2.6445480000000003,2.6460095,3.943595,3.058,2.45842,2.528075,8.576913333333334,4.56167,1.8929166666666666,4.68575,4.77168,1.7381579999999999,3.777835,1.25795,1.555142857142857,4.317605,3.844185,4.528645,2.5208066666666666,3.229195,3.17094,4.605795,3.950475,3.253485,2.896405,3.71155,3.914565,3.8176799999999997,1.0228191538461537,1.0228191538461537,7.60407,0.801155,1.8725442063492064,0.801155,0.6524133333333334,0.3825577777777778,2.5249575396825397,2.217875,0.48607142857142854,1.8725442063492064,2.10818,3.439005,2.038886111111111,3.4412,4.769345,7.257941666666667,1.935715,2.08057,1.93719,4.14565,5.59325,1.96006,1.66676,0.8126275,2.4793875,4.095975,2.60469,4.360235,6.3872125,0.42919277777777776,3.793005,0.726598,2.7174600000000004,2.1808825,3.47379,1.2212516666666666,3.96992,4.52388,3.93801,2.723345,3.821555,4.735765,1.69637,3.368075,0.5741361538461539,2.337455,2.277685,1.12731,2.986636666666667,2.4676633333333333,2.4662966666666666,3.5452,8.094595,2.916678181818182,3.77245,3.308175,7.29269,5.376459166666667,3.200396666666667,4.09111,3.505745,5.6556,4.201255,5.09805,4.885345,4.19519,4.79874,3.9209333333333336,1.6228,1.8871866666666666,2.17657,3.693755,2.5010166666666667,0.18826702702702702,0.18826702702702702,0.18826702702702702,29.773788166666666,0.18826702702702702,3.136642027027027,0.18826702702702702,0.18826702702702702,0.18826702702702702,3.1736736936936936,4.14788,0.18826702702702702,0.18826702702702702,0.18826702702702702,0.18826702702702702,0.18826702702702702,2.860625,5.15889,3.28422,0.19343435897435898,0.19343435897435898,4.3885266666666665,3.90613675,3.98030875,3.2620704166666665,3.808011904761905,7.887370000000001,11.466001604506603,6.306998,8.163546666666667,7.872303428571429,2.8532333333333333,6.238061428571429,4.352303333333333,4.213724679487179,0.19343435897435898,7.752496666666667,6.591926476190476,7.14225,2.83455,9.247853928571429,13.744427142857143,18.22978262820513,55.81336293772894,116.20673893635531,1.4525249999999998,3.3425,3.39685,3.784462132561133,0.19343435897435898,1.5258755128205128,8.905912708333332,14.917169761904761,19.576763333333332,47.097465204051794,13.529571761904762,3.284875,0.22435896551724138,0.22435896551724138,4.5870299999999995,2.7627699999999997,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,0.22435896551724138,4.71661,0.22435896551724138,0.22435896551724138,0.22435896551724138,2.598355,1.9833766666666666,3.886785,3.75232,4.038985,4.885065,1.8667775,4.010465,4.25034,3.03405,1.5028933333333334,3.642285,1.06701,2.353375,1.8806966666666665,4.934516666666666,5.84092,2.7324266666666666,5.566925333333334,0.5630833333333334,0.446004,2.39345,2.7856666666666663,3.058245,3.857365,3.490866666666667,7.37830625,3.719445,4.061425,3.55978,3.8712,2.95682,3.40521,5.798,1.848065,0.44834615384615384,0.8122863636363636,4.2293650000000005,1.768985,3.8788,3.74358,4.4693,3.65839,2.3100825,2.65614,0.6335893333333333,0.735144,4.268995,2.6665433333333333,6.1903,3.528375,3.71668,2.54086,3.059115,6.30755,3.709845,3.318975,0.7956445454545455,2.9030199999999997,4.325565,2.2327,0.900335,1.5578,4.22598,6.5232,1.91432,3.004805,3.55394,5.80815,2.639095,2.290853333333333,2.346975,4.603865,2.49524,4.033805,0.7045899999999999,2.22247,3.342305,1.76275,5.981228333333333,2.940835,3.701295,4.34196,2.975155,2.165675,0.5176372727272727,4.286435,5.0602,6.77255,3.58226,3.90576,4.978885,2.849185,1.9222958333333333,1.164794285714286,4.8593,2.01393,2.67948,8.42022,4.095615,5.2351,3.203595,0.7234755555555555,3.08044,1.2142442857142857,3.219635,6.03665,4.81068,4.941495,3.568245,5.1948,4.308815,1.65625,1.6922366666666668,4.87299,2.9367033333333334,3.232136666666667,2.4435375,5.43665,4.35365,1.4417200000000001,3.4789333333333334,2.9251,2.8589,3.803135,9.08594,4.72816,1.7342775,4.626105,6.43818,4.3342975,3.99961,3.884015,3.966535,4.744805,8.25887,2.4355966666666666,3.225875,3.36591,4.26539,2.856725,3.168405,4.52443,4.373505,3.636015,3.981592,18.704135666666666,2.90587,2.68758,3.3822666666666668,5.476344,1.19325125,4.00953,2.128385833333333,5.006,1.3867666666666667,4.160655,4.173685,3.45376,0.95642125,4.636675,4.53293,1.7292575,4.645935681818182,4.335185,1.0179928571428571,3.510085,1.674785,2.47336,1.49452,4.233015,3.73331,3.722815,3.75338,2.9692366666666667,4.238615,8.102613333333334,4.4288,4.139515,4.71186,3.04162,3.80386,4.780285,6.423671,0.959986,0.959986,4.38171,4.821575,2.1819433333333333,1.3733766666666665,7.135949999999999,3.971315,3.66892,3.69847,4.75098,4.391055,3.659625,4.077815,6.619454999999999,3.90967,4.48192,4.67207,1.3726685714285713,2.581175,4.263315,4.46583,3.389095,0.20072555555555555,1.472025,2.0825625,2.56385,2.1122666666666667,0.94671,1.2845025,1.373285,2.341886666666667,0.5793188888888889,1.065332857142857,1.8932375,4.057925,3.9934,2.0494499999999998,2.5162633333333333,2.8177566666666665,2.791603333333333,0.70009,0.9222775,3.19243,4.39738,4.2932,2.738235,4.67085,4.581075,4.637755,2.05254,4.359305,4.929105,4.324405,6.0712525,3.66969,0.4895923529411764,5.51255,4.48368,3.563685,4.83192,3.13548,1.8987500000000002,3.781535,4.081925,2.687955,5.302419166666667,4.507825,1.4284716666666668,5.302419166666667,4.04671,6.873727499999999,3.68935,1.1112,3.850895,4.858455,4.28167,2.71419,4.875885,1.4858875,1.96788,3.51457,3.33814,0.8014100000000001,4.689,4.77893,3.40246,3.772995,3.5132666666666665,2.9961300000000004,1.72404,1.6567475,3.240305,3.368855,3.3788,2.36373,2.15971,1.9103676666666667,3.715005,1.37274,0.8148877777777778,5.37741,3.99848,1.4310779999999999,2.448803333333333,2.1374033333333333,2.977266666666667,5.765693333333333,2.1714422222222227,0.8385009999999999,2.432495,4.261875,2.1008566666666666,3.954225,5.0136,5.3051,4.40145,4.27424,5.5193,2.128976666666667,2.3133500000000002,1.6597666666666668,2.243723333333333,1.95312,2.33611,2.1902066666666666,1.5646425,2.601125,3.02645,3.74895,6.45625,4.333755,3.953895,4.28031,3.930705,3.845505,5.22325,0.8907675,3.1397099999999996,4.67574,1.183614,0.6372106666666667,5.0687,3.577705,2.5098,3.65999,6.088150000000001,5.71115,0.935656,1.15926,0.7074444444444444,4.081568333333333,2.2257866666666666,2.7418099999999996,1.1967357142857142,2.6820066666666666,2.6485433333333335,5.394,4.59284,4.375215,5.32565,4.305455,1.2164933333333334,3.70307,1.67451,3.548425,3.852065,3.252725,2.3948533333333333,3.391166666666667,2.6976999999999998,3.54088,3.961355,3.06094,2.25602,8.926324999999999,10.2236175,4.067565,1.3142485714285714,5.4429,4.16471,4.84433,4.4796,3.62464,3.77653,3.39376,4.18753,3.4917098958333335,4.49166,3.8557,3.490415,4.626305,1.778018,4.8671,5.7514,4.853505,3.337575,3.3505975,7.42257,0.8018933333333332,2.546533333333333,2.6985266666666665,2.4253033333333334,5.05915,3.474335,1.25181,4.142555,3.329223333333333,3.67861,4.511945,4.159584166666667,6.53597,3.0866666666666664,2.9235100000000003,3.2377466666666668,2.75712,3.75981,1.9819533333333332,2.1106233333333333,2.9503733333333333,3.887815,3.88159125,1.9919825,1.580945,3.266694642857143,2.956797,0.9120699999999999,2.534091666666667,2.534091666666667,1.31737,5.8161,3.15341,3.328955,3.605565,3.1156,3.428455,3.39604,3.0099,3.2484,2.428386666666667,0.5277026666666667,3.22937,5.7548575,3.16164,3.794755,3.27018,4.03613,4.01611,3.322205,2.81505,3.69198,3.702605,3.167855,3.07637,3.805675,2.587563333333333,4.14007,3.780795,8.68895,3.408365,3.668735,3.0586,4.079015,4.016385,3.616445,2.26504,3.645925,2.6497525,2.92845,3.10165,3.131275,3.915195,1.7176566666666666,1.7176566666666666,2.13665,3.13253,3.017725,1.536008,2.473885,3.326545,1.715632,2.91443,1.536008,3.992725,3.05096,3.827868,3.16977,3.329745,2.20351,3.1621,4.103165,4.05911,3.323215,4.62673,3.802835,4.18625,3.70591,3.1833,3.14305,3.03455,4.007225,2.60088,3.7573,5.236,4.15241,3.73861,0.28312739130434783,3.53469,0.46211,3.59706,3.581355,3.056705,3.589925,3.77712,6.254673333333333,3.57385,2.56171,2.271733333333333,2.8643,0.6624019999999999,6.7298,3.193325,3.45381,3.61021,2.000375,2.58508,3.286365,3.356245,6.76884,4.534165,5.0823,4.441065,4.26824,4.18459,3.752515,1.3900933333333334,1.67941,3.83729,4.349515,5.8634925,2.54424,5.0257,2.039045,3.4377333333333335,3.79755,1.931227380952381,4.16045,4.7632449999999995,3.4116,3.6977333333333333,2.3353366666666666,4.48453,4.501235,3.479433333333333,4.27978,4.563035,4.99422,4.25159,4.407675,3.96213,2.792925,4.20676,2.635525,3.279503333333333,3.279503333333333,4.61924,2.4472,3.86024,2.4862699999999998,4.400025,3.2476299999999996,3.66743,1.86387,2.0185066666666667,1.1956166666666668,1.1956166666666668,1.7268940000000002,3.30231,1.7297500000000001,2.66722,3.80869,5.0750720000000005,3.201506666666667,3.815335,5.88348,3.01859,2.8538,3.0012933333333334,1.60628,4.059765,3.962185,6.237920000000001,1.5914366666666666,5.12045,5.7404,3.4078,3.33184,4.286185,6.41789,1.94892,2.36937,3.853185,0.5016442857142857,3.38283,4.025375,4.31117,4.3604,2.71452,1.246646,1.6245920000000003,4.071425,2.77128,2.3526633333333336,3.854265,5.0278,5.18885,0.95262,3.023355,5.019,3.61646,4.43243,2.40338,4.97114,3.927845,1.610884,3.432815,1.2856333333333334,2.7759766666666668,7.161958333333333,3.16609,0.6174736363636364,3.34529,3.906255,3.747325,1.5902675,1.5902675,4.785456666666667,5.62255,2.943905,0.5147444444444444,1.925165,4.498814166666667,4.282525,4.256435,1.826284,2.936256666666667,3.282475,1.239093355263158,1.239093355263158,1.239093355263158,0.7679937719298247,1.331787105263158,0.5637933333333334,1.239093355263158,0.7679937719298247,0.2770321052631579,0.8408254385964913,0.2770321052631579,0.4909616666666667,0.4909616666666667,0.4909616666666667,0.4909616666666667,1.0359348333333334,1.02216625,2.3402233333333333,2.2973683333333335,1.0920933333333334,6.33789,2.63264,5.499555,2.22012,3.70234,2.67434,3.482595,2.7811441666666665,4.47953,2.8538200000000002,4.055025,4.010185,4.471515,2.175265,3.94816,4.625315,4.1467,3.23824,4.70188,3.51179,4.507735,5.5851,5.08815,6.21215,5.36,1.13001,4.736395,3.95106,2.99556,15.93308,4.46468,5.2594,2.6988033333333337,7.83776,3.97269,4.19387,4.797965,3.261565,1.0771925,2.34293,3.73579,4.315705,3.170025,3.1419,4.07261,3.0036766666666668,4.67151,4.60722,4.429915,6.473543333333334,7.203428333333333,1.441957142857143,3.760375,3.975255,4.01384,3.700175,3.621505,7.37168,2.82113,2.837355,2.61647,3.857045,3.79607,4.58485,2.3542,1.811195,0.917696,4.222075,3.39012,3.575585,3.8274,3.39888,4.80283,4.10565,6.37845,6.0318,4.702275,6.63525,3.67237,3.06328,3.1405,3.343655,1.78865,4.324475,5.5014,6.1065,5.508051666666667,5.508051666666667,2.4684,1.78865,2.03727,3.022265,0.6874349999999999,1.47607,0.788635,1.403955,2.594075,0.36779,2.785335,4.167625,1.403955,2.978412,10.592305,6.4423575,2.3531391666666663,1.05223,1.68175,4.471945,4.180325,5.719015571428572,1.9537375,2.264905,3.40149,3.217205,4.685405,1.4847066666666666,5.29265,3.5582666666666665,3.167885,5.18605,7.132254,3.833645,2.3914925,2.788883333333333,1.8233966666666666,3.57784,5.337552499999999,1.815868,5.6401,4.38712,5.733785,0.5157459999999999,4.440881666666667,4.91918,4.57515,2.41867,2.69265,7.35215,7.584866666666667,6.5953,2.0268166666666665,2.0268166666666665,2.0268166666666665,4.71463,5.05545,6.2906,3.74132,2.650615,2.476858947368421,4.227475,4.352055,2.472936,1.79807,2.472936,6.948056,4.9906500000000005,4.797852142857143,7.26156,4.797852142857143,4.797852142857143,3.6277171428571426,6.98121,5.495008,2.791278,2.791278,2.572475,7.15665,3.14038,3.534075,5.478707916666666,5.478707916666666,5.478707916666666,8.45783,3.611255,3.47152,3.6719125,3.5406625,0.81159125,7.764893333333333,2.774243333333333,6.81915,3.695655,12.745868666666667,5.1356,5.551919166666667,6.479,2.648085,3.360795,1.0821616666666667,5.551919166666667,3.402035,1.6599975,1.6599975,2.899185,5.2729808333333335,1.715955,4.771536666666666,0.8307119999999999,1.4112033333333331,0.8307119999999999,1.9126475,2.546667,5.173787,3.88253,1.4112033333333331,3.072615,4.7529075,0.9335475,3.56401,4.362225,2.12588,3.7512583333333334,2.485425,3.13819,2.999795,0.9517720000000001,3.66015,1.954495,2.20662,1.53114,3.055945,3.88457,2.411975,3.89428,1.3264222222222222,1.3264222222222222,1.3264222222222222,4.08912,3.23836,3.23836,2.435535,3.695165,1.9109833333333333,1.36129,1.36129,3.189415,5.00861,0.86932,1.4041466666666667,2.82077,1.266395,2.670541666666667,0.9517720000000001,0.9517720000000001,1.8578575000000002,0.9517720000000001,3.058814166666667,0.706625,3.058814166666667,5.834945833333334,3.363165,2.4414666666666665,1.7446658333333334,0.6330633333333333,2.3777291666666667,3.56236,2.3777291666666667,0.9448533333333332,3.14748,4.05806,3.867675,3.48366,2.3866,3.819355,1.7607266666666668,0.8304420833333334,0.41680875,0.8304420833333334,0.41363333333333335,0.8304420833333334,0.8304420833333334,4.38248,4.36012,4.870035,3.36486,4.41005,4.389785,5.0825,3.54555,3.73802,1.3400642857142857,2.59182,4.183084166666666,3.93041,1.4410466666666668,2.7124366666666666,3.829905,3.80301,4.019665,3.298785,4.013885,3.535185,3.14594,4.30601,2.3070233333333334,6.01435,3.459105,3.681675,4.283569285714286,0.8430557857142857,1.945665,3.05176,6.31835,3.73494,3.346375,2.9464233333333336,4.207605,7.377811666666666,2.99377,4.27654,2.7827866666666665,3.86406,4.034185,5.6489,5.4674,4.134465,2.905325,5.313,4.62721,3.4931666666666668,8.059075,3.30369,2.285395,2.3693766666666667,4.761635,6.5868,4.632335,4.56082,3.73142,4.66984,5.6233,0.5154907692307693,7.30763,4.55016,3.45674,3.71246,4.588385,3.90072,2.8960333333333335,2.4368,1.28393,0.57816,1.793606,3.21787,3.248855,3.831825,3.811435,4.01261,12.077298333333333,3.75585,4.023355,3.167625,0.6618016666666667,5.369743333333333,3.01381,1.4928299999999999,4.50664,5.8245249999999995,2.810715,8.2225,4.569795,2.321408,2.321408,2.321408,4.33382,9.23433,3.7563,2.58715,2.58715,3.35585,10.1025,0.98228,4.51189,4.42122,4.433815,2.65451,2.1794966666666666,4.24541,3.729915,6.5114,6.022916666666667,3.846825,2.900185,3.7376,4.410755,3.248934,1.12941625,2.622673333333333,6.34358,3.0972150000000003,5.1365,0.95971375,3.6629666666666663,2.3080666666666665,2.5516633333333334,1.74465,1.6980466666666667,2.1329433333333334,5.06855,1.94825,4.220855,5.60445,1.78571,4.595375,3.75114,4.551065,3.163726666666667,2.437135,2.766995,4.21726,4.175273333333333,4.175273333333333,1.2242525,1.62009,2.7773766666666666,4.590562666666667,2.241553090909091,4.862202666666667,1.6990760000000003,2.66635,2.16322,1.679285,1.679285,4.404915,7.280008333333333,1.9498433333333332,2.8655033333333333,2.2685375,4.72358,3.03124,0.80473,2.851195,0.80473,2.52933,3.22454,5.48545,5.32185,3.751645,4.643625833333333,5.79,2.324675,1.8384166666666666,3.130903333333333,2.2078433333333334,6.20015,4.65368,2.39055,4.08162,2.77895,4.242495,1.07440625,1.15601,1.7417166666666668,1.263585,2.6341966666666665,2.7957133333333335,2.231106666666667,2.9054366666666667,2.567435,4.400565,2.58034,2.3989066666666665,2.745093333333333,2.4644133333333333,2.8800333333333334,2.64502,1.98522,2.5881433333333335,3.911495,3.59348,2.932485,3.30727,2.736056666666667,2.16217,1.8415875,1.0337916666666667,0.2648415,0.13048065217391305,2.12487,1.75256,0.13048065217391305,3.440385652173913,1.955285,0.13048065217391305,5.666146736111111,2.1605916666666665,6.28039,3.37699,3.16797,2.577906666666667,2.773896666666667,2.1378325,4.31815,2.953063333333333,3.1654966666666664,0.397348947368421,4.088941666666667,2.683198947368421,3.08414,1.80172,2.481685,4.37556,2.323865,7.7253799999999995,5.1175,3.132585,3.66728,6.5219,5.87623,1.6612433333333334,4.3017775,2.151055,1.923955,6.57607,8.03682,1.1003433333333332,2.090935,3.74177,2.50297,2.884265,3.074845,2.78877,4.150275,2.378535,3.16149,3.1995,3.301715,7.52379,1.3258566666666667,2.076095,2.94483,3.243195,1.8541999999999998,3.38576,1.40258,3.81759,3.290665,6.05716,3.352905,9.2832025,3.40683,1.541926,1.6949500000000002,2.94764,5.99143,1.6136125,1.47661,5.57264,3.3182,3.96805,2.92179,2.062046666666667,2.99754,10.474635,5.3446,6.59385,3.474205,2.20412,2.11494,2.64312,2.709725,3.23527,1.6829333333333334,1.6554733333333334,2.4867033333333333,3.41686,1.760635,3.496435,2.794535,4.16721,3.784675,3.84065,1.1397333333333333,2.731225,1.0746166666666668,1.392348,1.62061,3.421645,3.320025,3.49496,2.774485,3.655475,3.972945,2.95949,1.48117,3.576105,3.3469300000000004,3.20618,1.62216,3.13694,3.56412,1.402475,3.307025,1.52553,3.994755,3.823515,4.4457,2.631225,3.93429,2.99905,3.25542,5.7739,1.70882,1.0754371428571428,3.5682666666666667,2.782575,4.24577,4.092645,3.084745,4.418135,4.80645,2.1810933333333336,5.3606,5.3835525,6.6141,4.081555,6.500660666666667,4.007875,1.7691666666666668,2.8218266666666665,4.41495,4.5359,2.6358266666666665,7.263434,1.1208614285714285,3.21595,2.14958,1.720508,2.2904566666666666,2.7740333333333336,0.38230285714285717,2.72831,3.9331333333333336,3.53868,2.46222,3.465066666666667,2.3570166666666665,2.41519,2.172195,9.377604999999999,4.883585,2.05286,5.30555,2.377817586956522,0.7325661025641026,2.7986066666666667,7.177740666666667,1.685908,4.47535625,6.039693333333333,1.669735,1.6543075,1.36442,3.494265,3.158255,4.35125,3.7352675,2.43627,3.56007,1.01712,2.94105,4.14926,4.06585,4.70016,2.984885,4.92462,4.676515,4.000665,4.863375,5.4754,4.78797,3.860655,5.8535,1.7233740000000002,1.873925,2.870775,3.282435,1.1047444444444445,3.661045,2.0957433333333335,3.3356,4.261575,3.29027,2.5026966666666666,1.52032,3.0218666666666665,2.833026388888889,2.614133333333333,2.8540733333333335,1.9383133333333333,2.0089975,2.371685,4.05446,4.231935,3.858365,4.603885,3.56429,2.43086,2.968835,5.03305,3.8793,4.593335,3.170825,2.305995,4.636495,1.84159,3.990725,4.6651525,5.812636785714286,3.78979,4.29553,5.4036,3.1010666666666666,3.7961891666666667,4.51584,3.2586,3.7892425000000003,3.48881,1.3656975,3.329105,1.703215,2.26376,4.72212,4.8849725,3.7892425000000003,3.873125,3.432035,1.4865666666666666,3.49472,2.1371,2.30113,2.136835,2.612095,1.6291333333333333,1.6291333333333333,1.6291333333333333,0.59793,0.8013566666666666,2.09948,1.04815,3.72118,1.3768083333333332,3.82009,5.1681,4.564905,3.19717,3.956,3.173105,4.92324,1.509965,3.096885,2.63743,3.359875,5.784668,4.204645,5.16295,4.111905,1.010855,2.42295,1.2561666666666667,3.909295,3.873965,4.261445,5.1987,4.605015,3.756035,4.409905,3.64366,1.663955,1.0466,5.45012,1.097788888888889,1.2044233333333334,2.50489,7.96743,3.148185,3.885065,2.801325,5.579665,1.64998,1.0409733333333333,1.4528825,3.240645,3.67717,3.872225,3.78567,1.8637325,6.36299,2.908963333333333,0.91469625,4.756965,3.00337,2.60743,2.3922133333333333,3.4887,5.650738333333333,2.5369733333333335,3.1699566666666663,3.4443333333333332,2.38421,2.679133333333333,2.7571833333333333,2.850675,2.0393825,4.71443,4.60516,4.93461,1.042778888888889,0.760581,3.8403333333333336,2.71185,1.01769625,2.6423929166666666,3.906995,4.066165,6.90617,4.61939,3.498533333333333,1.7834240000000001,3.58842,3.72286,2.781523333333333,2.540856857142857,3.944485,2.8310600000000004,4.9177,0.8868722222222222,3.21641,1.743544,3.57631,4.06817,1.765625,0.964625,3.102225,0.43929,3.20303,6.70735,5.29595,2.8339980000000002,1.491052,3.8315333333333332,0.7792844444444444,2.6364633333333334,0.7792844444444444,3.90048,4.43366,1.3971875,1.8010425,5.035011666666667,1.8434866666666665,3.570695,2.780135,3.587375,1.218898,1.58023,3.930515,4.386805,5.20345,2.83928,2.939925,3.2314,1.535905,2.3015575,1.8263075,1.9368975,4.447015,1.4494,1.4494,3.43269,4.645336,8.333369166666667,3.976143333333334,7.89465,2.03755,3.89473,3.953545,1.69435,3.5248125000000003,4.14694,3.264905,4.45343,3.06799,2.50629,2.8790766666666667,3.927175,1.04395625,4.112455,4.38984,1.1455316666666666,7.852543333333333,2.751365,3.116195,3.5407566666666663,5.27115,5.30685,3.63381,2.425733333333333,2.832326666666667,2.09071,3.7784333333333335,2.20376,2.1956525,7.209907333333334,3.2489166666666667,2.85388,4.274725,22.210980514652015,0.6861333333333334,2.77619,4.45329,4.61531,8.53564,4.689125,4.66214,4.544935,7.1655,3.536225,1.5913333333333333,4.74104,3.08822,1.136172,1.136172,1.136172,2.35435,1.6723725,3.24184,1.534545,3.065875,1.4931866666666667,2.612055,2.54113,2.86375,1.534545,3.110925,2.65517,4.125936666666667,4.781255,4.82063,0.7457824999999999,3.184935,2.90838,4.605655,3.41426,2.816415,2.4570525,1.723735,2.3543925,1.4161759999999999,3.531025,1.6082325,4.34704,10.640227666666666,2.7729933333333334,2.365135,4.771353333333334,4.798266666666667,4.5582666666666665,6.6242,2.28585,5.376459166666667,4.365115,1.1168383333333334,1.1814057142857144,6.518229,4.546175,2.42028,3.68683,1.89348,3.84434,4.821265,4.534855,4.01251,1.3550228571428573,4.12607,4.425745,4.67019,6.235812,3.48753,5.44445,4.46545,4.445185,5.1095,3.548,4.85591,1.9033825,3.38041,3.091455,3.226845,4.476635,6.41735,4.27606,2.89945,3.5784333333333334,8.98798,4.735635,3.2303366666666666,3.42247,2.927575,4.409575,4.22766,4.566025,6.6062433333333335,3.9391,2.6352433333333334,3.9173025,2.591365,4.197485,2.2619833333333332,6.2212875,1.6911500000000002,4.33364,4.514645,11.852857499999999,0.502925,4.21207,4.9664,0.6573585714285715,3.585515,3.78563,4.174565,0.944136,4.82814,4.824973333333333,2.6565966666666667,9.970301666666668,3.2728266666666666,1.80657,2.405515,3.654775,5.9826,0.55787,3.843725,1.942255,5.42785,0.7140546153846153,4.18285,5.69365,6.1429,3.477005,6.447897500000001,4.62368,3.4377199999999997,2.537733333333333,2.74403,4.280065,4.363585,4.859255,4.964275,5.44485,3.1183566666666667,6.621641666666667,2.729525,3.0566115,1.95302,4.21616,2.28505,1.55593,3.0050333333333334,2.95083,3.22912,3.4838666666666662,3.6906,2.98946,2.5578966666666667,5.4497,3.1009966666666666,3.74944,4.997845,2.5805866666666666,1.1624444444444444,3.1197233333333334,2.899043333333333,3.82927,2.6927866666666667,3.130293333333333,4.82854,2.10897,1.759995,3.099895,3.679675,4.365315,1.10551625,4.18762,3.17832,4.105266666666666,2.8821166666666667,4.818999,3.869245,3.44964,4.06455,1.643355,3.77799,0.64760625,4.590835,4.88701,17.113927575757575,2.965536666666667,1.1758333333333333,3.947,0.6245635714285714,2.698925,4.258855,1.882945,1.213067142857143,3.670545,4.455615,3.070093333333333,0.6898016666666668,2.49102,8.27402,3.91107,5.446,5.1064,5.0294,3.0790433333333334,3.7532333333333336,3.241096666666667,7.533206666666667,3.765695,4.8619,1.981105,0.4476588888888889,2.052355,2.887125,2.29096,3.35123,3.58174,2.9247433333333333,4.7935,0.7027525,4.59417,3.70337,2.6891,1.14048,2.67949,2.048436666666667,4.95706,3.90666,2.24298,1.6704428571428571,3.248275,4.267395,4.20846,6.113131666666666,2.1739666666666664,4.603895,4.13264,3.634565,1.890418,3.619435,6.076443333333334,4.72955,2.56568,4.866345,2.87809,2.66074,3.8844,3.84014,1.325065,4.632885,2.14656,2.56181,5.204603333333333,5.204603333333333,5.3457,1.488156,4.986975,0.86864375,1.7967520000000001,5.20145,2.7045600000000003,1.3854,3.1295066666666664,0.9324960000000001,4.242566666666667,4.44361,2.80643,4.984805,4.165495,3.859445,5.1502925,3.56004,3.7043,2.7590233333333334,2.4181033333333333,2.6948,2.9789866666666662,4.283395,1.7593921978021978,2.9423866666666663,4.43815,4.6798,2.1955329166666666,4.060385,4.524595,4.926066666666666,3.466833333333333,5.1838,4.905265,5.1981,4.79543,3.57953,3.60142,3.65951,4.406195,5.4628,4.8033,4.811175,4.502405,4.593835,0.6733525,4.96364,4.3671,3.925705,7.048439999999999,4.073385,3.791265,4.23097,4.81742,3.40662,3.65881,2.05551625,4.448577500000001,1.8313425,1.3715014285714286,3.434485,2.1094166666666667,2.46468,3.5934999999999997,3.3102866666666664,2.571135,1.13269,1.88081,4.611945,3.725705,1.863215,1.863215,3.024745,1.6270520000000002,3.16445,4.248975,3.430535,3.758955,1.4999466666666665,1.95454,3.4414333333333333,2.048285,3.73652,4.25493,4.395515,4.08642,7.062913333333334,2.635475,3.757225,4.450245,4.347845,3.1973000000000003,4.10842,4.063775,4.344115,1.826595,2.4852766666666666,4.280415,3.82026,3.71325,3.666765,1.7078825,3.700825,4.30445,4.473335,4.256355,3.74142,3.74142,3.037505,3.82534,4.07329,3.791325,1.633994,7.2163775,3.909985,4.814345,4.233975,4.218455,3.85664,5.13105,2.941215,3.76383,2.669455,4.975085,1.7912620000000001,4.09293,5.475297777777778,5.02385,0.673684,4.64412,1.19092,4.77335,4.82425,4.36344,3.915465,5.15705,3.723933333333333,3.723933333333333,0.8107960000000001,2.2440925,4.74042,3.541705,3.888455,5.07525,5.46235,3.271485,4.15091,1.37586,2.70291,1.71189,1.26275,4.1817546666666665,0.8383470000000001,2.5392366666666666,3.0307033333333333,1.1595366666666667,2.2123525,2.65617,1.2218933333333333,6.67247,1.926395,2.6181733333333335,5.59805,1.85163,2.65361,3.158915,4.501585,3.208553333333333,3.3410333333333333,4.0889999999999995,1.688946,2.1350958333333336,4.15272,0.6551978571428572,2.09299,2.3038233333333333,3.04834,2.9124199999999996,1.1422471428571428,0.83595,2.3814333333333333,4.131525,1.156755714285714,2.2123925,1.229745,5.376123333333333,2.25054,5.1366,4.347105,4.185265,5.3165,5.18325,4.067985,4.37001,1.471965,3.9201333333333337,1.67916,2.44094,1.1799171428571429,4.405525,2.05288,7.2161100000000005,4.19577,3.89117,1.421932,6.866522499999999,3.382805,1.5209566666666667,4.091195,3.151295,3.8479,3.14817,1.98667,1.98667,3.1981800000000002,1.313045,1.313045,1.890418,2.82969,2.1344225,1.3374266666666665,3.5402,1.04933625,3.08652,2.29297,1.843865,1.4728733333333333,2.1557025,1.9845125,0.2919394117647059,2.4448475,1.1881783333333333,2.2451233333333334,2.16322,2.3768975,1.0439644444444445,1.091374,3.7499000000000002,3.1487233333333333,1.98667,1.768985,1.9724000000000002,2.48481,2.4649533333333333,1.863278,3.1546000000000003,1.09585,3.2768533333333334,2.650186666666667,2.6125633333333336,1.583018,0.97317,2.4703375,0.97317,2.4703375,0.6566625,0.6566625,0.4766138888888889,2.3150475,2.3437933333333336,0.6566625,2.1692975,2.2647066666666666,2.354335,1.643395,0.8020288888888889,0.6566625,0.6566625,1.702766,1.702766,1.99488,1.768985,0.6566625,2.2571000000000003,0.4552784615384615,3.07002,2.0705666666666667,2.54236,2.46884,2.46884,0.383598,0.383598,1.890418,1.9504259999999998,2.14946,1.967928,0.383598,3.488766666666667,2.251835,1.5703239999999998,0.622690625,1.5703239999999998,0.622690625,7.07254,2.7546866666666667,4.022566666666667,2.75703,2.8732166666666665,3.0574166666666667,2.8433333333333333,3.4863999999999997,2.49562,1.6726775,2.7312133333333333,2.99377,2.27306,1.702766,2.633874603174603,2.633874603174603,2.7755433333333333,2.0622475,4.202775,2.31271,3.3889333333333336,2.7406066666666664,1.452216,2.4012825,2.3224925,0.8066881818181819,1.6550375,3.78513,1.620396,3.1267666666666667,2.48524,2.7068,3.9415999999999998,1.6830666666666667,3.4529,3.0305,4.2331666666666665,1.253112,0.22435896551724138,1.2611214285714285,1.2611214285714285,1.0414355555555557,2.9394033333333334,3.8006666666666664,2.5032833333333335,2.1122633333333334,2.1122633333333334,2.16377,1.52553,0.9792059999999999,1.6793766666666665,1.6793766666666665,0.6566625,1.890418,2.798023333333333,3.267136666666667,2.29297,2.2084,2.2084,2.2084,1.0900788888888888,1.4762857142857142,1.4762857142857142,2.40469,2.8352,2.493462702020202,3.73388,2.4132366666666667,2.42979,3.67067,3.97572,6.3657725,3.486855,4.440245,3.927,13.429617499999999,4.799925,3.458675,1.0194075,3.823515,3.303285,2.33879,3.576075,4.990315,6.136615666666667,5.8091,0.4697894117647059,3.845655,2.92623,3.822175,2.43189,4.400885,4.32698,3.819085,8.213845,3.610575,3.706275,4.004695,3.253572727272727,7.976484358974359,3.190773333333333,2.6989133333333335,3.61056,3.873105,4.898525,3.88574,6.669271,3.30436,1.3836600000000001,2.96036,0.91643375,4.78261,2.488205,2.68912,3.89969,2.45653,2.51265,4.55651,3.82531,8.66528,3.928515,4.463155,2.4720299999999997,4.85207,2.967675,1.2893525,1.2893525,3.353795,3.802155,2.16262,2.19547,4.01019,2.70166,2.74041,1.926915,1.8556975,3.198245,2.53687,1.10125625,2.998995,4.8777,8.23611,1.504684,2.750365,3.111185,2.901435,2.8035433333333333,8.40874,4.158135,3.467,2.8163933333333335,4.07078,3.2012033333333334,2.8763199999999998,3.1656,3.75797,3.82281,4.385765,4.27331,0.4084326666666667,1.5285833333333334,2.284333333333333,1.75418,4.59014,3.50258,2.69444,2.215475,4.553915,3.752584,2.08036,2.158655,0.911378,2.12549,2.4011533333333333,2.4011533333333333,5.0584,1.926015,2.8882100000000004,2.284333333333333,2.03775,1.6193733333333336,3.12635,3.70429,4.87421,4.620075,5.0991,4.69764,2.738345,2.89946,2.10808,4.68586,5.3036449999999995,1.8913933333333333,2.8910733333333334,2.13626,2.1261433333333333,3.74116,2.23405,5.08745,3.79433,3.541975,4.328825,2.9154533333333332,3.598065,4.08466,2.2502066666666667,2.450626666666667,0.42187785714285714,3.7447666666666666,2.590263333333333,2.929125,6.1122,4.593645,5.633420833333333,1.8102225,1.5567783333333332,3.215445,5.06535,6.3482,5.9871,2.8409099999999996,2.203863333333333,3.37958,2.0798033333333334,4.65506,2.115936666666667,2.2706125,5.086,4.84186,4.211255,1.8410975,1.91409,1.032456,1.032456,1.180458,0.8884528571428572,0.65888,1.7147768571428572,4.342555,9.576644166666666,3.859395,4.314205,3.98995,5.9650075000000005,2.67371,1.69937,3.4309358333333333,2.85866,4.90201,2.2258533333333332,2.4742466666666667,2.7810166666666665,3.065746666666667,2.2655166666666666,3.1068166666666666,3.258853333333333,2.8583166666666666,3.3805333333333336,3.3195366666666666,2.7951333333333337,2.6900433333333336,3.0342866666666666,2.3589433333333334,3.02675,2.9586733333333335,2.883453333333333,3.2693999999999996,2.04054,5.62631580952381,3.0294133333333337,4.235984,3.2184000000000004,3.078773333333333,3.695133333333333,2.748836666666667,2.6718733333333335,2.9927499999999996,3.1731366666666667,3.371033333333333,3.07936,1.931255,2.6581966666666665,2.6342066666666666,2.764975,2.764975,3.2700366666666665,3.0404233333333335,2.4148733333333334,2.706296666666667,2.95337,4.1071,2.7657166666666666,2.66055,2.6574533333333332,2.85322,4.153513333333334,4.837035,1.5783533333333333,3.5252666666666665,3.7060666666666666,3.218804,3.2096199999999997,3.6292666666666666,3.3889666666666667,3.0153266666666667,3.417722,1.855518,2.754422,3.3472333333333335,3.3300133333333335,2.5140233333333333,2.3959,3.8219333333333334,2.90225,3.01395,2.3594225,1.136565,3.1920133333333336,2.6111866666666668,2.20534,2.32685,2.9587866666666667,3.0568066666666667,1.88825,5.60956,2.373396666666667,0.887293,4.39771,1.8372870833333335,1.6227716666666667,4.37211,3.593225,3.3145,2.326905,1.3187775,3.34079,2.647105,3.26857,0.380682,2.050685,0.380682,1.905145,1.3187775,2.59994,3.707435,2.0742725,3.39582,3.165465,0.4743306666666667,2.790703333333333,0.9496175,0.44508411764705885,3.662985,3.77394,4.847355,2.519925,5.2693,4.17158,3.765305,2.026465,4.0507333333333335,1.63327,5.1915,2.215525,4.35725,4.191775,2.94403,1.8632433333333334,2.009403333333333,1.3732816666666665,1.72434,0.8674375,0.8674375,4.487545,2.2153133333333335,5.9213933333333335,2.392925,2.21649,2.04126,2.3208157500000004,2.4468525,6.4297,4.6005725,2.15372,2.01481,2.3208157500000004,3.094795,4.16668325,2.53034125,5.535885,2.392925,3.35989,3.485145,3.001943333333333,5.62335,4.78152,1.91452,2.069645,2.317695,2.34946,4.80303,5.2623,1.9214425,3.704865,1.60628,1.585485,5.2492,9.994003333333334,1.9404700000000001,1.9863666666666668,2.5624566666666664,4.058915,3.950175,1.8441375,4.771735,4.54189,2.415135,38.92209509523809,2.8317933333333336,2.9169466666666666,0.40948,4.493226666666667,2.1152166666666665,0.9183733333333333,3.57955,3.69036,1.8285175,1.9132875,2.4060266666666665,3.73531,1.3859185714285716,3.2111333333333327,3.639725,4.673025,0.924539,4.732725,5.0489,4.76552,2.69898,1.602555,3.741695,4.519565,3.612985,3.157595,3.584125,3.981515,11.646181616161616,2.7028,3.102225,3.96011,2.829535,4.33363,3.238895,2.710215,2.92902,6.17168125,4.5668,5.042,4.99295,2.42208,3.700005,4.379915,3.564885,4.705965,4.341135,0.1275576086956522,2.389585,5.39005,2.70292,1.8315833333333333,1.1755333333333333,1.1755333333333333,2.39967,2.7085,2.689025,2.17366,2.999356666666667,4.32678,2.548615,4.53069,0.5745164285714285,4.47278,3.45639,4.67643,4.548825,4.43246,1.18583875,1.0496925,4.403766666666667,2.9448166666666666,3.0848433333333336,3.8297757878787877,4.30452,6.0483725,5.3892,3.91843,3.5493,2.1075083333333335,1.4915283333333333,4.06564,0.30882133333333334,3.264805,3.74188,4.134575,14.227996666666666,1.77336625,3.2119966666666664,0.52539375,4.616735,8.82699,3.30532,1.8005566666666668,5.895,3.08018,1.0161255555555555,5.2513,2.78343,3.05465,4.58401,3.2686049444444447,0.99295625,6.541,0.7379525,5.1305,3.0152804444444445,1.33625,2.0682756111111114,3.191095,3.191095,3.91076,4.126153833333333,1.3357125,2.466035,2.82784,3.594745,3.462855,2.48382,3.412565,3.462145,6.8212486666666665,6.3573,3.879005,3.311055,4.456765,4.51298,3.62023,3.34828,3.471995,3.92122,4.536725,2.50683,2.56168,1.6366066666666665,2.29343,2.24824,1.52609,3.02518,3.6157,3.5543,3.2007733333333337,2.4578866666666666,1.5028933333333334,1.5247633333333335,0.48266272727272724,2.4932933333333334,1.6615428571428572,1.9371075,3.6199666666666666,2.4459066666666667,2.68317,1.00201,2.22862,2.63952,2.80278,3.524855,5.3012,3.864525,2.95826,2.2714666666666665,3.455335,4.464815,2.549895,3.273765,1.98627,3.90208,2.68749,3.89735,1.3046033333333333,0.644814,2.376705,3.2165,3.21686,3.915065,5.0331,9.132725,3.3291066666666667,2.3362066666666665,1.79364,1.7836580000000002,1.7836580000000002,2.924603333333333,2.4915266666666667,4.720325,4.639785,3.54626,4.865405,4.31536,4.311365,3.15756,4.052765,7.9261325000000005,2.5701,0.5014475,3.2586066666666667,1.2857066666666668,1.0107185714285714,2.10165,0.752507,2.0859075,5.54395,4.83586,5.930095,0.917795,7.62213,1.9607500000000002,1.5295116666666668,2.5667833333333334,3.96317,3.2929033333333333,2.3216325,3.785375,2.9769733333333335,4.256866666666666,2.83302,2.6963333333333335,2.961456666666667,6.455415,2.42823,3.855305,3.780425,3.5079291666666665,1.4580466666666665,1.131855,4.284255,2.7667066666666664,3.1407633333333336,5.21152,2.57277,2.088335,2.3470325,3.288705,3.7762,2.23853,3.8858475,2.96007,5.57095,2.381576,1.82406,4.70809,5.38035,4.311805,3.80885,1.5131266666666667,2.26231,1.81808,3.40106,1.6825933333333334,0.9341750000000001,2.7447525,2.21888,1.89368,4.39802,0.6666116666666667,5.6978325,1.4038325,0.7888427272727273,3.472633333333333,4.05832,0.6445285714285715,3.3310535000000003,3.218243125,0.83595,4.37571,0.1774607142857143,0.1774607142857143,0.1774607142857143,0.1774607142857143,0.1774607142857143,0.1774607142857143,1.978062,3.850655,1.978062,1.978062,1.8819533333333334,0.1774607142857143,0.1774607142857143,3.501666666666667,2.6867666666666667,3.73509,3.28288,2.22978,3.48138,1.30504,1.52367,3.248934,1.3867340000000001,2.532783333333333,2.5568442222222223,5.663263333333333,4.031985,3.9687,6.5739,4.38612,4.27484,3.741825,3.71387,7.307284583333334,3.9799,3.7904999999999998,2.2433733333333334,5.28835,2.6010566666666666,2.06463,1.7527166666666665,4.44723,5.4089,5.2013,5.14595,5.5767,4.258225,4.731165,0.6820781818181818,0.7081828571428571,0.7081828571428571,4.66605,2.25205,3.85408,1.0231528571428572,4.11876,1.4740857142857142,2.3478,2.6302600000000003,4.579666666666667,4.579666666666667,6.9298,4.603455,1.2995783333333333,9.205888333333334,2.80163,1.2459111111111112,5.08735,5.26175,3.53122,3.230915,2.74622,4.2246,0.8214333333333333,3.1982266666666668,3.18979,3.8467000000000002,3.1604500000000004,1.5453366666666666,1.4762733333333333,4.5784575,3.171326666666667,3.06488,3.4332666666666665,5.172935833333334,3.3940341666666667,0.788493,1.9140833333333334,3.8005999999999998,2.2209016666666668,3.7123666666666666,3.3448333333333333,3.0637000000000003,3.3159433333333332,2.9599433333333334,2.493516666666667,1.2988333333333333,3.1346666666666665,2.45296,3.408025,3.24691,3.80811,2.6970899999999998,3.2719833333333335,2.8559,1.566784,2.1729433333333334,2.5535961904761906,3.5341,1.7884239999999998,3.1746433333333335,1.7625166666666667,3.695066666666667,5.1931899999999995,4.985860000000001,2.4521125,2.57725,2.753125,2.4065975,1.6267285714285715,2.229975,3.1843796428571425,2.4132025,3.5032,2.769645,3.7189620000000003,3.100255,1.319888888888889,1.3161125,1.7484225,2.1341725,2.973936666666667,3.5607666666666664,5.01115,7.833625,2.76137,5.4535,3.623495,15.297644666666667,0.519755,11.0974175,0.8072744444444444,3.27604,3.25666,2.4735633333333333,3.002845,1.608052,1.48117,2.28136,1.249276,2.89943,1.8967366666666667,2.7597,2.19976,2.6400133333333335,1.5046366666666666,0.6009416666666666,3.206213333333333,2.47252,2.94685,1.0900788888888888,3.4821666666666666,0.7379675,0.35055000000000003,2.1575866666666665,4.62036,4.49302,4.37021,0.7536881818181819,4.042315,4.500825,1.076715,2.3478025,5.2501225,3.381455,3.572915,4.18555,3.789655,1.8947675,3.85585,2.6307566666666666,2.99986,3.55101,2.687865,2.742355,3.94577,3.282315,3.593275,2.205125,3.348,4.442575,1.3548966666666666,4.442555,2.2226425,4.18804,5.333196666666667,1.9117675,2.8423266666666667,2.9377033333333333,5.772941666666667,2.445613333333333,3.177625,4.9267,4.022566666666667,3.988955,1.8719633333333334,2.813275,4.451845,3.4983,3.65984,3.634866666666667,3.1088633333333333,2.8623499999999997,3.9312,3.1828299999999996,2.6535966666666666,2.73364,0.43598055555555554,2.3514275,2.127295,4.50521,4.720125,3.09906,2.70708,3.25395,7.725595,3.502985625,3.88246,2.79996,4.1399,3.00922,3.5691491666666666,2.746836666666667,2.1530225,2.7388166666666667,6.34475,4.66526,2.0299566666666666,3.423975,3.201065,2.673553333333333,4.615005333333333,1.71651,6.005233333333333,3.9075,4.834965,4.409285,6.51765,3.59571,6.743871666666666,3.76494,3.20541,0.6236571428571428,2.2402125,1.52611,2.9295266666666664,3.111075,4.12385,4.0305,5.1052,2.5337466666666666,4.652015,3.744066666666667,3.849133333333333,3.3684333333333334,4.64612,4.30826,4.50322,2.7544966666666664,5.651713333333333,4.5248,1.4766033333333333,5.27175,3.556685,2.84082,2.28596,2.2527833333333334,4.458052666666667,1.2517642857142857,2.3915366666666666,1.9418075,3.93998,4.15441,2.6259166666666665,3.3123966666666664,2.939092,2.3104466666666665,4.05369,1.305622,2.2448266666666665,2.2858933333333336,2.85223,2.5440166666666664,2.6112066666666665,2.71504,4.015245,2.912076666666667,2.7657366666666667,3.98057,2.266635,3.681065,3.54343,1.0270784848484849,1.0270784848484849,4.62629,2.7336466666666666,1.76006,1.340285,1.9657425,1.995265,1.260148,1.3686733333333334,0.633571,1.5968499999999999,1.4702933333333332,2.9982233333333332,2.223883333333333,1.7157666666666669,1.9459366666666666,2.2823966666666666,1.47015,1.76102,1.7526266666666668,2.5372,3.8536,2.854785,2.82325,2.569975,5.294275,2.7243,4.1584,3.8329858333333338,1.98572,4.04377,2.96235,1.900735,3.70965,1.8345425,2.94857,3.63364,1.8485125,4.45278,3.905565,4.037405,3.29421,0.7897799999999999,4.810885,3.988065,3.40478,4.03827,2.292656666666667,4.36678,4.80526,4.82741875,9.018126666666667,3.571585,4.24567,2.86975,3.657735,4.61657,2.10605,2.604085,3.970625,2.12754,5.89758,1.842372,2.67611,5.739185,2.82548,4.239802,1.2434514285714287,4.444085,4.402905,3.05457,4.89692,4.81984,6.40127,15.671380119047619,0.6280176470588235,1.0439644444444445,3.012453333333333,3.88486,3.377045,2.1672075,3.151045,4.14816,4.903425,2.575875,4.331645,1.7313333333333334,1.7313333333333334,5.19935,0.7625109090909091,1.699468,2.99384,3.95159,0.35657923076923076,1.9267233333333333,3.8477431666666666,1.1225116666666668,2.991403333333333,2.7189599999999996,2.909315,7.65157,2.5422533333333335,3.7726666666666664,1.94433,2.2818333333333336,3.80749,3.54178,3.31561,7.310746333333333,1.993105,2.810025,4.47905,6.61181,1.9612166666666668,2.273213333333333,2.5807866666666666,1.4211066666666667,2.490115,1.69366375,3.97501,3.26579,1.50858,1.832706,1.832706,2.9115566666666663,5.64605,4.061516666666667,3.847445,4.27649,4.489885,3.20034,3.780655,4.29607,3.57743,4.25294,3.9500525,4.422825,0.8657159999999999,0.370940625,5.2997,3.794455,2.53221,7.91733,1.5433000000000001,4.634266666666666,4.121055,0.35989333333333334,2.11401,1.3659533333333334,1.8697166666666665,2.073583333333333,5.34689,2.98871,3.278165,4.972182500000001,5.3219,4.647015,0.5807430769230769,1.93872,0.611695,5.738036666666667,1.434828,4.979375,1.928295,3.1545087499999998,3.12349,4.200755,4.100475,5.21595,0.8522,3.26349,3.878935,1.9529175,1.684985,3.723825,3.226885,3.56341,3.7809,5.431233333333333,4.491175,5.68245,2.7380833333333334,0.5632955555555555,3.3829999999999996,3.58946,0.5586361538461538,3.93136,3.806925,4.15117,3.579915,2.68364,4.978875,3.130465,2.901505,2.074165,3.915915,1.6143699999999999,3.45926,3.724365,0.57417,3.564205,3.83853,3.176965,3.647225,4.318395,2.774755,3.82396,0.607574,3.0324533333333332,3.636372222222222,4.597525,3.5698000000000003,2.551325,3.4293666666666667,2.551325,4.594715,3.10352,2.9570866666666666,1.5028966666666665,3.00215,1.8066,3.907,2.805453333333333,5.172153333333333,3.139696666666667,2.750833333333333,2.9812,2.2348617857142856,2.2348617857142856,2.2348617857142856,2.3106266666666664,1.1215566666666665,4.47188,2.4703833333333334,1.7802666666666667,4.1509,2.4696000000000002,2.9723400000000004,4.069625,5.635,3.41665,1.818455,1.092112,3.930265,1.9369399999999999,2.2114833333333332,2.84847,3.35946,2.03524,3.54699,2.71813,1.5712519999999999,4.86047,4.170485,3.95059,3.62262,0.7593611111111112,2.4258833333333336,4.403555,7.73278,3.98199,2.957755,3.162225,3.41119,3.849645,1.5783125,2.49637,4.66482,2.0769975,4.341835,3.040345,5.39185,8.440353333333334,4.124995,3.30585,3.150785,4.92669,3.98241,3.194325,3.194325,3.732045,3.8605866666666664,4.14088,3.86344,4.215155,4.41371,4.09076,1.135725,4.205495,4.244575,5.153,7.955745,4.970435,3.6416459999999997,1.7264799999999998,1.4781683333333333,2.41790875,4.803265,3.78631,4.90042,2.11793,4.373475,5.1666,5.19755,4.775665,2.9322933333333334,3.416145,4.09703,5.14035,4.462935,3.68391,6.502425,4.73799,2.21291,5.19295,3.9161,3.830405,3.78467,4.558555,0.7625172727272727,4.117165,4.32763,1.164794285714286,1.192336,4.807985,4.625365,8.846464000000001,4.94286,4.12913,5.7937,2.835615,2.5080733333333334,5.0539,1.6740025,1.6740025,2.71468,1.5707933333333333,2.8551433333333334,3.2292633333333334,1.9599925,4.124010454545455,1.3914866666666665,1.987115,5.569207499999999,3.3790066666666663,3.630885,3.13545,4.08583,3.923305,2.9036066666666667,0.9690177777777778,4.006515,3.037176666666667,3.87486,4.042065,3.714705,5.63355,4.938725,4.563475,3.514355,4.997155,6.47395,4.60842,3.278015,3.1854,1.7878475,1.7878475,3.88853,3.807085,2.4373066666666667,2.6624166666666667,2.0799436363636365,2.5607,1.7756699999999999,1.7756699999999999,4.26909,3.497935,2.018005,3.5273,2.69881,1.94991,1.234545,1.00622,2.708425,0.4440126315789474,0.86605,2.809275,3.930255,0.4415918181818182,3.99476,1.955564,5.3746,3.3848,7.363715,4.20568,5.18446,4.813235,5.3177,4.12392,2.01857,1.8699839999999999,3.55694,2.92382,3.7788,1.24196,3.175825,3.99589,2.75994,2.664565,2.537365,4.195605,3.39084,3.29215,3.851575,3.597205,3.49396,3.07005,1.0434171428571428,1.787495,2.38619,2.953925,4.343235,7.51496,0.93606,1.6130366666666667,1.6130366666666667,1.8333659999999998,3.77313,2.79693,2.95059,5.46608,2.8979733333333333,1.1683675,1.1683675,1.1683675,2.89788,2.978412,4.586355,3.19871,4.33754,3.273225,3.540975,3.12111,3.3290841666666666,3.65937,4.18808875,2.6352475,1.260148,2.626235,2.6352475,3.48228,1.1952566666666666,1.8412933333333334,1.8913,5.647164,2.70341,6.061824,5.647164,3.3584140000000002,1.728345,1.728345,2.536415,5.87522,1.728345,2.308985,5.54428,2.32761,2.532635,4.9452,3.531145,4.19341,1.9879666666666667,3.128665,4.10729,2.14338,2.22795,3.76374,1.9879666666666667,2.51188,1.932125,5.98274,2.59278,1.12587,2.49307,3.34763,3.354114,1.955125,2.095414,3.96188,1.894184,1.781055,3.08126,2.08932,3.06019,3.5391,2.15699,2.430305,2.175485,6.48785,2.47495,3.37218,3.20088,3.20088,8.520903333333333,1.1078033333333333,2.83036,2.147515,2.754005,2.320725,1.21025,1.21025,3.54689,1.90628,6.55127,2.20998,3.59963,3.11794,5.46721,2.51872,2.19237,5.7485,5.7485,2.516905,1.6322925,1.2922525,1.2922525,1.6322925,2.0320733333333334,1.3855933333333335,1.1858600000000001,1.56055,2.0717833333333333,3.861915,1.789545,3.19986,2.7912,2.670215,2.86609,2.89634,2.093475,3.2470825000000003,3.2470825000000003,5.96452,2.520455,2.841355,3.09823,3.287365,2.32558,2.85171,2.439105,5.2253825,1.9318225,1.6005639999999999,1.345749,2.337989,5.64138,4.211095666666667,3.6027716666666665,3.122815,1.83245,1.83245,1.83245,4.92266,2.414275,1.1858600000000001,3.311415,3.50231,1.2378175,5.06647,2.9716175,6.26955,3.45618,1.718255,3.475855,2.2721899999999997,2.187795,3.102465,4.18202,3.13718,1.514535,2.476835,2.88837,2.84871,5.24652,1.96802,3.357785,2.781985,5.77153,4.45019,1.814175,2.284005,4.98864,4.97475,5.35217,5.51437,1.064192,1.064192,2.2518469999999997,2.2518469999999997,0.6785319999999999,4.9595,3.42756,4.57882,3.88364,5.01817,2.04841,4.259058333333334,4.259058333333334,2.14713,3.355415,3.527975,1.215384,4.52095,3.17889,2.94857,2.41574,4.46814,2.21674,1.783415,3.220965,2.6459,2.907735,5.00089,2.52093,1.55043,3.621885,5.82051,5.50208,4.40544,2.473505,3.40154,2.0057,5.06481,2.44668,3.47827,1.909555,6.74746,3.79867,2.194395,2.73265,2.045735,4.45137,2.214595,2.73626,2.537785,6.59668,4.77154,3.292515,1.96524,2.416015,6.48943,2.881555,2.89603,5.24186,2.86816,2.769035,2.586015,2.94001,1.7728533333333332,2.03872,1.46959,1.6474900000000001,1.8278933333333331,1.87597,1.62061,2.0135833333333335,1.87839,1.7728533333333332,3.55483,4.16688,1.970735,1.6376249999999999,1.6376249999999999,3.4604266666666668,3.4604266666666668,3.0464466666666663,3.0464466666666663,2.891245,2.260525,1.774815,3.71078,2.14482,2.14482,2.2958675,2.2958675,3.18906,2.1083,4.39521,2.330485,3.380745,2.11081,2.11081,1.82674,4.23457,5.07289,1.1952566666666666,4.10739,2.15699,1.78881,4.18199,3.122245,1.828285,2.498785,7.09646,2.173705,5.6761,3.02271,3.35425,3.08752,2.38811,6.08707,3.12753,1.90336,2.45489,2.804015,5.8513,3.49116,1.523078,1.523078,3.4896,4.43569,4.61366,5.34993,2.76594,2.575975,1.49542,2.925505,1.541505,2.87162,1.78826,0.751884,0.751884,0.751884,1.8683675,4.88708,1.8683675,2.177065,3.6324300000000003,1.611865,1.990005,4.04393,3.56514,4.95156,1.5384533333333332,4.74729,1.5384533333333332,1.5384533333333332,2.35987,1.88263,2.18591,5.68595,2.18591,2.47219,3.89844,1.930375,1.75275,2.765865,2.98204,3.2832766666666666,3.1449433333333334,3.54878,1.3389033333333333,3.912935,0.7330518181818182,4.126875,4.266145,2.5424075000000004,2.5424075000000004,0.7070109090909091,3.9139,2.634743333333333,5.65815,4.86951,3.963105,5.47765,4.13611,4.09697,5.30895,4.6006,4.201075,3.690635,3.813275,4.968715,5.1011,3.386455,3.52674,4.11927,2.414356666666667,1.197466,4.29704,3.47364,3.257775,1.2093742857142857,3.737475,4.05696,6.234465,1.138615,5.29265,4.14061,1.98526,1.876825,3.11699,3.649435,1.58828,1.523078,3.994855,4.952405,2.63755,4.779595,3.154195,1.1193300000000002,2.869816666666667,1.2357157142857143,3.1538466666666665,1.8347733333333334,3.0093,1.8674125,2.67935,3.994455,3.02556,4.56382,3.21642,2.1838975,4.74954,4.04799,3.1012,5.16365,4.151495,2.66325,5.96555,4.862525,3.14635,2.6085333333333334,2.875165,2.9333766666666663,3.257683333333333,2.715476666666667,5.053,4.21395,3.847575,2.3013833333333333,2.5603233333333333,2.4317066666666665,2.20651,2.24829,2.3317466666666666,2.1753466666666665,2.2721925,1.231135,3.005011333333333,1.182275,1.765355,1.6875775,2.71845,1.5564275,1.7170175,3.797585,4.57018,1.9023375,3.95143,3.600365,6.3182,1.9912866666666666,1.6200040000000002,6.4452,3.370935,4.631355,4.099665,3.94648,2.048805,3.547255,2.3443325,2.927565,4.23701,0.6909025,3.967675,2.29765,0.7929963636363637,4.814185,4.29878,4.128565,1.82504,4.581845,5.99015,2.745036666666667,3.138393333333333,2.5668833333333336,2.2068933333333334,0.571727,3.07845,2.90405,4.678525,2.3300675,2.07535,3.41816,1.0194925,1.770435,1.770435,2.759025,1.770435,4.04419,2.70575,4.321575,4.458325,5.80165,13.235118333333334,3.0992033333333335,4.83208,2.61947,4.58412,2.99356,6.30734,2.9442733333333333,4.645485,4.891765,3.876365,1.1480483333333333,4.87473,3.2051433333333335,2.5764366666666665,1.02321,2.1281775,3.14786,6.92437,4.403325,2.82969,4.583895,3.1981800000000002,4.264535,4.11273,4.378375,2.872785,2.8278666666666665,3.882095,5.66355,2.69097,4.322345,1.639725,1.639725,3.153195,4.804645,1.175235,4.132270666666667,2.043035,4.651225,2.63197,2.56676,3.2476599999999998,2.32531,0.7219785714285714,3.456075,2.7336899999999997,5.4342,4.509025,0.22519625,4.87692,4.3023,4.093295,6.6552283333333335,2.8920433333333335,2.8545366666666667,2.0618633333333336,3.0661633333333334,2.6207766666666665,1.37945,2.86927,2.5525433333333334,1.3564116666666666,3.2991200000000003,3.018463333333333,2.5746866666666666,2.83812,1.2542466666666667,4.33457,2.829295,4.840105,3.77518,3.67619,1.56217,2.54061,1.225095,1.688785,1.225095,5.10045,3.3795333333333333,1.513182,2.425165,3.978125,3.73888,2.986205,3.91705,0.3478175,1.3258170833333334,3.883575,4.268945,6.3857,1.7517025,2.7733233333333334,3.02646,1.9288366666666665,2.806325,3.75905,4.788005,2.49179,2.2212733333333334,2.8341499999999997,2.589496666666667,2.65338,4.29477,2.113515,4.440205,3.823058333333333,6.28495,7.24209,0.7439977777777778,0.806099,3.90127,6.55313,2.10764,3.612665,1.2921933333333333,1.2921933333333333,3.61641,0.44576333333333334,3.524415,3.73923,2.60211,3.97028,3.18578,2.497735,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,0.24678333333333333,2.57705,2.763925,3.5276916666666667,3.0469016666666664,5.029465,5.878380416666666,2.8876,2.0546533333333334,0.9484666666666667,3.47318,0.73567875,5.089390833333334,3.0347375000000003,2.27391,0.73567875,2.465765,2.79439,0.962445,3.86777875,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,0.158956,4.16891,1.5415025,4.65075,4.537455,1.7610540000000001,4.775375,4.04011,5.1827,4.705688333333333,3.358118928571429,3.22034,4.437595,1.746305,5.57174,4.50795,0.7437142857142858,1.4410428571428573,1.3318242857142857,3.1159433333333335,3.1159433333333335,3.01488,3.82885,4.1235,3.68022,4.0646,2.929873333333333,2.0022433333333334,0.5400242857142857,4.14437,2.98063,2.735395,4.25346,3.22194,3.0137375,5.19445,4.47149,6.604865,4.25385,4.571235,5.7436,4.47095,1.2686814285714285,3.002795,5.241126666666666,33.06328079148629,1.2313333333333334,4.19746,3.06663,4.58954,3.94978,5.29725,4.788165,0.42934047619047616,5.44855,4.351135,1.8983525,2.05556,3.56797,1.6136125,2.54359,2.443445,1.70373,2.91636,2.4649533333333333,2.8047,2.62619,0.591306923076923,3.135185,3.76549,0.3612121052631579,2.55673,2.81849,3.30852,3.90224,1.784085,4.40388,3.898205,3.152335,3.47043,3.048805,4.136595,3.09215,3.73446,2.0909625,5.241126666666666,3.343085,3.357185,2.844295,1.7311039999999998,3.89485,3.707655,6.6441,3.435175,4.740865,5.8371775,5.1687009999999995,2.2878375,4.34556,5.7818575,7.745369999999999,2.55164,2.40172,4.8377,5.578423333333333,4.238835,3.27042,5.2339649999999995,2.772775,1.67051,2.2019975,60.30297440543761,5.19115,4.19765,2.554725,0.8369479999999999,2.6890666666666667,2.8653099999999996,3.4331,0.8078355555555556,4.227205,0.7986588888888888,7.361418928571429,1.9369399999999999,3.2453333333333334,1.7542300000000002,2.55238,2.50156,3.3790999999999998,2.42171,2.25427,3.3594666666666666,1.5389033333333335,5.365973333333334,3.9282333333333335,1.43774,3.0001866666666666,1.3631466666666665,1.5357875,7.40645,6.08865,3.31567,4.23527,5.129967499999999,1.406297142857143,3.4962,3.34591,1.6392475,5.85795,3.42636,3.69107,1.6567475,2.8943891666666666,3.461233333333333,4.03695,5.9061,4.71266,4.57427,2.523025,3.881485,4.5578,2.94511,1.43684,4.28607,3.3463999999999996,3.87259,4.997535,3.802385,3.71718,4.685555,4.43764,4.212335,4.539215,3.962245,3.0899033333333334,3.926935,4.107445,3.233245,4.126325,3.7439,1.553315,1.553315,4.138345,4.81869,5.02,3.36107,4.756455,3.3039066666666668,2.843505,4.95506,5.48755,0.7389754545454544,5.3094,6.4279150000000005,5.5801,5.58645,0.9727122222222222,3.20993,1.232815,1.232815,1.232815,3.747625,3.365,2.6622066666666666,3.3768,0.97584,4.98619,5.3066,3.0397,1.5816275,2.0548,3.95395,3.74385,4.34736,3.5172999999999996,6.791,3.552405,2.45098,4.67574,6.8189,2.380695,4.12779,3.76808,3.094285,5.52515,5.0322,5.02125,5.8139,2.942485,3.5623099999999996,1.9309566666666667,1.9309566666666667,0.7092727272727273,8.355278,2.04736,5.69295,5.64655,4.086285,5.785,3.81012,3.0107583333333334,4.669495,7.59204,5.643281666666667,2.6571433333333334,4.39284,0.9907030000000001,3.74385,1.9298033333333333,0.8887466666666666,1.223752857142857,2.5739266666666665,2.9316433333333336,2.890836666666667,1.0938271428571429,2.5846833333333334,2.98594,0.907711111111111,2.7818966666666665,3.13002,1.662678,1.830774,2.9052633333333335,2.9089566666666666,2.76994,2.4640299999999997,1.704826,5.32425,4.44649,3.88364,4.30833,5.1667,3.212415,4.46198,6.4995,5.0639,4.372035,3.87406,10.137276666666667,8.706865,3.0395133333333333,3.57705,1.9312333333333334,3.798255,3.3119,4.62178,1.0098583333333333,3.745805,3.47861,1.62327,4.054705,2.9520416666666667,4.33201,2.862415,3.95754,6.6765,7.79561,3.875125,1.4910833333333333,1.4910833333333333,1.4910833333333333,4.649025,1.14945,1.4748125,0.4540766666666667,4.357868333333333,2.9068133333333335,3.597265,0.964758,1.11048875,3.147555,4.177945,3.650185,16.464335976190476,4.247485,4.543785,6.0882325,2.666,3.255845,3.34693,0.9263811111111111,1.42589,3.808755,3.66886,4.44579,4.63535,4.36086,3.843415,2.68179,3.59169,5.19485,0.5391600000000001,4.571885,2.2665575,4.041075,4.688215,3.3773666666666666,2.492226666666667,3.993293333333333,1.9472733333333334,3.457825,6.05095,3.0978366666666663,3.700505,4.35181,4.134565,4.62676,3.8483,3.2966,4.58801,4.92202,4.67993,3.688325,4.502885,3.715165,1.1179471428571428,1.469705,6.050232333333333,6.19395,3.794055,4.79871,2.504275,2.8059266666666667,2.6971166666666666,5.630836666666667,1.840875,2.11979,2.8643666666666667,2.92511,3.29806,4.50849,3.02754,5.301753333333333,1.1501725,4.744185,0.9430166666666667,3.937305,3.34659,1.6926483333333335,4.239875,0.9771466666666667,5.06385,5.606,4.973565,3.796525,3.73207,3.80686,2.97057,5.11025,6.00755,2.826378,4.007835,2.405275,2.6329,1.966855,2.56585,3.13301,5.0442,1.04933625,4.4755875,1.3337875,3.327105,1.5901500000000002,1.04933625,0.18826702702702702,3.69303,2.92622,2.2532058333333334,1.9074499999999999,2.735845,1.1241475,3.846325,3.610445,4.80744,2.61423,6.0734,6.2911649999999995,2.6396866666666665,3.4636,2.5970733333333333,0.799482,2.3281,6.2124,4.192025,5.6238,4.842935,2.1637366666666664,1.2827333333333333,3.8381375,1.59939,2.182355,1.714215,2.572075,1.75522,1.938765,1.9791475,2.0676825,1.8810925,1.3142485714285714,1.349305,1.881345,1.8514675,2.20257,2.3862366666666666,0.5274953333333333,1.046926,2.924576666666667,3.311,1.926395,1.7983833333333334,1.52897,3.60632,2.217913333333333,2.53637,3.43789,5.3163,3.591885,3.07461,4.279505,1.5216221323529413,3.6435899999999997,23.2686575,4.60037,5.7657,4.16967,2.28549,3.763435,4.730505,2.23481,5.2236,3.27022,0.79541625,3.471675,4.495405,3.72451,4.15141,1.5265633333333335,1.9968733333333333,2.46124,2.35621,1.5462428571428573,3.3570333333333333,4.827515,4.12938,3.326855,4.04097,4.98574,3.260875,4.579725,1.221885,3.10031,4.09187,5.0252,1.87752,3.294086666666667,1.74359625,1.74359625,3.540465,5.05375,3.04919,3.0620066666666665,3.711325,3.900845,6.70852,4.80915,2.286445,1.42589,2.88838,4.295465,3.08652,2.633874603174603,2.633874603174603,3.255716666666667,5.0223,3.435835,4.996777222222222,2.285845,3.580975555555556,0.6399255555555556,0.6399255555555556,0.6399255555555556,3.13205,3.72743,3.7608233333333336,5.7491,2.0089975,4.39958,4.91258,4.990415,3.053375,5.26325,2.515995,1.29559,3.90813,3.894775,0.4676492857142857,4.126366666666667,4.75947,1.5123566666666666,5.07825,4.994655,4.4356,4.359945,3.79269,2.85033,4.281775,1.674766,4.311875,1.5870283333333333,4.414405,6.09395,1.16368625,3.21337,6.6495025000000005,3.631535,3.0052633333333336,2.131015,3.84608,5.75195,3.003573333333333,7.627725,4.187975,2.260693333333333,3.112823333333333,2.7046533333333334,2.436193333333333,2.82487,1.8920733333333333,4.51681,0.5563933333333334,2.0331675000000002,2.0331675000000002,3.108855,3.43348,2.2856725,2.87259,4.09379,5.3604,4.266495,1.3367833333333332,4.590813375,4.30014,4.723835,3.593925,4.0959365000000005,3.6325765,0.46336,2.967137142857143,1.05201125,0.46336,4.317225,0.8182355555555555,4.259805,4.01311,6.475422,2.2064833333333334,1.04448,1.108416,2.263995,2.8648366666666667,1.5754833333333333,2.4293633333333333,3.290875,3.27955,1.98342,2.263133333333333,4.340315,2.99733875,4.043575,5.9158,3.439605,5.186,6.534693333333333,4.590105,3.554975,4.54212,3.716165,4.37735,4.858745,5.65981,5.4487,2.3704566666666667,0.9490033333333332,3.50973,3.981395,3.985255,4.46095,4.177825,5.3365,2.492906666666667,2.536026666666667,3.0241399999999996,2.3251566666666665,1.9737366666666667,2.9002966666666663,3.15234,2.31291,3.658715,4.78388,4.12399,5.1994,2.520373333333333,3.543533333333333,2.84925,0.7254285714285714,3.990035,3.377595,4.20126,2.8903033333333332,5.106426666666667,3.1921,4.53593,3.833645,0.5779338461538461,0.5345378571428572,4.334735,2.806066,3.043145,4.524985,4.25986,1.6902180000000002,5.2873,4.08834,2.561246666666667,2.5994699999999997,2.2572125,2.1643229166666664,3.5112,3.07443,2.96362,2.9331533333333333,3.4492999999999996,2.5492,2.9441133333333336,3.7121666666666666,4.21188,0.55540875,0.55540875,0.55540875,3.2620704166666665,3.6436666666666664,3.5034666666666667,2.614176666666667,2.8535466666666665,1.135725,2.9450133333333333,2.999613333333333,1.7575175,2.634236666666667,2.4853866666666664,0.9477744444444445,2.7343583333333337,4.59309,9.66633025,1.529505,0.555844,3.788095,0.555844,0.555844,0.555844,0.555844,2.1932675,3.8929065,3.940175,4.76113,6.0634,2.773046666666667,2.676876666666667,3.0071725,3.2400933333333333,4.458205,1.0002083333333334,2.296116666666667,3.20809,2.487693333333333,2.9244866666666667,3.76196,2.2210466666666666,2.496975,1.1756555555555555,5.4864,2.886485,3.54104,0.8687575,0.632827,0.632827,0.8762330869565218,1.7449905869565216,0.8762330869565218,0.8762330869565218,0.30075608695652173,0.30075608695652173,0.8762330869565218,1.5141200000000001,2.4002433333333335,2.956545,3.0773499999999996,2.500506666666667,2.61936,3.2701733333333336,2.8510766666666663,4.64622,3.57139,1.889515,2.3307800000000003,1.81187,0.1803558413107511,0.1803558413107511,0.1803558413107511,0.1803558413107511,2.54836,2.4840633333333333,0.9651759999999999,5.0155,0.7799727272727274,1.638128,4.472915,5.1147,3.949885,3.13609,4.477155,3.487225,1.7568933333333332,1.18032,3.795275,4.56768,6.5684,2.352125,1.39219,1.9014566666666666,2.9327199999999998,1.4271066666666667,2.7338833333333334,2.8241866666666664,3.2565000000000004,4.26185,4.00465,2.98115,4.924645,2.47118,3.998195,5.2421,3.919955,4.18475,4.32873,5.31091,4.623964166666667,3.0039160000000003,4.978275,4.41501,6.7046,4.56033,4.557455,2.341035,2.93744,4.179955,4.84702,4.384025,4.01771,3.9134,4.094685,3.95475,2.4043466666666666,5.33765,3.539665,7.5678,6.1003,5.68425,4.9419,1.4627,0.962832,0.6487992307692309,1.7897539999999998,4.90593,5.45515,3.97679,1.6629740000000002,4.09955,2.90158,5.25875,5.49855,6.16984,4.22668,3.21789,1.6010940000000002,5.2735,3.943215,2.953745,1.76975,0.96637875,3.763005,3.226005,3.656975,3.544285,2.27626,4.444575,1.7056933333333333,2.9275066666666665,2.533775,4.496775,6.22265,4.85393,2.2879725,1.44175,5.64535,2.867226666666667,8.46867,2.88045,5.2513,5.95295,4.48191,5.43035,3.59427,5.04895,2.1947275,3.86736,4.95505,2.4709075,4.105465,4.41497,7.22719,5.0066,3.1560166666666665,4.0142,3.853065,2.99733875,3.421635,5.1893,5.70015,2.3691825,2.9672466666666666,3.380266666666667,2.109635,2.582255,4.161115,5.646,4.956115,4.56543,4.91779,4.218855,4.642695,0.6855438461538461,3.1000666666666667,1.2242257142857143,31.32843451293996,2.445285,4.492775,3.129775,4.4919,1.599572,2.4208066666666666,3.042107738095238,1.546690238095238,1.546690238095238,1.546690238095238,1.546690238095238,1.4954175,3.32705,0.3040833333333333,7.699963888888889,0.3040833333333333,3.952155,4.946945,1.96757,5.25495,2.910325,3.8949173333333333,2.3355166666666665,2.3042700000000003,2.7624166666666667,2.1145333333333336,0.6092138461538462,2.6582033333333333,0.7540616666666667,3.4314666666666667,2.1382733333333332,2.486092,1.2147283333333332,2.486092,6.30165,8.01928,4.323735,4.23486,5.82735,6.2164,7.387486666666667,3.141255,1.510835,1.510835,2.3420433333333333,5.03925,3.801615,4.43234,6.10142,3.81855,2.76048,3.781035,3.411455,3.49521,2.14403,0.618438,2.21227,3.665385,4.161195,5.102003333333333,2.1006525,3.49849,1.211854,3.183765,1.288774,3.4078,3.0201266666666666,3.02182,3.5027000000000004,2.9819999999999998,4.817615,0.6708107692307692,3.476235,3.5688666666666666,2.5811466666666667,2.449263333333333,4.183551875,3.3859999999999997,2.08887,4.376693749999999,3.638325,5.16685,4.144795,3.575405,5.7681,5.05255,2.06619,5.57555,2.379452666666667,1.7373333333333332,3.1227933333333335,2.445536666666667,2.86183,2.486405,1.8982,3.4602158636363636,4.248595,3.38266125,2.3328876666666667,2.3328876666666667,2.52629,4.081925,4.013115,0.66331,3.256935,3.13774,8.73139,0.8431954545454545,4.386615,3.31063,5.503,3.70771,3.726465,2.20808,3.925335,2.785455,5.30385,2.6289783333333334,1.0209525,3.82191,2.7005466666666664,3.721635,2.66522,3.579775,3.781375,3.94621,5.309977,3.28479,2.034635,5.16925,2.6075866666666667,4.503145,4.75833,4.697085,4.449035,3.9629,2.89053,2.202856666666667,2.9217600000000004,2.61017,2.67975,3.278223333333333,2.7324659523809522,4.949956666666667,2.9609799999999997,2.47126,6.366346666666667,4.918665,3.6629899999999997,3.0558533333333333,3.7542666666666666,3.991945,3.57176,1.897725,3.69878,4.653905,4.8141,1.370645,3.525285,2.59667,6.65259,4.706055,8.833383333333334,4.060085,3.84262,2.149175,4.22908,5.5213875,7.54328,4.09402,5.53525,3.67937,3.39932,3.77664,1.71651,4.107343,1.4010883333333333,3.40773,4.70907,3.4368,0.835725,9.133771666666666,1.205688888888889,1.95423,2.4366866666666667,1.9225866666666667,3.441333333333333,1.4043666666666665,3.50219,3.837065,2.4115966666666666,4.24656,1.0944366666666667,3.98876,1.3992933333333333,2.8898206666666666,3.89164,4.687815,1.3851475,5.9040791666666665,2.2973356666666667,7.93221,4.32125,2.72995,3.952235,3.396725,1.1489858333333334,7.33799,3.01078,3.353355,2.356,4.17581,2.091155,3.0591475,2.29825,4.01536,1.4040575,5.85445,2.63722,4.123675,0.801201,1.9058316666666666,3.77027,4.73731,5.19058375,1.483938,1.483938,5.82405,3.83008,5.97145,3.80029,3.550585,9.2305,4.37255,5.5602,4.063895,2.481685,2.060494000768049,0.3685845,0.19364354838709677,0.6128035483870967,1.0791059523809525,0.6525278341013825,0.19364354838709677,1.259087,0.41916,1.4476904523809524,1.8718905483870967,1.82316,2.2475075,2.28311,5.0418,6.189356666666667,4.642405,4.97929,4.216015,4.907655,1.19152,4.82092,3.818045,5.4364,4.91547,5.0422,5.21395,5.80125,5.4232,1.1839533333333334,1.2384671428571428,1.894108,5.80577,1.31599,5.3893,4.627575,6.852261666666667,4.74764,5.31005,4.401215,4.49449,2.4292025,5.29135,5.25115,6.420025,4.915675,5.951785833333334,5.50575,3.751565,4.25244,3.630133333333333,0.934403,3.573566666666667,4.204665,1.14116625,3.5902666666666665,4.43581,4.3842550000000005,4.970375,2.4503425,3.34332,2.711843333333333,4.458515,2.1412625,3.80262,1.2620683333333333,3.123005,3.614115,3.59262,4.865075,3.3296158333333334,0.5875483333333333,6.00925,1.00435,3.60166,2.9493766666666663,3.760735,1.9396000000000002,3.9015,3.8078061538461543,3.1545966666666665,4.299995,15.721931761904763,5.450576666666667,2.18832,8.2565,1.40421,3.722735,3.0191433333333335,2.83372,1.96204,0.22291347826086957,2.8248266666666666,4.35096,1.6986640000000002,2.197756666666667,3.1369366666666667,1.793145,2.2624366666666664,1.5529285714285714,3.327975,4.684645,4.962685,3.2414,0.5016442857142857,2.3775066666666667,4.641875,2.884375,3.64314,4.452255,4.24438,5.51295,0.4773994117647059,2.534126666666667,2.534126666666667,5.1252,5.11555,4.64803,2.650225,3.4943666666666666,2.8682933333333334,5.1262,3.45079,5.244435,4.451725,4.2943,5.0655,2.6159,1.9348120000000002,4.44564,3.85965,3.98298,3.18094,1.817934,5.2839,4.454445,3.77197,4.31038,3.80119,3.847905,0.61819,3.0563,0.5734775,3.0506533333333334,3.282425,3.988475,17.50562142857143,3.52397,3.751615,2.2721899999999997,0.99222,2.2628833333333334,2.6125633333333336,1.583018,2.296425,2.48578,4.615225,2.1875733333333334,3.86072,4.16552,2.0300525,4.390655,2.9717466666666668,4.52671,4.572285,5.3312,1.500355,1.6934,2.536265,4.838375,4.70921,1.1619666666666668,5.349,3.73718,5.59995,4.732205,1.60987,4.542905,3.59565,3.39471,3.83662,3.97109,3.2262033333333338,0.54970125,7.431514999999999,1.485104,0.20072555555555555,0.20072555555555555,0.20072555555555555,4.660525,3.883035,2.7608833333333336,4.146965,2.74657,4.526895,4.433172857142857,3.9998066666666667,8.457650000000001,3.994335,6.546525,0.8757225,0.7301275,2.2776825,4.32825,4.19886,2.19524,5.3494,5.43825,3.442335,3.251815,4.262665,2.2465766666666664,4.740835,4.609508,2.2451233333333334,2.93503,2.9318500000000003,2.637585,6.0269,3.76006,0.6581771428571429,3.57502,3.149705,4.102475,4.80092,5.0775,2.80637,5.52985,3.608345,13.444799375,4.56721,6.83588475,2.3655033333333333,6.285337,4.198165,3.96583,1.9845125,2.2080295833333334,9.5462,2.1826433333333335,4.344133333333334,4.1704,3.7943,3.567133333333333,2.81357,2.071905,2.1962375,3.0639066666666666,1.778018,3.9600000000000004,2.2654566666666667,2.678043333333333,3.4059333333333335,3.4969333333333332,2.4379999999999997,2.4379999999999997,2.476173333333333,3.5218666666666665,3.3401,2.1978033333333333,3.1905466666666666,4.245933333333333,2.7156599999999997,2.7567266666666668,3.7971333333333335,2.2998966666666667,2.0120875,3.9972,2.9048433333333334,1.5445499999999999,3.7769,2.37254,2.3098633333333334,2.851793333333333,2.198135,3.343,5.581646666666667,2.27893,3.7424999999999997,1.7701366666666667,10.227296333333333,1.9715566666666666,1.85895,2.0864000000000003,1.0414355555555557,1.565988,4.316873333333334,2.683638,2.683638,1.61593,1.46648,3.6368533333333333,3.677103333333333,2.306763333333333,1.4966949999999999,1.688946,4.727442666666667,3.680733333333333,4.040233333333333,8.348866666666666,2.8433957142857142,2.7208633333333334,3.144151801242236,4.335233333333333,2.0120875,3.2613533333333335,2.7050433333333337,3.488766666666667,3.3436316666666666,0.840795,3.1776560000000003,2.7939433333333334,2.7864400000000002,3.90945,3.23157,0.6888772727272727,1.931227380952381,5.1809,2.5559035000000003,3.3645666666666667,1.6766166666666666,1.6766166666666666,2.038725,3.851026666666667,0.863406,2.15569,4.22263,4.22263,0.6534380952380953,5.777506,3.530055,3.789375,4.645215,1.1823700000000001,3.203583333333333,3.516,4.9633883333333335,4.859764,1.8670200000000001,0.659046,2.31451,2.52611,2.8712093333333333,2.1641333333333335,2.34937,2.93596,2.296625,2.53702,0.7743718181818182,4.66333,4.941890285714285,1.2797516666666666,1.7757142857142856,5.48495,2.10009,1.51888,3.922075,1.572628,3.60366,2.685625,3.5622666666666665,9.05555,4.564713333333334,4.356455,5.1719,2.298721272727273,0.8069940000000001,1.9886320000000002,6.841946666666667,1.8203966666666667,4.249195,3.814525,3.674325,20.89471041666667,3.2009233333333333,1.3795400000000002,1.09387125,3.09073,1.5337266666666667,4.239802,5.035,3.1590805,3.4166000000000003,0.9663400000000001,1.48301,2.75194,0.56628,3.4255333333333335,3.726566666666667,2.9976833333333333,2.4964833333333334,2.6330966666666664,2.830626666666667,2.040036666666667,2.8583166666666666,1.593576,3.7692666666666668,1.4246416666666668,3.88581,3.91044,2.6333366666666667,5.38115,3.15888,4.011595,4.9744,4.469095,3.095083333333333,2.981973333333333,2.2774300000000003,1.1002257142857144,1.1002257142857144,1.1002257142857144,2.3813375,3.576366666666667,2.616076666666667,2.4866366666666666,2.157156666666667,1.972905,3.355,5.27985,3.767995,6.511035,3.187325,2.385915,1.810525,0.9810633333333333,2.4206066666666666,3.910925,2.56422,2.58134,2.40798,2.4151966666666667,2.506,2.8146133333333334,2.69396,2.72142,2.1798466666666667,3.3889666666666667,2.0819,2.222875,1.59953,1.77283,3.0180866666666666,3.0467566666666666,1.974105,3.83031,5.1072,2.948536666666667,2.4564765384615384,6.063106666666666,4.08889,4.65768,5.5258,4.44878,4.31519,6.090882499999999,1.19207375,4.149515,2.606315,5.2103,5.01885,3.840305,3.36563,2.23467,7.62727,2.308135,0.81076,7.53335,5.44454,5.753614523809524,4.543275,2.91983225,1.6796625,5.0217,4.15867,4.341265,5.10255,2.56833,4.148,4.346545,1.81187,3.864725,2.849375,1.4083566666666665,4.480585,0.6132,4.0594383333333335,3.318595,4.5772,2.946095,1.71461,3.444655,1.910165,1.484225,2.8268066666666667,3.2203466666666665,3.2973700000000004,7.321682692307693,1.5780825,6.454246250000001,9.777925,5.844575,3.10798,1.3400642857142857,2.79284,1.3400642857142857,2.8036066666666666,2.119756666666667,0.32006999999999997,1.1601525,0.32006999999999997,0.32006999999999997,0.32006999999999997,1.1601525,1.1601525,0.32006999999999997,0.8400825,4.14303,3.39562,3.18797,3.213805,3.540095,4.18863,2.888758333333333,1.626016,6.517786666666666,3.23273,4.051075,2.69496,1.0279909090909092,1.201545,4.40081,3.636965,1.162588888888889,1.44682,0.7247781818181818,2.988124090909091,4.269405,5.1006,3.4514666666666667,5.271680833333333,0.5511815384615384,4.101575,3.045325,2.79011,2.5000666666666667,3.5939,2.4476166666666668,2.9609633333333334,2.6708866666666666,3.10133,3.653795,4.758155,4.52075,2.12094,4.919995,4.265065,3.07458,3.963975,3.4325,0.3208326666666667,4.93291,3.49821,3.087395,2.996468,4.194665,3.954455,1.889005,3.1996,3.92776,8.15836,5.08825,5.4688,4.54842,4.2842025,1.0795275,2.18862,2.27275,1.27858,1.8819533333333334,4.64509,5.4774,4.031235,4.980305,3.5172999999999996,2.6294,0.9527233333333333,3.826775,1.222035,1.107375,3.31755,3.45163,4.5295,1.28765,2.57965,8.82375,3.251416666666667,2.8985933333333334,0.8533,3.56766,12.170946666666667,3.365925,4.15209,3.12579,2.91859,4.63808,4.997285,2.0311,4.28185,0.5631538461538461,4.659655,2.1692975,1.7179875,1.7179875,3.4776000000000002,4.10842,1.52508,3.597795,1.185247142857143,3.549145,2.6342258333333333,3.389533333333333,4.90938,3.473675,3.7957419999999997,2.6045,2.6603895,2.6603895,11.25136,0.695484,3.0283,3.18774,2.1124125,1.9545325,0.8583628571428571,1.3848675,1.1003014285714285,2.09626,4.580155,2.47647,4.1390400000000005,2.0103033333333333,4.10471,3.824775,1.7192833333333333,1.9693025,1.0357016666666665,6.058429666666667,2.06875,2.14136,1.63327,1.815868,1.09387125,2.507892916666667,3.557235,1.9603933333333332,3.0562666666666662,2.5339199999999997,2.72826,1.7275133333333335,3.1251266666666666,2.609453333333333,2.11649,1.7880466666666666,2.680353333333333,2.63188,2.4153466666666668,1.15561,2.4697733333333334,2.1349666666666667,2.5544,0.3041278947368421,0.41271416666666666,2.32749,2.1223533333333333,3.246625,3.108406666666667,2.796645,4.76657,5.47135,4.283585,4.67994,4.255035,3.836485,2.99706,3.766055,0.8003990909090909,0.06982886363636363,6.97005,0.06982886363636363,3.38851,2.83506,4.96174,3.49551,6.37195,4.616675,2.0750966666666666,2.5245433333333334,1.0179916666666666,5.05815,6.15365,3.5427999999999997,5.3148,1.7273925,3.718555,1.8266785869565219,3.071873333333333,3.1634499999999997,4.05878,4.942241666666667,3.25157,2.352116666666667,2.352116666666667,4.11058,7.36483,3.324935,2.1204199999999997,2.406006666666667,4.35245,3.18657,4.7619,3.302945,1.0005755555555556,4.01613,2.4812499999999997,2.58532,4.16865,1.126325,2.3455133333333333,3.94335,3.511015,4.78891,3.0403,2.816265,3.88495,3.88054,4.14668,4.83707,3.987945,3.228341388888889,3.75573,2.7612633333333334,2.6936033333333333,2.5463466666666665,4.026033333333333,4.10126,3.008513333333333,5.0323025,4.321235,3.73077,5.1414,4.24032,3.472225,1.403926,1.33074,4.012115,3.4537333333333335,1.5752233333333334,2.7480100000000003,3.20552,3.1337233333333336,4.002143333333333,3.0992933333333332,2.3556083333333335,12.43577461111111,2.326913333333333,1.8306080000000002,4.33447,1.01881,3.1706800000000004,3.5476,4.56552,3.045605,1.220488888888889,2.2702666666666667,2.61423,1.50299,4.296975,0.9367875,0.9367875,3.365,1.3975433333333334,1.9674566666666669,1.666265,2.964715,5.0851,2.03417,2.62467,3.4602816666666665,2.6088566666666666,2.7289499999999998,1.9493500000000001,6.26415,5.44585,3.763575,0.6567476923076924,3.87205,3.39836,1.0908454545454545,5.54905,3.4370666666666665,8.584766666666667,4.908605,4.68414,3.555845,1.3695975,3.1459,4.637835,4.473005,3.758535,3.19863,4.37211,3.3083,3.467166666666667,3.467166666666667,4.128555,2.7044333333333332,4.01548,1.930595,5.341975833333333,5.156551666666666,1.5123566666666666,4.553055,1.0141,5.51725,3.89468,4.91198,4.61389,4.186575,2.712865,2.506025,4.11715,4.157555,4.942925,3.952475,1.75938,1.353624,4.390795,2.008106666666667,5.28315,2.94694,3.534725,7.4137200000000005,4.10817,4.42422,4.921635,3.689695,4.410095,8.543565000000001,4.23881,3.222645,8.99454,3.56104,0.5927164285714286,2.058436855921856,4.413015,0.5829679999999999,4.66549,4.16951,4.5039,4.382295,3.277015,3.70081,4.419405,4.87068,2.922375,0.7133964285714286,4.62601,4.23223,4.47129,4.285625,2.8015033333333332,4.474945,3.53981,0.6974980000000001,3.36091,4.191885,2.528425,3.2128866666666664,3.97909,2.2235033333333334,5.59085,5.26825,3.8293600000000003,0.89193125,3.171193333333333,5.406257500000001,5.406257500000001,8.454783333333333,2.06094,0.83324,0.83324,23.357545,2.514,7.513643333333333,0.35989333333333334,1.3659533333333334,3.0313466666666664,0.9444440000000001,3.657775,3.68451,2.098695,2.098695,4.06954,4.93849,3.569055,2.733156666666667,2.733156666666667,3.51106,4.05978,3.5499,3.5523000000000002,1.9731533333333333,2.5444291666666663,3.9102469999999996,2.100795,3.45316,2.7970366666666666,2.824329642857143,2.824329642857143,3.2221933333333332,0.8542788888888889,2.5233066666666666,1.4325966666666667,3.16464,2.7249199999999996,2.8480733333333332,2.399176666666667,4.54656,2.38777,2.9736100000000003,5.4009409999999995,1.265458,2.15597,3.03116,2.5561133333333332,4.12548,5.687198619047618,1.3680833333333335,3.6635000000000004,2.3596575,5.22136,6.21481,1.3543175,5.05673,4.874726666666667,3.2113931428571427,4.567833333333334,1.0128785714285715,1.87752,2.84069,3.8791180952380957,1.3255533333333334,2.406575,1.78089,1.801354,2.113435,3.6620179999999998,5.2436454999999995,1.1168383333333334,1.3185042857142857,2.883453333333333,12.99305,4.45619,2.5878799999999997,1.1439357142857143,2.5295509523809523,1.0148442857142856,3.2184000000000004,3.8976733333333335,4.823695,3.3746666666666667,5.38105,1.448085,3.695133333333333,4.168755,2.748836666666667,3.774018888888889,1.7131766666666666,1.1021455555555555,2.50595,2.986423333333333,6.747549999999999,2.7779055714285716,2.4879533333333335,0.7080460000000001,4.634266666666666,3.5027666666666666,1.225878,5.518365833333333,2.0041325,2.3423066666666665,5.3704,1.2363888888888888,2.9296133333333336,0.9970545454545454,2.8376900000000003,4.168725,2.7850533333333334,3.022726666666667,2.205366666666667,2.54288,4.277495,4.535165,5.17075,1.7520375,4.447785,3.91019,4.110919999999999,3.218804,2.6808933333333336,3.968120666666667,0.986224,2.756750476190476,4.48298,2.76125,3.9679120833333332,1.3059875,3.0153266666666667,1.96889,1.96889,7.527995,3.0851433333333333,5.2663891666666665,3.3115500000000004,1.70454,2.6993252380952377,4.385863333333333,5.43,8.513601666666666,4.643865666666667,2.6399992500000002,1.7954933333333332,1.9599924999999998,4.2152666666666665,3.751045,1.436214,1.9215075,2.253100714285714,1.0450825,3.0568066666666667,18.509108333333334,2.93913,3.0059733333333334,2.8336900000000003,2.8340333333333336,2.3735666666666666,1.9478733333333331,2.96227,3.5780999999999996,2.48327,2.5631933333333334,5.60956,2.373396666666667,4.638561428571428,2.8977334285714287,2.4947814285714287,1.3745433333333335,3.669278888888889,2.0975275,3.90801,4.98248,3.74785,3.25192,3.09761,2.2038766666666665,3.4795,3.5531666666666664,3.3770333333333333,3.3057366666666668,0.834870909090909,5.36745,2.40177,3.0266333333333333,2.6195505555555556,1.8380675,2.0093320833333332,2.0093320833333332,3.16124875,1.8158154166666667,4.698635,4.2699,3.38095,4.215115,4.76665,4.5066475,4.5066475,3.870485,2.9317966666666666,4.600955,2.72077,1.616476,2.4323099999999998,4.40264,4.02478,2.82755,3.445425,5.3257674999999995,3.6389333333333336,6.186349571428572,2.837105,0.861538,0.861538,3.358015,4.929135,3.801825,3.417722,2.4758,1.8162200000000002,1.5657066666666666,2.8652533333333334,5.80445,1.4767266666666667,4.422105,3.6229666666666667,3.87914,5.0518,4.92418,4.753867458333334,3.255713333333333,2.276745,4.336765,4.15176,2.023405,1.0980219999999998,3.83803,2.705925,6.349958333333333,3.6440333333333332,2.640755,3.225445,3.595555,3.489195,4.601475,2.995285,4.477415,3.65894,4.25249,3.839085,3.624075,3.62101,4.08436,2.6541166666666665,4.158385,3.01331,5.31075,0.5841533333333334,2.415045,1.853255,2.198645,1.89084,2.63041,2.5861733333333334,1.8153166666666667,4.44033,5.19842,1.8718666666666666,3.89639,4.28496,2.4201025,6.104578333333333,3.9472091666666667,4.28798,4.884365,7.082995,1.9669133333333333,2.66477,1.81423,2.7974533333333333,1.775655,1.741975,4.05859,3.737245,5.3117,1.0263977777777777,3.1185,4.13245,2.2816325,5.0532,3.63064,2.60354,3.6712666666666665,3.4646,2.14558,1.8714595,2.77595,3.284875,3.39685,2.050095,2.1328057142857144,2.1328057142857144,3.607425,3.48545,20.55487869047619,1.01821,5.445703333333333,1.80087,1.9759533333333332,3.77604,3.5176,1.8078675,3.749535,4.519175,1.18435,1.18435,1.1423966666666667,1.7598033333333334,2.2055233333333333,3.11448,4.586971666666667,3.27632,3.4623333333333335,0.4770336842105263,3.3702070175438594,1.99412,2.104655,4.3747975,3.347705,3.914225,3.31858,4.48968,4.584295,2.0349,3.795075,5.578423333333333,2.373075,3.47832,5.08815,2.2762,4.894105,6.37215,1.4725714285714286,1.982716,3.450533333333333,0.6414428571428571,3.2535933333333333,3.327635,4.92333,4.854725,2.833026388888889,7.747565,2.98849,2.838373333333333,0.44508411764705885,4.128225,5.1993925,3.0779183333333333,5.3663,3.748875,2.4544435555555557,1.6941,5.29475075,4.27492,4.15428,2.98525,1.9683025,3.632775,4.152666666666667,2.8089600000000003,1.9561125,4.193769166666667,5.9138825,2.60013,3.81043,3.41821,3.958115,1.6132285714285715,1.6132285714285715,3.1797233333333335,2.9030966666666664,4.41248,4.57057,6.6692,3.31884,2.828,2.1665625,1.5263233333333333,1.3642271428571429,4.933665,5.427605,5.06235,5.91455,4.410545,6.4184175,3.37659,2.7700866666666664,3.99615,2.1231766666666667,3.017379,1.6101500000000002,4.31006,2.27306,3.822465,4.934785,4.07782,2.6979933333333332,2.867226666666667,1.30504,2.43979,3.604033333333333,1.79963,0.606749375,3.0789733333333333,2.5462933333333333,2.31291,2.31202,2.0550275,1.7268940000000002,0.6979081818181818,0.6979081818181818,3.5582666666666665,1.56436,2.314165,3.24141,5.7577,4.072565,6.2726,4.322205,4.37976,2.0411433333333333,1.1777666666666666,2.38044,4.587405,0.930115,3.2463100000000003,2.949735,2.905175,2.191385,4.078905,2.91641,1.9830633333333332,1.065332857142857,3.18189,8.87481,3.41543,1.5597625,4.30305,3.29839,2.64463,3.38184,2.85438,1.7887533333333332,1.0216375,3.807485,2.4250708333333333,2.1406466666666666,1.6395966666666668,2.2449566666666665,2.2445733333333333,2.3492266666666666,2.876385,1.2645266666666666,1.7818466666666666,1.0563525,6.4305575,5.8099,5.85575,3.99183,4.5225,2.950113333333333,1.5941376068376067,4.65306,5.0428,2.426985,4.917185,2.02706,4.59399,0.976098888888889,3.956015,4.037265,1.875825,7.75565,3.6405,1.832735,1.8436175,1.8289075,2.5323,3.4300333333333337,1.220722987012987,2.97879,5.794,3.373365,4.02629,5.50745,5.51065,5.79965,0.895035,4.11503,4.375785,4.216595,4.827215,3.9945283333333332,4.634905,4.5038,2.974425,1.8315833333333333,1.8315833333333333,5.05055,5.89643,3.78429,2.6501233333333336,3.81955,4.727325,1.492972,3.92151,5.18175,3.48807,3.99161,2.8153066666666664,2.773566666666667,4.8941,2.403583375,10.66079359336252,1.90141,0.71113,2.6364433333333332,1.71155,2.608575,2.1036475,1.915166,2.71101,4.711335,5.4348,2.8495500000000002,1.6365183333333333,6.270478214285714,1.5167714285714287,2.8483133333333335,0.5284095238095239,3.966826666666667,5.5062,3.438335,4.383785,11.420425,5.3041,3.0610466666666665,3.5098000000000003,4.24536,3.0027399999999997,4.633555,0.83964875,1.1258933333333332,0.8090881818181818,5.5715,4.324185,1.822492,4.792361333333334,4.26858,6.73305,4.73391,4.77876,4.210395,5.88925,3.845955,5.11275,2.914465,1.220538,3.698065,5.4276,2.81652,4.119005,2.568695,2.894495,1.22926,5.1445,4.01779,1.2769875,3.313833333333333,2.909406666666667,2.5806366666666665,2.5221933333333335,2.4480933333333335,3.2333233333333333,0.71604,2.4580366666666666,2.60803,2.6072466666666667,1.9179599999999999,2.7690300000000003,1.85997,1.4216766666666667,2.293,2.0326625,2.062105,3.3760999999999997,2.8668666666666667,0.676905,2.7486633333333335,3.04305,4.43522,2.3030066666666666,3.63509,5.6114,4.87935,3.33339,3.86316,1.3318242857142857,3.190525,2.464358333333333,4.212935,2.66079875,4.843995,5.41385,4.57307,4.28783,4.197966666666667,1.005838,1.005838,2.1999242307692306,1.603265,3.96331,2.6231715,2.6231715,4.93449,6.33805,3.0425,1.1881783333333333,1.5533428571428571,5.9225,3.36804,2.2853933333333334,3.179535,2.671425,3.19029,2.2853933333333334,4.4091925,3.14544,2.9979529166666663,2.78068,2.051685,2.982165,6.70545,3.47541,4.855065,4.65964,6.68005,6.6365,6.671175,6.671175,5.6704,4.815525,0.55111,5.30755,4.184425,3.050645,2.75913,8.123216666666668,2.67857,4.120875,3.59047,2.617363333333333,4.431785,2.266875,3.2645575,3.127273333333333,3.449533333333333,2.6476933333333332,1.341324,1.341324,3.716185,3.82,4.739215,1.7551359999999998,1.361224,47.232967083333335,2.5749033333333333,0.8453299999999999,3.1450566666666666,1.81447,3.30958,2.843593333333333,3.04395,2.97649,2.7172066666666663,2.01092,1.00061125,4.435465,3.208475,3.49493,3.74119,5.1333,5.0247,4.971015,5.1515,5.28675,4.59765,5.44215,6.1536575000000004,4.99319,5.4009,2.036685,3.92945,6.6943,5.21635,3.39115,3.815235,3.88705,2.5161,3.886485,4.58623,2.9077033333333335,4.0563,1.6250399999999998,4.81883,1.305622,3.29238,3.90598,3.600455,6.1053275,3.773125,1.95138,4.090635,3.9217,3.85186,0.8937125,2.839065,2.926795,4.446469523809524,1.129255,4.425485,1.3750025,5.82935,0.69616,3.961787333333333,9.880315833333333,4.444015,3.199115,3.023425,1.9030333333333334,4.048255,5.2942,3.0152866666666664,4.45265,9.168038888888889,3.6077999999999997,2.101863333333333,2.7224833333333334,2.8026133333333334,2.71271,2.6857283333333335,2.6914599999999997,2.56268,3.03576,2.59193,3.1373033333333336,3.367735,2.3167866666666668,1.5536866666666667,4.907240666666667,4.159,2.62736,4.910153333333334,2.7400800000000003,0.977055,2.14575,3.0187666666666666,5.481909285714286,2.959,2.09948,2.09948,1.6027875,1.7504875,2.16866,1.947426,5.7730500000000005,4.4162125,1.9545175,3.0211566666666667,3.7036,2.1239775,0.6388533333333334,2.6326966666666665,1.8704425,0.55191,3.867,2.449695,2.558775,3.560215,3.4524353333333333,2.3709266666666666,1.52505,1.03768,2.23423,3.407615,3.72885,4.05464,2.87692,3.999865,3.699465,1.0946727272727272,8.73752,2.599685,3.29983,1.2447575,2.8063933333333337,2.323315,2.323315,2.323315,4.99196,5.2238,1.496355,5.04825,1.44431,5.523933333333334,1.523236,4.10821,4.325005,3.99557,5.06175,4.50278,1.940605,8.595590000000001,3.883135,4.982365,3.484075,4.0637300000000005,3.2732533333333333,3.036583333333333,3.78601,2.426606666666667,4.319989285714286,4.240381666666667,1.5770575,3.852765,1.5770575,3.37544,4.3871075,4.89025,4.3871075,1.8195066666666666,5.44735,4.64957,4.38169,2.7986066666666667,2.884743333333333,4.2455,3.32832,5.3375,0.5079657142857142,2.9728266666666667,2.92426,4.867586666666666,4.716575,2.4050575,4.824965,5.96266,3.237015,2.72237,2.84309,1.94224,3.87464,3.934625,4.511385,2.159255,3.810335,0.8480719999999999,5.69675,3.248235,4.156075,2.153983333333333,3.1371800000000003,2.402503333333333,2.7404433333333333,2.6674100000000003,2.7348266666666667,2.696255,2.251835,2.251835,4.153513333333334,2.70303,4.726745,11.598012500000001,0.9551666666666667,4.476265,2.4161333333333332,2.302306666666667,2.7103066666666664,1.4748125,7.447506666666667,3.191466666666667,3.542555,3.617253333333333,2.32053,4.024333333333334,4.107805861111111,2.05038,0.4420872222222222,1.446342,1.5185225,4.872455,2.80242,3.30552,3.6520650000000003,3.482245,2.2750825,4.93675,4.50765,3.79605,4.62815,2.125135,3.66577,2.48481,5.369743333333333,3.036485,5.3276,4.09377,4.20584,4.29151,2.00503,3.731875,3.467545,3.22277,3.425825,2.77032,2.996645,4.03926,4.16208,2.568826666666667,4.38968,1.3262216666666666,3.661445,2.77604,4.17167,4.098365,3.98301,4.99179,2.618225,4.14959,5.0073,4.11227,3.0320933333333335,2.12133,3.045315,2.34402,0.8777366666666667,4.4959,2.00856,3.441795,2.59643,4.04143,3.378205,3.06895,3.10273,3.897095,4.453612000000001,4.21332,2.90704,1.61719,3.231585,2.337155,0.9277311111111111,4.189955,8.572289999999999,3.44687,3.693815,4.046335,5.206,3.815615,2.109835,3.936055,3.929955,3.29917,3.33886,3.8459,0.6405375,1.2273385714285714,6.193785,1.607035,2.71425,4.8024000000000004,2.4503425,2.192085,2.671035,7.73563,2.694675,3.99837,3.721835,0.7929499999999999,3.28818,2.587465,3.844395,3.697285,6.222216666666666,0.661932,3.24584,9.80962,3.018395,1.0161255555555555,4.928064583333333,4.54249,5.16405,4.0463,4.57074,3.079985,2.48524,7.1288149999999995,0.799176,3.37496,4.08023,3.096875,4.08697,2.082085,4.07362,1.7013,3.893025,3.92348,3.985505,1.68031,4.465905,4.359355,2.346315,2.11998,2.16798,1.225878,4.29068,3.1590805,1.40917,8.159804999999999,5.7053,4.51597,4.21787,3.509865,4.334635,1.4604142857142857,4.201175,3.93851,5.09615,3.69142,2.4960733333333334,6.57108329059829,1.1315375,1.1315375,2.65667,0.8987471428571429,4.0502,3.0822566666666664,1.0643875,1.73407,0.42313,6.1305075,1.010855,2.79877,3.81811,3.96094,3.524025,4.057655,5.3159,5.4661975,3.410455,3.04222,2.28686,3.751245,4.339735,4.154635,3.863225,3.7406,6.0221,4.061565,4.317742777777778,5.928627,3.68022,3.2093125000000002,2.284345,3.2093125000000002,6.816222,41.746345766233766,3.756835,3.55702,2.834543333333333,4.22795,4.440505,3.601465,3.55951,3.93735,4.383275,4.105475,1.6492683333333333,4.852625,2.770615,4.698505,4.997685,4.946375,2.41846,4.359535,4.00366,3.35034,1.481788,0.6270815384615385,1.858378,3.599266666666667,2.846996666666667,1.269275,2.81108,2.63299,2.66225,3.7712333333333334,2.9051833333333335,1.3748900000000002,2.542263333333333,3.740066666666667,1.9312119433719435,2.824953333333333,3.039408,2.89005,2.6272466666666667,3.5224666666666664,1.1643222222222223,3.56558,4.05259,1.2599316666666667,1.2599316666666667,1.2599316666666667,1.2599316666666667,2.927712121212121,2.1155466666666665,2.51801,3.24023,4.93859,5.07835,4.070155,4.22563,5.51615,4.4865,2.37708,5.651,4.51011,2.5574,3.8288,2.998765,4.06492,4.29512,0.7117484615384615,1.4341714285714284,1.5510400000000002,4.075245,3.94034,4.590675,3.92366,5.972561666666667,2.2573666666666665,3.933375,1.5418066666666668,3.56401,5.0277,1.53369,5.1531,0.6834975,4.299705,1.093324,1.1571225,3.594855,3.99394,4.89425,4.86542,6.0354,4.2774,1.485678,4.758765,1.5106,3.550525,3.086455,2.4544435555555557,1.97167,3.52982,1.2085683333333332,3.484795,4.875175,3.0193766666666666,5.98555,119.57486820400433,0.49325444444444444,4.64294,2.4865166666666667,4.80197,4.169735,3.564285,1.54754,0.3267095238095238,2.73241,3.86914,5.2541,3.245265,3.56307,4.369865,4.06815,4.82041,8.28664,0.68231,2.674245,0.9639325,10.264949999999999,3.021725,3.540305,0.8827366666666667,2.2198,2.661315,2.1359275,3.355566666666667,3.1386833333333333,2.63802,4.243005,3.00304,2.218933333333333,2.214913333333333,3.91042,3.252715,2.85981,3.66068,3.854465,3.24893,2.40118,3.94902,4.13223,2.90698,0.9421277777777779,2.6210466666666665,4.243005,4.8156,5.3301,4.073285,3.772955,1.8535,10.72624,4.08536,2.48594,3.92695,4.90449,0.548776,0.548776,4.1958025,4.1958025,2.91669,3.485666666666667,1.7892027272727273,0.5750833333333333,2.855695,4.266685,4.065525,3.500845,4.0153,5.23388,4.533785,2.0516075,4.775825,2.158775,2.80131,4.1319925,1.78635,2.047645,0.48546285714285714,1.1631148571428571,1.1631148571428571,1.90293,4.42869,4.32017,4.775555,7.046112,2.764445,2.94664,1.89981,1.940775,4.010144166666667,3.59144,4.482353333333334,2.239155,4.482353333333334,4.488145,3.77912,5.9764,3.83254,2.3533666666666666,2.0705666666666667,2.54236,1.4207875,1.41711,1.51821,1.8977675,1.56393,1.869555,4.015066666666667,4.750755,2.45277,6.7747,2.94834,4.42325,3.366475,4.01586,2.7805199999999997,2.8385166666666666,6.2604766666666665,3.32193,4.525748,3.0718599999999996,1.328495,2.51221,2.4612166666666666,2.2798633333333336,6.23225,4.4654025,4.47644,12.20656425298824,0.7351483333333334,2.0147555,2.1830375,1.6128240000000003,1.2639785714285714,2.48462,2.4180075,2.456405,2.27931,0.7298761538461539,1.9193525,0.5010189473684211,4.49749,1.787025,3.438795,4.27871,2.4703375,5.565494999999999,3.906905,7.33157,4.01073,2.87566,2.99824,4.739345,4.88088,2.5869637142857145,4.54571,2.1142375,2.1142375,5.07525,3.73104,4.070065,3.96718,3.1785433333333333,3.8206,4.954995,5.3295,4.617595,4.46192,4.57583,4.35552,2.62435,4.96732,1.1397333333333333,4.68191,4.664545,2.48963,2.2578733333333334,4.6977,1.4856183333333333,5.0441,1.8671475,6.060200253623188,4.12665,3.99095,1.4099833333333331,3.2624483333333334,3.2624483333333334,11.977395000000001,3.892405,4.50588,1.12492125,4.402949,2.1970775,1.450425,2.3216375,1.6808175,1.9329925,1.699468,3.09082,5.5376,1.7511375,4.911215,4.535236666666667,5.5386,2.1344875,2.777155,3.084225,4.168685,5.49125,3.87411,7.264003333333333,3.2172533333333333,2.604013333333333,0.38999,3.842515,4.640095,3.2900899999999997,6.40752,2.6760099999999998,2.9342666666666664,1.2239683333333333,1.6447450000000001,0.606749375,1.446342,2.90805,1.51877,1.4930433333333333,0.64760625,1.314848,4.75154,2.370515,0.6405930769230769,1.3615133333333331,1.668675,1.6089759999999997,1.290455,2.0321975,1.6447450000000001,2.4709075,1.314848,1.314848,0.6405930769230769,1.6045571428571428,2.3926600000000002,1.3255533333333334,2.581175,0.6405930769230769,2.675425,2.3926600000000002,1.25181,1.25181,1.25181,1.846482,1.2152475,0.6405930769230769,1.091374,1.0870375,1.0414355555555557,1.8991,2.698925,0.835725,2.12754,1.5762,0.6405930769230769,1.720394,1.6447450000000001,2.0315166666666666,1.9890999999999999,0.8731500000000001,2.0315166666666666,1.0439644444444445,2.346315,2.3470325,2.3443325,1.0870375,2.04054,1.2085683333333332,1.2085683333333332,0.8850618181818182,0.8850618181818182,0.8850618181818182,1.2239683333333333,1.6447450000000001,1.5762,1.3615133333333331,1.0052685714285714,1.9890999999999999,1.508262,1.5445499999999999,2.10244,1.2239683333333333,2.5878799999999997,12.8708975,0.64760625,2.6225,1.7527166666666665,2.42951,1.0148442857142856,1.0148442857142856,0.6405930769230769,1.00622,1.7268940000000002,1.5762,1.819376,1.9890999999999999,1.1619666666666668,1.1619666666666668,1.638128,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,3.012453333333333,1.0439644444444445,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.20072555555555555,0.3837604545454545,54.48137943290043,1.4951375,1.5749183333333334,1.5762,1.7527166666666665,1.0052685714285714,0.6280176470588235,0.7080460000000001,0.7080460000000001,0.7080460000000001,0.7080460000000001,4.2671,15.953134166666668,3.3833,0.5803,1.606286,1.606286,1.606286,0.5803,2.90805,0.6405930769230769,1.720394,1.4930433333333333,2.45928,1.0439644444444445,2.4050575,1.0439644444444445,1.606836,1.606836,2.1135333333333333,2.1135333333333333,0.6405930769230769,1.95386,1.95386,0.928590909090909,0.20072555555555555,2.90805,1.3896666666666666,2.3596575,0.5803,0.5803,0.5803,0.5803,0.5803,1.7527166666666665,0.3837604545454545,1.0439644444444445,2.076955,2.076955,2.506025,2.9493766666666663,0.6534380952380953,0.6534380952380953,3.3791666666666664,4.2558,1.1823700000000001,3.4203666666666668,0.9827980000000001,2.38894,2.06094,1.126325,2.892493333333333,1.8909925,3.171193333333333,5.1374,2.487155,1.170211111111111,4.090625,4.351545,2.41491,1.6938859999999998,2.3267007692307695,4.239045,1.7346405555555555,2.6503566666666667,2.979813333333333,3.1229633333333333,2.55222,6.005233333333333,3.805275,0.20072555555555555,2.9522933333333334,4.9371,3.45425,4.58352,4.336525,4.42425,2.7821,1.7686620000000002,4.423375,4.621285,4.291355,4.67143,5.29095,3.195705,0.7114716666666667,6.618015,1.7117166666666668,2.964728,4.428675,2.5221633333333333,2.5221633333333333,0.8313409090909091,1.97167,3.993075,3.033585,4.999555,4.03593,4.37077,4.988215,1.0085814285714285,4.795775,5.85955,6.63978,2.2177266666666666,4.37725,3.688965,4.005875,3.551855,3.81331,4.280205,6.083735,4.89137,4.254996666666666,3.747445,4.365803333333334,7.284377,2.0167375,2.353793846153846,2.8863833333333333,1.7630933333333332,2.7131333333333334,1.79263,5.14625,2.9349166666666666,6.1877,1.923086,5.0024,3.926575,3.68019,4.498165,3.76168,2.5491466666666667,2.83554,2.7038266666666666,2.7100299999999997,2.50109,1.618645,2.8150633333333333,2.8232033333333333,2.2470600000000003,2.2470600000000003,4.36697,2.9149100000000003,1.9876666666666667,2.9888266666666667,1.9852366666666665,2.54965,2.98183,2.6797066666666667,3.027233333333333,5.23855,3.93817,3.76353,3.4086153333333336,3.4086153333333336,4.05409,3.2308266666666667,3.87922,4.57217,4.00195,3.53496,3.37744,7.76714,2.032735,2.028105,3.23662,3.24312,1.15463,1.15463,3.49624,1.68936,4.026559333333333,3.782845,4.036495,2.107228,2.034634,0.5892158333333334,3.42927,3.88589,1.7734675,2.347285,4.358805,1.18246,4.667295,1.2974433333333333,0.42365785714285714,0.5658035714285714,21.008415669642854,0.5658035714285714,0.42365785714285714,0.7079492857142857,9.648968333333332,2.7511533333333333,3.522915,4.17967,3.4920975,2.788055,4.037339285714285,2.305295,2.34527,3.71148,2.98249,4.02054,4.31221,3.68595,2.204465,3.18158,3.539785,3.85953,3.13464,1.055604,1.055604,1.055604,1.055604,3.41403,2.79143,3.31015,1.7230533333333333,1.27281,2.59554,3.81331,3.74608,2.79919,2.99268,2.4185,2.6342258333333333,4.01968,4.089685,1.167165,2.529123333333333,1.09073,2.573916666666667,1.5611866666666667,3.7245333333333335,4.989005,2.5041533333333335,3.657225,3.8111933333333337,0.8434116666666667,0.21574500000000002,0.21574500000000002,0.6276666666666667,0.21574500000000002,0.21574500000000002,0.21574500000000002,0.6276666666666667,4.77034,7.500603333333333,3.449055,0.54305375,3.762605,7.414175,3.20098,3.20307,1.1225116666666668,4.511675,5.31865,4.24217,4.740845,1.6115179999999998,4.55333,2.11888,2.258128666666667,3.53607,5.2693,0.7974928571428571,0.7974928571428571,3.541325,2.741016666666667,1.989735,3.31898,2.83925,6.8706,3.05393,6.70425,6.18215,5.4622,2.75187,1.695035,3.99778,3.44809,2.260485,3.9084,3.14864,1.83721,1.1446966666666667,4.025785,3.436435,4.80092,5.847505,1.4915283333333333,3.984035,1.14388,2.515826666666667,3.276195,3.80591,0.4064957142857143,3.5498,4.29423,0.899987,2.64549,7.529356666666667,3.0049,2.23357,5.328278,4.351975,3.74281,1.3638033333333333,5.456426666666667,2.4841166666666665,2.930763333333333,3.4918333333333336,1.95202,1.95202,6.54265,6.54265,3.6600053571428575,3.6600053571428575,10.2507,3.6600053571428575,3.6600053571428575,4.346926468253968,7.03825,3.625245,3.56093,3.3373000000000004,3.867155,3.32965,3.222103333333333,3.0814966666666668,4.5821,3.11905,2.6166466666666666,3.4901666666666666,2.30576,2.781425,5.06615,7.332934999999999,6.73778,5.01135,3.756745,3.99893,6.9150220000000004,5.35185,4.470625,3.58466,4.408755,2.38306,2.262455,2.240165,5.32385,5.6759,4.7885100000000005,4.27028,2.4169033333333334,2.4747,6.8075383333333335,1.846482,2.526546666666667,3.4159,3.4159,3.143645,4.95084,0.7545533333333333,3.4863999999999997,3.81377,2.961956666666667,10.218955000000001,4.18075,3.1150866666666666,2.3973299999999997,4.10951,5.8094,2.927415,5.26805,2.5941433333333332,4.48601,2.966865142857143,4.32499,5.33975,4.719315,1.1463583333333334,3.5464,0.97355,2.4556533333333332,4.93343219117647,8.381203333333334,2.48283,3.4709333333333334,6.598635,1.685908,4.69314,5.65095,3.522815,3.642505,2.0599166666666666,4.64925,2.2515549999999998,0.43795307692307694,5.07835,2.97174,3.4529,5.08205,4.837365,5.572,6.510505,4.61494,5.4167,7.273225,54.247065,4.5664,3.80316,4.53734,5.4042,4.412815,5.20395,4.352525,4.51396,1.925135,3.70921,3.84977,4.654305,2.62924,4.92771,3.72631,1.67865,5.3242,6.1675,7.131071666666667,5.1585,3.299795,4.335005,3.42706,3.11758,3.6191,4.241725,3.82315,6.3669,2.7362,1.0962714285714286,2.3560024999999998,0.605414,0.605414,3.149105,0.605414,2.3610170714285714,2.3610170714285714,3.088191071428571,4.5406185,4.920864571428572,2.3560024999999998,4.643419166666667,2.4846441666666665,1.3274466666666667,5.60655,2.05808,6.511900000000001,5.27984,10.68654181818182,3.19314,2.4436633333333333,0.21078181818181818,1.877115,2.0771666666666664,0.884675,1.24607,2.9734700000000003,2.364775,2.497885,0.601402,26.506194166666667,1.89878,0.8428307692307692,2.4695533333333333,2.4695533333333333,0.395,1.6373075,3.12663,1.3783125,1.586145,1.6071975,4.00065,2.790165,2.0365266666666666,2.3142866666666664,1.0776433333333333,1.94679,1.494065,5.441883583333333,3.96024,6.65608,2.5157,3.3287933333333335,0.8889966666666668,3.02952,5.0903,6.179595,2.96379,2.1864,5.2177991666666665,1.9896725,2.39206,4.2293650000000005,1.00698,3.3933999999999997,2.3117733333333335,4.988595,4.76647,5.9397,3.10157,3.8854100000000003,3.8854100000000003,5.2091,2.106275,5.41025,2.85216,1.573225,3.027035,3.35696,5.2760411666666664,3.768095,2.7856366666666665,3.2233066666666663,2.779595,1.05639,5.14035,0.89551125,5.509483333333334,4.232445,7.55761,4.1752,4.35103,4.1042,8.293783333333334,4.223075,4.61254,1.18469,0.7108642857142857,4.409485,4.28453,2.26038,3.108265,3.360915,4.17144,2.15393,4.78997,2.508296666666667,5.4723,5.3261,5.7276,4.29558,5.1344,3.02194,6.346936,3.630605,4.520715,3.22246,4.695815,5.276422023809523,0.5720857142857143,3.5625999999999998,1.6936333333333333,0.57196,4.023345,2.326685,0.9927375,2.14369,6.10574,3.554545,2.4797,2.69984,2.78172,4.74171,4.09254,1.7016621428571428,4.267455,2.1852233333333335,3.8125999999999998,4.100375,5.0652,3.1630683333333334,3.5897666666666663,3.7538,2.02196,7.55059,4.792335,4.149255,5.45155,2.188745,4.44326,4.768595,3.857855,3.889925,10.78269,3.036015,4.163455,4.63574,4.665005,2.36937,4.65067,3.999935,4.740615,3.27772,4.10896,1.4555625,3.1275099999999996,3.32987,3.609675,4.95682,1.938018,4.11645,2.99626,5.35005,3.291166666666667,2.11285,4.10193,4.43971,1.03423125,3.04963,2.6573466666666667,4.543878666666666,1.68221,1.6512,1.09061,3.238295,5.44665,5.2872175,3.4769949999999996,3.50317,2.470665,2.04024,1.914835,1.53841,6.0337,2.935985,1.917715,0.8612076923076923,19.811838205128204,3.04205,3.0474341666666667,4.344791666666667,3.8304030769230772,1.4468233333333334,2.7910751666666664,2.827986136363636,1.342166,1.8253266666666665,4.24417,4.632555,3.4237916666666663,3.046515,5.4989,4.756745,6.9435125,4.695131666666667,4.493205,3.58494,2.59003,3.9664,3.954485,3.7468333333333335,3.8177,1.8580075,4.727925,8.86322,3.36773,2.70644,3.16066,0.557195,3.1267666666666667,2.09487,2.32808,4.221635,3.21796,5.1051,3.69141,2.821545,2.215475,1.73213,0.7706999999999999,1.4460300000000001,1.2349666666666665,3.871555,3.77448,4.61477,4.560875,7.10482,2.3246233333333333,1.402246,2.403696666666667,7.71854,3.165445,2.810025,3.099345,4.545985,3.29148,3.60027,1.520322,4.61811,4.95853,4.06749,3.90131,3.510745,4.18972,4.33204,3.856755,4.324025,4.11637,2.26598,3.301766666666667,3.19501,5.3675,3.085395,4.144942,2.690035,2.84914,2.23393,2.261293333333333,2.0382466666666668,2.655251333333333,2.655251333333333,1.9560933333333335,2.8535166666666663,2.4128433333333335,2.2978433333333332,1.8867200000000002,4.07217,2.37187,2.7659366666666667,3.0463733333333334,1.6463533333333331,4.491405,2.676415,4.118445,2.2874733333333332,5.13075,5.2204,4.861226388888889,2.83309,2.362805,3.08186,2.551415,2.187705,2.672695,1.8125775,2.71505,2.76935,6.767766833333333,4.310105,3.628135,0.627225,4.504005,3.71102,3.871575,3.30813,3.855855,3.726605833333333,6.4522,4.43418,3.322005,2.7100685714285713,2.0976173333333334,2.46826,1.6778279999999999,1.78128,1.5279500000000001,1.994604,1.88131,1.2427650000000001,4.091566285714285,0.6405930769230769,0.5265333333333334,1.9415400000000003,1.4728733333333333,1.368376,1.3941416666666668,2.2279454545454547,1.3910266666666666,1.689488,0.57362125,166.39952126296578,0.47799,1.934008,1.102094,1.1456675,2.1512975,1.56178,1.9521875,2.3107633333333335,1.754585,6.41815,3.162275,3.445193333333333,1.9756066666666667,3.233875,1.2578883333333333,1.2578883333333333,5.8979725,0.4766138888888889,2.1810625,3.249,3.0825766666666667,0.8309727272727273,0.5317852941176471,1.176949435897436,0.9868909090909092,2.346625,4.110925,2.000945,2.00604,2.35157,4.887635111111111,1.0222433333333332,4.227595,3.355085,3.74271,6.95527,1.9431399999999999,2.875505,2.043,3.2783629999999997,2.34282,2.834935,2.38937,3.45663,4.56215,3.19648,6.41707,2.805455,2.566895,3.456295,1.863385,2.80852,2.43099,3.04702,1.69716,1.55584,2.007985,4.261795,5.204998333333333,2.420455,2.804385,1.39723,4.24032,3.986133333333333,4.017,2.791415,24.617662025030526,2.610129333333333,2.5883266666666667,2.9563433333333333,3.433566666666667,3.23306,5.475533333333333,3.1724633333333334,2.3799533333333334,3.30524,3.4956333333333336,2.1596466666666667,3.171526666666667,3.481733333333333,3.18662,1.7297666666666667,1.65757425,0.560398,2.20192,1.96838,0.20005875,2.224743333333333,2.578845,0.20005875,0.20005875,2.161275416666667,0.20005875,0.20005875,0.20005875,0.20005875,2.6857699999999998,2.56611,0.5484253846153846,3.188110714285714,1.4313225,1.9514179999999999,5.6291,4.21188,6.011805,1.93578,4.82445,2.04626,2.8164266666666666,1.315837142857143,5.714316666666667,2.8559033333333335,5.8141799999999995,0.8399083333333334,1.23919,4.680515,4.65988,34.81055156718282,1.563752,1.3499833333333333,2.319453333333333,2.37196,0.8850618181818182,2.3698900000000003,2.51579,2.6890733333333334,1.9934366666666667,2.46657,1.5981733333333334,2.4760866666666668,2.3087066666666667,2.2253866666666666,2.6425533333333333,2.36741,3.945315,3.4500333333333333,1.0611557142857142,3.922855,4.027575,19.44333177777778,2.7414799999999997,3.2350066666666666,2.457856666666667,0.775902,3.1617819999999996,1.5294664444444444,3.1617819999999996,2.4064533333333333,2.3101966666666667,2.7055566666666664,1.60109,1.9339625,4.265865,4.00434,5.0786,4.353345,1.650972,4.959875,1.644955,5.0127,3.9602961904761904,4.28607,0.7431754545454545,2.00789,2.08423,2.6914059999999997,3.419085,1.0992325,3.49496,1.825358,2.046883333333333,1.027634,1.027634,2.79819,2.57715,4.315535,27.96498,6.166065,1.9735033333333334,3.713303333333333,0.3909026666666667,5.726935,6.16225,2.764863333333333,3.38182,5.3068475,3.46215,1.12921,4.412255,1.313964,2.72712,4.38101,4.4041,2.05125,3.285745,4.621755,2.625705,2.727236,4.21223,1.2642966666666666,2.4296983333333335,3.815555,5.4251000000000005,2.4049,3.104953333333333,2.6678566666666668,4.14333,4.10477,3.960745,4.2331666666666665,1.78862,5.92005,2.511575,1.734122,4.085755,6.08532,4.075865,3.2992,0.72252125,2.899355,3.536825,1.937235,4.926745333333334,2.924365,3.903955,2.83779,3.3966999999999996,2.61075,3.225846666666667,2.8761766666666664,3.1504033333333332,4.284135,5.5636,3.49593,1.68857,3.827155,4.122565,1.776765,1.94506,1.7534375,3.9033777777777776,4.47443,5.17845,4.078965,3.3690333333333338,3.591845,3.0548800000000003,1.3779533333333334,2.973545,2.83189,2.97873,4.992605,4.63071,4.123555,2.8972,1.89332,1.61584,1.3944325,3.54925,2.35182,2.18924,3.29276,5.02305,1.683225,5.09555,1.3641185714285715,1.7949575,3.24816,2.85395,3.09316,3.80106,3.22999,1.63041,0.9920521052631579,3.2742,4.841308333333333,4.030295,8.822151666666667,3.0224233333333337,2.98467,1.63933,2.76708,2.6211166666666665,1.1613983333333333,2.9206066666666666,2.5689433333333334,3.2487999999999997,3.822366666666667,3.0149399999999997,6.731656666666667,2.9854066666666665,0.7450963636363636,1.72522,3.81615,3.42502,3.421625,3.571633333333333,2.5379050000000003,3.30287,2.63908,1.9623672857142855,3.936665,2.518582222222222,3.49589,2.059563333333333,4.70191,4.78493,4.285085,3.46286,3.52321,0.8892399999999999,4.526475,2.85795,2.80102,4.589945,2.81985,2.6714633333333335,0.4235271428571429,0.4235271428571429,4.145365,3.829655,7.0058,3.196415,4.69063,3.59159,3.50998,4.80961,4.069845,1.05252375,3.946975,2.54874,4.014998333333334,2.80259,3.0648400000000002,1.8887333333333334,3.217945,2.4089266666666664,2.7881433333333336,2.5642566666666666,2.792753333333333,1.93919,22.063521492753623,3.77615,4.081915,4.132925,3.325985,4.5317050000000005,3.75351,4.52403,4.20537,3.741385,3.141805,3.780225,2.5315666666666665,2.802713333333333,2.87454,2.9426233333333336,2.91028,4.20194,3.611835,4.972182500000001,5.04705,4.171465,1.28266,1.3725960000000001,1.3725960000000001,4.81891,3.723975,2.5825566666666666,2.28136,2.8911933333333333,3.298755,3.668725,7.650961666666667,3.163726666666667,3.5401333333333334,3.050791666666667,5.329,1.57011,5.67355,2.480986666666667,2.8689466666666665,1.729475,3.710135,3.13931,6.02901,2.923065,2.807095,4.275705,4.322024666666667,1.5251525,2.56704,1.5984466666666668,7.076384,3.974925,6.733385,2.144625,3.939315,3.78462,3.909905,5.0307,3.2865466666666667,3.2865466666666667,2.1202825,4.20245,4.791355,2.30179,6.534464285714286,1.5539625,5.86205,8.550449666666667,3.657966666666667,4.363312666666667,2.3603533333333333,1.964345,0.534663125,4.42518,2.51855,2.77975,3.555204,2.317925,2.3152033333333333,3.71068,6.01475,5.44215,5.5452,4.373825,4.11681,2.2186125,1.015272727272727,2.86269,3.289915,2.65451,4.97264,3.99996,3.231535,2.42623,1.982716,4.196,1.003825,5.1061,1.00896,5.34385,3.23845,4.741645,4.88176,3.052325,3.115915,3.024953333333333,2.2647066666666666,4.125125,3.108415,2.52581,3.61439,4.842045,5.402903333333333,4.58757,1.64272,3.362375,2.81003,5.493923333333333,1.869915,1.869915,2.8897066666666666,2.45703,2.4904699999999997,2.5996533333333334,0.825442,6.14385,3.486685,1.9329975,2.394525,2.60927,3.5356,2.57991,3.669235,5.05295,5.1721,4.728085,6.1156,5.8216,1.3205875,3.679265,1.1278916666666667,2.451395,4.421966666666667,2.530255,2.991765,3.17702,4.524925,2.885995,0.45170263157894736,4.68985,4.04182,4.9611,3.358145,4.663275,5.3507,4.163835,4.288995,1.743085,4.5931,2.021995,4.231433333333333,4.231433333333333,6.346,5.54545,5.58685,4.98361,2.55359,1.57011,4.02891,1.9134533333333332,1.6093833333333334,2.10884,4.03003,4.069715,4.28257,7.67396,1.6058333333333332,4.94631,1.1908483333333333,3.157005,5.88355,1.9711525,4.793,2.60818,4.62582,3.291015,4.8329,3.5427999999999997,4.22041,3.932705,5.79145,4.18557,3.534485,3.828945,5.96455,4.00598,4.46598,3.74442,4.162155,6.802241666666667,3.49342,6.95716,3.298335,5.32385,5.877196590909091,4.184425,3.72545,1.6988775,5.46375,3.79008,0.8959533333333334,8.53655,5.94575,4.786415,3.0140425000000004,5.19325,3.30833,1.6868659999999998,3.887695,1.167165,6.24565,2.962935,4.63918,5.3626,4.171545,3.955925,2.187316666666667,4.47619,5.00715,1.533915,7.218193333333334,3.171005,3.354845,4.973785,4.294825,2.47838,4.4207,3.472625,3.78035,2.7641766666666663,4.05613,3.660135,5.222,4.71246,3.28926,1.81532,1.81532,7.613985,1.3558171428571428,5.1918,4.17985,5.00505,3.37748,3.43159,4.83416,3.91166,0.8076483333333333,0.8076483333333333,0.8076483333333333,3.68916,3.129625,3.93675,4.443775555555556,2.73393,1.45683,4.379595,2.04276,2.77078,3.89065,4.573715,1.9286575,2.16962,5.06365,3.68925,3.43395,4.314905,1.6082325,1.9599925,3.287573333333333,2.545835,5.0137,1.36944,1.6443940000000001,1.00842125,3.85546,3.434695,2.7934900000000003,2.8732166666666665,5.46325,1.709346,2.02712,2.958785,1.646442857142857,3.104985,3.42688,2.2844975,5.6487,5.4531,2.667245,4.211835,3.30418,3.28237,3.31108,3.7661,3.65357,6.98287,5.2352,1.8845933333333333,1.7796166666666666,3.414785,4.796355,4.046805,3.53611,2.9204666666666665,4.039365,6.15765,4.961525,2.7406066666666664,5.35495,3.956595,3.999525,8.116695,4.26284,0.72041,3.94776,4.355270833333333,2.256185,4.134,3.750833333333333,5.94125,3.921485,3.94736,3.75311,4.33419,4.523625,4.36979,2.8611,3.710155,4.97211,3.93861,2.393045,2.895715,6.35604,5.4839,2.12984,3.207335,4.038985,3.64508,4.871295,4.074895,2.4472,0.8630622222222222,4.445042121212121,5.9958525,3.416035,4.67686,3.50304,6.592270000000001,3.54186,3.6801666666666666,2.895326666666667,3.89066,1.99065,3.18155,4.24025,2.455937,3.96362,6.1599,1.4763725,4.6605,0.6592821428571429,6.27815,6.46485,6.10415,6.29775,1.6034533333333334,1.6178466666666667,4.446265,1.796,5.27405,0.5147933333333333,5.85785,3.109605,1.515404,6.09248,6.50575,0.7798125,1.5314725,1.320998,1.320998,1.320998,2.0280766666666667,4.998445,3.49652,3.226865,3.97265,5.04955,3.65906,1.944282,4.26702,4.86016,0.3024390243902439,3.430695,4.35557,4.53207,38.38458232575758,5.63412,4.956705,10.855085666666668,3.20066,4.06759,7.05159,3.19929,5.23055,3.73429,3.85984,9.159635,3.708605,2.71245,2.50691,4.563245,4.065975,3.52013,4.38787,1.963455,4.52441,4.148295,6.6852990000000005,4.02529,5.0924,2.39612,4.293695,0.50266625,1.4483483333333333,3.309315,6.0569,2.873265,1.2064033333333333,1.2064033333333333,2.995505,3.80017,4.003945,2.711855,1.66325,3.37972,4.21102,1.8447725,3.4202,1.564584,1.7208666666666668,4.0196,4.55905,2.0971425,4.642285,2.2883825,2.060185,3.74454,3.684945,4.105715,3.88269,5.987438666666666,2.3901786666666665,3.760275,0.7780427272727273,0.6535366666666667,3.89602,2.125955,8.71295,3.3833,4.9816,1.68316,4.5852,1.4760233333333332,3.86595,4.532715,2.603423333333333,3.757845,4.6758,0.42435349999999994,0.42435349999999994,3.835433333333333,3.1728133333333335,2.96612,3.69164,3.803145,5.3939,1.0455636363636365,9.968673333333333,10.7498,2.0321975,4.5284925000000005,4.47695,4.68325,3.68085,2.519956666666667,1.991592,2.1006525,10.34433,2.172195,2.6631566666666666,3.588072,4.473375,3.588072,1.971395,2.9093466666666665,2.75642,0.7271336363636364,5.271680833333333,2.873276666666667,2.74925,3.98021,9.084575,10.6616,4.038805,3.89782,4.21933,6.378075,1.87157,1.39615,26.026111666666665,4.29736,3.82903,1.01035,4.496365,3.980395,5.5126,4.74163,5.66815,5.568286666666666,2.995896666666667,2.0977133333333335,0.6456176470588235,0.735035,4.56283,5.22935,1.3449866666666666,4.214518333333333,0.9319500000000001,3.6607333333333334,1.46002,4.298325,5.85085,1.7603,2.45223,2.331185,3.85635,2.72121,0.4093016666666667,3.83378,3.60949,2.83339,3.45512,4.801065,2.868306666666667,4.174595,3.05086,4.66561,8.533886666666668,4.888715,8.239215,2.7688,2.6038,4.310475,4.30826,4.32401,4.285565,3.74343,4.646425,1.1732225,3.2350874999999997,3.2866734285714285,0.775922,1.3725960000000001,1.3725960000000001,3.90651,7.656988333333333,0.8232615384615385,4.57585,0.8509816666666666,2.9827866666666663,2.1834599999999997,2.625243409090909,6.2081333333333335,2.4743066666666667,1.1285666666666667,2.35234,1.24344875,2.02357,3.22172,2.9868233333333336,3.16377,2.45413,0.8509816666666666,4.52767,4.97916,5.3255,2.75131,3.853555,2.03916,5.77155,4.83226,4.493445,2.9791733333333332,3.28836,2.2083425,1.46993,4.055465,2.64725,4.35415,5.5812,1.563592,4.63837,2.91496,6.4237883333333325,3.45874,2.44166,0.8509816666666666,2.304805,3.31812,7.400551777777778,2.31604,1.7953839999999999,2.31604,0.41453083333333335,1.228246,3.600645,2.775405,1.646885,3.6448,3.9385010000000005,0.619531,0.619531,0.619531,8.42146,1.596918,0.70843,2.50776,39.067863714285714,1.9178051111111112,0.6869211111111111,2.96983,0.6869211111111111,3.833215,1.993395,2.607785,2.59091,5.27005,3.9501,4.421815,2.388453333333333,0.8956814285714286,4.361545,3.27434,4.933755,1.0466985714285715,3.087275,3.087275,3.838415,4.79411,3.49102,4.562491153846154,3.255295,4.78785,5.06865,1.8169920000000002,1.06366375,5.1777,6.6092,3.816585,0.706852,4.24015,4.175608333333333,0.89747,4.395745,2.41831,3.804975,4.38124,1.9416978787878787,1.9416978787878787,4.03312,3.454245,0.8966633333333333,3.108445,2.8958133333333334,3.26694,4.063655,4.34487,0.47833571428571425,0.27818,0.27818,0.27818,0.7565157142857142,0.5595361538461538,0.674007,0.27818,0.27818,6.932745000000001,0.27818,0.7565157142857142,3.68439,1.29746,4.905595,1.1858600000000001,0.5741361538461539,0.89747,2.53917,2.656675,3.948065,3.181405,0.27818,0.27818,4.36389,3.825015,4.149115,2.52914,4.09345,1.54433,3.77561,0.674007,0.674007,5.0439,3.083885,2.86729,3.0275,3.8696433333333333,1.09209,0.9437230769230769,10.451945,1.286625,3.52922,4.632815,4.95961,2.02872,0.3646465217391304,0.85919875,2.7938566666666667,3.242815,3.15497,4.24171,1.35953,5.80905,3.37991,4.95377,4.039915,2.86314,2.8233266666666665,6.707775,2.541533333333333,4.56811,4.11009,3.8111933333333337,6.0664750000000005,0.5318080000000001,4.604605,3.4616333333333333,2.1289966666666666,0.6926888888888889,3.86965,4.6398,2.869265,2.46938,2.136035,5.0716,2.75316,2.75708,0.9980040000000001,0.4552784615384615,3.84072,0.32946533333333333,0.7755718181818182,3.9496,2.95047,3.884425,2.731845,5.5497,4.21694,6.1193773333333334,3.516335,3.292415,4.20785,1.59062,5.2333750000000006,1.760424,3.74214,2.3128775,5.686466666666666,2.531015,1.051776,4.48275,6.936485,6.692996249999999,3.499033333333333,0.8103824999999999,2.9187966666666667,4.18086,3.96301,4.36149,4.428445,3.995315,4.983465,3.104205,4.07947,1.8362299999999998,2.216355,1.37214,3.846825,9.61589,2.994695,3.568595,5.82855,2.812875,4.084935,2.536093333333333,2.9296456666666666,3.36496,3.111515,3.767895,3.20698,3.53406,4.94572,5.79955,4.020205,4.612285,4.875935,3.88465,2.752135,5.0428,7.4357275000000005,0.9023944444444444,4.144165,3.91612,4.756495,5.78055,5.17875,2.61383,7.07639,2.3954299999999997,3.270985,5.99275,3.71077,4.32841,2.2332,1.7334125,3.1696333333333335,2.099056666666667,2.14825,2.84826,4.23398,4.48174,4.002165,3.55757,5.02506,3.5251,3.07248,3.8454675,5.9127,2.996225,5.303243666666666,3.803255,3.815475,3.66398,7.75519,3.89179,3.60209,4.27596,4.81788,3.089435,11.1192,1.2869066666666666,2.17007,3.67915,2.7310033333333332,2.7310033333333332,2.10317,7.6927916666666665,0.8990455555555555,3.058745,0.91643375,2.02712,4.04862,5.10135,3.81197,4.0052,2.7997566666666667,3.241555,3.741365,3.859525,4.115255,2.9409,2.5252733333333333,4.06492,4.771353333333334,3.137995,4.20773,1.5699400000000001,1.702766,2.658256666666667,5.56455,2.1530225,1.7398,2.0729525,4.256595,4.510925,3.00862,2.642375,0.4712611111111111,2.33007,7.429975000000001,3.18415,1.4774133333333335,0.8400825,1.22644,2.05775,2.0917325,0.7460249999999999,2.0309833333333334,4.3188115,3.898495,4.666525,2.4090366666666667,2.0322,6.34478,2.903475,2.306173333333333,2.306173333333333,2.306173333333333,6.576833333333333,2.2885,3.33686,2.479695,0.45854,1.071364,2.3465175,5.8507725,0.4476588888888889,3.674085,3.9782075,5.9384,3.1516555555555557,0.4476588888888889,3.1516555555555557,0.9058125,1.215122,5.57935,4.002525,6.5898925,3.8978,4.58124,3.58002,4.05144,4.82912,5.51485,6.19015,3.88107,3.33807,5.07155,4.568915,4.03765,4.46271,4.16524,1.321445,2.590926666666667,1.2957,2.0769975,3.116605416666667,1.49383375,6.8009375,5.493923333333333,2.6810566666666666,4.048725,3.0393,4.726795,2.95609,4.151855,4.713,9.33519,5.16765,4.337395,2.33456,2.730485,2.1032800000000003,0.557195,2.1402057777777777,6.15995,5.26725,4.945885,4.33141,0.5739746666666666,1.9664025,1.4249825,4.149425,0.6941453846153846,6.074277499999999,2.0039075,1.0785775,1.0785775,3.8967219999999996,1.9812819999999998,2.9063266666666667,2.60817,4.526705,3.486405,3.486405,4.22924,5.833493333333333,2.7696799999999997,2.4008,3.2843033333333334,5.10965,1.8657620000000001,2.71523,5.6462,4.938365,4.77211,4.216185,3.8859683333333335,4.505195,3.506260833333333,3.0066633333333335,2.2781775,4.295185,5.2507,3.2336762500000003,5.1032,5.5357,2.0001466666666667,2.3463166666666666,5.9417,6.99475,1.176154,2.7367,2.410065,2.5731566666666668,2.464535,2.527825,2.6617515,1.0375133333333333,1.91624,2.6702,2.38303,2.3324266666666666,2.3324266666666666,2.9743749999999998,3.044075,2.228510576923077,2.723225,2.343555,2.01146,1.568068,5.179385,15.039768166666667,2.904363333333333,3.1226000000000003,1.808852,1.808852,1.627425,1.627425,2.838276666666667,3.728666666666667,2.8175166666666667,2.0042225,2.0042225,3.8859999999999997,2.28876,1.1046166666666666,1.406297142857143,3.0132066666666666,2.9144466666666666,3.5444999999999998,2.5939016666666666,3.377966666666667,3.0957399999999997,0.667814,2.67475,3.5948360000000004,6.92051,4.6963,5.58195,4.233555,3.41239,4.795015,4.53845,2.826356666666667,4.08697,1.376285,3.16848,5.643,5.16735,2.558465,1.158445,2.919105,2.37966,3.0661400000000003,1.5546283333333333,0.7134128571428572,3.0489266666666666,4.4005608333333335,4.78354,4.00905,4.708485,3.0003166666666665,2.154246666666667,3.2997225,2.5465033333333333,3.27967,3.09646,3.3042166666666666,2.5818533333333336,2.26485,3.5374,2.94111,5.0906,4.593725,5.1330358333333335,5.1330358333333335,3.431175,3.91083,3.823155,3.55444,2.71852,4.08289,3.22012,3.0026333333333333,6.2743,0.7620933333333334,5.42205,4.61958,2.60364,5.1470424999999995,3.4166666666666665,1.7751833333333333,1.2703157142857144,2.07022,1.01832,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.2989164285714286,0.5687300000000001,0.5687300000000001,1.16479,0.8307122222222223,1.6930126262626264,0.9303728571428571,0.9303728571428571,1.2646304040404042,0.4283822222222222,0.3444622222222222,1.2100075,1.4741375,2.5762300000000002,2.247805,6.2054366666666665,2.9825233333333334,3.82188,3.122095,4.941890285714285,1.2797516666666666,4.681955,3.96223,4.96486,3.17816,1.488116,4.189808076923077,3.680655,4.36279,4.192745,2.674905,4.924435,4.77461,4.56894,1.223822,3.925505,4.785275,3.228255,2.4185733333333332,3.3467,2.434175,3.324125,4.462975,2.9549566666666665,4.47526,8.786460000000002,3.237515,4.930385,4.2832,4.269801666666666,2.6294033333333333,4.75097,0.9379585714285714,4.210255,3.32144,2.33134,1.19309,2.913425,1.3212283333333332,0.5032353333333334,3.518266666666667,4.09012,5.1193333333333335,3.6055333333333333,2.4339375,2.80792,4.7208,3.9047,4.44223,2.63715,2.203863333333333,3.87089,3.942885,4.081145,4.91953,4.12908,3.73188,4.54612,3.0078099999999997,4.02562,2.2173616666666662,4.586575,5.17535,3.185895,4.305425,2.56254,3.854685,5.60585,4.01796,5.11615,4.74201,4.914765,2.3105766666666665,4.839545,4.872035,4.67526,2.13793,1.14955625,3.985755,4.67761,4.127555,5.1556,1.79012,3.81349,2.20354,5.01155,4.494885,4.60535,2.30886,4.15529,4.66761,4.27738,2.613566666666667,4.76739,4.64983,5.2316,3.755345,2.13793,2.20045,3.00751,5.1331,3.93676,4.11247,3.51735,4.847385,2.174835,6.66458,5.50665,4.671835,5.271439375,5.159595,5.12245,3.29138625,2.40817,2.40817,3.87003,3.40714,4.463475,2.1776175,2.84022,0.98073,2.630196666666667,2.875496666666667,2.3826533333333333,3.034466666666667,4.249495,2.8708733333333334,5.2602,2.52984,4.52942,4.888315,2.06977,4.050825,1.6898600000000001,2.56035,4.16106,0.9116690000000001,5.08285,4.4943,5.9950399999999995,4.66845,5.5661,1.2754028571428573,4.653985,6.4223,8.506775000000001,3.1685133333333333,3.239466666666667,1.901644,0.8265079999999999,3.79919,1.0193828571428571,5.0225,4.40588,5.81245,3.12178,3.67034,1.091702857142857,3.541655,3.55259,4.36546,3.76431,3.017875,2.91545,2.369195,4.171475,4.811445,5.61315,4.454465,3.680925,0.3923688888888889,0.3923688888888889,0.3923688888888889,0.3923688888888889,5.5515,3.00153,6.11265,3.02918,5.0586,4.553215,3.668125,2.06535,2.4643366666666666,1.4563433333333335,4.94046,2.8433333333333333,4.258075,3.927275,3.56064,1.640815,1.15186875,4.349385,2.43969,6.088321666666667,4.34272,4.889245,2.225625,1.5330916666666665,0.9050833333333332,3.270735,4.32935,3.653285,2.091155,8.047785000000001,4.666675,3.3452,2.2571000000000003,0.477412,3.6232,2.869905,2.02018,2.05028,2.721385,2.787775,2.434955,2.948566666666667,3.067865,3.412695,4.591665,3.775225,4.23891,3.02258,5.870106666666667,0.61819,4.4975,5.6093,4.98586,4.51933,3.3951666666666664,5.1534,4.52519,4.144915,5.378301666666666,5.33515,4.54027,4.54451,3.7602375,5.21775,3.077105,8.94413,5.02,4.30748,4.72781,4.96184,5.698,3.496055,1.1523666666666665,5.993024999999999,3.377665,4.73141,1.4059383333333333,4.44017,3.423495,6.803448333333334,4.72925,3.0243,1.98694,5.1106,2.15946,0.88749875,4.436695,6.14545,1.89081,2.3916333333333335,2.7286366666666666,3.023685,3.52037,3.669955,5.25215,1.7155166666666668,4.3302,3.909662,3.214335,3.7650666666666663,3.56924,2.88299,2.747155,1.8913,2.5028133333333336,2.7223966666666666,4.44519,0.5892158333333334,2.5521766666666665,4.175195,3.03864,3.5521333333333334,4.496905,4.92424,3.89095,16.45562690909091,2.4940633333333335,4.094666666666667,1.436214,0.9026009090909092,0.9026009090909092,0.9026009090909092,0.9026009090909092,0.9026009090909092,4.71326,4.752245,4.75173,9.073937,2.3912225,2.3912225,4.57882,4.757729166666667,1.3303625,2.041193333333333,3.8255,2.40513,2.3399375,2.2473125,3.00317,3.664606,1.6452325,3.52338,0.8509714285714286,2.7983700000000002,2.7807666666666666,3.0218233333333333,1.4761666666666666,3.0573866666666665,2.2171233333333333,0.96284125,2.6780266666666663,2.6266833333333333,1.3093444444444444,2.457273333333333,2.668146666666667,2.161486666666667,4.38727,1.8304133333333334,2.899426666666667,2.090935,2.703606666666667,1.1126555555555555,2.798503333333333,4.667668666666667,3.4819333333333335,1.04960625,2.9897533333333333,1.3491375,2.38729,2.3563899999999998,4.783523333333333,3.0392033333333335,2.42635,4.722664,2.55257,2.14111,2.799186666666667,2.486153333333333,1.6032866666666665,2.7665066666666664,3.075003333333333,3.0159866666666666,2.3801200000000002,3.0333366666666666,2.5581,2.40469,3.6947200000000002,3.6947200000000002,3.000363333333333,1.9815399999999999,1.8419299999999998,2.3887533333333333,5.339766666666667,2.9235933333333333,1.9055666666666669,1.7667975,3.025176666666667,4.318115,2.3524266666666667,1.020102,2.645118666666667,1.5474566666666665,3.6199999999999997,2.0439700000000003,2.5144866666666665,2.0285033333333335,3.0533866666666665,1.219516,1.5959199999999998,1.3813766666666665,4.192306666666666,2.573123333333333,4.174855,1.0605255555555555,3.993945,1.9846766666666669,1.985625,1.769462,1.6830666666666667,3.3625000000000003,22.86107982034632,7.7523,2.61736,3.454468333333333,3.03504,10.010087333333333,3.1158699999999997,0.964665,2.4924166666666667,2.4299666666666666,2.0998633333333334,3.04964,2.59787,2.55806,0.9729699999999999,3.1922333333333337,2.584163333333333,3.0272066666666664,2.7766466666666667,2.460383333333333,2.1460933333333334,2.091806666666667,2.921113333333333,2.5799933333333334,2.0438,1.60747,5.1722850000000005,4.643265,2.3013125,2.978875,2.23142,2.45758,8.13862,1.88579,4.860305,2.501425,1.95213,7.59759,2.9123466666666666,2.8777833333333334,2.517925,1.863278,1.4685426923076923,3.252803333333333,3.0342333333333333,4.137735,1.46107,3.5619666666666667,1.62398,1.62398,4.21411,4.024345,2.843165714285714,2.843165714285714,5.887893333333333,3.57885,0.421838,11.837437094017094,1.1445433333333332,0.92204,3.907284166666667,1.4657204273504274,1.9078525,6.068759999999999,3.71386,0.7113363636363637,2.15881,4.828513575757576,2.3779766666666666,3.905955,1.3057571428571428,5.2496,5.04595,4.89049,3.1219687499999997,1.8987500000000002,2.2703466666666667,2.4742366666666666,2.3307366666666667,2.17844,5.105896666666667,4.516025,4.138465,1.75938,4.64091,4.231655,3.319706666666667,2.08136,4.94087,2.5215633333333334,9.00316,6.501545,1.765885,2.13647,1.7178280000000001,4.5402,4.5402,2.9792666666666663,2.7023266666666665,3.214196166666667,4.70928,9.545815,4.356325,2.43264,5.51125,4.220805,5.1688,1.9993200000000002,0.8516925,1.3274683333333333,4.379335,4.82941,3.6567666666666665,2.7709799999999998,3.8178666666666667,2.1621866666666665,4.15353,4.968315,3.29145,5.6518,3.342,3.654995333333333,3.3026700000000004,3.390333333333333,3.447366666666667,6.23105,2.90405,5.4756,4.65974,3.338555,3.29185,3.29185,5.7584124999999995,12.123695833333333,3.7401666666666666,5.941715,7.417116111111111,3.65673,2.512916666666667,4.0172,1.2994766666666666,3.762345,2.611825,2.9769566666666667,2.974816666666667,3.2364333333333337,2.0652,2.35918,2.7607466666666665,2.477743333333333,2.9863633333333333,3.140693333333333,3.82238,2.58897,2.9348899999999998,3.805875,2.8395200000000003,2.6737333333333333,1.11997,2.062695,2.800463333333333,2.4119733333333335,2.5397066666666666,2.409543333333333,3.4992666666666667,2.32933,2.490953333333333,2.4759766666666665,2.9389333333333334,2.673883333333333,2.8093233333333334,2.53684,3.1502700000000003,2.8236233333333334,3.2827919999999997,2.6391933333333335,2.4958933333333335,2.34499,2.7741233333333333,2.5323733333333336,3.5215,3.4251,2.491095,1.941795,1.941795,0.834425,1.520322,3.98248,3.203555,2.50819,2.0652,2.98392,1.21031,2.700203333333333,0.5646053333333333,3.3861333333333334,3.0701733333333334,3.205155,2.9654366666666667,2.6679033333333333,2.399286666666667,2.92588,2.608286666666667,3.3141366666666667,4.504426666666666,1.503514,2.84459,2.4145266666666667,1.7426733333333333,2.0588533333333334,2.8052799999999998,2.6783033333333335,1.6584240000000001,2.5162166666666668,2.5542266666666666,2.6670599999999998,2.5577099999999997,2.753406666666667,2.89643,3.1292766666666663,1.36451,2.74536,2.3410100000000003,3.549466666666667,3.8464666666666667,1.9658775,2.1713299999999998,3.1778933333333335,2.3373399999999998,3.3927666666666667,2.695316666666667,2.89995,5.39395,3.4166666666666665,2.116006666666667,1.61211,3.21912,6.355543333333333,2.919286666666667,3.59,2.8024966666666664,2.9200933333333334,4.539227333333334,1.530694,1.1717888888888888,2.112573333333333,1.75631375,4.634775,2.7999266666666665,3.09999,3.16025,3.26838,2.132686666666667,3.5294000000000003,2.48964,1.5703239999999998,2.9272266666666664,3.55021,3.5401499999999997,3.315865,3.58579,1.67146,2.816855,3.467195,3.42664,2.3675833333333336,3.7154000000000003,3.981533333333333,3.9559333333333337,1.304715,5.526099,3.191225,1.4333533333333335,3.32576,3.328805,2.95545,3.61148,1.81449,1.81449,3.1181666666666668,2.8990033333333334,3.013125,5.1407,4.23433,4.13515,1.1425800000000002,3.1514966666666666,2.501253333333333,4.37781,3.08668,4.856086666666666,2.6516433333333334,2.4226033333333334,2.6044966666666665,3.50399,3.34815,1.58362,3.0506466666666667,2.76159,2.3024325,4.427075,1.3272883333333334,2.83853,4.16174,2.612435,3.60245,3.986235,1.6392475,1.5593133333333336,2.439285,1.1204583333333333,2.1493211904761904,1.9210325,0.4671214285714286,3.79455,2.550775,4.545985,4.32907,2.89409,4.6542225,3.32673,3.1522466666666666,3.529333333333333,2.4566433333333335,3.3265999999999996,2.6860433333333336,3.0787999999999998,2.3520366666666668,0.6787076923076923,2.3964766666666666,0.6192442857142858,1.97524,2.36281,3.10437,3.1783699999999997,1.37442,1.4404825,4.213435,4.350545,3.410185,3.45198,2.994445,2.3740575,4.04407,7.657226666666666,3.439845,5.525335,1.5949825,3.858685,2.00109,4.165205,3.47863,2.17939,4.006175,3.083815,3.768825,4.181225,2.1476325,4.08656,6.004655,4.981925,3.43887,3.048045,1.668675,2.0092775,3.607895,3.44574,3.13846,3.550605,3.509955,3.4756,1.570545,3.633115,3.12103,1.6908575,4.243425,1.0654000000000001,3.20514,1.621025,4.022295,4.595088333333334,3.679805,2.7694975,3.541585,3.235395,1.90239,2.2491075,3.9415999999999998,2.35371,5.7845949999999995,4.337775,4.45257,2.336005,2.49279,4.49598,4.339345,2.1447580000000004,2.1447580000000004,5.644395,3.7989075000000003,2.6704274999999997,2.874855,1.9557900000000001,2.777535,3.2185,3.574125,2.6395875,3.271915,0.958782,3.739,3.0529,4.04499,2.664725,1.5566975,1.4031,3.055055,5.896739,5.7267875,3.71751,1.5404975,4.283455,3.771215,0.8109133333333333,2.978855,1.390338,5.3410575,1.46586,3.92284,2.0487775,1.37442,3.152805,3.356375,4.697635,6.632765,3.98552,4.856490833333334,2.145185,2.729075,4.21979,3.70001,4.20694,4.27209,0.9194,1.65757425,1.09717625,2.566345,2.14173,4.858305,1.09717625,4.38997,2.1893,1.6054725,1.6054725,1.6908575,4.0024,4.290715,3.77915,1.430422,1.430422,0.96252,3.47583,2.069095,6.020185,4.29915,3.78387,2.871776666666667,0.9821714285714286,3.502465,2.85346,4.191255,3.555875,3.7385850000000005,3.7385850000000005,3.415895,3.955375,1.89686,2.80545,0.9699688888888889,2.13876,3.56911,2.4323366666666666,3.296784166666667,3.296784166666667,2.848585,4.43306,4.362255,3.742075,3.52753,3.827685,2.5470166666666665,4.267589166666666,2.755725,3.910355,8.27888,4.833775,2.791125,3.11999,3.104265,4.769525,3.067618,7.2538575000000005,4.516007,4.73256,3.496955,3.74631,3.547455,4.647355,4.59383,2.540965,4.670605,6.460335833333334,2.65372,2.1578713333333335,2.99602,3.288365,3.8512,5.91005,2.0599166666666666,2.651876666666667,2.9539,3.3995050000000004,3.5905666666666662,7.144202,1.52599,4.878081666666667,4.878081666666667,3.197025,3.7538291666666668,3.08674,2.3638966666666668,5.101,4.457267,2.074182,3.785835,3.9882,3.4258391666666665,2.867665,2.945975,5.87371,3.530445,5.46545,3.127825,4.605645,4.18716,3.70636,2.8990033333333334,2.19822,2.92553,3.75814,2.926705,3.4282933333333334,2.597335,6.026391666666667,2.526825,1.81536,3.157913333333333,2.3161333333333336,3.773105,2.69355,0.8109133333333333,3.803175,3.99246,3.866305,5.9564,3.016785,3.22176,2.950836666666667,2.950836666666667,3.8950241666666665,4.129455,3.733455,1.9655525,5.7326175,2.0744825,4.6287,3.73246,7.83469,2.815443333333333,1.3548966666666666,3.19296,4.455635,0.6280925,3.881315,3.58162,2.92297,2.976875,4.110945,2.033793333333333,2.28919,9.315735,3.35665,2.948595,1.46586,3.737,2.65066,2.3562575,4.03856,5.3081499999999995,1.60868,1.174275,1.14472,4.37794,4.659865,3.684845,3.1782500000000002,3.1782500000000002,1.570545,2.284465,3.242974166666667,0.9749966666666666,3.04926,1.0426175,1.67146,3.19384,3.49144,2.72102,2.473195,2.6733358333333337,4.854935,3.716015,3.115205,2.85059,2.748315,4.090835,6.8100000000000005,3.946345,0.92280875,2.6159525,8.67583,4.49185,3.94299,1.0894025,5.014075,1.3945916666666667,3.73398,3.73398,3.755905,8.779330833333333,0.8288022222222222,4.60857,4.42861,2.5130166666666667,4.3017775,3.84838,2.1126625,9.896799999999999,1.833465,2.41679,3.38036,1.6904166666666667,4.206565,3.31542,3.17194,3.418639333333333,2.937215,2.9979,1.0913783333333333,7.31665,4.021895,3.919235,3.854635,1.87042,2.7694975,4.1567675,3.642505,0.6319976923076923,3.694425,4.122315,4.62332,2.0576525,1.399846,3.917785,4.17112,9.12371,0.70411,0.6703,0.6703,1.7319566666666668,1.4035333333333335,1.437284,1.7210833333333333,4.67754,1.2479033333333334,0.8370428571428572,3.955305,3.41155,1.1782175,3.25053,4.734255,3.9244,0.71088,1.9472,9.56906,3.5063283333333333,3.471815,3.29459,1.7637775,2.55456,2.528165,4.408695,4.155705,3.60521,0.9069971428571428,1.36805,0.928825,4.2172625,4.32608,4.17441,0.9749966666666666,1.6930679999999998,3.8424,2.296929642857143,5.2201275,1.0460975,4.77353,0.5872216666666666,0.5872216666666666,0.5872216666666666,10.127345,3.934505,1.0426175,3.789935,4.77602,2.78486,3.212665,5.549589166666666,3.256655,1.905413888888889,2.589323333333333,0.71088,1.521793333333333,0.4937688888888889,0.8115783333333333,1.4834316666666665,4.09696,3.62178,2.004705,7.4381933333333325,4.8071391666666665,0.6544033333333333,6.1684,4.7301866666666665,3.29303,4.503665,7.460775333333333,3.8618619047619047,4.8071391666666665,4.313697833333333,2.439973333333333,4.069335,3.55697,7.181015,3.30452,0.477412,1.503468,3.80586,1.7682099999999998,1.174275,3.84278,2.3418,1.6646,3.15938,1.7011040000000002,4.42662,4.22731,4.07611,4.694435,5.78216,2.57067,3.77328,1.390338,2.272985,3.26438,3.19035,2.074182,4.07987,2.567175,5.1181,3.00775,2.41451,3.3686475,1.8540400000000001,3.35157,0.9749966666666666,2.1444345,1.14472,1.589915,3.44587,1.52599,1.4834316666666665,1.914465,3.72805,7.58701,0.9069971428571428,1.0894025,1.293226,3.458765,3.63668,1.293226,3.887385,2.272985,0.6280925,0.9749966666666666,1.7319566666666668,1.390338,0.4671214285714286,1.67865,4.276903333333333,2.5130166666666667,1.3777116666666667,3.06261,1.304715,1.833465,2.7532733333333335,2.589323333333333,4.862875,2.7532733333333335,0.8109133333333333,2.59376,2.3276525,0.09965136363636364,0.09965136363636364,0.09965136363636364,0.09965136363636364,0.09965136363636364,3.1898966666666664,2.7338233333333335,2.6696066666666667,2.9879266666666666,4.57191,4.32208,1.769462,3.757675,3.577425,2.06364,4.9323075,2.7693,2.45115,2.35512,2.79313,4.484605,8.39625,2.3150475,1.9604166666666665,3.059107142857143,0.9800871428571429,1.3761516666666667,2.3758733333333333,2.0053966666666665,1.5831625,2.755053333333333,2.0839966666666667,2.48266,2.60859,2.67386,3.64448,3.57761,2.5617466666666666,1.292392,3.717335,3.56178,1.4750133333333333,1.2446,1.2446,1.2446,3.547435,2.710843333333333,1.1858966666666666,2.1320533333333334,1.3487057142857142,4.28474,1.6006733333333332,6.13457,3.0972150000000003,2.3848,3.0322560000000003,3.0322560000000003,5.2186,3.21377,4.594725,4.89437,2.1743725,2.976383333333333 +GSM1946761,1.0,1.938865,1.938865,1.4964333333333333,5.7037,5.61075,2.552894736842105,1.5189933333333334,8.000517794117647,4.652885,3.0920533333333338,2.13177,2.221755,3.669235,4.351725,1.9402920000000001,1.47855,5.01455,2.42172,2.4514275,5.3385,5.307618333333334,3.945915,2.436975,1.810292,4.062875,5.04295,4.257225,0.8093766666666666,1.6152961111111113,1.9494727777777778,2.2702625,2.2625725,1.2230214285714285,0.7406483333333332,3.2188264285714285,1.473895,1.743995,1.313115,2.08624,1.220785,1.2041825,1.152072,1.4446059999999998,0.8664759999999999,0.920088,0.7921039999999999,1.2044314285714286,1.786054,1.783474,1.519316,2.02022,1.7673200000000002,18.329976333333335,0.37167,0.8049099999999999,1.1311120000000001,1.710024,1.8416720000000002,2.05222,1.0400357142857142,1.0400357142857142,1.0400357142857142,1.1081066666666668,1.3240539999999998,4.87277625,1.0688275,2.2344,2.112355,2.562275,1.04476,2.3144925,2.439875,2.1120425,1.3727525,1.8466325,1.51539,1.5944025,2.39105,4.40498,4.845915,4.969905,1.4715266666666666,4.68983,4.536196666666667,4.026345,4.114045,1.1508075,7.52709,0.58280625,0.58280625,2.26566,1.14932,16.4293,4.446675,5.08375,5.1626,4.0968,4.0777,5.34545,0.47859,2.4147579166666664,1.7694225,2.401675,4.99617,4.43722,1.3567125,2.9372133333333337,2.9701133333333334,2.980316666666667,3.4652,3.18692,4.88873,2.7827585,4.479815,3.126163333333333,0.7353563636363636,1.660914,2.3316025,4.50241,3.858995,0.570863125,3.68014,3.829385,0.86296625,4.29641,1.751644155844156,2.12513,2.5765,2.1735075,3.407655,5.48975,3.269675,2.8296466666666666,3.316406666666667,2.9021566666666665,4.00494,2.5832633333333335,5.72365,3.28731,4.968585,3.431195,2.728885,3.636045,2.4012475,6.737236666666667,3.683405,3.61142,4.31702,3.33551,4.70619,0.79066,9.344665714285714,3.840275,2.2000933333333332,2.0320183333333333,3.6075,2.42279,4.648505,5.602,2.1921575,4.902739166666667,2.77125,4.91328,2.1921575,2.795693333333333,4.472385,5.16453,5.3469,8.37495,3.39135,4.54737,2.92551,5.36975,4.904335,1.6302133333333335,7.82083,4.51224,4.16474,3.530465,3.612295,3.540725,2.233035,6.111079999999999,2.26865,4.480005,4.1423,5.25745,4.81001,4.587885,1.7168166666666667,2.66935,2.823545,1.83914,1.83914,5.970421428571428,3.072875,1.83209,4.408695,4.49667,3.12878,1.4304716666666666,1.1853666666666667,6.92265,3.301965,6.94005,4.68902,4.573795,3.63706,3.121105,3.746375,3.488635,3.790155,4.113975,6.12465,2.71214,3.627805,9.055393333333333,4.566435,3.492766666666667,3.1747300000000003,2.7717500000000004,3.8467000000000002,4.328133333333334,1.7653,2.6649766666666665,2.2733633333333336,1.7470919999999999,1.7116033333333334,2.50961,1.7497575,2.13247,3.191466666666667,2.6240633333333334,2.3937433333333336,3.019433333333333,4.536196666666667,3.71262,3.723925,3.44668,5.14595,1.4515616666666666,2.10328,2.821179142857143,2.1352,2.52759,2.6753400000000003,3.4267,1.9161740000000003,1.2818966666666667,2.81968,0.633792,1.5781833333333333,0.49992111111111115,0.49992111111111115,1.6475166666666665,2.7821833333333337,2.61574,1.4430733333333334,1.4315933333333335,0.3402446153846154,2.6990766666666666,0.633792,1.25364,0.2467424324324324,1.4135666666666669,2.1114175,3.4708666666666663,3.0411900000000003,2.5635133333333333,2.5692033333333333,2.68497,2.3457866666666667,2.4958966666666664,2.62656,2.1884033333333335,2.5512799999999998,1.8828666666666667,2.585025,4.651465,0.698565,1.9884666666666666,2.6397133333333334,2.1102666666666665,3.61801,1.508282,2.5092866666666667,2.50973,4.2135,2.0311266666666667,6.699420952380953,1.6838142857142857,2.6551633333333333,2.09441,2.17017,3.7974,2.01596,1.9852225,4.588235,2.5967233333333333,2.1169975,4.079865,4.19978,4.278105,3.640605,2.21176,3.335215,5.069283333333333,4.12881,3.74585,4.15959,4.448815,2.93819,4.49658,3.45678,0.872025,4.89452,1.3153,4.716005,3.693215,6.121807,3.828335,4.074235,0.946015,2.129615,3.71137,3.962015,1.0493428571428571,1.4796988034188034,2.2101645238095236,3.4883705714285713,5.0714375,5.500363,2.2088075,4.075245,5.62315,0.3236357142857143,3.68603,2.330475,0.9857875,4.235295,2.033165,12.075765,1.2368875,1.816215,3.0724400000000003,2.3674,2.1307663157894736,5.164551315789474,0.3875563157894737,1.7234866666666668,2.984833333333333,0.9632225,3.0420233333333333,0.9394128571428572,5.4054,3.993655,2.05279,5.87415,5.39205,2.5804,1.1652985714285715,4.106109999999999,4.85754,4.15222,0.9222454545454546,8.08702,2.77077,4.574515,2.6476933333333332,2.5859900000000002,4.847325,2.592216666666667,2.93891,2.2537266666666667,2.4290066666666665,3.283915,2.9721966666666666,0.34038375,3.904405,3.620365,3.866475,3.621355,4.546465,6.0854170000000005,4.055585,1.721335,5.8309,4.53564,4.45883,4.6213,1.3817766666666669,3.004723333333333,3.2529800000000004,2.62135,16.643485,4.038075,3.78774,4.315605,5.10115,2.513165,5.170844861111111,1.8703425,0.7514722222222222,2.577425,3.284315,4.06943,3.683855,6.399030000000001,2.9225666666666665,2.078395,2.045455,3.4016,4.96232,2.334055,0.38873933035714286,2.851388695652174,1.970585,1.13449,0.5242336781832299,0.6597280260093168,0.38873933035714286,0.38873933035714286,0.38873933035714286,1.14391,1.42259,0.8177075,1.41473,4.573105,0.21240529411764705,11.61527987012987,3.229426666666667,2.8458400000000004,4.364385,4.189775,4.10901,2.36771,4.53895,4.193440333333333,4.56017,3.907165,0.725316923076923,3.294226666666667,4.107033076923077,0.5598535714285714,3.15233,2.85337,4.61491,0.7418727272727274,1.82101,4.19062,3.95129,1.88867,1.7833266666666667,1.54427,3.6265666666666667,3.83049,2.96375,2.8441333333333336,5.3523,5.62625,4.69793,3.036096666666667,3.1162039999999998,6.0604,3.4644,5.8921,0.4177766666666667,3.3691333333333335,4.172596666666666,1.9797900000000002,2.472625,2.8046625,5.353723333333334,0.709705,2.364445,4.965905,4.151515,1.0099457142857142,4.42607,4.72114,5.0694,3.3487333333333336,4.52187,3.458785,4.1941,1.1719933333333332,3.4871,2.71651,4.678135,4.110855,4.69881,5.71865,4.20004,2.576605,5.21231,2.8236333333333334,2.817275,3.3744,2.8779833333333333,2.8595133333333336,2.3801633333333334,1.81336,1.5712133333333334,2.2002466666666667,0.8129928571428572,1.67526,2.2575866666666666,1.99725,3.143186666666667,3.3610666666666664,2.959046666666667,0.8733866666666666,5.1123,3.3227333333333333,5.551411249999999,2.7202479166666667,3.070456666666667,3.366433333333333,1.561285,1.561285,2.3043335064935064,2.3043335064935064,3.0358556493506494,0.4789342857142857,1.6261400000000001,2.9561666666666664,3.542066666666667,2.156394761904762,2.156394761904762,2.156394761904762,7.522618630952381,4.379594761904762,0.9731818181818181,4.25344,4.7834924999999995,2.26044,4.63149,3.09197,2.148845,4.84538,3.0862499999999997,3.185916666666667,0.93821,1.8893000000000002,3.23348,3.0386166666666665,2.5112533333333333,5.742,3.492366666666667,3.651066666666667,4.796283333333333,1.84335,2.673973333333333,2.989183333333333,1.0049844444444445,2.08754,4.0712,7.7325525,1.4825525,2.87764,4.121135,1.954824,1.9261275,1.9261275,1.08582625,4.719595,7.83499,4.068495,6.463609,4.71678,1.9030666666666667,4.291415,3.43322,4.594965,5.06303,0.34299894736842107,2.89271,2.56059,4.34003,4.083815,1.8336480000000002,1.9748825,2.6676,4.50611,3.975325,3.16697,2.45568,1.665486,6.74967,4.15196,4.50074,3.61172,4.41888,5.04315,5.2893,3.919625,3.64213,1.862995,1.2344385714285713,2.90049,3.849355,4.012,5.505125,5.639005,2.127485,2.29137,2.5657666666666668,2.723793333333333,2.963783333333333,0.6414092857142857,2.14594,3.55414,1.09654,4.90056,3.24053,6.1026925,1.2737701515151514,1.2737701515151514,4.203765,3.665935,3.643305,5.4766,2.71819,2.2318000000000002,3.933445,3.46466,2.1098375,3.290566666666667,2.613156666666667,3.968455,3.2795075000000002,4.194665,4.182675,0.9932311111111112,2.504235,4.469455,4.36227,3.24743,2.4601866666666665,4.341275,0.8590411111111111,0.8590411111111111,0.8590411111111111,0.8590411111111111,1.7062594444444446,3.87929,3.87929,1.63819,7.291821666666667,3.78832,4.484805,3.3826666666666667,2.506425,4.85296,3.897895,4.808815,5.50055,1.7086075,4.534785,4.1513,3.22076,4.50878,3.290285,2.7945,5.0322,1.829075,4.481805,1.53121,3.4952058333333333,3.024915,1.7869975,1.2200016666666667,2.997185,4.861925,1.3712,0.8327977777777779,4.141545,1.2785975,5.360728,5.1331,1.3035871428571428,3.612245,0.7551655555555556,2.63615,2.7345433333333333,2.4315366666666667,2.546075,4.62743,2.8901258333333333,4.569455,5.11605,4.34424,4.369275,2.31868,1.2479071428571429,4.18082,5.06365,1.4290025,1.4290025,4.06785,0.22318733333333332,2.1325333333333334,0.22318733333333332,0.22318733333333332,0.22318733333333332,0.22318733333333332,5.0479,2.6133933333333332,3.452565,3.53279,3.0299066666666667,4.474845,2.599606666666667,0.9657325,0.9657325,0.7678699999999999,0.7678699999999999,3.56736,2.316135,3.894245,1.675852857142857,1.675852857142857,5.06097,0.5490735714285714,2.1908075,7.437478333333333,5.1427,3.042125,3.34313,1.026935,2.136395,2.039095,4.46412,4.44885,4.493135,3.72547,1.308377142857143,2.56102,1.98887,7.34608,1.795675,4.29776,4.9379,2.66974,3.866015,6.26952,7.66971,3.94652,5.04955,6.01155,2.15154,3.24489,2.46323,2.662765,1.900225,3.708755,4.615605,5.413021666666666,6.49689,4.341055,1.0091166666666667,1.456615,4.084535,4.220665,2.1595025,5.2801,4.865435,4.6569,1.7040733333333333,3.7405000000000004,1.7470100000000002,6.287873333333334,2.6719033333333333,2.38394,2.169096666666667,2.36713,3.2073933333333335,3.5673,3.7731999999999997,3.4422333333333337,3.4410000000000003,1.651506,4.31722,3.508635,3.599435,0.3828175,2.95426,4.109755,2.5473,5.3957,5.0435,4.737825,6.52712,5.34585,2.32069,4.09101,5.0709,1.58356,5.19835,6.0752,5.14645,4.55625,3.328505,5.41585,5.0421,3.976765,5.496253333333334,7.5050550000000005,3.871295,1.17008,1.5360416666666667,2.658145,1.82886,4.61993,4.058765,5.508767499999999,2.5099833333333335,2.6759633333333332,2.6891366666666667,2.40219,2.65108,1.0899,0.5050470588235294,3.763455,3.92447,3.6314666666666664,3.981625,2.91137,3.2551,5.588368333333333,3.3110700000000004,0.5707264705882352,3.479615,5.53595,1.7411425,1.537226,3.62465,3.97334,2.4696666666666665,3.9939666666666667,4.686375,2.6226233333333333,2.2106533333333336,2.30539,2.4677866666666666,2.591435,4.1723333333333334,5.0076608333333334,7.992161666666667,2.21444,5.27875,3.9934150000000006,6.505516,3.3360333333333334,3.2644,2.18813,2.032506666666667,1.31272,1.31272,2.6773866666666666,2.288386666666667,2.8272600000000003,5.13435,1.6891079999999998,2.159565,1.775325,0.63789375,3.907125,0.6888608333333334,1.203385,3.36775,4.75307,4.53867,1.6107275,4.813015,3.17895,0.8997785714285714,4.430455,3.6764995238095244,3.178506666666667,2.54583,4.898585,0.28509241379310346,2.576747666666667,3.153395,1.3753075,3.543945,6.38865,2.257775,1.4156233333333335,3.689365,3.721575,2.6982233333333334,2.6982233333333334,3.485715,4.28385,4.670235,5.348246666666666,5.4271,0.9622088888888888,2.8068500000000003,2.720413333333333,4.169375,5.13905,5.4229,5.05595,4.399,3.8824666666666663,3.7853333333333334,3.4699333333333335,3.9520999999999997,3.1704233333333334,2.9896766666666665,0.66203,2.516525,2.4223525,3.90197,3.10069,3.1958066666666665,0.7334508333333334,2.310085,3.674555,4.75159,5.5414,4.36501,2.05551,2.05551,0.9139889999999999,3.644685,4.54918,4.2191,4.826988571428571,3.205845,5.55735,0.6079736363636363,3.56814,4.376775,4.4021,3.5191299999999996,0.9522828571428572,3.78474,4.111885,5.13745,3.707455,5.0442,2.66321,4.29031,1.5770425,1.0206142857142857,2.74094,4.975265,3.917995,3.111475,1.518355,4.1539,2.4858225,2.891,2.7341993333333336,3.057026666666667,4.515023333333334,2.86571,1.801904,3.5156666666666667,1.4894735714285714,2.8956999999999997,2.5906266666666666,2.28194,2.9114133333333334,3.034996666666667,2.6806300000000003,2.31338,3.76386,3.0185033333333333,3.5660366666666663,2.2168,1.74337,4.184581666666666,2.8763533333333338,2.52699,3.5660366666666663,2.6281033333333332,0.8268163636363636,2.4273025,1.0175466666666668,2.1442875,1.5333675,0.9400727272727273,1.6970375,2.01702,2.7669267499999997,2.634225,4.708825,1.5328675,4.14719,3.0132933333333334,1.540086,2.444193333333333,2.8560766666666666,2.0406866666666668,2.855566666666667,2.85584,2.818752045454546,2.0869175,1.78704,3.601433333333333,2.5120299999999998,2.9524394444444444,3.0968699999999996,2.9983466666666665,3.924166666666667,2.2354366666666667,4.3709,3.6003000000000003,3.9680999999999997,2.8885166666666664,3.5341,3.527233333333333,1.8206333333333333,9.29832,4.66148,4.57839,3.202455,2.83922,1.91625,3.859675,1.73253,4.142385,4.71575,1.485512,2.6373633333333335,1.2200533333333332,2.67004,1.66328,2.47861,5.011746666666666,3.1895000000000002,3.582025,4.766525,0.72697625,1.513264,0.9668100000000001,3.85771,11.546381666666667,4.3703666666666665,6.6108,2.00709,5.1852,4.31487,2.442905,5.24565,0.2726182352941176,0.7831757142857143,4.811965,4.866375,7.2422275,2.1670275,4.65008,5.7767,4.605535,4.621835,4.20134,5.1899,3.05557,5.4950833333333335,4.15072,3.43987,3.294445,1.9335533333333332,1.9086566666666667,1.4393376875000001,2.31802,3.999425,4.86765,1.573998,8.84351,1.9462766666666667,2.7466808333333335,1.042422,1.042422,7.722704583333334,3.216445,2.503675,2.101765,2.6523666666666665,2.0184633333333335,1.0645166666666668,3.278853333333333,2.8739233333333334,0.5575428571428571,1.75096,3.3986620000000003,3.3986620000000003,1.1077166666666667,2.44041,2.333346666666667,2.8500183333333333,1.3608,1.7078,4.868032666666666,2.77931,2.65765,1.4197175,1.4197175,4.19043,5.3046,4.599605,3.34647,3.753375,5.71921,2.76697,2.9609433333333333,3.489966666666667,3.911515,1.1308966666666667,3.3493666666666666,2.546975,3.70433,2.0900666666666665,4.64475,3.492195,4.23342,3.691155,5.276857,1.1135777777777778,2.004465,1.832715,3.49328,4.726559999999999,3.66863,3.897,4.132045,4.872455,1.682005,4.283565,3.364775,3.774755,2.3521199999999998,0.80799375,3.25283,4.66918,5.04705,1.18504,2.97296,3.0813366666666666,2.0685733333333336,1.7889039215686273,1.7889039215686273,1.2079833333333332,2.2932166666666665,1.107287142857143,1.3497460000000001,4.35279,4.717785,0.5088476190476191,4.292005,3.4492666666666665,4.14834,5.5406,0.425504,9.266815000000001,5.64885,3.63896,4.14026,4.980845,5.5096428571428575,4.97303,6.66344,0.7095236363636364,2.8805633333333334,5.4573,2.7995566666666662,1.9852475,1.9928439999999998,4.51755,5.2646637499999995,2.4053739285714286,2.830026666666667,3.242706666666667,1.7626925,4.928795,10.5038,8.49036375,3.8120999999999996,4.764065,3.145813333333334,3.023165,3.873,1.785422,2.9045733333333335,3.857535,4.3161,4.758125,4.8809,6.5008799999999995,2.87833,2.96936,4.80025,4.908645,5.5235,5.814703333333334,4.772725,6.3302,3.26453,2.6992,2.88068,5.83475,3.680275,5.7313,2.08997,3.1276666666666664,3.39798,5.97655,4.211845,4.30886,1.4373179999999999,0.89066375,2.663625,0.6708200000000001,4.11928,3.546515,3.400255,2.754725,2.16235,2.991375,2.4906925,2.924322,1.77227,3.01881375,2.84165,2.163785,2.518025,3.584282,1.2641966666666666,2.6445141666666667,5.15695,3.6920333333333333,1.1960925,2.7706866666666667,3.6928725,3.614539,1.57535,5.88625,5.7694,2.1426333333333334,2.8414033333333335,31.123832017340504,3.5404999999999998,1.7068,3.9679,1.6002599999999998,2.6064599999999998,2.84299,3.487833333333333,1.9484325,2.76415,2.414155,3.7503615,2.967226666666667,2.4144175,1.4718175,2.2229,2.893325,0.3937909090909091,1.03985,2.95519,1.680996,3.390295,1.57535,2.247473333333333,25.567764888888888,5.0853,4.21734,3.52259,2.6069,2.3837325,2.47681,2.248315,3.767215,5.838994,5.6537,1.592274,2.01538,2.284795,2.5815216666666667,3.7277941666666665,5.28195,4.85672,4.514595,0.18796170212765956,4.973395,5.099794166666666,3.6132,10.1456,0.9824,0.9824,2.9689266666666665,3.461885,5.5663,2.1047933333333333,1.076438888888889,5.4163,1.8927125,4.194285,4.084585,3.84022,4.19602,3.83273,4.62781,3.133595,0.7099166666666666,3.175145,2.1205608333333332,4.32149,7.914249999999999,4.836095,2.5297,2.5297,6.7426675,5.1162,3.98414,5.96905,2.4862699999999998,5.252040833333333,1.3441133333333333,1.4099133333333331,2.88382,1.9635766666666665,2.80598,2.8649233333333335,3.641695,4.140775,4.06138,5.3097,2.29206,2.4970725,1.84412,2.82775,2.2442025,2.095135,1.9900925,4.822646666666667,1.8471525,3.6344180952380953,2.3102733333333334,3.0708800000000003,2.66452,1.73066,1.454157142857143,0.960962,2.5303366666666665,3.936733333333333,0.74394,4.835115,1.791185,6.037992083333332,2.0053675,1.5270325,1.5345,1.52707,5.764765555555556,1.9140380000000001,3.0163166666666665,3.580633333333333,1.2189975,1.7864725,4.75652,3.11281,2.766716666666667,3.4695666666666667,2.753133333333333,2.960736666666667,1.221860714285714,0.4788225,0.4788225,0.4788225,0.4788225,0.4788225,4.19382,2.74527,2.42379,3.6886666666666668,1.34234,2.56009,3.5012333333333334,3.3852666666666664,3.459605,2.86595,1.8593733333333333,3.080713333333333,3.2585466666666663,2.1355025,1.8882125,3.54349,2.8528266666666666,3.368733333333333,5.3645,2.91122,2.717216666666667,2.648563333333333,11.15282,4.8784,4.757625,5.14835,4.188725,2.7512333333333334,5.0305,4.092725,3.9277,5.6345833333333335,4.14349,3.36127,2.2863325,3.585475,5.019393,3.691015,18.510610452380952,1.283,4.944435,0.8390866666666666,1.3093125,3.133625,4.811975,3.887875,4.366165,1.4489083333333335,2.512675,4.218155,2.575343333333333,4.81221,3.116776785714286,2.7508733333333333,0.7674866666666667,2.718586666666667,4.601985,2.3206675,2.4019825,2.19142,19.354085833333333,1.7140419999999998,1.3132125,2.3087966666666664,0.3079438461538461,1.8651625,2.79602,2.1230466666666667,2.7949966666666666,2.662975,7.652285833333333,1.9683375,2.537875,2.1880725,2.20677,1.5834599999999999,3.3338666666666668,3.27178,4.0484,3.156473333333333,2.0295025,2.52386875,3.128844166666667,4.573755,0.44197833333333336,3.4258666666666664,2.9075466666666667,2.92727,2.0961725,3.7125345000000003,3.58352,1.6438833333333334,2.2392233333333333,2.153776666666667,1.5045533333333332,2.56058,3.7478,3.16151,0.7533116666666667,3.212075,5.28055,4.303275,2.30273,2.30273,3.3607333333333336,4.83638,3.20267,3.286315,2.298545,1.0925454545454547,3.87229,3.6168,5.8035,4.32509,2.349914,2.349914,1.8821775,3.824035,4.987435,3.797385,4.12159,3.0745799999999996,2.4556766666666667,4.406585,3.914095,4.09291,2.9504033333333335,2.8878133333333333,4.610909333333334,3.309806666666667,2.5847700000000002,1.9026100000000001,3.78827,2.880425,1.6130066666666665,3.606295,3.90818,4.253815,3.3264066666666667,4.967085,4.23464,6.86461875,3.95892,2.22648,4.65537,2.97648,7.28565,2.7706,1.2967366666666666,4.35489,3.4567333333333337,4.600085,0.5883207142857143,0.8027091666666667,3.675155,3.88583,2.5032269696969696,4.70815,2.86824,2.92352,10.351574000000001,1.899594,1.218902,4.001335,2.601925,3.523875,5.10065,6.717535,3.0598599999999996,2.122263333333333,3.1433233333333335,2.1217966666666666,3.475433333333333,8.827485706075533,0.8499888095238095,1.00651,4.91469,0.49205,1.6172525,2.30797,2.736025,2.9271,2.535025,4.05451,2.50865,13.554660000000002,5.14633,2.39503,2.39503,4.289875,0.7518433333333333,5.2996,3.910665,3.91908,5.540001666666667,3.53762,4.713545,1.3630733333333334,2.7525,2.639185,2.53957,2.96422,2.72333,3.00312,3.405325,3.537135,2.92368,2.88379,2.81091,4.268905,4.891455,3.08757,3.226646666666667,4.813251666666667,4.275875,19.101940714285714,12.524158452380952,3.185065714285714,0.6841058333333333,1.5510857142857142,4.600325,3.47237,3.084371217948718,2.491845,0.8523722222222223,0.7324816666666667,0.8149242857142857,2.1604125,1.6292719999999998,5.341865,3.266196666666667,0.7052109090909091,3.3051,2.38365,2.1292925,1.840276,6.374826666666667,1.521232,4.61432,2.90544,2.99381,2.321515,2.5219733333333334,2.547216666666667,0.7578409090909091,3.00479,3.0040999999999998,3.909112,3.02122,8.004683333333332,3.510115,3.359655,2.15274,3.765005,8.61975,2.0619725,2.44186,2.351705,1.566705,2.520025,2.441595,2.6999,0.9043319999999999,1.3710525,1.0160375,2.92603,4.20821,5.79535,5.77685,3.04944,2.292595,3.014925,3.6814,7.52244,1.2222566666666668,0.4234775,3.01321,2.0215733333333334,1.6431280000000001,3.707768,1.344116,2.1971613333333333,4.769413333333333,3.4643246666666663,1.1732583333333333,1.8169666666666666,4.027356666666666,3.613245,4.3129,4.440205,2.20274,5.1251,3.860745,0.8202692307692309,5.0375,3.884915,4.38660625,3.407633333333333,2.28865,1.273466,1.4349,3.35776,2.7906,3.170785,3.97184,2.62086,2.7338533333333337,3.105115,3.614985,4.751685,2.30283,2.663635,3.939465,5.7082,0.54122375,4.387495,1.9028525,3.516295,4.0236,2.0048475,3.11596,2.2313125,2.002225,3.06556,2.6353675,1.7205199999999998,4.86574,3.59096,1.2951357142857145,6.88311,1.0568666666666666,3.698575,1.6652733333333334,4.447065,3.93261,2.758763333333333,3.217045,4.14534,9.05061,2.777805,3.615595,3.60165,3.503955,1.677785,7.85459,3.526325,4.281595,1.56217,4.22547,3.0083,1.04067,2.0133199999999998,4.23471,2.01852,4.03217,4.64173,4.237155,4.60052,2.3931575,5.2434,3.810305,3.1176066666666666,2.6301033333333335,2.03166,5.4672,6.21405,5.6624,4.56034,2.99258,2.551975,4.597835,3.60064,1.134900824175824,4.06486,4.709013333333333,4.317965,2.691185,3.59674,0.47869,0.47869,5.94205,4.564625,6.1771,2.24892,3.85004,5.4026,0.8116619999999999,4.843,4.988415,4.83708,4.59505,4.367525,1.8478675,2.80104,2.0742225,4.417625,0.68456875,3.95836,4.272415,2.791375,2.8879933333333336,4.456815,2.187805,3.134685,60.302289673160175,3.37026,2.51909,1.4408125,3.103625,3.736905,0.8649325,0.9716225,2.0393975,2.0393975,1.2608739999999998,3.09088,2.63241,3.9618670000000002,7.16933,2.9153233333333333,1.2036157142857142,1.3197066666666666,2.6612566666666666,3.975251666666667,0.840683,1.80236,1.1666560000000001,2.05092,4.065295,4.05764,3.07298,21.801951601731602,4.76397,3.79921,3.07707,2.223246666666667,3.393705,3.01742,2.45685,4.95689,1.6947459999999999,4.236255,3.4806165595238094,6.402562638888888,1.998035,2.592025,1.812265,4.629125,2.3619,2.1042425,2.0748166666666665,4.008843333333333,4.242435,3.46951,4.316195,4.664105,2.5566,2.89403,2.87113,2.763295,2.983328333333333,2.130515,2.0668825,3.47967,1.1456983333333333,3.711235,4.67241,2.48591,5.1632,4.912375,5.232423333333333,2.238933333333333,2.398215,2.631475,2.73264,3.95411,3.25444,4.99643,0.7266585714285715,4.22898,2.868485,3.60176,2.3494,1.7854299999999999,3.810853333333333,1.2113666666666667,2.972005,4.322535,1.10974,3.48306,3.64029,4.65819,6.1106549999999995,2.059785,2.83942,2.678686666666667,3.513666666666667,2.5626333333333333,2.54385,3.4335,2.3548066666666667,2.4111266666666666,1.3879000000000001,2.1943275,2.1943275,1.8492233333333334,2.0510966666666666,1.7539166666666668,2.8039400000000003,3.834995,5.5691,3.8537,1.616175,4.37843,3.604715,3.40866,4.077495,1.907595,1.8362,4.514765000000001,1.78196,4.30614,4.73628,3.508575,2.409796666666667,3.61142125,3.132295,2.939905,3.433665,0.14348530612244897,2.82897,7.643095000000001,1.5110379999999999,3.28319,4.326055,1.0064428571428572,1.0836716666666668,1.903125,3.952125,2.93323,6.687819999999999,3.358835,3.60393,2.76272,2.613165,3.97698,3.18211,3.97406,3.44017,2.80031,5.32535,4.219155,4.50075,2.520516666666667,2.0068025,3.41959,4.34365,2.615695,3.868335,2.125205,2.559575,3.61563,3.74527,2.656535,4.66985,5.1728,2.67263,4.39923,4.786105,3.351545,4.7222,3.317705,2.61213,8.41322,4.460295,5.36405,5.1938,4.30592,5.2717375,5.7425,3.644415,1.224692,6.76825,2.329515,5.00925,4.069395,4.333005,3.02595,2.05246,2.2098333333333335,2.363636666666667,0.96351,3.4136,3.675966666666667,3.073176666666667,2.11531,3.80966,4.508625,2.485463333333333,0.52722,4.27127,4.54669,4.762285,4.823865,3.738885,4.49397,5.29775,4.82258,1.4350777777777777,0.9374307692307693,2.864406666666667,5.3287,5.567,0.485976875,2.80219,2.4370933333333333,4.238775,4.42002,3.8891333333333336,1.9052275,4.551115,3.433125,4.30089,3.061855,6.2218,4.77859,6.8787725,0.58551,4.49338,0.8934939999999999,2.168615,4.066233333333334,3.1408566666666666,1.2327566666666667,2.3017600000000003,4.29853,3.62446,4.18167,2.5665533333333332,2.20898,2.9579,5.09025,4.196705,4.23933,1.661028,1.2398995714285714,5.67055,2.278985,7.6518975000000005,4.538305,3.464165,2.211175,1.5996175,4.34991,4.556965,1.7303166666666667,2.285905,2.551575,2.82897,6.687468333333333,3.0225516666666667,2.86244,4.775533333333334,3.945795,1.9770033333333332,4.175935,7.16524,4.731745,5.1681,0.6006845454545454,4.076225,4.3979,4.826709642857143,3.98034,4.39394,2.92666,2.813295,3.207435,2.841395,3.4932663333333336,1.7925719999999998,6.035447,4.586635,4.75338,3.723295,3.351415,3.23704,2.24107,1.2801925,1.0197775,2.750075,2.56523,1.0891633333333333,2.6010266666666664,5.795,5.0877,3.455795,4.31685,16.205339285714285,4.46599,4.349675,4.45299,0.7069424999999999,5.2292,4.59614,4.69201,4.6667,5.8616,2.24414,3.5677,3.26887,1.5457560000000001,3.019405,4.51228,3.0589566666666665,1.526846,4.213645,4.91988,4.22383,5.26075,4.87191,5.6592,4.46725,2.889936666666667,4.287615,4.12284,2.659035,3.0092866666666667,2.9780533333333334,1.9210908333333334,5.17255,2.6912399999999996,1.9012466666666665,4.030505,2.634975,4.11627,4.184581666666666,2.17855,2.721505,4.295805,3.65569,4.82553,4.33974,4.47564,4.7715689999999995,3.057795,5.4001,2.59292,3.62188,3.93047,1.530278,4.40966,1.05458,4.403665,3.05026,1.2115842857142858,3.702545,2.082295,6.441095,2.594787476190476,2.594787476190476,2.594787476190476,0.83792,1.4934383333333334,1.770125,3.517435,6.18172,3.338608888888889,1.93016,2.2200825,1.93111,3.706785,2.366115,0.41770538461538465,1.65542,2.05741,3.058815,1.883045,2.857015,2.39534,2.02837,3.687125,2.81798,3.14225,3.33568,1.84636,6.45245,1.99996,4.304435,3.91546,6.328303333333333,1.5824866666666668,3.473565,3.643605,3.66029,4.479265,3.045275,2.0632275,3.739875,5.997116500000001,2.182955,3.640795,3.047455,1.935225,4.89261,4.94103,2.5054366666666668,2.10839,3.84381,6.086311428571428,6.03925,3.620555,2.363405,2.53656,2.90298,2.91606,3.870655,1.3675275,2.80373,4.512695,0.7906325,3.918595,3.84784,3.990015,4.77733,2.31406,3.37561,1.94515,4.36994,7.91324,4.52419,3.447,3.872225,0.97798625,4.558135,2.4046,4.329975,5.12951,4.099795,4.46888,11.1676,4.84953,3.730585,1.4403425,0.7016583333333334,2.61307,3.792635,3.42499,3.566705,2.09941,3.2831766666666664,2.41885,1.1452666666666667,1.1452666666666667,1.89511,2.4148333333333336,3.9671000000000003,2.7371533333333335,3.9530333333333334,3.287456666666667,3.071203333333333,2.89629,1.3704433333333332,2.6051866666666665,2.0926,2.2944166666666668,1.446975,2.1018766666666666,0.7782583333333334,9.905684166666667,0.7782583333333334,3.7941000000000003,2.10265,2.5243966666666666,4.52629,4.21955,4.830495,4.989615,2.7380533333333332,2.8459299999999996,3.1965760000000003,2.177286666666667,3.5303,3.1850666666666663,2.83154,3.03524,1.6218866666666667,5.2045,7.105425047619047,3.17638,3.6018000000000003,3.0144933333333337,2.83047,2.86191,1.2230214285714285,3.5107666666666666,3.19906,4.005835,5.95965,4.386585,2.998366666666667,3.6157,3.4066333333333336,4.216933333333333,4.257885,2.62987,4.518605,3.4726666666666666,3.09156,4.89154,2.9901199999999997,4.21388,6.718371666666666,3.111893333333333,2.32374,1.7441933333333333,1.5205266666666668,5.277093333333333,3.3530483333333336,2.6531033333333336,1.9676133333333334,2.2302500000000003,4.50724,3.809165,3.205715,3.149313333333333,3.4406,3.5498999999999996,3.5246,3.8499,3.2765299999999997,0.53258125,3.8071,2.5249266666666665,2.4591766666666666,3.5122,4.67893,5.27905,5.76765,2.533495,5.13195,1.16754,2.765663333333333,2.765663333333333,4.27952,3.619795,3.680195,3.939965,1.628015,3.255165,3.71713,1.1385328571428572,4.027019166666666,3.467953619047619,2.2567393333333334,0.47503599999999996,3.840125,3.643835,6.635565,3.35247,5.9754,3.22108,4.017095,4.250735,1.9797716666666667,3.546615,4.79336,3.47067,3.374366666666667,2.993983333333333,5.9593799999999995,2.176215,1.06750625,1.9560633333333335,1.6767,5.12209,2.4616466666666668,2.38474,2.029345,4.667095,4.28758,4.6103,0.634444,4.711195,4.25888,2.9375033333333334,2.8263933333333333,3.1816033333333333,3.667498888888889,4.188553333333333,1.5121466666666665,0.6619631578947368,0.8259071428571428,3.9676333333333336,4.51844,6.22417,4.826345,5.4365,5.48975,1.3538557142857144,4.0236,2.17068,1.0080525,5.62305,6.1362,3.28437,4.864415,4.14926,7.304198333333333,4.5181,7.105475,3.757405,2.8763405555555552,6.3946,10.182016262820513,2.65652,0.781119,4.18592,4.35886,2.33568,6.4054,4.91787,3.94086,3.0493633333333334,3.0493633333333334,5.3076,3.70214,3.966595,5.2583,4.0783130000000005,2.494446,1.10929125,5.5535,2.58705,5.5707675000000005,3.855575,5.2417,3.023785,2.11592,4.721335,4.80152,3.6008666666666667,4.099665,4.39232,28.607326904761905,2.260565,2.625475,2.240985,1.66096,2.63918,1.4207985714285714,2.9109266666666667,3.026726666666667,3.439833333333333,3.374966666666667,0.7357669230769232,3.313496666666667,4.548085,3.22675,3.23921,4.03905,6.10473,4.927225,4.35483,3.976225,4.1499925,4.3516,3.4331,1.690185,0.9795166666666667,1.4000666666666666,3.158,2.15403,3.18294,2.4379399999999998,2.27827,1.8286566666666666,3.241215,1.97691,1.82542,2.878585,4.110145,3.791835,3.983865,1.451462,4.194133333333333,2.40628,4.394435,2.6498033333333333,2.5805,3.00878,1.42559,3.536865,6.373811666666667,2.876265,3.641055,3.925465,2.5499,3.2044266666666665,3.5885,4.92328,4.59207,0.29957809523809525,0.29957809523809525,5.09115,5.2897,3.932205,2.98306,5.9408,4.663835,0.7104476923076923,4.596725,5.10005,3.859285,6.4841,4.656895,7.67784,13.99027,13.539183205128206,4.077755,4.19506,2.7289733333333337,0.6343115384615385,2.70694,5.0441,1.2415083333333332,4.603415,3.675133333333333,3.044833333333333,2.05504,1.8399966666666667,4.7662949999999995,4.276515,9.334260119047618,4.95883,4.043915,7.1774458333333335,3.135945,3.0841433333333335,1.392445,5.257018333333333,2.086375,2.5928233333333335,2.6943633333333334,0.2829875,2.8756,3.56141,4.6369050000000005,1.26021,1.3540083333333335,3.80778,0.5779340000000001,0.5779340000000001,3.16428625,3.1073166666666663,3.5191666666666666,4.291935,4.34829,5.7305,3.64102,4.133135,2.82399,3.1871166666666664,2.9907566666666665,0.851625,2.77352,2.80811,3.068365,6.83961,3.085115,9.0098,2.8407,4.79306,2.915365,2.2216775,2.774375,2.9889,1.6541425,2.4749275,2.1890775,3.83205,2.601725,4.8953475,2.787775,3.884280833333333,3.884280833333333,2.691971666666667,2.691971666666667,8.849605833333333,2.7676466666666664,0.780455,2.48549,2.4417633333333333,2.4950566666666667,4.8953475,1.953064,1.9760259999999998,1.520926,4.40017,4.583265,1.7085225,4.45468,3.95402,6.548527777777778,6.76117,2.36123,4.23392,7.17259,4.77902,3.293335,2.8071066666666664,3.682065,3.628347575757576,4.389455,5.564534999999999,7.886379999999999,3.54156125,3.51675,1.2045416666666666,4.376515,4.1086133333333335,4.39432,3.8084708333333332,4.537485,3.231835,2.6712933333333333,6.978149999999999,3.517615,1.187526,5.96933,3.733525,2.8803900000000002,5.1218,2.8803900000000002,3.63345,3.92612,4.7738,1.0751971428571427,3.8405144444444446,4.627705,3.93665,1.3077483333333333,1.8038275,4.269835,3.929025,2.65831,7.089026666666667,4.333695,4.214055,4.418955,4.3751625,1.50629,4.274585,2.828805,3.82508,4.28051,4.46287,4.96316,3.11588,4.74595,4.711655,2.2457,1.79668,3.637366666666667,3.4593333333333334,3.4088,3.2039299999999997,3.5269999999999997,2.85801,5.0248,3.122575,3.661055,2.80848,1.8132400000000002,3.7000333333333333,1.9524366666666666,2.875715,3.023905,2.704855,0.68456875,2.265335,1.7368966666666665,3.11167,2.01948,3.4437670000000002,3.526275,1.3706200000000002,3.375835,4.592735,0.76022,1.30549,3.371375,3.80102,3.85269,2.145085,1.85571,3.38479,2.3999633333333334,1.6897733333333333,3.24564,1.913625,1.178472,1.35688,6.18201,3.24366,2.475185,2.55257,2.485505,3.58985,0.81954625,0.328405,0.7841714285714286,5.12145,2.4523444285714286,4.56202,2.050225,2.3850372857142856,3.823474714285714,1.4384374285714285,1.1509912857142857,0.715032,0.5659314285714286,3.49275,6.5926,2.971195,4.109265,0.3450146428571429,3.683525,18.537422714285714,2.947795,7.492974895687645,1.03314625,1.03314625,1.03314625,1.03314625,5.811516666666667,3.95554,3.655685,2.1381733333333335,3.106745,4.096595,4.38643,3.402715,3.385615,4.494745,4.264425,4.2543,3.6390126666666665,4.19196,4.940725,4.243515,4.830885,3.521105,4.224935,2.7112233333333333,4.33899,3.195985,4.011,3.88131,4.39516,3.3955333333333333,2.649925,2.4132000000000002,4.32893,1.2823785714285716,3.679985,2.839636666666667,3.4462393333333337,4.237155,4.063385,3.04312,2.894005,4.996045,3.98835,3.043145,5.2328,4.86422,3.120565,3.78664,1.725482,1.725482,1.959515,4.66731,4.51736,5.991645999999999,5.0222,3.815586666666667,6.45515,4.407415,2.16693,9.478539999999999,4.741045,6.663517499999999,4.47325,2.8716733333333333,4.40943,0.2700993103448276,0.7691775,3.872944666666667,3.87667,4.84774,3.23372,6.025793333333334,5.34655,0.549435,2.936095,0.521568,1.794792857142857,3.20911,2.020585,3.963135,3.75819,3.18191,3.436555,3.290045,3.583005,3.3041,3.48779,3.773725,2.366425,1.794792857142857,2.823515,2.077235,3.438035,2.18702,4.52647,3.45906,1.677785,4.275,3.32924,1.38472,5.43525,4.69857,4.144235,2.9260466666666667,2.9828799999999998,4.665555,1.9926466666666667,1.3795959999999998,2.354483333333333,2.61332,2.56676,2.0462666666666665,5.1455,3.523595,5.067838333333334,3.963463571428571,4.83292,4.11961,1.7905719999999998,5.37495,4.63723,5.2461,4.318165,6.51481,1.8202875,4.752395,3.227755,2.991085,2.1890125,1.6238566666666667,3.873745,4.43053,2.2897866666666666,2.5359304166666665,3.3594074999999997,3.3594074999999997,2.9174366666666667,3.14305,3.327785,3.883315,3.317365,0.8270384615384615,3.236025,4.16882,5.195920277777778,3.05676,3.039945,1.726895,2.63555,3.402565,2.191925,4.433545,4.2145,4.597365,1.9575466666666665,0.9908909090909092,6.0118,3.46355,3.8087666666666666,3.3267133333333336,1.8889479999999998,30.232565428571426,4.342685,3.262465,5.0516,4.41755,0.8606833333333334,7.53492,2.065895,5.5884,1.5782016666666667,4.8979,5.800835,3.581865,3.05606,2.2024375,3.8987,4.882305,2.0287425,2.7010966666666665,3.67133,3.23036,2.496315,5.9687,2.04367,5.51925,1.16260125,4.27717,3.463015,3.91886,4.829465,3.45862,2.238793333333333,4.282015,4.892415,3.597525,3.597525,6.5885,1.72233,4.228565,7.141283333333334,3.140915,4.30486,3.30971,3.832745,3.33715,4.020235,1.30892,2.24203,4.153805,4.25707,5.91485,4.35429,2.305005,9.345016666666666,2.742665,3.72196,1.7407428571428571,3.404645,2.1568733333333334,2.6568566666666666,2.679672083333333,1.6544800000000002,2.720473333333333,0.9461528571428571,0.97983,0.97983,0.97983,1.9674233333333333,0.53314875,3.88415,1.1962133333333334,2.6035766666666667,1.12785,1.7143533333333334,2.560076666666667,2.36861,0.7475225,1.9031966666666669,1.8988266666666667,2.3421133333333333,1.6192039999999999,1.6192039999999999,1.5822533333333333,1.9301899999999999,1.161048,2.5332500000000002,1.63433,1.1963166666666667,2.27825,2.27311,5.97615,2.198855,4.904595,17.859689833333334,6.913595000000001,3.540615,3.558926666666667,3.3115400000000004,2.92123,2.7482433333333334,2.88551,0.7240533333333333,0.974572,0.974572,0.64459375,2.5294033333333332,4.04023,4.383695,1.615542,5.03065,3.57304,2.47474,3.500745,4.86964,4.051965,4.1366,3.543366666666667,3.20785,3.237725,5.7316,3.719333333333333,4.66877,0.501,0.501,2.382175,3.251835,5.2044,3.40016,4.220445,4.793665,7.122185999999999,7.81593,3.6895,2.78282,4.92148,3.98089,2.4509133333333333,2.34587,3.09848,1.3632966666666666,3.78124,2.584945,1.90282,3.32889,4.594745,2.0479325,5.564534999999999,1.755275,3.564,4.139765,1.0933371428571428,3.4725,3.2653933333333334,5.0697,1.1638,1.7581625,2.4151375,2.217805,1.65789,2.529425,2.1349875,1.917895,5.0093,4.370575,2.71245,1.89286,1.5131033333333335,3.6969999999999996,2.07323,2.689375,4.45844,6.8696,2.7790083333333335,2.84539,3.401425,3.57363,2.41505,4.910315,3.90273,3.167555,1.4511625,4.397575,2.358155,2.9460766666666665,2.459665,3.978705,5.0074,5.47765,2.3343433333333334,2.746786666666667,2.89995,3.4684333333333335,1.9438833333333332,1.519622,5.2697,3.5790666666666664,2.231697090909091,3.1416566666666665,3.1494233333333335,2.445463333333333,3.1880433333333333,3.2596133333333337,3.6012,5.3472,3.94662,3.19604,5.63905,3.225225,2.31311,3.382525,3.969235,3.82122,6.136554500000001,1.833002,3.730085,3.086715,3.958555,3.557715,0.5554475,2.23181,2.203635,3.378,2.75837,2.104835,2.762475,0.675592,2.82868,4.77416,2.42402,4.12547,2.496516666666667,4.30303,2.01263,4.72904,3.883715,1.8858260000000002,2.66014,7.372344999999999,4.272005,4.446935,4.943155,7.537047840909091,4.344095,4.587295,2.0902125,4.705715,3.307645,1.9049233333333333,1.8596725,3.6117333333333335,0.9744700000000001,2.47593,2.9103066666666666,2.62175,3.4469666666666665,1.818516,3.284385,1.8363800000000001,5.8849,6.7519124999999995,1.01460375,1.79767,2.60055,2.774096666666667,2.00787,1.0624283333333333,5.646343333333333,2.227765,2.64922,3.7590333333333334,3.0887466666666668,3.30224,2.9814,2.1216266666666668,3.24058,2.4637533333333335,4.280135,4.265515,3.90811,3.5439333333333334,3.4286,1.00719,1.7552566666666667,2.25397,2.15939,2.6168299999999998,1.1398583333333334,2.7035066666666663,2.899983333333333,4.08151,1.9591066666666668,3.34455,3.442485,5.7959,3.162765,0.5932916666666667,1.995034,2.71266,3.5925,0.8616236363636364,2.9518133333333334,3.576104,3.3434000000000004,2.80688,3.267164166666667,3.71208,3.9606333333333335,3.0071133333333333,2.151675,5.654,5.1194,5.3377,5.5373,5.79325,1.7049966666666665,3.468375,3.5940333333333334,3.4461666666666666,2.9114466666666665,2.8217166666666667,4.013433333333333,3.6097333333333332,2.95148,14.028371666666667,4.16069,1.13707,2.6643966666666667,1.6989439999999998,3.24667,3.1983766666666664,2.2947466666666667,5.697058333333333,6.311891666666667,2.4538333333333333,0.885797,4.345545,3.3935,3.0033,5.47255,5.24295,5.8608,4.922715,3.593005,1.933045,6.4377975,1.2045416666666666,6.6818425,4.802305,2.5787400000000003,4.54738,7.012093333333334,5.91365,2.2003666666666666,1.50908,2.09441,7.100888333333334,1.57535,2.913263333333333,2.62667,4.183101944444444,6.0133,4.175965,6.35885,3.57689,5.1821,3.688505,8.05279,5.01435,5.75305,2.38015,2.607275,11.460301666666666,3.13394,4.005755,2.33395,1.57628,2.972656666666667,3.0835033333333333,0.6486225,1.309012,1.0721942857142857,3.87856,6.883886666666666,3.2103020000000004,1.5744999999999998,5.0273,4.55408,0.5607249999999999,4.265805,3.73831,4.61892,4.487535,3.619945,2.6035166666666667,4.11702,9.484290000000001,1.768655,3.6770525000000003,4.518295,4.403055,3.785005,0.8788166666666667,3.5422,3.9040666666666666,1.63898,2.5243233333333333,2.26969,2.5370966666666668,2.7882266666666666,2.054186666666667,2.034425,6.021877857142857,4.838745,4.498355,4.357406666666667,1.5421966666666667,2.4477225,4.822295,4.746175,5.1349,4.574205,4.492605,4.952085,1.725482,3.74042,7.382943333333333,1.4504116666666667,1.67962,2.66038,2.58115,2.76378,4.794336833333333,0.8259071428571428,2.475905,3.42608,6.12485,4.38377,2.3501366666666668,2.7886633333333335,1.97929,0.559860625,2.3493825,2.79243,7.569134999999999,4.15562,4.32835,0.901052,4.4093333333333335,9.30345975,11.477229999999999,3.399245,1.17235,3.41497,3.463215,2.70528,5.347096666666666,4.96705,4.36923,1.9527275,3.810233333333333,2.1580766666666666,2.5009866666666665,0.7813772727272728,0.46375666666666665,2.5041,3.254295,2.0066,3.22878,3.353066666666667,4.322155,5.30255,1.420536,3.1970433333333332,2.0588275,2.0588275,2.212,2.87886,5.89215,2.7045666666666666,3.06755,3.3674666666666666,3.5587666666666666,4.142375,4.254605,4.58423,3.96962,3.917085,4.38289,6.77965,7.677945833333333,1.9153475,2.178263333333333,3.0789766666666663,0.87,0.7081916666666667,3.92892,2.320055,5.38155,2.9178333333333337,3.05721,1.874382,1.4041025,3.748635,4.151775,4.19488,2.0419666666666667,1.3102633333333333,2.5743833333333335,2.0686433333333336,2.5033566666666665,1.0792771428571428,1.0792771428571428,2.7442233333333337,4.362705,2.832905,2.95485,3.320075,2.339285,19.486067575757577,3.606535,5.4775475,4.0375,3.803185,3.89512,3.65666,5.62495,6.561377499999999,1.0596966666666667,1.0596966666666667,1.0596966666666667,2.6570833333333335,1.7318857142857145,3.526533333333333,4.88121,4.744875,3.32123,4.565195,4.510165,0.9247466666666667,2.54779,2.7944533333333332,5.8495981666666665,3.2645014999999997,3.9926606666666666,4.67864,2.0048475,1.9566633333333332,2.283673333333333,0.5216975,0.829222,1.819485,1.94591,2.790475,12.896833333333333,2.4975533333333333,5.34185,0.7351714285714286,9.65323,5.77755,3.710445,4.323465,2.7881,5.568,2.7881,2.846094,3.37918,3.697525,3.867295,3.92514,4.67151,3.39123,5.932,6.883077999999999,1.77239,3.1635199999999997,2.624,27.564950928571427,1.664338,6.4424,4.827858,3.80101,4.277075,4.560095,2.668905,2.71795,2.36224,6.38815,7.0105,4.746795,4.9242,4.584245,2.1013325,1.905665,4.32341,0.8038076923076923,0.8038076923076923,0.8038076923076923,0.8038076923076923,4.118685,3.25975,1.11492,1.8116933333333334,1.1843333333333335,4.497825,2.3895399999999998,2.3071675,7.3284633333333336,3.271186666666667,0.17012310344827586,20.582371166666668,4.539586666666667,1.733552,1.3150989285714285,2.3299399999999997,1.93625,2.4147175,4.542215,3.300345,4.409925,4.091795,2.4873333333333334,7.1468,2.64569,1.94354,3.74451,6.01235,8.125533333333333,4.674315,0.2941951219512195,3.50045,4.36251,3.0297433333333337,2.1770025,2.915983333333333,1.546075,1.546075,4.057025,5.649775,12.068920833333333,9.383125,0.6560666666666667,2.6457,4.182285,3.1913,5.62135,5.36045,1.989696,1.989696,4.269955,4.81358,2.6240799999999997,3.80537,4.97077,5.9222,5.929335,2.1137,4.552015,4.160015,2.7949,3.023703333333333,3.170196666666667,4.949525,4.574915,5.0176,4.356555,4.44228,3.846555,4.442815,4.25896,5.71585,2.5333833333333335,3.3201966666666665,1.133046,4.01207,4.348045,3.63753,1.804604,2.0432266666666665,3.0585466666666665,3.264863333333333,2.8198066666666666,4.596573333333334,1.7009166666666669,2.937725,3.9042999999999997,3.434466666666667,2.5360366666666665,2.9026599999999996,4.202133333333333,3.6399333333333335,3.8673333333333333,4.925924999999999,2.08577,2.8709233333333333,2.55126,5.896,3.3942,42.809285083333336,2.529794,2.529794,2.51239,2.825623333333333,2.07669,1.8184433333333334,2.99837,1.94698,0.7739461538461538,5.09365,7.121717500000001,4.356355,3.996265,4.91033,1.9377666666666666,4.407525,1.8710280000000001,5.2575,4.67408,5.72935,4.084505,1.690185,4.280375,5.61215,4.744895,4.98926,5.4586,3.964345,2.92649,3.284413333333333,2.91708,2.3244925,1.94837,4.401555,2.0710533333333334,3.7173724999999997,3.7173724999999997,2.1324133333333335,1.5622066666666665,2.0340933333333333,2.38982,2.467886666666667,4.90017,2.6158533333333334,1.1329783333333332,1.1329783333333332,3.21306,1.9194766666666665,2.5422,2.645383333333333,2.4497,2.48306,2.2170366666666665,2.1128547500000003,2.882837607142857,1.444971607142857,0.7699828571428571,60.60202691468254,2.713164,2.9031033333333336,2.1249320000000003,0.8582700000000001,3.4830853333333334,1.550324,1.550324,2.57885,2.8575700000000004,0.67498875,2.75089,5.383776666666667,3.7312999999999996,2.58732,2.712683333333333,2.188973333333333,2.465758,0.2934925,2.850016666666667,0.700348,2.464566666666667,1.27635,1.27635,3.1323666666666665,1.8355899999999998,2.2971633333333332,1.392072,2.81536,1.392072,2.1326666666666667,2.9009133333333335,3.4594666666666662,1.6401800000000002,1.6401800000000002,2.8229066666666665,1.3854899999999999,3.1274533333333334,2.19798,4.92822,4.32775,12.981827166666667,7.13654,4.034885,2.76106,4.288715,5.2471,5.5672,2.7413225,4.650495,3.923475,2.410206666666667,4.497945,3.279123333333333,2.7290266666666665,4.39487,2.2790433333333335,1.0623757142857142,4.28836875,3.0716099999999997,3.231175,0.7835257142857143,2.538985,3.562835,3.79942,4.233745,6.5751,2.575343333333333,1.885004,4.104785,4.55579,2.276065,2.542164166666667,1.9553,2.1965373333333336,0.905634,5.4777,4.48656,4.087885,3.875175,3.2510600000000003,4.662255,4.945635,2.9582566666666668,1.68584,0.54781,15.231506,0.5048154545454545,0.5048154545454545,0.5048154545454545,3.07906,4.138433333333333,0.5048154545454545,7.3573450000000005,4.54809,0.706328,0.706328,3.144083333333333,3.206105,2.84792,4.34671,4.47018,4.220892,2.2699849999999997,4.837566,3.807905,3.5263019642857145,4.68664,2.94408625,2.44062,2.308055,2.6428,1.59148,3.34906,3.027476666666667,2.5567,2.069385,2.06026,1.8649166666666668,1.5515,2.707,1.1014022222222222,2.68825,0.6091871428571428,5.2359,1.7010175,0.7513941666666667,2.4892625,7.75666,2.640815,2.052287,3.107335,7.50689,2.50323,4.524615,3.50485,5.81721,3.71166,4.02479,4.514825,5.44585,3.065796666666667,4.631995,1.1761471428571428,4.059395,2.3392633333333333,2.5339466666666666,2.484125,2.33154,2.1429,1.2181125,5.4923,0.9400727272727273,4.79104,5.6124,4.957185,5.5356,3.9147,2.5668966666666666,2.02098,2.93348,2.8671699999999998,2.53851,3.5689666666666664,2.771375,4.319915,1.766122,40.8504176984127,4.704085,2.3387,2.8372566666666668,2.9645733333333335,1.5291033333333335,5.774118333333334,3.88218,2.88903,3.3694,2.2282699999999998,1.6344825,5.6032,0.8284785714285714,5.610570714285714,1.3505871428571428,3.3356999999999997,3.443766666666667,3.0087566666666667,1.406625,4.864273333333333,1.6639659999999998,1.6639659999999998,2.6681266666666663,2.953520833333333,3.652433333333333,3.719,1.3769266666666666,2.9680400000000002,2.7441833333333334,6.5180725,3.0435666666666665,3.698261666666667,1.0307866666666667,1.3628566666666666,3.0809599999999997,0.8746079999999999,5.400086666666667,3.6016,2.92663,3.7884333333333333,2.997246666666667,2.71161,3.4775333333333336,1.7115600000000002,2.485505,2.599763333333333,3.5788333333333333,2.4583533333333336,3.6632,3.3503000000000003,0.5755560000000001,9.796587884615384,2.70932,5.2573,5.1262,2.75338,2.9216800000000003,1.3498275,2.131343333333333,2.116505,1.3498275,4.542855,0.45325625,0.45325625,1.10801,1.10801,0.8552975,0.8552975,2.579925,3.17168,2.578285,1.483925,1.832265,3.558055,2.86543,4.75085,4.739605,2.13054,4.20582,2.347405,4.912276239316239,1.613475,1.613475,2.15198,1.8380839999999998,3.941324166666667,2.04217,4.548395,1.4489083333333335,2.496955,0.65115,1.1752757142857142,2.11977,2.298595,2.2494975,1.4965275,4.521005,4.344175,2.67924,2.7020933333333335,1.4245599999999998,0.7089683333333333,2.29489,4.195655,2.64826,4.483435,5.6052,5.07015,3.983935,6.8059899999999995,1.5849433333333334,6.15926,1.68084,4.481045,4.796375,5.8972,3.0226166666666665,2.316205,1.6872925,1.973958,1.973958,2.421715,2.421715,4.49503,5.57345,0.8718999999999999,4.11588,3.75144,3.3641,2.8252366666666666,1.3783875,2.697226666666667,4.214835,4.375115,1.913946,6.49825,4.5321,1.85721,1.296475,3.80247,4.056326666666666,3.879385,3.457705,4.030495,0.6858471428571429,3.2196200000000004,2.9806500000000002,2.6246133333333335,3.0084,2.1490566666666666,3.8570333333333333,1.4979285714285715,1.4979285714285715,1.4979285714285715,3.10886,3.3371666666666666,2.7691700000000004,3.5446221904761908,2.3933875,1.2982985714285713,3.0848533333333332,3.23584,1.3218342857142857,3.0927466666666668,2.7333833333333337,1.1840714285714287,3.102933333333333,2.927583333333333,2.9823799999999996,2.8569166666666668,2.744846666666667,2.3848225,3.4096666666666664,5.032875333333333,4.54661,0.9153309999999999,1.593356,0.695506,3.6702666666666666,9.015435,2.9304900000000003,3.18209,2.86204,4.215838333333333,1.824595,7.580506666666667,6.610430000000001,2.925323333333333,2.6867091428571426,3.97558,4.718925,1.57372,1.167198,1.295476,2.16057,11.184286666666665,2.9041866666666665,2.9804999999999997,3.111409,3.758765,2.3604233333333333,1.25375,5.10715,1.1238949999999999,3.3898307692307696,3.890215,3.35922,3.1761666666666666,3.680455,5.48175,1.14273,2.0008875,2.0274,2.0274,3.71679,5.6495,7.21108,4.39951,3.30594,4.954515,1.7855575,2.245594166666667,4.64736,4.233695,3.836515,1.5587016666666667,2.899236666666667,3.50705,4.294235,2.436405,3.785125,3.581565,3.809455,3.97417,4.186055,3.936535,5.78915,3.18648,2.3824833333333335,4.394925,2.865645,3.760065,1.80788,2.616225,2.639235,5.3331,2.491645,3.396392840909091,1.647705,2.516945,3.58258,2.0170175,1.972035,0.733615,0.733615,1.7061025,4.085994545454545,3.93229,2.8831066666666665,4.24335,3.457883333333333,2.497487142857143,0.98746875,3.940775,1.628195,4.301825,4.04293,0.9278133333333334,1.7712575,3.91269,2.8920325,1.55485,1.61588,4.872542857142857,1.15071,2.789525,3.1846,2.867305,2.88004,2.8113789999999996,2.06979,0.973105,2.818245,2.89273,3.34639,1.3937933333333332,1.7454133333333333,1.851075,4.89943,2.193395,4.339945,4.65931,3.91177,5.94825,5.7686,4.286565,5.7887900000000005,4.122959047619048,0.7881072727272728,2.844465,4.84505,3.8973,0.4864681818181818,0.90909,2.84162,4.634815,5.22655,4.717945,3.2929510714285715,2.8395,4.932,1.874382,2.46386,4.69597,4.041017500000001,3.395245,2.89208,4.335945,4.70154,3.189375,5.3552225,0.9512409999999999,3.46849,2.47392,4.63165,4.21051,4.380215,2.08588,2.546705,2.720515,2.02325,5.0055,3.673695,1.523785714285714,3.067685,4.2604475,1.448306,5.8797,1.899646,2.548696666666667,13.703797343454792,3.29186,1.4405400000000002,1.5547583333333332,2.0738266666666667,5.620923333333334,1.661028,5.5957555,0.6979330769230769,3.12899,4.08201,7.365925,2.430146666666667,2.8485533333333333,2.8485533333333333,5.1286,4.469155,4.01227,3.262495,5.0206,5.17355,2.36781,3.401733333333333,4.78995,1.24723,3.0640866666666664,4.54914,4.205365,3.89514,2.73606,3.37673,4.06076,6.959210000000001,6.1554275,0.796214,4.311735,3.225315,3.4257333333333335,4.26174,4.118605,4.067015,1.7952819999999998,4.55017,2.61662,2.80414,4.11954,4.306445,4.644075,0.9134537857142857,2.6666166666666666,8.248911666666668,1.493175,2.082742987012987,2.2364375,3.741205,3.54084,3.24369,0.6625127272727273,2.34921,1.6451925,2.275425,4.498435,5.400826666666667,2.93379,9.63992,2.56038,2.7872266666666667,1.1146,4.871545,5.3645,2.15775,5.6345833333333335,3.239735,3.07962,5.49675,4.50287,4.88442,2.125215,1.4992475,1.4992475,2.742795,3.5266,5.575210833333333,1.5486275,6.680808333333333,1.44205,4.031605,1.5478216666666667,8.6063995,4.87887,2.742735,5.3021,4.70816,3.74551,1.1635116666666667,1.9909975,3.5490666666666666,3.096363333333333,3.5474333333333337,3.680266666666667,3.72957,2.721405,3.204625,3.237105,1.5018425,2.4626933333333336,1.81534,2.8096,1.9023066666666668,5.256339166666667,3.473966666666667,1.7963666666666667,3.033943333333333,3.338385,2.827455,6.0499,5.8311,2.93037,3.51183,3.519175,3.08139,2.863065,1.2933433333333333,0.926506,6.527355,3.290235,5.0106,5.15675,6.2115,2.7736,3.255236666666667,6.3384,2.42201,0.5045388888888889,5.5023,3.371635,3.91651,3.3618666666666663,1.34479,5.192,1.19944,4.85003,0.9384275,1.4471366666666665,2.800743333333333,2.37729,2.567312857142857,3.96717,5.766,5.612174166666667,5.612174166666667,4.8993875,4.8993875,4.77781,3.053786666666667,4.48725,1.15678875,6.3215,4.354725,3.681233333333333,4.094805,3.66234,4.36277,2.0227325,4.732355,3.138838,2.935645,4.276965,2.540415,4.551715,5.27845,3.49844,3.205695,4.983735,3.938675,5.28635,2.997005,3.3363333333333336,6.0732,4.109215,2.8784833333333335,6.010401666666667,1.5766799999999999,2.1931175,4.556505,4.436105,5.49295,3.93061,1.9777295000000001,1.9777295000000001,13.810884519841268,9.52383,5.29965,3.623685,2.941794102564103,4.66862,4.64236,2.6488166666666664,3.361333333333333,3.195585,4.008,3.697233333333333,5.1827,2.01042,7.959505,2.272715,2.04759,5.19615,2.25457,5.0448,4.488935,5.1496,0.8609611111111111,3.45903,4.03122,0.9443619999999999,2.97038,4.15142,1.447606,2.4149866666666666,3.0155333333333334,2.6386966666666667,2.7426666666666666,3.3083733333333334,2.7160266666666666,0.5809664285714286,2.92811,2.810776666666667,2.859526666666667,3.1716599999999997,1.7293859999999999,2.9929066666666664,7.159633333333334,4.798975,2.67472,2.1695266666666666,2.58767,4.10287,2.478585,3.6997720000000003,18.74576,5.243,3.4181220000000003,5.68985,3.73042,5.16108,1.4691599999999998,6.04265,1.5356333333333334,4.206335,4.189125,5.17675,5.0109,0.9651357894736843,5.83085,3.03582,5.0988,2.649635,4.22894,4.746545,2.899005,2.2679733333333334,1.4881579999999999,2.2195625,4.36483,4.83899,2.321545,1.872615,2.9644433333333335,4.36229,3.0902700000000003,6.22515,2.607325,4.61437,4.502615,3.78059,4.89407,4.266855,4.17131,4.791345,3.87114,2.80116,2.80116,5.621117777777778,2.0807800000000003,2.5615200000000002,3.98489,1.6517279999999999,7.46819,3.44115,4.815696666666667,4.2649333333333335,4.518565,1.954824,4.53047,5.1388,3.68285,2.1354975,3.67088,3.279705,1.1709275,1.5831425,1.1816666666666666,0.684625,1.7493566666666667,1.05517,4.36692,1.156022222222222,2.885353333333333,1.5183433333333334,1.785115,0.9564633333333333,2.1801275,2.5659,1.5085525,3.2300533333333337,2.54226,4.483391666666667,1.5825283333333333,2.4414575,3.5201666666666664,3.12558,2.4069133333333332,4.242213333333334,4.388325,5.359428333333334,20.560898916666666,2.78096,2.1888575,0.6179223076923077,0.638678,4.3863916666666665,1.903238,4.13521,4.733545,7.499276833333333,4.03319,3.900675,3.862715,3.0683933333333333,3.1420600000000003,3.3040766666666666,3.500033333333333,3.3656333333333333,6.23645,4.24669,0.962495,1.1801925,5.2312,3.1878100000000003,2.692826666666667,2.0884466666666666,2.34103,5.77305,4.843835,2.69185,1.1214600000000001,3.406685,5.0658,9.040633333333334,5.955769583333334,4.40416,4.147195,5.3642,4.786905,4.336955,4.551365,4.18984,5.3455,2.10389,5.8742,1.5728285714285715,5.3151,0.7312466666666667,5.0136,5.43855,6.0879,6.1588,4.552495,5.97045,5.4117,6.2782825,2.02135,1.6568,5.8365,3.98912,6.763775,5.0822,5.233246666666666,4.91881,6.17435,1.3035871428571428,4.351335,5.49185,4.099266666666667,4.81322,5.0174,2.66115,3.87198,4.175035,4.43032,1.0458666666666667,1.6099583333333334,1.367726,5.03385,3.99513,3.61163,2.79398,3.127736666666667,1.5154966666666667,2.11618,0.3775283333333333,3.5888666666666666,1.698312,2.2715483333333335,3.4240333333333335,2.01855,3.2837266666666665,2.6229,2.613675,10.479159333333333,3.5767666666666664,1.6886747435897438,4.562025,0.862400909090909,4.64528,1.1025125,1.90966,2.0124725,1.05271875,5.625061666666667,1.1494430555555555,1.1494430555555555,1.1494430555555555,3.0786266666666666,1.57935,5.3685,3.028425,1.680145,1.5638925,1.8199175,1.48425,1.754478,5.470111666666667,0.8401222222222222,4.336375,4.120435,3.426266666666667,1.0186371428571428,2.1154655,2.1850725,2.1850725,1.6492566666666668,3.7666216666666665,4.575665,4.987725,5.54345,4.599545,5.44765,3.014303333333333,1.907035,3.53927,5.38285,3.52998,4.43742,1.05527875,3.941587708333333,5.29965,1.8242125,4.45786,2.9874433333333332,4.331675,5.2133,2.58563,6.7758,6.2915,5.12575,4.44056,4.20119,3.144205,8.0679,4.052885,6.36181,3.35415,3.089033333333333,4.90527,2.6520333333333332,4.30487,5.22135,2.8829666666666665,3.068975,3.726515,1.69906,11.0569475,3.97903,3.091175,15.552322678571429,4.257465,1.6918766666666667,3.3569333333333335,2.990685,2.87361,4.476865,2.4440480555555553,3.560505,3.98482,3.23019,4.012055,5.930375,1.2334533333333333,2.569875,4.052825,3.8865,5.0437,2.082195,0.622244,4.9753,4.17328,2.1812025,1.244685,4.593875,4.937275,0.9681466666666666,3.81622,12.758638333333334,1.3267927142857143,0.39828571428571424,3.6690666666666663,4.353611666666666,1.087678888888889,4.51921,4.05087,5.679351666666667,1.2507516666666667,3.578465,3.85184,3.303945,4.645745,4.62554,5.095,8.470755,3.125015,4.068395,4.9087,16.22036375,3.347165,2.715525,1.2536175,2.3426325,1.2137325,2.0900125000000003,1.5004625,1.9461125,1.6557,2.4290025,2.499695,2.629075,2.05772,5.1525,3.95454,4.864245,3.08835,5.634221666666667,2.7678666666666665,4.766975,3.3853333333333335,1.18930625,3.569845,1.964735,2.4657626666666665,4.97603,4.895805,4.795065,4.83585,2.918423333333333,3.2612633333333334,2.444313333333333,5.164,3.636075,2.26382,1.8145,3.7043666666666666,4.991885,4.981145,2.3286433333333334,11.894566666666666,0.6863266666666666,2.62363,5.02325,2.5054499999999997,1.012216,2.675495,7.277661666666667,6.964251666666667,4.609205,4.106885,4.070635,2.082505,2.73246,2.920628333333333,2.059693333333333,3.6719316666666666,4.783785,4.45066,0.52117,6.14235,3.4299999999999997,3.4226666666666667,3.7661333333333338,6.47635,9.106042,4.3509245,1.1267875,2.1792225,2.137745,3.46557,2.585325,4.10494,4.66424,3.484766666666667,2.7364466666666662,4.21057,4.18913,3.710295,4.0721,2.49197,4.66972,5.32115,5.75065,3.4639333333333333,2.0343825,2.1113066666666667,14.85666561013986,0.5261481818181818,1.339385,1.339385,2.3384733333333334,4.431575333333333,3.86849,4.59581,3.310455,3.33997,4.28283,3.06372,4.047335,3.06372,3.709705,1.8989200000000002,1.4715266666666666,5.753,2.433705,4.709025,3.195005,2.72031,7.030451666666666,2.0039366666666667,5.005,5.0967,3.46615,3.52572,4.64527,1.962912,4.963875,3.2795075000000002,7.033579999999999,5.52318,2.650875,4.05299,4.68176,2.07385,3.2546533333333336,3.7985,0.4672307142857143,3.2320100000000003,9.70678,4.302015,4.463165,5.29825,3.612075,3.232525,1.3331,4.20603,5.29665,3.03058,3.082895,5.41705,4.06853,4.308625,4.594955,2.479475,2.479475,3.885365,2.87833,2.9811625,1.92994,4.925315,3.95996,1.19302,3.83224,4.80956,2.9450833333333333,7.654584999999999,7.67245,1.436566,4.23349,4.78412,6.87501,0.7958649999999999,7.62359,3.6887758333333327,0.6557218181818182,5.3625,5.4824,5.2135,4.495175,4.828705,4.712535,4.9566,3.87079,4.234225,4.902755,4.66562,5.7183,5.01025,3.753605,2.830965,4.34026,3.534115,0.9145350000000001,4.370855,2.81376,1.76111,4.329345,4.553235,5.52305,1.0605685714285715,4.93865,2.9792,2.5888233333333335,1.9460375,1.2182266666666666,11.914614166666667,3.2314666666666665,2.8708500000000003,2.8197500000000004,3.7024142857142857,5.749473333333333,5.969643333333334,2.6290366666666665,2.2384633333333332,2.2702999999999998,2.2702999999999998,2.2702999999999998,1.3625333333333334,3.73764,4.055145,3.690295,4.59317,7.986545,4.127695,1.012444,2.309295,3.2927,5.09755,1.81336,4.689975,2.60736,1.2875433333333333,3.8118,6.163901428571429,6.83242,4.47636,3.867525,3.2087733333333333,5.3257,4.634745,5.484125,1.91267,1.91267,4.487315,3.79614,2.619397,2.619397,3.746545,1.1844685714285714,5.13305,3.664645,4.03839,4.321525,4.21006,3.17853,1.0019757142857142,4.335635,4.771175,4.38926,4.88172,5.04845,4.998485,4.45646,2.162895,1.4791775,3.947275,3.720895,3.166905,4.17221,2.123405,3.5289925,4.85374,2.74471,4.82758,8.493504999999999,2.3954145833333333,3.1658866666666667,4.387415714285714,4.902739166666667,1.570475,2.0214211904761905,0.9769583333333333,2.0214211904761905,1.6502800000000002,1.6502800000000002,1.48904,4.599945,3.016385,3.74091,2.348875,3.91843,1.4561916666666666,5.34045,3.0556,1.64471,2.6762866666666665,4.361535,3.9686,6.271986,4.72337,1.277736,0.7762933333333333,3.56624,6.356168333333333,2.36491,3.39844,3.251975,3.251975,2.26767,3.42967,2.978245,1.4151945454545456,3.286936666666667,3.875425,3.469485,4.416885,3.8709800000000003,1.5524175,3.73654,4.73681,4.564055,5.0982,4.135675,1.73335,2.165725,1.3034833333333333,2.25802,3.41162,1.99882,3.93225,3.157196666666667,3.222035,3.87752,4.944615,3.00933,1.112928,1.82154,1.187575,1.1866333333333334,5.05935,3.974705,1.133046,0.2709886956521739,0.2709886956521739,0.2709886956521739,3.53407,5.9937233333333335,4.4713,5.17575,3.933725,4.44436,4.73676,4.231365,2.89178,3.64206,1.60901,5.04715,3.870365,3.834975,4.34583,4.223575,0.8270927272727273,0.8270927272727273,0.8270927272727273,0.8270927272727273,0.9448380000000001,0.9448380000000001,4.19241,3.84036,3.770445,2.783475,2.460805,5.2426,4.33553,5.04595,4.263135,3.0056,2.4983166666666667,9.46585,1.420434,1.420434,4.314245,5.28505,3.2431533333333333,0.45325625,0.45325625,0.45325625,0.45325625,0.45325625,0.45325625,5.08258,5.1593,3.57212,4.418855,2.6685350000000003,2.6685350000000003,2.69146,3.1192056666666668,2.78144,2.90286,4.090295,6.874953,1.331804,4.89876,3.958585,4.246805,10.213916666666666,2.535503333333333,2.965105,0.9346628571428571,3.134985,4.78479,3.75794,1.1782925,2.7936433333333333,4.458685,5.5893,2.602,5.0225325,1.1853666666666667,1.9959633333333333,4.601275,4.72299,2.9831205,2.48965,2.4851366666666665,1.44019,8.612895,3.5151333333333334,2.5945566666666666,3.03469,2.691531666666666,3.950855,3.882045,2.7262299999999997,3.4798666666666667,6.0194,1.4691833333333333,5.22815,5.05595,4.52258,3.92256,2.8329566666666666,2.98597,3.702515,3.812755,2.824725,4.427585,4.580805,2.870423333333333,2.04360875,2.85232,2.6562966666666665,2.8066999999999998,0.7847500000000001,2.08207,7.9499699999999995,0.47836125,3.095606666666667,1.4163266666666667,2.57252,3.24169,2.8730233333333337,1.2648555555555554,1.739188,2.7167066666666666,2.0926825,3.5753,2.10862,2.791933333333333,1.3531366666666667,3.167922,2.3046375,1.09712,2.98671,2.0383025,2.2597133333333335,2.72461,3.135453333333333,3.1816,3.2555566666666667,3.1167833333333337,2.959373333333333,3.372033333333333,2.7908566666666665,2.508425,1.6402633333333334,2.86919,2.7087299999999996,1.6447366666666667,3.0833766666666667,3.7768033333333335,2.8682466666666664,2.9948333333333337,3.2153066666666668,3.772733333333333,4.792680833333333,3.0526400000000002,1.8131257142857145,1.8131257142857145,2.33359,1.1410775,2.553825,3.29643,4.50007375,2.80225,2.0290375,2.1858925,2.1111075,3.55026,3.470095,3.684075,5.36085,1.739865,2.577733333333333,3.93,1.531738,1.531738,3.046675,0.7123961538461538,3.4028730769230773,2.648925,2.648925,2.993316666666667,2.509183333333333,2.86061,2.49124,2.24395,6.605905,3.8630699999999996,3.8630699999999996,3.932795,3.112765,2.310805,2.942185,2.369505,2.9975,4.908145,0.47321250000000004,0.6628860000000001,4.06345,2.443755,2.881225,6.482623333333333,3.69016,1.6501000000000001,5.06303,4.68799,4.00137,4.31118,5.3066,4.621755,13.496813,3.50179,1.6364400000000001,2.78163,3.773215,5.3389,3.9042,4.42214,4.407085,3.671405,3.10877,2.8343233333333333,3.574685,2.81503,2.22908,2.22908,3.9632,3.37884,2.98265,3.47137,2.32389,2.39706,2.282555,1.9628675,2.037135,1.998975,1.8021975,3.8171635,3.56873,2.728455,6.66505,3.70227,2.28484,1.8220166666666666,3.35443,3.783365,3.589795,3.1025718749999998,3.43889,3.19162,4.18286,3.51143,3.740695,3.833765,3.27417,3.43014,0.8069416666666666,0.8069416666666666,0.8069416666666666,3.2905,2.262055,4.975995,2.26013,3.606915,7.678335000000001,2.831326666666667,0.3607115384615385,5.3403,0.735674,4.373912857142857,1.873065,3.773065,1.73233,5.00895,5.838425,4.4552,3.898555,2.7442766666666665,2.87297,1.4980166666666666,2.4861833333333334,0.47100473684210525,0.5790435294117647,2.9361433333333333,1.5098,1.9743225,3.789875,3.169435,4.92385,2.927436666666667,2.94683,3.369225,5.67098,1.9449975,1.033707142857143,2.25956,3.5551880000000002,1.3076735064935066,5.1221,3.734805,3.719355,2.69247,4.087315,3.058453333333333,2.67545,2.8005066666666667,2.26044,2.847353333333333,2.12598,3.1143300000000003,2.3389533333333334,5.683610000000001,2.5841,1.9233966666666669,2.5354966666666665,4.9042113333333335,3.0842300000000002,3.0842300000000002,2.458813333333333,3.92951,2.2437625,3.603435,2.82671,0.6090906666666667,4.401015,2.2440825,11.706416666666666,7.26556,2.68245,3.08879,3.249885,4.97707,2.791145,3.4199,0.22318733333333332,2.0386625,4.0854333333333335,0.8640416666666666,3.849165,1.3949128571428573,5.1825,3.322365,3.650985,4.918785,4.139565,2.286925,4.646165,3.718205,4.279785,6.48318,4.200835,3.0321833333333337,3.245573333333333,1.623068,2.216035,4.640525,4.413495,4.1524225,2.676865,5.89205,1.591494,2.84889,2.55409,4.576415,11.000943333333334,3.52161,7.841233333333333,3.731255,4.58706,1.0096866666666666,4.88641,4.755615,2.546813333333333,2.938553333333333,3.7250666666666667,2.9725466666666667,2.279646666666667,1.6702000000000001,1.9034033333333333,3.59503,1.65611,3.1725433333333335,5.223238666666666,2.8167333333333335,1.0421007142857144,1.0421007142857144,3.49001,3.1965705,3.1965705,4.1106,3.18936,3.3246615384615383,3.628133333333333,3.4091,2.5599433333333335,2.3175433333333335,2.2993866666666665,3.0882799999999997,2.22526,2.4867,1.59127,5.63657,9.398097166666666,0.6326092307692307,0.6326092307692307,0.6326092307692307,0.7302910489510489,0.7302910489510489,0.6326092307692307,2.917403333333333,2.9246200000000004,4.371498333333333,1.5066249999999999,1.8684025,3.1346879999999997,2.3429933333333333,3.0278466666666666,2.31058,3.00596,3.5393000000000003,6.968543333333333,3.0718033333333334,2.5620533333333335,3.5311333333333335,4.483545,2.647213333333333,3.3610333333333333,5.64151,2.293273333333333,3.328583333333333,1.3374366666666668,1.3374366666666668,2.9092033333333336,0.5202394736842105,2.3524266666666667,2.7970900000000003,2.995063333333333,3.5217666666666667,2.32862,1.4529733333333334,2.684893333333333,2.97368,2.2901466666666668,4.708305,2.4995673333333337,4.09033,3.4314,4.853045,0.49103199999999997,7.187946666666667,3.0455959999999997,3.0455959999999997,7.770464722222222,1.7620633333333335,1.7028533333333333,3.209846666666667,4.46122,2.2725433333333336,2.027223333333333,2.9482866666666667,1.381795,3.3579333333333334,1.7664633333333333,2.9800605,1.33465,0.2652577272727273,0.2652577272727273,5.3049,3.773545,3.40678,3.084403333333333,3.25965,3.39941,1.26206,5.99885,3.65687,2.80549,1.80786,1.3674391666666668,2.211525,3.209846666666667,2.44661,1.99033,6.19581,4.031095,4.718475,4.50798,2.247085,0.6573058333333334,7.4858075,2.0344725,1.506525,3.36405,4.606275,2.028305,1.8371166666666667,4.662915,4.525955,3.467966666666667,3.228896666666667,4.583945,4.889205,3.5430333333333333,2.593276,2.593276,4.116815,5.01965,5.79455,6.696863333333334,2.8810966666666666,3.93672,1.3589157142857142,2.480995,4.832967333333333,3.810095,1.7740040000000001,4.316385,3.434055,4.52338,2.05531,4.02638,4.850055,5.2566,4.845965,2.3807733333333334,2.65441,3.9185,1.9785533333333334,2.82295,2.97207,2.452593333333333,0.9841710000000001,2.12745,2.7758366666666667,2.500036,4.713345,4.627655,4.86347,4.089535,4.057835,5.4538925,12.764225,5.5805,4.192,4.352315,3.94177,4.6238,3.283106666666667,3.126903333333334,3.751533333333333,1.2670875,2.80165,2.764665,5.026,5.5603,4.85532,3.2301066666666665,2.69194,2.49153,4.330466666666667,4.3039725,3.452366666666667,4.3039725,3.063209,2.36531,2.3931699999999996,2.363885,2.7304733333333338,1.7536666666666667,0.816985,1.6955833333333334,1.7357633333333335,1.94351,1.52473,1.2966733333333333,2.02162,2.9359266666666666,1.520394,3.3864666666666667,1.3083766666666665,2.2172533333333333,2.67329,4.1812,2.518263333333333,2.1847066666666666,2.3401833333333335,3.13567,2.189085,2.8310666666666666,3.10764,2.5173366666666666,2.9977066666666663,3.0480025,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,0.15382967741935485,5.0018,3.50168,1.0036671428571429,3.07251,2.50208,3.0578133333333333,4.164685,3.04952,4.47874,3.711141333333333,1.831562,3.1880333333333333,1.6685166666666669,1.06155,0.92363,1.4525983333333334,0.8634266666666667,0.8414666666666667,1.3850580000000001,3.17576,1.6393239999999998,1.7676999999999998,1.79976,2.453152777777778,1.294545,1.490515,1.6082466666666668,0.9221383333333333,1.2298816666666668,0.6923433333333334,0.8200620000000001,3.200955,3.43684,3.83961,4.408185,4.13382,2.99259,4.33192,3.7163,1.9052275,3.662315,2.039095,3.45682,2.5228699999999997,0.8240045454545455,4.39505,4.68427,2.1041733333333332,1.2771475,2.843705,3.35642,3.7666216666666665,2.8504166666666664,2.51265,0.92585,2.1449425,5.088395,3.94607,2.3827,1.496465,3.69324,2.2101425,0.6700909090909092,4.64345,4.04498,4.126005,2.430045,1.323988,4.91581,4.302305,2.5907533333333332,2.5740866666666666,2.77945,2.7865133333333336,2.7357766666666667,2.84369,3.250446666666667,1.2777375,2.669675,2.485133333333333,5.22635,4.208655,3.545755,4.406605,16.017589238636365,4.372155,4.700484666666666,2.85207,3.969455,4.91779,1.584872,2.6981,2.7404333333333333,6.963635,4.821375,4.6496,5.772,2.7404333333333333,3.738785,2.04226,2.62245,2.7779866666666666,2.8184733333333334,1.2975166666666667,4.18281,3.743415,2.53655,4.126085,2.5420133333333332,2.7495166666666666,3.570025,3.135775,4.9102,3.84277,2.83311,3.4151,2.74213,2.67721,1.3288220000000002,1.3288220000000002,2.7976566666666667,2.12131,0.3125714285714286,5.602956,0.97059,2.8965,3.627205,0.5409291666666667,4.79535,8.455018333333333,1.79668,3.656835,3.78487,3.4255,3.229825,2.102625,2.89446,3.549035,4.04118,3.17437,4.0749,0.9972833333333333,11.399298666666667,2.871825,2.894815,4.940305,2.46479,3.910605,7.93167,4.70134,4.303125,3.98945,4.312545,5.50623,1.47072,3.1380700000000004,4.180025,3.8573,1.8872699999999998,3.77111,3.632655,3.69338,3.86744,4.5971,4.016975,2.3964783333333335,3.71632,3.66617,5.4439,4.53828,2.2260133333333334,2.3610466666666667,1.9304366666666668,2.9390633333333334,1.3354866666666665,3.6293,0.83143,3.3460666666666667,3.1199166666666667,2.513523333333333,1.5193349999999999,4.430385,4.832905,4.07788,1.8108975,4.590025,3.930015,0.7547412307692307,0.3470392307692308,4.49806,5.1029,1.00605375,0.3470392307692308,3.55617,0.7547412307692307,0.7547412307692307,0.3470392307692308,5.732798333333333,2.4490933333333333,2.54928,5.4464,2.841915,3.05716,0.7667455555555556,3.23026,3.71751,4.491095,5.386,2.244015,0.7263253846153847,4.744985833333333,2.7196866666666666,1.6342120000000002,2.2106125,1.168062857142857,2.7340433333333336,2.5309066666666666,3.65856,5.1611,3.1544233333333334,3.4793333333333334,2.9575066666666667,2.3906133333333335,2.925225,4.19120125,1.47972,2.0280625,3.97588,5.19475,2.175216388888889,5.2791,2.526945,4.117295,4.118775,3.426455,1.15692,3.122705,6.38325,3.82622,3.9525,5.04385,6.07745,2.561815,4.735275,4.47391,3.11208,3.051265,8.21953,3.669425,4.6461974999999995,2.258545,1.10766,2.4731,2.076275,2.211165,1.912795,4.913855,0.7323142857142857,3.461015,4.087285,1.8534733333333333,3.03974,4.74659,3.67112,2.73155,4.610655,5.48065,9.955502333333333,2.5908333333333333,2.9818933333333333,1.633918,1.9669166666666669,1.2188266666666667,1.6121366666666666,3.2341866666666665,2.4900800000000003,3.08282,4.643597692307693,1.52142,2.2689033333333333,5.2585,5.4465,3.8398,3.430355,2.8899,2.45012,2.072355,1.9823,1.9115133333333334,2.09344,3.70277,3.595515,4.83843,5.171,4.174805,5.617259166666667,3.47085,2.45206,6.368257083333333,4.4759,8.03455,4.7926225,4.7926225,5.464316666666667,1.5752466666666667,1.361485,1.3611533333333332,0.710268,4.987025,3.832333333333333,3.287045,3.287045,1.9961860000000002,4.578145,4.378985,4.488995,4.779645,2.881876666666667,2.69762,4.20061,3.082333333333333,5.0121641666666665,4.43971,0.7541281818181819,5.5918,5.2968,4.96195,5.35265,3.0989,5.9234,4.61437,0.8817923076923078,5.0067,7.050940000000001,3.635595,5.6195,5.831,3.37541,2.516045,3.8355,6.2958,2.10858,5.9971,1.843185,4.962625,2.60734,2.1960525,0.9512409999999999,4.403625,5.7853,3.324635,4.24207,2.0242999999999998,4.40839,8.185013333333332,3.65799,4.046585,2.735795,2.80258,0.880405,4.93735,1.5261149999999999,3.6671916666666666,3.6671916666666666,4.26454,2.2621433333333334,3.0770466666666665,4.20877,1.9350825,3.0872433333333333,3.352,3.2586,2.95864,3.85727,2.51384,1.73292,3.754566666666667,2.1236825,2.9032666666666667,2.02589,3.0717233333333334,2.954,1.4595857142857143,1.7028299999999998,0.45316833333333334,1.2869516666666667,0.45316833333333334,0.45316833333333334,1.7028299999999998,0.45316833333333334,3.3533666666666666,2.997286,2.997286,2.981446666666667,5.13175,5.0889,4.42731,5.4049,5.07495,3.40552,4.273225,4.206525,2.178655,2.5245141666666666,2.882963333333333,0.7952181818181819,5.48305,2.9607733333333335,3.1811399999999996,5.38865,3.7568099999999998,5.1656,3.291835,2.58503,2.964125,3.238905,2.4091666666666667,2.6026599999999998,1.99717,5.58195,0.8936222222222222,3.96687,1.207162857142857,3.5948,2.6408066666666667,2.998613333333333,4.15546,4.17599,4.17041,4.852045,4.033465,4.0487,4.53089,4.123125,2.553125,2.69185,3.3227499999999996,4.120115,4.261165,4.43984,2.64702,3.385235,3.4645333333333332,3.21654,4.103715,4.61706,4.09464,68.33445490764791,2.683385,3.887805,15.807202666666665,3.88878,3.023703333333333,1.97413,1.95482,2.591203333333333,4.680642499999999,3.04636,4.374983333333334,6.6481,3.270155,8.027105,5.2646,2.59373,2.914175,4.199205,3.438915,1.86666,1.2687875,4.48895,3.17891,6.051121666666667,3.74898,2.317633333333333,3.42007,3.235275,4.31454,3.07612,5.480505,4.369245,3.642535,3.31772,2.390165,3.89383,5.97385,2.903165,3.763565,4.530145833333333,1.0831366666666666,2.886155,5.3071525,3.92872,3.80397,3.526485,2.9878,4.31466,3.04016,3.843855,3.24719,4.3807,3.3099,2.99681,4.30894,9.400635000000001,3.1427266666666664,4.06567,6.18794,2.985455,3.18964,4.2488318750000005,2.2028366666666668,2.7906,3.3566000000000003,3.482695,3.233695,3.84071,3.161125,3.20199,4.02834,3.84708,4.14462,3.754395,4.091325,3.973875,2.8500183333333333,2.8500183333333333,6.733905,1.86589,3.181,3.80659,2.67382,5.1298,4.073895,3.08466,3.12811,5.44435,6.9281950000000005,0.8128081818181818,3.428905,2.32195,2.7971166666666663,2.734773333333333,5.2859,2.7410366666666666,1.9649575,1.16260125,2.0788304545454546,3.987965,4.45029,3.83177,6.13485,5.0186,5.8874,2.40116,1.72502,3.969865,3.86779,3.152143333333333,2.225023333333333,1.3225033333333334,2.6924766666666664,3.2997266666666665,1.678266,2.466413333333333,2.4245445714285716,3.6328082417582417,2.70383,5.097,3.3244,1.3604925,5.5339,3.52813,5.23,4.93174,4.93251,4.617475,1.87314,1.4049133333333332,0.6260528571428571,1.5137033333333332,3.528535,2.41681,3.352666666666667,1.2802666666666667,2.24959,2.297395,3.304715,3.448765,3.693145,3.969855,1.6369425,1.41048,1.9441175,2.1197775,1.464685,2.6721,6.98301675,4.83402,4.23188,2.881335,7.7274449999999995,4.83326,3.02614,2.908525,3.26601,2.61174,3.577945,2.2653466666666664,6.9961,0.8563933333333332,2.991985,6.83105,4.06779,4.655535,5.5453,1.4697033333333334,3.2397266666666664,3.01154,2.9023033333333337,1.5806425,3.91751,8.15637,4.037855,4.84666,4.10207,4.010065,4.650085,0.8685633333333334,2.7918833333333333,5.37665,6.487500000000001,4.78987,5.49895,2.817185,3.8200000000000003,2.4848,5.0174,4.96338,3.7106285714285714,3.7106285714285714,0.5830085714285714,3.364266666666667,0.8742800000000001,0.5812700000000001,1.82486,3.7877666666666667,3.1614240000000002,4.383864,2.2695766666666666,2.9658480000000003,2.9797333333333333,2.7604100000000003,2.700153333333333,4.4559,3.4743158333333333,1.8420425,1.8420425,3.864435,2.94853,2.6678533333333334,3.864615,3.3447666666666667,0.7026033333333334,3.294333333333333,2.577036666666667,2.9462466666666667,2.8012766666666664,2.4059375,2.477793333333333,3.1361566666666665,2.9568033333333332,0.849734,2.6821633333333335,6.2144029523809525,2.17884,7.77458,1.529852,1.529852,3.5423476666666667,3.2246166666666665,3.3810000000000002,2.9124166666666667,1.84815,1.3973885714285714,3.0937933333333336,3.3831333333333333,1.6432833333333334,1.5057571428571428,2.7842566666666664,2.790948,2.7488166666666665,1.830365,2.02864,5.74595,2.112445,2.62743,3.327775,1.69226,3.49528,2.9559,6.92394,4.409975,1.71625,3.766005,2.70369,2.04557,4.060235,2.70891,2.695075,7.3489225000000005,0.8211384615384615,0.6546816666666667,4.7269,1.387144,1.387144,4.12929,2.3571775,4.837185,3.27631,1.3043066666666667,2.1418366666666664,2.7828966666666664,2.206906666666667,4.975925,3.89816,2.8064766666666667,2.4506666666666668,1.5859371428571427,1.5859371428571427,2.4430533333333333,3.86403,3.8171999999999997,5.37135,3.168613333333333,5.20715,4.65445,6.9563,4.99785,2.53583,2.76247,2.6103633333333334,2.6320099999999997,0.7365777777777778,0.7365777777777778,0.7365777777777778,3.19299,4.600575,4.187355,0.9695,0.9695,5.72605,6.41175,7.71528,22.55956711111111,12.27,8.75673,3.64493,5.90865,2.4608175,4.694155,2.6967700000000003,3.3209433333333336,4.214166666666666,5.3817260000000005,1.967305,1.92737,6.9703,2.29826,2.29826,6.67,3.673195,4.36725,2.0962775,4.930992833333333,5.00985,2.857965,5.437,4.15471,0.8968833333333334,6.3591,9.42578,0.8968833333333334,2.0962775,2.0343266666666664,0.8800840000000001,0.8800840000000001,1.8621159999999999,2.28856,1.8621159999999999,4.813205,6.1227,6.5181,9.15365,2.0962775,11.670486,6.3338,5.15475,2.4608175,3.28016,4.90959,9.67436,3.103320833333333,3.890735,6.14205,3.393145,4.97415,6.4043,4.87358,5.37515,4.792175,2.43845,5.68835,4.151255,4.76316,4.42172,0.77526875,1.547476,3.04576,5.58805,4.71327,2.8167333333333335,1.949325,3.986455,4.96134,5.7752,5.2193,5.18675,4.31218,3.32188,4.26121,3.62428,2.013005,4.754385,1.932685,2.592155,3.615775,1.7712,3.835045,4.58968,3.564175,3.574021666666667,2.89801,6.549863333333333,0.931861111111111,3.40725,3.572345,1.3487385714285713,5.810899,1.533595,1.5766166666666666,2.6022233333333333,2.9424125,3.0169033333333335,2.7900333333333336,2.03227,0.7964936363636365,2.33183,2.466475,4.48878,0.7188792307692308,6.6608,1.78942,1.170306,3.5081333333333333,1.170306,3.84787,0.9568090909090909,4.397185,3.1239600000000003,1.609185,4.471502,4.417497,4.417497,4.79228,2.6056,3.1889700000000003,2.7063466666666667,1.7293859999999999,3.672225,3.804395,1.96009,0.7904516666666667,7.500554230769231,2.6818,3.780535,4.049085,7.45535,2.6138,3.9827,3.668815,3.00442,3.89541,5.7796,6.339815,4.310525,4.88245,5.1453,2.841756666666667,4.61883,4.0547,4.64049,1.1851777777777779,0.5958342857142858,3.095055,3.3248800000000003,2.769156666666667,5.4798,3.72766,4.24146,4.85328,4.941455,4.54721,4.479115,1.14968,2.341925,9.269611666666666,2.24469,1.9600166666666665,3.663456666666667,12.192068353174603,1.5113975,4.912155,6.1501,4.797935,3.148073333333333,2.30138,3.1720633333333335,4.189705,1.0851466666666667,3.3760999999999997,4.013315,0.38601473684210524,2.32044,4.939145,4.5218,2.174885,4.098105,3.4248,4.8913408333333335,1.2702266666666666,0.6293836363636364,3.6211141666666666,1.196702857142857,1.0564025,1.0564025,1.0564025,1.0564025,1.5271949999999999,2.8404399999999996,2.754633333333333,3.6491333333333333,5.6387,3.5985666666666667,5.2543,3.72148,4.37043,3.474845,3.87447,1.5185966666666666,7.503575,2.440925,5.15415,5.275036666666667,5.0633,5.0253033333333335,3.1328033333333334,2.4951866666666667,2.658873333333333,3.774975,1.1484366666666668,6.0728349999999995,2.4959599999999997,5.1026,3.04116,2.5361933333333333,3.62178,3.432715,2.889345,2.4378800000000003,2.7642399999999996,1.41734,0.4090111111111111,4.569075,3.36578,4.184005,3.39945,4.000605,6.00485,4.186215,0.5274815384615384,3.3822419999999997,7.646018666666667,1.9941566666666668,2.26962,5.369411666666666,4.74225,2.795256666666667,4.7717,5.3282,4.17095,4.51689,4.26756,5.1595,5.0822,4.87458,3.590705,5.429697000000001,1.46783,1.7251833333333335,4.36867,4.21559,4.36839,3.081245,5.18995,4.516885,3.786145,3.286075,16.166872058101074,1.378301943552702,1.4247125,2.351130681818182,0.530559375,0.5074093333333333,1.6316375,0.3759088235294118,1.338034,3.4612,1.57699,1.0779333333333334,1.0618104166666666,0.48098916666666663,1.0618104166666666,1.0618104166666666,0.48098916666666663,0.8980923076923077,0.6900278571428571,2.85153,2.7594666666666665,4.021865,4.65281,2.8263200000000004,2.6991,4.12649,4.82889,5.3336,3.557575,4.46221,0.7142757142857142,2.3465346666666664,8.857304166666667,4.78423,6.865053333333333,2.51521,4.244765,2.26147,4.87482,4.752095,3.132475,4.030395,3.092565,0.9996816666666667,4.25752,5.15625,1.2127219999999999,1.275606,1.6035233333333334,2.30605,2.4866366666666666,4.83693,5.3955,2.2547375,2.2547375,3.455570833333334,6.16053,2.0550200000000003,0.6336636363636363,0.99368,2.4209733333333334,3.4194333333333335,1.105457142857143,1.105457142857143,1.105457142857143,0.37602076923076927,1.0623757142857142,3.114825,6.2933,3.9049333333333336,4.226133333333333,5.5053,1.02798,3.695233333333333,3.3035533333333333,3.9613,5.77595,2.853073333333333,7.688583333333333,5.18725,1.1640222222222223,3.7785333333333333,1.8848120000000002,2.489035,2.21555,6.730981666666667,2.8866866666666664,4.691675,2.222835,4.12889,4.260355,4.725555,0.45470111111111117,3.0443533333333335,1.31388,2.57266,3.8241680000000002,2.1245966666666667,2.708016666666667,2.320466666666667,2.407993333333333,2.47532,2.698983333333333,2.6965800000000004,3.034333333333333,1.283288,2.14217,2.3683466666666666,3.0419466666666666,2.614,2.01075,1.71215,1.8536066666666666,1.748935,3.13389,2.4743166666666667,2.65976,2.3607733333333334,2.49012,2.8926833333333337,0.8146433333333333,0.8146433333333333,0.8146433333333333,2.3753366666666667,2.3245033333333334,2.9126066666666666,2.517046666666667,2.584303333333333,1.98395,4.01423,3.217461666666667,1.2750883333333334,2.56648,2.6714366666666667,3.41875,1.6051428571428572,7.026515,4.54285,3.17403,3.88591,3.399095,1.68281,0.70378,3.261355,3.678545,3.41875,4.652265,4.210785,5.42265,2.8523066666666668,3.869795,4.19775,0.8156599999999999,2.634225,3.31846,4.7410041666666665,4.586025,3.5237,3.16831,2.36484,2.45431,2.5568566666666666,0.6206416666666666,5.323786666666667,2.69915,4.39722,2.7319600000000004,3.767948333333333,3.156283333333333,2.3014966666666665,3.166649333333333,3.166649333333333,2.5464166666666666,2.034143333333333,2.68404,1.8925933333333333,4.289485,1.373466,2.737015,3.570735,4.031285,3.675645,5.36295,4.650055,2.4012475,2.112305,3.27239,3.11956,4.127105,4.804925,3.26642,1.0230357142857143,1.0230357142857143,4.517175,3.657026,0.9436859999999999,4.43435,0.9436859999999999,3.963005,4.662605,5.1498,3.312785,3.17964,6.2189525,4.488833333333334,6.29565,0.9179428571428572,0.9179428571428572,2.1352,4.679936666666666,1.4491366666666667,3.2308,3.93665,1.0696157142857143,4.07234,4.355755,6.161199999999999,6.161199999999999,1.1762466666666667,5.2404,5.10745,5.27985,6.3253,2.137815,2.137815,7.11475,0.9523,7.282,1.913875,6.401355,2.634185,2.402086666666667,3.432295,2.2678599999999998,2.1974199999999997,2.7040633333333335,2.96265,2.6855040476190477,6.434807,2.0357600000000002,5.76605,3.11734,2.8077900000000002,1.81064,2.057055,2.70118,3.3434,3.547055,2.627295,2.224885,2.17973,2.68453,1.100726,3.13497,2.08192,3.039465,1.982095,1.982095,2.96832,2.07541,3.75175,3.387965,5.16105,7.417048333333334,4.497325,3.494615,6.516565833333333,2.1417066666666664,3.3424899999999997,2.27452,1.5384285714285715,1.7597925,4.19171,1.6236666666666668,0.4816,0.647305,4.517255,4.313175,2.90445,0.9496211111111111,2.84297,2.8231566666666663,5.00545,1.9161740000000003,1.87014,1.212711111111111,4.748945,2.77849,4.355205,0.688931,4.37838375,5.62685,4.354985,4.50267,3.545215,3.670995,2.9615733333333334,5.39605,3.47471,2.648966666666667,2.690523333333333,6.268808333333333,6.79454,0.85314,4.374305,4.147585,5.13535,3.672266666666667,3.7147,2.875425,3.3316166666666667,3.9616666666666664,6.2083775,2.790948,2.5200915,3.72634,4.512535,2.40112,2.625175,8.305156666666667,5.0441,1.8916666666666666,5.00605,4.78467,1.809244,3.955745,1.4829625,1.8884714285714286,4.435925,3.866065,6.1637,3.6399333333333335,4.967255,5.97695,6.8798,4.96767,5.66425,4.48926,5.7603,4.730045,4.6594750000000005,1.155555230769231,1.155555230769231,8.69225,0.9873875,2.1428361904761903,0.9873875,0.7473900000000001,0.3810633333333333,2.8902261904761906,2.254845,0.49927285714285713,2.1428361904761903,1.820435,3.32676,2.3909533333333335,3.368775,4.66763,7.846586666666667,1.923235,2.30722,2.46611,5.16515,5.71905,2.003545,1.6734,1.92052,3.59392,4.10356,2.468545,4.61547,6.2559474999999996,0.4808233333333334,3.933465,0.752679,2.9635700000000003,2.6664,4.052175,1.2694383333333332,4.617795,4.4174625,4.22433,3.004915,4.604865,5.1605525,1.5605575,3.733135,0.6530507692307693,2.7647,2.640935,1.113084,3.12046,2.4030033333333334,2.5124566666666666,4.244885,9.08599,3.434735151515152,3.62876,4.65297,8.01146,5.6967175,3.3531333333333335,3.927745,3.525525,5.5676,5.53085,6.228,5.7343,4.50637,6.34065,3.4526333333333334,1.424585,1.83599,2.7423466666666667,4.09981,2.3327666666666667,0.2467424324324324,0.2467424324324324,0.2467424324324324,30.742056595238097,0.2467424324324324,2.8427424324324324,0.2467424324324324,0.2467424324324324,0.2467424324324324,3.3264757657657658,4.350265,0.2467424324324324,0.2467424324324324,0.2467424324324324,0.2467424324324324,0.2467424324324324,3.40703,4.88372,3.16331,0.3318333333333333,0.3318333333333333,4.298346,4.161003916666667,4.11943125,3.5794895833333333,3.924332857142857,7.977033333333333,11.452512191919192,6.486106666666666,8.230686666666667,6.98403025,2.9092033333333336,6.188819047619047,4.307783333333333,4.44938875,0.3318333333333333,8.372317,6.641097904761905,7.1525516666666675,2.732,9.22873475,15.486634464285714,18.99035798992674,57.88267270228138,118.62258731494649,1.3374366666666668,3.328583333333333,3.184375,4.071884216216216,0.3318333333333333,1.6446516666666668,8.407377916666668,15.172852833333334,20.34330611111111,49.4354185858396,12.961567583333334,2.97315,0.2966668965517241,0.2966668965517241,4.509483333333334,2.7131166666666666,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,0.2966668965517241,8.71032,0.2966668965517241,0.2966668965517241,0.2966668965517241,2.994915,2.0605466666666667,3.754555,3.80317,4.049448333333333,5.3576,2.65015,4.126345,4.371925,3.2511,1.3994166666666665,3.362405,0.9828766666666667,2.21038,2.45877,5.757883333333333,6.25462,2.8659833333333338,5.985229166666667,0.488585,0.5714766666666667,2.49466,2.8413500000000003,3.275805,4.66814,3.3950666666666667,8.0398675,3.644945,3.207565,3.32742,4.18346,3.353335,2.95896,5.84035,3.90252,0.4765830769230769,0.9055845454545455,4.3640799999999995,1.7808475,3.62297,3.77732,4.33204,3.39744,2.601725,2.65633,0.5834406666666666,0.733823,4.184505,2.5592466666666667,4.987735,3.71946,4.12352,2.93176,3.601995,5.5857,5.35765,3.25861,0.85824,2.7677600000000004,4.856035,2.24155,1.0178875,1.66754,3.5977,6.01375,1.838215,3.48522,3.863135,5.6147,2.294865,2.4542800000000002,2.195795,4.168335,2.54969,4.35813,0.7015385714285715,2.97195,3.28463,1.737515,6.776233333333334,4.215125,4.486105,5.1922,2.80035,1.98495,0.5737190909090909,5.7093,4.85031,5.9624,2.576175,5.158,4.16197,2.82075,1.9348958333333335,1.3199514285714287,5.3474,1.94271,2.61597,9.509895,4.309445,5.4313,3.658975,1.0747844444444443,3.06734,1.2872957142857142,3.31101,6.33115,5.1347,5.08295,3.7185,5.47745,4.33645,1.7502925,1.7827933333333332,5.13585,2.9148300000000003,3.3984666666666663,2.503825,4.99082,4.05235,1.4278700000000002,3.4304,2.638605,2.823405,3.41833,9.2669,4.53952,1.753885,4.626755,7.29718,4.456497499999999,4.071955,3.945935,3.89982,5.0064,7.789705,2.41099,3.109965,5.34655,4.275335,2.726185,3.15584,5.03975,4.07721,3.59804,4.3876393333333334,18.269061666666666,2.7494366666666665,2.39731,3.2063633333333335,5.5249266666666665,1.1819675,4.4388,2.180315,4.84409,1.5027350000000002,4.460375,4.29062,3.708275,0.93309625,4.66853,4.379665,1.6626375,5.097372651515152,4.36775,1.06119,3.54192,2.062995,2.322305,1.58824,4.211455,3.69148,4.462535,3.59824,2.9484033333333333,4.399245,8.004501666666666,4.550805,4.43615,5.0269,3.237033333333333,4.1892,5.04275,6.249872,0.932872,0.932872,4.36599,4.736885,2.3874999999999997,1.53796,7.4513,4.18682,3.73873,4.0804,4.68765,4.411265,3.57794,4.16145,6.43732,4.127296666666666,4.530755,4.73191,1.4784000000000002,2.65375,4.48325,4.93249,3.54156125,0.19212305555555556,1.51224,2.3671875,2.4883866666666665,1.9532333333333334,1.0337788888888888,1.4280425,1.2960725,2.75473,0.5972688888888888,1.2972357142857143,2.16042,3.819355,3.897933333333333,2.5585033333333334,2.9237933333333337,2.9872933333333336,2.770573333333333,0.748166,0.96673125,3.09923,4.855415,4.347695,4.593595,4.516455,4.650255,5.1473,2.21804,4.37734,5.10485,4.71782,6.513097500000001,3.87887,0.4837429411764706,5.80675,4.90525,4.68221,5.38525,3.241215,2.0065,4.201495,3.943865,2.35248,5.047938333333333,4.480905,1.4644483333333334,5.047938333333333,4.345725,6.565425,3.666255,1.2113666666666667,4.04419,5.12695,4.522295,2.757843333333333,5.1089,1.4904625,2.0107075,4.64473,3.308035,0.7792566666666666,4.589355,4.955605,3.873945,4.575105,3.30884,3.2749900000000003,1.7495100000000001,2.09432,3.065885,3.90673,3.688133333333333,2.40227,2.671525,2.2457,5.47125,1.6420285714285714,0.8332933333333333,6.74071,4.4381,1.484764,2.8015633333333336,2.6435833333333334,3.4141999999999997,7.056903333333333,2.5394227777777774,0.8468009999999999,2.419035,5.17615,2.48942,4.60185,5.82705,5.32495,5.0571,4.29334,5.4274,2.2469633333333334,2.1670700000000003,1.6294833333333332,2.10244,1.875225,2.736273333333333,2.22055,1.747435,2.652035,2.9986,3.945755,6.51605,5.47705,4.21442,4.60674,3.85842,4.032445,4.775265,0.90116375,2.8147466666666667,5.16995,1.131512,0.70568,4.71674,3.385375,2.5193566666666665,3.4878750000000003,6.3864025,5.08785,0.987853,1.2123828571428572,0.6904344444444445,4.026778333333333,2.1474866666666665,2.6801600000000003,1.1873257142857143,3.18665,2.81208,5.674,4.927755,4.5021,5.556,4.18509,1.4394233333333333,3.59263,1.6127966666666669,3.47332,4.492535,3.749855,2.895656666666667,3.4768000000000003,2.9933333333333336,5.47375,4.225535,3.733305,2.4917,8.514814999999999,10.6618475,4.51516,1.1854099999999999,5.43455,4.353315,5.2112,4.37817,4.090275,3.84108,3.257845,4.076265,3.5871653125,7.49699,3.72102,3.5286,4.42395,1.87198,5.596,5.9572,4.75718,3.1941,3.107335,6.92389,0.7363016666666667,2.78516,2.663536666666667,2.252623333333333,5.10865,3.40727,1.3927916666666667,4.50592,3.4616666666666664,3.752795,4.87595,3.818369166666667,6.511386,3.15597,2.955,3.290896666666667,2.87106,3.925155,2.3920333333333335,2.26648,3.0808999999999997,4.024185,3.6276004166666667,1.8859675,1.518695,3.589794642857143,3.1537170000000003,0.9325755555555555,2.7388816666666664,2.7388816666666664,1.3336075,5.58845,2.95001,3.183745,3.579975,3.66603,3.333165,3.24085,3.233055,3.13022,2.23188,0.5657586666666667,3.257545,5.90895,3.15939,3.5932,3.131405,4.066,4.38668,3.19979,2.88972,4.023225,3.765835,3.08978,3.108005,3.737325,2.5495266666666665,3.8633,3.923365,8.71476,3.28741,3.662595,2.90326,3.99494,3.974605,3.539395,2.27464,3.55822,2.5568850000000003,2.814385,2.836965,2.977595,3.910255,1.6799733333333335,1.6799733333333335,2.16443,3.1272,3.1513,1.548306,2.182325,3.250375,1.876754,2.75736,1.548306,4.857725,2.923115,3.8902585,2.946715,3.357145,2.46194,3.607335,3.774395,4.218945,3.6308,4.292305,3.767955,4.08093,3.55767,2.85629,3.13975,2.986265,3.709735,2.6010266666666664,3.760575,5.00185,4.02687,3.531935,0.32461347826086956,3.61353,0.4375441666666667,3.62689,3.52174,2.78828,3.58134,3.795745,6.055555,3.255215,2.5619633333333334,2.2767166666666667,2.72288,0.768977,6.279563333333334,3.02912,3.24182,4.768265,2.39046,2.472185,3.26852,3.107605,6.56592,4.104705,5.07695,4.45645,4.69732,4.368005,3.70218,1.4367516666666666,1.6478519999999999,3.782835,4.549275,5.475735,2.3722966666666667,4.6727,1.83824,3.5093666666666667,3.618725,1.8253942857142857,3.89532,4.6958675,3.573066666666667,3.8211333333333335,3.0415666666666668,4.399485,5.04575,3.3185800000000003,4.281365,4.349625,4.945845,4.64844,4.377395,4.251695,3.06457,4.672995,2.607275,3.6017333333333332,3.6017333333333332,4.927345,2.7521966666666664,3.89324,2.8155633333333334,4.606725,3.3742666666666667,3.39133,1.84964,1.79558,1.1456983333333333,1.1456983333333333,1.7718440000000002,3.525166666666667,1.6328966666666667,2.6974633333333333,4.38237,5.157878500000001,3.3717666666666664,4.855865,5.78834,3.06239,2.831995,3.0717933333333334,1.56749,4.301985,4.05763,6.6404175,1.6838566666666666,5.53105,5.5343,3.4747333333333335,3.270095,4.312325,6.65446,2.20419,2.4406075,4.36716,0.49400000000000005,4.07337,3.930545,4.562585,4.116975,3.61826,1.525928,1.683132,3.86562,3.95821,2.4393266666666666,3.71235,4.56209,4.73028,1.1645475,3.635305,4.281835,3.842475,4.80248,2.84247,5.608123333333333,3.63582,1.4948700000000001,3.584515,1.2333100000000001,2.7439766666666667,7.805429999999999,3.220385,0.8028963636363637,3.61901,4.459575,3.989485,2.2226575,2.2226575,4.711531666666667,5.83525,2.75375,0.4946444444444445,1.930965,4.3112925,4.462935,4.382135,1.68672,2.9361266666666666,3.776585,1.1370386184210526,1.1370386184210526,1.1370386184210526,0.7402182017543859,1.3414165350877192,0.6011983333333334,1.1370386184210526,0.7402182017543859,0.2386773684210526,0.839875701754386,0.2386773684210526,0.5015408333333333,0.5015408333333333,0.5015408333333333,0.5015408333333333,1.0929255,1.18017875,2.2903933333333333,2.3162583333333333,1.09597,6.161918333333334,2.6171133333333336,6.495023333333333,2.780063333333333,3.89776,2.92811,3.165945,2.7982,4.65539,2.6748166666666666,4.167545,3.949425,5.19375,2.36079,4.14985,4.94141,4.03059,2.95928,4.726345,3.218465,4.44302,5.3897,4.89492,5.81515,5.32315,1.3019625,3.860855,4.25569,2.970875,15.4758,4.45667,5.364,2.7600700000000002,7.11619,3.981675,3.828215,4.666825,2.98724,0.9824,2.512865,4.159375,4.24946,4.53731,3.13751,3.925095,2.84892,4.3106,4.659725,4.23984,6.675858333333333,8.153195,1.4867142857142857,3.455885,4.017695,3.81495,3.602675,3.609975,6.85017,2.553665,2.931775,2.490875,3.904835,4.04433,4.62732,2.5599,1.6892,0.898568,4.502815,4.7994,4.03584,3.83196,3.76819,5.1357,4.19397,6.1364,5.491,3.83534,6.05615,3.59924,3.024065,3.238215,3.38069,1.73276,5.0584,6.3352,6.19765,6.301058333333334,6.301058333333334,2.51356,1.73276,2.231985,3.115275,0.76317,1.6194825000000002,0.8563125,1.4951,2.92288,0.391006,3.0751,4.04566,1.4951,3.4584585,10.9642825,6.562725,2.5041625,1.10682,1.7514433333333335,4.34691,4.29733,6.124005809523809,1.9413375,2.152745,4.051695,4.233435,4.90127,2.02662,5.2823,3.5873000000000004,3.200535,5.23785,7.109048,3.736535,2.34381,2.7267166666666665,1.8900133333333333,3.483615,5.27484,1.787368,5.3387,4.432255,6.146654,0.5665646666666666,5.49005,4.04074,4.968715,2.82515,2.728285,7.27405,8.973749999999999,6.87635,2.15535,2.15535,2.15535,5.68925,5.1677,5.45305,3.33041,2.720635,2.5082068421052632,4.826185,4.01933,2.46265,1.86754,2.46265,6.98411,4.510113333333333,4.507713571428571,6.4115,4.507713571428571,4.507713571428571,3.3689785714285714,6.6497,5.413061,2.830166,2.830166,2.496355,6.8668,2.862555,3.5765,5.554790000000001,5.554790000000001,5.554790000000001,7.6806350000000005,3.53516,3.29423,3.5379424999999998,3.4395925,0.93409,7.034906666666666,2.5247933333333332,5.9517,3.380355,13.216869333333333,4.583665,5.478813333333333,6.49772,2.6169183333333335,3.454555,1.08876,5.478813333333333,3.444205,1.752745,1.752745,2.85098,4.86173,1.63968,4.419626666666667,0.7883560000000001,1.2886666666666666,0.7883560000000001,1.73077,2.428036,4.959011,3.811305,1.2886666666666666,2.927295,4.62711,0.982425,3.46726,4.25649,2.019705,3.7826016666666664,2.194275,3.182475,3.025425,0.9526519999999999,3.628495,2.201305,2.141485,1.58772,3.01031,3.835355,2.75898,4.044675,1.1805522222222222,1.1805522222222222,1.1805522222222222,3.806125,2.832943333333333,2.832943333333333,2.46929,3.88724,1.9807966666666665,1.2753175,1.2753175,3.02019,4.2289625,0.8163175,1.58003,2.786485,1.2726216666666668,2.8526516666666666,0.9526519999999999,0.9526519999999999,2.0374791666666665,0.9526519999999999,3.3615625,0.643695,3.3615625,6.0453270833333335,3.29913,2.271236666666667,1.80532375,0.5635033333333334,2.3688270833333336,3.50594,2.3688270833333336,0.9391,3.216505,3.879715,3.737335,3.640095,2.607165,3.58015,1.95301,0.9564252777777777,0.5308375,0.9564252777777777,0.4255877777777778,0.9564252777777777,0.9564252777777777,4.771875,4.88257,4.456635,3.396645,4.5477,4.67478,5.2682,3.39124,3.74847,1.2642242857142858,3.3659666666666666,4.369181666666667,3.69612,1.3137333333333332,2.6294366666666664,4.021925,3.80582,4.19885,3.941565,4.10642,3.258945,3.05237,4.507275,2.7815433333333335,5.73395,3.71182,4.21648,5.7203921428571425,1.1840626428571428,2.09621,4.065515,7.45331,4.31575,4.603325,3.119616666666667,5.44575,8.09005,3.8442666666666665,3.321005,3.5071,5.70145,4.19185,5.72575,5.6986,5.9872,3.136235,4.99163,4.73338,3.3953,7.747665,3.1078033333333335,2.3476475,2.0833833333333334,5.05875,6.7126,6.0149,5.97225,4.3149,4.724885,5.7635,0.48876153846153847,7.65745,4.75084,4.45923,4.01369,4.729965,4.07209,3.3470666666666666,2.624725,1.3706683333333334,0.5805046153846154,1.798706,3.0403333333333333,3.73814,3.896325,4.73568,3.81224,11.34169,3.63653,3.960615,3.0056,0.7600899999999999,5.7069833333333335,2.6617866666666665,1.6012433333333334,4.26303,5.229661666666667,2.567875,7.1261,4.446165,2.14183,2.14183,2.14183,4.12201,8.83116,3.2635,2.1748475,2.1748475,3.28571,9.45258,1.04561625,5.21425,4.326085,4.10843,2.6430266666666666,2.06664,4.219865,3.772995,6.49455,5.803535,3.755195,2.86838,3.77101,4.1717875,3.6067004999999996,1.4210125,3.30381,5.68605,3.2648625,4.758765,0.95390125,3.714233333333333,2.673636666666667,2.50786,1.761425,1.71964,2.1153766666666667,5.9499,2.04133,4.11147,5.7106,2.0357600000000002,4.571495,3.959185,5.09755,3.3508333333333336,2.216485,2.774975,4.338825,3.9995600000000002,3.9995600000000002,1.1357225,2.42766,3.0668,4.434005666666667,2.231697090909091,4.833876,1.705566,2.652956666666667,2.0924733333333334,1.8089625,1.8089625,4.8064,7.43974,1.9221966666666666,3.0985533333333333,2.1421,6.13895,3.161755,0.711046,2.947505,0.711046,2.78947,3.310445,4.823115,6.3209,3.58078,4.838121666666667,5.4359,2.373035,2.0606633333333333,2.53928,2.2420466666666665,6.2831,4.586185,3.889975,3.917615,2.67953,4.415615,1.03314625,1.104918,2.1939466666666667,1.5533083333333335,2.5374866666666667,2.6918433333333334,2.143736666666667,3.5593333333333335,2.752775,4.346225,2.50736,2.8080366666666667,2.6953133333333334,2.2246833333333336,2.86843,2.69087,1.9577600000000002,2.44077,3.807195,3.76449,3.769155,4.17876,2.97409,2.206635,2.072515,1.3630166666666668,0.3098455,0.16084760869565218,2.1037133333333333,2.2607766666666667,0.16084760869565218,4.382759275362319,2.30822,0.16084760869565218,6.011272430555556,2.444825,6.40445,3.31285,3.830633333333333,2.4835266666666667,2.900183333333333,2.26997,4.23247,3.3246066666666665,3.29749,0.4539252631578947,3.865893333333333,2.5231752631578948,2.82064,1.728555,2.54645,4.212745,2.82168,7.499700000000001,4.99271,3.83487,3.74784,5.85254,5.83513,1.5808233333333332,4.057949166666667,2.025825,1.742635,6.78561,8.10154,1.14638,2.22524,3.55277,2.339975,2.841095,2.9799,2.53052,4.058525,2.229975,3.06897,3.38424,3.181415,7.43381,1.3457666666666668,1.949715,2.9714,3.30702,1.5437066666666668,3.400085,1.376055,3.65973,3.37695,6.78048,3.3842,8.4662575,3.603695,1.7723,1.6286966666666667,3.134905,6.92576,1.6659275,1.4516633333333333,5.30473,3.291435,3.89667,2.605705,2.1173800000000003,3.17552,10.411605,5.11958,6.22092,3.40933,2.24999,2.109005,2.52334,2.689535,3.07783,1.8326833333333334,1.50635,2.3879466666666667,3.47977,1.8684025,3.17508,2.62203,4.04377,3.70406,3.16887,1.2225966666666668,2.53032,1.1554566666666666,1.3922,1.5249,3.4681,3.383525,3.326485,2.810715,3.62985,3.803235,2.816525,1.4628619999999999,3.330055,3.434055,3.040695,1.67433,3.156265,3.32981,1.41867,3.40046,1.6001333333333332,3.83981,3.87945,5.0793,2.668745,3.89868,1.795445,3.883185,5.153,1.70617,1.07947,4.1270999999999995,2.53593,4.63211,4.10324,2.7443,4.701835,4.57239,2.629793333333333,5.48235,5.27555,6.65775,4.597965,6.859109999999999,3.9873,1.60014,2.818046666666667,4.63877,4.856105,2.92827,7.1648700000000005,1.2854342857142858,3.5370000000000004,2.125315,1.702946,2.3496200000000003,2.8209366666666664,0.37954499999999997,2.79081,3.3730666666666664,3.54669,2.41339,3.44,2.23028,2.5249533333333334,2.35328,9.034265,4.701205,1.7163840000000001,5.0027,2.4370472391304348,0.7547412307692307,2.933286666666667,7.519880000000001,1.7339099999999998,4.73660875,6.201208333333334,1.867185,1.60774,1.5494825,4.321825,3.13749,4.50392,4.2234725,2.545383333333333,3.784245,1.059508,2.832451333333333,4.225345,4.03718,4.991965,3.25522,4.48553,4.77067,5.09115,5.29215,5.92265,4.38281,4.688995,4.85517,1.693618,1.8242125,3.11863,3.33258,1.2115222222222224,4.48854,2.06268,3.2778500000000004,4.45951,3.1727633333333336,2.87547,1.6653833333333334,3.2880333333333334,2.795983611111111,2.742516666666667,2.76,1.9460666666666666,2.180905,2.321555,4.61199,4.689075,4.17946,4.93803,3.3674,2.2553,3.06955,5.4638,3.4713999999999996,4.412505,4.46182,2.21491,4.30114,1.6602,4.30171,4.982570833333334,6.061847976190476,4.306395,4.574635,5.9377,3.371233333333333,4.049768333333333,4.576345,3.21974,3.8035625,3.547265,1.4367125,3.25943,1.637525,2.27887,4.19411,5.546835,3.8035625,4.24882,3.44179,1.4491366666666667,3.43805,1.980315,2.70891,2.14297,2.68953,1.9009978787878787,1.9009978787878787,1.9009978787878787,0.7318345454545454,0.7964422222222223,2.220178888888889,1.1279625,3.526795,1.264535,4.092625,5.26875,4.70985,3.155885,4.004925,3.17717,5.071,1.8146275,2.86746,2.52011,3.103315,5.755281,4.27634,5.6015,4.00559,0.99528,2.213955,1.3362166666666668,3.624105,4.03189,4.13748,5.16265,4.981315,4.9213,5.07155,3.929905,1.644715,1.391095,5.453626666666667,0.99974,1.41171,2.66832,8.54654,3.510375,3.53831,3.115495,5.64457,1.733395,0.975225,1.43115,3.069685,3.66426,3.902515,3.74958,1.903125,5.847530000000001,3.1115566666666665,1.04400625,5.29225,2.9084866666666667,2.86281,2.3771333333333335,3.6525,5.890185833333334,2.8926366666666667,3.17066,3.6904,2.7682966666666666,3.1629066666666668,2.85951,2.922315,1.9046625,5.02055,5.01135,4.637395,1.130988888888889,0.74621,3.635566666666667,2.609453333333333,1.00170875,2.5359304166666665,5.00355,4.51446,6.961295,4.753955,3.6853,1.6990580000000002,3.418005,3.537795,2.8257966666666667,3.1121917142857143,4.202295,2.9179833333333334,5.039868,0.9237077777777779,5.6354,1.6891559999999999,5.009,4.522465,1.665135,1.0014875,3.037125,0.417215,3.171285,6.95605,6.6326,2.846094,1.483792,2.931706666666667,0.7284844444444444,2.48884,0.7284844444444444,3.88583,4.412065,1.4270125,2.029345,5.682485,1.7391500000000002,3.609475,4.290625,3.916405,1.247156,1.5999299999999999,3.879075,5.58715,5.0035,3.3566000000000003,2.33757,3.068625,1.5975575,2.18475,1.9378325,2.3327825,4.269015,1.3460222222222222,1.3460222222222222,3.388445,4.711040000000001,7.970986666666667,4.83817,6.959605,2.311975,3.40057,4.0934,1.6264633333333334,3.649970833333333,4.28829,3.759295,6.2829,2.851165,2.3758,2.9204833333333333,4.24866,1.12451375,3.990975,4.62073,1.1130183333333334,7.832420000000001,2.908375,3.098305,3.3234933333333334,4.53302,4.423285,3.99209125,2.5129633333333334,2.75276,1.93557,3.642533333333333,2.56685,2.151645,8.061919333333334,3.4905666666666666,3.3168233333333332,4.17524,23.243787214285714,0.6834666666666667,2.581555,4.2738,4.7841,8.32541,4.444875,4.10591,4.479115,7.352656666666666,3.45692,2.371443333333333,5.5954733333333335,4.444505,1.2577099999999999,1.2577099999999999,1.2577099999999999,2.9819924999999996,1.80327,3.253435,1.5274875,3.046365,1.4697033333333334,2.593445,2.69674,2.980795,1.5274875,3.2543,2.49619,4.288501666666667,4.881715,5.15355,0.8689916666666666,3.37607,2.69201,4.99067,4.52528,2.777065,2.17859,1.6621825,2.1271925,1.401114,3.999175,1.6764,4.724665,11.748856333333334,2.7674466666666664,2.513605,4.985783333333334,4.4911666666666665,4.4162333333333335,6.3291,2.06925,5.6967175,4.563625,1.0289599999999999,1.1684942857142857,6.454733,4.23548,2.147765,3.95862,1.9010525,4.79603,5.03785,4.78411,4.05832,1.3167414285714287,4.23359,5.02745,4.97349,6.016583,3.98795,6.10555,4.709395,4.132175,5.17735,3.412333333333333,4.77016,1.72619,3.27177,3.205065,4.24902,3.853565,6.3051,4.481265,2.4690133333333333,3.3589333333333333,8.786395,4.709345,3.15386,3.68679,3.66502,4.514665,4.264355,4.83802,7.18893,3.926575,2.7351500000000004,4.352335833333333,2.32528,4.60469,2.6788566666666664,6.63451,1.5659516666666666,4.49678,4.31629,11.722529999999999,0.4856614285714286,4.72109,4.42138,0.66042,3.65114,3.69042,4.504815,0.910929,4.702565,4.709843333333334,2.57126,9.87392,3.2885933333333335,2.0784366666666667,3.218695,3.60288,5.831,0.5705808333333333,3.816295,2.102965,5.1866,0.7402753846153847,4.11359,5.5677,5.41485,3.34114,6.24633,4.455185,3.708385,2.541043333333333,2.7353400000000003,4.22406,4.67618,4.99856,5.29155,5.03625,3.3836333333333335,7.296608333333333,2.878675,3.4613175000000003,2.51145,3.599905,2.93782,1.44689,3.123886666666667,3.02918,2.995293333333333,3.794233333333333,3.3556666666666666,3.3965333333333336,2.6775566666666664,5.5079,3.306976666666667,3.63104,5.1984,3.233836666666667,1.1046155555555555,3.1488766666666668,2.9244800000000004,3.84341,3.1866233333333334,3.18112,4.558915000000001,2.03005,1.7883425,2.91086,3.62589,4.69104,1.0927325,5.2065,3.11809,4.248666666666667,3.1812466666666666,4.777865,3.85083,3.190545,4.57566,1.732105,3.782845,0.66755625,4.543665,4.923205,16.36399696969697,3.217223333333333,1.255225,4.561105,0.6138399999999999,2.5975,4.45416,1.86746,1.4530142857142856,3.82729,4.739525,3.23955,0.7017816666666666,2.54571,7.68935,3.88484,5.8725,5.3873,4.97142,3.352866666666667,3.6283333333333334,3.347566666666667,6.774368333333333,4.038275,5.327,2.187175,0.4646544444444445,2.237085,3.036825,2.226485,2.71892,4.78967,3.0211366666666666,4.811495,0.7266308333333332,4.744725,3.577065,2.797265,1.1682633333333332,2.92342,1.9552100000000001,4.91961,3.914045,1.97847,1.6838142857142857,4.20875,5.1208,4.92087,6.2057649999999995,2.0983300000000003,5.1137,4.88129,4.14877,2.36432,4.498545,6.172461666666667,4.96599,2.376965,4.865325,3.259605,3.523215,4.046175,3.967285,1.3538766666666666,4.933605,2.5880566666666667,2.84863,5.594423333333333,5.594423333333333,4.927105,1.851964,4.77043,1.0202125,1.86651,4.98281,2.605303333333333,1.4264433333333333,3.1414000000000004,0.9443619999999999,4.3366999999999996,5.8226,3.369175,5.178,4.195355,3.81008,5.173864999999999,3.35619,3.13773,3.0939,2.4054266666666666,2.74615,2.951003333333333,4.37538,1.619601868131868,3.1767966666666667,4.56198,5.0027,2.3806133333333332,4.25454,4.974635,5.066691666666667,3.5749666666666666,5.42785,5.3668,5.34745,4.886465,3.69688,3.466885,3.569575,4.573795,5.40455,4.755525,5.08095,4.39966,4.62398,0.7081916666666667,4.961425,4.69576,4.10404,7.0739725,4.24449,3.990815,4.386505,4.715405,3.74701,4.036305,2.1500874999999997,4.451852499999999,2.2616425,1.3250357142857143,3.891605,2.0757600000000003,2.4420433333333333,3.5497259999999997,3.03364,3.232115,1.19728,1.935225,4.351805,4.079775,1.846425,1.846425,4.208505,1.7060300000000002,2.9845699999999997,4.36172,3.568265,3.768485,1.55898,2.067685,3.8066891666666667,1.97249,4.333095,4.453655,4.36494,4.317025,8.22724,2.664275,3.75251,4.693695,4.297545,2.96822,4.485035,4.36053,4.546375,2.25545,2.81397,4.461725,4.14923,3.703395,3.78754,1.6344825,3.72804,4.399135,4.511235,4.0614,4.1146525,4.1146525,3.157275,4.31084,4.26888,4.053515,1.592822,8.0357,3.92712,4.98596,4.31239,4.22004,5.1048,5.05975,3.039455,4.48966,3.3854,5.02155,2.12612,4.854545,5.813299444444445,5.3385,0.775521,4.709013333333333,1.16083,4.93639,4.719695,4.916325,4.105485,5.43295,3.8491,3.8491,0.895529,2.12598,4.682615,3.87991,3.994825,4.72457,5.11385,3.42462,4.200105,1.3039716666666668,3.206705,1.545595,1.228705,4.476150666666666,0.8501860000000001,2.8097133333333333,3.0273533333333336,1.24494,2.0371175,2.6151966666666664,1.4140933333333334,6.13415,1.8957325,2.2642533333333335,4.714075,2.177875,2.7530866666666665,4.56404,4.66529,2.738236666666667,3.20753,4.117333333333334,1.7363279999999999,2.128239166666667,4.35571,0.6171457142857143,2.2890366666666666,2.660928333333333,3.0770466666666665,2.956906666666667,1.426502857142857,0.8564416666666667,2.402903333333333,4.050965,1.2276514285714286,2.211675,1.2325025,5.668695,2.393725,4.98562,4.432015,4.37875,4.895315,5.3648,4.44629,4.439025,1.4402133333333333,3.895,1.6611719999999999,2.7311333333333336,1.1736814285714285,4.642435,2.050225,5.925386,3.842235,4.14715,1.725756,6.812685,4.63832,1.4693066666666665,3.97618,2.831325,4.01473,3.16657,1.9868225,1.9868225,3.1768666666666667,1.6955833333333334,1.6955833333333334,2.36432,2.64369,2.01075,1.2750883333333334,3.6008666666666667,1.06767125,3.1334233333333334,2.4477225,1.824595,1.4910716666666666,2.1888575,2.10263,0.2726182352941176,2.448525,1.1046116666666668,2.284196666666667,2.0924733333333334,2.4012475,1.0876233333333334,1.100726,3.6920333333333333,3.0748166666666665,1.9868225,1.7808475,1.8125733333333331,2.477866666666667,2.5267133333333334,1.819626,2.758763333333333,1.13707,3.3227499999999996,2.6643966666666667,2.46065,1.5536720000000002,0.97223,2.502125,0.97223,2.502125,0.72294625,0.72294625,0.5200905555555555,2.4878,2.238793333333333,0.72294625,2.1772825,2.4033466666666667,2.276065,1.748935,0.8146433333333333,0.72294625,0.72294625,1.625804,1.625804,2.1114175,1.7808475,0.72294625,2.3820799999999998,0.45755538461538464,2.81798,2.0225233333333335,2.631256666666667,2.54828,2.54828,0.3828175,0.3828175,2.36432,1.93625,2.3299399999999997,1.97422,0.3828175,3.675133333333333,2.4741025,1.662812,0.636075,1.662812,0.636075,8.39842,2.430146666666667,3.7946333333333335,3.4255,3.16502,2.9874433333333332,3.0146866666666665,3.4119333333333333,2.390165,1.71722,2.688523333333333,3.8442666666666665,2.3606333333333334,1.625804,2.416369841269841,2.416369841269841,2.71819,2.227765,4.25973,2.28484,3.3493666666666666,2.565436666666667,1.6947459999999999,2.577575,2.3933875,0.7847500000000001,1.60973,3.528385,1.8380839999999998,3.3016233333333336,2.48838,2.634225,3.7914999999999996,1.6813333333333331,3.6391666666666667,3.2510600000000003,4.0347,1.258748,0.2966668965517241,1.308377142857143,1.308377142857143,1.076438888888889,3.23372,3.9613,2.62135,2.084843333333333,2.084843333333333,2.25397,1.6001333333333332,1.04476,1.6216533333333334,1.6216533333333334,0.72294625,2.36432,2.80031,3.4469666666666665,2.4477225,2.08588,2.08588,2.08588,1.0710477777777778,1.5384285714285715,1.5384285714285715,2.4903625,3.2529566666666665,2.698969873737374,4.237115,2.7207266666666663,2.4679033333333336,3.696285,3.757285,7.336734999999999,4.07992,4.58029,3.6278666666666664,13.4009,4.58767,3.549735,0.86127,4.227555,3.72561,2.271705,3.615705,5.55995,8.083953333333334,6.20305,0.4980235294117647,4.015955,2.726415,4.174815,2.4544625,4.78125,4.359665,4.52906,8.519829999999999,3.214475,3.911475,4.09045,3.2619859090909094,8.15909476923077,3.32558,2.57983,3.660125,4.119295,4.921765,4.009865,6.212009,5.09305,1.309822,4.126935,0.871865,5.1048,6.091,4.86057,4.710115,5.7911,4.931545,5.22215,3.978945,9.057,3.864085,5.054703,3.838566666666667,4.9227,2.912045,0.893235,0.893235,3.37684,3.92882,2.217425,2.216145,4.342925,5.31085,5.9528,1.97026,2.6231,3.415695,2.6791533333333333,1.10194375,3.9092,4.63399,8.61439,1.6801359999999999,3.601945,4.1049,3.264995,2.8498466666666666,8.03715,4.204325,3.576033333333333,2.91701,3.953155,3.3960000000000004,3.151813333333333,3.07894,4.07903,3.911895,4.33108,4.434645,0.392146,1.4170999999999998,2.3675366666666666,1.6872925,4.741275,3.86616,2.6594333333333333,2.309025,4.618585,4.0713975,2.320805,2.34308,0.9123049999999999,2.6436,2.5532233333333334,2.5532233333333334,5.50945,1.9043475,3.0612833333333334,2.2132866666666664,2.09461,1.69398,2.65404,3.883325,4.54412,4.13853,4.964275,5.1819,2.87203,2.7396133333333332,1.940172,4.935725,5.3835516666666665,2.6548333333333334,2.8938400000000004,2.1100125,2.14608,4.004653333333334,2.7778899999999997,4.874555,3.607325,3.29472,4.61567,2.890193333333333,3.527695,4.636255,2.372123333333333,2.539676666666667,0.4022485714285714,3.469633333333333,2.75588,4.236815,5.8879,4.499575,6.136103333333333,2.116695,1.6546483333333333,3.106345,5.3852,6.26505,5.0835,3.2829333333333337,2.1774299999999998,3.2628,2.4859233333333335,4.69561,2.2629366666666666,2.020095,5.2191,4.985375,4.650115,1.68352,1.921185,1.0382339999999999,1.0382339999999999,1.0551819999999998,0.8555014285714285,0.78731,1.7087094285714286,4.441325,10.720770833333335,3.97404,4.552115,4.20922,5.8160625,2.58998,1.6168033333333334,3.6063791666666667,2.954635,3.65085,2.43448,2.7840900000000004,2.96107,3.3022533333333333,2.3960966666666668,3.4012,3.3866333333333336,2.9574700000000003,3.5673333333333335,3.3589333333333333,2.87987,2.816883333333333,3.3678000000000003,2.52867,2.9619166666666668,3.2040166666666665,2.963573333333333,3.5189333333333335,2.2196000000000002,5.312092666666667,3.2699200000000004,4.549224666666667,3.26782,3.1388533333333335,3.7671666666666668,2.86664,2.67463,3.13191,3.2167433333333335,3.4612,3.22238,2.0632275,2.6556266666666666,2.711676666666667,2.869175,2.869175,3.1571533333333335,3.267996666666667,2.3717466666666667,2.6327166666666666,3.2054033333333334,4.333666666666667,2.6741833333333336,2.679725,2.622526666666667,2.8524066666666665,4.905194166666667,5.1573,1.7156500000000001,3.1669766666666668,3.7401,3.447542,3.2816166666666664,3.766766666666667,3.5189,2.77908,3.3937340000000003,2.00752,2.7827585,3.6784,3.3068333333333335,2.607953333333333,2.767936666666667,3.8460666666666667,2.9183033333333337,3.247536666666667,2.376305,1.2688066666666666,3.302963333333333,2.7314233333333333,2.29147,2.49597,3.084016666666667,3.1332766666666667,2.00974,5.702005333333333,2.36414,0.9212899999999999,4.643395,1.9648724999999998,1.7063,4.683465,3.922455,3.318995,2.28702,1.7301025,3.34152,2.94858,4.094865,0.49859549999999997,2.0513,0.49859549999999997,1.821,1.7301025,2.562975,3.80984,2.564575,3.649495,4.213405,0.52393,2.8916299999999997,0.9368775,0.4669411764705882,4.286925,4.041865,4.813485,2.551575,5.92325,4.20442,3.86333,3.83745,3.8128333333333333,1.695738,6.4374,4.172,4.305045,4.82174,3.2020966666666664,2.13009,2.08265,1.3678566666666667,1.827325,0.929555,0.929555,4.422385,2.5377566666666667,6.173831666666667,2.3465225,2.324325,2.03078,2.22906775,2.3428275,5.3747,4.4612425,2.118415,1.93137,2.22906775,3.23095,3.8620177499999997,2.3108537499999997,5.25119,2.3465225,3.190315,3.34783,3.2338966666666664,5.52895,4.62506,2.086375,1.875535,2.205065,3.447165,4.96139,5.0086,2.0333625,3.94176,1.56749,1.755275,5.5915,11.047571666666666,2.1694466666666665,2.70477,2.2718599999999998,4.642145,4.39996,1.8857,4.981525,4.564675,2.911425,39.775310488095236,3.0006233333333334,3.15957,0.47671444444444444,5.088733333333334,2.3132466666666667,0.9635644444444443,4.46229,3.765215,2.0016825,1.97895,2.2503433333333334,4.199725,1.4575142857142858,3.1192056666666668,3.763995,4.62397,0.914578,4.68928,4.775615,4.98655,2.8050433333333333,1.46239,3.7521675,4.4699,3.682295,3.081435,3.571395,3.93624,12.082650909090908,3.014723333333333,3.037125,4.53181,2.64113,4.18411,3.518825,3.031195,3.229695,6.3165625,5.26085,5.13705,5.02135,2.374965,3.37911,4.279795,3.5645,4.61001,4.17718,0.11082826086956521,3.646995,5.0591,2.670595,1.5560083333333334,1.0911166666666667,1.0911166666666667,2.4367175,2.68592,3.034935,1.441386,2.9711966666666663,4.436335,2.58384,4.324205,0.5748907142857143,4.38182,3.921085,4.42481,4.220395,4.697435,1.4768125,1.4806,3.9568,2.942043333333333,2.959426666666667,4.318459818181818,5.1553,5.966235,5.52185,4.80615,3.278105,2.195715,1.5837566666666667,5.3931,0.307618,3.345935,3.62479,3.823465,14.656006666666666,1.68359375,3.18908,0.52667375,4.33321,9.072355,3.218755,2.0768233333333335,5.7463,3.3600999999999996,1.034138888888889,5.0537,2.70043,3.077255,5.0069,3.311493722222222,1.183845,7.811276666666666,0.7245775,4.924015,3.099829222222222,1.367635,2.0485617222222223,3.109905,3.109905,3.734695,4.2098665,1.4288375,2.18676,2.66042,3.45642,3.199415,2.341365,3.204755,3.32969,6.4532419999999995,6.44355,3.81709,3.057615,5.3217,4.987795,3.95619,3.384525,3.44082,4.38025,5.07395,2.4703666666666666,2.5806,1.5175116666666666,2.24987,2.185145,1.5372325,3.4255,3.5583333333333336,3.353066666666667,3.06666,2.8558299999999996,1.3994166666666665,2.22549,0.4657509090909091,3.0443233333333333,1.4479857142857142,1.877335,3.1140899999999996,2.52961,2.48625,0.96553625,2.3970625,2.331835,2.98989,3.4115,5.55395,3.501645,3.01768,2.1212933333333335,3.314615,3.80453,2.423135,2.93207,1.854065,3.737665,2.73485,3.789945,1.32418,0.605912,2.3478,3.2193,3.042875,3.9124,4.87732,8.77326,3.2777933333333333,2.3604333333333334,1.96162,1.8992239999999998,1.8992239999999998,2.63718,2.5405266666666666,5.36055,4.72859,3.652715,4.584195,4.574915,4.493015,3.443415833333333,4.1068,8.03309,2.55595,0.4816,2.9229633333333336,1.30525,1.0198528571428571,2.50141,0.8076510000000001,2.2073175,4.950665,5.4816,5.97249,0.95294,7.19694,2.02128,1.5627266666666666,2.920583333333333,4.511295,3.0713233333333334,2.511925,3.945815,3.147536666666667,4.090833333333333,3.028966666666667,2.8881566666666667,2.8675466666666662,6.891109999999999,2.42369,3.99776,3.741503333333333,3.5945116666666665,1.3838366666666666,1.1908975,4.20872,2.7944666666666667,3.18359,6.0538875,2.63487,2.17699,2.493425,3.284185,3.686533333333333,2.4858433333333334,4.444748333333333,2.9995333333333334,5.2014,2.4370068333333332,1.848325,4.82911,5.4692,4.31379,4.49816,1.5592833333333334,2.3750175,1.95984,3.18849,1.46323,0.8609733333333334,2.6556258333333336,1.9759175,2.06812,4.208085,0.7388150000000001,6.1137225,1.6409525,0.7391000000000001,3.7293000000000003,4.392365,0.8170071428571429,3.0526025,2.931830625,0.8564416666666667,4.895275,0.18970571428571428,0.18970571428571428,0.18970571428571428,0.18970571428571428,0.18970571428571428,0.18970571428571428,1.906972,3.999965,1.906972,1.906972,1.82733,0.18970571428571428,0.18970571428571428,3.4379333333333335,2.847213333333333,3.946025,3.29761,2.237395,3.43412,1.5771714285714287,1.7733160000000001,3.6067004999999996,1.6024360000000002,3.2021866666666665,2.641541777777778,5.975746666666667,4.578265,4.456395,6.0469,4.39351,5.0368,4.69933,4.402345,7.254776249999999,3.6439,3.5521666666666665,2.9344133333333335,5.054456666666667,2.6211066666666665,2.0133675,1.8633666666666666,4.764945,5.1839,5.02045,5.42405,5.58415,4.66292,4.969505,0.8167945454545454,0.7327428571428571,0.7327428571428571,4.85029,2.3414466666666667,3.74494,1.0122128571428572,5.17215,1.5336714285714286,2.3454333333333333,2.62224,4.551633333333333,4.551633333333333,6.8752,5.17455,1.497895,11.697548333333334,3.3218866666666664,1.2154666666666667,5.1615,4.94576,3.5299,3.59125,2.66894,4.3448,0.7426999999999999,3.3622333333333336,3.0862700000000003,3.6552333333333333,3.1691833333333332,1.4740433333333334,1.3984866666666667,4.9333141666666664,3.09891,3.0088000000000004,3.4749,5.165574166666667,3.350128333333333,0.764867,2.05974,3.393133333333333,2.4505999999999997,3.6123,3.4321,3.3038566666666664,3.7105,3.157016666666667,2.36931,0.9161533333333334,3.012893333333333,2.4948833333333336,3.762935,3.49941,4.198105,2.6416999999999997,3.30851,2.944475,1.587122,1.8788666666666665,2.5514035714285717,3.6801333333333335,1.85012,3.2032666666666665,1.7289666666666665,3.9098333333333333,5.040261666666667,4.890208666666666,2.3796475,2.6415,2.725775,2.308695,1.653,2.517,3.0693714285714284,2.4198575,3.5519,2.81665,3.63626,3.2885,1.2377333333333334,1.2727175,1.73435,2.2267075,3.13583,3.61,4.915485,7.468584999999999,4.074075,4.973445,4.62605,15.876300666666666,0.490695,10.87412,1.0469033333333333,3.18806,2.7325700000000004,2.0155533333333335,3.00136,1.466768,1.4628619999999999,2.752473333333333,1.282814,2.6896953333333333,2.3193566666666667,3.239243333333333,2.6159233333333334,2.7602100000000003,1.4575533333333333,0.8045650000000001,3.1805333333333334,2.3921366666666666,2.91635,1.0710477777777778,3.5901666666666667,0.7561516666666667,0.3590015384615385,2.2134766666666668,4.35072,4.914645,4.79094,0.8933854545454545,4.003315,4.44763,1.0869025,2.5209,5.747411666666666,3.026605,3.73499,3.747745,3.828005,1.9016375,4.02042,2.7410366666666666,3.40377,3.39647,2.66584,2.594535,3.76479,2.96847,3.62581,3.2255,3.19316,4.967175,1.3015433333333333,4.53433,2.25695,4.271175,5.20497,2.0072975,3.0661066666666668,3.0771466666666663,5.736301666666666,2.522553333333333,3.292925,5.9696,3.7946333333333335,4.533505,1.8128566666666668,2.6104,4.985275,3.4629333333333334,4.64605,3.4676333333333336,3.3866666666666667,3.1721299999999997,3.9527666666666668,3.2402833333333336,2.6993566666666666,2.9485333333333332,0.44298777777777776,2.43239,2.15821,4.78988,4.65408,3.12318,2.8644366666666667,3.3769666666666667,8.730179999999999,3.501695,3.77573,3.0101,3.790965,3.08732,4.119786666666667,2.7532533333333333,2.31359,2.7732266666666665,6.12845,4.718575,1.9939066666666667,3.05433,2.890415,2.632093333333333,4.834778666666667,1.691076,6.259869999999999,4.2106,4.91065,4.55523,5.7736,3.54061,6.532731666666667,4.7441,4.033775,0.6559778571428572,2.350335,1.446285,2.9466,3.7341299999999995,3.98878,4.053585,5.3501,2.630063333333333,4.75351,3.3280100000000004,3.669966666666667,3.1512499999999997,4.852275,4.71265,4.96526,2.8775666666666666,5.921854999999999,4.368295,1.46031,5.7765,3.329585,3.72473,2.09285,2.2019333333333333,4.89653,1.2451128571428571,2.6312166666666665,2.011325,3.86342,4.579095,2.58454,3.3762333333333334,3.025688666666667,2.8977066666666667,4.213,1.305984,2.2445,2.2624833333333334,2.8194533333333336,2.4088266666666667,2.6698299999999997,2.6244833333333335,3.98893,2.8485833333333335,2.7109199999999998,4.013005,2.476165,4.20574,3.63507,1.329545303030303,1.329545303030303,4.639415,2.78378,1.7642375,1.3583525,2.3057375,2.2452725,1.0643340000000001,1.4066133333333333,0.6843250000000001,1.5937066666666666,1.4767599999999999,2.71973,2.4531133333333335,1.7633466666666668,1.8585366666666667,2.2941766666666665,1.9661799999999998,1.6556233333333334,1.7758099999999999,2.2620075,3.869,2.696555,3.12689,2.79855,5.74685,2.9483,4.036605,3.9161574999999997,2.15607,3.960945,3.10533,1.935685,3.405305,2.31992,2.688705,3.806815,2.0846475,4.687985,3.127445,3.979775,3.5734999999999997,0.8859344444444445,4.2571,3.68033,3.281545,3.901115,3.05532,4.909525,4.844465,5.24020375,8.8599625,3.88047,4.503215,3.116843333333333,3.844635,4.09545,2.525355,2.99223,4.54253,2.32694,5.94735,1.7466439999999999,2.56785,8.825281666666665,3.03402,4.153178,1.3205671428571428,4.6064,4.661445,3.453,4.737775,5.10595,6.703530000000001,17.229690119047618,0.6133941176470588,1.0876233333333334,3.26078,3.88665,3.371295,2.0742225,3.42361,4.05461,4.81721,3.046,5.00365,1.7010500000000002,1.7010500000000002,5.28315,0.7677154545454545,1.83696,3.03835,3.88147,0.37602076923076927,1.8307866666666666,4.21977925,1.1888216666666667,2.9349666666666665,2.6187,3.11225,7.44067,2.4242833333333333,3.2350266666666667,1.9460766666666667,2.174,4.13704,3.21414,3.063685,6.803544333333333,1.773375,2.979775,4.57729,6.78984,1.8276166666666667,2.33955,2.5471366666666664,1.30288,2.54807,1.79011,3.943235,3.51527,1.4627175,1.960041,1.960041,2.9179999999999997,5.79015,4.08173,3.57334,4.480675,5.4,2.92937,3.490795,4.096435,3.519795,4.36257,3.293585,4.33412,0.9266400000000001,0.346848125,5.3308,3.874975,2.44023,8.33344,1.5454066666666666,4.721233333333333,4.067025,0.3753125,1.9650100000000001,1.29203,1.9228533333333333,1.9429333333333334,5.425059,2.90027,3.10113,4.8617375,4.902025,4.782175,0.5984284615384615,1.97693,0.5921160000000001,5.656271666666667,1.5225659999999999,4.95397,2.21017,3.20155125,3.10465,4.282925,4.744725,5.14385,0.8636145454545455,3.226625,4.25573,2.0386625,1.8840475,3.55166,3.35736,3.596515,3.70232875,5.329052380952381,4.45713,5.61885,2.7185666666666664,0.8950988888888889,3.5322333333333336,3.837395,0.6477784615384615,4.05893,4.26964,3.95385,3.318995,2.6227266666666664,5.11655,3.36169,3.6243,2.14438,3.86041,1.858496,4.896865,3.76925,0.7566769230769231,4.5098,4.008845,3.11343,4.54278,4.24795,2.750155,3.746695,0.6509280000000001,3.13125,3.941247777777778,4.57147,3.501,2.517125,3.5404666666666667,2.517125,4.045885,2.90367,3.345966666666667,1.6610816666666668,3.297523333333333,2.00784,4.47244,2.831303333333333,5.419656666666667,3.4374000000000002,3.0738,3.1758900000000003,2.3451667857142855,2.3451667857142855,2.3451667857142855,2.724266666666667,1.1966416666666666,4.558945,2.3208100000000003,1.6209466666666668,3.8384666666666667,2.71062,3.1094633333333337,4.092455,4.950245,3.99641,2.065895,1.405158,3.942045,1.8536359999999998,2.44235,2.93022,3.39302,2.1098675,3.927095,2.498185,1.761046,4.992815,4.056415,4.297985,3.600435,0.726261111111111,2.3535633333333332,4.743425,7.383255,4.40949,2.998225,2.70718,3.35501,3.565475,2.064315,2.3094,5.21265,2.3571475,4.417165,3.69079,4.479835,8.980483333333332,4.04396,4.240105,3.510855,4.99927,4.165745,3.5257875,3.5257875,3.81795,3.93339,4.3887,3.853265,4.280445,4.337875,3.90301,1.14533125,4.156315,4.40415,5.3712,7.536315,5.163,3.9125560000000004,2.0106800000000002,1.6428783333333332,2.52461375,4.627025,3.97291,4.66595,2.76111,4.562865,5.11685,4.845535,4.94921,2.98722,4.364755,4.430545,5.4057,5.0991,3.83759,7.23635,4.45416,2.2161500000000003,5.1115,3.910865,4.20647,4.18739,4.76268,0.7678718181818183,4.442065,4.66914,1.3199514285714287,1.5909739999999999,5.12425,5.16135,9.106028,5.9323,4.98144,6.2586,2.85275,2.8269300000000004,5.0591,1.8911975,1.8911975,2.49553,1.5704166666666666,2.9065166666666666,3.6559000000000004,1.8783325,4.284644545454546,1.38967,2.141085,6.60327,3.307495,3.43105,2.72545,3.872305,4.480055,3.058253333333333,1.1468444444444446,3.85783,2.9694233333333333,3.87175,4.31369,3.6637883333333336,6.1097,6.27465,5.59415,5.0565,4.953085,6.60525,4.74843,3.132035,3.830065,1.87673,1.87673,3.701815,4.376165,2.2881733333333334,2.65965,2.3636807575757577,3.0857833333333335,1.7133,1.7133,4.541245,3.458525,2.354365,3.499125,2.762845,1.901775,1.1556975,1.2272222222222222,2.728375,0.4972031578947368,0.9063155555555557,2.723465,4.066385,0.44371000000000005,4.03933,1.9360779999999997,5.46055,3.371255,7.254127499999999,4.39194,5.275036666666667,5.0158,4.850415,4.059205,2.19387,1.9967359999999998,4.11026,3.002905,3.63035,1.2073766666666665,4.50346,4.761825,2.549815,4.75697,3.46726,4.489175,4.09459,4.02736,3.862785,3.51088,3.29047,4.306605,1.0623757142857142,2.51972,2.307685,2.36628,4.191935,7.57761,0.8746079999999999,1.6100766666666668,1.6100766666666668,1.969418,3.898375,2.67104,2.95108,6.0174925,2.778833333333333,1.1989175,1.1989175,1.1989175,2.70251,3.4584585,4.47367,3.09282,3.98474,3.227835,3.56983,2.81072,3.1157666666666666,3.51828,4.23128875,2.4728075,1.0643340000000001,3.08081,2.4728075,3.42142,1.53936,1.91303,2.2470575,5.50823,2.76634,6.11329,5.50823,3.34695,1.6312233333333332,1.6312233333333332,2.336115,5.73104,1.6312233333333332,2.23786,5.66999,2.205295,2.49313,4.73673,3.34471,4.0801,1.7647599999999999,3.369165,4.30014,1.9853066666666666,2.229475,3.74012,1.7647599999999999,2.620965,1.872535,5.69088,2.506485,1.02227,2.456045,3.15287,3.2410213333333333,1.874975,2.095098,3.70024,1.8006313333333335,1.645,3.073675,2.232735,3.16811,3.58587,1.8545466666666668,2.916575,2.463805,5.98012,2.18144,3.468215,3.37046,3.37046,8.746649999999999,1.00422,2.953265,2.570965,3.165065,2.272005,1.2442233333333335,1.2442233333333335,3.17944,2.176005,6.2746200000000005,2.19113,3.569305,3.24709,7.54449,2.3846,2.405745,5.51709,5.51709,2.384255,1.4513275,1.18673,1.18673,1.4513275,2.25347,1.29308,1.1795033333333333,1.5801566666666667,1.7755966666666667,3.69381,1.577545,3.06499,2.66836,2.913595,2.665715,2.780235,2.377645,3.3116416666666666,3.3116416666666666,6.05401,2.310775,2.85778,2.463905,3.320475,2.620025,2.91639,2.293415,5.09735,1.83389,1.3522103333333333,1.315922,2.0921203333333334,5.25036,3.7880736666666666,3.212061666666667,3.18747,1.85054,1.85054,1.85054,3.93805,2.543485,1.1795033333333333,2.932395,3.452845,1.306515,5.2453449999999995,3.1490650000000002,6.09249,3.57294,1.826645,3.218535,3.1333633333333335,2.156455,3.408885,4.25112,3.39499,1.57888,2.3635,3.048885,2.94743,4.73546,1.979625,3.0372,2.65328,5.17609,4.25575,2.10171,2.564575,4.89216,4.86053,5.25848,5.57068,0.94673,0.94673,2.38195,2.38195,0.67567,4.63505,3.09201,5.12443,3.98781,4.75687,2.18894,4.022736666666667,4.022736666666667,1.936945,3.19611,3.4293,1.170306,5.14596,3.21633,3.273015,2.67293,4.50888,2.33545,1.918755,3.18122,2.820325,3.02643,5.14527,2.69218,1.63104,3.68072,5.77497,5.10012,4.40407,2.53884,3.65332,2.25951,5.15416,2.68622,3.35291,2.37262,6.69409,4.28596,2.347,2.54295,2.390885,4.74508,2.356495,2.654215,2.72192,6.97555,4.61598,3.33633,2.153015,2.301215,5.97776,3.03137,3.04624,6.57971,3.06388,2.809965,2.55025,2.952545,1.9076266666666666,1.806495,1.3579133333333333,1.63819,1.85721,1.9865966666666666,1.5249,1.8578766666666666,1.76657,1.9076266666666666,3.80933,4.59597,2.02452,1.6360225,1.6360225,3.4918933333333335,3.4918933333333335,2.9404833333333333,2.9404833333333333,2.771415,1.734035,1.72772,4.02658,2.06278,2.06278,2.4016625,2.4016625,2.98984,1.94089,4.39033,2.10848,3.077865,1.93768,1.93768,1.43597,4.06246,6.14614,1.53936,4.5476,1.8545466666666668,1.879185,4.27413,2.97569,1.77404,2.53325,6.51353,2.026905,5.70921,2.99754,3.09024,3.05668,2.612475,6.5729,2.9325,1.998375,2.6671703846153845,2.721505,4.75469,3.518195,1.501824,1.501824,3.70044,5.04211,4.58238,5.3088,2.846425,2.70245,1.804135,3.015965,1.52828,2.685915,1.77725,1.003972,1.003972,1.003972,1.9477108333333335,4.908463333333334,1.9477108333333335,2.000395,3.4513100000000003,1.532105,2.02046,4.848,3.4805,5.38571,1.6086766666666668,4.41241,1.6086766666666668,1.6086766666666668,1.953985,2.050965,1.946485,5.42646,1.946485,2.29474,3.36669,1.990405,1.73061,2.68725,3.0793,3.8003991666666668,3.3266066666666667,3.92121,1.3988016666666667,4.31033,0.7545154545454547,4.794215,4.58604,2.5617175,2.5617175,0.7234045454545455,3.8941,2.9395066666666665,5.96475,4.945255,4.038435,4.820095,4.4508,3.995815,4.9325,4.468965,4.352685,3.48795,3.89552,4.810795,5.2715,3.298905,3.50647,3.983385,2.5550266666666666,1.3712,4.188615,4.084025,3.786475,1.5723142857142858,3.593995,4.2861,6.20775,1.127,4.826475,4.3355,2.1028,1.95418,3.199955,3.56145,1.778355,1.501824,3.728885,4.11644,2.54291,4.46573,2.99465,1.11615,2.6490466666666665,1.2953499999999998,3.04004,1.8374300000000001,3.2040866666666665,1.8324,2.64265,4.398675,3.824935,4.326415,3.265,2.275425,4.83426,4.28391,3.244025,4.85072,4.061715,2.7490133333333335,6.0384,4.500565,3.0598599999999996,2.60488,3.141215,2.96956,3.02197,2.6553733333333334,4.494065,4.11568,3.746595,2.4741500000000003,2.55064,2.3614966666666666,3.0197000000000003,2.4632833333333335,2.32313,2.699586666666667,2.01812,1.53857,3.030012666666667,1.32353,2.1208025,1.8095025,2.474405,1.543165,1.99681,4.29103,4.499225,1.97219,4.10464,4.453945,6.367196666666667,2.23123,1.551242,6.7414,3.307185,4.70686,4.84296,4.628035,1.896345,3.452535,2.54655,3.214885,4.390945,0.7069424999999999,4.03551,1.9302266666666668,0.8505136363636364,4.903595,4.35874,3.84622,1.9142175,4.717065,4.791265,2.9436633333333333,3.491766666666667,2.4624866666666665,2.0346533333333334,0.564611,3.107946666666667,3.032125,4.93297,2.524675,1.98994,4.442745,0.9824125,1.8601,1.8601,2.7528,1.8601,4.149505,2.721915,4.705965,4.2739,5.7997,12.838504166666667,3.2808166666666665,5.16725,2.747025,4.745385,3.15728,6.609195,3.0186166666666665,4.47598,4.872915,3.9258,1.3677366666666666,4.64294,2.967033333333333,2.7068100000000004,1.0430255555555557,2.1304875,3.920215,7.74082,4.66798,2.64369,4.415335,3.1768666666666667,4.410495,4.67426,4.507425,3.02924,2.7985366666666667,4.306995,5.8654,2.495365,4.71998,2.0943325,2.0943325,3.17677,4.67935,1.08820625,4.135314,2.3283575,3.88567,2.5452933333333334,2.4701733333333333,2.80048,2.229206666666667,0.6660057142857143,3.41961,2.6346066666666665,5.09425,4.27647,0.2405321875,5.5253,4.70319,4.90435,6.939451666666667,3.4489666666666667,2.91165,2.3229233333333332,3.6023,3.6203000000000003,1.4134166666666665,2.9271133333333332,2.7521966666666664,1.4349550000000002,3.516633333333333,3.3017733333333332,3.0074799999999997,3.6334666666666666,1.3207127777777778,4.32111,2.220845,5.17,4.52809,4.01049,1.6198733333333333,2.5442666666666667,1.1962025,1.732935,1.1962025,4.74787,3.5039,1.6152819999999999,2.40798,3.814655,3.733055,2.825475,3.732715,0.355906,1.5778308333333333,4.10358,4.12899,5.5888,2.097345,2.8584866666666664,3.1945366666666666,2.627963333333333,3.06467,3.179155,4.605345,2.546775,2.24466,2.9617566666666666,2.6255533333333334,2.75953,4.23165,2.050985,4.701645,3.597939166666667,5.8873,7.646025,0.8060222222222222,0.8077289999999999,3.914155,7.141299999999999,1.884442,3.33949,1.291505,1.291505,3.451625,0.45074111111111115,4.07594,4.68616,2.658685,4.603205,3.43121,2.743525,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,0.23462233333333332,2.279445,3.0897,4.326156666666667,3.242716666666667,4.5363675,6.444415416666667,3.08149,2.2861333333333334,0.9337766666666667,3.32183,0.67147375,5.364718333333333,3.0785850000000003,3.255345,0.67147375,2.970005,2.74257,1.1845025,4.15034875,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,0.1504128888888889,4.520095,1.6638925,4.38874,4.801135,1.8889479999999998,4.648335,4.406785,5.2075,5.013574166666666,3.6594017857142855,3.20542,4.617445,2.282825,6.23629,4.38932,0.7370714285714286,1.4616142857142855,1.41591,3.6620000000000004,3.6620000000000004,3.1903916666666667,3.838545,4.920845,3.804745,4.29992,3.7284666666666664,2.0733966666666666,0.47869,4.061665,3.599815,2.98307,3.936625,3.293555,3.0833612500000003,4.39075,4.019855,6.8307175,4.169745,5.0957,5.3139,4.47715,1.3402271428571428,3.123695,5.42587,35.15511934379509,1.2869133333333334,4.288435,4.098235,4.43238,4.080195,4.69808,5.03165,0.4177766666666667,4.98396,4.347765,2.095185,1.829455,3.57255,1.6659275,2.35451,2.34362,1.80729,2.86303,2.5267133333333334,3.323875,3.309535,0.6372776923076924,3.6791,3.65172,0.39675894736842104,2.62891,3.22275,2.527765,3.72851,1.77934,4.60471,3.730355,3.019115,4.574325,3.436525,4.514375,3.092155,4.06932,2.0902125,5.42587,3.668615,3.937675,3.02369,1.838804,4.811425,3.53052,6.8049333333333335,3.190135,4.507485,6.217717500000001,5.045301,2.24107,4.974535,6.961152500000001,7.979214000000001,2.546683333333333,2.490045,4.541345,5.722553333333333,4.249925,3.49962,5.440833333333333,2.362805,2.153015,2.23624,60.88645245915032,5.6383,4.27394,2.518625,1.06758,2.8509233333333337,3.09705,3.4278333333333335,0.9504744444444445,4.64911,0.746028888888889,7.692251785714285,1.8536359999999998,3.2483500000000003,1.757368,2.69662,2.58161,2.862553333333333,2.443756666666667,2.2010466666666666,3.2118599999999997,1.51642,5.627685833333334,4.313933333333334,1.3137525,2.6769366666666667,1.3592633333333335,1.470525,7.1928,5.8111,3.12291,5.76585,5.139695,1.475842857142857,3.6305666666666667,3.77707,1.6022825,4.9654,4.314935,3.84818,2.09432,3.0880783333333333,3.7991333333333333,3.86191,5.87195,4.254975,4.40248,2.284445,3.739525,4.460466666666666,3.2098566666666666,1.5948280000000001,4.37166,3.2858066666666663,4.07682,4.842955,3.8329,3.813325,4.657715,4.321375,4.26891,4.40094,4.487285,3.144933333333333,3.663745,4.4307,3.100505,3.970275,3.404275,1.6317650000000001,1.6317650000000001,4.404875,4.709015,5.3368,3.840505,4.70831,3.4306,2.898835,4.44658,5.42135,0.6970009090909092,5.2046,7.171595,5.6108,5.8112,1.0486122222222223,3.21545,0.92455,0.92455,0.92455,3.716665,3.5453666666666668,2.688023333333333,3.2228366666666663,0.9117660000000001,4.851705,5.04855,2.824455,1.61217,2.082505,3.992875,3.957695,3.537405,3.3013820000000003,6.2753,4.069195,2.705166666666667,4.69078,6.9017,2.133735,4.170895,3.60636,3.10313,4.617285,4.75867,4.77951,5.75605,4.02149,3.5447244444444443,2.0081233333333333,2.0081233333333333,0.7052109090909091,8.679478,2.11244,6.33965,5.6752,4.69653,4.848865,3.739745,3.0437866666666666,4.61241,7.58233,5.649816666666667,2.03877,4.486405,1.09166,3.703655,2.00544,0.942728888888889,1.1905414285714286,3.06924,3.200903333333333,2.78297,1.2336414285714288,2.7471300000000003,3.1836466666666667,0.9578433333333334,3.0577566666666667,3.321616666666667,1.631146,1.786118,3.07882,3.0110333333333332,3.12175,2.474553333333333,1.9041080000000001,5.7312,4.55693,4.225705,4.338615,4.92524,3.130725,4.778455,6.0861,5.14225,4.32016,4.19852,11.421848333333333,7.96266,2.8114166666666667,3.6439,2.1214,3.69243,3.030945,4.594775,1.2499766666666667,4.13529,3.68358,1.3630983333333333,3.61801,3.1658866666666667,4.387385,4.76126,3.72243,6.3731,7.17535,4.01244,1.6256616666666668,1.6256616666666668,1.6256616666666668,4.740675,1.106,1.4170875,0.4949255555555555,4.397134583333333,3.0021133333333334,3.88676,0.94683,1.11158625,3.24132,4.182465,4.08649,16.822662083333334,4.4966349999999995,4.53606,6.4778625,2.8354866666666667,3.55814,3.10688,0.9569733333333333,1.4869675,4.458505,3.890685,4.65884,4.17413,4.610915,4.086425,2.7279737777777777,3.66035,5.41445,0.61154,4.821595,2.23378,4.135915,5.80495,3.5732,2.4997266666666667,3.91384,1.7002933333333334,4.337815,6.0403,3.0277366666666663,2.840225,4.27463,4.64917,4.96638,3.9571,3.958785,4.122595,5.028,4.772515,4.84484,4.987355,3.913905,1.1743842857142857,2.00754,7.173715333333334,5.6179,4.770545,5.20475,2.539675,2.7775866666666666,2.626653333333333,5.486879999999999,1.8542825,2.019145,3.20849,3.23123,3.6140666666666665,4.48337,3.961355,4.840235,1.3626175,4.607665,0.8273816666666667,3.803465,3.55011,1.5307750000000002,4.524665,1.04244,4.799725,5.58,5.0607,4.398485,3.660541666666667,3.907695,2.8156733333333333,5.6058,5.43795,3.0075755,3.92814,3.204615,2.437905,1.923375,2.61782,3.89747,5.05895,1.06767125,4.3225375,1.2730675,3.269775,1.5821433333333335,1.06767125,0.2467424324324324,4.2575,2.9167,2.3954145833333333,1.8414933333333332,2.73719,1.05228,3.67814,3.51787,4.56392,2.45413,6.2889,7.0163275,2.877776666666667,3.308863333333333,2.62913,0.8472799999999999,2.2170366666666665,5.87145,4.413365,5.1283,4.815975,2.210713333333333,1.4885366666666666,3.8066449999999996,1.592455,2.3582025,1.7242525,1.7762975,1.68799,1.8322675,2.3591175,1.8715975,1.6485875,1.1854099999999999,1.7701625,1.8427925,2.1219275,2.1059775,2.28275,0.5418213333333333,1.8391639999999998,2.4338333333333333,3.3076133333333337,1.8957325,1.8025933333333333,1.58405,4.65147,2.16783,2.77304,2.928725,4.948965,5.0558,2.8231566666666663,4.569495,1.8085300735294119,4.63106375,24.8103425,4.792036666666666,5.32015,4.830795,2.993956666666667,4.13089,4.45293,2.687435,4.634425,3.0624933333333337,0.75919125,3.406495,4.668745,4.017055,4.04263,1.7906833333333332,2.3166800000000003,2.285693333333333,1.94824,1.4593428571428573,3.2144733333333337,5.8929,4.14408,3.151235,4.03017,5.03475,4.48487,5.2217,1.23720875,3.34659,4.21488,4.52521,1.725582,2.86502,1.7516725000000002,1.7516725000000002,3.53916,4.824645,2.9284833333333338,3.2046200000000002,4.13135,3.73657,6.5593275,4.146675,2.4462,1.4869675,3.19661,4.211575,3.1334233333333334,2.416369841269841,2.416369841269841,3.239933333333333,4.537985,4.198915,5.603247777777778,3.251155,3.436716888888889,0.6042655555555556,0.6042655555555556,0.6042655555555556,3.4822,3.69388,4.060946666666666,5.4136,2.180905,5.4366,4.95668,4.707055,3.81243,5.0452,3.13647,1.5527142857142857,4.8502,5.3273,0.47380357142857144,4.246366666666667,4.8628,1.7276166666666668,5.67195,5.73315,4.39671,4.50096,3.689265,2.859215,4.408605,1.6405,4.174185,1.7315333333333334,3.971215,5.9672,1.38605,3.32633,6.772215,4.44545,3.830833333333333,2.6189,4.47187,5.8408,3.6485,7.111443333333333,4.5408,2.137443333333333,3.1099200000000002,2.8297566666666665,3.17529,3.1568633333333334,1.76943,5.0923,0.5702316666666667,2.012455,2.012455,3.225315,4.974905,2.298545,3.108735,4.98117,4.390825,4.41426,1.2875433333333333,5.507422982142858,4.505235,5.33575,3.676265,4.31617,3.85774,0.45843,2.567312857142857,1.0741475,0.45843,4.16659,0.8315088888888889,4.325365,4.106855,6.556376,2.064626666666667,1.0476125,1.085816,2.15703,2.94618,1.56656,2.45517,3.310705,3.78846,1.92931,2.330443333333333,4.53321,3.2206437500000002,3.945965,5.67275,3.40035,4.82598,6.724818333333333,4.51258,3.44207,4.518665,3.65277,5.08035,5.29455,6.27234,5.40585,2.497386666666667,0.9858511111111111,4.26057,4.15897,4.093325,5.0425,4.63657,5.1268,2.9017633333333333,2.6001533333333335,3.170503333333333,2.69679,2.364266666666667,3.021103333333333,3.2053700000000003,2.6068366666666667,4.198735,4.8004,4.43772,5.41965,2.7138566666666666,3.3439333333333336,2.859725,0.7205357142857143,4.508195,3.791455,4.6565,3.0466200000000003,5.792466666666667,3.65826,4.58072,3.85259,0.6278515384615384,0.5430971428571428,4.19042,2.9424125,3.651755,4.818225,4.352135,1.787116,5.1463,4.286585,2.830223333333333,2.688916666666667,2.3950625,2.2050945833333335,3.5681999999999996,3.406166666666667,3.114986666666667,3.056703333333333,3.4684333333333335,2.70085,3.1475299999999997,4.061166666666667,4.340014999999999,0.58013125,0.58013125,0.58013125,3.5794895833333333,3.8340333333333336,3.589166666666667,2.8500933333333336,2.76304,1.14533125,3.0668633333333335,3.1758333333333333,1.9583025,2.3872766666666667,2.404246666666667,0.9969555555555556,3.0712366666666666,4.70873,9.69006825,1.54619375,0.6161920000000001,3.44363,0.6161920000000001,0.6161920000000001,0.6161920000000001,0.6161920000000001,2.12657,4.144381,4.028315,5.26505,6.21055,2.826093333333333,3.08243,3.28351625,3.76284,5.4257,1.48313,2.5714266666666665,3.2543699999999998,2.6135333333333333,3.2796833333333333,4.27144,2.2003666666666666,3.575505,1.2253555555555555,4.72581,5.06445,4.222785,0.9111625,0.578246,0.578246,0.9476387391304347,1.8588012391304347,0.9476387391304347,0.9476387391304347,0.3633617391304348,0.3633617391304348,0.9476387391304347,1.4318366666666666,2.5904766666666665,2.97686,3.17694,2.49796,2.66396,3.1252633333333333,2.6745900000000002,4.322895,3.60312,1.802495,2.2052566666666666,1.6756725,0.18087820508100147,0.18087820508100147,0.18087820508100147,0.18087820508100147,2.3663433333333335,2.4825933333333334,0.9050779999999999,5.30745,0.7856563636363636,1.7160160000000002,4.6369050000000005,4.998975,3.729505,3.92132,4.25321,3.954705,1.8475566666666667,1.107695,3.658105,4.40787,6.0148,2.269285,1.47858,1.8639700000000001,3.8970000000000002,1.4933933333333334,2.6625866666666664,2.9978933333333333,3.0338999999999996,4.89718,4.340995,3.114875,4.855965,2.7250099999999997,4.34889,5.30685,4.01562,4.777945,4.828735,5.147903333333334,4.675588333333333,3.0974774285714286,4.90756,4.51946,5.7461,4.37047,4.681615,2.32637,3.197105,4.168545,5.17505,4.25669,3.70392,3.88565,3.686845,3.96717,2.4691633333333334,5.11525,3.4823,7.4886175,6.00155,5.9896,5.03435,1.5021714285714285,1.03634,0.65453,1.8089479999999998,4.91498,4.98224,3.99052,1.698312,4.079185,2.98829,5.07975,5.31685,6.1834229999999994,4.210835,3.062325,1.7864619999999998,5.29041,3.928935,3.214895,1.7154975,0.9651175,3.878355,3.469295,3.5323925,3.61794,2.09526,4.66127,1.61019,2.9190833333333335,2.54088,4.203435,5.62865,4.831425,2.222835,1.59283,5.3871,3.0017533333333333,8.83985,2.8122,4.83397,5.7804,4.42613,4.91997,3.634325,4.62393,2.24869,4.292,5.103541,2.3790025,4.233375,4.65792,7.465425,4.7914,3.2823333333333333,4.23287,3.80805,3.2206437500000002,3.4982,5.1372,5.5403,2.3571775,3.1389099999999996,3.3314133333333333,2.339225,3.95967,4.575905,5.69705,5.13,4.58249,4.830595,4.37558,5.59775,0.6179223076923077,3.1918699999999998,1.2373171428571428,31.8356660526872,2.116785,4.51285,2.94921,4.262535,1.807744,2.3909533333333335,3.4758191666666667,1.5518016666666665,1.5518016666666665,1.5518016666666665,1.5518016666666665,1.9240175,3.387945,0.5256511111111111,7.914603194444445,0.5256511111111111,4.433695,4.963965,2.3244925,5.31665,2.60305,3.793307333333333,2.5259966666666664,2.4442866666666667,2.6676133333333336,2.093643333333333,0.6245715384615385,2.6086966666666664,0.7236791666666668,3.27844,2.2556566666666664,2.35336,1.2148816666666666,2.35336,6.15055,7.846210000000001,4.857455,4.45509,5.52495,5.98835,7.57015,2.99229,1.5806425,1.5806425,2.3686133333333332,4.962585,3.8521,4.38201,6.278186666666667,4.41487,3.08226,4.18298,3.31894,3.46107,2.177925,1.013936,1.85707,4.761665,3.955085,5.242102222222222,2.0089,4.373315,1.511798,3.139815,1.47789,3.4747333333333335,3.2628799999999996,2.7975966666666667,3.3659,3.1340966666666668,4.924275,0.6807623076923076,3.475765,3.6631,2.6288966666666664,2.2667266666666666,4.25811,3.179586666666667,2.891783333333333,5.60485125,4.00719,5.09245,3.90033,3.56657,5.24425,5.0211,2.570256666666667,5.9632,2.3354523333333335,2.3756666666666666,3.1996533333333335,2.97104,3.3056366666666666,3.05538,1.90639,3.131412303030303,4.200965,3.6078725,2.4787666666666666,2.4787666666666666,2.44084,3.95183,4.04882,0.6306,3.240135,3.05575,8.12273,0.9222454545454546,4.361955,3.572685,5.31625,3.88561,4.02657,2.19351,3.98714,2.926555,6.27095,2.75652,1.0332825,4.025855,2.6311466666666665,4.44978,2.83423,3.52786,3.768405,4.30137,4.943916,3.295045,1.99771,5.35245,2.453673333333333,4.440485,4.53583,4.907245,4.5738,4.03243,2.73657,2.13523,3.0070599999999996,2.8070466666666665,2.804975,3.3097100000000004,2.8158104761904763,5.036063333333333,3.0705266666666664,2.5943466666666666,6.8544133333333335,5.235111249999999,4.1524225,3.0968933333333335,4.010366666666667,3.93071,3.521865,2.4682875,4.0732825,5.0129,4.73573,1.4995333333333332,4.68998,2.993316666666667,6.988925,4.673065,9.032031666666667,4.061645,3.77952,2.540665,3.896435,5.754804999999999,7.53541,3.92494,5.9192,4.139325,3.18213,3.787195,1.691076,4.578586,1.518355,4.127385,4.616055,3.4327,0.8779333333333333,9.731796666666666,1.2446666666666666,1.8400325,2.30286,1.83507,3.3014566666666667,1.3139583333333333,3.566585,3.339955,3.1235466666666665,4.309535,1.0634908333333333,4.520145,1.3757599999999999,2.5976908333333335,4.856115,5.2902,1.9227425,5.581921666666666,2.1260783333333335,8.01511,4.320015,2.71911,3.93837,3.243845,1.2770029166666665,7.43634,2.93502,3.099235,2.43975,3.9411,2.14174,3.375835,2.05155,3.90589,1.2975525,5.29425,4.38673,4.055015,0.8662750000000001,2.1177493333333333,3.817765,4.990675,5.307855,1.460736,1.460736,6.3293,4.667115,5.189,3.641945,3.325,8.729695,4.255485,5.64125,4.104635,2.54645,1.9696521433691756,0.366777,0.1976690322580645,0.5737601433691756,1.029115,0.6249290322580645,0.1976690322580645,1.3600395,0.3760911111111111,1.395892,1.9337996433691758,2.1157525,2.279895,2.09708,5.2639,6.844613333333333,5.1987,5.49185,4.894885,5.29325,1.1646966666666667,5.08175,4.284005,6.0642,5.5344,5.57305,5.3253,6.02965,5.7658,1.53153,1.6615857142857142,2.19036,6.216079,1.463254,5.82255,4.75501,7.161460833333333,5.3661,5.43155,4.75906,4.72128,2.518275,5.6356,5.83385,6.7029716666666666,5.14965,5.624180833333334,5.739,3.93163,4.312175,3.8699666666666666,1.01639,3.803933333333333,4.559475,1.27605,3.6900666666666666,4.820695,4.3751625,5.04155,2.3987725,3.5055,2.5559366666666667,4.70342,2.2267975,3.543505,1.2713966666666667,3.07185,3.803315,4.901245,5.60465,3.3921158333333334,0.6517366666666666,5.98255,1.0664625,3.507085,3.18179,3.550075,2.0159966666666667,3.74369,3.6064930769230767,3.7359333333333336,4.364865,15.739447761904762,5.535643333333334,2.551975,8.39959,1.5613425,3.581095,3.0850633333333337,2.7889133333333334,2.2602766666666665,0.24845826086956524,2.9753266666666662,5.446,1.81014,2.22193,3.5882,1.8727925,2.254586666666667,1.2910714285714284,3.70832,4.68308,4.687765,4.98103,0.49400000000000005,2.3619133333333333,4.389605,2.587455,4.0518,5.17025,4.356645,4.600965,0.55445,2.4470066666666668,2.4470066666666668,5.62305,4.593535,4.750105,2.639775,4.039733333333333,3.3437,5.15195,3.861555,5.630220555555555,4.795895,4.558595,5.1509,2.53075,2.0737200000000002,4.47367,4.21043,3.946945,3.707475,1.7627320000000002,4.6176,4.262865,3.66308,5.1555,3.92926,4.447965,0.648096,4.000865,0.7650433333333333,3.1876933333333333,3.192475,4.39906,19.080759047619047,4.171245,3.856525,3.1333633333333335,1.20455125,3.11632,2.46065,1.5536720000000002,2.48266,2.537605,5.29825,2.119423333333333,4.004855,4.64181,2.265335,4.782295,2.8170966666666666,4.41499,5.44005,5.6027,2.12136,1.986095,2.53442,5.38525,5.09845,1.1848555555555556,5.5307,3.942765,5.62935,4.795915,1.72394,4.556285,3.763115,3.629135,4.421705,4.192045,3.045716666666667,0.64477875,7.89232,1.535942,0.19212305555555556,0.19212305555555556,0.19212305555555556,4.90273,4.01687,2.4955266666666667,4.30088,3.28757,4.71482,4.386594285714286,4.222836666666667,8.988566666666667,4.23766,7.406158333333334,0.81296,0.90930375,2.54635,4.912045,4.377505,2.065446666666667,5.24125,5.21965,3.44467,4.41785,4.45911,2.48042,4.427315,4.9374020000000005,2.284196666666667,2.779733333333333,2.9392766666666668,2.731995,5.73455,3.82703,0.6700421428571428,3.966025,3.323665,4.22871,4.873226666666667,4.8779,3.114025,5.36195,3.534415,13.851629583333333,4.699495,6.654150833333333,2.7190499999999997,6.773835,4.852175,3.989245,2.10263,2.4499125,9.77435,2.17906,4.158966666666667,3.8744666666666667,3.7071,2.9359033333333335,2.9298466666666667,2.0881475,2.1611475,2.9071200000000004,1.87198,3.964566666666667,2.6819400000000004,2.6672833333333332,3.4677000000000002,3.4385,2.3486599999999997,2.3486599999999997,2.726573333333333,3.634066666666667,3.3422666666666667,2.7858733333333334,3.04757,3.9125,2.6790800000000004,2.797166666666667,3.5467,2.38663,2.2840175,3.848433333333333,2.911626666666667,1.64488,4.0874999999999995,2.6006933333333335,2.58099,2.900346666666667,2.4576116666666667,3.3891666666666667,5.853118333333333,2.4012166666666666,3.5474333333333337,1.8463933333333333,10.718797,1.9947100000000002,1.9723666666666666,1.9594460000000002,1.076438888888889,1.6344619999999999,4.869223333333333,2.656726,2.656726,1.632722,1.4617866666666668,3.376363333333333,4.16522,2.1399233333333334,1.5282116666666665,1.7363279999999999,4.433311333333333,3.363466666666667,4.204366666666666,8.43742,2.7504685714285713,2.37931,3.113830310559006,4.3549,2.2840175,3.3134566666666667,3.214366666666667,3.291446666666667,3.4698641666666665,0.8620775,3.3638719999999998,3.1684866666666665,2.7416633333333333,4.12822,3.2609999999999997,0.6645954545454545,1.8253942857142857,4.673015,2.6368155,3.22832,1.7372333333333334,1.7372333333333334,2.02837,3.7719699999999996,1.09708,2.1398,4.8299199999999995,4.8299199999999995,0.6518190476190476,6.178526000000001,3.59926,4.13102,5.1966,1.168537142857143,3.452366666666667,3.496033333333333,5.147265,6.591001666666667,2.7979866666666666,0.7279289999999999,2.9984,2.6095133333333336,3.054339333333333,2.5572933333333334,2.68909,3.07052,2.3600075,2.46237,0.83777,3.795545,4.696408,1.2775683333333332,1.5282,5.17245,2.28869,1.56866,4.419885,1.755436,3.7541,2.521275,3.3887666666666667,8.9935,4.276746666666667,4.893155,4.966785,2.466252,0.756463,1.77936,7.165846666666667,1.6632466666666668,4.17203,4.539385,3.729245,21.838074416666664,3.1026566666666664,2.1015133333333336,1.07965875,3.22368,1.4082933333333332,4.153178,5.25845,3.3841609999999998,3.3509333333333333,1.6933566666666666,1.3446683333333331,3.058196666666667,0.542525,3.27817,3.779033333333333,3.0793,2.6163689999999997,2.7119766666666667,2.6955500000000003,2.19415,2.9365733333333335,1.65611,3.4592666666666667,1.3672633333333335,3.81801,4.13033,3.0426633333333335,5.1822,3.312465,4.318535,5.0788,4.4339,3.0680133333333335,2.8639466666666666,2.6789799999999997,1.1552814285714288,1.1552814285714288,1.1552814285714288,2.2733375,3.14432,2.6363566666666665,2.5467733333333333,2.6891499999999997,1.8602825,4.50083,4.56355,3.5841,6.586779999999999,3.417225,2.3469375,1.8482225,1.2524666666666666,2.46657,3.985445,2.42972,2.5556933333333336,2.51327,2.55872,2.59921,2.8135433333333335,3.2285533333333336,2.881263333333333,2.75845,3.136863333333333,2.3010266666666666,2.13174,1.9391775,1.2731475,3.1260999999999997,3.061366666666667,1.9129925,3.784065,5.32205,3.081246666666667,2.5368242307692306,5.911568333333333,4.418225,4.7882,5.45605,4.530795,4.1407,6.3869675,1.27345,3.990865,2.621495,5.09905,5.47395,3.46607,4.307115,2.3440925,7.88353,2.234665,0.8788166666666667,8.86545,4.93403,5.895702976190476,4.7318,2.94408625,1.955975,5.2484,4.723825,4.61789,5.3279,2.516725,4.406255,4.619095,1.6756725,4.123275,2.685875,1.346985,5.01725,0.6426294117647059,4.224879166666667,3.953345,4.55448,3.22664,1.55673,3.47422,2.01384,1.41775,3.0221366666666665,3.3958333333333335,3.2264766666666667,6.988564743589744,1.6979275,6.6549958333333326,9.729185000000001,6.13531,4.056315,1.2642242857142858,3.2480499999999997,1.2642242857142858,2.7529833333333333,2.12526,0.2778676470588235,1.1122651470588236,0.2778676470588235,0.2778676470588235,0.2778676470588235,1.1122651470588236,1.1122651470588236,0.2778676470588235,0.8343975,5.4127,3.31674,3.134,3.292475,3.87439,3.454555,2.9518306666666665,1.580552,6.968543333333333,2.9951600000000003,4.171695,2.69215,0.9854727272727272,1.2817,4.588295,3.972575,1.0814877777777778,1.7732579999999998,0.747179090909091,3.2535964025974025,4.249935,5.34275,3.6012,5.30237,0.564263076923077,4.38438,3.66601,3.1217699999999997,2.7704533333333337,3.4507666666666665,2.4436233333333335,2.9190400000000003,2.6872733333333336,2.89471,3.58594,6.2692,4.93239,1.7444220000000001,4.575485,4.57009,3.80854,3.855665,3.376935,0.3414493333333333,4.92894,3.651185,3.486295,3.221152,4.502625,3.993835,1.900275,3.14817,3.76025,8.67491,4.99797,5.6838,4.210085,4.2035175,1.0608475,2.18535,2.12091,1.45242,1.82733,4.993605,5.39515,4.3746,4.471175,3.3013820000000003,2.49124,0.93498,3.989235,1.2187566666666667,1.0931433333333334,3.19322,3.77133,4.65737,1.23982,2.75243,8.563506666666667,3.132573333333333,3.2938066666666668,0.93072,4.016065,11.986983333333333,3.377795,3.961585,3.228315,3.377005,4.600085,5.1874,2.01546,4.129505,0.6083746153846155,4.746095,2.1772825,1.965705,1.965705,3.4553999999999996,4.53665,1.6740833333333331,4.766815,1.5664285714285715,4.239375,2.4875475,3.043226666666667,4.738095,3.50323,3.7136503333333333,2.5473,2.6138478333333337,2.6138478333333337,11.24624,0.810018,3.6736,3.4791333333333334,2.100945,1.9577,0.9644171428571429,1.3601225,1.2342814285714285,1.961365,4.640025,2.454825,4.445895,2.2278533333333335,4.346415,4.520745,1.6634816666666667,1.964735,1.0443816666666665,5.766030833333333,2.006015,2.26412,1.695738,1.787368,1.07965875,2.3771754166666668,3.560155,3.0036199999999997,2.9922299999999997,2.2843166666666668,2.6731766666666665,1.7455999999999998,3.022206666666667,2.7103066666666664,1.5796366666666666,2.043886666666667,3.13595,3.564833333333333,2.3957866666666665,1.13948,2.65888,2.447643333333333,3.3075799999999997,0.34202421052631576,0.3979533333333333,2.40476,2.3138666666666667,3.06231,3.075473333333333,2.66503,4.99214,6.1436,4.310485,4.673095,4.59234,3.96274,2.75183,3.753205,0.6614063636363636,0.0656934090909091,6.46815,0.0656934090909091,3.39576,3.154075,5.4269,3.380225,6.1648,5.14905,2.637023333333333,2.6012833333333334,1.540485,5.9776,5.5269,3.0526199999999997,5.2466,2.0403325,4.5883,2.118396739130435,3.06546,3.24582,4.555145,4.639983333333333,3.21633,2.11354,2.11354,4.04007,8.13353,4.1017,2.213156666666667,2.74873,4.364765,2.79073,4.912685,4.143715,1.0862966666666667,4.463825,2.76927,3.318906666666667,4.23149,1.11191,2.3411466666666665,3.78573,3.80568,4.83134,2.81089,3.218395,3.793165,3.810395,4.183485,5.30885,4.45932,3.2759075,3.62478,2.86828,2.911713333333333,2.7249033333333332,3.4091666666666662,4.405465,3.0608400000000002,5.158476666666666,4.960425,3.66472,5.04265,4.631265,3.980165,1.524896,1.30892,4.05589,3.179413333333333,1.6418933333333332,2.6900733333333338,3.17209,3.1070499999999996,3.8405144444444446,3.387366666666667,2.1861291666666665,12.795036805555556,2.0252933333333334,1.7699660000000002,4.425125,1.22977,3.28716,4.21259,4.7998,3.205525,1.1126666666666667,2.2947333333333333,2.45413,1.47855,5.6938,0.9566075,0.9566075,4.1332,2.0121733333333336,2.121026666666667,1.7086075,3.896675,4.04322,1.82541,2.734025,3.81953,3.0013433333333333,2.97045,1.985636,6.53965,5.91405,3.92969,0.7724384615384616,4.475715,3.56226,0.9407,5.2184,3.2974366666666666,8.420036666666666,4.5234,4.59915,3.495345,1.5107475,2.998985,5.21275,4.74099,3.78214,3.822265,4.348715,3.244445,3.4930333333333334,3.4930333333333334,4.729395,3.0912075000000003,4.99352,1.950385,5.420050833333333,5.484626666666667,1.7276166666666668,4.902575,1.04719,4.99182,4.02139,5.1686,4.77909,4.24806,2.60542,2.500425,4.57044,4.33614,4.963585,4.64307,1.8379175,1.38167,4.366115,2.0521766666666665,5.33705,3.07102,3.40061,7.343835,3.86376,5.1414,5.2311,4.3229,4.367735,8.44895,3.259295,3.081535,10.74175,3.611645,0.6292942857142857,2.1281724053724056,4.504485,0.6320033333333334,4.773425,4.17794,4.934015,4.600985,3.52492,4.0883,4.73194,4.829465,2.5202,0.7145,4.593055,4.78612,4.734435,4.45977,2.798273333333333,4.631625,3.53375,0.635168,3.571575,4.046675,2.354375,3.1167200000000004,3.934295,2.264225833333333,5.48115,5.0267,4.260384999999999,0.8902625,3.29754,5.63757,5.63757,8.86764,2.0067399999999997,0.81954625,0.81954625,24.785706666666666,2.610975,7.850918333333333,0.3753125,1.29203,3.06291,1.05082,3.556555,3.841775,2.251075,2.251075,4.756045,4.604375,3.410295,2.68796,2.68796,3.433325,3.78919,4.457735,3.0245166666666665,2.2493266666666667,2.4569433333333333,4.122195,2.04091,3.43774,3.0823966666666665,3.0022496428571426,3.0022496428571426,3.6089,0.87427,2.515563333333333,1.6838733333333333,3.245136666666667,2.78384,2.9759700000000002,2.6974433333333336,4.50693,2.28223,3.190023333333333,5.420219,1.434294,2.191535,3.078265,2.9292033333333336,3.93852,5.849980777777777,1.2475933333333333,3.6534,2.38893,4.95874,5.89659,1.550635,4.829486666666666,5.042914666666666,3.0737645714285713,4.6181,1.0444628571428571,1.725582,3.278935,3.6601490476190475,1.3458666666666668,2.512675,1.5857325,1.6744879999999998,2.055385,3.473802,5.085972,1.0289599999999999,1.523785714285714,2.963573333333333,12.47005,4.873773333333333,2.6901,1.1175457142857144,2.672284285714286,1.0373242857142857,3.26782,4.3529,4.63797,3.4027666666666665,5.29325,1.501555,3.7671666666666668,4.059385,2.86664,3.6678611111111112,2.739543333333333,0.9932311111111112,2.53822,2.5799233333333333,6.873348333333333,3.3487391428571427,2.5223066666666667,0.706328,4.721233333333333,3.5257666666666663,1.2446899999999999,5.726045833333334,2.1522125,2.3524266666666667,5.97365,1.3659777777777777,2.95874,1.0307454545454546,3.056623333333333,4.53122,2.8059066666666665,3.316603333333333,2.18247,2.6189733333333334,4.40622,4.75865,4.996795,1.571785,4.38556,3.63915,4.316343333333333,3.447542,2.4921233333333332,4.238263333333333,0.9641,2.7327347619047617,4.83177,2.69185,4.137763333333334,1.48425,2.77908,1.9271280000000002,1.9271280000000002,6.886003333333333,3.13116,5.538391666666667,3.544391666666667,1.8065033333333333,2.678315238095238,4.515991666666666,5.486533333333333,8.135761666666667,4.8776720000000005,2.6364585,2.2317,2.119915333333333,4.05701,3.665405,1.656222,2.2051975,2.3622057142857145,1.2119825,3.1332766666666667,18.967633333333332,3.427566666666667,3.064906666666667,2.9281333333333333,2.93891,2.7306733333333333,1.72761,3.09876,3.3310566666666666,2.6557566666666665,2.511553333333333,5.702005333333333,2.36414,4.313412857142858,2.706452857142857,2.318378857142857,1.56401,4.00255,2.157935,4.21666,4.77527,3.79693,3.0953625000000002,3.2323,2.58465,3.4189666666666665,3.143823333333333,3.7449,3.2971333333333335,0.8517036363636364,5.0476,2.46025,3.105536666666667,2.8845711111111108,2.132605,2.2728200000000003,2.2728200000000003,3.6268283333333335,2.1431283333333333,4.69466,4.406725,3.82033,4.474375,4.796565,4.770235,4.770235,4.086515,3.0623966666666664,5.16395,2.741655,1.588336,3.8615333333333335,4.466705,4.2956,2.654375,3.603065,5.8083,3.8190000000000004,6.168080083333333,2.67531,0.8225339999999999,0.8225339999999999,3.22789,4.552915,3.727775,3.3937340000000003,2.355933333333333,1.76989,2.1859866666666665,3.0308833333333336,6.65025,1.5229,4.471785,3.829966666666667,3.81953,5.06045,5.0754,4.8397133750000005,3.3139233333333333,2.3185625,4.49676,3.868115,2.10858,1.1263239999999999,4.43813,2.862725,6.418325,3.5556,2.668605,3.447765,3.76172,3.452465,4.63519,2.95795,4.524125,4.4169,4.221765,3.67116,3.4358,3.51301,5.3095,2.4711233333333333,4.398465,3.166485,4.96623,0.7328933333333334,2.274055,1.8553625,2.0256575,1.811975,2.92311,2.6735333333333333,1.8935899999999999,4.791525,6.04804,2.053853333333333,4.573035,4.650535,2.3198375,5.527313333333334,4.046138333333333,5.14995,5.1513,6.678356666666667,1.9612233333333335,2.7989933333333332,1.8621966666666667,3.0450233333333334,1.781035,1.757805,3.892205,3.53938,5.2075,1.0428455555555556,2.89459,4.86709,2.2807675,5.58485,3.665875,3.85537,3.718833333333333,3.356475,1.959475,1.816526,2.697525,2.97315,3.184375,1.915635,3.427785714285714,3.427785714285714,3.55565,3.31955,20.390422023809524,1.0868200000000001,5.503475833333333,2.1102425,1.8810900000000002,4.172495,4.032165,2.013605,3.706445,4.49841,1.4892766666666666,1.4892766666666666,1.23407,1.9497933333333333,2.3885733333333334,3.05937,4.607905,3.310695,3.7004,0.5282105263157895,3.5465405263157894,1.91439,3.408225,4.5955325,3.29504,3.810275,3.489715,4.4656,4.162925,1.9915025,4.24786,5.722553333333333,2.27396,3.702515,5.061,2.16562,4.466545,6.18515,1.6227142857142858,2.2961400000000003,3.600433333333333,0.9209314285714285,3.2442533333333334,3.651175,4.81977,4.89076,2.795983611111111,8.139533333333333,3.0690833333333334,3.073916666666667,0.4669411764705882,4.196265,5.210077738095238,2.932755476190476,5.42275,3.75879,2.613005777777778,1.874382,5.64988975,4.381405,4.3898,2.4062325,2.14432,4.400475,4.151133333333333,3.1228766666666665,2.03638,4.072954166666666,6.6010425,2.69671,3.72288,3.447285,4.184285,1.4526571428571429,1.4526571428571429,3.0758266666666665,3.0481833333333337,4.515135,4.90001,6.32215,3.404575,2.735875,2.145825,1.6365833333333333,1.353182857142857,4.930355,5.6702575,5.16265,5.57135,4.59742,6.4136925,3.853605,2.8431233333333332,3.862318,2.3373866666666667,2.9533045,1.5376400000000001,4.73274,2.3606333333333334,4.36834,5.36845,4.051305,2.6989533333333333,3.0017533333333333,1.5771714285714287,2.649925,3.8274333333333335,1.9367625,0.582463125,3.3955333333333333,2.8702,2.6068366666666667,2.5892166666666667,2.151675,1.7718440000000002,0.7095236363636364,0.7095236363636364,3.5873000000000004,2.03227,2.69185,4.252065,5.5863,4.81576,5.2672,4.006745,4.48162,2.559943333333333,1.2038066666666667,2.62247,3.881095,0.7880075,3.1723375,2.9136,3.093565,2.14904,3.84293,2.8695,1.9203433333333333,1.2972357142857143,4.348025,7.105105,3.921505,1.7348537499999999,4.813355,3.61542,2.936505,3.37568,2.640935,1.6870233333333333,0.993155,3.78858,2.3233116666666667,2.1058600000000003,1.62151,2.3161366666666665,2.16925,2.4138333333333333,2.7415287499999996,1.2762766666666667,1.9368033333333334,1.0323775,6.5066825,5.16175,4.94595,3.84594,4.08732,3.13132,1.7809562393162393,4.64052,4.649975,2.52205,5.9515,1.991325,4.45439,1.1331,4.039935,3.79882,1.7655175,7.26546,3.41772,1.82131,1.7853875,1.986975,2.565925,3.4410000000000003,1.3076735064935066,3.3048333333333333,5.69435,4.346055,4.505695,5.8678,5.8866,5.0711,0.96436875,4.528045,4.625935,4.18751,5.0918,4.163165,4.720395,5.1481,2.866475,1.5560083333333334,1.5560083333333334,5.2624,5.825161666666667,3.154625,3.031663333333333,4.21295,4.390055,1.5218500000000001,3.236835,4.801675,3.783095,4.23959,2.9060066666666664,2.7752233333333334,4.915545,2.416111125,11.11980663283775,1.8827233333333335,0.83993875,2.4626233333333336,1.8842825,2.480995,2.2640375,1.9018760000000001,2.9809033333333335,5.11415,5.44565,2.9260966666666666,1.5800183333333333,6.329330357142857,1.3589157142857142,3.2314333333333334,0.5192476190476191,3.989063333333333,5.87295,4.125955,4.522965,13.49795,5.46115,3.252496666666667,2.98279,4.98729,3.1113133333333334,5.1482,1.1909425,1.6106999999999998,0.7836781818181818,5.9653,4.217325,1.869888,4.787502,4.881005,6.4496,4.835935,5.325,4.47819,6.359,3.810955,5.5481,4.59829,1.6985800000000002,4.790835,5.99535,4.18601,3.990705,4.75449,4.08714,1.4249975,4.951555,3.81431,1.221725,3.4448333333333334,3.27876,2.4546933333333336,2.58378,2.25144,2.8016799999999997,0.6832318181818182,2.5347833333333334,2.6968599999999996,2.48843,2.1874533333333335,3.026726666666667,1.905055,1.3712766666666667,2.576875,2.32672,2.3328475,3.405333333333333,3.01248,0.7045,2.59193,3.942315,4.876855,2.4497533333333332,3.77296,5.231,5.2972,3.334375,3.882925,1.41591,3.77719,2.7233133333333335,3.975881666666667,2.97155125,4.65915,4.944615,5.25195,3.78511,4.174266666666667,0.848748,0.848748,2.217688076923077,1.633625,4.19613,2.6258435,2.6258435,4.904425,5.8799,3.096675,1.1046116666666668,1.4545,6.0261,3.41675,3.8548666666666667,3.248445,2.75332,3.18516,3.8548666666666667,6.7417050000000005,3.14807,3.1648395833333334,3.0373,1.91885,2.826405,6.3679,2.7773,3.34055,3.647135,6.1101,5.8203,6.384925,6.384925,5.31655,4.522285,0.5312615384615385,4.982905,4.91574,2.75554,2.785715,9.665116666666666,2.96617,5.44875,3.91769,3.6610333333333336,5.5678,2.50832,3.2238225,3.2235600000000004,3.2752866666666667,2.8691633333333333,1.7656939999999999,1.7656939999999999,3.541665,3.641965,4.716775,1.780802,1.6662780000000001,48.47563246212121,2.593243333333333,0.8516245454545455,3.2267433333333333,1.8185325,3.31882,2.7901333333333334,3.1169499999999997,2.995635,2.8236633333333336,2.07978,0.97477375,4.780195,3.184005,3.458375,4.134665,5.16885,5.0505,5.1183,5.51245,5.4296,4.8156,5.7406,6.2804475,5.0567,5.51995,2.0333025,3.81875,6.64125,5.5141,3.55565,3.937445,4.375235,2.71683,3.813555,4.714675,3.1825766666666664,3.8170333333333333,1.6338339999999998,3.69989,1.305984,3.116065,3.68617,3.502795,6.677842500000001,3.85855,2.1275525,4.151495,4.196775,3.87098,1.129785,2.997155,4.141365,4.350550476190476,1.1949275,4.873705,1.4888725,6.2537,0.7137955555555555,4.22898,10.383908333333332,4.516895,3.95087,3.43487,1.88375,4.333935,5.07015,3.1056866666666667,4.30802,9.252017777777779,3.4375666666666667,2.2687633333333332,2.7673366666666666,2.8798133333333333,3.0078899999999997,2.8307372500000003,1.8761366666666666,2.6374133333333334,2.9400833333333334,2.832216666666667,2.8848599999999998,3.247965,2.1705633333333334,1.6690166666666666,5.107755333333333,3.4555000000000002,2.61606,4.9188746666666665,2.8969833333333335,1.152315,2.12669,2.8924633333333336,5.14418,2.681175,2.220178888888889,2.220178888888889,1.5527225,1.4608375,2.06764,1.845964,6.317565,4.095135,2.522675,3.04334,3.3792000000000004,2.1649275,0.5389441666666667,2.59601,1.8612975,0.538263076923077,3.655225,2.554275,2.592375,3.5354,3.9225999999999996,2.783633333333333,1.6335133333333334,1.3219533333333333,2.05371,3.459595,3.643265,4.325435000000001,2.81405,4.11781,3.807375,1.1838636363636363,8.663535,2.642615,3.195315,1.3332125,3.0373366666666666,2.254155,2.254155,2.254155,4.70983,6.04895,1.72535,4.872395,1.4593,5.748609999999999,1.571534,4.205215,4.12115,4.09835,4.282015,4.541565,1.86549,9.0737375,4.145685,4.981745,3.361415,4.508791666666667,3.2553300000000003,3.1363233333333334,4.13148,2.9361766666666664,4.520096428571429,5.080564166666667,1.6583325,3.82528,1.6583325,3.49507,4.67574,5.3773725,4.67574,1.7297733333333334,5.9067,4.878105,4.50368,2.933286666666667,2.9706466666666667,4.400155,3.06778,4.712105,0.5445907142857143,3.07986,3.1138733333333337,5.233301666666666,4.76783,2.53525,4.454355,7.371703333333333,3.93959,3.259685,2.912885,2.2793533333333333,4.059225,3.897315,4.721385,2.44297,4.01086,0.8784890000000001,5.05605,3.62892,4.079905,2.8178733333333335,3.188356666666667,2.0844333333333336,2.926076666666667,2.740766666666667,2.7740299999999998,3.493615,2.4741025,2.4741025,4.905194166666667,3.38531,4.66004,11.724587499999998,0.9746888888888888,4.399835,2.4953866666666666,2.2397533333333333,3.195956666666667,1.4170875,7.5348915000000005,3.527533333333333,4.33497,3.992685,2.6246933333333335,3.8456333333333332,4.614345666666667,2.4430333333333336,0.47348000000000007,1.812068,1.375005,4.96035,2.667865,3.25033,3.91242,3.4561991666666665,2.5588125,4.194775,4.54411,4.10428,4.43535,2.18959,4.077475,2.477866666666667,5.7069833333333335,3.02814,4.6646,5.0427,4.200895,4.58488,1.92937,3.780305,3.92483,2.751863333333333,3.571415,2.783415,3.046715,3.788695,3.82999,2.9779433333333336,4.865235,1.8331666666666668,4.072255,2.915985,4.54334,4.016325,4.661035,5.0896,4.27626,4.08796,4.301405,3.95913,2.66696,2.029465,2.90583,2.27713,0.8284199999999999,4.11042,1.997855,3.33677,2.555475,4.107235,3.2267,3.137385,3.32854,3.984455,4.647596,4.152175,3.13607,1.4395166666666668,3.615395,2.48247,0.9739533333333333,4.992815,9.62386,3.200925,3.53171,4.55805,5.1243,3.63809,2.02286,3.926735,3.89136,3.18463,3.042405,3.66407,0.609015,1.2524014285714284,6.0512075,1.5931775,2.634365,4.87363,2.3987725,2.225755,2.623355,7.3732,2.935055,4.193395,3.70717,0.7333766666666667,3.354125,2.571305,3.7448,4.52907,5.996936666666667,0.674617,3.36988,8.20472,3.119365,1.034138888888889,5.252697916666667,4.78718,5.57685,4.291235,4.915675,3.719325,2.48838,7.475815000000001,0.84884,3.401995,4.30737,3.173695,3.963145,2.03619,4.20394,1.5254683333333334,4.52373,3.815705,3.906,1.8107225,4.917915,4.81312,2.381235,2.070345,2.571975,1.2446899999999999,4.074275,3.3841609999999998,1.737156,9.023505,5.7872,4.735775,4.5507,3.468255,4.278135,1.4662285714285714,4.499635,3.78154,5.0877,3.616555,2.334,6.593444230769231,0.9045225,0.9045225,2.47809,0.9035314285714285,4.07273,2.6025666666666667,1.069665,1.7739266666666669,0.41103,6.403705,0.99528,2.68744,3.96881,4.01197,3.305975,4.20895,5.2551,5.3520875,3.044565,3.00087,2.332275,4.722685,4.936065,4.2257,4.133325,3.614355,6.2459,4.34323,4.27913,5.778519,3.71215,3.9231425,2.353435,3.9231425,6.793442000000001,41.184247658008665,3.59367,3.327385,3.0457733333333334,4.76385,4.611975,3.27996,3.29194,3.726105,4.200325,4.411775,1.7918833333333335,5.45775,2.705585,4.674485,5.1416,5.14325,2.2647666666666666,5.0341,3.774875,3.669495,1.494302,0.6466723076923077,1.7132539999999998,3.572233333333333,3.2203999999999997,1.3695625,3.20557,2.7601633333333333,2.9934133333333333,3.3104033333333334,3.0913066666666666,1.555018,2.76647,3.723933333333333,1.908789761904762,2.9190199999999997,3.138838,3.0935433333333333,2.53656,3.208833333333333,1.1820777777777778,3.917965,3.906115,1.1437316666666668,1.1437316666666668,1.1437316666666668,1.1437316666666668,2.804731818181818,1.95076,2.417875,3.328255,4.68144,4.39721,4.699815,4.493595,6.1442,4.72506,2.287825,6.35495,3.479535,2.673815,3.726665,3.47345,4.395735,4.40161,0.7843230769230769,1.467042857142857,1.50592,4.45822,4.80133,4.07731,4.120365,6.162936666666667,2.2156933333333333,4.671965,1.7075166666666668,4.40559,5.16295,1.6013466666666665,5.7299,0.8311316666666667,4.8782,1.668916,1.24938625,3.86,4.84057,5.0595,5.326,5.9436,4.248805,1.504032,4.481495,1.5030475,3.531985,3.501475,2.613005777777778,1.789495,3.755535,1.4614399999999999,3.4845,4.494875,2.86896,5.92645,123.67024526605339,0.47677555555555556,4.390995,2.56425,4.77919,3.99826,2.74877,1.5021,0.34588857142857143,2.803915,3.6361,5.21375,2.46866,3.78717,4.56883,4.543275,4.25003,7.785036666666667,0.6679022222222222,2.93447,0.956885,11.8232,3.129175,3.605865,1.0380111111111112,2.143395,2.72686,2.142095,2.9115633333333335,3.19942,2.261746666666667,4.268345,2.6788633333333336,2.25194,2.16969,5.38825,3.705365,3.205495,3.51528,3.652175,3.389815,2.2404566666666668,3.77447,3.482995,2.992625,1.0841644444444443,2.5494499999999998,4.268345,4.81327,5.3031,3.921105,4.314955,1.77605,10.69717,4.316275,2.52666,3.47222,5.42345,0.5893726666666667,0.5893726666666667,4.436405000000001,4.436405000000001,4.349175,3.5623,1.7603529545454544,0.6595308333333333,2.86943,4.507695,4.344755,3.3677,3.844965,5.3843175,4.91168,2.4606725,4.597285,2.02576,2.670735,4.488288333333333,1.77039,2.550005,0.4873571428571429,1.7431331428571428,1.7431331428571428,1.955765,4.716505,4.707275,4.8632,6.086841,2.768035,3.35,1.98837,1.97308,4.307464166666667,3.856065,5.6265833333333335,2.88856,5.6265833333333335,5.44385,3.53338,6.0414,3.650835,2.3682833333333333,2.0225233333333335,2.631256666666667,1.40679,1.34141,1.510475,1.5563825,1.47151,2.1594575,3.627333333333333,4.55238,2.78864,6.45505,2.9751066666666666,4.629335,2.885525,4.141275,2.98184,3.1831600000000004,6.279263333333333,3.3851,4.775959333333334,3.179256666666667,1.287905,2.5408633333333333,2.721076666666667,2.3673066666666664,5.8195,4.140775,5.0136,13.29726114999036,0.7612516666666668,1.9899695,2.4111175,1.7672899999999998,1.2819157142857143,2.617325,2.47104,2.6191,2.5517,0.7609930769230769,1.9603875,0.5380368421052631,5.58035,1.917275,4.206375,4.64399,2.502125,6.0474625,4.38088,8.61617,3.734005,2.61431,2.9787,4.915555,4.76862,2.9418540952380954,4.651535,2.16074,2.16074,4.994945,4.047705,4.64731,4.003175,3.157196666666667,3.83239,5.0902,4.90157,4.55986,4.617895,4.350765,4.42245,2.23372,5.0281,1.2225966666666668,4.68288,4.39663,2.5070833333333336,2.3379266666666667,4.562435,1.4378166666666665,4.479105,1.7188275,6.001939239130435,3.815655,4.12233,1.6253733333333333,3.0721233333333338,3.0721233333333338,12.03446,3.838325,4.670385,1.1748625,4.8522099999999995,2.586975,1.378825,2.47885,1.7089625,2.0923775,1.83696,3.442765,6.2846,1.715015,5.0673,4.741629166666667,5.44285,2.2912175,2.136645,3.61789,4.273825,5.2645,3.975685,7.111373333333333,3.2241400000000002,2.9950166666666664,0.3897672222222222,3.682725,4.353115,3.3500333333333336,6.3844183333333335,2.5006,3.1096566666666665,1.1863316666666666,1.6923000000000001,0.582463125,1.812068,2.964725,1.59335,1.7775166666666669,0.66755625,1.376136,4.604055,2.4691575,0.5853423076923077,1.53094,1.563245,1.804604,1.2507516666666667,2.24209,1.6923000000000001,2.3790025,1.376136,1.376136,0.5853423076923077,1.5728285714285715,2.4623999999999997,1.3458666666666668,2.65375,0.5853423076923077,2.66115,2.4623999999999997,1.3927916666666667,1.3927916666666667,1.3927916666666667,1.8566299999999998,1.180235,0.5853423076923077,1.100726,1.25375,1.076438888888889,1.9402920000000001,2.5975,0.8779333333333333,2.32694,1.6568,0.5853423076923077,1.6517279999999999,1.6923000000000001,1.9438833333333332,2.02135,0.928507,1.9438833333333332,1.0876233333333334,2.381235,2.493425,2.54655,1.25375,2.2196000000000002,1.4614399999999999,1.4614399999999999,0.9520545454545455,0.9520545454545455,0.9520545454545455,1.1863316666666666,1.6923000000000001,1.6568,1.53094,0.9982771428571429,2.02135,1.56029,1.64488,1.8858260000000002,1.1863316666666666,2.6901,12.1233725,0.66755625,2.6064599999999998,1.8633666666666666,2.663625,1.0373242857142857,1.0373242857142857,0.5853423076923077,1.2272222222222222,1.7718440000000002,1.6568,1.7189299999999998,2.02135,1.1848555555555556,1.1848555555555556,1.7160160000000002,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,3.26078,1.0876233333333334,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.19212305555555556,0.3937909090909091,56.092459012987014,1.4623725,1.5261149999999999,1.6568,1.8633666666666666,0.9982771428571429,0.6133941176470588,0.706328,0.706328,0.706328,0.706328,4.2649333333333335,16.653122916666668,3.4203666666666668,0.6700909090909092,1.699938,1.699938,1.699938,0.6700909090909092,2.964725,0.5853423076923077,1.6517279999999999,1.7775166666666669,2.64114,1.0876233333333334,2.53525,1.0876233333333334,1.5009359999999998,1.5009359999999998,2.16235,2.16235,0.5853423076923077,2.09624,2.09624,0.9523,0.19212305555555556,2.964725,1.5782016666666667,2.38893,0.6700909090909092,0.6700909090909092,0.6700909090909092,0.6700909090909092,0.6700909090909092,1.8633666666666666,0.3937909090909091,1.0876233333333334,2.3931575,2.3931575,2.500425,3.18179,0.6518190476190476,0.6518190476190476,3.290566666666667,4.099266666666667,1.168537142857143,3.24066,1.06448,2.521675,2.0067399999999997,1.11191,3.235056666666667,2.003985,3.29754,5.44595,2.45693,1.3094,4.53093,4.634825,2.6531233333333333,1.785892,2.353819230769231,4.828795,1.6384330555555555,2.6622,2.910106666666667,3.4037666666666664,2.443125,6.259869999999999,4.09947,0.19212305555555556,3.1344166666666666,4.81819,4.414905,4.522925,4.595215,4.6783,2.708396666666667,1.78704,3.882925,4.59842,4.190485,4.73372,5.2779,3.3422,0.66095,6.7004850000000005,1.3783216666666667,3.330496,4.723415,2.5625533333333332,2.5625533333333332,0.8026736363636363,1.789495,3.537875,3.02728,4.60507,4.373465,4.771025,5.15515,1.1195028571428571,4.506845,5.16975,7.347487152777777,2.2018333333333335,4.173745,4.24056,3.90381,4.749545,4.208875,4.465675,5.460115,5.0938,4.47546,3.741445,4.612805,7.316076,1.871335,2.020229743589743,2.8397166666666664,1.6952299999999998,2.78993,1.8234166666666667,4.912295,3.091136666666667,5.51875,2.02004,4.933695,3.962705,3.245105,4.22696,3.693875,2.4576466666666668,2.74706,2.662246666666667,2.71716,2.2495766666666666,1.6032183333333334,2.6948000000000003,2.895243333333333,2.15272,2.15272,4.19723,2.8447633333333333,1.9365666666666668,3.101366666666667,2.0942666666666665,2.3739466666666664,2.96077,2.5874433333333333,3.0842266666666664,5.3601,4.873265,4.775965,3.7462886666666666,3.7462886666666666,4.018685,3.243133333333333,4.43186,4.309325,3.945165,3.448575,3.303795,7.24613,2.2851525,1.92833,3.37562,3.18132,1.2667166666666667,1.2667166666666667,3.66821,1.758905,4.445021333333333,3.67885,3.46413,2.0380540000000003,2.1491653333333334,0.5546783333333333,3.258785,3.872135,2.184115,2.39313,4.47821,1.1157000000000001,4.84449,1.2444933333333335,0.4380807142857143,0.5856807142857143,21.994626229166666,0.5856807142857143,0.4380807142857143,0.7332807142857143,11.19331,3.3946,3.997685,4.515495,3.4504124999999997,2.5859,4.545495,2.25832,3.2205,3.700595,2.98365,4.23796,4.96212,3.48158,2.314755,3.094755,3.731395,3.820605,3.04572,1.058922,1.058922,1.058922,1.058922,3.344575,2.755115,2.908105,1.8162133333333335,1.382295,2.41901,3.570715,3.84125,2.73992,3.365395,2.55699,2.4875475,3.745715,4.11083,1.1264833333333333,3.2431366666666666,1.11378,2.847073333333333,2.17673,3.643333333333333,5.306,2.4786066666666664,4.26165,4.120690000000001,0.9126304761904761,0.33536714285714286,0.33536714285714286,0.5772633333333332,0.33536714285714286,0.33536714285714286,0.33536714285714286,0.5772633333333332,4.797525,7.347775,3.481975,0.5363475,3.764765,7.247674999999999,3.24965,3.3299366666666668,1.1888216666666667,4.518385,5.48315,4.335625,4.73062,1.6330660000000001,4.9259,2.2064366666666664,2.6394113333333333,4.038245,5.5566,0.8028457142857143,0.8028457142857143,3.531575,2.9860933333333333,2.393955,3.28854,2.88472,6.2178,2.743975,5.37565,5.7434,5.9394,2.284745,1.842055,4.51567,3.58442,2.06373,3.84218,3.60329,1.78201,1.1175783333333333,4.065705,3.151505,4.873226666666667,6.4031183333333335,1.5837566666666667,3.86601,1.11484,2.521243333333333,3.419105,4.27147,0.41826214285714286,4.564365,4.514295,0.979528,2.8459066666666666,7.7633833333333335,5.6397,2.04861,5.969048,4.57412,3.59312,1.4257116666666665,5.351593333333334,3.0492266666666663,3.08463,3.7882,1.9703099999999998,1.9703099999999998,6.2425999999999995,6.2425999999999995,3.5686660714285714,3.5686660714285714,8.85829,3.5686660714285714,3.5686660714285714,4.203589404761905,6.8344,3.328275,3.6887758333333327,3.188883333333333,4.42644,4.02777,3.4477666666666664,3.2527066666666666,4.416965,3.2025633333333334,2.55878,3.170446666666667,2.3122133333333332,2.59723,4.99299,7.520214999999999,6.7955825,4.595245,3.630655,3.899585,6.452976,5.1345,4.0912,4.001975,3.3833,2.26083,2.057635,2.12733,5.47715,5.18695,4.645135,4.18706,2.2218533333333332,2.62939,7.495688333333333,1.8566299999999998,2.5212566666666665,3.2988999999999997,3.2988999999999997,3.03919,5.01805,0.8408083333333334,3.4119333333333333,3.861475,2.7152,10.460175000000001,4.33247,2.9500566666666668,2.4007166666666664,5.7766,6.12375,3.06579,5.68635,2.6005733333333336,4.357005,2.9056974285714285,4.284755,5.3857,4.76754,1.15071,3.6844333333333332,1.13424,2.5160966666666664,5.235936411764706,8.097553333333334,2.5867566666666666,3.4258666666666664,6.922846666666667,1.7339099999999998,4.619315,5.5576,3.43145,3.56098,2.26735,4.84224,2.4709137500000002,0.4493153846153846,5.3158,2.890285,3.6391666666666667,5.31355,4.89942,5.1814,6.726697499999999,4.9609,5.46335,7.034767500000001,53.210791666666665,4.326655,3.91645,4.691985,5.89405,4.62106,5.1026,4.209745,4.84058,1.8749475,4.201555,4.11593,4.354805,2.523715,5.11565,3.987725,1.5989499999999999,5.6698,6.55565,7.32883,5.61285,3.17084,4.70921,3.04208,3.02697,3.600985,4.354205,3.62786,6.51816,2.765175,1.0584757142857142,2.3647255,0.6488940000000001,0.6488940000000001,3.56502,0.6488940000000001,2.5808515,2.5808515,3.2366455,4.3920215,4.898704,2.3647255,4.6204375,2.5946775000000004,1.3659100000000002,5.53205,2.07793,7.980118666666667,6.266076666666667,12.039516704545456,3.571066666666667,2.8927666666666667,0.22673878787878787,1.7741316666666664,2.6222566666666665,0.95255625,1.7678500000000001,2.5372733333333333,1.939455,2.7661,0.661639,28.25228375,1.9389825,0.7717076923076923,2.672086666666667,2.672086666666667,0.41183333333333333,1.991395,3.083665,1.3694775,2.111215,1.5655975,4.516785,2.82258,1.9564966666666666,2.28259,1.186025,2.288835,1.6721666666666666,6.115342833333333,4.01559,6.764398333333333,2.4287825,3.1562966666666665,1.0445766666666667,2.487755,4.95105,6.031295,3.0189833333333334,2.39125,5.838509166666666,2.4510425,2.6563066666666666,4.3640799999999995,1.1149033333333334,3.7992000000000004,2.4253766666666667,6.05545,5.6555,6.3521,3.565005,4.586935,4.586935,5.55675,1.866005,5.46795,2.8071266666666665,1.60901,4.36893,3.84893,5.694399833333334,4.84753,2.941606666666667,3.3856,2.4491,1.3498999999999999,4.86947,1.06405875,5.55346,5.10175,7.793304,4.56412,4.363285,4.06645,8.19497,4.92133,5.27775,1.1272,0.7074971428571429,4.93225,4.817435,2.3377,3.21449,3.23585,4.121715,2.22101,5.05965,2.506693333333333,5.3635,5.51695,5.00835,4.679405,4.67335,2.669525,6.9403179999999995,3.2722,4.594925,3.21785,3.88081,6.044879166666666,0.590605,3.798833333333333,1.71207,0.7026033333333334,4.06053,2.96362,1.02770625,2.09282,5.88464,4.49132,2.273165,2.7492866666666664,2.6980633333333333,4.879485,3.78023,1.7228014285714286,4.2026,2.44364,3.4751666666666665,4.34677,5.0429,3.3652816666666663,3.8514666666666666,3.7033,1.9928540000000001,7.23459,4.93368,4.185075,5.04575,2.301055,4.23817,4.728775,3.424385,3.91744,10.34217,4.036385,4.117846666666667,4.739855,4.52272,2.4406075,4.223105,4.254065,5.0157,3.26034,4.384135,1.78206,2.8066366666666664,3.32571,3.414075,4.80264,1.9187,4.330645,2.977536666666667,5.28765,3.0994833333333336,2.09511,4.05688,4.55252,1.02994375,2.98351,2.6247633333333336,4.567246666666667,1.715544,1.6706433333333335,1.2078275,4.998875,5.4742,5.88214,3.765445,2.95799,2.37927,2.180165,2.445655,1.45867,5.3348,3.058175,1.853475,0.9368,21.095984807692307,2.996775,3.233734166666667,4.566058333333333,4.078411282051282,1.3645333333333334,2.7199791666666666,2.9406820454545453,1.178702,1.8666633333333333,4.118265,4.990485,3.895944166666667,3.433775,5.53815,4.95008,7.239415000000001,4.9979625,5.04345,3.74583,2.9709266666666667,3.89102,4.012175,3.571733333333333,4.125465,2.1905675,4.88847,8.66397,3.3419,2.90055,3.62969,0.54408125,3.3016233333333336,2.096486666666667,2.32615,4.25256,3.32716,4.958545,3.78983,2.772515,2.309025,1.64243,1.011488,1.4363833333333333,1.2367133333333333,3.98683,4.002855,4.82975,4.82422,7.11756,2.1648533333333333,1.3734899999999999,2.4562033333333333,7.428366666666667,3.354895,2.979775,3.143605,4.715455,3.621215,3.521325,1.645656,4.3257,5.45585,4.179575,3.9213,3.678165,4.27405,4.66575,3.883995,4.458855,3.551215,2.147835,3.3497,3.15255,5.62675,2.649895,4.220892,4.58605,2.83671,2.838786666666667,2.228616666666667,2.0863366666666665,2.7971113333333335,2.7971113333333335,1.88067,3.0043399999999996,2.3240266666666667,2.328606666666667,2.0144366666666667,4.017745,2.3602866666666666,2.8829833333333332,2.7869266666666666,1.6864766666666666,4.24048,3.14087,3.78072,2.2872133333333333,5.16895,5.4022,4.882015555555555,2.582245,2.11602,2.87329,2.29045,2.046615,2.948505,1.849425,2.550375,2.48458,6.578376166666668,4.2648375000000005,3.641345,0.59135875,4.102905,4.342245,4.378035,3.21939,3.794215,3.6493641666666665,6.26435,4.40454,3.699085,2.6898789285714284,2.280371333333333,2.46862,1.7412500000000002,1.764374,1.590362,2.02424,1.89345,1.2863083333333334,4.0955391428571435,0.5853423076923077,0.5538233333333333,2.12846,1.4910716666666666,1.478516,1.5204333333333333,2.462096212121212,1.4659000000000002,1.673948,0.6183375,173.30868443837005,0.48831066666666667,2.02082,1.013082,1.28713,2.0336675,1.4629025,2.0008825,2.65441,2.0899925,6.9175,3.05087,3.7043899999999996,1.5373433333333333,3.05985,1.29008,1.29008,5.8465075,0.5200905555555555,2.328235,3.2731066666666666,3.0584166666666666,0.8116809090909091,0.6680235294117648,1.278501641025641,1.1527,2.8765,4.281975,2.1788125,2.2295675,2.52399,4.783350333333333,1.0591133333333334,4.27912,3.58015,3.417095,6.35037,1.8009333333333333,3.01384,2.60206,3.993531,2.222085,3.17896,3.365565,3.490775,4.830165,2.662665,7.0982,2.59141,2.263085,3.518555,1.847565,2.508185,3.0368,2.829955,1.80215,1.52926,2.43314,4.48303,5.908893333333333,3.072335,2.86968,1.45242,4.2774,3.579166666666667,4.165333333333334,2.799225,25.43701790598291,2.431867333333333,2.656353333333333,3.15512,3.419033333333333,3.285503333333333,6.156583333333334,3.1133466666666667,2.646383333333333,3.460566666666667,3.436033333333333,2.101386666666667,3.17352,3.3522,3.237363333333333,1.7068,1.7503115,0.5779340000000001,2.15722,2.1578925,0.18568,2.4671533333333335,2.7791,0.18568,0.18568,2.0132966666666667,0.18568,0.18568,0.18568,0.18568,2.7417766666666665,2.671393333333333,0.5754753846153846,3.2402482142857143,1.7118025,1.9474900000000002,5.2526,4.340014999999999,6.2021475,2.1154075,4.849705,2.0903875,2.91379,1.3361942857142857,5.988886666666666,2.79378,5.568440000000001,0.9331583333333334,1.22723,4.936025,4.682645,35.97942132933733,1.6579139999999999,1.3671333333333333,2.2480766666666665,2.458065,0.9520545454545455,2.28309,2.45297,2.7668633333333332,2.09727,2.4110833333333335,1.6783333333333332,2.861416666666667,2.36918,2.3150933333333334,2.4762666666666666,2.3536566666666667,4.41131,3.339,1.1796914285714286,4.004245,4.132585,20.008517722222223,2.9652433333333335,3.2023200000000003,2.63104,0.946322,2.9675659999999997,1.7363375555555556,2.9675659999999997,2.3835133333333336,2.49746,3.2125466666666664,1.6250375,1.9267175,4.401555,3.957465,5.3289,4.294135,1.78577,5.1993,1.8453775,4.85073,4.0463720952380955,5.02655,0.7149345454545455,2.1349125,2.183055,2.93379,3.320815,1.0768775,5.0486,2.01764,1.8933433333333334,1.0219580000000001,1.0219580000000001,2.6164,3.5401333333333334,4.656055,29.427714583333334,6.449305000000001,1.8703666666666667,3.5451633333333334,0.367578,6.7016175,5.3144,2.8502833333333335,3.253245,6.266287500000001,4.533885,1.21318,4.58243,1.290778,4.494095,4.82195,5.109,2.01312,2.996545,4.450775,2.452705,3.6498865,4.67886,1.2729366666666666,2.6088275000000003,3.83358,4.7993175,3.07006,3.12757,3.0130700000000004,3.253815,3.99791,4.162805,4.0347,1.602085,5.87257,2.4537,1.772046,4.090875,5.3865,4.033425,3.480945,0.88896125,2.83451,3.350895,2.00244,4.476637333333334,2.75541,3.823025,2.8502899999999998,3.3493,4.157275,3.2357666666666667,3.365766666666667,3.129433333333333,4.574165,4.86473,4.538875,1.82762,4.073495,4.219155,1.84612,1.87937,1.7497575,3.91715,4.658735,5.423978333333333,3.98009,3.6797,3.677995,3.516833333333333,1.3770083333333334,2.9576,3.0045,3.5147,4.48709,4.37969,4.60215,2.752165,1.93906,1.56951,1.5025575,3.61594,2.40276,2.13494,3.350515,4.79173,1.554825,5.23165,1.3602985714285716,1.7862275,3.193945,3.01634,2.916345,3.534825,2.936535,1.56375,0.9651357894736843,3.608075,3.9816483333333332,5.24885,8.460431666666667,2.436366666666667,3.117646666666667,1.5040566666666668,2.60506,2.88327,1.1568283333333333,3.2080266666666666,3.036936666666667,3.078003333333333,4.023533333333334,3.4138333333333333,6.959728333333334,3.0797333333333334,0.73281,2.291326666666667,3.442515,3.211145,3.3886,3.7316000000000003,2.6240289999999997,4.324565,3.96089,1.9600341428571428,3.85904,2.8804494444444444,4.018895,2.248416666666667,4.561945,5.11145,4.69735,4.40546,4.00681,1.2861444444444445,5.03675,3.2919533333333333,2.6755933333333335,4.665145,2.850963333333333,3.2055333333333333,0.38437857142857146,0.38437857142857146,3.8331283333333332,5.6322,6.23735,2.937065,4.033455,3.44036,3.014915,5.1973,4.66491,0.99460875,4.10031,2.7877433333333332,4.541730833333333,2.9814000000000003,3.103320833333333,2.174236666666667,3.2929510714285715,2.9740966666666666,2.84728,2.74157,2.7318866666666666,2.019623333333333,23.219174963438736,5.29415,5.08345,3.896045,3.192525,4.57841,3.31962,4.618335,4.88047,3.929735,4.014365,4.01218,2.7852433333333333,3.178376666666667,3.0180566666666664,3.1889700000000003,2.8296200000000002,4.235155,3.55626,4.8617375,5.1552,3.85566,1.209842,1.7217939999999998,1.7217939999999998,4.3814,3.85501,2.7128866666666664,2.4476066666666667,2.9179833333333334,4.79355,3.675205,8.061218333333333,3.1273733333333333,3.2619666666666665,3.0367283333333335,4.73696,1.625185,6.166650000000001,2.5347433333333336,2.635873333333333,1.7010175,4.37289,2.89812,7.40636,3.292585,2.645385,4.228265,3.878172666666667,1.5938275,2.6545,1.7386566666666667,8.4773075,4.360265,6.745188333333333,2.248415,4.20163,3.66497,3.799905,5.412,3.586266666666667,3.586266666666667,2.068285,4.329655,5.2216,2.817185,6.437712857142857,1.718395,6.02055,9.990758333333332,3.665433333333333,5.0073566666666665,2.17826,1.98103,0.67084375,4.29693,2.4687325,2.694825,3.9562425,2.42451,2.4700666666666664,3.986855,5.4496,5.07955,4.727835,5.6539,4.169425,2.2322275,1.0491181818181818,2.919085,3.01746,2.6430266666666666,5.31095,3.965335,3.74923,2.62893,2.2961400000000003,4.33084,1.00175125,5.0053,1.0097055555555556,5.43455,3.141865,4.798475,5.62077,3.552895,3.23291,3.423133333333333,2.4033466666666667,4.267545,3.9387,2.60165,4.841805,5.1846,6.9348833333333335,4.71801,2.0010325,4.224845,3.533445,5.393303333333334,1.809865,1.809865,2.79628,2.399853333333333,2.54289,2.7422233333333335,0.884974,5.9406,4.19476,2.04759,2.22754,2.583985,3.66118,3.029515,3.697725,4.29548,5.3735,5.04105,6.25915,5.8476,1.375325,4.01472,1.0775583333333334,2.568825,4.4699,2.628855,3.004395,3.087845,4.46902,3.58134,0.4716,4.51236,4.185975,4.97695,3.297705,4.847555,5.55435,4.440565,4.12185,1.83884,4.44609,2.052675,4.3008,4.3008,6.53225,5.343,5.73635,5.3428,2.7522,1.625185,4.61317,2.235716666666667,1.5789833333333334,2.147905,4.234405,4.17394,4.637605,7.65326,1.6844666666666666,5.65975,1.3685633333333334,3.512405,6.0029,2.061635,4.858585,2.69359,4.99331,3.657055,4.37548,3.0526199999999997,4.248375,4.032315,6.1891,3.9584,3.40955,3.774965,5.6936,4.032885,4.61955,3.522645,4.44671,7.752228333333333,3.422135,6.91257,3.080615,5.1011,5.996113181818181,4.729555,3.553185,2.392225,5.1717,3.832525,0.8284733333333334,7.99427,5.7942,4.97618,3.0488958333333334,5.2607,3.034465,1.7416139999999998,3.811715,1.1264833333333333,5.5991,3.32817,4.47331,5.4644,4.502925,4.0152,2.159406666666667,4.540045,5.3785,1.64708,7.552003333333333,2.96227,3.554435,5.33095,4.414035,2.03153,4.523095,4.725075,4.987045,2.85751,3.92335,3.68787,5.4775,4.74318,3.34548,1.906365,1.906365,7.227001666666666,1.5224285714285715,5.34645,4.66019,5.4788,3.74414,4.340155,5.3173,3.78107,0.8505866666666666,0.8505866666666666,0.8505866666666666,3.872315,2.81075,3.8307,4.687085777777778,2.755475,1.3885016666666665,5.1375,2.2200825,2.60959,4.122775,5.12595,1.8700975,2.25962,5.54869,3.684625,2.871255,4.30831,1.6764,1.8783325,3.3279333333333336,2.849,5.61925,1.3795959999999998,1.5792059999999999,1.06793875,3.81103,3.28819,3.22186,3.16502,5.5466,1.739188,1.963265,2.938095,1.5952857142857142,3.718515,3.75375,2.317385,5.7021,5.65325,2.72864,4.67367,4.589305,3.51188,3.699145,4.63277,3.568185,6.15249,5.28415,1.9115133333333334,1.8649166666666668,3.303645,4.78209,3.994725,4.301535,3.3472666666666666,4.378035,5.6685,5.3057,2.565436666666667,5.28065,3.996035,5.169,7.48611,5.1267,0.7328245454545456,4.294,4.164686666666666,3.13924,4.32589,3.8369,5.86005,3.842875,4.35493,3.43812,4.53135,5.16315,4.66356,3.802185,4.255515,5.13455,4.31496,3.634095,2.87551,6.32749,5.01725,1.837904,3.46101,4.049448333333333,3.82284,4.81703,3.869275,2.7521966666666664,0.886108888888889,4.370579090909091,6.1923125,4.4985,4.967135,3.400295,7.6010349999999995,4.160905,3.5277,2.8065366666666667,3.61485,1.976385,3.22536,4.45242,2.884573,4.180145,5.37845,1.4116825,5.14075,0.7323142857142857,5.57315,5.0656,5.54065,5.5359,1.3880233333333332,1.7261533333333334,4.44726,1.935845,4.67521,0.5969091666666667,6.13195,2.99006,1.49165,6.0470749999999995,6.8117,0.916735,1.7968190000000002,1.284746,1.284746,1.284746,2.1876933333333333,5.1367,3.828415,4.317185,3.87423,5.5538,4.148555,1.945636,4.35723,5.1592,0.2941951219512195,3.734075,4.81539,6.1507,41.981193409090906,5.6250875,5.59305,12.341634666666666,4.82221,4.19792,7.84923,3.255515,4.466495,4.25667,5.04435,10.48211,3.908525,2.5595266666666667,3.546005,5.89365,4.130835,3.729715,4.53517,2.09036,4.550015,4.330885,7.181088000000001,4.85244,5.4533,2.3495325,4.10347,0.52147875,1.4113416666666667,4.40378,6.6947,3.021195,1.387675,1.387675,4.315575,3.779435,4.82393,2.667475,1.9408966666666665,3.84107,4.291725,1.872885,3.211676666666667,1.756308,2.2573,4.175805,4.52622,2.150855,4.41638,2.22082,2.11439,3.470225,3.491,3.94071,3.7397,6.089777333333334,2.4995673333333337,3.93747,0.6608718181818182,0.6898308333333333,3.52153,2.13633,8.606013333333333,3.4203666666666668,5.11765,1.58957,4.666255,1.569615,4.27933,4.346785,2.78161,4.519445,5.63165,0.425504,0.425504,3.6010666666666666,3.08565,3.0436666666666667,3.78849,3.435485,5.03485,0.9590454545454545,10.468430000000001,9.85738,2.24209,4.520265,4.637745,5.1927,3.45194,2.5404966666666664,2.10862,2.0089,9.6275425,2.35328,2.804043333333333,3.823394,4.957055,3.823394,2.673,2.91459,3.04842,0.7619772727272728,5.30237,3.4234333333333336,2.6696033333333333,4.501805,8.755835,9.81909,4.601725,4.153585,4.67157,6.900725,2.0317875,1.3312625,27.42146333333333,4.160635,4.186495,0.984072,4.4353,4.07027,4.630385,4.653585,4.65446,5.77374,3.4139,1.9573066666666668,0.6897529411764706,0.7596916666666668,4.883425,4.698,1.69395,4.45641,0.8447833333333333,3.4869333333333334,1.3536266666666668,4.116365,5.50865,1.93754,2.45263,2.373,3.78021,3.000435,0.5495666666666668,4.16784,3.55197,2.8363,3.251995,5.3527,3.01214,3.966525,2.94727,5.63965,8.73587,5.0342,7.221655,2.6337,2.6758066666666664,4.064675,4.0927475,4.094015,4.364215,3.697775,4.95643,1.26675,3.3219416666666666,3.4383269285714286,0.770618,1.7217939999999998,1.7217939999999998,5.2372,7.501861666666667,0.8752307692307693,4.80696,0.9618933333333333,3.05293,2.61973,2.691215909090909,6.835576666666666,2.7432533333333335,1.1133666666666668,2.5614833333333333,1.2470425,2.4861400000000002,3.1168899999999997,3.0225516666666667,3.4718999999999998,2.5929966666666666,0.9618933333333333,4.29132,4.502405,5.8249,2.655025,4.94777,2.17158,6.03455,4.870465,4.48698,2.97958,3.434555,2.33813,1.601355,4.262385,2.705225,4.52597,5.5508,1.6870020000000001,4.543305,2.7036033333333336,6.583521666666667,3.42338,2.74749,0.9618933333333333,2.357805,3.83047,7.214477,2.42674,1.5342,2.42674,0.47513,1.232482,3.453735,4.7736,2.0285675,3.461565,3.6046120000000004,0.531487,0.531487,0.531487,8.34437,1.592274,0.7964936363636365,2.9909,40.94984950649351,1.7416153333333333,0.6349233333333334,3.041735,0.6349233333333334,3.537805,2.02445,2.438525,2.697846666666667,5.725,4.78002,4.609645,2.4701233333333334,0.8741842857142857,4.44031,3.1046533333333333,5.21945,1.0923585714285715,2.84035,2.84035,3.730315,4.492375,4.375915,6.029583846153846,3.247465,4.566115,5.53015,1.958888,1.19675125,5.40295,6.3402,3.756425,0.921613,4.66732,4.204585,0.99744375,4.371185,2.529175,4.191675,4.775945,1.8950676767676768,1.8950676767676768,4.67528,3.31775,0.8987833333333334,2.925175,3.11881,3.394105,3.806185,4.964425,0.6044057142857142,0.2827735294117647,0.2827735294117647,0.2827735294117647,0.8871792436974789,0.6424838461538461,0.647648,0.2827735294117647,0.2827735294117647,7.26152,0.2827735294117647,0.8871792436974789,3.44737,1.2318425,4.65571,1.1795033333333333,0.6530507692307693,0.99744375,2.49729,2.602,4.102765,2.953705,0.2827735294117647,0.2827735294117647,4.407845,3.67409,4.55613,2.630145,3.668705,1.519622,3.684195,0.647648,0.647648,4.900955,3.07516,2.68943,2.98251,4.44428,1.0518800000000001,0.8206538461538462,10.251885000000001,1.258325,4.899475,4.437765,5.2269,2.11294,0.38211739130434785,0.8988775,2.9965433333333333,3.201155,3.473165,4.65836,1.435014,6.1832,3.76503,5.1413325,4.1989,2.9848233333333334,3.0381366666666665,6.342698333333334,2.65077,4.98288,4.14013,4.120690000000001,6.17931,0.5809953333333334,4.43745,3.128486666666667,2.0048766666666666,0.6476888888888889,4.364035,6.52771,3.210755,2.40113,2.235485,5.38945,2.75372,3.08005,0.926202,0.45755538461538464,4.036965,0.342048,0.7799272727272727,3.868485,3.144045,4.32561,2.58321,4.988725,4.095895,6.499459,3.72634,3.69826,4.430895,1.5287775,4.9165975,2.11306,4.07268,2.513775,6.022959999999999,2.552525,1.278702,4.54202,6.9968525,6.841209166666666,3.3741,0.9004083333333334,2.8275366666666666,4.83427,4.069495,4.523845,4.714565,4.60359,4.52103,3.11887,4.057785,1.7049966666666665,2.218725,1.3822366666666666,3.985415,9.232025,4.06016,3.51982,5.52265,2.704015,4.206735,2.6034533333333334,3.111409,3.258365,5.3984,3.70694,4.051105,3.608185,5.1025,5.64645,5.17745,4.511186,5.04825,4.240915,3.344025,5.6179,8.17125,0.8939688888888888,4.612105,4.50164,4.471855,5.27885,4.79239,2.237275,8.745750000000001,2.3847833333333335,3.33111,5.72565,3.62569,4.22839,2.1104,1.8427275,2.7946000000000004,2.22124,2.0061233333333335,3.112106666666667,4.58266,4.591505,3.94034,3.42148,5.018451666666667,3.439725,3.094965,3.8473625,5.72035,2.9792,6.005739666666667,4.146745,3.90601,3.784195,8.57434,4.390215,3.517045,4.524265,4.880265,3.40523,9.36403,1.30487,2.05239,4.028965,2.928786666666667,2.928786666666667,1.89728,7.885068333333333,0.9027988888888889,3.458985,0.871865,1.963265,4.38178,4.529525,3.88112,4.238205,2.98927,3.428425,4.328815,3.669225,4.359335,3.21311,2.81326,4.8521,4.985783333333334,3.90993,4.376605,1.6909800000000001,1.625804,2.7361166666666663,5.20375,2.31359,1.6747966666666667,2.00709,4.51734,4.783725,2.912635,2.93925,0.5632866666666667,2.346635,7.37725,3.117345,1.4119233333333332,0.8343975,1.20359,1.9453566666666668,2.0555575,0.7731716666666667,2.0006333333333335,4.2757305,4.3902,5.3687,2.4541633333333333,2.2746075,6.9769325,2.976325,2.0798466666666666,2.0798466666666666,2.0798466666666666,6.3567366666666665,2.136836666666667,3.604825,2.623995,0.4982,1.1520519999999999,2.0889475,5.4075025,0.4646544444444445,3.67828,3.8627450000000003,5.41245,3.0983311111111114,0.4646544444444445,3.0983311111111114,0.99594625,1.255376,5.9867,4.429965,6.8177075,4.399765,4.69715,3.65089,4.07896,5.0223,4.877155,6.28175,3.609775,3.270795,5.13985,4.54818,4.147245,4.51378,5.3391,1.3260699999999999,2.828163333333333,1.2333425,2.3571475,3.30803625,1.60173625,7.339255,5.393303333333334,2.881288333333333,5.0323,2.856605,5.04525,2.85325,4.74476,4.69022,9.5799725,5.8638,4.630855,2.2432975,2.687565,2.22648,0.54408125,2.146154888888889,6.21045,4.868125,4.750825,4.502855,0.620044,2.0914375,1.4321425,4.43707,0.8270384615384615,7.1076525,2.0368025,1.110235,1.110235,3.542262,1.962912,3.8266666666666667,2.703395,4.503515,3.4175275,3.4175275,4.78264,5.779956666666666,2.8130166666666665,2.5311566666666665,3.5234666666666663,4.331835,1.7073260000000001,2.80147,5.94605,5.2921,4.819585,4.490755,3.932455,4.677375,3.73639,3.248476666666667,2.2437625,4.10046,5.57065,3.0722112499999996,5.10465,5.72105,2.07777,2.5793566666666665,6.602,6.936,1.959354,2.7425,2.3007725,2.9010599999999998,2.58915,2.4968125,2.6314175,1.04749,1.8836475,2.499765,2.2364925,2.480455,2.480455,2.9817975,3.0002,2.227744615384615,2.671075,2.4459025,1.987766,1.5687956666666667,4.970855,14.9340925,3.0065066666666667,3.7889,1.7899619999999998,1.7899619999999998,1.6516466666666665,1.6516466666666665,3.11416,3.8363,2.9376599999999997,1.9559725,1.9559725,3.7992333333333335,2.9451433333333337,1.2591766666666666,1.475842857142857,3.0836799999999998,3.0497333333333336,3.926633333333333,2.629537857142857,3.3227499999999996,3.2291866666666666,0.674088,2.62815,3.563841,7.159633333333334,4.840505,4.811305,4.47375,3.46751,4.59908,4.586245,2.88893,4.446045,1.44019,3.256263333333333,5.8711,5.45595,2.69131,1.1297216666666667,2.958965,2.6466533333333335,3.1844433333333337,1.5592866666666667,0.7334642857142857,3.2607866666666667,5.108975,4.676885,4.39853,4.892785,2.9534599999999998,2.0239966666666667,3.322985,2.7511266666666665,3.3997333333333333,3.137843333333333,3.6293,2.5228966666666666,2.6790066666666665,3.5147666666666666,2.7752666666666665,5.2645,4.93215,5.0870575,5.0870575,3.21778,3.82719,3.718915,3.567075,2.645685,5.15845,3.180875,3.06101,6.139,0.7849241666666668,5.1397,4.899675,2.506743333333333,4.887830833333334,3.4064,1.7560333333333331,1.3813085714285713,2.524766666666667,0.9782719999999999,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.27643,0.5356028571428572,0.5356028571428572,1.1554675,0.8359561111111111,1.6554608585858586,0.9901185714285715,0.9901185714285715,1.2255497474747474,0.42991111111111113,0.36685111111111113,1.196475,1.5328025,2.990396666666667,2.49349,7.258823333333333,3.1766799999999997,4.195855,3.5478083333333332,4.696408,1.2775683333333332,4.716085,4.37303,4.369745,3.409575,1.471234,4.009488846153846,3.505365,5.03195,4.600885,2.9294,4.402735,4.491075,4.571825,1.2149480000000001,4.072205,4.96839,3.31275,2.30124,3.23667,2.45072,3.13486,3.8419,3.1604033333333335,4.904615,8.597864999999999,3.1226,5.0223,4.58841,4.489005,2.8083766666666663,3.78195,0.9967628571428572,4.415265,3.155535,1.9386199999999998,1.07577375,2.747245,1.22786,0.5498166666666666,3.7901333333333334,4.188475,5.069190000000001,3.607466666666667,2.395315,3.397535,4.77331,3.8553333333333337,4.339165,2.574275,2.1774299999999998,3.95624,4.32628,4.25791,5.1391,4.55865,3.557975,4.797215,2.9892566666666665,4.59455,2.15743875,4.86269,5.2311,3.23459,3.9697,2.45425,3.66968,5.321,4.562405,5.47175,5.23535,5.0854,2.7205399999999997,5.34705,4.945535,4.700595,2.715475,1.003215,4.166725,4.81777,4.597105,4.83502,1.77778,4.487785,2.240215,5.17,4.685135,5.31755,2.3072875,4.53613,4.71818,4.53086,2.718446666666667,4.76214,5.11805,5.02905,3.784095,2.715475,2.281005,2.843925,4.589265,3.96753,4.30623,3.565845,5.1735,2.34514,6.7016,4.97879,4.402175,5.3135918888888884,4.80875,5.0903,3.4563274999999996,2.5104383333333335,2.5104383333333335,4.43699,4.15556,4.365945,2.2686375,3.2082162500000004,1.08582625,2.75296,3.10084,2.63732,3.3612333333333333,5.022,2.930563333333333,5.5375,2.7344633333333337,4.402085,4.61947,2.116145,4.089725,1.7051833333333333,2.7754766666666666,3.99507,0.905019,5.27555,4.918455,6.729055000000001,4.56529,5.46,1.2403499999999998,4.82923,6.41325,9.02072,3.2267266666666665,3.2589733333333335,1.9687480000000002,0.849734,4.1987,1.0191557142857142,4.50599,4.62134,5.0432,3.227395,4.182145,1.3240914285714285,3.579545,3.57077,4.2311,4.198075,4.68105,4.46748,2.685,4.72793,5.1943,5.91505,4.847705,3.587235,0.36554555555555557,0.36554555555555557,0.36554555555555557,0.36554555555555557,5.28565,2.76358,6.21855,3.16039,5.225,4.67513,3.68127,2.58048,2.4673933333333333,1.54622,5.52475,3.0146866666666665,3.92252,4.470765,3.30014,1.565085,1.14270875,4.54449,2.37459,6.788711666666667,3.853395,5.84735,2.15596,1.498055,0.8646811111111111,3.205005,4.76958,3.316255,2.14174,8.053715,4.147025,3.60103,2.3820799999999998,0.468733,3.47431,2.210805,2.10836,1.93616,3.430785,3.31685,2.607015,3.27002,2.957425,3.584895,4.63935,3.98107,4.361405,4.213985,5.731413333333334,0.648096,4.3875,5.75495,4.94206,4.4432,3.3558333333333334,5.4572,4.5342,4.38532,5.377345,5.4479,4.512295,4.40819,3.6975824999999998,4.53449,3.010065,8.66518,5.05755,4.343645,4.775015,4.825205,5.13215,3.824955,1.0975811111111111,5.981983333333333,3.54192,4.97684,1.4840799999999998,4.246405,4.200595,7.252933333333333,4.906305,3.02241,2.1451,4.30591,1.687272,1.180395,4.222685,6.1046,1.9507766666666668,2.2860066666666667,2.8489066666666667,4.224375,3.45996,3.66686,5.0655,2.30031,4.174675,3.674555,3.16097,3.5917333333333334,3.977645,2.830805,2.521935,2.2470575,2.35208,2.6609966666666667,4.25777,0.5546783333333333,2.482153333333333,4.40899,2.98734,3.6660333333333335,4.43086,5.93425,3.881495,17.317535666666664,2.56094,3.8105666666666664,1.656222,0.845,0.845,0.845,0.845,0.845,4.669495,5.01715,5.22595,9.404501999999999,2.54455,2.54455,4.55481,4.561815833333333,1.2162825,2.12169,4.189865,2.4795425,2.2811475,2.2514675,2.975985,3.846318,2.02927,3.875,0.8370285714285715,2.868323333333333,2.6706233333333333,3.028843333333333,1.7323733333333333,3.1739866666666665,2.584233333333333,0.937635,2.79335,2.772933333333333,1.1563,2.499756666666667,2.7414166666666664,2.20331,4.456047333333333,2.1069333333333335,3.0539,2.22524,2.7493233333333333,1.079691111111111,2.8495966666666668,4.890640666666666,3.4591,1.11825875,2.8678566666666665,1.2957125,2.732153333333333,2.695463333333333,4.642761666666667,2.9818466666666663,2.65123,4.796845333333334,2.74562,2.098565,2.75526,2.688413333333333,1.9234600000000002,2.83268,3.230176666666667,3.189413333333333,2.8229866666666665,3.2439699999999996,2.8383299999999996,2.4903625,3.8222815,3.8222815,2.8573566666666665,1.97508,1.8118699999999999,2.6469633333333333,5.53102,3.167456666666667,1.8861366666666666,1.62625,3.2849766666666667,4.47908,2.55467,0.986556,2.623216,1.51557,2.6713633333333333,2.2125533333333336,3.6336666666666666,2.04555,3.1633366666666665,1.177436,1.52321,1.4087699999999999,4.0591333333333335,2.5807466666666667,4.030455,1.0337866666666669,4.065465,2.0022699999999998,2.59345,1.7416519999999998,1.6813333333333331,3.3369999999999997,24.413754084415586,6.66953,2.6399,3.709055,2.4839233333333333,10.401447333333333,3.0968033333333334,0.99328625,2.5579466666666666,2.4378966666666666,2.3257533333333336,2.7433833333333335,2.6071166666666667,2.63848,0.961318,3.2250833333333335,2.6687833333333333,2.8778900000000003,2.9068199999999997,2.8073599999999996,2.016723333333333,2.1076366666666666,2.82659,2.4888,2.25852,1.668854,5.587065,4.788085,2.4874275,2.8766,2.18752,2.3081566666666666,8.065323333333332,1.8895433333333334,4.929655,2.151585,1.99735,7.46207,2.8968166666666666,2.7759533333333333,2.653325,1.819626,1.4714446153846152,3.3607,3.4934333333333334,4.272445,1.68014,3.7716999999999996,1.5591475,1.5591475,4.03205,4.55511,2.8218557142857144,2.8218557142857144,6.488553333333334,3.329425,0.410606,11.5657080006105,1.21618,0.9297757142857143,3.8614266666666666,1.4988781196581198,1.7294175,6.21528,3.701345,0.7395609090909091,2.116616666666667,4.97308606060606,2.6041250000000002,4.35239,1.3665242857142859,5.66255,5.18705,5.42635,3.72205625,2.0065,2.65209,2.64834,2.5980733333333332,2.2064399999999997,5.106103333333333,4.993985,4.90994,1.8379175,4.81841,3.92784,3.0966400000000003,2.43648,4.978005,2.838893333333333,8.215236666666666,7.1964925,1.9357925,2.60567,1.8381699999999999,4.468966666666667,4.468966666666667,3.3706,3.0602966666666664,3.4611029999999996,4.924405,9.46011,4.35324,2.4389475,5.5485,4.202555,5.22615,2.0458600000000002,0.84747,1.3182116666666668,4.478235,4.82105,3.7654,3.003906666666667,3.9294,2.0730866666666667,3.92137,4.381555,3.369265,5.8581,3.2303266666666666,4.0407166666666665,3.511533333333333,3.2440466666666663,3.526666666666667,6.2389,3.032125,5.5477,5.2404,3.1133,3.3605,3.3605,5.781376666666667,12.3127275,3.5744000000000002,6.14902,7.336495,3.52428,2.4311266666666667,3.812555,1.24301,3.66527,2.130835,2.9304,2.9482866666666667,3.385066666666667,2.15864,2.580103333333333,2.8586466666666666,2.9463899999999996,3.1658733333333333,3.087763333333333,4.11431,2.532966666666667,2.8592066666666667,4.08315,2.9616566666666664,3.0907666666666667,1.21314875,2.1085,2.92067,2.6436066666666664,2.5141633333333333,2.4142233333333336,3.735333333333333,2.48455,2.5180700000000003,2.8777266666666663,2.9812333333333334,2.9141366666666664,3.18938,2.6343466666666666,3.17128,2.76695,3.226712,2.6006233333333335,2.5225766666666667,2.3571433333333336,2.5541533333333333,2.53145,3.293113333333333,3.1827400000000003,2.521855,2.0250425,2.0250425,0.7007383333333334,1.645656,4.35029,3.10621,2.650113333333333,2.15864,3.4937,1.2987714285714287,2.873423333333333,0.5912906666666667,3.3144466666666665,3.2042533333333334,3.210895,2.9832633333333334,2.5583266666666664,2.7538866666666664,3.08827,2.59993,3.5140333333333333,5.107943333333333,1.54813,2.5191433333333335,2.401456666666667,1.7456333333333334,2.1502333333333334,2.9483099999999998,2.7957466666666666,1.7902239999999998,2.59679,2.65498,2.780303333333333,2.833223333333333,2.854293333333333,2.805336666666667,3.3634,1.4101725,2.956186666666667,2.3755466666666667,3.701333333333333,3.5334,2.023285,1.8998133333333334,3.4463666666666666,2.76009,3.451233333333333,2.56248,2.68927,5.137085,3.06935,2.1017,1.566178,3.3037566666666667,6.115119999999999,2.9626,3.403233333333333,2.844196666666667,3.287546666666667,4.601253333333333,1.56911,1.261388888888889,2.9168133333333333,1.9269808333333334,4.77051,3.1474966666666666,3.325223333333333,2.91487,3.283,2.56411,3.4882000000000004,2.3837325,1.662812,3.0466833333333336,3.35222,3.7329749999999997,4.069985,3.91369,1.5812625,2.645605,3.259,3.389765,2.5197433333333334,3.5544333333333333,4.051266666666667,3.8430666666666666,1.475515,5.683033,3.2740712500000004,1.5949716666666667,3.511215,3.396,2.997015,3.93503,1.833002,1.833002,3.20591,2.8934366666666667,3.75196,5.3265,4.200735,4.565868666666667,1.258332,2.979033333333333,2.5994366666666666,4.041017500000001,2.9882866666666668,4.738375333333334,2.7503733333333336,2.3115966666666665,2.593856666666667,3.355095,4.79765,1.6501000000000001,3.0827500000000003,3.28389,2.3494,4.781005,1.2550966666666665,3.91672,4.43167,2.588255,3.44078,4.11616,1.6022825,1.5766799999999999,2.5574,1.1722166666666667,2.2148409523809525,2.1399125,0.4220371428571429,4.50322,3.255625,4.43759,4.285775,2.7537,4.514765000000001,3.2247266666666667,3.294643333333333,3.5941666666666667,2.5210333333333335,3.2480166666666666,3.00543,3.3094900000000003,2.2310866666666667,0.6707807692307692,2.2570333333333332,0.6514878571428572,1.8794633333333335,2.4793866666666666,3.16903,3.082663333333333,1.4801866666666665,1.53155,3.945385,4.547,3.57576,3.3071624999999996,3.30093,2.0343825,4.070005,7.698028888888889,3.84923,5.8293800000000005,1.4466175,3.922605,1.88749,4.03805,4.006745,2.163905,4.021145,3.216365,4.005335,4.102675,2.1534175,4.076125,6.4525375,5.4193,3.38596,3.408875,1.563245,2.0336425,3.89639,3.47874,3.033915,3.60022,3.710235,3.86639,1.8049425,3.860995,3.405625,1.906945,4.496924999999999,0.9402916666666666,3.80341,1.6398425,4.341575,4.684525,3.70116,2.704645,3.93467,3.46542,2.170555,2.294215,3.7914999999999996,2.39652,5.8032449999999995,4.17721,4.438525,2.745665,2.77721,4.68968,4.20428,2.400066,2.400066,5.938406333333333,3.9483505,2.7528525000000004,3.101445,2.175333333333333,2.80379,3.503905,3.698365833333333,2.710248,3.630135,0.9348979999999999,3.90633,2.991455,3.98299,3.077375,1.521985,1.57833,3.31936,6.115086,5.4209075,3.387265,1.415985,3.890095,3.629515,0.8231616666666667,3.13694,1.151488,5.8370774999999995,1.5116833333333333,4.29108,2.058275,1.4801866666666665,3.22042,2.993255,4.33802,7.122465,4.51013,4.9029058333333335,2.64155,2.945025,4.83457,3.96778,4.77124,4.341935,0.9293775,1.7503115,1.1723775,2.45474,2.002245,4.55098,1.1723775,4.954005,2.324025,1.4341675,1.4341675,1.906945,4.06213,4.543525,4.14434,1.708334,1.708334,0.9575816666666667,3.22642,2.0742075,5.9164925,4.51569,3.56624,2.9712533333333333,1.0473014285714286,3.551595,2.677355,4.24677,3.82207,4.23798,4.23798,3.386575,3.997775,2.01834,2.495285,0.9793133333333333,2.17092,3.689585,2.5122966666666664,3.4508666666666667,3.4508666666666667,2.71803,4.724955,4.68284,3.27285,3.556925,4.239795,2.5801766666666666,4.569614166666667,2.911695,3.92793,8.957844999999999,5.0571,2.78188,3.13079,3.29071,5.0732,3.167922,7.186395,4.548563,4.473355,3.417055,3.80197,3.9577,4.602895,4.71781,2.38501,4.17803,6.335228333333333,2.596815,1.9816828888888889,2.93915,3.35792,3.54288,4.776445,2.26735,2.3155566666666667,2.8569,3.0762025,2.7072033333333336,7.249934666666666,1.5217,4.843563333333334,4.843563333333334,3.57401,3.8592733333333333,3.064505,2.578793333333333,5.54961,4.418721,2.144762666666667,3.828645,4.20528,3.3684275,3.21523,3.223605,6.3942499999999995,3.219015,5.2191,2.708975,4.48737,4.143715,3.85482,2.8934366666666667,2.0596633333333334,2.680725,4.316285,2.82052,2.92115,2.901735,6.381626666666667,2.603285,1.9413825,3.4516691666666666,2.52062,4.03615,2.69284,0.8231616666666667,3.267065,4.060145,3.85012,5.7896575,2.999975,2.669905,3.0257233333333335,3.0257233333333335,3.670975,4.44679,4.010275,2.0824375,6.51169,2.0404975,4.500395,3.785775,7.68172,2.7912466666666664,1.3015433333333333,3.58005,4.26663,0.71780375,3.879645,3.016415,3.012945,3.035815,4.574815,1.9463566666666667,2.46511,8.944795000000001,3.413945,2.726225,1.5116833333333333,3.28587,2.67842,2.4331725000000004,4.011045,5.154255,1.70822,1.2195183333333333,1.056265,4.13725,3.95167,3.48754,3.7215175,3.7215175,1.8049425,2.26023,2.9447288888888887,0.8594788888888889,2.794995,1.139115,1.5812625,3.107955,3.591325,2.459725,2.54701,2.4188850000000004,4.20263,3.74891,3.101375,3.017875,2.54097,4.24708,6.455335,3.98933,0.896125,2.5455735,8.53443,4.70279,3.848275,1.0558575,4.829678333333334,1.3750683333333333,3.3455425,3.3455425,3.493085,8.611011666666666,0.8348888888888889,4.680395,4.690175,2.0658766666666666,4.057949166666667,4.500945,2.1804675,9.953687666666667,1.8534725,2.2345866666666665,2.956205,1.6708366666666665,4.220958916666667,3.286415,3.530385,3.4310359999999998,3.174675,3.703745,1.1403466666666666,7.16282,4.067335,4.35034,4.21565,1.9500825,2.704645,3.628461666666667,3.9787,0.6655915384615384,4.568595,4.61135,4.952405,2.0152375,1.4071859999999998,4.480345,4.202875,8.32083,0.6403838461538461,1.0750575,1.0750575,1.63698,1.37399,1.323988,1.6974633333333333,4.786005,1.1627033333333332,0.8509671428571428,3.93124,3.55011,1.2853775,3.54275,4.6264,3.63498,0.62488,1.89989,10.315215,3.192845,3.629275,2.786465,1.563135,2.4028266666666664,2.774105,4.52073,4.30579,3.895685,0.8914785714285715,1.480692,0.914614,4.5694475,4.228295,3.97146,0.8594788888888889,1.8029579999999998,3.953575,2.1719585714285716,5.2102691666666665,1.0655725,4.67025,0.5720283333333334,0.5720283333333334,0.5720283333333334,10.045415,4.039975,1.139115,3.782125,4.489835,3.41159,3.483055,4.251855833333334,2.737565,1.9494727777777778,2.078256666666667,0.62488,1.4480416666666667,0.5158111111111111,0.771115,1.2095766666666667,3.46217,3.914725,2.1895575,7.3966666666666665,4.773344166666666,0.6532488888888889,5.6114,5.205633333333333,3.849205,4.648115,7.565635666666666,3.711788869047619,4.773344166666666,4.506594416666666,2.4571866666666664,4.31311,3.5763,6.8016499999999995,3.40655,0.468733,1.3284340000000001,3.803545,1.6632799999999999,1.2195183333333333,4.052245,2.2962766666666665,1.69417,3.32881,1.630648,4.404955,4.21676,4.10124,4.629825,6.48863,2.838395,3.9787,1.151488,2.326235,3.86625,3.09511,2.144762666666667,4.16105,2.456405,4.81205,2.799855,2.29915,3.404395833333333,1.755236,3.933935,0.8594788888888889,2.17796775,1.056265,1.882225,3.40069,1.5217,1.2095766666666667,2.3612325,3.075285,7.72012,0.8914785714285715,1.0558575,1.306602,3.598985,4.07903,1.306602,3.916295,2.326235,0.71780375,0.8594788888888889,1.63698,1.151488,0.4220371428571429,1.5989499999999999,4.081833333333333,2.0658766666666666,1.4070066666666667,2.986155,1.475515,1.8534725,2.6390883333333335,2.078256666666667,4.49192,2.6390883333333335,0.8231616666666667,2.665095,2.617525,0.09768181818181819,0.09768181818181819,0.09768181818181819,0.09768181818181819,0.09768181818181819,3.491766666666667,2.70264,2.6974633333333333,2.9642733333333333,4.981035,4.03266,1.7416519999999998,3.58538,3.455765,2.11245,5.15846375,2.57165,2.37449,2.40211,2.615905,4.44221,8.140496666666667,2.4878,2.06854,3.1215014285714284,0.9797714285714285,1.36447,2.24147,1.8902400000000001,1.4734425,2.660016666666667,2.2749533333333334,2.437116666666667,2.6885499999999998,2.659333333333333,4.006255,3.681205,2.624093333333333,1.213268,3.70852,3.70794,1.5021566666666668,1.3521079999999999,1.3521079999999999,1.3521079999999999,3.694435,2.757846666666667,1.0417699999999999,2.1918433333333334,1.2762414285714285,4.31598,1.5772633333333335,6.907426666666666,3.2648625,2.9783566666666665,3.1893659999999997,3.1893659999999997,5.507326666666667,2.961995,4.6294,5.22335,2.3649075,3.2567766666666667 +GSM1946762,0.0,1.9843175,1.9843175,1.6241933333333334,3.79537,6.2397,2.3776709210526317,1.7151966666666667,7.154597990196078,4.42427,3.0679,2.930095,2.458675,3.368975,4.1721,1.8113920000000001,1.494402,4.8683,2.58344,2.2488625,4.331525,5.296605,3.80913,2.238825,1.731962,3.94587,4.33813,4.3736,0.6160616666666666,1.5468055555555555,1.7574972222222223,1.8593125,1.538525,1.0998228571428572,0.6937016666666667,3.086842857142857,1.5561175,1.78045,1.1596825,2.121415,1.040165,1.0613,1.0832760000000001,1.476384,0.9176439999999999,0.9268000000000001,0.7625040000000001,1.1988257142857144,1.56156,1.837892,1.511378,1.956418,1.674964,18.221629166666666,0.381824,0.82241,1.094124,1.82938,1.417014,1.759808,1.0794614285714286,1.0794614285714286,1.0794614285714286,1.180355,0.965916,4.6008325,1.0689425,2.2939775,2.00614,2.3448475,0.925831,2.136305,2.1979725,2.03652,1.422575,2.0790125,1.6024225,1.725455,2.4989433333333335,3.682115,4.80809,5.38945,1.7874533333333333,4.383545,4.431715,4.15102,4.231115,1.06918,7.59537,0.611959375,0.611959375,2.235625,1.0374357142857142,15.686005000000002,4.92462,5.29825,5.7782,4.339295,4.250735,5.2183,0.4587794444444444,2.3255974999999998,1.802365,2.274055,4.36326,3.51834,1.5277375,3.2364266666666666,3.7891999999999997,3.07208,3.4820333333333333,3.579395,4.408715,2.7750440000000003,4.285265,2.9347066666666666,0.7185163636363636,1.7286059999999999,2.582925,4.97882,3.44367,0.530118125,3.594695,3.71597,0.79829375,4.509395,1.7194602597402597,2.133145,2.723975,2.10613,3.862935,5.80035,3.46263,2.67252,3.3334333333333332,3.0676400000000004,4.08048,2.8901533333333336,5.4744,3.48981,4.35659,3.16512,2.478975,3.73325,2.35838,6.938794999999999,3.52298,3.39398,5.861,3.131125,4.787385,0.7825044444444444,9.580272857142857,3.58528,1.8706866666666666,1.8850916666666668,3.086516666666667,2.52444,4.39707,5.51115,2.18103,5.104585,2.76806,4.295415,2.18103,2.9964566666666665,4.434155,5.236539166666667,3.49887,9.144833333333333,3.674845,5.01205,2.953075,4.932475,4.412775,1.7723166666666668,8.54246,4.246615,4.12566,3.740455,3.771605,3.339905,2.18801,6.169205,2.301685,3.874775,4.01992,4.95631,4.780575,3.200895,1.31904,2.797295,2.828895,1.8811825,1.8811825,5.986812047619048,3.099645,1.8744233333333333,4.354905,4.44876,2.72047,1.5042466666666667,0.7936977777777777,6.95725,2.981815,6.919,2.983675,3.87047,3.80821,3.224585,3.92206,3.550735,3.974165,4.08632,5.64355,2.891065,3.69729,9.111113333333334,4.610705,3.5299333333333336,3.096956666666667,2.74781,3.8698,4.342443333333334,1.82083,2.6562733333333335,2.0366933333333335,1.7087499999999998,1.7627433333333336,2.6969133333333333,1.7260625,1.7960475,2.846106666666667,2.5998466666666666,2.3663933333333333,2.7617833333333333,4.431715,3.518485,3.24542,3.43641,4.37874,1.1796200000000001,2.19609,2.898117142857143,1.9849640000000002,2.5742499999999997,2.19744,3.4,1.60895,1.3182733333333332,2.6705,0.660796,1.6160866666666667,0.5241766666666667,0.5241766666666667,1.4710666666666665,2.5894933333333334,2.1319733333333333,1.2587066666666666,1.5763033333333334,0.3043176923076923,2.791793333333333,0.660796,1.24458,0.19092297297297298,1.4888466666666667,2.0702225,3.5932999999999997,1.9692133333333333,2.134236666666667,2.5707666666666666,2.28595,2.4345133333333333,2.5576766666666666,2.3505266666666667,2.230523333333333,2.679233333333333,1.9772833333333333,2.74766,4.18207,0.6968683333333333,1.7858866666666666,2.5861933333333336,1.9184866666666667,3.4628799999999997,1.5144980000000001,2.6561966666666668,2.2034566666666664,4.36228,1.9944633333333333,7.325166190476191,1.6109428571428572,2.94342,2.1532525,1.96029,3.1784,1.8540675,1.92701,3.97195,2.5871333333333335,2.074625,3.83713,4.03042,4.41525,3.76695,2.322565,3.314365,4.278394,3.907435,3.97603,4.11167,4.31729,3.046975,4.43009,3.55198,0.91156625,4.788915,1.2581816666666665,4.792425,3.896345,5.798799000000001,3.828695,4.388645,0.9776725,2.243835,3.53348,4.17736,0.7994971428571428,1.1331225213675213,2.090467380952381,3.5603797142857143,5.35023,5.572046,2.162615,2.88939,4.98767,0.33881,3.48505,2.50982,0.98416625,4.74842,2.058965,11.279465,1.19617125,1.315015,1.8640266666666667,2.406865,1.921111315789474,4.435611315789473,0.3333463157894737,1.6987500000000002,2.9102033333333335,1.032135,3.7573333333333334,1.07022,5.13725,4.025835,2.1158266666666665,6.21845,5.66075,3.03065,1.1390814285714286,4.466685,5.2139,4.305785,0.8516263636363636,7.519293333333334,2.6916933333333333,4.42556,2.634446666666667,2.49384,4.44355,2.2995666666666668,2.4982466666666667,2.136913333333333,2.4804333333333335,3.16383,2.91638,0.350674375,3.94599,3.78072,3.86416,3.905895,4.55792,5.9920800000000005,4.146775,1.667815,5.6533,4.29286,4.525145,4.160485,1.0185083333333333,2.6602799999999998,3.0131666666666668,2.29507,16.349205,3.280115,3.971295,4.360265,5.68295,2.722705,5.1193502777777775,1.692325,0.7895255555555556,2.6763,3.260065,3.410215,3.83229,6.326671666666667,2.8014966666666665,2.353015,2.188905,3.30227,4.713675,2.3213875,0.36190254464285715,3.367120434782609,1.9396775,1.1529775,0.5301377620341615,0.6983729794254658,0.36190254464285715,0.36190254464285715,0.36190254464285715,1.1088075,1.2943275,1.0066125,1.5334275,4.3354125,0.22288088235294118,11.07915948051948,3.7334333333333336,2.7714766666666666,3.986365,3.917685,3.86256,2.21085,4.53715,3.869985,3.99031,3.89649,0.6694092307692308,3.330023333333333,4.169182051282052,0.53405,3.625365,2.6867099999999997,4.338825,0.48554363636363634,1.77345,4.5699,3.441465,1.8143225,1.8627200000000002,1.5096,3.1644433333333333,4.03003,3.076055,2.82869,5.7326,5.4519,4.81372,3.3379999999999996,3.1444384999999997,6.640733333333333,3.6924333333333332,4.79774,0.41883238095238096,2.9932966666666663,3.925335,2.07794,2.671515,2.9064474999999996,5.339746666666667,0.5900258333333334,2.851275,4.20714,4.34659,1.0570185714285716,4.73203,2.76941,4.638645,3.11338,4.165595,3.48504,4.37688,1.1633716666666667,3.415575,2.851036666666667,4.676435,4.0528,4.58751,5.80105,4.63802,2.76438,5.01364,2.4310766666666668,2.84981,3.084213333333333,2.501726666666667,2.5517066666666666,2.2810366666666666,1.712854,1.5589966666666666,2.04977,0.7891628571428572,1.4010433333333332,2.0409466666666667,1.9870633333333334,2.95266,3.21557,2.62745,0.9040877777777777,5.268,3.380433333333333,5.256635833333333,2.5527125,3.0623766666666667,2.9150233333333335,1.7072666666666667,1.7072666666666667,2.594051818181818,2.594051818181818,3.5046975324675325,0.5340157142857143,1.7825966666666666,2.1417333333333333,3.7449333333333334,2.179446904761905,2.179446904761905,2.179446904761905,7.381619226190477,4.369880952380952,0.9633363636363637,2.301375,4.9031075,2.406095,4.669205,3.27562,2.314315,4.02313,3.018853333333333,2.94643,1.109515,1.9499433333333334,3.5167333333333333,2.1466566666666664,2.5386633333333335,5.68695,4.250900000000001,3.8502666666666667,5.100783333333333,1.9816166666666666,2.7693166666666666,3.0234199999999998,0.94498,2.2448266666666665,4.682897333333334,8.02712,1.55597,3.054425,4.711885,1.750008,1.755165,1.755165,0.913895,4.57121,7.319905,3.990265,5.336983,4.284405,1.7379,3.751035,3.036325,4.48346,4.999843333333333,0.3675342105263158,2.948075,2.513285,3.81218,3.782295,1.8219239999999999,1.93163,2.480165,4.21771,4.174255,2.976775,2.54739,1.3498459999999999,6.65498,5.17835,4.63029,3.398285,5.34715,4.669755,4.35865,3.72289,3.8881525000000003,2.0271,1.063062857142857,2.725035,4.11955,3.8334,5.9152525,5.6511499999999995,2.44768,1.7152666666666667,2.798883333333333,2.8370933333333332,3.0654566666666665,0.697992142857143,2.07279,3.79205,1.10551875,4.87174,3.233915,6.2466099999999996,1.3577851515151516,1.3577851515151516,4.054375,3.808965,3.898735,5.6003,2.7990866666666663,2.2851,4.010295,2.949775,2.13504,3.3782,2.409796666666667,4.217965,3.285675,3.75636,4.47283,1.0828155555555556,2.611945,4.223195,4.68298,3.282,2.5787133333333334,1.572645,0.7881944444444444,0.7881944444444444,0.7881944444444444,0.7881944444444444,1.558646111111111,3.7065650000000003,3.7065650000000003,1.6941033333333333,6.515525,3.09442,4.21511,2.9373133333333334,2.76505,4.780205,4.02427,4.68027,5.16475,1.7678225,3.92509,3.620535,2.59438,3.047605,3.441855,2.52916,3.897515,1.75974,4.73209,1.6521,3.4025654166666666,3.093145,1.795045,1.1686933333333334,2.81099,4.354025,1.206636,0.8502144444444445,3.365275,1.3239825,4.79047,4.373455,1.2786557142857142,3.50944,0.7540066666666667,2.6005366666666667,2.4848266666666667,2.34867,2.62797,3.829345,2.771681666666667,4.60237,5.5499,4.371195,4.336505,1.9674,1.2656485714285715,3.99974,4.802545,1.3902325,1.3902325,4.11094,0.27060399999999996,2.5776600000000003,0.27060399999999996,0.27060399999999996,0.27060399999999996,0.27060399999999996,5.13785,2.69196,2.95697,3.78711,2.997866666666667,4.313165,2.5944933333333333,0.9371075,0.9371075,0.9307683333333333,0.9307683333333333,3.8697,1.888305,4.5148,1.49295125,1.49295125,4.92968,0.5242128571428571,2.70615,7.45571,4.69333,3.32991,3.27077,0.90765625,2.32029,1.9281825,4.28127,4.04847,4.081885,4.009715,1.3062742857142857,2.73864,1.8976375,7.66266,1.79867,4.501505,4.52206,2.96149,3.923135,6.34483,7.76032,4.02169,4.33563,4.10077,2.4003625,3.204815,2.308425,2.338015,1.855765,3.953685,3.41488,5.425201666666667,6.25606,4.040115,1.1238766666666666,2.360785,3.42899,3.723325,2.1777475,3.98537,3.0533,4.7099,1.7580933333333333,4.068366666666667,1.5388566666666668,6.416493333333333,2.86998,2.4355599999999997,2.32964,2.283765,3.4194666666666667,3.24637,3.2193733333333334,2.687836666666667,3.30282,2.33372,2.997985,3.095045,3.17193,0.38611650000000003,2.957285,3.66361,2.594275,5.42805,4.92988,4.533935,6.686781,4.52083,2.244823333333333,4.008865,5.2687,1.5658783333333333,4.342235,5.5678,5.25945,4.571455,3.224525,5.35585,4.91049,3.695285,5.309621333333333,7.394995,3.98907,1.1431516666666666,1.4049183333333335,2.56588,1.783486,4.38248,3.96605,4.683612500000001,2.5526666666666666,2.460996666666667,2.7120433333333334,2.4260633333333335,2.12888,0.9879833333333333,0.5129282352941177,3.625745,4.140065,3.632433333333333,4.1172,2.98676,3.3197799999999997,5.227378333333333,2.966756666666667,0.5739058823529412,3.0408,5.32755,1.6769175,1.6212620000000002,3.808595,3.23195,2.548713333333333,3.6344,3.69487,2.6993566666666666,2.2531666666666665,2.3322533333333335,2.50677,2.77714,4.255573333333333,5.162777500000001,6.0618636666666665,1.365784,4.522125,3.1644629166666665,4.852846583333333,2.3389266666666666,3.156295,2.322325,1.6873733333333334,1.4635475,1.4635475,2.721276666666667,2.3749233333333333,2.8085533333333337,3.87845,1.6751740000000002,2.259315,1.951405,0.40962375,3.49281,0.5582775,0.8442975,3.519065,3.66731,3.69672,1.7078325,4.519475,3.0628233333333337,0.7353071428571428,4.168875,3.7228585714285716,3.1889466666666664,2.514445,4.967075,0.26369827586206895,2.1528816666666666,3.18318,1.4726225,3.737425,6.6073,2.39978,1.4399666666666666,4.145955,3.87751,2.785246666666667,2.785246666666667,3.612125,2.461295,4.46081,5.610133333333334,5.01995,0.9522788888888889,2.74765,2.39256,4.33306,4.974235,5.40485,4.78302,4.3649,3.811866666666667,3.6674666666666664,3.558066666666667,4.075633333333333,2.96583,3.02376,0.577512857142857,2.26721,2.345775,3.563295,2.8538266666666665,3.18506,0.7331175,2.997555,3.9512944999999995,4.74471,5.7553,5.1372,1.7846575,1.7846575,0.7908229999999999,3.00358,4.608745,3.595155,4.07784,3.18824,4.424855,0.5709072727272727,3.03284,3.596875,4.3491,3.991181666666667,0.8147557142857142,2.68985,3.91839,5.504,3.868825,4.851035,2.79962,4.14153,1.5192175,0.9935642857142858,2.7070866666666666,5.3231,4.51592,3.150305,1.425795,3.95322,2.448165,2.525075,2.7965675555555554,3.022906666666667,4.691176666666666,3.10113,1.869892,3.3839333333333332,1.4911670238095238,2.9444533333333336,2.5316033333333334,2.32852,2.83656,2.9713999999999996,2.25163,2.7850866666666665,3.661585,2.94197,3.591895,2.3130966666666666,1.767365,4.128323333333333,3.04979,2.4463266666666668,3.591895,2.0541199999999997,0.7781572727272728,2.344085,1.0212244444444445,2.2308875,1.47649,0.9457636363636364,1.6081375,1.60537,2.72760625,2.6257,4.474425,1.5670325,4.99935,3.018053333333333,1.6186440000000002,2.2914133333333333,2.4429166666666666,1.67584,2.59877,2.7359266666666664,2.519379318181818,1.9677075,1.7927779999999998,3.6417,2.26152,2.8576361111111113,3.3100466666666666,3.0405833333333336,3.4736333333333334,2.050003333333333,4.058433333333333,3.506933333333333,3.7033666666666663,2.7769333333333335,3.4941333333333335,3.6748333333333334,1.7590766666666668,10.56475,3.95084,4.158315,3.34615,2.76947,2.05017,4.02761,1.6222660000000002,3.996445,4.17356,1.371572,2.48107,1.1128500000000001,2.2804233333333332,1.65949,2.32945,4.8932883333333335,3.1661266666666665,3.76306,4.819075,0.72839,1.4094760000000002,0.960551,3.587615,10.131408333333333,3.4037333333333333,6.75915,2.0745425,5.2133,4.08791,2.4466,4.83443,0.30329117647058823,0.8488242857142857,4.603465,4.06991,7.344735,1.966985,4.421785,5.7541,4.691175,4.59126,3.378495,4.29729,3.325155,5.810598333333333,3.450515,3.090575,2.990175,2.0869466666666665,1.9142400000000002,1.404414875,2.4971166666666664,4.11041,4.65359,1.567118,9.3814,1.8456966666666668,2.8972724999999997,0.956342,0.956342,6.99758125,2.911525,2.3466075,2.2214925,2.529593333333333,2.1858633333333333,1.2115533333333333,3.536505833333333,2.630133333333333,0.6086185714285713,1.7495,3.373202,3.373202,1.1518266666666668,2.5854399999999997,2.2768366666666666,2.589293333333333,1.350305,1.77803,4.604188,2.5994266666666666,2.62385,1.244665,1.244665,3.687895,5.86155,4.23013,3.27724,3.894695,5.56776,2.82651,2.91676,2.9623066666666666,4.126485,1.1581316666666666,3.15526,2.572275,3.828065,2.1851066666666665,4.934165,3.5506,4.39176,3.57076,5.491759999999999,0.9108399999999999,1.891215,1.776205,3.731205,4.18319,3.699965,3.815295,3.456925,2.47578,1.7338775,4.228755,3.359435,3.340475,2.5280666666666667,0.83798,3.37802,4.1451,4.70041,1.2228833333333333,2.7179066666666665,2.286233333333333,1.7952599999999999,1.7821909803921567,1.7821909803921567,1.1985633333333332,1.96396,1.13629,1.3794119999999999,4.349985,4.25937,0.47585142857142854,3.505145,3.5887333333333333,3.907555,5.2774,0.415949,9.303294999999999,5.4118,2.7302,3.90312,4.46598,5.372150714285715,4.954685,6.81649,0.6682554545454545,2.5968466666666665,5.2868,2.6692066666666663,1.69435,2.0274,4.40076,5.0228762499999995,2.450450714285714,3.6169666666666664,2.913156666666667,1.7988275,4.259435,10.47115,8.15292375,3.9931,4.448315,3.10629,3.305345,3.938185,1.8525459999999998,3.1446799999999997,3.726595,4.48611,4.669745,4.97836,6.605513333333334,2.0184366666666667,4.860465,4.461835,4.96169,4.35781,7.384538333333333,3.9791074999999996,5.8093,3.511285,2.9049,2.98518,5.79845,3.703495,4.856835,2.144825,3.1173566666666663,3.375445,5.6445,4.13414,3.41032,1.501134,0.92595875,2.3120475,0.5349533333333334,3.843365,3.64975,3.60607,2.84845,2.1263833333333335,2.957475,2.670475,3.0945240000000003,1.9399260000000003,3.1185287500000003,2.828625,2.2284825,2.61155,3.834452,1.2671816666666667,2.7919466666666666,5.0875,3.8844666666666665,1.185455,2.907723333333333,3.6872808333333333,3.712664,1.5425875,5.59135,5.12795,2.1112266666666666,2.9952966666666665,30.21287507069401,3.381266666666667,1.7565,3.937666666666667,1.6031066666666665,2.62162,2.9620833333333336,3.3485666666666667,2.022265,2.75225,1.757125,4.257595,3.2868666666666666,2.45586,1.47456,2.29652,2.876,0.378035,1.1478325,2.808073333333333,1.552502,3.397735,1.5425875,1.9514666666666667,25.291330000000002,5.09515,3.6212,3.57897,2.47487,2.4757225,2.55773,2.31092,3.4362,4.816327,5.3148,1.585382,1.635568,2.13262,2.2487083333333335,3.7899575,5.20455,4.65993,4.36069,0.16991021276595744,4.92503,4.7707925,3.853735,8.61723,1.0861325,1.0861325,2.9763966666666666,2.836045,5.57045,1.869731111111111,0.9730777777777777,4.479785,1.8949775,4.082685,3.85794,3.375365,4.035035,3.98177,4.93269,3.014805,0.7122233333333333,3.20037,2.2454091666666667,4.267085,7.817435,4.16115,1.6430766666666665,1.6430766666666665,6.86156,4.541285,4.271775,5.04845,2.2617833333333333,4.989474166666666,1.3613966666666668,1.50776,3.07231,2.41939,2.971705,2.7802466666666668,4.002155,4.3869925,3.853525,5.5456,2.2682775,2.80585,1.8760075,2.5641,2.4638675,1.9884525,2.177645,4.882511666666667,1.79503,3.500179523809524,2.443093333333333,2.8859100000000004,2.6814366666666665,1.7444333333333333,1.4278128571428572,0.952718,2.47857,3.944433333333333,0.6975629999999999,4.491325,1.761895,5.798595416666667,1.9170175,1.607155,1.45809,1.4624300000000001,5.606061666666667,1.866286,2.976483333333333,3.6344333333333334,1.188155,1.7335725,5.035344,3.2132966666666665,1.9492233333333333,3.4943000000000004,2.69413,2.7433666666666667,1.27627625,0.2575716666666667,0.2575716666666667,0.2575716666666667,0.2575716666666667,0.2575716666666667,3.54673,2.6980166666666663,2.6272,3.4236,1.4761533333333334,2.72458,2.9624966666666666,2.11635,3.575635,2.9824,1.7175566666666666,2.9466066666666664,3.2065,2.094855,2.0115875,3.75439,2.7675,3.8373000000000004,4.920145,2.5959066666666666,2.6162633333333334,2.526333333333333,10.828365,4.34574,4.29314,4.852935,4.179995,2.9675333333333334,5.1742,3.89396,4.513495,5.293193333333333,3.68128,3.027755,2.205035,3.277595,4.791174428571429,3.32986,17.795486928571428,1.05016875,4.17768,0.8694144444444444,1.2794125,2.788875,4.51451,4.297605,4.62065,1.5857266666666667,2.40101,4.2819,1.8766566666666666,4.564665,3.028788214285714,2.5568466666666665,0.6345983333333333,2.8803466666666666,4.696295,2.371525,2.36769,2.1325275,20.176878333333335,1.184982,1.371525,2.6564866666666664,0.27927115384615386,1.83584,2.8252466666666667,1.91446,2.9144733333333335,2.641275,7.1994325,1.92862,2.500375,2.25055,2.04704,1.5938016666666668,3.1914533333333335,3.18029,3.912855,2.97273,1.89847,2.6933070833333335,3.079901111111111,4.999165,0.42517333333333335,3.8043,3.0203,2.998035,1.9003275,3.647582,3.623055,1.5809133333333334,2.3652,2.1952966666666667,1.5079533333333333,1.7939100000000001,3.383395,3.393355,0.7959583333333334,3.41421,4.724195,4.013395,2.26978,2.26978,2.9929566666666667,4.042395,3.277875,3.387555,2.367475,0.8519436363636363,4.1426,3.67107,6.0658,3.6538,2.4088139999999996,2.4088139999999996,1.248685,3.494935,4.977835,4.33753,4.256575,3.0444633333333333,2.2394700000000003,4.349335,3.142375,4.020775,2.7947733333333336,2.084286666666667,4.255753333333333,2.91174,2.70724,1.9297633333333335,3.438735,2.584675,1.75819,3.807655,3.013975,4.291375,3.6309,5.2172,4.22089,6.138086250000001,3.93383,2.00406,4.39254,2.37983,6.89902,2.4458333333333333,1.15928,4.45963,3.7626333333333335,4.704335,0.54415,0.8060691666666666,3.559475,3.5918,1.9845375757575758,4.38411,2.998915,2.938845,8.608262,1.888072,1.251562,3.65942,2.64121,3.490365,5.0296,6.432684999999999,3.2373149999999997,2.146646666666667,2.8691333333333335,1.8064533333333335,3.1317799999999996,8.38003630541872,0.9448295238095239,0.98989,4.367415,0.45203133333333334,1.572585,2.0024675,2.996325,3.089,2.964075,4.72992,2.255215,12.353584999999999,5.14162,2.5414,2.5414,4.15679,0.8666333333333333,4.524190000000001,3.82764,4.225285,5.449401666666667,3.515285,5.73175,1.4099199999999998,2.74222,2.736595,2.647355,3.032595,2.663065,3.16461,3.602775,3.64598,3.05721,2.84586,3.01829,3.93533,4.146905,2.8196499999999998,3.213616666666667,4.664838333333334,4.247235,17.612046785714284,11.266453214285715,3.0668785714285716,0.6879883333333333,1.4587571428571429,4.53939,3.460635,3.0213558974358974,1.75225,0.8481611111111111,0.6448333333333334,0.6442128571428573,2.034495,1.586134,5.373463333333333,3.1335266666666666,0.7188863636363636,3.44676,2.36879,1.6625975,1.6784579999999998,6.717409999999999,1.563236,4.381675,2.666895,2.90775,2.31072,2.667173333333333,2.6011366666666667,0.7293172727272726,3.15815,2.8734033333333335,4.032792,3.01676,7.596375416666667,3.78692,3.38245,2.503125,3.386525,5.901517500000001,2.007595,2.428255,2.4140875,1.60201,2.4615825,2.045365,2.75285,0.8680580000000001,1.35491,0.978705,3.094895,4.330025,6.1729,5.3464,3.1856,2.410975,2.764575,3.2105099999999998,7.178459999999999,1.2140199999999999,0.37796375,2.914845,2.08409,1.474294,3.427046,1.289704,1.7380426666666666,3.7292199999999998,2.724376,1.2418533333333335,1.86057,3.7888349999999997,3.695255,4.25914,3.849655,1.8955625,4.779145,3.766625,0.7598592307692308,4.605345,3.96915,4.357975833333334,3.224266666666667,2.4937,1.342338,1.159105,3.605555,2.61247,3.385375,3.81373,2.69542,2.8114500000000002,3.295275,3.854545,4.28012,2.45542,2.81568,4.24839,5.55525,0.53888625,4.567025,1.83846,3.57263,4.1372,1.8120075,3.19664,2.2403825,2.00694,2.532815,2.419313333333333,1.7670000000000001,4.414995,3.627805,1.2641428571428572,7.27631,1.0452333333333332,3.526215,1.7166966666666665,4.55389,3.95238,3.294093333333333,3.167735,4.18652,8.51266,2.92922,3.694445,3.60385,3.68435,1.7345,7.8582,3.63439,3.77878,1.791685,4.273515,3.075005,0.9641175,2.0463999999999998,4.171025,2.239025,3.957005,5.1484775,4.11051,4.5093,2.1073175,5.2441,3.97821,3.3815000000000004,2.2565933333333335,1.355652,4.12544,5.95995,3.82138,4.73306,3.129545,2.1343,3.955255,3.26973,1.1773059890109892,4.27608,4.786598333333333,3.9387,2.76832,3.66769,0.4730314285714286,0.4730314285714286,4.277465,3.90122,3.482485,2.214105,3.66646,6.1928,0.846378,4.02939,4.66947,4.61152,4.849045,4.780655,1.8975325,3.07961,2.14399,4.435225,0.68158125,4.011815,4.021315,2.48086,2.949593333333333,4.173065,2.42306,3.32114,60.03855915151515,3.378045,2.675523333333333,1.7774525,3.338155,3.834725,0.82309125,0.98519875,2.0319825,2.0319825,1.347634,3.32294,2.245585,3.566523,7.10152,2.870646666666667,1.2295185714285712,1.2565116666666667,2.7564733333333336,4.156538333333334,0.8600479999999999,1.930675,1.201052,1.938445,4.172205,3.88975,3.14534,20.573274603896103,3.03783,4.00624,3.253385,2.2706033333333333,2.76718,3.34716,2.4082825,5.66376,1.4453179999999999,4.05755,3.333267607142857,5.84132625,1.89218,2.70623,2.05399,4.2605,2.3594500000000003,2.2137075,2.1467566666666666,3.528905,3.37045,3.283335,3.88775,4.35986,2.46568,2.542855,3.053715,2.722735,2.951665,2.182285,2.10235,3.587345,1.1848866666666666,3.872285,4.532995,2.60323,4.70926,4.68246,5.104471666666667,1.8074633333333334,2.6139,2.760835,2.768385,4.11311,3.49312,4.667015,0.7859328571428571,3.8508173333333335,3.11415,3.74129,2.275705,1.815394,3.8084883333333335,1.133688888888889,2.59087,4.33042,1.120292,3.80942,3.45404,4.52308,6.247955000000001,2.010285,2.97168,2.6992166666666666,3.7720333333333333,2.998696666666667,2.7020239999999998,3.1781633333333335,2.5456566666666665,2.5011366666666666,1.4703466666666667,1.8813325,1.8813325,2.0919766666666666,2.1513633333333333,1.7976066666666668,2.5557,3.75074,5.60155,4.480955,1.59451,4.12639,4.438385,3.61617,4.34743,1.959295,1.863725,4.623601666666667,2.035455,4.285903333333334,3.54828,3.62827,2.45231,3.5747368749999997,3.24627,3.09094,3.523815,0.14971714285714285,2.2781933333333333,7.82916,1.5352299999999999,3.43506,3.142065,1.0188057142857143,1.1044133333333332,1.910415,3.812065,2.953515,7.174619999999999,3.512225,3.727755,2.964575,2.742535,3.454485,3.507275,3.98895,3.494275,2.9356266666666664,5.3138,3.95046,4.11198,2.4598633333333333,2.0970625,3.56422,4.52181,2.68265,2.74951,2.165035,2.579965,4.5096,3.781085,2.88935,4.477735,5.0208,2.7406,3.812845,3.684265,3.572765,4.507515,3.656345,2.7228,5.39057,4.655975,4.95897,4.911295,4.458525,5.17837,4.429825,4.24111,1.347438,6.36205,2.49069,3.956195,4.167435,3.94421,3.1520766666666664,1.9405566666666667,2.296676666666667,2.51138,0.9795429999999999,3.32412,4.041966666666666,3.1253466666666667,1.9009866666666666,3.73267,4.137125,2.5099,0.5416783333333334,4.40748,4.63884,4.92026,4.552635,3.68662,4.532315,4.608545,5.05995,1.3495777777777778,0.9452384615384616,2.8863833333333333,5.1774,5.8579,0.498064375,2.83516,2.5062133333333336,3.2576,4.47159,3.909966666666667,1.9498675,5.5091,3.366,4.2651,3.089205,6.43335,5.28335,6.655735,0.5632091666666666,4.290535,0.7688200000000001,2.33669,4.093733333333334,2.899983333333333,1.2692266666666667,2.32964,4.2768,3.544055,4.329775,2.07767,2.0244525,3.267525,4.57725,4.08761,3.57524,1.701076,1.1820757142857143,6.1141,2.13127,7.668872499999999,4.27365,3.602515,2.0874725,1.63805,4.02721,4.63361,1.71398,2.47406,2.44938,2.2781933333333333,6.624419166666666,3.102711666666667,2.8123299999999998,4.1021225,3.574335,1.94757,3.161945,6.962185,4.687385,5.0153,0.5126936363636364,3.36507,3.65348,4.702302857142857,3.657265,4.16361,2.997165,2.707915,3.422935,2.773055,3.3951445000000002,2.00396,5.391945,4.786265,4.95374,4.03735,3.457685,3.2914516666666667,2.32519,1.274635,0.90552,2.83103,2.48684,1.1175116666666667,2.6858733333333333,4.785595,4.49958,3.855965,3.83696,16.67355476190476,4.06213,4.57754,3.88493,0.7245583333333333,4.71954,4.18717,3.927175,4.864615,5.15605,2.584845,3.66548,3.408815,1.502848,3.14039,4.70556,3.25682,1.465128,3.693905,4.963975,3.94082,4.91493,4.77008,4.923985,3.79146,2.6491266666666666,4.263865,3.988515,2.47952,3.0406099999999996,3.04894,1.5662454166666668,4.62315,2.6338996428571426,2.0504466666666668,3.96808,2.35715,4.33938,4.128323333333333,2.144425,2.63047,4.552055,3.80093,4.3534,4.405115,4.91091,4.686729,3.05076,5.28965,2.824625,3.27388,4.214775,1.596986,4.346335,1.03393,4.415155,2.95367,0.9182285714285714,3.851435,2.006365,6.48417,2.3086409523809523,2.3086409523809523,2.3086409523809523,0.6658350000000001,1.23966,1.812195,3.48188,5.50968,3.639413888888889,1.9822,2.119045,1.78054,3.90581,2.328725,0.4292153846153846,1.75337,2.2505625,3.10297,1.88557,2.339335,2.482385,2.0743875,4.026345,2.8263833333333337,3.116595,2.87549,2.07112,6.55534,1.95054,4.312635,3.82051,6.1181833333333335,1.6274633333333333,3.754405,3.801305,3.759215,3.88997,2.74631,1.7894875,3.863815,5.603992,2.035345,3.59179,3.10502,1.873245,4.42005,4.280965,2.3234933333333334,2.34875,3.660585,5.128892142857143,6.0598,3.141735,2.427975,2.715995,3.070565,2.80972,4.171345,1.31574,2.78835,4.55641,0.78248,3.222005,3.95625,3.705965,3.0206,2.4209,3.02637,2.054425,4.564885,7.765600000000001,4.222275,3.40256,3.14726,1.009745,4.50029,2.396095,4.231995,5.533390000000001,3.742935,4.103805,11.334209999999999,4.69476,4.09113,1.568665,0.6917125,2.82919,3.838,3.50147,3.684,2.2078366666666667,2.4070133333333334,2.17868,1.1643216666666667,1.1643216666666667,1.9680366666666667,2.422613333333333,1.9216866666666668,2.2960566666666664,2.7839166666666664,2.3973999999999998,2.32749,2.76362,1.4403666666666668,2.100826666666667,2.1171533333333334,2.02093,1.4622725,2.5360566666666666,0.7454066666666667,9.521376666666667,0.7454066666666667,2.88524,2.026508333333333,1.8454033333333333,4.2086,4.29633,3.92829,4.477325,2.1978666666666666,2.9060466666666667,3.310646,2.0341833333333335,3.1455800000000003,2.8306299999999998,2.527676666666667,2.6867366666666666,1.7007633333333334,5.4703,6.247940666666667,2.881066666666667,3.4096666666666664,3.3889333333333336,2.6217900000000003,2.369076666666667,1.0998228571428572,3.6002333333333336,3.630433333333333,3.917225,6.1811,4.164455,2.85707,3.4356000000000004,2.9465866666666667,4.2044999999999995,4.394845,2.63339,3.519785,3.0491433333333333,2.9880366666666665,4.79614,3.2610233333333336,3.307005,5.705426666666666,1.6584666666666665,2.7990600000000003,1.58908,1.4020000000000001,4.519936666666666,3.3545016666666667,2.2365066666666666,2.074946666666667,2.1535366666666667,4.41156,3.728545,2.77509,3.307306666666667,2.9733933333333336,3.346,3.2748899999999996,3.4294333333333333,2.9891366666666666,0.57721375,3.6477,2.3572533333333334,2.6044266666666664,3.399145,3.958325,3.873985,4.964535,2.816665,3.8747966666666667,1.0805116666666665,2.86683,2.86683,4.07268,2.91893,3.75144,4.15747,1.64732,3.258925,3.77005,1.2024257142857144,3.507655833333333,3.1110456666666666,2.2778256666666663,0.42837899999999995,4.456675,2.638105,6.62461,2.97164,6.2401,3.41171,3.780085,3.666965,1.6460333333333332,2.73797,3.966865,3.26737,3.340866666666667,2.8320566666666664,5.384650000000001,2.13404,0.99854875,1.9491366666666667,1.7091433333333335,5.29008,2.2578533333333333,2.3789966666666666,1.7018625,4.371295,4.032975,3.799075,0.553738,4.059175,3.699365,2.3848833333333332,2.32101,2.3025533333333335,3.0804483333333335,3.7785133333333336,1.4714966666666667,0.6384473684210527,0.7787714285714286,3.3046233333333332,3.88427,5.894893333333333,4.81952,4.0472,5.3209,1.3212971428571427,4.1372,2.1675633333333333,0.9723325,5.2543,6.18665,2.27132,4.811955,4.101855,6.663170000000001,3.8785666666666665,6.356226666666666,3.80929,2.3006344444444444,5.701,10.146309602564102,2.5154533333333333,0.631417,3.136715,4.048085,2.24669,6.2257,3.67695,3.609,2.69964,2.69964,5.8687,3.278385,3.97771,4.795635,3.7685327142857137,2.3589654285714285,1.09166,4.876725,2.650345,5.140905,3.527465,3.99948,2.80654,2.107535,4.298585,4.956535,3.477933333333333,3.59896,4.19475,27.10922369047619,1.793735,2.530075,2.3445875,1.6979,2.6016133333333333,0.9651228571428572,2.77721,3.068713333333333,3.4294666666666664,2.916893333333333,0.5972707692307693,2.973663333333333,3.321435,2.59402,3.1106433333333334,3.587,5.7721875,4.54164,3.87561,3.654065,3.8032125,3.86694,3.385666666666667,1.7286825,0.9550000000000001,1.45505,2.1968666666666667,1.5754033333333333,2.7511033333333335,2.5042833333333334,2.4273466666666668,2.3460966666666665,2.734895,2.10624,1.8414866666666667,3.153055,4.360835,3.69754,4.059895,1.500346,3.1181300000000003,2.508576666666667,3.658725,2.096886666666667,2.68073,2.17428,1.43334,4.010425,6.6863,2.76602,3.61977,4.06766,2.621175,3.3911233333333333,3.4403,3.51972,4.618525,0.34312522522522526,0.34312522522522526,4.594535,5.12795,3.217815,2.923455,5.38805,4.059135,0.654626923076923,4.85335,4.210535,3.66949,6.2453,4.59255,7.5982,14.094954999999999,12.624740641025639,4.34327,4.360145,2.4157066666666664,0.5677423076923077,2.6002066666666668,4.111335,1.4678983333333333,4.545045,3.481733333333333,2.7518999999999996,2.09509,1.9927533333333332,4.7233350000000005,4.708565,8.618114880952382,4.99901,4.13536,7.392133636363637,3.326705,3.28486,1.52435,5.368603333333333,1.85637,2.4846366666666664,2.7538133333333334,0.247291875,2.999865,3.404385,4.61762,0.842454,1.1928433333333335,4.00305,0.581842,0.581842,3.0414250000000003,3.3299833333333333,3.170553333333333,3.833725,4.291565,5.6039,3.855535,4.28946,3.073265,3.1712833333333332,2.5748466666666667,0.8632833333333334,2.7097933333333333,2.946085,3.05366,6.945679999999999,2.837625,9.46725,3.07335,4.989145,2.97488,2.1977875,2.432135,2.756225,1.7505125,2.286375,1.92032,3.424315,2.321305,4.072535,2.841235,4.19714,4.19714,2.8540541666666663,2.8540541666666663,8.613340333333333,2.39793,0.821114,2.6412299999999997,2.5386933333333332,2.5949066666666667,4.072535,1.833296,1.8249659999999999,1.546634,3.498405,3.5847,1.900485,4.49284,4.25921,5.597061666666667,6.268226666666667,2.1295766666666665,4.076495,5.7167,3.279075,3.15909,2.153633333333333,3.13871,3.2193130303030304,4.196505,5.1078608333333335,7.284180666666667,3.39694875,2.934935,1.1721183333333334,4.40098,3.8945833333333333,3.491005,3.6563316666666665,4.25027,2.25487,2.3999166666666665,6.35431,2.8208,1.331464,5.30211,3.654545,2.54689,5.0237,2.54689,2.70845,3.494035,4.891475,1.0254157142857143,3.9118577777777777,4.244675,3.528385,1.2662083333333334,1.6599375,3.46519,3.715565,2.422645,6.302528333333333,3.92834,3.675615,4.041245,4.3307625000000005,1.259155,3.84168,2.186005,3.512165,3.82711,3.42353,4.651935,3.47794,3.710315,4.72527,1.9095123333333333,1.89374,3.0854666666666666,3.6377333333333333,3.4781,2.780806666666667,3.4215,3.067436666666667,5.5674,3.44659,3.624325,2.99619,1.8001233333333333,3.4270666666666667,1.9766533333333334,3.11993,3.141205,2.905625,0.68158125,2.125875,1.7908233333333332,3.338255,1.7679179999999999,3.453368,4.47844,1.1976559999999998,3.02682,4.309055,0.8605259999999999,1.32666,3.107305,3.95636,3.15029,1.97159,1.6900033333333333,3.527565,2.576620833333333,1.6942300000000001,2.83617,1.91588,1.1928100000000001,1.4091375,6.63623,3.221265,2.218065,2.497935,2.3979175,3.818525,0.92287875,0.3653407142857143,0.7731057142857143,4.77306,1.714014,5.0079,2.0400675,1.508800142857143,2.7580407142857144,1.2492405714285715,1.019574142857143,0.700192,0.5804885714285714,2.424150833333333,6.4055,3.09805,3.511765,0.35969285714285715,3.831815,17.666284428571426,3.120495,6.923542142773892,1.10875,1.10875,1.10875,1.10875,5.679719166666667,4.05407,4.593745,2.267793333333333,2.787855,4.41534,5.8034,3.681385,3.67624,4.158395,3.85095,3.650645,3.795994666666667,4.03269,5.10195,4.038165,4.59563,3.55795,4.4612,2.62121,3.19482,3.44935,3.436115,3.573395,4.01766,3.012966666666667,2.3373675,2.5197833333333333,3.93706,1.1989557142857143,3.784705,2.3440666666666665,3.340732,4.11051,4.364405,3.114855,2.780775,4.19337,2.88879,3.24086,5.2154,4.673495,3.3212,3.33472,1.756782,1.756782,1.6693575,4.719135,3.66178,5.4008769999999995,5.11705,3.4965500000000005,6.51245,4.689105,2.0921225,9.25301,5.38595,6.2961425,4.42878,2.7511500000000004,2.887025,0.25963103448275865,0.85060375,3.875334,3.618465,4.711215,2.925823333333333,5.997061666666667,4.897535,0.5800850000000001,2.641735,0.470171,1.7514733333333332,3.150085,2.16028,3.630225,4.15329,3.02919,3.459695,3.51749,3.730235,3.495005,3.68773,3.130745,2.48111,1.7514733333333332,2.87043,2.1653475,3.629385,2.30305,4.069425,3.658315,1.7345,4.509585,3.026705,1.292595,4.578585,4.72007,4.417545,2.9372433333333334,2.9952966666666665,4.118785,1.92533,1.411744,2.5568066666666667,2.60908,2.6079733333333333,2.0856833333333333,4.782815,3.30851,4.9414525000000005,3.7030142857142856,4.75186,3.66661,1.5344,5.1824,4.413535,5.42345,4.171785,6.607065,1.7701775,4.70748,3.36896,3.198085,1.7195525,1.8398466666666666,3.90906,4.42972,2.79594,2.685029583333333,3.4615025,3.4615025,2.6607600000000002,3.1330299999999998,3.409215,4.045795,3.692885,0.6813784615384615,3.2164,4.50116,4.963485833333333,2.992225,2.96983,1.803895,2.769855,3.61167,2.254355,4.361675,2.968125,4.829115,1.7800799999999999,1.0271727272727273,6.19335,3.73403,3.10364,2.9160166666666663,1.7281479999999998,30.25317761904762,3.834255,3.487445,6.0893,4.738095,0.8723666666666667,6.78705,1.8441075,5.6407,1.3643416666666666,4.78476,5.0475666666666665,3.777485,3.278635,2.0167725,3.35,4.77125,1.9977125,2.7615266666666667,3.534465,2.67779,2.594205,5.99465,2.24311,6.2972,1.0518725,4.306745,3.496365,3.9324,5.0235,3.03926,2.2001,4.07539,4.405095,3.6823775,3.6823775,5.74315,2.4769125,4.36814,6.183866666666667,3.41019,4.17059,3.13622,5.22435,3.52146,4.177415,1.3771425,2.07798,4.32873,4.444045,5.69685,4.416075,2.31282,9.328723333333333,2.792375,3.8637,1.7449571428571429,3.507045,2.1998,2.77615,2.19424375,1.36309,2.568706666666667,0.9343957142857143,1.1475071428571428,1.1475071428571428,1.1475071428571428,1.8794366666666666,0.56916375,3.98308,1.2448366666666668,2.559876666666667,0.8416433333333333,1.8559233333333334,2.688413333333333,2.0050666666666666,0.74727125,1.6890533333333335,1.5044933333333335,2.47632,1.6492460000000002,1.6492460000000002,1.7840033333333334,1.5277066666666668,0.878404,1.7617766666666668,1.5819433333333333,1.18197,2.281375,2.033715,5.9269,1.5056625,5.7551,17.243396583333332,6.43316,3.458505,3.6046799999999997,3.362633333333333,2.763756666666667,2.6853766666666665,2.976793333333333,0.7187450000000001,0.9613820000000001,0.9613820000000001,0.67941875,2.3880399999999997,3.54298,3.29111,1.488476,4.831625,3.97258,2.556945,3.50432,4.962925,3.797325,4.028475,3.5612999999999997,3.156405,3.632685,5.6841,3.0451533333333334,4.76061,0.5548040000000001,0.5548040000000001,2.33945,2.70129,4.46619,3.43569,3.827975,4.72221,7.664844,7.25839,3.53061,2.200275,4.07151,3.19933,2.52167,2.413855,3.878555,1.2956233333333333,3.766905,2.40902,1.56817,3.4780333333333338,3.369505,2.077725,5.1078608333333335,1.6624025,3.371166666666667,2.90789,1.0503985714285713,3.5964333333333336,2.7349033333333335,4.215975,1.1154316666666666,1.7188975,2.238545,2.0585675,1.7222175,2.4685475,1.92945,1.9368275,4.072825,4.376765,2.487085,1.703175,1.4683733333333333,3.5554333333333332,2.033263333333333,2.648325,4.62888,7.2101,2.1008299999999998,3.073205,3.49403,3.613395,2.526145,4.863005,3.95387,3.12771,1.3312625,4.570105,2.27975,3.376666666666667,2.497445,3.561995,4.906215,5.6745,2.2019166666666665,2.637443333333333,2.6920333333333333,3.2516966666666662,1.9728666666666665,1.464522,5.26845,3.3488666666666664,2.2173849090909092,3.031563333333333,2.892466666666667,2.3843799999999997,3.1105699999999996,2.944523333333333,3.4104666666666668,5.22345,4.2918,2.9337233333333335,4.74567,3.203595,2.36989,3.66956,3.88104,4.34956,6.1085270000000005,1.767172,4.023585,2.309715,3.546945,3.695195,0.5682425,2.298695,2.327565,3.35484,2.75834,2.27177,2.73553,0.5774790000000001,2.7026299999999996,4.33785,2.460945,4.255275,2.4112066666666667,3.746195,1.992085,4.52679,4.416245,2.06494,2.868075,6.904092500000001,3.80469,4.1767,4.835675,6.916789318181818,4.11097,4.24338,2.0608025,4.18879,3.02526,1.9466833333333333,1.9769775,2.01166,1.0122128571428572,2.4953933333333334,2.3458166666666664,2.6358366666666666,3.14782,1.776924,3.426615,1.9508866666666667,4.156415,5.06023,1.04970875,1.8260366666666668,2.5508,2.905203333333333,2.0214933333333334,1.0964383333333334,5.5420799999999995,2.141005,2.6805033333333337,2.60624,2.47489,2.7102466666666665,3.152625,2.27948,2.6933900000000004,2.18679,4.0583,3.4691,3.996305,3.0038766666666668,2.9974433333333335,0.688625,1.7741933333333335,2.123655,1.9626833333333333,2.56864,1.1662466666666667,2.7969633333333337,3.029363333333333,3.67504,2.058523333333333,3.358285,3.009325,4.91396,3.25928,0.6023191666666666,2.09124,2.7483766666666667,3.29824,0.7533209090909092,2.7932633333333334,3.425676,3.129096666666667,2.8821033333333332,3.4686125,3.80906,3.8661,3.1884033333333335,1.9614825,5.38315,4.770885,4.86098,5.56545,5.56405,1.90337,3.222095,3.6174,3.3026133333333334,2.8360033333333337,2.6346633333333336,3.9280000000000004,3.4483333333333337,2.87198,13.57091,4.422675,1.1064500000000002,2.63357,1.4646599999999999,3.1864333333333335,3.1989666666666667,2.2590833333333333,5.7473608333333335,6.4565893333333335,2.1530033333333334,0.8394600000000001,4.202705,3.4613333333333336,3.015775,4.65909,5.44045,5.65335,4.6739,3.583405,1.9950275,6.45899,1.1721183333333334,6.3138075,4.540845,2.3453633333333332,3.87769,6.986625,5.7932,2.1966233333333336,1.4421,2.1532525,6.7659400000000005,1.5425875,2.96154,2.5531133333333336,4.141399444444445,5.9333,4.40824,6.4317,3.63661,5.21605,3.78445,8.896560000000001,4.890685,5.9664,2.188025,2.45885,10.968076666666667,3.478705,2.378435,2.5154366666666665,1.5880566666666667,2.2804233333333332,3.4636333333333336,0.693875,1.0859999999999999,1.0955685714285714,3.104115,6.715773333333333,2.9855266666666664,1.42987,4.199845,3.63436,0.583261,4.52145,4.023125,4.88259,3.56288,3.12504,2.6740866666666663,4.259785,10.424455,1.832645,4.0107925,3.629435,4.523265,3.682715,0.8115983333333333,3.6392333333333333,4.009133333333334,1.7488333333333335,2.49278,2.28293,2.5516099999999997,1.8240699999999999,2.17786,2.30168,5.892627142857142,5.2684,3.421545,4.935383333333333,1.6256333333333333,2.328245,4.377735,4.253555,4.43013,3.920985,4.481075,4.571335,1.756782,3.748485,7.612328333333333,1.2180716666666667,1.6989400000000001,2.48335,2.4424433333333333,2.8592066666666667,4.7935661666666665,0.7787714285714286,2.49131,3.448475,6.59335,4.678595,2.1738566666666665,2.9406266666666667,2.098695,0.538641875,2.427605,2.94416,7.856615,4.43078,4.300895,0.84045,4.794133333333334,9.004749916666666,10.307931666666667,3.395355,1.14120875,3.64892,3.46837,2.60467,5.0929340000000005,4.56329,3.980955,1.9875575,3.7824333333333335,2.1921866666666667,2.5711566666666665,0.7718118181818181,0.3760593333333333,2.3658,3.451925,2.0448411666666666,3.437685,2.93986,4.010495,5.4317,1.527596,2.904526666666667,2.1642449999999998,2.1642449999999998,2.36806,3.564155,6.80905,2.73734,2.3628899999999997,3.2349099999999997,3.4351333333333334,4.293245,4.282725,4.066585,4.168345,4.06319,4.056965,7.15705,7.851988333333333,1.92925,2.2123633333333332,2.9133266666666664,0.9648516666666667,0.6947,4.453465,2.3044,5.17795,2.9657633333333333,3.0329599999999997,1.718194,1.54623,3.942725,4.278295,4.34917,2.0822333333333334,1.3262433333333334,2.73758,2.03662,2.6496033333333333,1.1716685714285713,1.1716685714285713,2.7461566666666664,4.999865,2.90201,3.320585,3.540405,2.206545,19.644831166666666,3.88166,5.4294275,4.36873,4.172105,4.077305,3.621515,5.67675,6.091710000000001,0.9315733333333333,0.9315733333333333,0.9315733333333333,2.8288933333333333,1.7272714285714286,3.2513,3.949755,3.898815,3.063955,4.122045,4.66655,0.8025833333333333,1.99888,2.1320666666666668,5.882220500000001,3.1515705,3.9270880000000004,5.08615,1.8120075,2.0366,2.3631333333333333,0.52234375,0.995308,1.792805,2.03028,3.146845,13.001721666666667,2.5662366666666667,5.28125,0.7681928571428571,9.200980000000001,5.62155,3.73091,4.02586,2.629425,5.1955,2.629425,2.7941960000000003,3.263285,3.923565,3.23911,4.01287,4.10855,3.50404,5.95675,6.699034,1.82204,2.442164,2.780595,25.975288582368083,1.5929579999999999,6.42425,4.035121999999999,3.8863,4.50488,4.3739,2.827275,2.747315,2.503095,6.825,7.1971,4.407595,4.69005,3.9937,1.7799,1.844835,4.16958,0.3366192307692308,0.3366192307692308,0.3366192307692308,0.3366192307692308,4.2299,3.167915,0.8588066666666667,1.7758,1.158677777777778,4.43972,2.5208333333333335,2.30727,6.974121666666667,3.0596033333333335,0.17363344827586208,20.257533166666665,4.688123333333333,1.777976,1.316402142857143,2.10272,1.967548,2.1376675,4.62856,3.517625,3.37071,4.409355,2.08683,7.3894425,2.759185,1.995245,4.919425,5.71795,8.582516666666667,3.9999,0.2970536585365854,3.641275,3.914485,2.69436,1.9409325,2.8736533333333334,1.6415166666666667,1.6415166666666667,4.083585,5.6972625,11.046268333333334,8.974599999999999,0.5869944444444444,2.46682,3.79205,3.256895,4.72219,3.413745,1.346846,1.346846,3.104655,3.652685,2.7522599999999997,3.554585,4.27117,5.1864,6.70158,2.2824,4.72955,4.27422,2.57984,3.0620266666666667,2.955666666666667,4.78935,4.014485,5.46105,4.044825,4.309155,3.602,4.36887,4.239995,5.4453,2.48848,3.0415766666666664,1.083688,4.343995,4.127735,3.347215,1.592788,1.7580566666666666,3.530666666666667,2.75058,2.0118933333333335,4.110726666666666,1.6099566666666665,1.9213,2.1817800000000003,2.00168,2.2055366666666667,1.6396899999999999,4.010266666666666,2.9701566666666666,4.022166666666666,3.2714499999999997,2.18038,2.703003333333333,1.9834933333333333,3.51569,1.9950666666666665,37.54779308333333,2.110311090909091,2.110311090909091,2.4736433333333334,2.36332,2.2369,1.6034033333333333,2.883736666666667,1.9418566666666666,0.7983230769230769,4.90433,6.699365,4.29613,3.997685,5.34655,1.8383166666666666,4.09631,1.8184999999999998,5.09005,5.02235,5.6898,3.727705,1.7286825,3.95189,3.89397,4.51927,4.692635,5.3079,3.75909,2.30245,3.4364000000000003,2.65203,1.9925825,1.858235,4.231225,2.5726999999999998,3.8235225,3.8235225,2.2726966666666666,1.5542433333333332,2.2078466666666667,2.475636666666667,2.3776733333333335,5.60925,2.5601366666666667,1.1646750000000001,1.1646750000000001,2.0984933333333333,1.9398266666666668,2.5292866666666667,2.6062766666666666,2.498676666666667,2.39027,2.2064666666666666,2.326871,3.177518142857143,1.7278321428571428,0.8506471428571428,61.616575217261904,2.41329,3.26747,2.395816,0.887494,3.945698666666667,1.612778,1.612778,3.3462,3.20519,0.877185,3.04608,5.56382,3.2822333333333336,2.3256433333333333,2.8807500000000004,2.09476,2.5949799999999996,0.286788125,3.2172066666666663,0.78376,2.52067,1.273782,1.273782,3.3994666666666666,1.629394,2.6992499999999997,1.6583160000000001,3.538133333333333,1.6583160000000001,2.15202,2.5737366666666666,3.03122,1.3247339999999999,1.3247339999999999,2.779173333333333,1.4600433333333334,3.0091066666666664,2.190186666666667,4.36341,3.800715,11.843040916666666,6.958525,3.26395,2.69884,3.915985,5.2969,5.6141,2.6600441666666668,3.791305,3.90258,2.0252,3.84883,3.3283733333333334,2.8388633333333337,4.64547,2.206166666666667,1.0461,3.619660416666667,2.840396666666667,2.952525,0.7889328571428571,2.70195,3.491605,4.13523,4.42518,6.6057,1.8766566666666666,1.79013,4.367625,4.348255,2.44319,2.5110683333333332,2.013133333333333,2.1256233333333334,0.92875,5.0272,4.360105,3.5054,3.66753,2.9984800000000003,5.08135,5.01175,2.647746666666667,1.7773866666666667,0.5139646666666666,14.6025285,0.5219645454545454,0.5219645454545454,0.5219645454545454,3.0018733333333336,3.8898333333333333,0.5219645454545454,6.555211666666667,4.186226666666666,0.725987,0.725987,3.4776333333333334,3.34186,3.04262,4.434325,5.064,4.354098,2.3495725,4.923457333333333,3.090535,3.546589166666667,4.67342,2.8241250000000004,2.36776,2.392745,2.733175,1.7156525,3.2457216666666664,2.9590566666666667,2.267525,1.9926575,1.9748075,1.7356999999999998,1.65262,2.648125,1.0545733333333334,2.3592375,0.582365,5.03825,1.7741725,0.6488858333333333,2.0326825,7.874198333333333,2.7396,2.0111850000000002,3.321835,7.24807,2.493415,4.19556,3.06051,6.00216,3.194475,3.59119,3.932525,3.94758,2.9017199999999996,4.172996666666667,1.0682671428571429,4.157805,2.472776666666667,2.57233,2.650195,2.30259,2.15714,1.22694375,5.6236,0.9457636363636364,4.85281,5.46265,5.00625,5.31745,3.752466666666667,2.39327,1.972508,2.8416599999999996,2.77345,2.60711,3.863466666666667,2.7412,4.74647,1.911186,39.656121666666664,4.763295,2.485396666666667,2.20443,2.7907466666666667,1.56853,5.909525,3.60015,2.4669033333333332,3.2031066666666668,2.415716666666667,1.6816425,5.0743,0.7696357142857143,4.382601428571428,1.2193857142857143,3.438133333333333,3.2036599999999997,2.55957,1.391025,4.259995333333333,1.6193359999999999,1.6193359999999999,2.2997466666666666,2.6614125,3.2448599999999996,3.2444633333333335,1.3361666666666665,2.7583933333333337,2.5410533333333336,6.2234955,2.7299,3.818391666666667,1.4080216666666667,1.4582499999999998,2.859306666666667,0.9315200000000001,5.07517,3.27964,2.8605366666666665,3.4243,2.7404499999999996,2.722933333333333,3.140803333333333,1.8602299999999998,2.3979175,2.54007,3.4027999999999996,2.395016666666667,3.562333333333333,1.7478866666666668,0.6152813333333333,10.018015384615385,2.79256,5.22985,5.0062,2.8195866666666665,3.190023333333333,1.4236825,2.3110666666666666,2.135185,1.4236825,3.979175,0.452454375,0.452454375,1.3462825,1.3462825,0.92721,0.92721,2.37232,3.064575,2.43661,1.508705,1.649,3.656545,2.91088,4.76878,5.59125,1.834752,4.429275,2.36978,4.433629572649573,1.710185,1.710185,2.243445,1.6641400000000002,3.6352125,2.0052575,4.23156,1.5857266666666667,2.535925,0.5477976923076923,1.0665314285714287,2.10733,2.13451,1.816965,1.3254,4.03022,4.111165,2.0810566666666666,2.3924666666666665,1.38354,0.6879558333333334,2.3108,3.382765,2.862713333333333,4.558245,4.859365,4.58496,3.78083,6.5811175,1.463845,5.92741,1.78505,4.57757,4.57162,5.687505,3.402366666666667,2.417005,1.770335,1.9089099999999999,1.9089099999999999,2.447685,2.447685,4.21126,5.80995,0.902744,3.85982,3.257805,3.422165,2.378886666666667,1.4039175,2.8605699999999996,4.25625,4.108845,1.785246,6.5253,4.845295,1.90285,1.3121875,3.99461,3.9629833333333333,3.612255,3.60307,3.75734,0.655082142857143,3.5351,3.3866333333333336,2.722856666666667,2.8876633333333337,2.2190600000000003,3.744533333333333,1.530642857142857,1.530642857142857,1.530642857142857,2.86605,3.028143333333333,3.2322566666666668,3.269532369047619,2.1988625,1.1904857142857141,3.1391833333333334,3.157806666666667,1.3517257142857144,2.6136333333333335,2.6944733333333333,1.2635785714285714,2.4611966666666665,2.8453700000000004,2.8641199999999998,2.5412500000000002,2.3894466666666667,1.898115,3.0488933333333335,4.465222666666667,3.912275,0.929143,1.383384,0.532503,3.4716,8.675075,2.9216033333333336,3.32832,2.9343,4.371110833333334,1.8622875,7.37695,6.39856,2.620746666666667,2.1401825714285714,3.8736,4.591455,1.576466,1.191606,1.284864,1.96216,10.122240000000001,2.5569366666666666,3.0411133333333336,2.8644653333333334,3.898105,2.11449,1.04030375,5.78775,1.1037433333333333,3.4348888461538465,4.309925,3.299615,3.1727733333333332,3.059665,4.61717,1.1959766666666667,2.06606,1.8660133333333333,1.8660133333333333,3.86095,5.611,9.6232525,4.199505,3.455805,4.565675,1.764825,2.359495,4.545705,3.516545,3.82944,1.5565049999999998,2.854276666666667,3.660905,3.709275,2.3219875,4.05638,3.69514,3.8292,4.210815,3.880505,3.95047,5.59375,3.15447,2.472706666666667,4.342825,3.03815,3.855285,2.017135,2.482745,2.573345,5.81295,2.595995,3.190877727272727,1.68901,2.473075,3.319525,2.202435,2.0487075,0.90191,0.90191,1.823595,3.5682181818181817,4.12499,2.9081799999999998,4.28983,3.0168275,2.5279611428571434,0.93125875,2.826275,1.4757275,3.85464,4.150535,0.9102837500000001,1.87958,3.95635,2.911715,1.60446,1.6612466666666668,5.199758571428571,1.0623333333333334,2.743785,3.21387,2.76922,2.448935,2.807334,2.064635,1.0179475,2.88212,3.031125,3.43983,1.4380866666666667,1.5401566666666666,1.77033,4.191525,1.99414,4.273745,4.50304,4.39581,6.10285,4.892825,4.09425,6.161475,3.784324761904762,0.782850909090909,2.956225,4.20574,3.81948,0.4975227272727272,1.015592,2.93288,3.833125,4.606535,4.047255,3.244048928571429,2.839165,4.438305,1.701698,2.4627675,4.339175,4.2404399999999995,3.13959,2.88991,3.602015,4.445985,3.05796,4.8168999999999995,0.878982,3.19544,2.62656,3.994645,4.2914,4.66316,2.20578,2.45883,3.04721,1.9157,4.827055,3.29691,1.2943557142857143,2.29314,3.6750525,1.477336,5.918385,1.8248159999999998,2.6100166666666667,13.549578726945569,2.8527666666666662,1.4872100000000001,1.7337833333333332,2.1473833333333334,5.441355,1.701076,5.496977333333334,0.6637523076923078,3.0933433333333333,4.27354,7.6256925,2.57725,2.77488,2.77488,4.4408,4.184665,3.429765,3.297945,4.76873,5.1684,2.4238,3.14249,4.34756,1.2767833333333334,2.3473533333333334,4.355355,3.79236,2.77971,2.1860833333333334,3.845475,3.333485,5.968493333333333,6.16876,0.6531520000000001,3.90397,3.216405,3.8056666666666668,4.2768,3.879185,3.754015,1.163634,4.94282,2.450105,2.938285,4.228765,4.229435,4.281175,0.847947,2.54911,8.942132999999998,1.4823233333333334,2.1018912987012985,2.2316725,3.990365,3.527995,3.291865,0.6589872727272726,2.3281725,1.715285,2.2020225,4.29889,5.301119333333334,2.759996,8.862504999999999,2.3750833333333334,2.6712399999999996,1.06501,4.503215,5.25325,2.17113,5.293193333333333,2.786555,3.315125,5.4001,4.17952,4.69719,2.14301,1.678315,1.678315,2.581705,3.15467,4.972314166666667,1.5500075,6.30839,1.4398166666666665,3.644755,1.2218316666666666,8.713768666666667,4.326155,2.784825,4.033235,3.630255,3.959495,1.1121566666666667,2.0018175,3.420166666666667,3.0342266666666666,3.4532333333333334,3.6632,3.96303,2.863485,3.23113,3.381225,1.6415575,2.6340666666666666,1.8927699999999998,2.931423333333333,2.0579266666666665,5.1139174999999994,3.1247900000000004,1.9021866666666665,2.692463333333333,3.321665,3.12056,6.21735,5.72725,2.960415,3.62716,2.835975,3.19584,2.938915,1.1652333333333333,1.034108,6.23864,2.986585,5.82605,4.39896,6.293,2.92895,2.7791033333333335,6.51015,2.63446,0.38990111111111114,5.6449,3.020835,3.685055,3.2427200000000003,1.3847914285714287,3.98572,1.02021,4.580315,0.903515,1.3321433333333335,2.85636,2.41148,2.872692857142857,3.58022,4.355015,5.7345491666666675,5.7345491666666675,5.066012499999999,5.066012499999999,4.66526,2.9153333333333333,4.378435,0.9456575,6.0344,3.30411,3.7302999999999997,3.812335,3.86591,5.17015,1.97174,4.92379,3.1191899999999997,2.881095,4.256675,2.72976,4.78732,5.29145,3.642285,3.57804,5.07735,4.02849,6.41885,2.783765,2.33472,5.92225,4.061655,2.94003,5.955895,1.6164133333333333,2.269955,4.84152,4.28763,5.03645,3.83672,2.049362,2.049362,12.855008126984126,11.9707,4.68194,3.31155,2.9368258974358974,4.26675,4.459425,2.5619033333333334,3.2447666666666666,3.036815,4.1574333333333335,3.5446666666666666,5.11435,2.01333,8.230476666666666,2.44938,1.927245,5.8293,2.305695,4.890755,4.41125,4.632985,0.7473733333333333,3.216515,3.549535,0.957234,3.007995,4.3675025000000005,1.4384359999999998,1.9048833333333333,2.8927266666666664,2.6985266666666665,2.0540166666666666,3.0138866666666666,2.24652,0.41471857142857144,2.3804166666666666,2.773146666666667,2.790203333333333,3.0845233333333333,1.43188,2.90882,6.952758333333334,4.47367,2.3058799999999997,2.0413799999999998,2.6186933333333333,3.7062,2.364995,3.4708400000000004,17.973365,5.4534,3.2771365,4.580585,3.759745,5.467561666666667,1.5741566666666669,5.98605,1.4634483333333332,4.98389,4.7132,5.44365,5.01585,0.9647303684210526,6.7492,2.37866,4.65157,2.81,4.28846,3.520255,2.864765,2.0842933333333336,1.477114,1.940385,4.312455,4.576415,2.085075,1.610485,3.0302966666666666,3.8869716666666667,2.745953333333333,6.20885,1.839245,3.618885,4.84826,4.405965,3.51389,2.732245,3.870465,4.60146,3.79471,2.6650266666666664,2.6650266666666664,6.05997,2.0924866666666664,2.4070266666666664,3.889045,1.7421820000000001,7.3739,3.646455,4.348136666666667,4.3043000000000005,4.07277,1.750008,4.06662,5.6821,4.251655,2.0371625,3.511585,3.39404,1.1029275,1.2315825,1.2316,0.722235,1.64203,0.9374833333333333,4.64435,0.91154,2.5814833333333334,1.6450733333333334,1.83218,1.0151516666666667,1.8966775,2.2149075,1.43541,2.89611,2.802293333333333,4.8281583333333336,1.5454583333333334,2.6456,2.951783333333333,2.7502433333333336,2.291263333333333,4.379208333333333,4.58796,4.712340833333333,19.045130416666666,2.627336666666667,2.218205,0.6605930769230769,0.6374,4.177466666666667,1.9958200000000001,4.0481,5.1143,6.986523333333334,3.592385,3.438295,4.118735,3.12616,3.3526666666666665,3.0685800000000003,4.0206333333333335,3.1855933333333333,6.5566,3.619285,0.904609,1.13032125,5.08515,3.0033499999999997,2.5274633333333334,2.02393,2.3144766666666667,5.77485,4.69337,2.16816,2.133453333333333,3.26443,4.86323,8.35758,4.6690974999999995,4.118395,3.837125,5.12555,4.5277,4.00218,4.864145,3.79569,4.91285,1.82244,5.57335,1.505542857142857,4.959535,0.7326733333333333,4.71172,5.41835,6.03705,6.09495,4.46939,6.04735,5.7459,6.15508,1.9705000000000001,1.5677,5.456,3.99438,6.168166666666666,5.1837,5.406720833333333,5.21325,6.3005,1.2786557142857142,4.294065,5.212,4.233766666666667,4.66464,5.08725,2.637875,4.15488,2.71323,4.102425,0.9794916666666666,1.5774,1.387152,4.62432,4.12129,3.41987,2.1009033333333336,2.8382233333333335,1.5744766666666665,2.2251333333333334,0.39334,3.4454333333333333,1.60915,2.3538116666666666,2.8225166666666666,2.407976666666667,3.14991,2.5965,2.4166175,10.10963,3.9177,1.79393,3.461815,0.8943181818181819,4.430715,1.1148075,1.5096725,1.93968,1.06257,5.680290333333334,1.14499125,1.14499125,1.14499125,2.890356666666667,1.932044,5.20075,3.10915,1.3137375,1.6368025,2.2867525,1.302025,1.965072,5.118588333333333,0.768921111111111,4.14824,3.965415,3.0755733333333333,1.0264885714285714,2.131842,1.8544475,1.8544475,1.39803,3.6545316666666663,4.38352,5.5724,5.71735,4.13842,5.28125,2.746396666666667,1.993935,2.75847,5.15485,3.156915,3.96067,1.043285,3.961294166666667,5.60145,1.93824,4.025075,2.9886700000000004,4.80333,4.551365,2.401435,7.03735,6.18215,3.619295,4.358555,4.384995,3.24587,8.21174,4.01881,5.128828333333333,3.440105,2.68689,5.12365,2.64879,5.45125,4.330475,2.7266166666666667,3.055885,3.973975,1.3886200000000002,10.4417,3.403805,3.177655,15.111801626984128,4.311315,1.771,2.7445799999999996,2.048055,2.298475,2.827475,2.5783617361111113,2.8855,2.769405,3.10601,4.32184,6.217495,1.25531,1.9250075,4.20694,4.443975,4.83316,2.26663,0.5637880000000001,4.34071,4.290575,2.0416075,1.3418433333333333,4.614865,4.31874,0.8499755555555555,3.74716,12.2244925,1.2630255714285714,0.40381357142857144,3.4179333333333335,4.555156666666667,1.062758888888889,3.63877,4.096445,6.3309283333333335,1.2258783333333334,3.24617,3.788695,3.335355,4.240055,4.376785,3.877885,7.863955,3.323805,4.341125,5.481,16.16376875,3.5332775,2.8958,1.1705225,1.8691475,1.23602,2.3747475,1.3058425,2.0555725,1.680035,2.0443575,2.37163,2.323885,2.2233,5.35295,4.36197,5.84345,3.202555,5.692691666666667,2.8249866666666663,5.01695,3.4483,1.24322875,3.942695,2.020605,2.7074566666666664,4.49778,5.00665,4.834365,4.48175,3.5377666666666667,3.759133333333333,2.5387033333333333,3.10066,3.81929,2.202715,1.85278,3.451966666666667,4.16555,2.8364,2.4240033333333333,12.385906666666667,0.70804,2.68883,4.77945,2.345139,1.062386,2.736145,7.382538333333333,7.054128333333334,4.369545,3.6275,3.959625,1.99623,2.09206,2.8403460000000003,2.05573,3.558438333333333,5.15135,4.25378,0.45322333333333337,6.09135,3.354433333333333,3.2098600000000004,3.5447333333333333,6.09455,8.58817325,4.3467745,1.01129875,2.1176575,2.419765,3.691475,2.612745,4.18984,4.44564,3.3633666666666664,2.533583333333333,4.131335,3.99651,3.81499,4.3623,1.7487833333333331,3.13168,5.19845,5.37,3.308483333333333,2.1710075,2.2502299999999997,15.2603640011655,0.6084581818181818,1.4647875,1.4647875,2.5807466666666667,5.28276,3.637095,4.3206,2.72263,3.00048,4.38462,3.1591,4.26202,3.1591,3.55178,1.9020633333333334,1.7874533333333333,5.9952,2.649575,4.852065,3.39942,2.592225,6.419411666666667,2.1034533333333334,4.337565,5.3349,3.642725,3.298995,4.921935,2.0021999999999998,4.97889,3.285675,7.04092,5.320354166666667,2.887125,3.56548,5.0343,2.08658,2.311646666666667,3.422166666666667,0.4586678571428572,3.114193333333333,10.214713333333334,4.19206,3.335105,4.881045,3.331465,3.125425,1.3396571428571427,3.96719,5.63425,3.268965,2.29519,4.25809,3.574735,4.269545,4.345465,2.85195,2.85195,4.24026,2.98314,2.4910020454545454,1.92752,4.799215,4.112835,0.9555485714285714,3.727265,4.81834,2.7117133333333334,7.00357,7.78245,1.500114,4.31657,4.673165,6.510031,0.623466,7.600913333333333,3.3450125,0.5962754545454545,5.3067,5.2678,4.642255,4.29327,4.738195,4.410275,4.9744,3.739245,3.801865,4.12937,5.30485,4.528205,4.394205,3.89553,2.43585,3.91306,2.817925,0.950863,4.677525,2.401595,1.713385,4.460115,4.268855,5.7148,1.1098757142857143,4.87207,2.8768,2.745146666666667,1.5779925,1.2921566666666666,11.375616666666668,2.32678,2.9393933333333333,2.03516,3.7587385714285713,5.3682,6.040146666666667,2.667476666666667,1.9149466666666666,2.13836,2.13836,2.13836,1.35022,3.972185,3.94132,3.113575,4.63305,8.359684999999999,3.9872,1.19682,2.225575,3.11783,2.354115,1.712854,4.030515,2.655535,1.4009066666666667,2.9759700000000002,4.983942142857143,5.8479849999999995,4.0461,4.15911,3.1110366666666667,4.97923,4.461155,5.48726,1.9132825,1.9132825,4.191165,3.902575,2.739185,2.739185,4.04559,1.2451542857142857,4.903075,3.38525,4.400685,3.782325,3.52697,3.3227466666666667,1.0036085714285714,4.398915,4.948425,4.05693,4.56141,4.736655,4.95328,4.35003,1.879445,1.490645,3.486205,3.802835,3.409685,4.5029,2.17934,2.7312700000000003,5.2637,2.74137,5.05595,7.15042,2.292637083333333,2.9896716666666663,4.212609047619047,5.104585,1.552275,2.178577380952381,1.0928616666666666,2.178577380952381,1.7400266666666668,1.7400266666666668,1.5374560000000002,5.05115,3.19037,3.651675,2.304465,4.03602,1.53277,5.33445,3.071325,1.6919875,2.8329833333333334,3.477725,3.98399,6.669126,4.581825,1.219702,0.8710016666666666,3.69404,7.338371666666667,2.4357233333333332,3.763205,3.47278,3.47278,2.376225,3.394865,3.56702,1.3969431818181817,3.0443266666666666,3.21218,2.98256,4.187305,3.7821325,1.513535,3.424325,4.33671,4.56665,5.1078,4.449295,1.68496,2.17075,1.3014733333333333,2.153185,3.46807,1.86159,4.726385,3.2543366666666667,3.73888,4.202395,5.07985,1.87842,0.93679,1.9008366666666667,1.477055,1.1778555555555554,4.89183,4.07301,1.083688,0.3364704347826087,0.3364704347826087,0.3364704347826087,3.717745,5.64056,4.44129,5.21375,5.1593,5.49015,4.653675,4.50193,2.81455,3.848895,1.607245,4.614775,4.101245,3.90451,4.25879,4.131145,0.6678054545454546,0.6678054545454546,0.6678054545454546,0.6678054545454546,1.149844,1.149844,3.996685,3.6978,3.652195,2.888275,2.497795,5.99195,4.676715,5.7315,4.407415,3.003766666666667,2.5711066666666667,9.7098,1.540178,1.540178,3.817545,5.3726,3.309093333333333,0.452454375,0.452454375,0.452454375,0.452454375,0.452454375,0.452454375,4.519536666666667,4.827035,3.32828,4.52101,2.85119,2.85119,2.879335,3.201811,2.4239166666666665,2.411205,3.250735,6.966135666666666,1.4926679999999999,4.66787,3.302615,3.949655,8.667693333333332,2.16574,2.66555,0.9609985714285714,2.06244,4.87477,2.812855,0.8542725,2.7984333333333336,4.009925,5.36795,2.621625,4.550891527777778,0.7936977777777777,2.01411,4.728895,4.74307,2.806145,2.3271633333333335,2.07457,1.3463783333333332,6.867036666666667,3.3046699999999998,1.9813633333333334,3.194325,2.651483333333333,3.56848,3.75317,2.7364566666666668,3.1540700000000004,5.89795,1.4705716666666666,4.218725,5.29945,3.21741,3.82815,1.95739,2.9732,3.83169,3.80978,2.864245,4.75801,4.63118,2.7316566666666664,1.9352437500000002,2.818016666666667,2.959293333333333,2.8569366666666665,0.7932127272727272,2.125065,8.255355,0.45129125,2.9751499999999997,1.6113566666666665,2.6844533333333334,3.2663466666666667,2.6450299999999998,1.2557444444444446,1.7375440000000002,2.70128,2.1954525,3.68247,2.0405,2.5643033333333336,1.5123166666666668,3.125318,1.9569475,1.1422771428571428,2.7386266666666668,2.0018575,2.379086666666667,2.6904133333333333,3.0655066666666664,3.08794,3.3189499999999996,2.9438866666666663,2.794446666666667,3.2685333333333335,2.6758566666666668,2.69725,1.6194933333333335,2.342426666666667,2.57389,1.6600000000000001,3.1493366666666667,3.8858138095238095,2.8302366666666665,2.378033333333333,2.842443333333333,3.631066666666667,4.6509875,3.08502,1.7938085714285714,1.7938085714285714,2.39188,1.106095,2.3769275,3.3136849999999995,4.55580875,2.80455,2.0253575,2.02402,2.09261,3.689115,3.005355,4.04835,3.274955,1.826825,2.1351066666666667,4.050405,1.172696,1.172696,1.77843,0.5869469230769231,2.0719034615384615,1.6825125,1.6825125,2.56582,2.5012466666666664,3.15628,2.609195,1.942125,5.466123333333333,3.86624,3.86624,3.59724,3.06257,2.30379,2.801985,2.52225,2.900245,5.1289975,0.4765608333333333,0.701124,4.15611,2.4474,2.93595,6.5407,3.58318,1.629822,4.999843333333333,4.6404,4.004225,4.21813,5.2354,4.878375,13.6672295,3.41981,1.6517799999999998,2.90592,3.81979,4.7148,2.73656,3.929535,3.83946,3.738185,4.38601,2.92759,2.79202,2.53274,2.4358,2.4358,3.988065,2.760635,3.066565,3.667445,2.39549,2.520915,2.1379425,1.86318,1.9804975,2.175215,1.7005925,3.2668225,3.42946,2.60185,6.9900775,3.17423,2.3441533333333333,1.9831066666666668,3.64465,4.0453,3.610815,2.9772925,3.45402,3.275905,4.407985,3.647505,3.907095,4.04162,3.4112910000000003,3.420605,0.6602899999999999,0.6602899999999999,0.6602899999999999,3.58012,2.50056,5.56315,2.412155,3.883275,6.707231296296296,2.65187,0.344815,5.34275,0.774062,4.376089047619047,1.846585,3.495025,1.87012,3.87112,5.298603333333333,4.10247,3.95046,2.738,2.70971,1.4797033333333334,2.66552,0.3651684210526316,0.5363564705882353,2.5483333333333333,1.4106500000000002,1.8933675,3.94536,2.89355,4.89919,2.71015,3.076853333333333,3.62107,5.37822,1.6611575,0.9414228571428571,2.3471,3.63329,1.1955708441558441,5.22635,4.09122,3.541995,2.7555033333333334,4.185565,2.58787,2.38803,2.3449633333333333,2.406095,2.6086300000000002,2.3308625,3.1276466666666667,2.33527,5.296580666666666,2.10737,2.007573333333333,2.1381466666666666,4.909104666666667,3.3358980000000003,3.3358980000000003,2.5594433333333333,4.07401,2.3117725,3.133385,3.023225,0.5637453333333333,4.2807,1.7820175,11.63959,7.09295,3.04373,3.297795,3.414665,4.74411,2.861885,3.47081,0.27060399999999996,1.967845,3.262983333333333,0.8005683333333334,3.870075,1.3094557142857144,4.56372,3.541265,3.072415,3.35053,3.25862,2.22525,4.55316,3.77637,3.55596,6.86352,3.93359,2.853543333333333,3.08806,1.64979,1.943245,4.103105,3.502825,3.7294475,2.669605,3.272155,1.330232,2.994605,2.64811,3.5439,10.33663,3.629875,4.9134416666666665,3.76669,4.03942,0.9821022222222222,4.535538,4.744265,2.50821,2.4177433333333336,2.66352,3.7003333333333335,2.47152,1.6615633333333333,2.055973333333333,3.704335,1.483238,2.751863333333333,4.988466666666667,2.60746,1.1427635714285713,1.1427635714285713,3.637265,3.035749,3.035749,2.86354,2.8324466666666663,3.2394902564102566,3.7909333333333333,3.4517,2.779196666666667,2.3754933333333335,2.47858,3.21815,2.2789975,2.5105666666666666,1.70475,5.91658,8.554256666666667,0.5134138461538462,0.5134138461538462,0.5134138461538462,0.5896238461538462,0.5896238461538462,0.5134138461538462,2.88753,3.0929266666666666,4.104019999999999,1.3819166666666665,1.80636,3.424674,2.530386666666667,3.153233333333333,2.4716766666666667,2.81688,3.3599333333333337,6.859145,3.1032100000000002,2.5920799999999997,2.8597099999999998,4.688175,2.2287766666666666,3.369066666666667,5.97621,2.429996666666667,3.4003333333333337,1.4176283333333333,1.4176283333333333,2.8387666666666664,0.5109368421052632,2.34592,2.7217566666666664,2.8913466666666667,3.230366666666667,2.3036733333333332,1.3865166666666668,2.58825,2.7315,2.3868633333333333,4.19138,2.385043666666667,3.442255,2.35849,2.907305,0.46882799999999997,7.077873333333333,2.994834,2.994834,7.698425555555556,1.8026766666666667,1.7943266666666666,2.8434666666666666,4.216975,2.4334000000000002,1.9804566666666668,2.6775466666666667,1.446665,3.4321333333333333,1.95584,3.060962,1.4221425,0.27155863636363636,0.27155863636363636,4.58695,3.928755,3.2391,2.6329533333333335,2.684555,3.326575,1.3122033333333334,5.37765,3.94998,2.94354,1.8278575,1.1320508333333335,2.31415,2.8434666666666666,2.55949,2.08467,5.53938,3.531595,4.326185,3.830505,2.40376,0.6804925000000001,6.9327024999999995,1.902135,1.6338575,3.592275,5.11135,2.429135,1.6527633333333334,4.50842,3.800285,2.9503033333333337,2.9041200000000003,4.06305,3.949145,3.3954,2.589724,2.589724,4.11751,4.88915,5.0661,5.854423333333334,2.59381,3.684105,1.4571142857142856,2.570325,5.532236666666667,3.71563,1.91077,5.1923,3.55343,3.354475,2.32372,4.17346,4.54481,4.413295,4.385965,2.46122,2.58784,3.6794666666666664,2.0781633333333334,2.527075,2.3202233333333333,2.4554199999999997,0.655239,2.282975,2.8326733333333336,1.7459923333333336,4.64706,4.5816,4.709365,3.68405,3.205965,4.7079175,11.345735000000001,4.549905,3.744645,4.44326,4.12523,4.52509,2.589123333333333,3.0997446666666666,3.470166666666667,1.19341,2.92782,3.00774,4.23062,5.5094,4.293675,3.5018333333333334,3.151073333333333,2.21361,4.3495,3.921355,3.7215333333333334,3.921355,2.16433,2.2958166666666666,2.308325,1.97843,2.44679,1.8777866666666665,0.8410666666666667,1.3097033333333334,1.9701066666666665,1.97345,1.69273,1.3768733333333334,1.9880033333333333,2.776146666666667,1.516296,3.1491633333333335,1.32111,1.6337466666666665,2.78406,4.017566666666666,2.358956666666667,2.09675,2.3279633333333334,3.2146,2.27005,2.9551866666666666,3.288933333333333,2.430606666666667,3.1278733333333335,3.0903875000000003,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,0.15008290322580645,5.04385,3.05338,1.0786428571428572,3.0917733333333337,2.7208799999999997,2.890613333333333,3.22139,3.3572666666666664,4.617795,3.228863333333333,1.46794,2.982863333333333,1.82825,0.9521425,0.92591,1.6537083333333333,0.8453283333333333,0.7953866666666666,1.3103500000000001,3.30439,1.582356,1.507275,1.8118394444444443,2.227616666666667,1.405335,1.242065,1.492595,0.9423583333333333,1.271165,0.7861716666666667,0.875746,3.41307,3.606585,4.21191,4.547695,4.05463,3.1297833333333336,4.509215,3.2897866666666666,1.9498675,3.554455,1.9281825,3.589905,2.1230166666666666,0.8140972727272726,4.173605,4.92665,2.1539733333333335,1.26304,3.07025,3.430035,3.6545316666666663,3.02613,2.774675,0.87201375,2.2451775,4.858890000000001,3.774295,2.413085,1.5074916666666667,3.815525,1.7872525,0.5715663636363636,4.33477,4.35395,4.030635,2.49263,1.44365,3.08464,4.590895,2.656946666666667,2.645773333333333,2.4658266666666666,2.6612766666666667,2.7744933333333335,2.8404833333333332,3.0422499999999997,1.221595,2.57345,2.5768633333333333,4.92834,4.31448,3.807225,4.61839,16.050608832070704,4.6268,4.523455333333333,2.68177,4.033685,4.851885,1.48699,1.8737975,2.1932833333333335,5.8427375,3.477905,3.08733,6.42175,2.1932833333333335,4.072575,2.047795,2.03607,3.0629299999999997,2.6051100000000003,1.1725216666666667,4.230595,3.521165,2.592995,4.33494,2.33034,3.4482,3.75588,3.56939,4.430265,3.74736,2.74114,3.565335,2.540375,2.434813333333333,1.234102,1.234102,3.3092633333333334,2.4465,0.38315,4.863498,0.866468,2.75688,3.349925,0.5615316666666667,4.37885,7.893681666666668,1.89374,3.66594,3.7409,2.6366466666666666,3.27161,2.38611,3.03753,3.708495,4.283175,3.12928,3.8600666666666665,0.9728416666666666,11.773115666666666,2.69777,2.95219,5.88735,2.63007,3.90579,7.686101666666667,3.9386,3.8357,3.34899,3.900295,5.3348275,1.4832925,2.526943333333333,4.53687,3.7546999999999997,1.941148,3.89512,3.699515,3.606705,4.052455,3.790335,3.708195,2.52197,4.31671,3.75322,4.87833,3.4462,2.1967466666666664,2.28251,1.9940033333333333,3.18036,1.4696266666666666,3.5207333333333337,0.8723372727272728,3.1766799999999997,3.1075433333333335,2.59281,1.5016150000000001,4.07641,4.06176,4.34325,1.9349275,4.418355,3.661955,0.7320719743589743,0.33087730769230767,4.284195,5.3484,0.9530525,0.33087730769230767,4.217315,0.7320719743589743,0.7320719743589743,0.33087730769230767,5.502618333333333,2.5191833333333333,2.36977,5.35735,3.276495,3.192265,0.8125566666666667,3.31466,3.868175,4.717705,5.7199,2.149845,0.7060615384615385,4.082250833333333,2.00745,1.2468460000000001,1.8532975,1.0095742857142858,2.1216166666666667,2.1843266666666667,3.437,5.22315,2.47312,3.0607399999999996,2.771646666666667,2.2230333333333334,2.994145,4.460331249999999,1.634325,1.9966375,3.937635,4.98943,2.0916556944444444,4.86634,2.629425,4.17389,4.08872,3.07727,1.21717,3.17604,6.66385,3.81217,3.381115,5.2217,6.36245,2.367925,3.2581,4.73809,3.164685,3.149195,8.47593,3.787885,4.5863525,2.49659,1.2334825,2.47649,1.786495,2.172245,2.22276,4.08873,0.6478371428571429,3.12967,3.90049,1.9223299999999999,3.020163333333333,4.856645,3.321305,2.68753,4.08528,4.659895,8.980359166666666,2.7009833333333333,2.38852,1.69632,1.3819616666666665,1.33592,1.3602033333333334,2.3527566666666666,2.6782800000000004,2.79162,4.404573782051282,1.6373825,2.2747699999999997,5.2508,5.27435,3.62047,3.51752,3.069105,2.443935,2.158295,2.170745,1.8679766666666666,1.92669,3.002315,3.654755,4.791785,5.15945,3.70577,5.1216225,3.372895,2.647675,6.413981249999999,3.137635,8.88369,4.822921666666667,4.822921666666667,5.734545000000001,1.6949066666666666,1.355385,1.5089333333333332,0.727248,4.77273,3.8752999999999997,3.238125,3.238125,2.27198,4.268985,4.387955,4.242905,3.829955,2.897183333333333,2.593315,3.57492,3.00351,5.13977,3.56082,0.7467681818181817,4.933875,4.99813,3.657965,4.78767,3.24905,6.29085,4.04519,0.8627538461538461,5.16225,7.101610000000001,3.23019,5.54555,5.8576,3.60484,2.637365,3.61288,6.04485,2.0435,5.8748,1.9124475,4.327305,2.53151,2.2715775,0.878982,3.23495,6.0386,3.366185,3.5876,2.1356699999999997,4.944725,8.157036666666666,3.480775,4.446535,2.522285,2.86434,0.827397,4.561725,1.565365,3.2973608333333333,3.2973608333333333,3.787055,2.38922,2.933946666666667,3.78502,1.7205675,2.7455766666666666,3.1770899999999997,3.2210466666666666,2.87761,4.16517,3.12666,1.906715,2.9696866666666666,2.04614,2.9842099999999996,1.9714,2.964093333333333,3.1317733333333333,1.4059485714285713,1.58331,0.8014383333333334,1.3419299999999998,0.8014383333333334,0.8014383333333334,1.58331,0.8014383333333334,3.3747333333333334,2.5933599999999997,2.5933599999999997,2.672803333333333,3.93307,3.705595,3.994245,5.2462,5.3653,3.52043,3.614065,3.769015,1.7971275,2.260573833333333,2.3150666666666666,0.7975427272727273,5.4389,2.89292,2.9655166666666664,5.4909,3.94329,4.760015,3.365305,2.5909233333333335,3.001745,3.371495,2.81749,2.9409799999999997,2.0523266666666666,5.2926,0.8136266666666666,3.510345,1.1809785714285714,3.695065,3.1912000000000003,2.84618,3.931325,3.895395,3.62329,4.232745,4.02548,3.65879,4.1178,4.33872,2.4438475,2.803725,3.2421733333333336,4.163505,2.687865,3.10996,2.733475,3.023635,3.253386666666667,3.447965,4.59005,4.54079,4.01857,67.89529084666722,2.7941191666666665,3.562725,15.944912333333333,4.19328,3.02727,2.3877266666666666,1.89679,2.602936666666667,4.288075,3.00615,3.8488499999999997,5.5791,3.403325,7.282071666666667,5.40885,2.42774,3.737255,3.685,3.493425,1.9041139999999999,1.09795625,4.820935,2.791795,6.172938333333333,3.646935,2.2841366666666665,3.475455,3.468655,4.57479,3.442975,5.704485,4.41549,3.493645,2.993505,2.47789,2.737535,6.0835,2.55286,3.60327,4.343887083333334,1.1972033333333334,2.4847,5.2222675,2.969645,2.93821,3.689495,2.94811,3.68712,3.165045,2.827895,3.118625,4.615685,2.75836,3.11174,4.50181,9.621785,3.2170433333333333,4.218375,4.94101,3.27557,1.7142,4.193919375,1.9903933333333335,2.95267,3.0166839999999997,3.500065,3.29402,3.086695,3.059675,3.159175,4.13591,3.932345,4.271235,3.768205,3.094425,3.522465,2.589293333333333,2.589293333333333,7.189661666666666,1.73375,3.214045,3.061135,2.402635,4.766075,4.224685,3.09147,3.34909,5.66505,5.935935,0.6559354545454545,4.340835,2.422475,2.95841,2.418903333333333,5.19,2.64647,2.02423,1.0518725,2.093381212121212,4.26114,5.14205,4.059945,6.0144,5.62105,5.94905,2.79284,2.01058,3.79896,2.62735,2.8775333333333335,1.94112,1.3044566666666666,2.6877066666666667,3.09666,1.556456,2.2547200000000003,2.3759674285714287,3.407162252747253,2.787525,4.86918,3.352925,1.3848625,2.85508,3.524805,5.8002,4.73443,5.83155,4.797645,2.0530933333333334,1.4168566666666667,0.61191,1.5311000000000001,3.462935,2.60856,3.7304649999999997,1.49394,2.332435,2.308965,3.47332,3.53668,3.89366,4.067983333333333,1.6395175,1.3558125,1.9413025,2.09558,1.4435275,2.513725,6.589827666666666,4.71675,3.315445,2.92235,6.721085,4.547625,3.212425,3.129095,3.606495,2.9848,3.763915,2.38273,7.47134,0.9056233333333333,3.11942,6.575,4.0814,4.50098,6.38425,1.4667133333333335,3.02839,2.8870166666666663,2.720143333333333,1.49196,4.11314,9.01698,3.311665,4.91386,4.03854,2.99952,4.757115,0.9145300000000001,2.83301,5.30325,6.195456666666667,4.98803,5.6457,2.8661,3.6194,2.475496666666667,4.92492,4.66402,4.100554642857142,4.100554642857142,0.6302771428571429,3.597466666666667,0.92117,0.552895,1.60866,3.7723666666666666,3.689274,5.144774,2.41973,3.368348,3.079963333333333,2.7558666666666665,3.1537433333333333,4.507766666666667,3.449843333333334,1.822985,1.822985,3.93779,3.0647800000000003,2.75306,3.379075,3.2375333333333334,0.5584155555555556,3.2566,2.4758999999999998,2.5613733333333335,2.6134933333333334,2.4917225,2.39972,3.0939033333333334,2.5940233333333333,0.811532,2.851763333333333,6.227172809523809,2.049,7.401074333333334,1.6315940000000002,1.6315940000000002,3.39744975,3.356733333333333,3.273343333333333,2.637896666666667,1.6445979999999998,1.307377142857143,3.3110233333333334,3.3402999999999996,1.3563966666666667,1.5841428571428573,2.8403733333333334,2.559388,2.67156,2.12121,1.78469,2.55309,2.06006,2.825255,3.469055,1.993945,3.76303,3.209855,6.886285,3.416695,1.71824,2.953255,2.840635,2.17575,4.1206,2.42686,2.66114,6.8875925,0.8389307692307693,0.7818158333333334,4.62126,1.439074,1.439074,3.57623,2.3507725,4.19121,3.29591,1.3769366666666667,2.3695060000000003,3.063363333333333,2.4162743333333334,4.902625,5.08585,2.540583333333333,1.9881233333333332,1.247107857142857,1.247107857142857,1.8008066666666667,3.879935,4.0922,5.5828,3.177706666666667,4.746875,4.227155,6.6015,4.483825,2.562215,2.88595,2.70436,2.7241700000000004,0.7213433333333333,0.7213433333333333,0.7213433333333333,3.202275,4.192515,3.86462,1.01514,1.01514,5.01645,5.7669,6.62676,21.795495166666665,10.967,8.17828,3.222465,5.70715,2.35817,4.337235,2.6218233333333334,3.1907533333333333,3.9177666666666666,5.239102666666667,2.321295,1.945325,6.28904,2.20878,2.20878,6.4494,3.16433,4.173235,2.129715,4.932156333333333,4.890815,3.70927,5.241,3.376455,1.9485466666666669,5.86165,8.6402,1.9485466666666669,2.129715,2.0358966666666665,0.9599360000000001,0.9599360000000001,1.719414,2.2282100000000002,1.719414,4.43659,5.54005,6.0925,8.52638,2.129715,11.2221715,6.03105,5.77115,2.35817,3.340735,4.3115,8.58617,3.198698333333333,3.390745,6.0227,3.079405,4.66246,6.04555,4.16112,5.03625,4.866095,2.60589,5.1281,3.38713,4.291145,4.368645,0.80649625,1.486314,2.992565,5.46545,4.476695,2.60746,2.03744,3.8958,4.57286,5.78565,5.41855,5.1448,4.49604,4.24543,4.15047,3.753025,2.1336825,4.9301075,2.11714,2.56022,3.4899,1.7071666666666667,3.93578,3.91905,3.72192,3.6352616666666666,2.737645,6.659208333333333,0.8952933333333333,3.47133,1.93794,1.1766142857142856,5.018225,1.351735,1.76759,2.44226,2.7419374999999997,2.971526666666667,2.8058366666666665,1.6451475,0.7268609090909091,2.23489,2.73916,3.59188,0.6934507692307693,6.853641666666666,2.0813966666666666,1.198904,3.3399,1.198904,3.89547,0.9565818181818181,4.634455,3.1477233333333334,2.07495,4.419332,4.286517,4.286517,4.6253,2.3842,3.0339816666666666,2.6722333333333332,1.43188,3.779155,3.87018,2.0266533333333334,0.7012550000000001,6.79569576923077,2.775475,4.262945,4.32516,7.69732,2.068235,4.320015,3.7731,3.161945,3.596205,5.3727,6.3143225,4.48009,4.61722,5.20005,2.9000866666666667,4.93065,4.21673,4.47506,1.0367600000000001,0.4865792857142857,3.227085,3.4125666666666667,2.8207166666666663,5.2458,3.91367,4.122725,3.800375,5.05005,4.458845,4.177255,1.18826,2.210915,8.059285833333334,2.1280966666666665,1.9578533333333334,3.907101428571429,10.992875456349207,1.5679975,5.2314,6.53815,5.1939,3.4929,2.21596,3.2552,4.051745,1.1052766666666667,3.1112300000000004,3.31333,0.28553263157894737,2.1282133333333335,4.16304,4.133705,2.291985,4.164145,2.8211,4.9032374999999995,1.1909133333333333,0.5316927272727273,3.7123241666666664,1.0773614285714286,0.99357875,0.99357875,0.99357875,0.99357875,1.6179583333333334,2.5502433333333334,1.8138966666666667,3.2768466666666662,5.24195,3.6183,5.1853,3.74657,4.34547,3.549185,4.018085,1.4997966666666667,6.45408,2.32632,4.470705,5.242816666666666,5.1144,5.018483333333333,2.3480166666666666,2.41671,2.644973333333333,3.188135,1.2290633333333334,4.387458333333334,2.6195533333333336,4.902285,2.79575,2.3143933333333333,3.845395,3.35415,2.99434,2.511406666666667,2.9084266666666667,1.5016075,0.40750444444444445,4.021345,3.50912,4.22861,3.545095,3.927195,5.50445,4.184,0.5512923076923077,3.053628,7.2155613333333335,2.0019133333333334,2.1600200000000003,5.724605,6.35875,2.7530066666666664,4.8484,5.21015,4.264895,3.78807,4.243035,5.2443,5.5102,5.06345,3.565615,5.052001000000001,1.485478,1.527645,4.407685,3.994165,3.93521,3.247875,5.2328,4.589905,3.910955,3.3768,15.385526661316213,1.2612314258962012,1.050465,1.7425104545454544,0.49254375,0.43722933333333336,1.453275,0.34202647058823527,1.294978,2.9153800000000003,1.67973,0.8992,1.0297166666666666,0.47674666666666665,1.0297166666666666,1.0297166666666666,0.47674666666666665,0.8110923076923077,0.5035114285714285,2.474265,2.6455866666666665,4.455285,3.54283,2.8535133333333333,2.70115,3.873165,4.861205,4.835905,2.678505,4.096225,0.6947092857142857,2.3607673333333334,7.951649166666667,4.092515,6.637696666666667,2.74676,4.2293,2.36889,5.0021,5.2437,3.44135,4.470635,2.99178,1.0422200000000001,4.23729,4.649585,1.097854,1.3309760000000002,1.4864466666666667,2.53136,1.8475733333333333,5.24475,5.81725,2.291965,2.291965,3.5997905555555554,6.61873,2.10039,0.6596799999999999,0.8000257142857142,2.189,3.279256666666667,0.8811942857142857,0.8811942857142857,0.8811942857142857,0.37243076923076923,1.0461,2.849975,5.9761,3.673666666666667,4.020206666666667,4.94097,0.96996,3.3316833333333338,2.8985833333333333,3.8034666666666666,5.51525,2.4701133333333334,7.134061666666667,4.480285,1.0338966666666667,3.7322,1.897122,2.72276,2.3707066666666665,6.509198333333334,3.3375,4.340685,2.2792075,4.23423,4.46431,4.81846,0.5321744444444445,2.8230466666666665,1.5072999999999999,2.743373333333333,4.052688666666667,2.09067,2.8708666666666667,2.53911,2.5771433333333333,2.6936033333333333,2.8279533333333333,2.8599266666666665,2.8848000000000003,1.342722,2.4092100000000003,2.0066966666666666,3.1491433333333334,2.6401866666666667,2.0966825,1.8812433333333332,1.9177833333333334,1.65428,3.276485,2.1903866666666665,2.225076666666667,2.2682800000000003,2.51864,2.4938,0.7917000000000001,0.7917000000000001,0.7917000000000001,2.4734233333333333,2.1543733333333335,3.0704100000000003,2.3990766666666667,2.5277333333333334,2.12382,3.888695,3.5326133333333334,1.3438333333333334,2.57763,2.763693333333333,3.7015700000000002,1.5638285714285713,7.255895,4.40183,3.306155,4.10684,3.53603,1.4570725,0.8508142857142857,2.97044,3.831255,3.7015700000000002,3.825655,4.27606,4.408815,2.8266233333333335,3.70503,4.18775,0.90557,2.66563,3.41262,4.934680833333333,4.719045,3.632285,3.15157,2.53699,2.1595366666666664,2.3921033333333335,0.6524075,5.166355,2.829775,3.98014,2.73911,3.7120283333333335,3.28089,2.542003333333333,2.92926,2.92926,2.6259633333333334,2.1003966666666667,2.42691,2.0750800000000003,3.992455,1.423262,2.686315,3.832025,4.05206,3.929875,5.2761,3.360795,2.35838,2.15201,3.28887,2.91447,2.68332,5.0531,2.71578,1.0172914285714285,1.0172914285714285,4.63429,3.999561,0.998626,4.380305,0.998626,3.71276,4.66953,4.790495,2.958585,3.25927,6.4295975,4.277398333333333,5.4493,0.8434,0.8434,1.9849640000000002,4.181478333333333,1.5026783333333331,2.6788,3.47522,1.1503428571428571,3.433905,3.73274,5.6223,5.6223,1.0485233333333335,5.26845,5.10895,4.835995,5.65035,2.0654425,2.0654425,6.8855,0.9175272727272727,7.24515,1.9770975,6.4507775,2.757545,2.493133333333333,3.39155,2.36524,2.3631533333333334,2.27915,2.9524066666666666,2.3922097619047618,6.274609,1.7393399999999999,4.471445,2.898213333333333,2.33052,1.87842,2.10561,3.403325,3.5941,3.527215,2.782165,2.21414,2.22747,2.48181,1.1022880000000002,3.45999,2.45924,3.324625,2.0577705,2.0577705,3.04149,2.15342,3.82187,3.46061,4.996535,7.12035,4.12897,3.57259,6.279408166666666,1.9943733333333336,3.362733333333334,2.2975600000000003,1.437542857142857,1.672775,4.18043,1.5557583333333334,0.502269375,0.6284283333333334,4.34171,4.725605,2.875675,0.9834566666666666,2.75939,3.027676666666667,4.50713,1.60895,1.83318,1.0845533333333333,4.552925,2.34378,4.441415,0.738398,4.107414583333333,3.9298,3.542685,4.492375,3.546735,3.867595,2.6487766666666666,5.35225,3.62956,1.6992233333333333,2.6587733333333334,5.999071666666667,5.9860875,0.7869875,3.648425,4.6221,5.12945,3.625166666666667,3.637233333333333,2.709925,3.1728633333333334,3.8571666666666666,6.1698949999999995,2.559388,2.712166,3.940775,3.05826,2.44664,2.5411,8.631166666666665,4.591065,1.9885833333333334,4.627255,4.83686,1.801532,3.784455,1.23622875,1.5935142857142857,4.478385,3.945025,4.672305,2.4760766666666667,2.71102,2.79316,4.61643,3.593905,3.1757,2.830795,3.445675,3.6063,3.787135,1.1551686923076923,1.1551686923076923,7.43058,0.8716425,2.275863650793651,0.8716425,0.6463833333333333,0.38466222222222224,2.9222469841269842,2.471665,0.7429514285714286,2.275863650793651,2.097895,3.296375,2.1792955555555555,3.6739,4.52609,6.911428333333333,2.238625,2.05966,2.226205,4.020125,5.64775,1.83864,1.7651075,1.1110125,2.8761200000000002,4.10517,2.605235,4.579785,6.3085725,0.43156055555555556,3.73868,0.694646,2.769553333333333,2.189415,3.70815,1.24769,3.997685,4.5642625,4.11215,2.769985,3.62595,4.768165,1.63839,3.199455,0.571736923076923,2.31342,2.31448,1.149226,3.0490766666666667,2.4817899999999997,2.5608333333333335,3.62107,7.7605949999999995,3.0266584848484848,3.822975,3.395915,7.01028,5.430386666666667,2.996703333333333,4.33766,3.533175,5.4952,4.19021,4.952425,4.759525,4.265135,4.396165,3.8307,1.5869,1.6685866666666669,2.1718466666666667,3.808415,2.5388066666666664,0.19092297297297298,0.19092297297297298,0.19092297297297298,29.852651476190477,0.19092297297297298,3.139222972972973,0.19092297297297298,0.19092297297297298,0.19092297297297298,3.2283596396396397,4.030585,0.19092297297297298,0.19092297297297298,0.19092297297297298,0.19092297297297298,0.19092297297297298,2.917715,5.05959,3.11633,0.17595051282051283,0.17595051282051283,4.475156666666667,3.9481265416666664,3.9246652083333338,3.272689430555556,3.9214723809523813,7.9783333333333335,11.403899893162395,6.315369333333334,8.242916666666666,7.9257395892857145,2.8387666666666664,6.279800476190475,4.397246666666667,4.2274690064102565,0.17595051282051283,8.08665,6.559562857142858,7.152098333333333,2.89845,9.014880089285715,14.002069851190477,17.990785391483517,57.067527104273175,115.45514038865547,1.4176283333333333,3.4003333333333337,3.374525,3.8975364388674385,0.17595051282051283,1.54220858974359,9.054986041666666,15.028034880952381,19.695936666666665,47.31055670802005,13.554307089285714,3.261325,0.23336344827586208,0.23336344827586208,4.83541,2.9332233333333337,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,0.23336344827586208,5.62496,0.23336344827586208,0.23336344827586208,0.23336344827586208,2.68189,1.8778866666666667,3.964645,3.671435,4.666038333333333,4.96927,1.7722675,4.15499,4.186825,3.11717,1.57934,3.802585,1.028095,2.293775,1.95512,4.92223,5.979363333333333,2.7965066666666663,5.548059888888889,0.5333577777777778,0.4521786666666667,2.379863333333333,2.772013333333333,2.88883,3.798485,3.4684333333333335,7.39808,3.863995,3.95534,3.40267,3.94844,2.903195,3.24382,5.69055,1.896355,0.4458192307692308,0.8365827272727273,4.3803775,1.80544,3.73554,3.90371,4.53872,3.630945,2.321305,2.666595,0.630524,0.729685,4.32561,2.752243333333333,5.9785,3.602295,3.8046583333333333,2.398225,2.935035,6.5595,4.014865,3.37184,0.8095454545454545,3.00743,4.21519,2.268155,0.9733225,1.5636133333333333,3.979585,6.5275,2.10804,3.1142,3.909775,5.8498,2.534625,2.4729966666666665,2.08237,4.703245,2.49517,4.42728,0.6674257142857142,2.114383333333333,3.459705,1.784315,5.880216666666667,3.12244,3.72315,4.347895,3.05383,2.106175,0.5214263636363636,4.24134,4.961425,6.86325,3.533965,4.014105,4.718075,2.851885,1.922425,1.1567642857142857,4.79963,2.154285,2.73682,8.30376,4.05555,5.2928,3.275585,0.6602377777777778,3.13254,1.2113685714285716,3.140615,6.04045,4.74231,4.95486,3.60776,5.24575,4.2847,1.532395,1.6941633333333332,4.85848,2.9120866666666667,3.2483,2.3575675,5.40955,4.23956,1.4728933333333334,3.5408666666666666,2.83196,2.810215,3.949545,9.37864,4.58724,1.8312125,4.63625,5.9873,4.3111025000000005,4.009925,3.822765,3.842095,4.70153,8.217255,2.4378033333333335,3.416145,3.51058,4.316215,2.67057,3.175085,4.43121,4.30503,3.46392,4.016013333333333,18.503583,2.8406533333333335,2.6443966666666667,3.21036,5.612698,1.108735,4.022325,2.0988708333333332,4.82725,1.374595,4.15064,4.26036,3.45811,0.9630875,4.587955,4.451815,1.7282975,4.754955984848484,4.084635,0.9683200000000001,3.65431,1.968185,2.52383,1.856395,4.391055,3.91427,3.71119,3.730635,2.9919333333333333,4.327825,8.088218333333334,4.38994,4.04339,4.551135,3.0738466666666664,3.694915,4.734615,6.459484,1.063302,1.063302,4.49767,4.55079,2.1562466666666666,1.3900333333333332,6.9148,3.815615,3.58922,3.74261,4.493575,4.44545,3.703285,4.08452,5.7246939999999995,3.87746,4.41712,4.72885,1.3616371428571428,2.5101,4.021195,4.40954,3.39694875,0.1996752777777778,1.476445,2.044765,2.5344533333333334,2.1736999999999997,0.9647122222222223,1.4711625,1.50107,2.3130866666666665,0.6004322222222221,1.0357,1.809615,3.997375,3.842,2.0324933333333335,2.5441733333333336,2.89216,2.90301,0.66801,0.94693,3.133575,4.564045,4.600625,2.731595,4.587425,4.338585,4.13913,2.0366,4.32092,4.895595,4.259955,6.232655,3.694035,0.5012735294117646,5.40075,4.567135,3.64952,4.432975,3.327025,1.891488,3.652225,4.07551,3.03606,5.341768333333333,4.50471,1.406735,5.341768333333333,4.060885,6.9572899999999995,3.818875,1.133688888888889,3.65917,4.87491,4.147155,2.6366666666666667,4.796065,1.4480275,2.03645,3.129685,3.56412,0.8465222222222222,4.623835,4.929765,3.396975,3.91278,3.4112666666666667,2.9137233333333334,1.7314139999999998,1.5332975,3.183955,3.48496,3.199683333333333,2.454423333333333,2.1155325,1.9095123333333333,3.827275,1.2733657142857144,0.8286922222222223,5.51489,3.839815,1.47149,2.4727200000000003,2.1853833333333332,2.7797,6.150698333333333,2.244913888888889,0.809061,2.564905,4.301495,2.0563566666666664,3.67917,4.97571,5.4304,4.07007,4.217585,4.93441,2.1926200000000002,2.3004333333333333,1.7012866666666666,2.241233333333333,1.957925,2.2834766666666666,2.2336666666666667,1.53108,2.709765,3.05684,3.66706,6.4179,4.38045,4.0446,4.383885,3.963145,3.85674,5.07675,0.87627125,2.8664633333333334,4.71567,1.159704,0.630696,5.02625,3.439545,2.5236899999999998,3.48512,6.057052499999999,5.41165,0.9117369999999999,1.1165357142857144,0.7170955555555555,4.229397499999999,2.3571433333333336,2.8192466666666665,1.1656814285714285,2.6907766666666664,2.660156666666667,5.3523,4.51503,4.290675,5.105,4.11609,1.2516,3.749885,1.71979,3.59767,3.69597,3.36522,2.5007699999999997,3.26193,2.725543333333333,2.910125,4.027335,3.09133,2.233695,8.530835,10.11471,4.081855,1.3992900000000001,5.54395,3.726165,4.558935,4.53088,3.732535,3.87501,3.507065,4.38075,3.560444270833333,5.58419,3.78291,3.427345,4.653875,1.8207540000000002,4.803495,5.8689,4.92322,3.3147,3.321835,7.325480000000001,0.7908916666666667,2.5874533333333334,2.77411,2.3869633333333335,5.0241,3.33723,1.2298333333333333,4.08567,3.291596666666667,3.891195,4.669285,4.175519166666667,6.68102,3.0098633333333336,2.84702,3.184063333333333,2.68387,3.84161,2.0111399999999997,2.19561,3.0114066666666663,3.99434,3.7556375,2.0233275,1.5187575,3.1348764285714283,3.040022,0.9082233333333334,2.464478333333333,2.464478333333333,1.3545775,5.80675,3.14866,3.1814,3.7217,3.18534,3.49364,3.31397,3.14296,3.419825,2.25175,0.53471,3.36559,5.616485,3.21077,3.758825,3.267765,4.10819,3.97807,3.192885,2.50943,3.726745,3.809715,2.672135,2.845655,3.562735,2.705493333333333,4.145755,3.938055,8.791,3.288295,3.83145,2.946885,4.054835,4.180875,3.728815,2.348405,3.676585,2.6231524999999998,2.86714,3.036185,3.268265,3.770855,1.65582,1.65582,2.26736,3.23355,3.194485,1.627338,2.49509,3.50169,1.7197980000000002,2.819455,1.627338,4.08775,2.957305,3.834774,2.98377,3.559275,2.25015,3.242565,4.265325,4.16625,3.423695,4.69853,3.924285,4.413325,3.581315,3.16581,3.32505,2.8777,3.98715,2.6858733333333333,3.688735,5.1516,4.20521,3.74592,0.280424347826087,3.754415,0.450555,3.60924,3.69928,3.020775,3.46933,3.713465,5.7662716666666665,3.057775,2.6271133333333334,2.42893,2.8831433333333334,0.640064,6.474683333333333,3.246705,3.485995,3.44804,1.95382,2.57902,3.400925,3.386385,6.792915,4.71664,4.771565,4.47817,4.09022,4.182175,3.67554,1.4089816666666666,1.6571660000000001,3.752185,4.431295,5.770910000000001,2.48066,4.92266,1.69678,3.4491,3.741785,1.9226588095238095,4.130985,4.8626175,3.4615666666666667,3.637966666666667,2.56068,4.457085,4.46095,3.3528000000000002,4.343135,4.42377,4.786695,4.201435,4.44348,3.829865,3.0774,4.013275,2.45885,3.1380700000000004,3.1380700000000004,4.234445,2.5667266666666664,3.939995,2.2941533333333335,4.427295,3.236776666666667,3.81137,1.88123,2.09411,1.1848866666666666,1.1848866666666666,1.664272,3.2275566666666666,1.8195566666666665,2.7973666666666666,3.973485,5.162563,3.1923066666666666,3.770785,5.68791,2.971635,2.822175,3.00644,1.6250733333333331,4.118875,3.84816,6.2573625,1.6507133333333333,5.13885,5.81195,3.2601633333333333,3.448815,4.22042,6.90891,1.8170733333333333,2.307975,3.860125,0.4681385714285714,3.486825,4.10628,4.29462,4.05363,2.812105,1.270588,1.5891959999999998,4.044245,2.917815,2.4241333333333333,3.83101,4.83952,5.0819,1.03304,3.04604,4.591915,3.62504,4.67716,2.3631966666666666,5.0305100000000005,3.867805,1.559322,3.591325,1.21095,2.7190600000000003,6.874713333333333,3.22422,0.64014,3.051335,3.967335,3.827175,1.6439625,1.6439625,5.1662566666666665,5.37515,2.891985,0.4901844444444445,1.9437775,4.365543333333333,3.97916,4.298775,1.84306,2.9588666666666668,3.11488,1.1641415789473684,1.1641415789473684,1.1641415789473684,0.7362390789473684,1.252890745614035,0.5166516666666666,1.1641415789473684,0.7362390789473684,0.2539415789473684,0.770593245614035,0.2539415789473684,0.4822975,0.4822975,0.4822975,0.4822975,1.1127523333333333,1.0329675,2.3855866666666667,2.3313550000000003,1.0878050000000001,6.542845,2.76247,5.606401666666667,2.1182966666666667,3.449235,2.87784,3.437505,2.769505,4.54568,2.9046633333333336,4.016185,4.121575,4.209355,2.06674,3.69739,4.695455,4.18124,3.31967,4.79854,3.492145,4.551435,5.52945,5.08575,6.1055,5.30985,1.1152625,4.75522,3.767665,2.783425,16.004335,4.4841,5.2415,2.6935866666666666,7.79007,4.142105,4.39925,5.1354,3.361025,1.0861325,2.57858,3.705995,4.277195,3.057105,3.20114,4.155185,2.8929833333333335,4.434075,4.50431,4.21947,6.633336666666667,7.042163333333333,1.3767857142857143,3.86681,3.93889,3.753205,3.68353,3.592315,7.2475,2.919675,2.928145,2.60563,4.0015,3.87449,4.633915,2.444415,1.765535,0.877228,4.18282,3.420345,3.56489,3.84129,3.240655,4.780745,4.14324,6.41115,6.05455,4.868395,6.65025,3.7545,3.323395,3.38818,3.432985,1.8502825,4.46243,5.6742,6.39645,5.721908333333333,5.721908333333333,2.416105,1.8502825,2.02606,2.893755,0.6975566666666667,1.4242966666666668,0.72674,1.3907475,2.465805,0.373386,2.83917,4.208005,1.3907475,2.9779995,10.72808,6.3706225,2.2151576666666664,1.00128,1.7469299999999999,4.226065,4.432165,5.531962095238095,2.01554,2.221935,3.531065,3.323775,4.501395,1.8644933333333331,5.0749,3.470966666666667,3.25161,4.88796,6.96926,3.800915,2.2991375,2.8330266666666666,1.8164266666666666,3.562005,5.0521025,1.794106,5.6432,4.631145,5.959415,0.5047753333333334,4.2077350000000004,5.62265,4.92498,2.440605,2.898075,7.3232,7.891083333333333,6.6296,2.0338833333333333,2.0338833333333333,2.0338833333333333,4.85679,4.903625,6.2756,3.695115,2.74869,2.5509544736842105,4.564305,3.39047,2.551665,1.87204,2.551665,6.953075,4.950783333333334,4.973868095238096,7.61507,4.973868095238096,4.973868095238096,3.7182714285714287,7.32793,5.655001,2.941996,2.941996,2.59319,7.1074,3.040475,3.50595,5.400203750000001,5.400203750000001,5.400203750000001,7.446915,3.6171024999999997,3.56057,3.631895,3.5034525,0.84555375,7.752683333333334,2.8019,6.77095,3.59534,12.669162666666667,4.93215,5.5536208333333335,6.84458,2.6104716666666663,3.466415,1.0966316666666667,5.5536208333333335,3.402195,1.6716225,1.6716225,3.21208,5.322871666666667,1.7650625,4.90603,0.8879810000000001,1.4751633333333334,0.8879810000000001,1.892005,2.6530435,5.5786109999999995,4.014035,1.4751633333333334,3.105865,5.02833,1.08515,3.626115,4.3629,1.995335,4.003825,1.9961,3.276475,2.74685,0.9379419999999999,3.559545,2.435195,2.02603,1.8499633333333334,3.3165733333333334,4.093485,2.69045,3.558865,1.4006466666666668,1.4006466666666668,1.4006466666666668,3.82314,2.922803333333333,2.922803333333333,2.52895,3.824145,2.1111400000000002,1.2402775,1.2402775,2.913785,5.3819975,0.9052675,1.4435900000000002,2.822835,1.330495,2.7740850000000004,0.9379419999999999,0.9379419999999999,1.7683616666666666,0.9379419999999999,3.320281666666667,0.8407583333333334,3.320281666666667,6.05537,3.61924,2.4063433333333335,1.826518888888889,0.6129166666666667,2.439435555555556,3.66876,2.439435555555556,1.002938888888889,3.442765,3.92339,3.989955,3.582595,2.79252,3.815075,2.041656666666667,0.8996286111111111,0.4702775,0.8996286111111111,0.42935111111111113,0.8996286111111111,0.8996286111111111,4.55988,4.4558,5.9298,3.42192,4.239645,4.12429,5.2388,3.44418,3.796305,1.3664299999999998,2.3036733333333332,4.129734166666666,3.94023,1.3982066666666666,2.63598,3.87357,3.920215,4.02169,3.24502,3.912965,3.39848,3.14734,4.278595,2.147533333333333,6.0715,3.640005,3.842765,4.379955,0.9312739999999999,2.2573,3.22784,5.89673,3.785885,3.197335,3.0167066666666664,4.060745,7.013886666666666,2.867903333333333,3.83223,2.5483166666666666,3.69949,4.065545,5.55175,5.324,4.00133,3.099655,5.42355,4.62199,3.4675999999999996,7.938715,3.1923133333333333,2.253825,2.3348733333333334,4.728985,6.56015,4.49169,4.844775,3.92193,4.79591,5.57575,0.4927969230769231,7.06922,4.41468,3.669015,3.637175,4.413885,3.81922,2.8544300000000002,2.425215,1.3318833333333333,0.5695269230769231,1.7623380000000002,3.19499,3.090115,3.55306,3.60536,3.995935,11.514263333333332,3.900955,4.041975,2.87996,0.6676266666666667,5.41418,3.0837066666666666,1.6355433333333333,4.71925,5.821501666666666,2.737795,8.50525,4.749065,2.1572,2.1572,2.1572,4.697845,9.29434,3.36376,2.606025,2.606025,3.648715,10.3019,1.01919875,4.569835,4.40509,4.06769,2.8067666666666664,2.4632166666666664,4.409915,4.07098,6.45995,6.230016666666666,3.98618,2.90389,3.92241,4.147365,3.2287255000000004,1.1212275,2.6696066666666667,6.23386,3.1697474999999997,5.1787,0.87640125,3.684366666666667,2.1676333333333333,2.5782133333333332,1.75615,1.8113599999999999,2.14904,5.34045,1.98962,4.49779,5.3004,1.7393399999999999,4.70895,3.6762,4.720555,3.1834633333333335,2.235675,2.750895,4.019925,3.983881666666667,3.983881666666667,1.131635,1.5713666666666668,2.6212633333333333,4.389490333333333,2.2173849090909092,4.890863333333334,1.7580300000000002,2.5644466666666665,2.1497699999999997,1.5973875,1.5973875,4.29359,7.220573333333333,1.84589,2.8419066666666666,2.155805,4.675495,3.1142,0.8321,3.077025,0.8321,2.59972,3.40722,5.35555,5.249,3.89374,4.559395833333333,5.68685,2.34472,1.93797,3.249843333333333,2.26133,6.06155,4.67731,2.56516,3.989965,2.57552,4.33366,1.10875,1.140832,1.8397033333333335,1.2046516666666667,2.7083633333333332,2.62554,2.22908,2.64113,2.64445,4.559935,2.55377,2.4134466666666667,2.78311,2.36077,2.7681233333333335,2.7051166666666666,1.9647933333333334,2.6088766666666667,3.98556,3.615115,3.32092,2.553645,2.817816666666667,2.1165775,1.8499775,1.1998366666666667,0.303474,0.13473130434782607,2.1369700000000003,1.7892733333333333,0.13473130434782607,3.6185863043478257,1.8419875,0.13473130434782607,5.657890486111111,2.12269,6.19433,3.491435,3.119073333333333,2.5614333333333335,2.8237666666666663,2.18493,4.40841,2.9322433333333335,3.21132,0.3897878947368421,4.013293333333333,2.6503712280701754,3.04106,1.822725,2.5328,4.298175,2.618055,8.05732,4.93466,3.23996,3.912735,6.69811,6.14618,1.6921733333333335,4.152200000000001,2.115205,2.149015,6.49964,7.65439,1.3629833333333332,2.092075,4.001275,2.63613,2.807395,3.025385,2.553995,4.710085,2.482785,3.0921,3.24785,3.295085,7.71487,1.2514633333333334,2.0359,2.75751,3.21103,1.8978666666666666,3.45137,1.4542,3.75925,3.432105,6.51566,3.366605,9.4344675,3.383115,1.547436,1.6568433333333334,3.07846,5.53713,1.57645,1.5122833333333334,6.01275,3.548625,4.113315,2.71704,2.11645,3.303535,10.796185,5.0446,6.68158,3.503965,2.26287,2.329435,2.69444,2.984655,3.18506,1.5858100000000002,1.6470633333333333,2.6161733333333332,3.523015,1.80636,3.527485,2.75004,4.01355,3.882405,3.745705,1.07507,2.793285,1.0427166666666667,1.382542,1.65146,3.3584,3.59629,3.837795,2.7605,3.89597,4.035345,2.76344,1.460294,3.565145,3.55343,2.965375,1.813895,3.111035,3.54392,1.47806,3.44889,1.5949900000000001,4.21087,3.75632,4.35822,2.65641,3.95155,2.05114,3.30424,5.7131,1.73216,1.0861271428571428,3.4326666666666665,2.66969,4.22589,4.30208,3.089,4.558375,4.79064,2.2001933333333334,5.08225,5.490725,6.63465,3.885305,6.166697666666667,4.06513,1.6742666666666668,2.835096666666667,4.454645,4.63417,2.480446666666667,6.982022,1.1047542857142856,3.2432766666666666,2.146685,1.779232,2.416043333333333,2.7540333333333336,0.382005,2.761206666666667,3.8366333333333333,3.48016,2.778085,3.3310099999999996,2.3206700000000002,2.4561433333333333,2.08506,8.860579999999999,4.81181,2.05452,5.46995,2.4819489782608697,0.7320719743589743,2.57602,7.190747333333334,1.6486999999999998,4.3981475,5.906,1.5411325,1.6172525,1.39226,3.97491,3.21381,4.43708,3.906085,2.43078,3.70084,0.86966,2.7293499999999997,4.178265,4.158995,4.78361,2.706635,4.962645,4.300535,4.101045,4.726975,5.55305,5.00055,3.811335,5.75265,1.7559339999999999,1.93824,2.83081,3.410125,1.1120777777777777,3.761145,2.23264,3.257153333333333,4.29595,3.1260433333333335,2.4205799999999997,1.5505533333333332,2.9913399999999997,2.873781666666667,2.672416666666667,2.9348166666666664,1.9842366666666666,2.1789,2.384575,3.54346,4.291735,3.634015,4.528445,3.40531,2.39893,2.93472,4.86958,3.8948,4.54541,3.049785,2.259595,4.4651,1.71118,4.1232,4.726909166666667,5.898577738095238,3.58767,4.25423,5.25515,2.948753333333333,3.8529958333333334,4.567535,3.55925,3.8275215,3.51616,1.36663,3.20554,1.86909,2.35846,5.08445,5.06068,3.8275215,4.045105,3.43272,1.5026783333333331,3.510235,2.03929,2.42686,2.094345,2.76299,1.6039568181818185,1.6039568181818185,1.6039568181818185,0.5516718181818182,0.8047033333333333,2.0682883333333333,1.103305,3.763865,1.2659233333333333,3.68344,5.1837,4.450075,3.299995,4.050575,3.20215,4.886095,1.49315,3.069665,2.831045,3.347865,5.9156770000000005,4.033435,5.0222,4.089395,0.9757125,2.40663,1.2937366666666665,3.861395,3.89753,4.38168,5.04435,4.35706,3.694395,4.291825,3.68594,1.701675,1.1013916666666665,5.223456666666666,1.0586833333333334,1.3372033333333333,2.5554433333333333,8.11381,2.914055,3.839405,2.730825,5.7348300000000005,1.71016,1.0575433333333333,1.5502925,3.177315,3.648395,3.83011,3.817905,1.910415,6.680155,2.9264033333333335,0.9306425,4.475495,2.8541399999999997,2.67047,2.3705933333333333,3.4827666666666666,5.7231708333333335,2.6868499999999997,3.0799033333333337,3.4846333333333335,2.46832,2.7220633333333333,2.9394533333333333,2.693545,1.9795125,4.582215,4.585195,4.765855,1.0447133333333332,0.7445630000000001,3.8795333333333333,2.7009666666666665,1.01169625,2.685029583333333,3.32693,4.091195,6.976089999999999,4.62883,3.529666666666667,1.7997219999999998,3.547035,3.754335,2.6050633333333333,2.519974,3.62244,2.812856666666667,4.902066666666667,0.8362833333333334,2.74858,1.7991879999999998,3.743455,4.09174,1.94253,1.12002,3.097,0.433158,3.42309,6.7429,5.3503,2.7941960000000003,1.5496320000000001,3.979366666666667,0.8100811111111111,2.60843,0.8100811111111111,4.00955,4.692685,1.288045,1.7018625,5.229473333333333,1.8857233333333332,3.48079,2.556285,3.434825,1.237384,1.5529933333333332,4.16907,3.99807,5.27695,3.0166839999999997,2.86565,3.20335,1.6120225,2.3044775,1.8092375,1.8779525,4.50895,1.467311111111111,1.467311111111111,2.996945,4.839771333333333,8.135490833333334,4.27564,7.605,2.28853,3.911195,4.06653,1.6568066666666665,3.4448041666666667,3.779755,2.926675,4.613265,3.1163,2.566465,2.7221666666666664,3.728405,1.068855,4.15209,4.49158,1.148005,7.67251,2.784945,3.2988,3.6085383333333336,5.14405,4.91296,3.3122875,2.302653333333333,2.8132133333333336,2.0338499999999997,3.805633333333333,2.2990725,2.1538525,7.356066666666667,3.3202366666666667,2.942216666666667,4.45998,21.823760787545787,0.68406,2.763625,4.5169,4.54429,8.68414,4.643795,4.75446,4.409295,6.853388333333333,3.689045,1.6396233333333334,4.912623333333333,3.338215,1.190038,1.190038,1.190038,2.3122137499999997,1.63391,3.407565,1.5458825,3.17553,1.4667133333333335,2.61096,2.529475,2.93809,1.5458825,3.35723,2.738955,4.134993333333333,4.815763333333333,4.839725,0.7375833333333334,3.22852,2.83463,4.654175,3.526055,3.01829,2.34494,1.748855,2.35184,1.456304,3.477025,1.6627025,4.485705,10.748440833333333,2.741286666666667,2.4102,4.53867,4.792033333333333,4.4985333333333335,6.53725,2.2605833333333334,5.430386666666667,4.397755,0.97959,1.2188042857142858,6.536152,4.221055,2.360945,3.72434,1.90633,3.521705,4.58585,4.405365,4.00808,1.252012857142857,4.24885,4.672355,4.572895,6.282052,3.30883,5.42995,4.390845,4.457705,5.0797,3.4822333333333333,4.8426,1.945975,3.3436,3.0689,3.294465,4.608005,6.31775,4.532345,2.786566666666667,3.635733333333333,9.22899,4.64375,3.1655266666666666,3.500145,3.192855,4.46973,4.35942,4.541765,6.735566666666667,3.484375,2.6907866666666664,3.9230666666666667,2.398905,4.223085,2.1341233333333336,6.378450000000001,1.625555,4.41968,4.65326,11.699019999999999,0.4926871428571428,4.34884,4.961615,0.6354428571428572,3.670255,3.947585,4.01154,0.912234,4.668135,4.982246666666667,2.65881,9.846803333333334,3.2248133333333335,1.8272300000000001,2.33766,3.351325,5.927,0.583035,3.87229,2.0100125,5.44185,0.7020700000000001,4.205085,5.54375,6.13405,3.586575,6.34637,4.637565,3.5591825,2.55027,2.8235233333333336,4.3101,4.386125,4.87893,4.97658,5.54885,3.07668,6.558590000000001,2.533825,3.0288850000000003,1.8815925,4.123945,2.043486666666667,1.5518733333333332,3.1183566666666667,2.901533333333333,3.23794,3.3977,3.6650666666666667,3.0050033333333332,2.6057900000000003,5.4899,3.1965833333333333,3.815905,4.885685,2.543693333333333,1.1407777777777777,2.96612,2.9851233333333336,3.62297,2.7740733333333334,3.0126033333333333,4.71719,2.03097,1.6947,3.179095,3.82564,4.3347,1.08909625,4.142075,3.18394,3.9676666666666667,2.8934166666666665,4.7637215,3.991455,3.355815,3.91149,1.591415,3.89396,0.6275875,4.571715,4.98946,16.990314545454545,3.0545766666666663,1.1875583333333333,4.139595,0.6150007142857143,2.663625,4.36736,1.95263,1.2191271428571429,3.547975,4.526045,3.082316666666667,0.8086466666666667,2.57931,8.20126,3.85713,5.38055,4.837005,5.03395,3.18253,3.7494666666666667,3.1759,7.322121666666667,3.825855,4.95407,1.9087125,0.44892388888888884,2.28024,3.316865,2.08069,3.38881,3.634855,2.87717,4.750605,0.6876941666666667,4.38476,3.637175,2.604655,1.19979,2.70622,1.99007,4.91251,3.999635,2.265475,1.6109428571428572,3.314685,4.27003,4.238045,6.0446116666666665,2.1970966666666665,4.64445,4.35909,3.639405,1.89363,3.83187,5.945088333333333,4.544555,2.428375,5.02915,2.66542,2.619815,3.696175,3.91432,1.3764649999999998,4.693365,1.9773466666666666,2.4337633333333333,5.0110133333333335,5.0110133333333335,5.31195,1.456642,5.09395,0.8902375,1.7347639999999998,5.06905,2.50319,1.4616966666666666,3.0109666666666666,0.957234,4.290733333333333,4.937275,2.75561,4.69754,3.772055,3.582505,5.3233875,3.450695,3.6948333333333334,2.5484066666666667,2.3475233333333336,2.757425,2.9056200000000003,4.21633,1.6705271428571429,2.9324833333333333,4.37113,4.48416,2.0819691666666666,4.2929,4.52759,4.802441666666667,3.3032966666666668,5.10495,4.74277,5.27625,4.823895,3.52564,3.715505,3.66514,4.39911,5.3667,4.577925,4.79797,4.536705,4.607005,0.6947,4.95134,4.40399,3.918795,6.9980775,3.968295,3.67211,4.253905,4.724095,3.630535,3.570365,2.0225737500000003,4.4979925,1.749505,1.3223685714285713,3.691495,2.0764766666666667,2.5514966666666665,3.862422,3.3904333333333336,2.79942,1.15669,1.873245,4.55975,3.620365,1.8859625,1.8859625,3.296,1.608596,3.157773333333333,4.42361,3.641005,3.72752,1.44655,2.15119,3.4746733333333335,1.981245,4.081725,4.27328,4.54253,4.129155,6.622766666666667,2.663825,3.738885,4.301595,4.45272,3.1987966666666665,3.994435,3.86191,3.973355,1.805585,2.34653,4.464875,3.86083,3.564835,3.713245,1.6816425,3.69593,4.27248,4.49783,4.204985,3.7382999999999997,3.7382999999999997,3.035905,3.84202,4.01764,3.641615,1.607336,7.2718175,3.942595,4.876115,4.37323,3.95191,3.853765,4.874755,2.858365,3.05601,2.913145,5.0225,1.7881139999999998,4.08441,5.356012777777778,4.94738,0.717419,4.786598333333333,1.185,4.77034,4.57654,4.38241,4.1345,5.12495,3.6193666666666666,3.6193666666666666,0.850212,2.3308625,4.85491,3.462425,3.72636,5.00465,5.4338,3.33672,3.99809,1.3012599999999999,2.675975,1.640885,1.2926625,4.244988666666666,0.8642989999999999,2.3253633333333332,3.1352466666666667,1.2970966666666668,1.967555,2.7017100000000003,1.25024,6.64978,2.01284,2.50592,5.6414,1.8631625,2.747123333333333,2.77901,4.58132,3.7993,3.2710033333333333,3.9962,1.673762,2.1680183333333334,3.98592,0.6547757142857142,2.133036666666667,2.291781666666667,3.0974299999999997,2.848743333333333,1.1443814285714284,0.828445,2.4880166666666668,4.18202,1.1655642857142858,2.09212,1.21392,5.370324999999999,2.242025,5.03315,4.28868,4.158845,5.1651,5.2939,3.930775,4.195295,1.3219416666666668,3.9446,1.7298760000000002,2.4027499999999997,1.2100000000000002,4.487265,2.0400675,7.305680000000001,3.97521,3.766705,1.44832,6.9251499999999995,3.30718,1.449885,4.24041,3.025725,3.722535,3.037385,2.038745,2.038745,3.13988,1.3097033333333334,1.3097033333333334,1.89363,2.8799966666666665,2.0966825,1.3438333333333334,3.477933333333333,1.06593,3.1138399999999997,2.328245,1.8622875,1.4809316666666668,2.218205,1.9993875,0.30329117647058823,2.3552725,1.19008,2.3586233333333335,2.1497699999999997,2.35838,1.050318888888889,1.1022880000000002,3.8844666666666665,3.06603,2.038745,1.80544,2.1847866666666667,2.5262733333333336,2.437656666666667,1.79483,3.294093333333333,1.1064500000000002,3.2421733333333336,2.63357,2.608706666666667,1.559836,0.92853,2.571675,0.92853,2.571675,0.69919,0.69919,0.4728494444444445,2.221025,2.2001,0.69919,2.21269,2.32672,2.44319,1.65428,0.7917000000000001,0.69919,0.69919,1.66107,1.66107,2.0702225,1.80544,0.69919,2.23434,0.4828753846153846,2.8263833333333337,1.9736333333333331,2.5123633333333335,2.5498066666666666,2.5498066666666666,0.38611650000000003,0.38611650000000003,1.89363,1.967548,2.10272,2.0148,0.38611650000000003,3.481733333333333,2.31727,1.584272,0.625025,1.584272,0.625025,7.18763,2.57725,4.031733333333333,2.6366466666666666,2.908393333333333,2.9886700000000004,2.7919366666666665,3.4707666666666666,2.47789,1.6426675,2.53429,2.867903333333333,2.384723333333333,1.66107,2.6071296825396826,2.6071296825396826,2.7990866666666663,2.141005,4.27939,2.3441533333333333,3.15526,2.7997833333333335,1.4453179999999999,2.2616325,2.1988625,0.7932127272727272,1.712955,3.71679,1.6641400000000002,3.07315,2.4353599999999997,2.6257,3.8699999999999997,1.6543283333333332,3.483033333333333,2.9984800000000003,4.260933333333333,1.219942,0.23336344827586208,1.3062742857142857,1.3062742857142857,0.9730777777777777,2.925823333333333,3.8034666666666666,2.29507,2.0980866666666667,2.0980866666666667,2.123655,1.5949900000000001,0.925831,1.7382033333333335,1.7382033333333335,0.69919,1.89363,2.9356266666666664,3.14782,2.328245,2.20578,2.20578,2.20578,1.1024066666666665,1.437542857142857,1.437542857142857,2.3697575,2.594063333333333,2.6008962058080805,3.612175,2.53988,2.4473233333333333,3.67899,3.91039,6.4554100000000005,3.36274,4.23776,3.9888,13.466940000000001,4.722425,3.42711,0.96644,4.000595,3.330075,2.29524,3.72903,4.81085,6.148908333333333,5.8813,0.4699652941176471,3.6529,3.32914,3.77093,2.43675,4.406275,4.387685,3.85463,8.256855,3.568855,3.90133,4.029255,3.2834863636363636,7.843937538461539,3.074403333333333,2.6697366666666666,3.643445,3.546125,5.03355,3.79744,6.406691,3.19447,1.351802,2.747705,0.92623875,4.54293,2.723505,2.735425,3.974645,2.975865,2.631145,4.58997,3.891565,7.224175000000001,4.061015,4.726093,2.3349433333333334,5.01629,3.078995,1.1061025,1.1061025,3.50372,3.95875,2.261715,2.11979,4.064745,2.855135,3.05715,1.85771,1.90427,2.86594,2.487973333333333,1.1031275,3.215245,4.70609,8.47083,1.53366,2.61229,2.90999,3.085255,2.7831166666666665,8.48665,4.08435,3.4344,2.6656866666666668,3.98704,3.243346666666667,2.9036866666666667,3.116476666666667,3.850715,3.906185,4.280665,4.076175,0.391026,1.5252766666666666,2.38016,1.770335,4.452295,3.529005,2.6681566666666665,2.21306,4.33146,3.67567525,1.9952275,2.549865,0.870223,2.12328,2.56935,2.56935,4.91569,1.902355,2.7752833333333338,2.3877200000000003,2.0361733333333336,1.7209433333333333,3.178115,3.95534,4.66946,4.18317,5.23045,4.69068,2.92946,2.91283,2.03636,4.71914,5.360433333333334,1.8666966666666667,2.98058,2.06412,2.1427566666666666,3.659465,2.26529,5.1606,3.70098,3.53624,4.30185,2.97066,3.664925,3.992995,2.3432166666666667,2.60347,0.4233635714285714,3.6717666666666666,2.54644,3.008405,6.06695,4.70407,5.705494166666667,1.8804675,1.5438266666666667,3.058565,5.1021,6.30265,5.86315,2.8178966666666665,2.256676666666667,3.57358,2.240203333333333,4.528445,2.01179,2.292705,5.14215,4.68174,4.251465,1.74599,1.921915,1.0675620000000001,1.0675620000000001,1.217932,0.9032571428571429,0.770174,1.838733142857143,4.35399,9.8534925,3.89691,4.22374,4.061245,5.90604,2.645895,1.6696733333333331,3.2965616666666664,2.9904,4.89783,2.3146299999999997,2.5120833333333334,2.8484133333333332,3.1742000000000004,2.205836666666667,3.117703333333333,3.165703333333333,2.908466666666667,3.4443,3.3392,2.8357566666666667,2.6830833333333337,3.22532,2.424,3.1575333333333333,3.0397499999999997,2.9733933333333336,3.288123333333333,2.03692,5.540962476190476,3.087346666666667,4.142286,3.29179,3.0786866666666666,3.7974,2.8450966666666666,2.6247266666666667,3.0792866666666665,3.2835366666666665,3.4893,3.1106033333333336,1.7894875,2.7575533333333335,2.63712,2.848425,2.848425,3.3145233333333333,3.0762300000000002,2.4839266666666666,2.8054900000000003,2.90551,4.1718,2.8967833333333335,2.829475,2.7207833333333333,2.8814966666666666,4.363733333333333,4.812045,1.62042,3.4181333333333335,3.8423,3.324668,3.2454666666666667,3.6971666666666665,3.2718633333333336,2.9082266666666663,3.527584,1.858332,2.7750440000000003,3.4077,3.28075,2.5688333333333335,2.370296666666667,3.9289666666666663,2.8857166666666667,3.0877733333333333,2.3891025,1.0248983333333335,3.1677466666666665,2.53559,2.1172566666666666,2.401725,2.9577466666666665,3.0845766666666665,1.930518,5.546776,2.38224,0.889966,4.3491,1.8106775000000002,1.56462,4.331745,4.062385,3.35444,2.328875,1.3311525,3.44777,2.646555,2.61694,0.38329599999999997,2.106255,0.38329599999999997,1.81374,1.3311525,2.72149,3.746295,2.301315,3.10847,3.40135,0.4561733333333333,2.7420733333333334,0.95725,0.4453335294117647,3.577095,3.88681,4.954145,2.44938,5.33065,4.17742,3.844605,2.22327,3.9421666666666666,1.635062,5.13325,2.376595,4.26379,4.45091,2.97307,1.9043033333333332,2.070203333333333,1.320845,1.851515,1.0604175,1.0604175,4.52398,2.179256666666667,5.998546666666667,2.58905,2.42582,1.981465,2.35396225,2.755475,6.7936,4.930842500000001,2.1753675,2.3759633333333334,2.35396225,3.01268,4.72854475,2.9272787499999997,6.237403333333333,2.58905,3.39751,3.434635,3.0389366666666664,5.6127,4.78091,1.85637,2.0929325,2.36407,2.235985,4.83484,5.2556,1.8798875,3.713655,1.6250733333333331,1.6624025,5.2028,10.173353333333333,2.0332933333333334,2.0936866666666667,2.4397333333333333,3.942615,4.116865,1.8851675,4.67611,4.570775,2.895075,38.93882051190476,2.7825733333333336,2.94992,0.3953527777777778,4.557353333333333,2.0285266666666666,0.8986977777777777,3.89176,3.57691,1.792905,1.7942175,2.3640633333333336,3.652135,1.3830485714285714,3.201811,3.63575,4.731335,0.918366,4.802975,5.11335,4.75432,2.6617466666666667,1.5753925,3.75685,4.49324,3.524045,3.13666,3.66085,3.80522,11.446120252525251,2.6394800000000003,3.097,3.787715,2.87627,4.21,3.304645,2.975095,3.05907,6.257043749999999,4.47405,4.952565,5.0226,2.58798,3.47674,4.21126,3.69892,4.696215,4.29947,0.12331086956521739,2.3703,5.06175,2.97259,1.6792166666666668,1.1758,1.1758,2.20807,2.628395,2.96944,1.9418579999999999,2.92116,4.482805,2.504985,4.610801666666667,0.5744992857142857,4.65702,3.45875,4.766985,4.61546,4.368215,1.1638725,1.04397375,4.350533333333334,2.962536666666667,3.0487966666666666,3.911400606060606,3.912175,6.0308600000000006,5.3951,3.82093,3.532125,2.1275608333333333,1.47535,4.482005,0.320832,3.36105,3.86166,4.02025,14.134530000000002,1.99593125,3.0369233333333336,0.77876125,4.58364,8.80805,3.43314,1.7399433333333334,5.78415,3.136893333333333,1.023772222222222,5.0583,2.97548,3.027455,4.75488,3.4526630555555555,0.9794425,6.644616666666667,0.7481475,4.91446,3.1999110555555554,1.3868975,2.131168388888889,3.3064325,3.3064325,3.94274,4.348041666666667,1.2844,2.451095,2.777855,3.779225,3.42047,2.530375,2.945305,3.40466,6.861035333333334,6.3473,4.211515,3.338375,4.63512,4.492115,3.562295,3.499495,3.56532,3.84242,4.1934,2.5731266666666666,2.6468166666666666,1.591385,2.3103433333333334,2.211455,1.565835,2.750023333333333,3.591833333333333,3.484166666666667,2.9344433333333337,2.5085366666666666,1.57934,1.60203,0.4687518181818182,2.4239266666666666,1.6088285714285713,1.8379525,3.4962999999999997,2.5035700000000003,2.6466366666666667,0.9375775,2.2214875,2.649715,2.84886,3.654095,5.2835,3.80975,2.99998,2.2650166666666665,3.40773,4.209445,2.452245,3.99826,1.950755,3.92361,2.82013,4.114935,1.3271666666666666,0.623554,2.2328,3.369805,3.15048,3.96275,5.07732,8.90079,3.323323333333333,2.2153300000000002,1.8200866666666666,1.740936,1.740936,2.92244,2.45395,4.779575,4.33622,3.389185,4.76275,4.011425,4.16718,3.0784808333333333,4.25071,7.781325,2.4968575,0.502269375,3.2837666666666667,1.3148066666666667,1.0333114285714287,1.9494933333333335,0.78249,2.058655,5.64605,4.995995,5.785810000000001,0.947135,7.51634,1.9520620000000002,1.5474766666666666,2.4012533333333335,3.768255,3.326283333333333,2.30087,3.431155,2.9677433333333334,4.191666666666666,2.9027600000000002,2.70631,2.9954,6.738815,2.531685,3.96051,3.787935,3.7345533333333334,1.5898233333333334,1.23921,4.385395,2.8876066666666667,3.17628,5.38208,2.50524,2.18788,2.352715,3.15783,3.8053333333333335,2.2958866666666666,3.6350266666666666,2.9228199999999998,5.44765,2.4270154166666664,1.8671875,4.69989,5.1903,4.318055,3.90125,1.4968333333333332,2.152895,1.93313,3.432105,1.5333533333333333,0.85175,2.641565,2.1013075,1.913845,4.30459,0.6935841666666667,5.5249725000000005,1.4031225,0.7581118181818183,3.5583666666666667,3.904325,0.65693,3.068023,3.1896649999999998,0.828445,4.178625,0.17530071428571428,0.17530071428571428,0.17530071428571428,0.17530071428571428,0.17530071428571428,0.17530071428571428,1.937366,3.896485,1.937366,1.937366,1.7714633333333334,0.17530071428571428,0.17530071428571428,3.3660666666666668,2.3771633333333333,3.44957,3.29808,2.29339,3.5874,1.335207142857143,1.550338,3.2287255000000004,1.366656,2.6943266666666665,2.639473777777778,5.43643,3.89502,3.837295,6.6003,4.364875,4.512665,3.654195,3.790095,7.229046666666667,4.0218,3.705833333333333,2.223,5.024756666666667,2.55865,2.0920575,1.6937,4.45421,5.14975,5.034,4.97133,5.47575,4.106825,4.587535,0.6956181818181818,0.6895835714285715,0.6895835714285715,4.768335,2.359183333333333,3.756525,1.0247942857142858,4.34639,1.4286142857142856,2.3368166666666665,2.61562,4.538833333333334,4.538833333333334,6.8829,4.79597,1.2933700000000001,9.537688333333334,2.8657066666666666,1.2299111111111112,5.0632,5.18765,3.694095,3.01809,2.58989,4.1473,0.8227066666666667,3.2867833333333336,3.4422333333333337,3.790233333333333,3.1381033333333335,1.49188,1.4110266666666667,4.824298333333333,3.2156533333333335,3.3038900000000004,3.4949,5.279254166666666,3.4710425000000003,0.802168,1.7865399999999998,3.7817333333333334,2.1338733333333333,3.735533333333333,3.491,3.0229700000000004,3.3333999999999997,3.050193333333333,2.430563333333333,0.9276666666666666,3.1150366666666667,2.457803333333333,3.450685,3.086415,3.652975,2.73358,3.36,3.035375,1.607678,2.0828433333333334,2.626996666666667,3.5290666666666666,1.79708,3.2985633333333335,1.7986333333333333,3.796666666666667,5.216018333333333,5.024320666666667,2.412605,2.5581,2.84315,2.4881575,1.6530285714285713,2.1757875,3.313036428571429,2.528225,3.5935333333333332,2.970865,3.735416,3.04718,1.2713444444444444,1.2962125,1.7584175,2.199015,2.9789033333333332,3.5750666666666664,4.93165,7.8928,2.67488,5.0648,3.59978,15.189641,0.518535,11.243735000000001,0.8311222222222222,3.476625,3.7778333333333336,3.12018,2.97336,1.627552,1.460294,2.3928933333333333,1.176732,2.834548,1.8833133333333334,2.8499766666666666,2.1571766666666665,2.5420366666666667,1.5866433333333332,0.6148933333333334,3.0023999999999997,2.464253333333333,2.7959066666666668,1.1024066666666665,3.4878,0.7364575000000001,0.3542746153846154,1.9144766666666666,4.26075,4.62556,4.321125,0.7587018181818181,3.9329,4.74869,1.1569425,2.385005,5.3140425,3.43147,3.804375,3.86252,3.877695,1.882875,3.889235,2.64647,3.279425,3.6252,2.869745,2.688695,3.86555,3.276745,3.70962,2.012515,3.554995,4.22806,1.4118700000000002,4.43527,2.27319,4.15813,5.157866666666667,1.9282475,2.6616500000000003,2.956253333333333,5.748871666666667,2.48087,3.120465,4.818335,4.031733333333333,4.122205,1.9264866666666667,2.75875,4.42396,3.539766666666667,3.89131,3.609833333333333,3.02183,2.9036233333333334,4.2107,3.185116666666667,2.68242,2.68487,0.4559866666666667,2.543475,2.0969025,4.393425,4.676865,2.9987033333333333,2.5841333333333334,3.1662433333333335,8.293625,3.627785,3.880285,2.8572666666666664,3.96961,2.973625,3.6578258333333338,2.7243366666666664,2.1699625,2.6651833333333332,6.29555,4.721595,2.12657,3.314615,3.058405,2.8012033333333335,4.322266666666667,1.7822559999999998,6.08058,3.89562,4.86554,4.21624,6.4688,3.68947,6.792433333333333,3.55239,3.181595,0.6180042857142858,2.17191,1.5083325,2.877273333333333,3.11293625,4.231595,4.05875,4.97567,2.617856666666667,4.4489,3.600733333333333,3.8127,3.31591,4.36633,4.59006,4.521285,2.7142366666666664,5.837925,4.52016,1.4619816666666667,5.32775,3.37769,2.67349,2.17341,2.35833,4.388528666666667,1.2453285714285713,2.33219,1.9998125,3.91964,4.29631,2.5609966666666666,3.3464666666666667,2.9868433333333333,2.31256,3.905235,1.3527,2.2602866666666666,2.3900833333333336,2.867456666666667,2.6004633333333333,2.5916533333333334,2.7542299999999997,3.990045,3.0876066666666664,2.83424,3.984195,2.142135,3.69257,3.589815,1.4451469696969697,1.4451469696969697,4.46602,2.7639033333333334,1.792905,1.2972625,1.9681325,2.0046275,1.373194,1.4974233333333336,0.654482,1.60789,1.4373966666666667,2.99204,2.2046433333333333,1.8511166666666667,1.9761366666666669,2.3548533333333332,1.4687533333333331,1.8066266666666666,1.9347233333333334,2.527225,3.801165,2.944575,2.8123733333333334,2.6265,5.52365,2.89715,4.336895,4.02083875,1.99012,4.048375,2.805,1.87636,3.53279,1.893315,2.89506,3.614945,1.855795,4.486775,3.95663,4.292395,3.27152,0.7922433333333333,4.94728,3.835655,3.34836,4.09095,2.3308833333333334,4.31854,4.830005,4.72864625,8.990900833333333,3.344915,4.397565,2.720803333333333,3.62731,4.32069,2.334055,2.92926,3.749735,2.05814,5.86059,1.85472,2.744055,5.697934999999999,2.8082666666666665,4.291568,1.188007142857143,4.200725,4.12723,3.0730133333333334,4.94009,4.631775,6.449835,15.323978928571428,0.6353176470588235,1.050318888888889,2.8604066666666665,3.672485,3.53082,2.14399,3.3009,4.15753,4.93327,2.48635,4.40731,1.67025,1.67025,5.12955,0.7649345454545454,1.724726,2.978815,4.053465,0.37243076923076923,1.99846,3.9177531666666665,1.167655,3.1000433333333333,2.80543,2.947945,8.23164,2.5935566666666667,3.846833333333333,2.03943,2.24788,3.6209375,3.47787,3.40452,7.1076231666666665,2.0532925,2.85465,4.55333,6.8127949999999995,1.913,2.3262666666666667,2.586793333333333,1.3616566666666667,2.494555,1.69024375,3.93889,3.90065,1.5488175,1.8610386666666665,1.8610386666666665,2.99741,5.43785,3.91271,3.88714,4.482305,4.19863,3.22082,3.748915,4.503055,3.50519,4.378466666666666,3.441055,4.435455,0.8894420000000001,0.36680625,5.30495,3.886235,2.4676566666666666,8.05602,1.60017,4.701833333333333,4.15135,0.36105666666666664,2.0564633333333333,1.3224500000000001,1.8753433333333334,2.0593166666666667,5.574336,3.198365,3.193145,4.9302725,4.906995,4.699165,0.5870784615384615,1.880825,0.604321,5.864878333333333,1.38334,4.939185,1.94463,3.22535125,3.25595,4.15627,3.959045,5.3245,0.8676663636363636,3.24485,3.863255,1.967845,1.664295,3.72128,3.06945,3.560135,3.83556625,5.323171428571428,4.58505,5.6392,2.8328666666666664,0.5328288888888889,3.2888966666666666,3.591845,0.5833630769230769,3.95129,3.86307,4.102365,3.415795,2.7255800000000003,4.781505,3.2242,3.081055,2.19043,3.88304,1.613616,3.47961,3.85515,0.5674230769230769,3.56454,3.93462,3.165345,3.81364,4.48864,2.686315,3.924565,0.618268,2.9545933333333334,3.6621699999999997,4.342785,3.5077,2.47631,3.4294,2.47631,4.965705,3.000675,2.9622566666666668,1.5034716666666668,3.1561299999999997,1.7637025,4.214865,2.8056066666666664,4.93704,3.0098800000000003,2.6420333333333335,3.0015933333333336,2.3106651785714285,2.3106651785714285,2.3106651785714285,2.18539,1.0893033333333333,4.633785,2.498883333333333,1.6984833333333331,4.0051,2.4530566666666664,3.05564,4.136805,5.684,3.239315,1.8441075,0.9713200000000001,4.059125,1.952004,2.148433333333333,3.096775,3.322125,2.02359,3.42453,2.70491,1.6275480000000002,4.94315,4.16749,3.168125,3.743435,0.7647066666666666,2.4278766666666667,4.361015,7.6956299999999995,3.932405,2.95337,3.08475,3.496755,3.906905,1.66187,2.3981925,4.43453,2.0727775,4.366285,3.202425,5.19175,8.307383333333334,4.088895,3.231275,3.42217,4.816485,4.02838,3.257815,3.257815,3.669505,4.059811666666667,4.18965,4.025465,4.238275,4.53214,4.012725,1.0955775,4.34337,4.090705,5.1479,7.975579999999999,4.89725,3.721667333333333,1.8826433333333332,1.4995016666666665,2.3206949999999997,4.974135,3.715265,4.96991,2.1454066666666667,4.105185,4.85362,5.1548,4.708985,3.00388,3.24856,3.93477,4.991115,4.25728,3.774705,6.63678,4.65611,2.39873,4.908035,3.941445,3.68499,3.676015,4.691555,0.7579609090909091,4.00156,4.22385,1.1567642857142857,1.22311,4.76834,4.62648,8.509467,5.3562,4.454085,5.9582,3.07765,2.47395,5.0465,1.72867,1.72867,2.67236,1.6916200000000001,3.0277175,3.21565,2.0332075,4.204096818181818,1.4020566666666667,2.19802,5.636575000000001,3.407636666666667,3.611345,3.08706,3.953495,4.03319,2.999306666666667,0.9898677777777779,4.08052,3.0993600000000003,4.06523,4.23031,3.7468516666666662,5.6571,4.525715,4.54051,3.7895,5.15385,6.5081,4.59716,3.39095,3.2225,1.877695,1.877695,3.80523,3.90683,2.5178066666666665,2.7743966666666666,2.1162301515151514,2.6421566666666667,1.6167933333333335,1.6167933333333335,4.16103,3.52105,2.196,3.659065,2.79318,1.995405,1.2011025,0.9353400000000001,2.728925,0.4368568421052632,0.8217944444444444,2.91507,3.53828,0.4352927272727273,3.767465,1.8708580000000001,5.24845,3.49245,7.00361,4.29569,5.242816666666666,4.77785,5.37865,4.156125,1.884765,1.870984,3.75317,3.02563,3.76982,1.2702066666666667,3.237415,4.305455,2.69821,2.65892,2.628735,4.23516,3.264295,2.820005,3.894045,3.574025,3.41062,2.97296,1.0461,1.81049,2.384515,2.752555,4.35012,7.57943,0.9315200000000001,1.56695,1.56695,1.791882,3.861865,2.70653,3.016225,5.34684,2.9265399999999997,1.34799,1.34799,1.34799,2.932115,2.9779995,4.93592,3.254495,4.1872,3.343955,3.63807,3.0539,3.3294875000000004,3.661315,4.2482612500000005,2.8500199999999998,1.373194,2.85227,2.8500199999999998,3.68807,1.3737566666666667,2.0246833333333334,1.836495,5.848276,3.130545,6.596011,5.848276,3.465466,1.6830499999999997,1.6830499999999997,2.67383,6.54055,1.6830499999999997,2.17913,5.61454,2.079595,2.587905,4.55322,3.67955,4.05234,2.0809366666666667,3.29149,5.01116,2.36776,2.442955,3.90773,2.0809366666666667,2.40915,1.89711,5.73786,2.64309,0.995156,2.554775,3.315095,3.356968666666667,1.8938,2.097122,4.46836,1.9403686666666666,1.566105,3.42755,2.345655,3.71105,3.67144,2.257476666666667,2.822225,2.08903,6.37578,2.45526,3.147625,3.36266,3.36266,8.726516666666667,0.8976666666666667,2.956815,2.575415,2.947275,2.4391,1.2723333333333333,1.2723333333333333,3.56451,1.935095,6.59759,2.38563,3.37078,3.093845,6.81075,2.588075,2.369165,5.879525,5.879525,2.22674,1.5037675,1.1904325,1.1904325,1.5037675,2.04845,1.3146733333333334,1.2039366666666667,1.5221433333333334,2.1022666666666665,3.6619,1.67678,3.42495,3.17727,2.69845,2.886505,2.92917,2.52035,3.275693333333334,3.275693333333334,5.95648,2.431215,3.000095,3.175185,3.08523,2.641405,2.85393,2.46984,5.040905,1.69847,1.474761,1.4083293333333333,2.2648943333333333,5.67273,4.080761,3.462565,3.368485,1.8995275,1.8995275,1.8995275,4.28265,2.54727,1.2039366666666667,2.995705,3.448875,1.295715,5.401625,3.175375,6.62376,3.56763,1.654605,3.45533,2.3096,2.282875,3.56395,4.59353,3.31936,1.66228,2.02128,2.930645,3.228315,5.601,2.12135,3.293785,2.710635,6.36616,4.84879,1.967365,1.992785,5.72149,5.11712,5.20239,5.27778,1.03178,1.03178,3.735463,3.735463,0.7603679999999999,5.38532,3.27978,4.86865,4.28826,5.14332,2.123215,4.280643333333334,4.280643333333334,2.166365,3.37007,3.60462,1.198904,4.57287,3.28941,3.187465,2.64586,4.40255,2.634215,1.78781,3.300695,2.94133,2.993935,5.51526,2.69704,1.88213,3.78419,6.55461,6.23682,4.28042,2.673235,3.49947,2.414595,5.08335,2.91668,3.41558,2.071225,6.15574,4.46761,2.21316,2.368135,2.4595,4.81542,2.44698,2.77101,2.81655,7.04503,4.08378,3.26384,2.220605,2.7023,6.73391,3.035915,2.66285,4.04646,3.027175,2.987605,2.60862,3.058045,1.8875866666666665,2.057145,1.9994266666666667,1.6941033333333333,1.90285,1.9233233333333333,1.65146,2.06271,1.744595,1.8875866666666665,4.57155,3.89199,2.139315,1.6038375,1.6038375,3.572873333333334,3.572873333333334,3.1566866666666664,3.1566866666666664,2.7146,2.26235,1.81637,4.72793,2.2211974999999997,2.2211974999999997,2.2719325,2.2719325,2.99903,2.043405,4.31711,2.18937,2.94541,1.8668133333333332,1.8668133333333332,1.68765,4.11366,5.82093,1.3737566666666667,4.12002,2.257476666666667,2.13481,4.02848,3.085375,1.80057,2.3114,5.68676,2.193485,6.30752,2.970495,3.28126,3.12648,2.859985,6.06159,2.95985,2.558695,2.5339761538461536,2.76773,6.12654,3.72428,1.508858,1.508858,3.57094,4.78139,4.77795,5.41084,2.70908,2.617125,1.898545,3.009115,1.635605,2.819905,1.76843,0.768858,0.768858,0.768858,2.1234458333333333,4.983443333333334,2.1234458333333333,2.04719,3.6254150000000003,1.670265,2.26531,4.54602,3.36574,5.42803,1.5690233333333332,5.40233,1.5690233333333332,1.5690233333333332,2.299055,1.839665,1.956345,5.45594,1.956345,2.49888,3.78925,2.306025,1.84602,2.802595,2.944433333333333,3.2098199999999997,3.2041733333333333,3.491695,1.2499133333333334,3.89158,0.7280536363636364,3.963155,4.3833375,2.5990599999999997,2.5990599999999997,0.7004281818181819,3.9103,2.5365733333333336,5.4176,4.737415,4.284765,5.28215,4.052485,4.1892,5.0698,4.14975,4.276475,3.76737,3.928635,4.75738,5.0397,3.27919,3.48888,4.1309,2.39213,1.206636,4.367395,3.234895,2.921005,1.1501214285714287,3.932705,4.03813,6.1752775,1.0267275,5.355,4.0273,2.239965,2.1148,3.211865,3.61846,1.666135,1.508858,3.911795,4.67337,2.83194,4.76211,3.140495,1.12782,2.9326133333333337,1.1588057142857142,3.0686666666666667,2.0069466666666664,2.9274966666666664,1.92883,2.5598366666666665,4.02786,3.138355,4.578775,3.382915,2.2020225,4.94339,4.29686,3.06257,5.39965,4.27819,2.7327133333333333,6.0894,4.68496,3.2373149999999997,2.64979,2.829815,2.9433433333333334,3.1871733333333334,2.5683966666666667,4.83176,4.38112,3.86702,2.4582466666666667,2.65551,2.4465133333333333,2.3300433333333332,2.2937766666666666,2.4067133333333333,2.1794733333333336,2.2932175,1.30824,2.987707666666667,1.1730825,1.70638,1.6362775,2.660975,1.6001275,1.8216175,3.796545,4.280335,1.9727525,4.019425,3.363445,6.1473249999999995,2.1169233333333333,1.6494520000000001,6.3841,3.406775,4.506915,4.36227,4.00854,2.00344,3.70543,2.3856025,2.95131,4.287755,0.7245583333333333,3.884935,2.2161033333333333,0.7555818181818182,4.763715,4.56152,4.07301,1.830075357142857,4.695955,5.9059,2.69786,3.16338,2.502213333333333,2.1611466666666668,0.594411,3.1559833333333334,2.93245,4.723725,2.487255,1.996995,3.254265,0.99408,1.9030683333333334,1.9030683333333334,2.736985,1.9030683333333334,4.11153,2.901945,4.40297,4.270275,5.74095,12.863884166666667,3.0383766666666667,4.75608,2.66955,4.719625,3.023635,6.4346274999999995,2.79933,4.93453,4.787905,3.90342,1.144005,4.75119,3.0325633333333335,2.40672,0.9460700000000001,2.148065,3.315825,7.053608333333333,4.197575,2.8799966666666665,4.545185,3.13988,4.173865,4.259065,4.885555,3.000805,2.8809533333333337,3.998665,5.55735,2.507585,4.167445,1.74982,1.74982,3.114115,4.70261,1.10874625,4.069832,2.042835,4.74296,2.63657,2.6366133333333335,3.079276666666667,2.4107433333333335,0.72135,3.430915,2.7649399999999997,5.323,4.48101,0.2257196875,4.988835,4.441545,4.09229,6.516923333333333,2.9054699999999998,2.8863800000000004,2.0737866666666664,2.88635,2.530206666666667,1.2624366666666667,2.9045433333333333,2.5623766666666667,1.3860400000000002,3.26515,3.0607399999999996,2.4751966666666667,2.6960033333333335,1.2050094444444446,4.350815,2.721305,5.07095,3.905765,3.792955,1.5981500000000002,2.5374466666666664,1.3663225,1.83569,1.3663225,4.769035,3.375,1.562228,2.374715,4.03694,3.876675,3.056175,3.96366,0.36460400000000004,1.3010416666666667,3.917755,4.42284,6.3772,1.836235,2.7255599999999998,3.12459,2.1059766666666664,2.7887,3.6423,4.493415,2.4412675,2.1843366666666664,2.8719,2.6536766666666667,2.6615866666666665,4.195595,1.939765,4.480775,3.647835,6.17705,7.431197500000001,0.7400077777777778,0.832755,3.839365,6.570749999999999,2.00356,3.572485,1.5232166666666669,1.5232166666666669,3.50398,0.44596777777777774,3.55026,3.533675,2.6054,3.848155,3.380965,2.83175,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,0.23278366666666667,2.279875,2.926105,3.7136216666666666,3.1164816666666666,4.0009325,5.379011666666667,2.92495,2.0897566666666667,0.9299666666666666,3.138705,0.772055,5.083749166666667,2.9939925,2.173805,0.772055,2.137075,2.65975,0.7519675,3.769215,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,0.15589266666666668,4.19883,1.571555,4.481435,4.589765,1.7281479999999998,4.823775,3.910585,5.26885,4.586378333333333,3.3914542857142855,3.27408,4.242745,1.872755,5.23944,4.35818,0.7418285714285714,1.4370142857142858,1.29622,3.2031500000000004,3.2031500000000004,2.924855,3.823805,4.039235,3.594495,3.975265,2.8323133333333335,1.9589533333333333,0.4730314285714286,4.314005,3.12036,2.687265,4.45924,3.413125,3.0847800000000003,5.05715,4.376525,6.491925,4.23188,4.590685,5.52675,4.4574,1.2505457142857141,3.09887,5.165843333333333,32.764096497474746,1.2051783333333332,4.05339,2.91643,4.545585,4.10742,5.04495,4.82799,0.41883238095238096,5.38385,4.393225,1.940795,1.953625,4.07143,1.57645,2.536295,2.274885,1.72206,2.730365,2.437656666666667,2.797235,2.62744,0.6074461538461539,3.004155,3.847025,0.3646573684210526,2.4953366666666668,2.699395,3.12528,3.93162,1.850405,4.40506,3.970405,3.041725,3.25667,2.980835,4.05224,2.981725,3.69761,2.0608025,5.165843333333333,3.5785,3.227295,2.82234,1.57877,3.7422,3.54005,6.719366666666667,3.51073,4.751425,5.8534675,5.305707,2.32519,4.320895,5.6047625,7.66263,2.510193333333333,2.59062,4.719285,5.751263333333334,4.026095,3.171685,5.383668333333333,2.763075,1.658055,2.2448225,60.00856403207774,4.979915,4.075475,2.5377,0.823321,2.56699,2.8049199999999996,3.3628,0.7655044444444444,4.38485,0.7805211111111111,7.684604285714286,1.952004,3.2347366666666666,1.761364,2.635525,2.5015,3.0104933333333332,2.4575066666666667,2.34198,3.2528066666666664,1.57772,5.313573333333334,3.9270333333333336,1.38654,2.62268,1.44306,1.5155875,7.83605,6.06255,3.45289,3.672555,5.117050000000001,1.456357142857143,3.5148333333333333,3.35291,1.6186325,5.54835,3.37693,3.943735,1.5332975,2.849995,3.6000666666666667,4.031455,5.6012,4.233025,4.398245,2.299715,3.706385,4.5335,2.9204166666666667,1.380834,4.039675,3.3518000000000003,4.113205,4.99659,4.11215,3.74245,4.487605,4.241955,4.28411,4.51484,3.700025,3.0505833333333334,3.860935,4.155165,3.173605,4.151125,3.74108,1.5685324999999999,1.5685324999999999,4.2077,4.92223,4.93552,3.53443,4.956795,3.3001466666666666,2.72047,5.20335,5.1345,0.7336072727272728,5.3969,6.364862500000001,5.51975,5.61845,1.019128888888889,3.15497,1.13079,1.13079,1.13079,3.98151,3.3496333333333332,2.5913633333333332,3.4643333333333337,0.976159,5.071,5.5382,2.8892,1.54595,1.99623,3.91836,3.83574,3.967975,3.3718640000000004,6.7565,3.45452,2.55094,4.488765,6.69335,2.30991,4.25793,3.844535,3.22306,5.4925,4.24131,5.03835,5.7442,3.104785,3.373966666666667,1.8948833333333335,1.8948833333333335,0.7188863636363636,8.699678,2.1141,5.7953,5.545,4.035805,5.61745,3.769065,2.9500666666666664,4.332915,7.56113375,5.572418333333333,2.46636,4.420365,0.963846,3.79845,1.9236133333333332,0.9265466666666666,1.1730185714285715,2.476,2.96231,2.91152,1.05734,2.5554366666666666,2.9781666666666666,0.8650988888888889,2.69318,3.1087666666666665,1.68988,1.793222,2.8107233333333332,2.9715433333333334,2.6487866666666666,2.53484,1.6500540000000001,5.26565,4.12411,3.845605,4.38259,5.1152,3.29324,4.436775,6.61785,5.14895,4.35329,3.894335,10.033893333333333,8.693835,2.8480733333333332,3.657365,2.0559933333333333,3.954845,3.26445,4.73121,0.9969566666666667,4.226905,3.567865,1.6034666666666666,3.892465,2.9896716666666663,4.41213,2.728455,3.88949,6.84135,7.938056666666666,3.941665,1.5107066666666666,1.5107066666666666,1.5107066666666666,4.708505,1.1568416666666665,1.46985,0.449485,4.3018841666666665,2.96564,3.36187,0.9600160000000001,1.09630375,3.115955,4.35047,3.67717,16.199322964285713,4.1489125,4.743715,5.8592175,2.6632966666666666,3.55957,3.271345,0.9061977777777778,1.1514525,3.711885,3.73516,4.328095,4.41022,4.262065,3.716245,2.7742737777777777,3.428755,5.17105,0.543345,4.48147,2.26353,3.746085,4.865755,3.457333333333333,2.4737433333333336,4.107173333333333,2.0170933333333334,3.589455,5.98055,3.0869199999999997,3.38397,4.066525,3.89986,4.55182,3.92641,3.339595,3.89177,4.649455,4.799775,3.46206,4.36672,3.83874,1.0623885714285715,1.32777,5.872471333333333,6.1361,4.01786,4.805775,2.5819,2.7350066666666666,2.8086,5.5733999999999995,1.8703025,2.027275,2.782633333333333,2.912736666666667,3.2194333333333334,4.51219,3.09791,4.986183333333333,1.19233,4.625075,0.8622733333333333,4.131445,3.39698,1.6484583333333334,4.55021,0.9514977777777778,4.95469,5.5751,4.681565,3.76405,3.7915725,3.89343,2.9889799999999997,4.942765,6.0962,2.8571615,4.118275,2.395165,2.63573,2.13068,2.48565,3.13136,4.95595,1.06593,4.561495,1.446745,3.41753,1.6661133333333333,1.06593,0.19092297297297298,3.61802,3.048865,2.292637083333333,1.9501433333333333,2.65477,1.10792,4.039725,3.60773,4.88097,2.56476,6.0805,6.425055,2.7213700000000003,3.301793333333333,2.647893333333333,0.778426,2.4625066666666666,6.0946,3.9298,5.54035,4.828745,2.09404,1.3611566666666668,3.9614599999999998,1.597755,2.1879575,1.7537575,2.855025,1.720325,1.93373,2.04996,2.006555,1.7267425,1.3992900000000001,1.3318875,1.9332425,1.706395,2.20294,2.33228,0.5455973333333334,0.982432,2.816683333333333,3.1766199999999998,2.01284,1.8243166666666666,1.566835,3.32367,2.3132033333333335,2.602055,3.23183,5.4976,3.81282,3.027676666666667,4.17701,1.5269482352941177,3.59983625,23.620494,4.69716,5.8293,4.025765,2.22825,3.868535,4.706525,2.227555,5.31005,3.3900666666666663,0.81113375,3.132755,4.43785,3.71157,4.17264,1.5126433333333333,1.95705,2.559903333333333,2.310145,1.5229428571428572,3.3936333333333333,4.944925,4.241685,3.395275,3.84227,4.794655,3.231135,4.548795,1.16887875,2.93146,4.099715,4.681125,1.82973,3.2112233333333333,1.74237125,1.74237125,3.70779,4.774995,2.94699,2.85976,3.962685,3.84716,6.7311725000000004,4.842635,2.31035,1.1514525,2.773405,4.34391,3.1138399999999997,2.6071296825396826,2.6071296825396826,3.336933333333333,4.987145,3.58306,5.097379444444444,2.487885,3.3669066666666665,0.6375566666666667,0.6375566666666667,0.6375566666666667,3.543535,3.901565,4.014768333333333,5.66015,2.1789,4.771105,4.92041,5.0584,3.32876,5.45765,2.50625,1.2933871428571428,3.905395,3.88263,0.4855035714285714,4.204,4.7179,1.4868633333333332,5.0994,4.87255,4.44116,4.18051,3.70178,2.917825,4.451045,1.719414,4.31843,1.549095,4.072635,5.87265,1.14970375,2.998505,7.101330000000001,3.844375,2.908393333333333,2.0880475,3.72757,5.654,2.972566666666667,7.41562,4.264695,2.2591733333333335,3.0987466666666665,2.74598,2.3852066666666665,2.77676,1.9003500000000002,5.04755,0.5527983333333334,2.022635,2.022635,3.29861,3.710985,2.367475,3.1232,4.084505,5.4355,4.10922,1.4009066666666667,4.454632785714286,4.18384,4.7164,3.615675,4.009810666666667,3.585832,0.42397866666666667,2.872692857142857,1.02217,0.42397866666666667,4.31082,0.8459533333333333,4.16605,3.921215,6.555377,2.1673233333333335,1.094055,1.136774,2.41703,2.8824633333333334,1.76828,2.47426,3.33972,3.644745,2.1279533333333336,2.3161766666666668,4.06335,2.8626787499999997,4.051525,5.60955,3.500765,5.17415,6.796501666666666,4.45999,3.60085,4.55717,3.824775,4.213175,4.8408,5.3692375,5.41375,2.44074,0.9159466666666667,3.52661,3.88984,4.18994,4.25285,4.121245,5.17235,2.448706666666667,2.50949,3.0245266666666666,2.25993,2.1250166666666668,2.9071166666666666,3.0820233333333333,2.25651,3.680015,4.22866,4.15497,5.2816,2.4428633333333334,3.5671,2.868975,0.7300857142857142,4.010065,3.502895,4.351855,2.710646666666667,5.210883333333333,3.052375,4.60038,3.77612,0.55413,0.5422014285714286,4.462755,2.7419374999999997,3.037095,4.317855,3.88701,1.6565699999999999,5.6107,3.947235,2.43434,2.6408833333333335,2.294035,2.049799166666667,3.3712,2.950673333333333,2.9823833333333334,2.99934,3.499166666666667,2.532725,2.99854,3.736966666666667,4.276515,0.564731875,0.564731875,0.564731875,3.272689430555556,3.4766,3.6934666666666662,2.5556766666666664,2.696126666666667,1.0955775,2.8669533333333335,2.966616666666667,1.6285425,2.6531333333333333,2.4007666666666667,0.9632655555555556,2.82554,4.64381,9.860349416666667,1.4710111666666668,0.602617,3.908605,0.602617,0.602617,0.602617,0.602617,2.175055,3.9930705,3.92586,4.63813,6.0267,2.78813,2.7402533333333334,3.0315849999999998,3.238121666666667,4.696245,1.0258716666666667,2.2235633333333333,3.2116566666666664,2.538136666666667,3.0287,3.50853,2.1966233333333336,2.350595,1.1543,4.926305,2.55764,3.42073,0.8810825,0.6629430000000001,0.6629430000000001,0.9379234782608695,1.8190059782608694,0.9379234782608695,0.9379234782608695,0.3513234782608695,0.3513234782608695,0.9379234782608695,1.5415933333333334,2.381883333333333,2.901065,2.97316,2.58452,2.5978333333333334,3.30831,2.7956,4.57434,3.795105,1.921315,2.2204333333333333,1.80017,0.17418437223858613,0.17418437223858613,0.17418437223858613,0.17418437223858613,2.5287666666666664,2.47134,0.912132,5.0616,0.7819590909090909,1.657156,4.61762,5.16725,4.37595,2.95427,4.48581,3.27459,1.6157733333333333,1.26038,3.648865,4.490345,6.61735,2.266675,1.3484633333333333,1.8805100000000001,2.86796,1.4586466666666666,2.751716666666667,2.7060433333333336,3.18214,4.171975,4.00754,2.99005,4.77813,2.39988,3.905315,5.38125,3.674365,4.22922,4.416565,5.249173333333333,4.414415,2.9200351428571434,4.7842666666666664,4.250715,6.54735,4.440355,4.42746,2.2209625,3.096315,4.21426,4.825505,4.43129,4.01531,3.960635,4.14133,4.04102,2.4172333333333333,5.18235,3.68814,7.64665,6.0697,5.66025,4.873235,1.4785428571428572,0.9182029999999999,0.6173076923076923,1.816838,4.828875,5.4645,4.17162,1.60915,4.05986,3.148695,5.2656,5.42045,6.243964,4.06801,3.180885,1.5753220000000001,5.42643,4.0157,2.98786,1.6690175,0.94606,3.923695,2.84553,3.5955075,3.70325,2.21205,4.520755,1.6689633333333334,2.9728066666666666,2.40656,4.45855,6.2237,4.846895,2.2792075,1.672225,5.63865,2.8206166666666665,8.6522,2.854975,5.06595,5.9202,4.332685,5.3428,3.63971,5.1779,2.180915,3.76845,4.669882,2.4666775,4.178155,4.42613,7.416785000000001,4.75867,3.0287166666666665,3.8642,4.07651,2.8626787499999997,3.620395,5.18485,5.62955,2.3507725,2.81766,3.26202,2.23444,2.48366,4.2652,5.6208,5.0084,4.59252,4.752035,4.104435,4.5533,0.6605930769230769,3.0150666666666663,1.1429399999999998,31.098816803204798,2.52923,4.586515,3.435625,4.58707,1.704732,2.47511,3.122852261904762,1.582179761904762,1.582179761904762,1.582179761904762,1.582179761904762,1.5406725,3.51262,0.3748111111111111,7.758503888888889,0.3748111111111111,4.178315,4.887895,1.9925825,5.1686,2.868425,4.025706666666667,2.3503833333333333,2.61917,2.79581,2.13451,0.6281361538461538,2.690103333333333,0.7392766666666667,3.394066666666667,2.0845,2.384792,1.19739,2.384792,6.2052,8.178555,4.466375,4.35417,5.7196,6.31715,7.389273333333334,3.11842,1.49196,1.49196,2.388526666666667,4.94292,3.76678,4.190485,6.019991666666667,3.8218,2.64068,3.7576,3.49521,3.4774,2.20616,0.72673,2.351395,3.6144,3.92378,5.211688888888888,2.15599,3.66693,1.1842460000000001,3.078855,1.22635,3.2601633333333333,2.8522533333333335,2.68891,3.388333333333333,2.8677499999999996,4.747775,0.63138,3.587305,3.5482,2.5364233333333335,2.4249266666666665,4.02541375,3.2339300000000004,2.05425,4.48983875,3.545555,5.1014,4.054195,3.722125,5.63045,4.99562,1.9704633333333332,5.4807,2.375121,1.78287,3.0805466666666668,2.2894133333333335,2.6989733333333334,2.543095,1.7977699999999999,3.3512886515151514,4.32929,3.27273,2.340468,2.340468,2.54842,4.043055,4.11652,0.5759945454545454,3.559485,3.10239,8.81956,0.8516263636363636,4.421875,3.35311,5.61725,3.3683,3.791875,2.41189,3.69155,2.9559,5.3554,2.5486208333333336,0.943695,3.79461,2.7049466666666664,3.738925,2.6341633333333334,3.694455,3.813425,3.902755,5.141362,3.468955,1.980775,5.202,2.5772833333333334,4.45242,4.54575,4.5172,4.58152,3.9874,2.93063,2.2124333333333333,2.788206666666667,2.5187133333333334,2.7072249999999998,3.198423333333333,2.7271290476190475,4.818913333333333,2.7758266666666667,2.3733666666666666,6.384335,4.775377083333334,3.7294475,2.984636666666667,3.6708,4.066565,3.636805,1.856625,3.74823,4.781475,4.964975,1.3355916666666667,3.882215,2.56582,6.724597500000001,4.83939,8.151126111111111,4.22125,3.98702,2.2055,4.26593,5.898955000000001,8.0141,3.41484,5.82494,3.863255,3.4199,3.75212,1.7822559999999998,4.568755,1.425795,3.589365,4.630435,3.3209166666666667,0.8302533333333333,9.236765,1.1493666666666666,1.87737,2.5288566666666665,1.9568233333333334,3.2971,1.3838133333333333,3.71121,3.683655,2.3222833333333335,4.38332,1.0891408333333334,3.576205,1.4125249999999998,3.0077088333333335,3.967235,5.2055,1.4713375,5.85843,2.4780046666666666,7.72121,4.412035,2.99365,4.07114,3.492095,1.1656029166666668,7.77905,3.13412,3.093815,2.3708,4.28969,2.14253,3.02682,2.321275,3.98582,1.3264375,5.86655,2.67061,4.16239,0.8351089999999999,2.033338333333333,3.89009,4.740695,5.26096375,1.277552,1.277552,5.62375,4.032125,6.0408,3.73771,3.431125,9.218845,4.347915,5.3214,3.899805,2.5328,2.3540856807475676,0.4034815,0.1905083870967742,0.6193439426523297,1.331260238095238,0.6640869585253456,0.1905083870967742,1.384729,0.4288355555555555,1.7347417380952381,2.00407294265233,1.851975,2.2240875,2.15083,5.1578,6.0368683333333335,4.555995,5.0421,4.378885,4.976195,1.22091,4.793425,3.84141,5.3702,4.92318,5.3063,5.30305,5.87585,5.456,1.1972516666666666,1.2550085714285715,1.842946,5.8018659999999995,1.305636,5.4164,4.560215,6.721267500000001,4.760025,5.2253,4.208945,4.445675,2.41406,5.27995,5.23595,6.536666666666667,4.76725,5.918584166666667,5.42395,3.78250875,4.26201,3.6231000000000004,1.00603,3.487966666666667,4.37951,1.1036975,3.6201000000000003,4.557125,4.3307625000000005,4.935055,2.476045,3.30638,2.6959066666666662,4.368195,2.1665325,3.876875,1.2703266666666666,3.32838,3.77182,3.800355,4.629775,3.3207079166666666,0.5694691666666667,5.93805,0.99647625,3.51137,2.8513133333333336,3.738075,2.15075,3.876945,3.849548205128205,3.236193333333333,4.346725,15.464351357142858,5.31859,2.1343,8.54574,1.4844075,3.80453,2.9622533333333334,2.92008,1.9893133333333333,0.20508434782608695,2.851483333333333,4.33023,1.76001,2.2326166666666665,3.0928233333333335,1.9001825,2.22687,1.448842857142857,3.18551,4.721645,4.83435,3.28842,0.4681385714285714,2.4265033333333332,4.76075,2.685725,3.918315,4.28193,4.550615,5.44715,0.46587,2.5308733333333335,2.5308733333333335,5.3336,5.01505,4.82312,2.566225,3.544833333333333,2.8205233333333335,5.15155,3.51368,5.341498333333334,4.407065,4.10397,4.755405,2.48517,1.867888,4.528745,3.749875,3.87476,3.31939,1.811844,5.1072,4.52979,3.88418,4.36767,3.771485,3.856755,0.6192326666666667,2.903645,0.5439633333333334,3.069763333333333,3.201185,4.119455,17.173056666666668,3.373095,3.695215,2.3096,0.914645,2.1473,2.608706666666667,1.559836,2.21394,2.44135,4.655765,2.2422866666666668,3.997845,4.144205,2.125875,4.34933,3.005786666666667,4.424865,4.867955,5.255,1.523525,1.773485,2.36079,4.525855,4.677345,1.103908888888889,5.18675,3.54047,5.4956,4.60331,1.72639,4.70226,3.3755,3.296245,3.67188,3.79882,3.1859633333333335,0.63237875,7.316393333333334,1.4101979999999998,0.1996752777777778,0.1996752777777778,0.1996752777777778,4.51726,3.824095,2.7390899999999996,4.228105,2.784835,4.53476,4.435154285714286,3.900386666666667,8.607033333333334,4.118955,6.88099,0.842945,0.78759375,2.448195,4.345055,4.234225,2.2722266666666666,5.24585,5.46565,3.51655,3.574975,4.266125,2.22251,4.82494,4.5910779999999995,2.3586233333333335,3.0727466666666667,2.949116666666667,2.70173,6.04885,3.628855,0.6348721428571429,3.354565,3.080005,4.192795,4.813926666666666,5.2821,2.94862,5.3988,3.63126,13.5158425,4.465095,6.809526333333333,2.326423333333333,6.323634,4.064035,3.7454,1.9993875,2.32511,9.57348,2.29715,4.3178,4.1052,3.7784,3.3363,2.848853333333333,2.100335,2.22608,3.0753566666666665,1.8207540000000002,3.8449333333333335,2.3897266666666668,2.6351466666666665,3.260123333333333,3.4240666666666666,2.4504200000000003,2.4504200000000003,2.49851,3.3899000000000004,3.2035733333333334,2.1888166666666664,3.3015566666666665,4.270133333333333,2.7669200000000003,2.6785633333333334,3.731833333333333,2.15597,1.95457,3.8971666666666667,2.8541333333333334,1.52743,3.7095333333333333,2.359906666666667,2.4957966666666667,2.79365,2.1659883333333334,3.3087166666666668,5.7613433333333335,2.25402,3.7734,1.8190366666666666,10.282179333333334,2.11898,1.7783066666666667,2.10982,0.9730777777777777,1.615586,4.2759366666666665,2.8077959999999997,2.8077959999999997,1.6341919999999999,1.5268666666666666,3.4825500000000003,3.723805,2.25254,1.5193349999999999,1.673762,4.634565333333333,3.5851333333333333,4.0422666666666665,8.296723333333333,2.881984285714286,2.4823233333333334,3.2333077639751555,4.357233333333333,1.95457,3.163483333333333,2.532286666666667,3.435033333333333,3.6012916666666666,0.878135,3.2999335,2.7078333333333333,2.8453700000000004,3.868255,3.0610466666666665,0.6599118181818182,1.9226588095238095,4.986295,2.505404,3.2804533333333334,1.66073,1.66073,2.0743875,3.775293333333333,0.9050610000000001,2.2397325,4.466953333333333,4.466953333333333,0.6606190476190476,5.6049929999999994,3.54766,3.78424,4.607185,1.2143857142857144,3.2681400000000003,3.4918,4.880596666666667,5.304175666666667,2.23415,0.6339940000000001,2.3712266666666664,2.58267,2.9780306666666667,2.1669233333333335,2.41374,2.7807566666666665,2.3214475,2.5236033333333334,0.76362,5.07225,5.026634285714286,1.29714,1.6992142857142858,5.4662,2.15472,1.611425,3.901425,1.381536,3.512735,2.6655,3.4344,8.828501666666666,4.133388333333333,4.198705,4.92685,2.2982063636363637,0.775846,1.862168,6.95552,1.84597,4.15947,4.1268,3.566635,21.182355,3.2045,1.3881,1.01809,3.0762666666666667,1.5571966666666668,4.291568,5.0728,3.339007,3.3599666666666668,1.23342,1.5291583333333334,2.8081933333333335,0.570526875,3.4503333333333335,3.730366666666667,3.0293533333333333,2.438484,2.44316,2.87966,1.9974533333333333,2.8970833333333332,1.483238,3.7159999999999997,1.3762183333333333,3.90734,3.830845,2.5381033333333334,5.3659,3.20271,4.050565,4.871765,4.44801,2.9573699999999996,2.88008,2.2794133333333333,1.1026042857142857,1.1026042857142857,1.1026042857142857,2.3183625,3.578333333333333,2.56941,2.546813333333333,2.2629266666666665,1.87539,4.05655,5.28545,3.81088,6.538195,3.207695,2.498065,1.900265,0.94509,2.50873,3.89367,2.4934066666666665,2.6556433333333334,2.45406,2.45669,2.6603866666666667,2.84381,2.8127600000000004,2.6564733333333335,2.189296666666667,3.463366666666667,2.1316966666666666,2.253595,1.6155675,1.66,3.0605166666666666,2.935166666666667,2.0410325,4.12757,4.903615,2.8083333333333336,2.393103846153846,5.503633333333333,3.764945,4.586465,5.3046,4.32292,4.390685,5.7864475,1.22386375,4.17904,2.76263,5.0266,5.05375,3.56972,3.409045,2.1889875,7.90187,2.73404,0.8115983333333333,7.28901,5.0842,5.460574880952381,4.370765,2.8241250000000004,1.6841425,4.82899,4.20196,4.34361,5.0851,2.49565,4.00794,4.17057,1.80017,3.80714,2.842175,1.3639983333333332,4.68168,0.5993058823529411,3.945220833333333,3.193885,4.544705,2.52682,1.77943,3.409695,2.064715,1.461175,2.68665,3.1209066666666665,3.2379866666666666,7.273531666666667,1.6114825,6.380683749999999,9.69679,5.3562449999999995,2.942845,1.3664299999999998,2.7511666666666668,1.3664299999999998,2.917343333333333,2.213373333333333,0.3192523529411765,1.2053723529411764,0.3192523529411765,0.3192523529411765,0.3192523529411765,1.2053723529411764,1.2053723529411764,0.3192523529411765,0.88612,4.040835,3.501575,3.231185,3.36529,3.56824,4.63004,2.691899,1.6420179999999998,6.859145,3.1659566666666668,4.136385,2.491913333333333,1.0335545454545454,1.17686875,4.447515,3.57949,1.1365555555555555,1.388656,0.7060790909090909,2.8537923073593077,4.26568,4.95236,3.4104666666666668,5.296155,0.5258661538461539,3.933495,2.74865625,2.7895299999999996,2.5039599999999997,3.3742666666666667,2.4816533333333335,2.8962766666666666,2.7376566666666666,3.036655,3.62645,4.600535,4.43947,2.12412,4.980615,4.34444,2.940565,3.920135,3.434035,0.3472606666666667,4.68176,3.53943,3.057045,2.872838,4.305865,4.04884,1.93698,3.087125,3.95333,8.094715,5.15815,5.43415,4.703695,3.8186775,0.8509175,2.21294,2.02421,1.3274,1.7714633333333334,4.24498,5.44315,4.01129,4.775175,3.3718640000000004,2.609195,0.9391516666666666,4.0075,1.2631483333333333,1.15223,3.372065,3.684675,4.543865,1.288525,2.4724266666666668,8.797600000000001,3.18481,2.9828333333333337,0.89279,3.386485,11.763633333333333,3.4509,4.20881,3.21267,2.876035,4.63048,5.0149,2.0394200000000002,4.225535,0.5291776923076923,4.67954,2.21269,1.7242275,1.7242275,3.4911666666666665,4.06021,1.55807,3.7695,1.2426657142857143,3.57857,2.5170175,3.344533333333333,4.80152,3.545725,3.9359450000000002,2.594275,2.9243925,2.9243925,10.698615,0.690433,2.69597,3.0322933333333335,2.13186,1.97542,0.8155357142857144,1.4609575,1.1251214285714286,2.109095,4.50529,2.52331,4.186635,2.02766,4.054645,3.89214,1.7217333333333331,2.020605,1.0990016666666667,6.0385445,2.032185,2.17363,1.635062,1.794106,1.01809,2.1906116666666664,3.659575,1.8969500000000001,3.1879333333333335,2.55587,2.7138266666666664,1.7256666666666665,3.1489166666666666,2.575133333333333,1.4956666666666667,1.7345166666666667,2.7233966666666665,2.727703333333333,2.5846033333333334,1.15455,2.553103333333333,2.0665033333333334,2.3451933333333335,0.3181521052631579,0.4047675,2.3712733333333333,2.15324,3.437015,3.0601866666666666,2.718735,4.69362,5.5322,4.427175,4.74658,4.188095,4.106295,2.816736666666667,3.87926,0.7689936363636364,0.06282977272727273,6.99085,0.06282977272727273,3.448645,3.05069,5.26675,3.53299,6.3171,4.557365,2.01219,2.52397,0.915375,5.37455,6.0732,3.3024833333333334,5.43775,1.716355,3.452535,1.9199359782608694,2.9865733333333337,3.2127166666666667,3.87272,4.9199,3.374035,2.4065600000000003,2.4065600000000003,4.19759,7.56478,3.51716,2.2011933333333333,2.4336699999999998,4.164965,3.00035,4.849205,3.42677,0.9537555555555556,3.896055,2.2549733333333335,2.6444433333333333,4.361665,1.0830766666666667,2.4558866666666668,4.00529,3.224405,4.64625,3.031605,2.76933,3.889895,3.900825,4.31208,4.828195,4.19171,3.1048061111111114,3.819115,2.7493266666666667,2.6590966666666667,2.4767266666666665,3.9062333333333332,4.172755,3.01158,4.986115,4.2524,3.79839,5.2148,4.391195,3.373555,1.453592,1.3771425,4.159525,3.3359666666666663,1.5404366666666667,2.8671900000000003,3.37907,3.0700800000000004,3.9118577777777777,2.856453333333333,2.1675725,12.383716472222222,2.0922966666666665,1.804544,4.35298,1.00106,3.1314100000000002,3.426915,4.61031,2.98742,1.2126555555555556,2.2843833333333334,2.56476,1.494402,4.158415,0.9611175,0.9611175,3.310203333333333,1.5686099999999998,1.7415933333333333,1.7678225,3.1294,6.02275,2.59462,2.84146,3.185365,2.7670166666666667,2.7195533333333333,2.0444,6.29945,5.6024,3.47582,0.7020746153846154,3.396035,3.53749,1.0860363636363637,5.59625,3.3156266666666667,8.228961666666667,4.85437,4.58693,3.607675,1.420665,3.078285,4.716325,4.437325,3.692715,3.40681,4.351375,3.0666,3.5218000000000003,3.5218000000000003,3.9656,2.7067491666666665,3.99688,1.901435,5.4719758333333335,5.199753333333333,1.4868633333333332,4.351305,0.983432,5.71545,4.01902,4.87268,4.62337,3.985085,2.66486,2.4139025,4.158865,4.356895,4.917555,3.951675,1.9086175,1.434698,4.383035,2.1080466666666666,5.34195,3.14507,3.575425,7.64667,3.989675,4.232355,5.2142,3.713485,4.15465,8.58376,4.11229,3.218115,8.693465,3.552025,0.5609464285714286,2.0030769413919414,4.462785,0.6095186666666667,4.723755,4.06557,4.628195,4.468625,3.289535,3.659355,4.34061,4.83444,2.6354,0.701835,4.43987,4.256175,4.247555,4.25269,2.71622,4.43309,3.351965,0.725534,3.422295,4.023905,2.522575,3.24446,3.696665,2.250375833333333,5.5612,5.265,3.718705,0.88844375,3.15817,5.386194166666667,5.386194166666667,8.50052,2.0273,0.92287875,0.92287875,23.603336666666667,2.61355,7.654613333333334,0.36105666666666664,1.3224500000000001,2.8840733333333333,0.936107,3.772555,3.85554,1.9151525,1.9151525,3.87492,5.033,3.643815,2.5560425,2.5560425,3.533445,4.26696,3.84005,3.4233,2.0401266666666666,2.530702916666667,3.890733,2.157575,3.643365,2.736283333333333,2.8429389285714284,2.8429389285714284,3.18773,0.8249888888888889,2.5052766666666666,1.64348,3.25928,2.7908000000000004,2.749053333333333,2.3942666666666668,4.32839,2.32927,3.002686666666667,5.227984,1.1698520000000001,2.29217,3.1198,2.6509033333333334,4.20842,5.855169174603174,1.3556266666666668,3.733833333333333,2.439795,5.14216,6.3131,1.611295,5.125213333333333,4.858270666666667,3.115262857142857,4.6391333333333336,1.0857157142857143,1.82973,3.0316,3.855800476190476,1.2397133333333332,2.40101,1.601905,1.796706,2.23372,3.669766,5.215716,0.97959,1.2943557142857143,2.9733933333333336,12.95101,4.569801666666666,2.63358,1.183,2.4884604761904763,0.9447871428571428,3.29179,3.98394,4.7893,3.4154999999999998,5.43575,1.63989,3.7974,4.2587,2.8450966666666666,3.707542222222222,1.9019933333333334,1.0828155555555556,2.589836666666667,2.8730166666666666,7.100233333333334,2.717695428571428,2.3700733333333335,0.725987,4.701833333333333,3.6198333333333337,1.075116,5.663109166666667,2.0172425,2.34592,5.27005,1.2026999999999999,2.7815999999999996,1.001509090909091,2.9313066666666665,4.19656,2.8390500000000003,2.96227,2.2993900000000003,2.4998833333333335,4.23314,4.60184,5.01565,1.663955,4.65586,3.98773,4.163783333333334,3.324668,2.7460833333333334,3.945280666666667,0.973314,2.8165947619047618,4.515,2.803725,3.9369158333333334,1.302025,2.9082266666666663,1.9092980000000002,1.9092980000000002,7.23215,3.1171966666666666,5.244485,3.4127433333333332,1.7496866666666666,2.6666535714285713,4.501645000000001,5.60895,8.567311666666667,4.6546943333333335,2.67188725,1.9332633333333333,1.8840211666666666,4.179166666666667,3.78223,1.435362,1.9312825,3.068909285714286,1.3177075,3.0845766666666665,18.262287333333333,2.9554666666666667,2.8320266666666662,2.5876,2.88833,2.220613333333333,1.8526633333333333,2.8013366666666664,3.6438,2.38779,2.6275633333333333,5.546776,2.38224,4.695251428571429,2.8118374285714287,2.604011428571429,1.4053666666666667,3.6103288888888887,2.1229025,3.9214,5.0497,3.89058,3.2531266666666667,3.165926666666667,2.2117566666666666,3.4211333333333336,3.5249,3.3013066666666666,3.3048633333333335,0.7863272727272727,5.24295,2.413125,3.065803333333333,2.7052705555555554,1.8140175,1.9677358333333332,1.9677358333333332,3.1605791666666665,1.8756808333333335,4.653475,4.13237,3.39019,4.00727,4.557465,4.353835,4.353835,3.998425,2.9466566666666663,4.30949,2.829235,1.6650500000000001,2.1719399999999998,4.28689,3.881295,2.677625,2.979915,5.3341075,3.5863,6.217094988095238,2.82432,0.8522399999999999,0.8522399999999999,3.404045,4.84522,3.86605,3.527584,2.44585,1.8194133333333333,1.55054,2.86524,5.804212,1.42974,4.47707,3.6298999999999997,3.943885,4.99651,4.816465,4.7116555,3.21012,2.2685975,4.22468,3.92035,2.0435,1.125844,3.93361,2.800375,6.523175,3.7228,2.661625,3.34694,3.716275,3.56441,4.603235,3.04485,4.55368,3.90093,4.36495,3.774215,3.563315,3.611485,3.921895,2.6910433333333335,4.274755,2.99408,5.09505,0.5986511111111111,2.311355,1.7472,2.13132,1.91226,2.7326333333333337,2.6282466666666666,1.7990666666666666,4.29507,4.93875,1.9488133333333335,3.71675,4.386855,2.422125,6.055445000000001,3.99513375,4.23441,4.872205,7.127113333333334,1.9712133333333333,2.89672,1.84568,2.7071400000000003,1.85198,1.784425,4.148685,3.582685,5.2948,1.0149033333333335,3.166275,4.070925,2.162075,5.1414,3.7066,2.589295,3.733966666666667,3.454675,2.28399,1.86945,2.742375,3.261325,3.374525,1.9897275,2.3783014285714286,2.3783014285714286,3.610375,3.493725,20.554166130952378,1.0778066666666668,5.488396666666667,1.80363,1.8984699999999999,3.221325,3.84683,1.82772,3.78857,4.62023,1.2224066666666666,1.2224066666666666,1.2120666666666666,1.6725333333333332,2.143263333333333,3.2543966666666666,4.4394116666666665,3.302365,3.4360999999999997,0.46634368421052635,3.2900336842105258,1.9983899999999999,2.27082,4.443145,3.43978,4.088995,3.60525,4.559615,4.540245,2.0738275,3.860355,5.751263333333334,2.144955,3.64302,5.08515,2.248385,4.523785,6.04265,1.25863,1.8566680000000002,3.4820666666666664,0.6827114285714285,3.2262233333333334,3.139805,4.78308,4.921305,2.873781666666667,7.639023333333334,2.9175533333333337,2.8167500000000003,0.4453335294117647,4.264665,5.181830833333334,3.1060616666666667,5.35505,3.82553,2.4656408888888888,1.701698,5.298882750000001,4.209075,3.97211,2.948325,1.967425,3.477935,4.048266666666667,3.0020966666666666,1.91905,4.095545833333333,5.8385825,2.86082,3.93488,3.70314,3.90695,1.5642571428571428,1.5642571428571428,3.20893,2.87782,4.09989,4.665545,6.58945,3.5497,2.7495,2.1876375,1.4443833333333334,1.3335485714285713,4.805855,5.3436,5.06455,5.91325,4.454845,6.3666100000000005,3.37062,2.9068,3.96671,2.0627133333333334,3.01176525,1.543284,4.39573,2.384723333333333,3.890635,4.91005,4.16882,2.7941866666666666,2.8206166666666665,1.335207142857143,2.3373675,3.749033333333333,1.8522925,0.63725625,3.012966666666667,2.559763333333333,2.25651,2.3440766666666666,1.9614825,1.664272,0.6682554545454545,0.6682554545454545,3.470966666666667,1.6451475,2.16816,3.132025,5.6313,4.1961,6.18685,4.16609,4.23225,2.1391703333333334,1.2810333333333335,2.57747,5.13905,0.9234825,3.6805575,2.951275,2.84581,2.150875,4.09801,2.81962,2.002076666666667,1.0357,3.20657,8.61462,3.408815,1.5221660714285714,4.21727,3.24623,2.687385,3.37501,2.81614,1.76998,1.0300725,3.79649,2.4799525,2.2422033333333333,1.6675566666666668,2.3071066666666664,2.32155,2.4348966666666665,2.8369825,1.2271833333333333,1.8638933333333334,1.043085,6.4639975,5.58975,5.96525,4.006515,4.327235,2.8145433333333334,1.6190862393162393,4.637075,4.995705,2.453235,4.816825,2.085445,4.565525,0.915918888888889,4.0218,3.887885,1.9179225,8.32384,3.622255,1.8455975,2.04346,1.77774,2.578675,3.32101,1.1955708441558441,2.8379,5.63515,3.17252,3.9043,5.51345,5.3968,5.8057,0.87219125,3.92045,4.121305,4.079515,4.80461,3.971983333333333,4.668365,4.73517,3.024665,1.6792166666666668,1.6792166666666668,5.25755,5.5283999999999995,3.23687,2.6167866666666666,3.86305,4.50419,1.5625,3.978735,4.931025,3.623,4.028475,2.9159966666666666,2.6683066666666666,4.848025,2.4591802499999997,10.664806293451647,1.9342633333333332,0.76696875,2.581846666666667,1.71203,2.570325,2.0189125,1.8390239999999998,2.7726933333333332,4.7468,5.20115,2.72988,1.6480616666666668,6.1969279761904765,1.4571142857142856,2.7944666666666667,0.5058333333333334,4.103406666666666,5.38985,3.387355,4.168555,11.05752,5.066,2.9433566666666664,3.393966666666667,4.120855,2.82085,4.216885,0.8571275,1.0514233333333334,0.7990272727272728,5.5506,4.282975,1.729396,4.770066666666667,4.46651,6.8017,4.83572,4.929935,4.168305,5.99515,3.94189,5.1721,2.814725,1.191324,3.64851,5.30115,2.579565,4.081485,2.73875,2.39307,1.2308325,5.07975,3.97847,1.2993625,3.3562333333333334,2.9492266666666667,2.6085566666666664,2.5255300000000003,2.4823033333333333,2.9098433333333333,0.7066645454545455,2.395776666666667,2.690466666666667,2.60078,1.8284966666666669,3.0494066666666666,1.99768,1.5822900000000002,2.3341625,1.9897225,2.0278025,3.3392666666666666,2.81711,0.667339,2.66832,3.34372,4.58422,2.1991666666666667,3.729335,5.4667,4.77753,3.449845,3.790275,1.29622,3.2478,2.4751588888888887,4.252085,2.63927,4.63168,5.3988,4.541205,4.427915,4.1405,0.903492,0.903492,2.2840249999999997,1.680175,3.983745,2.6175335,2.6175335,4.754395,6.21135,3.050525,1.19008,1.5360714285714285,5.7545,3.64854,2.1712333333333333,3.233835,2.796405,3.310735,2.1712333333333333,4.633945000000001,3.375125,2.9754216666666666,2.810095,1.933,3.093265,6.66785,3.002095,3.68905,4.864695,6.57275,6.47845,6.6825,6.6825,5.36355,4.87641,0.530406923076923,5.0623,4.34929,2.943645,2.776115,8.114695000000001,2.9003633333333334,3.939785,3.61179,2.34414,4.247435,2.29582,3.3774349999999997,2.97081,3.5834333333333332,2.4589633333333336,1.38986,1.38986,3.764495,3.71095,5.55795,1.658248,1.532324,47.01831329545455,2.48252,0.8276245454545456,3.10289,1.76687,3.2726699999999997,2.8163733333333334,2.9607233333333336,2.917905,2.6554366666666667,2.0071533333333336,1.02365875,4.09082,3.34282,3.56958,3.83001,5.048,5.021,5.08575,5.09145,5.23435,4.581785,5.3547,6.182455,5.09175,5.2919,2.1001475,3.802795,6.643,4.97229,3.4112,4.00137,3.36767,2.449225,3.90892,4.552465,2.9643466666666662,3.8418666666666668,1.65129,4.427095,1.3527,3.231115,3.87627,3.5866,6.3725325,4.064055,1.855125,4.01659,3.93566,3.983595,0.8874,2.64306,2.780245,4.401997976190476,1.1827475,4.51338,1.35872,5.66305,0.709251111111111,3.8508173333333335,9.746065833333335,4.267875,3.37803,3.071145,1.79505,4.157825,5.3578,3.00151,4.518875,9.152357222222221,3.3468999999999998,2.0147633333333332,2.843083333333333,2.7191466666666666,2.8161666666666663,2.681259,2.84191,2.522886666666667,3.1601666666666666,2.771513333333333,3.002133333333333,3.4535,2.264213333333333,1.6639133333333334,4.689187333333333,3.983,2.59524,4.923394,2.7829599999999997,1.03745875,2.132765,2.991376666666667,5.373417142857143,2.97215,2.0682883333333333,2.0682883333333333,1.643735,1.6204275,2.18792,1.981636,5.765385,4.16573,2.0758575,2.996983333333333,3.722766666666667,2.04755,0.646765,2.611126666666667,1.947625,0.5710707692307693,3.86428,2.526075,2.606325,3.785995,3.5597214999999998,2.42527,1.6329500000000001,1.105985,2.221835,3.613485,3.84067,4.1488575,2.8524333333333334,4.168955,3.68031,1.0911272727272727,9.05672,2.77734,3.568365,1.258825,2.60825,2.280965,2.280965,2.280965,4.99853,5.3674,1.599525,4.907755,1.470402,5.509016666666667,1.47954,3.930305,4.388305,4.09609,4.802895,4.32274,1.96291,8.503695,3.749405,5.1024,3.59713,3.909365,3.283416666666667,3.121496666666667,3.89362,2.51805,4.284469285714286,4.36451,1.5892375,4.017185,1.5892375,3.53876,4.4938125,5.056385000000001,4.4938125,1.7669033333333333,5.6392,4.367255,4.18241,2.57602,2.874283333333333,4.1148,3.314365,5.46035,0.48780357142857145,2.8791366666666662,2.977403333333333,5.005251666666666,4.75615,2.361745,4.69495,5.932663333333334,3.30519,2.98657,2.98258,2.0650933333333334,3.63702,4.084265,4.58105,2.33452,3.880825,0.857803,5.6073,3.298605,4.05305,2.39125,3.16822,2.35311,2.88879,2.7878866666666666,2.80027,2.970235,2.31727,2.31727,4.363733333333333,2.77392,4.6908,11.617450000000002,0.9387711111111111,4.31553,2.42361,2.41025,2.6699333333333333,1.46985,7.131987166666667,3.3352,3.543345,3.5911391666666663,2.1413766666666665,3.9547333333333334,3.9778383055555557,1.81693,0.4516811111111111,1.431138,1.5043325,4.69869,2.937195,3.23167,3.7886708333333328,3.5218508333333336,2.21290125,4.792365,4.452605,3.72884,4.26521,2.26126,3.62432,2.5262733333333336,5.41418,3.150585,5.0616,4.03897,3.93053,4.33798,2.08029,3.893895,3.676605,3.230776666666667,3.610585,2.8704,3.15492,4.168115,3.73925,2.621653333333333,4.26476,1.31042,3.75827,2.83367,4.10524,4.24355,4.12568,4.79107,2.4148,4.2084,4.904,4.165485,2.9386566666666667,2.12928,2.980135,2.254085,0.8678266666666666,4.530035,2.12579,3.48711,2.697685,4.121535,3.61981,3.15599,3.35475,3.85935,4.516694,4.028835,2.816305,1.5477800000000002,3.166635,2.532765,0.8610833333333333,4.2031,8.666665,3.399,3.58032,3.878135,4.95848,3.80393,2.160285,4.082475,3.922125,3.26078,3.29462,3.76096,0.64019625,1.2524614285714286,6.418127500000001,1.7123575,2.66804,5.006380999999999,2.476045,2.275205,2.801435,7.24909,2.533465,3.952485,3.83591,0.7770522222222223,3.451175,2.681615,3.941385,3.65901,6.132088333333334,0.66866,3.36675,9.77172,3.173545,1.023772222222222,4.940171250000001,4.670495,5.28795,4.150605,4.38742,3.2764,2.4353599999999997,7.033645,0.770678,3.48185,4.01229,3.269825,4.036765,2.26067,4.15919,1.71505,4.13947,4.00936,3.88211,1.6533975,4.5251,4.64911,2.39214,2.10021,2.0635125,1.075116,4.242085,3.339007,1.4315419999999999,8.336925,5.77225,4.51794,4.229445,3.489145,4.275755,1.4444428571428571,4.05239,3.970775,5.0281,3.81097,2.4911033333333332,6.459427863247863,1.1130725,1.1130725,2.643123333333333,0.9246428571428572,4.18085,2.8469933333333333,1.0139825,1.69689,0.42017166666666667,6.05148,0.9757125,2.80639,3.58989,4.045265,3.42834,4.0882,5.4876,5.6548075,3.309465,3.20308,2.37191,3.73266,4.318895,4.220015,3.954095,3.63081,6.07945,4.064565,4.355869444444444,5.511788,3.527695,3.2307725,2.34961,3.2307725,7.027118,41.06937270779221,3.80932,3.44596,2.88041,4.16902,4.336415,3.56825,3.509115,3.831655,4.35847,4.04812,1.5860200000000002,4.607915,2.81351,4.624575,5.0912,5.11685,2.4100033333333335,4.21982,4.00491,3.37736,1.429118,0.6452230769230769,1.769416,3.6171666666666664,2.8852933333333333,1.25775,2.8215500000000002,2.57431,2.6216766666666667,3.6840666666666664,2.9494633333333335,1.293578,2.63712,3.6720333333333333,1.9650542792792793,2.7723633333333333,3.1191899999999997,2.903256666666667,2.65442,3.4192666666666667,1.1592666666666667,3.47856,4.058585,1.2925716666666667,1.2925716666666667,1.2925716666666667,1.2925716666666667,2.858794242424243,2.0931833333333336,2.49411,2.85186,4.97439,5.12245,3.962805,4.276915,5.36495,4.387755,2.351235,5.8166,3.943785,2.760115,3.95551,2.84003,4.07908,4.09247,0.7148992307692308,1.4157657142857143,1.5966833333333332,4.120665,3.7549,4.669805,4.003265,5.942521666666667,2.2911566666666667,4.049235,1.5001766666666667,3.42936,4.86573,1.6435866666666668,5.1145,0.6876233333333334,4.187815,1.14016,1.16568875,3.645425,3.84748,5.0113,4.87218,6.03405,4.315055,1.5015,4.85606,1.45447,3.60161,3.03749,2.4656408888888888,2.02379,3.057125,1.2803583333333333,3.48526,4.8104,3.0265833333333334,5.89095,119.19104057882394,0.502128888888889,4.88655,2.3343233333333333,4.787045,4.181895,3.28472,1.55702,0.30845047619047616,2.89567,3.81271,5.24305,3.53522,3.67088,4.41152,4.047315,4.370275,8.229066666666666,0.7019922222222221,2.554785,0.97438375,9.872308,3.08283,3.62724,0.9134677777777777,2.339475,2.740665,2.12675,3.2841299999999998,3.1858166666666663,2.7934866666666665,4.362679999999999,2.8844999999999996,2.2923833333333334,2.31209,3.090415,2.92684,2.931735,3.649555,3.849435,3.45341,2.31974,3.897,4.27267,3.16333,0.9172199999999999,2.5973133333333336,4.362679999999999,4.699955,5.25025,4.09169,3.637075,1.87443,10.763349999999999,4.14217,2.71564,4.382615,4.96115,0.5291553333333333,0.5291553333333333,4.05541,4.05541,3.04314,3.4873666666666665,1.8348725000000001,0.5480658333333334,2.8683,4.167535,4.10433,2.945285,4.01399,5.3884425,4.299855,2.1220175,4.734115,2.1129625,2.86265,3.9270533333333333,1.761685,2.00455,0.5064971428571429,1.193943142857143,1.193943142857143,1.9387,4.16844,4.2891,4.74555,6.444056,2.74206,3.164855,1.96196,1.94534,3.9226208333333332,3.46114,4.571156666666667,2.17886,4.571156666666667,4.294835,3.569515,5.9694,3.827325,2.4338633333333335,1.9736333333333331,2.5123633333333335,1.3955425,1.380125,1.5666625,1.9332475,1.66196,1.5811525,3.8870666666666662,4.424435,2.448745,6.6807,2.7570533333333334,4.25206,3.4064,4.15863,2.87261,2.7414533333333337,5.935243333333334,3.3857,4.501492,3.0475966666666667,1.434075,2.5511133333333333,2.5434366666666666,2.2676000000000003,6.3034,4.3869925,4.49561,12.0230277798824,0.7234933333333333,1.96221,2.0685225,1.5341580000000001,1.2676557142857143,2.52335,2.3117625,2.4198775,2.36267,0.7364815384615385,1.905205,0.5177794736842105,4.229565,1.945765,3.40817,4.08748,2.571675,5.3958525,3.63841,6.58616,3.87124,2.90052,2.92449,4.54465,4.96888,2.50608619047619,4.43963,2.0086725,2.0086725,4.872415,3.627905,4.1068,4.14741,3.2543366666666667,3.836495,4.87623,5.05005,4.55056,4.434955,4.61678,4.34063,2.56738,5.0086,1.07507,4.5235,4.63876,2.549586666666667,2.1520766666666664,4.70333,1.4862383333333333,5.06835,1.9381,6.166824311594203,4.076125,4.049685,1.5192633333333332,3.3730925000000003,3.3730925000000003,12.33668,3.977225,4.194635,1.0953025,4.229807,2.2968275,1.54529,2.31592,1.685065,1.959295,1.724726,3.150655,5.7579,1.8505175,4.79686,4.516353333333333,5.71365,2.163415,2.553865,3.19668,4.363795,5.49195,3.914875,7.086673333333334,3.2079,2.4955433333333334,0.39687833333333333,3.8309,4.731945,3.221133333333333,5.919558333333333,2.62977,3.016383333333333,1.229325,1.6474250000000001,0.63725625,1.431138,2.95445,1.4581266666666668,1.4738266666666666,0.6275875,1.387766,4.599395,2.3503225,0.5900546153846153,1.2851416666666666,1.6857375,1.592788,1.2258783333333334,1.92638,1.6474250000000001,2.4666775,1.387766,1.387766,0.5900546153846153,1.505542857142857,2.36906,1.2397133333333332,2.5101,0.5900546153846153,2.637875,2.36906,1.2298333333333333,1.2298333333333333,1.2298333333333333,1.7750139999999999,1.21329125,0.5900546153846153,1.1022880000000002,1.04030375,0.9730777777777777,1.8113920000000001,2.663625,0.8302533333333333,2.05814,1.5677,0.5900546153846153,1.7421820000000001,1.6474250000000001,1.9728666666666665,1.9705000000000001,0.859212,1.9728666666666665,1.050318888888889,2.39214,2.352715,2.3856025,1.04030375,2.03692,1.2803583333333333,1.2803583333333333,0.8872690909090909,0.8872690909090909,0.8872690909090909,1.229325,1.6474250000000001,1.5677,1.2851416666666666,0.9835185714285714,1.9705000000000001,1.6142219999999998,1.52743,2.06494,1.229325,2.63358,12.6244525,0.6275875,2.62162,1.6937,2.3120475,0.9447871428571428,0.9447871428571428,0.5900546153846153,0.9353400000000001,1.664272,1.5677,1.8620640000000002,1.9705000000000001,1.103908888888889,1.103908888888889,1.657156,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,2.8604066666666665,1.050318888888889,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.1996752777777778,0.378035,53.004716775613275,1.47256,1.565365,1.5677,1.6937,0.9835185714285714,0.6353176470588235,0.725987,0.725987,0.725987,0.725987,4.3043000000000005,15.460576666666666,3.377266666666667,0.5715663636363636,1.548154,1.548154,1.548154,0.5715663636363636,2.95445,0.5900546153846153,1.7421820000000001,1.4738266666666666,2.5379,1.050318888888889,2.361745,1.050318888888889,1.60972,1.60972,2.1263833333333335,2.1263833333333335,0.5900546153846153,1.92977,1.92977,0.9175272727272727,0.1996752777777778,2.95445,1.3643416666666666,2.439795,0.5715663636363636,0.5715663636363636,0.5715663636363636,0.5715663636363636,0.5715663636363636,1.6937,0.378035,1.050318888888889,2.1073175,2.1073175,2.4139025,2.8513133333333336,0.6606190476190476,0.6606190476190476,3.3782,4.233766666666667,1.2143857142857144,3.402533333333333,0.962768,2.438175,2.0273,1.0830766666666667,2.75907,1.8649425,3.15817,5.17985,2.361715,1.1864222222222223,4.04733,4.340845,2.436243333333333,1.7603680000000002,2.363457307692308,4.394385,1.5692352777777778,2.7050433333333337,2.7621566666666664,3.004573333333333,2.48876,6.08058,3.810705,0.1996752777777778,2.8080200000000004,4.95333,3.437325,4.42221,4.339385,4.34214,2.7055566666666664,1.7927779999999998,4.377415,4.647675,4.405395,4.523055,5.2386,3.14257,0.7271091666666667,6.720905,1.6778333333333333,2.981286,4.357275,2.53784,2.53784,0.8260218181818182,2.02379,4.14293,3.14145,5.10945,4.070495,4.507645,5.0219,1.0662085714285714,4.67839,5.9022,6.574505416666666,2.3042766666666665,4.46123,4.008005,3.838665,3.566635,3.61546,4.29411,5.8188875,5.0164,4.150918333333333,3.69056,4.4751,7.045281999999999,1.92141,2.0037307692307693,2.9070199999999997,1.7977733333333334,2.83512,1.8934433333333331,5.18845,2.7421399999999996,6.0556,1.856502,4.897495,4.008865,3.790035,4.463195,3.893025,2.5283599999999997,2.7950033333333333,2.75572,2.6522366666666666,2.4726966666666668,1.6930333333333334,2.7911266666666665,2.8399966666666665,2.20228,2.20228,4.480205,2.945273333333333,2.0240966666666664,3.0300466666666668,2.064826666666667,2.5475,3.0059066666666667,2.7452633333333334,3.0672200000000003,5.1054,3.86729,3.77341,3.2270440000000002,3.2270440000000002,3.96489,3.1668866666666666,3.749,4.613905,3.9354,3.36057,3.489885,7.72001,1.9877975,2.028315,3.49639,3.354165,1.4043433333333333,1.4043433333333333,3.589405,1.93543,4.127526666666666,3.81477,3.665475,2.189715,2.0895141666666666,0.5691350000000001,3.453375,3.951485,1.8231675,2.365055,4.144715,1.1850666666666667,4.369475,1.2819566666666666,0.40273714285714285,0.5622467857142857,21.156313382936506,0.5622467857142857,0.40273714285714285,0.7217564285714285,9.214698333333335,2.45558,3.466665,4.08641,3.483785,2.761905,4.021116428571428,2.23854,2.230935,3.74911,3.35675,3.978595,4.52108,3.65911,2.328505,3.262365,3.464245,3.9259,3.20167,1.165064,1.165064,1.165064,1.165064,3.470345,2.950925,3.4122,1.80605,1.14737,2.52805,3.759425,3.808045,2.90486,3.03028,2.47201,2.5170175,4.039005,4.276785,1.122665,2.5189033333333333,1.07019,2.5980666666666665,1.7138499999999999,3.7472999999999996,4.908555,2.5153133333333333,3.408845,3.7194866666666666,0.8965884920634921,0.2729107142857143,0.2729107142857143,0.6236777777777778,0.2729107142857143,0.2729107142857143,0.2729107142857143,0.6236777777777778,4.579965,7.36978,3.640535,0.53938375,3.881665,7.816575,3.39852,3.0680333333333336,1.167655,4.290715,5.03045,4.18401,4.865855,1.676604,4.69366,2.1347666666666667,2.363538666666667,3.52559,5.14395,0.7851128571428572,0.7851128571428572,3.523425,2.846693333333333,1.836125,3.32865,2.65571,6.7871,2.41579,6.5912,6.16475,5.4156,2.59817,1.681905,4.981195,3.59766,2.3605,3.86768,3.061355,1.87149,1.18015,4.129275,3.51636,4.813926666666666,6.007223333333334,1.47535,4.027995,1.13968,2.5934033333333333,3.19457,3.86747,0.4012178571428571,3.474275,4.23029,0.868993,2.5455433333333333,7.527975,3.11999,2.22195,5.3294950000000005,4.32096,3.79805,1.3695616666666668,5.26823,2.55684,3.0443833333333337,3.4760666666666666,2.0780066666666666,2.0780066666666666,6.5768249999999995,6.5768249999999995,3.7281089285714284,3.7281089285714284,11.0468,3.7281089285714284,3.7281089285714284,4.370578928571429,6.97845,3.60236,3.3450125,2.9449966666666665,4.16383,3.580405,3.10791,3.1338333333333335,4.539205,3.17877,2.7334766666666668,3.4591999999999996,2.3057666666666665,2.69538,4.90544,7.3887599999999996,6.295825000000001,4.85826,3.830925,4.06744,6.770362,5.1124,4.46017,3.478225,4.55466,2.208223333333333,2.282705,2.220655,5.08545,5.5369,4.8031125,4.066935,2.2953733333333335,2.497666666666667,6.689500000000001,1.7750139999999999,2.56071,3.3933,3.3933,3.20644,5.2129,0.7561975,3.4707666666666666,3.695355,2.8640133333333337,10.084967500000001,3.929,2.920006666666667,2.46811,4.292265,5.9043,2.98849,5.35785,2.65744,4.69257,2.943832857142857,3.888545,5.2501,4.669815,1.0623333333333334,3.5048,0.96304625,2.47838,4.969443485294118,7.4562333333333335,2.3428733333333334,3.3891666666666667,6.590756666666667,1.6486999999999998,4.591645,5.53245,3.70661,3.722935,2.2391866666666664,4.589595,2.2303875,0.5272746153846154,5.02955,2.86987,3.483033333333333,4.906995,4.63327,5.5024,6.556305,4.46597,5.4511,7.2083224999999995,54.95466166666667,4.523275,3.91114,4.7825,5.2382,4.269325,5.204,4.284855,4.63749,1.9792675,3.76384,3.72046,4.686785,2.792395,5.04805,3.70537,1.6950800000000001,5.39145,6.2563,6.914669999999999,5.38755,3.324925,4.3012,3.15743,3.222425,3.671835,4.44216,3.929775,7.06494,2.759775,1.11417,2.5432425,0.6117239999999999,0.6117239999999999,3.126765,0.6117239999999999,2.649789642857143,2.649789642857143,3.3805896428571427,4.409402500000001,4.875407142857143,2.5432425,4.634633333333333,2.5216708333333333,1.3546533333333333,5.42575,2.05979,6.9024453333333335,5.717463333333333,10.60907659090909,3.0638900000000002,2.5592266666666665,0.2091157575757576,1.9065533333333333,1.9739433333333334,0.8963475,1.1653466666666665,2.94413,2.497335,2.58495,0.583421,26.761243333333333,1.8082225,0.7983615384615385,2.37373,2.37373,0.38545,1.63508,3.163985,1.2276275,1.5355075,1.630055,3.985035,2.942645,1.97021,2.4867966666666668,1.161765,1.869445,1.4139799999999998,5.397097583333333,3.689085,6.647727499999999,2.430215,3.3560666666666665,0.8926783333333334,2.59927,5.07515,6.186805,3.1458866666666663,2.1504966666666667,5.163800833333333,1.8863075,2.3240766666666666,4.3803775,1.0337333333333334,3.4058333333333333,2.317886666666667,4.57059,4.5182,5.90155,2.93648,3.9404275,3.9404275,5.1155,2.001335,5.2989,2.78955,1.607245,2.99223,3.25216,4.856086333333334,4.09432,2.6641366666666664,2.7195,2.85167,0.9951571428571429,4.98767,0.9127725,5.568843333333334,4.355645,7.45613,4.311025,4.31887,4.03484,8.127591666666666,3.999005,4.3899,1.19236,0.7216642857142858,4.32962,4.115155,2.103795,3.281045,3.2659,4.2497,2.210785,4.72779,2.483893333333333,5.2638,5.0649,5.67885,4.1851,4.93611,2.939025,6.547923,3.439765,4.261875,3.469245,4.872175,5.389151785714286,0.5996085714285714,3.664633333333333,1.8990266666666666,0.5584155555555556,3.744765,2.45858,1.01552625,2.00852,6.51711,3.64038,2.410205,2.6691066666666665,2.7574733333333334,4.73544,3.890685,1.6782088095238095,4.119635,2.11055,3.7072333333333334,3.96604,5.10405,2.9982391666666666,3.4745000000000004,3.7233,2.04508,7.38028,4.8293,4.24295,5.2206,2.16409,4.354715,4.76055,3.537675,3.86903,10.984145,3.2255,4.96215,4.641915,4.592785,2.307975,4.455605,4.06391,4.971795,3.344,4.006385,1.32399,2.9955200000000004,3.422715,3.62245,4.669705,1.918956,4.088535,3.0107766666666667,5.4898,3.1542066666666666,1.7595,3.817595,4.37037,1.03435875,2.979775,2.6904233333333334,4.4746793333333335,1.598798,1.6648333333333334,1.0225525,3.24072,5.6433,5.5073,3.6268325,3.019945,2.405755,2.02355,1.817025,1.5801866666666669,5.92965,2.944175,1.8971875,0.8904538461538463,19.90677337820513,3.023225,3.359091666666667,4.2379299999999995,3.8977335897435896,1.3074466666666666,2.7270638333333332,2.7884411363636366,1.285464,1.8460766666666668,4.373395,4.370705,3.501925,2.94773,5.3604,4.634765,6.688515,4.517540833333333,4.40684,3.693125,2.5717333333333334,4.0779,3.93731,3.603666666666667,3.871625,1.6904075,4.669385,8.54208,3.239985,2.846195,3.25915,0.60884375,3.07315,2.1086,2.265765,4.4315,3.10109,4.90052,3.64394,3.013035,2.21306,1.72447,0.761622,1.4809933333333334,1.2488066666666666,3.992205,3.85804,4.581455,4.578765,7.50782,2.3099966666666667,1.442972,2.2960133333333332,7.455401666666666,3.204195,2.85465,2.98976,4.171,3.2619125,3.533375,1.504142,4.8258,4.806865,4.21392,4.08737,3.33489,4.13134,4.19396,3.87972,4.301385,4.71197,2.24365,3.326893333333333,3.079765,5.2501,3.030645,4.354098,2.783895,3.02006,2.1966933333333336,2.25013,2.1463033333333335,2.4560993333333334,2.4560993333333334,2.0066366666666666,2.9214233333333333,2.3940633333333334,2.3636233333333334,2.13923,4.18629,2.3711866666666666,2.813826666666667,2.9468033333333334,1.75652,4.68358,2.6732,3.70277,2.2923533333333332,5.00035,5.2402,4.729828333333334,2.421565,2.31438,3.017645,2.7732,2.236905,2.922255,1.88575,2.6716,2.792725,6.8880550000000005,4.296165,3.816,0.601679375,4.24044,3.840445,3.955485,3.26095,3.857915,3.7240266666666666,6.2558,4.22738,3.18387,2.760972142857143,2.098628888888889,2.53246,1.686552,1.7110880000000002,1.3835520000000001,1.90631,1.71575,1.1636016666666666,4.211701142857143,0.5900546153846153,0.5540588888888889,1.8780000000000001,1.4809316666666668,1.4016899999999999,1.359255,2.2144201515151516,1.4227333333333334,1.604852,0.6023225,165.0083328075344,0.4909026666666667,1.971358,1.0703200000000002,1.159685,2.1795575,1.5385525,1.98453,2.2761,1.65085,6.39215,3.22087,3.3945804761904763,1.7864000000000002,3.194575,1.3097983333333334,1.3097983333333334,5.7108325,0.4728494444444445,2.1639225,3.10354,3.0457366666666665,0.8008254545454545,0.5214105882352941,1.0865401025641024,0.9798181818181818,2.3104125,3.940115,1.90037,2.1142275,2.192876666666667,4.7414435,0.9890066666666666,4.32482,3.44567,3.615595,6.95022,1.7168033333333332,3.07467,2.647525,3.378495,2.48103,2.99897,2.68366,3.24794,4.05569,2.801335,7.57548,2.27781,2.91495,3.39235,1.65585,2.61143,2.4153,2.92165,1.753975,1.466985,2.58933,4.0864,4.995611666666667,2.94358,2.914375,1.50216,4.144395,3.8333333333333335,4.040133333333333,3.006505,24.51599034004884,2.6596013333333337,2.59742,2.8834466666666665,3.470833333333333,3.01925,5.509830000000001,3.21087,2.2765766666666667,3.3697666666666666,3.4564333333333335,2.2694966666666665,3.21589,3.358033333333333,3.0042333333333335,1.7565,1.65008325,0.581842,2.3493333333333335,1.897515,0.21589375,2.1830066666666665,2.562875,0.21589375,0.21589375,2.12889375,0.21589375,0.21589375,0.21589375,0.21589375,2.6922466666666662,2.4831433333333335,0.5639046153846153,3.3043050000000003,1.3665275,1.948294,5.7265,4.276515,6.0429875,1.9581925,4.881885,2.0236275,2.55699,1.2745385714285715,5.549673333333333,2.868176666666667,5.990717500000001,0.8291033333333333,1.4405125,4.60619,4.678095,34.3605852986458,1.560268,1.3709266666666666,2.3316766666666666,2.3621375,0.8872690909090909,2.36572,2.4067066666666665,2.74273,1.9308500000000002,2.4571033333333334,1.6694266666666668,2.519223333333333,2.35514,2.264186666666667,2.7143366666666666,2.4231633333333336,3.929375,3.1756933333333333,1.1734257142857143,4.002665,4.05808,19.53614072222222,2.77187,3.2976266666666665,2.56311,0.800802,3.119484,1.5508942222222222,3.119484,2.2206,2.4816133333333332,2.6985233333333336,1.5309425,1.9521475,4.111335,4.092845,5.1145,4.460105,1.66515,4.933875,1.6314925,4.96844,4.021074809523809,4.248935,0.7575454545454545,2.0506925,2.0558725,2.759996,3.393705,1.05817125,2.79059,1.8666,1.934,1.052036,1.052036,2.4238633333333333,2.60649,4.292925,27.568507083333333,6.373785,1.9018666666666666,3.6433833333333334,0.39551,5.778074999999999,6.08415,2.7967766666666667,3.393295,5.29603,3.52857,1.1007,4.30272,1.313102,2.603325,4.516775,4.477165,2.130225,3.13372,4.512275,2.62443,2.6358295,4.177545,1.3064799999999999,2.422975,3.76213,5.2598,2.3943766666666666,3.0439433333333334,2.73106,3.932425,4.09213,3.94277,4.260933333333333,1.828515,6.01635,2.502075,1.7800920000000002,4.145355,5.84843,4.043735,3.345555,0.7063725,2.965875,3.57585,2.099935,4.963164,2.74545,3.94611,2.88512,3.4237333333333333,2.596295,3.22696,2.9334433333333334,2.9269866666666666,4.089325,5.45635,3.189315,1.799485,3.834775,4.134695,1.875965,1.914685,1.7260625,3.869035,4.4815,5.094619270833333,4.076745,3.294783333333333,3.658975,3.2330400000000004,1.4114449999999998,3.11829,2.939515,3.010535,4.753025,4.45446,4.071755,2.93224,1.89438,1.59986,1.4807825,3.726625,2.487655,2.196485,3.42478,5.11625,1.60228,5.06195,1.388907142857143,1.8185725,3.23085,2.838015,3.079525,3.81877,3.16722,1.767995,0.9647303684210526,2.87621,3.6520533333333334,4.058735,8.783456666666666,2.882963333333333,3.049716666666667,1.4854266666666665,2.8892733333333336,2.6375733333333335,1.1658883333333334,2.8399966666666665,2.49978,3.1966066666666664,3.8704,2.963533333333333,6.857175,3.037436666666667,0.7683727272727272,1.6979066666666667,3.782975,3.34043,3.49545,3.5553000000000003,2.4657159999999996,3.04869,2.736595,1.9699437142857141,3.885055,2.4601905555555557,3.44244,1.9909866666666665,4.861495,5.42585,4.337665,3.327395,3.578365,0.8690355555555556,4.47879,2.8107233333333332,2.7028466666666664,4.255285,2.67663,2.62429,0.5366914285714286,0.5366914285714286,4.260773333333333,3.888305,6.9665,3.03724,4.4068,3.63297,3.17376,4.66901,3.86626,1.06604,3.73387,2.6075433333333335,4.168823333333334,2.8856266666666666,3.198698333333333,1.8395299999999999,3.244048928571429,2.374573333333333,2.7636299999999996,2.5481766666666665,2.9148833333333335,1.9033033333333333,21.915676591567856,3.54543,3.96377,4.0911,3.29938,4.22124,3.573565,4.6124,4.1471,3.855025,3.272795,4.114325,2.475826666666667,2.595683333333333,2.8802866666666667,3.0339816666666666,2.8067733333333336,4.169755,3.503415,4.9302725,4.89807,4.252925,1.346754,1.45284,1.45284,4.75416,3.808095,2.48762,2.2454199999999997,2.8830333333333336,3.29961,3.432285,7.63048,3.1384399999999997,3.4060666666666664,3.083661666666667,5.4885,1.5402833333333332,5.8124025,2.47036,2.8696699999999997,1.7741725,3.4254,2.82679,6.20491,3.37881,2.619205,4.21201,4.177969333333333,1.483535,2.5090033333333333,1.64626,7.1926404999999995,4.27641,6.54933,2.22441,3.968825,3.79022,3.828995,5.0846,3.3307300000000004,3.3307300000000004,2.1064425,4.28081,4.86846,2.432755,6.549728571428572,1.60007,5.8296,8.384519333333333,3.6798333333333333,4.179782,2.26231,1.9958,0.574914375,4.417815,2.524275,2.7184,3.6202104999999998,2.2729425,2.367863333333333,3.679655,5.82015,5.25625,5.1489,4.5201,4.157135,2.26204,1.0325545454545455,2.916635,3.49745,2.8067666666666664,5.1071,4.05689,3.15192,2.47193,1.8566680000000002,4.149285,1.02453,5.11925,0.9913522222222222,5.4565,3.400235,4.822955,4.782385,3.045885,3.224635,2.9154733333333334,2.32672,4.22822,3.0582,2.48943,3.606425,4.696415,5.532138333333334,4.531395,1.54094,3.31078,3.068755,5.64311,1.9671275,1.9671275,2.98181,2.50405,2.4000966666666668,2.6734533333333332,0.829815,6.2505,3.16035,1.927245,2.344755,2.68167,3.57566,2.595385,3.733215,5.0845,5.1852,4.677805,5.93675,5.6605,1.267725,3.459225,1.1176583333333332,2.46332,4.343566666666667,2.56849,3.10001,3.203015,4.55825,3.0005,0.44089526315789473,4.62702,4.156885,4.943335,3.116975,4.57308,5.27395,4.246225,4.053495,1.951435,4.64732,2.1219925,4.1156,4.1156,6.2738,5.661,5.5982,4.834295,2.70336,1.5402833333333332,4.00696,1.9778566666666666,1.6503966666666667,1.960915,4.22742,4.044175,4.19247,8.14345,1.6107500000000001,5.16115,1.2438516666666668,3.18133,5.8383,1.965515,4.74229,2.6806099999999997,4.544065,3.301485,4.93976,3.3024833333333334,4.32336,4.081305,5.8431,4.34364,3.69773,3.753675,5.885,4.0583,4.545925,3.775565,3.956355,7.014573333333333,3.56953,7.2603,3.473665,5.4396,5.938430227272727,4.26344,3.65079,1.5954075,5.60695,3.99918,0.8367422222222223,8.19325,6.0513,5.0813,3.078543333333333,5.1129,2.92615,1.74894,4.089235,1.122665,5.9769,2.672965,4.682895,5.509,4.243725,4.01021,2.1089233333333333,4.281905,5.0231,1.689775,7.095793333333333,3.0591,3.519205,4.90258,4.403455,2.4729,4.47936,3.417675,3.73057,2.731786666666667,4.07549,3.862145,5.36295,4.667415,3.219375,1.83207,1.83207,7.496743333333333,1.4169214285714287,5.0452,4.151445,4.947715,3.42767,3.684675,4.856195,3.86432,0.870245,0.870245,0.870245,3.548775,3.281475,3.95062,4.417196888888888,2.763175,1.46717,4.21099,2.119045,2.82073,3.93989,4.38145,2.0213225,2.14526,5.73383,3.785095,3.09912,4.371725,1.6627025,2.0332075,3.27683,2.56524,5.0025,1.411744,1.6222239999999999,1.0453125,3.7865,3.53081,2.83182,2.908393333333333,5.34115,1.7375440000000002,2.051685,3.026715,1.6552714285714285,3.21813,3.5952,2.52645,5.8531,5.4996,2.827025,4.20968,3.273395,3.49668,3.22254,3.939925,3.533935,6.94875,5.07875,1.8679766666666666,1.7356999999999998,3.49044,4.756055,4.147585,3.372325,2.8797766666666664,4.12517,6.20035,4.95681,2.7997833333333335,5.2372,4.014355,4.24211,8.1289525,3.93648,0.6799290909090909,3.990805,4.169173333333333,2.45702,3.995625,3.8470999999999997,5.8706,4.00415,3.970365,3.83875,4.315885,4.41578,4.38184,2.806915,3.72592,5.03505,3.96529,2.33946,3.03474,6.3234,5.347,2.0492999999999997,2.911695,4.666038333333333,3.89652,4.6419,4.058645,2.5667266666666664,0.8849133333333333,4.332620303030303,6.5561675,3.70641,4.76622,3.612315,6.683203333333333,3.680945,3.564966666666667,2.6795666666666667,3.76293,2.250915,3.583735,4.23646,2.4661145,3.846505,5.9703,1.4002475,4.439945,0.6478371428571429,5.84355,6.3999,6.03095,6.2087,1.5465833333333334,1.73112,4.371915,1.904175,5.50475,0.5283633333333334,5.96675,3.27623,1.54953,6.228865000000001,6.62135,0.86626,1.8261960000000002,1.4001839999999999,1.4001839999999999,1.4001839999999999,2.3111833333333336,4.849635,3.63578,3.415185,3.960305,4.96053,3.728455,1.975214,4.206125,4.788265,0.2970536585365854,3.25461,4.25665,4.08108,38.47545720454546,5.437494166666667,5.04355,11.227354666666667,3.08201,4.14361,7.143673333333333,3.08228,4.99331,3.69152,3.781935,8.87254,3.92325,2.683453333333333,2.724655,4.611975,4.306355,3.72172,4.39093,1.86747,4.58174,4.16412,6.678580999999999,4.008945,4.643375,2.3669725,4.306955,0.517585,1.4549616666666667,3.275455,5.88935,2.97414,1.227595,1.227595,2.863895,3.88795,4.090985,2.414685,1.6196866666666667,3.612355,4.28058,1.7361825,3.4500333333333333,1.607498,1.8446533333333335,4.07606,4.568545,2.0111025,4.519205,2.204445,2.01977,3.59772,3.65392,4.13062,3.949825,6.051713666666666,2.385043666666667,3.86413,0.7336354545454546,0.6848191666666666,3.863935,2.38826,8.425256666666668,3.377266666666667,4.85764,1.710725,4.517645,1.4497933333333333,3.805225,4.210205,2.5764033333333334,3.71843,4.70167,0.415949,0.415949,3.7302666666666666,3.1513899999999997,2.892856666666667,3.47781,3.60565,5.34325,1.0408363636363636,9.618648333333333,10.58779,1.92638,4.713175,4.607525,4.670265,3.664975,2.465993333333333,2.0405,2.15599,9.9895775,2.08506,2.7241999999999997,3.516572,4.438395,3.516572,2.0284425,2.7523733333333333,2.71691,0.7134227272727273,5.296155,2.8271766666666664,2.5654166666666667,3.84165,8.79326,10.440115,3.90184,4.060585,4.173335,6.63997,1.9638875,1.3781375,25.847816666666667,4.285485,3.61802,1.0252000000000001,4.89887,4.09875,5.39485,4.567345,5.28665,5.583346666666667,3.0847466666666663,2.073803333333333,0.6470764705882353,0.7426566666666666,4.64463,5.1148,1.3507416666666667,4.033611666666666,0.9302,3.6418,1.4229200000000002,4.34957,5.83475,1.91097,2.37612,2.13243,3.83479,2.79646,0.39651,3.720415,3.58174,2.5505666666666666,3.35495,4.68554,2.7532766666666664,4.199275,3.313205,4.25947,8.01038,4.88271,7.576615,2.7118,2.606996666666667,4.63219,4.369755,4.51748,4.511275,3.842475,4.704375,1.20119,3.2076645833333335,3.248378857142857,0.710846,1.45284,1.45284,4.263795,7.288976666666667,0.8171538461538461,4.754165,0.8780066666666667,2.89791,2.2783599999999997,2.525497954545455,6.073982222222222,2.44661,1.1399222222222223,2.3539566666666665,1.23985875,1.8727566666666666,3.170873333333333,3.102711666666667,3.186443333333333,2.4571466666666666,0.8780066666666667,4.43534,4.843515,5.21655,2.75368,3.865725,2.08722,5.8886,4.673605,4.315775,2.9551366666666667,3.293345,2.23833,1.372535,4.17904,2.616475,4.46289,5.7661,1.65595,4.41874,2.8001666666666662,6.316085,3.619065,2.44638,0.8780066666666667,2.494695,3.65499,7.240823499999999,2.314583333333333,1.918568,2.314583333333333,0.414765,1.058816,3.808255,2.73691,1.7424075,3.538875,3.851316,0.6456959999999999,0.6456959999999999,0.6456959999999999,8.165715,1.585382,0.7268609090909091,2.60276,38.72941831818182,1.812846,0.64247,2.9285975,0.64247,3.86045,1.972665,2.60162,2.3874166666666667,5.0979,4.01722,4.588225,2.4278233333333334,0.8916328571428572,4.13895,3.2182833333333334,5.0464,1.0596214285714285,2.899425,2.899425,3.89765,4.20894,3.318585,4.240920384615384,3.104095,4.73746,5.13375,1.761778,1.089295,5.21045,6.5608,3.875015,0.6911970000000001,4.425315,4.0709333333333335,0.88733875,4.356695,2.33043,3.70881,4.352585,1.8699590909090908,1.8699590909090908,4.034475,3.34986,0.8921455555555556,2.952495,2.888,3.2664,4.05776,4.31848,0.4117328571428572,0.3377276470588235,0.3377276470588235,0.3377276470588235,0.7494605042016806,0.5367353846153846,0.664955,0.3377276470588235,0.3377276470588235,6.937885,0.3377276470588235,0.7494605042016806,3.5295,1.2766925,4.58371,1.2039366666666667,0.571736923076923,0.88733875,2.524325,2.621625,3.828145,3.183865,0.3377276470588235,0.3377276470588235,4.36091,3.877835,3.93936,2.55455,4.21375,1.464522,4.044875,0.664955,0.664955,4.761285,3.21843,2.802915,3.02395,3.74066,1.07951,0.9412307692307693,10.09981,1.23356125,3.756495,4.45359,5.1607,2.03764,0.365884347826087,0.83114375,2.7845933333333335,3.149475,3.073405,3.94518,1.341004,5.83545,3.301375,4.77038,3.97796,2.9961533333333334,2.7872733333333333,6.501465,2.3478866666666667,4.443455,4.18303,3.7194866666666666,6.068955000000001,0.539156,4.43918,3.526666666666667,1.9966533333333334,0.7086566666666667,4.087065,4.37627,2.84116,2.350995,2.24747,4.97509,2.80513,2.805625,0.987052,0.4828753846153846,3.916165,0.35640133333333335,0.7616963636363636,4.03267,2.957355,3.74063,2.70693,5.225,4.358095,6.152685666666667,3.617625,3.36143,4.34145,1.5887425,5.2905975000000005,1.700132,3.988865,2.4741675,5.783426666666667,2.58376,1.027672,4.46971,6.900805,6.745577916666666,3.6112333333333333,0.7954991666666666,2.97059,4.41675,3.89697,4.573895,4.508375,3.95938,4.95648,2.916465,4.188365,1.90337,2.260375,1.4243833333333333,4.08434,9.562755,3.165705,3.746265,5.821,2.850085,3.88077,2.5532233333333334,2.8644653333333334,3.436005,3.008015,3.338885,2.815375,3.66773,4.67793,5.81525,4.082815,4.704295,4.865905,3.875555,2.652195,4.82154,7.523,0.9137766666666667,4.075675,4.088675,4.812735,5.55905,5.0694,2.37348,7.72175,2.46194,3.753855,5.90095,3.7834,4.47588,2.1516200000000003,1.7426625,3.04553,2.13532,2.0971100000000003,2.7604966666666666,4.101055,4.547145,3.992405,3.56074,4.807311666666667,3.534395,3.12,3.9341375,5.96515,2.8768,5.209847833333333,3.749995,3.770185,3.542325,7.63456,3.84993,3.734295,4.164255,4.675275,3.06267,11.1407,1.264305,2.36243,3.49219,2.6975833333333337,2.6975833333333337,1.93589,7.718260000000001,0.87165,2.984745,0.92623875,2.051685,4.17926,5.2286,3.799945,3.967245,2.669753333333333,3.067745,3.71599,3.98466,4.05264,2.893985,2.5098,3.9355,4.53867,3.271415,4.179095,1.64967,1.66107,2.6806966666666665,5.62,2.1699625,1.7415166666666666,2.0745425,4.20915,4.491505,3.089355,2.751315,0.5217733333333334,2.238205,7.178559999999999,3.263965,1.4905366666666666,0.88612,1.3588699999999998,2.0444466666666665,2.40689,1.2459866666666668,2.14662,4.5026589999999995,3.89896,4.660415,2.4658666666666664,1.8889975,7.0083975,2.87725,2.2028933333333334,2.2028933333333334,2.2028933333333334,6.37734,2.2278733333333336,3.65433,2.48436,0.465148,1.154598,2.2662175,5.771542500000001,0.44892388888888884,3.726955,3.948528333333334,5.71695,3.0899105555555555,0.44892388888888884,3.0899105555555555,0.88405,1.174886,5.7123,4.244435,6.658975,3.87446,4.54964,3.56049,4.10378,4.94949,5.53165,6.08645,3.89138,3.490875,4.99064,4.349025,4.151835,4.479285,4.45077,1.3406733333333334,2.4600166666666667,1.2347775,2.0727775,3.1610383333333334,1.5964183333333333,6.7248624999999995,5.64311,2.60678,4.07418,2.925795,4.598975,2.799275,3.853035,4.993645,9.242189166666666,5.05115,4.316445,2.4012275,2.907295,2.00406,0.60884375,2.1541084444444447,5.7098,5.2471,4.90064,4.10932,0.5492673333333333,1.994135,1.41466,4.237635,0.6813784615384615,6.3020575,2.0622175,1.0717125,1.0717125,3.9342439999999996,2.0021999999999998,3.033103333333333,2.569575,4.56693,3.4594725000000004,3.4594725000000004,4.121915,5.643511666666667,2.69558,2.5732766666666667,3.2316633333333336,4.72461,1.840792,2.8008666666666664,5.5243,4.94606,4.63546,4.0492,3.9895016666666665,4.27605,3.579225,3.0347899999999997,2.3117725,4.28428,5.4511,3.2895087499999995,4.94221,5.4714,2.09197,2.4368766666666666,6.0303,7.0115,1.1345,2.678475,2.450925,2.7300833333333334,2.1728075,2.5438,2.7013540000000003,1.044318888888889,1.948965,2.6591,2.29873,2.5537316666666667,2.5537316666666667,2.981015,3.003275,2.218774423076923,2.6275,2.36426,2.00348,1.5682546666666666,5.2010425,14.929523166666666,2.8925433333333337,3.1493266666666666,1.7774360000000002,1.7774360000000002,1.6495266666666666,1.6495266666666666,2.7519666666666667,3.7202333333333333,2.8497866666666667,1.9697975,1.9697975,3.964166666666667,2.576896666666667,1.1181066666666666,1.456357142857143,2.8967433333333332,2.7853366666666663,3.5094333333333334,2.472553095238095,3.2748666666666666,3.027416666666667,0.683795,2.5904,3.593013333333333,6.952758333333334,4.599005,5.41785,4.28319,3.44821,4.97821,4.56551,2.808923333333333,4.1294,1.3463783333333332,3.194793333333333,5.57495,5.18775,2.78672,1.1542583333333334,2.911665,2.2000466666666667,2.885946666666667,1.495395,0.6876992857142856,2.8948,4.343190833333333,4.801425,4.122565,4.60755,3.071016666666667,2.0887266666666666,3.2605174999999997,2.5173566666666667,3.19802,3.157916666666667,3.1975866666666666,2.558683333333333,2.2635066666666668,3.5393666666666665,2.8142666666666667,5.1942,4.66674,5.160720833333333,5.160720833333333,3.444595,4.110165,3.78218,3.82231,2.81142,4.17028,3.41281,2.91696,6.2183,0.7251124999999999,5.2675,4.573445,2.5715966666666668,5.199106666666667,3.5111333333333334,1.7640666666666667,1.162872857142857,1.9986033333333333,0.984036,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.30311821428571434,0.5606671428571428,0.5606671428571428,1.212775,0.8822218055555556,1.7601679671717172,0.9197299999999999,0.9197299999999999,1.2884524116161615,0.4717155555555556,0.3843288888888889,1.19829,1.4473775,2.4665966666666668,2.1914875,6.176753333333333,2.95847,3.867035,3.4106266666666665,5.026634285714286,1.29714,4.78792,3.780205,5.2295,2.99105,1.54027,4.252935,3.730715,4.20608,4.36417,2.88614,4.7645,4.62822,4.55663,1.249242,3.8398,4.561775,3.19173,2.4272533333333333,3.422965,2.42632,3.42823,4.539825,3.0083800000000003,4.58957,8.996690000000001,3.326095,4.7761,4.026815,4.3102366666666665,2.529306666666667,4.800725,1.35091,4.345715,3.60885,2.2237999999999998,1.2637375,2.77434,1.3024933333333333,0.49378533333333335,3.6186000000000003,4.156115,5.26831,3.6190333333333338,2.5056,2.59511,4.824895,3.9530333333333334,5.10835,2.714725,2.256676666666667,4.107705,3.81895,3.98292,4.94674,4.231195,3.81754,4.60747,3.0110566666666667,4.164995,2.2398387499999997,4.51673,5.29395,3.27031,4.18573,2.531535,3.857905,5.4449,3.89562,5.10925,4.574905,4.837895,2.20673,4.73165,4.71922,4.514685,2.1394825,1.046935,4.013195,4.757335,3.91085,5.0153,1.894085,3.775425,2.206575,4.874915,4.523995,4.49463,2.2110625,4.064555,4.386105,4.18782,2.4458166666666665,4.723455,4.681555,5.1882,3.72614,2.1394825,2.38256,2.852765,5.02035,3.764125,3.971275,3.586985,4.768295,2.27349,6.89873,5.2918,4.46095,5.310845263888888,5.18065,4.93754,3.3335425,2.7618783333333337,2.7618783333333337,3.765165,3.512055,4.642565,2.1387325,2.7008375,0.913895,2.3965,2.85608,2.2566366666666666,2.9621166666666667,4.1078,2.7637966666666665,5.1344,2.42354,4.303775,4.590345,1.946325,4.268285,2.73865,2.51414,4.04584,0.868388,5.2198,4.54601,5.9305975,4.566315,5.51985,1.2665557142857142,4.581565,6.50755,8.179305,3.14288,3.1565666666666665,1.9079039999999998,0.811532,3.931145,1.0436828571428571,4.75948,4.53572,5.868,3.20952,3.928355,1.1267171428571428,3.541795,3.65814,4.45975,3.741765,3.037325,2.851205,2.3428925,4.24296,4.6716,5.48355,4.235615,3.465185,0.5289877777777777,0.5289877777777777,0.5289877777777777,0.5289877777777777,5.76905,2.76159,6.20825,3.0305033333333333,5.00765,4.71678,3.72719,2.31449,2.6101466666666666,1.4711833333333333,5.01755,2.7919366666666665,4.301545,3.612045,3.472495,1.57301,1.12655125,4.34272,2.546935,5.8577216666666665,4.03465,4.53328,2.53054,1.466995,0.8873166666666666,3.3248,4.02347,3.457345,2.14253,7.966985,4.48802,3.610095,2.23434,0.468643,3.47911,2.821985,2.0352,1.891225,2.646105,2.71247,2.320055,2.85885,2.88156,3.17486,4.52856,3.588675,3.931485,2.936145,5.66716,0.6192326666666667,4.47095,5.6178,4.81896,4.472395,3.3485,5.28775,4.37293,4.003955,5.263575,5.2609,4.478575,4.414905,3.7493475000000003,5.03995,2.896725,9.1682,4.77907,4.040175,4.578095,4.954635,5.52875,3.323235,1.123288888888889,5.897774999999999,3.358445,4.666025,1.41514,4.356455,3.40507,6.525285,4.62623,3.186995,1.91352,4.839755,2.14054,0.903725,4.29746,6.21705,1.8773600000000001,2.3809299999999998,2.8698,3.09489,3.598645,3.7475,5.08915,1.7269133333333333,4.252455,3.9512944999999995,3.30568,3.8477,3.72425,2.811175,2.6202,1.836495,2.5049766666666664,2.684093333333333,4.436315,0.5691350000000001,2.60552,4.10548,3.01127,3.506866666666667,4.1071,4.763985,3.855235,16.775503954545457,2.72363,4.1156,1.435362,0.8979054545454546,0.8979054545454546,0.8979054545454546,0.8979054545454546,0.8979054545454546,4.84726,4.57655,4.69322,9.055151500000001,2.36293,2.36293,4.46764,4.824145833333334,1.3894125,1.9538666666666666,3.70849,2.39552,2.30153,2.1519225,3.044175,3.7651379999999994,1.62248,3.484315,0.8188642857142857,2.797076666666667,2.7201066666666667,3.1198,1.4435833333333334,3.2080366666666666,2.21306,0.94565375,2.7751866666666665,2.6776133333333334,1.305288888888889,2.4002466666666664,2.4844133333333334,2.0079066666666665,4.38915,1.72895,2.72113,2.092075,2.683073333333333,1.1321555555555554,2.706993333333333,4.941698666666667,3.5267,1.0480875,3.0139766666666667,1.312995,2.3854366666666666,2.3668366666666665,4.8214533333333325,3.0007133333333336,2.36029,4.6183320000000005,2.6362799999999997,2.16496,2.641643333333333,2.4431,1.6709500000000002,2.748483333333333,3.05364,2.909026666666667,2.5020366666666667,3.0412133333333333,2.62724,2.3697575,3.7417764999999994,3.7417764999999994,3.001723333333333,2.01505,1.9428266666666667,2.330156666666667,5.583193333333334,2.93125,1.9625733333333333,1.6810375,3.006463333333333,4.275315,2.3633533333333334,1.057504,2.7361306666666665,1.5383333333333333,3.1538566666666665,2.2597466666666666,2.5087333333333333,2.1324666666666667,3.3067100000000003,1.23557,1.6888066666666666,1.5570300000000001,4.28894,2.6632666666666664,3.926025,1.0592877777777778,4.122565,1.9934833333333335,1.9755875,1.694464,1.6543283333333332,3.3024299999999998,22.974585093073593,7.488833333333333,2.66545,3.417275,2.7207866666666667,10.081993333333333,3.00557,1.01858625,2.53003,2.4744433333333333,2.0180433333333334,3.0212800000000004,2.57926,2.5602833333333335,0.970715,3.12963,2.6264266666666667,3.0464966666666666,2.8228066666666667,2.68425,2.0963966666666667,2.11842,2.9244833333333333,2.6465433333333332,2.1367275,1.552858,5.1216800000000005,4.509745,2.3436075,2.99805,2.3363766666666668,2.41976,8.178175,1.93102,4.825175,2.501375,1.908435,7.82692,2.85589,2.7256466666666666,2.4836,1.79483,1.5505923076923078,3.2020866666666667,2.9674833333333335,4.22831,1.54467,3.5243333333333333,1.373965,1.373965,4.140745,3.78729,3.4794142857142862,3.4794142857142862,5.61023,3.53461,0.43173399999999995,11.677784917582418,1.2378966666666666,0.9354285714285714,3.723028333333333,1.4421305128205129,1.9053775,5.894783333333333,3.709395,0.6986618181818182,2.22846,4.820406545454546,2.3918938333333335,3.735815,1.2665971428571428,5.2836,4.90726,4.808015,3.13629075,1.891488,2.2356833333333332,2.5967066666666665,2.2678833333333333,2.12512,5.276096666666666,4.292415,4.00103,1.9086175,4.75158,4.155305,3.148096666666667,2.10117,4.81848,2.46383,8.806370000000001,6.366905,1.839665,2.629595,1.745532,4.578366666666667,4.578366666666667,3.0034733333333334,2.53832,3.195133666666667,4.828665,9.7991025,4.132145,2.4416225,5.51795,4.14782,5.10475,1.964408,0.833925,1.3451166666666667,4.54659,4.87961,3.6110333333333333,2.5834066666666664,3.6718333333333333,2.183143333333333,3.841825,5.0057,3.477635,5.4921,3.230786666666667,3.4963306666666667,3.1850199999999997,3.19745,3.3432999999999997,6.1109,2.93245,5.33805,4.62211,3.430355,3.317375,3.317375,5.5937175,11.999171666666667,3.7759666666666667,5.9320675,7.397318333333333,3.67069,2.49938,4.05712,1.2921133333333332,3.837055,2.6371,2.98141,2.8936466666666667,3.2557833333333335,2.09972,2.3531733333333333,2.6101366666666665,2.4816866666666666,2.88827,3.2290200000000002,3.844405,2.5808666666666666,2.9080366666666664,3.80373,2.6513666666666666,2.3916999999999997,1.0971175,2.0729375,2.6915766666666667,2.4158033333333333,2.53715,2.511406666666667,3.4143000000000003,2.2080933333333332,2.3749433333333334,2.4973566666666667,2.96398,2.6544833333333333,2.7115833333333335,2.4584699999999997,3.108086666666667,2.894503333333333,3.352558,2.5962733333333334,2.5044066666666667,2.26897,2.7236700000000003,2.4360666666666666,3.4578666666666664,3.312053333333333,2.725065,1.933175,1.933175,0.8024300000000001,1.504142,4.20443,3.220115,2.613496666666667,2.09972,3.10171,1.157697142857143,2.4799,0.543668,3.288206666666667,3.0551766666666667,3.434015,2.9773666666666667,2.5533766666666664,2.44532,2.8892866666666666,2.4441466666666667,3.207003333333333,4.32007,1.518922,2.717003333333333,2.42855,1.8595066666666666,2.20348,2.7659599999999998,2.5787033333333333,1.62316,2.5263433333333336,2.6445233333333333,2.54007,2.56689,2.65188,2.828943333333333,3.0988100000000003,1.3999125,2.801273333333333,2.4102866666666665,3.6534,3.7976666666666667,1.84249,2.0036166666666664,3.2704033333333338,2.4120766666666666,3.4050666666666665,2.6847999999999996,2.607466666666667,5.105779999999999,3.26486,2.073586666666667,1.54118,3.300883333333333,6.284086666666666,2.9074866666666668,3.5244999999999997,2.864266666666667,2.98574,4.650063333333334,1.5977999999999999,1.1188666666666667,1.9940733333333334,1.6923279166666667,4.627775,2.804743333333333,3.2073699999999996,3.1811366666666667,3.2919866666666664,2.0871033333333333,3.5464333333333333,2.4757225,1.584272,2.8115900000000003,3.566855,3.59503,3.212375,3.52006,1.6209875,2.837105,3.42646,3.033505,2.3377933333333334,3.8276333333333334,3.9467,3.839866666666667,1.318015,5.493355,3.30335875,1.4851833333333333,3.20215,3.16219,2.861985,3.55918,1.767172,1.767172,3.1644,3.00264,2.83792,4.96093,4.344305,4.1567446666666665,1.5534979999999998,3.2151333333333336,2.411626666666667,4.2404399999999995,3.0493066666666664,4.8096733333333335,2.6183533333333333,2.36706,2.44125,3.6468,3.799145,1.629822,3.0447966666666666,2.85202,2.275705,4.34005,1.3399183333333333,3.04348,4.23055,2.709725,3.56335,4.081705,1.6186325,1.6164133333333333,2.39615,1.0454583333333334,1.981339761904762,1.8686225,0.45576357142857143,3.818905,2.42741,4.28723,4.11736,2.832245,4.623601666666667,3.450466666666667,3.1190366666666667,3.407133333333333,2.324316666666667,3.2688466666666667,2.6999333333333335,3.0317333333333334,2.24509,0.6666015384615385,2.339653333333333,0.5944457142857144,1.9625000000000001,2.440166666666667,3.05851,3.097246666666667,1.3706800000000001,1.371895,4.297685,4.07959,2.870735,3.4125,3.21804,2.1710075,3.9687,6.849187777777778,3.57288,5.4299775,1.6154175,3.813595,1.893815,4.15101,3.278735,1.915385,3.727805,2.87054,3.63863,3.97161,2.09085,3.76268,5.7825125,4.87705,3.492445,2.788925,1.6857375,1.998415,3.61314,3.2375,3.1418,3.51419,3.600965,3.286445,1.50488,3.451535,3.002295,1.607585,4.1463525,1.0462,3.11626,1.618225,3.60604,4.521251666666666,3.62449,2.8638575,3.55658,3.202295,1.92539,2.2873175,3.8699999999999997,2.16212,5.663740000000001,4.18253,4.46079,2.52274,2.63549,4.3383,4.47009,2.2414180000000004,2.2414180000000004,5.784376666666667,3.7081225,2.5933225,2.94119,2.107486666666667,2.75287,3.27769,3.556675,2.6258675,3.28002,1.010178,3.532405,2.86658,4.098355,2.71581,1.5324825,1.369565,2.757335,5.990135,5.675660000000001,3.677245,1.45984,4.138155,3.556985,0.8455566666666666,2.76456,1.3255940000000002,5.23206,1.44159,3.83439,1.8382225,1.3706800000000001,3.0806,2.992595,4.58473,6.766441666666667,3.930115,4.254086666666666,2.482415,2.84346,4.017915,3.73037,4.13081,4.309105,1.057385,1.65008325,1.06824125,2.354,2.159445,4.908085,1.06824125,4.29318,2.43943,1.4828375,1.4828375,1.607585,3.594495,4.231855,3.8068,1.510006,1.510006,0.9524216666666666,3.12204,2.1229,6.068975,3.928845,3.657535,2.7282933333333332,0.96203,3.451725,2.95052,4.227815,3.52426,3.7183775,3.7183775,3.2596,3.99483,1.783675,2.672045,0.9656499999999999,1.7225466666666664,3.56589,2.3198833333333333,3.2929199999999996,3.2929199999999996,2.739935,4.68718,4.508885,3.897965,3.51537,3.939155,2.4052000000000002,4.19348,2.66293,3.527185,8.391275,5.0151,2.74626,3.217325,2.968715,4.55365,3.125318,7.689992500000001,4.471095,4.715595,3.248615,3.81259,3.56404,4.502295,4.827,2.373075,4.420395,6.354376666666667,2.623975,2.0419115555555556,3.022905,3.34156,3.70678,5.90275,2.2391866666666664,2.3441966666666665,2.84362,3.385865,3.457966666666667,6.815096,1.4568725,4.824075000000001,4.824075000000001,3.245585,3.7065025,3.111765,2.36347,4.87489,4.303911,2.157906,3.873135,3.964855,3.4821958333333334,2.842385,2.76338,5.626868333333333,3.40899,5.0273,2.862485,4.631145,4.33125,3.472495,3.00264,2.0492666666666666,2.694355,3.794185,2.927785,3.2800366666666667,2.85074,5.77622,2.450425,1.7404875,3.111460833333333,2.3772533333333334,3.786235,2.77086,0.8455566666666666,3.62201,4.10734,3.943315,6.019405,3.00734,3.070045,2.963013333333333,2.963013333333333,3.6551416666666663,3.85325,3.430445,2.028235,5.5639225,2.1016775,4.52099,3.561235,7.80192,2.8325533333333333,1.4118700000000002,2.94844,4.47669,0.57029625,3.966275,3.166905,2.84198,3.000475,4.25745,2.08213,2.450785,9.08444,3.530205,2.871925,1.44159,3.593105,2.709125,2.34212,4.052895,5.322785,1.6663,1.1593483333333332,1.0383850000000001,4.31443,4.05196,3.531155,3.178735,3.178735,1.50488,2.293075,3.088012777777778,0.8718477777777778,2.98869,1.02374,1.6209875,3.12147,3.329165,2.65863,2.6406,2.503365,4.33573,3.576475,3.08024,3.049535,2.757355,4.10526,6.99277,4.030405,0.896445,2.6860145,8.86128,4.72829,4.092965,1.0720975,4.636036666666667,1.3877433333333336,3.5353875,3.5353875,3.608625,8.55211,0.8485788888888889,4.729925,4.447215,2.29721,4.152200000000001,3.68271,2.152715,9.743623666666668,1.6253175,2.3140133333333335,3.308215,1.5938800000000002,4.208732416666667,3.017085,3.099125,3.2401706666666668,2.64826,3.40339,1.07524,7.23095,4.050155,3.74634,3.749105,1.912275,2.8638575,3.9794,3.60253,0.5994438461538462,3.793495,4.095245,4.43823,2.0797525,1.347154,4.031845,4.27261,8.62716,0.6814815384615385,0.9263175,0.9263175,1.8458266666666667,1.3535866666666667,1.44365,1.8661533333333333,4.683795,1.23336,0.8395557142857143,3.9859225,3.379885,1.2469675,3.33634,4.69941,3.716105,0.698824,1.91049,9.40994,3.491356666666667,3.268875,2.78764,1.596655,2.5585633333333333,2.611965,4.3647,4.49189,3.780765,0.8812728571428572,1.446566,0.9526830000000001,4.1096525,4.387235,4.22167,0.8718477777777778,1.7095559999999999,3.76358,2.2243053571428573,4.825634166666667,1.0270625,4.816165,0.6215183333333333,0.6215183333333333,0.6215183333333333,9.677605,3.826475,1.02374,3.80883,4.66538,2.80492,2.97198,5.471936666666667,2.77902,1.7574972222222223,2.048043333333333,0.698824,1.5443806666666666,0.5066455555555556,0.7701216666666667,1.4760350000000002,3.998685,3.691215,1.942345,7.435043333333334,4.97434,0.6023855555555556,6.08655,4.848753333333333,3.27834,4.488365,7.8514946666666665,3.7854989285714282,4.97434,4.4246109166666665,2.3806433333333334,4.1358,3.54138,7.03076,3.342385,0.468643,1.439526,3.889355,1.7732959999999998,1.1593483333333332,3.946345,2.3316866666666667,1.67292,3.082905,1.7093099999999999,4.49749,4.31005,3.969125,4.751075,6.11765,2.67396,3.521035,1.3255940000000002,2.1751125,3.30221,3.24575,2.157906,3.93647,2.397245,5.15035,2.95969,2.37999,3.3365675,1.7342220000000002,3.52444,0.8718477777777778,2.0628642499999996,1.0383850000000001,1.63069,3.54843,1.4568725,1.4760350000000002,1.9466425,3.24227,7.41088,0.8812728571428572,1.0720975,1.255042,3.520905,3.50956,1.255042,3.923065,2.1751125,0.57029625,0.8718477777777778,1.8458266666666667,1.3255940000000002,0.45576357142857143,1.6950800000000001,4.159765999999999,2.29721,1.34526,2.952405,1.318015,1.6253175,2.6934966666666664,2.048043333333333,4.970525,2.6934966666666664,0.8455566666666666,2.767474,2.04689,0.07621,0.07621,0.07621,0.07621,0.07621,3.30242,2.76841,2.6012066666666667,2.737076666666667,4.5551,4.43128,1.694464,3.8946,3.736715,2.21797,5.0108525,2.55434,2.504595,2.561125,2.72101,4.48434,7.809635,2.221025,1.9127233333333333,2.992862857142857,0.9257128571428571,1.38314,2.4103866666666667,2.03785,1.5070575,2.7672166666666667,2.1662433333333335,2.7094066666666667,2.5455466666666666,2.6047466666666668,3.56248,3.332075,2.5068033333333335,1.28105,3.55916,3.71263,1.5560666666666665,1.313072,1.313072,1.313072,3.535015,2.6774566666666666,1.0625166666666666,2.189686666666667,1.3310857142857144,4.24785,1.5120266666666666,6.063408333333333,3.1697474999999997,2.4282833333333333,3.128096,3.128096,5.2613199999999996,3.153845,4.530815,4.879135,2.0821075,2.950673333333333 +GSM1946763,1.0,2.0314325,2.0314325,1.6444166666666666,5.0727,5.7208,2.5200525000000003,1.7069133333333333,7.4480112990196075,4.4297,3.1457766666666664,2.24876,2.3526,3.061655,4.52038,1.8162500000000001,1.461984,4.85442,2.5182866666666666,2.3452775,4.857535,5.297503333333333,4.00833,2.139275,1.703014,3.880235,4.82802,4.30545,0.7109941666666666,1.5349411111111113,1.800821111111111,2.17414,1.6931075,1.1782814285714287,0.70206,3.1842339285714285,1.57827,1.655335,1.1921425,2.1710075,1.127855,1.075665,1.146546,1.470754,0.941584,0.94924,0.768482,1.2128542857142857,1.538648,1.7977440000000002,1.5268359999999999,1.9789999999999999,1.724256,17.5176995,0.38164533333333334,0.830106,1.112936,1.808412,1.5185980000000001,1.790598,1.0889357142857143,1.0889357142857143,1.0889357142857143,1.1644583333333334,1.1318920000000001,4.67742875,1.1552025,2.134495,2.035485,2.349475,1.0036,2.21626,2.23914,2.2070375,1.421025,1.989375,1.5703575,1.7203075,2.52144,3.749315,4.5445,4.919395,1.6987766666666666,4.315605,4.548821666666667,4.126935,4.164235,1.08481,7.91821,0.611891875,0.611891875,2.1310225,1.07636,16.32963,4.5658,5.3765,5.2683,4.176505,4.235545,5.25135,0.4256711111111111,2.3655079166666666,1.7986425,2.31556,4.563925,4.270095,1.4257875,3.1586233333333333,3.28194,2.816943333333333,3.2999500000000004,3.61226,4.443695,2.5415525,4.323215,3.0667666666666666,0.7463054545454546,1.5728579999999999,2.528675,4.694725,3.286055,0.54954625,3.594195,3.829085,0.73574125,4.091195,1.714418961038961,2.15639,2.543475,2.25143,3.523335,6.0533,3.4732,2.8886633333333336,3.1634433333333334,3.0310799999999998,3.634825,2.9026833333333335,5.58715,3.4321,4.491915,3.30394,2.382505,3.6798,2.3135225,6.9676833333333335,3.786415,3.202515,4.64462,3.116445,4.41408,0.7933444444444445,9.560267142857143,3.86986,2.0655033333333335,2.0713066666666666,3.4460333333333337,2.45242,4.259695,5.61355,2.1954775,5.044711666666666,2.839825,4.73692,2.1954775,2.81744,4.61595,5.158682499999999,4.678065,8.448820000000001,3.455205,4.765545,3.042935,5.06305,4.58195,1.6548216666666666,8.33271,4.64845,3.852175,3.968215,3.70193,3.61878,2.351245,6.38302,2.247515,3.780275,4.11871,4.891255,4.52591,3.59732,1.5337566666666669,2.83346,2.949475,1.808155,1.808155,5.760846857142857,3.178445,1.9591733333333332,4.263475,4.42437,2.75993,1.4835266666666669,1.104611111111111,6.83705,2.99776,6.78845,4.82604,4.048615,3.830735,3.444565,4.02427,3.50593,4.10106,4.10463,6.12275,2.86812,3.688905,9.13321,4.409625,3.3876333333333335,3.13831,2.755243333333333,3.785633333333333,4.211050833333333,1.6783475,2.6907033333333334,2.0710366666666666,1.6611160000000003,1.7367233333333332,2.7179133333333336,1.779295,1.9251175,2.9192033333333334,2.48658,2.4047666666666667,3.00426,4.548821666666667,3.52504,3.610735,3.39984,4.809915,1.4398616666666666,2.20667,2.899901428571429,2.1653,2.63074,2.318966666666667,3.5592,1.8009340000000003,1.3233866666666667,2.643126666666667,0.670878,1.6500866666666667,0.5190844444444445,0.5190844444444445,1.5020433333333332,2.687583333333333,2.3408933333333333,1.32224,1.5536866666666667,0.31404846153846155,2.8317433333333333,0.670878,1.2949566666666665,0.24498756756756754,1.4751866666666666,2.1902625,3.6131333333333333,2.7580899999999997,2.4136333333333333,2.578396666666667,2.3697866666666667,2.42752,2.6224000000000003,2.445656666666667,2.23826,2.729226666666667,1.92926,2.80449,4.38682,0.6821466666666667,1.8866633333333331,2.76043,1.98751,3.4381966666666663,1.57535,2.634113333333333,2.2531333333333334,4.351306666666667,2.1393,7.353040476190476,1.639757142857143,2.7979033333333336,2.18059,2.0899825,3.688133333333333,2.0791925,1.9517525,4.40253,2.5780366666666668,2.156475,3.985875,3.98568,4.411295,3.93816,2.356725,3.359955,4.774947333333333,4.07282,4.154425,4.01679,4.432655,3.05954,4.35481,3.58527,0.8996625,4.6078,1.2993416666666666,4.16146,3.88301,6.004198,3.519275,4.34332,0.97497875,2.24045,3.58352,4.191285,0.9140085714285714,1.3273409829059828,2.165319523809524,3.2936751428571425,5.2068449999999995,5.527950000000001,2.150535,3.434645,5.35615,0.335775,3.583455,2.400615,1.0306475,4.52554,2.04196,12.30232,1.176045,1.47251,2.4159,2.435705,2.0867117105263158,5.150706710526316,0.3643642105263158,1.6922233333333334,2.961596666666667,1.031,3.3848333333333334,0.98829,5.10965,4.07444,2.12603,5.95795,5.21925,2.505375,1.1659885714285714,4.217218333333333,4.893395,4.339685,0.8902336363636363,7.510148333333333,2.6672433333333334,4.23424,2.753,2.653303333333333,4.570755,2.5779,2.8537166666666667,2.19597,2.53003,3.075665,2.99108,0.3525975,3.967825,3.808035,4.06731,3.84483,4.513855,6.135400000000001,4.187865,1.7261925,5.6079,4.43362,4.474405,4.21986,1.0791783333333334,2.84306,3.0559,2.6477233333333334,15.955335000000002,3.2968,4.23088,4.513095,5.2975,2.688395,5.011734722222222,1.681945,0.7924644444444444,2.643925,3.335445,3.76773,3.66771,6.4966783333333336,2.9215433333333336,2.206985,2.087705,3.3310766666666667,4.58279,2.261105,0.3549678125,2.726918913043478,2.010215,1.13801375,0.46573976902173914,0.5765117255434783,0.3549678125,0.3549678125,0.3549678125,1.1579175,1.2937175,0.8380075,1.431355,4.30544,0.21733882352941178,10.918848430735931,3.3366333333333333,2.8203,3.96004,3.866215,4.085515,2.116675,4.62546,3.8679706666666664,4.296805,3.56465,0.6714576923076923,3.3600333333333334,4.15663076923077,0.5607564285714286,3.43751,2.8298533333333338,4.24582,0.46656545454545456,1.70659,4.387675,3.542565,1.812975,1.8365366666666667,1.69578,3.533466666666667,4.072405,3.01273,2.9282733333333333,5.22685,5.6326,4.64787,3.1534600000000004,3.0579035,6.509075,3.6844,5.1719,0.4169652380952381,3.0133466666666666,3.9008666666666665,2.1112866666666665,2.85592,2.8332891666666664,5.344670000000001,0.6468208333333333,2.479865,4.40204,4.04836,1.0586657142857143,4.16793,4.18058,4.67344,3.280836666666667,4.6933,3.6192,4.44209,1.2001966666666666,3.74305,2.790243333333333,4.959795,4.21653,4.34504,5.62485,4.404615,2.687145,5.09854,2.36629,2.77296,3.03669,2.50325,2.5880466666666666,2.347376666666667,1.791366,1.49962,2.0299466666666666,0.8348985714285714,1.60745,2.1827533333333333,2.022393333333333,3.07616,3.269363333333333,2.791183333333333,0.9286333333333333,5.0023,3.21827,5.309658333333333,2.526718333333333,3.0972866666666667,3.136753333333333,1.5817466666666666,1.5817466666666666,2.5143096103896103,2.5143096103896103,3.2683406818181817,0.48915,1.7623066666666667,2.6964466666666667,3.7462666666666666,2.260724047619048,2.260724047619048,2.260724047619048,7.293828630952381,4.397544761904761,0.9502909090909092,2.9428,4.5370625,2.3012025,4.58146,3.2205,2.434015,4.28622,3.151816666666667,2.85272,0.86673375,1.9546266666666667,3.4795,2.43868,2.657556666666667,5.5198,3.9934666666666665,3.6708,4.94832,1.9783,2.7351666666666667,2.9243733333333335,0.9219188888888888,2.1415133333333336,4.331842666666667,7.86787,1.53052,2.912425,4.57866,1.926284,1.71765,1.71765,0.97718875,4.7279,7.114075,4.04163,5.7943940000000005,4.50367,1.8195666666666668,4.140965,3.01946,4.52614,4.570233333333333,0.36351,2.90877,2.52687,4.050655,3.76346,1.7575479999999999,1.958625,2.567325,4.351305,4.08431,2.95181,2.57407,1.446798,6.97831,5.2347,5.5096,3.724105,5.0334,4.48497,4.87503,4.47762,3.6897575,1.99113,1.0881242857142857,2.79539,4.06,3.859785,5.6808875,5.487495,2.292305,1.71415,2.78012,2.8152333333333335,3.0274133333333335,0.6315364285714286,2.15342,3.723735,1.07046375,4.77037,3.28804,6.1990725,1.3168090909090908,1.3168090909090908,3.781175,3.817205,3.69803,5.35535,2.8411766666666662,2.3040233333333333,3.911855,3.137425,2.16373,3.3653,2.34311,4.241685,3.33803,3.610735,4.2777,1.0257011111111112,2.592755,4.321945,4.5296,3.307095,2.53484,2.19526,0.7144266666666668,0.7144266666666668,0.7144266666666668,0.7144266666666668,1.442451666666667,3.7073625,3.7073625,1.6038,6.869071666666667,2.876585,4.40107,2.9160566666666665,3.038725,4.53819,4.05198,4.856175,5.31025,1.6002925,4.197055,3.67562,2.53921,3.79847,3.484355,2.601385,4.28864,1.815665,4.75939,1.595265,3.501549166666667,2.97721,1.8204175,1.197365,2.910175,4.22598,1.2089880000000002,0.8659344444444445,3.57799,1.2968825,4.897528666666666,4.469,1.3089571428571427,3.54293,0.7849711111111111,2.6121,2.4259999999999997,2.30172,2.7297,4.161115,2.837231666666667,4.546405,5.29945,4.414695,4.320635,2.1615875,1.309597142857143,3.942905,4.700895,1.4526325,1.4526325,4.171145,0.23742999999999997,2.3330933333333332,0.23742999999999997,0.23742999999999997,0.23742999999999997,0.23742999999999997,4.60243,2.7508433333333335,3.00605,3.54766,3.08215,4.166115,2.7660466666666665,0.9853025,0.9853025,0.9337333333333334,0.9337333333333334,3.71533,1.80972,3.97971,1.4911030357142858,1.4911030357142858,4.5602,0.5186378571428572,2.29658,7.711553333333333,4.789465,3.235165,3.450505,0.97251125,2.253225,1.87628,4.579265,3.983455,4.31521,3.94699,1.3579157142857141,2.698535,1.8713675,7.46385,1.868725,4.692655,4.835215,2.761465,3.92405,6.2999,7.840635,3.94462,4.987655,5.8689,2.21519,3.193015,2.31813,2.34834,1.857115,3.949065,3.499375,5.675543333333333,6.62332,3.995505,1.1871233333333333,1.817335,4.054155,4.258845,2.232595,4.56568,4.05933,4.629266666666667,1.7602833333333334,3.8445666666666667,1.6009533333333332,6.426446666666667,2.68092,2.37878,2.3512366666666664,2.294335,3.1576,3.532633333333333,3.493,3.1396933333333332,3.23917,2.00442,3.93269,3.053375,3.284315,0.3896925,2.957905,3.59753,2.5265,5.2796,4.88032,4.64765,6.682462,4.87334,2.0697533333333333,3.87039,5.15835,1.52529,4.774235,5.6882,5.2155,4.57662,3.289035,5.44335,4.683125,4.100875,5.341179333333333,7.7187,3.790745,1.238045,1.4845983333333335,2.572815,1.794132,4.45924,4.148125,4.7900425,2.51749,2.61586,2.770793333333333,2.51221,2.38579,1.0532911111111112,0.5108564705882352,3.67151,4.120315,3.6917666666666666,4.12228,2.822195,3.3480333333333334,5.414986666666667,3.0297733333333334,0.5641570588235294,3.16653,5.27735,1.4918775,1.531792,3.801925,3.61839,2.5853266666666666,3.6827,4.07498,2.7226666666666666,2.2924533333333335,2.3229166666666665,2.5251566666666667,2.70875,4.296531666666667,5.077849166666667,7.4547350833333335,1.9480060000000001,4.991,3.4518483333333334,5.621066,2.80035,3.07118,2.29144,1.9745733333333335,1.3697125,1.3697125,2.67952,2.395703333333333,2.8518733333333333,4.305245,1.739188,2.268315,1.882575,0.56132,3.6877,0.6539183333333333,1.07965625,3.461725,4.388845,3.708645,1.7338875,4.60539,2.969773333333333,0.8650857142857143,3.94903,3.644309523809524,3.228706666666667,2.53194,5.10775,0.2721224137931034,2.3803331666666665,3.2073,1.4280125,3.81135,6.5004,2.335785,1.3355,4.214105,3.870775,2.7932333333333332,2.7932333333333332,3.54667,2.82735,4.61448,5.400593333333333,5.04135,1.081768888888889,2.3576966666666666,2.4971366666666666,4.320115,4.85197,5.2155,4.714045,4.329066666666667,3.8778333333333332,3.589166666666667,3.4162666666666666,4.020566666666666,3.0620100000000003,2.9743833333333334,0.6239878571428571,2.2132075,2.3688125,3.51545,2.8390033333333338,3.123483333333333,0.7498333333333332,2.46241,3.8359855,4.41085,5.55675,4.292075,1.95955,1.95955,0.784827,3.180215,4.393015,3.9565,4.411969285714285,3.169255,4.98986,0.6004254545454546,3.069105,4.010195,4.228905,3.67419,0.7937057142857142,3.37208,4.235795,5.15545,3.88226,4.903325,2.77259,4.338205,1.33208,1.0073285714285716,2.843693333333333,4.981115,4.048955,3.18658,1.4587383333333335,4.14876,2.486925,2.704525,2.770192,3.1963733333333333,4.582793333333333,2.9712633333333334,1.7813120000000002,3.3290400000000004,1.4859278571428574,2.9855733333333334,2.7661866666666666,2.2687525,2.8102300000000002,3.057653333333333,2.4205799999999997,2.3064066666666667,3.734835,2.9124533333333336,3.425677666666667,2.5366,1.98969,4.169261666666666,2.9146033333333334,2.482063333333333,3.425677666666667,2.3362333333333334,0.7879490909090908,2.3661425,0.995851111111111,2.2225525,1.48832,0.9154727272727272,1.5540425,1.69929,2.766895,2.6728,4.508915,1.428625,4.151705,2.8192866666666667,1.580888,2.2101133333333336,2.5532133333333333,1.7959566666666669,2.69507,2.5972066666666667,2.2899197727272727,1.7800725,1.948818,3.4754666666666663,2.2349866666666665,2.8012888888888887,3.0579,2.9774833333333333,3.597766666666667,1.7932533333333334,4.227966666666666,3.5582999999999996,3.7472666666666665,2.774903333333333,3.455766666666667,3.5490333333333335,2.0246,8.75586,4.223635,4.415865,3.32555,2.838235,2.00762,4.108305,1.699654,4.11772,4.296245,1.3971,2.4913366666666668,1.1182,2.3772233333333332,1.7490633333333332,2.34171,4.98049,3.0693433333333338,3.75511,4.664225,0.75831625,1.4483000000000001,0.9777760000000001,3.642025,11.67697,4.3208,6.6064,1.97558,5.3136,4.169525,2.55825,5.30315,0.2907358823529412,0.8402071428571428,4.83292,4.54525,7.0823725,2.0836725,4.48438,5.4273,5.0163,4.64154,3.829835,4.40791,3.22346,5.5518849999999995,3.55197,3.21434,3.16664,2.2880833333333332,1.9503199999999998,1.336907,2.47148,4.207785,4.82899,1.6002800000000001,9.33078,1.7551066666666666,2.8055383333333332,1.104444,1.104444,7.268425833333334,2.97082,2.3499625,2.1017525,2.61884,2.208813333333333,0.9311733333333333,3.3330225,2.6494566666666666,0.6880228571428572,1.6906166666666669,3.3665580000000004,3.3665580000000004,1.16204,2.5475933333333334,2.40719,2.5082683333333335,1.3800425,1.8209866666666665,4.8516613333333325,2.776033333333333,2.65135,1.28321,1.28321,3.620645,5.46575,4.46783,3.33635,3.941505,5.68566,2.866705,2.9215400000000002,3.3402,4.20976,1.2118416666666667,3.3370333333333337,2.619775,3.853005,2.1944966666666668,4.89629,3.547925,4.20644,3.7977,5.443767,0.9917177777777777,1.9063175,1.89408,3.66667,4.20515,3.76107,3.74141,3.93289,3.37094,1.9336625,4.369115,3.61835,3.454685,2.5321000000000002,0.85353,3.57368,4.26719,4.698415,1.1668566666666667,2.678733333333333,2.6658633333333333,1.7672033333333335,1.8278167647058825,1.8278167647058825,1.234105,2.110393333333333,1.0907585714285715,1.4071339999999999,4.4009,4.65913,0.48031904761904765,3.75793,3.397266666666667,4.01928,5.46485,0.42645799999999995,9.01766,5.4051,3.15888,3.83307,4.595725,5.632107857142857,4.784305,6.4342625,0.68341,2.7178233333333335,5.2348,2.5544100000000003,1.71415,2.0397,4.30487,5.03252,2.4300530357142858,3.030333333333333,2.97584,1.689945,4.182575,11.0332,8.03235625,3.8003,4.44465,3.196673333333333,3.234015,3.912325,1.764284,3.0423466666666665,3.76473,4.434685,4.56866,5.12406,6.15684,2.2399033333333334,4.028775,4.60984,5.1194,4.923395,6.614559999999999,3.9867925,6.29855,3.4939,2.931725,2.9398,5.58215,3.871795,5.2913,2.05625,3.1456866666666667,3.38974,5.984,4.276995,3.92354,1.497366,0.9215525,2.6276,0.5384473333333334,4.073965,3.7259,3.54525,2.780575,2.149766666666667,2.968225,2.639075,2.933854,1.789362,3.0430900000000003,2.94925,2.162355,2.54855,3.735228,1.0796533333333334,2.549150833333333,5.01535,3.7436000000000003,1.1032675,2.728336666666667,3.7384683333333335,3.7825569999999997,1.5212375,5.54305,5.4637,2.137496666666667,2.9447433333333333,30.15393572116935,3.5094666666666665,1.7104833333333334,3.9823,2.0291333333333332,2.58538,2.9104766666666664,3.3738333333333332,2.0472575,2.778625,2.0159675,3.7799605,2.995696666666667,2.37676,1.48946,2.27996,2.842925,0.39699863636363636,1.118485,2.7080633333333335,1.49943,3.34939,1.5212375,1.99927,25.13664688888889,4.702585,3.963575,3.771205,2.498155,2.3733525,2.479293333333333,2.2903975,3.325005,4.966149,5.4949,1.597574,1.75629,2.19921,2.300796666666667,3.724475833333333,5.13015,4.463665,4.37187,0.18021829787234042,4.812355,4.914928333333333,3.831955,8.55894,1.0485525,1.0485525,2.9692833333333333,3.15345,5.70905,2.002936666666667,0.9994677777777778,5.4494,1.9554075,4.06084,3.99552,3.33287,4.032285,4.02983,4.55311,3.089055,0.7354888888888889,3.3655,2.1645783333333335,4.30783,7.870705,4.362475,2.103963333333333,2.103963333333333,6.4945175,4.363185,4.35082,5.93705,1.9900733333333334,5.01576,1.4356766666666667,1.4519566666666668,3.011506666666667,2.0502966666666667,2.950715,2.8455999999999997,3.90176,4.3136075,4.22398,5.6025,2.206215,2.505475,1.916935,2.585575,2.41288,2.125395,2.090115,4.821281666666666,1.8521275,3.583004285714286,2.468,3.1648899999999998,2.660903333333333,1.7469566666666667,1.4735,0.9641909999999999,2.47385,3.6804,0.678057,4.703735,1.8365975,5.9225329166666665,2.0260625,1.5554775,1.48132,1.5648633333333333,5.736766111111111,1.823048,2.9619233333333335,3.5322333333333336,1.21305625,1.825085,5.075113333333333,3.04969,2.35684,3.5597999999999996,2.8387333333333333,2.88226,1.2609810714285714,0.273495,0.273495,0.273495,0.273495,0.273495,3.55252,2.633573333333333,2.531925,3.500666666666667,1.4515149999999999,2.703936666666667,3.2701433333333334,2.8191066666666664,3.65371,2.99412,1.8394233333333334,3.007233333333333,3.1716933333333333,2.157935,2.04381,3.80228,2.82375,3.510733333333333,4.864965,2.7495966666666667,2.7308833333333333,2.659666666666667,10.87766,4.70368,4.438935,4.78678,3.8092,2.943303333333333,5.15485,3.32846,3.750145,5.688035,3.873105,3.11659,2.11802,3.65976,4.739202857142857,3.15787,18.28704655952381,1.04952125,4.477085,0.883,1.22509875,2.916525,4.69742,4.02773,4.20272,1.5036966666666667,2.3152175,4.284325,2.87325,4.55581,3.0184582142857144,2.6934966666666664,0.625925,2.6162466666666666,4.590225,2.240755,2.3892875,2.23588,19.75090833333333,1.494108,1.31535,2.62003,0.29730769230769233,1.87531,2.81957,1.9809166666666667,2.74155,2.7315,7.174356666666666,2.0408925,2.52765,2.30349,2.0191925,1.5547683333333333,3.1352166666666665,3.15356,3.329715,2.926966666666667,1.88082,2.58089375,3.0376133333333333,4.716035,0.39525000000000005,3.6526333333333336,3.0716066666666664,3.072135,1.96442,3.598119,3.758505,1.6248266666666666,2.330616666666667,2.2862733333333334,1.5170833333333331,1.7314833333333333,3.554805,3.4138,0.7917900000000001,3.355535,5.1754,4.040885,2.295578,2.295578,2.9393966666666667,4.393835,3.17983,3.463725,2.376225,0.9564909090909091,4.133915,3.674575,5.93105,3.94575,2.4769699999999997,2.4769699999999997,1.44361,3.403785,5.37535,4.11261,4.25671,3.2505400000000004,2.3852333333333333,4.51873,3.580275,4.14564,2.7833433333333333,2.41528,4.390817333333334,2.9248100000000004,2.7555,2.04506,3.35519,2.639,1.5291466666666667,3.864695,3.7377,3.936015,3.2896566666666662,4.739625,3.991385,6.4115435000000005,4.04189,2.13768,4.78992,2.42262,7.103384999999999,2.6175333333333333,1.1555600000000001,4.31009,3.4648333333333334,4.529915,0.5539857142857143,0.7935075,3.70033,3.792825,1.9764736363636364,4.672195,2.91917,2.873585,9.501486,1.7931560000000002,1.256376,3.6284,2.51691,3.64821,4.756865,6.807381666666666,3.259951666666667,2.15732,2.7598766666666665,1.9026666666666667,3.1346933333333333,8.71163948275862,0.9526183333333332,1.064525,5.0706,0.4498746666666667,1.653215,2.218145,2.6545,3.02135,2.73275,4.29066,2.35517,12.265575,5.43402,2.441915,2.441915,4.390495,0.8239383333333333,4.889736666666667,3.78303,4.08542,5.203211666666666,3.50959,4.854995,1.347245,2.80373,2.67579,2.66213,3.13093,2.76227,3.06543,3.571005,3.669555,3.086155,3.07511,3.505765,4.03775,4.33984,2.8070533333333336,2.940523333333333,4.643465,4.340915,17.825918571428574,11.813846547619049,3.0705892857142856,0.6598308333333334,1.4693714285714286,4.501235,3.48185,2.9681095512820512,2.44149,0.837878888888889,0.6596591666666667,0.6368371428571429,2.0857,1.585248,5.330283333333334,3.3618333333333332,0.7324154545454546,3.520755,2.31778,1.7286,1.704504,6.301493333333333,1.545684,4.86421,2.6438,2.8916533333333336,2.21316,2.6449866666666666,2.62188,0.7201181818181818,3.101405,2.7077233333333335,3.98991,2.990873333333333,7.732619166666666,3.71179,3.36531,2.368235,3.57295,7.7659175000000005,1.942405,2.4107225,2.3163675,1.6296075,2.4735925,2.1926775,2.847475,0.903077,1.3455275,0.94685375,2.799025,4.240395,6.1819,5.6348,2.847915,2.398195,2.985175,3.4073333333333333,7.516279999999999,1.2866466666666667,0.414806875,3.19981,2.0870933333333332,1.550962,3.479472,1.23437,2.0955513333333333,4.45395,3.2264313333333337,1.2133183333333333,1.9853033333333334,4.107043333333333,3.74606,4.133425,4.293715,2.10439,5.1049,3.690535,0.7916307692307692,4.98293,3.92474,4.092732083333333,3.2323299999999997,2.4065,1.3126419999999999,1.1067875,3.35171,2.79873,3.404185,3.52571,2.824255,2.6556133333333336,3.32634,3.807485,4.88309,2.265555,2.61868,3.909875,5.54695,0.54375875,4.56792,1.797655,3.51226,3.9340666666666664,1.9184,3.165805,2.2991775,2.026115,2.58759,2.485124166666667,1.7576666666666665,4.98238,3.524715,1.325447142857143,7.15095,1.0476866666666667,3.59884,1.6853,4.540515,4.163045,2.99198,3.282985,4.097035,8.97401,2.953485,3.661975,3.46556,3.654725,1.7469825,8.1485,3.593385,3.968785,1.75044,4.284145,3.202325,1.0047875,1.937216,4.166265,2.21332,4.22951,5.0425474999999995,4.12711,4.464445,2.2172525,5.0782,3.837715,3.1399000000000004,2.2334133333333335,1.78904,5.06575,6.0689,5.3672,4.81324,3.039785,2.3054725,4.16881,3.408795,1.1215564285714286,4.18705,4.888796666666666,3.842895,3.003235,3.74483,0.5727257142857143,0.5727257142857143,5.3167,4.219495,5.0482,2.4643,3.791855,5.73165,0.85096,4.14773,4.9593,4.62012,4.751205,4.604605,1.9324925,3.2233,2.2179475,4.532425,0.69598125,3.92473,4.154845,2.84592,2.9093433333333336,4.7676,2.342125,3.31542,59.63739044372294,3.30994,2.7217800000000003,1.74583,3.31209,3.978815,0.80891625,1.012295,2.089855,2.089855,1.3618919999999999,3.294805,2.38211,3.787535,7.2257,2.8564000000000003,1.2276342857142857,1.276295,2.8132566666666663,4.152881666666667,0.8561840000000001,1.85498,1.091398,1.9204675,3.90126,3.94686,3.156745,21.469141158008657,4.199185,3.983035,3.2619,2.3118,2.877315,3.407375,2.4481225,5.50793,1.5538399999999999,4.03096,3.41901325,5.894944722222222,1.911285,2.76354,1.883645,3.98927,2.40504,2.15427,2.1834700000000002,3.3973050000000002,3.776585,3.39003,4.1858,4.34198,2.5678,2.59729,3.059825,2.67693,2.883305,2.31236,2.02744,3.570015,1.2010566666666667,3.942225,4.646525,2.819085,4.65409,4.6757,5.411931666666667,1.8488533333333335,2.54305,2.69268,2.860375,4.21008,3.33799,4.67624,0.6961428571428572,3.96841,2.86929,3.842495,2.187265,1.7916340000000002,4.007573333333333,1.2040555555555554,2.90396,4.435925,1.0862500000000002,3.741285,3.1033,4.69156,5.8180475000000005,2.078955,2.941195,2.667116666666667,3.7385,2.480053333333333,2.629606,3.3965666666666667,2.4679766666666665,2.561716666666667,1.3250666666666666,1.903915,1.903915,2.013596666666667,2.085176666666667,1.81437,2.6712633333333335,3.57681,5.2913,3.704305,1.486665,4.27473,3.56916,3.55611,4.357705,1.9904325,1.89281,4.752025833333334,1.892325,4.319466666666667,3.778525,3.682825,2.4527666666666668,3.871426875,3.28965,3.120105,3.56309,0.14974714285714286,2.3336466666666666,7.823105,1.556022,3.483935,3.583415,1.0300114285714286,1.1017383333333333,1.93878,3.788235,3.023425,6.9355150000000005,3.368555,3.77332,3.03359,2.64591,3.50993,3.53787,4.064505,3.323715,2.850616666666667,5.3501,4.092785,4.300395,2.4397433333333334,2.119155,3.547205,4.71782,2.72372,2.964,2.084775,6.26555,4.00431,3.759375,2.797675,4.36943,4.86063,2.7247,4.053305,4.121535,3.568165,4.65281,3.59792,3.089785,6.36217,4.569225,5.0375,5.08355,4.222725,5.462155,4.156175,3.73462,1.350428,6.5862,2.37402,4.25894,4.16071,4.242755,2.90244,2.0162299999999997,2.360046666666667,2.5012466666666664,0.9080959999999999,3.2422866666666668,3.6922333333333337,3.21161,1.9901933333333333,3.73297,4.35993,2.53037,0.5628958333333333,4.45755,4.78264,4.66603,4.60138,3.67818,4.42728,4.704465,4.690315,1.3967999999999998,0.9714307692307693,2.6706133333333333,5.3067,5.9337,0.49015625,2.92195,2.54041,3.339615,4.459335,3.8047,1.8946025,5.08365,3.239215,4.054095,3.14019,6.2839,5.1209,6.62979,0.5300541666666666,4.23613,0.7509319999999999,2.417225,4.0894,2.850103333333333,1.2755266666666667,2.2924800000000003,4.340355,3.682995,4.237215,1.9531599999999998,1.989765,2.80298,4.863385,4.04857,3.68984,1.7024260000000002,1.1718564285714286,5.92755,2.07064,7.621454999999999,4.474185,3.65193,2.08071,1.6217325,4.08877,4.578215,1.8014533333333331,2.577935,2.483955,2.3336466666666666,6.699714166666666,3.1130966666666664,2.8092066666666664,3.942925,3.556205,1.9858233333333333,3.623195,6.862735000000001,4.44841,5.0049,0.4994427272727273,3.37695,4.212985,4.5957903571428576,3.947125,4.11359,3.05739,2.8252,3.340475,2.960035,3.472556166666667,1.8234559999999997,5.367416,4.65967,4.66547,3.94605,3.414335,3.2835725,2.2723075,1.432055,0.9378525,2.95037,2.44181,1.1184616666666667,2.67737,5.96315,5.0128,3.70746,4.64045,16.480622023809524,4.32844,4.627075,3.8783,0.7281583333333334,5.0973,4.22279,4.133445,4.929935,5.37605,2.51736,3.606755,3.323705,1.517496,3.23169,4.76551,2.9780433333333334,1.3503640000000001,3.796035,4.92208,3.972235,5.0437,4.734095,5.3171,4.20141,2.8646966666666667,4.21158,3.94389,2.634715,3.04795,3.000906666666667,1.7400095833333333,4.686575,2.6895260714285714,2.0692333333333335,4.03003,2.36026,4.393525,4.169261666666666,2.029475,2.677185,4.41082,3.66176,4.497175,4.36912,4.70495,4.812145,2.983135,5.21325,2.6364983333333334,3.308725,3.703065,1.5947520000000002,4.50318,1.10348,4.392565,3.10942,0.9444271428571429,3.798165,2.09702,6.49738,2.4298692380952382,2.4298692380952382,2.4298692380952382,0.6414533333333333,1.32599,1.79484,3.466125,5.43978,3.228161111111111,1.886325,2.080995,1.71859,3.88629,2.429375,0.40060384615384614,1.710205,2.21832,2.70188,1.80952,2.501555,2.387025,2.0685575,3.88196,2.7046200000000002,2.486645,2.844795,1.914265,6.72186,2.024105,4.32044,3.900865,6.224918333333333,1.6574200000000001,3.623915,3.51123,3.774635,4.116105,2.692195,1.92927,3.84464,5.711309166666667,1.956035,3.60906,3.245245,1.8277475,4.624045,4.38966,2.5802466666666666,2.09746,3.6530199999999997,5.635221428571429,5.56555,3.28432,2.469545,2.73913,2.986145,2.808225,3.84445,1.283435,2.752825,4.51931,0.773495,3.58259,3.9915,3.80198,3.887395,2.43633,3.214885,1.99069,4.663935,7.991933333333333,4.48308,3.51889,3.415635,1.0308725,4.643995,2.311275,4.449245,5.243665,3.82609,3.846225,11.253879999999999,4.74289,3.92431,1.4898625,0.7015224999999999,2.6525,3.86522,3.40741,3.753415,2.3161333333333336,2.938266666666667,2.19544,1.2397866666666666,1.2397866666666666,1.9709433333333333,2.41568,3.09242,2.78369,3.29734,2.5483933333333333,3.2358466666666668,2.97069,1.3853333333333333,3.30207,2.2023566666666667,1.9712699999999999,1.41356,2.4520033333333333,0.62979,9.817066666666667,0.62979,3.6010000000000004,2.0921366666666668,2.0514266666666665,4.69573,4.398175,4.324945,4.549275,2.2767933333333334,2.94682,3.168672,2.2952166666666667,3.267306666666667,3.18312,2.5604833333333334,3.14827,1.7399666666666667,5.1034,6.972018380952381,3.0143766666666667,3.5004000000000004,3.2291966666666667,2.57327,2.6895399999999996,1.1782814285714287,3.4261666666666666,3.3265666666666664,4.105735,5.79575,4.2321,2.907526666666667,3.5485333333333333,2.9732800000000004,4.109258888888888,4.43513,2.75924,3.43632,3.1223433333333332,2.880653333333333,4.640185,3.0655099999999997,3.559005,5.853541666666667,2.6617133333333336,2.7042633333333335,1.74718,1.45855,5.147456666666667,3.4686866666666667,2.692766666666667,2.08816,2.274766666666667,4.54341,3.818095,2.637875,3.04011,3.205156666666667,3.5372,3.4075,3.5910333333333333,3.0012733333333332,0.5454675,3.775233333333333,2.4574833333333332,2.71321,3.52212,4.433475,4.90191,5.3731,2.758655,4.557615,1.27691,2.8975666666666666,2.8975666666666666,5.0957,3.407325,3.98732,3.885145,1.757815,3.452615,3.92108,1.1296128571428572,3.8581851666666664,3.196045285714286,2.238871,0.36846100000000004,4.17816,3.818735,7.166855,3.122995,5.8515,3.298115,3.988465,4.008015,1.9806937500000001,3.08636,4.5904,3.435845,3.1899200000000003,2.995143333333333,5.713155,2.198575,0.96938625,2.020376666666667,1.6317733333333333,5.15283,2.4168933333333333,2.41715,1.8317625,4.559035,3.96953,4.30286,0.6115619999999999,4.649545,4.072295,2.8610466666666667,2.741963333333333,3.016113333333333,3.3179302777777777,3.97121,1.5212199999999998,0.6483631578947368,0.7663785714285715,3.4371666666666667,4.520825,6.199958333333333,5.24335,5.0429,5.30265,1.3728542857142858,3.9340666666666664,2.1609133333333332,1.01557625,5.11415,6.42645,3.08414,4.98088,4.180515,6.841688333333333,4.2764999999999995,7.227995,3.840395,2.673794444444445,6.0308,10.078842961538461,2.59791,0.741106,3.521615,4.4404,2.429925,6.29755,4.26446,3.978605,2.8404433333333334,2.8404433333333334,5.3665,3.373855,4.1313,4.86,3.797449952380952,2.3635865714285713,1.07895875,5.7939,2.69747,5.553416250000001,3.64757,4.664295,3.117675,2.0041125,4.346785,4.79073,3.6255333333333333,3.684125,4.352785,28.33359023809524,1.87054,2.55285,2.40431,1.639655,2.7769600000000003,1.1909285714285713,2.9412633333333336,3.083076666666667,3.3866,3.4945,0.6820876923076923,3.0896666666666666,4.256825,2.733905,3.19305,3.99571,5.85632,4.84354,4.647405,3.640545,3.9355858333333327,4.21844,3.3973,1.7293225,0.9836416666666666,1.4367066666666668,2.57774,1.5402433333333334,2.79914,2.51261,2.41569,2.28417,2.657575,1.98211,1.8044566666666666,2.954125,4.275985,3.73928,4.3722,1.472642,3.997866666666667,2.66164,4.04247,2.3599099999999997,2.56956,2.40884,1.4416633333333333,3.88722,6.727156666666667,2.848235,3.77644,4.08572,2.5517,3.2786100000000005,3.5338333333333334,3.651415,4.61463,0.32882085585585585,0.32882085585585585,4.62262,5.06465,4.770525,3.11644,5.33965,4.29505,0.6594253846153847,4.544795,4.696305,3.660715,6.3307,4.96762,7.50962,14.027581666666666,12.63884576923077,4.46161,4.425685,2.542456666666667,0.6013307692307692,2.5208133333333334,5.2257,1.3264433333333334,4.04334,3.5953666666666666,2.81846,2.1751400000000003,1.9151999999999998,4.8599499999999995,4.170215,9.007266547619048,4.95108,4.09063,7.127944015151515,3.39283,3.0397866666666666,1.444815,5.2336116666666666,1.950315,2.449196666666667,2.8321799999999997,0.284199375,3.08954,3.237515,4.6600649999999995,0.9143000000000001,1.2564516666666667,4.05472,0.6146429999999999,0.6146429999999999,3.0149583333333334,2.97635,3.3313633333333335,4.94059,4.310555,5.46555,3.92927,4.23997,2.985665,3.025596666666667,2.712126666666667,0.8369166666666666,3.067743333333333,2.894645,3.244205,6.93784,2.751945,9.178025,2.991775,5.4925,2.978885,2.306865,2.59785,2.97325,1.87942,2.280005,1.8662275,3.56281,2.4985625,4.00009,2.921665,4.29032,4.29032,2.8572908333333333,2.8572908333333333,8.722880333333332,2.5877466666666664,0.8252140000000001,2.57836,2.5844400000000003,2.5504666666666664,4.00009,1.9531939999999999,1.953266,1.5777240000000001,4.084785,4.081415,1.7866275,4.37087,4.11054,6.118075555555556,6.528856666666666,2.310846666666667,4.003775,6.05964,3.768755,3.24085,2.3173666666666666,3.495865,3.5086942424242427,4.313145,5.185325000000001,7.679487333333334,3.6157674999999996,3.273755,1.1774666666666667,4.42549,3.8912086666666665,3.854815,3.805239166666667,4.33918,2.40534,2.4815,6.42885,2.931635,1.282306,5.47831,3.703235,2.5827433333333336,5.05695,2.5827433333333336,2.80551,3.83928,4.692805,1.0354571428571429,3.7341022222222224,4.351815,3.425435,1.30995,1.6676525,4.254215,3.64762,2.637995,6.1684616666666665,4.01289,3.636425,4.475025,4.3513025,1.296155,4.02555,2.562615,3.573095,3.89605,3.42761,4.814755,3.321455,3.94034,4.844875,2.116395,1.88014,3.6312333333333338,3.7134,3.4463666666666666,2.87857,3.4546333333333332,2.9890066666666666,5.31285,3.29981,3.53456,2.911595,1.8134766666666666,3.3947333333333334,1.7457533333333333,3.04103,3.20633,3.01103,0.69598125,2.168975,1.8044166666666666,3.26853,1.892516,3.437266,3.739525,1.35422,3.1526425,4.583625,0.8918139999999999,1.2608633333333332,3.140635,3.832895,3.291255,1.977155,1.62606,3.625195,2.5056408333333335,1.7344166666666665,3.089925,1.914135,1.209506,1.382515,6.457155,3.111245,2.15371,2.402635,2.4493325,3.774085,0.89343,0.34744071428571427,0.8018371428571429,4.7262,2.108186857142857,4.93594,1.9967775,1.8883844285714286,3.2023484285714288,1.313964,1.0751224285714285,0.729996,0.57625,2.747990833333333,6.6631,3.027605,3.43635,0.3355903571428572,3.74771,18.059560714285716,3.0119,7.438302861888111,1.08154875,1.08154875,1.08154875,1.08154875,5.7821225,3.9491,3.75248,2.0602899999999997,2.723005,4.180155,4.94418,3.462595,3.464395,4.348535,4.25812,3.98448,3.7857786666666664,3.808555,5.0406,4.09201,4.578895,3.377765,4.37744,2.6033,3.35523,3.307305,3.614645,3.698935,4.35082,3.2404100000000002,2.372285,2.55924,4.016605,1.2714171428571428,3.909105,2.5482833333333335,3.4096913333333334,4.12711,4.357505,3.140175,2.89112,4.753595,3.748255,3.308475,4.90181,4.71547,3.616875,3.75896,1.7021540000000002,1.7021540000000002,1.9428625,4.73179,3.46442,5.427488,5.11685,3.495825,6.53335,4.39372,2.148915,9.01201,5.0118,6.141349999999999,4.401805,2.8821133333333333,3.476585,0.26908206896551723,0.83707,3.380570666666667,3.60071,4.774735,2.929346666666667,5.355923333333334,4.95829,0.5785107142857143,2.901475,0.539354,1.7463047619047618,3.25932,2.47992,3.767455,3.743485,3.20987,3.472885,3.43466,3.713075,3.413495,3.733065,3.55014,2.560725,1.7463047619047618,2.825945,2.4482675,3.721635,2.108745,4.04742,3.596795,1.7469825,4.52173,3.2936,1.3079633333333334,5.19805,4.802355,4.398235,2.8011766666666666,3.2209299999999996,4.105485,1.9685733333333333,1.396286,2.42286,2.7169133333333337,2.734586666666667,2.06115,5.0293,3.41542,5.149016666666667,3.865876428571428,4.92731,3.68903,1.5612819999999998,5.34155,4.75641,5.33415,4.223585,6.92244,1.6257725,5.0298,4.025065,3.155785,1.806405,1.6973466666666666,4.014045,4.454455,2.4374366666666667,2.7168566666666667,3.460755,3.460755,2.7044566666666667,3.03261,3.392125,4.054475,3.695385,0.8396,3.300295,4.451835,4.875167222222222,3.00195,3.09946,1.7670375,2.81011,3.60559,2.20551,4.357265,3.19106,4.433335,1.7284633333333332,1.0230818181818182,6.40394,3.742275,2.9056800000000003,2.97907,1.6899339999999998,30.07233401190476,4.08553,3.4815,5.3855,4.447235,0.8887083333333333,7.2475925,2.0344325,5.3495,1.4441833333333334,5.1523,5.164316666666666,3.72682,3.282975,1.996615,3.6516,4.81175,2.0644425,2.7432700000000003,3.536705,4.765055,2.587535,6.14925,2.252635,6.00205,1.102135,4.45262,3.63063,3.9499,4.74927,3.064175,2.4326333333333334,4.305915,4.686915,3.823505,3.823505,6.3209,1.79822,4.4176,7.617483333333333,3.51241,4.291635,3.246835,4.51265,3.52483,4.178385,1.362985,2.28928,4.40166,4.48654,5.45555,4.54358,2.737945,10.170133333333334,2.722185,3.73906,1.6814285714285713,3.647995,2.36058,2.759646666666667,2.3669174999999996,1.3776066666666666,2.619336666666667,0.9880828571428572,1.1252,1.1252,1.1252,1.8406566666666666,0.5865475,3.997755,1.21971,2.7343266666666666,0.9606883333333333,1.79517,2.6998466666666663,2.1085433333333334,0.79256,1.7611166666666669,1.6009,2.431416666666667,1.70487,1.70487,1.6601299999999999,1.7410133333333333,1.12406,1.9692666666666667,1.5889933333333335,1.29348,2.01412,2.01858,5.9044,1.6452725,5.29,17.82674625,6.947355,3.498215,3.558158333333333,3.365266666666667,2.8079966666666665,2.79062,2.8312000000000004,0.6454533333333333,1.01002,1.01002,0.6609875,2.3021266666666667,3.96366,3.793375,1.534928,5.09575,3.75058,2.51129,3.65659,4.54953,4.148785,4.72635,3.5432666666666663,3.19015,3.428405,5.6984,3.2225333333333332,4.808925,0.5276,0.5276,2.34905,3.089935,4.833845,3.517855,4.09221,4.36431,7.626438,7.317449999999999,3.59683,2.35883,4.761265,3.493865,2.520696666666667,2.438895,3.210795,1.27658,3.72066,2.787975,1.7102725,3.22982,3.66166,2.0671975,5.185325000000001,1.64449,3.6702,3.687345,1.0145,3.5343999999999998,2.980893333333333,4.302925,1.1317716666666666,1.77127,2.4171375,2.0998875,1.7029175,2.3534475,2.0302875,1.9992125,4.49538,4.33411,2.47985,1.749265,1.5208866666666667,3.5586333333333333,2.0549466666666665,2.700925,4.241945,7.071,2.179396666666667,3.089885,3.533325,3.760105,2.43617,4.911165,4.397825,3.117185,1.3862625,4.49303,2.291095,2.9050166666666666,2.57207,3.90419,4.951475,5.17125,2.3395566666666667,2.6983099999999998,2.9194066666666667,3.4158333333333335,1.9040833333333333,1.4377119999999999,5.394,3.4194666666666667,2.333016727272727,2.91297,2.934946666666667,2.3847366666666665,3.07727,3.1680466666666667,3.4334333333333333,5.2876,4.02394,3.0511766666666666,5.062,3.39559,2.345425,3.75623,4.01016,3.82457,5.945004,1.91724,3.97864,2.303195,3.872605,3.738475,0.57709125,2.324745,2.267475,3.444025,2.822885,2.17845,2.78106,0.599065,2.8577733333333337,4.51232,2.346885,4.68063,2.4126566666666664,4.06377,1.8963,4.49031,4.37237,1.896154,2.82953,6.834200000000001,3.905925,4.160235,4.852955,7.1613114772727275,3.976185,4.382125,2.092425,4.347115,3.009605,1.9280633333333332,1.9859125,2.91634,1.0245128571428572,2.36484,2.52998,2.6947266666666665,3.4781333333333335,1.821532,3.309255,1.9408066666666668,5.04185,5.84835,1.05545,1.80042,2.6702600000000003,2.92751,2.0580366666666667,1.138855,5.67526,2.24908,2.6907,3.22704,2.7418866666666664,2.9769633333333334,3.24338,2.2979966666666667,2.8832566666666666,2.2630766666666666,4.233555,3.77978,4.030885,3.295256666666667,3.2519266666666664,0.834881,1.8787633333333333,2.210985,2.03387,2.6502766666666666,1.1656016666666666,2.78294,3.04583,3.26727,2.0774833333333333,3.464455,3.498385,5.4044,3.164955,0.621735,1.976024,2.7043,3.3070566666666665,0.7414236363636363,2.9473766666666665,3.37376,3.1367233333333338,2.71335,3.2242033333333335,3.828665,3.8048333333333333,3.1147833333333335,1.88026,5.6526,4.77607,4.93496,5.6095,5.4587,1.8248633333333333,3.564805,3.7277,3.3534666666666664,2.7382899999999997,2.5829400000000002,3.9492,3.4586333333333332,2.728946666666667,13.524465000000001,4.24678,1.07756,3.0361499999999997,1.508088,3.031803333333333,3.03319,2.13128,5.838798333333333,6.403920666666666,2.2788833333333334,0.8658939999999999,4.381275,3.450366666666667,3.034305,5.2602,5.5615,5.75765,4.738915,3.577,2.0550575,6.529145,1.1774666666666667,6.21288,4.58927,2.366423333333333,3.957475,6.829646666666667,5.7272,2.2454233333333335,1.4317116666666667,2.18059,6.603756666666666,1.5212375,2.9539066666666667,2.5521483333333332,4.373864722222222,5.96625,4.281705,6.43015,3.77386,5.11315,3.83941,8.91868,4.782825,5.8504,2.470235,2.3926225,11.417116666666667,3.39831,2.589965,2.557986666666667,1.6134233333333334,2.964776666666667,2.9733533333333333,0.7064025,1.042826,1.106747142857143,3.28296,6.851946666666667,2.9484993333333334,1.4088266666666664,4.357535,3.803945,0.5816749999999999,4.35792,3.70817,4.572855,3.741615,3.102425,2.654996666666667,4.282445,10.067465,1.86693,3.951785,4.048105,4.280385,3.761325,0.8239191666666666,3.757,3.8102666666666667,1.68285,2.507073333333333,2.3561,2.6903233333333336,2.3451733333333333,2.21409,2.291085,5.792043571428572,4.74037,3.80546,4.598663333333333,1.6359733333333333,2.324875,4.695225,4.40592,4.81245,4.12792,4.57088,4.691665,1.7021540000000002,3.85463,7.279386666666667,1.29548,1.6213466666666667,2.5487366666666667,2.419376666666667,2.846386666666667,4.9195605,0.7663785714285715,2.769685,3.57441,5.94855,4.567725,2.2745966666666666,2.9608399999999997,2.018895,0.551626875,2.301845,2.9851,7.809754999999999,4.478135,4.160035,0.8797219999999999,4.622033333333333,9.046083083333333,10.400641666666667,3.432225,1.112255,3.589245,3.57199,2.6141633333333334,5.18071,4.632335,3.98069,1.8935175,3.9092000000000002,2.24957,2.5864833333333332,0.8025454545454545,0.390448,2.681155,3.41553,1.9197860000000002,3.401735,3.13617,4.58497,5.06785,1.56204,2.97959,2.041535,2.041535,2.232825,3.035375,6.0203,2.71381,2.808336666666667,3.192693333333333,3.4148,4.510255,4.008125,4.036325,4.17104,4.021615,4.04244,6.9515,8.06438,1.92715,2.33929,3.0265633333333333,0.9216483333333333,0.7231008333333334,4.01482,2.39965,5.22425,2.9611699999999996,3.0592366666666666,1.8253920000000001,1.5704025,3.8604,4.218495,4.4464,1.7913333333333332,1.3392566666666665,2.7264700000000004,2.0177333333333336,2.66666,1.1106328571428572,1.1106328571428572,2.8083299999999998,4.68667,2.87471,3.094685,3.455515,2.073885,19.37814696969697,3.78226,5.1300975,3.825895,4.01657,3.807595,3.47856,5.4179,6.1720675,0.8132683333333333,0.8132683333333333,0.8132683333333333,2.815106666666667,1.7182857142857144,3.332926666666667,4.3881,4.29241,3.07329,4.38381,4.408835,0.8283944444444444,2.20348,2.4264966666666665,5.927798666666666,3.296712,4.0921986666666665,4.937075,1.9184,2.007773333333333,2.35452,0.5250075,0.8293380000000001,1.995125,2.17915,3.028555,13.258871666666666,2.6457566666666668,5.0891,0.7337,9.8711875,5.69985,3.858435,3.958065,2.5778,5.225,2.5778,2.75882,3.67763,3.9317,3.232375,3.88557,4.14204,3.419925,6.0206,6.807584,1.7571833333333335,2.397884,2.698175,26.884872736808237,1.525058,6.46545,3.922942,4.113295,4.44862,4.728535,2.88543,2.836075,2.381695,6.3569,7.00685,4.534875,4.66311,4.03933,1.814265,1.8151,4.028655,0.4785492307692308,0.4785492307692308,0.4785492307692308,0.4785492307692308,4.277025,3.206335,1.0141066666666667,1.8224366666666667,1.1586888888888889,4.3743,2.546816666666667,2.2670075,7.397631666666667,3.1809333333333334,0.17601172413793104,20.449928166666666,4.7000866666666665,1.783614,1.2962575714285713,2.10696,1.9380220000000001,2.4285475,4.583655,3.098205,3.78186,4.032895,2.3930933333333333,7.2232075,2.70768,2.0078,3.77664,5.6461,8.501526666666667,4.210425,0.30216829268292683,3.667035,4.015475,2.80348,1.9295975,2.8667366666666667,1.6288816666666666,1.6288816666666666,4.166745,5.8663975,11.425415000000001,9.20375,0.6358999999999999,2.55994,3.903195,3.785355,4.88961,4.446705,1.74912,1.74912,3.412855,4.43876,2.7740666666666667,4.09882,4.88567,5.8868,5.87602,2.1033999999999997,4.8012,4.395165,2.676985,2.99414,3.0474033333333335,4.709895,4.139785,5.04145,4.031325,3.932625,3.461575,4.402565,4.37341,5.60115,2.500786666666667,3.24257,1.08107,4.1585,4.163005,3.62118,1.64694,1.82047,3.2005133333333333,2.8624733333333334,2.2871,4.412793333333333,1.6130833333333332,2.297305,3.4044666666666665,2.6915866666666663,2.36443,2.716896666666667,4.056433333333334,3.0734133333333333,3.7965666666666666,3.6826283333333336,2.0088666666666666,2.8363833333333335,2.0094766666666666,4.986415,3.181126666666667,41.74134575,2.104906727272727,2.104906727272727,2.621566666666667,2.6011333333333333,2.177043333333333,1.8541699999999999,2.9017666666666666,1.9703433333333333,0.7625323076923076,4.79556,7.3535875,4.25755,3.904175,5.1758,1.9007833333333333,4.68803,1.837472,5.3837,4.86527,5.7406,4.097415,1.7293225,4.266495,5.11655,4.78106,5.04635,5.4236,4.04073,3.14858,3.3299533333333335,2.8133666666666666,2.1050125,1.85004,4.40177,2.4702866666666665,3.902805,3.902805,2.2883999999999998,1.5621033333333332,2.3855066666666667,2.52755,2.5221133333333334,5.13757,2.60834,1.1828233333333333,1.1828233333333333,2.7521166666666663,1.98658,2.6307633333333333,2.7299433333333334,2.6065633333333333,2.516436666666667,2.3453833333333334,2.23032625,3.0828362499999997,1.68350625,0.85251,61.118469125,2.332408,3.002463333333333,2.2506779999999997,0.8684559999999999,3.618768666666667,1.619252,1.619252,3.0728833333333334,3.11227,0.83099625,2.6473633333333333,5.25338,3.6460666666666666,2.3617133333333333,2.9167633333333334,1.9989266666666667,2.7224506666666666,0.288855,2.7759933333333335,0.758134,2.575023333333333,1.354968,1.354968,3.1275333333333335,1.51775,2.4721733333333336,1.4514746666666667,3.3981333333333335,1.4514746666666667,2.1291733333333336,2.5498066666666666,3.0399233333333338,1.352586,1.352586,2.9319699999999997,1.43412,2.82762,2.23831,4.48191,4.203175,12.469420416666665,7.082535,3.44098,2.79193,4.32006,5.1842,5.55515,2.6973125000000002,4.410655,3.9576,2.4315366666666667,4.254165,3.2576466666666666,2.8585233333333337,4.5201,2.2408233333333336,1.0257628571428572,3.936082916666666,2.9013766666666663,3.01827,0.7961085714285714,2.585995,3.486685,4.12728,4.458575,6.6098,2.87325,1.8672440000000001,4.103655,4.44468,2.39552,2.635765,2.061646666666667,2.1827413333333334,0.9071680000000001,5.24305,4.395695,3.9586,3.813435,3.1454866666666668,4.727285,4.896115,2.8890933333333333,1.7805166666666665,0.5344180000000001,13.972826666666666,0.5188881818181819,0.5188881818181819,0.5188881818181819,3.045553333333333,3.9499666666666666,0.5188881818181819,7.642205,4.39258,0.729329,0.729329,3.2986033333333338,3.203555,3.196625,4.32693,4.74564,4.2562605,2.2456525,4.7987053333333325,3.396495,3.4815925,4.88282,2.8090662500000003,2.16669,2.37309,2.5972,1.6491175,3.39834,3.021323333333333,2.1856625,1.91076,2.0037025,1.7703833333333332,1.670255,2.53765,1.062611111111111,2.476015,0.6127414285714285,4.817405,1.7923425,0.7584650000000001,2.01611,7.945550000000001,2.688615,2.0738965,3.2735149999999997,7.38069,2.52979,4.252335,3.01167,6.10878,3.4925,3.92154,3.93583,4.73704,2.827526666666667,3.9599833333333336,1.13079,4.13849,2.5053966666666665,2.677906666666667,2.681315,2.422445,2.14316,1.230515,5.42895,0.9154727272727272,4.932495,5.3214,4.943455,5.7183,3.6421666666666668,2.4593833333333333,1.995506,2.65374,2.706606666666667,2.555775,3.8855,2.740925,3.891605,1.825432,39.764266706349204,4.831905,2.4424366666666666,2.5888133333333334,2.95729,1.5473766666666666,5.791566666666666,3.981445,2.43135,3.15209,2.24254,1.6675375,5.40995,0.7807285714285713,4.589636428571429,1.3068085714285715,3.4248,3.28208,2.655186666666667,1.3920625,4.601523333333333,1.671916,1.671916,2.4659333333333335,2.7349750000000004,3.4997333333333334,3.5528333333333335,1.4410433333333332,2.909546666666667,2.75281,6.364194666666667,2.9426966666666665,3.8339600000000003,1.3153599999999999,1.4372,2.816456666666667,0.9360139999999999,5.276633333333333,3.3918,2.9076866666666668,3.5441000000000003,2.6007433333333334,2.8070299999999997,3.1002566666666667,1.7758200000000002,2.4493325,2.59616,3.516166666666667,2.4956733333333334,3.488566666666667,2.7890200000000003,0.5901833333333334,9.62293217948718,2.7442733333333336,5.3227,5.1031,2.79848,2.9705399999999997,1.37297,2.1915133333333334,2.142475,1.37297,4.17374,0.469270625,0.469270625,1.1200225,1.1200225,0.8423225,0.8423225,2.721515,3.092075,2.46008,1.3862,1.55495,3.70683,2.97048,4.5642,5.13475,2.02102,4.346995,2.37569,4.759765555555556,1.600935,1.600935,1.745365,1.72435,3.5627291666666667,2.063735,4.093685,1.5036966666666667,2.4136075,0.5690776923076923,1.1639471428571428,2.1579075,1.9979875,1.9147975,1.489035,4.203505,4.045715,2.29392,2.6875066666666663,1.3885800000000001,0.7026958333333333,2.1915666666666667,3.709705,2.498676666666667,4.53527,5.0852,4.65645,4.08534,7.0364,1.5628466666666665,6.1602049999999995,1.745185,4.64161,4.580875,5.7949150000000005,3.1607966666666667,2.46076,1.795775,1.93916,1.93916,2.483715,2.483715,4.32253,5.64315,0.9128700000000001,3.93053,3.167895,3.50704,2.692793333333333,1.4282325,2.8845266666666665,4.264875,4.194715,1.814838,6.63225,5.17295,1.82927,1.302325,3.95308,4.199213333333333,3.542015,3.63893,3.859575,0.6648357142857143,3.2815499999999997,3.05219,2.681343333333333,2.9985433333333336,2.3981600000000003,3.7029,1.5778857142857141,1.5778857142857141,1.5778857142857141,3.0469266666666663,3.2234966666666662,2.9241533333333334,3.4085091428571426,2.202785,1.2516157142857143,3.101433333333333,3.1730199999999997,1.3251757142857143,2.6435400000000002,2.694976666666667,1.2211614285714287,2.5431233333333334,2.9124666666666665,2.9461766666666667,2.5924066666666667,2.4752966666666665,2.110605,3.1847999999999996,4.6924280000000005,4.137435,0.9366009999999999,1.257266,0.555883,3.6629,8.71927,2.897873333333333,3.243075,2.747306666666667,4.360900833333333,1.9317675,7.57102,6.639616666666666,2.753023333333333,2.242361142857143,4.09263,4.519315,1.603472,1.20678,1.286078,2.072615,10.499046666666667,2.7233,2.88601,2.949447666666667,4.004375,2.1951300000000002,1.10766625,5.18205,1.0803116666666666,3.3655123076923075,4.153915,3.3524,3.0369333333333333,3.32933,4.95791,1.1901016666666666,2.06033,1.8498446666666668,1.8498446666666668,3.840475,5.38405,8.0357,4.023325,3.408025,4.48709,1.7695,2.3659691666666665,4.587875,4.142785,3.932475,1.6297183333333332,2.8746766666666663,3.61314,4.0505,2.3675375,3.982815,3.74949,3.671365,4.17077,4.14981,3.874205,5.51745,3.31381,2.3138633333333334,4.46697,2.986805,3.965375,1.96112,2.580445,2.619355,5.75595,2.58517,3.299703863636364,1.68379,2.51674,3.090385,2.175585,2.10164,0.7921083333333333,0.7921083333333333,1.783665,4.492089696969697,4.137975,2.8717400000000004,4.157515,3.332038333333333,2.5038774285714283,0.95143625,2.698435,1.59049,4.120385,4.20324,0.9218783333333334,1.888365,3.959365,3.000735,1.617455,1.61184,5.165272857142857,0.90999,2.807945,3.245165,2.866345,2.504845,2.820023,2.072875,0.99618,2.89921,3.09716,3.428915,1.3668066666666665,1.5338466666666666,1.74901,4.257085,2.29833,4.17211,4.685715,4.69344,5.9019,5.2517,3.976705,6.33023,3.952170476190476,0.7909254545454545,2.945175,4.11263,4.030245,0.4800090909090909,0.933762,3.10708,4.20204,4.764465,4.02643,3.4161464285714285,2.779195,4.457405,1.77085,2.3794,4.346375,4.1330775,3.14696,2.67266,3.851725,4.461605,2.80351,4.8121125,0.8990199999999999,3.33332,2.5299,4.12199,4.358705,4.64291,2.13844,2.58021,3.027975,2.00406,4.81608,3.30383,1.363222857142857,2.44306,3.89688,1.438736,5.801695,1.817288,2.6683866666666667,13.71346351034638,3.037573333333333,1.49334,1.6247266666666667,2.0815433333333333,5.6564483333333335,1.7024260000000002,5.61415,0.7001953846153846,3.0225500000000003,4.308365,7.58575,2.605163333333333,2.8682200000000004,2.8682200000000004,4.91405,4.240845,3.658465,3.481975,4.796885,5.2763,2.471545,3.273433333333333,4.5512,1.2392,2.7853266666666667,4.40245,3.91256,3.30907,2.48482,3.46305,3.632235,6.615925,6.145592499999999,0.647271,4.01877,3.332375,3.4984,4.379935,4.124525,4.05639,1.499892,4.727165,2.418345,2.86559,4.276205,4.522805,4.5636,0.9224627857142856,2.506466666666667,8.117160333333334,1.4759216666666666,2.1020115584415584,2.1291225,3.973325,3.568065,3.444805,0.7155554545454546,2.4853225,1.693025,2.1788675,4.44186,4.989582666666666,2.748216,8.83052,2.24262,2.7021333333333337,1.0685499999999999,4.58928,5.42765,2.113475,5.688035,2.825255,3.20625,5.61055,4.515295,4.78964,2.133055,1.6145075,1.6145075,2.625955,3.32286,5.430878333333333,1.520205,6.486905,1.4950533333333331,3.639015,1.3051766666666667,8.882043666666666,4.73792,2.73,4.651535,4.356745,3.92939,1.14948,2.02895,3.6120666666666668,3.1561,3.485,3.8277666666666668,3.92571,2.92762,3.16168,3.465405,1.5650575,2.5983633333333334,2.0119866666666666,2.967226666666667,2.0296133333333333,5.177181666666667,3.27942,1.7969566666666665,2.7222633333333337,3.36601,3.46585,6.29015,6.01405,3.068585,3.630415,2.90019,3.10358,2.79981,1.19132,0.983714,6.504405,3.114935,5.83625,4.71754,6.3047,3.517265,3.0408000000000004,6.57935,2.62315,0.44589666666666666,5.49905,3.071785,3.686035,3.1027733333333334,1.3671828571428573,4.8225,1.074242,4.602825,0.91547375,1.2355466666666668,2.87204,2.5090600000000003,2.618753285714286,3.610665,5.1711,5.987003333333334,5.987003333333334,5.08031,5.08031,4.7436,2.8937666666666666,4.58016,1.01119875,6.14695,3.72682,3.578666666666667,4.07611,3.792145,4.742125,1.94733,4.448665,3.156198,2.75954,4.30335,2.74334,4.76242,5.50835,3.62081,3.201035,4.78653,3.907665,5.66875,3.03728,2.867853333333333,6.09825,4.088045,3.0082299999999997,6.304688333333333,1.6074400000000002,2.2229725,4.54595,4.970615,4.989325,3.886575,2.0361469999999997,2.0361469999999997,13.097489194444446,11.2667,4.92079,3.72959,2.8088176923076924,4.40346,4.362925,2.5325266666666666,3.3323466666666666,2.921595,3.9696,3.594,5.04065,2.26432,7.944955,2.578615,2.094905,5.4204,2.34162,4.9433,4.335375,4.53997,0.7828522222222223,3.12634,3.84662,0.886158,2.88228,3.63022,1.4914999999999998,1.8555866666666667,2.9686966666666668,2.712756666666667,2.31306,3.2225699999999997,2.1312233333333332,0.3824821428571429,2.7040933333333332,2.67693,2.84084,3.126303333333333,1.6228459999999998,2.921393333333333,7.105861666666668,4.57097,2.4345066666666666,2.0308733333333335,2.6240633333333334,3.80248,2.448965,3.6729135,18.6235125,5.30305,3.2114314999999998,5.2524,3.8272,5.537438333333333,1.6089533333333332,6.00885,1.5088549999999998,4.46542,4.434235,5.2607,5.3461,0.9628114736842105,6.3165,2.52685,4.7553,2.84773,4.369625,4.22471,2.94076,2.1428533333333335,1.556566,1.9716575,4.423235,4.67769,2.376565,1.67234,2.9219000000000004,4.130185,2.9179600000000003,6.19455,2.2808975,3.959755,4.528065,3.912,4.107685,3.16225,3.97181,4.48555,3.823855,2.702863333333333,2.702863333333333,5.932094444444444,1.9793666666666667,2.3870066666666667,3.82764,1.7337900000000002,7.35646,3.633905,4.249803333333333,4.2927,4.303515,1.926284,4.320705,5.18765,3.835105,2.073305,3.664245,3.48089,1.08013,1.30483,1.2540533333333335,0.7362066666666666,1.5944233333333333,0.8853366666666668,4.55309,0.9880800000000001,2.6731200000000004,1.59337,1.611285,0.9669316666666666,2.07867,2.4062225,1.5547075,3.2687500000000003,2.7857966666666667,4.839236666666666,1.5954899999999999,2.4296125,3.3107333333333333,2.9362833333333334,2.3055,4.4456675,4.4992,5.0812566666666665,19.968957666666668,2.5724,2.2382875,0.6209723076923077,0.641699,4.2803249999999995,1.989574,4.00838,4.94837,7.146267666666666,3.834635,3.72863,4.145135,2.934893333333333,3.2869233333333336,3.179396666666667,3.7229666666666668,3.5434666666666668,6.30675,3.613115,0.930898,1.15409625,5.03825,3.204413333333333,2.5642633333333333,2.0772533333333336,2.2850466666666667,5.6706,5.0058,2.1545925,1.7823066666666667,3.22599,4.749085,8.680386666666667,5.348244375,4.06942,3.975515,5.30985,4.47241,4.20185,4.68383,3.758115,5.2783,1.47331,5.57445,1.5344857142857145,5.1673,0.75014,4.509865,5.5063,5.82805,6.25045,4.46556,6.0206,5.45515,5.990595000000001,2.02505,1.448257142857143,5.5516,3.55673,6.188375,5.075,5.327892500000001,5.16255,5.9491,1.3089571428571427,4.30939,5.16155,4.0528,4.576815,5.49765,2.536375,4.31375,3.451605,4.248275,0.9979583333333334,1.6144550000000002,1.306694,4.767235,4.20876,3.440515,2.3291066666666667,2.9714766666666663,1.7039900000000001,2.2262,0.41187166666666664,3.490133333333333,1.551654,2.2716633333333336,2.9711,2.310983333333333,3.1504499999999998,2.52915,2.624425,10.535286,3.7647,1.8731238461538462,3.87768,0.8340563636363637,4.53255375,1.12624,1.5807925,1.9792,1.0788375,5.6323186666666665,1.1260509722222223,1.1260509722222223,1.1260509722222223,3.0138,1.729344,5.26665,3.046575,1.3749025,1.496155,1.784255,1.354025,1.716572,5.268853333333333,0.7947433333333334,4.31687,3.90404,3.5887333333333333,0.9998757142857143,2.172061,2.0575225,2.0575225,1.5213283333333332,3.722248333333334,4.10219,4.983865,5.6318,4.13073,5.40065,2.809036666666667,2.0260825,3.125025,5.04745,3.449415,3.936385,1.03504125,4.067928958333333,5.6188,1.844835,4.00994,3.02018,4.66362,4.684645,2.39707,6.78735,6.17825,4.477765,4.24476,4.33861,3.162175,8.23517,4.052485,5.543315,3.39851,2.6497633333333335,4.982,2.6501633333333334,4.78545,4.83991,2.8272,3.270575,3.97987,1.8693733333333336,10.719815,3.76335,3.06755,14.973264880952382,4.052535,1.7321833333333334,2.872113333333333,2.08658,2.417455,4.10773,2.515154236111111,2.696035,2.667095,2.92176,4.190795,6.438745000000001,1.2717166666666666,2.2943325,4.321875,4.188905,4.76925,2.13068,0.559786,4.45893,4.282935,2.173895,1.2484016666666666,4.66173,4.54872,0.8961111111111111,3.96145,12.495546666666666,1.2645682857142857,0.38349428571428573,3.7264,4.362245,1.0982066666666668,3.94381,3.83994,5.68583,1.24496,3.81117,3.826845,3.385855,4.32909,4.25478,4.26567,8.51489,3.27285,3.927355,5.0249,15.992819375,3.6373675,2.79395,1.1884275,2.0311025,1.3145675,2.02702625,1.28921,2.0530175,1.67386,2.05885,2.40971,2.5133,2.11819,5.1905,4.120195,5.78705,3.25328,5.574698333333334,2.5679633333333336,4.912835,3.2899100000000003,1.22195875,3.842115,2.064465,2.788905333333333,4.587295,4.79149,4.77856,4.03039,3.1620933333333334,3.479233333333333,2.4647366666666666,4.447565,3.782305,2.281795,1.92242,3.5753,4.84846,3.038255,2.4228466666666666,11.810466666666667,0.6775066666666666,2.707915,4.730105,2.442791,1.079822,2.882165,7.52786,7.124140000000001,4.439625,3.893665,3.881715,1.9417825,2.223725,2.9287186666666667,2.1483066666666666,3.6841633333333332,4.83612,4.35938,0.5068146666666666,6.12295,3.3924333333333334,3.2560366666666667,3.5211333333333332,6.33875,8.60583075,4.207784500000001,0.98214625,2.2008575,2.27996,3.64043,2.6172,4.10918,4.268725,3.1761199999999996,2.68478,4.12311,4.07911,3.85179,4.0618,1.7737066666666665,3.44883,5.24315,5.5197,3.1311,1.8701775,2.210923333333333,14.978768416666666,0.54349,1.41628,1.41628,2.5172866666666667,4.630918666666666,3.735915,4.379485,2.902155,3.18666,4.103895,3.17272,4.310675,3.17272,3.70053,1.9158033333333335,1.6987766666666666,5.695,2.49866,5.0236,3.29139,2.688375,6.705311666666667,2.04704,4.906035,5.0678,3.829215,3.258215,4.743315,1.9433219999999998,4.96564,3.33803,6.440208333333333,4.985408333333333,2.84135,3.771515,4.0418,2.20449,2.8924733333333332,3.8621,0.41818642857142857,3.2838933333333333,10.280333333333333,3.975865,3.5372,5.01915,3.4279708333333336,3.065415,1.3544714285714285,4.253425,5.50615,3.27191,2.505105,4.949235,3.55291,4.28938,4.46181,2.670075,2.670075,4.212545,2.858265,2.7838813636363637,1.850765,4.6396,4.073755,1.1019385714285714,3.58813,4.59649,2.69576,7.033815,7.8328,1.4962659999999999,4.399715,4.547955,6.5012170000000005,0.666513,7.369596666666666,3.464974166666667,0.6004490909090909,5.13825,5.3713,4.875865,4.16184,4.85329,4.77496,5.07255,3.74518,3.90579,4.43008,4.49741,4.917005,4.501835,3.961815,2.684785,4.15743,2.984575,0.870605,4.304745,2.38978,1.696765,4.143975,4.359085,5.6922,1.0602242857142856,5.004131666666666,2.995875,2.77797,2.057275,1.2275533333333333,11.709875,2.710376666666667,3.0861933333333336,2.168363333333333,3.8137638095238096,5.723206666666666,5.949935,2.65917,2.0140766666666665,2.20812,2.20812,2.20812,1.5258866666666666,3.87261,4.06826,3.22054,4.57203,8.327224999999999,4.245675,1.096108,2.47039,3.857455,5.7136,1.791366,4.54703,2.92974,1.40836,3.6918666666666664,6.387935,6.740155,4.508695,4.052825,3.1202,5.209,4.50727,5.351688333333333,1.947235,1.947235,3.919635,3.96882,2.7735073333333333,2.7735073333333333,4.07455,1.1308,5.0008,3.36668,4.301275,4.125975,4.59056,3.115686666666667,1.001587142857143,4.346265,4.7171,4.04517,4.588225,4.804965,4.9091,4.479275,1.9635675,1.520225,3.398,3.75956,3.37288,4.470205,2.140395,2.887345,5.109,2.758185,5.05075,7.05894,2.2703258333333336,2.985765,4.057359523809524,5.044711666666666,1.7319375,2.1454809523809524,1.0244666666666666,2.1454809523809524,1.8660866666666667,1.8660866666666667,1.5142039999999999,4.594825,3.24613,3.57014,2.44025,3.89668,1.5726466666666665,5.35265,3.067325,1.763145,2.7193666666666663,3.61981,3.713705,6.242943,4.903785,1.195116,0.8366816666666667,3.60014,6.958641666666667,2.475353333333333,3.61149,3.523355,3.523355,2.331855,3.394255,3.268945,1.391991948051948,3.0543566666666666,3.205225,2.701455,4.363325,4.0196175,1.7476675,3.685795,4.381715,4.43113,5.09745,4.47031,1.7093175,2.22681,1.3585433333333334,2.197515,3.547795,1.8565975,4.27859,3.2631200000000002,3.189445,4.194535,4.75901,1.65501,0.912632,1.7380833333333332,1.4187575,1.1651,5.00825,4.03297,1.08107,0.22154391304347826,0.22154391304347826,0.22154391304347826,3.48215,6.354299999999999,4.412795,5.14815,4.530155,4.84049,4.66794,4.473355,2.889915,3.8168,1.672655,4.890105,4.282245,3.99673,4.33505,4.1145,0.7781963636363636,0.7781963636363636,0.7781963636363636,0.7781963636363636,0.992812,0.992812,3.938275,3.75059,3.78125,2.80838,2.642975,5.9339,4.48377,5.41925,4.412385,2.9736966666666667,2.5848733333333334,9.63583,1.587002,1.587002,4.384575,5.51305,3.257626666666667,0.469270625,0.469270625,0.469270625,0.469270625,0.469270625,0.469270625,4.66713,4.83254,3.254385,4.464645,2.8630133333333334,2.8630133333333334,2.849895,3.0116686666666665,2.5631766666666667,2.938065,3.403105,6.792796,1.401254,4.85823,3.188435,3.98694,10.076625,2.3369233333333335,2.91572,0.9204142857142857,2.199335,4.514805,3.405705,0.9905425,2.735246666666667,4.285445,5.615,2.51305,4.739952777777778,1.104611111111111,1.9980133333333334,4.77514,4.73941,2.761998,2.2799033333333334,2.0854966666666668,1.3349266666666668,7.433714999999999,3.3884666666666665,2.1284433333333332,3.19015,2.7241999999999997,3.61375,3.9519,2.722103333333333,3.25944,5.9163,1.5347316666666666,4.51159,5.3073,3.810475,4.001705,2.3070233333333334,3.71562,3.84057,3.962045,2.90144,4.60506,4.707955,2.868323333333333,1.9068925,2.9077133333333336,2.8208933333333337,2.856643333333333,0.8092972727272727,2.1324425,8.0988525,0.476093125,2.9741133333333334,1.5531433333333335,2.7182633333333333,3.2108266666666663,2.7431099999999997,1.2150888888888889,1.788402,2.709656666666667,2.16774,3.76978,1.923228,2.59505,1.41186,2.971298,1.93434,1.2137328571428572,2.867793333333333,2.16471,2.4240633333333332,2.6676066666666665,3.0221,3.000916666666667,3.0534766666666666,3.07731,2.8756866666666667,2.8938166666666665,2.81087,2.4785325,1.7117566666666668,2.7839766666666663,2.6406666666666667,1.6116233333333332,3.02121,3.980356190476191,2.8989366666666663,2.6469,3.1641266666666668,3.631266666666667,4.508709166666667,2.8653166666666667,1.743757142857143,1.743757142857143,2.3320525,1.173455,2.3629625,3.2977633333333336,4.499027083333334,2.756375,1.92428,2.03233,2.125115,3.77727,3.15954,3.967795,4.747385,1.8439825,2.2603433333333336,3.973345,1.21849,1.21849,2.70405,0.6913900000000001,3.049745,2.05604,2.05604,2.7894433333333333,2.4750166666666664,2.7997266666666665,2.70185,2.4659525,6.262348333333334,3.9857224999999996,3.9857224999999996,3.565365,3.065765,2.378825,3.05623,2.58961,3.10574,5.3054825,0.49010166666666666,0.705994,4.15834,2.61776,2.90975,6.612805,3.465975,1.657772,4.570233333333333,4.81655,3.920965,4.27117,5.5264,4.683085,13.066409499999999,3.56975,1.6129766666666667,2.87004,3.9327,5.13455,3.32105,4.257695,3.907335,3.726015,3.381745,2.95185,3.40038,2.7065533333333334,2.4663866666666667,2.4663866666666667,4.053405,2.84854,3.21679,3.351635,2.36761,2.635415,2.0653025,1.951945,2.0008225,1.9433225,1.7779225,3.6027055,3.37796,2.81028,7.1110575,3.37852,2.3522466666666664,1.7027166666666667,3.61204,4.078435,3.64569,3.0397235416666666,3.530195,3.301295,4.469285,3.707355,3.98368,4.09285,3.3357289999999997,3.644195,0.6621916666666666,0.6621916666666666,0.6621916666666666,3.472705,2.3657,5.4702,2.5174,3.806735,6.980545185185186,2.7036233333333333,0.34701576923076927,5.3682,0.795785,4.350470952380952,1.899275,3.61215,1.831245,4.693025,5.64408,4.11119,3.751985,2.6605633333333336,2.6592766666666665,1.4952066666666666,2.4755766666666665,0.42727315789473685,0.5733123529411764,2.677486666666667,1.3926833333333333,2.065785,3.978705,3.04556,5.1122,2.8851266666666664,2.9851083333333333,3.50633,5.54203,1.7763075,1.0040099999999998,2.453755,3.358848,1.2426695454545456,5.36875,3.915495,3.307345,2.6536433333333336,4.30406,2.83581,2.5611333333333333,2.5482066666666667,2.3012025,2.3499733333333332,2.216705,3.278726666666667,2.362956666666667,5.326509333333333,2.329785,2.1091166666666665,2.1575166666666665,4.829379333333334,3.3220359999999998,3.3220359999999998,2.4644633333333332,3.88476,2.2967175,3.156035,2.834785,0.601774,4.348135,2.072255,11.406237777777777,7.10054,2.968285,2.973245,3.369655,4.79265,2.973735,3.395545,0.23742999999999997,2.0193775,3.6796666666666664,0.8863833333333333,4.1117,1.3267585714285715,4.87335,3.40013,3.588695,3.602255,3.45654,2.21492,4.53715,3.846125,3.68959,6.88089,4.351045,2.9276199999999997,3.08482,1.636442,1.89569,4.382245,3.979085,3.9697050000000003,2.72154,3.965555,1.363074,3.00887,2.394935,4.09467,10.505975,3.627445,6.752983333333333,3.752205,4.48943,0.996821111111111,4.430977,4.480985,2.6066266666666666,2.7193533333333337,3.1231333333333335,3.18507,2.422606666666667,1.8448066666666667,1.9526899999999998,3.84519,1.585418,2.7635566666666667,4.940315333333333,2.5291033333333335,1.0448246428571428,1.0448246428571428,3.67419,3.2402490000000004,3.2402490000000004,3.4270333333333336,2.94111,3.5498743589743587,3.624233333333333,3.1937599999999997,2.7573899999999996,2.3847466666666666,2.4928933333333334,3.1384733333333332,2.236335,2.6271066666666667,1.709218,5.878248,8.462324666666667,0.5552207692307692,0.5552207692307692,0.5552207692307692,0.6375189510489511,0.6375189510489511,0.5552207692307692,2.9649466666666666,3.0593299999999997,4.219251666666667,1.4285649999999999,1.76058,3.372928,2.42484,2.9720600000000004,2.34064,2.8653433333333336,3.4039,6.765788333333333,3.1372699999999996,2.58889,3.23127,4.387395,2.54098,3.5099,6.07273,2.4615666666666667,3.4069333333333334,1.4103416666666666,1.4103416666666666,2.5885333333333334,0.50269,2.2247533333333336,2.7576666666666667,2.7947166666666665,3.287506666666667,2.3336166666666665,1.58599,2.727456666666667,2.871066666666667,2.35957,4.537115,2.4276103333333334,3.53646,2.661465,4.33931,0.45604300000000003,6.76686,2.9456879999999996,2.9456879999999996,7.5709019444444445,1.7465233333333332,1.7644766666666667,2.8405799999999997,4.177265,2.442883333333333,1.9726766666666666,2.57355,1.402995,3.2919300000000002,1.7977733333333334,3.146918,1.37751,0.27579227272727275,0.27579227272727275,4.69346,3.85324,3.27216,2.8342566666666666,2.888,3.376895,1.2834166666666667,6.14915,3.971305,3.11118,1.868355,1.1572624999999999,2.454905,2.8405799999999997,2.621485,2.20161,5.625579999999999,4.229145,4.633375,3.80902,2.218955,0.6942533333333333,6.55153,2.02296,1.486895,3.528835,4.27673,2.26583,1.73245,4.693635,4.15757,3.1732633333333333,3.0462433333333334,4.787125,4.64399,3.464,2.6014660000000003,2.6014660000000003,4.14889,5.2146,5.60345,6.219506666666667,2.7065566666666663,3.652905,1.299652857142857,2.573075,5.041289333333333,3.85123,1.840336,4.56783,3.641405,3.639155,2.199325,4.212125,4.73077,4.52071,4.915585,2.4594533333333333,2.7466000000000004,3.908466666666667,2.08561,2.691775,2.7469533333333334,2.5545166666666668,0.8859429999999999,2.066815,2.7486533333333334,2.205758,4.27981,5.073,4.548885,3.83862,3.38908,5.1480250000000005,11.381195,4.969735,3.84365,4.49357,4.14129,4.67774,2.6607866666666666,2.9874496666666666,3.673966666666667,1.152005,2.925865,2.95847,4.463005,5.385,4.54187,3.2415000000000003,2.67325,2.319383333333333,4.4695,3.7668975,3.410966666666667,3.7668975,2.44285975,2.3190233333333334,2.4307000000000003,2.1286525,2.68298,1.76989,0.8357816666666666,1.38887,1.9381000000000002,2.0416433333333335,1.7220733333333333,1.3227499999999999,1.6771466666666666,2.7021599999999997,1.5618859999999999,3.0474833333333335,1.2944866666666666,1.6256166666666667,2.704725,3.6882333333333333,2.5153466666666664,2.26058,2.4461633333333332,3.208645,2.155205,2.7835900000000002,3.018456666666667,2.4772233333333333,3.098183333333333,3.1533075000000004,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,0.1467525806451613,4.91853,3.99062,1.0312357142857143,3.1761633333333332,2.6558466666666667,2.8828866666666664,3.662655,3.0880433333333333,4.660415,3.3756019999999998,1.6352060000000002,3.0742733333333336,1.6407216666666666,1.07007375,0.877567,1.495045,0.8849633333333333,0.7863408333333334,1.361896,3.43216,1.6906759999999998,1.5988816666666665,1.7903672222222222,2.2421555555555557,1.3056783333333333,1.5643566666666666,1.4488766666666668,0.9299466666666666,1.2490216666666667,0.7610916666666667,0.908896,3.305465,3.661675,4.237045,4.613315,3.896485,3.0972066666666667,4.41001,3.6926666666666663,1.8946025,3.50757,1.87628,3.57803,2.4979133333333334,0.7800218181818181,4.117855,4.659485,2.1719399999999998,1.2765675,2.99593,3.34426,3.722248333333334,3.0332600000000003,2.790235,0.865985,2.10415,5.105615,3.83202,2.483575,1.560085,3.911235,1.947005,0.6196009090909091,4.74566,4.022815,3.872785,2.469005,1.424578,3.86826,4.679145,2.602863333333333,2.649036666666667,2.523683333333333,2.6600800000000002,2.7748033333333333,2.8817233333333334,3.2119366666666664,1.2367575,2.63105,2.4326333333333334,5.13485,4.145125,3.55884,4.499035,15.75468216919192,4.54249,4.312471333333334,2.79238,3.9653,4.787085,1.570232,2.5214,2.6190933333333333,6.701845,4.2224,4.100235,5.9788,2.6190933333333333,3.841455,2.046875,1.9704166666666667,2.9853199999999998,2.68877,1.1455716666666667,4.26526,3.364795,2.544645,4.29215,2.4656366666666667,3.0740366666666668,3.70192,3.301285,4.34742,3.57208,2.72723,3.54846,2.63276,2.465273333333333,1.24331,1.24331,3.086456666666667,2.436733333333333,0.3356060714285714,4.89833,1.02751,3.337865,3.740485,0.5803258333333333,4.48677,7.753288333333334,1.88014,3.793095,3.679935,2.6587433333333332,3.40672,2.46733,2.957445,3.56917,4.25237,3.12795,3.8925666666666667,0.9678833333333333,11.773145333333334,2.634775,3.371465,5.5895,2.665775,4.048365,7.738475,4.086065,4.06689,3.586005,4.04796,5.296905,1.51719,2.720413333333333,4.451155,3.9019,1.907852,3.89351,3.745505,3.880005,4.02976,4.09525,3.79987,2.54047,3.940605,3.751295,5.0505,3.854205,2.2739066666666665,2.4137166666666667,2.016993333333333,3.1301400000000004,1.3192166666666667,3.5179666666666667,0.8449763636363635,3.16118,3.0593966666666668,2.5620433333333335,1.4049533333333333,4.241385,4.103835,4.293745,1.9161025,4.449685,3.619135,0.7521987692307692,0.34614076923076925,4.527805,5.0492,0.951335,0.34614076923076925,3.619245,0.7521987692307692,0.7521987692307692,0.34614076923076925,5.770160000000001,2.68413,2.4302333333333332,5.26295,3.01501,3.418285,0.7951555555555555,3.31615,3.967975,4.35473,5.2934,2.1861375,0.6945615384615385,4.738455833333333,2.3382,1.449718,2.1451225,1.10121,2.4507233333333334,2.3573333333333335,3.374755,5.06125,2.863493333333333,3.24276,2.7920866666666666,2.3492966666666666,2.96257,4.426265,1.72987,2.04466,4.07135,5.24865,2.1621091666666667,5.0616,2.94716,4.03656,4.257105,3.44288,1.20437,3.20109,6.5805,3.877195,3.67951,5.17765,6.23215,2.525795,3.376265,4.56944,3.17518,3.37502,8.37441,3.79574,4.5028425,2.454285,1.144865,2.42093,1.843875,2.26444,1.870935,4.39255,0.6599071428571428,3.222165,3.81445,1.91632,2.97052,4.91564,3.529175,3.185475,4.363965,5.14225,9.452338833333332,2.72249,2.52817,1.730216,1.6073816666666667,1.2166866666666667,1.3322666666666667,2.856726666666667,2.5833266666666668,2.9806399999999997,4.30980141025641,1.662295,2.3486366666666667,5.27545,5.2193,3.594695,3.555595,3.000975,2.74705,2.06949,2.06567,1.8034466666666666,1.94386,3.552835,3.67828,4.947945,5.2361,3.87121,5.40302625,3.35468,2.59808,6.136997083333334,3.426565,8.69019,4.653400833333333,4.653400833333333,5.57657,1.5785233333333333,1.3282025,1.4563833333333334,0.740503,4.689895,3.9837000000000002,3.3264275000000003,3.3264275000000003,1.9764220000000001,4.43269,4.34701,4.346555,4.304985,2.88537,2.755355,3.90553,3.0555966666666667,5.159876666666667,3.82117,0.7660281818181819,5.1407,5.01145,4.556065,5.0423,3.144265,6.09715,4.386895,0.8637538461538461,4.963855,6.93627,3.26512,5.34675,5.6898,3.554115,2.605985,3.810245,6.22095,2.026355,6.0406,1.87261,4.1833,2.6989,2.008435,0.8990199999999999,3.486275,5.7879,3.442955,3.92447,2.0817200000000002,4.45473,8.132506666666666,3.635775,4.349275,2.50772,2.67966,0.851943,4.82174,1.4486916666666667,3.356868333333333,3.356868333333333,4.338085,2.3350233333333335,2.9467533333333336,4.08136,1.6554975,2.9427733333333332,3.147323333333333,3.3051399999999997,2.81632,3.9392,2.759555,1.877345,3.3674,2.09495,2.838286666666667,2.0410566666666665,2.989853333333333,2.764473333333333,1.3992557142857145,1.6556033333333333,0.42019,1.3124083333333334,0.42019,0.42019,1.6556033333333333,0.42019,3.416066666666667,2.447242,2.447242,2.6819566666666668,4.437105,4.195085,4.33776,5.2359,5.253,3.402915,3.83663,4.116985,1.9917725,2.4410730000000003,2.528636666666667,0.7737927272727273,5.2302,2.9331600000000004,3.00028,5.47365,3.9373825,4.87648,3.379315,2.6725366666666663,3.09861,3.534085,2.515566666666667,2.939776666666667,2.0690833333333334,5.43325,0.8416355555555556,3.78677,1.1967514285714285,3.68937,2.7948633333333333,3.0304599999999997,4.09544,4.190095,3.754885,4.448805,4.18828,3.82727,4.22157,4.29794,2.40424,2.71655,3.23175,4.26386,2.73838,3.257155,2.791885,3.145095,3.0830933333333337,3.56803,4.25046,4.452535,4.16418,68.72707471221834,2.7900458333333336,3.362175,15.832432999999998,4.14311,3.117513333333333,2.18674,1.90731,2.49276,4.357749999999999,3.0321233333333333,4.1195675000000005,6.00225,3.288385,7.395891666666667,5.3356,2.583315,3.392895,3.93641,3.369335,1.93991,1.15507375,4.8173,3.035335,6.049273333333334,3.69905,2.2557066666666667,3.47593,3.607105,4.65241,2.88528,5.8797875,4.70755,3.557335,3.00108,2.4957525,3.591055,6.23065,2.691935,3.597035,4.38560125,1.1963833333333334,2.65161,5.2060775,3.91212,3.14585,3.702035,2.981635,3.899475,3.08789,3.1712,3.10578,4.513125,3.024765,2.863055,4.54848,9.66522,3.26514,4.009615,6.75619,3.040735,2.43926,4.13362125,2.1346233333333333,3.01685,3.05714,3.58771,3.328425,2.99176,3.500535,3.317495,4.174305,3.99557,4.433235,3.065285,3.54587,3.907325,2.5082683333333335,2.5082683333333335,7.0585466666666665,1.77132,3.24633,3.306635,2.384165,4.74777,4.217965,3.09307,3.13561,5.3506,6.4032475,0.6848472727272727,4.06787,2.312385,3.0077166666666666,2.6496233333333334,5.3031,2.93529,2.0191925,1.102135,2.131131515151515,4.295265,4.65532,4.07936,5.8129,5.14985,6.0164,2.426365,1.9717033333333334,3.85791,2.86003,2.94712,1.99875,1.2020533333333334,2.4631766666666666,3.1825733333333335,1.692956,2.4300966666666666,2.4949245714285713,3.4580990384615387,2.78944,4.97053,3.415005,1.3615275,4.88176,3.531265,5.3662,4.71836,5.41165,4.604935,1.9923633333333333,1.4368266666666667,0.6044114285714286,1.5601233333333333,3.51133,2.55585,3.6803566666666665,1.4196166666666665,2.51728,2.288825,3.501325,3.521725,3.865845,4.0647975,1.69042,1.4472075,1.983705,2.164235,1.46649,2.594075,6.458032916666666,4.944515,3.781635,2.96214,7.1692149999999994,4.673505,3.127855,3.152045,3.600455,2.67316,3.9159,2.37277,7.51359,0.9297183333333333,3.091345,6.67265,4.120395,4.449795,6.04075,1.5301866666666666,2.8969400000000003,2.9736433333333334,2.9274533333333337,1.51411,4.061735,8.7057,3.616375,4.89791,4.08571,3.266145,4.665115,0.8648166666666667,2.8677733333333335,5.3509,6.224563333333333,4.873265,5.5431,2.98323,3.5627666666666666,2.5747066666666667,4.820665,4.706715,3.8689111904761906,3.8689111904761906,0.7065928571428571,3.2786866666666667,0.9231,0.6773483333333333,1.68886,3.698566666666667,3.209576,4.533587428571429,2.174323333333333,2.9250314285714287,3.0308514285714283,2.768026666666667,2.9824133333333336,4.634566666666667,3.3583541666666665,1.8125575,1.8125575,3.695275,3.0440766666666668,2.7421133333333336,3.649115,3.20339,0.5473811111111111,3.3449333333333335,2.5031266666666667,2.655953333333333,2.6734299999999998,2.52785,2.4662,3.00578,2.8104600000000004,0.81136,2.6454400000000002,6.44301161904762,2.1002400000000003,7.559023833333334,1.5649739999999999,1.5649739999999999,3.3046116666666667,3.2890833333333336,3.331383333333333,2.6102066666666666,1.705388,1.3399828571428571,3.2692,3.312326666666667,1.6789333333333334,1.5073857142857143,2.8808933333333333,2.68683,2.579686666666667,1.86801,1.9559375,3.22557,2.21131,2.783145,3.302375,1.9228,3.751675,3.32589,6.894195,3.680525,1.6890225,3.23159,2.592585,2.16997,4.128465,2.5325933333333333,2.66854,6.480029999999999,0.8378461538461538,0.6706925,4.672265,1.422458,1.422458,3.570565,2.258145,4.497045,3.23544,1.2873566666666667,2.423438,2.964646666666667,2.4421963333333334,4.934575,3.95798,2.56987,2.4043233333333336,1.5796292857142857,1.5796292857142857,2.34197,3.97078,3.9886666666666666,5.92425,3.10533,5.0444,4.552115,6.84295,4.68687,2.782925,2.850236666666667,2.6708133333333333,2.7226866666666667,0.7487444444444444,0.7487444444444444,0.7487444444444444,3.41346,4.449135,4.105825,1.13699,1.13699,5.32035,6.1994,6.61343,22.186124944444444,11.9783,8.40884,3.38889,5.83535,2.423675,4.670795,2.5402666666666667,3.231833333333333,4.1544,5.578264666666666,2.132065,2.036325,6.81126,2.2459800000000003,2.2459800000000003,6.6853,3.392125,4.27821,1.98787,5.112325666666667,4.96438,4.184315,5.3718,3.65614,1.3747166666666668,6.10715,9.12798,1.3747166666666668,1.98787,2.1428533333333335,0.861468,0.861468,1.770146,2.47304,1.770146,4.694455,5.975,6.36515,8.9261,1.98787,11.476271,6.25785,6.123,2.423675,3.22373,4.681715,8.95924,3.2041825000000004,3.80865,6.23745,3.24091,4.977515,6.2977,4.536105,5.13345,4.90273,2.584305,5.5292,3.888865,4.514145,4.41111,0.80123125,1.4941179999999998,3.03796,5.52355,4.818025,2.5291033333333335,1.871345,3.73249,4.51326,5.68515,5.1842,5.29725,4.58748,4.514685,4.51187,3.71439,2.1455825,4.9522675,1.974055,2.705555,3.7478,1.8024566666666668,4.121455,4.409685,3.82176,3.6136383333333333,2.906695,6.521541666666667,0.9156355555555555,3.56238,2.41404,1.2685014285714284,5.277493,1.3702833333333333,1.5994833333333334,2.81838,2.713778,2.9820233333333337,2.8435466666666667,1.72188,0.7509690909090909,2.2600533333333335,2.746295,4.09273,0.7276869230769231,5.045468333333334,1.6748433333333335,1.202408,3.4362999999999997,1.202408,4.00849,0.9082127272727273,4.549525,3.0192833333333335,2.03671,4.5509520000000006,4.2121595,4.2121595,4.74637,2.4374875,3.132105,2.6454,1.6228459999999998,3.86087,3.81534,2.02169,0.7500325,7.3418269230769235,2.78233,4.00281,4.273615,7.73985,2.4766575,4.255165,3.828075,3.066365,3.97178,5.5241,6.3953425,4.308765,4.584835,5.20155,2.9098699999999997,4.643405,4.15009,4.502185,1.0861188888888889,0.48675857142857143,3.32734,3.3376333333333332,2.8821166666666667,5.47835,3.933475,4.22278,4.39641,4.83429,4.24019,4.24857,1.13242,2.20364,8.261535,2.1100766666666666,1.9752366666666665,3.6005861904761907,11.458769186507936,1.5371025,4.786325,6.3601,4.886555,3.245416666666667,2.0707400000000002,3.307926666666667,3.774495,1.106235,2.9705933333333334,3.34699,0.3160873684210526,2.05593,4.29406,4.42982,2.28631,4.051435,2.97643,5.1202016666666665,1.3277833333333333,0.5543990909090909,3.792418333333334,1.1552614285714287,1.02395625,1.02395625,1.02395625,1.02395625,1.5455633333333332,2.4291233333333335,2.0105566666666665,3.4852000000000003,5.45315,3.4849333333333337,4.97122,3.675285,4.51894,3.781995,4.012155,1.46826,7.344925,2.52087,5.1065,5.3077733333333335,4.929335,5.004555833333333,2.4296366666666667,2.4708666666666668,2.691136666666667,3.307605,1.1718666666666666,4.975998333333333,2.710013333333333,4.9502,2.848003333333333,2.39346,3.870545,3.445415,3.011795,2.51961,2.835103333333333,1.522085,0.43869555555555556,4.322775,3.22249,4.1088,3.306865,3.8532,5.77815,3.859355,0.5568553846153846,3.318288,7.433874666666667,2.0236066666666668,2.09198,5.351428333333333,5.21435,2.675606666666667,4.92214,5.20235,3.75826,4.19669,4.227835,5.12845,5.0522,4.72696,3.65105,5.3299389999999995,1.5424039999999999,1.4819166666666668,4.073375,3.986385,4.03836,3.33367,5.05525,4.756935,3.99422,3.3549,15.55812009168734,1.3698960848047084,1.27265,2.1125727272727275,0.52599,0.4743806666666667,1.59565,0.3703911764705882,1.3590659999999999,3.159936666666667,1.579122,1.0165166666666667,1.0849875,0.45357749999999997,1.0849875,1.0849875,0.45357749999999997,0.8844615384615384,0.66776,2.942715,2.5345566666666666,3.993215,3.935025,2.872526666666667,2.664525,4.066325,4.97748,5.2764,2.853655,4.227625,0.7137578571428572,2.432021333333333,8.3783125,4.061115,6.95129,2.73374,4.05533,2.330275,5.045,4.999775,3.26843,4.57016,3.191345,0.9798133333333333,3.93502,4.903425,0.972742,1.348208,1.5001866666666668,2.393003333333333,2.190656666666667,5.1494,5.46865,2.3194025,2.3194025,3.658552777777778,6.46573,2.1307733333333334,0.6658963636363636,0.7567685714285715,2.0893466666666667,3.3625333333333334,0.9611,0.9611,0.9611,0.3737076923076923,1.0257628571428572,3.008375,6.0586,3.8099666666666665,4.071478333333333,5.3933,0.976802,3.3533333333333335,2.9442633333333332,3.9369333333333336,5.6465,2.47782,7.48215,4.846425,1.08325,3.7347,1.90819,2.610505,2.341666666666667,6.519165000000001,3.2718966666666667,4.697695,2.17866,3.99245,4.26814,4.49444,0.4860216666666667,3.0322899999999997,1.39848,2.507146666666667,4.117824,2.09016,2.7756866666666666,2.351033333333333,2.552233333333333,2.5470266666666666,2.891016666666667,2.8107433333333334,2.9268199999999998,1.443924,2.34792,2.0263533333333332,3.10633,2.6231766666666667,2.135755,1.8051066666666669,1.8249666666666666,1.73348,3.18033,2.321893333333333,2.1625733333333335,2.19785,2.563963333333333,2.552216666666667,0.78554,0.78554,0.78554,2.489786666666667,2.117793333333333,3.17891,2.445866666666667,2.5802133333333335,1.94229,3.922435,3.5508066666666664,1.3421833333333335,2.55872,2.8488733333333336,3.6205833333333333,1.5970571428571427,7.376998333333333,4.644435,3.227725,4.260635,3.63837,1.4408275,0.73045,3.590935,3.92051,3.6205833333333333,3.997735,4.14629,4.68539,2.816516666666667,3.64567,4.142065,0.8218780000000001,2.805425,3.349505,4.856965000000001,4.684545,3.63916,3.261615,2.52433,2.3651966666666664,2.4964566666666665,0.65581,5.324793333333334,2.75095,4.306925,2.73769,3.7219700000000002,3.1824066666666666,2.5143666666666666,2.898341333333333,2.898341333333333,2.6357399999999997,2.09761,2.55599,2.06757,4.07378,1.399318,2.57101,3.9587,4.10275,3.96299,5.0813,3.69827,2.3135225,2.214855,3.34741,3.55713,2.84267,4.820765,2.717265,0.8163814285714286,0.8163814285714286,4.736815,3.902171,0.981546,4.75707,0.981546,3.827125,4.473625,4.787735,3.140615,3.329075,6.376949999999999,4.3112475,5.66355,0.8732928571428572,0.8732928571428572,2.1653,4.495465,1.5429899999999999,2.952475,3.70823,1.1449257142857143,3.790025,3.87566,5.7715,5.7715,1.0026866666666667,5.66255,4.907235,4.81983,5.91935,2.0997175,2.0997175,7.01475,0.9632727272727273,7.2246,1.940625,6.146465,2.80079,2.48854,3.601695,2.17104,2.1948766666666666,2.4383399999999997,3.0614966666666668,2.523940714285714,6.300927,1.796072,4.855995,2.9142166666666665,2.497056666666667,1.80412,2.059975,3.405305,3.66063,3.65043,2.90148,2.35446,2.27951,2.62125,1.088696,3.415225,2.26357,3.194575,2.126896,2.126896,3.092325,2.1664033333333332,3.830465,3.674255,5.3346,7.293098333333333,4.332285,3.58628,6.317265,2.0544533333333335,3.262122222222222,2.2106166666666667,1.4412857142857143,1.8285825,4.48483,1.5920316666666665,0.5078075,0.6601549999999999,4.325035,4.45983,2.82529,0.952178888888889,2.73838,2.5242333333333336,4.768205,1.8009340000000003,1.85888,1.1210444444444443,4.377955,2.46835,4.27933,0.658342,3.940819583333333,4.703835,3.963545,4.60692,3.699965,3.89315,2.80761,5.5219,3.74408,2.295856666666667,2.5444299999999997,6.024395,6.3377300000000005,0.75633,4.05687,4.23225,4.84874,3.5894,3.763733333333333,2.96795,3.2715300000000003,3.8419333333333334,5.870832500000001,2.68683,2.6286535000000004,3.74736,4.14099,2.409555,2.4939975,8.599039999999999,4.77653,1.8737833333333331,4.497445,4.788625,1.8636,4.00354,1.4439625,1.8755714285714284,4.63658,4.152745,5.71355,3.0274433333333337,4.10865,4.72321,6.5735,4.175365,4.621775,3.304815,4.87223,4.119835,4.348245,1.1211083846153846,1.1211083846153846,8.11445,0.962155,2.002847857142857,0.962155,0.6720966666666667,0.43302,2.6749445238095237,2.263925,0.5140028571428571,2.002847857142857,2.05729,3.358735,2.1609416666666665,3.28251,4.343425,7.356851666666667,1.937625,2.24094,2.322885,4.833055,5.50505,1.93956,1.6879825,1.25562,2.9436025,4.133795,2.698035,3.931435,6.3482725,0.4207561111111111,3.798985,0.7030000000000001,2.737276666666667,2.266565,3.778025,1.2688366666666666,4.20077,4.6408325,3.769445,2.748675,3.40926,4.7627025,1.6485475,2.91615,0.5285876923076923,2.3241,2.26092,0.9690160000000001,3.0254999999999996,2.4930333333333334,2.5718566666666667,4.08863,9.16005,3.150844848484849,3.7797,3.49094,7.412325,5.34567,3.26859,4.19419,3.523,5.47665,5.09435,5.6261,4.714245,4.441935,5.83995,2.999913333333333,1.714965,1.8868,2.4519766666666665,4.11852,2.55496,0.24498756756756754,0.24498756756756754,0.24498756756756754,30.335613666666667,0.24498756756756754,3.0696625675675677,0.24498756756756754,0.24498756756756754,0.24498756756756754,3.3053542342342346,4.33678,0.24498756756756754,0.24498756756756754,0.24498756756756754,0.24498756756756754,0.24498756756756754,3.41078,5.39272,3.015935,0.3386153846153846,0.3386153846153846,4.246974,4.024462375000001,3.984614375,3.3737917083333335,3.928937619047619,7.998566666666666,11.250897062548562,6.221523333333334,8.121076666666667,7.635204267857143,2.5885333333333334,5.9997742857142855,4.306953333333333,4.500819775641025,0.3386153846153846,8.165832333333334,6.387641047619048,7.118215,3.030475,8.816619767857143,15.201741220238095,18.436011879578754,57.669530038743936,116.66595469641959,1.4103416666666666,3.4069333333333334,3.281325,3.8510759742599743,0.3386153846153846,1.6998310256410256,8.620713541666667,14.761840226190477,19.895464444444443,48.32155517251462,13.649660101190475,3.079325,0.2809844827586207,0.2809844827586207,4.614013333333332,2.8170566666666663,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,0.2809844827586207,7.93515,0.2809844827586207,0.2809844827586207,0.2809844827586207,2.84098,1.8911766666666667,3.562345,3.845225,4.334316666666666,5.3351,2.4041575,4.19128,4.23394,3.27664,1.5115699999999999,3.71468,0.9862166666666666,2.2237425,1.9325466666666669,5.0079633333333335,6.076156666666667,2.8335833333333333,5.764831999999999,0.4863733333333334,0.486664,2.4357966666666666,2.6801566666666665,3.052725,4.484445,3.3714666666666666,7.724058749999999,3.848075,3.39307,3.40664,4.11565,3.708635,3.28152,5.4641,2.069145,0.4560915384615385,0.898109090909091,4.6003425,1.815895,3.857285,3.82469,4.650305,3.631935,2.4985625,2.761425,0.6130966666666667,0.719673,4.167935,2.6351999999999998,5.1564,3.95254,4.213545,2.662625,3.304965,6.1096,5.2906,3.31565,0.8555254545454546,3.4308666666666667,4.468965,2.35198,0.998675,1.9211600000000002,3.75806,6.11995,1.86588,3.18255,3.85243,5.592,2.62947,2.4755566666666664,2.306485,4.54074,2.49681,4.10946,0.6987357142857142,2.5289633333333335,3.504815,1.84492,5.9298416666666665,3.938985,4.125655,4.78954,2.926905,2.07514,0.638970909090909,5.0994,4.44496,6.43815,3.17809,5.20165,4.778065,2.83184,2.0422883333333335,1.2412114285714286,5.15155,1.945005,2.73673,9.064505,4.329765,5.1443,3.312095,0.8663377777777778,3.122965,1.2296657142857141,3.30791,6.3597,4.99656,5.0362,3.57793,5.22185,4.55185,1.5321175,1.5213966666666667,5.0203,3.0661666666666663,3.325976666666667,2.333795,5.1546,4.08701,1.4638600000000002,3.4257000000000004,2.80794,2.71894,3.838375,9.65804,4.656385,1.814935,4.78713,5.75018,4.360469999999999,4.03006,3.56415,3.788725,4.47244,8.14424,2.4313866666666666,3.406895,4.56008,4.40563,2.90008,3.28974,4.84754,4.327145,3.51363,4.225787333333334,18.414808999999998,2.840726666666667,2.4430166666666664,3.11547,5.671360666666667,1.11251375,4.357715,2.1258616666666668,4.84559,1.4747633333333334,4.398095,4.28423,3.57541,0.9622075,4.51438,4.81186,1.6473725,4.798217348484849,4.39728,1.0063628571428571,3.78994,2.04505,2.18743,1.46153,4.358835,3.89345,3.96513,3.79838,3.0365300000000004,4.35738,8.128108333333333,4.251815,4.11694,4.88651,3.1493466666666667,3.85289,4.891645,6.39361,1.010416,1.010416,4.597975,4.49773,2.07666,1.4328083333333332,6.940025,4.06574,3.14246,3.731765,4.469125,4.35014,3.53429,4.162025,5.595845000000001,4.001746666666667,4.59314,4.80009,1.413104285714286,2.515,3.96016,4.68451,3.6157674999999996,0.19304027777777777,1.5879825,2.10073,2.51635,2.1753033333333334,0.9565033333333334,1.5101525,1.41656,2.3152033333333333,0.6239488888888889,1.1513085714285716,1.9657875,3.9106,3.9725,2.4146266666666665,2.80274,2.9326966666666667,2.8760266666666667,0.66699,0.9834375,3.030325,4.69067,4.288225,2.972615,4.310625,4.510845,4.887455,2.06568,4.26651,5.02115,4.38406,6.46596,4.118745,0.4925770588235294,5.7097,4.830605,4.378985,5.30095,3.289935,1.999534,4.051895,4.0856,2.729875,5.256806666666667,4.58153,1.4465016666666666,5.256806666666667,4.054385,6.78351,3.66538,1.2040555555555554,3.744215,5.0409,4.4414,2.6830366666666667,5.08275,1.589585,2.0321725,3.905445,3.561325,0.8443622222222222,4.602095,5.0411,3.45889,4.201575,3.0920433333333333,2.9357666666666664,1.762776,1.7787575,3.19434,3.64094,3.5263000000000004,2.5019933333333335,2.5777,2.116395,4.91068,1.5966714285714285,0.8710266666666667,6.17408,4.16526,1.510128,2.798996666666667,2.41598,2.79016,6.7600750000000005,2.3211144444444445,0.814999,2.731035,4.979155,2.2764466666666667,4.063355,5.5756,5.3827,4.907645,4.39766,4.864535,2.1661766666666664,2.3003033333333334,1.7157166666666666,2.1570899999999997,1.93233,2.44043,2.27437,1.7119925,2.85943,3.142045,3.64018,6.41805,5.1818,4.116515,4.804305,4.137995,3.86962,4.7589,0.9112625,2.8026700000000004,5.09275,1.1629260000000001,0.6769733333333333,4.74573,3.6712,2.479303333333333,3.34604625,6.2027175,5.2735,0.937006,1.14094,0.7153822222222223,4.204630833333333,2.3486266666666666,2.82578,1.1479071428571428,3.3245299999999998,2.5253900000000002,5.3916,4.772275,4.33288,5.30855,3.91716,1.3039316666666667,3.784365,1.71619,3.621255,4.270105,3.52507,2.7997099999999997,3.2164300000000003,2.6023,5.2438,3.983995,3.12617,2.3892225,8.2692,10.3536275,4.22893,1.3534457142857141,5.39725,4.115085,4.88667,4.50249,3.76776,3.972245,3.547285,4.265295,3.703906770833333,3.98082,3.72435,3.467525,4.689275,1.851372,4.969735,5.82515,4.76367,3.3319,3.2735149999999997,7.21802,0.7269383333333334,2.789706666666667,2.81096,2.3930599999999997,4.95981,3.03661,1.2964683333333333,4.27988,3.417066666666667,3.786175,4.639935,3.9400983333333333,6.818555,3.056713333333333,2.6733933333333333,3.1106866666666666,2.8533666666666666,3.93697,1.85918,2.122873333333333,3.077393333333333,4.001885,3.6404941666666666,2.031585,1.516235,3.230399642857143,2.9213465000000003,0.9364222222222222,2.5999350000000003,2.5999350000000003,1.373325,5.58655,3.20309,3.40025,3.67616,3.398985,3.536475,3.44915,3.40952,3.14936,2.1934766666666667,0.5570846666666667,3.326755,5.815045,3.154075,3.73607,3.282915,4.05902,4.18205,3.2002,2.619305,4.124865,3.800125,3.30022,3.13876,3.57069,2.72409,4.206375,3.758755,9.03667,3.477185,3.7393,3.039375,4.087185,4.19163,3.70273,2.36249,3.70958,2.5410399999999997,2.91208,3.09139,3.272455,3.80497,1.7257166666666668,1.7257166666666668,2.533175,3.01959,3.163245,1.6011320000000002,2.513825,3.4541,1.8122599999999998,2.82311,1.6011320000000002,4.167625,3.1232,3.9934575,3.040415,3.29396,2.28776,3.441755,4.0136,4.33774,3.71961,4.590925,3.95538,4.32501,3.73116,3.205665,3.46814,3.10476,4.031375,2.67737,3.77358,5.22875,4.14356,3.799725,0.29820521739130434,3.68394,0.44133,3.91374,3.66021,2.980045,3.685385,3.88166,5.952235,3.178265,2.64278,2.3967733333333334,2.867986666666667,0.643608,6.200708333333333,3.30403,3.523095,4.16333,1.965955,2.55214,3.461105,3.418125,6.873155,4.415335,4.78401,4.760615,4.63758,4.194605,3.82435,1.4666666666666668,1.624934,3.595905,4.3689,5.33825,2.40582,4.48884,2.24272,3.499333333333333,3.410585,1.882342619047619,4.13868,4.83122,3.4063666666666665,3.6563,3.1192766666666665,4.44228,4.92249,3.4554333333333336,4.30926,4.216915,4.859705,4.33347,4.41602,3.76466,3.02794,4.133745,2.3926225,3.1282333333333336,3.1282333333333336,4.077735,2.6091233333333332,3.898485,2.5253900000000002,4.304595,3.2904,3.581895,1.911185,1.7886966666666666,1.2010566666666667,1.2010566666666667,1.687614,3.3699999999999997,1.7288,2.7954033333333332,3.9524,5.152739,3.25943,4.374215,6.03243,2.672995,2.822495,2.912603333333333,1.6453,4.43228,3.942465,6.224435,1.63959,5.39745,5.5357,3.2801233333333335,3.411205,4.244545,6.63857,1.9328266666666665,2.360735,4.02482,0.47837142857142856,3.664045,4.12196,4.376695,4.076815,3.57803,1.365514,1.552756,4.06864,3.474355,2.4631833333333333,3.84575,4.59656,4.669925,1.18900625,3.112065,3.94725,3.797205,4.903405,2.87342,5.352671666666667,3.89124,1.577164,3.88977,1.2122066666666667,2.78552,7.296244999999999,3.30316,0.7440927272727272,3.006805,4.201255,4.022565,2.09072,2.09072,4.837506666666667,5.66925,2.940565,0.5080322222222222,1.9765375,4.4632425,4.09404,4.0059,1.808818,3.020296666666667,3.29619,1.221087302631579,1.221087302631579,1.221087302631579,0.750763552631579,1.3234018859649124,0.5726383333333334,1.221087302631579,0.750763552631579,0.257081052631579,0.8297193859649123,0.257081052631579,0.4936825,0.4936825,0.4936825,0.4936825,1.1642818333333333,1.16249875,2.4420966666666666,2.3222016666666665,1.0931283333333333,6.423776666666667,2.6931766666666666,6.290150000000001,2.46284,3.40738,2.94106,3.393415,2.6631,4.710745,2.90018,4.173725,4.161815,4.761135,2.22212,3.906435,4.970665,4.191925,3.383385,4.82045,3.433885,4.45459,5.33025,4.835165,6.1361,5.28475,1.227525,4.018965,3.869405,2.805315,14.25055,4.299325,5.1955,2.739103333333333,7.64512,4.17093,3.978395,4.887475,3.19582,1.0485525,2.700875,3.63916,4.361045,3.131605,3.438635,4.101355,2.9238999999999997,4.130575,4.679805,4.17842,6.88143,7.318973333333332,1.30185,3.605535,3.99047,3.891035,3.61834,3.507025,7.52348,2.71935,3.14433,2.61062,4.106425,3.79782,4.614115,2.497555,1.7447925,0.9320999999999999,4.36641,3.619115,3.90517,3.906465,3.393695,4.51952,3.833765,6.57115,5.75035,4.40962,6.26415,3.990015,3.289845,3.354115,3.529715,1.8870175,4.99201,6.3857,6.5999,6.429391666666667,6.429391666666667,2.306295,1.8870175,2.073105,2.950595,0.7546849999999999,1.601055,0.84637,1.619665,2.8545,0.36136599999999997,3.057595,4.27199,1.619665,3.098948,10.385105,6.322884999999999,2.130535,1.02715,1.9427,4.296435,4.390095,5.703915666666667,1.9924025,2.219065,4.022995,3.720475,4.531275,2.0279700000000003,5.32225,3.346,3.01729,5.07025,6.95838,4.044565,2.229975,2.8579399999999997,1.8274466666666667,3.7161,4.9773775,1.59579,5.5075,4.50008,6.266565,0.5419060000000001,4.536108333333333,5.76385,5.77615,2.47642,2.914495,7.2449,9.5038,6.4475,2.24095,2.24095,2.24095,6.2172,4.873665,5.9575,3.328335,2.84864,2.556875,4.535335,3.139115,2.6116355,1.94428,2.6116355,6.9367655,4.6608,4.691336904761904,7.15734,4.691336904761904,4.691336904761904,3.472988571428571,7.0701,5.88125,3.06822,3.06822,2.58404,6.92515,2.9183,3.56415,5.540979166666666,5.540979166666666,5.540979166666666,7.33509,3.7091125,3.49368,3.75823,3.5968225,0.8902625,7.306466666666667,2.6456666666666666,6.31735,3.47606,13.143839999999999,4.745475,5.749701666666667,6.87216,2.741626666666667,3.53095,1.1710749999999999,5.749701666666667,3.4876,1.709975,1.709975,3.177855,5.380898333333334,1.8168,4.86134,0.8605750000000001,1.4594066666666665,0.8605750000000001,1.978965,2.677375,5.5274849999999995,3.95501,1.4594066666666665,3.14426,4.7244925,0.9771775,3.61719,4.30558,2.15053,4.100976666666666,2.76116,3.494905,3.20156,0.983166,3.78865,2.51175,2.147915,1.671,3.04224,3.86318,2.496885,3.840695,1.2591977777777776,1.2591977777777776,1.2591977777777776,3.64998,2.9612766666666666,2.9612766666666666,3.22051,4.042685,2.2488766666666664,1.2577725,1.2577725,3.166045,4.5928875,0.8131925,1.4626266666666667,2.90975,1.27695,2.7395766666666668,0.983166,0.983166,1.8165225,0.983166,3.2644608333333336,0.762485,3.2644608333333336,6.2347504166666665,3.41804,2.36029,1.8830881944444444,0.6243733333333333,2.5074615277777776,3.27397,2.5074615277777776,1.0137744444444445,3.64143,3.933585,3.757465,3.258855,2.730275,3.89897,1.9624033333333333,0.8635484722222222,0.39931625,0.8635484722222222,0.4642322222222222,0.8635484722222222,0.8635484722222222,4.621215,4.886025,6.27705,3.51093,4.723575,4.298505,5.43985,3.563685,3.85337,1.3039671428571429,2.904386666666667,4.539595833333333,3.957165,1.5056566666666666,2.7364566666666668,3.90438,3.808305,4.14257,3.37227,3.534335,3.35505,3.223805,4.332605,2.3938333333333333,6.0447,3.650095,4.15631,5.171435,1.1835885,2.06337,3.18369,6.39224,4.447065,3.80978,3.1607033333333336,4.46013,7.513601666666666,3.653233333333333,3.30475,3.0447366666666666,5.75805,4.125625,5.583,5.28085,5.14665,3.101655,5.60145,4.88179,3.3094433333333337,7.48837,3.0545233333333335,2.272695,2.30077,4.97438,6.5164,5.39735,5.6221,3.95437,4.773275,5.6104,0.46822769230769234,7.175075,4.475525,3.696695,3.58175,4.560395,3.797115,2.9926333333333335,2.433975,1.3956416666666664,0.6038476923076923,1.7568899999999998,2.98307,3.71117,3.539465,4.147725,3.971735,11.849615,3.83528,3.968855,2.67458,0.672025,5.620373333333333,3.2272233333333333,1.5044633333333335,4.731686666666667,5.6718633333333335,2.44464,8.24813,5.05345,3.621922,3.621922,3.621922,5.6541,9.12012,3.481315,3.22705,3.22705,3.347845,10.1334,1.06599875,4.91003,4.15488,4.252995,2.7501200000000003,2.419513333333333,4.57252,3.97664,6.04025,6.397623333333334,3.94527,2.95783,3.939775,3.935975,3.397463,1.2973375,2.974126666666667,6.2025,3.4808875,4.63782,0.90891,3.5914333333333333,2.4994166666666664,2.6042633333333334,1.767875,1.83497,2.1720099999999998,5.08075,2.13805,4.27819,5.87895,1.796072,4.541995,3.829085,4.794955,2.8493433333333336,2.225305,2.771085,3.718375,4.328299166666667,4.328299166666667,1.11174,1.98001,2.636413333333333,4.439614,2.333016727272727,4.788011333333333,1.770138,2.7327133333333333,2.2038933333333333,1.7317875,1.7317875,4.680965,7.376248333333333,1.9096133333333334,2.9938333333333333,2.22276,5.8257,3.288015,0.8423619999999999,2.890865,0.8423619999999999,2.72868,3.47776,4.78434,5.81925,3.757105,4.669605000000001,5.68335,2.323195,1.91357,2.7886900000000003,2.223526666666667,6.1812,4.416015,2.51076,3.92962,2.696005,4.22997,1.08154875,1.159464,1.83659,1.463185,2.584776666666667,2.8145233333333333,2.30833,3.0466800000000003,2.70956,4.447845,2.5849933333333333,2.5688133333333334,2.7723,2.471373333333333,2.75155,2.6696000000000004,1.9078466666666667,2.56129,3.625345,3.47352,3.218875,3.206435,2.9005433333333333,2.15336,1.9433175,1.1897483333333334,0.29968849999999997,0.15057195652173913,2.1919833333333334,1.9720566666666668,0.15057195652173913,3.9944802898550726,2.239705,0.15057195652173913,5.890833611111112,2.4454716666666663,6.25868,3.49282,3.5999,2.523433333333333,2.8106533333333332,2.2787175,4.4958,3.1237399999999997,3.29769,0.41944421052631575,4.0997900000000005,2.572227543859649,3.19634,1.73732,2.493045,4.045895,2.412115,7.747745,4.834065,3.50122,3.852245,6.52161,6.33926,1.8677666666666666,4.06601,2.150155,1.84258,5.81666,7.84442,1.3662333333333334,2.0847175,3.702815,2.62154,3.040415,3.107625,2.87027,4.06235,2.442695,3.1336,3.36024,3.178305,7.61274,1.31135,2.08294,2.9522,3.468245,1.61365,3.49662,1.46033,3.80112,3.36351,7.35949,3.44623,9.4882525,3.64107,1.575122,1.66929,3.031025,6.01837,1.6200975,1.6148366666666665,5.7557,3.494255,4.05769,2.81437,2.10895,3.1473,10.644565,4.99893,6.643,3.532395,2.14832,2.179965,2.833135,2.913615,3.426505,1.6703999999999999,1.6847533333333333,2.5888833333333334,3.541445,1.76058,3.49038,3.028795,4.544055,3.88693,3.481435,1.1383566666666667,2.360685,0.9375966666666667,1.274016,1.69543,3.322415,3.35374,3.70855,2.683435,3.798025,4.12258,2.88709,1.501374,3.551095,3.641405,3.25186,1.818185,3.255355,3.4832,1.3835375,3.620925,1.6823666666666668,4.16452,4.06188,4.87727,2.6956,3.93504,1.83805,3.551075,5.00715,1.731615,1.03549,3.7470666666666665,2.77813,4.538525,4.37394,2.999245,4.559515,4.728245,2.0445100000000003,4.953935,5.537185,6.70535,4.09368,5.773128,3.85944,1.5813,2.692766666666667,4.5857,4.98634,2.2054966666666664,7.562164,1.2392114285714286,3.4898000000000002,2.118585,1.770138,2.4316666666666666,2.7834733333333332,0.407545,2.548756666666667,3.5358,3.711395,2.47743,3.3954,2.3859733333333333,2.5518466666666666,1.9758525,9.01356,4.48636,1.744354,4.975905,2.3886525217391306,0.7521987692307692,2.650986666666667,7.357945999999999,1.6314699999999998,4.48988625,5.9386133333333335,1.497425,1.5689125,1.56109,4.3279,3.29451,4.58076,4.0763875,2.4678033333333333,3.810295,0.759152,2.665742,3.928095,4.145585,4.934795,2.784225,4.796325,4.41921,4.4077,4.8069,5.8067,4.7536,4.300945,4.86451,1.6971640000000001,1.844835,3.06472,3.40253,1.1164777777777777,4.32405,2.3605300000000002,3.26994,4.06623,2.923033333333333,2.58508,1.5210666666666668,2.949533333333333,2.780141944444445,2.770183333333333,2.9907533333333336,2.0044999999999997,2.1587125,2.31805,3.78967,4.38397,3.949815,4.469975,3.65142,2.44446,2.9507,5.16035,3.6508000000000003,4.7161,3.58201,2.291465,4.460013333333333,1.7126933333333334,4.148625,4.9767391666666665,6.0873720238095235,3.669705,4.56765,5.47935,3.06969,3.9974483333333333,4.59565,3.52505,3.761194,3.60786,1.3547125,3.296425,1.763535,2.334915,4.425865,5.2607175,3.761194,4.1575,3.4172,1.5429899999999999,3.711935,2.078955,2.5325933333333333,2.22916,2.737375,1.5116472727272727,1.5116472727272727,1.5116472727272727,0.5098472727272727,0.7556033333333334,2.0444583333333335,1.0533775,3.72955,1.274985,3.876355,5.00775,4.612195,3.345345,4.123505,3.023265,4.982825,1.432895,3.04492,2.68392,3.468185,5.8529480000000005,4.42339,5.3209,4.1108,0.9873075,2.310855,1.3422866666666666,3.948725,4.08727,4.28747,5.32845,4.74097,4.534795,4.978025,3.918285,1.710215,1.1337783333333333,5.245546666666667,0.9932911111111111,1.2421,2.40974,8.368165000000001,2.91645,3.919095,3.32814,5.680835,1.69776,1.0527233333333335,1.4767075,3.294205,3.50111,3.80923,3.731955,1.93878,6.821725,3.1094566666666665,0.95277875,4.74796,2.8894633333333335,2.8684733333333337,2.43836,3.503933333333333,5.504551666666667,2.670576666666667,3.0138133333333332,3.6254333333333335,2.5353566666666665,2.6599866666666667,2.9006433333333335,2.4858,2.0050475,4.765585,4.90107,4.783925,1.0949933333333333,0.739295,3.604566666666667,2.79321,1.05411,2.7168566666666667,4.15677,4.13194,7.1590549999999995,4.682025,3.5134333333333334,1.830584,3.74671,3.78168,2.7853,2.990251714285714,3.86232,2.82223,4.869468666666667,0.8103566666666667,5.299,1.7616640000000001,4.021265,4.325695,1.9814,0.9417475,3.031525,0.43490399999999996,3.113615,6.917,5.78815,2.75882,1.550328,3.3602000000000003,0.7769922222222223,2.71381,0.7769922222222223,4.160805,4.54948,1.404275,1.8317625,5.208188333333333,1.7912033333333335,3.7562,3.376135,3.51893,1.234826,1.63566,3.99852,5.04505,5.2972,3.05714,2.52455,3.2204,1.6063125,2.5788,1.8331525,1.9084575,4.148635,1.4309444444444446,1.4309444444444446,2.983085,4.690789333333334,7.919150833333333,4.406333333333333,7.441015,2.12386,3.889475,4.172085,1.6095716666666666,3.677140833333333,3.849075,3.307365,6.22915,3.14467,2.767345,2.844276666666667,3.545905,1.0700375,4.05441,4.45643,1.1692066666666667,7.867213333333333,2.93045,3.35064,3.389801666666667,4.71144,4.17606,3.9903870833333337,2.3575,2.91529,1.92146,3.6716333333333337,2.2609825,2.237515,7.349049333333333,3.421533333333333,3.2100333333333335,4.379965,21.963529001831503,0.67186,2.79767,4.21358,4.633505,8.69717,4.81162,4.358615,4.254545,7.305115000000001,3.67214,1.5576333333333334,5.190835,3.327145,1.122884,1.122884,1.122884,2.40566875,1.7016425,3.40801,1.6092725,3.17898,1.5301866666666666,2.530475,2.49855,3.04047,1.6092725,3.380805,2.656885,4.1179483333333335,4.963758333333333,4.707795,0.7476325,3.321755,2.972905,4.76047,3.712905,2.961445,2.1550675,1.7408825,2.0226125,1.459846,3.86343,1.56968,4.617795,11.092672833333333,2.677713333333333,2.47095,4.869845833333333,4.635833333333333,4.386933333333333,6.34105,2.1527833333333333,5.34567,4.269365,1.0219116666666668,1.2095385714285716,6.619869,3.884375,2.1424725,3.95364,1.9040025,4.2893,4.70457,4.594765,4.093455,1.3158885714285715,4.37492,4.928735,4.646615,6.351634000000001,3.36201,5.5184,4.32138,4.299015,4.932385,3.09353,4.90385,2.3368575,3.446515,3.14149,3.552075,4.113235,6.0167,4.471555,2.3428233333333335,3.5627666666666666,9.049515,4.493765,3.0852299999999997,3.63326,2.98399,4.517475,4.381715,4.91533,6.73836,3.32838,2.6897466666666667,4.2544225,2.47135,4.14579,2.44674,6.4854825,1.5630583333333332,4.462735,4.79343,11.3837625,0.5088464285714286,4.672705,4.610255,0.6463171428571428,3.80103,4.07706,3.97168,0.9277770000000001,4.50076,5.044386666666667,2.740906666666667,9.928833333333333,3.3267433333333334,1.91081,2.218295,3.77951,5.88075,0.5559525,4.01357,2.0761525,5.2354,0.6947646153846154,4.27593,5.46545,5.7685,3.61672,6.492115,4.392985,3.35563625,2.55672,3.0187866666666667,4.31862,4.64464,4.906735,4.96198,5.15735,3.1749533333333333,6.766943333333334,2.815475,3.2271544999999997,1.8552325,3.72454,2.5649266666666666,1.51112,3.20115,3.23181,2.9079566666666667,3.3061433333333334,3.3150366666666664,2.9831466666666664,2.5930233333333335,5.40825,3.2078433333333334,3.87355,5.02785,2.60561,1.1311222222222221,2.968253333333333,2.837263333333333,3.568985,2.9501000000000004,3.0941033333333334,4.686904999999999,2.01716,1.778685,3.05082,3.759845,4.39066,1.13483875,4.73017,3.326575,4.097133333333333,3.019716666666667,4.847879,4.0513,3.374885,4.107985,1.68378,4.021805,0.6385125,4.51295,4.780915,16.425373030303028,3.1795466666666665,1.2339149999999999,4.11147,0.60878,2.5593,4.424365,1.818845,1.2520871428571427,3.534365,4.423685,3.047,0.8173183333333333,2.56068,7.99696,3.89019,5.61385,5.40985,4.659755,3.0663933333333335,3.4484,3.2008533333333333,7.009416666666667,3.71295,5.0892,2.039145,0.45853333333333335,2.012935,3.127865,2.569775,2.836795,4.177455,2.8848333333333334,5.0007,0.6648791666666667,4.658565,3.527275,3.25052,1.1780899999999999,2.6546133333333333,2.0315533333333335,4.75654,4.058375,1.98838,1.639757142857143,3.894195,4.730065,4.70259,6.155543333333334,2.106473333333333,5.13025,4.78803,3.869865,2.29422,4.21578,5.946479999999999,4.757955,2.319635,5.021,2.89541,2.509215,3.863605,4.12859,1.3589133333333334,4.669575,2.46155,2.5184233333333332,4.8469983333333335,4.8469983333333335,4.798805,1.723536,4.75431,0.9249125,1.869144,4.950455,2.56089,1.4341166666666665,3.1553,0.886158,4.311133333333333,5.0564,2.826645,4.913315,3.6735,3.688355,5.232055000000001,3.61281,3.16055,2.7099266666666666,2.4695933333333335,2.749125,2.79374,4.291895,1.5802327472527473,2.9574466666666663,4.494015,4.70008,2.2295808333333333,4.182285,4.494865,4.813881666666667,3.2566400000000004,5.0551,4.88705,5.3251,4.845375,3.520285,3.69849,3.860145,4.457895,5.37705,4.58112,4.841535,4.393865,4.58348,0.7231008333333334,4.70148,4.56298,4.055745,7.957875,4.019795,3.69879,4.125715,4.81464,3.60894,3.62883,2.1198375,4.52309,2.00068,1.3180057142857142,3.85401,2.12436,2.5362066666666667,3.866984,3.0667233333333335,3.2613,1.0630133333333334,1.8277475,4.195655,3.690735,1.9465275,1.9465275,3.450645,1.74504,3.24033,4.514125,3.53823,3.728355,1.5484799999999999,2.105385,3.6753508333333333,1.995325,3.88615,4.44162,4.55942,4.088045,7.186445,2.56145,3.76277,4.428765,4.385405,3.12358,4.207875,4.204685,4.02735,2.05073,2.387773333333333,4.615195,3.87992,3.576635,3.72165,1.6675375,3.66475,4.46725,4.603775,4.143965,3.892665,3.892665,3.1629125,4.122445,4.14538,3.610905,1.5900919999999998,7.6655575,4.053435,4.77623,4.46606,4.331795,4.41549,4.86575,3.04701,3.92256,3.958345,4.811945,1.970372,4.77346,5.200377777777778,5.28655,0.757367,4.888796666666666,1.12297,4.961955,4.40911,4.79236,4.281465,5.23675,3.6160666666666668,3.6160666666666668,0.868514,2.216705,4.871125,3.49366,3.852465,4.708945,5.1782,3.477635,3.96415,1.2889316666666668,2.672925,1.6482875,1.2280275,4.39437,0.865912,2.25171,3.0690633333333337,1.2383533333333332,1.951885,2.7555866666666664,1.2157133333333332,6.33916,1.922935,2.5242033333333334,5.0256,1.9874275,2.752186666666667,3.427585,4.547005,3.5463666666666662,3.0365866666666665,3.9102333333333337,1.7031459999999998,2.0943275,4.109625,0.66927,2.2843933333333335,2.50292,3.1359,2.884733333333333,1.3721142857142856,0.8396499999999999,2.57236,4.274065,1.1443642857142857,2.0043225,1.198815,5.341186666666667,2.22352,4.745915,4.354085,4.33524,4.92403,5.3771,4.06114,4.22102,1.3439666666666668,3.9135666666666666,1.736336,2.5193533333333336,1.1997557142857143,4.567125,1.9967775,6.6873450000000005,4.00817,3.62297,1.551144,6.7281475,3.51002,1.3931966666666666,4.25921,3.004855,3.5425,2.701175,1.98007,1.98007,3.1854566666666666,1.38887,1.38887,2.29422,2.65577,2.135755,1.3421833333333335,3.6255333333333333,1.0706025,3.166346666666667,2.324875,1.9317675,1.4785116666666667,2.2382875,1.951195,0.2907358823529412,2.36457,1.26435,2.347053333333333,2.2038933333333333,2.3135225,1.0577066666666668,1.088696,3.7436000000000003,3.06387,1.98007,1.815895,2.06834,2.5593866666666667,2.578676666666667,1.753724,2.99198,1.07756,3.23175,3.0361499999999997,2.5760566666666667,1.57981,0.964508,2.34397,0.964508,2.34397,0.64952625,0.64952625,0.4955516666666667,2.2277425,2.4326333333333334,0.64952625,2.2522775,2.4625266666666668,2.39552,1.73348,0.78554,0.64952625,0.64952625,1.67705,1.67705,2.1902625,1.815895,0.64952625,2.2941,0.47548307692307695,2.7046200000000002,1.9914533333333333,2.5696766666666666,2.43739,2.43739,0.3896925,0.3896925,2.29422,1.9380220000000001,2.10696,1.9545179999999998,0.3896925,3.5953666666666666,2.521,1.5899480000000001,0.64855625,1.5899480000000001,0.64855625,8.00119,2.605163333333333,3.8981666666666666,2.6587433333333332,2.9605599999999996,3.02018,2.741493333333333,3.4568,2.4957525,1.718525,2.6159399999999997,3.653233333333333,2.4612433333333334,1.67705,2.4345350793650793,2.4345350793650793,2.8411766666666662,2.24908,4.218075,2.3522466666666664,3.3370333333333337,2.7608200000000003,1.5538399999999999,2.45114,2.202785,0.8092972727272727,1.6573875,3.342245,1.72435,3.14887,2.4646766666666666,2.6728,3.8032,1.569265,3.5042333333333335,3.1454866666666668,4.204733333333333,1.287358,0.2809844827586207,1.3579157142857141,1.3579157142857141,0.9994677777777778,2.929346666666667,3.9369333333333336,2.6477233333333334,2.13881,2.13881,2.210985,1.6823666666666668,1.0036,1.8534833333333334,1.8534833333333334,0.64952625,2.29422,2.850616666666667,3.4781333333333335,2.324875,2.13844,2.13844,2.13844,1.0746422222222223,1.4412857142857143,1.4412857142857143,2.3668075,2.6979733333333336,2.6783182512626267,4.01922,2.6898966666666664,2.57719,3.61246,3.922105,7.147935,3.797175,4.03553,3.7644,13.280562499999998,4.58254,3.55087,0.9699525,3.904265,3.2314,2.25333,3.806845,5.15485,6.894093666666667,5.93185,0.4577770588235294,3.575795,3.23425,3.898755,2.449785,4.523985,4.116435,3.605745,8.013735,3.42432,3.92571,4.008175,3.307040454545455,7.919471641025641,3.1376500000000003,2.6625133333333335,3.679195,3.73964,5.00245,4.050575,5.928828,4.418835,1.41607,2.90168,0.93177375,4.57048,5.77275,4.11445,4.059155,5.90565,2.947095,4.90272,4.140405,7.57733,4.06428,4.865375,2.9879599999999997,5.08806,3.15107,0.8777975,0.8777975,3.545065,4.09313,2.193785,2.184735,4.396755,3.93549,3.24614,1.905895,2.79045,3.585215,2.5200533333333333,1.08633375,3.55547,4.503075,8.51383,1.589826,2.8274,3.230095,3.18943,2.7481866666666668,8.41969,4.27796,3.416866666666667,2.56193,3.993045,3.4547000000000003,3.0003766666666665,2.9718066666666663,3.88108,3.933745,4.12887,4.09377,0.409296,1.52626,2.4437133333333336,1.795775,4.67831,3.489985,2.6632233333333333,2.2376625,4.276765,3.81939725,2.1935725,2.588845,0.8747170000000001,2.25825,2.6333933333333333,2.6333933333333333,4.941455,1.959265,2.668176666666667,2.33867,2.0454066666666666,1.8348266666666666,3.035085,3.67915,4.08427,3.915495,5.0376,4.760745,2.87684,2.9555966666666666,1.981722,4.869095,6.0267333333333335,1.9913699999999999,3.0172600000000003,1.95032,2.2296833333333335,3.94844,2.5335,5.037,3.83313,3.575025,4.392565,2.916306666666667,3.642405,4.1562,2.28425,2.4078566666666665,0.42380357142857145,3.4626333333333332,2.58737,2.949645,5.81515,4.622875,5.931039166666666,1.9418825,1.6484166666666666,3.200385,5.49075,6.31695,5.3368,3.007213333333333,2.252196666666667,3.517305,2.3253166666666667,4.29046,2.14094,2.0691325,5.1997,4.723115,4.42938,1.7805925,1.9840775,1.045644,1.045644,1.25214,0.8874871428571429,0.817154,1.897131142857143,4.17595,10.457571666666666,4.098145,4.42152,3.924985,5.658135,2.587715,1.7043266666666668,3.6818675,2.917965,4.02107,2.21276,2.615866666666667,3.149853333333333,3.2100833333333334,2.261223333333333,3.2634933333333334,3.3164533333333335,3.0610466666666665,3.4517333333333333,3.3775666666666666,2.807923333333333,2.82048,3.437333333333333,2.3600766666666666,3.1208566666666666,3.1872966666666667,2.97266,3.3222466666666666,2.0279599999999998,5.241488,3.1485766666666666,4.058094666666667,3.25747,3.0179333333333336,3.7543666666666664,2.846076666666667,2.677513333333333,3.19589,3.2618333333333336,3.4920333333333335,3.156336666666667,1.92927,2.7002733333333335,2.51568,2.883275,2.883275,3.3511,3.0096366666666667,2.71179,2.882006666666667,3.14169,4.230466666666667,2.912793333333333,2.810925,2.6973566666666664,2.9130766666666665,4.305127499999999,5.0558,1.6947666666666665,3.24546,3.9040666666666666,3.4244079999999997,3.2137366666666662,3.7621333333333333,3.2943366666666667,2.6273066666666667,3.4409099999999997,1.9261959999999998,2.5415525,3.5141666666666667,3.3711,2.490536666666667,2.4093466666666665,3.9265666666666665,2.7716,3.0777533333333333,2.3873675,1.01655,3.24292,2.5708166666666665,2.059203333333333,2.5632,3.0082866666666668,3.14266,2.07694,5.643969333333333,2.331836666666667,0.882756,4.473675,1.8826675000000002,1.61317,4.460875,4.116175,3.34151,2.439275,1.53006,3.48376,3.144965,3.368335,0.43648800000000004,2.08655,0.43648800000000004,2.09839,1.53006,2.65459,3.704815,2.434875,3.04742,3.640945,0.4933746666666667,2.852403333333333,0.9046175,0.4401905882352941,3.94144,3.896185,4.85741,2.483955,5.302,4.09227,4.462185,2.21154,3.796466666666667,1.584188,6.34285,3.4907,4.16137,4.840715,2.83168,1.9672566666666667,2.0933966666666666,1.3275966666666668,1.899765,0.9537525,0.9537525,4.62155,2.53502,6.317325,2.2498625,2.088545,2.18381,2.3322777500000003,2.18515,5.56875,4.4140325,2.2288825,2.3454166666666665,2.3322777500000003,2.07011,4.02464525,2.33664125,5.654136666666666,2.2498625,3.345295,3.36682,2.9954300000000003,5.6584,4.44296,1.950315,1.925485,2.3682925,2.650765,4.787475,4.948385,1.9731575,3.817195,1.6453,1.64449,5.33295,10.688225,2.06154,2.1926866666666665,2.2705333333333333,4.29295,4.288485,1.911195,4.511065,4.55594,2.883745,39.212656190476196,2.944176666666667,3.0953666666666666,0.4803872222222222,4.792088333333333,2.197956666666667,0.9775633333333332,4.22623,3.624925,1.8595775,1.74718,2.41214,3.618755,1.2967185714285716,3.0116686666666665,3.95709,4.48501,0.910861,4.415355,4.661895,4.752675,2.6072366666666666,1.5035925,3.7740225,4.519955,3.75434,3.15739,3.671755,3.93057,11.732480454545454,2.715173333333333,3.031525,3.96996,2.660595,4.4094,3.439015,2.902585,3.14685,6.242475000000001,4.79783,4.880005,4.71386,2.494995,3.44676,4.178065,3.66895,4.744065,4.077045,0.11636304347826086,2.367105,4.42757,2.760075,1.43187,1.124025,1.124025,2.28756,2.698165,4.221095,1.374592,2.9801,4.581665,2.625575,4.4891966666666665,0.5832864285714285,4.48372,3.550645,4.800825,4.470855,4.85153,1.3888375,1.2805,4.040466666666666,3.0072799999999997,3.0143566666666666,3.9631428484848485,3.931645,6.081785,5.5625,4.26247,3.491675,2.077671666666667,1.4577616666666666,5.074,0.31327,3.47383,3.823645,4.060855,13.877076666666667,1.90146,3.1311666666666667,0.69709,4.515075,8.370925,3.21673,1.87259,5.73285,3.2697599999999998,1.0593966666666668,4.86214,2.87729,3.075235,4.864215,3.420198111111111,0.96806375,7.731686666666667,0.759125,4.885595,3.214178111111111,1.426275,2.1099494444444447,3.2572150000000004,3.2572150000000004,3.943,4.368818666666667,1.4074625,2.283285,2.90363,3.77157,3.02294,2.467425,3.314645,3.457705,6.735651333333333,6.34025,3.99191,3.36465,4.9839,4.580475,3.912225,3.418765,3.643615,3.738095,4.61878,2.5476733333333335,2.66836,1.5635116666666666,2.4510633333333334,2.3000175,1.569025,3.0867566666666666,3.5431000000000004,3.5504,3.1816933333333335,2.7391966666666665,1.5115699999999999,1.4675066666666667,0.4631454545454545,3.21903,1.4146271428571429,1.81159,3.0523966666666666,2.5982566666666664,2.6400566666666667,0.942755,2.3298725,2.547705,2.98552,3.60303,5.4227,3.857515,3.019065,2.2535666666666665,3.46204,3.945105,2.443,3.41257,1.966825,3.89656,2.842485,4.050275,1.41788,0.634389,2.2287725,3.354785,3.141615,3.94017,4.9356,9.1577,3.1699866666666665,2.1430966666666666,1.7456066666666665,1.717946,1.717946,2.8176466666666666,2.4345166666666667,5.00495,4.276165,3.38727,4.57649,4.23265,4.25959,3.1538858333333333,4.27634,8.3691575,2.42909,0.5078075,3.1683066666666666,1.3005866666666666,1.0358571428571428,1.7869866666666667,0.814606,2.14771,5.1291,5.3215,5.8377275,1.1384025,7.21987,1.961116,1.555445,2.7564733333333336,3.81166,3.4324666666666666,2.320385,3.38156,3.012256666666667,4.0785,2.983223333333333,2.8468966666666664,3.09735,6.8688,2.55562,3.985795,3.71627,3.4534491666666667,1.4188766666666668,1.09672,4.533475,2.8014266666666665,3.167403333333333,5.1036425,2.53366,2.151925,2.3923125,3.40873,3.6626333333333334,2.2674333333333334,4.423353333333333,3.003076666666667,5.37095,2.48588725,1.9087275,4.877965,5.36475,4.30959,4.29906,1.6523033333333332,2.1395,2.05016,3.37006,1.6210933333333333,0.9566816666666668,2.788219166666667,2.1363225,1.9892175,4.2572,0.8306758333333333,5.85877,1.681865,0.765920909090909,3.833,3.90213,0.6576171428571429,2.918596,3.0866012499999997,0.8396499999999999,4.27158,0.18541166666666667,0.18541166666666667,0.18541166666666667,0.18541166666666667,0.18541166666666667,0.18541166666666667,1.971406,3.8816,1.971406,1.971406,1.8351199999999999,0.18541166666666667,0.18541166666666667,3.2885933333333335,2.4836933333333335,3.798025,3.483715,2.31944,3.63811,1.4585000000000001,1.6102820000000002,3.397463,1.415734,3.0453833333333336,2.7231935555555555,5.469106666666667,3.970155,3.84775,6.357,4.447085,4.496565,4.327605,4.191775,7.108402916666667,3.7519333333333336,3.4097000000000004,2.6504366666666668,4.803446666666667,2.6117166666666667,2.093245,1.7058166666666665,4.79079,4.849145,4.67638,5.0862,5.33795,4.312825,4.509485,0.7188763636363636,0.6770442857142857,0.6770442857142857,4.694665,2.3491466666666665,3.895915,1.0300628571428572,4.77786,1.5169142857142857,2.3057,2.58706,4.437133333333334,4.437133333333334,6.7621,4.63725,1.4344666666666666,10.56406,3.2088366666666666,1.2922,5.021,5.12855,3.456635,3.178505,2.66495,4.320233333333333,0.7676733333333333,3.2355933333333335,3.2468533333333336,3.751333333333333,3.03589,1.4957166666666666,1.4550766666666668,4.784719166666667,3.073066666666667,3.0643166666666666,3.423666666666667,5.3083108333333335,3.4013983333333333,0.78598,1.6687833333333335,3.4883333333333333,2.1211716666666667,3.727266666666667,3.4685,3.056126666666667,3.4685666666666664,3.0669766666666667,2.67239,1.0192733333333333,3.0660066666666665,2.6205266666666667,3.405575,3.166325,3.80216,2.7224166666666663,3.427766666666667,2.91165,1.5721159999999998,2.1877066666666667,2.571115238095238,3.494733333333333,1.6979600000000001,3.29701,1.7941666666666667,3.857533333333333,5.120154166666667,4.971168666666666,2.29036,2.676,2.739725,2.4973225,1.6607857142857143,2.35589,3.424271428571429,2.537025,3.7706,2.855365,3.810044333333334,3.055615,1.2252333333333334,1.2961975,1.8509775,2.17839,2.9658333333333338,3.530666666666667,4.968485,7.53392,2.881325,5.2968,3.97703,15.630017666666667,0.46848150000000005,11.234770000000001,0.882568888888889,3.311925,3.1526666666666667,2.651403333333333,2.939515,1.594904,1.501374,2.50157,1.1892099999999999,2.8453113333333335,2.02814,3.023623333333333,2.26858,2.55208,1.52736,0.6780683333333334,3.2638433333333334,2.48328,2.9651099999999997,1.0746422222222223,3.4662,0.7515866666666667,0.3649630769230769,2.9504566666666663,4.03974,4.743135,4.498965,0.7727309090909091,4.147575,4.732925,1.125085,2.4009175,5.500476666666667,3.52184,3.761045,3.98721,3.97692,1.905885,3.989215,2.93529,3.02013,3.66771,2.76119,2.63302,3.883145,3.2797,3.43914,2.51992,3.57618,4.3905,1.1419166666666667,4.34022,2.274905,4.223705,4.958740000000001,2.076995,2.7588899999999996,3.0925766666666665,5.82563,2.5753833333333334,3.24275,5.49335,3.8981666666666666,4.29259,1.8783200000000002,2.602575,4.128375,3.4879333333333338,4.09937,3.4410666666666665,3.114076666666667,2.9793233333333333,3.923166666666667,3.2052133333333335,2.74639,2.79908,0.45405888888888885,2.2939525,2.0359075,4.62219,4.58695,2.897546666666667,2.4985,3.1166300000000002,8.31887,3.47868625,4.11178,2.9528199999999996,3.81188,3.072475,3.6799383333333333,2.61672,2.3367825,2.56635,6.1755,4.630035,2.2378033333333334,3.44819,3.11692,2.7441266666666664,4.436426666666667,1.793912,6.161020000000001,3.863175,4.91591,4.42033,6.10735,3.743305,6.69159,4.178805,3.480655,0.6379971428571428,2.341485,1.562855,2.99635,3.41663,4.230205,3.859305,5.3486,2.72685,4.63441,3.3328933333333333,3.7115666666666667,3.1176399999999997,4.384345,4.538485,4.74365,2.5750533333333334,5.461318333333333,4.40146,1.5494700000000001,5.2377,3.686855,2.90808,2.23472,2.3328266666666666,4.395336,1.0938328571428573,2.44708,2.03383,4.0581,4.61192,2.43572,3.2931933333333334,3.063047,2.34678,3.831765,1.357404,2.3580200000000002,2.3833866666666665,2.89818,2.6114566666666668,2.6548333333333334,2.7687399999999998,4.09834,3.0413366666666666,2.7854433333333333,4.009195,2.331185,3.978115,3.605295,1.4945030303030302,1.4945030303030302,4.507695,2.84516,1.830575,1.3929675,2.25232,1.96928,1.339972,1.4464766666666666,0.66467,1.6342466666666666,1.5028433333333335,2.76788,2.293336666666667,1.7716733333333332,1.9986466666666667,2.3602333333333334,1.4963833333333334,1.7922066666666667,1.8468933333333333,2.3543475,4.471915,2.90669,2.83722,2.7224,5.710375,2.987975,4.454595,3.9215683333333335,1.995795,3.803085,2.78598,1.8846,3.53614,2.0685125,2.93843,3.661645,1.9353425,4.45015,3.059015,4.176305,3.4194333333333335,0.8038655555555556,4.37238,3.91194,3.436645,3.825825,2.5791333333333335,4.430515,4.597195,4.97135875,9.178818333333332,3.29026,4.462665,3.0432366666666666,3.684545,4.43644,2.473125,2.56733,4.032585,2.1200925,5.960095,1.844038,2.71369,6.615098333333334,2.83732,4.1838820000000005,1.2218357142857141,4.3742,4.380595,3.07112,4.91909,4.734615,6.415979999999999,16.092816428571428,0.6319,1.0577066666666668,2.9651366666666665,3.838125,3.810325,2.2179475,3.479555,4.119215,4.988325,2.51143,4.677105,1.6843166666666667,1.6843166666666667,5.30235,0.7678981818181818,1.7330660000000002,2.9557,4.01777,0.3737076923076923,2.00009,3.9910293333333335,1.197995,3.0365033333333336,2.7587499999999996,3.1212,8.08509,2.5672099999999998,3.5088333333333335,1.9572966666666665,2.228893333333333,3.6882975,3.538375,3.5109,6.83501,1.89641,2.83905,4.617735,6.7246425,1.8190166666666665,2.31501,2.6279966666666668,1.3937733333333335,2.44152,1.63295375,4.07196,3.73851,1.49125,1.9438689999999998,1.9438689999999998,2.9930566666666665,5.54975,3.9503049999999997,3.88452,4.46864,4.632905,3.063835,3.896115,4.058315,3.691045,4.550465,3.4441550000000003,4.356115,0.872171,0.3795925,5.33925,3.933515,2.5328866666666667,8.23618,1.62084,4.7069,4.059085,0.36665083333333337,1.9674166666666668,1.3956866666666665,1.8681933333333334,1.8585833333333335,5.399056,3.14969,3.212995,4.530985,4.36479,4.708165,0.598226923076923,2.011755,0.604323,5.845703333333333,1.410538,4.831225,2.0540425,3.2355487499999995,3.33676,4.2301,4.274295,5.1867,0.8857081818181818,3.103955,4.118575,2.0193775,1.7348575,3.7282,3.21952,3.411675,3.8794312499999997,5.372319047619047,4.541955,5.51295,2.8164200000000004,0.5831133333333334,3.4171666666666667,3.73679,0.571263076923077,3.903445,4.21185,4.071235,2.908145,2.754936666666667,5.2103,3.307845,3.78042,2.21555,4.029,1.7800619999999998,3.7608,3.868,0.6515484615384615,4.02929,4.205655,3.28085,3.798455,4.46417,2.583055,3.916735,0.645157,2.9875966666666667,3.7322655555555557,4.446865,3.3813999999999997,2.4397425,3.490266666666667,2.4397425,4.67906,3.105255,3.06181,1.4789333333333332,3.10218,1.8012975,4.309695,2.85144,5.135293333333333,3.16775,2.7606,3.1544666666666665,2.5144576785714285,2.5144576785714285,2.5144576785714285,2.2586566666666665,0.9968866666666667,4.55394,2.5072266666666665,1.7241733333333331,3.7358333333333333,2.5277333333333334,3.065913333333333,4.110385,5.0961,3.511415,2.0344325,1.564724,4.109945,1.876114,2.1479866666666667,3.08942,2.97072,2.0894225,3.529755,2.77831,1.734368,4.70873,4.30538,3.386595,3.73965,0.7449611111111111,2.4644933333333334,4.13495,7.82159,4.053615,2.98726,2.57644,3.520555,3.84334,1.7603075,2.33857,4.53329,2.20032,4.40222,3.37721,4.480315,8.51937,4.03531,3.51301,3.383725,4.836665,4.060545,3.2434624999999997,3.2434624999999997,3.44921,3.9404033333333333,4.20535,4.252255,4.281135,4.60825,4.136925,1.115215,4.424215,4.109865,5.1671,8.217130000000001,4.99497,3.697516666666667,1.9336566666666668,1.4571283333333334,2.40214375,5.06865,3.572275,4.86131,2.5456966666666667,4.309025,4.746255,5.2463,4.591625,3.0089966666666665,3.78741,4.079375,5.104,4.56709,3.601565,6.85471,4.75716,2.33366,4.800505,3.693765,4.07032,3.577265,4.74495,0.8159781818181817,4.05765,4.23947,1.2412114285714286,1.335634,4.7319,4.914585,8.4783615,5.31805,5.1837,6.25215,2.997255,2.6338933333333334,5.1321,1.86129,1.86129,2.62941,1.6796666666666666,3.0410291666666667,3.3744666666666667,2.0527575,4.461538181818182,1.3950066666666665,2.05087,5.6380275,3.3694216666666668,3.66184,3.13855,4.05517,4.357655,3.0863099999999997,1.0004077777777778,4.06097,2.768406666666667,4.02132,4.22319,3.7788983333333332,5.7865,5.68635,5.28465,4.65687,4.88762,6.4842,4.69463,3.277075,3.443925,1.90573,1.90573,3.88242,4.073055,2.4798666666666667,2.89434,2.108553484848485,2.7044633333333334,1.9978466666666668,1.9978466666666668,3.94847,3.515165,2.17072,3.592675,2.78625,1.89629,1.228635,1.2966555555555557,2.865645,0.45910473684210523,0.8269044444444444,2.76102,3.75244,0.4502654545454545,3.717915,1.802724,5.58515,3.492015,6.9399750000000004,4.285035,5.3077733333333335,4.91334,5.2094,4.199995,1.957465,1.8288579999999999,4.518,2.977405,3.680955,1.26221,3.774195,4.693705,2.719485,2.59566,2.766575,4.325925,3.567345,3.29105,4.03724,3.822705,3.48627,3.40405,1.0257628571428572,1.903865,2.21657,2.985725,4.403145,7.78864,0.9360139999999999,1.5787699999999998,1.5787699999999998,1.762436,3.92313,2.89886,3.035705,5.1514175,2.91527,1.17416,1.17416,1.17416,2.859125,3.098948,4.88228,3.253645,4.289685,3.388505,3.791765,2.97748,3.18822,3.633015,4.049743749999999,2.89628,1.339972,3.141325,2.89628,3.48232,1.4924466666666667,1.7637966666666667,1.922445,5.553638,3.023775,6.386603,5.553638,3.3628280000000004,1.6612016666666665,1.6612016666666665,2.38051,5.31873,1.6612016666666665,2.33752,5.75601,2.17337,2.77948,5.69009,3.63343,4.02875,2.0366466666666665,3.30555,4.01502,2.3101033333333336,2.28395,3.84838,2.0366466666666665,2.63366,1.862665,5.89229,2.397235,1.19612,2.471575,3.412275,3.1867128333333334,1.978395,1.9731394999999998,4.31534,1.8408253333333335,1.71809,3.05952,2.30345,3.077455,3.84238,2.255123333333333,3.18692,2.193065,7.0169,2.155545,3.267685,3.41066,3.41066,8.859869999999999,0.84038,2.880775,2.507435,3.260285,2.30346,1.3441433333333332,1.3441433333333332,3.41754,1.852165,6.4818750000000005,2.177055,3.59631,2.82015,5.7127,2.566325,2.746035,5.954435,5.954435,2.55223,1.46976,1.22607,1.22607,1.46976,2.1326733333333334,1.4650833333333333,1.1904616666666665,1.5294966666666667,1.9234866666666666,3.847095,1.738425,3.23145,2.83427,2.987825,2.796135,2.84303,2.62462,3.1704049999999997,3.1704049999999997,6.0434,2.37394,2.97981,3.224235,2.898705,2.57116,2.827425,2.58327,5.7187925,1.9054325,1.4457503333333332,1.249577,2.0687753333333334,5.38746,3.924348666666667,3.2977966666666667,3.245835,1.748225,1.748225,1.748225,4.62225,2.700415,1.1904616666666665,3.26098,3.591665,1.2576675,5.3823175,3.13083,6.01332,3.55165,1.702965,3.293855,2.7403733333333338,2.067575,3.56911,4.35379,3.57434,1.712975,2.280085,3.41833,3.31323,5.24738,2.080885,3.27305,2.869695,5.60815,4.56778,1.903945,2.28394,5.0981,5.27082,4.98104,6.17698,1.025816,1.025816,3.106141,3.106141,0.745896,5.17986,3.55706,5.6166,4.29362,5.06197,2.299695,4.110588333333333,4.110588333333333,1.9321,3.33728,3.94994,1.202408,4.29461,3.263395,3.14761,2.826105,4.86218,2.49842,2.224475,3.66003,2.870845,3.0655,4.82666,2.558435,1.86168,3.730425,6.25412,5.47114,4.3772,2.549145,4.0114,2.735225,5.69656,2.71949,3.68508,2.136495,6.91619,3.77299,2.23187,2.86119,2.363515,5.03824,2.263605,2.753665,2.95205,6.96796,4.79224,3.16378,2.299295,2.6275,6.58298,3.026435,3.40434,4.66932,2.953295,2.96494,2.71601,3.09194,2.081166666666667,1.97651,1.79929,1.6038,1.82927,2.0045033333333335,1.69543,1.9810966666666667,1.713235,2.081166666666667,3.8096,3.90828,2.23808,1.745495,1.745495,3.7657566666666664,3.7657566666666664,2.82321,2.82321,2.76443,2.174665,1.752695,3.78544,2.26594,2.26594,2.451355,2.451355,3.14726,1.880405,4.6755,2.26762,3.164355,2.03558,2.03558,1.793745,3.92994,4.56017,1.4924466666666667,4.70064,2.255123333333333,2.112405,4.78167,3.072485,1.874855,2.358585,6.42435,2.25153,6.09759,3.001955,3.29968,3.018255,2.41827,6.27177,3.04272,1.900075,2.6790980769230766,2.86465,5.83243,3.45964,1.51644,1.51644,3.92745,4.93702,4.66258,5.29177,2.85191,2.78972,1.75463,2.969145,1.75911,2.738445,1.921865,0.736566,0.736566,0.736566,1.9957941666666668,4.755826666666667,1.9957941666666668,2.04845,3.396485,1.66677,2.10772,4.88776,3.44022,5.24831,1.6733099999999999,5.21269,1.6733099999999999,1.6733099999999999,2.327535,2.28016,2.75675,5.88749,2.75675,2.39759,3.73671,2.18311,1.741125,2.840665,3.0448866666666667,3.316235,3.1882633333333334,3.89084,1.2712333333333332,4.14365,0.6655663636363637,4.58623,4.36288,2.992835,2.992835,0.6291381818181818,3.8516333333333335,2.63417,5.64765,5.0191,4.24469,5.04535,4.014345,3.91783,4.871625,4.308245,4.284185,3.668945,3.93399,4.56883,4.98147,3.552995,3.20839,3.74767,2.436706666666667,1.2089880000000002,4.413325,3.520575,3.27605,1.4010414285714285,3.940085,4.256095,6.49362,1.29852,4.983995,4.326095,2.192085,1.948295,3.318595,3.63499,1.65418,1.51644,3.917235,4.23018,2.724455,4.797745,3.076435,1.15193,2.8577600000000003,1.1413614285714286,3.068426666666667,2.16088,2.992366666666667,1.9228675,2.5739533333333333,4.14893,3.41845,4.531115,3.18493,2.1788675,4.73306,4.40651,3.172965,5.2309,4.418025,2.768776666666667,6.1388,4.303505,3.259951666666667,2.63081,2.43785,2.9324600000000003,2.769686666666667,2.7049033333333337,4.8265,4.237645,3.886025,2.577573333333333,2.627213333333333,2.4657433333333336,2.62368,2.380063333333333,2.38471,2.36305,2.3168275,1.47704,2.972337333333334,1.2406475,1.8015525,1.8891275,2.7472,1.6124575,2.04718,4.055325,5.3061,1.9976775,4.179225,3.583175,6.528788333333333,2.1292433333333336,1.621836,6.6973,3.95413,4.396615,3.877575,3.79212,2.01118,3.42325,2.4188425,2.8868,4.419735,0.7281583333333334,3.98147,2.0895233333333336,0.7363209090909091,5.05475,4.35498,4.13161,1.843224107142857,4.65804,5.05005,2.76497,2.7496500000000004,2.5270433333333333,2.201966666666667,0.65798,3.0613433333333333,2.8383,4.632215,2.531,1.97613,3.877165,1.025985,1.88199,1.88199,2.8878,1.88199,4.144085,2.71256,4.45601,4.281285,5.8057,12.573472500000001,3.05993,4.6682,2.683565,4.71368,2.94409,6.66752,2.94937,4.837915,4.52208,3.862005,1.248705,4.830765,2.8327233333333335,2.39423,0.9638811111111111,2.16798,3.491175,7.236426666666667,3.973835,2.65577,4.287185,3.1854566666666666,4.333095,4.59049,4.67523,2.93433,2.88351,4.0635,5.66565,2.56883,4.309575,1.9015175,1.9015175,3.212195,4.650385,1.12672125,3.9065760000000003,2.2541825,4.812665,2.746423333333333,2.3608166666666666,2.71951,2.34346,0.661335,3.42486,2.7739833333333332,5.1712,4.410595,0.2196678125,5.2153,4.539685,4.14911,6.790381666666667,3.1235133333333334,2.9502133333333336,2.0460433333333334,3.320123333333333,3.24062,1.4559066666666667,2.9502633333333335,2.6841866666666667,1.4204116666666666,3.2235766666666668,3.30137,2.5912266666666666,3.3584333333333336,1.2691916666666667,4.311805,2.31914,4.962555,4.39675,4.08105,1.61711,2.539963333333333,1.3198325,1.879975,1.3198325,4.60513,3.5379666666666663,1.5842800000000001,2.28033,3.987365,3.870205,3.067035,3.934095,0.3673105,1.3308670833333334,3.931725,4.301465,5.692,1.87664,2.6902666666666666,3.2164633333333335,2.3925266666666665,2.478225,3.34505,4.34297,2.2819425,2.0943866666666664,2.6235566666666665,2.7428166666666667,2.76827,4.581655,2.106595,4.192675,3.841931666666667,5.94385,7.5249925,0.7425844444444444,0.849801,3.772605,6.431865,1.9621140000000001,3.571145,1.5105766666666667,1.5105766666666667,3.433115,0.43979444444444443,3.68969,4.130785,2.66697,4.05423,3.252145,2.59209,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,0.24388833333333335,2.444685,2.928215,4.5244800000000005,3.392745,4.8454274999999996,6.5075825,3.18882,2.1712966666666667,0.945665,3.72849,0.7895425,5.350981666666667,3.179685,2.230235,0.7895425,2.494505,2.728,1.0636725,3.8907625,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,0.16402955555555557,4.304835,1.61819,4.2504,4.637715,1.6899339999999998,4.55533,3.966105,5.24455,4.64571,3.580058928571429,3.456275,4.355925,2.2594125,4.8616,4.19789,0.7419714285714286,1.3196514285714287,1.3043542857142858,3.5065333333333335,3.5065333333333335,2.872323333333333,3.85712,4.225615,3.43729,3.914005,3.1149466666666665,2.0167733333333335,0.5727257142857143,4.141615,3.341705,2.694745,4.118285,3.38825,3.0372524999999997,4.632105,4.40625,6.663797499999999,4.29517,4.703075,5.53855,4.64849,1.2338157142857145,3.11573,5.267623333333333,33.39456003282829,1.1436666666666666,4.00668,3.500635,4.63458,4.16355,4.564645,5.02085,0.4169652380952381,5.02215,4.34994,1.93701,1.853745,3.925205,1.6200975,2.660705,2.110795,1.7594375,2.8698,2.578676666666667,2.952015,2.99128,0.6259769230769231,3.26744,3.878095,0.38142473684210526,2.5588266666666666,2.79899,2.823575,3.94092,1.861705,4.52648,4.01661,2.90467,3.538285,3.239635,4.54084,2.88297,3.86999,2.092425,5.267623333333333,3.58242,3.40045,2.820525,1.6144939999999999,4.307835,3.47483,6.904945,3.526605,4.556395,5.5795225,5.340192,2.2723075,4.452835,6.2446850000000005,7.517008000000001,2.5330966666666668,2.630745,4.5732,5.760233333333334,3.839535,3.324615,5.425921666666667,2.65825,1.83009,2.210855,60.21881999957001,4.896265,3.80837,2.52575,0.9314640000000001,2.67623,2.8495933333333334,3.24342,0.7816033333333334,4.73127,0.7785788888888888,7.840913928571428,1.876114,3.2637733333333334,1.87473,2.74852,2.51507,2.669696666666667,2.498423333333333,2.3175433333333335,3.11477,1.48316,5.8267058333333335,4.205433333333334,1.6212725,2.5536066666666666,1.3864733333333332,1.4602625,7.70985,5.84335,3.271415,5.25655,4.8614675,1.4673,3.6469666666666662,3.347565,1.6738075,4.83149,3.65197,4.01657,1.7787575,2.8736083333333333,3.6735333333333333,4.14067,5.68485,4.297235,4.366235,2.10507,3.84908,4.572066666666667,3.0292333333333334,1.426084,4.073505,3.3462,4.17657,4.886995,4.066865,3.79833,4.47088,4.378995,4.376685,4.54791,3.977175,3.11187,3.56952,4.1843,3.270445,4.138165,3.68767,1.505375,1.505375,4.496235,4.766755,5.45755,3.475665,4.72919,3.514533333333333,2.86181,4.85775,4.979785,0.7116681818181818,5.31,6.381805,5.49875,5.656,0.9266944444444444,2.918725,0.9693166666666667,0.9693166666666667,0.9693166666666667,4.03305,3.476766666666667,2.41708,3.3282066666666665,0.9382529999999999,4.941225,5.0287,2.835365,1.5649925,1.9417825,4.03456,3.882655,3.784165,3.3597919999999997,6.5782,3.91992,2.5939566666666667,4.54699,6.80395,2.407055,4.187765,3.78955,3.27688,5.3284,4.53327,4.723315,5.7742,3.128105,3.3948911111111113,2.0886633333333333,2.0886633333333333,0.7324154545454546,8.665596,2.10353,5.8933,5.34995,4.452225,4.83236,3.808235,2.9861166666666663,4.5636,7.6573975,5.683878333333333,2.2245133333333333,4.462455,0.9855790000000001,3.79755,1.9739866666666668,0.9030111111111112,1.1344085714285714,2.6743166666666665,3.0254733333333337,2.726036666666667,1.1061642857142857,2.646506666666667,3.0547,0.9080833333333334,2.6490066666666667,2.9979433333333336,1.665892,1.9552340000000001,2.7827300000000004,3.1331399999999996,2.5857733333333335,2.5580133333333333,1.665264,4.66378,4.32215,3.622545,4.239305,4.76887,3.26954,4.77565,6.03445,5.1982,4.285745,3.96227,10.585591666666666,8.48522,2.7184033333333333,3.480345,1.9194766666666665,3.874305,3.252585,4.702805,1.0106266666666668,3.714235,3.20627,1.4341283333333334,3.808595,2.985765,4.348825,3.132,3.93747,6.9003,7.500616666666667,3.928635,1.49921,1.49921,1.49921,4.728155,1.1573983333333333,1.42155,0.4478572222222222,4.178895,2.9910099999999997,3.5773,0.9179169999999999,1.12979875,3.040415,4.31915,3.72207,16.417528738095235,4.2454350000000005,4.722475,5.999085,2.695316666666667,3.41739,2.9864,0.9207877777777776,1.3998125,4.04621,3.642485,4.410905,3.952425,4.47261,3.76744,2.762824222222222,3.564155,5.3556,0.5795600000000001,4.55896,2.333615,4.027945,4.907115,3.312003333333333,2.53129,3.9116866666666668,1.6682,4.241765,5.7003,2.86533,2.882025,3.945885,3.91364,4.38336,4.054505,3.688545,4.2156,4.646325,4.79614,3.817425,4.526515,3.943475,1.0632685714285715,1.79292,6.5528960000000005,5.92815,4.60015,5.2637,2.5831,2.7675533333333333,2.783993333333333,5.45206,1.91327,2.304575,3.1443366666666663,3.002273333333333,3.2474066666666666,4.49806,3.11365,5.232128333333334,1.221595,4.543355,0.9340616666666667,4.04769,3.43514,1.6980533333333332,4.356305,1.0047811111111111,4.79249,5.38485,4.779255,4.219815,3.801223333333333,3.96583,2.8746066666666668,4.92758,5.78235,2.8649045,4.085775,2.41889,2.65932,2.08256,2.572595,3.53153,4.97135,1.0706025,4.5446425,1.3747175,3.375895,1.6057333333333332,1.0706025,0.24498756756756754,3.60781,3.078875,2.2703258333333336,1.9193966666666666,2.74027,1.115815,3.91656,3.45385,4.869155,2.6743,6.5001,6.883347500000001,2.7693966666666667,3.1968,2.8051399999999997,0.871891,2.3837333333333333,6.22985,4.25229,5.3396,4.51146,2.2064166666666667,1.4260599999999999,3.8255725,1.683525,2.24547,1.6648725,1.7407825,1.75771,1.94365,2.1586325,2.1136625,1.87502,1.3534457142857141,1.4443375,2.0169275,2.6473,2.20226,2.31543,0.5335946666666668,1.802054,2.7211700000000003,2.9565966666666665,1.922935,1.8939366666666666,1.5947275,4.063075,2.29737,2.647585,3.11995,5.6617,3.23879,2.5242333333333336,3.890865,1.6685613235294117,3.867095,24.4716825,4.49585,5.3835,4.50852,2.3749466666666668,4.019545,4.937605,2.324735,4.873825,3.246396666666667,0.7715475,3.11674,4.651785,4.20641,4.190455,1.61574,1.99183,2.5080966666666664,2.118645,1.3939385714285712,3.2361166666666663,5.31545,4.316745,3.19022,4.042315,4.90454,4.184165,4.874205,1.196255,3.00382,4.14138,4.25478,1.6749040000000002,2.96945,1.84493,1.84493,3.69103,4.684185,2.83363,2.844086666666667,4.197875,3.913165,6.8570174999999995,4.31932,2.463165,1.3998125,2.885645,4.377205,3.166346666666667,2.4345350793650793,2.4345350793650793,3.274383333333333,4.816185,4.02961,5.445049444444444,2.39637,3.2864008888888887,0.6206588888888889,0.6206588888888889,0.6206588888888889,3.56466,3.84501,4.029105,5.5767,2.1587125,5.2549,5.0339,4.752645,3.293305,5.03875,3.045925,1.4649714285714286,3.88847,4.46307,0.4918014285714286,4.2598,4.931075,1.5201333333333331,5.3881,5.08535,4.66156,4.007235,3.930385,3.07014,4.64995,1.705126,4.448255,1.5987799999999999,3.86724,5.7446,1.1601325,3.11452,7.593209999999999,4.040835,3.2857800000000004,2.3433175,4.055915,5.5707,3.25178,6.95706,4.228125,2.309743333333333,3.0075000000000003,2.75099,2.6496866666666667,2.977513333333333,1.9469133333333335,4.69263,0.5889983333333334,1.8016649999999998,1.8016649999999998,3.1302,4.45827,2.376225,3.020185,4.596835,4.957685,4.253945,1.40836,4.982694238095238,4.35032,4.89613,3.49172,3.811710333333333,3.357813,0.4538973333333333,2.618753285714286,1.03996625,0.4538973333333333,4.39596,0.8926444444444444,4.13176,4.01813,6.559342,2.2529766666666666,1.055665,1.168258,2.325245,3.02701,1.5442166666666666,2.4769166666666664,3.39612,3.43685,2.1810566666666666,2.4415066666666667,4.34409,3.07222375,3.96957,5.86,3.695985,4.890295,6.866563333333334,4.404015,3.677575,4.50567,3.807675,4.624375,4.95442,5.6889275,5.44365,2.469203333333333,0.9166255555555556,3.94773,4.10226,3.827155,4.5653,4.29802,4.78172,2.67079,2.5618933333333334,3.15082,2.3676866666666667,2.0672866666666665,2.6312133333333336,3.210793333333333,2.4107433333333335,4.156605,4.40941,4.40431,5.3356,2.59487,3.456,2.859075,0.7149071428571429,4.17709,3.665205,4.48715,2.8766033333333336,5.81104,3.268535,4.579385,3.588195,0.5681569230769231,0.539735,4.417145,2.713778,3.18437,4.51992,3.99846,1.6878540000000002,5.1327,3.83791,2.584913333333333,2.7048900000000002,2.2861525,2.106772916666667,3.7673,3.0064466666666667,3.0333799999999997,2.9194066666666667,3.6134,2.640425,3.3341999999999996,3.7511666666666668,4.33317,0.580714375,0.580714375,0.580714375,3.3737917083333335,3.6353333333333335,3.6833333333333336,2.5364666666666666,2.6454633333333333,1.115215,3.07966,3.0471966666666668,1.75581,2.76703,2.3442066666666665,0.9620733333333332,2.9698916666666664,4.712445,10.048903083333332,1.5637610833333333,0.618767,3.874125,0.618767,0.618767,0.618767,0.618767,2.2001275,4.102414,3.966435,5.01695,5.89755,2.815436666666667,2.7210199999999998,3.1267612499999995,3.4932749999999997,5.14125,1.28082,2.2825,3.17175,2.6446866666666664,3.1839566666666665,4.03632,2.2454233333333335,3.66202,1.1654,4.652885,3.66351,3.45488,0.86028,0.632288,0.632288,0.8960845217391304,1.7563645217391306,0.8960845217391304,0.8960845217391304,0.32254652173913045,0.32254652173913045,0.8960845217391304,1.5675866666666665,2.59543,3.262575,3.0554900000000003,2.5966400000000003,2.598876666666667,3.31683,2.80205,4.660705,3.786405,1.90482,2.2764366666666667,1.78326,0.18548568298969073,0.18548568298969073,0.18548568298969073,0.18548568298969073,2.5677033333333332,2.6184133333333333,0.874676,4.699845,0.7475509090909092,1.6869140000000002,4.6600649999999995,5.1684,3.974995,2.801125,4.500705,3.28313,1.7712166666666667,1.239095,3.6615,4.49783,6.20855,2.27214,1.3998866666666665,1.9254499999999999,3.6694333333333335,1.5230066666666666,2.7801733333333334,2.8664733333333334,2.94518,4.40776,3.895885,3.1129,4.70589,2.3333333333333335,4.016605,5.33995,3.72299,4.507225,4.682025,5.315273333333334,4.123068333333333,2.9998714285714287,5.0262649999999995,4.23869,6.0911,4.189155,4.49468,2.1880425,3.09504,4.2124,4.8377,4.542645,4.16718,3.539875,3.67317,3.90968,2.47885,5.0475,3.747995,7.8054325,5.84135,5.7301,4.964125,1.493342857142857,0.948489,0.6285469230769232,1.78624,4.430705,5.2867,4.042195,1.551654,4.321925,3.04938,4.832765,5.17945,6.20772,4.298725,3.21482,1.742036,5.3638925,3.969605,3.175995,1.6604975,0.9782375,3.94476,3.57542,3.4917024999999997,3.744585,2.213,4.83675,1.6454566666666668,2.9670733333333335,2.513935,4.25418,5.36595,4.92542,2.17866,1.50237,5.45185,2.97233,8.94224,2.796375,4.803885,5.83435,4.19495,5.07875,3.659385,4.80044,2.2352625,3.86871,4.795711000000001,2.3454725,4.44237,4.398405,7.4123850000000004,4.8472,3.1289166666666666,3.7325,3.95604,3.07222375,3.679515,5.1855,5.5454,2.258145,3.0417466666666666,3.2524766666666665,2.35961,2.544125,4.441235,5.4533,5.08315,4.596355,4.985945,4.09041,5.32655,0.6209723076923077,3.2837666666666667,1.21508,31.025429944120948,2.62686,4.76709,3.02157,4.70641,1.7104399999999997,2.5940566666666665,3.0622086904761905,1.5184911904761904,1.5184911904761904,1.5184911904761904,1.5184911904761904,1.5437175,3.249565,0.4404088888888889,7.6762575,0.4404088888888889,4.93781,5.0441,2.1050125,5.02095,2.711525,3.8367713333333335,2.32368,2.5491,2.8226933333333335,2.2227833333333336,0.6478900000000001,2.6673566666666666,0.7334341666666666,3.09494,2.0988700000000002,2.477588,1.227415,2.477588,6.0954,8.025355000000001,4.553975,4.31794,5.82025,5.87305,7.55659,3.200965,1.51411,1.51411,2.38676,4.68365,3.836375,4.40535,5.743614999999999,4.256565,2.845715,4.14811,3.693365,3.448775,2.252865,0.9350759999999999,2.25323,4.041465,3.887505,5.272872222222222,2.02439,4.06131,1.393632,3.213525,1.236172,3.2801233333333335,2.88579,2.2537033333333336,3.2277,3.0999733333333332,4.862515,0.6561869230769232,3.549565,3.5452999999999997,2.486073333333333,2.393336666666667,4.126120625,3.191546666666667,2.3485866666666664,5.11944375,3.809735,4.89899,3.898265,3.72587,5.3336,4.868485,2.1912266666666667,5.7827,2.372529333333333,1.8718700000000001,3.144603333333333,2.3453,2.9388666666666663,2.71599,1.88318,3.193819242424243,4.14207,3.45973875,2.324129,2.324129,2.58632,3.799945,4.10602,0.5202854545454545,3.543975,3.16171,8.79309,0.8902336363636363,4.262955,3.36771,5.49765,3.272825,3.90838,2.210845,3.448535,2.86961,5.898,2.486190833333333,1.0793925,3.980375,2.7412266666666665,4.023985,2.896943333333333,3.704395,3.84621,3.936995,5.210397,3.231495,2.079975,5.2864,2.60932,4.42445,4.54334,4.430765,4.50926,3.95496,2.97678,2.30802,2.77134,2.455016666666667,2.91175,3.2496666666666667,2.784267857142857,4.871861666666667,2.8373233333333334,2.4237266666666666,6.504449166666666,4.8798925,3.9697050000000003,3.132656666666667,3.7081999999999997,4.1628,3.700815,2.139765,3.94299,4.98433,4.411375,1.3806666666666667,4.542945,2.7894433333333333,6.630777500000001,4.79738,8.48590611111111,4.175175,3.529005,2.24921,4.16107,5.875665,7.94505,3.82754,5.46937,3.878865,3.37163,4.06245,1.793912,4.552451,1.4587383333333335,3.872665,4.76195,3.3715666666666664,0.83284,9.314116666666667,1.1747666666666667,1.911955,2.4589733333333332,1.8845733333333332,3.20778,1.3901000000000001,3.762315,3.466405,2.6509133333333335,4.46426,1.1737708333333332,3.927405,1.3496083333333333,2.8627028333333335,4.108145,4.934285,1.752805,5.692264583333333,2.307227,8.09992,4.519495,2.919705,4.043595,3.45511,1.36906375,7.64883,3.01016,3.34392,2.350025,4.2665,2.2336625,3.1526425,2.361905,4.02891,1.376725,5.41285,2.797215,4.24722,0.8673170000000001,1.9955273333333332,3.903755,4.91472,5.36950875,1.3703720000000001,1.3703720000000001,5.90795,4.19348,5.51875,3.837605,3.490075,8.3166,4.337005,5.46055,4.067375,2.493045,2.083320743471582,0.382699,0.1998248387096774,0.6037048387096774,1.0969169047619047,0.6594034101382489,0.1998248387096774,1.3884090000000002,0.40388,1.4796159047619049,1.9921138387096775,1.81056,2.2814525,2.261413333333333,5.03775,6.298048333333333,4.84014,5.36055,4.426375,5.13795,1.3468099999999998,5.01025,4.199695,5.7791,5.3342,5.53665,5.40595,5.80335,5.63585,1.45232,1.6277857142857144,2.0624,6.025696,1.335816,5.6009,4.69025,6.811970416666667,4.886165,5.39765,4.247365,4.503955,2.42522,5.41345,5.48615,6.915031666666667,4.99373,5.85717,5.5453,3.8121425,4.30438,3.8622,0.999489,3.609033333333333,4.340805,1.15751625,3.6425666666666667,5.05405,4.3513025,5.111,2.4314275,3.40193,2.68972,4.441005,2.119165,3.915315,1.29693,3.2226,3.9197,4.207595,4.81864,3.33349625,0.5894375,5.9666,1.06992625,3.576885,2.979813333333333,3.79084,2.0789633333333333,3.87019,3.815754871794872,3.4034333333333335,4.27389,15.069488,5.08019,2.3054725,8.66671,1.5132725,4.154055,3.08268,2.9410633333333336,2.19897,0.21418043478260868,2.84778,4.731745,1.7619599999999997,2.297543333333333,3.4954,1.88398,2.3126,1.2968757142857144,2.978115,4.616195,4.953215,4.522465,0.47837142857142856,2.4185133333333333,4.73601,2.97755,4.219815,4.37194,4.36152,5.20595,0.508170588235294,2.6167633333333336,2.6167633333333336,5.42275,4.308875,4.74371,2.60765,3.794233333333333,3.11652,5.15965,3.845575,5.328642222222222,4.65054,4.34294,4.757555,2.4409325,1.9993459999999998,4.54798,4.12218,3.980115,3.65725,1.76659,4.502765,4.570385,3.832045,4.90614,4.07322,4.226255,0.6138446666666667,3.412975,0.6725458333333334,3.351233333333333,3.20984,4.525595,18.33670142857143,3.70347,4.103705,2.7403733333333338,1.05378625,2.5322299999999998,2.5760566666666667,1.57981,2.378945,2.528395,4.7698,2.2193166666666664,4.070325,4.51567,2.168975,4.5588,2.9045400000000003,4.23573,5.407,5.44255,1.768715,1.855745,2.33707,4.543935,4.935895,1.1516,5.1422,3.50237,5.68105,4.712535,1.7119666666666669,4.71607,3.338195,3.41491,4.3329,3.89017,3.1434433333333334,0.60417,7.887113333333334,1.452466,0.19304027777777777,0.19304027777777777,0.19304027777777777,4.74556,4.050895,2.713173333333333,4.25874,2.788425,4.29803,4.370481428571429,3.7202200000000003,8.640116666666668,4.05305,7.166486666666666,0.900005,0.81438625,2.644875,4.586705,4.26903,2.1230766666666665,5.0876,5.771,3.559835,3.437675,4.43931,2.530953333333333,4.64037,4.5994365,2.347053333333333,3.1991433333333332,3.15307,2.77012,5.87975,3.53883,0.6536585714285714,3.7221,3.26267,4.16461,4.9877400000000005,4.84038,3.17266,5.2717,3.641865,13.709462083333333,4.313665,6.797183666666666,2.636086666666667,6.565482,4.41122,3.62892,1.951195,2.330569166666667,9.5635,2.287036666666667,4.209933333333333,3.9438333333333335,3.702733333333333,2.993653333333333,2.8083066666666667,2.1135025,2.185,3.0754266666666665,1.851372,3.8537666666666666,2.40635,2.5848,3.1783300000000003,3.3788666666666667,2.49794,2.49794,2.56181,3.3971666666666667,3.28431,2.4919100000000003,3.2257700000000002,4.1184,2.840336666666667,2.62562,3.5790666666666664,1.99355,2.1582375,3.7037333333333335,2.921886666666667,1.6631060000000002,4.142833333333333,2.40471,2.62005,2.7750766666666666,2.300145,3.309893333333333,5.572078333333334,2.4914,3.6519333333333335,1.8943466666666666,10.748057333333332,2.04424,1.8094433333333333,2.0514,0.9994677777777778,1.713874,4.67221,2.7202279999999996,2.7202279999999996,1.6362919999999999,1.49423,3.4514466666666666,3.9192533333333333,2.28255,1.4718966666666666,1.7031459999999998,4.373309333333333,3.285216666666667,4.111133333333333,8.241853333333333,2.9593714285714285,2.3348833333333334,3.281917950310559,4.2324,2.1582375,3.2144100000000004,2.98312,3.197243333333333,3.6001475,0.9173375,3.3137774999999996,2.66789,2.8468466666666665,4.00585,2.9029399999999996,0.642480909090909,1.882342619047619,4.870375,2.3887275,3.3131166666666663,1.6121483333333335,1.6121483333333335,2.0685575,3.6677366666666664,1.05032,2.30783,4.722143333333333,4.722143333333333,0.6533285714285715,5.507244,3.419535,3.892985,4.7026,1.25417,3.4191333333333334,3.477233333333333,4.839266666666667,5.899709,2.4867399999999997,0.648054,2.59939,2.6565766666666666,3.0863193333333334,2.2573066666666666,2.49906,2.8816433333333333,2.4958975,2.61354,0.78561,4.438795,4.743230285714286,1.374945,1.5549142857142857,5.1914,2.221645,1.60876,4.14115,1.414566,3.6227,2.51485,3.4997000000000003,8.851115833333333,3.8753900000000003,4.4572,4.7248,2.397301090909091,0.7544190000000001,1.737804,6.93551,1.81081,4.287185,4.10188,3.817655,21.67256641666667,3.12067,1.6350833333333332,1.02790125,3.1909033333333334,1.5004099999999998,4.1838820000000005,5.3491,3.6728165,3.2623266666666666,1.2672833333333333,1.4352333333333334,2.90678,0.51063875,3.21384,3.6373333333333338,2.9889166666666664,2.5468043333333332,2.3933933333333335,2.73297,2.044706666666667,2.871506666666667,1.585418,3.6008333333333336,1.35435,3.91047,4.00219,2.385623333333333,5.2047,3.37415,4.373825,4.99063,4.491435,3.0134399999999997,2.69895,2.44809,1.0981914285714285,1.0981914285714285,1.0981914285714285,2.2869425,3.167143333333333,2.6887366666666668,2.53673,2.3901166666666667,1.8225325,4.242575,4.32201,3.73406,6.762135,3.241835,2.46283,1.9333325,1.0025433333333333,2.51941,4.010685,2.53117,2.7327366666666664,2.380523333333333,2.4891666666666667,2.6147633333333333,2.8687133333333334,3.0096266666666662,2.6863233333333336,2.54692,3.257656666666667,1.96905,2.182345,1.8015575,1.503355,3.121676666666667,2.7881199999999997,2.08494,3.95513,5.17185,2.61654,2.2735038461538464,5.740573333333334,4.07779,4.510975,5.411,4.34989,4.321565,5.8565700000000005,1.2073025,4.141515,2.726585,5.0526,5.0046,3.543405,3.63188,2.2114425,7.531535,2.062685,0.8239191666666666,7.67443,5.12567,5.830349285714286,4.693625,2.8090662500000003,1.724165,5.0745,4.248315,4.498915,5.1416,2.54343,4.00016,4.224375,1.78326,3.80664,2.70495,1.3126233333333335,4.7551,0.6029705882352941,4.078285,3.47507,4.613205,2.677775,1.808165,3.187695,2.00387,1.3988125,2.94806,3.23306,3.1036466666666667,6.907101282051283,1.343585,6.39271375,9.66647,5.030135,3.19365,1.3039671428571429,2.85121,1.3039671428571429,2.9163933333333336,2.1981633333333335,0.31531470588235294,1.204402205882353,0.31531470588235294,0.31531470588235294,0.31531470588235294,1.204402205882353,1.204402205882353,0.31531470588235294,0.8890875,4.217285,3.48597,3.200105,3.44331,3.75907,3.853375,2.6639903333333335,1.6696079999999998,6.765788333333333,2.771076666666667,4.14217,2.4577766666666667,1.042290909090909,1.18978,4.549495,3.79886,1.0792388888888889,1.54047,0.7170609090909091,3.037131883116883,4.261595,5.1783,3.4334333333333333,5.628158333333333,0.49604384615384617,4.101125,2.90873375,2.91142,2.622923333333333,3.423033333333333,2.5125266666666666,2.821676666666667,2.8048133333333336,3.190825,3.714275,5.39725,4.580985,2.01272,4.78035,4.256445,3.280455,3.771815,3.37294,0.3764126666666667,4.44917,3.66259,3.173475,2.9104140000000003,4.379105,3.936785,1.90865,3.742975,3.94489,8.010064999999999,5.13445,5.46565,4.540775,4.2442925,1.0115425,2.179065,2.173435,1.52102,1.8351199999999999,4.44896,5.5808,4.300345,4.40133,3.3597919999999997,2.70185,0.9728733333333334,4.49849,1.2299383333333334,1.16602,3.277905,3.79497,4.55598,1.2130625,2.569453333333333,8.69055,3.10047,3.1066000000000003,0.88425,3.63146,11.750796666666666,3.54479,4.1549,3.22913,2.956395,4.557585,5.0434,2.04116,4.125425,0.5534446153846153,4.803355,2.2522775,1.7589475,1.7589475,3.5453333333333332,4.137955,1.6361033333333335,4.496645,1.4625714285714284,3.99961,2.6691175,3.07525,4.77462,3.610765,3.8762186666666665,2.5265,2.9244736666666666,2.9244736666666666,10.811905,0.786599,3.107015,3.350566666666667,2.1084375,2.04354,0.8116142857142857,1.4142025,1.17095,2.05322,4.53966,2.46176,4.2934025,2.08162,4.3226,4.23462,1.618085,2.064465,1.04424,5.952085666666667,2.04587,2.144265,1.584188,1.59579,1.02790125,2.1734729166666664,3.71785,2.3728533333333335,2.9907066666666666,2.4991333333333334,2.6431033333333334,1.87355,3.145626666666667,2.6556133333333336,1.5788966666666668,1.8618866666666667,2.83039,3.0827000000000004,2.501106666666667,1.13577,2.549236666666667,2.0082400000000002,2.7055900000000004,0.3282978947368421,0.40288083333333335,2.3564666666666665,2.22912,3.198735,3.14233,2.82612,4.76323,5.6363,4.53447,4.613835,4.44373,4.007115,2.7590966666666668,3.75551,0.7012709090909092,0.06587568181818182,6.7987,0.06587568181818182,3.53148,3.208475,5.28675,3.61545,6.124,4.695395,2.140406666666667,2.60007,0.98233,5.6419,6.0376,3.1242900000000002,5.11525,1.9351425,4.047985,2.0551615217391306,2.9095366666666664,3.2802933333333333,4.293525,4.854375,3.236865,2.25671,2.25671,4.140845,7.715,3.91255,2.2005433333333335,2.4622533333333334,3.956525,2.768075,4.835425,3.65856,0.9874066666666665,3.69823,2.3970266666666666,2.77378,4.421915,1.0464366666666667,2.4545133333333333,3.909025,3.556705,4.595165,2.92633,2.821805,4.199695,4.01015,4.363315,5.21545,4.273955,3.126815277777778,3.81132,2.7686266666666666,2.7440233333333333,2.6592100000000003,3.5096666666666665,4.37659,2.7981133333333332,5.0091383333333335,4.346,3.799845,5.29215,4.30523,3.69197,1.5150359999999998,1.362985,4.005785,3.2144,1.53276,2.7635166666666664,3.31425,3.0593466666666664,3.7341022222222224,2.8915433333333334,2.156915833333333,12.758678027777778,2.0920366666666665,1.7445599999999999,4.12797,1.0069279999999998,3.3105666666666664,3.610835,4.780045,3.1154,1.1421777777777777,2.2648333333333333,2.6743,1.461984,5.4699,0.9705625,0.9705625,3.775733333333333,1.5488666666666668,2.2268666666666665,1.6002925,3.436795,5.09935,1.94795,2.68835,3.3386766666666667,3.05132,2.8165,2.06998,6.73525,6.58665,3.51721,0.7017853846153846,3.80013,3.543685,0.945509090909091,5.2633,3.1488099999999997,8.20891,4.484565,4.76761,3.66811,1.4848925,3.31921,4.80524,4.70792,4.190875,3.747305,4.27461,3.236085,3.5695,3.5695,3.90698,2.7828316666666666,4.602335,1.763605,5.366234166666667,5.015443333333333,1.5201333333333331,4.370275,1.0029299999999999,5.1667,4.04394,4.96597,4.637395,3.94424,2.76326,2.5248,4.04386,4.39466,4.619385,4.1063,1.929695,1.409378,4.047385,2.0997533333333336,5.39705,3.127235,3.506935,7.036205000000001,3.980545,4.35667,5.08085,3.66992,4.161235,8.471,3.772285,3.02647,9.64282,3.49282,0.5875807142857142,2.0179456715506716,4.57308,0.628804,4.50174,3.95311,4.76644,4.604965,3.277145,3.684955,4.55439,4.45574,2.4313125,0.7101328571428571,4.639755,4.371835,4.072505,4.3083,2.5586033333333336,4.364305,3.378895,0.664112,3.507725,3.94608,2.481945,3.082603333333333,3.597025,2.1533458333333333,5.55715,5.04905,3.8919675,0.874875,3.2431666666666668,5.704666666666666,5.704666666666666,8.621736666666667,2.04164,0.89343,0.89343,23.745203333333333,2.807675,8.114508333333333,0.36665083333333337,1.3956866666666665,2.965203333333333,0.9831670000000001,3.79272,3.8832,2.0112475,2.0112475,4.025095,4.836605,3.596035,2.7019458333333333,2.7019458333333333,3.47811,3.96862,4.103945,3.1299833333333336,2.1181033333333334,2.504055833333333,4.000328,2.071635,3.59778,2.7109,2.8294571428571427,2.8294571428571427,3.26746,0.8737133333333333,2.50979,1.52407,3.1829199999999997,2.8868533333333333,2.8252900000000003,2.4636533333333333,4.09705,2.43083,3.1050566666666666,5.0834410000000005,1.3558759999999999,2.25266,3.181755,2.61029,3.93174,5.760283777777777,1.1953166666666666,3.7063333333333333,2.4052775,5.09605,6.48286,1.5651725,4.857583333333333,4.997960000000001,2.9359077142857144,4.6209999999999996,1.1210142857142857,1.6749040000000002,3.053595,3.6396976190476185,1.1860966666666666,2.3152175,1.742955,1.658522,2.65726,3.417256,4.9822485,1.0219116666666668,1.363222857142857,2.97266,12.865920000000001,4.555186666666667,2.63846,1.0468142857142857,2.536606904761905,0.9623185714285715,3.25747,4.214903333333333,4.815095,3.4365,5.5279,1.56273,3.7543666666666664,3.877425,2.846076666666667,3.7032144444444444,2.4436066666666667,1.0257011111111112,2.53275,2.66368,6.8245716666666665,2.866349,2.513666666666667,0.729329,4.7069,3.454966666666667,1.07179,5.8018841666666665,2.0609175,2.2247533333333336,5.61885,1.2684444444444445,2.692903333333333,1.014081818181818,3.2464600000000003,4.206165,2.811083333333333,3.08296,2.3050633333333335,2.5033733333333332,4.289915,4.73592,4.97988,1.67151,4.576605,4.093895,4.18086,3.4244079999999997,2.6347466666666666,4.144209333333333,0.993146,2.9065880952380954,4.838875,2.71655,4.001864166666667,1.354025,2.6273066666666667,1.973638,1.973638,7.584043333333333,3.184893333333333,5.473650833333333,3.3836549999999996,1.69715,2.7358657142857146,4.4968200000000005,5.486583333333334,8.418053333333333,4.607901999999999,2.63241975,1.8820499999999998,1.905375,4.157703333333333,3.92377,1.46149,2.0143375,2.8221607142857144,1.1045125,3.14266,18.958965,3.4023333333333334,2.9019399999999997,2.726046666666667,3.17009,2.5910233333333332,1.6813166666666666,2.88177,3.6947666666666668,2.4602066666666667,2.6756966666666666,5.643969333333333,2.331836666666667,4.235793714285714,2.7133857142857143,2.259769714285714,1.48999,3.72119,2.20813,4.103105,4.886905,3.733315,3.168381666666667,3.0977833333333336,2.27892,3.442066666666667,3.1352333333333333,3.6366333333333336,3.3741,0.81143,5.132,2.52752,3.10745,2.8771727777777776,1.97062,2.085394166666666,2.085394166666666,3.341845833333333,1.9846341666666667,4.728525,4.17905,3.55921,4.36121,4.6886,4.5601075,4.5601075,3.903295,2.98616,4.585835,2.76069,1.646684,3.2014,4.36188,3.81232,2.62195,3.3427,5.642087500000001,3.722633333333333,6.166881916666666,2.88318,0.8532080000000001,0.8532080000000001,3.37445,4.617555,3.881735,3.4409099999999997,2.5178266666666667,1.8658400000000002,1.7489866666666665,2.83016,6.184262,1.3835033333333333,4.21584,3.6471999999999998,3.94,4.896325,5.03285,4.7511370416666665,3.2973433333333335,2.27195,4.593685,3.63103,2.026355,1.14442,4.037015,2.712075,5.832411666666667,3.1203366666666668,2.62835,3.44574,3.8215,3.610935,4.541595,3.093675,4.59031,3.62521,4.36402,3.780045,3.51139,3.647705,4.33865,2.7826633333333333,4.307545,3.062275,4.85143,0.645141111111111,2.225605,1.61013,1.9092875,1.8815425,2.63271,2.7629566666666663,2.09036,4.563155,6.10015,1.9393533333333333,4.07326,4.57126,2.502325,5.729465,4.0781833333333335,4.412935,5.0779,7.261241666666667,2.0346433333333334,2.8902366666666666,1.8381233333333336,2.53445,3.43386,1.78617,4.099575,3.736065,5.3194,1.0111044444444444,3.08968,4.298815,2.1432875,5.11335,3.79803,2.63958,3.8049,3.393925,2.074095,1.9550985,2.741575,3.079325,3.281325,2.08236,3.5902142857142856,3.5902142857142856,3.5761,3.4466,21.02115380952381,1.16731,5.3621025,1.9253025,2.0354966666666665,3.854545,3.93819,1.8560725,3.92978,4.6232,1.4963916666666668,1.4963916666666668,1.2284466666666667,1.7923933333333333,2.2598433333333334,3.2579833333333332,4.303973333333333,3.418835,3.597933333333333,0.5006078947368421,3.462484561403509,2.03035,2.161285,4.5594149999999996,3.384495,4.09475,3.610105,4.57863,4.27571,2.095385,3.56275,5.760233333333334,2.376545,3.62561,4.82238,2.229725,4.20901,6.18885,1.4841857142857144,2.0063199999999997,3.590533333333333,0.7846942857142858,2.7882033333333336,3.25569,4.621875,4.702015,2.780141944444445,7.780939999999999,2.95394,2.8226666666666667,0.4401905882352941,4.38019,5.017883333333333,2.9475,5.31265,3.9032,2.4983055555555556,1.77085,5.3583739999999995,4.6417,4.26993,2.66885,2.10152,3.93443,3.9944,3.1087900000000004,1.83784,4.03651,6.16957,2.73081,3.97817,3.614345,4.10704,1.4969714285714286,1.4969714285714286,3.1046600000000004,2.729233333333333,4.32469,4.933685,6.43605,3.5212,2.58275,2.1864575,1.4726333333333335,1.3094228571428572,4.793395,5.483445,4.97431,5.83765,4.593665,6.522594999999999,3.70389,2.86496,3.9238573333333333,2.142846666666667,2.96184625,1.57958,4.56184,2.4612433333333334,3.94675,4.95588,4.18298,2.81425,2.97233,1.4585000000000001,2.372285,3.8357666666666668,1.97903,0.58861875,3.2404100000000002,2.6576233333333334,2.4107433333333335,2.1121233333333334,1.88026,1.687614,0.68341,0.68341,3.346,1.72188,2.1545925,3.205225,5.56995,4.08063,5.4392,3.96131,4.04698,2.1188336666666667,1.2286433333333333,2.64689,4.1953,0.9778625,3.4888125,2.986155,2.81964,2.22163,4.0999,2.744285,2.0391866666666667,1.1513085714285716,3.553395,7.445675,3.454645,1.6338030357142856,4.375515,3.484445,2.54543,3.57276,2.76685,1.7988799999999998,1.051725,3.922305,2.4323783333333333,2.303036666666667,1.6718433333333333,2.43175,2.2759966666666664,2.5256466666666664,2.8577275,1.3076066666666668,2.0111933333333334,1.0957375,6.728912500000001,5.46975,5.3398,4.180885,4.01528,2.9312,1.8285655555555556,4.207985,4.668735,2.826205,4.93211,2.03536,4.49262,0.97314,4.118735,3.706765,1.83351,8.14669,3.678075,1.8834325,1.89058,1.8219925,2.70055,3.1970466666666666,1.2426695454545456,2.8066333333333335,5.64485,4.12316,4.23263,5.7038,5.37405,5.4218,0.88741125,4.201605,4.48697,4.25338,4.92483,3.904396666666667,4.809635,5.13145,2.94996,1.43187,1.43187,5.30035,5.394728333333333,2.72147,2.7251266666666667,4.0144,4.398155,1.557258,4.150125,4.892405,3.71023,4.03315,3.02576,2.5914533333333334,4.93454,2.34616675,10.86937726310944,1.9681633333333333,0.77106625,2.5763633333333336,1.7822375,2.573075,2.12007,1.76386,2.7957300000000003,5.10165,5.24075,2.8778333333333332,1.5905699999999998,5.835304761904762,1.299652857142857,2.844333333333333,0.48970476190476186,4.039733333333333,5.5435,3.389845,4.237775,11.47983,5.30425,2.961626666666667,2.9383666666666666,4.740305,2.90287,4.773625,1.04822,1.1900383333333333,0.7521945454545453,5.82295,4.249575,1.6929400000000001,4.643696,4.855045,6.64755,4.87212,4.986095,4.600075,6.2168,3.977405,5.16965,3.72207,1.463674,4.55652,5.8979,3.085935,4.110105,4.150765,3.117415,1.232985,4.9608,4.0752,1.2229475,3.6032666666666664,2.9341566666666665,2.477863333333333,2.55513,2.3796399999999998,2.7633533333333333,0.7285927272727272,2.4107966666666667,2.738993333333333,2.6847433333333335,1.9892233333333333,3.143143333333333,2.0066,1.6143433333333332,2.37497,1.95152,2.47539,3.3395333333333332,2.6781699999999997,0.605311,2.70552,3.378355,4.85562,2.25828,3.893805,5.2568,4.587665,3.554885,3.752975,1.3043542857142858,3.408725,2.5657505555555553,4.186106666666666,2.7435074999999998,4.26828,5.04765,5.08415,3.9986,4.1885,1.032914,1.032914,2.258273846153846,1.6495,4.06642,2.6179360000000003,2.6179360000000003,4.866325,6.09855,3.059675,1.26435,1.5953285714285712,5.78715,3.56417,3.0559499999999997,3.230915,2.80776,3.250385,3.0559499999999997,6.8242875000000005,3.18084,2.9932237500000003,2.79991,1.917895,3.049905,6.5195,3.326185,3.137725,4.341435,6.4104,6.314,6.451225,6.451225,5.31155,4.56969,0.5885207692307692,5.00665,4.47715,2.992265,2.86381,9.217649999999999,2.963813333333333,4.28118,3.721255,3.2940166666666664,4.930745,2.606845,3.4734675,2.96634,3.1738666666666666,2.428976666666667,1.495368,1.495368,3.60179,3.59741,4.8769,1.6644580000000002,1.526202,47.0830856439394,2.5436166666666664,0.8006227272727273,3.1520200000000003,1.761495,3.111916666666667,2.81835,2.9972433333333335,2.92773,2.715403333333333,1.8681666666666665,0.98216375,4.323985,3.388645,3.606105,3.936785,5.1639,4.854195,5.2009,5.3378,5.2201,4.960545,5.33285,6.4110175,5.1945,5.3811,2.089675,3.73866,6.7956,5.3002,3.450715,3.91434,4.109505,2.523215,4.09338,4.57379,2.9345733333333333,3.6558666666666664,1.644842,3.862775,1.357404,3.28832,3.9752,3.690525,6.4915025,3.92751,1.9753,4.11349,4.082255,3.972145,0.86534875,2.783765,3.166375,4.355585952380952,1.1621975,4.87975,1.37954,6.1652,0.7336877777777777,3.96841,9.8282025,4.147625,3.623135,3.48264,1.7592833333333333,4.227775,5.1895,3.0861033333333334,4.25364,8.929134444444443,3.4086,2.033793333333333,2.81397,2.8754733333333333,2.91879,2.7854995833333334,2.3534166666666665,2.7482666666666664,3.0168866666666667,2.7747666666666664,2.94412,3.517705,2.3454833333333336,1.5082166666666668,4.403308666666667,3.4129,2.60296,5.0116499999999995,2.81156,1.06830625,2.0712875,2.9356766666666663,5.329281428571429,2.840475,2.0444583333333335,2.0444583333333335,1.594645,1.45246,2.1305199999999997,1.8594639999999998,6.0685725,4.11165,2.29857,2.828003333333333,3.5682666666666667,2.0818475,0.5589000000000001,2.4164566666666665,1.93886,0.5745030769230769,3.870425,2.5186,2.4674125,3.705305,3.752581666666667,2.4911333333333334,1.63007,1.24228,2.231515,3.69359,3.74641,4.312395,2.9020766666666664,4.077015,3.970965,1.1276272727272727,9.39199,2.702355,3.38894,1.2952,2.8681033333333334,2.2363225,2.2363225,2.2363225,4.73731,5.70445,1.69377,4.809065,1.467442,5.601113333333333,1.4624359999999998,4.095315,4.213495,4.08496,4.33633,4.54912,1.880885,8.370085,3.852695,5.0177,3.52903,3.975901666666667,3.116376666666667,3.1361166666666667,3.95398,2.628766666666667,4.540951428571429,4.547529166666667,1.6679325,3.950045,1.6679325,3.533835,4.530343333333333,5.2525875,4.530343333333333,1.8290933333333335,5.6678,4.80138,4.070575,2.650986666666667,2.9982866666666665,4.31773,3.17322,4.78362,0.5097892857142857,3.081746666666667,3.0424,5.0860575,5.00715,2.352305,4.3793,6.485683333333334,3.31353,2.97217,3.02647,2.2538933333333335,3.797555,4.01358,4.697465,2.624185,3.918525,0.8976710000000001,5.3474,3.491655,4.492485,2.44544,3.276706666666667,2.4119466666666667,2.8332599999999997,2.8593499999999996,2.79318,3.22614,2.521,2.521,4.305127499999999,3.087905,4.406415,11.57475,0.97108,4.25238,2.4598333333333335,2.33485,2.770043333333333,1.42155,7.330103833333333,3.4453333333333336,3.93052,3.7769516666666663,1.9320233333333334,3.8143333333333334,4.558162361111111,2.3145633333333335,0.5083988888888888,1.7656500000000002,1.5126125,4.776955,2.84192,3.27209,3.832678333333333,3.455655833333333,2.40522625,4.895,4.35755,3.921785,4.153445,2.22573,3.96274,2.5593866666666667,5.620373333333333,3.183915,4.99195,4.265,3.85379,4.48435,1.920045,3.85006,3.661285,2.9462166666666665,4.243725,2.81454,3.09769,4.10949,3.63658,2.9331366666666665,4.58225,1.7331833333333335,3.672,2.795655,4.79445,3.83678,4.095145,4.6767,2.654745,4.304235,4.39352,4.176845,2.6608133333333335,2.26811,3.005465,2.40299,0.8827633333333332,4.204465,2.09485,3.59499,2.76984,4.235925,3.599745,3.210155,3.271885,3.5323,4.6540886666666665,4.09049,2.95841,1.48063,3.128305,2.47323,0.9158477777777778,4.643715,9.127590000000001,3.390295,3.7468,4.415375,4.9905,5.18175,2.089645,4.121945,3.964815,3.41297,3.304405,3.48543,0.6546575,1.24673,6.1454675,1.6309575,2.72127,5.100185,2.4314275,2.386315,2.676305,8.72593,2.75611,3.964285,3.884465,0.7922022222222221,3.53385,2.76003,3.877675,3.957275,5.88892,0.666693,3.34389,8.66231,3.24102,1.0593966666666668,4.9860387500000005,4.814825,5.25305,4.158675,4.714325,3.13518,2.4646766666666666,6.569075,0.821819,3.49551,4.33734,3.24648,3.950355,2.12867,4.29093,1.6182883333333333,4.307315,3.87172,3.97707,1.6567825,4.74323,4.575205,2.3729775,2.19544,2.2797825,1.07179,4.173975,3.6728165,1.3933579999999999,8.42581,5.7324,4.47639,5.2332,3.57252,4.29562,1.3799842857142859,4.53076,3.9624,5.1706,3.81708,2.49167,6.484947136752137,0.7842925,0.7842925,2.6334766666666667,0.9452142857142858,4.28059,2.783576666666667,1.039365,1.8412733333333333,0.42078499999999996,6.39402,0.9873075,2.80693,3.861985,4.07985,3.301755,4.4411,5.5937,5.6004475,3.10839,3.18468,2.531455,4.48877,4.75796,4.20245,3.922085,3.78951,6.5726,4.111865,4.323151666666667,5.428792,3.75799,3.5453650000000003,2.259155,3.5453650000000003,7.168583,41.069380271645024,3.734745,3.53841,3.0581566666666666,4.469625,4.26227,3.505325,3.499165,3.877745,4.238465,4.261265,1.62285,5.04445,2.800545,4.290145,4.95978,4.988515,2.4165733333333335,4.283525,3.98835,3.394445,1.429036,0.6483146153846153,1.59609,3.6044,2.95743,1.2818625,3.005936666666667,2.54179,2.6208233333333335,3.436533333333333,3.0140466666666668,1.396054,2.5985333333333336,3.714033333333333,1.9542445945945945,2.8845566666666667,3.156198,2.8486499999999997,2.7191666666666667,3.26623,1.1478555555555556,3.575695,4.15423,1.2335133333333335,1.2335133333333335,1.2335133333333335,1.2335133333333335,2.896174545454546,2.0628100000000003,2.492055,2.83003,4.561,4.766335,3.97676,4.23996,5.6848,4.67113,2.271175,6.2462,3.61096,2.64247,4.06091,3.19565,4.21345,4.26937,0.7713461538461538,1.413322857142857,1.5403166666666666,4.377225,4.4339,4.25291,4.113255,6.161608333333333,2.3213266666666668,4.565015,1.5955333333333332,4.00391,5.02255,1.6096899999999998,5.69355,0.7928516666666666,4.485515,1.268236,1.2081375,3.77765,4.183605,4.984075,5.1742,6.0096,4.068595,1.6329160000000003,4.636135,1.5061175,3.562425,3.43539,2.4983055555555556,1.92859,3.192685,1.318615,3.48234,4.57805,3.0004233333333334,5.6667,120.11047011273449,0.5012144444444444,5.0156,2.38397,4.953335,4.12974,2.83642,1.566185,0.32908333333333334,2.87509,3.80931,5.50155,3.100585,3.784585,4.46727,4.22525,4.449235,8.241933333333334,0.6954122222222222,2.799445,0.99991,11.83614,3.187395,3.68616,0.9652700000000001,2.349425,2.77577,2.139385,3.0953766666666667,3.3498666666666668,2.6291100000000003,4.5209575,3.0134333333333334,2.3766633333333336,2.25498,4.7293,2.92671,3.08512,3.68232,3.888145,3.351315,2.4150633333333333,3.894445,3.614175,3.045505,1.029541111111111,2.6423666666666668,4.5209575,4.83043,5.23815,4.08982,4.036395,1.96348,11.33579,3.687195,2.785595,3.93239,5.46355,0.5482273333333333,0.5482273333333333,4.2964675,4.2964675,3.750705,3.5034666666666667,1.7939293181818181,0.6016091666666666,2.92087,4.54599,4.12216,3.120785,4.118305,5.511865,4.525805,2.13402,4.567005,1.9471375,2.72311,3.9982699999999998,1.74813,2.044585,0.49083,1.7317019999999999,1.7317019999999999,1.884785,4.353565,4.306145,5.03535,6.253193,2.80867,3.163085,2.03406,1.915375,3.996165,3.46007,4.983033333333333,2.156215,4.983033333333333,5.1734,3.665855,5.9635,3.90019,2.4896066666666665,1.9914533333333333,2.5696766666666666,1.45339,1.472955,1.573715,1.6523325,1.616975,1.4659175,3.5926666666666667,4.448645,2.3517,6.6348,2.932923333333333,4.24001,3.2486,4.18931,3.0513100000000004,2.95774,5.820823333333333,3.7412666666666667,4.475010666666666,3.1317,1.3344225,2.609523333333333,2.62192,2.3650433333333334,5.81745,4.3136075,4.68851,12.03471765018315,0.6991533333333333,1.911848,2.1290325,1.546864,1.2505614285714286,2.5981,2.3417625,2.3842325,2.3772125,0.7304915384615385,1.9572,0.52595,4.60619,1.91955,3.99547,4.41434,2.34397,5.4317625,3.97436,6.9651,3.766655,2.882865,3.18583,4.572715,4.728545,2.6949079047619047,4.6141,1.99635,1.99635,4.72737,3.73776,4.31128,4.16808,3.2631200000000002,3.96291,5.03215,4.740965,4.51628,4.387295,4.59587,4.437965,2.564635,4.866295,1.1383566666666667,4.57351,4.49839,2.55822,2.3729299999999998,4.50723,1.389095,4.79204,1.8861625,5.98306902173913,3.89782,4.26339,1.61983,3.29988,3.29988,12.13401,3.92612,3.765295,1.1110225,4.409164,2.22174,1.5502125,2.319245,1.7139975,2.0209925,1.7330660000000002,3.18955,6.24125,1.740155,5.0059,4.599362500000001,5.46665,2.2132775,2.317665,3.56385,4.38589,5.12635,3.95862,7.445971666666667,3.2326599999999996,2.6038366666666666,0.3815233333333333,3.905825,4.14794,3.10972,5.840674999999999,2.612363333333333,2.9585166666666667,1.2694983333333334,1.5360516666666666,0.58861875,1.7656500000000002,2.83805,1.50621,1.5410966666666666,0.6385125,1.290702,4.59184,2.4366925,0.5244946153846154,1.4106333333333334,1.6859425,1.64694,1.24496,1.9795975,1.5360516666666666,2.3454725,1.290702,1.290702,0.5244946153846154,1.5344857142857145,2.45956,1.1860966666666666,2.515,0.5244946153846154,2.536375,2.45956,1.2964683333333333,1.2964683333333333,1.2964683333333333,1.8318100000000002,1.12290375,0.5244946153846154,1.088696,1.10766625,0.9994677777777778,1.8162500000000001,2.5593,0.83284,2.1200925,1.448257142857143,0.5244946153846154,1.7337900000000002,1.5360516666666666,1.9040833333333333,2.02505,0.8810739999999999,1.9040833333333333,1.0577066666666668,2.3729775,2.3923125,2.4188425,1.10766625,2.0279599999999998,1.318615,1.318615,0.95,0.95,0.95,1.2694983333333334,1.5360516666666666,1.448257142857143,1.4106333333333334,0.940857142857143,2.02505,1.363224,1.6631060000000002,1.896154,1.2694983333333334,2.63846,12.279959999999999,0.6385125,2.58538,1.7058166666666665,2.6276,0.9623185714285715,0.9623185714285715,0.5244946153846154,1.2966555555555557,1.687614,1.448257142857143,1.874106,2.02505,1.1516,1.1516,1.6869140000000002,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,2.9651366666666665,1.0577066666666668,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.19304027777777777,0.39699863636363636,53.49698036147186,1.5393425,1.4486916666666667,1.448257142857143,1.7058166666666665,0.940857142857143,0.6319,0.729329,0.729329,0.729329,0.729329,4.2927,16.08260375,3.25099,0.6196009090909091,1.48411,1.48411,1.48411,0.6196009090909091,2.83805,0.5244946153846154,1.7337900000000002,1.5410966666666666,2.53508,1.0577066666666668,2.352305,1.0577066666666668,1.401422,1.401422,2.149766666666667,2.149766666666667,0.5244946153846154,1.9641899999999999,1.9641899999999999,0.9632727272727273,0.19304027777777777,2.83805,1.4441833333333334,2.4052775,0.6196009090909091,0.6196009090909091,0.6196009090909091,0.6196009090909091,0.6196009090909091,1.7058166666666665,0.39699863636363636,1.0577066666666668,2.2172525,2.2172525,2.5248,2.979813333333333,0.6533285714285715,0.6533285714285715,3.3653,4.0528,1.25417,3.309673333333333,1.02455,2.62165,2.04164,1.0464366666666667,3.17041,2.03658,3.2431666666666668,5.2449,2.26166,1.2291333333333334,4.292345,4.432625,2.5813099999999998,1.7925999999999997,2.3489007692307693,4.66993,1.7816202777777779,2.6831,2.7401733333333333,3.27064,2.550155,6.161020000000001,4.154115,0.19304027777777777,2.9537,5.0356,3.835335,4.5126,4.238155,4.303205,2.702693333333333,1.948818,3.728205,4.63787,4.35306,4.43126,5.13155,3.3673,0.6837525000000001,6.82853,1.4031200000000001,2.93158,4.53114,2.4781333333333335,2.4781333333333335,0.7941518181818182,1.92859,3.892545,3.14846,4.930025,3.96366,4.680445,5.237,1.0552514285714285,4.673685,5.31065,6.7939340277777776,2.2605133333333334,4.38692,4.05709,3.917805,4.18064,3.917215,4.34583,5.38233,4.86663,4.5394483333333335,3.780415,4.429195,7.306732,1.7837625,2.1964389743589745,2.886763333333333,1.7621766666666667,2.8893166666666663,1.8766233333333335,5.2258,2.72505,5.728,1.795496,4.713355,4.04579,3.302855,4.439805,3.9637,2.5074799999999997,2.877553333333333,2.7804033333333336,2.6811399999999996,2.501986666666667,1.9285333333333332,2.8377033333333332,2.89888,1.9803039999999998,1.9803039999999998,4.055625,2.9397800000000003,1.9829299999999999,3.0208,2.0369566666666667,2.4088066666666665,3.0836233333333336,2.7091766666666666,3.109363333333333,5.0936,4.375645,4.28944,3.4924906666666664,3.4924906666666664,4.00019,3.142056666666667,4.184665,4.617305,3.947265,3.48741,3.443965,7.82364,2.01799,2.064885,3.5645,3.25064,1.51112,1.51112,3.598415,1.86643,3.998356,3.81869,3.28027,2.1458745,2.1724222500000003,0.5163449999999999,3.069115,3.962265,2.0353575,2.407045,4.1988,1.26004,4.514485,1.3500966666666667,0.382805,0.5264285714285715,21.297257700396827,0.5264285714285715,0.382805,0.6700521428571429,10.55415,2.8665333333333334,3.226705,4.23782,3.42477,2.802315,4.291865714285715,2.27125,2.373005,3.401105,3.14518,4.031045,4.770605,3.731265,2.401495,3.19134,3.43192,3.990575,3.088745,1.154317,1.154317,1.154317,1.154317,3.35205,2.887745,3.21707,1.7665566666666666,1.2033966666666667,2.437505,3.753575,3.553705,2.755245,3.02235,2.626525,2.6691175,3.98556,4.203255,1.1306883333333333,2.6719333333333335,1.05635,2.77387,1.7165033333333335,3.6130666666666666,4.872245,2.53497,3.926785,3.7784899999999997,0.8224690476190476,0.2192957142857143,0.2192957142857143,0.6031733333333333,0.2192957142857143,0.2192957142857143,0.2192957142857143,0.6031733333333333,4.41261,7.215918333333333,3.71017,0.51637875,3.841105,7.5472850000000005,3.25458,3.165563333333333,1.197995,4.444495,5.3658,4.31523,4.77295,1.686572,4.856225,2.2375066666666665,2.282756,3.49522,5.264,0.7580442857142857,0.7580442857142857,3.466515,2.9308833333333335,2.183395,3.31777,2.648415,6.3478,3.16726,5.87555,5.6907,5.64095,2.67675,1.661155,4.48656,3.516915,2.209305,3.76769,3.05089,1.9151875,1.159855,4.13769,3.62987,4.9877400000000005,6.330501666666666,1.4577616666666666,4.01329,1.1582966666666665,2.57546,3.40534,4.15408,0.39518928571428574,3.849465,4.38272,0.913485,2.5042266666666664,7.787363333333333,4.129445,2.089995,5.8058320000000005,4.421605,3.86144,1.2759533333333333,5.51528,2.7187300000000003,2.9666333333333337,3.5196,1.93445,1.93445,6.4649,6.4649,3.6716214285714286,3.6716214285714286,10.4937,3.6716214285714286,3.6716214285714286,4.373113650793651,6.77265,4.95057,3.464974166666667,2.76172,4.11756,3.70255,3.28457,3.0448766666666667,4.59167,3.1058166666666662,2.6790266666666667,3.2126266666666665,2.29273,2.72122,4.94454,7.414035,6.686615000000001,4.84333,3.786505,4.06878,6.414057000000001,4.9355,4.203025,3.77555,3.93772,2.1721866666666667,2.262325,2.07621,5.26655,5.49595,4.578005,4.33094,2.43507,2.5662333333333334,6.955795,1.8318100000000002,2.56386,3.4012666666666664,3.4012666666666664,3.24413,5.1398,0.8439416666666667,3.4568,3.709155,2.7748566666666665,10.325225,3.99183,2.607956666666667,2.436123333333333,5.3714,6.40505,3.02963,5.6207,2.73161,4.644405,3.007721714285714,4.116565,5.22525,4.61366,0.90999,3.3677333333333332,1.1297525,2.6089766666666665,5.112389838235294,7.570046666666666,2.48618,3.07952,6.287193333333333,1.6314699999999998,4.575435,5.3939,3.685195,3.711875,2.1036266666666665,4.73037,2.2509175,0.45912615384615385,5.25785,3.019595,3.5042333333333335,4.699335,4.821025,5.1506,6.4363875,4.481205,5.26215,6.929259999999999,54.72745066666666,4.312935,3.89403,4.848325,5.4563,4.076645,5.0334,3.99529,4.815265,1.95288,3.89398,3.815605,4.784685,2.54025,5.08415,3.847845,1.6910560000000001,5.70925,6.4739,6.947091666666667,5.39485,3.435535,4.78869,3.206135,3.442655,3.627705,4.48416,3.934645,7.15899,2.74425,1.1144642857142857,2.50227125,0.571754,0.571754,3.284475,0.571754,2.52424125,2.52424125,3.28181125,4.61226625,5.027575000000001,2.50227125,4.816249166666667,2.869111666666667,1.3130716666666666,5.2606,2.17225,7.385728,5.89162,11.014737143939394,3.0876033333333335,2.7401866666666668,0.22497939393939392,1.8038673333333333,2.2862966666666664,0.87180375,1.4745650000000001,2.6958699999999998,2.19,2.56265,0.6058939999999999,27.91379125,1.9250175,0.7600569230769231,2.4736266666666666,2.4736266666666666,0.4030888888888889,1.8740375,3.156095,1.3489775,1.7885275,1.6364375,4.453935,2.92348,2.03424,2.412926666666667,1.1548566666666666,1.90082,1.426615,5.64329225,3.807635,6.592521666666667,2.3440225,3.248136666666667,0.854885,2.48846,4.962815,6.0231,3.4005666666666667,2.225216666666667,5.386922500000001,2.0544025,2.4718233333333335,4.6003425,1.05009,3.6696000000000004,2.406476666666667,5.8274,5.14555,6.21705,3.264985,4.3159275,4.3159275,5.20305,2.05911,5.27145,2.6690466666666666,1.672655,3.902565,3.75667,5.900719666666666,4.235455,2.7699166666666666,3.9975666666666663,3.0463,1.1761785714285715,4.942135,0.947695,5.52644,4.639285,7.8026800000000005,4.292815,4.41174,4.11258,8.132953333333333,4.690915,4.943165,1.14138,0.7020578571428572,4.42072,4.50319,2.02583,3.24961,3.36933,4.322905,2.17103,4.672475,2.31519,5.0486,4.93485,5.19745,4.329855,4.52864,2.86531,6.8071795,3.54041,4.53784,3.523015,4.191105,5.906326428571429,0.6094428571428571,3.715,1.7435600000000002,0.5473811111111111,4.146935,2.417515,1.01153375,1.934265,6.00554,3.932005,2.326355,2.6916466666666667,2.8331666666666666,4.80735,3.514175,1.7469892857142857,4.170085,2.5964533333333333,3.4772,4.21714,5.0194,3.0622208333333334,3.6048333333333336,3.6584333333333334,1.9790800000000002,7.41166,4.96468,4.74326,5.01955,2.1678325,4.09967,4.664935,3.349625,4.07554,10.96949,3.60377,4.955348333333333,4.823165,4.71357,2.360735,4.22192,4.24126,4.70538,3.2780199999999997,4.094365,1.471345,2.87525,3.370135,3.389925,4.76031,1.862206,4.07586,3.19379,5.30625,2.8807500000000004,1.948615,3.77396,4.12391,1.01685375,3.074915,2.69753,4.471194,1.6784880000000002,1.7906033333333333,1.0971525,3.62465,5.19915,5.78774,3.8458575,2.921415,2.45586,2.086325,1.89515,1.5401333333333334,5.6885,3.04327,1.8209475,0.9243538461538462,20.598289923076923,3.084795,3.2768466666666667,4.69051,4.079493846153847,1.33835,2.6968545,2.848694090909091,1.247606,1.8415633333333332,4.153285,4.90219,3.5381183333333333,3.05093,5.32055,4.767035,6.9592175,4.60245,4.35346,3.708355,2.6861033333333335,3.953625,4.007145,3.445733333333333,4.261245,1.77149,4.835065,8.212,3.378455,2.87752,3.81281,0.58522,3.14887,2.10549,2.2406825,4.4667,3.12118,4.637305,3.679005,3.000405,2.2376625,1.69043,0.821908,1.4708533333333333,1.2004333333333335,3.964115,3.8693,4.62597,4.65398,7.41857,2.30263,1.4138899999999999,2.4621933333333335,7.593783333333333,3.39092,2.83905,3.143545,4.509905,3.4803825,3.581545,1.5522040000000001,4.524915,4.92352,4.220675,4.06127,3.5394,4.24407,4.44058,4.16803,4.617335,3.825095,2.26649,3.1806033333333334,3.300185,5.44355,2.927795,4.2562605,2.803,2.955405,2.6365000000000003,2.2389233333333336,2.1081666666666665,2.543089,2.543089,1.9753033333333334,2.7388933333333334,2.3562600000000002,2.3467100000000003,2.0614766666666666,4.12113,2.3834966666666664,2.8677766666666664,3.1440966666666665,1.72535,4.37079,2.941725,3.562515,2.22195,5.3238,5.5037,4.771489444444445,2.64636,2.224425,2.883845,2.847425,2.14146,2.873825,1.9043225,2.48619,2.49641,6.936663666666667,4.390535,3.62161,0.58872625,4.100775,4.087515,4.14198,3.44748,3.91381,3.811184166666667,6.19795,4.40272,3.171765,2.7516510714285713,2.114355333333333,2.49028,1.6825379999999999,1.7578859999999998,1.541422,1.946336,1.9135775,1.1928266666666667,4.201117428571429,0.5244946153846154,0.5455233333333332,1.9512260000000001,1.4785116666666667,1.402502,1.4244433333333333,2.3819865151515156,1.5161683333333331,1.585468,0.58753125,169.5199437160311,0.48704333333333333,1.967286,1.03678,1.2832825,2.1485975,1.60886,2.0259175,2.459,2.0167125,6.8698,3.18357,3.6357285714285714,1.8865933333333331,3.05215,1.32432,1.32432,5.45825,0.4955516666666667,2.1824925,3.1165033333333336,3.0302066666666665,0.7897127272727272,0.6640352941176471,1.2532191282051284,1.0918818181818182,2.513075,3.87945,1.9640725,2.15576,2.187003333333333,5.040921222222222,0.9853477777777778,4.48212,3.80174,3.5845,7.0119,1.9961266666666668,2.7839,2.6468,3.640876,2.29673,3.0862,2.84135,3.305715,4.052795,2.87946,6.5038,2.466935,2.591765,3.52918,1.63195,2.39925,2.35237,2.910535,1.81149,1.52479,2.46632,4.135425,5.353158333333333,2.74719,2.96075,1.39921,4.131255,3.445266666666667,3.933866666666667,3.03196,24.472662985805858,2.460427333333333,2.64006,3.0030866666666665,3.342166666666667,2.97599,5.635573333333333,3.1316333333333333,2.2538199999999997,3.4743,3.3225200000000004,2.1767566666666665,3.1782266666666668,3.257733333333333,2.9408933333333334,1.7104833333333334,1.64885925,0.6146429999999999,2.2863266666666666,2.0819575,0.202758125,2.3217633333333336,2.61633,0.202758125,0.202758125,2.0217747916666666,0.202758125,0.202758125,0.202758125,0.202758125,2.7484333333333333,2.4843533333333334,0.5916861538461539,3.273101785714286,1.415655,1.958548,5.4465,4.33317,6.0997025,1.9626525,4.868425,2.02306,2.5441433333333334,1.224767142857143,5.592933333333334,2.808526666666667,5.76089,0.8482083333333333,1.382035,4.77149,4.720765,34.97349414244089,1.561792,1.3666833333333335,2.3777666666666666,2.284035,0.95,2.39696,2.3468466666666665,2.737493333333333,2.053053333333333,2.4607566666666667,1.6212400000000002,2.591343333333333,2.4168966666666667,2.2638966666666667,2.592783333333333,2.4540366666666666,4.112375,3.2700366666666665,1.1723357142857143,3.77157,4.10507,19.623655222222222,2.7923666666666667,3.2637966666666665,2.4194366666666665,0.8742279999999999,3.14022,1.6180668888888887,3.14022,2.366163333333333,2.40879,2.69382,1.614815,1.90538,4.25335,4.18542,5.10445,4.323615,1.750264,5.09185,1.6818975,4.83677,4.0173989047619045,4.45606,0.7587045454545455,2.0633375,1.9829725,2.748216,3.45101,1.0947825,3.450305,2.05118,2.1038200000000002,1.07777,1.07777,3.05762,2.987636666666667,4.56499,28.6931175,6.428535,1.94127,3.6583833333333335,0.38848533333333335,5.85211,5.2118,2.62052,3.427305,5.1277124999999995,3.79171,1.1019725,4.40052,1.276488,3.212615,4.85811,4.833305,2.100405,3.231615,4.389375,2.45067,3.4588365000000003,4.141895,1.3147266666666666,2.6321891666666666,3.847975,4.5861025,2.6547366666666665,2.9803333333333337,2.9507499999999998,3.46283,4.096915,4.03279,4.204733333333333,1.63863,5.90701,2.610905,1.828276,4.186885,5.46192,4.16527,3.426835,0.77792625,2.99726,3.6863,2.18898,4.710305,2.724385,3.999535,2.948676666666667,3.29992,2.685325,3.2579466666666668,3.0143766666666667,3.0724733333333334,4.506455,5.20185,4.426235,1.80302,4.131235,4.27257,1.933005,1.98175,1.779295,3.9399444444444445,4.697825,5.142522708333333,4.16058,3.446266666666667,3.756715,3.169473333333333,1.3514166666666665,3.15504,3.11007,3.00104,4.291885,4.37561,4.23592,2.92943,1.84849,1.53183,1.50339,3.6798,2.458975,2.239715,3.35686,4.75836,1.56786,5.0443,1.364024285714286,1.8560975,3.315835,3.26607,2.95972,3.563865,3.22896,1.573945,0.9628114736842105,2.657055,3.575896666666667,4.05632,8.635528333333333,2.53105,2.9591366666666663,1.6179033333333335,2.8453,2.78683,1.16588,2.997203333333333,2.686386666666667,3.2823499999999997,4.0332,2.972393333333333,7.036865,3.060366666666667,0.7580927272727273,1.8423866666666668,3.66665,3.374155,3.436985,3.3997666666666664,2.496361,3.469115,2.938505,1.9928728571428573,3.88097,2.7158072222222223,3.45946,2.0014233333333333,4.821915,5.1907,4.50423,3.64571,3.81078,1.1369444444444445,4.907565,3.1680466666666667,2.574176666666667,4.450995,2.7376633333333333,2.7473666666666667,0.47286,0.47286,4.15006,4.94698,6.60435,3.096985,4.56915,3.56443,3.177125,4.923535,4.221375,1.04792125,3.83834,2.6816133333333334,4.034211666666667,2.980036666666667,3.2041825000000004,1.90442,3.4161464285714285,2.6539433333333333,2.6307733333333334,2.5949666666666666,2.8564966666666667,1.8202,22.677403675230565,4.77222,4.348915,3.902755,3.385005,4.53548,3.47568,4.66797,4.317235,3.86802,3.653135,4.129895,2.5333099999999997,2.70604,2.992366666666667,3.132105,2.5443533333333335,4.25495,3.55844,4.530985,5.09655,4.117625,1.323702,1.711006,1.711006,4.66519,3.784205,2.5191233333333334,2.206723333333333,2.84248,3.97722,3.469385,7.504666666666667,3.0607366666666667,3.231646666666667,3.0402966666666664,4.9709,1.5650366666666666,6.2789375,2.5331633333333334,2.58523,1.7923425,3.77009,2.81633,6.59053,3.460645,2.496205,4.33023,4.131784666666666,1.51646,2.83765,1.7850966666666668,7.838636,4.51357,6.597243333333333,2.2649425,4.02245,3.705465,3.846525,5.09175,3.2831499999999996,3.2831499999999996,2.12386,4.400035,5.06255,2.263205,6.229782857142857,1.5985175,5.83225,8.89246,3.418066666666667,4.461423333333333,2.2664966666666664,2.065365,0.58917,4.226635,2.53415,2.5672,3.8715460000000004,2.401015,2.3471100000000003,3.79795,5.503,5.16395,4.64498,5.23295,4.155035,2.3308375,1.0128636363636365,2.962285,3.346875,2.7501200000000003,4.87101,4.074725,3.33694,2.37653,2.0063199999999997,4.30655,1.0090325,4.95066,0.9799966666666666,5.3201,3.425745,4.513565,4.556495,3.19333,3.403325,3.1341633333333334,2.4625266666666668,4.31266,3.11849,2.80786,4.31925,4.642825,6.2557849999999995,4.745645,1.616155,3.272625,3.385185,5.543536666666666,1.9372975,1.9372975,2.955106666666667,2.523686666666667,2.42908,2.6363666666666665,0.8906470000000001,6.10795,3.49536,2.094905,2.372145,2.613255,3.90159,2.738905,3.826225,4.91867,5.26645,4.990645,6.0511,5.5622,1.253025,3.50816,1.0951,2.4554,4.359466666666667,2.621075,3.11811,3.24546,4.354565,3.407445,0.45832894736842106,4.493795,4.273025,4.735945,3.34999,5.01265,5.5512,4.21551,4.05115,1.663525,4.656335,2.1414,4.1996,4.1996,6.4224,5.4339,5.5974,5.0632,2.829395,1.5650366666666666,4.331375,2.193286666666667,1.6691933333333333,2.11862,4.09312,4.505075,4.306765,8.30178,1.5410000000000001,5.4939,1.367485,3.37284,6.0784,1.9259075,4.639285,2.53018,4.614455,3.582835,4.688195,3.1242900000000002,4.30507,4.048605,5.91925,4.231115,3.27419,3.74184,5.73695,3.8903,4.55399,3.693215,3.955675,7.505601666666667,3.54791,7.25043,3.434825,5.5301,5.807194090909091,4.80304,3.59516,1.9673525,5.4479,3.991865,0.7650066666666667,8.73642,5.93355,5.00275,3.1058658333333335,4.932735,2.88388,1.7161680000000001,4.026675,1.1306883333333333,5.5196,3.047395,4.78599,5.68295,4.384595,4.12526,2.24771,4.164815,4.996085,1.64569,6.3777083333333335,3.133725,3.26091,5.0157,4.40888,2.216255,4.401525,4.239515,4.48422,2.78486,4.061335,3.76548,5.5724,4.580155,3.3036,2.0206375,2.0206375,7.387915,1.4491999999999998,4.94504,4.15947,5.44395,3.61631,3.766145,5.0897,3.966465,0.8729133333333333,0.8729133333333333,0.8729133333333333,3.232075,3.10694,3.966275,4.516725555555555,2.71047,1.4993083333333335,4.585395,2.080995,2.780445,4.022755,4.6889,1.8091575,2.17504,5.93654,4.082165,2.83556,4.370255,1.56968,2.0527575,3.29031,2.69698,5.3755,1.396286,1.570082,0.9852075,3.52333,3.586285,3.5963333333333334,2.9605599999999996,5.3829,1.788402,2.024455,3.165265,1.4936428571428573,3.359705,3.756645,2.7018,5.90755,5.6182,2.95021,4.16977,3.632735,3.53487,3.49068,3.97494,3.63966,6.81416,5.0559,1.8034466666666666,1.7703833333333332,3.45876,4.74554,4.08686,3.425,2.9545166666666667,4.21252,5.87735,4.99618,2.7608200000000003,5.23535,4.07954,4.65535,7.8015075,4.477985,0.6989454545454545,4.12613,4.102726666666667,2.4272,4.18745,3.9302333333333332,5.79335,3.941175,3.95695,3.84966,4.2995,4.428315,4.195715,2.8638,3.774955,4.92012,3.99444,2.767725,2.8617,6.16336,5.172,1.79649,3.321995,4.334316666666666,3.844405,5.0041,4.24282,2.6091233333333332,0.8698288888888889,4.257105757575758,6.7855725,3.646515,4.677035,3.61844,7.065721666666667,3.95534,3.4413666666666667,2.588083333333333,3.804255,2.01035,3.58333,4.029495,2.6086295,3.83493,5.53775,1.4032625,4.714945,0.6599071428571428,5.84035,5.4617,6.01645,5.73445,1.4358950000000001,1.7071433333333335,4.23642,1.95061,4.86913,0.5544983333333333,5.9018,3.236585,1.551888,6.3372525,6.8251,0.8818225,1.7432905,1.2758639999999999,1.2758639999999999,1.2758639999999999,2.41609,4.579825,3.62182,3.919525,3.71447,5.17965,3.92977,1.946866,4.092215,5.14585,0.30216829268292683,3.368505,4.362975,4.9472,39.226674583333335,5.8161225000000005,5.2555,11.708202,3.76213,4.384155,7.6537299999999995,3.15467,4.805095,4.11147,4.68121,9.756875,4.2732,2.5864866666666666,2.79244,5.2977,4.196515,3.81293,4.488165,2.228785,4.70193,3.901705,6.668573,4.5683,5.15435,2.4297125,4.35828,0.52780875,1.4563083333333333,3.784465,6.23665,2.88922,1.31412,1.31412,3.530915,3.99609,4.11185,2.62039,1.8368766666666667,3.631065,4.49271,1.6908275,3.1854666666666667,1.679502,1.9770733333333332,4.34632,4.54595,2.03191,4.677735,2.0849575,2.234425,3.625845,3.762295,4.18515,4.026875,6.201955333333333,2.4276103333333334,3.85542,0.7603127272727274,0.6579141666666667,3.68709,2.216685,8.42046,3.25099,4.785625,1.6870675,4.381255,1.5413350000000001,3.881975,4.264355,2.66722,4.07736,5.4742,0.42645799999999995,0.42645799999999995,3.5273333333333334,3.0517833333333333,2.9458533333333334,3.47488,3.674435,5.13245,0.9895545454545455,9.425613333333333,10.005095,1.9795975,4.8105725,4.708065,4.848965,3.606115,2.672883333333333,1.923228,2.02439,9.741859999999999,1.9758525,2.757146666666667,3.5644340000000003,4.570165,3.5644340000000003,2.31943,2.61929,2.8515533333333334,0.7266654545454545,5.628158333333333,3.003386666666667,2.4875000000000003,4.074635,8.81862,9.818349999999999,4.35624,4.122035,4.449235,6.6655475,1.933425,1.3568875,26.966569166666666,3.8174,3.84655,0.931142,4.247125,4.235355,4.866365,4.32514,4.857995,5.6385000000000005,3.4623666666666666,2.198566666666667,0.6760529411764706,0.7524191666666667,5.0588,4.6827,1.4543483333333331,4.02259,0.8850666666666666,3.6476,1.4178633333333333,4.308905,5.57215,1.87883,2.548105,2.359615,3.671875,3.005155,0.4589511111111111,4.022635,3.608975,2.60948,3.45571,4.95298,2.78441,4.20702,2.992925,4.95744,8.202763333333333,4.812095,7.34136,2.708475,2.58773,4.391275,4.5192725,4.35803,4.546255,3.772515,4.62016,1.2671625,3.1773570833333338,3.2403554999999997,0.659458,1.711006,1.711006,4.73105,7.034133333333333,0.8398769230769231,4.9418,0.9532266666666667,2.974,2.4235266666666666,2.4809875,6.645727777777777,2.4402333333333335,1.1562777777777777,2.5999666666666665,1.20385125,2.1485600000000002,2.8876033333333333,3.1130966666666664,3.3187933333333333,2.57754,0.9532266666666667,4.36903,4.14497,5.24355,2.873215,4.58225,2.1614999999999998,6.1658,4.65662,4.02661,2.90752,3.26751,2.2913575,1.292575,4.25972,2.757725,4.26338,5.7764,1.6910520000000002,4.54092,2.5816933333333334,6.182629166666667,3.57793,2.580215,0.9532266666666667,2.47547,3.83823,7.641937888888889,2.52398,1.688932,2.52398,0.41380750000000005,1.244024,3.62803,3.383785,1.990485,3.806035,3.973014,0.6297189999999999,0.6297189999999999,0.6297189999999999,7.896625,1.597574,0.7509690909090909,2.6319,39.92454294372294,1.9418562222222224,0.7014922222222223,3.099065,0.7014922222222223,3.828855,1.96053,2.32562,2.4800166666666668,5.41765,4.379245,4.34412,2.47303,0.9220514285714286,4.394415,3.1425533333333333,5.02275,1.028792857142857,2.78975,2.78975,3.895875,3.815725,3.930245,5.351615384615385,3.270215,4.385925,5.2037,1.841192,1.117605,5.26355,6.4554,3.87248,0.698078,4.14566,4.1479083333333335,0.899865,4.493525,2.67203,3.891905,4.387845,1.864128484848485,1.864128484848485,4.48175,3.478735,0.8941666666666666,3.087105,2.958766666666667,3.40045,3.987375,4.523325,0.5647642857142857,0.34347352941176473,0.34347352941176473,0.34347352941176473,0.9082378151260504,0.5935453846153846,0.671368,0.34347352941176473,0.34347352941176473,6.92137,0.34347352941176473,0.9082378151260504,3.634655,1.3044775,4.58902,1.1904616666666665,0.5285876923076923,0.899865,2.713005,2.51305,4.018875,3.16141,0.34347352941176473,0.34347352941176473,4.507915,3.831655,4.106175,2.61855,4.07942,1.4377119999999999,3.99889,0.671368,0.671368,4.395135,3.10753,2.83182,2.85811,3.9781933333333335,1.03983,0.8510538461538462,10.073910000000001,1.1900025,4.03056,4.709895,5.303,2.05852,0.36003565217391303,0.852555,2.8241666666666667,2.861935,3.081565,4.0776,1.3173460000000001,6.1765,3.489905,4.8239175,3.91083,3.0258533333333335,2.8829499999999997,6.157948333333334,2.4902133333333336,4.888265,4.228015,3.7784899999999997,6.0502,0.539088,4.19571,3.3839333333333332,2.0148566666666667,0.6808666666666666,4.176295,4.31321,2.57727,2.40153,2.0734,4.91883,2.760355,2.903755,0.9778740000000001,0.47548307692307695,4.02814,0.3594853333333334,0.7865645454545455,4.023145,2.97576,4.203875,2.730965,4.72936,4.387635,6.249979333333333,3.848705,3.53989,4.484905,1.5666125,5.0550225,1.813664,4.060875,2.551725,5.908803333333333,2.590925,1.11738,4.32763,6.8242125,6.4406895833333335,3.3743,0.8226958333333334,2.8058300000000003,4.49409,3.878035,4.56735,4.72751,4.10973,4.37154,2.778365,4.23994,1.8248633333333333,2.224395,1.46845,3.96555,8.746775,2.99145,3.723855,5.6585,2.941895,4.24223,2.4928233333333334,2.949447666666667,3.303285,3.575005,3.78448,3.576215,3.342235,4.88415,5.6096,4.52584,4.6769750000000005,5.06465,3.973795,2.81091,5.03385,7.743025,0.9222833333333332,4.276205,4.319215,4.438545,5.21905,4.654335,2.15827,8.26347,2.5341366666666665,3.69466,5.8738,3.77148,4.378505,2.12164,1.8071575,2.7774699999999997,2.6363333333333334,2.0642133333333335,2.7404333333333333,4.096105,4.62754,4.066755,3.56177,5.094341666666667,3.3895,3.213475,3.9675575,5.7964,2.995875,5.4262595,4.099355,3.67173,3.567635,8.26512,3.759715,3.78935,4.163935,4.809445,2.975595,10.082,1.3349266666666668,2.17621,3.57426,2.7154133333333337,2.7154133333333337,1.889535,7.650078333333333,0.89845,3.10341,0.93177375,2.024455,4.317425,4.70619,3.787455,3.9823,3.0427133333333334,3.23818,3.60601,3.897515,4.415405,2.98394,2.7370900000000002,4.1541,4.869845833333333,3.76547,4.459575,1.648078,1.67705,2.6182166666666666,5.5497,2.3367825,1.7171133333333335,1.97558,4.102755,4.642465,3.11542,2.72457,0.5233455555555556,2.279985,7.143470000000001,3.229505,1.6283966666666665,0.8890875,1.2384266666666666,2.0661866666666664,2.305065,1.03796,2.168886666666667,4.4521385,4.13978,5.0476,2.442066666666667,1.9711575,6.2967075,2.911175,2.2974733333333335,2.2974733333333335,2.2974733333333335,6.499653333333333,2.27162,3.593375,2.677455,0.470208,1.144492,2.18879,5.775485,0.45853333333333335,3.788305,3.8975875,5.63295,2.9748633333333334,0.45853333333333335,2.9748633333333334,0.9535725,1.147732,5.93075,4.140235,6.849702499999999,4.08317,4.71542,3.683375,4.13308,5.0337,5.1821,6.0324,3.88749,3.504775,4.753945,4.597885,4.20787,4.53236,4.22561,1.40829,2.5150866666666665,1.13594,2.20032,3.1047327777777776,1.4915627777777778,6.8823225,5.543536666666666,2.686935,4.6192,2.887005,4.883205,2.925915,3.92543,4.98993,9.662725833333333,5.58015,4.449955,2.625275,2.88089,2.13768,0.58522,2.1554948888888887,6.04915,4.8391,4.72533,4.20306,0.54435,2.0460875,1.44176,4.465835,0.8396,6.830945,2.06901,1.1149375,1.1149375,3.6726659999999995,1.9433219999999998,3.632733333333333,2.66131,4.578875,3.5204475,3.5204475,4.22789,5.430773333333333,2.687533333333333,2.5520366666666665,3.3821666666666665,4.158915,1.8178740000000002,2.9444700000000004,5.49995,5.19825,4.52762,3.83463,3.9914833333333335,4.39748,3.618535,3.2108966666666667,2.2967175,4.11442,5.36585,3.04829125,4.71771,5.64595,2.2215666666666665,2.5725333333333333,6.17735,6.8939,1.4633660000000002,2.554125,2.25232,2.7348766666666666,2.00574,2.4840825,2.3680325,1.01319,1.9386375,2.523075,2.1655025,2.57741,2.57741,2.8832554999999997,2.799775,2.1490213461538463,2.50955,2.4077125,1.906334,1.5315716666666666,4.9693925,14.1238425,2.9117466666666663,3.7133333333333334,1.800368,1.800368,1.5926733333333332,1.5926733333333332,2.859303333333333,3.7650333333333332,3.025933333333333,1.938375,1.938375,3.6520333333333332,2.8477766666666664,1.1135466666666667,1.4673,2.89861,2.7859700000000003,3.7032000000000003,2.530994761904762,3.223826666666667,3.0826433333333334,0.666901,2.5193,3.524241,7.105861666666668,4.86414,4.398345,4.388515,3.477345,4.92924,4.73298,2.79393,4.17633,1.3349266666666668,3.1262000000000003,5.66425,5.45405,2.66812,1.1773083333333334,3.045365,2.46941,3.043433333333333,1.4335849999999999,0.7021542857142856,2.9911433333333335,4.7778125,4.783165,4.11057,4.683905,3.0672266666666665,2.1890666666666667,3.277140833333333,2.5328666666666666,3.208716666666667,3.1304233333333333,3.1464533333333335,2.61945,2.401616666666667,3.587666666666667,2.837566666666667,5.15965,4.90329,5.063040833333334,5.063040833333334,3.498675,4.008775,3.85268,3.76321,2.789445,4.89508,3.475035,2.9204399999999997,6.2079,0.797195,5.2319,4.67817,2.54957,4.598826666666667,3.234773333333333,1.6029333333333333,1.2330885714285713,2.11529,0.9334429999999999,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.2709896428571429,0.5335414285714285,0.5335414285714285,1.19918,0.7920168055555556,1.602642058080808,0.9893685714285714,0.9893685714285714,1.1653665025252526,0.4372755555555556,0.4292988888888889,1.2398975,1.5004575,2.5139833333333335,2.4855,6.718543333333333,2.9418399999999996,3.929595,3.5828283333333335,4.743230285714286,1.374945,4.67714,3.8992,4.90855,2.98968,1.50368,4.207915,3.679455,4.524475,4.497465,2.81249,4.416835,4.48347,4.734155,1.271136,3.901225,4.53169,3.236445,2.5175466666666666,3.42521,2.471935,3.233705,4.23237,3.2175499999999997,4.773585,8.859945,3.275955,4.877015,4.14874,4.2783,2.473193333333333,3.9772,1.1537757142857143,4.036005,3.411755,1.999094,1.15585375,2.97937,1.1238883333333334,0.5138973333333333,3.6037666666666666,4.215305,5.266866666666667,3.6780666666666666,2.47813,2.75656,4.9408,3.9614666666666665,5.05795,2.70345,2.252196666666667,4.31385,3.99863,3.907885,4.901825,4.466625,3.692505,4.86809,3.1132866666666668,4.48992,2.1218675,4.99729,5.2926,3.28868,4.171465,2.501005,3.86856,5.01885,4.037525,5.2201,4.632505,4.901125,2.1573266666666666,4.75019,5.06535,4.540615,2.39861,1.053965,4.02174,4.59913,4.07916,4.84145,1.977815,3.853125,2.18094,5.09495,4.38751,4.78701,2.188315,4.131005,4.540615,4.287675,2.5026699999999997,4.30903,4.78326,4.89248,3.498475,2.39861,2.33685,2.821535,4.3641,3.52498,4.01633,3.46257,4.847055,2.41465,6.98868,4.64874,4.127375,5.163623729166667,4.812379999999999,4.81889,3.4997875,2.551305,2.551305,3.67,3.85997,4.603345,2.198205,2.89744875,0.97718875,2.644486666666667,2.99218,2.3297966666666667,3.0645666666666664,4.41489,2.6683133333333333,5.52495,2.5586699999999998,4.12644,4.527425,1.945115,4.288135,2.4015733333333333,2.5376866666666666,4.196705,0.8656879999999999,5.13,4.73629,6.55669,5.15855,5.5516,1.2781842857142858,4.809535,6.49775,8.275815,3.1449366666666667,3.1094899999999996,1.948204,0.81136,3.896285,1.0408614285714286,4.457495,4.67259,5.3679,3.210275,4.024585,1.2377214285714284,3.50273,3.7021,4.43437,3.74201,3.379645,3.279095,2.334725,4.23745,4.670315,5.5705,4.46534,3.42242,0.3225011111111111,0.3225011111111111,0.3225011111111111,0.3225011111111111,5.55065,2.7007,6.0915,3.1218766666666666,4.87719,4.80389,3.81264,2.17952,2.5964133333333335,1.49537,5.0209,2.741493333333333,4.28189,3.715225,3.39646,1.646335,1.151395,4.33033,2.654305,5.9672149999999995,3.907215,5.3754,2.2289,1.4902416666666667,0.91567,3.34593,4.08056,3.39733,2.2336625,7.9747900000000005,4.057815,3.7092,2.2941,0.446342,3.350985,2.755435,2.127245,1.93058,3.85481,2.95938,2.52672,3.081163333333333,3.04921,3.357915,4.420045,3.300865,3.88198,3.469675,5.647538333333333,0.6138446666666667,4.516075,5.65645,4.64149,4.36053,3.2434833333333333,5.2964,4.30664,4.243365,5.5288916666666665,5.22435,4.50037,4.438915,3.8291775,4.550985,2.83192,9.29044,5.02035,3.979075,4.77782,4.798055,5.15015,3.5112,1.0743044444444445,5.677523333333333,3.113895,4.91015,1.3161283333333333,4.33739,4.08912,6.783703333333333,4.779265,3.229355,2.069786666666667,4.22702,1.8976220000000001,1.0582975,4.2739,6.40335,2.0281,2.333743333333333,2.8561266666666665,3.387565,3.58147,3.708885,5.055,1.8208966666666668,4.162875,3.8359855,3.3983,3.8089333333333335,3.72594,2.988755,2.60587,1.922445,2.453726666666667,2.6979866666666665,4.48193,0.5163449999999999,2.66935,4.17553,3.05329,3.478066666666667,4.03028,5.8417,3.78618,16.65121084848485,2.3072933333333334,3.9435333333333333,1.46149,0.8560981818181819,0.8560981818181819,0.8560981818181819,0.8560981818181819,0.8560981818181819,4.4291,4.67748,4.81974,9.037676000000001,2.4271025,2.4271025,4.425875,4.479685833333334,1.3049525,1.9419866666666667,3.943265,2.34313,2.3253825,2.0146525,3.08517,3.897616,1.8287975,3.717,0.8004714285714286,2.760283333333333,2.71313,3.0039933333333333,1.3978266666666668,3.274896666666667,2.121966666666667,0.91754875,2.8181966666666667,2.73298,1.1537666666666668,2.4615966666666664,2.54174,1.9575033333333334,4.277042,1.7760333333333334,3.0491333333333333,2.0847175,2.7222166666666667,1.0798122222222224,2.60118,4.8967366666666665,3.485133333333333,1.0939225,2.9143866666666667,1.3348625,2.562413333333333,2.6404566666666667,4.82665,2.909636666666667,2.3254433333333333,4.544772666666667,2.7643566666666666,2.217685,2.66199,2.44037,1.8160733333333334,2.878353333333333,3.4387000000000003,3.0304066666666665,2.8780033333333335,3.0553866666666667,2.631136666666667,2.3668075,3.7601725000000004,3.7601725000000004,3.05608,1.9412399999999999,1.8917,2.424603333333333,5.5257033333333325,2.8882366666666663,2.0248633333333332,1.5651975,3.074863333333333,4.131815,2.5351933333333334,1.10794,2.85757,1.4366966666666665,3.9539000000000004,2.2417700000000003,2.5583566666666666,2.12428,3.4107000000000003,1.261502,1.6899600000000001,1.5317699999999999,4.154843333333334,2.699503333333333,4.059825,1.0204377777777778,4.12876,1.99178,2.36227,1.7010560000000001,1.569265,3.1974933333333335,23.59438293290043,6.678013333333333,2.7256733333333334,3.4472208333333336,2.3919,10.080207333333334,3.1355066666666667,0.99264375,2.6272066666666665,2.4240666666666666,2.09942,2.9057066666666667,2.71138,2.5976399999999997,0.9606239999999999,3.0107533333333336,2.52203,3.0216366666666663,2.97551,2.7305966666666666,2.1277066666666666,2.4156333333333335,2.9457866666666668,2.6169933333333333,2.3339525,1.627986,5.281861666666667,4.564825,2.3545075,2.886825,2.32096,2.500226666666667,8.005806666666667,1.8663066666666666,4.952115,2.280275,1.744135,7.52017,2.8931466666666665,2.7601099999999996,2.448435,1.753724,1.4289746153846152,3.320543333333333,3.6136666666666666,4.265785,1.60563,3.7657333333333334,1.528085,1.528085,4.027765,4.39835,3.1679977142857143,3.1679977142857143,6.168083333333334,3.502625,0.418157,11.371917814407814,1.2032633333333334,0.9643228571428571,3.7151975,1.4303649572649573,1.7731925,5.9720200000000006,3.77859,0.7446109090909091,2.13857,4.931866242424242,2.4911575,3.736945,1.3146328571428572,5.39595,5.06395,4.56199,3.3972395,1.999534,2.3706566666666666,2.7356766666666665,2.4990866666666665,2.10356,4.98474,4.43159,4.395505,1.929695,4.721755,3.989315,2.93495,2.199185,4.712255,2.53964,8.5048,6.8138024999999995,1.8216775,2.508835,1.834194,4.563733333333333,4.563733333333333,3.0218133333333337,2.7831333333333332,3.289517,5.1725,9.915992500000002,4.175075,2.457055,5.4055,3.9676,5.093,1.913816,0.8100725,1.3407533333333335,4.69481,4.8987,3.6590000000000003,2.57158,3.717,2.251403333333333,3.363855,4.68993,3.3541,5.30585,3.0121800000000003,3.5981066666666672,3.3350666666666666,3.2323766666666667,3.2906066666666667,6.09995,2.8383,5.40625,5.10475,3.501295,3.343675,3.343675,5.735555833333334,11.9924275,3.6468000000000003,5.934245,7.3769961111111115,3.70069,2.6010166666666668,4.038455,1.33286,3.740025,2.31742,2.9862866666666665,2.85676,3.0820133333333337,2.11068,2.47141,2.62982,2.5916633333333334,2.8311233333333337,3.22583,3.826915,2.5435266666666667,2.9438866666666663,3.85888,2.7797199999999997,2.5331766666666664,1.164,2.0969525,2.8623333333333334,2.292613333333333,2.56049,2.484433333333333,3.385533333333333,2.2925333333333335,2.4894266666666667,2.509133333333333,3.05338,2.7087266666666667,2.80432,2.4997233333333333,3.10975,2.8160666666666665,3.3745679999999996,2.647256666666667,2.53854,2.2891033333333333,2.3711766666666665,2.5588933333333332,3.3739333333333335,3.3060899999999998,2.30979,1.9884725,1.9884725,0.7982216666666666,1.5522040000000001,3.731575,3.12211,2.6423099999999997,2.11068,3.4057333333333335,1.2429814285714287,2.60842,0.574216,3.0002766666666667,3.13034,3.368805,2.94041,2.627803333333333,2.5979733333333335,2.897876666666667,2.5804199999999997,3.3301866666666666,4.373586666666666,1.511806,2.60615,2.4788466666666666,1.8449066666666667,2.1326933333333336,2.76783,2.832496666666667,1.64224,2.6749233333333335,2.6209333333333333,2.53173,2.5602233333333335,2.6697466666666667,2.889366666666667,3.2261900000000003,1.38011,2.8745833333333333,2.379093333333333,3.7136,3.5108333333333337,2.005105,1.80168,3.2317666666666667,2.5059633333333333,3.3968666666666665,2.68941,2.4701566666666666,4.8803325,3.0341733333333334,2.0148733333333335,1.503618,3.5012333333333334,6.045246666666666,3.1239566666666665,3.5325,2.81613,3.1131933333333333,4.614501333333333,1.598738,1.0826,2.4492066666666665,1.8232583333333332,4.393805,2.7013866666666666,3.2000933333333332,2.9772166666666666,3.14671,2.1368733333333334,3.07498,2.3733525,1.5899480000000001,2.82084,3.45971,3.5965825000000002,3.20032,3.498695,1.5581275,2.851535,3.28781,2.851295,2.1827133333333335,3.5156666666666667,3.923,3.832433333333333,1.1337875,5.677821,3.2457925,1.5028683333333335,3.20969,3.199005,2.945845,3.743075,1.91724,1.91724,3.4029333333333334,3.025586666666667,3.05571,5.01545,4.254995,4.174054666666667,1.3526880000000001,2.93913,2.467636666666667,4.1330775,2.98545,4.819559999999999,2.6334933333333335,2.373603333333333,2.37369,3.589685,3.82571,1.657772,3.1387933333333335,2.87085,2.187265,4.39706,1.2450916666666667,2.97514,4.43936,2.704275,3.60898,4.16469,1.6738075,1.6074400000000002,2.4583275,1.0708183333333332,2.0656469047619046,2.043225,0.44678357142857145,3.79266,2.15433,4.48965,4.1755,2.87437,4.752025833333334,3.20922,3.1132299999999997,3.474,2.3482366666666667,2.99259,2.735023333333333,2.9509899999999996,1.9993766666666666,0.6618138461538461,2.323236666666667,0.60351,1.9116799999999998,2.4646433333333335,3.184673333333333,2.9582766666666664,1.3198933333333334,1.368595,4.044815,4.561235,3.10656,3.2623025,3.41255,1.8701775,3.819155,6.884012222222222,3.40469,5.617305,1.495865,3.897,1.7599475,4.11781,3.46746,2.01858,3.681645,2.99272,3.597925,3.93279,2.06154,3.83184,6.0912975000000005,4.930725,3.35352,3.09618,1.6859425,1.87457,3.37802,3.311425,3.20141,3.44858,3.672775,3.308565,1.5984225,3.7462,3.000655,1.6449575,4.10813,0.9773416666666667,3.24178,1.64862,3.912395,4.67532,3.68695,2.695425,3.7235,3.259085,1.9200875,2.3105,3.8032,1.884575,5.4660925,4.03362,4.42295,2.577945,2.74779,4.38187,4.43566,2.308422,2.308422,5.611745333333333,3.611082,2.50672,2.91202,2.0017033333333334,2.724625,3.267335,3.6167066666666665,2.561317,3.211335,1.008176,3.47859,2.980025,4.119065,2.42904,1.47229,1.289805,2.99273,5.71122,5.36343,3.48886,1.38554,3.62536,3.380895,0.765335,2.967655,1.17202,5.41664,1.355755,3.772585,1.8795575,1.3198933333333334,2.65717,2.33079,4.32745,7.021476666666667,3.796135,4.204031666666667,2.337235,2.850155,3.986245,3.693095,4.50717,4.24354,1.0044675,1.64885925,1.03421625,2.2743,2.04134,4.745985,1.03421625,4.36199,2.222915,1.3431775,1.3431775,1.6449575,3.641205,4.344055,4.0609,1.451354,1.451354,0.8978033333333334,2.950195,2.076395,6.033995,4.051805,3.47105,2.6005833333333332,0.9856,3.528665,2.79885,4.29227,3.426505,3.9239675,3.9239675,3.41628,4.08871,1.7681175,2.47179,0.9860211111111111,1.7134533333333335,3.454945,2.285836666666667,3.4475558333333334,3.4475558333333334,2.802225,4.597435,4.632355,3.195705,3.646805,4.18909,2.4631233333333333,4.327890833333333,2.641085,3.647755,8.40371,5.07345,2.714265,3.16811,3.05484,4.837795,2.971298,7.68754,4.273305000000001,4.32766,3.35453,3.834,3.748615,4.317075,4.83248,2.183925,4.08999,6.087422500000001,2.505945,2.0347324444444443,3.025465,3.357175,3.419055,5.21255,2.1036266666666665,2.05632,2.529055,3.0368399999999998,2.7694500000000004,6.404554666666667,1.3656425,4.895601666666666,4.895601666666666,3.25498,3.7958833333333333,3.043925,2.398283333333333,4.46906,4.029011,1.9902859999999998,3.898775,4.00705,3.457444166666667,2.85111,3.099685,5.982081666666666,3.47841,4.983745,3.078495,4.176895,4.11775,3.701895,3.025586666666667,1.96164,2.54766,3.961755,2.86553,3.2951816666666667,2.943195,6.115783333333333,2.434235,1.6216625,3.053669166666667,2.3573566666666665,3.661685,2.883825,0.765335,3.04763,4.085095,3.928735,5.9574050000000005,3.038455,2.98449,2.931373333333333,2.931373333333333,3.6035575,4.03578,3.650925,2.1174075,5.73037,2.0587675,4.56532,3.488015,7.63125,2.82032,1.1419166666666667,3.262275,4.43143,0.607825,4.031475,2.94166,2.904515,3.157355,4.28887,2.1543533333333333,2.53467,9.15115,3.49923,2.77978,1.355755,3.41681,2.683135,2.169165,4.06415,5.240665,1.639645,1.1348,0.9617583333333334,4.125645,3.530265,3.11343,3.3122,3.3122,1.5984225,2.31192,2.9483822222222225,0.7839022222222222,2.820325,0.9160825,1.5581275,3.00706,3.353125,2.522365,2.52722,2.2489266666666667,4.064135,3.25893,2.9288,2.992795,2.6098,4.29291,6.881164999999999,4.09852,0.8646825,2.669966,8.77174,4.58777,3.951375,1.0655125,4.54572,1.4050633333333333,3.2264375000000003,3.2264375000000003,3.632065,8.183980833333333,0.8055366666666667,4.81403,4.549805,2.256276666666667,4.06601,3.687285,2.15762,9.593779333333334,1.673165,2.31558,3.01666,1.6420533333333334,4.175594333333334,2.58597,2.849265,2.9160079999999997,2.71999,3.328285,1.020435,7.27302,3.924825,3.928645,3.739625,1.8502825,2.695425,3.4639349999999998,3.3938,0.5980946153846154,3.581235,4.295945,4.65644,2.060245,1.185338,3.972625,4.300845,8.82438,0.7623438461538462,0.622285,0.622285,1.6667766666666666,1.4894999999999998,1.424578,1.8275666666666668,4.519455,1.2157033333333334,0.8556,4.0177725,3.53406,1.2526475,3.482725,4.6811,2.92305,0.722834,1.88566,9.150875,3.698501666666667,3.399825,2.10237,1.5035275,2.5492500000000002,2.48201,4.476555,4.565515,3.82158,0.8640985714285714,1.505938,0.9156040000000001,4.2353974999999995,4.373705,4.12446,0.7839022222222222,1.68099,3.674135,2.261698571428571,4.518268333333333,0.970355,4.665095,0.6234716666666666,0.6234716666666666,0.6234716666666666,9.315059999999999,4.032405,0.9160825,3.833315,4.617595,2.65225,3.12622,4.437695000000001,2.83113,1.800821111111111,1.7112833333333333,0.722834,1.488169,0.5320111111111111,0.8363516666666667,1.2150083333333332,3.411315,3.637995,2.0241925,7.333873333333333,4.8972975,0.5811544444444444,5.87825,5.121090000000001,3.36443,4.528115,7.887680666666667,3.759925535714286,4.8972975,4.513305666666667,2.305973333333333,4.273885,3.629255,6.792145,3.425345,0.446342,1.453578,3.681225,1.794192,1.1348,3.9688,2.4345166666666667,1.701755,3.178025,1.70098,4.301585,4.394165,3.979475,4.79019,6.33151,2.671225,3.88341,1.17202,2.1611075,3.55179,3.087215,1.9902859999999998,3.95482,2.51407,4.772655,2.970795,2.419315,3.3111625,1.7841360000000002,3.566385,0.7839022222222222,2.1945989999999997,0.9617583333333334,1.64624,3.46237,1.3656425,1.2150083333333332,2.068435,2.82167,7.49748,0.8640985714285714,1.0655125,1.2027100000000002,3.658145,3.500695,1.2027100000000002,4.03978,2.1611075,0.607825,0.7839022222222222,1.6667766666666666,1.17202,0.44678357142857145,1.6910560000000001,4.231865333333333,2.256276666666667,1.3604383333333334,2.7997,1.1337875,1.673165,2.54107,1.7112833333333333,4.442005,2.54107,0.765335,2.7492289999999997,2.356705,0.08229818181818181,0.08229818181818181,0.08229818181818181,0.08229818181818181,0.08229818181818181,3.5105,2.7774966666666665,2.5340833333333332,2.67985,5.2181,3.99222,1.7010560000000001,3.782385,3.621745,2.13771,5.07964125,2.8271,2.47469,2.491165,2.723245,4.52663,7.7986683333333335,2.2277425,1.9590100000000001,3.242828214285714,1.0080957142857143,1.3810983333333333,2.4871133333333333,1.9974533333333333,1.497905,2.7494666666666667,2.180823333333333,2.592093333333333,2.7126,2.6487233333333333,3.87853,3.36282,2.6361933333333334,1.24295,3.614645,3.701185,1.5343566666666666,1.37082,1.37082,1.37082,3.41721,2.6324666666666667,1.1136066666666666,2.165226666666667,1.2255014285714285,4.39593,1.5615433333333335,6.211074999999999,3.4808875,2.66822,3.1346380000000003,3.1346380000000003,5.230206666666667,2.84371,4.335825,4.957245,2.0881725,3.10797 +GSM1946764,0.0,1.959395,1.959395,1.5594266666666667,4.543965,6.17235,2.4211247368421054,1.70497,7.824297205882353,4.70734,3.30147,3.655,2.220405,3.426415,4.51091,1.9044440000000002,1.548912,5.16275,2.4224366666666666,2.3311475,4.77718,5.361608333333333,3.888985,2.41923,1.8703980000000002,4.420745,4.79507,4.22476,0.7082783333333333,1.670563611111111,2.090876111111111,2.0898925,1.589225,1.1654785714285716,0.6924341666666667,3.1347010714285717,1.510375,1.9680525,1.191865,2.102715,1.2412925,1.09949,1.097114,1.527748,0.941564,0.92605,0.723256,1.2350428571428573,1.735962,1.8503479999999999,1.551886,1.874548,1.6787299999999998,18.85758691666667,0.37825133333333333,0.854258,1.1156840000000001,1.779696,1.596918,1.8013100000000002,1.0386785714285713,1.0386785714285713,1.0386785714285713,1.1483183333333333,1.011728,4.8787075,1.222385,2.506725,2.084455,2.62365,1.00284,2.23723,2.3224275,2.04853,1.5547075,2.09044,1.5569075,1.6434475,2.3931033333333334,4.047375,4.797145,5.4426,1.5650933333333334,4.82845,4.540076666666667,4.38027,4.03857,1.09157125,7.39797,0.57107875,0.57107875,2.3280625,1.1981228571428573,16.1742,4.79862,5.6676,5.71575,4.41465,4.16082,5.4187,0.48324055555555556,2.4141320833333335,1.8710875,2.3973025,4.662065,3.881565,1.5361,3.3017466666666664,3.4301999999999997,3.2108566666666665,3.6306666666666665,3.31072,5.08525,3.0308635,4.819445,3.0315066666666666,0.7197254545454546,1.6303439999999998,2.694625,5.04865,3.7193,0.582844375,3.567405,3.91296,0.83478,4.953365,1.7444815584415587,2.266825,2.8839,2.0822175,4.265835,5.7535,3.25074,2.8725533333333337,3.4108,3.0131,4.271515,3.2581,5.6677,3.43132,4.725865,3.40535,2.80504,3.563745,2.6297,6.775781666666667,3.42991,4.0111,5.4591,3.072425,5.24355,0.7718922222222222,9.834610238095237,3.645535,1.8602800000000002,1.8765100000000001,3.405666666666667,2.372,4.95549,5.5902,2.1012275,5.112488333333333,2.736965,4.8521,2.1012275,2.8436766666666666,4.353985,5.312021666666666,4.17324,9.041416666666667,3.52387,4.97744,2.938215,5.2945,4.8162,1.9013166666666665,7.95541,4.41391,4.24617,3.5719,3.54828,3.318225,2.187825,6.310805,2.281075,4.06181,4.021635,5.4715,5.1314,3.801435,1.5772116666666667,2.68382,2.890755,1.9005625,1.9005625,6.176571714285714,2.985225,1.9107566666666667,4.320935,4.785705,2.74465,1.4639783333333334,0.8615044444444444,6.8798,2.847665,6.925,3.18826,4.267905,3.7284,2.89982,3.777385,3.558135,3.79127,4.20224,5.83815,2.777765,3.65177,9.045476666666666,5.1688,3.6072333333333333,3.1670166666666666,2.7651800000000004,4.0384,4.614148333333333,2.128395,2.770713333333333,2.3261833333333333,1.868112,1.7255133333333335,2.5736266666666667,1.6930425,2.018455,3.1692733333333334,2.9099733333333333,2.407713333333333,2.7631566666666667,4.540076666666667,3.448155,3.577135,3.625845,4.640395,1.3613733333333335,1.84221,2.8286288571428573,2.18634,2.5167699999999997,2.2626233333333334,3.3990666666666667,1.8762180000000002,1.32051,2.77378,0.684656,1.6117133333333333,0.54237,0.54237,1.46403,2.6609933333333333,2.393196666666667,1.5445133333333334,1.5422733333333334,0.3361961538461538,2.6376,0.684656,1.2641366666666667,0.1991510810810811,1.43703,2.0041725,3.5281333333333333,2.1747166666666664,2.16544,2.4949,2.2060333333333335,2.369806666666667,2.5076199999999997,2.339376666666667,2.1774733333333334,2.6834399999999996,1.90702,2.65511,4.06058,0.6751683333333333,1.8378933333333334,2.5633666666666666,2.02284,3.3510066666666667,1.461498,2.5173666666666668,2.1334566666666666,4.242923333333334,1.9787566666666667,7.038375238095238,1.7284285714285714,2.79035,2.06534,2.13107,3.500033333333333,2.0335475,1.8138225,4.352195,2.7028700000000003,2.166565,3.96517,4.22704,4.37331,3.69019,2.231275,3.31904,4.612400666666667,3.84219,3.841255,4.293735,4.49291,2.98093,4.62353,3.33324,0.8762075,4.937465,1.2197216666666666,5.07475,3.709665,5.805906,3.700825,4.161915,0.93461625,2.190525,3.49394,4.05104,0.7870614285714286,1.198228034188034,2.221407619047619,3.8284714285714285,5.3606,5.648764,2.318765,3.22568,5.2728,0.33482214285714285,3.4008,2.34452,0.99142875,5.1006,2.02624,11.81972,1.2709,1.4325575,2.4169133333333335,2.29733,2.176769342105263,4.977829342105263,0.40947684210526314,1.6671733333333334,2.8899399999999997,1.025085,3.8289666666666666,1.0681714285714285,5.41475,3.777025,2.0533066666666664,6.17535,5.7882,2.621625,1.1208914285714286,4.38303,4.983865,4.199015,0.8763363636363636,8.182333333333332,2.976933333333333,4.39575,2.6503166666666664,2.5418933333333333,4.470555,2.35106,2.8244900000000004,2.2400066666666665,2.46162,3.31477,3.0435866666666667,0.342286875,3.94466,3.74719,3.83247,3.66679,4.46662,6.129611,3.988305,1.6450975,5.58095,4.740285,4.28147,4.498205,1.26742,2.61977,3.3534,2.4614733333333336,15.543144999999999,3.1166,3.745535,4.60998,5.8806,2.521285,5.200135138888889,1.6336925,0.7815277777777778,2.7558,3.65946,3.88359,4.19703,6.504413333333334,3.0528666666666666,2.247925,2.10356,3.4699333333333335,5.0219,2.266285,0.3782650892857143,2.991317608695652,1.9371025,1.148945,0.5631113936335403,0.7479576979813665,0.3782650892857143,0.3782650892857143,0.3782650892857143,1.14337,1.3125025,0.91146,1.384495,4.3932125,0.21872823529411764,11.504439713203464,3.6038,2.9247566666666667,4.47952,4.517505,3.852385,2.14294,4.8907,4.106902333333334,4.337575,4.1634,0.7008176923076923,3.3692666666666664,4.226689743589744,0.5597935714285714,3.142435,2.9464633333333334,4.74678,0.5082363636363637,1.76546,4.60478,3.38527,2.0395025,1.7819233333333333,1.6008866666666668,3.3371,3.849445,2.98571,2.79778,5.3963,5.8471,4.95798,3.3633666666666664,3.1334655,6.607258333333333,3.7202333333333333,5.23745,0.41387857142857143,3.2758766666666665,4.0240149999999995,1.9922866666666668,2.53181,2.8286750000000005,5.738056666666667,0.6682008333333332,2.785725,4.590685,4.31936,1.0227171428571429,4.93433,2.749765,4.914515,3.1947266666666665,4.418885,3.462645,4.14563,1.1637116666666667,3.482,2.67993,4.88642,4.231535,4.70644,5.8536,4.379245,2.624555,5.74353,2.3109266666666666,3.319235,3.2282433333333334,2.8961799999999998,2.78415,2.1971133333333333,1.8325,1.5768833333333332,2.0624866666666666,0.7772771428571429,1.5554966666666665,2.5765833333333332,2.1134633333333332,3.09761,3.2772400000000004,2.956236666666667,0.9796366666666666,5.222,3.4781666666666666,5.45043,2.6594866666666666,3.2498133333333334,2.9559166666666665,1.86925,1.86925,2.628666233766234,2.628666233766234,3.4907573051948053,0.5094357142857143,1.7084566666666667,2.43162,3.7484333333333333,2.1476419047619046,2.1476419047619046,2.1476419047619046,7.624236607142858,4.45840238095238,0.9744727272727274,2.97721,5.241020833333334,2.47541,4.94498,3.14436,2.32699,4.27455,3.051363333333333,3.2065066666666664,1.08243375,1.82062,3.5958666666666663,2.3653166666666667,2.5225433333333336,5.9874,4.294133333333334,3.9017666666666666,5.100906666666666,2.061783333333333,2.8403899999999997,3.1764500000000004,1.0636033333333335,2.1370133333333334,4.727926666666667,8.0081525,1.5730525,2.85337,4.93304,1.894486,1.92687,1.92687,1.0608125,4.70463,7.88795,4.33133,5.180256,4.60615,1.7983333333333331,4.287175,3.636365,5.0481,5.191216666666667,0.35158263157894737,2.9071,2.53902,4.28366,3.9079,1.895554,1.9226725,2.588425,4.429505,4.055375,3.322405,2.333415,1.499526,6.82584,5.1007,4.825015,3.541,5.19945,4.912535,5.1897,3.63986,3.5407425000000003,1.927155,1.2088142857142858,2.702275,3.96429,3.81093,5.467897499999999,5.7193525,2.2978575,1.7353666666666667,2.627126666666667,2.6697566666666668,3.04163,0.6729121428571428,2.05085,3.5009,1.1919875,5.25135,3.15536,6.007225,1.192304090909091,1.192304090909091,4.117855,3.62144,3.7495,5.52185,2.728953333333333,2.2209233333333334,3.56987,3.064605,2.1464125,3.5177,2.59122,4.06144,3.6354800000000003,3.954335,4.71275,1.0847077777777778,2.704615,4.26446,4.944965,3.199365,2.4713166666666666,1.873425,0.8896122222222222,0.8896122222222222,0.8896122222222222,0.8896122222222222,1.6773355555555556,3.7797074999999998,3.7797074999999998,1.86427,6.794921666666667,3.65658,4.374025,3.251473333333333,2.758925,5.0535,4.11898,4.83502,5.3629,1.8156075,4.09105,4.04606,2.696565,3.2804,3.343145,2.73173,4.092915,1.850215,4.91434,1.65584,3.4901516666666668,2.96741,1.786115,1.1306783333333332,2.827875,4.54647,1.4501279999999999,0.8284444444444445,3.982335,1.1866475,5.096876666666667,4.57029,1.3746957142857144,3.51083,0.7355011111111112,2.6207533333333335,2.745506666666667,2.6320566666666667,2.46539,4.116045,2.8930066666666665,4.97472,5.6561,4.206325,4.556625,2.2870225,1.3005757142857142,4.038385,5.1504,1.4696975,1.4696975,4.022895,0.25881466666666664,2.0653833333333336,0.25881466666666664,0.25881466666666664,0.25881466666666664,0.25881466666666664,5.5036,2.6427666666666667,3.324375,3.53563,3.18214,4.7244,2.65539,0.9533175,0.9533175,0.970735,0.970735,3.675095,1.81747,4.53744,1.73208875,1.73208875,5.69376,0.5177714285714285,2.593175,7.497726666666667,4.90095,3.205635,3.75037,1.03535375,2.19022,2.0460575,4.71384,4.46384,4.20971,3.70966,1.291882857142857,2.92775,2.0237225,7.4051,1.71668,4.40515,4.83778,2.92115,3.81376,6.18316,7.61296,4.08187,4.832225,4.255155,2.5939,3.118355,2.32122,2.348585,1.8136,3.739835,3.594955,5.704458333333333,6.52568,4.61529,1.0606233333333333,1.786585,4.080985,4.1806,2.15207,4.60422,3.80604,4.6998,1.76098,4.0123,1.5542566666666666,6.321086666666666,2.838573333333333,2.38482,2.3186666666666667,2.38966,3.122866666666667,3.4147,3.4751,3.1374566666666666,3.444366666666667,2.21524,3.89304,3.128075,3.038345,0.4001665,2.929885,4.293985,2.667675,5.72845,4.972095,4.77251,6.965057999999999,4.938715,2.227516666666667,4.42896,5.2197,1.62709,4.681685,5.5094,5.2765,4.931235,3.2299,5.5312,5.1503,4.249875,5.567126,8.144375,4.326445,1.2860183333333333,1.4258066666666667,2.658865,1.9516079999999998,4.628,3.979575,5.493845,2.59418,2.36507,2.7475166666666664,2.43014,2.5997266666666667,1.0474833333333333,0.5016435294117647,3.994535,3.959645,3.8046666666666664,4.03778,2.948915,3.4450000000000003,5.586598333333334,3.1356633333333335,0.5946176470588235,3.231415,5.72175,1.94781,1.682832,3.6763,3.385305,2.4480766666666667,3.9134666666666664,4.154665,2.61529,2.2059533333333334,2.3236733333333333,2.48224,2.63471,4.008571666666667,5.1154425,6.801490166666667,1.528732,4.99721,3.5210954166666664,5.437942416666666,2.763033333333333,2.953145,2.29751,1.9276200000000001,1.387255,1.387255,2.62717,2.3809400000000003,2.5858666666666665,4.41272,1.639198,2.37635,1.90359,0.52920875,3.705845,0.6643791666666666,0.98000625,3.172295,4.482055,3.60499,1.775225,4.826405,3.4039,0.7946642857142857,4.62496,4.01765619047619,3.4161,2.499535,4.866945,0.2886486206896552,2.3014111666666666,3.059735,1.3871125,3.57545,6.7894,2.33199,1.2820166666666666,4.693385,3.736995,2.71912,2.71912,3.39198,2.695775,4.924025,5.647721666666667,5.0629,0.9974022222222223,2.9008833333333333,2.307986666666667,4.971275,5.27115,5.604,4.94122,4.365933333333333,3.9831,3.843666666666667,3.667033333333333,4.175033333333333,3.015143333333333,3.15559,0.6409807142857142,2.455565,2.472255,3.475675,3.24657,3.3443666666666663,0.7533124999999999,2.65423,4.0275615,4.71141,5.9584,5.04,2.0823575,2.0823575,0.8919900000000001,3.568375,4.65047,4.06769,5.228517142857143,3.16743,5.0235,0.5844072727272728,3.124185,4.048465,4.49061,3.7939716666666667,0.8441971428571428,3.05314,4.19276,5.67825,3.721415,5.02905,2.729225,4.144155,1.565525,0.9661914285714286,2.7434100000000003,5.36545,4.48007,3.14908,1.4247699999999999,4.025535,2.502825,2.891875,2.7135833333333332,3.0419366666666665,4.453643333333334,3.04701,1.768618,3.5916,1.4143221428571429,2.8753166666666665,2.50955,2.3377575,2.927466666666667,2.9626699999999997,2.3037199999999998,2.879963333333333,3.797135,3.0838433333333337,3.593663,2.4504233333333336,1.80944,4.098,2.9657199999999997,2.3817366666666664,3.593663,2.5258266666666667,0.8288163636363636,2.4500225,1.0565566666666666,2.23568,1.63084,0.9347272727272727,1.8939175,1.9190025,2.6489469999999997,2.7609,4.811425,1.50457,4.813245,3.2866999999999997,1.578888,2.3708,2.6060933333333334,1.9366933333333334,2.8715166666666665,2.9045966666666665,2.611410909090909,2.03631,1.826958,3.6588666666666665,2.4289666666666667,3.0115066666666666,3.1897066666666665,3.252076666666667,3.6430000000000002,2.252946666666667,4.2094,3.6129333333333338,3.9079333333333337,3.065606666666667,3.6085666666666665,3.7967,1.7759133333333335,10.283750000000001,4.475475,4.45246,3.0479,2.869525,1.936905,3.894495,1.7155799999999999,4.120165,4.548685,1.3756220000000001,2.5311533333333336,1.135505,2.429136666666667,1.6261299999999999,2.5586766666666665,5.034528333333333,3.216136666666667,3.599225,5.0759,0.73221125,1.6279219999999999,1.02825,3.528835,10.832805,3.816133333333333,6.8212,2.0168,5.3517,4.6106,2.621325,5.1267,0.2862635294117647,0.8236085714285714,5.425,4.467605,7.3361675,2.1097175,4.27753,5.87205,4.696605,4.619065,3.676255,4.765425,3.90124,5.923375,3.892895,3.68246,3.126855,2.0835966666666668,1.91393,1.4491129583333335,2.4855266666666664,3.848,5.06075,1.515188,8.91765,2.2230266666666667,2.9198091666666666,1.042186,1.042186,7.402585416666668,2.86018,2.2085175,2.217025,2.6491366666666667,2.16986,1.0500466666666666,3.669424166666667,2.7651533333333336,0.5583228571428571,1.7893866666666665,3.4098800000000002,3.4098800000000002,1.1343833333333333,2.5057733333333334,2.318243333333333,2.715215,1.32352,1.8078266666666665,4.770788,2.724266666666667,2.7719,1.375455,1.375455,4.376105,5.70845,4.65722,3.287235,3.6434,5.8519,2.70482,3.1661099999999998,3.2625766666666665,3.925935,1.2057933333333333,3.4263999999999997,2.712625,3.70271,2.1515633333333333,4.82089,3.420785,4.14148,3.585205,5.590613,0.9669500000000001,2.091395,2.01204,3.503115,4.44778,3.697015,3.967815,4.035315,2.915195,1.6835725,4.178935,3.2563,3.50607,2.3981666666666666,0.82497625,3.306345,4.33465,4.943,1.2002033333333333,3.10576,2.6468766666666665,2.162056666666667,1.7077794117647058,1.7077794117647058,1.13069,2.2081766666666667,1.108702857142857,1.349332,4.75078,4.6887,0.5086809523809523,3.53418,3.3917,3.92132,5.58545,0.4166525,9.338854999999999,5.61395,3.327525,4.342945,4.56405,5.539917142857142,5.1351,7.09083,0.7152227272727273,2.88664,5.50865,2.872116666666667,2.0114225,2.01356,4.67917,5.4638675,2.4828203571428573,3.291173333333333,3.2906433333333336,2.0522875,4.65758,11.1073,8.745122916666666,3.985466666666667,4.562955,3.1727066666666666,3.037275,3.87548,1.941608,3.0596866666666664,3.69865,5.00665,5.09655,4.91758,6.705353333333333,2.4820433333333334,4.96549,4.657865,4.83203,4.92669,8.033168333333334,4.1244,6.08715,3.415895,2.945455,2.925075,5.84955,3.71931,5.1382,2.193285,3.264416666666667,3.3791,6.0601,4.191485,4.15027,1.42933,0.89642,2.500025,0.608196,3.60483,3.63221,3.36314,2.954025,2.1618999999999997,3.081175,2.5393,2.970136,1.846612,3.1536437499999996,2.899175,2.263355,2.5891,3.7870280000000003,1.5231733333333333,3.1063108333333336,5.46105,3.6734000000000004,1.4347625,2.757873333333333,3.8350091666666666,3.8603620000000003,1.5861,5.67105,5.63745,2.2948066666666667,2.962986666666667,31.16229937309749,3.3896333333333337,1.7187833333333333,3.9959666666666664,1.54689,2.62724,2.9273733333333336,3.5069666666666666,1.94255,2.905625,2.1513275,4.034295,3.516666666666667,2.571975,1.48137,2.21206,2.903525,0.38540500000000005,1.0708025,3.043003333333333,1.8300260000000002,3.30842,1.5861,2.3256433333333333,26.07030644444444,5.22425,3.85488,3.562025,2.72215,2.5521,2.7598233333333333,2.3823975,3.9615,5.385332999999999,5.3771,1.617298,1.8631280000000001,2.12236,2.497045,3.852355833333333,5.4138,4.84301,4.45318,0.20147744680851065,5.13025,4.9487925,3.77838,9.23222,1.048885,1.048885,2.9933266666666665,2.89847,5.62225,2.041462222222222,1.0595855555555556,4.73017,1.8603375,4.17229,4.262985,3.42067,4.18002,3.90854,5.2397,2.76906,0.7186322222222222,3.18153,2.1200441666666667,4.20098,7.864125,4.5001,1.8326,1.8326,7.180685,4.995535,4.07538,5.71645,2.2661599999999997,5.421703333333333,1.3850300000000002,1.55074,3.010353333333333,1.9673800000000001,2.783485,2.7458833333333335,3.758535,4.4794374999999995,3.950745,5.42925,2.318095,2.780875,1.9299725,2.675375,2.450495,2.0476025,2.087765,4.691669166666667,1.809125,3.296678095238095,2.2597766666666668,2.9750333333333336,2.56789,1.9491566666666669,1.4287714285714286,0.996486,2.52664,3.8729333333333336,0.768105,4.611815,1.759915,5.73431375,1.9253575,1.4186675,1.3716625,1.4776533333333333,5.675231111111112,1.9281320000000002,3.0927433333333334,3.6008999999999998,1.282525,1.7666875,4.896092666666666,3.2495166666666666,1.9924933333333332,3.579,3.0185133333333334,3.0378233333333333,1.2420519642857144,0.2732825,0.2732825,0.2732825,0.2732825,0.2732825,3.80481,2.7566733333333335,2.5261,3.426266666666667,1.40338,2.6113666666666666,3.3223633333333336,2.413046666666667,3.636585,2.82302,1.7815833333333335,2.979616666666667,3.2806033333333335,2.277975,1.9283725,3.52598,2.64157,3.6767,4.99554,2.681783333333333,2.52817,2.5326999999999997,11.151203333333333,4.878545,4.59356,5.0872,4.505585,2.7819299999999996,4.983685,4.07135,4.602755,5.581123333333334,4.282055,3.196835,2.3762,3.826785,5.3838919999999995,3.827245,18.17051719047619,1.19734625,4.22285,0.8387344444444444,1.300625,2.951275,4.501205,4.19486,4.897545,1.6604583333333334,2.414765,4.069995,2.1402933333333336,4.72322,3.2988764285714285,2.73669,0.6332283333333334,2.9421533333333336,4.690545,2.45896,2.52255,2.2201625,20.3838375,1.416928,1.3834875,2.6586633333333336,0.31038269230769233,1.8212725,2.9828833333333336,1.98743,3.11466,2.69775,7.7993875,1.8529075,2.5558,2.21777,2.24474,1.5966766666666665,3.548033333333333,3.062605,3.758605,3.3180099999999997,1.9573775,2.596255,3.2072255555555556,4.98466,0.45636583333333336,3.6192666666666664,3.08826,2.914025,2.141305,3.664595,3.419975,1.5328600000000001,2.2934733333333335,2.17571,1.51424,1.9209033333333334,3.39282,3.21601,0.7857383333333333,3.20389,5.2165,4.240175,2.2405340000000002,2.2405340000000002,3.0430200000000003,4.570295,3.180555,3.27881,2.300275,0.8918381818181818,4.341735,3.58175,6.15965,3.75563,2.328182,2.328182,1.369855,3.599345,5.13495,4.363485,4.19813,2.9978466666666663,2.333903333333333,4.41903,3.524525,4.146915,2.9648299999999996,2.5435866666666667,4.205714666666666,3.2165933333333334,2.636086666666667,1.90729,3.86493,2.722,1.59711,3.709705,3.489895,4.744035,3.6654666666666667,4.90323,4.51252,6.49278475,3.960615,2.09502,4.946365,3.139815,7.365914999999999,2.590176666666667,1.3371633333333335,4.482575,3.5519,5.1399,0.6601557142857143,0.8766333333333334,3.508,3.659665,2.190151363636364,4.17963,2.71799,2.963765,8.984488,1.955288,1.191642,3.74113,2.79188,3.249705,5.0893,6.1669149999999995,3.141955,2.0987033333333334,3.18365,1.8252899999999999,3.3959333333333332,8.481493645320196,0.8441673809523809,1.00317,4.801315,0.5223733333333334,1.7744425,2.3089,3.00315,3.055925,2.968025,4.677045,2.4646625,13.335370000000001,5.3064775,2.4393525,2.4393525,4.288505,0.830345,5.3021666666666665,4.1404,4.201345,6.125451666666667,3.490155,5.2632,1.5044383333333335,2.678215,2.66777,2.576835,2.941735,2.86929,3.010185,3.539825,3.520905,3.08439,2.91004,2.915805,4.42762,4.519485,3.1114599999999997,3.3127833333333334,4.9957650000000005,4.250865,19.15747880952381,12.204318095238095,3.2977285714285713,0.6979574999999999,1.5035857142857143,4.512035,3.43989,3.0851068910256414,2.147075,0.9223933333333333,0.6576566666666667,0.627207142857143,2.08031,1.590046,5.185573333333334,3.3316133333333333,0.6973127272727273,3.29395,2.371155,1.91533,1.792322,6.81248,1.506412,4.53756,3.274175,3.058073333333333,2.33153,2.5520633333333334,2.5501400000000003,0.8052072727272727,2.896095,3.1881233333333334,3.9299773333333334,3.0748433333333334,7.4963879166666665,3.57014,3.36321,2.44908,3.300715,6.747299999999999,2.120945,2.50145,2.589075,1.566955,2.6266,2.1220125,2.80855,0.938616,1.4334075,1.0784425,3.06969,4.47154,6.16865,5.50285,3.192285,2.5003,2.958475,3.3282633333333336,7.918616666666667,1.1225366666666667,0.409524375,3.50011,2.0421633333333333,1.543396,3.5144279999999997,1.264864,1.9601709999999999,4.2765249999999995,3.1606526666666666,1.1964233333333334,1.7965633333333333,3.7116083333333334,3.50978,4.646155,4.42701,2.1624325,5.2083,4.11514,0.8066307692307693,4.733995,3.94209,4.55461875,3.3938666666666664,2.40774,1.23977,1.3660025,3.480995,2.64359,3.21906,4.11603,2.698925,2.6086199999999997,3.090355,3.67787,4.51924,2.426945,2.65898,4.72889,5.9474,0.60545125,4.44054,1.920505,3.42943,4.173066666666666,2.1736775,3.055185,2.1708075,1.913165,2.58548,2.3497675,1.8955666666666666,5.3463,3.626285,1.3207985714285715,7.0267,1.1137266666666668,3.745135,1.7153766666666668,4.571125,4.177455,3.30016,3.04363,4.11007,8.25144,2.829665,3.58923,4.01683,3.595055,1.667525,7.79288,3.449435,4.353795,1.365195,3.945705,2.98294,1.1031475,2.11966,4.203805,2.33461,4.14126,4.888295,4.1725,4.666025,2.2027575,5.25475,4.0415,3.4831333333333334,2.576443333333333,1.5680999999999998,4.283245,6.19865,4.48338,4.413185,3.043685,2.35127,3.99642,3.418535,1.174699065934066,4.105775,4.689210833333333,3.90874,2.92336,3.50013,0.5423157142857142,0.5423157142857142,5.29035,4.38789,4.95496,2.51193,3.766205,6.02585,0.8257110000000001,4.48963,4.946885,4.717405,5.0869,5.0013,1.7879225,2.965945,2.155565,4.33281,0.70013125,4.17198,4.361675,2.729035,2.8621466666666664,4.387865,2.21118,3.29965,60.98271556709957,3.245495,2.5568633333333333,1.6882225,3.17182,3.930295,0.81804125,0.97240625,2.3487075,2.3487075,1.309766,3.254935,2.34398,3.8077360000000002,7.65438,2.97613,1.2177071428571427,1.408505,2.8012533333333334,4.131588333333333,0.948687,1.913685,1.3165,2.0338475,4.37146,4.32271,3.15699,21.529691257575756,3.743455,3.857795,3.230865,2.19035,2.99609,3.05192,2.606025,5.41147,1.485088,4.27424,3.284981023809524,5.9776074999999995,2.0419,2.584275,1.87469,4.573315,2.423436666666667,2.1745675,2.099673333333333,4.023968333333333,3.53026,3.23006,4.12984,4.605765,2.597975,2.813145,3.00801,2.816495,2.9333083333333336,2.273805,2.0848,3.346805,1.1437633333333335,3.683195,4.840755,2.728525,4.96053,5.0311,5.2476416666666665,2.1456233333333334,2.39218,2.641435,2.699925,3.94812,3.314145,4.717555,0.7422871428571429,4.219149333333333,2.994895,3.85364,2.458435,1.7353999999999998,3.647806666666667,1.2009333333333334,3.127785,4.423435,1.16697,3.612735,3.86733,4.78079,6.5378925,2.120725,2.874785,2.6190933333333333,3.8519,3.10617,2.5842533333333333,3.274343333333333,2.43802,2.3437666666666668,1.2113733333333332,2.167335,2.167335,1.9128733333333334,1.9736233333333333,1.7469999999999999,2.5043233333333332,4.011435,5.6746,4.79406,1.547085,4.3371,4.02835,3.434495,4.003725,1.91327,2.664775,4.653214166666666,1.96444,4.215633333333334,4.12716,3.50286,2.39251,3.3666506249999997,3.187165,2.986385,3.440895,0.14896408163265307,2.5224533333333334,7.588965,1.499704,3.3281,3.62486,0.9862985714285715,1.2535966666666667,1.87049,3.8537,2.978635,7.165710000000001,3.84564,3.66085,2.93424,2.651995,3.316255,3.237845,3.95926,3.453795,2.8054633333333334,5.6607,4.160485,4.27756,2.6616633333333333,1.9550325,3.382985,4.534935,2.68587,3.22042,2.15623,2.47391,4.009605,3.49669,2.430035,4.677705,5.3141,2.718615,4.26394,3.994825,3.460345,4.45667,3.291225,2.894845,5.07536,4.693355,5.3314,5.23145,4.32574,5.1992725,4.56879,3.846965,1.2860900000000002,6.6357,2.368095,4.50635,4.208925,4.107675,3.227066666666667,1.94938,2.17651,2.3615333333333335,1.01915,3.5211666666666663,3.884933333333333,3.102376666666667,2.0950333333333333,3.605375,4.195745,2.7649899999999996,0.5433816666666667,4.525215,4.636145,5.11,4.94019,3.748625,4.585315,5.10685,4.99707,1.4285666666666668,0.9682846153846154,2.819656666666667,5.16725,5.85295,0.48808875,2.80591,2.4764766666666667,3.26414,4.3827,3.8762000000000003,2.054205,5.5335,3.8198,4.66292,3.01599,6.47245,5.6035,7.07705,0.5869624999999999,4.12855,0.8311040000000001,2.2582,4.1743,3.21057,1.3309233333333335,2.35488,4.082875,3.65823,4.300415,2.1160833333333335,2.259065,3.598515,4.508,4.313755,4.053025,1.6589099999999999,1.2833795714285716,6.0893,2.332775,7.7487200000000005,4.51442,3.5928,2.275255,1.5971825,4.23315,4.75103,1.8090233333333332,2.27665,2.517725,2.5224533333333334,6.58411,3.03254,2.7563833333333334,4.375148333333334,4.139985,1.9976500000000001,3.567115,7.191095000000001,4.832975,5.41265,0.5353327272727273,3.612645,4.29243,4.879458571428572,4.01454,4.562225,2.932765,2.657,3.229125,2.82231,3.5737440000000005,1.915422,5.515917,4.798095,5.02145,3.78545,3.323545,3.18962,2.23123,1.29054,0.97574,2.785115,2.579985,1.0924966666666667,2.5739733333333334,5.099,4.890815,3.63471,4.08309,16.765452976190478,3.983735,4.351015,4.24077,0.6979183333333333,5.0629,4.818345,4.156735,4.944395,5.4125,2.56517,3.502735,3.28658,1.51865,3.08082,4.95315,3.4733,1.6694019999999998,3.65634,4.92308,3.76594,5.0359,4.77951,5.65755,4.020805,2.847106666666667,4.159035,4.498275,2.52324,3.02581,3.0079166666666666,1.7857616666666667,4.95874,2.7548225,1.87913,3.883905,2.28459,4.20544,4.098,2.371365,2.81772,4.626015,3.65045,4.610375,4.46767,4.904395,4.9172519999999995,3.31283,5.33175,2.951515,3.918815,4.09045,1.523296,4.439395,1.0064333333333333,4.449105,3.30897,1.0031885714285713,3.71345,2.054785,6.45535,2.438495857142857,2.438495857142857,2.438495857142857,0.617815,1.3261033333333334,1.771375,3.30709,6.2981,3.426005,1.971735,2.2129875,1.6718433333333333,3.70021,2.5196,0.4297330769230769,1.76406,2.141305,2.83426,1.865995,2.89138,2.328835,2.0368625,3.785825,3.20768,4.411915,3.027095,1.86973,6.57505,2.09541,4.33888,3.74079,6.627366666666667,1.5850833333333334,3.549315,4.026095,3.691495,3.891315,2.83179,2.0630425,3.7151,6.031656999999999,1.943595,3.33931,3.039525,2.1138025,4.992725,4.432125,2.7219933333333333,2.24169,3.5322250000000004,5.994509285714285,6.08175,2.973425,2.40078,2.6517,3.11229,3.03183,4.307885,1.4145175,2.543405,4.741525,0.80577,3.802205,3.80922,3.74071,3.783465,2.31133,3.45397,1.94944,4.41473,8.099685,4.37563,3.29614,3.8261,0.9698975,4.53054,2.22315,4.29772,5.5856175,4.13734,4.30907,11.26624,4.977475,3.87114,1.448125,0.6890966666666666,2.834495,3.721225,3.334065,3.613975,2.1014833333333334,2.290033333333333,2.1080900000000002,1.21915,1.21915,1.8520166666666666,2.449806666666667,2.2429533333333334,2.9926566666666665,3.201753333333333,2.6211699999999998,2.5989833333333334,3.0502466666666668,1.4982600000000001,2.30281,2.013243333333333,2.0877266666666667,1.4280725,2.6009266666666666,0.72914,10.013401666666667,0.72914,3.3259733333333332,2.0887683333333333,1.9350333333333334,4.36243,4.21647,3.73477,4.19038,2.14581,2.8310933333333335,3.3477959999999998,1.9927866666666667,3.4062,3.18554,2.7433033333333334,3.1440099999999997,1.8065933333333335,5.73775,6.321670857142857,3.2109799999999997,3.4829666666666665,3.339166666666667,2.8018733333333334,2.73565,1.1654785714285716,3.727066666666667,3.6526333333333336,4.18018,6.0633,4.25946,2.888756666666667,3.6412999999999998,3.1122866666666664,4.163273333333333,4.219415,2.4583333333333335,3.90938,3.3763666666666663,3.1639466666666665,4.77804,3.160546666666667,3.99918,6.479748333333333,2.257823333333333,2.5348166666666665,2.056243333333333,1.3617800000000002,5.579923333333333,3.7567,2.569706666666667,2.094793333333333,1.3633899999999999,4.43368,3.714825,2.849525,3.425466666666667,3.29989,3.5246333333333335,3.542566666666667,3.6606,3.25543,0.57280875,3.7947,2.53537,2.36088,3.662185,4.612955,4.269755,5.364,2.586945,4.042695,1.11333,2.93202,2.93202,4.95628,3.273265,3.687655,4.812585,1.615855,3.910135,3.601795,1.4388,4.118472166666667,3.7445484761904764,2.8592813333333336,0.362968,5.16385,3.09836,6.520155,3.45745,6.352,3.376965,3.9205,3.821395,1.8706279166666666,3.04436,4.108885,3.631825,3.5089,3.052713333333333,5.4934325,2.0586775,0.97569625,1.8461133333333333,1.6291366666666667,5.16954,2.2951200000000003,2.3860333333333332,2.1059325,4.31579,4.15278,4.199585,0.547578,4.40383,3.82525,3.07908,3.027746666666667,3.322853333333333,3.5642774999999998,4.348846666666667,1.91646,0.6765210526315789,0.8270285714285714,3.7217333333333333,4.6561,6.501815,5.64155,5.01805,5.31355,1.4443142857142859,4.173066666666666,2.23325,1.0255875,5.23685,6.0721,3.167955,4.8174,3.82422,6.633543333333334,4.169033333333333,6.635618333333333,3.769205,2.5543452777777778,5.82475,10.474083910256411,2.5353133333333333,0.719618,3.75422,4.335775,2.486695,6.47545,4.1123,4.446055,2.75372,2.75372,5.63405,3.62555,3.95698,5.1628,3.893089,2.359958,1.19830375,5.2642,2.659085,5.73169125,3.59967,4.20021,2.88258,2.2330075,4.669865,4.936995,3.6597666666666666,4.174845,4.58718,28.298587857142856,2.06532,2.63115,2.316915,1.6871166666666666,2.5632733333333335,1.146102857142857,2.849693333333333,3.015476666666667,3.5441000000000003,3.3886000000000003,0.6244569230769231,3.277843333333333,3.86399,2.906555,3.3473333333333333,3.99621,5.9959074999999995,4.82494,4.123455,4.05941,3.8475175,4.277715,3.548966666666667,1.7089625,1.0102416666666667,1.4210933333333333,2.40513,1.4736333333333331,3.1421500000000004,2.39111,2.28488,2.57286,2.63296,2.07757,1.7819133333333335,3.518815,4.30227,3.586265,3.970775,1.624954,3.8064,2.44088,3.745725,2.1952433333333334,2.635555,2.2073,1.49799,4.145005,6.398546666666666,2.73235,3.62368,3.938735,2.670125,3.235315833333333,3.5380000000000003,4.26886,4.666665,0.29493396396396393,0.29493396396396393,5.0316,5.2708,3.20947,2.817785,5.4129,4.536175,0.6424023076923077,5.21345,4.60158,3.704415,6.57185,4.61512,7.43711,14.383908333333332,13.17953282051282,4.370875,4.265105,2.5893966666666666,0.6208361538461538,2.564713333333333,4.75646,1.4010550000000002,4.90713,3.558866666666667,3.0302866666666666,2.1028066666666665,1.9624866666666667,5.0065100000000005,5.0463,8.984746428571428,5.3483,3.943365,7.57339446969697,3.311675,3.5836666666666663,1.445955,5.488915833333333,1.9514825,2.64294,2.6932733333333334,0.285645,2.75447,3.795775,4.8259,0.8750120000000001,1.2231833333333333,3.91357,0.592936,0.592936,3.0464533333333335,3.4214,3.407133333333333,3.72349,4.116125,5.5357,3.782375,4.175665,2.763575,3.1168600000000004,2.63382,0.9328916666666666,2.7734366666666666,2.82652,3.08314,6.99906,2.77573,9.583825000000001,3.096475,6.73735,3.189365,2.2928975,2.483935,2.83175,1.6477075,2.3875775,1.9056175,3.40679,2.42547,3.934865,2.68533,3.8217950000000003,3.8217950000000003,2.7923733333333334,2.7923733333333334,8.851638333333334,2.62626,0.78868,2.572583333333333,2.4780166666666665,2.5088033333333333,3.934865,1.894778,1.89252,1.5099399999999998,3.89292,3.86534,1.699515,4.483825,4.094015,6.024557222222223,6.648054999999999,2.3477799999999998,4.37847,7.12757,4.32307,3.439725,2.52939,3.84406,3.5883048484848485,4.10373,5.483085,7.605997333333333,3.7162249999999997,3.22093,1.1893483333333335,4.340445,4.36651,3.761025,3.7657775,4.397275,2.65684,2.7117766666666667,6.82011,3.162645,1.60596,6.25307,3.755275,2.971743333333333,5.02835,2.971743333333333,3.215935,3.87878,5.21545,1.02244,4.091782222222222,4.774755,3.628155,1.33997,1.768785,4.10582,4.20644,2.68394,6.951253333333334,4.27324,4.11847,4.10599,4.6982225,1.484045,4.05403,2.75606,3.77738,4.180255,3.83404,5.08445,3.367235,3.666385,5.0225,2.0402583333333335,1.80961,3.3638333333333335,3.8533000000000004,3.4384333333333337,3.153453333333333,3.6790333333333334,3.29087,5.47425,3.226395,3.62559,2.8969,1.8504500000000002,3.6170333333333335,2.3849666666666667,3.047285,3.11635,2.79722,0.70013125,2.12768,1.7127566666666667,3.47364,1.899604,3.603523,4.347035,1.189612,3.2864199999999997,4.73704,0.847304,1.2971866666666667,3.52724,3.825485,4.020425,1.990315,1.8483266666666667,3.460615,2.4536175,1.6623333333333334,2.76171,1.876065,1.1826919999999999,1.37622,6.46843,3.424795,2.18785,2.479235,2.41906,3.786195,0.7999175,0.3332921428571428,0.8073542857142858,5.07045,1.9262115714285715,5.07555,2.1793825,2.1644132857142857,3.4905329999999997,1.3261197142857142,1.0688352857142858,0.720266,0.5539557142857142,3.0130049999999997,6.52445,3.0349,3.9678,0.3701035714285714,3.932975,17.760918571428572,3.09903,7.091258353146853,1.0858275,1.0858275,1.0858275,1.0858275,6.056291666666667,4.177845,4.460265,2.237616666666667,3.060145,4.40262,5.8507,3.96835,3.684695,4.3726,4.18384,4.034995,3.5909033333333333,4.48388,5.0871,4.120395,4.953255,3.598135,4.38111,2.6558100000000002,3.55374,3.320405,4.012055,3.960785,4.43743,3.149013333333333,2.515275,2.401873333333333,4.22814,1.3798935714285714,3.60438,2.7956633333333336,3.4566706666666667,4.1725,4.55255,3.035345,2.83142,5.07575,3.44183,3.225845,5.6023,4.7708,3.163635,3.574085,1.6824560000000002,1.6824560000000002,2.322435,4.601875,4.17468,5.6206499999999995,5.20615,3.5998283333333334,6.6675,5.0064,2.275625,9.450865,5.3125,6.739115,4.602745,2.9403566666666667,3.261565,0.2632606896551724,0.84345,4.331842666666667,3.393665,4.65492,2.9833366666666667,6.558369999999999,4.993495,0.56745,2.85143,0.48861600000000005,1.6397042857142856,3.3651,2.23344,3.80839,3.69054,3.18917,3.389475,3.325725,3.63876,3.341445,3.534925,3.693435,2.398125,1.6397042857142856,2.787965,2.119895,3.69364,2.24676,3.85843,3.49613,1.667525,4.34767,2.854095,1.31742,4.805295,4.60549,4.219965,2.773543333333333,2.910216666666667,4.3065,1.8505066666666667,1.401742,2.441753333333333,2.5030366666666666,2.52785,2.0817099999999997,4.772215,3.07476,4.9277508333333335,3.9161528571428574,4.825385,4.248485,1.8878119999999998,5.2987,4.884315,5.2319,4.211455,6.862159999999999,1.6866325,4.880845,4.012965,3.1407,1.8203325,1.7163633333333335,3.82985,4.40233,2.6292766666666667,2.8230041666666668,3.4027475000000003,3.4027475000000003,2.8114733333333333,3.4250000000000003,3.23584,3.84066,3.504605,0.7477915384615385,3.21754,4.289515,5.261393888888889,2.759355,2.86267,1.7513,2.73879,3.27589,2.08282,4.729215,3.359785,5.008,2.149906666666667,1.0519636363636364,6.31923,3.618785,3.5134000000000003,3.27035,1.7849920000000001,30.554620011904763,4.083885,3.33102,6.2036,4.51239,0.8504,7.37739,2.0878625,5.58235,1.5400066666666667,4.56121,5.45424,3.65215,3.14359,2.3511775,3.5467333333333335,4.998075,2.10674,2.7239799999999996,3.621575,2.55957,2.574965,6.2571,2.38397,6.49535,1.15281,4.26553,3.483495,3.836875,5.2836,2.984995,2.5447,4.205645,4.56701,3.5730775,3.5730775,6.1368,2.22088,4.18899,6.879278333333333,3.4027,4.12658,3.267105,5.23345,3.409885,3.95322,1.359635,2.135635,4.300185,4.21944,5.6991,4.17823,2.25508,9.61668,3.54328,3.696655,1.7281285714285715,3.4671,2.51953,2.6513766666666667,2.0387408333333332,1.2611033333333335,2.619893333333333,0.9432042857142857,1.1140528571428572,1.1140528571428572,1.1140528571428572,1.82862,0.5609675,3.732685,1.28892,2.6517,1.0671283333333335,1.69351,2.6549,2.281163333333333,0.7396125,1.7690400000000002,1.41143,2.35447,1.6213159999999998,1.6213159999999998,1.58322,1.7095966666666669,0.928354,2.2803400000000003,1.7667133333333334,1.3676033333333333,2.170895,2.31418,5.9934,1.92097,5.58925,17.657541083333335,6.8983550000000005,3.494475,3.6705766666666664,3.4819333333333335,2.7346633333333332,2.6154699999999997,3.0009433333333333,0.7680041666666666,0.9984949999999999,0.9984949999999999,0.665775,2.507753333333333,3.706215,3.52243,1.6323940000000001,5.16515,4.124725,2.73662,4.21527,5.26745,4.008515,4.230805,3.5400333333333336,3.281235,3.419305,5.7771,3.150236666666667,5.28315,0.5043219999999999,0.5043219999999999,2.1713,2.90135,4.749515,3.451585,4.019125,4.91333,7.592388,7.67877,3.7181,2.556415,4.37458,3.711295,2.500113333333333,2.24771,3.602615,1.2335533333333333,4.12027,2.61895,1.59895,3.5810666666666666,3.7231,2.064435,5.483085,1.68378,3.5167333333333333,3.287215,1.1442557142857144,3.7148,2.7601533333333332,4.600265,1.1279700000000001,1.769255,2.3573675,2.0961225,1.648175,2.68485,1.99937,1.952325,4.43185,4.59165,2.511575,1.84281,1.47061,3.688333333333333,1.9832266666666667,2.7107,4.997045,7.2399,2.5675991666666667,2.99455,3.503545,3.4277,2.38033,5.08825,4.08218,3.07195,1.400975,4.37691,2.35516,3.370533333333333,2.493275,3.482365,5.0885,5.7199,2.2126733333333335,2.7208433333333333,2.8241666666666667,3.4309999999999996,2.0317000000000003,1.62778,5.5391,3.5578000000000003,2.180063272727273,3.28072,3.23317,2.56987,3.4773,3.3346666666666667,3.6170666666666667,5.32935,4.255625,3.011863333333333,5.0095,3.185905,2.38642,3.477745,3.79019,4.4497,6.19292,1.882508,3.77122,2.64345,3.956865,3.538865,0.55567625,2.274785,2.302415,3.34638,2.72836,2.12828,2.6997,0.670064,2.774286666666667,4.69764,2.528325,4.340695,2.621093333333333,4.17112,2.0196,4.64617,4.36002,2.06596,2.749315,6.9997675,4.062285,4.707045,4.839115,7.496384659090909,4.55978,4.373515,2.19272,4.724085,2.745725,1.81778,1.86458,2.302916666666667,0.9674971428571428,2.629496666666667,2.44446,2.56535,3.2559233333333335,1.7404419999999998,3.235055,1.8776033333333333,4.494185,5.2045575,0.993875,1.7967533333333332,2.4042733333333333,2.763146666666667,1.90466,1.0535816666666666,5.461851666666667,2.102625,2.590716666666667,2.86115,2.4466466666666666,2.70206,3.04105,2.1716633333333335,2.581983333333333,2.05265,3.932995,3.49544,3.895495,2.97714,2.974603333333333,0.7702289999999999,2.0187633333333332,2.0366025,1.8931433333333334,2.5760433333333332,1.1309983333333333,2.62992,2.8798266666666668,4.051835,1.89538,3.23415,3.118315,5.04035,3.071905,0.6044275,2.15848,3.0481599999999998,3.4035666666666664,0.7983363636363637,2.8305866666666666,3.431236,3.4974333333333334,3.18528,3.2680550000000004,3.679335,3.909466666666667,3.039093333333333,2.2295225,5.6428,5.23825,5.29355,5.49,5.66385,1.7268833333333333,3.256315,3.820133333333333,3.4928000000000003,3.230283333333333,2.8664400000000003,3.9623000000000004,3.6843,3.07009,14.395893333333333,4.370855,1.1910399999999999,2.7767766666666667,1.581118,3.427466666666667,3.328943333333333,2.6325933333333333,5.906495,6.68351,2.425733333333333,0.853411,4.28149,3.4697999999999998,2.992995,5.1879,5.35665,5.55725,4.919855,3.44546,1.8767575,6.4122975,1.1893483333333335,6.6195325,4.921115,2.66679,4.264075,7.525718333333334,6.0406,2.1180233333333334,1.5324366666666667,2.06534,7.81405,1.5861,2.988156666666667,2.638486666666666,4.147187222222222,5.5475,4.218135,6.3436,3.48092,5.5194,3.6084,9.44105,5.114,5.90845,2.352595,2.625775,11.211393333333334,3.369565,2.502085,2.42711,1.5524733333333334,2.5660833333333333,3.4244333333333334,0.668075,1.213482,1.0502142857142858,3.48645,7.05014,3.063725333333333,1.45903,4.789545,3.430405,0.5429120000000001,4.529715,4.354655,5.09455,3.936915,3.38358,2.6228833333333332,3.99706,9.73423,1.77905,3.8588525000000002,4.591925,4.22584,3.61864,0.8560249999999999,3.481833333333333,4.065933333333334,1.6950366666666667,2.39347,2.333886666666667,2.4779833333333334,2.60907,2.1180866666666667,2.134055,6.150243571428572,5.193,3.78672,5.143401666666667,1.5616066666666668,2.332885,5.01795,4.73969,4.693835,4.392355,4.66992,4.869205,1.6824560000000002,3.70636,8.00518,1.4352616666666667,1.6432266666666668,2.414683333333333,2.4783033333333333,2.7054533333333333,4.667333999999999,0.8270285714285714,2.32006,3.304965,6.2737,4.587155,2.18151,2.7460299999999997,2.087445,0.5575325,2.46275,2.82355,7.64809,4.34467,4.549535,0.9333030000000001,4.739133333333333,9.425321583333332,10.708726666666667,3.35087,1.2360725,3.53873,3.578675,2.532,5.378645333333333,4.99279,4.22331,2.0552325,3.8731666666666666,2.1598966666666666,2.5109966666666668,0.7837918181818182,0.409726,2.314375,3.44874,2.0972291666666667,3.36846,3.1425133333333335,3.952535,5.33915,1.4831619999999999,3.229036666666667,2.0997500000000002,2.0997500000000002,2.16752,3.041045,6.58705,2.5526566666666666,2.4248133333333333,3.385,3.499833333333333,4.14724,4.610205,4.431995,3.96313,4.017145,4.39393,7.1275,7.634085833333334,1.9521775,2.1232533333333334,3.1433633333333333,0.8757233333333333,0.7168975,3.95674,2.29131,5.52655,2.862833333333333,3.1188300000000004,1.867664,1.5603525,4.08658,4.22175,4.33888,2.0142166666666665,1.2677166666666666,2.6165266666666667,1.9826366666666668,2.5530399999999998,1.1078871428571428,1.1078871428571428,2.6929366666666668,4.88219,3.10814,2.723135,3.629375,1.92201,20.803389666666668,3.633775,5.4212375,4.47615,4.266795,4.20126,4.048585,5.7276,6.236965,0.8600766666666666,0.8600766666666666,0.8600766666666666,2.6742933333333334,1.7740571428571428,3.5322333333333336,4.437295,4.293765,3.152125,4.473415,4.576095,0.7870166666666667,2.09867,2.4810333333333334,6.0187095,3.4005395,4.108982,5.10785,2.1736775,1.95673,2.294303333333333,0.50733125,0.923866,1.826205,1.97493,2.836945,13.438331666666667,2.5003766666666665,5.3271,0.7499071428571428,9.80904,5.75075,3.727695,4.459445,2.7385,5.4522,2.7385,2.8123959999999997,3.25102,3.716135,3.67125,4.049205,4.42106,3.63411,5.9483,7.013674,1.7418033333333334,2.15752,2.884965,27.486842821106823,1.470242,6.3941,3.627762,3.857315,4.27497,4.7841,2.646445,2.67991,2.37348,6.73655,7.14165,4.88779,4.8026,4.553675,2.0543525,1.932235,4.38601,0.36541230769230765,0.36541230769230765,0.36541230769230765,0.36541230769230765,4.11381,3.2511699999999997,0.9239366666666666,1.7514533333333333,1.1615888888888888,4.55257,2.4149499999999997,2.4035475,7.203276666666667,3.25968,0.1721296551724138,21.364072333333333,4.833013333333333,1.789044,1.3786714285714283,2.22694,2.01276,2.432425,4.758395,3.16262,3.092455,4.17732,2.253696666666667,7.48238,2.74953,1.93406,3.901925,6.0036,8.98636,4.31375,0.3052487804878049,3.46494,4.17412,2.8612933333333337,2.136515,3.18906,1.5524766666666665,1.5524766666666665,3.98235,5.7936975,11.575384166666666,9.366325,0.6486444444444444,2.56156,3.66423,3.4121,5.25065,4.23927,1.3518919999999999,1.3518919999999999,3.747855,4.46173,3.099876666666667,3.67643,4.57387,5.3513,6.94588,2.3031800000000002,4.48548,4.114385,2.64901,2.9454266666666666,3.0835133333333338,4.905705,4.52105,5.6978,4.312625,4.637905,4.07114,4.31316,4.314595,5.50435,2.7098633333333333,3.14809,1.1426539999999998,4.683345,4.232375,4.04837,1.820154,2.0298966666666667,3.5739,2.7717733333333334,2.68545,5.025993333333334,1.95735,2.0502825,3.4964666666666666,2.781586666666667,2.4406966666666667,1.7103933333333332,4.055033333333333,3.1731766666666665,4.198633333333333,3.4342491666666666,2.0583899999999997,2.55084,2.0084966666666664,3.381555,3.26332,39.439054750000004,2.1854938181818184,2.1854938181818184,2.5167566666666668,2.6221,2.1509233333333335,1.8456566666666667,2.936806666666667,1.77855,0.8282461538461539,4.9721,7.004507500000001,4.306115,4.122135,5.54175,1.9519166666666665,4.621625,1.87791,5.262,4.83391,5.7589,4.343235,1.7089625,4.023025,4.82764,4.628585,5.0692,5.40105,4.057485,3.03571,3.4506666666666668,2.9671299999999996,1.9658875,1.80354,4.619545,2.98246,3.7147525000000003,3.7147525000000003,2.1308000000000002,1.4954766666666668,2.97011,2.6824733333333337,2.5345333333333335,4.86954,2.92074,1.1432883333333332,1.1432883333333332,2.2147466666666666,1.9522000000000002,2.453273333333333,2.60219,2.577026666666667,2.38533,2.28326,2.115491,2.936343857142857,1.526887857142857,0.8208528571428572,63.6075817688492,2.39728,3.5582666666666665,2.390204,0.9145580000000001,3.775246,1.542578,1.542578,3.6433666666666666,2.9435333333333333,0.706035,3.3504666666666663,5.683883333333333,3.4589,2.4406733333333333,2.8254133333333336,2.52315,2.5826993333333332,0.275000625,2.7057033333333336,0.711356,2.4960733333333334,1.072714,1.072714,3.5629666666666666,1.9891079999999999,3.014226666666667,1.7819446666666667,3.3648666666666665,1.7819446666666667,2.1290833333333334,2.77833,3.3694,1.364228,1.364228,3.120483333333333,1.4505333333333335,3.327526666666667,2.2021866666666665,4.798535,4.012675,12.412166833333334,6.88907,3.70069,2.61288,3.94817,5.5647,5.5656,2.791665833333333,4.15267,4.201745,1.9668266666666667,4.20173,3.4723,2.7465833333333336,5.0335,2.1446633333333334,1.0730928571428573,3.799517083333333,2.819653333333333,2.828225,0.8352385714285714,2.61016,3.463575,4.209095,4.245575,6.6698,2.1402933333333336,1.944988,4.15425,4.45865,2.404135,2.4980841666666667,1.9562933333333332,2.0868073333333332,0.861524,5.25245,4.6213,3.922975,3.8263,3.0664433333333334,5.2552,5.36105,2.962816666666667,1.6940633333333333,0.5310326666666667,14.881270666666667,0.5188590909090909,0.5188590909090909,0.5188590909090909,3.08723,4.069866666666667,0.5188590909090909,7.199971666666666,4.348516666666667,0.712369,0.712369,3.522733333333333,3.21404,2.97119,4.2906,4.82996,4.2876785,2.1925,4.860560666666667,3.59633,3.713568333333333,4.43233,2.9951335,2.511325,2.4346075,2.803575,1.557115,3.459360833333333,3.0259766666666668,2.50825,2.2001625,2.0389575,1.8805666666666667,1.6017225,2.65,1.1105477777777777,2.5655,0.6216421428571428,5.38095,1.854775,0.68983,2.252085,7.645365,2.687575,1.9783925,3.0781925,7.14072,2.46284,4.684945,3.17495,6.02379,3.72239,3.955645,4.29135,4.831785,3.1793933333333335,4.528829999999999,1.2195842857142856,4.19437,2.376043333333333,2.45418,2.308085,2.291795,2.19556,1.268875,5.7643,0.9347272727272727,5.18045,5.68675,5.26195,5.4679,3.7339,2.4923033333333335,2.0972999999999997,3.0672533333333334,3.1802166666666665,2.364835,3.8188999999999997,2.706175,4.768415,1.8069060000000001,41.20403408730159,4.98357,2.2998833333333333,2.58452,3.0809233333333332,1.55697,6.224883333333333,4.19153,2.4475666666666664,3.3767,2.274836666666667,1.6244975,5.3007,0.7873428571428571,4.537835714285714,1.2963457142857142,3.4179999999999997,3.4773,2.9033166666666665,1.4233125,4.821083333333333,1.7664180000000003,1.7664180000000003,2.4931933333333336,2.8284445833333334,3.4595333333333333,3.2805233333333335,1.43947,2.87584,2.6368733333333334,6.3264505,2.9316999999999998,3.7257183333333335,1.0409683333333333,1.4600366666666666,3.0965366666666667,0.9473420000000001,5.570318333333333,3.5187666666666666,2.9213633333333333,3.601266666666667,2.942536666666667,2.7371133333333333,3.3262366666666665,1.6852233333333333,2.41906,2.599396666666667,3.4827999999999997,2.6014433333333336,3.715866666666667,2.5148266666666665,0.6094833333333334,9.89330391025641,2.7267033333333335,5.34015,5.1677,2.8120100000000003,3.028976666666667,1.3219,2.3262666666666667,1.930255,1.3219,4.26494,0.461076875,0.461076875,1.185645,1.185645,0.753565,0.753565,2.550685,2.988035,2.36425,1.451925,1.962875,3.735695,2.842325,5.1793,5.22695,2.0223,4.46919,2.308905,4.709093760683761,1.47288,1.47288,2.231845,1.757518,3.8978841666666666,2.0969275,4.604105,1.6604583333333334,2.640375,0.5640853846153846,1.2607814285714285,2.1050775,2.3759,2.04514,1.4077075,4.686085,4.63348,2.6635666666666666,2.6072166666666665,1.53271,0.7274375000000001,2.4234233333333335,3.78231,2.9146966666666665,4.785215,5.35725,5.0523,3.817335,6.5404,1.5956983333333332,6.279195,1.795125,4.674325,4.766625,5.838376,3.4454333333333333,2.3044,1.7373475,1.985208,1.985208,2.44443,2.44443,4.412325,5.8443,0.9348639999999999,3.863935,3.55175,3.380555,2.6325933333333333,1.34356,2.7672866666666667,4.14448,4.186055,1.849456,6.6639,5.3215,1.78657,1.37465,3.96348,4.243796666666666,3.67092,3.5221,4.05819,0.6778257142857144,3.5304333333333333,3.4973666666666667,2.715616666666667,2.90298,2.1571166666666666,3.6680333333333333,1.4710142857142858,1.4710142857142858,1.4710142857142858,3.04461,3.1164533333333337,3.4329666666666667,3.471234404761905,2.422615,1.2436757142857144,3.3582666666666667,3.2174133333333335,1.4110414285714286,2.8146466666666665,2.662,1.3556485714285713,2.8580433333333333,2.8546933333333335,2.94544,2.814363333333333,2.6392466666666667,2.11417,3.2230166666666666,4.9886273333333335,4.545525,1.0028000000000001,1.5782,0.619993,3.673033333333333,8.944970000000001,3.107063333333333,3.38258,3.4537666666666667,4.163189166666666,1.8080125,7.739251666666667,6.81898,2.67421,2.3134065714285716,3.85702,4.761255,1.553706,1.19224,1.30654,2.0777,11.225016666666667,2.81564,3.1072100000000002,3.054312,3.863095,2.206906666666667,1.15607875,5.2612,1.0536033333333334,3.607493846153846,4.977375,3.041605,3.4247333333333336,3.036675,5.26685,1.14289,2.3197,2.2162266666666666,2.2162266666666666,3.80483,5.77615,10.53993,4.445045,3.3642,4.775625,1.7085775,2.2499583333333333,4.518735,4.299815,3.70022,1.5105950000000001,2.813943333333333,3.449705,3.887885,2.5301,3.844095,3.60163,3.84924,3.984515,3.781405,3.820035,5.5916,3.2507066666666664,2.612503333333333,4.381785,2.917905,3.793015,2.14106,2.50644,2.485555,6.19615,2.441115,3.241025113636364,1.663115,2.36258,3.2658,2.24348,2.0741175,0.9101666666666667,0.9101666666666667,1.7271025,4.012945151515152,3.951915,2.8679900000000003,4.586075,3.2147408333333334,2.4330628571428567,1.01113125,3.15326,1.528695,4.49241,3.93828,0.9035454166666667,1.80531,3.977815,2.898215,1.54512,1.5446233333333332,4.780882857142856,1.1201433333333333,2.69144,3.141995,2.695285,2.440625,2.6840840000000004,2.05645,0.9932325,2.851415,2.953855,3.35534,1.51306,1.5122633333333333,1.81581,4.46267,2.252875,4.650515,4.667795,4.79863,6.1152,5.3969,4.179775,5.932345,4.158948095238095,0.7928518181818182,2.78499,4.3366,3.79073,0.5031727272727273,0.924004,2.76272,4.111615,4.803415,4.569175,3.3262810714285713,2.753925,4.886125,1.8241260000000001,2.6468,4.718945,4.3713774999999995,3.480615,3.139695,3.70957,4.902425,2.955895,5.75045,0.943039,3.57909,2.914525,4.65221,4.506495,4.582015,2.21396,2.32975,2.80721,1.8105166666666666,5.11055,3.79658,1.4212271428571428,2.93117,4.20547,1.404482,6.095555,1.872144,2.5618633333333336,13.85084815474584,2.9529599999999996,1.3745466666666666,1.5543316666666664,2.0647733333333336,5.514191666666667,1.6589099999999999,5.873973666666666,0.6794507692307692,3.4400666666666666,3.78931,7.602265,2.525603333333333,3.0566099999999996,3.0566099999999996,4.721095,4.292275,3.46047,3.215995,4.90334,5.2317,2.37595,3.3156433333333335,4.80024,1.2079016666666667,3.31677,4.58608,4.454855,3.687545,2.639343333333333,3.70369,3.588035,6.536258333333333,6.20316,0.761252,4.25824,3.477975,3.8889666666666667,4.0663,4.09133,3.85002,1.522226,4.959065,2.4314,2.754075,4.182805,4.23857,4.71855,0.9354849285714286,2.8498033333333335,9.436768,1.5131050000000001,2.1589162337662335,2.2852575,3.758275,3.525365,3.22411,0.6501990909090909,2.425415,1.679765,2.2251075,4.3255,5.446378666666667,2.901532,9.88817,2.643196666666667,2.694483333333333,1.1310499999999999,4.598055,5.13905,2.10817,5.581123333333334,3.255065,3.14164,5.4086,4.62842,4.740325,2.28396,1.29745,1.29745,2.694045,3.395935,4.509780833333333,1.5114275,5.568271666666667,1.4364766666666666,3.91045,1.4376233333333335,8.733069166666667,5.20845,2.674965,4.72582,3.893695,3.76519,1.1054533333333334,2.0609,3.6984333333333335,3.040043333333333,3.5385666666666666,3.5162333333333335,3.763735,2.82152,3.0882,3.2495,1.506795,2.4707866666666667,1.85998,2.8596,1.934,5.282045833333333,3.3080766666666666,1.76299,2.9446833333333333,3.295525,3.161885,6.39715,6.27415,2.94434,3.534365,3.107965,3.0347,2.834365,1.20713,0.9642099999999999,6.653525,3.042655,5.73545,4.571415,6.57925,2.85366,2.92918,6.5673,2.41492,0.4276738888888889,5.8163,3.32177,3.991605,3.4807,1.4993,4.385185,1.062422,4.67266,0.90517875,1.7384466666666667,3.0901266666666665,2.3438666666666665,2.675027142857143,3.5409,5.15035,6.186616666666667,6.186616666666667,5.294275,5.294275,4.593295,3.226036666666667,4.38374,1.07599375,6.20545,3.689645,3.8064999999999998,4.120545,3.796375,5.13415,1.7946025,4.881385,3.324522,3.2882,4.091115,2.677435,4.871965,5.29225,3.48215,3.515855,5.0704,3.948055,6.1289,2.58972,2.7081666666666666,5.9332,3.94888,2.7287733333333333,6.320565,1.4981033333333331,2.1997075,4.700735,4.36027,5.0213,3.792105,2.0149925,2.0149925,13.818262503968255,12.6665,5.0355,3.213705,3.018608461538461,4.72455,4.745795,2.7196466666666663,3.25918,3.44841,4.2661,3.6509,5.092,1.963445,8.392543333333332,2.43206,1.97014,5.7365,2.29484,5.0901,4.39875,4.70197,0.7922600000000001,3.411615,3.47302,0.9228080000000001,2.932685,4.171446666666667,1.425754,2.1269733333333334,2.818543333333333,2.718223333333333,2.35173,3.1461733333333335,2.3364833333333332,0.4993964285714286,2.53443,3.0613566666666667,2.7696366666666665,3.209713333333333,1.56867,3.26202,7.214395,4.66808,2.31255,2.069716666666667,2.5790933333333332,3.58289,2.63171,3.6524544999999997,18.46283,5.5458,3.533477,4.964245,3.70595,5.14123,1.2933299999999999,5.9975,1.6728833333333333,4.598435,4.951485,5.5478,5.00915,1.0100307368421053,6.4669,2.51988,4.96351,2.486905,4.348395,4.15036,2.84833,2.23719,1.590582,1.96204,4.67138,4.66351,2.16756,1.62149,3.226183333333333,4.076396666666667,3.142243333333333,6.2256,2.1864675,3.467045,4.872965,3.704335,4.085355,3.0329,4.20114,5.0222,4.18712,2.76867,2.76867,5.929955555555555,1.9769233333333334,2.8641199999999998,4.06517,1.74208,7.439495,3.59359,4.697033333333334,4.3891,4.400555,1.894486,4.34692,5.37475,3.96505,2.1347625,3.696265,3.228195,1.19398,1.547785,1.2857,0.6739733333333334,1.6711799999999999,1.0376466666666666,4.51519,1.0722311111111111,2.5340166666666666,1.5543433333333334,1.8232925,1.0792266666666668,1.90668,2.3306875,1.58948,3.0636433333333333,2.7085633333333337,4.936321666666667,1.5854883333333334,2.661725,3.1175866666666665,2.858306666666667,2.295,4.215845,4.59144,5.062461666666667,19.395354666666666,2.769546666666667,2.088915,0.6478376923076923,0.60506,4.284415,1.9710260000000002,4.04082,5.33575,7.2477184999999995,3.59604,3.40719,3.87484,3.446266666666667,3.30987,3.10786,4.0274,3.3785666666666665,6.6671,3.941555,0.926655,1.14094125,5.46625,3.14366,2.5866466666666668,2.0187733333333333,2.24312,5.771,4.9661,2.500125,1.06164,3.47822,5.06575,8.759526666666666,5.331883333333334,4.43357,4.19245,5.4891,4.749325,4.5404,4.84952,3.941095,5.45055,1.91918,5.8006,1.6009571428571427,5.1332,0.75192,5.0706,5.56125,6.25,6.2741,4.824385,5.9916,6.1397,6.70007,2.0422166666666666,1.5950285714285715,5.85395,3.833095,6.8526266666666675,5.18965,5.405131666666667,5.1161,6.31255,1.3746957142857144,4.465025,5.34975,4.172233333333334,4.871365,5.6179,2.7442,3.87573,3.25718,4.55915,1.0027666666666668,1.5825966666666667,1.457214,4.883425,4.01163,3.44151,2.249756666666667,3.000336666666667,1.6244033333333334,2.175943333333333,0.41275833333333334,3.6992666666666665,1.7165199999999998,2.3388850000000003,2.9726166666666667,2.688563333333333,3.1328566666666666,2.665975,2.553525,10.42047,3.9653333333333336,1.8939591025641027,3.900475,0.9184909090909091,4.58741875,1.1108175,1.9127125,1.9608625,1.036345,5.881179666666666,1.1870534722222224,1.1870534722222224,1.1870534722222224,3.007626666666667,1.927066,5.23105,3.157825,1.370755,1.4726675,2.32902,1.37055,2.23684,5.524565833333334,0.8922444444444445,4.50129,4.47706,3.31333,1.0407442857142857,2.100511,2.103565,2.103565,1.5384399999999998,3.6836816666666667,4.64167,5.72105,5.6725,4.475435,5.48695,2.986383333333333,1.9944125,3.256715,5.2084,3.27325,4.24365,1.01216,3.837406666666667,5.1409,1.8773075,4.2182,3.0742966666666667,4.619355,5.02355,2.517175,7.01615,6.3183,4.235245,4.685945,4.234655,3.143205,7.70744,3.905525,5.898913333333333,3.40925,2.6574466666666665,5.29005,2.567016666666667,5.57255,4.603945,2.6522,3.03225,3.871,1.4919200000000001,10.706795,3.60388,3.033985,15.737974047619048,4.370605,1.66055,2.975096666666667,1.989415,2.454435,3.77246,2.6624758333333336,2.864655,2.817345,2.907805,4.05208,6.3291249999999994,1.2556033333333334,2.38574,4.144745,4.45974,5.0557,2.4352,0.5632413333333334,4.732585,4.163015,2.10603,1.409705,4.65996,4.923655,0.98839,3.8308,12.498225,1.2952971428571427,0.39253214285714283,3.5172666666666665,4.613555,1.094251111111111,4.13186,4.11556,6.403131666666667,1.3364316666666667,3.157895,4.088855,3.31603,4.454505,4.734955,3.732065,8.353185,2.97262,4.46257,5.30005,16.042484375,3.34584,2.885425,1.24649,2.257345,1.2490525,2.18088375,1.22294,1.948945,1.6244075,2.00168,2.423165,2.3452,2.177995,5.551,4.86785,5.9827,3.069205,6.021066666666666,2.9990466666666666,4.887745,3.4765,1.24094,3.65329,1.951315,2.578447333333333,4.87265,5.12635,4.93543,4.757015,3.3994,3.6104333333333334,2.38297,4.114425,3.615495,2.319725,1.892675,3.6479666666666666,4.79014,3.08826,2.353143333333333,12.601426666666667,0.7285466666666667,2.576985,5.11055,2.5397620000000005,1.043364,2.836165,7.411676666666667,7.149288333333333,4.541485,4.08415,4.31992,2.154815,2.256415,2.7388426666666668,1.9057566666666668,4.065081666666667,5.5044,4.224445,0.4855066666666667,6.41665,3.3762333333333334,3.4981000000000004,3.6217666666666664,6.4079,9.58757425,4.6986005,1.06376875,2.230435,2.285155,3.526255,2.57757,4.0837,4.705135,3.6969,2.8697366666666664,4.135305,4.247145,3.661065,4.379833333333333,1.8136,4.301135,5.36605,5.7226,3.2834800000000004,2.30142,2.20668,15.202911757575757,0.5156881818181819,1.4109075,1.4109075,2.1962766666666664,5.075136666666666,4.23405,4.715055,3.228165,2.970235,4.564875,3.0900466666666664,4.10518,3.0900466666666664,3.486565,1.8329466666666667,1.5650933333333334,6.1154,2.679075,4.79159,3.226465,2.5045,6.714728333333333,2.05781,4.82151,5.36975,3.375865,3.56279,5.0126,2.10486,4.97265,3.6354800000000003,7.791493333333333,5.700873333333333,2.861575,3.998695,4.330315,2.034485,2.8903366666666668,3.5600666666666663,0.4790042857142857,3.4240333333333335,10.011673333333334,4.11434,3.658315,5.27385,3.3621133333333333,3.034195,1.320307142857143,4.24224,5.3244,3.27709,2.752035,5.1656,4.02712,4.312185,4.44108,2.758375,2.758375,4.088095,2.87236,2.78532,1.905505,4.992225,3.97013,1.0558114285714286,3.906335,5.145,3.02412,7.243449999999999,7.77666,1.446958,4.14743,4.973025,7.014557999999999,0.737248,7.598649999999999,3.683045,0.6083809090909091,5.452,5.3837,5.11295,4.65097,4.748585,4.468865,4.99761,4.022625,4.324465,4.6418,5.4378,4.951925,4.835665,3.73392,2.761545,4.20857,2.81882,0.962373,4.635965,2.37975,1.776925,4.612725,4.67195,5.8231,1.0339371428571429,5.018738333333333,3.007475,2.65923,2.16622,1.2505033333333333,11.5267575,2.64758,3.06428,2.12953,3.645640952380952,5.292210000000001,6.289275,2.613,2.0015933333333336,2.12856,2.12856,2.12856,1.4353266666666666,3.882785,3.948225,3.65889,4.55243,8.04974,4.30686,1.10601,2.37844,2.88111,2.610555,1.8325,4.537815,2.674995,1.4905866666666665,3.08245,5.331984285714285,6.012582500000001,3.96874,4.128505,3.28918,5.35545,4.7186,5.5740533333333335,1.8683,1.8683,4.4586,3.70089,2.549936333333333,2.549936333333333,3.883645,1.2669214285714285,5.10505,3.38912,4.32824,4.035375,3.995265,3.2985866666666666,1.1140814285714284,4.591885,5.20035,4.43385,5.0321,4.89604,4.88782,4.622885,1.9970275,1.436555,3.49276,3.76834,3.191395,4.34528,2.231005,2.9346750000000004,5.59785,2.773045,4.95119,7.79357,2.3429620833333336,3.0204500000000003,4.484193809523809,5.112488333333333,1.9449275,1.9018830952380954,0.9370016666666667,1.9018830952380954,2.01578,2.01578,1.49749,5.0924,3.197425,4.329185,2.25804,3.682425,1.5173216666666667,5.48995,3.00584,1.652405,2.9397966666666666,3.92052,4.35992,6.462051000000001,4.64906,1.405724,0.7762366666666667,3.473255,7.5073583333333325,2.3934666666666664,3.56504,3.62425,3.62425,2.358095,3.2858,3.22464,1.4531557142857143,3.213786666666667,3.696265,3.07408,4.446845,3.9456975,1.492025,3.723345,4.61238,5.0698,5.14555,4.132305,1.8166275,1.98851,1.30938,2.415965,3.5097,1.8716275,4.68939,3.252026666666667,3.79007,4.086975,5.1052,2.16028,1.002874,1.8467066666666667,1.3504975,1.1703333333333332,5.08135,4.04431,1.1426539999999998,0.3696926086956521,0.3696926086956521,0.3696926086956521,3.603775,5.564698333333334,4.80464,5.29905,5.0468,5.3705,4.673185,4.22818,2.71234,3.829925,1.5895075,4.80299,4.30044,3.886985,4.42601,4.4216,0.7589318181818182,0.7589318181818182,0.7589318181818182,0.7589318181818182,1.049024,1.049024,4.29628,4.12919,3.737035,2.71916,2.5728,5.9882,5.12575,5.86855,4.25676,3.012036666666667,2.5158566666666666,9.80791,1.69114,1.69114,3.90648,5.50205,3.2912666666666666,0.461076875,0.461076875,0.461076875,0.461076875,0.461076875,0.461076875,4.789906666666667,5.2852,3.601775,4.47953,2.77412,2.77412,2.614055,3.3518483333333338,2.44812,2.85214,3.51216,7.253507666666668,1.368956,4.59617,3.74813,4.00715,9.821626666666667,2.4061,2.852315,0.9979685714285714,2.0548,5.28155,3.20211,0.9069575,2.9299199999999996,4.49557,5.52455,2.7597,4.924046944444444,0.8615044444444444,2.222496666666667,4.86941,4.802905,3.231031,2.6889633333333336,2.280343333333333,1.4160233333333334,7.335155,3.4300333333333337,2.1193466666666665,3.024525,2.670525,3.5308,3.88774,2.69229,3.3498666666666668,6.1286,1.41444,4.427685,5.1979,3.484285,3.95387,2.20127,2.918405,3.70355,3.767055,2.9084,4.66514,4.46943,2.84644,1.9171525,2.9172833333333332,2.75334,2.91371,0.7981336363636363,2.1759325,8.0367225,0.444451875,3.0555299999999996,1.4626400000000002,2.4130433333333334,3.4168000000000003,2.92661,1.2962111111111112,1.7131979999999998,2.7100066666666667,2.13643,3.616985,2.1053,2.9251466666666666,1.5513666666666666,3.2551360000000003,2.0243075,1.1225628571428572,2.9926433333333335,2.1586525,2.3734633333333335,2.78059,3.1824966666666668,3.414066666666667,3.4470666666666667,3.1917333333333335,2.8569600000000004,3.3452333333333333,2.90736,2.7297,1.6871733333333332,2.4130766666666665,2.9510466666666666,1.6491533333333335,3.3141766666666665,3.8338995238095235,2.954466666666667,2.832686666666667,3.02579,3.6793,4.963958333333333,3.2603000000000004,1.7355642857142857,1.7355642857142857,2.549275,1.1440075,2.5721,3.294741666666667,4.535591666666667,2.77395,2.227535,2.1516075,2.104695,3.680655,3.005225,3.735455,4.08219,1.7304675,2.6066833333333332,4.435805,1.185252,1.185252,2.3205325,0.66684,2.6539525,1.840875,1.840875,2.67187,2.417073333333333,3.496,2.5517133333333333,2.1943725,5.669396666666667,3.8303425000000004,3.8303425000000004,3.769935,3.060125,2.23595,2.993855,2.505855,2.78437,4.8980575,0.4773891666666667,0.690114,4.093205,2.363575,3.107775,6.598326666666667,3.99388,1.610288,5.191216666666667,4.61874,4.33062,4.33561,5.37135,4.883055,14.062785,3.66889,1.6159033333333335,2.898295,3.651925,5.1829,3.00968,4.147775,4.377485,3.624645,4.493835,2.8993066666666665,2.822385,2.76107,2.48009,2.48009,3.923655,3.1233,3.047035,4.00918,2.382395,2.458755,2.18184,1.9035075,1.9950775,2.191375,1.7175175,3.6407875,3.67979,2.562425,7.070815,3.253205,2.2904966666666664,1.78318,3.21748,3.795635,3.58561,3.2338260416666667,3.34811,3.01208,4.23073,3.547545,3.83461,3.931315,3.3003739999999997,3.50216,0.6320766666666667,0.6320766666666667,0.6320766666666667,3.487045,2.390115,5.64755,2.442355,3.731655,7.307808888888888,2.8651066666666662,0.3710553846153846,5.4207,0.743171,4.212916666666667,1.93368,3.692185,1.927845,4.6716,5.586718333333333,4.66582,4.30622,2.768963333333333,3.0115533333333335,1.5117516666666668,2.742853333333333,0.4000936842105263,0.5621764705882353,2.871783333333333,1.41346,1.8987375,3.730125,2.91317,4.880765,2.8585266666666667,3.0917866666666667,3.57355,6.25074,1.9041675,0.8705557142857143,2.327815,3.811658,1.3548359090909092,4.918885,3.745985,3.75033,2.7294866666666664,4.11758,2.5823766666666668,2.5855900000000003,2.7929133333333334,2.47541,2.788486666666667,2.2702575,3.12481,2.538273333333333,5.63426,2.2452425,1.90395,2.1740533333333336,5.09095,3.246592,3.246592,2.48507,4.01716,2.405225,3.698895,2.989565,0.572212,4.302215,2.03835,11.665784444444444,6.69639,2.831545,3.084455,3.33064,4.49533,2.80624,3.64821,0.25881466666666664,1.9943225,3.4759666666666664,0.825025,3.776845,1.3455128571428572,4.827835,3.175475,3.32813,3.52418,3.569735,2.483785,4.571315,3.68248,4.04274,6.65705,4.27623,2.888006666666667,3.1918466666666667,1.611854,1.75216,4.287365,3.98867,3.8351525,2.775305,3.637735,1.594098,3.040085,2.6298,3.82877,11.141346666666667,3.552035,5.622745,3.771545,4.48533,1.0798788888888888,5.045486,4.86265,2.5542233333333333,2.7666466666666665,2.9408433333333335,3.5704666666666665,2.3698833333333336,1.70021,1.9544133333333333,3.83935,1.7140619999999998,2.9287166666666664,5.398612,2.9127166666666664,1.1027707142857142,1.1027707142857142,3.589045,3.0004745,3.0004745,3.342333333333333,2.72974,3.1524782051282054,3.8335000000000004,3.4864333333333337,2.605026666666667,2.3120366666666667,2.3729666666666667,3.062773333333333,2.2433225,2.5123599999999997,1.6343039999999998,5.694198999999999,9.616361000000001,0.44537461538461537,0.44537461538461537,0.44537461538461537,0.5295146153846154,0.5295146153846154,0.44537461538461537,3.028143333333333,2.9803633333333335,4.029741666666666,1.3622383333333332,1.74339,3.1839580000000005,2.3866866666666664,3.108143333333333,2.352326666666667,2.92818,3.6178666666666666,6.667216666666667,2.9003333333333337,2.40956,3.092283333333333,4.77031,2.5714833333333336,3.549466666666667,5.76108,2.35347,3.320653333333333,1.3510866666666665,1.3510866666666665,3.0423299999999998,0.5317894736842105,2.5891800000000003,2.7421233333333332,2.8556333333333335,3.26533,2.2026866666666667,1.57745,2.8023833333333332,2.9393666666666665,2.137356666666667,4.363655,2.5564693333333333,3.49256,2.36283,4.01266,0.562921,6.9255233333333335,3.09114,3.09114,7.785645277777778,1.7818500000000002,1.7440433333333332,3.1675733333333334,4.60224,2.32679,1.9247066666666666,2.6989633333333334,1.390515,3.5604999999999998,1.6884833333333333,2.9066755,1.37434,0.25993,0.25993,5.04415,3.85904,3.59552,3.071213333333333,2.62726,3.339745,1.2738433333333334,5.84395,3.701045,2.912175,1.73872,1.1234508333333333,2.33561,3.1675733333333334,2.47509,2.085095,5.420835,3.777205,4.29732,4.092755,2.3671,0.6669508333333334,7.62837,2.17508,1.71594,3.54119,4.45053,2.17274,1.8040333333333332,4.808565,4.21755,3.347633333333333,3.2330133333333335,4.429615,4.40731,3.6502,2.6227460000000002,2.6227460000000002,4.430335,4.864055,5.6616,6.5806466666666665,2.7441833333333334,4.221285,1.5089857142857144,2.6446,5.3527960000000006,3.684735,1.826496,5.2461,3.4755075,3.8535,2.183755,4.206965,4.74073,4.80912,4.670295,2.4502666666666664,2.5220166666666666,3.7006333333333337,1.9746566666666665,2.632,2.5577533333333333,2.5595266666666667,0.8435779999999999,2.066795,2.8978033333333335,2.179986333333333,4.83872,4.55682,4.72137,3.85747,3.629135,4.806274999999999,12.103535,4.94949,3.854985,4.21124,4.017735,4.52511,2.4325533333333333,3.4555946666666664,3.6863333333333332,1.266075,2.88804,2.828925,4.6402,5.51555,4.267975,3.6421333333333332,2.981446666666667,2.5000533333333332,4.324033333333333,4.11493,3.8213000000000004,4.11493,2.41043825,2.2347466666666667,2.4595100000000003,2.23549,2.942363333333333,1.80203,0.8020999999999999,1.3536016666666668,1.9633366666666667,2.0750433333333334,1.6167066666666667,1.26873,1.7194966666666665,2.8073599999999996,1.485808,2.95339,1.3294633333333332,1.5610166666666665,2.65566,4.115633333333333,2.41983,2.15984,2.374136666666667,3.24466,2.19175,2.9321300000000003,3.1288866666666664,2.43504,3.017803333333333,3.0313774999999996,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,0.1545890322580645,5.1418,3.009725,1.0146357142857143,3.096966666666667,2.5782233333333333,2.8638033333333333,3.69561,3.4398999999999997,4.51159,3.717007333333333,1.721394,2.937193333333333,1.9052833333333332,1.00830375,0.972541,1.6337283333333332,0.8891683333333332,0.8087425,1.2686439999999999,3.14577,1.570658,1.6715333333333333,1.9849494444444447,2.468775,1.4596600000000002,1.325725,1.6397883333333334,0.9509933333333334,1.2074316666666667,0.718395,0.9072419999999999,3.26698,3.590515,4.151805,4.47619,4.140095,3.0026733333333335,4.832475,3.6366,2.054205,3.415615,2.0460575,3.46665,2.5069733333333333,0.8558327272727273,4.429045,5.1372,2.050596666666667,1.24377,2.82939,3.381575,3.6836816666666667,2.9632799999999997,2.83645,0.89186875,2.34609,5.12364,3.798945,2.57633,1.4971233333333334,3.729165,2.12711,0.6254881818181818,4.34997,4.626095,4.30209,2.41018,1.468026,3.9091,4.348775,2.5489,2.540223333333333,2.52687,2.6074033333333335,2.7153266666666664,2.7386233333333334,3.0991866666666668,1.26435,2.703775,2.729836666666667,5.0482,4.37661,3.642185,4.59696,16.4139810530303,4.6675675000000005,4.563719333333333,2.74496,4.4969,5.16015,1.549448,2.3170225,2.6662766666666666,6.623692500000001,4.390795,3.76621,6.49685,2.6662766666666666,3.90992,2.113575,2.5713933333333334,2.9177366666666664,2.7227033333333335,1.3189,4.298675,3.91269,2.57288,4.15278,2.7211166666666666,3.395433333333333,3.666245,3.55942,4.68385,4.44962,2.70364,3.49604,2.48592,2.7392133333333333,1.426254,1.426254,3.3643666666666667,2.52636,0.3838714285714286,5.292593,1.005042,2.87281,3.847425,0.5595025,4.983925,8.3247,1.80961,3.547095,3.607055,2.66705,3.208965,2.257345,3.03112,3.420795,4.185145,3.085975,3.8696333333333333,1.00285,11.563939666666666,2.97266,2.86773,5.90165,2.55919,3.835605,7.695638333333333,3.970755,4.224265,3.84692,4.16932,5.9223875,1.4991625,2.92783,4.90179,3.873666666666667,1.9338159999999998,3.73644,3.798125,3.598285,3.893165,4.423685,4.0814,2.474255,4.54491,3.77847,5.32555,3.49055,2.25303,2.4181266666666668,1.9543333333333335,2.9869,1.3374066666666666,3.7764333333333333,0.8757472727272727,3.21664,3.2051933333333333,2.6072333333333333,1.5897983333333334,4.384945,4.46746,4.147975,1.8268925,4.760985,4.015845,0.7440614615384615,0.3325634615384615,4.23385,5.50065,0.97545,0.3325634615384615,4.851375,0.7440614615384615,0.7440614615384615,0.3325634615384615,5.721128333333334,2.5057833333333335,2.4252833333333332,5.71415,3.897005,3.05374,0.79293,3.270735,3.7039,4.772805,5.719,2.1251675,0.7428584615384615,4.354751666666667,2.4483433333333333,1.426844,1.982545,1.0532942857142857,2.5439066666666665,2.2576933333333336,3.83843,5.45635,2.9577733333333334,3.2314366666666667,3.0143833333333334,2.2792966666666667,2.92876,4.4110000000000005,1.6382225,1.9815275,3.925735,5.07515,2.244167222222222,5.25755,2.463335,4.13921,3.974415,2.633655,1.250545,3.23122,6.8736,3.996235,3.31227,5.13145,6.45995,2.27314,3.32545,4.49187,3.053355,3.450465,8.2156,3.73215,4.9443649999999995,2.35213,1.25979,2.621303333333333,1.95709,2.14478,1.82713,4.50081,0.7089935714285714,3.2643,3.993665,1.8937866666666665,3.08666,5.36765,3.431585,2.90431,4.518915,5.19415,9.536418666666668,2.6706333333333334,2.7350100000000004,1.6392440000000001,1.7132500000000002,1.1681866666666667,1.5663366666666667,2.9556633333333333,2.44284,2.7797433333333337,4.104310641025641,1.522675,2.6547533333333333,5.3124,5.7429,3.89255,3.361605,2.94809,2.6442,2.00734,2.07771,1.79119,1.91951,3.52128,3.87024,4.891015,5.09145,4.09765,5.7528041666666665,3.389535,2.442275,6.646519166666667,3.42282,8.759644999999999,4.794761666666666,4.794761666666666,5.74576,1.5793733333333335,1.411815,1.45543,0.722403,5.10975,4.0081,3.321695,3.321695,2.15272,4.800305,4.370405,4.66196,4.372735,2.9076500000000003,2.663025,3.838925,3.0965633333333336,5.309965833333333,3.609885,0.8167863636363637,5.25125,5.0445,4.036685,5.04935,3.19478,6.1988,4.50101,0.8682923076923077,5.4995,6.84549,3.509905,5.83215,5.7104,3.419565,2.63039,3.70582,6.05655,2.14426,5.8772,1.8530725,4.79883,2.58548,2.603425,0.943039,3.591385,6.0922,3.27577,4.12033,2.026553333333333,4.77691,8.192675,3.39038,4.07801,2.538825,3.018335,0.8396520000000001,4.89528,1.6196466666666665,3.485121666666667,3.485121666666667,3.904895,2.2684366666666667,3.1683,4.048285,2.05094,3.054626666666667,3.434533333333333,3.2432666666666665,2.86153,3.758825,3.199715,1.819555,3.3468666666666667,2.1507475,3.1059699999999997,1.95214,3.0782433333333334,3.2764066666666665,1.461757142857143,1.7312866666666666,0.459125,1.344195,0.459125,0.459125,1.7312866666666666,0.459125,3.510033333333333,2.570262,2.570262,2.9619033333333333,4.348815,3.817985,4.34681,5.38565,5.4788,3.492125,4.25386,4.26102,2.2061575,2.509024,2.5506100000000003,0.8468227272727272,5.74075,3.2668766666666667,3.10545,5.64065,4.2175825,5.12055,3.28904,2.5531833333333336,2.890055,3.3279,2.64461,2.6950233333333333,1.9856033333333334,5.4118,0.8894055555555556,4.081225,1.2130971428571429,3.51781,3.4486333333333334,2.982396666666667,4.18132,4.22489,3.965975,4.59443,4.05919,3.929185,4.49539,4.12364,2.61455,2.832075,3.217366666666667,4.07938,2.58136,3.384835,2.67204,2.919515,3.2683,3.42837,4.86676,5.0174,3.99741,69.02941088937452,2.7681183333333332,4.10337,16.751846,3.98376,3.0569933333333332,2.42551,1.82137,2.71817,4.635972499999999,3.101046666666667,4.4308675,5.81515,3.25644,8.063091666666667,5.44075,2.293505,3.103455,3.949575,3.40032,1.890276,1.1925175,4.56507,3.061855,5.814315000000001,3.699465,2.25432,3.45635,4.43731,4.50828,3.10974,5.62255,4.347815,3.96793,2.93187,2.51545,2.765345,6.23335,2.746715,3.68731,4.248734166666667,1.17279,3.108085,5.02972,4.374285,3.15919,3.51271,3.002175,4.22121,3.136515,3.5975,2.864515,4.21527,3.037255,2.688325,4.405665,8.77881,3.1237966666666668,4.077265,5.97483,2.990045,2.60426,4.1195337499999996,2.4203433333333333,2.83248,3.022164,3.347715,3.273855,2.86454,3.149845,3.307855,3.91753,3.821395,4.1429,3.687275,3.66498,3.831725,2.715215,2.715215,6.865578333333334,2.21022,3.222495,3.460385,2.48042,4.977265,4.07237,3.044785,3.510675,5.3151,5.966145,0.6517172727272728,4.117375,2.199705,2.790566666666667,2.80982,5.16805,2.680336666666667,1.8933525,1.15281,2.0446777272727275,4.198045,5.2156,4.155775,5.84415,5.72665,5.80155,2.550265,1.89534,3.963745,3.002515,2.87927,2.00303,1.4797466666666665,2.98254,3.2387866666666665,1.629466,2.52514,2.3770888571428572,3.442464532967033,2.72079,5.08285,3.250915,1.35812,3.296725,3.429885,5.88565,5.2041,5.63865,4.86551,1.9935866666666666,1.4651733333333334,0.5869271428571429,1.4686199999999998,3.50619,2.60774,3.5777116666666666,1.3980766666666666,2.55961,2.31348,3.2952,3.480265,3.76289,4.059955833333333,1.58198,1.3730575,1.85122,1.98651,1.4112725,2.515425,7.131204583333334,4.89853,3.87881,2.938665,6.8279,4.601325,3.12479,3.014925,3.378585,2.668645,3.778045,2.2851833333333333,7.31354,0.8822833333333334,3.08205,6.6839,4.11238,4.91779,6.42675,1.3970466666666665,3.234253333333333,3.1891166666666666,2.8021266666666667,1.591565,3.98651,8.4181,3.536045,5.11475,3.90894,3.20983,4.771675,0.8797466666666667,2.7479933333333335,5.4258,6.502323333333333,5.45165,5.6839,2.922565,3.7998666666666665,2.68224,5.20735,4.985225,4.059797071428571,4.059797071428571,0.6226885714285714,3.7918333333333334,0.9241860000000001,0.65428,1.8562575,3.8491666666666666,4.13105,5.592078571428571,2.3858866666666665,3.3287985714285715,3.2640085714285716,3.0055433333333332,3.15732,4.5505,3.448425,1.87344,1.87344,4.247385,2.961373333333333,2.6559466666666665,3.836805,3.5694,0.5705088888888888,3.3821333333333334,2.729926666666667,2.6899800000000003,2.842833333333333,2.594175,2.6609666666666665,3.2991200000000003,3.13301,0.818966,3.15094,6.251255714285715,2.19282,7.380552,1.53866,1.53866,3.5986399166666665,3.4125666666666667,3.3890333333333333,2.9685699999999997,1.757808,1.350172857142857,3.2447433333333335,3.428266666666667,1.5194283333333332,1.5714000000000001,2.8117666666666667,2.680866,2.917923333333333,1.890955,1.9490325,3.08605,2.206335,2.68641,3.101635,1.566125,3.58698,3.11816,7.08591,3.5955,1.6565875,2.98784,2.59357,2.197255,3.95594,2.3608766666666665,2.70338,7.5657325,0.8221076923076923,0.8122050000000001,4.59265,1.473958,1.473958,3.83869,2.4712625,4.597435,3.223455,1.32886,2.3460806666666665,2.9098566666666668,2.3871273333333334,5.25795,4.54994,2.614446666666667,2.568096666666667,1.5153978571428572,1.5153978571428572,2.8011866666666667,3.830295,4.053166666666667,6.012,3.14793,5.09625,4.565455,6.68785,4.82284,2.672505,2.7184566666666665,2.572293333333333,2.6411266666666666,0.71284,0.71284,0.71284,3.194875,4.315885,3.96633,0.96997,0.96997,4.85176,5.92295,6.81094,22.43122766666667,11.2728,8.39414,3.292465,5.86,2.4661375,4.66009,2.6186966666666667,3.23103,4.171966666666667,5.350659333333334,2.04791,2.463505,6.84638,2.15926,2.15926,6.41025,3.307565,4.330425,2.07832,5.0617435,4.833825,4.36575,5.2886,3.966705,1.37238,5.9002,9.48885,1.37238,2.07832,2.07307,1.058112,1.058112,1.791394,2.2199566666666666,1.791394,4.79674,5.57615,6.21635,9.26461,2.07832,11.5702715,6.145,5.8884,2.4661375,3.5123,4.46429,8.71066,3.032900833333333,4.252965,6.1746,3.45506,4.91764,6.2106,4.66417,5.32205,5.2646,2.842475,5.177,3.927665,4.786535,4.405185,0.796795,1.467288,3.18608,5.5776,4.43749,2.9127166666666664,2.223665,4.29741,4.940235,5.8806,5.374,5.1194,4.204435,3.693165,4.030755,3.714795,2.04214,4.80705,1.95398,2.5716,3.43858,1.51876,3.847995,4.315145,3.509235,3.715186666666667,3.140055,6.779381666666667,0.9880222222222224,3.34706,2.4208,1.2472028571428573,5.279696,1.5964866666666666,1.5712766666666667,2.85112,2.9367405,3.192223333333333,2.7606566666666663,1.9560725,0.7436309090909091,2.15068,2.598945,3.983735,0.7417946153846154,5.815635,1.79718,1.157532,3.4544,1.157532,3.80662,0.968090909090909,4.358225,3.101906666666667,1.73191,4.958341,4.447681,4.447681,4.89599,2.48259,3.05013,2.9376866666666666,1.56867,3.823775,3.684185,1.8701966666666667,0.7464083333333332,7.228352948717949,2.852545,4.331925,4.31513,7.49936,2.4129625,4.090605,3.693005,3.147105,3.78091,5.644,6.2472925,4.700865,5.0211,5.4231,2.949203333333333,4.84945,4.291995,4.529195,1.1497444444444445,0.4888921428571429,3.0733,3.4699666666666666,2.9168133333333333,5.53895,3.758425,4.20068,4.30385,5.35405,4.38384,4.310355,1.19818,2.314945,8.739055,2.3166433333333334,1.87374,4.355073333333333,11.682553174603175,1.4987075,5.35295,6.39705,5.178,3.5875333333333335,2.4076766666666667,3.3311666666666664,4.170385,1.081315,3.413866666666667,3.5835,0.3687115789473684,2.2648733333333335,4.72047,4.16168,2.179345,4.28343,3.034865,4.971218333333333,1.24152,0.5281245454545455,3.7296983333333333,1.2253685714285714,1.0453,1.0453,1.0453,1.0453,1.6682,2.9258433333333334,1.8790933333333333,3.527433333333333,5.3165,3.5749666666666666,5.2565,3.82132,4.066365,3.58301,3.885585,1.4726100000000002,6.782064999999999,2.20841,4.85888,5.262326666666667,5.42155,5.257619999999999,2.352446666666667,2.4853566666666667,2.5965233333333333,3.50984,1.2356133333333335,4.637713333333334,2.6162033333333334,4.96791,2.98434,2.42281,3.72217,3.327375,2.8314,2.44299,2.8035099999999997,1.4503425,0.40156111111111115,4.50266,3.91383,4.03235,3.645195,3.83169,5.81725,4.608025,0.5204799999999999,3.437398,7.688628,2.02817,2.22306,5.868969999999999,5.8746,2.8772233333333332,5.1275,5.3318,4.578045,4.205055,4.258965,5.505,5.5772,5.24595,3.48004,5.321714,1.513978,1.6333183333333334,4.379745,4.1918,4.23994,3.186555,5.3885,4.72014,3.715965,3.34493,15.786328991216337,1.2659157356875335,1.2286225,2.0640252272727273,0.54055125,0.5288013333333333,1.5197375,0.35460882352941175,1.466486,3.9426,2.03092,0.9996083333333333,2.2642291666666665,0.9749916666666666,2.2642291666666665,2.2642291666666665,0.9749916666666666,0.8538769230769231,0.5631264285714286,2.68082,2.9572866666666666,4.896185,4.061635,2.802353333333333,2.7366,4.32878,5.1124,5.24215,2.81405,4.53338,0.7005742857142857,2.3208113333333333,8.142733333333332,4.5148,6.698583333333334,2.596635,4.38582,2.257895,5.5177,5.677,3.481075,3.974945,3.133645,1.0590316666666666,4.55773,4.912045,1.421718,1.148762,1.5997116666666666,2.2437400000000003,2.381206666666667,5.58995,5.6528,2.2316525,2.2316525,3.577714444444444,6.06384,2.08397,0.6560036363636363,0.7954614285714285,2.30689,3.5978999999999997,0.9578157142857143,0.9578157142857143,0.9578157142857143,0.36097615384615384,1.0730928571428573,3.08795,6.1012,3.911433333333333,4.250613333333334,5.3757,1.04138,3.6169333333333333,3.3027599999999997,3.9503333333333335,5.7555,2.73681,7.5974,5.13675,1.1373,3.8842666666666665,1.903424,2.604135,2.310173333333333,7.484421666666666,3.24751,4.310135,2.4322975,4.61889,4.37191,5.14155,0.5384788888888888,2.9379899999999997,1.3354733333333335,2.7179233333333332,3.791324,2.0450233333333334,2.715733333333333,2.701423333333333,2.5541266666666664,2.66344,2.8436966666666668,2.7325933333333334,2.9332666666666665,1.357974,2.180473333333333,1.8529466666666667,3.1994900000000004,2.6930533333333333,2.1464375,1.7568166666666667,1.7845233333333335,1.683365,3.00335,2.19711,1.93656,2.16192,2.30763,2.3566333333333334,0.8110933333333333,0.8110933333333333,0.8110933333333333,2.40312,2.2152366666666667,2.9907033333333337,2.3248,2.5121366666666667,1.92724,3.61835,3.3191333333333333,1.25499,2.40697,2.75511,3.6443266666666667,1.6271714285714285,7.145161666666667,4.43154,3.0694,4.00024,3.513115,1.6933325,0.8019928571428572,3.859625,3.691325,3.6443266666666667,4.689425,4.27327,4.887915,2.98644,4.098865,4.223915,0.968563,2.585465,3.23932,4.962211666666667,4.733205,3.492195,3.41579,2.40517,2.48852,2.429536666666667,0.6350091666666667,5.4070945833333335,2.737925,4.02213,2.6540933333333334,3.7825516666666665,3.4683333333333333,2.4403799999999998,3.1540523333333335,3.1540523333333335,2.5113566666666665,2.10158,2.47726,1.9565933333333334,4.369985,1.429374,2.44208,3.797395,3.947625,3.990175,5.4251,4.24855,2.6297,2.166635,3.219275,3.395945,2.61655,5.4013,2.740915,1.0137557142857143,1.0137557142857143,4.774025,3.745095,0.91977,4.389295,0.91977,4.02614,4.867665,4.745145,3.374605,3.164505,6.2107149999999995,4.1315675,5.7378,0.87795,0.87795,2.18634,4.660101666666667,1.6014766666666667,3.058625,3.405845,1.1159957142857142,4.16469,4.157065,5.873675,5.873675,1.101375,5.1932,5.37965,5.12705,6.08085,2.1091875,2.1091875,7.0163,0.9821454545454545,7.23625,1.9973175,6.6823975,2.7034,2.5150200000000003,3.36139,2.4361,2.124773333333333,2.446563333333333,2.97277,2.523581666666667,6.415174,1.7398060000000002,5.0713,3.1567866666666666,2.683543333333333,1.752255,2.395095,3.079935,3.082325,3.403875,2.72631,2.31791,2.272365,2.592085,1.103562,3.2504,2.48121,3.16973,2.0762935000000002,2.0762935000000002,2.89633,2.04628,3.675535,3.45909,4.864715,7.154608333333333,4.03411,3.30068,6.554084999999999,2.1030166666666665,3.256508888888889,2.15136,1.5104428571428572,1.721995,4.09011,1.58294,0.499941875,0.6565466666666667,4.64386,5.0136,2.774705,0.9335722222222222,3.0377,3.02399,4.906745,1.8762180000000002,1.953605,1.1740000000000002,4.783445,2.30887,4.69256,0.714184,4.2343875,4.27299,3.7268,4.670105,3.388435,3.711925,3.040923333333333,5.62405,3.539755,2.33901,2.5871299999999997,6.170966666666667,6.3154675000000005,0.7519175,3.784365,4.34363,5.40805,3.8541666666666665,3.8805333333333336,3.0211,3.24464,3.8455333333333335,6.45359,2.680866,2.480556,4.313255,3.57832,2.3822,2.578425,8.32149,4.646385,1.8684166666666666,5.06,4.714405,1.7413779999999999,3.814335,1.39975,1.5812571428571427,4.44888,3.9449,5.2417,2.7914133333333333,3.61133,3.7047,5.1201,4.274235,3.963345,3.37678,4.298945,4.256245,4.226929999999999,1.174579923076923,1.174579923076923,7.67048,0.9296225,2.230865,0.9296225,0.6902633333333333,0.49234000000000006,2.9211283333333333,2.355445,0.48469,2.230865,2.306865,3.184545,2.4364383333333333,3.322765,4.934,7.939083333333333,2.304325,2.110375,2.54974,5.04845,5.8489,2.28344,1.6537175,0.87733,2.5310475,4.07174,2.628585,4.5049,6.391837499999999,0.4484427777777778,3.780135,0.732446,3.0479333333333334,2.3294425,4.186685,1.2247733333333333,4.25503,4.7798275,4.193145,2.848965,4.154945,5.500235,1.834355,3.803605,0.6323453846153846,2.642855,2.69877,1.264958,3.1467033333333334,2.4125466666666666,2.4299633333333333,3.846515,8.708425,2.9465121212121215,3.615865,3.32688,6.99707,5.573586666666667,3.224536666666667,4.066085,3.482645,5.513,3.98333,5.46715,4.973145,4.006175,5.07295,3.2045366666666664,1.5248825,1.9026533333333333,2.321493333333333,4.085455,2.369763333333333,0.1991510810810811,0.1991510810810811,0.1991510810810811,30.66781795238095,0.1991510810810811,3.086176081081081,0.1991510810810811,0.1991510810810811,0.1991510810810811,3.3423477477477475,4.205675,0.1991510810810811,0.1991510810810811,0.1991510810810811,0.1991510810810811,0.1991510810810811,3.02594,5.00722,2.962735,0.23027307692307694,0.23027307692307694,4.446786666666667,4.067114333333333,4.184971666666667,3.4314867777777778,4.000091428571428,8.160533333333333,11.725893803418804,6.766357333333334,8.338146666666667,7.824176589285714,3.0423299999999998,6.575804761904762,4.552168333333333,4.462097788461538,0.23027307692307694,8.151184,6.836534476190476,6.843764999999999,2.9507,8.930719589285715,15.151141398809523,18.685276206501833,56.964288053151094,118.71352091496983,1.3510866666666665,3.320653333333333,3.36625,4.0421454929214935,0.23027307692307694,1.6878832051282049,8.859034583333333,15.09548563095238,19.919905,48.86157113492064,13.109456589285715,3.144675,0.22669793103448274,0.22669793103448274,4.4491499999999995,2.6861599999999997,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,0.22669793103448274,5.72062,0.22669793103448274,0.22669793103448274,0.22669793103448274,2.600745,2.0265400000000002,3.50166,3.60285,4.257943333333333,5.22015,2.30255,4.14524,4.19497,3.247535,1.50872,3.52915,0.9595783333333333,2.330865,2.15596,5.299943333333333,6.455326666666666,2.7764866666666665,6.1316349444444445,0.5428038888888889,0.5102826666666667,2.53692,2.982483333333333,2.983195,4.315095,3.6359333333333335,7.379535000000001,3.65132,3.71845,3.292015,3.960865,3.135765,3.190425,5.86805,1.899545,0.44288923076923076,0.8416427272727273,4.5228850000000005,1.78685,3.761775,3.61327,4.47007,3.49149,2.42547,2.64006,0.6186659999999999,0.736476,4.33586,2.5994566666666667,6.0366,3.757475,3.858526666666666,2.670015,3.19257,5.77915,4.125895,3.18659,0.9248454545454545,3.4624333333333333,4.60637,2.149445,0.946245,1.5392766666666666,4.194135,6.37475,1.92792,2.962535,4.133815,5.84985,2.480365,2.4829133333333333,3.152095,4.713945,2.90752,4.39222,0.7856257142857144,1.9948066666666666,3.312215,1.98848,6.2339199999999995,3.587065,4.202115,5.63555,2.83515,2.45549,0.5078854545454545,4.925975,4.625725,6.83465,3.98542,4.63144,5.0368,2.74706,2.08885,1.2236157142857143,5.323,2.08751,2.623505,7.83904,4.11821,5.5597,3.692395,0.8750888888888889,3.08083,1.2384685714285715,3.132655,6.229,5.0899,5.08335,3.78617,5.18075,4.455485,1.817975,1.7877599999999998,5.11115,3.1958566666666663,3.3950333333333336,2.4905325,5.46265,4.954945,1.4649316666666667,3.6914,2.80569,2.764735,4.284885,8.93919,4.731025,1.73793,4.76222,6.52413,4.34961,4.03721,4.130735,4.281245,4.72087,7.67783,2.34523,3.16838,3.328895,4.10976,3.012575,3.07213,4.999835,4.302985,3.679815,3.971808666666667,19.127469666666666,2.8159766666666664,2.7806466666666663,3.4759666666666664,5.552559666666666,1.256525,4.367625,2.163409166666667,4.951645,1.5003533333333332,4.417475,4.300835,3.85631,0.93002,4.653745,4.435165,1.6120125,4.558524621212122,4.601065,1.1285242857142859,3.441875,1.984035,2.42494,1.585135,4.149365,3.739435,3.886325,3.64362,2.94918,4.5802,8.165329999999999,4.706265,4.60084,5.0035,3.1997133333333334,4.28799,4.959445,6.810989999999999,0.882868,0.882868,4.468805,4.944565,2.3254566666666667,1.4932083333333335,7.3474450000000004,4.28777,3.668625,4.059915,4.829535,4.688375,3.517935,4.191465,6.739348,4.226846666666667,4.471635,4.89069,1.496257142857143,2.776675,4.69248,4.80555,3.7162249999999997,0.2093411111111111,1.482725,2.174875,2.4684933333333334,2.1501333333333332,0.9458222222222221,1.268675,1.2758825,2.4920533333333332,0.6244022222222223,1.0499957142857144,1.971885,3.89507,3.9885333333333333,2.39432,2.6822466666666664,2.88595,2.806573333333333,0.7250460000000001,0.937175,3.336175,4.507965,4.725855,3.09209,4.96738,4.91149,4.69769,2.1847000000000003,4.324675,5.00925,4.469615,6.3399275,3.80909,0.47452941176470587,5.75305,4.45511,4.326025,5.1494,3.381965,1.9988499999999998,3.94102,3.998405,2.687375,5.251268333333333,4.412135,1.3675133333333334,5.251268333333333,3.9688,6.795755,3.634255,1.2009333333333334,3.91022,5.07835,4.168915,2.4554666666666667,5.1283,1.4942475,1.95916,3.346735,3.436465,0.7999533333333333,5.0837,4.81014,3.66384,3.78946,3.5135,3.21219,1.7967600000000001,1.7232675,3.07056,3.392445,3.5170333333333335,2.3889633333333333,2.288885,2.0402583333333335,3.98943,1.3954842857142857,0.8105933333333334,5.78492,3.90741,1.557746,2.9052900000000004,2.2679933333333335,3.24592,6.342008333333334,2.4165366666666666,0.865592,2.574135,4.87913,2.0697466666666666,4.42703,5.06595,5.206,4.90036,4.379125,5.24235,2.1475166666666667,2.23601,1.6627666666666665,2.1080466666666666,1.8640125,2.3371,2.1688199999999997,1.83537,2.62127,3.043365,4.16553,6.5843,4.620855,4.11537,4.42604,3.896615,3.87488,5.1569,0.90962875,3.2521466666666665,4.783535,1.140568,0.6851733333333333,5.24765,3.57637,2.768273333333333,3.79245125,6.3784525,5.37875,0.9757680000000001,1.2248385714285714,0.6911211111111111,4.058418333333334,2.2241166666666667,2.7133599999999998,1.21495,2.800266666666667,2.8289333333333335,5.6266,4.489105,4.546675,5.3504,4.55546,1.2962466666666665,3.652265,1.68836,3.485225,3.96056,3.303315,3.0686433333333336,3.3589,2.775183333333333,4.54552,4.20354,3.282525,2.5376,9.012635,10.129290000000001,4.3451,1.3784842857142858,5.39315,4.289295,4.93397,4.50203,4.024775,3.79301,3.345545,4.06106,3.731304583333333,5.63576,3.809735,3.985555,4.49555,1.843084,4.77073,5.88695,4.743845,3.313825,3.0781925,7.26504,0.7873966666666666,2.4992533333333333,2.72526,2.28842,5.0917,3.672145,1.3664399999999999,4.2944,3.509233333333333,3.62007,4.61724,4.207436666666666,6.781334,3.2898566666666667,3.0681733333333336,3.3022533333333333,2.8459033333333337,4.263435,2.1409533333333335,2.1209666666666664,3.0223266666666664,3.85039,3.8296691666666667,1.9370275,1.52634,3.428531785714286,3.3615055000000003,0.9804766666666667,2.718018333333333,2.718018333333333,1.457525,5.8404,3.10084,3.452915,3.85846,3.499285,3.392875,3.186065,3.201235,3.20591,2.25764,0.5559113333333333,3.247975,5.55115,3.10663,3.895795,3.170755,4.00137,4.00093,3.112295,2.603045,3.92184,3.643405,3.0263,3.08372,3.551195,2.542806666666667,4.05688,3.80636,8.75435,3.33288,3.56132,3.081055,3.917875,3.9694,3.600565,2.298235,3.62414,2.6588525,2.755365,2.87366,3.138405,3.62463,1.7221733333333333,1.7221733333333333,2.23965,2.94966,3.121685,1.5029759999999999,2.4313,3.336765,1.9339780000000002,2.679905,1.5029759999999999,4.59265,2.805035,3.8592805,2.984765,3.49463,2.33538,3.104115,3.909635,4.34522,3.741025,4.475295,3.755085,4.20841,3.56779,3.15817,3.03943,2.902895,3.865505,2.5739733333333334,3.709735,5.44515,4.070255,3.62332,0.2637439130434783,3.76575,0.4476275,3.585865,3.442785,2.940645,3.498625,3.712715,5.93515,3.24995,2.5234799999999997,2.246023333333333,2.743563333333333,0.633131,7.12487,3.080825,3.440665,3.59554,1.97353,2.879585,3.134075,3.010425,6.582525,4.81449,5.19495,4.538785,4.45525,4.343355,3.969375,1.4482333333333333,1.613864,3.91727,4.690595,5.9066775,2.59782,4.925865,2.041145,3.568633333333333,4.12821,1.9165757142857145,4.06081,4.93674,3.5983666666666667,3.8298,2.7877766666666663,4.625925,4.910635,3.511566666666667,4.37229,4.76471,5.01145,4.535605,4.469835,4.26838,3.18555,4.454235,2.625775,3.373466666666667,3.373466666666667,4.83143,2.433596666666667,3.910265,2.48685,4.839675,3.4423666666666666,3.536325,1.82937,2.1059233333333336,1.1437633333333335,1.1437633333333335,1.639884,3.470466666666667,1.6708133333333333,2.6271633333333333,4.54031,5.199102,3.2887766666666667,4.2193,5.58401,3.1148,2.720645,3.093496666666667,1.6010366666666667,4.35354,4.317035,6.460775,1.9022666666666668,5.26015,5.80815,3.4843666666666664,3.46695,4.16285,6.46779,2.2538766666666668,2.4584675,4.150155,0.5003985714285715,4.33986,4.002235,4.380895,4.611685,3.46102,1.545616,1.736554,3.851955,3.74357,2.34761,3.71339,4.764595,5.018,1.15297125,3.680725,4.539435,3.682195,4.823565,2.795946666666667,5.143148333333333,3.679875,1.503868,3.528165,1.201135,2.7739700000000003,7.8126016666666676,3.32625,0.7254063636363637,3.6049,4.134445,3.893845,1.96553,1.96553,4.92242,5.73815,2.83811,0.46951222222222216,1.92118,4.508806666666667,4.52629,4.34764,1.7101780000000002,3.065633333333333,3.670385,1.24986,1.24986,1.24986,0.6982358333333334,1.2311608333333333,0.532925,1.24986,0.6982358333333334,0.23722,0.770145,0.23722,0.46101583333333335,0.46101583333333335,0.46101583333333335,0.46101583333333335,1.089363,1.07442125,2.30674,2.340411666666667,1.1123733333333334,6.313835,2.66038,6.258723333333332,2.894933333333333,3.874135,2.91356,3.319505,2.8203508333333334,4.57595,2.8087933333333335,4.08003,3.904835,4.77762,2.18184,3.9845,4.860915,3.990545,3.096215,4.87787,3.295105,4.44987,5.649,5.16615,6.18975,5.28025,1.11418,4.692085,3.81008,3.393665,16.37786,4.880075,5.45375,2.7246233333333336,7.52165,3.758135,5.18825,5.1954,3.164325,1.048885,2.614485,4.17147,4.30486,3.79741,3.1901,4.09543,3.016906666666667,4.663525,4.78393,4.248025,6.519536666666666,7.806386666666667,1.4070271428571428,3.67651,3.93127,4.02897,3.4854,3.583355,6.91603,2.432575,2.73902,2.620425,3.92169,3.88632,4.822645,2.479635,1.6805325,0.939932,4.308855,4.15656,3.769805,4.109245,3.755935,5.09815,3.958565,6.50015,5.95265,5.2955,6.7756,3.665,3.211425,3.17029,3.285175,1.8305875,4.418265,6.4414,6.7353,6.164843333333334,6.164843333333334,2.459255,1.8305875,2.187695,3.66341,0.7045483333333333,1.4992783333333333,0.79473,1.6261625,2.753615,0.425736,2.938735,4.14478,1.6261625,3.1409825,10.92247,6.53151,2.3570225,1.07332,1.6382066666666668,4.736765,4.218715,5.986190619047619,1.9538875,2.21243,4.12194,3.717805,4.738245,1.7417999999999998,5.40375,3.6641,3.520545,5.26765,7.163184,3.850755,2.46418,2.7376733333333334,1.7975933333333334,4.282245,5.5809075,1.9365200000000002,5.6678,4.338895,6.106895,0.5546906666666668,4.960696666666667,5.6639,5.0614,2.994545,2.77202,7.3037,8.557033333333333,6.6654,2.0360333333333336,2.0360333333333336,2.0360333333333336,5.18005,4.825135,6.0873,3.762485,2.705735,2.6732873684210525,5.2906,3.712565,2.5316345,1.890375,2.5316345,7.3161845,4.795903333333333,4.7822723809523815,8.09201,4.7822723809523815,4.7822723809523815,3.619745714285714,6.82978,5.249719,2.767814,2.767814,2.600435,7.0519,2.907045,3.539825,5.4883291666666665,5.4883291666666665,5.4883291666666665,7.3780850000000004,3.4746775000000003,3.42802,3.5242500000000003,3.4217775,0.8591625,7.571983333333334,2.77608,6.75695,3.448545,12.619825666666667,4.99966,5.349590833333333,6.6582,2.5265383333333333,3.44217,1.0914249999999999,5.349590833333333,3.37866,1.7595025,1.7595025,3.024475,5.123076666666667,1.712425,4.676671666666667,0.8246840000000001,1.417315,0.8246840000000001,1.86372,2.537109,5.127129,3.653975,1.417315,3.21308,4.78654,1.006495,3.42087,4.193745,2.26436,4.175411666666667,2.87146,3.063845,3.083605,0.974888,3.67111,2.68801,2.016265,1.6461133333333333,2.9670933333333336,4.11296,2.62609,3.69068,1.2562133333333332,1.2562133333333332,1.2562133333333332,4.145015,3.157526666666667,3.157526666666667,2.82551,3.730335,1.9756066666666667,1.4945,1.4945,3.041495,4.7081925,0.8036075,1.5699866666666666,2.70769,1.053555,2.623541666666666,0.974888,0.974888,1.853425833333333,0.974888,3.0129791666666668,0.48853166666666664,3.0129791666666668,5.88073375,3.20024,2.4256533333333334,1.7725470833333334,0.5783349999999999,2.3508820833333335,3.62078,2.3508820833333335,0.9346733333333334,3.3381,3.66789,3.78564,3.50957,2.65066,3.81774,1.7245766666666666,1.0504969444444443,0.4909325,1.0504969444444443,0.5595644444444444,1.0504969444444443,1.0504969444444443,4.577335,4.39219,5.9386,3.3466,4.538855,4.57552,5.31775,3.50012,3.962655,1.4450571428571428,2.8724366666666667,4.650265,3.78605,1.3376033333333333,2.8518733333333333,3.988315,3.77298,4.130095,3.66774,4.120095,3.683315,3.155945,4.42386,2.5878366666666666,6.12735,3.4496,3.838855,4.49292,0.8378680000000001,1.985365,3.07094,6.18642,3.998,3.448465,2.93749,4.312195,7.340338333333333,3.11863,3.149155,2.849413333333333,4.156505,3.982335,5.6506,5.62755,4.943225,3.13694,5.4766,4.768325,3.6234333333333333,8.20568,3.4483,2.4033,2.45052,4.93485,6.70735,5.17835,5.5689,3.999355,4.87976,5.7169,0.5404215384615385,7.60791,4.66841,3.66666,4.043895,4.982685,4.11585,3.0681700000000003,2.514575,1.3718983333333332,0.5712823076923077,1.8946239999999999,3.1391333333333336,3.362695,3.581145,3.95546,4.015005,11.811133333333334,3.81248,3.833235,2.817605,0.7560233333333333,5.378736666666667,2.868676666666667,1.4476166666666668,4.316293333333334,5.288761666666667,2.420085,7.79587,4.72361,1.872832,1.872832,1.872832,4.94539,9.23127,3.516765,3.21135,3.21135,3.26301,9.91612,1.0786375,4.76885,4.661545,4.238055,2.7179266666666666,2.160156666666667,4.199925,3.780955,6.3337,5.878396666666667,3.78447,2.875455,3.68138,4.531,3.6744095000000003,1.3499625,3.0581066666666668,6.02408,3.43741,5.35725,0.9926,3.7258999999999998,2.34141,2.5178366666666667,1.781575,1.7859966666666667,2.0621233333333335,6.02735,2.066585,4.335175,5.46985,1.7398060000000002,4.85964,3.85272,4.758475,3.212953333333333,2.203385,2.70279,4.31397,4.0610558333333335,4.0610558333333335,1.19945,1.6011066666666667,2.9389299999999996,4.2013620000000005,2.180063272727273,4.8435820000000005,1.775692,2.844943333333333,2.12708,1.7302975,1.7302975,5.05415,7.5494216666666665,1.9492633333333333,3.1656933333333335,2.1280425,4.75052,3.1076,0.789742,2.8486,0.789742,2.603855,3.785225,5.1618,5.65935,3.577365,4.7010950000000005,5.86065,2.31879,1.8096733333333335,2.7622133333333334,2.1624466666666664,6.12705,5.2128,2.37805,3.96586,2.604215,4.57259,1.0858275,1.1112959999999998,1.7509,1.3402866666666666,2.5742166666666666,2.8187166666666665,2.1413466666666667,3.0725366666666667,2.62,4.64029,2.56454,2.3656133333333336,2.6502233333333334,2.3153900000000003,2.7066933333333334,2.6132766666666667,1.92732,2.4661766666666667,4.64448,3.73749,3.09237,3.09451,2.808536666666667,2.2677775,2.0007325,1.2569066666666666,0.295038,0.12799630434782608,2.1265466666666666,1.8468200000000001,0.12799630434782608,3.9312963043478257,1.999275,0.12799630434782608,5.919762500000001,2.1308066666666665,5.97867,3.265095,3.463033333333333,2.6990766666666666,2.8976933333333332,2.181695,4.22752,3.026806666666667,3.3661333333333334,0.44437105263157894,3.93258,2.6566377192982458,2.890735,1.745195,2.554075,4.63106,2.40627,7.8916450000000005,5.33955,3.48342,3.734955,5.98103,5.9509,1.6254033333333335,4.406289166666666,2.237835,1.955705,6.48866,7.80355,1.1803533333333334,2.1584,3.728895,2.36638,2.8778,2.977645,2.86796,4.45231,2.22225,3.158055,3.1719,3.210315,7.47006,1.4492266666666669,2.04796,2.90574,3.28593,1.7842799999999999,3.37936,1.454615,3.65275,3.012255,6.98658,3.19021,8.9081025,3.69981,1.61952,1.7491533333333333,2.834335,5.57654,1.5768275,1.7220199999999999,5.56767,3.309615,3.922975,2.89962,2.0062633333333335,3.144305,10.25352,5.2327,6.39569,3.36365,2.301735,2.01569,2.669345,2.83055,3.58824,1.7313166666666666,1.5488533333333334,2.522673333333333,3.51454,1.74339,3.287225,2.504945,2.99365,3.68107,3.349915,1.3296816666666667,2.637995,1.1525733333333334,1.46726,1.56666,3.277525,3.43359,3.59768,2.458545,3.72891,3.939395,2.805285,1.457654,3.445305,3.4755075,3.007235,1.81781,3.123665,3.303015,1.4887375,3.26881,1.5914366666666666,3.76413,4.3096,4.983455,2.711395,4.15167,1.706175,3.36457,5.74805,1.699605,1.17221,3.7616,2.53722,4.639705,4.02384,2.973975,4.593025,4.8605,2.4675033333333336,5.5637,5.3113150000000005,6.75295,4.265855,6.870880333333333,4.069645,1.7917333333333334,2.6008366666666665,4.713245,4.83471,2.67688,7.140668,1.3063300000000002,3.4370999999999996,2.0812,1.718716,2.323796666666667,2.7836766666666666,0.3686714285714286,2.78987,3.917566666666667,3.35763,2.35534,3.4349333333333334,2.212216666666667,2.44806,2.322145,9.335925,5.09245,2.016,5.18595,2.3403366739130433,0.7440614615384615,2.9357366666666667,7.682832,1.830304,4.502985000000001,6.241238333333333,1.7549875,1.603445,1.3702625,4.83544,3.13771,4.43488,3.7848375,2.3274833333333333,3.575405,0.959918,2.856714666666667,4.311255,4.06865,5.0328,3.058075,4.88162,5.04145,4.205835,5.01705,5.9527,4.79769,4.26317,5.40755,1.880896,1.8773075,2.66613,3.23384,1.1528444444444446,4.4878,2.0775533333333334,3.354533333333333,4.29659,3.339366666666667,2.6619566666666667,1.5237133333333333,3.14498,2.801935,2.7338066666666667,2.8329566666666666,2.0434233333333336,2.5161,2.46995,4.285395,4.69055,4.188935,4.89953,3.50816,2.25598,2.9556,4.733925,3.899366666666667,4.65288,3.677025,2.178875,4.3157266666666665,1.6607966666666665,4.02087,4.917048333333334,6.0249354761904765,4.23993,4.455975,5.5119,3.4135000000000004,4.105648333333334,4.82214,3.17186,3.7054525,3.36903,1.3599025,3.19457,1.72639,2.20705,5.2046,5.1376875,3.7054525,3.959605,3.50884,1.6014766666666667,3.52707,1.968065,2.3608766666666665,2.15587,2.668075,1.738275909090909,1.738275909090909,1.738275909090909,0.575100909090909,0.8453744444444444,2.3005677777777773,1.0788275,3.478055,1.31694,4.29994,5.20375,4.739145,3.18672,4.03773,3.11166,4.992985,1.6717125,2.838555,2.70023,3.206125,5.799681,4.39834,5.38625,4.14395,0.9404725,2.251085,1.27,3.69088,3.833315,4.071845,5.1558,4.918,4.291005,4.771455,3.826155,1.729385,1.3514783333333333,5.331966666666666,1.075067777777778,1.2460066666666667,2.9298166666666665,8.29082,3.057345,3.7299,3.38651,5.611682500000001,1.6337025,1.006735,1.51453,3.17169,3.35706,3.89124,3.67429,1.87049,6.74045,2.8865433333333335,0.90101875,4.913765,3.17496,2.71401,2.3568366666666667,3.6001666666666665,5.865798333333334,2.8689999999999998,3.30172,3.6132000000000004,2.894156666666667,3.0525066666666665,2.8842499999999998,2.729405,2.0189625,4.833375,4.662205,5.1841,1.1122,0.766629,4.015666666666667,2.6682233333333336,1.0843375,2.8230041666666668,3.65745,4.144805,6.91722,4.55832,3.6207666666666665,1.753758,3.91964,3.681005,2.92004,2.6512708571428574,4.372305,2.83086,5.073954,0.8872944444444444,4.02117,1.702432,3.839485,4.32688,1.942835,1.0076325,3.096475,0.424886,3.57657,6.88635,5.3964,2.8123959999999997,1.476442,3.9611666666666667,0.7776322222222222,2.486353333333333,0.7776322222222222,3.93911,4.597825,1.4078125,2.1059325,5.448201666666667,1.7874566666666667,3.81177,3.70713,3.743395,1.178078,1.5923966666666667,3.835975,5.20695,5.20175,3.022164,2.822425,3.174125,1.5589375,2.519175,1.904685,2.0109275,4.359335,1.4275888888888888,1.4275888888888888,3.76172,4.955206666666666,8.151009166666666,4.35775,8.52485,2.22647,3.94326,4.019445,1.7798833333333333,3.7682225000000003,4.19159,3.005255,6.16085,3.02752,2.5271,3.08461,4.19922,1.09235625,4.201485,4.526005,1.1277416666666666,7.749133333333334,2.670455,3.21034,3.56915,5.0513,5.1526,3.71219125,2.61821,2.760623333333333,2.10438,3.8691,2.476935,2.1483375,7.842595333333333,3.4646666666666666,3.0760966666666665,4.160675,23.286349813186813,0.6952333333333333,2.668525,4.66088,4.52975,8.32228,4.81423,4.471215,4.54679,7.025283333333334,3.435375,1.5698866666666669,4.845861666666667,3.10397,1.11032,1.11032,1.11032,2.34866375,1.703565,3.297405,1.5250975,2.95584,1.3970466666666665,2.755525,2.51596,2.95261,1.5250975,3.083555,2.489235,4.200793333333333,4.658908333333333,4.993005,0.7765624999999999,3.321555,2.609075,4.68114,3.83891,2.637,2.44261,1.6645125,2.445825,1.409418,3.87968,1.810245,4.566035,11.466925666666667,2.909523333333333,2.314165,5.066349166666667,4.768533333333333,4.499,6.43515,2.212266666666667,5.573586666666667,4.666495,1.0570983333333335,1.1602942857142857,6.4785129999999995,4.0679,2.44378,3.74675,1.8652225,4.47934,5.13425,4.49279,4.012105,1.3851985714285713,4.226725,4.927785,4.831075,6.314069,3.788125,5.4519,4.849785,4.422885,5.17455,3.704166666666667,5.0681,2.19866,3.37956,2.958685,3.44657,4.312015,6.27955,4.534655,2.85304,3.6063333333333336,8.91252,4.83573,3.2776433333333332,3.790075,3.825905,4.495775,4.150015,4.705345,6.80544,3.875925,2.9129799999999997,4.192971666666667,2.307815,4.496365,2.481196666666667,6.49301,1.6423166666666666,4.86786,4.823465,12.117494999999998,0.5345057142857143,4.675835,5.13005,0.6691521428571429,3.851805,3.840725,4.343905,0.951301,4.94673,4.808096666666667,2.61807,10.040890000000001,3.250716666666667,1.8480833333333333,2.373245,3.85373,6.08795,0.6246200000000001,3.83243,1.9203725,5.4914,0.7611207692307692,4.001955,5.73355,6.03955,3.358775,6.524275,4.591445,3.7369674999999996,2.4953766666666666,2.6391633333333333,4.233945,4.814585,5.11195,5.0382,5.49525,3.3453,7.14166,2.728675,3.3162570000000002,2.1367325,4.36756,2.6914833333333337,1.5287233333333334,3.073393333333333,2.94543,3.344,3.495233333333333,3.7466333333333335,3.3207733333333334,2.66895,5.66615,3.1913133333333334,3.62652,5.1647,2.7171033333333336,1.1641555555555554,3.0905299999999998,2.9729533333333333,3.82286,2.8442833333333333,2.9365633333333334,4.850366666666666,2.0266266666666666,1.673045,3.10355,3.672435,4.367495,1.09147125,4.43099,3.184755,3.985633333333333,3.172496666666667,4.844392,3.86897,3.22936,3.92712,1.89319,3.77147,0.6737125,4.71202,4.97865,17.036064242424242,3.1420666666666666,1.1952800000000001,4.252985,0.6432414285714286,2.71465,4.348865,1.74004,1.3276514285714285,3.815,4.56973,3.20458,0.7133316666666666,2.46352,7.75369,4.0634,5.72505,5.33945,5.39,3.2039666666666666,3.8561,3.2318833333333337,7.42549,4.165295,5.00745,2.1722525,0.44411222222222224,2.027955,2.99045,2.43477,2.99774,3.644265,2.9240933333333334,4.87634,0.7392875,4.831875,3.87791,2.62599,1.1342933333333334,2.8180899999999998,1.9825666666666668,5.01335,3.6712,2.251025,1.7284285714285714,3.60225,4.40255,4.539045,6.351976666666666,2.1662066666666666,4.957445,4.593315,4.16202,1.991958,4.2489,6.2282150000000005,4.959045,2.79141,4.90087,3.317575,2.603935,4.145975,3.877355,1.3341533333333333,4.733615,2.23009,2.8295166666666667,5.47304,5.47304,5.27475,1.9141020000000002,5.05985,0.91916375,1.79373,5.14945,2.6374333333333335,1.3615700000000002,3.3857,0.9228080000000001,4.373833333333333,4.618425,3.122425,5.0768,4.32408,3.890995,5.522975,3.547685,3.685833333333333,2.937996666666667,2.42718,2.779675,3.01688,4.37481,1.7160414285714285,3.0972000000000004,4.582215,4.932395,2.396564166666667,4.522245,4.78942,4.977065,3.5377333333333336,5.34635,5.2655,5.23795,4.902615,3.99529,3.928185,3.62102,4.71251,5.72975,4.91248,4.98037,4.605265,4.583435,0.7168975,5.0983,4.728205,3.994665,7.3773599999999995,4.413635,4.147515,4.57198,4.935935,3.54995,3.598515,2.144575,4.434480000000001,1.99278,1.359652857142857,3.564955,2.0136366666666667,2.4425866666666667,3.8217313333333336,3.3842,3.11546,1.1809633333333334,2.1138025,4.893445,4.09564,1.86233,1.86233,3.99828,1.580864,3.043143333333333,4.415415,3.52316,3.65106,1.4554333333333334,2.05952,3.5949824999999995,1.85444,4.05156,4.657125,4.327405,4.011115,7.158621666666667,2.82405,3.79115,4.762345,4.3455,3.2492533333333333,4.25167,4.221445,4.553085,2.415955,2.6792166666666666,4.6874,4.096075,3.727065,3.7684,1.6244975,4.05519,4.328695,4.451965,4.145355,3.849075,3.849075,3.1323725,4.278575,4.4955,4.44183,1.7883,7.8684,3.89571,4.986455,4.282415,4.386115,3.73215,5.18535,2.97914,3.893905,2.83031,5.36625,1.93397,4.57522,5.729461111111111,5.2672,0.751751,4.689210833333333,1.18353,4.82909,4.897415,4.473935,4.21682,5.53145,3.733,3.733,0.876733,2.2702575,4.915435,3.507525,4.15381,5.08505,5.54745,3.387895,4.433795,1.3673783333333331,2.589685,1.6737775,1.24386625,4.319331333333333,0.859615,2.745286666666667,3.1047233333333337,1.2349566666666667,2.204205,2.60723,1.4388283333333334,6.18477,2.213865,2.5337633333333334,5.3509,2.11957,2.7545566666666663,3.40421,4.577905,3.6422666666666665,3.4797,4.0162,1.686068,2.1905875,4.479655,0.6453435714285715,2.1881866666666667,2.436605,3.21081,2.7726699999999997,1.186132857142857,0.8551666666666667,2.4500533333333334,4.18674,1.2179942857142856,2.2842625,1.228365,5.691394166666667,2.2739275,5.0268,4.452535,4.43715,4.9896,5.3672,4.417485,4.314565,1.5056833333333335,3.917666666666667,1.7596260000000001,2.7031766666666663,1.2110285714285713,4.39852,2.1793825,7.3075399999999995,4.255855,4.085,1.517802,6.900575,4.047815,1.587315,4.073395,2.924365,4.13582,3.410745,1.9366125,1.9366125,3.263173333333333,1.3536016666666668,1.3536016666666668,1.991958,2.916123333333333,2.1464375,1.25499,3.6597666666666666,1.045945,3.2095066666666665,2.332885,1.8080125,1.5105899999999999,2.088915,2.2171125,0.2862635294117647,2.506025,1.2970183333333334,2.30705,2.12708,2.6297,1.0322466666666665,1.103562,3.6734000000000004,3.230166666666667,1.9366125,1.78685,1.91775,2.4641533333333334,2.4075,1.873828,3.30016,1.1910399999999999,3.217366666666667,2.7767766666666667,2.51224,1.521358,1.17858,2.561775,1.17858,2.561775,0.70243125,0.70243125,0.48225222222222225,2.3956825,2.5447,0.70243125,2.17755,2.3707366666666667,2.404135,1.683365,0.8110933333333333,0.70243125,0.70243125,1.5958640000000002,1.5958640000000002,2.0041725,1.78685,0.70243125,2.27832,0.4576346153846154,3.20768,2.1189566666666666,2.5042233333333335,2.53473,2.53473,0.4001665,0.4001665,1.991958,2.01276,2.22694,2.0744,0.4001665,3.558866666666667,2.5404,1.638996,0.640575,1.638996,0.640575,8.24691,2.525603333333333,4.122033333333333,2.66705,3.105933333333333,3.0742966666666667,2.9212933333333333,3.5563000000000002,2.51545,1.7187175,2.7536133333333335,3.11863,2.3111566666666667,1.5958640000000002,2.5409596825396825,2.5409596825396825,2.728953333333333,2.102625,4.115235,2.2904966666666664,3.4263999999999997,2.6591,1.485088,2.488315,2.422615,0.7981336363636363,1.6948525,3.6478,1.757518,3.208353333333333,2.61139,2.7609,3.947366666666667,1.6937,3.5191,3.0664433333333334,4.2179,1.270764,0.22669793103448274,1.291882857142857,1.291882857142857,1.0595855555555556,2.9833366666666667,3.9503333333333335,2.4614733333333336,2.0462333333333333,2.0462333333333333,2.0366025,1.5914366666666666,1.00284,1.6246333333333334,1.6246333333333334,0.70243125,1.991958,2.8054633333333334,3.2559233333333335,2.332885,2.21396,2.21396,2.21396,1.0919344444444445,1.5104428571428572,1.5104428571428572,2.587125,3.172893333333333,2.6696218686868685,4.205775,2.4560400000000002,2.6616166666666667,3.59442,3.75709,7.128432500000001,4.02799,4.6767,3.958,13.2094825,5.0517,3.434645,0.9476825,4.09039,3.1138,2.316685,3.661955,5.1478,7.0955,6.07355,0.5238117647058823,3.97543,3.63588,4.03915,2.436175,4.776165,4.602895,4.354735,8.670945,3.10855,3.790245,3.86468,3.278312727272727,7.921284717948718,3.273146666666667,2.5713066666666666,3.62336,4.406805,5.12475,4.166305,6.692944,4.230195,1.320686,2.824675,0.88291,5.01765,2.76161,2.5273,3.894435,4.232145,2.656495,4.92047,3.92983,8.075575,3.84755,4.7574749999999995,2.658726666666667,4.88297,2.907685,0.9539775,0.9539775,3.36971,3.940625,2.198685,2.17199,4.13517,2.89335,2.63623,2.01134,1.9720475,2.98915,2.4597866666666666,1.1602,3.73972,4.98478,8.28156,1.6762219999999999,3.114625,3.282135,3.61484,2.7629133333333336,8.09342,4.21235,3.702033333333333,3.08684,4.159505,3.398066666666667,3.1862366666666664,3.31377,3.95921,3.86329,4.66884,4.155875,0.3874413333333333,1.47482,2.384863333333333,1.7373475,4.63358,3.654565,2.76634,2.296355,4.73124,3.8354377499999996,2.117185,2.352955,0.980573,2.2931575,2.4859233333333335,2.4859233333333335,5.35235,1.9467625,3.113433333333333,2.2664666666666666,2.1840733333333335,1.6253866666666665,2.878735,3.97898,5.08515,4.38058,5.23925,4.86746,2.794095,3.4084333333333334,2.08832,5.0901,5.492283333333334,1.91441,2.9245099999999997,2.219115,2.7519533333333333,3.9578766666666665,2.699666666666667,5.11045,3.738525,3.49174,4.53023,3.0368433333333336,3.506865,4.204535,2.25682,2.4213833333333334,0.3996671428571429,3.9111,2.60445,2.90709,6.0114,4.65485,5.8540125,1.8583575,1.602595,2.989625,5.39505,6.48515,6.1956,3.2039333333333335,2.1294233333333334,4.03432,2.1489266666666667,4.52453,2.4008033333333336,2.3900125,5.37845,4.997775,4.49829,1.603495,1.843555,1.07838,1.07838,1.174734,0.93858,0.75471,1.804542,4.483475,10.354732499999999,3.96545,4.48086,4.164595,5.892385,2.69193,1.6689066666666665,3.4904433333333333,2.94517,4.48446,2.5541300000000002,2.7567633333333332,2.9848766666666666,3.2218366666666665,2.4363566666666667,3.2114366666666663,3.3126866666666666,3.145493333333333,3.4563333333333333,3.5173666666666663,3.0352099999999997,2.7869833333333336,3.318,2.55438,3.2621266666666666,3.1637033333333338,2.9496033333333336,3.4933333333333336,2.17148,5.9425099999999995,3.17385,4.460695333333334,3.3375333333333335,3.19717,3.8206,2.825813333333333,2.9856133333333332,3.1513899999999997,3.2575866666666666,3.4733666666666667,3.3338,2.0630425,2.782723333333333,2.9332100000000003,2.9399,2.9399,3.3449000000000004,3.3190266666666663,2.5809133333333336,2.783166666666667,3.2446966666666666,4.266,2.70457,2.791925,2.631463333333333,2.81042,4.7316183333333335,5.02275,1.6943333333333335,3.6227,3.8053666666666666,3.4151999999999996,3.4483,3.8005999999999998,3.5775333333333332,2.7936300000000003,3.353096,2.02114,3.0308635,3.5269999999999997,3.4871,2.61401,2.68121,3.9590333333333336,3.001993333333333,3.1229633333333333,2.550975,1.2614416666666666,3.2429900000000003,2.7926066666666665,2.3202599999999998,2.4564325,3.2314433333333334,3.2557833333333335,2.03548,5.778792666666666,2.4849733333333335,0.9507490000000001,4.84114,1.9329516666666666,1.7112833333333333,4.5428,3.84683,3.388855,2.26054,1.42701,3.37019,2.754875,2.249865,0.4560015,2.070035,0.4560015,2.056825,1.42701,2.672605,3.902935,2.452665,3.73709,3.4286,0.5423853333333334,3.042116666666667,0.9156475,0.44429176470588233,4.01298,3.76939,4.881285,2.517725,5.43045,4.37667,3.744995,2.966185,4.143,1.712806,5.9468,2.51742,4.343605,4.87846,3.136206666666667,1.8853166666666665,2.07763,1.3302366666666667,1.857495,0.99233,0.99233,4.393615,2.3231966666666666,5.938691666666667,2.7373,2.20524,1.7739,2.2610815,2.550725,6.5259,4.51885,1.968125,2.3424866666666664,2.2610815,2.499685,4.494981500000001,2.8399175000000003,6.350091666666666,2.7373,3.219455,3.565975,3.0911766666666662,5.60035,5.14945,1.9514825,2.09544,2.2506425,2.74988,4.924815,5.4996,1.955925,3.78381,1.6010366666666667,1.68378,5.49265,10.90429,2.1555733333333333,2.3746300000000002,2.6157866666666667,4.673885,4.513365,1.8201425,5.0946,4.77427,2.78774,40.30783533333334,2.8519633333333334,3.199806666666667,0.43080833333333335,4.9090525000000005,2.3325466666666665,1.0240433333333334,4.07823,3.69124,2.037705,2.0065325,2.3697233333333334,4.209465,1.4559142857142857,3.3518483333333338,3.839505,4.981325,0.939411,5.05505,5.05045,5.05115,2.9697366666666665,1.6645075,3.980415,4.3767,4.0294,3.14883,3.551525,4.15777,11.908594393939394,2.9200166666666667,3.096475,4.26775,3.065185,4.456845,3.578935,2.848085,3.214025,6.352531249999999,4.824375,5.2237,4.922545,2.494085,3.83014,4.57131,3.694295,4.599975,4.627255,0.12343478260869566,2.29948,5.4207,2.66804,1.7515166666666666,1.1616416666666667,1.1616416666666667,2.312325,2.65388,2.731515,1.731306,3.03771,4.361075,2.648025,4.3717525,0.5759935714285714,4.62046,3.63385,4.90116,4.885415,4.775335,1.25145,1.10832,4.4031,2.9630733333333334,3.10856,4.147723121212121,4.23118,6.19936,5.28075,4.090925,3.522205,2.2535208333333334,1.4952083333333333,4.563435,0.3064346666666667,3.37558,3.6856,3.98873,14.642156666666667,1.96672,3.3994666666666666,0.716175,4.67362,8.231095,3.113005,1.8956566666666665,5.8343,3.2781866666666666,1.0793144444444445,4.805885,2.899625,3.065,4.97052,3.3615485,1.05331875,6.748329999999999,0.7314625,4.958815,3.1000959999999997,1.35025,2.080795833333333,3.1880375,3.1880375,3.818505,4.242705166666667,1.36315,2.396435,2.8284,3.49596,3.31298,2.50843,3.123835,3.38168,6.679704666666667,6.40285,3.931675,3.13531,4.451395,4.84478,3.483785,3.25331,3.461285,4.179945,4.656125,2.4873866666666666,2.533113333333333,1.6259566666666665,2.2664166666666667,2.2913725,1.5232825,3.22978,3.5075000000000003,3.6018666666666665,3.178713333333333,2.6751199999999997,1.50872,1.6259966666666665,0.46614181818181816,2.799853333333333,1.6174428571428572,1.988025,3.5718666666666667,2.50736,2.547543333333333,1.023,2.258675,2.56512,2.88165,3.49996,5.6864,3.650035,2.949435,2.19769,3.307815,4.43782,2.36049,4.54422,1.9511,3.78253,2.71422,3.854115,1.4345433333333333,0.608951,2.39345,3.276405,3.109785,3.91649,4.8200400000000005,8.84859,3.3929333333333336,2.52526,2.13708,1.8561779999999999,1.8561779999999999,2.7862066666666667,2.4549,5.1019,4.891895,3.62763,5.03395,4.510675,4.444305,3.3716299999999997,4.55302,8.30876,2.49611,0.499941875,3.3846666666666665,1.3413966666666666,1.0193085714285715,1.8307566666666668,0.8813510000000001,2.0994675,5.3909,5.18335,6.004144999999999,0.917845,6.82962,1.974944,1.5281233333333333,2.443163333333333,4.22428,3.339166666666667,2.514975,3.92223,3.1445366666666668,4.1866666666666665,2.9461666666666666,2.816603333333333,2.9276733333333333,6.868335,2.42373,3.86739,3.748645,3.48317,1.4512099999999999,1.05622,4.205,2.87189,3.2803299999999997,6.078515,2.951625,2.182725,2.4443425,3.184885,3.8482000000000003,2.59422,4.033855,3.19881,5.33255,2.4153725833333333,1.8564475,4.971165,5.48705,4.930675,4.27183,1.8409266666666666,2.37353,1.9351075,3.198655,1.55758,0.88424,2.6390975,2.1438625,2.0157525,4.279015,0.8258666666666666,5.75807,1.416965,0.8161663636363637,3.6555666666666666,4.07179,0.6586914285714285,3.397368,3.1648475,0.8551666666666667,4.76706,0.1823342857142857,0.1823342857142857,0.1823342857142857,0.1823342857142857,0.1823342857142857,0.1823342857142857,1.81198,3.69884,1.81198,1.81198,1.8627066666666667,0.1823342857142857,0.1823342857142857,3.5574999999999997,2.7835133333333335,3.39288,3.234185,2.198105,3.398935,1.4599142857142857,1.726004,3.6744095000000003,1.542416,2.9787533333333336,2.5968895555555553,6.19028,4.49524,4.22754,6.5714,4.533215,4.831905,4.12436,4.13332,7.431183333333333,3.9532666666666665,3.7432,2.779716666666667,5.29505,2.5597533333333335,2.11269,1.87525,4.65136,5.3884,5.20765,5.31135,5.69515,4.6905,4.76927,0.7826672727272727,0.7272714285714287,0.7272714285714287,4.604305,2.2992500000000002,3.740275,0.9872500000000001,4.742605,1.511585714285714,2.3554999999999997,2.6376,4.585566666666667,4.585566666666667,6.95635,4.09604,1.4927133333333333,11.429745,3.04857,1.2757111111111112,5.20285,5.3905,3.99282,3.323535,2.566205,4.2876666666666665,0.8302466666666667,3.5465999999999998,3.343,3.8409999999999997,3.27211,1.4794633333333334,1.4369033333333334,4.9763158333333335,3.2843666666666667,3.200563333333333,3.4660666666666664,5.306274166666666,3.337458333333333,0.777034,2.1978666666666666,3.7237333333333336,2.274525,3.7721,3.451,3.1847166666666666,3.6058333333333334,3.1996533333333335,2.8660633333333334,1.1251166666666668,3.0764866666666664,2.655796666666667,3.76573,3.32386,3.917825,2.73057,3.3894,2.92985,1.6360540000000001,2.1223266666666665,2.883482857142857,3.8059333333333334,1.919726,3.1962333333333333,1.8391,3.906966666666667,5.4769775,4.964412,2.62565,2.624425,2.96505,2.4983825,1.6723285714285716,2.2667725,3.28884,2.397635,3.5942000000000003,2.874735,3.846274666666667,2.97392,1.3044333333333333,1.309115,1.7156575,2.17525,3.1110733333333336,3.614933333333333,5.0891,7.6187175,2.77617,5.2328,4.24689,16.544358,0.508475,11.500335,0.853248888888889,3.249615,2.4490133333333333,1.8999233333333334,2.90531,1.633484,1.457654,2.7096533333333332,1.36429,2.656557333333333,2.02556,3.0318166666666664,2.2902733333333334,2.801903333333333,1.5343,0.6778058333333333,3.3914333333333335,2.4473366666666667,3.137,1.0919344444444445,3.6179,0.7294758333333333,0.33511692307692303,1.9838233333333333,4.67385,4.798125,4.773345,0.8479990909090909,3.822075,4.38167,1.12544,2.35018,5.3371208333333335,3.27872,3.87998,3.75936,3.827665,1.8962175,3.76947,2.680336666666667,2.853905,3.486995,2.57367,2.73872,3.76263,3.13927,3.494415,2.14261,3.286035,4.695455,1.2610933333333334,4.633835,2.27477,4.15241,5.237243333333334,1.93858,2.99484,3.0707400000000002,6.053108333333333,2.40691,3.24077,5.2292,4.122033333333333,4.02783,1.8582666666666665,2.835275,4.87505,3.6079666666666665,4.523175,3.7052666666666667,3.3074766666666666,3.0090166666666662,4.0139000000000005,3.2595166666666664,2.7241033333333333,2.73497,0.44557555555555556,2.4342825,2.219575,4.665145,4.78105,3.218916666666667,2.86028,3.3210599999999997,9.360775,3.44987,3.910985,3.239456666666667,3.93053,2.78129,3.6104725,2.964256666666667,2.3177625,2.8851666666666667,6.29535,4.570815,2.098663333333333,3.137585,3.069695,2.6341433333333333,4.7227326666666665,1.713854,6.3493699999999995,4.191435,5.06465,4.724235,6.311,3.56004,6.856861666666666,3.69161,3.190925,0.6829428571428571,2.3291025,1.540165,3.0068900000000003,3.4848175,4.05969,3.804195,5.3659,2.6628433333333335,4.79569,3.6795000000000004,3.8671,3.3082233333333337,4.793365,4.83341,4.95877,2.997313333333333,6.120518333333333,4.54364,1.4968583333333332,5.61115,3.699395,2.762525,2.17059,2.1852966666666664,4.719706666666667,1.3057885714285715,2.4504333333333332,2.0367675,3.671415,4.37001,2.81378,3.5256000000000003,2.9742976666666667,2.54677,4.197075,1.360848,2.174653333333333,2.3524333333333334,2.704746666666667,2.4844733333333333,2.5459366666666665,2.64317,3.87831,2.87799,2.7117133333333334,4.00871,2.1908,3.689835,3.511845,1.4078095454545454,1.4078095454545454,4.645715,2.9171833333333335,1.7740625,1.37725,2.1151125,1.9977025,1.26251,1.41005,0.622735,1.5793799999999998,1.5119433333333332,2.9105600000000003,2.277136666666667,1.6940799999999998,1.8059,2.20547,1.4951400000000001,1.7600566666666666,1.8218866666666667,2.5573,4.08316,2.812105,2.99427,2.7814,5.716875,2.935475,4.29996,3.9380920833333333,2.078825,4.219835,3.19007,1.89287,3.474125,2.2205775,3.21722,3.556995,1.985505,4.496745,3.90241,4.02075,3.4688,0.9046944444444445,5.112,3.84489,3.47052,4.042965,2.2823466666666667,4.848665,4.97216,5.196266250000001,9.177825,3.799805,4.483335,2.956113333333333,3.80828,4.531895,2.4622,2.608545,4.276045,2.273865,5.889429999999999,1.877414,2.686855,7.348016666666667,2.971023333333333,4.388453999999999,1.3124257142857143,4.70359,4.59182,3.24053,4.729515,4.94646,6.690434999999999,16.534736249999998,0.6492058823529412,1.0322466666666665,3.2637433333333337,3.98445,3.45941,2.155565,3.39121,4.021775,4.87643,2.76249,4.81143,1.7944333333333333,1.7944333333333333,5.20195,0.7453127272727272,1.807922,2.92532,3.953465,0.36097615384615384,1.9387833333333333,4.1251845,1.143455,2.9730266666666663,2.7681966666666664,3.060105,7.71874,2.493186666666667,3.8749333333333333,1.9875133333333332,2.2746999999999997,4.154205,3.344235,3.264165,7.363953333333333,2.00335,2.8487,4.37391,6.753745,1.9223166666666665,2.1803466666666664,2.601226666666667,1.4012566666666666,2.53455,1.75439,3.892965,3.728995,1.4344475,1.9228836666666664,1.9228836666666664,3.0311133333333333,5.55155,4.677765,3.79599,4.536875,4.5328,3.14461,3.67463,4.08525,3.33427,4.366983333333334,3.8616775,4.65906,0.916542,0.352259375,5.4994,3.789985,2.37008,7.82504,1.38129,4.781766666666667,4.018075,0.3402066666666667,2.025043333333333,1.33727,1.8830733333333332,1.93335,5.619306,2.89143,3.129455,4.7202825,4.816885,4.637315,0.5916584615384616,1.936145,0.582392,5.810913333333334,1.55419,5.15855,2.046785,3.1491025,3.241785,4.17461,4.132875,5.1829,0.8990236363636364,3.28961,3.78259,1.9943225,1.717265,3.626445,3.059125,3.715385,3.8102,5.466757142857142,4.47222,5.6739,2.7297999999999996,0.5944477777777778,3.579466666666667,3.840375,0.6004146153846154,4.1033,3.73505,4.0263,2.834205,2.6355766666666667,4.94025,3.084435,3.256485,2.10824,3.821685,1.77115,3.794305,3.656045,0.6138176923076923,3.910005,3.92205,3.087165,3.852305,4.331465,2.660255,3.817065,0.597485,3.15556,3.776527777777778,4.76575,3.7472999999999996,2.591425,3.5481,2.591425,5.2551,3.01725,3.2521799999999996,1.6016700000000001,3.3160233333333333,2.015715,4.21272,3.02205,5.45679,3.2170666666666663,2.962213333333333,3.1419,2.37419375,2.37419375,2.37419375,2.4464533333333334,1.2169516666666667,4.580395,2.3237633333333334,1.61345,4.1180666666666665,2.6412466666666665,3.0352033333333335,4.324875,5.4612,3.521795,2.0878625,0.99931,3.96285,1.955198,2.44719,3.344055,3.530275,2.0343925,3.53182,2.651605,1.632918,4.833425,3.996855,3.505465,3.648885,0.7201633333333333,2.36681,4.835095,7.494455,4.500255,3.00926,2.875115,3.301515,3.640405,1.6376,2.3735325,4.981505,2.2754575,4.47088,4.021115,5.2613,8.946299999999999,4.05317,3.681595,3.680775,4.92497,4.09146,3.263745,3.263745,4.17962,3.939823333333333,4.200935,4.08039,4.354565,4.479735,4.009325,1.17008375,4.15405,4.254965,5.5584,7.745815,5.1437,3.7715593333333333,1.8152433333333333,1.6515483333333334,2.45421875,4.8956,3.9942,4.9779,2.6224866666666666,4.609025,5.2764,5.19165,5.1002,2.99511,3.89687,4.49934,5.3401,4.799665,4.04644,6.649758333333333,4.58738,2.1739633333333335,5.15375,4.35672,4.310425,3.908665,4.94603,0.797810909090909,4.56926,4.61354,1.2236157142857143,1.273616,5.1288,5.0752,9.228699,5.3561,4.97155,6.00015,2.919505,2.7036933333333333,5.0937,1.7250575,1.7250575,2.51806,1.5792233333333332,2.9126208333333334,3.4992666666666667,1.9651225,3.971044090909091,1.3882333333333332,2.184355,5.812362500000001,3.2315883333333333,3.45749,2.866135,3.979855,4.00249,2.9963033333333335,1.0867011111111111,3.98291,3.1698,3.82576,4.07951,3.82989,5.7117,5.263,4.969205,3.742015,5.38905,6.53135,4.81037,3.12539,3.716735,1.8376225,1.8376225,3.71768,3.90182,2.5340833333333332,2.7657633333333336,2.2175116666666668,2.7338833333333334,1.27251,1.27251,4.561865,3.486535,2.035245,3.514075,2.583555,1.929415,1.165395,1.0032388888888888,2.614145,0.46514684210526314,0.8842266666666666,2.73548,4.15676,0.4292309090909091,4.309565,1.993734,5.39655,3.372245,7.5065,4.2802,5.262326666666667,4.799255,5.44915,4.101545,1.99983,1.9280760000000001,4.054955,2.99331,3.76455,1.2771366666666666,3.36964,4.58418,2.70216,2.680275,2.72342,4.16294,3.232735,3.295395,3.828745,3.665975,3.296155,3.15734,1.0730928571428573,2.2623,2.241305,3.095615,4.324,7.17597,0.9473420000000001,1.50133,1.50133,1.939102,3.950535,2.653095,2.993665,5.623805,2.8550299999999997,1.2778625,1.2778625,1.2778625,2.641035,3.1409825,4.434845,3.240335,4.11761,3.209785,3.53467,2.92699,3.2526,3.5404,4.171832500000001,2.7634325,1.26251,2.94986,2.7634325,3.44737,1.34595,1.80066,2.1300275,5.655383333333333,2.52746,5.81952,5.655383333333333,3.29206,1.7723316666666666,1.7723316666666666,2.318185,5.47525,1.7723316666666666,2.28029,5.64831,2.156875,2.64563,5.46582,3.53568,4.19364,1.9264133333333333,3.46685,4.79363,2.1532266666666664,2.17803,3.92922,1.9264133333333333,2.535245,2.002785,5.42777,2.54638,1.13459,2.535155,3.071825,3.15755,1.973585,1.9491,3.9329,1.9263,1.59555,3.138985,2.237355,3.18141,3.57331,1.9332,2.979425,2.363895,5.99295,2.315695,3.303945,3.24358,3.24358,8.83902,0.99057,2.807695,2.319095,3.14714,2.21765,1.23296,1.23296,3.76506,2.34292,6.46422,2.14909,3.25156,3.25778,5.19359,2.52565,2.360455,5.727005,5.727005,2.298305,1.6577925,1.241605,1.241605,1.6577925,1.7994366666666668,1.0880166666666666,1.1618733333333333,1.4715666666666667,1.8558466666666666,3.59608,1.894035,3.64979,2.7436,2.8069,2.647695,2.68527,2.28797,3.4072958333333334,3.4072958333333334,6.22735,2.329785,2.79791,2.8731,3.47442,2.549185,2.79051,2.459685,5.279204999999999,1.934065,1.6679143333333333,1.4529276666666666,2.414386,5.58532,4.1180026666666665,3.4115466666666667,3.112175,1.77324,1.77324,1.77324,4.19172,2.344285,1.1618733333333333,3.04659,3.404575,1.2112725,5.248405,2.9624675,6.34072,3.95293,1.697145,3.186255,2.703386666666667,2.263145,3.57413,4.63388,3.46392,1.549805,2.471545,2.81892,3.05566,5.00134,2.12331,3.30915,2.67604,5.55022,4.42747,1.91578,2.262155,5.51889,4.96658,5.15688,5.01826,0.903804,0.903804,2.690701,2.690701,0.7584660000000001,4.65685,3.19931,4.78775,4.04026,5.30904,2.10994,4.462496666666667,4.462496666666667,2.173955,3.483025,3.47064,1.157532,4.24095,3.00582,3.138435,2.548825,4.83211,2.567695,1.900665,3.28043,2.94659,2.63282,5.43704,2.639915,1.85043,3.87087,5.97287,5.36371,4.53707,2.377665,3.30757,2.80129,5.26963,2.61462,3.84275,2.730715,6.42844,3.52331,2.42791,2.557675,2.574415,4.74218,2.391845,3.020355,2.95076,7.26996,4.75222,3.15081,2.325185,2.213745,5.99854,3.15396,3.416365,5.1873,2.882375,2.815895,2.566675,2.83131,1.7504833333333334,1.912785,1.5853433333333333,1.86427,1.78657,2.114196666666667,1.56666,2.2256766666666667,1.79883,1.7504833333333334,3.96891,4.23449,2.030015,1.8332825000000001,1.8332825000000001,3.5129266666666665,3.5129266666666665,2.86668,2.86668,2.71901,1.839775,1.63285,3.82291,2.192285,2.192285,2.337785,2.337785,3.04207,2.058255,4.63416,1.942185,3.13092,2.0189166666666667,2.0189166666666667,1.85715,3.99384,5.17543,1.34595,3.55411,1.9332,1.811615,4.01236,3.01562,1.838655,2.37704,6.83751,2.211315,5.40547,3.130905,3.14188,3.18791,2.7018,5.99876,3.11982,2.07667,2.508433846153846,2.662995,6.13121,3.51189,1.531784,1.531784,3.42565,4.97174,4.85956,5.75645,2.72529,2.78321,1.7543,3.10998,1.63323,2.498965,1.82362,0.709862,0.709862,0.709862,1.9136225,4.99058,1.9136225,1.973635,3.613915,1.58621,2.02621,4.11075,3.38333,4.84658,1.6192066666666667,4.66745,1.6192066666666667,1.6192066666666667,2.192195,1.904325,1.79014,6.43878,1.79014,2.528915,3.78026,2.192065,1.74188,2.755605,2.9963599999999997,3.2472741666666667,3.15096,3.71079,1.4415716666666667,4.374915,0.8003654545454545,4.530865,4.3932525,2.524975,2.524975,0.753720909090909,3.9478666666666666,2.7588033333333333,5.8205,5.09605,4.1859,5.4388,4.356325,4.249485,5.33945,4.499285,4.238675,4.049735,3.783675,5.21415,5.25855,3.32652,3.58233,4.3045,2.7520966666666666,1.4501279999999999,4.294335,3.733505,3.42774,1.3577257142857142,3.765625,3.822535,6.089087500000001,1.0987175,5.59965,4.368835,2.158555,2.00554,3.153765,3.540295,1.733975,1.531784,4.00439,4.562515,2.69923,4.57088,2.99489,1.14921,3.1599466666666665,1.2513114285714286,3.1311966666666664,1.9106133333333333,3.1584066666666666,1.8687,2.70236,4.32091,3.720405,4.381465,3.11926,2.2251075,4.63113,4.29867,3.071835,5.32345,4.178275,2.567206666666667,6.1882,5.0357,3.141955,2.6188366666666667,2.84341,3.1579366666666666,3.2481666666666666,2.84891,4.679955,4.08649,3.66206,2.415763333333333,2.5507833333333334,2.358353333333333,2.4959599999999997,2.242713333333333,2.335393333333333,2.344716666666667,2.356265,1.612635,2.9395103333333332,1.2034625,2.0715375,1.8539075,2.713725,1.52795,2.0358,4.00288,4.508495,1.893045,3.90388,3.96338,6.1764833333333335,1.9588400000000001,1.6054680000000001,6.68385,4.03147,4.66248,4.316315,4.012525,2.159585,3.60387,2.4841625,2.98302,4.41685,0.6979183333333333,4.249135,2.218246666666667,0.8308009090909091,5.03015,4.32306,3.90568,1.8944432142857142,4.76236,5.59,2.7270066666666666,2.91535,2.463623333333333,2.0846,0.601816,3.1971966666666667,2.957025,5.06975,2.4182525,2.1247425,3.788315,1.0084075,1.9203333333333334,1.9203333333333334,2.80456,1.9203333333333334,4.095875,2.737575,4.69773,4.23694,6.0767,13.441502499999999,3.2698,4.913405,2.674305,4.701485,2.909365,6.6718425,3.0237,4.5304,4.98259,3.73931,1.1924466666666667,5.0274,3.2478366666666667,2.7080366666666666,0.9974422222222221,2.1411225,3.252555,7.335543333333334,4.556395,2.916123333333333,4.60263,3.263173333333333,4.25755,4.69174,4.443925,2.83203,2.9014699999999998,3.964025,5.7959,2.525955,4.69569,1.9321075,1.9321075,3.012695,5.051,1.1881975,4.1996546666666665,2.2164975,4.587245,2.50686,2.6586433333333335,2.96095,2.1491866666666666,0.7205,3.490545,2.7637466666666666,5.38735,4.652605,0.247429375,5.39075,4.641715,4.698425,6.979773333333332,3.1679766666666667,2.833676666666667,2.2893433333333335,3.177236666666667,3.0184433333333334,1.56998,3.1186066666666665,2.7695900000000004,1.4101166666666665,3.5092,3.169473333333333,2.8533266666666663,3.3784666666666667,1.3533461111111111,4.274405,2.743325,5.2821,3.88092,3.83711,1.6382666666666665,2.5180533333333335,1.2183275,1.845,1.2183275,5.14845,3.5857666666666668,1.605946,2.4941075,3.75596,3.75217,2.86302,3.74976,0.351937,1.5106654166666666,3.832735,4.104485,6.2536,2.0068525,2.88321,3.166783333333333,2.6952599999999998,2.896,3.382655,4.867415,2.56925,2.54381,2.987546666666667,2.6105633333333333,2.7146166666666667,4.1423,2.083205,4.60561,3.95504,6.06655,7.52569,0.7500322222222222,0.826128,4.46357,6.91118,2.0067399999999997,3.441045,1.2019316666666668,1.2019316666666668,3.405245,0.44537,3.55238,3.82338,2.608395,4.0499,3.08438,2.5759,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,0.23625666666666667,2.241445,3.07892,3.957445,2.907335,4.842145,5.951919999999999,3.075585,2.3755433333333333,0.871975,3.269055,0.76507,5.820438333333334,3.444895,2.45389,0.76507,2.46178,2.68237,0.90441,3.98942,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,0.16174266666666665,4.325635,1.5588975,4.99008,4.885225,1.7849920000000001,4.962305,4.397135,5.15,4.894558333333333,3.6560700000000006,3.160715,4.616715,2.204165,5.73954,4.64706,0.7848428571428572,1.5177999999999998,1.4545714285714286,3.365933333333333,3.365933333333333,3.1516900000000003,3.87829,4.53935,3.698545,4.34468,2.9417899999999997,1.8917733333333333,0.5423157142857142,4.015445,3.095845,2.688115,4.009985,3.183365,3.10516875,5.00505,4.41115,6.6179575,4.14281,4.833435,5.96865,4.624145,1.33507,3.00772,5.34948,34.69434347402598,1.3269833333333334,4.38773,3.40783,4.59001,4.053605,5.30425,4.942905,0.41387857142857143,5.35075,4.593655,2.113555,1.855385,3.843025,1.5768275,2.380625,2.100605,1.672995,2.73779,2.4075,2.774105,2.67635,0.5986123076923077,3.259105,3.660395,0.3903926315789474,2.51571,2.856765,3.024835,3.848695,1.72525,4.6357,3.957585,3.226255,3.6844,3.063485,4.30968,2.95053,3.764125,2.19272,5.34948,3.51243,3.378775,2.67982,1.795658,3.974015,3.524025,7.117256666666666,3.350495,5.0456,6.567069999999999,5.173064999999999,2.23123,4.52525,6.4535975,8.07109,2.6548633333333336,2.393785,4.890045,5.577426666666668,4.51446,3.52616,5.430438333333333,2.6977,1.603425,2.1384425,60.26613437355644,5.3332,4.48587,2.582375,0.888002,2.9578433333333334,3.06183,3.5233333333333334,0.8970977777777779,4.624285,0.8051177777777778,7.710345,1.955198,3.4471666666666665,1.7598680000000002,2.688975,2.5451799999999998,3.254723333333333,2.3663366666666668,2.1927833333333333,3.4440333333333335,1.5949099999999998,5.47672,4.210500000000001,1.26622,2.65739,1.3825033333333332,1.553425,7.4695,5.97145,3.38485,4.5921,5.7681425,1.4821285714285715,3.6389666666666667,3.151725,1.57241,5.644,3.617305,3.944475,1.7232675,2.9296591666666667,3.658333333333333,3.93557,5.71645,3.947695,4.364845,2.180135,3.613785,4.551566666666667,3.157033333333333,1.506574,4.482795,3.342033333333333,4.25491,5.3556,3.805065,4.06317,4.886735,4.43805,4.279765,4.787525,4.273225,3.3337,4.203495,4.252265,3.105675,4.315,3.91614,1.4976425,1.4976425,4.25896,4.997405,5.16825,4.0325,4.984255,3.4506333333333337,2.76402,4.962745,5.18025,0.7482245454545455,5.3039,6.830579999999999,5.40475,5.7356,1.1082166666666666,3.048735,0.9027816666666667,0.9027816666666667,0.9027816666666667,3.74857,3.4669333333333334,2.9674866666666664,3.570766666666667,0.9573259999999999,5.1202,5.4528,3.02131,1.758955,2.154815,4.259275,3.665345,3.650865,3.2628380000000003,6.8872,3.398095,2.5056033333333336,4.881475,6.9456,2.42776,4.187765,3.675665,3.14549,5.5869,4.75155,5.15865,6.0219,3.28737,3.8123633333333338,1.89462,1.89462,0.6973127272727273,8.59703,2.00048,5.9435,5.78995,4.388895,5.3729,3.674735,3.017151666666667,4.94763,7.7302225,5.8008516666666665,2.0938333333333334,4.4334,1.0303200000000001,3.733555,1.9681066666666667,0.9172855555555556,1.2302757142857141,2.777606666666667,3.109946666666667,2.8735966666666664,1.1952371428571429,2.7335233333333337,3.0941833333333335,0.9413911111111111,2.8812833333333336,3.417566666666667,1.641236,1.8707540000000003,3.1172799999999996,3.186363333333333,3.027176666666667,2.7431466666666666,1.7801500000000001,5.5024,4.55482,4.199915,4.42759,5.2411,3.087305,4.590045,6.4393,4.97856,4.50114,3.868665,9.796925,8.587534999999999,3.0452033333333333,3.3938,2.2259066666666665,3.674035,2.974115,4.552305,1.0942133333333333,4.17756,3.53026,1.6075133333333333,3.708985,3.0204500000000003,4.392155,2.84153,3.72337,6.71845,7.887123333333333,4.19776,1.570475,1.570475,1.570475,4.915945,1.1613433333333334,1.5007625,0.49537222222222227,4.50348375,2.999643333333333,3.801515,1.01981,1.16447625,3.251915,4.21288,3.661125,16.80739069047619,4.172335,4.458275,6.551115,3.0108833333333336,3.71444,3.6222,0.9544555555555555,1.71236,4.377625,3.706265,4.68211,4.93099,4.579755,3.953375,2.7100595555555556,3.29008,5.3997,0.563625,4.914325,2.427275,4.168815,5.4251,3.5523000000000002,2.55859,4.176318333333334,1.93279,3.73705,6.02005,3.2865466666666667,3.857105,4.55247,4.28065,4.869815,3.94917,3.9188,4.443135,5.19435,4.860785,3.97385,4.72872,3.951575,1.20328,1.4702325,6.017153833333333,6.2231,4.181875,4.72788,2.5667,2.772823333333333,2.62074,5.7816399999999994,1.9346025,2.04843,3.13564,3.04345,3.4304666666666663,4.59075,3.29055,5.326616666666666,1.15792,4.624045,0.9325333333333333,3.906535,3.363635,1.5216216666666667,4.87882,1.0004444444444445,5.1316,5.8686,5.11625,4.57179,3.7431558333333337,3.94379,2.975006666666667,5.2124,5.92435,2.8868185,3.940815,2.34956,2.58183,2.00475,2.645485,3.55241,5.30595,1.045945,4.3096625,1.2936425,3.30079,1.5847666666666667,1.045945,0.1991510810810811,3.951855,3.02819,2.3429620833333336,1.9324433333333333,2.659775,1.086025,4.37132,3.79771,4.75319,2.5492933333333334,6.3291,6.5978225,2.6189899999999997,3.445866666666667,2.5917333333333334,0.845608,2.37994,6.15365,4.53476,5.363,4.921155,2.0418066666666665,1.09585,3.8642174999999996,1.599565,2.2506175,1.6896775,1.9221725,1.72891,1.86402,1.9719625,2.292415,1.98763,1.3784842857142858,1.3481275,2.0591475,2.3851975,2.2584775,2.2258366666666665,0.5274186666666666,1.252246,2.97265,3.290923333333333,2.213865,1.8582066666666668,1.56536,4.05615,2.178643333333333,2.649055,3.452455,5.55685,4.06877,3.02399,4.562715,1.6427626470588232,3.9238924999999996,24.162449000000002,4.654426666666667,6.0648,4.393695,2.1849366666666667,4.08191,4.75437,2.263105,5.0282,3.284243333333333,0.78537875,2.938085,4.61013,3.87141,4.041945,1.55122,2.0625233333333335,2.41924,2.138745,1.5583428571428573,3.458833333333333,5.11205,4.16627,3.29052,3.808855,4.827015,4.107755,5.0221,1.264,3.489845,4.11485,4.90772,1.810654,3.24783,1.78733875,1.78733875,3.534575,5.02705,3.01159,3.1688899999999998,4.1434,3.83608,6.5807775,4.671405,2.3066,1.71236,3.01995,4.217865,3.2095066666666665,2.5409596825396825,2.5409596825396825,3.3709333333333333,4.85008,3.904945,5.228014444444444,2.241635,3.4658246666666663,0.6091099999999999,0.6091099999999999,0.6091099999999999,3.690735,3.70669,4.3480799999999995,5.74235,2.5161,5.15105,5.0141,4.95627,3.693765,5.4566,2.512015,1.3599271428571427,4.697795,3.937055,0.4965507142857143,4.341166666666667,4.979635,1.5682,5.0426,5.1921,4.72933,4.388615,3.719005,2.87189,4.44737,1.628148,4.28465,1.681,4.46942,5.944,1.21938125,3.08175,7.05589,4.42778,3.4510666666666663,2.192045,3.923065,5.6465,3.06828,7.812023333333333,4.009195,2.11667,3.1087966666666667,2.649433333333333,2.8307866666666666,2.8063833333333332,1.86955,5.1365,0.581475,1.883115,1.883115,3.318445,3.69631,2.300275,2.967485,4.507735,5.12775,4.580595,1.4905866666666665,4.78671930952381,4.522645,5.06285,3.769255,4.3639098333333335,3.9141725000000003,0.4497373333333333,2.675027142857143,1.0066375,0.4497373333333333,4.295165,0.8299677777777777,4.384135,3.871615,6.545587,2.141033333333333,1.0148075,1.1328939999999998,2.15445,2.90096,1.7768300000000001,2.3472233333333334,3.309375,3.311165,1.9884533333333334,2.2762466666666668,4.466615,3.1377912500000003,3.968215,5.91315,3.397315,5.05525,6.8766783333333334,4.96674,3.52723,4.4954,3.66553,4.58184,5.39025,6.12898,5.57365,2.4767766666666664,1.0382533333333333,4.106515,3.974135,3.992865,4.346665,4.204995,5.3785,2.68906,2.5521766666666665,3.0468333333333333,2.4972266666666667,2.2309733333333335,3.05964,3.2893733333333333,2.65661,4.043785,5.2894,4.20999,5.40865,2.88625,3.3563666666666667,2.911125,0.7319142857142857,4.163615,4.133555,4.685415,2.9134966666666666,5.6142666666666665,3.53328,4.9324,4.224515,0.6345361538461538,0.5558535714285714,4.37106,2.9367405,3.229655,4.666515,4.361335,1.7575600000000002,5.4013,4.2063,2.73178,2.6182666666666665,2.4696,2.2583666666666664,3.5291333333333337,3.3427666666666664,3.1819699999999997,3.08713,3.5344333333333338,2.680825,3.2315766666666668,3.893466666666667,4.3905925,0.567105,0.567105,0.567105,3.4314867777777778,3.6215666666666664,3.7710666666666666,2.800933333333333,2.9762733333333333,1.17008375,3.013693333333333,3.0968733333333334,1.937535,2.739176666666667,2.6167366666666667,1.0038455555555557,2.9086433333333335,4.51017,9.563117083333333,1.4672348333333334,0.635841,3.58484,0.635841,0.635841,0.635841,0.635841,2.073585,3.980132,3.9857,5.1939,6.1553,2.8261033333333336,2.8553366666666666,2.9855675,3.4090083333333334,5.1459,1.1414633333333333,2.4037966666666666,3.236943333333333,2.65767,3.0433766666666666,3.605655,2.1180233333333334,2.291,1.194488888888889,5.1386,3.366145,3.903225,0.8638875,0.604626,0.604626,0.8718231739130435,1.7357106739130437,0.8718231739130435,0.8718231739130435,0.3068621739130435,0.3068621739130435,0.8718231739130435,1.4576200000000001,2.555406666666667,3.178155,3.2058233333333335,2.5269866666666667,2.839093333333333,3.199476666666667,2.739966666666667,4.42746,3.391995,1.839015,2.2072066666666665,1.703815,0.17369746134020617,0.17369746134020617,0.17369746134020617,0.17369746134020617,2.3588566666666666,2.5620166666666666,0.9026500000000001,5.3808,0.8418890909090909,1.637822,4.8259,5.21335,4.671235,3.022975,4.44527,3.72203,1.81767,1.2108675,3.84231,4.77707,6.36895,2.375635,1.36453,1.8765466666666668,3.067633333333333,1.4294733333333334,2.766966666666667,2.9704333333333337,3.21351,4.66477,4.15673,3.108825,5.0917,2.8236033333333332,4.32525,5.62865,4.133685,4.58009,4.805,5.415826666666667,5.239369166666666,3.2032882857142857,5.019089999999999,4.78357,6.4397,4.54591,4.732835,2.355475,2.97576,4.22585,4.927305,4.27615,4.059165,4.104135,4.265755,3.99597,2.3413166666666667,5.56845,3.611735,7.5696825,6.1489,6.01585,5.0275,1.4914142857142856,0.99688,0.6425723076923078,1.757546,4.971505,5.381,4.07977,1.7165199999999998,4.056355,2.902285,5.2247,5.52275,6.054460000000001,4.183145,2.9687,1.68145,5.20533,3.955405,3.304505,1.73064,1.00267625,3.78816,3.229015,3.53547,3.590605,2.21447,4.44748,1.67297,2.8769466666666665,2.472875,4.85627,6.25225,4.94106,2.4322975,1.69454,5.75875,2.998953333333333,8.68953,2.954475,5.3201,5.8886,4.736505,5.58345,3.901305,5.22185,2.3217875,4.256315,5.156679,2.595125,4.16446,4.64596,7.660485,5.29035,3.4001333333333332,4.302085,4.082435,3.1377912500000003,3.480875,5.25525,5.8181,2.4712625,3.048173333333333,3.3260233333333336,2.221795,2.529835,4.40016,6.0782,5.1451,4.61602,5.0919,4.27807,5.24575,0.6478376923076923,3.135873333333333,1.3040671428571429,32.08939363867322,2.37995,4.56059,3.151185,4.61577,1.753372,2.4187600000000002,3.2387290476190476,1.7546540476190478,1.7546540476190478,1.7546540476190478,1.7546540476190478,1.484075,3.222355,0.3495755555555556,7.962913611111111,0.3495755555555556,4.68626,5.03965,1.9658875,5.7691,2.8997,4.046523333333333,2.36584,2.518963333333333,2.67996,2.079353333333333,0.63041,2.5665466666666665,0.7702016666666666,3.408333333333333,2.306513333333333,2.4362320000000004,1.1815583333333333,2.4362320000000004,6.37025,8.17801,4.905245,4.439935,5.6872,6.19245,7.432003333333333,3.14015,1.591565,1.591565,2.3323533333333333,5.0263,3.679585,4.72999,6.307718333333333,4.173935,2.87934,3.98868,3.32002,3.496615,2.268115,1.000244,2.02165,3.76249,4.19688,5.358443333333334,2.1839175,4.090625,1.4544380000000001,3.12638,1.4599,3.4843666666666664,3.16152,2.711953333333333,3.5179333333333336,3.14547,4.977015,0.7336546153846153,3.41034,3.7602666666666664,2.6728066666666668,2.3429066666666665,4.24135625,3.4502666666666664,2.516836666666667,5.02004125,4.035575,5.22325,4.12308,3.522345,5.5942,5.0205,2.26995,5.74555,2.3302246666666666,1.74433,3.1494999999999997,2.7329933333333334,3.023763333333333,2.5379,1.9193366666666665,3.455395075757576,4.42659,3.37164,2.4847866666666665,2.4847866666666665,2.50306,3.864915,3.89706,0.6137445454545455,3.356455,3.08803,8.62742,0.8763363636363636,4.594905,3.945195,5.57225,3.832015,3.911135,2.303925,4.26978,2.839135,5.708,2.664225,1.0324875,3.777005,2.6441133333333333,3.75335,2.7224500000000003,3.49953,3.65564,3.7064,5.184717,3.281135,1.967385,5.2213,2.4422133333333336,4.580795,4.99354,4.98844,4.514035,4.04816,2.793905,2.1458133333333334,2.9952233333333336,2.9082166666666667,2.8338249999999996,3.28854,2.7991811904761903,5.110953333333334,2.96364,2.6030166666666665,6.895565833333333,5.094959583333333,3.8351525,3.118206666666667,3.8444000000000003,3.95287,3.456635,2.0698175,3.9089425,5.1702,5.0427,1.54287,4.478355,2.67187,7.02184,4.78264,8.87871611111111,3.932855,4.034085,2.096025,4.078475,5.7799025,7.44785,3.22195,5.62137,3.958985,3.13724,3.765615,1.713854,4.5698039999999995,1.4247699999999999,3.752775,4.60676,3.5490333333333335,0.8591166666666666,9.433473333333334,1.241088888888889,2.11129,2.44106,1.8512033333333333,3.5772333333333335,1.3293833333333334,3.56033,3.72325,2.58451,4.249175,1.22007,3.605635,1.403815,3.173396,3.753275,5.53755,1.57145,6.005296666666666,2.5974043333333334,7.66416,4.390575,2.983445,3.93658,3.158335,1.2728975,7.09734,2.78226,3.140755,2.37871,3.88962,2.1486775,3.2864199999999997,2.18975,3.876775,1.3145475,5.78195,2.93581,4.044495,0.913359,1.8882303333333332,3.70089,5.3062,5.202515,1.47539,1.47539,5.86435,4.52016,6.1846,3.680005,3.447375,9.300709999999999,4.545505,5.6058,4.071845,2.554075,2.141887200716846,0.375726,0.22462064516129032,0.6545328673835125,1.1116283333333334,0.6881506451612903,0.22462064516129032,1.421571,0.4299122222222222,1.4873543333333332,2.0761038673835124,2.0898475,2.3088625,2.144903333333333,5.43345,6.737353333333333,5.16975,5.66475,4.808365,5.1485,1.2016799999999999,5.2178,3.950705,5.861,5.0618,5.4164,5.6222,6.04155,5.60355,1.3607866666666668,1.4367285714285714,1.941922,6.224106,1.291016,5.46215,4.900285,7.208317083333334,5.1336,5.57305,4.67809,4.745405,2.603925,5.40115,5.41595,6.330735000000001,5.24875,6.3373525,5.631,3.8888125000000002,4.314065,3.9446333333333334,0.998297,3.7778333333333336,4.74406,1.20212375,3.707433333333333,5.05515,4.6982225,5.0394,2.47346,3.204845,2.5522833333333335,4.70163,2.33906,3.622905,1.268685,3.33262,3.750765,4.49648,5.0664,3.4262525000000004,0.6538116666666667,6.12955,0.98267,3.87933,3.1274933333333332,3.63353,2.0162299999999997,3.85508,3.7083471794871796,3.4444666666666666,4.45564,15.52611280952381,5.401556666666666,2.35127,8.35854,1.4915475,3.88388,3.0299099999999997,2.823513333333333,2.0529533333333334,0.2285182608695652,2.905863333333333,4.955875,1.7599,2.1234933333333332,3.422166666666667,1.8018375,2.1508933333333333,1.5729000000000002,3.68378,5.10395,5.4973,3.27168,0.5003985714285715,2.309153333333333,4.419925,2.84173,4.05709,4.58872,4.446465,5.54795,0.4940758823529412,2.427496666666667,2.427496666666667,5.424,5.0521,4.785235,2.820675,3.6685666666666665,2.8746500000000004,5.3044,3.738965,5.697631666666666,4.74892,4.594685,5.06255,2.767175,1.991526,4.607775,4.130515,3.92235,4.36608,1.818312,5.02645,4.311725,3.708375,4.747945,3.99063,4.36939,0.6357726666666667,3.120595,0.7313166666666667,3.3800000000000003,3.484735,4.25565,17.91200238095238,3.817935,3.626725,2.703386666666667,1.0339775,2.3287233333333335,2.51224,1.521358,2.477605,2.494765,4.692625,2.18104,3.98644,4.73519,2.12768,4.54215,2.993596666666667,4.760645,5.27255,5.5374,1.710275,1.79369,2.183445,4.94714,4.83813,1.1796333333333333,5.4407,4.06355,5.6283,4.845915,1.6121666666666667,4.56764,3.75425,3.895325,4.004905,4.505845,3.1507799999999997,0.59524,7.465106666666667,1.543768,0.2093411111111111,0.2093411111111111,0.2093411111111111,5.0477,4.00499,2.63555,4.17087,2.74371,4.36566,4.451115,4.290326666666666,8.754733333333334,4.31086,6.881248333333334,0.8212275,0.80969,2.4989875,4.518845,4.222775,2.1641333333333335,5.0963,5.36565,3.365165,3.630875,4.514675,2.4579366666666664,5.00125,4.9266055,2.30705,3.13208,2.89851,2.65371,6.1758,4.010915,0.6884321428571428,4.069035,3.86401,4.15276,4.92412,4.750565,2.85511,5.5229,3.596005,13.649314166666667,4.8218,6.899151666666667,2.4421933333333334,6.577109999999999,4.57501,4.21454,2.2171125,2.349754166666667,9.64923,2.231926666666667,4.317366666666667,4.196833333333333,3.7933333333333334,3.318213333333333,3.02279,2.0461375,2.2256025,3.0008166666666667,1.843084,4.0103333333333335,2.43998,2.6650833333333335,3.5765333333333333,3.6396333333333337,2.48412,2.48412,2.5060533333333335,3.5841666666666665,3.5295,2.42762,3.3735,4.2736,2.7385533333333334,3.1870966666666667,3.8663333333333334,2.63526,2.19109,4.072866666666667,3.07884,1.765146,4.3001,2.43144,2.4871966666666667,3.0045866666666665,2.3034083333333335,3.3991666666666664,5.870845,2.4107499999999997,3.9418666666666664,1.84304,10.634792333333333,1.9074333333333333,1.75992,2.16184,1.0595855555555556,1.5386039999999999,4.666976666666667,2.739118,2.739118,1.68406,1.5560266666666667,3.4909516666666667,3.895628333333333,2.1693266666666666,1.585725,1.686068,4.719216666666667,3.662333333333333,4.140666666666667,8.501100000000001,3.0121657142857146,2.3956566666666665,3.319027888198758,4.402,2.19109,3.419366666666667,3.055763333333333,3.6435999999999997,3.3465558333333334,0.8938125,3.321621,2.9809433333333337,2.791183333333333,4.09111,3.2612566666666667,0.7309445454545455,1.9165757142857145,5.02945,2.6826755,3.3445666666666667,1.6669333333333334,1.6669333333333334,2.0368625,3.786853333333333,0.992773,2.191575,4.863020000000001,4.863020000000001,0.6600714285714285,5.998562,3.88383,4.22131,4.91587,1.199922857142857,3.3813999999999997,3.5701,5.164231666666666,5.881119999999999,2.37912,0.694369,2.74828,2.5837133333333333,3.055602,2.4233066666666665,2.3805533333333333,3.0203900000000004,2.31438,2.4394566666666666,0.8223900000000001,4.829005,4.927390285714286,1.2590299999999999,1.6802142857142857,5.6326,2.203665,1.56995,4.119725,1.42333,3.519,2.654525,3.5998666666666668,9.033789166666667,4.649600833333333,4.678835,5.1728,2.4120825454545454,0.780493,1.998064,6.955876666666667,1.7899766666666668,4.135525,3.84557,3.60591,21.65332575,3.2648433333333333,1.3463433333333334,1.15308125,3.1843533333333336,1.5377633333333334,4.388453999999999,5.32605,3.3529204999999997,3.4293666666666667,1.9643966666666666,1.3849016666666667,2.88607,0.60359375,3.5165666666666664,3.7001000000000004,3.098596666666667,2.4402376666666665,2.63238,2.73413,2.1571266666666666,3.23371,1.7140619999999998,3.6854666666666667,1.5484016666666667,3.84662,3.951295,2.5695099999999997,5.41085,3.18334,3.915655,5.2833,4.71369,3.176826666666667,3.0893766666666664,2.36278,1.1519,1.1519,1.1519,2.42516,3.4562666666666666,2.681556666666667,2.41615,2.15,1.9659825,3.69818,5.19335,3.64339,6.379110000000001,3.16593,2.580625,1.861035,1.0878833333333333,2.4604266666666668,4.04209,2.4941733333333334,2.6011633333333335,2.53878,2.4394933333333335,2.5400633333333333,2.83469,3.172026666666667,2.9487166666666664,2.43076,3.4070666666666667,2.14764,2.14274,1.557485,2.036645,3.09043,3.0749366666666664,1.9724675,3.826545,5.3014,3.01193,2.596151153846154,5.954155,4.22201,4.878695,5.58255,4.70482,4.212655,6.7129449999999995,1.25185,4.229845,2.68144,5.21555,5.15235,3.791785,3.871275,2.3806275,7.81019,2.960515,0.8560249999999999,8.00295,5.31412,5.65461880952381,4.63509,2.9951335,1.81479,5.19245,4.358225,4.62713,5.27195,2.453565,4.36826,4.58834,1.703815,4.07712,2.936425,1.4010983333333333,4.633215,0.6389882352941176,4.264541666666667,3.651015,4.666455,3.53834,1.68804,3.600625,2.052975,1.4984375,2.9488966666666667,3.398,3.3357666666666668,7.307711666666667,1.8655875,6.70485625,9.68647,6.692245,3.4472,1.4450571428571428,3.059003333333333,1.4450571428571428,2.81897,2.0713766666666666,0.3429594117647059,1.155804411764706,0.3429594117647059,0.3429594117647059,0.3429594117647059,1.155804411764706,1.155804411764706,0.3429594117647059,0.812845,4.360015,3.26718,3.25012,3.29073,3.540945,4.192255,3.124130666666667,1.58619,6.667216666666667,3.0978133333333333,3.966085,2.7604666666666664,1.0427272727272727,1.24331375,4.5168,3.65412,1.1461555555555556,1.5613139999999999,0.7894063636363636,3.16480291991342,4.189505,5.12955,3.6170666666666667,5.6030525,0.5956361538461539,4.32021,3.2707125,3.12935,2.4879000000000002,3.6351333333333335,2.4469766666666666,3.0864833333333332,2.6153999999999997,2.946175,3.51192,5.4216,5.00345,2.19494,5.0102,4.419815,3.123695,3.71537,3.45434,0.328622,4.978975,3.590155,3.277145,3.270018,4.161005,3.957845,1.86462,3.050455,3.725595,8.342155,5.11715,5.8059,4.71777,3.970415,0.855625,2.236385,1.92238,1.651895,1.8627066666666667,5.00985,5.4501,4.107935,5.0096,3.2628380000000003,2.5517133333333333,0.9162233333333334,3.999795,1.1906483333333333,1.1164366666666667,3.22346,3.41173,4.75056,1.2955125,2.5447266666666666,8.949983333333332,3.2443733333333333,3.2236158333333336,0.8257525,3.889575,12.448296666666668,3.363255,4.104765,3.01614,2.825495,4.718635,5.13125,2.16608,4.502305,0.6116553846153846,4.72447,2.17755,1.8581025,1.8581025,3.517633333333333,4.58404,1.6209416666666667,4.26881,1.3464028571428572,4.02779,2.71558,3.3789,4.961225,3.47656,3.858696666666667,2.667675,2.6502991666666667,2.6502991666666667,11.255975,0.738758,3.01891,3.3444333333333334,2.12661,1.9775475,0.9626685714285713,1.376085,1.2500628571428571,2.049345,5.10815,2.41157,4.27065,2.0771333333333333,3.8814,4.42791,1.6710833333333335,1.951315,1.0138833333333335,6.155303666666667,2.10883,2.135815,1.712806,1.9365200000000002,1.15308125,2.47198125,3.62456,2.2835466666666666,3.0517733333333332,2.36934,2.7061933333333332,1.6808466666666666,3.137113333333333,2.58133,1.4803333333333333,1.9913699999999999,2.94463,2.74286,2.427846666666667,1.1613200000000001,2.5219733333333334,1.9690133333333335,2.5718799999999997,0.3088610526315789,0.4027,2.34449,2.2094833333333335,3.214915,3.1699133333333336,2.71357,5.0643,5.5872,4.303155,4.655845,4.42138,3.93637,3.0708933333333337,3.72132,0.71368,0.07111522727272727,6.94725,0.07111522727272727,3.576595,2.930365,5.3643,3.41318,6.31585,4.59518,2.066876666666667,2.46275,1.0489433333333333,5.34955,5.78055,3.4006000000000003,5.4226,1.983795,3.838625,2.0719271739130436,3.2665733333333336,3.1826566666666665,3.9138,5.055366666666666,3.09567,2.1741466666666667,2.1741466666666667,3.98066,7.63354,3.35526,2.1056033333333333,2.3834,4.48467,3.028705,4.928305,3.67543,1.0764333333333334,4.492095,2.7044766666666664,2.9254533333333335,4.23267,1.1935499999999999,2.3298533333333333,3.844295,3.6975,5.09545,2.86196,2.7405,3.915875,3.809795,4.30791,5.00085,4.446295,3.259955277777778,3.715845,2.8314566666666665,2.92948,2.827716666666667,3.852066666666667,4.32587,3.1254933333333335,5.203058333333334,4.411955,3.8705,5.3675,4.46851,3.62562,1.429614,1.359635,3.951405,3.569266666666667,1.4938666666666667,2.8836833333333334,3.278085,3.31188,4.091782222222222,3.1948333333333334,2.3824816666666666,12.71495261111111,2.24656,1.87297,4.728,1.113872,3.1962166666666665,3.94293,4.721855,3.45128,1.2142333333333335,2.3405833333333335,2.5492933333333334,1.548912,4.603835,0.9651675,0.9651675,3.198743333333333,1.6704233333333331,1.52832,1.8156075,3.49909,5.5123,2.32713,2.984425,3.5743783333333337,2.841976666666667,2.96068,1.991384,6.34315,5.79425,3.99142,0.789876923076923,4.313665,3.586665,1.0678727272727273,5.53105,3.3954,8.7093,4.94777,4.837015,3.55475,1.4181825,3.09238,5.06375,4.8351,4.084925,3.79734,4.409695,4.062355,3.4897333333333336,3.4897333333333336,4.40415,2.7153,4.33536,1.619975,5.651057083333333,5.538375,1.5682,4.678005,1.07638,5.8836,4.00153,5.0856,4.712485,4.41768,2.49582,2.568375,4.163505,4.40671,5.08765,4.428,1.845385,1.408684,4.702225,2.0263666666666666,5.46565,2.927695,3.556535,7.848615,3.83635,4.704555,5.4084,4.251615,4.80957,8.187515,3.950245,3.19055,9.56381,3.964435,0.6031885714285714,2.0660369474969476,4.72435,0.6121586666666666,4.725995,4.31101,4.93696,4.61152,3.36156,3.744405,4.72787,5.0441,2.6825,0.7121557142857142,4.69317,4.55196,4.54466,4.39729,2.8778333333333332,4.656605,3.69734,0.788116,3.4612,4.366855,2.507775,3.2408466666666667,4.31064,2.2971116666666664,5.62235,5.2311,4.1816475,0.88283125,3.1548133333333332,5.7729025,5.7729025,8.638593333333333,2.03062,0.7999175,0.7999175,25.196065,2.762975,7.833821666666667,0.3402066666666667,1.33727,3.06035,1.04387,3.653395,3.71268,2.2055925,2.2055925,4.335695,4.990445,3.464995,2.7342216666666666,2.7342216666666666,3.391215,4.72383,3.67512,3.4354666666666667,2.0241000000000002,2.64170625,3.916609,2.018505,3.484625,2.9329666666666667,2.8495267857142856,2.8495267857142856,3.5128,0.9248133333333334,2.5242833333333334,1.5321233333333335,3.4393,2.919643333333333,3.03885,2.805616666666667,4.928985,2.5173,3.23031,5.484688,1.393548,2.18432,3.043585,2.6788399999999997,4.37232,5.72624173015873,1.3545833333333333,3.9202,2.48827,5.00094,6.16919,1.5266325,5.12671,5.119887333333333,3.3802011428571426,4.643166666666667,0.9648814285714286,1.810654,3.02253,4.021424761904762,1.2900416666666665,2.414765,1.5553675,1.6300719999999997,2.836675,3.5125779999999995,5.271533,1.0570983333333335,1.4212271428571428,2.9496033333333336,13.649944999999999,4.708616666666667,2.67434,1.1783757142857143,2.571212142857143,0.9842871428571429,3.3375333333333335,4.140281666666667,5.00515,3.397866666666667,5.3883,1.49465,3.8206,4.42386,2.825813333333333,4.070321111111111,1.9719633333333333,1.0847077777777778,2.446223333333333,3.0390533333333334,7.201103333333334,2.9543872857142857,2.725153333333333,0.712369,4.781766666666667,3.7011000000000003,1.370924,5.68333,2.00313,2.5891800000000003,5.61855,1.2853555555555554,3.184763333333333,1.0011454545454546,3.0300100000000003,4.4461,3.2171366666666668,3.08895,2.19069,2.734083333333333,4.65037,4.658455,5.2984,1.634405,4.35156,4.2279,4.43907,3.4151999999999996,2.446833333333333,4.234532000000001,0.961422,2.8626899999999997,4.920165,2.832075,4.161175,1.37055,2.7936300000000003,1.985592,1.985592,7.40456,3.152003333333333,5.630546666666667,3.429108333333333,1.7841766666666665,2.783404285714286,4.827671666666667,5.696916666666667,8.923926666666667,4.951451666666667,2.6799695,2.216816666666667,2.0063428333333335,4.157843333333334,3.71185,1.51938,1.957705,2.275158392857143,1.1595175,3.2557833333333335,19.533926666666666,3.2190366666666663,2.9445666666666668,3.0847933333333333,2.91344,2.63546,2.17586,3.3009766666666667,3.636433333333333,2.69385,2.5700233333333333,5.778792666666666,2.4849733333333335,4.864999428571428,2.8742654285714284,2.7065194285714287,1.50396,3.8724366666666663,2.1195675,4.065455,5.1021,3.97744,2.9095225,3.22807,2.406503333333333,3.6023,3.7167999999999997,3.5502333333333334,3.28454,0.8169000000000001,5.36565,2.622765,3.356733333333333,2.839357777777778,2.0777175,2.1615624999999996,2.1615624999999996,3.384745833333333,1.9528908333333332,4.66845,4.206045,3.676585,4.44704,4.949165,4.606865,4.606865,4.038975,2.960876666666667,4.82194,2.64067,1.65218,2.3894266666666666,4.624225,4.20222,2.77215,3.850475,5.670415,3.810333333333333,6.544985416666666,3.04381,0.854768,0.854768,3.333435,4.84095,3.704085,3.353096,2.44781,1.7710033333333335,1.6534633333333335,3.13946,6.179525,1.5551416666666666,4.3893,3.8065333333333338,3.76411,5.24875,5.20925,4.792814375,3.4177666666666666,2.4536725,4.41142,4.369965,2.14426,1.125162,4.04924,2.786225,6.566658333333333,3.7804333333333333,2.68324,3.3228,3.58153,3.76629,4.72123,3.252275,4.434745,4.014615,4.237955,3.687715,3.403725,3.406685,4.123515,2.5159466666666668,4.67036,3.303465,4.955245,0.6056455555555555,2.34316,1.8998225,2.216685,1.8630575,2.7390333333333334,2.63657,1.8211533333333334,4.58924,5.45582,1.9462933333333332,4.10782,4.648915,2.397035,5.6994766666666665,4.0773575,4.673005,4.999355,7.100673333333333,2.1564733333333335,3.099546666666667,2.005453333333333,3.073423333333333,1.795305,1.831065,3.96593,3.37418,5.4213,1.035798888888889,2.967495,4.553755,2.2890375,5.34505,3.64585,2.53018,3.6176,3.430225,2.2306325,1.9420015,2.573775,3.144675,3.36625,1.9764525,3.2594471428571428,3.2594471428571428,3.630425,3.469875,21.485500238095234,1.10792,5.751613333333333,1.97428,1.8559033333333332,3.766185,3.848115,1.8511925,3.77233,4.41328,1.2577966666666667,1.2577966666666667,1.31568,1.6567366666666665,2.4457033333333333,3.062796666666667,4.850738333333333,3.8419,3.6439333333333335,0.50987,3.465206666666666,1.8853133333333334,2.20408,4.3930125,3.283925,3.919105,3.39176,4.52039,4.6421,1.964085,3.947145,5.577426666666668,2.52852,3.480695,5.0231,2.217625,4.732925,6.09945,1.3971571428571428,2.00486,3.6920333333333333,0.7602328571428572,3.32248,3.55124,5.03075,5.037,2.801935,7.969595,3.0096600000000002,3.0211,0.44429176470588233,4.1972,5.421840476190476,3.278480952380953,5.48075,3.74315,2.4941862222222224,1.8241260000000001,5.48407875,4.34902,4.325415,2.890875,2.120335,3.9779,4.027533333333333,2.9491033333333334,2.16717,4.093454166666667,6.627062499999999,2.69957,3.754195,3.51122,4.057625,1.6087428571428573,1.6087428571428573,3.14757,3.1750833333333333,4.691675,4.89842,6.68695,3.447855,2.9069,2.136595,1.6060933333333332,1.4255928571428573,5.08605,5.9378375000000005,5.3061,6.04975,4.54441,6.646775,3.481605,2.77914,4.010356,2.0358233333333335,3.0520207499999996,1.694938,4.537935,2.3111566666666667,3.92222,5.2385,3.99044,2.7181866666666665,2.998953333333333,1.4599142857142857,2.515275,3.9281333333333333,2.1255625,0.6366875,3.149013333333333,2.6845933333333334,2.65661,2.6020133333333333,2.2295225,1.639884,0.7152227272727273,0.7152227272727273,3.6641,1.9560725,2.500125,3.353675,5.87895,4.17561,6.0847,4.693705,4.67462,1.9359583333333332,1.3006766666666667,2.421045,4.013915,0.963795,3.511375,2.919145,2.85271,2.072705,3.9191,2.819975,2.015686666666667,1.0499957142857144,3.98275,8.03834,3.95555,1.636825,4.43128,3.535925,2.866585,3.390395,2.687875,1.76006,1.0222775,3.56105,2.3845641666666664,2.127623333333333,1.5848533333333332,2.2024966666666668,2.2072166666666666,2.437046666666667,2.82213625,1.3444833333333335,1.8623733333333332,1.0617975,6.47586,5.73275,5.7528,3.973755,4.515755,3.0634766666666664,1.645617094017094,4.850485,5.19055,2.506,5.26565,1.90255,4.518715,1.0388377777777777,4.03507,4.46589,1.8788875,7.60473,3.45696,1.8164275,2.0746625,1.712635,2.559575,3.4657666666666667,1.3548359090909092,3.215336666666667,5.64415,3.493365,3.93438,5.6657,5.4964,5.7194,0.96655625,4.423895,4.709855,4.085835,4.919715,3.8697216666666665,4.904775,5.36145,3.290985,1.7515166666666666,1.7515166666666666,5.5158,6.298018333333333,3.678085,2.6606566666666667,3.807485,4.88025,1.567712,4.461895,5.11975,3.47204,3.959035,2.9326066666666666,3.19979,5.09615,2.5322415,10.940937340267576,1.89286,0.75595375,2.5295033333333334,1.670825,2.6446,2.2707575,1.956316,3.062416666666667,5.14305,5.5615,3.0229866666666667,1.7348666666666668,6.560646190476191,1.5089857142857144,3.043973333333333,0.527752380952381,4.071566666666667,5.76445,3.59665,4.976775,12.705895000000002,5.51525,3.229506666666667,3.4677666666666664,4.974955,3.1478933333333337,4.87498,0.9797725,1.1834116666666665,0.8209872727272728,5.9396,4.194475,1.909494,5.060045333333333,4.4417,6.5138,4.745805,5.44545,4.603665,6.18725,3.801085,5.3585,3.629765,1.358612,4.448525,5.62815,2.691885,3.91148,3.054925,2.638625,1.20306,5.0846,3.850805,1.290125,3.5245333333333337,3.1182200000000004,2.451776666666667,2.503503333333333,2.4868200000000003,2.8901800000000004,0.6916809090909091,2.4839333333333333,2.58983,2.5619333333333336,1.9234600000000002,3.1486666666666667,1.86293,1.5058066666666667,2.493225,2.1573625,2.1472025,3.2261733333333336,3.1042733333333334,0.727733,2.8676100000000004,3.408125,4.61034,2.587943333333333,4.05479,5.72275,5.0724,3.23779,3.68769,1.4545714285714286,3.423005,2.470678888888889,4.196951666666667,2.92897375,5.02475,5.3095,4.966865,4.63954,4.338666666666667,1.108098,1.108098,2.2630807692307693,1.66614,4.1115,2.696413,2.696413,5.2611,6.04035,3.111225,1.2970183333333334,1.6166571428571428,5.9824,3.438425,2.593453333333333,3.250975,2.70987,3.118855,2.593453333333333,5.19561,3.130525,3.0930191666666667,2.882665,1.996905,2.93199,6.80635,3.392115,3.490655,5.5057,6.74675,6.39065,6.74685,6.74685,5.61775,4.8891,0.5253323076923077,5.22105,4.919405,2.875935,2.76762,8.127471666666667,2.7575566666666664,4.58929,3.67336,3.0060000000000002,4.783875,2.48706,3.2498125,3.069986666666667,3.648733333333333,2.71437,1.760074,1.760074,3.580885,4.29944,5.32215,1.856392,1.58398,48.994497651515154,2.5271433333333335,0.8841918181818182,3.27643,1.88664,3.4028333333333336,2.8419899999999996,3.17156,3.51147,2.85848,2.239996666666667,1.0443375,4.5529,3.177585,3.477625,3.89597,5.26695,5.18075,5.0654,5.45885,5.5857,4.83761,5.64805,6.241,5.1776,5.7405,2.0246925,3.934035,6.691,5.38075,3.60403,4.027905,4.225785,2.453515,3.81598,4.675445,3.24329,4.110433333333334,1.6820060000000001,4.320295,1.360848,3.13569,3.72533,3.450195,6.547245,4.299415,2.040345,4.27439,3.99247,3.888385,1.0124625,2.78149,2.93861,4.334350476190476,1.177255,4.72452,1.3118,6.28185,0.6825833333333333,4.219149333333333,10.617038333333333,4.61038,3.98424,3.812675,1.8671833333333332,4.33017,5.7855,3.11031,4.49537,9.297901111111111,3.4326666666666665,2.34522,2.7700533333333333,2.7168666666666668,2.80573,2.89719925,2.7774133333333335,2.59314,3.0235566666666664,2.6636833333333336,3.244846666666667,3.36545,2.20241,1.6737633333333333,5.238784666666667,3.870533333333333,2.62534,4.944594666666667,2.8137633333333336,1.1000175,2.2215775,3.0156566666666667,5.159192142857143,2.9118,2.3005677777777773,2.3005677777777773,1.625255,1.761175,2.1731000000000003,1.92669,6.0705775,4.3512125,2.3026725,2.9048266666666667,3.8412666666666664,2.036275,0.6341616666666666,2.7213666666666665,1.8648125,0.5453030769230769,3.759725,2.4709725,2.574375,3.58269,3.6453525,2.47173,1.5599533333333333,1.2371016666666665,2.11331,3.454545,3.635575,4.20959,2.7852533333333334,3.975645,3.7192,1.1601545454545454,9.598569999999999,2.718065,3.379685,1.2622125,2.8770000000000002,2.4103825,2.4103825,2.4103825,5.0656,5.6753,1.651595,5.2295,1.36435,5.577153333333333,1.6376300000000001,4.4662,4.21814,4.300885,5.07665,4.86416,1.89553,9.1716025,4.049155,4.98964,3.356195,4.239225,3.3166966666666666,3.055536666666667,3.76075,2.684143333333333,4.373780714285714,4.503675833333333,1.596905,3.88149,1.596905,3.560625,4.33703,4.8239925,4.33703,1.83835,5.8412,4.496645,4.37682,2.9357366666666667,3.145383333333333,4.28751,3.14024,5.3617,0.5181535714285714,3.117376666666667,2.980093333333333,5.376999166666666,4.74711,2.4334875,4.78503,6.805408333333333,3.40425,2.712075,2.78147,2.4231133333333332,4.16175,4.07976,4.80173,2.41979,3.99599,0.883259,5.3331,3.51866,4.11382,2.3611766666666667,2.9118099999999996,2.305363333333333,2.7194566666666664,2.6934733333333334,2.737496666666667,3.540445,2.5404,2.5404,4.7316183333333335,3.346315,4.864695,11.671162500000001,0.9635833333333333,4.681315,2.704383333333333,2.3492466666666667,2.872313333333333,1.5007625,7.652474833333334,3.6443333333333334,3.915915,3.774655,2.1794333333333333,3.995533333333333,4.53197925,2.4722166666666667,0.45421333333333336,1.597596,1.4317225,4.98023,2.749135,3.41476,3.7363366666666664,3.4262216666666667,2.4517474999999997,5.02065,4.64995,3.65326,4.717595,2.16541,4.019255,2.4641533333333334,5.378736666666667,3.034715,5.1371,4.17291,4.891895,4.302605,1.971325,3.717105,3.653275,3.2459233333333333,3.571965,2.98756,3.05324,4.232455,3.352265,2.54775,4.691245,1.50537,3.78726,2.70873,4.565795,4.716765,3.864815,4.707395,2.42275,4.264165,5.19915,4.06538,2.8800899999999996,2.15505,2.932265,2.32605,0.8572466666666667,4.71343,2.01649,3.37562,2.63347,4.004495,3.186245,3.410325,3.133295,4.44743,4.4669186666666665,4.104205,2.89638,1.5557699999999999,3.360155,2.298835,0.9574655555555557,4.609715,8.828025,3.301795,3.549485,4.14742,4.942755,3.790145,2.030855,3.889955,3.907945,3.182245,3.144195,3.73902,0.594145,1.2128057142857143,6.1124075,1.6850975,2.651735,4.8181519999999995,2.47346,2.350235,2.78225,8.29243,2.539735,4.116995,3.65994,0.7481333333333333,3.351195,2.61999,3.76297,4.11071,6.1643566666666665,0.717018,3.22864,9.22251,3.12368,1.0793144444444445,5.191654166666667,4.74235,5.4784,4.6322,4.722095,3.34467,2.61139,7.50408,0.87232,3.368295,4.05501,2.91741,4.38406,2.305525,4.22883,1.7289,4.34284,4.165185,4.16651,1.68247,4.855855,4.72084,2.43541,2.0476,2.393855,1.370924,4.08316,3.3529204999999997,1.587386,7.9483049999999995,5.82255,4.47076,4.54248,3.47252,4.28375,1.4522857142857144,4.553815,3.99522,5.37585,3.62956,2.3983166666666667,6.68329485042735,1.4152825,1.4152825,2.5551166666666667,0.8899514285714286,4.21172,3.2743266666666666,1.039175,1.68747,0.40100583333333334,6.3243575,0.9404725,2.722025,3.88073,3.96124,3.8587,4.22741,5.50945,5.4856275,3.29528,3.054175,2.37517,4.606765,4.548155,4.19979,3.77011,3.619385,6.1895,4.436675,4.306547777777778,6.119368,3.60743,3.5590425000000003,2.24482,3.5590425000000003,6.900436,41.77221162229437,3.718485,3.37868,2.959433333333333,4.465165,4.632155,3.3833,3.44213,3.72125,4.69446,4.405005,1.75445,5.037,2.62106,5.04145,5.3606,5.0087,2.314226666666667,4.650445,3.857145,3.348565,1.615278,0.661156923076923,1.8020219999999998,3.8249333333333335,3.21241,1.359675,3.037603333333333,2.761566666666667,2.8823633333333336,3.6531000000000002,3.0488133333333334,1.5875059999999999,2.805153333333333,3.766166666666667,1.970166981981982,2.9733666666666667,3.324522,3.04123,2.5414033333333332,3.5764,1.1935222222222222,3.94028,3.78544,1.2370266666666667,1.2370266666666667,1.2370266666666667,1.2370266666666667,2.8560963636363637,2.0372,2.458275,3.46704,4.90349,5.07265,4.340965,4.386385,5.6909,4.594465,2.30017,6.11305,3.885275,2.658265,4.07773,3.352805,4.2133,4.574025,0.7350746153846154,1.470157142857143,1.5267833333333334,4.27133,3.811655,5.03035,4.05954,6.072208333333333,2.2267266666666665,4.712935,1.6167133333333332,3.8704,5.20275,1.5870433333333331,5.24805,0.7955283333333334,4.397795,1.335356,1.2031825,3.735395,4.09119,5.3458,5.2573,6.0947,4.776365,1.45442,5.35375,1.4584925,3.56779,3.30545,2.4941862222222224,2.0278225,3.451865,1.3615283333333332,3.513525,4.866795,2.8926766666666666,5.8948,123.45701171969698,0.4795422222222222,4.74916,2.4911366666666668,4.586585,3.98511,3.13585,1.5107525,0.35414190476190477,2.86683,3.72664,5.59625,3.478005,3.637465,4.3462,4.834005,4.88906,8.043186666666667,0.6793122222222222,2.605355,0.9514175,11.237639999999999,2.93986,3.43583,0.9846322222222221,2.081445,2.68878,2.09358,3.219473333333333,3.4097333333333335,2.7985399999999996,4.211,3.1356133333333336,2.2686100000000002,2.1576299999999997,4.01115,3.3708,3.053855,3.585755,3.635775,3.221615,2.26848,3.785865,4.290365,3.021605,0.9651733333333333,2.4656866666666666,4.211,4.52531,5.49945,4.015455,4.35605,1.83668,10.240739999999999,5.22415,2.63263,4.17035,5.14435,0.5509853333333333,0.5509853333333333,4.283695,4.283695,3.234875,3.6008666666666667,1.78752,0.6267566666666667,2.87154,4.447105,4.05972,3.074,3.88993,5.2818025,4.99471,2.19734,4.72031,2.38207,2.776785,4.396395833333333,1.755,2.069565,0.5051257142857143,1.2628477142857144,1.2628477142857144,1.927195,4.61427,4.38034,4.876,6.4230789999999995,3.28529,3.037905,1.830385,1.85181,4.796671666666667,3.92332,5.218216666666667,2.74083,5.218216666666667,5.1312,3.562115,6.1709,3.72464,2.354546666666667,2.1189566666666666,2.5042233333333335,1.3730525,1.3473075,1.5044275,1.8402675,1.5856,1.9632725,3.9093,4.80373,2.486845,6.753,3.1533433333333334,4.553555,3.332675,4.30965,2.9273066666666665,3.1390233333333337,6.522356666666667,3.4136333333333333,4.797747333333334,3.4068666666666663,1.397195,2.430973333333333,2.616283333333333,2.2345966666666666,6.2028,4.4794374999999995,4.91891,12.827041654906497,0.7750291666666667,2.0291550000000003,2.3102525,1.741234,1.3221614285714285,2.591625,2.5393,2.522,2.47845,0.7519238461538461,1.90896,0.5393473684210527,4.85448,1.918965,4.152385,4.71025,2.561775,5.77741,4.34207,7.94215,4.16002,2.79443,3.02944,4.769955,4.85408,2.7193713333333336,4.53028,2.171245,2.171245,5.0898,3.920635,4.451815,3.981595,3.252026666666667,4.15442,5.1729,5.3495,4.936285,4.653025,4.40926,4.3731,2.379735,5.32795,1.3296816666666667,4.98166,4.688755,2.4378333333333333,2.1540500000000002,4.183465,1.548415,5.15035,1.9698,5.871108007246377,4.73606,4.03608,1.5203366666666664,3.0835175,3.0835175,11.74074,3.923285,4.82793,1.12296125,4.416937,2.307005,1.4537925,2.447295,1.7201175,2.03827,1.807922,3.01018,6.1251,1.78148,5.2375,4.765798333333333,5.7221,2.18282,2.23637,3.75995,4.350175,5.57865,3.861355,7.598728333333334,3.2148633333333336,2.7937333333333334,0.3675833333333334,3.67668,4.39232,3.459766666666667,6.310636666666667,2.5625466666666665,3.10182,1.216655,1.6558916666666665,0.6366875,1.597596,3.03785,1.5281483333333332,1.8040166666666666,0.6737125,1.3052519999999999,4.62867,2.4782975,0.6416515384615384,1.6688833333333333,1.70907,1.820154,1.3364316666666667,2.07302,1.6558916666666665,2.595125,1.3052519999999999,1.3052519999999999,0.6416515384615384,1.6009571428571427,2.5103400000000002,1.2900416666666665,2.776675,0.6416515384615384,2.7442,2.5103400000000002,1.3664399999999999,1.3664399999999999,1.3664399999999999,1.896912,1.2738125,0.6416515384615384,1.103562,1.15607875,1.0595855555555556,1.9044440000000002,2.71465,0.8591166666666666,2.273865,1.5950285714285715,0.6416515384615384,1.74208,1.6558916666666665,2.0317000000000003,2.0422166666666666,0.9027649999999999,2.0317000000000003,1.0322466666666665,2.43541,2.4443425,2.4841625,1.15607875,2.17148,1.3615283333333332,1.3615283333333332,0.9110636363636363,0.9110636363636363,0.9110636363636363,1.216655,1.6558916666666665,1.5950285714285715,1.6688833333333333,0.9704085714285714,2.0422166666666666,1.583904,1.765146,2.06596,1.216655,2.67434,13.1104425,0.6737125,2.62724,1.87525,2.500025,0.9842871428571429,0.9842871428571429,0.6416515384615384,1.0032388888888888,1.639884,1.5950285714285715,1.790264,2.0422166666666666,1.1796333333333333,1.1796333333333333,1.637822,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,3.2637433333333337,1.0322466666666665,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.2093411111111111,0.38540500000000005,56.57343003463203,1.4919,1.6196466666666665,1.5950285714285715,1.87525,0.9704085714285714,0.6492058823529412,0.712369,0.712369,0.712369,0.712369,4.3891,17.095088333333333,3.3993,0.6254881818181818,1.7670280000000003,1.7670280000000003,1.7670280000000003,0.6254881818181818,3.03785,0.6416515384615384,1.74208,1.8040166666666666,2.53702,1.0322466666666665,2.4334875,1.0322466666666665,1.7792439999999998,1.7792439999999998,2.1618999999999997,2.1618999999999997,0.6416515384615384,2.04294,2.04294,0.9821454545454545,0.2093411111111111,3.03785,1.5400066666666667,2.48827,0.6254881818181818,0.6254881818181818,0.6254881818181818,0.6254881818181818,0.6254881818181818,1.87525,0.38540500000000005,1.0322466666666665,2.2027575,2.2027575,2.568375,3.1274933333333332,0.6600714285714285,0.6600714285714285,3.5177,4.172233333333334,1.199922857142857,3.3714333333333335,1.02349,2.480885,2.03062,1.1935499999999999,3.175613333333333,2.0984675,3.1548133333333332,5.40345,2.553125,1.211411111111111,4.320595,4.33309,2.960523333333333,1.724542,2.4453034615384617,4.435825,1.9589161111111113,2.6142066666666666,2.829423333333333,3.2511433333333333,2.361425,6.3493699999999995,4.51073,0.2093411111111111,3.1217633333333334,5.322,3.76058,4.66019,4.53579,4.636475,2.9157433333333334,1.826958,4.601415,4.65042,4.27031,4.77898,5.46025,3.23155,0.7086466666666666,6.7461649999999995,1.6482333333333334,3.153288,4.77244,2.598813333333333,2.598813333333333,0.8490563636363636,2.0278225,4.625505,3.04246,5.16265,4.38711,4.71668,5.29615,1.1542257142857142,4.742205,5.63795,7.1373379861111115,2.1691033333333336,4.10469,3.772335,3.981785,3.87948,4.204995,4.41582,6.093884999999999,5.27285,4.4144033333333335,3.648125,4.350638333333333,7.4882089999999994,1.8679875,1.997406153846154,2.7813466666666664,1.7748133333333334,2.7776833333333335,1.77566,5.09185,3.071676666666667,6.18475,2.02468,5.14895,4.03126,3.807745,4.29358,3.683225,2.5101,2.760526666666667,2.54685,2.7417200000000004,2.5066366666666666,1.7009166666666669,2.635546666666667,2.7624633333333333,2.2523,2.2523,4.465525,2.8783600000000003,1.8938266666666665,3.00568,2.0292866666666667,2.8267866666666666,2.987106666666667,2.702833333333333,2.8722366666666663,5.48505,4.43597,4.29658,3.642742,3.642742,4.06405,3.33179,4.162935,4.407785,4.16329,3.41178,3.27455,7.25468,2.199425,1.948885,3.31814,3.30215,1.3969066666666665,1.3969066666666665,3.482335,1.807025,4.014732666666667,3.663685,3.63657,1.914514,1.9837336666666667,0.5858933333333333,3.62275,3.86786,1.98726,2.45695,4.2884,1.2430533333333333,4.72959,1.3104833333333332,0.38852857142857145,0.5334164285714287,21.744247722222223,0.5334164285714287,0.38852857142857145,0.6783042857142858,9.820283333333332,2.8434666666666666,3.83289,4.58876,3.6355000000000004,2.73739,4.257120714285715,2.189135,2.54083,3.814165,3.006065,4.12597,4.52289,3.452385,2.1687,3.238195,3.65449,3.88566,2.915105,1.088028,1.088028,1.088028,1.088028,3.33745,2.761755,3.219685,1.7356033333333334,1.2117833333333332,2.421375,3.625115,4.468175,3.167435,3.342025,2.583495,2.71558,3.85241,4.05913,1.1209633333333333,2.8264566666666666,1.06196,2.8451733333333333,2.14338,3.8251000000000004,5.4972,2.467983333333333,4.026575,4.1644266666666665,0.7830809523809524,0.2032542857142857,0.2032542857142857,0.5798266666666667,0.2032542857142857,0.2032542857142857,0.2032542857142857,0.5798266666666667,4.764125,7.647743333333334,3.49708,0.5500275,3.691315,7.55176,3.17185,3.24694,1.143455,4.73227,5.44995,4.38071,4.76447,1.656204,4.83461,2.1933266666666666,2.3079140000000002,3.795155,5.4431,0.7878371428571428,0.7878371428571428,3.53662,2.7604333333333333,1.972275,3.03371,2.67753,6.72935,2.622335,6.48765,6.0624,5.6336,2.90182,1.866935,4.35275,3.317665,2.20697,3.87982,3.55154,1.7289125,1.0883083333333332,3.965645,3.32906,4.92412,6.0990633333333335,1.4952083333333333,3.982445,1.16558,2.4304099999999997,3.29912,4.101355,0.392905,3.62794,4.046195,0.9248239999999999,2.8639033333333335,7.665516666666667,3.06804,2.117325,5.837859,4.37267,3.846915,1.442955,5.527456666666667,2.8865366666666668,3.168293333333333,3.6755999999999998,2.1072866666666665,2.1072866666666665,6.571425,6.571425,3.7476535714285713,3.7476535714285713,11.2204,3.7476535714285713,3.7476535714285713,4.403210238095238,6.95285,3.774325,3.683045,3.029666666666667,4.5008,3.29658,3.3791666666666664,3.2449066666666666,4.84635,3.260403333333333,2.63188,3.2873,2.2700366666666665,2.652055,4.99103,7.49001,6.4963325,5.0062,3.66466,3.935215,7.225482,5.3697,4.622,4.230185,4.427055,2.4290499999999997,2.165605,2.1261,5.796,5.7198,4.698405,4.21316,2.263053333333333,2.8203300000000002,6.912694999999999,1.896912,2.508103333333333,3.466533333333333,3.466533333333333,3.08212,5.28145,0.7937725000000001,3.5563000000000002,4.04112,3.1077433333333335,10.301250000000001,4.575185,2.80157,2.4525,5.1454,6.0865,2.98797,5.58615,2.5981533333333333,4.572965,2.9980257142857143,4.71397,5.53815,5.06285,1.1201433333333333,3.6565666666666665,1.06161125,2.43438,5.203814911764706,8.74019,2.5947133333333334,3.4702333333333333,7.313863333333334,1.830304,4.705875,5.4791,3.45782,3.59143,2.1112266666666666,4.64832,2.4670362499999996,0.4816692307692308,5.16055,2.827725,3.5191,5.41655,5.08295,5.29835,6.934075,4.812315,5.54925,7.3504375,53.97793166666667,4.980965,3.866315,4.724095,5.88215,4.72514,5.32195,4.36544,4.68251,1.8956625,3.985175,4.285065,4.63847,2.50818,5.1207,3.895815,1.610034,5.81195,6.52705,7.49334,5.48065,3.26409,4.7781,3.469555,3.186455,3.512585,4.225715,3.766145,6.66073,2.8296,1.0498957142857142,2.30375975,0.589054,0.589054,3.509595,0.589054,2.3668863214285714,2.3668863214285714,3.0456083214285714,4.73855275,5.113307571428571,2.30375975,5.049275000000001,2.667205,1.4377700000000002,5.6577,2.20327,7.210124666666666,5.793196666666667,11.150156363636363,3.1877766666666667,2.6090966666666664,0.216929696969697,1.9022383333333335,2.2629699999999997,0.971145,1.3976316666666666,2.8909599999999998,2.4569325,2.7157,0.5904849999999999,26.88726583333333,1.881495,0.7956461538461539,2.59275,2.59275,0.42854055555555554,1.7459575,3.0410525,1.28649,1.8306325,1.613685,4.049135,2.832695,1.9713066666666668,2.3554533333333336,1.1212116666666667,2.13996,1.5839216666666667,5.380511333333334,3.665065,7.0439783333333335,2.630325,3.444266666666667,1.0178366666666667,2.24629,5.2057,6.32758,3.1659400000000004,2.34426,5.4314116666666665,2.134545,2.730306666666667,4.5228850000000005,1.0816433333333333,3.5930666666666666,2.3140466666666666,5.5031,5.0616,6.3682,3.369535,4.1536,4.1536,5.29585,2.48172,5.4592,3.1712633333333335,1.5895075,2.924115,3.086015,5.626928333333333,4.14632,2.931573333333333,3.475633333333333,3.023615,1.1480599999999999,5.22025,0.98013875,5.597146666666667,4.721115,7.66786,4.240115,4.423265,4.13319,8.431983333333333,4.539015,5.2959,1.19345,0.7291071428571428,4.610105,4.518505,2.14464,3.180615,3.230255,4.21248,2.051655,4.866145,2.59835,5.51345,5.55545,5.73775,4.634295,4.87108,2.78186,6.581084,3.32884,4.480265,3.299255,4.659255,5.6813432142857145,0.5819964285714285,3.8113333333333332,1.6877566666666668,0.5705088888888888,3.971,2.46154,1.0463025,1.859535,5.73231,3.56191,2.281875,2.8709399999999996,2.7223366666666666,5.03735,4.25915,1.6361971428571427,4.31381,2.4180266666666665,3.7917,4.465355,5.06395,3.226869166666667,3.9088999999999996,3.884,2.00396,7.32099,4.89957,4.412605,5.4719,2.243455,4.64414,4.84972,3.830185,3.79404,10.488345,3.622625,4.246261666666666,4.788765,4.838715,2.4584675,4.624845,4.294875,4.773235,3.289773333333333,4.55424,1.6877325,3.2046166666666664,3.510845,3.989675,5.34025,1.9347539999999999,4.320265,3.2148566666666665,5.49145,3.3992,2.279805,4.202555,4.83299,1.09829125,2.890715,2.703863333333333,4.57025,1.7979040000000002,1.6762533333333334,1.1856575,3.420915,5.66295,5.389785,3.5314275,4.364075,2.3444,2.09385,2.236065,1.4204666666666668,5.78865,2.90313,2.00505,0.9200846153846154,20.87751323076923,3.1862,3.3276275,4.728045,4.116288461538462,1.26477,2.731741833333333,3.069904090909091,1.2357960000000001,1.8175533333333334,4.638995,5.0081,3.6460516666666667,3.59353,5.63015,4.79638,7.188195,4.844391666666667,4.7321,3.70569,2.7258833333333334,4.09312,4.179825,3.7535666666666665,4.13429,2.051275,5.1282,8.71723,3.39263,2.90885,4.33212,0.538965,3.208353333333333,2.0818733333333332,2.4243025,4.209245,3.449405,5.2483,3.63801,2.79267,2.296355,1.702885,0.807634,1.47569,1.3386699999999998,3.809245,4.312,4.81305,4.703945,7.36026,2.2362333333333333,1.413412,2.37038,8.038343333333334,3.17356,2.8487,3.099305,4.647945,3.3980025,3.531655,1.58976,4.607315,4.944345,4.13623,3.95927,3.81345,4.245875,4.543645,3.67725,4.33512,5.16735,2.19505,3.4522,3.31103,5.61365,2.855125,4.2876785,2.57757,2.845675,2.4779133333333334,2.2846266666666666,2.1086300000000002,2.854214,2.854214,1.8979433333333333,2.8930933333333333,2.2899033333333336,2.2807999999999997,2.0235,3.98288,2.3699,2.80593,2.9192133333333334,1.66393,4.47835,2.831,3.90099,2.76465,5.1595,5.44965,4.905963611111111,2.4984,2.25559,3.00432,2.019905,2.050865,2.752925,1.945415,2.6893,2.8082,6.678422333333334,4.1200825000000005,3.66281,0.651875,4.366185,4.05193,4.26936,3.107545,3.87826,3.671120833333333,6.3368,4.468605,3.685585,2.8068039285714286,2.2370335555555556,2.4833,1.7688279999999998,1.828528,1.753012,2.13646,1.86583,1.3191116666666667,4.072848857142857,0.6416515384615384,0.5685055555555556,2.03242,1.5105899999999999,1.5023279999999999,1.4670783333333333,2.271815757575758,1.4716950000000002,1.768244,0.604725,173.92293262226255,0.5148606666666666,2.06908,1.0571199999999998,1.2298525,2.03002,1.4740725,1.96696,2.42267,1.7219625,6.71185,3.084665,3.451723333333333,1.68808,3.168025,1.2662266666666666,1.2662266666666666,6.34414,0.48225222222222225,2.3927825,3.4326333333333334,3.0725,0.8711772727272727,0.6122470588235295,1.257479794871795,1.0593636363636365,2.3580875,4.304995,2.116985,2.1114775,2.347843333333333,5.086345666666666,1.053488888888889,4.449965,3.5839,3.514885,6.58446,1.8260866666666666,2.50526,2.43327,3.904684,2.454785,3.30573,3.079425,3.42358,3.453485,3.11643,6.35552,2.918185,2.40021,2.976915,1.393405,2.80616,2.96623,2.90133,1.829225,1.733625,1.977855,4.57443,5.464689999999999,3.07507,2.774215,1.43776,4.38253,3.8398,4.153266666666666,2.90417,25.7079200291514,2.5719266666666667,2.705666666666667,3.1492,3.574666666666667,3.3901,5.720143333333333,3.1376000000000004,2.6279666666666666,3.476433333333333,3.4989666666666666,2.1153133333333334,3.3006333333333333,3.508366666666667,3.3247699999999996,1.7187833333333333,1.6907135000000002,0.592936,2.2259966666666666,2.136335,0.267019375,2.4683100000000002,2.856015,0.267019375,0.267019375,2.1893360416666665,0.267019375,0.267019375,0.267019375,0.267019375,2.9361266666666666,2.85144,0.6219023076923077,3.373173214285714,1.4830625,1.9896280000000002,5.369,4.3905925,6.3917775,2.1886925,4.95039,2.2302,2.8338366666666666,1.3769928571428571,5.919033333333333,2.8211066666666667,5.929139999999999,0.8972916666666667,1.296365,4.73925,4.758145,36.187505375402374,1.747718,1.3331733333333333,2.2169733333333332,2.4277875,0.9110636363636363,2.3614266666666666,2.5145566666666666,2.6534766666666667,1.9223133333333333,2.4729300000000003,1.6328300000000002,2.4860700000000002,2.289216666666667,2.14689,2.749363333333333,2.369266666666667,4.097045,3.5833999999999997,1.1799942857142856,4.479925,4.120495,20.114798444444446,2.7769133333333333,3.3838000000000004,2.6836599999999997,0.794048,2.9550859999999997,1.585579111111111,2.9550859999999997,2.2948333333333335,2.6771066666666665,3.0077866666666666,1.75782,2.1339125,4.491585,3.901175,5.3351,4.23765,1.7191759999999998,5.08535,1.61373,4.971315,4.0204532380952385,4.83825,0.7501627272727273,2.0421725,2.05588,2.901532,3.331525,1.119345,3.341935,1.9547219999999998,2.1401266666666667,1.039474,1.039474,2.4580766666666665,2.6995966666666664,4.365825,29.05721875,6.074015,1.8966566666666667,3.60591,0.3825533333333333,6.3339525000000005,5.9429,2.8640633333333336,3.2317,5.637305,3.74869,1.20580125,4.54665,1.25003,2.95981,4.72995,5.25995,2.07577,3.11391,4.593555,2.555255,2.934716,4.3327,1.29948,2.6158295833333334,3.90303,5.293475000000001,2.48847,3.1372,2.8025933333333337,4.28225,3.98877,4.101825,4.2179,1.72196,5.97025,2.562575,1.6809280000000002,3.99974,5.39757,3.94176,3.622365,0.76648375,2.957605,3.47306,2.004605,4.709849666666667,2.88382,3.80782,2.837616666666667,3.369866666666667,2.50656,3.384066666666667,3.0746800000000003,3.208876666666667,4.323605,5.50155,3.727015,1.668585,4.04203,4.15172,1.808185,1.83478,1.6930425,4.079721666666667,4.607585,5.405994375000001,3.94167,3.4316333333333335,3.68879,3.1641833333333333,1.5304033333333333,3.00385,3.289575,3.142055,4.786405,4.555185,4.4715,3.245165,1.85197,1.58821,1.428955,3.2931,2.40451,2.271095,3.367945,4.9811,1.67645,5.4249,1.4332571428571428,1.8643875,3.068075,3.267935,2.844405,3.720045,2.9952,1.514835,1.0100307368421053,3.506365,4.610575000000001,4.5922,8.884463333333333,2.8381233333333333,3.19581,1.57983,2.66223,2.7488733333333335,1.2557566666666666,3.1469733333333334,2.81564,3.3358000000000003,3.9890333333333334,3.2455,6.950808333333333,3.1431966666666664,0.7404036363636363,1.8338933333333334,3.324645,3.30339,3.301455,3.7138000000000004,2.704936,3.422045,2.63493,1.940646857142857,3.76265,2.6354994444444446,3.286615,2.21207,5.1621,4.82051,4.30945,3.45175,3.49505,0.9899011111111111,4.88221,3.058066666666667,2.872203333333333,4.55208,2.721276666666667,2.8346666666666667,0.40362000000000003,0.40362000000000003,4.44523,3.98986,7.0424,3.049665,4.856345,3.550795,3.2259,5.00415,4.409695,1.019945,4.007175,2.8018133333333335,4.375859166666666,3.0012033333333332,3.032900833333333,2.0558799999999997,3.3262810714285713,2.5849933333333333,2.9819766666666667,2.547423333333333,2.7549966666666665,2.1385433333333332,22.43538260671937,3.961,3.82353,3.95696,3.212485,4.82062,3.694435,4.709865,4.443165,4.17938,3.776605,3.819335,2.7450166666666664,2.936576666666667,3.1112066666666665,3.05013,3.19593,4.268185,3.45231,4.7202825,5.20325,4.330335,1.350912,1.477378,1.477378,5.2172,3.96991,2.745616666666667,2.49641,3.08085,3.582615,4.04783,7.940574999999999,3.22435,3.5448,3.1348000000000003,5.25355,1.6747333333333334,6.011850000000001,2.41114,3.1521899999999996,1.854775,4.10527,2.98146,6.69682,3.29947,2.550965,4.214005,4.423088666666667,1.48158,2.6902899999999996,1.6096000000000001,7.9024915,4.33218,6.9215366666666664,2.2769625,4.2348,3.85359,4.264265,5.30045,3.5414333333333334,3.5414333333333334,2.076725,4.381165,5.12695,2.68343,6.655438571428571,1.78786,6.01215,8.797109333333333,3.7009333333333334,4.168585333333334,2.2116333333333333,2.03123,0.5318375,4.48178,2.6564,2.73135,4.0251665,2.4624625,2.5817733333333335,3.748425,5.7996,5.2685,5.17725,4.92112,4.32739,2.2923775,1.0369818181818182,2.86385,3.134245,2.7179266666666666,5.20445,4.058535,3.19936,2.56546,2.00486,4.27633,0.99748875,5.21325,1.03928,5.4395,3.175425,4.981745,5.14577,3.09646,3.1689,3.176963333333333,2.3707366666666667,4.32619,3.5228,3.187465,4.183735,5.14195,6.057616666666666,4.870275,1.94456,3.664515,3.116805,5.410841666666666,1.7947525,1.7947525,2.7603166666666668,2.39641,2.627073333333333,2.928793333333333,0.8899779999999999,6.1816,3.65586,1.97014,2.273065,2.508215,3.592605,2.85957,3.63149,5.2033,5.56905,5.0729,6.24125,5.98715,1.3313125,3.952165,1.1194666666666666,2.60425,4.4085,2.553045,2.948175,3.164175,4.64195,3.7299,0.44993789473684204,4.56074,4.178295,5.0268,3.31041,4.834505,5.7544,4.33543,4.2221,1.86344,4.682505,2.029565,4.332033333333333,4.332033333333333,6.5751,5.67425,5.69115,5.1507,2.715245,1.6747333333333334,4.42192,1.94948,1.5875933333333334,1.881085,4.289835,4.113375,4.491355,7.72642,1.6748,5.42205,1.328185,3.09954,6.06355,2.026355,4.812955,2.9186833333333335,5.05235,3.42835,4.88002,3.4006000000000003,4.1158,4.02475,6.146,4.19209,4.340995,4.35898,6.06155,4.304335,4.612715,3.60403,4.367985,6.82808,3.506995,6.86529,3.14329,5.45135,6.549752727272727,4.66372,3.608745,1.814135,5.60135,3.915375,0.9331577777777778,8.30087,6.1653,5.37795,3.0837775,5.42335,2.80518,1.769118,3.790675,1.1209633333333333,6.2753,3.386735,4.463095,5.3621,4.478645,4.37824,2.0487533333333334,4.472965,5.45855,1.496505,7.58333,2.920475,4.06279,5.1296,4.75198,2.146825,4.53099,3.8741,4.07596,2.8778333333333332,3.92093,3.63967,5.52945,4.87532,3.354375,1.9275325,1.9275325,7.274173333333334,1.4535857142857143,5.42385,4.45151,5.12475,3.74731,3.743805,5.32955,3.842885,0.960875,0.960875,0.960875,3.818695,3.17205,3.68057,4.5712662222222225,2.763165,1.4325183333333333,4.450505,2.2129875,2.62744,4.078175,4.92631,2.2958825,2.19372,5.24144,3.948925,2.9572,4.36884,1.810245,1.9651225,3.3102033333333334,2.625315,5.22885,1.401742,1.6010680000000002,1.1107925,4.299495,3.490825,3.2200933333333333,3.105933333333333,5.54705,1.7131979999999998,2.03559,3.01104,1.7051285714285715,3.291225,3.472085,2.5105,5.87765,5.53755,2.64677,4.55203,4.05632,3.412125,3.711905,4.2511,3.47719,6.64809,5.50675,1.79119,1.8805666666666667,3.432615,4.73255,4.165585,3.872565,3.0983033333333334,4.23555,6.179,5.09225,2.6591,5.3665,3.89914,5.31835,8.410475,3.92624,0.7697072727272727,4.115945,4.293211666666667,2.43336,4.293855,3.857666666666667,6.0442,3.838835,4.49268,3.74697,4.699935,4.764825,4.51365,3.150615,4.137815,5.16855,4.093415,2.9339,3.25018,6.31073,5.415,1.96385,3.175845,4.257943333333333,3.792355,5.27175,4.567965,2.433596666666667,0.8478600000000001,4.557137878787879,6.564697499999999,3.57942,4.896835,3.5218,7.474853333333334,3.90301,3.720833333333333,2.94298,3.627,2.056785,3.434075,4.474405,2.531854,4.287565,5.98585,1.45361,4.966235,0.7089935714285714,6.4563,6.28855,6.3502,6.2562,1.7885,1.6731166666666668,4.535725,1.89921,5.70195,0.5332558333333334,6.22495,3.068835,1.4648020000000002,6.1467875,6.6015,0.7976725,1.8557845,1.3196059999999998,1.3196059999999998,1.3196059999999998,2.03448,5.1842,3.606155,3.420585,4.271525,5.4516,3.9138,1.961074,4.306585,5.19375,0.3052487804878049,3.93896,4.680405,4.583465,40.8698205530303,5.516000833333333,5.0272,11.411386666666667,2.94475,4.45623,7.562706666666666,3.099605,5.03315,4.16275,4.311945,8.904955000000001,3.84521,2.7667633333333335,2.67975,4.626295,4.10979,3.578605,4.400875,2.00265,4.43171,4.549175,6.904607,4.258695,5.16095,2.3535975,4.05209,0.51489875,1.39424,3.63656,6.52695,2.88292,1.2497466666666666,1.2497466666666666,3.201695,3.86303,4.56512,2.660935,1.7981566666666666,4.017255,4.60002,1.94901,3.33147,1.70117,1.8839666666666668,3.98033,4.43469,2.1711175,4.615065,2.4671475,2.055895,3.60785,3.716595,3.97693,3.74471,6.192634333333333,2.5564693333333333,3.714935,0.7087736363636363,0.6642483333333333,3.58573,2.114175,8.918116666666666,3.3993,5.18365,1.6607575,4.5561,1.5996766666666666,4.052865,4.3563,2.5426533333333334,3.875725,5.0411,0.4166525,0.4166525,3.7725333333333335,3.246893333333333,2.98345,3.862615,3.586325,5.4876,1.0108727272727274,11.1386,10.64179,2.07302,4.743705,4.79011,4.99067,3.482595,2.6896233333333335,2.1053,2.1839175,9.8210975,2.322145,2.64609,3.906638,4.68812,3.906638,2.468175,3.1036433333333338,2.9645566666666667,0.7303863636363637,5.6030525,3.139483333333333,2.8129633333333337,4.109805,8.9758,11.0393,4.312485,4.079275,4.293215,6.72019,1.9004575,1.4395125,26.838575833333334,4.373405,4.05123,1.04443,4.80975,4.059805,5.23745,4.7896,5.28425,5.88856,3.1274866666666665,2.0925433333333334,0.6740529411764706,0.7445966666666667,4.66079,5.1749,1.38335,4.453374999999999,0.9281333333333334,3.7500999999999998,1.4673333333333334,4.252455,5.984,2.04781,2.495295,2.52758,3.991215,2.86673,0.41647666666666666,3.880175,3.73075,2.994346666666667,3.288505,5.13935,3.0453233333333336,4.00367,3.137105,4.038545,8.735893333333333,4.927745,8.273035,2.724375,2.81936,4.383145,4.5293775,4.5981,4.119625,3.764185,4.864325,1.21165125,3.3768291666666665,3.156268642857143,0.638434,1.477378,1.477378,4.745165,7.876859999999999,0.8437,4.784015,1.0508433333333334,3.0456833333333333,2.5088233333333334,2.721473636363636,6.719781111111111,2.598523333333333,1.1511777777777779,2.6597066666666667,1.23342625,2.158443333333333,3.29379,3.03254,3.4529333333333336,2.4918766666666667,1.0508433333333334,4.651075,4.71698,5.5428,2.81826,4.27764,2.16406,6.03345,4.87184,4.742795,3.0280299999999998,3.768335,2.2052,1.7319175,4.302915,2.8295,4.79745,5.55105,1.647316,4.84703,3.0157166666666666,6.660083333333334,3.50502,3.255115,1.0508433333333334,2.55389,3.88949,7.583542333333334,2.5432966666666665,1.953326,2.5432966666666665,0.45357000000000003,1.20561,3.94729,2.75586,1.6771475,3.53683,3.570082,0.638627,0.638627,0.638627,8.558495,1.617298,0.7436309090909091,2.746065,40.441822067099565,1.8862306666666666,0.6555566666666667,3.200115,0.6555566666666667,3.635895,2.022565,2.43985,2.6346766666666666,5.14675,4.32546,4.40753,2.5495266666666665,0.8667942857142857,4.362395,3.3745,5.2138,1.0154585714285713,2.91275,2.91275,3.80089,4.44762,4.018065,5.432330384615385,3.53059,4.8107,5.4107,1.936114,1.1296875,5.407,6.57845,3.814515,0.646455,4.60913,4.186436666666666,1.016615,4.38529,2.668205,4.161855,4.555295,1.8790876767676767,1.8790876767676767,4.481635,3.45336,0.8960944444444444,2.98381,3.0944000000000003,3.28398,3.928955,4.411205,0.4739757142857143,0.3324905882352941,0.3324905882352941,0.3324905882352941,0.8064663025210084,0.6442153846153846,0.675812,0.3324905882352941,0.3324905882352941,7.34175,0.3324905882352941,0.8064663025210084,3.42212,1.27691,4.69944,1.1618733333333333,0.6323453846153846,1.016615,2.582625,2.7597,4.093125,3.02216,0.3324905882352941,0.3324905882352941,4.305835,3.60746,4.37392,2.63806,4.055425,1.62778,3.66194,0.675812,0.675812,4.849095,3.024885,2.614015,2.66195,3.91371,1.06411,0.9057384615384615,10.368245,1.3291875,4.136005,4.80033,5.01135,2.0637,0.413635652173913,0.9120175,2.8418566666666667,3.46646,3.33699,4.570885,1.48647,6.1411,3.59474,5.2399225000000005,4.50107,2.91909,3.0669466666666665,6.875351666666667,2.76811,4.761265,4.05323,4.1644266666666665,6.07665,0.5514113333333334,4.42436,3.5073666666666665,2.241143333333333,0.6843622222222222,4.07058,4.25659,2.84832,2.371275,2.22267,5.18035,2.66878,2.82642,0.9930479999999999,0.4576346153846154,3.88043,0.34509666666666666,0.7644781818181818,3.88964,3.40738,4.45447,2.69333,5.34285,4.286955,6.226845333333333,3.63018,3.214715,4.48633,1.5353725,5.2103225,1.815512,4.21981,2.591475,5.986036666666667,2.52442,0.913252,4.652145,6.8610425,6.6856800000000005,3.4395000000000002,0.7898466666666667,2.9516666666666667,4.7354,4.05644,4.51871,4.578705,4.352815,5.19785,3.511675,4.201515,1.7268833333333333,2.24152,1.4013133333333334,4.21953,9.576730000000001,3.110935,3.471385,6.0113,2.96724,4.452975,2.4931966666666665,3.054312,3.29338,2.952855,3.6517,3.223255,3.354405,5.0751,5.91205,4.1581,4.84305,4.961045,3.88795,2.69028,5.39875,8.110625,0.8965444444444444,4.338685,4.098065,5.1377,5.7103,4.996365,2.311995,8.411380000000001,2.383766666666667,3.31911,5.93925,3.639045,4.030815,2.2275,1.735215,2.983836666666667,2.525726666666667,1.9941066666666665,2.9782833333333336,4.52063,4.589205,4.020535,3.466155,4.8636333333333335,3.344585,3.167655,3.9888025000000003,5.83525,3.007475,5.630223999999999,4.12515,4.408175,3.591035,8.03622,4.006755,3.633735,4.44723,4.980055,3.52988,10.8452,1.3907383333333332,2.009725,4.129585,2.759933333333333,2.759933333333333,2.033175,8.218326666666666,0.9225622222222223,3.30546,0.88291,2.03559,4.467735,5.2293,4.49188,4.51475,2.88041,3.47005,4.05428,3.81032,4.427175,3.06159,2.72533,4.231225,5.066349166666667,3.97658,4.5745,1.7393779999999999,1.5958640000000002,2.6578733333333333,5.6201,2.3177625,1.7092533333333335,2.0168,4.415015,4.855565,2.94801,3.35405,0.5630888888888889,2.351305,7.67339,3.124855,1.55874,0.812845,1.2919366666666667,1.65744,2.08996,0.7657866666666666,2.001376666666667,4.380433,3.95785,4.665925,2.3675366666666666,2.00209,7.700825,2.92945,1.7297066666666667,1.7297066666666667,1.7297066666666667,6.546333333333333,2.2508,3.50647,2.480405,0.493228,1.123524,2.2572875,5.5375725,0.44411222222222224,3.705785,3.9131833333333335,5.76855,3.0127355555555555,0.44411222222222224,3.0127355555555555,1.04731875,1.275136,5.7323,4.319485,6.8012525,4.19555,4.875175,3.93069,4.11088,5.15205,5.40255,6.1538,3.6764,3.38717,5.31615,4.660845,4.09804,4.50622,4.715915,1.3756516666666665,2.7718833333333333,1.235375,2.2754575,3.252457777777778,1.5411744444444444,7.1298200000000005,5.410841666666666,2.720571666666667,4.545555,3.04319,4.960715,2.82072,4.307715,5.1635,9.448654166666666,5.5598,4.661355,2.436285,2.665785,2.09502,0.538965,2.189830222222222,6.0533,5.41945,5.21475,4.90925,0.57092,2.016815,1.3910575,4.323965,0.7477915384615385,6.705315000000001,2.01313,1.1264,1.1264,4.031926,2.10486,3.256936666666667,2.6047,4.610085,3.58772,3.58772,4.803515,6.1798633333333335,2.8433233333333336,2.47823,3.31704,4.784,1.940778,2.7353666666666663,5.612,5.28,5.117,4.389125,3.9420266666666666,4.903925,3.571935,3.2602666666666664,2.405225,4.137985,5.47355,3.27553,5.08165,5.6811,2.0751,2.598856666666667,6.205,6.98865,1.411672,2.7776,2.48102,2.6945433333333333,2.47993,2.6446,2.6281315,1.0885411111111112,1.868175,2.73575,2.3605125,2.495496666666667,2.495496666666667,3.097514,3.0221,2.2714384615384615,2.78325,2.370425,2.09446,1.6190593333333334,5.2669274999999995,15.344420666666666,2.930873333333333,3.4143333333333334,1.730246,1.730246,1.66083,1.66083,2.9404333333333335,3.7658666666666663,3.0033166666666666,1.9266875,1.9266875,3.9177666666666666,2.7175433333333334,1.1333533333333332,1.4821285714285715,3.136066666666667,2.8670666666666667,3.7574,2.729675238095238,3.380333333333333,3.220743333333333,0.711695,2.70365,3.740857333333333,7.214395,4.742715,5.42875,4.460365,3.29892,4.721505,4.72351,3.1658899999999996,4.298615,1.4160233333333334,3.3686000000000003,5.7448,5.3985,2.622715,1.26557,2.793675,2.5837933333333334,3.1940733333333333,1.6135083333333335,0.7105164285714285,3.195373333333333,5.070340833333333,4.70991,4.30922,4.85085,3.0960966666666665,2.134796666666667,3.2890475,2.7815600000000003,3.4827333333333335,3.1453399999999996,3.5412,2.811833333333333,2.26451,3.8794,3.031803333333333,5.1871,4.923055,5.143775,5.143775,3.31216,3.90587,3.679795,3.712375,2.76831,4.818605,3.289015,3.3554333333333335,6.35035,0.7757416666666667,5.34455,4.734015,2.50732,5.589525,3.438166666666667,1.8792833333333334,1.3583542857142858,2.2899233333333333,1.05814,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.3200107142857143,0.5529271428571428,0.5529271428571428,1.13597,0.8733466666666667,1.694930404040404,1.0142328571428572,1.0142328571428572,1.2010537373737373,0.4938766666666667,0.39633555555555555,1.1868025,1.4928775,2.5656333333333334,2.426485,6.729963333333334,3.0503033333333334,4.014765,3.1329833333333332,4.927390285714286,1.2590299999999999,4.67759,4.28245,5.11415,3.264625,1.4651,4.1198330769230775,3.60456,4.753575,4.586645,3.07549,5.22,4.535825,4.659875,1.213214,4.105615,4.61749,3.062285,2.3623566666666664,3.376535,2.416355,3.201225,4.74904,2.9668766666666664,4.81477,8.58586,3.1583,4.97678,4.582285,4.47359,2.736,4.626905,0.9927885714285714,4.105525,3.27323,2.03808,1.1472375,2.863705,1.3071166666666667,0.544026,3.628033333333333,4.15986,5.102203333333334,3.6979666666666664,2.532275,3.216025,4.942455,4.067699999999999,4.378125,2.7498,2.1294233333333334,3.842885,3.951435,4.26766,5.3153,4.647715,3.60163,4.848405,3.2561633333333333,4.4921,2.1487,4.777835,5.1469,3.1699,4.061875,2.46239,3.685985,5.72345,4.45292,5.44985,4.773655,5.05785,2.4889233333333336,5.1819,5.0041,4.991295,2.2669475,1.05391125,4.14128,4.855185,4.421885,5.1297,1.75142,4.171595,2.255325,5.25095,4.788645,4.709325,2.3685575,4.504955,4.886835,4.33939,2.7734133333333335,4.861025,4.93284,5.4463,4.03345,2.2669475,2.21272,3.223715,5.17115,4.067495,4.37727,3.57633,4.94868,2.338045,6.92681,5.53245,4.708365,5.384986493055555,5.1519575,5.3384,3.5315000000000003,2.4449033333333334,2.4449033333333334,4.16933,4.14957,4.420985,2.3241675,3.0348024999999996,1.0608125,2.9261133333333333,3.11321,2.6073233333333334,3.1364533333333333,4.39861,2.94732,5.3362,2.7366766666666664,4.589975,4.43487,2.020965,4.101675,1.67038,2.8740733333333335,4.0958,0.921842,5.43225,4.60699,6.3420325,4.6213,5.5871,1.3937485714285713,4.92023,6.62865,9.196195,3.3208066666666665,3.3000433333333334,1.960418,0.818966,3.938625,1.0196171428571428,4.852055,4.58852,5.6608,3.223345,3.92008,1.163347142857143,3.83682,3.54764,4.287495,4.26101,3.42456,3.151285,2.4016475,4.471015,4.829445,5.802,4.57266,3.693985,0.3484311111111111,0.3484311111111111,0.3484311111111111,0.3484311111111111,5.40835,3.05017,6.43705,3.2541466666666667,5.01075,4.613405,3.733365,2.25993,2.4695233333333335,1.44076,5.3319,2.9212933333333333,4.163415,3.804855,3.41271,1.677515,1.1819325,4.80146,2.35289,6.143068333333334,3.8613,5.27625,2.241075,1.5718516666666666,0.8521088888888889,3.240255,4.568075,3.62474,2.1486775,8.02904,4.778675,3.462275,2.27832,0.45523499999999995,2.99748,2.230125,2.03955,1.78968,2.79335,2.872875,2.346145,3.0736066666666666,2.67554,3.54741,4.66945,3.96695,4.228525,3.87099,5.891406666666667,0.6357726666666667,4.59164,5.68885,5.1773,4.76144,3.563466666666667,5.23085,4.69753,4.359935,5.662961666666666,5.53415,4.677455,4.74164,3.7130925,4.934205,3.24756,8.9088,5.14185,4.367375,4.96907,5.02375,5.73145,3.773345,1.1406444444444446,5.989583333333334,3.634025,5.07615,1.44306,4.45254,3.950905,7.150409999999999,4.761575,3.062605,1.9749733333333335,4.661415,2.0749199999999997,0.972185,4.488355,6.35945,1.8862433333333335,2.3262466666666666,2.80829,3.73865,3.51957,3.661285,5.333,1.7193833333333333,4.47148,4.0275615,3.306445,3.5887666666666664,3.607835,2.76736,2.579235,2.1300275,2.3976566666666668,2.66276,4.320575,0.5858933333333333,2.52554,4.227935,2.943075,3.645766666666667,4.58362,5.3264,4.32341,17.274086696969697,2.7207966666666668,4.072466666666666,1.51938,0.9097363636363636,0.9097363636363636,0.9097363636363636,0.9097363636363636,0.9097363636363636,5.1422,4.94875,5.0673,9.492177,2.57545,2.57545,4.76544,4.658131666666666,1.272865,2.2733866666666667,4.160955,2.4998,2.4375725,2.3096575,3.14071,3.8123413333333334,1.952515,3.604975,0.8193785714285714,3.021236666666667,3.0160533333333333,3.0477133333333337,1.4177666666666668,3.16928,2.4137166666666667,1.0001325,2.75217,2.69928,1.2992777777777778,2.5231133333333333,2.840953333333333,2.149626666666667,4.553779333333334,2.0008166666666667,3.0614666666666666,2.1584,2.6938866666666663,1.1488222222222222,2.9034766666666667,4.796558666666667,3.6616999999999997,1.08873375,3.21039,1.3729075,2.59072,2.4273366666666667,4.802791666666667,3.121843333333333,2.5298366666666667,4.672951333333334,2.59617,2.08709,2.9232333333333336,2.689156666666667,1.7032233333333335,2.8305166666666666,3.232006666666667,3.2062066666666666,2.69468,3.20975,2.66544,2.587125,3.7854905,3.7854905,2.8310766666666667,2.0351233333333334,1.8139533333333333,2.8411000000000004,5.340673333333333,3.124753333333333,1.94646,1.7575825,3.0937699999999997,4.46766,2.401806666666667,1.102812,2.6869786666666666,1.56451,3.31043,2.1534066666666667,2.475496666666667,2.0801433333333335,3.2556700000000003,1.2083439999999999,1.50936,1.54051,4.238,2.4841,4.04103,1.0847144444444445,4.03631,2.0425633333333333,2.357715,1.794612,1.6937,3.3411000000000004,23.992392012987015,7.714066666666666,2.5883266666666667,3.530430833333333,2.6514433333333334,9.895061333333334,2.9994633333333334,1.00688375,2.5269666666666666,2.3697933333333334,1.9692266666666667,2.97954,2.6073999999999997,2.469656666666667,0.9442109999999999,3.25371,2.496096666666667,2.906893333333333,3.0548133333333336,2.7027066666666664,2.065916666666667,2.15381,2.7426766666666667,2.551276666666667,2.08378,1.5872439999999999,5.4709216666666665,4.653205,2.372505,2.9679,2.194923333333333,2.370223333333333,8.1391125,1.92617,5.00745,2.370825,2.006855,7.55581,3.032306666666667,2.8566133333333332,2.576675,1.873828,1.5376453846153848,3.2724533333333334,3.3342333333333336,4.11836,1.334445,3.6886666666666668,1.515935,1.515935,4.40236,4.80516,2.9072671428571426,2.9072671428571426,6.30472,3.405665,0.43620099999999995,12.17148170940171,1.1809100000000001,0.9410499999999999,3.9801125,1.4628483760683761,2.0250275,6.364363333333333,3.798495,0.7397290909090909,2.10229,5.122964606060606,2.511112,4.39609,1.35033,5.43565,5.2764,5.0926,3.41293875,1.9988499999999998,2.5330833333333334,2.5254066666666666,2.7371833333333337,2.28674,5.2285900000000005,4.81437,4.48002,1.845385,4.81965,4.423985,3.1686633333333334,2.21412,5.192,2.615533333333333,9.044016666666668,6.95125,1.996105,2.08863,1.7253219999999998,4.621066666666667,4.621066666666667,3.1379900000000003,3.0812633333333337,3.4737166666666663,4.964025,9.715285000000002,4.555835,2.46972,5.45795,4.638435,5.481,2.03082,0.8473325,1.3174716666666666,4.575255,4.815545,3.743,3.0116566666666666,3.8945666666666665,2.18566,4.43157,4.773805,3.30007,5.4728,3.3363333333333336,3.864268666666667,3.3582,3.366733333333333,3.5496,6.2616,2.957025,5.3633,5.11905,3.415965,3.35545,3.35545,6.142386666666667,12.1655375,3.6904,6.2357275,7.468496666666667,3.472655,2.497196666666667,3.837475,1.3291233333333332,3.86462,2.3388675,2.9721333333333333,3.1218333333333335,3.4679333333333333,2.1738,2.3884766666666666,2.8441833333333335,2.4389600000000002,3.1709366666666665,3.042536666666667,4.190665,2.4570633333333336,2.9225333333333334,3.969765,2.9389266666666667,2.58452,1.18138875,2.04583,2.9346599999999996,2.54403,2.6883466666666664,2.3420733333333335,3.6253333333333333,2.37228,2.5045566666666668,2.7935533333333336,3.0919833333333333,2.8332466666666662,3.088926666666667,2.75426,3.3052733333333335,2.871513333333333,3.2880659999999997,2.6559166666666667,2.489056666666667,2.4238766666666667,2.8972366666666667,2.7491633333333336,3.4186666666666667,3.3113766666666664,2.44002,2.0103,2.0103,0.6682316666666667,1.58976,4.5453,3.10166,2.62733,2.1738,3.3152000000000004,1.3086642857142858,2.8702400000000003,0.585202,3.5414,3.144883333333333,3.27912,2.9852266666666663,2.795776666666667,2.82302,2.9861299999999997,2.71551,3.5374,4.82664,1.5881180000000001,2.8847199999999997,2.6184,1.7851299999999999,2.0696233333333334,2.883836666666667,2.89416,1.69477,2.536513333333333,2.5309133333333333,2.7996366666666668,2.68501,2.9906633333333335,2.99564,3.19727,1.3018925,2.8150766666666667,2.256186666666667,3.6796,3.9875333333333334,2.2671,2.0603366666666667,3.4832,2.7408933333333336,3.3739000000000003,2.5442066666666667,2.6569233333333333,5.3995999999999995,3.4403,2.0930466666666665,1.480884,3.3495333333333335,6.39663,3.1290600000000004,3.624366666666667,2.995086666666667,3.12982,4.523425333333334,1.5373620000000001,1.164488888888889,2.3878066666666666,1.8179983333333334,4.74979,3.1430633333333335,3.3396333333333335,3.10929,3.3387333333333333,2.5195366666666668,3.6473,2.5521,1.638996,3.0048366666666664,3.478315,3.57046,3.49469,3.83452,1.7512725,3.021475,3.42189,3.653035,2.5456166666666666,3.8619333333333334,4.042433333333333,3.8181333333333334,1.59418,5.469094,3.24872125,1.5341333333333333,3.64511,3.499065,2.849295,4.20606,1.882508,1.882508,3.2642933333333333,2.89472,2.86229,5.2192,4.28712,4.435536,1.212386,3.201256666666667,2.786043333333333,4.3713774999999995,3.1997,5.075693333333334,2.679816666666667,2.43869,2.62712,3.512675,3.288565,1.610288,3.0435199999999996,2.999145,2.458435,4.589005,1.3613566666666665,2.93343,4.120175,2.61261,3.454245,3.88009,1.57241,1.4981033333333331,2.4672,1.1787716666666668,2.1872430952380952,1.97498,0.4681985714285714,4.22159,2.478095,4.992075,4.513225,2.855955,4.653214166666666,3.537433333333333,3.1256799999999996,3.6143666666666667,2.71599,3.4815,2.8534466666666667,3.3496333333333332,2.4501233333333334,0.7013046153846154,2.301806666666667,0.6432214285714286,1.8674033333333335,2.35372,3.1512533333333335,3.2634966666666667,1.5346633333333333,1.440065,4.27297,4.722155,3.54437,3.9930149999999998,3.00514,2.30142,4.099185,8.00915111111111,3.826575,5.71697,1.735615,3.81154,2.1252725,4.174325,3.748125,2.294395,4.140935,3.499175,4.126245,4.491995,2.16389,4.32441,6.5362225,5.17495,3.41337,3.406205,1.70907,2.1135775,3.96883,3.370745,3.05423,3.848175,3.773395,3.87737,1.640895,4.03986,3.433265,1.89939,4.4000375,1.039575,3.546515,1.697805,4.037945,4.716236666666667,3.71791,3.04188,3.63634,3.47484,2.0445625,2.26032,3.947366666666667,2.55069,5.9951725,4.352165,4.48719,2.613485,2.72573,4.84631,4.497935,2.467654,2.467654,6.090502333333333,4.1076515,2.8517775,2.98157,2.1543733333333335,2.85823,3.504985,3.7734950000000005,2.8720765,3.453125,0.9715820000000001,3.91937,3.23709,4.2286,2.63698,1.616585,1.588675,3.35401,6.048045,5.6645675,3.55099,1.6556325,4.25581,3.842375,0.8788416666666666,3.16406,1.413546,5.2148449999999995,1.52829,4.146915,2.1758175,1.5346633333333333,3.374235,2.969095,4.500895,6.7972649999999994,4.39556,4.918228333333333,2.407605,3.03418,4.39184,4.081415,4.444525,4.437995,1.152755,1.6907135000000002,1.0977775,2.61659,2.008215,4.78366,1.0977775,4.463575,2.35301,1.6932675,1.6932675,1.89939,4.19981,4.51791,4.054055,1.621798,1.621798,0.9558516666666667,3.224125,2.0865275,6.0108875,4.495675,3.908305,3.020773333333333,0.9984185714285714,3.433655,3.122995,4.21812,3.74227,4.2486275,4.2486275,3.38526,4.02159,1.9352725,3.027795,0.9892877777777778,2.11657,3.804075,2.5640133333333335,3.4727333333333332,3.4727333333333332,2.98073,4.4896,4.73379,3.481825,3.7462,3.96227,2.667666666666667,4.663234166666667,3.021805,4.22385,8.50715,5.1561,2.60361,3.207065,3.00935,4.71125,3.2551360000000003,7.675475,4.869286,4.882345,3.615085,3.86506,3.860435,4.604895,4.70712,2.10527,4.46913,6.961206666666667,2.725995,2.19825,3.207635,3.276905,3.944655,5.8585,2.1112266666666666,2.4936666666666665,3.21554,3.41255,3.27335,7.818102666666666,1.6753025,4.902826666666667,4.902826666666667,3.602205,4.271645,3.196575,2.7715300000000003,5.62662,4.681641,2.205816,3.923725,4.325785,3.4330675,3.19328,3.20801,6.597636666666666,3.30786,5.35915,3.35452,4.86724,4.16456,3.97252,2.89472,2.2062399999999998,2.897015,3.985165,2.99811,3.4653283333333333,2.85714,6.44072,2.746095,1.9137225,3.3926991666666666,2.3525199999999997,4.269965,2.68087,0.8788416666666666,3.49004,3.972795,3.85093,5.734235,3.34355,3.2133,2.960013333333333,2.960013333333333,3.8907641666666666,4.510295,3.95767,2.0998475,6.2798925,2.073705,4.541695,3.726535,7.94559,2.7264,1.2610933333333334,3.25014,4.445465,0.704765,3.99629,3.570225,3.054075,3.02076,4.30774,2.09896,2.53571,8.96562,3.39515,3.28254,1.52829,3.858855,2.81339,2.59737875,4.308725,5.40883,1.61922,1.2814733333333332,1.178915,4.155935,4.509675,3.75883,3.53713,3.53713,1.640895,2.300825,3.3482411111111112,0.9517211111111111,3.26086,1.1629075,1.7512725,3.55574,3.547155,3.01541,2.730185,2.8324391666666666,4.61269,4.101885,3.180525,2.970935,2.867235,4.33628,6.77151,4.051455,0.937705,2.571498,8.56325,4.56459,4.11006,1.107705,4.992035,1.4187333333333332,3.983345,3.983345,3.965525,9.421595,0.9568944444444445,4.74147,4.59329,2.52795,4.406289166666666,3.904365,2.1628325,9.884249666666667,1.904325,2.440183333333333,3.598785,1.73879,4.232114666666666,3.546975,3.670985,3.8023873333333333,3.17165,3.2379,1.2243333333333333,7.01364,4.27647,4.015295,4.147935,2.058495,3.04188,4.368479166666667,3.89507,0.6743384615384616,4.142925,4.387315,4.911915,2.1145425,1.516334,4.33846,4.10283,9.40953,0.7240115384615385,0.7684975,0.7684975,1.9138533333333332,1.2878166666666666,1.468026,1.7370766666666666,4.64742,1.3167133333333334,0.8156057142857144,4.0661425,3.40935,1.47053,3.414025,4.946805,4.053195,0.8146979999999999,1.992755,10.11987,3.2191983333333334,3.707615,3.347635,1.7723475,2.5091533333333333,2.60312,4.59223,4.40875,3.81885,0.956782857142857,1.501042,0.9207879999999999,4.491345,4.293015,4.04283,0.9517211111111111,1.737826,4.05853,2.4568978571428572,5.201509166666666,1.1103925,4.67634,0.5667283333333334,0.5667283333333334,0.5667283333333334,9.874600000000001,3.977005,1.1629075,3.90555,4.735185,2.843165,3.441745,5.2458350000000005,3.14213,2.090876111111111,2.2325566666666665,0.8146979999999999,1.6935396666666667,0.5883111111111111,0.7862933333333334,1.53604,4.062335,3.60336,2.108165,7.421053333333333,4.7220375,0.66684,6.07895,5.293436666666667,3.58245,4.510425,7.287197,3.9580289285714283,4.7220375,4.411187,2.5379733333333334,4.251765,3.799895,7.548235,3.48142,0.45523499999999995,1.53141,4.074555,1.7289359999999998,1.2814733333333332,3.937995,2.38677,1.66513,3.28444,1.6579339999999998,4.39362,4.26197,4.04497,4.76901,6.67578,2.56894,3.89927,1.413546,2.412705,3.78622,3.31922,2.205816,4.11448,2.504055,5.186,2.83858,2.32364,3.3886275,1.757518,3.71496,0.9517211111111111,2.180347,1.178915,1.47036,3.615785,1.6753025,1.53604,2.1816025,3.36662,8.16881,0.956782857142857,1.107705,1.451702,3.61415,3.832245,1.451702,3.84566,2.412705,0.704765,0.9517211111111111,1.9138533333333332,1.413546,0.4681985714285714,1.610034,4.319146,2.52795,1.3847333333333334,3.355715,1.59418,1.904325,2.86394,2.2325566666666665,5.0335,2.86394,0.8788416666666666,2.810838,2.30863,0.08414,0.08414,0.08414,0.08414,0.08414,3.30456,2.749093333333333,2.843593333333333,3.05745,4.65604,4.266445,1.794612,3.669285,3.54681,2.157055,4.88123,2.657825,2.51046,2.35433,2.710315,4.63812,8.33278,2.3956825,2.04577,3.0796907142857144,0.9833657142857143,1.3435416666666666,2.236076666666667,2.18914,1.5243875,2.676486666666667,2.2383466666666667,2.646576666666667,2.7436000000000003,2.6142233333333333,3.733035,3.813075,2.64277,1.382696,3.802125,3.71512,1.56332,1.342408,1.342408,1.342408,3.6246,2.9136900000000003,1.0518033333333332,2.3012533333333334,1.3476985714285714,4.12581,1.7212833333333333,6.843376666666666,3.43741,2.737486666666667,3.12475,3.12475,5.2585766666666665,3.075285,4.86594,4.99302,2.2137775,3.2080633333333335 +GSM1946765,1.0,1.96234,1.96234,1.5175599999999998,5.3527,5.47575,2.7387888157894738,1.68821,8.430304289215686,4.9983,3.0273866666666667,2.725165,2.110435,4.2073,4.481535,1.9608940000000001,1.43835,5.1943,2.4100266666666665,2.45234,5.66265,5.455121666666667,3.95401,2.409155,1.828334,4.84439,4.96918,4.110635,0.7227866666666666,1.6280758333333334,2.0688016666666664,2.29727,2.552575,1.2668557142857144,0.7018783333333333,3.2900807142857147,1.5289,2.0240675,1.142585,2.0511875,1.045935,1.05116,1.0945880000000001,1.6447980000000002,0.87774,0.916976,0.771352,1.2738671428571429,1.74151,1.8019120000000002,1.50408,2.2035,2.01534,18.246122583333335,0.3672773333333333,0.79637,1.1213,1.6266200000000002,1.861394,1.9627120000000002,1.0478828571428571,1.0478828571428571,1.0478828571428571,1.1445633333333334,1.093342,4.634555,1.1844525,2.1823075,1.966,2.669225,1.0804399999999998,2.4168275,2.17641,2.126945,1.4202075,1.87145,1.5653275,1.6383475,2.4674066666666667,4.320695,5.0079,5.08855,1.52856,4.50313,4.562656666666667,4.02352,3.996475,1.13733375,7.2781,0.60093,0.60093,2.18284,1.1995157142857145,16.776600000000002,5.1323,4.677955,4.82556,3.87312,4.126175,5.21665,0.524675,2.303244583333333,1.6985125,2.3042275,4.47796,4.676535,1.3792625,2.709903333333333,2.5432133333333335,2.28306,3.000946666666667,3.158765,5.1583,2.8118464999999997,4.72506,3.217423333333333,0.72806,1.48477,2.201275,4.483755,3.394265,0.58121125,3.650055,3.98293,0.81719375,4.33839,1.7837459740259738,2.136485,2.3579225,2.009135,4.094795,5.23455,3.32762,2.774853333333333,3.154446666666667,2.85667,4.05411,3.132433333333333,5.76525,3.449225,4.424535,3.585615,2.625975,3.536755,2.5562,6.910313333333334,3.74638,3.47672,3.84722,3.3126,4.807405,0.7458977777777778,9.351244523809523,3.736565,2.2339033333333336,1.8067449999999998,3.554766666666667,2.26864,4.485505,5.87685,2.08622,4.661333333333333,2.76377,5.2594,2.08622,2.2506733333333333,4.43459,5.142200833333334,4.81269,8.45537,3.26732,4.396075,3.07045,5.55255,5.04935,1.6577133333333334,8.10611,4.515045,4.29876,4.313245,3.568375,3.548485,2.15001,6.11914,2.31082,3.63235,4.08571,5.29515,4.83106,3.736555,1.6974666666666665,2.700045,2.91937,2.0089725,2.0089725,5.93410019047619,3.01527,1.93847,5.18275,4.610675,2.738565,1.4753516666666666,1.116211111111111,6.8324,2.69849,6.8578,3.928925,5.13845,3.79922,3.24133,3.98709,3.59324,3.74967,4.161705,5.8968,2.743745,3.552665,9.08863,4.52012,3.3947333333333334,3.0971966666666666,2.7353233333333336,3.8950333333333336,4.613439166666667,1.9086125,2.7911633333333334,2.4640933333333335,1.7814,1.5875533333333334,2.619543333333333,1.8128375,2.307725,2.9829933333333334,2.7264199999999996,2.4004666666666665,2.9334466666666668,4.562656666666667,3.52639,3.39901,3.465805,4.78444,1.3662383333333334,1.961505,2.886991714285714,2.16158,2.5342066666666665,2.9842666666666666,3.404,2.02938,1.34454,2.7316066666666665,0.657212,1.6145433333333334,0.48880666666666667,0.48880666666666667,1.5823,3.939,2.4828933333333336,1.3430866666666665,1.48691,0.44835846153846154,2.6672266666666666,0.657212,1.2464166666666667,0.22183000000000003,1.4323066666666666,2.02743,3.784966666666667,2.6706566666666665,2.5699366666666665,2.5108566666666667,2.4051833333333335,2.405746666666667,2.446356666666667,2.3485666666666667,2.168066666666667,2.7189266666666665,1.89009,2.630075,4.24863,0.7379116666666666,1.8372133333333334,2.78504,2.2412466666666666,3.4748566666666667,1.488836,2.5233066666666666,2.6395166666666667,4.233256666666667,1.9786333333333335,6.535425238095238,1.6424285714285713,2.52996,2.0603625,2.05069,3.8110999999999997,2.025565,1.892035,4.870225,2.703656666666667,1.99999,3.94956,4.337945,4.18623,3.8086,2.330345,3.23106,5.3296833333333336,3.992625,3.837655,4.228845,4.13848,2.993785,4.443385,3.41432,0.8884925,4.672885,1.2713666666666665,5.0937,3.71728,6.3054369999999995,3.901055,4.115445,0.96419125,2.17618,3.52404,4.00553,0.9824742857142857,1.3429500854700853,2.2328838095238095,3.2429251428571426,5.0891475,5.83474,2.1575825,4.100305,5.72355,0.31309928571428575,3.72021,2.31701,0.9954025,3.976485,1.98423,13.21445,1.130665,1.7330825,3.116546666666667,2.513735,2.2399955263157896,4.924430526315789,0.4521305263157894,1.63129,3.1044699999999996,1.0197975,3.646266666666667,0.90766,5.35825,3.764375,2.115883333333333,6.00575,5.47975,2.1334775,1.1653042857142857,4.39823,5.2234,4.35836,0.9324272727272728,8.250783333333334,2.8896833333333336,4.63614,2.6618,2.53201,4.541505,2.4935666666666667,3.0312366666666666,2.2353433333333332,2.4642933333333334,2.901865,3.0425466666666665,0.333534375,3.92809,3.7054,3.809495,3.82188,4.507945,6.22309,4.056155,1.6514775,5.8529,4.89064,4.027585,4.836895,1.3653266666666666,2.7825933333333333,3.6834000000000002,2.6400099999999997,17.081015,4.35997,3.896745,3.72302,4.8652,2.46142,5.224034583333333,1.9826175,0.7661766666666667,2.570775,3.574705,4.342355,3.649535,6.566610000000001,3.0508133333333336,2.158005,2.154245,3.4222333333333332,4.755815,2.3380425,0.37804436011904763,2.3138301086956523,1.914525,1.13105375,0.4682206644668737,0.5583969688146998,0.37804436011904763,0.37804436011904763,0.37804436011904763,1.07477,1.3821975,0.87976,1.45272,4.5753375,0.2227608823529412,11.314860817099566,3.242156666666667,2.8955033333333335,4.58272,4.13485,4.043055,2.054895,5.19545,4.190479,4.697295,4.425295,0.7376823076923077,3.08624,4.003066153846153,0.5035278571428571,3.42432,2.9494233333333333,4.58921,0.7953154545454545,1.76929,4.259705,3.39252,1.884205,1.76697,1.6496933333333335,3.1372133333333334,3.90734,3.01446,2.886566666666667,5.5001,5.6502,4.6921,3.0688,3.293788,5.565366666666667,3.0408666666666666,5.21055,0.39924809523809524,3.21604,4.182873333333333,1.9634733333333332,2.61288,2.770496666666667,5.668943333333333,0.6402058333333334,1.95606,4.835795,3.974915,1.0273428571428571,4.335165,4.861225,5.0478,3.3549333333333333,4.49969,3.443425,4.272975,1.2538466666666668,3.263455,2.7329600000000003,4.809765,3.71115,4.699675,5.34705,4.488745,2.67146,4.75502,2.2294199999999997,2.887315,3.5581666666666667,2.6475233333333335,2.58608,2.3160766666666666,1.755604,1.6044566666666666,1.9387966666666667,0.7985185714285714,1.5923166666666668,2.142846666666667,2.0641666666666665,3.214536666666667,3.4539666666666666,2.8230766666666667,0.9608344444444445,5.41555,3.3717,5.623606666666666,2.8585066666666665,3.2093233333333333,3.6483666666666665,1.8328,1.8328,2.8259961038961037,2.8259961038961037,4.240986818181819,0.47133,1.7599433333333332,2.45616,3.5016,2.195708571428572,2.195708571428572,2.195708571428572,7.567139107142856,4.508919047619048,0.9500545454545454,4.394125,5.007109166666666,2.03016,4.741755,3.2684,2.302865,5.65165,3.0127633333333335,3.4974333333333334,1.4754875,1.8200399999999999,2.6730733333333334,2.7495,2.6927466666666664,5.2015,4.096633333333333,3.5731,4.75528,1.8637833333333333,3.1073566666666665,2.959986666666667,1.0276555555555555,2.2139,4.099627333333333,7.9281825,1.4157825,2.99936,4.90443,2.0496,1.97013,1.97013,1.03120125,5.4783,7.81495,4.05622,6.69548,4.486225,1.8507,4.08399,3.679605,5.60335,4.586521666666667,0.3761715789473684,2.973925,2.594445,4.09164,3.935445,1.8347460000000002,1.9313375,2.610675,4.39361,4.025425,3.179725,2.50771,1.666386,6.76783,4.39346,4.15831,3.56336,4.1484,4.61998,4.954465,3.66049,3.5548075,1.930325,1.2506685714285715,2.626345,3.856945,4.59899,5.4851325,5.5597449999999995,1.963285,1.9599233333333332,2.59008,2.7379433333333334,2.9242866666666667,0.6089214285714286,2.167405,3.52329,1.1199875,5.3344,3.14518,6.1773475,1.2919969696969698,1.2919969696969698,4.282195,3.685865,3.80804,5.33055,2.7124966666666666,2.21659,3.987885,3.386295,2.07743,3.3752999999999997,2.6945200000000002,3.984365,3.7249625,4.03465,4.714575,0.9692322222222222,2.50102,4.50016,4.089135,3.205665,2.44666,1.595955,0.72634,0.72634,0.72634,0.72634,1.4882633333333333,4.28482,4.28482,1.5107466666666667,7.88574,4.022255,4.617715,3.2136833333333334,2.726225,4.82131,3.957835,4.84201,5.72375,1.6905725,4.308195,4.180455,2.7238,4.663405,3.36101,2.579185,4.50927,1.90305,4.781875,1.7073,3.5341429166666667,2.98746,1.7666675,1.1671933333333333,3.030345,4.54718,1.391216,0.83943,3.506955,1.2294975,4.894693999999999,4.57899,1.3858228571428572,3.58703,0.7524055555555555,2.566943333333333,2.69688,2.3927433333333332,2.710035,4.171915,3.0749825,4.61746,5.0697,4.50504,4.48081,2.0364175,1.2632171428571428,4.082985,5.21085,1.2942425,1.2942425,4.01037,0.23344866666666667,2.0357533333333335,0.23344866666666667,0.23344866666666667,0.23344866666666667,0.23344866666666667,5.1334,2.6804633333333334,3.28281,3.31887,3.1042533333333338,4.488145,3.07687,0.94296,0.94296,0.8222,0.8222,3.68107,2.29072,3.793025,1.6355342857142858,1.6355342857142858,5.01003,0.55645,2.2023175,7.834813333333333,5.3219,3.145625,3.729225,1.010045,2.271285,1.952205,5.02485,4.429615,4.261415,3.79199,1.2873999999999999,2.667,2.1250725,7.35303,1.80876,4.281665,4.79369,2.62311,3.870815,6.24326,7.28975,4.09651,5.1387,4.015,2.1647575,3.53439,2.25626,2.30785,1.751845,3.82561,3.383325,5.901935,6.73369,4.611835,1.08121,1.723805,4.35348,4.35375,2.14815,4.62559,4.18959,4.5398000000000005,1.7294266666666667,3.6998333333333338,1.5533266666666667,6.474213333333333,2.736753333333333,2.38978,2.18064,2.383345,3.32827,3.2779666666666665,3.5109999999999997,3.2126633333333334,3.3510666666666666,1.5587339999999998,4.80905,3.11056,3.464755,0.370089,2.87109,4.095865,2.633475,5.5808,4.83179,4.81192,6.666987000000001,5.1368,2.1849666666666665,4.251735,4.95064,1.5951183333333334,5.2322,5.28705,5.01625,4.651055,3.237755,5.40355,5.1755,4.5406,5.558906666666667,7.8411475,3.89649,1.2013283333333333,1.5523433333333332,2.7197,1.787722,4.578705,4.089055,5.61306,2.543203333333333,2.709303333333333,2.710323333333333,2.46206,2.5568033333333333,1.0635744444444444,0.5062423529411765,3.92209,3.992945,3.548166666666667,4.05027,3.015395,3.2313899999999998,5.874916666666667,3.5015,0.6075411764705883,3.129905,5.6174,1.980065,1.5815860000000002,3.78032,4.145435,2.4055866666666668,4.0584,4.90384,2.65078,2.28367,2.25739,2.4549499999999997,2.67311,4.10245,5.057805,7.56319875,2.1178999999999997,5.2313,3.7425216666666667,5.978968333333333,3.037686666666667,3.179625,2.26748,1.9769466666666666,1.3085625,1.3085625,2.58942,2.3769466666666665,2.6788333333333334,3.92551,1.674042,2.2611,1.79334,0.6403,4.278295,0.641405,0.97668875,3.467685,4.45942,4.43677,1.67134,5.1438,3.1223566666666667,0.8626785714285715,4.47639,3.9760704761904764,3.5678666666666667,2.480925,5.04515,0.2873379310344828,2.3866315,3.57257,1.4461275,3.644855,4.80044,2.38088,1.3087733333333333,3.7501,3.7085,2.83394,2.83394,3.458865,4.43398,4.80181,4.925471666666667,5.0811,1.0004844444444445,2.59308,2.634576666666667,4.489345,5.18265,4.669505,4.73579,4.4148000000000005,3.972433333333333,3.8260666666666663,3.588533333333333,3.8491999999999997,3.1924799999999998,3.1445133333333337,0.6745814285714287,2.4537,2.4588725,4.566035,3.0339899999999997,3.2156599999999997,0.7472633333333333,2.449035,3.5831685,4.55452,5.61775,4.060115,2.2775025,2.2775025,0.843545,3.58027,4.48246,3.956065,5.3598292857142855,2.97966,5.17175,0.5787518181818182,3.94177,4.282105,5.1254,3.569411666666667,0.9096185714285714,3.69182,4.10659,5.14495,3.74382,5.0589,2.818765,4.18024,1.702795,1.0061671428571428,2.71331,4.91032,3.70967,3.0969,1.59472,4.011665,2.525425,2.755375,2.745009555555556,2.96016,4.47373,2.7121933333333335,1.8058800000000002,3.4779,1.4567947619047619,2.711933333333333,2.5499566666666666,2.25813,2.91446,3.0616333333333334,2.5657099999999997,3.1686333333333336,4.285925,2.79517,3.540367,2.2020433333333336,1.9056,4.181526666666667,2.7626000000000004,2.42891,3.540367,2.3845199999999998,0.814789090909091,2.4294325,0.9983244444444446,2.2680225,1.5882525,0.8827290909090909,1.6142475,2.034525,2.7084177499999997,2.669525,4.80782,1.44458,3.65958,3.239046666666667,1.59555,2.3481533333333333,2.99757,1.4620466666666667,2.796483333333333,3.0187066666666666,2.829779090909091,2.27965,1.834384,3.6480333333333337,2.5292566666666665,2.7166883333333334,3.2733633333333336,2.7808533333333334,3.848266666666667,2.1959433333333336,4.2793,3.6747666666666667,3.7142999999999997,3.1634266666666666,3.5827666666666667,3.5742333333333334,2.0148966666666666,8.747005,4.57592,4.53434,3.34513,2.815205,1.994205,3.906505,1.772786,4.227555,5.02875,1.4662739999999999,2.520236666666667,1.3110616666666666,2.8721666666666668,1.7224766666666669,2.4707433333333335,4.897573333333334,3.4171333333333336,3.592635,4.77048,0.8032925,1.523458,1.00783,4.00798,10.935341666666666,3.969666666666667,6.64215,1.9675525,5.3141,4.093685,2.4568975,5.17415,0.27724941176470586,0.8226685714285714,4.675715,4.71137,6.9491025,2.1619475,4.431005,5.0154,4.517565,4.97205,4.13097,4.491565,2.887625,5.5318233333333335,4.43089,3.55218,3.201965,2.0186966666666666,1.8629966666666666,1.3749342916666667,2.2944366666666665,4.079605,5.2061,1.53352,8.94444,1.7684333333333333,2.7441675,1.066532,1.066532,7.51346,2.97524,2.52335,1.942895,2.7372566666666667,2.130666666666667,1.1110900000000001,3.0218533333333335,2.761646666666667,0.6744071428571429,1.74645,3.529588,3.529588,1.1728033333333332,2.4955000000000003,2.26456,2.8832216666666666,1.3143525,1.7361033333333333,4.778728666666667,2.758093333333333,2.6787,1.3038625,1.3038625,4.440525,5.4938,4.924125,4.06128,3.82967,5.84386,2.783735,3.2232133333333333,3.7001666666666666,3.904475,1.1411633333333333,3.4873,2.903975,4.013825,2.102726666666667,4.7444,3.432775,4.35494,3.51406,5.578127,1.0470711111111113,2.0683175,1.746185,3.50583,4.5236350000000005,3.58469,3.807925,4.324975,3.53542,1.6835,4.52847,3.95253,3.61539,2.4150133333333335,0.82634,3.255625,4.5986,5.0161,1.1934799999999999,3.1924499999999996,2.9623899999999996,1.9740666666666666,1.777949411764706,1.777949411764706,1.17722,2.61647,1.1705457142857143,1.370716,4.528945,4.93783,0.519204761904762,3.89437,3.5606000000000004,4.00493,5.6275,0.42302249999999997,9.365745,5.71235,3.987035,3.83199,4.89853,5.714702857142857,5.08765,6.3495325000000005,0.7405536363636362,2.620366666666667,5.5786,2.6509300000000002,1.962585,2.05304,4.97026,5.17539,2.490915892857143,2.7712766666666666,3.5197333333333334,1.4940625,4.852035,9.849245,8.657204166666666,3.942466666666667,4.80466,3.0446091666666666,2.93395,3.89665,1.665854,2.8923966666666665,3.67254,4.128505,4.264955,4.91737,7.709633333333333,2.8428233333333335,5.0963,4.9029,4.9045,5.01015,4.84824,4.208825,6.4948,3.39325,3.01401,2.838185,5.977,3.71999,6.17515,2.1021,3.3048266666666666,3.34461,6.2548,4.188295,5.3943,1.4525080000000001,0.88435375,2.6584,0.6391633333333334,3.571895,3.60316,3.53314,2.84855,2.1953,3.069825,2.4784825,3.417134,1.8342680000000002,2.94619,3.0012,2.3183725,2.704425,3.648536,1.2563016666666666,2.8331741666666668,5.04185,3.819266666666667,1.155955,2.82877,3.6766024999999996,3.727838,1.5777,5.5545,5.5564,2.14038,2.7937933333333334,29.86667359982501,3.7334333333333336,1.7179,3.9392666666666667,1.6593433333333334,2.63368,2.9944900000000003,3.4108666666666667,1.992205,2.693825,2.3130825,3.626383,2.6522799999999997,2.385885,1.5029875,2.22784,2.7013,0.3983768181818182,1.1953575,2.6934833333333335,1.74527,3.427165,1.5777,2.0122566666666666,25.872270722222222,5.34475,4.61159,3.517505,2.59711,2.4309025,2.5415666666666668,2.2324125,3.68215,6.143751999999999,5.5517,1.597642,1.98677,3.112915,2.7434683333333334,3.935163333333333,5.64895,5.0421,4.706135,0.17382744680851064,5.0673,4.985766666666667,3.76942,9.28658,1.0166825,1.0166825,2.927153333333333,3.51097,5.93615,2.1613811111111114,1.0614444444444446,5.1313,1.8872525,4.38811,3.88605,3.433545,4.23299,3.87334,4.83157,3.228615,0.7161744444444444,3.155785,2.1794183333333335,4.401235,7.65278,4.36195,1.7751433333333333,1.7751433333333333,6.5665,4.91279,4.138235,5.9208,2.601663333333333,5.722481666666667,1.5491766666666666,1.5968066666666667,2.8682266666666667,2.1774066666666667,3.02324,2.716086666666667,3.603475,4.295785,4.572035,5.4099,2.28783,2.27833,1.7729575,2.709825,2.210345,1.9964625,1.9029275,4.969131666666667,1.86936,3.6064228571428574,2.47255,3.544033333333333,2.791093333333333,1.9845366666666668,1.595557142857143,1.03866,2.9900300000000004,3.9123666666666668,0.765301,4.94149,1.8517525,5.765964166666667,1.957775,1.6045025,1.48786,1.5597133333333335,5.934105555555556,1.9087779999999999,3.1145533333333333,3.3531999999999997,1.11266,1.8809725,4.946488,3.0140100000000003,2.327436666666667,3.5181,3.3934333333333337,2.8380833333333335,1.3167930357142859,0.2650558333333333,0.2650558333333333,0.2650558333333333,0.2650558333333333,0.2650558333333333,4.16185,2.79972,2.2950225,3.4062666666666668,1.3216683333333334,2.5957933333333334,3.291983333333333,2.9298233333333332,3.640345,3.01876,1.8568566666666666,3.1298399999999997,3.3118933333333334,2.2302525,1.936695,3.550255,2.8903533333333336,2.7221166666666665,5.0447,2.7232566666666664,2.7185133333333336,2.54967,11.109571666666668,5.02635,4.96232,5.09275,4.050375,2.8253166666666663,4.952185,3.06378,3.40522,5.793123333333334,4.15705,3.208745,2.2802825,3.57884,5.113818,3.56065,18.947874369047618,1.24470875,4.336655,0.8401377777777778,1.1365475,2.971175,4.73712,3.685015,3.951915,1.3905466666666666,2.6019,4.180115,3.3592333333333335,4.711095,3.389785,2.686733333333333,0.6342233333333334,2.961176666666667,4.875395,2.280885,2.46855,2.22573,19.899739166666667,1.638962,1.29005,2.434563333333333,0.30872307692307693,1.83212,2.732533333333333,2.08256,2.8137899999999996,2.6178,7.4267925,2.076675,2.5525,2.2628775,2.2440325,1.5524183333333335,3.504466666666667,3.319895,2.979725,3.03154,1.9112775,2.4712645833333333,3.3286244444444444,4.40354,0.4228016666666667,2.6006199999999997,2.7025,3.164945,2.2346025,3.485643,3.38482,1.6164233333333333,2.261226666666667,2.3152133333333333,1.52105,2.381463333333333,3.66855,3.222715,0.7582666666666666,3.36613,5.2999,4.52271,2.28547,2.28547,3.316053333333333,4.96052,3.41222,3.37304,2.34845,0.9663,3.94579,3.57841,5.7049,3.66044,2.29444,2.29444,1.3506925,4.11177,4.99363,4.05777,4.101295,3.3229966666666666,2.5498566666666664,4.350505,3.664155,3.9446,3.022373333333333,2.5873733333333333,4.64536,3.3540666666666668,2.5508366666666666,1.7995400000000001,3.562175,2.69695,1.6106366666666665,3.720735,4.33945,4.65679,3.1706766666666666,4.618245,4.26548,6.679653999999999,3.846345,2.23054,4.906905,2.813655,7.343495,2.7617766666666665,1.4002816666666666,4.34648,2.9431700000000003,4.63448,0.6289914285714285,0.8487833333333333,3.49479,3.692305,2.201553939393939,4.326775,2.717725,2.7211,10.049586000000001,1.8077660000000002,1.371012,3.60711,2.53197,3.591605,5.341,6.759250000000001,3.09418,2.12304,3.2035699999999996,2.04061,3.3902666666666668,8.651383645320198,0.8757657142857144,1.026165,4.649965,0.4331773333333333,1.74812,2.293365,3.114725,2.944675,2.5409,4.016835,2.73485,13.046244999999999,5.508305,2.2623375,2.2623375,4.38346,0.7699383333333333,5.306456666666667,4.437235,3.88754,5.148828333333333,3.509455,4.686965,1.4445416666666666,2.760885,2.59777,2.72551,2.976665,2.661415,3.05098,3.4634,3.54292,3.00504,2.93892,2.51845,4.510025,4.72349,3.202806666666667,3.455666666666667,4.998980833333333,4.3675,19.417482738095238,12.700288333333333,3.3877235714285714,0.7657425,1.5349857142857142,4.41772,3.3555,3.0073939102564102,2.089755,0.9058555555555555,0.6829583333333332,0.6329271428571428,2.0511725,1.8409520000000001,5.390883333333333,3.5734333333333335,0.6956727272727273,3.341065,2.26726,2.303665,1.89233,6.433836666666667,1.468278,4.82244,2.980345,2.978623333333333,2.46346,2.60333,2.5099733333333334,0.7274672727272727,3.15032,2.91365,4.007014,3.0321266666666666,7.628069166666666,3.633765,3.34917,2.009945,3.726845,8.3646,2.1498075,2.36743,2.49497,1.5745625,2.405455,2.2820025,2.587575,0.863762,1.3913525,1.0562025,2.918385,3.75161,6.1606,5.8378,3.315965,2.31587,3.04515,3.5392333333333332,7.971629999999999,1.3027633333333333,0.38233,2.970705,2.05475,1.66762,3.7060400000000002,1.309638,2.16208,4.681143333333333,3.391723333333333,1.2027866666666667,1.91063,4.33694,3.67666,4.431815,4.800915,2.369075,5.33075,4.085265,0.8703000000000001,4.783355,4.55849,4.323872916666667,3.624166666666667,2.32193,1.304746,1.124615,3.50865,2.637325,3.17516,4.14126,3.167715,2.652553333333333,3.131245,3.64382,5.1433,2.454325,2.44762,4.319885,6.0401,0.5197875,4.449325,1.9626375,3.526515,3.7689333333333335,2.24303,3.10552,2.3711975,2.04357,2.65613,2.796205,1.8376566666666667,5.7508,3.670125,1.2759728571428572,6.2977,1.0601933333333333,3.68509,1.63465,4.653965,4.01337,2.2566,3.198235,4.248995,8.88164,2.811725,3.67375,3.9426,3.5953,1.6625525,7.66913,3.43804,4.414015,1.421655,4.172045,3.132485,1.092385,1.9619060000000001,4.23906,2.062725,4.05058,4.0497499999999995,4.4242349999999995,4.57921,2.3871175,5.54575,3.89127,3.117903333333333,2.3186233333333335,1.659066,4.76497,6.42655,4.9379,4.517095,3.00322,2.2513975,4.04212,3.318135,1.0902360439560441,4.01093,4.774884999999999,3.955585,2.835245,3.55083,0.49829,0.49829,5.37225,4.555005,5.0168,2.18401,3.8224,4.66597,0.8174910000000001,4.508945,5.0139,4.75751,4.726675,4.761305,1.90213,3.245655,2.1745975,4.38014,0.73109375,4.11096,4.450975,2.74551,2.9609,4.581945,2.29857,3.210915,59.02344693722944,3.163745,2.53947,1.61905,3.28859,3.86949,0.92349875,0.97496875,2.34125,2.34125,1.289128,3.235995,2.347065,3.8835755,7.39606,2.7086233333333336,1.2339671428571428,1.5377366666666665,2.7371666666666665,3.9510291666666664,1.00784,1.90881,1.35229,2.042215,4.138305,4.330585,3.4757,23.30407431818182,4.350705,3.715315,3.109365,1.9911466666666666,3.77426,3.212205,2.4597275,5.42004,1.718898,4.06281,3.295668722222222,5.78269625,1.99212,2.588,1.855775,3.986415,2.34196,2.1911275,2.1174399999999998,3.1861494444444443,4.03586,3.354055,4.430245,4.82907,2.589125,2.6217,3.08574,2.722655,2.9145344444444445,2.21471,2.164605,3.45383,1.16234,3.9088,4.83471,2.61242,4.871845,4.771355,4.944841666666667,2.1146933333333333,2.42916,2.606665,2.723625,4.01592,3.40493,4.777695,0.7160642857142857,4.1526993333333335,2.710755,3.697385,2.2159625,1.756514,4.311613333333334,1.2589555555555556,2.95389,4.246665,1.1050179999999998,3.6532,3.63231,4.495805,5.79192,2.17932,2.789625,2.6616500000000003,3.230726666666667,2.5147066666666666,2.5209273333333333,3.0319833333333333,2.3480366666666668,2.34159,1.3055633333333334,2.24603,2.24603,1.82445,2.0612133333333333,1.7810866666666667,2.8992633333333333,3.645355,5.20325,3.054685,1.51784,4.44393,3.514325,3.41583,4.23771,1.9585625,2.414155,4.529495833333334,1.981205,5.034701666666667,4.49678,3.53353,2.4021433333333335,3.575700625,3.22372,3.046315,3.46498,0.1419334693877551,2.7605066666666667,7.580805,1.48779,3.389305,4.731655,0.9992614285714286,1.2890766666666666,1.8810625,3.9088,2.985235,6.946160000000001,3.53773,3.567475,2.84156,2.622945,3.406765,3.306035,3.892125,3.24266,2.85093,5.29275,4.416365,4.65435,2.8063033333333336,1.9862075,3.38862,4.168455,2.67183,3.655685,2.1632,3.3665,3.956225,3.626335,2.70624,4.329545,4.83736,2.655885,4.56451,4.517375,3.534925,4.557065,3.37289,2.919955,7.42,4.46312,5.36795,5.15955,4.15581,5.5482925000000005,4.025065,3.85576,1.3036720000000002,6.816,2.406805,5.1753,4.12526,4.29727,3.1965533333333336,1.9688433333333333,2.2732966666666665,2.4179733333333333,0.905146,3.3914000000000004,2.81263,2.9979366666666665,2.09892,3.58688,4.628785,2.64083,0.5394774999999999,4.537505,4.681435,4.5586,4.95574,3.61874,4.42362,5.36215,4.718045,1.4588,0.9839461538461538,2.5834066666666664,4.70293,5.70485,0.486655,2.87963,2.45498,3.484865,4.439175,3.778366666666667,1.75968,4.082095,3.34089,4.27058,3.07454,6.0332,4.22595,7.095515,0.5497225,4.05492,0.771528,2.232535,4.043066666666667,3.2381433333333334,1.3351733333333333,2.21476,4.075505,3.968425,4.205365,2.42936,2.33054,3.286475,4.598705,3.492815,4.0115,1.6129419999999999,1.155523,5.49425,2.32362,8.070375,4.50142,3.55476,1.9930975,1.56902,4.221205,4.693135,1.67716,2.33011,2.543625,2.7605066666666667,6.800551666666667,3.080428333333333,2.8905733333333337,4.7599,3.326605,1.9254966666666666,2.97536,7.386245,4.904285,5.0523,0.5543072727272728,3.717685,4.60183,4.652039642857143,4.462,4.18634,2.986105,2.79862,3.08971,2.875675,3.9733894999999997,1.5770440000000001,5.3459140000000005,4.725415,4.95464,3.84593,3.281785,3.1935108333333337,2.1832375,1.3376125,0.9072075,2.740665,2.469765,1.07846,2.6109633333333333,5.26975,5.1507,3.433095,4.161505,15.823213333333333,4.094545,4.39613,4.20776,0.6969,5.4295,4.80825,4.695225,4.78415,5.49995,2.55031,3.488915,3.282225,1.473302,3.030845,4.955155,2.73803,1.597212,4.236505,5.2063,4.11963,5.3425,4.739695,5.83625,4.555545,2.96864,4.23873,4.16108,2.66668,3.0078,3.02834,1.7956595833333333,5.1484,2.7028035714285714,1.8798733333333333,3.916245,3.417795,4.242405,4.181526666666667,2.16144,2.77395,4.41317,3.61543,4.700935,4.226295,4.281275,4.9724129999999995,3.012175,5.4987,2.6586600000000002,3.83499,4.154115,1.513946,4.764005,1.0493766666666666,4.4583,3.399045,1.1582857142857144,3.587175,1.997035,6.901275,2.4390754285714284,2.4390754285714284,2.4390754285714284,0.7669716666666666,1.18187,1.842335,3.47634,6.08141,3.621364444444444,1.939025,2.446715,1.64068,3.7211,2.41563,0.41084846153846155,1.623235,2.14695,3.0329,1.800645,2.63309,2.35763,2.0329275,3.94143,2.74498,5.2731,2.89302,1.972685,6.41508,2.008835,4.298875,4.187135,6.166223333333333,1.61453,3.498505,3.59131,3.77515,4.19849,2.734115,2.036555,3.68157,6.168012000000001,1.980045,3.48365,2.99953,2.24245,5.10855,4.573635,2.6934566666666666,2.36324,3.7972900000000003,6.3235971428571425,5.73925,3.06349,2.41106,2.674175,2.94903,2.849555,3.723125,1.2547275,2.71199,4.59665,0.8239175,4.18607,3.781765,4.07112,4.85106,2.38129,3.682495,1.932255,4.48016,7.646311666666666,5.0503,3.270005,3.60643,0.95747125,4.609145,2.199235,4.298235,5.44937,4.34227,4.244285,10.919045,4.83032,3.51918,1.458475,0.7051133333333334,2.573605,3.789925,3.41016,3.62449,2.2148566666666665,2.69562,2.2501933333333333,1.10751,1.10751,1.8744266666666667,2.3084666666666664,3.0279866666666666,2.4575299999999998,3.4499999999999997,3.384233333333333,2.693016666666667,3.05814,1.4263000000000001,2.27779,2.0579300000000003,2.1449666666666665,1.4711875,2.0317166666666666,0.651225,10.247183333333334,0.651225,3.31514,2.1658233333333334,2.2007666666666665,4.40043,4.27524,4.093715,4.426595,2.7035966666666664,2.8829433333333334,3.3809853333333333,2.0623,3.6900666666666666,3.4021666666666666,2.8957866666666665,3.3439333333333336,1.6633066666666665,5.7027,6.179699714285714,3.832433333333333,3.7502333333333335,3.0025399999999998,3.0141299999999998,2.8694333333333333,1.2668557142857144,3.5249,2.947903333333333,4.140645,5.83945,4.566545,2.8704966666666665,3.5447666666666664,3.5166,4.1172788888888885,4.28034,2.53997,4.010605,3.5412666666666666,3.2273133333333335,4.78659,2.857756666666667,4.31135,6.301641666666667,2.7172,2.4474566666666666,2.0866166666666666,1.4762766666666665,5.521926666666667,3.5766183333333332,2.6829066666666663,2.0274566666666667,2.1380399999999997,4.512215,3.82836,3.235445,3.2077899999999997,3.544866666666667,3.7429666666666663,3.596133333333333,3.753933333333333,3.5399666666666665,0.56721625,3.9501666666666666,2.48405,2.50119,3.607055,5.05775,4.818655,5.84735,2.66377,4.190053333333333,1.1330183333333335,2.4055566666666666,2.4055566666666666,5.01805,3.582285,3.6507,3.65023,1.790845,3.427875,3.92605,1.0508657142857143,4.049195166666667,3.3321199999999997,1.9864099999999998,0.36898,3.741995,3.13531,6.47609,3.298705,5.8378,3.24871,3.97741,3.86381,1.8677508333333335,3.787765,4.892495,3.655265,3.4313333333333333,3.2257833333333337,5.7907125,2.1239425,1.01362875,1.8923733333333335,1.60178,5.27631,2.34375,2.3565366666666665,1.8177025,4.472215,3.94189,4.8815,0.608284,4.59426,3.707005,2.94847,2.7895766666666666,3.0690166666666667,3.5768813888888893,4.186956666666667,1.5502900000000002,0.6529105263157895,0.8037214285714286,3.5912,4.681365,6.227121666666667,5.18275,5.18595,5.04505,1.474,3.7689333333333335,2.1386366666666667,1.00215125,5.2759,5.78985,3.041125,4.77534,3.97641,6.916756666666666,4.0259,7.1381033333333335,3.68069,2.737502777777778,6.39555,9.909099923076923,2.6947733333333335,0.7279519999999999,3.7915,4.186235,2.337775,6.7655,4.83968,4.046275,3.1193766666666662,3.1193766666666662,4.199055,3.43556,4.0564,5.31065,4.273202476190476,2.4572782857142856,1.0659775,5.86435,2.54337,5.83153625,4.24397,4.681645,3.186185,2.251555,4.871225,4.5436,3.6495333333333337,3.55958,4.803605,28.57416035714286,2.2905975,2.457425,2.26145,1.5781416666666666,2.8429133333333336,1.230152857142857,2.9552766666666668,2.960233333333333,3.5791,3.4064,0.7636938461538462,3.644633333333333,4.634675,3.461575,3.299716666666667,4.11621,6.62869,4.7765,4.92572,4.352295,4.200289166666667,4.85476,3.4886,1.7049025,1.0712333333333333,1.3839166666666667,2.7278933333333337,1.51209,3.7138666666666666,2.4021233333333334,2.33543,1.8408300000000002,2.67978,1.97139,1.7816333333333334,2.85276,4.051435,3.590755,4.14673,1.69542,3.868,2.5141666666666667,4.29707,2.5933633333333335,2.54639,2.40131,1.5500333333333334,4.483,6.499311666666667,2.973105,3.674835,3.952765,2.697075,3.0928216666666666,3.7763000000000004,4.64673,4.709185,0.30232090733590733,0.30232090733590733,4.970845,5.18335,3.73639,3.025105,5.35305,4.69926,0.6873938461538462,4.82503,5.21115,3.662635,6.70885,4.56046,7.60969,13.439353333333333,14.150999487179487,4.20341,4.302775,2.70699,0.5976361538461539,2.7672866666666667,4.89796,1.2993666666666666,4.56224,3.4601,3.279866666666667,2.03659,1.8867866666666666,4.98635,4.345215,8.78599,5.25665,3.99784,7.381917272727273,3.225035,3.18383,1.48435,4.630261666666667,1.918105,2.474413333333333,2.7104533333333336,0.28601875,2.871305,3.702355,4.841629166666667,0.778806,1.4218666666666666,3.93069,0.564727,0.564727,2.977529166666667,3.091953333333333,3.6191666666666666,4.39447,4.61153,5.6975,3.751925,4.10005,3.06363,3.1389833333333335,2.8839166666666665,0.7627366666666666,2.7282433333333334,2.78188,3.086455,6.7736350000000005,2.96057,8.914275,2.727675,4.32876,2.997425,2.2594625,2.428955,2.977025,1.701615,2.3808475,2.0556375,3.87908,2.551775,3.73983,2.79843,4.059850833333333,4.059850833333333,2.6129133333333336,2.6129133333333336,9.045378999999999,2.717233333333333,0.804168,2.5315833333333333,2.47848,2.52276,3.73983,1.86525,1.9992260000000002,1.556708,3.79685,4.3911,1.7241425,4.6674,4.01582,6.439427777777778,6.611346666666666,2.304326666666667,4.285305,7.49397,4.84936,3.667865,2.9833266666666667,4.4609,4.003127878787879,4.66223,5.820053333333333,8.13962,3.3926974999999997,4.13131,1.17774,4.393285,4.363714666666667,4.59382,3.8977975000000002,4.378275,2.57397,2.7102733333333333,6.747985,3.241595,1.324862,6.78304,3.70856,3.060563333333333,4.66809,3.060563333333333,3.08727,4.167375,5.20935,1.0629385714285715,3.910007777777778,4.770605,4.10353,1.3713783333333334,1.8630625,4.91937,4.17903,2.652345,6.8350333333333335,4.219895,4.4323,4.37265,4.63939,1.500965,4.203475,2.72485,3.78132,4.34207,4.55619,4.971325,2.98557,3.88533,4.92515,2.1490663333333333,1.815615,3.7989333333333337,3.5208333333333335,3.5462333333333333,3.323026666666667,3.8385,3.0640366666666665,4.99315,3.38598,3.348105,2.82703,1.8805033333333334,3.563266666666667,2.1580933333333334,2.94789,3.14264,2.746585,0.73109375,2.171545,1.7248766666666666,3.14241,2.0787400000000003,3.472924,3.572895,1.316114,3.3956524999999997,4.679785,0.8647560000000001,1.2115533333333333,3.603415,3.78275,3.452235,1.955395,1.9365733333333335,3.463035,2.4196958333333334,1.6682966666666665,2.93235,1.91505,1.133594,1.3613775,6.575775,3.43325,2.16103,2.40559,2.541075,3.77719,0.847435,0.34231500000000004,0.8173914285714285,5.25635,1.8920721428571428,4.26936,2.32086,1.6196445714285712,2.817112857142857,1.1974682857142858,1.0732825714285714,0.729634,0.5704042857142857,2.7703866666666666,6.7475,3.06165,4.44795,0.3349496428571429,3.72004,18.726794857142856,3.12586,7.6823945990675995,1.020385,1.020385,1.020385,1.020385,5.741864166666667,4.25291,3.047955,1.9983766666666665,3.01213,3.638315,4.508585,4.268255,3.25362,5.31095,4.67263,3.92924,3.6860660000000003,4.10959,4.86855,4.532685,5.33545,3.48857,4.23894,2.9552666666666667,3.74109,3.28956,4.212385,4.210185,4.42006,3.176856666666667,2.62905,2.459563333333333,4.598735,1.3487992857142856,3.772965,3.2475133333333335,3.7530866666666665,4.4242349999999995,4.239315,2.974915,2.920515,4.245005,3.019325,3.22399,5.2875,5.08005,3.27357,4.010765,1.792852,1.792852,1.3580475,4.66668,3.78763,6.328923,5.22205,3.6621,6.7533,4.186765,2.16611,9.185375,4.691105,6.2270175000000005,4.33396,2.9029866666666666,4.140135,0.25979034482758623,0.95227625,4.086816000000001,3.451555,5.00115,3.3472666666666666,6.562743333333334,4.985565,0.5588285714285715,3.1897,0.43678800000000007,1.660835,3.356005,2.227415,4.270305,3.48801,3.372405,3.41816,3.37435,3.517665,3.341865,3.461415,4.245965,2.317615,1.660835,2.699575,1.9603525,3.709585,2.290415,3.81675,3.508255,1.6625525,4.32442,3.013405,1.5362,4.798025,4.595665,4.18096,2.91607,3.0496533333333335,4.75341,2.0834533333333334,1.4878959999999999,2.4258433333333334,2.9611966666666665,2.5425866666666668,3.1185766666666663,4.962925,3.479555,5.230813333333333,4.155257142857143,5.1047,4.33992,1.713052,5.48335,5.05465,5.4979,4.29756,7.0234000000000005,1.8930875,4.64515,3.44499,2.98358,2.032695,1.7003633333333334,3.841655,4.40055,2.22848,2.4935187500000002,3.2961650000000002,3.2961650000000002,2.6290633333333333,3.9911999999999996,3.335075,3.81554,3.497015,0.8418076923076924,3.228865,4.334055,4.577164444444445,2.84045,2.84665,1.7250625,2.61577,3.469845,2.198135,4.465975,4.003925,4.54576,1.9588966666666667,0.9943727272727273,6.26283,3.524555,3.540433333333333,3.458933333333333,1.68203,30.221638988095236,4.56618,3.293775,4.808335,4.38448,0.8306300000000001,6.962524999999999,2.17525,5.57735,1.7065000000000001,4.957605,5.2171449999999995,3.655725,3.149475,2.2481425,3.6807,5.1377,2.0592425,2.72232,3.350345,4.33697,2.522515,6.0918,2.078445,4.14748,1.22854,4.155,3.52766,3.834715,4.919365,3.05196,2.522346666666667,4.15527,4.882005,3.5937275,3.5937275,6.4949,1.4872875,4.50333,6.940028333333333,3.16397,4.263945,3.89707,2.56058,3.49807,4.0914,1.3443725,2.29027,4.099095,4.32592,5.68025,4.46473,2.857025,9.6028,2.52889,3.747475,1.7663571428571427,3.477,2.181436666666667,2.63698,2.3696825,1.2457933333333333,2.643963333333333,0.9299471428571428,1.0431728571428571,1.0431728571428571,1.0431728571428571,1.9416900000000001,0.5915525,3.858995,1.1699966666666668,2.6132066666666667,1.1013533333333334,1.6509733333333332,2.65041,2.152336666666667,0.7928475,1.7132233333333333,1.83038,2.3011066666666666,1.5898720000000002,1.5898720000000002,1.60647,1.9958533333333335,1.012514,2.1388133333333332,1.5310766666666666,1.2109433333333333,2.386595,2.252915,6.006,1.8270275,4.240775,17.808676333333334,7.195825,3.31403,3.596563333333333,3.15151,2.75466,2.6549,3.0043733333333336,0.7167458333333333,1.0274800000000002,1.0274800000000002,0.6567125,2.57908,3.79243,3.403825,1.563268,5.54505,3.69252,2.49487,4.44617,4.74135,4.301865,4.41599,3.6630000000000003,3.13969,3.41193,5.7163,3.4625,4.72811,0.534291,0.534291,2.36171,3.862515,4.836885,3.596565,4.21037,4.703265,7.01985,7.86433,3.43352,2.680125,4.04993,4.22421,2.74307,2.287045,3.318045,1.2625366666666666,3.71757,2.380905,1.6986025,3.427566666666667,4.209755,2.092555,5.820053333333333,1.6537625,3.7081,3.533685,0.9478785714285715,3.563333333333333,3.010676666666667,5.0817,1.1143349999999999,1.790725,2.40365,2.190255,1.67291,2.49305,2.25095,2.0561625,4.77807,4.495335,2.95185,1.784,1.4183666666666666,3.826233333333333,2.0131033333333335,2.506125,4.853965,5.69275,2.0961975,2.947035,3.284385,3.437695,2.372795,5.01555,3.97232,3.133915,1.5125,4.074775,2.95009,3.043276666666667,2.45582,3.687825,4.966055,5.02105,2.5338600000000002,2.9493566666666666,2.9099533333333336,3.4605333333333337,2.02615,1.578166,5.55675,3.542566666666667,2.2056507272727273,3.3005999999999998,3.2616666666666667,2.45975,3.3170300000000004,3.3434000000000004,3.769966666666667,5.0545,3.98796,3.284026666666667,5.91295,3.377795,2.382235,3.22751,4.032715,4.04324,5.8931305,1.924584,3.811,2.851015,4.80891,3.640285,0.564515,2.331835,2.252675,3.39621,2.841525,2.229125,2.673155,0.622479,2.7445033333333337,5.12775,2.4074875,4.44981,2.59641,4.49256,1.8532275,4.422455,3.82137,1.854526,4.223315,7.334565,4.36982,4.11403,4.80082,7.319027954545454,4.253835,4.644515,2.2189775,5.0136,3.1312,1.8774333333333333,1.8659325,2.6747,0.9966014285714285,2.2731033333333333,2.6469366666666665,2.54137,3.0269600000000003,1.737694,3.221875,1.9143733333333335,4.8335,5.69313,1.0081725,2.22471,2.4766133333333333,2.7881666666666667,1.9991033333333332,1.0622833333333335,5.616145,2.05162,2.5961333333333334,3.0571300000000003,2.99029,3.18617,3.13385,2.184833333333333,2.963886666666667,2.2669799999999998,4.030325,3.77553,3.84047,3.027176666666667,3.05003,0.7976530000000001,1.76217,2.155355,1.9314233333333333,2.5064566666666668,1.1488533333333333,2.7045766666666666,2.9279266666666666,3.551695,2.0597233333333334,3.480185,3.06108,5.91945,3.85572,0.6060341666666667,2.05462,2.86285,3.7283666666666666,0.7743672727272727,3.003206666666667,3.450926,3.163046666666667,2.7725866666666668,3.3145949999999997,3.68046,3.739933333333333,2.99989,2.332395,5.93955,5.21105,5.70775,5.57535,5.7743,1.77308,3.313885,3.7685,3.4135666666666666,3.2928266666666666,2.757376666666667,4.215433333333333,3.7558666666666665,3.211586666666667,14.635035,4.26995,1.1987299999999999,3.172876666666667,1.6936879999999999,3.30017,3.4594,2.9216800000000003,5.623238333333333,6.092579000000001,2.4033666666666664,0.8689959999999999,4.249825,3.5138,3.03506,5.2868,5.4072,6.26625,4.877865,3.40614,1.93407,6.579525,1.17774,6.613239999999999,4.760405,2.731033333333333,4.145415,7.389951666666667,5.84075,2.3205233333333335,1.5342166666666666,2.0603625,7.5023100000000005,1.5777,3.220466666666667,2.734323333333333,4.299291666666666,5.7029,4.261525,6.22635,3.455775,5.4346,3.55099,8.87688,5.4318,5.8469,2.610275,2.712525,11.098041666666667,3.491175,4.32061,2.406616666666667,1.7667133333333334,2.5251366666666666,2.1796966666666666,0.66091625,1.350828,1.06582,3.7766,7.112336666666667,3.2727880000000003,1.3493033333333333,4.86684,4.214365,0.5582239999999999,3.881425,3.60163,4.33059,3.8336,3.58597,2.6019433333333333,4.094965,9.86571,1.7864225,3.7657925,3.565,4.36969,3.611685,0.8881333333333333,3.4569666666666667,3.8424,1.77911,2.5103866666666668,2.3136666666666668,2.551136666666667,2.6304366666666668,2.1513566666666666,2.078935,6.341012142857142,4.824705,4.00514,4.312486666666667,1.6016966666666665,2.386355,4.84254,5.07775,5.05475,4.849825,4.872565,5.1821,1.792852,3.76741,7.735651666666667,1.3013216666666667,1.6573066666666667,2.4623633333333332,2.7438866666666666,2.7227599999999996,4.704622333333334,0.8037214285714286,2.40673,3.256185,3.61434,4.324455,2.2521366666666665,2.8070866666666667,2.101145,0.576456875,1.9897525,2.882335,7.637045,4.245755,4.394195,0.971472,3.6867666666666667,9.58890725,10.962938333333334,3.239885,1.249465,3.60922,3.58651,2.7836266666666667,5.618033333333333,5.23185,4.165565,2.1246925,3.9235333333333333,2.1590233333333333,2.5768999999999997,0.8920818181818183,0.4087593333333333,2.21922,3.5119,2.0270871666666666,3.333555,3.3971,3.591105,4.71711,1.532292,3.3282833333333333,2.2220125,2.2220125,2.237745,2.927075,4.345855,2.69464,2.7058233333333335,3.1986833333333333,3.6038,4.04984,4.117095,4.60191,4.04086,4.331395,4.381835,5.5882,7.714923333333333,1.875725,2.2097533333333335,2.64576,0.9026166666666667,0.7241508333333333,3.78109,2.248725,5.5082,2.8906033333333334,3.1965833333333333,1.9133520000000002,1.453575,3.974555,4.12566,4.247675,1.5126549999999999,1.25143,2.62339,2.0586266666666666,2.5148433333333333,1.10109,1.10109,2.7440466666666663,4.15324,2.65177,3.000105,3.44308,2.061275,19.417462484848485,3.679495,5.13959,3.520255,3.804505,3.49121,3.54599,5.7828,6.34455,0.8184566666666666,0.8184566666666666,0.8184566666666666,2.668676666666667,1.7600714285714285,3.737,4.396515,4.15074,3.112845,4.41221,4.26386,0.9399955555555556,2.239926666666667,2.5508966666666666,6.051836833333333,3.4040935,4.080349333333333,4.75669,2.24303,2.0618666666666665,2.350643333333333,0.50327625,0.8888339999999999,1.877445,1.95632,2.908025,13.073535,2.49788,5.561,0.7252428571428571,10.475815,5.69285,3.62782,4.315495,2.783875,5.6712,2.783875,3.02356,3.405555,3.77048,3.72894,3.882245,4.586485,3.392725,5.92605,6.771582,1.6835533333333332,2.55128,2.560555,27.410503502574002,1.512802,6.1337,4.064082,3.867915,3.75047,4.65409,2.70362,2.74457,2.214065,6.2356,6.71945,5.14795,4.65932,4.621175,2.118115,1.93,4.426005,0.3687176923076923,0.3687176923076923,0.3687176923076923,0.3687176923076923,3.983045,3.1151116666666665,0.8621500000000001,1.78778,1.1623222222222223,4.65651,2.45019,2.3078,7.257108333333333,3.2889933333333334,0.1672844827586207,20.962021666666665,4.5961083333333335,1.7325199999999998,1.374012142857143,2.29718,1.96423,2.51995,4.586175,3.02841,3.9293,3.85223,2.461936666666667,7.362855,2.71882,1.98451,3.345625,6.0364,7.4768783333333335,4.62944,0.30872439024390247,3.47324,4.10291,3.3538,2.245395,3.1377466666666667,1.5993133333333331,1.5993133333333331,4.058375,5.82402,11.9190675,9.032175,0.6873277777777778,2.5359000000000003,3.85269,3.11687,4.98815,4.41161,1.612156,1.612156,3.649665,4.658045,2.4683100000000002,3.52959,4.850565,5.167,6.220555,2.12676,4.62265,4.198405,2.59501,2.9538666666666664,3.234156666666667,5.20335,4.48874,5.382,4.036525,4.074815,3.84095,4.97804,4.73968,5.72605,2.639936666666667,3.3064033333333334,1.142442,4.47828,4.103715,4.27197,1.9058140000000001,1.99528,1.8679133333333333,3.414,2.84691,4.635806666666667,1.8133333333333335,2.4117525,3.4947666666666666,2.7841799999999997,2.4312066666666667,2.2903566666666664,3.9126999999999996,3.207103333333333,3.8204666666666665,3.828545833333333,2.05509,2.544303333333333,2.0154633333333334,5.56105,3.2069033333333334,41.07421908333333,2.574883818181818,2.574883818181818,2.5335533333333333,2.964653333333333,2.1156266666666665,1.77797,2.931673333333333,1.8663833333333333,0.6512661538461538,4.87916,7.2144625,4.26566,3.99921,5.36525,1.9965166666666667,4.270415,1.8083040000000001,5.18735,5.73335,5.84205,4.44955,1.7049025,4.290505,5.1697,4.83195,4.83144,5.5241,4.195315,3.078325,3.2689866666666667,2.865083333333333,2.1190575,1.864255,4.373055,2.0086666666666666,3.6426375,3.6426375,2.2159400000000002,1.5339866666666666,2.116966666666667,2.4062266666666665,2.4065966666666667,4.87231,2.796746666666667,1.1118716666666668,1.1118716666666668,2.0132166666666667,2.32848,2.4257566666666666,2.59748,2.4470266666666665,2.2721566666666666,2.1578466666666665,2.1658705,2.980616214285714,1.5895182142857143,0.8147457142857143,59.18832299603175,2.481728,3.120953333333333,2.2486439999999996,0.88018,3.518727333333333,1.620178,1.620178,2.6535366666666667,2.9973799999999997,0.7747725,2.8595699999999997,5.156409999999999,4.059833333333334,2.5528766666666667,2.79874,1.8725633333333331,2.5058013333333333,0.2836275,2.3268033333333333,0.716388,2.4568666666666665,1.266746,1.266746,2.4846266666666668,1.9053039999999999,2.36618,1.5843586666666667,2.92172,1.5843586666666667,2.1411233333333333,2.6288233333333335,3.1952433333333334,1.199454,1.199454,3.15808,1.4428066666666668,2.7047133333333337,2.0981666666666667,5.0799,4.292715,12.792638416666666,7.031337499999999,3.55058,5.09195,4.504385,5.51175,5.32795,2.6362825,4.36895,3.58381,2.58244,4.60113,3.4232666666666667,2.7564266666666666,3.692625,2.2599233333333335,1.0864328571428572,3.7407270833333337,2.6364233333333336,2.987795,0.8036685714285714,2.631105,3.355405,4.38125,4.318305,6.645,3.3592333333333335,2.15652,4.11907,4.50167,2.2177875,2.8490208333333333,1.93402,2.058354,0.862294,5.2697,4.96225,3.976975,3.814735,3.05401,4.52881,5.3175,3.2901433333333334,1.7272633333333334,0.5547493333333333,14.3685975,0.49325545454545455,0.49325545454545455,0.49325545454545455,3.104643333333333,4.086633333333333,0.49325545454545455,7.8561266666666665,4.8584966666666665,0.69302,0.69302,3.3731333333333335,3.265275,2.886405,4.288825,4.306315,4.305771,2.12094,4.686145333333334,4.273575,3.5150396428571424,4.64797,3.04664775,2.256825,2.2893775,2.629975,1.600015,3.3784633333333334,3.0526066666666662,2.60905,2.2332675,2.0116175,1.8608333333333331,1.5450675,2.50605,1.1490222222222224,2.7986,0.6364921428571428,5.49675,1.742175,0.7472366666666667,2.432295,7.7388650000000005,2.49196,2.0226535,3.25298,7.58151,2.696665,5.0153,3.071625,6.17349,4.20681,4.160865,3.997805,4.15995,3.0216966666666667,3.799155,1.163322857142857,4.298025,2.3917366666666666,2.4978766666666665,2.52146,2.39415,2.20076,1.2582125,5.5127,0.8827290909090909,5.10155,5.63385,4.877525,6.14565,4.4008,2.4572966666666667,2.00636,3.0465699999999996,3.3220500000000004,2.38848,3.622533333333333,2.734175,4.52864,1.802826,41.1820376984127,4.94439,2.4599966666666666,2.8057233333333333,3.5630666666666664,1.52741,5.566188333333333,5.16715,2.798503333333333,3.4151333333333334,2.2185333333333332,1.6941175,5.38815,0.8766785714285714,4.815560714285715,1.3483,3.5330333333333335,3.563966666666667,3.1281866666666667,1.42345,5.189573333333334,1.79758,1.79758,2.76803,2.9750004166666666,3.6835,3.4037666666666664,1.3815966666666668,3.0603166666666666,2.8230166666666663,6.265656333333333,3.2418766666666667,3.471748333333333,0.9483233333333333,1.4127566666666667,3.2422766666666667,0.8781599999999999,5.604705,3.9839333333333333,3.0785066666666663,3.9458,2.9021600000000003,2.7677633333333334,3.20543,1.65543,2.541075,2.81725,3.676133333333333,2.5242066666666667,3.7710666666666666,3.0661799999999997,0.5787793333333333,9.455499038461538,2.7028499999999998,5.56265,4.972595,2.744566666666667,2.99724,1.3482575,2.1923233333333334,2.4318,1.3482575,2.585845,0.451070625,0.451070625,1.31327,1.31327,1.00386,1.00386,3.004865,3.14377,2.841345,1.363535,1.73144,3.541935,3.005675,4.92742,4.69689,2.19966,4.47441,2.194,4.792737692307693,1.5663575,1.5663575,2.20414,1.77204,3.832411666666667,1.9981975,4.18729,1.3905466666666666,2.35098,0.5960115384615384,1.2588985714285716,2.252445,1.99151,2.1990775,1.6565825,4.53099,4.717185,2.7441533333333332,2.9706833333333336,1.3911866666666668,0.7197041666666667,2.0049233333333336,3.78493,2.291333333333333,4.790505,5.3056,4.99887,3.81481,6.6835,1.7070333333333334,6.07843,1.83303,4.67277,4.66373,5.796312,2.8787766666666665,2.273575,1.755835,1.945002,1.945002,2.306285,2.306285,4.506505,5.33995,0.9217219999999999,4.44177,3.61625,3.44248,2.6599566666666665,1.4070125,2.73694,4.065385,4.12066,1.9275639999999998,6.75,5.6201,1.78665,1.253225,3.705555,4.221176666666667,3.67466,3.51367,4.35282,0.6954042857142857,2.8665599999999998,3.1062066666666666,2.5483466666666668,2.8902633333333334,2.2112366666666667,3.4912666666666667,1.4842,1.4842,1.4842,2.7720266666666666,2.9780599999999997,3.03844,3.587371238095238,2.46055,1.3146685714285715,3.0959233333333334,3.3759,1.28857,2.9777066666666667,2.77509,1.3872699999999998,3.3781666666666665,2.9968166666666662,3.06791,2.959823333333333,2.89418,2.183715,3.4026666666666667,5.174934666666667,4.794775,0.9564959999999999,1.580692,0.655342,3.500033333333333,9.13894,3.1340533333333336,3.158835,2.02577,4.208288333333333,1.864345,7.721006666666667,7.076466666666667,2.7675133333333335,2.5501757142857144,4.104805,5.3845,1.50308,1.2211779999999999,1.3603960000000002,2.16352,11.159536666666666,2.75712,3.09596,3.146846666666667,3.896095,2.164433333333333,1.2630375,4.27806,1.1106433333333332,3.1790384615384615,3.405025,3.183725,3.3173766666666666,3.66995,5.3336,1.2801,2.0212825,2.101024,2.101024,3.762705,5.11405,7.33181,4.24439,3.35331,4.883265,1.80288,2.211245,4.66517,4.159605,3.796615,1.7244833333333334,2.66608,3.445575,4.36086,2.42115,3.92296,3.63634,3.45769,4.098815,4.66574,4.35215,5.51285,3.2991566666666667,2.315983333333333,4.552905,2.90279,3.742135,2.219085,2.588025,2.495925,4.830605,2.510865,3.1051284090909093,1.68945,3.179545,3.55649,2.1556775,2.0434625,0.87539,0.87539,1.7400575,4.079319393939394,4.071185,2.8916066666666667,4.558645,3.5014975,2.483727714285714,1.0079675,2.4297,1.63712,4.270955,3.97503,0.9233208333333334,1.809645,3.81843,2.9190025,1.59934,1.5766533333333335,5.054337142857142,1.1554883333333332,2.728275,3.20528,2.777555,2.46485,2.806254,2.086925,0.9988,2.82897,2.93171,3.393635,1.4166166666666669,1.5424166666666668,1.731965,4.50304,2.306065,4.483515,5.02135,4.53224,5.807,5.47765,4.103915,5.91486,4.268651904761906,0.7916645454545456,2.93329,4.032775,4.528745,0.46745909090909094,0.878218,2.922855,4.160255,4.970055,4.72837,3.392665,2.685425,4.90644,1.9109279999999997,2.61,4.49304,4.0840325,3.68539,4.116735,4.111165,4.88336,2.859505,5.42552,0.938231,3.663895,2.652325,4.389665,4.715385,4.44568,2.06368,2.6547,2.804095,1.9358366666666667,4.881495,3.46723,1.5145714285714287,2.71499,4.0137675,1.571312,6.20082,1.738952,2.5497566666666667,13.848744897210976,3.3434333333333335,1.4501433333333333,1.5575433333333333,2.1259566666666667,5.5251850000000005,1.6129419999999999,5.917597166666667,0.7263130769230769,3.426266666666667,4.063585,7.3430625,2.382286666666667,3.073123333333333,3.073123333333333,5.39745,4.662365,3.54363,3.29853,5.1353,5.91495,2.41116,3.500166666666667,4.960105,1.2273333333333334,2.80626,4.57105,3.98468,3.341755,2.6134766666666667,3.699205,3.62238,6.458666666666667,6.1525575,0.8808640000000001,3.845725,3.200945,3.2426333333333335,4.15712,4.175605,3.941195,1.7231619999999999,4.383775,2.46434,3.055295,4.12441,4.238375,4.48774,0.9414300714285714,2.7725333333333335,7.322724,1.4924350000000002,2.2003944155844155,2.32443,3.82149,3.788665,3.215335,0.6596354545454545,2.565775,1.63226,2.1923325,4.76321,5.1998999999999995,2.77203,9.400005,2.6415166666666665,2.8189766666666665,1.16126,4.53335,5.3094,2.047885,5.793123333333334,3.691255,3.24446,5.19365,4.6654,5.2546,2.046535,1.5730875,1.5730875,2.6237,3.17792,4.818391666666667,1.503155,6.052888333333333,1.3918133333333333,3.71092,1.4881216666666666,9.030783333333332,4.464535,2.7223,4.966665,5.17175,3.755065,1.2689616666666665,2.1599,3.7385333333333333,3.1508033333333336,3.6938,3.613633333333333,3.7474,2.804935,2.963205,3.077775,1.4938275,2.5246133333333334,1.9222400000000002,2.794506666666667,1.7974033333333335,5.373380833333334,3.27324,1.6889566666666667,3.1620566666666665,3.204805,3.29574,5.7763,5.7946,3.221645,3.519125,3.625495,3.049055,2.713585,1.1609166666666666,0.9919439999999999,6.4374400000000005,3.521605,2.944625,5.28865,6.2798,3.765835,3.3104099999999996,6.38845,2.58039,0.5390016666666667,5.81375,3.506365,3.77735,3.4158000000000004,1.4385,5.6848,1.019088,4.973175,0.97141875,1.4723866666666667,2.9082866666666667,2.37833,2.4170434285714286,3.908855,5.2999,5.001690833333333,5.001690833333333,4.158545,4.158545,4.863935,3.22641,4.737445,1.0779225,5.7943,4.2622,3.6509666666666667,4.618875,3.613615,4.62438,1.863615,4.936915,3.117752,3.337355,4.230585,2.538325,4.66608,5.20395,3.552335,3.263175,4.88038,3.630285,5.0495,3.1092,2.92638,6.10515,4.236045,2.8355633333333334,6.590035,1.53466,2.218255,4.35725,4.316855,5.02015,3.98248,2.13123,2.13123,14.304077738095238,5.64972,5.05735,4.096735,2.9234241025641023,4.683145,4.668815,2.7494599999999996,3.3922333333333334,3.26797,3.8396000000000003,3.829266666666667,5.0876,1.95742,7.65878,2.33249,1.787275,5.75975,2.376495,4.893345,4.30269,4.841335,0.77164,3.55859,4.056815,0.83773,2.87884,3.5791375,1.45522,2.1429633333333333,3.058923333333333,2.7302866666666668,2.702366666666667,3.4822666666666664,2.5941466666666666,0.5674921428571429,3.0844133333333335,3.052823333333333,2.88758,3.1295,1.7332319999999999,3.0349866666666667,7.3107050000000005,4.52409,2.589116666666667,2.0019833333333334,2.54766,3.681015,2.45315,3.829694,18.5073525,5.3868,3.438513,5.65845,3.73989,5.492021666666667,1.7169566666666667,5.95065,1.5596233333333334,4.390945,4.445865,5.25115,5.1942,1.0482683157894737,4.871245,2.595515,4.710025,2.43567,4.48683,5.29445,2.9045,2.142516666666667,1.377354,2.0463075,4.6511,5.0247,2.113525,1.71887,3.0229033333333333,4.26886,3.20796,5.79035,2.242365,5.1856,4.729615,3.57625,4.37801,3.604145,4.414535,4.75175,4.189405,2.9957366666666663,2.9957366666666663,5.533340555555555,1.90969,2.841336666666667,3.730965,1.716208,7.19989,3.64896,5.049463333333334,4.2226,4.50796,2.0496,4.37581,4.93087,3.940735,2.17687,3.48457,3.30653,1.098915,1.5661775,1.23295,0.6960466666666667,1.6081200000000002,1.0219500000000001,4.4098,1.0297977777777776,2.66494,1.62458,2.07245,1.2471750000000001,2.16267,2.4238175,1.520805,3.3564666666666665,2.59332,4.2478316666666665,1.537415,1.72517,3.2854200000000002,2.943186666666667,2.2507966666666666,4.456075,4.44569,5.4376533333333334,21.151301083333333,3.1779466666666667,2.1802425,0.6469592307692308,0.658137,4.432024999999999,1.92044,4.073715,5.1914,7.609903666666667,4.328565,3.56349,3.958555,3.20872,3.0932399999999998,3.0052800000000004,3.161103333333333,3.2677433333333332,6.17395,3.28385,0.9121159999999999,1.2092925,5.55685,3.2973166666666667,2.56757,2.0632633333333334,2.256886666666667,5.70175,5.078,2.542175,1.1445233333333333,3.316,5.36575,9.116383333333333,5.728731041666666,4.864445,4.19996,5.69175,4.59863,4.871805,4.72651,3.805725,5.33855,2.30394,6.0443,1.6133142857142857,5.44975,0.7463200000000001,4.89142,5.71965,6.0821,6.1919,4.786235,6.17,5.93365,6.6707675,1.9111666666666667,1.5290714285714286,5.67295,3.76977,7.182836666666667,5.25015,5.2386875,5.26755,6.01335,1.3858228571428572,4.365615,5.16615,4.221133333333333,4.653,5.9542,2.57055,3.84763,4.24841,4.70507,0.9935333333333333,1.6866333333333332,1.305656,4.741505,4.04178,5.60815,2.6035666666666666,3.30604,1.6362366666666668,2.1335633333333335,0.37122083333333333,3.5239333333333334,1.716686,2.258785,3.2354633333333336,2.70575,3.195126666666667,2.470925,2.6929,10.407085333333335,3.395766666666667,1.7740742307692308,4.48186,0.8148590909090909,4.62755,1.0444275,1.85954,2.0454675,1.03775125,5.6541250000000005,1.1641327777777777,1.1641327777777777,1.1641327777777777,3.060313333333333,1.70899,5.48025,3.075775,1.5763425,1.5240375,2.04437,1.5619625,2.13234,5.582250833333333,0.8816888888888889,4.27816,4.185265,3.4107000000000003,1.0237814285714286,2.157861,2.033645,2.033645,1.65536,3.7578383333333334,4.383375,4.98514,5.6259,4.286195,5.5983,3.26552,2.0352425,3.703505,5.3946,3.952675,4.84254,1.05122375,3.9172502083333334,5.34545,1.845255,4.04705,2.8297966666666667,4.363725,5.2441,2.33414,6.1115,6.40575,4.425365,5.05855,4.16659,3.141445,8.02353,4.15865,6.326788333333333,3.413725,2.56826,4.95579,2.59485,3.37148,5.23485,2.76754,3.13128,3.76771,1.4193866666666668,10.612142500000001,4.691315,3.165955,16.448720753968253,4.61594,1.7119966666666666,3.089733333333333,3.223525,2.78123,3.955455,2.7753558333333332,4.10857,4.272595,3.04947,4.099915,6.5692900000000005,1.2226766666666666,2.4007725,3.94191,4.03567,5.1058,2.003615,0.6300453333333333,4.64886,4.235445,2.100235,1.2904383333333334,4.83353,4.73001,0.9975266666666668,3.719435,12.648861666666667,1.3683841428571428,0.40877714285714284,3.7246,4.2773,1.1540444444444444,4.780335,3.753725,5.293876666666667,1.3361616666666667,3.84895,3.82655,3.350535,4.415765,4.580135,5.7624,8.695599999999999,3.06381,3.83286,2.92982,16.106385625,3.4482975,2.4708925,1.3257425,2.3014475,1.318205,1.95886125,1.416835,1.9733875,2.159985,2.18629,2.07391,2.4532375,2.234525,5.4729,3.78675,4.89369,3.19302,5.8155383333333335,2.8772033333333336,4.70022,3.237,1.2102675,3.599555,1.993765,2.647041333333333,5.1158,4.938295,4.989355,4.73893,2.73766,3.0093633333333334,2.3899,4.30833,3.740555,2.34918,1.86286,3.7971,5.4309,3.175735,2.3078266666666667,11.654291666666666,0.67614,2.57021,4.954475,2.7544429999999998,1.538818,2.695245,7.33676,7.194433333333334,4.73516,4.25876,3.689355,2.0014675,2.651655,2.8896973333333333,2.083343333333333,4.056316666666667,3.490155,4.450305,0.55585,6.0767,3.573,3.69,3.635533333333333,6.5837,9.08167275,4.596164,1.11735875,2.208765,2.33732,3.572725,2.46232,4.27258,4.905265,3.5762666666666667,3.23031,4.028315,4.1686,3.677455,3.747833333333333,2.2473033333333334,3.397185,5.403,5.49335,3.5465999999999998,1.98083,2.2583333333333333,14.8142000990676,0.5350854545454545,1.438055,1.438055,2.3356566666666665,4.470719333333333,4.4784,4.406275,3.52307,3.981375,4.23467,2.9736333333333334,4.148315,2.9736333333333334,3.439825,1.8789633333333333,1.52856,5.79625,2.595775,4.74952,3.268365,3.337525,6.821886666666666,1.97698,4.917185,5.22715,3.518385,3.59134,5.077,2.01798,4.76884,3.7249625,6.9084,5.455380833333333,2.48774,4.54503,4.72882,2.115975,3.1090766666666667,3.5216333333333334,0.465785,3.3834666666666666,10.072846666666667,4.54261,3.97047,5.5377,3.503595,3.015185,1.297022857142857,3.929865,5.2379,3.113415,2.77967,5.3859,3.9595,4.285425,4.277275,2.35052,2.35052,3.952245,2.73251,2.9319904545454545,1.754495,4.58347,3.911065,1.3403642857142857,4.04992,4.550055,2.900816666666667,6.796495,7.82184,1.494764,4.38226,4.88055,6.739597,0.8746079999999999,7.445961666666666,3.6989541666666668,0.6795245454545454,5.7252,5.27985,5.30695,4.45491,5.1378,4.61002,5.05135,4.408805,4.22247,5.1052,4.612565,5.1106,5.07375,3.850985,3.067675,4.188755,2.784125,0.910791,4.246435,2.47458,1.713115,4.225835,5.2806,5.42915,1.0439042857142857,5.187226666666667,3.13165,2.626396666666667,2.148245,1.2012966666666667,11.846350833333334,2.92239,3.1277733333333333,2.277083333333333,3.658166666666667,5.950233333333333,6.21458,2.6523866666666667,1.9135099999999998,2.2072,2.2072,2.2072,1.4262,3.933805,4.03218,3.581375,4.718665,8.03987,4.43249,1.174372,2.259125,3.19762,2.4121,1.755604,4.68207,2.82762,1.3301266666666667,3.1428133333333332,6.574617142857143,7.077757500000001,4.24005,3.90528,3.419366666666667,5.6115,4.54864,5.528395,1.90552,1.90552,4.632615,3.776975,2.5153790000000003,2.5153790000000003,3.79102,1.0508414285714285,5.1069,3.51142,4.162795,4.562695,5.0596,3.1029933333333335,0.9906957142857143,4.45603,5.5846,4.67097,5.01345,4.85079,4.809785,4.439705,2.002205,1.4700675,3.36441,3.73021,3.19778,4.138545,1.967915,2.8465775,5.353,2.605405,5.12865,8.242635,2.3989604166666667,2.931891666666667,4.194204761904762,4.661333333333333,1.636715,2.043622142857143,0.971755,2.043622142857143,2.1545466666666666,2.1545466666666666,1.443664,4.98908,3.07971,3.28111,2.256665,3.72236,1.536625,5.5233,3.10556,1.6169075,2.66284,4.807715,3.83046,6.342307,4.789815,1.2149100000000002,0.8370366666666667,3.56867,6.306513333333333,2.3458133333333335,3.531905,3.48282,3.48282,2.316735,3.412195,3.086465,1.4160733116883117,3.1961666666666666,3.757055,3.177905,4.469055,4.0035125,1.561155,3.338865,5.03605,4.934185,5.38225,4.270965,1.8160425,2.13137,1.32971,2.4432725,3.469675,1.9247025,4.052375,3.3386666666666667,3.088795,4.16706,4.82072,2.535005,0.981772,1.77112,1.490025,1.2019555555555557,4.76691,4.088995,1.142442,0.18035260869565217,0.18035260869565217,0.18035260869565217,3.2796,5.622005,4.64398,5.1554,4.272475,3.990705,4.50048,4.36508,2.823455,3.603615,1.6189625,5.0888,4.36636,3.809775,4.510545,4.46217,0.8516690909090908,0.8516690909090908,0.8516690909090908,0.8516690909090908,0.9799939999999999,0.9799939999999999,3.986195,4.29406,3.718965,2.73301,2.53336,4.40113,4.06575,5.5453,4.30131,2.942543333333333,2.47921,9.37539,1.6514579999999999,1.6514579999999999,4.403405,5.3065,3.380933333333333,0.451070625,0.451070625,0.451070625,0.451070625,0.451070625,0.451070625,4.886743333333333,5.2903,3.64137,4.34956,2.7411849999999998,2.7411849999999998,2.716115,3.0961543333333337,3.0688,3.542815,3.62415,7.145954333333333,1.41629,5.1181,3.608835,4.281675,11.042516666666668,2.7420466666666665,2.938965,0.9362128571428572,2.23359,5.07005,4.589815,1.2475925,3.0610466666666665,4.705225,5.8456,2.742375,4.857939861111111,1.116211111111111,2.0306333333333333,4.98637,4.91069,3.5046325,2.7494666666666667,2.318236666666667,1.45613,7.8875183333333325,3.3301266666666667,2.14061,3.07992,2.7165383333333333,5.59965,3.865295,2.72566,3.3702,6.38965,1.4032133333333334,4.359895,5.09155,3.61471,3.873495,2.33743,3.90642,3.721725,3.76467,2.85367,4.513985,4.65845,2.985383333333333,1.9182900000000003,2.8406566666666664,2.7292633333333334,2.7945966666666666,0.8048218181818182,2.21109,8.17722,0.48985625,3.01836,1.96064,2.4942933333333333,3.1627066666666668,3.1321366666666663,1.2414333333333334,1.721638,2.7154966666666667,2.07806,3.628175,2.18674,2.9378933333333332,1.4479600000000001,2.96953,1.9656025,1.0899971428571429,3.1248233333333335,2.279125,2.30341,2.6864833333333333,3.1943,3.315773333333333,3.17524,3.0849733333333336,3.0881566666666664,2.9366466666666664,2.8809633333333333,2.3949375,1.6627166666666666,2.3005366666666665,2.688133333333333,1.6169466666666665,3.0026166666666665,3.7423304761904763,2.820953333333333,2.989523333333333,2.9039466666666667,3.685833333333333,4.813369166666667,3.2881033333333334,1.657692857142857,1.657692857142857,2.3709125,1.1692475,2.45817,3.239232333333333,4.3913485833333326,2.643225,1.9685025,2.24607,2.1333425,3.645975,3.247185,3.87451,4.937085,1.77551,2.3641033333333334,3.656295,1.346028,1.346028,2.779775,0.6473538461538462,3.103451923076923,2.516,2.516,2.8057466666666664,2.5018033333333336,2.7286566666666663,2.5939316666666663,2.3424825,5.905776666666666,3.966235,3.966235,3.981655,3.129235,2.281835,3.06632,2.42858,2.888345,5.69223,0.4798191666666667,0.6940310000000001,4.092805,2.234265,3.058175,6.988418333333334,3.686045,1.6733319999999998,4.586521666666667,4.57087,3.94813,4.718265,5.3759,4.998555,14.353985,3.357005,1.63826,2.741535,3.810585,5.2639,3.681605,4.197365,4.5875,3.67655,4.557295,2.8269933333333337,4.40758,2.94613,2.3669733333333336,2.3669733333333336,4.099285,3.1905,3.0569,3.528295,2.307405,2.5069,2.1881925,1.8740575,1.98376,1.9088075,1.8157775,4.0717514999999995,3.650445,2.74121,6.3045725,3.1324,2.35383,1.75019,3.24888,3.86104,3.659095,3.195514583333333,3.264575,3.14082,4.210615,3.27859,3.680915,3.91316,3.3706959999999997,3.491985,0.608715,0.608715,0.608715,3.387835,2.27705,4.937115,2.58993,3.54291,7.559372777777778,2.840726666666667,0.439126923076923,5.0102,0.761432,4.296429047619047,1.830475,3.913995,1.8109,4.61719,5.8597,4.683695,3.899865,2.8157200000000002,2.8938633333333335,1.5184133333333334,2.4457999999999998,0.44951368421052634,0.52384,2.8967666666666667,1.49318,1.95109,3.6661,2.73147,5.16195,2.95528,2.9878883333333333,3.44457,5.15325,2.011055,1.013132857142857,2.303755,3.466698,1.3950852597402599,4.832465,3.727925,3.84717,2.6425966666666665,4.22848,2.80673,2.6790966666666667,2.8748733333333334,2.03016,2.9064099999999997,2.14644,3.1292566666666666,2.3154133333333333,5.756683333333333,2.3263275,1.96268,2.28497,5.0243986666666665,3.08949,3.08949,2.4527266666666665,3.86887,2.2136375,3.39797,3.053155,0.6380293333333333,4.215945,2.154495,10.985995555555556,7.07858,3.03083,3.092645,3.314135,4.93592,2.860795,3.40875,0.23344866666666667,2.1830625,3.8160333333333334,0.918075,3.781565,1.399722857142857,4.45047,3.340475,3.373245,2.884845,4.76783,2.18754,4.791565,3.847065,4.99324,7.43338,3.855855,2.95067,3.0781566666666667,1.6244800000000001,1.97361,4.34273,4.31257,3.9489475,2.63724,6.0518,1.562326,2.972335,2.59463,3.928655,10.948365,3.557655,6.838699999999999,3.85757,5.0122,0.96292,4.867607,5.1463,2.4480233333333334,2.6655333333333333,3.740766666666667,2.87537,2.38189,1.7171066666666668,1.8766566666666666,3.677915,1.725842,2.807793333333333,5.063852,2.754326666666667,1.2178607142857143,1.2178607142857143,3.58155,3.1158705,3.1158705,3.2813533333333336,2.8154766666666666,3.4384799999999998,3.6787666666666667,3.479033333333333,2.6554533333333334,2.3230766666666667,2.34573,3.00812,2.19968,2.5992366666666666,1.644716,5.6345410000000005,10.028465833333334,0.6130930769230769,0.6130930769230769,0.6130930769230769,0.7030148951048951,0.7030148951048951,0.6130930769230769,3.6620666666666666,2.9728833333333333,4.239775,1.4813883333333333,1.74615,3.230126,2.3827833333333333,2.9921633333333335,2.27637,3.1498066666666666,3.770633333333333,7.481156666666667,3.0292999999999997,2.57092,3.6850666666666663,4.37162,3.0058166666666666,3.2945333333333333,5.64605,2.2368133333333335,3.3521,1.36588,1.36588,2.775873333333333,0.4920126315789474,2.51763,2.796196666666667,3.159473333333333,3.3793,2.2445999999999997,1.5550466666666667,2.9427633333333336,2.9795166666666666,2.362083333333333,4.309075,2.582901,3.918165,3.095515,4.261095,0.508251,8.225481666666667,3.052174,3.052174,7.883819166666666,1.7353666666666667,2.26795,2.8096666666666668,4.853775,2.3638966666666668,1.9917033333333334,2.668176666666667,1.3598175,3.3144466666666665,1.7874299999999999,2.9500159999999997,1.31026,0.2670977272727273,0.2670977272727273,5.20045,4.1683,4.26083,2.934806666666667,3.626585,3.71687,1.3772866666666665,6.3283,3.73165,2.884235,1.85431,1.1095966666666666,2.205865,2.8096666666666668,2.508685,2.039445,5.687455,5.6903,4.189035,4.56412,2.13895,0.6744708333333334,7.451155,2.1187825,1.6321325,3.620995,4.34545,2.214095,1.8394166666666667,4.68017,4.59298,3.5749333333333335,3.1263199999999998,4.3484,4.658185,3.4364000000000003,2.552072,2.552072,4.13422,5.0209,6.1053,6.701253333333334,2.65599,4.778265,1.345902857142857,2.25476,4.56161,3.85497,1.784,3.94513,3.4015275000000003,4.72199,1.953795,4.159855,4.946055,5.8514,4.604205,2.4502866666666665,2.58474,3.8356666666666666,1.9948499999999998,2.432205,3.156836666666667,2.481473333333333,0.8692529999999999,2.08602,2.7288833333333335,2.378933,4.21837,4.467985,4.794215,4.173005,3.703155,5.3124675,12.840789999999998,5.29005,4.462485,4.661775,3.906715,4.76861,2.964926666666667,3.191699333333333,3.791066666666667,1.284275,2.90704,2.917245,5.06955,5.6407,4.50915,3.215056666666667,2.60211,2.3767833333333335,4.174133333333333,4.39404,3.725733333333333,4.39404,3.070897,2.30178,2.4601516666666665,2.3824275,2.85582,1.7565733333333335,0.7957133333333334,1.5805183333333332,1.6600533333333332,2.52868,1.58104,1.2703333333333333,1.7034900000000002,2.84836,1.525182,3.173273333333333,1.2934933333333334,1.6277100000000002,4.42416,3.9792666666666663,2.4845,2.5915433333333335,2.37711,3.118125,2.065865,2.8907900000000004,2.93763,2.3940066666666664,3.01348,2.955895,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,0.1385074193548387,4.881545,3.97616,1.019847142857143,3.1781900000000003,2.5985633333333333,2.8329633333333333,3.300545,2.950813333333333,4.53824,3.432432,1.880442,3.3028133333333334,1.5588416666666667,1.06189125,0.994847,1.2140783333333334,0.920265,0.7589816666666667,1.299778,3.21921,1.713468,1.6710666666666667,1.94454,2.656847777777778,1.33697,1.3331466666666667,1.5916383333333333,0.8984983333333334,1.249355,0.7311483333333334,0.906884,3.178475,3.563425,3.97176,4.40861,4.004325,2.9007433333333332,4.83745,3.9716,1.75968,3.44284,1.952205,3.452635,2.639133333333333,0.7844763636363635,4.2706,4.421145,2.5700833333333333,1.222745,2.84105,3.343095,3.7578383333333334,2.9090000000000003,2.35841,0.83569375,2.053515,5.3501925,3.720305,2.36624,1.4734516666666666,3.71281,2.153105,0.7129845454545455,3.872425,3.629055,3.87665,2.22264,1.290716,4.30873,4.2969,2.4979299999999998,2.549436666666667,2.45849,2.68148,2.6927800000000004,2.87275,3.1857100000000003,1.337075,2.8003,2.5299033333333334,5.4313,4.469375,3.734375,4.47597,16.13098964267677,4.69789,4.504433333333334,2.794435,4.005615,5.36205,1.4606,2.561125,2.6261433333333333,6.67197,4.304895,5.42485,5.53595,2.6261433333333333,3.96703,2.06753,2.5914266666666665,2.8981066666666666,2.818986666666667,1.2682316666666666,4.685635,3.806175,2.596735,4.15933,2.5816433333333335,2.71184,3.61362,3.026445,5.64415,4.74864,2.71951,3.56958,2.634085,2.55435,1.65816,1.65816,2.5683599999999998,2.4106033333333334,0.2429792857142857,5.449088,0.9475619999999999,3.62801,3.964885,0.564515,5.09035,8.114053333333333,1.815615,3.600955,3.787355,3.2479533333333332,3.271645,2.29022,2.92134,3.40738,4.12166,3.059955,3.9212666666666665,0.9880083333333333,11.55866,3.07408,2.87185,4.28824,2.486685,3.940865,7.896445,4.292765,4.501815,4.36356,4.237115,5.4306874999999994,1.4966425,3.2463533333333334,4.69097,4.0165999999999995,1.96434,3.75771,3.79265,3.64517,3.88045,5.26695,4.246515,2.5032050000000003,3.929175,3.83451,5.4625,4.11609,2.1569533333333335,2.3213399999999997,2.2181433333333334,2.9783899999999996,1.2744133333333334,3.3305333333333333,0.8493745454545455,3.5063999999999997,3.2277,2.51229,1.6369233333333335,4.646165,4.32049,4.096555,1.86256,4.53291,3.898195,0.7247122564102564,0.33112692307692304,4.264275,4.775875,1.057655,0.33112692307692304,3.065065,0.7247122564102564,0.7247122564102564,0.33112692307692304,5.745973333333334,2.604573333333333,2.3738466666666667,5.8193,3.19549,3.130595,0.7903444444444445,3.286095,3.83778,4.33968,5.5037,2.15844,0.7484807692307692,4.686785833333333,2.7454633333333334,1.541286,2.0541725,1.1041971428571429,2.55504,2.3793866666666665,3.71738,5.1449,3.3537666666666666,3.9664,3.05382,3.0866399999999996,2.85621,4.17033125,1.423275,1.9620225,3.82194,5.2389,2.290191527777778,5.0715,2.57109,4.11025,4.21571,3.326315,1.2056425,2.939645,5.36345,3.45975,3.60584,4.642175,5.6793,2.918,4.17722,4.442455,3.06945,3.41962,8.1583,3.700265,4.8531925000000005,2.05148,1.29868,2.693376666666667,1.94886,2.23026,1.856265,4.92559,0.73225,3.576455,3.725205,1.8637,2.8508333333333336,4.95972,3.60865,2.896265,4.356365,5.73175,9.526259333333334,2.64096,2.720383333333333,1.655662,1.7838,1.2377733333333334,1.4087833333333333,2.989216666666667,2.53184,2.887653333333333,4.324813846153846,1.50559,2.3942799999999997,5.4672,5.7463,3.862355,3.511455,2.89829,2.50109,2.081205,2.033625,1.8129600000000001,2.064665,3.431585,3.84735,5.13045,5.15785,4.46264,5.934654583333334,3.626235,2.365845,6.559020833333333,3.547705,8.31915,4.822392499999999,4.822392499999999,5.56664,1.6170600000000002,1.3705025,3.1939100000000002,0.736736,5.2194,3.896433333333333,3.4589725,3.4589725,1.994096,4.54625,4.408435,4.48569,4.638775,2.8648466666666668,2.590995,4.35299,3.0858933333333334,5.065363333333334,4.60081,0.8128354545454546,6.1159,4.910675,4.914305,5.5479,2.936565,5.18275,4.137305,0.8433615384615384,4.887275,6.554388333333334,3.205775,5.4439,5.8148,3.325495,2.61848,3.775055,6.06715,2.0770125,5.70285,1.8964,4.788495,2.488236666666667,2.03152,0.938231,3.975295,5.6905,3.121225,4.18713,2.07297,3.81573,8.081976666666666,3.533335,4.021625,2.50121,2.66131,0.907512,5.33345,1.6172133333333332,3.6994066666666665,3.6994066666666665,4.254125,2.3792666666666666,3.3534,4.209685,1.7635175,3.079776666666667,3.5005666666666664,3.27507,2.783105,3.897355,2.761315,1.824805,3.5763,1.99724,2.681756666666667,1.95969,3.0607333333333333,2.93387,1.3357928571428572,1.6494799999999998,0.49272166666666667,1.268945,0.49272166666666667,0.49272166666666667,1.6494799999999998,0.49272166666666667,3.9439666666666664,2.346478,2.346478,2.95693,5.4348,4.57817,4.40701,5.3862,4.96184,3.378995,4.569205,4.62863,1.908185,2.551028666666667,2.8221933333333333,0.7773109090909092,5.6161,3.1678933333333332,3.232506666666667,5.70485,3.6597425,5.51795,3.414645,2.60288,2.96245,3.3363,2.5422366666666667,2.68437,2.0446833333333334,5.4511,0.8629422222222222,4.037935,1.2683042857142859,3.476,2.943686666666667,3.569433333333333,4.06388,4.40061,4.170925,4.45771,4.02905,4.332505,4.661895,4.23772,2.516025,2.741775,3.364433333333333,4.083705,5.56035,3.8384,2.62749,3.153565,3.112353333333333,3.208635,4.296555,5.0649,4.043895,67.85247434002109,2.673615,3.877825,16.695509,3.9416,3.08667,2.90647,1.8614766666666667,2.63905,4.8476675,3.02523,4.7193725,6.58995,3.316235,7.485111666666667,5.17855,2.530225,3.15971,3.894725,3.368865,1.918478,1.274175,4.550795,2.875815,6.013778333333334,3.679655,2.3651833333333334,3.54321,3.7775,4.403875,3.17456,5.6834275,4.372045,3.298105,3.1364,2.3443725,2.63318,6.05225,3.998415,3.82791,4.281115416666666,1.1536716666666667,2.747325,5.2274424999999995,3.922105,3.205525,3.53707,3.163335,4.38146,3.036815,3.40354,3.862295,4.40524,2.975095,2.826905,4.45486,9.295645,3.19191,4.12217,6.44067,3.155355,2.46735,3.92433,1.9817600000000002,2.933676666666667,2.848732,3.813735,3.18313,3.951425,3.36354,3.300675,3.97598,3.766475,4.203165,3.85959,3.860105,3.52001,2.8832216666666666,2.8832216666666666,6.556585,1.617455,3.31654,3.39325,2.386075,4.6472,4.113235,3.01464,3.190865,4.92181,6.811415,0.7184754545454545,4.504755,2.29893,2.901396666666667,2.7769433333333335,5.57975,2.65998,1.9565525,1.22854,2.1313203030303027,4.028095,4.3851,3.888165,6.46715,5.0416,6.40685,2.40553,1.80736,3.760985,2.90633,3.08071,2.1059933333333336,1.326345,3.051353333333333,3.105313333333333,1.6664100000000002,2.477113333333333,2.443035714285714,3.5464436263736268,2.740005,5.32065,3.32463,1.3508825,3.974545,3.353935,5.33245,5.06285,5.1151,4.431875,2.0058433333333334,1.4797133333333334,0.5864657142857144,1.49582,3.41284,2.52593,3.703313333333334,1.5359233333333335,2.58242,2.3752,3.409285,3.36854,3.69668,4.01182,1.6363075,1.3682525,1.8990175,2.111805,1.42131,2.62485,7.0094658333333335,4.788775,5.17825,2.894085,7.637490000000001,4.89036,3.219435,3.11819,3.39664,2.68875,3.573765,2.2487666666666666,7.10808,0.8970016666666667,3.30869,6.44745,4.02437,4.927905,5.59535,1.5232266666666667,3.4068,3.1209366666666667,2.9305133333333333,1.804575,3.976065,8.56472,4.56989,4.310745,3.976295,3.2463,4.914,0.8712300000000001,2.7669833333333336,5.4289,6.380083333333333,4.42992,5.10735,2.90449,3.9117333333333337,2.94768,5.0868,4.68143,5.698611952380952,5.698611952380952,0.8917142857142857,3.8874666666666666,0.934366,1.1282816666666666,1.9439575,3.7033,3.932892,5.161904857142857,2.035293333333333,3.0278648571428572,2.9435028571428568,3.17508,2.62339,4.636333333333334,3.1968266666666665,1.876045,1.876045,3.470755,2.956253333333333,2.7039266666666664,3.72079,3.33123,0.6915366666666667,3.367266666666667,2.7114366666666663,2.966343333333333,2.7604966666666666,2.620925,2.4352666666666667,3.182316666666667,3.1993833333333335,0.883415,2.7019800000000003,6.353320285714286,2.1867,7.848194166666667,1.553146,1.553146,3.5299086666666666,3.346633333333333,3.4797999999999996,3.0850899999999997,1.7197179999999999,1.3157714285714286,3.2411166666666666,3.430266666666667,1.5621783333333334,1.6237,2.93727,2.8392239999999997,3.0189733333333333,1.775595,2.160125,3.03903,2.20839,2.815155,3.433,1.706745,3.649245,3.150885,6.92056,4.740595,1.744845,4.020245,2.66801,2.11671,3.885655,2.6270666666666664,2.646905,6.8909275,0.7961230769230769,0.6480391666666666,4.95483,1.452444,1.452444,3.911405,2.450105,5.14095,3.704915,1.4204366666666666,2.575364,2.7739666666666665,2.5697923333333335,5.1375,2.76741,2.635056666666667,2.46176,1.516625,1.516625,2.57539,3.89864,3.766166666666667,6.3668,3.2087066666666666,5.26555,4.758945,6.9157,4.915725,2.439475,2.738186666666667,2.6350466666666668,2.6011533333333334,0.7146188888888889,0.7146188888888889,0.7146188888888889,3.14902,4.678505,4.162215,1.14842,1.14842,5.29305,6.4626,7.48821,22.830037555555556,12.4292,8.3243,3.885825,5.7537,2.459195,4.713265,2.5061833333333334,3.365266666666667,4.446533333333334,5.560402,2.108805,2.32171,6.70533,2.2035799999999997,2.2035799999999997,6.8474,3.688325,4.458195,1.9156575,4.9271275,4.90184,4.569835,5.41915,3.980815,1.8039033333333334,6.2945,9.26575,1.8039033333333334,1.9156575,2.04419,0.84931,0.84931,1.78463,2.34614,1.78463,5.2071,5.9951,6.2672,10.098,1.9156575,11.741544166666667,6.35515,6.3557,2.459195,3.251335,4.83975,9.69807,3.117205,4.267235,6.23695,3.515275,5.31825,6.36625,5.02905,5.52225,5.5862,2.50155,5.4174,3.84725,4.388385,4.12844,0.78447125,1.501474,3.017895,5.49555,4.82449,2.754326666666667,2.1054375,4.17374,5.04705,5.83295,5.3052,5.37715,4.33088,3.189565,4.191935,3.74606,2.06497,4.911805,1.889475,2.53061,3.4018,2.4380166666666665,3.897565,4.611685,3.555525,3.5526383333333333,3.011655,6.7517933333333335,0.9667944444444445,3.317865,2.327625,1.554857142857143,5.666148,1.6537833333333334,1.38183,2.7681166666666663,2.833322,3.10127,2.858586666666667,2.08836,0.7582336363636363,2.3180333333333336,2.46775,4.120325,0.7843076923076923,7.800996666666666,1.7956466666666666,1.130088,3.6976,1.130088,3.833685,0.8277054545454546,4.38554,2.9282333333333335,1.87249,4.375494,4.1592115,4.1592115,5.0546,2.6763,3.222388333333334,2.6725666666666665,1.7332319999999999,3.8472,3.68807,1.9939133333333334,0.8001041666666667,7.507812692307692,2.735075,3.68442,4.300655,7.47364,2.734825,4.044025,3.74741,3.050945,3.791355,5.80025,6.57359,3.94855,5.40955,5.46035,2.9503033333333337,4.642175,4.0556,4.54039,1.1432333333333333,0.5033014285714286,3.08606,3.384866666666667,2.869543333333333,5.71905,3.807485,4.47925,5.0643,4.784505,3.898585,4.56634,1.1941700000000002,2.12335,9.493333333333332,2.4255333333333335,1.8904566666666665,3.85382,12.233933273809523,1.511485,5.13025,6.19985,4.74401,3.19294,2.2251266666666667,3.2769866666666663,4.16452,1.0985366666666667,3.498366666666667,3.881815,0.4400884210526316,2.210713333333333,5.1909,4.37223,2.40639,4.134845,3.038345,4.971182499999999,1.37664,0.5447954545454545,3.5945424999999998,1.2017399999999998,1.07519625,1.07519625,1.07519625,1.07519625,1.5150949999999999,2.6120033333333335,2.57865,3.314133333333333,5.52915,3.5591000000000004,4.80588,3.52446,4.20348,3.55253,3.88121,1.3910866666666666,7.33268,2.29778,5.2853,5.381403333333334,5.0683,5.211987499999999,3.3676,2.8107966666666666,2.69819,3.70504,1.1888699999999999,4.959643333333334,2.5729833333333336,5.0329,3.038456666666667,2.5781666666666667,3.70489,3.539605,2.87958,2.4303500000000002,2.803926666666667,1.499535,0.44650999999999996,4.87568,3.24882,4.02521,3.462975,3.89012,5.9442,4.38207,0.5388461538461539,3.337126,7.800609333333333,2.193163333333333,2.27032,5.698598333333333,4.980775,2.8014266666666665,4.9144,5.2589,3.995125,4.77334,4.420265,5.2677,5.0821,4.905285,3.445075,5.3978535,1.514278,1.6296666666666668,4.31656,3.772095,4.64183,3.154385,5.21225,5.20945,3.825405,3.20964,16.19454873119234,1.3554235259497056,1.184915,1.9779668181818182,0.50583125,0.5193306666666666,1.4306125,0.328564705882353,1.320774,3.0649433333333334,1.369634,0.9502,2.1163558333333334,0.8948833333333334,2.1163558333333334,2.1163558333333334,0.8948833333333334,0.8562923076923077,0.6865607142857143,2.89661,2.57406,4.571885,4.66467,2.84212,2.6603,4.08281,5.30415,5.4004,2.826315,4.37929,0.7610142857142856,2.3347153333333335,8.789988333333334,4.612355,6.9508383333333335,2.67597,3.862315,2.35786,5.42245,5.38555,3.064965,4.249295,2.79111,0.9914866666666667,4.597065,5.23945,0.861464,1.266048,1.6093149999999998,2.3154033333333333,2.53068,4.26791,5.58125,2.2498925,2.2498925,3.576781944444445,6.27274,2.10907,0.6476936363636363,0.9572957142857142,2.127353333333333,3.7144999999999997,0.9901057142857143,0.9901057142857143,0.9901057142857143,0.3748730769230769,1.0864328571428572,3.177875,6.5402,4.0869333333333335,4.275868333333333,5.49325,1.0958999999999999,3.5317333333333334,3.3708666666666667,4.048033333333334,6.03615,2.8539133333333333,7.788933333333333,5.24175,1.1962666666666668,3.8465333333333334,1.934044,2.69719,2.34877,6.9248199999999995,2.85375,4.568345,2.3244225,4.405425,4.279535,4.52027,0.42539666666666665,2.7767166666666667,1.3869433333333332,2.596973333333333,4.0198426666666665,2.09145,2.7466833333333334,2.2198266666666666,2.50209,2.5060866666666666,2.7160233333333337,2.738713333333333,3.0782333333333334,1.345496,2.30694,2.6218,3.13381,2.6585733333333335,2.131435,1.81315,1.91137,1.7814,3.247875,2.223123333333333,2.80266,2.148406666666667,2.30997,2.78929,0.8277444444444444,0.8277444444444444,0.8277444444444444,2.8236899999999996,2.5437833333333333,2.999166666666667,3.0161200000000004,2.583536666666667,1.9013566666666666,4.09263,3.5399916666666664,1.354535,2.5580333333333334,2.8165099999999996,3.3867000000000003,1.586342857142857,7.0337,4.72037,3.142965,3.9124,3.33172,1.7072975,0.5263971428571429,3.038895,3.705145,3.3867000000000003,4.79993,4.16441,5.5403,2.920916666666667,3.985045,4.186355,0.833488,2.84991,3.33192,4.7272091666666665,4.826895,3.561855,3.154965,2.327215,2.0597766666666666,2.59531,0.6248925,5.616804166666667,2.641075,4.632805,2.81836,3.82622,2.810313333333333,2.365886666666667,2.887031,2.887031,2.6077766666666666,2.1603333333333334,2.6598366666666666,2.0253866666666664,4.558755,1.44078,2.51707,3.636435,4.27496,3.983225,5.37675,4.82438,2.5562,1.994635,3.164715,3.08213,4.313015,4.969985,2.850115,1.0009657142857142,1.0009657142857142,4.398,3.9173679999999997,0.947138,4.33979,0.947138,4.268825,3.988205,5.05915,3.51693,3.066755,6.156835,4.291645833333333,5.8802,0.9754928571428572,0.9754928571428572,2.16158,4.791758333333333,1.5288583333333332,3.2629,3.36093,1.1108557142857143,4.399735,4.27308,6.059775,6.059775,1.0987633333333333,4.26065,5.29395,5.4064,6.2724,2.121495,2.121495,7.1921,1.0382090909090909,7.26715,1.8432,6.350630000000001,2.43979,2.4097233333333334,3.52348,1.59737,2.1362033333333335,2.55127,2.9816299999999996,2.9073702380952384,6.631132000000001,1.966038,5.00385,3.17986,2.621376666666667,1.7904,2.18902,3.298055,3.465775,3.47303,2.761525,2.298745,2.146725,2.573725,1.052554,3.14709,2.104685,3.20213,2.114801,2.114801,3.042895,2.1836266666666666,3.777605,3.563075,5.16635,7.657536666666667,4.226655,3.38584,6.448342500000001,1.91145,3.3211166666666667,2.18525,1.5594714285714286,1.75403,4.48494,1.6564516666666667,0.499075,0.6362983333333333,4.110615,4.488035,2.87712,0.9588122222222223,2.978725,2.8352033333333337,5.31865,2.02938,1.8767,1.1492111111111112,4.943915,3.12266,4.705165,0.632428,4.285749583333333,4.4955,4.18881,4.561185,3.451515,3.764445,3.1408,5.3594,3.590245,2.611326666666667,2.599693333333333,6.081366666666667,6.66092,0.74632,4.244065,3.966755,5.31865,3.7975999999999996,3.6859333333333333,2.861175,3.4401666666666664,3.8881333333333337,6.26182,2.8392239999999997,2.59602,3.45436,5.1958,2.59778,2.4890025,8.291586666666667,4.62184,2.1448833333333335,4.883895,4.5469,1.7751639999999997,3.78327,1.5103875,1.8062714285714285,4.32595,3.762415,5.75365,3.3493666666666666,4.450375,5.46655,6.4646,4.4225,5.11665,3.997595,5.52865,4.66325,4.591025,1.101505,1.101505,7.77314,0.748635,1.974059246031746,0.748635,0.6769683333333334,0.38823888888888886,2.6510275793650795,2.51802,0.48979285714285714,1.974059246031746,2.126355,3.326525,2.1612347222222223,3.41913,4.470735,7.205195,2.0629,2.018875,2.152965,4.9565,5.3688,1.785645,1.8587975,1.85097,3.7097675,4.120235,2.47248,4.429225,6.482927500000001,0.4543011111111111,3.822745,0.752399,2.9375633333333333,2.4548725,4.07703,1.2831,4.18977,4.7251375,4.230295,3.108935,4.19554,5.6239799999999995,1.809495,3.231055,0.7225761538461538,2.81761,2.40451,1.218254,3.0946933333333333,2.458486666666667,2.473333333333333,6.34915,9.165495,2.9634845454545453,3.608545,3.283015,7.65067,6.123005833333333,3.385533333333333,4.05923,3.46368,6.30005,5.88175,5.64005,6.20585,4.037975,6.0656,2.632353333333333,1.5699175,1.7971899999999998,2.3392933333333334,4.048365,2.4104033333333335,0.22183000000000003,0.22183000000000003,0.22183000000000003,30.71359980952381,0.22183000000000003,2.7463300000000004,0.22183000000000003,0.22183000000000003,0.22183000000000003,3.2891833333333333,4.088125,0.22183000000000003,0.22183000000000003,0.22183000000000003,0.22183000000000003,0.22183000000000003,3.2057,5.05834,2.97976,0.316974358974359,0.316974358974359,4.38257,4.309058875,4.368420208333333,3.346148652777778,4.14751380952381,8.045933333333334,11.160082225718726,6.894000666666667,8.670693333333332,6.710051339285714,2.775873333333333,6.374676666666667,4.482936666666666,4.576348012820513,0.316974358974359,7.991926666666666,6.832547619047619,7.0228600000000005,2.4228175,8.559561839285715,15.442024434523809,17.53089480540293,56.363744591806885,119.03719800440817,1.36588,3.3521,3.169,3.9272662380952377,0.316974358974359,1.7885205128205128,8.364803333333334,15.023713297619048,19.736708888888888,49.409672383876355,13.212588172619048,2.780175,0.2672779310344828,0.2672779310344828,4.339343333333333,2.6503866666666664,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,0.2672779310344828,6.02668,0.2672779310344828,0.2672779310344828,0.2672779310344828,2.89268,2.104363333333333,4.368325,3.665025,4.034079999999999,5.6216,2.4491275,4.1384,5.05435,3.12825,1.5254933333333334,3.488005,1.01223,2.2528675,2.1679666666666666,5.224733333333333,6.574943333333334,2.83107,5.964948166666667,0.45601166666666665,0.495718,2.53099,2.9193700000000002,2.941445,4.29301,3.20236,7.57274875,3.57928,3.39627,3.24757,4.05791,3.246555,3.214615,5.0278,2.22514,0.4711246153846154,0.8714827272727272,4.374855,1.82889,3.747725,3.71236,4.497895,3.56982,2.551775,2.583875,0.5772773333333333,0.802234,4.136245,2.6284733333333334,4.41102,3.883505,4.450481666666667,2.76099,3.0159,5.38835,5.1399,3.044425,0.901460909090909,2.9572066666666665,3.75026,2.181165,0.94229,1.6695566666666668,3.68688,5.3899,1.85795,2.820415,4.15823,4.78874,2.517565,2.4275266666666666,2.57086,3.87041,2.376825,4.007425,0.7028085714285714,2.2244466666666667,3.17166,1.723055,5.968148333333334,4.21769,4.340595,5.0819,2.76653,1.9867,0.6249554545454545,4.927335,4.16665,4.932935,2.4873,4.62208,3.749765,2.86168,2.027356666666667,1.3337357142857142,4.96761,1.9607,2.73575,9.20648,4.583755,4.974255,3.4632,0.9201666666666666,2.961225,1.221992857142857,3.237385,6.6961,5.4432,4.982455,3.95159,5.29835,4.472465,1.83077,1.8210199999999999,5.36115,3.149986666666667,3.5810999999999997,2.372605,5.04895,4.90251,1.4628933333333334,3.4407333333333336,2.76589,2.7889,3.08646,9.32083,4.42567,1.7162,4.789255,6.23529,4.208405,3.966695,4.053265,4.433555,4.90783,8.248535,2.3375,2.85187,3.67199,4.344035,2.78679,3.144395,4.69073,3.88241,3.624085,4.144017333333333,18.563386333333334,2.85458,2.34239,3.3157766666666664,5.631394666666667,1.0552775,4.49572,1.9838275,4.71307,1.535705,4.372075,4.18097,3.84872,0.9559175,4.34049,4.562075,1.670305,4.633789545454546,4.768905,1.1514614285714286,3.652905,2.090205,2.291955,1.566525,4.200245,3.783575,4.73172,3.616795,3.0849266666666666,4.369915,8.008616666666667,4.753835,5.0433,5.3237,3.2912233333333334,4.51561,5.24975,6.708368,0.9123279999999999,0.9123279999999999,4.616155,4.57101,2.5727766666666665,1.5763266666666667,7.459795000000001,4.20912,3.980215,3.85697,4.517855,4.808195,3.479745,3.962425,6.470159,4.34309,4.83502,5.1041,1.5392142857142856,2.8246,4.501895,5.34205,3.3926974999999997,0.1947175,1.9192275,2.4742375,2.5459466666666666,2.03672,1.0266377777777778,1.33395,1.2540225,2.26608,0.6057744444444445,1.4459428571428572,1.954465,3.750825,3.7664333333333335,2.3954999999999997,3.034993333333333,2.908103333333333,2.7775933333333334,0.663878,0.944395,3.52895,4.7316,4.167545,3.34255,4.481605,4.818,4.88051,2.26774,4.201725,5.134,4.54914,6.358435,3.89921,0.5082947058823529,5.74225,4.557175,4.465795,5.27375,3.178695,2.03352,3.61735,4.11841,2.85223,5.192879166666666,4.359925,1.3725116666666668,5.192879166666666,3.927,6.7240625,3.950655,1.2589555555555556,3.694715,5.25285,4.20791,2.714793333333333,5.5653,1.433795,1.9912325,3.9149,3.40393,0.7771144444444444,4.859865,4.89632,3.81124,4.12036,3.17151,3.3535333333333335,1.87575,2.320275,3.16379,3.49422,4.236933333333334,2.4671333333333334,2.2264675,2.1490663333333333,5.254,1.5032857142857143,0.8313999999999999,6.59267,4.080915,1.445018,2.797223333333333,2.7013,3.3707,6.9072499999999994,2.5186144444444443,0.889651,2.802675,4.95216,2.666166666666667,4.594785,5.6219,4.978505,4.503615,4.00148,5.44285,2.1223233333333336,2.2376566666666666,1.6458766666666669,2.12258,1.86932,2.55033,2.248136666666667,1.7382925,2.6849,2.939715,3.836855,6.3303,5.3635,4.252655,4.51362,3.86204,4.54993,4.407315,0.90781125,2.52459,5.18315,1.16543,0.6956,4.584725,3.92696,2.4199800000000002,3.2873300000000003,6.605074999999999,3.99719,1.03346,1.3011057142857143,0.6792977777777778,4.017839166666667,2.2305466666666667,2.7244466666666667,1.1878528571428573,3.4911666666666665,2.582273333333333,5.6304,4.874345,4.516115,5.22665,3.697045,1.3043916666666666,3.625115,2.2335966666666667,3.58245,4.087385,3.73406,2.8224733333333334,3.3427000000000002,3.0441633333333336,5.07745,3.84102,3.18016,2.41708,8.32715,10.683394999999999,4.376525,1.2895771428571428,5.6245,4.52363,5.2593,4.310185,4.125315,3.736885,3.2834,4.14529,3.672526770833333,5.0865,3.62269,4.077465,4.51004,1.997398,4.986125,5.81615,4.77377,3.1833,3.25298,7.084195,0.68683,2.6094033333333333,2.6645166666666666,2.2701266666666666,5.1843,2.81893,1.4385583333333332,4.496335,3.7809000000000004,3.590825,4.89471,3.7104833333333334,6.80001,3.25149,3.026453333333333,3.3549333333333333,3.0108566666666667,4.055075,2.06662,2.097306666666667,3.190136666666667,3.92269,3.4580650000000004,1.9561425,1.5785975,3.4470489285714283,3.083114,1.029647777777778,2.6281166666666667,2.6281166666666667,1.35368,5.92225,3.093485,3.23848,3.54133,3.381725,3.317205,3.255565,3.07942,3.14085,2.3777733333333333,0.560636,3.19151,5.8346475,3.123455,3.716355,3.161695,4.046375,4.11083,3.123825,3.070155,3.50587,3.734845,3.0852,3.622625,3.57552,2.5324833333333334,4.00754,3.856015,8.66476,3.435105,3.54552,3.19233,4.01472,3.96019,3.496405,2.302995,3.552885,2.617005,3.153755,2.911875,3.061905,3.797165,1.86564,1.86564,2.20976,3.081335,3.125705,1.510698,2.38006,3.517565,1.6913399999999998,2.94174,1.510698,4.627425,2.969835,3.81443275,3.02661,3.36177,2.31487,3.328815,3.956085,4.62305,3.143035,4.39095,3.69919,4.19763,3.580625,2.98943,3.159125,3.75323,3.914775,2.6109633333333333,3.702985,4.8335,3.904265,3.62397,0.39307826086956527,3.56961,0.4552866666666667,3.768005,3.563365,2.92604,3.689245,3.711035,5.987584999999999,3.182835,2.5187233333333334,2.2896733333333334,2.788233333333333,0.882284,6.278565,3.063095,3.45737,5.21165,2.02201,2.579405,3.264855,3.186385,6.605729999999999,4.479,5.14395,4.15107,4.436345,4.56728,3.44947,1.4324066666666668,1.582524,3.900835,4.58222,5.7936725000000004,2.4344333333333332,4.76638,1.79437,3.5673999999999997,3.53336,1.8985609523809526,3.94531,4.49328,3.5155666666666665,3.9273000000000002,3.328863333333333,4.366795,4.98349,3.3942666666666668,4.39155,4.97629,4.97765,5.0175,4.65559,4.07863,3.14409,4.668835,2.712525,3.3026400000000002,3.3026400000000002,4.3545,2.6880966666666666,3.893005,3.1344066666666666,4.185585,3.5227,3.40163,1.854095,1.8425733333333334,1.16234,1.16234,1.880256,3.5291,1.7019866666666665,2.79828,4.718735,5.094074,3.5511666666666666,4.60425,5.78241,2.996835,2.9658,3.3341999999999996,1.5199,4.42556,3.965325,5.942667500000001,1.7571899999999998,5.6642,5.7361,3.3717666666666664,3.254005,4.290455,6.51113,2.46684,2.4722525,4.16483,0.46885571428571426,4.532455,3.924885,4.89174,3.717215,4.01157,1.653174,1.658924,3.89029,4.125735,2.3681933333333336,3.74237,4.49722,4.123585,1.21623125,3.68933,4.341635,3.660275,5.2316,2.9834066666666668,5.41026,3.741965,1.546878,3.551405,1.2216266666666666,2.66349,8.014363333333334,3.26011,0.8236409090909091,3.516835,4.629465,4.22343,2.2179725,2.2179725,4.82393,5.8132,2.96001,0.49185000000000006,1.916725,4.36306,4.40811,4.423185,1.728522,2.7749666666666664,3.475165,1.1723441447368421,1.1723441447368421,1.1723441447368421,0.7307253947368421,1.308800394736842,0.578075,1.1723441447368421,0.7307253947368421,0.21874789473684209,0.7968228947368421,0.21874789473684209,0.5119775,0.5119775,0.5119775,0.5119775,1.1352054999999999,1.07722625,2.3304133333333334,2.31009,1.1048883333333335,6.148944999999999,2.65057,5.870583333333333,2.8992233333333335,3.85919,3.01955,3.179285,2.59106,4.85813,2.7273833333333335,4.53115,4.01267,4.587045,2.3630725,3.96104,4.900125,3.981325,3.379395,4.882635,3.36505,4.50068,5.3683,5.23495,6.01015,4.778455,1.19278625,4.323595,3.79172,2.514975,16.033535,4.27609,6.05805,2.8677799999999998,7.29815,3.884705,4.73961,4.503665,3.332005,1.0166825,2.53773,4.002145,4.54008,4.912225,3.18211,4.022835,2.87306,3.930675,4.87585,4.07666,6.485126666666667,9.32091,1.2710371428571428,3.506315,4.110315,3.48355,3.42814,3.61936,7.08535,2.793305,3.21541,2.617625,3.828445,3.60105,4.75168,2.377745,1.7110025,0.880518,4.98554,4.84454,3.86736,4.358545,3.7665,4.90987,3.76933,6.3201,5.34755,3.980145,5.21575,3.64994,3.09471,3.20839,3.45205,1.7321125,3.882495,4.73278,5.01255,4.855577500000001,4.855577500000001,2.320085,1.7321125,2.417375,3.19978,0.6835883333333334,1.5296983333333334,0.84611,1.5239675,2.77273,0.389191,3.154055,4.524885,1.5239675,3.1253655,11.17399,6.550325,2.3560958333333333,1.04619,1.6589166666666666,4.541005,4.22012,6.170340476190477,1.93389,2.18097,4.55738,4.420575,4.943515,2.0244566666666666,5.3512,3.7450666666666668,3.464135,5.17785,7.251746,3.83128,2.4720675,2.75164,1.5854033333333335,4.31308,5.696054999999999,1.75238,5.7843,4.24247,6.33044,0.5656106666666666,5.07991,3.777355,4.170645,2.41969,2.612815,6.94985,6.868633333333333,6.1117,1.8069333333333333,1.8069333333333333,1.8069333333333333,5.8872,5.45235,6.47135,2.85837,2.595585,2.4838807894736843,3.74322,3.101165,2.5094785,1.759645,2.5094785,6.8830885,4.340963333333334,4.258819761904762,6.48555,4.258819761904762,4.258819761904762,3.0350014285714284,6.21284,5.291347,2.810612,2.810612,2.603645,5.45145,2.736275,3.47725,5.3489570833333335,5.3489570833333335,5.3489570833333335,7.12373,3.5972524999999997,3.38309,3.5040750000000003,3.5051125,0.85402375,6.8937333333333335,2.55277,4.88857,3.341545,13.591163333333334,4.3203,5.430430833333333,6.58993,2.5861,3.35635,1.0586983333333333,5.430430833333333,3.325355,1.58806,1.58806,3.042365,5.175909166666667,1.724425,4.638308333333333,0.817333,1.3903316666666665,0.817333,1.9279325,2.541758,5.215897999999999,3.427,1.3903316666666665,3.032555,4.64977,0.913835,3.31303,4.31725,1.875205,4.069731666666667,2.609215,3.148375,2.51386,1.0009000000000001,3.65146,2.540425,2.155415,1.6365733333333334,3.1231683333333335,3.954205,2.891955,3.623995,1.2790288888888888,1.2790288888888888,1.2790288888888888,3.298825,2.60299,2.60299,2.757315,3.73719,2.1624966666666667,1.2483875,1.2483875,2.956345,4.3076574999999995,0.7999725,1.4156233333333335,2.803985,1.46759,2.8832133333333334,1.0009000000000001,1.0009000000000001,2.0743125,1.0009000000000001,3.2426641666666667,0.7585850000000001,3.2426641666666667,5.879905833333334,3.422645,2.30362,1.7022969444444445,0.6955083333333333,2.3978052777777776,3.46002,2.3978052777777776,0.8872744444444445,3.263455,3.758735,3.75637,3.17719,2.5148,3.581645,1.8773566666666666,0.9524266666666666,0.52264,0.9524266666666666,0.42978666666666665,0.9524266666666666,0.9524266666666666,4.696235,5.11525,5.08245,3.554455,5.03095,4.37747,5.58015,3.540395,3.81372,1.3486285714285715,2.3394233333333334,3.7019508333333335,3.802215,1.3816266666666666,2.7110266666666667,3.68263,3.798975,4.192795,3.83303,4.2542,3.228565,3.05598,4.268605,2.452993333333333,5.8434,3.54251,3.893825,5.003096428571428,1.0639819285714285,1.820235,3.417935,6.26,4.657665,4.329055,3.1085766666666665,4.93897,8.024435,3.4994,3.047425,3.4774999999999996,5.2818,3.985295,5.47065,5.31035,4.905145,3.27641,5.38505,4.642805,3.4748,8.185545,3.3273966666666666,2.59745,2.471006666666667,5.0662,6.59825,5.7791,5.81595,4.37239,5.11545,5.89505,0.52994,7.8035749999999995,4.638285,4.03545,3.905235,5.10905,4.299705,3.2398133333333337,2.4925875,1.38405,0.5800153846153846,1.843272,2.8590133333333334,3.552115,4.54715,4.780515,3.812665,11.928198333333334,3.584715,3.913585,2.966265,0.6915433333333333,5.40831,2.9109833333333337,1.5301433333333332,4.441126666666667,5.684473333333333,2.77349,8.27712,4.22144,2.4759700000000002,2.4759700000000002,2.4759700000000002,4.198295,8.8592,3.398655,2.3114425,2.3114425,3.318315,9.33167,1.0592375,5.37175,4.73016,4.172685,3.07253,2.17707,4.28936,3.86347,5.5908,5.89376,3.726615,2.73036,3.80301,4.38762,3.461264,1.3236375,3.1622299999999997,6.06739,3.4793425000000004,4.789015,1.02857875,3.795533333333333,2.64226,2.5402533333333333,1.797875,1.71913,2.05729,6.72585,1.945065,4.14162,5.86565,1.966038,4.68867,3.84558,4.48531,2.7230666666666665,2.27684,2.82113,4.736705,3.953246666666667,3.953246666666667,1.224315,1.63608,3.0805633333333335,4.442789333333334,2.2056507272727273,4.826981333333333,1.714508,2.73232,2.08853,1.5299225,1.5299225,5.03285,7.597696666666667,2.1967233333333334,3.2500400000000003,2.30969,5.2106,3.115425,0.772756,2.896485,0.772756,2.642265,3.29817,4.510075,6.1829,3.64696,4.708126666666667,5.9014,2.319155,1.9131799999999999,2.3807666666666667,2.2107566666666667,6.1079,4.892345,3.661655,3.6728,2.73074,4.71936,1.020385,1.0833439999999999,2.1242300000000003,1.4989866666666665,2.52009,2.726036666666667,2.2557066666666667,3.3137966666666667,3.053025,4.101485,2.528453333333333,2.379703333333333,2.6433733333333334,2.3930333333333333,2.6889299999999996,2.6778766666666667,1.94874,2.490936666666667,3.823635,3.40431,3.13441,4.019905,2.9105000000000003,2.34948,1.95602,1.3735799999999998,0.33965049999999997,0.15720739130434783,2.24266,2.0748533333333334,0.15720739130434783,4.171028224637681,2.294355,0.15720739130434783,5.961418125,2.331741666666667,5.80633,3.46084,3.661466666666667,2.205853333333333,2.96869,2.26937,4.26789,3.1108833333333332,3.2991533333333334,0.4393652631578947,3.9832383333333334,2.3955152631578946,2.861915,1.984595,2.4579975,4.359,2.674175,7.574445,5.39375,3.913035,3.7333,6.43603,5.52751,1.68963,3.907443333333333,2.032335,1.832295,6.95298,7.80537,1.12511,2.0868475,3.689265,2.622905,2.89399,3.28418,2.81321,4.1780525,2.329145,3.164995,3.28762,3.24195,7.50131,1.31042,1.922735,2.87787,3.17905,1.9854433333333334,3.338875,1.45112,3.689235,3.119605,6.43631,3.396655,8.93684,3.490875,1.56938,1.59875,3.090845,6.76412,1.736425,1.5142066666666667,5.65426,3.333715,3.930535,2.6988,2.07458,3.007975,10.28381,5.05876,6.23455,3.519245,2.424455,2.22296,3.073105,2.94017,3.270505,1.74705,1.5458066666666666,2.4124133333333333,3.45913,1.74615,3.219855,2.68503,4.184625,3.771005,3.10743,1.3520766666666668,2.57612,1.1560033333333333,1.374638,1.709275,3.07339,3.32442,3.554425,2.677305,3.803605,3.89525,2.940785,1.4017979999999999,3.406945,3.4015275000000003,3.10172,1.653495,2.854715,3.737775,1.452425,3.537975,1.5637400000000001,4.02521,4.111215,5.1206,2.74566,4.00768,1.829455,3.360135,4.478645,1.62168,1.1650542857142856,3.9816333333333334,2.636185,4.396865,4.02814,3.038965,4.38964,4.386225,2.4077533333333334,5.35875,5.2726275000000005,6.76895,4.454125,7.128985,3.848965,1.59095,2.9235133333333336,4.857475,5.8522,2.5697433333333333,7.255178000000001,1.3883642857142857,3.5061666666666667,2.135845,1.705602,2.3421266666666667,2.6936433333333336,0.38481785714285716,3.23681,2.843576666666667,3.506415,2.484155,3.3571666666666666,2.286896666666667,2.4450499999999997,2.346335,9.28383,5.142,1.637434,4.83352,2.364731304347826,0.7247122564102564,2.8556066666666666,7.9419846666666665,1.78937,4.92654125,6.379018333333334,1.8870275,1.9188125,1.4269475,4.993025,3.132115,4.441285,3.9020075,2.4953366666666668,3.601345,0.9271039999999999,2.765340666666667,4.12103,4.14605,5.361,2.94242,4.486285,4.2252,4.454,4.79133,5.89835,4.67945,4.780195,4.79431,1.6178260000000002,1.845255,2.732135,3.272065,1.1401666666666666,4.307895,2.1679233333333334,3.4204333333333334,4.352285,3.202923333333333,2.5840433333333332,1.4618833333333334,2.919356666666667,2.6691066666666665,2.79168,2.9014133333333336,1.9295366666666667,2.1115075,2.461215,4.410575,5.03155,4.258625,4.758125,3.414705,2.34294,3.21906,4.73118,3.4078666666666666,4.346055,4.461575,2.221255,4.441371666666667,1.6592566666666666,4.21106,5.205585,6.306675,5.02625,5.1927,5.61975,3.644066666666667,4.075614166666667,4.87677,3.27558,3.738034,3.545675,1.353155,3.330315,1.62534,2.178455,4.281195,5.4936225,3.738034,4.17458,3.420505,1.5288583333333332,3.64052,2.078075,2.6270666666666664,2.15542,2.737395,1.7493524242424243,1.7493524242424243,1.7493524242424243,0.5501290909090909,0.7680577777777777,2.0643844444444444,1.1259075,3.54714,1.8035333333333332,4.37114,5.43855,5.12815,3.147585,4.145745,3.00344,4.98786,1.92726,3.022455,2.546045,3.17164,5.669892,4.42176,5.86265,4.30559,0.97301,2.227855,1.3716766666666667,3.74082,3.816545,4.00838,5.045,5.5365,4.884925,5.53935,4.398755,1.675525,1.5367633333333333,5.246263333333333,0.9726222222222223,1.1673833333333332,2.8900499999999996,7.970915,2.930795,3.598565,3.069545,5.552277500000001,1.6815975,0.9996316666666667,1.524405,3.115055,3.483135,3.62649,3.76012,1.8810625,6.375235,3.0192266666666665,0.94660625,4.99063,3.3758,3.0945133333333334,2.3178433333333333,3.592166666666667,5.990840833333333,3.1176566666666665,3.2258366666666665,4.0704666666666665,2.955033333333333,3.4534000000000002,2.90512,2.821115,2.0004125,4.695545,4.74026,4.87896,1.0935266666666665,0.747725,3.6092,2.75957,0.97339875,2.4935187500000002,4.99925,4.012615,7.274695,4.5257,3.811366666666667,1.718538,3.5222,3.66982,2.7868633333333332,2.6484997142857143,4.27186,2.9274833333333334,5.202413333333334,0.9505266666666667,4.63674,1.752372,4.585915,4.214515,1.84383,1.0585775,2.97555,0.426508,3.655145,5.5774,5.8112,3.02356,1.4933939999999999,3.9234000000000004,0.7783355555555556,2.624546666666667,0.7783355555555556,3.8447,4.002445,1.4055875,1.8177025,5.1936583333333335,1.8116933333333334,3.614835,3.760735,4.169085,1.287556,1.6120866666666667,3.937725,5.45845,4.40205,2.848732,2.005245,2.9153,1.598165,1.9921325,2.0581275,2.2345875,3.90618,1.3682666666666665,1.3682666666666665,3.57461,4.825089999999999,7.926055833333333,5.033163333333333,7.68445,2.074295,3.8838,4.093495,1.6586533333333333,3.6580275,4.20273,3.834985,6.15895,3.03711,2.36963,2.8364833333333332,3.88297,1.1122725,4.07287,4.52976,1.1250366666666667,8.223453333333334,2.671275,3.24623,2.5906841666666667,3.84841,4.533995,4.266502083333333,2.82324,2.763666666666667,1.9758466666666665,3.688833333333333,2.5482,2.1846475,8.743249333333333,4.0405,3.13667,4.15788,22.87842760989011,0.6533226666666666,2.676535,4.248745,4.50681,8.3761,4.406785,4.031,4.501135,7.391954999999999,3.411695,1.5937366666666666,5.131893333333333,4.48321,1.151524,1.151524,1.151524,2.24926875,1.6118425,3.176215,1.53842,2.99765,1.5232266666666667,2.52515,2.50885,2.929665,1.53842,3.1571,2.571355,4.223945,4.8628366666666665,5.46995,0.79,3.41952,2.990835,4.8194,4.11718,2.703275,2.2399975,1.7257775,2.10708,1.3999739999999998,4.32925,1.463405,5.1522,11.674199999999999,2.969746666666667,2.388725,5.95,3.7485,4.2829,6.32695,1.95615,6.123005833333333,4.31414,1.0139666666666667,1.1509214285714287,6.677008,4.545055,2.203115,3.76849,1.852805,4.30108,5.4509,4.43789,3.887765,1.3681557142857144,4.453435,5.21935,4.579335,6.274907000000001,4.08885,5.45065,5.00725,4.186605,5.13625,3.7404666666666664,5.19075,2.037425,3.643865,3.301685,4.294525,4.196775,6.20475,4.625025,2.3263633333333336,3.3644,8.73367,4.313025,2.90963,3.651515,4.03667,4.638475,4.2838,4.95558,7.082555,3.046885,2.7400233333333333,4.1754999999999995,2.582315,4.495995,2.7308866666666667,6.511894999999999,1.530515,4.62715,4.333945,11.802985,0.5131121428571428,4.69888,4.16168,0.6328921428571429,3.679,4.18221,4.592365,0.938053,4.47233,4.716413333333334,2.50597,9.97689,3.2135533333333335,1.8659466666666666,3.24002,3.684305,5.857,0.6133458333333334,3.792315,2.030565,5.1104,0.7137661538461538,4.10341,5.5184,5.28325,3.42392,6.4119275,4.037865,3.4907775,2.49402,2.7422533333333337,4.425435,5.1496,4.93054,5.2875,5.1244,3.5517,7.52951,2.8687,3.149348,2.514725,3.62064,2.67897,1.53695,3.1372766666666667,3.6764666666666668,3.1208066666666667,3.5735333333333332,3.4423,3.2497433333333334,2.8709233333333333,5.4627,3.2376799999999997,3.681405,5.06295,3.2063733333333335,1.1309333333333333,3.004913333333333,2.8897866666666663,4.227545,3.25116,3.2787400000000004,4.747398333333333,2.0358733333333334,1.6427225,2.99007,3.7057,4.84326,1.10978625,4.92834,3.234475,4.3276666666666666,3.1545400000000003,5.023923,3.854725,3.23801,3.66402,1.714165,3.804465,0.69998125,4.641355,5.0249,15.766892121212122,3.4046000000000003,1.1554333333333333,4.38625,0.619645,2.5522,4.34841,1.89465,1.405172857142857,3.745035,4.64632,3.29231,0.7491466666666667,2.47599,7.52868,3.90276,5.81145,5.1773,5.14615,3.6795000000000004,3.467166666666667,3.23286,6.761570000000001,4.283585,5.47435,2.3929875,0.4369511111111111,2.17433,3.08331,2.062635,3.036365,4.54307,3.14705,4.30933,0.9533,5.13205,3.500285,3.08696,1.1422566666666667,2.95635,1.9739466666666667,4.859435,3.88214,2.261705,1.6424285714285713,4.482025,5.32575,5.60685,6.255895000000001,2.15863,5.5659,5.2019,4.79108,2.4174800000000003,4.94738,6.34883,5.1587,2.322925,5.03025,3.03661,3.73218,4.13939,3.99276,1.3386483333333334,4.846345,2.3136733333333335,2.63968,5.34939,5.34939,5.0232,1.82318,4.928875,1.069745,1.741,4.63061,2.6214933333333335,1.4033533333333335,3.428933333333333,0.83773,4.4865,5.0871,3.39478,5.27215,4.33443,4.194925,5.3009,3.39586,3.4251666666666662,3.019743333333333,2.437396666666667,3.144175,3.174376666666667,4.076155,1.6881984615384615,3.1333466666666667,4.48999,4.93822,2.4461991666666667,4.081795,4.987625,5.416633333333333,3.6545,5.39005,5.12025,5.2901,4.75875,4.055595,3.424185,3.72838,5.2089,5.6658,4.87462,4.98846,4.376575,4.650235,0.7241508333333333,5.1208,4.6045,4.23489,6.6970275,4.1811,3.81205,4.299965,4.95054,3.590535,3.64272,2.12084625,4.5708475,2.327225,1.3487042857142857,3.782785,2.6206166666666664,2.460393333333333,3.9133993333333335,3.210036666666667,3.07486,1.1083399999999999,2.24245,3.988465,4.013475,1.8281825,1.8281825,4.279655,1.652556,3.1237866666666663,4.695665,3.56805,3.647425,1.4509666666666667,2.041405,3.623594166666667,2.026225,5.0763,4.70717,4.38808,4.17159,8.35127,2.8987,3.871315,4.919645,4.25542,3.0111233333333334,4.349395,4.73189,4.563965,2.17649,2.6717766666666667,4.63553,4.314375,3.697465,3.97562,1.6941175,3.47819,4.446225,4.56793,4.090045,4.224765,4.224765,3.2549783333333333,4.38186,4.51562,4.17952,1.6811219999999998,8.0078275,4.11354,5.05315,4.152635,4.30926,4.16696,5.0547,3.044835,3.544745,3.569565,5.2449,2.0633600000000003,4.958785,6.34621,5.2754,0.755607,4.774884999999999,1.21442,4.93321,4.56947,5.0069,4.517855,5.6954,3.5402666666666662,3.5402666666666662,0.949933,2.14644,5.0248,3.788265,4.54414,4.822945,5.26755,3.16778,4.554985,1.3643666666666665,3.489745,1.608425,1.19443625,4.291540666666666,0.8641679999999999,2.5607166666666665,3.2263866666666665,1.2294266666666667,2.2899175,2.6279833333333333,1.290065,6.42597,1.7570975,2.5694,4.37089,2.2146325,2.7922166666666666,4.04387,4.681625,3.7942666666666667,3.1750833333333333,4.082133333333333,1.6069299999999997,2.0688875,4.95844,0.6360214285714285,2.01111,2.390395,2.9867566666666665,2.8358033333333332,1.3499828571428572,0.7873725,2.419966666666667,4.198745,1.2515185714285715,1.9386075,1.25837,5.871178333333333,2.269245,5.02805,4.31057,4.392825,4.58402,5.34085,4.195975,4.11767,1.42997,4.048766666666666,1.791348,2.773016666666667,1.1184042857142857,4.53863,2.32086,5.931134,3.672875,3.720385,1.569504,6.3974025,4.61221,1.3837583333333334,4.028325,3.13573,3.761985,3.413845,1.942605,1.942605,3.4863666666666666,1.5805183333333332,1.5805183333333332,2.4174800000000003,2.727873333333333,2.131435,1.354535,3.6495333333333337,1.05135875,3.11704,2.386355,1.864345,1.593215,2.1802425,2.3426075,0.27724941176470586,2.463825,1.187805,2.36531,2.08853,2.5562,1.0934877777777778,1.052554,3.819266666666667,3.1312933333333333,1.942605,1.82889,2.04642,2.4962933333333335,2.454216666666667,1.819976,2.2566,1.1987299999999999,3.364433333333333,3.172876666666667,2.4760566666666666,1.537808,1.0790739999999999,2.71535,1.0790739999999999,2.71535,0.7557775,0.7557775,0.48854277777777777,2.5015,2.522346666666667,0.7557775,2.1770325,2.57115,2.2177875,1.7814,0.8277444444444444,0.7557775,0.7557775,1.6275179999999998,1.6275179999999998,2.02743,1.82889,0.7557775,2.34628,0.46297692307692306,2.74498,2.3550766666666667,2.6869433333333332,2.43674,2.43674,0.370089,0.370089,2.4174800000000003,1.96423,2.29718,2.03926,0.370089,3.4601,2.769475,1.621636,0.642125,1.621636,0.642125,5.81314,2.382286666666667,4.0850333333333335,3.2479533333333332,3.058203333333333,2.8297966666666667,3.0968400000000003,3.5743333333333336,2.3443725,1.681035,2.5752833333333336,3.4994,2.31516,1.6275179999999998,2.4769763492063492,2.4769763492063492,2.7124966666666666,2.05162,4.250915,2.35383,3.4873,2.768826666666667,1.718898,2.678975,2.46055,0.8048218181818182,1.69832,3.80924,1.77204,3.263996666666667,2.668393333333333,2.669525,3.8297333333333334,1.6652233333333333,3.705033333333333,3.05401,4.122333333333334,1.222168,0.2672779310344828,1.2873999999999999,1.2873999999999999,1.0614444444444446,3.3472666666666666,4.048033333333334,2.6400099999999997,1.9915900000000002,1.9915900000000002,2.155355,1.5637400000000001,1.0804399999999998,1.7330333333333332,1.7330333333333332,0.7557775,2.4174800000000003,2.85093,3.0269600000000003,2.386355,2.06368,2.06368,2.06368,1.0937544444444445,1.5594714285714286,1.5594714285714286,2.47221,3.102316666666667,2.8431882323232323,4.037975,2.4590733333333334,2.5308033333333335,3.610205,3.870695,7.5368675,4.00343,4.665405,3.5140999999999996,13.3398375,4.611695,3.43905,1.0703975,4.352055,3.21141,2.21342,3.601485,5.5985,8.409334666666666,6.3822,0.5015799999999999,4.044995,3.356185,4.204,2.54605,4.623815,5.305,4.127105,7.94389,3.345665,3.724845,3.77892,3.3582227272727274,8.124976871794871,3.2630866666666667,2.6234766666666665,4.05032,3.877855,5.00305,4.71055,6.28605,4.640045,1.3090600000000001,3.445635,0.88151875,5.05075,4.019615,2.728785,4.45545,5.5564,3.06244,5.0485,3.885495,8.213225,3.902395,4.696791,3.0968699999999996,5.15294,2.953185,1.412785,1.412785,3.279905,3.99744,2.11958,2.13386,3.69984,3.61191,3.98197,2.06328,2.30934,3.045375,2.597846666666667,1.191445,4.559255,5.14545,8.40455,1.7401959999999999,3.60246,4.24712,2.900575,2.7474333333333334,8.27944,4.05932,3.6524666666666668,2.9942533333333334,3.851885,3.3358666666666665,2.9905899999999996,3.0150366666666666,3.34287,3.96714,5.23615,4.32126,0.3845766666666667,1.3849933333333333,2.2416833333333335,1.755835,5.0964,3.380755,2.677516666666667,2.4012925,4.588005,4.0194332500000005,2.3781275,2.33123,0.846084,2.508475,2.57731,2.57731,5.30025,1.856215,3.0538966666666667,2.2907733333333336,2.34619,1.6142266666666665,2.67438,3.72938,4.03269,4.21272,4.640845,5.0148,2.727065,2.4033533333333335,1.8947120000000002,5.1994,5.317878333333334,2.564766666666667,2.8945433333333335,2.21336,2.8327066666666667,3.829935,2.8874099999999996,4.96089,3.937455,3.405555,4.570085,3.13945,3.54624,4.280605,2.40349,2.46399,0.4109271428571429,3.2324066666666664,2.7159833333333334,2.793225,5.6285,4.408745,6.343495,2.088205,1.75655,3.00576,5.483,6.19325,5.2042,3.3341999999999996,2.2546666666666666,5.4605,2.3722333333333334,4.56356,2.47266,2.1647725,5.29065,4.828125,5.0627,1.6248775,1.93411,1.0187979999999999,1.0187979999999999,1.893592,0.8912242857142857,0.717786,1.8259982857142858,4.433295,11.5156975,4.190925,4.777455,4.107745,5.7846575,2.6903,1.6618033333333333,3.7037899999999997,2.77537,4.49359,2.56842,2.828303333333333,3.161163333333333,3.3694,2.277816666666667,3.835933333333333,3.456466666666667,3.260066666666667,3.7082333333333337,3.4447666666666668,3.075646666666667,3.23303,3.4662666666666664,2.5324933333333335,3.21306,3.31974,2.9951866666666667,3.5973666666666664,2.30184,5.747190952380953,3.21897,4.570661333333334,3.4445,3.25521,4.0348999999999995,2.977793333333333,2.70749,3.3990333333333336,3.288073333333333,3.6096333333333335,3.5267666666666666,2.036555,2.7703466666666667,2.8035433333333333,2.922875,2.922875,3.3524,3.707133333333333,2.5350533333333334,2.7996166666666666,3.2920366666666667,4.436533333333333,2.7236833333333332,2.874575,2.5606766666666667,2.895796666666667,4.6668658333333335,5.2235,1.8327499999999999,3.4913666666666665,3.8313,3.4591840000000005,3.5873333333333335,4.037933333333333,3.5962333333333336,3.4078,3.755822,2.11278,2.8118464999999997,3.609666666666667,3.4513,2.7854233333333336,3.017526666666667,4.057300000000001,3.0152466666666666,3.2456633333333333,2.542525,1.1999783333333334,3.189356666666667,2.61576,2.4455833333333334,2.60575,3.3841,3.19643,2.1377800000000002,6.022381333333334,2.5244833333333334,0.896196,5.0815,1.9494825000000002,1.7533,4.579525,4.120575,3.382365,2.451745,1.5662875,3.365375,2.67694,3.476635,0.44188099999999997,1.985235,0.44188099999999997,1.82618,1.5662875,2.691635,3.861935,2.554375,3.677635,3.45726,0.6057013333333334,3.054866666666667,0.9529475,0.47988,4.81727,4.35451,5.03385,2.543625,6.11175,4.324115,4.02023,2.90315,3.7938666666666667,1.6551500000000001,5.8511,3.013885,3.800985,4.621935,2.8528000000000002,1.9721866666666665,2.0594033333333335,1.34364,1.872525,1.29501,1.29501,4.457695,2.253763333333333,5.994318333333333,2.2977425,2.063465,1.83958,2.2721760000000004,2.270745,5.02165,4.3252225,2.0544775,2.28281,2.2721760000000004,2.265515,3.5603110000000004,1.9334950000000002,5.632425,2.2977425,3.2869175000000004,3.105015,3.1763866666666662,5.67135,4.87479,1.918105,2.133865,2.2518175,3.16673,4.99305,5.5625,2.085905,3.888225,1.5199,1.6537625,5.49185,11.293606666666665,2.3240766666666666,2.5496633333333336,2.3302366666666665,4.89378,4.50728,1.9694575,5.1601,4.480285,3.4617,39.896473666666665,3.0485900000000004,3.2163166666666663,0.49581833333333336,5.3376325,2.1900833333333334,0.8917088888888889,4.08291,3.978895,2.1125725,1.78142,2.35864,3.98878,1.4322714285714286,3.0961543333333337,3.99106,4.963715,0.884508,5.07435,4.79133,5.24485,2.7216833333333335,1.32165,3.716785,4.504755,4.32886,3.20551,3.5656,4.363465,12.064745505050505,2.9289433333333332,2.97555,4.75249,2.83614,4.41326,3.288375,2.825045,3.369475,6.2654499999999995,4.990715,4.55868,4.957325,2.57877,3.73093,4.65896,3.693285,4.794385,4.498345,0.09620826086956522,3.392805,4.80572,2.74226,1.3222666666666667,0.8078533333333334,0.8078533333333334,2.193855,2.80335,3.699785,1.231484,2.7526100000000002,4.529175,2.61752,4.339156666666667,0.6084671428571429,4.46381,3.788335,4.95817,4.336075,4.67149,1.3644125,1.2462625,3.6272,2.9107033333333336,2.874556666666667,4.319082393939394,4.168165,6.173435,5.43185,4.411905,3.31893,2.3584091666666667,1.5464433333333334,5.5641,0.3061453333333333,3.220405,3.672045,3.988775,14.71715,1.8296787499999998,3.17716,0.62403625,4.61281,8.576505,3.089675,2.284946666666667,5.5946,3.7296333333333336,1.0393722222222221,3.717265,2.79144,2.91638,5.2682,3.3133688333333335,1.05345125,7.39541,0.7345475,5.06135,3.0756733333333335,1.33913,2.0497755,3.13988,3.13988,3.76619,4.1795488333333335,1.4316625,2.337425,2.74094,3.50095,2.961955,2.521675,3.24731,3.313865,6.5117259999999995,6.18685,3.908465,3.234055,5.24285,5.4752,4.046825,3.368095,3.410955,4.81888,4.77447,2.4657533333333332,2.5003066666666665,1.367305,2.2522800000000003,2.214955,1.516075,3.09638,3.2398066666666665,3.2323299999999997,2.9910766666666664,2.7752133333333333,1.5254933333333334,1.5519266666666667,0.4579754545454545,3.0217066666666668,1.3914071428571428,1.8850375,3.1507233333333335,2.4852233333333333,2.5911933333333335,0.9489075,2.3280625,2.460395,2.975215,3.477965,5.6301,3.756895,2.8332,2.2214899999999997,3.354465,3.92652,2.5797,3.09328,1.934365,3.830135,2.72596,3.759555,1.3897199999999998,0.612077,2.43534,3.24159,3.087935,3.94078,4.92504,9.030775,3.1501900000000003,2.458416666666667,1.73099,1.790874,1.790874,2.70042,2.43533,5.2972,4.916955,3.526585,4.811305,4.66657,4.231865,3.4330833333333333,4.66535,8.475674999999999,2.551725,0.499075,2.7065699999999997,1.3332066666666667,0.9971057142857143,2.37737,0.827092,2.19618,4.834455,5.70565,6.17402,1.08092,7.26362,2.14326,1.5112016666666666,2.9016366666666666,4.264055,3.3815000000000004,2.706025,4.203855,3.228403333333333,4.072966666666667,2.92375,2.879906666666667,2.91211,6.3543199999999995,2.483435,4.03715,3.62505,3.397221666666667,1.4890266666666667,1.0009875,4.169055,2.7488566666666667,3.264143333333333,6.635465,3.499305,2.00439,2.4680075,3.38923,3.4273000000000002,2.5902966666666667,4.51948,3.12617,4.716175,2.4044,1.84267,5.28165,5.5904,5.22425,4.83001,1.7528133333333333,2.52615,1.9879,3.322175,1.5497500000000002,1.0022533333333332,2.775028333333333,2.10836,2.2366025,4.06055,0.8635083333333333,6.167245,1.37816,0.7656454545454546,3.9369333333333336,4.17923,0.7023528571428572,3.2180425,2.898596875,0.7873725,4.692725,0.20414000000000002,0.20414000000000002,0.20414000000000002,0.20414000000000002,0.20414000000000002,0.20414000000000002,1.865282,3.9609,1.865282,1.865282,1.8484733333333334,0.20414000000000002,0.20414000000000002,3.28117,2.7634666666666665,3.85427,3.4833,2.355515,3.44292,1.6345571428571428,1.899494,3.461264,1.692492,3.3646333333333334,3.0316199999999998,6.1083099999999995,4.429255,4.04932,4.753125,5.1636,5.66725,4.644155,4.23535,7.55384375,3.6277333333333335,3.4688,2.6329766666666665,4.7986933333333335,2.542266666666667,2.1706725,1.97215,4.8522,5.00445,4.694525,5.32095,5.29255,4.84234,4.892415,0.7153963636363637,0.6828007142857143,0.6828007142857143,4.734105,2.2900566666666666,3.704085,1.0312785714285715,4.775325,1.5788,2.337683333333333,2.5939,4.540866666666667,4.540866666666667,6.816,3.594225,1.6875833333333334,12.526576666666667,3.28072,1.1050711111111111,5.0469,4.409325,2.926675,3.0069,2.955635,4.309966666666667,0.74198,3.4177999999999997,2.8562133333333333,3.583266666666667,3.1198200000000003,1.4585766666666666,1.4382833333333334,4.8965000000000005,3.274713333333333,3.0482,3.5643333333333334,5.277695,3.4781208333333336,0.760448,1.9744133333333334,3.3389,2.673278333333333,3.8164,3.490766666666667,3.1580033333333333,3.8714666666666666,3.4220333333333333,2.7393466666666666,1.0022266666666666,3.1559733333333333,3.0267199999999996,4.08668,3.372915,4.32226,2.5943366666666665,3.5972666666666666,2.8844,1.667784,1.9526933333333334,2.819947142857143,4.0526333333333335,1.7772320000000001,3.2519233333333335,1.8087833333333334,3.9845666666666664,5.290258333333334,5.054012666666667,2.54695,2.73635,3.059825,2.80115,1.7418571428571428,2.34965,3.137255357142857,2.4597075,3.882566666666667,2.689375,3.6708946666666673,3.507015,1.0871966666666666,1.2858775,1.7437025,2.19757,3.3449666666666666,3.29072,5.1846,7.0004625,3.645805,5.2484,4.74207,15.576655666666667,0.53515,11.405375,1.1129,3.12,2.4035533333333334,1.82379,2.99408,1.533312,1.4017979999999999,2.8030233333333334,1.3727399999999998,2.789298666666667,1.86264,3.267746666666667,2.2883,2.80184,1.5204033333333333,0.72818,3.3105966666666666,2.4111033333333336,2.7953499999999996,1.0937544444444445,3.853066666666667,0.7809316666666667,0.5513376923076924,2.5663666666666667,4.237055,4.88683,5.1069,0.9026572727272728,4.00112,4.59731,1.1317725,2.07637,5.830181666666666,3.38124,4.052405,3.493215,3.7555,1.9658675,3.91398,2.65998,3.04082,3.471865,2.8601,2.645285,3.80905,2.987915,3.53304,2.93282,3.337075,4.975915,1.3171,4.760635,2.26488,4.098515,5.088736666666667,2.03593,2.8080433333333334,3.2346533333333336,6.071275,2.51133,3.419105,5.962,4.0850333333333335,4.66262,1.75104,2.516475,5.0149,3.399233333333333,4.434755,3.531833333333333,3.2934433333333337,3.2577233333333333,4.090133333333333,3.2719733333333334,2.69271,2.9469133333333333,0.4428744444444444,2.1684775,2.2075375,4.983255,4.66524,3.0934833333333334,2.81807,3.504633333333333,9.937909999999999,3.41918,3.919365,3.257816666666667,3.83903,3.050165,3.792794166666667,2.8442566666666664,2.3450475,2.9492366666666663,6.29215,4.60638,2.0355466666666664,3.18164,2.79284,2.84994,4.825366666666667,1.6917200000000001,6.532883333333334,4.18384,4.883195,4.71382,5.26125,3.60688,6.651725000000001,4.53001,3.81426,0.7087642857142857,2.4062175,1.486565,2.8350166666666667,3.6159575,4.04516,3.892825,5.7383,3.068566666666667,5.00805,2.835986666666667,3.5975,3.18725,4.75859,5.15225,5.57575,2.4095233333333335,5.633466666666667,4.3634,1.5409183333333332,5.5708,3.529385,3.62748,2.21255,2.1861133333333336,4.721959999999999,1.2214857142857143,2.4405233333333336,1.9717475,4.078065,4.484205,2.53984,3.352133333333333,2.9661299999999997,2.7281,4.153655,1.338026,2.2524133333333336,2.2777833333333333,3.1795899999999997,2.4114666666666666,2.6337533333333334,2.626723333333333,3.93904,2.8825866666666666,2.70431,4.185225,2.5864,4.00488,3.45981,1.336049393939394,1.336049393939394,4.830145,3.1376633333333337,1.7606525,1.33964,2.4071175,1.8069625,1.210164,1.39797,0.685343,1.55454,1.4029666666666667,2.8692966666666666,2.2260933333333335,1.6309266666666666,1.9179766666666669,2.2897833333333333,1.4970933333333332,1.7139499999999999,1.7574100000000001,2.397155,4.043735,2.713935,3.4042333333333334,2.985575,6.06085,3.075275,4.25528,4.0059625,2.013565,4.112655,3.08875,1.85172,3.507215,2.2443525,2.72423,4.01689,2.288355,4.590265,2.21281,3.97522,3.6442,0.7802944444444444,4.024895,3.854015,3.331355,3.37223,2.5269233333333334,5.0396,5.0001,5.66217,9.151068333333333,3.968435,4.782115,3.1608633333333334,3.83716,4.22202,2.260435,2.773015,4.58251,2.4332,5.715035,1.784284,2.64906,7.843861666666666,2.944573333333333,4.15352,1.2440371428571428,4.767765,5.0354,3.3978333333333333,4.708885,5.0073,6.91748,17.025217738095236,0.6240411764705883,1.0934877777777778,3.5277999999999996,4.181525,4.03334,2.1745975,3.776005,4.1482,4.700615,2.961785,4.607775,1.7151500000000002,1.7151500000000002,5.18625,0.7843636363636364,1.943384,2.851885,3.8839,0.3748730769230769,1.9359433333333333,4.338984333333333,1.09412,2.9218433333333333,2.6563833333333333,2.85792,7.78843,2.4418133333333336,3.226126666666667,1.99007,2.27543,4.19495,3.41164,3.46207,7.609566666666666,1.79968,2.5908,4.481155,6.7770075,1.7352999999999998,2.2943333333333333,2.5961766666666666,1.3279433333333335,2.61887,1.7075325000000001,3.89438,3.74456,1.488205,1.9724753333333334,1.9724753333333334,3.280483333333333,5.6425,3.9406266666666667,3.791175,5.1158,5.81025,3.129285,3.537865,4.57801,3.524215,4.432646666666667,3.7495775,4.13081,0.9761710000000001,0.35925,5.31975,3.70834,2.4478866666666668,7.95081,1.5072,4.770566666666666,3.915895,0.3442191666666667,2.05253,1.2200966666666666,1.9042633333333334,1.9319499999999998,5.441651,2.94255,3.03008,4.495055,4.59756,4.523785,0.6023823076923077,1.951285,0.5987669999999999,5.864823333333334,1.635634,5.0322,2.2860075,3.00621375,3.119385,4.55386,4.332755,5.12905,0.9022772727272728,2.975175,4.11715,2.1830625,1.7246875,3.64522,3.600125,3.407055,3.77849125,5.519738095238095,4.544525,5.38475,2.78744,0.9099088888888889,3.6463666666666668,3.614595,0.7260907692307692,4.110155,4.821015,3.84441,2.62576,2.73625,5.08545,3.31822,3.292405,2.082465,3.850215,1.911972,5.5302,3.793275,0.6694507692307692,4.872725,4.032965,3.26884,4.40358,4.253315,3.009915,3.836485,0.6711199999999999,3.1751,3.9939211111111113,5.34945,3.577033333333333,2.494005,3.5130666666666666,2.494005,3.642385,3.059625,3.4530333333333334,1.5795783333333333,3.3747666666666665,1.975955,4.358705,3.1089233333333333,5.3483,3.3407,3.1088799999999996,3.287853333333333,2.4276410714285714,2.4276410714285714,2.4276410714285714,2.5743566666666666,0.9326616666666667,4.55468,2.3832633333333333,1.65723,3.7218666666666667,2.5740466666666664,3.1401333333333334,4.34551,5.3706,4.564275,2.17525,1.23834,3.872865,1.910388,2.513106666666667,2.93696,3.29473,2.1229125,3.55169,2.675465,1.700712,4.66543,4.09848,3.442725,3.598375,0.7359588888888889,2.3536033333333335,4.902045,7.447005000000001,5.8334,3.02407,6.9135,3.348325,3.697065,1.9288775,2.25456,5.0581,2.30604,4.66751,4.00952,4.5029,9.015966666666667,3.809245,4.048705,3.652035,4.834315,4.233395,3.6745875000000003,3.6745875000000003,4.269965,3.9097083333333336,4.1783,4.10813,4.481125,4.638825,4.449225,1.23030375,4.198905,3.9313,5.8839,7.83,4.9959,3.9946886666666668,2.0652166666666667,1.6719166666666665,2.6508125,4.648315,4.099465,4.77244,2.9920833333333334,4.621295,5.1661,5.12785,4.655675,2.9649933333333336,4.42432,4.587835,5.6972,5.34165,4.611305,7.007056666666666,4.61414,2.2577966666666667,4.94257,4.21673,4.68154,4.30513,4.983515,0.81354,4.648205,4.638545,1.3337357142857142,1.410572,5.1754,5.5709,9.239716999999999,4.887885,5.1524,6.46365,2.88861,2.98095,5.27325,1.8481625,1.8481625,2.53455,1.5798366666666668,2.886206666666667,3.416,1.921795,4.3520354545454545,1.3653666666666666,2.20772,5.8614175,3.376446666666667,3.542575,2.964425,3.881165,4.292935,3.076843333333333,1.0832600000000001,3.897715,3.13861,3.85007,4.28274,4.0661716666666665,5.9352,5.7655,5.45615,4.493115,4.99372,6.6063,4.846935,3.01291,3.718855,1.990455,1.990455,3.795185,4.12595,2.4311233333333333,2.67788,2.3029349999999997,2.9910099999999997,1.9221899999999998,1.9221899999999998,4.518395,3.39563,2.205785,3.50059,2.622345,1.771505,1.23304,1.2753333333333332,2.674725,0.4529778947368421,0.848268888888889,2.494055,4.295995,0.44579454545454544,4.044305,1.93708,5.31405,3.633815,7.7216825,4.398565,5.381403333333334,4.962485,5.48775,4.17014,1.88668,1.9859339999999999,4.64506,3.10374,3.810775,1.1901466666666667,4.366355,4.556945,2.623175,2.49331,2.96628,4.15548,3.643925,3.54081,3.81122,3.51576,3.287965,3.637695,1.0864328571428572,1.814105,2.42067,3.013935,4.30188,7.72704,0.8781599999999999,1.4618900000000001,1.4618900000000001,1.8035340000000002,3.83693,2.81016,2.893295,5.6565525,2.7980633333333333,1.35969,1.35969,1.35969,2.93,3.1253655,4.39158,3.239335,4.082405,3.317745,3.65997,2.905845,3.261405,3.67547,3.74316875,2.5761000000000003,1.210164,3.07399,2.5761000000000003,3.51405,1.4795166666666668,1.8859466666666667,2.2103275,5.261577333333333,2.661905,5.997619,5.261577333333333,3.335714,2.0537983333333334,2.0537983333333334,3.076065,5.66601,2.0537983333333334,2.263195,5.42757,2.216015,2.614285,5.11863,3.555985,4.36037,1.56918,3.64257,4.44678,2.0156033333333334,2.26295,3.8167,1.56918,2.501435,1.997775,5.70908,2.523205,1.137752,2.515575,3.22474,3.185892,1.877215,1.935962,3.62264,1.953112,1.78569,3.13034,2.21211,3.38992,3.9322,2.2367766666666666,2.903975,2.33602,5.71912,2.420175,2.838785,3.44778,3.44778,7.9693266666666664,0.9825266666666667,3.119955,2.643125,3.15568,2.38338,1.3012133333333333,1.3012133333333333,3.1791,2.09803,6.774865,2.181185,3.455025,3.22603,5.96797,2.579585,2.42373,6.05253,6.05253,2.58646,1.5097925,1.3635725,1.3635725,1.5097925,2.087223333333333,1.3175566666666667,1.1919816666666667,1.5347733333333335,1.8130633333333332,3.771665,1.717275,3.30442,2.975095,2.92325,2.764725,2.663285,2.266775,3.313296666666667,3.313296666666667,5.91706,2.540725,2.81867,2.521895,3.648425,2.52246,2.596325,2.440075,5.2097425,1.5701725,1.5361433333333334,1.3401433333333332,2.2670466666666664,5.3935,4.223303333333333,3.614063333333333,3.023885,1.8685725,1.8685725,1.8685725,4.96889,2.30951,1.1919816666666667,3.052255,3.448565,1.2131075,5.3129275,3.04755,6.22467,3.22453,1.615325,3.353245,3.1356033333333335,2.14827,3.485415,4.53095,3.35023,1.66214,2.36905,3.18415,2.96171,4.55713,1.94507,3.1779,2.694195,5.69347,4.06305,2.011145,2.441655,5.49817,4.87675,5.15724,5.21311,1.071258,1.071258,2.5595290000000004,2.5595290000000004,0.8626340000000001,5.01833,3.33476,4.67745,4.15611,4.83603,2.069295,4.309753333333333,4.309753333333333,2.240705,3.30067,3.233785,1.130088,4.83798,3.139415,3.209175,2.61932,4.60587,2.476435,1.943285,3.366865,2.713565,2.95188,4.37939,2.57447,1.93087,3.75524,5.83346,5.7331,4.18252,2.516955,3.36486,2.776845,5.23587,2.55089,3.64198,2.385705,6.8089,4.48014,2.14871,2.572365,2.298615,5.26117,2.0732,2.55987,2.784405,7.17145,5.09305,3.193335,2.3273,2.011015,6.38776,3.04793,3.01974,5.06791,3.073975,2.95109,2.721945,2.918865,1.9672466666666668,1.957935,1.8529866666666666,1.5107466666666667,1.78665,1.7601966666666666,1.709275,1.90934,1.71003,1.9672466666666668,3.89694,4.31171,2.189485,1.7726950000000001,1.7726950000000001,3.516426666666667,3.516426666666667,3.0765599999999997,3.0765599999999997,2.633205,2.38229,1.84772,3.66746,2.1377475,2.1377475,2.3387425,2.3387425,2.77675,1.91268,4.3621,2.26232,2.98079,2.0945066666666667,2.0945066666666667,1.453035,3.78769,5.23388,1.4795166666666668,4.92749,2.2367766666666666,1.67554,4.42239,3.18969,1.782485,2.525665,6.61341,2.008005,5.89547,2.946835,3.242195,3.11203,2.63265,6.24111,3.11346,1.95238,3.3597346153846157,2.80958,4.94261,3.432315,1.500904,1.500904,3.46558,4.9798,4.41951,5.29382,2.7242,2.656595,1.69353,3.07915,1.81989,2.849405,1.74948,0.764286,0.764286,0.764286,2.2351125,5.34372,2.2351125,2.041425,3.59137,1.709125,2.34907,3.89571,3.40415,5.01911,1.6549133333333332,4.70507,1.6549133333333332,1.6549133333333332,2.05301,2.219485,2.06684,6.28519,2.06684,2.33734,3.86359,2.10152,1.772345,2.728925,3.050573333333333,3.289180833333333,3.4868666666666663,4.44191,1.4585783333333333,4.80181,0.79234,4.56394,4.752275,2.57695,2.57695,0.7625218181818183,3.910266666666667,2.7987366666666667,5.9411,5.10535,3.84545,4.647785,4.53514,4.30824,4.824005,4.457335,4.081945,3.66931,3.97959,4.85941,5.4936,3.31864,3.546635,3.916415,2.7920466666666663,1.391216,4.462985,3.892885,3.2824,1.4628428571428571,3.80388,4.134485,6.145045,1.083345,4.85195,4.40289,2.195515,1.94113,3.222755,3.809035,1.63921,1.500904,3.65625,3.645035,2.590705,4.597185,3.032705,1.15756,2.609836666666667,1.2944957142857143,3.0225766666666662,2.1375466666666667,3.27073,1.84429,2.8294433333333333,4.13065,3.28986,4.798695,3.61193,2.1923325,4.91943,4.16374,3.02978,5.19205,4.119875,2.586063333333333,6.20625,4.590505,3.09418,2.582386666666667,3.30488,3.0658999999999996,2.911023333333333,2.77514,4.516455,4.18122,3.88196,2.46909,2.55597,2.29348,2.8524433333333334,2.3186933333333335,2.267036666666667,2.1879066666666667,2.3096425,1.4636375,3.0427910000000002,1.2159375,2.086765,1.870305,2.3922175,1.583705,1.907705,4.16102,4.42618,1.9725825,3.99392,4.53029,6.322855,2.0442466666666665,1.630168,7.0273,3.76222,4.30608,4.567015,4.104565,2.13662,3.424235,2.68335,3.080355,4.455145,0.6969,4.48661,2.14594,0.8263581818181819,4.933765,4.440315,3.983705,1.9302189285714286,4.87634,4.04431,2.7292133333333335,2.6960833333333336,2.52923,2.11437,0.577203,3.0033733333333337,2.897975,5.05685,2.529825,1.9278625,3.77729,1.000385,1.8448466666666667,1.8448466666666667,2.65637,1.8448466666666667,4.47252,3.07206,5.029,4.1924,6.0612,14.076787500000002,3.5683000000000002,4.72853,3.32827,4.59801,3.85669,6.690685,3.2095000000000002,4.623625,4.98979,3.597995,1.3048266666666668,3.71206,2.6845733333333333,2.91051,1.0450366666666666,2.128095,3.558185,7.821526666666667,4.31975,2.727873333333333,4.492305,3.4863666666666666,4.28582,4.9255,4.738115,2.85893,2.74536,3.806775,5.57875,2.52215,4.82992,1.6267725,1.6267725,3.541945,4.8465,1.2923875,4.292886,2.378795,3.63305,2.5468966666666666,2.1293933333333332,2.6950233333333333,2.1975700000000002,0.6948592857142858,3.42361,2.6488733333333334,5.08775,4.231675,0.2514253125,5.52165,4.601985,5.21395,7.120121666666667,3.4698666666666664,2.9273133333333337,2.184553333333333,3.385566666666667,3.497733333333333,1.4004566666666667,2.9977466666666666,2.8302833333333335,1.3816216666666667,3.25125,3.1620500000000002,2.9333233333333335,3.4234000000000004,1.488183888888889,4.521055,2.790045,5.19545,4.760485,3.811165,1.6053566666666665,2.7161566666666666,1.2469475,1.88711,1.2469475,4.75417,3.6512,1.7166620000000001,2.4149725,3.824525,3.734515,2.87689,3.79278,0.351537,1.5378070833333335,3.88915,4.04023,5.2699,2.0349325,3.11068,3.1337833333333336,2.7463933333333332,2.783535,2.85925,4.505195,2.68865,2.362553333333333,2.81471,2.503833333333333,2.753546666666667,4.481235,1.94341,4.380815,3.8550158333333333,5.95945,7.7828175,0.7432922222222222,0.806217,3.887345,7.435575,1.779748,3.45513,1.4324683333333335,1.4324683333333335,3.58181,0.4352911111111111,4.12924,4.413405,2.493915,3.487835,3.07372,2.41254,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,0.23366133333333333,2.447285,3.15809,5.011788333333333,3.4830583333333336,4.075655,7.907834583333333,3.501475,3.3335000000000004,0.9660533333333333,3.910225,1.05428125,7.82712,4.49362,2.477825,1.05428125,2.366285,2.69623,0.84932,4.82351125,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,0.15653066666666665,4.561885,1.567705,4.53021,5.1314,1.68203,4.53209,4.59354,5.30665,5.008756666666667,3.768814285714286,3.20464,4.543845,2.620225,4.89015,4.33512,0.7448071428571429,1.374332857142857,1.4671285714285713,3.7264666666666666,3.7264666666666666,3.147548333333333,3.75214,4.589675,3.833065,3.97592,3.093,2.0662533333333335,0.49829,4.066735,3.025105,2.73767,4.189285,3.94415,3.0833275,4.69535,3.826525,6.665877500000001,4.19407,4.98089,5.56995,4.76077,1.3059214285714287,3.79611,4.599336666666667,35.15599474314575,1.4438849999999999,4.60446,3.66915,4.506425,4.235085,4.5977,5.1789,0.39924809523809524,4.824395,4.421765,2.0243225,1.93273,4.118595,1.736425,2.485495,2.34656,1.70816,2.81693,2.454216666666667,3.028675,3.652195,0.5964284615384615,3.36251,3.72683,0.4468289473684211,2.5218366666666667,3.473105,2.53421,3.836565,1.759895,4.82242,3.818435,3.07045,3.941865,3.29691,4.35548,3.198055,4.064305,2.2189775,4.599336666666667,3.69519,3.247185,3.547685,1.8292639999999998,4.44428,3.66277,7.34231,3.46804,4.682445,6.74813,5.076734,2.1832375,5.1204,7.27971,8.185268,2.5845233333333333,2.56616,5.26235,5.691176666666666,4.290145,3.79217,5.560098333333333,2.15566,2.128325,2.2893225,59.59450673558897,5.2539,4.77265,2.5324,1.15724,3.3569999999999998,3.079283333333333,3.4409666666666667,0.8670255555555556,4.98287,0.8417044444444444,7.821534285714286,1.910388,3.2207633333333336,1.8593959999999998,2.602,2.6232866666666665,2.39149,2.4092766666666665,2.2105166666666665,3.1978066666666667,1.4935533333333335,4.508203333333333,3.2445133333333334,1.26369,2.2839733333333334,1.3554833333333332,1.4689625,7.40007,5.9433,3.20513,5.5722,5.4050275,1.5536285714285716,3.4539333333333335,3.21466,1.577885,5.42585,4.082705,3.99573,2.320275,3.0574616666666667,3.6875999999999998,3.9048,5.4503,3.81951,4.657745,1.8145175,3.86645,4.4298,3.3592,1.535682,4.606205,3.3515333333333337,4.05841,5.2302,3.927495,3.74002,4.59669,4.30845,4.296655,4.719445,3.95451,3.365266666666667,3.652215,4.77454,3.18387,4.897895,3.68627,1.4032499999999999,1.4032499999999999,4.457115,4.950175,5.6849,4.20187,4.84321,3.5026333333333333,2.77592,4.42023,5.07485,0.7518854545454545,5.17405,7.328760000000001,5.6977,5.65445,1.3322222222222222,3.178275,0.9979683333333332,0.9979683333333332,0.9979683333333332,3.484865,3.576966666666667,3.0929133333333336,3.4643333333333337,0.861969,5.1141,5.01885,3.40371,1.4740675,2.0014675,4.28552,3.867515,3.789205,3.1431899999999997,6.4903,3.704175,2.4738233333333333,4.82444,6.96055,2.36456,4.20362,3.634795,3.179905,4.653785,3.86638,4.29165,5.56175,3.817905,3.761165555555556,1.9855033333333332,1.9855033333333332,0.6956727272727273,8.914172,2.063635,6.4234,5.7183,4.84605,4.46006,3.70284,3.0580866666666666,4.882535,7.794067500000001,5.78895,2.1518533333333334,4.4028,1.1817,3.62835,2.0038066666666667,0.9309233333333334,1.1195771428571428,2.6768533333333333,3.1536566666666666,2.787596666666667,1.1626671428571427,2.4949533333333336,3.022396666666667,0.934818888888889,2.8269033333333335,3.290573333333333,1.6246680000000002,1.6756820000000001,3.15209,3.480366666666667,3.0807466666666667,2.51084,1.9855619999999998,5.63715,5.0016,4.45465,4.794835,5.17145,3.176635,4.918775,5.42645,5.1278,4.256125,3.99517,12.008476666666667,7.975705,2.943016666666667,3.887955,2.2708166666666667,3.780525,3.12642,4.35393,1.1733616666666666,4.495035,3.44109,1.26431,3.5531,2.931891666666667,4.325495,3.97252,3.86571,6.43595,7.44332,4.117085,1.5984666666666667,1.5984666666666667,1.5984666666666667,4.871475,1.1720316666666666,1.4425625,0.5072827777777777,4.601037083333333,2.97128,3.54479,1.00045,1.15768,3.724175,4.395165,3.84213,17.071796666666664,4.5309,4.41043,6.718305,2.864876666666667,3.808295,3.21152,0.95403,1.17894,4.617285,3.669695,4.913805,4.468815,4.70197,3.91728,2.743797777777778,3.985475,5.465,0.6077,5.2535,2.3106825,4.27731,5.3641,3.5632333333333333,2.3244333333333334,3.8697033333333337,1.5955933333333334,4.33873,6.14825,3.0383333333333336,2.397675,4.18732,5.0665,5.2895,3.93289,3.859695,4.327755,4.93364,4.832825,5.11355,5.1859,3.908715,1.1926728571428573,1.7848975,6.5667655,5.10555,4.55827,5.02645,2.634875,2.7666866666666667,2.767443333333333,5.25465,1.9111575,2.021745,3.4210333333333334,3.01024,3.4911666666666665,4.62224,3.50863,5.377235000000001,1.278495,4.335055,0.9010199999999999,3.80554,3.686515,1.641505,4.903315,1.0353066666666666,4.669055,5.1572,5.2968,4.42664,3.5086775,3.878905,2.7007600000000003,4.94323,5.2956,3.0592775000000003,3.9799,2.37191,2.57253,1.93823,2.451285,3.63222,5.1997,1.05135875,4.3811725,1.2841475,3.2762,1.5933233333333332,1.05135875,0.22183000000000003,4.10523,2.867045,2.3989604166666667,1.8343433333333332,2.67422,1.0662775,3.864325,3.42329,4.674135,2.53798,6.38095,7.223965000000001,2.904386666666667,3.384233333333333,2.6545633333333334,0.825728,2.22771,6.25985,4.369855,4.969665,4.980125,2.330713333333333,1.46666,3.842855,1.5473825,2.424125,1.716875,1.70042,1.6654975,1.8159875,1.98599,2.067295,1.22413,1.2895771428571428,1.400505,1.81141,2.05983,2.06866,2.2457766666666665,0.5317173333333334,1.5678480000000001,3.1770566666666666,3.14362,1.7570975,2.0924833333333335,1.712085,4.96727,2.1812400000000003,2.72065,2.96785,5.9498,3.79746,2.8352033333333337,4.98294,1.6657528676470585,4.02573375,22.3909595,4.682453333333333,5.48775,4.5995,2.4414833333333332,3.93431,4.569725,3.24705,5.02015,2.9747533333333336,0.73759625,3.99123,4.87177,4.202855,4.054705,1.7304000000000002,2.2174,2.41893,2.712645,1.4989428571428571,2.7750033333333337,5.51725,4.19223,3.250615,4.04486,4.72437,4.40995,4.42009,1.3248,3.66269,4.23718,5.11175,1.57481,3.08712,1.79607875,1.79607875,3.672255,4.988795,2.5691966666666666,2.8383866666666666,4.056645,3.83667,6.569595,4.475805,2.408205,1.17894,2.732125,4.136205,3.11704,2.4769763492063492,2.4769763492063492,3.1550366666666663,4.436885,4.152875,5.34019,2.340415,3.3644473333333336,0.5991066666666667,0.5991066666666667,0.5991066666666667,3.49212,3.713755,4.453496666666667,5.09735,2.1115075,5.67245,4.22115,4.477735,4.092835,5.13685,2.488815,1.4889571428571429,4.926805,4.46639,0.45922,4.239966666666667,5.3591,1.7229166666666667,5.4449,5.56855,5.282,4.248135,3.71206,2.76733,4.46514,1.6510179999999999,4.29602,1.7256,4.728245,5.6096,1.25395,3.133465,6.3668125,3.66091,3.7453000000000003,2.73025,4.2636,5.3045,3.448066666666667,7.447733333333334,4.41944,2.12716,3.1644566666666667,2.79306,2.94914,3.041043333333333,1.8448666666666667,4.548315,0.6068083333333333,1.8080875,1.8080875,3.24278,4.094915,2.34845,3.14571,5.0898,4.653595,4.59522,1.3301266666666667,5.078749511904762,4.44396,5.21605,3.852505,4.3973275,3.8924435,0.504884,2.4170434285714286,1.05033625,0.504884,4.11541,0.9666566666666666,4.64604,4.29758,6.652936,2.151116666666667,1.040815,1.1206619999999998,2.31616,2.74114,1.7243300000000001,2.35963,3.333195,3.51319,2.0269266666666668,2.3628899999999997,4.622265,3.4409549999999998,3.96652,5.7286,3.31784,4.703205,7.059715,4.212465,3.42284,4.42418,3.611165,4.356695,5.5031,6.6605799999999995,5.56465,2.56869,1.0631544444444445,4.41378,3.95816,3.801715,5.35045,4.312035,5.2915,2.9382866666666665,2.62205,3.21138,2.487483333333333,2.3493733333333333,3.08623,3.4373666666666662,2.91198,4.77825,4.75906,4.540665,5.5671,3.1759166666666663,3.15625,2.906675,0.7393214285714286,4.73951,4.15137,4.563055,2.98324,6.098926666666666,3.768015,5.5081,3.82291,0.6374692307692308,0.5670678571428571,4.25411,2.833322,3.88457,5.1406,4.716195,2.15688,5.114,4.27198,2.936366666666667,2.65255,2.5748,2.3733583333333335,3.4310333333333336,3.4760666666666666,3.379566666666667,3.3031666666666664,3.6572,2.7364,3.3989333333333334,4.013433333333333,4.2671825000000005,0.597786875,0.597786875,0.597786875,3.346148652777778,3.7199666666666666,3.7787333333333333,2.8247933333333335,2.8177833333333333,1.23030375,3.1351333333333335,3.31991,1.985195,2.58759,2.60447,1.1231444444444445,3.1139866666666665,4.633605,9.6886695,1.55551275,0.6570280000000001,3.585695,0.6570280000000001,0.6570280000000001,0.6570280000000001,0.6570280000000001,2.247745,4.318497,4.1085,5.3758,6.0867,2.78041,2.822813333333333,3.03411375,3.5994433333333333,5.2893,1.4160883333333334,2.46298,3.2335066666666665,2.64901,3.243036666666667,3.795755,2.3205233333333335,3.48151,1.1895777777777778,4.487645,3.57209,3.900265,0.817715,0.6216820000000001,0.6216820000000001,0.9253343043478262,1.7430493043478261,0.9253343043478262,0.9253343043478262,0.31221130434782607,0.31221130434782607,0.9253343043478262,1.4830566666666665,2.4268199999999998,2.95871,3.32445,2.56748,2.6545366666666665,3.12999,2.7216233333333335,4.46678,3.40076,1.8119,2.2525666666666666,1.74148,0.17186174889543446,0.17186174889543446,0.17186174889543446,0.17186174889543446,2.4322033333333333,2.73251,0.8574299999999999,5.1988,0.8080209090909091,1.761176,4.841629166666667,4.70716,4.197285,2.639005,4.541255,4.383395,3.2673566666666667,1.190415,3.52955,4.81055,5.56165,2.31593,1.6041066666666666,1.88098,3.280416666666667,1.4388366666666668,2.6007233333333333,2.9990133333333335,3.08896,4.883145,4.063865,3.1777,4.705105,2.8481799999999997,4.526195,5.2453,4.09805,4.90598,4.980495,5.290213333333333,4.884760833333333,3.0851691428571426,5.069138333333333,4.70109,5.09,4.12738,4.8942,2.3334875,2.964215,4.168245,5.23155,4.455045,3.973765,3.771875,4.384025,3.722875,2.3646733333333336,5.7165,3.70773,7.55842,5.99035,6.20355,5.1579,1.4954,1.01505,0.6454761538461539,1.7349039999999998,4.73424,4.536995,3.837915,1.716686,4.096875,3.002115,4.693615,5.593,6.138574,4.16993,3.022365,1.7197900000000002,5.241975,3.898485,3.252,1.7154525,0.97535,3.858685,3.21161,3.6312925,3.536965,2.20682,4.514865,1.59673,2.812663333333333,2.43755,3.905025,3.81356,4.8244,2.3244225,1.705475,5.50195,2.9730366666666668,8.73935,2.882375,4.94144,5.62415,4.609005,4.904025,3.54062,3.676145,2.32754,4.89486,4.940580000000001,2.356875,4.574745,4.291915,8.693525,4.78333,3.4492,4.20666,3.67481,3.4409549999999998,3.530965,5.288,5.4345,2.450105,2.933063333333333,3.36,2.283285,2.873445,4.571855,5.73105,5.08465,4.96099,5.115,4.752755,6.3486,0.6469592307692308,3.3993,1.30251,31.64927323639148,2.46537,4.676415,3.081475,4.671805,1.7788080000000002,2.415573333333333,3.369075,1.4628700000000001,1.4628700000000001,1.4628700000000001,1.4628700000000001,1.906205,3.375385,0.30399444444444446,7.935858333333334,0.30399444444444446,5.0285,5.3016,2.1190575,5.8101,2.629,3.9647686666666666,2.4479266666666666,2.5044066666666667,2.681556666666667,2.1278799999999998,0.628413076923077,2.59553,0.7201833333333334,3.1106700000000003,2.17007,2.318248,1.1946616666666667,2.318248,6.37115,8.174215,4.92582,4.753225,5.44265,6.2486,7.759806666666666,3.052365,1.804575,1.804575,2.370913333333333,5.2831,3.74261,4.82858,6.268763333333333,4.30929,2.981155,4.01205,3.42507,3.40101,2.178085,1.046186,1.876295,4.385095,4.20594,5.266536666666667,1.890395,4.676475,1.7475200000000002,3.342415,1.302648,3.3717666666666664,3.21209,2.8945933333333334,3.358833333333333,3.4029333333333334,4.88701,0.6639307692307692,3.51641,3.7255000000000003,2.74239,2.34797,4.18616625,3.1690466666666666,2.747593333333333,5.098495,3.99909,4.813865,4.08662,3.517205,5.2301,5.24825,2.1432166666666665,6.2018,2.2918336666666668,2.4565266666666665,3.109783333333333,2.8028399999999998,3.4601,2.7752,2.0419233333333335,3.3508821818181818,4.476825,3.43687875,2.5389126666666666,2.5389126666666666,2.487285,3.791955,3.97364,0.6072609090909091,3.1521,2.953955,8.63219,0.9324272727272728,4.316035,4.007945,5.616,4.14033,4.149845,2.290085,3.89287,2.892775,6.05265,2.637364166666667,1.02562,3.70971,2.6675866666666668,4.02499,2.719106666666667,3.60656,3.680475,4.317625,5.168701,3.28146,2.01695,4.98391,2.4677266666666666,4.55547,4.990545,4.94137,4.51105,4.01093,3.080905,2.135616666666667,3.1082733333333334,2.6976766666666667,2.973225,3.4464666666666663,2.8192102380952377,5.36447,3.045873333333333,2.5837,7.155091666666667,5.22373375,3.9489475,3.1451366666666662,3.8444000000000003,3.98832,3.460815,2.39924,4.28725,5.4888,5.2892,1.498755,4.78397,2.8057466666666664,7.1161175,4.889605,8.886936666666667,4.27526,3.565685,2.440495,4.0427,5.824665,7.65198,3.49859,5.98442,4.629175,3.221075,3.898655,1.6917200000000001,4.311406,1.59472,4.72844,4.662455,3.561666666666667,0.89045,9.604466666666667,1.299311111111111,1.7624075,2.3406333333333333,1.8313366666666668,3.2498566666666666,1.3704183333333333,3.58966,3.43012,2.687056666666667,4.273935,1.0890533333333332,4.287805,1.375635,2.3975633333333333,3.721445,4.30486,1.8680375,5.2836575,1.8741416666666666,7.82176,4.30096,2.863775,3.94879,3.214245,1.2111,7.43594,2.905955,3.288035,2.338965,4.00677,2.210155,3.3956524999999997,2.14123,3.94418,1.363195,5.00975,4.44838,4.002785,0.939995,2.1228483333333337,3.73342,5.18015,5.205408749999999,1.371264,1.371264,6.0001,4.340775,4.736245,3.71918,3.378635,8.961435000000002,4.267025,5.25845,4.175815,2.4579975,2.0916147875064004,0.3603,0.18720161290322582,0.553683835125448,1.1776309523809525,0.6212458986175116,0.18720161290322582,1.2666275,0.3664822222222222,1.5379309523809523,1.820311335125448,2.078635,2.287475,2.14294,5.55785,6.996973333333333,5.1499,5.7264,4.86237,5.36865,1.16631,5.22675,4.280545,6.2647,5.2779,5.905,5.80215,5.97375,5.43985,1.5416266666666667,1.6771142857142858,2.033,6.682352,1.467552,5.7156,5.03465,7.428026249999999,5.13465,5.635,4.92203,4.94961,2.611125,5.24695,5.58735,6.573131666666667,4.783075,5.9850683333333325,5.94275,3.9281325,4.3479,4.005866666666667,1.03334,3.8432,4.845005,1.3606375,3.8394666666666666,4.94351,4.63939,5.43025,2.29901,3.32643,2.57129,4.75472,2.529375,3.450655,1.3084666666666667,3.095785,3.79946,4.45825,4.911435,3.4375195833333336,0.7418591666666666,5.8776,1.06850875,3.840925,3.384733333333333,3.669665,2.0414533333333336,3.80271,3.7790679487179486,3.715866666666667,4.468775,14.843739357142857,5.20813,2.2513975,8.36249,1.4737825,3.80557,2.8650066666666665,2.8460633333333334,2.2029633333333334,0.19670304347826087,3.042313333333333,4.6299,1.7734539999999999,2.0780366666666668,3.8663333333333334,1.851745,2.24432,1.2082785714285715,3.293625,4.791445,4.018715,4.117735,0.46885571428571426,2.32283,4.625275,3.85625,5.2547,4.961525,4.198225,4.03454,0.5912411764705883,2.4730866666666667,2.4730866666666667,5.6587,4.59153,4.81103,2.73825,3.7264,3.2777600000000002,4.83814,3.925205,5.907517777777778,4.877945,4.869835,5.1153,2.5715,2.12594,4.47753,4.54318,3.306835,3.565675,1.7854079999999999,4.521205,4.352135,3.787345,5.0392,3.959985,4.57287,0.6291046666666666,3.637535,0.7220383333333333,3.1965233333333334,2.956335,4.29362,18.20747523809524,4.267465,3.777525,3.1356033333333335,1.222465,2.75294,2.4760566666666666,1.537808,2.433885,2.53527,5.3268,3.076443333333333,4.047475,5.34465,2.171545,5.0188,2.8099366666666667,4.87333,5.41675,5.42815,1.80648,1.670395,2.39055,5.1616,4.98536,1.1759,5.59275,3.77302,5.70025,4.82595,1.7179333333333335,4.662055,3.57663,4.041665,4.259995,4.399855,3.0380966666666667,0.58691,7.692168333333333,1.543218,0.1947175,0.1947175,0.1947175,5.1869,4.09691,2.5325133333333336,4.11626,2.86618,3.987935,4.311582857142858,4.1423950000000005,9.355516666666666,4.215505,6.91833,0.9189125,1.09981125,2.53945,4.94701,4.45543,1.9257799999999998,5.0738,4.349595,3.46497,4.07488,4.59811,2.5293366666666666,4.344265,5.055991000000001,2.36531,3.00825,2.9327366666666665,2.699575,5.93335,3.74727,0.6581035714285715,3.7788,3.386185,4.387845,4.826413333333333,5.00695,4.60569,5.41175,3.61051,13.966255833333335,4.971755,6.485686166666667,2.6729533333333335,7.00073,4.95197,4.0385,2.3426075,2.347324583333333,9.65257,2.1729066666666665,4.032266666666667,3.8021999999999996,3.6898,3.30132,2.8616966666666666,2.1053025,2.074845,2.9496866666666666,1.997398,3.6700666666666666,2.7881400000000003,2.5944166666666666,3.3355333333333337,3.6286666666666663,2.3893,2.3893,2.5461066666666667,3.4989333333333335,3.302826666666667,2.7503933333333332,3.2947399999999996,3.8187333333333338,2.6796666666666664,2.6607,3.04438,2.44369,2.3691375,3.6608666666666667,2.9265133333333337,1.852526,3.7114333333333334,2.4322266666666668,2.57275,2.8747633333333336,2.389685,3.3425,5.641376666666666,2.5007699999999997,3.3545,1.96115,11.125397333333334,2.5088933333333334,1.8109166666666667,1.9272760000000002,1.0614444444444446,1.594784,4.92766,3.0297399999999994,3.0297399999999994,1.9778759999999997,1.550275,3.4814333333333334,4.099028333333333,2.213366666666667,1.5386516666666665,1.6069299999999997,4.2560633333333335,3.234856666666667,4.131266666666667,8.380943333333333,2.917684285714286,2.9294966666666666,3.229895590062112,4.309966666666667,2.3691375,3.4478333333333335,2.979093333333333,3.3226633333333333,3.3742416666666664,0.853845,3.2275540000000005,2.9175633333333333,2.7492900000000002,4.0541,2.772883333333333,0.7111981818181818,1.8985609523809526,4.43948,2.7031535,3.3016533333333338,1.8563666666666665,1.8563666666666665,2.0329275,3.739093333333333,1.05565,2.2317825,4.976423333333334,4.976423333333334,0.6609285714285714,6.29382,3.739415,4.487835,4.915275,1.1800285714285714,3.6531333333333333,3.4637333333333333,5.146383333333333,6.940964666666666,3.163983333333333,0.730342,2.8632733333333333,2.69026,3.160127333333333,2.6840433333333333,2.9729766666666664,3.0909833333333334,2.44035,2.5134833333333333,0.8467654545454546,2.84329,4.695098285714286,1.28403,1.6239142857142856,5.28455,2.401315,1.661395,4.084315,1.6839,3.574085,2.4401375,3.500766666666667,9.317850833333333,4.338264166666667,4.560175,5.1476,2.2581272727272728,0.750096,1.8158100000000001,7.123776666666666,1.8015766666666666,4.23044,4.448445,3.855195,21.407301333333333,3.1936766666666667,1.3781166666666669,1.1698675,3.3558,1.40892,4.15352,5.66495,3.2517005,3.2792833333333333,1.3833033333333333,1.2546116666666667,2.90518,0.57632625,3.0764566666666666,3.7395666666666667,3.0314366666666666,2.48828,2.61635,2.609173333333333,2.4086066666666666,3.02713,1.725842,3.4919,1.5315516666666669,3.80075,4.02745,2.9924366666666664,5.08615,3.711355,4.047745,5.4023,4.8387,3.112553333333333,3.0120666666666662,2.44237,1.18631,1.18631,1.18631,2.0868325,3.27077,2.572556666666667,2.4602,2.24247,1.6109175,4.436385,4.392305,3.66707,6.45432,3.3254,2.54205,1.89725,1.2362983333333333,2.486076666666667,3.89007,2.3926666666666665,2.56221,2.792733333333333,2.415696666666667,2.471686666666667,2.78525,3.1152366666666667,2.9295666666666667,2.5445066666666665,3.0086,2.07153,2.1168175,2.0110725,2.41555,3.272013333333333,3.1888199999999998,1.9562325,3.871615,5.0779,2.9134666666666664,2.5543280769230767,5.540983333333333,4.49373,4.923825,5.9018,5.2405,4.238475,6.662085,1.26955,4.19997,2.59431,5.1074,5.03995,3.375955,4.363855,2.4667525,7.6355450000000005,3.27259,0.8881333333333333,8.49377,5.07411,6.1365911904761905,4.905935,3.04664775,1.787115,5.0243,4.567705,4.72759,5.1591,2.44738,4.38502,4.47045,1.74148,4.32719,2.8274,1.4342633333333332,4.875035,0.6454117647058824,4.269575,3.778345,4.52706,3.13988,1.71759,3.63505,1.918455,1.3024125,3.0647699999999998,3.383366666666667,3.1499066666666664,6.964258974358975,1.78731,6.668581666666666,9.72676,6.10864,3.402045,1.3486285714285715,3.10989,1.3486285714285715,2.743603333333333,2.184083333333333,0.2888894117647059,1.142391911764706,0.2888894117647059,0.2888894117647059,0.2888894117647059,1.142391911764706,1.142391911764706,0.2888894117647059,0.8535025,4.69821,3.483095,3.166025,3.44496,3.68695,2.94594,2.9531126666666667,1.594214,7.481156666666667,2.73908,4.074145,2.6045866666666666,1.0286272727272727,1.22532375,4.616225,4.249665,1.0389677777777777,1.746934,0.6919809090909091,3.1936907878787877,4.316915,5.38835,3.769966666666667,5.542695,0.5842007692307692,4.36544,3.27337,3.4644333333333335,2.47864,3.2888,2.51852,3.0555833333333333,2.69875,2.75662,3.54935,5.25135,4.804605,1.508198,4.64568,4.53873,3.41783,3.765645,3.355205,0.3362573333333333,5.04735,3.6624,3.263185,3.311146,4.51798,3.950175,1.881555,3.218915,3.948085,8.18634,5.14405,5.65555,4.179745,4.068905,0.85539,2.146,2.19037,1.28703,1.8484733333333334,4.84609,5.60705,4.202245,4.357955,3.1431899999999997,2.5939316666666663,0.9351316666666666,4.140745,1.2429383333333333,1.15669,3.235065,3.613375,4.901225,1.2493275,3.1344833333333333,8.460183333333333,3.0611866666666665,2.9388058333333333,0.8811225,4.22186,12.040836666666667,3.38838,4.03781,3.24661,3.06194,4.66163,4.89027,1.972692,4.451275,0.6603884615384616,4.72612,2.1770325,1.89836,1.89836,3.438,4.649105,1.7581499999999999,4.892965,1.5188285714285714,4.945425,2.8264674999999997,3.100986666666667,4.682105,3.48402,3.7706406666666665,2.633475,2.5941281666666667,2.5941281666666667,11.24141,0.764433,3.309675,3.7978,2.0969825,2.1127525,0.9071471428571429,1.38704,1.3583685714285714,1.953835,5.0994,2.39845,4.618355,2.0275333333333334,4.40248,4.57653,1.5787983333333333,1.993765,1.0409650000000001,5.968234083333333,2.2335975,2.17225,1.6551500000000001,1.75238,1.1698675,2.4380991666666665,3.55815,2.5081,3.0430533333333334,2.360533333333333,2.5968933333333335,1.6971333333333334,2.971033333333333,2.8990666666666667,1.00521,2.2318000000000002,2.99199,3.3658333333333332,2.2800266666666666,1.1293933333333335,2.532646666666667,2.1960566666666668,3.6102333333333334,0.33802315789473686,0.39308583333333336,2.2752333333333334,2.2648366666666666,3.15943,3.1332600000000004,2.745395,5.06485,5.7446,4.51151,4.27696,4.26146,3.832135,2.64648,3.688855,0.657630909090909,0.06549522727272727,6.19995,0.06549522727272727,3.62984,3.033665,5.77625,3.46062,6.114,4.862705,2.35731,2.5446933333333335,1.4212583333333333,5.86275,4.61153,3.0387866666666667,5.167,1.978105,4.484745,2.1004588043478263,3.0709066666666662,3.2880000000000003,4.25089,4.45845,3.259825,2.1977066666666665,2.1977066666666665,3.973695,7.52921,3.795805,2.2235400000000003,2.4254000000000002,4.156575,2.687245,5.11945,4.06724,1.0435444444444444,4.088225,3.0058833333333332,2.89025,3.99806,1.18181,2.32253,4.009015,4.1223,5.11735,2.890895,2.933225,3.81806,3.818935,4.281295,5.06405,4.110655,3.223590833333333,3.648995,2.822763333333333,3.223376666666667,2.9651,3.6945333333333337,4.363595,3.0281366666666667,4.995128333333334,4.751265,3.26718,4.49835,4.325305,4.0397,1.39933,1.3443725,3.95266,3.504766666666667,1.5315633333333334,2.942833333333333,3.3289,3.446566666666667,3.910007777777778,3.2845666666666666,2.2372433333333333,13.156838333333333,2.0515433333333335,2.06392,4.255215,0.990278,3.27889,4.056265,4.97579,3.14221,1.1244222222222222,2.2873666666666668,2.53798,1.43835,5.4355,0.916745,0.916745,3.8618533333333334,1.9807066666666666,1.8811466666666667,1.6905725,3.39335,3.535745,2.033385,2.72979,3.8779583333333334,3.12209,2.990403333333333,2.17434,6.28355,5.64055,3.831795,0.7836461538461539,3.595705,4.222355,0.9226545454545455,5.1833,3.4594666666666662,8.720066666666666,4.69744,4.755605,3.51204,1.4248,2.94964,5.33615,5.0422,4.414235,4.71608,4.33598,3.288825,3.5191666666666666,3.5191666666666666,3.67237,3.001220833333333,5.6514,1.717675,5.211288333333334,5.514046666666666,1.7229166666666667,4.598535,1.06007,4.66763,4.039795,4.96283,4.966675,4.156635,2.672675,2.4900375,4.31023,4.62643,4.681755,4.501615,1.8811025,1.349856,4.112525,2.1361433333333335,5.5,2.90269,3.455925,7.1922049999999995,3.847975,4.498165,4.862115,4.40492,4.28773,8.258975,3.427305,2.88295,10.076239999999999,3.86374,0.6390121428571429,2.1197052197802195,4.77065,0.6487499999999999,4.785265,4.197365,5.27195,4.656125,3.508265,4.01904,5.06795,4.533725,2.45219,0.7105978571428572,4.84555,4.688685,5.0585,4.551755,2.73512,5.0937,3.533135,0.653214,3.672555,4.39854,2.4485025,2.91893,4.33757,2.206445,5.3868,4.9659,4.3862725,0.8755,3.302046666666667,6.011525000000001,6.011525000000001,8.704083333333333,2.10234,0.847435,0.847435,26.639989999999997,2.78975,8.202106666666667,0.3442191666666667,1.2200966666666666,3.1261166666666664,0.980783,3.5999,3.912235,2.3795075,2.3795075,4.60445,4.94152,3.35733,2.6523616666666667,2.6523616666666667,3.512455,3.642085,3.810985,3.210906666666667,2.2387633333333334,2.4278808333333335,4.737026999999999,2.01723,3.418395,2.70588,2.884711428571429,2.884711428571429,3.4948,0.81355,2.534803333333333,1.5237666666666667,3.474266666666667,3.1202666666666663,2.9636833333333334,2.8221900000000004,4.756525,2.42106,3.2177566666666664,5.991664,1.51518,2.21276,3.10239,2.3782433333333333,4.497275,5.793775809523809,1.4239199999999999,3.6074333333333333,2.4195325,5.0059,6.50981,1.5527175,4.83476,4.892347333333333,3.1243142857142856,4.601166666666667,1.071867142857143,1.57481,2.95085,3.8421833333333333,1.2698766666666665,2.6019,1.6187275,1.6685960000000002,2.35817,3.5700660000000006,5.044133500000001,1.0139666666666667,1.5145714285714287,2.9951866666666667,12.83417,4.712316666666666,2.7028,1.2291485714285713,2.5750135714285713,0.9655285714285714,3.4445,4.143361666666666,4.8848,3.5976666666666666,5.18685,1.62992,4.0348999999999995,4.201555,2.977793333333333,3.6767222222222222,2.3593966666666666,0.9692322222222222,2.4695066666666667,2.973433333333333,7.298900000000001,3.224757142857143,2.7774033333333334,0.69302,4.770566666666666,3.6460666666666666,1.415184,5.735353333333332,2.04012,2.51763,6.0219,1.3768555555555555,3.035363333333333,1.063390909090909,3.026396666666667,4.131015,3.32164,3.1685666666666665,2.23554,2.696956666666667,4.58888,4.84561,5.29495,1.677025,4.36937,3.833755,4.228736666666666,3.4591840000000005,2.39515,4.354651333333334,0.9579179999999999,2.9689595238095237,5.1628,2.741775,4.230687916666667,1.5619625,3.4078,1.917192,1.917192,7.428331666666667,3.18037,5.8230025,3.496478333333333,1.9173166666666666,2.8426414285714285,4.948363333333334,5.657416666666667,8.7676,4.883532,2.8425745,1.8961133333333333,2.0662631666666664,4.040446666666667,3.724715,1.562204,2.1653725,2.474932857142857,1.1908475,3.19643,19.197311666666668,3.2464066666666667,2.6798266666666666,3.24351,2.8615866666666663,2.6378,1.44296,3.24011,3.492766666666667,2.9398966666666664,2.6043133333333333,6.022381333333334,2.5244833333333334,4.594281714285714,2.785241714285714,2.5396617142857143,1.3564766666666666,4.017047777777778,2.2281,4.36863,4.956205,3.93447,3.1289841666666667,3.0231333333333335,2.5383633333333333,3.4067666666666665,2.9393233333333337,3.3493,3.311476666666667,0.8195090909090909,5.02945,2.271835,3.4839333333333333,3.0680038888888888,1.7831525,2.34509875,2.34509875,3.7669654166666664,2.205580416666667,4.85783,4.66405,4.02355,4.505915,5.65895,4.969374999999999,4.969374999999999,4.106175,3.0657599999999996,5.13655,2.84261,1.663478,3.3813333333333335,4.520005,4.50824,2.503125,3.940125,6.032775,4.006866666666666,6.476002976190476,2.748035,0.858382,0.858382,3.27855,4.293645,3.749555,3.755822,2.40909,1.7758533333333333,1.7182833333333332,3.1654433333333336,6.906774,1.5356083333333332,3.997425,3.5883000000000003,3.659145,5.0897,5.30115,4.939613958333334,3.3432,2.4423575,4.58802,3.88216,2.0770125,1.085798,4.628595,2.788725,6.249691666666666,3.4609666666666663,2.68079,3.278315,3.72941,3.67334,4.557375,3.52454,4.52205,3.839715,4.194845,3.686465,3.40552,3.593265,4.340775,2.6440633333333334,4.58514,3.434935,4.549535,0.68145,2.225855,1.7943,1.966955,1.848295,2.56322,2.5829333333333335,1.8395000000000001,4.60935,4.92588,1.9135666666666669,4.06834,4.42732,2.3870825,5.971793333333332,4.161351666666667,5.1298,5.0834,7.075976666666667,2.3104999999999998,2.8305066666666665,1.9723600000000001,3.054586666666667,1.85371,1.7475,3.93557,3.5554,4.81649,1.0297311111111112,3.04858,4.58613,2.2364975,5.6028,3.59483,2.958175,3.7007999999999996,3.22325,1.97259,1.6971447499999999,2.72285,2.780175,3.169,2.0108,2.8601514285714282,2.8601514285714282,3.447925,3.01405,18.91844613095238,1.1567466666666666,5.0286425,2.0911825,2.0126566666666665,4.13263,4.10316,1.9087925,3.76074,4.547195,1.2733083333333333,1.2733083333333333,1.1596366666666666,1.7580533333333335,2.72432,3.12187,4.64285,3.51678,3.757233333333333,0.5311789473684211,3.9561789473684215,1.95568,2.24081,4.39843,3.412075,3.94797,3.5676,4.56494,4.150525,1.99172,4.345525,5.691176666666666,2.32762,3.524115,4.955075,2.116005,4.794255,5.83665,1.4829,2.1013200000000003,3.7967999999999997,0.7609314285714286,3.1199366666666664,3.480175,5.0801,4.676515,2.6691066666666665,8.308946666666667,3.144246666666667,2.944546666666667,0.47988,4.247385,5.330762261904762,3.1111245238095235,5.23655,3.68108,2.5582017777777777,1.9109279999999997,5.46124325,4.541655,4.71551,2.1876,2.123825,4.454865,4.2294,2.8618233333333336,2.032005,3.9830241666666666,6.0392725,2.72623,3.663365,3.58156,4.07111,1.5468,1.5468,3.3723666666666667,3.00156,4.85774,4.671025,4.284185,3.19226,2.872725,2.117965,1.569185,1.363122857142857,5.0007,5.712915,5.2633,5.5797,4.783225,6.1144,4.00985,2.840756666666667,3.9362699999999995,2.5230566666666667,3.022208,1.55605,4.70648,2.31516,4.401315,5.38165,4.086535,2.704196666666667,2.9730366666666668,1.6345571428571428,2.62905,4.105366666666667,2.1481175,0.582938125,3.176856666666667,2.900166666666667,2.91198,2.8189233333333337,2.332395,1.880256,0.7405536363636362,0.7405536363636362,3.7450666666666668,2.08836,2.542175,4.62969,6.04825,5.10935,4.330265,4.123575,4.62749,2.217485,1.2351633333333334,2.48249,3.68244,0.874075,3.28103,2.94502,3.18322,2.09383,4.070175,2.675765,1.9607599999999998,1.4459428571428572,3.981665,7.328135,3.884035,1.8690844642857143,4.94033,3.703725,3.24392,3.28692,2.77337,1.8089866666666667,1.0476325,3.613005,2.467655833333333,2.1079966666666667,1.6383999999999999,2.299653333333333,2.2023366666666666,2.3434399999999997,2.73766,1.2613933333333334,2.0510066666666664,1.2218625,6.752694999999999,5.47445,4.60474,3.832715,3.980645,2.9662100000000002,1.8265276923076923,4.67805,4.93037,2.354325,5.95505,2.074715,4.352745,1.1524444444444444,4.07869,4.015315,1.86619,7.50921,3.62793,1.8257025,1.7341225,2.25962,2.6318,3.475566666666667,1.3950852597402599,3.2555366666666665,5.73985,4.07644,4.348735,5.6699,5.4983,4.91846,0.95403125,4.768325,4.621525,4.2685,5.0186,3.8911433333333334,4.984605,5.40545,2.918485,1.3222666666666667,1.3222666666666667,5.39175,6.0298533333333335,2.98212,3.16385,4.59961,3.83584,1.6126719999999999,4.25053,3.907145,3.777545,3.94465,2.9878633333333333,2.9780200000000003,5.0538,2.417684125,10.958415160795088,1.9275066666666667,0.82491375,2.461063333333333,1.8404625,2.25476,2.26381,1.929472,3.007656666666667,5.0585,5.60525,3.0414066666666666,1.6453816666666665,6.564755595238095,1.345902857142857,3.5323666666666664,0.5317999999999999,4.05139,5.98795,3.771565,5.1158,14.11346,5.76065,2.972993333333333,2.846686666666667,4.911505,3.3676999999999997,4.91569,1.167865,1.3895433333333334,0.7151909090909091,6.0263,4.35857,2.076,4.88668,4.631085,6.35675,5.0594,4.62405,4.63252,6.61405,3.85301,5.2443,4.85601,1.5390679999999999,4.742855,5.8702,3.22054,3.986755,3.917035,2.599995,1.2467875,4.828135,3.93537,1.299975,3.4445,3.21593,2.4023066666666666,2.8662433333333333,2.382476666666667,2.6742233333333334,0.7017118181818182,2.4567666666666668,2.680093333333333,2.6126733333333334,3.0155266666666667,3.0317933333333333,1.99712,1.4563666666666668,2.599225,2.07279,2.22172,3.25048,3.1592866666666666,0.651089,2.779533333333333,3.129125,5.0305,2.4165766666666664,3.80954,5.11115,5.48455,3.28318,3.93286,1.4671285714285713,3.99341,2.5834227777777783,3.910733333333333,3.0241412500000004,4.551175,4.91205,5.0617,3.59079,4.2829,1.0975519999999999,1.0975519999999999,2.2996567307692306,1.7133875,4.16286,2.6036695,2.6036695,5.04875,5.44395,3.105475,1.187805,1.6173428571428572,6.2744,3.617135,3.0305233333333335,3.225785,2.607415,3.12762,3.0305233333333335,4.7565225,3.12449,3.168692083333333,2.801675,1.858465,2.995205,5.6526,2.551795,3.485295,5.06945,6.2005,4.72118,5.2647625,5.2647625,5.30545,4.03361,0.4539738461538461,4.30796,5.0864,2.94486,2.670995,8.70113,2.9988533333333334,4.537385,3.6716,3.161903333333333,5.57235,3.96674,3.4677625,2.7565566666666665,3.2942466666666665,2.5726766666666667,1.8498480000000002,1.8498480000000002,3.497485,3.735235,4.243265,1.998084,1.875038,49.33497856060606,2.4856933333333333,0.8586727272727273,3.111193333333333,1.85515,3.3706,2.9344933333333336,3.16002,3.13446,3.03072,1.9974800000000001,1.05818,4.730115,3.144095,3.460025,4.09514,5.39465,5.3088,5.08925,5.87795,5.7077,5.11735,5.93945,6.597595,5.11665,5.70575,2.0301475,3.68876,6.13305,5.772,3.724265,4.22152,3.208155,2.664265,3.84231,4.86784,2.979713333333333,3.914633333333333,1.641702,3.55659,1.338026,3.246225,3.80677,3.420475,7.3109275,4.883455,2.0443775,4.49944,4.048005,3.85258,1.03670625,2.761095,3.833045,4.286289880952381,1.0748275,4.99828,1.4078875,6.5482,0.6823522222222222,4.1526993333333335,10.159914166666667,4.405205,4.12544,3.91622,1.7770666666666666,3.93365,5.79285,3.0620999999999996,4.112875,9.096358333333333,3.3066766666666667,2.1916366666666667,2.8280600000000002,2.782443333333333,2.93914,2.7854615,2.0816500000000002,2.6188066666666665,2.8413633333333332,2.8234333333333335,2.9569833333333335,3.293395,2.170776666666667,1.4856466666666668,4.180874,3.0362233333333335,2.5209,4.9455393333333335,2.6984833333333333,1.24618625,2.2401125,2.86631,5.098007857142857,2.762325,2.0643844444444444,2.0643844444444444,1.5758925,1.438255,2.1186,1.665976,5.99864,4.0636375000000005,2.454235,3.2981700000000003,3.623466666666667,1.9407025,0.5248808333333334,2.4454533333333335,1.8647825,0.5533723076923077,3.794565,2.4728675,2.25588,3.62739,3.7826741666666672,2.4962833333333334,1.5509833333333332,1.4216416666666667,2.00858,3.29673,3.68281,4.2771225,2.8833,4.09325,3.760245,1.129209090909091,8.868055,2.64834,3.23798,1.27025,2.8647233333333335,2.440515,2.440515,2.440515,4.244575,6.26535,1.70436,4.94867,1.447724,5.58349,1.616756,4.42306,4.07731,4.244915,3.97385,5.0332,1.896995,8.54174,4.11162,5.56975,3.376245,4.148273333333334,3.174053333333333,3.0944066666666665,3.874805,2.63618,4.377375714285714,4.5041375,1.6103025,3.87022,1.6103025,3.351705,4.572085833333333,5.0278225,4.572085833333333,1.8141866666666668,5.86405,4.556065,4.39855,2.8556066666666666,3.1746433333333335,4.71899,3.1547,4.39248,0.6031235714285714,3.10473,3.126663333333333,5.771983333333333,4.649335,2.44664,4.871845,6.725103333333333,3.969105,2.922425,3.063445,2.2915533333333333,4.108595,3.59307,4.87435,2.370115,4.077065,0.861057,5.05275,3.343305,3.96832,3.021523333333333,3.0362733333333334,2.1979833333333336,3.01933,2.6967966666666663,2.66612,3.696825,2.769475,2.769475,4.6668658333333335,3.11712,4.51587,11.0289325,1.0221511111111112,4.449685,2.6355333333333335,2.19134,2.933543333333333,1.4425625,7.2147185,3.8767666666666667,3.900095,4.017671666666667,2.2898133333333335,3.823866666666667,4.785712111111111,2.36421,0.4460122222222222,1.659672,1.827935,5.1654,2.84569,3.211675,3.8479983333333334,3.5957616666666663,2.553715,3.85459,4.82537,4.03964,4.53212,2.144465,4.514865,2.4962933333333335,5.40831,3.0943,4.90453,4.472165,4.70638,4.46685,1.92477,3.78873,3.63036,2.6936633333333333,3.463125,2.93252,3.124845,3.29491,4.085385,3.3707,4.835755,1.8804833333333333,4.30997,2.75964,4.34618,4.75856,3.721675,4.90909,3.245725,4.20522,3.85629,3.920275,2.6075866666666667,2.07328,2.875145,2.43056,0.8731233333333334,4.655195,2.011105,3.44009,2.67343,4.198705,3.479335,2.852055,3.096965,4.18685,4.646610666666667,4.33326,2.88718,1.3953166666666668,2.966425,2.41921,0.871148888888889,4.36622,9.411185,3.409955,3.642095,4.5932,5.34045,3.791345,2.032105,4.0001,3.84502,3.149615,3.20601,3.18711,0.62974125,1.2172271428571428,5.9388025,1.5706125,2.668885,4.997774,2.29901,2.295175,2.67686,6.67379,2.697755,4.207625,3.73804,0.7626922222222222,3.365605,2.62702,3.74094,4.364565,6.247141666666666,0.718765,3.27063,6.8897,3.189565,1.0393722222222221,5.4892975,4.9345,5.39725,4.63182,5.01545,3.49442,2.668393333333333,7.93993,0.875657,3.381055,4.73011,3.063515,4.48357,2.10294,4.34703,1.5407666666666666,4.18687,4.19034,3.967095,1.7275775,4.74518,4.549025,2.4905325,2.154045,2.587725,1.415184,3.99448,3.2517005,2.03416,9.124745,6.03,5.1379,4.60183,3.48021,4.231625,1.3459914285714285,4.7119,4.07592,5.2075,3.565485,2.429396666666667,6.7670547435897435,0.85239,0.85239,2.529943333333333,0.9039528571428572,4.165255,2.9049266666666664,1.02062,1.73895,0.42174249999999996,6.648955000000001,0.97301,2.90657,3.668605,3.861625,4.424375,4.1123,5.0637,5.55307,2.853175,3.06248,2.36141,4.342105,5.6423,4.789725,3.870245,3.763085,6.79265,4.16197,4.4410549999999995,6.96201,3.77822,4.051769999999999,2.33598,4.051769999999999,6.834513,41.12508152164503,3.53066,3.41842,3.2167600000000003,4.413375,4.496275,3.42764,3.380105,3.7846,4.310685,4.55772,1.8502833333333333,5.4688,2.600185,4.72027,5.2204,4.454875,2.396506666666667,5.42,3.90504,3.229105,1.4946540000000001,0.66715,1.853654,3.5982000000000003,3.130573333333333,1.45245,3.7015999999999996,2.86621,3.0935900000000003,2.97795,3.1311766666666667,1.407708,2.6185266666666664,3.863,1.8738417631917632,2.9458366666666667,3.117752,2.83705,2.562533333333333,3.3297000000000003,1.154877777777778,4.91792,3.94072,1.2052616666666667,1.2052616666666667,1.2052616666666667,1.2052616666666667,2.895180303030303,2.0265566666666666,2.49788,3.51102,4.157535,4.43292,4.969285,4.687855,6.0314,5.36605,2.53515,6.02205,3.50835,2.555995,3.517495,3.326205,4.406925,4.44975,0.7802615384615385,1.5608428571428572,1.6153199999999999,4.60083,4.581025,3.65178,4.04301,6.221023333333333,2.2480366666666667,4.856095,1.7247833333333331,4.59027,5.02935,1.5823233333333333,5.80555,0.7230150000000001,5.08115,1.38303,1.2881125,3.78677,4.461025,4.68555,5.45665,5.9836,3.76524,1.4615420000000001,4.80746,1.4603175,3.6793,3.25539,2.5582017777777777,1.76462,3.588595,1.3539783333333333,3.383435,4.719995,2.86319,5.9142,124.15243987049062,0.47715444444444444,5.70205,2.556583333333333,4.77968,4.108035,2.757515,1.5753325,0.38231095238095236,3.29434,3.688145,5.80245,3.05021,3.67926,4.483015,4.25423,3.252255,7.92515,0.6685244444444445,3.477925,0.951595,12.420580000000001,3.098985,3.565615,1.07827,2.67968,2.67997,2.1076075,2.92289,3.2550399999999997,2.275873333333333,4.58154,2.4909866666666667,2.2123133333333334,2.16174,4.008855,2.510605,2.940575,3.57046,3.720635,3.31221,2.3185100000000003,3.811265,3.35213,3.009505,1.1335222222222223,2.53599,4.58154,4.73297,4.919065,4.020845,5.12505,1.84464,11.49907,3.864165,2.70184,3.539735,5.51035,0.5884253333333334,0.5884253333333334,4.641792499999999,4.641792499999999,3.875375,3.3505333333333334,1.804705909090909,0.6309758333333334,2.834925,4.34822,4.35371,4.94805,3.81569,5.275045,4.806395,2.3326725,4.41515,2.2694375,2.90109,4.867841666666666,1.671495,2.98936,0.48045571428571426,1.6203677142857142,1.6203677142857142,1.9818,4.922445,4.024665,5.2251,6.501208999999999,4.51951,3.26229,2.143175,1.987665,4.984165,3.78583,5.27396,3.083965,5.27396,5.5325,3.56566,6.0786,3.80921,2.3520866666666667,2.3550766666666667,2.6869433333333332,1.35904,1.3662025,1.5118475,1.6213525,1.68867,1.5127275,3.3494333333333333,4.58318,2.447835,5.5324,2.9889766666666664,4.31041,2.19021,4.271585,2.9650266666666667,3.2123566666666665,6.293003333333333,3.4289,4.635049333333333,3.4820666666666664,1.3726325,2.5119266666666666,2.469186666666667,2.4418266666666666,5.60635,4.295785,5.0454,13.233201976238673,0.7538433333333333,2.066078,2.448985,1.778082,1.3079357142857142,2.65245,2.60605,2.634725,2.586,0.7783846153846153,1.9502675,0.5289157894736842,5.1549,1.8628,4.15712,4.887975,2.71535,5.6467025,4.82845,8.37076,4.272525,2.784655,2.927045,4.553755,4.66635,2.755765619047619,4.872085,2.1138025,2.1138025,5.3291,4.33675,4.55377,3.938335,3.3386666666666667,4.15485,4.936225,4.541095,4.836175,4.474625,4.30507,4.388925,2.437315,5.15995,1.3520766666666668,4.94494,4.916525,2.430426666666667,2.45273,4.250505,1.3818416666666666,4.910845,1.7250625,6.034458804347826,3.35834,4.1067,1.5210800000000002,3.2993091666666667,3.2993091666666667,11.86939,3.82719,4.38386,1.16538875,4.506933,2.5208,1.3979475,2.5301,2.1065375,2.0876975,1.943384,3.32985,6.17085,1.701575,5.0282,4.8013650000000005,5.2396,2.263395,2.779775,3.65541,4.23473,5.3355,3.882575,7.623505,3.2243933333333334,2.59876,0.44122944444444445,3.68675,3.740035,3.4972,6.397505,2.50316,3.3815666666666666,1.2764149999999999,1.55698,0.582938125,1.659672,2.8528,1.5449866666666667,1.88365,0.69998125,1.300146,4.708725,2.462535,0.654666923076923,1.78995,1.655435,1.9058140000000001,1.3361616666666667,2.217405,1.55698,2.356875,1.300146,1.300146,0.654666923076923,1.6133142857142857,2.52904,1.2698766666666665,2.8246,0.654666923076923,2.57055,2.52904,1.4385583333333332,1.4385583333333332,1.4385583333333332,2.0154,1.1681075,0.654666923076923,1.052554,1.2630375,1.0614444444444446,1.9608940000000001,2.5522,0.89045,2.4332,1.5290714285714286,0.654666923076923,1.716208,1.55698,2.02615,1.9111666666666667,0.9596069999999999,2.02615,1.0934877777777778,2.4905325,2.4680075,2.68335,1.2630375,2.30184,1.3539783333333333,1.3539783333333333,0.9729181818181818,0.9729181818181818,0.9729181818181818,1.2764149999999999,1.55698,1.5290714285714286,1.78995,0.9644357142857143,1.9111666666666667,1.32359,1.852526,1.854526,1.2764149999999999,2.7028,12.641785,0.69998125,2.63368,1.97215,2.6584,0.9655285714285714,0.9655285714285714,0.654666923076923,1.2753333333333332,1.880256,1.5290714285714286,1.7973459999999999,1.9111666666666667,1.1759,1.1759,1.761176,0.1947175,0.1947175,0.1947175,0.1947175,3.5277999999999996,1.0934877777777778,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.1947175,0.3983768181818182,55.33813575685426,1.49,1.6172133333333332,1.5290714285714286,1.97215,0.9644357142857143,0.6240411764705883,0.69302,0.69302,0.69302,0.69302,4.2226,17.42328125,3.5690000000000004,0.7129845454545455,1.750206,1.750206,1.750206,0.7129845454545455,2.8528,0.654666923076923,1.716208,1.88365,2.53782,1.0934877777777778,2.44664,1.0934877777777778,1.511,1.511,2.1953,2.1953,0.654666923076923,2.0671399999999998,2.0671399999999998,1.0382090909090909,0.1947175,2.8528,1.7065000000000001,2.4195325,0.7129845454545455,0.7129845454545455,0.7129845454545455,0.7129845454545455,0.7129845454545455,1.97215,0.3983768181818182,1.0934877777777778,2.3871175,2.3871175,2.4900375,3.384733333333333,0.6609285714285714,0.6609285714285714,3.3752999999999997,4.221133333333333,1.1800285714285714,3.2019800000000003,1.0702500000000001,2.757925,2.10234,1.18181,3.305876666666667,2.07179,3.302046666666667,5.6588,2.533615,1.2780555555555555,4.53719,4.70755,3.2661,1.76156,2.4188669230769233,5.06715,1.6012925,2.5261299999999998,2.8793,3.3189466666666667,2.42524,6.532883333333334,4.36938,0.1947175,3.023823333333333,4.84417,4.43182,4.65583,4.40892,4.48109,2.677756666666667,1.834384,3.51633,4.69596,4.441555,4.71992,5.2891,3.148835,0.6601008333333334,6.754885,1.4119883333333334,3.1315939999999998,5.14495,2.51266,2.51266,0.8072199999999999,1.76462,3.71581,3.061805,4.23254,4.40585,4.956515,5.14595,1.1049685714285713,4.807825,4.78137,7.44180076388889,2.2134199999999997,4.19203,4.399735,4.878695,4.131735,4.227675,4.64834,5.196715,5.15225,4.370003333333333,3.756295,4.216045,7.594638,1.754525,1.9909615384615384,2.8054799999999998,1.7083733333333333,2.561643333333333,1.8516533333333334,5.07005,3.5601000000000003,5.57785,2.03566,4.368,3.90547,3.68089,4.29554,3.79916,2.464046666666667,2.733843333333333,2.7829766666666664,3.0702599999999998,2.5106800000000002,1.5351783333333333,2.6930899999999998,2.7854200000000002,2.64544,2.64544,4.56438,2.853476666666667,1.9204066666666666,3.139723333333333,2.97242,2.5057533333333333,2.7257,2.71232,2.952663333333333,5.39365,4.62111,4.41835,3.799023333333333,3.799023333333333,4.07272,3.09937,4.533685,4.397225,3.612675,3.216225,3.39567,7.3734,2.067095,1.906575,3.37992,3.002935,1.4559866666666668,1.4559866666666668,3.48225,1.77696,3.812722,3.597515,3.157165,2.1019465,2.1524549166666667,0.4774241666666667,2.874405,3.83925,2.20523,2.326745,4.156015,1.2544566666666668,4.95045,1.2521633333333333,0.3681292857142857,0.5115196428571429,22.009270253968257,0.5115196428571429,0.3681292857142857,0.65491,11.094306666666666,3.5901333333333336,3.295765,5.17215,3.4468975,2.8183,4.278975,2.186555,2.536185,3.32733,2.93616,4.25762,4.85845,3.502805,2.238075,3.12271,3.94827,3.97662,3.073155,1.076689,1.076689,1.076689,1.076689,3.369305,2.83621,3.11189,1.7284533333333334,1.2611583333333334,2.4011,3.656535,3.707495,2.65649,3.003885,2.49349,2.8264674999999997,3.891535,4.11197,1.0838616666666667,3.0406766666666667,1.05709,3.0622333333333334,2.36772,3.7403,5.39305,2.3759633333333334,4.47595,4.309783333333333,0.7904350793650794,0.21353285714285714,0.21353285714285714,0.5769022222222222,0.21353285714285714,0.21353285714285714,0.21353285714285714,0.5769022222222222,4.043845,7.185499999999999,3.418435,0.57781625,3.736625,7.6879550000000005,3.3794,3.265136666666667,1.09412,4.634015,5.5513,4.62281,4.671885,1.6489820000000002,4.892185,2.176066666666667,2.3741453333333338,4.090425,5.35105,0.8566414285714286,0.8566414285714286,3.655785,3.0294000000000003,2.086205,3.01827,2.585845,4.751415,2.20544,3.71012,5.60505,5.5993,2.827745,1.71995,4.110745,3.70225,2.278435,3.69469,3.688475,1.813475,1.1127733333333334,3.917775,3.20988,4.826413333333333,6.5786500000000006,1.5464433333333334,3.84482,1.1055966666666668,2.49043,3.576665,4.116685,0.3953721428571429,3.470265,3.960135,0.92967,2.90734,7.63505,5.41225,2.1369,6.007722,4.44743,3.632655,1.441585,5.574059999999999,3.0651533333333334,3.17416,3.6491000000000002,2.2357400000000003,2.2357400000000003,5.5898875,5.5898875,3.2491410714285713,3.2491410714285713,7.24531,3.2491410714285713,3.2491410714285713,3.8894699603174603,6.4214,4.408855,3.6989541666666668,2.9758600000000004,4.592005,4.515145,3.324896666666667,3.3053933333333334,4.41998,3.20392,2.6635566666666666,2.99872,2.39879,2.628755,4.67081,7.16319,6.7236275,4.630515,3.657015,3.92194,6.330441,5.1952,3.08007,4.425505,3.54993,2.2703133333333336,2.06204,1.97558,5.4826,5.0227,4.6857425,4.29917,2.2799333333333336,2.8140966666666665,7.046443333333333,2.0154,2.45612,3.21193,3.21193,3.121615,5.0957,0.772965,3.5743333333333336,4.047215,3.0761633333333336,10.939675,4.5976,2.789896666666667,2.58279,5.659,6.385,3.10291,5.5972,2.5959666666666665,4.511265,2.9936871428571425,4.44696,5.5767,4.986135,1.1554883333333332,3.7740333333333336,1.10370875,2.456463333333333,5.156991852941177,7.8012266666666665,2.77512,3.096963333333333,6.433173333333334,1.78937,4.738315,5.6785,3.462425,3.637335,2.1908133333333333,4.850335,2.4943549999999997,0.4707223076923077,5.44375,3.433185,3.705033333333333,5.4471,4.967845,5.04405,6.751899999999999,5.26255,6.01405,7.32634,55.37049333333333,4.5389,3.932405,4.765345,6.3412,4.78706,5.1643,4.29754,4.801855,1.86692,4.12775,4.168085,4.25297,2.55921,4.888475,3.85793,1.622792,5.98575,6.7509,8.069423333333333,5.67195,3.153145,5.1444,3.2195,3.13326,3.46736,4.205075,3.543725,6.61515,2.73255,1.0817057142857143,2.3658375,0.55906,0.55906,3.979555,0.55906,2.5556280714285715,2.5556280714285715,3.2329060714285713,4.5561495,5.0652605714285714,2.3658375,4.776081666666666,2.506644166666667,1.4145816666666666,5.68205,2.09282,7.635328666666666,5.996366666666667,11.49166212878788,3.068686666666667,2.8093299999999997,0.2836878787878788,1.749533,2.6759733333333333,0.90445125,1.464135,2.80218,1.76053,2.8625,0.637616,27.9387375,1.940165,0.7008938461538462,2.8320866666666666,2.8320866666666666,0.42006055555555555,1.6426125,2.9536175,1.2021925,1.9868575,1.6253775,4.17505,2.81719,2.0044133333333334,2.3232633333333332,1.1333383333333333,2.234175,1.6078983333333332,5.62860175,4.051995,7.019371666666666,2.44094,3.4931,0.9727216666666667,2.664585,5.42155,6.52835,3.0894633333333332,2.187726666666667,5.4851833333333335,2.2231,2.903226666666667,4.374855,1.0981133333333333,3.8349333333333333,2.452,5.92535,5.1837,6.25255,3.54114,4.0600675,4.0600675,5.4016,2.08965,5.71445,2.7215933333333333,1.6189625,4.302025,4.37681,6.121983333333333,5.1311,2.83225,2.529716666666667,2.264985,1.4092414285714285,5.0259,1.02228875,5.5207033333333335,4.213895,7.9709900000000005,4.529595,4.304595,4.16594,8.258138333333333,4.67807,5.1145,1.09183,0.7168357142857144,4.82736,4.534335,2.25585,3.205905,3.35883,4.10498,2.383315,4.986635,2.523143333333333,5.4429,5.4941,4.81331,4.63775,4.93514,2.92419,6.851867,3.466945,4.28555,3.252255,3.84855,5.883727976190476,0.6157492857142858,3.674166666666667,1.76744,0.6915366666666667,3.870705,2.885935,1.043555,2.014885,5.92979,4.407035,2.279945,2.797893333333333,2.7294199999999997,5.29985,4.34778,1.7162361904761907,4.24742,2.5281866666666666,3.6503666666666668,4.41649,4.929615,3.170118333333333,4.1323,3.8374,1.9812400000000001,7.2971,5.04025,4.70158,4.765385,2.3158425,3.98896,4.77635,3.30464,3.889795,10.359245,3.643695,4.082488333333334,4.67099,4.608495,2.4722525,4.100935,3.541925,4.16142,3.1584766666666666,4.210885,1.9369325,2.5946533333333335,3.315245,3.792755,4.899825,1.937554,4.25532,3.0094133333333333,5.5836,2.9377066666666667,1.934225,4.12728,4.762755,1.05053875,2.880605,2.6987400000000004,4.761936,1.552176,1.71282,1.0581925,4.022705,5.0735,5.767485,3.6792800000000003,3.352725,2.3404,2.130205,1.833245,1.5897500000000002,4.822695,2.99202,1.82489,0.9529615384615385,20.876711038461536,2.9615,3.326949166666667,4.672946666666666,4.074693076923077,1.38405,2.826165,2.7975570454545453,1.138232,1.8716933333333332,4.085015,5.25655,3.7299949999999997,4.261915,5.6096,4.80392,7.1840675,5.049940833333333,5.06115,3.606205,2.7333766666666666,3.83715,3.83531,3.5195000000000003,4.554855,2.3834925,5.11625,8.99853,4.16636,3.74809,4.19106,0.56463375,3.263996666666667,2.4175400000000002,2.2945,4.2733,3.271195,4.82798,3.402395,2.70806,2.4012925,1.686265,0.798046,1.48547,1.2088933333333334,3.892315,3.704025,4.380585,4.815365,7.12193,2.5032033333333334,1.376586,2.2250533333333333,8.075006666666667,3.216985,2.5908,3.142755,4.34003,3.36868,3.471875,1.702226,4.377365,5.06365,4.12354,3.86346,3.60438,4.255085,4.656165,3.803935,4.55506,3.73519,2.169085,3.1121466666666664,3.228985,5.57225,2.853445,4.305771,4.136185,2.937765,2.688876666666667,2.257773333333333,2.12681,3.1450883333333337,3.1450883333333337,1.95179,2.7613533333333335,2.3381266666666667,2.296996666666667,1.9183866666666667,3.996785,2.3403199999999997,2.8692733333333336,2.7490066666666664,1.68835,4.135175,2.84231,3.761675,2.59311,5.3961,5.2585,5.06115111111111,2.53928,2.39902,2.797585,2.36475,1.995335,2.941115,1.962365,2.394735,2.580375,6.808564666666666,4.2146,3.483495,0.66500625,4.48844,4.34083,4.486245,3.04675,3.936285,3.701575833333333,6.189,4.749785,3.52832,2.7959221428571426,2.2101939999999995,2.5294,1.8186740000000001,1.6212659999999999,1.547428,2.01116,1.8801575,1.3317883333333334,4.101883714285714,0.654666923076923,0.51979,2.05524,1.593215,1.570562,1.5984416666666668,2.5277887878787877,1.60672,1.7866060000000001,0.609945,172.89228323470525,0.503464,2.15814,1.0542820000000002,1.209055,2.047015,1.739015,1.972725,2.5431399999999997,1.9646075,7.1301,3.16416,3.7894280952380948,1.7040266666666666,3.142825,1.2850249999999999,1.2850249999999999,5.865584999999999,0.48854277777777777,2.2770025,3.2645933333333335,3.112023333333333,0.7449818181818183,0.6767352941176471,1.3105460512820513,1.1159999999999999,2.723075,4.13919,2.2443825,2.2075175,2.37429,4.976718388888889,1.1251444444444445,4.64031,3.71776,3.51508,6.53648,1.8302366666666667,3.014375,2.6914,4.014506,2.13136,3.442855,3.331465,3.59324,4.715015,2.90318,6.15573,2.39459,2.47893,3.18484,1.528415,2.799325,3.18896,2.830565,1.7792,1.49808,2.059445,4.275515,5.9668833333333335,3.32183,2.84946,1.457495,4.34769,3.3320633333333336,3.775066666666667,2.87965,25.043312679181927,2.185386666666667,2.8047533333333337,2.9555133333333337,3.3864666666666667,3.2239166666666663,6.038736666666667,3.0338966666666667,2.5031166666666667,3.0986966666666667,3.2985100000000003,2.0940066666666666,3.251583333333333,3.339066666666667,3.28726,1.7179,1.69219075,0.564727,2.18696,2.05278,0.20562,2.4954433333333332,2.7484,0.20562,0.20562,1.9409199999999998,0.20562,0.20562,0.20562,0.20562,2.770466666666667,2.6332033333333333,0.6527576923076922,3.465173571428571,1.4902025,2.04316,5.1576,4.2671825000000005,6.627560000000001,2.03701,5.15085,2.374315,2.8175600000000003,1.364912857142857,5.937186666666667,2.7545133333333336,6.1583425,1.0090166666666667,1.2523925,5.0742,4.880435,36.42675092524142,1.81126,1.30107,2.3697066666666666,2.376835,0.9729181818181818,2.3241833333333335,2.3858866666666665,2.8127866666666663,1.9740333333333335,2.41532,1.6614433333333334,3.07263,2.3437533333333334,2.2271633333333334,2.4917466666666668,2.4531033333333334,4.177665,3.156966666666667,1.2203142857142857,3.779065,4.103875,20.077053,2.83217,3.1365200000000004,2.6036433333333333,0.8948240000000001,3.1974839999999998,1.7027406666666667,3.1974839999999998,2.31765,2.59862,3.016296666666667,1.688225,2.142745,4.825695,3.97696,5.27105,4.242205,1.9151440000000002,5.4071,1.60082,5.0246,4.110648047619048,5.287,0.7349836363636364,2.207485,2.219425,2.77203,3.294475,1.17661375,5.49775,2.06758,2.12567,1.037906,1.037906,2.40905,3.2256199999999997,4.780515,30.20952958333333,6.144075,1.92919,3.6050866666666668,0.370438,6.44745,4.85999,2.8794,3.277695,6.079015,4.21802,1.2790625,4.73351,1.262238,4.10926,4.56531,5.48405,2.106815,3.00117,4.219465,3.167985,3.2954255000000003,3.965855,1.2999033333333332,2.72272875,4.04145,4.79438,2.7406366666666666,3.00963,3.0512599999999996,3.568185,3.91838,3.93345,4.122333333333334,1.718675,6.11319,2.48707,1.707112,4.057535,5.52685,3.95891,3.626565,0.8955325,2.90673,3.449735,2.1596,4.712368666666666,2.712825,3.831815,2.91443,3.2538199999999997,2.481125,3.3018633333333334,3.179316666666667,3.2212,4.610535,3.98093,4.070175,1.741875,3.962675,4.276455,1.87524,1.78634,1.8128375,3.85204,4.76013,5.492247291666667,3.96835,3.6214999999999997,3.675825,3.3511666666666664,1.5171999999999999,3.12962,3.060085,4.07565,4.607475,4.823445,4.561175,2.63883,2.009835,1.63096,1.4659675,3.494555,2.34353,2.206035,3.335795,4.864505,1.54178,5.55825,1.3949842857142856,1.7399175,3.211515,3.06472,3.02534,3.59505,2.9916,1.678355,1.0482683157894737,3.107465,3.4926166666666667,4.89142,8.51567,2.436,3.020296666666667,1.5811466666666665,2.72763,2.932726666666667,1.179185,3.4730666666666665,2.9550033333333334,2.806696666666667,4.037566666666667,3.6940000000000004,6.812506666666667,3.067353333333333,0.7484272727272727,2.018806666666667,3.40561,3.340525,3.35293,3.6841666666666666,2.6561909999999997,4.326135,2.598285,1.9490165714285714,3.719445,2.9017405555555555,3.31044,2.1764633333333334,4.36206,4.609375,4.609905,3.7334,3.529525,1.0555344444444446,4.59057,3.0746066666666665,3.0774500000000002,4.602555,2.8241666666666667,3.2498066666666667,0.3474,0.3474,3.39189,4.84248,6.21085,3.12602,3.84564,3.63452,2.93507,5.35095,4.56513,1.0007325,4.075815,2.75135,4.623096666666667,3.1180266666666667,3.117205,1.8132000000000001,3.392665,2.6985166666666665,2.9470033333333334,2.5931266666666666,2.71529,2.2804233333333332,23.371481104743083,4.833345,3.87434,3.83494,3.65261,4.772095,3.204045,4.514845,4.41188,4.061295,4.117695,3.93928,3.024836666666667,3.0578833333333333,3.4139666666666666,3.222388333333334,2.91596,4.26918,3.48492,4.495055,5.24645,4.385475,1.2995459999999999,1.5245060000000001,1.5245060000000001,3.408465,4.14153,2.72493,2.6058533333333336,3.0480033333333334,4.579505,3.39572,8.231023333333333,3.211273333333333,2.971576666666667,3.0390716666666666,4.929215,1.6213466666666667,6.462350000000001,2.5897466666666666,2.67501,1.742175,4.30153,3.38116,7.09824,3.392605,2.68398,4.26921,4.170974666666666,1.7301475,2.7515733333333334,1.6731633333333333,8.662767500000001,4.768715,6.895395000000001,2.2629325,4.632865,3.787235,4.09591,5.2162,3.7294,3.7294,2.1403225,4.694085,5.34065,2.68027,6.488985714285715,1.7246825,6.13995,8.927242999999999,3.1842133333333336,4.4936126666666665,2.22166,2.03404,0.542495,4.4246,2.3631325,2.6377,4.2268575,2.475115,2.35243,4.452295,5.47005,4.85877,4.095515,5.7551,4.1877,2.3565575,1.0766545454545453,2.896555,3.41062,3.07253,5.3259,4.041705,4.23503,2.95719,2.1013200000000003,4.458615,0.9941575,5.05595,0.9546555555555556,5.24815,3.171685,4.87524,5.52744,3.02192,3.20076,3.1717,2.57115,4.111825,4.11343,2.72215,4.661125,4.99302,6.500593333333333,4.39906,1.8705375,3.909765,3.206425,5.299471666666667,1.88249,1.88249,2.8327000000000004,2.38487,2.6107299999999998,3.1579866666666665,0.9205249999999999,6.35125,4.71372,1.787275,2.208065,2.54564,3.58283,2.761755,3.68388,4.72482,5.7639,5.04595,6.043,5.9616,1.377375,4.27193,1.098625,2.51935,4.3374,2.491135,3.06322,3.065045,4.53064,3.21063,0.43799315789473686,4.63454,4.128425,4.753915,3.226525,4.925555,5.9813,4.364495,3.81805,1.85693,4.789615,2.0087625,4.215433333333333,4.215433333333333,6.7059,5.28045,5.951,5.22475,2.657655,1.6213466666666667,4.43138,2.072623333333333,1.6701,1.845235,4.35024,4.06653,4.87627,7.98763,1.6322,6.12605,1.2660799999999999,3.44519,6.4065,1.859985,4.80239,3.087483333333333,5.09985,3.28075,4.434055,3.0387866666666667,4.253655,3.947385,6.25725,4.025005,3.932075,4.07024,5.6488,4.15715,4.460175,3.65166,4.66049,8.16487,3.434965,7.03003,3.245,5.3088,6.606829090909091,5.1671,3.432475,2.1554525,4.98303,3.87271,0.8262655555555556,7.85544,5.9953,6.3296,3.1546325,5.26785,2.77404,1.814216,3.814165,1.0838616666666667,5.55035,3.154845,4.62495,5.37975,4.88815,4.51953,2.5924733333333334,4.591895,5.31065,1.739885,7.239871666666666,3.0466,4.062485,5.59175,4.11942,2.15877,4.43126,4.06897,4.27195,3.165093333333333,4.019175,3.649935,5.76465,4.79485,3.610075,2.0776275,2.0776275,7.285575,1.535842857142857,5.32435,4.285765,5.66145,3.912945,3.54242,5.1692,3.746915,0.8843766666666667,0.8843766666666667,0.8843766666666667,3.78282,3.082335,3.83289,4.710881777777778,2.591835,1.3993566666666668,4.98122,2.446715,2.60911,4.28722,5.47795,1.6329175,2.19896,5.46764,4.194165,2.744275,4.400665,1.463405,1.921795,3.137586666666667,2.7181,5.7036,1.4878959999999999,1.586582,1.11680375,4.827215,3.624645,3.242926666666667,3.058203333333333,5.7874,1.721638,2.0247025,3.08471,1.6142142857142858,4.14926,3.68754,2.2342075,6.0872,5.90215,2.78,4.78938,4.51185,3.426735,3.89056,4.390855,3.711905,6.4849,5.64145,1.8129600000000001,1.8608333333333331,3.63889,4.4,4.185835,4.67767,3.416,4.22492,5.34635,4.84266,2.768826666666667,5.3479,3.96737,4.390505,7.3110375,4.61162,0.709339090909091,3.83978,4.009261666666667,2.327665,4.19102,3.7235,5.9094,3.76078,4.469735,3.655275,4.649965,5.3472,4.16206,3.30535,4.130055,5.5065,4.13218,3.59143,2.845185,6.31669,4.765945,1.774718,3.337125,4.034079999999999,3.821665,4.991395,4.492445,2.6880966666666666,0.8680066666666666,4.307034242424242,6.09202,3.85337,5.2958,3.415495,8.111063333333334,4.07668,3.455133333333333,2.7404499999999996,3.7063,2.121165,3.369965,4.408715,2.561524,4.06845,4.95648,1.400045,5.47825,0.73225,6.15015,3.987715,5.37075,4.69992,1.3799083333333335,1.7263466666666665,4.26817,1.88192,3.94704,0.5238816666666667,6.2161,3.107255,1.501486,6.1028625,6.74345,0.9177025,1.7670124999999999,1.27582,1.27582,1.27582,1.9548833333333333,5.221,4.27194,5.0004,3.781115,5.8469,4.207415,1.961858,4.461835,5.2717,0.30872439024390247,3.697555,4.698155,4.19486,41.022857803030305,5.563212500000001,5.2437,12.138812666666666,4.152755,4.453245,7.9511183333333335,3.190425,3.979075,4.250175,4.75097,10.781805,3.809985,2.3602233333333333,2.540545,5.34245,4.176145,3.703665,4.32651,1.93045,4.65413,3.794465,6.9622779999999995,4.601325,5.8651,2.366325,4.112305,0.51220125,1.4154966666666666,3.92791,6.63145,2.820395,1.2993716666666668,1.2993716666666668,3.568405,3.76878,4.450605,3.071055,1.8379666666666665,3.756235,4.117165,2.158015,3.073926666666667,1.669756,2.00678,3.938815,4.35311,2.1667775,4.61546,2.2101825,2.17332,3.606545,3.57054,4.11016,3.767605,6.144726,2.582901,3.528115,0.6522727272727272,0.64257,3.719245,2.175065,8.83994,3.5690000000000004,5.27915,1.6404125,4.60096,1.6229116666666668,4.37654,4.179035,2.6719566666666665,3.998055,5.0456,0.42302249999999997,0.42302249999999997,3.4078666666666666,3.3341999999999996,3.2441133333333334,3.499505,3.58251,4.94669,0.8658990909090908,11.266278333333332,8.796240000000001,2.217405,4.8696675,5.02,5.4413,3.342835,2.740073333333333,2.18674,1.890395,9.3191975,2.346335,2.71773,3.919406,4.626815,3.919406,2.52335,3.14463,2.943436666666667,0.7565063636363636,5.542695,3.469666666666667,2.5584866666666666,4.220935,8.57293,10.02494,4.29559,3.86719,4.87618,6.7484975,1.8924825,1.359225,25.364710833333334,3.461825,4.400185,0.981765,4.34367,4.09969,4.199005,4.33121,4.511075,5.870380000000001,3.0597433333333335,1.9735533333333333,0.7062058823529411,0.7184699999999999,5.08885,4.46621,1.4055549999999999,4.533168333333333,0.8486583333333333,3.4699000000000004,1.4659000000000002,4.193965,5.83275,1.89346,2.5061,2.37057,4.1894,2.97031,0.551825,3.9574,3.720415,2.799936666666667,3.3615,5.0681,2.9007733333333334,4.023395,3.06849,5.7214,8.555083333333334,4.9694,6.69113,2.4565675,2.799856666666667,4.191375,4.34096,4.289625,4.27633,3.674195,5.1705,1.221625,3.0795575,3.151461857142857,0.6877139999999999,1.5245060000000001,1.5245060000000001,5.35505,7.904716666666667,0.8832307692307692,5.10495,0.9670016666666666,2.9459,2.39477,2.921628636363636,6.746155555555555,2.6265,1.1412888888888888,2.676323333333333,1.2582375,2.61876,3.199173333333333,3.080428333333333,3.3547,2.6124966666666665,0.9670016666666666,4.54235,4.638855,5.46335,2.834095,5.52985,2.2981000000000003,5.7554,4.705925,4.60257,3.0746800000000003,3.56525,2.223345,1.4024925,4.595085,2.8643,4.811625,5.5198,1.63113,4.38806,2.60117,6.4128025,3.453575,2.91045,0.9670016666666666,2.440265,3.48357,7.48852838888889,2.47744,1.30851,2.47744,0.44126166666666666,1.22484,3.41132,3.975155,1.78985,3.88788,3.850745,0.572755,0.572755,0.572755,8.582995,1.597642,0.7582336363636363,2.868645,41.0679386038961,1.7682408888888888,0.6403288888888888,3.2084775,0.6403288888888888,3.722915,1.976135,2.4084,2.5678633333333334,5.22115,4.801595,4.219605,2.4015633333333333,0.90694,4.397775,3.02598,4.92482,0.9924157142857143,2.71665,2.71665,3.83785,4.89495,4.18803,5.5976430769230765,3.364735,5.4833,5.6171,1.967858,1.1791475,5.9267,6.39335,3.817645,0.682052,4.30343,4.298500000000001,0.9140325,4.250635,2.45605,4.51342,4.867475,1.9124164646464648,1.9124164646464648,4.21572,3.412155,0.9314122222222222,3.14068,3.0896933333333334,3.857115,3.97276,4.408435,0.3697857142857143,0.31025941176470584,0.31025941176470584,0.31025941176470584,0.6800451260504201,0.6725430769230769,0.64706,0.31025941176470584,0.31025941176470584,7.735390000000001,0.31025941176470584,0.6800451260504201,3.4381,1.2746975,4.54604,1.1919816666666667,0.7225761538461538,0.9140325,2.55923,2.742375,3.85026,2.996785,0.31025941176470584,0.31025941176470584,4.32605,3.640785,4.503905,2.56717,3.99957,1.578166,3.718735,0.64706,0.64706,4.71552,3.03512,2.726675,2.77207,4.038031666666667,0.9478350000000001,0.7611853846153847,9.72193,1.283175,4.711235,4.498195,5.2403,2.15756,0.44151304347826087,0.94829375,3.1817100000000003,3.28606,3.14649,4.87021,1.507054,6.34005,3.843305,5.4065875000000005,4.5155,3.048996666666667,3.1666166666666666,6.61495,2.699923333333333,5.36315,4.138595,4.309783333333333,5.854855000000001,0.6109393333333333,4.09665,3.1551299999999998,2.2890466666666667,0.7436211111111111,4.485685,4.28123,2.829195,2.49166,2.2064,5.2279,2.704015,3.01948,0.9691280000000001,0.46297692307692306,3.854095,0.34244933333333333,0.7531009090909091,3.86498,3.08038,4.470065,2.671075,4.694455,4.250725,6.278327,3.640215,3.35243,5.17175,1.5885875,5.4135975,1.9441579999999998,4.508775,2.564225,6.215613333333334,2.80504,1.07141,4.520515,7.0513875,6.540978333333333,3.280666666666667,0.78791,2.668426666666667,5.21595,4.111945,4.51803,4.834625,4.740795,4.5507,2.782485,4.07388,1.77308,2.22379,1.3152533333333334,3.83174,9.939845,3.10143,3.48961,5.96775,3.033545,4.674565,2.45101,3.146846666666667,3.273085,5.1524,3.4762,3.26306,3.640595,4.9941,5.7551,5.20185,4.556751,5.1125,5.0019,2.75806,5.48895,8.38265,0.8770377777777778,5.12815,4.10167,4.857295,5.25345,5.0427,2.77662,8.169585000000001,2.388786666666667,3.23097,5.53255,3.58175,4.205385,2.15044,1.9996075,2.7167600000000003,2.1445633333333336,2.15255,2.9970833333333338,4.57589,4.729685,4.07863,3.35146,4.947546666666666,3.34693,3.26287,3.93972,5.0436,3.13165,5.585900666666667,4.17506,3.973485,3.54814,9.44702,4.51889,3.54105,4.48484,4.910635,3.61661,9.00014,1.2790133333333333,2.25812,4.264125,3.2535900000000004,3.2535900000000004,1.931685,7.660641666666667,0.9049644444444443,3.399945,0.88151875,2.0247025,4.467955,3.94943,3.969315,4.741065,3.0795,3.447925,3.71588,3.690325,4.743795,2.97751,3.1231866666666668,4.678075,5.95,4.3519,4.55481,1.718148,1.6275179999999998,2.6375566666666668,5.62945,2.3450475,1.6758966666666666,1.9675525,4.71744,4.638285,2.99707,3.01398,0.5144355555555555,2.357095,7.5591,3.09771,1.4158733333333335,0.8535025,1.2106966666666665,2.001,2.07989,0.739415,1.9904933333333332,4.2132555,4.14145,5.1824,2.4444,2.12145,7.025685,2.943575,2.0235866666666666,2.0235866666666666,2.0235866666666666,6.330003333333334,2.21937,3.555875,2.670925,0.498772,1.5828659999999999,2.159875,6.12329,0.4369511111111111,3.7391,3.7997625,5.2348,3.0419911111111113,0.4369511111111111,3.0419911111111113,1.07313,1.332852,5.9633,4.28582,6.86144,4.20326,5.1791,3.79805,4.41516,5.3725,5.54825,6.2623,3.56607,3.35386,5.40455,4.57672,3.987255,4.64554,5.1898,1.4343366666666666,2.94219,1.0796825,2.30604,3.2208125,1.4675125,7.0030275,5.299471666666667,2.8349599999999997,4.99793,2.91932,4.871445,2.93828,4.712565,4.878595,9.541531666666668,6.03455,4.761925,2.1020075,2.599425,2.23054,0.56463375,2.229239333333333,6.201,5.14465,4.93419,4.963265,0.6834666666666667,2.003295,1.35656,4.49815,0.8418076923076924,7.607687499999999,2.0747875,1.0528075,1.0528075,3.72697,2.01798,3.5149000000000004,2.555535,4.589085,3.7842025,3.7842025,4.832215,6.117216666666668,2.796913333333333,2.4815033333333334,3.4256666666666664,3.851655,1.83784,2.86474,5.43425,5.4306,4.889965,4.587065,4.042303333333333,4.83077,3.6257966666666666,3.1909466666666666,2.2136375,4.08186,5.32355,3.0018537500000004,5.02755,5.9891,2.05511,2.61742,6.2241,6.8861,1.947242,2.725775,2.28983,2.9339133333333334,2.1728025,2.6076,2.6135070000000002,1.0616077777777777,1.9181925,2.5328,2.165365,2.5254633333333336,2.5254633333333336,3.1621145,2.75645,2.139178076923077,2.600825,2.4935425,2.1062000000000003,1.6145653333333336,5.037100000000001,14.617537833333333,2.9188233333333335,3.8025,1.836972,1.836972,1.7190833333333335,1.7190833333333335,3.08588,3.923133333333333,2.7761133333333334,1.8938825,1.8938825,3.6130666666666666,3.27951,1.1755366666666667,1.5536285714285716,3.25024,2.7952100000000004,4.013133333333333,2.7343933333333332,3.363566666666667,3.32464,0.733008,2.688075,3.6197923333333333,7.3107050000000005,4.892485,3.78374,4.4391,3.40946,4.680675,4.93166,3.080223333333333,4.493485,1.45613,3.31739,5.5883,5.3217,2.69588,1.225485,2.916605,2.7788799999999996,3.4163666666666668,1.6021633333333334,0.7159714285714286,3.176213333333333,4.692615,4.624295,4.576555,4.89583,3.13132,2.0315533333333335,3.2055708333333333,2.919613333333333,3.5497666666666667,3.19839,3.3686666666666665,2.5317966666666667,2.846783333333333,3.6309,2.9455833333333334,4.974305,5.2984,5.262945,5.262945,3.310205,3.92046,3.60022,3.61363,2.73339,5.32895,3.2734,3.0207599999999997,6.3273,0.8364416666666666,5.04335,4.68693,2.519973333333333,4.915140833333333,2.9470033333333334,1.9678333333333333,1.4782571428571427,2.281703333333333,1.01151,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.34070071428571425,0.5625785714285715,0.5625785714285715,1.19017,0.9276816666666667,1.7438181313131313,0.9871471428571428,0.9871471428571428,1.3016414646464647,0.44217666666666666,0.4004655555555556,1.2588375,1.5829175,3.684366666666667,2.651275,7.919558333333334,2.9976299999999996,4.19694,3.96638,4.695098285714286,1.28403,4.79843,3.969655,4.316,3.204255,1.464712,4.236181538461539,3.73413,5.3138,4.601435,2.971425,4.311005,4.216965,4.58593,1.2458420000000001,4.0222,4.667045,3.17271,2.5530633333333332,3.361805,2.47228,3.098945,3.658275,3.0457733333333334,5.22775,8.717295,3.20636,5.1612,4.504915,4.34853,2.6920066666666664,3.56127,1.8496000000000001,3.93554,3.22423,1.808972,0.93821625,2.86679,1.2683366666666667,0.5398333333333334,3.723133333333333,4.35183,5.1133033333333335,3.7568,2.3799825,2.62431,5.01175,4.146166666666667,4.592945,2.698725,2.2546666666666666,3.856765,4.59132,4.123365,5.4071,4.435205,3.71595,5.02275,3.31012,4.582545,2.1722583333333336,4.938715,5.03405,3.18991,4.04797,2.547745,3.688715,5.51735,4.71432,5.9321,4.693375,5.0982,3.0390533333333334,5.631,5.0686,4.618855,2.61975,0.959035,3.995945,5.0328,4.73417,4.67606,1.767125,4.271945,2.22013,5.2274,4.851725,5.17665,2.33359,4.466255,5.0225,4.63902,2.9085133333333335,4.720155,5.378,5.13285,3.79458,2.61975,2.395125,3.119625,4.62335,3.905565,4.134685,3.897035,5.10305,2.35281,6.83336,4.938355,4.657145,5.188987527777778,4.766607499999999,5.26965,3.46267,2.3443566666666666,2.3443566666666666,4.05197,4.513525,4.46085,2.3529525,3.05684875,1.03120125,3.0690333333333335,3.2660933333333335,2.8174333333333332,3.2235300000000002,4.979335,2.9497400000000003,5.9565,2.74565,4.2781,4.0794025000000005,1.956725,4.17663,1.6170733333333331,3.1528666666666667,4.094875,0.9927440000000001,5.26855,4.918295,6.62141,4.262015,5.23105,1.4513571428571428,4.81438,6.39475,8.87604,3.1700533333333336,3.231996666666667,2.09692,0.883415,4.02923,1.0118785714285714,4.017425,4.535585,4.554315,3.096135,4.18056,1.0742242857142856,3.31149,3.540855,4.35155,4.29766,3.973875,3.93413,2.447155,4.303385,4.898185,5.57745,4.605905,3.6251,0.31776444444444446,0.31776444444444446,0.31776444444444446,0.31776444444444446,5.579,2.949325,6.45795,2.8448333333333333,6.18085,4.801555,3.824135,2.318145,2.45341,1.5145833333333334,5.6582,3.0968400000000003,4.054775,4.73399,3.358455,1.635095,1.19481,4.52205,2.37479,7.006043333333333,3.792685,5.39635,2.19211,1.4590366666666668,0.8818188888888889,3.235855,4.63708,2.922055,2.210155,8.64074,3.76943,3.43523,2.34628,0.427255,3.310255,2.535345,2.064345,1.89338,3.208115,4.198825,2.64172,3.5672333333333337,2.977105,3.55729,4.524805,3.620695,4.389395,3.96987,5.368765,0.6291046666666666,4.55956,5.4696,4.805645,4.668555,3.260286666666667,5.08845,4.629535,4.501725,5.234566666666667,5.41055,4.464725,4.270195,3.554125,4.546065,2.468225,8.82111,5.11165,4.36983,4.941945,5.0881,4.798235,3.568935,1.0951855555555554,5.66188,3.900665,5.35775,1.2808583333333334,4.13837,4.178715,7.555631666666667,4.62363,3.04673,2.1156366666666666,3.94225,1.643936,0.97782875,4.052105,6.427,1.9636033333333334,2.3327433333333336,2.7396733333333336,3.556265,3.547225,3.59719,5.00155,3.9127333333333336,4.20691,3.5831685,3.25612,3.6509,3.621715,2.71888,2.62504,2.2103275,2.4266833333333335,2.6722133333333336,4.293665,0.4774241666666667,2.529856666666667,4.517825,3.019965,3.5866666666666664,4.536415,5.8243,4.124155,17.336975106060606,2.937656666666667,3.860666666666667,1.562204,0.8476272727272728,0.8476272727272728,0.8476272727272728,0.8476272727272728,0.8476272727272728,4.76664,4.84744,4.903265,9.2318505,2.74775,2.74775,4.507535,4.525691666666666,1.238335,1.9434966666666667,4.54558,2.530625,2.2242175,2.298965,3.006225,3.8053166666666667,2.142175,4.148135,0.8045,2.9178800000000003,3.1429733333333334,2.9532933333333333,1.3742633333333334,3.356,2.2392600000000003,0.89528125,2.8279566666666667,2.6904066666666666,1.1845555555555556,2.4768866666666667,3.0371900000000003,1.9350633333333331,4.573858666666666,1.9106733333333334,3.2110633333333336,2.0868475,2.825753333333333,1.129288888888889,2.5793,4.885061333333333,3.8014666666666668,1.1418875,2.9314766666666667,1.3757775,2.5130866666666667,2.905943333333333,4.670493333333333,3.22143,2.675606666666667,4.833588,2.7180366666666664,2.1231,2.8796433333333336,2.7114733333333336,2.0520866666666664,2.87027,3.5836,3.329076666666667,3.0471266666666668,3.472433333333333,2.6943933333333336,2.47221,3.8089739999999996,3.8089739999999996,2.9136133333333336,1.9760900000000001,1.84343,2.5942066666666665,5.594040000000001,2.813883333333333,1.95425,1.74034,3.0843666666666665,4.558065,2.5374933333333334,1.0688879999999998,2.7736446666666668,1.5003399999999998,2.80109,2.1561333333333335,2.52525,2.05218,3.2855833333333333,1.200858,1.5641133333333332,1.43836,4.160871666666667,2.4275066666666665,3.998455,1.0050777777777777,3.964765,2.2859000000000003,2.4730725,1.7231280000000002,1.6652233333333333,3.162573333333333,24.737183716450215,6.7371066666666675,2.758453333333333,3.4269316666666665,2.28628,10.603757333333334,3.0055300000000003,1.0457325,2.51018,2.355156666666667,2.095546666666667,3.036626666666667,2.5345999999999997,2.4942333333333333,0.8157400000000001,2.9295533333333332,2.4194133333333334,2.8969166666666664,2.5923700000000003,2.6978833333333334,2.0924866666666664,2.1669066666666668,2.770583333333333,2.54639,2.188105,1.635802,6.040278333333334,4.70379,2.4249175,2.9182,2.2142866666666667,2.4412033333333336,7.995355833333333,1.8966433333333335,4.921515,2.25643,1.8933325,7.26562,2.935373333333333,2.82021,2.559,1.819976,1.4868280769230768,3.4611,3.4002666666666665,4.112115,1.56112,3.9606,1.3985675,1.3985675,4.25376,3.60151,2.6246228571428567,2.6246228571428567,6.160393333333333,3.30401,0.41082599999999997,11.535199624542125,1.1748566666666667,0.9488757142857143,3.69233,1.4806930769230768,1.7629475,6.545033333333333,3.628765,0.8286372727272727,2.0898533333333336,4.976601939393939,2.644184166666667,4.301455,1.6552714285714285,5.85165,5.2229,5.30685,3.6545655000000004,2.03352,3.2016666666666667,2.63102,2.6697900000000003,2.24956,5.44219,5.1876,4.80283,1.8811025,4.71473,4.059615,2.8464066666666668,2.391065,5.1709,2.69599,8.140953333333332,7.0669925,2.18342,2.373415,1.6654620000000002,4.7215,4.7215,3.1764666666666668,3.183733333333333,3.6099930000000002,5.21535,9.04843,4.36505,2.565525,6.03745,4.21629,5.42125,2.08778,0.85383,1.3379750000000001,4.35777,4.8894,3.6776,3.01402,3.745566666666667,2.1589199999999997,3.75996,4.44809,3.28468,5.41425,3.2486033333333335,3.693289333333333,3.648,3.251056666666667,3.4749666666666665,6.17235,2.897975,5.68725,5.4696,3.23278,3.4426,3.4426,5.500325,12.269754166666667,3.7548,6.5519725,7.448082777777778,3.53396,2.51181,3.937125,1.3180666666666667,3.876195,2.0400275,2.9548233333333336,3.4626333333333332,3.7322,2.22052,2.4052433333333334,2.7209566666666665,2.5928833333333334,3.16651,3.1074933333333337,4.17551,2.4173133333333334,2.8643366666666665,4.23515,3.0029266666666667,2.68033,1.15571625,2.05267,3.0059766666666667,2.643186666666667,2.5778233333333334,2.4052433333333334,3.7128666666666668,2.3818266666666665,2.5547400000000002,2.9419633333333333,2.85853,2.8968399999999996,3.2781599999999997,2.34639,3.3357666666666668,2.9209599999999996,3.224038,2.6221533333333333,2.4865233333333334,2.4133133333333334,2.363166666666667,2.5147133333333334,3.1173566666666663,3.1103366666666665,2.705075,1.99771,1.99771,0.8423216666666667,1.702226,4.539885,3.16452,2.6451333333333333,2.22052,3.4439666666666664,1.2418971428571428,2.7455700000000003,0.5571026666666667,3.643133333333333,3.4041333333333337,3.238785,2.9384333333333337,2.5892399999999998,2.9393433333333334,3.3063866666666666,2.7853266666666667,3.4832666666666667,5.702780000000001,1.6447500000000002,2.436733333333333,2.49616,1.8196266666666665,2.0548699999999998,3.1647266666666667,2.7851233333333334,1.716722,2.473733333333333,2.596643333333333,2.7153166666666664,2.66444,2.9325266666666665,3.0502066666666665,3.445266666666667,1.3528975,3.1461733333333335,2.2983,3.6060666666666665,3.4911,1.971125,1.7355966666666667,3.6829,2.8809466666666665,3.3758666666666666,2.563826666666667,3.02892,4.719865,3.1337766666666664,2.0753166666666667,1.6848079999999999,3.4374333333333333,6.27322,3.2711,3.6141,2.9482933333333334,3.4285333333333337,4.501111333333333,1.599828,1.2639444444444445,2.6855733333333336,1.8376879166666669,4.34876,2.998326666666667,3.4443333333333332,2.82403,3.2402233333333332,2.3629000000000002,3.236943333333333,2.4309025,1.621636,3.0382599999999997,3.40568,3.9378900000000003,3.164795,4.13139,1.6309375,2.66406,3.05263,2.50874,2.4090866666666666,3.3016566666666667,3.8646,3.6996333333333333,1.4034975,5.509122,3.22943625,1.6210216666666666,3.90137,4.008565,2.86289,4.12127,1.924584,1.924584,3.3989666666666665,2.87893,2.77288,5.48125,4.357255,4.210446666666667,1.13333,2.7591433333333337,2.7102233333333334,4.0840325,2.7342933333333335,4.360848,2.8064533333333332,2.2694300000000003,2.7444366666666666,3.51629,3.487665,1.6733319999999998,3.152563333333333,3.590545,2.2159625,4.422605,1.2482716666666667,3.46313,4.29164,2.641185,3.429415,4.110665,1.577885,1.53466,2.3811925,1.1232083333333334,2.173265476190476,2.0335225,0.45293214285714284,4.541965,2.31668,4.87345,4.861895,2.87808,4.529495833333334,3.0658066666666666,3.1146666666666665,3.7816333333333336,2.357276666666667,3.2967566666666666,2.9918566666666666,3.5938,2.2401066666666667,0.6703307692307692,2.2906066666666667,0.6320714285714286,1.9107266666666665,2.3569366666666665,3.176973333333333,3.408666666666667,1.5306866666666668,1.359235,3.82,4.802545,3.811295,3.6121425,3.330985,1.98083,4.076195,8.460283333333333,4.023115,5.788385,1.45595,3.997855,1.9391475,3.84048,3.97492,1.783025,4.19258,2.668515,4.027635,4.310765,2.27277,4.19184,6.4321174999999995,5.41105,3.258785,3.152045,1.655435,1.952515,3.763285,3.493595,3.20741,3.67593,4.097765,3.20972,1.7513575,3.85155,3.240955,1.869065,4.488357499999999,0.8452583333333333,3.56157,1.70489,4.51897,4.678586666666667,3.63061,2.9060300000000003,3.930885,3.606555,2.15487,2.3451575,3.8297333333333334,3.38236,5.7168025,4.04534,4.449255,2.32972,2.48441,5.03195,4.194615,2.5673120000000003,2.5673120000000003,6.015088333333333,3.7742925,2.6210825,2.93554,2.2546733333333333,2.905955,3.35844,3.7721766666666667,2.6570525,3.652195,1.0457420000000002,4.03683,3.12657,4.101115,2.9567,1.4799,1.636265,3.28344,5.744588,5.340450000000001,3.387935,1.547285,4.013555,3.550655,0.8182733333333333,3.354115,1.216972,5.9328175000000005,1.4818666666666667,4.07041,2.372235,1.5306866666666668,3.05277,3.499325,4.39529,7.524654999999999,4.309095,4.2160125,2.606005,2.830325,4.789875,3.80593,4.81573,4.47134,1.0260575,1.69219075,1.12746375,2.538755,1.936715,4.537385,1.12746375,4.79804,2.19917,1.6262075,1.6262075,1.869065,3.936045,4.61691,5.04875,1.65814,1.65814,0.9394033333333334,2.999765,2.08834,6.024785,4.451355,3.79055,3.100913333333333,0.9857957142857143,3.546765,3.24881,4.35077,3.774755,3.8766025,3.8766025,3.28665,3.883325,2.1280675,2.614515,1.0039500000000001,1.7506033333333333,3.62475,2.014343333333333,3.851495833333334,3.851495833333334,3.009655,4.785175,4.45053,2.83869,3.647235,4.265645,2.8307800000000003,4.6113125,2.683415,3.56337,8.72462,5.0335,2.622335,3.087905,3.07985,4.683975,2.96953,7.59549,4.521551,4.74434,3.43973,3.88734,3.699775,4.200145,4.736275,2.11618,4.07003,6.649884166666666,2.473815,2.1803071111111114,2.97723,3.39425,3.32617,4.821755,2.1908133333333333,2.13686,2.61909,3.1166549999999997,2.9400933333333334,6.550876,1.346955,4.799356666666666,4.799356666666666,3.111765,3.846926666666667,2.92541,2.546816666666667,4.91913,4.189703,2.194408,3.91384,4.34189,3.442825,3.02015,3.06963,6.876645,3.328815,5.13645,3.086645,4.6447,4.10667,3.737905,2.87893,1.8634666666666666,2.435095,4.03581,2.94551,3.3568816666666668,3.377415,6.722253333333334,2.56069,1.93993,3.3361633333333334,2.3243566666666666,4.20916,2.595835,0.8182733333333333,3.15879,4.19296,3.91293,5.879415,2.896315,2.69879,3.0751333333333335,3.0751333333333335,3.4290425000000004,4.63571,3.581605,2.130885,6.87791,2.108755,4.60563,3.662845,7.78121,2.7416433333333337,1.3171,3.135565,4.316505,0.62806625,4.024455,2.75458,2.956265,3.36699,4.520915,2.1746,2.47117,8.686834999999999,3.39315,2.680055,1.4818666666666667,4.036255,2.69974,2.35865875,4.00079,5.4083075,1.6562225,1.2653916666666667,1.1621416666666666,4.06177,3.718295,3.62709,3.6201475,3.6201475,1.7513575,2.356885,3.1776833333333334,0.9095433333333334,2.76307,1.1483875,1.6309375,3.36907,3.516285,2.35553,2.281395,2.8325899999999997,4.22204,3.38786,2.8669,3.248605,2.66843,4.227755,6.318515,3.98738,0.89727,2.4419085,8.59302,4.432525,3.910655,0.99532,4.460126666666667,1.4560566666666668,2.9107825,2.9107825,4.003155,9.0774175,1.0821033333333334,4.85418,4.50255,2.2885033333333333,3.907443333333333,4.70785,2.1669775,9.403709333333332,2.00887,2.1019833333333335,3.277915,2.0256133333333333,4.009378083333333,2.774,3.49904,3.234836666666667,3.012025,3.36938,1.2170733333333332,7.41491,4.216425,3.986465,4.0559,1.83764,2.9060300000000003,4.077876666666667,3.798745,0.6641253846153846,4.987515,4.52887,5.33435,2.1390025,1.29637,4.60454,4.156765,7.92846,0.7260876923076923,0.99136,0.99136,1.9755099999999999,1.4319066666666667,1.290716,1.7593466666666666,4.93322,1.1547466666666668,0.8147585714285714,4.0913875,3.667715,1.6036475,3.42292,4.60031,4.085605,0.604572,1.98593,10.575375,3.8039416666666668,4.15242,3.13858,1.3028625,2.4579866666666668,2.84222,4.911075,4.434185,3.996475,0.9384114285714286,1.626858,0.9535589999999999,5.1660125,4.204055,4.09068,0.9095433333333334,1.778678,4.02551,2.2385214285714286,4.175893333333333,1.025725,4.693645,0.6643083333333334,0.6643083333333334,0.6643083333333334,10.075515,3.98369,1.1483875,3.649355,4.47061,3.0844,3.439495,4.697513333333333,3.46823,2.0688016666666664,2.13132,0.604572,1.4228453333333333,0.5858133333333333,0.8922716666666667,1.2452866666666667,4.341865,3.778565,2.12224,7.529741666666666,4.886903333333333,0.6513011111111111,5.68525,5.84792,3.53591,4.433535,7.886846,3.8624807142857143,4.886903333333333,4.45941225,2.5513666666666666,4.452905,3.67919,6.65142,3.586845,0.427255,1.529006,3.99806,1.7523520000000001,1.2653916666666667,4.269795,2.4193933333333333,1.66198,3.044975,1.6403960000000002,4.335165,4.519495,4.180235,4.624565,5.8817,2.863745,3.930235,1.216972,2.3446025,3.58915,3.005135,2.194408,4.202095,2.63715,5.05325,2.995685,2.29678,3.3691191666666667,1.5950659999999999,3.59619,0.9095433333333334,2.17204225,1.1621416666666666,1.645525,3.555595,1.346955,1.2452866666666667,2.42452,2.66709,7.81075,0.9384114285714286,0.99532,1.301696,3.573085,4.23695,1.301696,3.862385,2.3446025,0.62806625,0.9095433333333334,1.9755099999999999,1.216972,0.45293214285714284,1.622792,4.218678666666667,2.2885033333333333,1.4734983333333334,2.8213,1.4034975,2.00887,2.936895,2.13132,4.534285,2.936895,0.8182733333333333,2.598062,2.4894075,0.08992181818181819,0.08992181818181819,0.08992181818181819,0.08992181818181819,0.08992181818181819,3.4127666666666667,2.7098566666666666,2.830526666666667,3.0664,5.24895,4.067555,1.7231280000000002,3.61186,3.64179,2.113595,4.90103375,2.59429,2.39209,2.37771,2.684085,4.9493,8.234601666666666,2.5015,2.0612733333333333,3.010582142857143,0.9385271428571428,1.3713633333333333,2.32597,2.297433333333333,1.61808,2.6617133333333336,2.1247333333333334,2.6644733333333335,2.7802066666666665,2.6633666666666667,3.87389,3.989635,2.626653333333333,1.263066,3.49453,3.70943,1.4653766666666668,1.25419,1.25419,1.25419,3.55687,2.8333333333333335,1.1226433333333332,2.2802266666666666,1.22513,4.28064,1.7026233333333334,7.230753333333333,3.4793425000000004,3.030663333333333,3.137854,3.137854,5.563370000000001,2.872135,4.71259,5.0274,2.1041575,3.24564 +GSM1946766,0.0,1.9994975,1.9994975,1.58472,4.161315,6.2348,2.295039605263158,1.6321,7.562070588235294,4.361635,3.1651000000000002,3.02538,2.32384,3.273295,4.257835,1.8229579999999999,1.52004,5.0232,2.471486666666667,2.24309,4.68113,5.282533333333333,3.92509,2.382495,1.790938,3.97263,4.506805,4.634585,0.6791575,1.5936427777777777,1.9578144444444443,1.738855,1.59215,1.0749471428571429,0.6912733333333333,3.062244642857143,1.5475925,1.84784,1.17996,2.0998775,1.088775,1.0591525,1.096302,1.486092,0.908046,0.9194660000000001,0.778676,1.1904785714285713,1.65675,1.832216,1.524668,1.93495,1.6634879999999999,18.231009916666668,0.38407933333333333,0.8238899999999999,1.087584,1.759782,1.407386,1.696256,1.0559085714285714,1.0559085714285714,1.0559085714285714,1.15406,1.010432,4.719805,1.1260775,2.4267325,2.01217,2.410475,0.972161,2.1849825,2.2696325,1.9296725,1.600115,1.9130425,1.6033,1.6950375,2.5268666666666664,3.638935,4.72502,5.09775,1.5674966666666668,4.661805,4.393400000000001,4.037735,4.033275,1.04160375,7.59921,0.602430625,0.602430625,2.2595175,1.0913257142857142,16.335404999999998,4.670925,5.3717,5.4845,4.093175,4.222375,5.26225,0.45182944444444445,2.3316625,1.849015,2.29461,4.473685,3.660595,1.521075,3.17519,3.5007333333333333,3.3116466666666664,3.6333333333333333,3.557565,4.67683,2.8918475,4.480735,2.9176066666666665,0.7026572727272727,1.6748699999999999,2.6316,5.0286,3.8098,0.551615,3.599745,3.784265,0.80631,4.536235,1.693647142857143,2.198455,2.849625,2.1287325,4.075465,5.85365,3.361915,2.71359,3.423833333333333,3.04923,4.290885,2.9715866666666666,5.6227,3.3898,4.49672,3.222285,2.46519,3.663185,2.4306,6.7370133333333335,3.48382,3.653025,5.8054,3.067765,4.821325,0.7611322222222222,9.538914523809524,3.44596,1.9233799999999999,1.84172,3.162986666666667,2.307565,4.67734,5.49465,2.1445075,5.270743333333333,2.747765,4.549425,2.1445075,2.9581766666666667,4.32538,5.24901,3.736245,9.13335,3.788905,5.0675,2.96932,5.0158,4.393615,1.83225,8.17958,4.40405,3.997745,3.56339,3.692215,3.349925,2.24613,6.05286,2.402525,3.949205,3.97359,5.06805,4.78747,3.419665,1.4231800000000001,2.8121,2.93189,1.8672075,1.8672075,6.0807657142857146,3.091495,1.88142,4.44842,4.50119,2.77939,1.5020033333333334,0.9307133333333333,6.89415,2.982725,6.8986,4.757555,4.00954,3.743305,2.83089,3.72457,3.54753,3.951775,3.985325,5.82695,2.911155,3.593685,9.21539,4.799575,3.574033333333333,3.095126666666667,2.763246666666667,3.892333333333333,4.343395833333333,1.8496725,2.709896666666667,2.14294,1.753808,1.7453666666666667,2.6126633333333333,1.70345,1.838495,2.980863333333333,2.7583633333333335,2.4027933333333333,2.7567033333333337,4.393400000000001,3.51083,3.213735,3.32483,4.2952,1.2521166666666665,2.20746,2.8693808571428576,2.06136,2.5869766666666667,2.1261366666666666,3.3410333333333333,1.75413,1.36018,2.8226833333333334,0.675328,1.64191,0.5253533333333333,0.5253533333333333,1.4831566666666667,2.426223333333333,2.1355833333333334,1.33159,1.5565333333333333,0.31131384615384616,2.6933933333333333,0.675328,1.2361933333333333,0.19878945945945944,1.4676766666666667,2.021045,3.479233333333333,2.0565633333333335,2.2129333333333334,2.52032,2.252596666666667,2.3815433333333336,2.48402,2.3092099999999998,2.2270033333333332,2.7276366666666667,1.9511200000000002,2.763595,4.15381,0.6707550000000001,1.7948233333333334,2.571,2.0177,3.36504,1.56022,2.59736,2.1834599999999997,4.34864,2.0022333333333333,6.977539523809524,1.6368428571428573,2.8379966666666667,2.0872625,1.8728525,3.2279466666666665,1.900005,1.93264,3.94659,2.6826066666666666,2.088925,3.83384,4.078065,4.38473,3.736,2.25259,3.408275,4.4058779999999995,3.807945,3.942795,4.240865,4.499565,3.05133,4.046365,3.42212,0.90318625,4.863375,1.2499183333333332,4.859325,3.84727,5.796342,3.589865,4.31496,0.96509125,2.22486,3.52839,4.06695,0.8062557142857143,1.1061603846153847,2.0627785714285714,3.8619085714285717,5.7044525,5.707564,2.2750175,3.11408,5.1407,0.3435878571428571,3.419155,2.422995,0.9887975,4.87353,2.038545,11.809995,1.296025,1.313855,2.0686833333333334,2.36623,2.3749653947368423,5.059330394736842,0.4912578947368421,1.7412333333333334,2.7368233333333336,0.99317,3.749966666666667,1.037667142857143,5.20375,3.852495,2.1340033333333333,6.0238,5.69095,2.69555,1.1049,4.50087,4.907405,4.319125,0.8476672727272727,7.855386666666666,2.8381866666666666,4.22072,2.6532033333333334,2.4469933333333334,4.47253,2.3535766666666667,2.61453,2.049236666666667,2.48988,3.17057,2.908466666666667,0.3486275,4.10326,3.83629,3.83286,3.916015,4.50732,6.1166469999999995,4.065325,1.6520775,5.4621,4.397905,4.349785,4.317335,1.0984266666666667,2.6453966666666666,3.16567,2.5463333333333336,15.878715,3.28268,3.88769,4.21544,5.78655,2.720535,5.152846805555555,1.6678325,0.8007611111111111,2.7425,3.37725,3.66603,3.9423,6.472518333333333,2.9153366666666667,2.24938,2.20129,3.4013333333333335,4.65259,2.2558325,0.3656635119047619,2.9524021739130433,1.927565,1.1408425,0.4940895988612836,0.6225156858178054,0.3656635119047619,0.3656635119047619,0.3656635119047619,1.1257425,1.323085,0.871315,1.4604075,4.2458275,0.22427029411764707,11.198956753246751,3.5045333333333333,2.82396,4.097485,4.229625,3.882555,2.176835,4.696835,3.940106,4.16287,3.92732,0.6319469230769231,3.3314,4.26555641025641,0.5369628571428572,3.14685,2.756546666666667,4.290015,0.5269900000000001,1.81334,4.4826,3.371865,1.8687475,1.7933266666666665,1.5277766666666668,3.0884133333333335,4.05886,3.033175,2.854036666666667,5.5702,5.6218,4.799905,3.2693266666666667,3.083642,6.772016666666666,3.8016666666666663,4.962915,0.424812380952381,3.04513,3.9335983333333333,2.0739466666666666,2.713645,2.8345883333333335,5.587771666666667,0.5901666666666666,2.890675,4.28497,4.596915,1.0458571428571428,4.650545,2.73086,4.88056,3.035686666666667,4.246915,3.530565,4.35156,1.1658833333333334,3.33281,2.7824333333333335,4.67004,4.0689,4.366635,5.8385,4.452745,2.661,5.25415,2.27033,2.836715,3.11497,2.6199133333333333,2.6872566666666664,2.26166,1.8170600000000001,1.61383,2.0794200000000003,0.80512,1.5541666666666665,2.1307233333333335,2.061533333333333,3.0112666666666663,3.249143333333333,2.8288433333333334,0.9269522222222223,5.0475,3.3044966666666666,5.435487083333333,2.7259004166666667,3.1740366666666664,2.831493333333333,1.6748833333333335,1.6748833333333335,2.410574025974026,2.410574025974026,3.3819425974025976,0.5142871428571428,1.7955966666666667,1.9915633333333334,3.701333333333333,2.1743661904761904,2.1743661904761904,2.1743661904761904,7.4158551190476185,4.352848571428572,0.9552545454545455,2.568955,4.893061666666666,2.38843,4.74375,3.233405,2.32458,4.247845,3.0040600000000004,3.0208666666666666,1.2682375,1.9680600000000001,3.028973333333333,2.32903,2.6211466666666667,5.7366,4.295433333333333,3.9034999999999997,5.142946666666667,1.9821833333333334,2.6526166666666664,3.2303333333333337,0.9303166666666667,2.108546666666667,4.706486666666667,7.891675,1.517525,2.951135,4.536955,1.7990659999999998,1.7607975,1.7607975,0.984925,4.6106,7.377585,4.07291,5.181411,4.368255,1.6893166666666666,3.987165,3.216435,4.47472,5.026,0.3632463157894737,2.90944,2.694185,3.97816,3.822865,1.8938580000000003,1.939055,2.520225,4.221835,4.00138,3.27494,2.45042,1.432372,7.02332,5.37545,4.180915,3.56252,5.2998,4.66391,4.35831,3.622715,3.6543425000000003,2.02319,1.1123442857142858,2.74175,4.054485,3.81572,5.6775325,5.6920424999999994,2.4579675,1.6590233333333335,2.730923333333333,2.79368,3.0102233333333337,0.7241214285714286,2.28321,3.692135,1.09896875,4.975335,3.236465,6.0641750000000005,1.3276251515151516,1.3276251515151516,4.151105,3.792635,3.767425,5.5645,2.77108,2.2551099999999997,4.02769,3.068755,2.1415525,3.4491666666666667,2.4570333333333334,4.219925,3.3571925,3.748875,4.623205,1.1159333333333334,2.78267,4.27723,4.2761,3.302045,2.4726033333333333,1.70781,0.7574777777777778,0.7574777777777778,0.7574777777777778,0.7574777777777778,1.556282777777778,3.7375475,3.7375475,1.59364,6.701316666666666,3.023485,4.265705,3.0370333333333335,2.70565,4.69964,4.042905,4.92911,5.0369,1.7404625,3.905585,3.533175,2.588885,3.373945,3.495405,2.59674,4.143565,1.876535,4.489095,1.722215,3.4160633333333337,3.09915,1.776755,1.1738183333333334,2.853595,4.41726,1.2124000000000001,0.8686877777777778,3.845615,1.359035,4.9188046666666665,4.21524,1.3408728571428572,3.62103,0.7524888888888889,2.60629,2.680016666666667,2.3087133333333334,2.50651,3.896165,2.8684266666666667,4.87375,5.46455,4.342955,4.35066,2.1111875,1.2480128571428573,4.00485,4.96413,1.37769,1.37769,4.117165,0.258428,2.71814,0.258428,0.258428,0.258428,0.258428,5.33875,2.6623733333333335,3.071395,3.54515,3.138,4.39186,2.4937,1.02469,1.02469,0.9807716666666666,0.9807716666666666,3.82676,2.046865,4.436895,1.5649405357142858,1.5649405357142858,5.94454,0.5078707142857143,2.3833925,7.353443333333333,4.628975,3.225375,3.54862,0.94186125,2.317755,2.0080025,4.54898,4.352945,4.222955,3.905645,1.2834085714285715,2.80071,1.956265,7.46737,1.733595,4.36492,4.659285,2.987575,3.889555,5.75719,7.864395,3.9478,4.36482,3.840675,2.4400675,3.114145,2.33133,2.34429,1.876665,3.90851,3.487885,5.508041666666667,6.4646,4.078205,1.0948966666666666,1.87892,3.647415,3.81362,2.101455,4.12591,3.296625,4.708699999999999,1.73152,4.037633333333333,1.58115,6.406573333333333,2.7213666666666665,2.38844,2.21685,2.24337,3.4484666666666666,3.2760433333333334,3.17873,2.7913099999999997,3.4150333333333336,2.2015599999999997,3.1801,2.959705,3.08957,0.3801815,2.98479,3.86072,2.644525,5.60725,4.919155,4.653105,6.762072,4.50941,2.1427733333333334,4.189325,5.15295,1.6185466666666668,4.504815,5.16625,5.10815,4.726495,3.208595,5.53245,5.04265,3.72367,5.353446,7.603975,4.16198,1.2229916666666667,1.4255016666666667,2.663315,1.842512,4.531805,4.002675,5.017355,2.5389833333333334,2.47628,2.695883333333333,2.4066,2.2912166666666667,0.9633555555555555,0.4903988235294117,3.931975,4.05769,3.6262333333333334,4.15713,3.18448,3.3113799999999998,5.233998333333334,2.8670633333333337,0.5701594117647059,3.08241,5.4577,1.857615,1.622502,3.737505,3.38447,2.49933,3.8315333333333332,3.84099,2.7354266666666667,2.2998533333333335,2.302286666666667,2.498956666666667,2.7705,4.270955,5.134105,6.217832583333332,1.2929059999999999,4.98118,3.3237562499999997,5.146624916666666,2.741963333333333,2.93896,2.12237,2.0800733333333334,1.367125,1.367125,2.6498033333333333,2.362693333333333,2.80824,3.975455,1.6589939999999999,2.25698,1.920275,0.43528875,3.506055,0.5629666666666667,0.831805,3.555175,4.24434,3.769775,1.6937025,4.52432,3.0973166666666665,0.7564000000000001,4.35185,3.906749047619048,3.290976666666667,2.53518,4.97394,0.2727093103448276,2.1543426666666665,3.187145,1.5041875,3.72346,6.60995,2.30138,1.3543333333333332,3.86828,3.87957,2.747666666666667,2.747666666666667,3.535635,2.653355,4.69623,5.697571666666667,4.96624,0.9380222222222222,2.7655666666666665,2.3697733333333333,4.608255,5.1168,5.5432,4.787145,4.423466666666667,3.6763,3.8021999999999996,3.5607666666666664,4.205866666666666,2.9722233333333334,3.1031333333333335,0.60135,2.40653,2.4593625,3.521485,3.1191766666666667,3.3041466666666666,0.7399100000000001,3.093555,3.9899235,4.612805,5.8081,4.87031,1.784405,1.784405,0.838732,3.131885,4.558685,3.681135,4.421790714285715,3.07869,4.633105,0.5827090909090908,3.1104,3.69139,4.351625,3.8918158333333333,0.79422,2.829185,4.022715,5.608,3.867595,4.928465,2.785585,4.149465,1.51541,1.0239,2.7328966666666665,5.43935,4.49678,3.16248,1.41884,3.96263,2.54255,2.684775,2.748889111111111,3.0222933333333333,4.51384,3.08313,1.785714,3.5593333333333335,1.4642914285714288,2.8898733333333335,2.5357766666666666,2.3293425,2.7970066666666664,2.871233333333333,2.2869266666666666,2.819183333333333,3.78274,3.024646666666667,3.5829516666666668,2.2875833333333335,1.973515,4.156123333333333,3.03396,2.3700733333333335,3.5829516666666668,2.117696666666667,0.8110972727272727,2.3937775,1.0356777777777777,2.2259975,1.4943525,0.9238909090909092,1.7701525,1.7762675,2.6609165,2.6894,4.62823,1.5024775,4.51688,3.1621333333333332,1.6020240000000001,2.366966666666667,2.4568666666666665,1.75064,2.696096666666667,2.7083333333333335,2.641027272727273,2.07853,1.7633299999999998,3.519133333333333,2.2971,2.9371211111111113,3.2873066666666664,3.083406666666667,3.7063666666666664,2.1099866666666665,4.054233333333333,3.4438,3.6709,2.8486733333333336,3.5650333333333335,3.7147666666666663,1.8808566666666666,10.071304999999999,4.19181,4.235075,3.466855,2.81599,1.90742,4.0409,1.657562,4.067725,4.32083,1.3125019999999998,2.468036666666667,1.13341,2.3654733333333335,1.6434766666666667,2.4158066666666667,5.0282333333333336,3.188636666666667,3.579685,4.96886,0.709915,1.443356,0.973098,3.57948,10.655415000000001,3.5283333333333338,6.7089,1.9801725,5.22615,4.346295,2.462275,4.92765,0.2867664705882353,0.8295828571428572,4.68591,4.172975,6.9942875,1.8841875,4.400995,5.8635,4.73453,4.55151,3.379755,4.59672,3.308965,5.8853833333333325,3.72036,3.144795,3.17498,2.1153999999999997,1.9798666666666669,1.4179443958333335,2.5396199999999998,4.13268,4.692435,1.561178,9.01525,2.03654,2.9431675,1.127636,1.127636,7.137828333333333,3.09812,2.2336975,2.24037,2.609783333333333,2.1393833333333334,0.9790733333333334,3.6429708333333335,2.5804066666666667,0.6194457142857143,1.7504099999999998,3.3919040000000003,3.3919040000000003,1.1969100000000001,2.5520833333333335,2.3154066666666666,2.7630566666666665,1.3943825,1.8051233333333334,4.63595,2.6116266666666665,2.681825,1.2031075,1.2031075,3.83472,5.65505,4.359635,3.111175,3.69099,5.60368,2.864685,2.805293333333333,2.939026666666667,4.193535,1.1627966666666667,3.2798033333333336,2.6169,3.811625,2.1524566666666667,4.71519,3.567815,4.31525,3.67184,5.608173,0.9198633333333333,1.962855,1.90117,3.71501,4.343579999999999,3.793625,3.870565,3.36259,2.469825,1.7046025,4.2883,3.38203,3.371895,2.485043333333333,0.867025,3.371915,4.18273,4.77225,1.2328233333333334,2.8939833333333334,2.4970133333333333,2.0383733333333334,1.8411995098039216,1.8411995098039216,1.2651483333333333,2.0153666666666665,1.0937828571428572,1.402082,4.532895,4.320835,0.4756385714285714,3.68009,3.4807666666666663,3.853585,5.35335,0.410945,9.199565,5.5106,2.72036,4.059535,4.45276,5.493569285714286,4.89955,6.8828,0.7003718181818182,2.7680633333333335,5.35205,2.72573,1.6005875,2.01704,4.364605,5.15183875,2.3913973214285713,3.0540599999999998,2.925216666666667,1.870435,4.40682,10.99145,8.450542500000001,4.0126,4.356,3.0921933333333333,3.139905,3.85504,1.831372,2.8786133333333335,3.6328,5.00415,4.804545,4.7084,6.67586,2.16109,5.0318,4.540805,4.77986,4.61938,7.877575,3.918445,6.06955,3.5118,2.894255,2.95476,6.04685,3.73108,4.93298,2.16336,3.1015333333333337,3.352695,5.9883,4.121325,3.77521,1.4933619999999999,0.9136625,2.4149125,0.55114,4.10294,3.623895,3.376885,2.8778,2.11545,2.96405,2.50325,2.99228,1.8680240000000001,3.02868375,2.880125,2.367565,2.607475,3.80392,1.3077783333333333,2.8797533333333334,4.892345,3.897933333333333,1.1280175,2.9661233333333334,3.750115833333333,3.7413980000000002,1.552775,5.6569,5.4216,2.10221,3.0323933333333333,30.407985212353005,3.2309566666666663,1.7064166666666667,3.9459,1.5579,2.61494,2.981946666666667,3.4128666666666665,1.98875,2.789175,1.884505,4.061735,3.4303333333333335,2.447035,1.5150225,2.19362,2.9062,0.3709109090909091,1.120415,2.8095433333333335,1.7055,3.35499,1.552775,2.1023466666666666,25.34851211111111,5.02675,3.643945,3.540545,2.534205,2.567475,2.63882,2.342185,3.456615,5.024911,5.3259,1.543366,1.80881,2.14885,2.435153333333333,3.693366666666667,5.2716,4.693265,4.339555,0.18510893617021276,4.90185,4.799510833333334,3.81437,8.55387,1.0739825,1.0739825,2.9344433333333337,2.760485,5.5247,1.8615844444444445,1.0013866666666666,4.35368,1.8763775,4.14707,3.98263,3.37922,4.07043,4.024765,4.86817,2.896975,0.6964233333333333,3.148315,2.203333333333333,4.276275,7.9091000000000005,4.2381,1.9728700000000001,1.9728700000000001,6.748279999999999,4.673715,4.16418,5.278,2.3455033333333333,5.084326666666667,1.4785566666666667,1.57378,2.9901999999999997,2.7897233333333333,3.02524,2.698593333333333,3.80354,4.4326725,4.16865,5.478,2.2852225,2.69665,1.838065,2.615225,2.494055,2.0749025,2.04766,4.732191666666666,1.8141475,3.4499490476190475,2.4243433333333333,2.8668933333333335,2.5983633333333334,1.9258466666666667,1.4098257142857142,0.928017,2.621253333333333,4.001433333333334,0.710078,4.493865,1.724485,5.832387083333334,1.9220675,1.5647775,1.501535,1.4578166666666668,5.516518888888889,1.805408,2.9577466666666665,3.5705333333333336,1.2533,1.8235525,4.786726,3.21949,2.0860566666666664,3.5266333333333333,2.784663333333333,2.857396666666667,1.249263214285714,0.2745475,0.2745475,0.2745475,0.2745475,0.2745475,3.76957,2.6626166666666666,2.574475,3.3668666666666667,1.4484533333333334,2.6442799999999997,2.98371,2.1419433333333333,3.7081,2.73816,1.65963,2.9617566666666666,3.1466833333333333,2.1776275,2.0252175,3.637935,2.791646666666667,3.8022666666666667,4.94867,2.6477166666666667,2.6540966666666668,2.5428466666666667,10.832741666666667,4.60166,4.402205,4.898775,4.35544,2.9032966666666664,5.01955,3.66357,4.054085,5.385488333333333,3.87967,3.052575,2.24371,3.387885,4.903515571428571,3.2406,17.768321928571428,1.095505,4.25352,0.8695422222222222,1.2657375,2.83975,4.521845,4.24963,5.0311,1.6393183333333334,2.3576975,4.2554,1.94656,4.550715,3.13015,2.61076,0.6207066666666666,2.763313333333333,4.57482,2.4036275,2.3817175,2.1575925,20.250374166666667,1.263546,1.3403125,2.56201,0.2866734615384615,1.705475,2.8514766666666667,1.99421,3.0142966666666666,2.67665,7.337095833333334,1.9237575,2.4542875,2.21208,2.055135,1.5933149999999998,3.2761933333333335,3.105085,3.63673,3.1836933333333337,1.90395,2.55465,3.105748333333333,4.965995,0.4466408333333333,3.6645333333333334,2.9656833333333332,2.963295,2.04537,3.6446959999999997,3.563185,1.5669033333333333,2.276553333333333,2.27397,1.3972533333333335,1.69729,3.518885,3.325195,0.7676916666666668,3.303225,5.01945,4.02738,2.303064,2.303064,2.9407200000000002,4.159245,3.259175,3.378935,2.2812175,0.848460909090909,4.2434,3.58262,6.0676,3.712505,2.3708080000000002,2.3708080000000002,1.3721625,3.193895,4.971765,4.32057,4.27234,3.0214466666666664,2.2937366666666668,4.316015,3.288425,4.1255,2.7658833333333335,2.1110666666666664,4.0667073333333335,3.10692,2.62175,1.8961966666666665,3.49247,2.624825,1.6947766666666666,3.8139,3.26812,4.330935,3.6499333333333333,5.14385,4.27582,6.36822025,3.926725,2.07722,4.560585,2.77695,7.178215,2.4477733333333336,1.25506,4.591165,3.5982000000000003,4.93631,0.5137992857142858,0.8426916666666666,3.56405,3.65283,2.0633680303030304,4.24909,2.873195,3.05794,8.947344,1.845824,1.2082380000000001,3.4548,2.57858,3.491925,4.992975,6.58543,3.138975,2.16051,2.8426566666666666,1.83774,3.1926966666666665,8.62308487684729,0.8621680952380952,1.0262175,4.338815,0.48339666666666664,1.6380825,2.0908625,2.9992,3.049375,3.001675,4.68127,2.248305,13.010575,4.79494,2.4303925,2.4303925,4.072755,0.832195,4.869483333333333,3.89071,4.245185,5.923719999999999,3.42171,5.38595,1.3509849999999999,2.82017,2.693115,2.776175,3.004735,2.63357,3.04277,3.586115,3.559795,2.981705,2.915405,2.88156,4.140275,4.45491,2.9296433333333334,3.189243333333333,4.713869166666667,4.21387,18.116479523809524,11.530295,3.3086335714285715,0.6875108333333334,1.4676857142857143,4.281825,3.54324,3.0147872435897436,2.3297,0.8501266666666667,0.6317216666666666,0.6347471428571428,2.0640625,1.591342,5.062275,3.262283333333333,0.7038572727272727,3.40666,2.39197,1.7065825,1.704872,6.795973333333333,1.5447380000000002,4.338375,2.671835,2.9060433333333333,2.354385,2.6214033333333333,2.5795166666666667,0.7891054545454547,3.383995,3.0444766666666667,3.9688713333333334,2.9581666666666666,7.4366325,3.72618,3.506745,2.4974825,3.386325,6.543685,2.1184575,2.466865,2.4859825,1.631105,2.482185,2.0988225,2.7395,0.896785,1.3786175,1.03132375,3.098235,4.279005,6.0527,5.4563,2.99894,2.455535,2.759075,3.4101666666666666,7.27203,1.2119066666666667,0.36348375,3.143235,2.0744166666666666,1.443816,3.286524,1.178718,1.7122683333333333,3.7232816666666664,2.7783866666666666,1.2394516666666666,1.9012166666666666,3.6238516666666665,3.66037,4.416825,3.720835,1.8625425,4.923745,3.89307,0.7723692307692308,4.662395,3.93808,4.208304583333334,3.2244233333333336,2.2716,1.323546,1.1869325,3.551025,2.737765,3.36129,3.912735,2.677035,2.70438,3.29946,3.642455,4.16221,2.478515,2.81591,4.37061,5.8725,0.588805,4.379495,1.787405,3.514605,4.0729999999999995,2.021445,3.184085,2.1601375,2.028065,2.6569,2.2960675000000004,1.76603,4.527005,3.72339,1.214432857142857,6.86195,1.0383433333333334,3.556075,1.8720999999999999,4.533255,4.03108,3.16901,3.1021,4.04363,8.17067,2.90945,3.672605,3.80151,3.682095,1.71826,7.91734,3.629485,3.886535,1.60959,4.31357,3.167405,1.01075375,2.06588,4.193095,2.205815,4.16608,5.064895,4.1092625,4.52292,2.14292,5.2133,3.97621,3.3008699999999997,2.3448166666666665,1.4379300000000002,4.12803,6.11895,3.89952,4.61163,3.016465,2.1739125,3.79396,3.44899,1.2052121978021977,4.161385,4.793854166666667,3.85225,2.7842,3.63729,0.46296857142857145,0.46296857142857145,4.3511,3.9248,3.727125,2.32407,3.765955,6.1676,0.83212,3.97047,4.601845,4.599875,4.885945,4.82993,1.8706975,3.14126,2.118825,4.47625,0.67185,4.029,4.131155,2.713805,2.8403266666666664,4.12997,2.23899,3.314165,60.00572285930736,3.349965,2.4934833333333333,1.7232475,3.263505,4.01556,0.83252625,0.96824,2.0724575,2.0724575,1.328784,3.263585,2.32138,3.6670015,7.3678,2.855923333333333,1.2320285714285715,1.281525,2.70342,4.0445775,0.895251,1.97072,1.1876440000000001,1.87428,3.872265,4.03127,3.33121,20.524996525974025,3.318455,3.922675,3.2696,2.309343333333333,2.815905,3.42078,2.502625,5.55197,1.522466,3.976135,3.28625096031746,5.799650833333334,2.085455,2.66954,1.96518,4.437535,2.2850266666666665,2.23199,2.16704,3.611167777777778,3.55765,3.172295,3.72793,4.28439,2.52385,2.60456,2.92015,2.851745,2.866527777777778,2.218295,1.9923425,3.49334,1.211265,3.797205,4.702945,2.568115,4.747065,4.80799,4.74041,1.9137966666666666,2.467235,2.63247,2.75194,3.997675,3.35661,4.61642,0.7698342857142857,4.014234,3.02786,3.81946,2.356015,1.8500599999999998,4.084956666666667,1.1349666666666667,2.875575,4.362895,1.108008,3.69827,3.47153,4.507995,6.2249425,2.10073,2.96839,2.65877,3.9139666666666666,3.091466666666667,2.724076666666667,2.8236333333333334,2.5155766666666666,2.4193433333333334,1.4461566666666668,1.9347175,1.9347175,1.8794433333333334,2.1044199999999997,1.70953,2.6062233333333333,3.76189,5.65085,4.67619,1.523255,4.3577,4.06995,3.598925,4.27565,1.9616425,1.934335,4.7075825,1.84236,4.19926,3.72239,3.585855,2.4445833333333336,3.585895,3.31994,3.087485,3.52996,0.14740673469387755,2.36366,7.674625000000001,1.517804,3.447435,3.02282,1.0083685714285715,1.1779133333333334,1.8907475,3.840245,2.98327,7.0816,3.53429,3.70335,3.105415,2.67514,3.48919,3.48322,4.015325,3.554505,2.86562,5.3615,4.033155,4.123545,2.6010566666666666,1.94573,3.46457,4.533025,2.729275,2.828595,2.14675,2.47593,4.205735,3.776945,2.680485,4.46277,5.2053,2.7819,3.83382,3.88453,3.568845,4.599435,3.38925,2.59356,5.0275,4.62533,4.57104,4.917,4.374585,5.2428574999999995,4.376585,3.936145,1.304562,6.58135,2.48931,4.25283,4.12915,3.89953,3.22893,1.9510233333333333,2.2133533333333335,2.5254833333333333,0.9784140000000001,3.4255333333333335,3.9270666666666667,3.1776433333333336,1.9434733333333334,3.684715,4.20322,2.5847666666666664,0.5516008333333333,4.40838,4.575305,5.0114,4.72285,3.505775,4.41077,4.953035,4.81743,1.3902444444444444,0.9518461538461539,2.8190233333333334,5.2095,5.8503,0.501620625,2.84518,2.5080899999999997,3.38947,4.40512,3.9706333333333332,2.035035,5.35425,3.221755,4.457565,3.069405,6.38015,5.27795,6.907282500000001,0.5483625,4.090955,0.800634,2.375585,4.0414666666666665,3.06228,1.46703,2.2650200000000003,4.185075,3.53177,4.365655,1.9146133333333333,1.8797425,3.22254,4.45976,4.217655,3.701975,1.659046,1.1718287142857142,5.7662,2.26154,7.618952500000001,4.290365,3.66841,2.15921,1.6554225,4.0609,4.75135,1.6208,2.498205,2.4490725,2.36366,6.51648,3.03107,2.7607,3.7943558333333334,3.909225,1.9559600000000001,3.104635,7.002717499999999,4.71642,5.2689,0.5301863636363636,3.13393,3.958435,4.7432260714285714,3.68689,4.280325,3.036895,2.85873,3.366665,2.83595,3.565086833333333,1.8936319999999998,5.168417,4.79022,4.902925,3.91407,3.45216,3.273766666666667,2.28609,1.34516,0.9213425,2.842675,2.53447,1.11708,2.66155,4.76792,4.5512,3.70021,3.82978,16.779989999999998,4.08087,4.49362,3.924345,0.7294166666666667,5.02525,4.405625,3.92276,4.793745,5.11695,2.75453,3.60272,3.309375,1.465532,3.102825,4.602195,3.2618266666666664,1.494396,3.680895,5.04155,3.90509,5.0042,4.8656,5.4771,3.90063,2.6575,4.21954,4.015445,2.60663,3.032,3.0357266666666667,1.5883816666666668,4.80007,2.6415228571428573,1.9999,3.97598,2.165845,4.31509,4.156123333333333,2.2929,2.655385,4.51576,3.74236,4.250185,4.548445,4.891005,4.876807,3.3031,5.32605,2.717601666666667,3.53811,4.09804,1.569308,4.332365,1.0310866666666667,4.402225,2.964725,0.9204085714285714,3.860915,2.057805,6.456670000000001,2.5992658095238097,2.5992658095238097,2.5992658095238097,0.610785,1.242995,1.81128,3.328035,5.76038,3.4797216666666664,1.981595,2.113305,1.6639099999999998,3.767075,2.47825,0.41704615384615384,1.683465,2.1791175,2.790865,1.878345,2.477995,2.42811,2.0947675,3.91521,3.07304,4.04238,2.993645,2.06692,6.47462,2.049,4.33082,3.885955,6.2738499999999995,1.5638633333333332,3.655705,3.77328,3.789695,3.97143,2.70851,1.9523675,3.79877,5.637441333333333,2.07038,3.60633,3.268765,1.9181225,4.742415,4.23082,2.604546666666667,2.301975,3.628965,5.449371428571428,5.95515,3.184175,2.425015,2.740865,3.01904,2.645395,3.84339,1.33083,2.805,4.617815,0.7934675,3.38571,3.956885,3.727695,3.10579,2.426005,3.18763,2.20397,4.539725,7.808218333333334,4.20815,3.28768,3.15951,0.9981275,4.492325,2.24237,4.33571,5.5975325,3.887955,3.911625,10.470310000000001,4.74239,3.956525,1.5236575,0.6918574999999999,2.92644,3.893465,3.50583,3.655075,2.13776,2.3502899999999998,2.32456,1.1121083333333333,1.1121083333333333,1.9093,2.3411666666666666,2.00571,2.211813333333333,2.6575166666666665,2.1876666666666664,2.2902400000000003,2.8475300000000003,1.4245366666666666,2.1352166666666665,2.107133333333333,2.01736,1.5427275,2.505926666666667,0.7548766666666666,9.509025000000001,0.7548766666666666,3.1612333333333336,2.1340133333333333,1.7996966666666667,4.199365,4.308935,4.416275,4.61491,2.1224966666666667,2.96622,3.2580893333333334,1.95253,3.0947066666666667,2.750363333333333,2.55253,2.6498833333333334,1.6170866666666666,5.5198,6.362779619047619,3.0458133333333333,3.3226166666666668,3.3061933333333333,2.5796433333333333,2.4946066666666664,1.0749471428571429,3.4827333333333335,3.5726999999999998,3.909415,5.88215,4.2366,2.8169466666666665,3.3797333333333337,2.99187,4.208182222222222,4.22658,2.61973,3.585255,3.2030066666666666,2.98926,4.617355,3.2574966666666665,3.55231,5.788223333333333,1.9554766666666668,2.51827,1.6531533333333333,1.46368,4.78293,3.4551583333333333,2.4831600000000003,2.1661233333333336,2.1479933333333334,4.34638,3.63204,2.559575,3.3343000000000003,3.13223,3.4343,3.3748666666666662,3.4765,3.0204866666666668,0.6005275,3.714166666666667,2.44789,2.62442,3.38532,4.14133,3.86617,5.137,2.590775,3.731678333333333,1.0936183333333334,2.7859700000000003,2.7859700000000003,4.00612,2.72535,3.74608,4.200095,1.711095,3.358425,3.69407,1.2913985714285714,3.6956873333333333,3.0978385714285714,2.22167,0.38499,4.713345,2.86734,6.5568550000000005,3.048765,6.1651,3.43104,3.830135,3.87512,1.70344875,2.99302,3.746175,3.29699,3.32129,2.972386666666667,5.3754225,2.0815575,0.98944875,1.8712033333333336,1.7778600000000002,5.29105,2.2717266666666664,2.38852,1.819355,4.363515,3.878425,3.919805,0.499528,4.065925,3.73394,2.712196666666667,2.411023333333333,2.747996666666667,3.195543888888889,3.8542533333333333,1.57461,0.6430210526315789,0.7927,3.3332633333333335,4.051775,5.969446666666666,4.71431,4.2267,5.2579,1.3610028571428572,4.0729999999999995,2.2539666666666665,0.98445875,5.39775,5.99895,2.570925,4.746995,4.0737,6.43088,3.919233333333333,6.481043333333334,3.7957,2.4135025,5.5166,10.405428756410256,2.4993466666666664,0.64334,2.95326,4.05869,2.316785,6.2932,3.707535,3.651635,2.651893333333333,2.651893333333333,5.56585,3.488265,3.985305,5.0047,3.77879980952381,2.4224262857142858,1.08188375,4.55147,2.678415,5.168022499999999,3.554005,3.935905,2.788275,2.09335,4.417865,4.82178,3.5790666666666664,4.06916,4.399225,26.996279404761903,1.834305,2.58285,2.3730025,1.6185233333333333,2.46391,0.9690085714285714,2.732393333333333,3.0675933333333334,3.3874,2.99001,0.6173215384615385,3.1432,3.447815,2.81866,3.245233333333333,3.468185,5.6489325,4.726545,3.74127,3.69535,3.7393324999999997,3.67988,3.4956333333333336,1.7391425,1.009725,1.4378033333333333,2.3416366666666666,1.5754366666666666,2.751326666666667,2.4579866666666668,2.33649,2.3632966666666664,2.587865,2.097975,1.8037933333333334,3.117145,4.38953,3.646305,3.96526,1.466122,3.18431,2.475163333333333,3.59887,2.2419266666666666,2.616855,2.389195,1.5656366666666666,4.110415,6.626203333333334,2.853865,3.689215,4.005275,2.67585,3.2791275,3.3557333333333332,3.55809,4.632545,0.30287623552123555,0.30287623552123555,4.79819,5.1853,2.944235,2.916815,5.322,4.41698,0.6386715384615385,4.95261,4.233375,3.63902,6.36005,4.68918,7.61951,13.865685000000001,12.401184487179487,4.330135,4.34839,2.4243366666666666,0.6110861538461538,2.62499,4.293765,1.3594583333333334,4.699905,3.5210666666666666,2.872196666666667,2.0873166666666667,2.0867400000000003,4.66975,4.928615,8.716256666666666,5.1797,4.109835,7.280459583333333,3.401255,3.3590666666666666,1.3618825,5.485315833333333,1.9235825,2.3764600000000002,2.704306666666667,0.237709375,2.853755,3.53059,4.602163333333333,0.8326079999999999,1.117335,3.953435,0.582723,0.582723,3.0223766666666663,3.31001,3.2878399999999997,3.759125,4.23881,5.4088,3.923575,4.2371,2.956185,3.13967,2.5233966666666667,0.8801166666666668,2.6507466666666666,2.831565,3.12728,7.01784,2.79001,9.403675,3.035975,5.76125,3.094745,2.246755,2.413995,2.76115,1.84531,2.317045,1.9033925,3.45272,2.369725,3.9680075,2.83641,4.0225525,4.0225525,2.8141791666666665,2.8141791666666665,8.715888666666668,2.42714,0.8164440000000001,2.6306166666666666,2.512626666666667,2.5349833333333334,3.9680075,1.933468,1.8746300000000002,1.5343339999999999,3.7258,3.861475,1.731505,4.502915,4.18305,5.619856111111112,6.517158333333333,2.223003333333333,4.22133,5.71681,3.738985,2.84656,2.2157833333333334,3.36485,3.3303818181818183,4.13546,5.198142499999999,7.308781333333333,3.42616625,3.11584,1.16599,4.28697,3.9727326666666665,3.61933,3.7337,4.34586,2.515535,2.4523533333333334,6.25546,2.942775,1.336622,5.42447,3.70997,2.5478633333333334,5.09785,2.5478633333333334,2.676275,3.60181,5.09515,1.0434057142857143,4.032886666666666,4.551515,3.427,1.2894783333333333,1.7240275,3.548255,3.844155,2.46444,6.553473333333333,3.92459,3.506705,3.992425,4.433685,1.360115,3.796355,2.50509,3.705475,3.86372,3.532255,4.75128,3.18866,3.65049,4.802835,1.9983113333333333,1.86586,3.0965933333333333,3.6235,3.3260233333333336,2.77223,3.5789666666666666,3.2407333333333335,5.53425,3.35327,3.6042,2.990965,1.76759,3.4836666666666667,2.0005533333333334,3.07922,3.151975,2.995235,0.67185,2.069425,1.8134466666666667,3.22084,1.7962479999999998,3.472621,4.22556,1.2018739999999999,3.1111725,4.505225,0.814758,1.3365,3.21262,3.966915,3.39949,1.95449,1.7576366666666667,3.50666,2.4889425000000003,1.6794366666666667,2.84298,1.840655,1.18141,1.36728,6.43269,3.15273,2.254725,2.499345,2.4224175,3.870785,0.88460125,0.35536214285714285,0.7563471428571429,4.728515,1.7888457142857144,4.9674,2.1023725,1.6736274285714288,2.9616674285714284,1.28804,1.0579174285714286,0.719996,0.59612,2.3995575000000002,6.2978,2.994945,3.863855,0.34929107142857146,3.65958,17.641762571428572,3.093795,6.8319796043123535,1.0843925,1.0843925,1.0843925,1.0843925,5.752331666666667,4.16872,4.31797,2.208883333333333,2.99829,4.844945,5.56185,3.82254,3.691575,4.24491,3.884195,3.62023,3.767016,4.11881,5.05325,3.82212,4.69154,3.451715,4.22357,2.62953,3.56724,3.27927,3.73432,3.768155,4.30212,3.116706666666667,2.43308,2.5117933333333333,4.096295,1.2945228571428573,3.83366,2.4381866666666667,3.1963446666666666,4.1092625,4.481185,3.169245,3.075125,4.380185,2.86978,3.23854,5.3671,4.65698,3.257675,3.410915,1.702306,1.702306,1.76966,4.626605,3.75215,5.4121109999999994,5.1254,3.5532900000000005,6.5975,4.8171,2.1363075,9.527574999999999,5.37515,6.2060575,4.542,2.8034933333333334,3.046215,0.2617041379310345,0.85241625,3.885042666666667,3.45228,4.67593,2.925993333333333,6.491723333333334,4.867755,0.5663,2.861595,0.49420000000000003,1.7170407142857143,3.46028,2.664115,3.456745,3.919025,3.451065,3.39842,3.34327,3.681745,3.578575,3.640795,3.481925,2.4053,1.7170407142857143,2.96368,2.163305,3.62833,2.171115,3.755475,3.64277,1.71826,4.47484,2.61005,1.2759333333333334,4.38256,4.599475,4.288805,2.87603,2.983233333333333,4.15344,1.8833033333333333,1.423166,2.430543333333333,2.58046,2.63336,2.2809733333333333,4.80748,3.20951,4.938720833333333,3.743645,4.768445,3.88449,1.622954,5.2181,4.461565,5.3148,3.936425,6.9460049999999995,1.88455,4.81935,3.347005,3.17796,1.7145825,1.7372633333333332,3.96884,4.311645,2.8540233333333336,2.6529266666666667,3.5543775,3.5543775,2.6357766666666667,3.1468966666666667,3.43265,3.945155,3.656745,0.7249469230769231,3.291965,4.53006,5.122547777777777,2.96957,3.082865,1.8045075,2.796645,3.57051,2.2372,4.610145,2.958435,4.898125,1.8583366666666665,1.0217818181818181,6.54643,3.701275,3.33197,3.0444600000000004,1.685154,30.216623607142857,3.835755,3.3852,5.71855,4.486035,0.8481416666666667,6.854625,1.86453,5.59325,1.4302516666666667,4.04036,4.824651666666666,3.66208,3.309495,2.167925,3.4080333333333335,4.783465,2.0285275,2.7544,3.511105,2.70872,2.583155,6.05355,2.22678,6.47975,1.12765375,4.31633,3.6529,3.879115,5.0916,3.00272,2.3760566666666665,4.050935,4.448585,3.763775,3.763775,5.76595,2.266745,4.310525,6.439878333333333,3.365935,4.098795,2.96181,4.650065,3.661845,4.163515,1.43159,2.259955,4.357465,4.480015,5.7393,4.312,2.16218,9.39774,3.381425,3.792405,1.7276714285714285,3.513295,2.2920266666666667,2.7389166666666664,2.14994,1.3327799999999999,2.51587,0.9239485714285715,1.1260128571428571,1.1260128571428571,1.1260128571428571,1.7591733333333333,0.57523,3.904605,1.2242566666666665,2.48093,0.8929616666666668,1.8639599999999998,2.66228,2.04973,0.74477625,1.7764199999999999,1.4713366666666667,2.3716766666666667,1.636958,1.636958,1.7165266666666668,1.3774899999999999,0.862636,1.8259800000000002,1.5884,1.1765666666666668,2.200225,2.117075,5.8377,1.5686575,5.7109,17.076805750000002,6.58721,3.434075,3.6121833333333333,3.4461666666666666,2.71518,2.73999,2.97785,0.7163333333333334,0.972906,0.972906,0.63964375,2.3926433333333335,3.493355,3.305655,1.53953,4.849125,3.984225,2.65752,3.66566,5.0051,3.790905,4.114595,3.4772,3.346445,3.53084,5.61645,3.0765666666666664,4.89319,0.52248,0.52248,2.414425,2.71889,4.60536,3.53865,3.778225,4.750195,7.668824,7.55257,3.591105,2.221345,4.06737,3.41201,2.45337,2.31797,3.794035,1.3295466666666667,3.79617,2.587685,1.6056625,3.6710999999999996,3.74728,2.00846,5.198142499999999,1.5845675,3.3971,3.13434,1.0255142857142858,3.571266666666667,2.7605799999999996,4.222725,1.1270816666666665,1.7256425,2.22442,2.14978,1.6832825,2.505575,1.8579325,1.9441525,4.152975,4.4541,2.55479,1.79151,1.4634066666666667,3.5397,1.9921066666666667,2.7579,4.58996,7.1237,2.6064133333333332,3.12942,3.481875,3.601645,2.3857,4.89046,3.87384,3.1046,1.364125,4.61467,2.285335,3.24911,2.593035,3.77247,4.893525,5.7144,2.1685333333333334,2.66709,2.718026666666667,3.4196000000000004,2.0265333333333335,1.469824,5.4336,3.3778666666666664,2.2608889090909092,3.1059933333333336,2.9382699999999997,2.35494,3.21345,3.10427,3.4388666666666663,5.3596,4.189755,2.9193366666666667,4.829105,3.186215,2.41214,3.435055,3.86013,4.1578,6.138066,1.8024159999999998,3.78336,2.38549,3.655965,3.63751,0.58558375,2.26879,2.307075,3.32505,2.707045,2.24238,2.746125,0.5956330000000001,2.716223333333333,4.45555,2.49337,4.28238,2.33975,3.898985,1.9398525,4.424295,4.423735,2.06598,2.775075,6.8917775,3.761775,4.49985,5.0329,7.134085795454546,4.307015,4.22738,2.1523875,4.60497,2.84519,1.9198266666666666,1.921035,2.10364,1.0182071428571429,2.5087366666666666,2.3530466666666667,2.60955,3.2258,1.765626,3.32518,1.9061466666666667,4.1886,5.001455,1.04861625,1.83144,2.5250533333333336,2.842693333333333,1.9569400000000001,1.1194733333333333,5.410514999999999,2.13321,2.6706033333333337,2.66079,2.525533333333333,2.749216666666667,3.19388,2.2225266666666665,2.61198,2.1677133333333334,4.055395,3.457925,3.98249,3.0124033333333333,2.9953466666666664,0.688014,1.7072733333333332,2.1204725,2.0606966666666664,2.565866666666667,1.1552533333333332,2.727066666666667,2.9698666666666664,3.48825,1.9531833333333333,3.33972,3.138135,4.914385,3.265915,0.6111283333333334,2.15058,2.7920466666666663,3.1859300000000004,0.7469163636363636,2.615133333333333,3.381258,3.272396666666667,2.8581733333333332,3.3649891666666667,3.74807,3.8922333333333334,3.074396666666667,2.0178375,5.5398,5.1268,5.1846,5.45605,5.59815,1.7749033333333333,3.154665,3.7471,3.319046666666667,2.9217333333333335,2.7222866666666667,3.9213666666666662,3.476933333333333,2.8946199999999997,13.787956666666666,4.45996,1.10806,2.6959933333333335,1.475792,3.2606133333333336,3.1551899999999997,2.2137166666666666,5.607315833333334,6.620477666666667,2.2233533333333333,0.864101,4.171055,3.4402000000000004,3.090755,4.750835,5.4387,5.6084,4.740895,3.52783,1.9274275,6.48765,1.16599,6.416107500000001,4.55879,2.46026,4.002125,7.076171666666667,5.81725,2.2055933333333333,1.4161983333333332,2.0872625,6.491315,1.552775,3.0030566666666663,2.5300583333333333,4.076241111111111,5.4761,4.40256,6.2797,3.57623,5.21275,3.72516,8.70519,4.88389,5.87545,2.306035,2.56065,10.846813333333333,3.44903,2.427535,2.4774533333333335,1.59448,2.0678199999999998,3.3410333333333333,0.66371375,1.09804,1.0973814285714287,3.175945,6.806439999999999,3.0696866666666667,1.3822166666666666,4.63504,3.48825,0.573688,4.72657,4.218485,4.996575,3.657795,3.306365,2.6363366666666668,4.23962,10.1953,1.8052325,4.0963075,3.87582,4.573535,3.717195,0.8186233333333334,3.6069333333333335,4.003733333333334,1.79763,2.47962,2.33242,2.48862,1.9633466666666666,2.1449833333333332,2.27101,5.950261428571428,5.3358,3.627365,5.1016216666666665,1.9168766666666668,2.3560425,4.682825,4.424115,4.499845,4.10837,4.351165,4.769405,1.702306,3.708205,7.6959,1.3087216666666668,1.7587733333333333,2.45124,2.451416666666667,2.8056866666666664,4.850540583333333,0.7927,2.39833,3.34779,6.2833,4.66957,2.1889766666666666,2.876583333333333,2.0658425,0.543215,2.601725,2.96533,7.804125,4.37107,4.508175,0.873013,4.690366666666667,9.04284925,10.677283333333333,3.244385,1.17162,3.67505,3.56882,2.5628866666666665,5.210204666666666,4.58459,4.04409,2.0263025,3.7817000000000003,2.1442366666666666,2.5664433333333334,0.777349090909091,0.38358866666666663,2.658665,3.502245,2.0584535,3.3677,3.00257,4.2785,5.6905,1.512864,2.9418100000000003,2.0007099999999998,2.0007099999999998,2.21437,3.17679,6.7725,2.7004466666666667,2.3757699999999997,3.29583,3.3854333333333333,4.238395,4.330865,4.14477,4.18608,4.01479,4.254285,7.10145,7.9200025,1.9350625,2.29426,2.94101,0.9152333333333332,0.7156408333333334,4.45711,2.384335,5.14125,2.9037566666666668,2.9046066666666666,1.719966,1.515165,3.84366,4.39445,4.395595,2.0340333333333334,1.4019599999999999,2.692633333333333,2.0361766666666665,2.542806666666667,1.1212828571428572,1.1212828571428572,2.7991233333333336,4.823345,3.018595,3.24638,3.609095,2.195065,19.96301524242424,3.96102,5.397712500000001,4.30632,4.766665,3.85479,3.63036,5.5869,6.132555,0.9113633333333334,0.9113633333333334,0.9113633333333334,2.724906666666667,1.7288857142857144,3.3463666666666665,3.972445,3.907955,3.10848,4.09824,4.48668,0.7942322222222222,2.00183,2.2057266666666666,5.9705493333333335,3.2681560000000003,4.024899333333333,5.0029,2.021445,1.9974066666666666,2.3456233333333336,0.52002625,0.89673,1.90863,2.19061,3.158265,13.289375,2.62603,5.3304,0.7292642857142857,9.390709999999999,5.6255,3.706815,4.202565,2.54165,5.28835,2.54165,2.687272,3.257395,3.89919,3.401425,4.025995,4.287905,3.417545,5.8111,6.70566,1.81588,2.42742,2.78402,26.142047187902186,1.548208,6.40055,3.9756280000000004,3.92417,4.362415,4.39334,2.748685,2.699645,2.342785,6.7309,7.2054,4.767985,4.765115,4.149755,1.7898575,1.83417,4.223345,0.3644361538461538,0.3644361538461538,0.3644361538461538,0.3644361538461538,4.104145,3.23188,0.91494,1.8875233333333332,1.152011111111111,4.425155,2.4677700000000002,2.2464675,6.899326666666667,3.0906233333333333,0.1791862068965517,20.345909666666667,4.6743966666666665,1.7754439999999998,1.3043255,2.11248,1.992968,2.302755,4.6079,2.885495,3.55808,4.320695,2.17558,7.518260000000001,2.744555,2.009775,4.4392,5.88815,8.506236666666666,4.29691,0.3022682926829268,3.611,3.8098,2.72998,2.0929825,3.0545266666666664,1.6407,1.6407,4.09315,5.670192500000001,11.259845,9.111025,0.5925777777777778,2.46554,3.83435,3.253045,4.78847,3.44479,1.283576,1.283576,3.3004,4.10012,2.62643,3.563975,4.35888,5.4228,6.827035,2.26266,4.78522,4.259705,2.594595,3.0483366666666663,3.0628499999999996,4.82176,4.07518,5.5924,4.179915,4.431785,3.894225,4.41006,4.23387,5.24725,2.5666766666666665,3.04987,1.13236,4.50085,4.10673,3.750945,1.6195060000000001,1.9009733333333332,3.564133333333333,2.774696666666667,2.0052033333333332,4.321413333333333,1.6672333333333331,1.7927425,2.5525033333333336,2.5360066666666667,2.2670266666666667,1.6067566666666666,3.7681,3.0197833333333333,4.1108666666666664,3.1759958333333334,2.1228766666666665,2.7064966666666668,2.0414066666666666,3.301885,2.3249133333333334,37.67602983333333,2.077980363636364,2.077980363636364,2.5750533333333334,2.2937966666666667,2.12801,1.6979899999999999,2.8382466666666666,1.8313533333333334,0.7995307692307693,5.06325,6.61262,4.12158,3.93802,5.52565,1.8535333333333333,4.355755,1.802138,4.93577,4.940295,5.5524,4.045085,1.7391425,3.966895,4.02308,4.454455,4.499475,5.34485,3.87324,3.043825,3.462666666666667,2.7042266666666666,1.9923225,1.98683,4.43911,2.488983333333333,3.7648875,3.7648875,2.271193333333333,1.5182033333333333,2.6412299999999997,2.5988700000000002,2.53545,4.99834,2.7040566666666668,1.19267,1.19267,2.15079,1.9725033333333333,2.48845,2.6097433333333333,2.476106666666667,2.38191,2.17686,2.06323075,2.872403607142857,1.5667916071428571,0.8091728571428571,62.04842983829365,2.4360999999999997,3.4343,2.364288,0.8366300000000001,3.8982546666666664,1.59961,1.59961,3.056146666666667,3.0618700000000003,0.75761875,3.1487833333333337,5.569853333333333,3.3394999999999997,2.4517599999999997,2.9091,2.06648,3.077787333333333,0.289678125,2.6407133333333332,0.813934,2.5004,1.214962,1.214962,3.4347666666666665,1.52772,2.683543333333333,1.6733613333333335,3.511533333333333,1.6733613333333335,2.1774833333333334,2.7016466666666665,3.0448799999999996,1.410674,1.410674,2.9451133333333335,1.4720000000000002,3.26661,2.2673433333333333,4.433765,3.3486,11.972338,6.872785,3.40398,2.493955,3.760895,5.32805,5.61485,2.6599983333333332,3.835375,3.70093,2.2279566666666666,3.92167,3.2927199999999996,2.859576666666667,4.807085,2.2184466666666665,1.06427,3.5443258333333336,2.7469433333333337,2.911555,0.74747,2.694505,3.386185,4.061685,4.36416,6.51515,1.94656,1.8362079999999998,4.33505,4.465205,2.3806,2.508798333333333,1.91999,2.185158,0.919318,5.0209,4.32589,3.70615,3.696185,3.0949899999999997,5.14245,5.0191,2.76542,1.7584033333333335,0.49682733333333334,14.279077000000001,0.5197218181818182,0.5197218181818182,0.5197218181818182,3.0049233333333336,3.8495000000000004,0.5197218181818182,6.934426666666666,4.288026666666666,0.723271,0.723271,3.3881,3.196215,2.959545,4.347115,4.945505,4.1712655000000005,2.3910975000000003,4.905138,3.139405,3.506249761904762,4.68992,2.90816825,2.3697525,2.4005975,2.7297,1.6389175,3.3428991666666668,2.937656666666667,2.282145,2.06506,2.0577525,1.7963333333333333,1.6331975,2.641175,1.042708888888889,2.4677575,0.6069621428571429,5.06105,1.74345,0.6509675,2.0258825,7.9164200000000005,2.72994,1.964128,3.275315,7.26652,2.5284,4.293985,3.00487,5.94735,3.464375,3.721465,4.19963,4.08775,3.0161933333333333,4.2318533333333335,1.12713,4.035925,2.45353,2.5452166666666667,2.47427,2.37256,2.13228,1.2737125,5.5471,0.9238909090909092,4.972755,5.5225,4.96218,5.321,3.661433333333333,2.458816666666667,1.9833960000000002,2.8532533333333334,2.873336666666667,2.523845,3.8160333333333334,2.70965,4.969155,1.83274,40.1042651984127,4.81871,2.4311233333333333,2.37262,2.8320900000000004,1.52492,6.04455,3.864465,2.3329866666666668,3.0539966666666665,2.32253,1.6473675,5.177,0.7652428571428571,4.398552142857143,1.2997485714285715,3.4775666666666667,3.346833333333333,2.7241,1.4135625,4.46,1.6682,1.6682,2.38484,2.7763825000000004,3.3614333333333337,3.3408333333333338,1.4577233333333333,2.817743333333333,2.69763,6.323356833333333,2.83593,4.054438333333334,1.4668133333333333,1.409,3.050323333333333,0.924952,5.27065,3.3488666666666664,2.890693333333333,3.5999,2.8504066666666668,2.7331466666666664,3.2940166666666664,1.8235366666666666,2.4224175,2.4481766666666664,3.3877,2.4890966666666667,3.8023333333333333,1.8874666666666666,0.6301466666666666,9.847753269230768,2.7951633333333334,5.0978,5.08885,2.806763333333333,3.0958733333333335,1.3146625,2.19687,2.15622,1.3146625,3.96111,0.467265,0.467265,1.2863075,1.2863075,0.81079,0.81079,2.584155,3.202315,2.30314,1.549305,1.609795,3.78368,2.93831,4.567675,5.37965,1.86222,4.37413,2.283075,4.618540256410256,1.7084625,1.7084625,2.141445,1.6525200000000002,3.835934166666667,2.02146,4.18275,1.6393183333333334,2.61035,0.5499876923076923,1.1584228571428572,2.0886275,2.2082425,1.83634,1.357775,4.177635,4.29172,1.9734566666666666,2.3409400000000002,1.3080399999999999,0.6812266666666668,2.14388,3.405095,2.977536666666667,4.535765,4.921595,4.87706,3.756235,6.960105,1.5381666666666665,5.927194999999999,1.858075,4.61385,4.484645,5.743258,3.311733333333333,2.32862,1.7974225,1.9606179999999997,1.9606179999999997,2.4635825,2.4635825,4.24407,5.94625,0.92347,3.89498,3.364495,3.43481,2.59326,1.4156925,2.80574,4.256,4.18613,1.694892,6.55175,4.93705,1.7768933333333334,1.3240625,3.965125,4.049196666666667,3.64784,3.52738,3.90113,0.6250785714285714,3.8221333333333334,3.328186666666667,2.6958366666666667,2.87569,2.194926666666667,3.6511,1.554,1.554,1.554,2.929513333333333,3.02242,3.306573333333333,3.340652071428572,2.26607,1.2042242857142857,3.1920266666666666,3.1588100000000003,1.37327,2.684703333333333,2.674113333333333,1.2561499999999999,2.650046666666667,2.84805,2.96411,2.54785,2.435496666666667,1.9910175,3.1457333333333337,4.6645666666666665,4.00191,0.9589740000000001,1.455076,0.549677,3.6313999999999997,8.87576,2.96097,3.463815,3.1827433333333333,4.284489166666667,1.8885925,7.57393,6.646546666666666,2.7233066666666663,2.2487559999999998,4.06576,4.860225,1.5523099999999999,1.290512,1.361624,2.019555,10.752116666666666,2.71445,3.1681833333333334,2.957001,3.841795,2.1156333333333333,1.11833,4.464165,1.202895,3.2949811538461535,4.3917,3.30323,3.2521466666666665,3.10556,5.0257,1.1821166666666667,2.14223,1.8817323333333333,1.8817323333333333,3.832265,5.81145,9.91723,4.49705,3.32213,4.683285,1.755335,2.308965833333333,4.449865,3.58469,3.829385,1.52126,2.972433333333333,3.42476,3.86761,2.4175075,4.0462,3.760755,3.521135,4.06225,3.613525,3.72373,5.474,3.1475500000000003,2.4811533333333333,4.369665,2.979475,3.904285,2.006975,2.516275,2.613305,5.67465,2.63675,3.201021590909091,1.6739775,2.60689,3.308285,2.20334,2.13129,0.7240616666666666,0.7240616666666666,1.763895,3.575199696969697,4.044215,2.8776566666666668,4.60378,3.061635,2.4678848571428573,0.92749,2.930375,1.536535,4.06718,4.14116,0.8774041666666667,1.8217025,3.950655,2.9701000000000004,1.6211675,1.6199899999999998,4.917155714285714,1.036135,2.71028,3.17165,2.7893,2.424955,2.75085,2.11409,1.02335,2.896995,3.00987,3.369505,1.4327766666666666,1.5083033333333333,1.789845,4.40677,2.11128,4.475135,4.60685,4.683195,5.9527,5.1293,4.055565,6.099425,4.031282857142857,0.7847818181818181,2.862385,4.281365,3.615775,0.47707272727272726,0.9899699999999999,3.006925,4.020785,4.752065,4.08503,3.2178996428571427,2.769995,4.646665,1.699466,2.443215,4.376035,4.3115950000000005,3.21759,2.74092,3.66879,4.77225,2.836035,5.21108,0.918107,3.19124,2.79941,4.40811,4.378485,4.50645,2.19716,2.679085,2.84592,1.9499066666666665,5.0175,3.208775,1.4336142857142857,2.67432,4.032095,1.490512,5.8989,1.8186499999999999,2.567346666666667,13.607725515069726,2.8209066666666662,1.4346933333333334,1.595995,2.0978333333333334,5.536851666666667,1.659046,5.771636166666666,0.6718969230769231,3.2731866666666662,4.338365,7.5784875000000005,2.5248466666666665,2.855893333333333,2.855893333333333,4.563045,4.328165,3.50648,3.355965,4.828245,5.1102,2.44739,3.2868766666666667,4.53236,1.2385283333333332,2.41732,4.42514,3.965425,2.867035,2.31039,3.771645,3.358805,6.016565,6.140230000000001,0.7029690000000001,4.176805,3.3823,3.9121666666666663,4.26661,3.921255,3.79155,1.292328,5.0402,2.309475,2.848325,4.189045,4.22869,4.496875,0.9051232857142857,2.7564933333333332,9.003899666666666,1.4980566666666668,2.0748222077922076,2.30035,3.92446,3.42962,3.32795,0.6600672727272727,2.3333825,1.73017,2.2013125,4.2305,5.159248666666667,2.739602,9.168725,2.3152333333333335,2.64857,1.06815,4.429305,5.0286,2.159625,5.385488333333333,2.70627,3.24809,5.38645,4.343655,4.66254,2.095125,1.680405,1.680405,2.728755,3.164045,4.9847325,1.5047725,6.081596666666667,1.5648633333333333,3.82187,1.3031816666666667,8.731232,4.768815,2.70742,4.253845,3.79609,3.83193,1.1365116666666666,1.9374825,3.5244,3.0067233333333334,3.3399,3.604533333333333,3.92908,2.7473,3.144555,3.378085,1.597135,2.5894366666666664,1.9148233333333333,2.910633333333333,1.9888566666666667,5.173964166666666,3.2250366666666666,1.8146833333333332,2.760483333333333,3.367455,3.41827,6.476,6.00555,3.0259,3.59439,2.6419,3.044135,2.832075,1.2292966666666667,0.9370179999999999,6.261519999999999,3.008215,5.6548,4.529575,6.56435,2.856615,2.71311,6.6003,2.49989,0.42265166666666665,5.66755,2.521395,3.9006,3.403866666666667,1.4262685714285712,3.957625,1.057488,4.48528,0.896905,1.4287733333333332,3.02476,2.451703333333333,2.7848557142857144,3.60334,4.660555,5.792805833333333,5.792805833333333,4.98894,4.98894,4.499615,2.9701766666666667,4.39322,0.99398125,6.0886,3.068795,3.6021,3.88777,3.95545,4.86339,1.907355,4.747415,3.1825799999999997,2.87349,4.19834,2.562585,4.759105,5.1312,3.666765,3.32571,5.0474,3.91626,5.82445,2.824315,2.63651,6.00035,4.088555,2.86056,6.063783333333333,1.5826933333333333,2.1350875,4.808395,4.18489,4.938455,3.75919,1.9939820000000001,1.9939820000000001,12.856825452380951,12.1011,5.0574,3.266285,2.9570046153846157,4.378795,4.66219,2.6086766666666668,3.2054533333333333,2.94899,4.168933333333333,3.6801,4.938405,2.009555,8.25192,2.43863,1.87422,6.05255,2.325345,4.94472,4.340005,4.76018,0.6932777777777778,3.254165,3.579255,0.84839,2.91798,4.103131666666666,1.468712,1.85281,2.90605,2.652623333333333,2.3068166666666667,3.0324833333333334,2.1913033333333334,0.41635,2.400396666666667,2.8523433333333332,2.8043633333333333,3.157493333333333,1.527066,2.986943333333333,6.985623333333333,4.349355,2.2489866666666667,2.09931,2.58967,3.665345,2.44969,3.5733725,18.1202825,5.42625,3.387783,4.64163,3.797165,5.420195,1.56262,5.97455,1.5245116666666665,4.684175,4.506095,5.48855,5.0357,0.9886798421052632,6.5395,2.362635,4.90933,2.797875,4.348645,3.332075,2.83133,2.1536566666666666,1.529514,1.9218125,4.446305,4.618835,2.054465,1.678435,2.95739,3.9702450000000002,3.0272466666666666,6.29035,1.9213175,3.99204,4.345095,4.33196,3.846535,2.742515,4.01934,5.00475,3.97743,2.6429033333333334,2.6429033333333334,5.579016666666666,1.7723466666666667,2.4856166666666666,3.910445,1.80047,7.415405,3.540335,4.3544833333333335,4.326266666666666,4.18027,1.7990659999999998,4.097725,5.40955,3.9938,2.0201275,3.532795,3.33725,1.1548875,1.3643525,1.2687066666666666,0.7054999999999999,1.6377366666666668,0.9121783333333333,4.66716,0.9651777777777778,2.5568166666666667,1.6526399999999999,1.7799725,1.078355,1.942525,2.201795,1.5125675,2.9490266666666667,2.6619533333333334,4.67873,1.5050633333333332,2.59155,3.0348699999999997,2.941193333333333,2.28674,4.4161975,4.57266,4.905235,19.186505666666665,2.642263333333333,2.1732925,0.6327207692307693,0.6340410000000001,4.187481666666667,2.01626,4.0858,4.768675,7.260803833333334,3.872155,3.608725,4.135695,3.1289766666666665,3.1995133333333334,3.02995,3.9907333333333335,3.2514066666666666,6.57485,3.610955,0.92175,1.0986,5.3188,3.09169,2.571756666666667,2.1266700000000003,2.282433333333333,5.66845,4.86433,2.3126225,2.301696666666667,3.17029,4.86148,8.329336666666666,5.042478958333334,4.265805,3.796225,5.2267,4.62429,4.352365,4.86091,3.807575,5.20445,1.855085,5.5521,1.5939857142857143,5.0966,0.7439866666666667,4.886335,5.49505,6.10625,6.16125,4.553445,5.89355,5.7736,6.3609675,1.9357,1.600042857142857,5.48755,3.75306,6.550136666666667,5.1499,5.487055,5.0768,6.17435,1.3408728571428572,4.402445,5.2468,4.169866666666667,4.638615,5.2048,2.622525,3.982335,2.89769,4.34066,1.0021916666666668,1.6218599999999999,1.34887,4.793605,4.016035,3.359335,2.151753333333333,2.96124,1.5675266666666667,2.2533266666666667,0.4019266666666667,3.5749333333333335,1.597044,2.3621383333333332,2.773123333333333,2.52291,3.152926666666667,2.6429,2.427865,10.231092666666667,3.9001,1.7870953846153848,3.507165,0.9259727272727273,4.5026625,1.135315,1.72162,1.92563,1.04624625,5.720831666666666,1.1390675000000001,1.1390675000000001,1.1390675000000001,2.9070633333333333,1.97322,5.04935,3.09785,1.391285,1.5451275,2.1433,1.289425,2.0943,5.245196666666667,0.8294777777777778,4.123475,4.083365,3.08759,0.9864285714285714,2.115675,1.9391525,1.9391525,1.4968766666666669,3.6758033333333335,4.5481,5.56485,5.6481,4.380585,5.256,2.794783333333333,2.01289,2.918305,4.98916,3.207725,3.94261,1.03018375,3.923725208333334,5.47365,1.942145,4.04681,3.08872,4.732615,4.640805,2.536715,7.03085,6.25265,3.781815,4.42657,4.27683,3.16021,7.94643,3.98942,4.919725,3.371125,2.826173333333333,5.24465,2.6462266666666667,5.84485,4.35202,2.703516666666667,3.2645,3.90833,1.45965,10.524004999999999,3.8525,3.01192,15.142351230158729,4.162555,1.70263,2.7630233333333334,2.096785,2.347335,3.22404,2.550213125,2.97427,2.95379,3.03713,4.12483,6.106825,1.1986666666666668,2.01126,4.21409,4.28617,5.0084,2.391585,0.5808746666666667,4.477535,4.369355,2.04649,1.3601916666666665,4.474135,4.481015,0.8844633333333333,3.68489,12.5281,1.290854142857143,0.40195714285714285,3.4410000000000003,4.522348333333333,1.0549877777777779,3.72659,4.16604,6.214691666666666,1.2461416666666667,3.26564,3.94283,3.364585,4.382045,4.477475,4.340005,8.343155,3.179115,4.432845,5.787,16.107841875,3.5307649999999997,2.83075,1.1797075,2.0239525,1.2016375,2.3398262499999998,1.31132,2.0200275,1.65197,2.0077225,2.4114975,2.2889025,2.160455,5.49415,4.45241,5.95915,3.18746,5.646675,2.81735,4.902785,3.418066666666667,1.23473875,3.802615,2.0511825,2.8248393333333333,4.701085,4.917135,4.89956,4.585175,3.5020333333333333,3.718833333333333,2.48217,3.39481,3.80183,2.25818,1.958165,3.504466666666667,4.15893,3.52741,2.3491233333333335,12.538386666666668,0.7264,2.725405,4.844965,2.510353,1.080626,2.807655,7.232283333333333,7.210631666666666,4.34826,3.793235,4.078115,2.083855,2.08247,2.840279666666667,2.056576666666667,3.8509933333333333,5.13415,4.23286,0.46618533333333334,6.0477,3.235046666666667,3.3364,3.5492666666666666,6.28875,8.69149575,4.327719500000001,0.93167625,2.2229275,2.307665,3.76431,2.633855,4.31798,4.544695,3.5803999999999996,2.736003333333333,4.0379,4.10781,3.799405,4.3211,1.9464433333333335,3.18654,5.2624,5.5656,3.151813333333333,2.02568,2.2772966666666665,15.08641062121212,0.5826909090909091,1.4653025,1.4653025,2.1763,5.017633333333333,3.869305,4.386485,3.007535,3.015595,4.63641,3.085046666666667,4.24989,3.085046666666667,3.53166,1.8624566666666666,1.5674966666666668,5.89435,2.664225,4.73239,3.30527,2.662275,6.379078333333334,2.0850433333333336,4.55055,5.34715,3.57502,3.350575,4.859205,2.0316400000000003,5.0412,3.3571925,7.433911666666667,5.441435833333333,2.8313,3.912915,5.0538,2.178675,2.5265,3.5196,0.44903499999999996,3.17061,10.15435,3.941415,3.28578,4.87365,3.2448883333333334,3.118245,1.3300785714285712,4.047175,5.4766,3.32566,2.15389,4.42715,3.70283,4.28002,4.232905,2.92325,2.92325,4.178355,2.85957,2.536582045454545,1.85933,4.89783,4.10973,0.9965414285714286,3.70485,5.057,2.728783333333333,6.8989875000000005,7.75902,1.483728,4.226945,4.92906,6.7900920000000005,0.6774,7.72996,3.5601658333333335,0.5825145454545454,5.3458,5.2437,4.836125,4.287135,4.654295,4.214875,4.99371,3.86498,3.95256,4.2938,5.6428,4.7658,4.498715,3.895975,2.425245,3.919315,3.008955,0.9520329999999999,4.38704,2.399445,1.68469,4.315945,4.39705,5.9209,1.07352,4.94871,2.9067,2.70286,1.57655,1.32927,11.477731666666667,2.3521733333333334,2.8422866666666664,1.9235,3.841874761904762,5.4893366666666665,6.1802600000000005,2.626583333333333,1.9384366666666668,2.09918,2.09918,2.09918,1.45493,3.87585,3.963055,3.32766,4.577835,8.24023,4.00585,1.1360540000000001,2.199185,3.21451,2.36962,1.8170600000000001,4.12373,2.966635,1.40881,3.0628499999999996,4.763173571428571,6.022175000000001,3.99613,3.942435,3.1663033333333335,5.0558,4.555525,5.26734,1.87559,1.87559,3.776555,3.77309,2.8163786666666666,2.8163786666666666,3.86473,1.18902,4.91948,3.36926,4.346575,3.809875,3.82894,3.3411666666666666,1.0287985714285715,4.362,4.959025,4.471745,4.680825,4.78982,4.92914,4.51297,1.9420725,1.4612675,3.52045,3.811485,3.320505,4.39976,2.219695,2.9588975,5.42205,2.856815,4.780665,7.210395,2.2915675,2.89763,4.334460952380953,5.270743333333333,1.61432,2.0645428571428575,1.05891,2.0645428571428575,2.218176666666667,2.218176666666667,1.510416,4.9291,3.18698,3.63451,2.35809,3.89744,1.5429783333333333,5.36105,3.0813,1.71122,2.8800033333333332,3.54521,4.111815,6.8428,4.590835,1.275596,0.8370916666666667,3.497175,7.090278333333333,2.45153,3.59743,3.759485,3.759485,2.30885,3.382285,3.263495,1.3851125974025975,3.1778633333333333,3.398485,2.76072,4.335825,3.976685,1.659125,3.304025,4.411665,4.55329,5.07795,4.31084,1.68935,2.04584,1.2589466666666667,2.16432,3.554415,1.8582875,4.419085,3.145433333333333,3.4146,4.090105,5.0022,1.521295,0.952278,1.90303,1.5227675,1.160511111111111,4.869735,3.98348,1.13236,0.2568521739130435,0.2568521739130435,0.2568521739130435,3.703245,5.584320000000001,4.571535,5.2004,5.1301,5.61655,4.4892,4.59361,2.65258,3.704815,1.5044675,4.60441,4.054775,3.805655,4.332985,4.181215,0.6772054545454546,0.6772054545454546,0.6772054545454546,0.6772054545454546,1.056892,1.056892,4.161475,3.90931,3.68776,2.81726,2.795575,5.37985,4.85616,5.53265,4.329415,3.0319800000000003,2.537316666666667,9.7212,1.512086,1.512086,3.714935,5.21855,3.3613666666666666,0.467265,0.467265,0.467265,0.467265,0.467265,0.467265,4.670385,5.2159,3.25605,4.35904,2.7863933333333337,2.7863933333333337,2.72608,3.2683066666666667,2.44793,2.7454,3.304015,7.0382126666666665,1.4300760000000001,4.389945,3.426865,3.846635,9.055796666666666,2.292386666666667,2.72487,0.9406171428571428,1.98678,5.1795,2.73363,0.88462875,2.8553566666666668,4.10936,5.50985,2.6268,4.71027375,0.9307133333333333,1.99271,4.826575,4.678825,2.940147,2.50491,2.0297199999999997,1.3762533333333333,7.0307200000000005,3.4234666666666667,2.0223233333333335,3.2813,2.6330033333333334,3.53591,3.77618,2.7353633333333334,3.2030133333333333,5.98685,1.4287066666666668,4.13938,5.21955,3.33653,3.93487,1.9509666666666667,2.96489,3.767075,3.925155,2.986855,4.59707,4.54951,2.74422,1.98424,2.8519633333333334,2.84421,2.8921166666666664,0.7881681818181818,2.1338475,7.9829975,0.460185625,3.071206666666667,1.5557999999999998,2.5511133333333333,3.3737333333333335,2.7883866666666663,1.2506555555555556,1.7210619999999999,2.6856733333333334,2.146615,3.666555,2.0156199999999997,2.743016666666667,1.4598699999999998,3.0917960000000004,1.9524625,1.1373685714285713,2.81605,2.0648525,2.3788233333333335,2.648773333333333,3.0929300000000004,3.2514466666666664,3.3851666666666667,3.1349433333333336,2.8260233333333336,3.0419199999999997,2.8627533333333335,2.657875,1.6728633333333331,2.433753333333333,2.5829,1.7073933333333333,3.0754533333333334,3.855075238095238,2.8546366666666665,2.4565733333333335,2.9404133333333333,3.5559999999999996,4.739880833333334,3.02535,1.7638214285714282,1.7638214285714282,2.466495,1.1654875,2.505675,3.366858333333333,4.585343333333333,2.7908,2.0676875,2.00891,2.13163,3.743235,2.961625,3.86347,3.110895,1.76663,2.3223033333333336,4.07223,1.1655200000000001,1.1655200000000001,1.65524,0.5819053846153847,1.9461926923076924,1.59101,1.59101,2.6865366666666666,2.4612333333333334,3.12112,2.6073066666666667,1.94118,5.521306666666666,3.9054225000000002,3.9054225000000002,3.585505,2.980845,2.18613,2.99348,2.412375,2.9118,5.18872,0.48199333333333333,0.678418,4.13911,2.317005,2.913975,6.527211666666666,3.63295,1.612098,5.026,4.624335,4.118845,4.290745,5.3155,4.792675,13.6505275,3.57763,1.60714,2.905395,3.78596,5.0248,2.8162,4.01899,4.08118,3.579425,4.53738,2.8419399999999997,2.92912,2.65551,2.511833333333333,2.511833333333333,4.022145,2.939635,2.899855,3.54153,2.392575,2.520265,2.128905,1.9088875,1.9643525,2.166015,1.695385,3.3165895,3.405505,2.5298,6.7989049999999995,3.28727,2.2625033333333335,2.0461199999999997,3.492595,3.970185,3.689845,3.1981939583333334,3.466055,3.32079,4.396725,3.593505,3.81673,3.990505,3.422838,3.435545,0.6360733333333334,0.6360733333333334,0.6360733333333334,3.588625,2.370435,5.5168,2.408505,3.77733,6.8882801851851845,2.74248,0.35345076923076924,5.34705,0.764391,4.292459523809524,1.965515,3.757765,1.883135,4.100675,5.420988333333333,4.3307,4.18794,2.6753066666666663,2.7878900000000004,1.47154,2.60796,0.38527105263157896,0.5437082352941177,2.43426,1.3773166666666665,1.8499975,3.925215,2.80503,4.77672,2.824263333333333,3.0621699999999996,3.624095,5.04805,1.704935,0.9379314285714286,2.16194,3.7191080000000003,1.2343995454545456,4.86345,3.92884,3.624025,2.73915,4.15143,2.512696666666667,2.402156666666667,2.3662533333333333,2.38843,2.4978433333333334,2.250615,3.1063033333333334,2.3969633333333333,5.4826733333333335,2.112565,2.0181133333333334,2.04614,4.906165333333333,3.281186,3.281186,2.5486,3.968605,2.33948,3.35265,2.948555,0.5574613333333333,4.292725,1.8123075,12.033722222222222,7.2914,2.76384,3.28866,3.36508,5.06808,2.88519,3.31231,0.258428,2.0577275,3.3471333333333333,0.8211041666666666,3.91826,1.2962,4.62414,3.358965,3.17983,3.58891,3.361535,2.2448,4.467615,3.76293,3.6582,6.65889,4.058385,2.8207533333333337,3.040313333333333,1.618976,1.975925,4.19609,3.505975,3.70632,2.72591,3.360665,1.3184939999999998,3.06029,2.870785,3.609255,10.684013333333333,3.83805,5.890358333333333,3.91601,4.27981,1.0128355555555555,4.793093,4.699055,2.5827533333333332,2.5823033333333334,2.59414,3.735,2.4072733333333334,1.7573699999999999,1.9337633333333333,4.02492,1.578558,2.839233333333333,5.123220666666667,2.7625966666666666,1.0676614285714285,1.0676614285714285,3.63444,2.9163940000000004,2.9163940000000004,3.6433666666666666,2.8483633333333334,3.3713994871794872,3.7417,3.452366666666667,2.709373333333333,2.3237133333333335,2.4691966666666665,3.1063733333333334,2.2729925,2.4446966666666667,1.656444,5.829739,8.851030333333334,0.30866076923076924,0.30866076923076924,0.30866076923076924,0.3932996328671329,0.3932996328671329,0.30866076923076924,2.9834766666666668,2.9826466666666662,4.142131666666666,1.3638983333333332,1.796245,3.2998139999999996,2.51593,3.0705733333333334,2.404246666666667,2.8501999999999996,3.291116666666667,6.592186666666667,3.12797,2.4852433333333335,2.8334799999999998,4.678175,2.2851833333333333,3.3831666666666664,5.90777,2.3935133333333334,3.3856,1.4105433333333333,1.4105433333333333,2.7878233333333333,0.5087842105263158,2.3833033333333336,2.6201,2.7978366666666665,3.2361033333333338,2.34637,1.6623566666666667,2.7273033333333334,2.738773333333333,2.3605833333333335,4.242895,2.5071380000000003,3.405765,2.349105,3.015365,0.515347,7.280095,3.029388,3.029388,7.758393611111111,1.7500666666666669,1.8140833333333333,2.9375666666666667,4.812405,2.411773333333333,1.9628266666666667,2.633853333333333,1.4140775,3.570133333333333,1.7845833333333332,2.954936,1.389965,0.270055,0.270055,4.834945,3.82572,3.42546,2.859306666666667,2.635905,3.38496,1.25527,5.48605,3.95459,3.020575,1.850635,1.16399,2.16101,2.9375666666666667,2.835085,2.027815,5.90818,3.79077,4.30817,3.87331,2.52608,0.6945008333333332,7.3726275,2.1235775,1.68675,3.51295,4.454215,2.52041,1.6924333333333335,4.45813,4.1233,3.141526666666667,3.10749,4.20063,4.170025,3.4750666666666667,2.56105,2.56105,3.93913,4.84718,5.56705,6.249016666666667,2.63186,3.89055,1.460942857142857,2.6196,5.4633780000000005,3.774085,1.868478,5.31295,3.51215,3.417245,2.276835,4.19377,4.62958,4.62097,4.606265,2.52448,2.6178766666666666,3.5912,2.0692133333333333,2.36687,2.4859133333333334,2.572976666666667,0.6905249999999999,2.24909,2.89246,1.869508333333333,4.62608,4.58352,4.756205,3.83674,3.40228,4.803405,12.080415,4.7888,3.84821,4.38546,3.95041,4.523955,2.4471233333333333,3.211064,3.5561333333333334,1.23047625,2.864995,2.90368,4.29351,5.416,4.141555,3.4817,3.03768,2.2077466666666665,4.275766666666667,3.9903399999999998,3.6834333333333333,3.9903399999999998,2.205386,2.3118366666666668,2.4491683333333336,2.15618,2.6535433333333334,1.8528133333333334,0.8438333333333333,1.2934566666666667,1.93412,2.015573333333333,1.5654633333333334,1.3417766666666668,1.7299533333333335,2.7434166666666666,1.5297399999999999,2.8950633333333333,1.3823433333333333,1.63636,2.792065,4.299533333333334,2.5458233333333333,2.214233333333333,2.40978,3.236475,2.27666,2.8760399999999997,3.2550000000000003,2.42842,3.0170399999999997,3.1289175,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,0.1394267741935484,5.1064,3.069025,1.037747142857143,3.1778433333333336,2.60956,2.752713333333333,3.331555,3.3829333333333333,4.57513,3.4429013333333334,1.517124,2.9756199999999997,1.7977999999999998,0.9582775,0.958628,1.6564183333333335,0.8407433333333333,0.8084175,1.313528,3.37722,1.562116,1.6016599999999999,1.9090394444444443,2.326807777777778,1.4515633333333333,1.2451066666666668,1.5861150000000002,0.95968,1.2755183333333333,0.7551683333333333,0.878664,3.427875,3.64909,4.221415,4.55904,4.047615,3.0804066666666667,4.72097,3.4959000000000002,2.035035,3.556085,2.0080025,3.512285,2.1754000000000002,0.8350245454545454,4.225475,4.87027,2.0727033333333336,1.3298675,3.03667,3.486855,3.6758033333333335,3.0013566666666667,2.589385,0.887245,2.23754,4.888317499999999,3.783225,2.40903,1.5045483333333334,3.83158,1.8450575,0.5649618181818181,4.273875,4.275045,4.08049,2.68702,1.501874,2.991395,4.506415,2.638036666666667,2.607396666666667,2.434676666666667,2.6390366666666667,2.75446,2.7967433333333336,3.0506233333333337,1.206305,2.5254,2.5519966666666667,4.91022,4.266255,3.65146,4.620225,16.055575010101013,4.251645,4.4828193333333335,2.82026,4.221625,5.1476,1.516394,1.9476525,2.331373333333333,5.5083325,3.77743,3.2682,6.5413,2.331373333333333,3.927215,2.09813,2.1010166666666668,2.9667033333333332,2.7421466666666667,1.2683233333333332,4.200975,3.613445,2.5541,4.29268,2.5027266666666668,3.2924733333333336,3.761,3.521365,4.614695,4.019615,2.65061,3.56001,2.6701,2.54814,1.269406,1.269406,3.5718666666666667,2.58882,0.37918928571428573,4.980396000000001,0.902486,2.72889,3.530815,0.5765891666666666,4.57507,8.037908333333332,1.86586,3.7951,3.48294,2.5136966666666667,3.37741,2.31305,2.99963,3.596845,4.077225,3.199015,3.777566666666667,0.9800416666666667,11.346695666666665,2.643485,2.88285,5.95795,2.672425,3.911515,7.745376666666667,3.955025,4.02304,3.638595,4.11934,5.5122125,1.6218025,2.7247,4.66124,3.8612,1.9553699999999998,3.84329,3.64457,3.633595,4.017,4.154055,3.8374,2.5339033333333334,4.43747,3.71343,5.2681,3.235495,2.2110833333333333,2.1927833333333333,1.93584,3.07875,1.28215,3.6109333333333336,0.8553799999999999,3.2123899999999996,3.11269,2.6281033333333332,1.52748,4.24706,3.919515,4.240275,1.924365,4.64107,3.760255,0.7366560769230768,0.3483780769230769,4.28594,5.5433,0.93635375,0.3483780769230769,4.45874,0.7366560769230768,0.7366560769230768,0.3483780769230769,5.659143333333333,2.5948333333333333,2.2724033333333336,5.48835,3.442375,3.357085,0.7834533333333333,3.246305,3.663245,4.709845,5.68215,2.15009,0.7227992307692308,4.309209166666667,2.0937266666666665,1.2478120000000001,1.8488625,1.0278085714285714,2.3244000000000002,2.2280133333333336,3.54857,5.0698,2.593103333333333,3.137976666666667,2.7400933333333337,2.2622833333333334,3.08291,4.47128625,1.7088675,2.023755,3.9657,5.0798,2.165125694444445,4.990835,2.98518,4.14757,4.23398,3.09505,1.22147,3.18893,6.69745,3.81937,3.382185,5.226,6.32145,2.35074,3.361895,4.60424,3.27014,3.320305,8.2775,3.83014,4.681145,2.60177,1.1464275,2.58187,1.913475,1.970345,1.800835,4.029515,0.6333664285714286,3.123405,3.7928,1.9012933333333333,2.88203,5.0375,3.091325,2.74165,4.13663,5.0774,9.064560833333333,2.663603333333333,2.3496366666666666,1.6723500000000002,1.465625,1.2764633333333333,1.4685733333333333,2.4720033333333333,2.5962,2.849736666666667,4.1069555769230774,1.4935425,2.4174933333333333,4.8381,5.2694,3.705755,3.503265,3.10418,2.60119,2.147445,2.11829,1.8733899999999999,1.999415,2.805355,3.627855,4.804885,5.0522,3.998965,5.433625833333333,3.282445,2.557185,6.256036666666667,3.069615,8.778665,4.6880775,4.6880775,5.505545,1.5891566666666668,1.3719825,1.33654,0.721591,4.971065,3.7395333333333336,3.289405,3.289405,2.2179200000000003,4.37144,4.36087,4.415685,3.87925,2.866296666666667,2.735745,3.468515,3.04334,5.2430125,3.702145,0.748670909090909,5.04185,5.0044,3.945945,4.97046,3.7844,6.2829,4.063015,0.8291692307692308,5.2769,6.97689,3.33588,5.9168,5.75015,3.488505,2.741015,3.69049,5.9866,2.0609875,5.83495,1.8842425,4.414975,2.4747733333333333,2.553575,0.918107,2.89834,6.07345,3.306255,3.675245,2.1037333333333335,5.34115,8.052586666666667,3.53486,4.21477,2.792905,3.018065,0.834123,4.700725,1.5573833333333333,3.4100108333333337,3.4100108333333337,3.585965,2.3621966666666667,2.9805166666666665,3.726115,1.73729,2.90814,3.3577,3.2582166666666663,2.856835,4.158305,3.036825,1.84267,3.2081866666666667,2.09974,3.1281466666666664,2.0362133333333334,3.0913766666666667,3.1761933333333334,1.4129714285714285,1.72682,0.376565,1.3381733333333334,0.376565,0.376565,1.72682,0.376565,3.3811999999999998,2.582686,2.582686,2.8795266666666666,4.136995,3.677815,4.06901,5.21095,5.4184,3.545115,3.76727,4.01013,1.867315,2.3452795,2.3103466666666668,0.8084699999999999,5.3879,3.0464533333333335,3.00245,5.4775,3.8364525,4.75168,3.4102,2.647273333333333,2.987735,3.42242,2.6609133333333332,2.8078466666666664,2.0719600000000002,5.3486,0.8377766666666667,3.63827,1.1473214285714286,3.779385,3.4111666666666665,2.86985,4.041285,4.07431,3.782835,4.431725,4.087125,3.708415,4.274835,4.27894,2.548175,2.73125,3.2252466666666666,4.225235,2.6041,3.226885,2.644575,2.98618,3.237413333333333,3.3133,4.818175,4.79654,3.953915,68.12656908569208,2.7372875,3.78494,15.776634666666666,4.118665,3.1145766666666668,2.1160366666666666,1.9057233333333334,2.7390233333333334,4.3578,3.0146866666666665,3.95733,5.55685,3.37022,7.429235,5.18465,2.44168,3.32447,3.75176,3.40907,1.803846,1.11023625,4.660925,2.65108,6.108526666666666,3.516665,2.1332866666666668,3.61711,3.43703,4.5588,3.34242,5.6365675,4.3788,3.41119,3.067815,2.4333975,2.64892,6.05605,2.90589,3.510425,4.312981666666667,1.2571133333333333,2.3715,5.27766,3.451875,3.11009,3.62658,2.94704,4.038435,3.076365,2.84911,2.3267,4.35012,2.902235,2.90078,4.46012,9.141314999999999,3.2233199999999997,4.246405,5.62214,3.21658,1.970885,4.1062256249999995,1.91314,2.93361,2.893192,3.49932,3.046,2.942255,3.15965,3.26668,4.133945,3.946165,4.200355,3.438635,2.985285,3.7488,2.7630566666666665,2.7630566666666665,7.042666666666666,1.661475,3.062975,3.05669,2.381275,4.816795,4.209,2.956705,3.301775,4.55871,5.866265,0.6409681818181818,4.056655,2.3931,2.9302233333333336,2.5130166666666667,5.1889,2.66179,2.03395,1.12765375,2.0274051515151514,4.26826,4.966015,4.120785,5.7539,5.5255,5.8762,2.41549,1.8680233333333334,3.903705,2.422745,2.8517166666666665,1.9932266666666667,1.3437866666666667,2.9591100000000004,3.1388533333333335,1.583176,2.4306433333333333,2.4455617142857142,3.421742087912088,2.80398,4.85381,3.34268,1.3322325,3.2688,3.46821,5.82615,4.94249,5.8911,4.765565,1.9862366666666667,1.4386966666666667,0.58119,1.5215500000000002,3.476385,2.441245,3.6317033333333333,1.4501633333333332,2.557585,2.401885,3.373425,3.63165,3.82809,4.128396666666666,1.677285,1.3868075,1.93454,2.081175,1.411165,2.430085,6.90533,4.834975,3.35072,2.98206,6.6670300000000005,4.45925,3.1334,3.07298,3.49383,2.792645,3.727535,2.2836433333333335,7.33217,0.9238883333333333,3.09629,6.6247,4.03046,4.56206,6.2017,1.38006,3.157016666666667,2.9070933333333335,2.7763566666666666,1.4777225,4.039845,8.826,3.288835,5.0317,4.00448,2.98676,4.79266,0.9213783333333333,2.8987700000000003,5.3036,6.2817,5.12815,5.79845,2.854425,3.6953,2.55402,4.9761,4.819145,4.537042785714285,4.537042785714285,0.6611042857142857,3.5158666666666663,0.9369759999999999,0.8971399999999999,1.7269625,3.7248666666666668,4.10273,5.575101428571428,3.0029066666666666,3.3656414285714282,3.129994761904762,2.7109166666666664,3.1667666666666663,4.514033333333333,3.5532575,1.9621175,1.9621175,3.969345,3.008153333333333,2.763036666666667,3.43069,3.3538666666666668,0.56948,3.302936666666667,2.55378,2.4241533333333334,2.6775866666666666,2.5778,2.464726666666667,3.1600433333333338,2.75494,0.7916909999999999,2.88002,6.39368880952381,2.13768,7.319951833333333,1.64177,1.64177,3.4071731666666665,3.4806333333333335,3.2593599999999996,2.8231866666666665,1.6708960000000002,1.307475714285714,3.1967766666666666,3.2806566666666668,1.4637083333333332,1.5390142857142857,2.81438,2.6720180000000004,2.6700966666666663,1.876525,1.8101375,2.81219,2.002475,2.840355,3.421285,1.71722,3.66001,3.35386,6.805839,3.338365,1.6516925,2.91347,2.58311,2.21017,4.102175,2.3340033333333334,2.54606,7.064327499999999,0.844,0.7900066666666666,4.399115,1.429518,1.429518,3.808215,2.3635325,4.35358,3.204115,1.3228533333333334,2.4900346666666664,3.0075299999999996,2.4555730000000002,5.0219,4.87101,2.5559066666666665,2.019066666666667,1.328477142857143,1.328477142857143,2.0982933333333333,3.842185,3.9539000000000004,5.58415,3.0361266666666666,4.66664,4.27282,6.44985,4.29349,2.407005,2.843026666666667,2.6452733333333334,2.713513333333333,0.7593044444444444,0.7593044444444444,0.7593044444444444,3.368395,4.162415,3.703385,0.827105,0.827105,4.765845,5.646,5.94615,21.79568111111111,10.3192,7.90817,3.071375,5.68965,2.3648125,4.065775,2.52916,3.1930266666666665,3.9716666666666662,5.288353333333333,1.964215,2.547765,5.93859,2.0464200000000003,2.0464200000000003,6.11935,2.96556,4.22095,2.059585,4.812179,4.448595,3.42922,4.89226,3.197885,1.64694,5.6465,8.70948,1.64694,2.059585,2.21348,0.994388,0.994388,1.698942,2.3226400000000003,1.698942,4.17366,5.44675,5.9499,8.39313,2.059585,11.522572,5.732,5.53335,2.3648125,3.439935,4.27689,8.43714,3.034476666666667,3.83812,5.9824,3.2844,4.56126,6.06255,4.42,4.98999,5.0415,2.864835,5.006,3.292665,4.32222,4.46886,0.79187625,1.497352,3.047025,5.3439,4.5325,2.7625966666666666,2.083005,3.93767,4.695775,5.66125,5.2974,5.1662,4.461015,4.139165,4.25105,3.669985,2.1094425,4.9831325,2.046065,2.671985,3.518535,1.6367433333333334,3.96294,3.824325,3.71153,3.7311283333333334,2.88258,6.599295000000001,0.9201377777777778,3.57171,1.756205,1.16892,5.119478,1.4252366666666667,1.6139733333333333,2.4774066666666665,2.8059195,2.9331566666666666,2.7935533333333336,1.763825,0.7305472727272728,2.179203333333333,2.565735,3.59726,0.6704861538461538,6.1083066666666666,1.7696366666666667,1.214572,3.428733333333333,1.214572,3.958485,0.9444545454545454,4.47554,3.1699800000000002,1.90496,4.950956,4.3133859999999995,4.3133859999999995,4.65786,2.41141,2.954536666666667,2.8234166666666667,1.527066,3.951465,3.76274,2.0220433333333334,0.7148708333333333,6.798027820512821,2.78445,4.052915,4.305055,7.40131,2.1141,4.25206,3.81405,3.17787,3.50733,5.4833,6.313642499999999,4.51547,4.707975,5.1571,2.9393433333333334,4.949255,4.261325,4.481795,1.0665533333333332,0.4815278571428571,3.10761,3.394966666666667,2.7585466666666663,5.18715,3.78488,4.220735,4.12498,5.252,4.08464,4.129165,1.18545,2.228275,8.2432275,2.1964166666666665,1.8898666666666666,3.9000652380952374,11.10546371031746,1.5085375,5.1338,6.4794,5.0889,3.5835000000000004,2.26278,3.2434,4.124395,1.11131,3.0609966666666666,3.305025,0.33284315789473684,2.05346,4.438945,4.176235,2.204305,4.132195,2.887975,5.0813225,1.2602033333333333,0.5203945454545454,3.8211191666666666,1.15995,1.03377875,1.03377875,1.03377875,1.03377875,1.6110666666666666,2.707333333333333,1.8069166666666667,3.3777333333333335,5.3649,3.5461666666666667,5.2051,3.60691,4.273485,3.59493,3.891335,1.48834,6.3104000000000005,2.15451,4.5727,5.240566666666666,5.3018,5.080899166666667,2.4344566666666667,2.3384199999999997,2.6196266666666665,3.13061,1.2406966666666668,4.363603333333334,2.6513833333333334,4.95056,2.796723333333333,2.38534,3.83922,3.35585,2.92003,2.540296666666667,2.8122966666666667,1.480585,0.4013133333333333,3.95852,3.487035,4.20049,3.395425,3.83448,5.719,4.263145,0.54423,3.0432639999999997,6.947442,1.9766199999999998,1.927558,5.582695,4.556015,2.6946733333333337,4.868385,5.1433,4.24447,3.83499,4.24907,5.3234,5.59115,5.1727,3.67782,5.1209595,1.453958,1.5994816666666667,4.175135,4.010775,3.79766,3.22805,5.4349,4.52766,3.852265,3.32454,15.52264289326248,1.2715392281968965,1.08267,1.8230981818181817,0.495438125,0.46539733333333333,1.419775,0.3222735294117647,1.3434620000000002,3.162573333333333,1.80535,0.8891166666666667,1.0795004166666666,0.4265716666666666,1.0795004166666666,1.0795004166666666,0.4265716666666666,0.8183692307692307,0.5367035714285714,2.832255,2.835373333333333,4.58725,3.77852,2.830156666666667,2.728875,4.006,4.945025,5.1238,2.72331,4.25907,0.6829464285714285,2.3472206666666664,8.150428333333334,4.05689,6.595305,2.842955,4.26417,2.399865,5.2118,5.55035,3.451955,4.15843,2.67621,1.0580566666666666,4.284045,4.55917,1.20468,1.301562,1.5125166666666667,2.35546,1.8720766666666666,4.95581,5.71335,2.29265,2.29265,3.6265033333333334,6.70275,2.098446666666667,0.6481327272727273,0.7775942857142857,2.326443333333333,3.4148333333333336,0.9431171428571429,0.9431171428571429,0.9431171428571429,0.37569153846153847,1.06427,2.95625,6.0476,3.8247666666666666,4.123504166666667,5.1665,1.0206899999999999,3.5589999999999997,3.1915266666666664,3.8577333333333335,5.72015,2.531893333333333,7.45915,4.78597,1.1022133333333333,3.7708666666666666,1.865138,2.5441,2.369736666666667,6.838273333333333,3.2427266666666665,4.257845,2.2296175,4.486755,4.53568,5.08035,0.52396,2.83553,1.4013666666666669,2.5315966666666667,3.9135946666666666,2.13576,2.7996700000000003,2.500176666666667,2.5488133333333334,2.61002,2.969583333333333,2.745316666666667,2.85549,1.381648,2.2910366666666664,1.9384533333333334,2.98678,2.48593,2.1049625,1.83246,1.8501933333333334,1.68304,3.166135,2.190586666666667,2.0060100000000003,2.146603333333333,2.41142,2.42679,0.7614277777777778,0.7614277777777778,0.7614277777777778,2.4403466666666667,2.0773266666666665,3.054953333333333,2.4301733333333333,2.5986433333333334,2.10543,3.891195,3.5431616666666663,1.3337783333333333,2.494006666666667,2.72796,3.826373333333333,1.5633857142857142,7.2047783333333335,4.528935,3.127415,4.07631,3.3809,1.4529725,0.8431571428571428,3.123625,3.82159,3.826373333333333,4.104135,4.118365,4.392945,2.845413333333333,3.83821,4.200535,0.91263,2.729995,3.285205,4.849455833333334,4.6605,3.526805,3.41225,2.481275,2.236693333333333,2.4190133333333335,0.6302800000000001,5.217434166666667,2.75445,3.88587,2.6629466666666666,3.8145100000000003,3.3976333333333333,2.48866,2.961548666666667,2.961548666666667,2.5945966666666664,2.14696,2.4780533333333334,2.06629,4.251995,1.352448,2.521055,3.679795,3.90342,3.949605,5.2176,3.750965,2.4306,2.213785,3.16742,2.888145,2.682865,5.18345,2.76963,0.9930471428571428,0.9930471428571428,4.74686,3.986631,0.960506,4.400435,0.960506,3.81648,4.748075,4.73903,3.038835,3.20772,6.333394999999999,4.186043333333334,5.6938,0.8520285714285715,0.8520285714285715,2.06136,4.446605,1.4611049999999999,2.9855,3.44579,1.1160428571428571,3.819205,3.83911,5.833075,5.833075,1.0016266666666667,5.5457,5.28185,4.947485,6.09525,1.9997075,1.9997075,7.04335,0.9318909090909091,7.27855,1.9683225,6.5686125,2.628115,2.575153333333333,3.419715,2.33894,2.3089733333333333,2.3042866666666666,2.9582533333333334,2.283212142857143,6.277131000000001,1.761632,4.99761,2.8919766666666664,2.4307666666666665,1.746005,2.274655,3.17478,3.55432,3.412275,2.93492,2.22099,2.11567,2.33129,1.1054439999999999,3.4227,2.682165,3.282435,2.1385925,2.1385925,3.09892,2.0932066666666667,3.74086,3.549765,4.904695,7.015420000000001,4.13038,3.475275,6.3575281666666665,2.06918,3.2460211111111112,2.16834,1.4982142857142857,1.6598275,4.159635,1.5658483333333333,0.499719375,0.6770166666666667,4.28307,4.704235,2.85191,0.9650766666666666,2.762765,2.991896666666667,4.868015,1.75413,1.963675,1.1210444444444443,4.611175,2.43872,4.56725,0.749871,4.159647083333333,3.911045,3.45712,4.412045,3.590445,3.832815,2.8154266666666667,5.3669,3.68473,1.9206033333333332,2.72876,6.111556666666667,6.0171399999999995,0.73384,3.689325,4.761595,5.34625,3.7750333333333335,3.8549333333333333,2.6936,3.16947,3.739433333333333,6.3999375,2.6720180000000004,2.6448125,3.926045,3.01334,2.317805,2.52235,8.41311,4.64261,1.9111500000000001,4.775345,4.8143,1.76287,3.86431,1.2639375,1.4315571428571428,4.318685,3.974565,4.725595,2.4981966666666664,2.84524,2.960975,4.461065,3.75387,3.456645,2.93248,3.519255,3.916205,3.7080224999999998,1.1547657692307691,1.1547657692307691,7.539,0.743115,1.9961725595238096,0.743115,0.7427883333333334,0.41602666666666666,2.738960892857143,2.367165,0.5190071428571429,1.9961725595238096,2.05179,3.309425,2.21995375,3.43497,4.611475,7.150046666666666,2.12162,1.998955,2.11359,4.25034,5.6627,2.127885,1.7008925,1.2204225,2.921315,4.12918,2.76214,4.239885,6.366725000000001,0.4376377777777778,3.79685,0.711676,2.675406666666667,2.253865,3.742655,1.253075,4.05557,4.5486725,3.991375,2.799395,3.8126,4.5691475,1.5996225,3.29927,0.5764038461538461,2.345565,2.501635,1.1453099999999998,2.9855933333333335,2.46126,2.51073,3.81229,8.256365,2.8343763636363635,3.790845,3.386965,7.02056,5.443965833333333,3.20128,4.21211,3.58671,5.6661,4.119615,5.1538,4.775615,4.11735,4.723725,3.6014,1.5402925,1.9192833333333335,2.1002966666666665,3.885765,2.51283,0.19878945945945944,0.19878945945945944,0.19878945945945944,29.93069573809524,0.19878945945945944,3.1691394594594593,0.19878945945945944,0.19878945945945944,0.19878945945945944,3.251322792792793,4.27359,0.19878945945945944,0.19878945945945944,0.19878945945945944,0.19878945945945944,0.19878945945945944,2.923395,5.40042,3.259975,0.23768358974358975,0.23768358974358975,4.417926666666666,3.9550968749999997,3.837283541666667,3.2677812083333335,3.9338461904761903,8.0138,11.465119555167055,6.262715999999999,8.25564,7.829452285714285,2.7878233333333333,6.2108019047619045,4.325305,4.353255544871795,0.23768358974358975,7.893923333333333,6.618238380952381,6.99197,2.760825,8.977832785714286,13.993539047619048,17.9893139514652,56.03402073119528,116.99243977669144,1.4105433333333333,3.3856,3.370725,3.820106348777349,0.23768358974358975,1.6367184615384616,8.873993958333333,14.669353035714286,19.55195527777778,47.33955148663325,13.327173952380953,3.143825,0.2267134482758621,0.2267134482758621,4.61193,2.7972466666666667,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,0.2267134482758621,5.64496,0.2267134482758621,0.2267134482758621,0.2267134482758621,2.64875,1.9523266666666668,3.884125,3.66347,4.153808333333334,5.01575,1.9253225,4.104415,4.196735,3.033495,1.5097866666666666,3.558975,1.01715,2.270415,2.0143866666666668,5.076756666666666,6.075463333333333,2.7989033333333335,5.665652611111111,0.5443205555555556,0.4710846666666667,2.3541,2.7386466666666665,2.75304,3.818565,3.4021666666666666,7.42225125,3.73875,3.63081,3.374265,4.02503,2.914965,3.281215,5.64945,1.993345,0.45226076923076924,0.8424427272727274,4.227385,1.76688,3.848165,3.765875,4.536,3.49576,2.369725,2.608475,0.6275879999999999,0.7211529999999999,4.23756,2.6972533333333337,6.1194,3.552455,3.744651666666667,2.51125,2.987895,6.36605,3.59586,3.285765,0.8600009090909091,3.0640199999999997,4.36736,2.23816,0.951175,1.5807466666666665,3.999705,6.39015,2.08125,3.052785,3.70338,5.65035,2.635675,2.41742,2.34287,4.68108,2.47372,4.230015,0.7034042857142857,2.1797566666666666,3.430765,1.910875,6.232341666666667,2.88605,3.91524,4.514115,2.905005,1.992055,0.5092372727272727,4.493135,4.93626,6.6793,2.950535,3.67051,4.35618,2.857865,1.9235116666666667,1.1935185714285714,4.922295,2.15071,2.72395,8.345324999999999,4.019325,5.1638,3.344775,0.6416666666666667,3.08992,1.2307685714285714,3.298355,6.0095,4.823285,4.98777,3.574915,5.0844,4.429265,1.731785,1.67253,5.01135,3.0166866666666667,3.29806,2.4673725,5.384,4.428775,1.4190666666666667,3.6279,2.918165,2.840925,3.945265,9.39004,4.655025,1.766915,4.66575,6.19571,4.2665,4.06528,3.84625,3.97705,4.60879,8.303139999999999,2.45515,2.98486,3.204875,4.23066,2.776435,3.244835,4.580805,4.494185,3.544465,3.9753093333333336,18.603208000000002,2.8034733333333333,2.59461,3.3472333333333335,5.5301263333333335,1.16623875,4.12428,2.164886666666667,5.0707,1.3649683333333333,4.170245,4.222735,3.56791,0.96872375,4.53355,4.44395,1.692025,4.526401363636364,4.290675,1.034112857142857,3.668575,1.95151,2.20417,1.55673,4.179585,3.83384,3.690465,3.718735,2.95646,4.227715,8.15726,4.3647,4.271935,4.7305,3.0576399999999997,3.956135,4.73964,6.5532960000000005,1.086726,1.086726,4.360685,4.905385,2.1931499999999997,1.3722133333333335,7.124945,4.006875,3.48936,3.830465,4.76015,4.437775,3.52137,4.18052,6.137074999999999,3.959526666666666,4.390985,4.79615,1.4309428571428573,2.669075,4.211645,4.50779,3.42616625,0.20151388888888888,1.488075,2.16539,2.46849,2.1651833333333332,0.9666933333333334,1.449295,1.48507,2.3173933333333334,0.6287444444444444,1.057337142857143,1.84555,3.930215,4.011466666666666,2.1325333333333334,2.527553333333333,2.85501,2.8473100000000002,0.668818,0.95801875,3.10823,4.460505,4.266205,2.871065,4.8449,4.62128,4.518265,2.1157,4.343515,4.863935,4.41664,6.11938,3.651655,0.4855605882352942,5.56185,4.508965,3.59041,4.578365,3.327225,1.88823,3.623185,4.120415,2.78483,5.267895,4.48123,1.3850333333333333,5.267895,3.93676,6.869580000000001,3.74823,1.1349666666666667,3.69941,5.0431,4.321615,2.8279833333333335,4.69584,1.5159175,2.0661425,3.05897,3.45459,0.811471111111111,4.898875,4.886325,3.36241,3.928755,3.4384333333333337,3.0161466666666663,1.75454,1.61064,3.168165,3.45382,3.5475999999999996,2.42518,2.1437175,1.9983113333333333,3.645545,1.3232271428571427,0.8254722222222222,5.78086,3.909705,1.490078,2.60597,2.17121,2.9913266666666662,6.0038350000000005,2.2633855555555558,0.819596,2.51568,4.44244,2.0567800000000003,3.96058,4.955145,5.3096,4.403285,4.26394,5.015,2.18588,2.29718,1.7194733333333332,2.1811266666666667,1.893735,2.4057833333333334,2.26315,1.612795,2.546525,3.10793,3.97565,6.4727,4.376955,4.08889,4.324035,3.93994,3.8549,5.14935,0.9071625,3.1569633333333336,4.604565,1.1816039999999999,0.6209266666666667,5.0242,3.451505,2.52917,3.6040012499999996,6.2603425,5.35875,0.9168799999999999,1.2006085714285715,0.6918755555555556,4.1643025,2.27648,2.7743800000000003,1.1912342857142857,2.699783333333333,2.660676666666667,5.58355,4.587385,4.332105,5.21985,4.30113,1.247565,3.62563,1.6464633333333334,3.532225,3.67107,3.32963,2.6541799999999998,3.2339300000000004,2.66396,4.29302,4.18767,3.1119,2.3324275,8.886064999999999,10.241254999999999,4.09525,1.4218557142857142,5.46195,3.824445,4.821075,4.430685,3.927575,3.78705,3.491785,4.201845,3.5963275,4.88729,3.77858,3.64549,4.55649,1.7725560000000002,5.17775,5.6777,4.76229,3.328075,3.275315,7.354190000000001,0.8114891666666666,2.5832133333333336,2.79008,2.4283366666666666,4.95681,3.418175,1.24336,4.158845,3.3724333333333334,3.728665,4.626765,4.1828183333333335,6.623365000000001,3.1638033333333335,2.93568,3.1918133333333336,2.79118,4.00838,1.87758,2.2638633333333336,2.96536,3.955855,3.71831,1.95286,1.584625,3.145622142857143,3.1524555,0.8961522222222222,2.5519933333333333,2.5519933333333333,1.4044,5.7365,3.20091,3.394535,3.51794,3.17545,3.51311,3.42685,3.226565,3.34487,2.3343599999999998,0.5375773333333334,3.335065,5.735025,3.12132,3.83196,3.303605,4.03509,4.041955,3.1198,2.73065,3.48208,3.728465,3.06111,3.101285,3.496265,2.6120233333333336,4.186485,3.82913,8.84419,3.371905,3.694085,2.95623,4.103835,4.102385,3.63661,2.331825,3.66432,2.6082875000000003,2.874205,2.94944,3.22289,3.74353,1.7434566666666667,1.7434566666666667,2.462855,3.171625,3.40563,1.572228,2.348055,3.37624,1.74479,2.85325,1.572228,4.20533,3.174005,3.8373357500000003,3.05606,3.492175,2.41127,3.18313,4.07603,3.926185,3.58397,4.43675,3.84136,4.312365,3.649745,3.13011,3.26861,2.989865,3.92949,2.66155,3.76266,5.2184,4.175025,3.62169,0.29158260869565217,3.571825,0.44679416666666666,3.71113,3.647185,2.904375,3.56412,3.66251,6.079861666666667,3.353565,2.594863333333333,2.414946666666667,2.8505133333333332,0.6301650000000001,6.44908,3.07656,3.631025,3.48694,1.96081,2.607185,3.41065,3.18734,6.73611,4.66536,4.991025,4.440005,4.279885,4.11189,3.780835,1.445525,1.647308,3.76499,4.564895,5.7304675000000005,2.484106666666667,4.920645,1.926975,3.4531333333333336,3.90045,1.8032254761904762,4.11585,4.78169,3.3971999999999998,3.671466666666667,2.675456666666667,4.453005,4.50798,3.4313333333333333,4.37986,4.431435,4.851165,4.257955,4.45261,4.06157,3.09194,4.313465,2.56065,3.2037566666666666,3.2037566666666666,4.304845,2.52028,3.88372,2.4796066666666667,4.36574,3.3733,3.640265,1.86935,1.8873866666666668,1.211265,1.211265,1.55386,3.3549,1.76431,2.718,4.02384,5.043194,3.1983266666666665,3.859615,5.9425,3.222565,2.82411,2.9985233333333334,1.5357833333333335,4.247685,3.956445,6.2622325,1.64986,5.1336,5.6263,3.4614333333333334,3.34293,4.196675,6.73955,1.9185366666666666,2.36855,3.958895,0.44943571428571427,3.66505,4.036245,4.26423,4.35655,2.88355,1.280874,1.6868960000000002,3.993975,3.17771,2.4494366666666667,3.822305,4.85551,5.1123,0.9910725,3.25371,4.89341,3.261555,4.603405,2.466153333333333,4.972926666666667,3.780085,1.595308,3.51354,1.2066716666666666,2.79088,7.0526816666666665,3.2953,0.6290727272727273,3.085655,4.057765,3.748105,1.6622325,1.6622325,5.1062,5.69895,2.911025,0.4937188888888888,1.9212075,4.448388333333334,4.28282,4.20506,1.7916979999999998,2.97571,3.396155,1.2494751315789472,1.2494751315789472,1.2494751315789472,0.7761467982456141,1.3345901315789472,0.5584433333333333,1.2494751315789472,0.7761467982456141,0.27956263157894734,0.8380059649122806,0.27956263157894734,0.49658416666666666,0.49658416666666666,0.49658416666666666,0.49658416666666666,1.0969841666666666,1.042465,2.382073333333333,2.3614766666666664,1.0983016666666667,6.427973333333333,2.6634233333333333,5.744448333333333,2.3554133333333334,3.64828,2.78567,3.46621,2.756205,4.49291,2.9026266666666665,3.965535,4.082335,4.315295,2.081475,3.926065,4.60292,4.14966,3.25521,4.76613,3.317,4.517255,5.4342,5.25875,6.2269,5.4252,1.05026375,4.7144,3.86999,2.91962,15.264589999999998,4.543045,5.258,2.7464600000000003,7.68033,4.026625,4.49738,4.97092,3.305105,1.0739825,2.44596,3.83801,4.23322,3.48818,3.46703,4.126745,2.9626533333333334,4.58729,4.706595,4.196175,6.585000000000001,7.176633333333333,1.3396142857142856,3.754285,3.97456,3.96514,3.545985,3.65379,7.12433,2.538025,2.849715,2.593125,3.980035,3.907895,4.507615,2.469225,1.7759275,0.8810520000000001,4.27076,3.42324,3.47792,4.01055,3.39521,4.949705,3.940585,6.41005,5.9493,4.955375,6.6366,3.79204,3.17992,3.187495,3.388735,1.869165,4.236055,5.74605,6.21935,5.6776333333333335,5.6776333333333335,2.5328,1.869165,1.89423,3.070675,0.6880700000000001,1.4906175,0.8025475,1.4458425,2.512785,0.383158,2.769665,4.158255,1.4458425,3.0322709999999997,10.893392500000001,6.46597,2.2802275,1.0201,1.6791733333333332,4.53648,4.332895,5.735075999999999,1.984515,2.20513,3.56439,3.41192,4.4883,1.8471866666666665,5.2994,3.5551666666666666,3.20471,5.1527,7.193376,3.865165,2.4236425,2.8033333333333332,1.6433733333333331,3.673465,5.308525,1.8156500000000002,5.6347,4.496175,5.96059,0.519784,4.481681666666667,4.40856,4.537985,2.64845,2.761745,7.3253,7.1637,6.56555,1.8929,1.8929,1.8929,4.359445,5.06715,6.33,3.26439,2.761425,2.542122894736842,4.534395,5.1948,2.6596715,1.98764,2.6596715,7.1799515,4.910726666666667,4.630305476190476,8.20062,4.630305476190476,4.630305476190476,3.4315371428571426,6.97807,5.651645,2.93404,2.93404,2.55595,7.1292,3.179995,3.506525,5.21752,5.21752,5.21752,7.711155,3.630205,3.427735,3.7031975,3.4933125,0.80937,7.635806666666667,2.72508,6.8231,3.547965,12.827915333333333,4.915335,5.4693275,6.81061,2.5904766666666665,3.49559,1.0918933333333334,5.4693275,3.42744,1.6770025,1.6770025,3.02923,5.29193,1.8328675,4.777443333333333,0.860858,1.4281433333333335,0.860858,1.94263,2.6937255,5.728958,3.33398,1.4281433333333335,2.98557,5.0638125,1.1266975,3.443695,4.52157,2.11198,4.071293333333333,2.291255,3.235025,3.00268,0.924256,3.844365,2.269135,2.159715,1.6559566666666665,3.1436566666666668,3.70515,2.54163,3.60243,1.4310666666666667,1.4310666666666667,1.4310666666666667,3.929265,2.9816033333333336,2.9816033333333336,2.58715,3.8839,2.3057233333333333,1.2694725,1.2694725,3.043305,4.687895,0.73203,1.3347566666666666,2.956035,1.270085,2.6048416666666667,0.924256,0.924256,1.890105,0.924256,3.2378616666666664,0.702805,3.2378616666666664,6.142133749999999,3.36978,2.520023333333333,1.8499570833333334,0.7756733333333333,2.6256304166666666,3.622495,2.6256304166666666,1.0114933333333334,3.3641,3.97753,3.83466,3.39899,2.532175,3.73964,1.9150366666666667,0.8173655555555555,0.44831,0.8173655555555555,0.3690555555555555,0.8173655555555555,0.8173655555555555,4.261645,4.420225,4.542665,3.512855,4.290355,4.332985,5.15925,3.457485,3.818795,1.3399442857142856,2.667,4.216246666666667,3.925935,1.40106,2.7674,3.929525,3.86384,4.0069,3.1842,4.070475,3.578655,3.29556,4.388955,2.198803333333333,6.06695,3.58227,3.62676,4.625682857142857,1.1062853571428573,1.974965,3.22734,5.9951,3.815235,3.34017,3.0238266666666664,4.126445,7.2512799999999995,2.95919,3.96793,2.7696,3.798115,4.07139,5.60495,5.48995,4.09107,3.13837,5.285,4.71434,3.5751000000000004,7.92005,3.186246666666667,2.2740725,2.27753,4.75968,6.43625,4.7623,4.972455,3.88278,4.751125,5.6212,0.5182461538461538,7.28598,4.59258,3.521605,3.646515,4.669065,4.004195,2.9568766666666666,2.40989,1.298505,0.57441,1.709412,3.1667533333333338,3.330295,3.586405,3.73226,3.943805,11.03912,3.78698,3.973645,3.06834,0.7233733333333333,5.423943333333333,3.491733333333333,1.5879333333333332,5.079666666666666,5.934758333333333,2.443025,8.85961,4.60029,2.232434,2.232434,2.232434,4.339245,8.93941,3.4341,2.5544,2.5544,3.63619,10.2084,1.02311,4.538895,4.33508,4.135125,2.7456866666666664,2.294313333333333,4.43584,3.93896,6.39965,6.082543333333334,3.92994,3.043055,3.87213,4.3808275000000005,3.262814,1.19312375,2.669283333333333,6.09547,3.2914475000000003,5.12325,0.9286025,3.6212999999999997,2.175213333333333,2.57533,1.7602625,1.8128366666666667,2.17013,5.62815,2.15307,4.487975,5.66115,1.761632,4.67653,3.804005,4.69614,3.1275933333333334,2.24638,2.74076,4.11553,4.064049166666667,4.064049166666667,1.2138325,1.6641633333333334,2.8304533333333333,4.431321333333333,2.2608889090909092,4.81535,1.77704,2.6626066666666666,1.9970299999999999,1.5903475,1.5903475,4.536525,7.363261666666667,1.8335033333333335,2.9432500000000004,2.23987,4.428905,3.15729,0.745896,2.873265,0.745896,2.67237,3.311105,5.4055,5.46205,3.849715,4.6194375,5.75885,2.353395,1.85856,2.984973333333333,2.224223333333333,6.12295,4.96443,2.485145,4.24965,2.78887,4.291395,1.0843925,1.168132,1.8275233333333334,1.30418,2.6349199999999997,2.858006666666667,2.2974166666666664,2.7792166666666667,2.85505,4.4536,2.5669666666666666,2.381536666666667,2.7367833333333333,2.37586,2.6615166666666665,2.6956399999999996,1.9989133333333333,2.543336666666667,4.088455,4.06307,3.083635,3.01098,2.82678,2.1811025,1.8606425,1.2161166666666667,0.2858325,0.1348032608695652,2.1336366666666664,1.8240999999999998,0.1348032608695652,3.5676290942028985,1.93823,0.1348032608695652,5.592013333333333,2.059616666666667,5.89851,3.40629,3.1607033333333336,2.5657866666666664,2.808856666666667,2.194185,4.372275,2.9088333333333334,3.2626333333333335,0.4077463157894737,4.061513333333333,2.6775796491228068,3.0308,1.899285,2.4237175,4.436615,2.27977,7.926385,5.0975,3.19695,3.808615,6.43698,6.37418,1.8526300000000002,4.1844075,2.087195,2.18497,6.32412,7.69063,1.0569066666666667,2.0741825,3.74864,2.5084,2.999105,3.063695,2.878605,4.26496,2.46821,3.098905,3.39621,3.21134,7.55234,1.3880466666666667,1.945725,2.94678,3.435955,1.7928966666666666,3.45927,1.41635,3.74665,3.318625,6.41412,3.358525,9.170455,3.38668,1.499406,1.7474800000000001,2.988845,5.72347,1.579215,1.53895,5.84155,3.50261,3.99991,2.722365,2.01355,3.1089,10.480075,5.2443,6.61542,3.510605,2.17272,2.13676,2.543065,3.015005,3.2798,1.6384083333333335,1.5791166666666667,2.49743,3.511765,1.796245,3.50664,2.560125,4.532845,3.81671,3.431025,1.144925,2.6345,1.1373266666666666,1.421156,1.65936,3.352115,3.37582,3.600635,2.70047,3.872125,3.999,2.840545,1.447194,3.52802,3.51215,3.1418,1.7562,2.96121,3.479695,1.4440175,3.44246,1.63131,4.13122,3.927165,4.681735,2.69579,3.919095,1.72135,3.31942,5.6928,1.715345,1.0929342857142859,3.525733333333333,2.71043,4.225355,4.256665,3.072705,4.481305,4.826645,2.3798866666666667,5.26225,5.4019225,6.70085,4.025795,6.094471333333333,4.010475,1.7337833333333332,2.6325766666666666,4.63068,4.639545,2.521856666666667,7.334158,1.20049,3.3552999999999997,2.149855,1.74618,2.411723333333333,2.7649666666666666,0.375955,2.8438733333333333,3.8808666666666665,3.63968,2.62306,3.33314,2.34509,2.48593,2.1713075,9.392135,4.959495,2.00128,5.0762,2.432395847826087,0.7366560769230768,2.6888400000000003,7.305305333333333,1.6864540000000001,4.50700625,6.254876666666666,1.777755,1.5882,1.3935475,3.54207,3.241255,4.41022,3.813355,2.40464,3.576415,0.8067740000000001,2.6717373333333336,4.23389,4.18748,4.81656,3.154955,4.956565,4.626815,4.11629,4.87106,5.515,4.630325,4.103785,5.463,1.6079160000000001,1.942145,2.771025,3.34434,1.1271222222222221,3.83303,2.14636,3.279863333333333,4.365895,3.2850466666666667,2.45612,1.5097533333333333,3.01113,2.781468333333333,2.7114266666666667,2.882,1.9800033333333333,2.1371575,2.32676,3.77869,4.502385,3.867965,4.74694,3.432645,2.338405,2.796075,4.994405,3.7596666666666665,4.6298,3.347885,2.30148,4.485081666666667,1.7412466666666668,4.140935,4.7994725,5.920755357142857,3.82386,4.352525,5.436,3.183196666666667,3.9219991666666667,4.38178,3.42808,3.8600424999999996,3.358555,1.42716,3.14885,1.749185,2.27946,4.704755,5.01702,3.8600424999999996,3.98028,3.40312,1.4611049999999999,3.48141,2.07085,2.3340033333333334,2.17705,2.744175,1.6499806060606061,1.6499806060606061,1.6499806060606061,0.5624972727272728,0.7600788888888889,2.1008322222222224,1.12626,3.656175,1.2564883333333332,3.96318,5.10895,4.20485,3.213685,4.067245,3.16707,5.00075,1.5409125,3.07296,2.74326,3.217575,5.928815,4.15358,5.30985,3.99864,1.0105175,2.476465,1.25585,3.79703,3.83309,4.172465,5.1035,4.675695,3.83373,4.422675,3.73968,1.72019,1.1876133333333334,5.577226666666666,1.0703455555555557,1.24306,2.6022533333333335,8.120725,3.105425,3.968615,3.1145,5.65264,1.702235,1.02608,1.47191,3.138205,3.526575,3.870845,3.678575,1.8907475,6.50018,2.919776666666667,0.91841125,4.721915,3.004656666666667,2.6667966666666665,2.3786066666666668,3.5395333333333334,5.877433333333333,2.56324,3.01924,3.500833333333333,2.4178533333333334,2.69412,2.930236666666667,2.653185,2.06636,4.688475,4.48336,4.857,1.047228888888889,0.742306,3.9267333333333334,2.7186466666666664,0.991695,2.6529266666666667,3.414005,4.15198,6.8547675,4.571125,3.5057333333333336,1.7607620000000002,3.480825,3.75062,2.72852,2.5252462857142857,3.93785,2.8478333333333334,4.866996,0.8846566666666666,2.88337,1.805392,3.61785,4.156195,1.82873,1.107915,3.0538,0.422994,3.368775,6.73435,5.0932,2.687272,1.428502,3.5391999999999997,0.7782944444444444,2.5692933333333334,0.7782944444444444,4.07255,4.24417,1.40843,1.819355,5.1878633333333335,1.9081233333333334,3.579745,2.58978,3.62473,1.25767,1.5846266666666666,4.00722,4.527115,5.1609,2.893192,2.81075,3.204925,1.6593575,2.201845,1.818065,1.8284875,4.61944,1.5059111111111112,1.5059111111111112,3.35927,4.721249333333334,8.247158333333333,5.005826666666667,7.834020000000001,2.29364,3.849635,4.046695,1.6470900000000002,3.577173333333333,4.018035,2.86255,5.21285,2.99152,2.38781,2.8703366666666668,3.828415,1.06827125,4.175675,4.438295,1.1492116666666667,7.992103333333333,2.841055,3.28271,3.6115283333333337,5.04265,4.94434,3.5462533333333335,2.52435,2.8218933333333336,2.05499,3.7213999999999996,2.33277,2.18627,7.198556,3.265636666666667,2.7824899999999997,4.345335,22.34109471611722,0.68314,2.74683,4.366885,4.3891,8.66255,4.62697,4.594915,4.55302,6.9949216666666665,3.5207,1.6109933333333333,4.6745616666666665,3.21937,1.2075879999999999,1.2075879999999999,1.2075879999999999,2.3561187500000003,1.66907,3.320315,1.582385,3.207955,1.38006,2.563555,2.44008,2.918395,1.582385,3.216265,2.639105,4.123853333333334,4.815548333333333,4.897365,0.7574908333333333,3.26965,2.83101,4.50766,3.480395,2.595845,2.4109375,1.7057125,2.3144575,1.451502,3.56241,1.6892025,4.440615,10.835462,2.70506,2.410145,4.724380833333333,4.731066666666666,4.4356333333333335,6.45925,2.269833333333333,5.443965833333333,4.575795,1.0834633333333332,1.1778942857142858,6.488397000000001,4.23781,2.384525,3.633215,1.882105,3.763755,4.838245,4.467,4.049225,1.29481,4.157315,4.70755,4.620285,6.287613,3.4931,5.2641,4.441165,4.493455,5.08795,3.530366666666667,4.95235,2.0700625,3.342285,3.111845,3.34518,4.22333,6.3692,4.33123,2.6971000000000003,3.4984333333333333,8.81389,4.558385,3.21252,3.490635,3.28565,4.475555,4.313625,4.545835,6.566656666666667,3.331205,2.73954,3.93951,2.449395,4.21632,2.22244,6.42481,1.64238,4.45107,4.521645,11.73655,0.5025742857142858,4.262455,4.905035,0.6419928571428571,3.65733,3.88057,3.988535,0.943621,4.830195,4.827773333333333,2.558946666666667,9.824121666666667,3.1923333333333335,1.9127333333333334,2.31755,3.51428,6.0047,0.5448350000000001,3.94311,2.0080525,5.3776,0.7175707692307692,4.254315,5.62625,6.0368,3.54736,6.3783674999999995,4.52972,3.47779625,2.5475166666666667,2.84948,4.26994,4.588035,4.967795,4.88078,5.48395,3.1977966666666666,6.702791666666666,2.796175,3.0750780000000004,1.9242625,4.255775,2.2446699999999997,1.62091,3.1756666666666664,2.92258,3.21626,3.395466666666667,3.6057666666666663,3.0812333333333335,2.4783433333333336,5.4484,3.133516666666667,3.80758,4.91671,2.5767266666666666,1.1488333333333332,2.9993366666666668,2.90112,3.76801,2.8391566666666663,3.15611,4.739046666666667,2.097586666666667,1.695195,3.0496,3.75732,4.3143,1.08872625,4.217235,3.26447,4.0329,2.9293566666666666,4.797332,3.954345,3.356325,4.08313,1.54679,3.812385,0.655725,4.55453,4.9636,16.686386666666667,2.920693333333333,1.1399783333333333,3.82468,0.6347471428571428,2.703425,4.45104,2.09719,1.2185114285714285,3.589165,4.45266,2.9894966666666662,0.7274333333333334,2.702175,7.92886,3.91234,5.51665,4.978125,5.22915,3.25136,3.7236,3.16592,7.220816666666666,4.009885,5.0239,2.105965,0.44414166666666666,2.315355,3.156045,2.28529,3.190745,3.641155,2.8989366666666663,4.811055,0.7117108333333334,4.588375,3.6913,3.07728,1.1650233333333333,2.754716666666667,1.9978133333333332,4.911735,3.89307,2.27488,1.6368428571428573,3.42059,4.31571,4.328485,6.148545,2.11649,4.711425,4.45893,3.836855,1.944582,3.868705,5.777238333333333,4.771995,2.587035,4.81829,2.79952,2.591255,3.867465,3.90101,1.355925,4.58638,2.06058,2.7234766666666665,5.134908333333334,5.134908333333334,5.21365,1.473956,4.915395,0.88579375,1.769258,5.0841,2.5205433333333334,1.4707433333333333,3.1482466666666666,0.84839,4.3003,4.905105,3.010175,4.970505,3.97775,3.794085,5.1102325,3.581785,3.6701,2.77491,2.40508,2.653975,2.89734,4.48342,1.7093124175824175,2.842643333333333,4.456975,4.603455,2.2669395833333335,4.296005,4.581195,4.927021666666667,3.4084333333333334,5.16295,4.86305,5.10545,4.83678,3.787105,3.669845,3.75949,4.41075,5.5216,4.703,4.90167,4.46019,4.541595,0.7156408333333334,4.989135,4.549595,3.86427,7.0426325,4.173065,3.76368,4.325685,4.74393,3.512525,3.49425,2.0709874999999998,4.495785,1.786955,1.3076785714285715,3.547835,2.0669166666666667,2.51202,3.7381406666666663,3.2924733333333336,2.878695,1.09466,1.9181225,4.5644,3.831325,1.868895,1.868895,3.358055,1.6064440000000002,3.1500833333333333,4.32394,3.513425,3.75913,1.4934933333333333,2.01225,3.4626725,2.014205,4.17402,4.486435,4.48586,3.93818,6.71408,2.618525,3.648945,4.530635,4.37112,3.3228866666666668,3.987605,3.928125,4.274535,2.119295,2.5063733333333333,4.363865,3.956525,3.666165,3.667575,1.6473675,3.85097,4.238885,4.55038,4.21797,3.9487725,3.9487725,3.059196666666667,3.975455,3.977285,3.892615,1.660276,7.2867725,3.944265,4.81071,4.28016,4.173465,3.811285,4.96747,2.979795,3.194025,2.783775,4.98519,1.8311119999999999,4.1286,5.451205555555555,5.1359,0.7051999999999999,4.793854166666667,1.17033,4.769385,4.55849,4.39693,4.059405,5.1993,3.7318,3.7318,0.848443,2.250615,4.756655,3.596665,3.919805,4.832365,5.4838,3.441745,4.232235,1.3603633333333331,2.651235,1.6868675,1.24716625,4.268913333333334,0.840818,2.57009,3.053976666666667,1.1993566666666666,2.1102075,2.6902500000000003,1.2862766666666667,6.37497,1.96614,2.4618266666666666,5.56595,1.8791425,2.797966666666667,2.760035,4.498245,3.7826,3.3965,3.9293333333333336,1.653742,2.1907550000000002,4.352585,0.6483307142857143,2.1358133333333336,2.3209733333333333,3.05379,2.8110199999999996,1.156572857142857,0.8314708333333334,2.4478966666666664,4.177445,1.1425642857142857,2.164675,1.2626975,5.517996666666667,2.215,5.09315,4.397935,4.22658,5.15035,5.31495,4.1069,4.155015,1.4024533333333336,3.9121666666666663,1.704482,2.4618100000000003,1.2036442857142855,4.27676,2.1023725,7.24316,4.257725,3.838925,1.444266,6.83246,3.43834,1.5687033333333333,4.07875,3.190615,3.85825,3.256535,1.9961725,1.9961725,3.255466666666667,1.2934566666666667,1.2934566666666667,1.944582,2.92407,2.1049625,1.3337783333333333,3.5790666666666664,1.067395,3.1865666666666663,2.3560425,1.8885925,1.5209916666666665,2.1732925,1.9778975,0.2867664705882353,2.45555,1.1878900000000001,2.2992033333333333,1.9970299999999999,2.4306,1.0419366666666667,1.1054439999999999,3.897933333333333,3.1190200000000003,1.9961725,1.76688,1.9975433333333334,2.5685533333333335,2.453186666666667,1.8681139999999998,3.16901,1.10806,3.2252466666666666,2.6959933333333335,2.586253333333333,1.55058,0.9695539999999999,2.46707,0.9695539999999999,2.46707,0.680495,0.680495,0.47276388888888893,2.24145,2.3760566666666665,0.680495,2.1855225,2.35982,2.3806,1.68304,0.7614277777777778,0.680495,0.680495,1.6656,1.6656,2.021045,1.76688,0.680495,2.2088200000000002,0.46308692307692306,3.07304,1.9643899999999999,2.4500699999999997,2.5904000000000003,2.5904000000000003,0.3801815,0.3801815,1.944582,1.992968,2.11248,1.975836,0.3801815,3.5210666666666666,2.41545,1.61729,0.61059875,1.61729,0.61059875,5.31684,2.5248466666666665,3.9981000000000004,2.5136966666666667,2.9237933333333337,3.08872,2.7519899999999997,3.5032,2.4333975,1.77216,2.66505,2.95919,2.3483033333333334,1.6656,2.5643844444444444,2.5643844444444444,2.77108,2.13321,4.246315,2.2625033333333335,3.2798033333333336,2.7312333333333334,1.522466,2.3397625,2.26607,0.7881681818181818,1.64882,3.771815,1.6525200000000002,3.15006,2.5383566666666666,2.6894,3.8884000000000003,1.5837583333333332,3.505266666666667,3.0949899999999997,4.1882,1.281674,0.2267134482758621,1.2834085714285715,1.2834085714285715,1.0013866666666666,2.925993333333333,3.8577333333333335,2.5463333333333336,2.157906666666667,2.157906666666667,2.1204725,1.63131,0.972161,1.6228433333333332,1.6228433333333332,0.680495,1.944582,2.86562,3.2258,2.3560425,2.19716,2.19716,2.19716,1.0786644444444444,1.4982142857142857,1.4982142857142857,2.4221775,2.8179833333333337,2.552608352272727,3.86296,2.4912433333333333,2.4464099999999998,3.522505,3.852345,6.5348175,3.669865,4.37651,3.9468,13.141169999999999,4.839955,3.547935,0.91796,3.864685,3.282955,2.33647,3.708745,4.96358,6.278672666666667,6.01705,0.4735264705882353,3.986095,3.035765,3.90547,2.4474675,4.39851,4.213545,3.999225,8.454865,3.69971,3.800285,3.908525,3.259182272727273,7.914023692307692,3.12059,2.6684900000000003,3.683135,4.01978,5.00725,3.850845,6.536944999999999,3.62426,1.386354,2.855645,0.9074525,4.64637,2.66422,2.54973,3.92621,3.149855,2.540965,4.63933,3.89915,7.955064999999999,4.058905,4.474598,2.308413333333333,4.98971,3.0365,0.8772475,0.8772475,3.45055,3.927215,2.209035,2.117695,4.06456,3.00577,2.90478,1.758035,1.8551,2.836375,2.4577233333333335,1.1128675,3.35615,4.853595,8.39124,1.559996,2.74847,3.09267,3.30436,2.7454433333333337,8.18926,4.16212,3.450833333333333,2.9476999999999998,3.977995,3.32996,2.8855866666666667,3.133736666666667,3.80782,3.750635,4.31588,3.81034,0.40308533333333335,1.4546066666666666,2.2565,1.7974225,4.53374,3.604745,2.6805833333333333,2.190835,4.56807,3.653004,2.0547775,2.519395,0.914818,2.0374325,2.4738266666666666,2.4738266666666666,5.1449,1.85212,2.8639766666666664,2.3311366666666666,2.0536366666666668,1.82362,3.298635,3.839155,5.0351,4.23275,5.02305,4.768665,2.81346,2.8919266666666665,2.05858,4.60933,5.346133333333333,1.9117466666666667,2.9947033333333333,2.1417675,2.3310633333333333,3.8760716666666664,2.42644,5.1166,3.859285,3.531115,4.27595,3.0344366666666667,3.61516,4.0005,2.26146,2.442363333333333,0.4122228571428571,3.8374333333333333,2.63478,2.957255,6.1693,4.750935,5.728377500000001,1.8910275,1.56179,3.164315,5.18025,6.36115,6.0397,2.989466666666667,2.2924533333333335,3.557555,2.2503699999999998,4.717335,2.1997133333333334,2.308295,5.3336,4.926755,4.401175,1.6555925,1.91105,1.078908,1.078908,1.041132,0.9309514285714285,0.806462,1.9578074285714284,4.4461,9.818083333333334,3.891625,4.290835,4.091025,5.8096975,2.720165,1.6797633333333335,3.43991,2.92355,4.70384,2.31009,2.4551266666666667,2.837206666666667,3.227563333333333,2.1900633333333333,3.19389,3.2611066666666666,3.0357533333333335,3.4502666666666664,3.3914000000000004,2.9282133333333333,2.6709566666666666,3.0238033333333334,2.3442133333333333,3.071146666666667,3.020576666666667,2.9791399999999997,3.3462333333333336,2.07674,5.443338285714286,3.0943133333333335,3.978738,3.18168,3.14705,3.6801333333333335,2.8066133333333334,2.7339533333333335,2.9974666666666665,3.1354066666666665,3.364266666666667,3.1081133333333333,1.9523675,2.688266666666667,2.701973333333333,2.879425,2.879425,3.345466666666667,3.0355266666666663,2.53464,2.7741900000000004,2.93556,4.2069,2.7660533333333333,2.708775,2.7237066666666667,2.8541600000000003,4.364190000000001,4.84096,1.5790066666666667,3.4358,3.8209666666666666,3.341806,3.2564166666666665,3.6264333333333334,3.4003333333333337,2.9789266666666667,3.368764,1.8935179999999998,2.8918475,3.4136,3.3723333333333336,2.548573333333333,2.4128966666666667,3.955033333333333,2.9501933333333334,3.076086666666667,2.3342675,1.1776366666666667,3.2171066666666666,2.679953333333333,1.9100066666666666,2.468685,3.0961533333333335,3.0541366666666665,1.94232,5.497148666666667,2.4127033333333334,0.890744,4.45838,1.84887125,1.64121,4.40514,4.06337,3.321745,2.34214,1.386785,3.35176,2.73657,2.70519,0.4126,2.12307,0.4126,1.9578,1.386785,2.619055,3.73314,2.3083275,3.2726,3.130065,0.4991426666666667,2.8475366666666666,0.985945,0.43789823529411764,3.75462,3.887585,4.919485,2.4490725,5.17815,4.16564,3.848225,2.33389,3.7860666666666667,1.630736,5.0958,2.3483,4.21422,4.418,2.9090233333333333,1.8300633333333334,2.0709233333333334,1.3437533333333331,1.8458,1.0275175,1.0275175,4.46568,2.2488566666666667,6.0506866666666665,2.1988525,2.18585,2.20511,2.2827789999999997,2.0069375,5.8016,4.1976575,2.19072,2.0481599999999998,2.2827789999999997,2.74831,3.835349,2.159425,5.415274999999999,2.1988525,3.3521075,3.26521,3.0590466666666667,5.6391,4.788155,1.9235825,2.056835,2.342585,2.411465,4.759625,5.35375,1.90878,3.829155,1.5357833333333335,1.5845675,5.32565,10.080376666666666,2.0568,2.12664,2.405136666666667,4.300995,4.165835,1.8173925,4.738805,4.54468,2.389865,39.30397739285715,2.80969,3.11257,0.4045711111111111,4.638633333333333,2.1586266666666667,0.9070344444444444,3.669425,3.53774,1.8722375,1.827085,2.337736666666667,3.6472,1.430842857142857,3.2683066666666667,3.53119,4.670155,0.905705,4.83343,5.0312,4.838925,2.779643333333333,1.5896675,3.8154825000000003,4.56689,3.735365,3.340005,3.652,3.78196,11.620437828282828,2.7502433333333336,3.0538,4.019185,2.56225,4.49868,3.35669,2.75306,3.09699,6.15181875,4.444455,4.97439,4.93171,2.53116,3.6972,4.245455,3.68371,4.668845,4.549585,0.1222032608695652,2.44853,5.4615,2.80178,1.5752366666666668,1.156875,1.156875,2.438895,2.756885,2.579315,1.8037299999999998,2.96088,4.3946,2.68105,4.517478333333333,0.5767635714285715,4.538175,3.58941,4.725395,4.67735,4.644955,1.16435375,1.06540625,4.2627,2.9073499999999997,3.04134,3.782984666666666,4.009205,5.9856625,5.47155,3.9146,3.4748,2.16167,1.49082,4.45553,0.31522066666666665,3.32865,3.80071,4.05035,14.27534,1.9562750000000002,3.281193333333333,0.734805,4.613665,8.65746,3.37012,1.64179,5.82085,3.2598866666666666,1.0479166666666666,4.926585,2.872665,2.799995,4.78971,3.4371571944444446,0.98847375,7.400891666666666,0.74622375,5.1768,3.2179034444444445,1.39477,2.100651527777778,3.28184,3.28184,3.90037,4.345299416666666,1.3579875,2.433135,2.79868,3.715665,3.17868,2.62538,3.149795,3.43703,6.8292633333333335,6.31395,4.04031,3.34477,4.640575,4.728465,3.64254,3.535335,3.608795,3.933185,4.32388,2.5258533333333335,2.61468,1.64915,2.2981266666666667,2.248865,1.559225,2.844393333333333,3.6095333333333333,3.585733333333333,3.1943066666666664,2.55833,1.5097866666666666,1.6775933333333333,0.46062454545454545,2.407556666666667,1.6665428571428573,2.0130125,3.5102333333333333,2.4654666666666665,2.5874433333333333,1.00066625,2.2431825,2.613735,2.972075,3.62446,5.4606,3.910985,3.07307,2.2565833333333334,3.35921,4.34386,2.394525,3.72547,1.834765,3.860685,2.775115,3.976425,1.3472666666666668,0.6179330000000001,2.32684,3.318435,3.17191,3.986435,4.8257200000000005,8.958895,3.2330166666666664,2.3292533333333334,1.8914499999999999,1.756944,1.756944,2.881883333333333,2.44407,4.939305,4.55311,3.575475,5.10625,4.32841,4.189205,3.2096108333333335,4.351865,8.0064625,2.4782225,0.499719375,3.3261066666666665,1.31954,1.0336528571428572,2.057733333333333,0.808088,2.1138825,5.40925,4.872205,5.9387825,0.9880325,7.10902,1.957252,1.543925,2.4264,4.175205,3.305676666666667,2.402575,3.60946,3.092,4.301833333333334,2.875723333333333,2.7615766666666666,2.9645733333333335,6.638075,2.522265,3.93395,3.7614083333333332,3.5605041666666666,1.3657266666666665,1.273435,4.320225,2.7840833333333332,3.1466133333333333,5.4347650000000005,2.824805,2.100645,2.3611625,3.110075,3.7872333333333335,2.2786933333333335,3.8620975,3.0645866666666666,5.54885,2.453392083333333,1.8928875,4.755345,5.2885,4.58925,3.97588,1.5345133333333332,2.2546075,1.9281575,3.31205,1.5877999999999999,1.0393766666666666,2.811214166666667,2.1514925,1.949925,4.361135,0.69471,5.7186225,1.4350925,0.7947500000000001,3.5470333333333333,4.08654,0.6752728571428571,3.2413144999999997,3.1809475000000003,0.8314708333333334,4.438105,0.18338238095238096,0.18338238095238096,0.18338238095238096,0.18338238095238096,0.18338238095238096,0.18338238095238096,1.9242439999999998,3.911285,1.9242439999999998,1.9242439999999998,1.8083666666666665,0.18338238095238096,0.18338238095238096,3.3503000000000003,2.5166633333333333,3.516175,3.252215,2.26572,3.551775,1.3429685714285713,1.618122,3.262814,1.359656,2.636276666666667,2.6213686666666667,5.867170000000001,4.057755,4.092235,6.62495,4.34258,4.779235,3.586065,3.86978,7.1578375,3.8633,3.733166666666667,2.3553566666666668,5.414686666666667,2.5846933333333335,2.00606,1.8058500000000002,4.62532,5.30065,5.2367,5.17965,5.5831,4.32699,4.59178,0.7423009090909091,0.7137564285714285,0.7137564285714285,4.63126,2.3301166666666666,3.796635,1.0653985714285714,4.48718,1.4673571428571428,2.34375,2.554,4.477566666666667,4.477566666666667,6.84545,4.52126,1.3198433333333333,9.51692,2.8865166666666666,1.2347444444444444,4.93599,5.11925,3.664715,3.10933,2.669135,4.208433333333333,0.8192533333333334,3.291256666666667,3.2008500000000004,3.8055,3.1462033333333337,1.5495266666666667,1.4162466666666667,4.875310833333334,3.1858466666666665,3.126856666666667,3.4516333333333336,5.350983333333334,3.3708508333333334,0.785999,1.7566833333333334,3.582933333333333,2.2627249999999997,3.767633333333333,3.4693,3.0793466666666665,3.4213666666666662,3.0307666666666666,2.5568966666666664,0.8617766666666666,3.07573,2.358913333333333,3.43115,3.071415,3.86282,2.6685033333333332,3.3188166666666667,2.88625,1.580418,1.8757433333333333,2.672981904761905,3.5901,1.780398,3.2711799999999998,1.8188833333333332,3.7576666666666667,5.274067499999999,4.706727333333333,2.531725,2.5563,2.868375,2.3945425,1.6019285714285714,2.27858,3.2888078571428574,2.3474225,3.567066666666667,2.91459,3.6556006666666665,3.03269,1.3152666666666668,1.3157525,1.78162,2.1823025,2.917123333333333,3.415433333333333,5.05,7.811975,2.688625,5.32045,3.73452,15.451902333333333,0.48131250000000003,10.961385,0.8462177777777778,3.14641,2.8808433333333334,2.3173566666666665,2.95522,1.594818,1.447194,2.346153333333333,1.239674,2.9133153333333333,2.0038733333333334,2.80822,2.1672966666666666,2.6791133333333335,1.5766133333333334,0.5986775,3.1337499999999996,2.4153333333333333,3.02112,1.0786644444444444,3.516833333333333,0.7278233333333333,0.3600946153846154,1.9035233333333332,4.53,4.66592,4.561205,0.7528754545454546,3.97786,4.55549,1.149055,2.19973,5.135373333333333,3.49586,3.79286,3.963275,3.91449,1.956435,3.82487,2.66179,2.847425,3.562435,2.76899,2.615015,3.835355,3.232985,3.54578,2.28241,3.40409,4.500665,1.3032133333333333,4.6398,2.20975,4.236985,5.3171333333333335,1.99429,2.7622466666666665,2.9139199999999996,5.773108333333333,2.482536666666667,3.15979,5.0382,3.9981000000000004,4.06015,2.0372666666666666,2.764625,4.458585,3.5469000000000004,3.797955,3.6219333333333332,3.1306499999999997,2.9329,3.781,3.152476666666667,2.6361399999999997,2.6630033333333336,0.43234388888888886,2.35586,2.1382,4.535925,4.785035,3.030836666666667,2.6970466666666666,3.1983599999999996,8.33712,3.53852875,3.923125,2.9969466666666666,3.958805,3.0948,3.629335,2.8424066666666667,2.145635,2.712756666666667,6.35905,4.606,2.1679133333333334,3.358525,2.986985,2.72964,4.511848666666667,1.7352139999999998,6.015596666666666,4.0657,4.87304,4.51662,6.48475,3.64998,6.691898333333333,3.64442,3.266915,0.632815,2.1566975,1.5554825,2.99082,3.024545,4.047235,3.95409,5.3714,2.6525933333333334,4.616665,3.739433333333333,3.8723333333333336,3.3608333333333333,4.61069,4.546565,4.59279,2.8522433333333335,5.574596666666666,4.4704,1.448995,5.3981,3.60245,2.765485,2.23489,2.3610366666666667,4.487832666666667,1.2757871428571428,2.57577,1.9879,3.905625,4.25736,2.5314633333333334,3.3634,3.0138966666666667,2.4062,4.036455,1.346398,2.37234,2.3768766666666665,2.85196,2.4911933333333334,2.6584833333333333,2.703656666666667,3.994,2.97568,2.8530366666666667,3.95328,2.351415,3.69982,3.617835,1.6169116666666667,1.6169116666666667,4.492,2.7880333333333334,1.761995,1.3618875,2.0538175,1.9930925,1.3352460000000002,1.4431900000000002,0.649299,1.5475166666666667,1.43678,2.921336666666667,2.233373333333333,1.7537366666666667,2.01029,2.2988133333333334,1.5008033333333335,1.704,1.8351566666666665,2.5091,3.696085,2.96559,2.886556666666667,2.650125,5.517525,2.8674,4.27535,3.9897283333333338,2.065675,3.94695,2.82721,1.964855,3.639785,1.58356,2.953445,3.659675,1.88747,4.43716,3.685505,4.22663,3.33044,0.8081322222222221,4.83845,3.85472,3.25159,3.744835,2.3164266666666666,4.408415,4.812045,4.9054525,9.055946666666667,3.579765,4.363015,2.91919,3.57934,4.54883,2.139125,2.78252,3.87019,2.1532525,5.780695,1.867514,2.76863,5.359581666666666,2.82839,4.295342,1.25132,4.15533,4.33746,2.9574366666666667,4.704875,4.76288,6.173473,15.811539880952381,0.6495882352941176,1.0419366666666667,3.0225566666666666,3.82492,3.542705,2.118825,3.227805,4.046505,4.91764,2.50778,4.506915,1.7688833333333334,1.7688833333333334,5.22785,0.7618618181818182,1.744634,3.121105,3.95382,0.37569153846153847,1.9954866666666666,3.95778225,1.1705966666666667,3.046443333333333,2.75521,2.976905,7.86432,2.532826666666667,3.7240333333333333,1.9460066666666667,2.263063333333333,3.8491375,3.439155,3.51654,7.062190166666666,1.9203775,2.7454,4.456285,6.705164999999999,1.89225,2.3221233333333333,2.616006666666667,1.3949133333333332,2.511445,1.66935375,3.896055,3.84645,1.522905,1.8371943333333334,1.8371943333333334,2.84525,5.48235,3.9546883333333334,3.913805,4.30634,4.265925,3.16444,3.7132,4.452525,3.511715,4.542071666666667,3.7176875000000003,4.49002,0.896631,0.362254375,5.35825,3.85508,2.4317966666666666,7.90942,1.5255166666666666,4.7571,4.23471,0.34099250000000003,2.0547066666666667,1.30285,1.8546333333333334,2.0899666666666668,5.423792,3.00101,3.150015,4.8158175,5.23985,4.617255,0.5891630769230769,2.03807,0.600704,5.698691666666667,1.433752,4.97905,1.9938475,3.1631400000000003,3.32453,4.1443,3.976435,5.3097,0.8419027272727273,3.27197,4.222605,2.0577275,1.73066,3.65984,3.03133,3.608445,3.85543125,5.263952380952381,4.603715,5.54415,2.71506,0.5451777777777778,3.3863333333333334,3.693335,0.5465392307692307,3.967505,3.811135,4.17178,3.336805,2.6915999999999998,4.90652,3.100555,3.1048,2.162325,3.72502,1.58271,3.21058,3.86387,0.5545307692307693,3.52526,3.789115,3.27526,3.69246,4.33006,2.676485,3.8893,0.633598,2.9954966666666665,3.6583711111111112,4.630555,3.638033333333333,2.4845875,3.4865333333333335,2.4845875,4.72581,3.0451,3.03149,1.5589199999999999,3.120276666666667,1.847035,4.28187,2.795783333333333,5.126860000000001,3.08013,2.7928433333333333,2.9632166666666664,2.432983214285714,2.432983214285714,2.432983214285714,2.2439666666666667,1.1450850000000001,4.530115,2.3791966666666666,1.6646933333333334,4.0906666666666665,2.45932,2.9907166666666662,4.06503,5.59695,3.465005,1.86453,1.064468,4.08606,1.9530239999999999,2.17952,3.149245,3.255195,2.0972025,3.34348,2.81126,1.5585499999999999,4.897285,4.066155,4.109665,3.700835,0.7498688888888889,2.40444,4.33081,7.64659,3.891815,3.06502,3.31083,3.51994,3.766815,1.64379,2.440435,4.515085,2.1344025,4.341475,3.470875,5.58515,8.563296666666666,4.20807,3.372735,2.941625,4.782605,4.050195,3.1990625,3.1990625,3.799725,4.004438333333333,4.204215,4.014825,4.237625,4.5596,4.012835,1.09282,4.27951,4.352485,5.3417,7.798145,5.00875,3.805034,1.91883,1.5139866666666668,2.44846125,4.91191,3.837445,5.15886,2.2221800000000003,4.407555,5.0585,5.20625,4.73615,2.9979133333333334,3.45434,4.12795,5.1192,4.520045,3.82333,6.5422883333333335,4.78184,2.2347533333333334,5.1357,3.991715,3.931085,3.7802,4.397155,0.7742990909090909,4.14704,4.407575,1.1935185714285714,1.182988,4.71812,4.740445,8.7993555,5.0358,4.420355,5.9263,2.958545,2.5585533333333332,5.01075,1.6887975,1.6887975,2.649735,1.6572033333333334,3.023995833333333,3.2577433333333334,1.9607,4.172691363636364,1.4331966666666667,2.08193,5.48803,3.5268966666666666,3.53725,2.95706,4.043035,3.98075,2.9528766666666666,1.0397955555555556,4.075745,2.96487,3.962645,4.17804,3.68434,5.3904,4.658655,4.46917,3.68298,5.1704,6.46785,4.675675,3.30594,3.358175,2.06684,2.06684,3.882025,3.828075,2.580293333333333,2.7466866666666667,2.0998839393939397,2.6119333333333334,1.6724833333333333,1.6724833333333333,4.278595,3.453495,2.13884,3.61235,2.799125,1.94896,1.1868575,1.0111977777777779,2.82181,0.4393652631578947,0.8643233333333333,2.75124,3.749045,0.43494818181818184,3.86686,1.9279,5.35255,3.37916,7.25786,4.25929,5.240566666666666,4.76227,5.4433,4.09371,1.90907,1.86966,3.746485,2.94663,3.90621,1.2890633333333332,3.172965,4.179685,2.66533,2.684335,2.4836,4.26669,3.28927,3.095785,3.870605,3.662,3.17767,3.12203,1.06427,1.867215,2.24612,2.82329,4.310175,7.54341,0.924952,1.5854633333333332,1.5854633333333332,1.860746,3.907065,2.80981,3.02202,5.40041,2.905836666666667,1.0476525,1.0476525,1.0476525,2.92818,3.0322709999999997,4.96914,3.17604,4.25945,3.286135,3.649335,2.965275,3.2182141666666664,3.639435,4.063700000000001,2.89453,1.3352460000000002,2.39248,2.89453,3.45435,1.3536599999999999,1.8183166666666668,1.8794675,5.469053333333333,2.66158,5.8865099999999995,5.469053333333333,3.2249299999999996,1.7346666666666666,1.7346666666666666,2.73366,6.45933,1.7346666666666666,2.46388,5.73377,2.206425,2.895395,4.71897,3.34996,3.94057,2.0496233333333334,3.34909,4.58046,2.075806666666667,2.28759,3.73523,2.0496233333333334,2.68836,1.895485,5.85705,2.64421,1.15574,2.57633,3.27537,3.1827753333333333,2.04048,2.0217519999999998,3.91181,1.8550053333333332,1.57373,3.239475,2.15935,3.227745,3.21229,2.17623,2.431915,2.42408,6.52898,2.39843,3.20948,3.138655,3.138655,9.025656666666666,0.9041166666666666,3.144675,2.572225,3.24031,2.292955,1.1787633333333334,1.1787633333333334,3.60783,2.15546,7.220885,2.282865,3.302465,2.8357,6.39616,2.487395,2.394585,5.74038,5.74038,2.34947,1.5509825,1.33242,1.33242,1.5509825,1.9869566666666667,1.24379,1.2148883333333333,1.5966699999999998,1.89269,3.620715,1.61213,3.98387,3.064615,2.507535,2.73325,2.908115,2.4347,3.2597000000000005,3.2597000000000005,5.97547,2.298145,2.982395,3.200445,3.014875,2.544025,2.77619,2.59295,4.9300825,1.6315325,1.5266396666666666,1.3493613333333334,2.230503,5.16831,4.122049666666667,3.476551666666667,3.34248,1.6033825,1.6033825,1.6033825,4.70133,2.388755,1.2148883333333333,3.19417,3.59082,1.26831,5.2654825,2.9569525,6.91997,3.56127,1.797105,3.505225,2.3778633333333334,2.151015,3.88093,4.58263,2.95795,1.58526,2.00876,2.40418,3.005845,5.38396,2.12947,3.306475,2.410255,6.05997,4.60808,2.22924,2.44972,5.40296,5.1287,5.22243,6.01499,0.978902,0.978902,3.294615,3.294615,0.9257799999999999,4.75174,3.67531,4.76952,4.53899,4.50927,2.248565,4.393671666666666,4.393671666666666,2.110345,3.371215,3.14013,1.214572,4.27028,3.185135,3.064325,2.66846,4.50362,2.40512,1.855885,3.18157,2.92984,2.973925,5.08724,2.6774,1.758955,3.649685,5.8885,5.46558,4.27308,2.57371,3.36967,2.675295,5.15262,2.665925,3.50632,2.261085,6.69353,4.86788,2.339345,2.44207,3.00315,4.83825,2.243285,2.8286,2.674035,7.36639,4.57257,3.35965,2.38533,2.003775,6.55189,2.54638,3.10824,5.74573,2.91082,2.989855,2.717725,2.70613,1.8649466666666665,1.950435,1.86982,1.59364,1.7768933333333334,1.9902766666666667,1.65936,2.0095733333333334,1.887445,1.8649466666666665,4.25669,4.0115,1.986965,1.8847975,1.8847975,3.6229633333333338,3.6229633333333338,2.9328,2.9328,2.601175,2.574095,1.76774,4.15577,2.2016925,2.2016925,2.340765,2.340765,2.90347,1.98623,4.54626,2.296215,3.111345,2.0595433333333335,2.0595433333333335,1.545745,3.59183,4.62629,1.3536599999999999,4.39077,2.17623,2.0579,4.21054,3.233515,1.819245,2.25041,6.85034,2.227775,5.78763,3.24904,3.27377,2.98542,2.8578,6.21452,3.04041,2.105065,2.474280769230769,2.75421,5.70232,3.62096,1.52918,1.52918,4.14578,4.46394,4.9181,5.63069,2.66544,2.882015,1.68484,2.97216,1.651505,2.83053,1.876445,0.70019,0.70019,0.70019,2.0023316666666666,4.947186666666667,2.0023316666666666,2.373855,3.702805,1.610455,2.090335,4.23419,3.75447,5.29611,1.5092733333333335,4.80445,1.5092733333333335,1.5092733333333335,2.181015,1.821775,1.545715,5.72238,1.545715,2.52793,4.30951,1.867535,1.94308,2.645385,2.9192699999999996,3.262715,3.10986,3.464435,1.297765,3.87048,0.7335609090909091,4.17998,4.26938,2.5443100000000003,2.5443100000000003,0.6988154545454545,3.936833333333333,2.6775366666666667,5.66495,5.034,4.090525,5.35475,4.12781,4.07739,5.1815,4.25767,4.29019,3.616885,3.89041,5.0018,5.0055,3.398825,3.371575,4.16974,2.3863166666666666,1.2124000000000001,4.46012,3.502695,3.3545,1.2496657142857142,3.76002,3.917105,6.2434525,1.1449525,5.33895,4.225555,2.055885,1.9122,3.216965,3.600855,1.70915,1.52918,3.90486,4.58092,2.63893,4.735915,3.164575,1.11572,2.9607500000000004,1.1863585714285716,3.1447233333333333,1.9458900000000001,3.1311633333333333,1.8984575,2.6263566666666667,4.010475,3.014015,4.44773,3.286075,2.2013125,4.79712,4.41106,3.13015,5.55925,4.31026,2.6920066666666664,5.9928,4.87668,3.138975,2.591416666666667,3.666175,2.983826666666667,3.1548533333333335,2.61844,4.861785,4.21303,3.839405,2.4014966666666666,2.67893,2.4391833333333333,2.4121366666666666,2.22322,2.327993333333333,2.2286266666666665,2.354365,1.3734525,2.9909263333333334,1.1262325,1.752135,1.7420175,2.71245,1.6323,1.8174075,3.845105,3.950845,1.95795,4.056535,3.60919,6.397398333333333,2.0679233333333333,1.6045079999999998,6.58395,3.489475,4.596945,4.008705,3.901375,2.233495,3.669145,2.39268,3.001865,4.29909,0.7294166666666667,4.004155,2.1473533333333332,0.7579872727272726,4.78641,4.360805,4.044705,1.82826875,4.75947,5.8436,2.6877066666666667,3.01742,2.5022433333333334,2.1164666666666667,0.588256,3.072096666666667,2.8372,4.75643,2.3803625,2.084025,3.505475,1.0656825,1.8101533333333335,1.8101533333333335,2.78619,1.8101533333333335,4.074,2.83211,4.362855,4.39237,5.8648,13.281230833333334,3.0804333333333336,4.64097,2.6371,4.68388,3.2799,6.3287925,2.829166666666667,4.722025,4.73791,3.800725,1.132875,4.7802,3.186173333333333,2.473386666666667,0.9704955555555556,2.191215,3.2925,7.067886666666666,4.33278,2.92407,4.517775,3.255466666666667,4.11088,4.221835,4.529285,3.002675,2.8968566666666664,3.916415,5.6609,2.528955,4.26209,1.7970275,1.7970275,3.14579,4.942405,1.20204125,4.004967333333333,2.1037525,4.743925,2.544773333333333,2.638316666666667,3.0529566666666668,2.2999566666666666,0.7327214285714286,3.476285,2.7689733333333333,5.56985,4.50555,0.23092875,5.0527,4.391295,4.190635,6.632788333333334,2.9574700000000003,2.905193333333333,2.1996366666666667,2.96761,2.7168799999999997,1.3078133333333333,2.8963433333333337,2.57883,1.3783466666666666,3.400933333333333,3.003363333333333,2.5271,2.821096666666667,1.2870766666666666,4.2429,2.61092,5.1793,3.90028,3.651445,1.6460299999999999,2.447693333333333,1.299495,2.01603,1.299495,5.1356,3.376,1.503444,2.4697825,4.17546,3.83627,3.01124,3.89244,0.3554485,1.3513437499999998,3.8971,4.25533,6.1632,1.99855,2.74637,3.0595499999999998,2.2652366666666666,2.72386,3.519885,4.73228,2.49143,2.169023333333333,2.7154666666666665,2.6281,2.638716666666667,4.18929,2.28919,4.42165,3.78427,6.0379,7.6515425,0.7594211111111111,0.804902,4.205615,6.60748,2.02926,3.571915,1.4772766666666666,1.4772766666666666,3.45814,0.4454055555555556,3.54723,3.70474,2.835695,4.0746,3.268785,2.572805,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,0.23717133333333335,2.384085,3.009245,3.7944733333333334,2.947973333333333,4.197525,5.7088358333333336,3.099695,1.9197499999999998,0.9493783333333333,3.47324,0.7332125,5.3212575,3.4015075,2.34252,0.7332125,2.345875,2.691585,0.785575,3.8255375000000003,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,0.1589231111111111,4.19765,1.57803,4.75488,4.540805,1.685154,4.865305,4.13087,5.26525,4.637268333333333,3.4406375000000002,3.420075,4.387025,1.95665,5.7987,4.351575,0.7457142857142857,1.4302285714285714,1.29379,3.19369,3.19369,2.961756666666667,3.857485,4.23027,3.56605,3.996495,2.8557466666666667,2.000176666666667,0.46296857142857145,4.12171,3.313645,2.668385,4.303195,3.289755,3.09568375,4.95571,4.44572,6.7099475,4.17638,4.83351,5.7479,4.36622,1.27036,2.974025,5.249336666666666,33.20355998953824,1.2355066666666665,4.22111,2.917735,4.500325,3.920015,5.27205,5.01355,0.424812380952381,5.29015,4.44482,1.9530225,1.977295,3.87807,1.579215,2.48139,2.26995,1.7165625,2.90625,2.453186666666667,2.780995,2.75129,0.5965576923076923,3.132925,3.840175,0.37825263157894734,2.5322833333333334,2.76849,2.891685,3.891415,1.830285,4.259465,4.002555,3.24484,3.51697,3.089705,4.054985,3.030685,3.85628,2.1523875,5.249336666666666,3.49321,3.290895,2.841185,1.7178280000000001,3.859255,3.629035,6.804585,3.3721,4.74523,6.19862,5.278028,2.28609,4.40155,5.905822499999999,7.754149999999999,2.54232,2.53059,4.683975,5.5308600000000006,4.059235,3.046995,5.26937,2.71285,1.7327975,2.181805,59.900690162968694,5.2198,4.18675,2.587375,0.821059,2.62831,2.9937466666666666,3.4233666666666664,0.8154966666666668,4.47335,0.7702411111111112,7.5695575,1.9530239999999999,3.3691999999999998,1.775676,2.605715,2.5114466666666666,3.151393333333333,2.4705966666666668,2.3200600000000002,3.3831,1.5372033333333333,5.312674166666667,3.7359666666666667,1.5767075,2.8423466666666664,1.3219,1.5015625,7.5195,6.0966,3.416775,3.96504,5.348190000000001,1.3933414285714285,3.4935333333333336,3.22045,1.79272,5.57775,3.530425,3.88598,1.61064,2.8897225,3.4827,3.966475,5.71615,4.227335,4.425105,2.52315,3.891265,4.4608,2.9606399999999997,1.39951,4.20848,3.3693000000000004,4.172315,4.9365,3.924615,3.56991,4.475835,4.354015,4.23882,4.507465,4.077425,3.2231466666666666,3.87221,4.179205,3.223195,4.096925,3.797015,1.7192224999999999,1.7192224999999999,4.253595,4.868915,5.0395,3.600325,4.73856,3.3678000000000003,2.748525,4.53196,5.2868,0.7077818181818182,5.4333,6.4915275,5.5309,5.64425,1.0488744444444444,3.249365,0.9505466666666668,0.9505466666666668,0.9505466666666668,3.681535,3.448366666666667,2.6573033333333336,3.425133333333333,0.9683379999999999,5.08205,5.3898,2.97067,1.628605,2.083855,4.04514,3.719725,3.822345,3.476584,6.7944,3.593535,2.5262766666666665,4.72941,6.86885,2.480015,4.23086,3.858715,3.178405,5.37425,4.103055,5.03185,6.02865,3.04124,3.6701188888888887,2.10892,2.10892,0.7038572727272727,8.357082,2.09671,5.7997,5.65005,4.09182,5.63065,3.80843,2.9169566666666666,4.64877,7.580965,5.665556666666666,2.5632533333333334,4.3992,0.9804830000000001,3.82511,1.96235,0.8720577777777777,1.2019900000000001,2.59389,2.9686566666666665,2.8519133333333335,1.103457142857143,2.5305733333333333,3.0441366666666667,0.8930366666666667,2.759486666666667,3.11415,1.686048,1.7793880000000002,2.9639,2.9865999999999997,2.7987800000000003,2.45844,1.72296,5.17815,4.350775,3.95722,4.41314,5.2154,3.23193,4.34188,6.33895,5.0786,4.393485,3.86273,10.292231666666666,8.713275,2.87659,3.435185,1.9002266666666667,3.81698,3.34656,4.62401,1.0078016666666667,3.57226,3.395375,1.6104266666666665,3.945585,2.89763,4.345455,2.54882,3.922315,6.26395,7.851286666666667,3.93594,1.5250033333333333,1.5250033333333333,1.5250033333333333,4.703505,1.1796933333333333,1.4613125,0.45473500000000006,4.1650833333333335,2.936783333333333,3.647235,0.9812939999999999,1.16720125,2.98274,4.26817,3.61743,16.53680769047619,4.18594,4.51061,5.8997625000000005,2.727703333333333,3.49181,3.262405,0.9219355555555556,1.34662,3.806945,3.61844,4.495985,4.690195,4.3326,3.903755,2.7123484444444443,3.437525,5.2184,0.5406799999999999,4.58727,2.2944375,4.005025,4.855755,3.489933333333333,2.4541166666666667,4.068843333333333,1.9254666666666667,3.587095,6.23325,3.098883333333333,3.599725,4.302015,4.13916,4.56146,3.9229,3.32937,4.09798,4.7945,4.810305,3.49449,4.47391,3.85969,1.1180885714285715,1.4736825,5.925503166666667,6.2088,4.043165,4.89319,2.496915,2.742566666666667,2.8124966666666666,5.479723333333333,1.8788675,1.906575,2.8889899999999997,3.02556,3.2087800000000004,4.511185,3.19828,4.788953333333334,1.1490525,4.63211,0.9904683333333333,4.06393,3.31374,1.695123333333333,4.680015,0.9408566666666667,4.946125,5.68245,4.99818,4.0196,3.8056166666666664,3.87694,3.006373333333333,5.0895,5.8972,2.833866,4.011365,2.417475,2.60335,1.996175,2.6143,3.22632,5.0076,1.067395,4.4873825,1.3011625,3.34821,1.62733,1.067395,0.19878945945945944,3.740105,2.996175,2.2915675,2.0285333333333333,2.69957,1.0776175,3.991695,3.64577,4.826825,2.6034666666666664,6.1149,6.4162175,2.695766666666667,3.4583666666666666,2.64364,0.788924,2.39128,6.101,3.97021,5.6542,4.736445,2.11044,1.1908933333333334,3.964295,1.60921,2.2453375,1.76853,2.612675,1.6751425,1.920985,2.059895,2.088,1.860975,1.4218557142857142,1.3710325,1.9335725,1.809005,2.1756175,2.3128866666666665,0.535712,1.0376400000000001,2.907833333333333,3.28093,1.96614,1.9382400000000002,1.5796675,3.584055,2.223946666666667,2.65081,3.028155,5.7035,3.697765,2.991896666666667,4.164805,1.6217367647058825,3.7559075,23.274622,4.666873333333333,5.9522,4.105155,2.5393733333333333,3.956455,4.72014,2.27398,5.04145,3.2193666666666663,0.78405125,3.089555,4.472255,3.785685,4.112475,1.54248,2.041113333333333,2.466813333333333,2.274685,1.5133285714285714,3.3524,4.963685,4.273475,3.331065,3.82907,4.93398,3.508345,4.670835,1.239405,3.20024,4.174665,5.01215,1.8272400000000002,3.3211166666666667,1.7949362500000001,1.7949362500000001,3.56618,4.774645,2.84001,2.9683466666666667,3.89724,3.78437,6.644309999999999,4.74551,2.272585,1.34662,2.79503,4.30405,3.1865666666666663,2.5643844444444444,2.5643844444444444,3.2663533333333334,4.91871,3.71831,5.1854177777777775,2.231025,3.2984006666666668,0.6266633333333333,0.6266633333333333,0.6266633333333333,3.488795,3.79578,3.931451666666667,5.69935,2.1371575,4.52138,5.1774,4.809055,3.303425,5.5603,2.689055,1.3064285714285713,4.077175,3.846775,0.472045,4.163566666666667,4.70937,1.4387616666666665,4.91455,5.1727,4.672915,4.37924,3.67281,2.85256,4.298585,1.6997779999999998,4.337375,1.5051383333333332,4.147755,5.9292,1.1165925,2.941115,6.795645,3.75573,3.1434599999999997,2.18909,3.74337,5.7618,3.009793333333333,7.836145,4.1221,2.20567,3.0594933333333336,2.7469466666666666,2.5431766666666666,2.7260233333333335,1.8797,4.544895,0.60787,1.88577,1.88577,3.071195,3.68288,2.2812175,2.99442,4.088575,5.2215,4.36208,1.40881,4.479075547619048,4.281785,4.842595,3.601245,3.9714441666666667,3.5157015,0.4557426666666667,2.7848557142857144,1.05436125,0.4557426666666667,4.37742,0.8395177777777777,4.16209,3.89305,6.659152,2.1263833333333335,1.051425,1.1464539999999999,2.323125,2.85566,1.6846933333333334,2.4973533333333333,3.276625,3.635515,2.1045066666666665,2.3269366666666667,4.28111,3.0101075,4.07534,5.92395,3.47274,5.02235,6.73948,4.35937,3.61552,4.41485,3.786195,4.26211,5.0527,5.6466475,5.38725,2.341423333333333,0.9374544444444444,3.472815,3.860445,4.147345,4.342875,4.146515,5.21675,2.51967,2.517333333333333,3.0828633333333335,2.2436366666666667,2.04259,2.9892366666666668,3.071493333333333,2.4411566666666666,3.74893,4.931655,4.188475,5.2298,2.6118833333333336,3.4149333333333334,2.8927,0.7151,4.006845,3.524405,4.41163,2.855116666666667,5.294506666666667,3.25176,4.541055,3.92349,0.5811084615384615,0.5396878571428572,4.27957,2.8059195,3.204615,4.53695,4.007755,1.65933,5.28675,3.927255,2.5960733333333335,2.5608833333333334,2.2713075,2.13262375,3.5023999999999997,3.1410766666666667,2.98275,2.95297,3.503933333333333,2.5844,3.0719733333333337,3.6528333333333336,4.307370000000001,0.546166875,0.546166875,0.546166875,3.2677812083333335,3.480866666666667,3.4979333333333336,2.68084,2.9246533333333335,1.09282,2.9121433333333333,3.0211966666666665,1.828345,2.5551566666666665,2.44301,0.9685055555555555,2.7713349999999997,4.72469,9.734107916666666,1.4326376666666667,0.573264,3.75668,0.573264,0.573264,0.573264,0.573264,2.1571175,4.0169845,3.78681,5.0491,6.0528,2.8030833333333334,2.6964566666666667,2.9121625,3.25162,4.758145,1.0140200000000001,2.269886666666667,3.1324233333333336,2.5985633333333333,2.9941833333333334,3.337725,2.2055933333333333,2.4465,1.1678444444444445,4.930215,2.49606,3.392245,0.9217125,0.589118,0.589118,0.9215653478260869,1.843277847826087,0.9215653478260869,0.9215653478260869,0.33745434782608696,0.33745434782608696,0.9215653478260869,1.4691833333333333,2.41628,3.023095,2.9637,2.5625666666666667,2.58632,3.20988,2.7905599999999997,4.48553,3.66071,1.9225,2.3084166666666666,1.8119925,0.18089995397643593,0.18089995397643593,0.18089995397643593,0.18089995397643593,2.4920466666666665,2.44983,0.967258,5.0188,0.7763072727272727,1.6731580000000001,4.602163333333333,5.2323,4.26909,3.16928,4.382465,3.42203,1.7142133333333334,1.2959625,3.71131,4.533775,6.3032,2.338505,1.4033766666666667,1.9612766666666666,2.9731,1.4571666666666667,2.8124300000000004,2.88861,3.2194933333333338,4.39748,4.02332,3.075,4.969055,2.5461266666666664,4.069935,5.06815,3.881745,4.19213,4.453315,5.355016666666667,4.737328333333333,2.9253934285714287,4.9309666666666665,4.381385,6.6085,4.483905,4.48188,2.29468,3.031015,4.2251,4.83797,4.46957,3.969505,3.95161,4.088185,3.909785,2.4665733333333333,5.37385,3.535225,7.5659725,6.04445,5.8338,4.915355,1.4318000000000002,0.976841,0.6403623076923076,1.777536,4.8207,5.3396,4.002205,1.597044,4.048335,3.092335,5.023,5.3739,6.197921,4.14609,3.07698,1.611672,5.3403625,4.01228,3.254275,1.8017775,0.93128875,3.861535,3.6753,3.6368975,3.63769,2.2082,4.41937,1.71682,2.959403333333333,2.45011,4.697525,6.06835,4.89582,2.2296175,1.7277,5.66915,2.9003333333333337,8.73398,2.76795,5.35635,5.934,4.51833,5.45105,3.60793,5.0115,2.1280425,3.89985,4.846961,2.4467075,4.20123,4.48056,7.133915,5.0088,3.11227,4.05473,3.874435,3.0101075,3.572025,5.0962,5.6889,2.3635325,2.9983233333333335,3.2581333333333333,2.341415,2.56334,4.254025,5.70235,4.989225,4.595955,4.923215,4.23786,4.71128,0.6327207692307693,3.1447033333333336,1.2121099999999998,30.997260977829537,2.529665,4.62824,2.683515,4.48753,1.61876,2.45379,3.104830595238095,1.5704180952380953,1.5704180952380953,1.5704180952380953,1.5704180952380953,1.5344125,3.336915,0.3651155555555555,7.774741388888889,0.3651155555555555,4.034025,4.729415,1.9923225,5.2901,2.835,3.9843273333333333,2.3681766666666664,2.2896633333333334,2.754016666666667,2.21373,0.6285900000000001,2.6557633333333333,0.7348716666666667,3.2511766666666664,2.18822,2.4805580000000003,1.2060366666666666,2.4805580000000003,6.26155,8.029555,4.571135,4.436625,5.70045,6.2774,7.467961666666666,3.128915,1.4777225,1.4777225,2.31726,5.0256,3.718325,4.452845,6.026775,3.97914,2.690645,3.900885,3.40927,3.550815,2.1338,0.848048,1.79474,3.791225,4.238185,5.144736666666667,2.0276,3.738925,1.212802,3.243045,1.258816,3.4614333333333334,2.9491266666666665,3.2527666666666666,3.3787000000000003,2.9072266666666664,4.79616,0.7142915384615385,3.53082,3.6287333333333334,2.67159,2.3765033333333334,4.15955125,3.368,2.100103333333333,4.57361625,3.497355,5.18605,3.96949,3.62819,5.73815,5.04365,2.10757,5.63995,2.37404,1.7890966666666666,3.1052999999999997,2.4999333333333333,2.988766666666667,2.50433,1.8765933333333333,3.2894731060606057,4.178235,3.32484125,2.4105119999999998,2.4105119999999998,2.656205,3.92563,4.09327,0.6148763636363636,3.43655,3.230305,8.7948,0.8476672727272727,4.491815,3.553295,5.42905,3.38744,3.836225,2.28912,3.886805,3.0509,5.4432,2.7004908333333333,1.00124,3.877065,2.674046666666667,3.690335,2.64882,3.649255,3.70858,3.90239,5.277502,3.31482,1.991735,5.21415,2.5641633333333336,4.264135,4.7001,4.618615,4.48827,3.99804,2.9765,2.2130633333333334,2.86984,2.586533333333333,2.789075,3.2007999999999996,2.7954680952380953,4.900401666666667,2.909936666666667,2.46325,6.5038833333333335,4.93939,3.70632,3.1238466666666667,3.7502,4.13102,3.55867,1.844015,3.6542399999999997,4.934945,4.810435,1.3758566666666667,3.88117,2.6865366666666666,6.993892499999999,4.714145,8.715235,4.20842,3.51487,2.16894,4.22641,5.6008075,7.81814,4.49598,5.67658,3.77295,3.33298,3.93194,1.7352139999999998,4.294113,1.41884,3.64896,4.668805,3.442,0.8159516666666667,9.430412,1.1912777777777779,1.9304175,2.4293033333333334,1.94636,3.4268,1.379145,3.592755,3.77428,2.436453333333333,4.310545,1.295315,3.568265,1.39755,3.082949,4.034445,4.591545,1.499625,5.900613333333333,2.594022333333333,7.96396,4.42541,2.886435,4.02628,3.43215,1.2702108333333335,7.55893,3.02848,3.3278,2.474325,4.154155,2.11407,3.1111725,2.36422,4.041185,1.3672975,5.4624,2.624375,4.17041,0.783934,1.984864,3.78666,4.9488,5.1732375,1.3726720000000001,1.3726720000000001,5.78995,3.712815,5.8447,3.7749,3.41078,9.312619999999999,4.5033,5.46185,4.037895,2.4237175,2.1350118986175115,0.360951,0.2021316129032258,0.6658749462365591,1.1081859523809523,0.6820658986175114,0.2021316129032258,1.341501,0.4637433333333333,1.4691369523809523,2.007375946236559,1.9851325,2.2521075,2.2379966666666666,5.14125,6.305196666666666,4.95102,5.21965,4.509575,5.02615,1.20166,4.939735,3.926245,5.3568,4.868475,5.1765,5.47605,5.96645,5.51675,1.2135066666666667,1.2424785714285715,1.8510179999999998,6.080731,1.357826,5.21855,4.82946,6.882414166666667,4.73832,5.44155,4.46471,4.655955,2.4755375,5.3999,5.28175,6.39204,4.984985,5.950537499999999,5.63245,3.8012975,4.271345,3.6544666666666665,1.00322,3.5800666666666667,4.401535,1.13067375,3.6002333333333336,4.492865,4.433685,4.807405,2.4787375,3.36146,2.5867566666666666,4.59009,2.1562375,3.704,1.2599266666666666,3.277945,3.8688,3.81856,5.0479,3.370303333333333,0.5901866666666666,5.98855,1.02072875,3.554075,2.8822233333333336,3.720455,2.0769100000000003,3.854225,3.773620256410257,3.1819866666666665,4.38797,15.015118119047619,5.01211,2.1739125,8.53382,1.5257675,3.904825,2.8700766666666664,2.850616666666667,1.8949733333333334,0.21681869565217393,2.9318833333333334,4.350455,1.759638,2.187186666666667,3.2498633333333333,1.8581425,2.308753333333333,1.4962714285714287,3.24121,4.7947,4.837,3.695115,0.44943571428571427,2.3575,4.73487,2.793105,4.05893,4.48818,4.151655,5.60445,0.4730505882352941,2.491303333333333,2.491303333333333,5.08425,5.0949,4.79771,2.589175,3.5272666666666663,2.9195433333333334,5.24605,3.653485,5.5256372222222225,4.589705,4.359015,4.808985,2.61075,1.890446,4.358445,3.9798,4.022735,3.32082,1.798406,4.874145,4.38035,3.837575,4.60082,3.88935,3.919785,0.6157853333333333,3.047405,0.6011558333333333,3.1046833333333335,3.27145,4.3123,17.692176190476193,3.42615,3.7409,2.3778633333333334,0.94122625,2.2775233333333333,2.586253333333333,1.55058,2.32396,2.393475,4.68233,2.2558966666666667,3.8931,4.193405,2.069425,4.429295,2.902903333333333,4.552025,4.502955,5.448,1.67594,1.634105,2.37358,4.570685,4.756255,1.1520444444444444,5.30455,3.804635,5.66535,4.725975,1.71459,4.6181,3.409985,3.507425,3.68616,4.13667,3.16893,0.58090875,7.274991666666667,1.475864,0.20151388888888888,0.20151388888888888,0.20151388888888888,4.825715,3.990025,2.692963333333333,4.166245,2.81113,4.43709,4.417033571428571,4.02707,8.615316666666667,4.12384,6.625344999999999,0.7802325,0.75016125,2.3810575,4.274265,4.19815,2.2185433333333333,5.37775,5.3252,3.496745,3.4628,4.298535,2.2276933333333333,4.85194,4.6565205,2.2992033333333333,2.9406466666666664,3.0102166666666665,2.6734,6.10115,3.712685,0.6542450000000001,3.651765,3.198525,4.20769,4.897506666666667,4.94421,2.83876,5.3985,3.610565,13.321771666666667,4.616825,6.8375705,2.426223333333333,6.420842,4.33097,3.91698,1.9778975,2.2542766666666667,9.298,2.23297,4.3056,4.1819999999999995,3.7535333333333334,3.3645333333333336,2.86577,2.09016,2.2554875,3.0236966666666665,1.7725560000000002,3.8539,2.3322966666666667,2.6662966666666668,3.362133333333333,3.5797666666666665,2.43002,2.43002,2.3899466666666664,3.4381,3.2865533333333334,2.1912066666666665,3.15195,4.1508,2.7532833333333335,2.881353333333333,3.8252666666666664,2.291166666666667,2.0134525,3.8611,2.9371466666666666,1.4615019999999999,3.6628666666666665,2.1147233333333335,2.44896,2.8229433333333334,2.21335,3.3776333333333333,5.67371,2.411986666666667,3.851766666666667,1.87174,10.211673333333334,1.91521,1.8817599999999999,2.1288,1.0013866666666666,1.63068,4.256576666666667,2.657026,2.657026,1.616612,1.5341500000000001,3.583641666666667,3.7652183333333333,2.1636633333333335,1.5225766666666667,1.653742,4.629758,3.5616333333333334,4.0765666666666664,8.369783333333332,2.9400971428571427,2.50725,3.27755149068323,4.266133333333333,2.0134525,3.2798966666666662,2.6320633333333334,3.4204000000000003,3.4377775,0.9382375,3.214415,2.848043333333333,2.8711566666666664,3.92954,3.2339333333333333,0.6876863636363636,1.8032254761904762,5.25275,2.573749,3.3358666666666665,1.6257366666666666,1.6257366666666666,2.0947675,3.81487,0.9222250000000001,2.2443325,4.4641633333333335,4.4641633333333335,0.6515285714285715,5.530476999999999,3.35672,3.924555,4.609235,1.2192457142857143,3.2618766666666663,3.5513666666666666,5.153040000000001,5.4767806666666665,2.2515566666666667,0.6576679999999999,2.54411,2.616703333333333,2.9894406666666664,2.246093333333333,2.3416466666666667,2.9557266666666666,2.2719025,2.4973666666666667,0.7578054545454546,4.832515,4.808827428571428,1.2383216666666665,1.7355714285714285,5.48115,2.09344,1.70947,3.970095,1.45742,3.53789,2.584175,3.5633,8.9172725,4.3647875,4.47877,5.01875,2.3410494545454545,0.790824,1.963844,6.92316,1.7721600000000002,4.144685,3.7156,3.51006,21.1517245,3.1683066666666666,1.4112,1.07921,3.0983699999999996,1.4525033333333335,4.295342,5.07955,3.2941925000000003,3.3524333333333334,2.0067933333333334,1.4613016666666667,2.7397533333333333,0.570675,3.5668666666666664,3.785933333333333,3.1046066666666667,2.5135086666666666,2.5283533333333335,2.840593333333333,2.03077,3.033193333333333,1.578558,3.763733333333333,1.4349066666666666,3.918565,3.908985,2.6429300000000002,5.38435,3.197085,4.03449,4.967285,4.512385,3.1017733333333335,2.8442333333333334,2.323663333333333,1.0489814285714285,1.0489814285714285,1.0489814285714285,2.319275,3.5424333333333333,2.616283333333333,2.6025566666666666,2.274363333333333,2.02422,3.84763,4.94747,3.79057,6.469955,3.14195,2.36548,1.9385775,0.9320966666666667,2.4396666666666667,4.071615,2.47065,2.6620333333333335,2.4184266666666665,2.411233333333333,2.5488233333333334,2.8457500000000002,2.887363333333333,2.7232233333333333,2.2362800000000003,3.3953666666666664,2.14932,2.126825,1.68702,1.8795025,3.0119866666666666,3.071403333333333,2.0455425,3.924425,5.11275,2.9061866666666667,2.483408269230769,5.617143333333333,3.97777,4.694795,5.60005,4.51087,4.367835,6.241845,1.2262425,4.24698,2.67088,5.22775,5.03905,3.655425,3.573565,2.199385,7.715730000000001,2.22052,0.8186233333333334,7.8055,5.38247,5.586002142857142,4.50629,2.90816825,1.7138725,4.926395,4.30936,4.218145,5.0548,2.479035,4.123625,4.258585,1.8119925,3.92536,2.863725,1.3444099999999999,4.537585,0.6135647058823529,3.876106666666667,3.57674,4.60981,3.03504,1.814575,3.398835,2.007395,1.475325,2.831796666666667,3.039756666666667,3.25418,7.295457307692308,1.7623025,6.2770875,9.51634,5.9871,2.97424,1.3399442857142856,2.9091166666666664,1.3399442857142856,2.8671100000000003,2.20744,0.2619094117647059,1.0957356617647058,0.2619094117647059,0.2619094117647059,0.2619094117647059,1.0957356617647058,1.0957356617647058,0.2619094117647059,0.83382625,4.07443,3.46229,3.188715,3.24012,3.484865,4.39913,2.7900936666666665,1.6562360000000003,6.592186666666667,2.99154,4.15665,2.651736666666667,1.041609090909091,1.2034075,4.46394,3.48737,1.1092077777777778,1.44596,0.7299563636363636,2.982450681818182,4.15243,4.9627,3.4388666666666663,5.366163333333333,0.5616823076923076,4.01161,2.89984625,2.897133333333333,2.511343333333333,3.5187666666666666,2.458626666666667,2.8471333333333333,2.681696666666667,2.96044,3.49926,4.590165,4.541,2.1316800000000002,4.97341,4.3551,2.963105,3.931995,3.360375,0.32561066666666666,4.94169,3.52619,3.02503,3.004828,4.44339,3.90213,1.901515,3.19546,3.90359,8.214925000000001,4.92561,5.39055,4.6667,4.2388224999999995,1.0210925,2.12819,2.12038,1.37046,1.8083666666666665,4.377455,5.26735,4.063395,4.972255,3.476584,2.6073066666666667,0.92511,3.980035,1.2257466666666665,1.1121733333333335,3.350665,3.70579,4.520255,1.2597125,2.53736,8.815150000000001,3.2058,3.108938333333333,0.844045,3.759445,11.993553333333335,3.434185,4.040995,3.203595,2.90949,4.50355,4.96663,2.0299199999999997,4.300285,0.5434276923076923,4.698655,2.1855225,1.629375,1.629375,3.5030666666666668,4.295905,1.5360766666666665,3.93191,1.2968028571428571,3.63355,2.7952483333333333,3.31231,4.909485,3.564245,3.8469056666666663,2.644525,2.734668166666667,2.734668166666667,10.75347,0.723442,2.91997,3.188523333333333,2.126135,1.9875625,0.8776285714285714,1.4341475,1.1081514285714287,1.96903,4.66548,2.39095,4.2557925,2.025326666666667,4.39787,3.9486,1.6987500000000002,2.0511825,1.071715,6.101139000000001,1.99221,2.214095,1.630736,1.8156500000000002,1.07921,2.3475333333333332,3.553725,2.0515933333333334,3.1917333333333335,2.4698100000000003,2.72505,1.78943,3.1299266666666665,2.5108566666666667,1.89985,1.8854833333333334,2.627403333333333,2.8803666666666667,2.35533,1.1477266666666666,2.5434433333333333,2.11173,2.4519100000000003,0.31109684210526317,0.4179916666666667,2.3717533333333334,2.2193166666666664,3.004295,3.0712666666666664,2.845025,4.778095,5.2166,4.41676,4.5164,4.25732,4.01216,2.8824533333333338,3.80053,0.7081981818181818,0.07239295454545455,6.9768,0.07239295454545455,3.5019,2.96716,5.3053,3.633595,6.235,4.53005,2.0423633333333333,2.4616833333333332,1.0188,5.09,6.1031,3.5157666666666665,5.11645,1.85345,3.57374,1.958486847826087,3.054543333333333,3.2213666666666665,3.90918,4.9625666666666675,3.31045,2.179046666666667,2.179046666666667,4.08801,7.38238,3.482655,2.2089466666666664,2.3935233333333334,4.155735,3.022655,4.87826,3.42252,1.0062322222222222,4.090145,2.42923,2.6929166666666666,4.19712,1.1208483333333332,2.392,3.874345,3.46054,4.736575,2.968225,2.798745,3.91641,3.97495,4.25486,4.847885,4.1093,3.1716011111111113,3.82897,2.8915,2.675456666666667,2.5783566666666666,3.8806,4.26644,2.9968533333333336,4.9589225,4.123085,3.750605,5.34605,4.373425,3.523235,1.466604,1.43159,4.12692,3.4578,1.5678766666666668,2.80226,3.289385,3.0852533333333336,4.032886666666666,3.2179533333333334,2.1802924999999997,12.532698916666666,2.393946666666667,1.8054459999999999,4.637535,1.029622,3.112626666666667,3.64942,4.66218,3.23627,1.1998444444444445,2.3009666666666666,2.6034666666666664,1.52004,4.03595,0.9282,0.9282,3.3531233333333335,1.46295,1.8901733333333333,1.7404625,3.06796,5.28595,2.157995,2.97838,3.282201666666667,2.6963333333333335,2.787763333333333,2.0140000000000002,6.162,5.2026,3.628455,0.6815800000000001,3.652225,3.326095,1.0615545454545454,5.47195,3.4359,8.4823,4.822425,4.69668,3.580835,1.4741775,3.20232,4.79756,4.521845,3.83714,3.378935,4.291175,3.54001,3.5079,3.5079,4.377025,2.6882791666666668,3.80949,2.00066,5.373116666666666,5.147366666666667,1.4387616666666665,4.496515,1.0211000000000001,5.7098,3.95522,4.832315,4.59702,4.02921,2.628525,2.4390175,4.377835,4.20949,4.9527,4.109825,1.9226375,1.395014,4.42819,2.0925033333333336,5.3988,3.03546,3.5711,7.644875000000001,3.8532,4.37691,5.09955,3.73752,4.41258,8.27566,3.880915,3.044685,9.07676,3.580085,0.5855385714285715,2.026241562881563,4.417255,0.596628,4.673705,3.969395,4.59718,4.396225,3.370535,3.59343,4.45906,4.734665,2.75885,0.6882171428571429,4.66247,4.36414,4.38417,4.106275,2.84702,4.48265,3.38517,0.611732,3.3545,4.03692,2.540225,3.1538633333333332,3.868515,2.2004525,5.48095,5.2011,3.792735,0.88556875,3.1729000000000003,5.663470833333333,5.663470833333333,8.647756666666666,2.0921,0.88460125,0.88460125,23.556338333333333,2.586125,7.631528333333334,0.34099250000000003,1.30285,3.0117666666666665,0.9696450000000001,3.713915,3.663385,2.0988275,2.0988275,4.08024,5.0463,3.594545,2.7193,2.7193,3.62631,4.227305,3.78022,3.5368333333333335,2.0048066666666666,2.5638816666666666,3.8975720000000003,2.04915,3.637705,2.7649666666666666,2.6989946428571425,2.6989946428571425,3.3584666666666667,0.8395577777777778,2.4663133333333334,1.7198933333333333,3.197953333333333,2.7939933333333333,2.760873333333333,2.4844500000000003,4.463815,2.447745,3.0329866666666665,5.315811999999999,1.2753299999999999,2.23387,3.082095,2.6241533333333336,4.21484,5.525803,1.3528766666666667,3.8122333333333334,2.428705,5.22483,6.2944,1.42566,5.06175,4.850136,3.1679717142857147,4.6224,1.0056328571428572,1.8272400000000002,3.04288,3.8665885714285713,1.2541583333333333,2.3576975,1.83179,1.717648,2.23406,3.5589399999999998,5.187545,1.0834633333333332,1.4336142857142857,2.9791399999999997,13.26289,4.535216666666667,2.6669,1.1431814285714286,2.5345066666666667,0.9873500000000001,3.18168,4.324805,4.86359,3.4811,5.4754,1.497095,3.6801333333333335,4.176805,2.8066133333333334,3.849886666666667,1.7813533333333333,1.1159333333333334,2.5368,2.90051,7.002606666666667,2.850106,2.4865866666666667,0.723271,4.7571,3.599133333333333,1.084576,5.7130375,2.0333375,2.3833033333333336,5.4808,1.2363666666666666,2.92053,0.9915272727272728,2.947673333333333,4.21842,2.89319,2.96982,2.290696666666667,2.4681466666666667,4.481455,4.736055,5.0274,1.719075,4.47008,3.902815,4.2823199999999995,3.341806,2.4983566666666666,4.048888666666667,0.972082,2.759969523809524,4.592045,2.73125,4.021695833333333,1.289425,2.9789266666666667,1.956314,1.956314,7.33474,3.172093333333333,5.762930000000001,3.4559450000000003,1.8069300000000001,2.6871823809523807,4.5612483333333325,5.68505,8.773683333333334,4.757239333333334,2.65764575,1.7640266666666669,1.9013203333333333,4.03322,3.86808,1.458242,2.011735,3.043469464285714,1.0830325,3.0541366666666665,18.759608333333333,2.994866666666667,2.86942,2.8355200000000003,2.8985766666666666,2.3438466666666664,1.9771433333333333,3.068296666666667,3.6203000000000003,2.57543,2.62163,5.497148666666667,2.4127033333333334,4.950107428571428,2.8811854285714285,2.7995274285714284,1.38877,3.7448155555555553,2.0896175,3.945545,4.91707,3.914015,3.13491,3.147156666666667,2.2394433333333335,3.4567666666666668,3.5127666666666664,3.239786666666667,3.3064766666666667,0.83901,5.2951,2.35052,3.1126199999999997,2.816645,1.85572,2.1175329166666668,2.1175329166666668,3.2348679166666665,1.84670125,4.79478,4.16229,3.5897,4.2886,4.765165,4.48698,4.48698,3.98266,2.8865266666666667,4.719755,2.80644,1.629034,2.1277933333333334,4.487565,3.997105,2.72985,3.73945,5.342715,3.6970666666666667,6.237512892857143,3.289265,0.897494,0.897494,3.385385,4.711455,3.75254,3.368764,2.41124,1.7925033333333333,1.62536,2.9349666666666665,5.975480000000001,1.4374633333333333,4.2399,3.633266666666667,3.919575,5.1357,4.882825,4.742597895833333,3.2138833333333334,2.31756,4.13041,4.19682,2.0609875,1.1380620000000001,3.929085,2.653175,6.128541666666667,3.4753666666666665,2.6218,3.233115,3.7047,3.576705,4.652575,3.10103,4.5235,3.759755,4.3086,3.67065,3.59008,3.44753,3.717315,2.76158,4.54285,3.097,5.05275,0.5898311111111112,2.34439,1.7948375,2.148505,1.8721925,2.7360966666666666,2.55174,1.6588766666666668,4.26649,4.91116,1.8182099999999999,3.705015,4.37833,2.3763225,5.968126666666667,3.9542733333333335,4.27619,4.932235,6.997456666666666,1.9325999999999999,2.7325533333333336,1.8708433333333332,2.5868933333333333,1.723095,1.81453,3.997495,3.66043,5.30225,1.0008755555555555,3.100625,4.24754,2.21321,5.26555,3.70618,2.60905,3.7500666666666667,3.37,2.09817,1.816919,2.61115,3.143825,3.370725,1.9392725,2.249201428571429,2.249201428571429,3.593825,3.46495,20.07779363095238,1.1696633333333333,5.325731666666666,1.851065,1.9158266666666668,3.647225,3.34856,1.878145,3.81583,4.6165,1.2890183333333334,1.2890183333333334,1.24452,1.7359900000000001,2.1973966666666667,3.1746966666666663,4.589528333333333,3.41764,3.4148333333333336,0.49025052631578947,3.4102271929824566,2.0479933333333333,2.20982,4.5463775,3.445525,4.01187,3.550875,4.471065,4.511845,2.060115,3.63743,5.5308600000000006,2.22556,3.48365,4.87431,2.29244,4.81403,6.19045,1.3438042857142858,1.878858,3.5779,0.6831085714285715,3.2190366666666663,3.213295,4.791025,4.928375,2.781468333333333,7.704828333333333,2.9425933333333334,2.8151733333333335,0.43789823529411764,4.26775,5.249280238095238,3.059627142857143,5.3783,3.81136,2.4935128888888887,1.699466,5.26395925,4.26105,4.14764,2.9036,1.979255,3.527295,4.0992,2.9842566666666666,1.9427825,3.9867925,5.826875,2.781505,3.85439,3.58529,4.09975,1.576957142857143,1.576957142857143,3.1747300000000003,2.99452,4.558915,4.61599,6.6838,3.589595,2.758925,2.1437175,1.5216399999999999,1.3617885714285713,4.871055,5.5071,4.959615,5.8562,4.407175,6.329375000000001,3.41908,2.8252,3.92718,2.114053333333333,3.00805475,1.605248,4.420905,2.3483033333333334,3.777525,5.01495,4.077755,2.7722700000000002,2.9003333333333337,1.3429685714285713,2.43308,3.7411999999999996,1.86273,0.62513125,3.116706666666667,2.5797066666666666,2.4411566666666666,2.2772633333333334,2.0178375,1.55386,0.7003718181818182,0.7003718181818182,3.5551666666666666,1.763825,2.3126225,3.20388,5.5183,3.95891,6.1271,4.258025,4.324725,2.1264133333333333,1.24448,2.467575,4.550685,0.960255,3.392775,3.031045,2.848915,2.244065,4.125345,2.839345,2.0496433333333335,1.057337142857143,3.60073,9.04816,3.389925,1.5412785714285713,4.15834,3.42081,2.655145,3.529175,2.779875,1.77288,1.04336,3.62625,2.4381766666666667,2.3270500000000003,1.6185600000000002,2.17589,2.2331266666666667,2.4711266666666667,2.82124125,1.2889433333333333,1.8672666666666666,1.0423175,6.2693475,5.83705,5.7462,3.920185,4.16949,2.9695966666666664,1.6489435897435898,4.633105,5.06365,2.506995,5.1452,2.13997,4.62889,0.9299444444444445,4.032135,3.97637,1.912415,7.78858,3.559295,1.8522,1.8614875,1.779905,2.4519975,3.4228666666666663,1.2343995454545456,2.9620200000000003,5.7069,3.41354,3.977345,5.49315,5.4037,5.64235,0.905315,4.196715,4.48991,4.201475,4.830965,3.9968683333333335,4.62732,4.765845,2.997005,1.5752366666666668,1.5752366666666668,5.26775,5.507145,3.547745,2.63123,3.890055,4.545175,1.491612,3.994135,5.20355,3.529975,3.93803,2.9434233333333335,2.8493433333333336,4.936585,2.51898925,10.613333005376976,1.9245666666666665,0.781825,2.6274366666666666,1.68151,2.6196,2.1536375,1.886204,2.7995,4.866335,5.45045,2.921253333333333,1.62537,6.173403095238095,1.460942857142857,2.8665533333333335,0.5216619047619048,4.059326666666666,5.5336,3.40018,4.882405,11.4062,5.30245,3.0394900000000002,3.4484333333333335,4.210435,2.985136666666667,4.667745,0.87176875,1.0212999999999999,0.8013290909090909,5.64185,4.129675,1.828884,4.790151333333333,4.59143,6.6442,4.845085,4.98501,4.46982,6.0149,3.89845,5.22625,3.46987,1.20676,3.888865,5.28785,2.675125,3.994685,2.678155,2.59025,1.2337675,5.13545,3.964705,1.2902375,3.4889666666666668,2.9499033333333333,2.5043966666666666,2.485533333333333,2.5109266666666668,3.0800033333333334,0.7063663636363636,2.4781400000000002,2.669506666666667,2.59662,1.9213333333333333,2.83051,1.87468,1.5089966666666665,2.3597975,2.016045,2.027195,3.3047966666666664,2.8818866666666665,0.658926,2.8207466666666665,3.22805,4.721485,2.3508333333333336,3.734895,5.5178,4.94849,3.403835,3.91157,1.29379,3.270145,2.512386111111111,4.295115,2.67749375,4.72805,5.1855,4.66791,4.344825,4.266766666666666,1.11511,1.11511,2.2660053846153847,1.6668,3.98807,2.6084445,2.6084445,4.9912,6.0927,3.01155,1.1878900000000001,1.5795714285714286,5.89895,3.714215,2.181826666666667,3.295265,2.956035,3.152675,2.181826666666667,4.2877624999999995,3.20285,2.9778504166666666,2.849425,1.93063,3.0423,6.7082,3.318395,3.62145,4.59273,6.6607,6.7085,6.628925,6.628925,5.5755,4.850195,0.5303469230769231,5.1544,4.57513,3.046275,2.76275,8.157521666666666,2.6645733333333332,3.99281,3.65747,2.403113333333333,4.47074,2.448305,3.448385,3.0045366666666666,3.3718,2.58602,1.5646879999999999,1.5646879999999999,3.593585,3.800595,4.72718,1.744818,1.49525,47.335952727272726,2.594273333333333,0.8515527272727272,3.1258199999999996,1.80596,3.1967833333333338,2.8224933333333335,2.9981899999999997,3.02008,2.6527333333333334,2.0858266666666667,1.0344425,4.46385,3.26798,3.50089,3.781015,5.0795,4.928225,4.96064,5.23775,5.33635,4.759515,5.53725,6.1085575,5.04135,5.4793,2.0864975,3.84497,6.64075,5.27485,3.473715,3.99432,3.20033,2.35036,3.853065,4.509155,3.0225566666666666,4.024166666666667,1.64807,4.182715,1.346398,3.28384,3.87603,3.68173,6.482015,4.130135,1.8858525,4.08498,3.8613,4.03659,0.9100425,2.834135,2.92354,4.392544642857143,1.12904,4.59479,1.32315,5.698,0.7453688888888889,4.014234,10.035435833333334,4.39978,3.418765,3.155085,1.8833666666666666,4.102555,5.3268,2.9770066666666666,4.43538,9.123363333333334,3.4765333333333337,1.9637766666666667,2.7426999999999997,2.72801,2.7129433333333335,2.7167005,3.0061533333333332,2.5758233333333336,3.114133333333333,2.6663799999999998,3.12519,3.37596,2.25545,1.8457733333333335,4.833046666666666,4.027299999999999,2.57388,4.951979333333333,2.7412166666666664,1.014345,2.1812275,2.9974600000000002,5.230493571428571,2.89475,2.1008322222222224,2.1008322222222224,1.586735,1.6808075,2.18512,1.9499220000000002,5.727885,4.3745625,1.8989125,3.0383866666666663,3.704,2.075585,0.6367016666666666,2.64864,1.939725,0.5617453846153846,3.92233,2.470155,2.507,3.60986,3.5187204999999997,2.37623,1.6137733333333333,1.1206316666666667,2.108685,3.704145,3.651575,4.12223,2.79323,3.970395,3.69127,1.065109090909091,9.63898,2.698005,3.36251,1.269475,2.792783333333333,2.366685,2.366685,2.366685,5.0884,5.42005,1.5322,5.07425,1.4464000000000001,5.386056666666667,1.5472,4.071635,4.28053,4.02772,5.06995,4.40698,1.88287,8.7446025,4.000345,5.04425,3.550595,3.98241,3.1948666666666665,3.064416666666667,3.833705,2.56786,4.168053571428572,4.42854,1.5834425,3.89267,1.5834425,3.342195,4.4386275,4.97287,4.4386275,1.8057566666666667,5.71385,4.618345,4.334805,2.6888400000000003,2.9676566666666666,4.225355,3.190755,5.384,0.4979085714285714,2.910156666666667,3.023016666666667,5.031045833333334,4.718875,2.4165975,4.825575,5.77327,3.42979,3.05763,2.95594,2.18405,3.9298,3.811575,4.64917,2.367405,3.79613,0.855344,5.6649,3.39114,4.24792,2.3820666666666668,3.0911233333333334,2.3281300000000003,2.8567633333333333,2.7350733333333337,2.7830066666666666,3.003205,2.41545,2.41545,4.364190000000001,2.822415,4.708775,11.4404025,0.9506088888888888,4.424355,2.51293,2.38468,2.668763333333333,1.4613125,7.322689333333333,3.358333333333333,3.537155,3.6059866666666665,2.43052,3.9331333333333336,4.134611722222222,1.9599933333333333,0.4263411111111111,1.459584,1.504255,4.876955,2.831985,3.18026,3.6881575,3.457233333333333,2.29073625,4.94197,4.487835,3.772045,4.625655,2.16808,3.856945,2.5685533333333335,5.423943333333333,3.219125,5.1224,4.098105,3.83533,4.28824,2.03519,3.836615,3.644075,3.161543333333333,3.54668,2.668015,3.236255,3.96576,4.159805,2.571473333333333,4.42405,1.3027433333333334,3.694195,2.84443,3.97766,4.21245,3.69432,4.7193,2.459355,4.038635,5.31245,4.09835,3.160266666666667,2.20002,3.03799,2.36638,0.8721966666666666,4.596385,2.03632,3.4489,2.68848,4.054935,3.374375,3.04045,3.085935,4.110775,4.494196,4.082065,2.835075,1.5416233333333331,3.657685,2.432305,0.92993,4.218755,8.82506,3.357665,3.62821,3.821195,5.0977,3.77604,2.1601,4.022005,3.99681,3.225105,3.27882,3.7624,0.64239,1.23636,6.2853725,1.6596525,2.66463,4.885464,2.4787375,2.283125,2.653775,7.49511,2.611825,4.04118,3.750195,0.7711055555555555,3.461345,2.60934,3.86486,3.785865,6.192466666666666,0.671852,3.26194,9.54473,3.200605,1.0479166666666666,5.06940625,4.663935,5.27165,4.25431,4.675735,3.111365,2.5383566666666666,7.160195,0.803428,3.54153,4.039375,3.273245,4.12173,2.33197,4.148945,1.6964666666666668,4.308775,4.070165,4.070055,1.6913175,4.631275,4.44928,2.3482475,2.169905,2.234,1.084576,4.16795,3.2941925000000003,1.446958,7.933305000000001,5.6949,4.581495,4.23198,3.406415,4.357985,1.4821857142857142,4.25995,3.95249,5.23245,3.805785,2.4611300000000003,6.507784722222222,1.1827075,1.1827075,2.5776033333333332,0.9083957142857143,4.127195,2.9513866666666666,1.0261625,1.7488866666666667,0.41323916666666666,6.02957,1.0105175,2.746715,3.662785,4.036985,3.79258,4.086575,5.494,5.5922975,3.279065,3.181565,2.472125,3.836795,4.339585,4.19901,3.85809,3.52935,6.00265,4.25842,4.308455555555556,5.960622,3.68972,3.3149275,2.355275,3.3149275,6.867772,41.26435129112554,3.743285,3.53211,2.8754266666666664,4.375995,4.42589,3.43703,3.56495,3.934125,4.589065,4.112985,1.641585,4.65871,2.786645,4.7,5.1732,4.816815,2.5010033333333332,4.48993,3.81143,3.292835,1.440066,0.6343715384615384,1.790786,3.5500666666666665,2.8670000000000004,1.28185,2.7739166666666666,2.6152633333333335,2.5829933333333335,3.7471,2.9648766666666666,1.397154,2.6812799999999997,3.727733333333333,1.931308712998713,2.87255,3.1825799999999997,2.9110033333333334,2.55621,3.5671,1.1759111111111111,3.575645,4.04359,1.31335,1.31335,1.31335,1.31335,2.8361242424242428,2.0464033333333336,2.461845,3.373465,5.05135,4.82552,4.045985,4.26593,5.49005,4.54677,2.297465,6.0133,4.130395,2.875165,3.96895,3.04423,4.05827,4.17908,0.6982192307692308,1.5013142857142856,1.5694566666666667,4.137755,3.74165,4.59737,3.99402,6.099906666666667,2.2813466666666664,4.189285,1.5719316666666667,3.591025,5.0042,1.5961400000000001,5.06525,0.6862158333333334,4.22312,1.21257,1.12015125,3.672535,3.769515,5.02535,4.88035,6.02345,4.413245,1.506416,4.53876,1.480325,3.66491,2.828885,2.4935128888888887,2.013975,3.40093,1.3178716666666668,3.41175,4.778765,3.0253433333333333,5.87225,119.99609842965369,0.4935044444444444,4.536365,2.3768933333333333,4.782345,4.058305,3.463975,1.54904,0.3232404761904762,2.84579,3.75301,5.24015,3.37127,3.60432,4.276895,4.00383,4.30048,8.422686666666667,0.69028,2.751175,0.97086,10.81858,2.97043,3.545465,0.8939777777777778,2.17565,2.780805,2.0968375,3.211043333333333,3.2478599999999997,2.6692533333333333,4.2877725,2.875576666666667,2.3417499999999998,2.2177166666666666,3.337505,3.35082,3.01668,3.69661,3.79488,3.40958,2.3653833333333334,3.895975,4.291435,3.05692,0.9207533333333333,2.53983,4.2877725,4.456375,5.4553,4.11969,3.865345,1.851625,11.13119,4.740115,2.64989,4.343745,4.961965,0.5386893333333334,0.5386893333333334,4.1619399999999995,4.1619399999999995,3.00746,3.4661333333333335,1.8265454545454545,0.5795374999999999,2.945165,4.25836,4.01871,3.21141,3.92249,5.2964225,4.726155,1.9669725,4.769585,2.177065,2.757115,4.050095833333333,1.792195,2.06484,0.48022714285714285,1.2346911428571428,1.2346911428571428,1.90661,4.26158,4.28953,4.812355,6.510593,2.93334,2.983845,1.87921,2.025445,4.01952,3.741525,4.782193333333334,2.242185,4.782193333333334,4.43635,3.65246,5.90745,3.85549,2.3748666666666667,1.9643899999999999,2.4500699999999997,1.40482,1.3980825,1.5262425,1.884355,1.6491725,1.6881125,3.9479,4.618545,2.551505,6.76345,3.0170100000000004,4.59262,3.38095,4.12675,2.8619566666666665,2.7760766666666665,6.2021066666666655,3.2397233333333335,4.60433,3.09004,1.4059875,2.4924166666666667,2.5121066666666665,2.26816,6.09445,4.4326725,4.601105,12.355948611287834,0.7552808333333334,2.01505,2.1789325,1.601438,1.2859485714285714,2.54425,2.4406325,2.4433925,2.37535,0.7363669230769231,1.9124425,0.5329578947368422,4.556765,1.911145,3.79416,4.438685,2.46707,5.73469,3.975585,7.07317,4.10855,2.85935,3.06633,4.436765,4.84744,2.8010061904761905,4.368345,2.108445,2.108445,4.819025,3.793645,4.120265,4.13804,3.145433333333333,3.7892,4.819305,5.2253,4.765465,4.385285,4.58822,4.18784,2.539095,5.06685,1.144925,4.62334,4.602825,2.54045,2.22794,4.4394,1.4722266666666668,5.156,1.905725,5.879557681159421,3.78934,3.89904,1.6575066666666667,2.985825833333333,2.985825833333333,11.89326,4.083125,4.108175,1.1128575,4.373688,2.342105,1.5125825,2.3284575,1.65196,1.9639575,1.744634,3.002525,5.7748,1.76771,4.84667,4.603511666666667,5.5434,2.15168,2.626305,3.251095,4.328555,5.4986,3.922245,6.990408333333333,3.1536166666666667,2.491163333333333,0.3798038888888889,3.846595,4.3371,3.3317033333333335,6.246513333333334,2.6453666666666664,3.0027000000000004,1.24065,1.6286183333333335,0.62513125,1.459584,3.024275,1.469085,1.495075,0.655725,1.267638,4.711855,2.393465,0.6059646153846153,1.7800833333333335,1.73453,1.6195060000000001,1.2461416666666667,1.8809375,1.6286183333333335,2.4467075,1.267638,1.267638,0.6059646153846153,1.5939857142857143,2.43268,1.2541583333333333,2.669075,0.6059646153846153,2.622525,2.43268,1.24336,1.24336,1.24336,1.8414380000000001,1.21299875,0.6059646153846153,1.1054439999999999,1.11833,1.0013866666666666,1.8229579999999999,2.703425,0.8159516666666667,2.1532525,1.600042857142857,0.6059646153846153,1.80047,1.6286183333333335,2.0265333333333335,1.9357,0.888897,2.0265333333333335,1.0419366666666667,2.3482475,2.3611625,2.39268,1.11833,2.07674,1.3178716666666668,1.3178716666666668,0.8985045454545454,0.8985045454545454,0.8985045454545454,1.24065,1.6286183333333335,1.600042857142857,1.7800833333333335,0.9223,1.9357,1.565718,1.4615019999999999,2.06598,1.24065,2.6669,12.779195000000001,0.655725,2.61494,1.8058500000000002,2.4149125,0.9873500000000001,0.9873500000000001,0.6059646153846153,1.0111977777777779,1.55386,1.600042857142857,1.847392,1.9357,1.1520444444444444,1.1520444444444444,1.6731580000000001,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,3.0225566666666666,1.0419366666666667,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.20151388888888888,0.3709109090909091,54.39342647979798,1.485735,1.5573833333333333,1.600042857142857,1.8058500000000002,0.9223,0.6495882352941176,0.723271,0.723271,0.723271,0.723271,4.326266666666666,15.988832500000001,3.320683333333333,0.5649618181818181,1.587804,1.587804,1.587804,0.5649618181818181,3.024275,0.6059646153846153,1.80047,1.495075,2.55248,1.0419366666666667,2.4165975,1.0419366666666667,1.573986,1.573986,2.11545,2.11545,0.6059646153846153,1.969932,1.969932,0.9318909090909091,0.20151388888888888,3.024275,1.4302516666666667,2.428705,0.5649618181818181,0.5649618181818181,0.5649618181818181,0.5649618181818181,0.5649618181818181,1.8058500000000002,0.3709109090909091,1.0419366666666667,2.14292,2.14292,2.4390175,2.8822233333333336,0.6515285714285715,0.6515285714285715,3.4491666666666667,4.169866666666667,1.2192457142857143,3.3772333333333333,0.997283,2.6176,2.0921,1.1208483333333332,2.85168,1.9250225,3.1729000000000003,5.12345,2.48015,1.1799444444444445,4.020345,4.048195,2.589253333333333,1.789508,2.342692076923077,4.548585,1.7943988888888889,2.7174033333333334,2.962563333333333,3.1245066666666665,2.466025,6.015596666666666,3.891065,0.20151388888888888,2.9109533333333335,4.922435,3.17702,4.52996,4.42832,4.380645,2.7446433333333338,1.7633299999999998,4.330355,4.6582,4.3458,4.621715,5.23095,3.19979,0.7255199999999999,6.7656,1.6144166666666668,2.929542,4.434805,2.575466666666667,2.575466666666667,0.8386254545454546,2.013975,4.77208,3.09892,4.879715,4.326395,4.588665,5.27015,1.0379657142857144,4.937495,5.7038,6.401995416666666,2.25019,4.23027,3.78673,3.93455,3.706415,3.92384,4.27028,6.189725,5.1744,4.341358333333333,3.63749,4.315295,7.3902909999999995,1.916335,2.1063684615384615,2.82556,1.7593033333333334,2.717416666666667,1.8467433333333334,5.1539,3.091673333333333,6.13415,1.9150960000000001,4.964725,4.10305,3.62088,4.4665,3.759385,2.57109,2.7876166666666666,2.6933000000000002,2.6374833333333334,2.5234,1.7051,2.7321833333333334,2.8209433333333336,2.22612,2.22612,4.483915,2.92104,1.9799466666666667,3.0189766666666666,2.10254,2.62365,3.0241866666666666,2.7121366666666664,3.0778700000000003,5.2977,3.96932,3.805875,3.3909533333333335,3.3909533333333335,3.89848,3.2509833333333336,3.882845,4.488605,3.930695,3.3605,3.292235,7.58536,2.1135025,1.98993,3.467665,3.23482,1.4601366666666669,1.4601366666666669,3.46881,1.741525,3.95464,3.746535,3.805285,2.153385,2.024179166666667,0.5879658333333333,3.383705,3.933415,1.77647,2.425225,4.24289,1.3976066666666667,4.578975,1.2102966666666666,0.3789257142857143,0.5285335714285715,21.289077619047617,0.5285335714285715,0.3789257142857143,0.6781414285714287,9.496375,2.7371266666666667,3.54374,4.272115,3.446815,2.781115,3.9829185714285718,2.150755,2.36223,3.72163,3.05985,3.91526,4.3823,3.628275,2.24165,3.11046,3.549395,3.9194,3.06922,1.1021420000000002,1.1021420000000002,1.1021420000000002,1.1021420000000002,3.41735,2.74284,3.21365,1.78731,1.176075,2.430635,3.661585,3.730685,2.836105,3.0118,2.48645,2.7952483333333333,3.985815,4.192355,1.1116633333333332,2.5785266666666664,1.08701,2.5799533333333335,1.5902066666666668,3.6269333333333336,5.02075,2.48236,3.64777,3.892123333333333,0.814341746031746,0.24509285714285714,0.24509285714285714,0.5692488888888889,0.24509285714285714,0.24509285714285714,0.24509285714285714,0.5692488888888889,4.385845,7.423188333333333,3.70387,0.53447375,3.69674,7.675419999999999,3.27774,3.1311733333333334,1.1705966666666667,4.54907,5.20835,4.395055,4.81587,1.6542179999999997,4.722075,2.1920100000000002,2.257564666666666,3.570255,5.26785,0.8057442857142857,0.8057442857142857,3.555175,2.821196666666667,2.081515,3.1472,2.682325,6.7428,2.547685,6.41305,6.0096,5.5833,2.564705,1.85587,3.88208,3.48235,2.18507,3.44399,3.083775,1.7946725,1.14247,4.11025,3.39423,4.897506666666667,5.90104,1.49082,4.01101,1.1325,2.5514566666666667,3.26826,3.87871,0.3950542857142857,3.60981,3.911495,0.898805,2.6096833333333334,7.624901666666666,2.86005,2.297185,5.437103,4.383555,3.792875,1.3502450000000001,5.081686666666666,2.682166666666667,3.025926666666667,3.564833333333333,2.2831633333333334,2.2831633333333334,6.332625,6.332625,3.638067857142857,3.638067857142857,10.5346,3.638067857142857,3.638067857142857,4.328958968253968,6.84445,3.614155,3.5601658333333335,2.93891,4.42362,3.40622,3.3355,3.0193999999999996,4.71578,3.090476666666667,2.70558,3.387866666666667,2.3360499999999997,2.678265,5.08505,7.75521,6.70337,5.04165,3.75789,4.0394,6.8970519999999995,5.312,4.62957,3.803165,4.55244,2.4055066666666667,2.267015,2.27553,5.3468,5.6293,4.65481,4.23237,2.2870500000000002,2.55361,6.812200000000001,1.8414380000000001,2.5427433333333336,3.4120000000000004,3.4120000000000004,3.11553,5.14545,0.7599841666666666,3.5032,3.641355,2.9992300000000003,10.176615000000002,4.12237,2.90098,2.4664,4.4898,5.9729,2.95209,5.1629,2.6799999999999997,4.53916,2.8420677142857143,4.47565,5.3671,4.831295,1.036135,3.627466666666667,0.981245,2.5516833333333335,5.009614014705882,8.780833333333334,2.4906133333333336,3.4585000000000004,6.813541666666667,1.6864540000000001,4.4726,5.4977,3.4316,3.712505,2.20677,4.602895,2.36884125,0.45522999999999997,5.0473,2.920445,3.505266666666667,4.93706,4.928515,5.5161,6.5112075,4.54575,5.48855,7.435015,54.90271333333333,4.66422,3.93974,4.5528,5.57745,4.334845,5.1897,4.025675,4.654935,1.9200225,3.876395,3.972255,4.66592,2.79288,5.04475,3.865755,1.6787839999999998,5.5832,6.26715,7.186225,5.3565,3.37984,4.435135,3.11506,3.32888,3.57012,4.33211,3.772875,6.51478,2.72975,1.0748657142857143,2.47992125,0.538288,0.538288,3.281955,0.538288,2.4709118214285715,2.4709118214285715,3.2608598214285713,4.71012825,5.1229255714285715,2.47992125,4.6334808333333335,2.4564158333333332,1.3328983333333333,5.4822,2.16574,7.034792666666666,5.771246666666666,10.977316931818182,3.2834633333333336,2.59959,0.20804818181818183,1.9445616666666665,2.07115,0.87050375,1.2070233333333333,3.0951833333333334,2.4170725,2.586425,0.608047,26.731268749999998,1.88735,0.8192538461538461,2.4389166666666666,2.4389166666666666,0.3980477777777778,1.6155325,3.15148,1.3427275,1.6194475,1.637325,3.96514,2.863855,1.9847166666666667,2.3278833333333333,1.1024766666666668,1.942965,1.5181283333333333,5.312748166666667,3.580385,6.713113333333333,2.50945,3.3203,0.9046683333333333,2.43125,5.09805,6.212495,3.0013533333333338,2.2797633333333334,5.223599166666666,1.9156225,2.3779266666666667,4.227385,1.0626499999999999,3.4464,2.3097833333333333,4.999685,4.64385,6.02725,2.994405,3.9418525000000004,3.9418525000000004,5.26,1.86588,5.29805,2.8939233333333334,1.5044675,3.092975,3.33878,5.291035166666667,4.419995,2.7470866666666667,2.9109166666666666,3.067755,0.9831371428571429,5.1217,0.887455,5.524509999999999,4.290435,7.60262,4.144675,4.42402,4.06078,8.110606666666666,4.05314,4.78167,1.17112,0.7190357142857142,4.568595,4.202415,2.095225,3.335255,3.31735,4.24213,2.203475,4.91127,2.4265633333333336,5.38865,5.2221,5.51955,4.362185,5.00235,3.051875,6.4667485000000005,3.51993,4.47568,3.3932,4.689165,5.442758809523809,0.5914342857142857,3.6858,1.8254933333333332,0.56948,3.931445,2.335485,1.01509125,2.00051,5.7396,3.65192,2.41781,2.6988366666666668,2.6575933333333333,4.90889,4.166385,1.6538523809523809,4.205985,2.20301,3.7371666666666665,4.13074,5.15155,3.0360016666666665,3.694366666666667,3.794333333333333,2.04692,7.36593,4.7961,4.1552,5.2918,2.18045,4.40894,4.7306,3.934275,3.899365,10.482725,3.399915,4.725391666666667,4.74482,4.607395,2.36855,4.53314,4.27492,4.354385,3.31569,4.18123,1.4806775,3.0458833333333337,3.727725,3.76367,4.98507,1.900688,3.841045,3.0957966666666668,5.45095,3.18772,1.84344,4.10398,4.414975,1.05327875,2.99031,2.6305833333333335,4.476128666666667,1.744116,1.5311899999999998,1.17011,3.31628,5.4949,5.51138,3.6203525,2.94284,2.34959,1.893145,1.89961,1.57026,5.87185,2.96896,1.9507475,0.8808153846153846,20.02179591666667,2.86121,3.2225533333333334,4.717461666666667,3.8781399999999997,1.4349533333333333,2.7479199999999997,2.904593409090909,1.324146,1.88608,4.225405,4.676655,3.5688899999999997,2.985125,5.3238,4.698695,6.939095,4.571890833333333,4.43022,3.76556,2.66736,3.99982,4.04252,3.7363999999999997,3.845065,1.8373075,4.75772,8.76636,3.313465,2.867685,3.350925,0.5413,3.15006,2.0453333333333332,2.2992825,4.357395,3.12399,5.02735,3.78046,2.91358,2.190835,1.703185,0.752276,1.45618,1.2242233333333334,3.89888,3.806605,4.696175,4.623455,7.4611,2.3279633333333334,1.393986,2.391783333333333,7.769543333333333,3.12523,2.7454,3.04254,4.59743,3.2190575,3.476895,1.493948,4.643945,4.69291,4.27066,4.055185,3.495865,4.211185,4.292685,3.91272,4.261515,4.33488,2.20372,3.295336666666667,3.317845,5.35855,3.089785,4.1712655000000005,2.66531,2.909175,2.2746633333333333,2.2642966666666666,2.1412999999999998,2.5923836666666666,2.5923836666666666,2.01254,2.8226266666666664,2.3918833333333334,2.37867,2.0006933333333334,4.120435,2.33051,2.6841033333333333,2.95556,1.7118033333333333,4.481565,2.75511,4.02247,2.57829,5.0557,5.20075,4.801860833333333,2.61608,2.40497,2.79496,2.484995,1.965285,2.71878,1.86966,2.591175,2.721725,6.8857465,4.34174,3.53792,0.62450875,4.37599,3.85168,4.05956,3.08006,3.882465,3.7832325,6.3112,4.413895,3.080885,2.7354175,2.139607777777778,2.46116,1.61505,1.787588,1.563628,2.0805800000000003,1.7193875,1.184925,4.127512857142857,0.6059646153846153,0.5120377777777778,1.9575179999999999,1.5209916666666665,1.432826,1.4049433333333334,2.2499280303030305,1.4325433333333333,1.686936,0.60507375,166.91598432819794,0.47819333333333336,2.03512,1.212464,1.15851,2.137345,1.497345,1.9583975,2.2541933333333333,1.8210675,6.4588,3.174575,3.34437380952381,2.122716666666667,3.18725,1.2828166666666667,1.2828166666666667,5.761445,0.47276388888888893,2.201485,3.3336333333333332,3.0880666666666667,0.8348099999999999,0.5358041176470588,1.1416765641025641,0.995909090909091,2.2434425,4.03109,1.961095,2.061855,2.2492966666666665,5.040347611111111,0.9998388888888888,4.40645,3.50209,3.63321,6.98473,1.5402266666666666,2.824805,2.25311,4.014673,2.33544,3.290035,3.49506,3.46803,4.50927,3.162355,6.50179,2.386855,2.79668,3.049895,1.55673,2.39732,2.63921,2.822225,1.728845,1.419765,2.2172,4.22336,5.2582466666666665,2.36358,2.915915,1.4034,4.23155,3.8670000000000004,4.010533333333333,2.869625,24.822882338980463,2.5322786666666666,2.5917600000000003,3.0171200000000002,3.422633333333333,3.2043433333333335,5.704033333333333,3.1401166666666662,2.37631,3.4063666666666665,3.4690666666666665,2.18904,3.2790266666666668,3.4080999999999997,3.11427,1.7064166666666667,1.6521054999999998,0.582723,2.2945100000000003,1.9895175,0.220723125,2.1852133333333335,2.632465,0.220723125,0.220723125,2.112973125,0.220723125,0.220723125,0.220723125,0.220723125,2.825763333333333,2.57808,0.5589461538461539,3.2567589285714282,1.44198,1.887648,5.3905,4.307370000000001,6.1167925,2.0569125,4.92963,1.98594,2.7581433333333334,1.2812571428571429,5.815063333333334,2.8704666666666667,6.130952499999999,0.8465250000000001,1.5039075,4.68245,4.72553,34.77665553060828,1.590122,1.4573099999999999,2.30828,2.32566,0.8985045454545454,2.352273333333333,2.333126666666667,2.7034333333333334,1.9937366666666667,2.4299766666666667,1.7103633333333332,2.46884,2.3630333333333335,2.1881666666666666,2.7521400000000003,2.4248600000000002,3.973355,3.4426,1.1367485714285714,4.011125,4.13857,19.782316333333334,2.659263333333333,3.28691,2.55695,0.851972,3.2274659999999997,1.6335086666666667,3.2274659999999997,2.3206333333333333,2.46077,2.78613,1.636815,1.881505,4.203745,4.09798,5.0978,4.271985,1.621718,5.03185,1.646635,4.902005,3.999163619047619,4.44026,0.7503218181818181,2.013945,2.0571625,2.739602,3.41496,1.08974125,3.28419,1.8733080000000002,2.04543,1.072036,1.072036,3.19316,2.5783333333333336,4.352435,28.2580675,6.139749999999999,1.8760933333333334,3.6014566666666665,0.389776,5.715987500000001,6.12745,2.7147166666666664,3.361955,5.391477500000001,3.5799,1.12173,4.441445,1.256978,2.89955,4.392965,4.642495,2.111685,3.16028,4.55749,2.61581,2.7289575,4.046265,1.3754733333333335,2.3903854166666667,3.674145,5.337825,2.438686666666667,3.03809,2.7455233333333333,4.012835,4.02726,4.079395,4.1882,1.80722,5.96288,2.573865,1.748122,4.086105,5.99574,4.200375,3.39687,0.71346125,3.049635,3.607705,2.019555,4.752578000000001,2.779585,4.033945,2.8578466666666666,3.4605,2.55316,3.1409266666666666,2.889623333333333,3.089916666666667,4.22678,5.5395,3.62692,1.802225,3.94113,4.20999,1.869695,2.073575,1.70345,3.902191666666667,4.51258,5.120586666666667,4.023315,3.4185666666666665,3.593755,3.0851100000000002,1.3921849999999998,3.177835,2.931215,3.116675,4.82665,4.562235,4.325085,2.933665,1.839295,1.7231,1.47159,3.65689,2.38727,2.27296,3.269845,4.900635,1.57873,5.202,1.39413,1.841925,3.28639,3.063255,3.138085,3.679905,3.194685,1.756285,0.9886798421052632,3.06404,4.828808333333334,4.384945,8.78169,3.0218966666666667,3.0033133333333333,1.6108799999999999,2.7466899999999996,2.6291100000000003,1.2322166666666667,2.93538,2.5927466666666668,3.11309,3.9346666666666668,3.113296666666667,6.961836666666667,3.0525333333333333,0.7576481818181818,1.6326066666666668,3.39247,3.33581,3.329925,3.491766666666667,2.540093,3.148035,2.72393,1.9674604285714286,3.9057,2.5740016666666663,3.443435,2.0933699999999997,4.752865,4.41542,4.35275,3.518425,3.68924,0.9035777777777777,4.585955,2.809143333333333,2.8549366666666667,4.40272,2.7046166666666664,2.6982133333333334,0.3535057142857143,0.3535057142857143,4.399148333333333,3.964835,7.0496,3.11175,4.67462,3.71251,3.18341,4.932165,4.02421,1.05275375,3.913135,2.7176066666666667,4.1577858333333335,2.88362,3.034476666666667,1.8177466666666666,3.2178996428571427,2.3567633333333333,2.845853333333333,2.5067733333333333,2.80832,2.02664,22.14303856225296,3.98333,3.70131,3.950055,3.250285,4.261845,3.378215,4.514455,4.120245,3.81084,3.4808,3.839185,2.605636666666667,2.8034233333333334,2.9477266666666666,2.954536666666667,2.827413333333333,4.287825,3.522695,4.8158175,5.0385,4.293225,1.238994,1.355154,1.355154,5.0484,3.78497,2.6802200000000003,2.31472,2.9180533333333334,3.29549,3.12827,7.680401666666667,3.2004866666666665,3.4685666666666664,3.1251933333333337,5.22625,1.5972766666666667,5.8092375,2.4311599999999998,2.89785,1.74345,3.66271,2.620595,6.35159,3.21068,2.473955,4.18158,4.252948666666667,1.52062,2.520043333333333,1.6297966666666666,7.366783,4.28713,6.6864766666666675,2.2668725,3.924555,3.661255,3.97448,5.0652,3.399266666666667,3.399266666666667,2.115995,4.26776,4.98794,2.50284,6.671187142857143,1.6227475,5.811,8.089206333333333,3.5764333333333336,4.144152666666667,2.3200333333333334,2.051,0.50905125,4.390775,2.490975,2.68795,3.658978,2.33143,2.4505666666666666,3.63282,5.9288,5.2921,5.1423,4.78541,4.13427,2.191805,1.0327363636363636,2.95806,3.25364,2.7456866666666664,4.944125,4.01749,3.119655,2.622525,1.878858,4.133235,1.02004625,5.17385,1.0011555555555556,5.37555,3.377785,4.632505,4.989175,3.126315,3.178385,3.1056000000000004,2.35982,3.9566,3.00035,2.57253,3.60628,4.90672,5.620749999999999,4.67056,1.5980525,3.4525,3.04459,5.551753333333334,1.8694825,1.8694825,2.9047533333333333,2.4135733333333333,2.5145033333333333,2.62668,0.8356429999999999,6.26045,3.25685,1.87422,2.34221,2.643075,3.666625,2.623555,3.75072,5.1785,5.2731,4.85948,6.1469,5.8592,1.3268375,3.752215,1.1086,2.549925,4.3057,2.558275,3.037435,3.232195,4.615885,3.01586,0.43219315789473683,4.46839,4.180725,4.99772,3.31352,4.709485,5.43235,4.23774,4.254775,1.764325,4.58731,2.0397875,4.262433333333333,4.262433333333333,6.47905,5.66485,5.48365,4.958325,2.5981,1.5972766666666667,4.19372,1.8838533333333334,1.66012,1.97514,4.128005,4.00174,4.279495,8.21876,1.6124733333333332,5.1292,1.2234416666666668,3.19776,5.9857,2.0100425,4.695935,2.7042066666666664,4.76232,3.469275,4.81392,3.5157666666666665,4.17166,3.95267,5.9348,4.223105,3.8782,3.84058,5.74745,4.013795,4.64017,3.71313,4.10961,6.861833333333333,3.51153,7.34625,3.330855,5.4722,5.972865227272727,4.17135,3.63204,1.5892225,5.7163,3.954435,0.9051344444444445,8.64456,5.947,5.02695,3.06513,4.99453,2.947325,1.6672360000000002,4.07493,1.1116633333333332,6.31695,2.978735,4.542425,5.4077,4.316705,4.09027,2.10011,4.39761,5.16655,1.629895,7.271001666666667,3.096425,3.406575,5.0118,4.289175,2.113305,4.43225,3.584355,3.726205,2.6842,4.050635,3.728685,5.294,4.72679,3.206495,1.8784925,1.8784925,7.434241666666667,1.3309742857142857,5.16115,4.18564,4.943115,3.437105,3.59887,5.0285,3.921895,0.9842116666666666,0.9842116666666666,0.9842116666666666,3.5345,3.084445,3.88645,4.568492888888889,2.629085,1.4328616666666667,4.318115,2.113305,2.676525,3.99243,4.50644,2.2143625,2.13624,5.67891,3.655345,3.16872,4.254265,1.6892025,1.9607,3.3152333333333335,2.603085,5.17475,1.423166,1.607734,1.047385,3.928515,3.320665,2.8302933333333335,2.9237933333333337,5.42135,1.7210619999999999,2.0376275,3.13829,1.6815,3.13051,3.597945,2.50705,5.7437,5.50405,2.836035,4.43929,3.655195,3.53434,3.391235,3.94435,3.567785,6.66465,5.15325,1.8733899999999999,1.7963333333333333,3.60183,4.66323,4.090735,3.469765,2.85224,4.01883,6.1008,4.90417,2.7312333333333334,5.22975,3.905885,3.728105,8.0959,3.993735,0.7231154545454546,3.90801,4.151298333333333,2.518495,3.891115,3.7656333333333336,5.89535,3.908185,3.633375,3.7053,4.420295,4.55716,4.63578,2.93661,3.909315,4.778115,3.92093,2.516765,3.071495,6.28576,5.2878,2.00984,3.155575,4.153808333333334,3.827675,5.0223,4.18878,2.52028,0.8708,4.544151818181819,6.176347499999999,3.269805,4.637865,3.55576,6.720886666666667,3.701515,3.741,2.8087133333333334,3.785155,1.96274,3.30124,4.471235,2.5495335,3.872455,5.93735,1.4991675,4.779695,0.6333664285714286,6.24245,6.37055,5.8832,6.1649,1.5646516666666666,1.6384166666666669,4.48988,1.94043,5.1268,0.5253825,6.0316,3.16137,1.513188,6.2934075,6.5552,0.8321025,1.8264905,1.310314,1.310314,1.310314,2.2825366666666667,4.78789,3.649935,3.164295,3.9892,5.1679,3.855455,1.905546,4.17522,4.956965,0.3022682926829268,3.68043,4.724575,4.373185,38.95613975,5.803205,5.074,10.783155333333333,3.00354,4.23228,7.1104666666666665,3.22917,4.97063,3.87219,4.0291,9.017855,3.779445,2.7178466666666665,2.664395,4.40134,4.244655,3.58228,4.422005,2.056,4.480545,4.318115,6.509938,4.087625,4.686355,2.359885,4.25418,0.508493125,1.4460733333333333,3.37652,6.13925,2.811945,1.2170666666666665,1.2170666666666665,3.07138,3.836545,4.42818,2.567805,1.5905566666666668,3.562995,4.297165,1.767915,3.2462466666666665,1.646452,1.8551466666666665,4.022825,4.499905,2.0713725,4.516035,2.3297725,2.200225,3.662025,3.716015,4.053545,3.872035,6.242653,2.5071380000000003,3.607635,0.7153127272727272,0.675385,3.639975,2.196095,8.66055,3.320683333333333,5.01905,1.6816725,4.541525,1.5319333333333331,3.91283,4.37177,2.5353733333333333,3.730315,4.817235,0.410945,0.410945,3.8106333333333335,3.206853333333333,2.8823166666666666,3.664615,3.7578,5.50005,1.0237454545454545,9.984725,10.558769999999999,1.8809375,4.500522500000001,4.6054,4.77502,3.658145,2.5061966666666664,2.0156199999999997,2.0276,9.666830000000001,2.1713075,2.6996533333333335,3.5649539999999997,4.57591,3.5649539999999997,2.109585,2.955603333333333,2.7320966666666666,0.7099581818181818,5.366163333333333,2.8946,2.7780633333333333,3.83375,8.77412,10.60165,4.18544,4.024515,4.164805,6.5299825,1.9073675,1.378575,25.90479416666667,4.10977,3.80729,0.96975,4.351685,4.04665,5.5969,4.61739,5.35575,5.504166666666666,3.0604833333333334,2.0695099999999997,0.6524529411764706,0.7304091666666667,4.427175,5.2568,1.3615533333333334,4.356816666666667,0.9160833333333334,3.7216666666666662,1.39965,4.36015,5.7941,1.90104,2.50575,2.416635,3.82116,2.93124,0.4347122222222222,3.8853,3.608895,2.768216666666667,3.3625,4.796045,2.8773366666666664,4.25187,3.175755,4.468385,8.25045,4.7429,8.308095,2.692975,2.5209,4.374395,4.441325,4.464765,4.46703,3.7334,4.704405,1.1802,3.28217875,3.1642497857142855,0.612568,1.355154,1.355154,4.107665,7.527469999999999,0.8340692307692308,4.89657,0.8958583333333333,2.9377099999999996,2.3203866666666664,2.548295,6.371188888888889,2.4860866666666666,1.131722222222222,2.45472,1.20701375,2.0599133333333333,3.3037233333333336,3.03107,3.1764799999999997,2.452706666666667,0.8958583333333333,4.50614,4.671515,5.38535,2.64365,3.93801,2.13492,5.8973,4.7428,4.41799,2.9664366666666666,3.27806,2.1487025,1.49187,4.098815,2.671725,4.25022,5.64405,1.6385100000000001,4.632115,2.9252866666666666,6.401456666666666,3.57639,2.38219,0.8958583333333333,2.368975,2.97733,7.528900944444445,2.3507966666666666,1.787634,2.3507966666666666,0.42571916666666665,1.110408,3.925735,2.671475,1.661245,3.60826,3.9482369999999998,0.717822,0.717822,0.717822,8.299745000000001,1.543366,0.7305472727272728,2.62211,38.49300919264069,1.8869551111111111,0.6908911111111111,3.1533925,0.6908911111111111,3.735425,1.971125,2.30409,2.4935566666666666,5.27015,3.968675,4.430375,2.4464099999999998,0.9364942857142857,4.29095,3.32178,5.0941,1.0325900000000001,3.0263,3.0263,3.893365,4.48672,3.48868,4.552776923076923,3.305935,4.71602,5.2602,1.853608,1.03768875,5.2938,6.58395,3.823745,0.690171,4.29361,4.125026666666667,0.91186375,4.461445,2.450685,3.963435,4.48036,1.859767272727273,1.859767272727273,4.05045,3.405415,0.8824522222222222,3.07456,3.0277999999999996,3.25376,4.029525,4.34095,0.4980257142857143,0.3248835294117647,0.3248835294117647,0.3248835294117647,0.822909243697479,0.5920769230769231,0.6567040000000001,0.3248835294117647,0.3248835294117647,6.934115,0.3248835294117647,0.822909243697479,3.61851,1.2461875,4.830605,1.2148883333333333,0.5764038461538461,0.91186375,2.58701,2.6268,4.022375,3.226975,0.3248835294117647,0.3248835294117647,4.34306,3.790545,4.14011,2.693295,4.026255,1.469824,3.83408,0.6567040000000001,0.6567040000000001,4.789585,3.11744,2.804615,2.934085,3.8164433333333334,1.0843099999999999,0.9079307692307693,10.207275,1.291275,3.70083,4.540565,5.0368,1.9857559999999999,0.3745230434782609,0.90280125,2.79869,3.33021,3.136235,4.300665,1.312528,5.8042,3.381805,5.060475,4.173975,2.93922,2.95575,6.611608333333333,2.5505233333333335,4.66529,4.125245,3.892123333333333,5.998065,0.5408433333333333,4.38165,3.4339,2.09822,0.6902044444444444,3.957915,4.22011,2.93467,2.45856,2.140445,5.04025,2.822965,2.81439,1.012246,0.46308692307692306,3.91932,0.3479986666666666,0.7780854545454545,4.019855,3.01737,3.9625,2.682135,5.58985,4.3242,5.994963666666667,3.57339,3.398795,4.350795,1.5568225,5.2930375000000005,1.7740379999999998,4.00905,2.4010525,5.894970000000001,2.48349,1.023096,4.456885,6.8944675,6.617954583333334,3.3499666666666665,0.8002791666666668,2.9019433333333335,4.184935,3.976655,4.47861,4.456545,4.05968,4.920005,3.237425,4.26092,1.7749033333333333,2.26959,1.5060733333333334,4.03942,9.30707,2.77064,3.685915,5.75925,2.754615,4.126965,2.5249633333333334,2.957001,3.28859,3.219355,3.470365,3.13247,3.821115,5.0397,5.7411,4.23289,4.70593,4.89125,3.786985,2.64371,5.03625,7.629075,0.91823,3.893875,4.09621,4.83857,5.7356,4.855005,2.821535,7.7366399999999995,2.4769466666666666,3.338185,6.04335,3.72535,4.309305,2.17928,1.718485,2.9843100000000002,2.0675433333333335,1.8611866666666668,2.8842766666666666,4.176615,4.593145,4.1098,3.463215,4.766013333333333,3.28058,3.12988,4.030055,5.9043,2.9067,5.395830166666667,3.76504,3.85434,3.603615,7.62701,3.7044,3.760495,4.305475,4.89808,3.263325,10.7679,1.3036533333333333,2.37684,3.78376,2.7152733333333336,2.7152733333333336,1.967875,7.965248333333333,0.8698744444444445,3.06203,0.9074525,2.0376275,4.34179,5.2284,3.92296,4.071525,2.80992,3.305655,3.72731,3.770095,4.16399,3.00062,2.56746,4.08718,4.724380833333333,3.283275,4.180765,1.6165420000000001,1.6656,2.6940500000000003,5.6099,2.145635,1.7253633333333334,1.9801725,4.091675,4.626905,3.12168,2.878595,0.4649066666666667,2.340105,7.454115,3.19939,1.5165333333333333,0.83382625,1.34436,1.9802366666666666,2.2977475,1.3321033333333332,2.0988333333333333,4.448052499999999,3.88474,4.649645,2.4312333333333336,1.928005,6.211650000000001,2.8953,2.0648916666666666,2.0648916666666666,2.0648916666666666,6.492213333333334,2.301746666666667,3.5755,2.382655,0.45157200000000003,1.124256,2.20458,5.76562,0.44414166666666666,3.823135,3.9848741666666667,5.92545,3.1884983333333334,0.44414166666666666,3.1884983333333334,0.94003125,1.213016,5.2909,3.87822,6.727157500000001,3.996005,4.759515,3.685955,4.111265,5.0163,5.5326,6.05,3.72926,3.415905,5.11885,4.675305,4.21668,4.48269,4.292155,1.3340583333333333,2.6145333333333336,1.2119075,2.1344025,3.1933144444444443,1.5521044444444443,6.808457499999999,5.551753333333334,2.699393333333333,4.220375,3.02118,4.880025,2.9678,4.062565,4.884715,9.384031666666667,5.0993,4.446385,2.4264325,2.70858,2.07722,0.5413,2.185018888888889,5.939,5.39025,4.968795,4.352665,0.5866846666666666,2.0096125,1.4121025,4.21908,0.7249469230769231,6.2636375,2.0089325,1.172625,1.172625,4.004860000000001,2.0316400000000003,2.984303333333333,2.59784,4.620265,3.557665,3.557665,4.34513,5.66919,2.853536666666667,2.440186666666667,3.354033333333333,4.82398,1.8247520000000002,2.7920766666666665,5.5757,5.05105,4.852675,4.160425,3.85197,4.50522,3.5398058333333333,3.1766633333333334,2.33948,4.234655,5.30295,3.17601375,4.974745,5.51175,2.05705,2.3898733333333335,6.1465,7.0139,1.221456,2.72275,2.355655,2.656746666666667,2.3449275,2.511625,2.6961465000000002,1.0228766666666667,1.9078425,2.67275,2.2775525,2.2628833333333334,2.2628833333333334,3.014259,2.941475,2.1875074999999997,2.6436,2.354685,2.01368,1.5655700000000001,5.2029675,14.765884833333335,2.793253333333333,3.1397166666666667,1.8243960000000001,1.8243960000000001,1.5865033333333332,1.5865033333333332,2.8382466666666666,3.652533333333333,2.8387499999999997,1.948865,1.948865,3.886366666666667,2.28967,1.0553733333333333,1.3933414285714285,3.010733333333333,2.9241166666666665,3.5251,2.6202233333333336,3.31616,3.0831733333333333,0.668685,2.62015,3.6099266666666665,6.985623333333333,4.661505,5.44425,4.25991,3.47852,4.790045,4.57654,2.78228,4.05869,1.3762533333333333,3.1824166666666667,5.7189,5.41045,2.54721,0.9916833333333334,2.892665,2.29699,3.0061033333333333,1.5433816666666667,0.709435,3.0650933333333334,4.506598333333333,4.866345,4.106915,4.842615,3.039343333333333,2.0593033333333333,3.2489683333333335,2.6116266666666665,3.20153,3.14338,3.3019133333333333,2.596486666666667,2.2210666666666667,3.706633333333333,2.8849699999999996,5.2246,4.627205,5.157273333333333,5.157273333333333,3.41925,4.14576,3.77172,3.78752,2.804895,4.33142,3.403095,3.0585799999999996,6.3191,0.7284041666666666,5.2285,4.774965,2.47719,5.080395833333333,3.534133333333333,1.8586333333333334,1.2910428571428572,2.14211,0.996137,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.31402928571428573,0.5259285714285714,0.5259285714285714,1.2130275,0.8863479166666666,1.7206733712121212,0.9980985714285715,0.9980985714285715,1.2736867045454545,0.44698666666666664,0.41442,1.248445,1.555555,2.54258,2.296025,6.361273333333334,3.0248000000000004,3.83985,2.873345,4.808827428571428,1.2383216666666665,4.63846,4.02706,4.92012,3.067135,1.518714,4.1318769230769234,3.61395,4.470275,4.29349,2.7259,4.973765,4.601215,4.641425,1.2418179999999999,3.84329,4.672475,3.14687,2.379706666666667,3.377855,2.45625,3.346785,4.497115,3.0139633333333333,4.79188,8.84327,3.323295,4.973925,4.26725,4.399813333333334,2.5907133333333334,4.58685,1.006992857142857,4.216105,3.427845,2.17216,1.17269875,2.927045,1.3243416666666665,0.500978,3.493,4.111435,5.20092,3.7111666666666667,2.562225,2.4089,4.751885,3.945066666666667,4.52772,2.6392,2.2924533333333335,3.98854,3.70271,4.077715,5.062,4.279425,3.72264,4.737835,3.075836666666667,4.06075,2.18361,4.55182,5.11075,3.25637,4.25405,2.5225,3.760705,5.65585,4.09402,5.26025,4.699775,4.893175,2.3965166666666664,4.85042,4.969435,4.826415,2.1701525,1.0280975,4.051935,4.607155,4.22374,4.995405,1.72916,3.86775,2.310155,5.0404,4.57913,4.61008,2.3544225,4.262655,4.65492,4.30725,2.5294133333333333,4.64091,4.603765,5.2333,3.627055,2.1701525,2.36069,2.88071,5.12445,4.035125,4.199965,3.534715,4.90947,2.356825,6.64981,5.5073,4.655335,5.3486462291666665,5.14875,5.26895,3.464885,2.9582966666666666,2.9582966666666666,3.919325,3.446575,4.59337,2.1017725,2.8733825,0.984925,2.5571633333333335,3.0675899999999996,2.45414,3.01493,4.329115,2.8078133333333333,5.1425,2.5664433333333334,4.628055,5.02664,1.86051,4.30731,2.8303,2.6520733333333335,4.005855,0.897299,5.18585,4.52922,6.004372500000001,4.487115,5.536,1.3413199999999998,4.56051,6.55955,8.265305,3.24598,3.20921,1.9285039999999998,0.7916909999999999,3.83101,1.0203985714285715,4.87658,4.525965,5.64885,3.209525,3.770485,1.0942657142857144,3.681935,3.613275,4.416105,3.921345,2.98745,2.789445,2.3940675,4.2244,4.739195,5.7543,4.42018,3.51021,0.41520666666666667,0.41520666666666667,0.41520666666666667,0.41520666666666667,5.7711,3.01813,6.2514,3.1021666666666667,5.01135,4.68348,3.54744,2.24564,2.510266666666667,1.4509100000000001,5.0482,2.7519899999999997,4.258955,3.779675,3.55558,1.63405,1.14448875,4.449445,2.378395,5.914618333333333,3.96383,4.74511,2.387435,1.485975,0.8875933333333333,3.294985,4.29062,3.90353,2.11407,8.036529999999999,4.683515,3.52311,2.2088200000000002,0.48250400000000004,3.54741,2.771835,2.04814,2.098255,2.8123,2.74098,2.181345,2.8828899999999997,2.839605,3.33324,4.478015,3.828425,4.21115,3.104565,5.902546666666667,0.6157853333333333,4.537065,5.6831,5.0397,4.56867,3.4389333333333334,5.14705,4.407835,4.129315,5.3402,5.2908,4.5041,4.51485,3.74425,4.982615,3.03954,9.01,4.959875,4.228665,4.644005,5.04065,5.6754,3.55309,1.117688888888889,5.9944749999999996,3.417305,4.70936,1.3895666666666668,4.36024,3.4797,6.766996666666667,4.59367,3.142845,1.8714899999999999,4.91849,2.1000199999999998,0.89817625,4.44852,6.17565,2.0332666666666666,2.42875,2.900586666666667,3.143885,3.640355,3.753185,5.0929,1.7459966666666666,4.255765,3.9899235,3.30832,3.7214666666666667,3.79335,2.946605,2.59221,1.8794675,2.5075499999999997,2.6620066666666666,4.428575,0.5879658333333333,2.60958,4.154375,2.994195,3.5529666666666664,4.471695,4.98242,3.953125,16.660180393939395,2.5904433333333334,4.045633333333334,1.458242,0.9081927272727272,0.9081927272727272,0.9081927272727272,0.9081927272727272,0.9081927272727272,4.761415,4.71288,4.77213,8.904759,2.4650375,2.4650375,4.57356,4.481083333333333,1.30404,2.10804,3.763725,2.4311975,2.35064,2.2307525,3.003025,3.8200760000000002,1.7012775,3.49361,0.8324571428571429,2.913346666666667,2.763246666666667,3.06261,1.4404466666666667,3.0353600000000003,2.2737833333333333,0.9665875,2.7520566666666664,2.708763333333333,1.2983666666666667,2.454763333333333,2.6610733333333334,2.06133,4.390806666666667,1.7849300000000001,2.8855,2.0741825,2.759843333333333,1.1157333333333335,2.797136666666667,4.60411,3.570066666666667,1.0327825,2.9679566666666664,1.404945,2.3603366666666665,2.274783333333333,4.713115,2.9894233333333333,2.51669,4.625858,2.6073133333333334,2.17316,2.775166666666667,2.3919966666666665,1.6364166666666666,2.80541,3.10429,3.0464266666666666,2.5347866666666667,3.0532333333333335,2.6016333333333335,2.4221775,3.7138915,3.7138915,3.063136666666667,1.9864866666666667,1.9318,2.4575366666666665,5.484483333333333,2.91663,1.9840466666666667,1.7057575,3.03134,4.35963,2.433266666666667,1.1230959999999999,2.8679093333333334,1.5051033333333335,3.6744333333333334,2.0375099999999997,2.405743333333333,2.0908533333333335,2.8933966666666664,1.256256,1.6214066666666669,1.4794600000000002,4.259243333333334,2.61298,4.05671,1.07272,4.09782,1.9848533333333334,2.005445,1.760314,1.5837583333333332,3.2410266666666665,23.084553255411254,7.535500000000001,2.6580766666666666,3.4613424999999998,2.678976666666667,10.003613999999999,3.039846666666667,1.00503375,2.55682,2.317536666666667,2.0342333333333333,2.9511033333333336,2.57658,2.5337666666666667,0.966174,3.2244233333333336,2.546046666666667,2.9869233333333334,2.8522533333333335,2.61842,2.1520266666666665,2.19167,2.81694,2.62939,2.0933825,1.579716,5.279775,4.61728,2.319735,3.00005,2.258366666666667,2.47297,8.439059166666667,2.0960466666666666,4.84383,2.4567975,1.872075,7.43263,2.9490966666666663,2.7826466666666665,2.473535,1.8681139999999998,1.445833076923077,3.244923333333333,3.0010399999999997,4.407095,1.43602,3.553266666666667,1.4431925,1.4431925,4.314235,3.813685,3.5272257142857137,3.5272257142857137,5.847436666666667,3.412105,0.432564,11.76616287240537,1.2562633333333333,0.9340757142857142,3.66706,1.4407029914529914,2.0338575,6.265796666666667,3.67818,0.7300927272727272,2.14472,4.972515757575758,2.3966403333333335,4.12812,1.2825771428571429,5.33755,5.0547,4.683815,3.21558475,1.88823,2.4037266666666666,2.5507566666666666,2.3417966666666667,2.1773599999999997,5.048590000000001,4.49721,4.113885,1.9226375,4.716555,4.184965,3.3534333333333333,2.158945,5.01355,2.529916666666667,8.954133333333333,6.43361,1.819905,2.14275,1.7616340000000001,4.606466666666667,4.606466666666667,3.0112400000000004,2.743126666666667,3.2388461666666664,4.72085,9.732420000000001,4.22527,2.4913525,5.3648,4.37765,5.159,2.00622,0.8608375,1.3209283333333333,4.51029,4.7963,3.6931666666666665,2.8177033333333337,3.8260666666666663,2.2359966666666664,3.907545,4.685625,3.34056,5.4536,3.2195633333333333,3.6713313333333337,3.2375433333333334,3.2767766666666667,3.4433666666666665,6.20735,2.8372,5.35055,4.59749,3.36255,3.344925,3.344925,5.6527899999999995,11.93736,3.5864333333333334,6.232115,7.2689111111111115,3.632695,2.4885533333333334,4.022625,1.2792233333333334,3.611345,2.586125,2.9599499999999996,2.96044,3.3323466666666666,2.06848,2.3280933333333333,2.73722,2.5060033333333336,2.936056666666667,3.0680433333333332,3.898675,2.5230900000000003,2.9410066666666665,3.900545,2.705666666666667,2.58356,1.14145125,2.0813075,2.8414633333333335,2.4179666666666666,2.5245333333333333,2.4541333333333335,3.4677000000000002,2.5071133333333333,2.55641,2.5283533333333335,2.9891366666666666,2.6721733333333333,2.8203566666666666,2.6092733333333333,3.13617,2.8106066666666667,3.303432,2.6029466666666665,2.4525866666666665,2.300143333333333,2.6841000000000004,2.5657433333333333,3.4886666666666666,3.2965199999999997,2.959055,1.9523425,1.9523425,0.8982733333333334,1.493948,4.24886,3.385695,2.5871066666666667,2.06848,3.1743900000000003,1.2159814285714285,2.7008733333333335,0.55117,3.4251666666666662,3.085183333333333,3.379995,2.960043333333333,2.61641,2.497036666666667,2.9364866666666667,2.7379766666666665,3.340533333333333,4.53444,1.52142,2.6540066666666666,2.4578533333333334,1.7942933333333333,2.2184633333333332,2.8070766666666667,2.61477,1.621022,2.5883066666666665,2.6075566666666665,2.5736066666666666,2.6225566666666666,2.751533333333333,2.8614800000000002,3.19102,1.37027,2.7231400000000003,2.3261833333333333,3.567833333333333,3.932866666666667,1.937535,2.1855433333333334,3.2391633333333334,2.5274566666666667,3.2698699999999996,2.68751,2.2983766666666665,5.529249999999999,3.4835999999999996,2.025333333333333,1.557742,3.3020766666666668,6.2736133333333335,3.002186666666667,3.550933333333333,2.895566666666667,2.9984633333333335,4.561203333333333,1.59711,1.1384444444444446,2.17785,1.7432983333333334,4.59666,2.80344,3.2341033333333336,3.045363333333333,3.2144399999999997,2.18966,3.4069333333333334,2.567475,1.61729,2.8492633333333335,3.480485,3.5942575000000003,3.18194,3.66673,1.7020025,2.90525,3.46859,3.203445,2.442633333333333,3.6597666666666666,3.9191333333333334,3.8059,1.2919525,5.5247150000000005,3.1619962499999996,1.4729116666666666,3.22605,3.36347,2.93221,3.8514,1.8024159999999998,1.8024159999999998,3.1997966666666664,2.9498800000000003,2.96405,5.0926,4.23145,4.495114666666667,1.596068,3.22646,2.5853533333333334,4.3115950000000005,3.053323333333333,4.800866666666667,2.60427,2.40104,2.5089200000000003,3.82269,3.8353,1.612098,3.0852299999999997,2.8207,2.356015,4.348605,1.30127,2.982825,4.171925,2.780305,3.556475,4.045965,1.79272,1.5826933333333333,2.4184,1.0470316666666666,2.051134523809524,1.90606,0.44373071428571426,3.816725,2.540365,4.4758,4.303795,2.784295,4.7075825,3.3735,3.0502233333333333,3.427,2.4557533333333335,3.31749,2.73231,3.1308399999999996,2.3165299999999998,0.6618246153846153,2.3156666666666665,0.6222492857142857,1.9724266666666666,2.4201133333333336,3.173363333333333,3.04386,1.4238033333333335,1.27002,4.29216,4.47712,3.06001,3.8879599999999996,3.135595,2.02568,3.953405,7.769284444444445,3.361995,5.185017500000001,1.648285,3.94761,2.0734,4.3899,3.78011,2.05547,3.883075,3.24773,3.817355,4.15185,2.127855,4.163865,6.1679125,4.989945,3.48043,3.07387,1.73453,2.0295575,3.863595,3.315485,3.175465,3.712215,3.61619,3.34578,1.59955,3.771395,3.17713,1.6963125,4.1901150000000005,1.0616916666666667,3.403505,1.6918925,3.98621,4.495261666666666,3.60538,2.91377,3.72266,3.355505,1.895435,2.285375,3.8884000000000003,3.020345,5.98769,4.198095,4.384225,2.64044,2.5321,4.63839,4.46036,2.1952119999999997,2.1952119999999997,5.873708666666667,3.8572420000000003,2.65342,2.812915,2.077706666666667,2.84068,3.316395,3.7041391666666668,2.7065845,3.25557,0.9720599999999999,3.81328,3.03023,4.104625,2.540075,1.5117325,1.441085,3.0027,5.914185,5.6224025,3.592845,1.6023275,4.257325,3.74141,0.878485,3.0199,1.377324,5.385875,1.4414150000000001,3.714295,1.94512,1.4238033333333335,3.111215,2.92005,4.72363,6.811724999999999,3.98838,4.711084166666667,2.429065,2.764325,4.102855,3.872145,4.21261,4.29345,1.20319,1.6521054999999998,1.0693825,2.60655,1.948745,4.902605,1.0693825,4.1872,2.316275,1.541055,1.541055,1.6963125,3.94888,4.257755,3.779035,1.498594,1.498594,0.9593833333333334,3.196365,2.123785,6.026059999999999,4.226625,3.81357,2.8737133333333333,0.9780557142857144,3.51326,2.809795,4.22941,3.56833,3.9544025,3.9544025,3.416485,4.019215,1.8432225,2.88102,0.9775411111111111,2.0992966666666666,3.60184,2.425683333333333,3.256311666666667,3.256311666666667,2.767535,4.558315,4.353435,3.33604,3.633835,4.017605,2.4982866666666665,4.338069166666667,2.849795,3.79868,8.318635,4.78954,2.730635,3.16113,3.07247,4.75376,3.0917960000000004,7.7338925,4.561567999999999,4.612865,3.535635,3.825325,3.689475,4.59954,4.756085,2.470225,4.685885,6.399666666666667,2.73736,2.127276222222222,3.09904,3.320245,3.78749,6.0413,2.20677,2.6114333333333333,3.052805,3.1677675,3.4146,7.199320666666667,1.530005,4.772553333333334,4.772553333333334,3.338065,4.0219475000000005,3.088105,2.55513,5.19367,4.285573,2.1624546666666666,3.865405,4.02066,3.431069166666667,2.846845,2.92522,5.925056666666666,3.41767,5.3647,3.32431,4.65221,4.132195,3.715995,2.9498800000000003,2.0556633333333334,2.95591,3.86605,3.03115,3.21429,2.65396,6.153116666666667,2.560895,1.808675,3.2179816666666667,2.3362866666666666,3.996095,2.659975,0.878485,3.83239,4.14133,3.866575,5.9395025,3.109145,3.074315,2.955856666666667,2.955856666666667,3.959755,4.1348,3.64037,2.0394925,5.8145975,2.11621,4.56239,3.699105,7.82749,2.82051,1.3032133333333333,3.21271,4.427965,0.71612875,4.01238,3.645395,2.91279,2.994,4.172605,2.1248533333333333,2.46925,9.01827,3.41194,3.3716,1.4414150000000001,3.88589,2.656815,2.41697,4.141445,5.25997,1.63545,1.1751216666666666,1.0789666666666666,4.386055,4.54837,3.732765,3.3907175,3.3907175,1.59955,2.36024,3.205744444444444,0.9357644444444444,3.04693,1.0362,1.7020025,3.32948,3.498755,2.81958,2.657905,2.7193508333333334,4.747285,3.857685,3.013725,2.99187,2.90969,4.21758,6.772085000000001,4.06038,0.88600875,2.6141565,8.78723,4.425455,4.054945,1.1550675,4.822048333333333,1.3939233333333334,3.738375,3.738375,3.773635,8.653755,0.8374722222222223,4.60611,4.25708,2.3661533333333336,4.1844075,3.67985,2.1365175,10.112897333333333,1.78516,2.473336666666667,3.336025,1.6916066666666667,4.2896685833333335,3.160745,3.392455,3.4632153333333333,2.866315,3.048085,1.06537,6.986,4.01771,3.7618,3.834415,1.8974075,2.91377,4.160934166666666,3.62966,0.6287007692307692,3.93664,4.156355,4.68056,2.0648375,1.425932,4.135255,4.19711,8.98943,0.6969484615384616,0.791115,0.791115,1.9163233333333334,1.3126366666666667,1.501874,1.8340100000000001,4.657275,1.28864,0.9112328571428572,3.9390875,3.470735,1.2155,3.375975,4.51848,3.727505,0.712608,2.21259,9.2745,3.397785,3.4027,3.355295,1.799105,2.4858733333333336,2.47766,4.396075,4.13073,3.79283,0.8961971428571429,1.34199,0.910816,4.199675,4.317575,4.1,0.9357644444444444,1.7108180000000002,3.812955,2.3630146428571432,5.019775833333334,1.0156925,4.72675,0.5483783333333333,0.5483783333333333,0.5483783333333333,9.676805,3.96595,1.0362,3.81823,4.668905,2.84722,3.2345,5.3123475,2.611715,1.9578144444444443,2.5133300000000003,0.712608,1.5910929999999999,0.5619777777777778,0.853955,1.4415833333333332,4.03356,3.71837,2.00266,7.3577433333333335,4.857670833333334,0.6051422222222222,6.19975,4.91472,3.502295,4.46757,8.026836999999999,3.7687810714285717,4.857670833333334,4.58028075,2.3361933333333336,4.005445,3.544965,7.386645,3.48986,0.48250400000000004,1.5221339999999999,4.042485,1.7574839999999998,1.1751216666666666,3.859025,2.36474,1.701885,3.049865,1.703276,4.451595,4.367915,4.15322,4.72515,6.48294,2.43431,3.855555,1.377324,2.3663325,3.348585,3.318445,2.1624546666666666,4.066995,2.520465,5.09775,2.746835,2.379945,3.3177925000000004,1.7034340000000001,3.32367,0.9357644444444444,2.26003075,1.0789666666666666,1.8036,3.537965,1.530005,1.4415833333333332,1.8886375,3.611645,7.84013,0.8961971428571429,1.1550675,1.310422,3.584495,3.76716,1.310422,3.8908,2.3663325,0.71612875,0.9357644444444444,1.9163233333333334,1.377324,0.44373071428571426,1.6787839999999998,4.315057333333334,2.3661533333333336,1.3572066666666667,2.91176,1.2919525,1.78516,2.79384,2.5133300000000003,5.00985,2.79384,0.878485,2.750498,2.159325,0.08463886363636364,0.08463886363636364,0.08463886363636364,0.08463886363636364,0.08463886363636364,3.33241,2.7298333333333336,2.6400033333333335,2.96768,4.38658,4.19389,1.760314,3.670035,3.620115,2.124825,4.832185,2.743885,2.423935,2.537255,2.75076,4.5035,8.29463,2.24145,1.9400700000000002,3.100225714285714,0.8864757142857143,1.3841083333333335,2.3985,2.0385166666666668,1.48199,2.80125,2.1313999999999997,2.5687166666666665,2.5770933333333335,2.5863333333333336,3.762265,3.398305,2.6156433333333333,1.268268,3.782975,3.67073,1.5433433333333333,1.315448,1.315448,1.315448,3.479845,2.677293333333333,1.1156966666666668,2.2754966666666667,1.3245428571428572,4.25134,1.5339833333333335,6.336,3.2914475000000003,2.54876,3.190538,3.190538,5.261793333333333,3.1188,4.650285,4.618415,2.164235,3.06277 +GSM1946767,1.0,2.0097925,2.0097925,1.59031,5.32425,5.7309,2.397845263157895,1.6012966666666666,7.96669350490196,4.483425,3.0385299999999997,1.950195,2.009495,3.47692,4.264595,1.791324,1.523582,5.13885,2.4879599999999997,2.234015,5.11385,5.1875,4.111575,2.36089,1.7763680000000002,4.003785,4.8939,4.344175,0.7692308333333333,1.634849722222222,1.9337772222222223,1.9695425,2.0764325,1.1872157142857145,0.6943308333333333,3.1833007142857146,1.48819,1.6989675,1.23701,2.12812,1.1585775,1.102795,1.128722,1.503724,0.8735139999999999,0.9259080000000001,0.7300639999999999,1.1965542857142857,1.577688,1.763182,1.527634,2.0573,1.64891,17.59975275,0.380878,0.8251200000000001,1.116864,1.710218,1.68493,1.91703,1.0624957142857143,1.0624957142857143,1.0624957142857143,1.1537383333333333,1.389742,4.64278625,1.1616025,2.200085,2.05796,2.517925,0.999917,2.175855,2.3276175,2.0116525,1.3602225,1.91806,1.5396925,1.63111,2.365066666666667,3.919625,4.487015,4.68219,1.5274966666666667,4.44843,4.348221666666666,3.84139,3.988445,1.033895,7.54242,0.61725125,0.61725125,2.17504,1.0744228571428571,15.881185,4.23403,5.22995,4.90044,4.05192,4.22625,5.03645,0.47342333333333336,2.427777916666667,1.9419625,2.3058725,4.685795,4.051795,1.3956625,3.00682,2.8810000000000002,2.8806766666666666,3.516666666666667,3.430315,4.64004,2.8218530000000004,4.41683,2.93664,0.7262227272727273,1.53329,2.532975,4.69549,4.107655,0.5753775,3.61727,3.890515,0.77984,4.140665,1.7047042857142858,2.13947,2.544625,2.0769825,3.873515,5.4898,3.433125,2.8308066666666662,3.287406666666667,2.9464900000000003,4.047245,2.8682766666666666,5.58925,3.43436,4.443455,3.28671,2.37518,3.649275,2.510975,6.885723333333333,3.882705,3.08296,4.245925,3.045705,4.83146,0.7612055555555556,9.24810880952381,3.70713,2.09631,1.8287049999999998,3.4804666666666666,2.34904,4.893935,5.5343,2.1023325,4.8094525,2.795945,4.66706,2.1023325,2.4528933333333334,4.44171,5.041930833333334,4.58534,8.42016,3.408275,4.69764,2.99276,5.3156,4.62926,1.6713500000000001,8.36793,4.33134,4.02567,3.613385,3.732105,3.44921,2.184205,6.285705,2.313725,3.989275,4.026135,5.01505,4.651985,4.27459,1.5148616666666666,2.70971,2.981225,1.812045,1.812045,6.193669428571429,3.17604,1.9689333333333332,4.34681,4.504415,2.91729,1.4831166666666666,1.1241333333333334,6.91185,2.770235,6.89025,4.43144,4.35676,3.746805,2.937785,3.86018,3.572505,4.022335,4.06224,6.1735,2.78448,3.70542,9.113389999999999,4.479495,3.4756666666666667,3.069036666666667,2.75698,3.8586666666666667,4.21039,1.75862,2.72209,2.1842566666666667,1.6818719999999998,1.7772,2.6042733333333334,1.6957325,2.06113,2.8658300000000003,2.53479,2.33513,3.0902433333333335,4.348221666666666,3.392,3.21919,3.10739,4.843535,1.3651016666666667,2.395505,2.9027388571428574,2.12962,2.581323333333333,2.5235866666666666,3.3147133333333336,1.907838,1.2961966666666667,2.7596566666666664,0.67301,1.5069933333333332,0.5157211111111111,0.5157211111111111,1.5521266666666669,3.0350033333333335,2.5903199999999997,1.2658633333333333,1.5599766666666666,0.31733,2.7795366666666665,0.67301,1.20497,0.25584945945945947,1.46281,2.118325,3.5334333333333334,2.6086899999999997,2.82282,2.5935866666666665,2.47852,2.4009766666666668,2.5828866666666666,2.54661,2.1747433333333333,2.65596,2.1327066666666665,2.70239,4.29408,0.7010116666666667,1.89361,2.6528899999999997,2.0931966666666666,3.4455833333333334,1.567964,2.5866266666666666,2.7344566666666665,4.331356666666666,2.055633333333333,6.805780952380951,1.6252142857142857,2.7439199999999997,1.9649775,2.1456525,3.4358,2.032775,1.9305775,4.22587,2.688496666666667,2.1474575,3.687115,4.005145,4.24762,3.70989,2.23769,3.285485,4.92937,4.21235,3.84502,4.2101,4.3269,3.131235,4.23863,3.60658,0.914735,4.691045,1.3349983333333333,5.2296,3.875645,5.998949,3.75237,4.192565,0.96961375,2.08299,3.50452,4.075375,0.8695185714285715,1.2942552564102565,2.1205766666666666,3.235546,5.0896175,5.52127,2.0974425,3.807195,5.1009,0.3643828571428571,3.741455,2.302895,0.98480875,4.19449,2.074355,11.667365,1.19508375,1.4491375,2.88729,2.29947,1.9767980263157896,4.5512530263157895,0.3835705263157895,1.68609,2.8876866666666667,0.965175,3.2227333333333337,0.9529014285714286,5.29475,3.931855,2.1674599999999997,5.68045,5.27525,2.42804,1.1553585714285715,4.404825,4.99577,4.340075,0.9241181818181818,8.02287,2.82542,4.38775,2.67871,2.5490666666666666,4.5525,2.440863333333333,2.6398333333333333,2.182513333333333,2.4253066666666667,3.110885,2.937303333333333,0.348369375,3.94767,3.80352,3.920065,3.871115,4.44701,6.196078,4.065515,1.64574,5.5009,4.629415,4.110585,4.426395,1.067575,2.9273466666666668,3.298883333333333,2.5130933333333334,15.697244999999999,3.29326,3.916395,4.11446,5.251,2.65753,4.998588888888889,1.71108,0.7609477777777778,2.571975,3.268345,3.752915,3.47927,6.383333333333334,2.8018133333333335,2.208455,2.148345,3.4055,4.181135,2.3606725,0.37604824404761905,2.6373800000000003,1.983665,1.12932875,0.48071824404761904,0.585388244047619,0.37604824404761905,0.37604824404761905,0.37604824404761905,1.1663825,1.31654,0.84607,1.43545,4.306175,0.21517999999999998,11.268060562770563,3.079143333333333,2.746513333333333,4.03774,4.019115,3.986565,2.0417,4.83058,3.9319813333333333,4.254225,3.633125,0.6381023076923077,3.2706033333333333,4.1612256410256405,0.5558928571428571,3.43789,2.89136,4.463585,0.5881036363636364,1.78746,4.574865,3.48458,1.85876,1.7908033333333335,1.62823,3.3417666666666666,3.950975,2.878255,2.77035,5.33165,5.6228,4.635465,3.118736666666667,3.14917,6.253208333333333,3.4946333333333333,5.02945,0.3988857142857143,3.1247733333333336,3.9053966666666664,2.0323233333333333,2.689235,2.877045,4.900258333333333,0.6194725,2.463715,4.39206,4.08595,1.0463842857142858,4.22028,3.01132,4.71009,3.0144266666666666,4.93531,3.523595,4.41902,1.1381483333333333,3.35286,2.67355,4.587805,4.07697,4.251655,5.6008,4.34592,2.593735,5.17307,2.26286,2.767675,3.410966666666667,2.5884733333333334,2.64182,2.3564266666666667,1.761252,1.5071933333333334,2.1157033333333333,0.7930328571428572,1.7444633333333333,2.2503699999999998,2.0103833333333334,3.1628166666666666,3.345133333333333,2.92395,0.9546511111111111,5.0604,3.31747,5.36185125,2.61922125,3.0297,3.1088666666666662,1.7622666666666669,1.7622666666666669,2.4123207792207793,2.4123207792207793,3.2125593506493506,0.5085157142857143,1.7164433333333333,2.3314133333333333,3.5950333333333333,2.1518633333333335,2.1518633333333335,2.1518633333333335,7.307800238095238,4.3575904761904765,0.9578181818181818,3.69639,4.509259999999999,2.2475925,4.440385,3.200115,2.21999,4.37431,3.080436666666667,3.2533433333333335,0.7893625,1.9318666666666668,3.2319166666666668,2.866573333333333,2.4342200000000003,5.79275,3.682533333333333,3.641666666666667,4.9334766666666665,1.9337166666666665,2.5029266666666667,2.8988033333333334,0.9914088888888889,2.11681,4.334524,7.86583,1.54248,3.04489,4.269855,1.8648219999999998,1.8272625,1.8272625,1.00088,4.680765,7.533415,3.83467,5.309592,4.32559,1.75695,3.98582,3.12565,4.60331,4.7216466666666665,0.3481105263157895,2.967045,4.66829,3.933745,4.06423,1.94213,1.940225,2.5436,4.19715,4.04402,3.16683,2.400935,1.567856,6.68331,4.58683,4.033405,3.548505,4.939025,4.59089,4.872425,3.745325,3.632685,1.9295475,1.1018642857142857,2.75478,3.982005,4.46273,5.5622325,5.570062500000001,2.2174325,1.8347566666666666,2.65901,2.7789966666666666,3.0273033333333337,0.6138221428571429,2.036,3.5988,1.10230375,5.0611,3.26152,6.000245,1.2844106060606062,1.2844106060606062,4.024405,3.734395,3.705465,5.2816,2.738253333333333,2.2880266666666667,4.03832,3.224115,2.0858975,3.3882999999999996,2.475233333333333,4.179515,3.55143,3.833735,4.468235,0.9841555555555556,2.55085,4.41033,4.20356,3.462055,2.511483333333333,2.22511,0.5595399999999999,0.5595399999999999,0.5595399999999999,0.5595399999999999,1.2770233333333332,3.7800874999999996,3.7800874999999996,1.7756666666666667,7.162983333333333,3.00506,4.40941,3.0417566666666667,2.6454,4.754695,4.04893,4.880265,5.2585,1.7523575,4.00376,3.798135,2.688905,4.559425,3.39941,2.625005,4.79902,1.84694,4.795975,1.644865,3.47026125,3.01796,1.77908,1.2047333333333332,2.849595,4.327555,1.2630940000000002,0.8532711111111111,3.59442,1.213215,4.921653333333333,4.294275,1.2805228571428573,3.66542,0.7681855555555556,2.5454433333333335,2.5118666666666667,2.1933833333333332,2.746355,4.18927,2.918250833333333,4.56646,5.06415,4.33355,4.241445,2.16074,1.3509442857142857,4.088625,4.95479,1.4144075,1.4144075,4.140295,0.24934133333333333,2.3460300000000003,0.24934133333333333,0.24934133333333333,0.24934133333333333,0.24934133333333333,5.18355,2.6745033333333335,3.271625,3.50329,3.02509,4.339475,2.7677566666666666,0.96672,0.96672,0.9439583333333333,0.9439583333333333,3.721555,1.680115,3.92787,1.846,1.846,4.76654,0.6143157142857143,2.2527625,7.560853333333334,4.918385,3.110475,3.257395,1.03415,2.666145,1.9237275,4.53757,4.17942,4.228175,3.825715,1.3031314285714284,2.53099,2.0617525,7.70278,1.71348,4.25683,4.71868,2.84117,3.93112,6.31838,7.388185,3.84197,4.73536,5.6829,2.22707,3.330805,2.32415,2.575775,2.064345,3.80651,4.04643,5.472486666666667,6.7858,4.09547,1.1070266666666666,2.34054,4.07359,4.608515,2.12044,4.938415,4.38865,4.735133333333333,1.6885633333333334,3.7101333333333333,1.5857166666666667,6.280626666666667,2.60775,2.4271599999999998,2.19372,2.48993,3.030053333333333,3.3629,3.3897666666666666,3.1626433333333335,3.3623333333333334,1.584824,3.782345,3.156215,3.37825,0.383034,2.98473,3.715545,2.577725,5.40005,5.45935,4.665975,6.348887,4.841345,2.2302633333333333,4.094125,5.135,1.5910366666666667,4.995585,5.44805,5.1097,4.48859,3.22987,5.44535,4.91189,3.987155,5.312108666666666,7.4525325,3.810345,1.1517116666666667,1.50967,2.634015,1.734542,4.427255,3.942415,5.24581,2.50741,2.6539533333333334,2.7050466666666666,2.5266533333333334,2.4350166666666664,1.03161,0.4770476470588235,3.711895,4.062125,3.621866666666667,4.5247,2.74296,3.2185400000000004,5.404981666666667,2.894363333333333,0.5473329411764706,3.124625,5.84575,1.79038,1.547582,3.752535,3.935995,2.528446666666667,3.9895,4.25152,2.7647433333333336,2.2141100000000002,2.3438966666666667,2.45914,2.67295,4.38077,4.984566666666667,7.016066833333333,1.514742,4.709825,3.4796250000000004,5.3970020000000005,2.8223966666666667,3.101755,2.32642,1.9383433333333333,1.195855,1.195855,2.60291,2.3822966666666665,2.8088266666666666,4.25328,1.739846,2.323095,1.84124,0.585864375,3.8972,0.6260033333333334,1.04235125,3.573595,4.394825,4.487745,1.6123825,4.838195,3.0089366666666666,0.8831714285714286,4.221425,3.7607485714285716,3.2162366666666666,2.384845,5.02315,0.2801565517241379,2.278067,3.26995,1.4924,3.71106,6.5868,2.30167,1.3775833333333332,3.92865,3.83315,2.8285466666666665,2.8285466666666665,3.538085,4.06823,4.59125,5.6549933333333335,4.90717,0.9695444444444443,2.56329,2.526996666666667,4.27472,5.04185,5.47245,4.676685,4.331,3.739333333333333,3.6760333333333333,3.3178199999999998,3.9715000000000003,3.090586666666667,3.0508100000000002,0.6406835714285714,2.3808675,2.3585725,3.78224,3.02717,3.14695,0.7614758333333334,2.4235,3.7004865,4.48195,5.6227,3.96451,2.0323825,2.0323825,0.820646,3.329715,4.48521,4.08286,4.777946428571429,3.35017,4.94763,0.6112227272727272,3.276625,3.97085,4.24944,3.5415208333333332,0.8778214285714286,3.437995,3.991965,5.2121,3.81819,4.963345,2.758155,4.33177,1.5557025,1.02334,2.7589066666666664,5.0608,4.047995,3.056305,1.4388216666666667,4.11451,2.4340775,2.7094,2.7581937777777776,3.1159499999999998,4.530766666666667,2.8278133333333333,1.685466,3.4729666666666668,1.514367380952381,2.8441466666666666,2.5966333333333336,2.2697875,2.8631166666666665,2.8549666666666664,2.4826266666666665,2.37841,3.494345,2.9861866666666668,3.405087,2.2148733333333332,1.763,4.269888333333333,2.936723333333333,2.49964,3.405087,2.3450233333333332,0.8026254545454545,2.36782,0.9961977777777778,2.19566,1.50427,0.9490454545454546,1.62341,1.8507925,2.73395575,2.619375,4.533255,1.5778275,3.998525,3.0768799999999996,1.55717,2.3626766666666668,2.5475733333333332,1.5096766666666666,2.7313266666666665,2.64311,2.632232272727273,2.081125,1.825458,3.4150666666666667,2.4667133333333333,2.79929,3.0938833333333338,3.0181566666666666,3.7654,2.0452533333333336,4.256833333333334,3.4432333333333336,3.740933333333333,2.927713333333333,3.5061666666666667,3.4992666666666667,1.81842,8.64354,4.31483,4.50523,3.12338,2.8143,2.040175,4.03588,1.71725,4.03132,4.311115,1.466054,2.5081333333333333,1.2044233333333334,2.649576666666667,1.6991566666666669,2.42738,5.134393333333334,3.1870433333333335,3.59069,4.859755,0.7820075,1.554648,0.9538740000000001,3.844755,11.028433333333336,4.075333333333334,6.6259,1.8971875,5.1581,4.26557,2.4556625,5.04785,0.2766094117647059,0.8500728571428572,5.1109,4.706905,6.8847225000000005,2.0329575,4.393945,5.58065,4.58978,4.547915,3.67674,4.49355,3.159875,5.59223,3.76217,3.34565,3.34839,2.117786666666667,2.1015166666666665,1.4880511458333334,2.47429,3.99054,4.726775,1.5957459999999999,9.1703,2.6287866666666666,2.8445716666666665,1.143754,1.143754,7.297740416666667,3.1827,2.3760575,2.0504475,2.6640533333333334,2.0866366666666667,1.01793,3.4331899999999997,2.69889,0.5571585714285715,1.6796166666666668,3.3746140000000002,3.3746140000000002,1.2320499999999999,2.4535666666666667,2.4080233333333334,2.7749800000000002,1.3595725,1.6522633333333332,4.739461333333333,2.68343,2.649225,1.28781,1.28781,4.118435,5.5432,4.462875,3.250445,3.77353,5.94352,3.358825,2.93849,3.283773333333333,4.040485,1.1599333333333333,3.2408133333333335,2.572925,3.82899,2.2273033333333334,4.85384,3.45508,4.25018,3.65902,5.32262,0.9870766666666666,2.020715,1.823865,3.6643,4.599945,4.014565,3.84298,3.99937,3.49164,1.6577375,4.285755,3.719905,3.291925,2.4375933333333335,0.8304175,3.538435,4.446945,4.777875,1.1903866666666667,2.9291199999999997,2.8015666666666665,2.100346666666667,1.801172843137255,1.801172843137255,1.2261616666666666,2.405393333333333,1.1030971428571428,1.393616,4.46364,4.47587,0.5041476190476191,4.057115,3.5529666666666664,3.923295,5.31805,0.4016505,9.521885000000001,5.3506,3.352775,3.765,4.4873,5.469787857142857,4.8182,6.418855000000001,0.6979372727272728,2.632753333333333,5.4011,2.885456666666667,1.7649025,2.00084,4.42532,5.1107837499999995,2.370198035714286,2.7163766666666667,3.1810766666666663,1.7580625,4.45775,10.82565,8.418341666666667,3.9226666666666667,4.527505,3.15749,3.08969,3.8198,1.816274,2.8590666666666666,3.789825,4.362725,4.54959,4.82851,6.5292433333333335,2.737296666666667,3.613545,4.591515,4.64189,5.1908,6.202906666666667,3.8657649999999997,6.12505,3.337405,2.802205,2.81278,5.39705,3.75994,5.4972,2.16827,3.044043333333333,3.40212,6.0649,4.27484,4.045115,1.44522,0.92428625,2.498845,0.59448,4.155575,3.64599,3.590895,2.85565,2.1210999999999998,3.01875,2.519575,3.041976,1.8805640000000001,2.97556,2.8677,2.2985275,2.6162,3.6802899999999994,1.222985,2.6840475,4.973005,3.8366000000000002,1.0091175,2.72391,3.7756808333333334,3.795643,1.582075,5.40725,5.4465,1.8948733333333332,2.90875,30.55496817234726,3.2564233333333337,1.6792,3.8546666666666667,1.6414499999999999,2.56222,2.9004766666666666,3.3033900000000003,1.9894275,2.766375,2.03794,3.4966475,3.0669566666666666,2.36399,1.5180125,2.1748000000000003,2.827,0.37629409090909094,1.05381,2.7214833333333335,1.649222,3.37779,1.582075,2.01097,25.351152166666665,5.1228,4.25053,3.57805,2.81309,2.42291,2.6357833333333334,2.2682425,3.548045,5.117036,5.37075,1.4993159999999999,1.842026,2.723095,2.5581466666666666,3.6373083333333334,5.30405,4.662965,4.368525,0.17368106382978724,4.7928,4.713033333333334,3.7719,8.80424,1.085995,1.085995,2.9452933333333333,3.063785,5.6026,1.9849433333333333,1.0008511111111111,4.888925,1.9233125,4.31215,3.995315,3.433115,3.89456,4.05402,4.53635,3.22053,0.74395,3.228195,2.1116775,4.415605,7.853815000000001,4.397905,2.3131233333333334,2.3131233333333334,6.608535,4.709235,4.1398,5.75355,2.343573333333333,5.219550833333334,1.31711,1.3662166666666666,2.8330300000000004,2.2065633333333334,3.325235,2.6851566666666664,3.79476,4.2543825,4.15414,5.52735,2.3470325,2.28321,1.797765,2.765775,2.38299,1.9912,2.0541725,4.779299166666666,1.8612075,3.5152695238095237,2.9666266666666665,3.1314766666666665,2.813883333333333,1.8633166666666667,1.435057142857143,0.9327819999999999,2.4070266666666664,3.8842,0.716746,4.64998,2.0683025,5.914642083333334,1.9824875,1.8801725,1.4676975,1.5397266666666667,5.586845555555556,1.76603,2.93859,3.5847333333333338,1.23856,1.81166,4.819268,3.1777266666666666,2.7807999999999997,3.5153666666666665,2.86649,2.7972433333333337,1.2050464285714284,0.3619333333333334,0.3619333333333334,0.3619333333333334,0.3619333333333334,0.3619333333333334,4.14329,2.606386666666667,2.3415,3.3800000000000003,1.35713,2.64343,3.1774533333333337,3.180946666666667,3.70413,3.03378,1.84021,2.96656,3.15808,2.1639425,1.9827425,3.632065,2.7464566666666665,3.417566666666667,5.2388,2.709433333333333,2.7096199999999997,2.526213333333333,10.871236666666666,4.78032,4.57873,4.746835,4.03886,2.9331866666666664,5.1777,3.596485,3.19781,6.107138333333333,3.91596,2.950845,2.0089975,3.5749,5.0120641428571435,3.37779,17.91387757142857,1.1514075,4.484815,0.8533133333333334,1.21122375,2.783425,4.77551,3.740035,4.43184,1.4593800000000001,2.336515,4.205655,2.7202,4.56738,3.2065442857142856,2.69774,0.6756733333333332,2.5274966666666665,4.541595,2.2888075,2.4126925,2.1678325,19.665996666666665,1.653798,1.2581875,2.5257866666666664,0.30883730769230766,1.91608,2.797413333333333,2.0616033333333332,3.057176666666667,2.715125,7.404046666666667,2.00243,2.4278075,2.2530225,2.1326925,1.570405,3.3171933333333334,3.0722,3.21179,2.937466666666667,2.001595,2.6272358333333337,3.128858888888889,4.695885,0.4060391666666667,3.2808433333333333,2.87625,3.005985,2.009355,3.547508,3.559755,1.5311933333333334,2.2628533333333336,2.2804466666666667,1.3902566666666667,2.0870666666666664,3.70274,3.31463,0.7846633333333334,3.31271,5.24905,4.049675,2.267732,2.267732,2.8909833333333332,4.692455,3.21101,3.26535,2.20412,1.0039090909090909,4.331575,3.55054,5.9871,4.17107,2.4050700000000003,2.4050700000000003,1.59468,3.47423,5.01895,3.955015,4.14332,3.2880000000000003,2.30997,4.50766,3.408905,4.070905,2.89918,2.3924566666666665,4.3175213333333335,3.162993333333333,2.706436666666667,1.9840666666666669,3.4161,2.533825,1.5902900000000002,3.60357,3.646515,4.439495,3.3155933333333336,4.73935,4.08471,6.5095332500000005,3.91797,2.20216,4.63413,2.702835,7.288495,2.4962233333333335,1.2830000000000001,4.20148,3.3373333333333335,4.427065,0.5074592857142857,0.8026691666666667,3.78716,3.77409,2.2057963636363636,4.351235,2.815065,2.955525,9.110196,1.8294260000000002,1.2413859999999999,3.7342,2.53432,3.464435,4.98311,6.5189699999999995,3.10128,2.1726433333333333,3.1728433333333332,1.8726500000000001,3.376133333333333,8.331235090311987,0.9711192857142857,1.07414,4.62234,0.5114526666666667,1.5409175,2.1391625,2.860025,2.955675,2.637725,4.51265,2.322555,12.872485,5.221795,2.315695,2.315695,4.108445,0.78859,4.861606666666667,3.91309,4.03647,6.2580116666666665,3.34872,4.22736,1.3499166666666669,2.80933,2.7108,2.712835,3.118495,2.679955,3.065415,3.573835,3.679895,2.975565,2.980415,2.890315,4.12493,4.58467,2.9383166666666667,3.1502533333333336,4.801076666666666,4.150055,18.239064523809525,12.047954285714285,3.120704285714286,0.6882166666666666,1.461042857142857,4.450305,3.511895,2.961023205128205,1.853705,0.8173711111111112,0.6373766666666667,0.9837828571428571,2.11371,1.581334,5.2095166666666675,3.3257666666666665,0.7016709090909091,3.40666,2.256175,2.0091075,1.790298,6.33275,1.542092,4.88421,2.855675,2.8583866666666666,2.41514,2.70561,2.6185466666666666,0.7804854545454546,3.07682,2.9611466666666666,3.763038,2.8737366666666664,7.476268750000001,3.55043,3.3181,2.3087425,3.54563,7.84535,2.0879525,2.37312,2.429425,1.6313775,2.426355,2.095665,2.5909,0.8396990000000001,1.30323,0.94960375,2.64508,4.089225,5.90305,5.48725,2.97736,2.337505,2.9495,3.4766333333333335,7.798939999999999,1.2146733333333333,0.396756875,2.850885,2.005673333333333,1.535196,3.453678,1.2579879999999999,1.889341,4.031711666666666,2.904666,1.2016716666666667,1.8765933333333333,4.076308333333333,3.500525,4.45333,4.248125,2.129275,5.14855,3.848085,0.7870384615384616,4.80401,3.83132,4.2200412499999995,3.2231,2.29836,1.315682,1.2803475,3.55366,2.71568,3.41342,4.08586,2.738845,2.7925,3.21625,3.60571,4.91056,2.151875,2.717965,4.328535,5.90715,0.547905,4.395655,1.7443,3.510175,3.9564,2.119365,3.204165,2.19342,2.22322,2.616065,2.3629308333333334,1.7470466666666666,5.0763,3.665475,1.2499271428571428,6.87954,1.1207866666666666,3.659115,1.70888,4.357195,3.911975,2.7267733333333335,3.11908,4.117015,8.91654,2.942825,3.706495,3.774305,3.616885,1.7632975,7.96715,3.597865,4.155045,1.441965,4.177155,3.028705,1.12612125,2.08486,4.149765,2.20265,4.03273,4.9049425,4.2419649999999995,4.59135,2.320645,5.3412,4.007875,3.1670766666666665,2.3194133333333333,1.6222999999999999,4.558185,6.2669,4.662755,4.63807,3.1188,2.2389175,4.231505,3.290635,1.0894813736263735,4.221905,4.805991666666666,4.17542,2.76093,3.60005,0.6738771428571428,0.6738771428571428,5.42765,4.3208,5.16895,2.26484,3.814605,5.2189,0.8084770000000001,4.01307,4.789375,4.53299,4.780895,4.59411,1.8488575,3.123475,2.1293025,4.391345,0.6701625,3.965175,4.141015,2.757045,2.7907466666666667,4.174645,2.28957,3.198225,59.29312227922078,3.24498,2.79989,1.68603,3.352685,3.98466,0.81669375,0.97935125,2.17705,2.17705,1.314308,3.273585,2.34541,3.8086814999999996,7.42818,2.8846566666666664,1.2249199999999998,1.3398349999999999,2.712073333333333,4.083785833333333,0.9025209999999999,2.06638,1.168002,1.89333,3.578855,4.09099,3.06335,21.250200064935065,4.04466,3.81574,3.116155,2.1459699999999997,2.918315,3.299295,2.3627525,5.44749,1.4709619999999999,3.84652,3.3601161626984126,5.938920555555556,1.98962,2.575165,1.88416,4.226115,2.2404100000000002,2.105725,2.05838,3.426666111111111,3.79017,3.49168,4.03336,4.233945,2.531825,2.617515,2.96387,2.702985,2.870591111111111,2.201095,1.8587325,3.443575,1.1754200000000001,4.03628,4.553415,2.57139,4.716015,4.70008,6.240861666666667,1.9362366666666666,2.50557,2.646905,2.785135,4.155025,3.32871,4.606195,0.7412099999999999,3.896872666666667,2.866425,3.72686,2.2818725,1.7891940000000002,4.01357,1.2082777777777778,3.038595,4.34915,1.123524,3.777915,3.372345,4.466405,5.9085149999999995,2.08435,2.845865,2.6295733333333335,3.7662,2.57532,2.536384,3.4258333333333333,2.419493333333333,2.468523333333333,1.4419266666666666,1.9461825,1.9461825,1.8784466666666668,2.0879366666666668,2.1665733333333335,3.2023566666666667,3.69058,5.37885,4.003135,1.57669,4.363385,4.180195,3.61667,4.194585,1.95679,1.79138,4.702385,1.82609,4.501778333333333,4.245825,3.70176,2.4787266666666667,3.972525625,3.124085,3.3896,3.506705,0.14563938775510205,2.7081733333333333,7.70388,1.515804,3.34244,3.62471,0.9883714285714286,1.2166466666666667,1.9185025,3.948945,3.07238,7.019604999999999,4.091075,3.66991,2.977835,2.70605,3.441295,3.479845,4.081065,3.484915,2.8509666666666664,5.30715,4.12967,4.42927,2.7732833333333335,1.878335,3.454685,4.5135,2.629495,3.206715,1.983875,2.50644,4.119445,3.75373,2.88183,4.275065,4.96335,2.757925,4.663385,4.45044,3.590395,4.597935,3.56376,3.1432,6.09472,4.38696,5.2463,5.03225,4.37387,5.23385,4.933915,3.800595,1.4216039999999999,6.6635,2.49854,4.740175,4.22696,4.19462,3.0610233333333334,1.9962633333333333,2.224153333333333,2.2943366666666667,0.9429169999999999,3.4011,3.2834233333333334,3.0433766666666666,1.9980966666666669,3.715615,4.397045,2.5835166666666667,0.5464841666666667,4.30096,4.50444,4.750435,4.53288,3.5526,4.499345,5.10845,4.751265,1.3987555555555558,0.932023076923077,2.6565833333333333,5.05835,5.6773,0.48679625,2.84649,2.54244,4.213015,4.437245,3.8031,1.9284125,4.877355,4.079815,4.29503,2.946995,6.17685,4.89624,6.87808,0.5942691666666667,4.13813,0.8088660000000001,2.254045,4.026766666666666,3.24414,1.3919733333333333,2.22006,4.26237,3.493335,4.19411,1.9829299999999999,1.88656,2.85942,4.697615,3.97891,3.853405,1.684206,1.1506274285714284,5.8291,2.1975575,7.7222574999999996,4.624935,3.691245,2.126245,1.6285425,4.11272,4.669595,1.6895333333333333,2.531475,2.4623225,2.7081733333333333,6.704481666666666,3.0573733333333335,2.8290933333333332,3.86949,3.768235,2.051806666666667,4.850825,6.9272525,4.60289,5.1389,0.5633545454545454,3.561615,4.108435,4.620933571428571,3.89137,4.147605,2.9705,2.85958,3.29208,2.873135,3.7334026666666666,1.7395340000000001,5.322254,4.424365,4.86211,3.83089,3.406475,3.264485,2.28078,1.267115,0.9381,2.817915,2.397245,1.08554,2.6673666666666667,5.5206,5.10245,3.52034,4.28005,16.364696904761907,4.44002,4.473475,4.20612,0.7264050000000001,5.30475,4.476675,4.147005,4.75096,5.3152,2.46806,3.768905,3.341395,1.570582,3.236585,4.67543,3.25968,1.4984540000000002,4.09758,5.03835,4.00794,5.11545,4.69894,5.4808,4.073065,2.7262466666666665,4.294655,4.153295,2.573055,3.0078333333333336,2.9106799999999997,1.8104716666666665,5.0042,2.762085,1.9886633333333332,3.970095,2.43379,4.40992,4.269888333333333,2.010535,2.577015,4.243205,3.704205,4.483965,4.20563,4.551345,5.120013,3.21445,5.384,2.6089083333333334,3.378185,3.415315,1.5382,4.526925,1.016505,4.357945,3.190075,0.9639085714285713,3.681655,2.03408,6.320485,2.6302648095238093,2.6302648095238093,2.6302648095238093,0.8266183333333333,1.1718916666666666,1.800715,3.480315,5.67756,3.414022777777778,1.88901,2.14956,1.7046466666666669,3.6918,2.40125,0.3936930769230769,1.732705,2.13133,2.870835,1.89639,2.572845,2.38197,2.0754975,3.78717,2.8914866666666668,3.118035,2.930945,2.1053,6.54497,2.07457,4.29414,3.811825,6.350498333333333,1.6891666666666667,3.57565,3.51519,3.59683,4.404595,2.68997,1.980465,3.848115,5.867598666666666,2.069405,3.657085,3.20976,1.92643,4.877755,4.52045,2.5023866666666668,2.20047,3.7875625,5.832253571428572,5.6664,3.29371,2.485225,2.85829,3.02853,3.062265,3.676505,1.30548,2.668215,4.483405,0.8046375,3.851555,3.905905,4.040095,4.394735,2.378625,3.39991,2.02279,4.61121,7.600925,4.478505,3.491695,3.978695,1.01285125,4.46753,2.3971,4.33846,5.3745825,3.988685,4.1316,11.201975000000001,4.727065,3.77556,1.4679825,0.6879191666666666,2.80397,3.832805,3.353945,3.71192,2.199596666666667,3.183146666666667,2.3381933333333333,1.2711283333333332,1.2711283333333332,1.9456966666666666,2.3665233333333333,2.561996666666667,2.38084,3.6407000000000003,2.923493333333333,3.033253333333333,2.7010566666666667,1.3996466666666667,2.2695433333333335,2.0779433333333333,1.7464233333333334,1.5221625,2.261836666666667,0.6896816666666666,9.820691666666667,0.6896816666666666,3.2878066666666665,2.043345,2.0366566666666666,4.32107,4.346385,4.87869,4.872195,2.4032833333333334,2.910856666666667,3.300822,2.17985,3.345266666666667,3.1046,2.562673333333333,2.934786666666667,1.8618066666666666,5.35975,6.326232380952381,3.4263,3.348133333333333,2.9451033333333334,2.65568,2.66193,1.1872157142857145,3.3591333333333337,3.1593733333333334,3.871575,5.81585,4.438655,2.8856866666666665,3.3603,3.0866166666666666,4.166092222222223,4.170265,2.6633566666666666,3.525555,3.205216666666667,2.98263,4.65566,3.149483333333333,3.94238,5.944558333333333,2.7767133333333334,2.6935066666666665,1.5932366666666666,1.3157133333333333,4.9244200000000005,3.4553849999999997,2.60498,2.049446666666667,2.302896666666667,5.00435,3.73813,3.092485,3.2322433333333334,3.3342666666666667,3.5193333333333334,3.5365333333333333,3.5544,3.1686433333333333,0.55759,3.8171,2.5317366666666667,2.68271,3.520455,4.53004,4.821185,5.5287,2.609535,4.320663333333333,1.2071183333333333,2.6909233333333336,2.6909233333333336,4.56784,3.318025,3.787205,3.577315,1.631985,2.800285,3.827915,1.0439271428571428,3.6574008333333334,3.442957333333333,2.1783773333333336,0.354484,3.51919,3.31135,6.88688,3.151655,6.18725,3.218255,3.858675,4.37269,1.8234954166666668,3.09439,4.53724,3.279505,3.151206666666667,2.9684066666666666,5.837355,2.167105,1.02821625,2.10326,1.7309766666666666,5.31825,2.36163,2.4553133333333332,1.90772,4.631385,3.96473,4.56574,0.6030840000000001,4.422535,3.907105,2.74,2.570883333333333,2.8700833333333335,3.3101333333333334,4.06415,1.6409366666666667,0.6561263157894737,0.7840571428571429,3.3935333333333335,4.337545,6.065993333333333,4.747475,4.79222,5.26595,1.3498385714285714,3.9564,2.0969433333333334,0.99303,5.26415,5.8754,3.461285,4.85413,4.07468,6.922736666666667,4.115733333333334,7.161316666666667,3.846625,2.5749931944444446,5.9909,10.296749647435897,2.5136066666666665,0.678652,3.314755,4.03919,2.083035,6.2896,4.775905,3.65307,2.9165200000000002,2.9165200000000002,5.37985,3.43526,3.95914,5.09885,4.04054,2.45684,1.06868375,5.33335,2.630795,5.3207375,3.57817,4.520005,2.89253,2.1950075,4.660905,4.581635,3.6342666666666665,3.89587,4.43154,27.832291785714286,2.002435,2.545575,2.3519225,1.575115,2.639413333333333,1.2221842857142857,2.91476,3.0372033333333337,3.2953166666666664,3.31209,0.6934615384615385,3.2092166666666664,4.18953,2.97931,3.1790800000000004,3.929975,5.83947,4.865705,4.40256,4.072535,3.9000075,3.86218,3.4967666666666664,1.6757825,1.0068666666666666,1.40282,3.2227533333333334,1.5211033333333335,3.08713,2.4579333333333335,2.3622333333333336,1.95924,2.676955,1.986085,1.87066,3.01918,4.221115,3.811415,4.097005,1.481696,3.976766666666667,2.5320966666666664,4.312815,2.4309499999999997,2.606285,2.59719,1.4112833333333334,4.13995,6.461873333333333,2.85856,3.58094,4.074265,2.520575,3.2230100000000004,3.482366666666667,4.35963,4.686435,0.29516671814671813,0.29516671814671813,4.88562,5.0537,4.303075,2.956805,5.31835,4.716565,0.659806923076923,4.670235,4.64758,3.73736,6.55145,4.71085,7.65381,13.991426666666667,12.616573717948718,4.28398,4.18058,2.494623333333333,0.6048153846153845,2.6122466666666666,4.88765,1.3077866666666667,4.394125,3.4833,2.8689533333333332,2.0629233333333334,1.8809666666666667,4.65973,4.27782,8.94581761904762,5.15905,4.14402,7.149356325757576,3.438075,3.0887933333333333,1.5059475,5.365418333333333,1.996085,2.3638266666666667,2.8076933333333334,0.2805403125,2.929015,3.550845,4.6946325,0.904538,1.2884900000000001,3.9596,0.568573,0.568573,2.9529704166666666,3.046,3.384866666666667,3.91921,4.299495,5.45795,3.8496,4.221975,3.075,3.035956666666667,2.6880666666666664,0.8626833333333334,2.7111,2.873435,3.24673,7.121734999999999,2.942525,9.113199999999999,3.00175,5.8265,2.964905,2.33036,2.7004,2.949775,1.7636175,2.341685,1.94392,3.907925,2.4858425,3.87113,2.94142,4.080295,4.080295,2.6814541666666667,2.6814541666666667,8.925084833333333,2.59346,0.795993,2.6050833333333334,2.5326733333333333,2.5870266666666666,3.87113,1.9985659999999998,1.815792,1.520514,4.331735,4.286765,1.690155,4.41472,4.17628,6.027178888888889,6.587648333333334,2.272743333333333,4.181705,6.4287,4.50652,3.226495,2.4119566666666667,3.641885,3.4250960606060605,4.245165,5.338975,7.804973333333333,3.4476312499999997,3.142685,1.1781983333333332,4.43519,3.98102,4.368245,3.7847325000000005,4.369935,2.74411,2.50707,6.865285,2.989385,1.248686,5.73913,3.715695,2.9769433333333333,4.82316,2.9769433333333333,3.45791,3.8995,4.870085,1.0682414285714286,3.864437777777778,4.474685,3.51611,1.366805,1.6990175,4.26203,3.95654,2.691655,6.6145966666666665,4.652585,3.751435,3.9291,4.2291799999999995,1.4099175,3.91286,2.69767,3.836885,4.127515,3.7229,4.64448,3.094465,4.138325,5.011,2.0970516666666668,1.882705,3.4714333333333336,3.5554333333333332,3.3371333333333335,3.01913,3.685866666666667,2.9285033333333335,5.1398,3.67888,3.470305,2.99895,1.9239766666666667,3.5698000000000003,2.0025833333333334,3.113215,3.10654,2.74602,0.6701625,2.14861,1.7686233333333332,3.30438,1.888814,3.295936,3.40576,1.276488,3.1855575,4.79784,0.856666,1.3353333333333335,3.341615,3.84116,3.275775,2.046715,1.7058166666666665,3.494015,2.5289133333333336,1.6868966666666667,2.953005,1.94535,1.1633,1.39532,6.163365,3.130145,2.2854,2.477685,2.44744,3.78289,0.8782425,0.3471121428571428,0.7834042857142858,5.0074,1.9960974285714286,4.68305,2.1295125,2.0826122857142857,3.3892082857142856,1.3065959999999999,0.9951742857142858,0.63495,0.56933,2.998876666666667,6.52705,3.050105,3.606155,0.32968857142857144,3.701625,19.406341047619048,3.20943,7.367012592657343,1.0607025,1.0607025,1.0607025,1.0607025,5.580025833333334,3.97513,3.881065,2.1304333333333334,2.96777,4.343565,4.293125,3.544705,3.648585,4.398785,4.175625,3.6048,3.7455353333333337,4.185655,4.908395,4.002935,4.541915,3.41992,4.112295,2.612206666666667,3.853255,3.445675,3.864305,3.796335,4.283395,3.3217700000000003,2.511525,2.438023333333333,4.317885,1.192455,3.74832,2.8145100000000003,3.4446580000000004,4.2419649999999995,4.314625,3.15795,2.8639,5.2578,3.30335,3.2031,5.16225,4.79785,3.108115,4.76758,1.7477440000000002,1.7477440000000002,1.9499625,4.61258,3.690275,5.86285,4.972495,3.551645,6.59205,4.30223,2.55715,9.19896,4.95083,6.25136,4.44002,2.9110033333333334,4.06291,0.25233689655172414,0.84097375,3.530838,3.45596,4.816785,2.9555133333333337,6.138673333333334,4.74529,0.5633992857142858,3.48414,0.5223329999999999,1.766287142857143,3.69304,1.831615,3.60569,3.59406,3.413625,3.4243,3.43615,3.687185,3.474405,3.71241,4.130165,2.566145,1.766287142857143,2.695445,2.143515,3.63398,2.24637,3.929335,3.587715,1.7632975,4.349015,4.049935,1.4091866666666668,5.2501,4.64213,4.110225,2.8209666666666666,2.969856666666667,4.77708,2.0112,1.4298579999999999,2.5022433333333334,2.6522900000000003,2.61161,2.08466,5.0727,3.43567,5.119666666666667,3.9185692857142858,4.828405,4.187715,1.6399219999999999,5.2698,4.580295,5.29265,4.13694,7.3405249999999995,1.7116075,4.96249,3.872835,3.19071,1.9376075,1.7806499999999998,3.986335,4.399775,2.5242633333333333,2.8589891666666665,3.2563874999999998,3.2563874999999998,2.723376666666667,3.166653333333333,3.48768,3.997375,3.655525,0.7997000000000001,3.155975,4.31954,4.790786111111111,2.91498,3.10654,1.7585275,2.80163,3.46457,2.11929,4.285175,3.35327,4.4078,1.8032266666666665,0.9822727272727273,6.49111,3.53352,3.3837333333333333,3.0282066666666663,1.7645,29.931663202380953,4.05766,3.364045,5.04355,4.225755,0.8353083333333333,7.161355,1.9703175,5.62325,1.5961866666666669,4.20503,5.422795,3.68923,3.069525,2.35065,3.621866666666667,4.7836,2.00127,2.7891100000000004,3.56864,3.672655,2.4836,6.1355,2.18883,6.0026,1.12018125,4.574255,3.525675,3.931285,4.88087,3.094995,2.3205933333333335,4.1787,4.676545,3.6135575,3.6135575,5.82875,2.1289175,5.31195,6.961806666666667,3.40464,4.14588,3.152465,3.772845,3.407245,4.089605,1.4485825,2.278195,4.240935,4.222605,5.53165,4.50463,2.01405,9.40212,3.11837,3.867595,1.6549142857142858,3.71519,2.2410433333333333,2.74915,2.509374583333333,1.3510633333333333,2.760536666666667,0.9164399999999999,1.1584957142857142,1.1584957142857142,1.1584957142857142,2.2337433333333334,0.57894125,3.899405,1.36128,2.7314433333333334,0.9465383333333333,1.7922033333333334,2.6729633333333336,2.123526666666667,0.7730125,1.74855,1.60792,2.3043566666666666,1.6787379999999998,1.6787379999999998,1.6932033333333332,2.02566,1.011404,2.4403433333333333,1.5256966666666667,1.16304,2.25248,2.10011,5.8258,1.5874,5.1674,17.789527833333334,6.700279999999999,4.59069,3.5666333333333338,3.355,2.819656666666667,2.7866066666666662,2.8027366666666667,0.7015816666666667,0.9906560000000001,0.9906560000000001,0.61880875,2.31492,3.89004,3.93387,1.51963,4.962365,3.569765,2.49076,3.90749,4.775905,4.015815,4.220015,3.466666666666667,3.09922,3.376435,5.62105,3.094993333333333,4.694015,0.51058,0.51058,2.484305,3.06752,5.1338,3.48409,4.22367,4.73242,7.32282,7.67398,3.476395,2.29312,5.2533,3.67855,2.51048,2.34019,3.244555,1.2656966666666667,3.374935,2.56797,2.001225,3.3423,4.05318,2.00902,5.338975,1.566195,3.4912666666666667,3.710715,0.9925028571428571,3.563133333333333,2.7754999999999996,4.676255,1.15838,1.7705675,2.4483875,2.16284,1.77937,2.4431875,2.0113725,1.93451,4.327865,4.39791,2.344545,1.766255,1.43579,3.5709999999999997,2.06216,2.767025,4.407875,6.65375,2.2635066666666668,3.081815,3.478725,3.633055,2.366595,4.94977,4.665355,2.929945,1.39275,4.243315,2.36151,2.8672466666666665,2.686505,3.915145,4.919185,5.33385,2.29894,2.8199400000000003,2.8011766666666666,3.327643333333333,1.9249833333333333,1.453102,5.3828,3.399433333333333,2.244422,3.012976666666667,2.96114,2.328466666666667,3.3576,3.0827666666666667,3.5545333333333335,5.2927,3.945015,3.0146533333333334,5.08825,3.399375,2.36461,3.384425,3.91457,3.45219,5.966883,1.893038,3.866015,2.482165,3.82257,3.60521,0.5584825,2.31281,2.29722,3.512375,2.64959,2.28716,2.70286,0.610462,2.8052333333333332,4.378555,2.419375,4.188825,2.3837433333333333,3.99036,1.9416575,4.52601,3.902365,1.881656,3.351775,6.759532500000001,3.872775,4.363895,4.94533,7.176461136363637,4.23659,4.28935,2.1689425,4.62854,3.028375,1.9171633333333336,1.9080125,3.10772,1.0208042857142856,2.4070266666666664,3.0313833333333338,2.6940166666666667,3.3534333333333333,1.8703420000000002,3.36653,1.86902,5.5322,6.462832499999999,1.04031125,1.8528,2.636083333333333,2.8183566666666664,2.0154733333333334,1.077525,5.660123333333333,2.1935875,2.6977533333333334,3.5334333333333334,3.11333,3.3351,3.12872,2.18559,2.8607333333333336,2.4231166666666666,4.30977,4.03248,4.095125,3.4478666666666666,3.4034333333333335,0.924023,1.7793433333333333,2.1677175,2.1899433333333334,2.641313333333333,1.139785,2.7230133333333337,3.045576666666667,3.89509,1.9230533333333335,3.635215,3.827245,5.4688,3.463565,0.6026658333333333,2.0101400000000003,2.7150433333333335,3.310916666666667,0.7689463636363637,2.722046666666667,3.3710459999999998,3.19107,2.73132,3.4267783333333335,3.81307,3.7728,3.038816666666667,1.9800525,5.55765,5.0689,5.06165,5.42495,5.52315,1.8183533333333333,3.323155,3.7228666666666665,3.2744999999999997,2.97575,2.7021633333333335,3.9831333333333334,3.3927,3.0036533333333337,13.792666666666667,4.32654,1.0989499999999999,2.8124633333333335,1.512186,3.1033033333333333,3.05698,2.33653,5.497370833333333,6.245228833333334,2.2966433333333334,0.8737130000000001,4.23766,3.3117666666666667,2.990515,5.09595,5.47635,5.73125,4.73523,3.491455,1.9397625,6.478507499999999,1.1781983333333332,6.5382025,4.49465,2.5981566666666667,4.05318,7.2157566666666675,5.68955,2.17822,1.4129766666666665,1.9649775,6.7676300000000005,1.582075,2.9464333333333332,2.618395,4.201327777777777,5.4556,4.29549,6.22115,3.60618,5.1252,3.91332,8.4728,5.11965,5.72315,2.14029,2.561975,11.250876666666667,3.31288,2.669725,2.402883333333333,1.5118033333333332,2.768003333333333,2.642936666666667,0.66306875,1.216356,1.1552357142857144,3.403645,6.763979999999999,3.104646,1.4226866666666667,5.32045,4.348105,0.589054,4.20801,3.675615,4.29844,3.76977,3.38003,2.5804833333333335,4.2029,10.048,1.828495,4.200685,4.156825,4.583435,3.79063,0.8496583333333333,3.6872666666666665,3.8968000000000003,1.6345966666666667,2.5334033333333332,2.3592400000000002,2.541723333333333,2.3325666666666667,2.1191,2.068395,5.781644285714286,4.858055,3.95401,4.81414,1.7460699999999998,2.4155,4.6513,4.652875,4.86714,4.3192,4.616025,5.0262,1.7477440000000002,3.838345,7.354891666666667,1.24765,1.7313033333333332,2.71815,3.05329,2.8046,4.8900575,0.7840571428571429,2.43469,3.617555,6.0902,4.40756,2.4652333333333334,2.9293866666666664,2.0135175,0.545711875,2.4580325,2.894155,7.734075000000001,4.31549,4.266645,0.8930049999999999,4.100833333333333,9.140134166666666,11.550866666666668,3.48655,1.159395,3.59466,3.634405,2.6505300000000003,5.240604666666666,4.743495,3.74615,2.007135,3.6574000000000004,2.13493,2.5203933333333333,0.79375,0.4004393333333333,2.58642,3.19621,1.8933561666666665,3.253,3.1974400000000003,4.058205,5.15,1.484482,3.07836,2.1966125,2.1966125,2.146275,2.84146,5.2757,2.7987133333333336,2.733696666666667,3.2510166666666667,3.4551,4.413315,4.17194,4.183615,4.170375,3.942165,4.06133,6.8559,7.5889425,1.8948725,2.23937,2.7942133333333334,0.8935233333333333,0.6968616666666666,3.926435,2.3375,5.2633,2.9636433333333336,2.9334133333333337,1.7974599999999998,1.46164,3.47036,4.199875,4.387085,1.8545999999999998,1.3024433333333334,2.6342033333333332,2.0331366666666666,2.5521833333333332,1.1228642857142856,1.1228642857142856,2.7988233333333334,4.38857,2.77909,2.88852,3.503445,2.151885,19.719434590909092,3.885875,5.422477499999999,4.119555,4.07631,3.868425,3.68333,5.3797,6.1530249999999995,0.9639099999999999,0.9639099999999999,0.9639099999999999,2.6935333333333333,1.7205714285714286,3.5059666666666662,4.340655,3.99397,3.28997,4.540715,4.6197,0.9187366666666666,2.68803,2.5189866666666667,6.062429333333333,3.362746,4.014439333333334,4.708415,2.119365,2.0453733333333335,2.2949100000000002,0.52987625,0.857318,1.737695,2.098365,2.950985,12.97681,2.63074,5.25415,0.7176357142857144,9.788327500000001,5.7271,3.82402,4.25202,2.5231,5.4127,2.5231,2.6389839999999998,3.493515,3.798045,3.42803,3.813625,4.42556,3.45208,5.8396,6.89086,1.76502,2.96197,2.739225,26.473194503861002,1.7181000000000002,6.2748,4.680070000000001,3.969935,4.03985,4.55799,2.88314,2.7757,2.153435,6.50245,7.07525,4.70373,4.53545,4.396975,1.9419325,2.036845,4.19563,0.6386646153846154,0.6386646153846154,0.6386646153846154,0.6386646153846154,4.34442,3.137855,0.8709133333333333,1.7478666666666667,1.1560555555555556,4.254535,2.523756666666667,2.18864,7.000590000000001,3.1712333333333333,0.27424310344827585,19.9636605,4.429661666666666,1.7860600000000002,1.2873110714285714,2.1909199999999998,1.881088,2.3312875,4.57647,2.9607,4.08369,4.155915,2.164363333333333,7.140252500000001,2.68179,2.031195,3.49058,5.9043,8.230453333333333,4.43604,0.2949317073170732,3.558065,3.9707,2.851383333333333,2.072245,2.94646,1.6182916666666667,1.6182916666666667,4.04384,5.861225,11.708968333333333,9.350200000000001,0.6420333333333333,2.4567799999999997,4.053795,3.2932,5.0837,4.96637,1.730746,1.730746,3.24177,4.360955,2.272463333333333,3.692025,4.90693,5.6856,6.03434,2.0569800000000003,4.86965,4.30289,2.72326,3.0392533333333334,3.217093333333333,4.79595,4.2773,5.31885,4.210145,4.13034,3.76095,4.426235,4.073155,5.3198,2.686196666666667,3.1719233333333334,1.154908,4.342735,4.081235,3.647315,1.692834,1.8705466666666668,3.10908,2.892576666666667,2.204946666666667,4.667816666666667,1.8339999999999999,2.784675,3.25601,3.4996666666666667,2.6472,3.4150333333333336,3.9545666666666666,3.048853333333333,3.8994999999999997,4.345158333333333,2.0881066666666666,2.7907433333333334,2.605096666666667,5.3941,2.8815033333333333,40.4354405,2.4228810909090908,2.4228810909090908,2.55791,2.9743399999999998,2.2002566666666667,1.6095433333333335,2.9549066666666666,1.8203699999999998,0.7613546153846154,4.88346,6.8713999999999995,4.09192,3.817755,5.5747,1.9644833333333331,4.414215,1.76581,5.08015,4.89044,5.5399,3.950175,1.6757825,4.25912,4.940785,4.76068,4.78217,5.27965,3.944935,2.983845,3.3548333333333336,2.8234766666666666,2.179615,1.90583,4.32045,2.3108833333333334,3.8718875,3.8718875,2.22965,1.5487833333333334,2.25402,2.5260633333333335,2.5671666666666666,5.14444,2.643683333333333,1.1595033333333333,1.1595033333333333,3.5916,2.01945,2.450743333333333,2.6561233333333334,2.64695,2.5064766666666665,2.2790033333333333,2.21120375,3.04247375,1.62454375,0.83127,60.8501301875,2.451014,3.1326433333333337,2.210522,0.865658,3.560547333333333,1.622064,1.622064,2.98012,3.0090766666666666,0.79327375,2.65301,5.2497799999999994,3.5311333333333335,2.367383333333333,2.7856433333333332,2.0320933333333335,2.6082020000000004,0.292533125,2.3753733333333336,0.772032,2.52357,1.23234,1.23234,2.8740400000000004,1.461134,2.3354266666666668,1.4686173333333334,2.9387066666666666,1.4686173333333334,2.1472866666666666,2.6261933333333336,3.6634333333333333,1.581072,1.581072,2.8247133333333334,1.3785100000000001,3.120316666666667,2.0959833333333333,4.49267,3.973165,12.575706750000002,7.1275025,3.635895,2.752235,4.072725,5.26545,5.4698,2.6163708333333333,4.29381,4.098695,2.3674933333333334,4.352245,3.249686666666667,2.7475400000000003,4.25113,2.2821466666666668,1.0435771428571428,3.886120833333333,2.793283333333333,3.171275,0.7859871428571428,2.690685,3.58244,4.06459,4.411355,6.4827,2.7202,1.8631900000000001,4.035905,4.16485,2.278785,2.5573266666666665,2.13163,2.1435526666666664,0.903716,4.994745,4.244185,3.92088,3.85675,3.13044,4.486655,5.02455,2.8290933333333332,1.6670433333333332,0.5113706666666666,14.444958166666668,0.5095518181818183,0.5095518181818183,0.5095518181818183,3.072853333333333,3.8004333333333338,0.5095518181818183,7.313271666666667,4.419336666666666,0.7177330000000001,0.7177330000000001,3.2883266666666664,3.244415,2.8719,4.40455,4.689,4.185937,2.1300775,4.793817333333333,3.195135,3.382744226190476,4.77607,2.861593,2.2864625,2.5996,2.639075,1.7134775,3.300064166666667,2.949673333333333,2.3225225,2.082095,1.9840925,1.8188166666666667,1.64031,2.5499,1.065428888888889,2.5264,0.5829728571428571,4.95207,1.647155,0.7133116666666667,2.292875,8.002531666666666,2.402265,2.0385915,3.12096,7.73756,3.177,4.32058,3.07907,5.74801,3.786275,3.727725,4.042485,5.13895,2.8802566666666665,4.2508816666666664,1.1299071428571428,4.204255,2.4275333333333333,2.42908,2.50327,2.357085,2.13218,1.21295,5.47595,0.9490454545454546,4.791275,5.38545,4.870185,5.7936,3.7536666666666663,2.44278,1.927228,2.8023833333333332,3.0034533333333333,2.582585,3.7100333333333335,2.661475,4.182795,1.7992599999999999,40.43756591269841,4.65408,2.33024,2.8325333333333336,3.0887666666666664,1.4858666666666667,5.717561666666667,4.254185,2.5311666666666666,3.5869666666666666,2.43282,1.59061,5.31215,0.7737357142857143,5.344190714285714,1.3132357142857143,3.29495,3.4065666666666665,2.8494966666666666,1.411575,4.716613333333333,1.6952559999999999,1.6952559999999999,2.4472666666666667,2.8572695833333333,3.5382,3.3732666666666664,1.43011,2.889283333333333,2.6412533333333332,6.2205625,3.0231366666666664,4.134528333333334,1.5789283333333335,1.37887,3.082876666666667,0.9021979999999999,5.247938333333333,3.4981000000000004,2.8845233333333336,3.705833333333333,3.002076666666667,2.7599366666666665,3.177296666666667,1.7583933333333333,2.44744,2.60745,3.32377,2.4116666666666666,3.6863333333333332,2.4229933333333333,0.5938246666666667,9.589999294871795,2.80515,5.0476,4.86501,2.7429566666666667,2.994596666666667,1.3382025,2.1526133333333335,2.193935,1.3382025,4.081385,0.47613125,0.47613125,1.3797825,1.3797825,0.7481325,0.7481325,2.51376,3.10402,2.459485,1.383535,2.195445,3.48895,3.002825,5.10635,4.897895,2.00094,4.1038,2.44448,4.715413333333333,1.6551175,1.6551175,2.18306,1.712964,3.672175,2.0318925,4.331075,1.4593800000000001,2.4678375,0.5781046153846154,1.1481814285714285,2.0938,2.1960125,2.1637825,1.498565,4.3125,4.327865,2.45972,2.572146666666667,1.3605266666666667,0.7027591666666666,2.30193,3.744635,2.63204,4.39321,5.2248,4.99795,4.00254,6.7324850000000005,1.55303,5.809215,1.835205,4.70801,4.551795,5.831397,2.9350199999999997,2.49268,1.74764,1.938822,1.938822,2.4198875,2.4198875,4.42111,5.61535,0.9040900000000001,4.055725,3.528985,3.48752,2.6740133333333334,1.4029225,2.733193333333333,4.25178,4.03852,1.7622499999999999,6.4157,4.820045,1.9113666666666667,1.2933,3.871145,3.8781499999999998,3.480815,3.5602,4.07187,0.6469907142857142,3.5974,3.0411066666666664,2.686436666666667,3.0283766666666665,2.3949433333333334,3.5226333333333333,1.614857142857143,1.614857142857143,1.614857142857143,3.03161,3.04135,2.78248,3.4766329523809523,2.32224,1.2222157142857142,3.111133333333333,3.217006666666667,1.3073242857142857,2.8394933333333334,2.709103333333333,1.1953714285714285,2.7217000000000002,2.9058333333333333,2.99318,2.699313333333333,2.6528766666666668,2.060265,3.2148833333333333,4.828593333333333,4.33891,0.8787879999999999,1.49298,0.580141,3.5720333333333336,8.874995,3.0001833333333336,3.2753,3.327693333333333,4.285260833333333,1.8981475,7.640105,6.533336666666667,2.8309800000000003,2.1277871428571427,4.22829,4.72524,1.593116,1.3743,1.249308,2.059305,10.535526666666666,2.653723333333333,3.0201966666666666,2.9948376666666663,3.8278,2.35803,1.18969625,3.59868,1.00737,3.676190384615385,4.185815,3.35618,3.19979,3.427675,5.1642,1.1434933333333335,2.0173025,2.0606976666666665,2.0606976666666665,3.902555,5.72275,8.1632225,4.092615,3.46044,5.00365,1.84578,2.2770225,4.4708,4.08351,3.924215,1.5064,2.9171099999999996,3.53354,4.133615,2.29772,4.077965,3.79867,3.43072,4.062515,4.02505,3.99583,5.5265,3.1743133333333335,2.27045,4.37788,3.140835,3.788295,2.12911,2.750375,2.55952,5.42975,2.368725,3.1898424431818184,1.66791,2.491325,3.2472,2.1645,2.0166875,0.8652166666666666,0.8652166666666666,1.782445,3.832880909090909,3.88386,2.8543633333333336,4.168175,3.2729725,2.503622857142857,0.951975,3.56138,1.61957,4.256795,4.132985,0.9095641666666667,1.8711275,3.86789,2.9698525,1.6211275,1.5246566666666668,4.802958571428571,0.9222616666666666,2.803955,3.34261,2.79884,2.43309,2.857094,2.04257,0.9637625,2.872745,3.003365,3.445635,1.3462566666666669,1.5560766666666668,1.833555,4.598575,2.032655,4.20519,4.71764,4.354985,5.85855,5.3992,3.982635,6.19406,3.9393980952380954,0.773470909090909,2.551705,4.239875,4.00467,0.4758136363636364,0.94709,2.93661,4.148245,4.824615,4.54869,3.186889285714286,2.73935,4.594095,1.813704,2.48439,4.43191,4.1290375,3.30156,2.81392,3.905775,4.732125,2.935245,5.2063825,0.926687,3.22147,2.65759,4.39287,4.412845,4.47124,2.08256,2.42468,2.79746,1.8660066666666666,5.0025,3.37828,1.5166285714285714,2.64972,3.9393675,1.4810320000000001,5.886139999999999,1.793204,2.6235933333333334,13.755525517094016,3.020966666666667,1.4683666666666666,1.59459,2.05769,5.497156666666666,1.684206,5.622061666666667,0.70969,3.1017266666666665,4.419035,7.4620025000000005,2.52083,2.963983333333333,2.963983333333333,5.04285,4.576245,3.68356,3.327645,4.84859,4.980335,2.43451,3.344466666666667,4.619685,1.2552066666666668,3.1639733333333333,4.524715,3.96879,3.783605,2.4714233333333335,3.480935,4.064395,6.419543333333333,6.101825,0.737183,4.009825,3.258975,3.5065333333333335,4.28622,3.94877,3.882375,1.5817320000000001,4.74117,2.501315,2.86419,4.162645,4.331375,4.3626,0.916574,2.66336,8.486594,1.4725416666666666,2.066842727272727,2.3143125,3.86779,3.56762,3.371745,0.6762554545454545,2.493705,1.6877325,2.1759075,4.2354,5.385328,2.820988,8.801235,2.325196666666667,2.685256666666667,1.09804,4.46713,5.20895,2.030345,6.107138333333333,3.21196,3.13348,5.39425,4.307695,4.658375,2.164525,1.609525,1.609525,2.701535,3.237855,4.860000833333333,1.5155975,6.007618333333333,1.4963600000000001,3.93586,1.4173466666666668,8.803134333333333,4.74496,3.69834,4.873305,4.991915,4.05826,1.1093816666666667,1.7870575,3.508566666666667,3.143613333333333,3.3433666666666664,3.6916666666666664,3.89233,2.745235,3.10364,3.36799,1.48191,2.537383333333333,1.8416666666666668,2.8937166666666667,1.8938566666666665,5.3709291666666665,3.19702,1.8669633333333333,2.7638466666666663,3.33105,2.98498,6.3303,6.0021,2.995685,3.57236,3.136785,3.253805,2.740975,1.1753966666666666,0.9830080000000001,6.54556,3.285815,5.07985,5.17085,6.47885,2.911345,3.0146333333333337,6.37325,2.47058,0.45202388888888895,5.4264,3.062725,3.72854,3.22926,1.397567142857143,4.61174,1.084484,4.85098,0.89662875,1.5221666666666664,2.7624633333333333,2.485,2.4768202857142856,3.6948,4.939205,5.527816666666666,5.527816666666666,4.56078,4.56078,4.638705,3.014136666666667,4.562295,1.0203375,6.1229,3.800625,3.5112666666666663,3.931475,3.82576,4.18719,1.9678825,4.55852,3.17913,2.92956,4.323865,2.645295,4.519705,5.20385,3.64335,3.266485,4.66798,3.891225,5.0742,3.09395,3.3020133333333335,6.0207,4.103665,2.799913333333333,6.155666666666667,1.6183533333333333,2.2452975,4.56519,4.34866,5.1361,3.73735,2.053561,2.053561,13.302663904761904,11.994,5.09305,3.348665,2.9804974358974357,4.52434,4.68661,2.4838733333333334,3.2675666666666667,3.11254,4.107366666666667,3.6961333333333335,4.833265,2.194205,7.98851,2.35154,2.0301225,5.63625,2.318185,4.957875,4.33858,4.859585,0.9176766666666667,3.488555,3.960175,0.848518,2.94624,4.218054166666667,1.4471640000000001,1.9064533333333333,2.9720366666666664,2.6074333333333333,2.4431,3.1984866666666663,2.30194,0.4862485714285714,2.6767800000000004,2.731946666666667,2.8434333333333335,3.0802033333333334,1.682946,2.90625,7.189021666666667,4.388405,2.47153,2.0143666666666666,2.5446466666666665,3.703565,2.458445,3.59962,18.5785175,5.27725,3.411841,5.64845,3.78109,5.6141499999999995,1.7125899999999998,5.88135,1.5874616666666668,4.228755,4.29668,5.33055,5.09965,0.939319,5.7446,2.550105,4.883625,2.668245,4.36993,4.243595,3.17526,2.17245,1.56237,2.0552575,4.34347,4.70597,2.26163,1.609865,2.95239,4.030443333333333,3.0591500000000003,6.0928,2.0249275,3.89889,4.350355,3.81248,4.7044,3.47492,4.151685,4.72145,4.092485,2.81331,2.81331,5.554358333333333,2.0528333333333335,2.6284366666666665,4.028545,1.749446,7.456715,3.57974,4.5052,4.3419,4.49238,1.8648219999999998,4.133775,5.0935,3.53586,1.96528,3.51988,3.34104,1.17034,1.4952125,1.2347933333333334,0.7292433333333334,1.6747166666666666,0.9807016666666667,4.43313,0.9518644444444444,2.8632233333333335,1.5881266666666667,1.7714175,0.9939383333333334,2.043955,2.3375,1.5223225,3.0669633333333333,2.677096666666667,4.543396666666666,1.5545433333333334,2.43032,3.2269,2.950896666666667,2.2790666666666666,4.3559858333333334,4.98809,5.14957,20.147911333333333,2.733833333333333,2.2081725,0.6038730769230769,0.651903,4.3360899999999996,1.94216,4.051395,4.67558,7.331714,4.283355,4.02727,4.08949,3.126493333333333,3.14499,3.1943566666666663,3.6466333333333334,3.271573333333333,6.4414,3.70748,0.9055880000000001,1.14742625,5.0827,3.12827,2.57917,2.1788966666666667,2.33409,5.72665,4.78317,2.25223,2.37941,3.0559,4.85889,8.332876666666667,5.314019583333333,4.50087,3.93743,5.282,4.63094,4.244085,4.724165,3.972335,5.25375,1.88339,5.59215,1.5853428571428572,5.0894,0.7388466666666668,4.932355,5.4617,6.0474,6.17045,4.46281,5.82185,5.7714,6.3199875,2.01005,1.6130714285714285,5.55815,3.654425,7.027293333333333,5.0229,5.2939058333333335,5.09605,5.85405,1.2805228571428573,4.31412,5.33575,4.1049999999999995,4.57697,5.3431,2.5446,4.00744,3.688335,4.401575,0.9886333333333334,1.5813683333333335,1.372838,4.773305,4.002965,3.616875,2.468576666666667,3.0549866666666667,1.63089,2.1952066666666665,0.3593483333333333,3.4596999999999998,1.656068,2.2775533333333335,2.92902,2.8488,3.1826966666666667,2.5524,2.51955,10.318186,3.7624999999999997,1.7905552564102563,4.020175,0.8602154545454546,4.50656375,1.1324375,1.7628075,1.8809925,1.087765,5.532676333333333,1.1771629166666666,1.1771629166666666,1.1771629166666666,2.88742,1.6373460000000002,5.09785,2.997425,1.806455,1.5444275,1.51341,1.4178125,1.922588,5.364379166666667,0.8738877777777777,4.300705,3.851745,3.2829200000000003,0.9854900000000001,2.160743,2.4063175,2.4063175,1.5367366666666669,3.705518333333333,4.290655,4.85548,5.4915,4.336655,5.19,2.9663766666666667,2.3333625,3.257135,4.96251,3.527655,4.22348,1.08707125,4.065718958333333,5.5222,1.9481725,3.882125,2.9645766666666664,4.585805,5.34665,2.478395,6.6112,6.1648,4.442105,4.47154,4.29407,3.28929,7.81399,3.86783,6.0888116666666665,3.42174,2.673306666666667,5.14545,2.668176666666667,5.10525,5.1,2.788206666666667,3.26677,4.013,1.4560033333333333,10.674985,4.05829,3.12785,15.246487261904761,4.130395,1.7492933333333334,2.8741333333333334,2.250185,2.52174,4.282635,2.8021593055555556,2.786925,3.33416,2.95675,4.146605,5.83798,1.2896666666666667,2.36006,4.16839,4.02682,5.02725,2.1127375,0.6093953333333334,4.88126,4.36277,2.1594825,1.25218,4.468855,4.6463,0.9422277777777778,3.746695,12.643491666666666,1.3244175714285713,0.40973857142857145,3.617766666666667,4.347191666666667,1.0575655555555556,4.14079,3.94295,5.6114999999999995,1.2094449999999999,3.34993,3.85398,3.41082,4.259525,4.471465,5.20125,8.45965,3.24604,3.892895,5.4715,15.85530625,3.353945,2.684825,1.143405,2.2919375,1.308515,1.685075,1.4432675,1.99047,1.6752075,2.2645,2.4457875,2.631075,2.0582025,5.1771,4.012075,5.5714,3.071455,5.553883333333333,2.7227833333333336,4.81138,3.3029933333333332,1.20600875,3.7023,2.0117825,2.806852,4.73066,4.563865,4.81082,5.0623,3.0444133333333334,3.424633333333333,2.4217233333333334,3.983405,3.762835,2.27289,1.856815,3.6061666666666667,4.371345,3.704375,2.4324166666666667,12.041126666666667,0.6685133333333333,2.59963,4.74369,2.647733,1.199706,3.05232,7.452098333333334,7.165805,4.63659,3.86573,3.883335,1.9932725,2.26156,2.9072396666666664,2.1289966666666666,3.681776666666667,4.659975,4.31665,0.5172453333333333,5.91865,3.1815533333333335,3.342033333333333,3.4926999999999997,6.36715,8.96502225,4.427963500000001,0.98905875,2.145675,2.071445,3.549845,2.503715,4.39872,4.586515,3.6165000000000003,2.7588933333333334,3.858555,4.129905,3.78547,3.812666666666667,2.1597500000000003,3.945685,5.2403,5.50915,3.28258,1.959055,2.2175266666666666,14.729088663170163,0.5497754545454545,1.5287675,1.5287675,2.258836666666667,4.278450666666666,3.960715,4.39031,3.03678,3.309015,4.08943,2.9917833333333337,4.16443,2.9917833333333337,3.855015,1.9309866666666666,1.5274966666666667,5.68365,2.530375,4.83544,3.33649,2.586915,6.508253333333333,2.0615733333333335,4.917125,5.0934,3.608015,3.304235,4.577485,1.9685320000000002,4.96015,3.55143,6.9180383333333335,5.378134166666666,2.664575,3.96304,3.919805,2.02637,2.9826466666666662,3.8762333333333334,0.43013214285714285,3.12894,10.12986,4.014565,4.05978,5.2883,3.246356666666667,3.19349,1.3119557142857143,4.429995,5.41435,3.208705,2.75582,5.13145,3.65031,4.215725,4.36729,2.58205,2.58205,3.97142,2.868365,2.8114443181818185,1.770255,4.714835,4.03262,1.0965328571428572,3.52069,4.66215,2.799993333333333,6.5920675,7.75399,1.4798740000000001,4.404295,4.55391,6.498877,0.729025,7.508796666666667,3.3898833333333336,0.5960609090909091,5.4311,5.32605,4.93812,4.520365,4.74021,4.41263,5.0846,3.87496,4.031355,4.425785,4.793865,5.33255,5.3291,3.831155,2.98336,4.43277,3.058595,0.937017,4.09107,2.31461,1.73206,4.16984,4.415895,5.66785,1.09049,4.852846666666667,2.85395,2.6153133333333334,1.944775,1.2250066666666666,11.747338333333333,2.700583333333333,2.891016666666667,2.0793399999999997,3.865549047619048,5.377333333333333,8.259371666666667,2.6965966666666668,1.96546,2.12998,2.12998,2.12998,1.4198266666666666,3.84039,3.850715,3.262945,4.52054,8.158574999999999,4.14305,1.12312,2.23006,3.16351,3.430775,1.761252,4.63334,4.16657,1.5730233333333334,3.5104333333333333,6.311432142857143,7.4153675,4.217795,3.958795,3.0681700000000003,5.114,4.470425,5.1139833333333335,1.88164,1.88164,3.89577,3.81482,2.8275843333333333,2.8275843333333333,3.8809,1.1344514285714287,4.670865,3.465265,4.12611,4.20161,4.52915,3.1278733333333335,0.9912557142857142,4.3523,4.9919,4.67129,4.68986,4.84705,4.736565,4.37052,1.909925,1.471555,3.44843,3.614275,3.17,4.377365,2.223885,3.731795,5.0746,2.820065,4.80952,7.7515149999999995,2.2946529166666663,3.1442583333333336,4.397445238095238,4.8094525,1.5836125,1.9661435714285713,0.956015,1.9661435714285713,2.15171,2.15171,1.512298,4.770265,3.10614,3.533995,2.32709,3.845365,1.5055683333333334,5.36815,3.094415,1.65803,2.8777866666666667,4.56416,3.822915,6.312696000000001,4.607575,1.197562,0.8701533333333332,3.46612,6.860158333333333,2.4327566666666667,3.64658,3.9139,3.9139,2.38699,3.395495,3.211495,1.3648516883116883,3.148903333333333,3.62456,2.82777,4.375175,3.9887675,1.709635,3.961785,4.50884,4.46094,5.2137,4.444735,1.814515,2.0176,1.2782766666666667,2.2790175,3.46934,1.908005,4.084125,3.0544433333333334,2.885675,4.180625,4.84451,1.7737,0.979902,1.8161233333333333,1.5629325,1.1628777777777777,4.891605,4.116805,1.154908,0.20934,0.20934,0.20934,3.29493,6.037058333333333,4.48952,5.1712,4.543525,4.81384,4.62558,4.3782,2.74839,3.753235,1.6047375,4.753445,4.09507,3.840245,4.489995,4.152835,0.7461081818181818,0.7461081818181818,0.7461081818181818,0.7461081818181818,1.1067500000000001,1.1067500000000001,4.006515,3.96393,3.648585,2.68602,2.51805,5.34795,4.67054,5.1132,4.396795,3.02416,2.5232066666666664,9.36312,1.463054,1.463054,4.16982,5.43625,3.2628866666666667,0.47613125,0.47613125,0.47613125,0.47613125,0.47613125,0.47613125,4.705466666666667,5.2217,3.373205,4.310945,2.851725,2.851725,2.757065,3.0145826666666666,2.6240866666666665,3.057,3.53069,6.771252666666666,1.41029,4.63839,3.433135,4.31944,9.682125,2.4329733333333334,2.694995,0.8990742857142857,2.68318,4.90284,3.929025,1.1782175,2.80599,4.199755,5.53995,2.6218,4.873084583333334,1.1241333333333334,1.9215133333333334,4.95008,4.56288,2.876941,2.441943333333333,2.0008233333333334,1.3494066666666666,8.010508333333334,3.425966666666667,2.2392499999999997,3.193335,2.644683333333333,3.92329,3.62565,2.7308533333333336,3.3289733333333333,6.0908,1.5031883333333333,5.146,5.1489,3.861145,3.99552,2.5705533333333332,3.073675,3.843865,3.77448,3.012145,4.444585,4.68642,2.8276233333333334,2.64455125,2.8964200000000004,2.8011666666666666,2.76783,0.7656990909090908,2.1639675,8.129637500000001,0.465618125,2.96947,1.2955699999999999,2.5849699999999998,3.208653333333333,2.861406666666667,1.2278444444444443,1.745142,2.7135233333333333,2.1221825,3.681735,2.08866,2.7773033333333337,1.59889,3.284866,2.243695,1.1479828571428572,2.898006666666667,2.0932325,2.26479,2.601506666666667,3.13165,3.0803666666666665,3.1800566666666668,3.1669366666666665,2.8856066666666664,2.8923400000000004,2.7684933333333333,2.389515,1.6981,2.43189,2.61022,1.62475,2.9662466666666667,3.8495728571428574,2.883013333333333,2.7447933333333334,2.9898399999999996,3.583133333333333,4.585684166666667,3.01337,1.603182857142857,1.603182857142857,2.31661,1.0751325,2.4600925,3.260788333333333,4.503020833333333,2.728225,1.93359,2.1138575,2.10067,3.69237,3.24342,3.871085,4.361605,1.82406,2.3369166666666668,4.16692,1.298016,1.298016,2.512225,0.6363384615384615,2.8303942307692305,2.0894975,2.0894975,2.9240166666666667,2.4979566666666666,2.640703333333333,2.545373333333333,2.0736575,6.146093333333333,4.0171675,4.0171675,3.61697,3.06844,2.14845,2.987495,2.389345,2.96969,5.0785575,0.46623333333333333,0.677068,4.14308,2.26462,2.91915,6.462431666666667,3.521745,1.655746,4.7216466666666665,4.562435,4.10464,4.336415,5.2315,4.571535,13.4424855,3.36105,1.6599366666666666,3.5926,3.71369,4.945595,3.80947,4.18405,4.381485,3.704835,3.201695,2.8743433333333335,3.29274,2.7500966666666664,2.356663333333333,2.356663333333333,4.20229,3.342395,3.16506,3.451635,2.366605,2.43646,2.16675,1.87149,2.0277825,2.0196975,1.8736275,3.5785715,3.31019,2.46688,6.8994349999999995,3.19806,2.3090966666666666,1.9526733333333333,3.459175,3.763105,3.72254,3.1666489583333335,3.515475,3.305295,4.39839,3.738635,3.88429,4.033885,3.3168360000000003,3.55764,0.746805,0.746805,0.746805,3.512155,2.40822,5.1379,2.24927,3.72478,7.406168703703703,2.78039,0.37425153846153847,5.4304,0.7551669999999999,4.218117142857143,1.85308,3.52138,1.89848,4.477205,5.607678333333333,4.268625,3.907685,2.6567266666666667,2.84361,1.458525,2.4157533333333334,0.43148263157894734,0.5702041176470588,2.6074733333333335,1.42188,1.9879625,3.864415,3.580845,4.9045,2.81896,2.977011666666667,3.471745,5.44603,1.694005,0.9472557142857143,2.212665,3.323932,1.3767845454545453,4.91472,3.934235,3.52125,2.751136666666667,4.324175,3.20175,2.65128,2.515683333333333,2.2475925,2.54312,2.136635,3.0854633333333332,2.3627933333333333,5.56792,2.177925,1.868,2.398213333333333,4.851413333333333,3.157302,3.157302,2.4147366666666668,3.929255,2.30394,3.280065,2.822395,0.5663553333333333,4.342465,2.0698625,11.47086111111111,7.31606,2.965195,3.17238,3.178875,5.20574,2.763615,3.52199,0.24934133333333333,2.068965,3.8530333333333338,0.872075,3.84744,1.3778242857142857,4.82149,3.521295,3.50064,3.0813,3.96297,2.139355,4.480655,3.766975,3.890465,6.37761,4.302495,2.9410633333333336,3.084873333333333,1.612778,1.947065,4.38674,4.37687,4.0274925,2.750495,3.800555,1.373024,2.939655,2.46501,4.170015,10.717025,3.71541,7.5499833333333335,3.861335,4.44694,1.0027177777777778,5.032519000000001,4.76402,2.64152,2.678406666666667,3.4305333333333334,3.0587866666666668,2.38674,1.7237066666666667,1.9567633333333332,3.625985,1.5684939999999998,2.883383333333333,4.942275333333333,2.647393333333333,1.129135,1.129135,3.5844,3.0664715,3.0664715,4.0784666666666665,3.165016666666667,3.348600256410257,3.6188333333333333,3.3402666666666665,2.7887833333333334,2.3646966666666667,2.4844566666666665,3.1974666666666667,2.2867,2.3909966666666667,1.646912,5.704141999999999,8.669114333333333,0.4132692307692307,0.4132692307692307,0.4132692307692307,0.5125380944055944,0.5125380944055944,0.4132692307692307,2.9816966666666667,2.9544833333333336,4.291518333333333,1.4317683333333333,1.784605,3.292364,2.4260800000000002,3.0636833333333335,2.402746666666667,2.86997,3.3312933333333334,6.995406666666667,3.1423133333333335,2.4828666666666668,3.287186666666667,4.302165,2.442083333333333,3.2629433333333338,6.64063,2.38422,3.3836666666666666,1.3895233333333332,1.3895233333333332,2.650583333333333,0.5120205263157894,2.139213333333333,2.7093966666666667,2.8575733333333333,3.303763333333333,2.3197933333333336,1.6145399999999999,2.730323333333333,2.8958100000000004,2.4462699999999997,4.45672,2.3757623333333333,3.84057,2.844875,3.853955,0.5138499999999999,7.565736666666667,3.033704,3.033704,7.520590277777778,1.78379,2.040836666666667,2.9106433333333332,4.446025,2.3798233333333334,1.9817933333333333,2.71806,1.413615,3.201943333333333,1.75635,2.9512865,1.38459,0.27524909090909094,0.27524909090909094,4.916905,3.826865,3.36383,2.8011199999999996,2.95229,3.36908,1.2971633333333334,6.06285,3.93593,2.8059,1.85713,1.1927216666666667,1.921525,2.9106433333333332,2.56195,2.04514,5.548975,4.08199,4.37961,3.96874,2.40288,0.6918041666666667,7.072065,1.9987875,1.4722725,3.546865,4.40823,2.327105,1.7271166666666666,4.512955,4.322075,3.2980199999999997,3.06901,4.56161,4.239125,3.5255666666666667,2.542582,2.542582,4.25855,4.95749,5.88035,6.36703,2.76744,3.923605,1.3620628571428572,2.5341,4.907779333333333,3.835295,1.823246,4.66594,3.373735,3.918215,2.11958,4.22626,4.708575,5.1005,4.72545,2.4236066666666667,2.5479,3.6284666666666667,2.1080666666666668,2.546975,2.8399966666666665,2.6120466666666666,0.8510059999999999,2.06282,2.7409766666666666,2.247069333333333,4.525215,4.81524,4.815435,3.90726,4.13552,5.385585,11.94077,5.0871,4.20108,4.388155,3.86596,4.4552,3.3725,3.069544,3.5848666666666666,1.2406925,2.96049,2.929685,4.37604,5.28485,4.219115,3.26661,2.74269,2.30688,4.1882,4.0274825,3.4249333333333336,4.0274825,2.389531,2.3094366666666666,2.4058783333333333,2.23537,2.4908533333333334,1.6156066666666666,0.8392866666666667,1.361505,1.7773700000000001,2.0119000000000002,1.6573733333333334,1.2875433333333333,1.6641466666666667,2.70369,1.549968,2.953773333333333,1.2608633333333332,1.5719733333333332,2.868155,3.3528000000000002,2.51649,2.22927,2.337666666666667,3.334635,2.35017,2.88355,3.0888733333333334,2.482746666666667,3.0646166666666663,3.03742,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,0.1498425806451613,4.857775,3.332,1.0318528571428571,3.130853333333333,2.64096,2.69721,3.526635,3.0894933333333334,4.5142,3.438902,1.633776,3.1412099999999996,1.7683,1.01875,0.91227,1.4851033333333332,0.8348016666666668,0.8145708333333334,1.320584,3.29747,1.672196,1.6791166666666666,1.831747222222222,2.3499766666666666,1.3049283333333335,1.4285616666666667,1.5589833333333332,0.9626483333333334,1.23813,0.7264366666666667,0.8664820000000001,3.43122,3.544415,4.197235,4.488585,4.1811,3.0491200000000003,4.47062,3.8564000000000003,1.9284125,3.494615,1.9237275,3.561445,2.28465,0.7648954545454546,4.203055,4.70211,2.0845966666666667,1.2824875,2.853685,3.3566,3.705518333333333,2.99011,2.53414,0.892225,2.0652775,5.094525,3.91284,2.862805,1.5049816666666667,3.784995,1.9909475,0.5960027272727273,4.3486,4.259715,4.243245,2.754975,1.338316,4.355345,4.434845,2.5639266666666667,2.5782333333333334,2.6253033333333335,2.6062366666666668,2.78483,2.8764233333333333,3.0629933333333335,1.2615,2.51675,2.4448733333333332,5.09305,4.176615,3.60687,4.44464,15.816894407828283,4.2707275000000005,4.722788,2.619175,4.007445,5.05105,1.592022,2.291305,2.57663,6.06118,3.711055,4.0571,6.1269,2.57663,3.8414,1.953955,2.3524833333333333,2.9139666666666666,2.641506666666667,1.1929033333333334,4.242635,3.692035,2.53321,4.25777,2.35832,2.8523300000000003,3.505385,3.15404,4.36007,3.920255,2.69808,3.50515,2.49982,2.49009,1.299994,1.299994,2.788406666666667,2.26094,0.30886,4.748807,0.946336,2.79182,3.497,0.5559325,4.59333,8.155703333333333,1.882705,3.74842,3.708375,2.951033333333333,3.38348,2.284415,3.338615,3.62296,4.13503,2.93599,3.8345333333333333,0.9836083333333333,11.876696666666666,2.85231,2.939245,5.47485,2.63286,3.978745,8.12759,4.16594,4.07766,3.60197,4.081975,5.279605,1.284805,3.053656666666667,4.68459,3.9095999999999997,1.8296299999999999,3.86922,3.706945,3.683495,3.929725,4.12449,3.68181,2.433038333333333,4.029035,3.61367,5.35535,3.55152,2.2367466666666664,2.38974,2.2123633333333332,3.081993333333333,1.3292633333333332,3.7254666666666663,0.8362618181818182,3.24077,2.9924666666666666,2.626986666666667,1.47119,4.2746,3.8363,4.2707,1.79309,4.66675,3.736195,0.7457965897435898,0.3476619230769231,4.479715,5.02255,0.97788,0.3476619230769231,3.524905,0.7457965897435898,0.7457965897435898,0.3476619230769231,5.801271666666667,2.6072466666666667,2.4102866666666665,5.45755,2.916375,3.225285,0.7771577777777777,3.19678,3.9665,4.239115,5.34515,2.2108125,0.73057,4.449694166666667,2.281336666666667,1.3723800000000002,2.0036375,1.0580357142857142,2.50488,2.297,3.4641,5.24685,2.77875,3.4187666666666665,2.8536633333333334,2.3335266666666667,2.9739,4.295842500000001,1.6454075,2.0442075,3.897405,5.10115,2.1469940277777777,5.2567,2.4144,4.022795,4.34097,3.15679,1.156045,3.10602,6.71925,3.67655,3.461215,4.839525,6.31275,2.29878,3.890515,4.543315,3.19861,3.262845,8.25667,3.925875,4.776015,2.36564,1.2230675,2.411653333333333,1.935815,2.048205,1.86671,4.310755,0.6604599999999999,3.580435,3.918215,1.8781233333333331,2.8345466666666668,4.886765,3.99576,2.80602,4.121065,5.43435,9.602231666666666,2.67151,2.5888533333333332,1.63179,1.7459333333333333,1.2362833333333334,1.36982,3.2098,2.3346266666666664,2.910773333333333,4.668271666666667,1.590595,2.2790933333333334,4.879775,5.3921,3.715555,3.435375,3.01643,2.44653,2.04489,1.958725,2.045383333333333,2.04543,3.05805,3.55098,4.944885,5.1615,4.04806,5.249188333333334,4.04012,2.610525,6.1451575,3.935235,8.59296,4.6490525,4.6490525,5.500306666666667,1.7394100000000001,1.606095,2.1841133333333334,0.7082080000000001,4.86018,3.712733333333333,3.346405,3.346405,2.0861,4.32829,4.404665,4.524695,4.489655,2.873813333333333,2.66784,3.80967,2.9971933333333336,5.059054166666667,3.730695,0.8785481818181818,5.2466,5.03825,4.42877,5.1098,3.337465,5.92015,4.240695,0.8518307692307693,5.015,7.042218333333333,3.214845,5.5657,5.73895,3.358195,2.54489,3.9595,6.05075,2.0479425,5.8185,1.880215,4.52903,2.5966299999999998,2.327335,0.926687,4.087115,5.7894,3.322575,3.95108,1.95969,4.650605,7.792854999999999,3.57999,4.326115,2.56142,2.81589,0.8499700000000001,4.76028,1.5362683333333333,3.4483091666666663,3.4483091666666663,3.72339,2.321423333333333,2.9936900000000004,3.82364,1.648875,3.047826666666667,3.4074000000000004,3.2413333333333334,2.92907,3.979875,2.86779,1.77104,3.516033333333333,2.0699775,2.9513366666666667,2.0036166666666664,3.059293333333333,3.069436666666667,1.3764614285714285,1.30274,0.4804,1.315605,0.4804,0.4804,1.30274,0.4804,3.29588,2.604538,2.604538,2.76705,4.63858,4.685845,4.300195,5.17545,4.93214,3.286485,3.98355,4.044355,1.96444,2.4232736666666668,2.50079,0.7606963636363637,5.3901,2.9914233333333335,3.082826666666667,5.3446,3.90022,4.631955,3.41599,2.68078,2.98181,3.43297,2.545593333333333,2.8077966666666665,2.06258,5.32915,0.8248377777777778,3.923145,1.1690657142857144,3.576455,2.4516033333333334,3.0143466666666665,4.04929,4.211555,3.85069,4.271635,3.97877,3.818235,4.249795,4.19386,2.4879475,2.64855,3.18451,4.151735,2.88191,4.202265,2.816085,3.309555,3.2706733333333333,3.49394,4.363895,4.800945,4.03289,67.61687412674826,2.8542616666666665,3.574715,15.614929666666667,4.044135,3.0396133333333335,1.9391866666666668,1.8192599999999999,2.6069566666666666,4.429565,2.9728266666666667,4.262758333333334,6.04165,3.28044,7.493551666666667,5.1435,2.78686,3.32886,3.733705,3.44749,1.815698,1.118245,4.731615,2.520265,6.116896666666667,3.71604,2.2576566666666666,3.375095,3.90249,4.457285,3.334385,5.711375,4.41482,3.52434,3.14439,2.30699,2.972985,6.22175,2.912175,3.791285,4.394109583333333,1.1787983333333334,2.610405,5.20468,3.657125,3.427315,3.604265,3.005035,4.19874,3.08631,3.472025,3.163525,4.59501,3.215005,2.79318,4.438735,9.551985,3.2042033333333335,4.017065,5.83114,3.28897,2.477025,4.02345625,2.1817933333333333,2.8765199999999997,3.140142,3.735815,3.14773,3.76785,3.344335,3.16803,4.045745,3.74082,4.205105,3.835645,3.570925,4.034135,2.7749800000000002,2.7749800000000002,6.72147,1.80948,3.25872,3.315215,2.44951,4.55931,4.173885,3.076465,3.316315,4.724485,6.942095,0.6919663636363637,3.700945,2.39676,2.8647333333333336,2.64538,5.28485,2.7150266666666667,2.0103075,1.12018125,2.050604696969697,4.123255,4.60434,4.02897,5.3258,5.30815,5.865,2.473325,1.7958733333333334,4.87032,2.9604,3.0876033333333335,2.0310166666666665,1.1174516666666667,2.604153333333333,3.296936666666667,1.702004,2.48692,2.4951068571428574,3.541350357142857,2.630395,4.99185,3.40421,1.46177,5.43945,3.42647,5.45085,4.84119,5.29045,4.714965,1.9592833333333333,1.3750799999999999,0.6110357142857143,1.5444000000000002,3.624895,2.49873,3.659791666666667,1.4524666666666668,2.62195,2.316005,3.32177,3.52709,4.03854,4.104956666666666,1.69529,1.4718225,1.9323725,2.08219,1.43536,2.486625,6.62790225,5.1122,3.95191,2.895185,7.462975,4.58695,3.043755,3.03327,3.16794,2.648105,3.96174,2.320063333333333,7.14524,0.8901533333333332,3.046595,6.49875,4.10745,4.427555,5.55375,1.4358333333333333,3.1783300000000003,2.8581,2.8537,1.4580425,4.054385,8.65899,3.570835,4.96821,4.059,3.357965,4.672795,0.8556583333333333,2.8125766666666667,5.3203,6.24122,4.722795,5.45475,2.992795,3.7231666666666663,2.570463333333333,5.2197,4.77144,3.878857,3.878857,0.6797500000000001,3.3988333333333336,0.9259919999999999,0.748395,1.69611,3.538233333333333,3.918272,5.261224857142857,2.6341,3.092364857142857,3.0677128571428574,2.966396666666667,3.055536666666667,4.516666666666667,3.3951824999999998,1.8885675,1.8885675,3.695965,3.0698166666666666,2.7529966666666668,3.59221,3.280863333333333,0.6256455555555556,3.2626866666666667,2.3382833333333335,2.57151,2.8011766666666666,2.58265,2.4378733333333336,3.0955100000000004,2.86965,0.79588,2.7051200000000004,6.124314428571429,2.1175,7.4805675,1.529298,1.529298,3.3590219999999995,3.28405,3.28041,2.8504,1.69176,1.2806057142857143,3.1882900000000003,3.1657566666666668,1.5595566666666667,1.4198471428571426,2.8328866666666666,2.719834,2.6908666666666665,1.96673,1.986635,2.77757,2.24907,2.72062,3.36371,1.734665,3.546355,3.313,6.891775000000001,4.193435,1.7589375,3.462025,2.67389,2.151555,4.11498,2.64203,2.724915,6.682625000000001,0.8195384615384615,0.6872083333333333,4.47964,1.410694,1.410694,3.84138,2.400865,4.41617,3.53267,1.26904,2.2958920000000003,2.9622433333333333,2.348537,4.948335,3.51551,2.6578133333333334,2.2567666666666666,1.50392,1.50392,2.2296766666666668,3.86275,3.7929666666666666,6.3924,3.1390166666666666,5.039,4.68717,6.7731,4.535705,2.39017,2.862276666666667,2.61105,2.715426666666667,0.759531111111111,0.759531111111111,0.759531111111111,3.26858,4.313995,3.986485,1.012505,1.012505,5.28565,6.01965,6.88681,22.198182111111112,11.3424,8.20696,3.530025,5.7747,2.3833475,4.490725,2.5401133333333332,3.3118766666666666,4.1673,5.337722666666667,2.130325,2.155505,6.83907,2.23284,2.23284,6.55585,3.45722,4.140085,2.1991325,4.8100035000000005,4.87538,4.08112,5.09595,3.696615,0.9789466666666667,5.93665,9.29148,0.9789466666666667,2.1991325,2.08885,0.735822,0.735822,1.762878,2.26148,1.762878,4.87761,5.78115,6.2329,9.39011,2.1991325,11.630489666666668,6.31075,6.0878,2.3833475,3.319545,4.68256,9.11559,2.9843716666666666,4.362435,6.163,3.21306,5.2337,6.3713,4.738665,4.979865,5.46325,2.66581,5.36245,3.660075,4.367865,4.378795,0.8319125,1.5364,2.917035,5.3401,4.54219,2.647393333333333,2.00704,3.862535,4.65657,5.63055,5.09885,5.07555,4.41749,3.36869,4.20922,3.66578,2.072485,4.9192800000000005,1.954145,2.556025,3.56689,1.7188999999999999,3.913235,4.34593,3.827665,3.617375,3.05399,6.56529,0.9221833333333334,3.537585,3.740015,1.3141442857142855,5.3239920000000005,1.5335850000000002,1.4921533333333334,2.5638366666666665,2.7970465,2.93304,2.86063,1.8957325,0.7487881818181819,2.2970133333333336,2.620435,3.720385,0.7109084615384614,6.003095,1.79769,1.162358,3.4783333333333335,1.162358,3.986605,0.8540736363636363,4.47259,3.149696666666667,1.953405,4.612167,4.156847000000001,4.156847000000001,4.61735,2.492085,3.072091666666667,2.71177,1.682946,3.776505,3.196975,2.05533,0.7446,7.073668461538461,2.736825,3.68655,3.988365,7.50944,2.3042875,4.19026,3.721635,3.10029,3.55878,5.52585,6.408212499999999,4.27449,5.026,5.09625,2.9029633333333336,4.519605,4.161945,4.601485,1.092172222222222,0.47077285714285716,3.223665,3.378633333333333,2.8284966666666667,5.3983,3.74763,4.37092,4.51207,5.089,4.079275,4.386835,1.18375,2.3191,8.517376666666667,2.23023,1.8842566666666667,3.8795504761904764,11.661367718253967,1.54107,4.893125,6.26325,4.7822,3.1882933333333336,2.28168,3.1642733333333335,3.993815,1.0753000000000001,3.17844,3.707205,0.3727278947368421,2.0184333333333333,4.64978,4.245355,2.126305,4.08759,2.91276,5.048125,1.2829300000000001,0.5794536363636363,3.765195,1.1490471428571427,1.0277,1.0277,1.0277,1.0277,1.4738916666666666,2.72399,2.21984,3.0465400000000002,5.38055,3.2812300000000003,4.9838,3.546265,4.32702,3.632085,3.960345,1.4361233333333334,6.975615,2.34415,4.824165,5.328683333333334,4.953145,5.1519441666666665,3.5322333333333336,2.4021433333333335,2.6016333333333335,3.248815,1.21594,5.2221866666666665,2.5828166666666665,4.90709,2.45742,2.367643333333333,3.80604,3.457345,2.87156,2.527016666666667,2.874356666666667,1.4927075,0.40999444444444444,4.207005,3.4336,4.18772,3.5317,3.934275,5.93475,4.215655,0.5575615384615384,3.297884,7.250481333333333,2.010963333333333,1.941634,5.491581666666667,4.44205,2.6742166666666667,4.925335,5.5191,4.19932,4.136855,4.21188,5.03165,5.2822,4.90422,3.574475,5.289299499999999,1.480618,1.5826516666666668,4.035575,3.926625,4.21103,3.17485,5.32855,4.538215,3.802245,3.40935,15.49061698568348,1.2623975267522738,1.15045625,1.9307198863636363,0.466225625,0.4702033333333333,1.431575,0.3181029411764706,1.310554,2.8534433333333333,1.4430859999999999,0.9335416666666667,1.1086720833333334,0.5225058333333333,1.1086720833333334,1.1086720833333334,0.5225058333333333,0.825023076923077,0.5897121428571428,2.76747,2.6645,4.20977,4.24265,2.833766666666667,2.65145,4.01641,5.0424,5.1294,2.869485,4.32216,0.6895071428571429,2.410919333333333,8.418643333333332,4.526435,6.890415000000001,2.619075,4.02521,2.277975,4.929565,5.22845,3.06362,4.364255,2.97865,1.01264,4.108355,4.759945,1.0121499999999999,1.141956,1.51367,2.4451433333333332,2.227653333333333,4.356835,5.4082,2.28567,2.28567,3.541301666666667,6.55017,2.1037433333333335,0.6559636363636364,0.7545271428571428,2.1305533333333333,3.4347,1.01762,1.01762,1.01762,0.3759569230769231,1.0435771428571428,3.06655,6.06325,3.925966666666667,4.187853333333333,5.3757,1.01676,3.4780333333333338,3.3839333333333332,3.831633333333333,5.7598,2.5815733333333335,7.7309166666666655,5.09,1.138211111111111,3.8300666666666667,1.8033480000000002,2.654995,2.309633333333333,6.81873,3.0811233333333337,4.619245,2.44676,4.130635,4.37236,4.710435,0.4743227777777778,3.059473333333333,1.4633099999999999,2.35882,3.9123653333333337,2.1356633333333335,2.7781066666666665,2.37723,2.5062366666666667,2.4719666666666664,2.7644033333333335,2.6784966666666663,2.7861700000000003,1.326642,2.2811666666666666,2.3909133333333332,3.1758433333333334,2.7075833333333335,2.203955,1.8932533333333332,2.033513333333333,1.7349475,3.386645,2.448043333333333,2.079286666666667,2.0651266666666666,2.4908233333333336,2.30755,0.7808511111111112,0.7808511111111112,0.7808511111111112,2.506343333333333,2.2357299999999998,3.0172266666666663,2.7995933333333336,2.60666,1.9807433333333335,4.009215,3.604498333333333,1.3539183333333333,2.5095433333333332,2.7675300000000003,3.913806666666667,1.5727714285714285,6.893393333333333,4.643365,2.97129,4.126225,3.44581,1.5014525,0.6577200000000001,3.487555,3.912005,3.913806666666667,4.299465,4.170315,4.560465,2.9215199999999997,3.68495,4.15599,0.8323259999999999,2.761745,3.39224,4.79049,4.748365,3.60785,3.368025,2.44077,2.395913333333333,2.488653333333333,0.6368366666666666,5.209869583333334,2.74725,4.240595,2.63475,3.8021916666666664,3.161216666666667,2.43046,2.876223,2.876223,2.6915,2.0456833333333333,2.54035,2.0398833333333335,4.21519,1.400098,2.695315,3.83334,3.83325,4.07239,5.01855,4.21089,2.510975,2.038565,3.369275,4.0175,2.935815,4.86015,2.86254,0.9406657142857143,0.9406657142857143,4.32646,4.0078309999999995,0.934676,4.65,0.934676,4.03487,4.586305,4.72185,3.24954,3.29112,6.2780125,4.254270833333333,5.8371,0.8737357142857143,0.8737357142857143,2.12962,4.603531666666667,1.4254316666666667,3.1781,3.563015,1.1424985714285714,4.48042,3.89249,5.723375000000001,5.723375000000001,0.9396266666666667,5.06245,5.01695,4.872735,6.03135,2.0333475,2.0333475,7.0034,0.9361818181818182,7.22575,2.0174825,6.3851875,2.459465,2.5353033333333332,3.406825,2.08398,2.2133266666666667,2.3280366666666668,3.019406666666667,2.6292854761904763,6.538645,1.902384,5.18475,2.8390566666666666,2.5526966666666664,1.771995,2.173045,3.24561,3.413735,3.43566,2.635325,2.107225,2.268275,2.54403,1.12141,3.20787,2.136105,3.121645,2.081133,2.081133,2.995655,1.8248566666666666,3.76261,3.554625,5.175,7.244950000000001,4.181235,3.462895,6.319307,2.1406066666666668,3.229256666666666,2.200493333333333,1.5171714285714286,1.7281725,4.04922,1.5969283333333333,0.479445,0.6577266666666667,4.179965,4.334185,3.058055,0.9169877777777778,2.908845,2.7021033333333335,4.88309,1.907838,2.007595,1.1425111111111113,4.52943,2.424615,4.373245,0.7053689999999999,4.209126666666666,4.58348,4.29133,4.50802,3.55978,3.83529,2.7789466666666667,5.3674,3.70618,2.0953733333333333,2.7189933333333336,6.146136666666667,6.6230775,0.7716275,3.93617,4.20408,5.3015,3.6422333333333334,3.8396666666666666,2.886175,3.1026133333333337,3.7265,6.104595000000001,2.719834,2.676839,3.618745,3.72366,2.26753,2.34896,8.216213333333332,5.0956,1.95685,4.93295,4.590675,1.822404,3.836975,1.401275,1.697957142857143,4.41411,3.909615,5.46795,2.8428133333333334,3.704705,4.077135,5.7223,3.89836,4.24737,3.56846,4.528615,4.093225,4.38504,1.1652570769230768,1.1652570769230768,7.49201,0.82934,2.257938988095238,0.82934,0.69134,0.37450666666666665,2.949278988095238,2.2856,0.6994685714285714,2.257938988095238,1.998535,2.968585,2.2498104166666666,3.417845,4.545005,7.594663333333333,1.980285,1.986045,2.207665,4.87698,5.70455,1.82289,1.7056575,1.02472,2.7303775000000003,4.09926,2.61976,4.287345,6.29977,0.4731366666666667,3.93003,0.745931,2.821263333333333,2.5407,3.74719,1.2968683333333333,4.22146,4.6545825,4.112945,2.87207,3.865625,4.8748775,1.6192675,3.367965,0.5727207692307692,2.704255,2.578805,1.18893,2.965676666666667,2.4703566666666665,2.5809,4.103655,8.461185,3.154720303030303,3.77216,3.716065,7.29111,5.409055833333333,3.3262633333333333,4.10149,3.464255,5.7266,5.6689,6.1249,5.40755,4.16682,6.0149,3.3300133333333335,1.610205,1.9433066666666667,2.6611433333333334,3.96102,2.4322333333333335,0.25584945945945947,0.25584945945945947,0.25584945945945947,30.80473580952381,0.25584945945945947,3.0144244594594594,0.25584945945945947,0.25584945945945947,0.25584945945945947,3.318196126126126,4.32539,0.25584945945945947,0.25584945945945947,0.25584945945945947,0.25584945945945947,0.25584945945945947,3.784415,5.18284,3.04624,0.3294,0.3294,4.4323266666666665,4.000489541666667,3.9038102083333337,3.213047430555555,3.984295238095238,7.996266666666667,11.095616641414141,6.465903333333333,8.044953333333332,7.062652964285714,2.650583333333333,6.007117619047619,4.356301666666667,4.397449166666666,0.3294,7.922164333333333,6.644331523809523,6.963373333333333,2.77175,8.933294964285714,14.777754940476191,18.418988424908424,56.42538545533878,116.40947163743446,1.3895233333333332,3.3836666666666666,3.2428,3.818854539253539,0.3294,1.6996483333333334,8.440750416666667,14.112906714285714,20.27428527777778,48.56420424665831,12.973885630952381,2.99005,0.2918141379310345,0.2918141379310345,4.689316666666667,2.8223533333333335,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,0.2918141379310345,8.37442,0.2918141379310345,0.2918141379310345,0.2918141379310345,2.74986,2.0664700000000003,3.452195,3.570615,4.0045641666666665,5.22915,2.39505,4.06847,4.48158,3.29214,1.5127433333333336,3.715835,1.0267183333333334,2.23922,2.30896,5.37031,6.0478700000000005,2.7326433333333333,5.603677722222222,0.49418611111111116,0.482376,2.468593333333333,2.681373333333333,3.013825,4.19547,3.3486333333333334,7.6316775,3.836865,3.42389,3.33818,4.06767,3.122625,3.17314,5.53975,2.7277,0.4528492307692308,0.8754927272727273,4.2390125,1.7914525,3.670005,3.81001,4.541155,3.50956,2.4858425,2.98331,0.5969333333333334,0.766042,4.122365,2.6931,4.61914,3.60998,4.267051666666667,2.644345,3.68802,5.10645,4.815675,3.11244,0.9092454545454545,3.389,4.359795,2.293775,0.95366,1.6861166666666667,3.67835,6.0717,1.72552,3.33765,3.679765,5.1532,2.544805,2.3751233333333333,2.335195,4.221575,2.441155,3.81077,0.6792514285714286,2.7153833333333335,3.38393,1.85925,6.234473333333334,3.51479,4.141235,4.56818,2.79207,2.228815,0.5330054545454546,4.7221,4.533805,5.9788,2.527025,4.49816,4.041775,3.004525,1.9930308333333335,1.267737142857143,5.2822,1.92599,2.636845,8.921895,4.13513,5.1919,3.392315,0.8599033333333334,3.04421,1.1747342857142857,3.201105,6.23255,5.1495,4.90994,3.612285,4.992515,4.498355,1.6899275,1.9156000000000002,4.915135,2.8754899999999997,3.378033333333333,2.275025,5.0267,4.467025,1.435205,3.5343999999999998,2.651025,2.79425,3.747335,9.47865,4.38652,1.76784,4.69612,6.63992,4.3534524999999995,4.085545,3.82503,3.830515,4.50023,8.328005000000001,2.4834866666666664,3.131665,4.13886,4.44852,3.01667,3.19046,4.645295,4.27529,3.46215,4.091232,18.353404666666666,2.68684,2.5520633333333334,3.233833333333333,5.633468000000001,1.08636375,4.34505,2.0958083333333333,4.90905,1.3800999999999999,4.20428,4.26127,4.0604,0.968145,4.4789,4.364565,1.6504175,4.805137803030303,4.270785,1.0592542857142857,3.711135,2.051,2.29015,1.595675,4.344715,3.855415,4.4489,3.61676,2.8725,4.39193,7.996006666666666,4.329865,4.4173,4.6766,3.0548333333333333,4.112625,4.784865,6.355479000000001,0.8995620000000001,0.8995620000000001,4.458775,4.691305,2.1905766666666664,1.4082350000000001,7.023875,4.16029,3.260935,3.883335,4.577695,4.437185,3.47088,3.827945,5.817124,4.021616666666667,4.285035,5.679,1.476357142857143,2.76,4.264235,4.827545,3.4476312499999997,0.20554,1.7272625,2.26311,2.486073333333333,2.180563333333333,0.9517944444444445,1.44934,1.39255,2.4788,0.6040233333333334,1.1651785714285714,1.967265,3.95743,3.8946666666666663,2.6463433333333333,2.6571766666666665,2.8858433333333333,3.003963333333333,0.6690959999999999,0.96825,3.29013,4.562975,4.096535,3.88859,4.325975,4.455015,4.48775,2.1117999999999997,4.420815,5.0324,4.573045,6.50474,3.98205,0.4693105882352941,5.528,4.51366,4.17632,5.4001,3.219165,1.90917,3.986645,3.93773,2.980975,5.210359166666667,4.427,1.3883616666666667,5.210359166666667,4.064465,6.8527575,3.94183,1.2082777777777778,3.838945,5.0803,4.24925,2.5840166666666664,4.87657,1.5314075,1.96957,4.023415,3.56722,0.8317666666666667,4.69278,4.880595,3.44745,4.73986,3.1642766666666664,2.96785,1.77912,1.9188225,3.0735,3.682515,3.4393999999999996,2.4637333333333333,2.512875,2.0970516666666668,4.91514,1.5769,0.8467622222222223,6.64115,4.41002,1.4628320000000001,2.7684433333333334,2.453463333333333,3.2955433333333333,6.781518333333333,2.421847777777778,0.841153,2.593945,4.811205,2.45407,4.15348,5.39945,5.46,5.26935,4.20421,4.54913,2.18005,2.1971166666666666,1.7091200000000002,2.11282,1.8279825,2.5993366666666664,2.265826666666667,1.6452,2.661285,3.044045,3.65308,6.46215,5.169,3.97516,4.57446,3.94704,3.89205,4.60316,0.91514375,2.8491,5.02355,1.127424,0.6868066666666667,4.80773,3.629655,2.6405833333333333,3.45298375,6.11565,5.0231,0.987974,1.2354442857142858,0.6956566666666667,4.243954166666667,2.375766666666667,2.8198566666666665,1.18276,2.8289233333333335,2.6540066666666666,5.4428,4.73044,4.25767,5.3233,4.03824,1.2946483333333334,3.586095,1.56932,3.54311,4.410575,3.73608,2.833816666666667,3.1572566666666666,2.713233333333333,5.8215,4.08149,3.09127,2.3342625,8.584859999999999,10.145425,4.2362,1.3226542857142858,5.26265,3.925885,5.00515,4.460635,4.05249,3.879725,3.4777,4.305745,3.8396209375000003,4.45647,3.70306,3.723515,4.62756,1.8159859999999999,5.67085,5.9074,4.884255,3.2513,3.12096,7.0456,0.7524516666666666,2.70757,2.76929,2.4442933333333334,4.94916,3.129725,1.2736883333333333,4.165345,3.4474,3.80851,4.723045,3.7784325,6.700794999999999,3.1904066666666666,2.92431,3.122246666666667,2.91379,4.045975,2.16724,2.2114533333333335,3.0622933333333333,4.08924,3.6277350000000004,1.9331775,1.5937125,3.3280489285714285,3.0908405,0.9360611111111111,2.558606666666667,2.558606666666667,1.2408675,5.51965,3.52291,3.29249,3.38361,3.42721,3.51355,3.484725,3.293105,3.21767,2.104983333333333,0.5385693333333333,3.42625,5.6553024999999995,3.01612,3.70032,3.292295,4.07035,4.13219,3.221625,2.81875,3.858025,3.8657,3.07569,3.297335,3.631745,2.6510366666666667,3.99714,3.867555,8.89835,3.66895,3.69978,3.20856,3.99088,4.086015,3.68228,2.54243,3.69018,2.55009,2.945105,2.983075,3.2342,3.879745,1.6995966666666666,1.6995966666666666,2.402125,2.98223,3.459825,1.574796,2.373995,3.37188,1.9177440000000001,2.97872,1.574796,4.48742,2.98081,3.8578907499999997,2.98952,3.295165,2.483005,3.699285,3.88234,3.7804,3.547325,4.387695,3.79481,4.22102,3.52759,3.04706,3.41519,3.026725,3.765135,2.6673666666666667,3.68332,5.14445,4.167395,3.71214,0.2933826086956522,3.568165,0.4560675,3.932835,3.571125,2.905755,3.547035,3.875,6.048698333333333,3.279125,2.6246266666666664,2.3900333333333332,2.7353199999999998,0.6789229999999999,5.780325,3.17375,3.456705,4.155845,2.03061,2.624375,3.260205,3.19475,6.616245,4.4293,4.989955,4.089745,4.59874,4.26455,4.2879,1.4896216666666666,1.660134,3.772095,4.52344,5.5657749999999995,2.346153333333333,4.5995,1.869825,3.4594666666666662,3.573505,1.7972447619047618,4.01223,4.70214,3.428933333333333,3.6400333333333332,2.9556566666666666,4.352185,4.90518,3.599266666666667,4.307915,4.356255,4.721325,4.355615,4.485845,3.901415,3.34559,4.48538,2.561975,3.16295,3.16295,4.19718,2.6189433333333336,3.97099,2.8429066666666665,4.553975,3.3621,3.43235,1.943705,1.8040866666666666,1.1754200000000001,1.1754200000000001,1.588654,3.4874333333333336,1.7334133333333333,2.805516666666667,4.47477,5.5467825,3.3424666666666667,4.41693,5.87574,2.726815,2.706295,2.8456433333333333,1.60377,4.315885,4.008665,6.47238,1.6566166666666666,5.2989,5.3012,3.4534333333333334,3.37444,4.215325,6.79901,2.0762766666666668,2.38196,3.8984,0.4694842857142857,4.20253,4.040205,4.38083,4.191145,3.39969,1.4394339999999999,1.6391079999999998,3.90089,3.673605,2.424166666666667,3.71525,4.54626,4.82834,1.1382375,3.78392,4.05178,3.733395,4.892975,2.7033066666666667,5.347356666666666,3.69678,1.500962,3.587435,1.223925,2.762113333333333,7.597546666666666,3.26707,0.7242709090909091,3.149635,4.311215,4.1206,2.010905,2.010905,5.201913333333334,5.7787,2.797865,0.48379000000000005,1.9719175,4.211501666666667,4.350235,4.106535,1.724568,2.91099,3.467555,1.22188375,1.22188375,1.22188375,0.7494033333333334,1.329135,0.5797316666666666,1.22188375,0.7494033333333334,0.25756,0.8372916666666667,0.25756,0.49184333333333335,0.49184333333333335,0.49184333333333335,0.49184333333333335,1.151746,1.1552575,2.3833800000000003,2.39599,1.1395583333333332,6.269713333333334,2.6567833333333333,6.116733333333333,2.4906433333333333,3.6647,3.10914,3.267185,2.7154583333333333,4.91429,2.75563,3.962935,4.08041,4.72585,2.2760725,3.73206,4.66937,4.06111,3.267905,4.83819,3.27367,4.551885,5.08445,4.926675,6.0066,5.3886,1.166065,4.110865,3.87975,2.76771,14.463155,4.286965,5.15385,2.8413166666666663,7.34416,4.139155,3.939715,4.831835,3.13098,1.085995,2.50145,3.976195,4.223105,3.55556,3.373825,4.13748,2.788456666666667,4.318335,4.63473,4.061785,6.754886666666667,8.542375,1.34932,3.72042,4.02658,3.754085,3.40545,3.4468,6.86929,2.577365,2.77399,2.441675,4.013985,3.79155,4.48619,2.50921,1.6576925,0.887552,4.4734,4.21512,3.809315,3.77887,3.61465,4.944765,3.944665,6.2381,5.56665,4.47986,6.31155,3.791435,3.259685,3.271385,3.434535,1.8490175,4.7507,6.16095,6.4797,5.966416666666667,5.966416666666667,2.40286,1.8490175,2.118345,2.98394,0.7122783333333333,1.5051358333333333,0.7928575,1.47149,2.593295,0.367761,3.124525,4.06217,1.47149,2.8791100000000003,10.89983,6.5324100000000005,2.282347333333333,1.0574400000000002,1.7974333333333332,4.980755,4.39086,5.547997380952381,2.0409,2.256575,3.90235,3.916225,4.475885,1.64544,5.2688,3.3890666666666664,3.292105,5.0605,7.1687520000000005,3.925275,2.3176975,2.7557333333333336,1.7076733333333334,4.06476,5.3011775,1.705696,5.40885,4.5083,6.2104550000000005,0.55715,4.862816666666667,4.04613,4.71763,2.41846,2.738925,7.30485,9.058016666666667,6.67845,2.1656666666666666,2.1656666666666666,2.1656666666666666,5.38565,5.05465,6.1885,3.183675,2.81263,2.5586144736842105,4.51644,5.0835,2.648264,1.944245,2.648264,7.0077240000000005,4.676703333333333,4.529222619047619,6.81699,4.529222619047619,4.529222619047619,3.324624285714286,7.01512,5.616787,2.937442,2.937442,2.601345,6.882,2.870305,3.563325,5.562885416666667,5.562885416666667,5.562885416666667,8.093595,3.6931675,3.42084,3.717235,3.5495975,0.90356875,7.306033333333334,2.62933,5.8645,3.56218,13.039369,4.280115,5.704533333333333,7.04282,2.734236666666667,3.414025,1.1308816666666666,5.704533333333333,3.512745,1.6796275,1.6796275,3.033405,5.356745,1.74707,4.8538033333333335,0.8569150000000001,1.4309033333333332,0.8569150000000001,1.933845,2.6039849999999998,5.469475,3.550975,1.4309033333333332,3.07996,4.77449,1.03677,3.507495,4.510735,1.82333,4.147705,2.539745,3.182915,3.181615,0.964622,3.76389,2.02271,1.74545,1.67558,3.2132750000000003,3.922745,2.77614,3.78204,1.2584655555555555,1.2584655555555555,1.2584655555555555,4.052215,3.0078366666666665,3.0078366666666665,2.68535,3.877845,2.2865800000000003,1.4285,1.4285,3.01173,4.2878,0.77725,1.5252233333333332,2.99287,1.2154850000000001,2.740708333333333,0.964622,0.964622,2.0284466666666665,0.964622,3.348163333333333,0.5941583333333333,3.348163333333333,5.9743691666666665,3.379385,2.39836,1.8269325,0.6621733333333334,2.4891058333333334,3.68787,2.4891058333333334,0.97196,3.21801,3.854185,3.81798,3.640705,2.40797,3.928045,1.9410433333333332,0.7899602777777778,0.4292025,0.7899602777777778,0.3607577777777778,0.7899602777777778,0.7899602777777778,4.16644,4.734695,4.41442,3.510545,4.43067,4.43217,5.2178,3.314515,3.746015,1.2864585714285715,3.01792,4.417435833333333,3.96954,1.3730266666666668,2.63049,3.80132,3.828205,4.10882,3.56943,3.919925,3.57482,3.21734,4.297575,2.24747,5.8469,3.64457,3.98958,5.107208571428571,1.3054845714285714,2.131895,3.79029,6.72643,4.449165,4.19599,3.13664,5.31915,7.865483333333334,3.3770666666666664,3.23016,3.4316333333333335,5.20775,4.132795,5.5144,5.48505,4.738685,3.36427,5.0528,4.69951,3.4105333333333334,7.723955,3.1006666666666667,2.21402,2.1658166666666667,4.942015,6.5478,5.7703,5.4212,4.33448,5.2768,5.64805,0.5155869230769231,7.29347,4.4253,4.156865,3.594405,4.60756,4.047695,3.0401366666666667,2.489665,1.3502216666666669,0.5741530769230769,1.7521660000000001,2.95078,3.5732,3.354205,4.24288,4.12216,11.693886666666668,3.74766,3.777515,2.82388,0.71403,5.717883333333333,3.06001,1.4289833333333333,4.488993333333333,5.62344,2.56343,7.98592,4.51174,1.8575620000000002,1.8575620000000002,1.8575620000000002,4.197795,8.92528,3.513145,2.0171925,2.0171925,3.093,9.78883,1.03452875,4.863655,4.24767,3.97123,2.7159333333333335,2.38416,4.5615,3.89797,5.8268,6.19038,3.918085,2.9169,3.88386,4.13681,3.4069830000000003,1.3042,2.966943333333333,6.11482,3.32852,4.802025,0.98016875,3.7341333333333337,2.51909,2.6160433333333333,1.7711375,1.8031066666666666,2.1245333333333334,6.04865,1.99658,4.342065,5.6887,1.902384,4.54877,3.853355,4.76443,2.9415999999999998,2.19624,2.642145,3.989725,4.075088333333333,4.075088333333333,1.12758,1.6653766666666667,2.8506,4.368965333333334,2.244422,4.8138966666666665,1.7607,2.683006666666667,2.13555,1.602245,1.602245,4.839715,7.240231666666667,1.95814,2.896186666666667,2.0585575,5.8158,3.301225,0.679422,2.957355,0.679422,2.69394,3.433125,4.738,5.6675,3.712175,4.50228,5.7232,2.281055,1.9686066666666668,2.5628766666666665,2.25484,5.95915,4.87848,3.70317,3.709735,2.795515,4.131665,1.0607025,1.104792,1.9849366666666668,1.4334266666666666,2.4863466666666665,2.7230266666666663,2.2806633333333335,3.129566666666667,2.585255,4.261405,2.5672333333333333,2.38231,2.7525399999999998,2.360933333333333,2.868743333333333,2.7822566666666666,1.94576,2.4649933333333336,3.819305,4.118585,3.659915,3.287465,2.93838,2.277515,1.9346525,1.2628666666666668,0.311336,0.16603978260869565,2.1561866666666667,2.13498,0.16603978260869565,4.01187561594203,2.2710775,0.16603978260869565,6.022636805555556,2.261916666666667,6.57179,3.356405,3.529033333333333,2.345153333333333,2.803803333333333,2.3749175,4.462385,2.9809866666666665,3.3094933333333336,0.4496210526315789,3.9869483333333333,2.568771052631579,2.83366,1.814785,2.44431,4.00213,2.558115,7.939395,5.1162,3.333615,3.747695,6.1027,6.4459,1.75283,4.0564350000000005,2.040345,1.792695,6.88273,7.60454,1.1873566666666666,2.068255,3.838745,2.556325,2.875005,3.07508,2.92157,4.2397849999999995,2.51015,3.122745,3.43799,3.18213,7.63719,1.31785,1.917445,3.16932,3.341385,1.5868233333333333,3.376375,1.46966,3.773065,3.348185,6.65107,3.478065,8.52232,3.680865,1.57957,1.6599466666666667,3.11336,6.15876,1.84296,1.70124,5.67471,3.458515,4.02831,2.684755,2.0984166666666666,3.25292,10.582035,5.07253,6.18945,3.55963,2.34455,2.11318,2.598815,2.970335,3.182475,1.67275,1.5765533333333333,2.506596666666667,3.50709,1.784605,3.274785,2.454325,4.06951,3.713385,3.159085,1.2851216666666667,2.587015,1.0432233333333334,1.263402,1.604805,3.235405,3.53204,3.841555,2.634345,3.68905,3.87861,2.74491,1.450038,3.563935,3.373735,3.237575,1.92807,3.072455,3.280235,1.49637,3.509605,1.5792400000000002,4.046855,3.845645,4.83351,2.63908,3.933415,1.77927,3.906175,4.729445,1.737395,1.099937142857143,3.8631666666666664,2.541445,4.361935,4.290115,3.153965,4.40871,4.6474,2.3263833333333332,5.54605,5.415245,6.6126,4.08793,6.1122673333333335,3.85721,1.5529483333333334,2.6323666666666665,4.590415,4.80243,2.5857766666666664,7.190612,1.2770514285714287,3.5734333333333335,2.2079,1.751238,2.3343599999999998,2.8332833333333336,0.3752307142857143,2.765143333333333,3.1527433333333335,3.60148,2.30604,3.2983966666666666,2.303263333333333,2.4388033333333334,2.2023825,8.926639999999999,4.684955,1.5854620000000001,4.883655,2.7482829130434783,0.7457965897435898,2.76642,7.512965333333333,1.791128,4.71391125,6.101125,1.81947,1.7424975,1.45617,4.82937,3.353905,4.51732,4.2586775,2.4819400000000003,3.846955,0.9759059999999999,2.836739333333333,4.17938,4.14164,5.14805,3.07854,4.62061,4.79351,4.551065,4.792825,5.65195,4.37644,4.514925,4.656535,1.503758,1.9481725,2.852625,3.464925,1.1960777777777778,4.194915,2.070813333333333,3.25053,4.08604,3.137536666666667,2.6423133333333335,1.55493,3.074856666666667,2.718088611111111,2.737413333333333,3.030936666666667,2.0042266666666664,2.053645,2.334525,3.687635,5.03785,3.856745,4.56076,3.464485,2.384285,3.201475,5.1444,3.4540666666666664,4.516465,4.110595,2.32326,4.400376666666667,1.7193566666666669,4.28027,5.324301666666667,6.447165952380953,4.43086,4.55209,5.47,3.4268666666666667,3.9227566666666664,4.41546,3.399045,3.7035565000000004,3.483675,2.0020475,3.136295,1.68198,2.24932,4.080225,5.37939,3.7035565000000004,4.144755,3.51327,1.4254316666666667,3.636305,2.08139,2.64203,2.404335,2.82814,1.5867289393939394,1.5867289393939394,1.5867289393939394,0.5511072727272727,0.7679544444444445,2.175517777777778,1.06018,3.533495,1.2248566666666667,4.02143,5.0159,4.209435,3.22549,4.089395,3.168905,4.884625,1.6236175,3.19077,2.41483,3.48873,5.871403,4.087125,5.47285,4.071715,0.9410525,2.23374,1.28108,3.82247,3.920145,4.229545,4.93909,4.81289,4.448025,4.7229,3.690815,1.73464,1.2412216666666667,5.435673333333333,1.0171877777777778,1.3903266666666667,2.5934233333333334,8.204235,3.765545,3.71149,2.96294,5.7048475,1.6897825,0.9800133333333334,1.4609025,3.296415,3.431845,3.80588,3.60348,1.9185025,6.110085,3.0357833333333333,0.96092125,5.08095,3.0459599999999996,2.7123666666666666,2.33331,3.5694,5.84951,2.7154166666666666,3.0671033333333333,3.6910000000000003,2.363236666666667,2.9551766666666666,2.9024633333333334,2.852945,1.968215,4.61016,4.68864,4.73995,1.0260055555555556,0.722802,3.8486333333333334,2.7055466666666668,1.0684225,2.8589891666666665,4.45076,4.465065,7.265205,4.588435,3.6804333333333332,1.7400980000000001,4.101185,3.72138,2.7724766666666665,2.6562657142857145,4.04874,2.8934333333333337,4.960044666666667,0.9037533333333333,5.1131,1.71573,4.616075,4.18841,2.10189,1.06543,3.065775,0.408723,3.60612,6.6947,5.42965,2.6389839999999998,1.487148,2.3894333333333333,0.7662755555555556,2.5270633333333334,0.7662755555555556,3.987845,4.14511,1.3439975,1.90772,5.012225,1.8185900000000002,3.54665,4.133665,3.562765,1.254148,1.5835766666666666,4.10265,5.1656,4.970845,3.140142,2.282165,3.10265,1.6613775,2.3614075,1.8350475,1.97952,4.26077,1.4344,1.4344,3.23047,4.734674666666667,8.2578925,4.7342933333333335,7.103490000000001,2.32809,3.792285,4.045855,1.6346116666666666,3.6054216666666665,4.123655,3.87734,6.19805,3.078725,2.404445,2.8101033333333336,3.790725,1.09186875,4.129375,4.562525,1.2090183333333333,7.87345,2.586485,3.224425,3.407410833333333,4.443875,4.17021,3.8886104166666664,2.4993,2.8304500000000004,2.029786666666667,3.583133333333333,2.498505,2.1728825,7.514681333333334,3.27709,3.1304766666666666,4.38363,22.48430337728938,0.660836,2.59312,4.323655,4.386095,8.74166,4.558785,4.211375,4.444815,6.88198,3.555245,1.93055,4.803395,3.29999,1.263756,1.263756,1.263756,2.7310575000000004,1.718925,3.43361,1.58055,3.06419,1.4358333333333333,2.65159,2.50067,2.87301,1.58055,3.175365,2.72216,4.196135,5.030743333333334,5.12745,0.7836025000000001,3.219725,2.57718,4.884235,3.96482,2.936725,2.186055,1.671745,2.084515,1.4212960000000001,3.805735,1.6675775,4.601405,11.281252333333333,2.692466666666667,2.336355,4.919113333333334,4.382000000000001,4.349766666666667,6.5531,2.11915,5.409055833333333,4.559645,1.0072983333333334,1.1856514285714286,6.420528000000001,4.125065,2.231275,3.81613,1.9160275,4.441575,4.89568,4.436565,4.05726,1.3394714285714286,4.162325,4.93852,4.495545,6.188239,3.578515,5.22005,4.60549,4.125505,5.0945,3.4847,4.74199,2.101795,3.37072,3.34323,4.63886,3.92304,6.1686,4.38091,2.3279166666666664,3.3735666666666666,8.711884999999999,4.443395,3.02978,3.644055,3.4108,4.524945,4.31963,4.823425,6.755111666666666,3.40738,2.6796333333333333,4.182475833333333,2.401465,4.287735,2.6761866666666667,6.694122500000001,1.5544616666666666,4.638265,4.437815,11.509595,0.468705,4.52253,4.355525,0.6331314285714286,3.71245,4.00003,4.230095,0.961721,4.554035,4.935356666666667,2.65323,9.74915,3.1941966666666666,1.9570733333333334,2.70265,3.262395,5.91575,0.6226225,3.891775,2.0541875,5.08855,0.7053753846153845,4.09979,5.34765,5.67365,3.6633,6.369675,4.32871,3.4521212500000003,2.597026666666667,2.8259000000000003,4.36207,4.55313,4.925525,4.987925,5.0799,3.277136666666667,6.965296666666667,2.808325,3.2045565,2.09463,3.72027,2.45134,1.5533533333333331,3.254993333333333,2.97078,3.0273800000000004,3.355366666666667,3.4117333333333337,3.109413333333333,2.582806666666667,5.4816,3.2556700000000003,3.722185,4.96012,2.6316633333333335,1.1129888888888888,2.964166666666667,2.92309,3.766025,3.130686666666667,3.2353133333333335,4.655998333333334,1.9859333333333333,1.803115,2.90146,3.740655,4.35689,1.09106375,4.554345,3.328355,4.1142666666666665,2.920386666666667,4.845212,3.967695,3.24406,4.13902,1.70308,3.852985,0.66110625,4.417235,4.66636,15.869016363636364,3.17925,1.1784466666666666,4.58501,0.6330971428571429,2.658475,4.448845,2.05512,1.2856557142857141,3.61361,4.53881,2.9581966666666664,0.8330116666666667,2.869105,7.53584,3.63392,5.62385,5.2648,4.891345,3.4371666666666667,3.6583,3.3175033333333332,7.058590000000001,4.00006,5.2638,2.1374925,0.4562611111111111,1.952895,3.072545,2.271085,3.062225,4.531985,2.9290299999999996,4.86973,0.706875,4.47305,3.61371,3.23857,1.1683433333333333,2.8164700000000003,1.9600933333333332,4.899675,3.94612,1.909145,1.6252142857142857,3.972115,4.665715,4.738275,6.311416666666666,2.141036666666667,4.95719,4.690245,4.2191,2.2629799999999998,4.09105,5.798346666666666,5.0016,2.3857,4.798565,3.05936,2.7453,3.974925,4.203695,1.3709550000000001,4.65217,2.3323933333333335,2.8430700000000004,4.891493333333333,4.891493333333333,4.82454,1.759684,4.789685,0.95021375,1.835004,4.96805,2.4520733333333333,1.4227666666666667,3.13709,0.848518,4.2836,5.63795,3.02399,4.99896,3.96723,3.83506,6.2712900000000005,3.468325,3.16761,3.10548,2.54072,2.69565,2.8545533333333335,4.37033,1.5839035164835165,2.83286,4.391655,4.85224,2.225029166666667,3.98199,4.693045,4.96483,3.3397666666666663,5.32165,5.0224,5.1811,4.725715,3.77665,3.435555,3.65376,4.483835,5.4826,4.643775,4.872185,4.29775,4.553835,0.6968616666666666,4.84361,4.611295,3.93852,7.07344,4.189585,3.63664,4.15769,4.52731,3.500285,3.88481,2.13723125,4.524535,2.051355,1.2261014285714287,3.881915,2.0317933333333333,2.48535,3.729704,3.03311,3.118655,1.1355333333333333,1.92643,5.0091,3.844895,1.9012225,1.9012225,3.914375,1.8586580000000001,3.0715066666666666,4.51422,3.639935,3.798895,1.53528,2.085745,3.5423125000000004,1.829285,4.331225,4.51753,4.538785,4.083445,7.94289,2.558325,3.63104,4.644765,4.372835,3.106176666666667,4.215985,4.06962,4.20457,2.260955,2.6563266666666667,4.3776,4.026755,3.67473,3.68541,1.59061,3.557475,4.153635,4.515125,4.08046,3.9372249999999998,3.9372249999999998,3.0189675,4.10116,4.420035,3.905555,1.661222,7.786199999999999,4.01308,5.14325,4.375235,4.058745,4.4628,4.81526,2.987695,4.334265,2.8956,5.08155,1.9420860000000002,4.73987,5.535122222222222,5.0377,0.751085,4.805991666666666,1.0709199999999999,4.78672,4.3957,4.51599,4.29654,5.2982,3.595966666666667,3.595966666666667,0.8912319999999999,2.136635,4.61562,3.597505,3.95611,4.457245,5.2316,3.3361,4.090845,1.321345,3.09521,1.6896775,1.17069625,4.356757333333333,0.858793,2.5188966666666666,2.96604,1.2560366666666667,2.1094625,2.6996066666666665,1.213695,6.19834,1.87116,2.57261,4.93607,1.935725,2.8261366666666667,3.950975,4.57848,3.7299666666666664,3.040846666666667,3.9675,1.63491,2.1680858333333335,4.421935,0.6499285714285714,2.16855,2.4812333333333334,3.0492033333333333,2.7452566666666667,1.1720042857142856,0.8415499999999999,2.4496733333333336,4.198795,1.1638485714285716,2.0862975,1.2788525,5.83168,2.29088,4.806205,4.304045,4.281925,4.73566,5.2908,4.08846,4.16401,1.3612483333333334,3.9454999999999996,1.616956,2.56672,1.1797085714285716,4.341345,2.1295125,6.239884,3.83076,3.75093,1.507362,6.7612675,4.17025,1.4121416666666666,4.137565,3.063505,3.912265,3.277125,1.97725,1.97725,3.1600133333333336,1.361505,1.361505,2.2629799999999998,2.72993,2.203955,1.3539183333333333,3.6342666666666665,1.0731875,3.1549633333333333,2.4155,1.8981475,1.5244783333333334,2.2081725,2.1019275,0.2766094117647059,2.423065,1.1987983333333332,2.438286666666667,2.13555,2.510975,1.0751344444444444,1.12141,3.8366000000000002,3.0022966666666666,1.97725,1.7914525,1.8323633333333333,2.55257,2.50059,1.7560379999999998,2.7267733333333335,1.0989499999999999,3.18451,2.8124633333333335,2.53206,1.523172,1.079996,2.37963,1.079996,2.37963,0.74307375,0.74307375,0.48639111111111105,2.327935,2.3205933333333335,0.74307375,2.187075,2.3864533333333333,2.278785,1.7349475,0.7808511111111112,0.74307375,0.74307375,1.670534,1.670534,2.118325,1.7914525,0.74307375,2.31468,0.46154923076923077,2.8914866666666668,2.055363333333333,2.61614,2.41636,2.41636,0.383034,0.383034,2.2629799999999998,1.881088,2.1909199999999998,1.9229399999999999,0.383034,3.4833,2.42627,1.637526,0.605675625,1.637526,0.605675625,6.79598,2.52083,3.8469333333333338,2.951033333333333,2.9594199999999997,2.9645766666666664,2.7795533333333338,3.4369666666666667,2.30699,1.76775,2.69168,3.3770666666666664,2.47442,1.670534,2.4539969841269844,2.4539969841269844,2.738253333333333,2.1935875,4.35208,2.3090966666666666,3.2408133333333335,2.65084,1.4709619999999999,2.446915,2.32224,0.7656990909090908,1.6310475,3.188085,1.712964,3.2662633333333333,2.57458,2.619375,3.7776666666666667,1.601555,3.509733333333333,3.13044,4.086566666666667,1.2714940000000001,0.2918141379310345,1.3031314285714284,1.3031314285714284,1.0008511111111111,2.9555133333333337,3.831633333333333,2.5130933333333334,2.1271766666666667,2.1271766666666667,2.1677175,1.5792400000000002,0.999917,1.6814366666666667,1.6814366666666667,0.74307375,2.2629799999999998,2.8509666666666664,3.3534333333333333,2.4155,2.08256,2.08256,2.08256,1.0517644444444445,1.5171714285714286,1.5171714285714286,2.469065,2.9336033333333336,2.740652058080808,3.980575,2.5183666666666666,2.4528333333333334,3.793855,3.945915,7.229772499999999,3.537745,4.230175,3.7683999999999997,13.282315,4.664845,3.471795,1.116465,4.02835,3.737065,2.305725,3.69405,5.1641,6.601315,6.1069,0.48248294117647056,3.874785,2.913405,3.92874,2.44507,4.50773,4.793695,3.90004,8.165635,3.524415,3.912785,3.83654,3.2865959090909094,7.921153333333334,3.126186666666667,2.603196666666667,3.478115,3.881245,4.848875,3.79174,6.17096,4.97385,1.332922,3.828035,0.87555875,4.629525,6.20825,4.03533,4.396385,5.3869,3.086805,5.1005,4.10818,9.036024999999999,4.04994,4.751504000000001,3.5697666666666668,5.3304,3.060955,0.8432975,0.8432975,3.570115,4.06416,2.323655,2.152825,3.943115,5.64265,3.5725,1.9284,2.4002675,3.311845,2.6267566666666666,1.1482225,3.656815,4.439725,8.39217,1.6009280000000001,3.39847,3.789515,3.41818,2.7565000000000004,8.11786,4.07935,3.442766666666667,2.9344,3.873205,3.3881333333333337,2.9977433333333336,3.0626266666666666,4.04869,3.74618,4.026985,4.193905,0.38428799999999996,1.4104233333333334,2.2505166666666665,1.74764,4.60914,3.675915,2.6081366666666668,2.181355,4.506575,3.90358325,2.2385875,2.509425,0.909319,2.253715,2.5971933333333332,2.5971933333333332,5.1751,1.88558,3.048243333333333,2.3039866666666664,2.06801,1.81402,2.81039,4.012705,4.38089,4.011765,4.913775,4.70259,2.907275,3.1140833333333333,1.9094919999999997,4.88314,5.267235,2.4091066666666667,2.9847366666666666,2.090005,2.4905466666666665,3.9009316666666667,2.6984166666666667,4.824335,3.612345,3.36277,4.200725,2.9393433333333334,3.59498,4.17228,2.3340866666666664,2.5438566666666667,0.4150378571428571,3.6224000000000003,2.5509133333333334,3.030055,5.77815,4.6136,6.045955833333333,2.1366425,1.5471533333333334,3.13659,5.30175,6.3645,5.4574,3.0933966666666666,2.3119166666666664,3.66595,2.3673366666666666,4.7544,2.22391,2.0917225,5.2615,4.7583,4.5996,1.8357925,1.95979,1.0497400000000001,1.0497400000000001,1.221254,0.9150628571428571,0.816188,1.841500857142857,4.399785,10.4642225,3.87478,4.235675,4.019445,5.63885,2.71001,1.63312,3.3239725,2.93807,3.97018,2.4616266666666666,2.5911233333333334,3.3163633333333333,3.2613233333333334,2.2913900000000003,3.231033333333333,3.31287,3.0698966666666667,3.5158666666666663,3.378033333333333,2.9741666666666666,2.7210066666666664,3.412333333333333,2.34339,3.0869,3.07807,2.9647166666666664,3.4725333333333332,2.15544,5.416362476190477,3.23583,4.152533333333333,3.21729,3.08433,3.7177333333333333,2.8272266666666668,2.77244,3.0641766666666665,3.1993066666666667,3.2349333333333337,3.1074266666666666,1.980465,2.7169333333333334,2.64383,2.888625,2.888625,3.2403766666666667,3.2488733333333335,2.43808,2.8416533333333334,3.0191166666666667,4.2832,2.63613,2.692225,2.69017,2.79936,4.568299166666667,4.974215,1.6560166666666667,3.2499533333333335,3.7393666666666667,3.4377459999999997,3.331773333333333,3.692466666666667,3.4120000000000004,2.718973333333333,3.3447380000000004,1.8791499999999999,2.8218530000000004,3.4723666666666664,3.3973666666666666,2.5034466666666666,2.57722,3.8946,2.7932433333333333,3.1054999999999997,2.38,1.2158933333333333,3.1982866666666667,2.5339899999999997,2.1307266666666664,2.40468,3.1244266666666665,3.1122033333333334,2.00248,5.501856,2.3443366666666665,0.868665,4.349875,1.9252433333333334,1.6971666666666667,4.471435,4.23611,3.460875,2.554785,1.4451525,3.377015,2.98074,2.985055,0.4266585,2.135985,0.4266585,2.014255,1.4451525,2.74783,3.785945,2.4324075,3.336725,3.65646,0.5256873333333333,2.7206566666666667,0.941245,0.44518588235294115,4.41276,4.054455,5.0063,2.4623225,5.3352,4.043205,3.80571,3.82358,3.7512333333333334,1.7283380000000002,6.01625,2.95663,4.18323,4.631105,3.054543333333333,1.9640933333333335,2.12068,1.2995033333333332,1.773285,1.014885,1.014885,4.32453,2.32933,6.092165,2.249925,2.09363,2.507065,2.1794789999999997,1.90007,4.248385,4.0022649999999995,2.102195,2.59601,2.1794789999999997,2.390785,3.554609,1.890815,5.591175,2.249925,3.4154774999999997,3.16041,3.24968,5.66985,4.767565,1.996085,1.9409725,2.3224175,2.56845,4.788285,5.2121,1.9860125,3.92823,1.60377,1.566195,5.4666,10.355115,2.05687,2.3327633333333333,2.2916066666666666,4.373915,4.20893,1.8784125,4.73173,4.30779,2.84501,39.30583848809523,2.907296666666667,3.067206666666667,0.46735666666666664,5.0230508333333335,2.197906666666667,0.9226944444444444,3.94251,3.659595,1.8919875,1.79312,2.35847,3.77424,1.3635,3.0145826666666666,3.66369,4.60993,0.8715970000000001,4.82762,4.683935,4.927185,2.8139833333333333,1.49865,3.8092425,4.550635,3.9535,3.29252,3.629755,3.88571,11.62740202020202,2.757633333333333,3.065775,4.098775,2.4849,4.20042,3.266805,2.33674,3.1388,6.2145,4.53585,4.95872,5.0372,2.39741,3.477775,4.35533,3.67448,4.626385,4.57533,0.10346141304347825,2.362485,4.78609,2.791215,1.352385,1.0964833333333333,1.0964833333333333,2.3582825,2.712075,2.7932,1.327672,2.7907766666666665,4.53052,2.62685,4.312705833333334,0.5696992857142857,4.44413,3.502865,4.59548,4.330725,4.844345,1.23952875,1.16254125,3.7235666666666667,2.923966666666667,2.905253333333333,4.097707181818182,4.452575,6.2660350000000005,5.5618,4.62215,3.45659,2.1521675,1.5004433333333334,5.0272,0.3153313333333333,3.37746,3.795535,4.014625,13.792996666666667,1.80102625,3.0715,0.64498125,4.379655,10.381799999999998,3.31649,1.9910133333333333,5.6676,3.3747333333333334,1.198181111111111,3.75464,2.81899,3.2166,4.807675,3.4082084444444445,1.1722725,7.494186666666666,0.758485,4.96447,3.2091489444444443,1.3982575,2.0838614444444445,3.2986625,3.2986625,3.886965,4.3199214999999995,1.438925,2.457235,2.46649,3.598995,2.936305,2.5385,3.28214,3.382295,6.5723199999999995,6.3987,4.107335,3.248305,4.980075,4.647025,3.800365,3.398445,3.60445,4.10609,4.657445,2.52595,2.6506666666666665,1.5648983333333335,2.3726966666666667,2.2838275,1.5328575,3.3132066666666664,3.6039999999999996,3.4909,3.03651,2.7988233333333334,1.5127433333333336,1.6005933333333333,0.45588,2.9039866666666665,1.504657142857143,1.8529425,3.1501,2.539496666666667,2.52727,0.9629425,2.3499525,2.600015,2.97585,3.594425,5.49475,3.72681,2.98424,2.225493333333333,3.363735,4.103235,2.378835,2.85488,1.88248,3.81612,2.83255,3.878485,1.35874,0.585869,2.193355,3.403085,3.08794,3.923975,4.8617799999999995,8.72731,2.9533666666666663,2.2879466666666666,1.8185200000000001,1.7839040000000002,1.7839040000000002,2.7028233333333334,2.515756666666667,4.99813,4.70937,3.44246,4.683325,4.391405,4.14967,3.4404399999999997,4.46288,8.181745,2.4330925,0.479445,3.1130833333333334,1.31385,1.0596328571428573,1.7892633333333334,0.806659,2.12845,5.0394,5.23705,6.1112725,1.1363875,7.26632,1.99558,1.5627183333333334,2.5625133333333334,4.13205,3.1593366666666665,2.514125,3.643015,3.0534433333333335,4.162066666666667,2.866013333333333,2.7832933333333334,2.9779366666666665,7.03413,2.49904,4.14225,3.762043333333333,3.6577458333333333,1.4328033333333332,1.2868425,4.40236,2.7927933333333335,3.10894,6.051805,2.383395,2.133425,2.41333,3.108195,3.6155666666666666,2.3412566666666668,4.238286666666667,2.92797,5.16545,2.4444885833333334,1.8868725,4.96126,5.3994,4.66303,4.414935,1.5450633333333332,2.2654,2.08241,3.283005,1.6279866666666667,0.90517,2.6932425,2.0678975,2.03175,4.30592,0.7844975000000001,5.4681725,1.4784525,0.7774381818181818,3.6795000000000004,4.24595,0.70101,3.1716100000000003,3.04986875,0.8415499999999999,4.41186,0.1775742857142857,0.1775742857142857,0.1775742857142857,0.1775742857142857,0.1775742857142857,0.1775742857142857,2.047212,3.69713,2.047212,2.047212,1.7776166666666666,0.1775742857142857,0.1775742857142857,3.2459366666666667,2.5577633333333334,3.553125,3.39225,2.337355,3.56024,1.512057142857143,1.6721240000000002,3.4069830000000003,1.436782,2.9872633333333334,2.6891466666666664,5.693743333333333,4.348305,4.034975,6.16145,4.28348,4.773315,4.212655,4.3195,6.960776666666667,3.698033333333333,3.6129333333333338,2.6173366666666666,5.134233333333333,2.668786666666667,1.974045,1.89485,4.738155,5.2199,4.687565,5.1534,5.52525,4.402925,4.59231,0.8085281818181819,0.6936192857142858,0.6936192857142858,4.71397,2.433123333333333,3.767765,0.9584842857142857,4.76245,1.4425571428571426,2.3690666666666664,2.60446,4.570733333333333,4.570733333333333,6.87835,4.58258,1.409745,10.915361666666666,3.2136866666666664,1.1943333333333335,4.83086,4.814145,3.869635,3.11646,2.7087,4.2718,0.7409266666666666,3.321813333333333,3.3713333333333337,3.7250333333333336,3.05898,1.4018833333333334,1.3848900000000002,4.7176925,3.1159833333333338,2.99382,3.3956,5.2445125,3.3885891666666668,0.7776270000000001,1.8459466666666666,3.0787533333333332,2.378115,3.708766666666667,3.417666666666667,3.04264,3.515333333333333,3.07398,2.4268966666666665,0.90179,3.03942,2.46024,3.415225,3.196165,4.05469,2.5913566666666665,3.3530333333333338,2.83335,1.5857839999999999,1.8361033333333332,2.756146666666667,3.530333333333333,1.8765720000000001,3.26496,1.8233166666666667,3.7982666666666667,5.266510833333333,4.904540000000001,2.4529325,2.53015,2.85245,2.29655,1.5681142857142858,2.2551125,3.0975314285714286,2.4907225,3.7548666666666666,2.967695,3.7042143333333337,3.123925,1.1605777777777777,1.2836,1.789015,2.198295,2.94505,3.3821,4.988655,7.29491,2.91723,4.805215,4.03526,15.251060666666666,0.476037,11.506245,1.022218888888889,3.407375,2.36953,2.00164,2.99676,1.6482240000000001,1.450038,2.54226,1.222212,2.73577,1.9107933333333333,3.054766666666667,2.1721866666666667,2.6298566666666665,1.6004533333333333,0.7302933333333333,3.1073833333333334,2.49602,3.011813333333333,1.0517644444444445,3.5479333333333334,0.7111558333333333,0.37214923076923073,2.083676666666667,4.23546,4.947305,4.907765,0.8058763636363636,4.047475,4.728785,1.2170625,2.4574275,5.267540833333333,3.26002,3.82367,3.831645,3.917965,1.972035,3.885095,2.7150266666666667,3.52136,3.491915,2.79935,2.58422,3.787695,3.189635,3.753735,2.396325,3.31985,4.925905,1.4353533333333335,4.572145,2.2400225,3.914655,5.148540000000001,2.179015,2.8452933333333337,3.0213099999999997,5.834278333333333,2.8056433333333337,3.438085,5.5367,3.8469333333333338,4.30368,1.8285133333333334,2.588925,5.40965,3.4940333333333338,4.492055,3.4867333333333335,3.12898,3.033393333333333,3.8384666666666667,3.1587633333333334,2.6862133333333333,2.67721,0.4465933333333333,2.3688475,2.1137175,4.54735,4.671455,3.0549,2.6771066666666665,3.3469333333333338,8.359465,3.6191006249999997,3.96694,3.6179333333333332,3.748845,3.12851,3.7284266666666666,2.685923333333333,2.1411325,2.6143899999999998,6.23215,4.61261,2.1333766666666665,3.26558,2.862265,2.6505966666666665,4.567428,1.743412,6.141206666666667,3.96768,4.7716,4.471855,5.88585,3.66011,6.431498333333333,5.2118,3.85769,0.6516821428571429,2.3424275,1.49551,2.9666533333333334,3.19805125,4.138905,4.00824,5.46355,2.6291866666666666,4.59454,3.22157,3.5751333333333335,3.0768566666666666,4.5226,4.736225,4.94414,2.6487333333333334,5.738273333333334,4.379005,1.3980316666666666,5.4471,3.621685,2.863825,2.26769,2.2730833333333336,4.5876399999999995,1.17172,2.384183333333333,2.0196475,3.7914,4.3097,2.530886666666667,3.2609333333333335,3.002104666666667,2.5059766666666667,4.04644,1.370608,2.29331,2.61395,2.7717066666666668,2.49669,2.6585933333333336,2.69247,3.91282,2.940963333333333,2.85145,4.12725,2.22713,3.924645,3.64379,1.696899696969697,1.696899696969697,4.5449,2.8118466666666664,1.8029125,1.332405,2.0961825,2.020385,1.32051,1.4220966666666666,0.678312,1.6274499999999998,1.5131666666666668,2.8401899999999998,2.1911133333333335,1.7878066666666665,1.92494,2.401053333333333,1.7832566666666667,1.79249,1.8815799999999998,2.28325,4.05063,2.91584,2.8887199999999997,2.81025,5.80265,2.9924,4.296885,4.08495,2.069745,3.76239,2.867325,1.793245,3.374435,1.8556075,2.82397,3.598735,1.98115,4.561535,3.019845,4.098105,3.413866666666667,0.8637222222222223,4.41612,3.735775,3.315245,3.7136,2.803976666666667,4.624965,4.717105,4.9884025,9.070904166666667,3.80916,4.401285,2.9501500000000003,3.51412,4.335795,2.36762,2.9204,4.124315,2.25357,5.715195,1.809468,2.68206,7.5244,3.0111899999999996,4.123872,1.2650771428571428,4.361045,4.628225,3.216253333333333,4.5547,4.720725,6.169384000000001,15.875525773809525,0.6396882352941177,1.0751344444444444,3.2333200000000004,4.566425,3.52673,2.1293025,3.361515,4.045485,4.87985,2.812,4.591105,1.7258833333333332,1.7258833333333332,5.2852,0.7550563636363635,1.777064,2.953635,3.93182,0.3759569230769231,1.8752966666666666,4.160327583333333,1.1857033333333333,3.0241366666666667,2.73672,2.951185,7.70374,2.5269266666666668,3.3988,1.9824033333333333,2.2801633333333333,3.9477700000000002,3.31212,3.32219,6.914885666666667,1.746215,2.767175,4.597125,6.68264,1.7939166666666668,2.32624,2.6241866666666667,1.3748166666666668,2.663145,1.65842,3.852615,3.879955,1.4396025,1.9551776666666667,1.9551776666666667,2.7262500000000003,5.4727,3.93811,3.78244,4.69646,4.608355,3.099185,3.68561,4.450205,3.59611,5.566135,3.778015,4.369295,0.912911,0.362703125,5.253,3.846825,2.90284,8.3328,1.4344366666666666,4.7367,3.998045,0.4848958333333333,1.9589766666666666,1.3456766666666666,1.85271,1.8912166666666668,5.247968999999999,3.09756,2.96602,4.5889325,4.761425,4.57799,0.6017923076923076,2.052045,0.596395,5.822756666666667,1.518464,4.861475,2.0998925,3.26927,3.31305,4.14508,4.305385,5.1472,0.8275254545454545,3.027855,4.38243,2.068965,1.7996075,3.665705,3.358305,3.419625,3.8589275,5.236904761904762,4.530585,5.42835,2.7744700000000004,0.8934855555555556,3.4080666666666666,3.74828,0.6396676923076924,3.921125,4.03084,3.944595,2.62828,2.72748,5.4112,3.257175,3.453605,2.203905,4.200385,1.6963460000000001,4.139755,3.74638,0.6733123076923077,4.31758,4.073345,3.283195,3.85004,4.32479,5.0101,3.8817,0.6294069999999999,2.954423333333333,3.7848844444444447,4.64569,3.4928000000000003,2.3832275,3.3939,2.3832275,4.233255,2.91218,3.25756,1.545275,3.1631933333333335,1.770665,4.259915,2.9062633333333334,5.2584,3.10545,2.7728800000000002,2.905673333333333,2.416277857142857,2.416277857142857,2.416277857142857,2.3893733333333333,1.0665850000000001,4.638765,2.3350033333333333,1.6571666666666667,3.9571,2.3007933333333335,3.1321666666666665,3.98822,5.40265,3.71311,1.9703175,1.3494300000000001,4.0045,1.906408,2.2724466666666667,3.2976,3.295285,2.0854,3.75574,2.89897,1.665858,5.02075,4.297105,3.500535,3.731685,0.7324566666666666,2.4275800000000003,4.239105,7.542085,4.29033,3.09794,2.59358,3.41326,3.646425,2.03971,2.28964,4.55301,2.24342,4.30725,3.469035,4.886785,8.660736666666667,3.962025,3.802485,3.22547,4.619735,3.988525,3.3035725000000005,3.3035725000000005,3.59779,3.993825,4.16204,3.974075,4.17583,4.412775,4.057435,1.06712625,4.33091,4.371875,5.3161,8.023965,5.0396,3.9160953333333337,2.0492233333333334,1.5540483333333333,2.43432125,4.78639,3.7908,5.23357,2.6098966666666668,4.60931,5.0709,4.997615,4.610495,3.0186533333333334,3.921465,4.13076,5.12565,4.747555,3.907865,6.617946666666667,4.51331,2.1430266666666666,4.753905,3.957235,3.99919,3.646605,4.77869,0.7616481818181818,4.277145,4.409315,1.267737142857143,1.233774,5.0427,4.8808,8.7217015,5.39345,4.830655,6.23225,2.91674,2.651526666666667,5.0886,1.81967,1.81967,2.518745,1.6146066666666667,2.8169041666666668,3.519766666666667,1.9956725,4.176647272727273,1.4160166666666667,2.15603,5.6731675,3.5345316666666666,3.48221,3.03193,4.004375,4.161755,3.070323333333333,1.0513822222222222,3.9783,3.5683000000000002,4.108085,4.29002,3.6917349999999995,5.35225,5.04975,4.66382,4.189775,5.1279,6.45475,4.73127,3.118925,3.458685,2.046655,2.046655,3.817615,4.196,2.4606066666666666,2.7060133333333334,2.116877272727273,2.71434,1.7892033333333333,1.7892033333333333,4.317055,3.4393,2.26855,3.613865,2.78807,1.784935,1.2211375,1.2127222222222223,2.727425,0.4655021052631579,0.8921211111111111,2.73465,3.631205,0.41068272727272725,3.762095,1.902204,5.09865,3.437585,6.784432499999999,4.316665,5.328683333333334,4.7779,5.02545,4.05233,1.872125,1.861266,3.98533,3.07066,3.79585,1.27972,3.77137,4.912105,2.64361,2.898095,2.9218,4.295765,3.670505,3.43095,3.97161,3.5187,3.303245,3.24401,1.0435771428571428,1.734315,2.226595,2.76707,4.39044,7.57623,0.9021979999999999,1.5088866666666665,1.5088866666666665,1.8777899999999998,3.82949,2.744425,3.108005,5.4819675,2.8885666666666663,1.186095,1.186095,1.186095,2.610245,2.8791100000000003,4.62832,3.20911,4.004345,3.33781,3.76455,2.926255,3.1558816666666663,3.687745,4.003505,2.785455,1.32051,2.908175,2.785455,3.53883,1.4042533333333334,1.8334366666666666,2.0658125,5.5888773333333335,2.96381,6.232854,5.5888773333333335,3.269044,1.836665,1.836665,2.564395,5.83428,1.836665,2.26213,5.39803,2.370905,2.622085,5.04105,3.536145,3.87596,1.8552266666666668,3.268355,4.11532,2.1852933333333335,2.231075,4.47756,1.8552266666666668,2.57754,1.943635,5.64988,2.479575,1.118452,2.457985,3.32711,3.1686098333333335,2.009325,2.0895765,4.28763,1.8266973333333332,1.872835,3.210345,2.248945,3.204155,3.80342,2.0773800000000002,2.805745,2.31014,6.13117,2.3276,2.940095,3.34137,3.34137,8.75421,1.0815599999999999,3.283445,2.60767,3.137985,2.295635,1.2492400000000001,1.2492400000000001,3.992,2.3875,6.528905,2.294255,3.491235,3.216135,6.54973,2.71992,2.6401,6.163235,6.163235,2.577945,1.5645625,1.1739075,1.1739075,1.5645625,2.0896166666666667,1.41604,1.1554116666666667,1.5638966666666667,1.9232733333333334,3.849095,1.57194,3.56214,3.610045,2.790915,2.79294,2.92268,2.638845,3.2453024999999998,3.2453024999999998,5.77633,2.418155,2.624055,2.64346,3.35176,2.609025,2.71485,2.67188,5.8299025,2.0788875,1.5492493333333335,1.172431,2.1516243333333334,5.75603,3.9582610000000003,3.388205,3.081985,1.760455,1.760455,1.760455,4.52237,2.490955,1.1554116666666667,3.212825,3.59709,1.2928925,5.3667075,3.160555,6.31905,3.95251,1.65081,3.245045,2.827643333333333,2.181905,3.610385,4.48348,3.91674,1.76715,2.38492,3.01536,3.29221,5.38143,2.20656,3.351445,2.80144,5.7826,4.56163,2.1192,2.374595,5.92147,5.47793,5.62348,6.21833,1.1055300000000001,1.1055300000000001,2.391086,2.391086,0.599656,4.70932,2.90981,5.42906,4.42795,5.01566,2.23536,4.389061666666667,4.389061666666667,2.230175,3.379555,3.500535,1.162358,4.62945,3.284195,3.30585,2.706545,4.74657,2.4401,1.805985,3.43541,2.733565,2.79269,6.00393,2.56718,1.784855,3.754395,6.34681,5.13422,4.31833,2.57105,3.8014,2.428475,5.22407,2.45265,3.668,2.04771,6.58144,4.2551,2.162875,2.550075,2.676355,5.07855,2.285155,2.63359,2.737105,7.17291,5.27896,2.83911,2.288255,2.17383,6.06943,3.08477,3.109865,5.61673,2.76173,3.09892,2.62726,3.067095,1.9278166666666667,1.89461,1.9131033333333332,1.7756666666666667,1.9113666666666667,2.1414433333333336,1.604805,2.040766666666667,1.963265,1.9278166666666667,3.85748,4.31494,2.153655,1.677165,1.677165,3.681593333333333,3.681593333333333,3.0113199999999996,3.0113199999999996,2.84139,2.47639,1.860435,3.76041,2.3099375,2.3099375,2.5719025,2.5719025,3.04627,1.9828,4.8605,2.399985,2.967435,2.0807066666666665,2.0807066666666665,1.50106,3.85526,5.40814,1.4042533333333334,4.44887,2.0773800000000002,1.71213,4.26284,3.08832,1.85818,2.481115,6.89674,2.1722,6.43999,2.944685,3.221035,3.105835,2.85064,6.54931,2.9961,2.294555,2.596753846153846,2.86241,5.41754,3.62109,1.5432700000000001,1.5432700000000001,3.79176,5.44104,5.12744,5.47037,2.801145,2.82233,1.959675,3.114765,1.65593,2.876695,1.81607,0.792652,0.792652,0.792652,1.9116816666666667,4.882146666666666,1.9116816666666667,2.34896,3.4547749999999997,1.528195,2.042435,4.19109,3.93228,5.37943,1.70394,4.92557,1.70394,1.70394,2.246425,2.02512,2.348645,6.0756,2.348645,2.41712,4.25493,2.082885,1.85019,2.8144,3.0040666666666667,3.438205,3.123893333333333,3.610665,1.36958,4.071005,0.7568354545454544,4.38288,4.4584025,2.8671375,2.8671375,0.7104763636363637,3.7437666666666662,2.736546666666667,5.59625,5.05465,4.095765,5.0073,4.0765,4.178525,4.907905,4.043565,4.284425,3.72885,3.939925,4.89247,4.93884,3.406305,3.39304,3.65449,2.4536366666666667,1.2630940000000002,4.33284,3.83834,3.67933,1.4649571428571428,3.7431,4.10983,6.195035,1.049735,4.952145,4.44341,2.1797,2.01028,3.252985,3.51843,1.672425,1.5432700000000001,3.8502,4.28045,2.660735,4.606775,3.004325,1.12592,2.8182233333333335,1.2097685714285713,3.0598166666666664,2.0903566666666666,3.1239399999999997,1.882115,2.4797233333333333,3.997655,3.164325,4.441445,3.29157,2.1759075,5.00614,4.21881,2.9537,5.04205,4.27237,2.752423333333333,6.0057,4.5539,3.10128,2.612906666666667,2.79812,2.9458,2.877936666666667,2.55523,4.50909,4.265295,3.796075,2.49591,2.648286666666667,2.3825166666666666,2.79557,2.3840033333333333,2.3361633333333334,2.3062066666666667,2.1823,1.3757575,2.9758173333333335,1.1801675,1.833075,1.7628625,2.6308,1.6115275,2.008425,4.091405,4.24255,2.0136775,4.274565,4.22575,6.061591666666667,2.202993333333333,1.55049,6.6421,3.3694,4.34964,3.93421,3.734835,2.087865,3.471675,2.472785,3.081885,4.744015,0.7264050000000001,4.1473,1.93902,0.7667254545454546,4.891695,4.364175,3.949045,1.8542585714285713,4.839645,4.866465,2.7565399999999998,2.8808233333333333,2.3977933333333334,2.03334,0.600933,3.051973333333333,2.861725,4.748585,2.4874575,1.90233,3.91856,1.029415,2.065706666666667,2.065706666666667,2.74612,2.065706666666667,4.18226,2.779855,4.59783,4.234645,5.8036,12.95228,3.20945,4.861635,2.86461,4.693385,3.069525,6.4868749999999995,2.8750066666666663,4.762945,4.75711,3.80712,1.348575,4.674355,2.9653466666666666,2.5700366666666667,0.9843822222222222,2.1512925,3.549875,7.230643333333333,4.236905,2.72993,4.26156,3.1600133333333336,4.1227,4.738205,4.52651,2.876165,2.87781,4.105165,5.68655,2.32445,4.52601,2.19601,2.19601,3.11276,4.783415,1.2341475,4.004772666666667,2.20668,4.176445,2.535626666666667,2.2190366666666668,2.7544966666666664,2.2289600000000003,0.6929835714285714,3.438225,2.712453333333333,4.861915,4.516275,0.237940625,5.35845,4.634135,5.4618,6.7539549999999995,3.1883033333333333,2.8966766666666666,2.1560333333333332,3.113443333333333,3.0361433333333334,1.34683,2.846246666666667,2.6195666666666666,1.3332683333333333,3.3080266666666667,3.080023333333333,3.315773333333333,3.0314433333333333,1.3477644444444445,4.083955,2.47426,5.10675,4.40379,3.93914,1.6428166666666666,2.5573900000000003,1.3796925,2.00066,1.3796925,4.750185,3.4276666666666666,1.630208,2.3838275,4.008205,3.81127,2.946475,3.76795,0.3676345,1.4145520833333334,3.7397,4.071585,5.7537,2.212355,2.70187,3.0876866666666665,2.7450833333333335,2.75364,3.47903,4.43112,2.456265,2.199736666666667,2.72775,2.6509966666666664,2.7076433333333334,4.983035,2.182535,4.398545,3.597881666666667,5.6872,7.5636575,0.7617211111111111,0.816368,3.88412,6.43561,1.85582,3.50142,1.4488166666666666,1.4488166666666666,3.46519,0.44930333333333333,3.97508,4.561735,2.592265,4.319495,3.48987,2.69475,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,0.2349453333333333,2.024615,2.865835,3.6336866666666667,3.106326666666667,4.08719,5.780476666666667,2.914175,2.0727366666666667,0.9294016666666667,3.077985,0.76238,4.970691666666667,2.897955,2.251585,0.76238,2.35274,2.697385,0.808675,3.4926749999999998,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,0.15247044444444446,4.20192,1.608385,4.59003,4.51925,1.7645,4.6606,4.193555,5.5185,4.695969166666667,3.5350339285714285,3.308865,4.965205,2.1834475,5.183315,4.36846,0.7605928571428572,1.3818642857142858,1.3492514285714285,3.3392999999999997,3.3392999999999997,3.0016833333333333,3.964515,4.58229,3.473155,4.045045,3.3917,2.0175433333333332,0.6738771428571428,4.2053,3.2917,2.72126,4.24358,3.64147,3.1012125,4.07585,4.163375,6.851184999999999,4.150765,4.56162,5.56915,4.314285,1.2524728571428572,3.11972,5.177246666666667,33.876188485209234,1.193685,4.439065,3.435915,4.48072,4.06031,4.868285,5.02375,0.3988857142857143,4.774605,4.33205,1.9601725,1.957385,3.741165,1.84296,2.428825,2.34394,1.7905175,2.84503,2.50059,3.536895,3.04713,0.6057061538461539,3.431595,3.823975,0.36312947368421056,2.4971533333333333,2.86601,2.56048,3.75337,1.902005,4.47186,4.04304,3.31298,4.2683,3.296515,4.57541,2.82418,4.101995,2.1689425,5.177246666666667,3.68527,3.30027,2.97504,1.73847,4.321715,3.709145,6.938128333333333,3.269775,4.59956,6.20117,5.191686,2.28078,4.675445,6.75263,7.645709999999999,2.431713333333333,2.62844,4.91744,5.36247,4.258405,3.376965,5.284313333333333,2.4233075,1.9357025,2.071465,59.54076856362721,4.98712,4.191685,2.570725,0.950022,2.7464033333333333,2.9531533333333333,3.3431333333333337,0.8382655555555556,4.597975,0.7440833333333333,7.771398928571429,1.906408,3.4977666666666667,1.8150739999999999,2.65763,2.4485533333333334,2.63698,2.4359866666666665,2.3465266666666666,3.410633333333333,1.6625966666666667,5.316120833333334,3.9821333333333335,1.3339875,2.8854966666666666,1.3798566666666667,1.444475,7.60468,5.92235,3.406505,5.70595,5.2071625,1.406212857142857,3.3777666666666666,3.437805,1.709925,4.75353,3.865555,4.137115,1.9188225,2.9709166666666667,3.4981333333333335,3.83911,5.6309,3.89583,4.29889,2.2287075,3.73218,4.405333333333333,3.1500800000000004,1.44071,4.4657,3.2303766666666665,4.097505,4.7014,3.9971,3.598425,4.669405,4.117625,4.3039,4.480335,4.04569,3.213036666666667,3.58255,4.535235,3.0914,4.07028,3.60609,1.6256425,1.6256425,4.35091,4.8093,5.3025,3.7986,4.80215,3.3906666666666667,2.882615,4.177455,5.33995,0.7039,5.30495,6.7692725,5.43965,5.74745,1.1913111111111112,3.082225,0.94805,0.94805,0.94805,3.683175,3.522133333333333,2.838366666666667,3.24976,0.893003,4.733425,4.975345,2.963695,1.593725,1.9932725,3.925525,4.003525,3.71678,3.314238,6.5312,3.75607,2.65751,4.53666,6.8114,2.271985,4.10356,3.71736,3.217475,4.82319,3.998295,4.877655,5.8842,4.06391,3.580521111111111,2.0557933333333334,2.0557933333333334,0.7016709090909091,8.75746,2.085235,6.00855,5.57315,4.43875,4.74745,3.857685,2.9513566666666664,4.5855,7.73669125,5.635548333333333,2.23895,4.385095,1.0230000000000001,3.706695,2.052636666666667,0.8929033333333334,1.1693485714285714,2.65158,3.09915,2.7083833333333334,1.13193,2.6104600000000002,3.0480666666666667,0.9152277777777778,2.71531,3.3308133333333334,1.702442,1.760234,3.042946666666667,3.1345566666666667,2.9351299999999996,2.4419,1.7341799999999998,5.29625,4.52736,3.94339,4.413845,4.850415,3.097595,4.59597,5.81465,5.0284,4.224235,4.019815,10.655755,8.164465,2.8779866666666667,3.619595,1.92755,3.833925,3.110765,4.481445,1.080945,3.86929,3.486325,1.4470533333333335,3.69408,3.1442583333333336,4.171435,4.28805,3.771525,6.08955,7.425283333333333,3.857845,1.54558,1.54558,1.54558,4.58731,1.2203066666666667,1.3949,0.47285666666666665,4.157092916666667,2.886926666666667,3.666085,0.973099,1.15631875,3.184545,4.315175,3.72842,16.599300095238096,4.401735,4.47813,6.0756825,2.7007133333333333,3.428325,3.251215,0.9073255555555555,1.44769,4.15141,3.517195,4.43514,4.325615,4.583275,4.011925,2.7236386666666665,3.30895,5.0658,0.554365,4.65526,2.2055925,4.02731,5.7677,3.5366666666666666,2.3913699999999998,3.8797299999999995,1.5727066666666667,4.016535,6.06515,2.8373333333333335,3.04018,4.348545,4.280675,4.41384,3.920895,3.66004,3.938175,4.98944,4.833105,4.579395,4.497885,3.943525,1.1335757142857144,1.6929625,6.422637166666667,5.6747,4.567625,5.1753,2.5288,2.760783333333333,2.8276233333333334,5.3450033333333336,1.9538825,2.05095,3.0962533333333333,3.1611966666666667,3.13509,4.39905,3.45844,4.934901666666667,1.2465425,4.396325,0.9117000000000001,4.010465,3.392165,1.6448716666666667,4.295465,0.9787966666666666,4.84742,5.58895,4.98603,4.428925,3.828265,3.94477,2.88523,5.17525,5.5765,2.8626139999999998,3.98924,2.477745,3.442315,1.9787,2.59505,3.54291,5.08865,1.0731875,4.3780675,1.3143625,3.382265,1.6179333333333332,1.0731875,0.25584945945945947,3.776475,3.00171,2.2946529166666663,1.9164566666666667,2.622295,1.047725,4.20709,3.42717,4.71171,2.5078333333333336,6.32135,6.826295,2.8510000000000004,3.2643166666666663,2.6807433333333335,0.849441,2.3595533333333334,5.97615,4.594485,5.269,4.774285,2.222113333333333,1.4399666666666666,3.7109699999999997,1.562175,2.3014125,1.6939675,1.55898,1.566345,1.9066025,2.0399475,2.0443975,1.856785,1.3226542857142858,1.49601,1.9334,2.2777775,2.1361525,2.3160433333333335,0.5359946666666667,1.626444,2.7702566666666666,3.13603,1.87116,1.90212,1.5646225,3.850715,2.2007933333333334,2.64459,3.046325,5.1242,4.20242,2.7021033333333335,3.94728,1.8180463235294115,4.32709125,24.0002345,4.639196666666667,5.5384,4.372225,2.72557,4.01072,4.677555,2.80691,4.67021,3.0879333333333334,0.77813,3.13135,4.90351,4.12412,4.01024,1.62908,2.15687,2.27127,2.286485,1.4204614285714285,3.3536333333333332,5.2153,4.237255,3.286855,4.0444,4.949325,4.19717,4.977245,1.250625,3.602825,4.246875,4.65132,1.559206,3.1180233333333334,1.7961749999999999,1.7961749999999999,3.61098,4.75696,2.770713333333333,2.8520366666666668,4.279215,3.857605,6.5295725,4.389135,2.477805,1.44769,3.01612,4.284935,3.1549633333333333,2.4539969841269844,2.4539969841269844,3.2100666666666666,4.690395,4.11425,5.379381111111111,2.35695,3.4574815555555554,0.6207422222222223,0.6207422222222223,0.6207422222222223,3.312855,3.82327,4.097311666666667,5.4357,2.053645,5.319,4.88509,4.38615,3.547305,4.971305,3.063575,1.4488571428571428,4.437535,4.51356,0.49217571428571427,4.1176,4.78849,1.67375,5.17125,5.48,4.664085,4.029835,3.896705,2.83369,4.454455,1.7014399999999998,4.338395,1.5943633333333331,3.7036,5.5954,1.1299,2.96727,6.956659999999999,4.091845,3.7427333333333332,2.5938,4.166425,5.66205,3.26066,6.952773333333334,4.257155,2.1883466666666664,2.99962,2.8337766666666666,2.8703833333333333,3.00995,1.8252233333333334,4.983595,0.6210033333333334,1.8464450000000001,1.8464450000000001,3.187685,4.693685,2.20412,3.075755,4.43118,4.59271,4.41331,1.5730233333333334,5.030630636904762,4.374455,5.07675,3.732505,3.73586,3.2684300000000004,0.46743,2.4768202857142856,1.0000025,0.46743,4.13537,0.8629566666666667,4.234325,4.00577,6.648182,2.0887,1.0438825,1.118584,2.2702,2.8991933333333333,1.6979533333333334,2.45148,3.348215,3.725785,2.14875,2.38809,4.431365,3.076935,3.946355,5.7473,3.41623,4.730725,6.901351666666667,4.30306,3.64037,4.43216,3.689785,4.470965,4.96773,5.949574999999999,5.2794,2.3373633333333332,0.9402466666666667,3.578465,4.06551,3.863035,4.61683,4.193,4.57285,2.6843466666666664,2.6290733333333334,3.0831633333333333,2.3336033333333335,2.282556666666667,2.92153,3.1225666666666663,2.61578,4.168775,5.06275,4.39328,5.2533,2.7072033333333336,3.3929333333333336,2.853525,0.7019242857142858,4.26377,3.78924,4.48855,2.9250066666666665,5.622999999999999,3.371215,4.598795,4.00943,0.5918123076923076,0.5457685714285715,4.164075,2.7970465,3.257945,4.663795,4.14982,1.702598,5.20535,4.18111,2.58471,2.6614633333333333,2.280675,2.1281125000000003,3.4030666666666662,3.1713566666666666,3.0022599999999997,2.99395,3.4914666666666663,2.667775,3.326033333333333,3.955766666666667,4.3701300000000005,0.572516875,0.572516875,0.572516875,3.213047430555555,3.6234333333333333,3.5349,2.8218300000000003,2.7380033333333333,1.06712625,3.0825266666666664,3.1543200000000002,1.8121475,2.6828966666666667,2.342913333333333,1.0025355555555555,2.9072299999999998,4.69889,9.68924325,1.49917375,0.6559820000000001,3.71303,0.6559820000000001,0.6559820000000001,0.6559820000000001,0.6559820000000001,2.1408325,4.009495,3.90966,5.1118,6.05155,2.8223833333333332,2.79529,2.91446375,3.590018333333333,5.2038,1.3311933333333335,2.332803333333333,3.10777,2.6243766666666666,3.08463,4.00299,2.17822,3.10649,1.1571666666666667,4.31714,4.945325,3.373035,0.868345,0.7085130000000001,0.7085130000000001,1.1714249130434784,2.0397699130434783,1.1714249130434784,1.1714249130434784,0.3932539130434783,0.3932539130434783,1.1714249130434784,1.3797166666666667,2.61592,3.19991,3.0334133333333333,2.58285,2.6662266666666667,3.2200933333333333,2.7476133333333332,4.50489,3.61365,1.895765,2.2432766666666666,1.7136275,0.18707258652430045,0.18707258652430045,0.18707258652430045,0.18707258652430045,2.49507,2.5241433333333334,0.865718,5.1622,0.7517463636363636,1.6718540000000002,4.6946325,4.840555,4.227875,2.907725,4.246,3.59862,1.9144433333333335,1.1956225,3.70494,4.39001,5.8193,2.168485,1.4207333333333334,1.8730066666666667,3.6797,1.5676566666666665,2.7968266666666666,2.96575,3.07394,4.52076,3.663825,3.104775,4.669335,2.657383333333333,4.10833,5.39295,3.94328,4.333295,4.70194,5.28498,4.763161666666667,3.0033645714285715,4.761715000000001,4.36127,6.0812,4.2026,4.60036,2.2328525,3.187955,4.27172,4.93208,4.45056,3.88975,3.53564,3.77098,3.74178,2.521663333333333,5.28165,3.483195,7.7111425,5.981,5.9955,4.869075,1.4034200000000001,1.0099500000000001,0.6278553846153846,1.82448,4.601785,5.0082,4.05646,1.656068,4.170775,3.025995,4.856105,5.0403,6.188881,4.208775,3.11195,1.722064,5.9271025,4.038145,3.022625,1.742945,0.9277675,3.90396,3.604285,3.67396,3.69396,2.37259,4.63565,1.69055,2.9781633333333333,2.37999,4.500785,5.42965,4.86727,2.44676,1.60228,5.4796,2.8649766666666667,9.01867,2.664,5.07455,5.8497,4.43586,5.01195,3.393785,4.846325,2.21013,3.94337,4.784627,2.318115,4.43255,4.339315,7.190099999999999,4.989405,3.26877,4.16142,3.72467,3.076935,3.650005,5.1249,5.43115,2.400865,2.986136666666667,3.3130966666666666,2.307945,2.801675,4.444485,5.4869,5.24485,4.625155,5.3774,4.35253,5.07225,0.6038730769230769,3.1262266666666663,1.2054271428571428,31.292881004960318,2.451755,4.631865,3.356195,4.409575,1.664882,2.5231966666666668,3.6238836904761906,1.5741611904761905,1.5741611904761905,1.5741611904761905,1.5741611904761905,2.0497225,3.47861,0.4276844444444444,7.712254722222222,0.4276844444444444,4.59953,4.76151,2.179615,5.4881,2.51575,3.9066599999999996,2.542143333333333,2.4119699999999997,2.685783333333333,2.1367933333333333,0.6412615384615384,2.5726999999999998,0.7095366666666667,3.087336666666667,2.0513066666666666,2.435952,1.2112083333333332,2.435952,6.2294,7.7767,4.89622,4.4991,5.5289,5.9209,7.3867666666666665,3.221765,1.4580425,1.4580425,2.41933,4.947685,3.822675,4.44209,6.110368333333334,4.37439,3.148445,3.89732,3.533085,3.522525,2.13807,0.9337899999999999,2.05925,4.558345,4.160925,5.093417777777779,1.9556825,4.13617,1.3614979999999999,3.28547,1.29999,3.4534333333333334,3.02713,2.3214466666666667,3.1462299999999996,2.98364,4.83038,0.664786923076923,3.586105,3.619533333333333,2.5758300000000003,2.32534,4.188235000000001,3.2522633333333335,2.362973333333333,4.99846375,3.816885,4.890915,3.97112,3.656755,5.26285,5.0356,2.3713366666666666,5.92655,2.3322571666666665,2.2703599999999997,3.1392399999999996,2.8192633333333332,3.1918399999999996,2.67863,1.8046466666666667,3.0597484545454545,4.231785,3.4270125,2.4214466666666667,2.4214466666666667,2.540295,4.03955,3.97744,0.6818636363636363,3.369175,3.154175,8.70227,0.9241181818181818,4.34779,3.526165,5.16505,3.525285,3.980665,2.273835,3.746115,2.807595,5.9071,2.6442533333333333,0.981675,3.831435,2.7241199999999997,3.98801,2.5225033333333333,3.67458,3.6531,4.273935,5.031252,3.34714,2.38965,4.99918,2.4676766666666667,4.3076,4.640095,4.59635,4.394,3.898745,2.93428,2.16842,2.884676666666667,2.527703333333333,2.918975,3.1967199999999996,2.896127142857143,4.914786666666667,2.9669733333333332,2.4546033333333335,6.6697524999999995,5.1715695833333335,4.0274925,3.1243733333333332,3.837666666666667,4.13743,3.43114,2.0972,3.8051649999999997,5.2347,4.678635,1.4811366666666668,4.468245,2.9240166666666667,6.9575575,4.75552,8.586275,4.045635,3.425135,2.472555,4.107115,5.7505325,7.72784,3.70436,5.62002,3.800255,3.249385,4.062525,1.743412,4.458145,1.4388216666666667,3.912635,4.585655,3.3629333333333338,0.8289466666666666,9.340624666666667,1.234388888888889,1.9087425,2.394476666666667,1.9859266666666666,3.26097,1.326925,3.61068,3.359325,3.21459,4.392385,1.133695,3.923055,1.3037783333333333,2.8279870000000003,4.600655,4.824275,1.91056,5.510974166666667,2.304248666666667,8.02318,4.44698,2.86039,4.047935,3.275715,1.2811283333333332,7.94357,3.00375,3.28663,2.346115,4.067695,2.1984875,3.1855575,2.07275,4.068025,1.40551,5.1196,3.99572,4.26859,0.83539,2.060515333333333,3.820445,5.11485,5.128548749999999,1.596882,1.596882,6.02355,4.07607,4.787205,3.804885,3.325705,8.878205000000001,4.26872,5.24915,3.89876,2.44431,2.2002769726062468,0.3707975,0.1952267741935484,0.6542189964157706,1.1752604761904761,0.6438339170506913,0.1952267741935484,1.4979425000000002,0.45899222222222225,1.5460579761904762,2.1521614964157707,2.047795,2.27644,2.3269333333333333,5.20785,6.327731666666667,4.96577,5.34245,4.556695,5.2041,1.1574933333333333,5.06845,3.997115,5.63735,5.16065,5.3849,5.4321,5.98135,5.47475,1.2862083333333334,1.4226071428571427,1.986664,6.30893,1.42769,5.36405,4.744395,7.096322083333333,5.26195,5.4674,4.54581,4.672445,2.527975,5.60255,5.5291,6.627808333333333,4.99692,5.558449166666667,5.62565,3.81340875,4.276835,4.136433333333334,1.12133,3.6476666666666664,4.264795,1.279225,3.5036666666666663,5.02945,4.2291799999999995,4.711105,2.4191675,3.13832,2.5590800000000002,4.7608,2.2755625,4.0509,1.2474049999999999,3.22019,3.815445,4.489365,4.69938,3.336279166666667,0.6534541666666667,5.94245,1.04924375,3.53962,3.064243333333333,3.64674,2.0612966666666668,3.72132,3.7081617948717946,3.4120000000000004,4.418165,15.380373547619048,5.48917,2.2389175,8.31026,1.5828,4.05909,3.0628499999999996,2.9107633333333336,2.041463333333333,0.21807217391304345,2.7650433333333333,4.647265,1.7889019999999998,2.2618466666666666,3.5670333333333333,1.82143,2.46758,1.35849,3.04636,4.745255,4.541185,4.7583,0.4694842857142857,2.33915,4.526945,3.43502,4.381675,4.80006,4.33783,4.94058,0.5323958823529411,2.5178266666666667,2.5178266666666667,5.29435,4.23368,4.84248,2.674975,3.7514333333333334,3.1380666666666666,4.983335,3.76043,5.628346111111111,4.76118,4.47622,4.830375,2.5425,1.922042,4.38769,4.12498,3.764775,3.46256,1.740726,4.13064,4.389245,3.812225,4.77453,3.869115,4.052875,0.6072000000000001,3.521095,0.6807816666666667,3.295113333333333,3.342765,4.513325,18.642160476190476,4.059535,3.95408,2.827643333333333,1.085985,2.8573566666666665,2.53206,1.523172,2.3542,2.53517,5.0348,2.2493633333333336,4.03311,4.313525,2.14861,4.83567,2.8756033333333337,4.47363,5.03205,5.44425,1.69355,1.715275,2.509525,4.524375,4.885755,1.1545777777777777,5.3395,3.879125,5.4491,4.630635,1.8940866666666667,4.71997,3.553605,3.603085,4.243625,4.03847,3.0724366666666665,0.6920975,7.55825,1.501558,0.20554,0.20554,0.20554,4.906195,4.170625,2.67731,4.24503,2.824115,4.48216,4.377574285714285,3.9854666666666665,8.662533333333332,3.90713,7.01879,0.88064,0.84705125,2.44731,4.511085,4.34744,2.1665300000000003,5.56475,5.3449,3.559665,3.790085,4.32356,2.2553033333333334,4.72103,4.8628535,2.438286666666667,3.160633333333333,2.9946333333333333,2.75542,5.8586,3.653705,0.6676857142857143,3.814725,3.467465,4.151155,4.94922,5.1568,2.99137,5.2368,3.63093,13.511440833333335,4.678075,6.572924416666666,2.58622,6.717456,4.370795,3.967275,2.1019275,2.3043787499999997,9.18039,2.2448,4.2321333333333335,3.987833333333333,3.7512666666666665,2.91793,2.9836266666666664,2.1453725,2.20516,2.9297799999999996,1.8159859999999999,3.8171999999999997,2.385213333333333,2.6503799999999997,3.2926133333333336,3.5130666666666666,2.50484,2.50484,2.65805,3.3869333333333334,3.31272,2.5497366666666665,3.1668800000000004,3.8587666666666665,2.807563333333333,2.78945,3.6897,2.1980633333333333,2.266085,3.6627666666666667,2.89812,1.722558,4.111866666666667,2.3314166666666667,2.4638133333333334,2.7951,2.4985866666666667,3.26888,5.796898333333333,2.4960999999999998,3.6714,1.9241233333333332,10.366794666666667,1.9755900000000002,1.81376,2.04204,1.0008511111111111,1.6424379999999998,4.408939999999999,2.666728,2.666728,1.612482,1.4978633333333333,3.4098966666666666,3.8344966666666664,2.10765,1.4503966666666666,1.63491,4.335818,3.2861166666666666,4.1394,8.220040000000001,2.7973600000000003,2.28317,3.1906139130434785,4.2211,2.266085,3.2988999999999997,2.9928666666666666,3.1472533333333335,3.478475,0.871045,3.2654059999999996,3.0331566666666667,2.8143700000000003,4.0317,3.0862466666666664,0.6387963636363637,1.7972447619047618,5.35335,2.533089,3.1317566666666665,1.6472499999999999,1.6472499999999999,2.0754975,3.4677050000000005,1.00074,2.35307,4.636803333333333,4.636803333333333,0.6513571428571429,5.935013,3.443735,3.98804,4.839785,1.2448742857142856,3.3283666666666663,3.4899,5.0295375,6.286824333333334,2.700143333333333,0.6218589999999999,2.8090200000000003,2.64599,3.1827693333333333,2.40327,2.4610333333333334,2.887256666666667,2.4930375,2.466536666666667,0.7874354545454545,4.316435,4.614980571428571,1.2382516666666665,1.5357285714285713,5.15905,2.223345,1.75652,4.108595,1.7453800000000002,3.574675,2.45281,3.4811666666666667,8.876518333333333,4.038771666666666,4.602245,4.94235,2.428281090909091,0.717928,1.77833,6.96587,1.75877,4.124655,4.163685,3.77816,20.894957416666664,3.037103333333333,1.35394,1.08779625,3.1627166666666664,1.3533600000000001,4.123872,5.1266,3.3953024999999997,3.1226599999999998,1.1959266666666666,1.3194016666666666,2.9247433333333333,0.53356375,3.3013833333333333,3.617766666666667,3.0545733333333334,2.5216683333333334,2.5482066666666667,2.7407,2.065533333333333,2.9457866666666668,1.5684939999999998,3.468833333333333,1.4404666666666666,3.932295,4.145315,2.58146,5.13855,3.419105,4.41039,5.0287,4.52965,2.97687,2.6021533333333333,2.5507566666666666,1.0928071428571429,1.0928071428571429,1.0928071428571429,2.3054725,2.9525066666666664,2.67657,2.79801,2.394296666666667,1.8031825,4.168245,4.14385,3.709655,6.73737,3.393825,2.4812925,1.93006,1.0713416666666666,2.484496666666667,4.15981,2.50731,2.66311,2.413953333333333,2.302443333333333,2.60499,2.7959066666666668,3.0223933333333335,2.87827,2.4187233333333333,3.1437066666666666,2.081463333333333,2.12367,1.8972775,1.37716,3.0774166666666667,2.9107066666666666,2.033345,3.98383,5.1307,2.8799566666666667,2.3117401923076923,5.5889983333333335,4.039655,4.678135,5.5801,4.79261,4.306225,6.2339375,1.18671625,4.24788,2.71012,5.24805,5.09745,3.468505,3.89376,2.15331,7.468439999999999,2.404265,0.8496583333333333,8.17728,5.01777,6.09550119047619,4.524485,2.861593,1.7681375,4.91113,4.470505,4.274195,5.0161,2.54006,4.12428,4.335085,1.7136275,3.90332,2.7757,1.2869416666666667,4.75068,0.6280764705882353,4.295241666666667,3.502645,4.51581,2.968385,1.71425,3.37467,1.917355,1.370825,2.7892966666666665,3.4271333333333334,3.13662,6.98372076923077,1.7016525,6.3512975,9.90033,5.9564474999999995,3.38301,1.2864585714285715,2.88369,1.2864585714285715,2.8834999999999997,2.14639,0.3299823529411765,1.2072736029411764,0.3299823529411765,0.3299823529411765,0.3299823529411765,1.2072736029411764,1.2072736029411764,0.3299823529411765,0.87729125,4.902165,3.326005,3.17178,3.36148,3.88934,4.018135,2.7398266666666666,1.6334060000000001,6.995406666666667,2.8213666666666666,4.119965,2.5627066666666667,1.0258909090909092,1.19009125,4.797805,3.670505,1.0174177777777778,1.556546,0.748229090909091,3.0509830216450213,4.211975,5.07625,3.5545333333333335,5.777628333333333,0.5396415384615385,4.10705,3.40300625,2.9855033333333334,2.66779,3.3722,2.6834866666666666,2.8766466666666664,2.6789199999999997,2.99431,3.58478,5.7962,4.51105,1.959146,4.696445,4.449855,3.14717,3.66199,3.46498,0.37189933333333336,4.91597,3.791075,3.26357,3.103916,4.4481,3.79438,1.9149,3.087845,3.802945,8.405850000000001,4.762805,5.2623,4.43491,4.155745,0.966275,2.152835,1.86889,1.317765,1.7776166666666666,5.0308,5.28315,4.205455,4.60677,3.314238,2.545373333333333,0.9485800000000001,4.05048,1.2136016666666667,1.1484683333333334,3.077375,3.710695,4.5333,1.204865,2.715453333333333,8.413126666666667,3.0594333333333332,3.8034783333333326,0.881705,3.873885,11.96444,3.432135,4.176225,3.19631,2.769945,4.44507,4.89791,1.9449400000000001,4.248835,0.5929261538461538,4.836815,2.187075,2.2405075,2.2405075,3.511366666666667,4.27451,1.63527,4.34238,1.4883428571428572,4.059135,2.3104741666666664,3.1255933333333332,4.731035,3.55599,3.7514583333333333,2.577725,2.6561858333333332,2.6561858333333332,10.521560000000001,0.745106,3.26929,3.3554666666666666,2.124945,1.9974975,0.8947157142857144,1.43338,1.1482957142857142,2.032055,4.82009,2.457235,4.345727500000001,2.033533333333333,4.277735,4.38008,1.6240833333333333,2.0117825,1.0877833333333333,5.902115,2.00631,2.507855,1.7283380000000002,1.705696,1.08779625,2.2806995833333334,3.502575,2.6650633333333333,3.1097,2.4560866666666668,2.62973,1.6629166666666666,3.0577400000000003,2.6247666666666665,1.3230666666666666,1.9260866666666667,2.984783333333333,3.3236633333333336,2.3235333333333332,1.14226,2.6058566666666665,2.2469233333333336,3.0656199999999996,0.3208284210526316,0.40502499999999997,2.34341,2.26812,3.008065,3.0414899999999996,2.664395,4.792585,5.1179,4.48553,4.5048,4.40537,3.993415,2.6672266666666666,3.8647,0.6833681818181818,0.061378636363636364,6.7554,0.061378636363636364,2.9914,3.10863,5.42675,3.406105,6.10525,5.16075,2.3934666666666664,2.5317666666666665,1.3600683333333334,5.4812,5.8234,3.3424333333333336,4.93425,1.942855,4.37498,2.0204439130434784,3.0334733333333332,3.29866,4.07274,4.65165,3.456525,2.19615,2.19615,4.066125,7.65484,3.92174,2.2051433333333335,2.5322333333333336,4.12039,2.872585,4.83674,3.811305,0.9986644444444445,4.33435,2.73992,2.8745666666666665,4.304785,1.132785,2.3678133333333333,3.82989,3.94613,4.51357,2.91285,3.564705,3.787155,3.950255,4.38633,5.06495,4.103115,3.1105430555555555,3.80318,2.8319799999999997,2.7785433333333334,2.564506666666667,3.4812666666666665,4.28758,2.8907133333333337,4.934580833333333,4.32383,3.993855,5.2071,4.52076,3.83678,1.531134,1.4485825,4.113215,3.13897,1.5710133333333334,2.8264933333333335,3.261475,3.0189333333333335,3.864437777777778,3.142916666666667,2.259948333333333,12.798982500000001,2.117313333333333,1.8349039999999999,4.42097,1.0528520000000001,3.12269,3.74728,4.758735,3.30742,1.0932822222222223,2.2955666666666668,2.5078333333333336,1.523582,5.2522,0.998645,0.998645,3.8343233333333337,1.82143,2.0128933333333334,1.7523575,3.34286,3.369,2.00425,2.87403,3.599575,2.940853333333333,2.79725,2.0742599999999998,6.16525,5.4875,3.517165,0.7292992307692308,3.756305,3.668005,0.9596454545454546,5.14875,3.0520099999999997,7.86889,4.45514,4.58546,3.575625,1.4270825,2.91754,4.92569,4.66872,3.97577,4.234395,4.24516,3.347605,3.511433333333333,3.511433333333333,4.114695,2.9267683333333334,4.465595,1.630795,5.42015625,5.526355000000001,1.67375,4.421285,1.0267300000000001,5.33205,4.047975,5.0177,4.71079,3.959525,2.557805,2.4743575,4.2026,4.397305,4.65854,4.49795,1.9739875,1.36255,4.140385,2.1948133333333333,5.3115,3.10986,3.559505,7.4422,3.862225,4.62965,4.892895,4.02583,4.270585,8.118310000000001,3.68952,2.987385,9.50415,3.563655,0.590855,2.0004515811965815,4.373285,0.611306,4.64809,3.992865,4.72473,5.13035,3.249575,3.395845,4.4415,4.629605,2.2799575,0.6942771428571428,4.67157,4.530185,4.19393,4.089865,2.6510766666666665,4.44637,3.427585,0.615466,3.682405,4.013305,2.381395,3.0496766666666666,3.8232,2.114375,5.2704,4.957555,3.9483675000000003,0.8945,3.3505000000000003,5.781365,5.781365,8.64341,2.07174,0.8782425,0.8782425,24.18335,2.646575,7.6922516666666665,0.4848958333333333,1.3456766666666666,2.9194033333333334,1.0248599999999999,3.81203,3.92436,2.260255,2.260255,4.508325,4.554425,3.4839,2.50623,2.50623,3.527225,4.041545,4.450425,3.0471299999999997,2.0588233333333332,2.4696245833333332,3.945977,1.97322,3.67484,2.7408533333333334,2.8657289285714285,2.8657289285714285,3.5567333333333333,0.8370733333333333,2.406073333333333,1.6222666666666665,3.3838000000000004,2.802903333333333,2.7999333333333336,2.6344566666666664,4.64113,2.317915,3.02608,5.325617,1.398762,2.28737,3.083275,2.6418500000000003,3.928175,5.598253396825396,1.3903366666666666,3.8171666666666666,2.4812875,5.0334,6.52356,1.607425,4.8139199999999995,4.9271373333333335,3.1284648571428573,4.618233333333333,1.0101285714285715,1.559206,2.950625,3.663727619047619,1.2694016666666668,2.336515,1.54879,1.692352,2.7395,3.524462,5.118187000000001,1.0072983333333334,1.5166285714285714,2.9647166666666664,13.22417,4.721373333333333,2.6569,1.0850828571428572,2.5685707142857144,0.9506557142857143,3.21729,4.210921666666667,4.853355,3.4312,5.34625,1.34261,3.7177333333333333,4.047205,2.8272266666666668,3.7565955555555557,2.4950433333333333,0.9841555555555556,2.571283333333333,3.000453333333333,7.32648,2.7684707142857143,2.5031433333333335,0.7177330000000001,4.7367,3.5811666666666664,1.22872,5.870683333333333,2.21025,2.139213333333333,5.58385,1.2895333333333334,2.884596666666667,0.9947272727272728,2.9134266666666666,4.35527,3.001133333333333,2.94421,2.290826666666667,2.4120133333333333,4.77214,4.627185,4.7892,1.80705,4.512195,3.444385,4.351333333333334,3.4377459999999997,2.5708333333333333,4.181191999999999,0.916952,2.687134761904762,5.05205,2.64855,4.093172916666667,1.4178125,2.718973333333333,1.9146640000000001,1.9146640000000001,7.327398333333333,3.130186666666667,5.86832,3.47807,1.7617,2.7554847619047624,4.5981966666666665,5.580033333333333,8.492728333333332,4.759247,2.671032,1.9510966666666667,2.0740006666666666,4.106006666666667,3.856715,1.484146,1.9299425,3.187357678571428,1.33383,3.1122033333333334,18.994516666666666,3.248366666666667,2.9779133333333334,2.8674233333333334,2.96551,2.55322,1.7477766666666668,3.0328866666666667,3.6072333333333333,2.6342466666666664,2.625243333333333,5.501856,2.3443366666666665,4.657694857142857,2.9495308571428573,2.647554857142857,1.4756600000000002,3.805381111111111,2.14333,4.05925,4.73282,3.856105,2.958345,3.1451933333333333,2.3660566666666667,3.3874333333333335,3.4595000000000002,3.5168,3.3699333333333334,0.8187754545454545,5.1499,2.44374,3.1823633333333334,2.8886516666666666,1.919865,2.19886125,2.19886125,3.48735125,2.0408712500000004,4.91527,4.32144,3.570255,4.53369,4.69691,4.644797499999999,4.644797499999999,4.076115,2.925796666666667,4.897435,2.85705,1.648676,2.565236666666667,4.364,3.9408,2.566975,3.689995,5.930375,3.7853333333333334,6.226696238095238,2.997935,0.78628,0.78628,3.422155,4.450535,3.87887,3.3447380000000004,2.38666,1.8762633333333334,2.378223333333333,2.9682133333333334,6.237503,1.4775333333333334,4.1408,3.700533333333333,3.910705,4.957475,4.94103,4.744535833333333,3.170256666666667,2.2791325,4.38301,3.837625,2.0479425,1.177568,4.099805,2.6986,6.031123333333333,3.332523333333333,2.692735,3.346,3.720985,3.674865,4.661645,3.139505,4.53887,4.654905,4.41705,3.755585,3.436915,3.587685,4.131715,2.649696666666667,4.225285,3.4389,4.59425,0.7067155555555555,2.180595,1.7609725,2.0699125,1.8186875,2.720546666666667,2.775183333333333,2.01101,4.80538,5.92831,1.9480633333333335,4.289325,4.44121,2.2556125,5.444751666666667,3.96386125,4.615855,5.09295,6.894593333333333,1.9770933333333334,2.6794233333333337,1.8591833333333332,2.8434266666666663,1.785185,1.75112,3.9946,3.579245,5.11455,1.0005855555555554,3.068565,4.34241,2.1459475,5.4253,3.68787,2.58986,3.8235333333333332,3.282225,1.9777025,1.8323775,2.59955,2.99005,3.2428,2.010935,3.153317142857143,3.153317142857143,3.6015,3.4144,19.24260482142857,0.9515866666666667,4.821940833333334,1.9244875,1.93832,3.844095,3.7948,1.9819525,3.94698,4.627495,1.4574183333333335,1.4574183333333335,1.1495366666666667,1.8775933333333334,2.2401866666666668,3.1643866666666667,4.428475000000001,3.948435,3.599266666666667,0.5147426315789474,3.518172631578947,1.9758466666666665,2.797705,4.566295,3.473875,3.943995,3.81191,4.5603,4.189345,2.0711475,3.382165,5.36247,2.160685,3.622755,4.862925,2.085855,4.59696,5.4069,1.2457457142857142,1.937474,3.6564666666666668,0.7590485714285714,3.1386766666666666,3.56745,4.632675,4.796725,2.718088611111111,7.8870216666666675,2.947956666666667,2.8532433333333334,0.44518588235294115,4.2999,5.211066785714286,2.907866904761905,5.3194,3.854645,2.476644888888889,1.813704,5.4811955,4.416105,4.338355,2.466475,2.083075,3.84566,4.1571,3.026536666666667,1.9988025,3.9327024999999995,6.189522500000001,2.81076,3.804305,3.576335,4.13533,1.4873857142857143,1.4873857142857143,3.103733333333333,2.9433000000000002,4.589865,4.866765,6.5367,4.363995,2.720875,2.1654125,1.5297533333333335,1.3501971428571429,4.867765,5.5238075,4.975875,5.46615,4.368635,6.4462825,3.679275,2.8396899999999996,3.8560633333333336,2.1151966666666664,2.9350222500000003,1.523724,4.998185,2.47442,4.04213,5.19005,4.16235,2.7986566666666666,2.8649766666666667,1.512057142857143,2.511525,3.8284333333333334,1.89993,0.554414375,3.3217700000000003,2.73312,2.61578,2.3030399999999998,1.9800525,1.588654,0.6979372727272728,0.6979372727272728,3.3890666666666664,1.8957325,2.25223,3.22049,5.6026,4.429225,5.53565,4.13118,4.11938,2.4168516666666666,1.3539266666666665,2.69917,3.706135,0.9513825,3.1864825000000003,2.80615,2.985565,2.213715,4.123495,2.486815,1.9362300000000001,1.1651785714285714,3.722495,7.11592,3.57609,1.6469910714285714,4.42756,3.57968,2.601625,3.21308,2.716525,1.71659,0.9980525,3.83984,2.4147791666666665,2.28684,1.59358,2.3081333333333336,2.270846666666667,2.4746633333333334,2.80473125,1.23459,2.0033833333333333,1.024695,6.2960725,5.38755,5.08175,3.939285,4.04735,2.9735566666666666,1.7418566666666666,4.64096,4.684325,2.644085,5.7301,2.129785,4.54156,1.005088888888889,4.05861,4.03973,1.865095,7.75409,3.540785,1.88776,1.83418,1.8818675,2.56205,3.31918,1.3767845454545453,2.9595566666666664,5.58705,4.464395,4.27831,5.28765,5.50765,5.0711,0.92822125,4.189165,4.612935,4.23189,4.94318,3.891498333333333,4.74663,5.17845,2.97391,1.352385,1.352385,5.2449,5.397903333333333,3.07088,2.826373333333333,4.19362,4.1888,1.713048,4.182845,4.73599,3.72427,4.063165,2.945073333333333,2.824256666666667,4.863225,2.496544375,10.507321375888818,2.0091966666666665,0.80454375,2.5649433333333334,1.6547675,2.5341,2.12828,1.866872,2.90414,5.17855,5.27405,2.9415533333333332,1.5423383333333334,6.063943928571429,1.3620628571428572,3.0527333333333337,0.514547619047619,4.12711,5.67855,3.674625,4.832455,11.77814,5.5342,3.091006666666667,2.932893333333333,4.785015,2.9777966666666664,4.809405,1.07872625,1.5641800000000001,0.8062727272727273,5.82015,4.26432,1.81069,4.769475333333333,4.88367,6.62925,4.83887,4.870185,4.312645,6.0452,3.976535,5.30965,4.25295,1.667002,4.59019,5.99245,2.93803,4.00096,4.4414,3.056875,1.48262,4.90631,3.863615,1.20784125,3.5932999999999997,3.224676666666667,2.442413333333333,2.5889266666666666,2.5283366666666667,2.9737733333333334,0.739310909090909,2.6546499999999997,2.7688633333333335,2.5944333333333334,2.7097333333333338,2.77515,2.14948,1.5354266666666667,2.3861375,1.97661,2.1458425,3.4215999999999998,2.9657966666666664,0.63766,2.578866666666667,3.36279,5.0084,2.17503,3.749105,5.2892,5.2338,3.36125,3.95751,1.3492514285714285,3.4053,2.656419444444444,4.246011666666666,2.7824437499999997,4.60632,4.925045,5.14425,3.83312,4.228,0.8952500000000001,0.8952500000000001,2.2561769230769233,1.66442,4.08077,2.6083435,2.6083435,4.906725,5.77325,3.006475,1.1987983333333332,1.5488285714285712,5.8774,3.842735,2.94871,3.18449,2.8327,3.21057,2.94871,5.0620025,3.208735,3.0163208333333333,2.847685,2.008765,3.1829,6.607,2.73307,3.42633,4.056835,6.37085,6.01525,6.6314,6.6314,5.43795,4.399245,0.46054923076923077,4.751715,4.488305,2.945975,2.819295,9.243749999999999,3.4412000000000003,4.75375,3.668885,3.2006200000000002,5.4441,2.39957,3.2665175,2.65725,3.2021566666666668,2.51008,1.8110240000000002,1.8110240000000002,3.741235,3.744725,4.30762,1.794876,1.647688,47.16073121212121,2.544303333333333,0.8328645454545455,3.0797566666666665,1.7949375,3.2159099999999996,2.8072166666666667,3.0643333333333334,2.94717,2.67806,1.9410866666666668,0.9947925,4.33919,3.21568,3.520655,4.19524,5.18415,4.98945,4.99015,5.3849,5.4399,4.99528,5.7266,6.0723475,5.08065,5.5949,2.0962525,3.556215,6.628,5.40795,3.55623,4.308115,3.82046,2.45717,4.00867,4.508425,3.04658,3.7185666666666664,1.6671420000000001,3.69599,1.370608,3.19643,3.80209,3.629345,6.42383,4.26966,2.073975,4.19404,3.93373,4.008265,0.98343875,2.807025,3.626675,4.299039880952381,1.2283025,4.69804,1.4129475,6.26495,0.7063255555555555,3.896872666666667,10.1292275,4.20172,3.62482,3.779715,1.81905,4.24296,5.14415,3.0315066666666666,4.411495,8.994001944444445,3.346766666666667,2.10946,2.788373333333333,2.8817866666666667,2.8773700000000004,2.80754075,2.120643333333333,2.5964899999999997,2.906836666666667,2.7674833333333333,2.9361566666666667,3.473975,2.16604,1.7020066666666667,4.545683333333333,3.247263333333333,2.56016,4.996614,2.7929133333333334,1.15217625,2.2011275,2.7530533333333334,5.109210714285714,2.6983,2.175517777777778,2.175517777777778,1.622155,1.4208575,2.05682,1.802926,5.99197,4.197645,2.33722,2.81733,3.4828333333333332,1.9971625,0.5774875,2.6000033333333334,1.92611,0.5804746153846154,3.9626,2.4511625,2.522825,3.669225,3.889126666666667,2.84422,1.6583633333333332,1.23009,2.043415,3.49968,3.75943,4.2184325000000005,2.7952666666666666,4.08387,3.783975,1.092581818181818,9.372035,2.73105,3.18457,1.2522875,2.7300833333333334,2.377785,2.377785,2.377785,4.803015,5.646,1.64666,5.1442,1.499638,5.58256,1.53736,4.19232,4.19623,4.149915,4.319765,4.487075,1.87698,8.6191,3.846945,4.87812,3.51938,4.069185,3.046943333333333,3.0604566666666666,3.83783,2.5936033333333333,4.467332142857143,4.461878333333333,1.6624825,3.97485,1.6624825,3.42387,4.506765,5.06234,4.506765,1.9090266666666666,5.783,4.67282,4.221925,2.76642,2.9780200000000003,4.1802,3.043905,4.89076,0.49992928571428574,2.9160233333333334,3.1626366666666663,5.4093725,4.81673,2.4127725,4.558765,6.607363333333334,3.857275,3.221665,2.97073,2.2111233333333336,3.942645,3.82723,4.632175,2.327815,3.82865,0.867955,5.19695,3.23532,4.214665,2.5613466666666667,3.2181566666666668,2.27689,2.9572766666666666,2.74751,2.781413333333333,3.467275,2.42627,2.42627,4.568299166666667,2.9375,4.354985,11.5262,0.96072,4.37039,2.35624,2.319733333333333,2.84596,1.3949,7.5419936666666665,3.4497666666666666,3.818395,3.772995,2.1998633333333335,3.839933333333333,4.222683472222222,2.1338333333333335,0.44444111111111106,1.55569,1.4412625,4.91016,2.81463,3.30459,3.711978333333333,3.435999166666667,2.28965625,4.51754,4.430775,3.954365,4.473195,2.256365,4.37774,2.55257,5.717883333333333,3.169495,4.64264,4.199695,3.91297,4.33944,2.01565,3.879305,3.700665,2.9477933333333333,3.860465,4.700835,3.21014,3.585085,3.606315,2.8431599999999997,4.72635,1.7678500000000001,4.04498,2.91629,4.05315,4.08096,4.061635,4.748755,2.96837,4.17441,4.719355,4.126495,2.895566666666667,2.083355,2.996375,2.386495,0.8642233333333333,4.13852,2.020475,3.534745,2.888455,4.186755,3.426755,3.070445,3.29979,3.957205,4.770882,4.065565,3.157545,1.54111,3.583935,2.638435,0.7967711111111111,4.827825,9.143180000000001,3.668085,3.555185,4.253085,4.772785,3.76468,2.129395,4.045985,4.013825,3.14656,3.15439,3.410945,0.7251225,1.4602428571428572,6.076532500000001,1.6731525,2.60129,5.025223,2.4191675,2.339355,2.58028,7.67092,2.773275,3.89877,3.75552,0.7538122222222222,3.46929,2.799585,3.883235,4.047155,5.77025,0.670375,3.29276,8.37664,3.18755,1.198181111111111,5.108914166666667,4.78767,5.37265,4.35297,4.770125,3.228485,2.57458,7.194055,0.829493,3.47923,4.196915,3.22591,4.03773,2.183765,4.289705,1.5164,4.30182,3.99629,3.934135,1.696615,4.850665,4.28439,2.2956475,2.188725,2.4133375,1.22872,4.07915,3.3953024999999997,1.608276,8.708935,5.67265,4.481545,4.391905,3.61934,4.31859,1.4276814285714285,4.06275,3.993585,5.12175,3.7413,2.4377733333333333,6.562863226495727,0.98006,0.98006,2.52198,0.9331228571428571,4.2218,2.4816333333333334,1.041745,1.7505466666666667,0.40647000000000005,6.3369,0.9410525,2.748035,3.51248,4.059505,3.530505,4.056795,5.2243,5.6201550000000005,2.98563,3.16623,2.47786,4.401395,4.67838,4.65712,3.91386,3.6529,6.3099,4.333565,4.346507222222222,5.269159999999999,3.61393,4.0684825,2.40933,4.0684825,6.947895,40.50045385822511,3.623715,3.40842,2.934786666666667,4.44392,4.524005,3.339715,3.375965,3.826535,4.09701,4.22787,1.7214833333333335,4.90982,2.818345,4.509625,4.953475,4.38696,2.4522933333333334,4.48533,3.80517,4.17968,1.416106,0.6379846153846154,1.6222359999999998,3.4484333333333335,2.954806666666667,1.29015,3.107483333333333,2.623816666666667,2.6968,3.4063666666666665,2.94227,1.371166,2.6161600000000003,3.686166666666667,1.8979471685971685,2.7962633333333335,3.17913,2.8754399999999998,2.5648633333333333,3.3964666666666665,1.145288888888889,3.812515,4.14685,1.1714033333333334,1.1714033333333334,1.1714033333333334,1.1714033333333334,2.7979751515151516,2.0266533333333334,2.42596,3.312595,4.65389,4.28325,4.47267,4.35241,5.67905,4.665445,2.246845,6.1431,3.47655,2.619635,3.959435,3.066665,4.16126,3.9673,0.7447469230769231,1.4358428571428572,1.57501,4.477725,4.27241,3.81384,4.02021,6.174049999999999,2.309416666666667,4.775175,1.6496449999999998,3.991035,4.915685,1.6062233333333333,5.48295,0.8174800000000001,4.41697,1.432712,1.1694425,4.027795,4.421535,5.41225,5.127,5.84895,4.020965,1.516478,3.927155,1.4908575,3.42695,3.197725,2.476644888888889,1.8118025,3.094635,1.2807549999999999,3.491925,4.53038,2.89203,5.5079,120.00622884433622,0.5008777777777778,4.782805,2.4405466666666666,4.875735,4.134835,3.451385,1.5263175,0.3513942857142857,2.919415,3.62781,5.2378,3.496835,3.59457,4.3285,4.16599,4.27942,8.225406666666666,0.7034966666666667,2.874745,0.97212125,11.5466,3.100515,3.62219,0.9755855555555555,2.136645,3.06646,2.04221,3.0045566666666663,3.177103333333333,2.50581,4.3891925,2.8409366666666664,2.279236666666667,2.2139533333333334,4.46676,3.994735,3.03717,3.56462,3.76064,3.439825,2.3054166666666664,3.84248,3.68709,3.021775,1.0445544444444446,2.4914533333333333,4.3891925,4.4194,5.1549,4.075525,4.68383,1.888175,11.04159,4.086855,2.72585,3.844875,5.30965,0.6049559999999999,0.6049559999999999,4.2184175,4.2184175,3.729625,3.26519,1.7942920454545455,0.5874633333333333,3.082505,4.31404,3.8822,3.080685,3.891825,5.4698525,4.534765,2.10005,4.423585,2.01142,2.832685,4.187599166666667,1.74481,2.30181,0.5048814285714286,1.2023414285714287,1.2023414285714287,1.95413,4.612335,4.07661,4.681355,5.823665,2.860785,3.16907,1.862635,1.910975,4.168846666666667,3.82643,5.31001,2.46001,5.31001,5.17735,3.518255,5.8354,3.83628,2.47473,2.055363333333333,2.61614,1.4327075,1.39498,1.50321,1.7599625,1.6126225,1.6439025,3.7189,4.41736,2.48906,6.42645,2.982333333333333,4.06397,3.043075,4.2449,2.9643366666666666,3.0544433333333334,6.243179999999999,3.1422866666666667,4.719438,3.1335833333333336,1.3616325,2.5716233333333336,2.591553333333333,2.3717466666666667,5.74795,4.2543825,4.697915,12.863842289039907,0.7214700000000001,1.99541375,2.301045,1.629172,1.281497142857143,2.64825,2.435365,2.4221425,2.4315225,0.7401884615384616,1.941255,0.5484894736842105,4.74079,1.96339,4.06074,4.83515,2.37963,5.9019425,4.48218,7.68246,3.73361,2.693255,3.115005,4.459185,4.47934,2.7552545714285714,4.330585,2.1281575,2.1281575,4.64592,3.85745,4.313725,4.094705,3.0544433333333334,4.23214,4.865055,4.690735,4.59573,4.27888,4.4003,4.4973,2.303,4.96327,1.2851216666666667,4.799595,4.578435,2.521263333333333,2.21651,4.347265,1.3806466666666666,4.83099,1.82704,6.0076314130434785,3.77954,4.154975,1.6870166666666666,3.2531625,3.2531625,12.164670000000001,3.996725,4.570965,1.1249675,4.431025,2.4213875,1.431335,2.314575,1.6611425,2.0558275,1.777064,3.32726,6.05025,1.77977,4.923645,4.6695225,5.174,2.18247,2.2554,3.740495,4.36388,5.4016,3.94421,6.902881666666667,3.0620999999999996,2.728153333333333,0.4078916666666667,3.81509,4.11264,3.2615433333333335,6.134163333333333,2.5724633333333333,3.06958,1.2687466666666667,1.6310433333333334,0.554414375,1.55569,2.970025,1.4990966666666665,1.6516933333333332,0.66110625,1.32668,4.55406,2.47749,0.6201138461538461,1.8394000000000001,1.753745,1.692834,1.2094449999999999,2.006085,1.6310433333333334,2.318115,1.32668,1.32668,0.6201138461538461,1.5853428571428572,2.4959800000000003,1.2694016666666668,2.76,0.6201138461538461,2.5446,2.4959800000000003,1.2736883333333333,1.2736883333333333,1.2736883333333333,1.8566379999999998,1.19813125,0.6201138461538461,1.12141,1.18969625,1.0008511111111111,1.791324,2.658475,0.8289466666666666,2.25357,1.6130714285714285,0.6201138461538461,1.749446,1.6310433333333334,1.9249833333333333,2.01005,0.9146789999999999,1.9249833333333333,1.0751344444444444,2.2956475,2.41333,2.472785,1.18969625,2.15544,1.2807549999999999,1.2807549999999999,0.898819090909091,0.898819090909091,0.898819090909091,1.2687466666666667,1.6310433333333334,1.6130714285714285,1.8394000000000001,0.8985271428571429,2.01005,1.429418,1.722558,1.881656,1.2687466666666667,2.6569,12.133505,0.66110625,2.56222,1.89485,2.498845,0.9506557142857143,0.9506557142857143,0.6201138461538461,1.2127222222222223,1.588654,1.6130714285714285,1.758024,2.01005,1.1545777777777777,1.1545777777777777,1.6718540000000002,0.20554,0.20554,0.20554,0.20554,3.2333200000000004,1.0751344444444444,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.20554,0.37629409090909094,53.86244067099567,1.423045,1.5362683333333333,1.6130714285714285,1.89485,0.8985271428571429,0.6396882352941177,0.7177330000000001,0.7177330000000001,0.7177330000000001,0.7177330000000001,4.3419,16.010844166666665,3.3754000000000004,0.5960027272727273,1.591844,1.591844,1.591844,0.5960027272727273,2.970025,0.6201138461538461,1.749446,1.6516933333333332,2.59722,1.0751344444444444,2.4127725,1.0751344444444444,1.5431219999999999,1.5431219999999999,2.1210999999999998,2.1210999999999998,0.6201138461538461,1.962208,1.962208,0.9361818181818182,0.20554,2.970025,1.5961866666666669,2.4812875,0.5960027272727273,0.5960027272727273,0.5960027272727273,0.5960027272727273,0.5960027272727273,1.89485,0.37629409090909094,1.0751344444444444,2.320645,2.320645,2.4743575,3.064243333333333,0.6513571428571429,0.6513571428571429,3.3882999999999996,4.1049999999999995,1.2448742857142856,3.21201,1.02438,2.669975,2.07174,1.132785,3.04133,1.978605,3.3505000000000003,5.38845,2.519025,1.1832333333333334,4.1154,4.37037,2.74023,1.83323,2.3748819230769236,4.7888,1.74197,2.675136666666667,2.89622,3.3379666666666665,2.434215,6.141206666666667,4.120205,0.20554,2.878576666666667,4.844975,3.88071,4.431055,4.315405,4.26105,2.6992766666666665,1.825458,3.698055,4.52202,4.31788,4.567895,4.92758,3.21838,0.6705658333333333,6.79575,1.3495266666666668,3.059948,4.600175,2.5406,2.5406,0.8144218181818182,1.8118025,4.685295,3.14643,4.66664,4.318265,4.732855,5.1945,1.0318971428571428,4.56386,4.83047,6.707926875,2.2542766666666667,4.320935,4.150365,3.959885,4.6152,3.845005,4.4825,5.9725475,5.24555,4.59322,3.58034,5.142996666666667,7.453413,1.9254775,1.9533771794871795,2.79974,1.7900433333333332,2.7514333333333334,1.88624,5.11065,3.01542,5.55125,1.9398399999999998,4.63128,4.069845,3.2599,4.370025,3.78595,2.56103,2.7481233333333335,2.74536,2.58557,2.4939566666666666,1.6540016666666668,2.7248033333333335,2.9142166666666665,2.1646799999999997,2.1646799999999997,4.39107,2.9391033333333336,1.9295766666666667,3.14397,2.067833333333333,2.3479233333333336,3.12561,2.72561,3.0726099999999996,5.2114,4.247165,4.216925,3.498798,3.498798,3.80247,3.284613333333333,3.93986,4.454365,3.91985,3.41755,3.239625,7.29787,2.153055,1.95924,3.47389,3.121055,1.4179633333333335,1.4179633333333335,3.61644,1.899395,3.912254,3.654835,3.050565,2.070772,2.0561176666666663,0.5187333333333334,3.1898,3.94823,2.1111,2.483675,4.277055,1.35211,4.83391,1.19344,0.4328985714285714,0.57846,21.527353975198412,0.57846,0.4328985714285714,0.7240214285714286,10.777073333333334,3.164343333333333,3.668085,4.58374,3.3193849999999996,2.417755,4.462307142857143,2.24272,2.50763,3.44821,3.12944,3.928405,4.439015,3.504095,2.157825,3.11096,3.36685,3.884645,3.06005,1.128158,1.128158,1.128158,1.128158,3.35893,2.89191,3.08644,1.7303666666666666,1.2449583333333334,2.434795,3.574955,3.71868,2.91862,3.086195,2.50667,2.3104741666666664,3.90994,4.25629,1.09169,2.92452,1.0715,2.7328333333333332,2.0214766666666666,3.5140666666666664,5.07595,2.4408499999999997,4.104495,3.96335,0.8694014285714284,0.3108214285714285,0.3108214285714285,0.55858,0.3108214285714285,0.3108214285714285,0.3108214285714285,0.55858,4.397935,7.282431666666667,3.552995,0.54111,3.665815,7.66436,3.20493,3.0744900000000004,1.1857033333333333,4.3376,5.26065,4.45886,4.79838,1.658614,4.930875,2.1675,2.4542173333333333,3.687755,5.22455,0.8107028571428572,0.8107028571428572,3.58693,3.0121599999999997,1.65633,3.11449,2.7957,6.307,2.55617,4.923575,5.47525,5.66525,3.01528,1.64992,3.88428,3.509645,2.275205,3.56751,3.024905,1.87053,1.159765,4.06487,3.45005,4.94922,6.175326666666667,1.5004433333333334,3.986985,1.10964,2.53112,3.34265,4.130195,0.38713928571428574,4.71489,4.111765,0.899235,2.7332866666666664,7.604066666666666,5.4692,2.138365,5.603572,4.435465,3.71584,1.4738700000000002,5.452686666666667,2.90545,3.0494066666666666,3.6542333333333334,2.2072133333333332,2.2072133333333332,6.343375,6.343375,3.5280428571428573,3.5280428571428573,9.91424,3.5280428571428573,3.5280428571428573,4.180572857142858,6.77415,3.651595,3.3898833333333336,2.75277,4.490305,3.82314,3.2571933333333334,2.9658700000000002,4.56224,3.0885700000000003,2.64172,3.0565766666666665,2.3013066666666666,2.65088,4.97234,7.555735,6.797689999999999,5.19005,3.74098,4.049775,6.3580570000000005,4.941595,4.155325,4.05725,3.837,2.266716666666667,2.244275,2.08854,5.31325,5.3396,4.46851,4.18125,2.32773,2.7141066666666664,7.047536666666666,1.8566379999999998,2.5394866666666664,3.2201466666666665,3.2201466666666665,3.176765,5.1081,0.76505,3.4369666666666667,3.73574,2.60682,10.19865,4.15564,2.5819433333333333,2.4138633333333335,5.5294,6.1454,3.09238,5.51345,2.68176,4.25883,2.835826571428571,4.248665,5.31025,4.779515,0.9222616666666666,3.5483666666666664,1.1181225,2.5609766666666665,5.0001659705882355,7.987176666666667,2.87243,3.1463366666666666,6.618441666666667,1.791128,4.43197,5.5019,3.466855,3.6857,2.2966333333333333,4.790995,2.4323724999999996,0.46487615384615383,5.14965,3.274955,3.509733333333333,5.0358,4.799635,5.00525,6.6124725,4.79366,5.63325,7.036995,54.296843333333335,4.70699,3.939955,4.66881,5.8622,4.28811,5.02915,4.034735,4.7064,1.8850325,3.94045,3.993595,4.75102,2.37495,4.86485,3.921985,1.614058,5.62605,6.43495,6.972428333333333,5.37185,3.41324,4.7939,2.964295,3.31969,3.622695,4.42654,3.812655,7.02496,2.69545,1.054047142857143,2.4512825,0.5768679999999999,0.5768679999999999,3.338645,0.5768679999999999,2.5456982142857143,2.5456982142857143,3.2454382142857146,4.4607775,4.919790714285714,2.4512825,4.573071666666667,2.5616516666666667,1.3251966666666666,5.44445,2.146825,7.754334666666667,6.100536666666667,11.299313121212121,3.3554666666666666,2.7987066666666665,0.2183121212121212,1.8591043333333332,2.1740733333333333,0.89365,1.6878666666666666,2.5239066666666665,2.1171875,2.591275,0.62294,28.08464875,1.9181275,0.7625384615384616,2.6240866666666665,2.6240866666666665,0.383705,1.7488075,3.2966225,1.3085075,1.8098575,1.6477,4.29743,2.93632,1.96233,2.3441266666666665,1.139395,1.948785,1.5521816666666668,5.610265916666666,3.57009,6.690159166666667,2.4714525,3.1694766666666667,1.025085,2.581305,4.870275,6.21248,3.0282133333333334,2.2789566666666667,5.490195833333333,2.1635925,2.36788,4.2390125,1.01454,3.6291666666666664,2.411776666666667,5.462,4.93375,6.2942,3.241455,4.124305,4.124305,5.23275,1.790195,5.44145,2.84421,1.6047375,4.39964,3.59257,5.695310166666667,5.20925,2.79412,3.016383333333333,2.98721,1.155617142857143,4.992055,0.9864675,5.318466666666667,4.606645,7.84856,4.20307,4.36675,4.02785,8.125686666666667,4.31475,5.0014,1.12107,0.7254071428571428,4.75025,4.496675,2.086605,3.19293,3.272425,4.280685,2.22458,4.66404,2.4495299999999998,5.1805,5.44785,5.2052,4.436115,4.38411,2.77497,6.756816000000001,3.511615,4.55923,3.41716,4.14654,5.932472380952381,0.6002014285714286,3.908533333333333,1.7557600000000002,0.6256455555555556,3.98234,2.9158,0.99875125,1.99937,5.87897,3.99927,2.23747,2.7238900000000004,2.70843,4.961405,3.70321,1.667747857142857,4.13036,2.316196666666667,3.5063333333333335,4.27204,5.0842,3.0565233333333333,3.7951,3.7657666666666665,2.01386,7.12496,4.98002,4.064005,4.94512,2.24092,4.117385,4.589315,3.59294,3.928665,10.522695,3.756625,4.281488333333334,4.76747,4.42708,2.38196,4.082705,4.266395,4.601555,3.22509,4.101305,1.772535,2.8793399999999996,3.927225,3.478075,4.911775,1.857658,4.1399,3.0958566666666667,5.15095,2.99978,1.76084,4.09779,4.31733,1.07118,3.079915,2.68905,4.614773333333334,1.7076319999999998,1.8716166666666665,1.179515,4.15996,5.27495,5.8852125,3.74857,2.98583,2.272185,2.34775,1.90026,1.6969033333333332,5.4337,3.003955,1.81652,0.8870615384615385,20.542678301282052,2.96408,3.4894741666666667,4.294965,4.106327435897436,1.48567,2.6107199999999997,2.899130681818182,1.157346,1.8983100000000002,4.113035,4.886375,3.5303675,3.08381,5.2397,4.78188,7.085915,4.7006741666666665,4.70884,3.841025,2.7762,3.972465,3.90907,3.3653999999999997,3.931365,2.0106525,5.00055,9.35521,3.46523,2.964385,3.47863,0.5656,3.2662633333333333,1.9709466666666666,2.2675275,4.27289,3.052155,4.71411,3.62259,2.88688,2.181355,1.702445,0.8521380000000001,1.55576,1.2499133333333334,4.02549,3.703925,4.628285,4.705845,7.39692,2.4167566666666667,1.4185079999999999,2.2967033333333333,7.668331666666667,3.39127,2.767175,3.102425,4.480225,3.3955025,3.46889,1.50024,4.42442,4.912085,4.21202,4.058195,3.59855,4.2298,4.33135,3.81894,4.379105,3.613725,2.153665,3.187803333333333,3.47831,5.3893,2.91151,4.185937,2.89401,2.949555,2.64477,2.405726666666667,2.17206,2.505832333333333,2.505832333333333,1.97833,2.6005433333333334,2.672803333333333,2.34736,2.15768,4.117715,2.3972666666666664,2.88589,2.7973833333333338,1.7374166666666666,4.306335,2.96737,3.690445,2.5460066666666665,5.18495,5.2864,4.636053888888889,2.947865,2.45828,2.93154,2.58436,2.176545,2.876405,1.9204225,2.505725,2.4581375,6.898929833333333,4.3986225,3.693215,0.58510125,4.294945,4.068635,4.14514,3.061505,3.896585,3.689256666666667,6.14615,4.160605,3.3298,2.7007710714285715,2.14488,2.4583,1.652788,1.718882,1.55577,2.12648,1.7164075,1.2057733333333334,4.177568857142857,0.6201138461538461,0.52398,2.01586,1.5244783333333334,1.4781520000000001,1.4114433333333334,2.383027272727273,1.5109416666666666,1.533662,0.6008675,168.63320628299803,0.4761253333333333,1.9614540000000003,1.060404,1.301,2.0494925,1.56253,2.156195,2.4247366666666665,2.027765,6.6385,3.22643,3.557927142857143,1.9701766666666665,3.0357,1.3429116666666667,1.3429116666666667,5.5045525,0.48639111111111105,2.2678225,3.2687066666666666,3.067543333333333,0.7931945454545454,0.5935882352941176,1.190752564102564,1.0252999999999999,2.2991025,3.871275,2.0404625,2.1329375,2.2995233333333336,4.6971739999999995,1.0316311111111112,4.251325,3.612275,3.470155,6.84725,1.9133466666666665,2.9522,2.863565,4.0704649999999996,2.465365,3.356015,3.346405,3.27094,4.755765,2.91344,5.97973,2.02212,2.357295,3.169835,1.59329,2.458625,2.96382,2.76644,1.78846,1.6124,2.483665,4.146625,5.680033333333333,3.03326,2.951325,1.267445,4.238975,3.3457333333333334,3.888533333333333,2.93473,24.700844755952374,2.375582,2.68844,2.9596,3.288296666666667,3.129466666666667,6.070296666666666,3.1103666666666663,2.4408933333333334,3.4774999999999996,3.3112166666666667,2.18216,3.225873333333333,3.23325,3.0262333333333333,1.6792,1.67015175,0.568573,2.3147366666666667,2.0508025,0.219586875,2.252543333333333,2.754215,0.219586875,0.219586875,2.0135035416666667,0.219586875,0.219586875,0.219586875,0.219586875,2.81001,2.5065233333333334,0.56322,3.255852857142857,1.39364,1.854878,5.30955,4.3701300000000005,6.1841275,2.0598275,4.998115,2.0298375,2.6865633333333334,1.219364285714286,5.7725599999999995,2.8118733333333332,6.1018349999999995,0.9079416666666668,1.465985,4.700325,4.654055,35.01647747602398,1.60357,1.4155533333333334,2.3010533333333334,2.350035,0.898819090909091,2.384943333333333,2.22941,2.80471,2.00444,2.4335366666666665,1.6977799999999998,2.7851266666666668,2.4888933333333334,2.2476266666666667,2.62858,2.4698166666666665,4.13851,3.3746666666666667,1.0642871428571428,3.831325,4.21424,19.695164833333333,2.718173333333333,3.154006666666667,2.6440233333333336,0.803448,3.146756,1.5783913333333333,3.146756,2.37125,2.4655766666666667,2.8883466666666666,1.6169875,1.8466575,4.268755,4.123785,5.27295,4.33901,1.611932,5.0911,1.711315,4.914105,4.052467095238096,5.31035,0.7407154545454545,2.153545,2.0748375,2.820988,3.40848,1.06780625,5.36715,2.05926,2.0860566666666664,1.037152,1.037152,3.022726666666667,2.99143,4.412075,29.198293333333332,6.39305,1.8968466666666668,3.6035933333333334,0.3849433333333333,6.0726525,5.1152,2.68601,3.131215,5.6031575,3.81459,1.17033,4.263565,1.209898,3.831635,4.500125,4.79859,2.119145,2.986105,4.30155,2.613215,3.3230589999999998,3.896745,1.3276566666666667,2.526655416666667,3.896485,4.677455,2.798486666666667,2.9055866666666668,2.9922233333333335,3.58456,3.99838,4.05293,4.086566666666667,1.696985,6.11856,2.78784,1.773818,4.214695,4.90371,4.074865,3.484295,0.84847125,3.06934,3.42209,2.07466,4.687316333333333,2.92668,3.971365,2.9055433333333336,3.2555099999999997,3.46215,3.1200200000000002,2.92244,3.0490333333333335,4.61663,4.98602,4.341825,1.671705,4.042115,4.14697,2.044395,1.81674,1.6957325,4.189387222222222,4.584685,5.321939375,3.963075,3.715733333333333,3.749855,3.387966666666667,1.3697916666666667,3.319935,3.011825,3.55247,4.35286,4.33566,4.387515,2.988755,1.886495,1.57955,1.4820775,3.56024,2.46622,2.51147,3.310535,4.730745,1.54207,5.18395,1.3374914285714286,1.7962725,3.22742,2.95334,3.097455,3.59623,3.071025,1.57777,0.939319,3.24002,4.080026666666667,4.64448,8.526589999999999,2.38973,3.053523333333333,1.53581,2.747783333333333,2.791533333333333,1.2133933333333333,3.04805,2.7247966666666668,3.404333333333333,3.954966666666667,3.3383000000000003,7.039256666666667,3.0623466666666666,0.7394436363636363,1.8804933333333331,3.285275,3.35007,3.46294,3.5676,2.6569089999999997,3.416895,3.448815,1.993754142857143,3.817325,3.053532222222222,3.32413,2.11102,4.47676,4.84058,4.60982,4.009435,4.15658,1.1382777777777777,4.8785,3.1429333333333336,2.765163333333333,4.415705,2.785323333333333,3.06691,0.41954857142857144,0.41954857142857144,4.11277,5.09775,6.7813,3.05276,4.267825,3.631085,3.181915,4.950605,4.27326,1.03317875,4.136475,2.7922666666666665,4.205464166666667,2.9608133333333337,2.9843716666666666,1.9241133333333333,3.186889285714286,2.6338833333333334,2.696476666666667,2.6115733333333333,2.8193333333333332,1.9890166666666669,23.559379804183138,5.5756,5.00635,3.806315,3.313,4.4724375,3.194645,4.46249,4.389525,3.718935,3.87412,3.831105,2.60833,2.92944,3.0878266666666665,3.072091666666667,2.7081133333333334,4.27289,3.536935,4.5889325,5.04335,4.175835,1.37894,1.59323,1.59323,4.883925,4.38345,2.6594333333333333,2.36787,2.8163433333333336,4.675835,3.66983,7.947591666666666,3.2040566666666668,3.3248233333333332,3.1169700000000002,4.54108,1.591785,5.961752499999999,2.46028,2.51285,1.647155,3.716085,2.798915,6.90383,3.30272,2.49333,4.199805,3.6235893333333333,1.4690525,2.4833133333333333,1.54549,7.933899,4.351325,6.522851666666666,2.205965,3.985125,3.69354,4.044945,5.207,3.5012666666666665,3.5012666666666665,2.13258,4.455205,5.07295,2.51459,6.36792,1.58643,5.8734,9.106945666666666,3.352066666666667,4.626671333333333,2.212686666666667,2.023365,0.568618125,4.03328,2.854575,2.49305,3.788744,2.3698825,2.3849033333333334,3.606945,5.3932,4.92768,4.44181,5.1287,4.15974,2.251815,1.014581818181818,2.895785,3.390865,2.7159333333333335,4.92154,4.048195,3.42617,2.929405,1.937474,4.225515,1.01156875,5.1251,0.9518255555555556,5.21905,3.309715,4.73032,5.108225,3.189875,3.30609,3.443566666666667,2.3864533333333333,4.212415,3.24361,2.587915,3.9327,4.45738,6.379203333333333,4.50806,1.73968,3.65405,3.34971,5.398865,2.06647,2.06647,2.887793333333333,2.368716666666667,2.42796,2.6386833333333333,0.8727880000000001,5.9799,3.94799,2.0301225,2.318205,2.512475,3.74785,2.61825,3.759175,4.892805,5.49715,5.54265,6.0188,5.86865,1.3064,3.873785,1.0745833333333332,2.51865,4.232233333333333,2.437445,3.002635,3.2534,4.3341,3.778975,0.4570894736842105,4.38467,4.281275,4.674255,3.214475,4.812075,5.4257,4.431835,3.883045,1.87165,4.384715,2.0902025,4.176200000000001,4.176200000000001,6.47335,5.33125,5.38195,5.0315,2.68687,1.591785,4.348875,2.164676666666667,1.6279233333333334,2.015605,4.156465,4.13764,4.386145,8.11208,1.5554750000000002,5.33175,1.228265,3.222425,5.96235,1.9728775,4.58798,2.7487833333333334,4.69779,3.661945,4.33581,3.3424333333333336,4.19371,4.039845,6.1972,4.081115,3.83329,3.868405,5.2667,3.923955,4.35401,3.594815,4.34824,7.5516749999999995,3.512385,7.16831,3.170905,5.3817,6.056733636363637,4.53844,3.64787,1.835975,5.3992,3.853045,0.8184311111111111,8.96357,5.8519,5.05085,3.18576,5.0053,2.933405,1.6694600000000002,3.8689,1.09169,5.8183,2.96608,4.69082,5.51815,4.426135,4.00748,2.1296933333333334,4.227215,5.18855,1.506725,7.110796666666666,3.08595,3.473255,5.1157,3.94321,1.8677,4.355005,3.887665,4.1254,2.8074833333333333,3.90487,3.70635,5.45365,4.68788,3.36673,1.91045,1.91045,6.986995,1.4334428571428572,5.19685,4.27079,5.0976,3.565135,3.70466,4.989815,3.895395,0.9233950000000001,0.9233950000000001,0.9233950000000001,3.671905,3.22818,3.931555,4.556484888888889,2.701115,1.442855,4.82591,2.14956,2.494155,3.978975,4.66032,1.8627475,2.2043,5.85148,3.966905,2.68894,4.235245,1.6675775,1.9956725,3.2491066666666666,2.634525,5.2706,1.4298579999999999,1.5585200000000001,1.04941625,4.049755,3.16731,3.04271,2.9594199999999997,5.455,1.745142,2.05727,3.036845,1.5828714285714285,3.237595,3.81491,2.5281,5.8015,5.4829,3.10087,4.372475,4.25904,3.43051,3.437675,4.21871,3.521235,7.24781,5.23775,2.045383333333333,1.8188166666666667,3.570865,4.4972,4.224235,3.74589,2.9944400000000004,4.11712,5.74775,5.00425,2.65084,5.14335,4.04142,4.95853,7.9320175,4.50766,0.7120536363636364,3.954495,4.1728483333333335,2.4175,3.767955,3.711733333333333,5.62335,3.87367,3.83956,3.73754,4.258085,4.619045,4.58295,3.109125,3.997645,4.92814,3.978155,3.44066,2.912705,6.39637,4.756735,1.741882,3.103895,4.0045641666666665,3.878805,4.898065,4.255495,2.6189433333333336,0.8936055555555557,4.334493636363637,6.663142499999999,3.856355,4.72794,3.59436,7.3335783333333335,4.040435,3.4999000000000002,2.7156800000000003,3.67798,2.15867,3.541645,4.19922,2.607592,4.0498,5.31645,1.4598175,4.949995,0.6604599999999999,6.1138,5.03265,5.9059,5.78475,1.4671483333333333,1.7657366666666665,4.19212,2.032485,4.916585,0.5295525,5.9657,3.138105,1.541854,6.2505049999999995,6.65355,0.9220125,1.6578344999999999,1.278552,1.278552,1.278552,2.1725333333333334,4.59412,3.6449,4.12884,3.79222,5.38825,3.986345,1.87106,4.043185,5.1417,0.2949317073170732,3.80155,4.52106,5.5584,39.80002203787879,5.759625833333334,5.10915,11.539659,4.01017,4.06939,7.438293333333333,3.149775,4.5446,4.272005,4.827435,10.21734,4.06596,2.6192166666666665,3.21491,5.02625,4.092215,3.868,4.34928,2.35935,4.53659,4.785145,6.79678,4.445565,5.15735,2.3129975,4.20697,0.527635,1.408835,3.685595,6.42535,2.88249,1.3106783333333334,1.3106783333333334,3.579155,3.958635,4.07306,2.58011,1.5953099999999998,3.75134,4.27071,1.762255,2.9580866666666665,1.6630639999999999,2.1993833333333335,4.043285,4.473605,2.1386725,4.55272,2.32112,2.06714,3.46841,3.83844,3.979155,3.89958,5.985662333333334,2.3757623333333333,3.705435,0.6834872727272727,0.6574175,3.804305,2.28022,8.616693333333334,3.3754000000000004,4.87395,1.625065,4.496415,1.5533966666666668,3.972115,4.295455,2.6248733333333334,3.91265,5.3237,0.4016505,0.4016505,3.5498,3.1414266666666664,2.85871,3.490795,3.648055,5.25675,0.9452909090909091,10.474641666666667,9.007765,2.006085,4.69107,4.67903,4.89307,3.595855,2.5724566666666666,2.08866,1.9556825,10.062575,2.2023825,2.7994299999999996,3.636244,4.720195,3.636244,2.561425,2.8455866666666663,2.83544,0.7168309090909091,5.777628333333333,3.0869733333333333,2.7505466666666667,3.952025,8.35747,9.537615,4.10773,3.88794,4.44008,6.583585,1.95541,1.30745,25.680635,3.816695,3.950345,0.9266819999999999,4.595665,4.131555,4.77794,4.47344,4.37128,5.581333333333333,2.98992,2.0690399999999998,0.6750529411764705,0.7357191666666667,4.804435,4.663775,1.4413733333333332,4.412136666666667,0.8691916666666667,3.589866666666667,1.4770366666666668,4.309425,5.83855,2.055865,2.468035,2.65929,3.44656,2.890485,0.49372222222222223,4.829255,3.60409,2.73363,3.23075,4.94231,2.8288933333333333,4.03948,3.10893,4.211235,8.388066666666667,4.61448,7.78126,2.5592,2.5790333333333333,4.243035,4.572010000000001,4.211525,4.523735,3.72008,4.93666,1.23719375,3.338737916666667,3.3329852142857144,0.797682,1.59323,1.59323,4.857095,7.1583516666666664,0.8562076923076922,4.95792,0.94482,2.969,2.396036666666667,2.5506904545454545,6.484865555555555,2.5629733333333333,1.1112555555555557,2.5057566666666666,1.23618125,2.3245999999999998,3.024843333333333,3.0573733333333335,3.29232,2.486126666666667,0.94482,4.30294,4.23619,5.4543,2.6396,4.55422,2.1901599999999997,5.8002,4.64186,4.365215,2.9259566666666665,3.114075,2.2091475,1.321055,4.265745,2.7066,4.23523,5.60335,1.6683679999999999,4.536445,2.75869,6.426096666666667,3.44799,2.454575,0.94482,2.460055,3.1833,7.124334,2.3525899999999997,1.6942920000000001,2.3525899999999997,0.4498175,1.223582,3.53652,3.814785,1.6566175,3.4932,3.677124,0.622594,0.622594,0.622594,7.865460000000001,1.4993159999999999,0.7487881818181819,3.077545,39.82630977922078,1.819424,0.65253,2.87775,0.65253,3.708655,2.088245,2.27869,2.502056666666667,5.4565,4.42978,4.36112,2.4342533333333334,0.8674957142857143,4.19757,3.0936800000000004,5.0255,0.9880642857142857,2.748525,2.748525,3.81632,4.44048,3.56565,5.005213461538461,3.14594,4.440745,5.2397,1.7762239999999998,1.099905,5.7257,6.43445,3.824515,0.6519510000000001,4.300725,4.092338333333333,0.935755,4.36674,2.29324,4.142835,4.399565,1.7964417171717173,1.7964417171717173,3.952455,3.361935,0.84764,2.879165,3.0529566666666668,3.26905,3.97823,4.526315,0.4485657142857143,0.32744882352941174,0.32744882352941174,0.32744882352941174,0.776014537815126,0.5997984615384616,0.6232409999999999,0.32744882352941174,0.32744882352941174,6.795585,0.32744882352941174,0.776014537815126,3.44905,1.2585825,4.497965,1.1554116666666667,0.5727207692307692,0.935755,2.535245,2.6218,3.836385,2.90623,0.32744882352941174,0.32744882352941174,4.393745,3.6604,4.20032,2.610295,3.72376,1.453102,3.86461,0.6232409999999999,0.6232409999999999,4.74709,3.11004,2.574655,2.808675,3.95636,1.00113,0.8096769230769231,10.29787,1.28585,4.08959,4.336545,5.13595,2.01982,0.3726121739130435,0.8506375,2.92211,3.255,3.315775,4.227815,1.429244,6.25065,3.44321,4.998035,4.054705,2.9951133333333337,2.8503933333333333,6.118743333333333,2.51865,4.780365,4.19369,3.96335,5.81881,0.5423646666666666,4.134065,3.3140366666666665,2.0214066666666666,0.7332655555555555,4.191935,5.30099,2.75947,2.31499,2.24837,5.07885,2.743475,2.899795,0.959352,0.46154923076923077,4.040745,0.34959,0.7770445454545455,3.97281,3.342315,4.15452,2.62715,5.2202,4.29719,6.250802,3.733025,3.633625,4.331215,1.4829875,4.9092125,1.9325299999999999,4.175025,2.4097275,5.845506666666667,2.585465,1.032778,4.401235,6.7421299999999995,6.416980416666666,3.11657,0.7860608333333333,2.7770833333333336,4.53716,3.914025,4.640005,4.54599,4.128315,4.37328,2.984685,4.34748,1.8183533333333333,2.303125,1.3815233333333332,4.003135,9.54246,3.361305,3.685305,5.7143,2.668215,4.11875,2.5439766666666666,2.9948376666666663,3.355615,3.750365,3.46147,3.56952,3.34031,5.14,5.58875,4.637765,4.695845,4.796265,5.06195,3.001295,5.2931,7.63195,0.9280566666666668,4.005855,4.35516,4.448155,5.15385,4.80079,3.83339,8.906815,2.47396,3.392395,5.74495,3.77433,4.46806,2.0888400000000003,1.85488,2.7211933333333334,2.9196500000000003,1.9522533333333334,2.9626866666666665,4.187555,4.59041,4.10782,3.49947,4.908933333333334,3.28574,3.45662,3.9177575,5.2835,2.85395,5.540322,3.95635,4.04058,3.470305,7.97509,3.880325,3.56456,4.847605,4.703675,3.326305,9.71881,1.28874,2.17278,3.957095,2.763856666666667,2.763856666666667,2.01365,7.887229999999999,0.8422755555555556,3.105635,0.87555875,2.05727,4.311745,4.90986,3.92071,4.46074,2.71637,3.290565,3.762735,3.83716,4.3727,2.896935,2.6213233333333332,4.31276,4.919113333333334,3.78211,4.373395,1.684874,1.670534,2.6672766666666665,5.4602,2.1411325,1.7067466666666666,1.8971875,4.36546,4.62275,3.180045,2.823385,0.5110544444444445,2.384175,7.39542,3.1491,1.5502466666666666,0.87729125,1.2072633333333334,1.9528966666666667,2.2702075,1.2169666666666668,1.9978633333333333,4.390471,4.06414,4.958575,2.4831333333333334,2.1094675,6.7670375,2.90455,1.8184016666666667,1.8184016666666667,1.8184016666666667,6.356773333333333,2.158506666666667,3.73979,2.69504,0.474664,1.1614119999999999,2.121665,5.824395,0.4562611111111111,3.77019,3.9180441666666668,5.5689,3.022851111111111,0.4562611111111111,3.022851111111111,0.96036,1.210452,5.4743,4.05905,6.950094999999999,4.068075,4.70125,3.581055,4.19063,5.06495,4.83108,6.0674,3.69975,3.43209,5.1749,4.68196,4.17643,4.471025,5.1361,1.3712533333333334,2.708906666666667,1.1101625,2.24342,3.2437726388888892,1.5466059722222223,6.83895,5.398865,2.7715316666666663,4.573535,2.86565,4.8202,3.050755,4.21343,4.888525,9.469418333333333,5.37645,4.47872,2.40412,2.860695,2.20216,0.5656,2.1875313333333333,5.7679,5.22535,4.981935,4.427535,0.5670453333333333,2.01049,1.4133525,4.39778,0.7997000000000001,6.824185,2.069535,1.0875175,1.0875175,3.6058780000000006,1.9685320000000002,3.3867333333333334,2.774975,4.54001,3.37771,3.37771,4.42362,5.654906666666667,2.7912966666666663,2.43668,3.415433333333333,4.270815,1.8433700000000002,2.9014133333333336,5.5333,5.26835,4.882855,4.137035,3.8903700000000003,4.68239,3.4804116666666665,3.20355,2.30394,4.07684,5.2665,3.06424625,4.974065,5.56815,2.0938466666666664,2.57428,6.1951,6.94745,1.3742459999999999,2.592425,2.1543475,2.811586666666667,2.2172225,2.418215,2.5086424999999997,1.0012088888888888,1.94312,2.6599,2.17585,2.5486216666666666,2.5486216666666666,3.009495,2.831275,2.1612982692307696,2.503825,2.4174675,2.02958,1.572792666666667,5.024917500000001,14.528451666666667,2.8549333333333333,3.4667333333333334,1.8670719999999998,1.8670719999999998,1.6121916666666667,1.6121916666666667,2.98423,3.6662,2.93491,1.9876975,1.9876975,3.8701666666666665,2.753323333333333,1.1223266666666667,1.406212857142857,2.9742033333333335,2.8965899999999998,3.6384000000000003,2.5904721428571427,3.2020666666666666,3.0823033333333334,0.675402,2.60075,3.5438899999999998,7.189021666666667,4.474645,4.54592,4.314885,3.24718,4.957515,4.43843,2.7262533333333336,4.217915,1.3494066666666666,3.1970899999999998,5.65435,5.4276,2.66216,1.038615,3.004975,2.44901,2.997306666666667,1.5490783333333333,0.7062364285714285,3.16507,4.6227,4.799715,4.119265,4.875495,3.1039033333333332,2.1736033333333333,3.2380983333333337,2.6855666666666664,3.3192233333333334,3.13723,3.4090666666666665,2.6202466666666666,2.51023,3.6033333333333335,2.779526666666667,5.2457,4.918455,5.144105833333333,5.144105833333333,3.447225,3.98496,3.564445,3.65114,2.8247,4.85765,3.33058,2.8912999999999998,6.14695,0.7728591666666667,5.28035,4.621695,2.4949966666666668,4.878295833333333,3.1498633333333337,1.6963833333333334,1.3384714285714288,2.1879166666666667,0.96166,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.26065571428571427,0.5240114285714286,0.5240114285714286,1.1259925,0.8132469444444445,1.6205685606060607,0.99388,0.99388,1.2141241161616163,0.40644444444444444,0.3731188888888889,1.2501675,1.54627,2.566856666666667,2.3605525,6.85393,3.0431266666666663,3.844705,3.397808333333333,4.614980571428571,1.2382516666666665,4.627885,4.169505,4.57209,3.019345,1.486682,4.157511538461539,3.64225,4.387635,4.506165,2.72019,5.02565,4.419695,4.611945,1.234874,3.896115,4.683745,3.07486,2.4037266666666666,3.38602,2.4457,3.244655,3.85868,3.16715,4.797035,8.751764999999999,3.283195,5.03325,4.38901,4.351456666666667,2.5397266666666667,3.77177,1.4324571428571429,3.978785,3.332325,1.8931159999999998,1.0825975,2.85413,1.1251983333333333,0.5181786666666667,3.5161,4.320675,5.324156666666667,3.6666000000000003,2.47633,2.76158,4.67489,3.870233333333333,4.56162,2.521275,2.3119166666666664,4.358615,3.88415,3.830615,5.31425,4.316055,3.6279,4.6489,3.0942666666666665,4.291865,2.1591566666666666,4.71287,5.15945,3.320135,4.068005,2.462225,3.80203,5.4013,4.327365,5.41495,4.79541,4.95239,2.7057033333333336,4.983805,4.927565,4.720785,2.35077,1.06662125,4.00179,4.657395,4.27148,4.89326,1.612785,4.08533,2.1179,5.0607,4.56175,4.78896,2.2933,4.21717,4.79446,4.368095,2.596556666666667,4.394335,4.795815,4.998315,3.648215,2.35077,2.34869,2.88933,4.64619,3.808005,4.18783,3.520695,4.790525,2.3439,6.87247,4.61481,4.314855,5.37147604861111,4.821115,5.19865,3.4163550000000003,2.8359500000000004,2.8359500000000004,3.954575,3.69781,4.62851,2.144745,2.9064075000000003,1.00088,2.616163333333333,3.09207,2.695603333333333,3.11565,4.51033,2.865436666666667,5.43265,2.7300833333333334,4.441685,4.4602875,1.97581,4.21644,2.75257,2.705956666666667,3.95509,0.892536,5.1281,4.686715,6.1066475,4.167845,5.36925,1.27732,4.878205,6.49455,8.52462,3.13457,3.254186666666667,1.9459119999999999,0.79588,3.97878,1.08227,4.341065,4.58374,5.0836,3.289045,3.948765,1.217525714285714,3.538055,3.594555,4.40498,4.12262,3.744955,5.1963,2.3636125,4.16409,4.95732,6.03425,4.459885,3.49738,0.33020666666666665,0.33020666666666665,0.33020666666666665,0.33020666666666665,5.46175,2.774285,6.1708,3.0962433333333332,5.2017,4.700785,3.74934,2.133445,2.47431,1.4508866666666667,5.3636,2.7795533333333338,4.148175,3.68683,3.301605,1.55022,1.17765875,4.513555,2.33203,5.853511666666667,3.78427,5.8029,2.249505,1.4430233333333333,0.8002333333333334,3.26687,4.43735,3.180275,2.1984875,8.19443,4.49109,3.533735,2.31468,0.42850099999999997,3.4848,2.722035,2.324415,1.704835,3.20993,3.43915,2.327395,3.0625433333333336,2.93095,3.36228,4.391965,3.676785,4.00099,3.868855,5.48186,0.6072000000000001,4.39925,5.4884,5.0037,4.520215,3.3486999999999996,5.07325,4.385365,4.05833,5.227363333333333,5.25985,4.386205,4.28876,3.6559100000000004,4.451875,2.399645,8.76511,4.80695,3.881685,4.525005,4.952625,5.29385,3.58178,1.0390544444444445,5.890755,3.42219,4.787025,1.3239816666666666,4.30261,3.79426,7.097828333333334,4.611085,3.074965,2.5977900000000003,4.17605,1.614294,1.01428375,4.05215,6.0719,2.00186,2.3190399999999998,2.8933666666666666,4.23931,3.53861,3.71656,4.99329,1.85707,4.172785,3.7004865,3.407425,3.7107666666666668,4.187585,2.76201,2.552645,2.0658125,2.3680866666666667,2.6378166666666667,4.418865,0.5187333333333334,2.65995,4.567545,3.000405,3.5833,4.46844,5.11055,3.94644,16.790160757575755,2.494943333333333,3.847633333333333,1.484146,0.8781890909090909,0.8781890909090909,0.8781890909090909,0.8781890909090909,0.8781890909090909,4.587445,4.795325,4.777975,8.877964,2.5021,2.5021,4.516015,4.328570833333333,1.3098175,2.0326866666666668,4.16833,2.461165,2.2671575,2.1847325,3.00081,3.7876960000000004,1.874605,3.82252,0.8077714285714286,2.8329299999999997,2.8599,2.97003,1.3640366666666666,3.146406666666667,2.2420433333333336,0.922825,2.7173933333333333,2.6339866666666665,1.113788888888889,2.450023333333333,2.7761933333333335,2.073166666666667,4.4287019999999995,1.9742966666666666,2.9422633333333335,2.068255,2.8263033333333336,1.0428466666666667,2.7577033333333336,4.7905153333333335,3.5438666666666667,1.06282375,2.7596933333333333,1.3172425,2.4718,2.4088066666666665,4.657263333333333,3.0440833333333335,2.407713333333333,4.63829,2.6947200000000002,2.1067,2.84055,2.42874,1.7210866666666667,2.7971533333333336,3.296953333333333,3.13412,2.710366666666667,3.03793,2.6462600000000003,2.469065,3.697249,3.697249,2.9604,2.0414333333333334,1.86553,2.4857,5.6212599999999995,2.92583,1.9721333333333335,1.6370125,2.9819533333333332,4.416485,2.5932,1.137924,2.9203606666666664,1.6994300000000002,2.2662366666666665,2.11573,2.76439,2.1552599999999997,2.9591966666666667,1.259552,1.63194,1.53141,4.216216666666667,2.6365866666666666,3.694955,1.0217822222222221,4.060745,3.054876666666667,2.402945,1.7129439999999998,1.601555,3.041423333333333,23.63942416017316,6.77951,2.68505,3.5254250000000003,2.2505266666666666,10.294454000000002,2.9353466666666663,0.9987975,2.6450566666666666,2.31248,2.0455666666666668,2.7031500000000004,2.6399033333333333,2.4804766666666667,0.8596579999999999,3.127383333333333,2.554323333333333,2.9606033333333333,2.8512633333333333,2.61901,2.0487066666666665,2.191413333333333,2.7384533333333336,2.5463999999999998,2.127375,1.5795780000000001,5.6658816666666665,4.648945,2.429495,2.90855,2.3221333333333334,2.56515,8.095892500000001,1.89498,4.985265,2.0694325,1.8383875,7.18281,2.8872433333333336,2.7221833333333336,2.4315475,1.7560379999999998,1.4330869230769232,3.29095,3.233033333333333,4.204245,1.73919,3.8051999999999997,1.627265,1.627265,3.70817,4.36152,3.416233428571428,3.416233428571428,5.929846666666666,3.337415,0.400812,11.552087295482295,1.2785533333333332,0.9548657142857142,3.7596175,1.4095965811965812,1.7917075,6.051963333333333,3.630735,0.805710909090909,2.1384633333333336,4.966067575757576,2.5058008333333333,4.112035,1.314992857142857,5.5429,5.1799,5.1112,3.5537265,1.90917,2.4693533333333333,2.581513333333333,2.4465166666666667,2.2069199999999998,4.969906666666667,4.44243,4.42855,1.9739875,4.7851,4.07163,3.2454300000000003,2.265185,4.77865,2.4654966666666667,8.61614,6.717432499999999,1.937735,2.48006,1.80348,4.5244333333333335,4.5244333333333335,3.3369666666666666,2.9571066666666668,3.3602796666666666,5.125,9.7422675,4.0106,2.4475075,5.2188,4.21588,5.12085,1.974532,0.809615,1.3267550000000001,4.462235,4.91156,3.6225,2.801876666666667,3.775066666666667,2.2826833333333334,3.9756,4.364685,3.38778,5.36225,3.0942933333333333,3.666848,3.4196000000000004,3.247756666666667,3.3182466666666666,6.11585,2.861725,5.4228,5.08725,3.389865,3.352175,3.352175,5.7981549999999995,11.647377500000001,3.4496333333333333,6.0846425,7.063462777777778,3.511095,2.42716,3.8583,1.3218866666666667,3.632235,2.17716,3.0087733333333335,3.0116300000000003,3.3086066666666665,2.11394,2.480026666666667,2.6856566666666666,2.6351566666666666,2.98297,3.07739,3.76774,2.53862,2.863183333333333,4.042815,2.8497966666666668,2.6847266666666667,1.1048725,2.03366,2.895046666666667,2.4436233333333335,2.4540166666666665,2.4331533333333333,3.520633333333333,2.398546666666667,2.4482066666666666,2.66406,2.9580133333333336,2.7799766666666668,2.85894,2.3993166666666665,3.1460233333333334,2.86302,3.25446,2.615483333333333,2.341883333333333,2.2412433333333333,2.4283,2.62137,3.26638,3.223186666666667,2.486925,1.972395,1.972395,0.6516766666666667,1.50024,4.10654,3.24547,2.623133333333333,2.11394,3.4308666666666667,1.2511985714285714,2.66113,0.5465506666666666,3.443633333333333,3.1641100000000004,3.308425,2.89711,2.485133333333333,2.7618500000000004,3.03427,2.60099,3.3374666666666664,4.82209,1.51987,2.6069233333333335,2.3112366666666664,1.7946166666666665,2.1047766666666665,2.850153333333333,2.6687666666666665,1.699514,2.7126933333333336,2.6374633333333333,2.6272266666666666,2.6885366666666664,2.7365333333333335,2.7528966666666665,3.1892366666666665,1.4044575,2.86726,2.3087266666666664,3.4565333333333332,3.545666666666667,1.890185,1.8525733333333332,3.404733333333333,2.6628700000000003,3.24708,2.6025666666666667,3.0494733333333333,5.0412775,3.2270066666666666,2.064076666666667,1.497236,3.4107333333333334,5.91304,3.0482666666666667,3.3800333333333334,2.8063866666666666,3.12452,4.699314666666667,1.6405280000000002,1.1132555555555554,2.6943533333333334,1.7775658333333333,4.33192,2.91736,3.020653333333333,2.9011866666666664,3.1427099999999997,2.3157,3.2199299999999997,2.42291,1.637526,2.85746,3.69118,3.7818424999999998,3.21436,3.883255,1.62514,2.666505,3.60356,3.301065,2.366033333333333,3.5394666666666663,3.9036000000000004,3.8389666666666664,1.33518,5.341125,3.44112375,1.5447749999999998,3.31332,3.3099,3.0864,3.9959,1.893038,1.893038,3.258016666666667,2.956393333333333,3.207685,5.1858,4.34394,4.382498666666667,1.5153219999999998,2.7884933333333333,2.5006833333333334,4.1290375,2.944243333333333,4.589852666666667,2.6223033333333334,2.40124,2.4334333333333333,3.66299,4.462935,1.655746,3.089176666666667,2.93708,2.2818725,4.43272,1.2832183333333333,3.800935,4.44992,2.672115,3.56105,4.203945,1.709925,1.6183533333333333,2.4310075,1.0349183333333334,2.0111211904761905,1.96032,0.42558357142857145,4.045615,2.39697,4.37815,4.33789,2.908535,4.702385,3.260543333333333,3.0103766666666663,3.4204666666666665,2.45148,3.2650566666666667,2.8632666666666666,3.261816666666667,2.1379433333333333,0.6470115384615384,2.18988,0.6402735714285714,1.87686,2.4181399999999997,3.1659366666666666,3.034893333333333,1.3966033333333332,1.2551325,3.81188,4.527835,3.400775,3.514035,3.141455,1.959055,3.74905,7.506824444444445,3.635555,5.4036100000000005,1.514655,3.863485,1.811175,4.084245,3.548,1.93983,4.08634,3.174365,3.820445,4.083395,2.12527,4.052045,6.29952,5.01105,3.563375,3.01052,1.753745,1.807775,3.612145,3.23528,3.238895,3.648795,3.680235,3.317705,1.64269,3.68132,3.07955,1.7826475,4.1608925,0.9755166666666667,3.44496,1.6235025,4.040825,4.38798,3.567055,2.8596725000000003,3.692225,3.34646,1.92804,2.29665,3.7776666666666667,2.621245,5.46297,4.04668,4.395465,2.66647,2.689045,4.64885,4.300285,2.5054559999999997,2.5054559999999997,5.792825,3.5998900000000003,2.4748400000000004,2.87444,1.9877799999999999,2.65485,3.334225,3.6801625,2.5713525,3.41186,1.009594,3.578145,3.03704,4.17095,2.849965,1.5646375,1.498025,3.239135,5.912355000000001,5.39013,3.582355,1.593495,4.053725,3.303075,1.0015633333333334,3.00799,1.2650080000000001,5.3925325,1.4599650000000002,3.603525,1.9873625,1.3966033333333332,3.25163,2.857295,4.33415,7.009636666666667,4.234715,4.5300975,2.45957,2.93349,4.34912,3.91754,4.45825,4.224415,1.08199,1.67015175,1.10157875,2.388965,2.0999,4.666795,1.10157875,4.65882,2.159265,1.504825,1.504825,1.7826475,3.841945,4.307385,3.77847,1.570978,1.570978,0.9683766666666668,3.129,2.1014425,6.0177525,4.222755,3.566855,2.816216666666667,0.9952357142857142,3.609075,3.097375,4.247755,3.446885,4.0528075,4.0528075,3.30477,4.02281,1.8359275,2.70915,0.93079,1.89333,3.42069,2.182516666666667,3.3541925,3.3541925,2.86063,4.60617,4.2978,3.11319,3.52633,4.143405,2.5776566666666665,4.437214166666666,2.74273,3.726015,8.436865000000001,4.734425,2.66002,3.182225,3.25005,4.67009,3.284866,7.7821675,4.708347,4.31221,3.61258,3.774135,3.73519,4.17097,4.81457,2.484845,4.070695,6.176735833333334,2.64204,2.055002,3.28811,3.452845,3.447445,4.75223,2.2966333333333333,2.570003333333333,3.56277,2.8667625,2.6700366666666664,7.010468666666666,1.4489125,4.7947983333333335,4.7947983333333335,3.33258,3.8308091666666666,2.95526,2.4646266666666667,4.96699,4.27374,2.121293333333333,3.88794,4.084735,3.436351666666667,3.057985,2.844255,6.083466666666666,3.22782,5.22035,3.00402,4.452785,4.057805,3.8018,2.956393333333333,2.1642933333333336,2.60363,4.10048,2.91323,3.16405,3.05706,6.421333333333333,2.3591,1.8106275,3.2987141666666666,2.3735833333333334,3.886555,2.876915,1.0015633333333334,3.31802,4.17923,3.93474,5.9934675,3.15201,2.99069,3.008316666666667,3.008316666666667,3.9259683333333335,4.264895,3.648665,2.1347,6.1012425,2.1080825,4.51397,3.534505,8.1347,2.6972233333333335,1.4353533333333335,3.69279,4.50126,0.65394125,4.003765,3.455075,2.99902,3.07252,4.576425,2.153826666666667,2.421235,8.922855,3.50848,3.162835,1.4599650000000002,3.67411,2.74524,2.2704325,3.982085,5.2256374999999995,1.6604575,1.1790016666666667,1.1537566666666665,4.18699,3.924785,3.48456,3.4532049999999996,3.4532049999999996,1.64269,2.349605,3.0756894444444445,0.8500844444444444,3.00546,1.0443175,1.62514,3.28017,3.41618,2.588595,2.46227,2.6580966666666668,4.205975,3.649785,3.08504,2.860765,2.69039,4.18048,6.630205,4.08055,0.9021375,2.5830835,8.80347,4.60812,4.02445,1.12776,5.248163333333334,1.4043566666666667,3.4567725,3.4567725,3.63481,8.509494166666666,0.83484,4.533565,4.44311,2.3000233333333333,4.0564350000000005,3.905565,2.1832425,9.365392666666667,1.7658475,2.4261833333333334,3.24435,1.6869633333333331,4.205401416666667,3.105385,3.452505,3.514226,3.067655,3.42341,0.98718,7.03171,3.853385,3.785025,3.81341,1.8815475,2.8596725000000003,4.066763333333333,3.72265,0.6384038461538462,4.297085,4.306065,4.808465,2.043775,1.425166,4.210305,4.214035,8.26772,0.7225007692307692,1.0008275,1.0008275,1.8184233333333333,1.2439799999999999,1.338316,1.9184466666666669,4.701045,1.18989,0.9040171428571429,3.9574775000000004,3.47185,1.40309,3.374125,4.26843,3.652775,0.681396,1.97901,9.607009999999999,3.1589,3.197415,2.92677,1.747155,2.3801533333333333,2.56367,4.32259,4.210905,3.72385,0.90738,1.474198,0.915639,4.545155,4.275205,4.070895,0.8500844444444444,1.6880359999999999,4.06192,2.2735625,4.849746666666666,1.101585,4.673235,0.7310249999999999,0.7310249999999999,0.7310249999999999,9.5489,3.994765,1.0443175,3.984475,4.373195,2.70287,3.38588,4.281666666666666,2.5542,1.9337772222222223,2.30369,0.681396,1.6829593333333333,0.5622822222222221,0.80001,1.4086666666666667,4.143515,3.69825,2.07069,7.2288250000000005,4.910549166666667,0.6296,5.8305,4.97782,3.5002,4.410245,7.925689,3.6276166666666665,4.910549166666667,4.54413525,2.2771399999999997,4.20173,3.65248,6.94984,3.501265,0.42850099999999997,1.425402,4.173245,1.73977,1.1790016666666667,3.766785,2.3759633333333334,1.65253,3.14327,1.651002,4.4352,4.4313,4.0097,4.790495,6.60164,2.808795,3.71149,1.2650080000000001,2.2762675,3.718425,3.202945,2.121293333333333,4.11958,2.306705,4.64987,2.92453,2.366235,3.3832775,1.6890560000000001,3.412765,0.8500844444444444,2.22394525,1.1537566666666665,1.74333,3.638455,1.4489125,1.4086666666666667,2.2064125,3.32729,7.84785,0.90738,1.12776,1.313726,3.5669,3.912045,1.313726,3.97581,2.2762675,0.65394125,0.8500844444444444,1.8184233333333333,1.2650080000000001,0.42558357142857145,1.614058,4.23645,2.3000233333333333,1.363815,2.93675,1.33518,1.7658475,2.742868333333333,2.30369,4.16639,2.742868333333333,1.0015633333333334,2.792126,2.2267125,0.09926886363636363,0.09926886363636363,0.09926886363636363,0.09926886363636363,0.09926886363636363,3.3732666666666664,2.725103333333333,2.70051,2.8445199999999997,4.843565,3.941555,1.7129439999999998,3.766585,3.646845,2.23205,4.79949625,2.675365,2.35613,2.46083,2.704425,4.493925,8.144416666666666,2.327935,1.9651033333333334,3.0611035714285713,0.9017685714285715,1.403795,2.4264666666666668,2.05198,1.42986,2.761426666666667,2.246586666666667,2.6953899999999997,2.7375866666666666,2.5681566666666664,3.76103,3.51849,2.5793666666666666,1.285632,3.58508,3.77621,1.5675233333333332,1.33812,1.33812,1.33812,3.38212,2.6659333333333333,1.10769,2.2720333333333333,1.2812885714285716,4.401715,1.4747199999999998,6.363566666666667,3.32852,2.6725966666666667,3.1672080000000005,3.1672080000000005,5.260199999999999,3.02836,4.55311,4.869585,2.1723975,3.1308233333333333 +GSM1946768,0.0,1.9778125,1.9778125,1.6044033333333332,4.034045,6.19165,2.4889476315789474,1.6486533333333335,7.255682965686274,4.36544,3.22566,2.83962,3.313665,3.48269,4.47073,1.933106,1.4377739999999999,5.1207,2.483103333333333,2.2671225,4.793405,5.344711666666666,3.83799,2.06155,1.749852,3.950815,4.622765,4.49486,0.64144,1.5638269444444444,1.9221294444444446,2.3566225,1.611695,1.09273,0.7059425,3.0457799999999997,1.52981,1.7487375,1.1161375,2.12453,1.0904875,1.090675,1.10051,1.43773,0.9522600000000001,0.9280419999999999,0.763586,1.1933857142857143,1.59419,1.8464960000000001,1.536332,2.08222,1.6764299999999999,18.507088666666665,0.37953933333333334,0.823768,1.1136979999999999,1.851416,1.481518,1.7528199999999998,1.0681185714285715,1.0681185714285715,1.0681185714285715,1.1618533333333334,0.982204,4.75442875,1.1060725,2.4852825,1.9893525,2.478815,0.993126,2.2399275,2.3031125,2.159305,1.4650225,2.2740925,1.58527,1.6928875,2.4601833333333336,3.81847,4.88938,5.4073,1.9147699999999999,4.51973,4.514706666666667,4.22668,4.06895,1.10145,7.63633,0.600025,0.600025,2.2607125,1.0887914285714286,16.26905,4.911355,5.36785,5.75815,4.372475,4.321135,5.3399,0.4876927777777778,2.226235,1.59818,2.3099925,4.44299,3.82602,1.5328375,3.2608266666666665,3.779166666666667,3.019296666666667,3.522133333333333,3.526105,5.0391,2.6959235,4.59962,2.91393,0.7382727272727273,1.778814,2.63135,5.1795,4.30653,0.556395625,3.496555,3.72143,0.83150125,4.46646,1.7297731168831167,2.180105,2.8098,2.07696,3.788815,5.8243,3.368285,2.6791666666666667,3.4771666666666667,3.0208433333333335,4.074845,3.1551533333333333,5.7285,3.510455,4.3515,3.25112,2.362675,3.6912,2.56015,6.828706666666667,3.517745,3.400285,6.05435,3.260295,5.1028,0.8005444444444445,9.67424,3.60408,1.8503100000000001,2.0800783333333333,3.4026666666666667,2.39602,4.65648,5.57905,2.10079,5.340636666666667,2.84624,4.713175,2.10079,2.7577599999999998,4.52795,5.372300833333334,3.73404,8.978883333333334,3.767575,5.27675,3.03172,4.977935,4.49245,1.7456166666666666,8.27997,4.388855,3.94754,4.054525,3.687645,3.3675,2.30243,6.09188,2.379565,3.91528,3.99798,5.1635,5.09195,3.553995,1.2974833333333333,2.750135,3.04699,1.96374,1.96374,5.942827761904762,2.99217,1.8955233333333332,4.22474,4.722465,2.69089,1.5200516666666666,0.8521488888888888,6.03365,2.97135,6.9322,3.21129,3.90717,3.813335,3.292085,3.92206,3.415675,4.00284,4.123545,5.76175,2.816585,3.666625,9.206623333333333,4.784175,3.6485,3.0328199999999996,2.8298799999999997,4.038633333333333,4.2309275,1.8405975,2.70292,2.0786366666666667,1.841974,1.6964033333333333,2.6365766666666666,1.698405,1.922505,2.9486933333333334,2.6459233333333336,2.3994466666666665,2.7071966666666665,4.514706666666667,3.51942,3.23812,3.434125,4.653255,1.19631,2.369375,2.877178571428571,2.1416399999999998,2.6078266666666665,2.169496666666667,3.3901,1.8107099999999998,1.34694,2.71731,0.662906,1.6432966666666668,0.5059955555555555,0.5059955555555555,1.4517233333333335,3.0404933333333335,2.13762,1.4188833333333333,1.51001,0.3251476923076923,2.722906666666667,0.662906,1.2049100000000001,0.18859702702702702,1.44339,2.0327375,3.666866666666667,2.183683333333333,2.30716,2.5690933333333335,2.20926,2.446966666666667,2.5523866666666666,2.401053333333333,2.23185,2.69593,1.9263133333333335,2.754055,4.12819,0.66425,1.8813966666666666,2.53879,1.90783,3.3551266666666666,1.5501939999999998,2.5642533333333333,2.2246433333333333,4.24786,1.9192766666666667,7.111429523809524,1.6451428571428572,3.10975,2.139665,2.2478175,3.3412666666666664,1.98406,1.9235925,3.97224,2.6173466666666667,2.106025,3.642945,4.0338,4.4052,3.72568,2.353515,3.244645,4.40155,3.786125,3.90919,4.312385,4.30396,3.05984,4.468265,3.467445,0.88280875,5.0642,1.2595699999999999,4.95637,3.898655,5.7228580000000004,3.72646,4.35037,0.96065,2.159405,3.48516,4.04856,0.8119642857142857,1.2040776495726497,2.076465476190476,3.335962285714286,5.41461,5.6709879999999995,2.19119,3.09208,5.13765,0.33252642857142856,3.413395,2.3272,0.99350375,4.40418,1.98487,11.46295,1.30875,1.4714975,2.00539,2.437145,1.9267380263157894,4.484158026315789,0.3169805263157895,1.6590333333333334,2.9335833333333334,0.9781375,3.561733333333333,0.9916171428571429,5.18705,3.944285,2.2103333333333333,6.224,5.72815,3.0479,1.1173342857142858,4.334043333333333,4.97859,4.42195,0.8758272727272728,7.7919133333333335,2.8487633333333338,4.24292,2.7102533333333336,2.5822133333333332,4.53891,2.3724933333333333,2.5122666666666666,2.13745,2.4388133333333335,2.99871,3.0607666666666664,0.3354225,3.980135,3.70417,3.8301,3.87289,4.53256,6.047021,3.94389,1.631565,5.66385,4.391365,4.33418,4.100095,1.39979,2.610793333333333,3.1034133333333336,2.5546666666666664,16.366464999999998,3.44929,3.94656,4.55949,5.84925,2.798535,5.183538472222223,1.7062075,0.7702944444444444,2.827225,3.30184,3.487745,3.755745,6.415603333333333,2.8046066666666665,2.295225,2.14378,3.4354666666666667,4.642525,2.2744675,0.3599689732142857,3.432102608695652,1.9249925,1.16649625,0.5520702775621118,0.7441715819099379,0.3599689732142857,0.3599689732142857,0.3599689732142857,1.16136,1.327345,0.8360225,1.4311175,4.2852049999999995,0.21968823529411766,11.292984377705627,3.695066666666667,2.78241,4.108025,3.86693,4.054155,2.19483,4.723325,3.9829776666666667,4.008565,3.87666,0.6846053846153846,3.4403666666666664,4.127137692307692,0.6658014285714285,3.52363,2.8127133333333334,4.456455,0.46166090909090907,1.805245,4.42671,3.377905,1.834695,1.91052,1.6469966666666667,3.2963533333333337,3.99723,3.06152,2.9062566666666663,5.7257,5.7352,4.71589,3.4543666666666666,3.1024000000000003,6.656125,3.7804,4.929345,0.4165071428571429,3.0618133333333333,3.9246,1.9988966666666668,2.611735,2.90576,5.280031666666667,0.6036916666666666,2.855725,4.391325,4.472415,1.0454557142857144,5.17025,2.680305,4.845485,3.0799333333333334,4.17953,3.53724,4.308105,1.1530833333333332,3.374115,2.7600266666666666,4.542355,4.25645,4.4223,5.7926,4.464995,2.684195,5.36871,2.44368,3.077275,2.9573033333333334,2.611943333333333,2.712563333333333,2.24831,1.871068,1.5269366666666666,2.20845,0.8185485714285715,1.6255733333333333,2.3278666666666665,2.0447966666666666,3.02324,3.3137166666666666,2.7325700000000004,0.9244433333333334,5.3328,3.5651333333333333,5.308302083333333,2.5805220833333333,3.247476666666667,3.17219,1.8614833333333334,1.8614833333333334,2.476812857142857,2.476812857142857,3.5194889285714286,0.5381414285714285,1.6797566666666668,2.0671433333333336,3.6410666666666667,2.2028069047619048,2.2028069047619048,2.2028069047619048,7.3441680357142864,4.3533952380952385,0.9691363636363637,2.42818,4.805990833333334,2.42218,5.0243,3.200575,2.274585,3.988325,3.0031033333333332,3.0451566666666667,1.21809875,1.9364933333333332,3.4568666666666665,2.3870766666666667,2.613593333333333,5.69365,4.179033333333334,3.803733333333333,5.124573333333333,1.9872500000000002,2.64861,3.034103333333333,0.9623522222222223,2.20891,4.597526,7.9595825,1.4811825,2.901325,4.886205,1.744416,1.706495,1.706495,0.9823575,4.75691,7.40721,4.01966,5.097881,4.475745,1.7960333333333331,3.868165,3.100305,4.545305,5.069663333333333,0.3633273684210526,2.818755,2.591975,3.9991,3.893385,1.7876480000000001,1.9471725,2.4855875,4.279045,4.021095,3.016475,2.46474,1.3848319999999998,6.77984,5.67985,5.5812,3.502655,5.50395,4.39462,4.498445,4.25086,3.7487775,2.00739,1.1032314285714286,2.746855,4.0083,3.75995,5.7561675,5.7710349999999995,2.38464,1.7134,2.6832999999999996,2.7522133333333336,3.0804066666666667,0.6831171428571429,2.13093,3.732705,1.160995,4.95721,3.19036,6.0996475000000006,1.4114104545454547,1.4114104545454547,3.8619,3.764785,3.771925,5.69165,2.73081,2.34048,4.003475,3.021005,2.142945,3.4163333333333337,2.5371866666666665,4.159855,3.409675,3.388605,4.792215,1.1077177777777778,2.6682,4.224615,4.60181,3.24917,2.5176233333333333,1.943785,0.8559333333333333,0.8559333333333333,0.8559333333333333,0.8559333333333333,1.64164,3.5936250000000003,3.5936250000000003,1.7855033333333334,6.776806666666667,3.23153,4.080635,2.9941766666666667,2.608375,4.69572,4.07388,4.859815,5.19165,1.6645725,3.954855,3.64586,2.48818,3.346705,3.446535,2.425845,4.007735,1.80589,5.05505,1.69501,3.4706275,3.058535,1.78561,1.1717383333333333,2.79006,4.059655,1.2594319999999999,0.8616277777777778,3.5334,1.3412425,4.852781333333334,4.437925,1.3528085714285714,3.554635,0.7717022222222222,2.623533333333333,2.6118633333333334,2.342173333333333,2.58419,3.767825,2.8504441666666667,4.503285,5.50305,4.378535,4.63675,2.307045,1.2877028571428573,3.83532,5.0451,1.397095,1.397095,4.141645,0.3187106666666667,2.590106666666667,0.3187106666666667,0.3187106666666667,0.3187106666666667,0.3187106666666667,5.56535,2.72509,2.9641,3.58526,3.117293333333333,4.366165,2.6549766666666668,0.9630425,0.9630425,0.9019516666666667,0.9019516666666667,3.82361,1.723855,4.81983,1.5300039285714284,1.5300039285714284,5.57382,0.5049271428571428,2.92255,7.481065,4.6778,3.19384,3.83723,0.9318725,2.115405,1.957515,4.48841,4.466245,4.309885,3.86025,1.3281828571428573,2.72419,2.042665,7.60394,1.72766,4.48392,4.818045,2.726665,3.915895,6.26677,7.645885,4.0522,4.19725,4.392615,2.61365,3.13367,2.317405,2.351775,1.78828,3.852855,3.59673,5.615363333333334,6.5497,4.0086,1.0858833333333333,2.172255,3.71536,3.94642,2.1561275,4.18268,3.27071,4.7014000000000005,1.7396666666666667,4.074566666666667,1.6087666666666667,6.469999999999999,2.93123,2.3992999999999998,2.32796,2.275885,3.6430000000000002,3.1871733333333334,3.422266666666667,2.8995366666666667,3.27186,2.40338,3.674825,3.13362,3.168135,0.38558400000000004,2.90453,3.84539,2.677375,5.68405,4.856735,4.548695,6.800006,5.00425,2.113226666666667,4.4039,5.25105,1.634195,4.57179,5.7688,5.3017,4.884765,3.17575,5.55875,4.94055,3.764215,5.467298,7.914225,4.01829,1.1846583333333334,1.4795033333333334,2.674705,1.791256,4.51143,4.00246,4.819665,2.473813333333333,2.4778733333333336,2.7491533333333336,2.46721,2.2555166666666664,0.947288888888889,0.5105358823529411,4.053405,4.051075,3.618233333333333,4.167835,3.175255,3.447566666666667,5.270215,3.0414966666666667,0.5676488235294117,2.831615,5.28095,1.710135,1.6583839999999999,3.80758,3.21546,2.50241,3.8517333333333332,3.9684,2.7343666666666664,2.2771933333333334,2.411426666666667,2.60234,2.719855,4.223588333333333,5.1919325,6.685798916666666,1.473102,5.012,3.2813395833333336,5.154225916666666,2.509333333333333,2.91318,2.235675,2.117856666666667,1.573725,1.573725,2.62978,2.396943333333333,2.7490133333333335,4.070185,1.694722,2.146545,1.87444,0.449033125,3.60075,0.5576875,0.86991125,3.42383,3.884465,3.78458,1.68585,4.492765,3.0581533333333333,0.8087571428571428,4.375125,3.87788,3.177213333333333,2.443655,4.970955,0.27065241379310345,2.1544715,3.218585,1.4097825,3.718835,6.81885,2.39094,1.3486366666666667,3.832405,3.845035,2.7142966666666664,2.7142966666666664,3.440735,2.556935,4.66426,5.306808333333334,4.89235,0.9814366666666666,2.8088033333333335,2.57236,4.425955,5.142,6.03865,4.924105,4.421866666666666,3.8377,3.8891666666666667,3.5531333333333333,4.120033333333333,3.0691433333333333,3.053243333333333,0.6230714285714286,2.393865,2.3884725,3.554465,3.12875,3.3989,0.7433725,2.67696,4.059301,4.572945,5.8187,5.22435,1.73579,1.73579,0.828917,2.913405,4.61279,3.60619,4.146087857142858,3.13223,4.91218,0.5940263636363636,3.12414,3.72774,4.506465,3.8936441666666664,0.7641814285714286,3.054105,3.96211,5.48705,3.79799,4.9313,2.6526,4.130465,1.40516,0.9858471428571428,2.7086133333333335,5.2895,4.453415,3.107815,1.5063733333333333,3.934935,2.5891,2.4497125,2.7942386666666668,3.0235966666666667,4.523703333333334,3.1611466666666668,1.9400020000000002,3.4756,1.432274404761905,2.9592333333333336,2.51904,2.4648625,2.86374,3.003133333333333,2.269083333333333,2.8235433333333333,3.649305,3.0806166666666663,3.723235,2.5163066666666665,1.84856,4.0441883333333335,3.1852533333333333,2.4705666666666666,3.723235,2.0883433333333334,0.7885427272727273,2.4138975,1.0171855555555556,2.2668075,1.5621275,0.9646727272727272,1.7157925,1.804245,2.70031975,2.700475,4.806375,1.5301125,4.86785,3.1578033333333333,1.60995,2.43477,2.5096233333333333,2.0253200000000002,2.631883333333333,2.973356666666667,2.018945681818182,1.4959275,1.768786,3.491633333333333,2.35153,2.8985455555555557,3.0972399999999998,3.0869366666666664,3.6681000000000004,2.1739133333333336,4.0347333333333335,3.464733333333333,3.8604000000000003,2.641103333333333,3.547166666666667,3.7775,1.9396033333333333,10.47919,4.065195,4.284495,3.353215,2.75988,2.004055,3.977925,1.6650079999999998,4.075465,4.465605,1.409646,2.67858,1.1524050000000001,2.5517,1.6330333333333333,2.398146666666667,4.862583333333333,3.2681,3.688545,4.990925,0.75848875,1.528242,1.0151,3.613255,10.753405,3.6436333333333333,6.7743,2.0492275,5.19545,4.45334,2.513225,4.86925,0.29036588235294114,0.8266957142857143,4.442485,4.36804,7.438245,2.100145,4.23522,5.82335,4.651925,4.743525,3.483825,4.175645,3.35341,5.63176,3.70518,3.08457,3.1115,2.2106766666666666,1.9316700000000002,1.4260981666666666,2.508626666666667,4.144035,4.74968,1.589302,9.24,1.9825266666666668,2.9309683333333334,1.03391,1.03391,7.1671625,2.96587,2.536575,2.3077775,2.6675533333333337,2.19316,1.0454133333333333,3.6064741666666666,2.57754,0.6437299999999999,1.7232266666666665,3.370102,3.370102,1.11171,2.544583333333333,2.33651,2.589171666666667,1.3995475,1.8006366666666667,4.743795333333334,2.688833333333333,2.65245,1.21202,1.21202,4.1883,5.9413,4.607655,3.203895,3.79896,6.09199,3.07871,2.92278,2.931903333333333,4.00572,1.1753733333333334,3.2875599999999996,2.56465,3.80306,2.11008,4.87743,3.561535,4.34635,3.649645,5.64086,0.9624122222222221,1.93265,2.04565,3.65875,4.239395,3.747325,3.998755,3.26835,2.15713,1.7851125,4.17646,3.324545,3.329875,2.493063333333333,0.8373,3.352905,4.141785,4.755645,1.2319,2.811503333333333,2.33461,1.8963333333333334,1.7208467647058823,1.7208467647058823,1.1362349999999999,1.9725000000000001,1.102582857142857,1.3820999999999999,4.344025,4.462205,0.46329190476190474,3.50756,3.4275333333333333,3.821705,5.49945,0.42020549999999995,9.203165,5.35465,2.649215,3.88713,4.63481,5.31866,5.0911,6.938695,0.7088145454545455,2.62123,5.4426,2.8634033333333337,1.7270475,1.986326,4.616135,5.29918625,2.476010714285714,3.5155666666666665,3.15323,1.78343,4.59144,10.50175,8.163497916666667,3.9576666666666664,4.39075,3.067406666666667,3.188705,3.890525,1.953614,3.15916,3.74024,4.513715,5.0363,5.15399,7.025966666666667,2.2414566666666667,4.094335,4.623435,5.2557,4.952815,7.638631666666667,3.9117375,5.90935,3.465325,2.921845,2.960975,5.95495,3.577755,4.96282,2.128865,3.0779433333333333,3.418475,5.85985,4.081795,3.99876,1.45649,0.92103875,2.5916,0.5800540000000001,4.28724,3.617075,3.49871,2.87595,2.14735,2.9245,2.637975,2.9786840000000003,1.8436340000000002,3.096335,2.7927,2.3597175,2.624425,3.777486,1.2794416666666668,2.775189166666667,5.00245,3.8723333333333336,1.194915,2.70487,3.616389166666667,3.6441480000000004,1.5418875,5.75385,5.50705,1.9718600000000002,2.992706666666667,30.926788158764438,3.464366666666667,1.74155,4.0254,1.62066,2.65192,2.8762933333333334,3.5779333333333336,2.001675,2.8375,1.9136325,4.104565,3.5187666666666666,2.49321,1.50012,2.25218,2.83195,0.3800104545454545,1.162755,2.92658,1.76939,3.383725,1.5418875,2.0987,25.361529888888885,5.1147,4.00948,3.54577,2.65636,2.540225,2.640163333333333,2.38745,3.43554,5.086495,5.1713,1.56549,1.745874,2.14662,2.29849,3.9268375,5.1637,4.80297,4.37483,0.17909617021276594,4.959415,4.78154,3.851675,8.75486,1.0518275,1.0518275,2.931096666666667,2.926915,5.59475,1.8788255555555557,1.0278766666666668,4.40468,1.914535,4.0938,3.83035,3.30967,4.100195,3.942475,4.97542,2.83883,0.7176488888888889,3.222405,2.179260833333333,4.260825,7.868510000000001,4.20972,1.89785,1.89785,7.075442499999999,4.70408,4.23651,5.00715,2.02154,5.158054166666667,1.46229,1.40546,3.0680300000000003,2.0513333333333335,3.00832,2.7339266666666666,3.8131,4.5400975,3.931435,5.4088,2.3524125,2.588425,1.8840575,2.7726,2.494015,2.0162175,2.15894,4.846180833333333,1.8424,3.426565238095238,2.3854433333333334,3.2982033333333334,2.677146666666667,1.9122866666666667,1.448157142857143,0.982791,2.5426699999999998,3.889866666666667,0.6690769999999999,4.647225,1.74094,5.883491666666666,1.97554,1.48053,1.4778625,1.4787366666666666,5.616892222222222,1.8843,3.0912666666666664,3.6301,1.2201725,1.81551,5.03962,3.1500766666666666,1.8775633333333335,3.5655666666666668,2.897126666666667,2.8206900000000004,1.2947153571428571,0.27780166666666667,0.27780166666666667,0.27780166666666667,0.27780166666666667,0.27780166666666667,3.67826,2.7319933333333335,2.61125,3.651533333333333,1.4226866666666667,2.72269,3.3870666666666662,2.3199433333333332,3.470825,3.00058,1.7152966666666665,2.928183333333333,3.22146,2.0520125,2.0043725,3.6588,2.721413333333333,3.780366666666667,5.1509,2.6299566666666667,2.6667400000000003,2.6241,10.90927,4.601295,4.45719,5.0383,4.162325,2.879963333333333,5.03405,4.132265,4.038615,5.357934166666666,3.803355,2.84465,2.1289075,3.30977,4.856042,3.562255,17.747563714285715,1.1166875,4.36575,0.8637844444444445,1.3100875,2.881975,4.57014,4.257955,4.37618,1.6145583333333333,2.360125,4.242955,1.9963766666666667,4.33958,3.0887632142857147,2.5753633333333332,0.637145,2.7855633333333336,4.891015,2.5381,2.3040775,2.164005,19.973850833333334,1.391472,1.4098875,2.5980266666666667,0.2930123076923077,1.82823,2.8669933333333333,1.94417,3.0532766666666666,2.6078,7.548021666666667,1.8817375,2.57335,2.2450425,2.1036,1.6361916666666667,3.345133333333333,3.0716,3.91565,3.1249866666666666,2.0209775,2.6998375,3.1518380555555554,5.03785,0.4032166666666666,3.8317,3.1111866666666668,3.00963,2.00855,3.5912550000000003,3.5677,1.4669366666666666,2.3117733333333335,2.26679,1.4859933333333333,1.7095433333333334,3.44832,3.30436,0.7649316666666667,3.45416,4.741095,4.05267,2.294346,2.294346,3.0441800000000003,4.29281,3.13775,3.3399,2.2328125,0.8688590909090909,4.579515,3.639545,6.0957,3.76002,2.387974,2.387974,1.220015,3.66808,5.26065,4.1871,4.218845,3.01539,2.3218133333333335,4.72946,3.27934,4.25229,2.7248633333333334,2.1700233333333334,4.084464,3.1428966666666667,2.6541033333333335,1.96599,3.24924,2.634725,1.7064933333333334,3.715025,3.01379,4.27203,3.5615666666666663,5.01925,4.246235,6.45284675,4.062625,2.19858,4.427695,2.748125,7.2324850000000005,2.5718799999999997,1.2539833333333334,4.66588,3.8416,4.93917,0.5812135714285714,0.8264866666666667,3.738015,3.63278,1.9565813636363636,4.44128,2.677415,3.0552,9.45653,2.07682,1.265882,3.726545,2.615555,3.395295,4.996795,6.522923333333334,3.1301433333333337,2.087336666666667,2.956773333333333,1.8166900000000001,3.294966666666667,8.594032044334975,0.8899542857142857,1.0179325,4.64372,0.42388733333333334,1.6172725,1.975755,2.891625,3.13275,2.97355,4.343905,2.227235,13.085955000000002,5.021635,2.6488,2.6488,4.167465,0.811175,4.916483333333334,4.09074,4.2351,5.337296666666667,3.49503,5.23675,1.3772966666666668,2.679375,2.679185,2.758955,3.06568,2.65991,3.05481,3.507295,3.659225,3.070695,2.945195,4.14867,4.26596,4.28555,2.8775166666666667,3.3542666666666663,4.822729166666667,4.23263,17.88083380952381,11.396511547619047,3.1911064285714286,0.6777983333333334,1.482357142857143,4.391825,3.531405,3.0946805769230767,2.21257,0.8368988888888889,0.6629666666666666,0.6494257142857143,2.05695,1.5610680000000001,5.164086666666667,3.2489733333333333,0.7114990909090909,3.443375,2.40224,1.5723825,1.753896,6.770926666666667,1.5261900000000002,4.410635,2.83593,2.95725,2.34924,2.65569,2.57065,0.7463936363636364,2.8978,3.1290533333333332,3.9251813333333336,3.08817,7.6177858333333335,3.715945,3.416765,2.57415,3.48019,6.5401825,2.041915,2.4741825,2.4906275,1.5868375,2.4726975,1.96646,2.6707,0.917352,1.35689,1.0626625,2.83901,4.10539,6.1274,5.21185,3.01034,2.297015,2.74295,3.3317433333333333,7.190908333333334,1.1690233333333333,0.361488125,3.13844,2.02504,1.49919,3.4143360000000005,1.241618,1.5655786666666667,3.3704766666666663,2.6587620000000003,1.21621,1.8909066666666667,3.8341216666666664,3.548485,4.508285,3.80552,1.82171,4.751195,3.797275,0.7642623076923076,4.73112,3.906165,4.6155375,3.305236666666667,2.393655,1.31304,1.16708,3.49264,2.67912,3.293385,3.886075,2.61148,2.7951633333333334,3.26475,3.663625,4.464125,2.40231,2.48303,4.34583,5.7155,0.59217875,4.677375,1.75998,3.494615,4.1247,2.121055,3.09833,2.173125,2.00695,2.571195,2.3517375,1.6990166666666668,4.476785,3.67863,1.30144,7.11022,0.99933,3.62927,1.6433666666666669,4.505115,3.87312,3.19706,3.124375,3.96418,8.56574,2.97404,3.66242,3.93532,3.64482,1.6847325,8.00234,3.49525,3.881805,1.396785,4.1506,3.157525,0.984995,1.987678,3.93083,2.13231,4.07931,5.0685775,4.184005,4.67793,2.1971125,5.1676,3.954145,3.6064666666666665,2.40184,1.533732,4.307425,6.03485,4.37934,4.563675,3.087605,2.1265125,3.9353,3.346065,1.163697142857143,4.192725,4.7914650000000005,3.77358,2.77357,3.638355,0.67836,0.67836,4.23813,3.95945,3.69052,2.188495,3.674975,6.26745,0.8425739999999999,3.981825,4.70344,4.717415,4.7671,5.2586,1.826455,3.06794,2.1125975,4.41434,0.68451875,4.05205,4.227455,2.745815,2.9378100000000003,4.31812,2.33258,3.23809,60.01506402380952,3.10967,2.640546666666667,1.67383,3.2652,3.93312,0.83277375,0.9715175,2.139715,2.139715,1.300684,3.322155,2.166845,3.7226195000000004,7.1926,2.9063233333333334,1.2736928571428572,1.3024866666666666,2.67736,4.0175775,0.8399599999999999,1.893875,1.364712,1.9451875,4.161045,4.05793,3.160625,20.781628833333333,3.1518,3.92695,3.282405,2.2655499999999997,2.858585,3.31507,2.560125,5.13409,1.4271,4.18236,3.308275242063492,5.8627352777777775,1.92039,2.68122,1.891635,4.408115,2.387446666666667,2.1674825,2.197756666666667,3.5019205555555555,3.36619,3.39227,3.77504,4.410225,2.449625,2.553175,3.045735,2.782395,2.9143805555555558,2.2146,2.13108,3.545415,1.1983516666666667,4.11017,4.67681,2.55486,4.858325,4.989225,4.82752,2.0974933333333334,2.44424,2.7086,2.74961,4.095285,3.428945,4.550575,0.7473357142857143,3.892438666666667,2.99769,3.99136,2.3145875,1.7739660000000002,4.265216666666666,1.119911111111111,3.098975,4.238175,1.097888,3.581295,3.37347,4.553905,6.3074125,2.223225,2.84056,2.603493333333333,3.8098333333333336,3.03788,2.673052666666667,3.6759,2.5000833333333334,2.4860366666666667,1.3703533333333333,2.04326,2.04326,1.9844966666666668,2.1205266666666667,1.7076766666666667,2.5676,3.821065,5.71475,4.273855,1.642295,4.246685,3.89648,3.494295,4.16516,1.9679575,1.96187,4.65856,1.933295,4.411656666666667,3.659465,3.565345,2.4380966666666666,3.7236249999999997,3.215525,3.04938,3.504595,0.14560714285714285,2.330763333333333,7.6552299999999995,1.520524,3.48282,2.938725,0.9996114285714286,1.1847166666666666,1.905895,3.895,2.962455,7.14278,3.57776,3.797655,2.921735,2.724205,3.432125,3.428365,4.14119,3.34577,2.88489,5.49255,3.686715,4.145125,2.4784966666666666,1.9548425,3.458095,4.680255,2.628,2.791815,2.18118,2.703345,5.16755,3.71149,2.548285,4.66015,5.15535,2.73017,4.09323,3.944835,3.63251,4.481625,3.40402,3.37247,4.85743,4.645395,4.9951,5.1621,4.33299,5.21973,4.532275,4.108565,1.334982,6.6174,2.43233,4.51588,4.036815,4.023175,3.0599433333333335,1.9680833333333334,2.30879,2.54285,1.06972,3.4887333333333337,3.8918666666666666,3.17407,2.00378,3.69653,4.105975,2.70486,0.5625841666666667,4.44314,4.597605,5.1028,4.847765,3.70148,4.670605,4.861195,5.2608,1.3855555555555557,0.9650461538461539,2.88046,5.2368,5.8127,0.496086875,2.960015,2.497673333333333,3.274445,4.44411,4.0206333333333335,1.9678025,5.3954,4.130875,4.362885,3.088025,6.4614,4.93599,6.8583325,0.5349108333333333,4.17343,0.835958,2.443585,4.136233333333333,3.2214766666666663,1.2825366666666667,2.3437799999999998,4.28587,3.51153,4.36546,1.5576366666666666,2.01797,3.78272,4.45992,4.138155,3.554285,1.661456,1.1822570000000001,6.12585,2.2161425,7.850625,4.563675,3.617965,2.1424925,1.5955775,4.270095,4.693505,1.7830199999999998,2.39415,2.4859625,2.330763333333333,6.697240000000001,3.072906666666667,2.866186666666667,3.5756066666666664,4.137615,2.032826666666667,3.398815,6.8804525,4.369485,5.02235,0.49593454545454546,3.263515,3.981405,4.59365,3.8535,4.605165,2.99679,2.752635,3.282345,2.89617,3.5780975,2.04652,5.676185,4.93398,4.97175,3.96881,3.40849,3.3348133333333334,2.345195,1.3231675,0.9091925,2.84018,2.475405,1.093,2.6273766666666667,4.95007,4.671605,3.647835,4.09559,16.858537976190476,3.990945,4.53093,3.937835,0.7058741666666667,4.95475,4.726395,4.08558,4.978335,5.1361,2.66435,3.636755,3.309245,1.50929,3.172745,4.73488,3.407166666666667,1.508202,3.72018,5.00345,4.0235,4.88127,4.833345,5.33935,4.50806,2.702123333333333,4.134225,4.068655,2.607465,3.055493333333333,3.0390766666666664,1.6124020833333332,4.6417,2.727662857142857,2.120906666666667,3.90654,2.027675,4.418305,4.0441883333333335,2.1604,2.712605,4.68203,3.72372,4.37794,4.587025,4.88865,4.644841,2.97026,5.45355,2.881125,3.67598,4.06901,1.5554679999999999,4.422175,1.0608216666666668,4.401875,2.96745,0.9523528571428572,3.8238,2.07834,6.574695,2.48249980952381,2.48249980952381,2.48249980952381,0.6603383333333334,1.1820016666666666,1.877085,3.48544,5.27888,3.493333333333333,1.900435,2.176595,1.6441866666666665,3.860165,2.398035,0.3983638461538461,1.66118,2.138265,2.841445,1.92163,2.53781,2.35949,2.08993,3.93197,3.107666666666667,3.73168,2.90271,1.87782,6.63922,1.931175,4.39401,3.87077,6.160243333333333,1.6109466666666667,3.595385,3.78209,3.776615,4.23792,2.745985,1.822145,3.877375,5.733276666666667,1.982955,3.61515,3.10665,1.9077625,4.71563,4.38946,2.5164233333333335,2.22027,3.617055,5.414893571428571,5.96855,3.106015,2.3831,2.767495,2.989995,2.82766,4.59045,1.3057825,2.746295,4.72241,0.779595,3.15451,3.9853,3.754235,3.064205,2.38272,3.078525,2.058055,4.62722,7.8718683333333335,4.377585,3.27932,3.363885,1.0103425,4.39082,2.149935,4.284855,5.63192,3.95108,4.309035,11.373315000000002,4.757625,4.01202,1.486405,0.6932524999999999,2.779705,3.855175,3.480705,3.635025,2.2969166666666667,2.2979566666666664,2.1131266666666666,1.1391866666666666,1.1391866666666666,1.94196,2.4016733333333335,2.2024133333333333,2.3359833333333335,2.63388,2.9083433333333333,2.3862733333333335,2.9372633333333336,1.4393099999999999,2.5291433333333333,2.1633066666666667,1.9915366666666667,1.51619,2.479833333333333,0.7045750000000001,9.666505416666666,0.7045750000000001,2.9055666666666666,2.0731800000000002,1.8561166666666666,4.434055,4.28902,3.946295,4.3623,2.1789366666666665,2.97593,3.2087719999999997,2.2043233333333334,3.0868033333333336,2.8287366666666665,2.6109666666666667,2.4684266666666668,1.6750066666666665,5.68815,6.164074952380952,3.4358,3.5909333333333335,3.3110666666666666,2.7158433333333334,2.328866666666667,1.09273,3.6676333333333333,3.610466666666667,4.030245,6.21505,4.2672,2.8523633333333334,3.4603333333333333,2.988136666666667,4.189197777777777,4.22931,2.6156,3.50684,3.2723566666666666,3.08419,4.764285,3.5284999999999997,3.480475,5.533065,2.106873333333333,2.5748933333333333,1.56958,1.4180400000000002,5.005883333333333,3.4281966666666666,2.43859,2.0783133333333335,2.0729333333333333,4.41862,3.69676,2.698265,3.3901,3.10858,3.5286000000000004,3.4858,3.594333333333333,3.1632366666666667,0.53967625,3.7629,2.467843333333333,2.6299266666666665,3.663705,4.432125,4.06209,5.2946,2.677645,3.849305,1.168445,3.017023333333333,3.017023333333333,4.15778,3.40202,3.76581,3.671395,1.873835,3.779565,3.868835,1.2405414285714287,3.683155166666667,3.0571261904761906,2.1652633333333333,0.35416,4.183215,3.055345,6.743995,3.03396,6.26615,3.336765,3.81507,3.8328,1.680655,2.930925,3.94951,3.323905,3.5064333333333333,3.1531033333333336,5.515029999999999,2.072945,0.99913125,1.8698366666666668,1.5800333333333334,5.61565,2.36092,2.4547733333333333,1.5255375,4.35675,3.91662,3.869325,0.685547,4.02193,3.95205,2.54243,2.347043333333333,2.5868800000000003,3.221824444444444,3.9107466666666664,1.5432033333333333,0.6398842105263158,0.7945571428571429,3.570266666666667,3.89014,5.928285,4.78329,4.37314,5.29525,1.3657428571428571,4.1247,2.21731,0.98782125,5.3999,6.3629,2.308435,4.811995,4.136,6.5688933333333335,3.9497666666666666,6.5857833333333335,3.7153,2.5780970833333337,5.9686,10.223444993589744,2.55882,0.649397,3.320535,4.054985,2.132235,6.25315,3.756445,3.62146,2.681243333333333,2.681243333333333,6.1061,3.0905,3.987165,4.854885,3.662638666666667,2.341204,1.10080875,4.916915,2.68539,5.28890625,3.5622,3.91557,2.68296,1.9373825,4.31185,5.05465,3.6405333333333334,3.99315,4.344935,27.43842857142857,1.7893775,2.64485,2.2944725,1.7180166666666665,2.6350533333333335,1.0594285714285714,2.793066666666667,3.0365933333333337,3.4776000000000002,3.0024866666666665,0.618766923076923,3.105233333333333,3.53481,2.89517,3.33197,3.547045,5.7782425,4.71954,3.7249,3.509805,3.7607850000000003,3.824655,3.6822,1.709105,1.0011083333333333,1.4311366666666665,2.28668,1.5073166666666669,2.7665966666666666,2.469726666666667,2.51552,2.4414233333333333,2.70308,2.048995,1.83097,2.880895,4.352245,3.619215,4.093445,1.475932,3.4308333333333336,2.46889,3.606525,2.1492299999999998,2.60208,2.361955,1.4552466666666666,3.958165,6.61294,2.780115,3.67209,4.00309,2.5911,3.365594166666667,3.4791000000000003,3.32169,4.52622,0.3403523680823681,0.3403523680823681,4.85856,5.19225,3.067585,2.93226,5.41035,4.243735,0.6510800000000001,4.98842,4.66036,3.70856,6.4137,4.655935,7.57233,14.272391666666667,12.69422282051282,4.35647,4.34701,2.4410766666666666,0.5692461538461538,2.5623033333333334,4.615055,1.47621,4.71552,3.5839666666666665,2.8037766666666664,2.10239,2.060026666666667,4.995255,4.908395,9.024363214285714,5.2387,4.05743,7.684123825757576,3.26769,3.600433333333333,1.5319725,5.464952500000001,1.9010525,2.4477066666666665,2.7445299999999997,0.22687,3.02392,3.364145,4.6838025,0.785068,1.2012233333333333,4.004905,0.5894510000000001,0.5894510000000001,2.98753375,3.5307999999999997,3.214026666666667,3.93354,4.245095,5.79535,3.837105,4.10643,2.818115,3.191803333333333,2.52014,0.9440416666666667,2.98584,2.864715,3.022785,7.417859999999999,3.0032,9.757025,3.197675,5.4993,3.074655,2.249945,2.56755,2.748125,1.786775,2.31343,1.7922125,3.380515,2.47099,3.9749225,2.829675,4.0253499999999995,4.0253499999999995,2.8246783333333334,2.8246783333333334,8.747912166666666,2.4931766666666664,0.8205310000000001,2.6301099999999997,2.4838366666666665,2.5349166666666667,3.9749225,1.917606,1.9340160000000002,1.5361319999999998,4.494075,3.73872,1.7219125,4.522815,4.183825,5.695261111111111,6.405841666666666,2.2280466666666667,3.965285,5.97188,3.631885,3.038705,1.9599399999999998,3.201375,3.288362727272727,4.14246,5.107620833333334,7.2395499999999995,3.431825,2.98777,1.16524,4.463115,4.029619333333333,3.574065,3.6913408333333333,4.2309,2.428135,2.43046,6.008335000000001,2.70508,1.1962139999999999,5.33926,3.72577,2.4064633333333334,5.124,2.4064633333333334,2.84741,3.33773,4.788705,1.037747142857143,3.902992222222222,4.51925,3.573465,1.3222833333333333,1.6875475,3.57098,3.736995,2.42507,6.378991666666667,4.037455,4.04878,4.16149,4.3375575,1.2739725,3.859655,2.454125,3.68528,3.64352,3.8585,4.772785,3.09246,3.99833,4.986425,1.9863296666666668,1.8601725,3.066073333333333,3.7776,3.6514666666666664,2.8133233333333334,3.4598,3.163816666666667,5.78925,3.41687,3.67844,2.870245,1.85925,3.5081,2.0775833333333336,3.105035,3.197165,2.894585,0.68451875,2.12828,1.7898933333333333,3.319405,1.7858720000000001,3.5289729999999997,4.541095,1.226514,3.0997275,4.493375,0.8330460000000001,1.3165633333333333,3.32948,3.88773,3.284805,1.94126,1.6876466666666667,3.487415,2.5649508333333335,1.7152900000000002,2.888565,1.887065,1.188496,1.37928,6.465484999999999,3.233695,2.29451,2.368415,2.3697675,3.88283,0.88904375,0.3446885714285714,0.7659185714285714,4.8282,1.7330040000000002,4.73045,2.05841,1.6155434285714287,2.7940825714285715,1.1785391428571428,1.0519134285714287,0.744782,0.5503671428571428,2.5390775000000003,6.48195,3.07885,3.54979,0.359675,3.804155,17.88256357142857,2.79288,7.144497098484848,1.07757,1.07757,1.07757,1.07757,5.875155,4.41789,4.829065,2.2374466666666666,3.16459,4.336905,5.4017,3.940655,3.551275,4.19979,3.909225,3.55874,3.7592966666666667,4.12351,5.0352,4.163925,4.718635,3.34042,4.22084,2.703326666666667,3.203285,3.38649,3.69907,3.72895,4.239105,3.090996666666667,2.536675,2.4916633333333333,3.923075,1.1573821428571427,3.652065,2.3469933333333333,3.2189113333333332,4.184005,4.492885,3.121955,2.932955,4.413735,3.2079,3.175975,5.3712,4.805315,3.31886,3.38913,1.7119240000000002,1.7119240000000002,1.5194625,4.80422,3.82149,5.484605,5.1618,3.5710466666666663,6.61705,4.936215,2.1729225,9.35285,5.47765,6.4110375,4.574415,2.8328233333333332,2.8904,0.2563165517241379,0.84416875,3.6584719999999997,3.52684,4.696955,3.00643,5.843188333333333,4.86753,0.5675842857142858,2.75854,0.540169,1.7523983333333333,3.48375,2.524725,3.67138,3.78691,3.233605,3.43943,3.417065,3.687405,3.47207,3.649255,3.48484,2.319585,1.7523983333333333,2.86474,2.2422625,3.723755,2.282075,4.01657,3.602355,1.6847325,4.365325,3.39839,1.2859416666666668,5.06815,4.705685,4.303585,2.7065333333333332,3.0041333333333333,4.115565,1.9286166666666666,1.378674,2.73063,2.5337733333333334,2.59009,1.9761466666666667,4.673735,3.216265,4.979285833333334,3.8126671428571424,4.88114,3.868705,1.6528459999999998,5.26635,4.290285,5.63605,4.198225,6.97061,1.680195,4.79525,3.544715,3.293935,1.80764,1.7177866666666668,3.948755,4.43822,2.9720566666666666,2.6327599999999998,3.4797900000000004,3.4797900000000004,2.6762833333333336,3.16368,3.26987,3.95698,3.62634,0.7425476923076922,3.15082,4.51598,5.090226944444444,2.90017,2.999525,1.74533,2.846615,3.394675,2.249265,4.54911,2.930755,4.87103,1.8326866666666666,1.0198363636363637,6.23474,3.63185,3.0116533333333333,3.039006666666667,1.8105,30.289316166666666,3.69804,3.221125,5.9187,4.590075,0.8449,6.6952300000000005,1.8280225,5.5807,1.3775416666666667,4.418375,5.088053333333333,3.722345,3.25233,2.123785,3.0771033333333335,4.98807,2.0081825,2.769066666666667,3.61467,2.538685,2.637215,6.0173,2.20046,6.5019,1.09134875,4.421555,3.5348,4.01909,5.26785,2.96464,2.39218,4.124275,4.52475,3.7301599999999997,3.7301599999999997,6.21185,2.304265,4.320505,6.753111666666667,3.32326,4.13094,3.229155,5.2755,3.504535,4.144625,1.3634375,2.358975,4.352675,4.34376,6.17295,4.343595,2.305345,9.732353333333332,2.611595,3.70356,1.7437,3.58555,2.4203466666666666,2.6187133333333334,1.9648995833333331,1.1908066666666668,2.5348566666666668,0.9433871428571429,1.04923,1.04923,1.04923,1.8355133333333333,0.53694625,3.88936,1.1243833333333333,2.0753233333333334,0.870065,1.8360766666666668,2.683536666666667,2.05074,0.73521875,1.6535766666666667,1.47922,2.441413333333333,1.645206,1.645206,1.55848,1.6467366666666667,0.9531599999999999,1.6895300000000002,1.5734466666666667,1.1056733333333333,2.819315,2.099635,6.037,1.36836,5.8399,17.63409925,6.61808,3.45332,3.69345,3.4156333333333335,2.8010966666666666,2.6741566666666667,3.0059299999999998,0.7223625,0.9967729999999999,0.9967729999999999,0.66776875,2.3425133333333332,3.622365,3.432545,1.511182,4.83392,3.991345,2.515965,3.82077,5.22795,4.02871,4.122745,3.6057333333333332,3.18087,3.56259,5.7526,3.087673333333333,4.86444,0.514306,0.514306,2.48319,2.7395,4.84924,3.642695,3.903025,4.83001,7.687799999999999,7.656090000000001,3.715895,2.311865,4.355515,3.411565,2.5284766666666667,2.39078,3.448985,1.2663566666666666,3.615745,2.4897,1.623165,3.5783,3.70103,2.0559425,5.107620833333334,1.5467975,3.486133333333333,3.21754,1.0301371428571429,3.6154666666666664,2.7526499999999996,4.38714,1.1213533333333332,1.715705,2.29113,2.0680175,1.7152025,2.56045,1.9069625,1.9245725,4.20964,4.37559,2.445175,1.76429,1.48628,3.6683333333333334,2.031006666666667,2.56305,4.722085,7.3132,2.878945833333333,2.98686,3.51628,3.596795,2.397165,5.0184,3.91402,3.1177,1.3849375,4.76749,2.30711,3.270016666666667,2.52755,3.63779,5.1522,5.7408,2.1985066666666664,2.6931,2.6557066666666667,3.5246999999999997,1.9789833333333335,1.523234,5.52525,3.3966666666666665,2.2084945454545455,3.2661466666666663,3.0978966666666667,2.42169,3.159883333333333,3.219113333333333,3.4846333333333335,5.3853,4.218135,2.9613899999999997,4.82944,3.54268,2.332485,3.52485,3.833365,4.348005,6.0675825,1.832394,3.942565,2.43034,2.51024,3.660185,0.5484125,2.378815,2.294525,3.315375,2.7153,2.206665,2.76858,0.572918,2.7100066666666667,4.51475,2.4763275,4.293895,2.4293333333333336,3.992865,1.9535725,4.582245,4.49175,2.08944,2.752825,6.9966,3.81154,4.465235,4.941185,7.216730795454545,4.07454,4.22549,2.1278425,4.410485,2.872345,1.8776666666666666,1.9451975,2.0614066666666666,1.0005857142857144,2.598806666666667,2.3652133333333336,2.642063333333333,3.2187333333333332,1.7696359999999998,3.30103,1.9035166666666665,4.24143,4.9154,1.03523375,1.8261533333333333,2.5273666666666665,2.8591200000000003,1.9705066666666669,1.1039666666666668,5.482855000000001,2.142315,2.6583966666666665,2.6266833333333333,2.46922,2.7461933333333337,3.15362,2.23579,2.6537333333333333,2.16507,4.04199,3.399405,4.000235,3.242703333333333,3.0910766666666665,0.683664,1.8181233333333333,2.119025,1.9433533333333333,2.5700933333333333,1.15703,2.717473333333333,2.9789733333333337,3.51427,1.9323466666666667,3.34191,3.16745,5.0009,3.17883,0.6056891666666667,2.1117,2.75731,3.3443,0.6985463636363636,2.7334766666666668,3.4472000000000005,3.0581633333333333,2.9846033333333337,3.1996833333333337,3.75383,3.7764666666666664,3.0693533333333334,2.10732,5.7062,5.087,5.4121,5.56895,5.73615,1.8024966666666666,3.30616,3.7457,3.280056666666667,3.0575500000000004,2.5973266666666666,4.208433333333333,3.498333333333333,2.976103333333333,13.928345,4.422345,1.15042,2.7030666666666665,1.5061820000000001,3.3069166666666665,3.103783333333333,2.303803333333333,5.747865000000001,6.4722035,2.094743333333333,0.832401,4.152985,3.4246,3.086215,4.86297,5.5083,5.78905,4.869265,3.5315,1.9526675,6.500105,1.16524,6.432102499999999,4.559565,2.2590566666666665,3.780405,7.259378333333333,5.79115,2.18692,1.3993783333333332,2.139665,6.80668,1.5418875,2.8974433333333334,2.5718383333333334,4.190141944444445,5.8244,4.4218,6.4089,3.52643,5.19185,3.852205,8.66424,4.87938,5.6929,2.31719,2.6928,10.964788333333335,3.488345,2.304885,2.4167666666666667,1.5465900000000001,2.6812566666666666,3.8744333333333336,0.68199125,1.1027419999999999,1.0865785714285714,3.03498,7.1062,3.0433786666666665,1.3438666666666668,4.434555,4.151305,0.5834349999999999,4.532015,4.25106,5.01715,3.38626,3.19693,2.7392833333333333,4.18794,9.998785000000002,1.835955,3.93884,3.961455,4.289055,3.693605,0.8270575,3.6296999999999997,4.1029333333333335,1.7826233333333334,2.42436,2.3091733333333333,2.566516666666667,2.0357133333333333,2.1525866666666666,2.175515,6.17168,4.927495,3.457655,4.918971666666667,1.7530766666666666,2.3574575,4.67081,4.5348,4.66246,4.062,4.508085,4.772155,1.7119240000000002,3.81326,7.843856666666667,1.3161416666666665,1.6879566666666665,2.46057,2.30878,2.9169533333333333,4.7416685,0.7945571428571429,2.424895,3.33571,6.60395,4.48156,2.17068,2.8788199999999997,1.9285225,0.5355025,2.466795,2.889725,7.76908,4.33724,4.27294,0.9072100000000001,4.809233333333333,9.098009583333333,10.529663333333334,3.325025,1.2185275,3.628285,3.471625,2.6023433333333332,5.095884666666667,4.643185,3.913935,1.9133025,3.8251666666666666,2.2881133333333334,2.6033399999999998,0.7747827272727273,0.374784,2.498845,3.53145,2.0924868333333335,3.40319,3.033853333333333,3.774785,5.5313,1.501496,2.9662733333333335,2.1120349999999997,2.1120349999999997,2.302425,3.143385,6.6618,2.636303333333333,2.5533433333333333,3.4227333333333334,3.529866666666667,4.539205,4.634485,4.10425,4.119765,4.246575,4.251595,7.1834,7.8306466666666665,1.967115,2.2363566666666665,3.0077266666666667,0.8973650000000001,0.6989774999999999,4.368835,2.292215,5.1148,2.9540933333333332,3.0574666666666666,1.71539,1.5113025,4.07599,4.26373,4.36932,2.062133333333333,1.3346099999999999,2.7227933333333336,2.0019666666666667,2.544853333333333,1.1326214285714287,1.1326214285714287,2.7439033333333334,5.1061,3.03376,2.99621,3.34577,1.967905,19.79760528787879,3.7393,5.605365,4.49373,3.88588,3.703125,3.63922,5.71935,6.076772500000001,0.90335,0.90335,0.90335,2.785353333333333,1.7312857142857143,3.3240466666666664,3.99532,3.804045,3.173595,4.23442,4.575305,0.7971333333333334,1.99784,2.1256633333333332,5.9313210000000005,3.302591,4.043836,4.973335,2.121055,2.01646,2.315656666666667,0.51536875,0.794292,1.99774,2.14033,2.88757,13.51023,2.5432,5.319,0.7566785714285714,9.16968,5.77155,3.75495,4.27251,2.70905,5.4063,2.70905,2.846548,3.321945,3.79238,3.38707,4.10044,4.23814,3.42232,6.34685,6.569996000000001,1.7778266666666667,2.364,2.77435,26.30268589189189,1.4947620000000001,6.28775,3.8587620000000005,3.893345,4.404965,4.3453,2.66002,2.856545,2.403995,6.81715,7.12265,4.48596,4.621265,4.19846,1.9053825,1.92481,4.212975,0.28180076923076924,0.28180076923076924,0.28180076923076924,0.28180076923076924,4.211035,3.145545,0.9595166666666667,1.81085,1.1676666666666666,4.56356,2.480026666666667,2.38492,7.045344999999999,3.094996666666667,0.1775248275862069,20.483599833333333,4.6700816666666665,1.76681,1.3070352857142857,2.1403600000000003,1.974822,2.1069725,4.670275,4.233675,3.50427,4.44196,2.1982733333333333,7.5764375,2.737715,1.96548,4.20181,6.04385,8.569906666666666,4.397045,0.3017560975609756,3.559745,4.20066,2.7776366666666665,1.9654275,2.9602166666666663,1.5875016666666666,1.5875016666666666,4.142325,5.6866275,11.649923333333334,9.366025,0.6472833333333333,2.52078,3.703665,3.19696,4.996975,3.247795,1.29911,1.29911,3.083385,3.70215,2.75815,3.508165,4.563755,5.3914,6.49863,2.30536,4.749125,4.346655,2.62248,2.9440766666666662,3.001523333333333,4.891875,4.130425,5.6841,3.90078,4.425135,3.66741,4.26099,4.2526,5.5072,2.5809533333333334,3.128773333333333,1.105156,4.242355,4.129035,3.9588,1.6663160000000001,1.7667333333333335,3.3712,2.8154266666666667,2.22963,4.288961666666666,1.6075416666666669,1.778,2.761696666666667,2.300213333333333,2.207473333333333,1.6846866666666667,4.2535,3.2252466666666666,3.967966666666667,3.1866166666666667,2.09611,2.6300766666666666,1.91516,3.093075,2.41225,38.24112025,2.1602905454545454,2.1602905454545454,2.4890133333333333,2.5084833333333334,2.0565633333333335,1.6622700000000001,2.8712166666666668,1.7639166666666668,0.8357230769230769,4.9483,6.705285,4.409385,4.06005,5.43035,1.9173,4.28914,1.727078,5.4396,5.1114,5.61545,4.173505,1.709105,3.999145,4.162735,4.499645,4.35944,5.31105,4.003415,2.958015,3.4319666666666664,2.7633799999999997,2.033375,1.74776,4.482445,2.5250566666666665,3.80879,3.80879,2.2324366666666666,1.5124199999999999,2.88597,2.5056333333333334,2.83329,5.15543,2.5557366666666668,1.1866566666666667,1.1866566666666667,2.3605733333333334,1.96295,2.6638933333333332,2.6799766666666667,2.4474533333333333,2.4265066666666666,2.31797,2.2628755000000003,3.0232483571428572,1.564940357142857,0.7603728571428572,62.83871540773809,2.52468,3.4575333333333336,2.309012,0.865994,3.6830246666666664,1.606332,1.606332,3.3989,3.0148466666666667,0.8045675,3.19856,5.274436666666666,3.548633333333333,2.3135133333333333,2.885673333333333,2.1300266666666667,2.6249839999999995,0.288523125,3.060983333333333,0.767334,2.52554,1.260194,1.260194,3.0503733333333334,2.11664,2.7706933333333335,1.6889066666666668,3.8623666666666665,1.6889066666666668,2.1331933333333333,2.606996666666667,3.02138,1.315184,1.315184,3.0212466666666664,1.4354933333333333,3.1579766666666664,2.15246,4.670475,3.88797,11.87823125,7.11336,3.04084,2.634545,4.04055,5.45375,5.5243,2.824655,3.860015,3.76317,2.261136666666667,3.908505,3.316316666666667,2.6887266666666663,4.8309,2.2134133333333335,1.0583257142857143,3.678161666666666,2.8466166666666664,2.96056,0.7914271428571429,2.583105,3.45572,4.04885,4.278465,6.68735,1.9963766666666667,1.926668,4.181615,4.68532,2.362055,2.52977,1.9459,2.058829333333333,0.840876,5.1165,4.71536,3.80425,3.86515,3.162803333333333,5.43185,5.16415,2.72194,1.7239033333333333,0.5215113333333333,14.701179666666668,0.5048581818181819,0.5048581818181819,0.5048581818181819,3.0453233333333336,3.885666666666667,0.5048581818181819,6.69356,4.21141,0.733321,0.733321,3.469,3.226485,2.98539,4.58862,5.04535,4.354374,2.3769750000000003,4.897628,3.32781,3.516904821428571,4.61506,2.85167975,2.46535,2.417155,2.781925,1.6223175,3.2647508333333333,2.9532866666666666,2.2939025,2.0541675,1.8679575,1.8143333333333331,1.607795,2.733625,1.0796177777777778,2.4531975,0.5956785714285714,5.10475,1.77445,0.6887833333333333,2.002125,7.898106666666667,2.591495,2.0772955,3.3627225000000003,7.31471,2.46718,4.2083,3.08692,6.04342,3.359785,3.61401,3.99985,3.166725,3.06033,4.253441666666666,1.1528185714285715,3.92711,2.4183833333333333,2.5184533333333334,2.73723,2.333005,2.15754,1.2706375,5.7637,0.9646727272727272,5.037,5.53165,5.2205,5.24695,3.7756333333333334,2.3872233333333335,2.2082,2.91146,3.0645466666666668,2.574935,3.748666666666667,2.7807,4.692325,1.9366040000000002,40.15960968253968,4.661615,2.4369466666666666,2.2688466666666667,2.81314,1.5731666666666666,6.016665,3.61577,2.476366666666667,3.5536999999999996,2.2388600000000003,1.7060325,5.25085,0.79,4.414509285714286,1.3081814285714286,3.4430666666666667,3.2943700000000002,2.637163333333333,1.379,4.449160666666666,1.67381,1.67381,2.3187666666666664,2.7937458333333334,3.3255733333333333,3.3608333333333333,1.4502300000000001,2.823726666666667,2.67281,6.270251833333334,2.802653333333333,4.040376666666667,1.4400266666666666,1.4091333333333333,2.9986866666666665,0.9116139999999999,5.213408333333334,3.4288333333333334,2.891716666666667,3.508233333333333,2.723406666666667,2.711983333333333,3.3147800000000003,1.7473666666666665,2.3697675,2.4801766666666665,3.5285666666666664,2.395706666666667,3.6282666666666668,2.0010933333333334,0.596854,9.988563333333332,2.716583333333333,5.37465,5.1898,2.8046100000000003,3.1076,1.25181,2.2256233333333335,2.294605,1.25181,4.244605,0.466509375,0.466509375,1.173575,1.173575,0.9260525,0.9260525,2.238365,2.921355,2.257915,1.514525,1.807335,3.69953,2.941825,4.608175,5.56675,1.8591539999999998,4.31648,2.54141,4.594057692307692,1.6325725,1.6325725,2.184455,1.657648,3.7170324999999997,2.0112,4.19342,1.6145583333333333,2.585375,0.5552715384615385,1.0810042857142856,2.0739975,2.228035,1.799465,1.334035,4.489025,4.356815,1.99245,2.4009666666666667,1.31519,0.7038025,2.1622666666666666,3.415795,2.6431566666666666,4.504915,5.04,4.85247,3.81907,6.42596,1.512465,5.895985,1.757255,4.534905,4.794345,5.547734,3.4021000000000003,2.275585,1.7759975,1.9716339999999999,1.9716339999999999,2.46295,2.46295,4.25397,5.8053,0.911064,3.794185,3.097005,3.372755,2.4429866666666666,1.397045,2.827833333333333,4.230525,4.02132,1.8025600000000002,6.72585,5.2809,1.96314,1.4367625,3.978375,3.990053333333333,3.540375,3.63698,3.824875,0.6641635714285714,3.8696333333333333,3.5240333333333336,2.7100766666666662,2.8699366666666664,2.1792666666666665,3.7532333333333336,1.5240142857142858,1.5240142857142858,1.5240142857142858,3.0803499999999997,3.0229366666666664,3.32742,3.3805767976190477,2.3577525,1.256522857142857,3.3271333333333337,3.2123899999999996,1.3652057142857144,2.7237733333333334,2.6603,1.2463585714285714,2.7384866666666667,2.8609566666666666,2.9129566666666666,2.5358666666666667,2.5207,2.002765,3.1368466666666666,4.677535333333333,4.17688,1.0132999999999999,1.435558,0.5438080000000001,3.5193,8.765889999999999,2.8869133333333337,3.186605,2.5604299999999998,4.2088125,1.8692925,7.677936666666667,6.8067366666666675,2.62257,2.435701714285714,3.974255,4.49423,1.548324,1.281122,1.447584,2.050155,10.5759,2.5245333333333333,3.1348833333333332,2.982736666666667,3.80967,2.1155266666666668,1.09102625,4.77098,1.0967816666666665,3.2881534615384616,4.627525,3.26823,3.293286666666667,3.063815,4.950275,1.1724533333333333,1.960375,1.8781133333333333,1.8781133333333333,3.81854,5.7862,8.3110125,4.329125,3.454935,4.80651,1.8353075,2.3530491666666666,4.58829,3.37699,3.93184,1.5430766666666667,2.87031,3.44595,3.78138,2.45221,3.9815,3.639925,4.00821,4.054735,3.81591,3.780625,5.54075,3.238906666666667,2.477603333333333,4.330525,2.97264,3.830725,1.93588,2.446295,2.47056,6.20615,2.46477,3.2458945454545454,1.6791125,2.52399,3.29544,2.1799475,2.074035,0.9138383333333334,0.9138383333333334,1.7954475,3.5469563636363635,4.087835,2.890356666666667,4.479455,2.9750766666666664,2.4758405714285714,0.98086,3.199085,1.4736425,4.02049,4.143385,0.92764875,1.8655875,3.910665,2.9918449999999996,1.6202625,1.6078933333333334,5.13387,1.0357933333333333,2.739085,3.277925,2.77854,2.428405,2.825958,2.0501,1.0151975,2.87277,2.98924,3.40347,1.5151266666666665,1.5230499999999998,1.770195,4.39429,2.18111,4.457505,4.56297,4.51175,6.37105,5.24785,4.055235,6.08394,3.9868176190476188,0.8150363636363637,2.83919,4.433035,4.252925,0.49786818181818177,0.8494360000000001,2.969135,4.201405,4.67688,4.277535,3.325708214285714,2.775815,4.54391,1.7552119999999998,2.4146,4.51843,4.197105,3.56267,2.88777,3.66205,4.7238,2.891145,5.03958,0.919481,3.2569,2.796855,4.46145,4.502675,4.472765,2.24686,2.61173,2.893155,1.9021299999999999,5.10085,3.425835,1.3804785714285714,2.75029,3.9459325,1.43608,5.915150000000001,1.903434,2.573566666666667,13.900394959739092,2.7458333333333336,1.46391,1.5833583333333332,2.0921,5.449526666666666,1.661456,5.797648166666667,0.6338576923076923,3.278586666666667,4.205545,7.684915,2.4412533333333335,2.873473333333333,2.873473333333333,4.54477,4.34854,3.50683,3.32814,4.778655,5.0808,2.463485,3.2393033333333334,4.60182,1.235685,2.60892,4.325295,3.849845,3.39401,2.3527466666666665,3.69386,3.43255,6.289901666666667,6.23355,0.666071,3.755865,3.334935,3.922966666666667,4.250305,3.906775,3.867325,1.4210720000000001,5.09585,2.35589,2.76401,4.22621,4.387965,4.51004,0.8534815,2.6628866666666666,9.400527666666667,1.5076850000000002,2.146141948051948,2.31337,3.89973,3.551145,3.25426,0.6562963636363637,2.3173825,1.73605,2.20025,4.197675,5.327706,2.684606,8.723265,2.256273333333333,2.66554,1.08529,4.484415,5.21455,2.12496,5.357934166666666,3.248235,3.190455,5.45625,4.250245,4.86311,2.24278,1.4743175,1.4743175,2.77708,3.242545,4.9041,1.50044,6.179251666666667,1.3304533333333333,3.62944,1.3252433333333333,8.692097500000001,4.351795,2.652165,4.2151,3.724565,3.805685,1.1580883333333334,2.0272475,3.5850666666666666,3.0314,3.5637000000000003,3.9026666666666667,3.782605,2.83526,3.17051,3.35551,1.61406,2.5494533333333336,1.9580399999999998,2.9269533333333335,1.8750566666666666,5.071323333333334,3.2508866666666667,1.8393300000000001,2.7167333333333334,3.246905,3.079225,6.41285,5.91895,3.012305,3.632485,2.8885,3.101975,2.805795,1.29851,1.000384,6.619625,2.96338,5.8501,4.90927,6.60105,2.91535,2.8016133333333335,6.65995,2.501635,0.39894,5.7431,3.25407,3.85966,3.4093999999999998,1.32364,4.028595,1.0514860000000001,4.47076,0.9011275,1.3224833333333332,2.77573,2.3875033333333335,2.813425714285714,3.593165,4.67461,5.898343333333333,5.898343333333333,4.962915,4.962915,4.684985,3.0648766666666667,4.320755,0.98097625,6.24485,3.612245,3.7272,3.763815,3.86228,5.05965,1.96234,5.1653,3.1316420000000003,2.83665,4.26225,2.70756,4.718405,5.2293,3.625885,3.452,4.980505,3.936975,6.1532,3.1001,2.693566666666667,6.10025,4.22891,2.8723166666666664,5.9541699999999995,1.61764,2.183675,4.88594,4.54759,5.1431,3.80094,1.9920475,1.9920475,12.945889511904761,12.2435,4.90617,3.27747,2.992855641025641,4.446975,4.612055,2.5890400000000002,3.2849733333333333,3.050135,4.0323,3.635033333333333,5.04615,2.00169,8.487756666666666,2.389915,2.1683775,5.62515,2.317575,4.78456,4.300395,4.79997,0.7475477777777777,3.16299,3.52621,0.92943,2.923305,4.303991666666667,1.4812480000000001,1.9849500000000002,2.8792666666666666,2.727233333333333,2.2913566666666667,3.0609466666666667,2.32211,0.45643214285714284,2.35581,2.6971566666666664,2.801553333333333,3.221743333333333,1.471922,2.901073333333333,7.0238499999999995,4.246785,2.2477466666666666,2.1248833333333335,2.60227,3.667325,2.49,3.5602085,18.426502499999998,5.3478,3.3828509999999996,4.594105,3.77489,5.4574533333333335,1.5636433333333333,5.98685,1.4908733333333333,5.03925,3.449065,5.52165,4.937945,0.9793475263157895,6.7983,2.356475,4.74952,2.88933,4.122865,3.59741,2.8421,2.233076666666667,1.557188,1.9409575,4.45605,4.700385,2.01295,1.556255,3.2903800000000003,3.9318766666666667,3.0520066666666668,6.30635,2.0533975,3.31684,4.821485,3.80675,3.63748,2.839765,3.89729,4.694515,3.89673,2.8015399999999997,2.8015399999999997,6.038928333333334,1.99118,2.575553333333333,3.81343,1.793044,7.313755,3.66442,4.505116666666667,4.3349,3.823085,1.744416,4.23938,5.7694,4.04714,2.04557,3.317795,3.32263,1.1211175,1.3685225,1.2969833333333334,0.66634,1.6157866666666667,0.8925333333333333,4.55187,0.8983111111111111,2.5565933333333333,1.6283333333333332,1.7553425,0.967075,1.969155,2.4037225,1.4513,2.9452466666666663,2.66872,5.038495,1.5479616666666667,2.678425,3.0568233333333334,2.975846666666667,2.3762366666666668,4.4302600000000005,4.361305,4.786225833333333,19.354013583333334,2.4155533333333334,2.179625,0.7030307692307692,0.629747,4.347475,1.9909839999999999,4.15552,4.94078,6.9685975,3.64246,3.52044,4.009525,3.1603033333333332,3.4065333333333334,3.213283333333333,4.166533333333333,3.4512666666666667,6.5828,3.593565,0.933429,1.13988875,5.0717,2.9037100000000002,2.61712,2.11421,2.25496,5.46935,4.90696,2.186455,2.2267033333333335,3.246525,4.99477,8.454683333333334,5.100789791666667,4.30973,3.839695,5.21605,4.739615,4.325025,4.966785,3.862545,5.18455,1.81306,5.64445,1.5676,5.1294,0.74502,4.781535,5.4301,6.14215,6.1892,4.48136,5.94685,5.80775,6.291895,1.9839333333333335,1.5856571428571429,5.588,3.83069,6.4585566666666665,5.2052,5.4078725,5.28745,6.2887,1.3528085714285714,4.420005,5.4755,4.221466666666667,4.91784,5.68565,2.661825,3.80247,2.842285,4.625705,1.0105833333333334,1.6023233333333333,1.356868,4.731055,4.048475,3.307505,1.9698200000000001,2.924963333333333,1.6539233333333332,2.18993,0.3972158333333333,3.4576333333333333,1.6331440000000002,2.3092566666666667,3.0722966666666665,2.4733566666666666,3.1005133333333332,2.59415,2.44502,10.393488666666666,4.0232,1.7472783333333333,3.48097,0.9547727272727272,4.5128812499999995,1.176585,1.7499075,1.959185,1.07866125,5.8038723333333335,1.1331155555555557,1.1331155555555557,1.1331155555555557,2.8710766666666667,1.928468,5.1685,3.258775,1.374585,1.501275,2.4588225,1.3300125,2.08456,5.286229166666667,0.7818688888888888,4.16625,3.964785,3.205303333333333,1.0235557142857143,2.142769,1.9295975,1.9295975,1.48261,3.6753833333333334,4.76419,5.63555,5.83645,4.32287,5.41485,2.885956666666667,2.0177075,2.883415,5.185,3.243985,4.059425,1.04499375,3.9379785416666664,5.3547,1.8833175,3.889455,3.08909,4.62424,4.75116,2.409855,7.046,6.37925,3.93338,4.315575,4.260965,3.225695,7.8138,4.005975,5.728748333333334,3.45681,2.7626266666666663,5.2839,2.61589,5.9659,4.31201,2.719526666666667,3.25948,3.981235,1.4030166666666668,10.615929999999999,3.91511,3.15231,15.346364067460318,4.09891,1.7286299999999999,2.79767,1.95014,2.2568,3.449665,2.5929175,2.78974,2.8074,3.035415,4.10851,6.055275,1.25645,2.0396875,4.300165,4.55182,5.01985,2.2790875,0.605066,4.56087,4.318735,2.075395,1.247575,4.669795,4.34781,0.8433644444444445,3.710815,12.3105875,1.2759894285714286,0.3961264285714286,3.605366666666667,4.695386666666667,1.0596322222222223,3.84406,4.17019,6.303021666666667,1.2828716666666666,3.45303,4.08447,3.3358,4.141005,4.177175,3.96968,8.583685000000001,3.055745,4.403285,6.07605,16.440023749999998,3.5361525,2.891175,1.13128,2.1355425,1.2258025,2.3978325,1.27827,2.02003,1.6767575,2.08568,2.578925,2.37591,2.16114,5.48605,4.284845,5.6833,3.20042,5.582255,2.8656699999999997,5.1008,3.445066666666667,1.2554625,3.86453,2.0301275,2.600454,4.733775,4.930195,4.980455,3.997985,3.477133333333333,3.7083666666666666,2.489056666666667,3.282675,3.807825,2.30331,1.7937,3.4906666666666664,4.09829,3.597155,2.3747599999999998,12.464263333333333,0.72034,2.665835,4.89811,2.538965,1.04289,2.627035,7.508396666666666,7.224616666666666,4.388795,3.66551,3.936275,2.016395,2.01721,2.777656666666666,2.0000966666666664,3.7684233333333337,6.20255,4.252885,0.4580533333333333,6.2796,3.529533333333333,3.3359,3.5772333333333335,6.0411,8.636867,4.184722,0.98408,2.1608925,2.352215,3.696705,2.548605,4.0915,4.52158,3.4774999999999996,2.7109666666666663,3.995535,4.131265,3.815425,4.365633333333333,1.6928766666666668,3.096015,5.19405,5.7113,3.4747,2.2669475,2.2409399999999997,15.138608469114219,0.5525281818181819,1.49097,1.49097,2.29454,5.0747599999999995,3.7639,4.25565,2.959125,3.011425,4.95887,3.106063333333333,4.197875,3.106063333333333,3.55379,1.8557066666666666,1.9147699999999999,6.1338,2.640975,4.77272,3.373195,2.651335,6.563435,1.9592,4.691815,5.44445,3.62828,3.353335,5.0696,2.00114,5.16635,3.409675,7.652216666666666,5.191474166666666,2.855025,3.85681,4.7748,2.03412,2.438546666666667,3.3843,0.4605471428571429,3.1945866666666665,10.200946666666667,4.5247,3.674725,4.848465,3.2777775,3.19658,1.3498285714285714,4.037395,5.4688,3.292505,2.080745,4.15892,3.943425,4.425165,4.239295,2.881175,2.881175,4.132125,2.849985,2.497314545454546,2.01193,4.656465,4.046765,0.9668314285714287,3.585715,5.0464,2.885893333333333,7.2404,7.32936,1.478092,4.21245,4.85778,6.692931,0.6508309999999999,7.6981,3.6059741666666665,0.5818954545454545,5.3855,5.2097,4.769695,4.310535,4.831735,4.38638,4.917325,3.83085,3.581155,4.24416,5.2177,4.47399,4.631275,3.93543,2.67622,4.298775,3.47002,0.9061899999999999,4.820365,2.42306,1.65852,4.349885,4.39947,6.12615,1.0402185714285714,5.034126666666666,3.0479,2.7150233333333333,1.68855,1.2780066666666667,11.681189166666666,2.2890099999999998,3.1514433333333334,2.00399,3.8013652380952383,5.413043333333333,6.241691666666666,2.7119999999999997,1.9226633333333334,2.04838,2.04838,2.04838,1.3775566666666668,4.06384,3.937545,3.296695,4.52111,8.107575,3.984905,1.115348,2.279165,3.266155,3.30125,1.871068,3.99365,2.73846,1.7103599999999999,3.030003333333333,5.209547857142857,6.402545,4.083275,4.113305,3.125253333333333,5.43865,4.34779,5.410893333333333,1.8770475,1.8770475,4.00213,3.774265,2.7824193333333334,2.7824193333333334,3.96265,1.249977142857143,4.97932,3.351295,4.303455,3.793945,3.71173,3.442066666666667,1.0864985714285713,4.296655,4.645145,4.323845,4.76253,4.778015,4.977815,4.479735,1.8566975,1.487185,3.43368,3.97082,3.38171,4.52108,2.02814,2.863225,5.30735,2.63145,5.06255,7.289350000000001,2.270716666666667,2.9273366666666667,4.350965238095238,5.340636666666667,1.604215,1.9349926190476192,0.8880783333333334,1.9349926190476192,1.8674066666666667,1.8674066666666667,1.560786,5.3988,3.18767,3.734735,2.413975,3.74764,1.5378233333333335,5.525,3.125555,1.69057,3.072346666666667,3.759645,3.999055,6.230797,4.68749,1.215908,0.899435,3.711515,7.746700000000001,2.4179233333333334,3.651425,3.81655,3.81655,2.311905,3.363375,3.44465,1.4323364935064937,3.18078,3.348975,2.88635,4.231365,3.7746950000000004,1.4454,3.242055,4.40494,5.00685,5.05105,4.383955,1.7384375,2.17029,1.3893833333333332,2.289225,3.314335,1.875985,4.51596,3.4324999999999997,3.62331,3.98048,5.3215,1.57705,0.967206,1.8126966666666666,1.0586875,1.1818666666666666,4.98122,4.007775,1.105156,0.3842026086956522,0.3842026086956522,0.3842026086956522,3.49488,5.776173333333333,4.61917,5.262,4.81831,5.40635,4.718005,4.38698,2.89831,3.43808,1.648565,4.93384,4.04224,3.897135,4.28384,4.338275,0.6586254545454545,0.6586254545454545,0.6586254545454545,0.6586254545454545,1.0723280000000002,1.0723280000000002,4.01074,3.61931,3.577225,2.772745,2.50066,6.1752,4.66298,5.74645,4.28719,3.048906666666667,2.5410733333333333,9.7897,1.51737,1.51737,4.099605,5.5367,3.3896333333333337,0.466509375,0.466509375,0.466509375,0.466509375,0.466509375,0.466509375,4.837733333333333,5.2731,3.258785,4.41537,2.768584166666667,2.768584166666667,2.711645,3.082192666666667,2.40978,2.55435,3.339725,6.76863,1.423374,4.719765,3.335525,3.85055,8.920498333333333,2.3092533333333334,2.474725,0.9994342857142857,1.94426,4.893415,2.93321,0.88665625,2.907583333333333,4.143115,5.5181,2.66295,4.618295555555555,0.8521488888888888,1.9526899999999998,4.93552,4.8273,2.7418500000000003,2.49724,2.0076966666666665,1.4082266666666667,7.231601666666666,3.3776666666666664,1.9803466666666667,3.10335,2.6574166666666668,3.64178,3.74636,2.7134766666666668,3.23934,5.82295,1.5017866666666666,4.12577,5.17595,3.327245,3.939305,1.9544266666666665,3.057445,3.777235,3.57213,2.892565,4.748225,4.53843,2.8859866666666663,1.9614924999999999,2.89495,2.9073333333333333,2.8689366666666665,0.8147754545454545,2.196665,8.416405,0.46590625,3.0027633333333337,1.5763666666666667,2.60453,3.26742,2.7169733333333332,1.2776555555555555,1.734818,2.7144,2.0929375,3.747325,2.0042400000000002,2.79068,1.4684,3.150786,2.0147575,1.1636614285714286,2.7050133333333335,2.075105,2.3505833333333332,2.61354,2.9179866666666663,3.32333,3.5254666666666665,3.163396666666667,2.8235733333333335,3.3224966666666664,2.7234033333333336,2.7862,1.7878999999999998,2.41522,2.5158866666666664,1.6353266666666666,3.480233333333333,3.9303847619047616,2.9787133333333333,2.4197633333333335,2.879573333333333,3.5381,4.681844166666666,3.1939733333333336,1.8372957142857143,1.8372957142857143,2.5188,1.141245,2.453985,3.299525,4.5814125,2.804175,2.1097975,2.06003,2.0687175,3.66732,3.047195,3.440955,3.701095,1.8390375,2.2540733333333334,3.663695,1.20534,1.20534,2.0158125,0.6285407692307692,2.3300828846153845,1.5741975,1.5741975,2.6248766666666667,2.4901666666666666,3.3890333333333333,2.763281666666667,1.8794925,5.551146666666667,3.8418575,3.8418575,3.642075,3.087075,2.2029,3.04897,2.442005,2.85779,5.09392,0.458725,0.665165,4.121815,2.3995,3.089325,6.714543333333333,3.55415,1.6216940000000002,5.069663333333333,4.661515,3.901515,4.224815,5.40395,4.889555,14.114045,3.701925,1.57567,2.92814,3.8256,4.83997,2.91479,4.08032,3.86584,3.64827,4.055785,2.9055933333333335,3.01055,2.7052899999999998,2.43439,2.43439,4.140835,2.94085,3.184585,3.38952,2.38047,2.5852,2.1659075,1.93441,1.9743525,2.0762025,1.66866,3.4243535,3.69282,2.759485,7.4895125,3.16497,2.3600966666666667,1.8265733333333334,3.660695,4.01338,3.68847,3.0375035416666663,3.43737,3.221565,4.38208,3.777315,3.795855,3.92059,3.468441,3.523225,0.619455,0.619455,0.619455,3.522395,2.315445,6.02815,2.361535,3.731785,7.0715462962962965,2.7554233333333333,0.3447307692307692,5.3409,0.7780210000000001,4.292139523809524,1.90915,3.642245,1.8537,4.406755,5.351906666666666,4.38144,4.16433,2.73089,2.83912,1.5304783333333332,2.5968933333333335,0.4155463157894737,0.5452400000000001,2.7273266666666665,1.48683,1.914295,3.84644,2.482955,4.861845,2.87794,3.0471016666666664,3.697435,5.7212,1.7116825,0.9758585714285715,2.235745,3.6570400000000003,1.2450376623376622,4.90981,3.86793,3.671115,2.7329866666666667,4.097715,2.5040633333333333,2.45856,2.6071966666666664,2.42218,2.5415233333333336,2.2628225,3.14593,2.35778,5.36983,2.20964,2.0471533333333336,2.0680466666666666,5.0988880000000005,3.2499260000000003,3.2499260000000003,2.5949066666666667,3.89282,2.355265,3.1427,2.8833,0.5894860000000001,4.243795,1.78831,11.971375555555557,6.97293,2.87567,3.344155,3.28632,4.43545,2.893675,3.41451,0.3187106666666667,1.8416725,3.552466666666667,0.8479666666666666,3.865445,1.3175771428571428,4.48773,3.315355,3.01494,3.30665,3.340605,2.31219,4.36772,3.798085,3.66695,6.46736,4.52334,2.8504633333333333,3.148953333333333,1.6207319999999998,1.95149,4.189445,4.047335,3.8325625,2.626765,3.27704,1.389554,2.935435,2.63118,3.623565,10.583786666666667,3.787025,5.048875,3.831065,4.15721,1.0257944444444445,5.1058769999999996,4.59642,2.518006666666667,2.49153,2.915846666666667,3.6367333333333334,2.3632733333333333,1.7083266666666665,1.9582866666666667,3.788455,1.614938,2.719943333333333,5.153846,2.63726,1.0785828571428573,1.0785828571428573,3.644545,2.9675314999999998,2.9675314999999998,2.839753333333333,2.80771,3.412282564102564,3.746966666666667,3.3966999999999996,2.7340166666666668,2.32223,2.3086233333333332,3.1044633333333334,2.255355,2.6057366666666666,1.6846599999999998,5.8190100000000005,8.655013333333333,0.47014,0.47014,0.47014,0.5687656818181819,0.5687656818181819,0.47014,2.9627866666666667,3.070866666666667,4.137648333333333,1.3896916666666668,1.7823475,3.382546,2.436803333333333,3.1265633333333334,2.4291966666666664,2.804656666666667,3.4414,6.709481666666667,3.1017166666666665,2.4958899999999997,2.8375066666666666,4.66883,2.4407200000000002,3.2727233333333334,5.83631,2.3642366666666668,3.3291,1.3721683333333334,1.3721683333333334,2.9014333333333333,0.5187652631578947,2.1577066666666664,2.7092666666666667,2.92088,3.27396,2.278356666666667,1.5643366666666667,2.6581266666666665,2.8434033333333333,2.3822533333333333,4.347845,2.4887023333333333,3.31903,2.253685,3.44062,0.484395,7.0851283333333335,2.97835,2.97835,7.8354019444444445,1.7502000000000002,1.8613933333333332,3.0837066666666666,4.30289,2.4122533333333336,1.9135766666666667,2.5321933333333333,1.392475,3.5845333333333333,1.80772,3.0555839999999996,1.4519575,0.27001772727272727,0.27001772727272727,4.874685,3.880045,3.44783,2.92562,2.7345,3.226545,1.3689466666666668,5.9846,3.826585,3.068705,1.8203875,1.0727533333333334,2.240975,3.0837066666666666,2.560565,2.059415,5.56338,3.874195,4.19594,3.815395,2.521695,0.6824016666666667,7.22607,2.1135025,1.5444025,3.67474,4.84417,2.1733,1.66246,4.74935,4.08077,3.2259733333333336,3.1434433333333334,4.440045,4.042995,3.4357666666666664,2.533824,2.533824,4.00894,4.84534,5.39835,6.369416666666667,2.571473333333333,3.84523,1.6042571428571428,2.49911,5.530482666666666,3.731775,1.873716,5.50625,3.6306374999999997,3.201615,2.10649,4.183235,4.55328,4.65614,4.61782,2.442136666666667,2.6182166666666666,3.633266666666667,1.9905733333333335,2.76835,2.7389833333333335,2.51724,0.766953,2.159775,2.930676666666667,1.9573296666666666,4.911725,4.492055,4.70079,3.756535,3.479655,4.727815,11.8788,4.590165,3.87598,4.266795,4.10385,4.577685,2.2780833333333335,3.0630646666666665,3.5398333333333336,1.2470375,2.78863,2.979175,4.39374,5.54635,4.241435,3.4334666666666664,3.1192466666666667,2.26449,4.342,3.9959425,3.7494333333333336,3.9959425,2.210501,2.270993333333333,2.348968333333333,2.056485,2.565533333333333,1.8327799999999999,0.8257116666666667,1.2024933333333332,2.1652400000000003,2.0234900000000002,1.6541933333333334,1.3620033333333332,1.80622,2.81715,1.5202579999999999,3.0553833333333333,1.2706866666666665,1.59893,2.728755,3.5957000000000003,2.481053333333333,2.0517266666666667,2.3466066666666667,3.236865,2.25843,2.8325666666666667,3.1439466666666664,2.456046666666667,3.074476666666667,3.03368,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,0.15332290322580644,5.22195,3.01759,1.0506428571428572,3.0781233333333335,2.635876666666667,2.8798833333333334,3.2624,3.4301666666666666,4.49162,3.341956,1.473868,3.0294666666666665,1.8790333333333333,1.00142875,0.9334020000000001,1.5965150000000001,0.8461483333333333,0.8413333333333334,1.316116,3.289295,1.600032,1.650145,1.926537777777778,2.3320338888888887,1.4151233333333335,1.2268816666666666,1.58374,0.949935,1.2726,0.7399749999999999,0.96486,3.349165,3.54425,4.35602,4.483475,4.03197,3.0735333333333332,4.57689,3.4868333333333332,1.9678025,3.502495,1.957515,3.567845,2.2842366666666667,0.8746645454545454,4.295955,5.06615,2.1133833333333336,1.3022075,3.003145,3.39368,3.6753833333333334,2.9968166666666662,2.68098,0.879515,2.250945,5.0919775000000005,3.784795,2.32158,1.4934200000000002,3.75676,1.635345,0.5664227272727272,4.17849,4.47753,4.334245,2.29208,1.461562,3.107885,4.501615,2.5949033333333333,2.6086966666666664,2.5724633333333333,2.6175333333333333,2.7568333333333332,2.816936666666667,3.03971,1.2816375,2.618225,2.5771433333333333,4.97384,4.39774,3.797405,4.686755,16.43288968308081,4.5022400000000005,4.491464666666666,2.92829,4.102125,4.95436,1.54663,1.9502125,2.1764566666666667,5.6645875,3.466515,3.389675,6.499,2.1764566666666667,4.027705,2.14278,2.1037399999999997,3.0517233333333333,2.7313833333333335,1.23721,4.21897,3.701095,2.560095,4.314475,2.4534766666666665,3.387,3.67945,3.620425,4.837735,3.899105,2.76844,3.56341,2.57866,2.456186666666667,1.31963,1.31963,3.297946666666667,2.6038466666666666,0.38223214285714285,4.758455,0.969548,2.804155,3.883845,0.5667266666666667,4.79734,8.25435,1.8601725,3.726145,3.650725,2.5895033333333335,3.255405,2.367265,2.982515,3.6057,4.32467,3.199475,3.9143666666666665,0.9895166666666667,11.465088333333334,2.760055,2.90321,6.1188,2.532215,3.9217,7.78732,4.099215,4.016015,3.70508,4.19713,5.3122025,1.5170375,2.5474200000000002,4.74945,3.7520000000000002,2.0377,3.82327,3.730635,3.708535,3.947615,4.18273,4.01364,2.4338733333333336,4.725645,3.6804,5.4628,4.25745,2.181643333333333,2.29487,2.0433866666666667,3.0130966666666663,1.3062266666666666,3.4967333333333332,0.9155818181818183,3.1814533333333332,3.2114766666666665,2.5895633333333334,1.5350583333333334,4.385545,3.860445,4.191205,1.8364175,4.53586,3.842605,0.7780916153846154,0.36733961538461535,4.273295,5.5565,0.9579875,0.36733961538461535,3.803955,0.7780916153846154,0.7780916153846154,0.36733961538461535,5.726756666666667,2.4717766666666665,2.3231266666666666,5.6551,3.142425,3.18439,0.7868044444444444,2.993425,3.940945,4.775985,5.80675,2.1327175,0.7233307692307692,4.191295,2.0711,1.209862,1.868965,0.9834542857142857,2.159996666666667,2.2074000000000003,3.549135,5.2795,2.53882,2.88275,2.737503333333333,2.2575533333333335,2.866655,4.44049375,1.5062475,1.98339,4.205935,4.936435,2.1447037499999997,5.0588,2.66814,4.23083,3.958125,2.80744,1.2090875,3.081365,6.9844,3.77003,3.920155,5.1865,6.40245,2.18367,3.089405,4.62568,3.19819,3.45093,8.29832,3.789995,4.6530125,2.38581,1.2402525,2.55865,1.77061,2.385745,1.92891,4.3712,0.6608464285714285,3.30287,3.757085,1.8489699999999998,2.8225266666666666,4.869015,3.44352,2.664455,4.128515,5.18885,9.218689333333334,2.6883,2.5499633333333334,1.681302,1.45307,1.2298233333333333,1.3264,2.6632866666666666,2.6289000000000002,2.8682266666666667,4.260776794871795,1.595305,2.34165,5.2831,5.55745,3.698365,3.43111,3.12024,2.640815,2.067995,2.100735,1.98243,1.936775,3.101645,3.77994,4.86096,5.1278,3.82441,5.372943333333334,3.4216,2.66874,6.605489166666667,2.91958,8.98542,4.713160833333333,4.713160833333333,5.5852216666666665,1.67785,1.35932,1.4344333333333334,0.7200070000000001,4.956205,4.059233333333333,3.2816375,3.2816375,2.2115,4.655955,4.46251,4.311505,3.89604,2.9744766666666664,2.765225,3.52939,3.121116666666667,5.3889949999999995,3.61647,0.7713627272727273,5.3128,5.05605,4.045195,4.854365,2.902795,6.20055,4.46339,0.9088692307692308,5.385,7.305759999999999,3.271455,5.4866,5.8019,3.5917,2.635755,3.689545,6.11355,2.0212725,6.01355,1.9193275,4.37189,2.6252633333333333,2.4305525,0.919481,3.02261,6.1615,3.418215,3.53951,2.0092933333333334,4.64017,7.7700716666666665,3.55813,4.2242,2.453145,2.85125,0.885322,4.61434,1.6277549999999998,3.4305383333333337,3.4305383333333337,3.587495,2.2974866666666665,2.9413366666666665,4.002635,1.71347,2.8573466666666665,3.183286666666667,3.2038100000000003,2.705415,4.10817,3.316555,1.8222075,3.1526433333333332,2.060985,3.17104,1.9896,3.077056666666667,3.3004866666666666,1.4329714285714286,1.80837,0.41680999999999996,1.31361,0.41680999999999996,0.41680999999999996,1.80837,0.41680999999999996,3.4298,2.5438799999999997,2.5438799999999997,3.00269,4.11813,3.747185,4.160995,5.37865,5.4504,3.424205,3.94072,4.08995,1.928335,2.4064613333333336,2.364736666666667,0.8189127272727272,5.6166,3.0707,3.015076666666667,5.4704,3.786975,4.72646,3.31706,2.65349,2.936305,3.385545,2.61226,2.89873,2.06976,5.43095,0.8166388888888889,3.45327,1.1720328571428573,3.734625,3.1308666666666665,2.98516,3.90093,4.00957,3.77848,4.41576,4.010375,3.78021,4.33652,4.27115,2.6007,2.736875,3.3537,4.200825,2.626945,3.138775,2.62605,3.00456,3.3073200000000003,3.49217,4.55555,4.643405,4.053935,68.3938673931069,2.7298508333333333,3.861765,16.165151,4.05199,3.0937133333333335,2.2463233333333332,1.9404833333333331,2.485326666666667,4.4798575,3.0827533333333332,3.9131074999999997,5.6674,3.37065,7.6909133333333335,5.46245,2.43117,3.353645,3.76861,3.42619,1.8779,1.1222725,4.62748,2.689515,6.0649049999999995,3.662465,2.2484633333333335,3.562075,3.401645,4.537235,2.914285,5.6715075,4.588495,3.2401,2.997025,2.594825,2.879845,5.67315,2.959265,3.604295,4.36704625,1.163815,2.564775,5.1882775,3.03092,3.17155,3.619775,2.759735,3.89724,3.04718,3.191335,2.44369,4.413805,2.75352,2.918875,4.50968,9.98614,3.2015,4.16085,6.66052,3.02705,2.00295,4.165051875,2.01723,2.9361766666666664,2.969588,3.45459,3.413245,3.041065,3.19362,3.238465,4.171605,4.015445,4.347725,3.575845,3.200565,3.711875,2.589171666666667,2.589171666666667,7.2463983333333335,1.8775,3.218605,3.289795,2.38157,4.78525,4.188225,2.941335,3.146735,6.07425,6.023969999999999,0.6428563636363637,4.601305,2.410625,2.92946,2.5424266666666666,5.1936,2.66589,2.02858,1.09134875,2.0541677272727275,4.23582,5.029,4.109835,5.91325,5.81915,5.92745,2.48173,1.9231666666666667,3.85959,2.46608,2.890473333333333,2.0008766666666666,1.2871816666666667,2.9284499999999998,3.1248299999999998,1.60385,2.26046,2.4214385714285713,3.408085412087912,2.740455,5.05155,3.352205,1.3952275,2.63867,3.518565,6.09245,4.7411,5.9233,4.750295,2.0224966666666666,1.4642433333333333,0.5929914285714286,1.57327,3.51807,2.493895,3.5356433333333332,1.3956833333333334,2.44008,2.254085,3.365795,3.502225,3.826135,4.101958333333334,1.6571875,1.41615,1.91045,2.0659625,1.4241675,2.50445,6.886819333333333,4.89911,3.58677,2.979055,7.3155,4.64667,3.21665,3.06271,3.407325,2.6879,3.880085,2.33603,7.36794,0.8820049999999999,2.96566,6.6395,3.95818,4.895005,6.52375,1.4862333333333335,3.18758,2.9088666666666665,2.8218866666666664,1.51689,4.042375,8.5468,3.285325,4.88289,3.99418,3.41597,4.75476,0.8971616666666667,2.8665633333333336,5.3664,6.308490000000001,5.27195,5.83985,2.8634,3.7335,2.6043,5.25755,4.781275,4.110740714285714,4.110740714285714,0.6614657142857142,3.6165000000000003,0.9823600000000001,0.741695,1.7564825,3.7802666666666664,4.148928,5.570463714285714,2.48149,3.2677437142857144,3.768822380952381,2.8753233333333337,3.0879766666666666,4.5548,3.4690666666666665,1.868495,1.868495,3.85224,2.9802166666666667,2.7792266666666667,3.292915,3.3561,0.5784722222222222,3.3366666666666664,2.6250933333333335,2.6450299999999998,2.93084,2.59455,2.4685366666666666,3.187163333333333,2.8283966666666664,0.821976,2.8919566666666667,6.419786285714285,2.13422,7.427858333333333,1.515602,1.515602,3.4078142500000004,3.515966666666667,3.31227,2.77673,1.7047260000000002,1.32513,3.3499,3.457433333333333,1.4495616666666666,1.6358428571428572,2.8218566666666667,2.618562,2.6825166666666664,2.032375,1.8449075,2.66513,2.29436,2.821225,3.439705,1.84442,3.62589,3.23068,7.107989999999999,3.32646,1.6364625,3.02615,2.577485,2.17282,4.048695,2.3636,2.629775,7.0986225,0.8334615384615385,0.737825,4.70126,1.506272,1.506272,3.716165,2.4897475,4.354275,3.308745,1.3199333333333334,2.457787333333333,2.7364533333333334,2.442512333333333,5.01535,5.1427,2.5772066666666666,2.06738,1.3535185714285713,1.3535185714285713,1.8652566666666666,3.814,4.1617,5.6442,3.107146666666667,5.00405,4.22403,6.57705,4.34515,2.56285,2.82944,2.6656299999999997,2.710983333333333,0.7026144444444444,0.7026144444444444,0.7026144444444444,3.09149,4.38662,3.808715,1.3462975,1.3462975,4.818235,5.71745,6.97935,21.85537227777778,10.3073,9.22911,2.884165,5.73435,2.327595,4.29915,2.5080066666666667,3.166786666666667,4.017399999999999,5.275285333333334,1.95631,1.63935,6.50049,2.11342,2.11342,6.15975,2.900915,4.09832,2.049625,4.938827166666666,4.632335,3.423665,5.07515,3.46383,0.9941166666666666,5.6957,9.27574,0.9941166666666666,2.049625,2.082263333333333,0.695506,0.695506,1.7075900000000002,2.2336899999999997,1.7075900000000002,4.326445,5.31685,5.9568,8.4026,2.049625,11.370515833333334,5.7257,5.46505,2.327595,3.156985,4.238745,8.34233,3.030935,3.72737,5.46475,3.542385,4.36823,5.88625,4.27557,4.93426,4.638695,2.82237,5.53755,3.34672,4.2813,4.400765,0.8107175,1.498974,3.056205,5.5026,4.449135,2.63726,2.11748,3.9223,4.494,5.9282,5.5432,5.1979,4.433915,3.418275,4.22978,3.773105,2.06657,4.9749,2.02706,2.687665,3.49967,1.6745833333333333,3.97794,4.003005,3.66598,3.6971799999999995,3.02705,7.015408333333333,0.9766455555555554,3.484955,2.513175,1.2411671428571427,4.959339,1.425415,1.6088666666666667,2.527336666666667,2.719832,2.9228366666666665,2.78802,1.7548075,0.7332418181818181,1.9970033333333335,2.42562,3.66001,0.7263146153846154,5.641701666666666,1.7406566666666665,1.173286,3.705,1.173286,3.866335,0.9802545454545455,4.57846,3.2320433333333334,1.909995,4.886723,4.343658,4.343658,4.75608,2.3667075,2.9164233333333334,2.7126533333333334,1.471922,3.72648,3.814885,2.09275,0.7043758333333333,6.993381282051282,2.736725,4.32123,4.24448,7.64508,2.05036,4.171375,3.7609,3.08692,3.53489,5.68425,6.2614775,4.55678,4.86929,5.52535,2.9655633333333333,4.917475,4.17103,4.47506,1.0539422222222223,0.4693778571428572,3.171135,3.4494000000000002,2.8348,5.43395,3.814485,4.22432,4.38163,5.05215,4.594345,4.20726,1.20097,2.237555,8.208385833333333,2.21351,1.9041966666666665,4.057176666666666,11.359861388888888,1.564695,5.3662,6.5325,5.26525,3.4520999999999997,2.2835366666666665,3.262036666666667,4.126805,1.1042016666666667,3.3882,3.21081,0.3053784210526316,2.0797233333333334,4.322895,4.24416,2.319775,4.33967,2.742585,4.8696525,1.3018733333333332,0.6128054545454545,3.5677791666666665,1.109397142857143,0.9969425,0.9969425,0.9969425,0.9969425,1.6367083333333332,2.7201799999999996,1.8857633333333332,3.4310666666666667,5.29955,3.6994333333333334,5.15905,3.74677,4.395645,3.666095,3.96721,1.4400133333333331,6.475455,2.28536,4.68578,5.1453299999999995,5.14255,5.036408333333334,2.32356,2.2880133333333332,2.62434,3.276015,1.1914366666666667,4.854808333333333,2.703193333333333,5.041,2.6761933333333334,2.298153333333333,3.79936,3.363985,2.85692,2.4385066666666666,2.754913333333333,1.510935,0.4113366666666667,4.066845,3.5509,4.16193,3.640215,4.08528,5.82655,4.263265,0.539943076923077,3.145386,7.276032666666667,2.0014266666666667,2.12922,5.452605,6.28855,2.6575666666666664,4.833675,5.03315,4.315365,4.015065,4.524785,5.37885,5.54635,5.1838,3.632985,5.1780195,1.4554,1.6044766666666668,4.42542,3.892125,3.80433,3.179755,5.4551,5.039,3.7895,3.374115,15.52728897104269,1.2423410995184592,1.15793,1.8848290909090908,0.520055,0.4959113333333333,1.5048,0.3149,1.2905760000000002,3.08332,1.62211,0.9436333333333334,1.05317,0.4720625,1.05317,1.05317,0.4720625,0.8293,0.5354249999999999,2.60143,2.66412,4.16634,3.592635,2.798386666666667,2.7884,4.121565,4.911105,5.08725,2.840095,4.24117,0.6940742857142858,2.3845953333333334,8.001191666666667,3.895375,6.635751666666666,2.70655,4.439745,2.358525,5.4128,5.52795,3.42407,4.20018,3.07253,1.0131516666666667,4.27813,4.89887,1.108166,1.303632,1.5381316666666667,2.32771,1.9332666666666667,5.7283,5.96005,2.26965,2.26965,3.6008591666666665,6.38905,2.124756666666667,0.6610009090909091,0.7463928571428572,2.1739166666666665,3.3808666666666665,0.9472628571428572,0.9472628571428572,0.9472628571428572,0.37483999999999995,1.0583257142857143,2.998775,6.0388,3.8068666666666666,4.094985833333333,5.08205,1.01889,3.5863,3.1177566666666667,3.8806333333333334,5.6211,2.5585999999999998,7.306648333333333,4.840345,1.0962444444444444,3.7319666666666667,1.915888,2.456965,2.3406766666666665,6.78582,3.499333333333333,4.435015,2.293845,4.634715,4.40278,5.2543,0.5478272222222222,1.9570133333333333,1.4174,2.7038666666666664,3.8868980000000004,2.0471333333333335,2.7796866666666666,2.4514400000000003,2.5314099999999997,2.5651566666666668,2.7518999999999996,2.7166,2.88269,1.298558,2.2730366666666666,1.9962799999999998,2.779973333333333,2.39474,2.08583,1.7228366666666668,1.8838066666666666,1.6740975,3.233305,2.22748,2.0931,2.1192033333333335,2.4258566666666668,2.4301233333333334,0.7556455555555556,0.7556455555555556,0.7556455555555556,2.43864,2.0492466666666664,2.9776866666666666,2.359766666666667,2.5725533333333335,2.04319,3.892775,3.5297616666666665,1.334055,2.4171400000000003,2.7640966666666666,3.5448166666666667,1.5672142857142857,7.249296666666667,4.43962,3.279,3.982435,3.580475,1.3247525,0.8326928571428571,2.85284,3.798575,3.5448166666666667,3.977095,4.19371,4.3933,2.842366666666667,3.94449,4.10558,0.95336,2.63336,3.296755,4.946264166666667,4.666635,3.62175,3.3524,2.50951,2.1731133333333332,2.4818966666666666,0.6501741666666666,5.329403749999999,2.78605,3.862945,2.7752766666666666,3.802613333333333,3.2420033333333333,2.4911933333333334,2.8947586666666663,2.8947586666666663,2.5974,2.1048899999999997,2.531476666666667,2.0677600000000003,4.03509,1.3759679999999999,2.553805,3.876,3.982795,4.00468,5.37,3.44516,2.56015,2.162575,3.14427,2.943805,2.536635,5.2149,2.62033,0.9681742857142857,0.9681742857142857,4.571635,3.757593,0.919918,4.22214,0.919918,3.90726,4.80855,4.84055,3.018745,3.27872,6.2888424999999994,4.181258333333333,5.67055,0.8363357142857143,0.8363357142857143,2.1416399999999998,4.48176,1.528685,2.953075,3.487425,1.1092128571428572,3.795145,3.876,5.877325,5.877325,1.1203049999999999,5.3778,5.5333,5.0774,6.10195,2.0426425,2.0426425,7.03975,0.9539727272727273,7.29475,1.9234975,6.4274325,2.545915,2.3594933333333334,3.402635,2.43388,2.1713299999999998,2.3576633333333334,3.04542,2.3563711904761906,6.26915,1.7773700000000001,4.91424,2.8982033333333335,2.4868099999999997,1.75256,2.22795,3.075545,3.453455,3.548115,2.840965,2.142835,2.264125,2.489655,1.0614979999999998,3.163405,2.27412,3.20394,2.158008,2.158008,3.082415,2.07659,3.847845,3.5047,5.02565,7.117491666666667,4.085825,3.537975,6.4629865,2.125183333333333,3.2759311111111113,2.1742966666666668,1.4728999999999999,1.632025,4.417065,1.5711366666666666,0.50047,0.628765,4.666965,5.0804,2.865845,0.9380200000000001,2.39521,2.9457166666666663,4.823095,1.8107099999999998,1.96637,1.1350555555555557,4.58307,2.386745,4.669435,0.739018,4.0888225,4.13375,3.561995,4.281665,3.53152,3.894215,2.6876433333333334,5.6361,3.56509,1.7988266666666668,2.688003333333333,6.063963333333334,5.9662125,0.8259625,3.626585,4.226845,5.1768,3.6528333333333336,3.7617,2.750325,3.19637,3.814033333333333,6.3815575,2.618562,2.6241065,4.002115,3.250515,2.378065,2.66635,8.446163333333333,4.57668,2.0794,4.807845,4.81572,1.821056,3.90485,1.2418925,1.6907142857142858,4.34359,3.8772,5.01145,2.5749999999999997,3.23386,2.928355,5.2411,3.83156,3.35278,2.728425,3.67467,3.604965,3.8989899999999995,1.094014,1.094014,7.53656,0.8420225,2.0119150793650795,0.8420225,0.6303466666666667,0.4454122222222222,2.642261746031746,2.506355,0.6106928571428571,2.0119150793650795,2.03786,3.303485,2.0315688888888888,3.616015,4.5779,7.480716666666667,1.90466,2.185435,2.00501,4.457695,5.74565,2.05829,1.70855,1.173025,2.8815749999999998,4.24658,2.860715,4.77256,6.41328,0.42983444444444446,3.806635,0.697914,2.8448933333333333,2.2848175,3.499535,1.2361766666666667,4.14452,4.509287499999999,3.93105,2.87098,3.970935,4.90287,1.6356,3.084075,0.6207053846153846,2.402615,2.37036,1.034606,3.059363333333333,2.51161,2.528696666666667,4.163655,7.9328199999999995,2.867023636363636,3.69796,3.387725,7.400449999999999,5.516905833333333,3.224463333333333,4.21218,3.42632,5.58195,4.08039,5.20375,4.767455,4.453995,4.53234,4.175233333333334,1.9586325,1.9714566666666666,2.33947,3.848495,2.4574966666666667,0.18859702702702702,0.18859702702702702,0.18859702702702702,30.491857023809523,0.18859702702702702,3.064322027027027,0.18859702702702702,0.18859702702702702,0.18859702702702702,3.30226036036036,4.084885,0.18859702702702702,0.18859702702702702,0.18859702702702702,0.18859702702702702,0.18859702702702702,2.75294,5.84149,3.158745,0.19412846153846156,0.19412846153846156,4.504696666666666,3.9514044166666666,3.99820375,3.2804783055555555,3.927444285714286,7.94132,11.621005472027973,6.291449999999999,8.319743333333333,7.900949160714285,2.9014333333333333,6.197181904761905,4.3896250000000006,4.310570064102564,0.19412846153846156,8.167354666666666,6.627326,7.148028333333333,2.96755,8.925846160714286,14.419504732142858,18.124419608516483,57.507733422570894,116.53062031813366,1.3721683333333334,3.3291,3.446775,3.9180463230373235,0.19412846153846156,1.5434625641025643,8.784482500000001,14.960610452380953,19.711712777777777,47.386682138053466,13.366203327380953,3.260175,0.23288275862068963,0.23288275862068963,4.657523333333334,2.8181933333333333,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,0.23288275862068963,5.65582,0.23288275862068963,0.23288275862068963,0.23288275862068963,2.692815,2.0591166666666667,3.63044,3.65023,4.862250833333333,5.2139,2.0253375,4.174725,4.26781,3.2892,1.4637733333333334,3.7074,0.9923783333333334,2.386945,2.02413,5.06576,6.03209,2.80791,5.582578444444445,0.5500055555555555,0.456518,2.49506,2.7128266666666665,2.76232,3.978535,3.632766666666667,7.5218162500000005,3.7494,3.590085,3.50548,4.051105,3.035055,3.20732,5.5658,1.809745,0.4293453846153846,0.8356018181818182,4.2491425000000005,1.7306775,3.7028,3.78146,4.53427,3.4859,2.47099,2.618165,0.6327553333333333,0.7521169999999999,4.28899,2.67301,5.85565,3.615195,3.738061666666667,2.52368,2.9557,6.3251,4.99408,3.521005,0.7992363636363637,2.83144,4.372735,2.22397,0.9659675,1.6335166666666667,4.010745,6.5498,1.903465,3.080055,3.833495,5.9478,2.4845,2.41194,2.36337,4.890755,3.03091,4.256025,0.6669042857142857,2.159046666666667,3.275225,1.789335,5.995051666666667,3.135125,3.83138,4.397175,2.921545,2.076935,0.5328281818181818,4.38589,4.745805,6.79475,3.14959,5.0613,4.94825,2.79051,2.0128441666666665,1.1821985714285714,5.16285,2.020225,2.59978,8.183785,4.172055,5.38105,3.126935,0.6978722222222222,3.0817,1.2169357142857142,3.20116,6.12275,4.881015,5.0763,3.64013,5.3789,4.402645,1.72687,1.7378233333333333,5.0214,2.968643333333333,3.25414,2.3343675,5.43655,4.2141,1.478925,3.5587999999999997,2.79172,2.844375,3.93396,9.15061,4.683835,1.7684475,4.60105,6.09187,4.577825,3.95821,4.08046,3.84768,4.48471,7.998749999999999,2.43121,3.2387,3.41782,4.345775,2.97732,3.1907,4.630375,4.129985,3.456715,3.930594,18.693804999999998,2.85577,2.7122933333333332,3.338533333333333,5.5411383333333335,1.1025175,4.202585,2.140305833333333,4.89738,1.3921883333333334,4.511475,4.232575,3.688825,0.96787,4.725985,4.458375,1.741345,4.608368636363636,4.47044,1.1287042857142857,3.688075,1.985115,2.39201,1.705365,4.327895,3.887145,3.755195,3.72753,2.9819166666666668,4.092475,8.330566666666666,4.47352,4.284165,4.56933,3.076643333333333,3.794385,4.86717,6.102106,0.874592,0.874592,4.48712,4.553495,2.0211866666666665,1.3175916666666667,7.123645,4.06684,3.542825,3.82517,4.745415,4.63043,3.559905,3.893015,6.6199449999999995,3.92957,4.679805,4.845355,1.36405,2.616725,4.21939,4.63252,3.431825,0.2107811111111111,1.5366475,2.1197675,2.5386866666666665,2.1464966666666667,0.9540033333333332,1.419035,1.3837575,2.39459,0.6218355555555556,1.06031,1.955805,3.89049,3.9040666666666666,2.24648,2.527746666666667,3.03857,2.816546666666667,0.6835720000000001,0.9543825,2.725415,4.623025,4.803215,2.79687,4.41488,4.546745,4.243575,2.06474,4.347295,4.908335,4.24891,6.339,3.725695,0.5045823529411765,5.66685,4.61709,4.132275,4.918055,3.302445,1.8812000000000002,3.993225,4.052005,2.96164,5.168582499999999,4.42793,1.4316233333333335,5.168582499999999,4.144645,6.6448325,3.74281,1.119911111111111,3.849525,4.67001,4.2004,2.71719,5.1181,1.5281675,2.048315,3.09232,3.448865,0.8145688888888889,4.546145,4.837495,3.606805,4.0721,3.4717000000000002,2.998866666666667,1.66933,1.565965,3.16112,3.443875,3.2551433333333333,2.44159,2.30026,1.9863296666666668,3.881325,1.3006128571428572,0.8359277777777777,5.17737,3.8466,1.501154,2.5257666666666667,2.2617,3.0964733333333334,6.228484999999999,2.2597227777777777,0.8533480000000001,2.56428,4.43368,2.0468633333333335,3.914765,5.0278,5.64345,3.97698,4.583385,5.06805,2.1656566666666666,2.3028233333333334,1.6607200000000002,2.15362,1.8775825,2.2850733333333335,2.2235833333333335,1.4631275,2.51857,3.010745,3.918575,6.3946,4.603995,4.05214,4.424695,4.02362,3.891275,5.28925,0.8786675,2.911,4.983505,1.1799899999999999,0.6903266666666668,5.22585,3.74422,2.497376666666667,3.62476625,6.34126,5.95915,0.912936,1.2212999999999998,0.7160322222222222,4.137629166666667,2.2488366666666666,2.8114666666666666,1.1651157142857145,2.6434866666666665,2.682646666666667,5.22625,4.620045,4.462925,5.19555,3.981025,1.25996,3.726075,1.6843633333333334,3.54865,3.509695,3.33894,2.6814199999999997,3.4699000000000004,2.879523333333333,3.042555,4.067605,3.139185,2.34902,8.802710000000001,10.344257500000001,4.22887,1.4857857142857143,5.50455,4.03336,4.72394,4.479865,3.736825,3.85189,3.4957,4.16587,3.5192445833333332,5.27319,3.777175,3.43264,4.575555,1.800798,4.8363,5.872,4.94336,3.35465,3.3627225000000003,7.70496,0.7795383333333333,2.552776666666667,2.768853333333333,2.328656666666667,5.0009,3.083705,1.2421133333333334,4.15865,3.3672,3.72065,4.497695,4.1748025,6.763635000000001,3.1209666666666664,2.786773333333333,3.10195,2.7893066666666666,4.05012,1.8428000000000002,2.149436666666667,2.9785833333333334,3.92435,3.784648333333333,1.97485,1.5669275,3.2141242857142855,3.0871269999999997,0.9431244444444444,2.4978033333333336,2.4978033333333336,1.2916925,5.99525,3.07794,3.501205,3.64462,3.070145,3.458195,3.35071,3.43328,3.47985,2.23664,0.5274373333333333,3.304765,5.623564999999999,3.07245,3.734715,3.28974,4.0722,4.05246,3.211825,2.78533,3.646755,3.76875,3.165775,3.21117,3.77418,2.59929,4.079605,3.922,8.82651,3.48482,3.762005,3.019995,4.11322,4.124655,3.66016,2.39499,3.657155,2.6059,2.89524,2.964265,3.181675,3.70829,1.75035,1.75035,2.302895,2.97709,3.21153,1.6008900000000001,2.45695,3.41054,1.680718,3.020635,1.6008900000000001,3.860375,2.918555,3.9013772500000004,3.18456,3.386845,2.268585,3.241685,4.09557,4.355735,3.496105,4.528355,3.85136,4.258785,3.648835,3.19086,3.244805,3.11096,3.914625,2.6273766666666667,3.716035,5.5418,4.32439,3.72477,0.29190826086956523,3.54075,0.44289416666666664,3.607525,3.623025,2.9541,3.46606,3.843215,6.200715,3.467165,2.59974,2.3422199999999997,2.810036666666667,0.67906,6.579066666666666,3.08428,3.44134,3.23018,2.021125,2.579695,3.26407,3.316775,6.73156,4.49763,5.2664,4.69847,4.26805,4.093695,3.725865,1.3961333333333332,1.726222,3.897235,4.640755,6.000015,2.5635133333333333,4.81182,1.82841,3.5888333333333335,3.969975,1.9349792857142858,4.19435,4.8536975,3.4987666666666666,3.8134333333333337,2.88575,4.566575,4.75943,3.4787,4.41018,4.53522,4.871855,4.350325,4.48857,3.9383,3.044945,4.19665,2.6928,3.2193400000000003,3.2193400000000003,4.217435,2.53307,3.79422,2.3237166666666664,4.499135,3.2685666666666666,3.57268,1.81109,2.008383333333333,1.1983516666666667,1.1983516666666667,1.6050499999999999,3.4364333333333335,1.7051833333333333,2.7538033333333334,3.716005,5.1755295,3.2330233333333336,3.90749,5.40791,2.996025,2.822105,3.0524133333333334,1.5773366666666666,4.42244,3.798745,6.52129,1.65029,5.46735,5.93065,3.279006666666667,3.25261,4.11967,6.71842,1.90341,2.46714,3.83714,0.48554142857142857,3.37315,4.05057,4.46798,4.73701,2.79786,1.3094480000000002,1.679092,3.98075,2.839375,2.40225,3.79979,5.06475,5.1837,1.00680125,3.090405,4.47223,3.73453,4.581895,2.3894166666666665,5.002376666666667,3.844365,1.5584,3.746285,1.2459683333333333,2.75496,7.366231666666666,3.37327,0.6515218181818182,3.35615,4.0812,3.989125,1.7025,1.7025,5.043163333333333,5.6923,2.83573,0.49186111111111114,1.9478675,4.603388333333333,4.469965,4.31695,1.8065280000000001,3.0192866666666665,3.37829,1.100818552631579,1.100818552631579,1.100818552631579,0.701156052631579,1.2105893859649122,0.5094333333333333,1.100818552631579,0.701156052631579,0.20123105263157895,0.7106643859649122,0.20123105263157895,0.499925,0.499925,0.499925,0.499925,1.1320495,1.0603,2.383923333333333,2.3325283333333333,1.0899166666666666,6.403598333333333,2.684533333333333,5.9933483333333335,2.493603333333333,3.58148,2.757515,3.41863,2.77804,4.66619,2.9196166666666667,4.037435,4.108885,4.44994,2.1565,3.882665,4.76218,4.08204,3.3093,4.8804,3.352445,4.522085,5.61205,5.0639,6.2595,5.2226,1.18449,4.325995,3.699105,2.79172,16.352585,4.453375,5.35465,2.7332433333333337,7.46872,4.002485,4.623415,5.262,3.340715,1.0518275,2.58787,3.692665,4.37436,3.34068,3.24562,4.159325,3.096223333333333,4.50497,4.47673,4.258005,6.657093333333333,7.429716666666666,1.3786271428571428,3.792315,4.0026,4.02596,3.66571,3.72178,7.46479,2.809525,2.930495,2.47584,4.051205,3.81197,4.75431,2.44541,1.8201975,0.8422319999999999,4.06798,3.90249,3.577815,3.73072,3.339875,4.705275,4.29732,6.80655,6.1387,5.7892,6.7801,3.91453,3.071985,3.127775,3.408905,1.907175,5.43445,6.56765,6.9143,6.187900000000001,6.187900000000001,2.34312,1.907175,1.762435,3.00669,0.6911483333333334,1.4645983333333334,0.77345,1.412565,2.394195,0.336263,2.81802,4.13188,1.412565,2.96529,10.77251,6.347035,2.3494016666666666,1.03813,1.82236,4.3658,4.343255,6.045746476190476,1.9759425,2.208545,3.379445,3.2142,4.83169,1.6633633333333335,5.3534,3.6951666666666667,3.17301,5.3251,7.160664000000001,3.825685,2.3910275,2.8357566666666667,1.7365199999999998,3.781425,5.46205,1.826436,5.62055,4.44259,6.000346,0.5075493333333333,4.332186666666667,5.93235,5.87505,2.49046,2.804165,7.3018,8.763783333333333,6.6051,2.228333333333333,2.228333333333333,2.228333333333333,5.8183,5.2261,6.4346,3.644305,2.854645,2.7272576315789476,5.21235,4.01684,2.5889604999999998,1.86243,2.5889604999999998,7.0650805,4.876616666666667,4.7780635714285715,6.92079,4.7780635714285715,4.7780635714285715,3.5549785714285713,6.87782,5.6243099999999995,2.8937299999999997,2.8937299999999997,2.682785,7.0861,2.96552,3.509925,5.1772808333333336,5.1772808333333336,5.1772808333333336,8.118739999999999,3.5938974999999997,3.47421,3.676,3.4945275000000002,0.8456975,7.582986666666667,2.7063699999999997,6.6812,3.641365,12.873163,5.4143,5.552673333333334,6.86227,2.5880883333333333,3.470995,1.12463,5.552673333333334,3.418845,1.705085,1.705085,3.08098,5.2243225,1.6931025,4.7431,0.8661429999999999,1.43281,0.8661429999999999,1.9140325,2.5592455,5.231893,3.99162,1.43281,3.26093,4.788195,0.949565,3.58013,4.38928,2.208035,4.21965,2.339435,3.17599,2.814865,0.911314,3.829235,2.08643,2.18744,1.6447566666666666,2.991086666666667,3.79283,3.04364,3.768285,1.2436644444444445,1.2436644444444445,1.2436644444444445,4.09203,3.1282533333333333,3.1282533333333333,2.992815,3.83526,2.0977799999999998,1.3428275,1.3428275,3.18293,4.388705,0.861005,1.4416833333333334,2.77179,1.1326233333333333,2.5743066666666667,0.911314,0.911314,1.7831033333333333,0.911314,3.084626666666667,0.5704,3.084626666666667,5.832790833333333,3.297415,2.43758,1.7293808333333334,0.584695,2.3140758333333333,3.685865,2.3140758333333333,0.9950233333333333,3.45035,3.88865,4.016335,3.299825,2.73962,3.67777,1.8637466666666667,0.786401388888889,0.4083725,0.786401388888889,0.3780288888888889,0.786401388888889,0.786401388888889,4.50772,4.32164,6.1289,3.407195,4.388995,4.299655,5.27515,3.54239,3.832925,1.3576657142857143,2.6583966666666665,3.9231391666666666,3.917405,1.4209666666666667,2.7458733333333334,3.54998,3.81909,4.10649,3.534795,3.974525,3.76811,3.14068,4.34214,2.2522466666666667,6.25705,3.59731,3.95383,4.563922857142857,0.8929623571428571,2.095215,3.156055,5.81104,3.65913,3.206855,2.9840366666666664,4.188335,7.165150000000001,2.948206666666667,3.393115,2.73631,3.952435,4.041755,5.6336,5.39035,4.547515,3.01398,5.3961,4.650865,3.6435333333333335,7.93139,3.1623933333333336,2.1752325,2.4725966666666666,4.74339,6.6277,4.772725,5.07405,3.95288,4.82563,5.81915,0.4878392307692308,7.297695,4.443285,3.871575,3.651855,4.593835,4.034875,2.89756,2.50165,1.3371916666666666,0.5809215384615385,1.7820440000000002,3.0858633333333336,3.227455,4.240005,3.887495,3.687315,11.177303333333334,3.81193,3.974725,2.99324,0.6891216666666667,5.426396666666667,2.9810466666666664,1.5093733333333335,4.49042,5.659341666666666,2.678295,7.85021,4.31627,2.2414940000000003,2.2414940000000003,2.2414940000000003,4.4079,9.17931,3.725785,3.374575,3.374575,3.48091,10.0339,0.998175,4.68418,4.65331,4.110105,2.83394,2.3154600000000003,4.458755,4.00097,6.0274,6.091305,3.92851,2.894645,3.85684,4.277665,3.303635,1.181455,2.744706666666667,6.19724,3.1656649999999997,4.99023,0.95361125,3.6137,2.2496766666666668,2.5772533333333336,1.7746875,1.82139,2.1470433333333334,5.81235,2.08907,4.692705,5.66355,1.7773700000000001,4.475085,3.74679,4.647075,3.0213466666666666,2.31222,2.738075,4.16772,4.096430833333334,4.096430833333334,1.1305825,1.7976066666666668,2.73598,4.302891,2.2084945454545455,4.8166426666666675,1.7292660000000002,2.621863333333333,2.0723233333333333,1.654745,1.654745,4.83787,7.306016666666666,1.9954166666666666,2.8713800000000003,2.180615,5.156,3.167055,0.783148,2.81595,0.783148,2.699965,3.437455,5.23455,5.48025,3.72745,4.611572499999999,6.0822,2.40748,1.7911066666666666,3.1778066666666667,2.2287666666666666,6.24615,4.48062,2.53272,4.147855,2.73385,4.40047,1.07757,1.1640679999999999,1.8406166666666666,1.2408666666666666,2.52543,2.7975733333333337,2.227253333333333,2.5929066666666665,2.7807,4.42086,2.5520833333333335,2.4493666666666667,2.753246666666667,2.4264633333333334,2.779693333333333,2.6829366666666665,1.9420733333333333,2.5531966666666666,4.024275,3.85944,3.1709,2.75505,2.7763500000000003,2.1834825,2.137455,1.2508000000000001,0.29227949999999997,0.13341739130434782,2.16726,1.9040166666666665,0.13341739130434782,3.9418965579710146,2.0252425,0.13341739130434782,5.731990833333334,2.148285,6.17368,3.37945,3.1214666666666666,2.5544166666666666,2.83893,2.196045,4.375935,3.1680566666666667,3.1843,0.4186847368421052,3.9641216666666663,2.7189680701754386,2.9993,1.777675,2.564825,4.256815,2.301625,7.9596800000000005,4.919635,3.124145,3.822935,6.15898,5.92603,1.8101733333333332,4.1035475,2.09074,1.90493,6.2968,7.64991,1.2217033333333334,2.07942,3.69455,2.563795,2.86434,3.18924,2.89348,5.245340000000001,2.370195,3.148365,3.36132,3.28178,7.80087,1.3069066666666667,2.01139,2.858445,3.43579,1.6243166666666669,3.457915,1.57539,3.918775,3.361555,6.80261,3.44385,8.8388075,3.43377,1.50906,1.7067033333333335,3.033435,5.68228,1.62957,1.6057566666666665,5.81922,3.54296,4.08546,2.783945,2.0391166666666667,3.05063,10.45427,5.18785,6.20507,3.5645,2.297505,2.303755,2.643325,2.74549,3.34204,1.7178833333333332,1.6051666666666666,2.5078566666666666,3.525005,1.7823475,3.220625,2.76343,3.88432,3.769895,3.203125,1.199155,2.58999,1.1182666666666667,1.421396,1.613705,3.44396,3.409205,3.705835,2.77235,3.843075,3.9579,2.843155,1.474182,3.485265,3.6306374999999997,3.10298,1.742535,3.261,3.44538,1.495805,3.46096,1.6039066666666668,3.98228,3.846685,4.546875,2.85883,4.11832,1.771965,3.75668,5.86545,1.595865,1.0772928571428573,3.7064333333333335,2.73772,4.26404,4.16725,3.03739,4.78431,4.80357,1.9763766666666667,5.29865,5.49818,6.65075,4.21963,6.605006666666667,4.325695,1.7462666666666669,2.817686666666667,4.481915,4.6616,2.6503166666666664,7.285699999999999,1.152957142857143,3.3005999999999998,2.176885,1.7308,2.35763,2.7794333333333334,0.36555,2.8108766666666667,3.7207000000000003,3.554055,2.4284,3.6268333333333334,2.377686666666667,2.46416,2.2614575,9.003155,5.02155,1.9592300000000002,5.32665,2.386387108695652,0.7780916153846154,2.6975266666666666,7.455732666666668,1.7250139999999998,4.374105,6.162908333333333,1.48518,1.5725925,1.3919075,4.153215,3.251135,4.429315,4.16449,2.3975066666666667,3.685535,1.077726,2.9227826666666665,3.991175,4.1812,5.11445,2.633725,4.93434,4.344825,4.1766,4.677645,5.61705,4.97094,4.068305,5.81935,1.768242,1.8833175,2.79808,3.48824,1.1724222222222223,4.04562,2.335506666666667,3.3436333333333335,4.26283,3.3380666666666667,2.396853333333333,1.49214,3.1672266666666666,2.822385555555556,2.6839733333333338,2.89359,1.9602733333333333,2.00297,2.398565,4.01499,4.11199,3.81989,4.334585,3.34682,2.341245,2.92779,5.0355,3.8691999999999998,4.680945,3.35592,2.2968,4.501608333333333,1.7320733333333334,4.1885,4.725483333333333,5.858104761904762,3.861005,4.21063,5.49445,3.15962,3.768038333333333,4.60948,3.29314,3.7533035000000003,3.526025,1.4051525,3.228605,1.73388,2.30015,5.04985,5.1566925,3.7533035000000003,4.01968,3.377335,1.528685,3.41009,2.124255,2.3636,2.122405,2.678575,1.6253948484848484,1.6253948484848484,1.6253948484848484,0.5230181818181818,0.7757022222222223,2.0303255555555557,1.0584825,3.661425,1.3781183333333333,3.806625,5.29785,4.74898,3.2724,4.051345,3.237665,4.91155,1.573195,3.184595,2.70121,3.365115,5.848525,4.081605,5.42595,4.20387,0.9714475,2.297625,1.3321833333333333,3.829205,3.914555,4.334775,5.4501,4.79109,4.11864,4.65573,4.00367,1.65923,1.14516,5.505053333333334,1.1158222222222223,1.2570833333333333,2.6575966666666666,8.099635,3.059125,3.934345,3.047105,5.6608475,1.7132725,0.999855,1.5833875,3.1784,3.56248,3.92774,3.78252,1.905895,6.35029,2.95056,0.9211375,4.78266,3.0359499999999997,2.7225533333333334,2.38529,3.4465,5.59936,2.698646666666667,3.07587,3.619566666666667,2.5816399999999997,2.7944366666666665,2.84375,2.830675,1.99757,4.799055,4.76436,4.954325,1.051371111111111,0.759469,3.961933333333333,2.6797033333333338,1.044215,2.6327599999999998,3.84358,4.17514,7.08409,4.69646,3.5681333333333334,1.754066,3.566525,3.74769,2.64058,2.513708285714286,3.987485,2.8162533333333335,4.897632,0.8433222222222222,2.68786,1.6914280000000002,3.65499,4.316455,2.014075,0.979905,3.2333,0.430395,2.91591,6.78855,5.3991,2.846548,1.515994,4.254733333333333,0.8039766666666667,2.5559933333333333,0.8039766666666667,4.00325,4.614915,1.4228175,1.5255375,5.370711666666667,1.9009766666666668,3.596665,2.45587,3.58237,1.255938,1.4961399999999998,4.00917,4.51864,5.2302,2.969588,2.699,3.27475,1.626125,2.34915,1.781035,1.8423575,4.59466,1.3844555555555556,1.3844555555555556,3.353675,5.0948899999999995,8.316931666666667,4.345853333333333,7.80478,2.198245,3.860625,4.029165,1.74955,3.5827341666666666,4.079765,2.94651,5.87185,3.070915,2.499995,2.8637566666666667,3.54944,1.099975,4.272255,4.5381,1.1419766666666666,7.776003333333334,2.76861,3.14286,3.407113333333333,5.24355,5.00315,3.8263824999999994,2.31806,2.800273333333333,1.9593800000000001,3.836266666666667,2.3490125,2.17464,7.4988513333333335,3.4427,2.8452800000000003,4.29242,22.074813824175823,0.7020266666666667,2.680145,4.28687,4.626555,8.67117,4.592435,4.468705,4.450395,7.083036666666667,3.60055,1.5306066666666667,4.810733333333333,3.21433,1.17721,1.17721,1.17721,2.4451212499999997,1.7198425,3.332975,1.591415,3.1353,1.4862333333333335,2.54637,2.535795,2.975735,1.591415,3.161355,2.63808,4.208895,4.723245,5.06905,0.7720750000000001,3.33152,2.6167,4.885415,3.45994,2.80846,2.3761675,1.7088575,2.2551075,1.478344,3.46013,1.592015,4.348845,10.941920333333334,2.7834533333333336,2.43674,4.945884166666667,4.777966666666667,4.5007,6.4802,2.3002833333333332,5.516905833333333,4.461805,0.97926,1.2098942857142858,6.474766,4.262905,2.41709,3.644165,1.9346825,3.910335,4.87663,4.45195,3.958455,1.33415,4.1451,4.761595,4.66914,6.204064,3.48249,5.54245,4.37438,4.415825,5.26225,3.7004333333333332,4.775105,2.23624,3.279585,3.12821,3.428205,4.485465,6.1001,4.61062,3.1296466666666665,3.7291666666666665,9.103325,4.863815,3.2408566666666663,3.466205,2.960505,4.54323,4.2761,4.749785,6.769266666666667,3.42586,2.6325233333333333,4.040045,2.43963,4.213785,2.3815566666666665,6.36972,1.6610216666666666,4.484805,4.696145,11.9495025,0.46744142857142856,4.419355,5.26155,0.6730714285714285,3.665055,4.195145,4.088805,0.9861190000000001,4.737465,4.9559999999999995,2.70117,10.211658333333334,3.4123666666666668,1.9013666666666669,2.216265,3.502965,6.0751,0.5601775,3.877225,2.0194175,5.53865,0.7693,4.2184,5.6116,6.21475,3.56835,6.33015,4.62119,3.5907299999999998,2.5875666666666666,2.82783,4.307065,4.660875,5.0623,5.09905,5.6669,3.103343333333333,6.441268333333333,2.721375,3.0938735,2.20672,3.861355,2.2770533333333334,1.5555266666666665,3.1907666666666668,3.041776666666667,3.29204,3.5237,3.682933333333333,3.0034266666666665,2.58766,5.7062,3.21822,3.75909,4.734385,2.574586666666667,1.1718333333333333,3.17022,3.102323333333333,3.84517,2.7670933333333334,3.0643766666666665,4.848411666666667,2.0125966666666666,1.7218325,3.02199,3.7993,4.250685,1.1095825,4.054205,3.21687,4.191033333333333,2.9405933333333336,4.773154,3.91112,3.377005,3.79769,1.74134,3.793285,0.6537125,4.61024,5.06145,17.057826666666667,2.9989666666666666,1.1743666666666666,4.095255,0.6524078571428572,2.6635,4.39247,1.848855,1.2757714285714286,3.696565,4.508285,3.0405866666666665,0.75963,2.58099,7.94343,3.78841,5.4744,4.73583,4.93854,3.0191166666666667,3.9600333333333335,3.224273333333333,7.197205,3.72817,4.79594,1.98,0.43721388888888885,2.102445,2.95353,2.432365,3.667,3.83598,2.9935833333333335,4.944855,0.7141691666666666,4.681725,3.612505,3.04517,1.1902333333333333,2.7262766666666667,2.0329333333333333,5.36905,3.9568,2.27717,1.6451428571428572,3.4879,4.448735,4.302955,6.150381666666666,2.1495366666666667,4.631245,4.37743,3.841625,1.9580899999999999,3.640235,5.992493333333333,4.742515,2.541585,4.830605,2.94852,2.804345,3.869915,3.952245,1.3362916666666667,4.57583,2.134933333333333,2.5721700000000003,5.239926666666667,5.239926666666667,5.24615,1.589918,5.1403,0.8860675,1.824874,4.97387,2.5611966666666666,1.4355466666666665,3.1291166666666665,0.92943,4.3942000000000005,4.91333,2.65429,4.97481,4.07862,3.715465,5.1859275,3.568835,3.9606333333333335,2.762283333333333,2.34045,2.82905,2.967776666666667,4.405865,1.585524725274725,2.904583333333333,4.49041,4.71516,2.2396483333333332,4.26543,4.519995,4.985286666666667,3.3925666666666667,5.11585,4.76651,5.38415,4.842165,3.587705,3.78003,3.674365,4.55958,5.74985,4.617505,4.844995,4.52582,4.66113,0.6989774999999999,4.938835,4.592595,3.974555,7.319575,4.087365,3.849545,4.383085,4.965505,3.598545,3.59532,2.11104,4.520975,1.69014,1.3744157142857143,3.67885,2.0305433333333336,2.4886266666666668,3.812155333333333,3.539,2.98503,1.0664533333333333,1.9077625,4.52795,3.573915,1.864855,1.864855,3.486055,1.607478,3.0860833333333333,4.448585,3.541665,3.70016,1.4621333333333333,2.026785,3.4517816666666663,2.190355,4.05947,4.665765,4.544005,4.03307,6.533463333333334,2.7131,3.69574,4.38341,4.3897,3.3036266666666667,4.049335,3.95074,4.284315,2.14864,2.4523033333333335,4.361175,3.9871,3.68447,3.63342,1.7060325,3.568215,4.35538,4.51568,4.240335,3.883555,3.883555,3.0721641666666666,3.759625,4.19501,4.18883,1.6654699999999998,7.5357375,3.88365,4.885865,4.31899,4.2828,3.948385,5.14065,2.94058,3.15282,2.93274,4.989605,1.9287299999999998,4.263535,5.657165555555555,5.10355,0.701327,4.7914650000000005,1.1743999999999999,4.96548,4.674955,4.481535,4.14391,5.2744,3.6623666666666668,3.6623666666666668,0.873441,2.2628225,4.96576,3.42478,4.097165,5.2779,5.57425,3.517445,4.12817,1.3750616666666666,2.60407,1.703655,1.2945875,4.310519333333334,0.8739229999999999,2.3748533333333333,3.22167,1.1672133333333334,2.233115,2.6695933333333333,1.2287366666666666,6.32051,1.9834975,2.6393633333333333,5.56225,1.8532425,2.8386866666666664,2.808825,4.558175,3.7382333333333335,3.272726666666667,3.9169,1.71118,2.1259175,4.282395,0.6487142857142858,2.18174,2.354616666666667,3.2218766666666667,2.873083333333333,1.125317142857143,0.8358166666666667,2.47097,4.20893,1.1725114285714286,2.123565,1.16583,5.21383,2.24104,5.0737,4.34884,4.26084,4.99826,5.422,4.12219,4.253335,1.52337,3.9014666666666664,1.760518,2.480583333333333,1.2513142857142856,4.38097,2.05841,7.6182300000000005,4.20886,3.801655,1.427724,6.9662825,3.8453,1.4878283333333335,4.15648,3.04607,3.774065,3.23915,1.959185,1.959185,3.3633666666666664,1.2024933333333332,1.2024933333333332,1.9580899999999999,2.8466199999999997,2.08583,1.334055,3.6405333333333334,1.0571475,3.20162,2.3574575,1.8692925,1.4977716666666667,2.179625,2.07554,0.29036588235294114,2.4205875,1.1700783333333333,2.2902533333333333,2.0723233333333333,2.56015,1.0504633333333333,1.0614979999999998,3.8723333333333336,3.13035,1.959185,1.7306775,1.9589533333333333,2.4935133333333335,2.3942,1.8620139999999998,3.19706,1.15042,3.3537,2.7030666666666665,2.5884,1.54062,0.98558,2.618225,0.98558,2.618225,0.65350875,0.65350875,0.49296333333333336,2.331145,2.39218,0.65350875,2.1926075,2.308526666666667,2.362055,1.6740975,0.7556455555555556,0.65350875,0.65350875,1.647164,1.647164,2.0327375,1.7306775,0.65350875,2.33034,0.46662461538461536,3.107666666666667,2.01848,2.51974,2.5667466666666665,2.5667466666666665,0.38558400000000004,0.38558400000000004,1.9580899999999999,1.974822,2.1403600000000003,1.9886620000000002,0.38558400000000004,3.5839666666666665,2.356465,1.605806,0.61567875,1.605806,0.61567875,9.40539,2.4412533333333335,3.9598999999999998,2.5895033333333335,2.96861,3.08909,2.928463333333333,3.4992,2.594825,1.77105,2.651386666666667,2.948206666666667,2.3786,1.647164,2.6424695238095235,2.6424695238095235,2.73081,2.142315,4.280135,2.3600966666666667,3.2875599999999996,2.6768033333333334,1.4271,2.3784225,2.3577525,0.8147754545454545,1.70947,3.562005,1.657648,3.10149,2.6034166666666665,2.700475,3.827833333333333,1.6623400000000002,3.3989666666666665,3.162803333333333,4.3299666666666665,1.267086,0.23288275862068963,1.3281828571428573,1.3281828571428573,1.0278766666666668,3.00643,3.8806333333333334,2.5546666666666664,2.1212033333333333,2.1212033333333333,2.119025,1.6039066666666668,0.993126,1.74279,1.74279,0.65350875,1.9580899999999999,2.88489,3.2187333333333332,2.3574575,2.24686,2.24686,2.24686,1.109741111111111,1.4728999999999999,1.4728999999999999,2.520075,2.8431566666666668,2.562994696969697,3.53058,2.52957,2.5476533333333333,3.465805,3.762485,6.399815,3.600625,4.54345,4.0437,13.765505000000001,5.0271,3.447365,0.933855,3.81047,3.436405,2.419765,3.698605,5.00925,7.150139333333333,6.0842,0.48535882352941173,3.671845,3.14888,3.957235,2.45202,4.27818,5.13105,3.6153,7.94274,3.5207,3.934875,3.931485,3.231624090909091,7.985742666666667,3.26542,2.6494266666666664,3.564675,3.893075,5.0004,3.921975,6.677619,3.64505,1.372328,3.221085,0.89857375,4.625625,3.15979,2.686245,3.980645,4.51626,2.667865,4.64132,3.967345,7.366835,4.025395,4.663292,2.396716666666667,5.09045,3.01775,1.0768125,1.0768125,3.45477,3.8869,2.278605,2.06456,4.08226,2.84374,2.89939,1.89059,2.020385,2.827365,2.5700166666666666,1.1155925,3.13827,4.76189,8.32423,1.532408,2.630785,3.07599,3.130735,2.78018,8.38745,4.11809,3.4811,2.9423999999999997,4.138305,3.3861333333333334,2.8772699999999998,3.1428266666666667,3.820705,3.98044,4.557035,4.16864,0.386042,1.5409833333333334,2.4804833333333334,1.7759975,4.628485,3.53402,2.6458833333333334,2.1985675,4.4177,3.71825675,2.05492,2.32728,0.8997109999999999,2.2116775,2.6173866666666665,2.6173866666666665,5.2972,1.88873,2.94491,2.2994499999999998,2.10885,1.7138733333333331,3.07958,3.82808,5.1922,4.477155,5.2747,4.74339,2.792795,2.7721999999999998,2.0553999999999997,4.790705,5.406883333333333,1.9330466666666668,2.9437166666666665,2.1512175,2.176156666666667,3.8338583333333336,2.2192433333333335,5.23205,4.011415,3.58272,4.442705,2.942213333333333,3.57208,3.921135,2.2911533333333334,2.4531533333333333,0.4137307142857143,3.778866666666667,2.71937,3.13448,6.22625,4.83024,5.761984166666667,1.8698275,1.5492366666666666,3.128435,5.17515,6.21775,6.12395,3.0380833333333332,2.20948,3.588085,2.24281,4.673445,2.113986666666667,2.434075,5.3449,4.837305,4.57682,1.7715025,1.93587,1.0993439999999999,1.0993439999999999,1.2497820000000002,0.9005242857142858,0.703998,1.8087042857142857,4.38231,9.854015,3.904375,4.3514,4.04094,5.9074975,2.74887,1.6843733333333333,3.527396666666667,2.93865,4.64247,2.34851,2.5928833333333334,2.87072,3.16801,2.1910933333333333,3.196806666666667,3.2272366666666668,2.892796666666667,3.4433000000000002,3.322286666666667,2.8805300000000003,2.7543433333333334,3.2266666666666666,2.41975,3.1114566666666668,3.0948333333333333,2.9056800000000003,3.3495333333333335,2.14542,5.75085819047619,3.1182,4.185486666666667,3.2131566666666664,2.96895,3.7543,2.8420400000000003,2.691613333333333,3.0931266666666666,3.1860166666666667,3.4621666666666666,3.1478266666666666,1.822145,2.668646666666667,2.7711799999999998,2.776825,2.776825,3.2606366666666666,3.196213333333333,2.4834166666666664,2.860993333333333,2.98218,4.1297,2.8104066666666667,2.80795,2.62251,2.901956666666667,4.248691666666667,4.886295,1.6091,3.4412000000000003,3.7308333333333334,3.2772900000000003,3.2589400000000004,3.795866666666667,3.465033333333333,2.74451,3.5039739999999995,1.948094,2.6959235,3.4243,3.3583,2.559416666666667,2.48954,4.0075666666666665,2.91398,2.9778633333333335,2.405165,1.1757366666666667,3.199953333333333,2.5645599999999997,2.1855466666666667,2.3585,3.040016666666667,3.23705,1.9323380000000001,5.666651333333333,2.3898966666666666,0.8978339999999999,4.193155,1.8561533333333333,1.5936116666666666,4.462765,3.86504,3.40838,2.288255,1.3676525,3.404015,2.825875,2.769335,0.39916999999999997,2.05266,0.39916999999999997,1.8276,1.3676525,2.559145,3.637555,2.2053625,3.226585,3.30331,0.4653986666666666,2.7914033333333332,0.9545175,0.44434294117647055,3.69448,3.938785,4.831,2.4859625,5.3535,4.02902,3.8714,2.18762,4.239133333333333,1.678558,5.76295,2.283145,4.27463,4.754765,3.0745766666666667,1.87836,2.0880633333333334,1.3629883333333332,1.836445,0.9416725,0.9416725,4.572935,2.2997466666666666,6.107571666666667,2.45978,2.556695,2.01122,2.2681675,2.2804825,6.0056,4.3677875,2.087305,2.3570733333333336,2.2681675,1.69138,3.79436,2.12293,6.381578333333334,2.45978,3.28262,3.320775,3.070726666666667,5.4519,5.02665,1.9010525,1.797945,2.3248325,2.37525,4.97952,5.21935,1.9208225,3.768265,1.5773366666666666,1.5467975,5.37805,9.83668,1.8955066666666667,2.0037,2.5010933333333334,4.29802,4.17016,1.9101575,4.77856,4.628195,2.859795,39.380373511904764,2.8582933333333336,3.0051433333333333,0.44130722222222224,4.626799166666666,2.3170933333333332,0.931011111111111,3.497665,3.58829,1.88575,1.7992225,2.40443,3.848245,1.3459514285714285,3.082192666666667,3.846,4.933815,0.93353,4.849615,5.12445,4.886375,2.82949,1.6256075,3.7871775,4.496085,3.545625,3.189375,3.629155,4.05052,11.626329646464647,2.6467666666666667,3.2333,3.867675,2.632445,4.50699,3.11451,3.046855,2.820195,6.386262500000001,4.62706,5.07205,5.0326,2.450205,3.656355,4.318065,3.578495,4.662115,4.497875,0.1198086956521739,2.408775,5.19165,2.805145,1.6092700000000002,1.1843333333333332,1.1843333333333332,2.1651675,2.656865,3.17736,1.8185300000000002,3.0367366666666666,4.38787,2.564425,4.392519166666666,0.5778564285714286,4.797955,3.47315,4.745525,4.76245,4.54732,1.127375,0.9551025,4.454733333333333,2.9411,2.999476666666667,3.880435666666667,3.70656,6.18535,5.37025,3.948665,3.4868,2.1200983333333334,1.50903,4.352515,0.31906533333333337,3.403075,3.75927,4.058635,14.04268,1.83898625,2.967026666666667,0.62989875,4.52097,8.606705,3.41661,1.7279833333333334,5.90405,3.2470266666666667,1.0613322222222221,5.14965,2.662355,2.869345,4.872855,3.392160138888889,1.152375,6.6847916666666665,0.74114625,5.1639,3.151875888888889,1.39521,2.1200931388888886,3.206195,3.206195,3.844025,4.30277125,1.3675125,2.37636,2.85305,3.701665,3.469235,2.58275,3.241415,3.48184,6.758286,6.3456,4.02615,3.287015,4.584315,4.47564,3.54252,3.40708,3.613205,4.012885,4.778995,2.547286666666667,2.5861366666666665,1.650635,2.31801,2.238455,1.5512325,3.3131299999999997,3.659466666666667,3.455133333333333,3.286,2.5868800000000003,1.4637733333333334,1.5315466666666666,0.4724536363636364,2.7768800000000002,1.6692285714285713,1.8381575,3.6513333333333335,2.4784133333333336,2.6183633333333334,0.95133625,2.312045,2.464755,2.814595,3.56317,5.39105,3.72272,2.99767,2.2534033333333334,3.407515,4.47905,2.278215,4.870425,1.995555,3.72844,2.777035,4.15011,1.3695833333333332,0.6106469999999999,2.2982725,3.295455,3.18736,3.94095,4.71688,8.8364,3.3224633333333333,2.2471366666666666,1.7490766666666666,1.737274,1.737274,2.9500766666666665,2.4084333333333334,4.87072,4.687315,3.497615,4.91124,4.172795,4.2549,3.166340833333333,4.62466,8.31109,2.504875,0.50047,3.224413333333333,1.37246,1.0230557142857142,1.7158766666666667,0.8066800000000001,2.1600875,5.4483,4.998695,6.0029825,1.1342025,7.16638,2.03232,1.5417100000000001,2.5061733333333334,3.904285,3.2515533333333333,2.3173125,3.644465,3.0317233333333333,4.323833333333334,2.89064,2.7253366666666667,2.9960833333333334,7.03027,2.480265,3.891995,3.808841666666667,3.5059875,1.3756599999999999,1.221135,4.25704,2.829693333333333,3.5139333333333336,5.6425275,2.54166,1.9381,2.293575,3.26191,3.9022,2.43017,3.7843725,3.06094,5.46305,2.47707575,1.9195575,4.83057,5.44695,4.2034,4.01928,1.5196533333333333,2.24595,1.92589,3.38425,1.5163666666666666,0.8936983333333334,2.6348833333333332,2.107475,2.0101375,4.48379,0.7507116666666667,5.700635,1.376455,0.7802736363636363,3.615066666666667,4.017225,0.6601785714285714,3.4436005,3.2685737500000003,0.8358166666666667,4.090045,0.1775459523809524,0.1775459523809524,0.1775459523809524,0.1775459523809524,0.1775459523809524,0.1775459523809524,1.958882,3.776375,1.958882,1.958882,1.8759499999999998,0.1775459523809524,0.1775459523809524,3.3800000000000003,2.5740833333333333,3.247875,3.380225,2.25125,3.58389,1.307292857142857,1.5642179999999999,3.303635,1.337324,2.6381900000000003,2.6338733333333333,5.729093333333334,4.29948,3.88252,6.56775,4.5664,4.77455,4.20902,4.11413,7.542625,4.064466666666667,3.746366666666667,2.40223,5.01529,2.59604,2.14171,1.7725166666666665,4.69972,5.54165,5.0819,5.259,5.47145,4.265555,4.57853,0.7130072727272727,0.702055,0.702055,4.642115,2.3186766666666667,3.721815,1.0122057142857144,4.59191,1.4684000000000001,2.3332833333333336,2.6059,4.5258,4.5258,6.84155,4.93933,1.328805,9.526705,2.9428866666666664,1.2854555555555556,5.1421,5.10295,3.503605,3.00322,2.5429,4.337933333333333,0.78232,3.2925166666666663,3.4596666666666667,3.9044000000000003,3.2805433333333336,1.5017166666666668,1.4502499999999998,4.852800833333333,3.1761633333333332,3.14845,3.381933333333333,5.2934275,3.4933691666666666,0.7802450000000001,1.9541133333333331,3.5994333333333333,2.2353433333333332,3.6661333333333332,3.4469666666666665,3.1240466666666666,3.3994,3.081243333333333,2.5942233333333333,1.3069766666666667,3.1245366666666663,2.4615966666666664,3.57262,3.10358,3.78621,2.6623733333333335,3.3266233333333335,2.89725,1.615542,1.7882,2.7575233333333333,3.663766666666667,1.717364,3.22936,1.7838166666666666,3.8325333333333336,5.255621666666666,4.9615306666666665,2.56265,2.586225,2.803325,2.48043,1.6377142857142857,2.2268425,3.3453246428571433,2.4473925,3.6419333333333337,2.76507,3.733594,3.11685,1.2437555555555555,1.2815425,1.794775,2.2384325,2.993646666666667,3.5726666666666667,5.09545,8.133,2.60533,5.3103,3.70913,15.242177333333332,0.480857,11.0807375,0.830081111111111,3.259425,3.6839,2.865486666666667,2.880175,1.5780239999999999,1.474182,2.4271966666666667,1.214456,2.7421733333333336,2.0378066666666665,2.7456099999999997,2.0504866666666666,2.7156366666666667,1.5356133333333333,0.6530183333333334,3.1958266666666666,2.4594766666666668,2.9762233333333334,1.109741111111111,3.3172766666666664,0.75067,0.34940307692307687,2.0017866666666664,4.435115,4.706855,4.392325,0.7748263636363636,4.009675,4.60717,1.13091,2.324625,5.487030000000001,3.484395,3.798295,3.869925,3.92105,1.98574,3.789055,2.66589,2.742785,3.550625,2.723835,2.780275,3.91027,3.238665,3.700565,2.05478,3.448655,4.53587,1.3102466666666668,4.57488,2.23025,3.9865,5.325203333333333,1.99202,2.75192,2.9854566666666664,5.784795,2.46799,3.24583,5.01845,3.9598999999999998,4.12887,1.7350433333333333,2.71285,4.399415,3.5528,4.25208,3.5529333333333333,3.1308133333333337,2.9685433333333333,4.187833333333333,3.3203533333333333,2.697036666666667,2.8231466666666667,0.45411888888888885,2.391115,2.1094,4.532205,4.7422,3.11561,2.7020700000000004,3.31995,7.905835,3.4560837500000003,4.04551,2.809006666666667,4.368525,3.041565,3.7218225,2.7638200000000004,2.2354575,2.7132233333333335,6.4867,4.730065,2.073186666666667,3.34398,2.993715,2.6384133333333333,4.2701226666666665,1.776786,6.116569999999999,3.839895,5.05715,4.427595,6.4656,3.64258,6.808228333333334,3.60521,3.18152,0.6254085714285714,2.19145,1.4975975,2.81699,3.34981375,3.85049,4.12351,5.14695,2.69328,4.70346,3.7324,3.6311999999999998,3.4184,4.563435,4.828145,4.496955,2.7359266666666664,5.805465,4.68723,1.560335,5.39885,3.51623,2.670465,2.23477,2.27475,4.420699333333333,1.2342657142857143,2.43053,2.0092525,3.90399,4.110635,2.643056666666667,3.532033333333333,3.0345940000000002,2.22122,3.942035,1.344814,2.3330433333333334,2.366966666666667,2.7928200000000003,2.56384,2.62059,2.7224466666666665,3.9035,2.9642866666666667,2.7867566666666668,4.02832,2.24146,3.71436,3.597505,1.687984090909091,1.687984090909091,4.492925,2.6969100000000004,1.79474,1.30387,1.9845525,1.9593025,1.2916940000000001,1.44331,0.659826,1.6215566666666668,1.4784666666666666,3.005043333333333,2.24791,1.7073866666666666,2.003346666666667,2.3132566666666667,1.4747700000000001,1.7562433333333332,1.8098666666666665,2.524725,3.945605,2.85928,2.9423033333333333,2.704125,5.6569,2.952775,4.35549,3.926618333333333,1.964735,4.087265,2.903795,1.791525,3.628885,1.685345,2.8148,3.58389,1.9502,4.8427,3.77846,4.14196,3.3468666666666667,0.7797877777777777,4.860785,3.917875,3.36443,3.526435,2.2238533333333335,4.30197,4.87227,4.948287499999999,9.137259166666666,3.416405,4.41404,3.0735533333333334,3.55498,4.58544,2.400615,2.68589,4.035485,2.10362,5.965965,1.8539819999999998,2.616225,5.59256,2.9514333333333336,4.357965999999999,1.1805371428571427,4.512485,4.327325,3.1279,4.947575,4.78714,6.518575,15.856557916666667,0.6182058823529412,1.0504633333333333,3.0440766666666668,4.02174,3.74386,2.1125975,3.28611,4.10164,5.0104,2.49774,4.62848,1.7511666666666665,1.7511666666666665,5.1865,0.7562227272727273,1.7391960000000002,3.07042,3.978965,0.37483999999999995,1.9290233333333333,3.99814325,1.1789166666666666,3.0249699999999997,2.77599,2.97739,8.07446,2.5398866666666664,3.9750666666666667,1.9759833333333334,2.21093,3.6136525,3.468185,3.40441,7.3551538333333335,2.0465425,2.739825,4.535905,6.62021,1.9148333333333334,2.2946466666666665,2.6404,1.36575,2.49628,1.71435375,3.919425,3.58956,1.4899675,1.8828376666666666,1.8828376666666666,2.894553333333333,5.65,4.138515,3.79943,4.61065,4.24474,3.24311,3.861685,4.26323,3.52783,4.27863,3.644275,4.43649,0.8922399999999999,0.359689375,5.23755,3.855305,2.41603,7.96634,1.6163333333333334,4.689566666666667,3.923845,0.3507525,2.0034466666666666,1.3475366666666666,1.83362,2.064083333333333,5.446657999999999,3.121115,3.197045,4.683895,4.683765,4.63349,0.5864438461538461,2.082975,0.604842,5.840856666666667,1.413456,4.96494,1.9135375,3.1428875,3.247985,4.015525,3.991675,5.28745,0.8619509090909091,3.122505,3.85961,1.8416725,1.72381,3.6491,3.17426,3.76682,3.8489125,5.543919047619048,4.73884,5.84345,2.8230166666666663,0.6907966666666667,3.4507666666666665,3.66015,0.5250446153846154,4.02601,3.98068,4.15652,3.11638,2.662123333333333,5.28635,3.191655,3.15051,2.20467,3.918525,1.706934,4.366505,3.690785,0.5996223076923077,3.90662,3.972945,3.255315,4.052575,4.45936,2.658455,3.87233,0.620966,3.1237100000000004,3.6797444444444443,4.548435,3.6322666666666668,2.543375,3.465533333333333,2.543375,5.03945,3.14294,2.8877699999999997,1.4363083333333335,3.29236,1.8023425,4.127585,2.809343333333333,5.13197,3.19347,2.7326866666666665,3.0353833333333333,2.43636875,2.43636875,2.43636875,2.251183333333333,1.0795483333333333,4.651235,2.255673333333333,1.6987166666666667,4.116433333333333,2.5312666666666668,3.0455366666666666,3.891505,5.72725,3.28429,1.8280225,1.039554,4.01703,1.94,2.1665533333333333,2.99761,3.333415,2.0448525,3.499355,2.800115,1.665052,5.0631,4.174875,3.38107,3.714045,0.7539744444444445,2.38684,4.61768,7.613825,4.25976,3.04494,4.370565,3.403535,3.783045,1.7101325,2.561625,4.574465,2.0903975,4.376705,3.31965,5.2162,8.479383333333335,3.96667,3.322585,3.38728,4.99596,3.990605,3.1568925,3.1568925,3.955055,3.869158333333333,4.206385,3.802795,4.23632,4.54677,3.992265,1.1118875,4.27664,4.14115,5.25445,7.947055,5.0114,3.820644,1.8339800000000002,1.5426366666666667,2.3389937499999998,4.791205,3.89007,4.91433,2.1525933333333334,4.05867,5.03095,5.23325,5.00125,3.1021433333333337,3.33011,4.055455,5.1313,4.47716,3.778325,6.665586666666666,4.45456,2.2347466666666667,4.96088,3.87668,3.861505,3.78375,4.493115,0.7994072727272727,4.29924,4.472615,1.1821985714285714,1.2469620000000001,4.85633,4.483475,9.041078500000001,4.89455,4.200845,6.0139,2.940305,2.55432,4.99933,1.6962775,1.6962775,2.86184,1.6489500000000001,2.937925,3.4646333333333335,1.94581,4.282426363636364,1.3917466666666665,2.11887,5.58791,3.351911666666666,3.66541,2.964235,4.155865,4.23444,2.9941433333333336,0.9822655555555555,4.04745,3.05673,3.96202,4.147185,3.71767,5.6171,4.791645,4.59412,4.65474,5.19175,6.5425,4.741035,3.286495,3.256635,2.0407025,2.0407025,3.87816,3.979955,2.309696666666667,2.818913333333333,2.2064542424242424,2.7344666666666666,2.0442466666666665,2.0442466666666665,4.30473,3.544865,2.078305,3.602905,2.6855,2.00784,1.2164,1.132011111111111,2.723735,0.44419684210526317,0.9414155555555556,2.888835,3.807605,0.4489154545454545,3.73979,1.91498,5.54355,3.474875,7.0223075,4.34013,5.1453299999999995,4.825435,5.0713,4.100525,1.941515,1.7707540000000002,3.640635,2.93582,3.74882,1.3437066666666666,3.15169,4.66367,2.76345,2.55332,2.505585,4.155445,3.29072,3.21461,3.93554,3.609645,3.31636,3.188975,1.0583257142857143,1.7758,2.24987,2.90156,4.311465,7.42671,0.9116139999999999,1.51522,1.51522,1.865066,3.89109,2.7782,3.03082,5.2576,2.893126666666667,1.2104325,1.2104325,1.2104325,2.955465,2.96529,4.666555,3.171715,4.26665,3.33682,3.67991,2.983055,3.3202958333333337,3.61125,4.2672425,2.6941775,1.2916940000000001,3.084385,2.6941775,3.54783,1.3539766666666668,1.9521499999999998,1.8132525,5.416554,2.98538,6.234844000000001,5.416554,3.249464,1.9186016666666665,1.9186016666666665,2.202735,6.03974,1.9186016666666665,2.18651,5.5637,2.181035,2.58667,4.59839,3.486145,4.01386,2.1636533333333334,3.268975,4.61283,2.2157033333333334,2.226095,3.90455,2.1636533333333334,2.65049,1.923315,5.56641,2.42841,1.11648,2.511005,3.143155,3.1571676666666666,1.88424,1.999761,3.60125,1.8584026666666666,1.534525,3.28218,2.237425,3.25955,3.31115,2.090266666666667,3.01773,2.242605,6.3069,2.44358,3.033395,3.08063,3.08063,8.866216666666666,1.1137966666666668,2.88234,2.590465,3.376205,2.150035,1.2338966666666666,1.2338966666666666,3.48074,2.232165,6.741985,2.349765,3.518585,3.27852,7.05447,2.611685,2.52125,5.83478,5.83478,2.5002,1.6193825,1.313405,1.313405,1.6193825,2.0537199999999998,1.27976,1.1790383333333334,1.6128666666666664,1.9509699999999999,3.732485,1.910135,3.32847,2.83256,3.132805,2.68401,2.70904,2.06026,3.3930125,3.3930125,6.15694,2.38349,2.93318,3.004655,3.338645,2.287,2.804655,2.28751,5.3992474999999995,1.9970425,1.6466743333333334,1.4822893333333333,2.434517666666667,5.57515,4.486037666666666,3.7915916666666667,3.28665,1.705585,1.705585,1.705585,4.95769,2.404155,1.1790383333333334,3.43329,3.559805,1.3832075,5.329175,3.2238075,6.65418,4.22409,1.638395,3.552365,2.4571666666666667,2.11719,3.666545,4.51501,3.06812,1.644085,2.183425,2.96962,2.828805,4.72395,2.073095,3.32411,2.62522,5.80424,4.83087,2.0801,2.2864,5.33888,5.12797,5.31224,6.00161,1.081068,1.081068,2.860234,2.860234,0.728784,5.14181,2.91574,5.26278,4.39477,5.35688,2.13306,4.333254999999999,4.333254999999999,2.1854,3.38418,3.768485,1.173286,4.2649,3.19246,3.30357,2.482985,4.6579,2.544275,2.403015,3.14812,2.879685,2.960555,5.07387,2.26703,1.618795,3.652075,6.18569,5.91084,4.44427,2.787145,3.98946,2.232795,5.49482,2.61918,3.39352,1.921105,6.89198,3.78704,2.221455,3.20689,2.782945,5.02987,2.312375,2.985545,2.819,7.12007,4.71983,3.381065,2.07608,2.24495,6.42089,3.17685,2.65029,5.78945,2.982895,2.99032,2.73266,3.06747,1.8873233333333335,2.01037,1.5608199999999999,1.7855033333333334,1.96314,1.9516533333333335,1.613705,2.0780966666666667,1.54691,1.8873233333333335,3.66544,4.27177,2.12245,1.636605,1.636605,3.493943333333333,3.493943333333333,3.1022799999999995,3.1022799999999995,2.778875,2.17393,1.78522,3.9577,2.2098125,2.2098125,2.4121275,2.4121275,2.94511,2.132345,4.51805,2.1876,3.111265,2.136623333333333,2.136623333333333,1.30569,3.92716,4.74611,1.3539766666666668,4.46517,2.090266666666667,2.167135,4.14325,3.139335,1.834805,2.409165,6.68161,2.04801,5.8308,3.08473,3.283875,3.176155,2.40722,5.68821,3.17245,2.266145,2.531818076923077,2.656465,6.40658,3.61352,1.4876340000000001,1.4876340000000001,3.64497,5.07147,4.76407,5.27395,2.773015,2.813555,1.55262,2.927965,1.53183,3.034855,1.91912,0.8117300000000001,0.8117300000000001,0.8117300000000001,2.0180075,5.16936,2.0180075,2.011705,3.480345,1.626945,2.307965,3.94362,3.32361,5.33448,1.5836733333333333,5.11445,1.5836733333333333,1.5836733333333333,2.300675,2.03678,2.287515,5.5459,2.287515,2.483165,3.65397,2.065595,1.73145,2.74607,3.0531566666666667,3.3019458333333334,3.0778199999999996,3.50079,1.3209633333333333,4.00416,0.7622245454545454,4.241135,4.3135475,2.6871799999999997,2.6871799999999997,0.7114754545454546,4.0205,2.7661433333333334,5.6864,4.920845,4.04005,5.38745,4.338855,4.00827,5.2616,4.25404,4.308575,3.79833,3.903765,4.86285,5.31675,3.2984,3.54199,4.097135,2.459283333333333,1.2594319999999999,4.294255,3.50988,3.381985,1.262112857142857,3.77291,3.9659,6.1644175,1.0463675,5.51575,4.15546,2.218985,1.970555,3.209545,3.619415,1.65467,1.4876340000000001,4.294925,5.0594,2.70736,4.66335,3.0906,1.13741,3.2322066666666665,1.2065628571428573,3.114126666666667,2.11537,3.01097,1.90767,2.6378033333333333,4.21186,3.314995,4.508565,3.240145,2.20025,4.66635,4.40315,3.18055,5.4319,4.25782,2.7359633333333337,5.90385,4.775405,3.1301433333333337,2.6193833333333334,2.4159,3.0420933333333333,3.26552,2.76891,4.967665,4.14834,3.803405,2.4666566666666667,2.64729,2.3916233333333334,2.4145566666666665,2.3028866666666667,2.35095,2.280256666666667,2.3157575,1.3397125,2.934260666666667,1.195745,1.749385,1.687245,2.7126,1.719975,1.86852,3.78677,4.426915,1.9879175,4.02926,3.68858,6.550504999999999,2.0973666666666664,1.6314959999999998,6.6981,3.42077,4.510735,4.45442,4.05107,2.24759,3.750395,2.373245,2.82275,4.340605,0.7058741666666667,4.130135,2.1272066666666665,0.7798972727272727,4.7355,4.56366,4.000065,1.8771464285714288,4.864275,6.09275,2.817816666666667,3.471633333333333,2.481203333333333,2.1704,0.604518,3.2956800000000004,2.976525,4.941065,2.40298,2.1469525,3.492155,1.026265,1.9211133333333335,1.9211133333333335,2.766645,1.9211133333333335,3.898895,2.740165,4.46856,4.316495,5.90075,13.511457499999999,3.18153,4.827405,2.73916,4.70089,3.10674,6.25047,2.8360266666666667,4.832635,4.847815,4.092125,1.1410933333333333,4.631845,3.155,2.6197,1.0227444444444445,2.16932,3.371135,6.870265,4.068795,2.8466199999999997,4.7066,3.3633666666666664,4.233365,4.40498,4.515415,2.96356,2.88371,4.030235,5.57915,2.37581,4.333235,2.0338175,2.0338175,3.094135,4.997385,1.0331225,4.186590000000001,2.3706725,4.82711,2.59747,2.6248066666666667,3.107326666666667,2.23829,0.7295642857142858,3.500285,2.7708866666666663,5.32615,4.59227,0.2296446875,5.021,4.536535,4.14729,6.600176666666666,2.9085866666666664,2.873146666666667,2.1199266666666667,3.102676666666667,2.74864,1.2995066666666666,2.8869666666666665,2.5167733333333335,1.4038833333333331,3.179373333333333,3.066796666666667,2.5823466666666666,2.8817533333333336,1.2212316666666667,4.20963,2.5762,4.9249,4.025945,3.7319,1.64489,2.47439,1.2552025,1.819815,1.2552025,5.08495,3.363566666666667,1.524132,2.3365025,3.996255,3.792635,2.971955,3.938555,0.3511695,1.2561516666666668,3.853265,4.30889,6.3861,1.6949825,2.7521966666666664,3.0990566666666663,2.1322466666666666,2.67232,3.793705,4.71297,2.3454075,2.125783333333333,2.7896300000000003,2.662386666666667,2.6977966666666666,4.45109,2.012105,4.50206,3.8219141666666667,6.19715,7.391225,0.740658888888889,0.854196,3.881615,6.787017499999999,2.10798,3.582405,1.6514133333333332,1.6514133333333332,3.43967,0.4426733333333333,3.549745,3.724965,2.68634,3.813475,3.257615,2.64451,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,0.24003,2.34351,2.857975,4.1413,3.233415,4.363747500000001,5.4835475,2.97202,2.24342,1.022385,3.388755,0.6761625,4.93435,2.69093,2.1524,0.6761625,2.28948,2.731025,0.8245025,3.8215975,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,0.162672,4.23736,1.5339925,4.469645,4.670955,1.8105,4.87076,3.820475,5.18135,4.527058333333334,3.401334642857143,3.333695,4.64814,1.93267,5.429505000000001,4.56045,0.7853357142857142,1.4311,1.353557142857143,3.10285,3.10285,3.013275,3.95381,4.28323,3.68208,3.904955,2.80618,1.9649066666666668,0.67836,4.18845,3.033165,2.68289,4.314955,3.34637,3.0098,5.3235,4.479085,6.658189999999999,4.148115,4.456655,5.9019,4.83985,1.400132857142857,3.066,5.34267,33.03454775721501,1.2607333333333333,4.278745,2.92141,4.532885,4.064655,4.8227,4.90119,0.4165071428571429,5.37075,4.41976,1.957645,1.977295,3.68607,1.62957,2.48116,2.172205,1.7734025,2.85867,2.3942,2.835585,2.69022,0.5988653846153846,3.08785,3.81049,0.3587605263157895,2.4402766666666666,2.74484,2.69653,3.878165,1.75693,4.471745,3.985945,3.148805,3.599805,3.10796,4.142975,2.920485,3.87854,2.1278425,5.34267,3.49753,3.19247,2.78696,1.69781,3.80174,3.38857,6.85359,3.33871,4.969005,6.013380000000001,5.294907,2.345195,4.52233,6.2355275,7.8460399999999995,2.53068,2.518265,4.67883,5.74346,4.241475,3.25439,5.307829999999999,2.77705,1.64645,2.25767,60.605144970760236,5.0727,4.27307,2.573375,0.84353,2.6722633333333334,3.011343333333333,3.4183,0.77705,4.39136,0.7786866666666667,7.546339642857143,1.94,3.3709666666666664,1.751622,2.675105,2.5329866666666665,3.07944,2.4200233333333334,2.2294899999999997,3.5778,1.5444033333333334,5.437928333333334,3.9736333333333334,1.464295,3.0265799999999996,1.3227033333333333,1.5233625,7.33136,5.93635,3.367735,3.86099,5.353605,1.4923857142857142,3.622033333333333,3.239185,1.655525,5.6061,3.530075,3.92992,1.565965,2.89854,3.561733333333333,3.93749,5.45315,4.15343,4.24476,2.1900625,3.8236,4.535233333333333,3.050216666666667,1.419996,4.246165,3.387366666666667,4.05065,5.0748,3.980775,3.703995,4.722545,4.43354,4.327035,4.538025,3.794165,3.1528833333333335,3.98509,4.108985,3.158645,4.058005,3.778475,1.73082,1.73082,4.261085,5.00945,5.0756,3.29411,4.72817,3.4122333333333335,2.777415,5.2613,5.1743,0.7476854545454544,5.36025,6.6417325,5.63485,5.69535,1.1509444444444443,3.096655,1.0341066666666667,1.0341066666666667,1.0341066666666667,3.77838,3.3815666666666666,2.6214766666666667,3.6110333333333333,0.961701,4.87634,5.548,3.016485,1.61513,2.016395,4.128775,3.944965,3.76818,3.1361100000000004,6.9056,3.6519,2.523143333333333,4.58654,6.85705,2.400355,4.193135,3.846175,3.271585,5.64855,4.80294,4.955595,5.8941,3.02129,3.60949,1.9437166666666668,1.9437166666666668,0.7114990909090909,8.632568000000001,2.12156,5.6276,5.72005,4.12753,5.4575,3.793415,3.0093483333333335,4.73753,7.4394725,5.682581666666667,2.4339033333333333,4.338515,1.0001799999999998,3.762205,1.90963,0.9472777777777777,1.2017642857142856,2.47904,2.92324,2.914266666666667,1.0991414285714287,2.5296,2.9866233333333336,0.9030611111111111,2.78175,3.101933333333333,1.6577179999999998,1.9166060000000003,2.9887766666666664,3.049186666666667,2.7083999999999997,2.499893333333333,1.6872599999999998,5.1087,4.290955,3.659675,4.14961,5.0632,3.20441,4.568065,6.58865,5.27675,4.62226,3.92427,11.291588333333333,8.758199999999999,2.86912,3.68163,2.0579366666666665,3.8196,3.2707,4.675315,1.004215,4.123,3.634915,1.5372116666666666,4.080355,2.9273366666666667,4.39452,2.69675,3.86431,6.956,8.169126666666667,3.767475,1.5706866666666668,1.5706866666666668,1.5706866666666668,4.97557,1.1767716666666665,1.475875,0.4546105555555556,4.424120833333333,2.995976666666667,3.32338,0.980556,1.15390875,3.182085,4.224875,3.63053,16.668950976190477,3.958545,4.60793,5.80854,2.64937,3.4231,3.199445,0.9384133333333333,1.3629325,3.801855,3.68322,4.27908,4.4473,4.4034,3.66264,2.7982893333333334,3.508215,5.3448,0.546195,4.52524,2.290645,3.75681,4.9443,3.4642,2.47971,4.026516666666667,1.88372,3.633375,5.9139,3.11847,2.974325,4.167385,4.03673,4.623815,3.888775,3.55034,3.9722,4.62373,4.64335,3.589875,4.57863,3.83234,1.1512457142857142,1.37651,5.846152,6.3555,3.92181,4.76628,2.5912,2.769213333333333,2.58065,5.897406666666667,1.901095,2.06458,2.94005,2.9143833333333333,3.4244,4.57308,3.064995,5.255191666666667,1.120285,4.66936,0.9251999999999999,4.178925,3.36548,1.7032916666666664,4.520015,0.9808677777777777,5.08765,5.6342,4.930985,4.03572,3.821155,3.835605,3.0336200000000004,4.977605,6.1195,2.872418,4.02307,2.42167,2.62896,2.04173,2.55144,3.50624,5.28645,1.0571475,4.46198,1.40289,3.364515,1.6240633333333332,1.0571475,0.18859702702702702,3.72989,3.060135,2.270716666666667,1.9675666666666667,2.706915,1.08285,3.987055,3.63094,4.757345,2.5739466666666666,6.1341,6.8044925,2.776096666666667,3.4573,2.69528,0.8021140000000001,2.7024666666666666,6.2701,4.796375,5.47535,4.88998,2.0804566666666666,1.3427466666666668,3.8911375,1.602495,2.1852175,1.699465,2.1515725,1.73399,1.9316775,1.9804875,2.1666125,1.86335,1.4857857142857143,1.3523425,2.12384,2.59935,2.3196625,2.324943333333333,0.5221846666666666,1.2780179999999999,2.65686,3.2829566666666667,1.9834975,1.7725733333333331,1.5232325,3.259335,2.2503733333333336,2.708775,3.477725,4.47119,3.834275,2.9457166666666663,4.19208,1.5886492647058823,3.5721887500000005,23.7533955,4.64256,5.82055,4.35002,2.040836666666667,3.929995,4.86874,2.20645,5.53475,3.4428666666666667,0.8053525,3.074765,4.639835,3.672725,4.16423,1.4710466666666668,2.039496666666667,2.5043233333333332,2.2371,1.518857142857143,3.5578333333333334,4.98429,4.244775,3.334105,3.876765,4.98702,3.552645,4.55963,1.16900625,2.855365,4.08989,4.872325,1.8644380000000003,3.2996366666666668,1.7867625,1.7867625,3.52468,5.17805,2.9263866666666662,2.862773333333333,4.060615,3.894005,6.667092499999999,4.728865,2.26104,1.3629325,2.91455,4.30086,3.20162,2.6424695238095235,2.6424695238095235,3.3671,4.979715,3.77053,5.186017777777778,2.36835,3.522114888888889,0.5993322222222222,0.5993322222222222,0.5993322222222222,3.371245,3.855835,4.222521666666666,5.65345,2.00297,4.59682,5.114,5.29155,3.274855,5.2906,2.36737,1.3531385714285715,4.0575,3.917835,0.467765,4.148666666666666,4.850765,1.56518,5.10025,4.908015,4.53652,4.360535,3.686025,2.83962,4.621875,1.674326,4.44942,1.6123516666666668,4.24366,5.8587,1.18531,3.1186,7.235575000000001,3.67133,3.381133333333333,2.0872025,3.72072,5.5951,3.0572166666666667,7.572911666666667,4.225625,2.204493333333333,3.0869700000000004,2.7259666666666664,2.40728,2.761176666666667,1.86115,4.459785,0.553155,1.9378950000000001,1.9378950000000001,3.20265,3.73273,2.2328125,3.152925,4.24419,5.43115,4.4407,1.7103599999999999,4.574105232142857,4.403255,4.8426,3.548205,4.333067166666667,3.8483365000000003,0.48473066666666664,2.813425714285714,1.06122875,0.48473066666666664,4.319285,0.8327033333333334,4.22651,4.06445,6.548089,2.150916666666667,1.03091,1.166778,2.27665,3.0194233333333336,1.7412466666666668,2.388123333333333,3.266895,3.71403,2.0614033333333333,2.38311,4.39209,3.06932,4.037225,6.2811,3.497705,5.15595,6.713756666666667,4.401175,3.552235,4.471265,3.688815,4.429945,5.1661,5.63619,5.3839,2.3489999999999998,0.9498422222222221,3.620275,3.78697,4.03418,4.197075,4.076775,5.0355,2.548,2.53999,2.9467966666666663,2.33168,1.9226999999999999,2.710646666666667,3.1445333333333334,2.2989533333333334,3.7321,4.608535,4.202295,5.39025,2.47596,3.6522,2.9016,0.7300714285714286,3.947945,3.58587,4.415365,2.7582133333333334,5.196303333333333,2.985965,4.982895,3.65896,0.5636615384615384,0.5489757142857143,4.389935,2.719832,3.05045,4.543295,4.188195,1.671238,5.3134,4.13142,2.58597,2.6891366666666667,2.308325,2.1402758333333334,3.3882666666666665,3.1783533333333334,3.0737799999999997,2.94272,3.5022333333333333,2.594425,3.0755866666666667,3.9536333333333338,4.360435,0.55680375,0.55680375,0.55680375,3.2804783055555555,3.476566666666667,3.7136666666666667,2.6916433333333334,2.7947666666666664,1.1118875,2.9548566666666667,2.9838466666666665,1.8162175,2.80922,2.3986933333333336,0.9887944444444445,2.7223233333333337,4.60554,9.879055666666666,1.5327381666666666,0.562495,3.73654,0.562495,0.562495,0.562495,0.562495,2.11676,3.9102655,4.03507,4.9092,6.0135,2.8264333333333336,2.6810766666666663,3.0768924999999996,3.3361833333333335,4.834045,1.1243783333333333,2.370976666666667,3.165983333333333,2.5085366666666666,3.1084133333333335,4.288575,2.18692,2.52908,1.2289,5.46085,3.053955,3.227655,0.8686625,0.640305,0.640305,0.8774196086956522,1.7460821086956522,0.8774196086956522,0.8774196086956522,0.3029126086956522,0.3029126086956522,0.8774196086956522,1.4044233333333331,2.45106,3.00125,3.1444166666666664,2.565706666666667,2.8060033333333334,3.2575633333333336,2.7612633333333334,4.52086,3.710305,1.8723625,2.2722966666666666,1.8030875,0.18803870765832106,0.18803870765832106,0.18803870765832106,0.18803870765832106,2.4856833333333332,2.45447,0.910224,4.934055,0.7984545454545454,1.644904,4.6838025,5.68035,4.657445,2.8454,4.38069,3.42967,1.61737,1.294145,3.805425,4.500475,6.5498,2.353205,1.3975233333333332,1.8996433333333334,2.940996666666667,1.4447233333333334,2.76439,2.8513333333333333,3.3137333333333334,4.368145,4.012975,3.049125,4.836095,2.5390166666666665,3.953,5.86745,3.927685,4.180415,4.65364,5.246639999999999,4.8646575,3.014842571428572,4.841843333333333,4.251485,6.63695,4.430005,4.652085,2.3059275,3.020415,4.24983,5.1657,4.29556,3.923965,4.0444,4.10748,3.961375,2.4910166666666664,5.45085,3.478285,7.6074275,6.14685,5.81575,4.95795,1.496242857142857,0.9539070000000001,0.6519346153846153,1.814826,4.991275,5.2978,4.074255,1.6331440000000002,4.30611,3.059545,5.0666,5.52075,6.2525379999999995,4.11957,2.961825,1.646414,5.3437874999999995,4.075435,3.15163,1.774295,0.9821,3.936615,3.337875,3.555715,3.566275,2.41609,4.483915,1.6765100000000002,2.949063333333333,2.65004,4.342815,6.47935,4.96424,2.293845,1.51073,5.68985,2.9254,8.73677,2.9633,5.2477,5.975,4.5371,5.6274,3.675795,5.38815,2.230885,3.946245,4.761928,2.5868,4.33666,4.457025,7.654579999999999,5.1148,3.199533333333333,3.872545,4.020775,3.06932,3.490145,5.2813,5.6968,2.4897475,2.90171,3.30515,2.22434,2.375365,4.27362,5.8575,5.1951,4.68231,4.881675,4.24112,4.930245,0.7030307692307692,3.0304866666666666,1.1833057142857142,31.854157415954965,2.43442,4.54909,3.13229,4.493085,1.723074,2.496636666666667,3.4310286904761904,1.9254711904761903,1.9254711904761903,1.9254711904761903,1.9254711904761903,1.5055575,3.527,0.3214011111111111,7.847553194444444,0.3214011111111111,4.17472,5.00705,2.033375,5.2759,2.916,3.8695546666666667,2.37624,2.48009,2.7641299999999998,2.227323333333333,0.6201769230769231,2.59167,0.7445925,3.2998133333333333,2.2281999999999997,2.384938,1.22196,2.384938,6.29975,7.9939800000000005,4.47196,4.246705,5.6146,6.19335,7.451473333333334,3.135305,1.51689,1.51689,2.3532066666666664,5.06935,3.690505,4.583915,6.307285,3.971075,2.629615,3.772225,3.40316,3.558505,2.159795,0.7021740000000001,2.016975,4.091815,4.134485,5.1571855555555555,2.0672525,3.667285,1.212586,3.205985,1.321016,3.279006666666667,3.035083333333333,2.42556,3.386433333333333,3.0491200000000003,4.96197,0.6108015384615384,3.461855,3.6091333333333337,2.6180533333333336,2.4287,4.177266250000001,3.444366666666667,1.91573,4.73011875,3.43748,5.3038,4.122885,3.6547,5.71295,5.03335,2.0750533333333334,5.66635,2.382266333333333,1.7175433333333334,3.18005,2.53384,2.8937500000000003,2.524035,1.8814766666666667,3.295325439393939,4.1922,3.4534562500000003,2.33013,2.33013,2.52193,3.820355,3.998955,0.6619536363636364,3.46356,3.108135,8.69029,0.8758272727272728,4.25047,3.464055,5.65295,3.6983,3.84197,2.313,4.075505,2.694785,5.6681,2.6385183333333333,0.9854375,3.817035,2.6880966666666666,3.783225,2.706046666666667,3.67681,3.75911,3.920265,5.2487390000000005,3.36402,2.010005,5.2951,2.52475,4.487875,4.783905,4.68609,4.632385,4.02504,2.878185,2.200816666666667,2.8918433333333335,2.54556,2.724675,3.1929499999999997,2.729819761904762,4.923473333333334,2.8489466666666665,2.357416666666667,6.409864166666667,4.995627916666666,3.8325625,3.1075,3.7571666666666665,4.06835,3.42388,1.8882775,3.7429975,4.842125,4.900945,1.4160766666666669,3.84916,2.6248766666666667,7.126425,4.754895,8.94064611111111,4.033605,3.695795,2.043625,4.07638,5.696295,7.82151,3.96809,5.81489,3.837545,3.278885,3.881545,1.776786,4.299599,1.5063733333333333,3.63349,4.727495,3.483333333333333,0.8569166666666667,9.223259333333333,1.2237888888888888,1.92782,2.5067366666666664,1.9730933333333331,3.446566666666667,1.3559266666666667,3.61781,3.922865,2.2005033333333333,4.33144,1.1754674999999999,3.63735,1.3942933333333334,3.0975915,4.08095,5.2235,1.592715,5.8412179166666665,2.593280666666667,7.84313,4.47199,3.0221,4.050185,3.368435,1.2011745833333332,7.81505,2.91471,3.251045,2.4082,4.11828,2.12882,3.0997275,2.34005,4.030945,1.4152275,5.8637,2.766265,4.25649,0.916122,1.837845666666667,3.831945,5.0649,5.19352875,1.716252,1.716252,5.92545,4.24277,6.3213,3.755735,3.438805,9.17215,4.549595,5.4875,4.063345,2.564825,2.1139542537122376,0.40524250000000006,0.18612548387096775,0.61645770609319,1.0922540476190477,0.619401198156682,0.18612548387096775,1.3308075000000001,0.4303322222222222,1.4974965476190476,1.9472652060931899,1.84788,2.2471475,2.22109,5.1807,6.491708333333333,4.72125,5.20895,4.512585,5.0651,1.19865,5.0322,3.803285,5.69175,5.1299,5.15845,5.4448,6.03955,5.5489,1.2051483333333333,1.284297142857143,1.9073579999999999,6.049061,1.289996,5.572,4.73534,6.908615833333334,4.666535,5.44575,4.47997,4.677115,2.565275,5.6351,5.43355,6.50977,4.946465,5.8221475,5.4703,3.8187587499999998,4.248775,3.7518,0.999572,3.6900333333333335,4.35661,1.17091625,3.643966666666667,4.535315,4.3375575,5.05045,2.47503,3.192175,2.6526866666666664,4.54947,2.2228125,3.62791,1.2462366666666667,3.150515,3.7575,4.073735,5.719,3.3537624999999998,0.5816941666666667,6.14445,1.008645,3.659215,2.92258,3.719195,2.00402,3.88219,3.776417948717949,3.2305333333333333,4.48283,15.924708571428571,5.328573333333333,2.1265125,8.46371,1.470485,3.949435,2.9426433333333333,2.875666666666667,2.01653,0.1879482608695652,2.8263366666666667,4.40896,1.76634,2.1800366666666666,3.258993333333333,1.828155,2.23027,1.5453428571428571,3.29979,4.46655,5.01555,3.484495,0.48554142857142857,2.35347,4.61155,2.707145,4.207295,4.457735,4.186975,5.4656,0.49044529411764703,2.5101066666666667,2.5101066666666667,5.28025,4.719595,4.90264,2.66765,3.5461333333333336,2.8768499999999997,5.2081,3.504405,5.467509444444444,4.63647,4.363915,5.33665,2.554975,1.9659980000000001,4.340535,3.85306,3.84434,3.4347,1.824492,4.94993,4.350645,3.770185,4.44393,3.87975,4.012415,0.6193306666666667,2.97281,0.6038341666666667,3.1065133333333335,3.44286,4.127115,17.71333476190476,3.472875,3.77895,2.4571666666666667,0.94444625,2.079003333333333,2.5884,1.54062,2.368495,2.49914,4.466375,2.245,4.006755,4.740535,2.12828,4.404595,2.8379999999999996,4.544675,4.72572,5.44435,1.72934,1.6495,2.39365,4.33797,4.84812,1.1708666666666667,5.2994,3.658095,5.6504,4.76533,1.7721333333333333,4.656135,3.35404,3.64306,3.92767,3.7903,3.292066666666667,0.65734375,7.752485,1.4627620000000001,0.2107811111111111,0.2107811111111111,0.2107811111111111,4.635555,3.953405,2.7014833333333335,4.205435,2.923625,4.631425,4.412125,4.0847066666666665,8.503866666666667,4.162095,7.100451666666666,0.886465,0.77578875,2.479275,4.38409,4.272705,2.2135633333333335,5.4913,5.30515,3.429185,3.504595,4.34127,2.2342299999999997,4.76971,4.5782205000000005,2.2902533333333333,2.80944,2.935916666666667,2.66825,6.08855,3.52592,0.6637335714285715,3.629335,3.69118,4.14499,4.882163333333333,4.90859,3.15622,5.4475,3.63249,13.583754583333334,4.534145,6.898550083333333,2.4503366666666664,6.503975,4.204565,3.87459,2.07554,2.253510416666667,9.9499,2.321893333333333,4.378033333333334,4.1132,3.6957,3.627333333333333,2.781406666666667,2.0825925,2.3137275,3.0688,1.800798,3.9026,2.3639966666666665,2.611756666666667,3.3533666666666666,3.616766666666667,2.4593,2.4593,2.482596666666667,3.490866666666667,3.4032999999999998,2.1952266666666667,3.5178666666666665,4.300533333333333,2.8238833333333333,2.74063,3.7532,2.3691733333333334,2.1029175,3.9649,2.8190333333333335,1.623498,4.099233333333333,2.3687766666666668,2.4470733333333334,2.9329,2.29969,3.385033333333333,5.582185,2.353146666666667,3.836766666666667,1.8705,10.484938,2.002013333333333,1.7746366666666666,2.11656,1.0278766666666668,1.603858,4.547743333333333,2.8182460000000003,2.8182460000000003,1.6474920000000002,1.5567533333333332,3.78646,3.777258333333334,2.2373833333333333,1.5619666666666667,1.71118,4.737357333333334,3.6984666666666666,4.1344666666666665,8.323673333333334,2.939985714285714,2.6422933333333334,3.2428983229813664,4.4286,2.1029175,3.3805666666666667,2.66257,3.27937,3.538028333333333,0.890795,3.355252,2.8641566666666667,2.8081833333333335,3.851585,3.1822966666666663,0.6554036363636363,1.9349792857142858,5.4497,2.5732975,3.3531,1.584865,1.584865,2.08993,3.795281666666667,0.9505079999999999,2.264975,4.410596666666667,4.410596666666667,0.6583142857142857,5.911741,3.55355,3.78624,4.669755,1.234367142857143,3.324503333333333,3.5983666666666667,5.354859166666667,5.3213799999999996,2.1260333333333334,0.639189,2.4984266666666666,2.6172,3.0608453333333334,2.16124,2.35078,2.8751933333333333,2.34546,2.495296666666667,0.8001409090909092,5.1115,5.2782034285714285,1.3231233333333334,1.8145714285714285,5.58225,2.135895,1.57464,4.14295,1.6037120000000002,3.65134,2.6532,3.7103333333333333,8.751566666666667,4.336525833333333,4.44008,5.11775,2.382170909090909,0.7593270000000001,1.9933939999999999,6.976073333333333,1.7312733333333332,4.182055,3.829185,3.375035,21.356806166666665,3.29893,1.3690499999999999,1.09179,3.11824,1.4350133333333333,4.357965999999999,5.2692,3.3599635,3.4133333333333336,1.41388,1.6066183333333333,2.9705600000000003,0.58893125,3.5259666666666667,3.7296,3.0952866666666665,2.5052633333333336,2.6368566666666666,2.8692466666666667,2.0747166666666668,3.0320199999999997,1.614938,3.6483000000000003,1.38199,3.941825,3.94696,2.4920766666666667,5.42135,3.158015,3.836455,5.24895,4.643935,3.2847633333333337,2.95908,2.3242499999999997,0.9371542857142857,0.9371542857142857,0.9371542857142857,2.44088,3.4763,2.5994800000000002,2.4970733333333333,2.2218566666666666,1.9021225,3.711035,5.02505,3.712865,6.681315,3.117445,2.602025,1.8870525,0.94814,2.4837933333333333,3.97161,2.47005,2.73681,2.4600066666666667,2.445863333333333,2.6169533333333335,2.8634533333333336,2.7283866666666667,2.7085833333333333,2.30166,3.4715333333333334,2.0500633333333336,2.2515625,1.54427,1.625615,3.0590833333333336,2.7875033333333334,2.044865,3.91445,5.12015,2.8794033333333338,2.5620519230769228,5.9009133333333335,4.213485,4.640525,5.4732,4.39546,4.301,6.2257725,1.19707875,4.10939,2.677865,5.3013,4.92961,3.88015,3.463205,2.1220175,7.794675,2.80861,0.8270575,7.31412,5.14789,5.656460476190476,4.509755,2.85167975,1.651865,5.01435,4.19938,4.450275,5.1442,2.496175,4.19931,4.29374,1.8030875,3.91548,2.77065,1.36883,4.693355,0.6050470588235294,4.0413033333333335,3.41421,4.61785,2.94382,1.66699,3.25326,1.955835,1.4909375,2.7904699999999996,3.1840200000000003,3.2394933333333333,7.276075256410257,1.6528825,6.401825416666666,9.567685,6.1918175,2.91331,1.3576657142857143,2.7762533333333335,1.3576657142857143,2.9123033333333335,2.1239033333333333,0.28426705882352943,1.1083720588235293,0.28426705882352943,0.28426705882352943,0.28426705882352943,1.1083720588235293,1.1083720588235293,0.28426705882352943,0.824105,4.667685,3.4027,3.25917,3.459975,3.682695,4.554285,2.7405146666666664,1.634696,6.709481666666667,3.14582,4.06478,2.7031333333333336,1.0152545454545454,1.2154075,4.555645,3.446975,1.1205555555555557,1.40469,0.684559090909091,2.927598354978355,4.27774,5.15875,3.4846333333333335,5.433350000000001,0.5547623076923076,4.143605,2.9226987500000003,2.8476033333333333,2.5039633333333335,3.7025333333333332,2.5265400000000002,2.93833,2.6641733333333333,2.964425,3.647105,4.920215,5.02745,2.30892,5.0763,4.210425,3.26662,3.91694,3.45507,0.35324866666666666,4.933495,3.584115,3.007725,2.941758,4.220425,3.955015,1.94306,3.026,3.908965,7.892255,5.03875,5.3423,4.713745,3.9117525,0.9041225,2.1677,1.989785,1.420695,1.8759499999999998,4.451325,5.51375,4.163825,4.881175,3.1361100000000004,2.763281666666667,0.9317083333333334,3.98543,1.234605,1.1729883333333333,3.31513,3.76276,4.65221,1.27505,2.413816666666667,8.917066666666667,3.1332066666666667,2.7061275,0.8235175,3.470325,12.337943333333333,3.415895,4.18303,3.047285,2.906595,4.66152,5.11495,2.10774,4.22061,0.5611130769230769,4.68694,2.1926075,1.8381925,1.8381925,3.5249666666666664,4.36841,1.5699866666666666,3.74583,1.27562,3.646495,2.6761350000000004,3.473933333333333,4.771405,3.5372,3.9583576666666667,2.677375,2.723542666666667,2.723542666666667,10.920825,0.726282,2.75383,3.1614133333333334,2.1187575,1.97659,0.87148,1.412765,1.1625614285714287,2.088295,4.6332,2.38067,4.17824,2.0259833333333335,3.79923,3.92043,1.7095333333333331,2.0301275,1.0375183333333333,5.983006333333334,2.00675,2.106275,1.678558,1.826436,1.09179,2.3289999999999997,3.66977,2.1028766666666665,3.2165266666666668,2.5243533333333334,2.712593333333333,1.7294066666666668,3.0731533333333334,2.57377,1.811,1.9186866666666667,2.86266,2.37173,2.5891100000000002,1.1558466666666667,2.52122,2.0720066666666668,2.2026666666666666,0.31313473684210524,0.41184249999999994,2.3147733333333336,2.1186366666666667,3.3365,3.058126666666667,2.79135,4.89266,5.70545,4.395435,4.71431,4.34118,3.998845,3.05753,3.751135,0.7460127272727273,0.06173613636363637,7.03225,0.06173613636363637,3.448235,2.965805,4.96845,3.507685,6.37445,4.750645,2.02688,2.5380566666666664,1.0396583333333334,5.5492,6.37685,3.9863999999999997,5.56285,1.80055,3.594555,1.8357176086956521,3.080826666666667,3.2684599999999997,3.93181,5.005158333333334,3.206895,2.29157,2.29157,4.107055,7.6163,3.520805,2.17099,2.39484,4.420885,2.871345,4.92346,3.34866,1.0026722222222224,4.08456,2.467963333333333,2.38896,4.252965,1.1196266666666668,2.4025866666666666,3.81837,3.382205,4.939785,2.928795,3.019295,3.96968,4.026465,4.234305,4.88813,4.21605,3.2637969444444446,3.813695,3.138716666666667,2.73483,2.57405,3.8241,4.117465,3.0364566666666666,4.9131825,4.37029,3.73152,5.28325,4.47782,3.381175,1.44707,1.3634375,4.076415,3.4738,1.5534666666666668,2.8450733333333336,3.22903,3.2465833333333336,3.902992222222222,3.12405,2.1873075,12.446720416666667,2.0964566666666666,1.840578,4.431025,0.9852080000000001,3.26755,3.62653,4.58002,3.09209,1.2651999999999999,2.2352333333333334,2.5739466666666666,1.4377739999999999,4.047195,0.94379,0.94379,3.572256666666667,1.4581933333333332,2.1140633333333336,1.6645725,3.18155,4.648055,1.883635,2.76394,3.386328333333333,2.7281933333333335,2.5883933333333333,2.00728,6.4658,5.57525,3.556185,0.6660661538461539,3.916865,3.526755,0.9954727272727273,5.59475,3.288116666666667,8.395116666666667,5.03385,4.812815,3.6,1.5457075,3.085835,4.86361,4.447455,4.04647,3.633585,4.410515,3.036705,3.5019333333333336,3.5019333333333336,4.1251,2.706748333333333,4.34306,1.782945,5.416944166666667,5.178815,1.56518,4.57089,1.02155,5.54545,3.97114,4.911495,4.52696,4.33884,2.61096,2.55965,3.64615,4.279755,4.888665,4.103465,1.8950975,1.3905159999999999,4.436925,2.0510433333333333,5.3859,3.04896,3.44414,7.875065,3.774405,4.43761,5.3213,4.036665,4.48191,8.443345,4.05896,3.29636,8.85062,3.640995,0.5841492857142857,2.0339728754578754,4.64717,0.600112,4.809165,4.4009,4.635975,4.492165,3.313345,3.619015,4.54123,4.81403,2.71405,0.7224428571428572,4.72246,4.55128,4.48449,4.241525,2.7967166666666667,4.476065,3.59835,0.6233139999999999,3.406285,4.31515,2.5374,3.10049,4.129505,2.2564533333333334,5.5141,5.22425,3.703175,0.8795625,3.1603733333333337,5.545636666666667,5.545636666666667,8.638353333333333,2.01192,0.88904375,0.88904375,24.024628333333332,2.610375,7.718218333333333,0.3507525,1.3475366666666666,3.0456,1.0021900000000001,3.763915,3.78636,2.0473325,2.0473325,4.105795,4.975945,3.647155,2.6705466666666666,2.6705466666666666,3.597665,4.448175,3.901315,3.3930000000000002,2.0513266666666667,2.5645483333333337,3.935053,2.09175,3.59526,2.83746,2.7410492857142854,2.7410492857142854,3.372833333333333,0.8307444444444445,2.5254666666666665,1.5362166666666666,3.2419966666666666,2.7792166666666667,2.826,2.5215433333333332,4.553215,2.40198,2.9314766666666667,5.365119,1.22121,2.20891,3.134865,2.4254333333333333,4.07678,5.933109126984127,1.3846066666666665,3.6322666666666668,2.4191125,5.06265,6.45174,1.5083775,5.122936666666667,4.973226666666666,3.1840260000000002,4.619033333333333,1.0469142857142857,1.8644380000000003,3.07625,3.7774319047619054,1.2781683333333334,2.360125,1.7318025,1.840644,2.63917,3.675734,5.290864,0.97926,1.3804785714285714,2.9056800000000003,13.26212,4.63311,2.6223,1.0119914285714287,2.562785714285714,1.0036857142857143,3.2131566666666664,4.1476516666666665,4.928175,3.4898666666666665,5.45075,1.442815,3.7543,3.97159,2.8420400000000003,3.799331111111111,1.9650433333333333,1.1077177777777778,2.5451433333333333,3.0172633333333336,6.721835,3.058773142857143,2.5741466666666666,0.733321,4.689566666666667,3.6390999999999996,1.04325,5.6744975,2.0241975,2.1577066666666664,5.668,1.2565333333333333,3.0303833333333334,1.027509090909091,2.969993333333333,4.304985,2.7834833333333333,3.0919066666666666,2.286023333333333,2.4025966666666667,4.484685,4.71821,5.067,1.7142375,4.59442,3.56538,4.234063333333333,3.2772900000000003,2.5102266666666666,4.196792666666667,0.879026,2.919160476190476,4.687525,2.736875,3.969484583333333,1.3300125,2.74451,1.938476,1.938476,6.796925,3.13487,5.580004166666667,3.34598,1.75636,2.7498142857142858,4.611403333333333,5.4697499999999994,8.456486666666667,4.5907100000000005,2.6386625,1.5026933333333332,1.9975143333333334,3.975573333333333,3.77319,1.437912,2.04348,3.0960383928571424,1.1326825,3.23705,18.727050666666667,3.1392633333333335,2.7976266666666665,2.8695766666666667,3.0012133333333337,2.2879133333333335,1.8541466666666666,3.06334,3.6489666666666665,2.56241,2.5837733333333333,5.666651333333333,2.3898966666666666,4.844536857142857,2.841840857142857,2.732836857142857,1.4485666666666666,3.7141055555555558,2.1211525,3.84917,5.02735,3.69887,3.5714241666666666,3.2200666666666664,2.1977066666666665,3.497866666666667,3.5333666666666663,3.5359,3.3674666666666666,0.8347227272727273,5.38705,2.394045,3.119596666666667,2.7505494444444447,1.76042,2.092093333333333,2.092093333333333,3.2933166666666667,1.9591133333333333,4.71368,4.2457,3.49417,4.243755,4.908415,4.591145,4.591145,3.853395,2.974603333333333,4.54401,2.652975,1.6290980000000002,2.431826666666667,4.35977,4.01123,2.705525,3.36329,5.3595125,3.625166666666667,6.363038261904761,2.8766,0.8206239999999999,0.8206239999999999,3.3517,5.17505,3.82045,3.5039739999999995,2.43376,1.8764,1.5130133333333333,2.935313333333333,6.084244,1.4526183333333333,4.080595,3.7303333333333337,3.903105,5.19085,5.0732,4.6010306875,3.245233333333333,2.329295,4.380415,3.66694,2.0212725,1.1137460000000001,3.96432,2.7753,6.489599999999999,3.7142999999999997,2.69924,3.26464,3.786605,3.65773,4.6708,3.060855,4.547185,3.72235,4.297175,3.802965,3.62763,3.62325,3.813105,2.641176666666667,4.339895,3.026885,5.2901,0.6115888888888888,2.3460425,1.767385,2.1501875,1.9182625,2.6652333333333336,2.6450299999999998,1.8131933333333334,4.32961,5.28811,1.8302766666666666,3.95941,4.46067,2.4454125,5.743188333333333,4.027359583333333,4.684265,5.1021,7.087669999999999,2.0113499999999997,2.9505933333333334,1.7852166666666667,2.67385,1.704335,1.767235,4.044415,3.719475,5.4591,1.008901111111111,2.92575,4.141165,2.2769825,5.33295,3.683985,2.573975,3.7609666666666666,3.445,2.0627575,1.93738,2.759575,3.260175,3.446775,2.0131325,2.7983985714285713,2.7983985714285713,3.60345,3.440525,20.523454285714283,1.1845833333333333,5.308393333333333,1.88306,1.9651866666666666,3.522515,3.799125,1.89059,3.772765,4.722735,1.2352416666666666,1.2352416666666666,1.22096,1.80895,2.2105633333333334,3.1485366666666668,4.536513333333333,3.23959,3.5681666666666665,0.4846531578947369,3.37418649122807,2.0180000000000002,2.21584,4.494985,3.426955,4.01733,3.4836,4.51228,4.52342,2.0720025,3.99369,5.74346,2.353065,3.60819,5.28225,2.28797,5.09725,6.15145,1.2981685714285713,1.9275680000000002,3.444366666666667,0.6971642857142858,3.32567,3.273485,4.888805,4.89418,2.822385555555556,7.825378333333333,2.9800133333333334,2.7782400000000003,0.44434294117647055,4.12142,5.3664773809523805,3.241954761904762,5.26365,3.79228,2.491162666666667,1.7552119999999998,5.490023750000001,4.331085,4.142415,2.948325,1.9965725,3.609315,3.936033333333333,3.02819,1.9794075,4.01144,5.93346,2.76793,3.88992,3.576885,3.87767,1.5893285714285714,1.5893285714285714,3.2519466666666665,2.976786666666667,4.45327,4.6579,6.66455,3.389105,2.780425,2.1850775,1.4587183333333333,1.3596142857142859,4.861225,5.489615000000001,5.1426,5.89525,4.544565,6.5435799999999995,3.62929,2.8227766666666665,3.8383173333333334,2.1351366666666665,3.0747795,1.577126,4.49257,2.3786,4.060565,4.946465,4.10052,2.784283333333333,2.9254,1.307292857142857,2.536675,3.7270333333333334,1.90061,0.60578875,3.090996666666667,2.570003333333333,2.2989533333333334,2.3065366666666667,2.10732,1.6050499999999999,0.7088145454545455,0.7088145454545455,3.6951666666666667,1.7548075,2.186455,3.127665,5.99975,4.20027,6.14975,4.246855,4.401815,2.0558116666666666,1.25117,2.50557,5.07415,0.85612,3.339975,2.9441,2.752275,2.09815,4.056095,2.675935,2.02035,1.06031,3.55561,7.987175,3.550865,1.550982857142857,4.310325,3.16605,2.590465,3.51633,2.80552,1.7527533333333334,1.0210325,3.66707,2.414105833333333,2.2533,1.6390099999999999,2.3518399999999997,2.268543333333333,2.5752200000000003,2.89183375,1.2646266666666668,1.8457433333333333,1.0478725,6.491685,5.6108,5.96285,4.02016,4.978975,2.9240666666666666,1.6699910256410255,4.743645,5.1428,2.605685,5.05715,2.09763,4.61516,1.0167644444444446,4.08119,4.269095,1.8991175,7.84058,3.53623,1.8272325,1.9078475,1.78125,2.59665,3.375966666666667,1.2450376623376622,2.9139233333333334,5.92795,3.31821,4.016395,5.569,5.2108,5.93255,0.90857,4.183015,4.6209,4.26487,4.888785,4.114693333333333,4.757625,4.824315,3.014945,1.6092700000000002,1.6092700000000002,5.41115,5.9746033333333335,2.997885,2.656633333333333,4.087015,4.87371,1.517302,4.10906,5.53645,3.726775,4.031155,2.85548,2.8414966666666666,5.10565,2.3934367500000002,10.860577964574642,1.8938033333333333,0.8183175,2.5815266666666665,1.6783925,2.49911,2.2725525,1.986664,2.803463333333333,5.14345,5.5287,2.8850766666666665,1.7319833333333332,6.641156904761904,1.6042571428571428,3.1095400000000004,0.5259190476190476,4.045859999999999,5.7689,3.685575,4.80156,12.067575,5.3886,3.238023333333333,3.3050533333333334,4.14058,2.8996033333333333,4.58781,0.93448625,1.059285,0.7962181818181818,5.6723,4.005955,1.869888,4.982640666666667,4.510085,6.57845,4.860945,4.92916,4.30961,6.19985,3.96538,5.2998,3.24792,1.222308,3.823455,5.313,2.69907,4.096035,3.17134,2.297955,1.22033,5.2692,3.94621,1.2888625,3.4352666666666667,2.9986599999999997,2.3936566666666668,2.51542,2.5479133333333333,2.9423333333333335,0.6976154545454546,2.5464966666666666,2.665853333333333,2.6315,1.8814866666666665,2.98874,1.910685,1.3907533333333333,2.3059025,2.1142075,2.1089075,3.3303,2.864103333333333,0.676964,2.6312166666666665,3.15566,4.558335,2.25478,3.63667,5.46775,5.2638,3.40002,3.925635,1.353557142857143,3.419885,2.47906,4.352273333333334,2.7048975,4.758745,5.61915,4.84416,4.50562,4.160066666666666,1.023242,1.023242,2.193675,1.616475,3.97107,2.5380585,2.5380585,5.1233,6.2906,3.15315,1.1700783333333333,1.6391571428571428,6.0098,3.524785,2.3065,3.195135,2.840395,3.30822,2.3065,4.6887675,3.27208,2.971497916666667,2.67256,1.981735,3.018345,6.85815,2.775195,4.88408,4.33801,6.6402,6.56535,6.667875,6.667875,5.5789,5.04635,0.6209184615384615,5.03715,5.3376,3.0018,2.969,8.142906666666667,2.795,3.97283,3.68114,2.472776666666667,4.4945,2.298615,3.2391550000000002,3.0493799999999998,3.3570666666666664,2.47449,1.360308,1.360308,3.62704,3.768405,5.288,1.818922,1.564918,47.52189265151515,2.5342166666666666,0.8781918181818181,3.165926666666667,1.7584475,3.416533333333333,2.80343,3.2357566666666666,3.231605,2.6477333333333335,1.8305233333333335,0.98696,4.431545,3.26569,3.52621,3.82338,5.0392,5.03305,5.04965,5.11605,5.40185,4.785105,5.478,6.2600925,5.1492,5.4534,2.06474,3.783895,6.7825,5.26645,3.41617,3.74445,3.313495,2.46387,3.943675,4.535335,3.0729933333333332,4.2049666666666665,1.609114,4.43374,1.344814,3.25698,3.81484,3.47054,6.54685,3.99603,1.971295,4.085055,3.97182,3.978415,0.93965875,2.777745,2.82405,4.4215438095238095,1.1634925,4.298905,1.292865,5.966,0.7197933333333333,3.892438666666667,10.0092075,4.44626,3.440565,3.25238,1.84295,4.184485,5.73985,3.06298,4.438395,9.426061666666666,3.498333333333333,1.9926066666666669,2.7583033333333336,2.7887766666666667,2.7755266666666665,2.7538022499999997,2.1009366666666667,2.58338,3.0373066666666664,2.698893333333333,3.06841,3.435545,2.2691833333333333,1.70475,4.643399333333334,3.9632666666666663,2.6475,5.068592,2.8716733333333333,1.01371875,2.26227,2.9494000000000002,5.617033571428571,2.957675,2.0303255555555557,2.0303255555555557,1.5994125,1.79278,2.22264,1.9791699999999999,5.893545,4.3790275,2.3866,2.8844433333333335,3.7797666666666667,2.04067,0.67504,2.6107466666666665,1.91535,0.5824076923076923,3.853605,2.531125,2.65085,3.65968,3.5720208333333336,2.39319,1.6069466666666665,1.085965,2.092945,3.63704,3.8025,4.238334999999999,2.8666433333333337,4.08532,3.673265,1.0859545454545454,8.986725,2.72505,3.52176,1.2907,2.64632,2.2673125,2.2673125,2.2673125,5.0012,5.6242,1.499785,5.1495,1.452094,5.5748299999999995,1.501274,4.16296,4.362465,4.185755,5.15655,4.242725,1.887045,8.62227,3.82146,5.18685,3.28432,3.808425,3.2674833333333333,3.1059633333333334,3.807655,2.536493333333333,4.430078571428571,4.374443333333333,1.6046275,3.972635,1.6046275,3.637595,4.475539166666667,4.957285,4.475539166666667,1.7600566666666666,5.7765,4.395835,4.34225,2.6975266666666666,2.990153333333333,4.337285,3.155985,4.867505,0.5186814285714286,2.877796666666667,2.993323333333333,5.037475000000001,4.941075,2.3811625,4.869495,6.554595000000001,3.229925,2.44588,2.68764,2.09017,3.71078,4.06731,4.68202,2.53702,3.85235,0.877013,5.51305,3.428135,4.31222,2.31615,3.1023099999999997,2.31143,2.8038866666666666,2.7476000000000003,2.7482900000000003,2.959415,2.356465,2.356465,4.248691666666667,2.830015,4.74531,11.497675000000001,0.9650299999999999,4.526145,2.41073,2.2814900000000002,2.81629,1.475875,7.3688095,3.3407666666666667,3.49488,3.741886666666667,1.8887466666666668,4.007433333333333,4.141401055555556,1.9432433333333332,0.4737677777777778,1.501786,1.514735,4.886375,2.90769,3.30298,3.7599833333333335,3.513495,2.19236375,5.06625,4.830765,3.75371,4.55795,2.177315,3.926015,2.4935133333333335,5.426396666666667,3.03659,5.26835,4.073155,4.82721,4.35079,1.98167,3.872715,3.59943,3.25529,3.783005,2.76599,3.13404,4.072755,3.296295,2.7712333333333334,4.48187,1.5175983333333332,3.57892,2.854,4.733775,4.10698,3.773085,5.1274,2.360565,4.460035,5.0013,4.085715,3.0763033333333336,2.00783,3.02398,2.27288,0.86381,4.582245,2.04532,3.485445,2.789645,4.100145,3.462705,2.97305,3.107515,4.068035,4.536666,4.044815,3.07877,1.5176,3.428525,2.549255,0.9481211111111111,4.15313,8.616695,3.40539,3.61851,4.268085,5.09505,3.84689,2.08767,4.04311,3.874215,3.327,3.18979,3.87064,0.6149925,1.2240057142857144,6.8212275,1.8814525,2.61464,4.995624,2.47503,2.433325,2.756245,7.71748,2.73133,3.98523,3.813635,0.7544077777777778,3.4296,2.6376,3.766725,3.995805,6.116383333333333,0.663617,3.25373,9.83147,3.182905,1.0613322222222221,5.137407083333333,4.63823,5.4025,4.15723,4.51905,3.13771,2.6034166666666665,6.992845,0.801877,3.538285,3.95827,3.20759,4.40507,2.35685,4.243295,1.7001833333333334,4.23974,4.10419,3.981205,1.6354775,4.419265,4.446905,2.33673,2.031795,2.154215,1.04325,4.252345,3.3599635,1.4464219999999999,8.48654,5.89855,4.56859,4.189565,3.52216,4.388275,1.4687428571428571,4.373795,3.935985,5.3101,3.7615,2.44096,6.615987799145299,1.0052025,1.0052025,2.5884133333333335,0.9371385714285714,4.194505,2.668483333333333,1.0254975,1.7370166666666667,0.40026249999999997,6.23445,0.9714475,2.70721,3.76316,4.010875,3.77648,4.13058,5.56805,5.660715,3.095475,3.12033,2.37178,4.29696,4.419735,4.263545,3.919845,3.76518,6.2843,4.494975,4.306148888888889,5.270024,3.63497,3.29536,2.336395,3.29536,6.930626,41.892616589826844,3.70092,3.473775,2.917263333333333,4.527325,4.344775,3.47746,3.51325,3.89182,4.360585,4.150365,1.6885833333333335,4.91212,2.69288,4.885535,5.3511,4.97063,2.41446,4.583365,3.86842,3.927895,1.5181179999999999,0.6490976923076922,1.793176,3.7485666666666666,2.908193333333333,1.3028875,2.99429,2.63596,2.8003966666666664,3.5348333333333333,2.976343333333333,1.469304,2.5584433333333334,3.8960666666666666,1.9715297554697555,2.723663333333333,3.1316420000000003,3.17727,2.6097233333333336,3.5804666666666667,1.208511111111111,3.562925,4.008635,1.2801366666666667,1.2801366666666667,1.2801366666666667,1.2801366666666667,2.932184848484848,2.0835466666666664,2.406045,2.852095,4.87653,5.08335,4.373675,4.294225,5.58445,4.65964,2.18613,5.69055,4.741965,2.68038,3.996545,2.975785,4.24688,4.272265,0.7268330769230769,1.41862,1.5628666666666666,4.203765,3.93217,4.104105,4.03656,6.069904999999999,2.27089,4.36202,1.6393149999999999,3.467885,5.05815,1.60762,5.35945,0.701545,4.582835,1.224588,1.15965625,3.644115,4.132745,5.0761,5.06745,6.0721,4.25762,1.517792,2.826755,1.4607575,3.55506,3.289555,2.491162666666667,2.00709,2.83206,1.3356366666666668,3.665475,5.142,2.9808,5.73835,120.93725564357864,0.4827022222222222,4.83105,2.40026,4.783395,4.138865,3.05165,1.5410525,0.34286285714285714,2.871735,3.851565,5.69425,3.84165,3.50148,4.44941,4.4385,5.71585,8.266263333333333,0.6883533333333333,2.605815,0.97033625,10.062377999999999,3.061735,3.58425,0.9202044444444445,2.177035,2.659335,2.1231725,3.351933333333333,2.9662900000000003,2.402016666666667,4.33774,3.004583333333333,2.31838,2.22979,4.12297,3.298695,2.87117,3.61481,3.73435,3.410635,2.3299133333333333,3.873335,3.928095,3.031485,0.9131611111111112,2.63852,4.33774,4.708375,5.32985,4.02799,4.43217,1.75308,10.908750000000001,4.01594,2.68596,4.354225,5.3535,0.545646,0.545646,4.1006,4.1006,3.129885,3.5160666666666667,1.8068402272727273,0.5536266666666666,2.91806,4.313315,4.31919,3.26641,4.236375,5.338570000000001,4.64518,2.2032875,4.57867,2.2574825,2.7055,3.987181666666667,1.714805,2.112975,0.4769385714285714,1.1808025714285715,1.1808025714285715,1.857315,4.53791,3.64987,4.79369,6.458044,2.753445,2.991895,1.894605,2.000185,3.8906625000000004,3.42655,4.826366666666667,2.371375,4.826366666666667,4.441675,3.63591,5.9536,3.71117,2.42516,2.01848,2.51974,1.4162325,1.4289275,1.5232975,1.77436,1.6163775,1.6424625,3.9700333333333333,4.850275,2.381825,6.90865,2.874966666666667,4.3226,3.284875,4.120535,2.981116666666667,2.8728166666666666,6.112913333333333,3.3266466666666665,4.413201333333333,3.1778099999999996,1.4373,2.5302966666666666,2.5505400000000003,2.2034166666666666,6.21335,4.5400975,4.77012,12.348154063957972,0.7098366666666666,2.0132494999999997,2.2418225,1.600976,1.2819057142857144,2.479805,2.4513725,2.499105,2.3066,0.7487346153846153,1.9502425,0.49327263157894735,4.35291,1.94761,3.4172,4.341175,2.618225,5.5008075000000005,3.954315,6.91804,4.029495,2.852365,3.12333,4.62017,4.73505,2.624084285714286,4.632175,2.1266675,2.1266675,5.00945,3.872615,4.143245,4.05667,3.4324999999999997,3.95862,5.14505,5.0957,4.71486,4.184455,4.60614,4.372615,2.509395,5.0983,1.199155,4.80842,4.523325,2.5099133333333334,2.1431,5.2438,1.5347216666666668,5.2035,1.941725,5.762170108695653,4.15367,3.832885,1.5020066666666667,3.0813433333333333,3.0813433333333333,12.16052,3.94978,4.32811,1.12651125,4.380796,2.09533,1.4794775,2.2244775,1.7171125,1.9782025,1.7391960000000002,2.71517,5.5481,1.74716,5.1683,4.596078333333334,5.5323,2.1994225,2.656305,3.167795,4.330995,5.5551,3.91173,7.404171666666667,3.19326,2.8093266666666667,0.3618311111111111,3.725065,4.67375,3.3496333333333332,6.216188333333333,2.61278,3.0007466666666667,1.2458333333333333,1.6585616666666667,0.60578875,1.501786,2.951775,1.5471533333333334,1.51929,0.6537125,1.3948079999999998,4.68277,2.3516,0.6024384615384615,1.6368066666666667,1.7221625,1.6663160000000001,1.2828716666666666,2.0384475,1.6585616666666667,2.5868,1.3948079999999998,1.3948079999999998,0.6024384615384615,1.5676,2.4755,1.2781683333333334,2.616725,0.6024384615384615,2.661825,2.4755,1.2421133333333334,1.2421133333333334,1.2421133333333334,1.802768,1.17972625,0.6024384615384615,1.0614979999999998,1.09102625,1.0278766666666668,1.933106,2.6635,0.8569166666666667,2.10362,1.5856571428571429,0.6024384615384615,1.793044,1.6585616666666667,1.9789833333333335,1.9839333333333335,0.879863,1.9789833333333335,1.0504633333333333,2.33673,2.293575,2.373245,1.09102625,2.14542,1.3356366666666668,1.3356366666666668,0.9066245454545455,0.9066245454545455,0.9066245454545455,1.2458333333333333,1.6585616666666667,1.5856571428571429,1.6368066666666667,0.9666657142857142,1.9839333333333335,1.513464,1.623498,2.08944,1.2458333333333333,2.6223,12.5909525,0.6537125,2.65192,1.7725166666666665,2.5916,1.0036857142857143,1.0036857142857143,0.6024384615384615,1.132011111111111,1.6050499999999999,1.5856571428571429,1.806142,1.9839333333333335,1.1708666666666667,1.1708666666666667,1.644904,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,3.0440766666666668,1.0504633333333333,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.2107811111111111,0.3800104545454545,54.150298251803754,1.507165,1.6277549999999998,1.5856571428571429,1.7725166666666665,0.9666657142857142,0.6182058823529412,0.733321,0.733321,0.733321,0.733321,4.3349,16.079204166666667,3.4004333333333334,0.5664227272727272,1.6187799999999999,1.6187799999999999,1.6187799999999999,0.5664227272727272,2.951775,0.6024384615384615,1.793044,1.51929,2.4678,1.0504633333333333,2.3811625,1.0504633333333333,1.616426,1.616426,2.14735,2.14735,0.6024384615384615,1.950076,1.950076,0.9539727272727273,0.2107811111111111,2.951775,1.3775416666666667,2.4191125,0.5664227272727272,0.5664227272727272,0.5664227272727272,0.5664227272727272,0.5664227272727272,1.7725166666666665,0.3800104545454545,1.0504633333333333,2.1971125,2.1971125,2.55965,2.92258,0.6583142857142857,0.6583142857142857,3.4163333333333337,4.221466666666667,1.234367142857143,3.4829000000000003,0.987567,2.42482,2.01192,1.1196266666666668,2.98899,2.00119,3.1603733333333337,5.24795,2.189405,1.2019444444444445,4.15011,4.338975,2.62414,1.715036,2.434379615384615,4.54197,1.7873961111111112,2.6685466666666664,2.6460866666666667,3.01655,2.477765,6.116569999999999,4.01894,0.2107811111111111,2.9245966666666665,5.09035,3.50834,4.70716,4.367015,4.524015,2.9547966666666667,1.768786,4.586575,4.624275,4.309165,4.64226,5.54925,3.23353,0.7581008333333333,6.80347,1.6954500000000001,3.02027,4.671065,2.61951,2.61951,0.8412727272727273,2.00709,3.708875,3.16429,5.1636,4.47007,4.596535,4.9958,1.0909542857142858,4.690705,5.79025,6.586524027777777,2.29721,4.34535,3.9,3.840175,3.714445,3.79045,4.2824,6.0787775,4.90229,4.057118333333333,3.578515,4.359321666666666,7.334864,2.2170575,1.8517720512820515,2.9338466666666663,1.77275,2.9123866666666665,1.8619899999999998,5.0733,2.737816666666667,6.0772,1.902606,4.752305,3.9912,3.306815,4.440715,3.791515,2.5379466666666666,2.8170266666666666,2.7562233333333332,2.6816333333333335,2.511973333333333,1.6716166666666668,2.67086,2.7848900000000003,2.1982600000000003,2.1982600000000003,4.30953,2.9319699999999997,1.9786299999999999,3.0356566666666667,1.95773,2.3764066666666666,3.050186666666667,2.71772,3.0870466666666663,5.2495,3.9209,3.80966,3.3112806666666668,3.3112806666666668,3.976715,3.2387,3.71914,4.56553,4.252115,3.47401,3.332665,7.71115,2.0642925,1.89026,3.336675,3.498045,1.4775066666666667,1.4775066666666667,3.468725,1.82886,4.189428,3.765235,3.524635,2.222633,2.1195815,0.5869608333333333,3.002745,3.95814,1.7970575,2.485585,4.181145,1.1570099999999999,4.697965,1.2279333333333333,0.3872307142857143,0.5354971428571429,21.484563362103174,0.5354971428571429,0.3872307142857143,0.6837635714285715,9.257573333333333,2.4985,3.47559,4.44549,3.498915,2.70481,4.177885,2.272485,2.37109,3.697395,3.18793,4.100925,4.46259,3.5909,2.204645,3.110045,3.43782,3.932995,3.097105,1.136962,1.136962,1.136962,1.136962,3.38682,2.87319,3.371515,1.7489866666666665,1.1809633333333334,2.597185,3.548635,3.63964,2.8729,2.96157,2.71459,2.6761350000000004,4.01076,4.20698,1.1197616666666665,2.7149900000000002,1.0758699999999999,2.616563333333333,1.7177533333333335,3.826966666666667,5.20195,2.458673333333333,3.81151,3.9083499999999995,0.7755599206349206,0.21648214285714285,0.21648214285714285,0.5590777777777778,0.21648214285714285,0.21648214285714285,0.21648214285714285,0.5590777777777778,4.488495,7.628913333333333,3.569985,0.5361775,3.65609,7.726925,3.35967,3.1813033333333336,1.1789166666666666,4.300915,5.12325,4.306755,4.848915,1.667378,4.67496,2.186,2.2959126666666667,3.5617,5.33605,0.8195657142857142,0.8195657142857142,3.423595,2.806903333333333,1.92432,3.24693,2.75626,6.89,3.99604,6.6937,6.14275,5.50135,2.599925,1.556235,4.68439,3.61179,2.103845,3.5726,3.110825,1.8419825,1.145945,4.1405,3.54855,4.882163333333333,6.003276666666666,1.50903,4.009435,1.1596,2.531066666666667,3.23269,3.846935,0.4047557142857143,3.553515,3.965145,0.874437,2.74701,7.5151699999999995,2.776375,2.084245,5.480836,4.419165,3.78855,1.4112566666666666,5.46629,2.5223233333333335,3.1047833333333332,3.6217666666666664,1.9612433333333332,1.9612433333333332,6.64785,6.64785,3.6906517857142855,3.6906517857142855,11.0016,3.6906517857142855,3.6906517857142855,4.341592896825397,6.8348,3.71147,3.6059741666666665,2.87641,3.92772,3.8386,3.214066666666667,3.1527,4.62412,3.2422166666666663,2.6730366666666665,3.3671333333333333,2.21177,2.702,5.10495,7.1850249999999996,6.5123675,5.08135,3.768735,4.029425,6.827884,5.389,4.427845,3.544975,4.52792,2.4015366666666664,2.23484,2.17038,5.7266,5.7878,4.786379999999999,4.425575,2.272823333333333,2.545603333333333,6.885396666666667,1.802768,2.5899199999999998,3.4031333333333333,3.4031333333333333,3.17481,4.89099,0.790245,3.4992,3.772505,2.9735766666666668,10.09362,4.117305,2.7629933333333336,2.3329233333333335,4.674555,5.9569,3.008145,5.50615,2.65494,4.53574,3.02741,4.34932,5.47405,4.761545,1.0357933333333333,3.657133333333333,1.0830625,2.5114433333333332,5.0176055,7.554449999999999,2.3054099999999997,3.3695,6.558708333333334,1.7250139999999998,4.662675,5.46425,3.732445,3.737165,2.21792,4.648575,2.249065,0.4625715384615384,5.00045,3.070465,3.3989666666666665,5.04625,4.99154,5.367,6.577975,4.51939,5.71525,7.3872675,54.32810166666667,4.551575,3.8183,4.600175,5.5476,4.498875,4.981695,4.409795,4.728755,1.93652,3.858565,3.891905,4.737045,2.660645,5.0654,3.68311,1.652424,5.6961,6.3902,7.3761399999999995,5.33525,3.27068,4.505505,3.370675,3.204915,3.56184,4.302275,3.959085,6.60332,2.822975,1.0927542857142858,2.4437312500000004,0.576406,0.576406,3.128435,0.576406,2.5679121071428574,2.5679121071428574,3.3034341071428575,4.56206425,5.0787958571428575,2.4437312500000004,4.7959708333333335,2.5384883333333335,1.3175433333333333,5.7825,2.12569,6.952992,5.56152,11.143687325757575,3.3975000000000004,2.516453333333333,0.21199757575757575,1.8836643333333334,2.1810733333333334,0.95299875,1.3276533333333334,2.7606800000000002,2.3984625,2.574075,0.604283,27.112404583333333,1.84158,0.8150461538461538,2.5092333333333334,2.5092333333333334,0.4045505555555555,1.6152075,3.1320375,1.29055,1.583755,1.612125,4.121875,2.87017,2.127943333333333,2.4401633333333335,1.1130416666666667,1.9059325,1.4578316666666666,5.340933250000001,4.022995,6.869391666666667,2.50455,3.4341000000000004,0.8935666666666666,2.11006,5.2435,6.22176,3.03857,2.1138066666666666,5.332556666666667,2.01614,2.5735933333333336,4.2491425000000005,1.0694066666666666,3.4754666666666663,2.295996666666667,5.0706,4.632705,5.9676,3.10034,3.957915,3.957915,5.27325,1.74255,5.45685,2.9142466666666667,1.648565,3.08964,3.260475,5.265254666666666,4.41761,2.7511033333333335,2.89494,3.07908,1.0017857142857143,5.08935,0.9344575,5.58736,4.57283,7.84235,4.67234,4.42588,4.0437,8.4861,4.54752,4.64773,1.19361,0.73365,4.51332,4.166215,2.12138,3.085355,3.36049,4.226725,2.163295,4.942625,2.50103,5.475,5.3707,5.74595,4.46546,4.968165,3.132505,6.488462,3.589265,4.568115,3.327925,4.719,5.266027261904762,0.5912428571428572,3.724266666666667,1.67709,0.5784722222222222,4.249215,2.14885,1.07647125,1.980395,6.20237,3.896785,2.27889,2.721413333333333,2.7538933333333335,4.96597,4.19279,1.6771297619047618,4.26648,2.1817866666666665,3.9313000000000002,4.37572,5.122,2.8591325,3.6875666666666667,3.9162,2.0585,7.3452,5.0719,4.44768,5.49805,2.21437,4.37293,4.787105,3.701585,3.92271,10.5434,3.19746,4.679898333333334,4.742545,4.84047,2.46714,4.540125,4.163905,4.901135,3.332003333333333,4.02614,1.4179725,2.990256666666667,3.319045,3.719005,5.03785,1.994142,4.06615,3.1656999999999997,5.6839,3.050926666666667,1.82963,4.03122,4.23774,1.06079875,3.057945,2.7067833333333335,4.519031333333333,1.655802,1.7231933333333334,1.1514775,3.37349,5.52565,5.4252,3.5553725,3.51749,2.382775,2.069245,1.9804,1.50932,6.333,3.04289,1.96668,0.8900923076923076,20.08056055769231,3.04831,3.0255099999999997,4.3853333333333335,3.9998546153846153,1.4849366666666668,2.8359300000000003,2.9445225,1.326556,1.85197,4.612935,4.58198,3.5020966666666666,3.16684,5.4491,4.79324,7.00355,4.6678275,4.30842,3.6887,2.6079666666666665,4.045115,3.883565,3.529,3.79947,1.80325,4.803075,8.36658,3.297365,2.89209,3.387655,0.57587625,3.10149,2.083206666666667,2.2618975,4.35913,3.10163,5.07385,3.70608,2.923995,2.1985675,1.68259,0.732072,1.4819833333333332,1.2191933333333334,3.896575,3.76841,4.66461,4.62426,7.44197,2.2372666666666667,1.409154,2.512093333333333,7.8858966666666666,3.21962,2.739825,2.98565,4.28949,3.1923325,3.658675,1.565926,4.79711,4.844785,4.148105,3.89989,3.469495,4.45813,4.310775,3.757225,4.47084,5.2351,2.096235,3.3562666666666665,3.11933,5.55995,2.961045,4.354374,2.69938,2.863965,2.2940566666666666,2.2774533333333333,2.1492033333333334,2.5906943333333334,2.5906943333333334,1.9384866666666667,2.7844933333333333,2.3639933333333336,2.338713333333333,2.092423333333333,4.11521,2.43093,3.0742766666666665,2.8632066666666667,1.71835,4.38568,2.6857,3.819495,2.2315633333333333,5.265,5.3528,5.0000225,2.49991,2.325775,2.887375,2.561405,2.151255,2.7548,1.8855575,2.70545,2.77555,6.8141195,4.4708275,3.69794,0.622139375,4.38679,3.903485,4.14527,3.29026,3.92486,3.687640833333333,6.46795,4.25639,3.158505,2.7920242857142856,2.09951,2.48388,1.668708,1.7943840000000002,1.6641860000000002,2.02792,1.8136725,1.2301216666666666,4.127440571428571,0.6024384615384615,0.56518,1.960634,1.4977716666666667,1.3713359999999999,1.4110583333333333,2.338849696969697,1.4229466666666666,1.7214580000000002,0.6084,168.22553862211402,0.47197066666666665,1.940128,0.9914820000000001,1.201185,2.0641625,1.5437175,1.9825825,2.26564,1.733285,6.58015,3.253345,3.438279047619048,1.9015433333333334,3.216075,1.286025,1.286025,5.7040275000000005,0.49296333333333336,2.197155,3.3704666666666667,3.03959,0.84817,0.5459252941176471,1.1823721025641025,1.0184818181818183,2.2162875,4.02549,1.94239,2.091325,2.2813033333333332,4.500165611111111,1.1057377777777777,4.564985,3.274445,3.56352,6.92584,1.7137966666666669,3.090715,2.438275,3.600239,2.04937,2.70263,2.81622,3.41125,4.24832,3.235095,5.79967,2.437375,2.450735,3.309475,1.448655,2.621825,2.565005,2.68629,2.024565,1.48297,2.284345,3.963645,5.237616666666667,2.60304,2.84675,1.333075,4.390375,3.8143999999999996,4.047266666666666,2.902595,24.85664539148352,2.7265466666666667,2.64657,3.0128566666666665,3.5691333333333333,3.0155433333333335,5.72734,3.13076,2.25608,3.31255,3.5973333333333333,2.1345733333333334,3.22462,3.4780333333333338,3.359,1.74155,1.6476834999999999,0.5894510000000001,2.22212,1.9345275,0.209325625,2.2338733333333334,2.6375,0.209325625,0.209325625,2.1241589583333336,0.209325625,0.209325625,0.209325625,0.209325625,2.7117299999999998,2.5304800000000003,0.5851276923076922,3.124528928571429,1.4826975,2.00522,5.4672,4.360435,6.137475,2.023145,4.854885,2.0880675,2.5725966666666666,1.2423214285714284,5.703286666666667,2.8415433333333335,6.070360000000001,0.875125,1.48129,4.81592,4.838595,35.108055063270065,1.535254,1.39044,2.332943333333333,2.2855925,0.9066245454545455,2.38279,2.5087366666666666,2.7179566666666664,2.0036866666666664,2.4745466666666665,1.692675,2.5413,2.3326333333333333,2.16374,2.72391,2.421393333333333,4.096635,3.3256366666666666,1.1162242857142857,4.092695,3.99808,20.1218775,2.796193333333333,3.3670333333333335,2.5327566666666668,0.9404859999999999,3.362334,1.7053293333333333,3.362334,2.2759266666666664,2.5168066666666666,2.8426566666666666,1.5654975,1.9910975,4.272235,4.055675,5.01215,4.345075,1.6804960000000002,5.0346,1.6410275,4.78057,4.007285619047619,4.100925,0.7567,2.0502725,2.0643625,2.684606,3.400335,1.08298375,3.017235,1.965036,1.9729966666666667,1.0626200000000001,1.0626200000000001,2.5547333333333335,2.6800866666666665,4.36673,28.756396249999998,6.265715,1.9650966666666667,3.673636666666667,0.37311533333333335,5.880402500000001,5.968,2.8824433333333332,3.30998,5.327425,3.48688,1.08596125,4.429265,1.3105660000000001,2.622535,4.28051,4.795035,2.377935,3.16624,4.359215,2.5093,2.9134955,4.2098,1.26251,2.46969625,3.771575,5.2597249999999995,2.4789066666666666,3.09927,2.7062033333333333,4.316005,4.04848,4.039865,4.3299666666666665,1.73768,5.9077,2.64283,1.756608,4.087135,5.2904,4.05277,3.37719,0.70910625,3.05597,3.522835,1.929715,4.890930666666667,2.77471,3.97786,2.86289,3.3554333333333335,2.531995,3.2560066666666665,2.900733333333333,3.1143300000000003,4.182115,5.49475,3.385595,1.72473,3.87364,4.124945,1.89616,2.00316,1.698405,4.013671111111111,4.52944,5.367493125,4.038405,3.4387333333333334,3.693535,3.1706333333333334,1.4601366666666669,3.06641,2.975595,2.92671,4.75458,4.60122,4.238655,2.94682,1.82605,1.57975,1.533355,3.52138,2.43521,2.19722,3.368525,5.20415,1.585035,5.26215,1.4218214285714286,1.81964,3.29321,2.82345,3.004735,3.629485,3.210095,1.579445,0.9793475263157895,3.36583,3.856715,3.95958,8.594938333333333,2.7014333333333336,2.9428533333333333,1.58111,2.7577466666666663,2.6677066666666662,1.1643216666666667,2.887703333333333,2.612483333333333,3.1777599999999997,3.7997666666666667,3.211956666666667,6.618056666666667,3.1136633333333332,0.7635790909090908,1.6106866666666668,3.423585,3.167015,3.35512,3.7396999999999996,2.575151,3.00516,2.623425,1.9528964285714288,3.974435,2.5892,3.35575,2.04332,5.0421,5.7484,4.263055,3.384895,3.977855,0.8976644444444444,4.508575,2.7812099999999997,2.63261,4.37257,2.6147766666666667,2.65416,0.38954428571428573,0.38954428571428573,4.536961666666667,3.963085,7.06485,3.069535,4.62936,3.65799,3.14809,4.98825,4.151705,1.0535625,3.88706,2.5947833333333334,4.109418333333333,2.9128233333333333,3.030935,1.8341566666666667,3.325708214285714,2.4563333333333333,2.755576666666667,2.6322566666666667,2.814,1.94987,22.36304658959157,4.063185,4.532475,3.973905,3.28796,4.6128825,3.516695,4.66633,4.733905,3.73114,3.38681,3.732125,2.4720366666666664,2.7093000000000003,2.9806933333333334,2.9164233333333334,2.8714933333333335,4.295435,3.589835,4.683895,5.13925,4.484355,1.317864,1.545912,1.545912,4.811725,3.90776,2.4194633333333333,2.3626,2.983503333333333,3.292435,3.276385,7.525504999999999,3.1109899999999997,3.4921333333333333,3.0662683333333334,5.20095,1.6578666666666668,5.9367425,2.4345066666666666,2.86812,1.77445,4.11515,2.93216,5.9415,2.882285,2.856205,4.23291,3.972115333333333,1.4552075,2.5435866666666667,1.61141,7.262457,4.18466,6.797916666666667,2.1891675,4.14645,3.62402,3.815955,5.2085,3.3278199999999996,3.3278199999999996,2.17529,4.263195,5.0016,2.424085,6.5647657142857145,1.5400425,6.0017,8.624533666666666,3.6829,4.168147333333334,2.2922866666666666,2.09075,0.620133125,4.47873,2.634,2.79075,3.686482,2.43605,2.4061733333333333,3.703305,5.82125,5.14875,5.1617,4.61278,4.10191,2.245295,1.0669272727272727,2.887675,3.351935,2.83394,4.97655,4.063835,3.262545,2.505985,1.9275680000000002,4.228765,1.0205625,5.18505,1.0201533333333335,5.39415,3.305685,4.91535,4.86652,3.092425,3.258065,2.9859666666666667,2.308526666666667,4.28366,3.082655,2.564605,3.564255,4.579265,5.488875,4.6185,1.6964775,3.455305,2.93827,5.6194516666666665,1.89848,1.89848,2.900653333333333,2.3546333333333336,2.5356833333333335,2.83394,0.8227040000000001,6.41595,3.211625,2.1683775,2.39652,2.692955,3.68356,2.464785,3.743495,5.2932,5.4132,4.782405,6.05755,5.677,1.316875,3.61724,1.1312916666666666,2.421175,4.3434,2.566635,3.066975,3.197025,4.738005,2.983195,0.4493684210526316,4.81302,4.13373,5.24725,3.41603,5.1312,5.50515,4.323005,4.095285,1.889395,4.586705,2.074065,4.2705,4.2705,6.4031,5.57095,5.7325,5.2165,2.71869,1.6578666666666668,4.34996,1.9186033333333334,1.6607,2.18703,4.18439,4.11975,4.51505,8.03387,1.5454533333333333,5.18075,1.2733766666666666,3.111845,5.9798,2.0136225,5.05655,2.61804,4.70778,3.434485,4.958485,3.9863999999999997,4.183205,4.093645,5.86005,4.328205,3.73615,3.778245,6.02485,4.137525,4.475435,3.71461,3.93807,7.363833333333334,3.526505,7.26928,3.358745,5.36665,6.107448181818182,4.382035,3.61488,1.7601625,5.6219,3.956945,0.8318355555555556,8.30792,6.1078,5.09405,3.1071583333333335,5.3337,2.985335,1.748492,4.050175,1.1197616666666665,6.2011,2.82102,4.56642,5.40395,4.435695,4.026155,2.1624866666666667,4.438465,5.1651,1.3569,7.028205,2.89689,3.521515,5.04025,4.484355,2.22974,4.4914,3.611775,3.904335,2.812913333333333,4.09806,3.8015,5.3216,4.559455,3.30771,1.909585,1.909585,7.5805066666666665,1.5145285714285712,5.14585,4.390145,5.06995,3.5018,3.350145,4.82182,3.96123,0.97995,0.97995,0.97995,3.634735,3.152965,3.90259,4.517282666666667,2.75094,1.48698,4.17741,2.176595,2.76203,3.94185,4.64459,2.095525,2.09528,5.37551,3.66749,2.98056,4.397715,1.592015,1.94581,3.370033333333333,2.61721,5.1077,1.378674,1.639846,0.9647175,4.110975,3.48024,2.78394,2.96861,5.56735,1.734818,2.04781,3.03934,1.6971714285714286,3.058455,3.613545,2.520025,5.77335,5.60945,2.7478,4.10961,3.60794,3.494735,3.34751,3.974875,3.547305,7.03334,5.50225,1.98243,1.8143333333333331,3.53652,5.0216,4.81564,3.641955,3.013923333333333,4.09431,6.3576,5.2001,2.6768033333333334,5.29065,4.10366,5.19595,8.45745,3.567875,0.6962990909090909,4.21358,4.2135291666666665,2.450305,4.03352,3.919966666666667,5.8629,3.88137,4.03403,3.810715,4.465655,4.78594,4.28773,2.97223,3.75026,5.0617,4.01802,2.34283,2.963085,6.53372,5.52895,2.0095400000000003,3.24595,4.862250833333333,3.85946,4.865525,4.230595,2.53307,0.8652544444444444,4.452940606060606,6.957055,3.67839,4.66727,3.607105,6.790188333333333,3.830655,3.6185333333333336,2.95966,3.81235,2.00509,3.42483,4.35102,2.499121,3.643195,5.8216,1.422735,4.456325,0.6608464285714285,6.2803,6.34195,6.2482,6.275,1.6387883333333333,1.77775,4.8419,1.89127,5.4203,0.5324075,6.0771,3.151795,1.534716,6.1755675,6.80065,0.78082,1.4763259999999998,1.401794,1.401794,1.401794,2.2396166666666666,4.445595,3.724355,3.607785,3.769965,4.947315,3.67681,2.01006,4.37056,4.79923,0.3017560975609756,3.299155,4.15893,4.74687,38.938668734848484,5.628266666666667,5.03725,11.381275666666667,2.634345,3.9958,7.481526666666666,3.21473,5.08315,3.923665,4.26218,9.162939999999999,3.933455,2.5675266666666667,2.708615,5.1262,4.20207,3.676365,4.264635,1.96299,4.509655,4.15141,6.727935,4.16021,5.138,2.3541125,4.267925,0.516739375,1.4413183333333333,3.528125,6.163,2.83273,1.2278033333333334,1.2278033333333334,2.87886,3.759515,4.19464,4.60007,1.7574266666666667,3.35884,4.36465,1.97434,3.4485333333333332,1.6687539999999998,1.6446533333333333,3.97686,4.69481,2.114835,4.77318,2.2892,1.96692,3.79394,3.66302,4.02388,3.86066,6.183327333333333,2.4887023333333333,3.94058,0.8212972727272727,0.6592991666666667,3.885685,2.17485,8.71705,3.4004333333333334,5.12285,1.6552825,4.5037,1.4900849999999999,3.75919,4.26042,2.503903333333333,3.82683,4.815125,0.42020549999999995,0.42020549999999995,3.6969,3.2144633333333332,2.9204600000000003,3.53577,3.600135,5.50185,1.0374272727272726,9.984721666666667,11.11015,2.0384475,4.7350525,4.58346,4.99889,3.63282,2.658506666666667,2.0042400000000002,2.0672525,9.6059725,2.2614575,2.714123333333333,3.6415539999999997,4.560375,3.6415539999999997,2.0069725,2.8975866666666668,2.7554833333333337,0.7369763636363637,5.433350000000001,2.85586,2.70905,4.039485,8.875205000000001,10.85715,4.0814,4.08077,4.169025,6.4209950000000005,1.8905025,1.4092625,25.809339166666668,4.178145,3.775415,1.04091,4.41721,4.144785,5.4612,4.449325,5.3029,5.634586666666666,2.9870900000000002,2.1096533333333336,0.6528352941176471,0.7379133333333333,4.69817,5.1791,1.3656866666666667,4.273433333333333,0.9438916666666667,3.7383666666666664,1.4648633333333334,4.294215,5.7928,1.866305,2.506865,2.31571,3.78732,2.9215,0.41441111111111106,3.909275,3.580775,3.1161833333333333,3.338,4.854005,2.7959366666666665,4.273505,3.04423,4.702855,8.266663333333334,5.02775,8.367474999999999,2.764375,2.6231533333333332,4.45632,4.3223275,4.49292,4.41767,3.712045,5.11035,1.199025,3.304909583333333,3.3574860714285713,0.78359,1.545912,1.545912,4.17562,7.4658766666666665,0.8349923076923077,4.91577,0.864345,3.0232833333333335,2.3538099999999997,2.7746518181818183,6.282878888888889,2.5127866666666665,1.1624222222222222,2.3070166666666667,1.22089625,1.9562799999999998,3.0980233333333334,3.072906666666667,3.29101,2.4385666666666665,0.864345,4.61167,4.77212,5.46575,2.85079,4.0529,2.1096,5.88145,4.699205,4.5982,2.9498533333333334,3.34375,2.282195,1.5076875,4.08957,2.781,4.44034,5.5796,1.610584,4.63605,2.8755666666666664,6.4945683333333335,3.46923,2.36244,0.864345,2.405,2.68195,7.001222277777778,2.2935166666666666,1.9221240000000002,2.2935166666666666,0.42057666666666665,1.250126,3.911835,2.69835,1.9227125,3.66788,3.8437530000000004,0.6207130000000001,0.6207130000000001,0.6207130000000001,7.66084,1.56549,0.7332418181818181,2.427945,38.530145023809524,1.802813111111111,0.6509411111111111,2.6973525,0.6509411111111111,3.722955,1.98551,2.365775,2.4637366666666667,5.0835,4.198585,4.567485,2.40004,0.9033271428571429,4.399485,3.1898466666666665,5.02505,1.028897142857143,3.12595,3.12595,3.79133,4.50298,3.39977,4.753308461538461,3.243625,4.85206,5.23765,1.817922,1.09581625,5.286,6.5853,3.90999,0.676384,4.49396,4.172818333333334,0.907655,4.410365,2.377845,3.783445,4.35906,1.9468768686868687,1.9468768686868687,4.126225,3.403485,0.8996633333333334,3.137315,2.85966,3.29052,4.01023,4.49657,0.42342,0.3442941176470588,0.3442941176470588,0.3442941176470588,0.7677141176470588,0.5966984615384615,0.680332,0.3442941176470588,0.3442941176470588,6.957415,0.3442941176470588,0.7677141176470588,3.55264,1.291765,4.56688,1.1790383333333334,0.6207053846153846,0.907655,2.654155,2.66295,4.00694,3.15303,0.3442941176470588,0.3442941176470588,4.331045,3.743655,4.02907,2.575655,4.079295,1.523234,3.80833,0.680332,0.680332,4.62906,3.057225,2.837975,2.88664,3.9159466666666667,1.0733599999999999,0.9195615384615384,10.25909,1.3225875,3.88046,4.566105,5.1116,2.02724,0.39125695652173914,0.8633825,2.8198000000000003,3.03838,3.207205,4.434195,1.313788,5.9702,3.461115,4.8806475,4.111595,3.00416,2.90939,6.664615,2.45416,4.60289,4.143735,3.9083499999999995,5.66702,0.5538633333333334,4.295695,3.3968000000000003,2.05742,0.7127444444444444,4.00499,4.49867,2.667055,2.51602,2.090555,5.1102,2.757215,2.74726,0.980026,0.46662461538461536,3.92087,0.3542893333333333,0.7663936363636363,3.968685,2.998335,3.682715,2.647865,5.3806,4.36968,6.3097389999999995,3.549025,3.524495,4.44416,1.5730925,5.1926625,1.768646,3.969055,2.517125,5.913550000000001,2.707,1.072176,4.49199,6.9285175,6.6107875,3.6752000000000002,0.7907483333333333,2.9703733333333333,4.2105,3.856375,4.57768,4.596005,4.113095,4.91935,3.28926,4.222645,1.8024966666666666,2.304,1.3750933333333333,3.77166,9.43874,3.19068,3.702385,5.8938,2.748465,4.049845,2.4749933333333334,2.982736666666667,3.292685,3.14874,3.55794,3.57483,3.3797,5.38765,5.9243,3.97744,4.703655,5.1348,4.05287,2.69177,5.15985,7.739125,0.9192622222222222,4.093835,4.14622,4.84926,5.5353,5.0152,2.216185,8.128725,2.4654133333333332,3.527495,5.8595,3.780675,4.373465,2.25664,1.7271925,3.2260633333333337,2.3975433333333336,2.157903333333333,2.893613333333333,4.28741,4.51575,4.04495,3.41091,4.695055,3.613035,3.15802,3.9637075,6.0111,3.0479,5.436677666666667,3.813335,4.01538,3.598305,7.86347,3.74579,3.66501,4.156345,4.662725,2.931005,10.6518,1.3510683333333333,2.08253,3.693425,2.6821533333333334,2.6821533333333334,1.97913,7.843534999999999,0.8839255555555555,3.029615,0.89857375,2.04781,4.19637,5.41065,4.04638,4.01923,2.9023033333333337,3.061255,3.62249,3.85744,4.268585,2.91621,2.4834466666666666,3.98579,4.945884166666667,3.143435,4.43731,1.595662,1.647164,2.6560633333333334,5.7277,2.2354575,1.70854,2.0492275,4.28869,4.66069,3.098835,2.609015,0.5256011111111111,2.301135,7.98772,3.323035,1.5006533333333334,0.824105,1.2376133333333332,1.8512566666666668,2.32698,1.1934683333333334,2.1205333333333334,4.3814495,4.000905,4.853635,2.411826666666667,1.9200725,6.2880475,2.95,2.2376566666666666,2.2376566666666666,2.2376566666666666,6.726413333333333,2.2959133333333335,3.64603,2.521,0.474532,1.1350500000000001,2.5908,6.095965,0.43721388888888885,3.68428,3.9445133333333335,6.02015,3.039533888888889,0.43721388888888885,3.039533888888889,0.96672375,1.198432,6.0037,4.465115,6.63467,3.85686,4.59891,3.490375,4.135685,5.0484,5.522,6.01155,3.73868,3.423205,5.13915,4.54712,4.171415,4.47358,4.660425,1.3628483333333332,2.673636666666667,1.25015,2.0903975,3.186739861111111,1.5931281944444444,6.55976,5.6194516666666665,2.661763333333333,4.296455,3.11531,4.756855,2.75949,4.007495,5.0783,9.309266666666666,5.1675,4.353175,2.475905,2.956365,2.19858,0.57587625,2.1950924444444446,6.2004,5.27705,4.932855,4.56989,0.5631493333333334,2.0193575,1.415525,4.30097,0.7425476923076922,6.156805,2.03343,1.1043375,1.1043375,3.929608,2.00114,3.1182366666666668,2.496015,4.54726,3.84513,3.84513,4.145245,5.869948333333333,2.7376966666666664,2.5401233333333333,3.360533333333333,4.94806,1.912558,2.82226,5.5842,5.07845,4.95392,4.35304,3.9063083333333335,4.80733,3.4464875,3.1008266666666664,2.355265,4.159345,5.35195,3.3025725,5.1662,5.6045,2.02231,2.58324,6.2476,6.95335,1.149696,2.66735,2.3756625,2.7623833333333336,2.16862,2.5852,2.612999,1.0569422222222222,1.95216,2.768925,2.4730875,2.4878033333333334,2.4878033333333334,3.076955,3.058525,2.261787115384615,2.80055,2.3765325,2.0755,1.627694,5.2122,15.096634833333333,2.891766666666667,3.2712066666666666,1.8376819999999998,1.8376819999999998,1.5910616666666666,1.5910616666666666,2.84502,3.8313,2.7864,1.9527775,1.9527775,3.9969333333333332,2.5064366666666666,1.20709,1.4923857142857142,3.0522833333333335,2.9488733333333332,3.6927,2.538942142857143,3.2353133333333335,3.1722099999999998,0.687273,2.605625,3.591055666666667,7.0238499999999995,4.77149,5.5949,4.361655,3.49745,4.81019,4.58614,3.012916666666667,4.15414,1.4082266666666667,3.2175499999999997,5.7672,5.2623,2.678655,1.3877249999999999,2.79282,2.416043333333333,2.9921133333333336,1.5490366666666666,0.7134614285714286,3.1017833333333336,4.551198333333334,4.88273,4.29331,4.69563,3.13386,2.135683333333333,3.3150225,2.6820066666666666,3.3801,3.17553,3.5126333333333335,2.6406666666666667,2.338783333333333,3.6120666666666668,2.9869733333333333,5.2143,4.799265,5.151443333333333,5.151443333333333,3.427745,3.82296,3.79325,3.8512,2.743615,4.97321,3.38742,3.1384366666666668,6.21025,0.7400541666666666,5.3947,4.73006,2.4847733333333335,5.675323333333333,3.545833333333333,1.7067500000000002,1.3203914285714284,2.058736666666667,1.00739,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.2919767857142857,0.5099285714285714,0.5099285714285714,1.21644,0.7930966666666667,1.6308360606060606,0.89604,0.89604,1.208869393939394,0.42196666666666666,0.4037966666666667,1.2182475,1.4162825,2.6160833333333335,2.28915,6.435523333333333,2.8396833333333333,3.905125,3.455606666666667,5.2782034285714285,1.3231233333333334,4.7737,3.89429,5.07665,2.96986,1.5164339999999998,4.114799615384616,3.604695,4.50825,4.729145,2.942085,4.87515,4.531045,4.672985,1.231876,3.872755,4.684655,3.153485,2.4053633333333333,3.38641,2.446025,3.270345,4.305775,2.93599,4.41658,8.725755,3.31603,4.87202,4.225625,4.3747533333333335,2.6849866666666666,4.512105,0.9217271428571429,4.6316,3.408105,2.17032,1.357125,2.830265,1.1900883333333334,0.522956,3.6516333333333333,4.226605,5.22634,3.6988,2.44805,2.94589,4.878235,3.9522999999999997,4.493535,2.6715,2.20948,4.15089,3.89584,4.56513,4.98012,4.288535,3.734615,4.661245,3.070123333333333,4.35292,2.1697100000000002,4.71038,5.17475,3.26202,4.333965,2.54897,3.83313,5.7684,3.889935,5.2369,4.50553,4.854965,2.41915,4.83576,4.970515,4.631395,2.158995,1.167675,4.029445,4.72261,4.08323,4.831955,1.671805,3.925945,2.33832,4.927605,4.53881,4.43472,2.3373825,4.259325,4.688635,4.194465,2.61566,4.890525,4.76783,5.42975,3.77287,2.158995,2.2255,2.881175,5.1884,3.851745,4.206255,3.532685,4.77081,2.388595,6.6653,5.2478,4.5522,5.327737979166667,5.19528,5.12575,3.506315,2.830138333333333,2.830138333333333,3.577935,3.521,4.569915,2.224955,2.859795,0.9823575,2.6204533333333333,2.8808866666666666,2.25346,2.9450333333333334,4.08322,2.941383333333333,5.22495,2.5571266666666665,4.4826,4.682712499999999,1.84444,4.157165,2.66596,2.602326666666667,4.042325,0.93043,5.09975,4.440455,5.8788775,4.617245,5.54625,1.34054,4.742015,6.63305,8.11337,3.19845,3.3189566666666668,1.9747879999999998,0.821976,3.862535,1.012512857142857,4.82991,4.664825,5.73705,3.1868,3.82532,1.1362700000000001,3.31945,3.59839,4.43173,3.65657,2.898825,2.844645,2.422695,4.189385,4.90091,5.73385,4.475215,3.614615,0.3309488888888889,0.3309488888888889,0.3309488888888889,0.3309488888888889,5.5299,2.98429,6.2415,3.12232,5.1944,4.683725,3.572955,2.208555,2.55211,1.45702,4.86205,2.928463333333333,4.16231,3.771425,3.346695,1.581555,1.15010625,4.730975,2.530995,6.03843,4.063035,4.54673,2.25618,1.52992,0.8763255555555556,3.277575,4.356845,3.14399,2.12882,8.170635,4.75685,3.48438,2.33034,0.496194,3.341775,2.72621,1.990465,1.91425,2.60839,2.8012,2.402025,3.043283333333333,2.9747,3.34435,4.53508,3.677175,4.040365,3.06284,5.740333333333333,0.6193306666666667,4.665465,5.70985,4.990675,4.577685,3.4362,5.254,4.31429,4.28953,5.4253,5.32475,4.427025,4.416325,3.8455624999999998,4.953755,2.674015,9.07244,4.94608,4.20254,4.804675,5.11875,5.7393,3.63394,1.1526444444444444,6.027166666666667,3.52419,4.94623,1.4557883333333335,4.24072,3.477115,7.025353333333333,4.719655,3.19398,1.9595366666666667,4.966175,2.04934,0.94838125,4.328885,6.0209,1.9565533333333331,2.387356666666667,2.886623333333333,3.1638,3.668335,3.77963,5.18,1.9702566666666668,4.27302,4.059301,3.228855,3.7221333333333333,3.68109,2.82366,2.54931,1.8132525,2.5240199999999997,2.7135233333333333,4.41858,0.5869608333333333,2.5941466666666666,4.29987,3.06743,3.5653,4.422745,5.31105,3.99908,16.558058136363638,2.4387266666666667,4.108133333333334,1.437912,0.8945536363636364,0.8945536363636364,0.8945536363636364,0.8945536363636364,0.8945536363636364,4.73181,4.700325,4.802275,9.2322725,2.341305,2.341305,4.64285,4.8370025000000005,1.3254025,2.005316666666667,3.793175,2.495985,2.328575,2.31,3.07261,3.7257273333333334,1.6600725,3.450355,0.84135,2.83217,2.74976,3.0459633333333334,1.39455,3.1727066666666666,2.1195366666666664,0.96293375,2.7472966666666667,2.700286666666667,1.3144888888888888,2.46208,2.6054633333333332,2.25127,4.427403999999999,2.0875166666666667,2.8256866666666665,2.07942,2.7154733333333336,1.1465333333333332,2.755516666666667,4.8591940000000005,3.5556666666666668,1.09883875,3.188523333333333,1.26301,2.4886733333333333,2.4176966666666666,4.925158333333333,3.118203333333333,2.437326666666667,4.646636,2.643666666666667,2.20143,2.728676666666667,2.39127,1.6167433333333332,2.8316866666666667,3.12478,2.9730166666666666,2.3682,3.16896,2.60729,2.520075,3.6984605,3.6984605,2.9470733333333334,2.03781,1.9103466666666666,2.4237266666666666,5.4731000000000005,3.018103333333333,1.9397633333333333,1.73032,3.08356,4.14089,2.49539,1.0550979999999999,2.6301146666666666,1.54772,3.8955333333333333,2.2121633333333333,2.473,2.09666,3.4436666666666667,1.136774,1.6388733333333334,1.4278566666666668,4.2445466666666665,2.5606466666666665,3.879765,1.0524111111111112,4.05442,2.121653333333333,2.1059625,1.74101,1.6623400000000002,3.4047666666666667,23.3764929978355,7.3148,2.6368266666666664,3.3901241666666664,2.49783,10.025234666666666,3.0956833333333336,1.0021375,2.60955,2.480376666666667,2.1036466666666667,2.7568,2.6667,2.554116666666667,0.9727750000000001,3.0845966666666667,2.496986666666667,3.1007233333333333,2.761953333333333,2.5543733333333334,2.0499133333333335,2.2932833333333336,2.8856933333333337,2.6470766666666665,2.114985,1.6045919999999998,5.1529283333333336,4.670665,2.33699,3.001925,2.32104,2.382206666666667,8.1406425,1.98297,4.91894,2.5161,2.0228175,7.4138,2.8563233333333335,2.80313,2.530125,1.8620139999999998,1.550093846153846,3.2390566666666665,2.9963233333333332,4.011385,1.484605,3.6572666666666667,1.404715,1.404715,4.03166,4.17299,3.6016371428571428,3.6016371428571428,5.759053333333333,3.467205,0.419852,12.078589423076924,1.2310233333333334,0.9526899999999999,3.8131633333333332,1.4498235897435898,2.0756725,6.030593333333334,3.737985,0.7339254545454547,2.153216666666667,4.854110545454546,2.3642746666666667,3.89845,1.3687928571428571,5.3401,5.1372,4.923575,3.28161275,1.8812000000000002,2.3581866666666667,2.57556,2.4089633333333333,2.23284,5.227966666666667,4.62515,4.063185,1.8950975,4.74642,4.07384,3.3406333333333333,2.16591,5.0723,2.4509866666666666,8.843656666666666,6.929209999999999,1.8672225,2.280115,1.771538,4.609566666666667,4.609566666666667,3.1932266666666664,2.53236,3.3257513333333333,4.82797,9.8725875,4.3851,2.547325,5.55815,4.45808,5.27605,1.960982,0.8516525,1.32972,4.486955,4.89729,3.8246333333333333,2.6358833333333336,3.8218333333333336,2.11629,3.89931,4.94218,3.387665,5.45765,3.2794399999999997,3.6970680000000002,3.2539233333333333,3.279336666666667,3.4591666666666665,6.2242,2.976525,5.70795,4.767995,3.42582,3.40105,3.40105,5.669656666666667,12.081569166666666,3.7552333333333334,5.93637,7.362065555555556,3.626135,2.5010566666666665,4.03619,1.2884633333333333,3.786025,2.70165,2.9320566666666665,3.09681,3.189363333333333,2.13944,2.31412,2.6085233333333333,2.4835866666666666,3.0999133333333333,3.1038099999999997,3.614615,2.552243333333333,2.979373333333333,3.913415,2.81003,2.43504,1.12295625,2.0634975,2.733753333333333,2.4314933333333335,2.53682,2.4259066666666667,3.386433333333333,2.4082166666666667,2.46512,2.5228033333333335,2.9709633333333336,2.699393333333333,2.6602833333333336,2.5333366666666666,2.99504,2.8330966666666666,3.340016,2.699056666666667,2.52658,2.304203333333333,2.8093733333333333,2.558386666666667,3.4400333333333335,3.4722666666666666,2.440685,1.9257275,1.9257275,0.7209883333333332,1.565926,3.96637,3.172845,2.61467,2.13944,3.14871,1.2327985714285714,2.620816666666667,0.5549459999999999,3.4985999999999997,3.04142,3.20238,3.0160966666666664,2.476786666666667,2.6835799999999996,3.0088500000000002,2.5282966666666664,3.3968000000000003,4.53077,1.474132,2.847716666666667,2.4815,1.7767333333333333,2.10918,2.6036033333333335,2.8792333333333335,1.6057379999999999,2.5197266666666667,2.6106866666666666,2.626866666666667,2.6060033333333332,2.7752833333333338,2.8817500000000003,3.05618,1.36066,2.7755233333333336,2.3212733333333335,3.5948333333333333,3.8968000000000003,2.21382,1.9395966666666666,3.3314466666666664,2.3511166666666665,3.528166666666667,2.61375,2.5853033333333335,5.13803,3.559533333333333,2.1332566666666666,1.576878,3.2927166666666667,6.3399399999999995,3.0541966666666664,3.5723000000000003,2.76317,3.0244366666666664,4.601087333333334,1.572924,1.1605555555555556,2.0505999999999998,1.7347858333333332,4.71757,2.9331899999999997,3.369066666666667,3.2422233333333335,3.4183,2.0079366666666667,3.4408,2.540225,1.605806,2.82969,3.543015,3.64571,3.23054,3.62163,1.6965625,2.73184,3.432185,3.22761,2.356456666666667,3.7466000000000004,3.9347,3.9372000000000003,1.3563625,5.5893820000000005,3.3301824999999994,1.4051733333333332,3.190545,3.35064,2.79914,3.557035,1.832394,1.832394,3.2663966666666666,2.9419500000000003,2.810275,5.18065,4.239805,4.286411333333334,1.562878,3.280253333333333,2.567633333333333,4.197105,3.0602933333333335,5.03253,2.66194,2.3518233333333334,2.5828466666666667,3.559985,3.699425,1.6216940000000002,3.1296666666666666,2.88208,2.3145875,4.4384,1.359345,3.04707,4.20316,2.68661,3.528175,4.042775,1.655525,1.61764,2.493675,1.1803700000000001,2.166944285714286,1.881505,0.45994,3.825275,2.34709,4.55039,4.354445,2.78966,4.65856,3.4858666666666664,3.155726666666667,3.6102000000000003,2.62946,3.2762100000000003,2.742293333333333,3.142576666666667,2.3320433333333335,0.6761938461538463,2.3833033333333336,0.6019042857142857,1.9845233333333334,2.4371066666666668,3.2148299999999996,3.1883933333333334,1.3976433333333331,1.3730375,4.163545,4.48026,3.036325,3.648895,3.088395,2.2669475,4.055085,7.618413333333334,3.310145,5.4272675,1.4577775,3.894685,1.97318,4.16972,3.367475,2.088375,4.31288,3.203355,3.86692,4.211365,2.1492125,4.165575,5.925177499999999,5.1421,3.49716,3.16292,1.7221625,2.04797,3.67142,3.498245,3.230095,3.6111,3.6663,3.46759,1.539885,3.724285,3.003855,1.667775,4.2354575,1.0534833333333333,3.269975,1.5834325,3.78493,4.5477566666666664,3.66057,2.9830050000000004,3.58125,3.281965,1.92953,2.3076625,3.827833333333333,1.91045,5.810845,4.398785,4.47054,2.545005,2.608455,4.57354,4.405275,2.3503939999999997,2.3503939999999997,5.67682,3.7702225,2.6894425,2.93545,1.94654,2.73545,3.109985,3.6604358333333336,2.5625675,3.298145,0.9935620000000001,3.616905,3.102495,4.03138,2.62795,1.517935,1.40108,3.142315,5.841413000000001,5.450865,3.402895,1.447745,4.126185,3.53277,0.8374066666666667,2.96693,1.372838,5.2451475,1.5114383333333334,3.678325,2.022105,1.3976433333333331,3.07374,2.72021,4.6682,6.708550000000001,4.16255,4.375830833333334,2.51444,2.87512,3.99035,3.574515,4.18106,4.446805,1.21691,1.6476834999999999,1.0582325,2.434725,2.315485,4.755685,1.0582325,4.540565,2.2287,1.5286425,1.5286425,1.667775,3.92054,4.261375,3.649375,1.46084,1.46084,0.9493433333333333,3.002955,2.0647825,5.9748275,4.38116,3.645055,2.8796999999999997,0.9994971428571429,3.4458,3.19194,4.220495,3.52228,3.4683425000000003,3.4683425000000003,3.26654,4.12967,1.88836,2.508555,1.014,1.8491833333333334,3.77971,2.357596666666667,3.3308333333333335,3.3308333333333335,2.771335,4.54085,4.394085,3.877505,3.683535,4.009055,2.5924466666666666,4.145849166666666,2.690225,3.63071,8.31523,5.10405,2.70833,3.24311,3.032155,4.68762,3.150786,7.7473849999999995,4.662251,4.777725,3.365205,3.92991,3.61152,4.54316,4.67994,2.474715,4.60704,6.438453333333333,2.829515,2.204133777777778,3.13992,3.29282,3.876755,5.8302,2.21792,2.44829,2.974745,3.1022625,3.288263333333333,7.117478,1.613585,4.810475,4.810475,3.1307,3.8378433333333333,3.17892,2.3579033333333332,5.02568,4.253451999999999,1.9686553333333332,3.87478,3.98669,3.5179650000000002,2.83094,2.85057,5.803660000000001,3.359965,5.30275,3.097985,4.66788,4.387545,3.516845,2.9419500000000003,2.1068000000000002,2.642625,3.818005,2.7949,3.401511666666667,2.5476,5.699018333333333,2.491495,1.7670325,3.1671991666666663,2.2845166666666668,3.95461,2.72246,0.8374066666666667,3.55242,4.08633,3.85134,5.969367500000001,3.085165,3.15808,2.933066666666667,2.933066666666667,3.8843933333333336,3.858735,3.445265,2.024655,6.087145,2.11197,4.60371,3.65121,7.99921,2.7477699999999996,1.3102466666666668,2.978165,4.4632,0.5671725,3.98774,3.297205,2.91058,3.011035,4.03065,2.09431,2.39913,9.088955,3.491615,3.06464,1.5114383333333334,3.642345,2.552045,2.34414875,4.08641,5.4470675,1.6019675,1.1770633333333334,1.1025316666666667,4.278835,4.527025,3.630705,3.3437175000000003,3.3437175000000003,1.539885,2.255345,3.1064808333333334,0.9108833333333334,3.12084,1.0234675,1.6965625,3.211585,3.413385,2.636075,2.495705,2.4335033333333334,4.195645,3.584935,2.950475,3.023575,2.65711,4.138315,6.769880000000001,4.04981,0.91126625,2.577032,8.75725,4.64256,4.12214,1.1247775,4.88683,1.4169766666666668,3.7492125,3.7492125,3.81502,8.718048333333332,0.8901111111111111,4.691315,4.40261,2.25711,4.1035475,3.785505,2.1652225,9.428675333333333,1.7984425,2.3619666666666665,3.36663,1.6035733333333333,4.093547833333334,3.05792,3.184325,3.4068873333333336,2.7201,2.75391,1.0961816666666666,7.21484,4.166835,4.17732,3.94539,1.97899,2.9830050000000004,3.8847666666666667,3.574865,0.6307576923076923,3.824635,3.898645,4.574855,2.0746475,1.387904,3.940935,4.20876,8.84361,0.6895315384615385,0.717805,0.717805,1.78662,1.2904966666666666,1.461562,1.7756,4.827065,1.18253,0.8643285714285714,3.9877425000000004,3.296025,1.290665,3.119705,4.577735,3.59147,0.6593479999999999,1.858605,9.46875,3.4940366666666667,3.35778,3.09884,1.7105,2.51181,2.50918,4.56184,4.34455,3.751965,0.8995371428571428,1.4227180000000001,0.9188879999999999,4.33816,4.33107,4.137255,0.9108833333333334,1.742952,3.828165,2.3794771428571426,4.7790333333333335,1.003725,4.68064,0.6364516666666666,0.6364516666666666,0.6364516666666666,9.80884,3.965405,1.0234675,3.89158,4.71205,2.68177,3.15997,5.017488333333333,2.892905,1.9221294444444446,2.2948066666666667,0.6593479999999999,1.4967546666666667,0.5376544444444444,0.8129866666666666,1.4512633333333333,3.78731,3.672875,1.9642575,7.344775,4.9475375,0.6481077777777778,6.07445,4.92442,3.343785,4.406915,7.888738333333333,3.852331488095238,4.9475375,4.463525833333334,2.37561,4.1679,3.746175,7.29162,3.53393,0.496194,1.556026,3.98184,1.749174,1.1770633333333334,3.989395,2.3535633333333332,1.69692,3.14561,1.675964,4.41646,4.31269,4.098915,4.70206,6.25276,2.560405,3.898445,1.372838,2.298405,3.379335,3.28114,1.9686553333333332,4.06663,2.74425,5.0741,2.842645,2.379115,3.4259733333333333,1.708792,3.537485,0.9108833333333334,2.1110725,1.1025316666666667,1.50587,3.681325,1.613585,1.4512633333333333,2.0629975,3.385605,7.4838,0.8995371428571428,1.1247775,1.352994,3.55553,3.696555,1.352994,3.90836,2.298405,0.5671725,0.9108833333333334,1.78662,1.372838,0.45994,1.652424,4.265124,2.25711,1.3538083333333333,3.01959,1.3563625,1.7984425,2.55772,2.2948066666666667,4.721765,2.55772,0.8374066666666667,2.766018,2.211565,0.09862568181818182,0.09862568181818182,0.09862568181818182,0.09862568181818182,0.09862568181818182,3.2667933333333337,2.752776666666667,2.6346166666666666,2.88906,4.657515,4.285315,1.74101,3.69134,3.669315,2.157875,5.013412499999999,2.84898,2.40867,2.529495,2.681075,4.61242,8.449136666666668,2.331145,1.95641,3.173025,1.01187,1.39844,2.4190333333333336,2.0056333333333334,1.5481375,2.84919,2.2092933333333336,2.67231,2.649363333333333,2.6462499999999998,3.67017,3.48271,2.4945233333333334,1.364936,3.854575,3.740075,1.62481,1.32946,1.32946,1.32946,3.56696,2.8034266666666667,1.1705066666666666,2.40271,1.3270485714285714,4.35452,1.6146966666666664,6.107573333333333,3.1656649999999997,2.4470433333333332,3.0742779999999996,3.0742779999999996,5.23534,3.13323,5.04245,5.26665,2.15154,3.0031700000000003 +GSM1946769,1.0,1.9537525,1.9537525,1.5084333333333333,5.433,4.891565,2.4946436842105264,1.59325,8.121643725490197,4.75563,3.24438,1.942275,2.213285,3.45337,4.3809,1.8833600000000001,1.5727740000000001,5.2493,2.46266,2.4919875,5.3427,5.226308333333334,3.87767,2.8196,1.885226,4.09371,5.1991,4.11047,0.7492858333333333,1.6423805555555555,2.072833888888889,1.88865,1.5513375,1.2369828571428572,0.7273816666666666,3.408685357142857,1.502505,1.69688,1.17925,2.0567325,1.2310325,1.1398775,1.135008,1.526418,0.8875740000000001,0.924188,0.749482,1.253842857142857,1.7166000000000001,1.815542,1.54371,2.01812,1.7383320000000002,17.978387666666666,0.37146,0.797968,1.088816,1.734226,1.5939640000000002,2.14412,1.0633757142857143,1.0633757142857143,1.0633757142857143,1.1429150000000001,1.1796060000000002,4.84029125,1.17694,2.2138125,2.155775,2.6118,1.03372,2.320705,2.705675,2.05844,1.4107225,1.9020775,1.5567325,1.6982425,2.6889299999999996,4.21257,4.820125,5.23325,1.5245466666666667,4.293265,4.877706666666667,4.12291,4.22364,1.13092875,7.50816,0.600631875,0.600631875,2.106345,1.1609128571428573,15.78709,4.256315,5.5724,4.857655,4.392865,4.228475,5.4546,0.51164,2.3192820833333334,1.7566075,2.3180375,4.68831,4.49984,1.30835,3.0982366666666667,2.720876666666667,2.794643333333333,3.4390666666666667,3.322415,4.81617,2.9301095000000004,4.65404,3.001133333333333,0.7395118181818181,1.507722,2.29037,4.46667,4.29005,0.58425875,4.001655,3.995895,0.85897125,4.35714,1.711005064935065,2.16402,2.508075,2.1235275,4.12811,5.64165,3.379605,2.7523066666666662,3.2743566666666664,2.9451066666666663,4.2764,2.7847233333333334,5.6087,3.55769,4.69419,3.596045,2.654905,3.69177,2.5225,6.858286666666666,3.729515,3.448325,3.94137,3.075345,4.876035,0.7532444444444445,9.61819,3.70209,1.9329933333333333,1.8079333333333334,3.6112,2.388225,4.543045,5.9187,2.185965,4.881631666666667,2.77584,4.841335,2.185965,2.748723333333333,4.61373,5.249225,4.723175,8.135946666666667,3.288365,4.576365,3.058705,5.19625,5.1864,1.4005599999999998,8.13834,4.435,4.61617,3.446295,3.62487,3.88339,2.37809,6.08433,2.27148,4.226075,4.108545,4.88248,4.781785,4.2676,1.3286683333333333,2.77097,2.92527,1.91045,1.91045,6.102353047619047,3.11705,1.8964566666666667,4.715825,4.4861,2.924725,1.468135,1.179822222222222,5.56,3.25109,6.8148,4.760895,4.391635,3.76194,3.136135,3.85794,5.0209,3.86705,4.256795,6.3416,2.840705,3.602065,9.103773333333333,4.986485,3.6096333333333335,3.3472000000000004,2.667813333333333,3.8371666666666666,4.516821666666667,1.817575,2.910406666666667,2.33141,1.751772,1.6563433333333333,2.535226666666667,1.7514425,2.210465,2.99701,2.514596666666667,2.38578,2.916043333333333,4.877706666666667,3.58565,3.44041,3.48885,5.00525,1.3985916666666667,2.329,2.8991731428571432,2.14434,2.6009733333333336,2.4363966666666665,3.5719666666666665,1.891404,1.2777399999999999,2.693756666666667,0.6573279999999999,1.6813133333333334,0.5452888888888889,0.5452888888888889,1.6621433333333335,3.050243333333333,2.2493433333333335,1.3396833333333333,1.4676266666666666,0.2994623076923077,2.70846,0.6573279999999999,1.2178766666666667,0.2675410810810811,1.3903999999999999,2.05644,3.5076666666666667,2.6715533333333332,2.3081666666666667,2.55889,2.3901733333333333,2.3854366666666666,2.5369266666666666,2.50553,2.22256,2.5806,1.89076,2.901655,4.42269,0.7457616666666667,2.1088466666666665,2.61171,2.01406,3.5219000000000005,1.516648,2.56481,2.4917933333333333,4.276923333333333,2.67736,6.661400952380952,1.6295142857142857,2.65231,2.021395,2.125905,3.8355333333333337,2.149235,1.8712875,4.16344,2.7057599999999997,2.1615925,4.26197,4.249675,4.54507,4.31592,2.308955,3.451015,4.963742666666667,3.94997,3.86586,4.145005,4.274975,3.03064,4.24757,3.4512,0.912565,4.89334,1.2957566666666667,4.72298,3.80648,6.168844999999999,3.945735,4.311575,0.9775025,2.141145,3.67035,4.034445,0.8900757142857143,1.3514676495726496,2.0913607142857145,2.524536857142857,4.7040375,5.596488,1.8176625,3.795225,5.93965,0.3641364285714285,3.71251,2.223845,1.032045,3.82022,1.99765,12.42975,1.2991,1.90601,2.676603333333333,2.77083,2.0155901315789473,4.654040131578948,0.33664263157894736,1.6262566666666667,2.89888,0.97739,2.875773333333333,1.1927114285714284,5.35855,3.913235,2.064173333333333,6.05485,5.45065,2.64105,1.17212,4.37782,4.731855,4.268235,0.9187363636363636,7.9235500000000005,2.6742500000000002,4.53381,2.723456666666667,2.627546666666667,4.833365,2.5292733333333333,2.7954266666666663,2.26648,2.428313333333333,3.2359,2.939776666666667,0.347640625,3.99347,3.73624,3.95687,3.82568,4.65872,6.245628,3.89403,1.655945,5.95525,5.1058,4.617825,4.606725,1.28338,3.3335333333333335,3.3432999999999997,2.6318633333333334,15.776240000000001,3.23856,3.853805,4.54464,4.97749,2.541855,5.243655416666666,2.0348025,0.7554833333333333,2.671175,3.38449,4.01108,3.540065,6.366568333333333,2.7785966666666666,2.104145,2.1273,3.416533333333333,4.4757,2.3508475,0.3702193303571429,2.8580417391304347,1.9458675,1.14978375,0.4787151999223602,0.5872110694875776,0.3702193303571429,0.3702193303571429,0.3702193303571429,1.1165075,1.49711,0.8525725,1.5235875,4.6234150000000005,0.2236364705882353,11.469502824675324,3.01873,2.9152799999999996,4.44218,4.38427,4.19888,2.853625,4.98124,4.177584,4.51694,4.126895,0.7457246153846153,3.12819,4.334882051282051,0.5501871428571429,3.410275,3.127736666666667,4.402075,0.6111445454545454,1.753225,4.50468,3.630955,1.9074425,1.7588566666666667,1.5424733333333334,3.484833333333333,3.94392,2.93892,2.9025200000000004,5.6304,5.7495,5.44615,3.2220133333333334,3.1925464999999997,5.804129166666667,3.3636666666666666,5.4035,0.40915761904761905,3.5239333333333334,4.33841,1.9269266666666667,2.396595,2.7416666666666663,4.88598,0.6304316666666666,2.0402625,4.77673,4.247635,1.0377399999999999,4.651205,3.11253,4.825745,3.1035733333333333,4.716975,3.443095,4.320265,1.213185,3.532375,2.67957,4.79087,3.89115,4.629895,5.5074,4.47102,2.618945,5.37712,2.35666,2.81453,3.178316666666667,2.75996,2.5758366666666666,2.3895166666666667,1.752814,1.5005666666666666,2.2003333333333335,0.78352,1.7121000000000002,2.64773,2.055473333333333,3.154946666666667,3.5045,2.7038533333333334,0.9377744444444445,5.1533,3.4594,5.481570416666666,2.7371004166666664,3.1347733333333334,3.4099,1.6219066666666666,1.6219066666666666,2.146923246753247,2.146923246753247,2.8548986038961037,0.5101842857142856,1.7239433333333334,2.7897866666666666,3.6715999999999998,2.1764642857142857,2.1764642857142857,2.1764642857142857,7.839734642857143,4.486854285714285,0.9657999999999999,3.320355,5.126614999999999,2.1406875,4.56083,3.116635,2.207055,4.48461,3.122576666666667,3.4308666666666667,1.4609875,2.0606066666666667,3.3750999999999998,2.887613333333333,2.4686733333333333,6.20305,3.605366666666667,3.4924,4.5796866666666665,1.7037833333333332,2.58675,3.1820466666666665,1.116011111111111,2.0714966666666665,4.171927333333333,7.90069,1.48479,2.881725,5.0035,2.00332,1.873665,1.873665,0.9932075,5.01015,7.483694999999999,4.35159,6.4404699999999995,4.47055,2.0425333333333335,4.097645,3.37078,5.2201,5.3133300000000006,0.3618952631578947,2.81358,2.45656,4.46403,4.35986,1.90703,1.954475,2.693475,4.29693,4.000865,3.422085,2.47667,1.7710899999999998,7.00309,4.60025,4.65767,3.585955,4.281525,4.51648,4.68192,3.913465,3.56939,1.96052,1.083122857142857,2.735715,3.90482,4.31046,5.52991,5.7864675,2.0761125,2.0752666666666664,2.6464166666666666,2.7499266666666666,2.9730399999999997,0.6469371428571428,2.22638,3.60377,1.12406375,4.81573,3.241005,6.1111425,1.3106889393939394,1.3106889393939394,4.104065,3.796115,3.836025,5.6622,2.7214566666666666,2.2563733333333333,4.152655,3.129935,2.101705,3.2483233333333335,2.7003233333333334,4.094875,3.7011900000000004,4.397765,4.625905,0.9647800000000001,2.64518,4.63877,4.327115,3.489965,2.6543033333333335,3.103525,0.6296844444444445,0.6296844444444445,0.6296844444444445,0.6296844444444445,1.343202777777778,3.8904825,3.8904825,1.5665733333333334,7.345021666666667,3.507255,4.14883,3.095356666666667,2.715025,4.94858,3.985805,4.87944,5.4866,1.94291,4.756955,4.168425,2.792905,4.077565,3.36123,2.47211,4.278145,1.80936,4.67279,1.56089,3.6271770833333337,2.980005,1.78434,1.1856033333333333,3.387845,4.457055,1.508272,0.8850433333333334,3.528735,1.192185,5.121860666666667,4.62308,1.376807142857143,3.558985,0.7596422222222222,2.614313333333333,2.6040666666666668,2.5776833333333333,2.645315,4.314515,2.841464166666667,4.29408,4.677095,4.53902,4.35677,2.3992825,1.2639,4.43093,5.09215,1.3422,1.3422,4.08085,0.24038666666666667,2.1027466666666665,0.24038666666666667,0.24038666666666667,0.24038666666666667,0.24038666666666667,4.74423,2.6578866666666667,3.43785,3.54471,2.951,4.17559,2.5431399999999997,0.9392425,0.9392425,0.9939916666666666,0.9939916666666666,3.642035,1.97389,3.77469,1.8750448214285713,1.8750448214285713,4.69586,0.6439157142857143,2.08297,7.746936666666667,4.94233,3.106815,3.67573,0.9572025,2.216255,2.14355,4.69449,4.643145,4.431535,3.75463,1.33891,2.48884,1.9682675,7.54681,2.03183,4.35144,4.77595,2.909075,3.85153,6.15703,7.535855,4.117015,4.730275,4.52141,2.258495,3.428305,2.300195,2.335965,2.35951,3.820715,4.86179,6.016653333333333,6.46601,4.21992,1.1726033333333332,1.972115,4.234475,4.11284,2.1414725,5.0641,4.1777,4.5968,1.69829,3.6186666666666665,1.5456233333333333,6.133046666666667,2.630576666666667,2.2911799999999998,2.196946666666667,2.663685,2.59505,3.5568000000000004,3.7007666666666665,3.4522666666666666,3.445766666666667,1.603596,3.96599,3.043265,3.4457,0.38239,3.104795,4.062145,2.562025,5.31795,5.0374,4.614495,6.788392,5.13245,2.2211666666666665,4.20826,5.05975,1.6506916666666667,5.52115,6.4546,5.0864,4.58799,3.752225,5.3668,5.01165,4.36028,5.5873,7.853870000000001,3.99491,1.1526066666666666,1.4610833333333335,2.83986,1.8887019999999999,4.736165,4.067775,5.22349,2.4870433333333333,2.7417866666666666,2.7185400000000004,2.6487133333333333,2.4064166666666664,1.0343655555555555,0.5650464705882353,3.89167,3.97715,3.9194,4.649615,2.9967,3.2618733333333334,5.7833,3.202733333333333,0.5913823529411765,3.521195,5.6512,1.955245,1.716716,3.711525,3.63743,2.664686666666667,3.988466666666667,5.33235,2.7103633333333335,2.2888966666666666,2.3317833333333335,2.5333966666666665,2.632795,4.108263333333333,5.307439166666667,7.210241666666667,1.84358,5.4798,3.870625,6.0652843333333335,3.1253766666666665,2.957785,2.15221,1.9175633333333335,1.2817475,1.2817475,2.610933333333333,2.31742,2.7325766666666667,4.858235,2.00138,2.143615,1.90395,0.6059625,4.040595,0.6083850000000001,0.9064675,3.473755,4.500055,4.496415,1.6672125,5.02355,3.2020666666666666,0.9252785714285715,4.2579,3.7762176190476193,3.1985266666666665,2.461525,4.94299,0.2784286206896552,2.418055166666667,3.126105,1.472685,3.63847,6.05795,2.292175,1.3705466666666668,3.80664,3.75283,2.8289166666666667,2.8289166666666667,3.49254,3.71211,4.721345,5.58744,5.17775,0.9948122222222222,2.4940166666666665,2.6407133333333332,4.58628,5.2163,4.682125,5.14155,4.3691,3.893166666666667,3.699066666666667,3.605,3.9309,3.2443033333333333,3.163066666666667,0.6984128571428572,2.459555,2.44577,3.92118,3.0123833333333336,3.23722,0.7665708333333333,2.314125,4.120859,4.37887,5.7152,3.80527,2.048665,2.048665,0.8601530000000001,3.252125,4.49636,3.905335,4.913866428571429,3.078625,5.3769,0.5884454545454546,3.949565,4.179545,4.368275,3.362658333333333,0.9148971428571429,3.320865,4.004885,5.01915,3.775785,5.05775,2.779875,4.330445,1.60673,1.09922,2.7508,4.959795,4.083805,3.189,1.6055133333333333,4.00022,2.4133125,2.6239,2.795789777777778,3.06682,4.558163333333333,2.8466533333333337,1.8115400000000002,3.503966666666667,1.452787738095238,2.9065366666666663,2.73489,2.19272,3.0450466666666665,3.004,2.66881,2.41941,3.85767,3.2516533333333335,3.4771583333333336,2.38604,1.81714,4.107323333333333,2.9450800000000004,2.5758199999999998,3.4771583333333336,2.3986433333333332,0.7903199999999999,2.4782475,1.0354388888888888,2.1841025,1.5445175,0.8862690909090909,1.7640075,1.892385,2.766527,2.71955,4.60906,1.4578475,3.847975,3.16474,1.5764960000000001,2.17785,2.6513666666666666,1.2952566666666667,2.8878799999999996,2.8411033333333333,2.2634095454545453,1.760645,1.859174,3.557733333333333,2.4819566666666666,2.8375716666666664,3.02928,2.6454133333333334,3.8443,2.17904,4.302066666666667,3.5394666666666663,3.853733333333333,2.968113333333333,3.6212999999999997,3.541,2.2147666666666668,8.897635000000001,4.8099,4.39187,3.43194,2.98659,1.89309,3.943835,1.75721,3.996095,4.41806,1.517976,2.8259899999999996,1.45598,2.73324,1.75456,2.4964566666666665,5.2079,3.3245566666666666,3.72548,4.95302,0.9075975,1.556622,1.01974,4.11422,10.421198333333333,3.9825666666666666,6.5564,1.97177,5.18275,3.97797,2.46937,5.14725,0.2773629411764706,0.8158071428571428,4.636845,4.92331,6.9251,2.151675,4.346345,5.24045,4.505135,4.98932,4.202275,4.591035,3.022295,5.488205000000001,4.517275,3.87285,3.206445,2.1908933333333334,1.8663666666666667,1.4973280416666666,2.413796666666667,4.069695,4.9674,1.6253319999999998,9.00551,3.0453966666666665,2.8202541666666665,1.019504,1.019504,7.958748333333333,3.13113,2.293155,2.1243625,2.7584933333333335,2.1579866666666665,0.9232666666666667,3.4066783333333337,3.0700133333333333,0.6370442857142857,1.6918833333333334,3.3260440000000004,3.3260440000000004,1.0775033333333333,2.4738233333333333,2.4437866666666666,2.741546666666667,1.402985,1.69238,4.664152666666666,2.74038,2.5984,1.3593375,1.3593375,4.59926,5.51155,4.53807,3.348055,3.824385,5.75255,3.140945,3.00881,3.3074166666666667,4.002295,1.148175,3.4372333333333334,2.65425,4.12933,2.18206,4.66701,3.52952,4.07,3.578995,5.1859,1.0563566666666668,2.02302,1.743855,3.517325,4.7366150000000005,4.02982,4.04091,3.92564,3.91849,1.7671025,4.31208,3.20512,3.49027,2.41907,0.83514375,3.56332,4.60108,4.976055,1.1588966666666667,3.0193266666666667,2.968196666666667,1.88332,1.9625491176470589,1.9625491176470589,1.379505,2.2012899999999997,1.1055528571428572,1.39802,4.701655,4.567065,0.5214809523809524,3.60441,3.6082666666666667,4.117915,5.6667,0.42094750000000003,9.181465,5.71925,3.35309,4.33435,4.81605,5.609771428571428,5.2653,6.892545,0.7267572727272728,3.0274933333333336,5.3072,2.6669033333333334,2.0448575,1.97052,4.6695,5.1015325,2.516280357142857,2.7726166666666665,3.4697,1.9950325,4.30715,10.712250000000001,8.5546,3.7013,5.02425,3.122790833333333,2.953405,4.01302,1.683208,3.109156666666667,3.632235,3.77913,4.933155,5.07017,6.24239,2.64006,3.13101,4.69681,5.1859,5.1198,5.5653733333333335,4.1005975,6.59765,3.364545,3.010745,2.842985,5.0374,4.042535,5.3918,2.193005,3.1303466666666666,3.311035,6.1034,4.29101,3.850595,1.498088,0.9097625,2.718,0.61637,4.723995,3.573895,3.48176,2.777975,2.1614166666666668,3.05985,2.600775,2.934618,1.826428,3.0560975,2.723875,2.253875,2.53775,3.6456540000000004,1.3074649999999999,2.8476074999999996,5.37705,3.66,1.19763,2.8359366666666666,3.838321666666667,3.6504890000000003,1.5362625,5.81675,5.8541,2.3486866666666666,2.9585933333333334,30.554672854480486,3.6460666666666666,1.7205000000000001,3.8226333333333335,1.75459,2.61672,2.9816066666666665,3.411433333333333,2.03687,2.81635,2.40299,3.2184855,3.165903333333333,2.43451,1.5534575,2.24822,2.75605,0.3957259090909091,1.06853,2.927913333333333,1.6002759999999998,3.5037,1.5362625,2.319996666666667,25.88979477777778,5.09525,4.59125,3.604045,2.601905,2.31081,2.5389666666666666,2.32888,4.10914,5.321842999999999,5.77655,1.588288,1.955512,2.63615,2.716571666666667,3.774185833333333,5.54895,4.97747,4.610455,0.1953759574468085,4.76069,4.833848333333334,3.797075,9.05807,1.034465,1.034465,2.9476333333333335,3.708955,5.70715,2.105675555555555,1.0677444444444444,4.840815,1.864295,4.392345,4.129675,3.23518,4.05802,4.01422,4.817995,2.917355,0.6916777777777778,3.16531,2.175386666666667,4.458215,8.117055,4.39496,2.012443333333333,2.012443333333333,6.5692900000000005,5.20275,4.1665,5.95715,2.3974233333333332,5.616375000000001,1.5456866666666667,1.40292,2.80632,2.5918766666666664,3.973295,2.8684333333333334,3.937575,4.1744075,4.4117,5.37325,2.1437875,2.1234875,2.0025475,2.50625,2.21892,2.0998575,1.9834375,4.897591666666667,1.8540625,3.6683714285714286,2.3776333333333333,3.519433333333333,2.6951133333333335,1.80535,1.4924,1.05643,2.3487066666666667,3.7876666666666665,0.72262,5.09115,1.95131,6.01951875,2.0048275,1.59897,1.5241775,1.52526,5.764192222222222,2.0052399999999997,3.0944800000000003,3.7588333333333335,1.16055375,1.8243275,4.860068,2.947673333333333,2.853476666666667,3.6214,2.95168,3.0124133333333334,1.2347357142857143,0.25012833333333334,0.25012833333333334,0.25012833333333334,0.25012833333333334,0.25012833333333334,4.17983,2.6953333333333336,2.28698,3.260593333333333,1.3846383333333332,2.6318633333333334,3.176133333333333,3.946633333333333,3.699145,3.023905,1.87923,3.03707,3.204886666666667,2.014475,1.9720925,3.56032,2.8529,3.1306933333333333,5.63795,2.7959300000000002,2.6428066666666665,2.5782633333333336,10.870883333333333,5.17555,4.68807,4.91322,3.906425,2.8291799999999996,5.0958,4.214175,3.589935,5.736176666666666,4.041745,2.945535,2.565175,3.960085,5.245343714285714,3.87161,18.088645380952382,1.16623125,5.19935,0.8492455555555556,1.14670375,3.046525,4.74053,4.28357,4.02846,1.3884283333333334,2.49558,4.31345,2.7245500000000002,4.86529,3.125645714285714,2.7220866666666663,0.6387349999999999,2.8308633333333333,4.732475,2.230985,2.582225,2.26713,19.4465975,1.5486980000000001,1.320975,2.54374,0.31521692307692306,1.826685,2.9974566666666664,1.95925,2.84735,2.57085,7.64609,1.9763975,2.585875,2.2610475,2.400595,1.6110183333333332,3.3764000000000003,3.43926,3.07489,3.10906,2.055025,2.6605175,3.2876133333333337,4.761185,0.4559975,3.966466666666667,3.151823333333333,3.07001,2.149605,3.581725,3.829205,1.5416933333333331,2.25787,2.33638,1.5049599999999999,2.2681299999999998,3.58177,3.261275,0.7854816666666666,3.324225,5.1009,4.3567,2.5054,2.5054,3.2728800000000002,4.95291,3.28487,3.2834,2.3275975,1.0782,4.141845,3.5857,5.72555,4.024635,2.336766,2.336766,1.46154,4.062425,5.0044,3.8594,4.112425,3.3376333333333332,2.3640166666666667,4.539705,3.64819,4.140285,2.9768066666666666,2.4742966666666666,4.187129333333333,3.180093333333333,2.63045,1.9147666666666667,3.504865,2.838525,1.6142633333333334,3.696935,3.596435,4.55624,3.1109266666666664,4.45574,4.290715,6.93820225,4.16665,2.2041399999999998,4.818685,2.754375,7.314349999999999,2.68057,1.4135433333333334,4.24142,3.08393,4.55964,0.5289050000000001,0.7493358333333333,4.084215,3.911755,2.158781363636364,4.639845,2.65434,2.834115,10.65344,1.7996400000000001,1.2555580000000002,5.4064,3.219025,3.63171,5.92025,6.9334,3.14274,2.2172666666666667,3.311386666666667,1.97809,3.4225,8.754941223316914,0.8540338095238096,1.040765,4.90273,0.440456,1.664825,2.245905,2.767525,3.0879,2.4634875,4.06367,2.562725,13.242305000000002,5.243055,2.436545,2.436545,4.54209,0.8103683333333334,4.710466666666667,4.37085,3.904905,6.739216666666667,3.511975,5.20175,1.4917216666666666,2.791165,2.650805,2.574465,2.972815,2.623625,3.12423,3.460445,3.618115,3.030875,2.869495,4.367035,4.54015,4.79106,2.9596999999999998,3.253966666666667,5.0455950000000005,4.348605,18.04116857142857,11.744569047619049,3.207032142857143,0.7016783333333333,1.508257142857143,4.411775,3.36712,2.993800544871795,1.822685,0.8845511111111111,0.7018308333333333,1.1857342857142859,2.2524225,1.75785,5.195766666666667,3.362,0.7083336363636363,3.3378,2.272025,1.83945,1.875544,6.23553,1.56908,4.769155,3.43721,2.9185433333333335,2.28238,2.660626666666667,2.6470166666666666,0.7721272727272727,2.914125,2.9044166666666666,3.9225906666666672,3.1934466666666665,7.889622083333334,3.625585,3.36694,2.129455,3.4766,8.2446775,2.11655,2.44313,2.3100875,1.587435,2.5491,2.3559825,2.786775,0.936318,1.3709425,0.96221125,2.89848,4.21566,6.0886,5.6444,2.86295,2.258625,2.895475,3.5754333333333332,7.79566,1.1961033333333333,0.3887375,2.907245,2.0210033333333333,1.486482,3.4346430000000003,1.267328,2.0535056666666667,4.3198783333333335,3.4047440000000004,1.19622,1.8411366666666666,3.744606666666667,3.609,4.5076,4.51311,2.1715725,5.1581,3.865345,0.8277307692307693,4.488885,4.31666,4.378627083333333,3.4813666666666667,2.27279,1.35856,1.02176,3.521645,2.708735,3.255775,4.046455,2.680245,2.6937766666666665,3.14709,3.66037,4.91519,2.29837,2.63819,4.495455,5.7977,0.5925175,4.5665,2.074255,3.49676,3.872533333333333,1.9549225,3.169445,2.303395,1.9875,2.51577,2.977628333333333,1.7625,4.94792,3.55145,1.33832,7.86512,1.03657,3.835595,1.6544066666666666,4.41004,3.88662,2.49379,3.202765,3.93144,8.82308,2.8811,3.66477,4.00965,3.598485,1.719285,7.8766,3.722845,4.42683,1.55445,4.10616,3.04165,1.06225,1.9707180000000002,4.284195,2.145285,4.22121,4.4500575,4.3445800000000006,4.52574,2.4367525,5.22515,3.95655,3.105613333333333,2.4379566666666665,1.7594180000000001,5.0473,6.44605,5.17855,4.69739,3.058015,2.205245,4.13941,3.45244,1.1369402197802196,4.11899,4.768370833333334,4.11937,2.7498,3.57659,0.4861642857142857,0.4861642857142857,5.8881,4.88569,5.32935,2.217645,3.906485,5.13035,0.826159,4.086145,4.95091,4.909025,4.62465,4.595355,1.9692225,3.24288,2.124795,4.458515,0.7251875,4.0767,4.17286,2.742455,3.036153333333333,4.62882,2.316685,3.25261,59.78060758008658,3.120845,2.643073333333333,1.6147675,3.22629,3.90047,0.9849675,1.0054325,2.1136425,2.1136425,1.314344,3.257355,2.471905,3.9601025,7.64269,3.0165933333333332,1.3032171428571429,1.4667066666666668,2.71105,4.0114625,0.9964259999999999,2.448265,1.333462,2.20441,4.386365,4.43007,3.457855,21.559321818181818,4.266485,3.841545,3.15536,2.14509,3.13586,3.30956,2.38985,5.31698,1.586232,4.142375,3.454989865079365,6.057263194444444,1.995805,2.66708,1.86795,4.1057,2.3475766666666664,2.20563,2.1637633333333333,3.6517644444444444,3.72168,3.436045,4.38604,4.799125,2.745225,2.627685,2.839185,2.642175,2.9545144444444444,2.14481,2.025925,3.370995,1.1941366666666666,3.791465,4.388475,2.560175,4.852565,4.804975,4.757098333333333,2.1226433333333334,2.37064,2.63997,2.74556,4.064215,3.292455,4.98173,0.7495785714285714,4.697838,2.889375,3.855,2.3131575,1.8222840000000002,4.438750000000001,1.212588888888889,2.885855,4.302765,1.131284,3.63213,3.54811,4.525565,5.442105,2.001265,2.862805,2.8536133333333336,3.694933333333333,2.50046,2.6016606666666666,3.2668433333333335,2.3829966666666667,2.4074733333333334,1.26688,1.973905,1.973905,1.8415566666666667,2.0954466666666667,1.7881166666666666,2.7834233333333334,3.768925,5.22465,3.39434,1.52885,4.46097,3.57121,3.49188,4.14974,1.92681,1.937375,4.647936666666666,1.77021,4.6715583333333335,5.0539,3.550245,2.50559,3.71519125,3.401315,3.018935,3.65013,0.14369816326530613,2.7395266666666664,7.67637,1.5406900000000001,3.38229,4.169765,1.0883342857142857,1.1660283333333334,1.92061,3.95187,3.261365,6.73738,3.29542,3.66684,2.77612,2.68177,3.518995,3.311805,4.052975,3.35715,2.858686666666667,5.41275,4.192475,4.726635,3.3595,1.99726,3.462335,4.654845,2.73469,3.182045,2.104965,2.4438,3.8375,3.6747,2.71319,4.5158,4.96192,2.717465,4.13591,4.626635,3.505225,4.82503,3.53533,2.951065,6.62899,4.39894,5.2561,5.1573,4.51086,5.2057975,4.17493,3.596925,1.3330199999999999,6.75915,2.46215,5.05935,4.15759,4.30083,3.125833333333333,2.0605233333333333,2.463416666666667,2.608096666666667,0.984089,3.3677333333333332,3.2033233333333335,3.0645933333333333,2.485446666666667,3.914755,4.742445,2.8741266666666667,0.5559325,4.57858,4.677605,4.669085,4.841525,3.874725,4.635685,5.147,4.635185,1.4424666666666668,0.9326769230769231,2.715666666666667,5.1537,5.3715,0.492845625,2.84452,2.6110233333333333,3.722375,4.442825,3.731833333333333,1.840335,4.236035,3.84934,4.2587,3.07441,6.2882,5.00235,7.1799574999999995,0.6231058333333334,4.0692,0.841562,2.35101,4.0262,3.1440066666666664,1.3995233333333335,2.25152,4.28713,3.596555,4.08252,2.0613466666666667,2.298415,2.957225,4.656985,3.306305,4.13091,1.6542439999999998,1.172253,5.3535,2.2841725,7.917999999999999,4.62382,3.57675,2.069085,1.5978425,4.19829,4.85305,1.6755933333333333,2.448805,2.756825,2.7395266666666664,6.826779999999999,3.145963333333333,2.8279666666666667,4.3597616666666665,3.21217,2.221086666666667,3.446135,7.1491525,4.44021,4.905495,0.5259536363636363,3.732745,4.326485,4.603013214285714,3.986255,4.69832,2.93647,2.99253,3.14399,2.875305,3.7330103333333335,1.842894,5.537884,4.53191,5.26835,3.865545,3.285985,3.249661666666667,2.28887,1.3427325,0.9342425,2.752655,2.72049,1.0693733333333333,2.6409833333333332,5.4528,4.981845,3.56886,4.272875,16.51299619047619,4.15564,4.411805,4.33217,0.7029741666666666,5.03375,4.800815,4.59816,4.58812,5.32455,2.464885,3.563625,3.18917,1.567498,3.03061,4.592535,2.90076,1.573698,4.194325,4.90934,4.0079,5.3465,4.64641,5.5183,4.93739,3.02341,4.21714,4.445245,2.88707,3.001996666666667,2.978673333333333,1.7910091666666665,5.06175,2.772627857142857,2.01937,4.121725,2.552605,4.53513,4.107323333333333,2.84213,2.92731,4.589445,3.629625,4.93438,4.288885,4.55244,4.893144,2.83635,5.3845,2.762645,3.516835,4.52364,1.5474,4.969245,1.0378800000000001,4.439795,3.383785,1.018787142857143,3.65297,2.03596,6.75319,2.742513714285714,2.742513714285714,2.742513714285714,0.6941966666666667,1.1994266666666666,1.986185,3.76916,6.40994,3.506492777777778,1.91683,2.186575,1.7663833333333334,3.760125,2.37803,0.42933846153846156,1.640845,2.167735,2.86731,1.754815,2.544995,2.439445,2.0199725,3.80002,2.8041666666666667,3.38124,2.91155,1.912895,6.67391,2.053045,4.367295,4.01843,6.373951666666667,1.6679866666666667,3.558635,3.553935,3.62063,5.3021,2.75125,1.886535,3.753805,5.9923953333333335,1.995835,3.615065,3.079705,2.0128875,4.81688,4.48953,2.5114533333333333,2.23432,3.6541825,6.013912857142857,5.7771,3.03153,2.32535,2.690635,2.874515,2.42446,3.967975,1.4700825,2.671005,4.52548,0.7840675,4.126865,3.827645,3.96896,3.774075,2.414495,3.346185,1.992765,4.558125,7.996781666666667,4.74896,3.39312,3.99057,0.98718125,4.84398,2.3127,4.42966,5.4001624999999995,4.655675,4.59316,11.26984,4.842625,3.702865,1.4738625,0.6893358333333334,2.803195,3.811405,3.65539,3.687965,2.06745,2.5907833333333334,2.231266666666667,1.1542516666666667,1.1542516666666667,1.9166566666666667,2.3179466666666664,2.99865,2.59551,3.4258666666666664,3.689033333333333,2.685356666666667,2.8998333333333335,1.36102,2.6309666666666667,2.1320799999999998,2.09552,1.53505,2.843663333333333,0.672275,10.028141666666667,0.672275,3.3432999999999997,2.104575,1.9772533333333333,4.522495,4.27161,4.007975,4.538565,2.3323033333333334,2.8841633333333334,3.619378666666667,2.08453,3.3798666666666666,3.286576666666667,2.7761833333333334,3.104673333333333,1.8171966666666668,5.2915,6.2224538095238096,3.9937666666666662,3.4155333333333338,2.798636666666667,2.7138766666666663,2.861603333333333,1.2369828571428572,3.6308000000000002,3.24667,4.01663,6.074,4.47051,2.93225,3.6000666666666667,3.1108233333333337,4.2023,4.18792,2.68188,3.91455,3.2816833333333335,3.097663333333333,4.849565,2.9064533333333333,3.91423,6.410655,2.77022,2.528986666666667,1.6836566666666668,1.4722933333333332,5.44571,3.3847416666666668,2.80385,2.1234633333333335,2.0979033333333335,4.703965,3.8034,3.30399,3.29623,3.31888,3.8531333333333335,3.4498333333333338,3.8865,3.2202566666666663,0.58557,3.9308,2.5614833333333333,2.5447133333333336,3.614,5.12555,5.1035,5.95025,2.710675,4.615341666666667,1.4069916666666666,2.93505,2.93505,4.148325,3.58293,3.76741,3.309325,1.63916,3.31843,3.84024,0.9864171428571428,3.874415166666667,3.092631,1.9745709999999999,0.354721,3.591915,3.79915,6.5916049999999995,3.33544,5.8916,3.156005,3.813455,3.82994,1.9944941666666667,3.10331,4.804045,3.561195,3.2169000000000003,3.1187833333333335,5.7809574999999995,2.1112475,1.0238775,1.9681233333333334,1.6709800000000001,5.40149,2.402626666666667,2.399786666666667,1.71547,4.86404,3.883645,4.418305,0.578594,4.470715,3.91336,2.942066666666667,2.6947566666666667,3.1297566666666667,3.3872283333333333,4.373573333333334,1.5268066666666666,0.6688210526315789,0.7997571428571428,3.5400333333333336,4.38807,6.263183333333334,5.00685,5.01415,5.18365,1.5693142857142859,3.872533333333333,2.1567933333333333,1.00968125,5.2055,6.0971,2.62197,4.893295,4.1596,7.054798333333333,4.1848,7.719716666666667,3.84171,2.6674458333333333,6.61995,10.282190705128205,2.5939733333333335,0.699079,3.546455,4.278885,2.266785,6.65915,4.63492,3.954765,2.983546666666667,2.983546666666667,4.764665,3.49216,4.09008,5.38115,4.025637428571429,2.4698348571428568,1.08442875,5.51675,2.57922,5.893482499999999,3.549935,4.919305,3.152505,2.0895425,4.767625,4.826965,3.5547,3.86845,4.48593,28.334737380952383,2.154775,2.626375,2.270395,1.7307,2.546213333333333,1.1681557142857142,2.9277333333333337,2.9938933333333337,3.528166666666667,3.407633333333333,0.698256923076923,3.24513,5.10915,3.28609,3.3384,4.10873,6.313644999999999,5.19725,4.41359,4.0144,4.176003333333333,4.31899,3.3723666666666667,1.70389,0.9663083333333334,1.3888833333333332,2.839513333333333,1.4431833333333335,3.1912599999999998,2.447903333333333,2.287996666666667,1.8883566666666667,2.634335,1.946045,1.7941099999999999,2.854335,4.14725,3.81976,4.617075,1.36848,4.0922,2.64303,3.979525,2.5578600000000002,2.568895,2.781305,1.4237166666666665,4.76986,6.5669200000000005,2.85164,3.743505,3.973435,2.527725,3.217294166666667,3.7795,4.357975,4.532975,0.3126930694980695,0.3126930694980695,5.0764,5.11745,3.723835,2.930255,5.49165,4.392675,0.6910030769230769,4.364245,4.76732,3.891405,6.69725,4.69449,7.56549,14.303293333333333,13.400775384615386,4.2149,4.31918,2.6327266666666667,0.5817153846153846,2.6219366666666666,4.63519,1.360665,4.317365,3.5235,2.922886666666667,2.14906,2.3863333333333334,5.0944400000000005,4.152545,9.135529047619046,5.20805,4.04349,7.490958901515151,3.31974,2.9893366666666665,1.5284175,5.366948333333333,2.037695,2.3638033333333333,2.716473333333333,0.2892434375,3.46343,3.85361,4.9380925,0.9194800000000001,1.5511333333333335,3.93079,0.598562,0.598562,2.926876666666667,2.9905933333333334,3.5934000000000004,4.56763,4.20086,5.49125,3.71045,4.111085,2.777755,3.0125166666666665,2.9169133333333335,0.7814333333333333,2.7186266666666667,2.808825,3.038025,6.672784999999999,2.884965,7.86585,2.6381,4.3016,2.935285,2.1903275,2.66775,2.8557,1.81898,2.2738375,1.88468,3.63742,2.573525,4.287157499999999,2.856155,3.9439116666666667,3.9439116666666667,2.6698083333333336,2.6698083333333336,8.959709499999999,2.707473333333333,0.795149,2.6053466666666667,2.4491033333333334,2.5165466666666667,4.287157499999999,1.996174,1.96048,1.554732,5.29325,4.614915,1.7001025,4.58302,3.989695,6.007199444444444,6.858621666666666,2.4717466666666668,4.123745,6.76019,4.39024,3.46419,2.56134,3.524025,3.933115151515151,4.310405,5.337979166666667,7.965896000000001,3.2536525000000003,3.27086,1.1579683333333333,4.44217,3.9607593333333337,4.560715,3.8223941666666668,4.56346,2.63192,2.71265,7.21319,3.127505,1.276778,5.2368,4.025355,3.1266599999999998,5.34335,3.1266599999999998,3.13483,3.52361,4.7467,1.10016,3.735695555555555,4.746995,3.85841,1.3212650000000001,1.8151475,4.33909,4.18411,2.602575,6.536356666666666,5.033,4.281595,4.336025,4.1473949999999995,1.5199625,4.09136,2.81953,3.736565,3.492025,4.22426,4.71681,3.14302,4.73849,5.4853,2.1034983333333335,1.822785,3.7899666666666665,3.4618333333333333,3.4122,3.178323333333333,3.7189,2.91156,4.518395,3.727835,3.92242,2.868695,1.9057533333333332,3.6954,2.095126666666667,2.97926,3.11368,2.865075,0.7251875,2.19362,1.8028333333333333,3.257765,2.12534,3.402745,3.525045,1.352422,3.68452,4.75704,0.831758,1.4168933333333333,3.427535,3.892365,4.019965,1.96138,1.81389,3.515855,2.4614016666666667,1.7029933333333334,2.885165,1.913505,1.1788539999999998,1.3567075,6.24605,3.660415,2.078035,2.584925,2.480355,3.744065,0.8396325,0.3241321428571428,0.7651414285714286,5.20955,2.066754285714286,4.47577,2.0849625,1.7585725714285714,2.9805542857142857,1.2219817142857143,1.0439965714285715,0.718028,0.5573957142857143,2.674854166666667,6.55905,3.00316,3.792655,0.3306782142857143,3.686705,18.667479380952383,3.0038,7.663517128787879,1.0649575,1.0649575,1.0649575,1.0649575,5.729316666666667,4.136895,3.426395,2.6880066666666664,3.225735,3.82905,4.37236,3.728305,3.50286,4.42669,4.303245,4.039005,3.8088766666666665,4.02834,4.9641,4.035565,4.94214,3.408355,4.315685,2.76705,3.89064,3.24847,3.99966,4.35911,4.30901,3.29804,2.656025,2.4848733333333333,4.49969,1.2595592857142859,3.841945,2.9173533333333332,3.8405286666666667,4.3445800000000006,4.220795,3.10475,4.359505,5.90915,4.110195,3.08754,4.9058,5.099,3.402775,4.32582,1.7084620000000001,1.7084620000000001,1.7034325,4.658175,3.95573,5.842723,4.92231,3.5908416666666665,6.3064,4.33843,2.2445875,9.194890000000001,5.0528,6.0905425,4.333725,3.08513,4.0169,0.29996620689655173,0.87122,4.105022666666667,3.473275,5.12215,3.301,6.142458333333333,5.37965,0.56702,4.16464,0.469237,1.7989419047619046,3.46255,2.56067,4.170295,3.78559,3.20469,3.406255,3.447875,3.6582,4.530025,3.62624,4.132975,2.4303,1.7989419047619046,2.70592,2.2081425,3.598425,2.271975,4.881705,3.550205,1.719285,4.40916,4.165545,1.4655716666666667,5.51755,4.809975,4.186385,2.8367400000000003,3.00843,4.920805,1.8740566666666665,1.418548,2.2899366666666667,2.49957,2.6354633333333335,2.0232633333333334,5.13885,3.44369,5.151816666666667,3.7915435714285715,4.97503,4.25074,1.8604340000000001,5.40845,4.72937,5.01565,4.16086,7.42939,1.831665,4.606315,3.84494,3.09583,2.027105,1.6016833333333331,3.869315,4.43169,2.380666666666667,2.6409858333333336,3.2771625,3.2771625,2.6768033333333334,3.1545433333333333,3.35697,3.966685,3.497365,0.8109000000000001,3.21357,4.347765,4.577370277777778,3.38237,3.06888,1.73849,2.789715,3.379235,2.17318,4.803315,3.386125,4.838615,1.9267433333333335,1.045909090909091,6.19835,3.547445,3.2633266666666665,3.2945433333333334,1.8731839999999997,30.27491214285714,4.12959,3.209585,4.750555,4.27511,0.8370833333333333,7.091044999999999,1.985105,5.4887,1.6325200000000002,5.06115,5.529461666666666,3.67544,3.566555,2.0508825,3.421466666666667,4.929705,1.997595,2.777926666666667,3.940275,3.2764,2.55552,5.93835,2.005865,5.06245,1.18107375,4.345305,3.51709,4.37804,4.84044,3.17524,2.563466666666667,4.44791,4.944515,3.6347750000000003,3.6347750000000003,5.7261,2.1746375,4.31684,6.917808333333333,3.351835,4.18272,3.03779,3.602575,3.487915,4.039855,1.35077,2.29495,4.29421,4.35631,5.33315,4.405385,2.762625,9.6576,2.714015,3.77167,1.664057142857143,3.5794,2.208903333333333,2.67508,2.0678295833333333,1.25977,2.577706666666667,0.9245957142857143,1.0223200000000001,1.0223200000000001,1.0223200000000001,1.93936,0.55088625,3.86044,1.1443066666666668,2.30559,0.9983683333333334,1.7152966666666665,2.6309833333333335,2.00625,0.75744875,1.7313833333333333,1.5462966666666667,2.31474,1.636476,1.636476,1.6156733333333333,1.9906633333333332,1.093254,2.229973333333333,1.54945,1.1989366666666668,2.283275,2.06407,5.88975,1.7182075,4.346385,17.880119833333335,6.87777,3.85254,3.5095466666666666,3.1660233333333334,2.8989766666666665,2.7383699999999997,2.99609,0.6937608333333333,1.0499399999999999,1.0499399999999999,0.66924375,2.41848,4.41523,4.45785,1.553182,5.20405,3.74817,2.38743,4.304095,4.883025,4.154325,4.546535,3.5863333333333336,3.20935,3.411005,5.70705,3.506766666666667,4.620165,0.5190710000000001,0.5190710000000001,2.315735,3.10799,5.16705,4.5648,4.60423,4.580235,7.092846,7.52237,3.855605,2.51944,4.948325,4.17938,2.5776733333333333,2.629055,3.651435,1.5125266666666668,3.756555,2.280885,1.94453,3.3922000000000003,4.84539,2.019515,5.337979166666667,1.70222,3.4206,3.72676,0.9591628571428572,3.3733,2.9319900000000003,4.861715,1.1309566666666666,1.7456125,2.4930825,2.2358875,1.6463525,2.3522225,2.039735,2.1298325,4.539385,4.190505,2.88482,1.72519,1.4689966666666667,3.7113666666666667,2.0654066666666666,2.5644,4.59195,6.797,2.4737741666666664,2.93322,3.459065,3.528635,2.36328,5.24575,4.21654,3.174595,1.437275,4.347455,2.25562,2.8160933333333333,2.53622,3.945,4.921195,5.0538,2.669283333333333,2.9036066666666667,2.89882,3.7662333333333335,2.0252833333333333,1.492146,5.44895,3.4342666666666664,2.2639296363636365,3.1782866666666667,3.1045033333333336,2.4528033333333332,3.3317566666666667,3.3625000000000003,3.6644666666666663,5.1869,4.122695,3.15921,5.4127,3.33051,2.43081,3.492275,3.91768,3.921975,5.7979375,1.8938580000000003,4.222935,2.64438,3.085515,3.573655,0.64719625,2.334625,2.20004,3.440395,2.77248,2.09058,2.820075,0.625319,2.8172800000000002,4.61575,2.2162125,4.508835,2.61843,4.436585,1.992175,4.469585,3.97471,1.892428,3.012335,6.8875425,4.25435,4.043845,4.58796,7.080237954545455,4.055815,4.46696,2.16456,4.44081,3.028085,1.83252,1.91234,3.0306366666666666,1.0154257142857144,2.2853966666666667,2.60208,2.63107,3.5208666666666666,1.8457719999999997,3.289935,1.8804066666666666,4.948965,5.85397,1.0314975,1.7884066666666667,2.6267766666666668,2.823033333333333,1.9800466666666667,1.08204,5.629976666666667,2.2290725,2.71581,3.2470966666666663,2.89011,3.108643333333333,3.06021,2.19846,2.9973033333333334,2.3776100000000002,4.18673,3.909725,3.93109,3.4219666666666666,3.2482666666666664,0.8656499999999999,1.8181633333333334,2.21852,2.0488033333333333,2.58105,1.1449,2.74149,2.9889433333333333,3.539525,2.0436666666666667,3.383975,3.343325,5.6725,3.50317,0.5987141666666667,2.04326,2.9703866666666667,3.4941999999999998,0.8001363636363638,2.85173,3.6573979999999997,3.03651,2.6938033333333333,3.342731666666667,3.75324,4.0502,3.062186666666667,2.1476925,5.89135,5.11575,5.0501,5.3976,5.6829,1.75411,3.45783,3.7101333333333333,3.369566666666667,3.0115366666666668,2.8146166666666663,3.9772,3.8684,3.0378666666666665,14.30371,4.28723,1.15815,2.8831,1.601228,3.2076733333333336,3.136836666666667,2.4309,5.503095833333333,6.579302,2.399966666666667,0.933813,4.41968,3.673633333333333,3.24503,5.3194,5.30625,5.7612,4.785225,3.48182,1.9395625,6.4269125,1.1579683333333333,6.69269,4.77502,2.5108833333333336,4.028505,7.522248333333334,5.9666,2.2301433333333334,1.4953866666666666,2.021395,7.09759,1.5362625,2.86214,2.589955,4.168210555555556,5.92385,4.170525,6.20985,3.573315,5.5258,3.76098,8.33893,5.40875,5.54605,2.347675,2.624625,11.34266,3.560625,2.9059,2.4004600000000003,1.59396,2.621443333333333,2.7756433333333335,0.6666025,1.847918,1.0836657142857142,3.12665,7.118436666666667,3.7598779999999996,1.43585,5.02885,5.1626,0.610618,4.36535,3.470405,4.249215,4.168965,3.66935,2.667263333333333,4.17654,9.85473,1.8437675,3.852195,3.52433,3.988205,3.7121,0.9109333333333334,3.6506000000000003,3.9644666666666666,1.7467133333333333,2.503346666666667,2.33204,2.5573900000000003,2.5211200000000002,2.1384866666666666,2.136275,5.807612142857143,4.63135,4.86734,4.249081666666666,1.4411866666666666,2.617025,5.1377,4.682845,4.739525,4.54185,4.718275,4.882295,1.7084620000000001,3.9577,7.726345,1.5479016666666665,1.5592533333333334,2.5507866666666668,2.4441200000000003,2.7775733333333332,4.772962916666667,0.7997571428571428,2.80221,5.16565,6.06165,4.375005,2.5123133333333336,2.8821333333333334,2.0090025,0.55902875,2.33049,2.893975,7.606809999999999,4.16712,4.342705,0.9262750000000001,4.2623,9.518162916666668,10.985466666666667,3.26845,1.207605,3.52386,3.77119,2.7728099999999998,5.476263333333333,5.118,4.196355,2.1205825,3.7826,2.11248,2.58893,0.8315481818181819,0.41525,2.60338,3.380475,1.9757563333333334,3.42953,3.1060033333333332,4.195875,4.680845,1.5106920000000001,3.2355633333333333,2.02233,2.02233,2.124265,2.883235,5.2339,2.824336666666667,2.7003,3.426066666666667,3.5612,4.144425,4.27078,4.710375,4.071855,4.24901,4.414675,6.46505,8.060105,2.02664,2.20776,2.75273,0.8932666666666668,0.6789525,4.514155,2.223545,5.4659,2.932786666666667,3.1850533333333337,1.9139199999999998,1.4655675,3.83019,4.37513,4.2278,2.157016666666667,1.2899933333333333,2.6679600000000003,2.0513566666666665,2.5884966666666664,1.092722857142857,1.092722857142857,2.78729,4.36529,2.917165,2.96869,3.349595,2.052495,19.323238909090907,3.722835,5.9194975,3.98238,4.141895,3.841285,3.87112,5.54785,6.409935,0.83792,0.83792,0.83792,2.68192,1.7488857142857144,3.6664,4.36094,4.212495,3.189385,4.41216,4.456115,0.8840622222222222,2.248536666666667,2.7395266666666664,5.926974166666667,3.2833475,4.047266666666666,4.720785,1.9549225,1.9908599999999999,2.376403333333333,0.5197125,0.8238519999999999,1.809325,2.087015,2.863675,12.931728333333334,2.5333533333333333,5.2954,0.7732785714285715,9.680945,5.7993,3.69526,4.45957,2.747725,5.74315,2.747725,2.813898,3.774645,3.832015,3.875755,3.77407,4.64164,3.37619,6.0708,6.691748,1.7333433333333332,3.2462940000000002,2.722935,27.890358712355212,1.6441199999999998,6.49265,4.890414,3.97422,4.05846,4.750655,2.733075,2.766835,2.31305,5.9496,6.80605,5.05345,4.64684,4.628425,2.0900425,2.152515,4.657045,0.4428669230769231,0.4428669230769231,0.4428669230769231,0.4428669230769231,4.0287,3.1390866666666666,0.9299766666666667,1.7612633333333332,1.2178111111111112,4.98261,2.44838,2.4250275,7.399798333333333,3.1234533333333334,0.16913,20.521942,4.442488333333333,1.7375060000000002,1.3494021428571428,2.1646,1.919426,2.438865,4.70718,3.22877,3.921275,4.170765,2.37253,7.29899,2.78767,2.00878,3.560755,6.07325,8.307606666666667,4.47172,0.29174634146341466,3.516405,4.250475,3.0998966666666665,2.1423025,2.901816666666667,1.6048766666666667,1.6048766666666667,3.868015,5.77946,12.846348333333333,9.5912,0.62885,2.61992,4.840575,3.100195,5.5284,4.67636,1.7166799999999998,1.7166799999999998,3.965645,4.18874,2.4997666666666665,3.6079,5.40495,5.21465,5.712925,2.01396,4.7388,4.316375,2.63683,2.975156666666667,3.3321133333333335,5.01825,4.477915,5.1978,4.07072,4.212535,4.02942,4.425725,4.123225,5.842,2.716343333333333,3.097856666666667,1.148172,4.380365,4.29587,4.037845,1.837714,2.07296,2.7841833333333335,3.23226,2.2199733333333334,4.43684,1.6881833333333331,2.3281025,3.1456233333333334,3.0559833333333333,2.5983899999999998,2.662853333333333,4.641133333333333,3.4154,3.394,3.7321791666666666,1.9990433333333335,2.6561966666666668,2.085926666666667,4.93423,3.209823333333333,41.28391925,2.1968503636363637,2.1968503636363637,2.584233333333333,2.777863333333333,2.278983333333333,1.6468466666666668,2.898963333333333,1.8320633333333334,0.7504446153846154,4.83108,7.4695575,4.28076,3.92729,5.9442,1.86115,4.73325,1.9035540000000002,5.2499,4.732675,5.8472,3.501795,1.70389,4.199715,4.95106,4.634995,5.27175,5.5457,4.020345,2.880095,3.3187166666666665,3.1820500000000003,2.235445,1.795705,4.319955,2.46197,3.7332,3.7332,2.228283333333333,1.5217933333333333,2.5961166666666666,2.4616599999999997,2.9472466666666666,5.11705,2.8411500000000003,1.1688283333333334,1.1688283333333334,3.8379,2.0262466666666668,2.4578133333333336,2.60475,2.6955066666666667,2.4616466666666668,2.3768333333333334,1.9918292499999999,2.796113535714286,1.4417155357142857,0.8042842857142858,59.826613406746034,2.3313099999999998,2.459103333333333,2.0436240000000003,0.8806480000000001,3.2896693333333333,1.637836,1.637836,2.500363333333333,2.901953333333333,0.63743125,2.59132,5.189016666666666,3.5574333333333334,2.648406666666667,2.81169,2.041463333333333,2.421181333333333,0.2880225,2.1689933333333333,0.7092080000000001,2.55844,1.224736,1.224736,2.4243266666666665,1.7669380000000001,1.9940633333333333,1.4200513333333333,2.6919533333333336,1.4200513333333333,2.1023366666666665,2.8865700000000003,3.3892,1.345518,1.345518,2.79869,1.4015466666666667,3.1041000000000003,2.0919,4.740245,4.51898,13.024684583333334,7.1404675,3.65845,2.674395,4.453475,5.31795,5.56465,2.7161383333333333,4.34149,3.84137,2.3591266666666666,4.51416,3.4878,2.70816,4.44437,2.25353,1.04603,4.2182325,2.91377,3.633175,0.7817299999999999,2.625825,3.59144,4.1524,4.33424,6.6942,2.7245500000000002,1.935754,4.08195,4.47403,2.25713,2.5915391666666667,1.98336,2.0919706666666666,0.8909940000000001,5.46945,4.830235,3.918415,3.932535,3.18901,4.208025,5.14835,3.270213333333333,1.7144533333333334,0.5331993333333334,14.859567499999999,0.5089127272727273,0.5089127272727273,0.5089127272727273,3.0689433333333334,3.8834999999999997,0.5089127272727273,7.20468,4.57953,0.715832,0.715832,3.1496399999999998,3.23937,3.0013,5.0533,4.53602,4.4376425,2.156305,4.900428,3.69297,3.5772388095238097,4.74375,2.89546275,2.2543375,2.3790275,2.5403,1.549095,3.3937166666666663,3.0144699999999998,2.562375,2.1733775,2.2263825,1.7594833333333335,1.577415,2.6382,1.1355333333333333,2.62435,0.6337007142857143,5.26845,1.6935575,0.7033566666666666,2.26639,8.038505,2.447385,2.13194,3.2366575,7.64652,2.495215,4.67399,3.31149,5.98011,3.94697,3.800445,4.076475,4.726085,3.0277333333333334,4.69993,1.1264014285714286,4.3348,2.38198,2.4906,2.57552,2.50719,2.2,1.2776375,5.4436,0.8862690909090909,5.38485,5.522,5.16475,5.4898,3.7985,2.45073,2.01634,2.960713333333333,3.191183333333333,2.49858,3.679866666666667,2.709175,3.79184,1.9302240000000002,40.94308904761905,4.814405,2.413936666666667,3.0556699999999997,3.152676666666667,1.4565733333333333,5.594943333333333,4.158705,2.8338699999999997,3.5170666666666666,2.37542,1.587045,5.6055,0.8314285714285715,4.899237142857142,1.3943471428571428,3.4879,3.4768000000000003,3.04537,1.44265,4.866596,1.6944919999999999,1.6944919999999999,2.630673333333333,3.0383458333333335,3.475,3.7826,1.4180833333333334,3.141443333333333,2.733303333333333,6.237321833333333,2.9885099999999998,3.846188333333333,1.2687383333333333,1.3557933333333334,2.943163333333333,0.911882,5.629948333333333,3.918066666666667,2.8982566666666667,3.6810666666666667,2.9694633333333336,2.78472,3.22959,1.7037966666666666,2.480355,2.7955966666666665,3.6618,2.4811533333333333,3.6717666666666666,3.124223333333333,0.6069093333333334,9.603912564102563,2.8358600000000003,5.51595,5.1777,2.8573299999999997,2.9315233333333333,1.34292,2.1884533333333334,2.127725,1.34292,3.164175,0.50542375,0.50542375,1.20128,1.20128,0.88521,0.88521,2.60097,2.9944,2.98663,1.433925,1.869545,3.64654,2.77194,5.03055,4.785055,1.953376,4.516105,2.302465,4.826851111111111,1.5609975,1.5609975,2.171185,1.729562,3.745965833333334,2.02466,4.60404,1.3884283333333334,2.29392,0.6149415384615384,1.1899185714285714,2.211505,2.115355,2.3459875,1.62685,4.393455,4.529645,2.5066633333333335,2.8261866666666666,1.4148366666666667,0.73545,2.5411066666666664,3.733155,2.577036666666667,4.669695,5.6111,4.940865,4.16344,6.659000000000001,1.6151216666666668,6.3056,1.89828,4.78413,5.05225,5.853244,3.3645666666666667,2.25299,1.707695,2.00888,2.00888,2.474615,2.474615,4.545975,5.4659,0.902194,4.235195,3.28855,3.395825,2.3594566666666665,1.4836925,2.7985166666666665,4.230115,4.655225,1.8767340000000001,6.5169,5.3715,1.83132,1.324725,4.04637,4.154146666666667,3.78709,3.41822,4.143155,0.6918664285714285,3.6437333333333335,3.1585,2.698446666666667,3.0243033333333336,2.21055,3.893966666666667,1.567885714285714,1.567885714285714,1.567885714285714,3.1135800000000002,3.0562066666666667,2.58405,3.579914357142857,2.464745,1.26814,3.2754600000000003,3.3032066666666666,1.2167557142857142,3.0923599999999998,2.7415599999999998,1.261037142857143,2.99572,2.9172833333333332,2.9199300000000004,2.7446633333333335,2.8684933333333333,2.22516,3.122476666666667,5.066682,4.669815,0.9164239999999999,1.516416,0.682779,3.5986333333333334,9.082725,3.1477566666666665,3.26548,2.6097266666666665,4.311200833333333,1.9038975,7.804885,6.706836666666666,2.9288600000000002,2.5526154285714284,4.529345,4.77811,1.638074,1.23399,1.381856,1.87368,10.632206666666667,2.870623333333333,3.0511166666666667,3.2161589999999998,3.857245,2.4781666666666666,1.23047125,3.9267,1.1440533333333334,3.754271923076923,4.072295,3.31194,3.3917333333333333,3.53131,5.02185,1.182995,2.041255,1.9773383333333334,1.9773383333333334,3.746865,5.21615,7.730969999999999,4.114425,3.905605,5.0304,1.878725,2.2894183333333333,4.88398,4.305745,4.69802,1.5867883333333335,2.72981,3.552565,4.20629,2.63105,4.21047,4.3682,4.577175,4.3024,4.427785,4.16551,5.27635,3.3105166666666666,2.545166666666667,4.61913,2.988305,3.75858,2.173195,2.67582,2.558425,5.1702,2.52459,3.2581394318181816,1.685575,2.50482,3.673685,2.12489,2.067625,0.8524733333333333,0.8524733333333333,1.7532325,3.7522009090909085,4.312575,2.861883333333333,4.278415,3.35572,2.501903142857143,1.01046625,3.60058,1.504665,4.78239,4.12818,0.9001441666666666,1.8166125,3.93345,2.9283475,1.56799,1.5709533333333334,4.916994285714286,1.049,2.754095,3.29102,2.804165,2.403655,2.803784,2.025835,0.9727625,2.890345,2.935795,3.398995,1.3981933333333334,1.5295533333333333,1.825115,4.47277,2.14147,4.657885,4.76516,4.784725,5.79365,5.4629,4.25483,6.11409,4.060165238095238,0.81448,2.802865,4.43916,3.937605,0.5045772727272727,0.8731,2.95526,4.111165,4.988185,4.73667,3.3951935714285715,2.74869,4.615015,1.7782399999999998,2.227795,4.634995,4.0033675,4.018125,2.885155,3.931725,4.82426,3.18371,5.5871325,0.9017350000000001,3.54139,2.643355,4.243375,4.635875,4.68541,2.1218,2.661975,2.871705,2.2020866666666667,4.792635,3.706545,1.4771571428571428,3.208065,4.3089625,1.445684,5.867685,1.854844,2.5624033333333336,14.013140443994601,3.2930200000000003,1.3842333333333334,1.53996,2.1280033333333335,5.531408333333333,1.6542439999999998,5.9161918333333325,0.7211469230769231,3.3456333333333332,4.143045,7.350985,2.483426666666667,2.9082033333333333,2.9082033333333333,4.99804,4.39391,3.79644,3.29797,5.1017,5.49325,2.31834,3.3821666666666665,4.70589,1.2931983333333334,2.853676666666667,4.724355,3.761385,3.995725,2.5299,3.70169,3.72093,6.484985,6.05407,0.7590939999999999,3.970545,3.23187,3.17777,4.25507,3.996445,4.049535,1.703594,5.0476,2.682025,2.92881,4.22258,4.36872,4.39841,0.8904091428571428,2.5240199999999997,8.157678,1.4935049999999999,2.2277262337662336,2.2876825,3.936285,3.519685,3.254025,0.650309090909091,2.5067,1.6007375,2.31591,4.53421,5.526942666666667,3.000736,9.35506,2.6516533333333334,2.72801,1.11703,4.44702,5.5538,1.971265,5.736176666666666,3.10635,3.14847,5.40955,4.36189,4.741045,2.10191,1.518975,1.518975,2.67521,3.202965,5.397164999999999,1.491625,6.801661666666666,1.5459033333333334,3.567155,1.5302483333333334,8.799390833333334,3.795555,2.76736,5.0193,4.90164,3.80428,1.1250383333333334,2.2537975,3.6260999999999997,3.2051200000000004,3.493233333333333,3.688466666666667,3.900405,2.727325,3.2817,3.296495,1.516175,2.5239033333333336,1.8702633333333332,2.89362,2.371496666666667,5.5038791666666675,3.344466666666667,1.8158866666666666,3.0910666666666664,3.225115,3.58686,6.0129,5.79605,2.949815,3.681055,3.67398,3.08357,2.83502,1.1590266666666666,0.9471080000000001,6.85754,3.13094,5.17155,5.1177,6.147,3.858355,3.1929499999999997,6.2981,2.505845,0.49660666666666664,5.3206,3.453495,4.05346,3.2992566666666665,1.4231157142857143,4.730625,1.2907819999999999,5.1119,0.90367625,1.5828233333333335,2.89739,2.493743333333333,2.4526172857142856,3.961325,5.31305,5.419151666666666,5.419151666666666,4.492789999999999,4.492789999999999,4.664485,3.143283333333333,4.445335,0.9887425,5.612,4.000525,3.6734000000000004,4.17961,3.87463,5.25835,1.9479825,4.874335,3.2046459999999994,3.478975,4.284555,2.44221,4.637105,5.3099,3.74046,3.23047,4.50966,3.714285,5.0319,3.230015,3.11008,6.0139,4.242765,2.9031599999999997,6.292305,1.5768033333333333,2.251335,4.79155,4.5905,5.7805,4.023055,1.9760375,1.9760375,13.938877781746033,9.30816,5.62305,4.035135,2.98923641025641,4.54054,4.533565,2.5236,3.22997,3.23015,3.8364666666666665,3.537266666666667,5.0604,2.14113,7.769831666666667,2.452605,1.8517175,5.1774,2.47511,5.05095,4.527005,4.885905,0.9093300000000001,3.58957,3.860365,0.9928699999999999,2.97151,4.318574166666666,1.45523,2.13332,2.96939,2.6648633333333334,2.5940933333333334,3.134733333333333,2.631276666666667,0.4947128571428571,2.7703900000000004,2.3941933333333334,2.9399266666666666,3.1529566666666664,1.625938,3.324336666666667,7.357261666666666,4.84177,2.4178966666666666,1.9693033333333334,2.55234,3.711445,2.3284,3.5868889999999998,18.09729,5.41175,3.483408,5.57865,3.799265,5.367596666666667,1.5650966666666666,6.0988,1.5006899999999999,4.44563,3.688065,5.32865,5.06965,0.9683636315789474,5.2927,2.444175,4.73428,3.25047,4.3776,4.54726,2.967815,2.0617366666666666,1.544962,2.0034775,4.55569,4.71909,2.095635,1.727835,2.9609400000000003,4.480933333333333,3.15464,5.83885,2.2169925,3.470535,4.595325,5.3009,4.52033,3.500195,4.273405,4.47389,4.11947,2.752003333333333,2.752003333333333,5.571577777777778,1.9777866666666668,2.7524433333333334,3.93991,1.7354479999999999,7.87721,3.59349,4.496146666666666,4.430866666666667,4.633575,2.00332,4.213805,5.05125,3.72383,2.083475,3.63554,3.22542,1.2341225,1.528635,1.2171466666666666,0.6912483333333334,1.7139866666666668,1.1111183333333334,4.51727,0.9238211111111111,3.04571,1.6194466666666667,1.7590925,1.0846066666666667,2.36425,2.3073,1.471575,3.3403666666666667,2.6056233333333334,4.696508333333333,1.5856816666666667,2.4723475,3.4255666666666666,2.6878766666666665,2.4800866666666668,4.516334166666667,4.687005,4.985298333333334,20.250562249999998,3.07925,2.2145925,0.6393207692307693,0.654379,4.513566666666667,1.992832,4.02331,4.758485,7.343511166666667,3.73577,3.71018,3.95644,2.997856666666667,3.1073533333333336,3.2611399999999997,3.851233333333333,3.287873333333333,6.11595,3.752915,0.905888,1.17015,5.25475,3.2638599999999998,2.54473,2.1235066666666667,2.30163,5.6558,4.95247,2.2666875,1.45368,3.305755,5.1697,8.782073333333333,5.667753749999999,4.32796,4.24334,5.3493,4.767135,4.511415,4.781445,4.477715,5.6543,1.811705,5.92055,1.623257142857143,5.2571,0.77672,5.3162,5.50495,6.21825,6.25035,4.548645,5.85785,6.0408,6.3663175,2.0090166666666667,1.6310857142857142,5.55175,3.811125,6.8077749999999995,4.969315,5.3156083333333335,5.029,6.14665,1.376807142857143,4.613945,5.8207,4.020533333333334,4.886295,6.01625,2.632525,3.86665,3.73814,4.86643,1.0227333333333333,1.6263066666666666,1.378114,4.930165,4.058285,4.77903,2.6910566666666664,3.053786666666667,1.6131466666666665,2.17343,0.3814416666666667,3.21789,1.585094,2.0980983333333336,3.16732,2.3726933333333333,3.3371333333333335,2.4329275,2.690675,10.396068,3.6344666666666665,1.8298978205128207,3.917555,0.8514409090909091,4.484675,1.111965,1.73434,1.98828,1.073085,5.552352666666667,1.1638830555555555,1.1638830555555555,1.1638830555555555,2.9033333333333338,1.667792,5.22515,2.979225,1.465285,1.59277,1.9108975,1.4292375,1.6774799999999999,5.464604166666667,0.8869455555555557,4.603425,4.157735,3.5608,1.0164828571428572,2.161469,2.318225,2.318225,1.6308116666666665,3.8705366666666667,4.75393,4.892035,5.57825,4.29742,5.4943,2.9119766666666664,2.0950925,3.126485,5.2846,3.45562,4.733275,1.1397325,4.036947916666667,5.35225,1.9371475,4.48942,2.9560033333333333,4.37876,5.33135,2.54239,6.4291,6.2823,4.74445,4.788955,4.18749,3.30596,8.13209,4.02407,6.27045,3.415415,2.77459,5.15975,2.6682166666666665,4.480995,4.95953,2.8012366666666666,3.28211,3.94833,1.2937766666666668,10.72687,5.32035,3.25182,15.45976365079365,4.11904,1.8104366666666667,2.999726666666667,3.04255,2.72385,4.19978,2.502163125,3.37341,4.340965,2.92041,4.130395,6.124805,1.2599433333333334,2.397175,4.10432,4.923395,5.1562,2.23237,0.63761,4.82378,4.296185,2.028935,1.26973,5.0474,4.93802,0.9760433333333334,3.74012,12.777326666666667,1.3104687142857143,0.4021207142857143,3.7032000000000003,4.324158333333333,1.0481411111111112,4.183085,3.911285,5.218995,1.37845,3.33914,4.093205,3.2776,4.58403,4.53815,5.54895,8.817630000000001,3.31741,3.91318,4.259715,16.340496875,3.5151475,2.5337,1.5104125,1.98477,1.23826,2.0126037500000002,1.9469575,2.006475,1.8848525,2.206655,2.565125,2.4864275,2.0544675,5.3208,4.05739,5.22225,3.30084,6.117298333333332,2.984773333333333,4.757505,3.3811666666666667,1.1474825,3.68946,2.0171025,2.801887333333333,4.952955,4.716335,4.75626,5.17435,2.7586366666666664,3.178846666666667,2.4126833333333333,3.83421,3.7054,2.250835,1.804795,3.7464,4.86636,4.121265,2.3672366666666664,12.215566666666666,0.6386946666666666,2.818115,4.990435,2.671146,1.185612,2.80707,7.544241666666667,7.359906666666667,4.847925,4.20472,3.723655,2.1251075,2.291555,2.8270653333333335,2.0458233333333333,4.039289999999999,4.80641,4.462185,0.49667333333333336,6.43625,3.5403000000000002,3.549633333333333,3.945866666666667,6.48785,9.155389,4.3403515,1.1371725,2.17196,2.231215,3.604635,2.59291,4.11392,4.725305,3.4256333333333333,2.7929333333333335,4.24587,3.98084,3.75748,3.9521333333333337,2.3803266666666665,3.125215,5.44555,5.3768,3.3795333333333333,1.7238175,2.1907466666666666,14.691103614219113,0.5375518181818182,1.4754775,1.4754775,2.1774033333333334,4.342044,3.720255,4.388295,3.426205,3.250955,4.10415,3.0967233333333333,4.201465,3.0967233333333333,3.50354,1.91509,1.5245466666666667,5.9548,2.33059,4.855295,3.244815,2.789925,6.99399,2.0254533333333335,5.0529,5.25685,3.69845,3.51279,4.87095,2.0372399999999997,5.03835,3.7011900000000004,7.215056666666667,5.665490833333333,2.40015,4.301465,4.499235,2.0865,3.006596666666667,3.7479,0.4728078571428571,3.4378666666666664,10.135946666666666,4.02713,4.47124,5.34795,3.3140408333333333,3.14715,1.3428242857142858,4.283305,5.4532,3.384915,2.6402,4.98081,3.850015,4.253695,4.48368,2.365835,2.365835,3.988615,3.098615,2.8029968181818186,1.89476,5.1943,3.979245,1.1280614285714285,3.909485,4.496695,2.7106266666666667,7.620725,7.92837,1.4821719999999998,4.21163,4.85072,6.956201999999999,0.8147500000000001,7.372063333333333,3.6422350000000003,0.6610881818181817,5.51635,5.4753,5.1352,4.4075,5.29805,4.73472,5.02585,3.804295,3.81758,4.72256,5.1004,5.6145,5.18585,3.881045,3.35511,4.538335,3.90827,0.8825329999999999,4.295205,2.590155,1.74849,4.33358,4.78068,5.49565,1.0405714285714285,4.951608333333334,3.028225,2.72437,1.927975,1.22605,12.276999166666666,3.06674,3.199476666666667,2.3117033333333334,3.7831190476190475,5.292443333333333,6.104896666666667,2.649786666666667,2.3732666666666664,2.25046,2.25046,2.25046,1.3793866666666668,3.61071,4.07547,3.11663,4.501505,8.126854999999999,4.16008,1.102074,2.28202,4.174405,6.0298,1.752814,3.997215,2.86959,1.2764466666666667,3.18068,6.034389285714285,7.0046325,4.678525,4.24259,3.2333533333333335,5.51255,4.290945,5.480235,1.962405,1.962405,4.35339,3.79015,2.6586163333333332,2.6586163333333332,3.845955,1.2657271428571428,5.1241,3.677815,4.190905,4.300995,4.376825,3.0508633333333335,1.0402285714285715,4.567225,5.3774,4.607905,4.867165,4.835555,4.86144,4.47672,2.1094325,1.46136,3.34231,4.097995,3.31867,4.25734,2.036995,3.1433299999999997,4.350195,2.72338,4.91891,8.475465,2.406865,3.0421766666666668,4.494760476190476,4.881631666666667,1.8997775,1.9444226190476188,0.9013483333333333,1.9444226190476188,2.0109166666666667,2.0109166666666667,1.513312,4.690185,3.065315,4.11279,2.232685,3.806385,1.574205,5.4687,2.992535,1.6421625,3.0050166666666667,5.3993,4.17822,6.35595,4.833085,1.2931940000000002,0.842,3.643625,6.16705,2.416376666666667,3.5358,3.211585,3.211585,2.396845,3.441825,3.19756,1.466206753246753,3.1877366666666664,3.52492,3.516315,4.515035,4.079445,1.6176075,3.610455,4.781735,4.217265,5.35445,4.177295,1.928335,2.183385,1.2744666666666666,2.3430375,3.427885,1.9303825,4.14937,3.247833333333333,3.036155,4.038255,4.922675,2.549725,1.115132,1.80487,1.5116225,1.2152777777777777,4.94517,4.295435,1.148172,0.21699173913043476,0.21699173913043476,0.21699173913043476,3.504985,5.9489849999999995,4.39255,5.4435,3.33545,3.767315,4.52185,4.420755,2.839355,3.79387,1.62186,4.862155,4.303645,3.991135,4.45785,4.648755,0.7281536363636364,0.7281536363636364,0.7281536363636364,0.7281536363636364,0.9809240000000001,0.9809240000000001,4.124435,4.04841,3.602945,2.589685,2.501095,5.268,4.495765,5.1372,4.28804,3.374166666666667,2.5229399999999997,9.80844,1.6142600000000003,1.6142600000000003,4.12793,5.5336,3.2248666666666668,0.50542375,0.50542375,0.50542375,0.50542375,0.50542375,0.50542375,5.0590633333333335,5.1301,3.89749,4.35103,2.7203125,2.7203125,2.72863,3.112365333333333,2.5629399999999998,3.18719,3.47067,6.7765526666666664,1.3567040000000001,4.82309,3.92704,4.0414,9.831356666666666,2.41774,2.940195,0.8662614285714286,2.264495,4.61448,3.678175,1.12417875,2.8515833333333336,4.20631,5.61325,2.746675,4.747763055555556,1.179822222222222,1.9508333333333334,4.839115,4.862395,2.9413665,2.5993833333333334,2.23868,1.4149883333333333,8.130893333333333,3.776866666666667,2.17402,3.10551,2.6935966666666666,3.99079,4.39863,2.7419766666666665,3.5635333333333334,6.11895,1.4660366666666667,4.948135,4.96495,4.52502,4.04282,2.33329,3.398925,3.78395,3.719385,2.943285,4.486365,4.79846,2.856033333333333,2.00496125,2.9959866666666666,2.7537333333333334,2.827693333333333,0.8038163636363636,2.2133425,8.4145325,0.49081,3.08574,1.6938733333333333,2.5507933333333335,3.0678533333333333,2.913536666666667,1.2646222222222223,1.8150099999999998,2.79228,2.1005575,3.718955,2.0152,2.7969233333333334,1.5708833333333334,3.34375,2.23805,1.1394028571428572,3.117646666666667,2.1589075,2.3358,2.6641833333333333,2.8371766666666667,3.2486833333333336,3.2981533333333335,3.0866966666666666,3.010196666666667,3.2896466666666666,2.991816666666667,2.42812,1.6840533333333332,2.4739633333333333,2.84444,1.64316,3.10895,3.9635728571428572,2.9727599999999996,2.7112266666666667,3.0236066666666663,3.8396000000000003,4.8142708333333335,2.933286666666667,1.6583557142857144,1.6583557142857144,2.30386,1.1300425,2.3819275,3.3667266666666666,4.629314166666666,2.544575,1.97136,2.1726025,2.0969375,3.71436,3.2535,3.933305,4.926725,1.7762375,2.5787400000000003,3.600725,1.279234,1.279234,2.74495,0.6433384615384615,3.0666192307692306,2.3182525,2.3182525,3.2384799999999996,2.45362,2.8820266666666665,2.6853233333333333,2.36983,6.398956666666667,3.9406675,3.9406675,3.736175,3.150135,2.242805,3.06138,2.45289,3.01269,5.23195,0.5027441666666667,0.673658,4.07859,2.848085,2.94155,6.75475,3.76484,1.6503640000000002,5.3133300000000006,4.692175,3.916275,4.25758,5.35775,4.847875,13.2922425,3.38773,1.6161533333333333,2.70969,3.708745,5.1838,3.69207,4.2519,4.521285,3.67717,3.759735,2.832573333333333,3.482255,2.742316666666667,2.38371,2.38371,4.15617,2.8555,3.005655,3.37523,2.57909,2.54816,2.28269,1.8826425,2.0198525,1.8169725,2.00259,3.9916605,3.703275,2.642415,6.9860825,3.516675,2.3506733333333334,1.7800266666666669,3.414955,3.8376,3.67869,3.12853125,4.0974,3.24182,4.28743,3.628,3.816625,3.964855,3.3248430000000004,3.445005,0.6484533333333333,0.6484533333333333,0.6484533333333333,3.395065,2.264685,4.679245,2.96313,3.809805,7.801767222222223,2.89921,0.3962653846153846,5.2464,0.791921,4.448957142857143,2.01538,4.02907,1.88036,4.552825,5.819566666666667,4.31395,4.03538,2.80335,2.9769633333333334,1.5647650000000002,2.9530066666666666,0.5140636842105263,0.6378117647058824,3.1751,1.5255400000000001,1.9547675,3.857005,2.78018,5.17165,2.958126666666667,3.0116283333333334,3.36176,5.32607,1.87175,0.9651285714285713,2.274455,3.184988,1.3233768831168833,4.940915,3.82626,4.241365,2.7404433333333333,4.49731,3.2876933333333334,2.64363,2.99286,2.1406875,2.8005933333333335,2.1529025,3.1576966666666664,2.4121833333333336,6.093252,2.333655,1.8793733333333333,2.6515566666666666,4.894289333333333,3.23384,3.23384,2.33975,3.96135,2.1674625,3.42383,2.908195,0.6464393333333334,4.39955,2.049615,11.499881111111112,7.37743,2.89051,3.00643,3.32358,5.32535,2.787605,3.519685,0.24038666666666667,1.8980075,3.8983000000000003,0.8408583333333333,3.856775,1.3850014285714285,5.00775,3.391105,3.557425,4.059475,3.97989,2.260445,4.715215,3.81398,4.569095,6.99151,3.97546,3.011763333333333,3.137233333333333,1.6520040000000003,1.9875,4.36525,4.485305,4.0447,2.618885,3.77526,1.495846,2.884985,2.356275,4.758785,11.265266666666667,3.64618,7.067956666666667,4.090445,4.408855,0.98154,5.094176,4.93341,2.5357233333333333,2.716753333333333,3.4841333333333337,2.9579866666666668,2.3934866666666665,1.7241066666666667,1.9178199999999999,3.626035,1.737274,2.8410933333333332,5.373067333333333,2.8276466666666664,0.9921589285714285,0.9921589285714285,3.55181,3.1335235,3.1335235,3.4979666666666667,2.8279866666666664,3.4234974358974357,3.6683,3.7307666666666663,2.7010133333333335,2.3857,2.4666833333333336,2.990623333333333,2.2284075,2.472513333333333,1.624148,5.744528,9.194418166666667,0.53708,0.53708,0.53708,0.6243990909090908,0.6243990909090908,0.53708,2.8353,2.9714066666666668,4.245098333333333,1.4515716666666665,1.77192,3.355088,2.3733833333333334,3.03862,2.37328,3.2097466666666663,3.6339666666666663,6.7693200000000004,3.0896733333333333,2.4876033333333334,3.5076,4.92549,2.6165133333333332,3.5332333333333334,5.64895,2.3353633333333335,3.3539999999999996,1.3574233333333332,1.3574233333333332,2.9354266666666664,0.5467473684210526,2.2695166666666666,2.735133333333333,2.9877633333333335,3.3976333333333333,2.256883333333333,1.5490733333333333,2.946123333333333,3.3417333333333334,2.355843333333333,4.57598,2.491703,3.755955,2.945735,4.296985,0.5180629999999999,8.416895,2.9165419999999997,2.9165419999999997,7.974385833333333,1.77344,2.22321,2.9729466666666666,3.697465,2.3301833333333333,1.9895833333333333,2.76228,1.432775,3.4115333333333333,1.7881600000000002,3.0549815,1.446075,0.2690377272727273,0.2690377272727273,5.08965,3.966985,3.36668,2.850013333333333,3.258115,3.385295,1.2978533333333333,6.2262,3.825275,2.934405,1.8670375,1.1866958333333333,2.176865,2.9729466666666666,2.48042,1.9328,6.20938,3.942615,4.58961,4.75706,2.2685,0.6840016666666666,7.2503375,2.06764,1.4967475,3.47391,4.400415,2.177335,1.9721,5.01,4.31784,3.4726666666666666,3.11683,4.807105,4.472215,3.4466666666666668,2.60434,2.60434,4.35607,4.92301,5.72455,6.589496666666667,2.6744766666666666,4.187055,1.3947357142857142,2.222585,4.482098000000001,3.82021,1.8340779999999999,4.017955,3.4690450000000004,4.445235,2.137885,4.43845,4.860455,5.1179,4.83164,2.4419299999999997,2.6761166666666667,3.8937666666666666,2.0589866666666667,2.532,3.588433333333333,2.4685633333333334,0.803729,2.00866,2.791346666666667,2.365685666666667,4.63815,4.52925,4.743655,3.97813,4.348735,5.5798825,11.54673,5.73395,4.078395,4.386025,4.05536,4.664735,2.900323333333333,2.877614,3.894,1.2795,2.7139,2.876015,4.41757,5.25085,4.720655,3.095266666666667,2.62546,2.2926699999999998,4.293866666666667,4.5314225,3.5271666666666666,4.5314225,2.576123,2.293013333333333,2.403235,2.2855175,2.493536666666667,2.39885,1.0261966666666666,1.7502333333333333,1.8125466666666668,2.060443333333333,1.6236066666666666,1.3112466666666667,2.5787466666666665,2.6417366666666666,1.547334,3.1814066666666663,1.29329,1.96547,2.63665,2.9092533333333335,3.184753333333333,2.404603333333333,2.4012533333333335,3.287505,2.228905,2.7332199999999998,2.9339933333333335,2.508106666666667,3.0478400000000003,3.1110499999999996,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,0.14363516129032255,4.969785,4.8865,1.0314885714285713,3.1448866666666664,2.599833333333333,2.8066099999999996,4.257895,2.9323933333333336,4.467135,3.673608666666667,1.6632079999999998,3.2995866666666664,1.5319099999999999,1.10842,0.957537,1.2665833333333334,0.9029283333333334,0.8226216666666667,1.319054,3.30914,1.7576239999999999,1.808,1.7027349999999999,2.2961566666666666,1.0615466666666666,1.3097616666666667,1.3672700000000002,0.96152,1.2389833333333333,0.717275,0.88541,3.35152,3.529295,3.99951,4.39578,4.17136,3.1027666666666662,4.301485,3.9484999999999997,1.840335,3.632765,2.14355,3.526385,2.125863333333333,0.7508327272727272,4.230695,4.50977,2.0452033333333333,1.2151325,2.8694,3.31998,3.8705366666666667,2.9587299999999996,2.507745,0.8831825,1.9466925,5.236925,3.741715,3.66923,1.5187133333333334,3.695015,2.00528,0.6629018181818181,4.437385,3.977055,4.113325,2.45458,1.390982,4.29178,4.391035,2.5888166666666668,2.5739233333333336,2.669563333333333,2.6524633333333334,2.6929,2.8354533333333336,3.082543333333333,1.2834125,2.749725,2.5987433333333336,5.3784,4.365105,3.683155,4.69834,16.053202823232322,4.6663525,4.435322,2.89429,3.90449,5.1243,1.659532,2.4481,2.3657766666666666,6.6524350000000005,3.677795,3.83063,5.4173,2.3657766666666666,3.82349,2.09765,2.5087800000000002,2.99886,2.7588000000000004,1.2712933333333334,4.348535,4.25222,2.56819,4.18555,2.42207,2.551973333333333,3.73691,3.172935,4.66936,3.97116,2.68637,3.43299,2.625135,2.566946666666667,1.24142,1.24142,2.30758,2.1385166666666664,0.2768607142857143,5.040852,0.971472,2.78551,4.17245,0.5699641666666667,5.13855,7.928241666666667,1.822785,3.68197,3.799245,2.7759033333333334,3.290545,2.282055,3.04278,3.607255,4.09152,3.286185,4.097733333333333,1.0333166666666667,12.414588,2.87448,3.48141,4.577805,2.532765,4.13702,8.140135,4.44921,4.464495,3.82709,4.215,5.6408775,1.5035775,2.86608,5.1882,3.792566666666667,1.890438,3.81583,3.66609,3.64458,3.95755,4.64587,4.066915,2.4227666666666665,3.889965,3.83949,5.3439,3.74721,2.3408266666666666,2.5267933333333334,2.635083333333333,3.0084466666666665,1.2747,3.5804666666666667,0.8802736363636363,3.5029333333333335,3.0386433333333334,2.5662233333333333,1.463745,4.448535,4.43195,4.20241,1.8446225,4.705135,4.02259,0.771640923076923,0.37626692307692305,4.447845,4.945765,1.216115,0.37626692307692305,3.294385,0.771640923076923,0.771640923076923,0.37626692307692305,5.7588333333333335,2.5593733333333333,2.508383333333333,5.5971,3.862665,3.07379,0.7927077777777778,3.169255,3.78094,4.55294,5.499,2.1585525,0.7498123076923077,4.558433333333333,2.58907,1.436634,2.13911,1.0774885714285714,2.5082,2.397956666666667,3.65081,5.1747,3.03499,3.0699799999999997,3.3593333333333333,2.3718733333333333,2.98554,4.24679375,1.647085,1.9806925,3.88192,5.40635,2.1113934722222223,5.46845,2.648915,4.13386,4.300885,3.23034,1.1967075,3.09933,6.24915,3.61708,3.46219,4.890785,5.76855,3.04577,3.681265,4.560875,3.098115,3.33892,8.29792,3.71669,4.47435,2.25694,1.13285,2.3803033333333334,1.97388,2.123995,1.859945,4.78066,0.7338928571428571,4.122785,4.66309,1.9348266666666667,3.0682766666666663,5.03125,3.493275,2.989515,4.32938,5.4432,9.754461000000001,2.730586666666667,3.245703333333333,1.679542,1.6627599999999998,1.1813,1.3558266666666665,2.977983333333333,2.4548733333333335,2.9422566666666667,4.263989102564103,1.495275,2.5712733333333335,5.62065,5.6042,3.94616,3.485525,2.97218,2.56098,2.15233,2.054085,1.7162233333333334,2.17442,3.41385,3.6999,4.976385,5.23045,4.19227,5.516724583333334,3.552465,2.48788,6.46900125,3.81952,7.951544999999999,4.7482725,4.7482725,5.4420866666666665,1.6184766666666668,1.339965,1.6935166666666666,0.715972,5.0635,4.162166666666667,3.4416775,3.4416775,1.8677160000000002,4.64528,4.44565,4.868195,4.463115,2.81694,2.66483,3.86568,3.0735499999999996,5.034225,3.93733,0.8518227272727273,5.65375,5.20665,4.770615,5.02855,3.026475,5.51555,4.40219,0.8707076923076923,4.958025,7.102693333333333,4.186115,5.19855,6.01865,3.414105,2.593445,4.001685,6.2778,2.1759975,5.667,1.951965,4.479545,2.697293333333333,1.9130325,0.9017350000000001,3.558,5.7299,3.209145,4.348915,1.9835266666666669,3.56633,7.914540000000001,3.80617,4.259625,2.562445,2.71439,0.8677889999999999,5.0443,1.5395233333333334,3.65064,3.65064,4.196765,2.2708033333333333,3.1629166666666664,4.65468,1.9033375,3.3001233333333335,3.465666666666667,3.4099,2.815355,3.929635,2.830455,1.8881375,3.626533333333333,2.0648875,2.8276233333333334,2.041726666666667,3.1328266666666664,2.8426766666666663,1.4484285714285714,1.4838933333333333,0.37113166666666664,1.2874166666666667,0.37113166666666664,0.37113166666666664,1.4838933333333333,0.37113166666666664,3.3922000000000003,2.7905379999999997,2.7905379999999997,2.7971466666666664,5.51965,4.68834,4.519455,5.45325,5.03635,3.42505,4.506875,4.457225,2.1906675,2.464388666666667,2.7304600000000003,0.7586590909090909,5.601,3.2024233333333334,3.02242,5.4111,3.70313,5.41865,3.322585,2.6552599999999997,2.977635,3.300525,2.44903,2.7838833333333333,2.0008833333333333,5.73945,0.8452544444444444,4.05086,1.1996442857142857,3.616485,2.573586666666667,3.15542,4.091145,4.20825,3.9513,4.875255,4.098645,4.174145,4.348835,4.237665,2.55835,2.72545,3.5945666666666667,4.174185,3.97499,5.5519,2.64497,3.373605,3.0169766666666664,3.435545,3.876435,4.43115,4.185715,68.80112737712288,2.6852125,4.188405,16.58953,4.04583,3.1209566666666664,2.2067166666666664,2.00588,2.267113333333333,4.7360275000000005,3.1479233333333334,4.575225,6.8963,3.23948,7.573343333333333,5.316,2.364275,3.24406,3.81548,3.420045,1.834088,1.161015,4.52497,2.931215,5.99629,3.648525,2.3750766666666667,3.42499,3.89534,4.51138,3.30737,5.649015,4.590835,3.90491,3.733695,2.553175,3.69711,6.1868,2.541305,4.155515,4.64388,1.18018,2.816145,5.395645,3.582545,3.39889,3.619055,2.693875,4.27471,3.1174,3.296005,3.86493,4.49154,3.12921,2.853815,4.469365,9.071865,3.2586733333333338,4.08707,6.33852,3.20686,2.595435,4.095395625,2.154456666666667,2.8994933333333335,3.080388,3.360405,3.18202,4.076395,3.36661,3.25361,4.07322,3.7763,4.21502,4.08421,3.54361,3.72483,2.741546666666667,2.741546666666667,6.667668333333333,1.81059,3.341995,3.296355,2.40536,4.34289,4.166285,3.08037,3.159415,5.8615,6.9106625,0.7373463636363637,5.82725,2.564795,2.9189900000000004,2.7094766666666668,5.1834,2.7562266666666666,2.0095475,1.18107375,2.051732121212121,4.118525,5.18565,3.86748,6.39925,4.909435,6.0182,2.31486,1.7448866666666667,5.02265,3.18173,3.1393566666666666,2.13042,1.1185783333333335,2.9045,3.3732333333333333,1.648772,2.4451666666666667,2.4227262857142855,3.553548379120879,2.744495,5.01035,3.37997,1.37593,5.10265,3.56785,4.99339,4.940515,5.0094,4.58785,2.3152399999999997,1.4738433333333332,0.64311,1.53392,3.50343,2.50081,3.4817566666666666,1.3756866666666667,2.529755,2.27534,3.7204,3.52848,4.150235,3.9815183333333337,1.594735,1.3626925,1.906245,2.0076675,1.4197225,2.739325,6.871162583333334,4.83794,4.262865,2.99074,7.263615,5.2008,3.14694,3.047035,3.354605,2.65274,3.794065,2.2824266666666664,7.35812,0.8916116666666666,3.358885,6.6403,3.99029,4.807805,5.653,1.4669433333333333,3.295783333333333,2.943713333333333,2.969473333333333,1.6647875,4.06474,8.52692,3.53442,4.39922,4.09543,3.66062,4.64197,0.8903416666666667,2.763146666666667,5.5237,6.523036666666667,4.745225,5.1447,2.92558,3.8140666666666667,2.9821000000000004,5.4208,4.974765,3.7876793571428573,3.7876793571428573,0.6275528571428571,3.3070799999999996,0.904594,0.73963,1.764795,3.7410333333333337,4.4433,5.914114285714286,2.8175166666666667,3.5099342857142855,3.4431109523809527,3.09666,3.33205,4.543266666666667,3.2145591666666666,1.7407775,1.7407775,3.97468,2.97421,2.7446633333333335,3.96077,3.4781,0.7291255555555556,3.295856666666667,2.4758633333333333,2.6823,3.04815,2.534225,2.3938900000000003,3.06099,3.145073333333333,0.856202,2.81847,6.316295952380952,2.19954,7.685831666666666,1.56707,1.56707,3.3188708333333334,3.3057733333333332,3.3920333333333335,3.0388633333333335,1.692176,1.326587142857143,3.2264633333333332,3.4517333333333333,1.4972583333333331,1.41109,2.7880633333333336,2.895796,2.72439,1.892105,2.1086025,2.78147,2.094345,2.690625,3.33712,1.55562,3.5589,3.18232,7.21828,4.1965,1.687345,3.457795,2.62998,2.117645,3.942565,2.5510733333333335,2.67696,6.8388925,0.8021615384615385,0.5385208333333333,4.944785,1.523878,1.523878,3.778205,2.4058225,4.69948,3.479965,1.3036266666666667,2.3044193333333336,2.84206,2.3207660000000003,5.11275,3.40607,2.7233866666666664,2.2933133333333333,1.5644928571428571,1.5644928571428571,2.48808,3.81561,3.8463333333333334,6.18995,3.10096,4.80315,4.28721,6.6275,4.398025,2.57197,2.78393,2.5989566666666666,2.6508933333333333,0.7270244444444445,0.7270244444444445,0.7270244444444445,2.951285,4.19631,3.87064,0.8180725,0.8180725,5.2471,5.8772,6.50366,22.40838611111111,11.7375,8.96983,3.225355,5.63265,2.25723,4.383635,2.4567033333333335,3.20661,4.120433333333334,5.53364,2.034695,1.97181,6.31826,2.1039000000000003,2.1039000000000003,6.40955,3.28448,4.26923,2.1718675,5.075948666666667,5.06005,3.720205,5.0613,3.740305,1.0978066666666666,5.8844,9.21708,1.0978066666666666,2.1718675,2.1275033333333333,0.765544,0.765544,1.717644,2.2433,1.717644,4.681535,5.36995,6.1572,8.29746,2.1718675,11.395708166666665,5.91495,5.7234,2.25723,3.28617,4.399635,8.88414,3.142389166666667,3.69473,5.7515,3.26694,4.545975,6.14825,4.41747,4.898835,5.04185,2.6304,5.1775,3.44182,4.716505,4.553955,0.7963,1.576072,3.23263,5.28465,4.85091,2.8276466666666664,1.8790825,4.00233,4.848255,5.8394,5.3882,5.3069,4.35648,3.12446,4.21718,3.64773,2.070175,4.910475,2.034455,2.67332,3.669965,1.9354433333333334,3.842625,4.32873,3.74619,3.4964233333333334,3.10198,6.843859999999999,0.9635666666666667,3.44574,3.54171,1.1939685714285715,5.428656,1.5810816666666667,1.56722,2.62819,2.857558,3.03383,2.8650366666666667,1.9183875,0.7475272727272727,2.2607133333333334,2.39026,3.861615,0.7737538461538461,5.230438333333334,1.6853733333333334,1.1297739999999998,3.5405333333333338,1.1297739999999998,3.95547,0.8631454545454545,4.489475,3.18853,1.88554,4.101685,3.6596275,3.6596275,4.915145,2.525325,3.21908,2.613593333333333,1.625938,3.74974,3.772875,1.9921300000000002,0.7545341666666667,7.248035512820513,2.669195,3.68066,4.22955,7.51272,2.62475,4.101195,3.76927,3.153985,3.776685,6.07265,6.5590875,4.62328,4.981915,5.4555,3.08193,4.559325,4.273905,4.50555,1.1183222222222222,0.5868285714285715,3.0784,3.409133333333333,2.89625,5.6353,3.872675,4.31625,4.706495,4.95745,4.15211,4.759215,1.20061,2.175665,9.14425,2.4190633333333333,1.9046066666666668,3.962262380952381,11.601753373015873,1.5265425,5.45295,6.05325,4.8999,3.3333999999999997,2.3478133333333333,3.2027,4.011555,1.14272,3.3044366666666662,3.593085,0.3503989473684211,2.0648833333333334,4.692685,4.405715,2.181945,4.025685,3.56985,5.044135833333334,1.26972,0.59365,3.7744158333333333,1.1706371428571427,1.06846375,1.06846375,1.06846375,1.06846375,1.4439283333333333,2.723043333333333,2.3030500000000003,3.299963333333333,5.9908,3.4463000000000004,5.3011,3.64484,4.301865,3.57005,3.954155,1.4522899999999999,7.2247699999999995,2.11847,5.3756,5.401156666666667,4.82435,5.013225,3.6584333333333334,2.43084,2.7306933333333334,3.335775,1.2097466666666665,4.758348333333334,2.6396133333333336,5.00305,3.03191,2.4973366666666665,3.796785,3.313635,2.85892,2.5591066666666666,2.8044233333333337,1.4772825,0.3929988888888889,4.712515,3.498695,4.14832,3.33825,4.19716,5.9015,4.63668,0.5285076923076922,3.184272,7.462892,2.00528,2.27334,5.682613333333333,5.19505,2.8936233333333337,5.20275,5.19515,4.1211,4.4967,4.282555,5.10095,5.1093,5.0453,3.56901,5.5105145,1.5504120000000001,1.5275466666666666,4.147995,4.03185,4.326925,3.165055,5.3067,5.0446,3.78802,3.38884,15.826916915199345,1.2897000963081862,1.3062125,2.1113588636363634,0.53719875,0.5688106666666666,1.5729625,0.32193823529411764,1.32577,3.0220033333333336,1.495906,0.9846333333333334,1.0235758333333334,0.4527658333333333,1.0235758333333334,1.0235758333333334,0.4527658333333333,0.8561538461538463,0.7270142857142857,2.7911,3.0450666666666666,3.99582,5.0669,2.8141599999999998,2.71345,4.36635,5.1697,5.24155,3.6562,4.335035,0.7221000000000001,2.6630100000000003,8.695040833333332,4.338505,6.803711666666667,2.789805,4.127675,2.32983,4.98496,4.93429,5.5011,4.21132,3.23124,0.98007,4.05991,5.12525,1.2479419999999999,1.405508,1.6202066666666666,2.3758766666666666,2.449003333333333,4.668455,5.41785,2.2860325,2.2860325,3.586415277777778,6.42596,2.07124,0.6432281818181819,0.8314942857142856,2.1233566666666666,3.5057666666666667,1.0065471428571429,1.0065471428571429,1.0065471428571429,0.36969846153846153,1.04603,3.0996,6.3129,3.8800666666666666,4.083955,5.41865,1.02604,3.5159000000000002,3.1773566666666664,3.9781,5.74855,2.6746666666666665,7.539883333333334,5.31485,1.1460555555555556,3.8018666666666667,1.9390640000000001,2.44416,2.2574166666666664,7.025175000000001,3.441266666666667,4.53267,2.2968325,4.35627,4.309375,4.683375,0.44430722222222224,2.06204,1.3447533333333332,2.26924,4.442009333333333,2.13539,2.74495,2.1337766666666664,2.4272933333333335,2.4243566666666667,2.66864,2.8241566666666666,3.019966666666667,1.780406,2.1487133333333333,2.57468,3.2447533333333336,2.5985633333333333,2.1067825,1.71776,1.82805,1.74361,3.3555,2.2205566666666665,2.9555566666666664,2.35835,2.4506433333333333,3.17327,0.8540944444444444,0.8540944444444444,0.8540944444444444,2.6808633333333334,2.59953,3.00241,3.1559666666666666,2.7168033333333335,1.91511,4.122715,3.591961666666667,1.3830916666666668,2.6855766666666665,2.8203533333333333,3.69937,1.6278714285714284,7.042866666666667,4.82523,3.300765,3.94912,3.628455,1.45538,0.6898514285714287,2.95577,3.930575,3.69937,4.749415,4.361625,4.790205,2.980033333333333,3.65271,4.27473,0.752849,2.730965,3.285005,4.963846666666667,4.523885,3.524385,3.22871,2.41983,2.363696666666667,2.535136666666667,0.6307058333333333,5.334187916666667,2.64265,4.021385,2.7740466666666665,3.82059,2.7250533333333333,2.4281566666666667,3.283536333333333,3.283536333333333,2.54843,2.02596,2.75738,2.0303533333333332,3.87373,1.4593120000000002,2.57793,3.85843,4.044475,3.939815,5.352,4.49666,2.5225,2.14692,3.267275,3.156,2.755855,5.14185,3.074505,0.9450271428571428,0.9450271428571428,4.46077,3.7353760000000005,0.9970060000000001,4.64663,0.9970060000000001,4.008925,4.380295,5.15445,3.35431,3.49199,6.3680175,4.369615,6.3665,0.909607142857143,0.909607142857143,2.14434,4.823728333333333,1.5596033333333335,3.264125,3.70841,1.1163157142857143,4.27754,4.31816,5.723825,5.723825,1.0961316666666667,5.89725,5.37035,5.4076,6.2021,2.04911,2.04911,7.20135,1.0095181818181818,7.28075,1.9077525,6.4224125,2.619715,2.51653,3.42241,2.3594,2.171953333333333,2.4724166666666667,3.0479000000000003,2.6246069047619045,6.52959,2.0231000000000003,5.34665,3.0166633333333333,2.70467,1.78548,2.08562,3.30093,3.512845,3.36776,2.67675,2.13777,2.263845,2.636985,1.14067,3.19689,2.23756,3.097745,2.2159595,2.2159595,2.918075,1.9403,3.741765,3.43764,5.28645,7.616783333333334,4.36146,3.501555,6.514059166666667,2.5812,3.2422033333333333,2.16652,1.5572285714285716,1.7513075,4.181965,1.6159483333333335,0.508690625,0.61769,4.1352,4.40346,2.796865,1.005791111111111,2.875285,2.52239,5.2943,1.891404,2.05352,1.1538,4.71338,2.67779,4.385515,0.7575580000000001,4.23194375,4.67338,4.1071,4.36201,3.340055,3.791805,2.888643333333333,5.5639,3.6499,2.3945666666666665,2.58001,6.292358333333333,7.0224899999999995,0.72824,4.83401,4.38509,5.1752,3.6268666666666665,3.7621333333333333,2.758075,3.3524333333333334,4.011533333333333,6.4630125,2.895796,2.5404925,3.772595,4.10898,2.27587,2.69285,8.52654,4.500335,2.0160833333333334,4.6597,4.63973,1.799736,3.854685,1.3894625,1.7160571428571427,4.701125,4.187265,6.138,3.3531999999999997,4.448145,5.04835,6.85765,4.41666,5.4188,4.15089,5.6224,4.525045,4.517235,1.1287750769230769,1.1287750769230769,7.7439,0.8387325,2.037085773809524,0.8387325,0.6916116666666667,0.35729666666666665,2.7286974404761906,2.318855,0.47492285714285715,2.037085773809524,1.9127,3.12298,2.2537745833333336,3.427815,4.59531,7.580571666666668,1.995145,1.988125,2.14873,5.03915,5.5338,2.05126,1.6256375,1.233655,2.8592925,4.272825,2.59207,4.33751,6.3346525,0.4595172222222222,3.985665,0.794372,3.0601033333333336,2.504975,3.712795,1.352375,4.67778,4.9081225,4.70901,3.074085,3.97261,5.3661125,1.7180975,3.49014,0.6721753846153846,2.71192,2.52447,1.189478,3.0649566666666668,2.479833333333333,2.5428366666666666,4.373175,8.19434,3.184698484848485,3.687685,3.49338,6.89821,5.376224166666667,3.26037,4.037705,3.425915,6.5578,5.17865,6.10425,5.0844,4.531485,5.89415,3.8213333333333335,1.66479,1.8030966666666668,2.797553333333333,3.928475,2.50021,0.2675410810810811,0.2675410810810811,0.2675410810810811,30.652416785714287,0.2675410810810811,2.708003581081081,0.2675410810810811,0.2675410810810811,0.2675410810810811,3.4585410810810813,4.558485,0.2675410810810811,0.2675410810810811,0.2675410810810811,0.2675410810810811,0.2675410810810811,3.4472,5.00859,3.09576,0.34944615384615385,0.34944615384615385,4.354668,4.338333416666666,4.193815416666666,3.3856645277777777,4.003047619047619,7.9468000000000005,11.33957502097902,6.737363333333333,8.241146666666667,7.405545392857143,2.9354266666666664,6.4355842857142855,4.274863333333333,4.5926076602564105,0.34944615384615385,7.687159666666667,6.7476304761904755,6.804173333333333,2.878875,9.059756392857143,15.755719226190477,18.609788887362637,56.78877527618786,119.44368177758925,1.3574233333333332,3.3539999999999996,3.164525,4.0207253500643505,0.34944615384615385,1.734673076923077,7.937313541666667,15.503741392857142,20.357259444444445,49.06806744319131,13.695265226190477,2.853325,0.32672241379310346,0.32672241379310346,4.642243333333333,2.826356666666667,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,0.32672241379310346,9.05478,0.32672241379310346,0.32672241379310346,0.32672241379310346,2.89797,2.11117,3.924055,3.713065,4.0815425,5.735,2.3667975,4.54856,4.904525,3.26125,1.80014,3.609245,1.0504666666666667,2.2825725,2.1718699999999997,5.192446666666667,5.990553333333333,2.75652,5.871896388888889,0.4174861111111111,0.5022633333333333,2.4682166666666667,3.05686,2.948195,4.56746,3.288256666666667,7.6010125,3.687505,3.08631,3.39104,4.075195,3.646315,3.188675,5.2533,2.57444,0.4565623076923077,0.9159545454545455,4.12124,1.724285,3.788725,3.649015,4.49291,3.41149,2.573525,2.707915,0.586784,0.8119460000000001,4.21287,2.61581,4.346755,3.87206,3.7624933333333335,2.69003,2.92321,4.732065,4.68337,3.17011,0.7980063636363636,2.6771066666666665,4.29001,2.215545,0.92387,1.6373233333333335,3.632645,5.6835,1.751675,3.136785,3.964505,4.58668,2.20059,2.424306666666667,2.310285,4.029025,2.353905,3.76773,0.6916842857142856,2.613916666666667,3.24982,1.753715,6.372729999999999,4.380205,4.461545,4.958635,2.88392,1.864635,0.5314590909090909,4.79436,4.223295,5.3836,2.60886,5.95995,3.778015,2.821445,1.90242,1.2790942857142855,5.084,1.929365,2.72815,8.640785000000001,4.316645,5.26395,3.03872,0.9517344444444444,3.08609,1.22283,3.436485,6.45025,5.2457,5.15605,3.77466,5.1926,4.50675,1.8118375,1.9001966666666668,5.247,2.8962800000000004,3.4839333333333333,2.3712225,4.835865,4.461485,1.474315,3.6461,2.729815,2.734945,3.99481,9.36531,4.539865,1.7095125,4.61851,6.34348,4.6549375,3.99413,3.719545,3.972065,5.21805,8.112525000000002,2.56301,3.110975,4.140905,4.344685,3.107075,3.149655,4.526795,4.03271,3.60495,4.262969333333333,18.477840333333333,2.86469,2.19312,3.26247,5.726790333333334,1.0021125,4.698465,1.9395833333333334,5.0018,1.4792100000000001,4.197035,4.19662,3.898995,1.023325,4.56799,4.662695,1.6204025,4.805100984848485,4.24738,1.0809428571428572,3.584055,2.067575,2.292835,1.48519,4.222705,3.78843,4.223435,3.64817,2.9828166666666664,4.534315,8.127413333333333,4.624675,4.92476,5.2067,3.304793333333333,4.094125,5.2936,6.7093490000000005,0.9241699999999999,0.9241699999999999,4.67769,4.458365,2.3117666666666667,1.4883199999999999,7.465764999999999,4.398725,3.61524,3.639625,4.53593,4.661295,3.516495,3.829785,5.837913,4.169486666666667,4.77448,5.1398,1.436785714285714,2.771025,4.67003,5.17695,3.2536525000000003,0.22087305555555556,1.965285,2.2071825,2.6234633333333335,2.08745,0.9773677777777778,1.4532475,1.4182275,2.4928033333333333,0.6257333333333333,1.348302857142857,1.9825625,3.81547,3.7861666666666665,3.5619,2.7083866666666663,3.0453266666666665,2.8161133333333335,0.654458,0.974285,2.842995,4.604835,4.01285,3.46388,3.92809,4.50912,4.871725,2.12594,4.434495,5.10785,4.618055,6.4910250000000005,4.15254,0.4719870588235294,5.9115,4.42875,4.522275,5.49925,3.273945,1.980162,4.42143,4.013295,2.76987,5.295755,4.449665,1.3964400000000001,5.295755,4.01136,7.105235,4.344335,1.212588888888889,4.01597,5.1056,4.28958,2.7969266666666663,5.37665,1.5012775,1.9943175,4.39455,3.449895,0.8350877777777778,4.816435,4.75188,3.577035,4.231555,3.264483333333333,3.5297,1.9573519999999998,1.943775,3.14846,3.646055,3.701866666666667,2.429606666666667,2.731825,2.1034983333333335,5.40305,1.6451714285714285,0.8434833333333334,7.0199,4.2574,1.459196,2.72876,2.27748,3.2906600000000004,6.331735,2.4042094444444446,0.838307,2.592515,4.72922,2.41994,4.23403,5.7133,5.86875,4.148245,4.205375,4.75426,2.2993799999999998,2.20504,1.9160533333333334,2.1331966666666666,1.8795925,2.7435333333333336,2.2873,1.615225,2.729085,3.14571,3.655755,6.4336,5.8343,4.244375,4.851435,3.973435,4.122455,4.51698,0.923265,2.70107,5.09025,1.1506180000000001,0.73534,4.465615,3.711335,2.6682433333333333,3.25956375,6.647865,5.04145,0.9991049999999999,1.2344985714285712,0.6765511111111111,4.099900833333333,2.236823333333333,2.7668433333333335,1.236317142857143,3.1012566666666666,2.7134199999999997,5.6914,5.4817,4.474135,5.39075,3.581475,1.3060783333333335,3.619495,1.74435,3.592835,4.093385,4.28716,2.7486566666666667,3.168063333333333,2.7950966666666663,5.933,4.10942,3.438535,2.618625,8.394775,10.6244175,4.182,1.2491757142857143,5.49505,4.596405,5.3573,4.482295,4.760145,3.95445,3.670365,4.15051,3.696649375,5.59504,3.94658,3.855115,4.55601,1.952458,4.93176,5.7024,4.767245,3.182675,3.2366575,6.897335,0.7076858333333332,2.685416666666667,2.712706666666667,2.320316666666667,4.918725,3.41321,1.3022733333333334,4.510525,3.3891333333333336,3.710345,4.90074,3.702068333333333,6.903275,3.2029666666666667,2.9194833333333334,3.2270566666666665,2.9518533333333337,4.11207,2.3072433333333335,2.26293,3.1624700000000003,4.0453,3.534105,1.924305,1.5245275,3.359237142857143,3.1861285,1.0293655555555556,2.681521666666667,2.681521666666667,1.2162625,5.69255,3.254925,3.434265,3.97408,3.53098,3.417675,3.396045,4.232505,3.11603,2.21862,0.5769586666666666,3.376595,6.02234,3.189565,3.68266,3.167895,4.06676,4.286995,3.768735,2.722845,3.893525,3.7252,3.10383,3.30619,3.54898,2.59152,4.01935,4.058055,8.8744,3.662445,3.59025,3.156805,4.067285,4.00114,3.614735,2.475655,3.70287,2.6151475,2.905705,3.60576,3.20455,3.97368,1.7321066666666667,1.7321066666666667,2.220985,3.08762,3.44097,1.589844,2.42936,3.33286,1.8473739999999998,2.921215,1.589844,3.93457,2.995165,3.92869375,2.94641,3.573455,2.255685,3.86639,3.92801,3.859555,4.863075,4.38102,4.14458,4.441335,3.58678,3.115635,3.12744,2.96834,3.87893,2.6409833333333332,3.72301,4.90192,4.1055,3.787235,0.35408826086956524,3.60064,0.44593666666666665,3.713415,3.71571,2.928505,3.77373,3.99385,5.9684550000000005,3.126335,2.54083,2.2570900000000003,2.7718633333333336,0.694868,6.198581666666667,3.137165,3.58083,4.35905,2.01071,2.47769,3.31999,3.17987,6.76399,4.306595,5.1465,4.449245,4.743715,4.53889,3.7546,1.4440350000000002,1.685374,3.900465,4.47423,5.3406825,2.37399,4.58418,1.7953,3.467333333333333,3.11724,1.9482609523809522,4.01584,4.68534,3.655366666666667,3.7542000000000004,3.3668,4.55548,5.2745,3.4253,4.30075,4.423765,4.93939,4.746135,4.421655,3.789765,3.652355,4.67971,2.624625,3.2446333333333333,3.2446333333333333,4.01946,2.638456666666667,3.974215,2.633156666666667,4.41891,3.2782733333333334,3.44001,1.769695,1.7769166666666667,1.1941366666666666,1.1941366666666666,1.7764700000000002,3.5561333333333334,1.66191,3.180336666666667,4.641035,5.4095475,3.3956666666666666,4.99162,6.00545,2.632685,2.777585,3.053176666666667,1.8239433333333332,4.34102,4.36371,6.6626175,1.7448633333333332,5.7894,5.60205,3.5910666666666664,3.315995,4.2266,6.44975,1.9256233333333332,2.5478,3.985125,0.4916871428571428,4.22824,4.05944,4.11227,3.97329,3.414055,1.442,1.8169720000000003,3.88387,3.809165,2.38844,4.01895,4.77144,4.60855,1.2221425,3.57235,3.98625,3.74535,4.993215,2.75616,5.095983333333334,3.672075,1.534884,3.63965,1.2736016666666667,2.677103333333333,7.8930066666666665,3.260945,0.7552854545454545,3.96461,4.478775,4.23799,2.084255,2.084255,5.575375,5.7567,2.987295,0.49671666666666664,2.03685,4.288031666666667,4.563535,4.56504,1.8131979999999999,2.9933266666666665,3.59419,1.2723826973684211,1.2723826973684211,1.2723826973684211,0.7813606140350877,1.3204189473684211,0.5390583333333333,1.2723826973684211,0.7813606140350877,0.28807894736842105,0.8271372807017543,0.28807894736842105,0.4932816666666667,0.4932816666666667,0.4932816666666667,0.4932816666666667,1.1701834999999998,1.21624625,2.36162,2.32343,1.059395,6.344188333333333,2.662533333333333,6.406808333333333,2.4810033333333332,4.167205,2.88308,3.22892,2.7911,4.817105,2.742766666666667,4.266745,4.053405,4.755755,2.3461525,3.93919,4.99141,4.06855,3.26985,4.89682,3.360165,4.459435,5.12015,4.64235,5.7399,5.16715,1.192895,3.736795,4.079,3.1997,15.177145,4.85527,5.28325,2.7355199999999997,7.32763,3.908645,3.94274,5.07045,3.559375,1.034465,2.4492,4.136725,4.41648,4.11797,3.40569,4.03442,2.8198666666666665,3.87685,4.782885,4.260985,6.908851666666667,8.4274,1.6463142857142858,3.638755,4.127805,4.05769,3.71457,3.64578,7.06577,2.632425,2.951615,2.500555,3.984515,4.262595,4.502895,2.43087,1.76951,0.854228,5.1738,3.959515,3.873065,4.061825,3.63032,4.831095,4.319355,5.71025,4.8211,4.067375,5.4873,3.8747,3.200765,3.24595,3.34655,1.777495,4.1028,5.01605,5.62115,5.330948333333334,5.330948333333334,2.43006,1.777495,2.275715,2.85574,0.6873933333333334,1.4933958333333335,0.8060025,1.4398875,2.74974,0.357174,3.241745,4.167875,1.4398875,3.1898530000000003,11.229085,6.419395,2.2571483333333333,1.01373,1.7079533333333332,4.53958,4.34992,6.064664952380952,1.956745,2.164555,3.867,3.676165,4.7049,1.9318133333333334,5.09065,3.6666666666666665,3.458845,5.3822,7.027431999999999,4.053255,2.4250175,2.779033333333333,1.8529366666666667,4.251925,5.188045,1.678108,5.72435,4.409655,6.368455000000001,0.530868,4.824573333333333,4.367605,4.34013,3.018155,2.67016,7.1582,8.294816666666668,6.7389,2.073166666666667,2.073166666666667,2.073166666666667,5.72355,5.2346,6.26535,2.958955,2.759005,2.489884736842105,5.7208,3.63644,2.5594225,1.864425,2.5594225,6.9600225,4.49122,5.8519571428571435,6.78653,5.8519571428571435,5.8519571428571435,4.387027142857143,8.00125,7.395064,3.394124,3.394124,3.08615,6.60315,2.78925,3.561475,4.964157083333333,4.964157083333333,4.964157083333333,7.69922,3.6963375000000003,3.34041,3.59453,3.6090975,1.04262375,7.129083333333333,2.6378633333333332,5.1902,3.290105,13.7059,4.39728,6.888514166666667,6.97295,3.1666350000000003,4.714775,1.5032116666666668,6.888514166666667,3.45255,1.8626975,1.8626975,3.271715,5.1678975000000005,1.7792975,4.688518333333334,0.8122400000000001,1.4200483333333331,0.8122400000000001,1.8994275,2.5915375000000003,5.1463,3.90579,1.4200483333333331,6.54065,4.7711025,1.0105675,3.45105,4.32618,3.21245,6.386635,2.360415,4.544545,3.2323,0.930138,3.808905,5.34615,2.117125,3.0520666666666667,4.498876666666667,5.12575,2.711815,4.08021,1.4644077777777778,1.4644077777777778,1.4644077777777778,3.84757,3.155666666666667,3.155666666666667,3.133485,4.79288,2.3965,1.34232,1.34232,4.297265,5.4265275,1.6389875,1.33065,2.806995,1.3663683333333334,2.6970183333333333,0.930138,0.930138,1.7290908333333335,0.930138,3.1626191666666665,0.79956,3.1626191666666665,5.963310833333334,3.242095,2.3673466666666667,1.7741141666666667,0.6198616666666666,2.393975833333333,3.580065,2.393975833333333,0.9493266666666665,3.389515,3.838475,3.870995,3.361295,3.945425,4.86402,2.0003366666666667,0.8816952777777778,0.4715275,0.8816952777777778,0.4101677777777778,0.8816952777777778,0.8816952777777778,4.878645,4.773495,4.41776,3.61539,4.683795,4.70887,5.2433,4.066165,4.076335,1.2609,3.0103633333333337,4.181905833333333,3.817355,1.34127,2.86182,3.94278,3.855085,4.28345,3.69483,3.748,3.46093,3.09243,4.26569,2.6780500000000003,6.0342,3.61976,4.108235,5.337112142857143,1.2288456428571428,2.2253,3.44424,8.03239,4.6614,4.012405,3.1899200000000003,5.037,8.262834999999999,3.9236,3.149725,3.5305,5.9218,4.12108,5.706,5.4575,5.15855,3.35532,5.405,4.596755,3.32324,7.983219999999999,3.4150666666666667,2.47103,2.114196666666667,4.93058,6.5857,6.3661,5.6965,4.831465,5.4488,5.9582,0.5382507692307692,7.32386,4.59688,4.67828,3.96282,5.14575,4.034905,3.1023666666666667,2.547575,1.3735616666666666,0.5703538461538462,1.865952,2.907783333333333,3.89061,3.65638,4.70517,3.892085,10.82187,3.70107,3.849615,2.691625,0.6642899999999999,5.651606666666666,2.8563833333333335,1.5684633333333335,4.424846666666667,5.896108333333333,3.039725,8.09181,4.922615,3.039918,3.039918,3.039918,4.19988,9.16741,3.52321,2.736775,2.736775,3.334205,9.49042,1.0750725,5.3953,4.520685,4.11512,2.890216666666667,2.1640466666666667,4.481785,3.89435,4.86917,5.9697716666666665,3.817505,2.76509,3.81728,4.11628,3.414998,1.3168125,3.012836666666667,6.02724,3.3132525,4.984425,1.032295,3.9285333333333337,2.5224699999999998,2.56167,1.7699875,1.7341366666666669,2.097663333333333,6.5713,2.04647,4.047685,5.40755,2.0231000000000003,4.961905,3.8298,5.0299,3.23511,2.2562,2.674495,5.79265,4.1612116666666665,4.1612116666666665,1.2210075,1.7952333333333332,2.9172499999999997,4.459714333333333,2.2639296363636365,4.844808,1.6855879999999999,2.6423433333333333,2.1446733333333334,1.74042,1.74042,5.01345,7.650763333333334,1.9304433333333335,3.1863333333333332,2.207605,5.23615,3.034245,0.769868,2.84057,0.769868,2.749025,3.42705,4.68827,6.33705,3.59506,4.67338,5.7522,2.30493,2.27253,2.577706666666667,2.1979533333333334,6.49175,4.64653,4.45714,5.07425,2.662385,4.55408,1.0649575,1.108528,2.2160699999999998,1.4760883333333332,2.5127666666666664,2.778753333333333,2.3238366666666668,3.2923033333333334,2.72949,4.52315,2.5511,2.6573266666666666,2.722296666666667,2.3783066666666666,2.8554733333333338,2.947423333333333,1.93297,2.48049,3.702755,3.83039,3.60278,3.91752,2.8824533333333338,2.3583325,1.8240275,1.2702783333333334,0.2876585,0.16084195652173913,2.0691200000000003,2.16722,0.16084195652173913,4.242182789855073,2.187735,0.16084195652173913,5.919320416666666,2.4038133333333334,6.12146,3.477025,3.528866666666667,2.2987933333333332,2.9025266666666667,2.232735,4.34699,3.3122166666666666,3.3771,0.44488578947368423,4.0595099999999995,2.4683857894736843,2.883845,1.734015,2.545625,3.98054,2.58353,7.744285,4.929365,3.57155,3.82318,6.6243,6.38048,1.6640766666666666,4.033923333333333,2.046875,1.835545,7.5085,7.91893,1.1963866666666667,2.263265,3.6396,2.451765,2.9354,3.153635,2.74233,3.88579,2.484585,3.10766,3.18309,3.208305,7.49422,1.3559700000000001,1.93361,2.94019,3.34423,1.7254766666666665,3.50583,1.370955,3.766055,3.40778,6.80173,3.30515,8.723392500000001,3.594635,1.7624939999999998,1.7354166666666666,3.33545,5.50389,1.6247075,1.4793566666666667,5.49728,3.467285,4.073935,2.70872,2.0799366666666668,3.08539,10.47666,4.96939,6.1996,3.46268,2.3327,2.235075,2.48866,2.88922,3.223455,1.8106,1.5736366666666666,2.5412966666666668,3.638675,1.77192,3.2485,2.617045,3.660405,3.641225,3.223325,1.2588633333333334,2.48047,1.0256399999999999,1.341958,1.49968,3.157795,3.64115,3.69992,2.642365,3.7882,3.91715,2.868185,1.534896,3.452425,3.4690450000000004,3.133265,1.76756,2.846405,3.492965,1.3697125,3.666675,1.65066,3.921955,3.926695,5.16975,2.682585,3.98722,1.738845,3.741845,4.291955,1.72454,1.2030814285714284,4.0124,2.49958,4.93172,4.18343,2.930555,4.64776,4.35357,1.9852999999999998,5.27495,5.4418575,6.81965,4.679465,6.771183333333333,3.78582,1.6132683333333333,2.6408633333333333,4.711405,4.9877,2.64393,7.071484,1.3138928571428572,3.4738,2.172885,1.7242640000000002,2.3987166666666666,2.72787,0.38897642857142856,2.665973333333333,2.90774,3.65971,2.44679,3.1376233333333334,2.28641,2.5152033333333335,2.2093475,8.955055,4.614655,1.45012,5.01775,2.3700976739130435,0.771640923076923,2.9187266666666667,7.79458,1.9216640000000003,4.64635625,6.669066666666667,1.82246,1.52217,1.4798425,4.552495,3.197005,4.71561,4.1427375,2.5051833333333335,3.616805,0.949742,2.738745333333333,3.914295,4.039005,5.10885,2.722795,4.56677,4.46131,4.884475,5.3496,6.32575,4.480095,4.68768,4.53271,1.580876,1.9371475,2.942605,3.85202,1.1772555555555555,4.47299,2.1408733333333334,3.4827,4.246755,3.2986566666666666,2.6530766666666667,1.52971,3.1425533333333333,2.729491388888889,2.690823333333333,2.87049,1.9138933333333332,1.8445925,2.305065,3.81404,4.42669,4.219225,4.267865,3.521375,2.308375,3.117655,5.1944,3.5352,4.60042,4.667545,2.36315,4.379685,1.67802,4.269185,5.164880833333333,6.2576036904761905,5.01325,4.643055,6.1431,3.444266666666667,4.041903333333333,4.27786,3.29197,3.9786840000000003,4.559655,1.4315425,3.35923,1.605105,2.163735,4.111555,5.59682,3.9786840000000003,4.19,3.722735,1.5596033333333335,3.99341,2.10909,2.5510733333333335,2.19933,2.774745,1.6016245454545452,1.6016245454545452,1.6016245454545452,0.5027645454545454,0.7892611111111111,2.190946111111111,1.05485,3.628025,1.2332233333333333,4.322415,5.43415,4.90664,3.166005,4.07831,3.05648,5.0583,1.88965,3.024425,2.312505,3.16974,5.879194,4.18644,5.3266,4.38149,1.0452425,2.142365,1.27753,3.70982,3.98541,4.29083,4.94244,4.75735,4.53622,5.05985,3.7059,1.822045,1.275835,5.37205,0.9644311111111112,1.2457266666666666,2.7419633333333335,8.29265,3.253525,3.91599,3.075455,5.5875275,1.6983125,0.9748716666666667,1.48254,3.12254,3.589965,3.82538,3.69501,1.92061,6.488695,3.04165,0.95599375,5.1308,3.0494800000000004,2.8757566666666663,2.34752,3.5513333333333335,5.6474475,3.061443333333333,2.9734966666666662,3.7298333333333336,2.6161233333333334,2.969516666666667,2.91321,2.815765,1.9747525,4.71326,5.0126,4.79529,1.0412655555555554,0.736895,3.8316666666666666,2.7393733333333334,1.0138875,2.6409858333333336,5.06265,4.306395,7.6853,4.68724,3.8544666666666667,1.7829760000000001,3.48872,3.712845,2.7958433333333335,2.5646871428571427,4.282945,2.884263333333333,5.097570666666667,0.8694044444444444,4.786405,1.8621379999999998,4.51193,4.465055,2.218555,1.0129325,3.02215,0.42215400000000003,3.093435,6.3483,6.58985,2.813898,1.4559760000000002,3.0866466666666668,0.8163577777777777,2.61142,0.8163577777777777,4.008545,4.811915,1.42799,1.71547,5.296928333333334,1.8791833333333334,3.68658,3.585185,4.132985,1.275316,1.6793166666666668,4.03953,4.91158,4.816905,3.080388,2.0894875,2.950525,1.5684525,2.065805,1.7946775,2.0279025,4.05522,1.3784999999999998,1.3784999999999998,3.598405,4.827366666666666,7.914454166666667,5.208306666666666,8.131215000000001,2.30533,4.016535,4.028715,1.6673499999999999,3.6296875,3.978335,3.318395,6.30655,3.00615,2.488685,3.038156666666667,4.14284,1.18527875,4.30369,4.87385,1.4051166666666666,8.501063333333333,2.863035,3.221,3.325453333333334,4.24151,4.03999,4.235113749999999,2.632283333333333,2.802903333333333,1.91749,3.7026,2.661375,2.1965875,7.625172666666667,3.2810400000000004,3.3714666666666666,4.18082,22.815458776556778,0.6910133333333334,2.604435,4.04772,4.764625,8.69452,4.627515,4.130675,4.36285,7.2072666666666665,3.46385,1.6220433333333333,5.207783333333333,3.12082,1.128976,1.128976,1.128976,2.3638174999999997,1.6796375,3.26906,1.5578625,2.90599,1.4669433333333333,2.58464,2.47201,2.97236,1.5578625,3.21114,2.655475,4.2864716666666665,4.7735666666666665,5.7402,0.8460583333333332,3.520305,2.72274,4.952815,4.03369,2.723685,2.172445,1.6722675,1.9745675,1.412318,3.879665,1.56984,4.981605,11.277446333333334,2.797703333333333,2.34223,5.097230833333334,4.2299999999999995,4.382000000000001,6.4887,2.0235,5.376224166666667,4.100315,0.9618766666666666,1.1562400000000002,6.747551,4.18298,2.1017525,3.850255,1.94256,4.79809,5.4996,4.664005,4.20192,1.4886142857142857,4.57451,5.07485,4.854225,6.221364,4.125635,5.6554,4.623695,4.70624,5.15765,3.4058333333333333,4.87313,2.1979625,3.61233,3.59863,4.252145,4.17881,6.00685,4.55062,2.298653333333333,3.4947666666666666,8.78908,4.66064,3.1078666666666668,3.718425,3.77477,4.598905,4.24378,4.84633,7.258473333333333,3.570725,2.5859166666666664,4.255060833333333,2.392485,4.64399,2.907386666666667,6.425365,1.5775,4.24225,4.629675,11.570035,0.4958307142857143,4.361145,4.50247,0.6542978571428572,3.715405,4.259065,4.620205,0.905877,4.948915,4.9744166666666665,2.71817,10.521186666666667,3.3513,2.3782666666666668,3.035015,3.61519,6.15145,0.6419691666666667,3.84927,2.2060925,5.0344,0.6822323076923078,4.227275,5.7566,5.5721,3.58382,6.2794875,4.210685,3.6692475,2.6631,2.8059966666666667,4.308215,4.746535,4.86305,5.19655,5.02925,3.3897666666666666,7.172266666666667,2.8251,3.4945044999999997,2.54425,3.780925,2.6136233333333334,1.4774233333333333,3.1869300000000003,3.147256666666667,2.984336666666667,3.7700333333333336,3.3924,3.250863333333333,2.7109566666666667,5.29805,3.464,3.689055,5.15875,2.78416,1.1347555555555555,3.25929,3.0151533333333336,3.98861,3.2916066666666666,3.292566666666667,4.634656666666666,2.0018366666666667,1.70303,2.9904,3.757195,4.681335,1.10854875,4.597455,3.45129,4.290233333333333,3.2302066666666662,5.136307499999999,4.05758,3.28146,5.2496,1.88654,3.859805,0.6911625,4.457,4.877125,16.388051818181818,3.3800666666666666,1.2932533333333334,3.96932,0.6028028571428571,2.5678,4.45821,1.853565,1.3277400000000001,3.79744,4.601595,3.4183333333333334,0.7220866666666667,2.60891,7.53152,4.07159,5.7214,5.29195,4.527615,2.9447433333333333,3.3891666666666667,3.4055666666666666,6.59033,3.699375,5.33395,2.2291175,0.453105,2.22969,3.154285,2.143035,3.04789,4.68098,3.10139,5.1962,0.7245775,5.18795,3.714505,3.083705,1.0939633333333334,2.7200399999999996,2.0394566666666667,4.883075,4.28541,2.11227,1.6295142857142857,3.991915,4.776285,4.762025,6.442733333333333,2.221173333333333,5.30715,4.709875,4.330765,2.12918,4.42965,6.1864550000000005,5.1316,2.4473,4.80118,3.462715,3.527955,4.064635,4.12615,1.35329,4.84098,2.8330066666666665,2.8541600000000003,5.165756666666667,5.165756666666667,4.7617,1.6368719999999999,4.764435,0.9725,1.9576319999999998,4.792475,2.7068499999999998,1.4457833333333332,3.2623166666666665,0.9928699999999999,4.308066666666667,5.6039,2.874395,4.929985,3.988525,3.87804,5.5760825,3.4812,3.4205,2.924523333333333,2.6326133333333335,2.7768,2.9621833333333334,4.29241,1.5064865934065932,3.104033333333333,4.64241,5.09635,2.3380470833333336,4.308325,4.98382,5.3050049999999995,3.415566666666667,5.36615,5.23815,5.44745,4.852645,4.12424,3.48549,3.72377,4.70678,5.7247,4.754715,5.2864,4.417315,4.62489,0.6789525,5.1257,4.626535,4.15215,7.290027500000001,4.03539,4.206635,4.31718,4.651555,3.74547,3.73606,2.16154875,4.4695925,2.11583,1.39485,3.723235,2.0674933333333336,2.4644333333333335,3.8297486666666667,3.0841933333333333,3.411895,1.07762,2.0128875,4.39704,3.617465,1.88306,1.88306,3.68568,1.8954799999999998,3.1295533333333334,4.661735,3.58091,3.75704,1.54965,2.010055,3.672293333333333,1.844545,4.153295,4.421695,4.433125,4.348555,7.960613333333333,2.76215,3.88743,5.0167,4.276685,2.97738,4.426615,4.32691,4.49341,2.096075,2.715006666666667,4.75174,4.20544,3.72455,3.90568,1.587045,3.700745,4.585115,4.60137,4.14735,3.85825,3.85825,3.3504500000000004,4.1308,4.44967,4.06531,1.819266,7.826897499999999,3.98629,4.98574,4.331645,4.24167,4.767425,5.00915,3.18125,4.30919,2.909775,5.2321,2.05138,5.054,5.663478888888889,5.3851,0.758247,4.768370833333334,1.12073,5.26175,4.612325,4.72223,4.350555,5.5029,3.568566666666667,3.568566666666667,0.9772270000000001,2.1529025,5.54535,3.58365,3.881385,4.648625,5.0705,3.41853,4.232355,1.3613483333333332,2.95086,1.6307425,1.2174825,4.404562666666666,0.8769450000000001,2.6149533333333332,3.18375,1.2458866666666666,2.3488325,2.66393,1.6156783333333333,6.21624,1.8784,2.58432,4.299145,2.21688,2.8909599999999998,4.505145,4.66125,3.5000666666666667,3.106806666666667,4.1562,1.634226,2.103086666666667,4.08578,0.6518278571428572,2.1572999999999998,2.5217099999999997,3.0837299999999996,2.86457,1.2249914285714285,0.8032991666666667,2.4822933333333332,4.198065,1.2705342857142856,1.9960925,1.3629175,5.969409166666667,2.3642425,4.7579,4.47341,4.51164,4.942985,5.6651,4.242255,4.26843,1.508275,4.098966666666667,1.7740040000000001,2.8010333333333333,1.1693328571428572,4.55813,2.0849625,6.238301,3.596735,3.89532,1.606116,6.755135,4.845085,1.4393233333333333,4.09038,2.997155,3.809265,3.83605,1.9533075,1.9533075,3.3006100000000003,1.7502333333333333,1.7502333333333333,2.12918,2.809393333333333,2.1067825,1.3830916666666668,3.5547,1.07796,3.175926666666667,2.617025,1.9038975,1.5297366666666665,2.2145925,2.36212,0.2773629411764706,2.5436,1.2429516666666667,2.375716666666667,2.1446733333333334,2.5225,1.1056788888888889,1.14067,3.66,3.159736666666667,1.9533075,1.724285,1.9183233333333334,2.5264466666666667,2.469726666666667,1.717622,2.49379,1.15815,3.5945666666666667,2.8831,2.4971566666666667,1.54452,0.86622,2.4923325,0.86622,2.4923325,0.7153025,0.7153025,0.5067277777777778,2.413675,2.563466666666667,0.7153025,2.2357325,2.4794633333333334,2.25713,1.74361,0.8540944444444444,0.7153025,0.7153025,1.6241320000000001,1.6241320000000001,2.05644,1.724285,0.7153025,2.31222,0.46190846153846155,2.8041666666666667,1.9512533333333335,3.5634333333333337,2.7024066666666666,2.7024066666666666,0.38239,0.38239,2.12918,1.919426,2.1646,2.02344,0.38239,3.5235,2.3549625,1.6918440000000001,0.64176875,1.6918440000000001,0.64176875,7.6497,2.483426666666667,3.7441333333333335,2.7759033333333334,3.03483,2.9560033333333333,3.02862,3.5113333333333334,2.553175,1.739145,2.7943700000000002,3.9236,2.3844166666666666,1.6241320000000001,2.219373968253968,2.219373968253968,2.7214566666666666,2.2290725,4.456385,2.3506733333333334,3.4372333333333334,2.7213266666666667,1.586232,2.544525,2.464745,0.8038163636363636,1.80248,3.352715,1.729562,3.3059433333333335,2.6272033333333336,2.71955,3.817,1.6726,3.5374,3.18901,4.071233333333333,1.27685,0.32672241379310346,1.33891,1.33891,1.0677444444444444,3.301,3.9781,2.6318633333333334,2.0840799999999997,2.0840799999999997,2.21852,1.65066,1.03372,1.75976,1.75976,0.7153025,2.12918,2.858686666666667,3.5208666666666666,2.617025,2.1218,2.1218,2.1218,1.1032933333333332,1.5572285714285716,1.5572285714285716,2.4240425,3.1656,2.7726698674242423,4.306655,2.6287833333333332,2.5763933333333333,3.72726,3.822705,7.0749425,3.989245,4.530175,3.800266666666667,13.37534,4.51978,3.601375,0.98041,4.239985,3.280545,2.21736,3.68271,5.54195,8.160699333333334,6.5203,0.4930376470588236,4.28336,2.41414,3.944945,2.46504,4.811515,5.9284,4.06778,8.161895,3.36112,3.940355,3.993525,3.388583636363636,7.9463774358974355,3.1624666666666665,2.69474,3.591445,4.32817,4.893065,4.57897,6.0658270000000005,4.63839,1.3295080000000001,3.147055,0.8687825,4.9941,5.17335,3.212435,4.730185,5.8306,3.58309,5.28565,4.262295,8.651175,3.94991,4.823189,3.4242666666666666,4.97207,2.98033,0.92017,0.92017,3.45041,3.97702,2.10738,2.08309,4.225825,4.193245,4.3663,2.744885,2.59975,2.852355,2.5563933333333333,1.17754625,3.479925,4.50255,8.39994,1.731496,3.105635,3.52428,3.354995,2.8421299999999996,8.20591,4.53258,3.5417,3.019826666666667,3.88674,3.4071,3.0396199999999998,3.0378933333333333,3.50195,3.98574,4.669915,4.36413,0.3858746666666667,1.3752033333333333,2.30886,1.707695,5.0475,3.93329,2.7392966666666667,2.2135975,4.349825,3.91232275,2.434725,2.448665,0.8916029999999999,2.2007275,2.657653333333333,2.657653333333333,5.49985,1.90178,3.0151299999999996,2.33513,2.3749366666666667,1.8058533333333333,2.947195,4.034345,4.461395,4.12469,4.934005,5.08285,2.745215,2.5615,1.807894,5.07155,5.415776666666667,2.44563,2.9812933333333334,2.1447825,2.25914,4.062045,2.6495166666666665,5.08605,3.66261,3.38744,4.4379,2.89245,3.64193,4.45646,2.3304,2.4123433333333333,0.40941714285714287,3.3220566666666667,2.5077633333333336,2.9343,5.72165,4.709455,6.239020833333333,2.1842975,1.5761833333333335,3.015975,5.31925,6.13915,5.02285,3.3523333333333336,2.2451933333333334,3.527705,2.585636666666667,5.1531,2.322086666666667,2.24698,5.41605,4.976565,4.95058,1.7582675,1.952135,1.04753,1.04753,1.1878980000000001,0.90712,0.749412,1.87384,4.354475,11.271159166666667,4.220405,4.40575,4.200835,6.1271925,2.645785,1.62352,3.762694166666667,2.94054,3.85572,2.5439233333333333,2.7310433333333335,3.0457699999999996,3.23284,2.38667,3.3913333333333333,3.5642,3.1199,3.586933333333333,3.3383000000000003,2.9599733333333336,2.79168,3.4293666666666667,2.57267,3.045726666666667,3.4379333333333335,2.9015766666666667,3.4593333333333334,2.20952,5.826803428571428,3.147956666666667,4.506146666666666,3.238096666666667,3.0411466666666667,3.846966666666667,2.8156233333333334,2.75491,3.133153333333333,3.2913866666666665,3.206906666666667,3.4745666666666666,1.886535,2.7993433333333333,2.86178,3.00255,3.00255,3.2272266666666667,3.2990866666666663,2.62338,2.8788933333333335,3.06558,4.395666666666666,2.6865400000000004,2.792975,2.6217966666666666,2.9025,4.418209166666667,4.62794,1.7060333333333333,3.0509,3.717866666666667,3.492502,3.3876666666666666,3.8337,3.6209333333333333,2.8816633333333335,3.365874,1.9771260000000002,2.9301095000000004,3.5696999999999997,3.5375333333333336,2.4754833333333335,2.57328,3.8139333333333334,2.855653333333333,3.183063333333333,2.625275,1.31873,3.3049733333333333,2.54372,2.438266666666667,2.466195,3.509233333333333,3.1898199999999997,2.02344,5.778204000000001,2.5932566666666665,0.8798679999999999,4.260025,1.9817025000000001,1.7393,4.594525,4.0603,3.3217,2.320585,1.63658,3.460045,2.92083,3.4358,0.42975700000000006,2.069955,0.42975700000000006,2.02964,1.63658,2.642745,3.98049,2.3732525,3.697195,3.7715,0.547476,2.9343066666666666,0.9260525,0.4405147058823529,4.31555,4.44012,4.920915,2.756825,5.56065,4.25213,3.711315,2.11882,3.6961666666666666,1.683222,6.3128,3.422845,4.14352,4.90855,3.3365666666666667,2.05967,2.0794,1.4243866666666667,1.869325,0.9688925,0.9688925,4.485225,3.4888666666666666,7.194266666666667,2.612575,2.086025,2.16415,2.27966175,2.5087,5.8891,4.62529,2.11659,2.3877633333333335,2.27966175,2.19843,4.03990675,2.41133875,6.2547033333333335,2.612575,3.272405,4.94837,3.411466666666667,5.48315,4.82795,2.037695,1.7438925,2.330425,3.24377,4.870815,5.41035,1.949775,4.256185,1.8239433333333332,1.70222,5.77935,11.020476666666667,2.2750366666666664,2.7385366666666666,2.3162233333333333,4.49559,4.48983,1.9887875,5.2996,4.756915,2.69405,39.7735105,3.089776666666667,3.3608,0.4889833333333333,5.268335833333333,2.1965933333333334,0.97196,4.49062,3.676825,2.069195,1.736905,2.4021966666666668,3.87443,1.3561357142857144,3.112365333333333,4.02131,4.8933,0.902617,5.0539,4.852045,5.1172,2.6882466666666667,1.543795,3.8255625,4.50567,3.93923,3.25242,3.633545,4.11353,12.069853636363636,3.0182066666666665,3.02215,4.51466,2.75713,4.68653,3.37193,2.81124,3.25952,5.9508937500000005,5.1682,4.93417,5.023,2.48455,3.692605,4.586905,3.55164,4.758335,4.442575,0.1031711956521739,2.226065,3.435355,2.667785,1.27775,1.0224499999999999,1.0224499999999999,1.8946275,2.62762,3.734795,1.305208,2.8751166666666665,4.598595,2.56589,4.329619166666666,0.5946307142857143,4.59262,3.670705,4.46995,4.353725,4.792325,1.39655,1.255725,3.6835,2.964636666666667,3.0772433333333336,4.2796655757575754,4.58165,6.319305,5.61055,4.3444,3.3833,2.160829166666667,1.5846133333333334,5.2261,0.30342066666666667,3.303845,3.724985,3.99838,14.642436666666665,1.79149,2.953663333333333,0.5947825,4.50829,8.304780000000001,3.183675,1.9922833333333332,5.42115,3.405366666666667,1.3212111111111111,3.576735,2.81228,2.992655,4.930865,3.3213872500000003,1.2142225,7.876663333333333,0.73831625,4.88417,3.0959705,1.3711275,2.06122425,3.21175,3.21175,3.892625,4.22783475,1.47075,2.299295,2.68734,3.56975,2.96838,2.488325,3.16946,3.313865,6.5385306666666665,6.32695,4.05981,3.26609,5.0705,4.90928,3.853765,3.411925,3.514825,4.3003,5.1988,2.516173333333333,2.6198533333333334,1.5098200000000002,2.3595566666666667,2.28774,1.542415,3.31375,3.5142,3.4441333333333333,2.948043333333333,2.7142033333333333,1.80014,1.6608733333333332,0.49075090909090907,3.095936666666667,1.3272314285714286,1.8410925,3.127166666666667,2.527083333333333,2.55469,0.9497975,2.3220725,2.489615,3.10454,3.55795,5.43935,3.73232,3.0224,2.2788333333333335,3.423225,4.028915,2.360085,3.36553,1.975185,3.75051,2.72945,3.83525,1.2773266666666667,0.612915,2.25239,3.36611,3.111605,3.939215,4.70304,8.63063,3.3902,2.3958166666666667,1.8596733333333333,1.80442,1.80442,2.7526266666666666,2.6374133333333334,4.93611,4.68439,3.261805,4.50875,4.49327,4.2534,3.307341666666667,4.48995,8.3707625,2.43465,0.508690625,3.0502833333333332,1.3396,1.0227371428571428,2.20346,0.8044119999999999,2.2421625,4.81188,5.353,6.057765,1.11475,7.09814,2.01524,1.5338933333333333,2.64644,4.25011,3.1859300000000004,2.462045,4.21586,3.3198233333333333,4.0599,2.95914,2.8727866666666664,2.9434966666666664,6.717915,2.57769,3.97599,3.62026,3.6964608333333335,1.5870233333333335,1.175195,4.282,2.8883233333333336,3.0388133333333336,6.3084225,3.479955,2.078725,2.3642825,3.482145,3.602933333333333,2.47399,4.497018333333333,2.9814900000000004,4.935795,2.521531,1.866875,4.74363,5.34295,4.91393,4.52114,1.3368166666666665,2.4832325,2.0000525,3.35245,1.4755166666666666,0.9685066666666667,2.7583141666666666,2.13453,2.1733125,4.102935,0.7661525,5.60035,1.361915,0.7829809090909091,4.026266666666666,4.352215,0.72093,3.311326,2.8746125,0.8032991666666667,4.728875,0.1897657142857143,0.1897657142857143,0.1897657142857143,0.1897657142857143,0.1897657142857143,0.1897657142857143,1.887974,4.0572,1.887974,1.887974,1.7884200000000001,0.1897657142857143,0.1897657142857143,3.3127633333333333,2.4919100000000003,4.869365,3.906445,2.23738,3.50774,1.6006142857142858,1.875458,3.414998,1.532558,3.083346666666667,2.770179777777778,5.551636666666667,4.60498,4.33116,5.6624,4.561625,4.858785,4.50976,4.31243,7.021612916666666,3.7518999999999996,3.6598666666666664,2.6115233333333334,5.016643333333333,2.7186066666666666,2.09987,1.9390166666666666,4.88309,4.860455,4.708665,5.22445,5.42195,4.817155,4.778755,0.7972872727272727,0.7134507142857143,0.7134507142857143,4.81509,2.3144,3.808615,1.0241928571428571,5.03785,1.6146857142857143,2.3405833333333335,2.65316,4.529333333333333,4.529333333333333,6.859,4.694445,1.5106983333333333,11.160991666666666,3.316433333333333,1.1917111111111112,5.4238,4.6201,3.82775,3.48843,2.58301,4.6132333333333335,0.70628,3.6784,3.4797999999999996,3.7014,3.2247533333333336,1.44338,1.4253099999999999,4.837865833333333,3.1562866666666665,2.9617066666666667,3.4435000000000002,5.213520833333334,3.518116666666667,0.783906,1.8397033333333335,3.4242666666666666,2.5887716666666662,3.7510333333333334,3.4671333333333334,3.22857,3.852133333333333,3.1771733333333336,2.6436633333333335,1.0421666666666667,3.0759899999999996,2.627623333333333,3.57928,3.563565,3.994285,2.660553333333333,3.3969,2.936575,1.637782,1.9540199999999999,2.5446609523809522,3.617433333333333,1.7047440000000003,3.1680833333333336,1.7988166666666665,4.151,5.131709166666667,5.087925333333334,2.4790075,2.72585,2.87105,2.4713325,1.6140142857142856,2.293195,3.2661524999999996,2.48261,3.7114,2.903795,3.827372,3.312565,1.133,1.2652475,1.79533,2.38352,3.4730666666666665,3.4853666666666663,5.12515,7.219244999999999,3.435095,5.1596,4.19095,15.635161666666667,0.4651225,11.538844999999998,1.1714666666666667,3.183495,2.7353566666666667,2.3463433333333334,3.03276,1.518664,1.534896,2.5683933333333333,1.357902,2.7591426666666665,2.10608,3.0910499999999996,2.2294233333333335,2.733306666666667,1.4630866666666666,0.7156483333333333,3.2586566666666665,2.5410033333333333,3.344533333333333,1.1032933333333332,3.6801999999999997,0.7237058333333333,0.39344538461538464,2.9175299999999997,4.545275,5.27945,5.50455,0.8864118181818181,4.0931,4.53219,1.0740025,2.999475,5.5999108333333325,3.19545,4.15417,3.73772,3.97362,2.014065,3.987245,2.7562266666666666,3.199095,3.49807,2.578445,2.717025,3.762085,3.15533,3.50573,2.560855,3.34543,5.1763,1.19282,4.692345,2.2179575,3.92617,4.834593333333333,2.0863875,2.7864,3.1422633333333336,5.6293299999999995,2.620413333333333,3.419865,5.75495,3.7441333333333335,4.44444,1.8529766666666667,2.514325,3.972785,3.5303,4.155825,3.4918333333333336,3.2526100000000002,3.1611266666666666,4.083633333333333,3.2212533333333333,2.7561966666666664,2.822346666666667,0.45291833333333337,2.13154,2.230625,5.0336,4.660545,3.00738,2.9714533333333333,3.3992,8.451255,3.47842875,3.93069,3.2300799999999996,3.92586,3.10008,3.8443825,2.6738733333333333,2.3368675,2.9799933333333333,6.08025,4.71349,2.123673333333333,3.265815,2.847685,2.6979900000000003,4.6426680000000005,1.70902,6.408383333333333,4.262625,5.03085,4.64249,5.34625,3.657,7.019538333333333,4.77255,3.74427,0.6753642857142858,2.3701675,1.6971425,3.0098033333333336,3.60075125,4.31313,3.980195,5.3361,2.7129266666666667,4.782885,3.198676666666667,3.529866666666667,3.15137,4.82188,5.2335,5.30965,2.4176733333333336,5.453061666666667,4.54098,1.58087,5.621,3.70443,3.810185,2.51061,2.2719400000000003,4.774839333333333,1.2472857142857143,2.61711,2.232965,3.8257,4.41955,2.64646,3.3097766666666666,3.1761869999999996,2.68164,4.002895,1.3405239999999998,2.3011633333333332,2.3640466666666664,3.1528566666666666,2.4511933333333333,2.7368433333333333,2.6878666666666664,3.976685,2.8912166666666668,2.786653333333333,4.187285,2.771015,4.099505,3.674445,1.4848580303030303,1.4848580303030303,4.80855,2.9786633333333334,1.7479925,1.3103225,2.3969775,2.1998625,1.196372,1.3913200000000001,0.651499,1.5886566666666668,1.48947,2.834986666666667,2.23521,1.75,1.88734,2.3799633333333334,1.4987666666666666,1.8122666666666667,1.77538,2.225705,4.114205,2.76788,3.1430866666666666,2.78475,5.74905,2.9643,4.62674,4.227785000000001,2.01344,3.822945,3.231495,1.934485,3.467895,2.10269,2.906545,3.640395,2.0872375,4.786085,2.681895,4.08218,3.4267333333333334,0.8878055555555555,4.15828,3.89059,4.531865,3.554365,2.6939233333333337,4.698455,4.867325,5.34632375,9.2730075,4.012595,4.53024,3.2278000000000002,3.67947,3.82497,2.55661,2.715775,4.49925,2.2038325,5.911185,1.8554179999999998,2.576425,7.958136666666666,2.9147533333333335,3.984248,1.2144285714285714,4.945875,5.01405,3.3742,4.70132,5.0462,6.718805000000001,17.158260773809523,0.6389176470588235,1.1056788888888889,3.451233333333333,4.02863,4.08701,2.124795,3.292635,3.993555,4.78303,2.62803,4.645415,1.8036333333333332,1.8036333333333332,5.42845,0.7642354545454545,1.9002759999999999,3.043235,3.97189,0.36969846153846153,1.95421,4.355928083333334,1.1080216666666667,2.99778,2.71617,3.08759,7.67622,2.4463966666666668,3.3346999999999998,1.9873833333333335,2.23549,4.2607825,3.61082,3.26835,6.6788705,1.7726325,3.08695,4.54443,7.2634425,1.6885833333333335,2.2989666666666664,2.5834333333333332,1.4193866666666668,3.005895,1.7362337499999998,3.96624,3.73759,1.47696,1.967415,1.967415,2.8546833333333335,5.67445,4.087536666666667,3.883875,5.10285,5.96925,3.16211,3.591195,4.03529,3.507995,4.482191666666667,3.283555,4.447395,0.9658620000000001,0.3515,5.31325,3.804275,2.6177466666666667,8.79386,1.56452,4.8446,4.05761,0.5247266666666667,1.9462966666666668,1.2272666666666667,1.8373266666666668,1.7204,5.320495,2.852705,3.001345,4.802462500000001,4.833595,4.584755,0.6264746153846155,1.981765,0.5877030000000001,5.7170499999999995,1.580198,5.0084,2.101265,3.50634375,3.271465,4.28983,4.32621,4.91979,0.8480763636363636,3.10195,4.13514,1.8980075,1.6750775,3.610935,3.285525,3.28628,3.794895,5.542352380952381,4.403315,5.56755,3.06887,0.6904388888888888,3.5650666666666666,4.03825,0.6925576923076923,4.054215,4.780675,4.035985,3.30737,2.6911199999999997,5.2663,3.291745,3.562475,2.16981,4.014125,1.858594,3.55967,3.73301,0.6604538461538462,4.62185,4.073665,3.32481,4.78873,4.31642,2.668735,3.88154,0.732445,3.0944366666666667,3.9330700000000003,4.656465,3.5186333333333333,2.417505,3.5484333333333336,2.417505,4.694725,3.00979,3.3182533333333333,1.7485333333333333,3.4097666666666666,2.0748875,4.365125,3.0228966666666666,5.5954033333333335,3.4113333333333333,2.8029333333333333,3.30185,2.4725916071428573,2.4725916071428573,2.4725916071428573,2.719136666666667,1.0861033333333332,4.474995,2.3562,1.6458833333333331,3.740866666666667,2.5925333333333334,3.1554800000000003,3.998645,5.22065,4.004075,1.985105,1.263514,4.096455,1.87361,2.481526666666667,3.138555,3.48108,2.09396,3.796875,2.73638,1.646256,4.71017,4.2487,3.423185,3.6703,0.7383677777777778,2.3830766666666667,4.785655,7.54799,4.48003,3.08769,3.182795,3.436275,3.641345,1.8725075,2.137165,4.967925,2.23741,4.578075,4.058335,4.43584,8.96456,3.9986,4.154625,3.83571,4.894555,4.0604,3.966425,3.966425,3.97682,4.018631666666667,4.794805,3.81716,4.247895,4.473875,4.10993,1.18842375,4.215325,3.94799,5.86795,7.918699999999999,5.1414,4.121056666666666,2.0299366666666665,1.6375,2.5053325,4.73583,4.06177,4.82434,2.8056066666666664,4.29494,5.12995,5.2976,4.881935,3.1319733333333333,3.94541,4.455045,5.15145,5.1692,4.16713,7.094958333333333,4.4794,2.267183333333333,4.81557,4.258835,4.22133,3.98316,4.79919,0.7969936363636364,4.378935,4.47235,1.2790942857142855,1.313306,5.0888,5.3168,9.0562875,5.73135,4.916505,6.2669,2.929125,2.8346999999999998,5.29365,1.6653425,1.6653425,2.5074,1.59622,2.8868375,3.4488,1.97562,4.324521818181818,1.3692399999999998,2.12155,5.956225,3.120665,3.514145,2.83686,4.124695,4.234855,2.9975633333333334,1.074778888888889,3.956225,3.19206,3.962855,4.6282,3.7085233333333334,5.5651,5.79995,5.03825,4.52666,5.51545,6.44165,4.94224,3.141365,3.367155,2.0109475,2.0109475,3.92503,4.62486,2.7129999999999996,2.7244499999999996,2.210821818181818,2.80074,1.5055433333333335,1.5055433333333335,4.562315,3.4205,2.1794,3.690065,2.756445,1.9036,1.2522125,1.2029222222222222,2.76774,0.47130210526315786,0.9074111111111112,2.69932,4.1489,0.4436318181818182,4.180275,1.9497699999999998,5.35385,3.69364,7.959725,4.407645,5.401156666666667,4.988815,4.55671,4.149755,1.786235,1.9760680000000002,4.15463,2.924745,3.895365,1.2215733333333334,3.92336,5.49235,2.69839,2.54391,2.94069,4.290225,3.59711,4.342495,3.91163,3.48312,3.247645,3.43055,1.04603,1.832335,2.2299,2.81445,4.27957,7.54883,0.911882,1.5245666666666666,1.5245666666666666,1.855828,3.8625,2.720115,3.06474,5.4611975,2.943903333333333,1.1690775,1.1690775,1.1690775,2.98456,3.1898530000000003,4.497095,3.205185,4.135425,3.39206,3.68844,2.953905,3.15482,3.54214,4.3234112499999995,2.5682824999999996,1.196372,2.949795,2.5682824999999996,3.31973,1.3870433333333334,1.7678866666666666,2.144305,5.806905333333333,2.73719,6.129772,5.806905333333333,3.392582,1.7110666666666665,1.7110666666666665,2.540935,5.85792,1.7110666666666665,2.219335,5.6379,2.12512,2.63013,5.29762,3.579985,3.99549,1.99874,3.303975,4.34622,2.1374633333333333,2.206605,3.78436,1.99874,2.43789,2.004365,6.0424,2.455875,1.130678,2.35461,3.300105,3.3564146666666663,1.930715,2.161578,3.91809,1.9046946666666664,1.83842,3.06614,2.246225,3.291225,3.63575,2.2221033333333335,2.95205,2.445735,6.68976,2.224235,3.067005,3.320605,3.320605,8.77685,1.19655,3.050125,2.735495,3.12717,2.339775,1.31891,1.31891,3.18865,1.83619,7.0926,2.14935,3.39272,2.91511,6.57227,2.63996,2.274725,5.521265,5.521265,2.49328,1.3973,1.24486,1.24486,1.3973,2.116573333333333,1.4687400000000002,1.1855383333333334,1.5896133333333333,1.7074666666666667,3.65945,1.711085,3.07852,2.94635,3.3566,2.730565,2.801225,2.341085,3.2261758333333335,3.2261758333333335,5.94058,2.264885,2.83335,2.8328,3.234715,2.19825,2.82074,2.542395,5.20504,1.79359,1.5772483333333334,1.2102183333333332,2.1838066666666665,5.75128,3.875993333333333,3.272333333333333,3.27799,1.77714,1.77714,1.77714,5.47596,2.30804,1.1855383333333334,3.111615,3.454555,1.3891175,5.25812,3.2297325,6.20304,3.26198,1.661605,3.27778,3.018963333333333,2.114395,3.376315,4.18661,3.2036,1.512955,2.38901,2.753315,3.24552,5.46061,2.037435,3.18928,2.55269,5.95311,4.15001,1.93338,2.20364,5.67084,5.0625,5.37954,5.55178,1.016224,1.016224,2.8716369999999998,2.8716369999999998,0.870652,4.92857,2.87127,4.84214,4.23268,4.91901,2.13145,4.206591666666666,4.206591666666666,2.17266,3.34621,3.5595,1.1297739999999998,4.28547,3.19401,3.128795,2.652795,5.02752,2.50974,1.89495,3.39622,2.550865,2.873255,4.8317,2.562015,1.869815,3.54427,5.77636,5.50695,4.29532,2.60674,3.0764,2.679095,4.69697,2.556085,3.71527,2.24822,6.02033,4.01009,2.066185,3.086495,2.261575,4.57986,2.2573,2.515835,3.01067,7.10096,4.84029,3.157195,2.113225,2.51711,6.34308,2.95312,2.83147,5.6619,3.4092,2.720165,2.64465,2.88601,1.8364566666666666,1.926775,1.7572766666666666,1.5665733333333334,1.83132,1.98586,1.49968,2.08939,1.84706,1.8364566666666666,3.71094,3.91071,2.142965,1.6350725000000002,1.6350725000000002,3.542303333333333,3.542303333333333,2.650686666666667,2.650686666666667,2.88245,2.128615,1.704175,3.73502,2.0897924999999997,2.0897924999999997,2.4185675,2.4185675,2.86907,1.72523,4.44962,2.073795,3.286295,1.9746633333333332,1.9746633333333332,1.468315,3.89654,4.9893,1.3870433333333334,3.89403,2.2221033333333335,1.93166,4.23999,3.104735,1.795845,2.39646,6.13329,2.02959,5.99558,3.005315,3.33301,2.929505,2.693415,6.12594,3.04066,2.52463,2.654313076923077,2.93068,5.23275,3.53884,1.51523,1.51523,3.68852,4.75176,4.72282,5.08548,2.81963,2.62476,1.821315,2.995945,1.506085,2.82333,1.728335,0.7741640000000001,0.7741640000000001,0.7741640000000001,1.93982,4.92796,1.93982,2.088715,3.44466,1.658835,1.96368,4.44261,3.56169,5.28465,1.5679333333333334,5.49791,1.5679333333333334,1.5679333333333334,2.336765,2.08341,2.1942,5.70582,2.1942,2.36616,3.51694,2.02978,1.66438,2.674135,3.0921866666666666,3.485228333333333,3.240013333333333,3.703085,1.4472816666666668,4.3085,0.7432963636363635,4.405505,4.5848875,2.7230775,2.7230775,0.7344909090909091,3.7362,3.0622166666666666,5.9218,5.01805,4.4135,4.59702,4.296665,4.18788,4.89583,4.364355,4.37109,3.90542,4.059075,4.72829,5.39835,3.2199,3.644825,3.944375,2.71752,1.508272,4.465835,3.76512,3.38137,1.4502714285714284,3.80692,4.089445,6.154065,1.086665,4.60518,4.216015,2.081475,1.966475,3.178445,3.54691,1.665615,1.51523,3.691605,3.78846,2.63556,4.665025,2.960535,1.1459,2.9940433333333334,1.2658042857142857,3.206243333333333,2.036653333333333,3.2657166666666666,1.891475,2.789353333333333,4.24529,3.388885,4.574215,3.30769,2.31591,4.73113,4.27503,3.208295,5.3094,4.18333,2.686393333333333,6.1563,4.868155,3.14274,2.6825166666666664,2.73466,2.8974533333333334,2.9372133333333337,2.7954733333333333,4.727075,4.114895,3.741645,2.477113333333333,2.5885333333333334,2.330013333333333,3.047406666666667,2.3905266666666667,2.35114,2.3562233333333333,2.07235,1.4022875,3.0833503333333336,1.1133425,1.907465,1.7287025,2.4582425,1.6080225,2.0008025,4.37704,3.550155,2.140225,4.08811,4.76779,6.936278333333333,2.0580633333333336,1.633726,6.75095,3.472365,4.109995,4.067895,4.22665,2.05063,3.67732,2.6145,2.94043,4.65016,0.7029741666666666,4.17853,2.5361466666666668,0.8156263636363636,5.02085,4.73823,3.981265,1.9818628571428571,4.92899,4.7165,2.74567,3.5962,2.4595366666666667,2.1281766666666666,0.572056,3.08766,3.0232,5.3165,2.665825,2.0650125,4.60456,1.04616,1.7784783333333334,1.7784783333333334,2.66194,1.7784783333333334,4.401645,2.741535,4.90082,4.23754,6.03905,13.517430000000001,3.19244,4.961795,2.764405,4.60955,3.15671,6.4482275,2.949543333333333,4.55456,4.61976,4.0834,1.3200366666666665,4.095755,3.01536,2.97124,1.188688888888889,2.1641175,3.844085,7.470594999999999,4.32441,2.809393333333333,4.344005,3.3006100000000003,4.335115,5.2128,4.466075,2.93107,2.8469700000000002,4.132885,5.9613,2.470795,4.7777,1.9269875,1.9269875,3.0811,4.984885,1.14972,4.1242366666666666,2.34266,3.98418,2.7005466666666664,2.63827,2.6736566666666666,2.174186666666667,0.6594785714285714,3.51632,2.736026666666667,4.641835,4.5425,0.2382721875,5.5331,5.30335,5.75785,8.247110000000001,3.4008333333333334,2.9847133333333336,2.3708933333333335,3.4108,3.159283333333333,1.4327266666666667,2.95082,2.8364,1.5269566666666667,3.071563333333333,3.390233333333333,2.773156666666667,3.29815,1.3337705555555557,4.36565,3.44325,5.15605,4.777805,3.833905,1.6257666666666666,2.5631933333333334,1.319165,1.78523,1.319165,4.800145,3.5189,1.82975,2.51155,4.116715,3.722245,2.944535,3.779155,0.3555015,1.4970641666666666,3.769205,4.057045,5.0691,2.04003,2.9780433333333334,3.1295866666666665,2.6517666666666666,2.81499,3.08873,4.480085,2.706375,2.28767,2.4355100000000003,2.5834366666666666,3.0862933333333333,4.621815,2.05946,5.091,3.831479166666667,5.85365,7.7031149999999995,0.8058244444444445,0.840165,3.563515,7.083247500000001,1.7380579999999999,3.50516,1.5426133333333332,1.5426133333333332,3.475195,0.43880777777777774,3.67811,4.566305,2.62591,4.44782,3.235765,2.59431,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,0.24150966666666665,2.30392,2.75504,3.8174616666666665,3.0222016666666667,4.3726,5.7055766666666665,2.799435,2.4378033333333335,0.9601016666666666,3.32501,0.72269,5.338978333333333,2.9011750000000003,2.26844,0.72269,2.565985,2.704535,0.828435,3.70603,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,0.15425,4.559845,1.6091825,4.600965,4.86807,1.8731839999999997,4.71521,4.64649,5.35495,4.75162,3.6934278571428574,3.35026,4.933075,2.266,5.170719999999999,4.42994,0.7572214285714286,1.5505714285714285,1.5188000000000001,3.5092666666666665,3.5092666666666665,3.0699733333333334,4.206765,5.01155,4.1364,4.53714,3.2383666666666664,2.367593333333333,0.4861642857142857,4.099925,3.49346,2.71943,5.0176,3.48556,3.0692962500000003,3.658595,4.4565,6.873665,4.279695,4.588095,5.68575,4.6268,1.3470685714285715,3.579135,5.39438,34.67378400180375,1.26322,4.791695,3.545855,4.5167,4.29602,5.1892,4.99967,0.40915761904761905,4.827115,4.363485,1.9393725,1.86648,3.83205,1.6247075,2.36278,2.364705,1.8054925,2.878475,2.469726666666667,3.42933,3.71875,0.6013315384615384,3.401765,3.776405,0.38159052631578944,2.7365266666666668,3.549595,2.64235,4.495695,1.79068,4.69845,3.9264,3.19208,4.237695,3.391755,4.309325,3.01568,4.190625,2.16456,5.39438,3.679085,3.66658,3.17713,1.734868,4.320565,3.48419,6.888018333333333,3.087915,4.552415,6.67864,5.107487000000001,2.28887,5.2588,7.104862499999999,7.730398,2.5272166666666664,2.54853,5.1015,5.70739,4.91289,3.63105,5.4019916666666665,2.33814,2.0853275,2.4277925,60.3344432779252,5.64865,4.283225,2.522225,0.9475199999999999,3.2027533333333333,3.2192633333333336,3.4509000000000003,0.8514311111111111,4.56769,0.7725744444444445,7.812952857142857,1.87361,3.2607933333333334,1.8436720000000002,2.77474,2.6389066666666667,2.849816666666667,2.4734700000000003,2.334846666666667,3.3779333333333335,1.5773000000000001,5.153880833333334,3.6366333333333336,1.5172475,2.528303333333333,1.3780733333333333,1.4653875,7.34599,5.90755,3.314775,5.3376,5.514835,1.4917,3.670166666666667,3.17262,1.629615,4.69372,3.78779,4.005865,1.943775,3.131934166666667,3.8706666666666667,4.142275,5.60695,4.01327,4.206675,2.059275,3.80181,4.322166666666667,3.441433333333333,1.576498,4.21247,3.4499,4.21839,5.2864,4.02497,4.157105,4.63377,4.44456,4.33527,4.734725,4.519935,3.32961,3.657505,5.04385,3.144875,4.21908,3.60624,1.4418075,1.4418075,4.388585,4.95645,5.5529,3.959105,4.69375,3.4258,2.942815,4.7671,5.26705,0.7607181818181818,5.3306,7.323192499999999,5.60615,5.77345,1.3414333333333335,3.182465,0.90745,0.90745,0.90745,3.683925,3.6136666666666666,2.9111366666666663,3.5528666666666666,0.95943,4.632825,4.94315,2.94123,1.65968,2.1251075,4.218905,4.309535,3.752865,3.2453200000000004,6.44205,4.056255,2.7383566666666668,4.707425,6.96995,2.25445,4.02015,3.739165,3.124595,4.59229,4.803465,4.91782,5.4977,3.770955,3.391671111111111,2.0531133333333336,2.0531133333333336,0.7083336363636363,8.734736,2.113845,5.9953,5.6367,4.47246,4.401095,3.70758,3.1052516666666667,4.820575,7.60211,5.748701666666666,2.4037633333333335,4.499905,1.09089,3.71184,1.87816,0.9737722222222222,1.0915457142857143,2.51573,3.271333333333333,2.8002333333333334,1.21725,2.60087,3.0526866666666668,0.90282,3.02465,3.525533333333333,1.66431,1.82334,3.0703899999999997,3.3966666666666665,3.1315766666666662,2.5041466666666667,1.8292100000000002,6.21305,4.696535,4.304365,4.627345,5.4014,3.17658,4.77227,5.75555,4.926765,4.988465,4.380355,11.352966666666667,8.15001,2.9022566666666667,3.577605,2.32801,3.7763,3.16408,4.343255,1.1397033333333333,4.2271,4.470035,1.577915,3.60843,3.0421766666666668,4.37319,3.390755,3.83743,5.98695,7.229441666666666,4.05061,1.6334433333333334,1.6334433333333334,1.6334433333333334,4.940635,1.2004233333333334,1.3960625,0.5043205555555555,4.48263375,3.0423500000000003,3.60402,0.9530329999999999,1.19229875,3.489495,4.2957,3.67168,16.878146178571427,4.835687500000001,4.520385,6.1670549999999995,2.7355300000000002,3.728735,3.257655,0.97959,1.586355,4.538285,3.78313,4.69032,3.80323,4.67804,4.182895,2.745178888888889,3.300835,5.39495,0.6230249999999999,5.0718,2.391835,4.044275,5.30525,3.5195000000000003,2.66267,3.958073333333334,1.6451933333333333,4.026885,5.7445,2.930006666666667,3.85697,4.135385,4.313635,4.633375,3.926065,3.70487,4.24596,5.29855,4.85245,5.2137,4.757245,3.919105,1.1711257142857143,1.6365275,6.399306166666666,5.38785,5.0684,5.2358,2.518825,2.79143,2.835653333333333,5.503793333333333,2.047005,1.92843,3.107556666666667,3.246036666666667,3.3855,4.501925,3.724445,5.538878333333333,1.2013925,4.521365,0.9176666666666667,3.973515,3.40439,1.6778033333333333,4.6545,1.0056966666666667,4.97536,5.55875,5.21775,4.08188,3.7825966666666666,3.974355,2.926823333333333,5.2457,5.6803,3.2085345,3.98479,2.432355,2.635015,1.97097,2.88218,3.88898,5.35355,1.07796,4.5685075,1.4729875,3.297735,1.5689566666666668,1.07796,0.2675410810810811,3.99352,3.012205,2.406865,1.9169766666666668,2.752815,1.1033875,3.626325,3.343655,4.808155,2.5573833333333336,6.42625,6.9580649999999995,2.850763333333333,3.2019566666666663,2.708073333333333,0.875792,2.3872233333333335,6.1928,4.49222,4.951615,5.0634,2.2834133333333333,1.7130633333333334,3.8454325,1.5795,2.3097825,1.746185,2.2534,1.638965,1.935305,1.9437925,2.0416025,2.2315,1.2491757142857143,1.44635,1.901485,2.1874125,2.4173875,2.3282866666666666,0.5761786666666667,1.739434,2.470613333333333,3.1842366666666666,1.8784,1.6626433333333335,1.55932,4.085335,2.16973,2.72239,3.028265,4.080755,4.083725,2.52239,4.45303,1.7128717647058824,4.10062125,23.011688,4.720383333333333,5.5872,4.78947,3.173223333333333,3.88419,4.64001,2.81338,4.547775,3.1982866666666667,0.799815,3.876135,5.01265,4.104775,4.11537,1.6370633333333335,2.0158,2.37147,2.313665,1.3675742857142856,3.175613333333333,5.90845,4.149745,3.29685,4.012325,5.32375,4.09252,5.40995,1.32155,3.660335,4.25261,4.78936,1.540478,2.761283333333333,1.7962512499999999,1.7962512499999999,3.95206,4.998825,2.80444,2.996093333333333,4.073265,4.20378,6.6984224999999995,4.57861,2.14665,1.586355,3.00843,4.18571,3.175926666666667,2.219373968253968,2.219373968253968,3.378,4.594515,4.024105,5.547268333333333,2.423245,3.3420097777777777,0.6032644444444445,0.6032644444444445,0.6032644444444445,3.30313,3.733285,4.517308333333333,5.1115,1.8445925,5.39105,4.50471,4.744025,3.55796,5.2953,2.96318,1.6070142857142857,4.77634,5.05945,0.476385,4.360733333333333,5.0151,1.6759333333333333,5.27385,5.35635,4.54265,3.971825,3.811655,2.87198,4.581405,1.6769200000000002,4.415925,1.7338500000000001,3.640115,5.5652,1.2110325,3.119555,7.2203275,3.98107,4.343933333333333,2.4809275,4.2783,5.46095,3.3547,6.968680000000001,4.396295,2.19665,2.9612133333333333,2.81753,2.7297999999999996,2.967916666666667,1.8011466666666667,3.93904,0.6345183333333334,1.8110249999999999,1.8110249999999999,3.26599,5.01235,2.3275975,3.064365,4.528665,4.604295,4.432035,1.2764466666666667,5.23864719047619,4.399,5.0821,3.78961,4.248203666666667,3.742259,0.5059446666666667,2.4526172857142856,1.0649575,0.5059446666666667,4.241705,0.8534244444444444,4.361475,4.111705,6.640351,3.2152100000000003,1.010945,1.092682,2.308645,3.1009966666666666,2.2274033333333336,2.462963333333333,3.26937,3.628575,2.234856666666667,2.2746366666666664,4.65102,3.32337125,4.099005,5.9208,3.87956,4.85072,8.185856666666666,4.6714,3.57141,4.40908,3.681145,4.390015,5.11495,6.021225,5.4241,2.4205366666666666,0.9395733333333334,4.051335,4.22883,3.992965,4.90455,4.529615,4.22211,3.030113333333333,2.7121933333333335,3.286566666666667,2.591553333333333,2.1268033333333336,2.8613700000000004,3.417,2.5788533333333334,4.132655,4.81922,4.40084,5.48655,2.8026466666666665,3.2786899999999997,2.947075,0.7589714285714286,4.34072,3.97132,4.384635,2.9750566666666667,5.607716666666667,3.36837,4.650125,4.140715,0.63567,0.5779985714285714,4.327995,2.857558,3.084485,4.992735,4.5743,1.7929659999999998,5.3056,4.25331,2.6560799999999998,2.657826666666667,2.406855,2.1881858333333333,3.5297,3.3973999999999998,3.5701,3.1804633333333334,3.5143,2.7012,3.2567500000000003,4.479133333333333,4.3726225,0.55984875,0.55984875,0.55984875,3.3856645277777777,3.866733333333333,3.6885,2.9067666666666665,2.7583699999999998,1.18842375,3.21313,3.3311833333333336,2.03296,2.6769366666666667,2.4794533333333333,1.06896,3.061208333333333,4.776625,9.966163166666666,1.5569659166666667,0.574376,3.64566,0.574376,0.574376,0.574376,0.574376,2.2601675,4.468738,4.318925,5.1842,5.9484,2.8545200000000004,2.99506,3.25517625,3.8385983333333336,5.3165,1.7103833333333334,2.6844466666666666,3.14472,2.62152,3.02748,3.79517,2.2301433333333334,2.694555,1.1860777777777778,4.804415,4.055855,4.126865,0.8490625,0.608333,0.608333,0.9127021739130434,1.7617646739130435,0.9127021739130434,0.9127021739130434,0.31515217391304345,0.31515217391304345,0.9127021739130434,1.4002533333333333,2.628303333333333,2.84029,3.17614,2.57055,2.635003333333333,3.15968,2.7510399999999997,4.56492,3.705365,1.9032625,2.2877433333333332,1.7519925,0.17249871318114873,0.17249871318114873,0.17249871318114873,0.17249871318114873,2.4713499999999997,2.72378,0.8669079999999999,5.0305,0.8052509090909091,1.734242,4.9380925,5.03025,3.467265,3.394375,4.339725,4.02899,1.4515966666666669,1.1617175,3.623825,4.44183,5.80325,2.26358,1.3695866666666667,1.8576666666666668,3.2026800000000004,1.4670233333333333,2.724273333333333,3.2267533333333334,3.2355633333333333,4.53056,3.73008,3.160725,4.706325,2.7603166666666668,4.237365,5.49655,4.081475,4.487185,4.69039,5.55302,4.813580833333333,3.168894857142857,4.930981666666667,4.57836,5.2036,4.611365,4.61048,2.154515,3.064775,4.162995,5.1373,4.322075,4.13452,3.979535,4.079725,4.1213,2.4466466666666666,5.8614,3.709705,7.4249925,5.88765,5.97125,5.1332,1.4993285714285716,0.9789770000000001,0.6701792307692307,1.7819939999999999,5.07005,5.0063,4.02113,1.585094,4.33156,2.99914,4.746075,5.20945,6.3249200000000005,4.24726,3.076455,1.693918,5.5182825,3.89443,3.295225,1.6788325,0.99121625,3.83796,3.61473,3.5129025,3.61791,2.07763,4.503245,1.73546,2.9206633333333336,2.38176,4.04057,4.614175,4.75968,2.2968325,1.44115,5.295,3.0798233333333336,8.66759,2.84185,5.03715,5.77765,4.403925,4.990155,3.445065,4.83057,2.3365375,3.87351,5.242479,2.335125,4.4366,4.71375,7.76146,5.0216,3.4141666666666666,4.1825,3.782525,3.32337125,3.42675,5.1781,4.99998,2.4058225,3.1427666666666667,3.3770000000000002,2.19414,2.67021,4.55765,5.64195,5.0806,4.829695,5.01675,4.578595,5.92495,0.6393207692307693,3.2123399999999998,1.2878585714285715,31.68738191371204,2.78354,4.843075,3.263915,4.411095,1.9384720000000002,2.455903333333333,3.824327023809524,1.545974523809524,1.545974523809524,1.545974523809524,1.545974523809524,2.2783525,3.626305,0.37509,8.034197222222222,0.37509,4.62839,5.2464,2.235445,5.76005,2.3959775,3.8729606666666663,2.4600733333333333,2.4136366666666667,2.6633733333333334,2.1222600000000003,0.6534530769230769,2.597583333333333,0.7275174999999999,3.11229,2.24186,2.40236,1.18131,2.40236,6.19395,8.278134999999999,5.0755,4.801005,5.69095,6.36935,7.91038,3.049395,1.6647875,1.6647875,2.359646666666667,5.18405,3.91331,4.45861,6.428885,4.209495,3.110545,4.065205,3.37918,3.51985,2.151735,1.142824,1.85784,4.23826,4.085385,5.413227777777777,1.9140325,3.97559,1.467752,3.472305,1.392066,3.5910666666666664,3.169286666666667,3.097863333333333,3.18847,3.4937,4.77519,0.7047684615384615,3.528795,3.7034333333333334,2.9024433333333337,2.3603833333333335,4.151465625,3.01172,2.47604,5.31850875,3.752745,4.82299,3.825885,3.56399,5.27815,5.1315,2.8067433333333334,6.09815,2.3828756666666666,1.93298,3.1318366666666666,2.7810133333333336,3.4887333333333337,3.07722,2.0751500000000003,3.7341850303030304,4.463535,3.3746275,2.368212333333333,2.368212333333333,2.564625,4.00603,3.94414,0.8022136363636364,3.241585,3.2617,8.5316,0.9187363636363636,4.406965,3.87283,5.60445,3.787665,4.015495,2.297235,3.89375,2.80559,6.1265,2.6325700000000003,0.98007,3.91623,2.6087700000000003,3.80314,2.767746666666667,3.586115,3.691975,4.183525,5.363836,3.229015,2.045715,5.07595,2.4288366666666668,4.823935,4.839625,4.68898,4.44029,4.050455,2.906335,2.190166666666667,2.8278,2.6675166666666663,2.973775,3.430566666666667,2.828747857142857,5.1273,2.9710666666666667,2.68772,6.573685833333333,5.138299999999999,4.0447,3.1843500000000002,3.9780333333333338,4.013505,3.51789,2.304625,4.257915000000001,5.47205,4.57261,1.5093949999999998,4.1527,3.2384799999999996,6.937615,4.890875,8.985128333333334,4.63087,4.017035,2.15942,4.056515,5.97821,7.69633,3.65919,5.84486,4.253525,3.260865,4.03955,1.70902,4.804909,1.6055133333333333,4.264855,4.896045,3.6258,0.876075,9.407268333333333,1.2581444444444445,1.58681,2.2735933333333334,1.91579,2.922416666666667,1.381435,3.714795,3.521525,2.7324300000000004,4.315775,1.1224116666666668,3.91165,1.3158983333333334,2.502177666666667,5.1481,4.28988,2.1104375,5.24432,1.9419643333333334,7.92226,4.337395,3.1779,3.95928,3.280635,1.2160866666666668,7.51071,2.80387,3.400845,2.21211,4.18524,2.3472625,3.68452,2.322015,4.009785,1.3626175,5.18605,4.6117,4.124555,0.9720850000000001,2.0060746666666667,3.813205,5.38045,5.3303075,1.505936,1.505936,6.38865,4.419775,5.00795,3.814725,3.42968,9.44918,4.2314,5.6787,4.06867,2.545625,2.066511696364567,0.347366,0.18314387096774193,0.6107716487455197,1.1083740476190476,0.6214995852534562,0.18314387096774193,1.172581,0.4276277777777778,1.4557400476190476,1.7833526487455198,2.0304725,2.292105,2.170193333333333,5.41765,6.588073333333333,5.35235,5.5697,4.6805,5.35855,1.21984,5.15765,4.055255,6.1221,5.44425,5.91885,5.78755,5.93535,5.40705,1.4138950000000001,1.5462428571428573,1.973994,6.391629999999999,1.33818,5.84695,4.723245,7.178755833333334,5.02215,5.75735,4.46226,4.828595,2.648375,6.01055,6.00345,6.667398333333333,4.859675,5.763065,5.51095,3.83362625,4.283575,4.037266666666667,1.00827,3.6846333333333336,4.763655,1.2496825,3.8132333333333333,4.92068,4.1473949999999995,5.15295,2.25055,3.213905,2.848463333333333,4.65489,2.2570225,3.621485,1.2833766666666666,3.403405,3.843475,4.243145,5.0096,3.3520604166666668,0.6619858333333334,5.75545,1.04505875,3.793835,3.3374333333333333,3.85854,2.047293333333333,3.88232,3.7159523076923078,3.9034333333333335,4.45033,15.142249404761905,5.13205,2.205245,8.44538,1.4919625,3.83872,2.96181,2.905863333333333,2.27859,0.21845043478260867,3.00619,4.37534,1.7245819999999998,2.1606366666666665,3.9203666666666668,1.90104,2.5533366666666666,1.3391428571428572,3.913875,4.33353,3.854075,5.22895,0.4916871428571428,2.39682,4.532475,2.722855,5.15195,5.27195,3.88044,4.473075,0.5655041176470588,2.5157333333333334,2.5157333333333334,5.88455,4.9279,4.844985,2.758825,3.8556333333333335,3.5144333333333333,4.9323,3.79628,5.953605555555556,4.956955,4.587855,4.843065,2.546,2.1145,4.572135,4.03995,3.615565,3.429745,1.7735119999999998,4.07347,4.45787,3.77675,4.895155,3.93543,4.26463,0.6236113333333333,3.438905,0.6849875,3.3182266666666664,3.106345,4.51316,18.715554761904762,4.18416,3.750085,3.018963333333333,1.17025375,2.7257433333333334,2.4971566666666667,1.54452,3.104295,2.512875,5.3204,2.2030766666666666,4.468405,4.514475,2.19362,4.690345,3.0021533333333337,4.383675,5.3833,5.59895,1.744365,1.89263,2.369925,4.820725,5.29155,1.2195777777777779,5.4123,3.688725,5.432,4.785635,1.6786333333333332,4.65616,3.885365,3.887095,4.197535,4.02175,3.1191633333333333,0.5935275,7.635106666666667,1.4942220000000002,0.22087305555555556,0.22087305555555556,0.22087305555555556,5.02135,4.3361,2.6450299999999998,4.43628,2.9053,4.526115,4.533001428571429,4.282826666666667,8.868566666666666,4.14283,7.607093333333333,0.8394525,0.95912125,2.2281875,4.832845,4.520365,2.01507,5.32835,5.0634,3.481145,4.355745,4.628185,2.3590833333333334,4.356185,4.939083,2.375716666666667,2.718476666666667,2.942223333333333,2.717805,5.8096,3.811355,0.6445057142857143,3.88721,3.828695,4.416895,5.453203333333334,4.839535,3.1216,5.34235,3.513955,13.736587916666666,4.789295,6.841644333333333,2.648066666666667,6.698475,4.555725,3.896845,2.36212,2.373893333333333,9.87658,2.2746,4.073066666666667,3.7813,3.6648666666666667,2.8536099999999998,3.04744,2.1473825,2.2193725,2.9878066666666663,1.952458,3.6729333333333334,3.219106666666667,2.61707,3.4515333333333333,3.408166666666667,2.42896,2.42896,2.5163100000000003,3.432366666666667,3.455666666666667,2.78488,3.2709266666666665,3.901533333333333,3.13024,2.778093333333333,3.29025,2.381343333333333,2.458675,3.8594666666666666,3.1352733333333336,1.961858,3.8497,2.5474366666666666,2.5359833333333333,2.9554066666666667,2.61722,3.2851,5.831451666666666,2.403216666666667,3.6914,2.0601866666666666,10.780348666666667,2.3086766666666665,1.8553933333333334,1.9239979999999999,1.0677444444444444,1.646092,4.73293,2.7704319999999996,2.7704319999999996,1.6982659999999998,1.5416116666666666,3.60062,3.95854,2.189503333333333,1.4436900000000001,1.634226,4.2797746666666665,3.3491999999999997,4.090366666666667,8.290063333333332,2.9012485714285714,2.714513333333333,3.2164007453416152,4.2825999999999995,2.458675,3.276783333333333,3.02656,3.10065,3.6031666666666666,0.88365,3.577936,3.1061433333333333,2.80911,4.09138,3.046663333333333,0.7027463636363636,1.9482609523809522,5.0628,2.6390685,3.23109,1.6884166666666667,1.6884166666666667,2.0199725,3.6798783333333334,1.0691700000000002,2.3409725,4.776666666666667,4.776666666666667,0.6620190476190476,6.298598999999999,3.923225,4.033375,5.34565,1.2575714285714288,3.4609666666666663,3.4196666666666666,4.959979166666667,6.311791666666666,2.85624,0.697772,2.6795466666666665,2.7735299999999996,3.287992,2.7825733333333336,2.5031733333333333,2.9154933333333335,2.347455,2.481526666666667,0.8575418181818182,3.255395,4.349862,1.38952,1.3823500000000002,5.08165,2.586425,1.63793,4.3118,1.7479040000000001,3.615025,2.372425,3.195953333333333,8.737536250000002,4.847500833333333,4.574595,5.18815,2.5261065454545455,0.715068,1.885954,7.1069233333333335,1.6813733333333334,4.378965,4.621385,3.65921,21.149812083333334,3.113853333333333,1.3593866666666665,1.16296125,3.2262566666666666,1.4354466666666665,3.984248,5.68175,3.4729595,3.187343333333333,1.3737199999999998,1.4143833333333333,3.05409,0.544273125,3.0600433333333332,3.6590666666666665,2.97582,2.587740666666667,2.52684,2.693353333333333,2.38608,2.776996666666667,1.737274,3.6274333333333337,1.398465,3.862705,4.33667,3.158163333333333,4.82419,3.29171,4.13308,5.2306,4.39441,3.1295300000000004,2.7079733333333333,2.5935,1.0908728571428572,1.0908728571428572,1.0908728571428572,2.1923525,2.931426666666667,2.6351633333333333,2.5709766666666667,2.3686133333333332,1.68131,4.325315,4.03304,3.666565,6.60221,3.327665,2.32624,1.90636,1.0372216666666667,2.4585166666666667,3.879795,2.4794666666666667,2.673306666666667,2.2682866666666666,2.93561,2.60372,2.86834,2.99192,2.6576400000000002,2.53437,3.1578133333333334,2.20092,2.0560175,1.9998375,1.6158625,3.089036666666667,3.23819,1.98379,3.964195,4.96092,3.0243333333333333,2.4309888461538463,5.952098333333334,4.40118,4.869355,5.67775,4.5746,4.24421,6.74907,1.2550625,4.197645,2.620735,5.27995,5.1279,3.791045,3.91996,2.408625,7.698145,2.888415,0.9109333333333334,8.96169,5.20634,5.934960952380953,4.69647,2.89546275,1.9754525,4.942745,4.527565,4.78397,5.3902,2.49433,4.70864,4.39273,1.7519925,4.23176,2.828225,1.36575,5.14205,0.647935294117647,4.384991666666666,3.683035,4.582615,3.20606,1.568955,3.60489,2.217895,1.3119125,2.8358633333333336,3.5212,3.13101,7.011464999999999,1.75973,6.703636666666666,9.268275,6.1047525,3.55887,1.2609,3.06493,1.2609,2.8148400000000002,2.21026,0.2990688235294118,1.1815213235294117,0.2990688235294118,0.2990688235294118,0.2990688235294118,1.1815213235294117,1.1815213235294117,0.2990688235294118,0.8824525,4.63677,3.37352,3.17381,3.865055,3.7412,3.053395,2.9258353333333336,1.622352,6.7693200000000004,2.601933333333333,4.166685,2.6354133333333336,1.0255,1.21796125,4.66855,3.977895,1.0858544444444445,1.7920000000000003,0.7059218181818182,3.202084718614718,4.424495,5.37685,3.6644666666666663,5.404774166666667,0.5610184615384616,4.29297,3.44905375,3.29354,2.6681266666666663,3.4171333333333336,2.595073333333333,3.1312800000000003,2.6735133333333336,3.005055,3.58634,5.8985,5.2755,1.5382419999999999,4.51746,4.50631,3.43123,3.67157,3.379405,0.38123199999999996,4.67824,3.58476,3.211765,3.2517380000000005,4.466605,3.911395,1.908785,3.666735,4.10699,8.057884999999999,5.1001,5.6445,4.276,4.7085475,0.8668975,2.07095,1.831585,1.44008,1.7884200000000001,4.681285,5.46085,4.35018,3.99843,3.2453200000000004,2.6853233333333333,0.9264766666666667,4.10915,1.2097183333333332,1.2367266666666665,3.14592,3.790285,4.757895,1.20440125,2.7819000000000003,8.6248,3.1166,3.6218316666666666,0.847165,3.83165,12.315723333333334,3.45217,4.052205,3.26272,3.99096,4.87427,5.002,2.12936,4.128485,0.5915207692307692,4.75574,2.2357325,1.71328,1.71328,3.5065666666666666,4.453705,1.6829666666666665,4.31361,1.4944142857142857,4.14906,2.6987933333333336,3.269016666666667,4.68068,3.438415,3.6679546666666667,2.562025,2.5785046666666664,2.5785046666666664,11.090399999999999,0.778962,3.399715,3.250526666666667,2.1027175,2.0037825,0.8718671428571428,1.403925,1.3904214285714287,2.00502,4.797215,2.36033,4.354395,2.1384766666666666,4.1768,4.76047,1.6218816666666667,2.0171025,1.0426499999999999,5.72765725,2.1396825,2.187795,1.683222,1.678108,1.16296125,2.4342545833333333,3.58774,2.3349266666666666,3.0076066666666663,2.448976666666667,2.785906666666667,1.6200999999999999,3.1583466666666666,2.7262799999999996,1.2901466666666666,1.88129,3.0527533333333334,3.0915533333333336,2.3249066666666667,1.12612,2.5893333333333333,2.207333333333333,3.2568066666666664,0.360371052631579,0.39936750000000004,2.27008,2.34971,3.077725,3.0665466666666665,2.60938,4.925755,6.04955,4.53362,4.4428,4.38953,4.08188,2.4341433333333335,3.935325,0.6871036363636364,0.06716749999999999,6.3085,0.06716749999999999,3.49365,3.077615,5.7152,3.49985,6.1205,4.9772,2.2730866666666665,2.6180233333333334,1.4207816666666666,6.04615,5.3671,3.307346666666667,5.2173,1.961565,4.22044,2.0468221739130437,3.05566,3.2756133333333337,4.264355,4.628566666666666,3.28929,2.34972,2.34972,4.11953,7.74552,3.80232,2.3679033333333335,2.5616499999999998,4.02591,3.10708,4.96136,3.947435,1.0137666666666667,4.560315,2.6630966666666667,2.8616200000000003,4.335,1.0951466666666667,2.62825,4.213015,3.98006,5.12465,2.8997,3.41999,4.10118,4.08823,4.32902,5.07245,4.39813,3.220331388888889,3.759015,2.6758066666666664,3.0498266666666667,2.9927566666666667,3.2142700000000004,4.462785,3.009463333333333,4.944649166666666,4.52276,3.613265,5.4652,4.38496,3.69792,1.4594799999999999,1.35077,4.07394,3.2488200000000003,1.5625166666666666,2.9798899999999997,3.318765,3.05871,3.735695555555555,3.2320966666666666,2.2929091666666666,12.92995613888889,2.0127099999999998,1.692918,4.469935,1.109706,3.27002,3.57765,4.727985,3.220635,1.150411111111111,2.310233333333333,2.5573833333333336,1.5727740000000001,5.46065,0.886765,0.886765,3.614746666666667,1.73102,1.8837266666666668,1.94291,3.535195,3.850565,1.944615,2.78134,3.607746666666667,2.91898,2.8314800000000004,2.09492,6.46395,6.03855,3.65055,0.839446153846154,3.577165,3.71375,0.9197454545454545,5.14215,3.3045000000000004,8.620000000000001,4.54888,4.833025,3.48502,1.4673325,3.02307,5.11005,5.0215,4.096,4.285905,4.38668,3.35442,3.554066666666667,3.554066666666667,4.824695,2.8349075,5.13365,1.791405,5.5055724999999995,5.338268333333334,1.6759333333333333,4.77654,1.11174,4.90186,4.191505,4.932725,4.872815,3.950895,2.64964,2.59685,4.71805,4.42976,5.0295,4.49767,2.206465,1.355348,4.08732,2.216693333333333,5.1016,3.067795,3.55431,7.641299999999999,3.93794,4.84524,4.995795,4.23163,4.17834,8.298225,3.490705,4.212645,9.597480000000001,4.01509,0.6240921428571429,2.0745693223443222,4.59066,0.6646873333333333,4.697105,4.289215,5.1141,4.69108,3.64511,4.454585,4.8076,4.59503,2.28046,0.7260285714285715,4.67397,4.68984,4.65801,4.374975,2.592096666666667,4.466665,3.36452,0.666986,3.82435,3.978895,2.406745,3.06816,3.793265,2.193459166666667,5.44465,4.905405,3.999905,0.87969375,3.31652,5.724796666666666,5.724796666666666,8.69923,2.02244,0.8396325,0.8396325,24.748291666666667,2.9997,8.222976666666666,0.5247266666666667,1.2272666666666667,3.2020966666666664,1.0485799999999998,3.728045,3.88348,2.1265825,2.1265825,4.412895,4.696555,3.55577,2.591815,2.591815,3.43621,4.08241,3.946755,3.1294233333333334,2.049976666666667,2.3999370833333336,4.127337000000001,1.963615,3.511365,2.6130400000000003,2.988749642857143,2.988749642857143,3.6384666666666665,0.8573377777777778,2.50201,1.57172,3.4431666666666665,2.89669,3.009793333333333,2.63117,4.60792,2.32155,3.1227400000000003,5.7109119999999995,1.43643,2.195655,3.103095,2.6378866666666667,4.089215,5.930806650793651,1.3625866666666668,3.7885000000000004,2.431635,5.09502,6.32167,1.49237,4.8498133333333335,5.042220666666667,3.160697142857143,4.6085,1.0430742857142856,1.540478,2.717315,3.8629142857142855,1.2291366666666665,2.49558,1.711925,1.9193380000000002,2.55227,3.746782,5.406462,0.9618766666666666,1.4771571428571428,2.9015766666666667,13.45974,4.751006666666667,2.75116,1.1800014285714284,2.5880983333333334,1.01412,3.238096666666667,4.269326666666666,4.82663,3.29048,5.5369,1.46497,3.846966666666667,4.272155,2.8156233333333334,3.7196900000000004,2.4609733333333335,0.9647800000000001,2.6478433333333333,2.7085833333333333,7.025355,3.251028285714286,2.6063066666666668,0.715832,4.8446,3.5519,1.47943,5.837836666666666,2.11417,2.2695166666666666,5.75075,1.3638777777777777,2.9433233333333333,1.0009818181818182,3.3072166666666667,4.451015,3.078086666666667,3.4418333333333333,2.1999366666666664,2.51748,4.575325,4.953115,5.2619,1.71685,4.529355,4.039085,4.170063333333333,3.492502,2.5305133333333334,4.406913333333333,0.9289799999999999,2.89268,4.963045,2.72545,4.162017083333334,1.4292375,2.8816633333333335,1.9460000000000002,1.9460000000000002,7.31665,3.322896666666667,5.7764375,3.5534383333333337,1.8801166666666667,2.874892380952381,4.72074,5.4631,8.708590000000001,5.159331,2.7583215,1.9135666666666669,2.177341,4.117283333333333,3.73782,1.4191280000000002,2.0645975,3.072800892857143,1.20809,3.1898199999999997,18.91601,3.5304333333333333,2.82888,2.85561,2.91626,2.6672433333333334,1.6248500000000001,2.9910200000000002,3.26367,2.8206366666666667,2.56011,5.778204000000001,2.5932566666666665,4.598605428571428,2.9075614285714284,2.5553454285714285,1.4307666666666667,3.83765,2.20414,4.14208,4.768645,3.9938,2.9901999999999997,3.18665,2.55379,3.4196333333333335,2.9537633333333333,3.5444,3.3213866666666667,0.8123945454545454,4.86779,2.514775,3.342833333333333,2.8172633333333335,2.1229325,2.2910079166666666,2.2910079166666666,3.84214125,2.3193245833333336,4.909525,4.56598,3.68399,4.721195,4.84754,4.73362,4.73362,3.978415,3.0621666666666667,5.11245,2.796055,1.688672,3.3999333333333333,4.479025,4.037495,2.5126,3.885315,5.740245,3.9675,6.506961297619047,3.075205,0.803352,0.803352,3.30365,4.639385,3.77949,3.365874,2.405203333333333,2.0345933333333335,1.8068466666666667,3.2903300000000004,6.425906,1.5010966666666665,4.1484,3.8218333333333336,3.871985,5.00085,5.35655,4.78721775,3.385733333333333,2.4618375,4.753865,3.56839,2.1759975,1.080414,4.604455,2.773975,6.211375,3.4374000000000002,2.63627,3.25845,3.69573,3.678495,4.64607,3.1644,4.975395,4.394045,4.36126,3.662905,3.53317,3.436125,4.51016,2.61092,4.79454,3.08984,4.889915,0.6672411111111111,2.2846675,1.7607875,1.965495,1.867295,2.505996666666667,2.6312333333333333,1.7872933333333334,4.91125,6.07366,1.9404866666666667,4.93315,4.609425,2.3908825,5.5933150000000005,4.184695416666666,5.10705,5.216,7.04233,2.0219833333333335,3.15268,1.91577,2.920393333333333,1.800055,1.6675,3.97544,3.476605,5.006,1.021717777777778,3.17988,4.332575,2.1968725,5.744,3.693315,2.790705,3.7687333333333335,3.2989,1.582625,1.902575,2.5136,2.853325,3.164525,1.98886,3.20991,3.20991,3.521825,3.280625,19.48768833333333,0.9851800000000001,5.256493333333333,2.10375,1.90679,3.80706,4.0712,1.93457,3.724445,4.607835,1.8186233333333335,1.8186233333333335,1.1968833333333333,2.0633766666666666,2.4454766666666665,3.175713333333333,4.504718333333333,3.850765,3.6778,0.5316947368421052,3.562858070175438,1.9860466666666667,2.20449,4.5426400000000005,3.81196,3.96348,3.67408,4.641595,4.226945,2.0153575,3.803975,5.70739,2.361625,3.811455,4.9859,2.218095,4.687845,5.2511,1.3276299999999999,2.06368,3.7713666666666668,0.79959,2.902886666666667,3.446185,4.927425,4.732215,2.729491388888889,8.13597,2.90082,3.0396566666666662,0.4405147058823529,4.09742,5.3035202380952375,3.0215738095238094,5.56925,3.80557,2.656223111111111,1.7782399999999998,5.659801,4.42391,4.37196,2.373005,2.0655675,4.13843,3.9939999999999998,3.063743333333333,1.8741825,4.165134166666666,7.0811325,2.713145,3.78347,3.552815,4.33181,1.4623571428571427,1.4623571428571427,3.0962566666666667,3.04359,4.6886,4.717965,5.8311,4.083385,2.7669,2.1570375,1.4949916666666667,1.4022014285714286,4.936065,5.6112925,5.45405,5.5662,4.735165,6.501077499999999,4.395055,2.8750166666666668,3.9354786666666666,2.2566,2.967212,1.5232139999999998,4.44998,2.3844166666666666,4.821755,5.5212,4.082925,2.7549266666666665,3.0798233333333336,1.6006142857142858,2.656025,4.0721,2.000895,0.543373125,3.29804,2.829776666666667,2.5788533333333334,2.2920066666666665,2.1476925,1.7764700000000002,0.7267572727272728,0.7267572727272728,3.6666666666666665,1.9183875,2.2666875,4.67691,5.83345,4.44553,4.498195,4.290145,4.377365,2.5649586666666666,1.21489,3.39575,3.809815,0.9242025,3.4285975000000004,2.93388,2.791925,2.21294,4.002445,2.69738,2.0178233333333333,1.348302857142857,3.87671,6.87161,3.57596,1.6832642857142859,4.774995,3.30049,3.03059,3.341355,2.765795,2.0490733333333333,1.035495,3.836515,2.4958283333333338,2.2275133333333335,1.6230466666666665,2.3414266666666665,2.2065633333333334,2.6895466666666668,2.9485912499999998,1.2234066666666668,2.137636666666667,1.090185,6.595890000000001,4.894145,4.896455,3.947865,4.26196,3.0613733333333335,1.765477777777778,4.55195,4.973395,2.572265,5.2491,2.09696,4.57911,1.0985033333333334,4.103255,4.064225,1.84199,7.68127,3.531055,1.869385,1.78591,2.2943175,2.65575,3.3238633333333336,1.3233768831168833,3.1599066666666666,5.67835,4.98449,4.738945,5.79095,5.7561,4.88709,0.9345875,4.429615,4.75942,4.448145,5.1535,4.125868333333333,4.84542,5.1612,2.95138,1.27775,1.27775,5.42165,6.080620000000001,3.05581,2.967563333333333,4.36779,3.8377,1.697492,3.905555,4.75918,3.756145,4.173805,2.9424566666666667,2.8851933333333335,4.87834,2.4504031250000002,11.21027693594151,1.8891633333333333,1.0360625,2.4961800000000003,1.67135,2.222585,2.1920575,2.09112,3.10825,5.39155,5.3941,3.03227,1.6109266666666666,6.286842857142857,1.3947357142857142,3.1068700000000002,0.522447619047619,4.06192,5.77155,3.884465,4.493695,13.104849999999999,5.53745,3.1190833333333337,2.8403899999999997,4.40724,3.00381,5.12965,1.19528,1.4670516666666666,1.1896909090909091,5.8676,4.18146,1.890158,4.853992000000001,5.15985,6.37415,5.0301,5.242,4.47498,6.4093,3.966135,5.4336,3.998315,1.50526,4.447695,5.65735,3.842135,4.06417,4.78931,3.140105,1.2648625,4.81064,3.91757,1.2407725,3.4071,3.15382,2.3578566666666667,2.8364833333333332,2.762113333333333,3.097046666666667,0.7066327272727273,3.2515933333333336,2.779693333333333,2.62692,2.19679,2.9810466666666664,1.889775,1.4944199999999999,2.4606875,2.1644,2.2879725,3.4168000000000003,2.993176666666667,0.662434,2.7184166666666667,3.743855,5.0415,2.345473333333333,3.90271,5.19725,5.36745,3.39608,3.8208,1.5188000000000001,4.6543,2.6655172222222223,4.137626666666666,3.07329125,4.60594,4.91535,5.03785,3.907795,4.205733333333334,0.9499340000000001,0.9499340000000001,2.252106153846154,1.66516,4.325165,2.6815975,2.6815975,4.93372,6.0996,3.18745,1.2429516666666667,1.6319714285714286,5.9734,3.56461,2.8201,3.26559,2.783455,3.11685,2.8201,6.9213125,3.2511,3.02974125,2.802735,1.94322,2.956985,5.85285,2.444205,3.360225,3.61683,6.2826,5.43185,5.953374999999999,5.953374999999999,5.2353,4.27216,0.5364476923076923,4.741055,4.386595,2.854825,2.828425,9.388783333333333,3.395633333333333,4.46139,3.699885,3.5811333333333333,5.86865,3.302055,3.2094449999999997,2.8745499999999997,3.105753333333333,2.5332966666666668,1.633312,1.633312,3.61344,3.51831,4.45368,2.26642,1.5693139999999999,49.28305742424242,2.6959766666666667,0.827129090909091,3.3047966666666664,1.9848025,3.2961733333333334,3.1823533333333334,3.1904066666666666,3.252525,3.0035233333333333,1.9298866666666665,1.0150975,4.417055,3.2463,4.846505,4.890555,5.35175,5.30695,5.1137,5.46245,5.5574,4.959355,5.70915,6.3321325,4.88883,5.7078,2.0741125,3.75348,6.6581,5.4175,4.05718,3.873055,3.990125,2.662055,3.95847,4.59719,3.1328033333333334,3.8179,1.68307,3.54845,1.3405239999999998,3.217475,3.82356,3.56449,6.7010749999999994,4.61728,2.3077725,4.439025,4.152835,3.984065,1.08060875,2.95395,3.25215,4.3287474999999995,1.4588,4.931555,1.4209125,5.82985,0.7301855555555555,4.697838,10.3881425,4.1294,3.481255,3.63357,1.8750666666666669,4.3493,5.3715,3.1498566666666665,4.69152,9.413437777777778,3.4471333333333334,2.32421,2.8833366666666667,2.8897933333333334,2.8416200000000003,2.850155,1.9443833333333334,2.7247,2.800133333333333,2.7662366666666665,2.839093333333333,3.39896,2.19306,1.7761833333333332,5.114875333333333,2.9136366666666667,2.5757000000000003,5.067155333333334,2.81859,1.1238175,2.1181775,2.8932599999999997,5.290314285714286,2.66255,2.190946111111111,2.190946111111111,1.57759,1.624395,2.0934,1.7495539999999998,6.17166875,4.4261375,2.68605,2.923666666666667,3.4014333333333333,2.00581,0.5241574999999999,2.62798,1.899595,0.5962692307692308,3.79944,2.663125,2.459355,3.68348,3.8476833333333333,2.512376666666667,1.6030766666666667,1.3696333333333335,2.117235,3.44712,3.825795,4.3439475000000005,3.060503333333333,3.910425,3.973935,1.1832636363636364,9.739840000000001,2.688835,3.28598,1.23338125,2.8536866666666665,2.379845,2.379845,2.379845,4.66954,6.01335,1.481385,4.99893,1.419206,5.750666666666666,1.5641180000000001,4.22629,4.34269,4.091325,3.89487,4.74086,1.857865,8.9257575,4.609105,4.982535,3.28105,4.101336666666667,3.6077999999999997,3.1687999999999996,3.86399,2.6227766666666668,4.556444285714286,4.4278241666666664,1.6505225,3.93286,1.6505225,3.404535,4.483625833333333,4.9186325,4.483625833333333,1.8139766666666668,5.74305,4.728285,4.50186,2.9187266666666667,3.080023333333333,4.73389,3.19074,5.08595,0.5680821428571429,3.083653333333333,3.131213333333333,5.547368333333333,4.719985,2.54855,4.51402,7.28144,3.64879,3.095335,2.78717,2.29172,4.11195,4.024355,4.823335,2.668955,3.90515,0.8797790000000001,4.9875,3.51432,4.194995,2.5874133333333336,3.16986,2.1826133333333333,2.942323333333333,2.81369,2.7868133333333334,3.295335,2.3549625,2.3549625,4.418209166666667,3.14079,4.36901,11.8165625,0.9643444444444444,4.646705,2.4529833333333335,2.40438,2.8915066666666664,1.3960625,7.3320035,3.5982000000000003,3.971255,3.886706666666667,2.4587166666666667,3.852866666666667,4.618008111111111,2.424123333333333,0.4830238888888889,1.6665240000000001,1.582625,5.03185,2.732195,3.15281,3.833799166666666,3.5524566666666666,2.4979862500000003,4.272265,4.50116,3.952155,4.292685,2.20612,4.50192,2.5264466666666667,5.651606666666666,3.086405,4.506965,4.50131,4.31382,4.40398,1.987285,3.78722,3.87894,2.70182,3.74142,3.20038,3.08337,3.20258,3.57356,2.7731166666666667,4.779095,1.9097833333333334,4.08298,2.79038,4.16811,3.819105,4.53031,4.576035,2.934205,4.22786,3.940785,4.12129,2.388386666666667,2.100975,2.96711,2.188455,0.8342233333333334,4.305055,2.030075,3.597745,2.67876,4.185105,3.48587,2.95345,4.09481,3.86609,4.801878666666667,4.0986,3.01787,1.43537,3.94158,2.51155,1.114111111111111,5.41965,9.127215,3.51007,3.68754,4.834205,5.14575,3.762885,2.06591,3.999685,3.89791,3.13877,3.153735,3.93708,0.62948,1.4845000000000002,6.155715,1.629225,2.664835,4.882372,2.25055,2.1165,2.72105,7.52226,2.834425,4.514345,3.73524,0.7629511111111111,3.36567,2.56379,3.758435,4.581045,6.284928333333333,0.7003809999999999,3.272115,8.10072,3.30279,1.3212111111111111,5.439049583333333,4.572705,5.7406,4.77727,4.535985,3.36542,2.6272033333333336,7.837675000000001,0.9275779999999999,3.495535,4.31698,3.24405,4.167095,3.043165,4.328475,1.4359516666666667,4.20228,3.777535,3.929585,1.7309125,4.861175,4.98615,2.4168175,2.00858,2.64835,1.47943,4.116035,3.4729595,1.6994399999999998,8.999095,5.74285,4.605125,4.16972,3.47678,4.382995,1.3621557142857144,4.558895,3.914575,5.27095,3.62243,2.579493333333333,6.629342243589744,0.89592,0.89592,2.579753333333333,0.9126014285714286,4.293555,2.824343333333333,1.0116225,1.7453766666666668,0.41225833333333334,6.4209925000000005,1.0452425,2.704445,4.01413,4.01793,3.755155,4.22939,4.99067,5.551295,2.92929,3.07166,2.347695,4.168625,4.96338,4.652165,4.216355,4.03973,6.74085,4.54845,4.523922777777778,5.235004,3.72458,3.9098325,2.30797,3.9098325,6.814925,41.618387976190476,3.95746,3.437125,3.0094266666666667,4.71787,4.592045,3.53379,3.404965,3.70812,4.0372,4.637805,1.7253666666666667,5.22515,2.6731,4.63052,4.789475,4.4355,2.3646766666666665,4.923945,3.937195,4.79128,1.4758,0.6692699999999999,1.6167719999999999,3.808,3.0452733333333337,1.302775,3.3555333333333333,2.504773333333333,2.9122133333333333,3.14803,3.1950266666666667,1.5727980000000001,2.432516666666667,3.699,1.9378728442728446,2.913656666666667,3.2046459999999994,3.0408733333333333,2.6740033333333333,3.3575666666666666,1.1554444444444443,4.34585,3.952465,1.204025,1.204025,1.204025,1.204025,2.8659524242424244,2.0300233333333333,2.3823,3.506585,4.822285,4.59031,4.74396,4.77014,5.52705,4.815685,2.432475,5.87655,4.14316,2.53727,4.780615,3.58102,4.568965,4.26578,0.8223230769230769,1.5135714285714286,1.5749933333333335,5.0273,5.46435,4.063985,4.17923,6.337448333333334,2.269773333333333,5.2377,1.7005833333333333,4.144835,5.3554,1.55363,5.91955,0.8565,5.14175,1.563354,1.3123875,3.997375,4.30963,5.4542,5.18035,5.6085,3.966625,1.829056,4.488205,1.4839825,3.74215,3.318755,2.656223111111111,1.7798975,3.20077,1.2795966666666667,3.19258,4.9135,2.8928766666666665,5.7393,124.1346273169192,0.4793077777777778,4.774385,2.6089366666666667,4.90664,4.34294,2.88569,1.6754025,0.35015857142857143,2.851735,3.77947,5.8276,2.944315,3.81198,4.69333,4.47357,4.1223,7.91018,0.6643833333333333,3.86051,0.96570875,11.84564,3.06538,3.555725,1.0499822222222222,2.21244,3.29862,2.213305,2.9714266666666664,3.359,2.31842,4.29551,2.93299,2.275916666666667,2.21815,3.72596,3.36181,3.142395,3.6084,3.753465,3.503075,2.3296533333333334,3.830465,3.35057,3.062265,1.0858733333333332,2.5755833333333333,4.29551,4.692985,5.2917,4.07092,4.50881,1.90164,10.48037,5.15085,2.832465,3.60978,5.5341,0.5938533333333333,0.5938533333333333,4.469485000000001,4.469485000000001,3.829495,3.9318333333333335,1.8265379545454548,0.6214191666666666,2.83855,4.34712,4.35257,3.89517,4.395975,5.3758875,4.65407,2.2422925,4.434365,1.8142225,2.778325,5.0500774999999996,1.6971,3.199205,0.4820357142857143,1.3017357142857142,1.3017357142857142,1.877035,4.757825,4.236345,4.985455,6.102776,2.980985,3.2694,2.050595,1.967055,4.147160833333333,3.80281,5.700006666666667,2.2415,5.700006666666667,5.113,3.55846,6.06925,3.778735,2.4121366666666666,1.9512533333333335,3.5634333333333337,1.4067525,1.43371,1.554245,1.6489,1.4971525,1.924065,3.5528999999999997,4.316955,2.439425,5.8618,3.0777566666666663,4.47807,2.584625,4.116115,3.0078366666666665,3.2746033333333333,6.027326666666666,3.4316999999999998,4.656337333333333,3.475633333333333,1.37449,2.67028,2.7492633333333334,2.6917733333333334,5.8683,4.1744075,4.91622,13.114148510362444,0.6648383333333333,1.99327775,2.42397,1.766792,1.3442071428571427,2.741875,2.504575,2.474205,2.4757275,0.7528223076923077,2.1133875,0.5122647368421053,4.78714,1.936215,3.78374,4.72335,2.4923325,5.840665,4.54627,7.46293,4.15127,2.91872,3.06941,4.779795,4.514495,2.885977047619048,4.830515,2.18776,2.18776,5.18645,3.91686,4.616045,4.08693,3.247833333333333,4.171875,5.1468,5.1575,4.69183,4.532265,4.418645,4.938805,2.41901,5.05355,1.2588633333333334,4.905685,4.622345,2.4837366666666667,2.400253333333333,4.51024,1.4331666666666667,4.672215,1.7619075,5.79592634057971,3.59019,4.53766,1.6148766666666667,3.208798333333333,3.208798333333333,12.17838,3.91648,4.45636,1.10368125,4.299021,2.3287475,1.43539,2.44693,1.984455,2.1148,1.9002759999999999,3.442595,6.13485,1.78799,5.17545,4.733301666666667,5.142,2.3789675,2.62621,4.056235,4.3321,5.14335,3.914975,7.437891666666667,3.2293333333333334,2.726296666666667,0.49034333333333335,3.79175,4.085355,3.5072666666666668,6.464771666666667,2.5778966666666667,3.0616866666666667,1.272035,1.610175,0.543373125,1.6665240000000001,3.048875,1.5649733333333333,1.7205833333333331,0.6911625,1.28969,4.60204,2.4929725,0.6458592307692308,1.7676,1.7578075,1.837714,1.37845,2.190555,1.610175,2.335125,1.28969,1.28969,0.6458592307692308,1.623257142857143,2.52786,1.2291366666666665,2.771025,0.6458592307692308,2.632525,2.52786,1.3022733333333334,1.3022733333333334,1.3022733333333334,1.9383299999999999,1.14320625,0.6458592307692308,1.14067,1.23047125,1.0677444444444444,1.8833600000000001,2.5678,0.876075,2.2038325,1.6310857142857142,0.6458592307692308,1.7354479999999999,1.610175,2.0252833333333333,2.0090166666666667,0.9083479999999999,2.0252833333333333,1.1056788888888889,2.4168175,2.3642825,2.6145,1.23047125,2.20952,1.2795966666666667,1.2795966666666667,0.9441090909090909,0.9441090909090909,0.9441090909090909,1.272035,1.610175,1.6310857142857142,1.7676,0.9669914285714285,2.0090166666666667,1.574008,1.961858,1.892428,1.272035,2.75116,12.2296425,0.6911625,2.61672,1.9390166666666666,2.718,1.01412,1.01412,0.6458592307692308,1.2029222222222222,1.7764700000000002,1.6310857142857142,1.79299,2.0090166666666667,1.2195777777777779,1.2195777777777779,1.734242,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,3.451233333333333,1.1056788888888889,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.22087305555555556,0.3957259090909091,54.686992896825394,1.468165,1.5395233333333334,1.6310857142857142,1.9390166666666666,0.9669914285714285,0.6389176470588235,0.715832,0.715832,0.715832,0.715832,4.430866666666667,16.805344166666668,3.4751666666666665,0.6629018181818181,1.713016,1.713016,1.713016,0.6629018181818181,3.048875,0.6458592307692308,1.7354479999999999,1.7205833333333331,2.6133800000000003,1.1056788888888889,2.54855,1.1056788888888889,1.53744,1.53744,2.1614166666666668,2.1614166666666668,0.6458592307692308,2.01104,2.01104,1.0095181818181818,0.22087305555555556,3.048875,1.6325200000000002,2.431635,0.6629018181818181,0.6629018181818181,0.6629018181818181,0.6629018181818181,0.6629018181818181,1.9390166666666666,0.3957259090909091,1.1056788888888889,2.4367525,2.4367525,2.59685,3.3374333333333333,0.6620190476190476,0.6620190476190476,3.2483233333333335,4.020533333333334,1.2575714285714288,3.28084,1.06678,2.619475,2.02244,1.0951466666666667,3.288743333333333,2.010175,3.31652,5.43045,2.352995,1.2756666666666667,4.528815,4.48342,2.5555866666666667,1.7447579999999998,2.5712469230769233,4.714975,1.9913180555555556,2.7094966666666664,3.5099,3.1419566666666667,2.45467,6.408383333333333,4.381375,0.22087305555555556,3.20632,5.04855,4.363575,4.466625,4.542895,4.54613,2.6718333333333333,1.859174,4.097175,4.59596,4.352775,4.784585,5.3642,3.176735,0.6996000000000001,6.838945,1.373905,3.264766,5.16405,2.6703533333333334,2.6703533333333334,0.79135,1.7798975,3.938325,3.13375,4.40539,4.186985,4.85286,5.2326,0.9576985714285715,4.61273,4.99155,7.183891736111112,2.2789699999999997,4.233505,4.171505,3.73425,4.30083,4.46936,4.53369,5.363194999999999,5.5592,4.4189,3.79072,4.533083333333334,7.545417,1.8943375,1.8224692307692307,2.8641,1.73121,3.0157366666666667,1.8396100000000002,5.06875,3.1343,5.3675,1.9987660000000003,4.91886,3.997755,3.563395,4.34524,3.7759,2.454543333333333,2.8404333333333334,2.79848,2.70215,2.5643366666666667,1.6517433333333333,2.73128,2.8880733333333333,1.9286180000000002,1.9286180000000002,4.06656,2.862526666666667,2.0192900000000003,3.1451433333333334,2.032906666666667,2.228396666666667,3.02233,2.64695,3.032996666666667,5.1524,4.79721,4.56032,3.6662006666666667,3.6662006666666667,3.855655,3.2645666666666666,4.472755,4.38508,4.13899,3.546885,3.29879,7.462,2.10024,1.885455,3.39066,3.172125,1.2333233333333333,1.2333233333333333,3.687415,1.800735,3.962892,3.60726,3.06056,2.1253604999999998,2.20197525,0.5311216666666666,2.85389,3.942335,2.092325,2.458605,4.244815,1.1775966666666666,4.62294,1.1869066666666666,0.4052671428571428,0.5497664285714285,22.168218765873014,0.5497664285714285,0.4052671428571428,0.6942657142857143,11.086739999999999,3.0445266666666666,3.902525,4.527925,3.5517275,2.847145,4.268099285714285,2.23841,2.84096,3.58185,3.05521,4.186115,5.06775,3.505665,2.22403,3.327385,3.836235,3.89081,3.071065,1.112556,1.112556,1.112556,1.112556,3.36291,2.729685,3.159765,1.8047000000000002,1.188555,2.43962,3.66207,4.199765,2.816025,3.82356,2.592085,2.6987933333333336,3.89105,4.482855,1.1303983333333334,3.25151,1.08359,2.7113133333333335,2.2054666666666667,3.730566666666667,5.26385,2.45859,4.029635,4.2527566666666665,0.8117799206349207,0.22670214285714288,0.22670214285714288,0.5850777777777778,0.22670214285714288,0.22670214285714288,0.22670214285714288,0.5850777777777778,4.15487,7.597736666666666,3.547875,0.56869875,3.924195,7.386099999999999,3.32868,3.2305733333333335,1.1080216666666667,4.428565,5.65235,4.44336,4.56409,1.666458,4.83468,2.163133333333333,2.211948,3.737825,5.34565,0.8393328571428571,0.8393328571428571,3.47361,2.9292933333333333,1.816925,3.14871,2.80295,5.7287,5.05645,5.68635,5.6309,5.77705,2.478095,1.66414,4.007105,3.519285,2.289815,3.56513,3.175805,1.966395,1.1420533333333334,4.06323,3.19947,5.453203333333334,6.406361666666666,1.5846133333333334,3.879195,1.09903,2.55573,3.65155,4.21143,0.3720664285714285,3.961085,4.316225,0.941124,2.7800100000000003,7.595836666666667,4.40668,2.078495,5.894557,4.47224,3.71422,1.4854733333333332,5.844613333333333,3.0692633333333332,3.256073333333333,3.5350333333333332,1.87272,1.87272,5.87005,5.87005,3.4029214285714287,3.4029214285714287,8.21866,3.4029214285714287,3.4029214285714287,4.078099206349206,6.5486,3.430065,3.6422350000000003,2.976656666666667,4.047935,4.311195,3.3251233333333334,3.302773333333333,4.361775,3.3017566666666665,2.7128599999999996,3.11951,2.3323933333333335,2.664865,5.0132,7.62941,6.907575,4.46737,3.74123,4.004575,6.378636,4.96009,3.94464,4.061875,3.79592,2.1997833333333334,2.3523,2.05547,5.434,5.15245,4.89307,4.40347,2.3165733333333334,2.6887133333333337,7.226856666666667,1.9383299999999999,2.52716,3.3798666666666666,3.3798666666666666,3.204115,5.0196,0.7973633333333333,3.5113333333333334,3.9504,2.79717,10.3135025,4.38725,2.35269,2.403633333333333,5.43835,6.06675,3.052505,5.77975,2.56488,4.53747,2.984552857142857,4.7292,5.2245,4.815325,1.049,3.5902666666666665,1.08237125,2.5758533333333333,5.233591617647059,7.575473333333333,2.75656,2.8604299999999996,7.027036666666667,1.9216640000000003,4.65955,5.70095,3.638735,3.59666,2.272136666666667,4.82435,2.41644875,0.48820769230769234,5.3192,3.056915,3.5374,5.0651,4.89512,5.32125,7.0345225,4.793685,5.61545,7.11834,53.591133,4.194205,3.984085,4.655825,6.1744,4.58387,5.0183,4.297375,4.803515,1.9087075,4.203485,4.05868,4.381195,2.539955,4.867355,4.634855,1.638576,5.62905,6.71675,7.51052,5.71255,3.12039,4.94359,3.268545,3.25923,3.901445,4.24841,3.73258,6.80681,2.77805,1.0808914285714286,2.347955,0.5695319999999999,0.5695319999999999,3.51622,0.5695319999999999,2.523891857142857,2.523891857142857,3.192357857142857,4.482189,4.981436857142857,2.347955,4.594275833333334,2.780053333333333,1.4814383333333332,5.76165,2.08668,7.528761333333333,5.980063333333333,11.788476166666667,3.2817133333333337,2.7988033333333333,0.23249666666666666,1.830397,2.8053933333333334,0.8396725,1.73395,2.5614033333333333,1.8874475,2.838225,0.69976,28.058631249999998,2.0024075,0.7636830769230769,2.742093333333333,2.742093333333333,0.4302811111111111,1.688905,3.0498475000000003,1.311815,1.9271125,1.6218975,4.3399,2.842585,1.9499266666666666,2.2865033333333336,1.1393233333333332,2.0097475,1.6436583333333334,5.600056166666667,3.93381,7.112688333333334,2.399015,3.4136,1.0042133333333334,2.387345,4.781405,6.645,3.2866366666666664,2.2622933333333335,5.702719166666666,2.2575525,2.868306666666667,4.12124,1.0705266666666666,3.810233333333333,2.3911633333333335,5.89465,5.14895,6.29285,3.43474,4.17288,4.17288,5.3641,1.72039,5.6312,2.861916666666667,1.62186,4.06084,4.013185,5.6172485,4.92595,2.9914433333333332,2.3659866666666667,2.7314,1.1982285714285716,4.88808,1.05466125,5.459456666666666,4.70171,8.000526,4.633955,4.33451,4.18959,8.530483333333333,4.83754,5.00055,1.0830899999999999,0.7416,4.889315,5.0075,2.192615,3.30001,3.54231,4.398995,2.579965,4.77476,2.6123566666666664,5.08125,5.7116,4.960975,4.624545,4.73321,2.908245,7.0369505,3.405915,4.896725,3.31879,4.02862,5.797876904761905,0.5873771428571429,3.7274666666666665,1.77881,0.7291255555555556,4.3702,3.879965,1.0461025,2.006835,5.76014,4.637445,2.892475,2.73478,2.6374933333333335,5.3592,3.633205,1.6627116666666666,4.239975,2.66783,3.2146500000000002,4.52854,5.01785,3.0365808333333333,3.9773666666666667,3.7186,1.966226,7.3773,4.916525,3.90231,4.89028,2.3674125,3.95289,4.870155,2.475505,4.00248,10.8369,3.985415,4.654083333333333,4.79484,4.68418,2.5478,3.94299,4.212685,4.87684,3.11115,4.296065,1.646355,2.7120533333333334,3.429345,3.40605,5.27355,1.811186,4.290645,2.8985833333333333,5.1544,3.030886666666667,1.88439,4.163935,4.36242,1.0953825,3.30021,2.6966633333333334,4.606706666666667,1.5979160000000001,1.5735133333333333,1.1517075,4.258565,5.07485,6.1779825,3.9936849999999997,2.584685,2.338695,2.000125,1.935775,1.5602,5.1244,3.251325,1.89747,0.9869153846153846,20.730547673076924,3.07314,3.1665391666666665,4.264623333333334,4.378620512820513,1.29599,2.702627166666667,3.1937295454545453,1.164306,1.90268,4.0898,5.31165,3.860825,3.410645,5.29945,4.83141,7.31447,5.088911666666666,5.18435,3.72625,2.6338333333333335,3.980525,3.966515,3.8231,4.261395,2.125305,5.0438,8.8942,3.975365,3.38111,3.783015,0.56389125,3.3059433333333335,2.05255,2.2271325,4.332965,3.816955,4.879735,4.094645,2.82046,2.2135975,1.63891,0.938232,1.4228433333333335,1.2070833333333333,4.08981,4.000015,4.583535,4.786985,7.32911,2.5866333333333333,1.4165860000000001,2.3336033333333335,7.584733333333332,3.51958,3.08695,3.13543,5.0306,3.5168524999999997,3.69547,1.66188,4.757795,5.10135,4.140965,3.91368,3.619735,4.2233,4.7756,4.06609,4.4668,3.589815,2.08794,3.2190433333333335,3.42788,5.35775,2.929805,4.4376425,4.47115,2.943285,2.6073133333333334,2.32319,2.40206,2.542424333333333,2.542424333333333,1.9980566666666668,3.18276,2.3774866666666665,2.44509,2.05203,4.02236,2.3424866666666664,3.2408066666666664,2.681703333333333,1.7128966666666667,4.406485,2.919665,3.45331,1.88593,5.2494,5.44195,4.842483055555555,2.432125,2.23894,2.82534,2.132285,2.015785,2.74284,2.0261175,2.4039025,2.483,6.960877,4.342805,3.650955,0.611848125,4.543045,4.17638,4.1393,3.249115,3.83066,3.7790299999999997,6.182,4.548265,3.58995,2.740684642857143,2.230198,2.4577400000000003,1.6692019999999999,1.78567,1.5270519999999999,2.05326,1.88275,1.2321616666666666,4.156379142857143,0.6458592307692308,0.54546,2.1937,1.5297366666666665,1.489068,1.5104749999999998,2.3139651515151516,1.5278866666666666,1.748808,0.598155,173.17843148669468,0.5091213333333333,2.1087800000000003,1.024212,1.3102775,2.2115,1.559135,2.185685,2.45825,2.142545,7.0645,3.17626,3.5754085714285715,1.7146533333333334,2.9731,1.3131716666666666,1.3131716666666666,5.741092500000001,0.5067277777777778,2.22119,3.3148466666666665,3.123866666666667,0.7361654545454546,0.6592647058823529,1.3022560512820511,1.103809090909091,2.808475,4.097725,2.1980475,2.22654,2.394553333333333,4.498805277777778,1.0846388888888887,4.48911,3.59176,3.471235,6.87911,1.8510066666666667,3.188865,2.901445,4.108979,2.08091,3.326725,3.498895,3.331655,4.29268,2.97587,6.32551,2.210435,2.48366,3.21798,1.4614,2.63416,2.8782,2.79141,1.90138,1.463685,2.31888,3.93855,5.9866166666666665,2.85986,2.88036,1.461855,4.28867,3.3911,4.024266666666667,2.928205,25.140518736111115,2.5168673333333333,2.7238866666666666,2.8828033333333334,3.610666666666667,3.1596533333333334,5.93192,3.1648,2.6906266666666667,3.3376,3.5330333333333335,2.168946666666667,3.2715933333333336,3.1669133333333335,2.9808466666666664,1.7205000000000001,1.64129075,0.598562,2.2227633333333334,2.1644475,0.213935625,2.580146666666667,2.87328,0.213935625,0.213935625,1.9025189583333335,0.213935625,0.213935625,0.213935625,0.213935625,2.707516666666667,2.592093333333333,0.5896,3.3670764285714285,1.61839,2.0103999999999997,5.24655,4.3726225,6.2028575,2.1991375,4.928755,2.263075,3.12328,1.3720885714285715,5.793283333333333,2.774903333333333,5.9169075,0.9174416666666666,1.3140675,5.0265,4.76501,36.04167369180819,1.5926740000000001,1.32427,2.3051566666666665,2.3609225,0.9441090909090909,2.3551866666666665,2.2890633333333334,2.7792366666666664,1.99191,2.45691,1.6031633333333333,3.0355600000000003,2.5069266666666667,2.7406133333333336,2.67366,2.4242733333333333,4.22161,3.3481666666666663,1.2280842857142857,3.877945,4.10149,20.813092722222223,2.9726,3.287183333333333,2.7567733333333333,0.8747640000000001,3.2872339999999998,1.6850962222222223,3.2872339999999998,2.48435,2.6137833333333336,2.9797933333333333,1.7260725,2.022735,4.617125,4.000115,5.4063,4.319245,1.646926,5.45235,1.6819625,4.853105,4.106052238095238,5.09155,0.7921154545454545,2.21465,2.33291,3.000736,3.34158,1.04273125,3.471055,2.05842,2.1776666666666666,1.077928,1.077928,2.0051200000000002,3.2956866666666667,4.85976,29.87903,6.304410000000001,1.9032033333333331,3.5533766666666664,0.365146,6.8300125,4.671445,3.04456,3.211105,5.9024375000000004,4.00051,1.2556125,4.6328,1.237082,3.523215,5.18785,4.94795,2.09809,3.180235,4.39295,3.46744,3.4703465,3.736515,1.2902799999999999,2.6357695833333334,4.107975,4.4592825000000005,3.0124866666666663,2.9644999999999997,3.142556666666667,3.479545,3.97415,4.30203,4.071233333333333,1.62817,6.31245,2.54725,1.7738720000000001,4.13027,5.27193,4.065875,3.498405,0.794435,2.9641,3.45439,1.9735,4.676101666666667,2.816995,3.89923,2.9147366666666668,3.135946666666667,2.733655,3.3897333333333335,3.3630999999999998,3.426633333333333,5.02015,4.63014,5.12155,1.781085,4.22505,4.15893,1.840075,1.82322,1.7514425,4.186986666666667,4.72036,5.416544895833334,4.02029,3.538233333333333,4.606185,3.3528333333333333,1.4417483333333332,3.26103,3.00154,3.66067,4.35806,4.389505,4.263925,2.71288,1.936015,1.628845,1.52451,3.540395,2.387705,2.267225,3.232265,4.90159,1.51754,5.4575,1.3835785714285715,1.7180175,3.241385,2.89075,3.01146,3.559555,2.95799,1.55487,0.9683636315789474,3.460235,3.605553333333333,4.78214,8.512705,2.44544,3.115513333333333,1.5897266666666667,2.746863333333333,2.8831466666666667,1.0881983333333334,3.256326666666667,2.7563666666666666,3.075396666666667,3.8922666666666665,3.4154999999999998,6.736341666666666,3.1910000000000003,0.7575818181818181,1.88465,3.34298,3.24374,3.5354,3.649433333333333,2.818981,3.552255,3.150525,1.9925588571428572,3.908255,2.907616666666667,3.493445,2.017936666666667,4.27639,5.3114,4.647775,4.22937,4.67667,1.2839666666666667,4.54541,3.091393333333333,2.69487,4.792985,2.7585833333333336,3.3699999999999997,0.3653085714285714,0.3653085714285714,3.7729033333333333,5.2553,6.22245,3.04363,3.935105,3.61101,3.062935,5.068,4.80701,1.02971125,4.19512,2.8354766666666666,4.438053333333333,3.021293333333333,3.142389166666667,1.76983,3.3951935714285715,2.6966533333333333,2.796053333333333,2.774923333333333,2.815386666666667,2.0487433333333334,23.6192482585639,5.1931,4.326665,4.413535,3.379115,5.1611275,3.34847,4.79569,4.391195,4.02753,4.56067,4.175725,2.656423333333333,3.01717,3.3816333333333333,3.21908,2.68289,4.232495,3.52038,4.802462500000001,5.13445,4.03276,1.324492,1.52888,1.52888,4.821315,4.209345,2.6788399999999997,2.391383333333333,2.900256666666667,4.34378,3.764585,8.252663333333333,3.112413333333333,3.226483333333333,2.936351666666667,4.66954,1.6546983333333334,6.000265,2.4711133333333333,2.75785,1.6935575,4.047025,3.50613,6.55273,3.22905,2.4557,4.329915,4.229851333333333,1.5682925,2.6531533333333335,1.6639066666666666,8.19894,4.321595,6.817623333333334,2.3150675,4.266575,3.742545,3.9933,5.4504,3.5467999999999997,3.5467999999999997,2.10152,4.45351,5.11595,2.59083,6.576635714285715,1.8747675,6.09605,9.914638,3.5081,5.140319333333334,2.2219233333333333,1.919805,0.601556875,4.409625,2.65995,2.5139,4.126234999999999,2.4104675,2.526893333333333,3.96757,5.16185,4.567825,4.44292,5.01295,4.417545,2.4324575,1.0313636363636365,2.90801,3.16798,2.890216666666667,5.60285,3.962695,3.599295,3.131975,2.06368,4.028515,1.05356875,5.14055,0.9405833333333332,5.3421,3.26367,4.923805,5.01938,3.218385,3.311025,3.261086666666667,2.4794633333333334,4.204525,3.10657,2.494325,4.000485,4.78719,6.621115,4.37509,1.692815,3.57425,3.41312,5.357885,2.071865,2.071865,2.8287366666666665,2.376403333333333,2.5776733333333333,2.7391233333333336,0.89951,6.11645,4.035265,1.8517175,2.179795,2.571265,3.66791,2.696055,3.718,4.75721,5.8859,5.23575,5.97715,5.90555,1.376075,3.866455,1.0768833333333332,2.39787,4.404066666666666,2.468325,3.01701,3.15827,4.52431,3.266595,0.45173157894736843,4.55637,4.2118,4.81499,3.34981,4.87871,5.64095,4.383125,3.97767,1.747015,4.887385,2.106335,4.433866666666667,4.433866666666667,6.53995,5.54105,5.95525,5.21985,2.728335,1.6546983333333334,5.01695,2.257493333333333,1.60712,1.948965,4.223155,4.1738,4.601815,8.09457,1.6130950000000002,5.63595,1.3273483333333334,3.981245,6.2785,1.9621925,4.97601,2.7763000000000004,4.37639,3.470645,4.25142,3.307346666666667,4.28677,4.01821,6.36725,4.095445,3.91965,3.99475,5.6962,4.16181,4.557795,3.64173,4.268365,7.7511616666666665,3.458375,7.07491,3.134945,5.3149,6.501157272727273,5.0073,3.44179,2.15687,5.22075,4.13293,0.7719622222222222,8.63559,6.19805,4.88175,3.0283183333333334,5.01355,2.84314,1.857276,3.891025,1.1303983333333334,5.07225,3.09434,4.588535,5.3891,4.945455,4.15796,2.3167966666666664,4.43344,5.26775,1.346245,6.847756666666667,3.062885,3.961605,5.06705,3.96023,2.122395,4.608505,4.897055,4.82424,3.08314,4.211665,3.774295,5.78615,4.895085,3.673175,2.0146325,2.0146325,6.985096666666667,1.6136428571428572,5.3031,4.42529,5.55665,3.842215,3.70396,5.01035,3.906605,0.8349016666666667,0.8349016666666667,0.8349016666666667,3.56186,2.92707,3.91775,4.731983111111111,2.798535,1.4285583333333334,4.88448,2.186575,2.61522,4.120795,5.20275,1.548435,2.2313400000000003,5.56196,3.945505,2.70879,4.48886,1.56984,1.97562,3.2523466666666665,2.846395,5.75835,1.418548,1.6207799999999999,1.11557625,4.040015,3.35198,2.9504099999999998,3.03483,5.556,1.8150099999999998,2.289365,3.16791,1.6019571428571429,3.651755,3.68816,2.4323925,5.9498,5.6395,2.89846,4.822195,4.628305,3.58858,3.87827,4.365175,3.9636,6.46294,5.04,1.7162233333333334,1.7594833333333335,3.624355,4.68903,4.10136,3.83128,3.2419233333333337,4.40449,5.25255,5.02255,2.7213266666666667,5.29345,4.07135,5.2658,7.216455,4.837935,0.7373772727272727,4.064735,4.0214025,2.34315,4.28633,3.7664666666666666,5.91545,3.858675,3.96727,3.75103,4.10797,4.98357,4.653615,3.971335,4.572785,5.2302,4.188285,3.11191,2.80032,6.22912,4.82592,1.820248,3.31397,4.0815425,3.8288,5.026,4.51353,2.638456666666667,0.9226822222222223,4.383396969696969,7.494377500000001,3.910915,5.0676,3.540575,7.799558333333334,4.19217,3.4540333333333333,2.655066666666667,3.663945,1.976105,3.346605,4.512575,2.5466094999999997,4.202845,5.14805,1.38914,5.02805,0.7338928571428571,5.12495,4.42278,4.9898,4.76712,1.0300883333333333,1.72143,4.85554,1.91966,4.072025,0.5321666666666667,5.67625,3.128745,1.6081600000000003,6.2438025,6.7154,0.85852,1.624064,1.200958,1.200958,1.200958,2.1219333333333332,4.39778,4.156875,4.15223,3.366375,5.1848,4.0215,1.941038,4.130845,5.4082,0.29174634146341466,3.61357,4.812275,5.51395,40.832217348484846,5.4998225,4.44612,11.107707999999999,3.910345,4.262145,7.773501666666666,3.11703,4.528655,4.358015,4.91508,9.889334999999999,4.065875,2.46592,3.450665,5.44925,4.138495,3.956095,4.46336,2.272975,4.581515,4.66456,7.26499,4.516055,5.19595,2.3653225,4.089875,0.5247575,1.4272316666666667,3.71042,6.3339,2.90502,1.3027733333333333,1.3027733333333333,3.58506,3.80429,4.2648,2.655045,1.8810066666666667,3.81965,4.340825,1.8918425,3.0251300000000003,1.6792079999999998,1.8724699999999999,4.147835,4.4804,2.2569,4.605825,2.35837,2.18173,3.498925,3.53508,4.02859,3.757235,6.081652999999999,2.491703,3.937465,0.7647327272727273,0.6529066666666666,3.718505,2.119915,8.94308,3.4751666666666665,5.20365,1.6418175,4.425675,1.6407766666666666,4.23386,4.611985,2.73082,4.04286,5.51265,0.42094750000000003,0.42094750000000003,3.3844999999999996,3.4156666666666666,3.1672233333333337,3.82579,3.63064,5.09355,0.9459181818181818,10.020973333333334,9.51768,2.190555,5.0204275,4.85566,5.51775,3.42258,2.6663099999999997,2.0152,1.9140325,9.99567,2.2093475,2.7834233333333334,3.841786,5.37915,3.841786,2.628525,2.9365799999999997,2.9829233333333334,0.77998,5.404774166666667,3.07282,2.5216366666666667,4.16004,8.97301,10.02163,4.202765,3.97934,4.691575,6.981305,2.0031025,1.3947125,27.027645833333334,4.33594,4.150345,0.9420379999999999,4.809855,4.26314,4.31037,4.84556,4.93136,5.828013333333333,3.0271500000000002,2.0347666666666666,0.6954882352941176,0.7714108333333334,4.840155,4.513735,1.4683316666666668,4.72963,0.8707333333333334,3.5721000000000003,1.4547400000000001,4.18498,5.63555,1.9366,2.50248,2.53816,3.99766,2.781895,0.525733888888889,4.41022,3.63,2.6093866666666665,3.324225,5.3932,2.82886,4.332245,2.925765,4.815935,8.904916666666667,4.957185,6.85885,2.66285,2.63387,4.071765,4.4869674999999996,4.403705,4.434905,3.69362,4.740835,1.2987125,3.72440625,3.3142210714285714,0.772,1.52888,1.52888,5.0011,7.473275000000001,0.8587846153846154,5.1472,0.9307,2.9036633333333337,2.35405,2.643030681818182,6.72748,2.70609,1.1162999999999998,2.545173333333333,1.2658875,2.590126666666667,3.1048566666666666,3.145963333333333,3.168886666666667,2.5019933333333335,0.9307,4.398675,4.61429,5.668,2.74642,5.0856,2.24968,5.8075,4.73793,4.44625,3.0370066666666666,3.593045,2.2088625,1.3925725,4.176485,2.7937,4.47325,5.4226,1.7693819999999998,4.796755,2.509403333333333,6.396546666666667,3.47236,2.69268,0.9307,2.35041,3.09374,7.0329419444444445,2.4586366666666666,1.379766,2.4586366666666666,0.46064666666666665,1.1101839999999998,3.457565,3.923185,1.8686425,3.53592,3.739986,0.598411,0.598411,0.598411,7.041,1.588288,0.7475272727272727,2.591535,39.77799874675325,1.8095577777777776,0.6751777777777778,2.6892475,0.6751777777777778,3.741065,1.946195,2.40562,2.6561266666666667,5.2522,4.216415,4.297015,2.7582,0.8935342857142857,4.370435,3.030466666666667,4.8396,1.0358485714285715,2.541625,2.541625,4.00973,4.960605,3.97587,5.0539499999999995,3.387085,4.55781,5.11955,1.8077480000000001,1.2100825,5.52645,6.45985,3.868225,0.658399,4.50976,4.21582,0.8990975,4.351165,2.741705,4.21336,4.088765,1.8359518181818182,1.8359518181818182,4.41006,3.42604,0.9353777777777778,2.99411,3.17266,4.07839,3.95059,4.586985,0.41300428571428577,0.29048823529411766,0.29048823529411766,0.29048823529411766,0.7034925210084034,0.61269,0.674123,0.29048823529411766,0.29048823529411766,7.804535,0.29048823529411766,0.7034925210084034,3.61064,1.27321,4.44607,1.1855383333333334,0.6721753846153846,0.8990975,2.55401,2.746675,4.00424,2.98179,0.29048823529411766,0.29048823529411766,4.475085,3.62665,4.330225,2.533885,3.692075,1.492146,3.81503,0.674123,0.674123,5.10255,3.179,2.7831,2.80701,4.22277,1.02948,0.7664853846153845,10.834610000000001,1.264675,4.47795,4.39186,5.2368,2.0486,0.41142695652173916,0.850415,3.058073333333333,3.28272,3.3425,4.68472,1.436972,6.368,4.11263,5.14396,4.517435,3.16084,3.0551333333333335,6.374786666666667,2.8762866666666667,5.1012,4.278935,4.2527566666666665,6.287915,0.6162733333333333,4.289845,3.1784533333333336,2.0222366666666667,0.8346711111111111,4.260895,5.71826,3.45356,2.52717,2.21097,5.1384,2.728765,2.90826,0.956908,0.46190846153846155,3.98294,0.41084533333333334,0.7764445454545453,3.93292,3.02279,4.35081,2.702485,5.9039,4.257275,6.4644966666666654,3.70083,4.057325,4.24129,1.5146325,5.3665475,1.8512160000000002,4.460065,2.4417525,6.215973333333333,2.97009,1.27081,4.409835,7.0415600000000005,6.478592916666666,3.2256666666666667,0.8242791666666666,2.69154,4.945555,3.986605,4.557105,4.482225,4.34783,4.54299,3.2825,4.15377,1.75411,2.237555,1.46305,3.827725,9.243034999999999,3.215905,3.615775,6.1416,2.754825,4.36767,2.739686666666667,3.2161589999999998,3.337205,5.79955,3.6086,3.65428,3.79284,5.20975,5.6213,5.7834,4.489233,4.989715,4.98954,3.41763,5.30395,8.012,0.9239344444444444,4.959145,4.20787,4.541225,5.09625,5.83345,2.57735,9.14967,2.46422,3.284955,5.588,3.782905,4.454115,2.15632,2.035085,2.8860799999999998,3.5704999999999996,2.0404966666666664,3.102786666666667,4.62563,4.58105,4.041055,3.460985,5.15176,3.373015,3.10442,3.8826425,5.38995,3.028225,5.448662833333334,4.05292,4.2405,4.0826,8.34187,3.90133,3.59511,4.606925,5.02195,3.65441,8.97371,1.2557033333333334,2.39056,3.91918,2.9119200000000003,2.9119200000000003,1.92786,8.273050000000001,0.9662055555555555,3.55962,0.8687825,2.289365,4.650705,4.527945,3.558045,3.99314,3.13574,3.455215,4.21691,3.725365,4.486525,2.82403,2.90861,4.4929,5.097230833333334,3.77711,4.87946,1.993324,1.6241320000000001,2.64284,5.59675,2.3368675,1.6501733333333333,1.97177,4.768565,5.0007,3.01555,3.40065,0.49768555555555555,2.368315,8.092645000000001,3.176495,1.5022466666666665,0.8824525,1.18062,1.97741,2.0374625,0.90369,2.0668666666666664,4.1869235,4.51378,5.2688,2.655753333333333,2.2530575,6.9875425,2.841325,1.9122216666666667,1.9122216666666667,1.9122216666666667,6.532583333333333,2.24095,3.77315,2.939945,0.492868,1.10819,2.163255,5.87598,0.453105,4.12644,3.8548233333333335,5.19725,3.0152883333333333,0.453105,3.0152883333333333,0.92608375,1.233082,5.914,4.56079,6.9529049999999994,4.024415,4.79384,3.81917,4.162935,5.25685,4.77599,6.2904,3.655545,3.31135,5.40575,4.5264,4.250455,4.367825,5.5349,1.4127483333333333,3.0016233333333333,1.06528625,2.23741,3.1646722222222223,1.4253722222222223,6.7009775000000005,5.357885,2.7499949999999997,4.34325,2.80341,4.96124,3.00849,4.480925,5.1638,9.612564166666667,5.9391,4.762645,2.3324975,2.851255,2.2041399999999998,0.56389125,2.2405415555555557,6.09675,5.0906,4.66982,4.67715,0.6160826666666667,2.0943975,1.4329275,4.384775,0.8109000000000001,6.621767500000001,2.0165525,1.0907875,1.0907875,3.7050319999999997,2.0372399999999997,3.5452666666666666,2.625015,4.80723,3.6436325,3.6436325,4.596345,5.906948333333333,2.751,2.48753,3.4606999999999997,3.97937,1.971554,2.759463333333333,5.73255,5.343,4.643015,4.29898,3.958243333333333,4.64738,3.672668333333333,3.12936,2.1674625,4.120625,5.1992,3.00299125,4.99096,5.9736,2.085026666666667,2.7814866666666664,6.53485,6.87925,1.467018,2.672525,2.321315,2.792476666666667,2.1383625,2.61365,2.5585305,1.1204444444444444,1.91753,2.4740825,2.242975,2.4544083333333333,2.4544083333333333,3.0151529999999998,2.9087,2.2455038461538464,2.64445,2.4256575,1.9813880000000001,1.5594320000000002,5.064,14.482008833333333,3.0844400000000003,3.7279,1.8694859999999998,1.8694859999999998,1.633515,1.633515,2.916846666666667,3.9154,2.901953333333333,1.89438,1.89438,3.6231000000000004,2.936033333333333,1.06064,1.4917,3.1093166666666665,3.1289466666666663,3.8521666666666667,2.637893809523809,3.3111599999999997,3.317043333333333,0.707008,2.71675,3.7163153333333327,7.357261666666666,5.09945,4.26231,4.380625,3.44611,4.64573,4.79022,3.0175666666666667,4.381515,1.4149883333333333,3.250173333333333,5.69365,5.30815,2.54827,1.4212516666666666,3.0076,2.68867,3.0562133333333334,1.556515,0.7369642857142857,3.407833333333333,5.128330833333333,4.84283,4.64621,4.826505,3.089066666666667,2.0859533333333333,3.271194166666667,2.59042,3.601266666666667,3.1641366666666664,3.5368,2.8135433333333335,3.2823233333333337,3.4082000000000003,2.813636666666667,5.0222,5.25865,5.278861666666667,5.278861666666667,3.332615,4.039765,3.718925,3.64827,2.77282,5.85665,3.43105,2.8239699999999996,6.36775,0.8797333333333334,5.19,4.582035,2.5284833333333334,4.7997966666666665,2.88922,1.7976999999999999,1.3581757142857143,2.15979,0.935716,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.23549464285714286,0.5284485714285714,0.5284485714285714,1.13362,0.8158795833333333,1.6439480681818182,0.9227542857142856,0.9227542857142856,1.2571947348484849,0.38675333333333334,0.3940166666666667,1.771555,2.0187475,2.6357233333333334,2.545625,7.04529,3.0476500000000004,3.97927,3.956376666666667,4.349862,1.38952,4.855495,4.278225,4.57194,2.96036,1.479972,4.207055769230769,3.679475,4.95096,4.792805,3.090385,4.25803,4.19383,4.7309,1.211698,4.26086,4.812995,3.245105,2.4216466666666667,3.33745,2.54482,3.207855,3.750535,3.1611966666666667,5.1349,8.728215,3.76924,4.95026,4.63915,4.4610916666666665,2.6960766666666665,3.560725,1.2359157142857142,3.99354,3.31062,1.864698,1.0186525,2.86728,1.202235,0.5680146666666667,3.6676333333333333,4.224815,5.307643333333333,3.7185,2.396815,3.119735,4.82982,4.058566666666667,4.423585,2.56475,2.2451933333333334,4.344925,4.287815,4.28952,5.2011,4.394085,3.61771,5.06505,3.18525,4.755355,2.19665125,5.03255,5.19695,3.44934,4.043415,2.477055,3.70861,5.41905,4.405165,5.4214,5.28535,4.957305,2.62682,5.0691,4.81632,4.844905,2.594175,1.07996125,4.01507,5.1282,4.28992,4.73897,1.805835,4.43141,2.072615,5.16815,4.74282,4.830665,2.1789925,4.206185,4.90475,4.478665,2.7619066666666665,4.56377,5.16545,4.97591,3.738035,2.594175,2.310745,2.98179,4.593565,3.814275,4.298685,3.579755,5.3267,2.243665,7.34565,4.787045,4.37604,5.249313368055555,4.796835,5.1172,3.35634125,2.55122,2.55122,3.971725,3.817785,4.520805,2.256845,3.17247,0.9932075,2.8510333333333335,2.9609233333333336,2.643683333333333,3.3381666666666665,4.740505,2.9161333333333332,5.5474,2.8125466666666665,4.216685,4.57707,2.042785,4.15511,2.09059,3.1161933333333334,3.947055,0.9890760000000001,5.27855,4.69317,7.021599999999999,4.85449,5.3423,1.3593242857142855,4.57563,6.29165,8.54644,2.9372000000000003,3.4296333333333333,1.941084,0.856202,4.025595,1.0482542857142858,4.261085,4.54108,4.971885,3.25612,3.981055,1.2769957142857142,3.705445,3.661825,4.41116,4.153005,3.89325,4.045785,2.3212225,4.452555,4.98078,5.6385,4.823115,3.718795,0.4341966666666667,0.4341966666666667,0.4341966666666667,0.4341966666666667,5.41735,2.9388,6.28315,3.1547433333333337,5.37255,4.852415,3.534085,2.098085,2.5155133333333333,1.5453733333333333,5.2949,3.02862,4.098865,3.36394,3.39065,1.4717,1.1848425,4.50605,2.463675,6.070916666666666,3.80969,5.4502,2.25262,1.660545,0.9457200000000001,3.43125,4.93991,3.0463,2.3472625,8.18914,4.07019,3.46584,2.31222,0.429607,3.417195,2.71431,2.02651,1.77177,3.10174,3.464475,2.437205,3.247246666666667,2.97245,3.32772,4.62567,3.483825,4.571565,3.90934,5.678306666666666,0.6236113333333333,4.368325,5.4653,5.00825,4.88237,3.4893,5.5458,4.36537,4.42771,5.466215,5.6159,4.03478,4.370965,3.69747,4.30314,2.95653,8.86129,5.0416,4.163465,5.0357,4.950235,4.8267,3.42429,1.0977355555555555,5.92037,3.61034,5.33865,1.4315033333333333,4.11419,4.494935,6.749559999999999,4.74481,3.27033,2.2281400000000002,3.8783,1.711554,1.081495,4.14039,6.3995,1.93088,2.3005299999999997,3.012176666666667,3.576335,3.52677,3.657815,4.884465,2.5615033333333335,4.16565,4.120859,3.40243,3.6252,4.454565,2.74822,2.55473,2.144305,2.417873333333333,2.743036666666667,4.273,0.5311216666666666,2.556363333333333,4.272845,3.00344,3.6857,4.477255,5.7477,4.68531,16.90032933333333,2.639603333333333,3.8705,1.4191280000000002,0.8483799999999999,0.8483799999999999,0.8483799999999999,0.8483799999999999,0.8483799999999999,4.570855,4.699665,5.2069,9.142073,2.6924,2.6924,4.497945,4.643658333333334,1.371605,1.9753233333333335,4.23142,2.50765,2.1206425,2.1932775,2.990315,3.8310353333333333,2.10429,4.229115,0.8269357142857142,2.9146900000000002,3.1361933333333334,3.0655300000000003,1.5593866666666667,3.2371833333333337,2.1998333333333333,0.97034625,2.8337533333333336,2.8678966666666668,1.1448888888888888,2.4873499999999997,3.26525,2.1280366666666666,4.56194,2.6188,3.100983333333333,2.263265,2.77521,1.1442222222222223,2.6760966666666666,5.097688666666667,3.4958333333333336,1.07114375,2.8596133333333333,1.298325,2.6207333333333334,2.96181,4.6470899999999995,3.0104433333333334,2.59621,4.967759333333333,2.6739766666666664,2.092655,2.791283333333333,2.86643,2.06312,2.9248,3.4759333333333333,3.361166666666667,2.75529,3.216366666666667,2.743926666666667,2.4240425,3.7699930000000004,3.7699930000000004,2.95055,1.9777633333333335,1.8479999999999999,2.903396666666667,5.503036666666667,3.11971,1.9809733333333333,1.686685,3.196903333333333,4.336005,2.698206666666667,1.028856,2.6922693333333334,1.4688400000000001,2.357953333333333,2.1363933333333334,2.7988766666666667,2.1258266666666668,3.2299100000000003,1.272344,1.5760500000000002,1.49416,4.2199583333333335,2.5599966666666667,4.6394,1.0151211111111111,4.09208,4.394166666666666,2.410855,1.7136679999999997,1.6726,3.29576,24.445453932900435,7.21746,2.71941,3.915939166666667,2.3627333333333334,10.492679333333333,3.3453999999999997,1.0785775,2.824543333333333,2.309833333333333,2.0198266666666664,2.7056066666666667,2.72029,2.5802,0.935486,3.0134233333333333,2.5620933333333333,2.9907833333333333,2.597863333333333,2.82652,2.08996,2.22151,2.9529866666666664,2.52056,2.17751,1.626538,5.763548333333333,4.64826,2.3773225,2.88185,2.475956666666667,2.4152133333333334,8.283678333333334,2.0575233333333336,4.904855,2.1294325,1.7180575,7.26969,2.9961133333333336,2.8393866666666665,2.5663,1.717622,1.487103076923077,3.3405,3.2115333333333336,4.165675,1.45044,4.007266666666667,1.8294025,1.8294025,4.029225,3.852235,3.411307142857143,3.411307142857143,5.986000000000001,3.403295,0.40873499999999996,11.90259348901099,1.18318,0.9489571428571428,4.219060000000001,1.4504771794871796,1.8226425,5.990083333333334,3.773645,0.7793009090909091,2.0851966666666666,5.106333333333334,2.5791700000000004,3.979865,1.3737100000000002,5.54195,5.27965,5.0823,3.70433975,1.980162,2.5711933333333334,2.62663,2.5060533333333335,2.27284,5.1737166666666665,4.59748,4.851945,2.206465,4.70396,4.32348,3.0650333333333335,2.48046,4.83579,2.4595333333333333,8.445903333333334,7.256749999999999,2.2183325,2.193595,1.6704260000000002,4.673,4.673,3.8335000000000004,2.989036666666667,3.4455918333333337,4.98524,9.3496225,4.119965,2.5661,5.5128,4.24549,5.35855,2.0374600000000003,0.809395,1.3308783333333334,4.58112,4.82415,3.764333333333333,3.071353333333333,3.8384,2.393283333333333,3.55545,4.653145,3.34292,5.4492,3.156943333333333,3.6994833333333332,3.529833333333333,3.368933333333333,3.5865666666666667,6.21365,3.0232,5.55945,5.3371,3.4058,3.366175,3.366175,5.854,11.969305833333333,3.6137333333333337,5.8883275,7.217356666666666,3.532465,2.5341366666666665,3.9097,1.2630466666666667,3.858565,2.2255,3.0961933333333334,3.06999,3.2381766666666665,2.23294,2.45568,2.898516666666667,2.7735066666666666,3.098516666666667,3.0626933333333333,4.02482,2.5136866666666666,2.9562666666666666,4.1768,2.9142233333333336,2.7717266666666664,1.1573125,2.068745,3.204143333333333,2.5420700000000003,2.700613333333333,2.3808766666666665,3.6065666666666663,2.187143333333333,2.63169,2.78533,2.985803333333333,2.88102,3.1394966666666666,2.415366666666667,3.3023866666666666,2.8050800000000002,3.27249,2.6586933333333334,2.5656433333333335,2.3839099999999998,2.2993866666666665,2.60309,3.1539966666666666,3.29705,2.740625,2.0500275,2.0500275,0.7235916666666666,1.66188,4.432325,3.40252,2.716226666666667,2.23294,3.2707866666666665,1.3029428571428572,2.72472,0.6093139999999999,3.521933333333333,3.14902,3.25026,3.060753333333333,2.7603266666666664,2.7741566666666664,3.2981033333333336,2.784546666666667,3.3895666666666666,5.116126666666667,1.5971,2.3801366666666666,2.4507033333333332,1.8738366666666666,2.080616666666667,2.8013333333333335,2.9562566666666665,1.6945039999999998,2.6951933333333336,2.6226866666666666,2.7612799999999997,2.6467033333333334,2.7626266666666663,2.8676433333333335,3.232006666666667,1.41996,3.1373233333333332,2.392873333333333,3.5263000000000004,3.21949,1.95916,2.4917266666666666,3.6628333333333334,2.706353333333333,3.430266666666667,2.582193333333333,2.79425,4.716245,2.9046866666666666,2.04506,1.5128439999999999,3.28968,5.725246666666667,3.316596666666667,3.25618,2.8243500000000004,3.226573333333333,4.768835999999999,1.636776,1.2402777777777778,2.6887666666666665,1.9354166666666668,4.54375,3.191466666666667,3.21315,2.9295333333333335,3.1989900000000002,2.5115133333333333,3.0648133333333334,2.31081,1.6918440000000001,2.8346433333333336,3.4059,3.6718975,3.993165,3.8778,1.6707275,2.936475,3.08986,3.578245,2.3161733333333334,3.1958300000000004,3.9329666666666667,3.7654333333333336,1.3835475,5.706562,3.37324875,1.6024633333333334,3.129135,3.57697,3.20652,3.871445,1.8938580000000003,1.8938580000000003,3.3239933333333336,2.8831133333333336,2.98731,5.353,4.625895,4.572303333333333,1.4907299999999999,3.0031866666666667,2.6727166666666666,4.0033675,3.0661066666666668,4.558348666666667,2.835226666666667,2.3702166666666664,2.7812433333333337,3.4996,3.68658,1.6503640000000002,3.110473333333333,3.038985,2.3131575,5.29,1.3432066666666669,4.941385,4.16245,2.66833,3.57786,4.01857,1.629615,1.5768033333333333,2.3875,1.0885483333333335,2.076726904761905,1.93637,0.43414857142857144,4.224205,3.227465,4.613775,4.41627,2.96815,4.647936666666666,3.3073,3.10753,3.5886333333333336,2.58707,3.2400366666666667,3.06446,3.3201300000000002,2.2165233333333334,0.6834976923076923,2.3058033333333334,0.6999000000000001,2.0134666666666665,2.517043333333333,3.1663866666666665,3.1620333333333335,1.47991,1.3326125,3.69899,4.540015,3.353235,3.2706125000000004,3.196115,1.7238175,3.97908,6.947765555555556,3.56148,6.1987575,1.5096725,3.96711,1.703295,4.083095,3.4898,2.07085,3.90098,3.22973,4.06352,4.117355,2.22095,3.968915,6.5961425,5.21355,3.44844,2.955435,1.7578075,2.1149975,3.691215,3.52342,3.16742,3.467855,3.885195,3.39495,1.6273775,4.006325,3.19881,1.745225,4.1423125,0.9341750000000001,3.368445,1.6808975,4.13039,4.590751666666667,3.86485,2.648665,3.78235,3.579405,1.9877975,2.30904,3.817,2.12987,5.3169,4.123115,4.477225,2.321025,2.45004,4.178235,4.405225,2.721692,2.721692,5.646579666666666,3.420953,2.303395,2.937845,1.9813666666666665,2.733635,3.37751,3.7653141666666667,2.4114205,3.712545,0.97636,3.48038,2.987545,4.148595,2.79517,1.507445,1.52504,3.396905,6.110576,5.6589975,3.544,1.43164,3.632895,3.184915,0.8070616666666667,3.142425,1.14551,5.6126825,1.4222016666666668,3.482125,1.97638,1.47991,3.078235,2.872585,4.17635,6.837835,4.177925,4.3489024999999994,2.80123,3.53605,4.75549,3.96212,4.60116,4.49767,0.9264925,1.64129075,1.04272875,2.889465,2.206175,4.679325,1.04272875,4.57363,2.268515,1.546215,1.546215,1.745225,3.66162,4.322865,3.98128,1.756252,1.756252,0.9630716666666667,3.11692,2.03936,5.934975,4.255445,3.34727,2.8983166666666667,0.9667157142857142,3.585005,3.499835,4.32739,3.92042,4.00816,4.00816,3.654035,4.08653,2.008185,2.426735,0.9831244444444445,1.84392,3.48362,2.3074966666666668,3.677438333333334,3.677438333333334,3.11776,4.767315,4.78994,3.06341,3.55689,4.03927,2.712813333333333,4.553443333333333,2.56903,3.721465,9.06203,5.14435,2.63995,3.20675,3.14402,4.49389,3.34375,7.623704999999999,4.709776,4.58018,3.46724,3.807435,3.943785,4.56636,4.777315,2.19762,3.807275,6.300839999999999,2.56994,2.083514666666667,2.880705,3.38669,3.207355,4.623945,2.272136666666667,2.3078833333333333,2.72795,2.938405,2.338766666666667,6.895454,1.3222425,4.884543333333333,4.884543333333333,3.54857,3.589964166666667,2.90709,2.259916666666667,4.53841,4.003266,1.9412693333333335,3.99455,4.207335,3.422945,3.242715,2.895165,6.031878333333333,3.61042,5.0632,2.954545,4.330645,4.167105,3.682705,2.8831133333333336,1.8908133333333332,2.45952,4.166865,3.31854,3.1342583333333334,3.252955,5.7981549999999995,2.785385,1.940985,3.3405216666666666,2.32204,3.8394,2.60743,0.8070616666666667,3.142705,4.350885,3.90715,5.9522924999999995,3.191465,3.051465,3.1064233333333333,3.1064233333333333,3.5112216666666667,4.32751,3.757165,2.12161,6.6670875,2.177075,4.58391,3.92316,7.95324,2.81958,1.19282,3.26488,4.413715,0.587545,4.122795,3.098985,3.012915,2.87507,4.48556,2.15437,2.467435,8.75954,3.45852,3.019835,1.4222016666666668,3.608285,2.72247,2.3243287500000003,3.913865,5.16391,1.648,1.1260033333333335,1.0205733333333333,4.18853,3.628595,3.40125,3.3132075,3.3132075,1.6273775,2.28179,2.9129130555555554,0.8406155555555556,2.76385,1.0312125,1.6707275,3.360195,3.442575,2.64383,2.523675,2.5534333333333334,3.755545,3.721245,3.04327,3.321305,2.756835,4.4116,6.302315,4.072435,0.9008625,2.4917545,8.64564,4.617045,4.203065,1.0610025,4.666598333333333,1.3882533333333333,3.2370075,3.2370075,3.575775,8.447416666666667,0.9216166666666665,4.862805,4.624165,2.3744666666666667,4.033923333333333,4.10291,2.206885,9.475193666666666,1.9331675,2.36204,3.239675,1.6778899999999999,4.042371166666666,3.0494,3.33411,3.2859393333333333,2.79313,2.998505,1.163855,7.61467,4.220915,4.072885,4.43722,2.0027225,2.648665,3.8547599999999997,3.83759,0.6737330769230769,4.318485,4.3844,4.801065,2.05963,1.402596,4.270135,4.244295,7.68563,0.7106146153846153,0.7739575,0.7739575,1.7020066666666667,1.3519366666666668,1.390982,1.8412899999999999,4.868195,1.14774,0.8616028571428572,4.006075,3.47976,1.3813425,3.298885,4.638715,3.391535,0.713074,1.97034,9.81883,3.2361383333333333,3.47163,2.46342,1.345905,2.4815833333333335,2.75217,4.72402,4.418605,3.877655,0.8533285714285714,1.579798,0.9929,4.4813075,4.30585,4.066065,0.8406155555555556,1.8966919999999998,4.135715,2.1833760714285715,4.960769166666667,1.1379425,4.877555,0.7460783333333333,0.7460783333333333,0.7460783333333333,10.561589999999999,4.27443,1.0312125,3.83814,4.587515,3.247845,3.706205,3.944559166666667,2.974625,2.072833888888889,1.9945366666666666,0.713074,1.5201356666666666,0.5705655555555555,0.7662633333333333,1.3013266666666665,3.82423,3.86161,2.17751,7.534526666666666,5.035633333333333,0.5956766666666666,4.73755,5.40381,3.545785,4.58918,7.693495333333333,3.6969117857142857,5.035633333333333,4.383550333333334,2.5180266666666666,4.517215,3.63919,6.796519999999999,3.58751,0.429607,1.487838,4.04935,1.7424119999999998,1.1260033333333335,4.08274,2.33267,1.649485,3.0969,1.663682,4.47908,4.43146,4.30164,4.72172,6.30776,2.563925,3.86852,1.14551,2.23954,3.518675,3.267725,1.9412693333333335,4.13788,2.490435,4.77067,2.848465,2.280645,3.286496666666667,1.626802,3.68028,0.8406155555555556,2.059377,1.0205733333333333,1.53616,3.585565,1.3222425,1.3013266666666665,2.486485,2.813385,7.88709,0.8533285714285714,1.0610025,1.302018,3.725735,4.07191,1.302018,3.911985,2.23954,0.587545,0.8406155555555556,1.7020066666666667,1.14551,0.43414857142857144,1.638576,4.1549553333333336,2.3744666666666667,1.4255883333333335,2.925775,1.3835475,1.9331675,2.758725,1.9945366666666666,4.1475,2.758725,0.8070616666666667,2.6361790000000003,2.580225,0.0873190909090909,0.0873190909090909,0.0873190909090909,0.0873190909090909,0.0873190909090909,3.26378,2.7419466666666668,2.743703333333333,2.8577666666666666,5.0875,3.80929,1.7136679999999997,3.649435,3.516855,2.16028,5.16388375,2.925015,2.394295,2.430555,2.657445,4.623855,8.246346666666668,2.413675,2.31437,3.049065357142857,0.9830528571428572,1.3871566666666666,2.3862033333333335,2.1786533333333336,1.4641725,2.716333333333333,2.2817833333333333,2.743793333333333,2.7728099999999998,2.6862866666666663,3.783085,3.77696,2.5659566666666667,1.374986,4.02181,3.758485,1.4861566666666668,1.368342,1.368342,1.368342,3.533555,2.996923333333333,1.09161,2.4485966666666665,1.2726185714285714,4.37163,1.5557133333333333,6.718385,3.3132525,2.70497,3.1662920000000003,3.1662920000000003,5.3286966666666675,3.177505,4.63094,5.1998,2.1566675,3.2320166666666665 +GSM1946770,0.0,2.049015,2.049015,1.6546033333333332,3.99644,5.9748,2.377824342105263,1.83992,7.324865,4.355705,3.1580733333333337,2.614405,2.744995,3.32042,4.127585,1.772688,1.431086,5.0191,2.5688400000000002,2.2508075,4.4779,5.293559999999999,3.802495,1.974195,1.777936,3.899955,4.30196,4.306955,0.6601466666666667,1.6081791666666665,1.8359283333333334,1.5659575,1.598295,1.1138528571428572,0.6916141666666666,3.1043328571428574,1.5650675,1.7605,1.194245,2.10882,1.1024575,1.0892175,1.112652,1.414544,0.934634,0.9625920000000001,0.803354,1.188192857142857,1.599094,1.8693300000000002,1.503824,1.9245100000000002,1.7074159999999998,17.942946,0.376932,0.866574,1.119184,1.84876,1.386522,1.6618780000000002,1.0480542857142858,1.0480542857142858,1.0480542857142858,1.1818733333333333,0.9736980000000001,4.7200925,1.1536625,2.3315975,2.02932,2.2504425,0.9437089999999999,2.2440875,2.2423525,2.0558975,1.4953475,2.00692,1.60051,1.7206575,2.5680066666666668,3.623045,4.556575,4.967735,1.6004133333333332,4.49877,4.48939,4.34655,4.141235,1.0582225,7.32803,0.631025,0.631025,2.1994925,1.0280385714285714,16.58257,4.61921,5.22525,5.6284,4.228575,4.188245,5.15775,0.4467494444444444,2.342640416666667,1.8635375,2.3069175,4.51163,3.406065,1.48675,3.2858033333333334,3.4698666666666664,2.7632733333333337,3.6143666666666667,3.49433,4.69172,2.7924545,4.238025,2.9700366666666667,0.7031045454545454,1.66429,2.573175,4.92985,3.2667,0.517493125,3.539155,3.651275,0.73456875,4.581125,1.7077255844155845,2.327415,2.6427,2.0543625,3.62023,5.65575,3.462205,2.7312966666666667,3.170533333333333,3.0635933333333334,4.055065,2.8354533333333336,5.52315,3.435055,4.422835,3.147075,2.44222,3.648695,2.35086,6.952276666666666,3.588685,3.35464,5.83175,3.29385,4.51918,0.7981522222222223,9.383711904761906,3.656175,1.9483366666666668,1.7482633333333335,3.0441599999999998,2.66704,4.582305,5.52435,2.1756375,5.0482716666666665,2.96375,4.60766,2.1756375,2.787846666666667,4.4334,5.124258333333334,3.626885,8.818083333333334,3.616495,4.77531,3.059985,4.962545,4.47064,1.8042666666666667,8.20722,4.208155,4.06358,3.588805,3.45008,3.40962,2.354775,5.88286,2.34046,4.075395,4.003085,4.851365,4.539885,3.37057,1.4187433333333335,2.94108,2.96526,1.9898775,1.9898775,5.660414571428571,3.073055,1.9135466666666667,4.1707,4.434505,3.09616,1.5080083333333334,0.8347322222222222,6.71335,2.708635,6.61275,3.049775,3.98208,3.93207,3.055585,3.94143,3.693695,4.001425,4.086895,5.71445,2.949205,3.57272,9.051873333333333,4.339325,3.5017666666666667,3.041456666666667,2.7138333333333335,3.7575333333333334,4.194395,1.782815,2.50834,2.0532766666666666,1.7403220000000001,1.7391666666666667,2.7336533333333333,1.752105,1.893385,3.0581300000000002,2.7419533333333335,2.40638,2.7863333333333333,4.48939,3.7063,3.491305,3.384625,4.25677,1.255815,2.55992,2.9265314285714283,1.980056,2.621776666666667,2.246233333333333,3.4126666666666665,1.630084,1.4608666666666668,2.6456466666666665,0.67774,1.4928533333333334,0.5464944444444444,0.5464944444444444,1.5631199999999998,2.39583,2.2165,1.5353766666666668,1.6036966666666668,0.3270423076923077,2.76484,0.67774,1.2411666666666668,0.20475702702702703,1.5197200000000002,2.07606,3.4507666666666665,2.1051066666666665,2.22009,2.58169,2.34592,2.45706,2.586343333333333,2.3454200000000003,2.2630433333333335,2.68648,1.9678133333333332,2.78763,4.239495,0.7092849999999999,1.91876,2.601933333333333,1.8836899999999999,3.6424866666666667,1.5715059999999998,2.579396666666667,2.21694,4.272443333333333,2.0800733333333334,7.067444285714286,1.5735142857142856,2.8021933333333333,1.99772,1.9908575,3.22582,1.8422625,1.9663125,3.858365,2.5501,2.191185,3.765115,4.221845,4.325715,3.74032,2.392985,3.4504,4.43837,3.817785,3.912475,4.2013,4.548185,3.09427,4.330405,3.532305,0.89159375,4.78101,1.2889466666666667,4.57339,3.84038,5.788591,3.644925,4.298295,0.971825,2.294925,3.550555,4.16864,0.8309785714285713,1.1763438034188036,2.122317380952381,3.490942,5.2431475,5.596712999999999,2.1370825,3.025145,5.2123,0.33858642857142857,3.51866,2.59282,0.98568375,4.509525,2.12162,12.332635,1.217355,1.37364,1.9738833333333332,2.40349,2.0763407894736843,4.796020789473684,0.3899857894736842,1.6928166666666666,3.02848,1.1091275,3.7374666666666667,0.9786085714285714,4.999325,4.198135,2.17484,5.9798,5.53205,2.71505,1.1132571428571427,4.4004650000000005,4.67358,4.39424,0.8586263636363636,7.472251666666667,2.700196666666667,4.409735,2.6754033333333336,2.476503333333333,4.38899,2.3773033333333333,2.51401,2.1825366666666666,2.50639,3.148435,2.9982900000000003,0.362993125,3.994145,3.636085,3.82889,4.025755,4.492995,5.949362000000001,4.03021,1.7052275,5.4745,4.27306,4.45179,4.16083,1.1530099999999999,2.6181033333333334,3.1245666666666665,2.4448066666666666,16.142735000000002,3.419565,3.87858,4.196435,5.49735,2.63506,5.024820416666667,1.6694775,0.7886133333333334,2.61825,3.13653,3.541235,4.12041,6.376551666666667,2.87459,2.424865,2.193035,3.2613766666666666,4.5297,2.28605,0.38205684523809524,2.980291739130435,1.94374,1.14304375,0.5146777148033126,0.6472985843685299,0.38205684523809524,0.38205684523809524,0.38205684523809524,1.2079425,1.24856,1.06002,1.5341225,4.2601625,0.2141314705882353,10.940706834415584,3.4848666666666666,2.735193333333333,4.003375,4.01953,3.850265,2.27533,4.62128,3.8660496666666666,3.993945,3.79082,0.6701730769230768,3.386566666666667,4.206130769230769,0.5134278571428571,3.715425,2.5849033333333336,4.213415,0.5321663636363637,1.872035,4.62969,3.376335,1.76456,1.8946233333333333,1.7851100000000002,3.165626666666667,4.14338,3.09085,2.9799733333333336,5.5029,5.47605,4.72228,3.347933333333333,2.9320125,6.502583333333334,3.5906333333333333,4.74796,0.4177890476190476,3.0137366666666665,3.759508333333333,1.9676266666666666,2.830595,2.834451666666667,5.528888333333333,0.612395,2.77025,4.197525,4.368065,1.0453985714285714,4.443115,2.803095,4.852175,3.1240433333333333,4.12446,3.569355,4.37889,1.1614983333333333,3.403765,2.82556,4.626,3.82635,4.086065,5.62475,4.4634,2.54365,5.13676,2.2361233333333335,2.657275,3.1089466666666667,2.5770166666666667,2.5284366666666664,2.2609333333333335,1.6978680000000002,1.6130233333333335,2.107346666666667,0.8209985714285715,1.46678,2.286236666666667,2.12901,3.0522833333333335,3.0507866666666668,2.5949266666666664,0.9400188888888888,4.725215,3.2888800000000002,5.451096666666667,2.6869466666666666,3.08615,2.996636666666667,1.5253516666666667,1.5253516666666667,2.429006753246753,2.429006753246753,3.1378803246753244,0.5074471428571429,1.9218433333333333,2.170596666666667,3.7777,2.2679438095238096,2.2679438095238096,2.2679438095238096,7.282048928571429,4.309372857142858,0.9502909090909092,2.6065,4.724425,2.3697575,4.628485,3.2711,2.439545,4.044905,3.07887,2.9957666666666665,1.1153025,2.0456566666666665,3.3047566666666666,2.3394133333333333,2.521053333333333,5.6862,4.108266666666666,3.833266666666667,4.9083733333333335,1.9874333333333334,2.5794533333333334,3.0899966666666665,1.0036222222222222,2.2007,4.665205333333334,7.848685000000001,1.523335,3.07328,4.291245,1.859238,1.8595075,1.8595075,0.95562875,4.749565,7.149900000000001,4.249715,5.081543,4.40077,1.7523,3.804775,2.862275,4.423385,4.90731,0.3607963157894737,3.044675,2.640965,3.675325,3.95094,1.7763760000000002,1.9760825,2.511475,4.184355,4.057055,3.15137,2.586195,1.348552,6.7364,5.1568,4.62439,3.440215,4.961105,4.47859,4.61271,3.647315,3.827725,2.0360825,1.0345942857142858,2.772215,4.14322,3.73168,5.8638075,5.504055,2.33236,1.6825233333333334,2.7464166666666667,2.7586633333333332,3.0151833333333333,0.6927307142857143,2.16734,3.702515,1.10566375,4.72463,3.26467,6.1320225,1.3486174242424243,1.3486174242424243,4.05833,3.806975,3.8932,5.56785,2.8283766666666668,2.3261533333333335,4.138265,3.2456,2.172295,3.3907000000000003,2.3823366666666668,4.20054,3.1471475,3.778395,4.53913,1.0789211111111112,2.588485,4.234865,4.23089,3.32269,2.5507066666666667,1.596195,0.8079066666666667,0.8079066666666667,0.8079066666666667,0.8079066666666667,1.583135,3.7277375,3.7277375,1.8001433333333334,6.866491666666667,2.960655,3.963775,3.13421,2.706075,4.60695,4.303765,4.97724,5.05445,1.779545,3.864055,3.510855,2.682645,3.28337,3.3186,2.72902,4.320735,1.882365,4.445535,1.72329,3.3393249999999997,3.104735,1.8265625,1.18724,2.847685,4.17035,1.256942,0.83275,3.57023,1.2234675,4.7936673333333335,4.394945,1.2598542857142856,3.651845,0.7939622222222222,2.618326666666667,2.55569,2.2555366666666665,2.707515,3.835515,2.8649366666666665,4.481235,5.42005,4.431725,4.076455,2.02628,1.2784842857142855,4.022265,4.76566,1.422345,1.422345,4.201415,0.2816466666666667,2.3969466666666666,0.2816466666666667,0.2816466666666667,0.2816466666666667,0.2816466666666667,5.07595,2.68042,2.911335,3.70669,3.1010000000000004,4.40375,2.37251,1.019535,1.019535,0.8565633333333333,0.8565633333333333,3.8412,2.302475,4.5314,1.5376969642857143,1.5376969642857143,4.76968,0.4898357142857143,2.3963,7.245235,4.6763,3.25725,2.99755,0.93168375,2.15935,1.96085,4.727455,4.27563,4.192945,3.94647,1.2650714285714284,2.88795,1.96424,7.86712,1.980405,4.54567,4.616775,2.99752,3.88529,6.09813,7.870945,3.89149,4.39011,4.37401,2.22624,3.17348,2.477255,2.318605,1.900425,3.86316,3.61693,5.918376666666666,6.51348,3.90114,1.2169066666666668,1.95249,3.699595,3.85701,2.1488175,4.321605,3.291245,4.656466666666667,1.8451466666666667,4.016033333333334,1.6677433333333334,6.32796,2.65266,2.38236,2.1496366666666664,2.51824,3.456633333333333,3.3579333333333334,3.15883,2.7655,3.150873333333333,2.24372,3.34453,3.069075,3.365055,0.37544,2.948635,3.850845,2.605025,5.36995,4.88596,4.49737,6.606362,4.62939,2.0986366666666667,4.121005,5.18345,1.5538216666666667,4.774325,5.7902,5.18675,4.27028,3.288465,5.5213,4.819345,3.75868,5.290047333333333,7.326397500000001,4.15008,1.1520183333333334,1.4562533333333334,2.430885,1.7482019999999998,4.40455,4.013275,4.7773425,2.5375133333333335,2.37038,2.758233333333333,2.4955700000000003,2.2852433333333333,0.9497300000000001,0.5002711764705882,3.85862,4.02424,3.6659666666666664,4.161355,2.959145,3.296393333333333,5.198361666666667,2.9948566666666667,0.5863570588235295,3.111365,5.46435,1.7845075,1.619748,3.78495,3.355105,2.5093799999999997,3.7171000000000003,3.969885,2.7727533333333336,2.4574166666666666,2.3313866666666665,2.3862033333333335,2.81293,4.478863333333333,5.122819166666667,6.3299121666666665,1.4029960000000001,5.06135,3.234919166666667,5.085654833333334,2.61143,3.06641,2.420745,1.6273833333333334,1.409315,1.409315,2.6795500000000003,2.387986666666667,2.7531133333333333,3.88019,1.7362939999999998,2.092275,2.1101,0.461121875,3.66068,0.5801958333333334,0.93042625,3.668415,3.85482,3.54504,1.7375275,4.173825,3.0118333333333336,0.7846357142857142,3.94435,3.759309523809524,3.06593,2.52932,5.08855,0.26115206896551724,2.187891,3.272465,1.565185,3.85171,6.6297,2.40107,1.48332,3.948675,3.957355,2.7987966666666666,2.7987966666666666,3.653225,2.81987,4.465835,5.618845,5.0288,0.9650233333333333,2.5362733333333334,2.4850966666666667,4.38316,4.939945,5.10395,4.704495,4.3468,3.708766666666667,3.7085000000000004,3.5966,4.020666666666666,2.9787233333333334,3.0005400000000004,0.5887407142857143,2.301045,2.4073725,3.669005,3.028473333333333,3.143273333333333,0.7624875000000001,2.923395,3.9541644999999996,4.148635,5.7389,4.852875,1.8443975,1.8443975,0.775293,3.10755,4.337135,3.694695,4.669252857142857,3.11002,4.629595,0.5785090909090909,3.21953,3.813975,4.19252,3.8298683333333337,0.8039128571428572,2.74906,3.946475,5.5196,3.93867,4.89666,2.950215,4.152375,1.45243,1.0134314285714285,2.7573733333333332,5.04665,4.33991,3.25994,1.4279633333333335,3.942235,2.63085,2.671175,2.718912888888889,2.963623333333333,4.510116666666667,3.075086666666667,1.753536,3.3371666666666666,1.5137182142857144,2.8765300000000003,2.56255,2.2869275,2.8486466666666668,2.7374533333333333,2.2162866666666665,2.7110733333333332,3.655135,3.026896666666667,3.3855423333333334,2.5029133333333333,1.87531,4.16256,2.99588,2.435096666666667,3.3855423333333334,2.103006666666667,0.7797418181818181,2.40841,0.9949766666666666,2.204785,1.6086775,0.9407,1.6003475,1.6174575,2.64936075,2.5502,4.478575,1.569055,4.55759,2.993673333333333,1.591194,2.470946666666667,2.54069,1.6246633333333333,2.7813199999999996,2.6155500000000003,2.000646818181818,1.522465,1.8200299999999998,3.6249000000000002,2.3426666666666667,2.9790688888888885,3.0877666666666665,2.950833333333333,3.6849333333333334,2.0668866666666665,4.102333333333333,3.551766666666667,3.7325,2.79123,3.513,3.6078666666666668,1.7977166666666669,9.529275,3.97198,4.18572,3.3949,2.781665,2.04139,4.086985,1.687526,4.031765,4.16539,1.398208,2.5509633333333332,1.1361166666666667,2.3578366666666666,1.6800533333333334,2.3819066666666666,5.0859000000000005,3.0923200000000004,3.65122,4.81279,0.7998025,1.389754,0.944011,3.64215,10.114241666666668,3.4504,6.6171,1.99727,5.1513,4.223295,2.4912625,4.872545,0.2926417647058824,0.8777999999999999,4.736735,4.35152,7.0591925,1.9645925,4.42468,5.71225,4.61302,4.636165,3.40514,4.31477,3.390925,5.8062499999999995,3.62749,3.10281,3.318295,2.3870633333333333,1.9640533333333332,1.4476918125,2.4790933333333336,4.060745,4.652075,1.579644,9.0539,2.0959733333333332,2.9177283333333333,1.0224259999999998,1.0224259999999998,7.065589583333333,3.05071,2.2435475,2.1468075,2.60475,2.1687866666666666,1.0791033333333333,3.5653775000000003,2.6386166666666666,0.6369728571428571,1.7523366666666667,3.3306319999999996,3.3306319999999996,1.2092433333333334,2.5351433333333335,2.28187,2.6373083333333334,1.4587175,1.8925933333333333,4.668704,2.56066,2.64135,1.2341325,1.2341325,3.65033,5.4812,4.156445,3.22005,3.65011,6.23624,3.095095,2.7294466666666666,3.022126666666667,4.26166,1.1831133333333332,3.134513333333333,2.61455,3.79107,2.23888,4.819935,3.53475,4.39876,3.640605,5.5858989999999995,0.9684155555555556,1.955625,2.18111,3.523055,4.207325,3.756765,3.61754,3.467875,2.44003,1.69987,4.28643,3.33995,3.177975,2.4251,0.86763,3.397425,4.128815,4.62921,1.25701,2.6933933333333333,2.4071266666666666,1.7295,1.8065666666666664,1.8065666666666664,1.2287366666666666,2.0890833333333334,1.0558,1.388608,4.301975,4.13638,0.48378095238095237,3.53236,3.2271366666666665,3.856605,4.99826,0.41966650000000005,9.281155,5.2708,2.70694,3.689275,4.472525,5.359137857142857,4.87706,6.72501,0.685610909090909,2.69692,5.22325,2.6702733333333337,1.5783275,2.04624,4.273425,5.08119375,2.405610357142857,3.1285066666666665,3.0355133333333337,1.8620325,4.19601,10.356535,7.998843750000001,3.7692,4.49128,3.0396691666666666,2.97955,3.967825,1.9237860000000002,2.9363833333333336,3.60432,4.75378,4.601225,5.78252,6.34413,2.0338533333333335,5.15485,4.547305,4.884325,4.515095,7.4855166666666655,3.99238,5.87115,3.51565,3.12627,3.042075,5.90425,3.76898,4.835495,2.114715,3.1025733333333334,3.308285,5.7616,4.175025,3.663655,1.5200900000000002,0.9241575,2.3558725,0.530296,3.85313,3.66934,3.56005,2.929675,2.098733333333333,2.96085,2.619225,3.2764480000000002,1.943024,3.03632625,2.88715,2.44805,2.621475,3.825334,1.2565016666666666,2.7380191666666667,4.815405,3.7251,1.011225,2.7200933333333333,3.729865,3.6356149999999996,1.52585,5.741,5.24955,1.9260466666666665,3.14892,30.2002169918317,3.20736,1.7419166666666666,3.962733333333333,1.56619,2.6088999999999998,2.91443,3.3485666666666667,1.98701,2.6361,1.8039125,3.947972,3.2697366666666667,2.38358,1.5150925,2.25528,2.859725,0.3825759090909091,1.2519475,2.743586666666667,1.6161940000000001,3.41268,1.52585,2.10588,25.23317872222222,4.819865,3.847355,3.54574,2.58115,2.470545,2.6068266666666666,2.3152775,3.428185,4.863241,5.3397,1.612066,1.731094,2.23879,2.30647,3.630574166666667,5.07905,4.489445,4.36038,0.17106021276595745,4.926945,4.9011675,3.93336,8.97706,1.0791075,1.0791075,2.8949933333333333,2.82619,5.4081,1.8385322222222222,0.9726944444444445,4.62855,1.998835,4.143575,3.90363,3.13251,3.99539,4.03645,4.44247,3.11656,0.7398355555555556,3.312975,2.2856566666666667,4.2446,7.816295,4.264915,1.8986866666666666,1.8986866666666666,6.6538375,4.555605,4.374665,5.52515,2.1374166666666667,4.968909166666666,1.33096,1.48883,2.9926666666666666,2.399366666666667,3.038355,2.717166666666667,3.98056,4.3577825,4.149855,5.65245,2.24856,2.643625,1.7900975,2.48617,2.4383425,2.0678675,2.1165025,4.5717575,1.8576275,3.4779752380952385,2.4117,2.9792733333333334,2.5734266666666668,2.09981,1.4859285714285715,0.9540810000000001,2.46222,3.8036999999999996,0.713936,4.515545,1.72527,5.882203333333334,1.92311,1.6504175,1.565215,1.62518,5.576347222222222,1.8138919999999998,3.0641533333333335,3.557033333333333,1.18516625,1.8228225,4.8822980000000005,3.2146233333333334,2.01411,3.519966666666667,2.749473333333333,2.856313333333333,1.31976875,0.28941916666666667,0.28941916666666667,0.28941916666666667,0.28941916666666667,0.28941916666666667,3.595965,2.72246,2.5143,3.1859800000000003,1.3396916666666667,2.6872133333333337,2.8949766666666665,2.35169,3.301245,3.044775,1.7488466666666669,2.86895,3.1709899999999998,2.0978525,1.9963375,3.959905,2.6858799999999996,3.77,5.07515,2.5485666666666664,2.5987,2.5185766666666667,10.752130833333332,4.450265,4.253345,4.76373,4.07147,2.934623333333333,5.1763,3.77248,4.21212,5.491341666666667,3.63092,3.14179,2.271965,3.33246,4.921110285714286,3.199585,17.613282416666667,1.063555,4.437825,0.8708911111111112,1.1607825,2.8757,4.675725,4.152895,4.65716,1.5328416666666669,2.27015,4.2201,2.00557,4.374745,3.065005357142857,2.8013600000000003,0.66547,2.89738,4.685585,2.310095,2.35105,2.132385,19.634340833333333,1.3228,1.2821375,2.5002366666666664,0.2813846153846154,1.7672225,2.732806666666667,2.03029,2.92989,2.754375,7.166294166666667,1.845535,2.526475,2.2955125,2.0964125,1.6199366666666668,3.1694666666666667,3.026115,3.4834,2.990016666666667,1.915575,2.5821145833333334,3.035610277777778,4.973125,0.42915,3.3585,3.039006666666667,3.03973,1.9311525,3.5046405000000003,3.606885,1.6594266666666666,2.3043466666666665,2.156146666666667,1.53847,1.8354166666666665,3.51972,3.318025,0.7950233333333333,3.399035,4.80203,3.956485,2.30659,2.30659,3.0096566666666664,4.18814,3.010605,3.420775,2.29087,0.9473272727272728,4.235325,3.57298,6.06295,4.058325,2.3706760000000004,2.3706760000000004,1.2828025,3.355795,4.998145,4.243765,4.2551,2.9462766666666664,2.2245466666666665,4.35228,3.44556,4.181065,2.7926333333333333,2.11685,4.12366,2.8611833333333334,2.70424,2.00893,3.320285,2.70605,1.7244733333333333,3.89817,3.189505,4.261695,3.4946,4.470845,4.290315,6.25700975,4.037215,2.06926,4.62026,2.492465,7.114694999999999,2.4665966666666668,1.1474566666666666,4.37617,3.651566666666667,4.504675,0.44390714285714283,0.7948375,3.577585,3.633695,1.972794393939394,4.250315,2.916315,3.228185,8.926252,1.796462,1.311938,3.580735,2.859995,3.385525,4.756325,6.669358333333333,3.178823333333333,2.1502966666666667,2.689166666666667,1.8463233333333333,3.1065666666666663,7.842557750410509,0.8514430952380954,1.041645,4.42003,0.44756,1.603495,1.9176575,2.8036,2.991075,2.82925,4.837745,2.19775,12.546434999999999,4.84638,2.4938475,2.4938475,4.274995,0.9094533333333333,4.474573333333334,3.856515,4.215725,5.924583333333333,3.571975,4.82587,1.3901883333333334,3.000855,2.6372,2.839865,3.208145,2.629405,3.31444,3.672985,3.71826,3.22238,2.939565,2.999485,4.155655,4.266315,2.8014799999999997,3.1649966666666667,4.717924166666667,4.28365,17.88092023809524,11.320947023809524,3.2798828571428573,0.68541,1.4364285714285714,4.50287,3.60004,2.970135064102564,1.770225,0.8134633333333334,0.6356975,0.69006,2.0170475,1.587086,5.2973550000000005,3.2623766666666665,0.7088763636363636,3.36071,2.42743,1.6535225,1.6391639999999998,6.240703333333333,1.5833679999999999,4.328635,2.859395,2.96498,2.637625,2.6551533333333333,2.6154966666666666,0.7126527272727272,2.713005,2.91637,3.932444,2.96754,7.410945,3.691475,3.280885,2.4353075,3.53511,5.8223475,1.85851,2.4219925,2.4629025,1.57988,2.58675,2.1443075,2.657225,0.87267,1.3558025,0.9866975,3.065615,4.42704,6.35455,5.31885,3.32389,2.292235,2.83375,3.2815766666666666,7.192876666666667,1.3603333333333334,0.369434375,2.766545,2.0766233333333335,1.479358,3.226928,1.0829280000000001,1.7370016666666666,3.806755,2.9318033333333333,1.2447833333333334,2.0435733333333332,3.9852133333333333,3.70994,4.30479,3.947575,1.940715,4.964555,3.913985,0.7616161538461538,4.688095,4.102295,4.232175416666666,3.2021766666666664,2.312875,1.266442,1.10505,3.527445,2.62212,3.431825,3.72187,2.77514,2.6952266666666667,3.43821,3.96808,4.22709,2.52638,2.963115,3.946975,5.53325,0.58044375,4.41846,1.74006,3.392685,3.9600000000000004,1.8274625,3.12302,2.1547175,2.20058,2.628825,2.3065583333333333,1.81545,4.603325,3.68794,1.1396685714285715,7.36114,1.0670166666666667,3.60958,1.81487,4.612475,4.045075,3.236333333333333,3.27892,4.31807,8.55767,3.070795,3.60652,3.467425,3.773685,1.69191,7.86865,3.650075,3.98281,1.703735,4.356015,3.16251,0.99986875,2.0217400000000003,4.192635,2.268535,4.239575,5.0329075,4.1177174999999995,4.55993,2.0948675,5.20115,3.85604,3.0464366666666667,2.30395,1.475106,4.255855,6.2757,4.144795,4.688255,3.275285,2.1244925,3.92702,3.25137,1.1737337912087913,4.12079,4.841543333333333,3.83558,2.74839,3.687005,0.5814957142857143,0.5814957142857143,4.537705,4.069365,3.75579,2.116445,3.82398,6.00535,0.841912,4.06073,4.70127,4.54476,4.82433,4.78285,1.8305625,3.18817,2.1831825,4.44589,0.66374375,3.935435,4.14148,2.81865,2.8531433333333336,4.156555,2.40773,3.326585,59.32278291991342,3.59791,2.68184,1.7861825,3.348125,4.068555,0.82017625,1.0060725,2.115475,2.115475,1.34721,3.19524,2.328325,3.685578,7.32836,2.7636800000000004,1.32227,1.3093633333333334,2.718913333333333,4.110083333333333,0.861934,1.993515,1.268814,1.8249575,3.93433,4.038025,3.215255,20.53625415800866,3.304235,4.094405,3.344285,2.2145633333333334,2.98021,3.438505,2.48797,6.0437,1.413996,3.937725,3.3519647936507937,5.7602376388888885,1.935475,2.681135,1.82899,4.13089,2.4276166666666668,2.2596625,2.0927533333333335,3.4737194444444444,3.35911,3.268455,3.812285,4.034825,2.486345,2.516645,3.1052,2.77467,3.1697094444444445,2.300075,1.969255,3.42025,1.2056449999999999,3.93473,4.509485,2.64559,4.6139,4.74714,5.101330000000001,2.125786666666667,2.415335,2.837955,2.649075,4.109765,3.47874,4.548455,0.7341028571428572,3.8526680000000004,3.00411,3.86168,2.29662,1.838778,4.134193333333333,1.1452666666666667,2.99686,4.323745,1.0883720000000001,3.75657,3.174945,4.52264,6.0779625,2.15055,3.03056,2.6051866666666665,3.8181666666666665,2.95547,2.797235333333333,3.01103,2.46719,2.470736666666667,1.38121,1.838655,1.838655,1.9556133333333332,2.2050666666666667,1.7706633333333333,2.62197,3.6565,5.31025,4.12484,1.7615,4.266285,3.927465,3.597205,4.41577,1.9815975,1.78867,4.64342,1.9431,4.398626666666667,3.649,3.630515,2.459896666666667,3.782848125,3.320305,3.130085,3.592,0.14832122448979593,2.23231,7.780950000000001,1.5208439999999999,3.510475,2.976505,1.022287142857143,1.1296983333333335,1.8806675,3.87436,2.907915,7.17938,3.736665,3.695035,2.959705,2.71999,3.42926,3.64098,4.031355,3.47958,2.8815899999999997,5.2354,4.036155,4.12332,2.457003333333333,2.0009975,3.607515,4.5768,2.838665,2.73651,2.342445,2.627265,4.23573,3.90979,2.790355,4.42429,5.1243,2.721375,3.587735,3.89257,3.64805,4.650365,3.77384,2.786725,5.92593,4.507585,5.19395,5.04445,4.38424,5.1188975,4.281355,4.262415,1.31301,6.56195,2.482355,3.97989,4.278905,3.932995,3.0675633333333336,2.0187466666666665,2.2669266666666665,2.50773,0.943568,3.3269133333333336,3.8605666666666667,3.1009533333333335,2.08351,3.841875,4.059045,2.4828633333333334,0.5372583333333333,4.64522,4.48036,4.915285,4.639635,3.613515,4.56084,4.750225,4.750165,1.3589555555555557,0.9241384615384616,2.7466866666666667,5.15315,5.8871,0.49697375,2.911505,2.510873333333333,3.227685,4.421245,3.8970333333333333,1.93331,5.54945,3.28761,4.28994,3.16604,6.34595,4.97187,6.7792525,0.5103941666666666,4.18189,0.787036,2.415525,4.010966666666667,3.1227066666666663,1.2197966666666666,2.2431,4.277915,3.567675,4.33313,1.7343166666666667,1.8965225,3.0746,4.42697,3.94674,3.798335,1.68983,1.1672175714285715,5.8383,2.1718375,7.6957125,4.19609,3.774095,2.080745,1.6224225,3.951,4.42853,1.88506,2.373375,2.417355,2.23231,6.5995,3.0854500000000002,2.79088,3.630839166666667,3.67706,1.94216,3.39418,6.947229999999999,4.42678,5.0868,0.5111172727272727,3.38847,3.8766,4.5870242857142856,3.693115,4.104425,3.098225,2.824935,3.27378,3.02275,3.4673696666666665,1.985808,5.3691379999999995,4.609215,4.92573,3.96388,3.34211,3.2476316666666665,2.2906,1.3567,0.9292025,2.86351,2.609805,1.0993950000000001,2.73189,5.14515,4.679505,3.81883,4.13139,16.570028214285713,4.05815,4.523405,3.828355,0.74178,4.8817,4.258405,3.936415,4.807855,4.936965,2.82054,3.46575,3.328355,1.432798,3.136005,4.63034,3.258843333333333,1.46976,3.68169,4.763275,3.819335,5.1149,4.899345,5.4993,3.980075,2.6709566666666666,4.01957,4.236265,2.823655,3.11063,2.9861299999999997,1.55752,4.709405,2.6762685714285714,2.0901566666666667,4.018115,2.47647,4.362805,4.16256,2.24593,2.733325,4.430065,3.768315,4.24762,4.3667,4.914935,4.791477,3.256345,5.41025,2.64265,3.644455,3.82417,1.562918,4.41109,1.0161383333333334,4.397235,2.83256,0.9063928571428572,3.90393,2.133965,6.314310000000001,2.4101796666666666,2.4101796666666666,2.4101796666666666,0.8218733333333333,1.1896216666666668,1.92804,3.54134,5.8035,3.2837783333333332,1.9555,2.138875,1.7670633333333334,3.8484,2.498105,0.39107538461538466,1.85711,2.273375,3.144785,1.957325,2.45857,2.45254,2.1127525,3.968575,2.7626899999999996,3.14503,2.90351,1.98869,6.42449,2.09778,4.2841,3.87748,6.390615,1.68346,3.71456,3.69693,3.819075,4.350445,2.586605,1.9497175,3.77152,5.8382404999999995,2.06305,3.648735,3.280405,1.8167425,4.648985,4.26228,2.6191166666666668,2.2751,3.580245,5.238293571428571,5.92925,3.145775,2.454245,2.71854,3.193255,2.84546,3.96361,1.3392,2.726385,4.60437,0.8779125,3.565035,3.932015,3.888975,3.330165,2.44988,3.191945,2.14278,4.54156,7.871995,4.193585,3.189155,3.05478,1.01168875,4.56267,2.382895,4.31565,5.44817,3.64173,4.109135,11.131835,4.66015,3.959335,1.46301,0.6913683333333333,2.76364,3.80492,3.449645,3.577455,2.1952966666666667,2.4308133333333335,2.2376666666666667,1.13682,1.13682,1.97895,2.4110533333333333,2.0420366666666667,2.2522466666666667,2.70339,2.2131833333333333,2.5293733333333335,2.79313,1.4206866666666667,2.4350033333333334,2.1428933333333333,2.018623333333333,1.4446525,2.45219,0.7275233333333334,9.47067375,0.7275233333333334,3.1898366666666664,2.009863333333333,2.14859,4.299875,4.30228,3.882935,3.92571,2.1913300000000002,3.0050266666666663,3.1939566666666668,1.9685,3.18674,2.88334,2.6214233333333334,2.6879633333333337,1.69017,5.34945,6.35381580952381,3.1687766666666666,3.3867666666666665,3.1869533333333333,2.62961,2.5460866666666666,1.1138528571428572,3.4621,3.474,3.793365,5.92815,4.22466,2.8642333333333334,3.3346999999999998,2.7621933333333337,4.133476666666667,4.281275,2.6108933333333333,3.240405,3.102743333333333,2.9075900000000003,4.57264,3.0395033333333337,3.544455,5.585138333333333,1.92153,2.36951,1.5782766666666666,1.60984,4.67562,3.502745,2.5401366666666667,2.2526966666666666,2.0755733333333333,4.40859,3.71947,2.695675,3.2596166666666666,3.095606666666667,3.341333333333333,3.435166666666667,3.3046366666666667,3.178506666666667,0.57971,3.7032666666666665,2.458413333333333,2.78598,3.483005,4.14126,3.97402,5.35015,2.701915,3.9680333333333335,1.1053283333333332,2.9164966666666667,2.9164966666666667,4.489315,2.77761,3.885415,4.34986,1.606585,3.41526,3.6766,1.2396542857142858,3.726375,3.196632952380952,2.3207986666666667,0.38420200000000004,4.662225,2.786835,6.66921,3.09987,5.95415,3.317305,3.843975,3.81971,1.6981445833333333,2.84947,4.00192,3.48772,3.12696,2.93329,5.37582,2.12296,1.00609,2.0353766666666666,1.7460233333333333,5.15841,2.332273333333333,2.45364,1.8294075,4.55009,4.023475,3.910875,0.5268309999999999,4.34933,3.92837,2.6570833333333335,2.4769799999999997,2.7220566666666666,3.089836388888889,4.06894,1.6293533333333334,0.6410210526315789,0.7623285714285714,3.3689666666666667,4.199985,6.167115,4.941695,4.43223,5.2164,1.3511471428571429,3.9600000000000004,2.27896,1.02135375,5.5448,5.91445,2.68238,4.81922,4.20478,6.6412933333333335,4.0222,6.506285,3.74957,2.5091365277777777,6.0107,10.171940615384615,2.4927333333333332,0.633856,3.080405,4.266575,2.31457,6.31225,3.779465,3.815475,2.6734333333333336,2.6734333333333336,5.8404,3.220085,3.955045,4.81446,3.6866986666666666,2.360604,1.07362375,4.848645,2.75773,5.17022875,3.476825,4.226905,2.76849,2.18591,4.318055,4.851435,3.4844666666666666,3.917225,4.419715,26.963545,1.836115,2.50535,2.36901,1.6808500000000002,2.538953333333333,0.89591,2.8794733333333333,3.1301066666666664,3.256256666666667,3.0148233333333336,0.6265646153846153,2.9730166666666666,3.598725,2.868485,3.0780333333333334,3.53512,5.7469075,4.650005,3.88026,3.781685,3.8456483333333336,3.789835,3.430566666666667,1.754505,0.973575,1.4721366666666666,2.3474233333333334,1.5850233333333332,2.9209866666666664,2.49307,2.407173333333333,2.225633333333333,2.696365,2.10877,1.80433,3.05899,4.2857,3.69001,4.001215,1.56926,3.2208,2.53207,3.65028,2.204266666666667,2.770735,2.241835,1.5477466666666666,4.087785,6.69453,2.823675,3.65625,4.06711,2.567525,3.424205,3.4814000000000003,3.46291,4.582225,0.34257094594594595,0.34257094594594595,4.612015,5.0081,3.115835,3.05666,5.3023,3.97979,0.6579138461538462,4.72591,4.19082,3.75266,6.35765,4.662735,7.33812,14.407133333333332,12.278827179487179,4.509895,4.38587,2.4611199999999998,0.5721638461538462,2.4215666666666666,4.14705,1.3062466666666668,4.47342,3.4913666666666665,2.7860866666666664,2.0952933333333332,2.05011,4.911385,4.60233,8.831560357142857,4.898355,4.19613,7.199712765151515,3.01912,3.111276666666667,1.4333125,5.432179166666667,1.9004125,2.54169,2.843053333333333,0.2562790625,3.202085,3.543285,4.470534166666667,0.731268,1.1624933333333334,3.990495,0.5845629999999999,0.5845629999999999,2.9817883333333333,3.153916666666667,3.204166666666667,3.762195,4.26537,5.4826,3.742885,4.24101,2.909275,3.1105933333333335,2.5954833333333336,0.8478833333333333,2.71251,2.91681,3.16232,7.021585,3.07261,9.312,3.05695,5.95935,3.252995,2.2753375,2.468265,2.6802,1.8898875,2.356175,1.8008725,3.46144,2.38531,4.057565,2.854465,4.2001349999999995,4.2001349999999995,2.7127758333333336,2.7127758333333336,8.701128166666667,2.47105,0.827803,2.5954333333333333,2.5574533333333336,2.57097,4.057565,1.925282,1.922526,1.522362,3.51124,3.71329,1.7240775,4.38928,4.219765,5.630343333333334,6.5523750000000005,2.13281,4.30381,6.0486,3.751115,3.025995,2.25402,3.284425,3.240236060606061,4.158825,5.126829166666667,7.43871,3.4055524999999998,3.01751,1.1622266666666665,4.25622,3.700562666666667,3.51401,3.6739750000000004,4.2434,2.545055,2.411376666666667,6.24327,2.79834,1.225664,5.18563,3.733155,2.6883533333333336,5.18565,2.6883533333333336,2.702765,3.322895,5.01635,1.0298142857142858,3.93476,4.20999,3.396085,1.2626283333333335,1.681805,3.756415,3.847495,2.57899,6.58609,4.12006,3.581155,4.010855,4.4491125,1.26438,3.7495,2.694585,3.601295,3.677655,3.56629,4.572825,3.14766,3.79103,4.64914,2.0027796666666666,1.8751675,3.127473333333333,3.5745,3.4531666666666667,2.5949833333333334,3.588533333333333,3.0478133333333335,5.5722,3.38576,3.398505,2.98966,1.8932933333333333,3.5341,2.118326666666667,3.03424,3.18333,3.190905,0.66374375,2.065045,1.8798666666666666,3.33819,1.8325559999999999,3.467869,4.12955,1.235786,3.1060974999999997,4.533345,0.93139,1.38476,3.24526,3.90515,3.30646,2.064235,1.6637199999999999,3.509035,2.528993333333333,1.7417666666666667,2.91627,1.956195,1.222536,1.4078075,6.168805,3.24562,2.226355,2.437625,2.405085,4.022715,0.91767625,0.3637428571428571,0.8163128571428572,4.651475,1.8016732857142856,4.713455,2.0503825,1.550575,2.8381675714285715,1.2875925714285714,1.108857,0.793942,0.6407785714285714,2.5945116666666665,6.38895,2.967245,3.6522,0.3188192857142857,3.515605,17.800138285714286,3.364545,6.787240272144522,1.0963525,1.0963525,1.0963525,1.0963525,5.76873,4.020675,4.206705,2.2717766666666668,3.184075,4.515415,5.6709,3.61808,3.51184,4.015215,3.890435,3.708745,3.753952,4.035355,4.679085,4.093835,4.389175,3.266745,4.177825,2.6652333333333336,3.55621,3.35163,3.457515,3.740395,3.98727,3.0049833333333336,2.3210575,2.53959,3.868955,1.19888,3.88666,2.4229266666666667,3.328096,4.1177174999999995,4.375785,3.185895,2.815585,4.35951,3.171805,3.20248,5.1298,4.74895,3.24881,3.15111,1.650668,1.650668,1.7708075,4.666005,3.729115,5.494323,5.14835,3.531295,6.4697,4.599465,1.9823775,9.260660000000001,5.36875,6.2316199999999995,4.46987,2.8133233333333334,2.82368,0.2624531034482759,0.868605,3.4403293333333336,3.69407,4.75362,2.9163366666666666,6.228275,4.985045,0.5847535714285714,2.854495,0.52141,1.7651214285714287,3.389605,2.861885,4.010075,3.652115,3.3004,3.445325,3.31926,3.70959,3.48752,3.65913,3.303685,2.28321,1.7651214285714287,2.88728,2.16822,3.6505,2.330945,4.14559,3.644735,1.69191,4.546835,2.75527,1.3070783333333333,4.643555,4.67817,4.321375,2.938686666666667,2.9323,3.958245,2.0501733333333334,1.434006,2.45364,2.62313,2.58218,2.2289966666666667,4.921525,3.422505,5.037630833333333,3.7639492857142858,4.73007,3.69064,1.604892,5.12375,4.11269,5.4851,4.132785,6.937135,2.0012375,4.7875,3.242505,3.22951,1.767715,1.8687333333333334,3.955725,4.35918,2.39236,2.6933808333333333,3.4087575,3.4087575,2.5991466666666665,3.06985,3.42696,4.00465,3.818275,0.7047269230769231,3.2205,4.471415,4.983052777777778,3.27219,3.08191,1.8400025,2.84008,3.63601,2.404275,4.31,3.027765,4.84048,1.7990233333333334,1.0201454545454547,5.97556,3.7038,3.047266666666667,3.0651233333333336,1.702842,30.001078595238095,3.91248,3.5204,5.7537,4.45898,0.87925,6.78439,1.7880325,5.65865,1.3832433333333334,4.18386,4.966481666666667,3.727595,3.240625,2.104385,3.4418666666666664,4.551455,1.9959575,2.7510933333333334,3.496645,2.971475,2.802915,5.86665,2.449735,6.0358,1.10906,4.32864,3.61935,3.989655,4.78566,3.00948,2.3042933333333333,4.10149,4.505605,3.8740224999999997,3.8740224999999997,5.7532,2.17584,4.371675,6.202306666666666,3.52122,4.12032,3.248155,4.840285,3.614735,4.250345,1.49813,2.246235,4.368365,4.488285,5.37155,4.339235,2.28042,9.138390000000001,3.092185,3.767885,1.6900571428571427,3.535495,2.3095133333333333,2.7213766666666666,2.0776075,1.2472133333333333,2.5711366666666664,0.9392957142857143,1.1823714285714286,1.1823714285714286,1.1823714285714286,1.8593933333333332,0.5752175,3.850025,1.1952533333333333,2.490136666666667,0.8854233333333333,1.7793133333333333,2.77535,2.01968,0.78827875,1.8266799999999999,1.4427133333333335,2.3857433333333335,1.676324,1.676324,1.6983066666666666,1.7871733333333333,0.9646459999999999,1.7540833333333332,1.6484833333333333,1.31454,2.30844,2.11104,5.92785,1.3114,5.6758,17.092269416666667,6.960585,3.47164,3.533505,3.279833333333333,2.748196666666667,2.7643533333333337,2.881353333333333,0.6892308333333333,0.962438,0.962438,0.6524375,2.226316666666667,3.501675,3.345365,1.4329560000000001,5.0412,3.85805,2.551805,3.968085,4.69637,3.872995,4.078045,3.5178,3.124115,3.453145,5.60325,3.1168099999999996,4.762805,0.534601,0.534601,2.444565,2.89577,4.663,3.482015,3.839295,4.60971,7.681594,7.197844999999999,3.562325,2.367085,4.469655,3.45112,2.37562,2.3166,3.89444,1.28732,3.779875,2.467575,1.5747375,3.5048333333333335,3.77078,2.1184275,5.126829166666667,1.5440125,3.4106,3.15031,1.0457785714285714,3.6202,2.825416666666667,4.32173,1.1530516666666666,1.738115,2.28619,2.0863075,1.73069,2.4663775,1.9468925,1.985495,4.093275,4.358515,2.486365,1.920555,1.5116100000000001,3.5129333333333332,2.04765,2.545925,4.61107,7.2779,2.2698316666666667,3.252825,3.44723,3.5485,2.49035,5.0002,3.970325,3.071345,1.3368125,4.46924,2.324475,3.186593333333333,2.632285,3.685585,4.99584,5.58115,2.1894,2.6384233333333333,2.8569433333333336,3.4712666666666667,1.9233500000000001,1.431638,5.27905,3.1827966666666665,2.2472003636363636,3.0088633333333337,2.8310600000000004,2.1705833333333335,3.0444,3.13617,3.4004666666666665,5.1878,4.327625,2.944323333333333,4.8411,3.31607,2.38647,3.63751,3.675355,3.95156,5.952465500000001,1.8000019999999999,3.893845,2.4042,3.658525,3.675655,0.60026,2.34052,2.392395,3.37728,2.783925,2.25562,2.807675,0.572014,2.72127,4.41914,2.447825,4.080145,2.3273466666666667,3.76173,1.8794575,4.390115,4.336045,2.00164,2.81608,6.75818,3.744645,4.21782,4.708325,6.764499772727273,4.054005,4.29326,2.1611,4.31824,3.132825,1.9848866666666665,2.0111175,2.1360933333333336,1.030417142857143,2.5591233333333334,2.3939066666666666,2.6142600000000003,3.3750999999999998,1.808894,3.28961,2.0369733333333335,4.25391,5.088735,1.041605,1.8750466666666668,2.5844766666666668,2.90617,1.9865199999999998,1.0835350000000001,5.458223333333334,2.14298,2.73794,2.6454233333333335,2.46832,2.7764733333333336,3.172985,2.33617,2.677826666666667,2.2202466666666667,4.089425,3.500995,4.029425,3.0501133333333335,3.030836666666667,0.6974440000000001,1.89161,2.1225025,2.0138233333333333,2.59836,1.19306,2.736613333333333,2.9868133333333335,3.8207,1.94433,3.497985,3.17505,4.915005,3.342765,0.6240966666666666,1.998592,2.6958300000000004,3.1527233333333338,0.7203627272727272,2.811123333333333,3.3498479999999997,3.4262,2.7771399999999997,3.3251099999999996,3.905295,3.8478666666666665,3.071476666666667,1.8553675,5.2917,4.81904,4.804925,5.3951,5.59185,1.8058366666666668,3.58152,3.5561666666666665,3.3409999999999997,2.7166633333333334,2.6429533333333333,3.755133333333333,3.5123333333333338,2.88709,13.394733333333333,4.34973,1.04927,2.7652933333333336,1.4578659999999999,3.24302,3.296996666666667,2.1828166666666666,5.85231,6.4546711666666665,2.2219700000000002,0.8889060000000001,4.205845,3.427466666666667,3.083075,4.785175,5.19805,5.30825,4.756805,3.61456,1.95194,6.5001225,1.1622266666666665,6.5057775,4.47021,2.04679,3.993415,7.056655,5.61535,2.2422999999999997,1.4522016666666666,1.99772,6.27197,1.52585,2.9263333333333335,2.4597516666666666,4.120205833333333,5.8583,4.420165,6.45205,3.4198,5.12355,4.272225,8.02171,4.724045,5.8163,2.5541,2.4077675,11.079273333333333,3.383925,2.67086,2.5283599999999997,1.8107933333333335,2.3628466666666665,3.26318,0.71439375,1.121302,1.0953,3.075545,6.836286666666666,3.0841086666666664,1.4661033333333335,4.40321,3.54187,0.604959,4.58433,3.990335,4.94213,3.54132,3.11879,2.75895,4.36403,10.000129999999999,1.7923325,3.88102,3.758755,4.195905,3.69194,0.7749575000000001,3.6582333333333334,3.904533333333333,1.8129,2.5294866666666667,2.3491033333333333,2.55796,1.8063900000000002,2.221573333333333,2.319395,5.862807142857142,5.09075,3.50243,5.048086666666666,1.6827766666666666,2.351605,4.529755,4.107195,4.48529,4.021515,4.46083,4.582755,1.650668,3.79584,7.400965000000001,1.276745,1.8057766666666666,2.4913933333333333,2.54622,2.9080100000000004,4.7986255,0.7623285714285714,2.40828,3.356025,6.33025,4.66789,2.2704666666666666,2.9158766666666662,2.04161,0.538328125,2.53395,2.98386,7.76009,4.49026,4.41949,0.883709,4.6494,9.034495083333333,10.246555,3.32598,1.15822375,3.625925,3.630575,2.5849066666666665,5.269723333333333,4.73205,3.84272,1.9555175,3.657766666666667,2.20394,2.5178966666666667,0.77103,0.37967066666666666,2.443185,3.445745,1.9469671666666666,3.58663,3.04958,4.346085,5.40855,1.540454,2.8984733333333335,2.0858875,2.0858875,2.38001,3.190335,6.62105,2.7153533333333333,2.3529533333333332,3.173166666666667,3.3535,4.345435,4.25296,4.14035,4.245525,4.04008,4.05964,7.019,8.04838,1.89606,2.37701,2.9139700000000004,0.9618733333333332,0.6691791666666668,4.37682,2.481235,5.18615,2.8985733333333332,3.00496,1.770506,1.5920225,3.684475,4.32914,4.343515,1.9491500000000002,1.2600966666666666,2.7642,1.99803,2.72801,1.1291971428571428,1.1291971428571428,2.8655633333333337,4.62339,3.024165,3.303555,3.57757,2.00381,20.054222075757576,4.18185,5.353455,4.191415,4.40628,3.33848,3.52125,5.5327,6.048115,0.8323433333333333,0.8323433333333333,0.8323433333333333,2.8072666666666666,1.6827857142857143,3.217836666666667,4.08168,4.032455,3.272565,4.148715,4.437925,0.8478144444444444,1.99711,2.1928533333333333,6.220978833333334,3.3418954999999997,4.343801333333333,5.05415,1.8274625,2.04829,2.3280833333333333,0.5282875,0.8048780000000001,1.917935,2.18028,3.22918,12.790981666666667,2.7007666666666665,5.31925,0.7177857142857142,9.0373825,5.3462,3.869745,3.903085,2.576175,5.2327,2.576175,2.741422,3.377195,3.84492,3.083375,3.92247,4.10473,3.61078,5.7425,6.684634000000001,1.83374,2.609952,2.836365,26.130345422136422,1.393168,6.362,4.00312,4.052195,4.431445,4.593905,2.81343,2.97002,2.16423,6.5659,7.0676,4.5347,4.523025,4.05905,1.7074825,1.67613,4.223715,0.48104384615384616,0.48104384615384616,0.48104384615384616,0.48104384615384616,4.208685,3.323576666666667,1.1078666666666666,1.8032033333333333,1.1725777777777777,4.554295,2.4672366666666665,2.2554725,7.0070466666666675,3.15361,0.18030689655172416,20.198910833333333,4.66567,1.79558,1.3419460714285714,2.141,1.9799900000000001,2.2079675,4.575275,3.01251,3.543,4.37641,2.1074100000000002,7.2069175,2.732675,2.075345,4.46186,5.6818,8.605916666666666,4.188335,0.29565121951219514,3.68488,3.83767,2.7376799999999997,2.00275,2.9140599999999997,1.6512650000000002,1.6512650000000002,4.19048,5.9383075000000005,10.90858,8.878275,0.5941222222222222,2.47118,3.839595,3.23688,4.737805,3.407845,1.349258,1.349258,3.168225,3.85995,2.6569433333333334,3.773875,4.524455,5.3222,6.612695,2.1457,5.04455,4.21852,2.66127,3.0352266666666665,3.08446,4.680015,3.927605,5.35605,3.97784,4.258915,3.632955,4.31228,4.232195,5.2053,2.59605,3.039403333333333,1.09063,4.19067,4.033795,3.598895,1.578238,1.8646166666666666,3.4903999999999997,2.894083333333333,2.3129833333333334,4.2452966666666665,1.6700833333333334,1.932235,2.19615,1.7267666666666666,2.2738633333333333,1.9098566666666665,4.028766666666667,3.0725766666666665,4.0612,3.3514549999999996,2.145916666666667,2.64413,2.0671500000000003,3.188315,1.9923,38.18586866666667,2.248800727272727,2.248800727272727,2.5755733333333333,2.46569,2.2825133333333336,1.74359,2.8654533333333334,1.59263,0.8131692307692308,4.996155,6.7627425,4.19692,4.009275,5.5702,1.8314333333333332,4.21302,1.811094,5.0405,4.560185,5.679,3.7552,1.754505,4.04488,4.280415,4.528945,4.725235,5.3599,4.16122,2.55918,3.287186666666667,2.6724266666666665,1.9954275,1.886305,4.279935,2.66236,3.8942475,3.8942475,2.306626666666667,1.67619,2.09411,2.5115433333333335,2.2159366666666664,5.29044,2.52856,1.2216666666666667,1.2216666666666667,1.90517,2.0079066666666665,2.5266266666666666,2.61817,2.5714,2.439643333333333,2.2412566666666667,2.2436305,3.0325305,1.6183925000000001,0.7889,61.70558993055556,2.460604,3.2823933333333333,2.30246,0.894158,3.756312,1.5843120000000002,1.5843120000000002,2.64776,3.3592333333333335,0.8294925,3.1594866666666666,5.497946666666667,3.4900333333333333,2.4552833333333335,2.88866,2.050266666666667,2.6634553333333333,0.29031875,3.2970333333333333,0.891462,2.548766666666667,1.347148,1.347148,3.2783800000000003,1.8573080000000002,2.6690133333333335,1.513514,3.5767333333333333,1.513514,2.200883333333333,2.63665,3.0648866666666668,1.27146,1.27146,2.7197033333333334,1.4761733333333333,3.25169,2.1377866666666665,4.159325,3.763215,11.799133583333333,7.072267500000001,2.97233,2.60371,3.760955,5.11575,5.4929,2.6598541666666664,3.95606,3.912305,2.3107466666666667,4.104085,3.1758400000000004,2.8290466666666667,4.57208,2.209356666666667,1.027677142857143,3.6843558333333335,2.8967233333333335,3.001145,0.8392228571428572,2.50745,3.539145,4.17286,4.48505,6.46965,2.00557,1.8384019999999999,4.188955,4.32886,2.335825,2.6468033333333336,2.1114333333333333,2.2795613333333336,1.028028,4.983885,4.10524,3.54532,3.59124,2.970306666666667,4.8424,4.948395,2.6579633333333335,1.8705466666666668,0.513274,14.279370666666667,0.5508318181818181,0.5508318181818181,0.5508318181818181,3.0377466666666666,3.8543333333333334,0.5508318181818181,6.97925,4.47222,0.74173,0.74173,3.385033333333333,3.3441,3.06991,4.44985,5.0233,4.2194525,2.14269,5.040980666666667,3.31038,3.4308787499999998,5.19345,2.7987325,2.33709,2.3237275,2.73285,1.5943775,3.3183983333333336,3.0252166666666667,2.12819,2.0318225,1.8914525,1.77235,1.6372225,2.5683,1.0340366666666667,2.4317925,0.5704721428571429,5.141,1.7544525,0.6195508333333334,2.0843825,7.984635,2.76944,2.143339,3.3727324999999997,7.4222,2.659625,4.394265,3.129895,5.73209,3.325515,3.86183,3.94808,4.18019,2.9207300000000003,4.178381666666667,1.0802985714285716,4.129915,2.4782066666666664,2.6367,2.41631,2.460735,2.09042,1.21849,5.5629,0.9407,4.843375,5.37945,4.982885,5.28595,3.6296,2.3526766666666665,1.915866,2.691926666666667,2.8567466666666665,2.69793,3.8429,2.64955,4.729535,1.9675999999999998,39.33474880952381,4.745655,2.43979,2.21309,2.7087733333333333,1.5464633333333333,5.902533333333333,3.782335,2.37749,3.035296666666667,2.3640833333333333,1.6883475,5.2221,0.7849928571428572,4.194454285714286,1.2919857142857143,3.4263333333333335,3.165623333333333,2.4865733333333333,1.3348,4.361290666666667,1.647286,1.647286,2.2695933333333334,2.7355883333333333,3.3126266666666666,3.3430999999999997,1.5919666666666668,2.8136833333333335,2.762176666666667,6.209356166666667,2.78661,3.8507499999999997,1.4108599999999998,1.4623566666666665,2.81603,0.9207420000000001,5.048748333333334,3.1607333333333334,2.88845,3.5035333333333334,2.6083266666666667,2.7336766666666663,3.04289,1.7242333333333333,2.405085,2.4124266666666667,3.3472666666666666,2.4376,3.6681666666666666,1.9324766666666668,0.6236046666666667,9.744302115384615,2.7757133333333335,5.2475,4.941645,2.78926,3.0738566666666665,1.48598,2.25449,2.24532,1.48598,4.0285,0.481039375,0.481039375,1.135885,1.135885,0.9988175,0.9988175,2.8681,2.815025,2.52529,1.811985,1.643385,3.802415,3.099105,4.305975,5.37005,1.8815840000000001,4.35904,2.30138,4.445566923076923,1.699995,1.699995,1.62504,1.6477920000000001,3.4973633333333334,2.0188875,4.39177,1.5328416666666669,2.4911125,0.5523030769230769,1.0591514285714285,2.10808,2.0741975,1.8497125,1.316875,4.00013,3.937875,2.1931533333333335,2.46293,1.3579100000000002,0.6654375,2.3045766666666667,3.47467,2.85215,4.431,4.903515,4.864565,3.922875,6.622955,1.559175,5.89111,1.884635,4.541945,4.523105,5.711368,3.4463666666666666,2.379975,1.868945,1.96398,1.96398,2.500325,2.500325,4.18262,5.72695,0.955096,3.79428,3.14012,3.526185,2.379696666666667,1.418445,2.89812,4.17892,4.051635,1.706814,6.54135,4.870535,1.8130733333333333,1.302425,4.085805,3.9693533333333333,3.63456,3.613925,3.779115,0.6175285714285714,3.6191,3.279943333333333,2.68599,2.8407400000000003,2.2464933333333335,3.6587333333333336,1.5437714285714286,1.5437714285714286,1.5437714285714286,2.8884433333333335,3.0917766666666666,3.0821400000000003,3.281535023809524,2.156505,1.2037285714285715,3.00867,3.1499633333333334,1.373962857142857,2.67568,2.6458266666666668,1.2414299999999998,2.48753,2.8626733333333334,2.941326666666667,2.6093800000000003,2.46467,1.9331825,3.0945533333333333,4.461156,3.813945,0.966513,1.372542,0.547353,3.4631333333333334,8.682125,2.8577766666666666,3.38368,3.1969266666666667,4.401603333333333,1.97983,7.359138333333333,6.326136666666667,2.6317933333333334,2.1205502857142857,4.0892,4.838025,1.550106,1.217832,1.394978,2.125505,10.032483333333333,2.5625233333333335,2.9953866666666666,2.853516,3.8592,2.1154633333333335,1.068635,5.81365,1.0352166666666667,3.1862830769230768,4.6248,3.23742,3.224126666666667,3.02286,4.714765,1.2029216666666667,1.971665,1.9139416666666667,1.9139416666666667,3.820685,5.48575,9.4493025,4.261865,3.38094,4.691055,1.8625825,2.3607883333333333,4.51231,3.698795,3.716795,1.550135,2.9382366666666666,3.557385,3.76943,2.4475025,4.05378,3.76847,3.83409,4.283975,3.747545,3.814365,5.2798,3.2950933333333334,2.48396,4.28964,3.15838,3.90873,1.926035,2.538735,2.681465,5.84135,2.586285,3.2174413636363637,1.697135,2.497905,3.502055,2.15836,2.097755,0.8927133333333334,0.8927133333333334,1.804565,3.491368484848485,4.18671,2.7167733333333337,4.225035,2.8632600000000004,2.4933254285714286,0.95582,2.52033,1.555655,3.72545,4.164815,0.8952275000000001,1.8258175,3.87289,2.9952975000000004,1.6693625,1.61623,5.473062857142858,0.9191600000000001,2.77276,3.290055,2.80851,2.47285,2.803703,2.157505,1.057045,2.94207,3.103665,3.418165,1.4675466666666666,1.6233766666666665,1.82113,4.14183,2.0394,4.48362,4.45977,4.306975,5.9307,5.02585,4.145675,6.172269999999999,3.974904761904762,0.7928190909090909,3.09357,3.901455,3.808545,0.4594545454545455,0.96479,3.019425,4.09763,4.62427,4.029185,3.232919642857143,2.581095,4.32008,1.690096,2.46389,4.191265,4.1115525,3.205635,2.988655,3.526195,4.415065,2.96412,4.8528375,0.928937,3.280015,2.670535,4.0555,4.418755,4.504415,2.1807600000000003,2.522995,2.880735,2.0375366666666666,4.941475,3.386025,1.31813,2.515425,3.733965,1.503002,5.7865,1.8280319999999999,2.5546866666666666,13.443993347053532,2.8947533333333335,1.4919433333333334,1.66512,2.2512466666666664,5.500123333333333,1.68983,5.851554666666667,0.6804146153846153,3.3095966666666663,4.195095,7.44562,2.8064,2.750716666666667,2.750716666666667,4.55609,4.30091,3.519725,3.42186,4.829795,5.10195,2.44151,3.167726666666667,4.32872,1.2338066666666667,2.40437,4.386305,4.03544,2.80675,2.2772533333333334,3.60662,3.304865,6.055183333333334,6.2471575,0.646896,3.912855,3.373995,3.6558333333333333,4.318935,4.00518,3.91315,1.3178699999999999,4.93755,2.419005,2.78541,4.316815,4.249765,4.41677,0.8608332142857142,2.542196666666667,8.717101333333332,1.4809233333333334,2.175618181818182,2.2878225,4.052395,3.61119,3.34145,0.6581354545454545,2.2069275,1.69142,2.21102,4.23321,4.823994666666667,2.710378,9.15259,2.2029733333333334,2.6885733333333337,0.9985310000000001,4.35858,5.1594,2.20321,5.491341666666667,2.74932,3.28373,5.3202,4.126805,4.599505,2.213405,1.7916025,1.7916025,2.771015,3.37114,4.8122074999999995,1.5548075,5.868573333333334,1.5287866666666667,3.31815,1.2100033333333333,8.733308666666668,4.55816,2.773495,4.253165,3.75348,3.92299,1.2096233333333333,1.921505,3.4674333333333336,3.2579933333333333,3.17501,3.712066666666667,3.87387,2.94464,3.21837,3.25066,1.601455,2.60654,1.9405299999999999,2.9169433333333337,2.048783333333333,4.960698333333333,3.1529933333333333,1.8088433333333331,2.70506,3.396775,3.35606,6.28155,5.9809,3.03182,3.58822,2.87566,2.973225,2.914875,1.35496,0.903278,6.494300000000001,2.93255,5.56635,4.5489,6.3362,2.85128,2.8808733333333336,6.406,2.86763,0.39755,5.66225,2.65793,3.68496,3.3723666666666667,1.3238842857142856,4.032215,1.059442,4.4295,0.88969875,1.2207766666666666,2.90992,2.50388,2.7661285714285717,3.62326,4.466905,5.775035833333334,5.775035833333334,5.071055,5.071055,4.653515,2.7467699999999997,4.38911,0.9609825,5.74575,3.033095,3.517633333333333,4.00568,3.90686,4.134375,1.9008125,4.77469,3.195764,2.779145,4.250265,2.62832,4.83076,5.2356,3.79283,3.549005,5.103,3.82193,5.862,3.05028,2.509333333333333,5.92545,4.22168,2.943023333333333,6.3344000000000005,1.6140633333333334,2.0020525,4.88187,4.304675,5.0554,3.881215,2.074982,2.074982,12.671855261904762,12.0806,4.54033,3.413805,2.8603389743589744,4.20411,4.37375,2.6387566666666666,3.288043333333333,2.884205,3.8405,3.6450333333333336,4.883215,2.13304,8.271379999999999,2.60468,1.9111875,5.79715,2.27213,4.91059,4.451245,4.53196,0.7413855555555555,3.352615,3.60859,0.997634,2.912955,4.099566666666667,1.454234,1.83349,2.8605766666666668,2.661236666666667,2.27449,3.132233333333333,2.1511666666666667,0.39278428571428575,2.5108533333333334,2.77976,2.7432666666666665,3.1572366666666665,1.49018,3.0472300000000003,6.777521666666667,4.210075,2.3406933333333333,2.0058833333333332,2.65511,3.910005,2.22042,3.5215009999999998,18.3066325,5.78485,3.2975209999999997,4.66162,3.76774,5.625613333333334,1.7268033333333335,5.85015,1.4480933333333335,4.78322,3.30086,5.4382,4.95375,0.9756337368421053,6.5058,2.449755,4.658665,2.66494,4.26264,3.532235,2.92889,2.326566666666667,1.5255940000000001,1.9541525,4.185465,4.531595,2.12447,1.96548,3.04321,3.9533466666666666,2.8048066666666664,6.29975,1.99849,3.5327,4.53772,4.546445,3.92376,2.906985,3.753425,4.590815,3.826655,2.60474,2.60474,5.635930555555555,1.8758066666666666,2.523286666666667,3.79841,1.811306,7.646929999999999,3.60815,4.258736666666667,4.310233333333334,4.194755,1.859238,4.320205,5.54275,3.820795,2.0313675,3.41084,3.40481,1.082055,1.374915,1.3766566666666666,0.716675,1.6684400000000001,0.9567216666666667,4.702375,1.0344844444444443,2.4376166666666665,1.6926133333333333,1.7228875,1.03165,1.8997475,2.29101,1.459915,3.025923333333333,2.7107200000000002,4.64894,1.4581533333333334,2.5171,3.1319700000000004,2.806703333333333,2.3805,4.4247483333333335,4.649655,4.797361666666667,19.626209416666665,2.5993999999999997,2.2193925,0.6348830769230769,0.656728,3.9871266666666667,1.997356,4.01624,5.0465,6.985905666666666,3.698405,3.654245,4.289525,3.03214,3.1504433333333335,3.16305,3.7665666666666664,3.1290833333333334,6.39225,3.561085,0.916586,1.1147125,5.2014,3.1012799999999996,2.5037966666666667,2.099083333333333,2.2093866666666666,5.5112,4.815605,2.2897525,2.3916733333333333,3.31111,4.65406,8.305143333333334,4.764996875,4.22464,3.96419,5.30195,4.58839,4.147265,4.71216,3.82121,4.839475,2.28241,5.48925,1.519642857142857,4.974135,0.7373733333333334,4.75209,5.4225,6.0156,6.20345,4.299635,5.8746,5.5521,6.2299125,1.7616166666666666,1.5231857142857144,5.46935,3.509295,5.855264999999999,5.1196,5.545705833333333,5.06445,6.20605,1.2598542857142856,4.21753,5.1809,4.121333333333333,4.54693,5.3452,2.531725,4.11904,3.072315,4.13498,0.9932,1.6497516666666667,1.345926,4.76209,4.140045,3.333975,1.9620233333333335,2.8709933333333333,1.7283766666666667,2.17408,0.4379475,3.3759,1.522124,2.251056666666667,2.7408300000000003,2.3520266666666667,3.16508,2.625975,2.4317725,10.141343333333333,3.7643,1.7660157692307692,3.53032,0.8766109090909091,4.48122,1.162895,1.6311225,1.8650225,1.05487375,5.557366666666667,1.1819908333333333,1.1819908333333333,1.1819908333333333,2.9457866666666668,2.0082,4.94464,2.99065,1.4199425,1.56527,2.1521,1.29015,2.00482,5.0794508333333335,0.7823855555555556,4.063885,4.07082,2.89034,1.00554,2.198156,1.820265,1.820265,1.4520716666666666,3.6546358333333337,4.177755,5.164,5.6159,4.25162,5.20915,2.7599199999999997,2.00362,2.877095,5.0843,3.017385,3.86679,1.059265,3.9171933333333335,5.7133,1.957375,3.911955,3.0869733333333333,4.61776,4.52025,2.413125,6.899,6.33895,4.088865,4.33827,4.384975,3.33017,8.05708,4.07032,4.893105,3.43101,2.73807,5.19605,2.6925833333333333,5.5174,4.38968,2.749916666666667,3.31852,3.963375,1.4385833333333335,10.4773675,3.81559,3.173875,15.107457599206349,4.212955,1.8471033333333333,2.7251933333333334,2.123385,2.35753,3.13018,2.4951064583333333,2.97053,3.054395,3.03391,4.25308,6.103285,1.20021,1.88823,4.27097,4.326095,4.759715,2.2374425,0.5608660000000001,4.377415,4.31488,2.027235,1.3750733333333331,4.58073,4.296585,0.8705111111111111,3.86228,12.275816666666666,1.2486167142857143,0.37686571428571425,3.485666666666667,4.404818333333333,1.049688888888889,3.60964,4.097555,6.084975,1.32703,3.417935,3.81162,3.411165,4.380145,4.237475,3.95987,8.74846,3.25122,3.891485,5.3662,16.12432875,3.5809075,2.796625,1.1401425,2.03903,1.30027,2.189075,1.32678,2.028235,1.68172,2.040395,2.3768975,2.3620575,2.2021725,5.3826,4.230195,5.8856,3.39359,5.649921666666667,2.773626666666667,5.11795,3.4734,1.2663,3.657785,2.0727775,2.8219126666666665,4.39881,4.52689,4.728835,4.31476,3.321123333333333,3.7244333333333333,2.4858066666666665,3.15794,3.770495,2.344855,1.975365,3.4861,3.98872,2.913505,2.3731533333333332,12.443436666666667,0.697,2.729555,4.42421,2.412438,1.1107799999999999,2.77938,7.2127783333333335,7.09011,4.372605,3.758175,3.91178,1.990525,2.26336,2.8091576666666667,2.0442766666666667,3.7564866666666665,4.962625,4.3094,0.44364600000000004,6.08295,3.2188133333333333,3.0610733333333333,3.5263666666666666,6.0375,8.471813000000001,4.2966755,0.9813125,2.232355,2.557035,3.88505,2.74364,4.66078,4.40142,3.3747333333333334,2.6812133333333334,4.05276,4.019345,3.882945,4.1959333333333335,1.84867,3.16911,5.2472,5.49575,2.9230033333333334,1.5167,2.313353333333333,15.207032337412587,0.5510936363636364,1.54617,1.54617,2.3862900000000002,5.117166666666667,3.70582,4.47426,2.8146,2.96924,4.50519,3.16005,4.27611,3.16005,3.55658,1.83972,1.6004133333333332,5.86805,2.665975,4.84741,3.24711,2.70561,6.330005,2.0195333333333334,4.506115,5.07555,3.660095,3.246855,4.800575,1.973084,4.97356,3.1471475,6.878438333333333,5.1302975,2.83825,3.690125,4.8791,2.155,2.5213300000000003,3.4163666666666668,0.42897857142857143,3.154363333333333,10.174183333333334,3.977165,3.59369,4.82896,3.2783308333333334,3.08708,1.3425585714285713,4.096915,5.4328,3.34963,2.29676,4.709955,3.40821,4.27865,4.391055,2.761075,2.761075,4.16873,2.807215,2.581330681818182,1.99014,4.6702,4.121195,0.9970857142857142,3.752045,4.685605,2.6681566666666665,6.7705725,7.68045,1.4983879999999998,4.221995,4.761405,6.488922,0.624434,7.6495766666666665,3.3034175,0.6124936363636363,5.0339,5.1868,4.681195,4.21471,4.65814,4.325465,5.0356,3.91871,3.756625,4.200905,5.14865,4.509555,4.506225,3.942295,2.63767,3.82607,3.709025,0.970262,4.189065,2.45711,1.698415,4.18329,4.39008,5.7488,1.0499514285714286,4.949168333333333,2.876175,2.74535,1.6753125,1.3111733333333333,11.397834166666666,2.2456466666666666,2.96806,1.9675900000000002,3.77474,5.456989999999999,5.9872483333333335,2.65301,2.02344,2.10552,2.10552,2.10552,1.5142366666666665,3.857365,4.063475,3.172825,4.60638,8.291205000000001,3.95142,1.261826,2.34211,3.14499,2.19515,1.6978680000000002,4.009375,2.91217,1.51389,3.0930733333333333,4.961417857142857,5.671262499999999,4.030325,4.10804,3.03083,4.911735,4.53082,5.356606666666667,1.6509675,1.6509675,4.30184,3.86517,2.530373,2.530373,3.68165,1.1211771428571429,4.87674,3.31797,4.262475,3.608785,3.82883,3.2579833333333332,0.98421,4.35859,5.0809,4.17882,4.55842,4.803185,4.73246,4.331555,1.8953925,1.5003475,3.547015,3.78111,3.40431,4.496935,2.258425,3.0194125,5.34775,2.975575,4.92111,7.0336549999999995,2.31933,2.9657150000000003,4.229663333333333,5.0482716666666665,1.5495225,2.1199102380952377,1.0374716666666666,2.1199102380952377,1.7407433333333333,1.7407433333333333,1.534752,4.939235,3.294935,3.813595,2.590845,3.992955,1.5358916666666669,5.34515,3.173675,1.76079,2.875966666666667,3.59311,3.714445,6.652665,4.68031,1.212282,0.7972283333333333,3.42045,6.9866616666666665,2.5555666666666665,3.62972,3.71836,3.71836,2.37455,3.42799,3.077495,1.382925844155844,2.942793333333333,3.190425,2.98963,4.19464,3.8817399999999997,1.64382,3.42655,4.354355,4.170205,5.03235,4.255525,1.6095025,2.058855,1.3045633333333333,2.121685,3.510275,1.87899,4.32064,3.1493966666666666,3.255725,4.26643,5.0368,1.277545,0.94177,1.8720966666666667,1.103775,1.174488888888889,4.990315,4.16404,1.09063,0.26524173913043475,0.26524173913043475,0.26524173913043475,3.400825,5.738673333333333,4.307685,5.3134,5.15965,5.3651,4.63802,4.62565,3.100295,3.717445,1.6558875,4.658125,4.050315,4.08652,4.202535,4.20465,0.6767372727272728,0.6767372727272728,0.6767372727272728,0.6767372727272728,1.03088,1.03088,4.112305,3.83726,3.547115,2.856465,2.75189,5.8584,4.86634,5.71995,4.357545,3.0501400000000003,2.530606666666667,9.91086,1.38888,1.38888,3.84307,5.26895,3.2871400000000004,0.481039375,0.481039375,0.481039375,0.481039375,0.481039375,0.481039375,4.603583333333333,4.835215,3.29751,4.388875,2.908765,2.908765,2.810845,3.134883666666666,2.43243,2.55042,3.28655,6.787093,1.423306,4.52199,3.369125,3.948155,8.541191666666666,2.1086966666666664,2.71994,0.9178514285714285,2.15552,4.880235,2.8664,0.85111375,2.74268,3.918135,5.47805,2.548475,4.6126876388888896,0.8347322222222222,1.9705233333333334,4.64985,4.82681,2.6808745,2.4363966666666665,2.1059666666666668,1.3191783333333333,6.684403333333334,3.21177,1.9614866666666666,3.112125,2.716076666666667,3.52714,3.970185,2.7992866666666667,3.117713333333333,5.9309,1.4430500000000002,4.322155,5.2981,3.44831,3.938025,1.9338933333333335,3.00432,3.85541,3.814375,2.76932,4.96208,4.710725,2.65392,1.9425824999999999,2.908136666666667,2.869213333333333,2.902483333333333,0.8001418181818182,2.19771,8.22682,0.45583,2.94251,1.5971066666666667,2.61834,3.1231899999999997,2.6366533333333333,1.2363888888888888,1.7516559999999999,2.758706666666667,2.1761675,3.725145,1.976786,2.5340599999999998,1.4580266666666668,3.176826,1.97501,1.1428357142857144,2.674136666666667,2.001405,2.41425,2.6863266666666665,3.0353100000000004,3.0670466666666667,3.239803333333333,2.9915266666666667,2.8706099999999997,2.974066666666667,2.7173266666666667,2.6432,1.7260499999999999,2.50663,2.563893333333333,1.6437333333333333,3.062326666666667,3.842052380952381,2.9786866666666665,2.4224799999999997,2.85951,3.4781999999999997,4.6228283333333335,2.92376,2.00491,2.00491,2.398225,1.199685,2.4124775,3.3339800000000004,4.55549625,2.7998,1.98442,2.03979,2.1545225,3.758245,3.02291,4.14927,3.52463,1.78876,2.124703333333333,4.330605,1.213028,1.213028,2.0706775,0.6506807692307692,2.3960178846153846,1.753385,1.753385,2.75733,2.49415,2.7732466666666666,2.6346783333333335,1.8633825,5.691506666666667,3.9998,3.9998,3.691565,3.109145,2.3827,3.12721,2.415295,2.969125,5.1904275,0.49781499999999995,0.684124,4.220175,2.780995,2.858975,6.549378333333333,3.684355,1.6206980000000002,4.90731,4.768095,4.019335,4.2419,5.3896,4.773315,13.43245,3.39441,1.6307666666666665,3.22013,4.09112,4.82442,2.86681,4.03951,3.81177,3.604995,3.80087,2.8619266666666667,2.905015,2.6605466666666664,2.5024933333333332,2.5024933333333332,4.086935,2.95478,3.00954,3.48031,2.51063,2.55371,2.1914625,1.92356,1.9881,1.98104,1.7262975,3.3084439999999997,3.61252,2.43575,6.707405,3.20521,2.345003333333333,1.9536533333333335,3.43866,3.920995,3.742715,3.0602389583333336,3.434775,3.02333,4.35905,3.550275,3.851205,4.02465,3.790555,3.676655,0.6602666666666667,0.6602666666666667,0.6602666666666667,3.67203,2.25248,5.37505,2.495795,3.80299,6.7420527777777775,2.70674,0.3466592307692308,5.4287,0.770005,4.343370952380953,2.079495,3.75425,2.041155,4.03836,5.397815,4.18888,4.00217,2.7279233333333335,2.6768199999999998,1.4791583333333334,2.6527,0.3874415789473684,0.5560694117647058,2.565516666666667,1.3848666666666667,1.887075,4.08269,2.763045,4.897085,2.7641299999999998,2.9707583333333334,3.48436,6.01897,1.6512525,0.8861657142857142,2.62706,3.6376299999999997,1.1738944155844155,4.92478,4.0053,3.58777,2.7417833333333337,4.2427,2.581296666666667,2.4634633333333333,2.3170699999999997,2.3697575,2.35019,2.26945,3.2142733333333333,2.2492033333333334,5.409650666666666,2.1025325,2.0260333333333334,2.1912166666666666,4.869363333333333,3.343082,3.343082,2.4309233333333333,4.020125,2.3506475,3.17074,2.94007,0.5712246666666666,4.387315,1.8686125,11.379201111111112,7.70344,2.977525,3.11655,3.48232,4.31249,2.855395,3.397735,0.2816466666666667,1.9066725,3.4546333333333332,0.7893816666666668,3.901805,1.2794985714285716,4.73849,3.169665,3.10318,3.509995,3.193005,2.355805,4.7322,3.82749,3.5771,6.91987,4.37917,2.876913333333333,3.030886666666667,1.621996,1.963175,4.24612,3.276855,3.7335025,2.695395,3.487555,1.348636,3.0866,2.57087,3.569715,10.181278333333333,3.80773,5.354981666666667,3.72351,4.090035,1.0052433333333335,4.548324,4.55838,2.5419933333333335,2.5430566666666667,2.62992,3.5671,2.472233333333333,1.78652,1.98015,4.074725,1.566406,2.62205,5.018058666666667,2.586856666666667,1.0551117857142858,1.0551117857142858,3.765765,2.97304,2.97304,3.375966666666667,2.987273333333333,3.33860358974359,3.8298,3.385733333333333,2.7750033333333337,2.4170333333333334,2.6155500000000003,3.2174266666666664,2.2609425,2.4732566666666664,1.651642,5.819477,8.542416166666666,0.5029069230769231,0.5029069230769231,0.5029069230769231,0.5839769230769231,0.5839769230769231,0.5029069230769231,3.00103,2.9806666666666666,4.2578499999999995,1.4077233333333332,1.8320925,3.376378,2.50427,3.02889,2.4389166666666666,2.9028166666666664,3.30196,6.1506783333333335,3.2037099999999996,2.56297,2.8676866666666663,4.63984,2.24269,3.3719333333333332,6.07637,2.4447233333333336,3.4418666666666664,1.3640316666666665,1.3640316666666665,2.7148066666666666,0.5105436842105263,2.43626,2.7375633333333336,2.855753333333333,3.2736966666666665,2.3008466666666667,1.5184066666666667,2.60368,2.807396666666667,2.38409,4.451295,2.335259333333333,3.497845,2.753545,3.3712,0.467823,7.355038333333333,2.96009,2.96009,7.562990833333333,1.8346666666666664,1.9125766666666666,3.2132166666666664,4.445225,2.526996666666667,1.9717366666666667,2.61809,1.4252,3.4035333333333333,1.78449,2.8286845,1.4170325,0.27528,0.27528,4.715745,3.86976,3.331415,2.60963,2.7355,3.31381,1.4280466666666667,5.22635,3.993615,3.15801,1.7960875,1.161795,2.60672,3.2132166666666664,2.73522,2.23092,6.08788,3.839855,4.371455,3.88835,2.49718,0.6818925,6.450772499999999,1.9894225,1.506425,3.28878,3.994585,2.243335,1.7272333333333334,4.453345,4.077585,3.0358733333333334,2.9679066666666665,4.03331,4.13227,3.6685666666666665,2.507432,2.507432,3.843615,4.718555,5.47505,6.00378,2.5764766666666667,3.848855,1.4435142857142857,2.570325,5.381682,3.85539,1.910682,5.2124,3.560745,3.35736,1.93577,4.170075,4.714645,4.50745,4.503155,2.369006666666667,2.58073,3.5993666666666666,2.0408566666666665,2.566125,2.70379,2.4850333333333334,0.6784410000000001,2.207545,2.8091566666666665,1.8154810000000001,4.430385,4.525955,4.62245,3.80573,3.0297,4.86191,11.67603,4.66107,3.75662,4.422655,3.999575,4.66078,2.4033,3.1131586666666666,3.4409666666666667,1.17778625,2.912815,3.107285,4.58549,5.38855,4.37631,3.4174333333333333,3.0116266666666665,2.2970366666666666,4.272566666666667,3.9590499999999995,3.5993333333333335,3.9590499999999995,2.1257135,2.3568666666666664,2.359135,2.0025175,2.59102,1.9065966666666665,0.8256766666666667,1.4033316666666666,1.9778799999999999,2.0149333333333335,1.73647,1.44701,1.8492033333333333,2.7247500000000002,1.525918,2.9110600000000004,1.25318,1.7302166666666665,2.563235,3.9165666666666668,2.4821666666666666,2.1683866666666667,2.335996666666667,3.31128,2.20901,2.7642433333333334,3.1687333333333334,2.495766666666667,3.03363,3.1466025,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,0.15967451612903225,5.1039,3.00217,1.0117285714285713,3.0971733333333336,2.7424966666666664,2.8995233333333332,3.523385,3.1665033333333334,4.678955,3.2175,1.502172,3.021463333333333,1.6914833333333332,0.96587,0.9242900000000001,1.5926733333333332,0.9215233333333334,0.7906225,1.3465960000000001,3.27968,1.551324,1.582115,1.8103655555555558,2.2195727777777776,1.4779483333333332,1.2550116666666666,1.4784083333333333,0.9676733333333334,1.3080933333333333,0.77134,0.9370879999999999,3.366645,3.69273,4.27789,4.673165,4.07986,3.135706666666667,4.58475,3.3973999999999998,1.93331,3.584235,1.96085,3.62092,2.17701,0.7866718181818182,4.307365,4.678215,2.09013,1.380255,3.14193,3.344545,3.6546358333333337,2.9774433333333334,2.675985,0.89444625,2.2199675,4.882965,3.481925,2.538215,1.5246266666666666,3.902035,1.8636575,0.5822727272727273,4.481515,4.41188,4.063055,2.55273,1.506672,3.19567,4.367515,2.63311,2.6930533333333333,2.5201566666666664,2.6791066666666663,2.778216666666667,2.86964,3.026923333333333,1.23720125,2.508175,2.5053033333333334,5.11985,4.32901,3.919795,4.77568,16.158380125,3.9392050000000003,4.471811333333333,2.95798,4.021385,4.82664,1.493052,1.849875,2.28067,5.258839999999999,3.521405,3.37868,6.2649,2.28067,4.07204,2.22831,2.13876,2.9040266666666668,2.6380666666666666,1.2316749999999999,4.29049,3.48948,2.84165,4.37998,2.4292133333333332,3.2291733333333332,3.69863,3.452455,4.397995,3.74442,2.652175,3.475145,2.548335,2.5722733333333334,1.222526,1.222526,3.1485033333333337,2.360533333333333,0.37786785714285714,4.802186,0.9652419999999999,2.76656,3.708935,0.5926508333333333,4.31675,7.87407,1.8751675,3.753015,3.42473,2.6776966666666664,3.15912,2.244345,3.171065,3.753225,4.444085,3.141915,3.7532,0.9820333333333333,11.594753333333333,2.606355,2.82521,5.5953,2.707925,3.963155,7.749638333333333,4.188725,3.872265,3.868785,4.18312,5.240667500000001,1.6089975,2.68459,4.50852,3.8173333333333335,1.8789799999999999,3.83665,3.47663,3.810285,3.99459,3.82477,3.913945,2.5514416666666664,4.28227,3.67415,4.916835,3.29155,2.263803333333333,2.30443,1.8874266666666666,3.123086666666667,1.4014666666666666,3.6606666666666663,0.8415363636363636,3.15969,3.0205866666666665,2.6074966666666666,1.5609250000000001,4.080825,3.805655,4.26116,1.8925475,4.33121,3.85745,0.7315905128205128,0.34930384615384613,4.288655,5.4376,0.95111875,0.34930384615384613,4.297765,0.7315905128205128,0.7315905128205128,0.34930384615384613,5.821478333333333,2.5729233333333332,2.37458,5.35755,3.167345,3.35539,0.8573633333333333,3.40524,3.830095,4.66737,5.6795,2.146195,0.6924338461538462,4.357880833333333,1.9456333333333333,1.33362,1.9253375,1.035942857142857,2.410676666666667,2.1930833333333335,3.323775,4.74602,2.688216666666667,2.9754799999999997,2.7976733333333335,2.12816,2.87177,4.43311375,1.656805,1.9315725,4.063585,5.1269,2.0754029166666665,5.17765,2.489075,4.09256,4.272995,3.281975,1.206545,3.34193,6.6414,3.55533,3.397145,5.15545,6.31545,2.56757,3.072985,4.63466,3.388205,3.374195,8.43556,3.85869,4.843389999999999,2.576265,1.3493425,2.5913533333333336,1.715955,2.27443,2.090575,4.031945,0.6269171428571428,3.17515,4.00239,1.9317900000000001,2.975103333333333,4.92162,3.60208,2.805595,4.186585,4.884315,9.250183333333332,2.68652,2.3811233333333335,1.71074,1.4631033333333334,1.23001,1.49156,2.641103333333333,2.5768299999999997,2.9155433333333334,4.328175961538461,1.5108875,2.3132733333333335,4.836235,5.1639,3.598705,3.52191,3.02047,2.769415,2.164015,2.21812,1.81583,2.045165,3.100575,3.771515,4.817685,5.1913,3.62537,5.346723750000001,3.36924,2.721665,6.316069583333333,3.27004,8.877575,4.675949999999999,4.675949999999999,5.463338333333333,1.6195133333333331,1.377,1.40721,0.745838,4.84238,3.7498,3.4329199999999997,3.4329199999999997,2.1663799999999998,4.209205,4.40782,4.2476,4.006295,2.9220666666666664,2.60517,3.516435,3.01228,5.236314999999999,3.692195,0.7429863636363637,4.946545,4.96961,3.914965,4.81857,3.628815,6.1759,4.06611,0.8413769230769231,5.3494,6.952105,3.13849,5.71335,5.7559,3.505565,2.71715,3.81454,6.06615,2.0782675,5.9495,1.8789475,4.52521,2.4941866666666668,2.264895,0.928937,3.078495,5.77575,3.596615,3.716275,2.08534,4.977555,8.086606666666666,3.515385,4.40308,2.624325,2.575215,0.860021,4.51388,1.4826,3.4519866666666665,3.4519866666666665,3.80984,2.35934,2.916593333333333,3.55532,1.7107,2.609566666666667,3.2012866666666664,3.3281066666666668,3.04228,4.18265,3.03186,1.8439175,3.0791566666666665,2.04026,2.903226666666667,2.08773,2.9851766666666664,2.9175833333333334,1.3751942857142858,1.97813,0.47670666666666667,1.3334333333333335,0.47670666666666667,0.47670666666666667,1.97813,0.47670666666666667,3.4064333333333336,2.11735,2.11735,2.641793333333333,4.081195,3.82732,4.13975,5.2192,5.30025,3.550565,3.699795,3.85706,1.8023175,2.271558833333333,2.31285,0.8068945454545454,5.2891,2.9027133333333333,3.0431633333333337,5.6493,4.0575525,5.12975,3.562005,2.6264366666666668,3.156445,3.60292,2.66878,2.892886666666667,2.0941466666666666,5.2566,0.85066,3.549995,1.1386457142857143,3.716515,3.1167366666666667,2.7868,3.96697,3.97959,3.66041,4.18932,4.00999,3.59213,4.148015,4.18518,2.3493975,2.691825,3.2942666666666667,4.289665,2.833925,3.257755,2.70643,3.034745,3.11659,3.48246,4.74451,4.600905,3.997085,68.0101982488345,2.821425,3.70426,15.965180333333334,4.180815,3.0437433333333335,2.1376,1.9404133333333335,2.7151366666666665,4.2605375,2.9564133333333333,3.853299166666667,5.778,3.357455,7.081803333333333,5.2391,2.385555,3.33661,3.584235,3.52982,1.9017279999999999,1.1206275,4.81124,3.01618,6.150713333333334,3.5957,2.4088166666666666,3.456395,3.480215,4.523125,3.23243,5.791142499999999,4.348845,3.51699,3.054045,2.4750225,2.751345,6.0612,2.5295,3.66037,4.3970304166666665,1.279355,2.557035,5.427872499999999,3.308625,3.216735,3.649615,2.96815,3.94667,3.23885,3.233425,2.667975,4.677145,2.589835,2.683025,4.49509,9.547545,3.2489333333333335,4.121975,6.06906,3.40015,1.89885,4.16367875,2.16976,3.0131766666666664,3.022136,3.54465,3.430755,3.15572,2.95953,3.450665,4.054295,4.039725,4.2878,4.07894,3.19205,3.66815,2.6373083333333334,2.6373083333333334,7.06832,1.579195,3.19768,3.22392,2.49652,4.66221,4.258445,2.98785,3.27186,4.446965,6.203135,0.6622472727272727,3.92681,2.34183,2.90333,2.5132333333333334,5.17525,2.6759566666666665,2.00635,1.10906,2.093476515151515,4.20026,5.0176,3.811365,5.801,5.5322,5.7292,2.721275,2.0705833333333334,3.98885,2.72983,2.926213333333333,2.020096666666667,1.23867,2.55917,3.2336766666666663,1.583412,2.3900799999999998,2.422390571428571,3.368395274725275,2.813245,4.891385,3.350665,1.3909725,3.06714,3.50329,5.57315,4.71775,5.6704,4.69653,2.0242400000000003,1.5012733333333335,0.5904214285714285,1.58749,3.60038,2.739715,3.82735,1.5081300000000002,2.42959,2.364985,3.463635,3.600455,3.921935,4.058328333333334,1.6668625,1.41253,1.95436,2.065015,1.450275,2.5087,6.584931166666666,4.87484,3.32205,2.98653,6.644235,4.58176,3.1929,3.0914,3.54523,2.65512,3.85164,2.31703,7.66211,0.926635,3.03948,6.66015,4.0374,4.61064,6.31195,1.3982366666666666,2.9353933333333333,2.9733666666666667,2.77309,1.473555,4.096345,9.23487,2.903805,4.772015,4.000925,3.099395,4.759075,0.893125,2.82188,5.29835,6.070483333333333,5.2113,5.8341,2.881725,3.5291333333333337,2.2915733333333335,4.684835,4.795105,4.254482619047619,4.254482619047619,0.6163842857142857,3.4893666666666667,0.90292,0.9346133333333334,1.6807875,3.6781,3.4919000000000002,4.9961714285714285,2.73258,3.2598854285714287,3.1763114285714282,2.6162300000000003,3.067206666666667,4.580666666666667,3.4221041666666663,1.8810375,1.8810375,3.79625,3.0511366666666664,2.76064,3.445985,3.281546666666667,0.5611,3.0871099999999996,2.3756633333333332,2.4213033333333334,2.4022900000000003,2.50495,2.49234,3.02648,2.76164,0.799646,2.7053100000000003,6.678680714285714,2.0345,7.683031,1.6376300000000001,1.6376300000000001,3.351914,3.303903333333333,3.2338166666666663,2.6888966666666665,1.669712,1.287917142857143,3.2119466666666665,3.2922166666666666,1.4186316666666665,1.5364,2.8650266666666666,2.5599600000000002,2.6288833333333335,1.825955,1.9551075,2.56907,1.973015,2.92597,3.326385,1.7885,3.813705,3.29184,6.880835,3.428775,1.6957725,2.95319,2.59162,2.24323,4.11827,2.4726433333333335,2.797975,6.8041925,0.8359461538461539,0.7223866666666666,4.57625,1.4962,1.4962,3.667585,2.4169075,4.202655,3.290165,1.4225633333333334,2.384762666666667,2.9034366666666664,2.436761,5.00815,4.35678,2.5351766666666666,2.15558,1.423522142857143,1.423522142857143,2.1850833333333335,3.911745,3.9799,5.69065,3.053793333333333,4.9306,4.334435,6.79495,4.47122,2.38084,2.735196666666667,2.67356,2.609106666666667,0.7468877777777778,0.7468877777777778,0.7468877777777778,3.209765,4.432055,3.73272,1.1206625,1.1206625,5.11685,6.03035,6.27222,21.629122777777777,11.7823,7.77042,3.02168,5.8173,2.36705,4.35399,2.4891533333333333,3.19668,4.069066666666667,5.1873466666666666,2.22686,1.735095,6.29198,1.868828,1.868828,6.4143,3.19412,4.42624,1.7958925,4.685225333333333,4.360705,3.09682,4.912075,3.362855,1.9065966666666665,5.9479,9.206,1.9065966666666665,1.7958925,2.1472666666666664,0.852586,0.852586,1.7449020000000002,2.39742,1.7449020000000002,4.35456,5.69545,6.1051,9.07293,1.7958925,11.516202,6.07235,5.74135,2.36705,3.37502,4.362315,8.58474,3.1263316666666667,3.74434,5.7828,3.24483,4.606565,6.26835,4.44818,5.0102,5.0487,2.97745,4.69838,3.282465,4.43508,4.491655,0.81211125,1.522514,2.998485,5.38935,4.725105,2.586856666666667,2.0191725,4.085355,4.82502,5.6881,5.25025,5.2779,4.5749,3.460785,4.224085,3.782305,2.14585,5.00329,2.256135,2.71211,3.486555,1.7869366666666666,4.013205,4.162395,3.81266,3.6144966666666667,2.88814,6.479655,0.91658,3.49538,1.798255,1.1926742857142858,5.098457,1.334955,1.71872,2.3328533333333334,2.7364385,2.841763333333333,2.8023466666666668,1.6321325,0.725239090909091,2.047756666666667,2.584315,3.407495,0.6665176923076923,7.233383333333333,2.0736333333333334,1.2772700000000001,3.3449666666666666,1.2772700000000001,4.049135,0.9059272727272727,4.637915,3.0479933333333338,1.61182,4.385962,4.3299520000000005,4.3299520000000005,4.517965,2.4621975,3.0685366666666667,2.792533333333333,1.49018,3.877465,3.953895,2.156633333333333,0.7025575000000001,6.890327692307692,3.00883,4.07739,4.209465,7.54493,2.2004275,4.149645,3.95067,3.20224,3.68357,5.463,6.315195,4.41905,4.606895,5.2084,2.920436666666667,4.91167,4.17139,4.402555,1.0190844444444445,0.47546214285714283,3.320685,3.424533333333333,2.8257933333333334,5.307,3.857,4.202805,4.10537,5.11225,4.225535,4.13459,1.1622999999999999,2.33498,7.938528333333334,2.16247,2.0025133333333334,3.495230952380952,10.991872261904764,1.555305,4.557125,6.46135,4.88657,3.336866666666667,2.19943,3.24384,3.68178,1.0879033333333334,2.8587666666666665,3.396725,0.33504263157894737,2.06194,4.300135,4.21331,2.44194,4.181395,2.859325,5.224525833333334,1.3082533333333333,0.558339090909091,3.9162725000000003,1.0498800000000001,1.0007825,1.0007825,1.0007825,1.0007825,1.5643633333333333,2.5088066666666666,1.93126,3.2720000000000002,5.099,3.5436666666666667,5.20855,3.58689,4.46023,3.545555,3.969885,1.4262933333333334,6.35985,2.200925,4.434475,5.312283333333333,5.15175,4.973191666666667,2.3675833333333336,2.137026666666667,2.6555066666666667,3.22465,1.2682200000000001,4.446041666666667,2.696676666666667,4.866985,2.8003733333333334,2.447173333333333,3.84801,3.481795,2.9649,2.5219333333333336,2.8468033333333334,1.53687,0.3969522222222222,3.89412,3.081095,4.146975,3.65618,3.70991,5.49405,4.25329,0.5515253846153846,2.939592,6.80994,2.07641,1.793938,5.3968066666666665,5.208,2.57774,4.419205,4.933705,4.198795,3.820475,4.109875,5.28755,5.54635,4.937835,3.604305,5.1317900000000005,1.446212,1.5489916666666668,4.13079,3.929835,3.949485,3.329455,5.1785,4.64213,3.96887,3.35507,15.19602642924429,1.2806075735687534,1.11817,1.8428027272727272,0.509825625,0.450258,1.4288625,0.3429,1.349764,3.2672133333333337,1.873866,0.9358,1.0460704166666666,0.49102666666666667,1.0460704166666666,1.0460704166666666,0.49102666666666667,0.8512923076923078,0.5524085714285715,2.597205,2.693706666666667,4.886135,3.46451,2.8353699999999997,2.710225,4.01919,4.481045,4.98825,2.739915,4.00295,0.6842528571428571,2.4406939999999997,8.023960833333334,4.31616,6.635253333333333,2.964645,4.11067,2.35898,5.01285,5.33715,3.51833,4.406635,2.74301,1.0841399999999999,4.23009,4.632975,1.068904,1.218516,1.5047483333333334,2.5193233333333334,1.87676,5.20085,5.5024,2.38709,2.38709,3.6381244444444447,6.48779,2.1625033333333334,0.6746563636363636,0.7780442857142857,2.2562866666666666,3.4041,0.838617142857143,0.838617142857143,0.838617142857143,0.3939792307692308,1.027677142857143,2.82235,5.98625,3.7381666666666664,4.024435,5.1128,1.00604,3.4496,3.0874699999999997,3.8899333333333335,5.8402,2.4420966666666666,7.2499416666666665,4.72951,1.0425588888888888,3.6748333333333334,1.8471039999999999,2.788075,2.3988866666666664,6.222666666666667,3.19674,4.39867,2.22423,4.281635,4.41809,4.705685,0.5170094444444444,2.029053333333333,1.4283866666666667,2.52405,4.025872666666666,2.1711933333333335,2.909893333333333,2.5237633333333336,2.5528733333333333,2.6351733333333334,3.0040266666666664,2.894883333333333,2.90982,1.360926,2.096693333333333,2.0711166666666667,3.2705133333333336,2.6615266666666666,2.191765,1.80893,1.9987700000000002,1.7091025,3.174145,2.2559033333333334,1.9806166666666665,2.09143,2.436053333333333,2.36762,0.8257244444444445,0.8257244444444445,0.8257244444444445,2.5138333333333334,2.186663333333333,3.0146633333333335,2.316333333333333,2.62129,2.12345,3.996335,3.4101299999999997,1.3352133333333331,2.5295566666666667,2.78065,3.933723333333333,1.4971999999999999,7.252838333333333,4.536395,3.236395,4.283765,3.81277,1.4512025,0.80345,3.14614,3.888205,3.933723333333333,3.79724,4.222905,4.349905,2.76864,3.79266,3.882815,0.866043,2.707345,3.382925,4.9481641666666665,4.69292,3.63192,3.306055,2.538865,2.2972733333333335,2.4928433333333335,0.65423,5.151709583333333,2.6755,4.054725,2.6801399999999997,3.89841,3.362033333333333,2.54036,2.8807056666666666,2.8807056666666666,2.653566666666667,2.15112,2.548766666666667,2.0642366666666665,4.15965,1.448756,2.609065,3.7404,4.057585,4.069195,5.4226,3.96013,2.35086,2.27599,3.375085,2.916625,2.7794,5.10025,2.712415,0.8031642857142858,0.8031642857142858,4.581355,3.995576,0.960046,4.39154,0.960046,3.65347,4.50645,4.70903,3.061455,3.273135,6.3842775,4.19204,5.50155,0.8249500000000001,0.8249500000000001,1.980056,4.367905,1.476205,2.8917,3.503075,1.1321214285714285,3.541585,3.82669,5.0336575,5.0336575,1.0507816666666667,5.43345,5.11545,4.661605,5.9527,2.021905,2.021905,6.98375,0.9505909090909092,7.1851,2.0369175,6.315227500000001,2.738585,2.4968266666666667,3.364,2.36632,2.222913333333333,2.248883333333333,3.03356,2.407639761904762,6.4294210000000005,1.765158,4.642615,2.7909466666666667,2.5102066666666665,2.046645,2.273385,3.31151,3.706275,3.49469,2.93812,2.31041,2.1609,2.65408,1.101772,3.44122,2.66044,3.24773,2.1065725,2.1065725,3.22244,2.0543133333333334,3.773185,3.551935,4.798145,7.197786666666666,4.069145,3.544265,6.226876333333333,2.092886666666667,3.09284,2.0083699999999998,1.4334857142857143,1.6526575,4.137585,1.5980483333333335,0.51149,0.6566,4.001745,4.464675,2.88982,0.929468888888889,2.886245,2.93436,4.71319,1.630084,1.943435,1.0767644444444444,4.542955,2.31515,3.852405,0.7277370000000001,4.179830833333334,3.80956,3.35289,4.50366,3.608605,3.94292,2.6637666666666666,5.3462,3.67045,1.942,2.7099333333333333,5.808566666666667,5.9457625,0.7767625,3.339375,4.55431,4.96877,3.5831666666666666,3.6347666666666663,2.6087,3.1866833333333333,3.6872333333333334,5.9672725,2.5599600000000002,2.7271675,3.99382,2.95299,2.362605,2.507675,8.56384,4.643195,1.9203999999999999,5.06585,4.69822,1.8337720000000002,3.81079,1.22192125,1.5665714285714285,4.421785,3.9883,4.819885,2.45162,2.973715,2.997525,4.497945,3.662675,3.687395,3.14589,3.612615,3.803055,3.71788,1.178597923076923,1.178597923076923,7.32386,0.6965425,2.1754516666666666,0.6965425,0.7813433333333334,0.35638666666666663,2.956795,2.590835,0.60947,2.1754516666666666,2.5504,2.8576,2.347325,3.768905,4.316475,6.987105,1.7853,2.227615,2.228845,4.167985,5.80015,1.844315,1.7563425,1.21401,2.9703524999999997,4.206515,2.57606,4.2682,6.4651499999999995,0.4287744444444444,3.762125,0.706697,2.63909,2.2069275,3.468605,1.2541616666666666,4.025,4.55359,3.88992,2.883485,3.764205,4.7450775,1.6604575,3.191115,0.5675723076923077,2.316885,2.42189,1.0775219999999999,2.8463100000000003,2.4542333333333333,2.5902266666666667,3.6673,8.099070000000001,2.956988181818182,3.78177,3.5219,6.674894999999999,5.260136666666666,3.1138933333333334,4.27636,3.69065,5.8394,4.54837,5.25135,4.636125,4.27013,4.7599,3.5651666666666664,1.527835,1.9648899999999998,2.38669,3.996805,2.5088166666666667,0.20475702702702703,0.20475702702702703,0.20475702702702703,29.90908019047619,0.20475702702702703,3.116707027027027,0.20475702702702703,0.20475702702702703,0.20475702702702703,3.2917703603603603,4.183945,0.20475702702702703,0.20475702702702703,0.20475702702702703,0.20475702702702703,0.20475702702702703,2.677035,5.56585,3.46073,0.20679333333333333,0.20679333333333333,4.415368666666667,3.9795605416666664,3.821191875,3.2530997638888888,3.8154119047619046,7.897186666666666,11.273112914141414,6.186502666666668,7.915093333333333,7.8483193035714285,2.7148066666666666,6.188037142857143,4.303446666666667,4.4115408333333335,0.20679333333333333,7.783898333333333,6.296555523809523,7.281936666666667,2.76515,8.461808303571429,14.357854970238096,18.184111852106227,56.66039116713679,116.19804112932736,1.3640316666666665,3.4418666666666664,3.33835,3.7692314658944657,0.20679333333333333,1.5569783333333331,8.930256666666667,15.038254261904761,19.91309861111111,47.672513382205516,13.514800136904762,3.239025,0.23126965517241377,0.23126965517241377,4.584336666666666,2.7754933333333334,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,0.23126965517241377,5.64335,0.23126965517241377,0.23126965517241377,0.23126965517241377,2.621475,1.8892766666666667,3.922975,3.77584,4.0680491666666665,5.00635,2.110595,4.06232,4.257775,3.10766,1.5052066666666668,3.64807,1.0680633333333334,2.269395,1.9511133333333335,4.9297233333333335,5.924036666666667,2.8151266666666666,5.588973444444444,0.5050422222222222,0.46443466666666666,2.468716666666667,2.6788133333333337,2.92187,3.82673,3.33011,7.38281875,3.692035,3.81118,3.50443,4.01354,2.992475,3.34087,5.48355,1.970155,0.45638615384615383,0.8504854545454545,4.228635000000001,1.863495,3.68383,3.78396,4.717865,3.732965,2.38531,2.66884,0.614614,0.7329920000000001,4.35259,2.7125066666666666,5.41115,3.645525,3.6149700000000005,2.500805,2.893335,5.7067,3.63059,3.30262,0.7628445454545454,3.1772833333333335,4.36063,2.28328,1.0047,1.4742300000000002,3.8185,6.08885,2.032805,3.11362,3.6846,5.49765,2.644525,2.456186666666667,2.250995,4.79538,2.55292,4.138165,0.7145914285714285,2.1630766666666665,3.392075,1.87064,6.102383333333334,2.74073,4.23789,4.231445,3.012015,2.02848,0.53233,4.61416,4.94031,6.55615,2.95825,3.645265,4.456115,3.083915,1.9350266666666665,1.1672228571428571,4.917595,2.326275,2.769855,8.28829,4.052935,4.834605,3.483765,0.7146211111111112,3.063275,1.2445785714285713,3.363745,6.1019,4.822775,4.92936,3.62876,4.96833,4.407785,1.4488425,1.7497533333333333,5.0169,2.948506666666667,3.30214,2.32282,5.2041,4.341325,1.45087,3.5453666666666668,3.0357,2.833785,3.991535,9.45999,4.723405,1.7964,4.51851,6.37175,4.3547375,4.096835,3.601365,3.77279,4.581115,7.73933,2.4457866666666668,3.342485,3.242585,4.276975,2.765345,3.234355,4.72502,4.401445,3.58355,3.987696,18.444007,2.8095199999999996,2.5255466666666666,3.3269566666666663,5.549518666666667,1.130095,3.95168,2.2608416666666664,4.945635,1.32292,4.3878,4.36846,3.39098,0.9828775,4.4923,4.45121,1.88979,4.846778181818182,3.97772,1.0639185714285715,3.501065,2.05829,2.704045,1.74983,4.261165,3.79924,3.659995,3.704285,2.9681366666666666,4.314175,8.017866666666666,4.28995,4.086695,4.62498,3.09666,3.809285,4.58908,6.1159810000000006,1.00838,1.00838,4.3384,4.638205,2.0319433333333334,1.2720033333333334,6.987405,3.95033,3.466465,3.692865,4.60824,4.38005,3.627645,4.039765,6.081943000000001,3.9011266666666664,4.512565,4.89676,1.3852200000000001,2.5605,3.928195,4.406385,3.4055524999999998,0.19765,1.546895,2.114355,2.50151,2.17067,0.9647177777777779,1.4174975,1.3637575,2.2489500000000002,0.5950544444444444,1.1042457142857143,1.862685,3.99266,3.8270999999999997,2.1605866666666667,2.563826666666667,2.92558,2.744353333333333,0.680884,0.95448125,2.920955,4.601435,4.338975,2.87255,4.259255,4.23086,4.544635,2.0315000000000003,4.427555,4.903785,4.45478,6.0800925,3.69132,0.46761,5.28,4.57308,3.839435,4.678985,3.541845,1.9331219999999998,3.87838,4.058755,2.843525,5.334158333333333,4.63112,1.3891349999999998,5.334158333333333,4.172225,6.84948,3.7046,1.1452666666666667,3.696955,4.696845,4.159555,2.6275833333333334,4.819045,1.5499125,2.0412575,3.06872,3.543745,0.82728,4.747665,4.85248,3.36735,4.062495,3.332466666666667,2.91906,1.7086839999999999,1.6001,3.242405,3.527375,3.321203333333333,2.5006266666666668,2.2429575,2.0027796666666666,3.77155,1.3260185714285715,0.8252622222222222,5.72953,3.91871,1.4577120000000001,2.6502399999999997,2.3017566666666665,2.87436,6.110886666666667,2.2508705555555553,0.784357,2.5771,4.3591,2.24086,3.671755,5.1618,5.2134,4.15522,4.33166,4.71322,2.2146866666666667,2.2849566666666665,1.7076399999999998,2.1512566666666664,1.8905625,2.3779666666666666,2.231716666666667,1.65796,2.860865,3.10014,4.34652,6.3913,4.52036,4.034425,4.442745,3.906165,3.79597,4.930715,0.879065,2.880716666666667,4.556505,1.226744,0.624606,4.860215,3.50163,2.45342,3.3822987500000004,5.9934650000000005,5.4746,0.872208,1.1244242857142857,0.7036488888888889,4.19963,2.3657166666666667,2.854203333333333,1.1564871428571428,2.7072299999999996,2.595476666666667,5.4571,4.712765,4.23125,5.0168,4.05199,1.2410366666666668,3.617965,1.72039,3.54832,3.81032,3.397895,2.5752133333333336,3.17948,2.7005733333333333,3.547005,4.130285,3.13536,2.3718675,8.27406,10.1065275,3.75692,1.3044757142857144,5.44615,3.76708,4.62286,4.523585,3.71752,3.789575,3.406235,4.23789,3.5489873958333336,5.11347,3.76162,3.44125,4.73303,1.7925619999999998,4.763505,5.74505,4.81917,3.315725,3.3727324999999997,7.27842,0.7585816666666667,2.55537,2.7828233333333334,2.42291,4.981525,3.24675,1.1972416666666665,4.103385,3.291703333333333,3.74282,4.529635,4.015811666666666,6.49033,3.0272066666666664,2.8889666666666667,3.047966666666667,2.8439599999999996,3.81299,1.9522666666666666,2.204266666666667,3.0585166666666663,4.09376,3.7332191666666668,1.9917125,1.5978325,3.0144989285714283,3.104731,0.89331,2.5642716666666665,2.5642716666666665,1.3069025,5.65045,3.280225,3.18276,3.581285,3.252235,3.545245,3.501165,3.2091,3.265615,2.3572866666666665,0.5333706666666667,3.45939,5.653825,3.19092,3.66183,3.238305,4.043535,4.06017,3.18034,2.66062,3.881765,3.76266,3.349775,3.3958,3.05624,2.64155,4.29603,3.90154,8.90093,3.298725,3.73204,3.13256,4.088815,4.14331,3.721165,2.350155,3.743295,2.5999600000000003,3.005005,2.974945,3.195715,3.729675,1.6861966666666666,1.6861966666666666,2.36306,2.985415,3.446025,1.6023640000000001,2.5771,3.70916,1.767474,3.008415,1.6023640000000001,4.35359,3.11657,3.916754,3.05602,3.61211,2.416375,3.025035,4.09507,4.082305,3.4865,4.43546,3.839355,4.276495,3.708555,3.445165,3.109925,3.022205,3.952785,2.73189,3.709435,5.3213,4.25657,4.039345,0.3000486956521739,3.723625,0.4530766666666666,3.720735,3.69046,3.052115,3.553715,3.781955,5.706013333333333,2.9608,2.6165133333333332,2.405883333333333,2.86394,0.676168,6.4207,2.908145,3.45226,3.63353,1.991285,2.721785,3.23385,3.331955,6.84801,4.46463,4.83056,4.22188,4.402785,4.20434,3.82564,1.4507733333333332,1.6258659999999998,3.693515,4.387555,5.601640000000001,2.3795733333333335,4.73641,1.834055,3.468666666666667,4.081765,1.805192380952381,4.182735,4.89471,3.4471333333333334,3.6407666666666665,2.6945033333333335,4.41218,4.424075,3.3303266666666667,4.33695,4.174495,4.70649,4.290275,4.437595,3.685515,3.03101,3.977575,2.4077675,3.1666899999999996,3.1666899999999996,3.854625,2.5827833333333334,3.82064,2.3268366666666664,4.396975,3.2452966666666665,3.647605,1.903045,1.8493666666666666,1.2056449999999999,1.2056449999999999,1.49653,3.318426666666667,1.73658,2.836876666666667,3.84184,5.012176,3.3045666666666667,4.13718,6.05251,2.972205,2.930025,2.976383333333333,1.6410733333333332,4.141475,3.87237,6.0928075,1.6386533333333333,5.31105,5.49385,3.282883333333333,3.386645,4.15829,6.78061,1.9340866666666667,2.268285,3.803605,0.5320228571428571,3.55177,4.129045,4.00555,4.09892,3.007295,1.3093299999999999,1.549564,4.00611,3.10652,2.4334433333333334,3.83068,4.54665,5.1487,1.02612375,3.234455,4.54914,3.647585,4.651145,2.4576933333333333,5.188186666666667,3.88849,1.5990360000000001,3.554345,1.2176416666666667,2.8485766666666668,6.774645,3.492945,0.6700145454545455,3.02801,3.919135,3.86224,1.861345,1.861345,4.939025,5.4246,3.007815,0.5180044444444445,1.943235,4.455610833333333,4.01498,4.1671,1.7958960000000002,2.9840066666666663,3.0294,1.1149998684210525,1.1149998684210525,1.1149998684210525,0.8066973684210527,1.4128523684210528,0.606155,1.1149998684210525,0.8066973684210527,0.2544073684210526,0.8605623684210526,0.2544073684210526,0.5522900000000001,0.5522900000000001,0.5522900000000001,0.5522900000000001,1.1273886666666668,1.04006125,2.4861733333333333,2.3976466666666667,1.1006066666666667,6.363311666666666,2.6398566666666667,5.955523333333334,2.4011133333333334,3.491045,2.88606,3.47495,2.6648141666666665,4.317975,2.85895,4.024635,4.172155,4.498225,2.1412425,3.793525,4.70832,4.23293,3.251445,4.990015,3.432315,4.55239,5.3107,5.1063,6.17395,5.2994,1.05459125,4.502965,3.830415,2.789305,13.609774999999999,4.44287,5.035,2.67627,7.69881,4.32043,4.635415,4.851365,3.10721,1.0791075,2.55778,3.905455,4.173045,3.371775,3.541655,4.112385,2.9244833333333333,4.38914,4.492485,4.20614,6.639023333333334,7.108798333333333,1.2913785714285715,3.592325,3.880005,4.029155,3.638875,3.624785,7.11283,2.9412,2.91058,2.650195,4.1032,3.920185,4.62283,2.69068,1.83242,0.9876760000000001,4.379015,3.65602,3.531775,4.09246,3.180265,4.79514,4.142015,6.4295,5.9438,5.14895,6.6425,3.823995,3.3236,3.226055,3.483525,1.89553,4.590835,5.7399,6.5324,5.7594183333333335,5.7594183333333335,2.45811,1.89553,2.065055,2.91113,0.73815,1.569365,0.831215,1.47649,2.444745,0.37409,2.790135,4.19511,1.47649,3.0689105000000003,10.9734425,6.461444999999999,2.1753431666666665,0.996446,1.8298966666666667,4.26836,4.39388,5.426471,1.986385,2.2736,3.547935,3.278965,4.288065,1.3003466666666668,5.099,3.401033333333333,3.050405,5.004,6.97662,3.823865,2.3382075,2.80639,1.4558766666666667,3.583685,4.7377075,1.711702,5.69775,4.5344,5.889105000000001,0.486882,4.335553333333333,5.2942,5.03595,2.574735,2.65239,7.25295,7.9239,6.54865,1.9509999999999998,1.9509999999999998,1.9509999999999998,4.268285,4.847525,6.25,3.430035,2.75928,2.5749805263157897,5.0879,5.1961,2.6156555,1.96363,2.6156555,7.0243955,4.75065,4.698991666666666,8.01964,4.698991666666666,4.698991666666666,3.42158,7.09752,5.75783,2.91443,2.91443,2.65169,7.04105,3.031905,3.52415,5.386010000000001,5.386010000000001,5.386010000000001,7.547835000000001,3.718615,3.38844,3.7161425,3.5960275,0.79841,7.40531,2.6546600000000002,6.5619,3.51255,13.000640666666667,4.6749,5.504140833333333,7.21137,2.561485,3.44164,1.1457783333333333,5.504140833333333,3.357465,1.634645,1.634645,3.400975,5.2926525,1.82961,4.925675,0.8991619999999999,1.518375,0.8991619999999999,1.8853525,2.7287719999999998,5.569417,3.713525,1.518375,3.36684,4.9779775,1.0175675,3.60985,4.42333,1.96632,4.20383,2.546835,3.23321,2.99855,0.9538740000000001,3.863895,2.44734,1.860595,1.5250199999999998,3.0257249999999996,3.942945,2.378255,3.866595,1.4269699999999998,1.4269699999999998,1.4269699999999998,3.77409,2.94848,2.94848,2.82606,3.87026,2.3557200000000003,1.5028,1.5028,3.193755,5.0427125,1.0223725,1.5588233333333334,2.861975,1.1898316666666666,2.7486550000000003,0.9538740000000001,0.9538740000000001,2.119806666666667,0.9538740000000001,3.3626716666666665,0.5575,3.3626716666666665,6.125602083333334,3.11645,2.4492266666666667,1.8181520833333331,0.68784,2.505992083333333,3.49001,2.505992083333333,1.0275133333333333,3.513155,4.029465,3.67652,3.71427,2.71492,3.87873,1.8751966666666666,0.9707954166666667,0.54510875,0.9707954166666667,0.42568666666666666,0.9707954166666667,0.9707954166666667,4.43637,4.478035,5.40805,3.469215,4.223645,4.17987,5.11845,3.48295,3.718695,1.2884728571428572,2.50111,4.224244166666667,3.966935,1.4277633333333333,2.65753,3.58553,3.87582,4.12399,3.34886,3.962415,3.39969,3.280545,4.34139,2.258716666666667,6.0279,3.67371,4.024395,4.434318571428571,1.0476205714285716,2.310285,3.16329,6.12826,3.8238,3.2549,3.0104699999999998,4.157055,7.237633333333333,3.0968466666666665,3.880545,2.746093333333333,3.91763,4.058685,5.5585,5.2859,4.22978,3.04376,5.2429,4.767785,3.5565333333333338,7.12895,3.281776666666667,2.252115,2.26476,4.829485,6.41935,5.0538,5.14495,3.939245,4.82788,5.62405,0.49038692307692305,7.06529,4.49493,3.70962,3.516895,4.45204,3.924325,2.9525333333333332,2.4548975,1.348355,0.5692453846153847,1.690034,3.1388166666666666,3.26112,3.495965,3.80872,4.203695,11.887625,4.01689,4.06149,2.955065,0.7454483333333334,5.509356666666666,3.445733333333333,1.8729366666666667,5.31867,5.7981783333333325,2.352445,9.41436,4.457625,1.843146,1.843146,1.843146,4.320015,8.86981,3.82633,2.695325,2.695325,3.75927,9.82859,1.0118925,4.50521,4.36575,4.09151,2.72958,2.260876666666667,4.42195,4.036235,6.32985,6.137886666666667,4.077635,3.252675,3.88932,3.9216375,3.2616075,1.18564125,2.7253166666666666,6.39725,3.1844725,4.943025,0.8807575,3.7012,2.1700866666666667,2.6216866666666667,1.7846875,1.8043333333333333,2.22239,5.05765,2.016565,4.51117,5.4386,1.765158,4.698925,3.868965,4.63553,3.1663866666666665,2.087625,2.81491,4.103935,4.18119,4.18119,1.2157025,1.5729966666666666,2.722106666666667,4.354159666666667,2.2472003636363636,4.768885333333333,1.7981120000000002,2.6487266666666667,2.1153299999999997,1.5897975,1.5897975,4.66007,7.412073333333334,1.89855,2.97249,2.2919775,4.73277,3.25233,0.7877419999999999,2.964425,0.7877419999999999,2.76896,3.31816,5.3105,5.45345,3.78709,4.520548333333334,5.7924,2.431235,1.8977666666666666,3.093476666666667,2.2543533333333334,6.1312,4.80425,2.633225,4.184745,2.751505,4.44181,1.0963525,1.11798,1.8842133333333333,1.1833683333333334,2.6999166666666667,2.7250566666666667,2.37685,2.6900066666666667,3.118895,4.522425,2.6953533333333333,2.4448466666666664,2.7750066666666666,2.47212,2.8163199999999997,2.7197133333333334,2.038343333333333,2.50548,3.64292,3.795,3.187505,2.91144,2.836786666666667,2.115125,1.8601025,1.2271366666666668,0.324552,0.14187,2.0406833333333334,1.9284533333333334,0.14187,3.7134925,1.9826175,0.14187,5.7286025,2.109895,6.72746,3.378575,3.0295,2.51973,2.9197333333333333,2.180255,4.63369,3.054233333333333,3.171196666666667,0.4106863157894737,4.1339250000000005,2.614869649122807,3.128715,1.917725,2.43354,4.188565,2.31504,7.83239,5.072,3.29565,3.78288,6.8204,6.59931,1.75326,4.311382500000001,2.085785,2.16559,6.66524,7.81964,1.1938600000000001,2.048355,3.739295,2.751965,2.92853,3.379595,2.80713,4.192345,2.385875,3.16323,3.3079,3.265915,7.94234,1.4588700000000001,1.95578,3.01378,3.38762,1.94649,3.43372,1.45161,3.7805,3.25572,6.33073,3.364155,9.2834075,3.58514,1.4938420000000001,1.8606333333333334,2.70335,5.99987,1.5822925,1.61634,5.93038,3.56679,4.14925,2.96419,1.9334366666666665,3.16979,10.65894,5.11673,6.91494,3.606155,2.285395,2.19503,2.54942,2.869,2.95961,1.53491,1.58348,2.538866666666667,3.478155,1.8320925,3.51925,2.61383,3.236005,3.78898,3.5617,1.1313133333333334,2.87653,1.0345033333333333,1.3179779999999999,1.61037,3.20687,3.626645,3.66703,2.82383,3.749595,4.094165,3.003415,1.4528560000000001,3.59479,3.560745,2.992275,1.92991,3.33806,3.458645,1.4922025,3.436665,1.63256,4.050805,3.649735,4.509,2.80035,3.890675,1.83064,3.228895,5.22245,1.78851,1.05643,3.544833333333333,2.80964,4.19496,4.25107,3.287055,4.63184,4.892285,2.5368833333333334,4.98466,5.4353225,6.50005,4.037655,5.119468333333333,3.946335,1.6267083333333332,2.8206399999999996,4.592095,4.926295,2.6053866666666665,7.326936,1.2019328571428571,3.364466666666667,2.24597,1.785022,2.34164,2.893966666666667,0.39626357142857144,2.7874133333333333,3.694933333333333,3.3197,2.48118,3.218223333333333,2.4095766666666667,2.5352633333333334,2.135665,9.028469999999999,4.78496,1.948508,5.2369,2.5710289565217392,0.7315905128205128,2.6707733333333334,7.400514,1.6567399999999999,4.42977625,6.047746666666667,1.60704,1.67878,1.3628175,4.003315,3.29882,4.41733,3.7985875,2.4197866666666665,3.65272,0.9589779999999999,2.8810146666666667,4.118895,4.22393,4.77139,2.71337,4.97839,4.379315,4.04779,4.5832,5.66925,4.770215,3.918505,5.1337,1.7439360000000002,1.957375,2.77275,3.452255,1.086202222222222,3.80159,2.1707899999999998,3.3847,4.175225,3.0553166666666667,2.4378166666666665,1.5282933333333333,2.870233333333333,2.8375669444444442,2.6669,3.0216066666666666,1.9751966666666665,2.1612625,2.35608,3.56412,4.356545,3.7361,4.52349,3.697045,2.368655,3.069935,4.81264,3.8556333333333335,4.641205,3.19525,2.31729,4.6500683333333335,1.7735033333333332,4.170365,4.685804166666666,5.81500130952381,3.54233,4.24866,5.41,3.18514,3.880745,4.31072,3.71022,3.857348,3.58151,1.3678175,3.198825,1.822,2.44445,4.737305,5.432025,3.857348,4.069355,3.518465,1.476205,3.433645,2.097395,2.4726433333333335,2.109875,2.785555,1.5292901515151516,1.5292901515151516,1.5292901515151516,0.47818181818181815,0.74177,2.0298283333333336,1.1045725,3.684095,1.3016183333333333,3.842255,5.1478,4.45985,3.31171,3.987815,3.169595,4.98817,1.523185,3.01413,2.917565,3.315115,5.893397,4.1319,5.18455,4.134685,1.021245,2.32946,1.3546366666666667,4.005055,4.01186,4.29921,4.90946,4.338175,3.793645,4.442245,3.82372,1.838825,1.1434333333333333,5.087226666666667,1.0361744444444445,1.3467533333333332,2.7535533333333335,8.01735,2.602555,3.91418,3.056415,5.625335,1.70198,1.0024933333333335,1.5141675,3.150935,3.707705,3.81262,3.764425,1.8806675,6.185425,2.9249500000000004,0.91413875,4.58912,2.8179433333333335,2.614593333333333,2.3842766666666666,3.505433333333333,5.859865833333333,2.6347766666666668,2.89174,3.5380000000000003,2.2304233333333334,2.563903333333333,2.922,2.779905,2.07959,4.630075,4.641875,4.841755,1.021741111111111,0.771687,3.7013,2.584686666666667,1.0370075,2.6933808333333333,3.765025,4.338355,7.028675,4.73276,3.5125666666666664,1.7957480000000001,3.62778,3.849125,2.6418333333333335,2.506349142857143,3.733345,2.71707,4.906432666666666,0.80096,2.585615,1.65378,3.536755,4.02933,2.24399,1.1083075,3.086,0.442849,3.218495,6.7277,5.51155,2.741422,1.48885,4.180766666666666,0.7814022222222222,2.57182,0.7814022222222222,4.019975,4.405435,1.436415,1.8294075,5.192121666666667,1.7964266666666668,3.564675,2.820255,3.33877,1.273978,1.7597966666666667,3.935745,4.581335,5.2906,3.022136,2.77705,3.240275,1.68701,2.1864375,1.8889525,2.0014775,4.07858,1.4787555555555556,1.4787555555555556,3.067155,4.650296,8.33614,4.0396,7.330920000000001,2.4273,3.76324,4.084035,1.607865,3.425156666666667,3.700765,3.048475,5.1837,3.177175,2.52159,2.8485666666666667,3.75739,1.045865,4.33428,4.575595,1.15017,7.489066666666667,2.527155,3.500055,3.582016666666666,5.1683,4.56298,3.234269583333333,2.5607266666666666,2.9024366666666666,1.93962,3.6588333333333334,2.281155,2.1828675,7.0739106666666665,3.106533333333333,2.88176,4.308055,21.537066505494508,0.6829999999999999,2.75116,4.55168,4.52141,8.60186,4.655385,4.689095,4.496105,7.062203333333334,3.62586,1.6836,4.844446666666666,3.190365,1.209446,1.209446,1.209446,2.36129125,1.6391125,3.242875,1.5710325,3.028985,1.3982366666666666,2.56166,2.69643,2.968815,1.5710325,3.4261,2.802835,4.094636666666667,4.947611666666667,4.93457,0.7791508333333333,3.30833,2.58531,4.857525,3.57328,2.94194,2.351775,1.7642225,2.23487,1.436046,3.760295,1.7818425,4.36274,10.756835833333334,2.6906700000000003,2.546515,4.645131666666667,4.694966666666667,4.434566666666666,5.863,2.2041833333333334,5.260136666666666,4.29269,1.0627833333333332,1.1959757142857141,6.5319780000000005,3.77645,2.3618925,3.61213,1.982685,3.8369,4.579015,4.57754,4.03953,1.2416128571428573,4.115305,4.750075,4.77218,6.229264,3.358195,5.19805,4.33772,4.54588,5.0098,3.5934333333333335,4.831045,1.910655,3.523175,3.08437,3.25241,4.25047,6.2514,4.51218,2.7542666666666666,3.5075333333333334,8.99118,4.783575,3.1828299999999996,3.418335,3.334245,4.405065,4.34259,4.6967,6.4969116666666675,3.461475,2.7465666666666664,3.9703049999999998,2.43389,3.96863,2.2552766666666666,6.3774,1.588255,4.210415,4.777635,11.4048225,0.5097492857142857,4.2555,4.7284,0.6431028571428571,3.720185,3.74502,3.90848,0.909247,4.55416,4.958923333333333,2.7063966666666666,9.937036666666666,3.2538366666666665,1.95597,2.396675,3.37533,5.8806,0.5448808333333334,3.9703,1.98313,5.3987,0.6874261538461539,4.29698,5.58895,5.92165,3.604655,6.2579175,4.54552,3.33883625,2.5473500000000002,2.9211500000000004,4.28446,4.45475,4.803305,4.89405,5.3824,3.0753066666666666,6.518011666666666,2.730625,3.158352,1.7989475,4.197975,2.23158,1.6546466666666666,3.1792833333333337,3.0236466666666666,3.05334,3.24487,3.4240666666666666,2.8794066666666667,2.718636666666667,5.57045,3.09483,3.877465,4.77841,2.50481,1.1335,2.8842,2.884486666666667,3.94078,2.9173500000000003,3.1380966666666663,5.025768333333334,2.2716833333333333,1.728445,3.08705,3.83043,4.308365,1.144515,4.12738,3.297255,3.864333333333333,2.94008,4.7930925,4.020155,3.4847,4.25214,1.61726,3.87991,0.618861875,4.65321,4.932245,16.74004818181818,3.140093333333333,1.151905,3.63306,0.6074707142857143,2.64015,4.484975,1.92986,1.1424342857142857,3.67299,4.53639,2.933396666666667,0.701235,2.590155,7.89658,4.002305,5.4769,4.99578,5.0661,3.0889100000000003,3.4924,3.189743333333333,7.151041666666666,3.80083,4.98595,2.036905,0.44241444444444444,2.22578,2.78798,1.9539,3.047705,3.52501,2.897213333333333,4.58035,0.6570391666666667,4.44269,3.354255,3.183345,1.2528733333333333,2.7357533333333333,1.94827,4.7664,3.950485,2.04851,1.5735142857142856,3.45357,4.41188,4.36322,6.034081666666667,2.0789766666666667,4.714235,4.510765,3.826445,1.923402,3.744525,5.901251666666667,4.695925,2.53984,4.86106,2.808,2.643315,3.871015,3.90572,1.3934116666666665,4.630945,1.96209,2.567013333333333,4.991811666666667,4.991811666666667,4.908415,1.376674,4.969455,0.8905975,1.77517,4.976665,2.58336,1.5268499999999998,3.100016666666667,0.997634,4.253066666666666,4.782815,2.801565,4.794795,3.79479,3.523935,5.2516675,3.6323,3.5065333333333335,2.7609366666666664,2.5036066666666668,2.489705,2.75953,4.278155,1.6048048351648354,2.925326666666667,4.376315,4.57616,2.0907445833333336,4.263025,4.46827,4.952796666666667,3.3035200000000002,5.1986,4.76548,5.1881,4.976095,3.390605,3.606055,3.7395,4.357235,5.293,4.52785,4.87466,4.544625,4.70038,0.6691791666666668,4.998325,4.49991,3.943865,7.0653625,3.933215,3.61111,4.437375,4.754215,3.37493,3.54763,2.0696825,4.5723325,1.8065325,1.2937885714285715,3.559985,2.1197166666666667,2.56315,3.4586753333333333,3.361966666666667,2.917545,1.3835066666666667,1.8167425,4.30749,3.614975,1.8212925,1.8212925,3.32214,1.575436,3.1977933333333333,4.33882,3.498885,3.964565,1.5531733333333333,2.135115,3.6040925,1.97917,3.89988,4.477625,4.553845,3.898815,6.472868333333333,2.53035,3.714895,4.365745,4.3003,3.2405166666666667,3.99366,3.89222,4.163775,1.89864,2.441803333333333,4.318415,3.787255,3.723715,3.569095,1.6883475,3.74963,4.29415,4.56523,4.200675,3.8246475,3.8246475,2.9586341666666667,3.76533,4.134255,3.33528,1.605374,7.408695,3.996365,4.768935,4.406025,4.10281,3.843815,4.65381,2.99726,3.1408,2.9832,4.835945,1.919734,4.133065,5.209398888888889,5.0179,0.7399,4.841543333333333,1.1110200000000001,4.78789,4.388895,4.42836,4.10321,4.919995,3.5972333333333335,3.5972333333333335,0.8406040000000001,2.26945,4.919245,3.662185,3.834745,4.493505,5.54125,3.384205,4.021495,1.3730149999999999,2.74116,1.71208,1.2574875,4.270722,0.82108,2.27862,3.138033333333333,1.32631,2.030325,2.6759166666666663,1.2060016666666666,6.45592,1.9618925,2.567483333333333,5.45015,1.87091,2.8376900000000003,2.63287,4.553525,3.5964333333333336,3.4218333333333333,4.1569666666666665,1.64948,2.160454166666667,4.072275,0.6541585714285715,2.1895000000000002,2.3843233333333336,3.02931,2.8675766666666664,1.1702542857142857,0.8543833333333333,2.547406666666667,4.182695,1.1418585714285714,2.01921,1.26034,5.406762499999999,2.2817925,4.984175,4.41928,4.14132,5.15395,5.287,3.847225,4.291985,1.3589616666666666,3.8676666666666666,1.7450959999999998,2.310076666666667,1.1925871428571428,4.361085,2.0503825,7.05303,3.810605,3.67263,1.445726,6.84901,3.598575,1.46971,4.16661,3.268225,3.701195,3.272705,2.04106,2.04106,3.2651166666666662,1.4033316666666666,1.4033316666666666,1.923402,2.90752,2.191765,1.3352133333333331,3.4844666666666666,1.0672,3.1242466666666666,2.351605,1.97983,1.5179683333333334,2.2193925,1.9937125,0.2926417647058824,2.36227,1.181695,2.3554533333333336,2.1153299999999997,2.35086,1.0671844444444445,1.101772,3.7251,3.04176,2.04106,1.863495,2.042803333333333,2.5878533333333333,2.4765333333333333,1.829342,3.236333333333333,1.04927,3.2942666666666667,2.7652933333333336,2.59715,1.561164,0.9572200000000001,2.330235,0.9572200000000001,2.330235,0.6634725,0.6634725,0.4793111111111111,2.2181275,2.3042933333333333,0.6634725,2.24918,2.30081,2.335825,1.7091025,0.8257244444444445,0.6634725,0.6634725,1.690924,1.690924,2.07606,1.863495,0.6634725,2.21818,0.4794684615384615,2.7626899999999996,1.9524033333333335,2.5111166666666667,2.612816666666667,2.612816666666667,0.37544,0.37544,1.923402,1.9799900000000001,2.141,2.05334,0.37544,3.4913666666666665,2.51045,1.60379,0.617019375,1.60379,0.617019375,6.63939,2.8064,3.9712,2.6776966666666664,2.8351733333333335,3.0869733333333333,2.5759633333333336,3.483033333333333,2.4750225,1.6887225,2.4940533333333335,3.0968466666666665,2.3920233333333334,1.690924,2.5577893650793655,2.5577893650793655,2.8283766666666668,2.14298,4.314115,2.345003333333333,3.134513333333333,2.7249666666666665,1.413996,2.17188,2.156505,0.8001418181818182,1.7181675,3.63277,1.6477920000000001,3.0271266666666663,2.6223233333333336,2.5502,3.773,1.6099249999999998,3.4465,2.970306666666667,4.2173,1.224244,0.23126965517241377,1.2650714285714284,1.2650714285714284,0.9726944444444445,2.9163366666666666,3.8899333333333335,2.4448066666666666,2.1535333333333333,2.1535333333333333,2.1225025,1.63256,0.9437089999999999,1.8228033333333336,1.8228033333333336,0.6634725,1.923402,2.8815899999999997,3.3750999999999998,2.351605,2.1807600000000003,2.1807600000000003,2.1807600000000003,1.09436,1.4334857142857143,1.4334857142857143,2.3458725,2.436993333333333,2.6095604482323234,3.72696,2.5591066666666666,2.33524,3.635005,3.855245,6.54055,3.619795,4.13034,3.9685333333333332,13.5788875,4.78882,3.55545,1.0049675,3.877085,3.22818,2.45765,3.79547,4.96953,5.889557666666667,6.00265,0.45982999999999996,3.68049,2.66072,3.73362,2.4530775,4.34736,4.33598,3.91491,8.486005,3.82603,3.999075,4.0157,3.2804263636363635,8.040222717948717,3.184113333333333,2.73378,3.71169,3.87103,4.99824,3.671675,6.572665000000001,3.67768,1.4336499999999999,2.904405,0.94221125,4.491325,3.04288,2.79575,3.960285,3.09932,2.79374,4.771065,3.80473,8.447515,4.035155,4.603797,2.4869533333333336,5.41171,3.06112,1.2399275,1.2399275,3.59998,3.97796,2.279995,2.227775,4.200715,3.12489,3.469565,2.003035,2.0117525,3.067925,2.4294033333333336,1.11789625,3.282085,4.54166,8.39023,1.508844,2.928645,3.21454,3.27844,2.7882366666666667,8.53177,4.075455,3.3866333333333336,2.7331066666666666,3.93119,3.2536199999999997,2.9693566666666666,2.9330766666666666,3.81268,3.853825,4.232825,3.821265,0.40784933333333334,1.6385100000000001,1.7796233333333333,1.868945,4.53707,3.535365,2.6375433333333334,2.214035,4.251735,3.69271275,1.9550725,2.50499,0.8638429999999999,2.168005,2.6005566666666664,2.6005566666666664,4.880495,1.8565775,2.6965966666666668,2.3414800000000002,2.01159,1.7914566666666667,3.04961,3.590505,4.46203,4.1779,5.24805,4.674515,2.788085,2.9700866666666665,2.05886,4.586405,5.5249999999999995,1.9256900000000001,3.008433333333333,2.0976575,2.138,3.7755583333333336,2.2923933333333335,4.947185,4.097055,3.515985,4.332355,2.9581199999999996,3.70035,3.851255,2.346503333333333,2.387373333333333,0.41789571428571426,3.6501333333333332,2.57782,3.191335,6.0126,4.83189,5.774310833333333,1.9649825,1.5734283333333332,3.059995,5.13,6.3406,5.66375,2.95302,2.31439,3.65142,2.2632166666666667,4.73847,2.18245,2.2596675,5.41135,4.834395,4.24293,1.71207,1.9919425,1.0864639999999999,1.0864639999999999,1.211602,0.8647814285714286,0.78456,1.8360394285714285,4.320405,9.824038333333334,3.731315,4.26176,4.202545,5.68709,2.814945,1.7175266666666669,3.3086474999999997,3.05042,4.74259,2.1640133333333336,2.5134433333333335,2.93918,3.22746,2.2342299999999997,3.020846666666667,3.4404333333333335,2.907163333333333,3.4577666666666667,3.2607199999999996,2.7329733333333333,2.7512866666666667,3.0292033333333332,2.314366666666667,3.08187,3.078246666666667,2.9766766666666666,3.2641066666666667,2.09634,5.345924,3.052186666666667,3.963622,3.2316333333333334,2.9626366666666666,3.6889333333333334,2.8148133333333334,2.710406666666667,3.0986999999999996,3.1518433333333333,3.4900333333333333,3.0232166666666664,1.9497175,2.6609066666666665,2.702,2.87855,2.87855,3.2781833333333332,2.74377,2.42961,2.9044266666666663,2.9288900000000004,4.190066666666667,2.9577733333333334,2.72,2.813776666666667,2.8238733333333332,4.297644166666666,4.87282,1.5669633333333335,3.405333333333333,3.7823333333333333,3.363524,3.1169733333333336,3.6446,3.5035666666666665,2.4139466666666665,3.434078,1.9754539999999998,2.7924545,3.4329666666666667,3.11302,2.528913333333333,2.3602633333333336,3.8804,2.871893333333333,3.0575200000000002,2.290725,1.1720933333333334,3.2108733333333332,2.6361233333333334,2.0155166666666666,2.4765675,2.9461366666666664,3.06075,1.9314,5.618496,2.3772233333333332,0.906559,4.36235,1.8194395833333332,1.6002466666666668,4.386355,4.290925,3.38331,2.436265,1.39673,3.435,2.59006,2.97046,0.40366749999999996,2.12145,0.40366749999999996,1.88104,1.39673,2.746405,3.58724,2.30057,3.011565,3.53902,0.46631733333333336,2.7314566666666664,0.9710975,0.42875705882352944,3.781815,3.95259,4.986325,2.417355,5.37595,4.12979,3.815865,2.02599,3.815,1.676978,5.1626,2.399295,4.3514,4.425655,2.8711466666666667,1.96423,2.1467300000000002,1.343935,2.289475,0.9200075,0.9200075,4.419475,2.3220966666666665,6.092591666666666,2.909925,2.65025,2.172845,2.40022475,2.584075,6.46415,4.615335,2.03126,2.65753,2.40022475,3.849995,4.5743522500000005,2.86003625,6.0139499999999995,2.909925,3.3699575,3.305135,3.0659533333333333,5.4982,4.54928,1.9004125,2.0588375,2.4662075,2.373505,4.74964,5.3003,1.9256,3.8774,1.6410733333333332,1.5440125,5.1375,9.958991666666666,2.0618666666666665,2.139746666666667,2.4077533333333334,4.107995,4.033275,1.894215,4.425285,4.34533,2.745,38.814394,2.8105433333333334,3.017853333333333,0.4229238888888889,4.7636,2.05159,0.9102677777777779,3.739535,3.50082,1.85307,1.7606,2.3725733333333334,3.524295,1.3185342857142857,3.134883666666666,3.69715,4.54995,0.927217,4.590785,4.780785,4.732425,2.8188133333333334,1.5546275,3.7982725,4.43881,3.667935,3.2083,3.593435,3.78423,11.515711363636363,2.5154733333333334,3.086,3.793035,2.4591,4.46873,3.065695,2.881705,3.13079,6.15841875,4.42552,4.93856,5.0591,2.423075,3.57669,4.19593,3.76662,4.72739,4.46566,0.12017717391304349,2.41978,5.3257,2.847515,1.5867533333333332,1.1453916666666666,1.1453916666666666,2.0108475,2.8021,2.744755,1.5818379999999999,2.8333666666666666,4.40178,2.68013,4.5430025,0.5675678571428572,4.667785,3.673045,4.768,4.62481,4.57338,1.19674625,0.97891875,4.242999999999999,2.9565366666666666,3.0442933333333335,3.8449477575757576,4.203805,6.292655,5.46445,4.139015,3.669855,2.098924166666667,1.4761916666666668,4.424445,0.3176986666666667,3.4106,3.83714,4.15983,14.09915,1.8678075,3.05285,0.6612625,4.48689,8.507480000000001,3.546705,1.7523533333333334,5.79515,3.188883333333333,1.04679,4.84959,2.59193,2.979445,4.74943,3.4702143055555554,0.9433125,6.396966666666667,0.74908375,4.98871,3.2511275555555557,1.400215,2.1374239722222224,3.27598,3.27598,3.9375,4.352307083333333,1.282475,2.45035,2.926435,3.71811,2.96345,2.588975,3.019845,3.41794,6.830967333333334,6.3172,4.1329,3.22408,4.41791,4.660425,3.469005,3.371905,3.586995,3.71641,4.17648,2.534656666666667,2.5753833333333334,1.5731883333333334,2.358163333333333,2.251605,1.5309525,2.6845833333333338,3.573066666666667,3.2660199999999997,2.9455033333333334,2.5769533333333334,1.5052066666666668,1.7162,0.4776118181818182,2.4426799999999997,1.5636428571428571,1.8170775,3.25605,2.5192033333333335,2.6527166666666666,0.91789375,2.1741425,2.690205,3.003145,3.60291,5.1666,3.981535,2.941185,2.347706666666667,3.462455,4.088435,2.59526,3.20635,1.93988,3.858185,2.944925,3.91029,1.4346133333333333,0.622103,2.20177,3.372795,3.254205,3.8905,4.5782799999999995,8.47424,3.1538033333333337,2.17145,1.8747633333333333,1.694194,1.694194,2.918426666666667,2.541113333333333,4.852225,4.29802,3.34479,4.728245,3.988055,3.856915,3.1567049999999997,4.33176,7.921255,2.4860575,0.51149,3.0881900000000004,1.4633433333333334,1.0312614285714286,2.036966666666667,0.7216039999999999,2.04806,4.984495,5.23105,6.0215575,1.0293425,7.62046,1.9944220000000001,1.5378333333333334,2.5310133333333336,3.957675,3.288676666666667,2.269825,3.712125,3.0452833333333333,4.2466333333333335,2.9163833333333335,2.7897133333333333,3.02002,6.76222,2.508965,3.923615,3.9119716666666666,3.87211,1.5301,1.4128075,4.3927,2.4587766666666666,3.0016200000000004,5.221292500000001,2.702695,2.117955,2.389935,3.388865,3.7055666666666665,2.1634766666666665,3.916498333333333,2.8805599999999996,5.36235,2.4337961666666663,1.88404,4.725975,5.2834,4.29257,4.02352,1.5061866666666666,2.251815,1.910825,3.58941,1.5817333333333332,0.9348550000000001,2.7512675,2.02504,1.8852925,4.36801,0.7133349999999999,5.600597499999999,1.4606425,0.7647227272727272,3.491733333333333,3.85884,0.6626714285714286,2.7685725000000003,3.2059249999999997,0.8543833333333333,4.22452,0.15872404761904763,0.15872404761904763,0.15872404761904763,0.15872404761904763,0.15872404761904763,0.15872404761904763,1.865438,3.82228,1.865438,1.865438,1.8740866666666667,0.15872404761904763,0.15872404761904763,3.15954,2.657033333333333,3.46461,3.31924,2.28609,3.633485,1.363792857142857,1.582722,3.2616075,1.387518,2.6995666666666662,2.6070626666666668,5.598916666666666,4.125715,3.887775,6.53685,4.420735,4.29761,3.656085,3.69331,7.145533333333334,3.9321333333333333,3.5828666666666664,2.3568466666666668,5.130393333333333,2.554753333333333,2.067145,1.7244666666666666,4.637825,5.10305,5.0065,4.93809,5.41575,4.229755,4.500755,0.701439090909091,0.6797578571428572,0.6797578571428572,4.65662,2.457266666666667,3.978475,1.0616314285714286,4.579195,1.4529142857142858,2.294166666666667,2.47302,4.464566666666667,4.464566666666667,6.71065,4.076915,1.3275216666666667,10.060943333333334,2.6958366666666667,1.2110777777777777,4.80993,4.79598,3.49104,3.099745,2.82612,4.1864,0.7947466666666667,3.1727633333333336,3.3823000000000003,3.8196666666666665,3.1940233333333334,1.61419,1.5383533333333332,4.5114158333333325,3.16945,3.107276666666667,3.3912999999999998,5.407005,3.3955391666666666,0.811831,1.6907566666666665,3.5601333333333334,2.276256666666667,3.867766666666667,3.5135,3.127746666666667,3.4349666666666665,3.0751633333333337,2.1501233333333336,1.2845533333333334,3.1394033333333335,2.584286666666667,3.383755,3.22858,3.848075,2.5228633333333335,3.2082800000000002,2.82955,1.581564,2.1643133333333333,2.481353095238095,3.6367999999999996,1.796848,3.3299,1.8647166666666666,3.587666666666667,5.424946666666667,5.001711333333334,2.3415175,2.5379,2.6724,2.4506,1.5628285714285715,2.3244825,3.383195714285714,2.4563425,3.598333333333333,2.90184,3.726833666666667,3.07006,1.2610444444444444,1.3278075,1.8459925,2.19285,2.85534,3.4108,5.1049,7.403107500000001,2.56743,5.0692,3.783495,15.021222333333334,0.469599,11.48,0.8337844444444444,3.10981,3.05662,2.4076066666666667,2.984995,1.5707039999999999,1.4528560000000001,2.2786766666666667,1.1699220000000001,2.8798053333333336,2.0125766666666665,2.9223166666666667,2.17528,2.6571933333333333,1.58847,0.6098125,3.07512,2.580373333333333,2.9091799999999997,1.09436,3.4799333333333333,0.71371,0.3734930769230769,1.9687266666666667,4.16587,4.718105,4.447835,0.7726209090909091,3.99863,4.845555,1.07502,1.98154,5.107175,3.480335,3.823915,3.705935,3.93136,1.79199,3.879865,2.6759566666666665,3.11107,3.69215,2.973405,2.54149,3.96515,3.31841,3.507845,2.34151,3.47874,4.364425,1.39126,4.468585,2.212815,4.150915,5.001336666666667,2.02834,2.6820133333333334,2.9651533333333333,5.778081666666667,2.5049266666666665,3.3245,4.965395,3.9712,4.11092,1.8422333333333334,2.669425,4.525865,3.6353000000000004,3.597935,3.7494333333333336,2.93079,2.8558,3.795666666666667,3.13853,2.713563333333333,2.76172,0.4465927777777778,2.3134025,2.0540375,4.440585,4.671565,2.9148099999999997,2.5082400000000002,3.1481100000000004,7.731005,3.558879375,4.04411,2.75052,4.01404,3.08599,3.714198333333333,2.747446666666667,2.134425,2.51208,6.40835,4.534785,2.2417666666666665,3.183405,3.0926,2.73554,4.330645333333333,1.777408,6.2099866666666665,3.89519,4.850185,4.402925,6.3754,3.78892,6.841536666666666,3.667445,3.3849,0.6305521428571429,2.229135,1.5256075,2.8251899999999996,3.25594875,4.049955,3.83553,5.3059,2.56961,4.580315,3.6081,3.7569666666666666,3.23009,4.295485,4.609785,4.400495,2.8404833333333332,5.982281666666666,4.509,1.4167166666666666,5.3206,3.764755,2.78081,2.20178,2.2232600000000002,4.377521333333333,1.2458371428571429,2.4833266666666667,2.013115,3.908535,4.433895,2.512723333333333,3.3095499999999998,2.983552333333333,2.3438866666666667,3.646465,1.365982,2.44177,2.358163333333333,2.9254166666666666,2.5357766666666666,2.534266666666667,2.7673,4.018645,2.9547133333333337,2.8998666666666666,4.10301,2.440425,3.620375,3.622165,1.5231966666666668,1.5231966666666668,4.4544,2.7053733333333336,1.83221,1.3228425,2.0912325,1.9738075,1.2550219999999999,1.4286366666666668,0.672172,1.6837600000000001,1.6010666666666669,2.84651,2.21409,1.7975033333333332,1.9493733333333332,2.36118,1.6220133333333333,1.8078033333333332,1.7778233333333333,2.527225,3.80027,2.868355,2.802683333333333,2.6416,5.53675,2.89515,4.254685,3.9735770833333337,2.351415,3.86798,2.932285,1.88539,3.47848,1.9283275,2.96659,3.7006,1.945125,4.411395,3.21855,4.156055,3.2794333333333334,0.8098711111111112,4.742595,3.925765,3.35382,3.81342,2.2855333333333334,4.48826,4.692245,4.665825,9.240485833333334,3.48002,4.576415,2.8587666666666665,3.633505,4.416485,2.27053,2.794865,3.787535,1.9862375,5.65493,1.8840720000000002,2.748395,6.114929999999999,2.870136666666667,4.151664,1.2175314285714285,4.25161,4.313515,3.03061,4.66192,4.83448,5.992173,15.03978119047619,0.6298235294117648,1.0671844444444445,2.8875766666666665,3.87558,3.61526,2.1831825,3.30204,4.14351,4.87382,2.300115,4.697335,1.66765,1.66765,5.28515,0.7659781818181819,1.741696,2.983585,4.082945,0.3939792307692308,1.9964266666666666,4.000115,1.1547283333333334,3.09726,2.7819333333333334,2.825635,7.96831,2.6006899999999997,3.635066666666667,2.0312633333333334,2.2191533333333333,3.6492,3.153365,3.509425,6.866262833333334,1.9856975,2.813275,4.53978,6.57906,1.8711333333333335,2.3754933333333335,2.6836566666666664,1.5110633333333334,2.609625,1.58388,3.936135,3.775295,1.56577,1.8319863333333333,1.8319863333333333,2.7069500000000004,5.4123,4.3822849999999995,3.92495,4.52265,4.459875,3.252245,3.939945,4.50902,3.53162,4.50509,3.7980875000000003,4.397825,0.878361,0.383525625,5.20815,3.859625,2.4776700000000003,8.0936,1.7080433333333334,4.6656,4.205585,0.42412333333333335,2.088346666666667,1.38297,1.78078,1.9722333333333333,5.392723999999999,3.157225,3.169695,4.99318,5.1466,4.68846,0.586446923076923,1.97601,0.624057,5.821536666666667,1.406954,4.850915,1.9745725,3.0060975,3.40688,4.2744,4.01706,5.00515,0.8415218181818183,3.217995,4.05274,1.9066725,1.6631475,3.86155,3.071635,3.568575,3.89473125,5.297519047619048,4.67595,5.57205,2.762513333333333,0.5746744444444444,3.1530233333333335,3.57999,0.5725976923076923,3.829365,3.78517,4.17442,3.3179,2.6965800000000004,4.860685,3.22812,3.17295,2.25739,3.90262,1.6837019999999998,3.328295,3.60893,0.6166261538461538,3.64748,3.75206,3.224665,3.74321,4.417905,2.97255,3.972845,0.623738,2.90076,3.689033333333333,4.307295,3.466366666666667,2.4528275,3.4078666666666666,2.4528275,4.888935,3.113945,2.908493333333333,1.4921049999999998,2.9900533333333335,1.7707375,4.27669,2.69554,4.804130000000001,2.9948833333333336,2.6290766666666667,2.8688300000000004,2.229751607142857,2.229751607142857,2.229751607142857,2.0758199999999998,1.1412133333333332,4.540015,2.4677333333333333,1.6792433333333332,3.8279666666666667,2.3412133333333336,3.1561566666666665,3.959145,5.5158,3.25539,1.7880325,1.040956,4.24593,1.936122,2.1191233333333335,2.984125,3.45702,2.089125,3.486115,2.921905,1.632094,4.696485,4.159325,3.237635,3.77245,0.7755033333333333,2.4345166666666667,4.37655,7.754580000000001,4.09261,3.0689,2.880505,3.452355,3.83278,1.6457225,2.36811,4.45021,2.01798,4.43297,3.42573,5.25335,8.26138,4.12542,3.40125,3.0385,4.79886,4.211445,3.269105,3.269105,3.758385,3.9020399999999995,4.267355,3.974695,4.307125,4.529545,4.12361,1.0723625,4.32308,4.24715,5.0183,8.05229,5.043,3.598527333333333,1.8135333333333332,1.3288816666666667,2.36254125,5.067,3.847025,4.65501,2.387286666666667,4.18382,4.960225,5.1368,4.77919,3.0237166666666666,3.352025,3.889055,4.88997,4.36631,3.70082,6.431348333333332,4.95732,2.117923333333333,4.96974,3.797385,3.9363,3.7049,4.33733,0.7689718181818183,3.9843,4.27482,1.1672228571428571,1.2274800000000001,4.694075,4.57952,8.578312,5.2488,4.51554,6.0567,3.045015,2.484036666666667,4.77258,1.702355,1.702355,2.721525,1.6298833333333331,3.019545833333333,3.2126033333333335,2.020355,4.080727727272727,1.4229900000000002,2.15932,5.3841325,3.4985350000000004,3.6334,3.11553,4.05554,4.00998,3.08161,0.9788688888888889,4.13203,3.1107133333333334,4.035225,4.352015,3.6441383333333333,5.30485,4.409355,4.50189,3.59268,5.1006,6.409,4.62932,3.357355,3.32732,2.11987,2.11987,3.895715,3.89987,2.3553366666666666,2.75258,2.0014569696969695,2.475886666666667,1.95767,1.95767,4.119585,3.39067,2.187415,3.606005,2.766435,1.977795,1.2598375,0.9703966666666667,2.684125,0.4258447368421052,0.7914444444444445,2.95088,3.552325,0.4709281818181818,3.70828,1.808284,5.32335,3.39261,7.16735,4.37351,5.312283333333333,4.68095,5.1889,4.105515,1.956625,1.776284,3.894605,3.05572,3.77324,1.2786766666666667,3.377485,4.482065,2.949865,2.588635,2.461445,4.39814,3.32989,3.238955,4.03892,3.658595,3.46327,3.085005,1.027677142857143,1.809135,2.31456,2.83771,4.281725,7.46379,0.9207420000000001,1.5726733333333334,1.5726733333333334,1.776278,3.872395,2.67695,3.158375,5.1253325,2.9580566666666663,1.4083375,1.4083375,1.4083375,2.982025,3.0689105000000003,5.30805,3.24824,4.166915,3.541215,3.64806,3.014585,3.2933541666666666,3.740045,3.86247,3.0574225,1.2550219999999999,2.997815,3.0574225,3.66456,1.4253533333333335,1.9180866666666667,1.8720675,5.456208,3.408035,6.4515329999999995,5.456208,3.0434979999999996,1.7407683333333333,1.7407683333333333,2.63007,6.46128,1.7407683333333333,2.391985,5.54117,2.498905,2.85168,4.83237,3.5289,4.39807,2.0152266666666665,2.965965,4.97776,2.1846633333333334,2.399635,5.07455,2.0152266666666665,2.649935,1.997755,5.9763,2.986365,1.10648,2.47702,3.233355,3.0353988333333333,2.06796,1.9086355,4.03151,1.8080913333333333,2.052295,3.205905,2.29116,2.4898,3.83613,2.314,1.968915,2.519315,6.26399,2.2542,3.454715,3.662,3.662,8.837763333333333,1.3734133333333334,3.06721,2.439535,3.128015,2.333705,1.3567266666666666,1.3567266666666666,3.41996,2.35088,6.8455200000000005,2.34381,3.720765,3.106625,6.36595,2.695215,2.93788,5.216324999999999,5.216324999999999,2.5478,1.33402,1.36473,1.36473,1.33402,2.1903566666666667,1.7044133333333333,1.1887166666666666,1.5181033333333334,2.200633333333333,3.621825,1.95921,3.49865,3.197685,2.464875,2.871975,2.834465,2.440735,3.496086666666667,3.496086666666667,6.09214,2.50391,2.810525,2.943025,3.54441,2.255245,2.84854,2.567465,4.906495,1.70193,1.5574896666666667,1.3543479999999999,2.268199666666667,5.16991,4.000806333333333,3.357168333333333,3.0213,1.97063,1.97063,1.97063,4.48865,2.615275,1.1887166666666666,3.601745,3.531285,1.360805,4.8628425,2.9368775,6.13173,3.43802,1.948035,3.56341,2.4324833333333333,2.307535,3.81555,4.45773,3.69623,1.905945,2.24896,3.174945,2.769015,5.18952,2.2416,3.51152,2.725495,6.14014,5.02807,1.70984,2.271435,5.73773,5.17275,5.23536,6.31033,0.9634560000000001,0.9634560000000001,3.555461,3.555461,1.035786,5.59043,2.66027,4.89783,4.82869,5.31374,2.25893,4.508355,4.508355,2.427185,3.46423,3.825945,1.2772700000000001,4.95752,3.401885,3.20983,2.998105,4.56356,2.200525,1.857565,3.543065,2.775725,3.358405,5.45568,2.768895,1.49264,3.92997,6.02721,6.40766,4.3904,2.841495,3.76146,2.613305,5.15958,2.88486,3.84236,2.20689,6.96073,4.50581,2.3553,2.25012,2.897515,4.7074,2.32493,2.722205,2.940235,7.4597,4.94219,3.099185,2.07774,2.43297,6.63172,3.36907,2.99143,5.36552,3.055945,2.93348,2.595745,2.67655,2.087073333333333,2.06279,1.9466766666666666,1.8001433333333334,1.8130733333333333,2.0028099999999998,1.61037,2.05815,1.82174,2.087073333333333,4.09139,4.58678,2.02187,1.5502375,1.5502375,3.74065,3.74065,2.79204,2.79204,2.763825,3.01964,1.99597,3.9357,2.27007,2.27007,2.417965,2.417965,3.06887,1.938295,4.70521,2.390525,3.56567,2.1010233333333335,2.1010233333333335,1.62751,3.9591,5.6487,1.4253533333333335,4.90007,2.314,1.864935,4.17809,3.24031,1.9831,2.674695,6.39758,2.15812,5.9999,2.73781,3.42065,3.0303,2.610755,6.7206,3.0646,1.842815,2.7050153846153844,2.87015,5.19601,3.461355,1.55639,1.55639,3.6692,4.71187,5.00985,5.7963,2.782095,2.882565,1.850505,3.158825,1.80424,3.17997,1.940275,0.806828,0.806828,0.806828,2.0048433333333335,5.598473333333334,2.0048433333333335,2.3776,3.7612050000000004,1.87369,1.828955,4.5087,3.51302,5.41689,1.7333166666666668,4.66224,1.7333166666666668,1.7333166666666668,2.083715,1.812605,2.215165,6.21305,2.215165,2.59661,4.72465,1.834105,1.825025,2.95679,3.047193333333333,3.2444791666666664,3.216616666666667,3.53359,1.3058733333333332,3.95831,0.6978081818181818,3.999925,4.370195,2.91112,2.91112,0.6409627272727273,3.8639666666666668,2.6652533333333333,5.52945,4.95345,4.045525,5.2678,3.96198,4.008495,5.0804,4.013045,4.338525,3.63613,3.89902,4.64162,4.88248,3.41072,3.45038,3.922305,2.3591233333333332,1.256942,4.545145,3.49324,3.231915,1.1819957142857143,4.01797,3.84129,6.690869999999999,1.34892,5.21325,4.09595,2.15487,2.12692,3.25229,3.64318,1.80613,1.55639,3.771945,4.56342,2.7142,4.77788,3.014425,1.12881,2.8374166666666665,1.1872885714285712,3.133266666666667,1.7024833333333333,3.0061366666666665,1.95901,2.554073333333333,4.056835,2.87154,4.51877,3.15482,2.21102,4.89613,4.31345,3.206295,5.41265,4.11008,2.77317,6.02005,4.56602,3.178823333333333,2.7049866666666667,2.728085,2.9629033333333332,3.04008,2.6603966666666667,4.83262,4.364915,3.76696,2.457946666666667,2.6791133333333335,2.45694,2.48836,2.2477733333333334,2.3675966666666666,2.3079633333333334,2.19736,1.3434425,2.998398,1.2131825,1.7772825,1.691865,2.69855,1.568045,1.759025,3.81219,4.1596,1.9779925,4.12324,3.449575,5.76976,2.0062366666666667,1.6251380000000002,6.87405,3.40308,4.493145,3.986295,3.729825,2.077825,3.51136,2.4349675,3.29431,4.35498,0.74178,3.80265,2.1696633333333333,0.7508918181818182,4.888055,4.36244,4.09986,1.7536394642857145,4.7524,5.52525,2.68079,2.8711699999999998,2.5039666666666665,2.22838,0.61128,3.0144366666666667,2.9401,4.851255,2.4597625,2.0327575,3.50279,0.886125,1.9264833333333335,1.9264833333333335,2.83803,1.9264833333333335,4.078135,2.800535,4.14546,4.52933,5.61975,13.193388333333333,3.061223333333333,4.453425,2.802975,4.764845,3.27655,6.54148,2.7277166666666663,5.01085,4.67309,3.92945,1.126395,4.67888,2.9254833333333337,2.3432833333333334,0.8841988888888889,2.1540325,3.30815,6.830118333333333,4.092355,2.90752,4.53558,3.2651166666666662,4.158215,4.308805,4.78159,3.01881,2.9292466666666663,4.02676,5.3137,2.69919,4.07611,1.6878875,1.6878875,3.22431,4.765875,1.1246375,3.9402453333333334,2.1394675,4.664775,2.58762,2.6276566666666668,3.149153333333333,2.446896666666667,0.6958821428571429,3.515935,2.8094866666666665,5.1749,4.58608,0.23184875,4.974355,4.551585,4.002675,6.695226666666667,2.928126666666667,2.889466666666667,2.1258133333333333,2.81897,2.57679,1.3878899999999998,2.8416,2.5336333333333334,1.4162549999999998,3.2265800000000002,2.9166866666666666,2.46327,2.7097233333333333,1.275653333333333,4.24588,2.371535,5.0096,4.05735,3.787805,1.6745400000000001,2.4950766666666664,1.393125,2.18442,1.393125,4.672105,3.3603666666666663,1.587202,2.2550325,4.10522,3.90328,3.021005,3.90205,0.3547065,1.3354920833333335,3.94118,4.290385,6.2885,1.9136275,2.64771,2.9892966666666667,2.22148,2.775615,3.61572,4.51913,2.488815,2.1982466666666665,2.7983333333333333,2.618986666666667,2.690103333333333,4.24487,2.427775,4.48211,3.7394166666666666,6.03015,7.6264525,0.74693,0.815669,3.88306,6.4900875,1.97613,3.61477,1.7136933333333335,1.7136933333333335,3.51692,0.4596144444444444,3.583145,3.693165,2.96126,3.902995,3.30943,2.74252,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,0.234055,2.585375,3.022425,3.782545,3.050795,3.9884325,5.801741249999999,2.977445,1.7775299999999998,1.00538,3.553785,0.72794125,4.775332499999999,2.9978024999999997,2.242055,0.72794125,2.48047,2.663745,0.7752375,3.85290625,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,0.15672155555555556,4.335085,1.605585,4.3662,4.33136,1.702842,4.6336,4.22446,5.3227,4.284801666666667,3.505170357142857,3.51922,4.31531,1.9577725,5.422905,4.0664,0.7282857142857143,1.3454128571428572,1.296217142857143,3.218363333333333,3.218363333333333,2.9392300000000002,3.722795,4.05356,3.55928,3.794785,2.9517900000000004,1.9769666666666668,0.5814957142857143,4.1742,3.218625,2.731765,3.937395,3.35427,3.08446125,4.92144,4.23423,6.4775825,4.142585,4.763465,5.5042,4.26495,1.251807142857143,3.156495,5.2227033333333335,32.59307696139971,1.2025016666666668,4.051455,3.15064,4.52459,3.976845,4.84403,5.20765,0.4177890476190476,5.07955,4.38487,1.9314875,1.99249,3.58258,1.5822925,2.58133,2.470775,1.761065,2.94271,2.4765333333333333,2.7837,2.773395,0.5991707692307693,3.232815,3.825455,0.3679915789473684,2.56046,2.67237,2.95623,3.947765,1.924285,4.12613,4.06376,3.40973,3.38069,2.942365,3.97281,3.028305,3.84232,2.1611,5.2227033333333335,3.543695,3.23621,2.85172,1.689122,3.788565,3.543865,6.939209999999999,3.59045,4.68787,5.9683825,5.131089,2.2906,4.228565,5.8181650000000005,7.490882,2.46971,2.732885,4.63725,5.636076666666667,3.928215,3.33763,5.269685,2.73085,1.6739775,2.2083675,60.04938696674284,5.2378,4.170305,2.565825,0.8301970000000001,2.4250966666666667,2.933173333333333,3.20322,0.7333888888888889,4.31816,0.7433533333333333,7.7244053571428575,1.936122,3.2930466666666667,1.741544,2.696535,2.5709966666666664,3.11094,2.4466,2.3875933333333332,3.29804,1.4789233333333334,5.3371475,3.932,1.4051475,2.6845666666666665,1.3884133333333333,1.493425,7.72217,5.96505,3.335615,3.979245,5.1553575,1.4561857142857144,3.438833333333333,3.361045,1.61672,5.2974,3.718105,3.88591,1.6001,2.882303333333333,3.5586,3.73358,5.7084,4.43116,4.483165,2.516,3.81593,4.461533333333334,3.0693533333333334,1.332684,4.053815,3.31746,3.93835,4.993435,4.045845,3.786715,4.4706,4.368275,4.299105,4.388845,3.94667,3.11483,3.79097,4.15102,3.30541,4.03354,3.69664,1.9015375,1.9015375,4.193855,4.89417,4.992345,3.785005,4.752655,3.3495333333333335,2.78261,4.532805,5.0639,0.7340027272727273,5.4369,6.5379950000000004,5.3787,5.8256,1.0282222222222221,3.177745,0.9550583333333332,0.9550583333333332,0.9550583333333332,3.67115,3.3606,2.4329933333333336,3.6054333333333335,0.9805870000000001,5.0117,5.51725,3.03601,1.5128875,1.990525,4.16789,3.68296,3.91252,3.292484,6.69105,3.539265,2.6214033333333333,4.46954,6.7478,2.53887,4.35707,3.956845,3.255005,5.47895,4.690525,4.916675,5.8391,3.09265,3.4074511111111114,1.9576333333333331,1.9576333333333331,0.7088763636363636,8.395059999999999,2.172205,5.8091,5.4563,4.16325,5.02975,3.80872,2.9637000000000002,4.37133,7.486585,5.613513333333334,1.9574666666666667,4.31788,0.9635429999999999,3.78899,1.9882033333333335,0.8792300000000001,1.1137942857142857,2.355663333333333,2.95126,2.8457966666666668,1.0902014285714285,2.48285,3.031166666666667,0.8794377777777778,2.5777366666666666,3.0521166666666666,1.699042,1.7364920000000001,2.836263333333333,2.8785633333333336,2.7042366666666666,2.44603,1.702776,5.27195,4.010955,3.619905,4.224405,4.883695,3.27968,4.301115,6.4851,5.0851,4.327905,3.960375,10.561818333333333,8.540635,2.8072166666666667,3.57031,1.9509933333333331,3.955135,3.30663,4.468695,1.0531233333333334,3.85238,3.28028,1.5961699999999999,4.15724,2.9657150000000003,4.287065,2.57529,3.895125,6.8626,7.518286666666667,3.847155,1.4802733333333336,1.4802733333333336,1.4802733333333336,4.61731,1.2038666666666666,1.4287125,0.4482183333333334,4.210325833333334,2.96177,3.394395,0.9808070000000001,1.15685875,3.103245,4.36756,3.80753,16.22668110714286,4.1617675,4.493475,5.6197225,2.6990833333333337,3.409395,3.19931,0.91321,1.5420175,3.630205,3.576065,4.2673,4.44747,4.44961,3.813415,2.746056888888889,3.58658,5.28025,0.5504450000000001,4.491605,2.2905525,3.954245,4.70708,3.5263333333333335,2.3698366666666666,3.925631666666667,1.7506300000000001,3.62396,6.057,3.067543333333333,3.20827,4.14286,3.97245,4.38626,4.03066,3.354685,4.204,4.809245,4.85047,3.57217,4.35095,3.864065,1.0747214285714286,1.43552,5.788156,6.0755,4.027835,4.911035,2.445635,2.7200133333333336,2.73122,5.68133,1.82433,2.36707,2.9387233333333334,2.95703,3.22063,4.55523,3.182085,4.9245,1.15012,4.654905,1.004365,4.116335,3.38741,1.8645049999999999,4.24023,0.9288944444444444,4.913805,5.5927,4.81587,3.67668,3.825195,3.9278,3.03004,4.958625,5.9433,2.7892894999999998,4.200775,2.429505,2.820155,2.025935,2.57469,3.267535,4.69853,1.0672,4.7011825,1.5030825,3.427385,1.63872,1.0672,0.20475702702702703,3.628675,3.08663,2.31933,1.9610900000000002,2.79197,1.1446175,4.06616,3.738245,4.95318,2.5741666666666667,6.2554,6.643717499999999,2.7076733333333336,3.1521666666666666,2.6679566666666665,0.777487,2.490056666666667,6.0288,4.02038,5.5687,4.634965,2.13231,1.3847699999999998,3.92742,1.6069675,2.20006,1.580965,2.872775,1.807105,1.9385975,2.1146425,2.0587325,1.7690325,1.3044757142857144,1.427745,1.915985,1.91891,2.1640175,2.4158766666666667,0.5325246666666666,1.078804,2.430363333333333,3.147603333333333,1.9618925,1.9314533333333335,1.5429125,3.666075,2.2048633333333334,2.90862,3.65321,5.9907,3.62306,2.93436,4.300815,1.5716199999999998,3.69782375,23.680038500000002,4.733143333333333,5.76965,4.20532,2.0741066666666668,3.824085,4.80159,2.29001,5.1972,3.2721533333333332,0.82207,3.27574,4.499865,3.686765,4.079845,1.5365399999999998,1.9786433333333333,2.4127033333333334,2.29262,1.429142857142857,3.3571000000000004,5.1376,4.30853,3.40313,4.007825,4.80002,3.59983,4.560065,1.2078125,2.8408,4.122775,4.592965,1.78518,3.1841233333333334,1.86165125,1.86165125,3.72501,4.66852,2.9741666666666666,2.8644,3.89233,3.78056,6.607285000000001,4.689745,2.333845,1.5420175,2.80159,4.365415,3.1242466666666666,2.5577893650793655,2.5577893650793655,3.2655,5.02375,3.65893,5.080755,2.389365,3.502549111111111,0.6215344444444445,0.6215344444444445,0.6215344444444445,3.31335,3.852265,3.8940033333333335,5.6466,2.1612625,4.84696,4.72819,4.708945,3.26345,5.4134,2.36834,1.3277371428571427,4.21704,4.047315,0.4728078571428571,4.270866666666667,4.74829,1.4721650000000002,5.1813,5.0154,4.5279,4.342165,3.8248,2.86579,4.375075,1.7184519999999999,4.595895,1.4938483333333332,4.186815,5.7271,1.1065925,3.077565,7.0310274999999995,4.07345,3.06499,2.1731875,3.89596,5.6277,3.053976666666667,7.106546666666667,4.070235,2.2640366666666667,3.0636033333333335,2.7198533333333335,2.45866,2.7380433333333336,1.9249866666666666,4.767145,0.61996,2.07559,2.07559,3.13196,3.65744,2.29087,2.901775,4.17405,5.0939,3.90182,1.51389,4.574533166666667,4.28974,4.712425,3.4944,3.803954833333333,3.3124175,0.4915373333333333,2.7661285714285717,0.99529625,0.4915373333333333,4.315845,0.850338888888889,3.859335,4.02097,6.553228000000001,2.222236666666667,1.06687,1.1677339999999998,2.261475,2.9105366666666668,1.8449066666666667,2.5321266666666666,3.400305,3.34363,2.1858999999999997,2.428786666666667,4.11116,2.9220475,3.99328,5.73855,3.501165,5.02685,6.797188333333333,4.387445,3.69434,4.53031,3.68769,3.977765,4.939815,5.3405525,5.4147,2.4330833333333333,0.8965077777777777,3.507215,3.94028,4.165825,4.416205,4.2662,5.03045,2.5665833333333334,2.5015899999999998,2.9410900000000004,2.2030866666666666,2.11462,2.8350666666666666,3.0204133333333334,2.2830766666666666,3.672735,4.29427,4.22758,5.2198,2.4306633333333334,3.4429,2.903,0.7025728571428571,3.970365,3.324555,4.410375,2.9205400000000004,5.206856666666667,3.305295,4.485275,3.77129,0.5444938461538462,0.5483635714285714,4.348015,2.7364385,3.09116,4.27175,3.927,1.698272,5.3367,4.160445,2.5333633333333334,2.496593333333333,2.1877925,2.0924229166666666,3.4436999999999998,3.0028566666666667,3.0519700000000003,3.002966666666667,3.4567333333333337,2.648425,3.0470400000000004,3.5737,4.313065,0.519231875,0.519231875,0.519231875,3.2530997638888888,3.505433333333333,3.666733333333333,2.559696666666667,2.7850933333333336,1.0723625,2.88794,2.9380666666666664,1.7162825,2.6359166666666667,2.385736666666667,0.9724933333333333,2.826065,4.79047,10.098394833333334,1.5921498333333333,0.6202650000000001,4.103775,0.6202650000000001,0.6202650000000001,0.6202650000000001,0.6202650000000001,2.190525,3.8234000000000004,4.00813,4.92851,5.9414,2.7837066666666668,2.69275,3.0772925,3.5071883333333336,4.77204,1.0802483333333333,2.282286666666667,3.131396666666667,2.62056,2.964983333333333,3.236005,2.2422999999999997,2.438585,1.1692777777777779,5.04015,2.50689,3.395665,0.88632,0.652566,0.652566,1.032142956521739,1.918462956521739,1.032142956521739,1.032142956521739,0.3380569565217391,0.3380569565217391,1.032142956521739,1.5274266666666667,2.4805466666666667,2.98069,2.990463333333333,2.579543333333333,2.71167,3.26439,2.8721200000000002,4.718505,3.630885,1.9635175,2.3368466666666667,1.59235,0.17965564248895435,0.17965564248895435,0.17965564248895435,0.17965564248895435,2.52253,2.5167066666666664,0.8900159999999999,5.0167,0.7544027272727273,1.701408,4.470534166666667,5.05215,4.09866,3.21417,4.42032,3.284145,2.477396666666667,1.19686,3.865135,4.460265,6.44175,2.53279,1.39558,1.9825799999999998,2.9198766666666667,1.5410633333333335,2.71129,2.7701666666666664,3.11136,4.26636,4.05549,3.0268,5.07465,2.2346333333333335,4.160345,5.1638,3.754595,4.392465,4.685995,5.18501,4.601390833333333,2.8863225714285714,4.861361666666666,4.020665,6.40185,4.267425,4.404365,2.141065,3.24528,4.29289,4.687435,4.512115,3.992665,3.698675,3.706635,4.063565,2.4201533333333334,5.18035,3.39084,7.5419725,5.97615,5.72505,4.863545,1.4520142857142857,0.909103,0.5693415384615385,1.766152,4.84114,5.3708,3.96323,1.522124,3.766835,2.905865,4.844135,5.1401,6.225337,4.12979,3.294815,1.6962240000000002,5.499445,4.06375,3.07897,1.8769825,0.96040875,3.941525,3.410225,3.8703525,3.60781,2.405,4.35482,1.7282966666666668,3.0311766666666666,2.379355,4.44105,6.00455,4.914415,2.22423,1.653775,5.4864,2.8929533333333333,8.86283,2.834525,5.03765,5.89655,4.450765,5.0999,3.56925,5.14525,1.97275,3.775405,4.695187000000001,2.4189825,4.19442,4.527755,7.01551,4.77313,2.9655400000000003,3.969075,3.924235,2.9220475,3.62889,5.2234,5.4804,2.4169075,2.77689,3.1669033333333334,2.42662,2.672375,4.36494,5.7917,5.1291,4.626965,4.772535,4.02649,4.66306,0.6348830769230769,3.1506666666666665,1.1983442857142859,30.71324676242236,2.48984,4.53532,3.172315,4.5133,1.59728,2.57431,3.2640779761904763,1.7060754761904762,1.7060754761904762,1.7060754761904762,1.7060754761904762,1.5580025,3.583625,0.31814333333333333,7.534135416666667,0.31814333333333333,4.33977,4.882395,1.9954275,5.209,2.781225,4.063649333333333,2.3949333333333334,2.4115066666666665,2.779253333333333,2.2544666666666666,0.6108515384615385,2.68155,0.7191641666666667,3.294366666666667,2.1505533333333333,2.4770259999999995,1.244425,2.4770259999999995,6.13775,8.11134,4.426415,4.135425,5.66015,5.9959,7.464736666666667,3.212975,1.473555,1.473555,2.3800733333333333,4.7544,3.6464,4.31329,5.892408333333334,3.990375,2.662495,3.88605,3.65172,3.28491,2.287405,0.86728,2.42477,3.68675,4.01699,5.262263333333333,1.9980125,3.78203,1.229962,3.199325,1.2082760000000001,3.282883333333333,2.9446933333333334,2.8111333333333337,3.251393333333333,2.8025866666666666,4.989725,0.6298861538461539,3.448245,3.607333333333333,2.6078066666666664,2.37763,4.108944375,3.3585999999999996,2.10835,4.71625375,3.898865,5.09855,3.946605,3.76921,5.55625,4.967905,2.0615366666666666,5.6821,2.3544555000000003,1.8756199999999998,3.1690466666666666,2.3363066666666668,2.71271,2.60334,1.8696,3.3040341515151512,4.252165,3.13763875,2.3878146666666664,2.3878146666666664,2.523205,3.96625,4.34889,0.6424136363636364,3.41993,2.879225,8.91449,0.8586263636363636,4.38978,3.31109,5.24625,3.499285,3.776455,2.398635,3.801365,2.369865,5.3928,2.6164658333333333,1.0706525,4.04786,2.75141,3.77596,2.6577366666666666,3.63211,3.92874,4.10602,4.839783000000001,3.219185,2.110145,5.21095,2.63249,4.38356,4.88466,4.398985,4.509955,4.050705,2.901895,2.2218766666666667,2.720613333333333,2.51607,2.734575,3.0838900000000002,2.6907628571428575,4.720163333333333,2.75286,2.3400733333333332,6.4754033333333325,4.9486679166666665,3.7335025,3.03585,3.7134,4.131555,3.6719,2.0798575,3.9498975,4.94302,4.7152,1.2833466666666666,3.87589,2.75733,6.5759375,4.789775,8.194729444444445,4.2115,3.45546,2.17007,4.344615,5.5861525,8.0814,4.84655,5.91743,3.78008,3.503005,4.1541,1.777408,4.432005,1.4279633333333335,3.68619,4.6657,3.3063766666666665,0.8358583333333334,9.106745333333333,1.1402111111111113,1.8821025,2.5102766666666665,1.9412266666666669,3.30175,1.3724800000000001,3.61764,3.60938,2.3617333333333335,4.365765,1.2257341666666668,3.7999,1.3936383333333333,2.9376021666666667,4.111105,5.1678,1.631005,5.80527,2.363544666666667,8.04493,4.392985,2.770775,4.11205,3.346945,1.2403729166666668,7.66067,3.204135,3.2949,2.45586,4.20035,2.14993,3.1060974999999997,2.32176,4.02755,1.381245,5.51425,2.771605,4.27115,0.7856099999999999,1.9718516666666668,3.86436,4.81225,5.355956249999999,1.537928,1.537928,5.85985,4.36537,6.1512,3.867825,3.44148,8.942755,4.39987,5.49225,4.070115,2.43354,2.5022082350230415,0.399156,0.18867580645161292,0.6679258064516129,1.4351264285714285,0.6688672350230416,0.18867580645161292,1.496836,0.47925,1.8342824285714285,2.164761806451613,1.9406975,2.2696225,2.286446666666667,4.9144,6.443236666666667,4.636435,4.950345,4.35157,5.04655,1.2378966666666666,4.85431,3.992695,5.65465,5.0378,4.9035,5.65355,5.57925,5.3994,1.2138083333333334,1.3569200000000001,1.784254,6.057854,1.363494,5.2508,4.66569,6.584620416666667,4.731765,5.2974,4.315175,4.54515,2.47614,5.259,5.19755,6.586991666666666,4.789185,5.745119166666667,5.6707,3.76138875,4.339615,3.597766666666667,0.997871,3.5123333333333338,4.38826,1.0783,3.5955666666666666,4.528675,4.4491125,5.11085,2.528425,3.318375,2.7262733333333333,4.44081,1.995165,3.79718,1.3286933333333333,3.256325,3.80168,3.91139,4.436245,3.3858433333333333,0.5583441666666666,5.915,1.00123625,3.48025,2.7738899999999997,3.8084,2.0539466666666666,3.701425,3.85464358974359,3.24393,4.36873,15.53108288095238,5.413186666666666,2.1244925,8.57751,1.51539,3.9074,2.958,2.89505,2.0088733333333333,0.2188391304347826,2.724933333333333,4.412795,1.7682300000000002,2.3254433333333333,3.221966666666667,1.9032575,2.239266666666667,1.4651571428571428,3.286385,4.609985,4.99933,3.35993,0.5320228571428571,2.421116666666667,4.86013,2.90229,3.896355,4.242605,4.32338,5.38305,0.48602764705882356,2.5467999999999997,2.5467999999999997,5.304,5.106,4.900725,2.505275,3.5972333333333335,2.8281533333333333,5.1523,3.529175,5.340395000000001,4.65195,4.29203,4.484795,2.4924675,1.897714,4.34256,3.949685,3.942505,3.359365,1.80124,4.604165,4.472095,3.874025,4.612715,3.949745,3.80849,0.6035506666666667,3.04152,0.5961175,3.2362366666666667,3.35899,4.15363,17.31092476190476,3.51366,3.81105,2.4324833333333333,0.94835875,2.1548366666666667,2.59715,1.561164,2.32228,2.45411,4.701835,2.28935,4.038265,4.081325,2.065045,4.071125,3.00034,4.372825,5.2149,5.3698,1.47878,1.65501,2.377555,4.53115,4.79842,1.0921466666666666,5.0989,3.673855,5.6314,4.553795,1.5907333333333333,4.714685,3.31435,3.43185,3.53576,3.87192,3.1608966666666665,0.64200375,7.369265,1.5110860000000002,0.19765,0.19765,0.19765,4.85876,3.966015,2.8511133333333336,4.153225,2.882765,4.25484,4.401977857142857,3.6643533333333336,8.39105,4.161025,6.668099999999999,0.89552,0.76312,2.51205,4.520985,4.28688,2.0850633333333333,5.2765,5.35165,3.52973,3.73458,4.30055,2.22452,4.9096,4.4771165,2.3554533333333336,2.9079033333333335,3.0630733333333335,2.8222,6.10485,3.69616,0.6247771428571429,3.651135,3.14293,4.157755,4.8282766666666666,5.0882,2.929935,5.33705,3.56535,13.570376458333334,4.55301,6.772680583333334,2.51309,6.505239,4.207325,3.73144,1.9937125,2.3000504166666667,9.40501,2.2174533333333333,4.1688,4.097933333333333,3.7233666666666667,3.1744566666666665,2.812046666666667,2.0762025,2.2319075,2.94284,1.7925619999999998,3.816433333333333,2.4506533333333334,2.63555,3.13681,3.3463999999999996,2.4172000000000002,2.4172000000000002,2.50739,3.4522666666666666,3.2594499999999997,2.1852533333333333,3.13969,4.2363,2.7073199999999997,2.7188166666666667,3.753766666666667,2.18044,1.8878975,3.7934666666666668,2.70342,1.522434,3.856666666666667,2.2238433333333334,2.4548200000000002,2.8779866666666667,2.2567583333333334,3.4003,5.6151816666666665,2.44053,3.8435333333333332,2.08154,10.258624333333334,1.9154033333333331,1.8928466666666666,2.12494,0.9726944444444445,1.6432759999999997,4.227823333333333,2.684266,2.684266,1.596446,1.5307666666666666,3.609626666666667,3.6284783333333333,2.20956,1.4896816666666668,1.64948,4.5048493333333335,3.6235,4.0269,8.192063333333333,2.9610700000000003,2.5948433333333334,3.2991269565217394,4.182933333333334,1.8878975,3.1872433333333334,2.6639633333333332,3.268796666666667,3.3916441666666666,0.8826275,3.2516875,2.73873,2.90104,4.071455,3.0599666666666665,0.6552054545454545,1.805192380952381,5.20175,2.4460455,3.3535333333333335,1.4763516666666667,1.4763516666666667,2.1127525,3.641966666666667,0.952208,2.2800125,4.728203333333333,4.728203333333333,0.6420333333333333,5.549884,3.26435,3.905045,4.499515,1.236542857142857,3.3544,3.498366666666667,4.816430833333333,5.538347666666667,2.2608966666666666,0.6131840000000001,2.58961,2.6349566666666666,2.997055333333334,2.229226666666667,2.4001533333333334,2.7632366666666663,2.3477925,2.5516099999999997,0.7461145454545455,4.86546,4.7682271428571426,1.3426366666666667,1.7319571428571428,5.38635,2.177985,1.669845,4.089745,1.325974,3.315095,2.5636,3.5233333333333334,8.631496666666667,3.842035,4.196745,4.822085,2.335320181818182,0.757781,1.75732,7.005953333333333,1.8740533333333333,4.17588,3.943375,3.666335,21.063090000000003,3.1969133333333333,1.3817300000000001,1.0034875,3.1165133333333332,1.5313033333333335,4.151664,5.1725,3.3742285,3.2925066666666667,1.2605199999999999,1.42473,2.8915966666666666,0.543019375,3.4241333333333333,3.6608,3.08099,2.521106666666667,2.4417766666666667,2.8071433333333338,1.9891233333333334,2.8821333333333334,1.566406,3.7800333333333334,1.4497116666666667,3.88268,3.95606,2.5169533333333334,5.27845,3.288405,4.07054,4.853165,4.265825,2.9615833333333335,2.7153033333333334,2.3420799999999997,1.0480485714285714,1.0480485714285714,1.0480485714285714,2.3505975,3.338433333333333,2.57225,2.62188,2.3476033333333333,1.8871525,3.800575,4.68203,3.81122,6.49841,3.114075,2.2688525,1.9260825,0.9264516666666666,2.4775533333333333,3.95241,2.609783333333333,2.7687566666666665,2.41461,2.5379,2.6507366666666665,2.8149333333333337,2.77346,2.5442766666666667,2.211796666666667,3.2653266666666667,2.2140566666666666,2.1901575,1.6701925,1.580015,3.063973333333333,2.91119,2.055075,4.029495,4.83312,2.6556633333333335,2.332463076923077,5.21043,3.901575,4.54315,5.5098,4.38259,4.42602,6.1794025,1.260525,4.251825,2.6993,5.05425,5.2274,3.73697,3.419375,2.088025,7.532525,2.319035,0.7749575000000001,7.27094,5.16028,5.429450714285714,4.22406,2.7987325,1.6742375,4.90187,4.010225,4.226305,4.839995,2.43302,3.88165,4.198595,1.59235,3.83898,2.9202,1.317585,4.59099,0.5770188235294117,4.051103333333334,3.253525,4.65959,2.97547,1.76143,3.190765,2.43856,1.4439375,2.71667,3.205853333333333,3.0831866666666667,7.088309743589743,1.7609525,6.338067083333334,9.444745000000001,5.5731850000000005,2.969965,1.2884728571428572,2.9393,1.2884728571428572,2.891386666666667,2.20623,0.3723717647058824,1.2668067647058825,0.3723717647058824,0.3723717647058824,0.3723717647058824,1.2668067647058825,1.2668067647058825,0.3723717647058824,0.894435,4.049625,3.50504,3.21168,3.34902,3.227085,4.184975,2.7104183333333336,1.6594919999999997,6.1506783333333335,2.9701233333333334,4.113055,2.53075,1.0548636363636363,1.1413425,4.501275,3.668635,1.133,1.409446,0.7163318181818181,2.835505575757576,4.06618,4.986075,3.4004666666666665,5.259081666666667,0.5327253846153847,3.95688,2.17350125,2.7397733333333334,2.4589133333333333,3.3563666666666667,2.5255266666666665,2.869286666666667,2.696153333333333,3.086505,3.5739,5.02365,4.54187,2.0064,4.89991,4.27811,3.199165,3.918165,3.398165,0.36794533333333335,4.782555,3.523215,2.968265,2.781344,4.247605,3.868965,2.003685,3.11406,4.02803,8.14025,5.0721,5.3616,4.61949,4.136325,0.781515,2.21253,1.90184,1.32313,1.8740866666666667,4.417675,5.3997,4.093245,4.73017,3.292484,2.6346783333333335,0.9458366666666667,4.02613,1.2216466666666668,1.1378316666666668,3.38323,3.48185,4.6253,1.2293,2.3365966666666664,8.55406,3.1595,3.1391441666666666,0.8881875,3.35154,11.789396666666667,3.42211,4.192135,3.369655,2.9196,4.603195,5.0348,1.980268,4.13591,0.5362123076923078,4.829105,2.24918,1.74555,1.74555,3.5584666666666664,4.06678,1.51335,3.905815,1.2718828571428573,3.674435,2.7607858333333333,3.31183,5.00005,3.47549,3.9226946666666667,2.605025,2.7640096666666665,2.7640096666666665,10.302945,0.6936289999999999,2.98003,3.0800666666666667,2.176795,2.0373325,0.8706357142857143,1.499595,1.06803,2.131145,4.507865,2.591575,4.2494725,2.0884933333333335,3.854795,4.049505,1.6635066666666667,2.0727775,1.0935066666666666,6.062431,2.00163,2.117125,1.676978,1.711702,1.0034875,2.2351625,3.474845,2.0685733333333336,3.0766633333333337,2.5439766666666666,2.700976666666667,1.85821,3.14016,2.4447966666666665,1.2958633333333334,2.0060066666666665,2.8062066666666667,2.7934533333333333,2.4791633333333336,1.2019266666666668,2.554136666666667,1.9509266666666667,2.1589733333333334,0.31041052631578947,0.41604916666666664,2.5046166666666667,2.260803333333333,3.127225,3.152046666666667,2.88664,4.663255,5.53675,4.418785,4.56539,4.28395,3.96907,2.72011,3.46748,0.7312772727272727,0.06991704545454545,6.8909,0.06991704545454545,3.084165,3.09573,5.2591,3.5326,6.25995,4.609925,2.0585733333333334,2.4872466666666666,0.9918783333333333,5.1253,6.3189,2.83269,5.3014,1.845495,3.71609,1.986201956521739,2.92461,3.2155166666666664,4.00239,4.8983083333333335,3.248665,2.2026499999999998,2.2026499999999998,4.127335,7.61252,3.568365,2.1945966666666665,2.35773,3.89752,2.9168,4.913345,3.40701,0.9358533333333333,3.89959,2.27192,2.51283,4.38042,1.024945,2.3478033333333332,4.04222,3.38608,4.63059,3.076335,2.8308,3.97297,3.8821,4.34743,4.79653,4.30126,3.1716586111111114,3.85991,2.6445933333333334,2.4764,2.4576100000000003,3.7641333333333336,4.209435,2.9938266666666666,4.972466666666667,4.0384,3.645205,5.20895,4.46571,3.56362,1.504852,1.49813,4.14103,3.2447466666666664,1.6440733333333333,2.7917,3.505755,2.97543,3.93476,2.7226199999999996,2.310709166666667,12.639897583333333,2.2751933333333336,1.771142,4.53047,1.049364,3.1342833333333338,3.504805,4.7644,3.06569,1.1977222222222224,2.2326,2.5741666666666667,1.431086,4.105155,1.0222475,1.0222475,3.5779533333333333,1.5960166666666666,1.9819366666666667,1.779545,3.202,5.25765,2.26708,3.03306,3.347716666666667,2.7642,2.783103333333333,2.04282,6.28465,5.5266,3.25875,0.6806769230769232,3.808935,3.364365,1.0358909090909092,5.3753,3.2013599999999998,8.28246,4.767525,4.29822,3.626255,1.3284325,3.20308,4.69611,4.40616,3.73668,3.60043,4.25845,3.394325,3.597566666666667,3.597566666666667,4.137505,2.70306,4.01443,2.042055,5.5729025,5.05391,1.4721650000000002,4.479525,1.00275,5.5793,3.940045,4.795515,4.57539,3.671835,2.51619,2.4746725,4.32329,4.35323,4.952125,4.03973,1.8659225,1.4892660000000002,4.253365,2.090316666666667,5.3377,3.092385,3.60149,6.729010000000001,3.87746,4.10858,4.905035,3.719305,4.29912,8.327945,4.179065,3.18935,8.413425,3.63819,0.5717671428571428,1.994592442002442,4.341225,0.6154066666666667,4.638205,4.00825,4.629435,4.49223,3.311875,3.591665,4.53376,4.749955,2.5829,0.6986985714285714,4.51555,4.245655,4.391545,4.332105,2.72235,4.458765,3.374095,0.63879,3.435635,3.718505,2.53645,3.1935966666666666,3.886525,2.146430833333333,5.37385,5.2141,3.6230824999999998,0.87591875,3.1988233333333334,5.2993175,5.2993175,8.338886666666667,2.0704599999999997,0.91767625,0.91767625,23.015568333333334,2.6325,7.6313699999999995,0.42412333333333335,1.38297,2.878033333333333,0.9459540000000001,3.819755,3.849875,1.957555,1.957555,3.839515,4.819415,3.614735,2.8398450000000004,2.8398450000000004,3.499395,4.34972,3.95483,3.4788666666666668,2.0667566666666666,2.52557,3.987358,2.13413,3.57695,2.69464,2.7916339285714287,2.7916339285714287,3.1958333333333333,0.8889733333333333,2.528043333333333,1.5098866666666666,3.31869,2.8290166666666665,2.700196666666667,2.32939,4.366275,2.496615,2.9112066666666667,5.312036,1.271522,2.23631,3.145005,2.38793,4.038045,5.504427682539682,1.5458966666666667,3.6204666666666667,2.428005,5.45547,6.31298,1.797455,4.894246666666667,4.895512666666667,2.8387888571428572,4.636466666666666,1.0824385714285714,1.78518,2.969515,3.873670476190476,1.2215766666666668,2.27015,1.757815,1.6013480000000002,1.98813,3.4273760000000006,4.9402635,1.0627833333333332,1.31813,2.9766766666666666,12.8257,4.479749999999999,2.7847,1.1544899999999998,2.492134761904762,0.9660414285714286,3.2316333333333334,3.9786449999999993,5.06975,3.5551333333333335,5.78255,1.52744,3.6889333333333334,4.040385,2.8148133333333334,3.7893277777777783,2.2570466666666666,1.0789211111111112,2.6384666666666665,2.4412066666666665,7.523438333333333,2.709291,2.435026666666667,0.74173,4.6656,3.6701333333333337,0.949406,5.859726666666667,2.04456,2.43626,5.39055,1.2201555555555557,2.71884,0.9991818181818182,2.901286666666667,4.203345,2.8706833333333335,2.8795366666666666,2.2262766666666667,2.36518,4.30882,4.69356,4.91701,1.809895,4.50237,3.45683,4.24366,3.363524,2.778256666666667,4.283540666666667,1.070454,2.8461857142857143,4.780505,2.691825,4.031761666666666,1.29015,2.4139466666666665,1.9656600000000002,1.9656600000000002,7.575388333333334,3.1962333333333333,5.539001666666667,3.4600633333333333,1.8001666666666667,2.59254,4.559265,5.702466666666667,8.404166666666667,4.626239,2.6483645,1.8332166666666667,1.9842546666666665,4.2007433333333335,3.89075,1.463636,1.90827,2.9915962499999997,1.1461225,3.06075,18.61501333333333,3.0741666666666667,2.8290933333333332,2.6733733333333336,2.905553333333333,2.24408,1.95741,2.977263333333333,3.6235666666666666,2.372263333333333,2.670723333333333,5.618496,2.3772233333333332,4.240107142857143,2.597233142857143,2.2415151428571427,1.50707,3.66593,2.1265975,4.01063,4.978145,3.82285,3.086879166666667,3.1860766666666667,2.2201933333333335,3.31863,3.467966666666667,3.360466666666667,3.165103333333333,0.8225881818181818,5.1977,2.676995,3.0148466666666667,2.7501666666666664,1.83772,2.0443583333333333,2.0443583333333333,3.2068516666666667,1.8108683333333335,4.624015,4.125345,3.43521,4.07066,4.39322,4.5330425000000005,4.5330425000000005,3.80803,2.97622,4.35782,2.77449,1.6251799999999998,2.2284566666666668,4.484195,3.85906,2.71205,3.39228,5.4797225,3.586933333333333,6.302941166666667,3.11929,0.8525959999999999,0.8525959999999999,3.282525,4.65627,3.8585,3.434078,2.56246,1.8487266666666666,1.6424533333333333,2.9392033333333334,5.816428,1.383305,3.95265,3.6402666666666668,4.01949,5.1053,4.918715,4.680301041666667,3.1553566666666666,2.23792,4.20094,3.82154,2.0782675,1.123672,4.01733,2.77135,5.89981,3.12846,2.62793,3.290595,3.813455,3.503305,4.565895,3.097285,4.475965,4.015725,4.2536,3.65834,3.68439,3.77354,3.99902,2.733333333333333,4.262815,3.102705,4.94944,0.6116222222222222,2.285205,1.7617725,2.04451,1.8571275,2.6611933333333333,2.62224,1.8311633333333335,4.340835,5.63107,1.9065066666666668,3.901625,4.38186,2.388675,5.801853333333334,4.086784166666667,4.26228,4.87694,7.626458333333334,2.00117,2.8378266666666665,1.75899,2.55765,1.891185,1.864865,4.148105,3.85682,5.41365,1.00756,3.155625,4.249065,2.2093275,5.0325,3.74208,2.635505,3.7372666666666667,3.287225,2.112005,1.8244295000000001,2.7043,3.239025,3.33835,1.984615,2.7883,2.7883,3.540575,3.468025,20.21443,1.07565,5.351353333333333,1.81402,2.08018,3.551995,3.95656,1.8036275,3.879005,4.784085,1.3285733333333332,1.3285733333333332,1.3880566666666667,1.6666166666666669,2.315513333333333,3.1523066666666666,4.436888333333333,3.067065,3.3787333333333334,0.4740152631578947,3.3792552631578943,2.02354,2.356555,4.39211,3.577205,4.04161,3.5856,4.433485,4.57332,2.0759025,3.44991,5.636076666666667,2.259905,3.510085,5.1058,2.26748,4.727485,5.91625,1.228492857142857,1.8580359999999998,3.4866333333333333,0.68082,3.0048033333333333,3.15485,4.713955,4.93193,2.8375669444444442,7.902336666666667,2.8827866666666666,2.7246799999999998,0.42875705882352944,4.414475,5.062710238095238,2.8789538095238094,5.3947,3.88585,2.5228533333333334,1.690096,5.263292,4.23049,4.154105,2.776675,1.9520425,3.516335,3.981733333333333,2.9584266666666665,1.9521725,3.9631016666666667,5.7329675,2.72486,3.914345,3.526885,4.11498,1.4717142857142858,1.4717142857142858,3.20772,2.8457500000000002,4.361695,4.71507,6.62365,3.55887,2.65275,2.19625,1.4190283333333333,1.3125128571428573,4.749515,5.41238,4.9485,5.98885,4.401585,6.59677,3.46594,2.8666666666666667,3.8514626666666665,2.177706666666667,3.0529025,1.519064,4.471415,2.3920233333333334,3.919465,4.86143,4.221015,2.7798533333333335,2.8929533333333333,1.363792857142857,2.3210575,3.766666666666667,1.77611,0.58921875,3.0049833333333336,2.594673333333333,2.2830766666666666,2.1894766666666667,1.8553675,1.49653,0.685610909090909,0.685610909090909,3.401033333333333,1.6321325,2.2897525,3.210665,5.4549,4.030075,5.74755,3.936105,4.34059,2.191126,1.4278366666666666,2.74607,4.59317,0.8879675,3.3624525,3.301355,2.929495,2.28753,4.27199,2.8745,2.06007,1.1042457142857143,3.58008,8.308475,3.359635,1.520762857142857,4.296165,2.975305,2.783995,3.585815,3.021875,1.7901866666666668,1.054665,3.700695,2.5784416666666665,2.3126599999999997,1.7480633333333333,2.2362466666666667,2.261903333333333,2.5604066666666667,2.83786125,1.3711033333333333,1.8243433333333332,1.0945325,6.232362500000001,5.6759,5.78005,4.04433,4.13434,2.8592933333333335,1.5862735897435898,4.438155,4.86327,2.6803,4.86685,2.19474,4.59243,0.9533722222222222,4.130365,3.831255,1.905985,8.03792,3.62843,1.8710125,1.8857975,1.7798,2.557975,3.1407633333333336,1.1738944155844155,2.9145800000000004,5.68825,3.432915,4.063385,5.54025,5.155,5.58655,0.8047775,4.17839,4.40361,4.207945,4.81842,3.9466716666666666,4.485625,4.6131,2.847715,1.5867533333333332,1.5867533333333332,4.93786,5.402408333333334,2.929085,2.6096266666666668,4.03663,4.42982,1.525998,4.04358,5.22565,3.613885,4.02127,2.9609733333333335,2.6611233333333333,4.90086,2.36559475,10.576392389664258,1.8987999999999998,0.7949425,2.5588166666666665,1.7089925,2.570325,2.124225,1.784994,2.7518999999999996,4.80241,5.19945,2.8352500000000003,1.5384666666666666,6.0428604761904765,1.4435142857142857,2.8062799999999997,0.5001238095238095,4.09505,5.5558,3.392915,4.58347,11.351485,5.01585,2.8885633333333334,3.20641,4.463405,2.9095766666666667,4.51103,0.877115,1.0907016666666667,0.8230345454545455,5.6423,4.25945,1.6898879999999998,4.741935333333333,4.29073,6.59825,4.737035,4.85691,4.45948,6.20085,3.974575,5.3464,3.86894,1.217004,4.094875,5.35035,2.853505,4.057895,2.956935,2.629565,1.223775,5.1063,3.957605,1.262925,3.4254,2.931706666666667,2.5877766666666666,2.525186666666667,2.47186,3.0852766666666667,0.7181845454545455,2.3607400000000003,2.6889266666666667,2.6846033333333335,2.0113,2.9661166666666667,1.973755,1.53915,2.26524,1.858105,2.050115,3.2956800000000004,2.64172,0.629191,2.87721,3.466,4.63226,2.3165666666666667,3.7259,5.3408,5.07245,3.37429,3.88687,1.296217142857143,3.18066,2.5130588888888887,4.2980366666666665,2.6817325,4.178705,5.3124,4.864445,4.024005,4.0934333333333335,1.040416,1.040416,2.196230769230769,1.61191,4.11021,2.7014095,2.7014095,4.785115,6.05485,3.0428,1.181695,1.5425428571428572,5.71885,3.64435,2.3756233333333334,3.24795,3.022175,3.09476,2.3756233333333334,4.5014,3.35105,2.8101233333333333,2.877405,2.167365,3.24659,6.52995,3.112195,4.855525,4.73881,6.5634,6.32455,6.547025,6.547025,5.36775,4.844065,0.5314423076923077,4.758705,4.1817,3.091635,2.83891,8.060563333333334,2.8920033333333333,3.84805,3.729705,2.5614333333333335,4.498235,2.4632,3.3984575,2.9756666666666667,3.3238633333333336,2.521176666666667,1.5457079999999999,1.5457079999999999,3.603205,3.768325,4.53983,1.761358,1.389582,46.91005022727273,2.584756666666667,0.8052127272727273,3.04421,1.794645,3.1749833333333335,2.6773633333333335,2.9211666666666667,2.941445,2.679406666666667,1.9789266666666665,0.9810825,4.14377,3.265335,3.66163,3.816815,5.06075,5.0018,5.1082,5.3584,5.087,4.747445,5.3741,6.26884,4.868565,5.3445,2.109155,3.792725,6.71175,5.0385,3.27908,3.938455,3.47455,2.57372,4.02886,4.46031,2.9437033333333336,3.829466666666667,1.577356,4.231445,1.365982,3.404505,4.00907,3.56488,6.33676,4.23775,1.92932,3.915545,3.91229,4.01453,0.9044975,2.950685,2.95192,4.421584523809524,1.284535,4.60205,1.3286475,5.81045,0.7127344444444444,3.8526680000000004,9.800464166666666,4.200125,3.283305,3.21254,1.845,4.046225,5.37045,2.9428199999999998,4.50226,8.9493875,3.3932,1.9540600000000001,2.823033333333333,2.7297233333333337,2.7516433333333334,2.7929838333333334,2.72798,2.60697,3.0217533333333333,2.7398866666666666,3.1298933333333334,3.46397,2.374843333333333,1.5940866666666667,4.670737333333333,3.9575,2.60228,4.964807333333334,2.77598,1.01523625,2.08046,2.9065366666666663,5.319243571428571,2.869825,2.0298283333333336,2.0298283333333336,1.5956775,1.4804,2.25138,1.959002,5.6735275,4.2775075000000005,2.0504875,2.930476666666667,3.6626333333333334,2.1480675,0.5873625,2.4932933333333334,1.9639675,0.5710692307692308,3.94184,2.55455,2.477505,3.70819,3.5752758333333334,2.4341666666666666,1.6411666666666667,1.1177783333333333,2.191285,3.65453,3.67967,4.17031,2.789846666666667,3.979765,3.60323,1.1420636363636363,9.637170000000001,2.66911,3.404535,1.2778625,2.83573,2.2511925,2.2511925,2.2511925,4.893095,5.4051,1.631725,4.925895,1.5078179999999999,5.462703333333334,1.488182,3.83198,4.32091,4.13482,4.88015,4.46811,2.015325,8.42563,3.56873,4.99372,3.416475,4.1053733333333335,3.29162,3.1206666666666667,3.82296,2.5540133333333332,4.453942857142857,4.4730558333333335,1.61256,4.019245,1.61256,3.45896,4.473204166666667,5.1336425,4.473204166666667,1.9282033333333333,5.75895,4.50809,4.233715,2.6707733333333334,2.8477633333333334,4.07803,3.300605,5.25135,0.5109078571428571,2.93751,2.92928,4.825128333333334,4.702945,2.3129475,4.65904,6.399345,3.57933,2.72821,3.041775,2.18114,3.8284,3.989705,4.68364,2.41719,3.85328,0.87331,5.7327,3.090435,4.251485,2.32166,3.1884099999999997,2.323306666666667,2.706386666666667,2.7356599999999998,2.8556833333333334,3.02737,2.51045,2.51045,4.297644166666666,2.84961,4.33795,11.533412499999999,0.939921111111111,4.182825,2.3460733333333335,2.432933333333333,2.5864033333333336,1.4287125,7.740808666666667,3.3829333333333333,3.436535,3.6436766666666665,2.2267266666666665,3.8206,4.177340583333333,1.96724,0.4249966666666667,1.442142,1.5265175,4.897825,2.940135,3.34745,3.7706516666666667,3.4527441666666663,2.26162375,4.806155,4.435845,3.941655,4.50472,2.27059,3.585595,2.5878533333333333,5.509356666666666,3.28654,4.842105,4.032235,3.94806,4.27043,2.080995,3.953465,3.60977,3.1619166666666665,3.6503,2.93102,3.178385,4.037885,3.68378,2.6374400000000002,4.42111,1.337675,3.67358,2.81987,3.992015,4.241365,3.9447,4.759355,2.56093,4.266695,5.02835,4.09637,2.8578733333333335,2.299485,3.13415,2.51568,0.8974733333333332,4.45243,2.19355,3.472765,2.872505,4.16238,3.41429,3.08002,3.25361,4.037885,4.619487333333334,4.057335,3.017005,1.52576,3.439925,2.501105,0.9017733333333333,4.37088,8.690485,3.488225,3.77672,3.7525,4.71425,3.77007,2.267695,4.08027,4.02867,3.26691,3.34395,3.7495,0.68182625,1.2393157142857143,6.4258575,1.6235425,2.746685,4.817931,2.528425,2.275615,2.80756,7.68785,2.72752,3.959125,3.92286,0.7924566666666667,3.51125,2.78765,3.85797,3.854605,5.773045,0.685349,3.23366,9.55674,3.289225,1.04679,5.00149,4.741735,5.2667,4.28256,4.428105,3.31016,2.6223233333333336,7.062085,0.794407,3.59549,3.84853,3.339615,4.006145,2.251895,4.134905,1.70305,3.90072,3.882725,3.83558,1.645925,4.53491,4.46175,2.3362025,2.280955,2.15186,0.949406,4.191815,3.3742285,1.23641,7.770665000000001,5.84495,4.298165,3.98547,3.6712,4.376155,1.452157142857143,4.243525,4.001475,5.3383,3.82954,2.5432633333333334,6.4649587393162395,0.92154,0.92154,2.5960633333333334,0.9255485714285714,4.268825,2.9360166666666667,1.042805,1.8177766666666668,0.42339666666666664,6.133985,1.021245,2.82328,3.68936,4.06395,3.69875,4.160215,5.454,5.779615,3.389255,3.30474,2.47023,4.05334,4.41431,4.19672,4.02362,3.747395,5.98305,4.33251,4.271430555555556,5.6355900000000005,3.69028,3.2918000000000003,2.405145,3.2918000000000003,7.079389,40.69827218290043,3.9146,3.60943,2.9334066666666665,4.165225,4.45404,3.467105,3.745235,3.888485,4.41939,4.01147,1.60067,4.600225,2.903245,4.36831,5.0485,4.760895,2.45207,4.296715,3.969305,3.368885,1.427594,0.64089,1.6405239999999999,3.6254666666666666,2.86347,1.2651125,2.8783066666666666,2.50747,2.62525,3.5864666666666665,2.9421966666666663,1.403626,2.4504966666666665,3.6715,1.8999329729729728,2.862546666666667,3.195764,2.9330233333333333,2.5809366666666667,3.3403333333333336,1.2000333333333333,3.618185,4.087785,1.2420416666666667,1.2420416666666667,1.2420416666666667,1.2420416666666667,2.991081212121212,2.2279766666666667,2.3987,3.183675,4.81298,4.92119,4.00148,4.2763,5.32775,4.60015,2.317205,5.8838,4.011545,2.89694,3.89876,2.77199,4.069165,3.93274,0.6997930769230769,1.4482428571428572,1.6326933333333333,4.35668,3.854385,4.523015,4.1566,5.981826666666667,2.3390233333333335,4.256655,1.4837766666666665,3.60128,4.97753,1.6816633333333335,5.0683,0.7400633333333334,4.22149,1.140722,1.17246125,3.671615,4.146825,5.04665,4.884785,6.01685,4.195905,1.530492,2.689495,1.5837425,3.553625,3.049255,2.5228533333333334,1.9595225,3.208925,1.3527133333333332,3.50892,4.87207,3.0056333333333334,5.8146,119.0779198140332,0.49274888888888885,4.75412,2.3986733333333334,4.849245,4.16794,3.32254,1.53586,0.3166566666666667,3.008285,3.80162,5.22235,3.168035,3.70794,4.464685,4.221285,4.65245,8.576826666666667,0.70399,2.725955,0.9639575,10.08234,3.11662,3.641305,0.9053644444444444,2.21964,2.760395,2.186225,3.1906966666666663,3.13696,2.6277933333333334,4.35951,3.06265,2.3129566666666665,2.36822,3.07159,3.368985,3.00452,3.702505,3.91522,3.476135,2.40617,3.992155,4.270285,3.218325,0.9730711111111111,2.6131366666666667,4.35951,4.823125,5.4476,4.15561,3.702575,1.92691,11.415939999999999,4.38441,2.766875,4.1719,5.27735,0.48363133333333336,0.48363133333333336,3.92514,3.92514,3.191065,3.5596,1.8097554545454546,0.5655283333333333,2.95802,4.321295,3.95072,3.197095,4.11804,5.307635,4.510835,2.11607,4.73512,2.1200275,3.036525,4.0594850000000005,1.832355,2.17374,0.5272871428571428,1.3229551428571429,1.3229551428571429,1.987415,4.335925,4.484845,4.83806,6.46187,2.72487,3.102945,1.95739,2.06787,3.9186258333333335,3.61628,4.697096666666667,2.336135,4.697096666666667,4.58586,3.609945,5.95875,4.09458,2.43194,1.9524033333333335,2.5111166666666667,1.4813025,1.45595,1.452595,1.7744975,1.59863,1.69693,3.7909,4.360815,2.340295,6.7882,2.731056666666667,4.16906,3.40105,4.17112,2.9868333333333332,2.79794,5.896133333333333,3.3045233333333335,4.512936,3.0668100000000003,1.4090275,2.50338,2.69627,2.21368,6.08515,4.3577825,4.64375,12.138471986601118,0.7328441666666666,1.949811,2.137865,1.532092,1.249852857142857,2.494015,2.30561,2.4194625,2.3987675,0.7350069230769231,1.9120925,0.5125205263157895,4.2729,1.93006,3.662795,4.222395,2.330235,5.57413,3.73959,6.6464,4.056145,2.944005,3.04881,4.479935,4.82408,2.4549173333333334,4.49604,2.0864925,2.0864925,4.70765,3.70647,4.07091,4.358985,3.1493966666666666,3.89758,4.87856,5.11215,4.54891,4.622665,4.692715,4.34071,2.73896,4.789515,1.1313133333333334,4.55691,4.724575,2.5293766666666664,2.18206,4.58733,1.5149783333333333,5.18,1.84315,5.684836956521739,3.92239,4.026475,1.64119,3.5594175,3.5594175,12.23978,4.0379,3.77141,1.123955,4.2083770000000005,2.104885,1.4761225,2.30405,1.68407,2.0192775,1.741696,3.156465,5.93475,1.7334075,4.7754,4.571140833333334,5.37925,2.0889925,2.59247,3.00297,4.39657,5.3592,3.96788,6.837608333333334,3.149293333333333,2.7543133333333336,0.36942444444444444,3.820275,4.210115,3.2646800000000002,5.96696,2.60021,3.0131599999999996,1.2470533333333333,1.419205,0.58921875,1.442142,3.02045,1.4454733333333334,1.56532,0.618861875,1.362078,4.61772,2.3928375,0.5612776923076923,1.53444,1.768345,1.578238,1.32703,2.0355375,1.419205,2.4189825,1.362078,1.362078,0.5612776923076923,1.519642857142857,2.45108,1.2215766666666668,2.5605,0.5612776923076923,2.531725,2.45108,1.1972416666666665,1.1972416666666665,1.1972416666666665,1.86879,1.16979875,0.5612776923076923,1.101772,1.068635,0.9726944444444445,1.772688,2.64015,0.8358583333333334,1.9862375,1.5231857142857144,0.5612776923076923,1.811306,1.419205,1.9233500000000001,1.7616166666666666,0.871751,1.9233500000000001,1.0671844444444445,2.3362025,2.389935,2.4349675,1.068635,2.09634,1.3527133333333332,1.3527133333333332,0.8978345454545454,0.8978345454545454,0.8978345454545454,1.2470533333333333,1.419205,1.5231857142857144,1.53444,0.8921942857142857,1.7616166666666666,1.429402,1.522434,2.00164,1.2470533333333333,2.7847,12.1450775,0.618861875,2.6088999999999998,1.7244666666666666,2.3558725,0.9660414285714286,0.9660414285714286,0.5612776923076923,0.9703966666666667,1.49653,1.5231857142857144,1.83853,1.7616166666666666,1.0921466666666666,1.0921466666666666,1.701408,0.19765,0.19765,0.19765,0.19765,2.8875766666666665,1.0671844444444445,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.19765,0.3825759090909091,52.51524704906205,1.5311275,1.4826,1.5231857142857144,1.7244666666666666,0.8921942857142857,0.6298235294117648,0.74173,0.74173,0.74173,0.74173,4.310233333333334,15.715821250000001,3.3875333333333333,0.5822727272727273,1.474948,1.474948,1.474948,0.5822727272727273,3.02045,0.5612776923076923,1.811306,1.56532,2.55998,1.0671844444444445,2.3129475,1.0671844444444445,1.319146,1.319146,2.098733333333333,2.098733333333333,0.5612776923076923,1.9415220000000002,1.9415220000000002,0.9505909090909092,0.19765,3.02045,1.3832433333333334,2.428005,0.5822727272727273,0.5822727272727273,0.5822727272727273,0.5822727272727273,0.5822727272727273,1.7244666666666666,0.3825759090909091,1.0671844444444445,2.0948675,2.0948675,2.4746725,2.7738899999999997,0.6420333333333333,0.6420333333333333,3.3907000000000003,4.121333333333333,1.236542857142857,3.238606666666667,0.9679059999999999,2.515425,2.0704599999999997,1.024945,2.9512466666666666,1.7589475,3.1988233333333334,5.2347,2.310565,1.164411111111111,4.349975,4.357055,2.45827,1.725076,2.290273846153846,4.74807,1.859455,2.8120933333333333,2.8758366666666664,3.079546666666667,2.50765,6.2099866666666665,3.85768,0.19765,2.9167533333333338,4.72824,3.386255,4.50161,4.306545,4.156495,2.6309766666666667,1.8200299999999998,4.085955,4.780275,4.318495,4.613615,4.91703,3.20864,0.7114383333333333,6.862830000000001,1.507115,2.886102,4.381995,2.4926133333333333,2.4926133333333333,0.8368581818181817,1.9595225,3.919565,3.12641,4.9662,4.1579,4.630585,4.986505,1.0742800000000001,4.748925,5.6151,6.638152083333334,2.3184333333333336,4.232145,3.868,3.90764,3.64732,3.81784,4.3994,6.094872499999999,5.13195,4.2281949999999995,3.65666,4.504993333333333,6.989186,1.9633575,2.23311717948718,2.93798,1.8203866666666666,2.7041166666666663,1.88527,5.3157,2.8519400000000004,5.8383,1.8208379999999997,4.70778,4.01999,3.647355,4.44819,3.80341,2.5412399999999997,2.8371999999999997,2.7331333333333334,2.6420333333333335,2.52913,1.6938333333333333,2.81662,2.7638599999999998,2.21036,2.21036,4.529965,3.0034266666666665,2.04141,2.99047,2.0769233333333332,2.58382,3.1085733333333336,2.7116166666666666,3.01613,5.2154,3.858985,3.718345,3.110634,3.110634,3.981025,3.2027900000000002,3.82338,4.62752,3.9602,3.47878,3.400705,7.54745,1.97525,2.25293,3.56462,3.04207,1.4574999999999998,1.4574999999999998,3.525715,1.88084,3.9138553333333332,3.78842,3.502155,2.3155145,2.1621939166666664,0.5611541666666667,3.329735,3.91341,1.8498775,2.451265,4.073135,1.26413,4.38417,1.2520333333333333,0.42203357142857145,0.5795121428571428,21.094346759920636,0.5795121428571428,0.42203357142857145,0.7369907142857143,9.426916666666667,2.6225833333333335,3.507645,3.916305,3.4145700000000003,2.760015,4.169395714285714,2.340955,2.346935,3.596315,3.12106,4.080245,4.18818,3.614215,2.298335,3.155365,3.2959,3.966285,3.264325,1.1188289999999999,1.1188289999999999,1.1188289999999999,1.1188289999999999,3.382885,2.89332,3.140445,1.8912066666666665,1.1781466666666667,2.48042,3.68586,3.785895,2.91112,3.123635,2.56568,2.7607858333333333,4.00867,4.137525,1.116495,2.4916666666666667,1.0706099999999998,2.652163333333333,1.8168933333333335,3.7890333333333337,4.701715,2.49874,3.38498,4.0733966666666666,0.8745053174603175,0.2909164285714286,0.2909164285714286,0.5835888888888889,0.2909164285714286,0.2909164285714286,0.2909164285714286,0.5835888888888889,4.42178,7.161038333333334,3.85029,0.53775625,3.891655,7.984439999999999,3.491985,3.0433033333333337,1.1547283333333334,4.202155,5.1068,4.22017,4.86817,1.707114,4.64494,2.2467333333333332,2.3866,3.39467,5.16095,0.8438428571428572,0.8438428571428572,3.58124,2.7832133333333338,2.23815,3.82091,2.79621,6.56715,2.708305,6.337,6.01245,5.56965,3.30933,1.81746,3.90341,3.5731,2.071,3.94788,3.217995,1.864675,1.2042066666666666,4.248035,3.439825,4.8282766666666666,6.097284999999999,1.4761916666666668,4.104735,1.1822233333333334,2.5485966666666666,3.454045,3.964785,0.40570214285714284,3.453835,4.190285,0.935965,2.4919866666666666,7.586668333333333,3.07219,2.292255,5.428275,4.518365,3.8063,1.4032616666666666,5.476423333333333,2.5789033333333333,3.1372133333333334,3.5965000000000003,2.2274366666666667,2.2274366666666667,6.173575,6.173575,3.676939285714286,3.676939285714286,10.0772,3.676939285714286,3.676939285714286,4.36919373015873,6.8167,3.628935,3.3034175,2.9787133333333333,4.30865,3.167635,3.1657433333333334,3.15833,4.546285,3.1638466666666667,2.63754,3.2189433333333333,2.2659833333333332,2.797655,4.59789,7.146129999999999,6.37023,4.860815,3.81286,4.050725,6.677948000000001,5.1187,4.495255,3.74918,4.23148,2.28244,2.632205,2.09882,5.17015,5.5144,4.605035,4.33736,2.3414,2.3707533333333335,6.79138,1.86879,2.5611866666666665,3.310496666666667,3.310496666666667,3.34209,4.9831,0.7738925,3.483033333333333,3.616225,2.82908,10.0797475,4.047655,2.827643333333333,2.4043033333333335,4.583965,5.83335,2.947035,5.3427,2.5995,4.701205,2.8988757142857144,4.143135,5.0894,4.616845,0.9191600000000001,3.3164599999999997,0.96960375,2.5839466666666664,5.00028325,8.531843333333335,2.4687,3.230026666666667,6.616278333333334,1.6567399999999999,4.484355,5.279,3.53266,3.78426,2.23103,4.467945,2.32972375,0.5127246153846154,4.99551,2.958785,3.4465,4.45695,4.60375,5.1021,6.437704999999999,4.393525,5.4577,7.206285,54.87764,4.462385,3.88366,4.88052,5.74885,4.371055,4.985935,3.830655,4.68485,1.9829175,3.84873,3.886715,4.67322,2.771985,5.0337,3.99357,1.699202,5.186,6.22355,7.007656666666666,5.2994,3.61371,4.44753,3.39202,3.234605,3.48747,4.250445,4.04069,7.2828,2.6912,1.111187142857143,2.4975612500000004,0.627628,0.627628,3.12531,0.627628,2.53293325,2.53293325,3.27936125,4.69328825,5.081607,2.4975612500000004,4.423414166666666,2.3033866666666665,1.3908666666666667,5.58875,2.24053,6.83561,5.51281,10.867727,3.135816666666667,2.5697566666666667,0.21783,1.961832,2.1405366666666668,0.841955,1.2290833333333333,2.9079866666666665,2.262105,2.605,0.5965119999999999,26.926325833333333,1.8510875,0.7981692307692309,2.4571533333333333,2.4571533333333333,0.38246388888888894,1.719695,3.10267,1.37092,1.6294375,1.6462075,4.00135,2.916105,2.0435333333333334,2.4102433333333333,1.1188266666666666,1.8849275,1.4349299999999998,5.2262885,3.478925,6.579723333333333,2.36995,3.2387633333333334,0.89854,2.58982,5.1379,6.197215,3.0240500000000003,2.195603333333333,5.244249166666666,1.9275225,2.3932166666666665,4.228635000000001,1.1689,3.5507000000000004,2.3010566666666668,4.958425,4.420615,5.95465,3.067995,4.0330575,4.0330575,5.185,1.90979,5.2189,2.6928633333333334,1.6558875,3.07267,3.329785,5.482018166666666,4.002745,2.7884499999999997,3.0587433333333336,2.662565,0.9864757142857143,5.12945,0.9028875,5.63181,4.22134,7.36499,4.150925,4.41917,4.04466,8.312470000000001,3.86713,4.524645,1.1489699999999998,0.7199,4.46513,3.870035,2.088815,3.5783,3.342005,4.252475,2.26135,4.975385,2.4458266666666666,5.12085,4.913215,5.39745,4.109905,4.9174,3.017735,6.627195,3.7197,4.36256,3.298385,4.51121,5.4887442857142865,0.5990785714285715,3.5654333333333335,1.8365166666666666,0.5611,3.848555,2.16375,0.93142625,2.046865,5.5981,3.675595,2.37269,2.6709933333333336,2.8179499999999997,4.968295,3.81258,1.6483859523809523,4.13956,2.1178466666666664,3.5612999999999997,3.95611,5.1649,3.0676341666666667,3.5746333333333333,3.7262,2.01044,7.4726,4.68386,4.340785,5.05015,2.114145,4.236805,4.64664,3.92164,4.02425,10.77562,3.28187,4.461408333333333,4.606425,4.498395,2.268285,4.2752,3.916005,4.125945,3.3339666666666665,4.010115,1.4399725,2.9368433333333335,3.47052,3.468225,4.811965,1.845462,4.00535,3.0358433333333337,5.46465,3.0921233333333333,1.93283,3.93477,4.46486,1.066835,3.022025,2.6881566666666665,4.339359333333333,1.641982,1.8690566666666666,1.2035,3.331785,5.18365,5.62625,3.6612675,3.344305,2.53041,1.94874,1.97821,1.6699333333333335,5.89745,2.925825,1.8996275,0.8788153846153846,19.49512267948718,3.200925,3.0243075,4.507326666666667,3.9529876923076923,1.2533866666666666,2.6517283333333332,2.9100661363636364,1.272654,1.9792866666666666,4.343795,4.534375,3.3597975,3.05942,5.29295,4.59282,6.891415,4.580898333333334,4.44769,3.66495,2.5728766666666667,4.17891,3.928655,3.6717,3.81337,1.7940775,4.55999,7.87083,3.458775,2.869805,3.087285,0.59130375,3.0271266666666663,2.1452666666666667,2.1479325,4.475955,3.07218,4.726495,3.745555,2.916995,2.214035,1.76303,0.783058,1.4754233333333333,1.2801,3.9916,3.79787,4.48565,4.612025,7.45577,2.3569833333333334,1.397276,2.3953599999999997,7.632826666666666,3.168325,2.813275,3.11546,4.11686,3.3364375,3.596735,1.473668,4.716045,4.959825,4.20718,4.04213,3.407705,4.123795,4.051535,3.670625,4.40151,3.959435,2.260495,3.092586666666667,3.410845,5.2654,2.91204,4.2194525,2.880035,3.00701,2.3017133333333333,2.2637566666666666,2.135186666666667,2.612461,2.612461,2.0877733333333333,2.890423333333333,2.401476666666667,2.3980099999999998,1.8722466666666666,4.17954,2.3985266666666667,2.76286,3.00464,1.75518,4.42763,2.746245,3.788795,2.2567666666666666,5.203,5.0269,4.774834444444444,2.385205,2.9267,2.6592,2.538865,1.97697,2.76382,1.9159925,2.49138,2.623975,7.039446833333333,4.3074525,3.55554,0.5922175,4.203235,3.933445,4.128875,3.39357,4.0248,3.8316208333333335,6.27595,4.446565,3.132505,2.7871460714285714,2.1097828888888888,2.5319,1.597842,1.655322,1.495492,2.02536,1.72034,1.1453483333333334,4.198865428571429,0.5612776923076923,0.5271988888888889,1.833604,1.5179683333333334,1.457724,1.3832983333333333,2.3043760606060606,1.436875,1.6118320000000002,0.6196925,166.27075864953102,0.483296,2.06474,1.202376,1.2190075,2.105725,1.540015,1.994135,2.3344666666666667,1.7921675,6.6287,3.10025,3.3378523809523806,1.8027966666666666,3.217425,1.2975533333333333,1.2975533333333333,5.7077275,0.4793111111111111,2.1098225,3.13975,3.0283166666666665,0.7808272727272727,0.5598135294117648,1.163384923076923,1.0191636363636365,2.2280975,3.89133,1.93352,2.174365,2.16438,4.860497944444445,0.9646233333333333,4.27171,3.512715,3.645605,7.14065,1.9393366666666667,2.745505,2.090345,3.76473,2.561635,2.794265,2.90565,3.1832,3.63246,2.925985,6.66031,2.34837,2.805575,3.265825,1.300515,2.649055,2.957875,3.015615,1.667475,1.629915,1.967955,4.06493,5.067498333333333,2.654455,2.97391,1.30885,4.169835,3.6324666666666663,3.796666666666667,2.98874,24.536313017399266,2.6275753333333336,2.6854366666666665,2.976323333333333,3.4907333333333335,3.0877533333333336,5.65564,3.17924,2.21734,3.3928333333333334,3.4448666666666665,2.143543333333333,3.2407,3.294286666666667,3.02549,1.7419166666666666,1.6526855,0.5845629999999999,2.280343333333333,1.8791125,0.19223375,2.1756466666666667,2.50761,0.19223375,0.19223375,2.0633670833333335,0.19223375,0.19223375,0.19223375,0.19223375,2.7541466666666667,2.4019633333333332,0.5456392307692307,3.2851799999999995,1.3624675,1.9228739999999998,5.485,4.313065,5.97185,1.88961,4.924225,1.8907325,2.4837266666666666,1.1874585714285715,5.74347,2.869963333333333,6.060135000000001,0.8062299999999999,1.52645,4.55123,4.6955,34.58145323704073,1.54722,1.4936299999999998,2.32602,2.259335,0.8978345454545454,2.3634,2.28551,2.7160766666666665,2.015566666666667,2.4896433333333334,1.7767233333333334,2.5096166666666666,2.3948966666666665,2.2631033333333335,2.698926666666667,2.582803333333333,4.001225,3.2588666666666666,1.0825957142857143,3.938385,3.908405,19.93478111111111,2.7681466666666665,3.1536833333333334,2.6792166666666666,0.9190619999999999,3.175758,1.6893097777777777,3.175758,2.4034733333333334,2.5077933333333333,2.94703,1.5574,1.8223775,4.086685,4.225115,4.860095,4.21387,1.6733360000000002,4.921885,1.612075,4.89445,3.9462679047619047,4.39638,0.7517536363636363,2.0482775,1.98697,2.710378,3.39448,1.05302625,3.33761,1.9087140000000002,2.0631766666666667,1.0756919999999999,1.0756919999999999,2.5107666666666666,2.6683533333333336,4.32809,28.3337,6.4681999999999995,1.8316800000000002,3.6940333333333335,0.3937306666666667,5.6559625,5.62525,2.68038,3.379095,5.3711475,3.281085,1.1193875,4.575375,1.288512,2.74867,4.3006,4.4488,2.63804,3.26876,4.25527,2.634645,2.724729,4.166245,1.3305366666666667,2.3876433333333336,3.378135,4.87212,2.5239033333333336,3.05991,2.8096300000000003,3.85416,4.062205,4.048005,4.2173,1.985815,6.05134,2.63041,1.7581579999999999,4.118845,5.37711,4.235695,3.149165,0.70770625,3.07772,3.55223,2.1491,4.817871666666667,2.96494,4.12356,2.8544066666666663,3.453533333333333,2.61593,3.1059633333333334,2.8959766666666664,3.0310966666666666,4.21756,5.54865,3.776405,1.774835,3.87295,4.1893,2.00127,2.040325,1.752105,3.8607694444444447,4.4408,4.994598020833333,4.08586,3.295083333333333,3.8782,3.1521733333333333,1.3701333333333334,3.13511,2.972405,3.10487,4.477975,4.57963,4.13524,2.893265,1.99275,1.85101,1.5906075,3.60247,2.40111,2.178305,3.370075,5.05485,1.606195,5.20695,1.3992685714285713,1.8647,3.285415,3.11353,3.246765,3.780975,3.272825,1.75786,0.9756337368421053,3.10986,4.557013333333334,4.38016,8.82259,3.0170066666666666,3.0586,1.6428266666666669,2.7878133333333337,2.662123333333333,1.0953616666666666,2.94394,2.65985,3.0299600000000004,4.008166666666667,3.0939533333333333,6.879686666666666,3.087013333333333,0.7688645454545454,1.7508566666666667,3.39839,3.32564,3.496795,3.4579,2.4880389999999997,2.91742,2.9354,1.9718138571428572,3.93955,2.4428,3.492485,2.0497433333333333,4.700975,4.864765,4.55641,3.46861,3.442655,0.92042,4.45194,2.8326533333333335,2.7664899999999997,4.24877,2.7567866666666667,2.68953,0.50561,0.50561,4.281316666666666,3.99415,6.9192,3.216405,4.50926,3.59992,3.30634,4.5927,4.039125,1.0406975,3.75561,2.45992,4.124968333333333,2.9024866666666664,3.1263316666666667,1.69404,3.232919642857143,2.35432,2.8346133333333334,2.5350633333333334,2.8363,1.8533166666666665,22.48066827272727,3.578635,3.62514,3.957925,3.39441,4.25759,3.656585,4.65935,3.98403,3.935125,3.338655,3.90404,2.4001533333333334,2.640746666666667,2.854886666666667,3.0685366666666667,2.6747533333333333,4.20536,3.636665,4.99318,4.84346,4.417065,1.336578,1.38011,1.38011,4.87774,3.48734,2.6456766666666667,2.1988533333333335,2.8300866666666664,3.218895,3.520365,7.391853333333333,3.197093333333333,3.4156999999999997,2.9780116666666663,5.23695,1.5467466666666667,5.8008299999999995,2.48046,2.7954633333333336,1.7544525,3.326775,2.87607,6.10003,3.136855,2.659345,4.323,4.154532666666666,1.48536,2.5695466666666666,1.6603933333333334,7.241496,4.388105,6.672408333333333,2.2542925,3.894115,3.805345,3.865755,5.03,3.5610999999999997,3.5610999999999997,2.1128275,4.28021,5.04545,2.157875,6.414587142857143,1.50449,5.65295,8.520408,3.4983,4.191416,2.346366666666667,1.976955,0.509671875,4.45218,2.4569675,2.6222,3.608666,2.2257,2.411703333333333,3.682615,5.5727,5.0873,5.1083,4.874665,4.120985,2.2333325,1.0310363636363638,2.963605,3.45998,2.72958,5.11245,3.98965,3.33503,2.5867,1.8580359999999998,4.074425,1.032805,5.2824,0.9769022222222223,5.47125,3.481265,4.63867,4.94696,3.15761,3.36243,2.9767166666666665,2.30081,4.193515,3.0849,2.552685,3.803715,4.725835,5.838661666666667,4.40149,1.600135,3.34631,3.17614,5.638396666666667,2.0407075,2.0407075,3.0275433333333335,2.2330633333333334,2.409213333333333,2.519973333333333,0.8362679999999999,6.2532,3.236245,1.9111875,2.50811,2.72644,3.949915,2.83915,3.72285,5.0309,5.0153,4.814365,5.8377,5.6499,1.3044375,3.36279,1.1072666666666666,2.4924875,4.299666666666666,2.78129,3.126695,3.34309,4.60596,3.05094,0.4400826315789474,4.722145,4.199605,4.758855,3.41045,4.71068,5.2947,4.33498,4.052655,1.73615,4.42627,1.99647,4.2528999999999995,4.2528999999999995,6.59325,5.72785,5.4569,4.80053,2.68803,1.5467466666666667,4.184385,1.9165733333333332,1.7132100000000001,2.20494,4.3285,4.08596,4.136355,8.49694,1.5057033333333332,5.06055,1.232615,3.41138,5.9398,1.924015,4.768715,2.4492066666666665,4.67648,3.49673,4.77406,2.83269,4.295955,4.183665,5.8447,4.258545,3.916575,3.74259,5.92785,4.055215,4.624845,3.77684,3.99211,7.073315000000001,3.515135,7.0693,3.297675,5.67815,5.944529545454546,4.188015,3.656035,1.7328125,5.6203,3.97314,0.87925,8.76991,5.99875,5.15515,3.024235833333333,4.864375,2.93469,1.692562,4.000375,1.116495,6.003,2.94477,4.6659,5.5721,4.335395,4.00381,2.1745533333333333,4.29133,4.981365,1.528035,6.932923333333333,3.07827,3.45911,4.981385,4.311845,2.18744,4.41185,3.732685,3.68572,2.6172566666666666,4.10234,3.643705,5.4283,4.531095,3.209975,1.72598,1.72598,7.516513333333333,1.3697614285714284,4.878945,4.17757,5.22175,3.124475,3.455145,5.05005,3.801095,0.9645533333333334,0.9645533333333334,0.9645533333333334,3.670105,3.155505,3.88142,4.4022353333333335,2.43648,1.4486383333333333,4.084875,2.138875,2.756165,3.8347,4.418255,2.1952975,2.177,5.1397,3.68987,3.308865,4.35385,1.7818425,2.020355,3.317736666666667,2.629595,5.0646,1.434006,1.5575160000000001,1.01119875,3.746245,3.07409,2.7916166666666666,2.8351733333333335,5.1999,1.7516559999999999,2.09748,3.06792,1.630957142857143,3.26553,3.6006,2.4817975,5.3763,5.55515,2.79563,4.143315,3.578465,3.724175,3.361605,4.11081,3.515585,7.03637,4.946945,1.81583,1.77235,3.573195,4.680445,4.393245,3.595045,2.8446533333333335,4.08343,6.06355,4.987325,2.7249666666666665,5.27585,4.04088,4.312085,8.0173375,3.88883,0.6923081818181818,3.799905,4.254239166666667,2.251665,4.192265,3.7665333333333333,5.82565,4.00566,3.612535,3.92372,4.297275,4.555905,4.497735,2.91996,3.72691,4.90357,3.82832,2.519055,3.0148,6.43801,5.28995,2.08214,3.042405,4.0680491666666665,3.834765,4.833795,4.162825,2.5827833333333334,0.8935844444444445,4.529822727272728,6.275435000000001,3.86166,4.77936,3.62878,6.651585000000001,3.990705,3.7174,2.7473466666666666,3.81869,1.877645,3.576425,4.34755,2.479813,3.8392,5.62715,1.5185225,4.612315,0.6269171428571428,5.9707,6.06405,5.94305,5.73955,1.503215,1.67677,4.407,2.076265,5.2604,0.5167108333333333,5.70805,3.334245,1.539174,6.3726375,6.4742,0.997535,1.850121,1.267404,1.267404,1.267404,2.1354966666666666,4.598425,3.76984,3.219525,3.771125,4.97022,3.79119,1.951298,4.11986,4.97095,0.29565121951219514,3.493535,4.50726,4.489905,38.69014006818182,5.432308333333333,4.951205,10.734933999999999,3.231435,4.27556,7.302143333333333,3.088845,5.00895,3.792235,4.083155,9.570635,3.792175,2.7274133333333332,2.81594,4.394675,4.456735,3.727325,4.398555,2.02311,4.477555,4.20378,6.662387,4.210815,4.9185,2.360485,4.383515,0.51700875,1.4776916666666666,3.4579,5.9973,3.0065,1.2313016666666667,1.2313016666666667,3.035865,3.838155,4.19176,2.71251,1.6048533333333335,3.671735,4.227905,1.767175,3.22995,1.487144,1.9190699999999998,4.130825,4.507025,1.98478,4.47554,2.2037025,2.337355,3.380615,3.735615,4.12993,3.88602,5.984464333333333,2.335259333333333,4.03027,0.7125981818181818,0.6639891666666666,3.784685,2.34124,8.459816666666667,3.3875333333333333,4.750685,1.6770425,4.29563,1.5201166666666666,3.95799,4.53503,2.6001866666666666,3.84415,5.02615,0.41966650000000005,0.41966650000000005,3.658666666666667,3.23957,2.8461833333333337,3.535875,3.854095,5.4634,1.020209090909091,9.303785,10.66422,2.0355375,4.6901150000000005,4.48369,4.723435,3.519485,2.4905666666666666,1.976786,1.9980125,9.3067525,2.135665,2.7427533333333334,3.497196,4.516545,3.497196,2.07625,2.8209766666666667,2.7702666666666667,0.6939536363636364,5.259081666666667,2.8480233333333334,2.5196666666666667,4.05233,8.565125,9.592215,4.065185,3.989085,4.12056,6.7261500000000005,1.95568,1.394025,26.211138333333334,4.35416,3.602385,0.912682,4.313845,4.115225,5.1186,4.51969,5.2927,5.673706666666667,3.0332333333333334,2.1597833333333334,0.6541058823529412,0.7543691666666666,4.6455,5.04705,1.3723666666666665,4.291576666666667,0.898975,3.6160333333333337,1.3912066666666665,4.26598,5.88645,2.023635,2.56355,2.32325,3.88357,2.879955,0.4047044444444444,3.69242,3.58042,2.4973266666666665,3.368425,4.833695,2.7800333333333334,4.328865,3.280645,4.524335,8.023393333333333,4.861375,8.517710000000001,2.6981,2.64645,4.586125,4.9629275,4.414125,4.526875,3.80622,4.36693,1.17681,3.262685416666667,3.213098714285714,0.494278,1.38011,1.38011,4.18695,6.880375000000001,0.8254230769230768,4.77179,0.9083366666666667,2.7628066666666666,2.3303533333333335,2.536236818181818,6.239966666666667,2.4128333333333334,1.1259333333333332,2.3928266666666667,1.19235625,1.98846,3.1014033333333333,3.0854500000000002,3.2346266666666668,2.5092333333333334,0.9083366666666667,4.480215,4.402045,5.3282,2.793855,3.883365,2.1305199999999997,5.83185,4.62118,4.125395,2.9502166666666665,3.101225,2.24278,1.3274025,4.034855,2.65915,4.206905,5.66695,1.6123439999999998,4.44215,2.714593333333333,6.199341666666667,3.53658,2.491085,0.9083366666666667,2.58492,3.79702,7.384851277777778,2.4650133333333333,1.7118680000000002,2.4650133333333333,0.4139458333333333,1.333582,3.910135,2.985225,1.6781575,3.783335,3.7665369999999996,0.645837,0.645837,0.645837,8.360330000000001,1.612066,0.725239090909091,2.520115,38.76785791991342,1.9154504444444447,0.6922544444444445,2.9450475,0.6922544444444445,3.891385,2.18087,2.47534,2.4912366666666665,5.27835,4.11767,4.45406,2.4521166666666665,0.9276342857142856,4.2632,3.2925,4.873025,1.0802542857142856,2.905725,2.905725,3.934035,4.20071,3.377705,4.3394699999999995,3.15997,4.50265,5.2688,1.7689879999999998,1.02221625,5.3479,6.5663,3.94184,0.707008,4.345275,4.055693333333333,0.88469375,4.334455,2.448545,3.84259,4.24365,1.8506162626262626,1.8506162626262626,3.921525,3.45723,0.9053622222222223,3.00635,2.942043333333333,3.335095,4.11121,4.42414,0.5740671428571428,0.27700705882352944,0.27700705882352944,0.27700705882352944,0.8510742016806723,0.58854,0.693502,0.27700705882352944,0.27700705882352944,6.6324950000000005,0.27700705882352944,0.8510742016806723,3.604725,1.295795,4.61667,1.1887166666666666,0.5675723076923077,0.88469375,2.71128,2.548475,3.965765,3.059675,0.27700705882352944,0.27700705882352944,4.421055,3.960075,4.14595,2.655425,4.074985,1.431638,3.715025,0.693502,0.693502,4.743585,3.212145,2.74875,3.09494,3.734976666666667,1.03478,0.8789230769230769,10.052745,1.20002625,3.67175,4.464655,5.17655,2.08038,0.36467999999999995,0.86758375,2.7652133333333335,3.08897,3.208405,4.324845,1.313458,5.7279,3.34051,4.9981225,3.93528,3.0259033333333334,2.916066666666667,6.304053333333334,2.5125333333333333,4.633115,4.109735,4.0733966666666666,6.177625,0.5258813333333333,4.099445,3.4830666666666663,2.0317966666666667,0.6843322222222222,4.090375,4.66794,2.73209,2.498715,2.29155,4.94413,2.81217,2.83076,1.065686,0.4794684615384615,3.96714,0.35517533333333334,0.7754145454545455,3.997645,3.027045,3.698795,2.78639,5.26015,4.3256,6.132768333333334,3.61143,3.52971,4.59127,1.6178125,5.4010425,1.690502,4.10614,2.49811,5.94197,2.643455,0.960392,4.38421,6.94683,6.488746666666666,3.3078133333333333,0.79852,2.8873866666666665,4.18757,3.81945,4.53627,4.45092,4.002845,4.53975,2.92023,4.211895,1.8058366666666668,2.352675,1.51269,4.085495,9.59193,2.848925,3.698195,6.004,3.017825,4.083745,2.5350533333333334,2.853516,3.32626,3.15426,3.620275,3.340315,3.54925,5.25025,5.6491,3.857915,4.855735,5.0106,3.90833,2.79097,5.2397,7.49643,0.9458877777777778,4.0727,4.111855,4.747645,5.57045,4.96058,2.19719,7.805375,2.52598,3.362705,6.0661,3.82037,4.42324,2.1564,1.7855575,2.887646666666667,2.1710866666666666,2.1220433333333335,2.8289833333333334,4.14587,4.715495,4.064475,3.54839,5.08427,3.394015,3.26899,4.05929,5.5827,2.876175,5.302759666666667,3.915485,3.858205,3.58755,7.27259,3.4932,3.80869,3.93888,4.959,2.99145,10.7647,1.2862433333333334,2.32859,3.694445,2.7814933333333336,2.7814933333333336,1.8895,7.438208333333334,0.8742455555555556,3.009925,0.94221125,2.09748,4.142365,4.94205,3.703615,4.055705,2.6822,3.25595,3.6727,3.856345,4.010495,2.90422,2.4603033333333335,3.953035,4.645131666666667,3.388545,4.213985,1.620916,1.690924,2.6162566666666667,5.53285,2.134425,1.8623533333333333,1.99727,4.14883,4.52536,3.053465,2.670775,0.5667544444444444,2.441575,7.224125000000001,3.474215,1.6771033333333334,0.894435,1.23156,1.95076,2.3427275,1.158405,2.1001933333333334,4.382052,3.96495,4.630115,2.5050233333333334,1.9157775,6.1461675,2.837325,2.351995,2.351995,2.351995,6.55065,2.32885,3.493655,2.46087,0.461004,1.333424,2.3312,5.93915,0.44241444444444444,3.706635,3.921735833333333,5.60755,2.897167777777778,0.44241444444444444,2.897167777777778,0.9002925,1.1337300000000001,5.85505,4.091285,6.66296,3.98157,4.43502,3.571455,4.09674,5.05145,4.938465,5.85875,3.81629,3.46233,4.75595,4.539615,4.151475,4.488965,4.45252,1.3463216666666666,2.5078366666666665,1.18146125,2.01798,3.1805161111111113,1.5802694444444443,6.5306999999999995,5.638396666666667,2.64825,4.153305,2.954385,4.74973,2.82453,3.941845,4.84932,9.5020325,5.1221,4.405745,2.2976725,3.025765,2.06926,0.59130375,2.1515824444444442,5.8655,5.14735,4.735475,4.388685,0.512014,2.037245,1.575575,4.20516,0.7047269230769231,6.5819725,2.0629025,1.1195125,1.1195125,3.981284,1.973084,3.16872,2.64805,4.641785,3.40197,3.40197,4.33675,5.615915,2.73887,2.3913166666666665,3.2087,4.67223,1.7557079999999998,2.8706766666666668,5.42865,5.02995,4.471185,3.965715,3.919555,4.213285,3.573358333333333,3.2051533333333335,2.3506475,4.26773,5.13725,3.2096725,4.849615,5.44595,2.0451333333333332,2.47165,6.16585,6.9987,1.1365159999999999,2.49289,2.3621425,2.66984,2.2345975,2.500875,2.352221,1.052708888888889,1.932885,2.66995,2.23632,2.4340716666666666,2.4340716666666666,2.912533,2.87845,2.1501826923076925,2.549175,2.3226125,1.976452,1.545738,5.0498875,14.428035166666668,2.6671033333333334,3.198646666666667,1.831304,1.831304,1.6311349999999998,1.6311349999999998,2.7690133333333335,3.6300000000000003,2.813893333333333,1.9007425,1.9007425,3.8447,2.489263333333333,1.2016266666666666,1.4561857142857144,2.9772266666666667,2.7265866666666665,3.572366666666667,2.41642,3.237386666666667,3.1055200000000003,0.646898,2.544525,3.574669666666667,6.777521666666667,4.798525,5.428,4.26265,3.714295,4.95537,4.602505,2.664163333333333,4.073985,1.3191783333333333,3.1750900000000004,5.64235,5.09875,2.684435,1.1223616666666667,3.144425,2.2949800000000002,2.8473133333333336,1.4871666666666667,0.6451728571428571,2.8665066666666665,4.375400833333334,4.980285,3.937475,4.697715,3.0217733333333334,2.0410633333333332,3.2995324999999998,2.3571433333333336,3.173833333333333,3.13719,3.155813333333333,2.6476266666666666,2.3082133333333332,3.5096333333333334,2.7171800000000004,5.0854,4.59053,5.255095833333334,5.255095833333334,3.587575,4.063955,3.954825,3.63674,2.86787,4.32886,3.41092,3.109913333333333,6.1034,0.6796583333333334,5.17555,4.832995,2.6164066666666668,4.961343333333334,3.1146833333333332,1.71345,1.2147214285714285,2.0411699999999997,0.944858,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.29460892857142856,0.5991985714285715,0.5991985714285715,1.158765,0.79522625,1.6956408964646466,0.9560014285714286,0.9560014285714286,1.2660408964646463,0.4296,0.40803555555555554,1.306475,1.465715,2.6624333333333334,2.230715,6.395106666666666,2.96991,3.62243,2.8735233333333334,4.7682271428571426,1.3426366666666667,4.744385,3.90758,5.05705,3.045105,1.521244,4.376826153846154,3.85477,4.415785,4.26692,3.106695,4.706525,4.602,4.63834,1.27529,3.982785,4.551865,3.33342,2.3639966666666665,3.54987,2.52054,3.276925,4.78693,3.0067033333333337,4.772055,8.87312,3.235725,4.721385,3.996555,4.366611666666667,2.522203333333333,3.83374,0.99305,4.182465,3.634555,2.15208,1.19818375,2.91309,1.2291766666666668,0.48037266666666667,3.3596,4.185195,5.27065,3.6135333333333333,2.4250675,2.092145,4.912945,3.844333333333333,4.98381,2.71085,2.31439,4.162575,3.84031,3.73692,4.97651,4.505595,3.77526,4.590815,3.1241800000000004,4.32217,2.21085375,4.398745,5.2076,3.291235,4.30032,2.60199,3.90526,5.2962,3.811975,4.93391,4.65358,4.950865,2.307043333333333,4.635155,5.0405,4.621185,2.1031625,1.0185025,4.011005,4.52551,3.9036,4.58092,2.121875,3.769545,1.6842,4.86118,4.43749,4.67104,2.20827,4.11904,4.340945,4.250485,2.3613133333333334,4.46883,4.568255,4.981225,3.53518,2.1031625,2.349265,2.632085,4.95835,3.76723,3.978535,3.522635,4.71958,2.42273,6.92638,4.77562,4.50765,5.257402263888889,5.09188,4.960795,3.4589525,2.6493333333333333,2.6493333333333333,3.646625,3.30282,4.57049,2.0121,2.85804375,0.95562875,2.4973733333333334,2.884866666666667,2.2916233333333333,3.0816700000000004,4.24219,2.6933933333333333,5.09005,2.4821133333333334,4.24531,5.152464999999999,1.98263,4.05667,2.5454,2.603396666666667,4.096175,0.9004070000000001,4.97027,4.465405,6.098262500000001,4.71201,5.47345,1.2659957142857141,4.67003,6.4863,8.070655,3.1257099999999998,3.1911566666666666,1.9263480000000002,0.799646,3.88836,1.02906,4.91085,4.48709,5.79295,3.055975,3.667305,1.1255028571428571,3.37197,3.65651,4.41905,4.04015,3.050365,3.006325,2.364555,4.00882,4.49841,5.5911,4.25237,3.291815,0.4463977777777777,0.4463977777777777,0.4463977777777777,0.4463977777777777,5.8138,2.942385,6.129,3.0372533333333336,4.804625,4.52975,3.787385,2.102115,2.52624,1.4944533333333334,5.2094,2.5759633333333336,4.24078,3.526725,3.617625,1.731685,1.15519875,4.52085,2.437355,5.685548333333333,3.94827,4.779105,2.39652,1.438745,0.9099266666666667,3.372405,4.04341,3.687035,2.14993,7.810544999999999,4.562895,3.31153,2.21818,0.445231,3.560935,2.33723,1.957715,1.969315,2.88258,2.993645,2.358665,2.98713,3.08568,3.39364,4.35579,3.334385,3.810775,2.99724,5.554996666666667,0.6035506666666667,4.41443,5.73645,4.97452,4.588015,3.2606633333333335,5.1121,4.3248,4.091905,5.24836,5.0006,4.502985,4.40281,3.6617375,4.879295,2.32361,9.25743,4.79326,4.08044,4.475595,4.935705,5.4968,3.363995,1.1049566666666668,5.713875833333333,3.23523,4.476825,1.3075166666666667,4.369815,3.63148,6.323371666666667,4.59485,3.370095,2.0315866666666667,4.72096,2.18622,0.90545625,4.27218,6.07695,1.92581,2.2866866666666668,2.9714500000000004,3.319735,3.64549,3.74528,4.894925,1.8071599999999999,4.027395,3.9541644999999996,3.297895,3.7693999999999996,3.762895,2.874635,2.75354,1.8720675,2.5000966666666664,2.7837933333333336,4.47952,0.5611541666666667,2.65969,4.03385,3.00192,3.3883666666666667,4.24529,4.89957,3.9065,16.57716928787879,2.4422533333333334,4.1018,1.463636,0.9030454545454546,0.9030454545454546,0.9030454545454546,0.9030454545454546,0.9030454545454546,4.05698,4.53313,4.649365,8.872664499999999,2.4315825,2.4315825,4.290485,4.55237,1.28262,1.9784133333333334,3.690895,2.4224175,2.3136325,2.0780125,3.080895,3.824732666666667,1.7034275,3.528845,0.8318071428571429,2.7719166666666664,2.6746766666666666,3.0759833333333333,1.4927766666666666,3.203863333333333,2.1615066666666665,0.92699875,2.78427,2.6269233333333335,1.2472555555555556,2.3312766666666667,2.5341299999999998,2.1731233333333333,4.278852666666667,1.8278999999999999,2.8761466666666666,2.048355,2.62571,1.10824,2.597376666666667,4.694343333333333,3.6287333333333334,1.02376125,2.8773433333333336,1.3621325,2.4926566666666665,2.354546666666667,4.774419999999999,2.9590533333333333,2.37278,4.616871333333333,2.6750399999999996,2.22132,2.7964800000000003,2.3499633333333336,1.58675,2.722496666666667,3.1504,2.79645,2.4755766666666665,3.1323833333333333,2.6484799999999997,2.3458725,3.7264405,3.7264405,3.04974,2.06278,1.8929133333333334,2.2608466666666667,5.49362,2.85223,2.0652166666666667,1.6146275,3.031363333333333,4.12597,2.339443333333333,1.047262,2.765678666666666,1.44867,2.7700266666666664,2.109106666666667,2.5850733333333333,2.2198766666666665,3.18468,1.3038859999999999,1.5953666666666668,1.5577233333333333,4.299803333333333,2.660763333333333,4.25439,1.0345644444444444,4.128495,2.1120233333333336,2.0630625,1.682302,1.6099249999999998,3.1786966666666667,22.88982171861472,7.329566666666667,2.720886666666667,3.4683191666666664,2.798553333333333,10.056465333333332,3.1743166666666665,1.01240625,2.5579933333333336,2.43782,2.0564466666666665,2.9004266666666667,2.5235733333333332,2.6384933333333334,0.968871,3.11771,2.5726633333333333,3.007406666666667,2.7211433333333335,2.6400166666666665,2.1136833333333334,2.1648833333333335,2.8136533333333333,2.6031133333333334,2.06703,1.5872579999999998,4.9355883333333335,4.59089,2.0382625,2.9651,2.3158566666666665,2.44157,8.171179166666667,2.0008666666666666,4.92081,2.27991,1.834975,7.59243,2.8178466666666666,2.7322,2.43295,1.829342,1.4254857692307692,3.204466666666667,3.0385500000000003,3.902025,1.563215,3.6206333333333336,1.599975,1.599975,4.516995,4.035755,3.441568,3.441568,5.6863166666666665,3.48596,0.455274,11.617949942002442,1.4535200000000001,0.9881971428571428,3.4859774999999997,1.4228252991452992,1.81431,5.980436666666666,3.755055,0.7504854545454546,2.2300366666666664,4.82955696969697,2.4077153333333334,3.76266,1.27837,5.35795,4.930215,4.53374,3.1879074999999997,1.9331219999999998,2.1685033333333332,2.60508,2.3697233333333334,2.16474,5.063913333333334,4.20477,3.89829,1.8659225,4.799485,4.08075,3.3435666666666664,2.17247,4.691455,2.4059433333333335,8.630243333333333,6.306585,1.8346125,2.13042,1.7521360000000001,4.5748,4.5748,2.9514899999999997,2.85551,3.1067845,4.86551,9.795277500000001,4.25452,2.4724125,5.4432,4.262785,5.07,1.98734,0.8613925,1.347715,4.576825,4.641525,3.6473,2.5427966666666664,3.6733,2.14325,3.75258,4.727785,3.36823,5.4034,3.11566,3.351328,3.246226666666667,3.24737,3.2756866666666666,6.228,2.9401,5.39435,4.56302,3.44007,3.339075,3.339075,5.070925,11.7323375,3.5013666666666663,6.12473,7.324326666666666,3.68844,2.5243533333333334,4.00353,1.3347766666666667,3.911,2.3536575,2.9731733333333334,2.9365166666666664,3.23028,1.9000499999999998,2.3527333333333336,2.54719,2.4862433333333334,2.83826,3.1068599999999997,3.68741,2.51468,2.878076666666667,3.97623,2.688026666666667,2.4721233333333332,1.064215,2.13126,2.86632,2.4216466666666667,2.452366666666667,2.54738,3.4339,2.2990866666666667,2.3580033333333335,2.5589299999999997,3.02404,2.6045666666666665,2.7691433333333335,2.4748566666666667,3.0840433333333332,2.82945,3.3686239999999996,2.67657,2.45932,2.24082,2.542056666666667,2.5623333333333336,3.5147,3.3192799999999996,2.840655,1.89123,1.89123,0.6858783333333333,1.473668,4.10095,3.18728,2.5844,1.9000499999999998,2.983696666666667,1.1962885714285714,2.57295,0.5329733333333333,3.25422,3.0900866666666666,3.37225,2.937796666666667,2.574873333333333,2.4249033333333334,2.9067866666666666,2.7512933333333334,3.11407,4.352463333333334,1.467006,2.59909,2.3539566666666665,1.8836266666666666,2.1958333333333333,2.7646633333333335,2.6271366666666665,1.619754,2.5539366666666665,2.5974866666666667,2.5297433333333332,2.575536666666667,2.729276666666667,2.80367,3.1405100000000004,1.398965,2.8582066666666663,2.4140200000000003,3.7183333333333333,3.7240333333333333,1.82085,2.0216600000000002,3.1564666666666668,2.43664,3.4074333333333335,2.7059800000000003,2.413753333333333,5.152725,3.31082,1.99666,1.547434,3.4019333333333335,6.227323333333333,3.1021733333333334,3.4506,2.5955633333333332,2.940636666666667,4.685349333333334,1.5961560000000001,1.1327222222222222,2.0077966666666667,1.6787225,4.5877,2.672523333333333,2.86596,3.120416666666667,3.1999666666666666,2.1572766666666667,3.3906333333333336,2.470545,1.60379,2.5810733333333333,3.58846,3.6780125000000004,3.32428,3.68187,1.5991825,2.759535,3.495315,3.391465,2.3872266666666664,3.8088333333333337,3.8150999999999997,3.9389000000000003,1.2985875,5.580895,3.2782175,1.4559133333333334,3.30454,3.27376,2.7173,3.569705,1.8000019999999999,1.8000019999999999,3.1989133333333335,2.9834133333333335,2.87532,4.919485,4.279495,4.2517553333333336,1.528352,3.1075266666666668,2.4201433333333333,4.1115525,3.1847966666666667,4.684123333333334,2.5030566666666667,2.3985600000000002,2.45819,3.84355,4.02952,1.6206980000000002,3.0900700000000003,2.90666,2.29662,4.371905,1.322065,2.93604,4.28144,2.77391,3.56686,4.051805,1.61672,1.6140633333333334,2.3122075,1.1012583333333332,2.092832619047619,1.84555,0.46897785714285717,3.92643,2.44159,4.519455,4.05841,2.811955,4.64342,3.3871,3.11565,3.355933333333333,2.36857,3.12875,2.7053999999999996,2.96297,2.20407,0.6488169230769232,2.388403333333333,0.6169292857142857,2.03477,2.6273766666666667,3.1607233333333333,3.0235366666666668,1.4303,1.3821325,3.872545,4.185515,2.77712,3.6643099999999995,3.07476,1.5167,3.751625,6.974505555555556,3.55129,5.2783425,1.610475,3.79108,1.7936475,4.33465,3.5212,2.17634,3.969745,3.23278,3.50518,3.957385,2.0663325,3.784475,5.8400175,4.84695,3.16994,3.048455,1.768345,1.99632,3.72607,3.18788,3.12111,3.28782,3.45948,3.442755,1.5755875,3.51543,3.310425,1.552075,4.038725,1.0422333333333333,3.164985,1.7194,3.45505,4.636168333333334,3.608635,2.98128,3.637155,3.214365,1.89766,2.3226625,3.773,2.208545,5.6944275,3.86423,4.529975,2.34888,2.60228,4.35356,4.63162,2.22813,2.22813,5.836953,3.8724155,2.6590775,2.77012,2.0471,2.721735,3.277115,3.78528,2.7029605,3.41251,0.980082,3.683255,2.65145,3.926575,2.51609,1.561475,1.310925,3.009515,5.88114,5.700525,3.704205,1.398275,4.39378,3.742025,0.865635,2.65393,1.335162,5.32666,1.3581349999999999,3.49451,1.6873475,1.4303,2.67184,2.497895,4.58093,6.72542,3.967295,4.605959166666667,2.441205,2.830955,3.90555,3.581455,4.154695,4.292585,1.129195,1.6526855,1.0681225,2.361055,2.366175,4.92769,1.0681225,4.228325,2.13689,1.55844,1.55844,1.552075,3.84389,4.07781,3.763595,1.400164,1.400164,0.9494366666666667,3.01413,2.0827525,6.0722775,4.097095,3.752955,2.8483133333333335,1.0046,3.49735,2.85807,4.177555,3.45352,3.7078875,3.7078875,3.352605,4.030635,1.77073,2.532735,0.9558577777777777,1.9914666666666667,3.43093,2.5229866666666667,3.099285,3.099285,2.6583,4.60141,4.44191,3.600355,3.61653,3.957545,2.466553333333333,4.146305833333333,2.76283,3.834245,8.238565,5.11505,2.795685,3.252105,3.19282,4.53728,3.176826,7.671665,4.565298,4.489235,3.34293,3.828555,3.64842,4.175325,4.80967,2.45942,4.496935,6.096981666666667,2.73572,2.064920888888889,3.05534,3.2826,3.50592,5.46045,2.23103,2.0861266666666665,2.71809,3.069325,2.9276033333333333,6.847002,1.4575125,4.821558333333334,4.821558333333334,3.34177,3.914341666666667,3.144855,2.468496666666667,4.64213,4.409409,2.171094,4.067125,3.88471,3.470718333333333,3.001455,2.8031,5.8369116666666665,3.33741,5.10405,3.14185,4.63115,4.15274,3.78567,2.9834133333333335,2.00629,2.85855,3.760365,2.974305,3.3783499999999997,3.144645,5.817983333333333,2.472355,1.6223725,3.042205833333333,2.35906,3.776155,2.58382,0.865635,3.2065,4.08247,4.00076,6.0182075,3.04604,3.03246,3.0009366666666666,3.0009366666666666,3.9258550000000003,3.764505,3.67199,2.033725,5.5301675,2.1685925,4.415495,3.48048,8.18907,2.84885,1.39126,3.299445,4.652795,0.57098375,3.939995,3.243645,2.920665,2.87141,4.05863,2.28662,2.44536,9.450205,3.508945,2.769535,1.3581349999999999,3.666735,2.598045,2.29834625,4.077135,5.2514925,1.6168275,1.1608266666666667,0.9106266666666666,4.260005,4.00326,3.54036,3.1860325,3.1860325,1.5755875,2.377905,2.9950580555555555,0.8552855555555555,3.01736,1.1294425,1.5991825,3.131005,3.29736,2.740375,2.64446,2.3691283333333333,4.411005,3.621255,3.33663,2.885185,2.694335,4.19954,6.84567,4.091925,0.77809875,2.539194,8.80182,4.565485,4.26785,0.9998475,4.82222,1.363075,3.4908574999999997,3.4908574999999997,3.736545,8.168435,0.788291111111111,4.565435,4.37991,2.42725,4.311382500000001,3.610025,2.1328,9.894450666666666,1.6839525,2.4382066666666664,3.249585,1.7604033333333333,4.059614416666666,2.847565,3.112575,3.1679513333333333,2.675635,2.822905,1.1164816666666666,7.03561,3.86836,3.689545,3.764535,1.83604,2.98128,3.7971916666666665,3.673935,0.5889315384615385,3.74538,4.031325,4.48502,2.1078275,1.322818,3.997545,4.15927,8.05447,0.6798638461538461,1.20751,1.20751,1.7231233333333333,1.4060433333333335,1.506672,1.8936533333333332,4.626805,1.27288,0.8961828571428571,4.0522675,3.460805,1.2670675,3.310935,4.68416,3.177765,0.76091,1.719895,9.088474999999999,3.903355,3.244015,3.036525,1.748085,2.5365733333333336,2.524655,4.465565,4.299725,3.90956,0.8915628571428572,1.4057840000000001,0.888185,4.2025625,4.41957,4.058035,0.8552855555555555,1.677578,3.696345,2.3374078571428574,4.929436666666667,1.11132,4.893745,0.6421966666666666,0.6421966666666666,0.6421966666666666,9.34561,3.992355,1.1294425,3.828355,4.7433,2.86976,2.994965,4.614795833333334,2.815595,1.8359283333333334,2.0954266666666665,0.76091,1.6265450000000001,0.4988666666666666,0.80164,1.4280633333333332,3.8848,3.72031,1.96797,7.290183333333333,4.9255825,0.6047488888888889,6.13965,4.866786666666666,3.33259,4.52493,7.883179,3.706182678571429,4.9255825,4.35171775,2.255333333333333,3.96234,3.706695,7.198715,3.294845,0.445231,1.460172,3.97603,1.795204,1.1608266666666667,3.87616,2.3964233333333333,1.75566,3.24221,1.69457,4.477735,4.327375,4.026365,4.75555,6.10961,2.73936,3.661275,1.335162,2.268995,3.481895,3.361375,2.171094,3.914625,2.57312,5.02935,2.98334,2.49513,3.3569699999999996,1.634264,3.520845,0.8552855555555555,2.06363775,0.9106266666666666,1.548935,3.527225,1.4575125,1.4280633333333332,1.951865,3.041545,7.42455,0.8915628571428572,0.9998475,1.156064,3.613245,3.67515,1.156064,4.016655,2.268995,0.57098375,0.8552855555555555,1.7231233333333333,1.335162,0.46897785714285717,1.699202,4.252997333333333,2.42725,1.246235,2.97671,1.2985875,1.6839525,2.6057566666666663,2.0954266666666665,4.51229,2.6057566666666663,0.865635,2.695965,2.041545,0.08106999999999999,0.08106999999999999,0.08106999999999999,0.08106999999999999,0.08106999999999999,3.323513333333333,2.711263333333333,2.7501866666666666,2.7178833333333334,4.69527,4.39522,1.682302,3.84044,3.608645,2.222105,5.06021,2.779655,2.587605,2.48926,2.75269,4.426935,8.033205,2.2181275,1.9920600000000002,2.8083207142857143,0.8927557142857143,1.4272633333333333,2.491216666666667,2.02465,1.504535,2.825583333333333,2.1951,2.9045533333333338,2.5416466666666664,2.57727,3.729925,3.340195,2.4347533333333335,1.295598,3.613665,3.67416,1.5778833333333333,1.278658,1.278658,1.278658,3.49637,2.65917,1.10112,2.0999833333333333,1.3367514285714286,4.340675,1.5012766666666666,6.2445900000000005,3.1844725,2.5554900000000003,3.190536,3.190536,5.187136666666667,3.0712,4.367815,4.67737,2.1060975,2.9817666666666667 +GSM1946771,1.0,1.931415,1.931415,1.5643799999999999,5.03165,4.946955,2.664915,1.6090099999999998,8.741573897058824,4.705595,3.211233333333333,2.204145,2.216775,3.103,4.62804,1.9556360000000002,1.406304,5.04405,2.35112,2.4344575,5.52645,5.227973333333333,4.05116,2.666985,2.00978,4.1237,4.83965,4.27509,0.8036599999999999,1.6254780555555555,2.0591255555555557,2.474105,2.4517175,1.3217457142857143,0.7130958333333334,3.2220657142857143,1.50278,1.752705,1.279325,2.1447975,1.039945,1.176555,1.110732,1.561202,0.8982559999999999,0.952774,0.7727280000000001,1.3556642857142855,1.63808,1.815888,1.550346,2.39316,1.774514,18.025394833333333,0.3722746666666667,0.842846,1.456498,2.02912,1.745946,2.17976,1.0569942857142858,1.0569942857142858,1.0569942857142858,1.1297216666666667,1.115944,4.86817625,1.1631625,2.467555,2.122535,2.6445,1.02484,2.3459575,2.528475,2.233565,1.6452225,1.8749475,1.485305,1.647695,2.3976866666666665,4.129155,4.906785,4.785125,1.5665133333333332,4.88493,4.681663333333333,4.335875,4.30309,1.09523,7.49061,0.590344375,0.590344375,2.2820375,1.1462885714285715,16.788249999999998,5.09745,5.3607,5.13815,4.252195,4.156465,4.86126,0.49517888888888895,2.1693616666666666,1.53123,2.4576775,4.799545,4.362025,1.2974375,2.977456666666667,2.57789,2.7139666666666664,3.1386033333333336,3.289005,5.21285,2.8879449999999998,4.95198,3.1244866666666664,0.7257918181818183,1.631384,2.5253,4.588535,3.79732,0.511836875,3.478475,3.79503,0.8419925,3.879255,1.8429089610389608,2.09809,2.5466,2.03536,3.86153,5.3724,3.34983,2.7249966666666663,3.3607,3.0518533333333333,3.877895,2.9442233333333334,5.75175,3.423235,4.29777,3.637085,2.422065,3.475885,2.38747,6.943826666666666,3.66241,3.444115,3.904425,3.229535,4.89753,0.7429188888888889,9.532625952380952,3.64734,2.124843333333333,2.060243333333333,3.489433333333333,2.21625,4.402595,5.69145,2.1137525,4.835303333333333,2.654025,5.40335,2.1137525,2.6709300000000002,4.794635,5.244823333333334,4.9449,7.866271666666667,3.25363,4.676185,2.874735,5.5824,4.676195,1.4044083333333335,7.9711,4.86229,3.795005,3.6922,3.50274,3.42566,2.27413,6.20343,2.26112,3.572005,4.24481,4.77432,4.78947,4.345455,1.3347683333333331,2.71457,2.91729,1.87665,1.87665,5.819803476190476,3.002015,1.93428,4.393725,4.60475,2.876495,1.4266033333333334,1.0208822222222222,6.79775,2.87305,6.8167,3.867985,4.754825,3.62772,2.93699,3.794535,3.64932,3.75809,4.220705,6.27545,2.71629,3.61971,8.971816666666665,4.87309,3.4591666666666665,3.3706666666666667,3.0033600000000003,4.091233333333333,4.3072574999999995,1.7022275,2.7230666666666665,2.369946666666667,1.8284500000000001,1.6710733333333332,2.5787833333333334,1.7158475,2.4845425,3.0131933333333336,2.95757,2.47747,2.9746166666666665,4.681663333333333,3.502095,4.331625,3.573345,4.46911,1.357995,1.791715,2.932168857142857,2.17232,2.54553,3.1045700000000003,3.3803666666666667,2.0958200000000002,1.3850766666666667,2.6310966666666666,0.652922,1.7015766666666667,0.5395355555555555,0.5395355555555555,1.58327,3.26341,2.35046,1.3369533333333334,1.4261933333333332,0.3013853846153846,2.693243333333333,0.652922,1.1965700000000001,0.22371972972972973,1.4014466666666667,2.150755,3.5086666666666666,2.770293333333333,2.670616666666667,2.5262066666666665,2.3264533333333333,2.2792033333333332,2.5484133333333334,2.410093333333333,2.13433,2.64836,1.9188,2.63153,4.27475,0.8787366666666667,2.3911000000000002,2.5812166666666667,1.9870933333333334,3.5263566666666666,1.488514,2.5476966666666665,2.34303,4.2659,1.9535633333333333,7.06186238095238,1.6788857142857143,2.984693333333333,2.111185,2.15214,3.7815,1.85045,1.8340825,5.0502,2.7777600000000002,2.1659975,3.63408,4.140295,4.33946,3.673995,2.350225,3.420135,5.584131333333334,3.971395,3.716445,3.897815,4.61795,3.36391,4.812725,3.38054,0.864145,5.12465,1.3547933333333333,4.953495,3.689055,5.974346000000001,4.049985,4.078385,0.97899,2.11903,3.419655,4.01808,0.8433485714285714,1.3397147863247862,2.172317857142857,2.798552,5.1245425000000004,5.71419,2.1101775,3.570945,5.80995,0.3257085714285714,3.568155,2.252955,0.99909125,3.9336,2.028415,13.38664,1.19830375,2.171055,2.847766666666667,2.363545,2.0204155263157895,4.68065552631579,0.3644305263157895,1.68046,3.1426533333333335,0.9749025,3.2330566666666667,0.913872857142857,5.5668,3.834955,1.98358,5.9412,5.2363,2.380025,1.1875971428571428,4.540216666666667,5.1012,4.319955,0.9029945454545455,8.447756666666667,3.019856666666667,4.56007,2.57595,2.52145,4.986155,2.4449833333333335,3.001333333333333,2.226106666666667,2.4595833333333332,3.158095,2.95241,0.352515625,3.819295,3.815955,3.74181,3.84185,4.44385,6.2483439999999995,4.026865,1.61149,5.6368,4.975015,4.78704,4.909825,1.2969766666666667,3.02197,3.2712833333333333,2.6750066666666665,16.73348,4.01501,3.93941,4.256235,4.52965,2.45013,5.044276527777777,1.8830475,0.7318855555555556,2.506175,3.1316,4.234095,3.840805,6.598578333333333,3.046003333333333,2.13883,2.04444,3.511433333333333,4.641505,2.3000275,0.40033382440476184,2.6189215217391304,1.936015,1.08615,0.5197820852743271,0.6392303461438923,0.40033382440476184,0.40033382440476184,0.40033382440476184,1.0984925,1.605435,0.871785,1.4067475,4.618532500000001,0.21602000000000002,11.484027656926406,3.01838,2.87425,4.205655,4.53638,4.003235,2.09773,5.0891,4.1104140000000005,4.68506,3.524645,0.7090784615384614,3.28311,3.8355174358974358,0.59415,3.217015,2.8637833333333336,5.13945,0.7938618181818182,1.80423,4.273195,3.377965,2.16796,1.7733299999999999,1.6009233333333333,3.7052666666666667,3.780325,2.954285,2.89308,5.44065,5.6094,4.420855,3.20064,3.291507,6.256408333333333,3.6087333333333333,5.8616,0.41537142857142856,3.278783333333333,4.463865,1.9429100000000001,2.618485,2.9288125000000003,5.637378333333333,0.6464774999999999,2.13332,4.475505,4.11697,1.064417142857143,4.422285,4.14038,5.3106,3.5902666666666665,4.532485,3.448015,4.26406,1.24519,4.707755,2.703466666666667,5.11315,4.10997,4.5811,5.3501,4.366515,2.691295,5.14214,2.47466,2.822555,3.269386666666667,2.8961333333333332,3.0057066666666667,2.24682,1.801426,1.4833299999999998,1.8878466666666667,0.7975128571428571,1.6979766666666667,2.3646066666666665,2.0164633333333333,3.4333333333333336,3.4034666666666666,3.0033966666666667,0.9630122222222222,5.1489,3.4792666666666663,5.491887083333333,2.7022070833333336,3.02642,3.6679666666666666,1.9128666666666667,1.9128666666666667,3.0857311688311686,3.0857311688311686,4.440786168831169,0.5015657142857143,1.7078133333333334,2.5926466666666665,3.6666666666666665,2.1929773809523807,2.1929773809523807,2.1929773809523807,7.58968130952381,4.408577619047619,0.9079336363636364,4.255985,4.950935,2.28149,4.71024,3.1938,2.179015,5.52405,3.1266933333333333,3.1592066666666665,1.13307125,1.91752,3.2876766666666666,3.0578800000000004,2.663746666666667,5.56235,3.9563,3.6952,4.7277,1.8238833333333335,2.492366666666667,2.69349,1.0055288888888887,2.1076366666666666,4.226489333333333,7.938965,1.460265,2.847115,4.656755,2.13072,1.904125,1.904125,1.0538725,5.17115,7.971615,4.468475,6.10353,4.87048,1.95115,4.375435,3.828825,5.09605,4.419406666666666,0.3459015789473684,2.82026,2.68338,4.44491,3.96709,1.845674,1.9561375,2.689,4.699655,3.8813,3.380775,2.366735,1.789768,6.68357,4.63583,5.09075,3.859035,4.08465,4.484645,4.906215,4.290675,3.426005,1.936245,1.230967142857143,2.78886,3.844025,4.058525,5.3622499999999995,5.8067899999999995,2.235565,1.7255399999999999,2.5836133333333335,2.7207933333333334,2.9335533333333337,0.6509164285714286,2.20321,3.56491,1.13007,4.8187,3.211545,6.0553325000000005,1.2289722727272727,1.2289722727272727,4.09675,3.726125,3.724005,5.394,2.7198466666666667,2.2722166666666666,3.937285,4.35815,2.1085525,3.4519,2.8216366666666666,4.068455,3.5107675,3.375075,4.98113,0.9822433333333334,2.509725,4.493045,4.51168,3.234665,2.4342466666666667,3.946915,0.7449022222222221,0.7449022222222221,0.7449022222222221,0.7449022222222221,1.5759222222222222,3.9028175,3.9028175,1.6473266666666666,7.78731,3.779885,4.63161,3.4536333333333338,2.7173,4.92188,4.04877,4.9348,5.33725,1.70167,4.480475,4.245625,3.231645,4.27638,3.250795,2.50697,4.819825,1.871095,4.637905,1.63224,3.4977633333333333,2.859315,1.798925,1.157705,2.679875,4.415025,1.667126,0.8354977777777778,4.11654,1.2908375,4.968135333333333,5.2447,1.2982200000000002,3.67372,0.7750288888888889,2.574683333333333,3.00468,2.4999866666666666,2.43488,4.692575,3.043093333333333,4.468825,5.07195,4.50914,4.537465,2.1981275,1.2969471428571429,3.995795,5.37475,1.4993975,1.4993975,4.172315,0.2683726666666667,2.2234066666666665,0.2683726666666667,0.2683726666666667,0.2683726666666667,0.2683726666666667,4.753185,2.6759299999999997,2.871435,3.50671,3.25074,4.560045,2.6682666666666663,0.91537,0.91537,0.9333583333333334,0.9333583333333334,3.68913,1.93288,3.91385,1.8256078571428571,1.8256078571428571,4.83467,0.5966435714285714,2.067985,7.580204999999999,5.10545,3.180575,3.44708,0.90712875,2.063365,2.0343875,5.05,4.36276,4.477925,3.768565,1.2877242857142857,2.554555,1.7700775,7.28661,1.7496,4.86607,4.71752,2.553185,3.89345,6.0423,7.7371799999999995,4.018525,5.805,5.7528,2.28329,3.172175,2.22484,2.434365,1.871715,3.71257,3.66541,5.9601516666666665,6.55854,4.60777,1.0816466666666666,1.829485,4.61231,4.395015,2.17928,5.03155,5.05345,4.580533333333333,1.8827966666666667,3.5015666666666667,1.5626766666666667,6.287706666666667,2.604553333333333,2.36144,2.2057166666666665,2.747705,3.3371,3.6166,3.936733333333333,3.03819,3.4765333333333337,1.529976,3.759265,3.18262,3.160755,0.3293975,2.952885,4.310605,2.67285,5.73665,4.93843,5.262,6.561710999999999,5.4828,2.2213833333333333,3.973905,5.28805,1.5954533333333334,5.3239,6.1651,5.05455,4.632785,3.37066,5.5627,5.01845,3.90021,5.75034,7.5658475,3.985625,1.269385,1.619695,2.841375,1.9709759999999998,4.60471,4.25869,5.4666125,2.4968566666666665,2.498276666666667,2.67391,2.4572766666666666,2.356873333333333,1.1125777777777777,0.5417005882352941,3.84934,3.92286,3.341333333333333,4.12388,2.80117,3.4092000000000002,5.486996666666666,3.1594599999999997,0.5979941176470589,3.684975,5.64455,1.7598175,1.6782219999999999,3.750035,3.491325,2.4968066666666666,4.1595,4.79327,2.6628333333333334,2.2606766666666664,2.2478366666666667,2.3433733333333335,2.61193,4.131325,5.0223691666666666,8.061555416666668,2.1770199999999997,5.3294,3.5892350000000004,5.7820583333333335,2.7501233333333333,3.299345,2.219425,2.4372066666666665,1.294015,1.294015,2.6539699999999997,2.3877200000000003,2.7136,4.007695,1.7977060000000002,2.184715,1.86791,0.717,4.47742,0.6600983333333333,1.05625125,3.37494,4.88904,4.1882,1.7138825,4.83504,2.90955,0.8683142857142857,4.1899,3.736804285714286,3.2273566666666667,2.36976,5.5109,0.30556206896551724,2.445813333333333,3.15197,1.47491,3.612735,5.8387,2.31183,1.3764399999999999,3.85697,3.74141,2.847766666666667,2.847766666666667,3.55856,4.17063,4.879745,5.130886666666667,4.97048,0.9771955555555556,2.7339266666666666,2.6981966666666666,4.429595,5.32085,5.9591,5.14885,4.468633333333334,3.8651,3.7808666666666664,3.4158000000000004,3.7466333333333335,3.1959666666666666,3.0135433333333332,0.7029171428571429,2.488325,2.4297875,3.528425,3.0924666666666667,3.11088,0.7741566666666667,2.42378,3.5941145,4.87374,6.1638,3.97516,2.262675,2.262675,0.768483,3.201835,4.439755,4.18075,5.474405714285714,3.10195,5.0795,0.5894145454545454,3.4503,4.02499,4.162805,3.4401433333333333,0.9849614285714285,4.2075,3.9948,4.991805,3.803095,4.815355,2.82351,4.27567,1.8054775,0.9677157142857142,2.7772799999999997,5.0319,4.19018,3.11121,1.4972583333333331,3.993835,2.49062,2.736275,2.7825831111111112,3.12079,4.35372,2.8266833333333334,1.765514,3.404833333333333,1.4280217857142856,2.9395733333333336,2.5956966666666665,2.231975,3.0223366666666664,2.95829,2.5337733333333334,2.6614366666666665,3.725115,2.9622233333333337,3.5656533333333327,2.23861,1.68628,4.323285,3.068486666666667,2.4933833333333335,3.5656533333333327,2.29591,0.8440554545454546,2.4799675,0.9938888888888889,2.2496275,1.56268,0.9462818181818182,1.8280675,2.08548,2.6830232499999997,2.6126,4.760975,1.5602875,4.106235,3.02304,1.552514,2.38915,3.1533333333333338,1.51136,2.8293366666666664,2.9247433333333333,2.2585,1.58244,1.84726,3.6867,2.46897,2.916698333333333,2.9559800000000003,3.370433333333333,3.9206,2.1404466666666666,4.467666666666667,3.4719333333333338,3.8176666666666663,3.5414666666666665,3.5660333333333334,3.745533333333333,2.0459533333333333,8.32319,4.80673,4.925735,3.13983,2.815305,1.959745,3.991225,1.7402840000000002,4.04515,4.57617,1.491506,2.4214433333333334,1.0896933333333334,2.5339566666666666,1.7211466666666666,2.340873333333333,4.8601366666666665,3.0510333333333333,3.520955,4.598645,0.8058875,1.56318,0.995045,3.60012,11.82997,4.3912,6.6011,1.9423575,5.33655,4.68273,2.4738475,5.36455,0.2769594117647059,0.8364628571428572,4.65461,4.74237,7.3524449999999995,2.336045,4.313585,5.4986,4.635665,4.666755,4.17302,4.34878,2.885785,5.332373333333334,4.57861,3.720995,3.19715,2.2703533333333334,1.8446833333333332,1.4204992291666667,2.4021133333333333,4.136385,5.2839,1.5767,8.87001,1.8309266666666666,2.7021758333333334,1.09226,1.09226,7.781859166666666,3.07027,2.56825,2.1749675,2.6988299999999996,2.1376766666666667,0.9973900000000001,3.401455,2.766173333333333,0.5916442857142857,1.7020133333333334,3.740866,3.740866,1.1259033333333333,2.44238,2.28249,2.8860116666666666,1.336765,1.7255833333333335,5.109532,2.7646033333333335,2.876075,1.203725,1.203725,4.46038,5.52595,4.799685,3.31993,4.039235,6.16489,2.841275,3.280366666666667,3.8262666666666667,3.85619,1.1560666666666666,3.385733333333333,2.4776875,3.791645,2.16572,4.67919,3.41033,4.1224,3.443105,5.561154,1.1377666666666668,2.2702425,1.760665,3.563455,4.944342499999999,3.899555,3.740265,4.50415,4.1493,1.800535,4.347145,3.453145,3.74321,2.4090599999999998,0.81743125,3.4534,4.56852,5.01185,1.1454066666666667,3.0194433333333333,3.3495000000000004,2.1541799999999998,1.8349836274509803,1.8349836274509803,1.2561683333333333,2.6408033333333334,1.06846,1.341366,4.91388,4.73728,0.5257095238095237,3.58961,3.4932,3.987905,5.5007,0.4103745,9.526485000000001,5.288,3.17059,4.154025,4.634905,5.598985,5.3378,6.8920175,0.7535454545454545,2.9565533333333334,5.49975,2.75766,1.9895175,1.9021000000000001,4.757825,5.41684375,2.5524880357142856,2.6472233333333333,3.526666666666667,1.7868925,4.918375,10.84105,8.96996375,4.0318,4.537935,3.080830833333333,3.04789,3.75472,1.8157039999999998,3.0096433333333334,3.60336,4.095785,5.2533,5.08374,6.622296666666666,2.711123333333333,4.16524,4.708155,5.288,5.77115,6.040876666666667,4.083075,6.44575,3.318465,2.862885,2.847595,5.8561,3.680145,5.81285,2.16914,3.309343333333333,3.38276,6.0251,4.132925,4.904995,1.42156,0.88944,2.71505,0.6403286666666667,4.64885,3.520355,3.427675,2.862,2.1037500000000002,2.92935,2.494775,3.0853079999999995,1.8960899999999998,3.0918900000000002,2.965075,2.3011825,2.535975,3.768782,1.2600966666666666,2.9114966666666664,5.26765,3.5942333333333334,1.0502775,2.751023333333333,3.6225941666666666,3.869685,1.5548,5.4852,5.58475,2.0679766666666666,2.7796366666666668,30.47874513355599,3.5145666666666666,1.70355,3.991233333333333,1.74376,2.5970199999999997,2.735203333333333,3.4703666666666666,1.888905,2.54255,2.4527175,3.5838134999999998,3.21475,2.694025,1.5013025,2.15196,2.8653,0.3812713636363636,1.10172,2.9643366666666666,1.7017520000000002,3.33436,1.5548,2.2243933333333334,26.033749999999998,5.124,4.131575,3.62538,2.667885,2.4611675,2.6965466666666664,2.330855,4.10529,5.787273000000001,5.82715,1.647898,2.05416,2.04504,2.6554933333333333,3.724619166666667,5.4273,4.58067,4.64826,0.19251787234042553,4.88668,5.1738075,3.78641,9.20754,1.08483,1.08483,3.0550266666666666,3.8208,6.1198,2.2474777777777777,1.134311111111111,5.3828,2.006585,4.363975,4.04519,3.55242,4.452745,3.90582,4.57851,2.98262,0.7222055555555555,3.138695,2.1611141666666667,4.42526,7.303319999999999,4.52063,2.1898966666666664,2.1898966666666664,6.6400275,5.1573,4.09552,6.16355,2.0331233333333336,5.828725,1.4741166666666665,1.3604033333333332,2.8547833333333332,1.9490333333333334,2.89452,2.784603333333333,3.742445,4.03554,4.56214,5.41385,2.37537,2.334545,1.8966225,2.840975,2.156415,2.029355,1.985635,5.0745075,1.819965,3.8918800000000005,2.3773566666666666,3.1677199999999996,2.7569700000000004,1.73503,1.5357714285714288,0.971077,2.67616,3.722633333333333,0.760202,4.59096,1.8496925,6.012560833333333,1.962705,1.6665475,1.4754975,1.51471,5.901228888888888,2.04446,3.205973333333333,3.1552399999999996,1.19350875,1.83634,4.969302,3.12692,2.5972033333333333,3.6892666666666667,2.8429266666666666,2.9441566666666668,1.2390864285714285,0.4069316666666667,0.4069316666666667,0.4069316666666667,0.4069316666666667,0.4069316666666667,4.282335,2.7798700000000003,2.364075,3.5691,1.3346133333333334,2.654036666666667,3.1978666666666666,2.7576433333333337,3.742165,2.91488,1.8546833333333332,3.01404,3.5277999999999996,2.2961675,1.932115,3.4311,2.645793333333333,2.8493600000000003,5.96675,2.5842966666666665,2.7119,2.5480466666666666,11.125813333333333,5.1716,4.93189,4.930625,4.289695,2.8415966666666663,5.06555,3.37033,2.71503,5.897661666666667,4.2488,3.21658,2.3038525,4.173595,5.024544000000001,3.97327,18.275403428571426,1.18081625,4.880675,0.8294477777777778,1.316175,2.906225,5.07225,4.096755,3.721855,1.4884633333333335,2.22409,4.21345,2.47772,4.64319,3.6199064285714284,2.53621,0.6107916666666667,2.7371133333333333,5.02265,2.49282,2.29694,2.24897,19.472544166666665,1.73137,1.2638875,2.685396666666667,0.31778346153846154,1.9590025,3.0616233333333334,1.8831833333333332,2.9628566666666667,2.6578,7.409444166666667,1.94363,2.707925,2.3550175,2.15267,1.6143233333333333,3.432866666666667,3.47539,3.08538,2.995426666666667,1.8949675,2.4986474999999997,3.2119138888888887,4.62333,0.41482749999999996,3.4105000000000003,2.9541033333333337,3.09772,2.104085,3.617355,3.37532,1.5955833333333331,2.2164733333333335,2.15647,2.130196666666667,1.7950799999999998,3.585135,3.24858,0.7593783333333333,3.19754,5.6308,4.6529,2.26808,2.26808,3.0711033333333333,5.06745,3.681215,3.270255,2.2879075,1.0205818181818183,4.161865,3.523115,5.8695,4.28374,2.359436,2.359436,1.7508875,3.722865,5.2051,4.02394,4.181895,3.6320333333333337,2.5183766666666667,4.431615,3.514285,4.14467,3.17333,2.743916666666667,4.7238066666666665,3.3282900000000004,2.5592166666666665,1.9371433333333332,3.713275,2.811525,1.5409966666666666,3.642345,4.434585,4.678835,2.6099366666666666,4.583655,4.442935,6.7779940000000005,4.13192,2.20378,4.96567,2.978585,7.3848199999999995,2.6902899999999996,1.3377166666666669,4.75471,3.4362666666666666,4.6356,0.5679057142857143,0.8281616666666666,3.740095,3.76372,2.1734863636363633,4.513085,2.6638,2.846205,10.73472,1.9264199999999998,1.25907,3.69126,2.5507,3.47411,5.0762,7.224226666666667,3.117496666666667,2.13102,3.06244,2.1101033333333334,3.4250333333333334,8.474959589490968,0.8528480952380952,1.02633,5.32475,0.443818,1.6467425,2.3954,3.044825,2.80965,2.3952825,3.7971,2.4732225,14.19264,5.0149574999999995,2.3690475,2.3690475,4.5041,0.8113166666666666,6.4906500000000005,3.924315,3.947075,5.395716666666667,3.41578,4.792805,1.443745,2.69104,2.71234,2.697485,2.98164,2.61049,3.222455,3.49455,3.56625,2.970965,2.95051,4.198405,4.66422,4.70318,2.939173333333333,3.20689,5.090708333333333,4.641495,19.30543523809524,13.752354761904762,3.0622578571428574,0.7191074999999999,1.5092571428571429,4.575385,3.318915,3.150705256410257,2.31017,0.8436433333333333,0.7132925,0.6928957142857143,2.09312,1.651556,5.371633333333333,3.4134666666666664,0.7144027272727272,3.201435,2.257275,2.0750825,2.11638,6.07983,1.4822359999999999,4.86677,3.23552,3.03708,2.359145,2.563286666666667,2.52435,0.6996081818181819,2.83905,2.7490433333333333,3.977926666666667,3.074666666666667,7.63733125,3.516675,3.239815,2.2209875,4.52079,7.642994999999999,2.141525,2.53025,2.5053,1.62942,2.588825,2.3944875,2.715475,0.9502980000000001,1.2682625,0.9450625,2.75154,4.042475,6.10575,5.786,3.00366,2.302025,2.8838,3.7854666666666668,8.227936666666666,1.22745,0.40402,2.845055,1.9935833333333333,1.58719,3.4795680000000004,1.222204,2.019814,4.424643333333334,3.161027333333333,1.2177499999999999,1.8411266666666668,3.8967566666666666,3.37365,4.60608,4.973345,2.4235825,5.64985,4.06279,0.8354615384615385,5.4118,4.122285,4.4394020833333325,3.6978666666666666,2.272385,1.3281560000000001,1.3604325,3.370165,2.745325,3.150375,4.409575,2.727435,2.59924,3.124045,3.775335,4.969355,2.547265,2.58213,4.189785,5.7987,0.62502875,4.44878,1.8609275,3.49899,3.9714333333333336,2.2315375,3.07496,2.222505,1.92053,2.718595,2.3154725000000003,2.0156300000000003,5.74095,3.63199,1.3261842857142856,7.09496,1.1122933333333334,3.79938,1.69644,4.756695,4.25941,2.452733333333333,3.44486,3.962955,10.1264,2.955135,3.583285,3.8314,3.563535,1.6734925,7.67706,3.678165,4.63297,1.92422,4.169155,2.985025,1.21379625,2.0856000000000003,3.960525,2.170835,4.181375,4.6533525000000004,4.262405,4.55931,2.290735,5.5742,4.031925,3.2680933333333333,2.4466466666666666,1.766892,4.7527,6.2704,4.95956,4.542215,2.99427,2.3089025,4.099695,3.305795,1.1529895054945056,4.02368,4.765067500000001,3.94389,2.706035,3.503965,0.5144228571428572,0.5144228571428572,5.48145,4.520225,5.76185,2.262355,3.689015,5.07235,0.820116,4.354905,5.02665,4.912685,4.90398,4.31591,1.818625,3.112715,2.1820025,4.49267,0.6960625,4.14911,4.646685,2.683155,2.86692,4.88969,2.262895,3.070555,59.7008665021645,3.228465,2.516,1.6762225,3.22333,3.8731,0.7632575,0.98096,2.59165,2.59165,1.27579,3.1834,2.50629,4.014275,7.72074,2.5230166666666665,1.1736671428571428,1.4465700000000001,2.723793333333333,3.9877908333333334,0.9001939999999999,1.811395,1.297504,2.03897,4.48672,4.236825,3.02407,22.92268974025974,4.5929,3.806645,3.130085,2.0416966666666667,2.879,3.08102,2.47393,5.23289,1.679138,4.18275,3.2690584960317457,6.094959027777778,1.90463,2.59896,1.80901,4.308365,2.41132,2.401835,2.0586966666666666,4.018077777777778,4.14158,3.36526,4.38982,4.984885,2.49793,3.534265,2.915545,2.681995,2.821317777777778,2.237555,1.9598425,3.944235,1.1506833333333333,3.820825,4.637845,2.53209,4.8776,4.78873,5.000713333333334,2.4220333333333333,2.38473,2.59305,2.74415,4.00192,3.377285,4.962565,0.6971885714285715,4.46849,2.6661,3.75121,2.4315275,1.8070540000000002,4.265725,1.2762222222222224,2.903965,4.320305,1.223826,3.606895,3.392915,4.87459,6.3660225,2.099915,2.733655,2.600776666666667,3.8714666666666666,2.0516366666666666,2.5898326666666667,3.498333333333333,2.32682,2.43474,1.4767433333333333,2.0741575,2.0741575,1.8773499999999999,2.05599,1.8139166666666666,2.8709466666666668,3.65046,5.43055,2.88915,1.64335,4.7124,3.64174,3.49864,4.137855,1.92212,1.89694,4.68565,1.770925,5.793411666666667,4.54806,3.56893,2.40206,3.6601,3.62159,2.99952,3.45381,0.14393448979591836,2.6794733333333336,7.624090000000001,1.549166,3.3454,4.23822,0.9934228571428572,1.1880866666666667,1.88258,4.276975,3.63071,6.8559600000000005,3.39281,3.6071,2.98587,2.659115,3.645585,3.26814,3.87541,3.25763,2.842836666666667,5.2719,4.41297,4.732805,2.4527266666666665,1.9316175,3.363545,4.513935,2.71566,3.291095,2.16135,4.36509,4.50656,3.63303,2.61083,4.22833,4.916185,2.667125,4.346225,4.422035,3.500965,4.51091,3.4736,2.62109,7.18033,4.82926,5.98245,5.03025,3.550495,5.65997,4.08335,3.322145,1.222728,6.7427,2.468445,5.11555,4.256945,4.07875,2.9569433333333333,2.0010033333333332,2.20501,2.32437,0.9738070000000001,3.421,3.3497,2.91473,2.3007966666666664,3.85992,4.527,2.775586666666667,0.5395166666666666,4.43324,4.392095,4.705195,5.29635,3.47741,4.413275,5.10825,4.67262,1.4232555555555555,0.9764538461538461,2.679956666666667,5.50495,5.8202,0.47816625,2.822535,2.5067166666666667,3.221475,4.543725,3.9624,1.8940025,4.048255,3.191275,4.605815,2.93054,6.04015,4.90001,7.0283175,0.5647558333333333,4.4188,0.781636,2.24852,4.1254333333333335,3.3939,1.23993,2.2904,4.419795,4.003715,4.256035,2.2363766666666667,2.2279175,2.71502,5.05715,4.267535,3.894855,1.6532240000000002,1.2323997142857144,5.9825,2.40533,7.652925,4.5517,3.55537,2.274,1.55847,4.36692,4.72726,1.70386,2.38096,2.4713225,2.6794733333333336,6.9239033333333335,3.163333333333333,2.877753333333333,4.464294166666667,3.28686,1.9283966666666668,3.458265,7.165732500000001,4.26019,5.57305,0.6464263636363636,3.94709,4.517315,4.760421785714286,4.259505,4.102405,2.97579,2.66956,3.022255,2.88014,3.48407,1.746134,6.217179,4.5977,4.97209,3.729555,3.35016,3.2163333333333335,2.25115,1.2457075,1.574675,2.712105,2.433875,1.0663933333333333,2.61585,6.4363,5.81475,3.47448,4.559505,16.179117142857145,4.65974,4.455165,3.98753,0.6992266666666667,5.61145,4.774685,4.917675,4.98908,5.73005,2.48513,3.51187,3.310235,1.488164,3.03697,4.67902,2.9018566666666668,1.4685679999999999,4.14947,4.860045,3.918875,5.76165,4.89654,6.0382,4.75576,2.8687466666666666,4.29715,4.35497,2.595105,3.02664,2.8927566666666666,1.7626429166666666,5.1365,2.6777189285714287,2.0286566666666666,3.942325,2.735835,4.415315,4.323285,2.02909,2.812105,4.464015,3.53422,4.68571,4.38862,4.397885,5.158501,3.61651,5.30525,2.5813233333333336,3.870685,4.437745,1.497386,4.695755,1.0613616666666668,4.345585,3.77582,1.1065028571428572,3.554045,1.99612,7.031145,2.762477761904762,2.762477761904762,2.762477761904762,0.8952749999999999,1.1856083333333334,1.827335,3.69226,6.44677,3.5042255555555553,1.937065,2.4516375,2.08321,3.702565,2.33416,0.37762461538461534,1.60082,2.1989675,3.46432,1.81146,3.060965,2.25075,2.07664,3.838945,2.85055,4.11881,3.17226,1.89629,6.62888,1.983165,4.261815,4.00872,6.194488333333333,1.5745333333333333,3.448935,3.7262,3.837315,4.461435,2.84352,2.070625,3.796865,6.203117333333333,1.985765,3.3794,3.07477,2.2024275,4.87471,4.59196,2.8429800000000003,2.31381,3.6774475,6.197541428571428,5.4557,2.96623,2.37229,2.60031,2.81584,3.79184,3.93509,1.27877,2.75209,4.69254,0.7667325,3.93508,3.883085,4.072015,3.99683,2.329215,3.89601,1.9183,4.551445,8.204806666666666,4.868065,3.342505,4.365305,0.9723525,4.559315,2.29665,4.22222,5.559775,2.99492,3.878845,12.052435,4.766135,3.545235,1.4489825,0.6981558333333333,2.787105,3.72989,3.36834,3.596695,2.20175,3.033666666666667,2.4392666666666667,1.1313033333333333,1.1313033333333333,1.8815166666666665,2.3509933333333333,3.800933333333333,2.40015,3.7361,2.5896266666666667,2.7789866666666665,2.9682766666666667,1.5029566666666667,2.2890133333333336,2.064583333333333,2.0966400000000003,1.4369925,2.4512899999999997,0.7822616666666667,10.072216249999999,0.7822616666666667,3.437,2.112,2.7110566666666664,5.02005,4.22166,4.710505,4.7301,2.47674,2.8175033333333332,3.265935333333333,3.2385566666666663,3.775866666666667,3.3551,2.85683,3.251416666666667,1.6118866666666667,5.35935,6.6204,2.88684,3.4578666666666664,3.0673666666666666,3.058246666666667,3.13487,1.3217457142857143,3.3217700000000003,3.187556666666667,4.231665,6.10265,4.38296,2.8136266666666665,3.6956666666666664,3.25302,4.470703333333333,4.198375,2.657833333333333,4.150985,3.3100466666666666,3.3663666666666665,4.47909,3.14137,4.234555,6.332231666666667,3.11927,2.2760633333333335,1.7218533333333335,1.5215133333333333,5.074273333333334,3.4101966666666663,2.6058833333333333,2.0940066666666666,2.07608,4.699455,3.86161,3.47862,3.0949033333333333,3.4439333333333333,3.6528333333333336,3.7949,4.062033333333333,3.5924666666666667,0.5323775,4.1166,2.5376166666666666,2.529733333333333,3.4933,4.641965,5.29235,5.8056,2.67012,4.7130366666666665,1.1545316666666667,2.62256,2.62256,4.375815,3.45905,3.70176,3.550145,1.742865,2.987875,3.94184,0.9370842857142857,3.9840343333333332,2.9622499523809527,1.8749656666666668,0.354549,3.59178,3.50657,6.6097850000000005,3.28734,5.7551,3.28364,3.89621,4.11066,1.74373625,3.41788,5.20925,3.45946,3.2328533333333334,3.372866666666667,5.8856725,2.1508925,1.00465,1.9233733333333334,1.7673833333333333,5.16085,2.4149433333333334,2.333626666666667,1.91747,4.658135,3.98138,4.44146,0.706107,4.38588,4.11998,2.79303,2.672523333333333,2.91305,3.398875,3.8799366666666666,1.5137166666666666,0.6746157894736843,0.8308357142857143,3.7604333333333333,4.49124,5.958683333333333,4.832685,5.13585,5.4494,1.4506428571428571,3.9714333333333336,2.1085433333333334,0.981375,5.5525,6.0506,3.60132,4.85594,3.959925,6.937673333333334,3.994566666666667,6.650191666666666,3.715495,2.700219166666667,6.8613,9.78506785897436,2.73033,0.709176,4.08115,4.272315,2.15442,6.10855,4.813305,3.83753,2.8872066666666663,2.8872066666666663,5.00405,3.72035,4.129875,5.2238,4.065832142857143,2.569724285714286,1.17262625,5.87535,2.49332,5.917665,4.405695,5.44155,3.424305,2.22958,4.68374,4.92254,3.3546,3.903695,4.576945,28.872699880952382,2.4673375,2.5497,2.308525,1.5360416666666667,2.63603,1.395875714285714,3.034026666666667,2.9768966666666667,3.5078666666666667,3.3974333333333333,0.8429615384615385,3.2775833333333337,4.998955,3.93295,3.378766666666667,4.03928,6.1250800000000005,5.1944,5.0122,4.49187,4.6382666666666665,4.695655,3.6932666666666667,1.70651,1.0189083333333333,1.3706933333333333,3.4417333333333335,1.5535233333333334,3.4339999999999997,2.366913333333333,2.2791,1.8406366666666667,2.626735,1.996505,2.02466,2.961105,4.106265,3.63871,4.53656,1.3901059999999998,4.317833333333334,2.49148,4.121315,2.3783,2.53728,3.56631,1.4549733333333332,4.33177,6.356091666666667,2.83803,3.51982,3.969155,2.65245,3.0928116666666665,3.671466666666667,4.592785,5.1759,0.3160040604890605,0.3160040604890605,5.61925,5.51,4.630025,2.86927,5.26955,4.679655,0.67868,4.45136,4.91848,3.619635,6.33605,4.66893,7.52329,14.279756666666668,13.11980705128205,4.411275,4.144645,2.7050533333333333,0.6764753846153847,2.6431366666666665,5.6479,1.2759216666666666,4.697755,3.7166,2.7911066666666664,2.1175366666666666,1.87106,4.9406,4.040745,9.561056428571428,4.909325,3.964655,7.336290909090909,3.36172,2.8364133333333332,1.47616,5.056333333333333,1.86517,2.5174766666666666,2.665016666666667,0.325659375,2.978345,3.785115,4.787654166666666,0.877074,1.4788583333333334,4.04061,0.595669,0.595669,3.13897,3.0832766666666664,3.5871999999999997,5.027,4.70872,5.64505,3.591025,4.0408,2.90217,3.1387300000000002,2.76215,0.7070875,2.983826666666667,2.87328,2.92814,6.67002,2.724325,8.078025,2.732675,3.862965,3.04361,2.3387425,2.948225,2.91295,1.64651,2.44289,2.1030725,3.69906,2.626875,3.903225,2.84644,3.8040158333333336,3.8040158333333336,2.628540833333333,2.628540833333333,8.8751415,2.56903,0.7806230000000001,2.5809266666666666,2.4910166666666664,2.4876866666666664,3.903225,2.10894,1.9593440000000002,1.485308,4.219615,4.55934,1.5410675,4.536465,4.04522,6.690016666666667,7.4072949999999995,2.80537,4.75226,8.1647,4.965325,4.0357,2.8424933333333335,4.343905,4.083726666666667,4.506885,5.927993333333333,8.533118,3.57763,3.950465,1.2801316666666667,4.51451,4.063717333333333,3.74917,3.6605091666666665,4.616135,2.58696,2.814666666666667,7.28305,3.588395,1.35352,6.38893,3.96392,3.197233333333333,5.1621,3.197233333333333,4.014605,4.07083,5.7342,1.0499757142857142,3.9529766666666672,4.798945,3.93694,1.3844733333333332,1.7408325,4.86832,4.60391,2.73873,7.259938333333334,4.225225,3.855555,4.345945,4.636654999999999,1.540375,4.651995,2.847295,3.73622,4.25959,4.52583,4.880575,2.904395,4.896655,5.14575,2.2823510000000002,1.7977275,3.7437666666666662,3.623533333333333,3.3763666666666663,2.9920766666666663,3.8287,2.9868233333333336,4.732755,3.25991,3.525275,3.008095,1.8470666666666666,3.573166666666667,2.15795,3.048855,2.976115,2.74556,0.6960625,2.256965,1.7717266666666667,3.17218,2.13604,3.732543,3.919765,1.453258,3.544705,4.426865,0.78108,1.3158633333333334,3.59285,3.716825,3.8211,1.98263,1.8708866666666666,3.478935,2.4674158333333334,1.6694666666666667,2.930945,1.919005,1.165764,1.359285,6.061355,3.70718,2.28764,2.381455,2.38863,3.75412,0.83762875,0.32622214285714285,0.9171271428571428,4.75244,2.1642984285714286,4.616055,2.2722525,1.9068878571428574,3.154026142857143,1.2471382857142856,1.0565458571428572,0.688658,0.5814742857142857,2.8604308333333335,6.6375,3.07732,3.63928,0.32008678571428567,3.60897,19.470051952380953,2.99652,7.5593486695804195,1.06463375,1.06463375,1.06463375,1.06463375,5.82603,4.08013,3.23031,2.2212533333333333,3.297615,3.462925,4.33253,4.29699,3.42022,4.685255,4.26708,4.57057,3.7020860000000004,4.177845,4.88629,4.65458,4.963435,3.577875,4.54125,2.538726666666667,4.25454,3.34545,4.042065,4.06575,4.455125,3.2125566666666665,2.619875,2.3985133333333333,4.52559,1.3190164285714285,3.60596,3.18314,3.7944513333333334,4.262405,3.81472,3.004785,2.795245,5.23445,3.76361,3.1046,5.28375,5.1958,3.26661,4.0653,1.800742,1.800742,1.749345,4.731095,4.07895,6.389945,5.46195,3.9290716666666667,6.53105,4.45039,2.1941825,9.269105,4.703665,6.991275,4.26307,2.7313766666666663,3.93365,0.25269827586206894,0.91222,4.177412666666666,3.878015,5.112,3.29243,5.848326666666667,5.22255,0.5529885714285714,2.741605,0.517924,1.6813242857142856,3.19121,2.196605,4.22541,3.611845,3.17666,3.333065,3.481315,3.65935,3.366905,3.596495,4.450895,2.270925,1.6813242857142856,2.897115,1.9866575,3.55408,2.329145,4.145115,3.321435,1.6734925,4.327265,4.434375,1.33058,5.42045,4.960915,4.109785,2.849016666666667,3.1874000000000002,4.401525,1.7265499999999998,1.42271,2.3361733333333334,2.6970833333333335,2.5681533333333335,2.173833333333333,5.18555,3.4146,5.304335833333333,4.071835714285714,4.956115,4.450085,1.8113,5.6188,4.618865,5.33535,4.344035,7.349895,1.9226,4.956675,3.83467,3.04766,2.001915,1.7553566666666667,3.814995,4.469125,2.3218833333333335,2.4621666666666666,3.49776,3.49776,2.5864833333333332,3.2996200000000004,3.266195,3.856875,3.485405,0.8753923076923077,3.18999,4.27009,4.836851111111111,2.729845,2.96442,1.71382,2.78787,3.310055,2.20882,4.73615,4.26456,4.51442,2.2508399999999997,1.0308363636363636,6.00621,3.619525,3.474,3.4534000000000002,2.04462,30.554603226190476,4.51499,3.1988,4.83461,4.157865,0.9006,7.5564225,2.551175,5.5038,1.7756666666666667,4.50392,5.641051666666667,3.642435,2.86197,2.1968675,3.842233333333333,5.19815,2.19586,2.7483400000000002,3.786955,3.428795,2.52557,6.259,2.086425,4.008915,1.18794375,4.38539,3.44064,4.045665,4.50706,3.012,2.4973933333333336,4.48396,4.945895,3.632545,3.632545,6.60235,1.5598075,4.227185,7.781616666666666,3.267315,4.28231,3.349695,4.01567,3.383965,3.96848,1.269805,2.43368,4.231575,4.32996,5.50685,4.642265,2.64738,8.652646666666667,3.206,3.821215,1.7502571428571427,3.56722,2.1349633333333333,2.60535,2.06895125,1.2350966666666667,2.6831366666666665,0.9756828571428572,1.0160242857142856,1.0160242857142856,1.0160242857142856,1.98815,0.52452125,3.89706,1.2234233333333333,2.761146666666667,1.0212616666666667,1.6903566666666665,2.60562,2.4496733333333336,0.79492125,1.7423533333333332,1.6905766666666666,2.331656666666667,1.6614419999999999,1.6614419999999999,1.6521066666666666,2.11818,1.229918,2.22833,1.5221466666666668,1.2402266666666668,2.13563,2.26506,6.0122,1.963635,4.554075,18.434936083333334,6.738915,3.691675,3.455095,3.1877,2.8555833333333336,2.698733333333333,3.1466266666666667,0.758525,1.02184,1.02184,0.63625,2.275463333333333,3.919,3.7884,1.9830999999999999,5.49035,3.475875,2.46037,3.884165,4.75891,4.339065,4.29729,3.3962333333333334,3.16205,3.270375,5.65305,3.699666666666667,4.82129,0.509069,0.509069,2.174485,3.797535,5.2374,3.612195,4.23417,4.84349,6.886214000000001,7.78637,4.11467,2.503365,4.516495,4.46027,2.61816,2.25858,2.97156,1.4393966666666669,3.684285,2.32575,1.735,3.328336666666667,4.947695,2.0499125,5.927993333333333,1.716205,3.8748,3.88232,0.9296657142857142,3.5500666666666665,2.90204,5.15085,1.1393416666666667,1.7157525,2.4621225,2.1071075,1.6273925,2.51055,2.295245,2.062435,4.65627,4.66765,2.490805,1.843235,1.4358433333333334,3.8326333333333333,1.99563,2.48928,4.797645,6.7146,2.4273358333333332,2.949135,3.398485,3.58825,2.35832,5.51285,4.18282,2.99791,1.4724875,4.56445,2.53244,2.78213,2.515395,3.987785,5.06605,5.2731,2.4002333333333334,2.789286666666667,3.1208333333333336,3.7534666666666667,1.9833333333333334,1.595348,5.8441,3.4974000000000003,2.3170456363636367,3.1694366666666665,3.00726,2.51893,3.1276733333333335,3.28856,3.6297333333333337,5.11655,3.89784,3.07104,5.3056,3.77542,2.211455,3.652615,3.811275,3.93779,5.9422525,1.96597,3.739425,2.648855,6.19565,3.525195,0.56643375,2.332525,2.222195,3.490555,2.73527,2.208255,2.63462,0.704,2.9020166666666665,5.11745,2.3248975,4.12373,2.6986166666666667,4.42778,1.9595175,4.715075,3.52104,1.9114879999999999,2.89634,6.95411,4.488655,4.63849,5.19175,7.630967045454545,4.540915,4.594965,2.34254,4.661285,3.13765,1.8799733333333333,1.8788375,3.3655666666666666,0.9824885714285714,2.22106,2.756626666666667,2.6544733333333332,3.585566666666667,1.755816,3.27744,1.8075433333333333,5.4807,6.1556375,1.0087375,1.74237,2.51706,2.77335,2.0093866666666664,1.0565333333333333,5.553388333333333,2.26261,2.6746700000000003,3.3755,3.0717700000000003,3.2136033333333334,3.074785,2.12793,3.0845533333333335,2.3892666666666664,4.1803,3.833715,3.84327,3.2918066666666665,3.23001,0.872068,1.8236066666666666,2.351895,2.003976666666667,2.5313966666666667,1.1286433333333334,2.6211333333333333,2.9524000000000004,3.51301,1.9748466666666669,3.678675,3.48525,5.83535,3.412315,0.5825108333333333,1.989426,2.933923333333333,3.676933333333333,0.7895863636363636,2.8587433333333334,3.454746,3.9140333333333337,3.10413,3.3143191666666665,3.620975,3.9828666666666668,2.9536266666666666,2.17493,5.69645,5.26735,5.28935,5.385,5.7911,1.7869033333333333,3.57881,3.727866666666667,3.5787333333333335,3.1156133333333336,2.9971433333333333,4.0862,3.4862333333333333,3.023123333333333,14.450816666666666,4.30338,1.09114,3.30828,1.473128,3.378633333333333,3.25743,2.421136666666667,6.068266666666666,6.552403,2.4500533333333334,0.860835,4.260645,3.518966666666667,2.91856,4.90711,5.2788,5.9608,4.95397,3.48634,2.0342425,6.736375,1.2801316666666667,6.83909,4.96403,2.50539,4.11449,7.5460666666666665,6.05935,2.227116666666667,1.6979166666666667,2.111185,7.4738500000000005,1.5548,3.1503099999999997,2.8198533333333335,4.3245330555555554,5.9901,4.12039,6.3081,3.590455,5.3262,3.630005,8.52747,5.2288,5.7372,2.336185,2.671525,11.538923333333333,3.43152,3.30711,2.40213,1.5679566666666667,3.045916666666667,2.8084000000000002,0.6731125,1.0825879999999999,1.0748785714285713,4.116305,6.988106666666667,2.910208,1.4944433333333331,5.04905,3.598455,0.55964,4.677395,3.36714,4.4691,3.93131,3.49983,2.7183333333333333,4.076735,9.79481,1.7540775,3.9170024999999997,4.289955,4.1921,3.571435,0.8350583333333333,3.6124333333333336,3.7177333333333333,1.57846,2.4525433333333333,2.30275,2.65408,3.390333333333333,2.0826933333333333,2.31347,6.171227142857142,4.59671,3.94237,4.095715,1.4386299999999999,2.46236,5.2745,5.04125,5.18645,4.569615,4.81843,5.10495,1.800742,3.863875,7.616524999999999,1.1966016666666668,1.6292099999999998,2.4945166666666667,2.9161699999999997,2.75163,4.793983416666667,0.8308357142857143,2.32222,3.29083,5.0302,4.2639,2.23725,2.832926666666667,2.0271325,0.5829,2.673025,2.88857,7.604585,4.176925,4.476675,0.934064,3.9576333333333333,9.562929583333334,11.012303333333334,3.419735,1.15367125,3.548795,3.564365,2.8639500000000004,5.69892,4.84087,3.953425,2.2301125,3.8327666666666667,2.66488,2.4847433333333333,0.8422818181818182,0.4192573333333333,2.434185,3.27892,1.9391253333333331,3.30702,3.679133333333333,3.813565,4.608005,1.408214,3.291786666666667,1.8679325000000002,1.8679325000000002,2.200995,2.8701,4.068075,2.5925433333333334,2.7670933333333334,3.4004,3.8333666666666666,4.333665,4.26774,4.848815,4.010115,3.966405,4.43557,5.17005,7.863513333333334,2.00254,2.2215433333333334,3.4552666666666667,0.8737266666666667,0.7582650000000001,3.833235,2.270615,5.4865,2.8887933333333335,3.1073733333333333,1.8337299999999999,1.4969125,4.024945,4.26997,4.165855,1.5058766666666665,1.2493100000000001,2.6102133333333333,2.0211633333333334,2.5891733333333335,1.09535,1.09535,2.7339366666666667,4.21951,2.721,3.439125,3.16599,1.92072,20.18609153030303,3.547275,5.588480000000001,3.79112,3.69888,3.646265,3.91803,5.52355,6.1540075000000005,1.1953683333333334,1.1953683333333334,1.1953683333333334,2.658796666666667,1.7307857142857144,3.6751666666666662,4.46094,4.164905,3.37588,4.54529,4.42739,0.8892588888888889,2.4017866666666667,2.87012,6.001997,3.3878269999999997,4.086442,4.602715,2.2315375,1.9466,2.254356666666667,0.5174325,0.83485,1.80118,1.95133,2.73849,13.031775,2.53293,5.3897,0.7432357142857143,10.226035,5.6483,3.65711,4.35411,2.813775,5.92435,2.813775,2.7959060000000004,3.45126,3.748595,3.86533,3.87679,4.555845,3.538745,5.8289,6.986096,1.81958,2.8404160000000003,2.517605,27.952090846203347,1.6062239999999999,6.2473,4.44664,3.925955,4.28424,4.57101,2.698775,2.692385,2.208615,6.12795,6.8105,4.96977,4.58067,4.999725,2.2558875,1.799375,4.383925,0.6983746153846154,0.6983746153846154,0.6983746153846154,0.6983746153846154,4.195525,3.1774,0.97228,1.77039,1.2378333333333333,4.95462,2.48426,2.463045,7.421991666666667,3.4116,0.17412862068965518,21.169479,4.593473333333334,1.802654,1.3540953571428571,2.28532,2.02738,2.657025,4.505735,3.18264,4.099055,4.109335,2.418276666666667,7.16434,2.640515,1.96742,4.53249,6.13125,8.444146666666667,4.59464,0.296890243902439,3.452245,4.26677,3.292476666666667,2.0717775,2.986606666666667,1.5866233333333335,1.5866233333333335,3.974425,5.7915425,12.244269166666667,9.0713,0.6889777777777778,2.75542,3.666265,3.15214,4.909105,5.00995,2.12002,2.12002,3.77453,4.430675,3.1286533333333337,3.942755,5.1064,5.8292,5.66713,2.03036,4.57587,4.212155,2.612075,2.89746,3.13711,4.9625,4.19164,5.19885,4.700585,4.4523,3.98834,4.31333,4.384735,5.61975,2.9300266666666666,3.2509433333333333,1.096768,4.555285,4.8551,4.07047,1.887886,2.2803566666666666,2.663256666666667,3.063553333333333,2.25595,4.556039999999999,1.9364166666666665,2.75575,3.743,2.9572000000000003,2.4583133333333334,2.7364800000000002,3.913766666666667,3.2533166666666666,3.458833333333333,4.387873333333333,2.07069,2.843163333333333,2.3923900000000002,5.84835,3.098176666666667,41.59636283333334,2.2967294545454546,2.2967294545454546,2.46646,2.8159266666666665,2.1542600000000003,1.7338133333333332,3.04844,1.7188800000000002,0.7102715384615385,4.53816,7.4706075,4.19164,4.175935,5.6594,2.05605,4.50999,1.7276219999999998,5.60825,5.1372,5.90865,4.314075,1.70651,4.34428,5.1772,4.81714,5.321,5.52115,4.418765,3.129075,3.28197,2.6044033333333334,2.235705,1.849705,4.61157,1.9558200000000001,3.73557,3.73557,2.22323,1.55037,2.12916,2.415716666666667,3.0968933333333335,4.76916,2.7818633333333334,1.14517,1.14517,2.3232933333333334,2.2171166666666666,2.7340066666666663,2.6388266666666667,2.37558,2.4829733333333333,2.2417233333333333,2.25876475,3.040911892857143,1.6406858928571428,0.7821471428571429,59.9783915922619,2.280948,2.6362133333333335,2.1059039999999998,0.8642519999999999,3.335872,1.569594,1.569594,2.2504033333333333,3.0827833333333334,0.85853875,2.2280433333333334,5.33313,3.8975333333333335,2.3073466666666667,2.8430666666666666,2.29588,2.5970393333333335,0.290620625,3.013866666666667,0.713326,2.45964,1.2355,1.2355,2.4401766666666664,2.6145199999999997,2.5794366666666666,1.8659446666666668,3.3238800000000004,1.8659446666666668,2.111763333333333,2.4995533333333335,2.766106666666667,1.2160959999999998,1.2160959999999998,3.0178166666666666,1.39294,2.8642833333333333,2.136693333333333,4.917095,4.008895,13.808970833333333,7.1459325,3.391135,2.412295,4.300355,4.954065,5.3227,2.9583825,4.68384,3.48929,2.3488599999999997,4.215235,3.32717,2.7275066666666667,4.655405,2.168953333333333,1.08801,4.0504675,2.9267,4.63931,0.8216228571428571,2.658345,3.529255,4.17049,4.36454,6.6108,2.47772,1.94612,3.784705,4.91513,2.3188175,2.52001,1.97997,2.094662,0.8753719999999999,5.54555,4.76838,3.683255,3.649595,3.289593333333333,4.54932,5.59055,3.3371666666666666,1.65862,0.5481266666666667,14.278180166666667,0.4791854545454546,0.4791854545454546,0.4791854545454546,3.189906666666667,3.9736333333333334,0.4791854545454546,8.56285,4.44695,0.709649,0.709649,3.265476666666667,3.161585,2.860495,4.327115,4.759405,4.287053,1.9326699999999999,4.725323333333334,3.86473,3.556421726190476,4.50178,2.9917205,2.4113225,2.324,2.7764,1.6186975,3.48529,3.2625566666666668,2.606675,2.4889925,2.077445,1.8615166666666667,1.58259,2.5824,1.1215777777777778,2.499535,0.6368900000000001,5.3105,1.6500275,0.7880733333333333,2.39228,7.905953333333334,2.56393,2.026402,3.172285,7.38957,2.520845,5.05805,3.40288,5.83716,4.11961,4.37351,4.075595,5.16085,2.9951833333333333,4.326278333333333,1.2282428571428572,4.340265,2.378296666666667,2.5552433333333333,2.600675,2.344575,2.121,1.3070375,5.37135,0.9462818181818182,4.921365,5.6137,5.0682,6.0548,3.9619,2.64269,2.03682,2.9270899999999997,3.293253333333333,2.53266,3.649366666666667,2.78075,4.306105,1.7869140000000001,41.91573861111111,4.94024,2.4072566666666666,3.3074666666666666,2.8293700000000004,1.6527933333333333,5.890236666666667,4.69224,2.7608466666666662,3.436166666666667,2.1976400000000003,1.5951775,5.6619,0.8143214285714285,4.944822857142857,1.3283914285714287,3.7769,3.579166666666667,3.0844566666666666,1.434025,5.355006666666666,1.9430340000000001,1.9430340000000001,2.680196666666667,2.9930458333333334,3.5739666666666667,3.7692666666666668,1.3678833333333333,3.16651,2.89317,6.566309,3.4869333333333334,3.798495,1.234845,1.3837633333333335,3.075416666666667,0.89918,5.391656666666666,3.4606666666666666,3.0027666666666666,3.7791,3.0394466666666666,2.7443833333333334,3.0357066666666666,1.6751699999999998,2.38863,2.7437799999999997,3.779733333333333,2.68863,3.727233333333333,3.0379466666666666,0.5722333333333334,9.518675961538461,2.7583066666666665,5.3912,5.0051,2.739656666666667,3.1178899999999996,1.333225,1.9586633333333332,2.17008,1.333225,4.012525,0.480139375,0.480139375,1.15858,1.15858,0.732165,0.732165,2.359375,2.744535,2.424935,1.703175,1.740025,3.95463,2.91301,5.00035,4.789495,2.17468,4.15151,2.347375,5.154202307692308,1.50542,1.50542,2.15365,1.8783239999999999,3.9164691666666664,2.0276875,4.232875,1.4884633333333335,2.3160125,0.5879615384615385,1.2299385714285713,2.2213075,2.2480425,2.2734275,1.4151025,4.76028,4.613105,3.072433333333333,2.9857566666666666,1.47929,0.7603891666666667,2.346506666666667,3.774715,2.1725766666666666,4.852645,5.68305,5.26155,3.946715,6.399357500000001,1.7090833333333333,6.038805,1.796455,4.763265,4.76898,5.536955,3.294843333333333,2.30314,1.7132025,2.0749,2.0749,2.48314,2.48314,4.601215,5.5282,0.8859680000000001,4.346985,3.639295,3.41673,3.177773333333333,1.36739,2.8531866666666663,4.181555,4.25696,2.03742,6.48315,6.04035,1.95186,1.28055,3.97136,4.133343333333333,3.91799,3.526705,4.32158,0.6910364285714286,3.122476666666667,2.7323533333333336,2.7040633333333335,2.9487233333333336,2.325153333333333,3.3798,1.5055142857142858,1.5055142857142858,1.5055142857142858,3.29144,3.371966666666667,3.1456233333333334,3.560163666666667,2.50415,1.253372857142857,3.2690433333333337,3.29011,1.4420714285714287,3.1711500000000004,2.7600766666666665,1.281912857142857,3.0182800000000003,2.9936333333333334,3.20448,2.8263933333333333,3.028826666666667,2.088725,3.563633333333333,5.5613,4.573415,0.9752620000000001,1.5050240000000001,0.669611,3.6846666666666668,9.249665,3.0409633333333335,3.188335,2.6413766666666665,4.25254,1.87382,7.85846,6.824906666666667,2.73758,2.7650062857142856,4.04558,5.00125,1.534782,1.4098039999999998,1.312366,1.90751,12.125816666666667,2.73228,2.902886666666667,3.2411070000000004,3.805075,2.184973333333333,1.2348125,5.38165,1.0217033333333332,3.197906538461538,3.752435,3.36796,3.3392,3.298885,5.54205,1.1350166666666668,2.22111,2.2501326666666666,2.2501326666666666,3.78503,5.67325,7.2845450000000005,4.06011,3.342875,4.930975,1.7797875,2.2081783333333336,4.655105,4.892405,3.848525,1.5312599999999998,2.9688499999999998,3.40355,4.074805,2.559175,4.227075,3.83759,3.591145,3.94442,5.0383,4.71301,5.44435,3.1178666666666666,2.3520533333333336,4.42608,2.95848,3.700755,2.484395,2.514515,2.588765,5.1244,2.490475,3.1911894318181817,1.5932625,2.813515,3.51529,1.9863025,2.0176925,0.7959900000000001,0.7959900000000001,1.7182775,4.870278787878788,3.763245,2.9742466666666663,4.110945,3.434171666666667,2.544644857142857,1.0975175,2.69236,1.66532,4.291805,3.99104,0.8559816666666666,1.81106,3.75792,2.9161975,1.5793225,1.6155333333333333,4.888094285714286,1.219025,2.912905,3.16333,2.73643,2.560125,2.803406,1.966245,0.9755575,2.85499,2.86267,3.393095,1.4173233333333333,1.58381,1.80241,4.79571,2.037755,4.783385,5.022,4.33578,6.2785,5.9595,4.119775,6.048959999999999,4.312845238095238,0.7596272727272727,2.516625,5.09405,4.780485,0.42349136363636364,0.9205819999999999,2.793805,4.72799,4.640975,5.1701,3.4737432142857143,2.789745,4.90209,1.813834,2.3006625,4.601685,4.1525975,3.33807,3.1548,4.772105,5.1165,2.88028,5.50239,1.01802,3.486255,2.610335,4.65543,4.359215,4.41784,2.1224,2.584425,2.68276,2.035083333333333,5.04965,3.68633,1.5459142857142858,3.03076,4.318665,1.742362,5.992825,1.913766,2.58805,13.823930201754386,3.1860466666666665,1.44404,1.5793549999999998,2.0978666666666665,5.611378333333333,1.6532240000000002,6.256483666666667,0.6912492307692308,3.523066666666667,3.997925,7.41885,2.4187499999999997,2.9723900000000003,2.9723900000000003,5.20055,4.509465,3.8846,3.250325,4.965865,5.1233,2.414385,3.4669666666666665,5.17975,1.2110716666666665,2.6564200000000002,5.02175,3.83183,4.270665,2.41526,3.149285,4.304705,6.70534,6.3825400000000005,0.781068,3.807475,3.201085,3.4881333333333333,4.23859,4.19544,3.94156,1.678626,4.62872,2.45141,2.72777,4.115485,4.397,4.66987,0.9545117857142857,2.4941299999999997,7.524497666666667,1.5369866666666667,2.094258051948052,2.2416275,3.76246,3.56903,3.291495,0.7004254545454546,2.4612975,1.67228,2.2121575,4.595565,5.788699333333334,3.052396,9.396085,2.6764666666666668,2.8110666666666666,1.13609,4.82091,5.2126,2.23822,5.897661666666667,3.869975,3.036775,5.28615,4.57201,4.944505,2.086905,1.669045,1.669045,2.66564,3.30578,4.824250833333334,1.4938775,5.699715,1.3623133333333335,3.83814,1.5524483333333334,9.091434333333334,5.13495,2.793515,5.03935,4.30118,3.88068,1.1030316666666666,2.28632,3.761066666666667,3.105143333333333,3.4713,3.8015666666666665,3.59302,2.72904,3.096675,3.18198,1.508995,2.4655033333333334,1.8997866666666667,2.8430033333333333,1.8624233333333333,5.5802700000000005,3.4997333333333334,1.7488000000000001,3.2087066666666666,3.246555,4.42344,6.1858,6.26475,2.968115,3.515755,4.268585,3.126615,2.65411,1.1369366666666667,0.94467,6.678515,3.783975,5.0828,5.8937,6.3732,2.86427,3.4232666666666667,6.23325,2.396925,0.5063827777777778,5.8123,3.421035,3.848435,3.5551999999999997,1.5296,5.61865,1.1307180000000001,4.724895,0.8973775,1.5743933333333333,2.8784799999999997,2.430473333333333,2.4390645714285717,3.69586,5.5778,5.3834225,5.3834225,4.432825,4.432825,4.71945,3.0309866666666667,4.497595,1.2464625,5.9027,4.180315,3.8516333333333335,4.58465,3.672805,4.185255,1.8711775,4.30116,3.383096,3.36407,4.170405,2.56062,4.543905,5.25305,3.545295,3.333265,5.65695,3.7783,4.78615,2.88348,3.2402166666666665,6.2126,4.255185,2.8778166666666665,6.470281666666667,1.55934,2.1719275,4.8415,4.39312,5.55875,3.93224,2.024221,2.024221,14.451511880952381,7.04887,5.15555,4.08422,2.9974115384615385,4.93681,4.72432,2.5538133333333333,3.4020333333333332,3.42073,4.017233333333333,3.6995,4.885325,2.05489,8.33043,2.31666,2.457015,5.24,2.31664,4.790475,4.23815,4.55828,0.8563744444444444,3.238695,3.86034,0.8796060000000001,2.93603,3.7498075,1.4430960000000002,1.9217366666666666,3.03687,2.8331133333333334,2.37465,3.5690000000000004,2.06243,0.5796157142857143,3.0360833333333335,3.0199700000000003,2.960706666666667,3.2361966666666664,1.7966799999999998,3.181126666666667,7.493539999999999,4.955055,2.3567633333333333,2.0803066666666665,2.5600333333333336,3.69294,2.798605,3.880714,19.16611,5.48625,3.415899,5.6368,3.739405,5.2410033333333335,1.6094733333333335,5.7434,1.4227833333333333,3.652585,3.581235,5.61375,5.41595,0.9606007368421052,4.648405,2.70079,4.98602,2.69132,4.46585,4.68105,2.802935,2.147953333333333,1.388074,2.079095,4.445195,4.8641,1.974265,1.76506,3.0241900000000004,4.227738333333333,3.2118633333333335,6.23745,2.876525,4.52673,4.328715,3.696935,4.25942,3.45477,4.580395,4.66945,4.240495,2.817406666666667,2.817406666666667,5.735577777777777,1.99547,3.0490100000000004,4.12751,1.7198499999999999,7.64903,3.574385,4.624713333333334,4.296566666666666,4.75158,2.13072,4.642355,5.13095,3.953255,2.1717675,3.75674,3.27421,1.0965225,1.5900475,1.1660666666666668,0.8331866666666666,1.57071,1.1192266666666668,4.438825,1.1766222222222222,2.7582166666666663,1.5981066666666666,2.055325,1.008525,1.935855,2.51545,1.6190375,3.4883333333333333,2.5238466666666666,4.610381666666666,1.5857916666666665,2.6483,3.505266666666667,3.4089666666666667,2.4018433333333333,4.2824925,4.47827,5.29592,20.50813075,2.5931633333333335,2.21141,0.6138107692307693,0.62937,4.691791666666667,1.917708,4.109545,5.30895,7.5060845,4.188075,3.55921,3.931255,3.4463000000000004,3.3004466666666663,3.3969,3.1724933333333336,3.3163933333333335,5.7864,4.18077,0.9634280000000001,1.13227125,5.44875,3.3609666666666667,2.6709866666666664,2.0693066666666664,2.5226933333333332,5.68535,5.20255,2.29584,1.4873066666666668,3.858795,5.09645,9.544266666666665,5.7148908333333335,4.70037,4.360705,5.4614,4.925105,4.627975,4.75888,4.2432,5.68085,1.878265,5.5873,1.6264,5.6037,0.7764399999999999,5.3434,5.44445,6.303,6.41275,4.84042,5.7406,5.75575,6.5099325,1.9090333333333334,1.6082714285714286,5.8661,3.468255,6.599295,5.11445,5.0887625,4.907435,6.14225,1.2982200000000002,4.497615,5.5754,4.150333333333333,4.987505,6.4561,2.67135,3.7825,4.487515,4.983465,0.994475,1.7451833333333333,1.384338,5.0664,4.06616,3.74429,3.4351000000000003,3.03267,1.5483166666666666,2.1145366666666665,0.37434833333333334,3.6257333333333333,1.635306,2.2640933333333333,3.332473333333333,2.20745,3.2150833333333337,2.611275,2.6266,10.657496666666667,3.6697333333333333,1.7681728205128204,3.956295,0.8339163636363637,4.9115275,1.1787925,1.9261575,2.050165,1.0205375,5.800037333333334,1.183583611111111,1.183583611111111,1.183583611111111,3.1620500000000002,1.7992180000000002,5.5303,3.056625,1.3980125,1.77628,2.0555975,1.5193375,1.8704139999999998,5.795810833333333,0.9302177777777777,4.20626,4.42517,3.1234466666666667,0.9972971428571429,2.232218,2.038305,2.038305,1.6972833333333333,3.6553216666666666,4.940075,5.0688,5.7012,4.45633,5.60095,3.400533333333333,2.0861325,3.3174,5.1108,3.85996,4.41419,1.05350875,3.868646875,5.30415,1.933785,3.976525,2.9017700000000004,4.67667,5.33945,2.79604,5.89125,6.4837,5.09635,4.674275,4.13523,3.21837,8.09425,4.062705,6.684525,3.32038,2.65185,5.2392,2.68271,4.146655,5.01275,2.7582400000000002,3.077885,3.98943,1.9802466666666667,11.035655,4.362055,3.104665,16.237509087301586,4.29401,1.7408233333333334,2.9182799999999998,2.177115,2.68856,4.146445,2.6248418750000004,2.896125,2.412775,2.803215,4.062765,5.572985,1.22559,2.2794425,4.09638,4.754735,4.72658,2.212315,0.615622,5.19515,4.19818,2.312535,1.1282683333333334,4.77031,5.1007,0.9172611111111111,3.762495,13.165653333333333,1.286934,0.37767999999999996,3.9026,4.32014,1.1255111111111111,4.511115,3.801395,5.330258333333333,1.3030333333333333,3.764805,3.94477,3.260175,4.141535,4.822515,5.5544,8.01755,3.082055,4.07057,4.384755,15.861083749999999,3.3993125,2.6952,1.2329375,2.2345475,1.210895,1.907905,1.2193575,1.9589775,1.7404775,2.2246375,2.533675,2.614875,1.95013,5.8059,3.63933,5.9666,3.19393,5.738318333333333,2.816933333333333,5.1475,3.4089666666666667,1.2013375,3.53957,2.03885,2.700223333333333,5.29205,4.85252,4.731975,4.68078,2.7803166666666663,3.11305,2.3624433333333332,3.76363,3.656525,2.346625,1.902725,3.636366666666667,4.67034,3.238975,2.35757,12.2034,0.6345813333333333,2.5036,4.960305,2.4598459999999998,1.102848,2.57718,7.340158333333333,7.170633333333333,4.881985,4.68586,4.43995,2.2052875,2.815065,2.919874666666667,2.0175566666666667,4.22603,4.834455,4.68984,0.500684,6.1339,3.3481666666666663,3.5212333333333334,3.6322666666666668,6.5223,9.13070725,4.390611,1.11721125,2.139625,2.208005,3.765685,2.59611,3.90233,4.838355,3.5891,2.7205266666666668,4.13501,4.21666,3.788085,3.977233333333333,2.00751,4.305535,5.07575,5.73815,3.541533333333333,1.590945,2.1815166666666665,14.71784808100233,0.5398336363636363,1.426835,1.426835,2.2960133333333332,4.149024666666667,4.054475,4.81756,3.763485,3.082615,4.145145,2.93852,4.01643,2.93852,3.424415,1.9122266666666665,1.5665133333333332,5.625,2.418875,4.73488,3.14906,2.624095,7.022088333333333,2.09461,5.05205,5.20265,3.62044,3.76575,4.79122,2.00056,5.09805,3.5107675,6.5518,5.263558333333333,2.594625,4.098015,5.0387,2.095555,3.10473,3.615133333333333,0.48662,3.350433333333333,9.990703333333332,4.84971,4.3874,5.1262,3.478905,3.1844,1.3407314285714287,4.12986,5.3311,3.229525,2.755925,5.00385,3.90852,4.190945,4.38796,2.34364,2.34364,3.987635,2.928155,2.831626590909091,1.888765,4.55175,3.92786,1.375667142857143,3.7134,5.05565,2.8248433333333334,7.6699,8.21651,1.47981,4.29677,4.68406,7.196225999999999,0.835915,7.214406666666667,3.8564258333333337,0.63366,5.41705,5.49855,5.4617,4.584365,4.896535,4.45072,5.0376,4.311465,4.433785,5.08435,4.22894,5.5417,4.79144,3.749255,3.809485,4.19623,2.898635,0.791124,4.438705,2.85781,1.76853,4.0681,4.82959,5.62745,0.9975885714285715,5.0541366666666665,3.07975,2.588976666666667,1.83357,1.2525833333333334,11.856370833333333,3.1799633333333333,3.21468,2.8365899999999997,3.6842185714285716,6.026966666666667,6.296626666666667,2.6273966666666664,1.9039533333333332,2.1694,2.1694,2.1694,1.41216,3.778835,3.889645,3.046835,4.517455,8.02615,4.475695,1.055978,2.261405,3.475155,3.32332,1.801426,4.10664,2.73577,1.31643,3.6838333333333337,7.467621428571428,7.913705,4.657205,4.0278,3.2669099999999998,5.43835,5.03875,5.60369,1.91767,1.91767,3.97234,3.70015,2.6355530000000003,2.6355530000000003,3.655405,0.9985357142857143,4.842005,3.380385,4.046995,4.689375,5.0292,3.2157366666666665,1.0092328571428573,4.189875,4.893575,4.68009,4.9203,5.2055,5.08275,4.499055,1.80341,1.45734,3.144325,3.83485,3.24011,4.13205,2.16409,3.9597524999999996,4.922435,2.6278,4.94022,7.57272,2.2983229166666668,2.85629,4.1326776190476195,4.835303333333333,1.6763925,1.9897969047619046,0.8834783333333333,1.9897969047619046,1.68414,1.68414,1.4619579999999999,4.657315,3.00722,3.664545,2.284015,3.77912,1.4715766666666665,5.6763,3.075155,1.6642325,2.616546666666667,4.111305,3.79678,5.994308999999999,4.654015,1.3128600000000001,0.8687299999999999,3.52516,6.13567,2.3294799999999998,3.560925,3.82296,3.82296,2.30247,3.29702,2.99869,1.4924416883116884,3.2178299999999997,4.140565,3.57968,4.44639,4.0175775,1.5931525,3.4849,4.971175,4.8021,4.985355,4.24226,1.90149,2.233985,1.3002666666666667,2.566175,3.302195,2.1691375,3.942495,3.4663,2.932975,4.047825,4.893455,1.388375,0.9450879999999999,1.79143,1.4945425,1.205411111111111,4.8589,3.987625,1.096768,0.23889652173913045,0.23889652173913045,0.23889652173913045,3.65942,5.868340000000001,5.06535,5.22955,3.073185,3.93849,4.9583,4.245905,2.67864,3.40353,1.79405,4.99113,4.19274,3.83876,4.736315,4.33343,0.896699090909091,0.896699090909091,0.896699090909091,0.896699090909091,0.9664619999999999,0.9664619999999999,4.445715,4.487265,3.615505,2.72801,2.4467,6.12325,4.753725,4.98218,4.29145,2.9545166666666667,2.4928466666666664,10.02,2.0149999999999997,2.0149999999999997,5.08095,5.47335,3.1331233333333333,0.480139375,0.480139375,0.480139375,0.480139375,0.480139375,0.480139375,5.237083333333333,5.17135,3.867945,4.41416,2.9488333333333334,2.9488333333333334,2.556035,3.092602,3.0273566666666665,3.52091,2.864455,7.402792,1.37354,5.28945,3.717845,4.78436,10.757843333333334,2.812856666666667,3.297635,1.0303799999999999,2.84828,4.679555,3.34605,1.290875,2.8735,4.4995,5.7379,2.702575,4.985905138888889,1.0208822222222222,2.0858433333333335,4.7758,4.67471,3.3661145,2.731863333333333,2.5448366666666664,1.4180716666666668,7.937138333333333,3.3147599999999997,2.1359166666666667,3.00669,2.9522933333333334,4.320785,3.76381,2.7101333333333333,3.194293333333333,5.91905,1.531455,4.79761,5.04215,3.86719,3.887545,2.424463333333333,4.110775,3.71561,3.8217,2.72749,4.817855,4.72871,2.99119,1.9144125,2.7486633333333335,2.7538066666666663,2.75277,0.8212245454545454,2.253325,8.400125,0.477996875,3.4929333333333332,1.5281099999999999,2.4726266666666668,3.6209666666666664,2.8752099999999996,1.2766666666666666,1.8218260000000002,2.6676933333333337,2.2182225,3.67237,2.1750800000000003,3.0233399999999997,1.4564133333333331,2.919988,2.04814,1.1672071428571429,2.9890000000000003,2.1419425,2.3105466666666667,2.4734966666666667,3.27506,3.3091066666666666,3.3771,3.4811666666666667,3.049386666666667,2.845603333333333,2.8027800000000003,2.4473075,1.7691966666666668,2.4126733333333332,2.9107366666666667,1.56742,3.10964,3.864047142857143,2.8922266666666663,2.94617,2.9915033333333336,3.8376,4.445215833333333,3.07417,1.8157557142857141,1.8157557142857141,2.2683175,1.12795,2.63135,3.3267300000000004,4.5826675,2.726575,1.958615,2.0826425,2.121005,3.59917,3.32336,3.9616,5.04045,1.7334,2.7941233333333333,3.76504,1.49021,1.49021,2.899725,0.6504015384615385,3.2249257692307696,2.28893,2.28893,2.8343900000000004,2.48708,2.59068,2.66509,2.24043,6.307865,3.8871875,3.8871875,3.85405,3.08179,2.23592,2.996205,2.431165,2.84229,4.9594825,0.47180833333333333,0.649267,4.12629,2.394985,2.7667,6.883946666666667,3.548725,1.613528,4.419406666666666,4.623355,4.650785,4.357285,5.445,4.820615,14.0058715,3.518595,1.6130833333333332,2.76968,3.78129,5.91315,4.19003,4.231245,4.398245,3.68288,3.898095,2.7188833333333338,4.28657,3.1142066666666666,2.31119,2.31119,4.13035,3.71384,3.250345,3.248245,2.368645,2.523365,2.054975,1.80619,2.004735,1.8077425,1.73642,3.9921415,3.401665,2.7114,6.1121925,3.37723,2.3051833333333334,1.8196766666666668,3.4176,3.757655,3.94803,3.2647618749999996,3.30231,3.179905,4.263395,3.61858,3.720645,3.956565,3.3800350000000003,3.48864,0.6651716666666666,0.6651716666666666,0.6651716666666666,3.382275,2.446105,5.568,2.906295,3.61394,7.788689259259259,2.9585000000000004,0.39291923076923074,5.80475,0.7492289999999999,4.321052857142857,1.88705,3.863695,1.89165,4.484305,5.656166666666667,4.70666,4.21569,2.809253333333333,2.9178366666666666,1.404435,2.059013333333333,0.5064436842105263,0.6456352941176471,2.9101533333333336,1.4112099999999999,2.2261825,3.81937,2.89776,5.19715,2.74919,2.946083333333333,3.30134,5.1648,2.2699875,0.9415899999999999,2.48169,3.300706,1.3807522727272727,4.98577,3.73776,3.5864,2.7295266666666667,4.60769,2.9685133333333336,2.672663333333333,3.3656,2.28149,2.7282233333333337,2.4278275,3.472633333333333,2.4100533333333334,5.327908666666667,2.4011275,1.8140666666666665,2.8061900000000004,4.872802,3.267818,3.267818,2.3948766666666668,3.9661,2.3520425,3.91692,2.887185,0.5942886666666667,4.72346,2.0174875,11.758741111111112,7.08148,2.865735,3.13477,3.217345,5.28859,2.87794,3.506265,0.2683726666666667,2.0495125,3.9057333333333335,0.9085833333333334,4.022635,1.37124,4.9145,3.212335,4.86851,4.341535,3.879535,2.1476,4.45242,3.71621,4.668195,7.71825,4.3885,3.2515033333333334,2.9745966666666668,1.5799720000000002,1.89041,4.38626,5.01065,4.0544150000000005,2.37016,3.59493,1.66311,2.767345,2.2712,4.17307,10.401473333333334,3.61922,7.143646666666667,3.737105,4.37186,0.9989133333333334,4.711736,4.960505,2.548433333333333,2.91621,3.4279666666666664,2.9877366666666667,2.33017,1.7329800000000002,1.9006533333333333,3.69139,1.707684,3.0486566666666666,5.177566666666666,2.7685333333333335,1.1136732142857144,1.1136732142857144,3.538155,3.179651,3.179651,3.8046666666666664,2.9635266666666666,3.5092564102564108,3.717333333333333,3.157913333333333,2.660416666666667,2.3385433333333334,2.3652433333333334,3.1445333333333334,2.241165,2.53821,1.602956,5.725176,10.060886166666666,0.5463953846153846,0.5463953846153846,0.5463953846153846,0.6467792482517483,0.6467792482517483,0.5463953846153846,3.4866333333333333,2.8678866666666667,4.242505,1.4621516666666665,1.703455,3.273838,2.285433333333333,2.9553966666666667,2.2887066666666667,2.9458300000000004,3.586133333333333,6.997958333333333,3.069926666666667,2.40699,3.3371999999999997,4.18573,3.0582999999999996,3.4136333333333333,5.81847,2.3569233333333335,3.3982666666666668,1.3732616666666668,1.3732616666666668,2.459096666666667,0.45878,2.5712766666666664,2.7039066666666667,2.787463333333333,3.3793333333333333,2.27095,1.5529533333333332,2.9679599999999997,3.3250433333333334,2.2975833333333333,4.92188,2.584163333333333,4.025645,3.180315,4.52254,0.543746,8.15855,2.959542,2.959542,7.604830555555555,1.8559299999999999,2.7941599999999998,3.06361,4.5228,2.32216,1.9362599999999999,2.4960666666666667,1.3379925,3.4366333333333334,1.7494566666666669,2.9602545,1.3538975,0.2681331818181818,0.2681331818181818,4.98529,3.851515,3.554395,3.2015366666666663,2.70169,3.96637,1.3714866666666667,6.76375,3.773035,3.019995,1.7899425,1.2200083333333334,2.314425,3.06361,2.557665,2.099695,6.0217,5.07275,5.07325,4.318395,2.21313,0.6743708333333333,7.611315,2.06662,1.4166,3.473875,5.13545,2.34786,1.8573333333333333,4.846575,4.5974,3.681366666666667,3.3216699999999997,4.075645,4.696635,3.7076333333333333,2.458792,2.458792,4.16738,5.14035,6.274,7.003036666666667,2.83102,3.73047,1.3681514285714285,2.33286,4.504862,3.805075,1.7508120000000003,3.883935,3.4161525,4.365835,1.89441,4.19281,4.85709,5.19715,4.607255,2.385336666666667,2.5923766666666666,3.9151666666666665,2.0533466666666667,2.6943,2.71716,2.4656733333333336,0.8446830000000001,1.889945,2.6964333333333332,2.3144546666666668,4.796225,5.1506,4.88464,4.00451,3.32432,5.5514025,12.127324999999999,5.8325,4.62387,4.31833,3.91972,4.719145,3.14664,3.0243763333333336,3.7699,1.3680125,2.83168,2.7884,5.2752,6.0715,4.887205,3.2777999999999996,2.5491266666666665,2.3344766666666668,4.1468,4.175725,3.7373,4.175725,2.31466225,2.243866666666667,2.3581233333333333,2.5049,3.0662299999999996,1.67838,1.0039233333333333,1.3921066666666666,1.6498466666666667,2.0455533333333333,1.5228566666666667,1.2924966666666666,1.5820100000000001,2.635143333333333,1.521374,3.2229433333333333,1.3452333333333335,2.6485166666666666,2.59603,2.4088966666666667,3.0564199999999997,2.305616666666667,2.340126666666667,3.162435,2.18418,3.04161,2.9850666666666665,2.5089966666666665,3.07723,3.0295575,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,0.15138967741935486,5.1322,3.240265,1.0013642857142857,3.11169,2.6326300000000002,3.1344266666666667,4.075645,3.1903066666666664,4.503405,3.617011333333333,1.5984180000000001,3.4777666666666662,1.7570499999999998,1.086355,0.9352320000000001,1.4677783333333334,0.9434866666666667,0.7366425,1.281218,3.15359,1.8692920000000002,1.8135166666666667,2.0651022222222224,2.46927,1.060265,1.4995533333333333,1.4350416666666668,0.9305083333333334,1.2337883333333333,0.7096133333333333,0.927274,3.251555,3.483185,4.96056,4.44745,4.17361,3.011746666666667,5.00585,3.8541333333333334,1.8940025,3.424655,2.0343875,3.5159,2.1562966666666665,0.8273518181818182,4.43837,4.94544,2.04317,1.27097,2.779685,3.202315,3.6553216666666666,2.90113,2.530985,0.92474125,2.1102325,5.45365,3.834205,2.386955,1.5873333333333333,3.69906,2.0392925,0.7465600000000001,4.75884,3.682305,4.66224,2.49487,1.351526,4.3899,4.45503,2.5856266666666667,2.5729366666666666,2.4557733333333336,2.57747,2.6454233333333335,2.902416666666667,3.4053,1.284675,2.72965,2.6371100000000003,5.2708,4.20846,3.635815,4.46922,16.365402561868688,4.5076775,4.572996,2.5816,4.26797,5.2126,1.531746,2.7726,2.6994399999999996,7.1209299999999995,3.967765,4.615775,5.36675,2.6994399999999996,3.797815,2.14209,2.7356466666666663,2.9126133333333333,2.7592233333333334,1.37721,4.567335,4.235085,2.46736,4.120315,2.787663333333333,2.68942,3.611345,3.12108,5.69295,5.4616,2.718865,3.417735,2.739465,2.46702,1.286008,1.286008,2.7190999999999996,2.5259933333333335,0.2377614285714286,5.342333,1.124992,3.50936,3.672125,0.5667058333333334,4.636885,8.436523333333334,1.7977275,3.74138,3.85805,2.7182633333333333,3.156955,2.39575,2.88877,3.494575,4.053875,3.057675,3.9583333333333335,0.9875916666666668,11.404519666666667,2.58052,3.023495,4.86464,2.62194,3.95895,7.76776,4.47645,4.309475,4.235665,4.49942,5.6307325,1.7194725,3.3917,4.37341,4.0251,1.939466,3.76641,3.96868,3.523185,3.92363,4.613735,4.043275,2.4153366666666667,3.78323,3.522825,5.5221,4.19452,2.1967033333333332,2.284143333333333,2.1209866666666666,2.9517733333333336,1.23208,3.6995,0.8344318181818182,3.4497999999999998,3.0774266666666663,2.4916066666666667,1.7269500000000002,4.86446,4.96682,4.09786,1.7788325,4.50211,4.33141,0.7096513333333334,0.32408000000000003,4.516275,4.268785,0.98137125,0.32408000000000003,3.15582,0.7096513333333334,0.7096513333333334,0.32408000000000003,5.692155,2.4906099999999998,2.497456666666667,5.6686,3.93535,3.165285,0.7832444444444444,2.991935,3.780545,4.49112,5.6902,2.2325375,0.7161346153846153,4.422063333333334,2.2443,1.5604900000000002,2.08182,1.0630957142857143,2.54745,2.272273333333333,3.87069,5.28685,3.256016666666667,3.812333333333333,3.1907433333333333,2.30333,2.90113,4.417355,1.4631075,1.9434525,4.020005,5.4026,2.1671040277777776,5.8034,2.656195,4.2445,4.097975,3.2353,1.2742325,3.20215,6.70575,4.075515,4.27197,5.1713,6.41095,2.854525,3.43775,4.45552,3.25905,3.238815,8.07264,3.69977,4.600607500000001,2.375875,1.0931075,2.52549,1.93402,2.03622,1.830725,4.942225,0.7097335714285714,3.759475,3.916255,1.8517533333333331,3.16496,5.0127,4.380315,3.075555,4.71281,5.72795,10.425281333333333,2.9110600000000004,3.17836,1.641516,1.8316833333333333,1.1737666666666666,1.42885,3.3396000000000003,2.4850166666666667,3.174533333333333,4.4931625641025645,1.51301,2.6964400000000004,5.0953,5.30815,3.983825,3.268255,2.97756,2.39801,2.140135,2.033335,1.69771,1.976165,3.87412,3.93077,5.37175,5.3083,4.34891,5.765541666666667,3.38173,2.494395,6.6695899999999995,4.16029,7.929115,4.73043,4.73043,5.34604,1.6795833333333334,1.3417725,1.3736733333333333,0.707238,4.943825,4.023666666666666,3.3989800000000003,3.3989800000000003,1.8359660000000002,4.47684,4.50972,4.857365,4.375705,2.8745266666666667,2.57287,4.2966,3.2183266666666666,5.085295833333333,3.68656,0.8227709090909091,5.65435,5.02985,5.5338,5.31745,2.989415,5.8872,4.93035,0.8601692307692308,5.27025,6.53965,3.164245,5.45375,5.7502,3.278445,2.397975,3.85204,6.31145,2.2416275,6.12975,1.805525,4.701725,2.81594,2.16956,1.01802,3.80923,5.9106,3.22286,3.83449,2.0544766666666665,5.1212,8.28111,3.40046,4.05627,2.57858,2.630765,0.8842840000000001,5.1217,1.5308866666666667,3.5520424999999998,3.5520424999999998,4.67009,2.17064,3.3112166666666667,4.2379,1.84647,3.1354133333333336,3.3165033333333334,3.5635333333333334,2.83601,3.818425,2.93065,1.8599875,3.5557666666666665,2.237715,2.9959000000000002,1.9324133333333335,2.9649133333333335,2.8107233333333332,1.4712,1.2682366666666667,0.4820966666666667,1.27407,0.4820966666666667,0.4820966666666667,1.2682366666666667,0.4820966666666667,3.25216,2.7753259999999997,2.7753259999999997,2.8691833333333334,5.24835,4.677355,4.593255,5.59965,5.1043,3.360165,4.443335,4.33258,2.3294525,2.628607333333333,2.9656866666666666,0.7886354545454545,5.73705,3.03124,3.1484,5.60075,3.7929200000000005,5.25205,3.32604,2.5216233333333333,2.953155,3.33551,2.4978433333333334,2.68812,1.9575066666666665,5.4434,0.8998477777777778,4.18214,1.1979957142857143,3.465175,3.3665000000000003,2.89105,4.22748,4.430735,4.299935,4.794365,4.09433,4.05744,4.767755,3.975775,2.49125,2.728725,3.6058,4.17893,4.42012,3.622195,2.65925,3.545395,3.2599733333333334,3.31008,3.691555,5.28845,4.069375,68.99002618406593,2.6406016666666665,4.25183,16.378874,3.96055,3.0742100000000003,2.0661533333333333,1.8469133333333334,2.5879233333333334,4.94102,3.09808,4.696656666666667,6.34185,3.21094,7.780495,5.1929,2.70207,3.518395,3.893995,3.618375,1.981542,1.2839,4.427145,3.00538,5.898511666666667,3.442615,2.3499433333333335,3.366235,3.307455,4.359915,3.12092,5.434810000000001,4.53382,4.238415,3.316395,2.3838725,3.92691,5.9864,2.585505,4.16584,4.384219166666666,1.1560333333333335,2.763955,5.27175,3.513585,3.401045,3.603915,3.10363,4.48456,3.083315,3.6617,3.3668,4.412105,3.16269,2.773045,4.34835,9.17545,3.09883,4.109745,5.89931,3.18059,2.5458,3.7868612500000003,2.0871233333333334,2.8924299999999996,3.5163140000000004,3.427795,2.926985,3.6757,3.24237,3.25929,3.920895,3.70758,4.064755,4.0803,3.826285,3.761705,2.8860116666666666,2.8860116666666666,6.7154,1.876035,3.19085,3.530835,2.579515,4.88896,4.01907,2.848485,2.78867,4.51944,6.8485724999999995,0.6923972727272727,3.584825,2.26696,2.863766666666667,2.55292,5.2363,2.7533833333333333,2.0084225,1.18794375,2.0604751515151514,3.97295,4.189265,3.98836,6.4231,5.12075,6.0186,2.36732,1.7044966666666665,4.1072,3.85099,3.01688,2.05581,1.26382,2.32252,3.4464333333333332,1.6236059999999999,2.3745833333333333,2.3507474285714283,3.663329258241758,2.736155,5.0691,3.225495,1.3957125,5.2283,3.43191,5.01705,5.1479,5.30185,4.5437,1.9288333333333334,1.43834,0.6079085714285714,1.49178,3.4669,2.4603,3.3784816666666666,1.2674866666666667,2.6205,2.275275,3.38696,3.432885,3.730545,4.048283333333333,1.6051175,1.4151375,1.8830625,2.2669375,1.40992,2.6566,7.159724083333334,4.988855,4.473525,3.092105,7.41539,4.60723,3.07121,3.02613,3.32012,2.643495,3.742335,2.2590600000000003,7.11881,0.87773,3.256225,6.75525,4.03514,5.21945,5.21855,1.5658266666666665,3.3745999999999996,3.032223333333333,2.881513333333333,1.7319575,3.90365,8.29407,4.578205,5.25595,3.955925,4.72608,4.71818,0.8712,2.7122933333333332,5.308,6.676403333333333,4.8738,5.36285,3.026105,3.902366666666667,2.27887,5.1209,5.0992,4.534285071428571,4.534285071428571,0.6824185714285714,3.6896,0.857464,0.8232349999999999,2.0144525,3.664266666666667,3.9769020000000004,5.558416285714286,3.4280000000000004,3.603634285714286,3.338087619047619,2.997616666666667,2.611893333333333,4.6706666666666665,3.5449025,1.9809125,1.9809125,3.72007,2.9837233333333333,2.6599066666666666,4.268495,3.605366666666667,0.6775044444444445,3.4387333333333334,2.7745433333333334,3.184423333333333,2.61679,2.570725,2.7295766666666665,3.3577333333333335,3.2175433333333334,0.8361240000000001,2.8045666666666667,6.440988238095239,2.08432,7.869704166666667,1.531028,1.531028,3.56989425,3.2039299999999997,3.5241333333333333,3.076076666666667,1.871734,1.4045142857142856,3.138726666666667,3.5131,1.8136166666666667,1.4214871428571427,2.884456666666667,2.8563340000000004,2.7927199999999996,2.017345,2.16904,5.03995,2.117635,2.76998,3.26774,1.687595,3.523695,3.144575,7.43922,4.397555,1.72218,3.722815,2.76053,2.069145,4.01341,2.5990233333333332,2.654085,7.2896374999999995,0.8330692307692308,0.694125,4.956975,1.4376060000000002,1.4376060000000002,4.66557,2.4715725,4.79808,3.521305,1.32549,2.276472666666667,2.667453333333333,2.3186893333333334,5.06,2.755065,2.9005799999999997,2.6226066666666665,1.6987735714285714,1.6987735714285714,2.0951400000000002,3.8836,3.9984333333333333,5.0517,3.4329,5.50125,5.05625,7.04075,5.4671,2.74296,2.7125833333333333,2.5644266666666664,2.616423333333333,0.7245133333333333,0.7245133333333333,0.7245133333333333,2.929885,4.601945,4.49539,0.821025,0.821025,5.7982,6.60885,7.71839,22.620955666666667,13.3198,8.70514,3.94462,6.10025,2.510325,4.84335,2.54412,3.443,4.489633333333333,5.586067333333333,1.960025,2.18067,6.64354,2.1901,2.1901,6.09585,3.73698,4.605655,2.00277,4.993903333333334,5.6307,4.8233,5.5632,4.01103,0.9641933333333333,6.306,9.4552,0.9641933333333333,2.00277,2.0365366666666667,0.77474,0.77474,1.81907,2.43796,1.81907,4.562595,6.22815,6.54815,10.3007,2.00277,12.057974999999999,6.64735,6.33115,2.510325,3.16534,4.915565,9.74697,3.2009,4.32392,6.27735,3.492505,5.35195,6.6145,4.966635,5.5148,4.043355,2.90964,5.21335,3.964195,4.79784,4.040715,0.77376375,1.57266,3.409065,5.6234,4.853185,2.7685333333333335,1.9175275,4.220625,5.06305,5.9972,5.338,5.3168,4.357745,3.489285,4.21109,3.57646,2.00322,4.73785,1.95199,2.593625,3.605335,1.7095500000000001,3.871235,4.439265,3.52459,3.7897616666666667,3.611945,6.492715,0.9944999999999999,3.38288,3.401345,1.4329857142857143,5.677287999999999,1.7654666666666667,1.8558533333333334,2.9745566666666665,3.3141875,3.0852166666666663,2.8479466666666666,2.00555,0.78067,2.43575,2.421095,4.16935,0.7318761538461539,6.341130000000001,1.71968,1.1507939999999999,3.808533333333333,1.1507939999999999,3.811865,0.9225545454545454,4.3981,3.2321299999999997,1.774005,4.176097,4.2002045,4.2002045,4.887305,2.62935,3.2260733333333333,2.5395133333333333,1.7966799999999998,3.801645,3.753875,2.0376866666666666,0.7826741666666667,7.453639487179487,2.729805,3.712535,3.93511,7.41243,2.574925,3.86018,3.66458,3.018625,3.826585,5.9621,7.046312499999999,3.9672,5.0222,5.4154,2.8752266666666664,4.791785,4.06346,4.90902,1.0782022222222223,0.5243078571428571,3.132875,3.4696,3.0177366666666665,5.69815,3.72328,4.2891,4.86613,4.902925,4.42198,4.50036,1.1613099999999998,2.329815,9.712108333333333,2.367363333333333,1.9233399999999998,4.0643,12.271218134920634,1.4987675,4.81904,5.80905,4.63245,3.2147133333333335,2.3683466666666666,3.372733333333333,3.852655,1.1192533333333332,3.3298466666666666,3.90067,0.45427368421052633,2.2899366666666667,4.82975,4.453575,2.23527,4.0954,3.509765,4.933441666666667,1.2809133333333333,0.5819063636363636,3.652528333333333,1.1507671428571429,0.99779625,0.99779625,0.99779625,0.99779625,1.5810883333333334,2.841613333333333,2.7252033333333334,3.2107966666666665,5.3674,3.8288666666666664,4.920335,3.419525,4.48371,3.446835,3.96059,1.5007733333333333,7.09793,2.11979,5.39435,5.3060366666666665,4.735765,5.3147633333333335,2.9695633333333333,2.42063,2.69609,3.50906,1.2132833333333333,5.557665,2.58267,5.0035,2.9103433333333335,2.4279800000000002,3.701225,3.569475,2.86587,2.461446666666667,2.65117,1.446105,0.3815133333333333,4.872725,3.553125,4.152775,3.786935,3.919845,5.9598,4.5154,0.5510284615384615,3.3169700000000004,7.1498566666666665,1.8554866666666667,1.9774,5.88558,4.916235,2.6560099999999998,4.988165,5.4273,4.12016,4.78051,4.23633,5.23555,5.16305,5.09265,3.533985,5.607525,1.5932499999999998,1.592875,4.3769,4.05351,4.62102,3.158615,5.2509,5.25155,3.766685,3.406525,15.924475184752826,1.315061235955056,1.1662775,1.9413838636363638,0.492403125,0.45535866666666663,1.4651625,0.3427323529411765,1.305326,3.04747,1.3946239999999999,0.9546666666666667,1.00185125,0.4441975,1.00185125,1.00185125,0.4441975,0.8738846153846154,0.6774507142857144,2.558265,2.54912,3.9974,4.76815,2.77943,2.732225,4.07271,4.90888,5.4636,2.683335,4.409215,0.7280642857142857,2.4570713333333334,8.815626666666667,4.554825,6.860171666666667,2.64525,4.047035,2.318095,5.11115,5.8546,3.132615,4.163485,3.554025,0.9889466666666666,4.692265,4.89035,0.9711399999999999,1.3311920000000002,1.7772500000000002,2.442833333333333,2.81236,4.87694,5.48495,2.290035,2.290035,3.473959166666667,6.58284,2.0920166666666664,0.6371481818181818,0.7278571428571429,2.1751533333333333,3.423166666666667,1.0096414285714286,1.0096414285714286,1.0096414285714286,0.36072692307692306,1.08801,3.1719,6.1138,4.0213,4.3319366666666665,5.53715,1.10515,3.566266666666667,3.5442666666666667,4.047133333333334,6.138,2.94638,7.66685,5.47195,1.2000222222222223,3.8110999999999997,1.92345,2.692035,2.3191666666666664,7.2409300000000005,3.09651,4.617245,2.198545,4.07789,4.35371,4.74902,0.4430033333333333,2.2349633333333334,1.3921566666666667,2.808173333333333,3.912766,2.0827166666666668,2.625976666666667,2.22303,2.46726,2.6127466666666668,2.6671899999999997,2.823636666666667,3.266996666666667,1.291636,2.2096899999999997,1.9723766666666667,2.71292,2.2991733333333335,2.01654,1.7411733333333332,1.83748,1.62931,3.072585,2.1746066666666666,2.05017,2.1871633333333333,2.328396666666667,2.63591,0.7318677777777778,0.7318677777777778,0.7318677777777778,2.4738866666666666,2.3081,2.96618,2.85038,2.5883266666666667,1.9303333333333335,3.69871,3.3982166666666664,1.2551666666666665,2.4324733333333333,2.684563333333333,3.629836666666667,1.6405285714285716,7.11005,4.65294,3.01098,4.008795,3.933855,1.60167,0.5221057142857143,3.224185,3.7489,3.629836666666667,4.745,4.33722,5.09095,3.16466,4.15432,4.331045,0.957334,2.757355,3.334155,4.912509166666666,4.6508,3.559665,3.90076,2.60101,2.7225300000000003,2.53565,0.6241183333333333,5.228871666666667,2.592175,5.16145,2.7826133333333334,3.88952,3.06439,2.4649933333333336,3.1291866666666666,3.1291866666666666,2.5258933333333333,1.9636766666666665,2.88124,1.9886666666666668,4.3162,1.5490780000000002,2.630955,3.80929,4.148685,3.96202,5.1918,5.05105,2.38747,2.1257,3.18724,3.611175,3.861595,4.89146,2.80153,1.0517228571428572,1.0517228571428572,4.67368,3.78593,0.9531000000000001,4.86121,0.9531000000000001,4.391885,4.63209,5.05535,3.30511,3.546945,6.5441424999999995,4.1192408333333335,6.26615,0.8709857142857143,0.8709857142857143,2.17232,4.703233333333333,1.5245833333333334,3.17865,4.14055,1.1028042857142857,5.2598,4.2103,5.39795,5.39795,1.1775033333333333,5.3547,5.22035,4.471945,6.3419,2.2080725,2.2080725,7.00345,0.9916,6.9707,1.90102,6.17935,2.80236,2.42294,3.29598,1.7844740000000001,2.0624833333333332,2.62154,3.058203333333333,2.543837857142857,6.68794,1.934836,5.48145,3.4717000000000002,2.725213333333333,1.705465,2.046275,3.16885,3.377415,3.986195,2.60848,1.957835,2.06587,2.443405,1.13236,3.27652,1.98541,3.043415,1.9659125,1.9659125,2.88294,2.02977,3.712405,3.68433,5.32395,7.818666666666667,4.611185,3.38475,6.693360333333334,1.9185433333333333,3.3674333333333335,2.181,1.4827,1.7087925,4.56938,1.69865,0.4853675,0.6222883333333333,4.754795,4.34424,2.790445,0.9663277777777777,3.216885,2.55843,5.044,2.0958200000000002,1.891935,1.2181333333333333,5.1438,2.702825,4.26059,0.6422950000000001,4.386987083333333,4.8627,4.02402,4.331215,3.536275,3.827455,3.1285666666666665,5.7521,3.94306,2.589373333333333,2.732063333333333,6.010813333333333,6.2470625,0.7297125,4.393485,4.14803,5.2744,3.6289,3.6656666666666666,2.92255,3.4473000000000003,3.6062666666666665,6.09416,2.8563340000000004,2.5614220000000003,3.985245,3.749895,2.393885,2.571575,8.367516666666667,4.932285,1.9288999999999998,5.46175,4.610035,1.8394739999999998,3.902145,1.4865,1.7161285714285714,4.65377,4.28226,5.77805,3.0651766666666664,4.80028,4.888565,6.4918,4.874295,5.41685,4.54348,5.56,4.368445,4.493685,1.1206243846153847,1.1206243846153847,8.02722,0.8072775,1.7005471825396825,0.8072775,0.6777733333333332,0.3701811111111111,2.378320515873016,2.270185,0.48640857142857147,1.7005471825396825,2.02133,3.158775,1.8919119444444443,3.52906,5.2402,7.44135,1.984955,2.01925,2.58587,5.38435,6.0646,1.704395,1.658755,1.53007,3.188825,4.472275,2.59784,4.85619,6.396085,0.49891722222222223,3.897435,0.7485,3.006326666666667,2.4416525,4.331605,1.5174666666666665,4.350105,4.6477525,4.33476,3.199425,4.261035,5.7870925,1.9026275,3.15897,0.6844261538461538,2.82435,2.816495,1.2013019999999999,2.8701966666666667,2.40491,2.5099033333333334,3.71395,9.445174999999999,3.2093754545454547,3.592675,3.316555,8.27312,6.183390833333333,3.4326666666666665,3.96525,3.35776,5.6972,5.8896,5.7605,5.36795,5.12095,6.27625,2.701696666666667,1.5627125,1.77973,2.259723333333333,4.137175,2.3611666666666666,0.22371972972972973,0.22371972972972973,0.22371972972972973,30.625885595238096,0.22371972972972973,2.8713947297297295,0.22371972972972973,0.22371972972972973,0.22371972972972973,3.3981463963963963,4.2019,0.22371972972972973,0.22371972972972973,0.22371972972972973,0.22371972972972973,0.22371972972972973,2.945585,4.84133,3.267695,0.31814615384615386,0.31814615384615386,4.249486666666667,4.109507708333334,4.159467708333333,3.2424900416666667,4.174098571428572,8.050133333333333,11.46736033916084,6.705686666666667,7.911790000000001,6.937536375,2.459096666666667,6.142268095238095,5.176066666666666,4.601018493589744,0.31814615384615386,8.086739333333334,6.867728,6.992003333333334,3.067825,9.037677875,15.404221875000001,19.12265982371795,57.79297207803634,120.01796368365295,1.3732616666666668,3.3982666666666668,3.0891,3.9579542458172456,0.31814615384615386,1.782223076923077,8.198142708333334,14.1657305,19.837878333333336,48.72842506349207,13.321099541666667,2.79955,0.2684648275862069,0.2684648275862069,4.477223333333333,2.728423333333333,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,0.2684648275862069,8.7017,0.2684648275862069,0.2684648275862069,0.2684648275862069,2.78487,1.8807433333333332,4.03009,3.69422,4.213525,5.3621,2.501725,4.330835,4.49068,2.993135,1.5511666666666668,3.60089,0.9853816666666666,2.25143,2.648023333333333,5.502946666666666,6.175406666666667,2.8676366666666664,5.627851055555555,0.4021161111111111,0.474056,2.463643333333333,2.938053333333333,3.280295,4.296985,3.25779,7.6433349999999995,3.624875,3.01242,3.36383,4.00535,3.65747,3.19392,5.7855,3.47047,0.45181,0.8897727272727273,4.4239049999999995,1.7135125,3.60931,3.79174,4.40089,3.42238,2.626875,2.62051,0.583328,0.739764,4.108165,2.5541666666666667,4.38438,3.738715,4.509666666666666,2.61294,3.0862,6.0732,5.7467,3.480105,0.8912009090909091,3.3405,5.2086,2.23661,0.962715,1.9469266666666665,3.93083,5.4795,1.827455,3.53601,3.821525,5.30185,2.20704,2.4212266666666666,2.220405,4.593235,2.512175,3.906615,0.6887471428571429,2.8264099999999996,3.35707,1.870965,6.629981666666667,4.23206,4.264495,4.698215,2.78327,2.110515,0.6155745454545455,4.837205,4.16403,4.7432,3.62957,6.11115,5.1267,2.80623,1.9170725000000002,1.2913142857142856,5.32945,1.90434,2.64004,9.630565,4.6355,5.03735,3.271415,0.9763644444444446,3.039395,1.1963885714285714,3.258325,6.4897,5.3807,5.25015,3.73453,5.09435,4.87677,1.77672,1.8449633333333333,5.55075,3.2209833333333333,3.6445333333333334,2.4010625,5.12235,5.09985,1.5230249999999999,3.6316333333333333,2.768135,2.73698,4.884065,9.37105,4.59766,1.6792125,4.796665,6.00469,4.5801375,4.120055,3.805505,4.18618,4.46484,8.018775,2.356786666666667,3.060625,5.1207,4.51284,2.980585,3.279685,5.3243,4.185255,3.576555,4.260743333333333,18.98973,2.9363333333333332,2.65321,3.1790933333333338,5.731318333333332,1.13322375,4.818595,2.0063975,5.1331,1.520975,4.131095,4.407025,4.097235,0.9766625,4.46433,4.511165,1.5994275,4.808802954545454,4.34204,1.2431128571428574,3.55411,1.98885,2.435765,1.592405,4.203905,3.78525,3.922335,3.537885,3.15,4.265595,8.21213,4.70523,4.701935,5.1343,3.3747333333333334,4.269725,5.0511,6.741426,0.9832919999999999,0.9832919999999999,4.70088,4.91344,2.09925,1.523305,7.886875,4.00851,3.44483,4.08776,4.64437,4.60924,3.41733,3.738255,7.032755,4.230606666666667,4.91626,5.0402,1.4965857142857144,2.852625,4.316345,5.4129,3.57763,0.19303055555555554,2.0875875,2.283695,2.6917299999999997,2.0372066666666666,1.0096577777777778,1.246295,1.3404925,2.6698,0.6785677777777778,1.3200871428571428,2.2370525,3.661135,3.944433333333333,2.4268966666666665,2.8871800000000003,2.9688766666666666,2.8659133333333333,0.7251540000000001,0.95141,2.95523,4.796795,4.35919,3.55947,5.3414,4.81484,5.2142,2.06644,4.20603,5.28725,4.947095,6.7724925,3.83131,0.4722288235294117,5.89985,4.61446,4.22536,5.22175,3.14121,2.06102,4.46594,4.48096,2.899505,5.0706299999999995,4.50117,1.4207366666666665,5.0706299999999995,4.62932,6.5212900000000005,3.624015,1.2762222222222224,4.17619,4.86951,4.3182,2.5782599999999998,5.3647,1.419905,2.033455,4.32063,3.444695,0.7950455555555556,4.60907,4.95022,3.924805,4.55357,3.32415,3.5157000000000003,1.709342,2.02435,3.07577,3.85474,3.6325333333333334,2.414433333333333,2.848925,2.2823510000000002,5.3969,1.7843142857142857,0.824458888888889,5.73953,3.99246,1.4721579999999999,2.6435766666666667,2.53953,3.7634666666666665,6.758615,2.423357222222222,0.924789,2.54354,4.696075,2.36954,4.840435,5.99665,5.2423,5.11025,4.1587,5.40115,2.125296666666667,2.13179,1.6294666666666666,2.0955733333333333,1.817735,2.4592,2.1740333333333335,1.5975125,2.814515,2.96917,3.666975,6.54775,5.36265,4.262145,4.71801,3.972165,3.98361,4.54773,0.8838875,2.67289,5.33365,1.090678,0.78648,4.742495,3.358015,2.7985733333333336,3.4208687500000003,6.17486,4.952605,1.0605499999999999,1.3656428571428572,0.6784033333333332,3.9918383333333334,2.1420533333333336,2.7474933333333333,1.1821557142857144,3.260816666666667,2.6915666666666667,5.6758,4.948245,4.481025,5.4789,3.99152,1.3172966666666668,3.48301,1.7084266666666668,3.653035,4.34275,3.51093,2.619623333333333,3.246356666666667,2.71265,4.95308,3.952905,2.892585,2.8187,8.22983,10.508465,4.224325,1.2812242857142857,5.43385,4.134155,5.55385,4.434285,4.235915,3.809025,3.32889,4.02141,3.7781383333333336,5.39469,3.78652,4.100495,4.484345,1.903968,5.30225,5.92005,4.760895,3.23205,3.172285,6.602825,0.6605774999999999,2.8135033333333332,2.705776666666667,2.3352533333333336,4.93836,3.231625,1.3585500000000001,4.751235,3.732333333333333,3.667205,4.744275,3.646748333333334,6.700144999999999,2.938023333333333,2.9364899999999996,3.06505,3.13829,4.13556,2.49936,2.156753333333333,3.10314,4.061005,3.472054583333333,1.869435,1.4306175,3.7201674999999996,3.39497,0.9394944444444445,3.0049216666666667,3.0049216666666667,1.4519975,6.09315,3.13563,3.16035,3.31586,3.32902,3.35195,3.41929,3.307365,3.19541,2.058523333333333,0.5792833333333333,3.16383,5.788485,2.9707,3.608445,3.226,4.04386,4.178265,3.157265,3.022225,3.51753,3.831935,3.03152,3.567065,3.4432,2.57362,3.87756,3.6943,8.80052,3.835665,3.494295,3.25092,3.94005,4.014655,3.56498,2.31323,3.598535,2.56177,2.80664,2.789125,3.19005,3.66529,1.7339466666666665,1.7339466666666665,2.28683,2.83388,3.188045,1.54825,2.51312,3.351105,1.8316839999999999,2.82807,1.54825,4.427145,2.91133,3.9646049999999997,2.857135,3.168875,2.35672,3.190515,3.791705,4.84377,3.27927,4.16127,3.69191,4.225855,3.58273,2.974315,3.240995,3.05744,3.707995,2.61585,3.457425,4.888875,3.982955,3.72883,0.29832478260869566,3.467585,0.42073,3.932175,3.499,2.84461,3.504675,3.83612,6.031688333333333,3.266605,2.53082,2.3970266666666666,2.6654933333333335,0.761799,6.137976666666667,3.06506,3.41913,5.18025,1.939205,2.557355,3.13849,3.256265,6.51658,4.52593,4.93641,4.584845,4.7869,4.258595,3.52109,1.5132183333333333,1.66377,3.76035,4.521985,5.63199,2.3726366666666667,4.49419,1.83699,3.5908333333333338,3.69448,1.8673719047619048,3.875995,4.66336,3.6682333333333332,4.132366666666667,3.5208666666666666,4.483825,5.1225,3.4425000000000003,4.179845,5.00525,4.84923,4.548355,4.345105,4.002105,3.575195,4.2518,2.671525,3.2046666666666668,3.2046666666666668,4.27368,2.5617733333333335,3.941245,2.55719,4.824985,3.2671433333333333,3.375045,1.823605,1.8255566666666667,1.1506833333333333,1.1506833333333333,1.8210000000000002,3.5946,1.6520933333333332,2.8558233333333334,4.479715,5.150703,3.4536333333333338,5.3013,5.57451,3.14494,3.254875,3.0849233333333337,1.5705200000000001,4.502355,4.495385,6.4268125000000005,1.8983233333333331,5.80775,5.34095,3.17876,3.385645,4.1771,6.79926,2.27875,2.5385,4.22005,0.4872014285714286,4.568565,3.983895,4.79984,3.78125,4.320605,1.705002,1.726444,3.888085,4.386695,2.3807666666666667,3.618185,4.53263,4.621295,1.241975,3.996255,5.3534,3.85591,5.17745,3.0895200000000003,5.888598333333333,3.72756,1.52872,3.69172,1.2366483333333333,2.9466966666666665,7.833145,3.193395,0.8394618181818182,3.531725,4.470355,4.301175,2.223995,2.223995,5.219828333333334,5.522,2.77213,0.4626766666666666,1.94103,4.365268333333333,4.657125,4.286915,1.752354,3.0038366666666665,3.53573,1.1411961184210526,1.1411961184210526,1.1411961184210526,0.6642698684210526,1.2373532017543858,0.5730833333333333,1.1411961184210526,0.6642698684210526,0.23166736842105262,0.8047507017543859,0.23166736842105262,0.4326025,0.4326025,0.4326025,0.4326025,1.1012921666666666,1.22786,2.3524533333333335,2.2900066666666667,1.0598033333333332,6.124926666666667,2.610376666666667,6.258976666666667,2.9665866666666667,4.12285,2.857665,3.128685,2.7562841666666666,4.61878,2.7117733333333334,4.154965,4.013945,5.4134,2.3389125,5.154,5.15735,4.00133,3.089175,4.95709,3.098695,4.492175,5.3636,4.77662,6.18355,5.04145,1.35385,3.186575,3.759625,2.51714,15.61785,4.6078,5.14145,2.855036666666667,7.37869,4.12927,3.865545,4.7616,3.052025,1.08483,2.508045,4.13771,4.73347,4.756805,3.36881,4.065475,2.8914833333333334,3.93635,4.80281,4.350845,6.854051666666667,9.499046666666665,1.34076,3.497755,4.218035,4.015305,3.532745,3.594775,6.77928,2.578255,2.8773,2.507455,3.907225,3.76024,5.0982,2.466015,1.6725725,0.8855040000000001,4.671235,4.850045,3.763235,4.71447,4.01693,4.68968,4.160355,6.39795,5.5816,3.612465,5.39205,3.85073,3.172765,3.254785,3.44778,1.8304875,3.92644,5.50845,5.85415,6.304216666666667,6.304216666666667,2.27967,1.8304875,2.3039,2.97735,0.693505,1.563135,0.86963,1.5175975,2.94447,0.35451,2.959035,4.156135,1.5175975,3.49908,11.081344999999999,6.6564325,2.3445556666666665,1.1187099999999999,1.8019966666666667,4.51493,4.41809,6.498373428571429,1.9397375,2.023495,4.64263,4.46113,5.0429,1.8024833333333332,5.4463,3.565,3.20265,5.3705,7.238656000000001,3.84591,2.396465,2.7300766666666667,1.7952666666666666,4.336195,5.5844175,1.8420320000000001,5.9353,4.48859,5.81423,0.6315233333333333,5.080346666666667,4.010485,5.41525,2.95437,2.760915,6.7209,9.18515,5.5626,2.121,2.121,2.121,6.3617,4.681865,5.747,3.13642,2.6225,2.4692055263157893,4.50179,3.46714,2.4800915,1.801555,2.4800915,7.064481499999999,4.4073,4.323163095238096,6.05486,4.323163095238096,4.323163095238096,3.1492514285714286,6.88321,5.321914,2.825234,2.825234,2.58853,6.45065,2.789265,3.516075,5.469831666666666,5.469831666666666,5.469831666666666,7.15809,3.5126324999999996,3.418265,3.5474625,3.3775649999999997,0.883015,6.956113333333334,2.5488133333333334,4.486415,3.230845,13.133452666666667,4.290445,5.4115166666666665,6.65992,2.5737883333333333,3.371445,1.1174283333333335,5.4115166666666665,3.37168,1.6479725,1.6479725,2.8943,5.157911666666666,1.7689925,4.6646366666666665,0.842109,1.39386,0.842109,1.887135,2.6111015,5.1666039999999995,3.757815,1.39386,3.05633,4.918645,1.093845,3.467075,4.33365,2.11068,4.164176666666666,2.33239,3.226825,3.05257,0.872632,3.642555,2.422095,2.413585,1.64387,3.199855,4.061995,2.781025,3.59823,1.2983477777777779,1.2983477777777779,1.2983477777777779,3.178895,2.3973999999999998,2.3973999999999998,3.171545,4.077515,2.2794166666666666,1.342405,1.342405,2.88705,4.2709475,0.7863975,1.4246800000000002,2.7777,1.51805,2.94273,0.872632,0.872632,2.012723333333333,0.872632,3.1979733333333336,0.8050866666666666,3.1979733333333336,5.91038375,3.24584,2.377946666666667,1.6779381944444443,0.6326666666666666,2.310604861111111,3.371925,2.310604861111111,0.9047244444444443,3.2903,3.78745,3.839355,3.76415,2.72229,3.60613,1.8982133333333333,0.9612576388888889,0.42612875,0.9612576388888889,0.5351288888888889,0.9612576388888889,0.9612576388888889,4.770525,5.3757,6.13025,3.515915,4.89479,5.06245,5.18105,3.36688,4.116905,1.3915514285714286,3.1494,4.0943716666666665,3.85219,1.39623,2.68505,4.60415,3.829645,4.261655,3.541715,3.214935,3.623015,3.04415,4.623305,2.6289833333333332,5.763,3.74021,4.062955,5.042099285714286,0.9819397857142858,2.15683,3.94443,6.697,5.07555,3.935515,3.3226633333333333,5.26915,8.103861666666667,3.9992,3.105175,3.5840666666666667,6.34815,4.107755,5.7933,5.74435,5.1431,3.093495,5.10365,4.91994,3.502166666666667,7.486835,2.9423366666666664,2.3925075,2.1973433333333334,5.1469,6.60905,5.96595,5.6357,4.517015,5.4011,5.7822,0.501833076923077,7.457315,4.41122,4.36197,4.199255,4.80847,4.299745,3.119813333333333,2.98095,1.3476066666666666,0.5679584615384615,1.8318940000000001,3.0475833333333333,3.2987,4.0719,4.196145,3.70915,11.752395,3.63878,3.82027,2.96882,0.6808383333333333,6.035466666666666,2.8040000000000003,1.48376,4.2877600000000005,5.64513,2.84113,8.48646,4.48699,3.01045,3.01045,3.01045,4.02783,8.98194,3.80044,3.018625,3.018625,3.395745,9.45051,1.0167925,5.3015,4.537645,4.224045,3.1143,2.1591566666666666,4.229875,3.926175,5.87425,5.926121666666667,3.857825,2.76415,3.815495,4.198035,3.77154,1.2896875,3.18955,6.16121,3.5912575,4.84257,1.114655,3.8260666666666663,2.5200066666666667,2.567903333333333,1.798175,1.7033633333333331,2.1310566666666664,5.7498,2.09133,4.244085,5.66335,1.934836,4.713935,3.82877,4.907545,2.9098400000000004,2.17737,2.75599,4.6176,4.021393333333333,4.021393333333333,1.1452175,2.2612566666666667,3.0272166666666664,4.389718666666667,2.3170456363636367,4.935798,1.7417580000000001,2.7755166666666664,2.0637366666666668,2.18271,2.18271,4.83967,7.68704,1.96704,3.0889866666666665,2.419505,6.1179,3.074345,0.73366,2.96436,0.73366,2.86029,3.362555,4.91884,5.81645,3.579945,4.801331666666666,6.0312,2.30937,2.2564233333333332,2.53452,2.152,6.25635,4.562845,2.75647,3.972225,2.755055,4.885265,1.06463375,1.085788,1.88502,1.5727766666666667,2.53255,2.6598200000000003,2.1490566666666666,3.1765966666666667,2.656345,4.53618,2.625523333333333,2.5187,2.701233333333333,2.3123066666666667,3.1931733333333336,2.68465,1.9126,2.45363,4.237505,3.466385,3.330855,4.37717,2.97645,2.17566,2.189115,1.3309483333333334,0.3141255,0.17230304347826086,2.1541133333333335,2.17165,0.17230304347826086,4.145551376811595,2.29118,0.17230304347826086,5.863964166666667,2.3419350000000003,6.11054,3.39289,3.6123999999999996,2.3949933333333333,3.0388333333333333,2.243815,4.300755,3.3491666666666666,3.4049666666666667,0.5055594736842105,3.92999,2.535176140350877,2.77162,1.69225,2.4608675,4.326565,2.515175,7.815035,5.2043,4.18244,3.7624,5.9008,6.00982,1.7337266666666666,3.8599449999999997,2.00261,1.896895,7.9765,8.76384,1.35944,2.0871625,3.569875,2.45352,2.833125,3.215315,2.69535,4.202635,2.355655,3.102865,3.66028,3.11093,7.43352,1.38941,1.86094,2.79921,3.391575,1.7457633333333333,3.39987,1.35841,3.59674,3.322515,7.26267,3.39259,8.609232500000001,4.100545,1.8018399999999999,1.6554666666666666,3.168075,5.81132,1.5744425,1.4842633333333335,5.45123,3.336635,4.01225,2.730145,2.1427766666666668,3.101055,10.229405,4.83492,6.23611,3.52352,2.285375,2.136185,2.60042,2.691205,3.29725,1.8800833333333333,1.5863566666666669,2.510263333333333,3.46603,1.703455,3.194255,2.52412,4.17524,3.67522,3.09036,1.29684,2.410655,1.0642733333333334,1.303102,1.66802,3.34264,3.776765,3.629415,2.683655,3.673535,3.820555,2.834435,1.45015,3.430865,3.4161525,3.11149,1.89087,3.12134,3.30113,1.499835,3.39151,1.7369133333333335,3.85198,4.15534,5.1682,2.595365,3.85915,1.691245,4.290825,4.53593,1.669755,1.2374585714285715,4.104733333333333,2.56216,4.298165,4.08916,2.91299,4.96602,4.38402,2.3677333333333332,5.49255,5.3191075,6.50875,4.69317,6.014992,3.881445,1.63452,2.6477333333333335,4.103315,5.676,2.8228000000000004,7.46092,1.3813571428571427,3.6451333333333333,2.1137,1.7541319999999998,2.407923333333333,2.71046,0.37543642857142856,2.8674966666666664,3.02947,3.482735,2.465435,3.5970666666666666,2.2105200000000003,2.4118933333333334,2.3471525,8.79994,5.1919,1.537054,5.0905,2.518893282608696,0.7096513333333334,2.8110166666666667,7.742395999999999,1.8107780000000002,4.67127125,6.399318333333333,1.7316575,1.5520525,1.5758025,4.51647,3.14867,4.330195,4.1438524999999995,2.4827166666666667,3.98605,0.853022,2.774522,4.448155,4.14164,5.49945,2.87034,4.72924,4.433125,5.04835,5.3882,6.0661,4.82786,4.691155,4.05114,1.513046,1.933785,2.9459,3.271295,1.2182000000000002,4.29432,2.806783333333333,3.386433333333333,4.11549,2.974603333333333,2.799023333333333,1.5416366666666665,3.19643,2.7556205555555557,2.5934733333333333,2.7882700000000002,1.9448333333333334,1.978685,2.34798,4.803785,4.9897,4.32205,4.882945,3.419505,2.15319,3.1377,5.23245,3.4555666666666665,4.596035,5.2636,2.787755,4.322791666666666,1.6264066666666668,4.112855,4.966211666666666,6.061561666666667,4.26423,5.33675,5.93575,3.6422666666666665,4.152154166666667,4.66975,3.336785,3.8761365000000003,3.503325,1.332915,3.079225,1.726195,2.192865,4.127395,5.5222275,3.8761365000000003,4.233025,3.331565,1.5245833333333334,3.80236,2.103225,2.5990233333333332,2.162755,2.71172,1.7334999999999998,1.7334999999999998,1.7334999999999998,0.67606,0.8088188888888889,2.225832222222222,1.1504925,3.43785,1.3197116666666666,4.65134,5.03085,5.1222,3.144505,4.070825,3.04867,5.15135,1.836685,3.006085,2.41687,3.05016,5.798672,4.670275,5.4782,3.92036,0.98623,2.16879,1.2649566666666667,3.620845,3.98443,4.33563,5.35935,5.30075,5.46005,5.60505,4.0149,1.696935,1.5371766666666666,5.401373333333334,1.011717777777778,1.2866066666666667,3.01112,8.241,3.09386,3.810605,3.04765,5.585485,1.70815,0.9642666666666666,1.55779,3.086445,3.491115,3.814965,3.60378,1.88258,6.444884999999999,3.0605766666666665,0.91336875,5.3962,2.8171766666666667,3.1389033333333334,2.2817766666666666,3.640333333333333,5.967309166666667,2.9760066666666667,3.2738333333333336,3.7291333333333334,3.156663333333333,3.0954433333333333,3.0303066666666667,2.830215,1.925105,4.561235,4.891375,4.476195,1.0040411111111112,0.6905140000000001,3.503033333333333,2.57468,1.05208,2.4621666666666666,4.83301,4.43678,7.156225,4.616635,3.6049333333333333,1.661676,3.57583,3.597775,2.8941233333333334,2.7955,4.328545,2.894746666666667,4.951305333333334,0.9369777777777778,5.37225,1.614658,4.621675,4.696905,1.98414,0.9680075,2.986725,0.41163299999999997,3.038555,6.2192,5.8055,2.7959060000000004,1.419808,3.3584,0.7341511111111111,2.6011266666666666,0.7341511111111111,4.016455,4.47672,1.310325,1.91747,5.181301666666666,1.7327266666666665,3.494065,3.82334,4.646755,1.32774,1.5908866666666668,4.002295,5.50465,5.0305,3.5163140000000004,2.26712,3.0104,1.5780275,2.2319675,2.172235,2.55685,4.78698,1.3537222222222223,1.3537222222222223,3.40187,5.04697,7.397934166666667,5.190523333333333,8.56541,2.092585,3.89295,4.038295,1.6329116666666668,3.766545,4.326875,3.388085,5.85965,2.86181,2.32624,3.148846666666667,4.18393,1.15253875,3.83565,4.552555,1.1009083333333334,7.779346666666667,2.693165,3.097215,2.9273116666666668,3.871925,3.436005,4.214109583333333,2.90596,2.7692866666666665,1.8496566666666665,3.6239666666666666,2.209655,2.2466925,8.273323333333334,3.3657333333333335,3.4982333333333333,4.167505,23.095278276556776,0.7321666666666666,3.0085,4.55582,4.617635,8.24742,4.704245,4.132485,4.94637,7.667136666666666,3.41842,2.0157333333333334,4.814381666666667,4.451065,1.251014,1.251014,1.251014,2.56157625,1.6499125,3.01923,1.514935,3.063055,1.5658266666666665,2.624415,4.31048,2.858675,1.514935,3.37242,2.72239,4.649263333333333,5.290885,5.1029,0.8411666666666666,3.14915,2.630895,5.1986,3.75951,2.696965,2.1638825,1.65805,2.2361275,1.379246,4.38326,1.49011,4.890325,11.840126666666666,2.8227466666666667,2.44514,4.927740833333334,3.4592333333333336,4.330133333333333,6.27515,2.0296166666666666,6.183390833333333,4.78191,1.01979,1.1534042857142857,6.502651,4.20146,2.1124475,4.08545,1.8985925,4.74821,5.0507,4.728605,3.95168,1.36283,4.09206,5.1374,5.18425,6.206811,3.90357,5.4056,4.757555,3.871375,5.0718,3.08396,5.123,1.93538,3.26286,3.410865,4.7701,3.981245,6.533,4.461885,3.0044033333333338,3.4805333333333333,8.9041,4.71622,3.3655000000000004,3.62839,3.401335,4.38942,4.24421,4.90908,7.119901666666666,3.63814,2.6232533333333334,4.150761666666666,2.299835,4.875545,3.1073166666666663,6.33544,1.5789366666666667,4.398985,4.90939,11.69672,0.49338857142857145,3.925165,4.53181,0.6831621428571429,3.64961,4.47809,4.634595,1.0633599999999999,4.72513,4.975523333333333,2.745006666666667,10.042801666666668,3.461,1.9251566666666668,2.22265,4.01447,6.1962,0.5768116666666666,4.029705,2.2328625,4.857085,0.71489,4.18824,5.80815,5.42975,3.4466,6.72235,4.504675,3.7282975,2.56972,2.80363,4.31649,4.755355,5.2168,5.37125,4.976715,3.3559,7.54688,2.961325,3.5593605000000004,2.2418125,3.49838,2.5864266666666667,1.5155833333333335,3.0337633333333334,3.18163,2.9286066666666666,3.8271333333333337,3.765333333333333,3.13804,2.8697666666666666,5.45325,3.296056666666667,3.692985,5.00275,3.3500333333333336,1.1284999999999998,3.211156666666667,2.9104266666666665,3.962365,3.345266666666667,3.121793333333333,4.5511116666666664,1.8778066666666666,1.7458,3.02279,3.723885,4.670995,1.12318375,4.67514,3.112915,4.1007,3.10941,4.9351545,3.8776,3.15422,4.90775,1.726265,3.84087,0.68224375,4.57794,4.97836,16.170687575757576,3.606533333333333,1.3721866666666667,5.02805,0.6723035714285714,2.66025,4.33264,1.758615,1.3923257142857144,4.04065,4.55926,3.3132966666666666,0.7076133333333333,2.51846,7.52306,3.825365,5.74455,5.16255,4.545585,3.18772,3.7952666666666666,3.3652333333333337,6.882786666666666,3.91731,5.4872,2.200445,0.5050783333333333,2.14952,2.81032,2.66418,2.656635,4.59324,2.9654833333333332,4.9629,0.7121974999999999,4.754525,3.768225,2.913605,1.14311,2.80334,2.0199833333333332,5.06915,3.92318,2.128955,1.6788857142857143,4.24837,5.1704,5.1936,6.41142,2.11248,5.54495,5.4059,5.05285,2.39724,5.1093,6.385935,5.45405,2.89601,4.890695,2.886785,2.85564,3.915125,3.871585,1.3635650000000001,4.7463,2.49599,2.932873333333333,5.682265,5.682265,5.12585,1.819584,4.82015,1.035095,1.8223120000000002,5.0158,2.7983100000000003,1.42853,3.4189000000000003,0.8796060000000001,4.3101666666666665,5.34985,3.207405,4.871755,4.2704,3.848225,5.5842225,3.40717,3.635666666666667,3.2345333333333333,2.326096666666667,2.648475,2.9363499999999996,4.72681,1.4185560439560438,2.88362,4.49091,5.6244,2.4828870833333334,4.337475,4.55188,4.795693333333333,3.4517333333333333,5.40095,5.1369,5.60565,4.918385,4.065755,3.890385,3.741065,4.813995,5.4879,4.75315,5.0053,4.391375,4.62434,0.7582650000000001,5.27725,4.733345,4.377645,7.121157500000001,4.565905,4.489385,4.42322,5.03745,3.845695,3.764315,2.18455625,4.423365,1.99345,1.3360685714285714,4.064285,2.0801133333333333,2.46135,3.6561106666666667,3.3419333333333334,3.192805,1.11747,2.2024275,3.993245,4.086355,1.889825,1.889825,4.490815,1.808718,3.1610133333333335,4.633935,3.708,3.67834,1.4956233333333333,2.03039,3.7346225000000004,1.93501,4.262415,4.673965,4.355555,4.042035,8.534996666666666,2.706575,4.1964,4.87867,4.23519,2.9647799999999997,4.269395,4.472605,4.547285,2.29347,2.6361966666666667,4.602955,4.23725,3.93735,4.14522,1.5951775,3.57757,4.48687,4.598405,4.14132,4.0398475000000005,4.0398475000000005,3.2424866666666667,4.381325,4.791205,4.20601,1.842314,8.090275,4.132535,5.26595,4.552345,4.47749,5.2615,4.93679,2.88011,3.77018,3.867435,5.2185,2.03506,4.84361,5.871353333333333,5.5414,0.724005,4.765067500000001,1.06894,5.5211,4.60975,5.03865,4.38987,5.77565,2.762086666666667,2.762086666666667,0.948452,2.4278275,4.87075,3.75261,4.09692,4.503495,5.83715,3.18661,4.254135,1.4042783333333333,2.93369,1.616775,1.19175,4.508794,0.8441890000000001,2.4172966666666666,3.2069666666666667,1.6287099999999999,2.2843675,2.61778,1.3791866666666666,6.22624,1.779605,2.4017399999999998,4.288955,2.43823,2.961066666666667,3.955905,4.697355,2.422423333333333,3.0776533333333336,4.184866666666667,1.656996,2.156925833333333,4.71098,0.6484442857142857,2.47073,2.784895,3.3435666666666664,2.9887333333333337,1.25995,0.84335,2.36085,4.097255,1.242675714285714,2.2605925,1.14248,5.642779166666667,2.3059125,4.61765,4.6118,4.76643,4.92616,5.6789,4.47204,4.34442,1.4988983333333332,4.102133333333334,1.7598120000000002,2.6995299999999998,1.1942885714285716,4.40999,2.2722525,5.524606,4.01958,3.892925,1.6756799999999998,6.7582925000000005,4.5996,1.5685666666666667,4.01038,2.996615,3.97736,3.33085,1.99086,1.99086,3.3286833333333337,1.3921066666666666,1.3921066666666666,2.39724,2.71721,2.01654,1.2551666666666665,3.3546,1.08793375,3.1710166666666666,2.46236,1.87382,1.58915,2.21141,2.3352175,0.2769594117647059,2.5417,1.1915566666666666,2.4103566666666665,2.0637366666666668,2.38747,1.0849022222222222,1.13236,3.5942333333333334,3.235806666666667,1.99086,1.7135125,2.0056533333333335,2.4937733333333334,2.4231366666666667,1.9450880000000002,2.452733333333333,1.09114,3.6058,3.30828,2.4027866666666666,1.474512,1.130906,2.519725,1.130906,2.519725,0.8025,0.8025,0.5464249999999999,2.5636,2.4973933333333336,0.8025,2.2446725,2.5670966666666666,2.3188175,1.62931,0.7318677777777778,0.8025,0.8025,1.5790039999999999,1.5790039999999999,2.150755,1.7135125,0.8025,2.34422,0.46024384615384617,2.85055,2.0854333333333335,2.6006533333333333,2.71237,2.71237,0.3293975,0.3293975,2.39724,2.02738,2.28532,2.00392,0.3293975,3.7166,2.540625,1.681244,0.62054375,1.681244,0.62054375,7.8015,2.4187499999999997,3.9476999999999998,2.7182633333333333,3.3474,2.9017700000000004,2.9323333333333337,3.4535,2.3838725,1.7519825,2.7563933333333335,3.9992,2.3722,1.5790039999999999,2.3225673015873016,2.3225673015873016,2.7198466666666667,2.26261,4.24112,2.3051833333333334,3.385733333333333,2.692736666666667,1.679138,2.6643,2.50415,0.8212245454545454,1.5435925,3.52997,1.8783239999999999,3.082316666666667,2.9261866666666667,2.6126,3.862033333333333,1.6422733333333335,3.699033333333333,3.289593333333333,4.309366666666667,1.264258,0.2684648275862069,1.2877242857142857,1.2877242857142857,1.134311111111111,3.29243,4.047133333333334,2.6750066666666665,2.0655733333333335,2.0655733333333335,2.351895,1.7369133333333335,1.02484,1.93705,1.93705,0.8025,2.39724,2.842836666666667,3.585566666666667,2.46236,2.1224,2.1224,2.1224,1.0846133333333334,1.4827,1.4827,2.57695,3.1115666666666666,2.6843003598484847,4.25959,2.5865,3.086873333333333,3.410745,3.77289,8.0117,4.274685,4.44987,3.8038666666666665,13.19452,4.845775,3.67458,0.90115,4.24613,3.108595,2.07945,3.645555,5.424,8.013217333333333,6.05855,0.5245423529411765,4.12025,2.50263,3.883665,2.43731,4.510455,4.890575,4.122285,8.450445,3.350255,3.947055,3.81962,3.412377727272727,8.239546051282051,3.356,2.5918466666666666,3.87344,3.79932,4.92251,3.868145,6.958133999999999,5.2194,1.27309,3.998575,0.877265,5.00345,6.13355,4.09407,5.101,6.11805,3.389195,5.17465,4.406005,8.26837,4.01753,4.882778,3.650933333333333,4.93997,2.9106,0.6860975,0.6860975,3.475175,3.974035,2.13633,2.3064,4.131565,5.7842,4.020835,2.140165,2.6369,3.097235,2.677236666666667,1.18593125,4.262545,4.900155,9.58418,1.7696200000000002,3.69612,3.955935,3.061425,2.7800766666666665,8.13631,4.224345,3.8344666666666662,3.07103,4.107245,3.4356000000000004,3.0194666666666667,3.0151066666666666,3.830295,3.89447,4.36919,4.515115,0.3755806666666667,1.3289566666666668,2.4953933333333334,1.7132025,4.977745,3.867175,2.593106666666667,2.4638175,4.487825,4.01002925,2.3779375,2.562635,0.877086,2.505925,2.683566666666667,2.683566666666667,5.4174,1.9031325,3.19727,2.3087266666666664,2.303036666666667,1.6652633333333335,2.817375,4.39623,4.145225,4.27398,4.97959,4.876295,2.9507,2.366983333333333,1.8958359999999999,4.971385,5.639916666666666,2.2219233333333333,2.9932700000000003,2.363625,2.85612,4.098721666666667,2.809836666666667,4.786725,3.763775,3.389805,4.9342,2.8454533333333334,3.584175,4.13879,2.3431933333333332,2.9242500000000002,0.40208642857142857,3.077593333333333,2.77294,2.86499,5.9991,4.818495,6.1585625,2.0091925,1.66591,2.906085,5.36935,6.16205,5.1286,3.332993333333333,2.233703333333333,4.26548,2.24431,4.699105,2.7302199999999996,2.196395,5.74025,5.4012,5.1677,1.64193,1.8886425,1.024514,1.024514,1.162372,0.8917185714285714,0.780148,1.8410305714285713,4.729565,11.001114166666666,3.89794,4.875665,4.29718,5.7460125,2.722695,1.5782733333333334,3.7819708333333337,2.86997,3.52365,2.8487066666666667,2.6864033333333333,3.120343333333333,3.2709166666666665,2.74642,3.2966333333333337,3.5690666666666666,3.2462999999999997,3.5763,3.4985666666666666,3.0677800000000004,2.929956666666667,3.4501333333333335,2.49304,3.6416,3.30673,2.86144,3.5447333333333333,2.28788,6.030262571428572,3.6496333333333335,4.72086,3.249556666666667,3.4888,3.8493666666666666,2.827503333333333,2.69421,3.07276,3.386566666666667,3.6796333333333333,3.2073199999999997,2.070625,2.74213,2.90124,3.1919,3.1919,3.3006733333333336,3.332183333333333,2.6204233333333335,2.7418666666666667,3.4950666666666668,4.2405333333333335,2.769686666666667,2.891,2.6879833333333334,2.9551866666666666,5.035844166666667,5.1203,1.75295,3.2885899999999997,3.7049333333333334,3.5184060000000006,3.404166666666667,3.958,3.5709,3.0761233333333333,3.327832,2.0627,2.8879449999999998,3.557733333333333,3.490266666666667,2.5895466666666667,2.8508099999999996,4.078533333333334,3.016166666666667,3.081213333333333,2.42511,1.3964400000000001,3.718666666666667,2.75721,2.3715433333333333,2.778425,3.161286666666667,3.3834999999999997,1.974042,5.832245333333334,2.82991,0.968998,4.519845,1.9697141666666669,1.7292333333333334,4.88567,3.888665,3.23746,2.18012,1.6201825,3.3412,3.140535,3.557615,0.433712,2.149895,0.433712,1.851835,1.6201825,2.663005,3.85098,2.84945,3.973415,4.83851,0.602328,2.9396966666666664,0.9322175,0.4751682352941176,4.8888,3.967685,4.82802,2.4713225,5.6844,4.17527,3.770075,3.652105,3.6059666666666668,1.751856,6.31225,3.83781,3.878275,5.39875,2.69103,2.0117966666666667,2.007826666666667,1.4867383333333333,1.966305,1.1034,1.1034,4.307385,2.2894733333333335,5.945998333333334,2.118625,1.777185,2.22339,2.0587985,2.1776,4.53067,4.1730075,1.9954075,2.4241066666666664,2.0587985,3.32552,3.3527085,1.8311625,5.829926666666666,2.118625,3.139845,3.18856,3.16633,5.7442,4.742,1.86517,2.312075,2.23913,3.739445,4.777705,5.55655,2.0759425,4.164755,1.5705200000000001,1.716205,5.5394,11.59527,2.0628466666666667,2.793903333333333,2.2551099999999997,4.906805,4.392195,1.9914375,5.1631,4.294745,3.51257,40.57180723809524,2.9800533333333337,3.3482333333333334,0.51738,5.231645833333333,2.6726500000000004,0.9925066666666668,4.479415,4.172585,2.2833525,1.8436525,2.28659,3.81047,1.3528671428571428,3.092602,4.17901,4.88763,0.9212960000000001,5.2489,4.872005,4.664445,2.819803333333333,1.423115,3.6653075,4.481875,4.229485,3.091485,3.53812,4.00084,12.393805505050505,2.54427,2.986725,4.765325,2.80436,4.545945,4.065825,3.417,3.114435,6.22151875,5.33385,5.70535,5.1395,2.380075,3.96117,3.9641,3.524275,4.772595,5.069,0.10122771739130436,2.336625,4.1154,2.651145,1.3114933333333334,0.8281283333333334,0.8281283333333334,1.8821575,2.66653,4.75581,1.243946,2.955963333333333,4.562585,2.61965,4.2661050000000005,0.5869778571428571,4.52701,3.57903,4.661835,4.19692,4.87796,1.2834375,1.163225,3.9489666666666667,2.8752333333333335,3.0059133333333334,4.578612121212122,4.402755,6.460675,5.3323,4.544615,3.33871,2.1634816666666667,1.5168033333333335,5.47245,0.2995,3.21873,3.67768,4.01527,14.921456666666666,2.1049325000000003,3.5271333333333335,0.8307,4.48087,8.100335000000001,3.28859,1.93771,5.86385,3.3640333333333334,1.0399188888888888,3.698895,2.85373,2.82103,4.958,3.326863861111111,1.18835,7.512775,0.71509375,4.9729,3.1035156111111113,1.3515375,2.039263527777778,3.1731550000000004,3.1731550000000004,3.84344,4.214023583333334,1.5243875,2.424675,2.53942,3.562635,2.911815,2.51335,3.053405,3.4187,6.523075333333333,6.37155,3.888595,3.02116,4.998425,4.366305,3.76994,3.482035,3.532455,4.389005,5.4701,2.467843333333333,2.47194,1.4754916666666666,2.281143333333333,2.31984,1.530685,3.5907,3.5551666666666666,3.3482333333333334,3.07878,2.728596666666667,1.5511666666666668,1.5461366666666667,0.4647318181818182,3.2822433333333336,1.3929071428571427,1.5416775,2.794843333333333,2.5179066666666667,2.5596133333333335,1.0209675,2.3984075,2.44651,2.838595,3.46727,5.60365,3.69202,2.834705,2.12414,3.354695,4.24015,2.396045,2.6859,1.956795,3.695025,2.70665,3.75665,1.4788133333333333,0.596471,2.458235,3.233955,3.0396,3.890255,4.6372599999999995,8.599205,3.3451,2.5681866666666666,1.6892233333333333,1.795742,1.795742,2.6344966666666667,2.3906666666666667,5.04025,4.722075,3.79034,5.27525,4.477345,4.414785,3.5905758333333333,4.571645,8.22473,2.5945,0.4853675,2.5889533333333334,1.3244233333333333,1.0047614285714286,1.84443,0.944492,2.1550675,5.0132,5.41765,6.3124675,1.3476225,7.10639,2.13692,1.5290783333333333,2.6571666666666665,4.823305,3.6228,2.55985,3.80872,3.30125,3.935833333333333,3.0089900000000003,2.98572,3.1032566666666668,7.00454,2.552,3.81496,4.045645,4.420374166666667,1.5712266666666668,1.2744725,4.511215,2.8438,3.137286666666667,6.1081,3.564005,2.05849,2.536525,2.998585,3.4286333333333334,2.7326033333333335,4.4620725,2.9511866666666666,5.27545,2.416325,1.82742,5.00505,5.6437,4.800495,4.79408,1.5264499999999999,2.4047025,1.9718525,3.276475,1.5457933333333334,0.8638433333333334,2.6442533333333333,1.9862525,2.0200175,4.12801,0.8562249999999999,6.267569999999999,1.950625,0.7871190909090909,3.7149,4.38092,0.6674957142857142,3.3407855,3.0520668750000004,0.84335,4.683195,0.19117309523809525,0.19117309523809525,0.19117309523809525,0.19117309523809525,0.19117309523809525,0.19117309523809525,1.9533960000000001,3.96383,1.9533960000000001,1.9533960000000001,1.7420200000000001,0.19117309523809525,0.19117309523809525,3.268333333333333,2.9681866666666665,3.570605,3.29509,2.204275,3.42951,1.5538714285714286,1.674088,3.77154,1.70004,3.537433333333333,2.922159333333333,6.32527,4.963215,4.311205,5.2978,4.677785,4.781345,5.07305,4.11657,6.978995833333333,3.7827333333333333,3.7749666666666664,2.6790599999999998,4.910313333333333,2.520286666666667,2.07214,1.9277,4.99042,5.1942,4.716465,5.59955,5.7275,4.527325,4.8019,0.7529536363636363,0.7086257142857143,0.7086257142857143,4.77358,2.317883333333333,3.713145,0.9786742857142857,5.2514,1.524542857142857,2.32265,2.5736999999999997,4.530966666666667,4.530966666666667,6.82955,4.25703,1.6781499999999998,12.900308333333333,3.4596,1.2408777777777777,5.1259,5.4346,3.78601,3.03679,2.63766,4.515066666666667,0.6847733333333333,3.430566666666667,3.5436333333333336,3.6306,3.0736566666666665,1.4693733333333334,1.35487,4.9508725,3.15183,3.0620433333333335,3.4739,5.1669825000000005,3.3174091666666667,0.8126709999999999,2.309953333333333,3.3180633333333334,2.404078333333333,4.025266666666666,3.3798,3.2990100000000004,3.483233333333333,3.4104666666666668,2.4365533333333333,1.1809366666666665,3.0088833333333334,2.66003,3.72888,3.52884,4.57942,2.69607,3.394933333333333,2.6969,1.5048400000000002,1.8277233333333334,2.8844052380952383,3.8363666666666667,1.7742,3.4728333333333334,1.7642666666666666,4.005966666666667,5.083075,5.0548866666666665,2.4663325,2.6608,2.697375,2.52845,1.6499714285714284,2.6348,3.3150642857142856,2.4713975,3.6924333333333332,2.84308,3.7866316666666666,3.87834,1.03044,1.2201475,1.9314075,2.28664,2.95317,3.5582,5.19335,7.3289100000000005,4.43099,4.92493,4.535445,16.191428666666667,0.53045,11.573715,0.9105888888888889,3.17013,2.9622433333333333,1.8218066666666666,2.929295,1.483106,1.45015,2.7471933333333336,1.301942,2.6646853333333334,1.9616066666666667,3.2313433333333332,2.137026666666667,2.7687733333333333,1.4824333333333335,0.7415041666666666,3.4970666666666665,2.5543566666666666,3.2193066666666668,1.0846133333333334,3.714866666666667,0.7349958333333334,0.36527538461538456,3.5623,4.36507,5.2129,5.0519,0.9055827272727274,4.034955,4.67348,1.1545575,2.530725,5.631105833333334,3.14647,3.821675,3.57985,4.02233,1.9773025,3.832265,2.7533833333333333,3.060915,3.44903,2.71158,2.359605,3.702175,3.014375,3.45729,2.656825,3.23358,4.99059,1.3668733333333334,4.7669,2.1892175,4.29696,5.419796666666667,2.064825,2.74257,3.1511766666666667,5.884475,2.4139433333333336,3.327925,5.67955,3.9476999999999998,4.89936,1.64126,2.566625,4.6946,3.3928666666666665,4.816855,3.197096666666667,3.29162,3.1322799999999997,4.033366666666667,3.2678833333333333,2.6427366666666665,2.7944933333333335,0.4417127777777778,2.30831,2.1867975,4.98305,4.800345,3.2776899999999998,2.8859399999999997,3.2814633333333334,9.605075,3.55690375,3.90327,3.0467999999999997,4.18974,3.065115,3.7632666666666665,2.8863533333333335,2.3223325,2.8624033333333334,6.0447,4.58218,2.110133333333333,3.256855,2.7541,2.6283333333333334,4.8063373333333335,1.7025659999999998,6.253046666666666,4.02611,5.20885,4.96039,5.65465,3.590915,6.537766666666666,4.708185,3.677415,0.7042707142857143,2.5657,1.55573,3.08107,3.8208,3.89659,3.89951,6.0236,2.8789700000000003,4.926225,3.4184666666666668,3.7601666666666667,3.2692766666666664,5.1034,4.966645,5.17315,2.8997933333333332,5.7978216666666675,4.356945,1.5373233333333334,5.6037,3.389285,3.746495,2.166525,2.26826,4.995473333333333,1.2767742857142856,2.5997233333333334,1.973465,3.703535,4.525305,2.6136933333333334,3.3363,3.00523,2.9261966666666663,4.176145,1.3252039999999998,2.267396666666667,2.2630266666666667,2.6760433333333338,2.452316666666667,2.54874,2.57004,3.93083,2.92615,2.774573333333333,4.0559,2.348795,3.908725,3.528705,1.6401783333333335,1.6401783333333335,4.622755,3.280253333333333,1.7308125,1.3205075,2.3991225,2.0332825,1.3584260000000001,1.4109966666666667,0.648903,1.6348333333333331,1.4659166666666668,2.8336733333333335,2.2892766666666664,1.66496,1.8750933333333333,2.303053333333333,1.6800266666666666,1.7637033333333332,1.8332300000000001,2.25185,4.771825,2.70078,3.1215499999999996,2.815625,5.7195,2.903875,4.540375,4.0322941666666665,1.911545,4.15625,3.285625,1.90342,3.382415,2.5362,2.925735,3.568515,2.037565,4.4935,3.44518,3.98928,3.515966666666667,0.8661755555555556,3.70371,3.61658,3.267535,3.609805,2.764056666666667,5.19385,4.871585,5.9503675,9.289104166666666,4.215115,4.47489,3.1370533333333337,4.03793,4.54433,2.010255,2.54131,4.804625,2.3309925,5.9523399999999995,1.8272220000000001,2.66169,8.82087,3.243093333333333,4.00099,1.3752728571428572,5.01785,5.0539,3.2582633333333333,4.908045,5.46685,6.4805850000000005,17.16103011904762,0.6102117647058823,1.0849022222222222,3.4681333333333337,3.96277,3.78178,2.1820025,3.272695,4.09536,4.79368,2.85224,4.863855,1.6012033333333333,1.6012033333333333,5.8462,0.7358118181818182,2.05076,2.983545,3.985155,0.36072692307692306,1.87281,4.50139875,1.128975,2.9231266666666667,2.7150866666666666,3.018925,7.63412,2.4763533333333334,3.1109066666666667,1.9629966666666665,2.22276,4.313135,3.86771,3.31771,7.0750595,1.7313375,3.005775,4.38901,6.746392500000001,1.6855,2.29544,2.49394,1.6060999999999999,2.766035,1.8047325,3.976265,3.59557,1.4680075,1.9464086666666667,1.9464086666666667,3.12067,5.59375,3.9391183333333335,3.63437,4.933805,5.1588,3.20764,3.643065,4.00733,3.529735,4.7501066666666665,3.4079525,4.45186,0.89369,0.368365,5.43315,3.837365,2.381,8.6451,1.54814,4.722666666666666,3.942455,0.334335,2.00245,1.24974,1.78102,2.1502,5.465165,3.27346,2.81996,4.5920950000000005,5.0229,4.699555,0.6256446153846155,2.01284,0.589136,5.51122,1.567944,5.02215,2.2442425,3.1840487499999997,3.160945,4.21497,4.44132,4.99434,0.9388454545454544,2.92985,4.12149,2.0495125,1.7767225,3.595275,3.341435,3.55953,3.73721375,5.566685714285715,4.593925,5.6399,2.8928266666666667,1.0704744444444445,3.6753666666666667,3.8782,0.6603307692307693,4.018565,4.23786,3.84376,2.926145,2.7048533333333338,6.1425,3.22065,4.0742,2.27927,3.799815,1.919934,3.75026,3.78765,0.721593076923077,4.467865,3.97103,3.174645,4.11573,4.309565,4.16321,3.90088,0.6861309999999999,3.0468566666666668,4.2202866666666665,4.32833,3.399566666666667,2.388385,3.5170333333333335,2.388385,4.730055,2.99515,3.561,1.6698166666666667,3.1692433333333336,2.288085,4.49591,3.141913333333333,5.455923333333333,3.6183333333333336,3.1751466666666666,3.158986666666667,2.387205535714286,2.387205535714286,2.387205535714286,2.6020733333333332,0.9923933333333333,4.60046,2.30504,1.6139033333333332,3.748466666666667,2.690796666666667,2.969,4.254025,5.5055,4.050035,2.551175,1.735898,3.955725,1.896716,2.8608933333333333,2.70559,3.77203,2.1043675,3.84097,2.59881,1.845552,4.582605,4.140605,3.96783,3.62338,0.7167422222222223,2.41772,5.11005,7.373715000000001,5.4386,2.95316,4.121775,3.45486,3.63848,2.071375,2.40946,4.990315,2.27191,4.625915,4.08919,4.558155,9.212250000000001,4.24234,4.515875,3.52869,5.06725,4.486825,3.8538075000000003,3.8538075000000003,3.81754,3.9352366666666665,4.293635,4.159585,4.203055,4.476995,4.267,1.2056725,4.25013,4.347225,5.54675,8.29744,5.1586,3.826871333333333,1.9912633333333334,1.56735,2.55327375,4.846025,3.921365,4.93941,3.130183333333333,4.825545,5.2253,4.851855,4.947845,3.13795,4.36398,4.768155,5.3747,5.66275,4.396495,7.4201733333333335,4.52095,2.1904233333333334,5.1547,4.65869,4.609465,4.480215,4.88651,0.8169527272727273,5.09675,4.762795,1.2913142857142856,1.6452200000000001,5.0866,5.2762,9.1784665,5.25755,5.186,6.4693,2.79362,2.9182,5.2442,1.526865,1.526865,2.516155,1.5943233333333333,2.904955833333333,3.4703,1.9362725,4.2580100000000005,1.3699700000000001,2.147345,6.5874950000000005,3.1290000000000004,3.42554,2.968585,4.074465,4.41519,3.1539366666666666,1.1525333333333334,3.879005,2.6373599999999997,3.85007,4.120495,3.6948983333333336,5.4992,5.5417,5.2875,4.852855,5.1783,6.5233,4.673725,3.130945,4.58146,1.9773175,1.9773175,3.938945,3.859935,2.3094933333333336,2.7057800000000003,2.444633333333333,3.1605066666666666,1.7320200000000001,1.7320200000000001,4.1967,3.454085,2.078895,3.59212,2.83383,2.00322,1.2652475,1.4404333333333335,2.630175,0.4909573684210526,0.8679355555555556,2.588145,4.449525,0.4556381818181818,4.0347,1.9456980000000001,5.84665,3.42807,7.393152499999999,4.502485,5.3060366666666665,4.791365,5.00215,4.12885,1.81236,1.9000419999999998,4.639725,3.050325,3.754565,1.15189,4.84542,4.68434,2.71837,2.564005,3.001875,4.505815,3.599465,3.538555,3.862155,3.400585,3.197425,3.783975,1.08801,2.142415,2.433975,2.62037,4.19324,7.46357,0.89918,1.5189300000000001,1.5189300000000001,2.1025,3.97371,2.713955,2.95243,5.3976175,2.8884333333333334,1.1601925,1.1601925,1.1601925,2.66587,3.49908,4.449045,3.10482,4.08229,3.35741,3.639785,2.909265,2.9653025,3.660945,3.97377625,2.3987249999999998,1.3584260000000001,3.125655,2.3987249999999998,3.36292,1.40818,1.83579,1.85908,5.465016666666667,2.85132,6.02592,5.465016666666667,3.1746,1.8663716666666668,1.8663716666666668,2.529135,5.66185,1.8663716666666668,2.14749,5.47423,2.19311,2.595665,4.85452,3.59525,4.18598,1.6588833333333335,3.41229,3.9077,1.86182,2.248275,3.63164,1.6588833333333335,2.33792,2.0133,5.86084,2.35705,1.098776,2.558545,3.157145,3.305047666666667,1.940635,2.122531,3.83975,1.9503226666666666,1.85648,3.20785,2.1287,2.95706,3.47256,2.0307999999999997,2.79377,2.23249,6.40174,2.332825,3.289895,3.38254,3.38254,8.498406666666668,1.0571166666666667,2.94391,2.608025,3.2848,2.2674,1.2779533333333333,1.2779533333333333,3.21174,1.9898,6.741339999999999,2.3062,3.70538,3.30962,5.01255,2.503135,2.425355,5.629695,5.629695,2.42138,1.2027625,1.2072875,1.2072875,1.2027625,2.0056499999999997,1.2103033333333333,1.11969,1.5017266666666667,1.87361,3.522845,1.581495,3.37714,3.12051,2.83149,2.651645,2.86507,2.60946,3.125348333333333,3.125348333333333,5.68713,2.44491,2.83204,3.03455,3.01062,2.675135,2.52825,2.465705,5.3167875,1.6518075,1.4453186666666666,1.2268720000000002,2.0714586666666666,5.1288,4.004955333333333,3.4042233333333334,3.03339,1.585105,1.585105,1.585105,5.62815,2.2566,1.11969,3.09744,3.300625,1.2087875,5.1399475,2.977655,6.37904,3.513,1.870375,3.371155,3.0343966666666664,2.063645,3.5097,4.18931,3.60519,1.7789,2.412365,3.089995,3.00674,4.33354,2.079785,3.021425,2.432815,5.59726,4.36726,2.132705,2.16436,5.69356,5.06618,5.21673,5.59794,1.19466,1.19466,2.5242999999999998,2.5242999999999998,0.8086399999999999,4.01848,2.89258,5.0046,4.26783,5.18438,2.20967,4.197635,4.197635,1.99077,3.38765,3.466105,1.1507939999999999,4.81826,3.243205,3.281225,2.50539,4.44768,2.42779,2.25362,3.462455,3.03995,2.90065,4.78807,2.80862,1.71291,3.74117,5.83263,5.57899,4.68321,2.4577,3.24646,2.42446,5.16289,2.659425,3.85862,1.948365,6.33204,4.48117,2.151695,2.87824,2.08272,4.94173,2.244775,2.58686,2.91684,7.1769,4.64153,3.264505,2.05551,2.16652,6.68421,2.64986,3.03591,5.65119,3.083985,2.769395,2.60449,2.92604,1.8513333333333335,1.950085,2.084006666666667,1.6473266666666666,1.95186,1.8979966666666668,1.66802,1.9445866666666667,1.608115,1.8513333333333335,3.73225,4.63946,2.10752,1.71095,1.71095,3.8941766666666666,3.8941766666666666,2.7089933333333334,2.7089933333333334,3.015605,2.051025,1.75956,4.0082,2.1074425,2.1074425,2.2943875,2.2943875,3.19283,1.87498,4.27297,1.9817,3.147755,2.0066333333333333,2.0066333333333333,1.588,3.82745,4.93666,1.40818,4.13726,2.0307999999999997,2.032645,3.76823,3.026665,1.878465,2.46944,6.07609,2.056895,5.55176,3.065405,3.184335,2.93595,2.578405,6.27808,2.99752,2.205375,2.6493084615384617,2.86433,4.86648,3.430655,1.499606,1.499606,4.07293,5.07975,4.73674,4.85386,2.746235,2.729385,1.747805,3.01709,1.636465,2.67967,1.78307,0.809784,0.809784,0.809784,2.1692299999999998,5.35915,2.1692299999999998,2.226735,3.422485,1.580395,2.03042,4.55662,3.76419,4.68659,1.5969233333333335,5.31618,1.5969233333333335,1.5969233333333335,1.977135,1.83929,2.219975,5.7139,2.219975,2.27618,3.86649,2.236075,1.716655,2.74849,2.9999933333333337,3.3566591666666667,3.383766666666667,4.41385,1.4294516666666668,4.89078,0.8144909090909092,5.20835,4.8070525,2.598745,2.598745,0.8477572727272726,3.7889,3.0150433333333333,5.7172,5.1599,4.165415,4.90797,4.54365,4.316375,4.91462,4.69559,4.188685,4.10461,3.910045,4.90521,5.4668,3.426145,3.35142,4.053505,2.6398966666666666,1.667126,4.926415,4.21535,3.82501,1.7061714285714285,3.621915,4.49118,6.2431175,1.1668675,5.1047,4.624475,2.148565,1.83885,3.197025,3.43033,1.59941,1.499606,4.178355,3.974115,2.611655,4.44181,2.930205,1.16073,2.8543533333333335,1.2378071428571429,3.03363,1.9251933333333333,3.3155133333333335,1.8413275,2.63843,4.670575,3.43654,4.600295,3.241065,2.2121575,4.70575,4.22286,2.966455,5.02415,4.37474,2.653993333333333,6.03715,5.0979,3.117496666666667,2.5018566666666664,2.852035,3.1375533333333334,3.1499333333333333,2.8707333333333334,4.81984,4.1997,3.67555,2.46656,2.5662266666666667,2.36671,2.7546199999999996,2.31742,2.3760033333333332,2.3304733333333334,2.33658,1.3805825,2.995451,1.0883,2.005385,1.73629,2.546725,1.52001,2.035745,4.479215,5.3697,1.993775,4.135925,4.86147,6.341628333333333,2.13836,1.55532,6.9274,3.661645,4.706695,4.352945,3.820385,2.055565,3.482365,2.70385,2.99405,4.513165,0.6992266666666667,4.826745,1.929,0.8443190909090909,5.12705,4.320795,3.85055,1.9489871428571428,4.828075,3.76824,2.674723333333333,3.3727,2.442483333333333,2.0643,0.6018749999999999,3.0104100000000003,3.058575,5.2237,2.421565,2.026095,4.091395,1.1960375,1.8679733333333335,1.8679733333333335,2.56821,1.8679733333333335,4.37976,2.69096,5.0395,4.4082,5.8941,13.920818333333333,3.3909333333333334,5.2004,2.632225,4.669795,3.06217,6.6394925,3.3274066666666666,4.515745,4.7905,3.652,1.2488816666666667,4.18618,3.0539633333333334,3.019,1.0243722222222222,2.17166,3.49835,7.51881,4.323305,2.71721,4.376865,3.3286833333333337,4.39619,5.4456,4.837435,2.841535,2.8505233333333333,4.066495,5.73785,2.47294,4.981175,1.85859,1.85859,3.2354,5.0282,1.0535625,4.630043333333333,2.5827,4.44767,2.479766666666667,2.32757,2.7559966666666664,2.2193833333333335,0.4915957142857143,3.16825,2.6353866666666668,4.97737,4.70377,0.2550990625,5.47505,5.04485,4.47276,7.45702,3.5406999999999997,2.8936466666666667,2.1922966666666666,3.275063333333333,3.410433333333333,1.35815,2.9058566666666668,2.87424,1.4286649999999999,3.3227499999999996,3.1873566666666666,2.589096666666667,3.435366666666667,1.48919,4.29677,2.675875,5.0623,4.77378,3.86037,1.91759,2.5369766666666664,1.186935,1.786275,1.186935,4.83073,3.7474333333333334,1.645258,2.531825,3.844775,3.76827,2.92139,3.78155,0.3479615,1.4829012499999998,3.734325,4.164615,4.65283,1.6939175,2.8596299999999997,3.2097700000000002,2.67615,3.11612,2.97702,4.540565,2.40073,2.25536,2.8958266666666668,2.6755333333333335,2.764086666666667,4.46684,2.044875,3.98456,3.6179208333333333,6.0976,7.81377,0.7984711111111111,0.8196490000000001,3.96366,6.444605,1.7443460000000002,3.401745,1.4597283333333335,1.4597283333333335,3.42188,0.4446822222222222,3.884945,4.38927,2.68411,4.55614,3.18224,2.91495,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,0.23347033333333334,2.16577,3.310695,4.090233333333334,2.908583333333333,4.1461524999999995,6.0227570833333335,3.01647,2.1837266666666664,0.8679683333333333,3.36998,0.71543875,5.202824166666667,3.0190975,2.64427,0.71543875,2.582495,2.72707,0.8545875,3.8159537500000003,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,0.1553751111111111,4.5223,1.92526,4.545305,5.11155,2.04462,4.890365,4.52063,5.35425,5.380128333333333,3.7499571428571423,3.24399,4.79523,2.418095,5.863385,3.894215,0.7564642857142857,1.3141257142857143,1.331167142857143,3.842333333333333,3.842333333333333,3.1492733333333334,3.98657,4.908745,4.040565,4.684855,3.2026066666666666,1.9895766666666665,0.5144228571428572,4.06142,3.37418,2.849675,4.169305,3.181515,3.08004,4.57749,4.499035,6.783125,4.29722,4.73076,5.6793,4.344955,1.3847871428571428,3.160545,5.1502740000000005,35.34850252489177,1.3303666666666667,4.521035,3.96218,4.661165,4.14664,4.637525,5.25795,0.41537142857142856,4.956505,4.32772,2.1807975,1.916195,4.18575,1.5744425,2.428135,2.29463,1.7368225,2.80305,2.4231366666666667,2.83063,4.026505,0.6233415384615385,3.58874,3.686805,0.40944947368421053,2.5655766666666664,3.00014,2.57881,3.730395,1.766185,4.76479,3.85073,3.081265,4.61861,3.16953,4.52181,2.843155,3.78026,2.34254,5.1502740000000005,4.001615,4.517995,3.163635,1.763652,4.44872,3.407735,7.177496666666666,3.24299,4.672915,6.428817499999999,5.1493020000000005,2.25115,4.79551,6.660187499999999,7.743676,2.5744266666666666,2.6223,4.991245,5.447150000000001,4.13478,3.28791,5.5600266666666665,2.1925025,2.0823875,2.1715425,60.57875827362524,5.4922,4.339145,2.60305,1.1328799999999999,3.0733366666666666,2.934286666666667,3.404666666666667,0.9333422222222223,4.358575,0.8040477777777778,7.677537142857142,1.896716,3.3708666666666667,1.8430579999999999,2.547585,2.44291,2.5634,2.39035,2.2446733333333335,3.07892,1.5348566666666665,5.167397500000001,3.8670000000000004,1.3003975,2.2525,1.3286833333333334,1.428575,7.51858,5.6126,3.238725,5.4153,5.13207,1.5499857142857143,3.5965000000000003,4.169165,1.6158175,5.09395,4.21135,3.91132,2.02435,3.005864166666667,3.6905,3.9242,5.5823,4.16448,4.52181,2.42206,3.76171,4.479166666666667,3.5340000000000003,1.635446,4.63084,3.3432666666666666,4.110835,4.98473,3.966305,3.72274,4.991115,4.39961,4.35761,4.790135,4.49632,3.375,3.73129,4.475635,3.064175,3.784355,3.70119,1.6593925,1.6593925,4.756475,4.859655,5.5041,4.365745,4.775845,3.6389333333333336,2.845235,4.888595,4.97811,0.7307109090909091,5.3038,8.298675,5.39275,5.91885,1.160911111111111,3.29701,0.924405,0.924405,0.924405,3.73335,3.4186,2.8445666666666667,3.4027666666666665,0.9928140000000001,4.96803,5.24115,2.78181,1.6844825,2.2052875,4.374895,4.249125,3.62013,2.9614579999999995,6.739,4.533605,2.6146766666666665,4.82202,6.8136,2.538165,4.15144,3.745955,3.13003,4.805905,4.94935,4.378235,5.92645,3.626555,3.4936822222222217,1.9462833333333334,1.9462833333333334,0.7144027272727272,8.418432,2.054705,6.33195,5.3922,4.879775,4.355875,3.695705,3.2496549999999997,4.618545,7.7697287500000005,5.666333333333333,1.9169966666666667,4.426185,1.03741,3.74953,2.05641,0.9464688888888888,1.2323085714285715,2.7411499999999998,3.1445900000000004,2.8536300000000003,1.365187142857143,2.9238999999999997,3.0515066666666666,0.9408244444444445,3.10576,3.2235533333333333,1.622268,1.7482140000000002,3.0137133333333335,3.324006666666667,3.031473333333333,2.8887699999999996,1.766694,4.934915,4.76325,3.873695,4.37597,5.28105,3.166575,4.959345,5.826,5.2445,4.245865,4.01134,11.579268333333333,8.13077,2.9277233333333332,3.508325,2.4997433333333334,3.840655,3.07193,4.436085,1.2013483333333335,4.38808,3.460085,1.248925,3.505025,2.85629,4.141255,3.62552,3.766615,6.86595,7.2872916666666665,4.3219,1.6598716666666666,1.6598716666666666,1.6598716666666666,4.791285,1.14667,1.394675,0.4929011111111111,4.603905833333333,3.0289099999999998,4.993145,1.02963,1.16662,3.414085,4.454995,3.619805,17.193016214285716,4.3966275,4.474,6.2704075,2.742406666666667,3.772625,3.9431,1.0533122222222222,1.717945,4.798435,3.894075,4.587135,4.43899,4.78192,3.8764,2.743380444444444,3.41929,5.4505,0.60414,4.98934,2.505975,4.30227,5.73085,3.715733333333333,2.2639366666666665,3.81344,1.6954133333333334,4.437345,6.0,3.0762866666666664,2.547265,4.623365,4.64947,4.43436,4.130845,3.63909,4.543715,4.84367,4.91021,4.68774,5.0953,3.84227,1.1847457142857143,1.813915,6.863572333333333,5.26785,4.47014,4.97462,2.51365,2.784386666666667,2.7224633333333332,5.460406666666667,1.8505325,2.08137,3.057783333333333,3.443433333333333,3.4388666666666663,4.520175,3.86268,5.371485,1.39859,4.52189,0.9400633333333334,3.95165,3.39443,1.62114,4.77117,1.02396,4.8077,5.2967,5.5433,4.64089,3.8778525000000004,3.882125,2.96731,5.3389,4.964955,3.1976325,3.884115,2.34724,2.59537,1.99959,2.64795,3.734035,5.06895,1.08793375,4.54419,1.438675,3.39661,1.5688833333333332,1.08793375,0.22371972972972973,4.308365,2.997195,2.2983229166666668,1.76865,2.804265,1.0648,3.636755,3.32678,4.650775,2.4773866666666664,6.4736,7.63675,2.846576666666667,3.395433333333333,2.7184000000000004,0.8868550000000001,2.3050466666666667,6.14675,4.36902,5.0716,5.0993,2.33507,1.4090166666666668,3.8502324999999997,1.6183575,2.363195,1.7203,1.7360475,1.7418,1.870165,2.237155,2.157815,2.2555925,1.2812242857142857,1.4779475,1.846185,2.511875,2.084375,2.2129,0.5207773333333333,1.88726,3.1425866666666664,3.1496366666666664,1.779605,2.2569833333333333,1.643425,4.456055,2.179206666666667,2.683525,2.890585,4.370415,5.05,2.55843,4.623525,1.7014396323529413,4.7451225,25.212914,4.802626666666667,4.5087,4.77868,2.76339,3.857525,4.879665,3.129895,4.4948,3.1655366666666667,0.739295,3.92925,4.988425,4.51504,4.027815,1.61609,2.0241933333333333,2.3484166666666666,2.010305,1.2612728571428573,3.27138,5.59405,4.128445,3.14774,4.10766,5.15785,4.329355,5.74025,1.405925,3.848925,4.25379,4.55099,1.565076,2.57746,1.9260125,1.9260125,3.440755,5.03215,2.743123333333333,3.2814433333333333,4.3854,3.74207,6.56214,4.188085,2.20017,1.717945,3.14762,4.294195,3.1710166666666666,2.3225673015873016,2.3225673015873016,3.3663333333333334,4.589405,4.19056,5.534767777777778,2.3044,3.366646444444444,0.5921244444444445,0.5921244444444445,0.5921244444444445,3.48249,3.73512,4.253073333333333,5.11215,1.978685,5.69915,5.06215,4.60041,4.04694,5.0566,2.50324,1.5299142857142858,4.61287,4.99752,0.4500935714285714,4.220899999999999,4.75047,1.6632066666666667,5.73635,5.2506,4.50846,4.503955,3.787575,2.893785,4.792315,1.662114,4.291315,1.612025,3.597375,6.14695,1.1402575,2.99362,7.08784,4.362985,4.052266666666667,2.422995,4.38819,5.6124,3.5162333333333335,7.113471666666667,4.23988,2.119333333333333,3.0793133333333333,2.7383900000000003,2.858216666666667,3.1754433333333334,1.7141133333333334,5.08135,0.7031466666666667,1.968485,1.968485,3.235725,4.78712,2.2879075,3.170125,4.754165,4.66909,4.804255,1.31643,5.447722357142856,4.801375,5.4032,4.33727,4.365333333333334,3.953626,0.4117073333333333,2.4390645714285717,1.05434,0.4117073333333333,4.17163,0.8356777777777777,4.32521,4.3267,6.801172,2.17642,1.0249875,1.096574,2.20605,3.1305866666666664,1.5010166666666667,2.3562499999999997,3.310155,3.31177,2.006893333333333,2.34563,4.689355,3.6273174999999998,3.923125,5.84695,3.46728,4.863055,7.127888333333333,4.06162,3.435875,4.393095,3.61546,4.96312,5.01575,6.5699024999999995,5.3905,2.68431,1.0039666666666667,4.439505,3.905065,3.963445,5.0773,4.27957,4.606205,2.967,2.66897,3.2269133333333335,2.637443333333333,2.6598266666666666,3.341666666666667,3.29808,2.8375500000000002,4.651615,4.23125,4.53872,5.79935,2.97791,3.4073666666666664,2.921125,0.7407857142857143,4.481405,4.20511,4.995915,3.4555000000000002,6.120353333333333,3.552825,4.490305,4.09857,0.6193661538461538,0.5501614285714286,4.324185,3.3141875,3.72151,5.0785,4.673645,1.768686,5.0953,4.590655,3.1381200000000002,2.7408933333333336,2.2343425,2.10229625,3.5238333333333336,3.5328,3.4136333333333333,3.4666,3.4948333333333337,2.79705,3.5962333333333336,3.8998666666666666,4.481845,0.573334375,0.573334375,0.573334375,3.2424900416666667,3.930066666666667,3.645566666666667,2.857673333333333,2.8545700000000003,1.2056725,2.81831,3.323816666666667,2.1479725,2.65573,2.5477266666666667,0.9995988888888889,3.097898333333333,4.76429,9.428029583333332,1.4877223333333331,0.508671,3.538815,0.508671,0.508671,0.508671,0.508671,2.1442125,4.132158,3.80579,5.2475,6.10645,2.84633,3.0030099999999997,3.102705,3.4714600000000004,5.63325,1.302885,2.486476666666667,3.2965666666666666,2.9058100000000002,3.3391,3.953285,2.227116666666667,4.02325,1.2366666666666668,4.648385,4.725555,4.40226,0.8795875,0.6109910000000001,0.6109910000000001,1.0283147826086956,1.9079022826086955,1.0283147826086956,1.0283147826086956,0.4097447826086956,0.4097447826086956,1.0283147826086956,1.42221,2.5041166666666665,2.8715,3.1695666666666664,2.5392766666666664,2.5957433333333335,3.0987500000000003,2.6534,4.416945,3.47304,1.855825,2.2088533333333333,1.67314,0.17468838733431516,0.17468838733431516,0.17468838733431516,0.17468838733431516,2.42358,2.678623333333333,0.9222060000000001,5.1812,0.8037563636363636,1.7210360000000002,4.787654166666666,4.98994,4.44608,2.743825,4.368945,4.54097,1.9681933333333335,1.217545,3.60829,4.724465,5.83135,2.302305,1.37963,1.81208,3.7977333333333334,1.4321333333333335,2.8678033333333333,2.991796666666667,2.918556666666667,5.55215,4.36693,3.07495,4.85623,2.61717,4.60236,5.5031,4.56269,4.93253,5.1743,5.248373333333333,5.090414999999999,3.1676854285714287,4.846443333333333,4.594735,5.62785,4.502165,4.890075,2.1878475,3.06516,4.393405,5.2711,4.212175,3.972915,3.219625,3.811545,3.838525,2.4174433333333334,5.3317,3.537005,7.61142,5.93135,5.96155,5.01285,1.4965857142857144,1.01708,0.6573569230769232,1.8152439999999999,4.661855,4.9723,4.056435,1.635306,4.43852,2.957155,4.847115,5.488,6.159059,4.05009,2.98481,1.790786,5.3438675,3.862625,3.439955,1.8847125,1.10503,3.67924,3.27721,3.6893775,3.45768,2.073045,4.739575,1.6727666666666667,2.90305,2.34335,4.056355,3.56716,4.918475,2.198545,1.51303,5.48405,2.99096,9.06945,2.85995,4.574545,5.77165,4.67211,4.668745,3.655215,5.15165,2.4268825,4.162475,5.271905,2.533925,4.62254,4.829155,7.359475,5.2462,3.6085999999999996,4.340665,3.68263,3.6273174999999998,3.469945,5.4118,5.50035,2.4715725,3.2811566666666665,3.4811666666666667,2.283885,3.69689,4.594635,5.95215,5.3098,4.799205,5.22735,4.616425,5.84325,0.6138107692307693,3.351433333333333,1.30532,31.585862093706865,2.311805,4.5814,3.01142,4.56336,1.7336200000000002,2.3791866666666666,3.447652023809524,1.565119523809524,1.565119523809524,1.565119523809524,1.565119523809524,1.8825325,3.45622,0.40811555555555556,7.598309722222223,0.40811555555555556,5.06105,5.0888,2.235705,5.217,2.57995,3.8464213333333337,2.54654,2.4895133333333335,2.6359566666666665,2.1296066666666666,0.6247676923076924,2.56755,0.7390091666666666,3.1220866666666667,2.1526666666666667,2.268176,1.1936183333333334,2.268176,6.3562,7.878585,5.2275,4.52229,5.4704,5.9845,7.713986666666667,3.136725,1.7319575,1.7319575,2.3628766666666667,5.08155,3.630135,4.600775,6.3587,4.420935,2.862385,4.219595,3.419785,3.35756,2.188065,1.140188,2.0143,5.42205,3.87371,5.223962222222221,1.8798875,4.77845,1.7315,3.051735,1.411394,3.17876,3.5969333333333338,2.6584766666666666,3.1610566666666666,3.5079,5.56175,0.7071846153846154,3.42668,3.676066666666667,2.7749733333333335,2.304316666666667,4.181249375,3.305873333333333,2.662786666666667,5.38036,3.83856,5.1611,4.06973,3.615725,5.4161,5.05505,2.0784366666666667,6.2615,2.359182333333333,1.9939433333333334,3.2483566666666666,2.9242399999999997,3.4446999999999997,2.808475,1.8968866666666668,3.116642090909091,4.742545,3.3867450000000003,2.394160666666667,2.394160666666667,2.37541,3.79703,3.978695,0.5922372727272728,3.13261,2.989855,8.33238,0.9029945454545455,4.564565,4.254265,5.5235,3.69335,4.267345,2.244285,4.00963,2.786345,6.51095,2.7248550000000002,1.0469725,4.06978,2.5991666666666666,4.481515,2.9500499999999996,3.58828,3.56641,4.168555,5.037602,3.16275,1.982415,5.4278,2.39989,4.633245,4.84483,4.73239,4.40889,4.03945,2.95864,2.1640133333333336,2.95257,2.7327666666666666,2.93295,3.4337,2.8875314285714286,5.225786666666666,3.0499733333333334,2.700003333333333,7.191698333333333,5.614074166666667,4.0544150000000005,3.180623333333333,3.8377666666666665,4.011965,3.47675,2.5071,4.46859,5.28835,4.463895,1.5798433333333335,4.8506,2.8343900000000004,6.838430000000001,5.0093,9.366803333333333,4.0755,3.22131,2.4771,4.024955,5.61116,7.73992,3.34427,5.7561,3.963535,3.17467,3.80357,1.7025659999999998,4.654538,1.4972583333333331,4.007185,4.476305,3.440633333333333,0.869675,9.589083333333333,1.2623444444444445,1.87529,2.3895666666666666,1.85239,3.4934666666666665,1.3070416666666667,3.648795,3.25181,2.8681533333333333,4.343365,1.0420175,4.17701,1.3101450000000001,2.6888075,4.4637,4.974065,2.0456125,5.253119166666666,2.165868333333333,8.13864,4.367065,2.7622,3.964155,3.088095,1.2707854166666666,7.65774,2.8883,3.13144,2.222515,4.09614,2.246715,3.544705,2.07762,3.925965,1.231985,5.56855,4.06805,4.098455,0.8781209999999999,2.015797,3.76011,5.451,5.257795,1.25238,1.25238,6.0229,5.19775,4.34013,3.823985,3.312625,8.469945,4.70311,5.7725,4.01327,2.4608675,2.143309038658474,0.36675749999999996,0.19288193548387095,0.6606274910394265,1.1159240476190477,0.6588676497695852,0.19288193548387095,1.21387,0.4677455555555556,1.4826815476190476,1.8744974910394265,2.093115,2.2170925,2.1881633333333332,5.4206,7.4405833333333335,5.5891,5.67305,4.80717,5.39285,1.1936466666666667,5.3809,4.45208,6.2887,6.259,5.6167,5.9285,5.7671,6.0329,1.5393633333333332,1.6391142857142857,2.178,6.511159,1.535984,5.4672,4.890695,7.441886666666667,5.33475,5.72855,4.686935,4.951105,2.90105,5.85325,5.6062,6.450265,5.23965,6.067354999999999,6.2133,4.0238,4.278835,3.8876333333333335,1.01612,3.7419,4.80252,1.3718375,3.8182333333333336,4.97517,4.636654999999999,5.86585,2.52565,3.23428,2.48708,4.80333,2.297185,3.731725,1.2875283333333334,3.215805,3.76221,4.65908,5.3094,3.5423875,0.6561566666666666,6.1499,1.08235375,3.92267,3.3732333333333333,3.589785,2.11843,3.74081,3.681251025641026,3.8719333333333332,4.29795,15.744065547619048,5.3286766666666665,2.3089025,8.39879,1.5864875,3.80354,2.892526666666667,2.875496666666667,2.150986666666667,0.24085478260869564,3.016016666666667,5.1817,1.82415,2.3069933333333332,3.6656,1.828935,2.2581533333333335,1.5299571428571428,3.760155,5.11055,4.257495,4.86264,0.4872014285714286,2.32936,4.608035,2.72247,5.0149,5.0389,4.2002,4.38721,0.5503994117647059,2.49946,2.49946,5.5022,4.3948,4.7593,2.75325,3.8516999999999997,3.120096666666667,5.3662,3.33345,5.7148344444444446,5.0136,4.552485,5.40725,2.633925,2.19134,4.353425,4.464515,3.893395,3.66161,1.8153580000000002,4.417785,4.28096,3.685295,4.910005,3.797395,4.561815,0.6389846666666668,3.42037,0.7083158333333334,3.1120033333333335,3.15901,4.765125,19.033694761904762,3.747735,3.80636,3.0343966666666664,1.19536,2.8249033333333333,2.4027866666666666,1.474512,2.50449,2.50022,5.19795,2.195186666666667,4.15903,5.34725,2.256965,4.69127,2.9489866666666664,4.66749,5.38865,5.48255,1.67456,1.798405,2.47966,5.3279,5.17275,1.2002111111111111,5.5458,3.998535,5.60445,5.20895,1.6205100000000001,4.695745,3.92721,3.784825,4.930875,5.3031,3.15343,0.816965,8.003876666666667,1.524424,0.19303055555555554,0.19303055555555554,0.19303055555555554,5.19745,4.331975,2.666043333333333,4.30443,2.994665,4.673985,4.194675714285714,4.215206666666667,8.6638,4.22461,7.740446666666667,0.815155,0.86366875,2.65595,5.20095,4.61502,2.08831,5.4544,5.60465,3.392,3.486055,4.68859,2.35307,4.41505,4.79886,2.4103566666666665,2.8372833333333336,2.8981833333333333,2.8197,5.931,3.70767,0.6924078571428571,4.31511,3.35566,4.296385,4.83389,4.96971,5.03535,5.33495,3.467225,13.748698333333333,4.781945,6.893999833333333,2.9215166666666668,6.670350000000001,4.820515,4.178995,2.3352175,2.3420620833333334,9.51396,2.20941,4.178233333333334,3.8533000000000004,3.7119666666666666,2.5596866666666664,2.846156666666667,2.134195,2.071365,2.9387233333333334,1.903968,3.8861333333333334,2.79659,2.47959,3.121256666666667,3.727266666666667,2.39788,2.39788,2.698446666666667,3.5355000000000003,3.4883333333333333,2.8868766666666663,3.01714,3.8238333333333334,2.7533966666666667,2.6601933333333334,3.7289999999999996,2.72754,2.27576,3.7649000000000004,2.9948033333333335,1.731878,4.094266666666667,2.672363333333333,2.4070133333333334,2.7593033333333334,2.4756299999999998,3.4020333333333332,5.739775,2.3993733333333336,2.9014966666666666,1.86012,10.915617999999998,2.6386566666666664,1.75392,2.1271,1.134311111111111,1.646508,4.933216666666667,2.761282,2.761282,1.677282,1.5399450000000001,3.406811666666666,4.04029,2.11829,1.5432533333333334,1.656996,4.419306000000001,3.334433333333333,4.127133333333333,8.397283333333332,2.8643457142857147,2.50369,3.2740904968944102,4.329266666666666,2.27576,3.7327666666666666,3.3095866666666667,3.3491666666666666,3.454575,0.913465,3.3054900000000003,3.0376366666666663,2.785356666666667,4.38996,3.2165466666666664,0.6653809090909091,1.8673719047619048,4.590495,2.6244075000000002,3.27326,1.7678833333333335,1.7678833333333335,2.07664,3.7250533333333333,1.12565,2.359115,4.7702599999999995,4.7702599999999995,0.6411142857142857,6.886284999999999,3.63025,4.37888,5.42525,1.2198057142857142,3.6716333333333337,3.5902,5.383406666666667,6.601423,2.92153,0.7584,2.7521799999999996,2.606376666666667,3.048558666666666,2.7105366666666666,2.7396,3.064016666666667,2.50095,2.377473333333333,0.855160909090909,3.447715,4.419230571428571,1.320765,1.4696285714285715,5.21015,2.30233,1.4777,4.6133,2.0401599999999998,3.71536,2.5898,3.8265999999999996,8.781945,4.360110833333334,4.59261,5.2356,2.401916,0.690458,1.795792,7.24199,1.74789,4.062665,4.136055,3.674765,21.221649583333335,3.1407399999999996,1.3570200000000001,1.18125875,3.199426666666667,1.4480000000000002,4.00099,5.4771,3.5217475,3.261153333333333,1.3537566666666667,1.51241,3.19586,0.592843125,3.3319266666666665,3.6689666666666665,3.0813966666666666,2.6271413333333333,2.50467,2.95571,2.111666666666667,3.18617,1.707684,3.523433333333333,1.57081,3.706935,4.138345,2.3744666666666667,4.795905,3.23099,4.07416,5.32135,4.794425,3.1292733333333334,2.8502766666666663,2.8388233333333335,1.1558499999999998,1.1558499999999998,1.1558499999999998,2.1211775,3.139343333333333,2.572293333333333,2.51064,2.8535799999999996,2.036045,4.353235,3.99215,3.58578,6.44439,3.47065,2.2641775,1.87057,1.0852783333333333,2.4390133333333335,3.8918,2.49409,2.61836,2.3273966666666666,2.53035,2.52935,2.8292800000000002,2.93373,2.7489266666666663,2.54249,3.000526666666667,2.37242,2.1231025,2.0388475,1.5315175,3.01531,3.126853333333333,1.9667575,3.81884,5.39365,2.9711533333333335,2.6496894230769232,5.810563333333333,4.672875,4.909795,5.63075,4.982025,4.10882,6.7964925,1.27765,4.493015,2.67353,5.4622,5.59715,3.76034,4.495625,2.369365,7.411745,2.59287,0.8350583333333333,8.1669,5.19144,6.325474285714286,4.72152,2.9917205,1.8165175,5.42675,4.96377,4.650825,5.11895,2.407085,4.566715,5.3319,1.67314,4.23737,2.7482,1.3534633333333332,4.83548,0.6411235294117648,4.535875,3.96991,4.607615,3.65184,1.60417,3.85904,2.106365,1.2977125,3.1844099999999997,3.6595999999999997,3.260346666666667,7.125461666666666,1.83604,6.905652083333333,10.79945,5.8497900000000005,3.572715,1.3915514285714286,2.9549266666666667,1.3915514285714286,2.7817066666666665,2.135873333333333,0.3269964705882353,1.1908889705882353,0.3269964705882353,0.3269964705882353,0.3269964705882353,1.1908889705882353,1.1908889705882353,0.3269964705882353,0.8638925,5.7225,3.287815,3.185225,3.11788,3.83311,3.141995,3.211778,1.59063,6.997958333333333,2.70814,4.146595,2.6458833333333334,1.066718181818182,1.2329775,4.643305,3.724635,1.1696444444444445,1.6644400000000001,0.7395672727272727,3.151289945887446,4.245955,5.50435,3.6297333333333337,5.811074166666666,0.6220861538461538,4.323815,3.53445125,3.10741,2.6677066666666662,3.5351666666666666,2.5740633333333336,3.0945199999999997,2.5981533333333333,2.95097,3.50773,5.95655,5.1737,1.822988,4.689885,4.419785,3.13563,3.719175,3.3017,0.34137866666666666,5.2054,3.617945,3.242055,3.07668,4.654165,3.892285,1.88849,3.332695,3.779535,8.59608,4.689635,5.59525,4.2676,3.7302424999999997,0.7760925,2.065875,2.080725,1.287135,1.7420200000000001,5.0557,5.56435,4.394705,4.571415,2.9614579999999995,2.66509,0.9091933333333334,4.15674,1.250615,1.134015,3.122455,3.660645,4.57839,1.270025,2.47602,8.763316666666666,3.04362,2.93792,0.83145,4.056995,12.338746666666665,3.360805,4.244505,3.16365,3.10926,4.604005,5.07225,2.03878,4.827355,0.6208861538461539,4.88258,2.2446725,1.9131275,1.9131275,3.465066666666667,4.67827,1.7411666666666665,5.06655,1.6706142857142858,4.58226,2.806750833333333,2.9639666666666664,4.72123,3.411655,3.882187,2.67285,2.7269945,2.7269945,11.79942,0.741528,3.32235,3.7549333333333332,2.1223375,2.061815,0.9075771428571429,1.3858275,1.2104585714285714,2.031625,4.759315,2.46762,4.46355,2.0729833333333336,4.82658,4.32018,1.6234283333333333,2.03885,1.0264433333333334,5.6378775,2.041855,2.135225,1.751856,1.8420320000000001,1.18125875,2.5584687500000003,3.52474,2.75239,3.1224833333333333,2.397553333333333,2.76688,1.7741633333333333,3.0237700000000003,2.6145866666666664,1.3351533333333334,1.8995866666666668,3.05495,3.3813999999999997,2.458743333333333,1.1421933333333334,2.5441366666666667,2.290763333333333,3.0880533333333333,0.3876531578947368,0.39054583333333337,2.2308133333333333,2.2131333333333334,3.331715,3.0696200000000005,2.64457,4.968665,5.85595,4.46295,4.903395,4.42731,4.08023,2.6418933333333334,3.805675,0.6514554545454545,0.06741068181818183,5.7157,0.06741068181818183,3.56862,3.311995,5.21405,3.300945,5.98615,4.977785,2.4505,2.6118566666666667,1.3921566666666667,5.86395,5.80225,2.92932,5.07775,2.0160825,4.20367,2.3171822826086954,3.10924,3.3625666666666665,4.127185,4.507559166666667,3.27325,2.24883,2.24883,3.905945,7.47923,3.979095,2.148773333333333,2.6154633333333335,4.190465,2.67885,5.49545,4.04679,1.1791777777777779,4.61051,3.1079866666666667,3.004253333333333,4.151655,1.0983733333333332,2.31657,3.888955,3.792415,5.4113,2.82753,2.868435,3.80792,3.865995,4.355545,5.4645,4.09199,3.4222272222222223,3.716615,2.9780766666666665,2.96792,2.8195866666666665,3.6728,4.589635,3.0422766666666665,5.131902500000001,4.478185,3.50293,4.410785,4.843535,3.680705,1.466762,1.269805,4.03237,3.6401,1.5720866666666666,2.772766666666667,3.24139,3.2330433333333333,3.9529766666666672,3.0195933333333334,2.2573499999999997,13.183424666666665,2.0979366666666666,1.895122,4.95337,1.1170360000000001,3.27979,4.699595,5.05955,3.334125,1.0209566666666667,2.2447166666666667,2.4773866666666664,1.406304,5.8847,0.91799,0.91799,3.940123333333333,2.2038066666666665,1.7363166666666665,1.70167,3.46809,3.8483,2.071005,2.724625,4.190155,3.2359566666666666,3.180626666666667,2.07178,6.2921,5.216,4.207235,0.6906738461538461,3.71775,3.90295,0.9641363636363636,4.867675,3.4904333333333333,8.841883333333334,4.755755,4.83993,3.54657,1.6051725,2.85813,5.05555,5.0876,4.355425,3.86315,4.29802,3.03913,3.6108,3.6108,4.52688,2.8619316666666665,4.606265,1.78493,5.7167087500000004,5.721181666666666,1.6632066666666667,5.0264,1.03705,5.17405,3.72898,4.98887,4.68431,3.894595,2.57295,2.770675,5.02065,4.65486,4.876425,4.98493,2.05068,1.3665120000000002,4.384385,2.0063733333333333,5.7062,3.03079,3.5031,7.39206,3.77799,4.56252,5.13345,4.573215,4.541385,8.16324,3.50212,3.1812,9.621514999999999,3.746155,0.636425,2.1552619230769228,5.1325,0.643836,5.0057,4.207885,5.20265,4.762655,3.239495,3.613815,4.777635,4.820065,2.392995,0.7307071428571429,5.0027,4.57349,4.34356,4.475535,2.8089133333333334,4.7037,3.37248,0.639808,3.734715,4.104025,2.449705,2.89667,4.23961,2.341326666666667,5.45805,4.83557,4.265969999999999,0.87941875,3.3920666666666666,5.900318333333333,5.900318333333333,8.911249999999999,2.0896,0.83762875,0.83762875,25.594253333333334,2.580775,8.001455,0.334335,1.24974,3.2394833333333337,0.8162520000000001,3.63643,3.83648,2.359615,2.359615,4.87781,5.09105,3.43025,2.4783,2.4783,3.49228,3.69744,4.119575,3.08544,2.0368,2.4649216666666667,4.158339,1.93069,3.555695,2.96321,3.0175425000000002,3.0175425000000002,3.539266666666667,0.9498355555555555,2.5648966666666664,1.59134,3.4186666666666667,2.96151,3.07065,3.1336866666666663,4.882285,2.32825,3.2754600000000003,5.746096,1.4356659999999999,2.13546,2.995405,2.3863866666666667,4.121805,5.748323666666667,1.31207,3.8530333333333338,2.52755,4.80777,6.47612,1.5985975,4.6151566666666675,5.082518,3.291428,4.551566666666667,1.1063185714285715,1.565076,3.07153,3.649228095238095,1.5344666666666666,2.22409,1.612035,1.6214400000000002,2.00502,3.4726000000000004,5.1570825000000005,1.01979,1.5459142857142858,2.86144,12.718155,4.68488,2.7939599999999998,1.2199799999999998,2.8703780952380953,1.0455614285714285,3.249556666666667,4.399816666666666,5.1543,3.3343333333333334,5.545,1.366545,3.8493666666666666,4.00319,2.827503333333333,3.6764533333333334,2.898566666666667,0.9822433333333334,2.591673333333333,2.47761,6.250601666666667,3.467923428571429,2.7030266666666667,0.709649,4.722666666666666,3.491566666666667,1.46117,5.858485,2.119185,2.5712766666666664,5.93665,1.3129777777777778,3.06211,0.9881181818181819,3.1548866666666666,4.60352,3.17031,3.1228366666666667,2.1384066666666666,2.5529699999999997,4.9554,4.77407,5.1454,1.683165,4.44204,4.115565,4.184326666666667,3.5184060000000006,2.2033666666666667,4.338229333333333,0.938796,3.005394285714286,5.2627,2.728725,4.16627375,1.5193375,3.0761233333333333,1.9142219999999999,1.9142219999999999,7.48085,3.2940466666666666,5.5637475,3.4904116666666667,1.8151433333333333,2.834674761904762,4.7591383333333335,5.761,8.41405,5.052737333333333,2.954917,2.11953,2.1897260000000003,4.0587333333333335,3.743275,1.464704,2.1720725,2.8201660714285715,1.3034225,3.3834999999999997,19.701535999999997,3.6992333333333334,2.8939333333333335,3.1975933333333333,3.0812066666666666,2.7533366666666663,1.9136233333333335,3.103736666666667,3.4310333333333336,2.902013333333333,2.565253333333333,5.832245333333334,2.82991,4.088622285714285,2.521432285714286,2.0991962857142856,1.5252166666666669,4.103457777777778,2.2773025,4.26858,4.872695,3.984635,2.927015,3.0783666666666663,2.37406,3.5421333333333336,2.5534233333333334,3.8334333333333332,3.3545,0.86016,4.98155,2.43827,3.547833333333333,2.9545905555555554,2.10837,2.3581175,2.3581175,3.8369758333333337,2.2378258333333334,4.88897,4.52739,4.328865,4.71206,4.797285,4.8038799999999995,4.8038799999999995,4.179085,3.093996666666667,4.71089,2.726515,1.604882,3.5869666666666666,4.56949,4.250045,2.6913,3.88683,5.796397499999999,3.9872666666666667,6.690796702380952,3.096665,0.865442,0.865442,3.34167,4.2305,3.7736,3.327832,2.311033333333333,1.8650833333333334,1.7237933333333333,3.244453333333333,6.477542,1.5149683333333333,4.3665,3.5615,3.86576,5.31485,5.3412,4.837880520833333,3.2892033333333335,2.424425,5.01465,3.22438,2.2416275,1.1180160000000001,4.320045,2.6055,5.722183333333334,3.116683333333333,2.65206,3.32116,3.804695,3.75759,4.85381,3.51137,4.85171,4.29252,4.20603,3.723325,3.231845,3.419995,4.4281,2.55912,4.58123,3.82849,4.91884,0.6650911111111112,2.2814975,1.7285525,2.200165,1.799695,2.718776666666667,2.6785599999999996,1.9256533333333332,4.66919,4.96279,1.88893,4.24477,4.55691,2.45972,5.942561666666666,4.16889125,5.07695,5.2216,7.009951666666666,2.0840733333333334,2.5939733333333335,1.9865866666666667,2.725713333333333,1.88236,1.76872,4.02455,3.46826,5.31325,0.9981000000000001,2.99541,4.561505,2.436075,5.34795,3.706665,2.636835,3.6618999999999997,3.33925,2.023515,2.0009445,2.80335,2.79955,3.0891,1.9821725,3.4021999999999997,3.4021999999999997,3.5164,3.32895,20.15163125,1.0992533333333332,5.513374166666667,2.2678575,1.8817333333333333,3.82601,3.98983,2.024715,3.70083,4.634415,1.4498966666666666,1.4498966666666666,1.2661,1.8571466666666667,2.66347,3.15771,4.596335,3.866445,3.6341666666666668,0.5252,3.57142,1.86963,2.454415,4.6577525,3.348455,3.855485,3.864885,4.890925,4.055925,1.9963775,4.20339,5.447150000000001,2.406155,3.725695,5.1781,1.96224,4.599415,6.1379,1.4117328571428571,1.935474,3.7725333333333335,0.8675471428571429,3.0784866666666666,3.80008,5.1782,4.996205,2.7556205555555557,7.919871666666667,3.0186266666666666,2.8433466666666667,0.4751682352941176,4.317215,5.321109285714286,3.043351904761905,5.2921,3.733975,2.5811366666666666,1.813834,5.370523,4.558215,4.46923,2.1217825,2.039155,4.686665,3.846166666666667,2.8681733333333335,1.9645775,4.2914975,6.471887499999999,2.81165,3.749555,3.511505,3.74744,1.5177285714285715,1.5177285714285715,3.3409666666666666,2.9584799999999998,4.76535,4.9675,5.9825,3.91292,2.770425,2.190315,1.8300833333333333,1.3013871428571429,5.00125,5.872355000000001,5.426,5.54755,4.49826,6.5678175,3.62476,2.79297,3.972471333333333,1.9851666666666665,3.04208675,1.56448,4.569605,2.3722,4.2825,5.60095,4.031035,2.7385366666666666,2.99096,1.5538714285714286,2.619875,3.793066666666667,2.24069,0.571175625,3.2125566666666665,3.135673333333333,2.8375500000000002,2.4209333333333336,2.17493,1.8210000000000002,0.7535454545454545,0.7535454545454545,3.565,2.00555,2.29584,3.64877,6.12825,4.68331,4.966245,4.31886,4.33951,2.464614666666667,1.2413733333333334,3.0162,3.37387,0.9313175,3.4115375,3.017965,2.81,2.244755,4.11089,2.51675,1.9238600000000001,1.3200871428571428,3.925005,7.140420000000001,3.774675,1.7345662499999999,4.48784,3.90576,2.787305,3.4335,2.69856,1.7335266666666669,1.0014175,3.79508,2.3285108333333335,2.1775100000000003,1.65461,2.279246666666667,2.2296066666666667,2.50003,2.8278375000000002,1.2863866666666668,1.8406099999999999,1.81532,6.4841675,4.35638,4.606315,4.065285,4.0603,3.2556266666666667,1.8985756410256411,4.45205,4.559445,2.513285,5.36025,2.052975,4.52944,1.1244444444444444,4.000675,4.188675,1.8896925,7.62292,3.51592,1.85036,1.7371475,1.885015,2.6792,3.3409999999999997,1.3807522727272727,3.608833333333333,5.904,4.42478,4.4379,5.8557,5.71635,4.741375,0.9560375,4.76227,4.666945,4.384645,5.1507,4.171296666666667,4.93334,5.5306,2.963535,1.3114933333333334,1.3114933333333334,5.4632,5.813371666666667,3.404005,3.20631,4.019345,3.51392,1.564814,4.76548,5.11335,3.837735,3.94941,3.055266666666667,2.90558,5.01,2.4168496250000002,10.94981281500852,1.9319533333333334,0.75951125,2.47444,1.6520175,2.33286,2.3089975,1.835608,2.996636666666667,5.3673,5.56555,3.248466666666667,1.6299833333333333,6.387829047619047,1.3681514285714285,3.23805,0.5174,3.9085799999999997,5.86995,3.86247,5.509,12.863489999999999,5.5522,3.16278,2.8936933333333332,5.00105,3.2072766666666666,5.1342,1.2362725,1.4200766666666667,0.6948354545454545,6.13925,4.32047,2.0544000000000002,4.914810000000001,5.1101,6.2828,4.988565,4.80891,4.77487,6.40595,3.818055,5.25405,4.38327,1.539588,4.57511,6.3154,3.976295,4.06725,5.15405,3.99351,1.162715,4.942555,3.838515,1.22934375,3.6080666666666663,3.271876666666667,2.41147,2.698423333333333,2.362346666666667,2.6426166666666666,0.6856781818181819,2.42686,2.6568733333333334,2.55056,2.9218433333333333,2.9410266666666662,1.960345,1.4842000000000002,2.887375,2.4070375,2.2621475,3.5468666666666664,2.896853333333333,0.687939,2.60447,3.313235,5.06915,2.6213366666666666,3.7092,5.8832,6.08535,3.386645,3.841845,1.331167142857143,3.713005,2.568916666666667,4.085508333333333,2.70311875,5.1758,4.91934,5.2306,3.652765,4.216966666666667,1.024648,1.024648,2.160248653846154,1.5836325,4.073555,2.5320645,2.5320645,5.1042,5.93875,3.13,1.1915566666666666,1.5607142857142857,6.02615,3.579445,3.0948266666666666,3.16032,2.64902,3.240825,3.0948266666666666,5.817410000000001,3.12497,3.3294041666666665,2.803645,2.026855,2.98514,6.2458,3.130195,3.857385,2.870125,6.0034,5.5205,6.219150000000001,6.219150000000001,5.7871,4.29297,0.6900153846153846,4.84496,5.06365,2.91131,2.62717,10.470966666666666,3.5002333333333335,4.343785,3.69481,3.6097333333333332,5.6282,3.070245,3.1734275,3.0242066666666667,3.3470999999999997,2.7175333333333334,1.824436,1.824436,3.778615,3.73786,4.493225,2.08522,1.93348,49.7747959469697,2.803706666666667,0.8608363636363637,3.2455133333333333,1.7947925,3.366,2.8762733333333332,3.0657933333333336,2.90226,2.9790799999999997,2.149576666666667,0.95569125,4.66955,3.194925,3.49819,4.09238,5.37275,5.32915,5.13865,5.6609,5.6211,5.2107,5.9245,6.42752,5.02675,5.88605,2.05777,3.81104,6.7541,5.86525,4.256505,3.20091,3.986255,2.391175,3.89519,4.765025,3.1475633333333337,3.9027333333333334,1.6761279999999998,3.62224,1.3252039999999998,3.11694,3.66922,3.660025,6.815495,4.404075,2.2588325,4.491285,4.49338,3.893515,1.0028525,2.74437,3.852285,4.444767142857143,1.231845,4.89118,1.4036975,6.08155,0.6976055555555556,4.46849,10.69716,4.459745,4.297045,4.214215,1.7674166666666666,4.291675,5.2878,2.9956633333333333,4.127705,9.434286666666667,3.4127666666666667,2.3173933333333334,2.8565633333333333,2.8513133333333336,2.8516999999999997,2.73085825,2.096443333333333,2.66691,3.0390366666666666,2.7770966666666665,2.703696666666667,3.355145,2.20911,1.43281,4.2453666666666665,2.779576666666667,2.5799600000000003,5.185924666666667,3.04628,1.24874375,2.036815,2.8462899999999998,5.301236428571428,2.64785,2.225832222222222,2.225832222222222,1.5728825,1.4471075,2.04562,1.7674759999999998,6.036415,4.29929,2.5971,2.9537099999999996,3.4391,2.034535,0.565675,2.1733733333333336,1.8957525,0.6163292307692309,3.897165,2.542625,2.4827725,3.5964,3.9396266666666664,2.6230533333333335,1.6890733333333332,1.3898266666666668,2.027875,3.50248,3.87967,4.272460000000001,2.7371166666666666,4.0809,4.22223,1.1312727272727274,8.94052,2.603375,3.13205,1.3152,3.215256666666667,2.25914,2.25914,2.25914,4.44518,5.86035,2.385345,4.983605,1.396692,5.607356666666666,1.6365480000000001,4.401825,4.246625,4.085165,4.152565,5.0338,1.89395,8.2508225,4.442405,4.857195,3.271065,3.998845,3.1887033333333332,2.9913333333333334,3.97913,2.575876666666667,4.393939285714286,4.463786666666667,1.6330475,3.93205,1.6330475,3.518695,4.476687500000001,4.940965,4.476687500000001,1.7484,6.19365,5.0103,4.468655,2.8110166666666667,3.1418533333333336,4.25564,3.029345,4.192005,0.47233285714285717,3.2113600000000004,3.093836666666667,5.166625,4.899145,2.531575,4.84974,7.03378,3.687995,3.397355,2.912925,2.17937,3.868645,3.715475,4.918825,2.336135,4.121125,0.876423,5.21745,3.22264,4.307,2.855043333333333,3.141916666666667,2.1855766666666665,2.9444199999999996,2.78252,2.789066666666667,3.95031,2.540625,2.540625,5.035844166666667,2.822255,4.906505,11.738375,1.012811111111111,4.442875,2.6276066666666664,2.2597,2.92403,1.394675,7.910018833333334,3.8964666666666665,4.0016,3.880141666666667,2.1622133333333333,3.872833333333333,4.366573805555555,2.18538,0.4525861111111111,1.709664,1.4500775,5.60155,2.80308,3.180525,3.8203633333333333,3.4021316666666666,2.4879937500000002,4.491045,4.70398,4.04222,4.342635,2.23162,4.46987,2.4937733333333334,6.035466666666666,3.08108,4.88686,4.346875,4.441845,4.745675,1.910185,3.8184,3.594625,2.63688,4.621675,2.635765,3.03792,4.352105,4.231345,2.830833333333333,4.81592,1.9727,4.189585,2.901605,4.46669,4.220595,3.69572,5.16165,2.867235,4.41045,3.767575,4.051905,2.6326066666666668,2.070615,2.93255,2.290855,0.8373400000000001,4.172315,2.048495,3.547715,2.62362,4.16957,3.210025,3.104035,3.10387,3.644855,4.724249333333334,4.372695,3.124715,1.32209,4.05783,2.451975,0.94957,5.2627,9.59239,3.45091,3.515125,5.32745,5.1191,3.9021,2.099975,3.99064,3.924025,3.1166,3.165855,3.37463,0.63084125,1.2384842857142857,6.545109999999999,1.68826,2.615325,4.9418880000000005,2.52565,2.35312,2.767945,8.86254,3.19263,4.239855,3.75923,0.7370288888888888,3.418715,2.61626,3.64984,4.485395,5.850998333333333,0.6835600000000001,3.27338,8.66968,3.13078,1.0399188888888888,5.570752083333334,4.678975,5.49425,4.68312,5.4407,3.304535,2.9261866666666667,7.54948,0.940738,3.51167,4.325465,3.1266,4.01555,2.09034,4.45286,1.4220366666666668,4.365015,4.125875,3.94958,1.67824,4.973135,4.672685,2.3435825,2.104215,2.6528,1.46117,3.997485,3.5217475,1.659676,8.143790000000001,6.0706,4.270635,5.6286,3.437595,4.34285,1.4458285714285712,4.68218,3.94754,5.2548,3.688265,2.381256666666667,6.9385047008547005,0.8984175,0.8984175,2.46824,0.92107,4.20913,2.75578,1.0412925,1.7202833333333334,0.4457875,7.122769999999999,0.98623,2.691455,4.140845,4.03111,3.98145,4.70186,5.47495,5.6042525,2.779025,3.073505,2.332865,4.617935,5.18435,4.1953,3.9811,3.7776,6.85455,4.07597,4.500963888888889,6.151725,4.82571,3.9332599999999998,2.26429,3.9332599999999998,7.042492,41.31222184632034,3.53144,3.38433,3.11577,4.67749,4.706075,3.336545,3.325065,3.784485,4.311615,4.621075,1.85065,5.4514,2.66283,4.60527,5.3698,5.16845,2.4136866666666665,4.991545,3.86037,3.229575,1.633918,0.6494715384615385,1.8286799999999999,3.566266666666667,3.07347,1.3838875,3.3017566666666665,2.7826633333333333,2.8623433333333335,3.106896666666667,3.08184,1.541444,2.5298700000000003,3.8515333333333337,1.9171500064350062,2.92905,3.383096,2.98592,2.5229333333333335,3.6336666666666666,1.1630666666666665,4.39999,3.89338,1.18458,1.18458,1.18458,1.18458,2.9707418181818186,2.06056,2.46103,3.36836,4.37331,4.72953,4.342665,4.60594,6.43635,4.793795,2.394525,6.72555,3.47852,3.240025,3.682265,4.342185,4.511695,4.66358,0.7918461538461539,1.41508,1.5166366666666666,4.640895,4.51936,3.793645,3.947615,6.256658333333333,2.2381166666666665,5.1101,1.6019383333333332,4.579225,5.51815,1.4852299999999998,6.097,0.7932324999999999,5.00915,1.321782,1.17986375,3.927165,4.67231,4.8193,5.7783,5.7379,3.6832,1.7808119999999998,4.876995,1.4689125,3.343595,3.450515,2.5811366666666666,1.7618025,3.270895,1.6742833333333333,4.336585,5.3749,2.754293333333333,5.7077,125.8356340770202,0.47090333333333334,5.11545,2.7065933333333336,4.70515,4.046685,2.65524,1.4253125,0.3835052380952381,2.888935,3.55032,5.5918,2.798665,3.770425,4.661605,4.50405,4.7742,7.989146666666667,0.6679133333333334,3.729155,0.95995125,11.337982,3.32476,3.51209,1.0742122222222221,2.10416,2.71092,2.2096325,2.9592666666666667,3.3971999999999998,2.2401433333333336,4.3699175,2.8422466666666666,2.2651233333333334,2.19199,5.51665,4.051725,3.03711,3.50248,3.73401,3.991145,2.2919899999999997,3.745005,3.30856,3.049245,1.1448555555555555,2.5347666666666666,4.3699175,4.652285,5.07145,4.01443,5.69975,1.876765,10.49623,4.14028,2.624565,3.715855,6.1497,0.598802,0.598802,4.78626,4.78626,4.162365,4.027233333333333,1.8026231818181817,0.5955050000000001,2.94175,4.481065,4.455535,4.19217,3.83929,5.7501575,4.873145,2.233725,4.814235,1.969615,2.83242,4.570647500000001,1.698755,3.272835,0.48787,1.391854,1.391854,1.948595,4.577385,4.22389,5.15535,5.830076,2.86057,3.01039,2.07633,1.759875,4.623513333333333,3.916575,5.0503599999999995,2.34047,5.0503599999999995,5.1929,3.446205,6.2497,3.81517,2.3677633333333334,2.0854333333333335,2.6006533333333333,1.4432525,1.3992075,1.4534325,1.436,1.5944075,2.576125,3.5434666666666668,4.76004,2.38947,6.70215,3.0840633333333334,4.490805,2.67255,4.28541,3.04853,3.0977333333333337,6.489576666666666,3.5232666666666668,4.840371333333334,3.220493333333333,1.2592625,2.552026666666667,2.85683,2.274296666666667,5.13145,4.03554,4.811,12.700364859311742,0.7217525,2.00068525,2.446655,1.8138839999999998,1.2352100000000001,2.752625,2.4839,2.520025,2.552225,0.7354976923076924,1.8229825,0.5157905263157895,4.94789,1.996985,4.808285,4.993095,2.519725,5.92681,4.84481,8.43183,3.85164,2.84,3.14642,4.88594,4.7945,3.098084571428571,4.706715,2.0899375,2.0899375,5.1064,4.026635,4.36698,3.97209,3.4663,3.98245,5.24155,4.95988,4.81743,4.86961,4.38931,4.468095,2.381085,4.9338,1.29684,5.0653,4.699035,2.5655666666666668,2.2541866666666666,4.72244,1.41346,4.64507,1.9130825,5.874539782608696,3.835085,3.899395,1.5318466666666666,3.0508633333333335,3.0508633333333335,12.841069999999998,3.91376,4.7597,1.12254375,4.794304,2.509625,1.40702,2.613975,1.95,2.1368875,2.05076,3.266285,6.64705,1.6685175,5.0387,4.7149475,5.5888,2.33594,2.61734,3.948605,4.446345,5.1658,3.95735,7.586148333333334,3.2449833333333333,3.1360233333333336,0.4170333333333333,3.78567,3.79607,3.4053,6.149649999999999,2.48458,3.16053,1.2922233333333333,1.5975466666666664,0.571175625,1.709664,2.98525,1.5970383333333331,1.6741833333333334,0.68224375,1.2868840000000001,4.66276,2.507375,0.6742107692307692,1.546385,1.7125475,1.887886,1.3030333333333333,2.3703125,1.5975466666666664,2.533925,1.2868840000000001,1.2868840000000001,0.6742107692307692,1.6264,2.54114,1.5344666666666666,2.852625,0.6742107692307692,2.67135,2.54114,1.3585500000000001,1.3585500000000001,1.3585500000000001,2.05642,1.21621125,0.6742107692307692,1.13236,1.2348125,1.134311111111111,1.9556360000000002,2.66025,0.869675,2.3309925,1.6082714285714286,0.6742107692307692,1.7198499999999999,1.5975466666666664,1.9833333333333334,1.9090333333333334,0.909254,1.9833333333333334,1.0849022222222222,2.3435825,2.536525,2.70385,1.2348125,2.28788,1.6742833333333333,1.6742833333333333,1.0099727272727272,1.0099727272727272,1.0099727272727272,1.2922233333333333,1.5975466666666664,1.6082714285714286,1.546385,0.9906342857142858,1.9090333333333334,1.442048,1.731878,1.9114879999999999,1.2922233333333333,2.7939599999999998,12.2919,0.68224375,2.5970199999999997,1.9277,2.71505,1.0455614285714285,1.0455614285714285,0.6742107692307692,1.4404333333333335,1.8210000000000002,1.6082714285714286,1.761216,1.9090333333333334,1.2002111111111111,1.2002111111111111,1.7210360000000002,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,3.4681333333333337,1.0849022222222222,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.19303055555555554,0.3812713636363636,56.135026975468975,1.473785,1.5308866666666667,1.6082714285714286,1.9277,0.9906342857142858,0.6102117647058823,0.709649,0.709649,0.709649,0.709649,4.296566666666666,17.580509166666666,3.4123,0.7465600000000001,1.69219,1.69219,1.69219,0.7465600000000001,2.98525,0.6742107692307692,1.7198499999999999,1.6741833333333334,2.58284,1.0849022222222222,2.531575,1.0849022222222222,1.665028,1.665028,2.1037500000000002,2.1037500000000002,0.6742107692307692,2.1268599999999998,2.1268599999999998,0.9916,0.19303055555555554,2.98525,1.7756666666666667,2.52755,0.7465600000000001,0.7465600000000001,0.7465600000000001,0.7465600000000001,0.7465600000000001,1.9277,0.3812713636363636,1.0849022222222222,2.290735,2.290735,2.770675,3.3732333333333333,0.6411142857142857,0.6411142857142857,3.4519,4.150333333333333,1.2198057142857142,3.10196,1.12272,2.63805,2.0896,1.0983733333333332,3.5024333333333337,2.163895,3.3920666666666666,5.4999,2.567355,1.2673222222222222,4.793115,4.710215,2.9539766666666663,1.762454,2.3996999999999997,4.67411,1.5476305555555556,2.7335066666666665,2.8734466666666667,3.738566666666667,2.43697,6.253046666666666,4.58354,0.19303055555555554,3.2648499999999996,4.73729,4.634425,4.26809,4.267205,4.98647,2.797523333333333,1.84726,3.94275,4.53501,4.370065,4.94131,5.06145,3.207555,0.6838033333333334,6.788955,1.3647983333333331,3.2661759999999997,4.853595,2.703163333333333,2.703163333333333,0.78629,1.7618025,3.40449,2.992225,4.7762,4.39084,5.157,5.31585,1.1944685714285714,4.94784,4.916255,7.535839305555555,2.2003066666666666,4.051945,4.451775,3.81142,4.84358,4.704115,4.895465,5.4688550000000005,5.0079,4.6849300000000005,3.65952,4.886115,7.905589,1.6289725,1.873468717948718,2.711323333333333,1.7403033333333333,2.807703333333333,1.8499400000000001,5.05405,2.977206666666667,4.969655,2.02158,4.7755,3.953775,3.8501,4.220795,3.719395,2.4741933333333335,2.66342,2.7653233333333334,2.9679466666666667,2.5262733333333336,1.7481833333333334,2.6872666666666665,2.9133866666666663,2.31522,2.31522,4.056295,2.91232,1.9352266666666667,3.0015699999999996,2.2416133333333335,2.4093833333333334,2.9410633333333336,2.6231066666666667,3.0435833333333338,5.2462,4.713635,4.772095,3.6101433333333333,3.6101433333333333,3.976755,3.4946,4.7986,4.46171,3.792715,3.3253,3.3597,6.98123,2.095685,1.894225,3.311685,2.95936,1.3110533333333334,1.3110533333333334,3.61376,1.851055,4.024284,3.59568,3.3858,2.161359,2.1561728333333336,0.5202808333333333,2.53725,3.891475,2.1746425,2.46609,4.207475,1.1787266666666667,4.91533,1.2478733333333334,0.40326500000000004,0.5593721428571429,21.986862476190478,0.5593721428571429,0.40326500000000004,0.7154792857142858,10.867003333333333,3.0432133333333335,4.265725,4.666905,3.6952125000000002,2.821175,4.225662857142857,2.11868,2.67254,3.14768,2.925165,4.284845,4.138855,3.455625,2.28274,3.08896,3.86832,3.942465,2.92151,1.070849,1.070849,1.070849,1.070849,3.299005,2.78438,3.13202,1.7750666666666666,1.31979,2.35488,3.617075,3.69658,2.78722,3.64563,2.41398,2.806750833333333,3.824805,4.30212,1.1013783333333333,3.1507199999999997,1.0741,2.89085,2.59363,3.897733333333333,5.03995,2.35233,4.38198,4.62798,0.7810057936507937,0.21545357142857144,0.21545357142857144,0.5655522222222222,0.21545357142857144,0.21545357142857144,0.21545357142857144,0.5655522222222222,4.45586,7.360325,3.519165,0.52386,3.74273,7.48709,3.32849,3.3797333333333337,1.128975,4.667785,5.51765,4.762485,4.832315,1.65999,4.844235,2.1507533333333333,2.312631333333333,4.02675,5.51335,0.7871199999999999,0.7871199999999999,3.42298,3.05306,1.96097,3.764,2.73408,4.808305,2.27094,3.90441,5.4869,5.61605,2.44366,1.65055,4.22234,3.377685,2.206555,3.67787,3.494355,1.8373825,1.136195,4.128125,3.355915,4.83389,6.4829566666666665,1.5168033333333335,3.86596,1.1338166666666667,2.51693,3.94705,4.012015,0.4390585714285714,3.848045,4.29927,0.92127,3.09998,7.80381,6.0407,2.1534,5.876293,4.47401,3.64241,1.4507866666666667,5.494623333333333,3.046726666666667,3.4187,3.6193000000000004,1.8715533333333332,1.8715533333333332,6.134825,6.134825,3.5163375,3.5163375,7.96809,3.5163375,3.5163375,4.157696388888889,6.0673,3.710945,3.8564258333333337,2.8353133333333336,5.18625,4.221735,3.2316866666666666,3.01202,4.770905,3.4058666666666664,2.76148,3.0676,2.19192,2.626975,4.907445,7.651680000000001,7.059435000000001,4.708555,3.67212,3.96344,6.747922,5.093,4.072705,4.504405,3.67231,2.4052933333333333,2.19352,2.04135,6.0698,5.6466,4.64949,4.49614,2.21043,2.97662,7.204115,2.05642,2.49179,3.3731000000000004,3.3731000000000004,3.10694,5.24305,0.8511916666666667,3.4535,4.1165,2.83044,10.406825,4.48421,2.6596766666666665,2.53215,5.7196,6.55085,2.967815,5.68925,2.55362,4.46019,2.929738,4.503565,5.2827,5.1423,1.219025,3.4985,1.2295725,2.4763733333333335,5.130354176470588,7.923206666666667,2.614666666666667,2.881693333333333,6.836193333333334,1.8107780000000002,4.76506,5.6813,3.37767,3.59777,2.22079,4.908715,2.517545,0.55743,5.48545,3.19711,3.699033333333333,5.2728,4.946455,5.376,6.944025,5.24605,5.5383,7.8812425,54.07592,4.7702,3.943705,4.97182,6.49995,4.70808,4.932815,4.123355,4.627585,1.8910025,3.99439,4.15551,4.65459,2.45231,5.1025,4.16719,1.605368,5.80645,6.5612,7.356273333333332,5.34185,3.116575,5.3552,3.247935,3.116075,3.572855,4.181405,3.6389,6.67325,2.74525,1.0555314285714286,2.34046,0.686186,0.686186,3.868845,0.686186,2.4311251428571428,2.4311251428571428,3.106757142857143,4.534473,4.920360142857143,2.34046,4.683555833333333,2.7139408333333335,1.4722033333333335,5.16365,2.181075,7.8396,6.10823,11.93721896212121,3.347633333333333,2.8443466666666666,0.23881454545454547,1.789364,2.8538766666666664,0.86318375,1.3739866666666665,2.496426666666667,1.78129,2.7829,0.627877,28.65794208333333,1.8942125,0.7282953846153847,2.8258533333333333,2.8258533333333333,0.4234983333333333,2.0159075,3.2125575,1.2843875,1.8704625,1.598585,4.12688,2.828885,1.9992533333333335,2.3085833333333334,1.1390733333333334,2.137505,1.6790333333333332,5.903954833333333,3.96913,7.217411666666666,2.5573,3.536433333333333,1.1043283333333334,2.57913,4.80553,5.8461675,3.142386666666667,2.3554133333333334,6.209746666666667,2.41388,2.780806666666667,4.4239049999999995,1.0820666666666667,4.022833333333334,2.3813299999999997,6.0574,5.22945,6.12745,3.28457,4.1465025,4.1465025,5.20815,2.171975,5.6109,2.7002699999999997,1.79405,4.127395,4.574495,7.415911666666666,5.28825,3.006373333333333,3.9374000000000002,3.172345,1.33164,5.0754,1.12591625,5.520433333333333,4.622435,7.8279499999999995,4.556935,4.527025,4.112645,8.728845,5.4665,5.16015,1.12707,0.7149928571428571,4.869595,5.0067,2.449255,3.220325,3.32421,4.10983,2.245355,4.922965,2.389396666666667,5.2311,5.1958,5.01615,4.800795,4.79229,2.942765,7.0013635,3.188145,5.11695,3.347325,3.958105,6.071093809523809,0.6145942857142856,3.7261666666666664,1.7143266666666666,0.6775044444444445,4.67567,2.961395,1.19700875,2.00322,6.30959,3.956235,2.277915,2.73682,2.6299433333333333,5.0997,4.070435,1.693187619047619,4.175245,2.8602866666666666,3.564,4.85316,5.0454,3.1262049999999997,3.929266666666667,3.9006666666666665,2.0585999999999998,7.12174,4.97784,4.19747,4.929215,2.3999025,4.25274,4.9129,3.121095,4.019255,10.87412,3.880265,4.30408,5.1984,4.75124,2.5385,3.935185,4.206645,4.94573,3.324996666666667,4.335935,1.88128,2.83821,3.279065,3.420985,5.1818,1.8867699999999998,4.533115,3.2002066666666664,5.6088,3.1127933333333337,2.37443,4.15203,4.46225,1.03341125,3.513325,2.64962,4.506987333333334,1.799748,1.8283399999999999,1.2523775,4.646445,5.49285,5.8581925,3.849,2.978595,2.43965,2.017405,3.068755,1.5704133333333334,4.972755,2.775055,1.8633925,0.9651846153846153,21.34992937179487,3.074825,3.2434233333333333,4.568630000000001,4.115029743589743,1.4629566666666667,2.807741,2.971035681818182,1.21462,1.8596633333333334,3.98865,5.30815,3.73249,3.37233,5.51235,4.69757,7.3760425000000005,5.202465833333333,4.98474,4.019755,2.954636666666667,3.829565,3.98916,3.5229,4.519905,2.1152025,5.2244,8.81241,3.384,2.84246,4.180275,0.61282375,3.082316666666667,2.1246899999999997,2.3259825,4.36958,3.33476,4.80694,3.7245,2.825415,2.4638175,1.707415,1.063196,1.3345533333333333,1.1980566666666668,4.138435,4.26235,4.7125,4.847655,7.31482,2.2182566666666665,1.3916520000000001,2.510823333333333,7.826373333333333,3.32228,3.005775,3.01253,4.62763,3.5188875,3.41509,1.616984,4.289855,5.0337,4.227805,3.91012,3.466985,4.23492,4.835275,4.05623,4.550305,3.59745,2.2402,2.91675,3.270585,5.877,2.71869,4.287053,3.81878,2.845875,2.5679833333333333,2.23205,2.1013366666666666,2.843833666666667,2.843833666666667,1.9624266666666665,3.0295799999999997,2.250836666666667,2.279786666666667,1.94695,4.021125,2.32416,2.6241933333333334,2.85093,1.6835533333333332,4.35777,2.8579,3.4665,1.9603133333333334,5.5044,5.3784,5.030201388888889,2.885655,2.109695,2.645795,2.43426,2.05907,2.70699,1.91177,2.501125,2.47524,6.585996166666668,4.289630000000001,3.455425,0.5626775,4.26653,4.977785,4.351,3.439605,3.775495,3.6118475,5.95115,4.43582,3.25454,2.8485653571428573,2.188044888888889,2.49582,1.818838,1.8258679999999998,1.643196,1.90258,1.7975275,1.4135716666666667,4.178350857142857,0.6742107692307692,0.5530788888888889,2.2510000000000003,1.58915,1.60597,1.5783816666666668,2.598195,1.5551450000000002,1.6244939999999999,0.5905925,174.51698565500593,0.5385433333333334,1.980992,0.9894299999999999,1.29914,2.0405825,1.505265,1.95641,2.5261066666666667,1.976645,7.03895,3.11268,3.601163333333333,1.7835066666666668,3.2778,1.291215,1.291215,6.288045,0.5464249999999999,2.47513,3.309013333333333,3.14641,0.8172627272727273,0.6744411764705882,1.2269817435897437,1.1113090909090908,2.3464525,4.58852,2.349775,2.251105,2.6106433333333334,4.785687888888889,1.1334888888888888,4.62834,3.98687,3.460595,6.54188,1.6012533333333332,2.969925,2.734865,4.169903,2.19467,3.142565,3.24874,3.3223,4.83429,2.68588,6.20126,2.5538,2.66881,3.48273,1.817355,2.728645,2.868845,2.566525,1.623675,1.594705,2.63577,4.60971,5.818326666666667,3.51247,2.908975,1.416035,4.258685,3.6772333333333336,3.8127666666666666,2.84107,25.78185970940171,2.3886813333333334,2.9964733333333338,3.27127,3.836133333333333,3.2154566666666664,5.9595,3.0995666666666666,2.5976666666666666,3.5932333333333335,3.2844266666666666,2.09001,3.3171700000000004,3.166456666666667,3.2001633333333337,1.70355,1.72098525,0.595669,2.29509,2.0684225,0.20753625,2.787456666666667,2.92687,0.20753625,0.20753625,1.89303625,0.20753625,0.20753625,0.20753625,0.20753625,3.3594666666666666,2.619006666666667,0.6166384615384615,3.6935424999999995,1.6183175,1.887776,5.15865,4.481845,6.453765,2.339645,4.990625,2.410025,2.5211799999999998,1.30132,5.795203333333333,2.69127,6.123515,0.9222916666666667,1.21849,4.866565,4.92869,36.71687868192918,1.78641,1.3570966666666668,2.2885133333333334,2.3918425,1.0099727272727272,2.384113333333333,2.32776,2.73655,2.12087,2.44736,1.6370716666666665,2.8408800000000003,2.3138633333333334,2.2491066666666666,2.5537233333333336,2.43865,4.170755,3.2474600000000002,1.1036942857142857,3.806225,3.93161,20.14548838888889,2.7678766666666665,3.1937866666666666,2.700136666666667,0.831152,3.1243999999999996,1.6292442222222223,3.1243999999999996,2.4670433333333333,2.5778933333333334,3.266026666666667,1.6851075,2.034685,4.59403,3.941465,5.14765,4.206345,1.8065539999999998,5.41965,1.6250175,5.17185,4.1749576190476185,5.07865,0.7057,2.106705,2.0774725,3.052396,3.242845,1.09599625,3.891565,1.989554,2.1317333333333335,1.060604,1.060604,2.0958799999999997,3.17862,4.73148,30.803634166666665,6.171275,1.7761266666666666,3.4727333333333332,0.36250400000000005,6.6139325,4.52009,2.6695533333333334,3.100355,5.8312975,3.71907,1.2106425,4.800285,1.254486,4.04459,4.72084,5.27265,2.05774,2.818875,4.20621,3.19567,3.5655,4.544665,1.31077,2.6959625000000003,3.513215,4.8400675,2.9393333333333334,3.0709933333333335,3.0544433333333334,3.36022,3.92718,4.311365,4.309366666666667,1.709125,5.89436,2.57765,1.765546,4.16079,5.13633,4.312305,3.63367,0.8266025,2.93903,3.426195,2.107875,4.660642666666667,2.6718,3.82238,2.9863999999999997,3.1784766666666666,4.560095,3.2797,3.4244333333333334,3.2304399999999998,4.736255,4.4407,4.221735,1.6395,4.224725,4.25026,1.83441,1.90522,1.7158475,3.9897783333333336,4.813265,5.828848229166666,3.9366,3.8745333333333334,3.59587,3.3863333333333334,1.35975,2.973785,3.022115,3.007775,4.31345,4.98211,4.699225,2.798275,2.029855,1.622875,1.4699775,3.533845,2.33579,2.16909,3.30745,4.798195,1.58653,5.3686,1.3824328571428572,1.776715,3.13707,3.86696,3.012245,3.548615,3.00007,1.68094,0.9606007368421052,3.311845,3.700471666666667,4.904135,8.583181666666666,2.2050566666666667,3.3164466666666663,1.5717566666666667,2.6665033333333334,3.0247100000000002,1.3172133333333333,3.4353,3.0196133333333335,2.8807899999999997,4.219366666666667,3.211273333333333,7.082146666666667,3.1744266666666667,0.7132918181818182,2.0420066666666665,3.442735,3.469155,3.25816,3.7434333333333334,2.7832500000000002,3.390925,4.59933,2.0085524285714285,3.76194,2.805440555555555,3.433275,2.320323333333333,5.12495,5.52075,4.82097,4.316365,3.622255,1.3697333333333335,5.22745,3.3335333333333335,3.0160966666666664,4.671665,2.8343433333333334,3.08498,0.40777,0.40777,3.6714933333333333,5.0678,5.19535,3.07318,3.672665,3.57335,3.105725,5.3687,4.8658,1.03046125,4.41607,2.85289,4.556195,3.176266666666667,3.2009,2.045526666666667,3.4737432142857143,2.8728700000000003,3.250363333333333,2.7773299999999996,2.7728933333333337,2.118106666666667,23.706594404314888,4.96344,4.51651,4.058345,3.16881,4.7135325,3.60508,4.51443,4.53813,3.967885,4.072205,3.67152,2.7898300000000003,3.2566566666666668,3.446566666666667,3.2260733333333333,2.9073233333333337,4.38122,3.347145,4.5920950000000005,5.2897,4.812365,1.26242,1.956736,1.956736,3.9469,3.614535,2.81686,2.5930433333333336,3.115736666666667,4.45378,3.53366,8.654966666666667,3.506266666666667,2.9029833333333332,3.3735100000000005,4.697995,1.65099,6.243399999999999,2.4757233333333333,2.679956666666667,1.6500275,4.101755,3.45677,6.86636,3.38659,2.67238,4.367275,4.086972,1.4982025,2.57342,1.6890599999999998,8.682745,4.76103,6.939043333333332,2.281565,4.725945,3.92034,4.646325,5.29485,3.8749000000000002,3.8749000000000002,2.077015,4.51966,5.3479,2.46119,6.536924285714286,1.9401025,5.98495,9.374329333333334,3.3804,4.6120920000000005,2.5943,2.004825,0.6259375,4.08214,2.58725,2.620025,4.37673,2.52035,2.47345,3.92123,5.33235,5.03705,4.05744,5.6076,4.271435,2.3701575,1.1206636363636362,3.182245,3.371595,3.1143,5.4637,3.919655,4.36889,2.785475,1.935474,4.70116,1.0001475,4.999445,1.05909,5.21445,3.19723,5.604,5.3670100000000005,3.22256,3.28359,3.2996933333333334,2.5670966666666666,4.329975,3.795365,2.444115,4.590345,3.86003,6.438518333333334,4.493035,2.318495,3.655825,3.616085,5.354078333333334,1.8579475,1.8579475,2.8355433333333333,2.3975866666666668,2.7752933333333334,2.6535933333333332,0.91684,6.17495,4.008355,2.457015,2.27094,2.520775,3.680395,2.818325,3.749205,4.66481,5.09725,5.01335,6.279,5.8117,1.3640125,3.836435,1.08295,2.5426,4.3665,2.44327,2.960265,3.192185,4.20618,3.568115,0.4535278947368421,4.60523,4.092815,4.75807,3.35058,5.1536,5.7854,4.85554,3.811105,1.84394,4.68244,2.13225,4.3685,4.3685,6.6198,5.11145,5.8,5.58685,2.77614,1.65099,4.597725,2.3302433333333332,1.6026466666666668,1.95859,5.09475,4.24892,4.48125,8.08924,1.8173333333333332,6.28575,1.4394600000000002,3.091365,6.1315,2.06526,4.79563,3.0712233333333336,5.7348,3.4054,4.552505,2.92932,4.17726,3.972855,6.4366,4.07742,4.174605,4.194745,5.9499,4.24797,4.76308,3.62026,4.189755,7.708413333333333,3.43478,7.02792,3.1343,5.4291,6.337618863636363,5.10335,3.449025,1.9888325,5.2148,4.007625,0.7441866666666667,8.27669,5.66775,5.6861,2.950340833333333,5.2566,2.4763,1.80324,3.98986,1.1013783333333333,5.8523,3.137,4.59545,5.44255,4.52402,4.52385,2.527406666666667,4.44823,5.42945,1.40288,7.521146666666667,2.99479,4.258495,5.3025,4.112935,2.17475,4.619635,4.254555,4.44107,3.0153166666666666,3.896375,3.75737,5.65185,4.82943,4.17456,2.02597,2.02597,7.433391666666667,1.5525857142857142,5.16975,4.351395,5.90475,4.013925,3.512745,4.857245,3.909975,0.9506733333333334,0.9506733333333334,0.9506733333333334,3.49103,3.15713,3.803265,4.6522966666666665,2.63111,1.4460166666666667,4.576345,2.4516375,2.556155,4.34684,5.3987,1.4109125,2.285,5.74931,4.051525,2.492275,4.527325,1.49011,1.9362725,3.27709,2.68402,5.489,1.42271,1.701718,1.1041925,4.355695,3.049325,3.8825333333333334,3.3474,5.6187,1.8218260000000002,2.113175,2.904515,1.5491428571428572,4.21183,3.756725,2.4156,5.6337,5.5827,2.88813,4.842925,4.33064,3.4208,4.423125,4.260205,3.31851,6.42832,5.40575,1.69771,1.8615166666666667,3.466875,4.697545,4.737255,4.899955,3.391666666666667,4.57668,5.3934,5.47355,2.692736666666667,5.45285,4.284065,4.94311,7.8161475,5.1318,0.7615990909090908,3.949705,3.94895,2.35273,4.24497,3.9143000000000003,5.77165,3.80524,4.366705,3.595375,4.310605,4.86097,5.1237,3.600435,4.46295,5.27275,4.2048,3.34002,2.831475,6.13438,5.02495,1.8278320000000001,3.637545,4.213525,3.809705,5.2401,5.2117,2.5617733333333335,0.8610266666666667,4.375003030303031,6.34952,3.952955,4.94377,3.628375,7.8559116666666675,3.96637,3.4920666666666667,2.76822,3.652475,1.954555,3.39478,4.129075,2.9365775000000003,3.627045,5.1876,1.3585675,5.0314,0.7097335714285714,5.05605,3.5423,5.7295,3.92121,1.4391516666666666,1.62978,4.46325,1.87412,3.473265,0.5229316666666667,5.72825,3.037055,1.5020479999999998,6.166205,6.80625,0.8241375,1.5988775,1.243642,1.243642,1.243642,1.9698033333333334,3.653355,3.596745,4.764175,3.86603,5.74565,4.42318,1.909366,4.813625,5.33975,0.296890243902439,4.062465,4.8737,5.6278,40.82276634848485,5.4580025,5.22205,12.921694,4.673855,4.3373,7.543833333333334,2.91638,4.531775,3.866745,4.67863,10.141175,4.261455,2.586933333333333,3.822975,6.1652,4.078515,3.609835,4.144555,2.12216,4.568505,3.84823,7.14576,4.401635,5.25005,2.35271,4.11065,0.538524375,1.3705016666666667,3.956225,6.1777,3.195175,1.2891833333333333,1.2891833333333333,3.757255,3.856125,3.848595,3.22784,1.5834333333333335,3.592215,4.238765,1.674485,3.108696666666667,1.9434740000000001,2.5818733333333332,4.16722,4.49193,2.0193175,4.810325,2.2803075,1.983335,3.28141,3.53593,3.92618,3.73737,6.144443333333333,2.584163333333333,3.772945,0.6703381818181818,0.687685,3.64573,2.266435,8.946953333333333,3.4123,5.04255,1.57184,4.6071,1.6659,3.936855,4.15042,2.64958,4.71754,5.71235,0.4103745,0.4103745,3.4482666666666666,3.2049833333333333,3.1088,3.647575,3.58255,5.09055,0.9496636363636365,9.763385,9.352235,2.3703125,4.9801775,5.0017,5.3067,3.380235,2.58384,2.1750800000000003,1.8798875,9.929525,2.3471525,2.786303333333333,3.9296900000000003,4.81133,3.9296900000000003,2.656675,2.9746433333333333,3.0513399999999997,0.7881990909090909,5.811074166666666,3.441933333333333,2.467166666666667,4.43787,8.76404,10.219685,4.75417,3.966725,4.725065,7.0933399999999995,2.002,1.36845,26.47021833333333,3.152,4.133115,0.971865,4.44144,4.144015,4.470295,4.51901,4.278995,6.207413333333333,3.9285,1.97391,0.7184882352941176,0.7542725,5.33025,4.53974,1.4482633333333332,4.498606666666667,0.83695,3.6122,1.4310966666666667,4.150815,5.95265,1.947,2.47446,2.48624,3.879475,3.383425,0.5347527777777779,4.017965,3.57614,2.9691466666666666,3.17871,5.17405,3.2566699999999997,4.262955,2.963005,4.885825,8.804406666666667,4.829045,6.80579,2.7356,3.0526433333333336,4.33669,4.3210175,3.86392,4.394275,3.686875,5.19915,1.267175,3.1347545833333332,3.6641447142857144,0.671824,1.956736,1.956736,5.27385,8.03464,0.9032538461538462,5.05695,0.9073466666666666,2.9429533333333335,2.44853,2.457263181818182,6.492072222222222,2.5490533333333336,1.137722222222222,2.365256666666667,1.2812875,2.20211,3.169223333333333,3.163333333333333,3.236416666666667,2.783856666666667,0.9073466666666666,4.47787,4.46645,5.6861,2.833955,5.1641,2.26546,6.105,4.85635,4.274285,3.11797,3.59595,2.411025,1.3942175,4.61338,2.77075,4.72456,5.39545,1.6369900000000002,4.50061,2.9117433333333334,6.366571666666666,3.448285,2.30134,0.9073466666666666,2.486935,3.22148,7.161387888888889,2.3256099999999997,1.64679,2.3256099999999997,0.43684166666666663,1.2551539999999999,3.458495,4.13269,1.9303,3.58531,3.819707,0.631162,0.631162,0.631162,7.9605250000000005,1.647898,0.78067,3.08587,41.560991502164505,1.781872888888889,0.6413588888888889,3.003815,0.6413588888888889,3.470615,2.07854,2.39576,2.7056466666666665,5.684,5.6902,4.46876,2.3413033333333333,0.8601642857142856,4.470265,3.0390266666666665,4.956585,0.9973428571428571,2.918125,2.918125,3.75728,4.30851,4.071945,5.375876923076923,3.27094,4.628125,5.1768,1.7907039999999999,1.17371625,5.8164,6.24565,3.838785,0.655626,4.61364,4.194016666666666,0.9278025,4.30235,2.6679,4.223965,4.113225,1.824348181818182,1.824348181818182,4.53711,3.23735,0.9434077777777777,2.82069,3.1721500000000002,3.352255,3.895305,4.56525,0.37857142857142856,0.26698176470588236,0.26698176470588236,0.26698176470588236,0.6455531932773109,0.6749669230769231,0.650146,0.26698176470588236,0.26698176470588236,7.587854999999999,0.26698176470588236,0.6455531932773109,3.45116,1.2343975,4.67051,1.11969,0.6844261538461538,0.9278025,2.602875,2.702575,4.50733,2.86876,0.26698176470588236,0.26698176470588236,4.453595,3.5691,4.26071,2.64401,4.2873,1.595348,3.855235,0.650146,0.650146,4.75467,3.05026,2.661795,2.83666,4.407500000000001,1.0059,0.7423676923076923,10.923135,1.25575,5.20115,4.66283,5.2208,2.15168,0.41403,0.91848625,3.1157866666666667,3.247785,3.42237,4.79931,1.565918,6.4767,4.184495,5.5612175,4.223245,3.1765600000000003,2.96093,6.536733333333334,2.996396666666667,5.4633,4.11436,4.62798,5.569255,0.5718406666666667,4.51,3.03951,2.2982033333333334,0.6507644444444445,4.219205,5.40611,2.831855,2.40802,2.41644,5.17655,2.725015,2.818235,0.9857279999999999,0.46024384615384617,3.970705,0.3497806666666667,0.8236672727272727,3.89236,2.934715,4.646205,2.591115,4.560035,4.334755,6.3412576666666665,3.69101,3.78411,4.83577,1.49993,4.641425,1.988804,4.157055,2.676,6.13749,2.4639,0.9892899999999999,4.67398,7.2365175,6.827038750000001,3.3729,0.8134775,2.83924,4.886175,4.055325,4.695885,4.618935,4.271985,4.56279,2.87051,4.044625,1.7869033333333333,2.24335,1.4206466666666666,4.278595,8.21712,3.89762,3.60562,6.35005,2.893925,4.8527,2.4370066666666665,3.2411070000000004,3.13684,4.44638,3.61649,3.660085,3.282275,5.6809,5.57015,5.1156,4.6022,5.3043,4.910275,3.006735,5.5885,8.11515,0.9167133333333334,4.027545,4.196635,4.686055,4.76383,5.6713,2.280325,8.16455,2.3912733333333334,3.497565,5.5836,3.67587,4.125955,2.0300599999999998,1.961315,2.8259733333333332,2.12533,1.9233466666666665,3.0850633333333337,4.31806,4.835835,4.43146,3.22913,5.180573333333333,3.468135,3.14512,3.8458025000000005,5.86305,3.07975,6.125704166666667,4.13395,4.157155,3.714455,8.60531,4.275605,3.611895,4.564815,4.926655,3.67194,9.13157,1.29677,2.361525,4.42989,2.801246666666667,2.801246666666667,1.867575,7.354299999999999,0.9820566666666666,3.625335,0.877265,2.113175,4.312035,4.413475,4.08215,4.68582,3.158326666666667,3.77303,4.403245,3.80719,4.67403,3.47799,2.8584566666666666,4.751655,4.927740833333334,4.270635,4.989595,1.542206,1.5790039999999999,2.5740833333333333,5.36975,2.3223325,1.6966066666666666,1.9423575,4.535155,4.967975,3.038885,3.576055,0.44727555555555554,2.22446,8.050995,3.139905,1.5642433333333334,0.8638925,1.16426,2.0180000000000002,2.0575775,0.8825616666666667,2.0217066666666668,4.1878105,4.649365,5.52925,2.5057266666666664,1.984385,6.999455,3.054025,2.0318516666666664,2.0318516666666664,2.0318516666666664,6.671086666666667,2.246086666666667,3.692535,2.67805,0.5028320000000001,1.1892179999999999,2.296935,5.696095,0.5050783333333333,3.82326,3.8660033333333335,5.62235,3.021088333333333,0.5050783333333333,3.021088333333333,0.92285375,1.246702,6.04575,4.3316,7.459595,4.85662,4.847115,4.16278,4.39421,5.34025,5.05985,6.37535,3.71477,3.34736,4.625885,4.734455,4.101095,4.54857,5.10985,1.42609,2.9019433333333335,1.21620125,2.27191,3.217836666666667,1.4886033333333333,7.385585,5.354078333333334,2.982056666666667,5.0617,2.86601,5.1556,2.680415,4.28934,5.00255,10.005625,6.0503,4.559035,2.1746075,2.793085,2.20378,0.61282375,2.4067333333333334,5.85565,5.36325,5.27105,5.27205,0.7156800000000001,2.1073825,1.325375,4.38125,0.8753923076923077,7.28443,2.11003,1.0950975,1.0950975,3.7997780000000003,2.00056,3.5985333333333336,2.566235,4.613585,3.7314025,3.7314025,4.826455,6.1201316666666665,2.9677866666666666,2.4790633333333334,3.4644,4.315785,1.8814,2.970126666666667,5.52525,5.55065,4.969405,4.43654,4.005333333333333,5.32995,3.3457766666666666,3.3965666666666667,2.3520425,4.14735,5.26935,3.21502,5.29935,5.6711,2.062746666666667,2.81336,6.40905,6.9548,1.284046,2.75345,2.2650475,3.0197133333333332,2.32656,2.53265,2.5183425,1.07184,1.8713075,2.5688,2.28154,2.4225066666666666,2.4225066666666666,3.0319785,2.89325,2.184588076923077,2.6771,2.52985,1.9607800000000002,1.5707333333333333,5.043044999999999,14.650399166666666,2.9978233333333333,3.7775,1.78791,1.78791,1.5528616666666668,1.5528616666666668,3.0394166666666664,3.8397666666666663,3.1884099999999997,1.9029875,1.9029875,3.944366666666667,3.4060333333333332,1.0690133333333334,1.5499857142857143,3.3369,2.9635200000000004,3.7715333333333336,2.6285304761904764,3.23493,3.2893866666666667,0.681125,2.6445,3.7303486666666665,7.493539999999999,4.99348,4.406075,4.52775,3.401695,4.62382,4.54332,3.054456666666667,4.78354,1.4180716666666668,3.28064,6.01025,4.98998,2.65782,1.4243866666666667,2.850245,2.771236666666667,3.0588033333333335,1.6435683333333333,0.7461785714285715,3.3401,5.2621325,4.72628,4.469675,5.17955,3.190296666666667,2.0341133333333334,3.2864058333333337,2.8980433333333333,3.6301666666666663,3.064296666666667,3.5720666666666667,2.50498,3.7710000000000004,3.983366666666667,3.03045,5.1063,5.19745,5.243038333333333,5.243038333333333,3.38296,3.958055,3.76909,3.773865,2.600555,5.03125,3.34309,3.2936866666666664,5.98545,0.8853749999999999,4.9899,4.999955,2.4955966666666667,4.537568333333334,3.3651999999999997,1.9630333333333334,1.5427,2.55637,1.03517,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.30683499999999997,0.6315928571428572,0.6315928571428572,1.2305775,0.8481420833333333,1.666559053030303,0.9715385714285714,0.9715385714285714,1.2301157196969696,0.4364433333333333,0.39682333333333336,1.16082,1.4636425,3.15405,2.674875,7.376706666666666,3.1099633333333334,3.895845,3.805065,4.419230571428571,1.320765,4.772625,4.16295,4.29962,3.09022,1.456176,3.984635384615385,3.48496,4.94456,4.567105,3.025665,4.278045,4.252435,4.68195,1.2245979999999999,4.538625,4.50096,3.087205,2.33773,3.30746,2.399405,3.085525,3.941735,3.2502666666666666,5.00105,8.99645,3.293345,5.05975,4.43065,4.5216199999999995,3.0461466666666666,3.54764,0.8555571428571429,4.00913,3.3328,1.850926,1.2050925,2.75493,0.9673066666666666,0.5550033333333333,3.4251666666666662,4.44648,5.087636666666667,3.8678000000000003,2.3697175,2.365215,5.04365,4.070733333333333,4.979385,2.5796,2.233703333333333,4.193785,4.58326,4.40789,5.1766,4.59226,3.555955,5.03695,3.4153000000000002,4.915395,2.1407491666666667,4.93184,5.1362,3.266795,4.365745,2.43694,3.69486,5.73695,4.85945,5.75325,4.746175,5.05065,2.3891566666666666,5.3668,4.935095,4.44851,2.4304975,1.0035725,4.21862,4.862035,4.409945,5.43515,1.78187,4.5662,2.064695,5.16825,4.43476,5.3314,2.35672,4.707145,4.88611,4.48238,2.889343333333333,4.60007,5.31905,5.15505,3.145365,2.4304975,2.276375,3.11414,4.461895,4.025295,4.43597,3.414325,4.95077,2.16908,6.79694,4.685275,3.97269,5.187558513888889,4.557545,5.4011,3.30498625,2.4879249999999997,2.4879249999999997,4.357805,4.0825,4.41746,2.358885,3.0790925,1.0538725,2.91339,3.0882066666666668,2.75056,3.4651333333333336,5.0233,3.2550000000000003,5.6583,2.9836033333333334,3.996225,4.9794,1.997705,4.167705,1.9904733333333333,2.9764433333333336,4.02333,1.07252,4.961375,5.20095,6.4397375,5.0844,5.67525,1.3819314285714286,4.865295,6.45295,9.17557,3.1997366666666665,3.5396666666666667,1.99362,0.8361240000000001,3.87914,1.0154314285714285,4.366885,4.65916,4.708325,3.10902,3.799435,1.3670957142857143,3.23996,3.48024,4.26936,4.423515,3.989975,4.193015,2.44741,4.146405,5.06295,6.2173,4.684775,3.73781,0.3662822222222222,0.3662822222222222,0.3662822222222222,0.3662822222222222,5.39935,2.90287,5.9563,3.4305333333333334,5.2041,4.860655,4.02395,2.506845,2.40515,1.4607266666666667,5.2597,2.9323333333333337,4.07523,3.560155,3.233095,1.68952,1.17796375,4.68228,2.396905,6.211368333333333,3.71032,5.4896,2.121065,1.5832033333333333,0.89277,3.1889,4.805725,3.0069,2.246715,8.225719999999999,4.341275,3.327715,2.34422,0.450866,3.034785,2.628755,2.19056,1.824125,3.83017,3.4135,2.44026,3.4932666666666665,2.924705,3.37985,4.59514,3.88386,4.35127,4.03503,5.5606116666666665,0.6389846666666668,4.46366,5.75115,5.176,4.404855,3.1260399999999997,5.14445,4.520235,4.57438,5.525448333333333,5.47375,4.450425,4.75455,3.5165499999999996,4.38919,3.15896,8.59228,5.06315,4.80162,4.958125,5.22285,5.2773,4.15064,1.0881155555555555,5.716889999999999,3.66219,5.0197,1.47929,4.604445,4.72128,8.076806666666666,4.541615,3.1623,2.333413333333333,4.208465,1.632668,1.07318625,4.04405,6.28735,1.9687733333333333,2.278496666666667,2.7894433333333333,3.372215,3.428735,3.675505,5.2002,1.8277700000000001,4.20317,3.5941145,3.217065,3.5779333333333336,3.55637,2.800765,2.56679,1.85908,2.3869333333333334,2.62703,4.32372,0.5202808333333333,2.5614,4.05662,2.7845,3.3659,4.51405,5.99435,3.926475,17.118810272727274,2.4443033333333335,4.060866666666667,1.464704,0.8332072727272727,0.8332072727272727,0.8332072727272727,0.8332072727272727,0.8332072727272727,4.713825,4.876765,5.41585,9.445254,2.60005,2.60005,4.45322,4.332590833333334,1.2285975,2.316316666666667,4.50498,2.4391625,2.388975,2.1910275,2.8169,3.799942,2.3560975,4.11768,0.8251642857142858,3.1518766666666664,3.086816666666667,2.991706666666667,1.3285066666666667,3.4115333333333333,2.3611566666666666,0.96585375,2.98062,2.790103333333333,1.1830888888888889,2.5150366666666666,2.8042599999999998,2.18676,4.775244666666667,2.2045333333333335,3.2617766666666665,2.0871625,2.7418933333333335,1.1184,2.9772466666666664,4.812570000000001,3.5477000000000003,1.0774175,2.85096,1.2176475,3.0124766666666667,3.3132,4.645721666666667,3.2350766666666666,2.6140166666666667,4.74254,2.8794566666666666,2.19744,3.0125266666666666,2.847996666666667,2.0833366666666664,2.8991066666666665,3.4753666666666665,3.5311,2.946923333333333,3.20298,2.7591433333333337,2.57695,3.8790005,3.8790005,2.84022,1.9888633333333334,1.8689266666666666,2.6596100000000003,5.750603333333334,3.0683666666666665,1.9384366666666668,1.67215,3.0134333333333334,4.680675,2.4697333333333336,1.055088,2.644698,1.5282366666666667,3.7479666666666667,2.23516,2.60248,2.12467,3.5007,1.27657,1.6692733333333332,1.4814333333333334,4.244018333333334,2.5329,4.177105,0.9676222222222223,4.06101,2.2419966666666666,2.46277,1.9162839999999999,1.6422733333333335,3.3502666666666667,25.102048400432903,6.443363333333334,2.664896666666667,3.2243266666666663,2.29778,10.196942666666667,3.011426666666667,1.028935,2.4903166666666667,2.3875366666666666,2.0858,2.83859,2.54004,2.7865300000000004,0.9100490000000001,3.4956,2.52134,2.8405733333333334,3.01877,3.0568166666666667,2.11576,2.22551,2.9583933333333334,2.52114,2.218475,1.6717659999999999,5.433305,4.689875,2.3925825,2.7957,2.19713,2.4484566666666665,8.049041666666668,1.7690866666666667,5.1365,2.0124125,1.8890675,7.06736,2.9747500000000002,2.6264133333333333,2.5303,1.9450880000000002,1.4091823076923078,3.3315466666666667,3.32711,4.29,1.67758,3.976366666666667,1.4705775,1.4705775,4.41413,4.47558,3.086938571428572,3.086938571428572,6.338853333333333,3.34493,0.409025,11.253649184981684,1.2316533333333333,0.9279014285714285,3.5974391666666663,1.518836923076923,1.648365,6.467689999999999,3.805145,0.7363609090909091,2.1259466666666667,5.268106848484849,2.6860366666666664,4.476655,1.4292285714285715,5.8133,4.984305,5.22515,3.7414414999999996,2.06102,2.9009199999999997,2.7640100000000003,2.967026666666667,2.2590399999999997,5.237413333333333,4.80632,5.02475,2.05068,4.804175,3.912725,2.8336133333333335,2.3076925,5.41555,2.9888966666666668,8.57301,7.3510575,1.994245,2.33442,1.7246200000000003,4.469433333333334,4.469433333333334,3.5213,3.082686666666667,3.4088928333333333,5.1702,9.4989225,4.60271,2.413375,5.25795,4.50763,5.33375,2.0231000000000003,0.8054425,1.32118,4.486965,4.90979,4.063233333333334,3.09375,3.609833333333333,2.012566666666667,3.62113,4.264925,3.183895,5.5331,3.4065333333333334,3.759904,3.6191333333333335,3.4254333333333338,3.4795,6.31495,3.058575,5.6879,5.5858,3.28613,3.477625,3.477625,5.992466666666667,12.708505,3.574533333333333,6.13176,7.671320000000001,3.528345,2.3757,3.88635,1.2940166666666666,3.618225,2.376005,2.9084066666666666,3.1806133333333335,3.685366666666667,2.21234,2.3939133333333333,2.9122,2.5070633333333334,3.2358733333333336,2.9958533333333333,4.11657,2.4581666666666666,2.95375,4.026545,3.1288400000000003,2.48934,1.13253,2.0076475,3.0777300000000003,2.6907099999999997,2.6455733333333336,2.423503333333333,3.7533,2.4640166666666667,2.4522066666666666,2.8434866666666667,3.0047433333333333,2.8373733333333333,3.3234733333333337,2.61816,3.1043133333333333,2.8270199999999996,3.444532,2.5878533333333333,2.6383300000000003,2.5682566666666666,2.6702100000000004,2.78112,3.31486,3.1351433333333336,2.91811,2.0184075,2.0184075,0.7657516666666666,1.616984,4.284655,3.171735,2.47111,2.21234,3.4788666666666668,1.3357914285714287,2.8696633333333335,0.609254,3.6301666666666663,3.4286333333333334,3.2987,3.0178100000000003,2.701976666666667,3.010616666666667,3.2229266666666665,2.9973166666666664,3.538266666666667,5.28184,1.55208,2.5305766666666667,2.5693033333333335,1.7532666666666668,2.08318,3.2455933333333333,3.0552566666666667,1.774416,2.55767,2.60224,2.8562499999999997,2.699953333333333,2.8769266666666664,3.0413,3.8512,1.46878,2.9386733333333335,2.311053333333333,3.801,3.5488999999999997,1.9728775,1.7268233333333332,3.4503,2.79218,3.5386,2.5821166666666664,2.6715199999999997,5.15058,2.9183766666666666,2.10434,1.698498,3.3923,6.217816666666668,3.5018333333333334,3.5774000000000004,2.99232,3.5648999999999997,4.804251333333333,1.599138,1.150388888888889,2.7096066666666663,1.8784779166666667,4.60216,3.0970166666666668,3.4709333333333334,2.83105,3.201473333333333,2.346223333333333,3.527533333333333,2.4611675,1.681244,2.9375766666666667,3.436785,3.985175,3.01243,4.5026,1.5825075,2.55498,3.098625,2.978565,2.130306666666667,3.4321333333333333,4.023266666666667,3.9207666666666667,1.40383,5.7288310000000005,3.3064425,1.5902066666666668,3.660675,3.246135,2.962045,4.37591,1.96597,1.96597,3.3590999999999998,2.9091666666666662,3.07351,5.5025,4.46295,4.306294666666666,1.317658,2.925883333333333,2.7773233333333334,4.1525975,2.997716666666667,4.835678,2.7970433333333333,2.4478933333333335,2.5425400000000002,3.417475,3.94145,1.613528,3.1123333333333334,3.814855,2.4315275,4.7334,1.2695433333333332,2.737755,4.434815,2.607545,3.50959,4.128335,1.6158175,1.55934,2.529275,0.9520883333333333,1.910742619047619,2.2956175,0.45052214285714287,4.191705,2.20642,4.82303,4.32254,2.756455,4.68565,3.2919133333333335,3.2219200000000003,3.714866666666667,2.7914,3.2117766666666667,2.8079699999999996,3.2112866666666666,2.2728066666666664,0.7018307692307691,2.3010333333333333,0.6128571428571429,1.7987033333333333,2.4576,3.3354,3.2096133333333334,1.3354799999999998,1.185695,3.83357,4.62523,3.44827,3.2589125,3.38268,1.590945,4.454835,7.921535555555556,3.92423,6.328825,1.500725,4.01098,1.9971275,3.98128,4.213645,1.914825,4.196085,2.83026,3.7433,4.564315,2.190495,4.29456,6.5555625,5.29015,3.28943,3.099675,1.7125475,1.953395,3.902475,3.16064,2.931065,3.873615,3.8864,3.453755,1.5617275,4.295,3.238975,1.830065,4.227595,0.8845583333333332,3.60362,1.7010075,4.218835,4.6178099999999995,3.694375,2.8388475,4.074145,3.482535,2.0397475,2.348715,3.862033333333333,1.391155,5.8728774999999995,4.01312,4.41871,2.484155,3.146075,4.854495,4.269545,2.70476,2.70476,5.916294666666667,3.5808605,2.4917325,3.15817,2.2369766666666666,2.67438,3.34944,4.0181775,2.4855255,3.26638,0.9499040000000001,3.656415,3.000595,4.18469,2.46254,1.484635,1.60142,3.16205,5.774330000000001,5.36425,3.410855,1.3023025,3.723025,3.36707,0.7878666666666666,3.054185,1.02159,5.629927500000001,1.5219816666666668,3.767435,2.2899225,1.3354799999999998,3.44158,3.22206,4.34674,7.703546666666666,4.82441,4.3559975,2.544825,2.98214,4.6446,3.90161,4.74204,4.39851,0.9907825,1.72098525,1.12531625,2.17977,2.14193,4.678215,1.12531625,4.9653,2.00462,1.515205,1.515205,1.830065,4.334785,4.499715,4.276715,1.480862,1.480862,0.9462366666666666,2.69649,2.1638775,6.1749575,4.73741,3.385845,2.87163,0.9822442857142857,3.585845,2.68619,4.319035,3.74479,4.0840700000000005,4.0840700000000005,3.46214,3.88715,1.9534825,2.191725,0.9768766666666667,1.7991400000000002,3.64138,2.1074366666666666,3.3155150000000004,3.3155150000000004,2.50179,4.486005,4.536375,2.91948,3.405255,4.44003,2.5445366666666667,4.516816666666667,2.524235,3.474615,8.440765,5.0767,2.636605,3.0922,3.265005,5.0257,2.919988,7.580125,4.931646,4.541325,3.53759,4.147835,3.81872,4.59016,4.629595,2.110525,4.27881,6.83028,2.582305,2.2718902222222224,2.732405,3.327805,3.274255,4.58996,2.22079,1.3696366666666666,2.61904,2.7318075,2.64408,6.375778666666667,1.3732325,5.0821033333333325,5.0821033333333325,3.21699,4.235353333333334,2.95696,2.8524733333333336,5.36731,4.1289,2.07548,3.95003,4.140065,3.521259166666667,2.905195,2.915225,6.653835000000001,3.235165,5.3731,3.051005,4.62444,3.95146,3.86868,2.9091666666666662,1.8048566666666668,2.47406,4.183335,2.81198,3.075101666666667,3.059355,6.320725,2.45342,1.7587375,3.1281708333333333,2.65833,4.14257,2.580035,0.7878666666666666,2.956165,4.16757,3.847875,5.867585,3.045185,3.248115,3.0691133333333336,3.0691133333333336,3.562900833333333,4.55335,3.94019,2.276145,6.6629225,2.140465,4.512935,3.64169,8.52929,2.70403,1.3668733333333334,3.4638,4.391105,0.63494125,4.126,2.746365,2.824665,3.507775,4.514385,2.0800566666666667,2.422035,8.672295,3.33684,2.856175,1.5219816666666668,3.66935,2.608585,2.29868875,4.29243,5.7650950000000005,1.821275,1.229775,1.0564933333333333,4.047545,3.83589,3.229595,3.7056375,3.7056375,1.5617275,2.303415,2.9546180555555557,0.8212655555555556,2.767735,1.098145,1.5825075,3.54775,3.35069,2.43006,2.360225,2.2979208333333334,4.27954,3.145075,2.790515,2.785965,2.60223,4.214945,6.4560200000000005,4.142025,0.8617925,2.5363279999999997,8.58042,4.65027,4.221325,1.0595625,4.561451666666667,1.4354066666666665,3.0133075,3.0133075,3.631765,9.116548333333332,0.8789944444444444,4.694435,4.86542,2.4447033333333335,3.8599449999999997,4.8364,2.2432125,9.762894666666666,1.4666425,2.3841066666666664,2.861605,1.6139700000000001,4.1175059166666665,2.875325,2.994685,3.026674,2.78582,2.90848,1.1907166666666666,7.1887,3.95249,4.4311,4.14794,1.963625,2.8388475,3.471050833333333,4.330555,0.7114415384615385,4.38301,5.00485,5.04895,2.23643,1.275164,4.291285,4.213535,8.59772,0.8270692307692307,0.7163225,0.7163225,1.6548299999999998,1.4352099999999999,1.351526,1.8012833333333333,4.60043,1.19285,0.8383271428571428,4.259245,3.833725,1.563715,3.34287,4.6706,3.06887,0.6864779999999999,1.750685,10.09516,3.318351666666667,3.908045,2.25298,1.5028775,2.3469466666666667,2.66982,4.671645,4.55917,4.049735,0.9337,1.5213839999999998,0.920669,4.821525,4.22061,4.074525,0.8212655555555556,1.760126,4.05578,2.31658,5.120744166666666,1.0933675,4.606555,0.641405,0.641405,0.641405,10.04891,4.02705,1.098145,3.600195,4.62803,3.015425,3.304205,4.1901925,2.72985,2.0591255555555557,1.7890633333333332,0.6864779999999999,1.4743446666666666,0.5779055555555556,0.7931016666666667,1.17313,3.406705,3.92052,2.0776425,7.457130000000001,4.85634,0.7279122222222223,5.307,5.3744266666666665,3.25454,4.355015,7.677334666666667,3.775369583333333,4.85634,4.398325916666667,2.4782800000000003,4.477855,3.61949,7.134895,3.417105,0.450866,1.543978,4.16286,1.7118980000000001,1.229775,4.115015,2.550996666666667,1.59577,3.250145,1.650006,4.28768,4.44557,4.14478,4.732765,5.94553,3.319445,4.043135,1.02159,2.4518125,3.6112,2.972035,2.07548,3.972305,2.444215,4.75214,2.868645,2.28162,3.5285666666666664,1.6715879999999999,3.81213,0.8212655555555556,2.17135925,1.0564933333333333,1.45044,3.50854,1.3732325,1.17313,2.1930275,2.97136,7.73862,0.9337,1.0595625,1.241668,3.63568,3.67378,1.241668,3.92403,2.4518125,0.63494125,0.8212655555555556,1.6548299999999998,1.02159,0.45052214285714287,1.605368,4.272864666666667,2.4447033333333335,1.3597700000000001,2.846005,1.40383,1.4666425,2.616773333333333,1.7890633333333332,4.24462,2.616773333333333,0.7878666666666666,2.741213,2.48417,0.10038386363636365,0.10038386363636365,0.10038386363636365,0.10038386363636365,0.10038386363636365,3.5381666666666667,2.7054766666666663,2.71569,3.1799466666666665,5.3586,4.1108,1.9162839999999999,3.584445,3.54595,2.18234,4.993707499999999,2.550235,2.41503,2.416605,2.658465,4.6597,8.646866666666668,2.5636,2.3599733333333335,3.0999325,0.96063,1.36135,2.4227233333333333,1.7734066666666666,1.347835,2.6620933333333334,2.1987166666666664,2.8321633333333334,3.0472,2.62859,4.343535,3.555705,2.6863266666666665,1.405276,3.711755,3.814925,1.5421666666666667,1.4047399999999999,1.4047399999999999,1.4047399999999999,3.518775,2.8508366666666665,1.09074,2.2466233333333334,1.2374414285714284,4.27815,1.6232933333333335,7.103745,3.5912575,2.98063,3.1602500000000004,3.1602500000000004,5.3476566666666665,2.6962,4.45419,5.0553,2.1600425,3.4030666666666662 +GSM1946772,0.0,1.9075175,1.9075175,1.6019833333333333,4.725715,6.0858,2.5121788157894738,1.7132633333333331,7.855030710784314,4.682025,3.2836433333333335,2.611285,2.18108,3.42262,4.553855,1.921058,1.5455780000000001,5.17495,2.4390366666666665,2.385805,4.834765,5.283801666666666,3.861055,2.303395,1.870878,4.175355,4.80803,4.19675,0.7010491666666666,1.5889888888888888,1.9987488888888887,2.065455,1.5870025,1.1659371428571428,0.6990008333333333,3.148872142857143,1.4947925,1.9660375,1.241505,2.16687,1.15728,1.0737975,1.117258,1.525516,0.9079520000000001,0.911014,0.7309840000000001,1.2025771428571428,1.7856100000000001,1.81976,1.5145339999999998,1.999662,1.6853500000000001,18.763232416666664,0.38167066666666666,0.812162,1.100632,1.86687,1.459306,1.7476559999999999,1.0697542857142857,1.0697542857142857,1.0697542857142857,1.150635,1.0283060000000002,4.77786625,1.1696425,2.4860775,2.0640475,2.5991,0.988063,2.2114525,2.3586225,1.9770375,1.4710825,2.032955,1.568485,1.6665175,2.399296666666667,3.814235,4.966335,5.31395,1.7290400000000001,4.736565,4.565088333333334,4.308945,4.112945,1.10624625,7.41181,0.572795625,0.572795625,2.32868,1.1798014285714284,16.22225,4.716145,5.5865,5.67515,4.15955,4.37983,5.5107,0.48069666666666666,2.3977187499999997,1.8882275,2.405935,4.602305,3.89754,1.5857375,3.4218666666666664,3.4350666666666663,2.9120899999999996,3.7406666666666664,3.400095,4.900755,3.0426564999999997,4.776765,3.0202033333333334,0.7152781818181818,1.80398,2.7399,5.0821,3.77281,0.58199875,3.69948,4.009155,0.8247025,4.74228,1.722122727272727,2.25625,2.9691,2.1271425,4.35244,5.78545,3.353295,2.8408833333333336,3.4545,3.04101,4.297535,3.1875433333333336,5.7464,3.48264,4.61499,3.313795,2.390085,3.63024,2.590825,6.914323333333334,3.578105,3.931865,5.73095,3.206895,5.1861,0.7593333333333333,9.983909523809523,3.65248,1.8824100000000001,1.9420716666666666,3.3731666666666666,2.310515,5.0857,5.65225,2.2810225,5.175404166666667,2.71983,4.619415,2.2810225,3.0196533333333337,4.348805,5.433180833333334,4.04966,9.037233333333333,4.099245,5.19955,2.866355,5.0884,4.80356,1.8819,8.1715,4.524485,4.190705,3.56834,3.70057,3.383945,2.30655,6.133645,2.276585,4.097465,3.99618,5.24455,4.995855,3.915115,1.5676733333333335,2.72438,2.94268,1.967305,1.967305,6.255967619047619,3.04778,1.9255166666666668,4.32335,4.919995,2.91215,1.4793566666666667,0.8519244444444445,6.85725,3.028395,7.035,3.143845,4.135565,3.69565,2.99329,3.749855,3.3917,3.954715,4.188705,5.9174,2.764115,3.66532,9.32324,5.06585,3.6595333333333335,3.20935,2.8702533333333338,4.023433333333333,4.371301666666667,1.895945,2.82776,2.41438,1.856856,1.72257,2.54827,1.6728625,1.9479025,3.141033333333333,2.9027766666666666,2.3607666666666667,2.76777,4.565088333333334,3.40783,3.251225,3.63196,4.488135,1.44543,1.8314,2.8586605714285716,2.16444,2.54754,2.220396666666667,3.4351333333333334,1.846402,1.3108266666666666,2.71232,0.660102,1.6578366666666666,0.5230188888888888,0.5230188888888888,1.4844566666666665,2.622133333333333,2.1513533333333332,1.3164966666666666,1.4884266666666666,0.32162846153846153,2.6840533333333334,0.660102,1.1918,0.1923535135135135,1.4381666666666666,1.98584,3.4727,2.31326,2.2808100000000002,2.5212,2.17273,2.501113333333333,2.50908,2.3561666666666667,2.1781099999999998,2.7274233333333338,1.9093566666666666,2.73553,4.111665,0.6632466666666667,1.76834,2.46894,1.9446533333333333,3.20604,1.4768919999999999,2.5720466666666666,2.23116,4.358656666666667,2.0530066666666666,7.325081428571429,1.7141714285714287,2.96996,2.29445,2.132605,3.4044000000000003,2.0177775,1.9472925,4.279755,2.6759866666666667,2.1796925,4.120225,4.158015,4.32319,3.65736,2.204065,3.274335,4.563637999999999,3.852535,3.96489,4.35111,4.59854,3.049715,4.30103,3.45214,0.877335,4.985605,1.1892099999999999,5.1248,3.71418,5.763427,3.636715,4.16624,0.91913875,2.053835,3.58724,4.062815,0.8279542857142858,1.2243552991452993,2.036947857142857,3.8769657142857143,5.444447500000001,5.619875,2.3279925,3.187145,5.36505,0.3252821428571429,3.408535,2.380745,0.986735,4.899835,1.96156,11.708179999999999,1.28525,1.319865,2.429933333333333,2.2926,2.2134786842105263,4.966073684210526,0.4266836842105263,1.6552499999999999,2.7547033333333335,1.052895,3.8062,1.0354528571428572,5.44535,3.90444,1.9528033333333334,6.1994,5.9985,2.5073,1.1272185714285714,4.426575,5.2915,4.32977,0.8813045454545455,8.288653333333333,3.0489033333333335,4.360255,2.60777,2.5791166666666667,4.575955,2.48718,2.7605566666666665,2.11851,2.4791133333333333,3.61037,2.995886666666667,0.33912875,3.9687,3.803805,3.80267,3.6623,4.481075,6.130081,3.980605,1.52958,5.65395,4.614885,4.394515,4.35436,1.088215,2.4967799999999998,3.27745,2.5372333333333335,15.891645,3.24151,3.6668,4.25708,5.87645,2.528255,5.238341666666667,1.650575,0.7575833333333333,2.839775,3.562225,3.777585,4.207215,6.565238333333333,2.9968299999999997,2.180435,2.11227,3.4353,4.82306,2.28501,0.36276120535714285,2.7585573913043477,1.95477,1.13988375,0.48838990100931673,0.6140185966614906,0.36276120535714285,0.36276120535714285,0.36276120535714285,1.0774925,1.33651,0.92017,1.40125,4.4019375,0.2112529411764706,11.469026747835498,3.577033333333333,2.8513566666666663,4.251855,4.466705,3.884195,2.054625,4.83407,4.115553333333334,4.247315,4.07276,0.6881123076923077,3.4339,4.3501641025641025,0.6017957142857143,3.3261,2.9829233333333334,4.663755,0.5326009090909091,1.786835,4.371975,3.28362,1.984225,1.8146333333333333,1.61177,3.2563133333333334,3.730285,2.952235,2.756736666666667,5.55295,5.77815,4.89727,3.5132333333333334,3.052683,6.778091666666667,3.8716666666666666,5.0655,0.40971142857142856,3.2190933333333334,4.014723333333333,2.0810833333333334,2.58157,2.893406666666667,5.670023333333333,0.6037116666666666,2.88195,4.57219,4.65275,1.0291457142857143,4.791745,2.920635,4.97996,3.0830800000000003,4.38614,3.43195,4.169055,1.1119933333333334,3.29955,2.62068,4.712055,4.37413,4.79889,5.82335,4.28476,2.66247,5.96903,2.4149499999999997,3.37193,3.224126666666667,2.8163400000000003,2.8346466666666665,2.1590166666666666,1.8766580000000002,1.5371033333333333,2.16594,0.7741185714285714,1.5624733333333334,2.5680066666666668,2.0851933333333332,3.1246166666666664,3.2915233333333336,2.9606766666666666,0.9866211111111112,5.1641,3.529166666666667,5.383834583333334,2.5962579166666666,3.3563666666666667,2.8885366666666665,1.7672333333333334,1.7672333333333334,2.5149702597402595,2.5149702597402595,3.459240616883117,0.5253685714285714,1.63884,2.074246666666667,3.7247,2.170354761904762,2.170354761904762,2.170354761904762,7.774328035714285,4.498161904761905,0.9773,3.10436,5.343394166666667,2.4375425,5.0477,3.321305,2.161205,4.37456,3.064363333333333,3.2134699999999996,1.31735,1.8905,3.2487866666666663,2.4466033333333335,2.765423333333333,5.83575,4.300566666666667,3.9319666666666664,5.297593333333333,2.050116666666667,2.7293000000000003,3.3219433333333335,1.0941811111111113,2.068173333333333,4.625028,7.934715000000001,1.511115,2.913235,4.91192,1.882024,1.8617575,1.8617575,1.0587875,4.81706,8.03823,4.21009,5.361949,4.51509,1.7723833333333332,4.147285,3.40489,4.885445,5.215276666666666,0.35515526315789475,2.73551,2.486575,4.198475,3.9232,1.950356,1.8959625,2.577325,4.41683,4.019785,3.37044,2.36608,1.5190860000000002,6.62877,5.70055,4.755745,3.650405,5.55565,4.8408,5.00995,3.78841,3.5256825000000003,1.914245,1.14765,2.796035,3.965,3.69243,5.4399275000000005,5.76764,2.392865,1.77109,2.66801,2.70823,3.1471966666666664,0.7009307142857143,1.99403,3.56246,1.192325,5.0805,3.24515,6.125855,1.2966874242424242,1.2966874242424242,4.298705,3.77647,3.61431,5.63855,2.723903333333333,2.275866666666667,3.890675,3.22566,2.15058,3.4532000000000003,2.55623,4.09507,3.51795,4.011595,4.762065,1.1077655555555554,2.762615,4.2981,4.601235,3.15679,2.3888233333333333,1.857655,0.8516400000000001,0.8516400000000001,0.8516400000000001,0.8516400000000001,1.64779,3.8077249999999996,3.8077249999999996,1.7504966666666668,6.801035,3.412455,4.32256,3.07626,2.754625,4.958285,4.038215,4.8108,5.307,1.7792175,4.113395,3.80269,2.838955,3.666625,3.42493,2.61998,4.442015,1.728695,4.753475,1.748555,3.5373787500000002,2.946465,1.7739275,1.1533583333333333,2.673415,4.534565,1.31931,0.8563222222222222,3.95364,1.3496325,5.071561333333333,4.365965,1.3782142857142858,3.610405,0.7457744444444444,2.62709,2.684786666666667,2.54617,2.64535,4.095225,2.9556991666666663,4.997235,5.595,4.23853,4.59508,2.3598375,1.3221157142857145,4.04018,5.15165,1.420815,1.420815,4.0566,0.26361066666666666,2.4705066666666666,0.26361066666666666,0.26361066666666666,0.26361066666666666,0.26361066666666666,5.29155,2.569456666666667,3.256935,3.53389,3.1882800000000002,4.5973,2.5948266666666666,0.9537525,0.9537525,0.7953733333333334,0.7953733333333334,3.818275,1.68724,4.330885,1.7860675000000001,1.7860675000000001,5.71298,0.5468207142857143,2.2714125,7.331516666666667,4.865655,3.176325,3.56367,0.9851,1.99402,2.0492825,4.78209,4.42986,4.255765,3.75539,1.3006328571428571,2.645505,2.04616,7.45439,1.69108,4.55283,4.828185,3.018025,3.896465,5.90969,7.887745,4.06938,4.633465,3.899215,2.524725,3.085935,2.303835,2.30629,1.898315,3.727105,3.825625,5.698065,6.55592,4.506535,0.91962,2.11059,3.97331,3.763555,2.12802,4.40131,3.36209,4.7108,1.67394,4.177533333333334,1.5357366666666667,6.441766666666666,2.81577,2.4204,2.481193333333333,2.29356,3.550266666666667,3.3283,3.3679,2.9529366666666665,3.5557666666666665,2.3243400000000003,3.586105,3.09696,3.182725,0.386736,3.013345,4.1368,2.68915,5.82935,5.15165,4.782915,7.129484,4.871935,2.1553033333333333,4.448225,5.3297,1.6694833333333332,4.83568,5.35975,5.26215,4.94756,3.21191,5.58015,5.17075,3.86061,5.431247333333333,8.041625,4.8595,1.3017433333333333,1.4495616666666666,2.673885,1.941284,4.746785,3.985735,5.488425,2.53947,2.3679,2.7199766666666663,2.47535,2.44422,1.0202222222222224,0.49099294117647063,4.09384,4.028885,3.5886333333333336,4.0214,2.918845,3.4243333333333332,5.532618333333334,3.106503333333333,0.5988117647058824,3.28019,5.57915,2.09961,1.638844,3.76215,3.30503,2.429206666666667,3.9164333333333334,4.115365,2.743093333333333,2.2215133333333332,2.3550666666666666,2.4562399999999998,2.661545,4.149308333333333,5.167911666666667,6.514006,1.6076419999999998,5.1227,3.5481379166666667,5.413468583333334,2.680543333333333,3.156585,2.29469,1.9435333333333331,1.25719,1.25719,2.51554,2.3705966666666667,2.66836,4.381965,1.655796,2.3729,1.908945,0.503733125,3.73139,0.6112925,1.00758625,3.201225,4.404075,3.777235,1.6838925,4.737585,3.3787000000000003,0.8059357142857142,4.613835,3.9195023809523812,3.3436333333333335,2.45557,5.03405,0.2881341379310345,2.242029666666667,3.062685,1.4694875,3.65707,6.72625,2.319745,1.3794199999999999,4.22831,3.771,2.8029966666666666,2.8029966666666666,3.46905,2.25775,5.01075,5.703943333333333,5.1187,0.9715855555555556,2.87697,2.3936066666666664,4.834115,5.3531,5.50935,4.95997,4.393633333333333,3.8689,3.8363333333333336,3.6734666666666667,4.2892,3.026783333333333,3.22789,0.6464514285714286,2.4934175,2.539375,3.54277,3.2901666666666665,3.4430333333333336,0.7529566666666666,3.077775,4.239401,4.664065,6.052,5.1476,2.0176375,2.0176375,0.8825419999999999,3.18335,4.70246,3.97457,4.706592857142857,3.405975,4.90163,0.5819554545454545,3.243355,4.02523,4.38019,4.003636666666667,0.8139357142857142,3.143225,4.123945,5.85725,3.722455,5.06245,2.707105,4.16605,1.685175,0.9953585714285714,2.7451866666666667,5.42635,4.41096,3.164745,1.4853016666666665,3.985335,2.5542,2.9276,2.7863806666666666,3.1020266666666667,4.488393333333333,3.1662933333333334,1.77091,3.6371333333333333,1.4755064285714283,2.911376666666667,2.5399966666666667,2.43025,2.91116,3.2136533333333333,2.362626666666667,3.0295633333333334,3.79123,3.21481,3.8144616666666664,2.3820433333333333,1.703355,4.137106666666667,2.9818200000000004,2.420096666666667,3.8144616666666664,2.30451,0.831850909090909,2.4807525,1.0698622222222223,2.25858,1.56921,0.9422636363636364,1.9506425,1.9035775,2.62127525,2.777575,4.761175,1.607485,4.927865,3.2676166666666666,1.607326,2.5794466666666667,2.592423333333333,1.6681566666666667,2.84492,2.8826133333333335,2.796158409090909,2.1289175,1.808898,3.6103666666666663,2.2851033333333333,3.084193888888889,3.199536666666667,3.2547599999999997,3.7360666666666664,2.2379966666666666,4.160166666666666,3.517533333333333,3.8082333333333334,2.99473,3.6123666666666665,3.7227333333333337,1.8804766666666666,10.442,4.36477,4.398605,3.27611,2.80773,2.013405,3.9678,1.726054,4.089975,4.42951,1.430548,2.5407800000000003,1.1705883333333333,2.39157,1.7130166666666666,2.58352,5.02135,3.2845666666666666,3.572115,5.06895,0.8269975,1.590942,1.03417,3.646665,10.901468333333334,3.6626999999999996,6.811,2.0301425,5.24355,4.584395,2.526525,5.2398,0.27769705882352946,0.8210385714285715,4.700705,4.52002,7.427845,2.110745,4.641935,5.85285,4.54398,4.676865,3.38578,4.60819,3.694945,5.968133333333333,3.762415,3.4152,3.11153,2.0923599999999998,1.8213833333333334,1.3966456250000001,2.3527633333333333,3.9347,4.788895,1.546242,9.0434,2.4113,2.9541424999999997,1.081926,1.081926,7.387981666666667,3.062015,2.3222275,2.2323325,2.64505,2.08356,0.9207633333333334,3.9205066666666664,2.6912333333333334,0.5246357142857143,1.81909,3.3434739999999996,3.3434739999999996,1.1713066666666667,2.491,2.323253333333333,2.8182133333333335,1.2965975,1.7595166666666666,4.823181333333333,2.784996666666667,2.768225,1.3059825,1.3059825,4.368405,5.7936,4.74834,3.13067,3.797105,5.74899,3.05434,2.9146366666666665,3.2418266666666664,3.92642,1.16432,3.431566666666667,2.67425,3.77038,2.1053433333333333,4.86327,3.464715,4.11859,3.690395,5.614164000000001,0.9451011111111112,1.9815,2.054765,3.64131,4.48899,3.68236,3.97288,3.705315,2.79296,1.70377,4.40308,3.31713,3.52197,2.3793366666666667,0.82473875,3.296295,4.341135,4.970995,1.1225766666666666,3.084656666666667,2.72643,2.0129533333333334,1.8472639215686275,1.8472639215686275,1.2675833333333333,2.17211,1.0796457142857143,1.384698,4.735235,4.480655,0.49113809523809526,3.866125,3.4423999999999997,3.957495,5.6281,0.41242650000000003,9.671600000000002,5.78945,2.936385,4.35755,4.841685,5.534486428571428,5.19565,7.0595300000000005,0.6904690909090909,2.8877666666666664,5.41225,2.9748866666666665,1.78249,2.03792,4.549685,5.461273749999999,2.445700892857143,3.1694999999999998,3.171476666666667,2.080185,4.56724,10.981449999999999,8.77783125,4.0614,4.559615,3.0314191666666668,3.142445,3.719205,2.0300599999999998,2.94904,3.591165,5.35775,4.88282,5.3944,6.758926666666667,2.4518233333333335,4.44622,4.785105,4.73234,4.821835,8.1794,4.1697125,6.1342,3.447555,2.788825,2.865415,5.99615,3.742175,5.05705,2.17899,3.2298333333333336,3.33054,6.07855,4.172045,3.98278,1.430626,0.900565,2.4670875,0.5799439999999999,4.083485,3.627785,3.46716,2.8916,2.1760333333333333,2.988375,2.587675,2.800156,1.7602319999999998,3.05752,2.84885,2.3414925,2.54575,3.651852,1.4367999999999999,2.9820349999999998,5.1842,3.8363,1.29514,2.671936666666667,3.7504299999999997,3.7438849999999997,1.5987625,5.75365,5.65345,2.3092633333333334,2.92935,30.956384121409634,3.381266666666667,1.7360499999999999,4.017166666666667,1.5515266666666667,2.60976,2.924493333333333,3.4692333333333334,1.9337625,2.836875,2.1214925,3.97356,3.5238,2.50515,1.4724275,2.2313,2.872,0.3862795454545455,1.1564175,2.968996666666667,1.855958,3.34465,1.5987625,2.1841466666666665,25.735041833333337,5.18715,3.910915,3.5636,2.49666,2.569,2.74906,2.3749975,3.6956,5.257175,5.3334,1.59299,1.8906079999999998,2.11275,2.433891666666667,3.8444325,5.4519,5.07865,4.549095,0.20011595744680852,5.05455,4.8401708333333335,3.72511,9.11514,1.035495,1.035495,2.9997433333333334,2.79595,5.61145,2.0043555555555557,1.0471522222222223,4.64438,1.8932425,4.157765,4.28434,3.35948,4.14448,3.99114,5.37865,3.070825,0.7231944444444445,3.17592,2.1157325,4.434045,7.912294999999999,4.329295,1.7725266666666668,1.7725266666666668,7.032115,4.920495,4.10405,5.4508,2.285746666666667,5.294136666666667,1.2973433333333333,1.6761366666666666,2.9428066666666663,2.6264266666666667,2.92057,2.717363333333333,3.866065,4.41997,3.973975,5.31355,2.329865,2.78575,1.99609,2.75985,2.616175,2.140775,2.130505,4.947016666666666,1.862085,3.347874761904762,2.319923333333333,3.031,2.6096,1.8643233333333333,1.4556857142857142,0.975985,2.51248,4.076966666666666,0.73259,4.673505,1.7906625,5.763157916666667,1.9936125,1.439565,1.476375,1.5473633333333332,5.781624444444445,1.9031680000000002,3.1120966666666665,3.796666666666667,1.263075,1.7256875,4.844104,3.2124066666666664,1.7614066666666668,3.713566666666667,2.94618,3.022956666666667,1.2889701785714287,0.2919408333333333,0.2919408333333333,0.2919408333333333,0.2919408333333333,0.2919408333333333,3.87598,2.7404766666666664,2.582425,3.4749,1.36994,2.664613333333333,3.0643999999999996,2.4437,3.63299,2.79061,1.6462533333333333,2.9289166666666664,3.2302633333333333,2.2578325,1.9880275,3.62693,2.7116399999999996,3.844466666666667,5.0011,2.655553333333333,2.5690166666666667,2.50355,11.128835,5.02445,4.58578,5.2878,4.549975,2.789986666666667,5.0014,4.09382,4.5712,5.620245000000001,4.10906,2.949355,2.3894725,3.76894,5.189010857142857,3.630395,17.755614595238093,1.15012875,4.443545,0.8399222222222222,1.3359125,3.007725,4.64272,4.320705,5.00265,1.6531383333333334,2.4696375,4.2375,1.9778,4.665935,3.2532417857142857,2.6846366666666666,0.5732733333333333,2.9628033333333335,4.731405,2.486155,2.4376925,2.21908,20.377994166666667,1.44569,1.4063,2.6121366666666668,0.29845846153846156,1.788475,2.93727,1.9672433333333332,3.095326666666667,2.7213,7.828085,1.9094775,2.591,2.2495225,2.1752525,1.6499249999999999,3.500033333333333,2.95756,4.13681,3.3547999999999996,1.987445,2.6253583333333337,3.2069488888888893,4.981375,0.4324783333333333,3.7437666666666662,3.1066000000000003,2.998785,2.120525,3.6892604999999996,3.62036,1.62786,2.2259066666666665,2.1326300000000002,1.3869433333333332,1.9168933333333333,3.46324,3.25579,0.7650283333333333,3.23529,4.964885,4.34558,2.27643,2.27643,2.8990899999999997,4.57021,3.161715,3.26882,2.330115,0.9095727272727273,4.474005,3.53766,6.33895,3.77069,2.323114,2.323114,1.2907575,3.43953,5.1257,4.46037,4.234615,3.0239366666666663,2.317343333333333,4.347025,3.63787,4.182405,2.888063333333333,2.300123333333333,4.202616666666667,3.2021833333333336,2.5705933333333335,1.9498166666666668,3.79992,2.7508,1.60893,3.63787,3.45918,4.658375,3.7378,5.0939,4.52692,6.5763805,4.00553,2.1207599999999998,4.81781,3.049095,7.372615,2.5948966666666666,1.3400299999999998,4.537075,3.666,5.0753,0.5228385714285715,0.8608416666666666,3.6213,3.59321,2.1666842424242425,4.2272,2.68334,2.855175,8.863422,1.931972,1.236696,3.784245,2.508305,3.262445,5.1466,6.276273333333333,3.1006183333333333,2.1003433333333335,3.077113333333333,1.7252233333333333,3.3868333333333336,9.000050246305419,0.855085476190476,1.049725,4.7428,0.49239866666666665,1.759955,2.25788,2.88895,3.0467,3.016925,4.72787,2.38474,13.63166,4.966245,2.49558,2.49558,4.126895,0.8311583333333333,5.362406666666667,4.073545,4.190855,6.305400000000001,3.49679,5.2771,1.4342183333333332,2.79178,2.61388,2.53231,3.02203,2.61484,3.12945,3.533795,3.58121,3.028115,2.940395,2.67919,4.373845,4.58729,3.101976666666667,3.3313633333333335,4.9269750000000005,4.20509,19.008011071428573,12.09803511904762,3.429882142857143,0.7076766666666666,1.506342857142857,4.460825,3.410065,3.1086515705128206,1.76951,0.8893822222222223,0.6637308333333333,0.6064214285714286,2.0840075,1.642542,5.109633333333334,3.3540666666666668,0.7103545454545455,3.268115,2.321135,1.84819,1.790734,6.79428,1.557294,4.566515,3.255345,3.0571966666666666,2.21903,2.58887,2.53248,0.8166390909090908,3.04977,3.215116666666667,4.010820666666667,3.08388,7.533872499999999,3.586485,3.19796,2.39957,3.340065,6.99023,2.186035,2.4908575,2.66395,1.6045375,2.6537,2.1747725,2.755125,0.9423870000000001,1.412575,1.08460875,3.023965,4.378575,6.0276,5.46085,3.34748,2.248435,2.853625,3.3463999999999996,7.63953,1.1511799999999999,0.37974875,2.873285,1.98325,1.516738,3.455598,1.2492100000000002,1.8886180000000001,3.9856733333333336,2.9608480000000004,1.2303283333333332,1.7975866666666667,3.7952216666666665,3.47373,4.580435,4.165245,2.05455,5.02675,4.16436,0.7789307692307692,4.670095,3.84768,4.50502875,3.3591333333333337,2.435675,1.328238,1.2134825,3.48073,2.727525,3.329145,4.18053,2.71276,2.77174,3.23938,3.709765,4.634735,2.432735,2.578705,4.516655,5.92275,0.57519125,4.455785,1.88308,3.515255,4.092866666666667,2.28035,3.141595,2.204065,1.99341,2.50735,2.3954966666666664,1.7850066666666666,4.631005,3.68772,1.320392857142857,7.31957,1.0430333333333335,3.84807,1.7831566666666667,4.72485,4.28875,3.2562166666666665,3.198125,4.097295,8.29887,2.82269,3.550765,3.863275,3.57406,1.6703675,7.88641,3.6746,4.026395,1.58973,4.039505,3.007095,1.0972575,2.09918,4.274135,2.339665,4.23794,5.03736,4.2034525,4.668275,2.280545,5.245,3.944965,3.5878,2.524896666666667,1.549846,4.381075,6.07615,4.61428,4.4793,2.907755,2.3383525,3.87176,3.38668,1.175946098901099,4.134085,4.720280833333334,3.887285,2.7376,3.5639,0.43741285714285716,0.43741285714285716,4.73417,4.33364,4.22701,2.279595,3.58115,6.22415,0.8277319999999999,3.977595,4.752115,4.77773,4.90809,5.0509,1.7713025,2.84724,2.09294,4.294365,0.68809375,4.093175,4.143585,2.719715,2.8696266666666665,4.305175,2.233325,3.302515,60.60980742640693,3.303535,2.5968766666666667,1.633115,3.213515,3.93851,0.86275375,0.97626,2.164525,2.164525,1.3014860000000001,3.33209,2.344835,3.766433,7.43292,2.9141933333333334,1.2895857142857143,1.370115,2.747526666666667,4.081389166666667,0.941005,1.874995,1.2009919999999998,2.05792,4.34221,4.246455,3.19744,20.806123735930736,3.711945,3.85262,3.192055,2.0741366666666665,2.87527,3.131775,2.6246,5.44516,1.448898,4.077535,3.252379869047619,5.932314861111111,1.957955,2.57729,1.837895,4.46182,2.5225233333333335,2.157855,2.04423,3.855221666666667,3.3553,3.39601,3.990605,4.47168,2.54205,2.651185,2.81377,2.638755,2.9526166666666667,2.243215,2.0756075,3.325305,1.141105,3.30551,4.91134,2.529415,4.750135,5.05475,5.422533333333333,1.9730633333333334,2.1451,2.64918,2.691005,3.92586,3.22062,4.58841,0.7129914285714286,4.026813333333333,3.13074,3.76644,2.44846,1.847326,3.8005899999999997,1.1785222222222222,2.91313,4.34663,1.110802,3.56395,3.817765,4.72428,6.50881,2.1677,3.1115,2.65623,4.023633333333334,3.0956966666666665,2.4673646666666667,3.077643333333333,2.407223333333333,2.4869666666666665,1.2786433333333334,2.108205,2.108205,1.8408866666666668,2.0808433333333336,1.7912933333333332,2.5212,4.03494,5.62815,4.84211,1.638865,4.448,3.903495,3.50918,4.14208,1.92191,1.70109,4.649048333333333,1.824625,4.22475,4.004205,3.569025,2.40071,3.583920625,3.203535,2.948655,3.47003,0.14659632653061225,2.5177433333333332,7.63267,1.517576,3.35644,3.167315,0.9671857142857142,1.254265,1.880435,3.905535,2.85038,7.09891,3.732575,3.749295,2.95228,2.750815,3.417,3.398855,3.988855,3.274355,2.81335,5.60325,4.03662,4.239805,2.705966666666667,1.94183,3.42075,4.62965,2.620145,2.90841,2.01685,2.56287,4.569915,3.72474,2.62508,4.839725,5.4068,2.66216,4.575705,3.95583,3.59573,4.47026,3.558265,3.153445,5.12068,4.677565,5.0286,5.1211,4.53885,5.2960650000000005,4.358065,4.149215,1.2831540000000001,6.6585,2.461655,4.483925,4.005945,4.001735,3.2265866666666665,1.9185100000000002,2.1429733333333334,2.4432066666666667,1.03092,3.4875333333333334,3.859166666666667,3.0929966666666666,2.1158933333333336,3.66151,4.239005,2.7213100000000003,0.5412958333333333,4.34819,4.430455,5.1296,4.815165,3.69363,4.67059,5.08095,5.1299,1.4091333333333333,0.9738923076923077,2.8028633333333333,5.28555,5.98745,0.491015625,2.65992,2.50924,3.39348,4.478,4.005966666666667,2.0843425,5.85165,3.544885,4.604015,2.94045,6.6363,5.402,7.028895,0.5805316666666667,4.254535,0.9364079999999999,2.275475,4.1451,3.1529066666666665,1.3528133333333334,2.35446,4.213805,3.553815,4.38279,2.11409,2.2069025,3.125275,4.53551,4.333495,3.96424,1.6402899999999998,1.199187,6.0093,2.3528675,7.777100000000001,4.3711,3.544595,2.2748825,1.5664825,4.36042,4.91878,1.78298,2.34037,2.565325,2.5177433333333332,6.6651875,3.0435783333333335,2.8482000000000003,4.3209925,3.94081,1.9508233333333334,3.07806,7.069235000000001,4.50967,5.4774,0.5878,3.464495,4.35181,4.936126785714286,4.01313,4.70165,2.89201,2.74771,3.18579,2.86085,3.6086203333333335,1.974384,5.480104,4.8945,5.04815,3.8167,3.34324,3.268575,2.27825,1.291715,0.9100825,2.78688,2.419895,1.1115416666666667,2.62827,4.814805,4.69192,3.592195,4.155345,17.149001785714287,4.069515,4.36286,4.20246,0.6857791666666667,5.1323,4.785515,4.24044,5.0145,5.3622,2.06289,3.67855,3.38076,1.445656,3.17626,4.96046,3.3858333333333337,1.5716240000000001,3.72768,4.80721,3.960245,5.03075,4.947495,5.7067,4.03318,2.899376666666667,4.137175,4.46249,2.76722,3.114603333333333,3.041846666666667,1.6555645833333332,5.01715,2.7172878571428574,1.9309133333333335,4.001265,2.23578,4.34425,4.137106666666667,2.317795,2.849685,4.581115,3.71982,4.62444,4.52225,5.1812,4.940627,3.46384,5.40995,2.775081666666667,3.58688,4.07632,1.51827,4.444535,1.0264883333333332,4.51942,3.170845,0.9670571428571428,3.78364,2.016795,6.4199649999999995,2.4275994285714284,2.4275994285714284,2.4275994285714284,0.7200933333333334,1.2726533333333332,1.73477,3.329595,6.08552,3.2491288888888885,1.853525,2.2283475,1.6937233333333335,3.72689,2.33198,0.42763384615384614,1.75113,2.11719,2.788495,1.922795,2.65979,2.33289,2.07132,3.821765,3.211866666666667,3.463405,3.01607,1.98599,6.49419,2.03594,4.492885,3.784235,6.498803333333333,1.6599733333333333,3.502625,3.885705,3.651135,4.046465,2.78505,1.913405,3.835395,5.897248833333333,2.091965,3.53319,3.16439,2.08698,4.959295,4.363995,2.61144,2.216005,3.6212125,6.126882142857142,6.16075,3.106685,2.45303,2.698205,3.06934,3.05999,4.05845,1.3707275,2.829465,4.715425,0.86561,3.7102,3.779995,3.702595,3.28746,2.439285,3.28461,1.994365,4.47872,8.216763333333333,4.429095,3.291955,3.26067,0.9914175,4.58189,2.30353,4.36509,5.6179075,4.11713,4.514735,10.912475,5.0723,4.0561,1.4771525,0.6870983333333333,2.735665,3.732635,3.41664,3.522815,2.1688366666666665,2.3989066666666665,2.0138366666666667,1.1769683333333334,1.1769683333333334,1.9153933333333333,2.44548,1.9570566666666667,2.324856666666667,3.12096,2.1484033333333334,2.2905966666666666,2.81546,1.3687533333333333,2.3167933333333335,2.11528,1.8646900000000002,1.52613,2.528703333333333,0.67448,9.854642083333333,0.67448,3.31408,2.0566683333333335,1.6776099999999998,4.40417,4.20931,4.11146,4.483305,2.08433,2.88325,3.240346,1.95693,3.316143333333333,2.9484066666666666,2.6384233333333333,2.9727766666666664,1.7404866666666667,5.7132,6.450311238095238,3.2481566666666666,3.4660666666666664,3.448,2.77032,2.898343333333333,1.1659371428571428,3.6443999999999996,3.5706,4.07332,6.02265,4.250475,2.7764,3.6552333333333333,3.00313,4.150705555555556,4.156135,2.56584,3.845545,3.3904666666666667,3.15849,4.863,3.27232,3.815965,6.346826666666667,2.335506666666667,2.5024666666666664,1.7313066666666668,1.3548,5.038953333333334,3.495726666666666,2.36556,2.0628733333333336,1.9012066666666667,4.537025,3.63175,2.80733,3.3777666666666666,3.322843333333333,3.4843333333333333,3.4609,3.6142,3.114716666666667,0.60606875,3.7428333333333335,2.5353866666666667,2.636406666666667,3.66196,4.59167,4.318345,5.11165,2.87086,3.8766849999999997,1.107805,2.93656,2.93656,4.562985,3.086855,3.63261,3.936865,1.673785,3.327935,3.781475,1.1343728571428573,4.066001666666667,3.532369238095238,2.5718306666666666,0.362114,4.60916,3.378945,6.58845,3.44121,6.39535,3.49549,3.84407,4.009715,1.8665170833333333,3.191075,4.05781,3.45682,3.502466666666667,3.1483233333333334,5.53931,2.074955,0.9599425,1.9169966666666667,1.6541333333333332,5.30513,2.33237,2.3941033333333333,1.764665,4.291285,3.977415,4.12982,0.542272,4.34416,3.782495,3.031136666666667,3.0246033333333333,3.3444000000000003,3.4018591666666667,4.36947,1.9458,0.6613157894736842,0.8173285714285715,3.5188333333333333,4.319685,6.433303333333333,4.96164,4.64343,5.48025,1.3568285714285715,4.092866666666667,2.2244433333333333,1.03258,5.33555,6.25525,3.025875,4.83425,3.979845,6.721026666666667,3.876466666666667,6.528684999999999,3.822695,2.438642638888889,5.89585,10.478180865384616,2.3932866666666666,0.6934720000000001,3.332825,4.354055,2.228575,6.33205,4.12844,4.298235,2.6986633333333336,2.6986633333333336,5.5726,3.374405,4.028865,5.1092,3.768532714285714,2.4023054285714283,1.139685,5.14235,2.637085,5.5634999999999994,3.55919,4.28386,2.811705,2.226515,4.601295,5.0257,3.6862999999999997,4.17533,4.491605,28.090935119047618,1.98738,2.6488,2.4085275,1.7226,2.59902,1.0615942857142857,2.9154533333333332,3.0350633333333334,3.5441333333333334,3.2447033333333333,0.6460361538461539,3.29101,3.83147,2.896545,3.314633333333333,3.71612,5.71929,4.78539,4.093495,3.74858,3.8674800000000005,4.06984,3.6038333333333337,1.6444525,1.0274583333333334,1.36378,2.3317866666666665,1.5032466666666666,2.978736666666667,2.4475666666666664,2.35538,2.4480766666666667,2.584495,2.006515,1.77598,3.02467,4.436065,3.64921,3.95862,1.681848,3.4937666666666662,2.4943833333333334,3.87213,2.1945366666666666,2.572495,2.514075,1.42562,3.952345,6.350203333333333,2.696915,3.58604,3.986005,2.69695,3.2433241666666666,3.550466666666667,4.03374,4.71325,0.31060944658944656,0.31060944658944656,5.09475,5.26395,3.05139,2.81199,5.4511,4.522975,0.6338415384615386,5.04735,4.654325,3.740655,6.46825,4.60732,7.37489,14.372160000000001,13.180321666666666,4.4111,4.26673,2.560233333333333,0.6392,2.6633166666666668,4.343445,1.3249283333333333,4.96485,3.6584,3.0296466666666664,2.21746,1.9803499999999998,4.901475,5.07005,8.983698452380953,5.25445,4.01591,7.672301742424242,3.40313,3.4085666666666667,1.463335,5.7287783333333335,2.044845,2.4278166666666667,2.6721299999999997,0.2623884375,2.820245,3.77919,4.726271666666666,0.88316,1.2330733333333332,3.96992,0.549176,0.549176,2.919618333333333,3.4032666666666667,3.4258333333333333,3.58731,4.222615,5.3726,3.74393,4.09743,3.02684,3.077246666666667,2.6144333333333334,0.9347249999999999,2.7548933333333334,2.881105,3.05646,7.18215,2.828085,9.860724999999999,3.185275,6.7469,3.17783,2.3118725,2.5458,2.840375,1.6380925,2.36142,1.841665,3.39542,2.4825475,4.09626,2.89638,3.9110525000000003,3.9110525000000003,2.7531333333333334,2.7531333333333334,8.8286505,2.60182,0.786081,2.590333333333333,2.445793333333333,2.48894,4.09626,1.95338,1.941236,1.495064,4.046215,4.16339,1.75698,4.435515,4.03556,5.8676844444444445,6.60043,2.30436,4.31389,6.62179,4.029945,3.255015,2.3339066666666666,3.505425,3.4677548484848484,4.111715,5.352696666666667,7.457084666666666,3.5705375,3.35538,1.1653633333333333,4.415065,4.297284,3.67456,3.8573233333333334,4.39645,2.78642,2.5143666666666666,6.752905,3.222705,1.551086,6.09928,3.815085,2.7571600000000003,5.27925,2.7571600000000003,2.87628,3.821475,5.27665,1.0531028571428571,4.0956455555555555,4.75731,3.581285,1.3231566666666665,1.79287,3.934155,4.02382,2.552885,6.748445,4.183555,3.992895,4.12485,4.750995,1.4553275,3.86011,2.642045,3.89508,4.15885,3.836635,4.862225,3.07272,3.795235,4.930725,1.9761006666666665,1.8410875,3.297193333333333,3.8154333333333335,3.452033333333333,3.087623333333333,3.5414333333333334,3.23142,5.7163,3.45034,3.76074,2.88227,1.9595266666666669,3.5566,2.082586666666667,3.052595,3.024205,2.790695,0.68809375,2.11151,1.7297233333333333,3.1229,1.850434,3.553139,4.29847,1.2402799999999998,3.18694,4.618335,0.809206,1.35126,3.422295,3.869315,3.935525,2.00072,1.7641,3.40357,2.5458583333333333,1.7494466666666666,2.903535,1.8917,1.11909,1.3541875,6.30844,3.316095,2.34163,2.52375,2.4454575,3.82501,0.8474775,0.36411642857142856,0.7626499999999999,4.942675,1.8323774285714287,4.870765,2.1745525,1.9751445714285714,3.361732571428571,1.386588,1.0312205714285716,0.6891320000000001,0.56399,2.8802525,6.42255,3.268415,4.2039,0.3535717857142857,3.68093,17.78887895238095,2.94099,7.081099933566434,1.0790225,1.0790225,1.0790225,1.0790225,5.996066666666667,4.33499,4.466515,2.16371,3.302865,5.039,5.9872,4.02918,3.576735,4.39431,4.18223,4.055565,3.737911333333334,4.1774,5.25015,4.075135,4.74999,3.489725,4.30782,2.6171166666666665,3.56171,3.334775,4.0767,3.95118,4.585175,3.2418033333333334,2.607425,2.4345066666666666,4.273745,1.3432785714285713,3.669625,2.723936666666667,3.3774946666666663,4.2034525,4.60564,3.095105,2.796585,4.303225,2.95153,3.15737,5.5924,4.91339,3.155925,3.559615,1.74382,1.74382,2.0796325,4.643795,4.126695,5.617241,5.3701,3.635975,6.6398,5.11715,2.27144,9.37014,5.3546,6.567232499999999,4.7112,2.92911,3.21711,0.2530334482758621,0.8420725,4.366752666666667,3.298045,4.69103,2.955133333333333,6.239966666666667,5.04965,0.5595735714285714,2.828045,0.443809,1.7165088095238095,3.281935,2.314835,3.684025,3.864195,3.297885,3.310115,3.42764,3.64594,3.5795,3.51812,3.820485,2.39604,1.7165088095238095,2.59832,2.1646375,3.72261,2.1804,4.07044,3.419095,1.6703675,4.31193,2.839665,1.290055,4.61451,4.58285,4.21593,2.7341466666666663,2.8852233333333337,4.272055,1.9824833333333334,1.389524,2.7038533333333334,2.489376666666667,2.5427166666666667,2.284893333333333,4.77972,3.17111,4.9759891666666665,3.891622142857143,4.86267,4.233295,1.8189920000000002,5.25255,4.634925,5.398,4.281575,6.70606,2.0387875,4.886345,3.504175,3.125715,1.82112,1.71024,3.913465,4.480665,2.5047633333333335,2.801747916666667,3.4667075,3.4667075,2.6075066666666666,3.2205733333333337,3.284375,3.94764,3.57498,0.7384223076923077,3.16701,4.358615,5.278155555555555,2.99544,2.893535,1.7726775,2.76792,3.30371,2.063375,4.734965,3.17306,5.0455,2.100966666666667,1.0613545454545454,6.35307,3.50869,3.22588,3.1845433333333335,1.771246,30.50169969047619,4.101845,3.34782,5.7277,4.31547,0.8730916666666667,7.200735,1.9519225,5.5315,1.5259633333333333,4.269455,5.206025,3.635025,3.254465,2.1660925,3.4081333333333332,4.95831,2.08386,2.7562033333333336,3.831905,2.459105,2.540535,6.12475,2.428865,6.6205,1.13704125,4.379195,3.4792,3.813175,5.2049,3.004615,2.4989266666666667,4.201425,4.61579,3.5499425000000002,3.5499425000000002,5.9668,2.4091925,4.2422,6.865326666666666,3.358835,3.926995,3.00634,4.632255,3.370205,3.99118,1.3805275,2.2292,4.297675,4.31717,5.94345,4.30158,2.67471,9.844003333333333,3.727635,3.702255,1.7535285714285713,3.506625,2.3195099999999997,2.64695,2.1023566666666667,1.18653,2.608756666666667,0.9210528571428572,1.09712,1.09712,1.09712,1.87655,0.5673,3.733905,1.2328266666666667,2.65727,1.0304633333333333,1.71399,2.64745,2.0901866666666664,0.7345225,1.7947499999999998,1.3298833333333333,2.3452699999999997,1.6436520000000001,1.6436520000000001,1.6417166666666667,1.6811299999999998,0.9547760000000001,1.8514933333333332,1.5918966666666667,1.2103933333333334,2.300675,2.25951,6.0021,2.0406375,5.6316,17.400196916666665,6.671139999999999,3.480935,3.7168516666666664,3.5324000000000004,2.743986666666667,2.6346766666666666,3.0292133333333333,0.7392791666666666,1.00483,1.00483,0.66836875,2.49752,3.73742,3.25884,1.6352540000000002,5.31865,3.97194,2.403215,3.973465,5.335,4.103455,4.272645,3.5177666666666667,3.132945,3.26234,5.77225,3.1346000000000003,5.1889,0.506348,0.506348,2.306605,2.90265,4.83756,3.43829,3.97693,4.949355,7.646926000000001,7.71978,3.658855,2.338235,4.457205,3.70599,2.57848,2.393925,3.61024,1.3416466666666667,3.722405,2.290545,1.5589375,3.6996,3.567215,1.986415,5.352696666666667,1.62941,3.587566666666667,3.48114,1.0153214285714285,3.7327999999999997,2.621,4.428455,1.140885,1.7577975,2.3567275,2.1890125,1.675385,2.547275,1.93152,1.959045,4.343735,4.509575,2.384585,1.7312,1.4801366666666667,3.6081333333333334,2.0571033333333335,2.848975,4.832365,7.28575,2.8926999999999996,2.96549,3.37253,3.477525,2.379565,5.07465,4.10905,2.987925,1.394225,4.6695,2.322955,3.22372,2.492545,3.548885,5.07305,5.80875,2.2367399999999997,2.7666733333333333,2.7929733333333338,3.432533333333333,2.062883333333333,1.567216,5.46735,3.5394,2.2530394545454544,3.2909466666666667,3.0648400000000002,2.591343333333333,3.4288000000000003,3.30635,3.5117333333333334,5.46055,4.38456,3.0136633333333336,4.961595,3.03165,2.259735,3.403915,3.759075,4.209955,6.2537605,1.91401,3.90125,2.53647,3.588175,3.545485,0.55373,2.29557,2.266625,3.355965,2.74707,2.23517,2.642065,0.651535,2.77731,4.61239,2.5645,4.2919,2.4523800000000002,4.11188,1.99591,4.5424,4.36779,2.11412,2.689485,7.0870375,3.987485,4.684,5.11005,7.3575792045454556,4.56855,4.49799,2.2342325,4.704555,2.704565,1.81487,1.854165,2.14251,0.9648385714285714,2.53015,2.4872366666666665,2.5374433333333335,3.4143333333333334,1.768422,3.19107,1.8468833333333334,4.24088,4.9341175,1.0167225,1.7581666666666667,2.4654333333333334,2.75155,1.9000266666666665,1.0393583333333334,5.411058333333333,2.08525,2.6034333333333333,2.6913033333333334,2.443303333333333,2.6811066666666665,2.980965,2.1675866666666668,2.606996666666667,2.1436966666666666,3.957935,3.32404,3.93889,3.0043866666666665,2.9642966666666664,0.67961,1.7961766666666668,2.0698575,1.9501666666666668,2.550143333333333,1.1204699999999999,2.65747,2.917923333333333,3.99253,1.9884700000000002,3.37263,3.292195,5.1205,3.08277,0.600845,2.1346,2.9430566666666667,3.3377,0.7714309090909091,2.7949333333333333,3.431818,3.3816666666666664,3.006766666666667,3.36164,3.65505,3.9211666666666667,3.0895233333333336,2.170495,5.6973,5.37635,5.2596,5.51965,5.73255,1.7577133333333332,3.3703,3.8640666666666665,3.408333333333333,3.2015,2.79496,4.0337000000000005,3.7712,2.9083666666666663,14.146799999999999,4.3708,1.19992,2.88454,1.56536,3.414266666666667,3.2301866666666665,2.4817899999999997,5.993908333333334,6.718855833333334,2.3564366666666667,0.859634,4.199175,3.508233333333333,2.93305,5.00375,5.61995,5.6816,5.0841,3.53932,1.8966775,6.5182925,1.1653633333333333,6.8828525,5.03655,2.5004500000000003,3.902745,7.420753333333334,5.90915,2.1927166666666666,1.46422,2.29445,7.522413333333334,1.5987625,2.97077,2.5937833333333336,4.142007222222222,5.50745,4.14458,6.26295,3.61642,5.24045,3.60568,9.12505,4.996775,5.70995,2.29164,2.6783,11.340131666666668,3.301665,2.38716,2.338903333333333,1.4821266666666668,2.4934499999999997,3.272483333333333,0.64405375,1.1140459999999999,1.0694142857142857,3.391285,6.955176666666667,2.950222666666667,1.3561733333333335,4.867625,3.972305,0.569394,4.560105,4.45324,5.11695,3.783545,3.532135,2.6251466666666667,4.08858,9.457170000000001,1.8096325,3.8005649999999997,4.336855,4.20168,3.521765,0.8239741666666666,3.5893333333333337,4.112466666666667,1.6675966666666666,2.4040733333333333,2.314086666666667,2.5668233333333332,2.4622333333333333,2.09829,2.08363,6.1418485714285715,5.38445,3.969965,5.090903333333333,1.5088333333333335,2.3688675,4.901815,4.629795,4.55843,4.3923,4.785275,4.683515,1.74382,3.714365,7.625321666666666,1.22262,1.6830766666666666,2.3933166666666668,2.559556666666667,2.6996599999999997,4.7533045000000005,0.8173285714285715,2.286875,3.278725,6.26205,4.578685,2.2413266666666667,2.8454366666666666,2.053335,0.55592125,2.549225,2.82125,7.6211199999999995,4.27524,4.614115,0.932184,4.707233333333334,9.387952833333333,10.986808333333332,3.29286,1.22046375,3.58642,3.5537,2.504706666666667,5.414362,4.86658,4.19144,2.035525,3.9017999999999997,2.159553333333333,2.54412,0.7798036363636364,0.4015886666666667,2.5498,3.309625,2.0500805,3.29083,3.102793333333333,4.12822,5.5413,1.473144,3.15756,1.92571,1.92571,2.138525,3.222585,6.7816,2.61916,2.4408333333333334,3.3800000000000003,3.4814666666666665,4.128525,4.63467,4.37622,4.041865,4.03519,4.432385,7.1504,7.788775,1.948905,2.22818,2.931236666666667,0.879515,0.7236549999999999,4.55797,2.33254,5.4068,2.9165266666666665,3.12863,1.907724,1.4894225,3.90405,4.572085,4.241155,2.035,1.2673033333333332,2.6062233333333333,2.020723333333333,2.5715133333333333,1.1353271428571428,1.1353271428571428,2.6747833333333335,5.1453,2.838995,2.84731,3.50719,1.895095,20.589116878787877,3.72614,5.154795,4.50086,4.717635,4.39003,3.905275,5.72765,6.1993825,0.8533816666666666,0.8533816666666666,0.8533816666666666,2.69867,1.7677285714285715,3.5235333333333334,4.28175,4.02535,2.953265,3.98408,4.49455,0.7801733333333334,2.152623333333333,2.3324866666666666,5.9821021666666665,3.3864954999999997,3.850634666666666,5.15655,2.28035,1.9282033333333333,2.2489333333333335,0.50981125,0.780842,1.75881,1.910375,2.978975,13.399446666666666,2.5260166666666666,5.58375,0.7553857142857143,9.89174,5.7595,3.813835,4.39079,2.735125,5.5191,2.735125,2.834804,3.264125,3.718925,3.69532,4.090655,4.46662,3.436055,6.1548,7.0738520000000005,1.8227466666666665,2.243266,2.73288,27.182541518018017,1.522228,6.4149,3.765494,3.81306,4.26592,4.48627,2.76813,2.924995,2.45482,6.65065,7.133,4.84106,5.0628,4.4941,2.0476525,2.09434,4.486955,0.3530353846153846,0.3530353846153846,0.3530353846153846,0.3530353846153846,4.12695,3.2826616666666664,1.00383,1.8490966666666668,1.1671,4.47965,2.4791766666666666,2.401195,7.270978333333334,3.211116666666667,0.18226206896551722,21.07791466666667,4.703345,1.779568,1.363539642857143,2.20744,2.01038,2.44512,4.684235,3.179515,3.264925,4.266385,2.2311633333333334,7.5440475,2.68783,2.015265,4.09484,5.9908,8.78632,4.426025,0.3082268292682927,3.41739,4.222145,2.8648466666666668,2.1350325,3.165843333333333,1.5726683333333333,1.5726683333333333,4.06719,5.7052625,11.65279,9.39335,0.599538888888889,2.58196,3.894815,3.258585,4.88656,3.71614,1.367648,1.367648,3.762675,4.471225,2.6537933333333332,3.843445,4.49093,5.45665,6.971455000000001,2.28084,4.5683,4.132615,2.64463,3.0458466666666664,3.086626666666667,4.91365,4.445195,5.65905,4.331235,4.661315,4.070525,4.252825,4.23961,5.4728,2.6486633333333334,3.1985266666666665,1.12759,4.65292,4.287295,4.00966,1.74221,2.07238,3.490866666666667,2.94363,2.47839,4.70265,1.89485,1.8451,2.2423366666666666,2.5428333333333333,2.2493366666666668,1.5724133333333334,3.7441333333333335,3.256883333333333,4.216566666666666,3.124746666666667,1.9579166666666667,2.5109366666666664,1.8365766666666667,3.5798,2.0666533333333335,37.719289,2.1444634545454546,2.1444634545454546,2.5848533333333332,2.6404900000000002,2.0281933333333333,1.7995433333333333,2.95754,1.6946266666666665,0.8200846153846153,5.1781,6.87476,4.17204,4.04164,5.52495,1.9505833333333333,4.557165,1.8431080000000002,5.168,4.9489,5.7683,4.417885,1.6444525,4.014305,4.315965,4.615925,5.02195,5.3984,3.851355,3.06067,3.5436333333333336,2.8333399999999997,2.0409775,1.85124,4.48798,2.5209433333333333,3.8177525,3.8177525,2.2210966666666665,1.50788,2.40369,2.59553,2.3437266666666665,5.1454,2.8456166666666665,1.1300033333333335,1.1300033333333335,2.1063266666666665,1.9810933333333332,2.5695533333333334,2.6016033333333333,2.5561000000000003,2.36789,2.128976666666667,2.269692,3.059439142857143,1.6486971428571429,0.7897471428571429,63.746249772817464,3.009512,3.5981666666666663,2.4444559999999997,0.898428,3.920881333333333,1.570316,1.570316,3.5095333333333336,2.958933333333333,0.85895,3.198456666666667,5.5659633333333325,3.4898333333333333,2.369753333333333,2.83013,2.27862,2.6007753333333334,0.293338125,3.6201666666666665,0.828782,2.55667,1.08755,1.08755,3.3781,2.0387399999999998,2.859223333333333,1.7616999999999998,3.6597000000000004,1.7616999999999998,2.1112966666666666,2.7822666666666667,3.09705,1.3817439999999999,1.3817439999999999,3.1421566666666667,1.35527,3.4542,2.1499466666666667,4.63075,3.53456,12.406518583333334,6.7720675,3.569545,2.99841,3.87082,5.57765,5.6648,2.7340816666666665,4.13627,3.915855,2.03768,4.16655,3.3521666666666667,2.6506166666666666,5.0836,2.1268366666666667,1.060987142857143,3.8833774999999995,2.9526299999999996,2.88189,0.7825300000000001,2.705735,3.42465,4.00587,4.25751,6.6159,1.9778,1.946666,4.42427,4.6044,2.4132875,2.3785366666666663,1.9858733333333334,2.1598426666666666,0.9171060000000001,5.2135,4.561675,3.659915,3.746775,3.0735333333333332,5.1577,5.28275,2.8783666666666665,1.67541,0.5304966666666666,14.992867166666667,0.5107818181818181,0.5107818181818181,0.5107818181818181,3.136006666666667,4.044766666666667,0.5107818181818181,7.021613333333333,4.2997733333333334,0.717759,0.717759,3.452166666666667,3.236595,2.80717,4.47454,5.0092,4.481795,2.4795175,5.034969333333333,3.48542,3.5660019642857144,4.72437,2.9524685,2.4588925,2.466915,2.8193,1.641425,3.3921833333333336,3.080416666666667,2.45062,2.103875,2.0524025,1.8468499999999999,1.6094725,2.7458,1.0913811111111111,2.568675,0.617795,5.52595,1.7131,0.6995608333333333,2.2091625,7.790541666666666,2.54019,1.994432,3.1269825,7.27321,2.406915,4.628385,3.07907,5.82964,3.608055,4.554245,4.534105,4.54201,3.2032833333333333,4.477474999999999,1.1627514285714287,4.15442,2.3832866666666668,2.48638,2.24884,2.396755,2.1639399999999998,1.2898625,5.8334,0.9422636363636364,5.1317,5.71165,5.1902,5.3716,3.6667666666666663,2.5837733333333333,2.1577,3.0130733333333333,3.0123333333333338,2.560395,3.8749000000000002,2.82795,4.862575,1.96083,41.32570361111111,5.0255,2.32565,2.5035866666666666,2.9855133333333335,1.5915466666666667,6.245583333333333,4.092645,2.5131433333333333,3.2890366666666666,2.1474266666666666,1.532885,5.276,0.8056428571428571,4.48681,1.3290585714285714,3.5691333333333333,3.4340666666666664,2.85501,1.4284625,4.784681333333333,1.7621479999999998,1.7621479999999998,2.479833333333333,2.8756866666666667,3.455666666666667,3.5181,1.4025333333333334,2.9421666666666666,2.62108,6.4558375,2.92975,4.248175,1.563125,1.3682566666666667,3.1447066666666665,0.893978,5.4479299999999995,3.540233333333333,2.89535,3.6476666666666664,2.95039,2.75245,3.4191333333333334,1.7580433333333334,2.4454575,2.5568166666666667,3.5086333333333335,2.5303766666666667,3.7733666666666665,2.13787,0.638966,9.808994294871795,2.9204866666666667,5.3332,5.25555,2.7862500000000003,3.0835166666666667,1.279225,2.327036666666667,2.153725,1.279225,4.547665,0.46219625,0.46219625,1.261885,1.261885,0.8576325,0.8576325,2.40705,3.061985,2.502395,1.373805,1.73948,3.656445,3.014155,4.990545,5.28445,1.996178,4.46894,2.438575,4.716366752136752,1.611465,1.611465,2.370055,1.749378,3.9169758333333338,2.04919,4.663625,1.6531383333333334,2.68445,0.54959,1.2039585714285714,2.0955425,2.3347525,2.0393825,1.343675,4.48952,4.5229,2.28439,2.449056666666667,1.42261,0.7360833333333333,2.31997,3.50703,2.9931366666666666,4.74879,5.29945,5.0767,3.754885,6.61599,1.54876,6.263235,1.77499,4.59806,4.7498,5.7548200000000005,3.435966666666667,2.33104,1.6727725,2.0171,2.0171,2.3941425,2.3941425,4.3529,6.08285,0.901404,3.918405,3.56626,3.274635,2.7482900000000003,1.346385,2.7769,4.182065,4.30661,1.8125,6.6938,5.3759,1.8310933333333335,1.3724125,3.941465,4.31844,3.556355,3.533705,4.139245,0.6824514285714286,3.9135333333333335,3.4979999999999998,2.751853333333333,2.93623,2.1110966666666666,3.7711666666666663,1.5117285714285715,1.5117285714285715,1.5117285714285715,3.05456,3.1453733333333336,3.3910666666666667,3.4776964761904763,2.36562,1.2530000000000001,3.3534333333333333,3.2052600000000004,1.4353142857142858,2.83717,2.6805133333333333,1.4292714285714285,2.83677,2.889393333333333,2.98371,2.7304633333333332,2.628903333333333,1.98405,3.245893333333333,4.981420666666667,4.496065,1.0396100000000001,1.582462,0.603951,3.6900666666666666,9.059625,3.06361,3.257565,3.4166333333333334,4.160116666666667,1.85816,7.726155,6.7785866666666665,2.7342833333333334,2.207028,3.90148,4.75547,1.5419180000000001,1.244364,1.328268,1.92788,11.364876666666667,2.7932666666666663,3.2092033333333334,3.0865696666666667,4.073885,2.2344399999999998,1.15662,5.1139,1.0909133333333334,3.3570530769230773,4.54081,2.96876,3.4282333333333335,3.209595,5.14765,1.1477766666666667,2.2680075,2.0684096666666667,2.0684096666666667,3.82173,5.84715,9.781662500000001,4.504895,3.39674,4.894895,1.7598425,2.2816433333333332,4.541595,3.91199,3.80111,1.5790783333333334,3.0414766666666666,3.534075,3.8034,2.554375,3.81314,3.589415,3.746525,3.973465,3.91204,3.78067,5.4454,3.3147366666666667,2.5236300000000003,4.48249,3.005925,3.810585,2.22956,2.49585,2.48272,5.95935,2.480045,3.215212556818182,1.6555075,2.48186,3.28984,2.298265,2.0167675,0.7213416666666667,0.7213416666666667,1.73614,3.7779675757575757,4.204415,2.8843566666666667,4.7083,3.1477025000000003,2.4866545714285713,0.97277,3.41464,1.643255,4.430665,4.056705,0.9506466666666666,1.858495,4.016985,2.8990575,1.5576375,1.5922133333333335,4.835125714285714,1.1195883333333334,2.782885,3.148515,2.77991,2.38099,2.706055,2.035745,0.97055,2.887595,2.99652,3.420235,1.3917866666666667,1.4871699999999999,1.899775,4.47503,2.31943,4.834645,4.675045,4.87861,6.17675,5.1582,4.169295,5.84853,4.083938571428571,0.7941827272727273,2.97475,4.551635,3.815765,0.49410000000000004,0.940342,2.88458,3.90207,4.814875,4.382375,3.3496760714285716,2.743985,4.79474,1.7955100000000002,2.65385,4.722775,4.4130400000000005,3.51358,2.944375,3.91675,4.75829,2.830075,5.60211,0.9282009999999999,3.38028,2.984255,4.644145,4.37906,4.58953,2.27208,2.38593,2.796915,1.8431466666666667,5.14825,3.796905,1.4340857142857144,3.13914,4.228642499999999,1.4269640000000001,5.8022100000000005,1.893684,2.5414333333333334,13.63767465699505,2.9364233333333334,1.4147533333333333,1.5197616666666667,2.0585566666666666,5.530173333333333,1.6402899999999998,5.635920666666666,0.6760346153846153,3.2143466666666662,4.11724,7.6979425,2.5,3.1550266666666666,3.1550266666666666,4.75146,4.32033,3.420225,3.35337,5.00015,5.21115,2.388095,3.3658333333333332,4.76274,1.1988266666666667,3.080246666666667,4.65305,4.18534,3.33312,2.4390633333333334,3.71807,3.41219,6.397153333333334,6.3183525000000005,0.7380760000000001,4.38959,3.24075,3.9244333333333334,4.165365,3.724555,3.830055,1.365622,5.19775,2.3196,2.67539,4.152525,4.309505,4.81661,0.8912528571428572,2.8199733333333334,9.506964333333334,1.5281716666666665,2.1962584415584416,2.31972,3.81053,3.443765,3.164465,0.6498036363636364,2.4336875,1.6775875,2.2552575,4.293465,5.341266666666666,2.78247,9.26361,2.644486666666667,2.70408,1.11742,4.554265,5.056,2.060035,5.620245000000001,2.737105,3.134705,5.49405,4.75595,4.891475,2.050015,1.55165,1.55165,2.58924,3.11388,5.0128625,1.5113325,6.033048333333333,1.5128166666666667,3.954075,1.3813199999999999,8.7364975,4.95332,2.759785,4.306655,4.023345,3.83785,1.0884833333333332,2.0828325,3.6169666666666664,2.9203266666666665,3.5239999999999996,3.5836333333333332,3.74799,2.787925,3.13212,3.271575,1.4691325,2.49886,1.8339833333333333,2.8541166666666666,1.8192633333333335,5.261782499999999,3.3991666666666664,1.7920933333333335,2.8614599999999997,3.21966,3.4816,6.4507,6.1971,2.98534,3.63784,3.104555,3.05362,2.939065,1.187,1.01369,6.525105,3.09463,5.4928,4.7273,6.6469,2.879505,2.9021600000000003,6.63305,2.49028,0.4310461111111111,5.7853,3.28061,3.92132,3.4577666666666667,1.453542857142857,4.343215,1.044936,4.613555,0.89731625,1.5587133333333334,3.0816466666666664,2.453466666666667,2.907714285714286,3.62911,4.907315,6.2479000000000005,6.2479000000000005,5.3332,5.3332,4.671175,3.2395266666666664,4.487395,1.04603375,6.2164,3.708985,3.777433333333333,3.97474,3.79921,5.01285,1.876545,4.79706,3.303528,2.905045,4.13565,2.852395,4.791805,5.25935,3.588055,3.37763,5.0719,3.91795,6.04895,2.858575,2.7889133333333334,6.08005,4.039815,2.7576966666666665,6.204298333333333,1.6033066666666667,2.1878625,4.90199,4.436795,5.06465,3.758225,2.0151575,2.0151575,13.66108382936508,12.4917,5.16085,3.12269,3.024278717948718,4.592735,4.804745,2.7340766666666667,3.357366666666667,3.30066,4.176200000000001,3.6028333333333333,5.0825,1.97512,8.312253333333333,2.36944,2.0281375,5.8633,2.300445,5.063,4.38016,4.83306,0.7523077777777778,3.353225,3.40801,0.8760600000000001,2.923915,4.3422925,1.417758,2.052043333333333,2.9040199999999996,2.7256966666666664,2.3605566666666666,3.1618733333333338,2.2907466666666667,0.49137,2.59256,2.986413333333333,2.774313333333333,3.2533266666666667,1.449864,3.1435099999999996,7.170253333333333,4.44612,2.3112266666666668,1.9807666666666668,2.5258533333333335,3.46685,2.357535,3.604085,18.344185,5.47115,3.518897,4.82445,3.67306,5.109775,1.2926,6.0406,1.606535,4.75334,4.885505,5.5589,5.08315,0.9846805789473685,6.6624,2.436495,4.935415,2.93819,4.39906,3.825675,2.73248,2.2105099999999998,1.537396,1.985005,4.645475,4.785035,2.02986,1.67345,3.25053,4.095663333333333,3.066046666666667,6.2004,2.0434725,3.47637,4.477375,4.70912,4.27135,3.503135,4.14118,5.21215,3.985445,2.7099966666666666,2.7099966666666666,5.527688888888889,2.0163866666666665,2.7886966666666666,4.06663,1.75585,7.428509999999999,3.562925,4.547206666666666,4.444733333333333,4.295145,1.882024,4.33849,5.5566,3.717845,2.0750475,3.7245,3.2306,1.3855425,1.6457675,1.2713133333333333,0.6829416666666667,1.74364,0.9690516666666666,4.521025,0.9922355555555556,2.6250233333333335,1.5816766666666666,1.834255,1.0794766666666666,1.8955675,2.28176,1.6656925,3.037603333333333,2.7183733333333335,4.949631666666667,1.5745983333333333,2.6293,3.127753333333333,2.8933233333333335,2.3170266666666666,4.214834166666666,4.641795,5.162155,19.498362333333333,2.71049,2.11972,0.6647684615384615,0.60298,4.290961666666666,1.955178,4.10716,5.1271,7.282286833333333,3.695925,3.62818,3.81531,3.320016666666667,3.31528,3.1765233333333334,4.017966666666667,3.526033333333333,6.6573,3.821685,0.939443,1.12961375,5.47985,3.1091366666666667,2.64772,2.1047533333333335,2.28972,5.8131,5.1823,2.273675,2.40392,3.227205,5.1006,8.64753,5.246086249999999,4.34542,4.26988,5.37885,4.758125,4.56442,4.94825,3.904405,5.50355,1.571725,5.7708,1.636242857142857,5.1642,0.75758,5.1183,5.6965,6.20475,6.23375,4.803305,5.89245,6.16285,6.68081,2.0823,1.5942714285714286,5.6845,4.095285,7.270583333333333,5.14865,5.499675833333333,5.2004,6.47725,1.3782142857142858,4.60644,5.44745,4.237466666666667,4.91113,5.5817,2.732275,3.89508,3.05049,4.670765,1.0021166666666665,1.6386399999999999,1.42984,4.973905,4.033455,3.363785,2.3079266666666665,3.006816666666667,1.5803333333333331,2.1622066666666666,0.3701125,3.6986666666666665,1.722088,2.3457233333333334,3.09911,2.4743999999999997,3.1860933333333334,2.720775,2.544625,10.429010666666667,3.8908,1.826000641025641,3.650355,0.9458636363636365,4.6180062500000005,1.12057,1.921055,1.9250175,1.05137125,5.7907459999999995,1.1967358333333333,1.1967358333333333,1.1967358333333333,2.9704200000000003,1.933672,5.17975,3.2046,1.3275,1.4415425,2.200135,1.360575,2.1843399999999997,5.519674999999999,0.8565366666666666,4.380455,4.479585,3.2275533333333333,1.0092114285714284,2.095468,1.98057,1.98057,1.5667066666666667,3.7605166666666667,4.760935,5.65565,5.71605,4.46625,5.38775,2.955493333333333,1.991565,3.104095,5.2628,3.29982,4.250415,1.0117875,3.8587695833333333,5.06965,1.842345,4.115185,3.1437066666666666,4.873715,4.84414,2.63969,7.11845,6.34985,4.20221,4.652255,4.215125,3.183535,7.627,3.932435,5.4178983333333335,3.333435,2.6892533333333333,5.19315,2.6189433333333336,5.832,4.54556,2.6856533333333332,3.15697,3.90949,1.4086966666666667,10.73767,3.90398,3.154095,15.735932936507936,4.541335,1.6710133333333335,2.9394233333333335,1.998885,2.32648,4.18146,2.5467634722222225,3.20357,3.10936,2.867315,4.1246,6.22969,1.2575533333333333,2.1058725,4.23699,4.41564,5.1269,2.4406525,0.591462,4.788175,4.18609,2.09713,1.3738849999999998,4.54108,4.81048,0.9645466666666667,3.782735,12.700455,1.3180812857142858,0.39631428571428573,3.6526666666666667,4.644915,1.1005344444444445,3.957835,4.276105,6.479945000000001,1.289495,3.279365,4.08855,3.36381,4.58468,4.60886,4.381255,8.287065,2.915935,4.53198,5.72455,16.096092499999997,3.404665,2.901225,1.1504225,2.201705,1.2274075,2.2271325,1.2854375,1.964575,1.58873,1.99014,2.4154525,2.3544,2.2011425,5.5982,4.551995,6.0432,3.0343,5.735556666666667,2.8589866666666666,4.9699,3.4967,1.2871875,3.64799,1.9976725,2.65416,4.86893,5.08265,5.01305,4.79411,3.5564666666666667,3.8016,2.34422,3.52407,3.69829,2.26071,1.83459,3.702733333333333,4.658855,3.841895,2.44601,12.786003333333333,0.7481333333333333,2.60591,5.149,2.5710360000000003,1.035752,2.85259,7.479986666666667,7.307544999999999,4.512705,4.054905,4.35596,2.1589325,2.400085,2.911374666666667,2.088296666666667,3.9107966666666667,5.36325,4.304085,0.48723533333333335,6.4358,3.4454333333333333,3.482666666666667,3.6024,6.2817,9.54081375,4.811615,1.03565375,2.184045,2.19546,3.46861,2.536765,4.11415,4.671145,3.7635666666666663,2.795363333333333,4.1303,4.34182,3.758795,4.388233333333333,1.7972833333333333,3.64152,5.192,5.733,3.309673333333333,2.3758,2.192126666666667,15.096986847319348,0.5509481818181818,1.4562425,1.4562425,2.236083333333333,5.09131,4.040165,4.66895,3.373635,2.86085,4.84667,3.0719766666666666,4.06434,3.0719766666666666,3.38978,1.9004066666666668,1.7290400000000001,6.1332,2.755125,4.87887,3.25219,2.59615,6.752373333333333,1.9822766666666667,4.90078,5.4385,3.41437,3.41738,5.0754,2.0649,5.07975,3.51795,7.538705,5.642720000000001,2.809075,4.0985,4.862925,2.03515,2.926323333333333,3.610466666666667,0.4794107142857143,3.3369,10.01172,4.307605,3.765575,5.18685,3.2561808333333335,3.030555,1.3037442857142858,4.14438,5.29745,3.29198,2.35064,4.721375,4.03891,4.432565,4.39262,2.9305,2.9305,4.094565,2.80539,2.7164829545454547,2.050945,5.0177,3.994845,1.0339557142857143,3.68654,5.2421,2.937326666666667,7.2080425,7.65543,1.480402,4.1407,5.0519,6.9919340000000005,0.7602070000000001,7.7631266666666665,3.7180041666666663,0.6108154545454545,5.4804,5.33145,5.0277,4.734305,4.6991,4.526745,4.99806,3.847375,4.232455,4.528065,5.4959,4.833225,4.82595,3.744455,2.756185,4.02913,2.809315,1.00492,4.67611,2.339095,1.72526,4.56923,4.560235,5.96855,1.0425614285714286,4.996813333333334,3.0273,2.6658399999999998,1.7086475,1.2835266666666667,11.711496666666665,2.395026666666667,3.10521,2.0061166666666668,3.6918776190476192,5.4469899999999996,6.087673333333333,2.59042,2.0529800000000002,2.1498999999999997,2.1498999999999997,2.1498999999999997,1.3902400000000001,4.100145,3.97406,3.576345,4.58828,7.90388,4.215075,1.126694,2.19759,3.03139,2.565235,1.8766580000000002,3.931365,3.0385,1.2886733333333333,3.12885,5.245080714285715,6.0456175000000005,3.965195,4.089155,3.2791099999999997,5.3889,4.75519,5.3940133333333335,1.8278075,1.8278075,4.294075,3.747285,2.540818,2.540818,4.05127,1.2643042857142857,5.1791,3.12804,4.281535,4.05919,4.228915,3.400233333333333,1.09409,4.47011,5.2335,4.31795,5.0051,4.86449,4.88479,4.61172,2.035285,1.447535,3.44972,3.726265,3.148635,4.177805,2.145905,2.7273175,5.5242,2.84109,4.804215,7.632465,2.2951258333333335,2.9937899999999997,4.416182380952381,5.175404166666667,1.73124,2.0345492857142857,0.988245,2.0345492857142857,1.8596333333333332,1.8596333333333332,1.51024,4.95083,3.05995,3.95169,2.267085,3.583665,1.5309416666666669,5.4017,3.11809,1.621295,2.9954966666666665,3.6342,4.08544,6.709167,4.73145,1.457686,0.8610366666666667,3.556485,7.097956666666667,2.4322933333333334,3.456455,3.627405,3.627405,2.295875,3.376175,3.05667,1.4463566233766234,3.2248433333333337,3.521755,2.995725,4.466295,4.0056325,1.573805,3.28883,4.487045,4.89205,5.151,4.33236,1.7999975,2.13204,1.2664233333333332,2.32862,3.502245,1.896505,4.61602,3.2440466666666663,3.57324,4.168635,5.18425,1.87744,0.966028,1.8450866666666668,1.2402475,1.2087666666666665,4.88099,3.986565,1.12759,0.2512573913043478,0.2512573913043478,0.2512573913043478,3.68534,5.790718333333333,4.771335,5.32785,5.3011,5.59565,4.719985,4.317095,2.720845,3.74455,1.6656325,4.87142,4.2887,3.813905,4.413695,4.35877,0.7290263636363636,0.7290263636363636,0.7290263636363636,0.7290263636363636,0.8682460000000001,0.8682460000000001,4.326805,4.03741,3.87092,2.924825,2.502345,6.14885,5.1167,5.8862,4.24818,3.0692166666666663,2.5360566666666666,10.246,1.69842,1.69842,3.911665,5.5097,3.2998233333333338,0.46219625,0.46219625,0.46219625,0.46219625,0.46219625,0.46219625,4.806943333333333,5.31595,3.522565,4.57741,2.750985,2.750985,2.676875,3.3181216666666664,2.5283633333333335,2.847645,3.68063,7.098379666666666,1.365688,4.48078,3.735225,4.02104,9.856458333333334,2.4140900000000003,2.7611,0.9845357142857143,2.00838,5.32,3.023695,0.9351125,2.894973333333333,4.35369,5.62865,2.746325,4.849071944444445,0.8519244444444445,2.2055166666666666,5.0329,4.793575,2.9632875,2.6226766666666665,2.1772133333333334,1.4236933333333335,7.075115,3.4354,1.99791,3.07362,2.635335,3.55253,4.074245,2.7688333333333333,3.300406666666667,6.0522,1.4253383333333334,4.46823,5.1699,3.421145,3.937275,2.0293966666666665,2.932545,3.72934,4.2361,2.759925,4.81602,4.470465,2.9361833333333336,1.8537837499999998,3.0062933333333333,2.9101866666666667,2.87505,0.8008254545454545,2.1878975,8.1128175,0.440445625,3.1794700000000002,1.373,2.5379866666666664,3.3632333333333335,2.8943999999999996,1.2591444444444444,1.7407540000000001,2.66662,2.11742,3.63647,2.0198,2.884513333333333,1.5183200000000001,3.301666,1.98558,1.1097114285714285,3.0008966666666663,2.1203675,2.31652,2.713926666666667,3.112223333333333,3.4159666666666664,3.5371333333333332,3.13823,2.8779233333333334,3.3996,2.859806666666667,2.746375,1.8903166666666669,2.3140133333333335,2.6690966666666665,1.54919,3.3102133333333335,3.8038614285714285,2.9349266666666662,2.6733,2.94042,3.7378,4.88372,3.114323333333333,1.8923257142857142,1.8923257142857142,2.587725,1.0894175,2.563975,3.4456249999999997,4.69174,2.771575,2.1451275,2.165195,2.1052775,3.67126,3.02398,3.746135,3.75732,1.7863525,2.6307466666666666,4.290805,1.081602,1.081602,2.137935,0.6219523076923077,2.4489111538461543,1.62117,1.62117,2.7574533333333338,2.4896433333333334,3.584633333333333,2.586926666666667,2.1125925,5.706033333333334,3.7854475,3.7854475,3.60222,2.97336,2.176325,2.780395,2.35119,2.70038,4.9415125,0.45761416666666666,0.650084,4.089395,2.00713,3.09845,6.450993333333333,3.875485,1.603454,5.215276666666666,4.603355,4.19756,4.33601,5.40305,4.83072,13.835609999999999,3.865975,1.65106,2.800985,3.669565,4.999455,2.95066,4.03212,4.326055,3.663025,4.6727,2.7933766666666666,2.900185,2.756683333333333,2.4651466666666666,2.4651466666666666,3.995885,3.29284,3.093455,3.448295,2.267875,2.46231,2.20474,1.85436,1.9671275,2.2682725,1.673615,3.5537395,3.234575,2.43655,7.056252499999999,3.17427,2.3125666666666667,2.068233333333333,3.284605,3.74298,3.650825,3.2614297916666666,3.41455,3.20706,4.251155,3.559605,3.694725,3.928135,3.332731,3.40315,0.6244666666666666,0.6244666666666666,0.6244666666666666,3.475255,2.40883,5.8041,2.435855,3.648525,7.2332366666666665,2.8784533333333333,0.3648688461538461,5.4845,0.752252,4.220784285714286,1.833365,3.76214,1.83992,4.23856,5.442423333333333,4.47549,4.18567,2.7705033333333335,2.9927833333333336,1.5236566666666667,2.843393333333333,0.39399999999999996,0.5461705882352942,2.76117,1.3465066666666667,1.93183,3.75608,2.944135,4.902,2.892,3.0714266666666665,3.420565,5.28738,1.7865875,0.8746457142857142,2.167585,3.7819199999999995,1.2890894805194806,4.807045,3.837125,3.76234,2.74123,4.14169,2.59559,2.5865633333333333,2.6002733333333334,2.4375425,2.7671966666666665,2.2302025,3.12914,2.5540766666666666,5.594226,2.501125,1.9495033333333334,2.105863333333333,5.1936686666666665,3.1829579999999997,3.1829579999999997,2.4822433333333334,3.97296,2.369555,3.586545,2.935225,0.5733546666666667,4.284695,1.9767075,12.092485555555555,7.08114,2.97068,3.248435,3.28364,4.52208,2.7076,3.4165,0.26361066666666666,2.06782,3.486666666666667,0.8403,3.81605,1.3582814285714286,4.96303,3.298045,3.210935,3.8621,3.72931,2.268995,4.522755,3.700935,3.70872,6.67218,4.425615,2.89606,3.1805266666666667,1.601388,1.87674,4.228415,3.762365,3.8402950000000002,2.598745,3.509645,1.523096,3.2951,3.27261,3.972305,11.100483333333333,3.58621,5.362036666666667,3.96236,4.41176,1.0658944444444445,5.216514,4.89929,2.5333200000000002,2.8016166666666664,2.7689233333333334,3.6941,2.3901533333333336,1.6025,2.0946533333333335,3.677285,1.6688079999999998,2.85304,5.3997253333333335,2.9237566666666663,1.0622967857142858,1.0622967857142858,3.651935,2.952643,2.952643,3.4869333333333334,2.82996,3.2831476923076925,3.8645666666666667,3.5940999999999996,2.6784,2.338016666666667,2.401483333333333,3.08559,2.214925,2.33312,1.6025379999999998,5.750743,9.186870833333334,0.5068592307692308,0.5068592307692308,0.5068592307692308,0.605631958041958,0.605631958041958,0.5068592307692308,2.9572800000000004,2.9547066666666666,4.008958333333333,1.343075,1.76727,3.229588,2.3911533333333335,3.1217400000000004,2.3928933333333333,3.024226666666667,3.539566666666667,6.673986666666666,2.9722933333333335,2.47482,3.0250166666666662,4.70398,2.53559,3.4012,5.69426,2.3552166666666667,3.2950233333333334,1.4086716666666668,1.4086716666666668,3.0025633333333333,0.5310526315789473,2.4549966666666667,2.609786666666667,2.8861600000000003,3.2470433333333335,2.265406666666667,1.5818899999999998,2.738296666666667,2.802796666666667,2.27389,4.48551,2.5083766666666665,3.474275,2.43327,3.461265,0.5582480000000001,7.2688733333333335,3.08369,3.08369,7.862308333333333,1.7753433333333335,1.82076,3.017663333333333,4.74552,2.3294966666666665,1.9932966666666667,2.684616666666667,1.39402,3.6359333333333335,1.8405699999999998,2.9775405,1.3749075,0.2610127272727273,0.2610127272727273,5.0639,3.90536,3.49311,2.97537,2.65685,3.31041,1.23692,5.7809,3.78686,2.856195,1.80514,1.1649375,2.27482,3.017663333333333,2.824365,1.99713,5.85439,3.80482,4.27189,3.988715,2.382185,0.6809883333333334,7.096795,2.0388525,1.5814775,3.607165,4.399875,2.096065,1.7750333333333332,4.92,4.301885,3.33132,3.31682,4.559965,4.309695,3.4250333333333334,2.514398,2.514398,4.33635,4.886205,5.704,6.64814,2.7771066666666666,3.969555,1.5599142857142856,2.496685,5.607192666666667,3.729395,1.843526,5.4373,3.5044625,3.625595,2.10963,4.250265,4.714415,4.744695,4.68733,2.5032033333333334,2.49899,3.699033333333333,2.0700966666666667,2.70405,2.6550133333333332,2.42335,0.8229749999999999,2.14946,2.90029,2.176728333333333,4.84337,4.560255,4.832465,3.735525,3.57721,4.8145975,12.268180000000001,4.86844,3.880245,4.284285,4.03954,4.628885,2.5524066666666667,3.365398,3.657033333333333,1.23628,2.830705,2.730265,4.714705,5.5427,4.45075,3.5606000000000004,3.0617099999999997,2.4006066666666666,4.350533333333334,4.2446775,3.762866666666667,4.2446775,2.20442925,2.2822033333333334,2.4080916666666665,2.183345,2.83071,1.77747,0.75507,1.4355916666666666,1.9894433333333332,1.9510966666666667,1.5679766666666666,1.3059666666666667,1.6407466666666668,2.9199133333333336,1.5106,3.0010866666666662,1.2971166666666667,1.5424333333333333,2.702895,4.211366666666667,2.510013333333333,2.43322,2.35885,3.11475,2.144765,2.7802100000000003,3.1681266666666663,2.5822833333333333,3.043756666666667,2.9769175,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,0.16311161290322582,5.26415,2.943825,1.0264971428571428,3.050026666666667,2.6416866666666667,2.8346066666666663,3.587515,3.5000666666666667,4.60258,3.641318,1.673394,3.0204066666666667,1.8550333333333333,0.964945,0.953425,1.7047166666666669,0.8613983333333333,0.7913441666666667,1.2342359999999999,3.20871,1.55556,1.5706499999999999,2.0016694444444445,2.4523583333333336,1.5957433333333333,1.2313533333333333,1.6029416666666665,0.93246,1.238925,0.728885,0.908126,3.13477,3.54532,4.24288,4.501775,4.170375,3.0862700000000003,4.91573,3.6857333333333333,2.0843425,3.4373,2.0492825,3.49525,2.4137666666666666,0.8816390909090909,4.318175,5.10405,1.96968,1.3238175,2.86925,3.299535,3.7605166666666667,2.953193333333333,2.46284,0.9057875,2.32529,5.1223475,3.72376,2.396845,1.51786,3.705165,1.977285,0.5893881818181819,4.35906,4.415495,4.352815,2.754695,1.458006,3.61168,4.353335,2.5972166666666667,2.5236033333333334,2.508453333333333,2.57807,2.7303033333333335,2.7537066666666665,3.04374,1.2930375,2.713375,2.65998,4.88835,4.407385,3.63761,4.665995,16.493102470959595,4.70824,4.6224213333333335,2.892575,4.48125,5.19255,1.56843,2.0559025,2.4503333333333335,6.0656325,4.05592,3.384295,6.5662,2.4503333333333335,3.87333,2.07318,2.3340033333333334,2.929403333333333,2.7572833333333335,1.4260183333333334,4.39397,4.01703,2.5168,4.2178,2.66652,3.2908733333333333,3.627425,3.498855,4.790575,4.036625,2.651705,3.419105,2.5908,2.593856666666667,1.19255,1.19255,3.458833333333333,2.779443333333333,0.3897035714285714,4.845368,0.9601200000000001,2.78208,3.83935,0.5524266666666667,4.909005,8.318165,1.8410875,3.55711,3.5024,2.553,3.14532,2.198615,3.14251,3.55398,4.173245,3.017475,3.9004666666666665,1.0020916666666666,11.516375666666667,2.78406,2.983515,6.03225,2.545535,3.875815,7.8644,4.225,4.19636,3.400375,4.28717,5.844965,1.57991,2.8105433333333334,4.670325,3.848333333333333,2.01424,3.80145,3.85553,3.586445,3.948915,4.340285,3.899215,2.4551366666666667,4.37498,3.707975,5.229,3.209675,2.1656066666666667,2.3858099999999998,1.9942166666666665,3.0437100000000004,1.3167233333333332,3.7697000000000003,0.8966718181818183,3.311783333333333,3.345666666666667,2.6748999999999996,1.53606,4.380445,4.216235,4.16826,1.7170825,4.770575,3.83841,0.7127231794871796,0.33351384615384616,4.20478,5.6683,1.01899375,0.33351384615384616,4.86158,0.7127231794871796,0.7127231794871796,0.33351384615384616,5.929786666666667,2.5308466666666667,2.4553533333333335,5.69745,3.570165,3.126115,0.7871177777777778,3.210205,3.47369,4.735045,5.7719,2.13909,0.7469992307692308,4.5302475,2.2529266666666667,1.304352,2.0898775,1.0706742857142857,2.463076666666667,2.2637233333333335,3.639295,5.2572,2.8778400000000004,3.29259,2.88241,2.299983333333333,2.929315,4.55724,1.7332525,1.9968775,3.921725,5.2038,2.2544929166666665,4.92295,2.56661,4.129105,4.005095,2.69772,1.20129,3.06667,6.736,4.007115,3.36843,5.4263,6.3864,2.298875,3.24209,4.49706,2.92136,3.281735,8.13167,3.71569,4.5460325,2.118915,1.0741025,2.62475,2.026635,2.18658,1.85336,4.398705,0.6960957142857144,3.20461,4.180105,1.8500433333333335,2.96973,5.2548,3.05235,2.91031,4.41922,5.30475,9.386359833333334,2.6197,2.68163,1.6236979999999999,1.5860916666666667,1.2361633333333333,1.5005933333333334,2.832463333333333,2.58772,2.74483,4.323577564102564,1.524785,2.595666666666667,5.2862,5.47305,3.83532,3.39136,3.030255,2.511995,2.085305,1.995425,1.9236666666666666,1.968455,3.047275,3.776575,4.910575,5.14295,4.162505,5.633748333333333,3.245725,2.587335,6.5590225,3.2637,8.778295,4.917145,4.917145,5.594406666666666,1.63386,1.3609275,1.3134933333333334,0.711266,5.29795,3.856666666666667,3.3228999999999997,3.3228999999999997,2.28656,4.712175,4.445075,4.582335,4.12395,3.0072766666666664,2.65955,3.643665,3.05964,5.283933333333334,3.55961,0.8331454545454545,5.2388,5.25875,3.948135,5.0251,3.521155,6.2706,4.357825,0.8616461538461538,5.42,7.4402333333333335,3.18979,5.8011,5.84275,3.381615,2.584125,3.69118,6.1056,2.1225425,5.9758,1.867775,4.70307,2.6277466666666665,2.529725,0.9282009999999999,3.29196,6.0755,3.381745,3.915385,2.0511066666666666,5.02465,8.072343333333334,3.59589,4.34712,2.369815,3.117885,0.851456,4.85833,1.6281833333333333,3.4531691666666666,3.4531691666666666,3.450795,2.2815166666666666,3.0580533333333335,3.929815,1.9350875,3.0507066666666667,3.4024,3.2542333333333335,2.727035,3.96856,3.24815,1.85216,3.3608,2.19001,3.181486666666667,1.9757233333333335,3.130656666666667,3.3370333333333337,1.4795571428571428,1.6719733333333335,0.47592999999999996,1.2978316666666667,0.47592999999999996,0.47592999999999996,1.6719733333333335,0.47592999999999996,3.4807666666666663,2.4737859999999996,2.4737859999999996,3.064386666666667,4.32355,3.83465,4.3867,5.39795,5.547,3.292075,4.19726,4.318605,2.0994375,2.4967148333333333,2.5094333333333334,0.85826,5.667,3.2940133333333335,3.183806666666667,5.70105,3.8454949999999997,5.11645,3.259235,2.578726666666667,2.992565,3.284335,2.6221733333333335,2.6567766666666666,2.04706,5.4727,0.8683688888888889,3.938765,1.19543,3.577525,3.4559333333333337,2.9454333333333333,4.107095,4.04702,3.96953,4.650675,4.12562,3.895935,4.563445,3.994195,2.607975,2.79065,3.28915,4.07662,2.67277,3.374335,2.632115,2.98105,3.3303100000000003,3.563415,4.707275,4.95051,3.966865,69.25461013189587,2.7835883333333333,4.130915,16.450173333333332,3.87345,3.17995,2.18382,1.8351,2.7746333333333335,4.654625,3.0973466666666667,4.2877841666666665,5.63325,3.29624,7.942213333333333,5.52015,2.652775,3.259385,3.865555,3.424945,1.8748539999999998,1.135495,4.476585,2.53661,5.9343916666666665,3.688355,2.193783333333333,3.336675,4.16913,4.46297,3.16175,5.533335,4.43536,3.746505,2.863895,2.5051,2.850105,5.99955,3.4381,3.411235,4.3356216666666665,1.1737633333333333,2.77203,5.2905999999999995,4.29703,3.159865,3.5987,3.07632,4.16447,3.198855,3.151215,3.053475,4.11458,2.992385,2.820135,4.42956,9.27162,3.1616733333333333,4.054635,6.46466,2.865155,2.49462,3.9472906250000004,2.21092,2.8520233333333334,2.867544,3.26646,3.362305,2.974735,3.15015,3.39967,4.113515,3.859745,4.162955,3.787125,3.42657,3.715885,2.8182133333333335,2.8182133333333335,6.887849999999999,2.126765,3.306145,3.273875,2.419265,4.88021,4.09735,3.108075,3.567805,5.6178,6.512062500000001,0.6720772727272727,4.62494,2.22103,2.782413333333333,2.53754,5.2319,2.7012866666666664,1.9735,1.13704125,2.0169101515151517,4.19273,5.2972,4.184135,6.05095,5.5702,5.89475,2.477805,1.8750900000000001,3.74526,2.81348,2.9070933333333335,1.9872666666666667,1.3668783333333332,3.0519200000000004,3.11196,1.646144,2.5749766666666667,2.4285897142857142,3.446855659340659,2.619145,5.18345,3.19533,1.3862875,3.226215,3.453215,6.0283,5.13955,5.8507,4.88945,1.8990566666666666,1.4276533333333334,0.5923771428571428,1.5089833333333333,3.55364,2.446385,3.6246683333333336,1.4301233333333334,2.36738,2.24721,3.2669,3.511745,3.80861,4.155856666666667,1.6334025,1.4135125,1.888845,2.0253375,1.4108575,2.522475,7.276026916666667,4.91109,3.539465,2.91817,6.91604,4.652465,3.09802,3.00791,3.27288,2.561475,3.66752,2.287333333333333,7.18473,0.8757316666666667,2.995785,6.80655,3.88798,4.736355,6.3246,1.5179166666666666,3.1952599999999998,2.97275,2.8691033333333333,1.5161425,4.06198,8.43829,3.42707,5.41075,3.9032,3.056415,4.84876,0.91003,2.773426666666667,5.55065,6.53412,5.3625,5.86305,2.89628,3.8318999999999996,2.6117066666666666,5.32045,4.988285,3.7384846904761906,3.7384846904761906,0.6040928571428571,3.5462333333333333,0.887236,0.7565283333333334,1.81468,3.8198666666666665,3.65156,5.160002857142857,2.33358,3.444374857142857,3.112709523809524,2.867703333333333,3.007756666666667,4.6043,3.4625666666666666,1.811135,1.811135,4.171395,2.97498,2.6420833333333333,3.6475,3.549633333333333,0.5410333333333334,3.3956,2.74855,2.568236666666667,2.863246666666667,2.6764,2.6085233333333333,3.3613666666666666,3.0696033333333332,0.811443,2.8770933333333333,6.387923904761905,2.15212,7.400885833333334,1.5739420000000002,1.5739420000000002,3.5314223333333334,3.570733333333333,3.404,3.0078366666666665,1.76018,1.3652628571428571,3.2005433333333335,3.5157666666666665,1.5470766666666667,1.6043285714285713,2.7717500000000004,2.6854560000000003,2.74358,1.728145,1.92805,2.91242,2.00055,2.6992,3.14453,1.64129,3.55765,3.126465,7.021855,3.45856,1.6403,2.988805,2.582545,2.14816,4.011225,2.40058,2.659855,7.34233,0.8254923076923077,0.7940766666666667,4.67581,1.481042,1.481042,3.9243,2.4770125,4.68624,3.213265,1.3105466666666665,2.2432673333333333,2.862856666666667,2.302174,5.3509,4.810985,2.642576666666667,2.21943,1.3908528571428573,1.3908528571428573,2.6808866666666664,3.8747,4.051666666666667,5.8347,3.1604733333333335,4.848375,4.30606,6.4787,4.609305,2.444,2.7634866666666666,2.6208266666666664,2.675803333333333,0.7204944444444444,0.7204944444444444,0.7204944444444444,3.330785,4.15612,3.815055,0.9866275,0.9866275,4.79813,5.7168,6.60039,22.141763944444445,10.5291,7.88473,3.161475,5.70815,2.3848675,4.43747,2.5358266666666665,3.2771000000000003,4.044566666666666,5.307195333333333,2.014285,2.250835,6.41258,2.15748,2.15748,6.2536,3.104115,3.99907,2.279085,4.9119335,4.586455,3.72824,5.24285,3.64807,1.8133233333333332,5.82655,9.29876,1.8133233333333332,2.279085,2.16671,0.7518119999999999,0.7518119999999999,1.797386,2.2892733333333335,1.797386,4.68636,5.3649,6.06035,8.64739,2.279085,11.666976833333333,5.87915,5.5421,2.3848675,3.2986,4.36403,8.27076,3.0030525,3.945485,5.90245,3.48096,4.68707,6.01075,4.48389,5.03675,5.0196,2.74996,5.25315,3.57542,4.78971,4.47185,0.78234125,1.5141339999999999,2.980915,5.403,4.483705,2.9237566666666663,2.238495,4.2567,4.78355,5.79425,5.3146,5.1,4.24564,4.057315,4.170125,3.66889,2.0428,4.90665,2.04326,2.623105,3.42344,1.45142,3.909585,4.07326,3.61496,3.8280683333333334,3.071305,6.7732616666666665,0.9787522222222224,3.402205,2.183975,1.2276471428571427,5.282839,1.522365,1.6469333333333334,2.7494899999999998,2.863217,3.0056266666666667,2.8000066666666665,1.889095,0.7474445454545454,2.16799,2.564085,3.48825,0.7467246153846154,6.534515,1.7438099999999999,1.17797,3.406966666666667,1.17797,3.996605,0.9721454545454545,4.39078,3.2913366666666666,1.843985,5.008131,4.668635999999999,4.668635999999999,4.904885,2.516675,3.0543716666666665,2.88457,1.449864,3.646545,3.724455,1.9746499999999998,0.7049558333333333,7.135299615384616,2.68802,3.914455,4.20553,7.60072,2.2883025,4.159955,3.693985,3.039845,3.634525,5.6412,6.3566775,4.50859,4.828425,5.3882,3.00886,5.02825,4.37631,4.528425,1.1131777777777776,0.4602378571428571,3.125885,3.5046,2.8968000000000003,5.53,3.70584,4.230615,4.45947,5.281,4.48864,4.3473,1.20381,2.31959,8.715489999999999,2.2574866666666664,1.9109333333333334,4.428129523809524,11.589835515873016,1.5630925,5.2246,6.4815,5.1093,3.5576000000000003,2.3743633333333336,3.3278433333333335,4.2842,1.0739916666666667,3.0268866666666665,3.553045,0.36725157894736843,2.2099166666666665,4.70982,4.202845,2.17521,4.284135,2.83426,4.851045,1.2609633333333334,0.5451790909090909,3.590081666666667,1.2365585714285714,1.05035875,1.05035875,1.05035875,1.05035875,1.6708333333333334,2.8658966666666665,1.8427300000000002,3.479433333333333,5.44525,3.6056666666666666,5.42595,3.84725,4.2229,3.455255,3.80858,1.3895099999999998,6.7353000000000005,2.27117,4.73273,5.342356666666666,5.3306,5.163900833333333,2.2839033333333334,2.6260333333333334,2.5788699999999998,3.18907,1.1847866666666667,4.370265,2.5826100000000003,5.0984,2.97913,2.3753966666666666,3.65625,3.2656,2.858325,2.4439566666666668,2.7159866666666663,1.430675,0.40275777777777777,4.31793,3.607635,4.125575,3.668715,3.949855,5.72925,4.650515,0.5335807692307692,3.255824,7.462977333333333,2.024573333333333,2.18258,5.795856666666666,4.850195,2.8781266666666667,4.83986,5.29315,4.28846,3.958475,4.27644,5.6239,5.6691,5.3524,3.612565,5.297475,1.531042,1.6283533333333333,4.251385,4.16942,3.97649,3.27606,5.583,4.8465,3.78555,3.366905,16.042441605156704,1.2338177461209203,1.11799875,1.8502851136363634,0.48710125,0.4532966666666667,1.4011875,0.31964117647058826,1.228162,2.9296399999999996,1.6077380000000001,0.9049333333333333,1.0732620833333333,0.4988708333333333,1.0732620833333333,1.0732620833333333,0.4988708333333333,0.8390230769230769,0.5798407142857143,2.57011,2.9979433333333336,4.96989,3.77599,2.76319,2.8212,4.335135,5.2294,5.2091,2.66594,4.521,0.7059821428571428,2.3364893333333336,8.00715,4.284685,6.584178333333334,2.675105,4.48345,2.303295,5.40345,5.541,3.43632,4.18435,3.41455,1.0539966666666667,4.33986,4.83926,1.304546,1.335564,1.6085283333333333,2.27195,2.1429266666666664,5.66235,5.8152,2.2822825,2.2822825,3.5524505555555557,6.57235,2.057656666666667,0.6582918181818181,0.7758485714285713,2.2891766666666666,3.5896333333333335,0.9912142857142857,0.9912142857142857,0.9912142857142857,0.37571692307692306,1.060987142857143,3.01335,6.1011,3.8905666666666665,4.262405,5.2727,1.03186,3.6182,3.30568,3.986,5.75235,2.648843333333333,7.508583333333333,5.0241,1.1362444444444444,3.9166333333333334,1.959714,2.61397,2.38288,7.081166666666666,3.4050666666666665,4.38835,2.4565375,4.693235,4.569685,5.26875,0.5168377777777777,2.153216666666667,1.34823,2.612556666666667,3.79637,1.9726133333333333,2.71573,2.6172,2.504706666666667,2.5836633333333334,2.9080133333333333,2.8379833333333333,3.0771433333333333,1.3944,2.2218266666666664,1.8877733333333333,3.1009933333333333,2.47438,2.069495,1.7689866666666667,1.8200399999999999,1.6306125,2.992085,2.1628666666666665,2.103543333333333,2.14152,2.3230133333333334,2.3588566666666666,0.8127266666666667,0.8127266666666667,0.8127266666666667,2.4143333333333334,2.03985,2.9765766666666664,2.2127233333333334,2.5151833333333333,1.8429900000000001,3.79188,3.2220416666666667,1.2612383333333332,2.4055566666666666,2.7495166666666666,3.483153333333333,1.6344571428571428,7.1758516666666665,4.37322,3.090365,4.1151,3.354785,1.62518,0.8319357142857143,3.024965,3.77676,3.483153333333333,4.504595,4.370125,4.61253,2.9231433333333334,4.21846,4.335485,0.998638,2.64525,3.276,4.958381666666666,4.69498,3.482965,3.386965,2.41666,2.283943333333333,2.2864833333333334,0.6282025,5.366077083333334,2.788725,4.03526,2.7102500000000003,3.777445,3.6552000000000002,2.3820200000000002,3.093274,3.093274,2.56049,2.0720466666666666,2.64642,2.023746666666667,4.30031,1.4261979999999999,2.516385,3.766735,4.062125,4.051525,5.43735,3.98687,2.590825,1.96297,3.17005,3.030415,2.744105,5.34445,2.713775,1.1561800000000002,1.1561800000000002,4.740625,3.688435,0.9427899999999999,4.490195,0.9427899999999999,3.955445,4.64936,4.831705,3.14502,3.14836,6.25751,4.190705833333333,5.83995,0.86465,0.86465,2.16444,4.646615,1.569165,3.07745,3.35553,1.104652857142857,4.078475,4.146495,6.08345,6.08345,1.106035,5.6206,5.52545,5.07425,6.19485,2.0287525,2.0287525,7.09595,0.9574272727272728,7.28895,1.9872825,6.6768075,2.526365,2.4480333333333335,3.23994,2.46284,2.067343333333333,2.353826666666667,3.0617099999999997,2.4860361904761903,6.2959439999999995,1.794832,5.08375,3.08887,2.692823333333333,1.81294,2.072445,3.278995,3.20176,3.29372,2.75801,2.191305,2.110285,2.452885,1.079526,3.495925,2.72896,3.01605,2.1035585,2.1035585,2.9438,1.9395133333333332,3.73312,3.37693,4.968095,7.065143333333333,3.95059,3.36253,6.6136575,2.0738766666666666,3.28244,2.16904,1.5517571428571428,1.6766,4.30046,1.5658516666666669,0.490348125,0.6434266666666667,4.57175,4.88684,2.920405,0.9781444444444445,2.826765,3.0128500000000003,4.967745,1.846402,2.00641,1.1722777777777778,4.77216,2.45034,4.62252,0.810835,4.1814841666666664,4.159335,3.71029,4.492315,3.46096,3.75578,2.93192,5.4682,3.357035,1.9074799999999998,2.762923333333333,6.286901666666667,6.13665,0.6923,3.703955,4.828595,5.4208,3.822366666666667,3.8038333333333334,2.812975,3.2685099999999996,3.8792333333333335,6.8505674999999995,2.6854560000000003,2.6479955,4.27335,2.92011,2.26698,2.58395,8.27692,4.783195,1.9204333333333334,4.93355,4.71975,1.76402,3.8913,1.3641875,1.4273414285714288,4.431005,3.923775,4.9755,2.6957133333333334,3.274255,2.97399,4.141005,3.923165,3.511615,3.3983,3.97052,4.28709,4.094355,1.1754436923076923,1.1754436923076923,7.56732,0.910795,1.9823332142857142,0.910795,0.7095716666666667,0.34029,2.691904880952381,2.322365,0.5626757142857143,1.9823332142857142,1.68696,3.384325,2.1292291666666667,3.39348,4.80976,7.628796666666666,2.091265,2.023565,2.35966,4.635025,5.7576,1.892555,1.616295,1.0518475,2.6681425,4.066175,2.522145,4.48444,6.318665,0.4433683333333333,3.849985,0.739778,2.8927766666666668,2.3236675,3.59391,1.2391483333333333,4.27281,4.7989125,4.242365,2.92109,4.05645,5.39292,1.770345,3.777335,0.6167738461538461,2.53271,2.797595,1.249714,3.08013,2.481646666666667,2.49502,3.79979,8.58225,2.9270860606060607,3.66493,3.3224,6.62638,5.3510425,3.2189366666666666,4.28404,3.30985,5.68265,4.11134,5.3342,4.61005,4.01599,4.9951,3.326143333333333,1.50831,1.9370766666666668,2.112486666666667,3.81094,2.3950133333333334,0.1923535135135135,0.1923535135135135,0.1923535135135135,30.690906214285715,0.1923535135135135,3.0987785135135137,0.1923535135135135,0.1923535135135135,0.1923535135135135,3.2988401801801803,4.150855,0.1923535135135135,0.1923535135135135,0.1923535135135135,0.1923535135135135,0.1923535135135135,2.905395,5.42781,2.8021,0.20652564102564105,0.20652564102564105,4.503513333333333,4.172867458333334,4.119214791666667,3.364751458333333,4.043980952380952,8.019633333333333,11.633590062160062,6.357533666666667,8.49643,7.939957321428572,3.0025633333333333,6.515762857142857,4.567031666666667,4.432349070512821,0.20652564102564105,8.271030666666666,6.964853523809524,6.853916666666667,2.7983,8.814878321428571,14.952970059523809,18.359868598901098,57.335481568216096,118.52832047307513,1.4086716666666668,3.2950233333333334,3.41565,4.011952661518661,0.20652564102564105,1.6331378205128204,8.738157291666667,14.881649571428571,19.746403611111113,48.71337346407686,13.073767321428571,3.213375,0.23074310344827587,0.23074310344827587,4.552496666666666,2.760403333333333,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,0.23074310344827587,5.50972,0.23074310344827587,0.23074310344827587,0.23074310344827587,2.605755,1.9630566666666667,3.831865,3.58833,4.141863333333333,5.2483,2.1133625,4.120825,4.158,3.21269,1.5364000000000002,3.47341,0.9895550000000001,2.31553,2.1051166666666665,5.213996666666667,6.208026666666667,2.83835,5.992482333333333,0.5486433333333333,0.513918,2.4038666666666666,2.98409,2.731025,4.178125,3.5926666666666667,7.4673125,3.70045,4.08181,3.199985,4.003005,2.884095,3.20135,5.88675,1.898305,0.43659615384615386,0.8321172727272728,4.333265,1.7376225,3.755925,3.717215,4.495745,3.337985,2.4825475,2.687525,0.632236,0.759235,4.21891,2.6536833333333334,6.3982,3.694255,3.7425216666666667,2.665525,2.91695,5.9119,3.989165,3.309705,0.8971409090909092,3.2122733333333335,4.66299,2.21844,0.9734525,1.5363666666666667,4.07835,6.42085,1.942365,2.805785,3.845985,5.88655,2.478945,2.3779966666666668,2.450405,4.85435,2.318095,3.885495,0.7322314285714285,2.1654433333333336,3.248295,1.94803,5.976491666666666,3.13065,4.308515,5.07005,2.806045,2.25384,0.5026563636363636,4.63442,5.2429,6.7977,3.57624,3.961415,5.2698,2.7031,2.098071666666667,1.2230785714285715,5.32445,1.882785,2.56729,7.865325,4.15124,5.39885,3.54594,0.9004866666666668,2.979595,1.268487142857143,3.133745,6.0865,5.03545,5.1217,3.65692,5.21995,4.45641,1.88471,1.77527,5.0616,3.05354,3.363466666666667,2.6547,5.397,4.81546,1.4483133333333333,3.709766666666667,2.78536,2.807525,4.316465,8.96535,4.78738,1.7502075,4.86403,6.00435,4.384790000000001,4.028065,4.037525,4.212965,4.671505,8.053755,2.406966666666667,3.021115,3.25812,4.11056,2.95965,3.13011,4.77496,4.489815,3.543375,3.8897346666666666,19.195892,2.826093333333333,2.6725733333333337,3.5235,5.635815333333333,1.20674875,4.34165,2.123711666666667,5.28585,1.4389966666666665,4.27714,4.24288,3.844145,0.96563375,4.66254,4.61241,1.7190175,4.64610356060606,4.619615,1.0899871428571428,3.55353,1.973525,2.24189,1.43258,4.225375,3.79687,4.06413,3.559235,2.97715,4.3428,8.183343333333333,4.635145,4.481685,5.0164,3.1370733333333334,4.21496,4.923335,6.76069,0.893022,0.893022,4.45603,4.853685,2.3710833333333334,1.448205,7.278169999999999,4.36011,3.71101,3.95974,4.80598,4.622925,3.473635,4.03702,6.747445,4.1434033333333335,4.54366,5.03165,1.4780142857142857,2.76945,4.61432,4.750165,3.5705375,0.21272555555555556,1.5468825,2.0882875,2.4636666666666667,2.2681566666666666,0.9530822222222223,1.40407,1.473685,2.4511833333333333,0.6253966666666666,1.0241585714285715,2.0536225,3.901215,4.082833333333333,2.314293333333333,2.5892133333333334,2.9128866666666666,2.78866,0.667882,0.93866875,3.008605,4.583165,4.354685,3.2179,4.86276,4.905565,4.4684,2.1347,4.38123,4.949835,4.50376,6.367695,3.61858,0.47750470588235294,5.7653,4.48718,4.025395,4.99683,3.252045,2.00794,3.645795,4.071135,2.9468,5.279989166666667,4.374905,1.3729616666666666,5.279989166666667,4.122445,6.837652499999999,3.712755,1.1785222222222222,3.97271,5.0477,4.172155,2.63728,5.0702,1.4247975,1.964395,3.299945,3.443335,0.8158511111111112,5.01905,4.87778,3.63058,3.922665,3.5726999999999998,3.2047333333333334,1.820626,1.776885,3.011305,3.37874,3.4982333333333333,2.3663166666666666,2.3262975,1.9761006666666665,3.95279,1.376707142857143,0.8191822222222221,5.66911,4.123135,1.5980539999999999,2.9741633333333333,2.2582066666666667,3.084,6.042411666666666,2.264539444444444,0.8622059999999999,2.46876,4.570425,2.10195,4.283495,5.2205,5.3008,4.66486,4.473625,5.0139,2.11417,2.1934299999999998,1.7080633333333333,2.1182633333333336,1.8287875,2.4758400000000003,2.1870566666666664,1.71747,2.46972,2.97385,3.60745,6.5475,4.67234,4.104875,4.460865,3.963675,3.899055,5.4072,0.90527,3.262776666666667,4.740555,1.1345420000000002,0.6526173333333334,5.34055,3.601935,2.70813,3.7923412499999998,6.438245,5.4061,0.937206,1.2431785714285712,0.6656055555555556,4.070085000000001,2.2282066666666664,2.7436333333333334,1.1755,2.7955466666666666,2.77186,5.6182,4.742305,4.47266,5.38705,4.429175,1.2587366666666666,3.53166,1.6559,3.54813,4.052985,3.411945,2.8078000000000003,3.3411000000000004,2.68295,3.501225,4.32873,3.226055,2.51085,9.010635,10.182712500000001,4.266935,1.39765,5.5797,4.079915,4.858905,4.48124,3.91106,3.910375,3.388105,4.07076,3.658332291666667,6.11489,3.772575,3.70504,4.59826,1.827022,5.00985,5.90145,4.92533,3.378925,3.1269825,7.416595,0.8103750000000001,2.5505133333333334,2.789683333333333,2.3135733333333333,5.1027,3.55638,1.3587533333333335,4.317605,3.4755000000000003,3.780355,4.60598,4.1831491666666665,6.816168,3.3020533333333333,3.062946666666667,3.268356666666667,2.876663333333333,4.146685,2.18961,2.1703333333333332,3.0144333333333333,3.81167,3.8831204166666664,1.9319675,1.534635,3.3469732142857147,3.201153,0.9860311111111112,2.66967,2.66967,1.40009,5.8056,3.29755,3.39756,3.583755,3.38547,3.43778,3.1662,3.13824,3.307775,2.2541166666666665,0.546222,3.25348,5.6642174999999995,3.010495,3.648915,3.22778,4.05178,3.95212,3.14942,2.51833,3.765375,3.71036,2.96139,3.2002,3.615475,2.6696866666666668,3.995725,3.923705,8.68495,3.29188,3.65311,2.99176,3.92701,4.04377,3.583895,2.38782,3.739045,2.6473899999999997,2.724485,2.92077,3.175945,3.62573,1.69691,1.69691,2.206515,2.99324,3.25635,1.5481820000000002,2.412105,3.37131,1.8244900000000002,2.861995,1.5481820000000002,4.663595,2.835735,3.823569,2.90383,3.57288,2.350645,3.240555,3.859845,4.33878,3.549555,4.41406,3.846235,4.24393,3.51246,3.2547,3.04123,2.863565,3.85643,2.62827,3.782085,5.45105,4.18056,3.70892,0.30513,3.44949,0.4186108333333333,3.70444,3.506445,2.865825,3.426445,3.744025,5.88302,3.18364,2.56821,2.2614033333333334,2.778113333333333,0.658172,7.2418700000000005,3.089065,3.451295,3.45403,1.93639,2.509085,3.326795,3.22152,6.586995,4.81518,5.2613,4.77488,4.45004,4.313025,3.77105,1.476165,1.63373,3.96102,4.780485,5.9103925,2.5910266666666666,5.1583,1.85332,3.6260666666666665,4.113275,1.9000035714285715,4.006855,5.138557499999999,3.6107666666666667,3.7773,2.7346133333333333,4.67909,4.87142,3.5793666666666666,4.422555,4.687985,5.0741,4.40577,4.516545,4.3545,3.262705,4.507975,2.6783,3.3303499999999997,3.3303499999999997,4.534935,2.5475833333333333,3.934765,2.49499,4.56685,3.3697,3.63511,1.75824,2.0621666666666667,1.141105,1.141105,1.5632899999999998,3.5299666666666667,1.6307766666666668,2.651873333333333,4.620635,5.173447,3.3179266666666667,4.190405,5.55693,2.996745,2.73626,3.0467933333333335,1.5499766666666668,4.298215,4.351405,6.679205,1.7546633333333332,5.28805,5.6841,3.5844666666666662,3.54578,3.986605,6.4124,2.0834633333333334,2.418915,4.180025,0.48726,4.173775,4.0639,4.301945,4.766405,3.145065,1.4614800000000001,1.7971920000000001,3.858765,3.558505,2.3540266666666665,3.696445,4.88668,5.2206,1.09141,3.499285,4.76567,3.756905,4.814285,2.72287,5.454078333333333,3.73029,1.5354860000000001,3.54612,1.1921683333333333,2.8743233333333333,7.612176666666667,3.188925,0.6778936363636364,3.404865,4.17263,3.67917,1.880885,1.880885,4.900086666666667,5.79395,2.916015,0.4832855555555555,1.967335,4.4883925,4.485465,4.473975,1.7320820000000001,2.9765200000000003,3.53813,1.206470460526316,1.206470460526316,1.206470460526316,0.7506392105263158,1.2878808771929826,0.5372416666666667,1.206470460526316,0.7506392105263158,0.22733421052631578,0.7645758771929825,0.22733421052631578,0.523305,0.523305,0.523305,0.523305,1.0982488333333333,1.05593375,2.27942,2.3177033333333332,1.0880466666666666,6.268236666666667,2.6736066666666667,6.229641666666667,2.6382066666666666,3.78684,2.945845,3.334205,2.8195175,4.62492,2.89251,4.026235,4.012525,4.63054,2.1541175,4.074675,4.804545,3.927065,3.32148,4.89859,3.25538,4.37528,5.65955,5.19135,6.32305,5.4004,1.08226875,4.821475,4.081685,3.512235,15.939015,4.651585,5.4007,2.7465433333333333,7.44409,3.689235,4.591815,5.1531,3.177185,1.035495,2.39065,4.02962,4.19871,3.60514,3.333695,4.069075,3.00647,4.57434,4.723655,4.263405,6.55227,7.464483333333334,1.3798014285714284,3.77,4.041915,4.11886,3.50681,3.564365,7.07842,2.621795,2.730095,2.53267,3.91046,3.995605,4.769535,2.462975,1.7156375,0.893508,4.302435,3.57384,3.552955,3.95277,3.613675,4.941545,4.07318,6.59735,6.096,5.44035,6.88645,3.75253,3.242485,3.18611,3.29919,1.82536,4.450095,5.99915,5.94435,5.700045,5.700045,2.2896,1.82536,2.08257,3.25444,0.734595,1.6120999999999999,0.877505,1.695575,2.51406,0.387735,2.860495,4.05725,1.695575,3.009296,11.117035000000001,6.61064,2.3775608333333333,1.0590600000000001,1.6553000000000002,4.626885,4.219685,5.842176095238095,1.9580525,2.111335,3.97247,3.648325,4.7904,1.8386866666666668,5.5261,3.7168666666666668,3.39306,5.33835,7.325168,3.868065,2.47033,2.754723333333333,1.72855,4.141075,5.4261875,1.9516940000000003,5.75535,4.326805,6.121360000000001,0.5448753333333334,4.816405,4.941755,4.70572,2.962325,2.76432,7.3371,7.430933333333334,6.7381,1.8402833333333335,1.8402833333333335,1.8402833333333335,4.775885,5.1086,6.4221,3.40981,2.787465,2.652985,5.074,3.575045,2.6887350000000003,1.843135,2.6887350000000003,7.335085,4.97278,4.644312857142857,8.79316,4.644312857142857,4.644312857142857,3.481852857142857,7.0335,5.496268,2.877938,2.877938,2.509165,7.1373,3.106295,3.5446,5.3921125,5.3921125,5.3921125,8.55695,3.5408600000000003,3.378665,3.7023625,3.5424675,0.8558625,7.613546666666666,2.6407666666666665,6.89935,3.449945,12.604074666666667,5.37535,5.477555,6.88179,2.5761183333333335,3.37682,1.0891016666666666,5.477555,3.41619,1.7001275,1.7001275,3.23638,5.0379241666666665,1.700225,4.501298333333334,0.817111,1.3299616666666667,0.817111,1.8665875,2.5173360000000002,4.744756,3.34211,1.3299616666666667,3.105945,4.7090250000000005,0.95662,3.463,4.31658,2.567275,3.88523,2.766215,3.212115,2.89001,0.940586,3.66986,2.48754,1.960545,1.66136,3.08319,4.02457,3.080815,3.62044,1.2440711111111111,1.2440711111111111,1.2440711111111111,4.04477,3.16368,3.16368,3.26641,3.8122,2.0592799999999998,1.238645,1.238645,2.9475,4.5372575,0.8007725,1.4017799999999998,3.01636,1.4154033333333333,2.8171833333333334,0.940586,0.940586,1.9227075,0.940586,3.0076858333333334,0.7889883333333333,3.0076858333333334,5.913415416666666,3.102065,2.316476666666667,1.7778376388888888,0.635665,2.4135026388888887,3.689795,2.4135026388888887,0.9747788888888889,3.498535,3.75211,3.65481,3.775055,2.58646,3.769455,1.7113933333333333,0.81272875,0.39769875,0.81272875,0.41503,0.81272875,0.81272875,4.41456,4.48287,4.560295,3.35345,4.56736,4.674995,5.24055,3.47596,3.869885,1.4261771428571428,2.584966666666667,4.5122725,3.74385,1.34342,2.8095199999999996,4.00996,3.85411,4.200195,3.44021,4.16437,3.789845,3.11287,4.44321,2.43748,6.22025,3.50787,3.889155,4.577464285714285,0.8172197857142857,2.15477,3.169755,6.12223,4.03925,3.34997,3.0314566666666667,4.18021,7.463666666666667,3.169976666666667,4.09069,2.8881266666666665,4.02161,3.98964,5.70575,5.6295,4.174635,2.90922,5.55495,4.703075,3.579833333333333,8.03498,3.3646,2.4000425,2.4605966666666665,4.751425,6.57955,4.945175,5.3055,3.967025,4.834505,5.77295,0.5445676923076923,7.60022,4.69805,3.592485,3.95763,4.899605,4.20233,3.099743333333333,2.579425,1.3871516666666668,0.553503076923077,1.86463,3.192273333333333,3.38392,3.582815,3.73915,3.721655,10.941358333333334,3.79383,3.785215,3.341795,0.7456116666666667,5.574956666666666,2.60994,1.3105666666666667,3.9205066666666664,4.838535,2.228595,7.58429,4.394565,2.0888099999999996,2.0888099999999996,2.0888099999999996,4.266195,8.91554,3.276345,2.504475,2.504475,3.38298,9.73789,1.05684,4.672735,4.54021,4.31457,2.9235433333333334,2.20647,4.06249,3.8716,6.4802,5.97248,3.74965,2.87143,3.775555,4.552440000000001,3.580507,1.24169625,2.9121733333333335,6.02711,3.39825,5.42845,0.96606,3.7785666666666664,2.390826666666667,2.4853066666666668,1.7728125,1.7969366666666666,2.12325,5.8897,2.027555,4.74294,5.698,1.794832,4.83339,3.762575,4.81006,3.303803333333333,2.329095,2.60836,4.36889,3.900735833333333,3.900735833333333,1.128845,1.6175533333333334,2.9265833333333333,4.509924666666667,2.2530394545454544,4.926196666666667,1.79658,2.8062566666666666,2.081723333333333,1.666185,1.666185,4.81566,7.665833333333333,1.9352099999999999,3.1059466666666666,2.24498,4.585955,3.119575,0.8449880000000001,2.88563,0.8449880000000001,2.5891,3.37098,5.2525,5.7597,3.697675,4.632493333333333,5.9586,2.340595,1.7584833333333334,2.9351800000000003,2.2475566666666666,6.1207,5.06135,2.45758,4.33934,2.681145,4.592675,1.0790225,1.064714,1.8382733333333334,1.2519833333333332,2.52637,2.7788466666666665,2.181363333333333,2.864403333333333,2.6672,4.67697,2.552756666666667,2.372806666666667,2.7204533333333334,2.3407,2.9108666666666667,2.6234100000000002,1.9081833333333333,2.4351866666666666,4.259245,3.802365,3.11847,3.34169,2.894816666666667,2.272195,1.97889,1.188765,0.2925255,0.13317739130434783,1.9835433333333334,1.8057999999999998,0.13317739130434783,3.750973224637681,1.9989025,0.13317739130434783,5.8361295138888885,2.119143333333333,6.10779,3.280265,3.383766666666667,2.6732566666666666,2.9025200000000004,2.1840925,4.24013,2.9831233333333333,3.3118533333333335,0.4127773684210526,3.92903,2.6900773684210524,2.916455,1.67585,2.5918,4.698895,2.39654,7.88752,5.28235,3.488245,3.827785,6.30322,6.34203,1.6200166666666667,4.1009633333333335,2.04638,1.967555,6.56427,7.75488,1.0632300000000001,2.158295,3.69507,2.50764,3.030455,2.821825,2.5254,4.12438,2.520635,3.10228,3.41398,3.113175,7.63967,1.3236566666666667,1.881775,2.83584,3.38674,1.9329433333333332,3.334155,1.50616,3.833995,3.178225,6.84273,3.354215,8.7434925,3.51016,1.6192199999999999,1.6910933333333331,2.88724,5.3346,1.5706475,1.6133533333333334,5.51592,3.377605,4.008605,2.58404,2.0912566666666668,2.979325,10.352765,5.1523,6.27306,3.478645,2.267145,2.18219,2.73043,2.80164,3.41724,1.7344166666666665,1.5068366666666666,2.4749966666666667,3.57326,1.76727,3.127555,2.48531,3.430605,3.68223,3.61321,1.2668283333333334,2.57323,0.9701833333333334,1.412738,1.803885,3.422685,3.39778,3.5253,2.856155,3.649035,3.87766,2.73753,1.42906,3.42687,3.5044625,2.881945,1.636645,2.949145,3.240405,1.3805075,3.263285,1.7692933333333334,3.94269,4.14952,4.964565,2.648185,4.236755,1.71675,3.291565,5.76905,1.73252,1.0977042857142858,3.7359333333333336,2.511865,4.32388,4.15105,2.909385,4.71734,4.929555,2.522186666666667,5.50325,5.4456975,6.7439,4.20179,6.752395333333333,4.20793,1.7691333333333334,2.72998,4.68108,4.84911,2.7223466666666667,7.233886,1.2502099999999998,3.4382,2.13608,1.720964,2.369006666666667,2.7808166666666665,0.3813357142857143,2.7810433333333333,3.9631666666666665,3.46061,2.370965,3.461766666666667,2.20818,2.31534,2.2945025,9.360175,5.0027,2.01088,5.3915,2.331651434782609,0.7127231794871796,2.8677799999999998,7.537461333333333,1.7925419999999999,4.573593750000001,6.32069,1.8301125,1.575065,1.418675,3.767305,3.227005,4.31455,3.781185,2.3190733333333333,3.59259,0.94363,2.6334566666666666,4.421275,4.13497,4.87676,3.037365,4.94302,5.07495,3.99906,5.109,5.7219,4.91004,4.42482,5.54585,1.832786,1.842345,2.74008,3.348825,1.1717111111111111,4.15804,2.05758,3.3167666666666666,4.35059,3.3762000000000003,2.626133333333333,1.4817933333333333,3.1477066666666667,2.8151238888888885,2.7603833333333334,2.8483466666666666,1.9186566666666665,2.3144175,2.275945,4.10406,4.47257,4.02536,4.89677,3.45238,2.25261,2.91858,5.0661,4.008466666666666,4.620915,3.634605,2.235275,4.382063333333333,1.7287633333333332,4.156955,4.9079,6.043227142857142,4.173295,4.473155,5.52625,3.308336666666667,3.9884441666666666,4.63223,3.409725,3.799801,3.301465,1.3012225,3.256215,1.724775,2.11323,4.98853,5.18747,3.799801,3.947755,3.534325,1.569165,3.709725,2.012085,2.40058,2.020005,2.68719,1.8433175757575757,1.8433175757575757,1.8433175757575757,0.667240909090909,0.8421422222222222,2.2506222222222223,1.0803225,3.50636,1.30656,4.301455,5.2856,4.763265,3.176095,4.04935,3.23996,4.982245,1.671515,3.042725,2.47229,3.356255,5.8082139999999995,4.278455,5.51645,4.09787,0.964265,2.312455,1.2536066666666665,3.625275,3.865095,4.22582,5.30285,4.959005,4.08363,4.40752,3.823955,1.69218,1.2238633333333333,5.523433333333333,1.0872022222222222,1.3285,2.468863333333333,8.298784999999999,3.09216,3.79454,3.246955,5.6283075,1.6912225,0.9790366666666667,1.4180975,3.25887,3.36279,4.02039,3.711765,1.880435,6.784945,2.91947,0.89242875,4.95338,3.0857533333333333,2.6472266666666666,2.3553466666666667,3.5828333333333333,5.8007375,2.7727233333333334,3.226383333333333,3.617266666666667,2.7619233333333333,2.791923333333333,2.883036666666667,2.6937,1.97787,4.89668,4.80852,5.08305,1.0081733333333334,0.751796,4.0466,2.5795666666666666,1.07088125,2.801747916666667,3.66439,4.08289,7.14521,4.731695,3.6977666666666664,1.716102,3.577125,3.725645,2.9099133333333334,2.6038445714285716,4.223405,2.86934,5.004421333333333,0.8928400000000001,3.318755,1.683912,3.66343,4.29599,2.39197,1.0526025,3.113225,0.411824,3.516805,6.7451,5.47615,2.834804,1.437058,4.005833333333333,0.7862244444444444,2.381463333333333,0.7862244444444444,4.01028,4.39075,1.3567375,1.764665,5.053466666666667,1.7321666666666669,3.81446,2.800035,3.704765,1.221856,1.5124233333333335,3.898605,5.3772,5.3912,2.867544,2.87545,3.253175,1.581615,2.4331975,1.814925,1.8000475,4.558105,1.3502555555555555,1.3502555555555555,3.67085,4.968656666666666,8.266306666666667,4.69047,8.15293,2.49009,3.842305,4.00184,1.7512166666666669,3.8160741666666667,4.098315,2.939385,5.5196,2.8375,2.420875,2.9749700000000003,4.19851,1.09296,4.3146,4.583455,1.110145,8.06916,2.648535,3.090165,3.4641566666666668,5.19385,5.16535,3.6801133333333333,2.5256066666666666,2.8118466666666664,2.0877766666666666,3.804733333333333,2.4518475,2.19152,7.595229333333334,3.4163333333333337,2.945656666666667,4.121425,23.101974904761903,0.6926333333333333,2.54958,4.521745,4.497185,8.74962,4.759605,4.68879,4.660195,6.9807733333333335,3.512465,1.6158700000000001,5.043211666666666,3.152915,1.201448,1.201448,1.201448,2.34544875,1.657815,3.24858,1.5299275,3.141885,1.5179166666666666,2.74494,2.4802,2.929205,1.5299275,3.20706,2.532605,4.2402516666666665,4.832381666666667,5.03985,0.79508,3.325795,2.817505,4.65253,3.68581,2.90687,2.4061325,1.6878575,2.331185,1.453052,3.62508,1.8433425,4.428065,11.167273333333334,2.7871,2.323825,4.947504166666667,4.796333333333333,4.502233333333334,6.4139,2.2773,5.3510425,4.74783,1.03925,1.186232857142857,6.433877,4.570335,2.4283725,3.721965,1.8308775,4.063605,5.0454,4.53312,3.90795,1.34865,4.238045,4.894155,4.703995,6.3904689999999995,3.5365,5.56745,4.60228,4.4775,5.01485,3.7550333333333334,5.23305,2.0081875,3.325245,3.012715,3.217965,4.515615,6.27435,4.70006,2.892746666666667,3.583766666666667,8.900459999999999,4.953775,3.289353333333333,3.687655,3.56572,4.507545,4.170185,4.80272,6.762811666666666,3.651885,2.77341,4.1194925,2.33809,4.446355,2.4030866666666664,6.5306525,1.6521233333333332,4.519625,4.972725,12.068375,0.4830957142857143,4.44451,5.07825,0.6650200000000001,3.76901,3.927975,4.284575,0.956616,5.0632,4.8412033333333335,2.6348033333333336,10.150308333333333,3.2440766666666665,1.9103966666666665,2.22788,3.715855,6.1168,0.5666633333333333,3.842205,1.9942275,5.4866,0.7479961538461539,3.99887,5.7758,6.14055,3.52915,6.6050325,4.61297,3.6691374999999997,2.4841666666666664,2.7541466666666667,4.267545,4.75067,5.11995,4.968775,5.6028,3.3487666666666667,7.039981666666667,2.76045,3.3621285,2.1177825,4.388295,2.261476666666667,1.5856733333333333,3.0925933333333333,3.17184,3.3656333333333333,3.5083333333333333,3.757,3.2641166666666668,2.60258,5.5476,3.137043333333333,3.611785,5.06575,2.5879833333333333,1.2007,3.137506666666667,3.0100200000000004,3.91586,2.97297,3.13644,4.6205099999999995,1.95812,1.65669,3.019695,3.730495,4.31007,1.08579625,4.443825,3.237855,4.020066666666667,3.0625633333333333,4.884721,4.11176,3.20018,4.083725,1.70135,3.83736,0.675325,4.74446,5.167,17.16998272727273,3.0968766666666667,1.2082816666666667,3.944535,0.6515035714285714,2.724575,4.353845,1.911925,1.2633642857142857,3.837055,4.549855,3.1258766666666666,0.7287183333333332,2.53531,7.78202,4.005025,5.6365,5.18385,5.39465,3.3252699999999997,3.8592,3.2913766666666664,7.357905000000001,4.09825,5.0744,2.2084275,0.4360111111111111,2.07934,2.95847,2.34605,4.35487,3.82816,2.93155,4.926765,0.7277125,4.87661,3.797625,3.049285,1.1254466666666667,2.74235,1.9696833333333332,4.92683,3.89061,2.124425,1.7141714285714287,3.586,4.432325,4.627395,6.318571666666667,2.2051366666666667,4.86915,4.65741,4.099625,2.00216,4.065825,6.352145,4.970275,2.573055,4.96129,2.763885,2.554205,4.012155,3.85742,1.322875,4.77225,2.08542,2.862906666666667,5.447093333333333,5.447093333333333,5.4855,1.737554,4.926035,0.9390075,1.805274,5.0072,2.42679,1.4136533333333334,3.3353,0.8760600000000001,4.3623666666666665,4.869625,3.270215,5.2862,4.22984,3.85277,5.543645,3.49621,3.6695666666666664,2.90104,2.4757666666666664,2.780325,2.98109,4.503245,1.7859497802197801,3.085906666666667,4.52451,4.9681,2.3734525,4.43522,4.842885,4.807441666666667,3.527233333333333,5.329,5.20745,5.21565,5.07725,3.87301,3.770975,3.666845,4.52868,5.6993,4.8808,5.11065,4.69866,4.74652,0.7236549999999999,4.966885,4.61424,3.952815,7.434735,4.479125,4.06492,4.466295,4.941895,3.71795,3.57376,2.1538725,4.5258575,1.9156825,1.37358,3.618315,2.04202,2.4302266666666665,3.8219646666666667,3.396333333333333,3.04779,1.1310033333333334,2.08698,4.62035,3.94071,1.85234,1.85234,3.935505,1.57966,3.0966733333333334,4.47315,3.39841,3.5869,1.4606933333333334,2.053385,3.6057908333333337,1.763775,4.296135,4.631035,4.37316,4.08181,6.865636666666666,2.7417,3.704315,4.8202,4.2843,3.307646666666667,4.228615,4.10163,4.50172,2.21189,2.73893,4.609445,4.151155,3.735725,3.74102,1.532885,4.015495,4.324015,4.482455,4.1803,3.7397099999999996,3.7397099999999996,3.13527,4.26053,4.306745,4.24133,1.6960799999999998,7.4811125,3.922025,4.92663,4.226705,4.38668,3.705225,5.1428,2.780325,3.44859,2.748095,5.0904,1.941584,4.30353,5.600844444444444,5.29515,0.7261610000000001,4.720280833333334,1.17539,4.872535,4.88918,4.551995,4.07871,5.40885,3.8492333333333337,3.8492333333333337,0.8637079999999999,2.2302025,4.88981,3.530715,3.83831,5.23815,5.59585,3.27094,4.247675,1.3645516666666666,2.49515,1.639965,1.2798125,4.32956,0.8726309999999999,2.7672666666666665,3.155946666666667,1.18574,2.21,2.651613333333333,1.36154,6.23673,2.143095,2.5080033333333334,5.43595,2.0586,2.8145366666666667,3.21072,4.653785,3.9024,3.461766666666667,3.9441333333333333,1.684478,2.1835033333333334,4.49721,0.647475,2.11184,2.3330866666666665,3.1764166666666664,2.8250833333333336,1.0917914285714285,0.84205,2.4692133333333333,4.214655,1.2359828571428573,2.3427725,1.2438625,5.5930599999999995,2.30164,5.1701,4.451895,4.39481,4.91031,5.40735,4.276065,4.48535,1.510165,3.936366666666667,1.786702,2.636833333333333,1.231412857142857,4.221375,2.1745525,7.488090000000001,4.34448,4.080325,1.464638,6.951817500000001,3.64631,1.5818733333333332,4.03068,3.054445,4.03555,3.533505,1.985695,1.985695,3.2687899999999996,1.4355916666666666,1.4355916666666666,2.00216,2.8834166666666667,2.069495,1.2612383333333332,3.6862999999999997,1.080265,3.180816666666667,2.3688675,1.85816,1.5104833333333334,2.11972,2.1490825,0.27769705882352946,2.549125,1.2381783333333334,2.3923366666666666,2.081723333333333,2.590825,1.05246,1.079526,3.8363,3.2355699999999996,1.985695,1.7376225,1.7843166666666666,2.517673333333333,2.51088,1.930774,3.2562166666666665,1.19992,3.28915,2.88454,2.44482,1.537796,1.099358,2.599,1.099358,2.599,0.70157,0.70157,0.48802333333333336,2.33105,2.4989266666666667,0.70157,2.216225,2.386226666666667,2.4132875,1.6306125,0.8127266666666667,0.70157,0.70157,1.5979860000000001,1.5979860000000001,1.98584,1.7376225,0.70157,2.27808,0.4589338461538462,3.211866666666667,2.1004666666666667,2.38967,2.6737,2.6737,0.386736,0.386736,2.00216,2.01038,2.20744,2.07214,0.386736,3.6584,2.4520525,1.6516179999999998,0.63368125,1.6516179999999998,0.63368125,7.23202,2.5,4.137533333333333,2.553,3.0699166666666664,3.1437066666666666,2.965106666666667,3.5912,2.5051,1.7004825,2.901256666666667,3.169976666666667,2.3749033333333336,1.5979860000000001,2.6355819047619047,2.6355819047619047,2.723903333333333,2.08525,4.11825,2.3125666666666667,3.431566666666667,2.5099133333333334,1.448898,2.4295075,2.36562,0.8008254545454545,1.7237375,3.888405,1.749378,3.217916666666667,2.674716666666667,2.777575,3.9506666666666668,1.6724833333333333,3.5443,3.0735333333333332,4.2821,1.254906,0.23074310344827587,1.3006328571428571,1.3006328571428571,1.0471522222222223,2.955133333333333,3.986,2.5372333333333335,2.126256666666667,2.126256666666667,2.0698575,1.7692933333333334,0.988063,1.5729966666666666,1.5729966666666666,0.70157,2.00216,2.81335,3.4143333333333334,2.3688675,2.27208,2.27208,2.27208,1.10153,1.5517571428571428,1.5517571428571428,2.566325,3.0719266666666667,2.6005124116161618,4.152485,2.4540833333333336,2.5875766666666666,3.51044,3.69782,6.957034999999999,3.96192,4.66857,4.079733333333333,13.6323625,4.98169,3.41308,1.0108925,4.018725,3.325925,2.41565,3.636955,5.1166,7.054369,6.1986,0.5105335294117647,4.11213,3.09842,4.11901,2.46916,4.712555,4.53188,4.322955,8.412790000000001,3.46213,3.821475,3.85156,3.2791295454545457,8.014055076923077,3.2818966666666665,2.597793333333333,3.82947,4.10971,5.24545,3.88423,6.80086,3.683375,1.324192,2.677375,0.88684125,5.02045,2.77032,2.58494,3.9188,3.552985,2.641175,4.861685,3.89876,7.4623349999999995,3.87433,4.592782,2.5193600000000003,5.02805,2.93986,1.168885,1.168885,3.412705,3.881345,2.139265,2.335165,4.05463,2.73317,2.78386,1.855575,1.971515,3.101545,2.5575366666666666,1.17616,3.59775,5.00245,8.14872,1.6741959999999998,2.939115,2.812545,3.59591,2.8422466666666666,8.02925,4.271515,3.6125333333333334,3.0566333333333335,4.237765,3.3914333333333335,3.0353033333333332,3.3314133333333333,4.04692,3.784455,4.6738,4.3075,0.367462,1.4599466666666665,2.443173333333333,1.6727725,4.67409,3.72851,2.6656366666666664,2.345845,4.731255,3.79393925,2.1672725,2.43865,0.960431,2.25969,2.630806666666667,2.630806666666667,5.47255,1.85401,3.081863333333333,2.2442766666666665,2.1652333333333336,1.6753933333333333,3.125755,4.026385,4.958555,4.636785,5.2396,4.99312,2.756885,3.0965399999999996,2.0595,4.85037,5.5282333333333336,2.0110366666666666,2.9353366666666667,2.1987875,2.395843333333333,3.9534816666666663,2.5528366666666664,5.25755,3.851505,3.44326,4.397795,3.0661133333333335,3.60463,4.23491,2.3081666666666667,2.387086666666667,0.406325,3.848466666666667,2.743603333333333,3.134145,6.016,4.6988,5.7944225,1.8500325,1.5988499999999999,2.968615,5.3138,6.45845,6.1914,3.201003333333333,2.2030166666666666,3.628875,2.1050166666666668,4.65516,2.3799433333333333,2.411835,5.29765,4.908305,4.51717,1.6663625,1.87474,1.0828200000000001,1.0828200000000001,1.0823019999999999,1.0064285714285715,0.7426980000000001,1.9153005714285714,4.446855,10.2764525,4.036955,4.312455,4.160115,6.0779725,2.52528,1.6263533333333333,3.4503583333333334,2.97838,3.77412,2.40657,2.7698966666666665,2.9574766666666665,3.24295,2.3479466666666666,3.23377,3.3002366666666667,3.0597499999999997,3.416066666666667,3.3869333333333334,2.9976766666666665,2.7125466666666664,3.2268866666666667,2.6059266666666665,3.29787,3.1497433333333333,2.89705,3.4431999999999996,2.12458,5.659762952380952,3.1439866666666667,4.304801333333334,3.2564533333333334,3.0728333333333335,3.8046333333333333,2.88636,2.950473333333333,3.161823333333333,3.2158599999999997,3.3988666666666667,3.3519,1.913405,2.7392866666666666,2.8897333333333335,2.9485,2.9485,3.3791666666666664,3.2084799999999998,2.71331,2.7834800000000004,3.175103333333333,4.235166666666667,2.7304366666666664,2.754625,2.5702066666666665,2.77158,4.576220833333333,4.900845,1.6587416666666668,3.6428333333333334,3.7928333333333337,3.421476,3.31833,3.7198333333333333,3.5319333333333334,2.679543333333333,3.3498840000000003,2.0116,3.0426564999999997,3.5452333333333335,3.479433333333333,2.5434533333333333,2.5936066666666666,3.9019999999999997,2.95412,3.0917066666666666,2.517275,1.2296916666666666,3.22851,2.80599,2.1678866666666665,2.4438425,3.2692433333333333,3.1394300000000004,1.96708,5.803668666666667,2.42338,0.949042,4.44862,1.9524400000000002,1.71925,4.389555,3.866245,3.35196,2.60158,1.382825,3.2926,2.86864,3.19531,0.414788,2.192405,0.414788,1.85682,1.382825,2.653015,3.85206,2.3917925,3.613195,3.42451,0.5167206666666667,3.0459866666666664,0.910615,0.43566352941176467,3.86028,3.82781,4.877665,2.565325,5.30005,4.306575,3.83247,2.30325,4.0911,1.7370180000000002,5.6738,2.523055,4.49446,4.61494,3.1907366666666666,1.93686,2.035013333333333,1.3745450000000001,1.71566,1.0845075,1.0845075,4.29478,2.2927833333333334,5.9910733333333335,2.2262875,2.187945,2.002715,2.27175725,2.3089725,6.0044,4.400895,2.0919225,2.2953233333333336,2.27175725,2.379345,3.91824725,2.31420125,5.812893333333333,2.2262875,3.2671275,3.28074,3.14124,5.76185,5.08025,2.044845,2.09501,2.2770475,2.560745,4.913445,5.4798,1.93792,3.813925,1.5499766666666668,1.62941,5.3861,10.754063333333333,2.053166666666667,2.28205,2.648676666666667,4.4506,4.35006,1.894985,4.846755,4.72023,2.6244,40.24475920238095,2.91629,3.2056133333333334,0.42341555555555555,4.661431666666667,2.1449333333333334,0.9930833333333333,4.09801,3.70065,1.98801,1.89104,2.33969,4.018465,1.41048,3.3181216666666664,3.630125,4.86201,0.9425330000000001,5.0633,5.1606,4.967865,2.9609666666666663,1.80854,3.9634549999999997,4.457865,3.90945,3.03673,3.64987,4.042545,11.929467323232323,2.850756666666667,3.113225,4.201255,2.65834,4.50824,3.488985,2.54335,3.19608,6.30014375,4.764345,5.25805,5.00555,2.37735,3.67234,4.35516,3.569825,4.669965,4.78,0.13256195652173913,2.359225,5.54505,2.575875,1.6711333333333334,1.17345,1.17345,2.69695,2.61143,2.742495,1.9069340000000001,3.0342266666666666,4.405375,2.678665,4.2542975,0.5664764285714285,4.781735,3.80329,4.87829,4.864405,4.8756,1.24194875,1.09366875,4.382733333333333,2.9342233333333336,3.068303333333333,3.997667696969697,4.375975,6.177239999999999,5.25015,4.084115,3.352085,2.2481991666666667,1.5391166666666667,4.649395,0.30523933333333336,3.35975,3.72643,3.90803,14.633096666666667,1.87113875,3.3529,0.66984875,4.45971,8.011915,3.16303,1.8645133333333332,5.8841,3.187746666666667,1.0457477777777777,5.18585,2.768215,2.95089,5.0198,3.443950527777778,1.05069875,6.81609,0.73891875,5.21985,3.166908277777778,1.3714225,2.1222691944444443,3.2389125,3.2389125,3.988305,4.341568583333333,1.3940625,2.26818,2.710565,3.599105,3.503355,2.55695,3.343395,3.37619,6.603658666666666,6.4468,4.047175,3.128755,4.66084,4.850095,3.41669,3.37329,3.47538,4.140505,4.58112,2.506746666666667,2.6246466666666666,1.67795,2.3154933333333334,2.3438875,1.51914,3.451366666666667,3.644933333333333,3.669966666666667,3.3708333333333336,2.6398,1.5364000000000002,1.7689033333333333,0.45411636363636365,2.740413333333333,1.6888,2.108895,3.5970333333333335,2.5219666666666667,2.5424666666666664,1.04401125,2.296615,2.49973,2.8982,3.570165,5.65135,3.70997,3.00329,2.1816,3.29081,4.60685,2.31716,3.70122,1.87805,3.633725,2.727475,4.218895,1.3604399999999999,0.617074,2.4174625,3.288905,3.025715,4.01324,4.8259799999999995,8.76111,3.4019999999999997,2.47946,2.0620233333333333,1.8160699999999999,1.8160699999999999,2.8427933333333333,2.51093,5.0659,4.79772,3.740605,5.2436,4.44721,4.509985,3.252045,4.555515,8.0502375,2.56185,0.490348125,3.3830666666666667,1.35954,1.0229757142857143,2.06143,0.825531,2.1878425,5.3044,5.07025,5.8412524999999995,0.9451825,6.99227,2.03176,1.5357450000000001,2.4338533333333334,4.161905,3.377133333333333,2.528925,3.92709,3.2349633333333334,4.301200000000001,2.9863866666666667,2.76165,3.013756666666667,6.766545,2.49985,3.869265,3.828135,3.578800833333333,1.5079933333333333,1.160725,4.26502,2.932,3.3452333333333333,5.7886524999999995,2.86737,2.113905,2.374245,3.136875,3.9141333333333335,2.4151666666666665,3.9096208333333333,3.264886666666667,5.6406,2.441560416666667,1.8628675,4.98239,5.53555,4.732525,4.088165,1.7491,2.3850475,1.85774,3.325455,1.6043033333333332,0.912735,2.588575,2.17762,2.0524775,4.28344,0.7733575,5.7769425000000005,1.3930575,0.8124609090909091,3.6443333333333334,4.30679,0.6801085714285715,3.4896115,3.2374324999999997,0.84205,4.552145,0.18994833333333333,0.18994833333333333,0.18994833333333333,0.18994833333333333,0.18994833333333333,0.18994833333333333,1.931874,3.575235,1.931874,1.931874,1.80813,0.18994833333333333,0.18994833333333333,3.5305,2.6826733333333332,3.55873,3.263455,2.280985,3.44506,1.4189157142857145,1.7298660000000001,3.580507,1.4624219999999999,2.8960866666666667,2.6334077777777782,6.070116666666667,4.210365,4.29804,6.66865,4.410095,4.78328,4.050905,4.114875,7.394046666666666,3.9728333333333334,3.7675,2.5351666666666666,5.321653333333334,2.5391166666666667,2.137035,1.8667333333333334,4.68787,5.5324,5.2534,5.4554,5.6953,4.702445,4.784595,0.7689690909090909,0.7409714285714285,0.7409714285714285,4.75522,2.2760466666666668,3.59521,1.0100414285714285,4.743225,1.5345571428571427,2.3472833333333334,2.51032,4.563066666666667,4.563066666666667,6.95635,4.336405,1.415025,10.605548333333333,3.07132,1.2894333333333334,5.13615,5.4327,3.60973,3.100105,2.77687,4.400666666666667,0.8257066666666667,3.4905333333333335,3.125776666666667,3.8663000000000003,3.3328,1.4889000000000001,1.43779,4.973212500000001,3.18983,3.1724,3.563266666666667,5.326604166666667,3.3093925,0.764396,2.0578366666666668,3.7091,2.3280333333333334,3.7330666666666663,3.4143333333333334,3.13598,3.5766333333333336,3.1507199999999997,2.741733333333333,1.1140433333333333,3.0569466666666667,2.485796666666667,3.58145,3.250845,3.873365,2.63476,3.3624666666666667,2.920675,1.561256,2.1924366666666666,2.6976790476190478,3.7174333333333336,1.85839,3.2684333333333337,1.8369333333333333,3.801766666666667,5.140598333333333,4.768885333333333,2.595125,2.586825,2.890575,2.4458125,1.6543571428571429,2.2307075,3.313368214285714,2.3713925,3.5953999999999997,2.82035,3.7827333333333333,2.988455,1.294088888888889,1.2657975,1.77938,2.2013825,3.085266666666667,3.5960666666666667,5.20585,7.755295,2.765115,5.4695,4.169715,16.358596666666667,0.515935,10.93937,0.8716711111111111,3.16355,3.839066666666667,3.209573333333333,2.86987,1.6164239999999999,1.42906,2.5761433333333335,1.284044,2.66829,2.02566,2.7932433333333333,2.3223333333333334,2.8047799999999996,1.6041800000000002,0.6535341666666666,3.416933333333333,2.54137,3.1714333333333333,1.10153,3.629466666666667,0.7461483333333333,0.36303076923076927,2.1172066666666667,4.861595,4.763865,4.829355,0.805730909090909,3.849865,4.34834,1.1343075,2.363685,5.315768333333333,3.222275,3.863695,3.802665,3.806915,1.94409,3.773345,2.7012866666666664,2.982155,3.46966,2.53318,2.596735,3.84323,3.168975,3.64291,1.964725,3.28107,4.82847,1.7382900000000001,4.723525,2.2417,4.24486,5.4368,1.9443375,3.007096666666667,3.1379866666666665,6.035915,2.4835233333333333,3.341485,5.32935,4.137533333333333,3.901785,1.80407,2.893775,4.74051,3.656966666666667,4.181495,3.771266666666667,3.20844,2.98075,4.0467,3.3207299999999997,2.6860633333333332,2.730613333333333,0.43761944444444445,2.3088575,2.2492975,4.637595,4.8654,3.257123333333333,2.759923333333333,3.2376566666666666,7.81216,3.58511125,3.912365,3.188893333333333,3.87663,2.95307,3.6323349999999994,2.9060566666666667,2.2939675,2.8876333333333335,6.4923,4.731155,2.11226,3.243085,3.111645,2.47953,4.6991993333333335,1.723126,6.122819999999999,4.00749,5.0627,4.58543,6.48595,3.58813,6.796423333333333,3.626455,3.244145,0.6549392857142857,2.24473,1.53082,3.074953333333333,3.38720875,4.05823,4.07778,5.3756,2.7069233333333336,4.8608,3.8980333333333337,3.9872,3.3013433333333335,4.7565,4.796175,4.815495,2.9946466666666667,6.06276,4.595045,1.52228,5.4533,3.606115,2.710025,2.153135,2.333413333333333,4.783838666666667,1.355357142857143,2.4934966666666667,2.0423825,3.75064,4.220805,2.6329933333333333,3.5742333333333334,3.0202533333333337,2.4848733333333333,4.1844,1.322514,2.351713333333333,2.3794833333333334,2.6525433333333335,2.5541733333333334,2.6324866666666664,2.6509266666666664,3.83946,2.9614933333333333,2.7587466666666667,4.078165,2.132935,3.652775,3.54599,1.6999827272727273,1.6999827272727273,4.64798,2.91919,1.7712125,1.2336425,2.067715,2.03931,1.23081,1.42539,0.64783,1.6387533333333335,1.48913,2.9695199999999997,2.2053933333333333,1.7423133333333334,1.99203,2.30255,1.52172,1.7150999999999998,1.8736466666666667,2.59865,3.86411,2.646315,3.0013199999999998,2.782125,5.7287,2.946575,4.301035,4.162886666666667,1.92362,4.15599,2.981275,1.833405,3.46361,2.1959625,3.027905,3.52235,1.95565,4.580675,4.270115,4.08184,3.4918333333333336,0.89519,4.98287,3.85735,3.28525,3.743865,2.3490166666666665,4.596995,4.948755,5.1571725,9.572734166666667,3.87162,4.45298,2.898236666666667,3.69583,4.64246,2.336495,2.761255,4.2164,2.2618175,5.9973149999999995,1.943994,2.722605,7.10341,3.0169266666666665,4.317274,1.3088728571428572,4.598985,4.61315,3.2042,4.77148,4.94236,6.57446,16.33944142857143,0.6657000000000001,1.05246,3.21035,4.128235,3.603155,2.09294,3.241905,4.00901,4.967245,2.785865,4.566585,1.7684666666666666,1.7684666666666666,5.3529,0.7453118181818182,1.839226,3.05914,3.957785,0.37571692307692306,1.8362966666666667,4.106934333333333,1.1181383333333332,3.0153766666666666,2.6952266666666667,2.937455,7.49598,2.5252766666666666,3.8516666666666666,1.9754033333333334,2.20351,4.14124,3.256525,3.501735,7.170769833333333,1.7779125,2.797675,4.50798,6.7503874999999995,1.9587,2.3035366666666666,2.54927,1.34771,2.53524,1.7179600000000002,3.879895,3.70673,1.4364075,1.9417416666666667,1.9417416666666667,2.87135,5.71825,4.120523333333333,3.756205,4.537025,4.577805,3.01286,3.666575,4.926085,3.40474,4.388328333333334,3.803295,4.52856,0.9193680000000001,0.346146875,5.5021,3.923025,2.3760933333333334,7.77135,1.53017,4.821466666666667,3.86882,0.35746083333333334,2.07441,1.3055,1.8383200000000002,2.088033333333333,5.334518,3.059895,3.13535,5.0737625,5.41605,4.753845,0.599986923076923,2.16065,0.595593,5.6846483333333335,1.522362,5.11325,2.0809225,3.12330375,3.319475,3.94608,4.119815,5.36715,0.8690463636363636,3.352935,4.10822,2.06782,1.72726,3.670785,3.06142,3.84135,3.82276625,5.529795238095238,4.536,5.81245,2.7421100000000003,0.5411877777777777,3.5305666666666666,3.90765,0.5765515384615385,3.97785,3.86948,4.106895,3.4767,2.67117,5.18585,3.133715,2.984965,2.16227,3.676245,1.7475,3.64236,3.829605,0.6148753846153846,3.51444,3.840525,3.168885,3.892565,4.3294,2.730205,3.837605,0.630791,3.1178566666666665,3.7070766666666666,4.770775,3.6883666666666666,2.61045,3.5172333333333334,2.61045,4.96502,3.053875,3.1008766666666667,1.5981416666666668,3.319183333333333,1.9930125,4.28876,2.9272666666666667,5.53809,3.19166,2.8352733333333333,3.1162766666666664,2.3150251785714286,2.3150251785714286,2.3150251785714286,2.4362266666666668,1.2428083333333333,4.613305,2.4244033333333332,1.6531633333333333,4.2332,2.59479,3.0770966666666664,4.332735,5.484,3.82254,1.9519225,0.980196,3.94852,1.98685,2.258,3.28639,3.505795,2.082485,3.45294,2.697805,1.6517880000000003,4.90698,4.123075,3.87086,3.68693,0.7303433333333333,2.378643333333333,4.76446,7.352755,4.164145,3.052195,2.52282,3.398115,3.6638,1.737965,2.51465,4.85635,2.2923,4.50139,3.77343,5.5748,8.836786666666667,4.034415,3.65313,3.3796,4.904285,4.087045,3.1947650000000003,3.1947650000000003,4.1256,4.046048333333333,4.15162,4.019355,4.22694,4.48749,3.965135,1.1874375,4.23144,4.526785,5.4349,8.041830000000001,5.227,3.8988560000000003,1.90826,1.6412916666666666,2.40504625,4.853975,3.912815,4.71675,2.42557,4.588165,5.2224,5.3943,5.2076,3.1153933333333335,3.88171,4.35612,5.3946,4.74976,4.1359,6.741538333333333,4.54111,2.2376833333333335,5.44945,4.206955,4.223105,3.73829,4.809215,0.8088118181818181,4.46081,4.611045,1.2230785714285715,1.242544,5.037,4.9472,9.3873445,5.10915,4.80854,5.9133,2.921325,2.6525,5.07905,1.796715,1.796715,2.55045,1.6077633333333334,2.9136008333333336,3.410433333333333,1.957495,4.182960454545455,1.3423299999999998,2.18463,5.5394825,3.33701,3.43787,2.9222,4.017445,4.14119,2.964703333333333,1.0702044444444445,3.926675,3.1353666666666666,3.859985,4.217535,3.7211483333333337,5.3716,5.05545,4.57094,3.778255,5.3528,6.5,4.890195,3.12323,3.58291,1.94767,1.94767,3.801925,3.886735,2.53194,2.762586666666667,2.187039090909091,2.69328,1.6060833333333333,1.6060833333333333,4.546225,3.58855,2.19999,3.648155,2.793915,1.739535,1.167875,1.0414833333333333,2.707275,0.46239631578947366,0.9436788888888888,2.8121,3.99201,0.39952000000000004,4.36092,1.993142,5.414,3.37781,7.5576225,4.272385,5.342356666666666,4.92277,5.46785,4.113815,1.95726,1.9023340000000002,3.972665,2.96135,3.740775,1.24847,3.43642,4.3486,2.544675,2.62719,2.682635,4.28809,3.307035,3.36035,3.862075,3.585485,3.30164,3.295125,1.060987142857143,1.934595,2.260165,2.861595,4.321585,7.73259,0.893978,1.5594166666666667,1.5594166666666667,1.9369640000000001,4.052275,2.6659,3.10474,5.699425,2.9568833333333333,1.20331,1.20331,1.20331,2.72378,3.009296,4.643755,3.09561,4.267925,3.27518,3.60395,2.8704,3.3914725000000003,3.46441,4.18993125,2.91079,1.23081,2.99,2.91079,3.40119,1.3197233333333334,1.8351633333333333,2.08521,5.633993333333333,2.424485,5.829305,5.633993333333333,3.40482,1.7191533333333333,1.7191533333333333,2.29526,5.01052,1.7191533333333333,2.195995,5.6148,2.13381,2.617495,5.00398,3.650815,3.97962,2.08762,3.29602,4.20152,2.0431133333333333,2.233405,3.64111,2.08762,2.411915,1.865665,6.0274,2.34622,1.042152,2.493225,3.23369,3.172907,2.05024,1.952847,3.7016,1.8511819999999999,2.10382,2.947265,2.106185,3.49271,3.31143,2.03053,2.405805,2.40642,6.34507,2.371715,3.315035,3.459665,3.459665,9.193123333333334,1.0234133333333333,2.781095,2.503885,3.190355,2.260075,1.2465766666666667,1.2465766666666667,3.41523,2.03536,6.57521,2.11626,3.461745,3.39778,6.60867,2.67463,2.461535,6.22575,6.22575,2.437045,1.4768125,1.2054625,1.2054625,1.4768125,1.9673733333333334,1.2244466666666667,1.130495,1.4573433333333332,1.8682133333333333,3.60599,1.806015,3.13476,2.710885,2.640065,2.672965,2.878945,2.510435,3.124575,3.124575,5.68776,2.389925,2.73248,2.641335,3.3602,2.54364,2.660395,2.30319,5.3371125,1.9077875,1.453024,1.3446623333333334,2.1890723333333333,5.38145,4.091589,3.482975,3.00925,1.842375,1.842375,1.842375,4.39264,2.418365,1.130495,3.20923,3.550695,1.33256,5.4835325,3.2120375,6.73037,3.82988,1.686575,3.408325,2.5598633333333334,2.00934,3.187435,4.97255,3.33231,1.46145,2.35391,2.99472,2.9689,5.37256,2.144765,3.2706,2.569735,5.7726,4.88836,2.080565,2.236115,5.17605,5.11256,5.44159,5.71137,1.0932460000000002,1.0932460000000002,2.659907,2.659907,0.800802,4.59491,3.36496,5.16677,4.43593,5.06979,2.094145,4.291715,4.291715,2.20303,3.38721,3.685445,1.17797,4.21007,3.22746,3.086255,2.486755,4.57602,2.53591,2.323765,3.309465,2.979795,2.93975,5.13878,2.75327,2.130685,3.736985,6.02126,5.80211,4.38027,2.544375,3.36565,2.312725,4.9249,2.66504,3.31331,2.578245,6.18192,4.26582,2.518255,2.823575,2.41079,4.86918,2.470415,3.032195,2.82357,6.95707,4.67166,3.410015,2.40738,1.790255,6.37889,3.06411,3.193035,4.85121,2.94151,2.839455,2.604365,3.156195,1.9394633333333333,1.950085,1.7478066666666667,1.7504966666666668,1.8310933333333335,1.9637833333333334,1.803885,2.11454,1.661845,1.9394633333333333,4.07353,4.12999,2.067415,1.54962,1.54962,3.433136666666667,3.433136666666667,2.9376933333333337,2.9376933333333337,2.608835,1.963825,1.802575,3.78512,2.15247,2.15247,2.31412,2.31412,2.90022,2.021905,4.16033,2.19505,3.124805,1.9553766666666668,1.9553766666666668,1.81519,4.02841,5.0697,1.3197233333333334,3.55049,2.03053,2.19211,3.81688,2.94149,1.895605,2.24952,6.08061,1.949,5.90009,3.04729,3.09626,3.022465,2.68044,6.39118,3.05066,2.06587,2.4946861538461538,2.929265,6.10002,3.413715,1.5062039999999999,1.5062039999999999,3.52486,5.00992,4.8921,4.92998,2.80261,2.72713,1.709385,3.010145,1.543305,2.72835,1.627975,0.7925639999999999,0.7925639999999999,0.7925639999999999,2.2721841666666664,5.140696666666667,2.2721841666666664,2.11231,3.57758,1.779155,1.9383,3.93145,3.33565,5.09941,1.5768066666666665,4.63622,1.5768066666666665,1.5768066666666665,2.332785,1.678755,2.106555,5.99898,2.106555,2.398295,3.89115,1.855705,1.657105,2.772405,2.9651099999999997,3.1608091666666667,3.17806,3.660795,1.44158,4.21594,0.7887745454545455,4.476655,4.368635,2.69423,2.69423,0.7385936363636364,4.0264999999999995,2.734593333333333,5.9496,5.07775,4.12659,5.54505,4.293895,4.15519,5.343,4.44477,4.358165,3.79758,3.823245,5.24735,5.18515,3.35512,3.57781,4.373465,2.5141666666666667,1.31931,4.466555,3.500555,3.328875,1.36506,3.631605,3.725115,6.0255025,1.0735325,5.5853,4.32067,2.06389,2.034085,3.18751,3.514945,1.71449,1.5062039999999999,4.09138,4.7669,2.748775,4.63351,2.99843,1.1639300000000001,3.08813,1.235642857142857,3.22061,2.1211033333333336,3.1497933333333332,1.8879375,2.71594,4.2024,3.221945,4.577615,3.2628,2.2552575,4.67838,4.07606,3.01528,5.45715,4.16757,2.5885666666666665,6.19595,4.91034,3.1006183333333333,2.591326666666667,2.666855,3.1523800000000004,3.26137,2.7751566666666663,4.854345,4.17104,3.81481,2.39882,2.5909733333333334,2.4699433333333336,2.5151833333333333,2.2463633333333335,2.3536733333333335,2.2663433333333334,2.3937475,1.42337,3.029461333333334,1.1422025,1.8535975,1.54982,2.844625,1.6034775,1.8489675,3.805995,4.44274,1.937275,3.967035,4.04418,6.25358,1.9862966666666668,1.638296,6.7096,3.575365,4.791645,4.195365,4.15446,1.99521,3.64537,2.516525,2.88114,4.487165,0.6857791666666667,4.13263,2.223596666666667,0.8283872727272726,5.0754,4.352005,3.875215,1.9054764285714287,4.87268,5.81105,2.7410933333333336,2.9300266666666666,2.4595833333333332,2.0703733333333334,0.574747,3.20966,2.98785,4.89804,2.455025,2.0994075,3.811625,0.9591375,1.95087,1.95087,3.00435,1.95087,4.192,2.60226,4.676935,4.298585,5.83235,13.509959166666667,3.2593666666666667,4.95169,2.626715,4.799145,3.246315,6.726285,2.992523333333333,4.392105,4.715825,3.85208,1.1933816666666666,4.80871,3.2188166666666667,2.6983833333333336,0.9707022222222221,2.1495125,3.36005,7.342368333333334,4.623195,2.8834166666666667,4.684565,3.2687899999999996,4.220485,4.509465,4.47134,2.69041,2.8660333333333337,3.90878,5.80375,2.412035,4.5572,1.9886275,1.9886275,3.052835,4.85943,1.2946,4.157535333333334,2.19367,4.815175,2.5000033333333334,2.58831,3.0161366666666667,2.18872,0.7394714285714287,3.520045,2.8445033333333334,5.4563,4.633835,0.2363940625,5.2384,4.505805,4.072745,6.91191,3.0934266666666663,2.8755466666666667,2.2197633333333333,3.077106666666667,2.8330033333333335,1.4528999999999999,3.0267866666666667,2.70473,1.4040966666666668,3.4867666666666666,3.13171,2.762003333333333,3.111283333333333,1.3767505555555557,4.28132,2.77655,5.32675,3.956525,3.85143,1.5962100000000001,2.48948,1.198395,1.84223,1.198395,5.2152,3.6240666666666663,1.60354,2.4949425,3.935465,3.798265,2.863865,3.7347,0.3539265,1.4708841666666665,3.693025,4.219955,6.33785,1.9124075,2.8719066666666664,3.1261500000000004,2.4959266666666666,2.84136,3.533285,4.929895,2.56435,2.4428300000000003,2.9399800000000003,2.53852,2.7007,4.28889,1.92237,4.71456,3.840175,6.0729,7.542925,0.7324022222222222,0.827285,4.34217,6.93093,2.08304,3.44463,1.41257,1.41257,3.370615,0.44909888888888894,3.54748,3.972025,3.286635,4.104645,3.252485,2.575305,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,0.23373266666666667,2.22215,2.9852,3.7279516666666663,2.9982616666666666,5.544684999999999,6.086515416666667,2.875125,2.2211166666666666,0.8806416666666667,3.318495,0.69200875,5.654249166666666,3.4331325,2.241905,0.69200875,2.338055,2.684655,1.223285,3.84112375,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,0.1639486666666667,4.40458,1.5978525,4.93865,4.697715,1.771246,4.92684,4.413385,5.09765,4.8470941666666665,3.6094,3.316175,4.59677,2.163095,5.79109,4.72413,0.76235,1.5300857142857143,1.3936600000000001,3.3165366666666665,3.3165366666666665,3.05244,3.954875,4.463885,3.605095,4.18638,2.7464433333333336,1.8757400000000002,0.43741285714285716,4.117465,3.01073,2.573655,3.90496,3.28133,3.12331,5.3054,4.493925,6.690365,4.081915,4.964225,5.84405,4.476895,1.3637228571428572,2.98879,5.390456666666667,34.4166768975469,1.323615,4.473885,3.11055,4.455275,3.980335,5.38115,4.92395,0.40971142857142856,5.41145,4.663205,2.05488,1.96112,3.58832,1.5706475,2.369375,2.38357,1.7599025,2.742275,2.51088,2.705555,2.69189,0.5959038461538462,3.112535,3.732045,0.37620315789473685,2.42815,2.705725,3.08088,3.85239,1.79473,4.526165,3.89349,3.19167,3.63981,3.17517,4.3228,2.910705,3.78311,2.2342325,5.390456666666667,3.511505,3.509985,2.862805,1.77104,3.93384,3.24294,7.033810000000001,3.30315,4.96455,6.7551000000000005,5.2682389999999995,2.27825,4.49029,6.2722825,7.88752,2.5242400000000003,2.43563,5.0163,5.666133333333333,4.409595,3.27212,5.384115,2.786075,1.66305,2.1824325,60.62884155769326,5.0696,4.512645,2.583125,0.8747400000000001,2.88626,3.0192366666666666,3.5187000000000004,0.8611866666666667,4.526915,0.8416988888888889,7.71945,1.98685,3.364266666666667,1.758096,2.57967,2.5243066666666665,3.4172333333333333,2.466346666666667,2.1723833333333333,3.415233333333333,1.57139,5.170370833333333,3.952033333333333,1.2183375,2.719393333333333,1.3793199999999999,1.5522375,7.61008,6.0899,3.40274,4.62599,5.50512,1.4497857142857142,3.6355,3.0577,1.6312525,5.72805,3.63497,3.956055,1.776885,2.991140833333333,3.697533333333333,3.9792,5.768,4.78883,4.643505,2.600475,3.836165,4.5325,3.1585900000000002,1.4981019999999998,4.344265,3.4341000000000004,4.18544,5.26005,3.94029,4.00258,4.81523,4.442145,4.320885,4.8045,4.33666,3.300186666666667,4.23973,4.36468,3.1096,4.097905,3.802335,1.453925,1.453925,4.30784,4.97784,5.0513,3.806065,4.87022,3.3922333333333334,2.718545,4.716985,5.4607,0.7536572727272727,5.45,6.807775,5.8247,5.77055,1.0522433333333334,2.894915,0.99471,0.99471,0.99471,3.728165,3.4951000000000003,2.83163,3.5872666666666664,0.98245,5.1773,5.55645,3.01633,1.6743075,2.1589325,4.02429,3.75187,3.620485,3.6375640000000002,6.89105,3.638265,2.5092233333333334,4.91823,6.95825,2.1918,4.177335,3.81477,3.07284,5.53515,4.32355,5.17955,6.0562,3.15692,3.7679822222222223,1.9080700000000002,1.9080700000000002,0.7103545454545455,8.720912,2.10322,5.87325,5.75365,4.31608,5.6144,3.76696,3.0799416666666666,4.74849,7.65576375,5.773118333333333,2.38186,4.35395,1.02157,3.707115,1.9325066666666666,0.9228166666666667,1.1576242857142858,2.7690566666666663,3.0586533333333334,2.852813333333333,1.1642914285714288,2.68473,3.1245133333333333,0.931521111111111,2.9008366666666667,3.368233333333333,1.65075,1.9193919999999998,3.112546666666667,3.12415,2.9650233333333333,2.4798899999999997,1.8519020000000002,5.5074,4.52335,4.14098,4.47278,5.36245,3.157325,4.63981,6.63255,5.17215,4.61567,3.93023,9.838208333333332,9.051285,3.146926666666667,3.61307,2.0744333333333334,3.81209,3.061705,4.61966,1.0133349999999999,3.83037,3.561065,1.7341499999999999,4.17835,2.9937899999999997,4.427585,2.65029,3.81853,6.44575,7.96593,3.993135,1.5695750000000002,1.5695750000000002,1.5695750000000002,4.86768,1.122635,1.512975,0.48960833333333337,4.518400833333333,3.0223666666666666,4.05309,1.00046,1.21262125,3.078995,4.222305,3.67311,16.910591904761905,4.21051,4.481245,6.388835,2.9464966666666665,3.555235,3.442825,0.9352922222222223,1.6894575,4.210725,3.69633,4.513645,4.6658,4.63613,3.942685,2.7486437777777777,3.38236,5.55535,0.56947,4.92875,2.2870475,4.258125,5.04375,3.5088666666666666,2.4639366666666667,4.3577900000000005,2.2869466666666667,3.72009,6.16975,3.2338533333333337,3.709625,4.545115,4.26162,4.825315,3.883445,3.604935,4.55094,5.0033,4.852655,3.84389,4.64959,3.849045,1.1785214285714287,1.4340425,6.006077166666667,6.34115,4.119205,4.796795,2.580925,2.7735566666666664,2.64607,5.63841,1.926805,2.129805,3.134916666666667,3.0642033333333334,3.535933333333333,4.645525,3.24943,5.055095,1.216775,4.841815,0.9011266666666667,4.02998,3.332895,1.619555,4.79715,0.98436,4.981015,5.7708,5.20805,4.20923,3.912864166666667,3.91416,3.1332133333333334,5.36475,6.0055,2.954827,3.91114,2.471885,2.583755,1.955675,2.56267,3.522125,5.24085,1.080265,4.2297025,1.2613625,3.3581,1.6044833333333333,1.080265,0.1923535135135135,3.74887,3.00883,2.2951258333333335,1.9608833333333333,2.576295,1.0602825,4.08853,3.67641,4.838895,2.5601433333333334,6.28365,6.5516,2.6584933333333334,3.5157000000000003,2.637696666666667,0.79731,2.49269,6.1609,4.557795,5.52425,4.897985,2.002666666666667,1.36158,3.8112225,1.5943025,2.217685,1.70899,2.517925,1.674065,1.8987375,1.8928475,2.2703925,1.9753025,1.39765,1.356015,2.01427,2.100945,2.2489275,2.182863333333333,0.5366673333333334,1.18285,2.7890466666666662,3.3345000000000002,2.143095,1.8627,1.51997,4.01394,2.19171,2.55258,3.84202,5.9574,3.66869,3.0128500000000003,4.65921,1.6739826470588235,3.77077625,23.690074,4.625896666666667,6.037,4.39424,2.378816666666667,3.966285,4.77837,2.3453,5.03225,3.3287166666666668,0.7962975,3.450215,4.656615,3.95778,4.048965,1.4673999999999998,1.9676766666666667,2.3314666666666666,2.299695,1.5237142857142858,3.546466666666667,5.1092,4.230595,3.272235,3.939885,4.984285,3.589745,4.803515,1.2797625,3.24591,4.138295,5.0816,1.9041139999999999,3.438,1.752345,1.752345,3.526735,4.888165,3.008646666666667,3.0549233333333334,4.108295,3.819075,6.5828074999999995,4.758485,2.261905,1.6894575,2.966095,4.29305,3.180816666666667,2.6355819047619047,2.6355819047619047,3.3510333333333335,5.12,3.680435,5.2470622222222225,2.372575,3.2420166666666668,0.60856,0.60856,0.60856,3.543,3.71951,4.105638333333333,5.9936,2.3144175,4.989825,5.1564,4.94209,3.55076,5.48645,2.446465,1.3714771428571428,4.387335,3.89862,0.47546214285714283,4.332466666666667,4.907295,1.5100566666666666,5.15255,5.1699,4.72242,4.506415,3.670995,2.85273,4.372425,1.663158,4.232945,1.6402150000000002,4.49775,6.00945,1.2304225,3.06402,7.236695,4.14836,3.5052,2.28277,3.925375,5.7951,3.0313033333333332,8.122471666666666,4.25116,2.1613966666666666,3.147726666666667,2.7561933333333335,2.5552533333333334,2.72055,1.7721533333333335,4.800995,0.607935,2.0063725,2.0063725,3.185755,3.58432,2.330115,3.084205,4.397625,5.32545,4.65236,1.2886733333333333,4.689682523809524,4.4606,4.694395,3.700155,4.295696166666667,3.8456395,0.45005666666666666,2.907714285714286,1.05673,0.45005666666666666,4.35742,0.8284055555555556,4.3068,3.830885,6.605649,2.08643,1.0471675,1.136682,2.165075,2.93501,1.5585133333333332,2.37742,3.281155,3.653515,2.0454666666666665,2.3536699999999997,4.49555,3.105805,3.87506,5.9863,3.30575,5.1869,6.996815,4.5922,3.52741,4.607265,3.752175,4.48999,5.3303,5.9740625000000005,5.435,2.39026,1.0339966666666667,3.815555,3.89488,4.239665,4.434245,4.278455,5.4397,2.6910399999999997,2.573583333333333,3.118256666666667,2.3984166666666664,2.029176666666667,3.017276666666667,3.2195933333333335,2.6477766666666667,4.075755,4.7555,4.24912,5.5068,2.9252866666666666,3.501633333333333,2.9351,0.7432071428571428,4.24131,4.024055,4.54031,3.00853,5.594543333333334,3.5135,4.78616,3.99484,0.6336776923076923,0.5615285714285714,4.423575,2.863217,3.160335,4.716045,4.286855,1.721562,5.5001,4.296915,2.6865433333333333,2.705906666666667,2.370595,2.1038375,3.5820666666666665,3.2797866666666664,3.23616,2.98391,3.6196,2.639725,3.1556933333333332,3.798766666666667,4.37531,0.579648125,0.579648125,0.579648125,3.364751458333333,3.6097,3.616633333333333,2.83022,2.99091,1.1874375,3.0079700000000003,3.0969033333333336,1.921545,2.68352,2.5874333333333333,1.0310855555555554,2.8656933333333336,4.58225,9.613138166666667,1.5128379166666668,0.6788339999999999,3.476855,0.6788339999999999,0.6788339999999999,0.6788339999999999,0.6788339999999999,2.0441675,3.956182,4.049475,5.0276,6.10455,2.89498,2.813606666666667,3.05265875,3.179261666666667,4.89528,1.0685866666666668,2.329076666666667,3.25212,2.577733333333333,2.9636899999999997,3.468575,2.1927166666666666,2.178235,1.1973444444444443,5.62105,3.136985,3.593115,0.873645,0.5680970000000001,0.5680970000000001,0.8899094347826086,1.7635544347826086,0.8899094347826086,0.8899094347826086,0.29154043478260866,0.29154043478260866,0.8899094347826086,1.5507,2.450553333333333,2.897435,3.2243766666666667,2.504916666666667,2.68249,3.2253433333333335,2.695586666666667,4.40254,3.4714,1.8437175,2.2012066666666668,1.70236,0.18182994108983802,0.18182994108983802,0.18182994108983802,0.18182994108983802,2.4368766666666666,2.368043333333333,0.8645619999999999,5.3402,0.8229863636363636,1.693918,4.726271666666666,5.29545,4.54599,2.96844,4.39125,3.59111,1.7181533333333334,1.2133975,3.854945,4.69915,6.43335,2.26998,1.3581566666666667,1.8272433333333333,3.0632433333333338,1.4436533333333335,2.794173333333333,2.939106666666667,3.357366666666667,4.68428,4.05022,3.0892,5.0383,2.55361,4.219455,5.31555,4.194345,4.417685,4.59691,5.454039999999999,5.047289166666667,3.1778771428571426,5.034885,4.66101,6.6602,4.617285,4.62875,2.356495,3.00059,4.217255,4.96296,4.20438,3.91086,4.03402,4.131525,3.99971,2.4482666666666666,5.7474,3.459335,7.5937825000000005,6.16495,6.0069,5.01275,1.491842857142857,1.02444,0.6488584615384615,1.7918939999999999,5.19255,5.54295,3.99667,1.722088,4.107195,2.91806,5.112,5.49865,6.066910999999999,4.293295,2.99338,1.62117,5.3574025,4.01446,3.026485,1.529465,1.03887875,3.869265,3.112535,3.32165,3.489945,2.1284,4.49084,1.67494,2.9097233333333334,2.390685,4.68718,5.78585,5.0976,2.4565375,1.655275,5.69055,2.925076666666667,8.80083,2.906975,5.43155,6.0766,4.70478,5.55935,3.532945,5.12775,2.28811,4.13386,5.277006,2.54525,4.17401,4.628295,7.62365,5.0628,3.256596666666667,4.28381,3.979935,3.105805,3.265825,5.2576,5.89685,2.4770125,3.0611266666666666,3.3657333333333335,2.313375,2.610035,4.472685,6.0728,5.2122,4.724515,5.1084,4.389245,5.15835,0.6647684615384615,3.1687133333333333,1.24576,32.00261255825138,2.598175,4.628345,2.684995,4.715695,1.7163620000000002,2.4472033333333334,3.004036785714286,1.5362142857142858,1.5362142857142858,1.5362142857142858,1.5362142857142858,1.4678225,3.338695,0.37637444444444446,7.916997222222221,0.37637444444444446,4.55281,5.0898,2.0409775,5.6906,2.93775,4.065150666666667,2.35226,2.523136666666667,2.64742,2.110176666666667,0.6337338461538462,2.53906,0.7517616666666668,3.3346999999999998,2.2167666666666666,2.3367560000000003,1.1943533333333334,2.3367560000000003,6.32925,8.30686,4.8034,4.435365,5.6922,6.218,7.361291666666666,3.13945,1.5161425,1.5161425,2.3190733333333333,5.17195,3.74336,4.671635,6.249153333333334,4.079425,2.80168,4.077705,3.490875,3.481165,2.10514,1.0393599999999998,1.82648,3.544905,4.227675,5.376123333333334,2.1414225,3.970575,1.4413639999999999,3.29789,1.355294,3.5844666666666662,3.1207933333333333,3.0833033333333333,3.5419,3.0404933333333335,5.03235,0.7005546153846154,3.34906,3.7375666666666665,2.7393733333333334,2.3035533333333333,4.2304312500000005,3.4544333333333337,2.183733333333333,4.85396125,3.64736,5.27405,4.05974,3.61054,5.7093,5.0607,2.3098533333333333,5.83495,2.361858333333333,1.79545,3.2319333333333335,2.5953066666666667,3.1253433333333334,2.53291,1.80534,3.4360674393939394,4.39871,3.4002475,2.4316910000000003,2.4316910000000003,2.375745,3.885245,3.958955,0.6815054545454545,3.625905,3.27641,8.68392,0.8813045454545455,4.580575,3.90433,5.62975,3.96914,3.900345,2.29138,4.135135,2.845885,5.60415,2.7273083333333332,1.05949,3.65936,2.65028,3.7671,2.698396666666667,3.566485,3.576045,3.62847,5.247594,3.24486,1.99424,5.23625,2.4274766666666667,4.5593,4.93237,5.0469,4.5429,4.17631,2.79811,2.1506433333333335,2.9511266666666667,2.8489799999999996,2.8394,3.233283333333333,2.805375476190476,5.051803333333334,2.9494733333333336,2.5252433333333335,6.827088333333333,5.1130708333333335,3.8402950000000002,3.216483333333333,3.8636666666666666,4.0797,3.417295,1.98049,3.949215,5.15345,5.0095,1.52972,4.31608,2.7574533333333338,7.315875,4.82044,9.05521,3.920975,3.875335,2.117285,4.034785,5.72683,7.57406,3.58454,5.89982,3.828205,3.267325,3.74122,1.723126,4.61592,1.4853016666666665,3.67144,4.523875,3.5757333333333334,0.864325,9.678566666666667,1.2445555555555556,2.0440275,2.5632,1.9461066666666669,3.5899,1.3033433333333333,3.495665,3.61182,2.439443333333333,4.27677,1.1740883333333334,3.72485,1.3989916666666666,3.0468363333333333,4.002805,5.1262,1.5889975,6.095737916666667,2.4678763333333333,7.72458,4.415675,2.734095,3.92843,3.35943,1.2027208333333332,7.38834,2.81568,3.176215,2.40135,3.98207,2.1488375,3.18694,2.23325,3.97361,1.35932,5.90525,2.72823,4.0369,0.8888109999999999,1.8959086666666667,3.8254,5.09555,5.21738625,1.55122,1.55122,6.03855,4.29368,6.38635,3.719555,3.329795,9.411425000000001,4.55328,5.6709,4.04874,2.5918,2.200230566052227,0.3684485,0.19393516129032257,0.5985884946236559,1.2331935714285713,0.652493732718894,0.19393516129032257,1.415186,0.4046533333333333,1.6016420714285713,2.013774494623656,2.03505,2.3589775,2.1795533333333332,5.36125,6.498128333333333,5.05505,5.53955,4.670825,5.055,1.2724533333333332,5.12815,3.97892,5.74705,5.10395,5.2445,5.5785,6.11725,5.60975,1.3129366666666666,1.3278157142857143,1.8401520000000002,6.267457,1.342142,5.5232,4.91734,7.146790416666667,4.903505,5.64525,4.6547,4.83307,2.55535,5.4292,5.4686,6.652868333333333,5.196,6.011796666666667,5.6303,3.91388375,4.315465,3.899366666666667,0.9506669999999999,3.7673,4.635605,1.2007125,3.7268000000000003,4.86971,4.750995,4.88989,2.420105,2.999945,2.5324433333333336,4.66512,2.1901025,3.687525,1.2242683333333333,3.3729,3.684595,4.08806,5.3376,3.462063333333333,0.6278933333333333,6.19715,1.0140075,3.729545,3.050186666666667,3.605855,1.9972066666666668,3.841835,3.7316023076923077,3.3632666666666666,4.45011,15.556273547619048,5.276403333333333,2.3383525,8.3577,1.5154325,3.91084,2.943896666666667,2.80499,2.0866266666666666,0.21412565217391305,2.8885533333333338,4.60448,1.8026019999999998,2.11095,3.345133333333333,1.84113,2.2147166666666664,1.5755285714285716,3.59379,4.919875,5.01095,3.42434,0.48726,2.29348,4.6412,2.70621,4.057735,4.67593,4.368865,5.69975,0.4918511764705883,2.4431133333333332,2.4431133333333332,5.4274,5.0768,4.87574,2.7186,3.5303,2.841283333333333,5.4342,3.642285,5.7664961111111115,4.74691,4.487865,5.041,2.71755,1.965214,4.384275,4.09828,4.08058,4.714815,1.809508,5.0836,4.23946,3.704595,4.651975,3.90665,4.459255,0.6383206666666666,3.21425,0.6653175,3.2725500000000003,3.441315,4.35539,18.026789523809526,3.63806,3.665055,2.5598633333333334,1.02472125,2.3386633333333333,2.44482,1.537796,2.313695,2.528125,4.93161,2.235046666666667,4.01577,4.279575,2.11151,4.671265,2.8934466666666663,4.75599,4.710795,5.56515,1.607145,1.996635,2.360505,4.899195,4.876215,1.195788888888889,5.3624,3.99237,5.6669,4.75301,1.71064,4.59497,3.57771,3.73879,4.02717,4.27857,3.1702433333333335,0.6555625,7.500068333333333,1.557798,0.21272555555555556,0.21272555555555556,0.21272555555555556,4.99801,4.027145,2.6811666666666665,4.19664,2.80594,4.366615,4.474585714285714,4.3013900000000005,8.73725,4.26253,6.821918333333333,0.7904925,0.76864,2.4464125,4.37758,4.260695,2.14636,5.1881,5.47925,3.40829,3.50989,4.439275,2.40882,5.04065,4.970592,2.3923366666666666,3.0830233333333332,2.887836666666667,2.75351,6.1911,3.88117,0.6683821428571429,4.069235,3.15401,4.213845,4.967103333333333,4.76454,2.82212,5.65235,3.64375,13.521615416666668,4.737955,6.95069125,2.4768866666666667,6.558624,4.479435,4.142795,2.1490825,2.33559625,10.0513,2.2738733333333334,4.3728,4.1659999999999995,3.8020333333333336,3.5141666666666667,3.0438466666666666,2.0422175,2.2829375,3.0657833333333335,1.827022,4.0739,2.421256666666667,2.5679833333333333,3.5170999999999997,3.631066666666667,2.55186,2.55186,2.445936666666667,3.6293333333333333,3.5122666666666666,2.32931,3.188383333333333,4.3299666666666665,2.810306666666667,3.0965666666666665,3.8683333333333336,2.544636666666667,2.085665,4.0078000000000005,3.01003,1.830838,4.1956999999999995,2.06235,2.531493333333333,2.943,2.2534833333333335,3.4898000000000002,5.642925,2.4431933333333333,3.8018,1.90458,10.478266666666666,1.9655566666666668,1.7951166666666667,2.1810400000000003,1.0471522222222223,1.55527,4.496873333333333,2.7182199999999996,2.7182199999999996,1.703508,1.5407983333333333,3.862801666666667,4.034393333333333,2.142583333333333,1.5396033333333332,1.684478,4.645762,3.7865,4.177133333333333,8.681083333333333,2.9577842857142858,2.5695433333333333,3.2493247204968942,4.395333333333333,2.085665,3.4520999999999997,3.0322666666666667,3.5811666666666664,3.4534808333333333,0.8565375,3.3131385,2.9689099999999997,2.8292566666666663,4.037195,3.3491,0.7152590909090909,1.9000035714285715,5.4555,2.5584189999999998,3.2968566666666668,1.6783666666666666,1.6783666666666666,2.07132,3.769538333333333,0.979878,2.2402925,4.7250000000000005,4.7250000000000005,0.6606047619047619,6.000404,3.645735,4.045025,4.972055,1.1914971428571428,3.457966666666667,3.5938666666666665,5.3282575,5.89623,2.4391966666666667,0.7001000000000001,2.6700633333333332,2.60247,3.0293313333333334,2.3336166666666665,2.2964466666666667,3.0142066666666665,2.34619,2.434153333333333,0.8189545454545454,5.14445,4.9582048571428565,1.3494183333333334,1.7569428571428571,5.70745,2.068,1.622985,4.206295,1.6289000000000002,3.666265,2.65355,3.6563666666666665,9.208603333333333,5.0125575,4.752125,5.25945,2.4338836363636362,0.822443,1.9926939999999997,7.15965,1.77905,3.99346,3.96963,3.59398,21.489896416666667,3.290896666666667,1.3827933333333335,1.14103125,3.17614,1.4193833333333332,4.317274,5.28335,3.3844445,3.3579666666666665,1.7311033333333334,1.4293316666666664,2.8749333333333333,0.59088125,3.5696,3.7159999999999997,3.1119033333333337,2.4457006666666667,2.592713333333333,2.866163333333333,2.0372766666666666,3.015916666666667,1.6688079999999998,3.7982333333333336,1.5490733333333333,3.895975,4.052825,2.7325233333333334,5.5677,3.06118,3.757295,5.15475,4.61189,3.17336,3.0235066666666666,2.39227,1.0605057142857144,1.0605057142857144,1.0605057142857144,2.46529,3.5056999999999996,2.708293333333333,2.528113333333333,2.26857,2.078435,3.904695,4.837815,3.63022,6.582585,3.135405,2.573225,1.9228075,1.0069516666666667,2.4343933333333334,4.20845,2.498133333333333,2.613636666666667,2.49608,2.37124,2.6128066666666667,2.8404366666666667,2.87106,2.8975766666666662,2.2761633333333333,3.4791000000000003,2.232963333333333,2.238535,1.6165725,1.837405,3.1028333333333333,3.0795333333333335,1.99007,3.82338,5.4078,3.014893333333333,2.5964607692307693,5.984258333333333,4.251805,4.94296,5.6086,4.76248,4.27733,6.62242,1.2481825,4.24178,2.649225,5.3338,5.07875,3.799125,3.791425,2.3794175,7.82366,2.38261,0.8239741666666666,8.00416,4.6778,5.837709047619048,4.651775,2.9524685,1.780685,5.14395,4.414805,4.641365,5.4035,2.372875,4.594825,4.5816,1.70236,4.01924,2.904675,1.40227,4.593895,0.6313117647058824,4.146978333333333,3.851015,4.79321,3.404865,1.692055,3.44863,1.831145,1.487425,2.9236866666666668,3.2818199999999997,3.2707433333333333,7.070590641025641,2.0491775,6.5886225,9.507375,6.5441275,3.167065,1.4261771428571428,2.944123333333333,1.4261771428571428,2.8542666666666663,2.0865666666666667,0.3173629411764706,1.2046829411764706,0.3173629411764706,0.3173629411764706,0.3173629411764706,1.2046829411764706,1.2046829411764706,0.3173629411764706,0.88732,3.94338,3.26012,3.013835,3.32822,3.5649,4.4435,3.066650666666667,1.602204,6.673986666666666,3.1724866666666665,3.92988,2.76538,1.0317727272727273,1.2742625,4.53686,3.5014,1.1357555555555556,1.557266,0.7721781818181818,3.161954829004329,4.17668,5.1434,3.5117333333333334,5.581393333333334,0.6024792307692308,4.342865,3.3161424999999998,3.104556666666667,2.5347633333333333,3.811366666666667,2.45013,3.014673333333333,2.58718,2.992475,3.48701,5.24305,5.0288,2.13664,5.05605,4.34869,3.08588,3.822795,3.50686,0.32571466666666665,5.1142,3.614305,3.09374,3.330292,4.29195,3.98536,1.95767,3.042885,3.711795,8.638169999999999,5.4087,5.649,4.75602,3.7370675,0.7592025,2.106905,2.127755,1.2159,1.80813,4.942885,5.58415,4.04531,5.11705,3.6375640000000002,2.586926666666667,0.902825,4.00257,1.2176733333333334,1.1645233333333334,3.271435,3.63327,4.606645,1.29785,2.6153033333333333,9.00285,3.3267399999999996,3.093663333333333,0.85783,4.05442,12.471706666666666,3.427305,4.12675,3.112715,2.815335,4.768625,5.13715,2.11322,4.451055,0.584393076923077,4.64933,2.216225,1.739375,1.739375,3.5469333333333335,4.54139,1.609235,4.20971,1.3476128571428572,3.91066,2.516284166666667,3.5044,5.0047,3.515085,3.839645,2.68915,2.6389825,2.6389825,11.452505,0.694132,2.85474,3.3305933333333333,2.1315625,1.9971175,0.9704485714285714,1.3953025,1.19571,1.97086,4.982555,2.376255,4.368897499999999,2.05803,4.114145,4.06332,1.7189166666666666,1.9976725,1.06053,6.210592833333333,2.039515,2.152355,1.7370180000000002,1.9516940000000003,1.14103125,2.5670495833333336,3.519815,2.2555866666666664,3.1052466666666665,2.45736,2.7430266666666667,1.6396766666666667,3.1008533333333332,2.57975,1.8750900000000001,1.8614233333333334,2.8674999999999997,2.8674966666666664,2.3672400000000002,1.1660333333333333,2.56501,2.10364,2.6692,0.32079684210526316,0.39797583333333336,2.23963,2.21793,3.1921,3.05511,2.64617,5.0157,5.72725,4.345935,4.7161,4.431105,3.83052,2.973193333333333,3.682925,0.739870909090909,0.06124363636363636,7.02225,0.06124363636363636,3.58717,3.010725,5.40655,3.48042,6.3317,4.60195,2.0164666666666666,2.44539,1.0028183333333334,5.25115,6.2732,3.706,5.43475,1.909155,3.871315,1.9856679347826087,3.22069,3.2321299999999997,3.98811,5.095325,3.464905,2.079546666666667,2.079546666666667,4.03487,7.79953,3.487245,2.1889566666666664,2.39067,4.55012,3.291425,5.00355,3.635925,1.0630444444444445,4.20029,2.6387300000000002,2.76242,4.293725,1.1676933333333335,2.4543066666666666,3.834225,3.525135,5.06585,2.863875,2.88095,3.79513,3.971235,4.414845,4.996305,4.299265,3.258746944444444,3.86397,2.9753900000000004,2.784473333333333,2.8099600000000002,3.917066666666667,4.34795,3.049353333333333,5.160605,4.27936,4.01216,5.43385,4.525305,3.351325,1.430124,1.3805275,4.06302,3.5820666666666665,1.6101866666666667,2.963506666666667,3.26264,3.2618233333333335,4.0956455555555555,3.2828999999999997,2.3297625,12.630365805555556,2.1365266666666667,1.8806239999999999,4.819465,1.0348140000000001,3.22354,3.92155,4.83253,3.419115,1.2537777777777779,2.2943166666666666,2.5601433333333334,1.5455780000000001,4.3768,1.02759,1.02759,3.344936666666667,1.5549600000000001,1.7899766666666668,1.7792175,3.42148,5.01305,2.008635,2.703415,3.540733333333333,2.8303833333333333,2.9167400000000003,1.9949480000000002,6.38015,5.57985,3.89125,0.7539092307692308,3.80339,3.570795,1.0460454545454547,5.5629,3.3695,8.6678,4.840755,4.86564,3.573815,1.5274125,3.141435,4.900425,4.70168,4.114595,3.84337,4.420195,3.85712,3.5392333333333332,3.5392333333333332,4.44053,2.6173391666666666,4.154935,1.587275,5.602574583333333,5.488581666666667,1.5100566666666666,4.57447,1.05877,5.7645,4.020595,4.91805,4.57535,4.27494,2.56485,2.542625,4.411365,4.29398,5.0945,4.31947,1.82622,1.3587339999999999,4.5749,2.0428266666666666,5.2248,2.956295,3.49979,8.176535,3.71212,4.59326,5.1504,3.993165,4.772535,8.118495,4.28738,3.29186,9.4152,4.022285,0.6017628571428572,2.0654102930402933,4.677475,0.614214,4.830935,4.284925,4.894315,4.608455,3.23414,3.403495,4.65116,5.0706,2.687075,0.7228357142857142,4.83148,4.597865,4.66916,4.297945,2.93784,4.4808,3.59439,0.673746,3.343055,4.30447,2.5502,3.1819133333333336,4.2973,2.286791666666667,5.65025,5.2887,4.0546875,0.88604375,3.1856033333333333,5.614860833333333,5.614860833333333,8.740593333333333,2.04446,0.8474775,0.8474775,24.580763333333334,2.68745,7.690023333333333,0.35746083333333334,1.3055,3.1521399999999997,1.00535,3.71998,3.790975,2.2589125,2.2589125,4.32251,4.9945,3.53963,2.5233866666666662,2.5233866666666662,3.43343,4.208575,3.75702,3.5516,2.0635233333333334,2.6285483333333333,3.9246490000000005,1.93712,3.507155,2.9670199999999998,2.819188214285714,2.819188214285714,3.4507666666666665,0.8285344444444445,2.4724833333333334,1.7166066666666666,3.3348999999999998,2.93486,2.992453333333333,2.7562800000000003,4.660065,2.29495,3.1438633333333335,5.456064,1.329728,2.21657,3.11722,2.67469,4.40062,5.873176666666667,1.4029366666666665,3.803266666666667,2.4532375,5.07885,6.4759,1.47723,5.26266,5.050376,3.548786857142857,4.6327,1.0463042857142857,1.9041139999999999,3.14003,3.9098361904761907,1.2691616666666665,2.4696375,1.740895,1.672306,2.78025,3.5055700000000005,5.1798775,1.03925,1.4340857142857144,2.89705,13.264275000000001,4.649166666666667,2.6447399999999996,1.1827299999999998,2.5410761904761907,0.9690828571428571,3.2564533333333334,4.1964266666666665,4.9675,3.371966666666667,5.5413,1.62059,3.8046333333333333,4.20801,2.88636,4.058238888888889,1.8159533333333335,1.1077655555555554,2.472983333333333,2.93805,7.659981666666667,2.8534794285714287,2.65218,0.717759,4.821466666666667,3.5709999999999997,1.127792,5.69608,1.98788,2.4549966666666667,5.59945,1.2836888888888889,3.14455,1.0069636363636363,3.0431333333333335,4.296815,3.1038533333333334,3.2243,2.2237933333333335,2.55784,4.67794,4.880515,5.36005,1.5622275,4.506685,3.64171,4.46319,3.421476,2.5786366666666667,4.219131333333333,1.006808,2.849052380952381,4.73611,2.79065,4.077155833333333,1.360575,2.679543333333333,1.98366,1.98366,7.298246666666667,3.182096666666667,5.673395833333333,3.406185,1.78585,2.8054066666666664,4.6758033333333335,5.550466666666667,8.72339,4.840075,2.6856015,2.0428433333333333,2.0453938333333332,4.058516666666667,3.805705,1.504006,1.9992125,3.23900625,1.299,3.1394300000000004,19.447655,3.1858400000000002,2.7998,3.0426266666666666,2.995816666666667,2.608216666666667,2.2850266666666665,3.27075,3.6283999999999996,2.62092,2.624633333333333,5.803668666666667,2.42338,4.9088205714285715,2.9365185714285715,2.7742205714285717,1.4865566666666667,3.8831277777777777,2.1425125,4.1335,5.11625,4.12724,3.3437158333333334,3.23244,2.42586,3.4621,3.6260666666666665,3.4605333333333337,3.3700666666666668,0.8545118181818182,5.42555,2.26443,3.341833333333333,2.8032,1.9933175,2.1482099999999997,2.1482099999999997,3.381283333333333,1.9866383333333333,4.932905,4.38014,3.711195,4.553805,4.89183,4.667185,4.667185,4.16441,2.98592,4.777855,2.737205,1.630198,2.16142,4.574175,4.21796,2.78315,3.64444,5.481132499999999,3.9063,6.386841059523809,2.86709,0.847152,0.847152,3.338145,4.96069,3.81216,3.3498840000000003,2.33798,1.8349833333333334,1.4794366666666667,3.0505099999999996,6.11572,1.5146249999999999,4.204475,3.7937,3.693995,5.2075,5.04495,4.708136416666667,3.4360999999999997,2.4318275,4.31567,4.512965,2.1225425,1.069672,4.136235,2.74215,6.55595,3.8138,2.65126,3.2194,3.72199,3.699115,4.680675,3.078895,4.446885,3.953175,4.263255,3.717665,3.495,3.45954,3.95021,2.62467,4.447825,3.279545,5.15715,0.6052833333333333,2.405905,1.9773775,2.166685,1.82645,2.74489,2.6087433333333334,1.8158833333333335,4.435105,5.31043,1.88569,4.080085,4.39744,2.45673,5.496648333333333,4.123058333333334,4.59613,5.07155,6.981116666666667,2.0837566666666665,3.05621,1.8692733333333333,2.819803333333333,1.749595,1.80536,3.92215,3.44924,5.5281,1.0215544444444444,3.00077,4.34234,2.2686925,5.2977,3.65743,2.485155,3.7076,3.421675,2.015215,1.8652419999999998,2.60245,3.213375,3.41565,1.988895,2.776738571428571,2.776738571428571,3.5994,3.4441,20.05171261904762,1.01446,5.5790875,1.9355875,1.8764866666666666,3.61471,3.8008,1.8095525,3.79891,4.514095,1.3134166666666667,1.3134166666666667,1.1046133333333332,1.82498,2.366616666666667,3.1036466666666667,4.783643333333333,3.614125,3.6932333333333336,0.5129757894736842,3.4866357894736844,1.9372299999999998,2.24344,4.4274425,3.35144,3.97547,3.452185,4.529655,4.699605,1.9837775,4.023265,5.666133333333333,2.23982,3.46211,5.2134,2.06191,4.958265,6.29235,1.27849,2.0782,3.7199000000000004,0.70448,3.2736133333333335,3.428285,5.0404,5.00235,2.8151238888888885,8.052516666666666,3.0995066666666666,2.95729,0.43566352941176467,4.20515,5.363814285714286,3.189228571428571,5.42555,3.75961,2.537076,1.7955100000000002,5.458178,4.37529,4.256495,2.964975,2.08337,3.872605,4.1702,3.0208999999999997,2.10758,4.010730833333334,6.362515,2.708105,3.7816,3.567075,4.0236,1.588257142857143,1.588257142857143,3.2020133333333334,3.1719000000000004,4.74998,4.82596,6.5808,3.4766,2.86035,2.19011,1.6089666666666667,1.4502857142857142,5.01665,5.894185,5.17675,6.10485,4.579905,6.7650524999999995,3.401305,2.8989433333333334,3.9539013333333335,2.0218833333333333,3.0489105,1.70042,4.61355,2.3749033333333336,3.936715,5.11135,4.004575,2.74851,2.925076666666667,1.4189157142857145,2.607425,3.8577,1.94878,0.614824375,3.2418033333333334,2.6055466666666667,2.6477766666666667,2.4264466666666666,2.170495,1.5632899999999998,0.6904690909090909,0.6904690909090909,3.7168666666666668,1.889095,2.273675,3.30498,5.8889,4.08082,6.1702,4.68919,4.50465,1.969623,1.33816,2.570505,4.33567,0.864345,3.24718,2.858805,2.90679,2.095385,3.88168,2.67034,1.9833566666666667,1.0241585714285715,3.545185,8.843065,3.813705,1.5770478571428572,4.434295,3.452395,2.81239,3.42931,2.726375,1.7362466666666665,0.9995075,3.77915,2.355784166666667,2.1089866666666666,1.6120866666666667,2.11158,2.2467466666666667,2.51026,2.83402875,1.2673133333333333,1.8253166666666667,1.0087875,6.3931700000000005,5.9603,5.8093,3.862125,4.55433,3.0836566666666667,1.6327100854700856,4.71596,5.07285,2.388415,5.22445,2.072735,4.6321,0.9584988888888889,4.136845,4.31731,1.87674,7.75435,3.5078,1.84085,1.897565,1.7258825,2.612125,3.539766666666667,1.2890894805194806,3.1663533333333334,5.8882,3.351305,3.91574,5.8926,5.5285,5.85575,0.96677875,4.431685,4.68178,4.145905,4.892305,3.91945,4.838855,4.96185,2.96846,1.6711333333333334,1.6711333333333334,5.29515,6.474685,3.775255,2.53318,3.8678,4.94341,1.559976,4.382355,5.3109,3.60296,3.93731,2.91976,3.022793333333333,4.96962,2.5651803749999997,10.834836235387163,1.98095,0.767625,2.6167966666666667,1.640825,2.496685,2.2298925,1.990596,2.8150633333333333,5.07655,5.58305,3.06075,1.7076,6.4768404761904765,1.5599142857142856,2.999833333333333,0.5374380952380952,4.097363333333333,5.658,3.61828,4.864505,11.839704999999999,5.44585,3.2308466666666664,3.5457666666666667,5.0123,3.2310133333333333,4.831685,0.9142125,1.1741383333333333,0.8652136363636364,5.7141,4.116545,1.88509,4.907009333333334,4.32638,6.5577,4.987635,5.1531,4.543345,6.02395,3.928205,5.14865,2.988265,1.285246,4.27131,5.41445,2.868185,3.930045,2.78398,2.59653,1.1361025,5.1444,3.850315,1.3212125,3.5604333333333336,2.9901633333333333,2.555753333333333,2.44855,2.551413333333333,3.09413,0.69108,2.6915600000000004,2.6350666666666664,2.5448166666666667,1.9962666666666669,2.9040766666666666,1.994725,1.4779566666666666,2.470155,2.1624325,2.1607575,3.352933333333333,3.0304366666666667,0.7231810000000001,2.8385433333333334,3.43095,4.668315,2.45314,4.06598,5.47935,5.12235,3.2739,3.7153,1.3936600000000001,3.42825,2.5551905555555554,4.2454600000000005,2.8348337499999996,4.923785,5.38655,4.96722,4.487645,4.2329,0.884008,0.884008,2.251352307692308,1.66353,4.17249,2.6119145,2.6119145,5.19025,6.14405,3.098875,1.2381783333333334,1.6315142857142857,5.908,3.4042,2.330906666666667,3.220455,2.883115,3.25276,2.330906666666667,4.43616,3.170235,3.0629920833333335,2.760005,2.046125,3.01847,6.67335,3.15557,4.628965,4.93557,6.7221,6.665,6.650225000000001,6.650225000000001,5.72245,4.888585,0.5268884615384615,5.4673,4.9387,2.84034,2.79057,8.099995,2.6842,4.396585,3.643295,2.6926400000000004,4.832265,2.60638,3.4090625,3.1980066666666667,3.4929666666666663,2.7797,1.722288,1.722288,3.603475,3.98287,4.952615,1.83369,1.5363120000000001,48.581443030303035,2.6134766666666667,0.8849063636363635,3.2714200000000004,1.86599,3.412433333333333,2.8548233333333335,3.13576,3.324335,2.8645566666666666,2.1490766666666667,1.0445275,4.64888,3.252645,3.43854,3.789545,5.31515,5.25025,5.1237,5.2749,5.50535,4.92701,5.8348,6.259942499999999,5.07105,5.64085,2.0172025,3.95478,6.723,5.373,3.606675,4.31829,3.86058,2.32176,3.870375,4.70819,3.13127,4.1056,1.6454920000000002,4.297825,1.322514,3.098665,3.733535,3.467,6.5959325,4.42988,2.04735,4.378925,3.90163,3.95427,0.95713,2.689445,2.82696,4.347040595238095,1.19305,4.73615,1.3113125,6.06065,0.7162011111111111,4.026813333333333,10.480743333333333,4.61144,3.63883,3.50898,1.8912000000000002,4.103965,5.56645,3.12056,4.53518,9.412156666666668,3.5844666666666662,2.11344,2.8271866666666665,2.7111199999999998,2.7069433333333333,2.8011404166666667,2.9774,2.5458666666666665,3.2191500000000004,2.71069,3.2930566666666667,3.423715,2.20795,1.6628666666666667,5.076079333333333,4.0318,2.61654,5.051076,2.8912933333333335,1.06817625,2.1896425,3.0278466666666666,5.2944192857142856,3.0042,2.2506222222222223,2.2506222222222223,1.6307225,1.75095,2.17324,2.0168,5.9042650000000005,4.6247475,2.1599125,3.0871633333333333,3.794333333333333,2.12435,0.60707,2.8341833333333333,1.886465,0.5504892307692308,3.724485,2.52805,2.588,3.640395,3.6297800000000002,2.4818366666666667,1.5570866666666667,1.2132766666666666,2.026635,3.36749,3.784705,4.2469975,2.77343,3.98897,3.68605,1.122781818181818,9.06126,2.69196,3.298765,1.2870625,2.7977133333333337,2.3671425,2.3671425,2.3671425,5.02945,5.7275,1.598135,5.26275,1.34381,5.684423333333333,1.5877560000000002,4.30081,4.248855,4.21662,5.2619,4.864355,1.856855,9.355192500000001,3.92537,5.0593,3.55182,4.038695000000001,3.242483333333333,3.1571200000000004,3.81447,2.51802,4.394558571428571,4.37508,1.5788125,3.88767,1.5788125,3.50439,4.475559166666667,4.90227,4.475559166666667,1.75223,5.9662,4.65191,4.57041,2.8677799999999998,3.14925,4.310855,3.12613,5.4021,0.5165821428571429,3.1977499999999996,3.0216933333333333,5.238291666666667,4.7511,2.4656975,4.870995,6.51453,3.31898,2.80007,2.82671,2.25054,4.178395,4.08876,4.716375,2.353235,3.815085,0.874341,5.3905,3.605135,4.255075,2.38522,2.9757766666666665,2.2630833333333333,2.74747,2.721636666666667,2.7725899999999997,3.35879,2.4520525,2.4520525,4.576220833333333,3.579415,4.789635,11.627675,0.9649511111111111,4.671055,2.663796666666667,2.35886,2.8844600000000002,1.512975,7.8424215,3.391833333333333,3.793685,3.862616666666667,2.5766466666666665,3.970666666666667,4.508852027777778,2.575806666666667,0.44431888888888893,1.513796,1.4806075,4.9653,2.821235,3.194875,3.757698333333334,3.444945,2.47150125,5.114,4.661735,3.646675,4.89342,2.191875,4.00254,2.517673333333333,5.574956666666666,3.08606,5.34345,4.178885,4.23891,4.285265,1.94799,3.905685,3.74524,3.215066666666667,3.57558,2.986395,3.083135,4.185475,4.683335,2.57231,4.617065,1.4953116666666666,3.57922,2.861455,4.53572,4.21623,3.890985,5.0191,2.42005,4.21454,5.1365,4.136905,3.1194866666666665,1.984965,2.91649,2.240065,0.8192933333333333,4.592905,2.0395,3.465085,2.695655,4.019015,3.177455,2.944195,3.27963,4.38095,4.497818666666666,4.04314,2.76654,1.4516466666666668,3.976025,2.342845,0.9631477777777777,4.50517,9.166955,3.227045,3.52504,4.1186,5.0473,3.74011,2.07418,3.947545,3.794515,3.205415,3.156475,3.817065,0.609495,1.2601042857142857,6.3960025,1.7035325,2.58556,4.97311,2.420105,2.28035,2.69974,7.86065,2.53636,4.076735,3.682645,0.7489877777777778,3.42641,2.59787,3.769875,4.172795,6.3184483333333334,0.692489,3.29502,9.89016,3.10078,1.0457477777777777,5.239739583333333,4.835175,5.48615,4.48973,4.775115,3.299235,2.674716666666667,7.4591650000000005,0.845578,3.43344,4.11764,3.22323,4.13778,2.54448,4.221745,1.781,4.53521,4.21891,4.281195,1.6750825,4.85763,4.808895,2.37546,2.02237,2.4285525,1.127792,4.10846,3.3844445,1.5280099999999999,8.32327,5.8772,4.69187,4.492685,3.46899,4.386335,1.4833714285714286,4.417705,4.020875,5.39205,3.77778,2.3569033333333334,6.632559337606837,1.213735,1.213735,2.47952,0.9169214285714286,4.236275,3.18223,0.99375,1.6545666666666667,0.4052725,6.2548075,0.964265,2.68365,3.529535,4.0833,4.034055,4.16659,5.64995,5.4884924999999996,3.53787,3.114895,2.35771,4.225155,4.52725,4.29289,3.8938,3.452235,6.19755,4.41636,4.339164444444444,5.765929,3.79052,3.437005,2.264925,3.437005,6.969578,42.173510740259744,3.731905,3.38502,2.9609400000000003,4.389485,4.56506,3.40699,3.19741,3.79016,4.692545,4.237185,1.7298166666666666,5.07685,2.668995,4.90836,5.3093,4.690255,2.40989,4.38674,3.83106,3.164925,1.615634,0.6673176923076922,1.863966,3.7979000000000003,3.0437066666666666,1.3272125,3.043886666666667,2.7107266666666665,2.82591,3.7922999999999996,3.086743333333333,1.475066,2.8770666666666664,3.8066666666666666,1.9013421042471041,2.95034,3.303528,3.06749,2.5369433333333333,3.5593333333333335,1.1988444444444444,3.75734,3.74569,1.2463716666666667,1.2463716666666667,1.2463716666666667,1.2463716666666667,2.8319457575757574,2.0018766666666665,2.315525,3.60409,4.968685,5.17205,4.223095,4.40212,5.84375,4.64431,2.231725,6.13115,4.105925,3.301155,4.250385,3.3161,4.272515,4.399745,0.7339084615384616,1.5182714285714287,1.5797833333333333,4.267085,3.84766,4.79636,4.07239,6.08719,2.23723,4.437175,1.5950499999999999,3.530755,5.1757,1.4796433333333334,5.30855,0.7369416666666666,4.441745,1.183602,1.19373375,3.79304,4.02263,5.45305,5.15905,6.1909,4.53022,1.575732,5.035,1.444535,3.51137,3.457575,2.537076,1.9919825,3.732205,1.3541133333333333,3.30329,5.0448,2.9518066666666667,5.97975,123.15953184108947,0.4777755555555555,4.75434,2.568026666666667,4.662795,4.014495,3.931245,1.472255,0.34182619047619045,2.71697,3.672315,5.5074,3.571565,3.584,4.36565,4.5204,4.77204,8.061916666666667,0.6586955555555556,2.660875,0.956835,11.111889999999999,3.095135,3.46203,0.9671555555555555,2.196755,2.66649,2.08564,3.3739333333333335,3.3527666666666662,2.83901,4.382835,3.07523,2.2335133333333332,2.24336,4.989945,3.7824,2.877935,3.57785,3.750135,3.321845,2.3006100000000003,3.830035,4.039845,3.077995,1.0111422222222222,2.4819566666666666,4.382835,4.528225,5.65205,4.123815,4.383795,1.84113,10.11214,4.493715,2.65282,4.30708,5.3609,0.5545899999999999,0.5545899999999999,4.2948249999999994,4.2948249999999994,3.33026,3.686666666666667,1.7894847727272727,0.5633916666666666,2.868415,4.54115,4.12706,3.055345,3.91179,5.343225,4.983425,2.0675125,4.746865,2.2520675,2.8867,4.199293333333333,1.71731,2.05457,0.48612285714285713,1.1912228571428571,1.1912228571428571,1.89281,4.675805,4.427835,5.0045,6.94172,2.755805,2.867065,1.85759,1.750655,4.194670833333333,3.843825,5.220346666666667,2.543605,5.220346666666667,4.858875,3.47894,6.03755,3.74504,2.3840866666666667,2.1004666666666667,2.38967,1.498225,1.41189,1.474645,1.82042,1.656265,1.8525325,4.0324,4.782995,2.442145,6.79735,3.15713,4.72308,3.41095,4.253975,2.9204966666666667,2.96026,6.449826666666667,3.445066666666667,4.771606666666667,3.28777,1.37026,2.4608933333333334,2.6080133333333335,2.2746666666666666,6.33905,4.41997,4.91826,12.825250106227108,0.7797408333333333,2.046753,2.261625,1.7143260000000002,1.3051885714285714,2.592525,2.55245,2.5848,2.456225,0.7630423076923076,1.9233125,0.5427,4.80616,1.91426,4.128065,4.731715,2.599,6.025015,4.33867,7.65819,3.986315,2.73665,3.192415,4.88132,4.87364,2.6748917142857143,4.53067,2.215405,2.215405,5.1032,3.942535,4.441765,4.025205,3.2440466666666663,3.94233,5.1154,5.1102,4.940955,4.52774,4.340285,4.29773,2.33975,5.3152,1.2668283333333334,4.86637,4.635205,2.4720166666666668,2.1824733333333333,4.40099,1.52641,5.09655,1.8181525,5.860719601449276,4.26737,3.92694,1.4992599999999998,2.9039516666666665,2.9039516666666665,11.76554,3.903755,4.87634,1.14314375,4.484688,2.2910175,1.3930925,2.334295,1.69414,2.012325,1.839226,3.05332,5.93995,1.7337725,5.18165,4.8294500000000005,5.67795,2.1744875,2.427735,3.373905,4.375935,5.5417,3.886145,7.547181666666667,3.2303599999999997,2.779446666666667,0.3718605555555555,3.572935,4.29646,3.4227000000000003,6.294695000000001,2.54971,3.080966666666667,1.2186133333333333,1.6037566666666667,0.614824375,1.513796,3.036775,1.5213483333333333,1.5247149999999998,0.675325,1.37466,4.627155,2.431455,0.6518515384615384,1.6658983333333335,1.747865,1.74221,1.289495,2.2207825,1.6037566666666667,2.54525,1.37466,1.37466,0.6518515384615384,1.636242857142857,2.49146,1.2691616666666665,2.76945,0.6518515384615384,2.732275,2.49146,1.3587533333333335,1.3587533333333335,1.3587533333333335,1.931562,1.2277975,0.6518515384615384,1.079526,1.15662,1.0471522222222223,1.921058,2.724575,0.864325,2.2618175,1.5942714285714286,0.6518515384615384,1.75585,1.6037566666666667,2.062883333333333,2.0823,0.921767,2.062883333333333,1.05246,2.37546,2.374245,2.516525,1.15662,2.12458,1.3541133333333333,1.3541133333333333,0.9164636363636363,0.9164636363636363,0.9164636363636363,1.2186133333333333,1.6037566666666667,1.5942714285714286,1.6658983333333335,0.9179700000000001,2.0823,1.513614,1.830838,2.11412,1.2186133333333333,2.6447399999999996,12.97041,0.675325,2.60976,1.8667333333333334,2.4670875,0.9690828571428571,0.9690828571428571,0.6518515384615384,1.0414833333333333,1.5632899999999998,1.5942714285714286,1.7617159999999998,2.0823,1.195788888888889,1.195788888888889,1.693918,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,3.21035,1.05246,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.21272555555555556,0.3862795454545455,56.368421624098126,1.4819225,1.6281833333333333,1.5942714285714286,1.8667333333333334,0.9179700000000001,0.6657000000000001,0.717759,0.717759,0.717759,0.717759,4.444733333333333,16.729795833333334,3.4243333333333332,0.5893881818181819,1.647804,1.647804,1.647804,0.5893881818181819,3.036775,0.6518515384615384,1.75585,1.5247149999999998,2.51326,1.05246,2.4656975,1.05246,1.912544,1.912544,2.1760333333333333,2.1760333333333333,0.6518515384615384,2.07684,2.07684,0.9574272727272728,0.21272555555555556,3.036775,1.5259633333333333,2.4532375,0.5893881818181819,0.5893881818181819,0.5893881818181819,0.5893881818181819,0.5893881818181819,1.8667333333333334,0.3862795454545455,1.05246,2.280545,2.280545,2.542625,3.050186666666667,0.6606047619047619,0.6606047619047619,3.4532000000000003,4.237466666666667,1.1914971428571428,3.5094999999999996,1.03742,2.466985,2.04446,1.1676933333333335,3.0707733333333334,1.9801825,3.1856033333333333,5.38335,2.46596,1.2241333333333335,4.288635,4.34282,2.71284,1.7456219999999998,2.383333846153846,4.308895,1.6609555555555555,2.6856833333333334,3.020433333333333,3.2245000000000004,2.430285,6.122819999999999,4.265155,0.21272555555555556,3.093026666666667,5.30545,3.46174,4.725115,4.54768,4.53223,2.8649766666666667,1.808898,4.68217,4.54812,4.4643,4.889925,5.5873,3.289795,0.7360958333333333,6.82657,1.6733,3.1359899999999996,4.624805,2.6431733333333334,2.6431733333333334,0.8540672727272728,1.9919825,4.564455,3.10547,5.28285,4.382765,4.619175,5.21375,1.1211442857142857,4.8296,5.6679,7.10643,2.27609,4.114005,3.810705,4.063645,3.86453,4.06145,4.313985,6.3963575,5.20885,4.29157,3.518735,4.4165383333333335,7.711431999999999,1.98128,2.1496364102564103,2.8405133333333334,1.7629666666666666,2.703253333333333,1.8236333333333334,5.03715,3.07748,6.1724,1.995492,5.151,4.050085,3.788175,4.23962,3.71112,2.5440566666666666,2.7361866666666668,2.6944266666666667,2.730423333333333,2.55464,1.7306666666666668,2.6886433333333333,2.8610900000000004,2.22908,2.22908,4.45332,2.8632633333333337,1.9292999999999998,2.951943333333333,2.0415566666666667,2.6491466666666668,3.0110499999999996,2.68554,3.16647,5.51535,4.27636,4.017055,3.49775,3.49775,4.125325,3.31366,4.09376,4.422485,4.10256,3.388975,3.205075,7.45875,2.30308,1.93037,3.264735,3.110605,1.38244,1.38244,3.53672,1.79216,4.107428,3.533,4.002945,2.0989265,2.0927765833333334,0.6136958333333333,3.532375,3.81183,1.9535725,2.44767,4.262055,1.2253033333333334,4.84833,1.15133,0.40580357142857143,0.5552046428571429,21.71532854365079,0.5552046428571429,0.40580357142857143,0.7046057142857143,9.71839,2.930946666666667,3.779385,4.49587,3.58906,2.75828,4.212747857142857,2.169975,2.42923,3.776525,3.185035,4.197455,4.51767,3.454925,2.197865,3.16457,3.704745,4.00037,3.01826,1.076962,1.076962,1.076962,1.076962,3.376725,2.86602,3.347695,1.82043,1.2133216666666666,2.442255,3.52596,3.985485,3.27602,3.28463,2.53572,2.516284166666667,3.84562,4.266395,1.0990216666666666,2.755383333333333,1.09971,2.7364433333333333,1.9092200000000001,3.7797666666666667,5.2814,2.4048633333333336,3.871205,4.0961066666666675,0.8548939682539682,0.28531285714285715,0.28531285714285715,0.5695811111111111,0.28531285714285715,0.28531285714285715,0.28531285714285715,0.5695811111111111,4.639505,7.656466666666667,3.535455,0.5593725,3.617615,7.366155,3.37388,3.2432133333333333,1.1181383333333332,4.81298,5.30715,4.43851,4.83599,1.630236,4.64472,2.1414066666666667,2.302501333333333,3.66306,5.4248,0.7814428571428572,0.7814428571428572,3.58764,2.8097166666666666,1.77078,3.28547,2.822955,6.75725,2.95312,6.582,6.20055,5.56385,2.07637,1.89055,3.87979,3.584805,2.066235,3.38594,3.28382,1.74864,1.12945,3.983425,3.311725,4.967103333333333,6.135301666666667,1.5391166666666667,3.97644,1.12673,2.39541,3.16636,4.251235,0.3911307142857143,3.792005,4.024865,0.926141,2.7388433333333335,7.804293333333334,3.004465,2.04132,5.799137999999999,4.51189,3.79226,1.42893,5.42728,2.8641966666666665,3.1963399999999997,3.6143,2.20193,2.20193,6.51605,6.51605,3.687689285714286,3.687689285714286,10.5109,3.687689285714286,3.687689285714286,4.347549285714286,6.89155,3.433275,3.7180041666666663,3.2016899999999997,4.66397,3.453925,3.3624333333333336,3.21439,4.82939,3.1758566666666668,2.6059033333333335,3.3370333333333337,2.19955,2.670645,5.26395,7.314255,6.8721950000000005,5.1713,3.77,4.002085,7.149594,5.51395,4.598845,4.059375,4.388105,2.44515,2.08206,2.07829,5.62355,5.7975,4.69243,4.279,2.28486,2.7364533333333334,7.066643333333333,1.931562,2.5637366666666668,3.474133333333333,3.474133333333333,2.96827,5.23535,0.7972874999999999,3.5912,3.96643,3.1626266666666667,10.38015,4.4126,3.01137,2.48449,4.85217,5.99775,2.96652,5.45615,2.627623333333333,4.55178,2.8670085714285714,4.788885,5.5512,4.90378,1.1195883333333334,3.6851000000000003,1.03639,2.4707133333333333,5.057786588235294,9.126249999999999,2.4786766666666664,3.5526666666666666,7.398096666666667,1.7925419999999999,4.85853,5.58905,3.533675,3.63264,2.21834,4.722295,2.4139375000000003,0.47474153846153844,5.18015,2.938615,3.5443,5.1528,5.11855,5.4256,6.781880000000001,4.64437,5.4526,7.40449,54.775908333333334,4.921005,3.87454,4.62244,5.68165,4.48686,5.3484,4.37347,4.73889,1.8728875,3.94615,4.18381,4.85387,2.411485,5.1868,3.827725,1.6111879999999998,5.72695,6.4336,7.311766666666666,5.4421,3.285895,4.77701,3.278445,3.23626,3.520775,4.196665,3.802375,6.93601,2.771875,1.0540957142857141,2.36213,0.6187199999999999,0.6187199999999999,3.356595,0.6187199999999999,2.4879928571428573,2.4879928571428573,3.184112857142857,4.68599,5.116652857142857,2.36213,4.8992875,2.64722,1.4255849999999999,5.7827,2.16509,7.16385,5.71816,11.073406931818182,3.4075333333333333,2.47438,0.21032151515151518,1.9342899999999998,2.1207333333333334,0.92614875,1.3154466666666667,3.036153333333333,2.4951825,2.608125,0.5795899999999999,26.792320416666666,1.8205075,0.8495692307692307,2.579403333333333,2.579403333333333,0.41367944444444443,1.7091025,3.27123,1.3071,1.7814375,1.64422,4.12764,2.8786,1.8996933333333335,2.36947,1.108135,2.04878,1.584195,5.4010446666666665,3.83813,6.96473,2.60045,3.439666666666667,0.9546133333333334,2.370525,5.2874,6.35534,3.0756,2.236353333333333,5.4102875,2.0270875,2.55332,4.333265,0.99424,3.5101333333333335,2.37432,5.1969,4.9591,6.2354,3.422025,4.192152500000001,4.192152500000001,5.41055,2.14275,5.5523,3.08443,1.6656325,3.23111,3.152745,5.348123666666667,3.86771,2.9306099999999997,3.4272333333333336,2.71436,1.0636357142857142,5.4179,0.92976375,5.430873333333333,4.594615,7.722760000000001,4.215835,4.365835,4.17654,8.431006666666667,4.50908,4.976555,1.20391,0.7252928571428571,4.67386,4.453355,2.17399,3.092315,3.159015,4.217815,2.15732,5.0351,2.5957266666666667,5.52855,5.39465,5.6831,4.63632,5.22975,3.100145,6.618145,3.46087,4.378095,3.37668,4.795555,5.585354880952382,0.5683164285714286,3.7977333333333334,1.74196,0.5410333333333334,4.058805,2.576785,1.07888125,1.9164,6.11719,3.55141,2.380705,2.886416666666667,2.64323,5.0353,4.400575,1.689002142857143,4.32857,2.3293033333333333,3.765233333333333,4.529805,5.1862,3.2024675,3.7982666666666667,3.8115,2.0357600000000002,7.19045,4.99565,4.426495,5.41265,2.2120225,4.559335,4.843555,3.91322,3.863385,10.879145000000001,3.445835,4.110368333333334,4.709155,5.0376,2.418915,4.563975,4.39087,4.719515,3.4128666666666665,4.34115,1.7223225,3.1589733333333334,3.477045,4.039255,5.342,1.9470960000000002,4.093715,3.24358,5.4078,3.4370666666666665,1.719845,3.858605,4.58358,1.077205,2.919165,2.703226666666667,4.579200666666667,1.7667940000000002,1.77492,1.3397975,3.672665,5.55955,5.4677275000000005,3.6176950000000003,3.25762,2.37429,2.0286,1.814705,1.5384566666666668,6.07125,3.002665,2.0044025,0.9037692307692308,20.983608320512822,3.007345,3.388494166666667,4.725265,4.085625641025642,1.4556733333333334,2.801604166666667,3.0751629545454544,1.215324,1.89419,4.515865,4.93919,3.649143333333333,3.13862,5.6362,4.840555,7.15935,4.925169166666667,4.57908,3.85062,2.693,4.13082,3.913595,3.7767,4.18181,1.9658575,5.0318,8.06582,3.328035,2.796465,4.555695,0.602625,3.217916666666667,2.0470200000000003,2.4347325,4.3261,3.232295,5.30605,3.7672,2.930655,2.345845,1.631815,0.773,1.4238,1.2027666666666665,4.17842,4.02827,4.855605,4.842045,7.36652,2.1672566666666664,1.40193,2.3650933333333333,8.005876666666667,3.267845,2.797675,3.085475,4.74528,3.4295549999999997,3.543565,1.602438,4.74322,4.969965,4.143795,3.885015,3.76523,4.16574,4.63391,3.901025,4.226025,4.35176,2.12705,3.4614666666666665,2.975085,5.45125,2.668165,4.481795,2.6848,2.92412,2.3752566666666666,2.2417466666666668,1.9930433333333333,2.5224993333333336,2.5224993333333336,1.9906466666666667,2.8973099999999996,2.27446,2.296066666666667,1.8902533333333331,3.96019,2.3337133333333333,2.7106600000000003,3.202526666666667,1.6548299999999998,4.51569,2.953805,4.141435,2.787623333333333,5.2264,5.45225,4.932554722222222,2.7708,1.92924,2.76707,2.69404,2.116525,2.73221,1.95736,2.6587,2.7761,6.754558666666666,4.289745,3.69337,0.64145,4.49812,3.933085,4.24447,3.363725,3.83893,3.7161416666666662,6.4591,4.425605,3.47798,2.8210321428571428,2.2195837777777774,2.484,1.684686,1.833282,1.714658,2.16582,1.7439725,1.36599,4.132966571428572,0.6518515384615384,0.5603577777777777,2.05434,1.5104833333333334,1.459078,1.4311816666666666,2.293677121212121,1.4837666666666667,1.7650359999999998,0.5868225,171.09837025517254,0.48551666666666665,2.05304,0.90944,1.2087775,2.0831025,1.5451575,1.9297775,2.3577566666666665,1.73894,6.6774,3.096615,3.3514323809523807,1.5004333333333333,3.1941,1.2886533333333332,1.2886533333333332,6.0661125,0.48802333333333336,2.32229,3.4587333333333334,3.13077,0.890970909090909,0.5667052941176471,1.1680358974358975,1.0410636363636365,2.4070675,4.092985,2.02393,2.121975,2.3548466666666665,4.913513,1.0600344444444445,4.50919,3.559125,3.41989,6.43125,1.7803866666666668,2.88857,2.54904,4.061344999999999,2.42655,2.89796,3.115245,3.374455,4.415414999999999,2.97769,6.26102,2.727535,2.67374,3.38252,1.59715,2.83399,3.205045,2.716625,1.74438,1.547095,2.41334,4.36864,5.428676666666667,2.9437,2.908205,1.5366,4.414765,3.9364333333333335,4.184666666666667,2.839085,25.637888582722834,2.639762,2.7187,3.1780333333333335,3.4723333333333333,3.4186666666666667,5.7398066666666665,3.17313,2.604763333333333,3.5962333333333336,3.5728333333333335,2.15931,3.3519,3.5155666666666665,3.2894966666666665,1.7360499999999999,1.6219860000000001,0.549176,2.3027133333333336,2.0874425,0.22315625,2.3271333333333333,2.721135,0.22315625,0.22315625,2.18185625,0.22315625,0.22315625,0.22315625,0.22315625,2.8579733333333333,2.7647733333333337,0.5814923076923078,3.3465499999999997,1.5684125,1.9620819999999999,5.4638,4.37531,6.276705,2.08478,4.964765,2.12697,2.8281466666666666,1.3380928571428572,6.0105900000000005,2.9028166666666664,6.175235,0.8676499999999999,1.503565,4.79337,4.81194,35.97379984221334,1.6610340000000001,1.36183,2.3276866666666667,2.4105775,0.9164636363636363,2.444526666666667,2.424513333333333,2.6421466666666666,2.0280400000000003,2.467233333333333,1.6680483333333331,2.52392,2.3419866666666667,2.1487133333333333,2.9055999999999997,2.402413333333333,4.149695,3.5711333333333335,1.1893885714285715,4.261615,4.045715,20.321226499999998,2.80074,3.4872666666666667,2.5818966666666667,0.784338,3.1006159999999996,1.5782180000000001,3.1006159999999996,2.4265333333333334,2.585313333333333,2.8035533333333333,1.7606425,2.1039575,4.500495,3.996,5.31555,4.315445,1.643978,5.1654,1.525905,5.10935,4.022461428571429,4.685095,0.7534936363636363,1.9960575,2.2071425,2.78247,3.27476,1.13632625,3.212175,1.9372900000000002,1.96567,1.053096,1.053096,3.32025,2.6580366666666664,4.4031,29.00914875,6.326675,1.91149,3.58397,0.37938466666666665,6.2367075,6.1149,2.83748,3.24784,5.65597,4.12079,1.20826625,4.560295,1.255936,2.95471,4.7266,4.971345,3.28851,2.987955,4.594485,2.45053,2.8579325,4.19773,1.2854733333333332,2.5553141666666668,3.743625,5.4092,2.48439,3.1865633333333334,2.8122133333333337,4.34632,3.98618,4.147575,4.2821,1.71752,5.9962,2.6005,1.727692,4.08207,5.63527,4.407255,3.518545,0.76252375,2.898285,3.43249,1.994185,4.732385666666667,2.766,3.845525,2.8651866666666668,3.3785333333333334,2.62886,3.3379999999999996,3.0187166666666667,3.145426666666667,4.266525,5.58765,3.667105,1.701725,4.032305,4.20959,1.95918,1.944635,1.6728625,4.020206666666667,4.643355,5.380089791666666,3.934515,3.4371333333333336,3.7249,3.1901466666666667,1.4464883333333332,3.096985,2.9933,3.250765,4.908735,4.738075,4.516715,2.860045,1.816545,1.54853,1.3644575,3.56834,2.3933,2.207255,3.392535,5.03625,1.641115,5.27905,1.425162857142857,1.80706,3.23921,3.19993,2.987535,3.69418,2.97214,1.63943,0.9846805789473685,3.43088,5.23137,4.51969,8.817264999999999,2.861413333333333,3.232936666666667,1.5362866666666666,2.6616933333333335,2.7507466666666667,1.2706883333333334,3.0749133333333334,2.8363833333333335,3.3201933333333336,3.9755333333333334,3.200366666666667,6.832488333333334,3.1064866666666666,0.7534718181818182,1.6314233333333332,3.562795,3.248005,3.358215,3.6531333333333333,2.66994,3.686575,2.611265,1.942033142857143,3.85886,2.8039972222222223,3.337975,2.19418,4.97143,4.713965,4.34392,3.327425,3.653385,0.9726122222222222,4.82515,3.0366700000000004,2.97241,4.603275,2.7992266666666663,2.7508533333333336,0.39640714285714285,0.39640714285714285,4.546288333333333,3.999235,7.09725,2.960845,5.1758,3.61678,3.113175,4.9131,4.33912,1.04268375,4.10662,2.756266666666667,4.334605,3.0476266666666665,3.0030525,1.9889633333333334,3.3496760714285716,2.302986666666667,2.9182066666666664,2.6037500000000002,2.8540533333333333,2.0489833333333336,22.586327695652177,4.23945,3.81553,4.036575,3.23245,4.79602,3.589445,4.661425,4.173805,4.071655,3.587475,3.801905,2.7678666666666665,2.9692833333333333,3.1248466666666666,3.0543716666666665,3.1498933333333334,4.33567,3.431365,5.0737625,5.3228,4.192845,1.246852,1.476398,1.476398,5.16135,4.050595,2.742573333333333,2.38264,3.08393,3.43951,3.413845,7.802136666666667,3.2344566666666665,3.5446000000000004,3.0985016666666665,5.3355,1.6224566666666667,6.03721,2.4252966666666667,3.056923333333333,1.7131,4.217635,2.970125,6.25478,3.6275,2.5938,4.25315,4.517794,1.4728025,2.4258966666666666,1.6074466666666665,7.690124,4.294295,7.055138333333334,2.268895,4.15454,3.672555,4.224725,5.21855,3.452366666666667,3.452366666666667,2.106085,4.39308,5.11515,2.53577,6.7647571428571425,1.68104,5.96975,8.584121666666666,3.716466666666667,4.337813333333333,2.258696666666667,1.96875,0.52941125,4.57507,2.65675,2.76785,3.799214,2.39925,2.61337,3.661415,6.0228,5.4767,5.61315,4.99944,4.29175,2.303865,1.0542545454545456,2.854275,3.16465,2.9235433333333334,5.21535,3.948435,3.01346,2.723205,2.0782,4.302785,1.03799625,5.3362,1.0883566666666669,5.5786,3.279545,4.879915,5.2219675,3.083585,3.230675,3.28084,2.386226666666667,4.34175,2.992195,2.44234,3.40446,5.2032,5.7954,4.666,1.64981,3.63645,2.90877,5.347783333333334,1.84853,1.84853,2.797093333333333,2.2358,2.5304033333333336,2.8879633333333334,0.890006,6.17115,3.59164,2.0281375,2.308205,2.4943,3.590325,2.646255,3.679655,5.2787,5.34275,5.0475,6.33055,5.94645,1.3849,3.81067,1.1246333333333334,2.557175,4.4430000000000005,2.65189,3.02091,3.15109,5.0618,3.4566,0.44786263157894735,4.71962,4.213575,4.948305,3.107135,4.759885,5.58955,4.391945,4.378515,1.80424,4.67299,2.0981925,4.353466666666667,4.353466666666667,6.4573,5.62225,5.71795,5.0856,2.608635,1.6224566666666667,4.562835,1.9680499999999999,1.5916499999999998,1.992935,4.26356,4.209435,4.616075,7.78845,1.6772833333333335,5.3457,1.3042833333333335,3.1094,6.28565,2.050115,4.916075,2.888476666666667,4.90714,3.3953,4.86704,3.706,4.17967,4.01795,6.0673,4.21973,4.21129,4.015405,6.19975,4.14243,4.5608,3.627815,4.27352,6.9363399999999995,3.433375,6.85493,3.376065,5.5079,6.2371,4.46807,3.604855,1.74159,5.72015,3.97037,0.9450944444444445,8.40944,6.1128,4.906175,3.0090250000000003,5.34645,2.722945,1.7150079999999999,3.83238,1.0990216666666666,6.32185,3.02878,4.38143,5.4207,4.49966,4.139785,2.13169,4.605075,5.1913,1.44828,7.458193333333334,2.868765,3.651655,5.24575,4.41017,2.029965,4.51047,3.504995,3.745225,2.834433333333333,3.84774,3.76699,5.38745,4.80505,3.361185,1.73497,1.73497,7.449343333333333,1.4363428571428571,5.3264,4.378205,5.1151,3.61743,3.666915,5.18075,3.949775,0.91805,0.91805,0.91805,3.697205,3.08746,3.727995,4.588076,2.71416,1.4471283333333333,4.554055,2.2283475,2.52206,4.057915,4.841485,2.0454125,2.20112,5.28456,4.02851,3.53893,4.435885,1.8433425,1.957495,3.402366666666667,2.679795,5.1488,1.389524,1.6111840000000002,1.09745375,4.203285,3.01043,3.0104166666666665,3.0699166666666664,5.5454,1.7407540000000001,2.0333,3.009225,1.717857142857143,3.19268,3.50578,2.50185,5.8067,5.67485,2.686375,4.559445,3.90145,3.43269,3.461295,4.151315,3.372275,7.03244,5.42365,1.9236666666666666,1.8468499999999999,3.493105,4.68605,4.189415,3.94659,2.969663333333333,4.13224,6.2301,5.15305,2.5099133333333334,5.4511,3.94397,4.099235,8.564797500000001,4.037085,0.7364136363636363,4.13841,4.3324291666666666,2.37197,4.156385,3.8501666666666665,6.0393,3.88703,3.89274,3.707135,4.692295,4.853995,4.611455,3.116585,4.03208,5.01325,4.00575,2.782065,3.1443,6.19819,5.5666,2.14742,3.00248,4.141863333333333,3.75632,5.26145,4.48981,2.5475833333333333,0.8680322222222222,4.500205757575757,6.5828925,3.59819,4.86004,3.54443,7.126581666666667,3.797745,3.6977666666666664,3.07287,3.73754,2.013275,3.4294,4.620675,2.571473,4.189935,6.08335,1.38942,4.92334,0.6960957142857144,6.3762,6.26135,6.1801,6.1591,1.6373933333333335,1.6980466666666667,4.786825,1.90784,5.79515,0.5316666666666666,6.32065,3.12299,1.509352,6.16181,6.49685,0.8442775,1.5960895,1.33009,1.33009,1.33009,2.2949100000000002,4.90822,3.542005,3.389945,4.237695,5.377,3.88103,1.9742640000000002,4.418415,5.1341,0.3082268292682927,3.858115,4.96105,4.63946,39.78717539393939,5.9925749999999995,4.957385,10.856955666666668,2.72789,4.356075,7.367076666666668,3.18387,5.05045,4.176255,4.25859,8.784035,3.848645,2.9765099999999998,2.63393,4.67877,4.185545,3.643035,4.272125,1.88688,4.424365,4.27935,6.996518,4.16348,5.24865,2.3217125,4.09747,0.5144175,1.38886,3.499205,6.2925,2.9516,1.280085,1.280085,3.13895,3.905875,4.28661,2.475615,1.67181,3.695555,4.234635,1.705025,3.3312333333333335,1.688534,1.6448133333333335,4.06239,4.45042,2.1922925,4.768435,2.4481775,2.169265,3.73998,3.67611,3.90071,3.913485,6.1227366666666665,2.5083766666666665,3.893825,0.713010909090909,0.6836883333333333,3.78895,2.282555,8.800916666666666,3.4243333333333332,5.1549,1.61728,4.585125,1.6081333333333332,4.15301,4.62606,2.5963066666666665,3.75427,5.22285,0.41242650000000003,0.41242650000000003,3.8494333333333333,3.27712,2.957326666666667,3.91781,3.639415,5.5672,1.0412545454545454,10.89231,10.933900000000001,2.2207825,4.767685,4.794815,5.1701,3.485025,2.5929033333333336,2.0198,2.1414225,9.896695,2.2945025,2.6839033333333333,3.786696,4.74675,3.786696,2.3270375,3.101366666666667,2.944266666666667,0.7376618181818183,5.581393333333334,3.07856,2.862913333333333,4.127325,9.077595,10.792300000000001,4.346175,4.1192,4.2735,6.756675,1.9063825,1.4403625,26.417722500000004,4.24507,4.07997,1.0025600000000001,4.666105,4.12444,5.5571,4.59923,5.87135,5.678866666666667,3.0227733333333333,2.014,0.6667352941176471,0.7384741666666667,4.59229,5.4404,1.3810033333333334,4.504678333333334,0.9276916666666667,3.8304666666666667,1.5083033333333333,4.347915,5.8707,1.89079,2.37298,2.557315,3.822745,2.98075,0.4378883333333333,3.73503,3.60231,3.0319233333333333,3.17304,5.16195,3.0734600000000003,4.146265,3.097615,4.47672,8.689593333333333,4.911395,8.240219999999999,2.723275,2.6401266666666667,4.47354,4.3319075,4.601245,4.139715,3.752045,4.881275,1.1960325,3.3016741666666665,3.291827714285714,0.7435120000000001,1.476398,1.476398,4.630215,7.580231666666666,0.8364692307692307,4.750815,0.9791616666666667,3.0836966666666665,2.31629,2.4820877272727273,6.577400000000001,2.5804466666666666,1.1524333333333334,2.61865,1.2525,2.0291833333333336,3.28874,3.0435783333333335,3.336233333333333,2.46184,0.9791616666666667,4.590785,4.611235,5.47865,2.76285,4.13958,2.16766,6.0163,4.93171,4.64716,3.039453333333333,3.602415,2.1812075,1.7091375,4.20507,2.77725,4.70797,5.53775,1.64832,4.917555,3.0546,6.652338333333334,3.59724,3.29318,0.9791616666666667,2.542105,3.38558,7.369009666666666,2.410903333333333,1.872748,2.410903333333333,0.4375266666666667,1.14377,4.026695,2.59478,1.702455,3.43981,3.7677490000000002,0.597329,0.597329,0.597329,8.524415000000001,1.59299,0.7474445454545454,2.171235,39.462190926406926,1.871788,0.65986,3.041725,0.65986,3.743085,2.016485,2.302065,2.586256666666667,5.34835,4.02705,4.64436,2.37006,0.8739957142857142,4.349195,3.374,5.2467,1.0102114285714285,3.0982,3.0982,3.786475,4.618055,3.935175,5.043614230769231,3.261325,4.694255,5.35525,1.9225940000000001,1.1300275,5.38075,6.68965,3.92965,0.6694720000000001,4.630945,4.1917816666666665,0.9892025,4.462365,2.312355,4.157195,4.599795,1.9027325252525253,1.9027325252525253,4.32641,3.387855,0.9076566666666667,2.74433,3.09084,3.20592,3.864465,4.500285,0.5273385714285714,0.2811488235294118,0.2811488235294118,0.2811488235294118,0.8084873949579832,0.6437492307692309,0.639041,0.2811488235294118,0.2811488235294118,6.839855,0.2811488235294118,0.8084873949579832,3.48822,1.2398575,4.80417,1.130495,0.6167738461538461,0.9892025,2.471725,2.746325,4.01914,3.0138,0.2811488235294118,0.2811488235294118,4.37597,3.69322,4.4813,2.549655,4.09486,1.567216,3.84479,0.639041,0.639041,4.966535,3.09433,2.610705,2.69222,3.899233333333334,1.10063,0.9527692307692307,11.051635000000001,1.3264125,3.908225,4.856665,5.2684,2.06522,0.400905652173913,0.92082875,2.91661,3.3804,3.320815,4.466755,1.463952,6.1766,3.57412,5.1658175,4.320075,2.97165,3.0974833333333334,6.478501666666666,2.7532833333333335,4.82851,4.127835,4.0961066666666675,6.06343,0.5616286666666667,4.377585,3.746033333333333,2.163656666666667,0.6887611111111112,4.076305,4.36907,2.929675,2.39134,2.196995,5.20615,2.685965,2.640425,0.954604,0.4589338461538462,3.923975,0.345388,0.7849545454545453,3.946615,3.10537,4.327645,2.644655,5.59745,4.29687,6.401243333333333,3.579365,3.36929,4.66816,1.5484675,5.3883925,1.820588,4.08813,2.591675,6.069133333333333,2.579385,0.940842,4.708555,7.108085,6.756535,3.3925666666666667,0.8443166666666667,2.9724733333333333,4.336265,4.05837,4.63277,4.637415,4.189225,5.2258,3.24523,4.18248,1.7577133333333332,2.193915,1.42268,4.207135,9.093720000000001,3.36341,3.616565,6.04575,2.6541,4.344045,2.5878200000000002,3.0865696666666667,3.414645,3.343215,3.78602,2.903435,3.84417,4.887545,5.9817,4.927065,4.7410250000000005,4.92716,3.97793,2.67575,5.3065,8.0168,0.9083822222222222,4.30071,4.09373,4.83195,5.90085,5.15155,2.33468,8.25166,2.41114,3.39814,6.0102,3.72498,4.34163,2.2348600000000003,1.846045,3.0033,2.3195966666666665,1.9128866666666668,2.9728266666666667,4.5945,4.56928,3.993365,3.282415,4.962698333333334,3.35435,3.1459,4.0100275000000005,5.8552,3.0273,5.630239666666666,3.906645,4.20288,3.733465,7.89729,3.91852,3.63516,4.509865,4.933805,3.48972,11.1045,1.376945,2.132375,4.112145,2.7927966666666664,2.7927966666666664,1.913325,8.20394,0.9057755555555556,3.21724,0.88684125,2.0333,4.511325,5.2111,4.455295,4.30562,2.8377766666666666,3.40253,4.006765,3.93896,4.314665,3.173115,2.6355566666666665,4.285805,4.947504166666667,3.65941,4.427385,1.724532,1.5979860000000001,2.7019366666666667,5.78935,2.2939675,1.67248,2.0301425,4.340785,4.88255,3.04852,2.89578,0.5620655555555555,2.2963,7.683605,3.290655,1.57214,0.88732,1.39624,2.02847,2.3141425,1.395465,2.0308766666666664,4.3667055,3.97777,4.59539,2.4448433333333335,2.01867,7.391085,3.033375,2.0345783333333336,2.0345783333333336,2.0345783333333336,6.488526666666667,2.22066,3.63499,2.51124,0.483588,1.039924,2.2826525,5.5332075,0.4360111111111111,3.677585,3.9907441666666665,6.1012,3.0181911111111113,0.4360111111111111,3.0181911111111113,1.01902125,1.235116,5.8076,4.19973,6.845115,4.222195,4.89463,3.96199,4.11709,5.09225,5.53975,6.14905,3.631705,3.36267,5.46385,4.68939,4.141305,4.528235,4.62011,1.3972933333333335,2.755266666666667,1.266225,2.2923,3.2204994444444446,1.5012494444444444,7.2936875,5.347783333333334,2.6843616666666668,4.523695,2.77804,4.934325,2.73797,4.27002,5.1079,9.521933333333333,5.46115,4.541645,2.51885,2.79505,2.1207599999999998,0.602625,2.1959204444444445,6.0071,5.44295,5.09435,4.82043,0.5877960000000001,2.04162,1.375715,4.343235,0.7384223076923077,6.600505,2.022685,1.0861,1.0861,3.9985720000000002,2.0649,3.1551766666666663,2.56776,4.675655,3.51938,3.51938,4.371235,5.83447,2.7700066666666667,2.4982866666666665,3.4723,4.97939,1.937856,2.6801066666666666,5.72525,5.2594,5.07275,4.28927,3.91038,4.783825,3.575175833333333,3.21945,2.369555,4.2,5.36625,3.2698175,5.2598,5.70325,2.19543,2.47322,6.1656,7.0211,1.185998,2.7644,2.3992525,2.664073333333333,2.44109,2.6047,2.7912055000000002,1.0623933333333335,1.906405,2.692825,2.3180575,2.5726433333333336,2.5726433333333336,3.037199,3.096275,2.3064898076923077,2.764975,2.3777975,2.11062,1.6243026666666665,5.125235,15.420521333333333,2.847496666666667,3.3421333333333334,1.804128,1.804128,1.6352333333333335,1.6352333333333335,2.9333766666666663,3.7749,2.9751600000000002,2.007155,2.007155,3.9127333333333336,2.54753,1.0850366666666666,1.4497857142857142,3.142916666666667,3.0373,3.7817333333333334,2.769235238095238,3.3959333333333332,3.1671833333333335,0.6689,2.728025,3.717901,7.170253333333333,4.85764,5.5806,4.462045,3.19182,4.77027,4.71714,3.0880466666666666,4.274885,1.4236933333333335,3.267656666666667,5.8133,5.5055,2.795605,1.4321716666666668,2.91524,2.575273333333333,3.1490566666666666,1.5824583333333333,0.7228142857142857,3.2088133333333335,4.929294166666667,4.820305,4.376025,4.87138,3.116376666666667,2.0211466666666666,3.2911916666666667,2.7166200000000003,3.4235,3.24365,3.4751,2.817686666666667,2.27969,3.8043666666666667,2.9886966666666663,5.311,4.70375,5.289843333333334,5.289843333333334,3.38014,3.662745,3.665835,3.788355,2.71685,4.61774,3.36601,3.2103,6.34875,0.7654641666666667,5.30255,4.7816,2.45316,5.148299166666667,3.5278666666666667,1.8595,1.3630728571428572,2.2648633333333335,1.0543200000000001,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.31492107142857145,0.49981000000000003,0.49981000000000003,1.16404,0.856773611111111,1.6497959343434343,0.9304457142857143,0.9304457142857143,1.1801048232323232,0.4696911111111111,0.38125777777777775,1.16714,1.4195375,2.6496033333333333,2.385305,6.786033333333333,3.015833333333333,3.94113,3.547695,4.9582048571428565,1.3494183333333334,4.69827,4.26683,5.17285,3.37991,1.500688,4.130076923076923,3.60998,4.553585,4.48452,3.02109,5.1808,4.63068,4.728565,1.2124679999999999,3.907255,4.825545,3.021175,2.36198,3.2907,2.41197,3.19524,4.32989,3.2182033333333333,4.840125,8.6406,3.262015,5.10605,4.45901,4.489746666666666,2.7231466666666666,4.516075,0.8750828571428572,4.21211,3.32259,2.2679400000000003,1.174145,2.862775,1.4695033333333332,0.530218,3.5866666666666664,4.29072,5.12135,3.7267333333333332,2.490775,3.074015,4.86494,4.0755,4.59048,2.631325,2.2030166666666666,4.03311,4.039405,4.34351,5.2057,4.6544,3.6594,4.82293,3.2287866666666667,4.38546,2.10914,4.63635,5.1906,3.203685,4.29238,2.43139,3.7569,5.7307,4.33175,5.429,4.906895,4.86096,2.4278133333333334,5.1669,5.2214,5.0905,2.1992225,1.12931625,4.149925,4.742475,4.30751,5.16455,1.818145,4.23584,2.15339,5.196,4.7857,4.71822,2.4601275,4.37595,4.8356,4.415365,2.7371533333333335,4.77383,4.836975,5.32935,3.96265,2.1992225,2.33473,3.03846,5.14475,4.216975,4.287105,3.51301,5.0228,2.277535,6.775,5.063,4.751905,5.369726291666667,5.2358899999999995,5.39375,3.5022987499999996,3.0894983333333332,3.0894983333333332,4.093705,3.62902,4.525495,2.262845,3.0722199999999997,1.0587875,2.7789366666666666,3.0461500000000004,2.6045599999999998,3.053793333333333,4.40626,2.9445866666666665,5.401,2.7644533333333334,4.688645,4.96156,2.11323,4.14473,2.91975,2.862493333333333,4.01465,0.902402,5.37775,4.67983,6.3172875,4.7437,5.5654,1.3888285714285715,4.7026,6.6394,9.05589,3.31458,3.4148,1.9576239999999998,0.811443,3.83002,0.99106,4.98057,4.614895,5.7648,3.170055,4.83423,1.1886042857142858,3.668105,3.56711,4.28782,4.150845,3.02787,2.744895,2.4493275,4.485925,4.913085,5.83665,4.55229,3.73895,0.33379666666666663,0.33379666666666663,0.33379666666666663,0.33379666666666663,5.2176,3.02693,6.20895,3.2523999999999997,5.01995,4.615955,3.590295,2.333745,2.4720633333333333,1.4007633333333331,5.2702,2.965106666666667,4.068605,4.32151,3.375315,1.55373,1.17503875,4.60129,2.370255,6.1771183333333335,3.871305,4.936495,2.182415,1.584175,0.9059444444444443,3.248255,4.569025,3.711945,2.1488375,8.127385,4.78014,3.46489,2.27808,0.517247,3.514875,2.88844,2.10692,1.904145,2.68045,2.725345,2.237895,2.9445433333333333,2.84909,3.40315,4.719135,3.931095,4.3305,3.441875,5.977076666666667,0.6383206666666666,4.66158,5.8143,5.2045,4.85498,3.5912,5.2225,4.55988,4.360425,5.64783,5.5436,4.842785,4.911025,3.789345,5.1435,3.029585,8.68541,5.2425,4.35146,4.872195,5.2802,5.7699,3.91446,1.1762444444444444,6.1241,3.616755,5.09205,1.414315,4.50935,3.957215,7.024185000000001,4.84032,3.11319,2.00493,4.89995,2.15748,0.98607125,4.61122,6.287,1.8446999999999998,2.30442,2.7530133333333335,3.28658,3.530925,3.545385,5.2788,1.7209,4.542725,4.239401,3.333425,3.5715333333333334,3.737185,2.82621,2.51936,2.08521,2.35484,2.6480966666666665,4.303315,0.6136958333333333,2.51839,4.32418,2.950875,3.6640333333333337,4.68104,5.17675,4.128015,17.241184909090908,2.7561166666666668,4.147833333333334,1.504006,0.8551209090909091,0.8551209090909091,0.8551209090909091,0.8551209090909091,0.8551209090909091,5.0342,4.885455,5.03235,9.382603,2.5933,2.5933,4.754845,4.978221666666666,1.426155,2.33711,4.023435,2.4577025,2.443895,2.29994,3.075365,3.6725973333333335,1.89421,3.58169,0.8407285714285715,3.0495133333333335,2.9127066666666668,3.1466133333333333,1.4707766666666666,3.2909433333333333,2.36736,0.99584125,2.8062966666666664,2.721956666666667,1.3022111111111112,2.4591533333333335,2.75684,2.2319299999999997,4.517462,1.9642566666666665,3.013363333333333,2.158295,2.718166666666667,1.1409777777777779,2.9176699999999998,4.820675333333334,3.715066666666667,1.0796975,3.0577366666666665,1.3801325,2.4296433333333334,2.3430933333333335,4.899661666666667,3.164123333333333,2.4830200000000002,4.736162666666667,2.624966666666667,2.13019,2.9292833333333337,2.67109,1.6767233333333333,2.9002933333333334,3.2183666666666664,3.1760133333333336,2.7004,3.1259533333333334,2.6235866666666667,2.566325,3.828167,3.828167,2.8559666666666668,2.0345,1.8270366666666666,2.80444,5.441563333333333,2.8890700000000002,1.9703066666666667,1.758375,3.060373333333333,4.46113,2.4582200000000003,1.081546,2.6665593333333333,1.55926,3.6791,2.1505533333333333,2.434946666666667,2.0377300000000003,3.0935233333333336,1.18766,1.6046733333333334,1.4696433333333332,4.180741666666667,2.5092066666666666,3.8702,1.06874,4.084015,2.06279,2.260255,1.8134979999999998,1.6724833333333333,3.31288,23.896202127705628,7.637366666666667,2.5758,3.6159783333333335,2.7146666666666666,9.801388,3.0618200000000004,0.9946075,2.5747466666666665,2.28767,2.000033333333333,2.8717133333333336,2.57502,2.5490766666666667,0.9532999999999999,3.2722599999999997,2.6721566666666665,2.95542,2.7365033333333333,2.6158033333333335,2.048243333333333,2.2520433333333334,2.8537033333333333,2.61511,2.1029075,1.511544,5.46141,4.628885,2.372145,3.023075,2.2208433333333333,2.46904,8.110699166666667,1.8060366666666667,4.963415,2.338865,1.9733925,7.225,3.0338733333333336,2.9687533333333334,2.51035,1.930774,1.4601484615384615,3.3478,3.12707,4.279305,1.68672,3.7157,1.562065,1.562065,4.08313,4.536665,3.3233520000000003,3.3233520000000003,6.120946666666667,3.395695,0.423818,12.08824553113553,1.1354866666666668,0.9263814285714286,3.7999241666666665,1.4636474358974358,2.1568325,6.35915,3.819445,0.7438718181818181,2.1512733333333336,5.09761806060606,2.4770718333333335,4.398835,1.3520128571428571,5.46485,5.1248,5.02125,3.3603490000000003,2.00794,2.4213999999999998,2.570316666666667,2.5751866666666667,2.26534,5.3627633333333335,4.733535,4.48414,1.82622,4.758615,4.211325,3.3267133333333336,2.2009625,5.1309,2.66004,9.083673333333333,6.934777499999999,1.9494025,2.511855,1.762002,4.648433333333333,4.648433333333333,3.1585300000000003,2.8530033333333336,3.394214166666667,4.92208,9.79166,4.49865,2.51845,5.5177,4.61033,5.4037,2.01496,0.8062125,1.3165766666666667,4.603665,4.880415,3.7212666666666667,2.9368466666666664,3.9102,2.21847,4.213295,4.778765,3.40241,5.546,3.236736666666667,3.8627199999999995,3.3447999999999998,3.346766666666667,3.4598333333333335,6.3524,2.98785,5.58105,4.722695,3.382165,3.34455,3.34455,6.2702091666666675,12.185099166666667,3.687533333333333,6.2744175,7.254521111111111,3.433885,2.4554966666666664,3.79999,1.21624,3.780375,2.393145,2.92469,3.0993066666666667,3.4628,2.13898,2.3699166666666667,2.8652166666666665,2.45717,3.0706966666666666,2.978396666666667,4.02505,2.6367366666666667,2.921556666666667,3.86275,2.950746666666667,2.6468433333333334,1.1519025,2.0652325,2.9201833333333336,2.5743766666666668,2.7372833333333335,2.3669033333333336,3.5725,2.4410333333333334,2.5078833333333335,2.71678,3.10182,2.8117066666666664,2.9794300000000002,2.6798800000000003,3.191853333333333,2.9050733333333336,3.325038,2.61363,2.4639466666666667,2.3615933333333334,2.794333333333333,2.65288,3.5401333333333334,3.361333333333333,2.69523,1.953265,1.953265,0.6799916666666667,1.602438,4.361215,3.283795,2.6747366666666665,2.13898,3.156703333333333,1.3132471428571428,2.9008000000000003,0.5916899999999999,3.5650999999999997,3.164516666666667,3.40608,3.04508,2.6634100000000003,2.71154,3.0932733333333338,2.70229,3.4449666666666663,4.67609,1.547908,2.9914633333333334,2.55863,1.78671,2.0896399999999997,2.9558999999999997,2.8304733333333334,1.7031580000000002,2.5675433333333335,2.59591,2.6678599999999997,2.74917,2.987626666666667,2.8711266666666666,3.2754166666666666,1.3515625,2.8037533333333333,2.30241,3.7096666666666667,4.009633333333333,1.91474,2.2708766666666667,3.4192,2.6144166666666666,3.398,2.49466,2.7104733333333333,5.572425,3.4806666666666666,2.15018,1.4876960000000001,3.3516333333333335,6.3745666666666665,3.0489266666666666,3.6778666666666666,3.0838533333333333,3.0829833333333334,4.599534,1.636434,1.1954444444444445,2.36957,1.8814379166666668,4.782195,3.07999,3.4862,3.143283333333333,3.2635233333333336,2.43316,3.5968666666666667,2.569,1.6516179999999998,2.9376366666666667,3.52603,3.6892475,3.26287,3.80963,1.74094,2.87976,3.57322,3.73612,2.563536666666667,3.8568,4.087666666666666,3.9223,1.531095,5.473843,3.1886275,1.5278816666666666,3.428165,3.49746,3.047785,4.09082,1.91401,1.91401,3.3055033333333337,2.9154433333333336,2.748045,5.1288,4.20843,4.633621333333333,1.5972680000000001,3.2635233333333336,2.7295200000000004,4.4130400000000005,3.1509966666666664,5.01938,2.6913066666666663,2.348926666666667,2.7185,3.50417,3.94371,1.603454,3.10033,2.901415,2.44846,4.558795,1.3583866666666669,2.90906,4.135405,2.63808,3.475535,3.998975,1.6312525,1.6033066666666667,2.513825,1.1658549999999999,2.240722142857143,1.9216825,0.46672214285714286,4.0692,2.547305,5.0182,4.318015,3.07631,4.649048333333333,3.5121,3.1272699999999998,3.5689666666666664,2.6474466666666667,3.4584333333333332,2.8881366666666666,3.303373333333333,2.5113499999999997,0.6728192307692308,2.2746233333333334,0.6523328571428572,1.8549766666666667,2.3768933333333333,3.1658399999999998,3.2885833333333334,1.4627566666666667,1.477225,4.44017,4.6617,3.475565,3.6685024999999998,2.964725,2.3758,4.055715,8.479235555555555,3.555505,5.6239550000000005,1.6838225,3.943615,2.1903375,4.360365,3.807505,2.11148,4.39103,3.697125,4.259145,4.30821,2.18609,4.420425,6.408665,5.06115,3.321895,3.193115,1.747865,2.16948,4.15378,3.301285,3.202005,4.008515,3.80366,3.654485,1.659495,3.970845,3.38708,1.84755,4.3485825,1.0672,3.62008,1.73601,4.07337,4.589235,3.624595,3.2489774999999996,3.66537,3.473565,1.9920875,2.2802075,3.9506666666666668,3.08336,6.1489275,4.28209,4.4782,2.5939,2.726455,4.79879,4.484285,2.466092,2.466092,5.7012583333333335,4.0326375,2.8399075,3.056025,1.9497033333333331,2.916865,3.430355,3.7667633333333335,2.838325,3.51129,0.93202,3.90693,3.35933,4.20001,2.70388,1.573125,1.4988925,3.26295,6.124889,5.70482,3.53534,1.6816475,4.681085,4.005105,0.9023233333333334,3.24279,1.46199,5.3108325,1.4843083333333331,4.03355,2.2008125,1.4627566666666667,3.47781,3.19518,4.736115,6.9602683333333335,4.27777,5.0772575,2.410005,2.906255,4.320865,4.034365,4.3966,4.321035,1.0238725,1.6219860000000001,1.07281,2.6302,2.165635,4.9913,1.07281,4.432735,2.29025,1.53859,1.53859,1.84755,4.150355,4.403165,4.00681,1.6404219999999998,1.6404219999999998,1.1054966666666666,3.239945,2.139905,6.095435,4.45476,3.92699,2.924796666666667,1.0183385714285715,3.480535,2.86472,4.30236,3.611445,4.206225,4.206225,3.607,4.004885,1.9939975,3.110725,0.9960411111111112,2.3527,3.82041,2.5793233333333334,3.320805833333333,3.320805833333333,2.87177,4.572055,4.64967,3.570485,3.556425,4.03396,2.62867,4.647902500000001,3.236615,4.2143,8.627885,4.959235,2.6583,3.203255,2.96982,4.88751,3.301666,7.519925,4.900064,4.757385,3.680565,4.0299,3.82875,4.814575,4.761455,2.838315,4.82303,6.774610833333334,2.75769,2.235576,3.252175,3.39188,3.785835,6.0025,2.21834,2.8732433333333334,3.653135,3.59732,3.3242,7.764680666666667,1.6367425,4.772763333333334,4.772763333333334,3.528195,4.218405,3.34489,2.64716,5.49129,4.800724000000001,2.418444,3.96317,4.208855,3.4871291666666666,3.09189,3.15411,6.190528333333334,3.42051,5.40995,3.478275,4.819625,4.03525,3.970115,2.9154433333333336,2.231386666666667,3.239555,4.01823,2.790145,3.2208216666666667,2.957935,6.441943333333334,2.594175,1.9439075,3.3810708333333332,2.3197033333333335,4.13206,2.816255,0.9023233333333334,3.991415,4.10438,3.93238,5.910864999999999,3.090035,3.33914,3.0633366666666664,3.0633366666666664,3.9321083333333333,4.43544,3.900995,2.06375,6.1061075,2.15835,4.596435,3.57963,8.2373,2.686113333333333,1.7382900000000001,3.2013,4.364795,0.7561675,4.015645,3.907305,3.20072,3.197615,4.306595,2.0340833333333332,2.22491,9.270805,3.489175,3.414715,1.4843083333333331,3.946665,2.723035,2.57843875,4.32548,5.5609925,1.6405475,1.289755,1.168595,4.37105,4.728385,3.76372,3.5823375,3.5823375,1.659495,2.356525,3.3364480555555556,0.9924355555555555,3.17614,1.23072,1.74094,3.53931,3.685275,2.94451,2.84753,2.9784108333333332,4.695505,4.14834,3.249805,2.963285,2.862295,4.533205,6.721555,4.006565,0.9662975,2.632288,8.63297,4.63332,4.08455,1.1239825,5.085671666666666,1.4407383333333332,4.0138475,4.0138475,3.936825,9.232960833333333,0.9057122222222223,4.907355,4.434175,2.5949866666666668,4.1009633333333335,3.867935,2.1987325,10.643864666666667,1.9203275,2.4698433333333334,3.586675,1.8285533333333335,4.493952166666666,3.3568,3.48364,3.7519913333333337,3.06835,3.303995,1.1729483333333333,7.17388,4.18895,3.93115,4.055985,2.035925,3.2489774999999996,4.530049166666666,3.833915,0.6551884615384616,3.89747,4.328715,4.768765,2.1392925,1.536248,4.406005,4.253525,9.04888,0.7160753846153847,0.787935,0.787935,2.0186266666666666,1.2431400000000001,1.458006,1.6732466666666665,4.8194,1.27894,0.8689114285714286,4.06245,3.41357,1.2176725,3.37907,4.895245,4.420255,0.815844,2.38337,9.798885,3.3303266666666667,3.75827,3.453825,1.808005,2.43879,2.55353,4.58539,4.40654,3.85467,0.9610371428571429,1.456328,0.914845,4.1758975,4.224595,4.05755,0.9924355555555555,1.7395939999999999,3.94334,2.532282142857143,5.221791666666666,1.00892,4.64578,0.713025,0.713025,0.713025,9.945205000000001,3.906805,1.23072,3.968465,4.874765,2.836875,3.285815,5.444295,3.33564,1.9987488888888887,2.8025033333333336,0.815844,1.7181673333333334,0.5062488888888889,0.7983616666666666,1.5516383333333332,4.088985,3.756495,2.1174225,7.331965,4.8950375,0.65711,6.31295,5.149086666666666,3.579625,4.46418,7.785515666666666,3.9350710714285717,4.8950375,4.575438166666666,2.43924,4.310695,3.83713,7.5391449999999995,3.43053,0.517247,1.5784660000000001,4.3458,1.705524,1.289755,3.973915,2.4347233333333334,1.681995,3.356425,1.653568,4.461695,4.414105,4.11126,4.706295,6.65432,2.52939,3.912125,1.46199,2.43113,3.56359,3.29761,2.418444,4.169725,2.3926,5.05825,2.81111,2.316985,3.3775508333333333,1.7789180000000002,3.61417,0.9924355555555555,2.2561315,1.168595,1.595055,3.66838,1.6367425,1.5516383333333332,2.024835,3.664765,8.14878,0.9610371428571429,1.1239825,1.433366,3.553835,3.875135,1.433366,3.87479,2.43113,0.7561675,0.9924355555555555,2.0186266666666666,1.46199,0.46672214285714286,1.6111879999999998,4.332204,2.5949866666666668,1.3348283333333333,3.15755,1.531095,1.9203275,2.927665,2.8025033333333336,4.957175,2.927665,0.9023233333333334,2.9276590000000002,2.2879875,0.09877272727272728,0.09877272727272728,0.09877272727272728,0.09877272727272728,0.09877272727272728,3.3405,2.7780166666666664,2.7417166666666666,3.037293333333333,4.66979,4.319435,1.8134979999999998,3.713285,3.606765,2.126955,4.92554625,2.68131,2.38374,2.34273,2.620415,4.601295,8.48859,2.33105,2.0082233333333335,3.1030435714285716,0.9240985714285713,1.38824,2.3566966666666667,2.0559433333333335,1.6344175,2.8068866666666668,2.215473333333333,2.59254,2.6994833333333332,2.71532,3.707635,3.56882,2.7155066666666667,1.398224,3.58844,3.791915,1.5459566666666669,1.35155,1.35155,1.35155,3.659995,2.953276666666667,1.02904,2.4109166666666666,1.376852857142857,4.298205,1.6105466666666668,6.7956,3.39825,2.68254,3.044166,3.044166,5.164853333333333,2.897635,4.726975,5.05265,2.257605,3.1560699999999997 +GSM1946773,1.0,1.9637525,1.9637525,1.5526166666666665,5.58185,5.24975,2.7798365789473687,1.6329233333333333,8.250011200980392,4.587775,3.1082966666666665,3.444525,2.37702,3.8433,4.505535,1.952092,1.57596,5.08365,2.421883333333333,2.411635,5.2652,5.25758,3.93491,2.1915,1.8390619999999998,4.12351,5.03995,4.244325,0.7624916666666667,1.522185,1.8335066666666666,2.4033175,2.4038925,1.222462857142857,0.7219675,3.2467628571428575,1.491485,1.7851025,1.20415,2.1195475,1.294385,1.0650675,1.199516,1.489096,0.9045,0.9266819999999999,0.816654,1.3025657142857143,1.8088039999999999,1.8046600000000002,1.513836,2.19348,1.737352,18.29993675,0.36799133333333334,0.817804,1.1453659999999999,1.9412340000000001,1.77528,2.0832,1.0712914285714286,1.0712914285714286,1.0712914285714286,1.1547016666666667,1.202056,4.90348,1.218545,2.1740425,2.0798525,2.51435,1.03416,2.25383,2.3824225,2.4068675,1.49059,1.97655,1.534005,1.673615,2.4474633333333333,4.14362,5.15935,4.88701,1.6724466666666666,4.69899,4.500096666666666,4.18293,4.262145,1.10385375,7.39862,0.569773125,0.569773125,2.2192175,1.1077485714285715,16.58325,4.679295,5.44825,5.1543,4.16239,4.255285,5.1528,0.5173444444444445,2.28465375,1.6678675,2.38608,4.576465,4.677515,1.4141625,3.1436433333333333,2.836373333333333,2.83826,3.586066666666667,3.45769,4.62607,2.757777,4.550705,3.0484299999999998,0.7541945454545455,1.526176,2.42479,4.70849,3.93276,0.574470625,3.697575,3.784865,0.816975,4.361825,1.8129762337662338,3.20751,2.4996175,2.09593,3.88188,5.6003,3.347105,2.7934433333333337,3.395633333333333,2.97485,4.037495,2.99404,5.66385,3.410125,4.59726,3.275875,2.21514,3.57891,2.5401,6.932788333333333,3.841705,3.443245,4.58272,3.368705,4.7082,0.7589177777777778,9.550837857142858,3.830395,2.360133333333333,2.056568333333333,3.559466666666667,2.271405,4.8771,5.76685,2.285125,4.93142,2.67122,4.81825,2.285125,2.808253333333333,4.478585,5.119234166666667,5.1832,8.273643333333334,3.201085,4.633045,3.064565,5.3356,5.0356,1.7142666666666668,8.02822,4.78535,4.16485,4.684035,3.4232,3.51426,2.261825,6.2765,2.288725,3.83841,4.101435,5.5336,4.947675,4.024255,1.4831666666666665,2.685425,2.92528,1.8334475,1.8334475,5.898741380952381,3.17261,1.8854899999999999,4.56395,4.82578,2.750145,1.4791866666666669,1.1216222222222223,6.83315,3.169565,6.89715,4.61524,4.336615,3.73702,3.108935,3.878195,3.51932,3.83061,4.22856,6.21685,2.80468,3.586685,9.389646666666666,4.89047,3.4207666666666667,3.2019300000000004,2.8795366666666666,3.9011333333333336,4.233206666666667,1.74147,2.7709566666666667,2.3275333333333332,1.767046,1.64394,2.520096666666667,1.6634275,2.3952475,2.9394066666666667,2.8072966666666663,2.4599933333333333,3.0907966666666664,4.500096666666666,3.490345,3.593085,3.353565,5.07975,1.54115,1.77149,2.863364,2.23508,2.488236666666667,2.77815,3.4836666666666667,1.8775559999999998,1.2740500000000001,2.8260666666666663,0.63719,1.5629333333333333,0.4807688888888889,0.4807688888888889,1.39681,3.3057466666666664,2.5087333333333333,1.25952,1.5869266666666666,0.3145892307692308,2.6854600000000004,0.63719,1.1700933333333332,0.25174405405405403,1.35302,2.1224425,3.7000666666666664,2.9824133333333336,2.7036,2.54563,2.4521866666666665,2.4352066666666667,2.5479866666666666,2.56096,2.1942,2.67323,1.9332433333333334,2.62402,4.395335,0.644655,1.86893,2.7108833333333333,2.14378,3.5161300000000004,1.5173320000000001,2.5554966666666665,2.6051166666666665,4.56875,2.2350533333333336,7.060361904761905,1.7253285714285713,2.7634833333333333,2.286255,2.3217175,3.7952333333333335,2.0950425,1.961675,4.40796,2.526386666666667,2.13301,4.131395,4.19994,4.34621,3.775825,2.22856,3.260265,5.102330666666666,4.05342,4.25632,4.16404,4.27317,3.200655,4.382775,3.366905,0.88319,4.77329,1.3032483333333333,4.91215,3.742,6.047808,3.81437,4.142085,0.97563125,2.163595,3.530655,4.0959,0.9040985714285714,1.4067191025641028,2.164123095238095,3.4429894285714284,5.021107499999999,5.5205969999999995,2.0672525,4.24203,5.4718,0.3335485714285714,4.002745,2.32505,1.00849,4.27999,1.965735,12.219885,1.2088,1.313075,2.946876666666667,2.630585,1.92852,4.670665,0.32521,1.6664700000000001,2.879823333333333,1.025775,3.6279,0.9955071428571428,5.21385,3.88659,2.1270433333333334,5.8405,5.39615,2.3838625,1.13565,4.275171666666667,5.6521,4.282035,0.8797536363636363,8.250673333333333,2.8441733333333334,4.356505,2.64369,2.55468,4.78367,2.5353966666666667,2.947813333333333,2.33989,2.585786666666667,3.363125,3.015693333333333,0.32902875,4.16527,3.84058,3.942855,3.985625,4.575635,6.172815,3.88905,1.6928175,5.79555,4.65267,4.54239,4.77589,1.0447983333333333,3.0435466666666664,3.28497,2.6324799999999997,15.58959,3.22153,3.9045,4.212635,5.5452,2.64002,5.237828472222223,2.0510125,0.8156644444444444,2.63755,3.476495,3.931945,3.696335,6.450428333333333,2.9169033333333334,2.2132,2.0239,3.3217499999999998,4.28521,2.4349875,0.36596081845238093,2.590925543478261,1.9573975,1.157305,0.46949234019151137,0.5730238619306418,0.36596081845238093,0.36596081845238093,0.36596081845238093,1.12795,1.30036,0.9078375,1.389565,4.455097500000001,0.21901529411764706,11.493324626623377,3.044976666666667,2.8327033333333334,4.472395,4.15306,3.95027,1.94479,4.866405,4.160669666666667,4.328065,4.22375,0.7059769230769231,3.3576,4.288733333333333,0.5512921428571429,3.408025,2.9258733333333335,4.738955,0.5925981818181818,1.714545,4.27777,4.23357,2.0912,1.8715,1.6233933333333335,3.3469333333333338,3.946415,2.99835,2.8170300000000004,5.0484,5.8317,4.728305,3.25544,3.1795195,6.566583333333333,3.945733333333333,5.3356,0.40829047619047615,3.2569033333333333,4.165818333333333,1.9719733333333334,2.765645,2.889473333333333,5.273996666666666,0.65089,2.3633425,4.702,4.05333,1.0297885714285715,4.459335,4.18087,4.815305,3.1899866666666665,4.345335,3.489345,4.285885,1.1617916666666666,3.764855,2.73067,4.66473,3.97591,4.799985,5.62495,4.507145,2.63931,5.48091,2.4977133333333335,3.188515,3.1078033333333335,2.8856699999999997,2.819926666666667,2.4115933333333333,1.9035499999999999,1.4812733333333332,2.023233333333333,0.8313057142857143,1.7541066666666667,2.18524,2.026623333333333,3.1308633333333336,3.3636,2.782166666666667,0.9771855555555555,4.939375,3.3786666666666663,5.428137916666667,2.62463125,3.0366966666666664,3.537266666666667,1.8115333333333332,1.8115333333333332,2.9528155844155846,2.9528155844155846,4.301075584415584,0.5079028571428571,1.7211299999999998,2.4116666666666666,3.659933333333333,2.165642619047619,2.165642619047619,2.165642619047619,7.740330238095238,4.412663809523809,0.9396545454545454,3.53098,5.067646666666667,2.2997675,4.888535,3.747025,2.30361,5.7593,3.07018,3.263586666666667,1.4844125,2.53791,3.19211,3.00259,2.7932233333333336,5.33095,4.249666666666667,3.7730333333333337,4.8020233333333335,1.9116833333333334,2.702583333333333,3.08006,0.9581666666666666,2.129863333333333,4.2163113333333335,7.9187825,1.4803325,2.901435,4.95225,1.893808,1.8393175,1.8393175,1.10557125,4.75706,7.7043,3.922735,6.285048,4.58728,1.8510166666666665,4.26167,3.23861,5.0338,4.77888,0.36214315789473683,3.135715,3.343525,4.2357,3.746005,1.8601199999999998,1.92638,2.74095,4.661405,3.92079,3.185635,2.45961,1.6915780000000002,6.79204,4.50106,5.1604,3.5185,5.0235,4.768055,5.2051,4.24265,3.7455075,1.9392475,1.1245314285714285,2.752365,3.91786,4.67988,5.684755,5.8988949999999996,2.19079,1.7548466666666667,2.6519633333333332,2.7328233333333336,2.9925266666666666,0.61893,2.094935,3.54522,1.1147675,5.0396,3.140185,5.960967500000001,1.2616862121212122,1.2616862121212122,4.0949,3.743815,3.639655,5.25315,2.7543966666666666,2.2938,3.896235,3.26247,2.15484,3.3401666666666667,2.524713333333333,4.097695,3.499325,4.284695,4.480905,1.0141133333333334,2.626145,4.430105,4.545405,3.34033,2.4963333333333333,2.222245,0.6478655555555556,0.6478655555555556,0.6478655555555556,0.6478655555555556,1.368963888888889,3.8607375,3.8607375,1.6285100000000001,7.300343333333333,3.4601,4.077805,3.163796666666667,2.6324,4.818575,3.949085,4.7889,5.43435,1.696425,4.40864,3.853165,2.7104,4.809835,3.540255,2.62303,4.7875,1.773755,4.871795,1.64515,3.6014920833333335,2.963135,1.7938225,1.188555,2.87956,4.406605,1.3019159999999999,0.8610633333333334,3.834625,1.3524125,5.3314466666666664,4.388185,1.3638214285714285,3.626685,0.7751166666666667,2.6288733333333334,2.6536466666666665,2.3270433333333336,2.462155,4.5691,2.9107683333333334,4.629165,5.18165,4.63703,4.26082,2.16952,1.2552157142857143,4.0636,4.97839,1.4402475,1.4402475,4.03633,0.20481866666666668,2.3484666666666665,0.20481866666666668,0.20481866666666668,0.20481866666666668,0.20481866666666668,4.75103,2.7077233333333335,3.29573,3.49198,3.2497000000000003,4.47477,2.7029666666666667,0.9537625,0.9537625,1.0189233333333334,1.0189233333333334,3.711805,2.91063,3.84016,1.6505867857142857,1.6505867857142857,4.86905,0.6282835714285715,2.283055,7.785873333333333,5.3905,3.189715,3.676005,1.0172225,2.19485,2.00195,4.606215,4.244265,4.325195,3.85024,1.2919957142857144,2.610975,2.0119325,7.30747,1.67772,4.45323,4.87642,2.63671,3.91478,6.08239,7.605655,4.24287,5.2482,5.02065,2.2638625,3.287445,2.234445,2.32253,1.975205,3.813115,3.97881,6.076296666666667,6.82372,4.45239,1.2493766666666668,2.11926,4.3228,4.774505,2.12334,5.30035,4.18378,4.6108,1.6966466666666669,3.8935,1.5689933333333332,6.3354,2.733636666666667,2.3102,2.402416666666667,2.316,3.4666,3.6377666666666664,3.717233333333333,3.231863333333333,3.4055999999999997,1.9556419999999999,4.1526,3.05665,3.61106,0.385988,2.896405,3.93255,2.56795,5.4492,4.897995,4.728625,6.84117,4.87973,2.23563,4.348515,5.1416,1.6657283333333333,5.19185,5.6303,5.18505,4.591235,3.358885,5.57845,4.991735,3.90692,5.177526666666667,8.01225,3.86644,1.2422,1.4676133333333334,2.735985,1.8662199999999998,4.63805,4.134125,5.638375,2.5972133333333334,2.6671300000000002,2.71447,2.5915500000000002,2.5620266666666667,1.0281344444444445,0.5057670588235293,3.722255,4.037985,3.699066666666667,4.023975,3.015515,3.32708,5.650685,3.30737,0.5910117647058823,3.334455,5.4868,2.065625,1.490786,3.716325,3.6989,2.6718166666666665,3.9929,4.26656,2.6369366666666667,2.2240033333333336,2.3609833333333334,2.449516666666667,2.637875,4.213261666666667,5.068105833333334,7.5390875,2.02044,5.23665,3.6336220833333335,5.7662950833333335,2.8053933333333334,3.09283,2.380195,2.24457,1.344655,1.344655,2.5819233333333336,2.355916666666667,2.73284,5.155,1.7207219999999999,2.261125,1.963555,0.72465,4.63405,0.66399,1.18371,3.41821,4.702155,4.40393,1.6035125,4.947145,3.1938333333333335,0.9012142857142857,4.187195,3.9158442857142854,3.3316033333333333,2.53073,4.88996,0.28852517241379305,2.5726633333333333,3.144045,1.387175,3.727695,6.4131,2.28809,1.27513,4.047575,3.74794,2.7483766666666667,2.7483766666666667,3.510965,4.671815,4.940375,5.140433333333333,5.1947,0.9799677777777779,2.5868966666666666,2.669026666666667,4.42623,5.223,5.22365,4.95465,4.353833333333333,3.7958,3.7031666666666667,3.556233333333333,4.073466666666667,3.1165366666666667,3.0801,0.6804185714285714,2.4304775,2.42337,4.33366,2.949393333333333,3.2325466666666665,0.7403883333333333,2.41396,3.725314,4.95297,5.72505,4.25698,2.2083975,2.2083975,0.855196,3.354085,4.50492,4.124045,4.992487857142858,3.15259,5.2155,0.5939018181818182,3.770325,4.223535,4.68057,3.6091491666666666,0.9117871428571428,3.46603,4.179475,5.23315,3.823035,5.05655,2.778595,4.290515,1.656355,1.1147757142857142,2.771986666666667,5.2069,3.86797,3.10479,1.5547449999999998,4.153025,2.4752525,2.82995,2.7259539999999998,3.1530400000000003,5.11769,2.9120966666666668,1.824538,3.5315999999999996,1.4740073809523808,2.9034433333333336,2.6980233333333334,2.269515,2.840813333333333,3.073816666666667,2.4787399999999997,2.8241099999999997,3.973865,3.0239999999999996,3.8051233333333334,2.2945433333333334,2.227215,4.247105,2.9386766666666664,2.4750166666666664,3.8051233333333334,2.3458133333333335,0.8671018181818181,2.4844575,1.0432211111111112,2.3368525,1.7168875,0.9074927272727272,1.9106,1.8786075,2.7367084999999998,2.729825,4.66016,1.4800875,4.11663,3.00122,1.588748,2.60821,3.0009833333333336,1.41268,2.7103933333333337,2.786073333333333,2.704612272727273,2.088585,1.750588,3.3790999999999998,2.2083533333333336,2.860482777777778,3.0502766666666665,3.10516,3.8004333333333338,2.1204266666666665,4.3055666666666665,3.4430333333333336,3.7170666666666663,3.1487966666666662,3.4308,3.5578333333333334,1.9814633333333334,8.94433,4.29663,4.402785,3.309125,2.99408,1.88684,3.931565,1.679624,3.99284,4.504115,1.485454,2.626653333333333,1.1246916666666666,2.6021566666666667,1.8308666666666669,2.5310266666666665,5.329886666666667,3.243536666666667,3.584395,4.832185,0.7313875,1.590252,1.05602,3.81136,10.819843333333333,4.1565,6.6887,2.0167525,5.17825,4.34658,2.5427,5.4696,0.27391058823529413,0.8291071428571428,4.82885,4.984645,7.239935,2.128335,4.42845,5.57175,4.64528,4.550685,3.97701,4.70805,3.29599,5.61072,3.479555,3.10828,3.39941,2.02333,1.9457666666666666,1.4336384583333333,2.429586666666667,4.506035,4.77292,1.551672,8.95718,2.35235,2.743494166666667,1.012818,1.012818,7.495560833333333,3.004165,2.4714875,2.12934,2.783996666666667,2.12366,0.88762,3.2439133333333334,2.6283499999999997,0.6225642857142857,1.6977766666666667,3.481812,3.481812,1.1022033333333334,2.524296666666667,2.3239,2.696626666666667,1.3391925,1.6959933333333332,4.866708,2.843856666666667,2.60825,1.3449575,1.3449575,4.157975,5.46325,4.748005,3.35543,3.963125,5.33086,2.81453,2.9870066666666664,3.4814333333333334,3.9783,1.216235,3.5036666666666663,2.722875,3.83498,2.132756666666667,4.77794,3.554645,4.25894,3.47403,5.418585,1.1036677777777777,1.959445,1.75057,3.58048,4.5390575,3.643985,4.026195,4.061215,3.403855,1.8581675,4.51668,4.01253,3.53804,2.3758766666666666,0.8307375,3.509765,4.55329,4.958195,1.1708733333333334,2.9309733333333337,3.04129,1.9452533333333333,1.7464899019607842,1.7464899019607842,1.1686216666666667,2.4813233333333335,1.0927814285714286,1.3526479999999999,4.57256,4.48719,0.4998190476190476,3.773185,3.451866666666667,4.10641,5.59705,0.417709,9.498055,5.63455,3.23525,3.991705,4.75736,5.506202142857143,5.1183,6.685034999999999,0.7264463636363637,2.859413333333333,5.3706,2.7129966666666667,1.7310575,2.03012,4.669435,5.2950875,2.547953214285714,2.826586666666667,3.31921,1.9436725,4.440495,10.338799999999999,8.381576249999998,3.6710999999999996,4.628735,3.1911316666666667,3.064405,3.929185,1.7833359999999998,2.870316666666667,4.082,4.49203,4.366265,4.99933,8.356166666666667,2.615536666666667,4.21412,4.820565,4.98494,5.23595,6.890326666666667,4.2702675,6.3098,3.41661,2.825625,2.86048,5.9822,3.707685,5.39775,2.10181,3.117903333333333,3.342475,6.03645,4.35315,4.55097,1.448308,0.89867625,2.6691,0.6068593333333333,4.036635,3.933665,3.42434,2.79485,2.13555,2.89225,2.564625,2.9602320000000004,1.7406400000000002,2.9838662499999997,2.91005,2.187485,2.55355,3.508462,1.3180333333333334,2.9365408333333334,4.909465,3.5101333333333335,1.0627,2.58016,3.7664524999999998,3.740717,1.5196375,5.7201,5.7893,2.0056833333333333,2.88597,31.072261796422534,3.4668666666666668,1.6727333333333334,3.8949,1.9159566666666665,2.55816,2.94314,3.4372666666666665,1.973455,2.708975,2.2547,3.6476395000000004,3.011703333333333,2.4435025,1.510845,2.2276800000000003,2.778,0.4015322727272727,1.133205,2.675743333333333,1.72344,3.57294,1.5196375,2.0057899999999997,25.439526722222222,5.2032,4.194815,3.63922,2.67437,2.33629,2.6317266666666668,2.3581825,3.41893,5.452718,5.17575,1.601228,1.8539940000000001,2.73379,2.628493333333333,3.854450833333334,5.44555,4.88001,4.512865,0.19506553191489362,5.03315,4.778185833333334,3.751135,9.06789,1.0526275,1.0526275,3.048553333333333,3.19973,5.6414,2.0613844444444442,1.0224655555555555,5.2887,1.835135,4.262925,4.256275,3.357585,4.01297,3.942645,4.9579,3.08733,0.7081411111111111,3.219705,2.0798625,4.30199,7.73629,4.54606,1.9470966666666667,1.9470966666666667,6.7997025,4.97922,4.09868,5.8331,2.35183,5.237607499999999,1.53587,1.5319333333333331,2.875633333333333,2.4897833333333335,3.71348,2.7560966666666666,3.701265,4.2758125,3.93933,5.4323,2.2509725,2.45577,1.9988975,3.385775,2.310945,2.2663725,1.978375,4.909118333333334,1.848935,3.4795319047619047,3.073776666666667,3.4179999999999997,2.73452,1.82392,1.4736428571428573,1.00167,3.05493,3.9121,0.702726,4.64978,1.7247025,5.905801249999999,1.9279125,1.8721025,1.50448,1.5109733333333333,5.831366666666667,1.8758839999999999,3.0872666666666664,3.7517666666666667,1.27035,1.957165,4.803224666666667,3.21195,2.4165566666666667,3.7001000000000004,3.00796,3.0119333333333334,1.2758410714285713,0.27591166666666667,0.27591166666666667,0.27591166666666667,0.27591166666666667,0.27591166666666667,4.21655,2.7186066666666666,2.4540775,3.3808666666666665,1.3794166666666667,2.6302333333333334,3.2277733333333334,2.9012100000000003,3.54293,2.92956,1.7585633333333333,2.91607,3.2606300000000004,2.19941,1.9235675,3.540645,3.3181666666666665,3.219806666666667,5.14885,2.744963333333333,2.7505166666666665,2.5350533333333334,10.87556,4.995205,4.80746,5.0163,4.15258,2.8109366666666666,4.9424,3.84976,3.33018,5.648618333333333,3.8934,2.9443,2.2763075,3.77128,5.170905714285714,3.560795,18.480790821428574,1.18698,4.518035,0.8469655555555556,1.16747375,3.0728,4.674345,4.060535,4.28921,1.4886833333333334,2.4791375,4.37594,2.989376666666667,4.644495,3.142441428571429,2.603876666666667,0.6307933333333333,2.730066666666667,4.68754,2.2503075,2.45066,2.33007,19.823036666666667,1.759442,1.31605,2.52745,0.3219792307692308,1.7942425,3.0076666666666667,2.03617,2.8758966666666663,2.715975,7.798835,2.04719,2.546625,2.2395375,2.129295,1.5559033333333332,3.4370999999999996,3.77899,3.35992,3.1593,1.974585,2.5327383333333335,3.2487775,4.72637,0.4058633333333333,3.327336666666667,2.938753333333333,3.46658,2.105775,3.6268625,3.65241,1.54819,2.272536666666667,2.2504633333333333,1.47732,2.2263633333333335,3.67043,3.49374,0.7410450000000001,3.322435,4.86006,4.21529,2.2776620000000003,2.2776620000000003,3.1470866666666666,4.726625,3.33721,3.281425,2.3616975,1.0461,4.214045,3.61199,6.23115,3.864635,2.427612,2.427612,1.5954475,4.103385,5.17685,3.86744,4.18282,3.2972066666666664,2.5797166666666667,4.46218,3.863605,4.077245,2.9302799999999998,2.5071666666666665,4.380941999999999,3.2192833333333333,2.61155,1.9394666666666665,3.815505,2.739375,1.5510433333333333,3.61599,4.156545,4.68979,3.298783333333333,4.658895,4.397645,6.6443312500000005,3.920835,2.2087,4.79455,2.85471,7.340115,2.76015,1.2742116666666667,4.22569,3.20225,4.66436,0.6031092857142858,0.82676,3.676575,3.942255,2.066279090909091,4.37786,2.72787,2.73206,9.362502,1.7876319999999999,1.1846640000000002,4.375395,2.666675,4.1538,5.14715,6.8451933333333335,3.0789033333333338,2.1330133333333334,3.008366666666667,1.8857366666666666,3.5389666666666666,8.637126059113301,0.8137157142857142,1.0380275,4.912635,0.42645066666666664,1.62232,2.2905825,2.98545,2.948125,2.651175,4.239155,2.41478,13.04572,5.108969999999999,2.4126775,2.4126775,4.28065,0.7902,5.567236666666666,4.13137,3.961065,6.05138,3.535105,4.82619,1.3788099999999999,2.77024,2.667085,2.60314,2.98788,2.69943,3.140595,3.461155,3.610055,2.962975,2.99378,3.960845,4.069495,4.50826,2.9931866666666664,3.2494099999999997,4.852748333333333,4.36514,18.768934761904763,12.55600142857143,3.2805635714285715,0.6773858333333332,1.5477857142857143,4.591095,3.513195,3.026278237179487,1.82698,0.87934,0.6784541666666667,0.6153457142857143,2.2033125,1.647198,5.256060000000001,3.30992,0.7177963636363637,3.30984,2.27685,2.0577,1.7562840000000002,6.402216666666666,1.511562,4.339475,3.066385,3.0043166666666665,2.311935,2.57624,2.5308266666666666,0.8056909090909091,2.749995,2.9766399999999997,3.8172613333333336,3.1108100000000003,7.697964166666667,3.6195,3.494055,2.2205275,3.703005,7.92065,2.12518,2.495745,2.4231425,1.645555,2.581325,2.2781725,2.893225,0.907548,1.3798375,1.06452375,3.10193,4.154615,5.94945,5.4201,2.778425,2.26222,3.0041,3.5466333333333337,7.775623333333334,1.2308766666666666,0.404990625,2.83298,1.9500833333333334,1.59428,3.619701,1.307536,2.120568,4.477013333333334,3.113258,1.2042066666666666,1.8521133333333333,3.525808333333333,3.527725,4.508775,4.59736,2.3751175,5.15465,3.965445,0.7940692307692309,4.57361,3.96224,4.530227083333333,3.3654333333333333,2.30387,1.3163360000000002,1.2429325,3.48581,2.882405,3.256515,3.816505,2.764665,2.6230866666666666,3.20943,3.701025,4.914625,2.256515,2.727085,4.29049,5.84235,0.56465375,4.46922,1.8406025,3.512865,4.016266666666667,1.9881725,3.140445,2.2182625,1.95261,2.513795,2.588870833333333,1.6948100000000001,5.578,3.66404,1.3266428571428572,6.89338,1.0124733333333333,3.63074,1.6687166666666666,4.640235,3.97142,2.7477699999999996,3.14451,4.06699,8.82293,2.715925,3.655925,3.63799,3.632745,1.706555,7.80439,3.585475,4.590345,1.660455,4.22531,3.113525,1.06290125,1.9363320000000002,4.37527,2.156615,4.23976,4.7249675,4.250522500000001,4.525295,2.348035,5.17875,3.999465,3.1227966666666664,2.4729433333333333,1.8181180000000001,5.1657,6.342,5.2613,4.60283,3.021895,2.3082725,4.247405,3.50718,1.106973846153846,4.12348,4.79195,3.96136,2.88843,3.59827,0.5383228571428572,0.5383228571428572,5.4255,4.426375,5.3121,2.215835,3.915775,5.42755,0.8328049999999999,4.167595,4.786625,4.812465,4.46826,4.59027,1.8848725,2.992565,2.197765,4.411935,0.70593125,3.893985,4.07394,2.622245,3.0321466666666663,4.292835,2.355385,3.284275,59.90223208441558,3.1475,2.52522,1.6894375,3.27838,3.89323,0.8380025,1.0024225,2.2480425,2.2480425,1.291808,3.271795,2.45912,3.9354795,7.46742,2.8701166666666666,1.2644371428571428,1.4318016666666666,2.6447966666666667,3.916456666666667,0.9838850000000001,1.845475,1.211728,2.0327225,4.14613,4.493475,3.18539,22.473457132034632,4.87338,3.883875,3.20226,2.1017433333333333,3.055365,3.54519,2.454555,5.23639,1.591352,4.29522,3.5093579285714283,6.173186527777777,2.22601,2.497075,1.876595,3.83825,2.2838133333333333,2.1427875,2.1209533333333335,4.07589,4.20612,3.48089,4.036715,4.630885,2.586125,2.63822,3.119575,2.86011,2.894375,2.15422,2.0530625,3.550895,1.1836916666666666,3.917425,4.600965,2.56719,4.70634,4.92849,4.909771666666666,2.1810266666666664,2.318755,2.657895,2.753875,3.97741,3.176205,4.693695,0.71147,4.00423,2.636715,3.81099,2.2256975,1.77076,4.101266666666667,1.2416333333333334,3.003385,4.295475,1.164976,3.457535,3.32521,4.69891,6.0687375,2.36993,3.14768,2.5608766666666667,3.6344333333333334,2.7290533333333333,2.4563913333333334,3.4167,2.397456666666667,2.4548466666666666,1.3769433333333332,2.4102575,2.4102575,2.0159433333333334,2.1313333333333335,1.80645,2.7721033333333334,3.76697,5.37725,3.695185,1.427995,4.541885,3.532995,3.505575,4.221695,1.92973,2.26563,4.694324999999999,1.86036,5.26346,4.52455,3.555305,2.7379433333333334,3.6736025000000003,3.22369,3.152015,3.50047,0.14565877551020406,2.6257633333333334,7.707445,1.5607820000000001,3.34678,4.5854,1.0174642857142857,1.2660783333333334,1.8727375,3.961145,2.93678,6.610905,3.374935,3.647305,3.01017,2.720955,4.30728,3.451005,3.890655,3.347575,2.795916666666667,5.3233,3.92604,4.31602,2.6628333333333334,1.97747,3.43173,4.40594,2.67795,3.129465,2.128145,6.3193,3.871615,3.74628,2.66046,4.56048,5.26895,2.702715,4.48496,4.430055,3.611145,4.510835,3.480095,3.03727,6.96407,4.570485,5.00155,5.16055,4.08074,5.31428,4.530065,3.74262,1.261452,6.6814,2.436575,5.0112,4.09549,4.208695,3.161436666666667,1.9791066666666666,2.25093,2.4766933333333334,0.920147,3.276536666666667,3.3423,3.0894066666666666,2.001726666666667,3.857135,4.464255,2.43352,0.5374608333333334,4.36088,4.43664,4.863505,4.76192,3.353255,4.671295,5.04695,4.724505,1.4120666666666668,0.9770923076923077,2.6370366666666665,5.05125,5.6983,0.48953875,2.855355,2.5540966666666667,3.411215,4.36834,3.7857000000000003,1.932245,4.96546,3.230065,4.26249,3.03146,6.5783,4.829205,6.9429275,0.5850141666666667,4.1057,0.721366,2.27455,4.069866666666667,3.0243533333333334,1.2529033333333335,2.30758,4.25925,3.679915,4.12294,2.23959,2.16155,3.1028,4.740095,3.77596,3.95787,1.623836,1.168328,5.93575,2.2545325,7.755535,4.45709,3.48759,2.0990225,1.54872,4.40296,4.95889,1.7690866666666667,2.312985,2.556925,2.6257633333333334,6.743146666666666,3.020926666666667,2.8439366666666666,4.40114,3.57633,1.9656433333333334,2.953485,7.2815925,4.57099,5.1746,0.6198445454545455,3.672805,4.435235,4.836196071428572,4.31091,4.37134,2.981095,2.801805,3.18721,3.016095,3.6313196666666663,1.636598,5.422218,4.8486,4.90338,3.842405,3.425735,3.3387891666666665,2.2831025,1.3217375,0.91283,2.770945,2.49801,1.1239033333333335,2.6141466666666666,5.99465,5.36785,3.55143,4.571905,16.593275119047618,4.27198,4.410635,4.36382,0.7078333333333333,5.22465,4.71048,4.58237,4.850175,5.29895,2.62936,3.598445,3.197825,1.434432,3.13144,4.821575,3.263643333333333,1.383278,4.725045,5.0111,4.155535,5.26285,4.78142,5.6415,4.58073,3.0930133333333334,4.21269,4.25156,2.593265,2.993513333333333,2.966223333333333,1.8731233333333335,4.928635,2.649679642857143,1.86147,3.94269,2.39115,4.200055,4.247105,2.16047,2.654935,4.34592,3.7052,4.815515,4.321945,4.687115,4.563103,3.17635,5.2128,2.63538,3.588115,4.133805,1.540134,4.47778,1.0866083333333334,4.39816,3.148395,1.07724,3.59508,1.99929,6.48116,2.5763961904761907,2.5763961904761907,2.5763961904761907,0.7479116666666666,1.3392283333333335,1.746515,3.423395,5.87704,3.3798394444444444,1.737625,2.2106,1.6770266666666667,3.742955,2.44741,0.42693846153846154,1.65219,2.147515,3.046685,1.805995,2.45508,2.2814,2.0699925,3.792635,2.827303333333333,3.223895,3.01682,1.95324,6.79885,1.99627,4.480925,4.02794,6.174363333333333,1.57446,3.58317,3.710085,3.6109,4.491195,2.743585,1.956275,3.818755,6.083829833333334,2.08259,3.52802,3.108735,1.997245,4.69802,4.695445,2.7043233333333334,2.06967,3.6991975,6.013176428571429,5.71485,3.142925,2.897385,2.69437,2.93368,3.20025,3.872205,1.294705,2.56201,4.585035,0.7322825,3.667065,3.895255,3.9278,3.874025,2.44917,3.34735,1.91613,4.405195,7.918771666666666,4.70476,3.34702,3.79459,0.98891375,4.776755,2.393745,4.311235,5.2600975,4.06978,4.507455,11.54325,4.906265,3.726955,1.459775,0.7058399999999999,2.790005,3.768845,3.37736,3.593715,2.15994,2.497986666666667,2.3880133333333333,1.1762966666666668,1.1762966666666668,1.9298066666666667,2.38358,3.32517,2.52931,3.673133333333333,2.6847733333333337,2.748473333333333,2.85181,1.4671466666666666,2.5198766666666668,2.16376,2.1608966666666665,1.4685425,2.6179166666666664,0.8583533333333334,10.230432916666667,0.8583533333333334,3.3524,2.1228416666666665,2.7795233333333336,4.599695,4.30915,4.346285,4.69056,2.4298366666666666,2.8608700000000002,3.373089333333333,3.7337333333333333,3.4301666666666666,3.1836233333333332,2.693543333333333,3.2922533333333335,1.6175166666666667,5.3576,5.969856095238096,3.336066666666667,3.5295,3.094023333333333,3.2226266666666668,3.2568099999999998,1.222462857142857,3.4402000000000004,3.206996666666667,3.94949,5.867,4.333195,2.829473333333333,3.5745666666666662,3.2058866666666668,4.19332,4.17943,2.60104,3.639415,3.3806333333333334,3.029866666666667,4.724745,3.0623199999999997,3.99275,6.55803,3.15382,2.699973333333333,1.9979366666666667,1.45861,5.4274000000000004,3.4410533333333335,2.6992166666666666,2.0283700000000002,2.16539,4.477365,3.88802,2.878425,3.2010066666666668,3.238046666666667,3.6054333333333335,3.5183666666666666,3.6641666666666666,3.0873000000000004,0.51529625,3.8053333333333335,2.5990699999999998,2.5422566666666664,3.549055,5.30835,5.31005,5.4354,2.79988,4.765341666666667,1.2282966666666668,2.6822700000000004,2.6822700000000004,5.7896,3.85657,3.75975,3.441045,1.775475,3.10154,3.85873,0.9718414285714285,3.8836788333333336,3.4433684761904764,2.1555213333333336,0.357938,3.41867,3.78462,6.6775199999999995,3.39643,5.8168,3.28118,4.019955,4.16601,1.8911533333333335,3.52269,4.801865,3.490255,3.24334,3.019856666666667,5.8644875,2.1998075,1.0541225,1.93103,1.65255,5.12052,2.45703,2.3780066666666664,1.7759375,4.43444,4.05865,4.58008,0.6705110000000001,4.657105,4.288995,2.8037833333333335,2.8334966666666666,3.1036099999999998,3.555645833333333,4.05072,1.5950166666666667,0.6692368421052631,0.7711499999999999,3.560366666666667,4.535855,6.1576699999999995,4.705385,5.35385,5.39285,1.3809885714285712,4.016266666666667,2.11516,1.01487125,5.0445,5.95865,3.68474,4.942485,4.05571,7.084225,4.095433333333333,7.408825,3.88537,2.853893333333333,6.51675,10.434566262820512,2.68545,0.734935,3.66123,4.30245,2.14478,6.58445,4.90134,3.979405,3.0049966666666665,3.0049966666666665,5.05085,3.457,4.112965,4.92933,4.030549428571429,2.576938857142857,1.1642,5.749,2.5269,5.751323749999999,3.792345,4.83547,3.128475,2.1195625,4.626155,4.73993,3.6081333333333334,3.86784,4.58331,28.668911666666666,2.185285,2.6869,2.34378,1.63954,2.732056666666667,1.31171,2.9503333333333335,2.9833533333333335,3.579466666666667,3.3125533333333332,0.7166399999999999,3.2547566666666667,4.23797,2.939495,3.161773333333333,3.77262,5.980925,5.09985,4.45318,4.118005,4.026095,4.34126,3.5503,1.6940175,1.016675,1.3587833333333332,3.009673333333333,1.4623333333333333,3.620233333333333,2.4387,2.382073333333333,1.90628,2.573725,1.96443,1.8293833333333334,2.8481,4.140845,3.70303,4.25247,1.651754,4.0819,2.4708866666666665,4.46508,2.5963366666666667,2.542245,2.492785,1.4468766666666666,3.84523,6.5176,2.732155,3.64103,3.96859,2.593925,3.1684508333333334,3.6698,4.559755,4.685535,0.31681508365508365,0.31681508365508365,4.978865,5.20285,3.634115,2.946255,5.5737,4.51264,0.6484161538461539,4.92822,4.76642,3.793335,6.44405,4.56366,7.40977,14.808568333333334,13.572679102564102,4.362465,4.30114,2.566736666666667,0.6573607692307692,2.7961766666666663,4.838235,1.2872566666666667,4.31913,3.6252666666666666,3.1555,2.161563333333333,1.8237733333333335,4.777839999999999,4.900595,9.184624761904761,5.18845,4.260295,7.563401287878788,3.436275,3.0694133333333333,1.422745,5.658119166666667,2.1380525,2.46,2.7568366666666666,0.2915109375,2.929965,3.410215,4.797850833333333,0.928572,1.341095,3.87612,0.586834,0.586834,2.9862308333333334,3.016666666666667,3.420533333333333,4.488715,4.343225,5.5319,3.727765,4.158135,2.89959,3.0863266666666664,2.9539033333333333,0.8771416666666667,2.8156033333333332,2.812315,3.1968,6.9961649999999995,3.09184,9.187775,2.992475,6.02955,2.98579,2.37936,2.634025,2.89345,1.7113775,2.47068,1.831265,4.24098,2.631275,3.83699,2.921785,3.954321666666667,3.954321666666667,2.698455,2.698455,8.981590333333333,2.749586666666667,0.799594,2.58628,2.51241,2.5237766666666666,3.83699,2.0058,1.950948,1.5433160000000001,4.40798,4.62675,1.6903275,4.49398,3.971915,6.195677777777777,6.595815,2.30977,4.18638,7.25929,4.487065,3.443595,2.77032,3.7368,3.5967160606060604,4.34909,5.251805833333334,7.877617333333333,3.61043125,3.527335,1.1374716666666667,4.407315,4.174744,4.980045,3.9031708333333333,4.421095,2.83944,2.55145,7.194515,3.230345,1.382952,6.24013,3.79901,2.780003333333333,5.18375,2.780003333333333,3.182535,4.04636,4.791945,1.0877571428571429,3.8257211111111107,4.580335,3.65273,1.34967,1.7663275,4.56547,4.032555,2.663215,6.8247366666666665,4.365705,3.95587,4.29408,4.4709175,1.3746075,4.482565,2.60123,3.980545,4.121825,4.3084,4.57272,3.084955,4.16527,4.99869,2.1120993333333336,1.8180925,3.8010333333333333,3.7001333333333335,3.3800000000000003,3.223653333333333,3.6796,2.9650733333333332,5.2679,3.48534,3.77022,2.86243,1.8859066666666668,3.5091666666666668,2.0279066666666665,3.09477,3.040335,2.67407,0.70593125,2.21446,1.76799,3.303355,1.9515360000000002,3.383839,3.539195,1.5825939999999998,3.1705924999999997,4.657645,0.8046200000000001,1.2159833333333332,3.358295,3.8556,3.716955,1.967005,1.7334800000000001,3.438205,2.4312825,1.70379,2.89434,1.853895,1.1672280000000002,1.345765,6.292115,2.960255,2.189705,2.39267,2.4249725,3.62623,0.858575,0.3327,0.8463671428571429,4.91694,2.0853451428571432,4.641835,2.1364125,2.1051097142857143,3.4883342857142856,1.3832245714285714,1.0219337142857143,0.675948,0.5807985714285715,3.1029516666666668,6.5733,3.106995,4.07733,0.35034607142857144,3.75448,18.950959761904763,3.002165,7.4116265955710965,1.0844425,1.0844425,1.0844425,1.0844425,5.758851666666667,4.257355,3.514135,1.9747066666666668,3.02255,4.18715,5.30365,3.643395,3.607925,4.702775,4.760515,4.298715,3.754836,3.830755,4.9773,4.00863,4.88654,3.45354,4.07581,2.6770933333333335,3.727045,3.2868,4.026585,4.36671,4.62038,3.4352,2.542325,2.4573066666666668,4.78282,1.2280285714285715,3.857395,2.8753933333333332,3.4823406666666665,4.250522500000001,4.376955,3.08478,3.06793,4.842295,3.545945,3.105995,5.23815,5.0014,3.255965,3.67479,1.6946919999999999,1.6946919999999999,2.043045,4.71822,4.1005,5.847323,5.04845,3.545756666666667,6.34105,4.48455,2.20807,9.206465,5.00265,6.6112175,4.412475,2.8344199999999997,3.96942,0.2558496551724138,1.00473375,3.761670666666667,3.94181,4.973715,3.1608433333333337,5.931753333333333,5.134,0.5683,2.79595,0.503629,1.9624823809523808,3.42384,2.144305,3.909605,3.708195,3.274975,3.50948,3.53303,3.668515,3.333185,3.6607,3.88347,2.3234,1.9624823809523808,2.72497,2.09832,3.57823,2.303375,3.671795,3.451835,1.706555,4.39291,3.68517,1.400315,5.07875,4.76756,4.247285,2.76637,3.2711466666666666,4.458435,1.93535,1.413384,2.5778933333333334,2.9589499999999997,2.5748366666666667,1.8787733333333334,5.12455,3.29242,5.023951666666667,4.045459285714286,5.0158,4.08198,1.7872160000000001,5.31175,4.78704,5.1583,4.199705,6.321235,2.195435,4.686635,4.016155,3.185165,1.9341325,1.5912133333333334,3.784855,4.499625,2.2746333333333335,2.5877133333333333,3.3874275000000003,3.3874275000000003,2.677853333333333,3.5208999999999997,3.383315,3.86236,3.528835,0.7978307692307692,3.184865,4.351335,4.74691,2.928475,2.98191,1.7655175,2.70189,3.52816,2.176665,4.498595,3.625215,4.84507,1.8809633333333335,1.0201090909090909,6.13259,3.580365,3.0016200000000004,3.2809033333333333,1.7466339999999998,30.249472142857144,4.372395,3.24336,5.29505,4.480335,0.8629333333333333,7.5448900000000005,2.147105,5.37785,1.665045,4.95358,5.189413333333333,3.62382,3.161455,2.3124625,3.5569,5.0576,2.079445,2.6999666666666666,3.69849,3.387695,2.473025,5.97425,2.096135,5.75665,1.14353125,4.467875,3.51275,3.97182,4.777865,3.085705,2.5823533333333333,4.18607,4.746145,3.6674775,3.6674775,6.1342,1.58297,4.337675,6.59733,3.338885,4.25954,3.232415,4.551115,3.48008,4.10283,1.3919775,2.55071,4.35023,4.973085,5.841,4.671985,2.575345,10.07625,2.85863,3.781185,1.7433285714285716,3.48413,2.1889433333333335,2.64315,2.55791625,1.2953133333333333,2.77454,0.9377314285714285,1.1086814285714286,1.1086814285714286,1.1086814285714286,2.03485,0.54388625,3.803545,1.2318366666666667,2.49677,1.0012883333333333,1.8192300000000001,2.6950266666666667,2.3476500000000002,0.78215,1.8907033333333334,1.9514133333333332,2.34295,1.651132,1.651132,1.6806833333333333,2.3400866666666666,1.229928,2.053533333333333,1.50621,1.1350133333333334,2.05308,2.162655,5.9801,1.960875,4.92167,18.170055583333333,6.98585,4.779725,3.56804,3.3392,2.76575,2.8102066666666663,3.1975,0.7218216666666667,1.0360099999999999,1.0360099999999999,0.66676875,2.2462766666666667,4.252015,3.94505,1.714742,5.66045,3.886985,2.431605,3.666635,4.65037,3.895065,4.40557,3.488566666666667,3.25457,3.357105,5.69015,3.332613333333333,5.06985,0.512045,0.512045,2.269275,3.445805,4.761265,3.605935,4.133915,4.806425,7.2797979999999995,7.60143,3.78665,2.628495,4.75668,4.01652,2.5157666666666665,2.26922,3.394795,1.2736533333333333,3.518535,2.379685,1.7280825,3.266913333333333,3.80165,2.0095725,5.251805833333334,1.6509475,3.6226333333333334,4.185275,0.9929814285714286,3.4657666666666667,3.090996666666667,4.631465,1.1079683333333332,1.790415,2.4675825,2.2814825,1.692735,2.490955,2.2963575,2.0424625,4.694755,4.201035,3.0836,1.704585,1.4960866666666668,3.7431,2.04564,2.855525,4.409,7.06945,2.4264708333333336,3.091575,3.52877,3.51451,2.394355,5.0938,4.450825,3.2515,1.4091,4.481635,2.793395,3.117383333333333,2.4948,4.02542,5.00285,5.02445,2.5624233333333333,2.9849599999999996,2.9450366666666667,3.432166666666667,1.9490333333333334,1.53424,5.47495,3.496166666666667,2.284781818181818,3.2091733333333337,3.0134433333333335,2.45897,3.1672333333333333,3.2597966666666665,3.6044,5.35415,4.108465,2.98092,5.48455,3.347825,2.417605,3.45255,4.01536,3.74161,5.877015,1.8602260000000002,3.93611,2.557315,4.878275,3.61494,0.6436275,2.316405,2.076775,3.541375,2.715215,2.15046,2.684395,0.7346280000000001,2.9190233333333335,4.653145,2.2501525,4.156385,2.484183333333333,4.009505,1.9513425,4.448215,4.18584,1.9066500000000002,4.90235,6.969189999999999,4.04718,4.55611,4.806235,7.088054886363636,4.585505,4.362805,2.1409725,4.49029,2.86342,1.80258,1.8917175,3.4167666666666663,0.9892671428571429,2.28181,2.9254466666666663,2.5607133333333336,3.594633333333333,1.825628,3.24674,1.8494366666666666,5.34865,5.98357,1.0316175,1.81017,2.5275466666666664,2.8248933333333333,1.9911666666666665,1.0775966666666668,5.598025,2.1306225,2.6286533333333333,3.2189533333333333,3.149853333333333,3.3706666666666667,3.124755,2.2114566666666664,2.89589,2.17563,4.15211,3.877245,3.873205,3.2771933333333334,3.189496666666667,0.889608,1.8364466666666666,2.2226775,2.0723333333333334,2.5682966666666665,1.146665,2.7025900000000003,2.965756666666667,3.601335,1.9895266666666667,3.45134,3.436655,5.64555,3.727115,0.5965349999999999,2.03508,2.6328666666666667,3.428366666666667,0.7197390909090909,3.0642600000000004,3.531312,3.2974566666666667,2.6441333333333334,3.076903333333333,3.729955,3.8625000000000003,3.0162833333333334,2.0516175,5.9121,5.15415,5.1853,5.4585,5.82305,1.8043966666666666,3.472985,3.770633333333333,3.497733333333333,2.86682,2.614386666666667,3.9655666666666662,3.6581333333333332,2.9951066666666666,14.038796666666666,4.11839,1.14467,3.536566666666667,1.567336,3.268103333333333,3.2015166666666666,2.3568599999999997,5.811070000000001,6.5286876666666664,2.3199,0.899567,4.4273,3.3193099999999998,2.986585,5.3313,5.26335,6.02735,5.0027,3.624515,2.0691575,6.5933,1.1374716666666667,6.5895,4.902945,2.48487,3.856745,7.15499,5.7199,2.199053333333333,1.4385933333333334,2.286255,7.358890000000001,1.5196375,2.915853333333333,2.514435,4.311408611111111,5.74075,4.14821,6.37085,3.632185,5.1636,3.783795,8.68367,5.0503,5.59145,2.233725,2.587925,11.442735,3.35809,3.683865,2.45378,1.88891,2.739473333333333,2.71745,0.66641125,1.0188840000000001,1.0850557142857142,3.34031,6.9692066666666665,2.876824,1.3914766666666667,5.139,3.724615,0.55506,4.28137,3.662135,4.534475,4.25513,3.66525,2.62342,4.11041,9.676965,1.8370375,3.870045,4.356935,4.33133,3.679145,0.8466166666666667,3.6079666666666665,3.9323333333333337,1.6591666666666667,2.5705233333333335,2.300473333333333,2.5666933333333333,2.6792833333333337,2.08564,2.121135,6.059363571428571,4.793,4.21993,4.341675,1.5124700000000002,2.47375,4.89251,4.598315,4.69573,4.56466,4.65909,4.924855,1.6946919999999999,3.705055,7.516909999999999,1.21146,1.70129,2.5128833333333334,2.838696666666667,2.7786399999999998,4.9067221666666665,0.7711499999999999,2.414805,3.35663,4.89775,4.442835,2.248396666666667,2.84197,2.0027925,0.565050625,2.479675,2.82821,7.664775000000001,4.16364,4.48049,0.9193199999999999,4.264633333333333,9.524686666666666,11.256676666666667,3.36377,1.21494375,3.58508,3.624365,2.6661566666666667,5.383304666666667,5.0781,4.156865,2.02176,3.879633333333333,2.4222633333333334,2.5517866666666666,0.7677981818181817,0.41490333333333335,2.600495,3.56396,1.9693095,3.454385,3.1985533333333334,3.881645,4.87918,1.526536,3.0625533333333332,1.9814475,1.9814475,2.081785,2.93268,4.723645,2.7723866666666663,2.773766666666667,3.407666666666667,3.5360666666666667,4.311585,4.46772,4.17249,4.03455,4.2691,4.234275,6.7389,7.871855,1.921455,2.16023,2.66032,0.8987816666666667,0.7243633333333334,3.81244,2.30661,5.58955,2.91823,3.2306266666666663,1.99484,1.4626125,3.68809,4.302125,4.179065,1.7523833333333334,1.3125433333333334,2.6845966666666663,2.058593333333333,2.55421,1.1051871428571427,1.1051871428571427,2.71921,4.424115,2.773235,3.034875,3.392235,2.340205,20.529701272727273,3.74872,5.215235,3.99739,3.94819,3.845185,3.79008,5.50695,6.397535,0.9141283333333333,0.9141283333333333,0.9141283333333333,2.646923333333333,1.7208,3.597,4.410625,4.39707,3.447905,4.864095,4.356875,0.9846955555555554,2.50666,2.851053333333333,5.618442,3.115622,3.898782,4.793295,1.9881725,1.9562233333333332,2.35676,0.5017325,0.765024,1.771675,2.15604,2.722365,12.9857,2.55292,5.3774,0.7593500000000001,9.9589675,5.91275,3.700595,4.086245,2.6593,5.50155,2.6593,2.876408,3.50253,3.80923,3.57031,4.072735,4.476545,3.474345,5.66755,6.885536,1.7666266666666666,2.917964,2.61514,27.459314464607463,1.6930479999999999,6.26505,4.611012,3.937265,3.861845,4.78737,2.68461,2.857845,2.292675,6.0002,6.91555,4.87384,4.776815,4.336615,2.09706,2.476695,4.439795,0.38142076923076923,0.38142076923076923,0.38142076923076923,0.38142076923076923,4.04971,3.0571833333333336,0.9463966666666667,1.7128033333333335,1.1449888888888888,4.300695,2.4498633333333335,2.307355,7.515454999999999,3.1528466666666666,0.17179448275862066,20.850641666666665,4.58026,1.782186,1.3692803571428571,2.18704,1.995504,2.57275,4.827075,3.30061,4.1514,3.989015,2.3753766666666665,7.3727025,2.64947,1.87626,3.852755,6.1263,8.116616666666667,4.32923,0.2973487804878049,3.488975,4.36189,3.09111,2.22592,2.97266,1.5847583333333333,1.5847583333333333,3.99563,5.8334725,11.855983333333334,9.609124999999999,0.6369611111111111,2.5785799999999997,4.05951,3.18618,5.03245,4.88785,1.7761500000000001,1.7761500000000001,3.713065,4.50984,2.8566000000000003,3.72788,4.927055,5.1358,5.9016850000000005,2.18276,4.575855,4.222695,2.59736,2.8827266666666667,3.1035799999999996,5.09365,4.31757,5.30885,4.48937,4.266335,3.85992,4.44594,4.31325,5.6284,2.56357,3.2974533333333333,0.995452,4.17654,4.198295,3.864205,1.747662,2.0680166666666664,2.909133333333333,2.89981,2.5074733333333334,4.658133333333334,1.8131666666666666,2.6223,3.9864333333333337,4.2531,2.4732966666666667,2.5500266666666667,4.1204,3.650233333333333,3.8713333333333337,4.061733333333334,2.0330833333333334,2.8137966666666667,2.5024433333333334,5.8626,3.064223333333333,41.928081666666664,2.5234727272727273,2.5234727272727273,2.62994,2.928986666666667,2.0961466666666664,1.7276533333333333,2.9218233333333337,1.77892,0.7342315384615384,4.832345,6.9428225,4.19411,4.019355,5.1889,1.9562166666666665,4.77898,1.8540800000000002,5.16535,5.46765,5.77985,4.165125,1.6940175,4.23192,5.31345,4.77475,5.56595,5.43315,3.95142,3.279345,3.5038666666666667,2.90817,2.283165,1.914305,4.34817,2.0390133333333336,3.7422825,3.7422825,2.1892733333333334,1.52785,2.17928,2.5125766666666665,2.420506666666667,4.54705,2.8843599999999996,1.1551,1.1551,2.402486666666667,2.343106666666667,2.5639166666666666,2.6560200000000003,2.5093133333333335,2.470616666666667,2.26345,2.166544,2.963341142857143,1.581397142857143,0.7967971428571429,60.521635981150794,2.41062,3.31578,2.2208620000000003,0.8878780000000001,3.517344,1.56265,1.56265,3.0879600000000003,3.076803333333333,0.7846,2.6100766666666666,5.046456666666666,3.9929333333333332,2.4502866666666665,2.80078,2.0268466666666667,2.53804,0.271581875,2.695536666666667,0.7340099999999999,2.5581666666666667,1.149778,1.149778,2.737023333333333,2.1651,2.31371,1.6655846666666667,3.113933333333333,1.6655846666666667,2.14324,2.6298966666666668,2.8811433333333336,1.308714,1.308714,3.0062266666666666,1.4259000000000002,3.0006,2.2282566666666668,4.92659,4.53544,12.6996325,7.050345,3.784195,3.578945,4.27944,5.22185,5.36555,2.7181025,4.65278,4.081585,2.3330433333333334,4.611025,3.29994,2.7382666666666666,4.882285,2.29103,1.038492857142857,4.085244583333333,2.9413133333333334,3.30148,0.8334142857142857,2.627045,3.51143,4.39553,4.292785,6.5379,2.989376666666667,2.10506,3.88334,4.49691,2.2966725,2.649563333333333,1.9478966666666666,2.0675893333333333,0.876406,5.2498,4.766995,4.60614,3.944745,3.1915999999999998,4.563565,5.1435,2.964323333333333,1.6592933333333333,0.5324913333333333,14.42725,0.5036754545454545,0.5036754545454545,0.5036754545454545,3.1064000000000003,4.0441666666666665,0.5036754545454545,7.145101666666666,4.411256666666667,0.711773,0.711773,3.303043333333333,3.285965,2.95081,4.383505,4.595735,4.3786700000000005,2.25025,4.860407333333333,3.665855,3.423064523809524,4.47742,2.95735575,2.2959475,2.3347975,2.67445,1.6414425,3.3843475,2.9772866666666666,2.4595475,2.164205,2.009545,1.7413833333333333,1.629355,2.669,1.0946322222222222,2.596275,0.6161778571428572,5.50005,1.732255,0.7260049999999999,2.3494725,7.837683333333333,2.479755,2.1336565,3.2545149999999996,7.64508,2.453685,4.637575,3.784355,5.9525,3.689205,3.87499,3.97627,5.1695,3.1246166666666664,4.397988333333333,1.1338385714285715,4.146825,2.4156400000000002,2.560093333333333,2.57902,2.451305,2.11458,1.3022375,5.4414,0.9074927272727272,4.930115,5.5302,4.8352,5.51335,4.6265,2.6902866666666667,2.0744800000000003,2.776206666666667,3.0056166666666666,2.52263,3.689833333333333,2.745775,4.47864,1.7914020000000002,40.66211757936508,4.74892,2.3383766666666665,3.3035099999999997,3.0881066666666666,1.5493499999999998,5.873271666666667,4.14368,2.6465133333333335,3.3659,2.2675433333333332,1.6101375,5.3538,0.8453142857142858,5.227377142857143,1.2778385714285714,3.5253333333333337,3.3448333333333333,2.8860966666666665,1.4513125,4.9076,1.736174,1.736174,2.49311,2.8965933333333336,3.5219,3.655666666666667,1.4134333333333335,3.0278733333333334,2.6577933333333332,6.3823375,2.9644166666666667,4.123291666666667,1.4870666666666665,1.3807533333333335,3.0720833333333335,1.055846,5.435935,3.7368666666666663,2.9137033333333338,3.7070000000000003,2.8668533333333333,2.7407466666666664,3.177286666666667,1.68607,2.4249725,2.60921,3.610633333333333,2.4919466666666668,3.623866666666667,2.9778933333333337,0.5755866666666667,9.581660384615384,2.7350166666666667,5.40365,5.1559,2.78037,2.88625,1.3128825,2.211176666666667,2.124655,1.3128825,4.09057,0.46117875,0.46117875,1.2551225,1.2551225,0.8647075,0.8647075,2.70619,2.861445,2.50391,1.44367,1.99569,3.60731,3.18289,4.792035,5.0428,2.10596,4.406305,2.32555,4.7386074358974355,1.4653375,1.4653375,2.25458,1.8168780000000002,3.6867366666666666,2.04171,4.42108,1.4886833333333334,2.4843475,0.6282869230769231,1.3687814285714286,2.2483575,2.2842375,2.28516,1.53702,4.53797,4.171825,2.5418333333333334,2.62092,1.3637,0.7304116666666666,2.03792,4.19343,2.3430133333333334,4.786355,5.4532,5.19555,4.115115,6.6251475,1.6025416666666665,6.435545,1.866655,4.35032,4.634435,5.71851,3.1135633333333335,2.301275,1.6987425,1.970132,1.970132,2.3953475,2.3953475,4.40077,5.45775,0.8926040000000001,4.37803,3.54612,3.39954,3.032636666666667,1.4136775,2.7855600000000003,4.157845,4.22401,1.89967,6.6448,5.3067,1.7713633333333334,1.314725,3.83529,4.090816666666667,3.84361,3.46286,4.02876,0.6843114285714286,3.5361666666666665,3.1465266666666665,2.72911,3.03679,2.1886933333333336,3.5114666666666667,1.5233285714285714,1.5233285714285714,1.5233285714285714,3.2946566666666666,3.1320666666666668,3.16657,3.5543385,2.26133,1.287577142857143,3.0985600000000004,3.32068,1.3415714285714286,3.0964899999999997,2.7139633333333335,1.3773028571428572,2.8630366666666665,2.8613866666666667,2.9353233333333333,2.87731,2.7478266666666666,2.1453525,3.2903599999999997,5.095175333333333,4.45597,0.961767,1.7135179999999999,0.648866,3.6824333333333334,9.098379999999999,2.9263600000000003,3.12189,3.1636633333333335,4.1295866666666665,1.83632,7.782870000000001,6.8288166666666665,2.7808833333333336,2.410942857142857,4.39717,5.163,1.55057,1.455708,1.395616,2.053375,11.504349999999999,2.86896,3.068153333333333,3.056719666666667,3.95566,2.2401733333333333,1.19254125,4.652885,1.0696666666666668,3.2582403846153847,4.13301,3.1704,3.2482399999999996,3.48397,5.01335,1.4264066666666666,2.0255875,2.093170333333333,2.093170333333333,3.905745,5.465,7.318099999999999,4.19591,3.336285,5.0445,1.8106375,2.3136408333333334,4.728445,4.5164,3.84671,1.5106866666666667,2.9375033333333334,3.499055,4.48599,2.567875,3.98047,3.834785,3.918535,4.05323,4.635555,4.289135,5.446,3.25339,2.4239333333333333,4.49258,2.962825,3.814985,2.182555,2.809775,2.62486,5.6797,2.529365,3.2297282386363637,1.6342675,2.561005,3.433185,2.02038,2.0808275,0.9675750000000001,0.9675750000000001,1.7395375,3.8214415151515153,4.186075,2.8926233333333333,4.38585,3.4026441666666667,2.502736,0.9989625,3.30481,1.4929375,4.294855,4.0443,0.9261062499999999,1.813765,3.873195,2.9211525,1.562925,1.5899966666666667,4.765114285714286,1.0275216666666667,2.62192,3.2125,2.78882,2.444325,2.737167,1.95154,0.95853,2.922755,2.9833,3.40473,1.36737,1.5277399999999999,1.766265,4.526225,2.05091,4.27243,4.59972,4.65112,5.7943,5.3111,4.132575,5.92218,4.239481428571429,0.8024363636363637,2.82935,4.337615,4.18635,0.49915909090909094,0.895228,3.008785,4.054925,4.75343,4.5445,3.2285107142857146,2.70094,4.79869,1.7724419999999999,2.2915025,4.539915,4.1881900000000005,3.397995,2.75016,3.82761,4.45694,2.95003,5.3401075,0.93971,3.364805,2.480845,4.55013,4.40603,4.418045,2.11066,2.48991,2.99336,2.1659133333333336,4.8773,3.46093,1.4933714285714286,2.823655,4.1591275,1.44358,5.9227549999999995,1.86936,2.61851,13.701865477507873,3.16987,1.5294133333333333,1.5161716666666667,2.104976666666667,5.500476666666667,1.623836,5.411623666666666,0.6889069230769231,2.8676066666666666,4.15216,7.5596725000000005,2.4602999999999997,3.2744733333333333,3.2744733333333333,5.1975,4.496175,3.79834,3.311825,5.16315,5.2346,2.339755,3.4374000000000002,4.6341,1.2334666666666667,3.596833333333333,4.59707,3.87139,3.89824,2.5899366666666666,3.66145,3.76585,6.723051666666667,6.3651025,0.8074049999999999,4.18879,3.19733,3.6100666666666665,4.22961,3.98244,4.006995,1.8862739999999998,4.59353,2.46494,2.82388,4.184215,4.44336,4.657525,0.9408570714285716,2.669286666666667,8.676510333333333,1.5139383333333332,2.1561035064935066,2.2132525,3.952325,3.535845,3.191195,0.7425709090909091,2.430975,1.603305,2.327745,4.44881,5.354890666666667,2.857514,8.818065,2.5540966666666667,2.79199,1.1124,4.64146,5.47415,2.025285,5.648618333333333,4.00446,3.103165,5.6615,4.693725,4.9103,2.16058,1.5577275,1.5577275,2.609395,3.147755,4.58756,1.56105,5.60348,1.32414,4.087605,1.4299083333333333,8.4414945,4.73444,2.70369,5.0774,5.275,3.991155,1.1683166666666667,1.9954625,3.5641,3.033886666666667,3.4517666666666664,3.5262,3.76513,2.709025,3.272345,3.261955,1.517715,2.5137466666666666,1.8225133333333332,2.8820099999999997,1.9085166666666666,5.346269166666667,3.4443,1.6910366666666665,2.9232,3.32156,3.20175,6.127,6.01305,3.042795,3.613475,3.32855,3.20715,2.787955,1.1995733333333334,0.968362,6.464365,3.784315,4.905845,5.58575,6.413,3.13766,3.1041133333333337,6.5173,2.44085,0.5160894444444444,5.43565,3.109485,3.777465,3.2370099999999997,1.4332857142857143,4.845505,1.05849,4.844735,0.94560625,1.4380300000000001,2.7825333333333333,2.405603333333333,2.5241198571428574,3.800865,5.39035,5.997533333333333,5.997533333333333,4.8965525,4.8965525,4.573685,3.102883333333333,4.55497,1.03107125,6.057,4.447045,3.5729666666666664,4.17543,3.68077,4.939955,1.9183475,4.63448,3.2494140000000002,2.961345,4.275055,2.64053,4.6406,5.32905,3.598655,3.44307,4.90271,3.79209,5.2002,3.276415,3.116206666666667,6.19355,4.298705,2.9182333333333332,6.46706,1.5766333333333333,2.2009075,4.584785,4.76428,5.2791,3.87945,1.9254745,1.9254745,13.68479992857143,10.7202,5.47375,4.053015,2.9068848717948716,4.696445,4.63128,2.737033333333333,3.4774666666666665,3.29543,3.9631333333333334,3.4385666666666665,5.03335,1.88035,8.103063333333333,2.35654,2.09892,5.9574,2.413975,5.1286,4.44154,4.69111,0.7813444444444444,3.192565,4.11174,0.860098,2.93322,3.7788666666666666,1.46998,2.027836666666667,3.065163333333333,2.7413833333333333,2.55432,3.2357066666666667,2.4254366666666667,0.4806321428571429,3.0034833333333335,2.905113333333333,2.8436033333333337,3.2590733333333333,1.620954,3.0749766666666667,7.036505,4.46442,2.600886666666667,2.086676666666667,2.58668,3.71339,2.4276,3.5843705000000003,18.6586475,5.48555,3.452505,5.97335,3.77303,5.26893,1.45799,6.5188,1.5709116666666667,4.378325,4.15286,5.24035,5.0306,0.9848115789473684,5.9399,2.64573,4.99987,2.49832,4.297025,4.5327,2.78106,2.11827,1.5365280000000001,1.885545,4.53517,4.833425,2.121015,1.583455,3.1710266666666667,4.307003333333333,2.9866233333333336,6.06905,2.515275,4.906775,4.46349,3.69205,4.588745,3.669045,4.16088,4.58187,3.99232,2.8058933333333336,2.8058933333333336,5.8996144444444445,1.9330233333333335,2.7347900000000003,3.948925,1.7357220000000002,7.112254999999999,3.729865,4.50404,4.4219,4.439165,1.893808,4.509145,5.065,4.071425,2.0752425,3.668585,3.3016,1.1500275,1.505065,1.25798,0.7137383333333333,1.62852,0.9659283333333333,4.471585,1.0353155555555555,2.88495,1.6078599999999998,1.912335,1.046545,2.0775825,2.3884475,1.6179125,3.7034333333333334,2.6905366666666666,4.863578333333333,1.6060083333333333,2.2502625,3.2688466666666667,3.4324333333333334,2.2917866666666664,4.487819166666666,4.54509,5.111437499999999,20.655854416666667,2.8605533333333333,2.18894,0.6208561538461539,0.666612,4.310925,1.9621659999999999,4.05883,5.0028,7.491565666666666,4.414745,3.729435,3.885805,3.13256,3.2072633333333336,3.23734,3.4611666666666667,3.5222333333333338,6.23545,3.683855,0.938855,1.15412125,5.1856,3.3009166666666663,2.59789,2.2041333333333335,2.48477,5.77745,5.01935,2.42505,2.1016066666666666,3.243615,4.946145,8.920586666666667,5.555038541666667,4.54315,4.369015,5.2938,4.57858,4.29989,4.52942,3.96106,5.4482,2.01977,5.97,1.6079142857142856,5.331,0.7574533333333334,4.97598,5.5213,6.07685,6.11935,4.64762,6.322,5.92845,6.3675825,2.0663,1.6118857142857144,5.61635,3.661465,6.403358333333333,5.1643,5.305551666666666,5.06605,6.29425,1.3638214285714285,4.524435,5.42965,4.1193333333333335,4.86897,5.7602,2.6845,3.94605,3.981865,4.582155,0.9850333333333333,1.5843083333333334,1.387708,5.13005,4.039685,5.3272,2.5023466666666665,3.2053700000000003,1.5145566666666666,2.17063,0.38359583333333336,3.630266666666667,1.65642,2.3201383333333334,3.2535933333333333,2.79351,3.281306666666667,2.5581,2.598075,10.530337333333334,3.586933333333333,1.795454487179487,4.199315,0.85426,4.42467375,1.07114,1.6523575,1.90495,1.04017125,5.582762,1.1925605555555556,1.1925605555555556,1.1925605555555556,2.8710733333333334,1.7286639999999998,5.18305,2.985575,1.653575,1.52271,1.6458925,1.42995,1.9488420000000002,5.65127,0.8801677777777778,4.159335,4.149435,3.4667,0.9894971428571429,2.156707,1.91187,1.91187,1.5993333333333333,3.719611666666667,4.52731,5.0572,5.61845,4.404615,5.4033,2.7914600000000003,2.079305,3.245395,5.37355,3.718465,4.21051,1.0646575,3.987415416666667,5.26485,1.912405,4.529285,3.02158,4.37515,4.98479,3.269475,6.6,6.19995,4.64646,4.667565,4.237885,3.109905,8.38283,4.13508,5.782136666666667,3.33319,2.73733,5.05065,2.6308866666666666,4.02886,5.3765,2.7872466666666664,3.21673,3.960395,1.4398233333333332,10.648782500000001,4.878425,3.22703,15.879323630952381,4.44772,1.7680233333333335,3.0544433333333334,2.624045,2.92255,4.53705,2.5547652083333334,2.95359,2.983285,2.929175,4.03912,6.075735,1.27208,2.50165,4.202805,4.95437,4.79265,2.236375,0.6005406666666667,4.686345,4.12796,2.16022,1.23845,4.78501,4.67199,0.957788888888889,3.897255,13.153935,1.323382,0.39303499999999997,3.7568,4.475961666666667,1.1544666666666668,4.74437,3.92255,5.688706666666667,1.2795416666666666,3.900655,4.086825,3.39786,4.39386,4.58584,5.3071,8.87049,3.10252,4.178565,4.451865,16.164761875,3.5193000000000003,2.746525,1.279165,2.522875,1.24217,2.0281562500000003,1.3851725,1.977995,1.8736825,2.06918,2.372355,2.3667425,2.1863,5.42725,3.64294,5.58315,3.286255,6.0424083333333325,2.868323333333333,4.7964,3.398733333333333,1.1911725,3.701695,2.029135,2.6760539999999997,4.91814,4.77666,4.906975,5.4953,3.01426,3.3673333333333333,2.40589,4.49254,3.683695,2.26209,1.846085,3.8304333333333336,5.02695,4.09696,2.369196666666667,11.981736666666666,0.6708,2.614745,5.0181,2.567559,1.164138,2.82437,7.273944999999999,7.123533333333333,4.586275,4.1139,4.1896,2.02794,2.460075,2.967181666666667,2.1577266666666666,3.6943816666666667,4.5068,4.396295,0.555596,6.30055,3.3473666666666664,3.407,3.5576000000000003,6.32145,8.5718575,4.262225,1.0718075,2.16694,2.21685,3.57319,2.537605,3.98074,4.58563,3.459,2.7762100000000003,4.07672,4.12525,3.823195,4.170566666666667,2.0156733333333334,4.046235,5.1438,5.57815,3.4534000000000002,1.94907,2.1716866666666665,14.758084696969696,0.5142427272727272,1.4993325,1.4993325,2.2945766666666665,4.628438666666667,4.14094,4.573285,3.08984,3.16527,4.14915,3.057956666666667,4.14702,3.057956666666667,3.47918,1.9332166666666666,1.6724466666666666,5.8127,2.568275,4.581135,3.323925,2.611975,6.891344999999999,2.0560033333333334,4.878295,5.33635,3.60667,3.448475,4.81929,1.953008,4.693795,3.499325,6.642018333333334,5.399853333333334,2.68095,4.0529,4.31786,2.09906,3.2083600000000003,3.9225666666666665,0.46315285714285714,3.3762333333333334,10.121163333333334,4.54204,4.16692,5.21675,3.613875833333333,3.06508,1.3200142857142858,4.27547,5.17615,3.224255,2.649395,5.26385,3.82289,4.32045,4.485015,2.58345,2.58345,4.002825,2.76097,2.9085875000000003,1.957055,4.79562,3.95488,1.0864,3.80402,4.597375,2.8966666666666665,7.1505849999999995,7.63954,1.485096,4.42794,4.86711,6.98132,0.846942,7.371251666666667,3.5715916666666665,0.6798045454545455,5.34045,5.24385,5.2024,4.43137,5.0164,4.521485,4.99229,3.933625,4.289435,4.76654,4.889035,5.06285,4.934435,3.89876,2.775425,4.037355,3.323375,0.88831,4.355105,2.29791,1.646775,4.356965,5.03065,5.7017,1.0451871428571429,5.067473333333334,3.08625,2.669826666666667,2.3048125,1.19827,11.6756925,3.16518,3.2358966666666666,2.58785,3.8570557142857145,5.98334,6.290688333333334,2.6401233333333334,2.117713333333333,2.2891,2.2891,2.2891,1.4097033333333335,4.365325,4.0468,3.59149,4.510295,8.00367,4.412965,1.202378,2.1478,3.67447,2.260405,1.9035499999999999,3.83684,2.66581,1.3399966666666667,3.0845066666666665,6.752092857142857,7.366389999999999,4.36626,4.07531,3.15959,5.3491,4.55073,5.583738333333333,1.9579475,1.9579475,4.332935,3.75797,2.5502233333333333,2.5502233333333333,3.991225,1.106957142857143,5.0155,3.335055,4.172345,4.334605,4.619705,3.13448,0.9895614285714285,4.523605,5.6568,4.290195,4.764505,5.0644,5.02885,4.77118,2.0710125,1.658265,3.449305,3.742855,3.27211,4.325965,2.04391,3.4799024999999997,5.3944,2.782315,4.81521,8.555505,2.2668479166666664,2.9706333333333332,4.278988095238095,4.93142,1.72595,2.058292857142857,0.94808,2.058292857142857,1.8100533333333333,1.8100533333333333,1.533456,4.94343,3.071355,3.81395,2.29934,3.897555,1.5064216666666665,5.37805,3.117345,1.668985,2.675803333333333,4.565875,3.57618,6.4065129999999995,4.709505,1.344014,0.8519516666666668,3.71696,6.486631666666667,2.3403066666666668,3.553375,2.83911,2.83911,2.282465,3.3452,3.479615,1.398017012987013,3.238236666666667,3.414695,3.199635,4.225045,3.9812925,1.6188425,3.944115,4.73869,4.878465,5.3793,4.177145,1.7072075,2.209955,1.25559,2.424175,3.42138,2.047395,4.273275,3.2413833333333333,2.989515,4.14302,5.07055,2.283875,0.982072,1.8103833333333332,1.4628,1.151,4.812895,4.014715,0.995452,0.20706304347826088,0.20706304347826088,0.20706304347826088,3.598595,5.879525,4.54599,5.2476,4.95083,4.52049,5.0686,4.30555,2.727925,3.65479,1.7867225,5.1683,4.416285,3.90791,4.41192,4.23355,0.7617454545454546,0.7617454545454546,0.7617454545454546,0.7617454545454546,0.9239979999999999,0.9239979999999999,4.13822,3.90202,3.791685,2.76611,2.512855,5.7259,4.82828,5.43075,4.354245,3.0314099999999997,2.4809033333333335,9.83574,1.53384,1.53384,4.432035,5.2199,3.2584966666666664,0.46117875,0.46117875,0.46117875,0.46117875,0.46117875,0.46117875,4.984596666666667,4.959365,3.61148,4.73764,2.7297466666666668,2.7297466666666668,2.48536,3.1303270000000003,2.8983866666666667,3.089485,3.913305,7.080599666666666,1.381086,5.0419,3.34477,4.333,11.030488333333334,2.59403,2.84819,1.0037414285714286,2.45894,4.89922,3.69352,1.30915,2.8905266666666667,4.356295,5.67625,2.712775,4.689025138888889,1.1216222222222223,2.0621666666666667,4.906185,4.83528,2.9068135,2.574343333333333,2.1925266666666667,1.3673733333333333,7.901011666666667,3.13843,2.3502933333333336,3.181555,2.685388333333333,4.63529,3.79949,2.6523866666666667,3.3228266666666664,6.00715,1.4743899999999999,4.84933,5.08565,4.200815,4.07095,2.461533333333333,5.40035,3.77685,4.065525,2.77591,4.551965,4.627935,3.0219233333333335,1.8529725,2.8717366666666666,2.6466966666666667,2.7905599999999997,0.8160236363636364,2.1227125,8.1738425,0.479134375,3.02581,1.5552533333333332,2.56482,3.3725666666666663,2.901096666666667,1.2147444444444444,1.74342,2.6846266666666665,2.150405,3.6788,2.03984,2.7572233333333336,1.4402366666666666,3.007034,2.568225,1.117757142857143,3.02071,2.175885,2.30034,2.5755733333333333,3.6782,3.2279666666666667,3.2299900000000004,3.3184566666666666,2.94842,3.3226866666666663,2.846963333333333,2.511625,1.7570233333333334,2.3310066666666667,2.5855799999999998,1.61499,3.139893333333333,3.8029471428571426,2.8862466666666666,2.97059,3.0208766666666667,3.8074333333333334,4.665374166666666,3.05545,1.7352142857142856,1.7352142857142856,2.32978,1.1449275,2.5643,3.3634466666666665,4.577701666666666,2.7061,1.933685,2.1433425,2.1208875,3.67515,3.55501,3.871215,5.01655,1.76581,2.5305666666666666,3.7888,1.44068,1.44068,2.931275,0.6927046153846154,3.2776273076923075,2.5093,2.5093,2.809466666666667,2.539703333333333,3.0956833333333336,2.6233433333333336,2.2787125,6.137521666666666,3.8996725000000003,3.8996725000000003,3.895835,3.150545,2.206625,2.937325,2.462625,3.11598,5.1157575,0.4791541666666667,0.687097,4.063445,2.3545,3.103225,7.023116666666667,3.693115,1.62284,4.77888,4.504695,4.27252,4.301365,5.43535,4.86387,13.3881845,3.426655,1.5637566666666667,2.752515,3.7194,5.1623,4.47869,4.405615,4.3764,3.86401,4.947155,2.8341066666666666,3.21869,2.8433233333333336,2.36445,2.36445,3.981155,3.911575,3.072945,3.61184,2.293435,2.54346,2.25565,1.95945,1.9999925,1.9504175,1.80274,3.6834355,3.35673,2.602765,6.83907,4.52563,2.403966666666667,2.0543733333333334,3.277205,3.98108,3.464455,3.110464583333333,3.40935,3.207475,4.176565,3.67201,3.845835,3.94786,3.20442,3.38087,0.6521266666666666,0.6521266666666666,0.6521266666666666,3.507135,2.40362,5.1222,2.7572,3.693205,7.261062222222222,2.6955466666666665,0.3925,5.1058,0.777543,4.34178619047619,1.849185,3.65781,1.79599,4.630995,5.944475,4.250125,4.19755,2.9059399999999997,2.95447,1.4626366666666666,2.470826666666667,0.47550157894736844,0.5400788235294118,2.8270766666666667,1.4996633333333333,1.983575,3.79945,2.615485,4.892465,2.9729566666666667,3.005306666666667,3.49401,5.29492,1.75572,0.9908971428571428,2.27045,3.51682,1.319577077922078,4.60352,3.75132,3.5369,2.7199266666666664,4.355615,2.9535400000000003,2.708826666666667,2.61047,2.2997675,2.6999566666666666,2.2315425,3.0402166666666663,2.3579233333333334,5.512350666666666,2.561825,1.8629966666666666,2.18839,4.973573999999999,3.255002,3.255002,2.45351,3.878495,2.26437,3.70076,2.91533,0.611378,4.659955,2.1683275,11.749567777777777,7.11002,2.853895,3.278425,3.290285,5.14231,2.852405,3.50726,0.20481866666666668,2.0237475,3.8838000000000004,0.9241083333333333,3.996285,1.4301142857142857,5.2629,3.294945,3.76737,3.10971,4.683795,2.142295,4.52023,3.823895,3.86845,6.71353,4.92688,2.977273333333333,3.1171866666666666,1.6295940000000002,1.85318,4.46765,4.576975,3.9964975000000003,2.655595,3.927745,1.575068,3.249935,2.812965,4.30924,11.255286666666667,3.661825,6.795923333333333,3.96779,4.649525,1.0409944444444443,4.82032,4.90377,2.4969966666666665,2.8655566666666665,3.3796666666666666,3.066076666666667,2.3715066666666664,1.76345,1.9962833333333334,3.715235,1.6619,2.6446866666666664,5.3041160000000005,2.88817,1.203447857142857,1.203447857142857,3.65839,3.1988865000000004,3.1988865000000004,3.9596666666666667,3.02722,3.5407510256410255,3.8251333333333335,3.3564666666666665,2.6249866666666666,2.3824733333333334,2.31808,3.107606666666667,2.2226725,2.6857399999999996,1.632374,5.782128999999999,9.041056833333334,0.5171346153846154,0.5171346153846154,0.5171346153846154,0.6194780244755245,0.6194780244755245,0.5171346153846154,3.503833333333333,2.9439533333333334,4.337746666666667,1.4682433333333333,1.7822675,3.252562,2.4088266666666667,3.0402233333333335,2.3426,3.0465733333333334,3.602866666666667,7.0829450000000005,2.9570433333333335,2.5706,3.435233333333333,4.317535,2.66101,3.4404333333333335,5.38847,2.3672033333333333,3.4111,1.40113,1.40113,2.8066366666666664,0.5053231578947368,2.438223333333333,2.749663333333333,2.944646666666667,3.291043333333333,2.274103333333333,1.4958466666666668,2.751516666666667,3.0566,2.41736,4.64642,2.4391993333333333,4.255415,3.701825,4.63957,0.5080020000000001,7.9503200000000005,3.044804,3.044804,7.989941944444444,1.7325433333333333,2.3048566666666668,3.024506666666667,4.575955,2.371586666666667,2.0768400000000002,2.7467900000000003,1.391205,3.31363,1.7941566666666666,2.9970375,1.3546125,0.26284545454545455,0.26284545454545455,5.00385,3.86026,4.30825,2.85143,3.052165,3.305455,1.2990899999999999,6.2705,3.8216,2.94578,1.8256875,1.1667433333333335,2.139955,3.024506666666667,2.46046,2.018505,5.5701149999999995,4.54869,4.590995,4.030805,2.291705,0.68729,7.4658774999999995,2.0501025,1.499725,3.54685,4.72838,2.250455,1.8018333333333334,5.13145,4.1182,3.4008333333333334,3.3262699999999996,4.70533,4.562485,3.4197666666666664,2.497222,2.497222,4.036045,5.2911,5.93935,6.727103333333333,2.79963,3.709265,1.34881,2.4014125,4.8944426666666665,3.66952,1.7804860000000002,4.566905,3.6004924999999997,4.410185,2.01743,4.202425,4.78172,4.936485,4.95118,2.372856666666667,2.5934933333333334,3.888,2.1250033333333334,2.679525,3.0023066666666662,2.5454933333333334,0.852578,1.911565,2.7950700000000004,2.342513,4.55774,4.47201,4.606175,3.809155,3.562705,5.3671,11.966560000000001,5.49,4.725735,4.345945,3.95997,4.79598,3.371,3.291596666666667,3.743133333333333,1.21898875,2.78725,2.864945,4.75947,5.61465,4.640435,3.3368,2.8138799999999997,2.38728,4.340066666666667,4.171307499999999,3.5521999999999996,4.171307499999999,2.5551145,2.27041,2.3765083333333332,2.2262625,2.992293333333333,1.73271,0.8613983333333333,1.605285,1.6646233333333333,2.06047,1.5582333333333331,1.2770599999999999,1.66705,2.6341733333333335,1.521388,3.22266,1.2511133333333333,1.5946633333333333,3.08494,3.7199333333333335,2.5454966666666667,2.9115233333333332,2.4379033333333333,3.071225,2.084,2.7916933333333334,3.099346666666667,2.6556533333333334,3.0285533333333334,3.060975,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,0.15942709677419356,4.89034,4.21281,1.0369285714285714,3.21761,2.6537333333333333,2.82187,3.71012,3.0464633333333335,4.48702,3.606008666666667,1.67137,3.14399,1.71155,1.01725125,0.9246359999999999,1.4141516666666665,0.8777416666666666,0.7148333333333333,1.359052,3.25366,1.7115079999999998,1.62033,1.8524055555555556,2.4613216666666666,1.3041466666666668,1.428725,1.5533283333333332,0.91203,1.2307666666666666,0.6870566666666668,0.876548,3.37387,3.477065,4.00902,4.4646,4.163195,3.0116666666666667,4.62838,3.7433,1.932245,3.58148,2.00195,3.583555,2.285956666666667,0.8292672727272727,4.05175,4.67598,2.1002899999999998,1.23046,2.88489,3.296215,3.719611666666667,2.9331333333333336,2.663765,0.890095,2.2465825,5.31681,3.871845,2.45027,1.5271516666666667,3.756835,2.18172,0.6323927272727272,4.697775,3.97334,4.07998,2.720845,1.3533300000000001,4.323185,4.471745,2.5937266666666665,2.60035,2.50283,2.74127,2.73992,2.8732699999999998,3.1547866666666664,1.2872125,2.80745,2.46143,4.800515,4.27075,3.676215,4.534915,16.19339066919192,4.5755475,4.616230666666667,2.70912,4.57879,5.30795,1.612076,2.646475,2.6964666666666663,6.58364,4.326505,4.43277,5.7584,2.6964666666666663,4.013615,1.961515,2.6358099999999998,2.8111766666666664,2.828516666666667,1.3495883333333334,4.37592,3.78288,2.44881,4.229985,2.754183333333333,2.9562033333333333,3.599065,3.078175,5.4541,4.14189,2.66013,3.477865,2.436675,2.5976966666666668,1.471568,1.471568,2.9060566666666667,2.39639,0.30846321428571427,4.899137,0.95544,4.876415,3.96728,0.5877808333333333,4.72935,7.743511666666667,1.8180925,3.644395,3.597175,2.867036666666667,3.303545,2.316425,3.00572,3.48232,4.085045,3.06697,4.128566666666667,0.9943833333333334,11.876656,2.719225,3.090115,5.07495,2.523375,4.01004,7.853791666666666,4.483995,4.17446,3.55009,4.18601,5.8175175,1.6025275,2.8711266666666666,4.549705,3.8104,1.93115,3.843135,3.740425,3.73984,3.909605,4.41569,3.946185,2.540825,3.878595,3.85476,5.27975,3.77183,2.3755866666666665,2.4743866666666667,2.1955733333333334,2.9504933333333336,1.26914,3.6414333333333335,0.8511509090909091,3.3578666666666668,3.136836666666667,2.6479866666666667,1.5997899999999998,4.42029,4.07285,4.15216,1.9253775,4.58677,3.579855,0.7117818205128206,0.32948115384615384,4.491435,5.03005,1.0135575,0.32948115384615384,3.46093,0.7117818205128206,0.7117818205128206,0.32948115384615384,5.763615,2.62367,2.48175,5.4688,2.66565,3.229145,0.7907566666666667,3.26935,3.795095,4.623565,5.36905,2.1751275,0.74959,4.818525833333333,2.345616666666667,1.519598,2.1759025,1.1399457142857143,2.6236266666666666,2.43576,3.197505,5.30635,2.8692333333333333,3.4221333333333335,2.9228533333333337,2.367363333333333,3.00899,4.3116787500000004,1.5917525,2.05422,3.862155,5.392,2.1365993055555554,4.980925,2.379455,4.04036,4.263895,3.239255,1.1859075,3.046165,6.5477,4.001055,3.763615,5.0607,6.03715,2.82295,4.12414,4.490825,3.153095,3.40172,8.06997,3.671885,4.888177499999999,2.185335,1.2234275,2.5456933333333334,1.97653,2.057855,1.83976,4.638725,0.7215499999999999,3.41918,3.8195,1.9209033333333334,3.20782,5.03875,4.38452,3.05113,4.524515,5.38525,9.533247666666668,2.7236766666666665,2.62595,1.678512,1.7517166666666668,1.1109866666666666,1.3704766666666668,3.059536666666667,2.4508199999999998,2.963563333333333,4.364420833333334,1.4997575,2.3230566666666665,5.24215,5.51925,4.008575,3.487835,2.88381,2.497165,2.088435,1.99563,1.75521,2.01661,3.018515,3.623045,4.958115,5.20605,4.090595,5.508857083333333,3.59059,2.551575,6.331390833333334,3.826755,8.18335,4.904785833333333,4.904785833333333,5.582376666666667,1.6085066666666668,1.319985,2.7077833333333334,0.727305,5.0924,3.799166666666667,3.49141,3.49141,1.99618,4.73496,4.42803,4.76409,4.53414,2.9164033333333332,2.643715,4.05146,3.0720033333333334,5.166506666666667,4.57662,0.8135872727272727,5.581,5.29175,4.70353,5.29175,3.129385,5.7734,4.012405,0.8810615384615385,4.90263,7.138343333333333,3.244645,5.6269,5.841,3.35467,2.609485,3.91613,6.29785,2.13171,5.75135,1.90025,4.52455,2.75874,2.241095,0.93971,3.48057,5.7066,3.36755,4.119975,1.9922733333333333,4.76342,7.6928133333333335,3.61359,4.2976,2.4486,2.713315,0.8732710000000001,4.84989,1.5248100000000002,3.6341416666666664,3.6341416666666664,4.251565,2.23845,2.9815199999999997,4.2386,1.70764,3.2018166666666663,3.2539466666666663,3.20353,2.831,3.82671,3.01592,1.7550025,3.5324333333333335,2.11011,2.9300599999999997,2.0059400000000003,3.08432,3.00405,1.4232585714285713,1.5415,0.43323333333333336,1.3034383333333335,0.43323333333333336,0.43323333333333336,1.5415,0.43323333333333336,3.2840433333333334,3.046322,3.046322,2.9891633333333334,4.756535,4.49893,4.58682,5.32335,5.11555,3.471205,4.1275,4.47227,2.119215,2.527173,2.7212633333333334,0.8001927272727273,5.60985,3.29975,3.046116666666667,5.3973,3.7632125,5.1273,3.29438,2.58256,2.936765,3.245065,2.467146666666667,2.727453333333333,2.0460966666666667,5.55925,0.93925,3.99647,1.2192942857142857,3.616435,3.094606666666667,3.01273,4.298955,4.247585,3.89262,4.660555,4.051885,3.98708,4.483795,4.210505,2.4874575,2.637975,3.4194999999999998,4.15952,5.60815,3.727235,2.66891,3.233455,3.1314966666666666,3.438005,4.01608,5.01905,4.28613,69.27428477799978,2.7505758333333334,3.458185,17.316022333333333,4.025655,3.150093333333333,2.172966666666667,1.8347499999999999,2.42374,4.6141325,3.0899099999999997,4.1994074999999995,6.9056,3.290835,8.136975,5.2228,2.79656,3.275075,4.067475,3.598785,1.847918,1.20834375,4.59669,2.805235,5.953631666666666,3.738525,2.8111433333333333,3.43434,4.51414,4.49294,3.3376,5.588005,4.421085,3.570905,2.91781,2.3866075,3.210485,5.9583,3.35803,3.744055,4.33839375,1.1435166666666667,2.791555,5.38983,3.78587,3.388355,3.66553,2.907195,4.556655,3.13857,3.380335,3.423625,4.340535,3.193745,2.74881,4.40004,8.973565,3.1992366666666663,4.102335,5.88851,3.06578,2.84735,4.06258875,2.20588,2.965263333333333,2.926328,3.608965,3.282425,5.52405,3.249865,3.30563,4.013235,3.854755,4.25012,4.30228,3.62625,3.92586,2.696626666666667,2.696626666666667,6.684184999999999,1.802245,3.331885,3.670155,2.56079,4.60986,4.13051,3.09468,3.163335,5.7508,6.7178450000000005,0.7361881818181818,4.791675,2.415845,2.90157,2.66213,5.22385,2.7623599999999997,2.035445,1.14353125,2.0992913636363637,4.081555,4.612885,4.0982,6.5505,5.20965,6.0248,2.55669,1.8100766666666666,4.51122,3.35784,3.2163466666666665,2.1804366666666666,1.2374933333333333,2.6603133333333333,3.09857,1.661104,2.468323333333333,2.4207082857142854,3.5463325,2.683575,5.00775,3.32942,1.525395,4.849955,3.579175,5.4093,5.00065,5.3525,4.67892,1.9465766666666668,1.4342266666666665,0.6108828571428572,1.5069800000000002,3.53815,2.4895,3.5953999999999997,1.42108,2.541375,2.30028,3.338355,3.490015,3.817805,4.009059166666667,1.6112925,1.41161,1.9161325,2.105285,1.4143225,2.691325,7.11490775,4.78283,4.378425,2.84841,8.01869,4.879225,3.0653,3.02572,3.41173,2.725855,3.72805,2.2845866666666668,7.16866,0.8890066666666666,3.012545,6.5612,3.994355,4.63618,5.67605,1.6052533333333334,3.1649,3.175753333333333,2.855923333333333,1.758395,4.003245,8.6523,3.45745,5.20745,4.08565,3.47336,4.674665,0.8929999999999999,2.754163333333333,5.4237,6.642059999999999,4.774345,5.9514,3.028785,3.713533333333333,2.6278200000000003,5.09245,4.901775,5.0189496190476195,5.0189496190476195,0.8082242857142857,3.8229,0.889592,0.9108883333333333,1.81034,3.7251666666666665,4.348806,6.030891714285714,3.0749633333333333,4.031725714285714,3.6455257142857143,3.2256366666666665,2.756933333333333,4.554,3.4781441666666666,1.9451625,1.9451625,3.86955,2.9867899999999996,2.728763333333333,4.13415,3.419866666666667,0.6333677777777778,3.4076,2.4057666666666666,2.79789,2.6258733333333333,2.619475,2.8162233333333333,3.1574866666666668,2.93225,0.8574759999999999,2.7361,6.293129904761905,2.19074,7.671564166666666,1.502458,1.502458,3.3589176666666667,3.2739666666666665,3.370033333333333,3.1852933333333335,1.75666,1.4047242857142856,3.0561566666666664,3.514866666666667,1.4876800000000001,1.5137571428571428,2.8404066666666665,2.63631,2.814693333333333,1.877195,2.0870925,2.973155,2.221835,2.70832,3.350455,1.533065,3.574605,3.294285,7.00567,4.102015,1.766155,3.80865,3.10198,2.06517,4.196915,2.764946666666667,2.62133,6.49817,0.8093076923076924,0.6387775,4.84797,1.509978,1.509978,3.69194,2.240225,4.609135,3.55724,1.2270966666666667,2.396438,2.83361,2.3521513333333335,5.20835,2.963845,2.5308433333333333,2.36954,1.5568042857142856,1.5568042857142856,2.3930599999999997,3.89749,3.9684000000000004,5.9147,3.2866466666666665,5.1219,4.33993,6.8019,4.09078,2.819245,2.725076666666667,2.62637,2.696963333333333,0.7022977777777778,0.7022977777777778,0.7022977777777778,3.203925,4.413835,3.665895,0.9828925,0.9828925,5.27305,6.1144,6.92046,22.18794411111111,11.7905,8.04618,3.233435,5.7618,2.3423625,4.75356,2.5082999999999998,3.3369666666666666,4.099566666666667,5.464528,1.98466,1.64007,7.67563,2.27456,2.27456,6.4831,3.308955,4.075495,2.1901275,5.153295666666667,4.645745,4.091355,5.3887,3.85988,1.4417533333333334,6.2996,8.75604,1.4417533333333334,2.1901275,2.0768833333333334,0.794848,0.794848,1.777136,2.2802266666666666,1.777136,4.49875,5.85745,6.0728,8.59585,2.1901275,11.633251833333333,6.3742,5.50505,2.3423625,3.058675,4.65676,9.08788,3.017011666666667,3.96119,5.70235,3.28108,4.695335,6.0091,4.56181,5.10265,4.522245,2.582865,5.6134,3.68308,4.626265,4.44453,0.79544375,1.6133359999999999,2.965175,5.4492,5.0199,2.88817,2.24579,4.391465,4.763475,5.65785,5.0015,5.2535,4.27114,3.862535,4.314355,3.675485,2.0178025,4.7795425,1.934785,2.57785,4.016535,2.212056666666667,3.86149,4.57758,3.72077,3.510063333333333,2.922255,6.621121666666666,0.9261111111111112,3.43481,3.018205,1.408834285714286,5.765024,1.573425,1.7079133333333332,2.833353333333333,2.696749,2.967613333333333,2.8770866666666666,2.099225,0.7711372727272727,2.2516766666666665,2.508685,4.080685,0.7458253846153846,7.551613333333333,1.8110633333333332,1.13644,3.6293333333333333,1.13644,3.83852,0.8870836363636364,4.32682,3.178123333333333,1.56048,4.395587,4.350712,4.350712,4.986325,2.5979,3.070498333333333,2.51041,1.620954,3.791105,4.086795,1.9885400000000002,0.8009816666666666,7.7540237179487175,2.73526,3.69672,4.34045,7.52185,2.680275,4.10992,3.827755,3.15289,3.80242,5.7099,6.33488,4.289115,4.96101,5.2522,3.0397266666666667,4.622615,4.359155,4.56108,1.1064611111111111,0.47794285714285717,3.13935,3.4407333333333336,2.7775733333333332,5.4404,3.810245,4.226765,4.930205,4.95011,4.248195,4.573905,1.18984,2.27761,9.007933333333334,2.1816866666666668,1.93042,4.263905714285714,12.158872261904763,1.5133825,5.1152,6.18845,4.9081,3.3679666666666663,2.24394,3.2501200000000003,3.944865,1.0908983333333333,3.5119333333333334,3.528715,0.4005842105263158,2.0848566666666666,4.87031,4.485535,2.176155,4.22402,3.16306,4.8459908333333335,1.2253533333333333,0.5949218181818181,3.6206375,1.236667142857143,1.09884625,1.09884625,1.09884625,1.09884625,1.6577166666666667,2.6271666666666667,2.6233133333333334,3.4304,5.55915,3.5057666666666667,5.1103,3.71728,4.360455,3.61493,3.86051,1.46133,7.457065,2.48162,5.0143,5.259546666666667,4.822215,4.9882975,2.9549866666666667,2.50706,2.675933333333333,3.329385,1.1924166666666667,5.373476666666667,2.583956666666667,5.0064,2.76843,2.470943333333333,3.77998,3.975025,2.90939,2.4893199999999998,2.7940833333333335,1.444625,0.42281888888888886,4.56109,3.33622,4.140935,3.6538,4.051605,6.115,4.4236,0.5627992307692308,3.342262,7.475702,2.07,2.06344,5.645536666666667,5.64115,2.8307966666666666,4.651855,5.5049,4.234395,4.63875,4.27071,5.12415,5.1828,5.1431,3.700285,5.4257635,1.490284,1.6072300000000002,4.46469,4.022115,4.857215,3.181515,5.3008,5.3991,3.90463,3.407075,16.720912107977853,1.3110985981808452,1.22735875,2.019721477272727,0.49948625,0.49205400000000005,1.4657375,0.3289764705882353,1.245008,2.956436666666667,1.4483739999999998,0.9654416666666666,1.0658891666666668,0.4836066666666667,1.0658891666666668,1.0658891666666668,0.4836066666666667,0.8522,0.6987992857142856,2.852445,2.876556666666667,3.93242,4.592965,2.8123966666666664,2.71285,4.022855,4.943315,5.3704,2.891475,4.45319,0.7352857142857143,2.3936019999999996,8.664325,4.387665,7.12872,2.66538,4.18857,2.29742,5.1205,5.117,3.088555,4.18582,3.160605,0.9911866666666667,4.009895,5.1232,0.972332,1.299468,1.61858,2.3326,2.3711066666666665,5.06145,5.4083,2.1990575,2.1990575,3.5933825,6.71329,2.0890366666666664,0.6472527272727273,0.7754471428571429,2.1620399999999997,3.4460333333333337,0.93997,0.93997,0.93997,0.3577707692307692,1.038492857142857,3.109175,6.1533,4.045233333333333,4.2900575,5.28065,1.0377100000000001,3.5475999999999996,3.3046866666666666,4.077166666666667,5.86835,2.65076,7.6322833333333335,5.1227,1.1452222222222224,3.8633333333333333,1.824988,2.796315,2.2672733333333333,6.806078333333334,3.041453333333333,4.470785,2.3553,3.91583,4.391475,4.470315,0.45233,3.3683,1.3897366666666666,2.418343333333333,4.119436666666667,2.0621733333333334,2.84034,2.3120933333333333,2.453606666666667,2.52123,2.6857733333333336,2.5859833333333335,3.141916666666667,1.5043,2.23149,2.56867,3.1191866666666663,2.620293333333333,2.1541675,1.7934066666666666,1.7735733333333332,1.7656,3.12731,2.280463333333333,2.4925666666666664,2.1516433333333334,2.34207,2.55777,0.78932,0.78932,0.78932,2.5207200000000003,2.351926666666667,3.1307233333333335,2.9502566666666667,2.64341,2.1065033333333334,4.056165,3.3788916666666666,1.3178316666666667,2.635946666666667,2.9307966666666663,3.4181566666666665,1.6916571428571427,7.210288333333333,4.718175,3.111465,4.009575,3.40351,1.604505,0.610905,2.954045,3.841405,3.4181566666666665,4.67838,4.36241,5.2007,2.9284499999999998,4.01178,4.189175,0.9225199999999999,2.890845,3.21667,4.870632499999999,4.637835,3.551985,3.288755,2.700635,2.57082,2.5888466666666665,0.6236208333333334,5.36225375,2.662975,4.40492,2.806203333333333,3.6301133333333335,3.1868866666666666,2.3788466666666666,2.900007,2.900007,2.58316,2.5315333333333334,2.4695566666666666,2.11336,4.07796,1.3611739999999999,2.59954,3.907065,4.190375,3.92285,5.21255,4.06827,2.5401,2.054905,3.57863,3.44166,2.75924,4.79758,2.85602,1.0728071428571428,1.0728071428571428,4.379895,3.686727,0.893472,4.413445,0.893472,3.951625,3.736385,5.04955,3.51193,3.27817,6.398695,4.2274125,6.0052,0.9016000000000001,0.9016000000000001,2.23508,4.738348333333334,1.5481983333333333,3.19015,3.774885,1.13032,4.444155,4.00862,5.968,5.968,1.064945,5.11285,5.01725,4.85347,6.1407,2.262145,2.262145,7.0897,0.9605727272727272,7.1759,1.92829,6.30076,2.65532,2.482536666666667,3.4673,2.1917,2.0762199999999997,2.4001533333333334,3.027566666666667,2.716365476190476,6.71384,1.956406,5.3944,3.154833333333333,2.6993266666666664,1.769515,2.22755,3.270015,3.36724,3.791285,2.63544,2.209215,2.23658,2.496165,1.046624,3.70772,2.29691,3.15557,2.033447,2.033447,3.031495,1.9544033333333333,3.726295,3.661405,5.3297,7.382833333333334,4.350365,3.426845,6.366678333333333,2.24742,3.30422,2.205103333333333,1.6006714285714287,1.7597425,4.75561,1.5973899999999999,0.49693,0.6280783333333334,4.667775,4.604595,2.80592,1.03018,2.89102,2.96673,4.99362,1.8775559999999998,1.714315,1.2143666666666666,4.546615,2.68225,4.231295,0.7046129999999999,4.148920833333333,5.02805,4.411685,4.60717,3.48683,3.70658,3.0332033333333333,5.3346,3.62925,2.4016866666666665,2.61458,6.292576666666667,6.3942950000000005,0.685545,4.492015,4.15438,5.23715,3.8860333333333332,3.8684999999999996,2.976475,3.0834799999999998,3.9827666666666666,6.2369075,2.63631,2.4763325,3.86948,4.388435,2.35559,2.616975,8.382213333333333,4.80546,2.1366666666666667,4.896315,4.523655,1.777314,3.869955,1.4764875,1.7393857142857143,4.33382,3.595315,5.833,3.379,4.2722,5.1324,6.43925,4.671715,5.4548,4.975635,5.72175,4.497765,4.48999,1.1946226923076924,1.1946226923076924,8.28947,0.9472475,2.1470255555555555,0.9472475,0.74822,0.3565655555555556,2.8952455555555554,2.50729,0.57905,2.1470255555555555,1.922445,3.455985,2.316195555555556,3.39645,4.85224,7.608785,2.057235,1.98094,2.334325,4.777465,5.68505,1.87691,1.6418825,1.12184,2.7637225,4.154585,2.648335,4.331415,6.3278324999999995,0.4703177777777777,3.90417,0.735456,2.9755933333333338,2.4319275,3.670465,1.2648916666666665,4.20984,4.5556325,4.208255,3.157235,3.95206,5.737555,1.77757,3.50755,0.59487,2.585725,2.54517,1.059688,3.09747,2.4672566666666667,2.5173166666666664,4.843725,9.64707,3.554542727272727,3.645875,4.524445,8.076145,5.708374166666667,3.4699000000000004,4.030385,3.39872,5.89885,5.2563,5.7784,4.5576,4.54536,6.1029,2.556313333333333,1.7112,1.94681,2.28837,4.063915,2.4869166666666667,0.25174405405405403,0.25174405405405403,0.25174405405405403,31.15845319047619,0.25174405405405403,2.872594054054054,0.25174405405405403,0.25174405405405403,0.25174405405405403,3.437160720720721,4.12996,0.25174405405405403,0.25174405405405403,0.25174405405405403,0.25174405405405403,0.25174405405405403,3.206605,5.34929,3.119385,0.33545128205128205,0.33545128205128205,4.40322,4.17373325,4.161047916666667,3.4157824722222223,4.063149523809524,7.981533333333333,11.22477185159285,6.33086,7.935366666666667,7.542627178571428,2.8066366666666664,5.981584761904761,4.302826666666667,4.581026057692308,0.33545128205128205,7.762879999999999,6.679966285714285,7.104358333333333,2.687725,9.32072717857143,15.498324821428572,18.291439935897436,57.76283981179931,121.14043331822344,1.40113,3.4111,3.2103,3.8721305984555983,0.33545128205128205,1.646255641025641,8.521641458333333,14.511825011904762,20.02151611111111,49.06943427192982,13.478318511904762,2.7653,0.3017403448275862,0.3017403448275862,4.441766666666667,2.7507300000000003,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,0.3017403448275862,8.1369,0.3017403448275862,0.3017403448275862,0.3017403448275862,2.85784,1.9307266666666667,4.23586,3.594905,4.37859,5.60865,2.5565,4.281465,4.593485,3.16455,1.5024533333333334,3.668355,1.0266816666666667,2.2211175,2.2033366666666665,5.16158,6.091363333333334,2.9792533333333338,5.946318722222222,0.48356611111111114,0.5322546666666667,2.50894,2.9048766666666666,3.068535,4.50557,3.3781,7.65014375,3.714765,3.30932,3.346475,4.112295,3.44237,3.19652,5.5067,2.99117,0.44898076923076924,0.888119090909091,4.39553,1.7792475,3.84194,3.782775,4.503365,3.471375,2.631275,2.755845,0.5934033333333333,0.8189120000000001,4.23767,2.60663,4.976975,3.867645,4.1453050000000005,3.037395,3.417185,5.4056,5.81915,3.241305,0.9100818181818181,3.2606300000000004,4.433225,2.16363,0.9866875,1.7675400000000001,3.626195,6.0024,1.662075,3.060745,3.963675,4.900545,2.40893,2.4705866666666667,2.31343,4.35332,2.286665,3.94916,0.7071957142857144,2.566926666666667,3.289005,1.729935,5.935451666666667,4.269485,4.31898,5.24395,2.781215,2.08943,0.7720127272727272,4.962565,4.305665,6.07965,2.902365,5.395,4.931035,2.93893,1.9456600000000002,1.2866771428571429,5.18445,1.996155,2.7597,10.488205,4.27381,5.198,3.36948,1.0202622222222222,3.10141,1.2574771428571427,3.187145,6.55015,5.28805,5.0652,3.97183,5.34885,4.373315,1.7798825,1.6828566666666667,5.19565,2.952026666666667,3.3282366666666667,2.385815,4.92807,4.46162,1.486085,3.4517,2.724945,2.71995,4.42541,9.51129,4.47783,1.75872,4.6799,6.32828,4.545135,4.135895,3.727765,4.071915,4.69417,8.246255,2.3887533333333333,3.144355,4.21225,4.399535,2.893595,3.16584,4.790735,4.044285,3.49051,4.502606666666667,18.602463999999998,2.8074333333333334,2.49502,3.3127066666666667,5.535014,1.0767375,4.573945,1.9618808333333333,4.95641,1.4762366666666666,4.42955,4.282345,3.89284,0.95645,4.61839,4.629975,1.5647825,5.119325227272727,4.920385,1.1733785714285714,3.740565,2.01099,2.454585,1.568865,4.263985,3.780515,4.819975,3.64129,3.029146666666667,4.12352,8.041305,4.47772,4.16113,5.2142,3.1923166666666667,4.00918,5.31645,6.658372,0.906832,0.906832,4.456675,5.23315,2.2505166666666665,1.3956233333333332,7.30071,4.041695,3.42125,3.9356,4.760555,4.51042,3.47759,4.11698,6.60155,4.139153333333333,4.56392,4.82534,1.5604142857142858,2.794275,4.460135,5.019,3.61043125,0.19334194444444444,1.8705175,2.2803825,2.49143,2.0823833333333335,1.023958888888889,1.4394775,1.3623225,2.4434566666666666,0.6470622222222222,1.2801285714285715,1.95687,3.859435,4.009933333333334,2.402626666666667,3.015833333333333,3.0049499999999996,2.8097266666666667,0.663618,0.98873875,3.529215,4.762485,4.332515,3.570895,4.396135,4.83151,4.99531,2.1878599999999997,4.243215,5.05005,4.551025,6.3985425000000005,4.400435,0.49608176470588233,5.73055,4.74236,4.438365,5.3061,3.23813,2.04102,3.992425,4.43654,3.108935,5.284883333333333,4.347045,1.3995566666666666,5.284883333333333,4.312405,6.795405,3.682875,1.2416333333333334,3.847335,4.815965,4.5634,2.8145666666666664,5.18285,1.47719,2.028865,4.171885,3.63814,0.8111177777777778,4.530035,4.705335,3.776725,4.211125,3.211953333333333,3.05818,1.857284,2.08567,3.04631,3.658045,3.6976333333333335,2.4275933333333333,2.58755,2.1120993333333336,5.34735,1.6632142857142858,0.8319222222222222,7.02664,4.56456,1.522724,2.8962833333333333,2.5377899999999998,3.2803299999999997,6.997354999999999,2.410313888888889,0.821493,2.48877,5.0138,2.6142499999999997,4.059695,5.7225,5.4577,4.69132,4.251965,5.4153,2.2232133333333333,2.2235,1.6330966666666666,2.133643333333333,1.8890375,2.88667,2.287056666666667,1.7014925,2.62039,2.97283,3.42724,6.4684,5.60255,3.970515,4.62857,3.990545,4.50681,4.906375,0.90709125,2.861603333333333,5.65415,1.147402,0.7257866666666666,4.971615,3.72466,2.601053333333333,3.49255875,6.529814999999999,4.675595,1.0230000000000001,1.2199757142857144,0.7014366666666666,4.0550299999999995,2.21126,2.7609999999999997,1.1667314285714288,3.352233333333333,2.804266666666667,5.4662,4.863165,4.46017,5.47125,3.98852,1.3493933333333334,3.623185,2.0101533333333332,3.62956,4.39466,3.741715,2.8449666666666666,3.3799333333333332,2.86607,5.80225,4.136755,3.257515,2.49847,8.399180000000001,10.193872500000001,4.326695,1.3189914285714284,5.27405,4.63101,5.27035,4.3681,4.572955,3.880325,3.402445,4.14714,3.5642003124999997,5.95436,3.765285,3.777275,4.53959,1.963936,4.968365,5.86275,4.74041,3.276325,3.2545149999999996,7.142825,0.7046450000000001,2.76685,2.738106666666667,2.3584466666666666,4.97866,3.27823,1.3197750000000001,4.437435,3.422966666666667,3.79501,4.70544,3.8216533333333333,6.65076,3.0586333333333333,2.971966666666667,3.433533333333333,2.8546600000000004,4.203545,2.4545833333333333,2.1107833333333335,3.03433,3.992865,3.674965,1.9155675,1.4868175,3.4242925,3.058267,0.9603833333333333,2.7846533333333334,2.7846533333333334,1.2456275,5.58725,3.461535,3.353145,3.458065,3.686125,3.40561,3.29842,3.189,3.228885,2.122993333333333,0.5733720000000001,3.23338,5.874815,3.113465,3.695605,3.10856,4.05853,4.127415,3.38997,2.635435,3.87835,3.58235,3.10896,3.63589,3.77154,2.601156666666667,4.13851,4.210545,8.88328,3.709,3.63968,3.405545,4.035485,4.037415,3.641665,2.286315,3.504315,2.6512175,3.142285,2.93379,3.17034,3.844675,1.7265,1.7265,2.203735,3.17371,3.431785,1.5582179999999999,2.326165,3.24923,1.84644,2.940695,1.5582179999999999,4.759375,2.98476,3.9943797500000002,2.830165,3.3097,2.27234,3.5072,4.02096,4.69424,3.121925,4.46822,4.043625,4.2247,3.55415,2.960555,3.24901,3.010575,3.86541,2.6141466666666666,3.72791,5.29185,3.901725,3.755115,0.33646521739130436,3.668255,0.4174966666666667,3.92189,3.74287,2.88759,3.860385,4.076255,6.053518333333333,3.123125,2.5860066666666666,2.334346666666667,2.7379833333333337,0.658054,6.550638333333334,3.10219,3.36354,4.424445,1.90405,2.4426,3.261265,3.25479,6.696055,4.342545,5.10605,4.80835,4.73968,4.32862,4.02583,1.5382566666666666,1.6374520000000001,3.933825,4.46676,5.69888,2.5565533333333335,4.627065,2.142455,3.4385,3.49626,1.9404885714285716,3.980845,4.4755375,3.5150333333333332,3.829333333333333,3.20464,4.579965,5.3138,3.3915,4.32823,4.79242,5.00225,4.665535,4.50945,4.40804,3.39112,4.471135,2.587925,3.3260133333333335,3.3260133333333335,4.485465,2.7383400000000004,3.641785,2.86871,4.701435,3.4255999999999998,3.48897,1.884135,1.70673,1.1836916666666666,1.1836916666666666,1.75918,3.619733333333333,1.7072633333333334,3.2066466666666664,4.458955,5.1305369999999995,3.4574,4.86791,5.79891,2.61666,3.37272,3.0943233333333335,1.5695033333333335,4.37739,4.30865,6.528115,1.6761966666666668,5.61615,5.5469,3.3302133333333335,3.3625,4.54375,6.69685,2.171323333333333,2.297665,3.83853,0.50209,4.46415,3.98735,4.69613,4.261145,3.473875,1.617964,1.795176,3.91663,3.99448,2.3608766666666665,4.133075,4.517205,4.86619,1.20809875,3.534655,4.27958,3.67212,5.01045,3.1420866666666663,5.791941666666666,3.75108,1.526496,3.63129,1.2237666666666667,2.8206100000000003,7.4885866666666665,3.33327,0.7899472727272727,3.320755,4.55402,4.117295,2.3193175,2.3193175,4.703685,5.81865,2.881775,0.47354333333333337,1.9867325,4.385315,4.766485,4.375365,1.767454,2.9242166666666667,3.28981,1.2591876315789474,1.2591876315789474,1.2591876315789474,0.7514784649122807,1.3369934649122808,0.585515,1.2591876315789474,0.7514784649122807,0.24190263157894734,0.8274176315789473,0.24190263157894734,0.5095758333333333,0.5095758333333333,0.5095758333333333,0.5095758333333333,1.1050293333333334,1.19604,2.3245666666666667,2.359655,1.1247716666666667,6.2326983333333335,2.657503333333333,6.088658333333333,2.6271133333333334,3.518585,3.032825,3.29532,2.7397758333333333,4.74626,2.7567133333333333,4.182805,3.992895,4.967345,2.357725,4.905735,5.09725,4.002225,3.229805,4.91308,3.33316,4.510215,5.328,5.07915,6.2374,5.17265,1.3005625,4.481295,4.244675,3.104015,15.01223,4.616655,5.388,2.7358700000000002,7.40667,3.833465,4.10832,4.810075,3.259765,1.0526275,2.517895,4.01012,4.25647,4.33361,3.218475,4.03512,2.88437,4.10046,4.602225,4.27175,6.752535,7.9715066666666665,1.5097,3.533755,4.155355,3.75784,3.69425,3.50702,7.13794,2.57478,3.236515,2.47229,3.946405,3.855215,4.55894,2.36147,1.736845,0.8762800000000001,4.864335,4.550015,3.98548,4.00623,3.44216,4.919785,3.93016,6.49305,5.5445,4.709995,6.53345,4.21091,3.17226,3.20224,3.37768,1.750285,5.35045,6.48365,6.54305,6.225558333333334,6.225558333333334,2.353835,1.750285,2.099795,2.888945,0.694975,1.5598100000000001,0.864835,1.5398375,2.84049,0.36850900000000003,2.85897,4.356865,1.5398375,3.0564704999999996,11.1190525,6.6200075,2.3618516666666665,1.05925,1.66251,4.33655,4.292305,5.762648095238095,1.9764975,2.25207,4.47153,4.06866,4.938785,2.0679166666666666,5.5215,3.496966666666667,3.304355,5.2994,7.280566,3.799275,2.3748,2.796416666666667,1.8010166666666667,4.63473,5.2002925,1.7768339999999998,5.64355,4.361835,6.1814100000000005,0.551296,4.838583333333334,5.1903,5.9853,2.599005,2.778525,7.20085,9.0323,6.03815,2.17205,2.17205,2.17205,5.99225,5.1063,6.4219,3.42971,2.59133,2.484792105263158,4.785835,3.42153,2.435631,1.873535,2.435631,6.807501,4.549503333333334,4.218406666666667,6.53816,4.218406666666667,4.218406666666667,3.12289,6.75457,5.48036,2.95932,2.95932,2.512195,6.6342,2.808235,3.531425,5.483083333333333,5.483083333333333,5.483083333333333,7.95689,3.60593,3.28629,3.6088875,3.4865425,0.9242,7.35587,2.806366666666667,6.07635,3.455425,13.165275000000001,4.726555,5.4815933333333335,6.75728,2.590516666666667,3.39806,1.1029266666666666,5.4815933333333335,3.375945,1.6718,1.6718,2.97075,5.20026,1.6847225,4.574033333333333,0.800422,1.3564233333333335,0.800422,1.98265,2.4851444999999996,5.210147,3.62846,1.3564233333333335,3.192595,4.8748725,1.0153175,3.30035,4.25978,2.092985,4.081578333333333,2.717725,3.15396,3.22187,0.9146559999999999,3.69193,2.968195,1.889465,1.55804,2.917845,3.98027,2.7338,3.8564,1.3346533333333332,1.3346533333333332,1.3346533333333332,3.584985,2.68747,2.68747,2.6822,3.955835,2.2108033333333332,1.2787525,1.2787525,3.1228,4.3558525,0.8574325,1.5021766666666665,2.92298,1.3935966666666668,2.895773333333333,0.9146559999999999,0.9146559999999999,1.7622750000000003,0.9146559999999999,3.0239016666666667,0.8334466666666667,3.0239016666666667,5.953759166666667,3.307285,2.365603333333333,1.7484113888888888,0.7202700000000001,2.4686813888888888,3.465095,2.4686813888888888,0.9258288888888888,3.310115,3.89559,3.88851,3.08565,2.71976,3.76133,1.8217766666666666,0.9834613888888889,0.4537725,0.9834613888888889,0.5296888888888889,0.9834613888888889,0.9834613888888889,4.68344,4.60227,5.74445,3.41507,4.587,4.782395,5.3377,3.479745,4.13726,1.2978885714285713,2.66637,4.5336549999999995,3.77441,1.2817666666666667,2.7587499999999996,4.15528,3.85566,4.26705,3.670835,3.896195,3.688095,3.02503,4.51698,2.52083,5.8151,3.624755,3.99397,5.463090714285714,1.1942317142857144,2.072335,3.182755,6.84334,4.617175,4.397675,3.1523633333333336,4.676725,8.194641666666666,3.501633333333333,3.082695,3.3800666666666666,5.4168,4.15623,5.7486,5.4813,6.7859,3.20779,5.2384,4.642785,3.252963333333333,7.84089,3.383766666666667,2.31769,2.4160666666666666,4.98729,6.46365,5.6968,5.81775,4.34902,4.835485,5.71535,0.5437276923076924,7.368895,4.460245,4.257255,3.797965,4.881515,4.162925,3.217216666666667,2.491065,1.3737133333333331,0.5958338461538462,1.889872,2.9292233333333333,4.150405,4.430425,4.89927,3.93444,11.509536666666666,3.753165,3.832805,2.843605,0.7352216666666668,5.67075,2.7385633333333335,1.4925466666666667,4.23111,5.8323133333333335,3.09375,7.78779,4.74879,3.074912,3.074912,3.074912,4.904765,9.04153,3.76812,3.00705,3.00705,3.04169,9.67625,1.02957,5.02005,4.36112,4.212455,2.8425433333333334,2.1888733333333334,4.36345,3.843145,6.104,5.905133333333334,3.878025,2.783775,3.797835,4.2965725,3.42232,1.3616125,3.3530333333333338,5.90745,3.3266825,4.742155,0.97872375,3.7449,2.6621833333333336,2.550473333333333,1.7782375,1.7431833333333333,2.0609266666666666,6.05075,1.997985,4.3137,5.94415,1.956406,4.841145,3.96133,4.795945,2.8602000000000003,2.15707,2.72828,4.457495,3.981628333333333,3.981628333333333,1.1479275,1.55479,2.870763333333333,4.394543,2.284781818181818,4.879583333333333,1.7246099999999998,2.73644,2.13142,1.677645,1.677645,4.6814,7.407836666666667,1.87077,3.0569900000000003,2.2809225,5.4139,3.17752,0.739266,2.806365,0.739266,2.593235,3.49069,5.2613,6.0831,3.75189,4.8980999999999995,5.8956,2.327075,1.8452400000000002,2.5130333333333335,2.1813933333333333,6.05695,4.76002,2.44781,3.94149,2.721395,4.27583,1.0844425,1.07352,1.9731133333333333,1.5436333333333332,2.5328933333333334,2.8090466666666667,2.2501166666666665,3.2767766666666667,2.952885,4.284005,2.54379,2.5932833333333334,2.7272933333333333,2.3506266666666664,3.0471066666666666,2.74068,1.9331466666666666,2.4790966666666665,3.61879,3.79072,3.45095,3.576305,2.9048533333333335,2.29298,2.12796,1.4379683333333333,0.330226,0.18193152173913044,2.1062366666666668,2.2227799999999998,0.18193152173913044,4.530130688405797,2.3652625,0.18193152173913044,5.914500833333332,2.494136666666667,6.12944,3.407115,3.5298,2.4812133333333333,2.9636600000000004,2.273095,4.27006,3.10069,3.3701333333333334,0.4473936842105263,4.025543333333333,2.57492701754386,3.002115,1.74763,2.5836,4.172795,2.89117,7.807259999999999,5.3485,3.449935,3.697545,6.15099,5.93303,1.8062233333333333,3.9530175000000005,2.02415,1.91935,6.20295,8.79629,1.1604466666666666,2.08499,3.629655,2.6887,2.93808,3.216445,2.73877,3.975635,2.31026,2.9635,3.23588,3.197015,7.60872,1.3356000000000001,1.86078,3.05729,3.374895,1.6432033333333333,3.326315,1.4112,3.769635,3.399285,6.84744,3.352225,8.9026075,3.77013,1.579414,1.61596,3.052925,6.02546,1.866325,1.43757,5.46245,3.41952,3.95931,2.72429,2.0080133333333334,3.09878,10.49253,5.06014,6.27706,3.40041,2.008135,2.104235,2.919375,2.72985,3.476705,1.8164,1.51876,2.4547766666666666,3.647345,1.7822675,3.200875,2.61655,3.720795,3.725425,3.038305,1.2865216666666666,2.551125,0.9853866666666667,1.322992,1.55315,3.300815,3.40018,3.653835,2.98533,3.8078,3.89344,2.910545,1.490858,3.433145,3.6004924999999997,3.148035,1.691775,3.101715,3.702465,1.546385,3.464765,1.5312000000000001,3.976865,4.025725,4.89398,2.549245,4.11619,1.73609,3.98411,5.0196,1.689505,1.052042857142857,3.977233333333333,2.572625,4.426145,4.169155,2.9999,4.62409,4.55147,2.1989533333333333,5.27645,5.4340625,6.6141,4.36933,6.431988333333334,3.805375,1.6093333333333335,2.728066666666667,4.4811,4.99272,2.7224733333333333,7.349396,1.3303528571428571,3.6458333333333335,2.04583,1.708872,2.3085733333333334,2.76313,0.38597071428571433,2.8460699999999997,3.5818333333333334,3.672205,2.376885,3.3140066666666663,2.2152966666666667,2.502866666666667,2.1475675,8.94806,5.09495,1.7531400000000001,4.655865,2.3754968478260867,0.7117818205128206,2.8480733333333332,7.254913999999999,1.789134,4.76493125,6.141638333333334,1.9235775,1.6813175,1.4595425,4.69761,3.172865,4.56802,4.2121575,2.509603333333333,4.2729,0.904524,2.690837333333333,4.357095,4.040575,4.99818,2.984835,4.719175,4.53027,4.639385,4.980345,5.7802,5.3055,4.394875,4.698105,1.701784,1.912405,3.01035,3.36738,1.1967,4.38911,2.1755233333333335,3.3244066666666665,4.32489,3.151196666666667,2.8075533333333333,1.5040933333333333,3.1406899999999998,2.657491388888889,2.7278633333333335,2.891766666666667,1.87024,2.1839825,2.24398,3.830395,4.977815,4.036,4.608285,3.500155,2.244185,2.996455,4.85253,3.6226000000000003,4.598385,4.61123,2.48355,4.3745416666666666,1.7010366666666668,4.45206,5.029004166666667,6.13419130952381,4.418085,4.84402,5.49255,3.307923333333333,4.024765833333333,4.834145,3.329955,3.8226924999999996,3.466335,1.2926625,3.26734,1.62989,2.25013,4.3931,5.2666225,3.8226924999999996,4.26768,3.28293,1.5481983333333333,3.775975,2.061085,2.764946666666667,2.16877,2.66326,1.7261422727272726,1.7261422727272726,1.7261422727272726,0.6160272727272728,0.8505255555555555,2.2936338888888885,1.0077125,3.53448,1.70745,4.00032,5.3293,4.69288,3.308295,4.014135,3.41414,5.01255,1.85355,3.012145,2.56861,3.321365,5.816801999999999,4.404255,5.75535,4.14613,0.9735025,2.334035,1.3254466666666667,3.788105,4.067725,4.15355,5.55015,5.0626,4.98387,5.1173,4.19708,1.6675,1.4051483333333332,5.491093333333334,1.0230244444444443,1.16114,2.5370766666666666,8.49964,3.124305,3.68881,3.196515,5.69247,1.72801,0.9772233333333333,1.4757025,3.183605,3.523235,3.87861,3.727875,1.8727375,6.296245,3.01891,1.07979375,5.289,2.951943333333333,2.780616666666667,2.3638933333333334,3.8153,5.703409166666667,2.770723333333333,2.983276666666667,3.6908999999999996,2.6419133333333336,2.8088033333333335,2.860203333333333,2.64666,1.9354025,4.78655,5.0413,5.2806,1.0645155555555557,0.728249,3.722433333333333,2.69815,1.04333,2.5877133333333333,4.46451,4.362285,7.18413,4.74701,3.6506333333333334,1.734778,3.793185,3.689905,2.9119466666666667,2.519989428571429,4.228415,2.7685166666666667,5.126094,0.9371033333333334,5.19,1.676282,4.39602,4.3869,2.85852,0.988015,3.033225,0.406346,3.117615,6.52255,5.89595,2.876408,1.498606,3.7415000000000003,0.7794233333333334,2.4784966666666666,0.7794233333333334,4.02105,4.1897,1.44457,1.7759375,5.35815,1.83564,3.8333,3.809985,3.536535,1.2117,1.5526733333333331,4.11942,5.36975,5.28225,2.926328,2.452655,3.074025,1.6467825,2.5598,1.9667525,2.286005,3.881945,1.3462,1.3462,3.616945,4.782426666666667,7.9543091666666665,4.5714733333333335,7.14367,2.25674,3.99677,4.03482,1.604935,3.7525716666666664,4.23757,3.849575,6.0306,3.002105,2.39748,2.8297666666666665,4.135715,1.0996375,3.874875,4.717485,1.25766,7.958523333333334,2.88306,3.305345,3.1166258333333334,4.534725,4.302515,4.1737025,2.549653333333333,2.780613333333333,1.83553,3.6363,2.439985,2.21124,7.992319999999999,3.4495666666666662,3.1003266666666662,4.129875,23.379407184981687,0.6498213333333334,2.57544,4.38991,4.5672,8.27151,4.52482,4.41236,4.58518,7.311561666666667,3.524425,1.58668,5.182525,3.38494,1.148082,1.148082,1.148082,2.548115,1.71873,3.138555,1.507835,3.08059,1.6052533333333334,2.61076,2.55537,2.980005,1.507835,3.19841,2.513945,4.211836666666667,4.623635,5.25305,0.8008325,3.25048,2.794945,4.817675,4.069925,2.88971,2.29632,1.673975,2.0735425,1.421462,3.778005,1.602535,4.75102,11.407619333333333,2.7920466666666663,2.43863,4.72966,4.386066666666667,4.404466666666667,6.3234,2.1275333333333335,5.708374166666667,4.35186,1.2384549999999999,1.1771457142857142,6.510553,4.42884,2.156915,4.075025,1.85443,4.492185,4.9353,4.497455,4.093305,1.3261971428571429,4.47422,4.963175,4.569865,6.375413,3.714655,5.48745,4.63705,4.29174,4.951725,3.4647,4.991895,1.8324225,3.546085,3.296265,5.18715,4.52803,6.0724,4.693855,2.66494,3.4418,8.70604,4.77632,3.161433333333333,3.82797,3.409225,4.51172,4.19233,4.79429,6.875655,3.769,2.6288666666666667,4.243344166666667,2.42565,4.447355,2.6934066666666667,6.493460000000001,1.555705,4.48564,4.9845,11.720085000000001,0.49586142857142856,4.589325,4.5009,0.667935,3.766135,4.198525,4.362845,0.9242319999999999,4.87159,4.862656666666666,2.6629033333333334,10.933523333333333,3.235196666666667,2.6603766666666666,2.7619,3.671515,5.99775,0.7416825,3.901425,2.07724,5.34715,0.720493076923077,4.13423,5.88265,5.5439,3.47569,6.3888725,4.40876,3.445265,2.4786033333333335,2.6933066666666665,4.25473,4.700135,5.0069,4.97682,5.1797,3.3086233333333332,6.935333333333333,2.807225,3.308675,2.3134075,3.58196,2.6700166666666667,1.5478066666666666,3.0272166666666664,3.4219666666666666,2.98832,3.583766666666667,3.5002333333333335,3.17693,2.6855433333333334,5.517,3.271943333333333,3.733975,4.991755,2.9741400000000002,1.1369111111111112,3.1432966666666666,2.90772,3.815615,3.2905833333333336,3.1599566666666665,4.716855000000001,2.03134,1.75017,2.898535,3.73007,4.77058,1.09005875,4.65269,3.35987,4.154933333333333,2.9925866666666665,4.8769715,3.918595,3.225585,4.515985,1.53687,3.79843,0.67639375,4.680625,4.90882,16.526013636363636,3.236496666666667,1.1720016666666666,4.51561,0.6442728571428571,2.634675,4.431595,1.86537,1.345562857142857,3.740445,4.44351,3.1191,0.6811633333333332,2.43928,7.74151,3.78128,5.758,5.30905,4.87328,3.6831666666666667,3.4127333333333336,3.3148166666666667,6.730801666666666,4.335255,5.21105,2.2892025,0.4668027777777778,2.08771,3.13059,2.424665,2.845265,4.59881,2.9672666666666667,4.67438,1.0606833333333332,4.76912,3.354405,2.815025,1.1200866666666667,2.97113,2.5206133333333334,4.724005,3.806755,2.175595,1.7253285714285713,3.759545,5.07425,5.1826,6.287128333333333,2.1801333333333335,5.0877,5.13725,4.39225,2.2224,4.34534,6.460016666666666,5.0315,2.59514,4.89229,3.212875,3.974415,4.017585,4.129125,1.3350333333333333,4.691815,2.4627866666666667,2.8233200000000003,5.1006800000000005,5.1006800000000005,5.08455,1.8021280000000002,4.85222,1.0436225,1.788926,4.846575,2.8165533333333332,1.4749299999999999,3.1687999999999996,0.860098,4.340933333333333,5.2669,3.152195,5.1046,4.137495,3.98095,5.29551,3.44902,3.615066666666667,3.04284,2.4131533333333333,2.8382,2.9592033333333334,4.16741,1.5328821978021978,3.0471,4.498075,4.92819,2.235657916666667,4.509045,4.989465,5.100356666666666,3.4859000000000004,5.31315,5.2897,5.66025,4.930545,3.837385,3.42354,3.503505,4.607215,5.21665,4.899065,4.99176,4.51008,4.50763,0.7243633333333334,4.777095,4.557505,4.0616,7.06127,4.315965,3.903575,4.08718,4.73108,3.88903,3.628795,2.1588275,4.4828925,2.1946975,1.3815714285714285,3.97321,2.111693333333333,2.4838633333333333,3.9684213333333336,3.3394,3.40987,1.3437033333333332,1.997245,4.03412,3.841165,1.92363,1.92363,4.09098,1.874762,3.10132,4.43077,3.640595,3.62215,1.4832466666666668,2.018155,3.5160583333333335,1.90261,4.855385,4.539905,4.48778,4.099605,8.11928,2.6372,3.8099,4.538845,4.311755,2.966343333333333,4.08097,4.29911,4.26119,2.14434,2.92374,4.527185,4.117735,3.697225,3.787195,1.6101375,3.52339,4.43571,4.479985,4.2565,3.8653725,3.8653725,3.1103425,4.417075,4.37469,3.957685,1.661498,7.936350000000001,3.96481,5.11575,4.371245,4.37509,4.323155,4.89882,3.19434,4.19579,3.75214,5.15815,2.10882,4.92173,5.493117777777778,5.20165,0.763404,4.79195,1.10822,4.89191,4.591575,4.794605,4.31202,5.4214,3.7671666666666668,3.7671666666666668,0.867188,2.2315425,4.85323,4.3592,3.836935,4.451825,5.3465,3.482325,4.26494,1.3605099999999999,3.4998,1.6236875,1.224945,4.310980666666667,0.917149,2.763313333333333,3.1620333333333335,1.1915933333333333,2.2216375,2.6455800000000003,1.259165,6.09395,2.19552,2.545786666666667,4.80798,2.031985,2.701866666666667,4.074445,4.715415,3.6399000000000004,2.9174366666666667,4.0427333333333335,1.671012,2.0822675,4.635725,0.64455,2.1562633333333334,2.4989299999999997,3.1472333333333338,2.8455733333333337,1.2611714285714286,0.853275,2.5457466666666666,4.050275,1.2351057142857143,2.0382575,1.193905,5.719503333333334,2.34337,5.1346,4.57724,4.481455,4.713685,5.27525,4.129855,4.39445,1.49684,3.992766666666667,1.685826,2.69679,1.1622914285714285,4.39828,2.1364125,6.485142,4.262565,3.72798,1.7039300000000002,7.036655,4.200165,1.4159566666666665,4.093535,3.02769,3.62806,3.34994,1.971175,1.971175,3.2368066666666664,1.605285,1.605285,2.2224,2.67582,2.1541675,1.3178316666666667,3.6081333333333334,1.07313,3.1900433333333336,2.47375,1.83632,1.4950616666666667,2.18894,2.2065425,0.27391058823529413,2.566225,1.2157983333333333,2.4547966666666667,2.13142,2.5401,1.05225,1.046624,3.5101333333333335,3.16081,1.971175,1.7792475,2.0171533333333334,2.5162366666666665,2.55546,1.8014160000000001,2.7477699999999996,1.14467,3.4194999999999998,3.536566666666667,2.48892,1.548522,1.127242,2.49857,1.127242,2.49857,0.73970875,0.73970875,0.504965,2.33773,2.5823533333333333,0.73970875,2.2230375,3.0299333333333336,2.2966725,1.7656,0.78932,0.73970875,0.73970875,1.6419000000000001,1.6419000000000001,2.1224425,1.7792475,0.73970875,2.27778,0.46098153846153844,2.827303333333333,2.047896666666667,2.8937333333333335,2.5493333333333332,2.5493333333333332,0.385988,0.385988,2.2224,1.995504,2.18704,2.06122,0.385988,3.6252666666666666,2.461795,1.7398060000000002,0.64885625,1.7398060000000002,0.64885625,6.76734,2.4602999999999997,4.098766666666667,2.867036666666667,3.20002,3.02158,2.896653333333333,3.5544,2.3866075,1.692805,2.8378,3.501633333333333,2.332613333333333,1.6419000000000001,2.429082222222222,2.429082222222222,2.7543966666666666,2.1306225,4.21443,2.403966666666667,3.5036666666666663,2.649966666666667,1.591352,2.4801925,2.26133,0.8160236363636364,1.6647775,3.821845,1.8168780000000002,3.344633333333333,2.8131500000000003,2.729825,3.942633333333333,1.653605,3.5576333333333334,3.1915999999999998,4.1286,1.25656,0.3017403448275862,1.2919957142857144,1.2919957142857144,1.0224655555555555,3.1608433333333337,4.077166666666667,2.6324799999999997,2.1290766666666667,2.1290766666666667,2.2226775,1.5312000000000001,1.03416,1.7457266666666669,1.7457266666666669,0.73970875,2.2224,2.795916666666667,3.594633333333333,2.47375,2.11066,2.11066,2.11066,1.067911111111111,1.6006714285714287,1.6006714285714287,2.4677325,3.258426666666667,2.7398854356060607,4.204655,2.57343,2.4818333333333333,3.636785,3.96161,7.495262499999999,3.80475,4.55935,3.7870333333333335,13.64029,4.63403,3.38589,1.04581,3.947615,3.289765,2.347325,3.719715,5.33515,7.367559,6.15655,0.5116052941176471,4.032855,2.94634,3.96711,2.4758475,4.514845,5.07955,4.358945,7.88757,3.394175,3.85899,4.192805,3.2524713636363636,8.087842461538461,3.2609066666666666,2.715973333333333,3.69827,3.92483,4.87661,4.042795,6.271641000000001,4.609945,1.350884,3.78384,0.891725,4.94017,6.0668,4.513255,4.412915,6.0276,3.043135,5.06765,4.013925,7.5647,3.91873,5.096985,3.5520333333333336,4.98538,3.010025,0.6445375,0.6445375,3.471225,4.11189,2.120075,2.33229,3.825725,5.7345,3.02303,2.221485,2.656025,3.404815,2.70829,1.1533275,4.0534,4.76867,8.72917,1.84742,3.127295,3.89705,2.98456,2.9058433333333333,8.30444,4.5408,3.557733333333333,2.8420566666666667,3.97062,3.547266666666667,3.0176166666666666,3.1459799999999998,3.630325,3.85552,4.23843,4.2382,0.39559466666666665,1.39903,2.25605,1.6987425,4.76818,3.669755,2.65238,2.26817,4.412485,4.09360475,2.3406375,2.515665,0.930642,2.6424,2.67708,2.67708,5.45295,1.92233,2.903226666666667,2.321406666666667,2.085033333333333,1.64673,2.995265,3.931765,4.241855,4.268825,4.782675,4.970375,2.8527,2.6266133333333332,1.90234,4.86068,5.598649999999999,2.44178,2.86012,2.0686225,2.2000266666666666,3.8638866666666667,2.5442666666666667,5.1265,3.794415,3.456545,4.432435,2.9527933333333336,3.59681,4.57559,2.3059533333333335,2.50575,0.40650928571428574,3.3703000000000003,2.6496033333333333,3.33081,5.98725,4.514855,5.760156666666666,1.78444,1.6418366666666666,3.009765,5.1793,6.278,5.386,3.027896666666667,2.2102533333333336,4.58435,2.32068,4.33727,2.44192,2.0768075,5.0492,4.5515,4.63433,1.74558,1.909395,1.064702,1.064702,1.444322,0.9238214285714286,0.898004,1.8714594285714288,4.499455,11.162050833333334,4.085365,4.502965,4.21066,5.837695,2.71018,1.6211166666666665,3.5367216666666668,3.01253,4.06772,2.2618,2.7228499999999998,2.8423499999999997,3.1346166666666666,2.275116666666667,3.180806666666667,3.3062733333333334,2.9570600000000002,3.4998,3.3885,2.9529366666666665,2.7610533333333334,3.12402,2.33212,3.082686666666667,3.1486366666666665,2.9443966666666666,3.347633333333333,2.1116599999999996,5.457707523809524,2.9969066666666664,4.185657333333333,3.2005166666666667,2.9624633333333334,3.7828666666666666,2.8229733333333336,2.9136366666666667,3.151783333333333,3.1741966666666666,3.3394,3.1834433333333334,1.956275,2.6791466666666666,2.7837300000000003,2.872425,2.872425,3.322983333333333,3.1666733333333332,2.547006666666667,2.86496,3.1586966666666663,4.193833333333333,2.7484566666666663,2.7251,2.4882233333333335,2.78458,4.366765,4.84075,1.8053333333333335,3.3304266666666664,3.7471666666666668,3.8373739999999996,3.16168,3.7298666666666667,3.4356000000000004,2.4877966666666667,3.4439019999999996,2.0348800000000002,2.757777,3.6250999999999998,3.4473333333333334,2.50248,2.5718466666666666,3.7749333333333333,2.9507766666666666,3.0443433333333334,2.4342475,1.2065816666666667,3.280796666666667,2.75627,2.1789333333333336,2.4372475,3.1107600000000004,3.1196333333333333,2.03432,5.666292666666667,2.39966,0.9388780000000001,4.504515,1.9276641666666667,1.6740833333333331,4.492165,3.92645,3.36102,2.439075,1.51655,3.339425,3.096925,3.517995,0.4396965,2.01934,0.4396965,1.918435,1.51655,2.70773,3.896505,2.64165,3.733995,3.72772,0.5519353333333333,2.916066666666667,0.8896475,0.4473317647058823,4.466945,4.26632,4.76481,2.556925,5.492,4.27433,4.818165,2.586405,3.6292666666666666,1.7216539999999998,6.12345,3.641945,4.106945,4.80939,2.9745233333333334,2.0862366666666667,2.0623766666666667,1.4301016666666666,1.787445,1.250515,1.250515,4.34728,2.335933333333333,6.019628333333333,2.1364575,2.286295,2.17648,2.2200232499999997,2.3295675,4.67162,4.483155,2.1535875,1.7725833333333334,2.2200232499999997,1.87744,3.61326075,2.06145875,5.178133333333333,2.1364575,3.2436875,3.27961,3.2485766666666667,5.4961,4.6759,2.1380525,1.9405725,2.20752,3.14128,4.991075,5.16395,2.0583825,4.008175,1.5695033333333335,1.6509475,5.51455,10.554188333333332,2.005333333333333,2.606993333333333,2.320936666666667,4.432905,4.469955,1.877435,4.6492,4.667495,2.998685,40.144236904761904,2.9530733333333337,3.1421799999999998,0.5310177777777778,5.162206666666667,2.07105,0.9491400000000001,4.34428,3.69761,1.8883325,1.72552,2.3034399999999997,4.062375,1.415217142857143,3.1303270000000003,3.7681,4.71112,0.930847,4.945015,4.82016,4.83194,2.718363333333333,1.50505,3.880585,4.480595,3.77415,3.185225,3.562095,3.896385,11.849440808080807,2.799936666666667,3.033225,4.647455,2.88079,4.430035,3.34429,3.08959,3.067365,6.134356250000001,4.98803,5.23925,4.946715,2.375415,3.77811,4.30351,3.630245,4.766435,4.30165,0.12149456521739131,2.278285,5.04795,2.718695,1.4328333333333332,1.0577083333333335,1.0577083333333335,2.518725,2.6081,3.10257,1.290104,2.91415,4.43255,2.59542,4.463020833333333,0.5884692857142857,4.58308,4.040375,4.697085,4.307575,4.808445,1.473,1.3861125,3.9746,2.9466866666666665,2.9541133333333334,4.2292168181818175,4.73091,6.19196,5.3885,4.98023,3.44489,2.2948424999999997,1.6060466666666666,5.29775,0.307644,3.297855,3.7584,3.955795,14.348116666666666,1.96657625,3.4174,0.78066875,4.604775,8.13918,3.28064,2.0895533333333334,5.85075,3.22194,1.2915022222222223,3.86391,2.747815,3.074555,4.841055,3.3350531666666665,1.2893625,8.167953333333333,0.7368875,5.1959,3.122295666666667,1.38209,2.0792108333333332,3.14854,3.14854,3.87792,4.232779833333334,1.495775,2.312075,2.71509,3.60939,3.018405,2.47975,3.2157,3.394885,6.433815333333333,6.34135,3.859815,3.262315,5.27005,5.29095,3.904795,3.39527,3.48623,3.94645,4.89319,2.5145,2.627143333333333,1.5473566666666667,2.3686366666666667,2.2916825,1.5364025,3.2575000000000003,3.6072666666666664,3.7517666666666667,3.310696666666667,2.786993333333333,1.5024533333333334,1.4839366666666667,0.4569845454545455,3.20006,1.561057142857143,2.1745025,3.1634766666666665,2.52562,2.59246,0.9843,2.3612675,2.483675,3.103545,3.59054,5.8029,3.74289,2.904495,2.200743333333333,3.33164,4.409505,2.298015,3.25512,1.99862,3.739155,2.697795,3.789885,1.30888,0.649626,2.2837625,3.27468,3.08584,3.83849,4.74766,8.775785,3.2317533333333333,2.240886666666667,2.2157466666666665,1.9327079999999999,1.9327079999999999,2.753073333333333,2.41433,5.01095,4.640825,3.69704,4.47784,4.41102,4.42313,3.2869375,4.27627,8.0203225,2.53825,0.49693,3.118873333333333,1.3308033333333333,1.0265942857142858,2.3234033333333333,0.786454,2.22415,4.959195,5.10385,5.67362,1.004535,7.01565,2.06292,1.5578116666666666,2.7957633333333334,4.045985,3.30574,2.430795,3.766005,3.1651633333333336,4.084266666666667,2.92672,2.7033166666666664,2.9689433333333333,6.512650000000001,2.526395,3.987655,3.73561,3.4430491666666665,1.4210166666666666,1.1092025,4.41158,2.7857566666666664,3.1237266666666668,5.8795525,3.11811,2.07605,2.3603225,3.18266,3.622733333333333,2.3931666666666667,4.212700833333333,3.09099,5.3356,2.438245916666667,1.8464775,4.94806,5.6008,4.54005,4.41637,1.4562133333333334,2.3891375,1.936095,3.216065,1.5195933333333331,0.9460500000000001,2.7447225,2.155745,2.001955,4.106405,0.821485,6.1026025,1.5220025,0.8374372727272728,3.8097,4.303525,0.7289814285714286,3.481259,3.051465,0.853275,4.553695,0.20727738095238096,0.20727738095238096,0.20727738095238096,0.20727738095238096,0.20727738095238096,0.20727738095238096,1.9108960000000002,3.9502,1.9108960000000002,1.9108960000000002,1.78854,0.20727738095238096,0.20727738095238096,3.3721333333333336,2.623603333333333,4.325045,3.373205,2.222895,3.460495,1.571042857142857,1.8148060000000001,3.42232,1.659214,3.18909,2.6477953333333333,6.231259999999999,4.34774,4.628835,6.1534,4.7081,4.79168,4.88348,4.49364,7.138754166666667,3.623666666666667,3.628133333333333,2.6821333333333333,4.655526666666667,2.6495,2.1859125,1.9250166666666668,4.86101,5.1528,4.76193,5.3525,5.43545,4.766975,4.84138,0.8038900000000001,0.7506,0.7506,4.77301,2.3568466666666668,3.764415,1.0145414285714287,4.988765,1.5516571428571428,2.3027333333333333,2.47788,4.4971000000000005,4.4971000000000005,6.88115,4.26643,1.4002283333333334,12.136961666666666,3.301293333333333,1.2403,4.94775,4.952595,3.521255,3.565285,2.84281,4.560333333333333,0.7620866666666667,3.4168333333333334,3.3551,3.6842333333333332,3.118456666666667,1.4367633333333334,1.4157233333333332,4.7343641666666665,3.11891,3.017276666666667,3.4533666666666663,5.19458,3.340455,0.7418549999999999,1.5979133333333333,3.2979033333333336,2.574208333333333,3.5663666666666667,3.4014333333333333,3.0816266666666667,3.586866666666667,3.021513333333333,2.45436,1.0188233333333334,3.063686666666667,2.7035466666666665,3.42434,3.234325,3.97403,2.6305,3.2248566666666663,2.9203,1.575746,1.9104833333333333,2.7407804761904764,3.582333333333333,1.7174299999999998,3.16043,1.7695333333333334,3.9026,5.0037875,5.029550666666666,2.551575,2.6539,2.758525,2.2859575,1.586757142857143,2.2578675,3.276429642857143,2.29815,3.552566666666667,2.769435,3.736929,3.7884,1.2509000000000001,1.28549,1.760205,2.313835,3.153776666666667,3.4839333333333333,5.03265,7.3169325,3.11491,5.36975,4.237325,16.241883,0.554,10.806774999999998,1.095711111111111,3.177075,2.5539466666666666,2.34828,3.112365,1.612368,1.490858,2.550056666666667,1.420712,2.661574,1.8951133333333334,2.980066666666667,2.6023833333333335,2.84004,1.5052166666666666,0.7263758333333333,3.3185000000000002,2.5236433333333332,3.18425,1.067911111111111,3.6344333333333334,0.739445,0.3976646153846154,2.2775733333333332,4.52834,4.60898,5.23735,0.8757127272727273,4.19768,4.519095,1.15268,2.42984,5.63025,3.028315,3.91243,3.88245,3.94144,1.95075,3.890375,2.7623599999999997,3.096065,3.47979,2.72197,2.79189,3.735585,3.13517,3.42194,2.661485,3.345445,5.22695,1.3013633333333334,4.73117,2.30281,4.069685,5.138826666666667,2.160545,3.094996666666667,3.110743333333333,5.831531666666667,2.5126133333333334,3.3873,6.08805,4.098766666666667,4.50003,1.9597033333333334,2.4443375,4.47052,3.5288,4.477935,3.455,3.2749133333333336,3.1085700000000003,4.1601,3.5555333333333334,2.872,2.8851366666666665,0.4341111111111111,2.3496125,2.1992575,4.80167,4.55387,3.3317866666666665,2.6876766666666665,3.26188,8.04276,3.49954125,3.847995,3.0283333333333338,4.089875,3.14657,3.7010883333333333,2.7750333333333335,2.3697425,2.85221,6.22255,4.66666,2.1403166666666666,3.286565,2.965075,2.6403733333333332,4.872026666666667,1.7233899999999998,6.229946666666667,4.212675,5.04875,4.72113,5.9308,3.570685,6.847218333333333,5.18695,3.95922,0.6773407142857143,2.2626125,1.50018,3.19886,3.61345,4.02909,3.79002,5.23385,2.913843333333333,4.92991,3.247246666666667,3.6290666666666667,3.163206666666667,4.584505,4.83182,4.93506,2.9054966666666666,5.931246666666667,4.615695,1.5289283333333332,5.4331,3.751775,3.44439,2.100555,2.2634,4.736879333333333,1.1780328571428573,2.4543033333333333,2.04894,4.114285,4.457015,2.56619,3.466333333333333,3.0300143333333334,2.5506766666666665,4.03951,1.3265639999999999,2.21483,2.34158,2.9482133333333334,2.4510533333333333,2.5137466666666666,2.62074,3.940055,2.8804966666666663,2.780253333333333,4.0128,2.29883,4.026655,3.47332,1.8935977272727271,1.8935977272727271,4.831025,2.9253733333333334,1.75627,1.3585225,2.2701325,1.902015,1.2243840000000001,1.4363966666666668,0.681846,1.6639566666666665,1.4580466666666665,2.7273,2.4298933333333332,1.7556833333333335,1.9563833333333334,2.3792733333333334,1.4441566666666665,1.7328366666666666,1.8050233333333334,2.38066,4.295185,2.789125,2.878133333333333,2.859975,5.9201250000000005,3.06015,4.292495,3.9617079166666667,1.94103,3.89073,2.979355,1.890855,3.423675,2.2339375,2.80166,3.688455,2.18822,4.602715,3.37617,3.96881,3.4654666666666665,0.8430966666666666,3.71484,3.856605,3.41045,3.65147,2.7436633333333336,4.790585,4.82445,5.16634,9.3637725,3.708205,4.496195,3.202526666666667,3.86443,4.52179,2.540275,2.40157,4.283535,2.148005,5.833145,1.821888,2.682915,6.990713333333333,3.1388033333333336,4.100632,1.3085028571428572,4.619,4.701085,3.4019666666666666,4.756175,4.72684,6.275385,16.36821535714286,0.6367764705882353,1.05225,3.385733333333333,4.02654,4.2731,2.197765,3.61564,4.169745,4.689335,2.989525,4.88203,1.73195,1.73195,5.4935,0.7622963636363637,1.86477,2.91528,3.900235,0.3577707692307692,1.8824699999999999,4.21688675,1.1328316666666667,2.994476666666667,2.6662933333333334,2.94387,7.684,2.466536666666667,3.5598333333333336,2.01177,2.2622633333333333,4.1458224999999995,4.384505,3.544595,7.317833,1.783465,2.87605,4.608205,6.904275,1.8905833333333335,2.27525,2.601716666666667,1.3862666666666668,2.463925,1.7792675,3.89458,3.8389,1.4229125,1.946209333333333,1.946209333333333,2.911936666666667,5.6198,3.945358333333333,3.861315,4.5819,5.5431,3.17385,3.679305,3.93965,3.543675,4.520415,4.2407575,4.356545,0.9039809999999999,0.56061625,5.3053,3.83979,2.5654666666666666,8.26766,1.51302,4.785566666666667,4.035735,0.34120750000000005,1.88146,1.2552733333333335,1.90156,1.9718,5.557312,3.14913,3.099255,4.711685,5.1752,4.558875,0.60506,1.998325,0.583399,5.538376666666666,1.552088,5.12755,2.1195775,3.1792949999999998,3.19038,4.322415,4.53835,5.1322,0.8869836363636363,3.103465,4.17775,2.0237475,1.8102875,3.597925,3.33162,3.526625,3.80723375,5.390266666666667,4.43207,5.4855,2.8528800000000003,0.7696922222222222,3.5187000000000004,3.827525,0.6122230769230769,4.044675,4.12224,3.941095,2.71307,2.7685433333333336,5.6258,3.22792,3.83934,2.20184,4.17471,1.9488800000000002,6.1997,3.823245,0.7033961538461538,4.90657,4.227165,3.18669,4.42151,4.2783,2.641885,3.957015,0.7472489999999999,3.04356,3.757211111111111,4.961315,3.5105,2.4790725,3.4238666666666666,2.4790725,4.44467,2.94861,3.1047166666666666,1.566045,3.146803333333333,1.905965,4.330185,2.8808633333333336,5.53459,3.254773333333333,2.99518,3.13357,2.3751128571428572,2.3751128571428572,2.3751128571428572,2.3331433333333336,1.0440633333333333,4.435895,2.3691533333333332,1.6132533333333334,3.9184,2.786773333333333,3.0975800000000002,4.22582,5.1951,4.3158,2.147105,1.3986079999999999,4.069055,1.864634,2.3269766666666665,3.018615,3.420045,2.056525,3.981265,2.60797,1.688458,4.743025,4.144755,3.504175,3.665645,0.7243588888888889,2.41465,4.577315,7.53218,5.68425,3.072955,3.31431,3.453465,3.732535,1.8827575,2.3117725,5.05155,2.17623,4.47559,3.73931,4.458685,8.974583333333333,4.054455,4.001465,3.412155,4.832205,4.070565,3.2603999999999997,3.2603999999999997,3.782755,4.0124,4.484025,4.088745,4.342855,4.415125,4.308735,1.13581875,4.23323,4.19652,5.44875,7.656845,5.18775,3.7390046666666668,1.8303566666666666,1.5651233333333332,2.6276525,4.693985,3.76523,4.97992,2.825063333333333,4.668725,5.2992,5.1579,5.0455,3.176766666666667,3.937875,4.310135,5.36165,5.11315,4.12398,7.441203333333334,4.48976,2.1961533333333336,5.2171,3.960205,4.193015,3.971455,4.90145,0.885279090909091,4.348105,4.48739,1.2866771428571429,1.450516,5.45905,5.01705,9.072553500000001,5.61975,5.4341,6.1167,2.93311,2.7559766666666667,5.08835,1.7598625,1.7598625,2.51431,1.5635199999999998,2.9158074999999997,3.5606333333333335,1.9820075,4.305698181818181,1.30942,2.09511,6.3262925,3.04645,3.57858,2.8661,3.9847,4.1127,2.94041,1.0870577777777777,3.953475,2.8593933333333332,3.74627,4.176625,3.8063366666666667,5.80475,5.7709,5.2707,4.733965,4.87071,6.53105,4.969135,3.208835,3.75781,1.8200525,1.8200525,3.859515,4.39955,2.43995,2.6518566666666668,2.0895810606060605,2.6251966666666666,1.8294066666666666,1.8294066666666666,4.458765,3.462665,2.133885,3.633825,2.6726,1.836415,1.25717,1.3693444444444445,2.69524,0.50715,0.86567,2.706555,3.74192,0.40780727272727274,4.21344,1.989236,5.3872,3.41549,7.3241575,4.258135,5.259546666666667,5.00165,5.19355,4.144545,1.857455,1.961964,4.45975,2.97993,3.77957,1.24201,4.343285,4.36217,2.77009,2.442895,2.99863,4.284895,3.66648,3.64046,3.838665,3.610355,3.478905,4.06073,1.038492857142857,1.874295,2.37139,2.46416,4.35707,7.66306,1.055846,1.5420033333333334,1.5420033333333334,1.945384,3.881155,2.70092,2.99979,5.8232775000000006,2.9161266666666665,1.17947,1.17947,1.17947,2.73039,3.0564704999999996,4.24522,3.19301,4.109565,3.33626,3.634905,2.93387,3.1586866666666666,3.602585,4.0950325,2.430945,1.2243840000000001,3.040865,2.430945,3.85464,1.3913200000000001,1.8573700000000002,2.3423475,5.673480666666666,2.717015,6.1814789999999995,5.673480666666666,3.4644639999999995,1.83393,1.83393,2.4895,5.57706,1.83393,2.16334,5.42604,2.222835,2.51119,4.6649,3.428005,4.19461,1.75865,3.265805,4.13299,2.344186666666667,2.244915,3.46681,1.75865,2.479795,1.991155,5.7248,2.541135,1.16374,2.460105,3.11129,3.176547,1.785035,1.9158870000000001,3.68152,1.880052,1.82198,3.25898,2.28211,3.226885,3.57221,2.1215766666666664,2.869475,2.384115,6.13908,2.416925,3.125405,3.3655,3.3655,8.020006666666667,0.9948866666666666,3.3188,2.35255,3.066265,2.27015,1.3582366666666665,1.3582366666666665,3.53611,2.088825,6.716135,2.063715,3.51998,3.185585,5.81828,2.59542,2.50756,5.729845,5.729845,2.44387,1.49856,1.2078425,1.2078425,1.49856,1.9527599999999998,1.4156000000000002,1.1554116666666667,1.4552466666666666,1.7624466666666667,3.682165,1.61234,2.95696,3.10181,2.930685,2.861165,2.75567,2.41508,3.2624358333333334,3.2624358333333334,6.09949,2.46869,2.758515,2.892075,3.24099,2.33933,2.66266,2.54543,5.408245,1.932,1.382176,1.2022126666666666,2.001052666666667,5.39104,3.8686760000000002,3.28534,3.223205,1.79017,1.79017,1.79017,4.63666,2.38478,1.1554116666666667,3.07828,3.45099,1.231225,5.470165,3.112185,6.47762,3.12402,1.59991,3.27706,3.1450899999999997,2.371315,3.246035,4.01266,3.68486,1.52226,2.38352,3.05065,2.95803,4.87897,2.03372,3.00088,2.58706,5.76635,4.47983,1.96352,2.156175,5.45237,5.10771,5.15621,5.09186,0.965016,0.965016,2.272977,2.272977,0.800802,4.63015,2.98529,5.25138,3.76826,5.04819,2.29949,3.9548466666666666,3.9548466666666666,2.369385,3.278425,3.55917,1.13644,4.41154,3.3304,3.456125,2.7319,4.64259,2.49602,2.137985,3.24036,3.05174,2.951025,5.1638,2.407165,1.774865,3.45232,6.02214,5.61806,4.18459,2.53791,3.44419,2.591175,5.15109,2.496435,3.58761,2.072655,6.61606,3.88854,2.131005,2.75694,2.662935,4.62259,2.439165,2.804635,2.775445,6.9842,4.66074,2.840225,2.48923,2.227105,6.4107,3.28626,2.96121,6.27034,3.02515,2.961285,2.63366,3.017405,1.8792333333333333,1.802655,1.9613466666666666,1.6285100000000001,1.7713633333333334,1.9488033333333332,1.55315,1.9925866666666667,1.73668,1.8792333333333333,3.93582,3.79983,2.153445,1.5671175000000002,1.5671175000000002,3.73388,3.73388,2.7422633333333337,2.7422633333333337,2.637405,2.37351,1.66476,3.72632,2.1638849999999996,2.1638849999999996,2.3089399999999998,2.3089399999999998,3.14977,1.9649,4.6638,1.97555,3.09328,1.9611599999999998,1.9611599999999998,1.88281,3.87322,5.2696,1.3913200000000001,4.02967,2.1215766666666664,2.1936,3.85908,3.261655,1.78252,2.272165,6.39267,2.014505,6.31167,2.91942,3.223815,3.05949,2.71785,6.36669,3.02115,1.830715,4.498521538461539,4.162225,5.11869,3.64972,1.51096,1.51096,3.69814,4.78754,5.02273,5.93589,2.74549,2.659655,1.69578,3.16688,1.626435,2.729535,1.745785,0.794254,0.794254,0.794254,1.9501366666666669,5.171806666666667,1.9501366666666669,2.22874,3.515055,1.63268,1.93997,4.28976,3.69251,5.46763,1.7237433333333334,4.49664,1.7237433333333334,1.7237433333333334,2.02965,1.91309,2.42068,5.79732,2.42068,2.455465,3.92728,2.031775,1.67152,2.648305,3.1135033333333335,3.321413333333333,3.4263999999999997,3.82169,1.476655,4.461185,0.7677527272727273,4.38596,4.380835,2.5737475,2.5737475,0.7249318181818182,3.7556333333333334,2.6982866666666667,5.77865,4.99147,4.192625,5.0825,4.715565,4.15283,5.04455,4.47319,4.498915,4.033545,3.805015,4.808615,5.2237,3.352485,3.54737,4.157595,2.50745,1.3019159999999999,4.470015,3.756915,4.09566,1.5060714285714287,3.68877,4.274405,6.226929999999999,1.15563,5.0355,4.24005,2.05455,1.950275,3.23093,3.56133,1.55276,1.51096,3.78432,4.237155,2.752445,4.53365,3.061795,1.1167799999999999,2.6616633333333333,1.2235514285714284,3.1389099999999996,1.9750233333333334,3.2316000000000003,1.879445,2.8595666666666664,4.22311,3.347435,4.62894,3.91202,2.327745,4.75217,4.30573,2.971,5.05095,4.35262,2.606053333333333,6.1634,4.74118,3.0789033333333338,2.6301133333333335,3.654955,2.900173333333333,2.9178599999999997,2.75993,4.876895,4.20876,3.753365,2.65637,2.5658166666666666,2.381746666666667,2.780913333333333,2.50012,2.358233333333333,2.46627,2.2002375,1.3831525,3.100413333333333,1.1352575,2.163965,1.6811025,2.55305,1.5631775,2.1767875,4.161955,4.381585,1.9739325,4.02928,4.57774,6.364563333333333,2.0690500000000003,1.72438,6.735,3.572115,4.537185,4.42891,4.088065,2.03285,3.637435,2.5693,2.909815,4.403915,0.7078333333333333,3.929195,1.9994466666666666,0.7726045454545454,5.0193,4.41611,3.91193,1.9367685714285714,4.641415,4.565185,2.7402433333333334,2.4534833333333332,2.507,2.128833333333333,0.603058,3.0465999999999998,3.137125,5.1347,2.4782075,1.950445,4.399615,0.9907725,1.811125,1.811125,2.70404,1.811125,4.211515,2.70086,4.72211,4.26227,5.77695,13.336535,3.33013,5.1617,3.18361,4.640695,3.90997,6.8831875,2.8998266666666663,4.47189,4.916305,3.988895,1.3819549999999998,4.316555,2.842333333333333,2.4461366666666664,1.0504133333333334,2.136215,4.106015,7.27233,4.18326,2.67582,4.241845,3.2368066666666664,4.28269,4.94324,4.628605,2.879775,2.79364,4.06288,5.7802,2.51074,4.642655,1.944105,1.944105,3.080525,4.86336,1.09785625,4.301938666666667,2.31787,4.023005,2.5513600000000003,2.3047733333333333,2.743093333333333,2.19348,0.6815357142857142,3.499375,2.7404933333333332,5.18885,4.392635,0.2334084375,5.14475,4.641205,4.217765,7.013018333333333,3.350766666666667,2.9485166666666665,2.179996666666667,3.4867333333333335,3.504766666666667,1.33164,3.100426666666667,2.7106666666666666,1.3955849999999999,3.3404000000000003,3.2720833333333332,2.61976,3.4824,1.3464594444444444,4.311785,2.37456,5.3161,4.632035,3.99645,1.5804233333333333,2.6402233333333336,1.2543625,1.821965,1.2543625,4.95551,3.6118666666666663,1.672418,2.4427075,3.910935,3.820005,2.824025,3.791655,0.3642235,1.4929420833333333,4.047565,4.299665,5.6182,2.057965,3.0046433333333336,3.202526666666667,2.4694,2.72259,3.3536,4.71388,2.55795,2.0183633333333333,2.85995,2.66306,2.74202,4.31195,1.94193,4.61327,3.8275708333333336,5.89535,7.5359575,0.8076722222222222,0.819898,4.025995,7.095725,1.869576,3.4731,1.2087816666666666,1.2087816666666666,3.54741,0.44379444444444444,4.10188,4.48609,2.559355,4.09445,3.24654,2.59534,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,0.23538633333333334,2.19076,3.473435,3.995033333333333,3.2365033333333333,5.14156,6.2521370833333325,2.98706,2.772486666666667,0.9757083333333334,3.285115,1.05780875,6.082329166666667,3.3098425000000002,2.235285,1.05780875,2.49673,2.687655,1.22055,4.8710587499999995,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,0.16156177777777778,4.275705,1.67987,4.700325,4.70785,1.7466339999999998,4.494335,4.444355,5.18605,5.184074166666667,3.702735357142857,3.24806,4.83156,2.2336425,5.774675,4.335915,0.7548571428571428,1.4006100000000001,1.4482,3.4172333333333333,3.4172333333333333,3.0237350000000003,3.99831,4.810185,3.6875,4.35136,3.3518333333333334,1.9692666666666667,0.5383228571428572,4.098355,3.239905,2.74351,4.093615,3.3508,3.1733712499999998,5.01735,4.342415,6.93138,4.298055,4.751405,5.6444,4.470465,1.4204885714285713,3.27694,5.121686666666667,35.141072303751805,1.2153883333333333,4.382145,3.771375,4.522805,4.30773,4.66389,5.309,0.40829047619047615,5.1131,4.4323,2.101575,1.888645,3.932,1.866325,2.488785,2.22666,1.73736,2.83932,2.55546,3.029705,3.1999,0.6273546153846153,3.878075,3.6994,0.40391052631578944,2.5100433333333334,3.217405,2.697865,3.871395,1.74843,4.525945,3.893865,3.088725,3.71338,3.28218,4.560145,3.014335,4.13021,2.1409725,5.121686666666667,3.846635,3.39716,3.14822,1.7636800000000001,4.585575,3.54361,7.097886666666667,3.188345,4.6336,6.720415,5.196829,2.2831025,4.682745,7.1027249999999995,7.792022,2.606716666666667,2.466575,5.5366,5.821193333333333,4.80867,3.50566,5.503941666666667,2.48123,2.0590425,2.2983075,60.87646448381984,5.2728,4.50719,2.47994,0.979285,3.0675133333333338,2.9795133333333332,3.25651,0.9154911111111113,4.390345,0.7916577777777778,7.7834303571428585,1.864634,3.3371333333333335,1.8984860000000001,2.735475,2.45704,2.77577,2.55447,2.2749366666666666,3.09827,1.5262133333333334,5.2025225,3.956,1.2465225,2.55757,1.3751533333333334,1.493,7.51927,5.72045,3.32807,5.8603,5.1811325,1.4943142857142857,3.6602,3.37211,1.639225,5.36875,4.60538,3.910065,2.08567,3.2026733333333333,3.8343333333333334,3.902155,5.74575,4.506495,4.635065,2.2155575,3.819045,4.4448,3.269686666666667,1.489536,4.341145,3.3744,4.10765,5.03025,3.93435,3.88069,4.459155,4.30398,4.278925,4.77232,4.198355,3.2801333333333336,3.912485,4.3068,3.14552,4.21875,3.762425,1.4289524999999998,1.4289524999999998,4.508305,4.73783,5.3165,3.830245,4.421305,3.2973833333333338,2.83857,4.438215,5.49515,0.7757154545454547,5.47485,6.6792525000000005,5.76695,5.79255,1.2112888888888889,3.160605,0.9634866666666667,0.9634866666666667,0.9634866666666667,3.613075,3.4486333333333334,3.2938533333333333,3.5147333333333335,0.9132389999999999,5.2002,4.9611,3.26621,1.48493,2.02794,4.051125,4.223845,3.71732,3.5192639999999997,6.57565,4.62959,2.5378433333333335,4.650925,7.1089,2.448675,4.109645,3.824005,3.21441,4.858535,4.31086,4.78888,5.6319,3.762325,3.6429422222222225,2.13784,2.13784,0.7177963636363637,8.727154,2.146645,6.31205,5.5741,4.604965,4.79445,3.744605,3.042158333333333,4.521965,7.484535,5.773816666666667,2.1207733333333336,4.43964,1.0550000000000002,3.68929,2.03165,0.9383755555555555,1.1634928571428573,2.936586666666667,3.247813333333333,2.7769433333333335,1.184592857142857,2.8003033333333334,3.17031,0.9212566666666666,2.9734599999999998,3.2818733333333334,1.6341899999999998,1.797886,3.14222,3.18167,2.9804933333333334,2.62754,1.918422,5.51525,4.68195,4.38699,4.82493,4.937675,3.13684,4.711125,5.8008,5.2865,4.07698,4.03416,12.858708333333333,8.226424999999999,3.096693333333333,3.82245,2.14859,3.63438,3.085635,4.518645,1.1290166666666666,3.95661,3.795895,1.462375,3.654165,2.9706333333333332,4.43837,4.191065,3.890615,6.7825,7.406373333333333,4.008065,1.6317233333333334,1.6317233333333334,1.6317233333333334,4.95419,1.176525,1.41,0.5072705555555556,4.423175416666666,3.01821,3.98797,0.9574130000000001,1.174655,3.65421,4.34576,3.701775,16.948727214285714,4.3648775,4.567095,6.762834999999999,2.8550799999999996,3.460385,3.14639,0.9177088888888889,1.59438,4.13144,3.84333,4.567035,4.079565,4.741955,3.865655,2.7518055555555554,3.421025,5.62635,0.588785,4.96182,2.22463,4.049055,5.528,3.3945333333333334,2.82109,3.9696299999999995,1.73576,4.786675,5.9926,2.82833,2.76653,4.31118,4.24573,4.59374,3.96984,3.844825,4.51205,4.685095,4.732245,4.588175,4.87197,4.045525,1.229734285714286,1.85484,6.6474546666666665,5.76285,5.0688,5.3408,2.605175,2.7836700000000003,2.6679866666666663,5.438693333333333,1.7820475,2.061615,3.1204666666666667,3.0600633333333334,3.4222,4.530085,3.49962,5.605113333333334,1.63346,4.634825,0.8854533333333333,3.99328,4.037015,1.6485233333333333,4.91127,1.00986,4.56823,5.43715,5.152,4.51675,3.7595433333333332,3.89364,2.993726666666667,5.1987,5.31495,2.957042,3.872635,2.355895,2.602225,1.92762,2.546265,3.642065,5.18545,1.07313,4.34426,1.26813,3.35138,1.5942633333333334,1.07313,0.25174405405405403,4.08209,3.06634,2.2668479166666664,1.9169633333333334,2.668395,1.0528225,3.754895,3.454555,4.63279,2.51134,6.4669,6.9928,2.8294266666666665,3.281076666666667,2.7489133333333338,0.845089,2.3222566666666666,6.23475,4.559885,5.1546,4.964065,2.3326033333333336,1.3030366666666666,3.8449225,1.6377375,2.2665575,1.7095625,1.5941675,1.708035,1.90858,2.147075,2.0560175,1.6058675,1.3189914285714284,1.430975,2.009495,2.610375,2.112375,2.3223366666666667,0.547922,1.8181,3.0910266666666666,3.2114266666666667,2.19552,2.70871,2.36977,5.4367,2.843716666666667,2.61867,3.14218,6.1455,4.22714,2.96673,4.722045,1.761500588235294,4.23242125,24.966573,4.670426666666666,5.53855,4.57686,2.590336666666667,4.034315,4.549485,2.89446,5.2196,3.2118966666666666,0.74198625,4.10056,4.9477,4.53458,4.02937,1.6162666666666665,2.2196666666666665,2.31962,2.136875,1.4476857142857145,3.493866666666667,5.35145,4.10811,3.176815,4.2228,5.2941,5.04055,4.746605,1.294475,3.629055,4.16571,4.934755,1.6788699999999999,3.061593333333333,1.738495,1.738495,3.637315,4.83696,2.71695,3.0161333333333338,4.23525,3.96645,6.574915000000001,4.47761,2.122355,1.59438,3.35855,4.17167,3.1900433333333336,2.429082222222222,2.429082222222222,3.24858,4.6735,4.06102,5.595813333333333,2.268065,3.2612017777777775,0.5703644444444445,0.5703644444444445,0.5703644444444445,3.447885,3.769185,4.555616666666666,5.4671,2.1839825,5.47785,4.573915,4.721105,3.57142,4.474075,2.76669,1.4641857142857142,4.826305,4.48876,0.4761778571428571,4.338033333333333,4.92343,1.613875,5.4376,5.33555,4.82317,4.128005,3.803005,3.05224,4.49697,1.665524,4.286575,1.6427733333333334,3.8955,6.07845,1.2830375,3.227095,6.9436,4.36499,3.7321333333333335,2.6688,4.26983,5.29165,3.4897666666666667,6.639986666666667,4.63157,2.2519033333333334,3.12647,2.855726666666667,2.8978,3.221643333333333,1.8040266666666664,4.732235,0.6173383333333333,1.86815,1.86815,3.189685,4.4728,2.3616975,2.921455,4.855135,4.639065,4.43854,1.3399966666666667,5.295864559523809,4.612865,4.52631,3.615725,4.307005166666666,3.8435544999999998,0.4634506666666667,2.5241198571428574,1.07643125,0.4634506666666667,4.2226,1.0207355555555555,4.329125,4.29191,6.446921,2.1743133333333335,1.026155,1.110822,2.222795,3.056846666666667,1.8208066666666667,2.4455033333333334,3.407425,3.760675,2.0962366666666665,2.46507,4.636205,3.19839,4.10143,5.7014,3.72889,4.879325,7.3822383333333335,4.38752,3.443955,4.41624,3.624145,4.53489,5.4066,6.083465,5.63855,2.4566066666666666,1.0107933333333332,4.023845,4.13455,4.01121,5.099,4.058165,5.56175,2.81181,2.633436666666667,3.24653,2.44304,2.250723333333333,2.9656833333333332,3.4941333333333335,2.9259533333333336,4.243375,4.27403,4.3637,5.42875,2.9865933333333334,3.2308333333333334,2.918125,0.7231142857142857,4.51121,4.108385,4.522455,3.00721,6.088493333333334,3.20758,4.796575,3.791915,0.6119376923076923,0.5624321428571429,4.331255,2.696749,3.524895,4.65256,4.270965,1.744696,5.03045,4.145345,2.688,2.6070800000000003,2.252345,2.136280833333333,3.6115666666666666,3.2236966666666667,3.1623566666666663,3.0614166666666667,3.538133333333333,2.618225,3.0640533333333333,3.9792666666666663,4.5411375,0.55818125,0.55818125,0.55818125,3.4157824722222223,3.5899666666666668,3.4182,2.7933133333333333,2.6017,1.13581875,2.93667,3.0703033333333334,1.8967725,2.65449,2.39423,1.0062655555555555,2.879255,4.56012,9.851651416666666,1.5613181666666667,0.661502,3.62281,0.661502,0.661502,0.661502,0.661502,2.1871125,4.1107795,4.111715,4.865945,5.9225,2.86309,3.0139933333333335,3.1765875,3.482961666666667,4.985845,1.3016366666666668,2.3269366666666667,3.3232266666666668,2.48834,3.007906666666667,3.917725,2.199053333333333,3.515515,1.1913111111111112,5.03405,3.77545,3.514965,0.8145475,0.629849,0.629849,0.9311003478260869,1.745647847826087,0.9311003478260869,0.9311003478260869,0.31427434782608693,0.31427434782608693,0.9311003478260869,1.4029833333333332,2.7972466666666667,2.898385,3.18491,2.589123333333333,2.6994666666666665,3.189603333333333,2.7180733333333333,4.464425,3.558135,1.9537925,2.2174133333333335,1.738435,0.17987824742268038,0.17987824742268038,0.17987824742268038,0.17987824742268038,2.4750566666666667,2.7976233333333336,0.852242,5.0671,0.7831754545454545,1.7149999999999999,4.797850833333333,5.106,4.403205,2.928675,4.35206,3.60316,1.7793866666666667,1.1728625,3.609815,4.426225,5.98965,2.28335,1.9910133333333333,1.8694733333333333,3.1189933333333335,1.4444933333333332,2.71787,2.887836666666667,3.0154866666666664,4.604785,4.14074,3.12435,4.71342,2.4354733333333334,4.21753,5.5248,4.07722,4.466465,4.68664,5.558286666666667,4.829406666666667,3.2220334285714287,5.260606666666667,4.361375,5.91575,4.509355,4.51456,2.23517,3.10507,4.175445,4.99553,4.308875,3.9204,3.67783,3.970865,3.986565,2.3782833333333335,5.61745,3.46974,7.31027,5.96335,5.86115,4.96638,1.4873857142857143,0.9967309999999999,0.6703261538461539,1.762654,4.885125,5.1004,4.005995,1.65642,4.13394,2.87091,5.1217,5.1625,6.144252999999999,4.224935,2.99531,1.7723220000000002,5.265385,3.87686,3.21242,1.677815,0.96938875,3.992145,3.5718,3.52895,3.620995,2.16197,4.510625,1.5738633333333334,2.8742133333333335,2.40263,4.33217,4.400305,4.93466,2.3553,1.6526,5.56485,2.9746,8.95181,2.827,4.654385,5.7664,4.556135,4.87683,3.95637,4.80115,2.2030475,4.410045,5.217579000000001,2.2917925,4.39436,4.58546,7.7406950000000005,5.10685,3.3250666666666664,3.93751,3.743725,3.19839,3.364715,5.03685,5.52455,2.240225,3.0630566666666668,3.30143,2.365425,2.45564,4.541545,5.92395,5.1176,4.58725,4.920095,4.376095,5.96075,0.6208561538461539,3.267246666666667,1.2246414285714287,32.18811387937802,2.461375,4.6298,2.851155,4.37508,1.866096,2.46224,3.3662546428571427,1.5023871428571427,1.5023871428571427,1.5023871428571427,1.5023871428571427,1.8638675,3.32616,0.4193322222222222,7.742755972222222,0.4193322222222222,5.20205,5.1207,2.283165,5.57675,2.726775,4.028748,2.393116666666667,2.43675,2.6524300000000003,2.0822266666666667,0.64109,2.57008,0.7341133333333333,3.131016666666667,2.0997533333333336,2.298192,1.207635,2.298192,6.22875,8.291545000000001,4.596175,4.359065,5.36065,5.9616,7.411488333333334,3.36094,1.758395,1.758395,2.30288,4.946275,3.70207,4.56091,6.002536666666667,4.581785,3.284375,4.212915,3.323015,3.480825,2.09301,1.0024060000000001,1.71237,4.65402,4.174495,5.368966666666666,2.0084675,4.08078,1.6180160000000001,3.53778,1.328204,3.3302133333333335,3.1582733333333333,3.0739366666666665,3.245886666666667,3.5117999999999996,4.967485,0.6780553846153846,3.476695,3.5940333333333334,2.6343833333333335,2.342166666666667,4.3078075,3.25488,2.7162400000000004,5.3013449999999995,3.84052,5.0184,3.943245,3.542925,5.51055,4.993945,2.1797633333333333,6.0137,2.3480596666666664,2.6992666666666665,3.152976666666667,2.69703,3.2533166666666666,2.83833,1.7732400000000001,3.147233712121212,4.41453,3.4470237499999996,2.666332333333333,2.666332333333333,2.391945,4.066415,4.015605,0.635789090909091,3.29574,3.30332,8.54541,0.8797536363636363,4.452435,3.79728,5.3117,3.65822,3.940145,2.214945,3.80818,2.86661,5.87885,2.6555341666666665,1.0211825,3.687085,2.764863333333333,4.81553,3.20408,3.59797,3.658315,4.88052,4.918706,3.283705,1.96129,5.2069,2.48642,4.546775,5.03635,5.10155,4.58386,4.18624,2.93104,2.20796,2.9466733333333335,2.58236,2.8352,3.5365,2.8203559523809525,4.892698333333334,2.903396666666667,2.5086999999999997,7.1592325,5.261782083333333,3.9964975000000003,3.23423,4.157266666666667,4.057285,3.59099,2.161725,3.9228300000000003,5.53155,4.845985,1.5740533333333333,4.722075,2.809466666666667,6.8837075,4.77499,8.997164999999999,4.41539,3.607355,2.25088,4.12874,5.7201125,7.61636,3.57041,5.75947,4.147705,3.189075,3.84417,1.7233899999999998,4.532931,1.5547449999999998,4.41412,4.636125,3.4440666666666666,0.8818916666666667,10.241521666666667,1.2975222222222222,1.865035,2.305973333333333,2.1758866666666665,3.25601,1.3312366666666666,3.543565,3.44185,2.7648966666666666,4.43938,1.1640225,4.3446,1.3908033333333334,2.8643045000000003,4.176075,4.965635,1.9299,5.717377916666667,2.3635686666666667,7.8994,4.402345,2.85022,4.008585,3.22081,1.2963737499999999,7.53621,2.96378,3.25629,2.240575,4.07897,2.229085,3.1705924999999997,1.967925,4.0278,1.326835,5.2752,3.331115,4.11341,0.957418,2.0115290000000003,3.788855,5.1818,5.25121,1.4190720000000001,1.4190720000000001,6.1178,4.653605,5.46835,3.74483,3.38064,8.395385000000001,4.297725,5.68355,3.96096,2.5836,2.104146281362007,0.3432825,0.18659322580645163,0.5775121146953405,1.1833516666666668,0.6509332258064516,0.18659322580645163,1.308655,0.39091888888888887,1.5266341666666667,1.8861671146953405,2.1759125,2.3283575,2.20953,5.34625,6.623021666666666,5.3337,5.49835,4.437305,5.0803,1.17475,5.11075,4.13606,5.9179,5.2089,5.71475,5.4904,6.0965,5.58895,1.4652900000000002,1.6067857142857143,1.928398,6.234634,1.352334,5.665,4.63646,7.223223750000001,4.955705,5.96185,4.524445,4.806055,2.578925,5.45805,5.4797,6.592463333333333,5.24805,5.940345833333334,5.53595,4.04435,4.173445,3.9677666666666664,1.00388,3.724766666666667,4.496535,1.24845625,3.7650666666666663,4.916055,4.4709175,5.00045,2.45173,3.141875,2.62155,4.579265,2.1677925,3.62414,1.2634583333333333,3.110495,3.769865,4.63775,4.9749,3.4553387499999997,0.6173591666666667,6.03735,1.05694875,3.715915,3.1277000000000004,3.597315,2.1068966666666666,3.815985,3.6992110256410258,3.731833333333333,4.405795,15.115417,5.0059466666666665,2.3082725,8.19767,1.5200675,3.91128,3.048496666666667,2.7570366666666666,2.3231566666666668,0.22198391304347825,3.1476433333333333,4.779705,1.797374,2.3086033333333336,3.6462333333333334,1.9265975,2.38957,1.4736857142857143,3.351195,4.789905,4.673405,4.76804,0.50209,2.3861933333333334,4.456425,2.77177,4.359065,5.0338,4.174555,4.90059,0.5298041176470588,2.44738,2.44738,5.4229,4.056685,4.808835,2.699,3.6858,3.3364999999999996,5.156,3.845605,5.488688333333333,4.92587,4.4374,4.9483,2.562525,1.9912500000000002,4.24311,4.238335,3.73584,3.57464,1.811302,4.81202,4.332405,3.76528,5.0843,3.95943,4.68892,0.6144726666666667,3.870965,0.7130899999999999,3.249166666666667,4.269055,4.639025,17.946539047619048,4.27114,4.061865,3.1450899999999997,1.17396,2.7518266666666666,2.48892,1.548522,2.46389,2.49722,5.0668,2.17331,4.5432,4.88851,2.21446,4.44889,2.7752866666666667,4.66135,5.05085,5.6737,1.661,1.85854,2.35318,5.08815,5.07485,1.2352444444444446,5.37905,3.4893,5.5856,4.72262,1.70599,4.623335,3.376885,3.604525,4.018635,3.94789,3.0484899999999997,0.6685025,7.758243333333333,1.517958,0.19334194444444444,0.19334194444444444,0.19334194444444444,4.82099,4.21982,2.6491599999999997,4.339205,4.328225,4.632835,4.349195,4.097711666666666,8.686383333333334,4.138755,7.100318333333333,0.903825,0.9401375,2.4774625,4.822985,4.33284,2.1914466666666668,5.4231,5.73975,3.43673,4.2222,4.61992,2.36383,4.40129,4.949413,2.4547966666666667,2.89406,3.30442,2.72319,5.88655,3.54257,0.6887521428571429,4.05781,3.397835,4.21237,4.98341,4.82837,4.05269,5.4229,3.71347,13.833007916666666,4.74313,6.781728833333333,2.7206499999999996,6.779665,4.689285,4.01277,2.2065425,2.3657966666666663,9.75716,2.2351199999999998,4.068033333333333,3.914,3.734166666666667,3.0342599999999997,2.8523133333333335,2.10777,2.23513,2.99995,1.963936,3.9364333333333335,3.0295466666666666,2.56535,3.30564,3.4797999999999996,2.4157599999999997,2.4157599999999997,2.7990333333333335,3.3965,3.3858,2.873423333333333,3.20893,4.0848,2.7066233333333334,2.8658900000000003,3.5390333333333337,2.1710966666666667,2.2178975,3.688,3.0226166666666665,1.846486,4.157066666666666,2.721636666666667,2.5506533333333334,2.90588,2.48294,3.29311,5.994465,2.42946,3.477733333333333,1.8671166666666668,10.838005333333335,3.3487666666666667,1.94039,2.03062,1.0224655555555555,1.630472,4.787246666666667,2.98285,2.98285,1.9091239999999998,1.4814266666666667,3.63973,3.977855,2.20623,1.4088816666666668,1.671012,4.430742,3.297136666666667,4.151266666666666,8.342573333333334,2.84998,3.4003,3.1642543478260867,4.2926,2.2178975,3.3992,3.151123333333333,3.33262,3.4666725,0.8928025,3.3911379999999998,3.276256666666667,2.7539433333333334,3.997945,3.2402833333333336,0.6850281818181818,1.9404885714285716,4.98888,2.4980995000000004,3.1517433333333336,1.645245,1.645245,2.0699925,3.6863416666666664,1.07804,2.2115025,4.8910833333333334,4.8910833333333334,0.6497904761904761,5.867134,3.53794,4.160405,5.175,1.2169899999999998,3.5684666666666662,3.5619666666666667,4.985105833333334,6.223697666666666,2.72319,0.7540199999999999,2.6561066666666666,2.69816,3.079816,2.5353166666666667,2.5780233333333333,3.1569033333333336,2.3808425,2.4713133333333333,0.8350372727272727,3.9653,5.112143142857143,1.41138,1.8003571428571428,5.3242,2.224605,1.457165,4.46043,1.702264,3.480445,2.488635,3.606866666666667,9.525955833333335,4.805353333333334,4.71856,5.1348,2.497404181818182,0.8312709999999999,1.808522,7.063413333333333,1.7001633333333332,4.20292,4.423045,3.93619,21.216790583333335,3.166676666666667,1.3128233333333335,1.15996875,3.2115333333333336,1.3695833333333332,4.100632,5.522,3.5748165,3.2587266666666665,1.2669300000000001,1.3880116666666666,3.1961433333333336,0.54046625,3.279503333333333,3.7479333333333336,3.0155733333333337,2.5708873333333333,2.6134833333333334,2.7038433333333334,2.38823,3.005936666666667,1.6619,3.4853,1.5723900000000002,3.915815,4.103925,2.4025266666666667,4.934775,3.382255,4.123255,4.943245,4.668525,3.04027,2.85662,2.6791366666666665,1.1469542857142856,1.1469542857142856,1.1469542857142856,2.28391,3.1052999999999997,2.6788266666666662,2.99698,2.47268,1.8945425,4.173655,4.36797,3.622085,6.653325000000001,3.409,2.6258,1.9272175,1.1724033333333332,2.555266666666667,4.089525,2.5061466666666665,2.5474366666666666,2.7553133333333335,2.46609,2.6783266666666665,2.855453333333333,3.1157299999999997,2.89901,2.592023333333333,3.2114133333333332,2.0263566666666666,2.1399075,1.8527875,1.5902975,3.1979666666666664,3.0769033333333335,1.97011,3.82014,4.93475,2.86542,2.514438461538462,5.7226566666666665,4.10883,4.83364,5.744,4.823245,4.15261,6.2858725,1.257125,4.175485,2.70972,5.08565,5.3384,3.5669,4.332905,2.33535,7.650875,2.44972,0.8466166666666667,8.53624,5.13726,5.774028333333334,4.692935,2.95735575,1.7818975,5.09865,4.41249,4.52035,5.33185,2.538195,4.49568,4.701615,1.738435,4.19657,2.86705,1.391725,4.866665,0.6471529411764706,4.244833333333333,3.79394,4.869025,3.497965,1.56118,3.453085,1.81201,1.358625,2.76731,3.395,3.2443666666666666,7.034923974358974,1.724865,6.416209583333333,9.921025,6.0809875,3.607025,1.2978885714285713,2.9650533333333335,1.2978885714285713,2.8083733333333334,2.109503333333333,0.28563,1.1536425,0.28563,0.28563,0.28563,1.1536425,1.1536425,0.28563,0.8680125,4.19093,3.372005,3.209935,3.56949,3.83446,3.58846,2.8569923333333334,1.610864,7.0829450000000005,2.7857299999999996,4.166985,2.6934233333333335,1.0018181818181817,1.272175,4.70725,4.033405,1.109841111111111,1.7978919999999998,0.7235472727272727,3.255531779220779,4.38464,5.53685,3.6044,5.392248333333333,0.5487561538461538,4.44012,3.50920875,3.192653333333333,2.6429666666666667,3.5465999999999998,2.51359,2.9225133333333333,2.7148466666666664,2.979165,3.57129,5.6506,4.93578,1.8604679999999998,4.61739,4.41819,3.057045,3.73118,3.43334,0.34192933333333336,4.901265,3.671515,3.414165,3.1832579999999995,4.492515,3.83817,1.87781,3.687935,3.85334,8.041265,5.06315,5.4413,4.41501,4.1792325,0.8188125,2.029405,1.935025,1.53793,1.78854,4.85228,5.4709,4.286195,4.47726,3.5192639999999997,2.6233433333333336,0.9280200000000001,4.133,1.247245,1.11469,3.132485,3.906255,4.68633,1.2954875,3.2613533333333335,8.5415,3.0467866666666663,3.094926666666667,0.8564,4.22145,12.069926666666667,3.44042,4.15156,3.217675,3.478815,4.69266,4.8866,2.00276,4.41907,0.6314146153846154,4.789985,2.2230375,1.851865,1.851865,3.4036333333333335,4.302785,1.7129,4.743015,1.5408571428571427,4.268895,2.5697241666666666,3.0808666666666666,4.72919,3.566595,3.7953533333333334,2.56795,2.7077858333333333,2.7077858333333333,11.428650000000001,0.796329,3.56015,3.4538666666666664,2.1157075,2.0308575,0.8697671428571428,1.386395,1.2749214285714285,1.96352,4.90585,2.585485,4.3505975,2.134036666666667,4.45468,4.67446,1.613525,2.029135,1.0503166666666666,5.910378249999999,2.1045525,2.0971,1.7216539999999998,1.7768339999999998,1.15996875,2.509557083333333,3.52158,2.6999333333333335,2.9690100000000004,2.415973333333333,2.6022933333333333,1.6889333333333332,3.0334633333333336,2.6263666666666667,1.3434466666666667,2.0323466666666667,3.075753333333333,3.18148,2.3689066666666667,1.1258833333333333,2.67893,2.246843333333333,3.3214799999999998,0.31704052631578944,0.39488666666666666,2.2391799999999997,2.31167,3.28344,3.07584,2.65427,5.01535,5.999,4.47347,4.586805,4.44234,4.01523,2.630123333333333,3.683745,0.6687599999999999,0.06144977272727273,6.5768,0.06144977272727273,3.419375,3.052455,5.38965,3.49268,6.21015,4.87721,2.20774,2.54325,1.328365,5.72575,5.5289,2.9555000000000002,5.21575,2.1661675,4.606185,2.0977068478260867,3.148986666666667,3.212616666666667,4.320855,4.9064250000000005,3.34523,1.9901,1.9901,4.073935,7.97036,4.838585,2.2358433333333334,2.51532,4.43131,3.11763,4.982865,3.84159,1.055271111111111,3.877165,2.9407433333333333,3.30321,4.21227,1.098145,2.32154,4.32251,3.94633,4.92319,2.806835,3.44865,4.04574,3.97413,4.147115,5.1728,4.466545,3.1844419444444445,3.930455,2.7305733333333335,2.9261666666666666,2.69152,3.6449,4.373905,2.8325,5.060889166666666,4.44635,3.836905,5.24755,4.483335,4.08572,1.465606,1.3919775,4.230035,3.5178333333333334,1.4889533333333331,2.75507,3.27869,3.2340933333333335,3.8257211111111107,3.3493333333333335,2.473510833333333,12.947354749999999,2.127546666666667,1.888768,4.589425,0.9878199999999999,3.367566666666667,4.143445,4.864415,3.42722,1.122111111111111,2.2413333333333334,2.51134,1.57596,5.9564,0.9571,0.9571,3.9364866666666667,2.0699133333333335,1.8665733333333332,1.696425,3.485925,4.46902,1.92766,2.796505,3.585805,2.9521766666666664,2.991756666666667,2.038,6.38745,6.01655,3.676245,0.7701076923076923,3.896275,3.76379,0.9395454545454546,5.07375,3.3697666666666666,8.746066666666666,4.360745,4.797805,3.55265,1.4352475,2.997195,5.10655,4.632575,4.018785,3.777275,4.410365,3.379275,3.5429666666666666,3.5429666666666666,4.225805,2.728795,4.94287,1.594185,5.491917083333334,5.309375,1.613875,4.37601,1.04031,5.1844,4.15725,5.19595,4.693615,4.27251,2.58359,2.55175,4.44342,4.357645,5.10925,4.644735,1.9475025,2.270078,3.995585,2.00514,5.1156,2.92224,3.42201,7.636545,3.93627,4.773255,5.16635,3.906765,4.49438,8.139949999999999,3.630955,3.264885,10.18135,3.811015,0.6212192857142858,2.0937710805860807,5.20345,0.6393846666666666,4.84011,4.30374,5.07825,4.68611,3.386955,3.911315,4.681125,4.89392,2.3314475,0.7068442857142857,4.588405,4.420485,4.211465,4.24827,2.66437,4.46922,3.468635,0.662682,3.77764,4.098565,2.4397625,3.089306666666667,4.176655,2.1470325,5.33265,5.1311,4.0846975,0.87575625,3.238023333333333,5.4559125,5.4559125,8.8382,1.95011,0.858575,0.858575,24.038176666666665,2.685175,7.8296850000000004,0.34120750000000005,1.2552733333333335,2.9193466666666663,0.971201,3.66118,3.94944,2.3637225,2.3637225,4.563275,4.762225,3.49191,2.7182983333333333,2.7182983333333333,3.582,3.70665,4.28072,3.409333333333333,2.0576466666666664,2.473771666666667,4.078958,2.01033,3.55829,2.8356833333333333,2.7920525,2.7920525,3.8263,0.8424322222222221,2.4875433333333334,1.6071833333333334,3.533333333333333,2.9431100000000003,2.8080866666666666,2.6419433333333333,4.60223,2.310235,3.0149733333333333,5.487717,1.505706,2.221685,3.095425,2.658043333333333,4.203085,6.387011206349206,1.3756866666666667,3.721,2.30883,4.91909,6.31603,1.5448125,4.75456,5.204061333333333,3.180166285714286,4.5930333333333335,1.1102128571428571,1.6788699999999999,2.95999,3.6494647619047615,1.22014,2.4791375,1.6681775,1.6647760000000003,2.21209,3.4419640000000005,4.926894000000001,1.2384549999999999,1.4933714285714286,2.9443966666666666,12.485344999999999,4.532416666666666,2.65986,1.0963871428571428,2.539481904761905,1.0410285714285714,3.2005166666666667,3.7562583333333333,4.861795,3.33299,5.4728,1.511595,3.7828666666666666,4.01161,2.8229733333333336,3.92775,2.3072866666666667,1.0141133333333334,2.5543833333333335,2.6541333333333332,7.471993333333333,3.0913614285714286,2.440533333333333,0.711773,4.785566666666667,3.4009666666666667,1.12456,5.708089166666667,2.0501225,2.438223333333333,5.7446,1.3164444444444445,2.9467133333333333,1.0066363636363638,3.381066666666667,4.309415,3.00011,3.016156666666667,2.112303333333333,2.4417566666666666,4.391965,4.951065,5.36525,1.7868125,4.360205,3.925555,4.245636666666667,3.8373739999999996,2.439826666666667,4.093234,0.938614,2.8735004761904763,4.83764,2.637975,4.027095,1.42995,2.4877966666666667,1.9760300000000002,1.9760300000000002,7.064361666666667,3.0885599999999998,5.669225,3.4157800000000003,1.83716,2.761729523809524,4.455463333333333,5.261233333333333,8.522061666666666,4.749714666666666,2.66070375,2.0556,2.088744833333333,4.1347700000000005,3.762885,1.4483840000000001,2.02702,3.064915714285714,1.14044,3.1196333333333333,19.26814166666667,3.3859999999999997,2.9798299999999998,3.27648,2.924706666666667,2.9239599999999997,1.5818633333333334,3.08745,3.3364,2.7767133333333334,2.6016933333333334,5.666292666666667,2.39966,4.338039428571428,2.9293034285714286,2.3029594285714285,1.4033633333333333,3.8830444444444447,2.118335,4.2101,4.892665,3.913465,3.2255225,3.2828666666666666,2.5459633333333334,3.4211666666666667,3.3834999999999997,3.4952666666666663,3.3304533333333333,0.8273,5.1216,2.481605,3.500966666666667,2.877688333333333,2.04185,2.1852566666666666,2.1852566666666666,3.5263516666666668,2.08107,4.904175,4.3584,3.735525,4.67736,4.80221,4.7037825,4.7037825,3.993515,2.997063333333333,4.52133,2.78889,1.627978,3.5678,4.387895,4.0556,2.628075,3.83683,6.1649650000000005,3.806433333333333,6.278538345238095,2.778165,0.853626,0.853626,3.38715,4.734435,3.793215,3.4439019999999996,2.35309,1.7846433333333334,1.69353,2.8911700000000002,6.24862,1.47344,3.98587,3.710433333333333,3.881395,5.0278,5.3087,4.88173875,3.5075333333333334,2.36245,4.86917,3.923615,2.13171,1.084838,4.47809,2.849675,6.531841666666667,3.682166666666667,2.69722,3.384215,3.72512,3.59487,4.563385,3.05028,4.743875,4.50849,4.34924,3.612935,3.434825,3.74498,4.452195,2.63831,4.313595,3.40877,5.00115,0.6709188888888888,2.24269,1.80143,1.954115,1.8497575,2.70044,2.61558,1.80195,5.05955,5.39036,1.9589800000000002,4.843435,4.716565,2.50255,5.584711666666667,4.15674125,4.84334,4.98821,6.742205,2.121843333333333,2.9356899999999997,1.8697833333333334,2.6869899999999998,1.922365,1.725885,3.95704,3.554445,5.26035,1.016868888888889,3.11001,4.21727,2.1873775,5.3373,3.72465,2.53503,3.6733333333333333,3.3558,1.996195,1.8035225,2.695025,2.7653,3.2103,2.04281,3.4944571428571427,3.4944571428571427,3.509275,3.29555,19.963101904761903,1.3347666666666667,5.3920691666666665,2.1182925,1.96075,3.87027,4.09175,1.966875,3.75666,4.48983,1.3174933333333332,1.3174933333333332,1.1457233333333334,1.8260666666666667,2.3865666666666665,3.1044466666666666,4.610246666666667,3.35633,3.758433333333333,0.5297421052631579,3.513692105263158,1.9814666666666667,2.1031,4.5158275,3.36661,4.05988,3.56373,4.64078,4.40197,1.9832025,4.287395,5.821193333333333,2.208235,3.90265,5.03615,2.12356,4.43707,5.83665,1.4086542857142859,2.08674,3.6901333333333333,0.86918,3.05443,3.88744,4.82762,4.691415,2.657491388888889,8.054596666666667,2.9701466666666665,2.838103333333333,0.4473317647058823,4.3037,5.2178434523809525,2.9588869047619046,5.1524,3.764895,2.5914757777777777,1.7724419999999999,5.929624499999999,4.397355,4.351675,2.51695,2.12612,4.03224,4.069233333333334,3.0688566666666666,2.072915,4.30319,6.9744225,2.71032,3.773465,3.516745,4.168245,1.4562428571428572,1.4562428571428572,3.050073333333333,3.027066666666667,4.45715,4.912415,6.3269,4.03857,2.8835,2.150005,1.5241300000000002,1.4469285714285716,5.07665,5.70908,5.2172,5.8055,4.704265,6.669605000000001,3.97751,2.7995566666666662,4.140946,2.3619533333333336,3.05752825,1.602468,4.553525,2.332613333333333,4.170005,5.14995,4.151815,2.73816,2.9746,1.571042857142857,2.542325,3.7467333333333332,2.0945775,0.5876375,3.4352,2.6893,2.9259533333333336,2.29534,2.0516175,1.75918,0.7264463636363637,0.7264463636363637,3.496966666666667,2.099225,2.42505,4.283105,5.79875,4.48092,5.33215,4.25981,4.1962,2.4268153333333333,1.2603600000000001,2.51366,3.746315,0.88061,3.449735,2.91075,2.9249,2.09743,4.103405,3.261865,2.0301766666666667,1.2801285714285715,3.915205,8.524055,3.761215,1.6993157142857145,4.73798,4.01305,3.08637,3.36386,2.766545,1.72021,1.0514475,3.83558,2.3757908333333333,2.134576666666667,1.64251,2.415903333333333,2.29341,2.4926533333333336,2.8403825,1.2432933333333334,2.2036866666666666,1.738355,6.7224325,5.74345,4.93631,4.057435,3.72107,3.0476533333333333,1.6909541025641026,4.42816,4.717135,2.591095,5.08955,2.056695,4.47396,1.130377777777778,4.314845,3.849905,1.8429975,7.58328,3.468695,1.8875075,2.0766725,1.864075,2.6158,3.3801666666666663,1.319577077922078,3.001913333333333,5.535,4.31146,4.56277,5.84435,5.60065,5.36905,0.88175125,4.425135,4.608095,4.2557,5.03955,4.181651666666667,4.72753,4.836625,2.84494,1.4328333333333332,1.4328333333333332,5.2327,5.795786666666667,2.80687,3.02258,4.13132,4.49841,1.59787,4.223225,4.66071,3.74084,3.87932,2.9282066666666666,2.853403333333333,4.959655,2.4477575,11.000263383058119,1.9962900000000001,0.9562125,2.5861233333333336,1.700195,2.4014125,2.233275,1.9086480000000001,2.9107333333333334,5.081,5.3139,2.9765200000000003,1.5944183333333333,6.2774225,1.34881,3.252416666666667,0.517852380952381,4.007233333333334,5.6021,3.663795,4.697605,12.2201,5.5745,3.1553766666666667,3.157723333333333,5.4666,3.144246666666667,5.1513,1.14709625,1.517295,0.7588036363636363,5.66595,4.0185,1.8573419999999998,4.789476,5.07095,6.43575,4.61978,5.4043,4.5084,6.09755,3.92387,5.28445,4.644465,1.6662500000000002,4.794165,5.44615,3.33602,4.019825,3.727205,2.68744,1.1759,4.806365,3.944295,1.2964125,3.4972666666666665,3.0767133333333336,2.486756666666667,2.63966,2.409733333333333,2.7713933333333336,0.7259872727272727,3.28242,2.71803,2.7182566666666665,2.7734533333333338,3.0438466666666666,1.848945,1.5153533333333333,2.4972475,2.2005075,2.3348675,3.3553333333333337,3.037796666666667,0.669025,2.671996666666667,3.43692,5.0116,2.33276,3.978075,5.318,5.46725,3.26194,3.987715,1.4482,3.87836,2.743877777777778,4.141278333333333,3.0524725,4.54794,5.0823,5.09975,4.0516,4.118933333333334,0.9486000000000001,0.9486000000000001,2.190173653846154,1.6105175,4.197235,2.56706,2.56706,5.12175,6.0184,3.1078,1.2157983333333333,1.6331285714285715,5.81635,3.569235,3.2729466666666664,3.229145,2.836085,3.12603,3.2729466666666664,4.8262625,3.246615,3.2605408333333337,2.823995,1.99878,2.928735,6.3586,2.66109,3.910155,3.96536,6.3492,5.97895,6.397875,6.397875,5.6625,4.63493,0.4786507692307692,5.4005,5.35725,2.86573,2.823655,9.361933333333333,2.938876666666667,5.03335,3.803065,3.535,5.4276,2.7083,3.165725,2.9458133333333336,3.241353333333333,2.518893333333333,1.5830899999999999,1.5830899999999999,3.6073,3.743145,4.535525,1.794442,1.8179459999999998,48.79076579545455,2.5249200000000003,0.8407745454545453,3.249233333333333,1.9175325,3.4124,2.8167233333333335,3.2353966666666665,3.171965,3.0417733333333334,2.1178433333333335,0.99795625,5.0917,3.19693,3.484835,3.960075,5.33375,5.1581,5.25055,5.34735,5.5936,4.927715,5.65255,6.50181,5.05705,5.3469,2.0640525,3.871525,6.57085,5.3987,3.661575,3.643505,3.43258,2.534405,3.89954,4.64688,3.10449,3.9212666666666665,1.6124680000000002,3.569385,1.3265639999999999,3.206815,3.807825,3.61474,6.750715,4.302515,2.224505,4.101195,4.07986,3.894945,0.99684375,2.74877,3.63305,4.6276995238095235,1.12039,4.708435,1.4064525,6.4941,0.70582,4.00423,10.275574166666665,4.35079,3.84821,3.823135,1.8387666666666667,4.287535,5.55215,3.0938466666666664,4.46663,9.260695555555555,3.445266666666667,2.37779,2.7523133333333334,2.88143,2.9231133333333332,2.757204333333333,2.4539066666666667,2.5702766666666665,2.9585166666666667,2.8508033333333334,2.8860799999999998,3.460925,2.2840666666666665,1.55528,4.396798666666667,3.2895133333333333,2.57438,5.011459333333333,2.8162266666666667,1.2194325,2.3262325,2.8507200000000004,5.4383542857142855,2.817775,2.2936338888888885,2.2936338888888885,1.6141775,1.44845,2.13728,1.853112,6.040075,4.3294175,2.5186,3.06292,3.608966666666667,2.0478375,0.5272775,2.67193,1.859315,0.5386507692307693,3.722555,2.5723,2.42379,3.629445,3.9380591666666662,2.6278133333333336,1.8441733333333332,1.2792116666666666,1.995135,3.43214,3.7333,4.4320275,3.1542066666666666,4.170905,3.838735,1.1282454545454546,10.24953,2.793365,3.30116,1.2860375,2.71431,2.2947625,2.2947625,2.2947625,4.756775,5.86575,1.87261,4.89744,1.39339,5.855923333333333,1.613868,4.092055,4.189475,4.172985,4.3922,5.0093,1.796185,8.7128675,3.90191,5.15145,3.40027,4.26441,3.18378,3.1140566666666665,4.06863,2.8041866666666664,4.504397142857143,4.725516666666667,1.7225675,3.90242,1.7225675,3.532845,4.511089999999999,5.099635,4.511089999999999,1.7910233333333334,5.89785,5.1608,4.59289,2.8480733333333332,3.02257,4.39355,3.08684,4.765685,0.5532885714285715,3.2532,3.12476,5.173145833333333,4.63739,2.515475,4.464345,6.735745,3.96348,3.24913,2.87827,2.31242,3.907815,4.38556,4.77738,2.497945,3.936855,0.8975580000000001,4.864885,3.490615,4.20246,3.001936666666667,3.09125,2.2645866666666667,3.2485766666666667,2.804126666666667,2.7275066666666667,3.681045,2.461795,2.461795,4.366765,3.33247,4.5806,11.6326,0.9708533333333332,4.35145,2.48232,2.2718633333333336,2.89176,1.41,7.626945,3.5368999999999997,4.19484,3.9487116666666666,2.784596666666667,3.702833333333333,4.877179972222223,2.67202,0.5030394444444445,1.7566780000000002,1.5653725,4.87326,2.744345,3.265635,3.8446516666666666,3.5015158333333334,2.533045,4.589225,4.428915,4.191655,4.675725,2.12247,4.199385,2.5162366666666665,5.67075,3.11725,5.31665,4.57877,4.48277,4.40288,1.86107,3.869515,3.630165,2.8057766666666666,4.249265,3.0799,3.181835,4.235475,3.819295,2.8529133333333334,4.640225,1.7781333333333331,3.922465,2.795765,4.70685,4.767765,4.172685,5.08605,2.619245,4.41383,4.02386,4.071865,2.6854833333333334,2.14163,2.91308,2.236155,0.8324283333333334,4.953455,2.054715,3.4749,2.686175,4.245685,3.45284,2.99435,3.62465,3.763085,4.705421333333334,4.27117,3.055055,1.3265733333333334,3.70324,2.622505,0.8678744444444445,5.0064,9.83507,3.40415,3.631885,4.66655,4.99254,3.783655,1.99644,4.04269,3.929095,3.16154,3.210445,3.438605,0.6401375,1.296452857142857,6.299367500000001,1.5885775,2.61555,5.455054,2.45173,2.281555,2.5925,7.43801,2.887295,4.161865,3.815735,0.7508777777777778,3.404875,2.69014,3.79272,4.360145,6.12031,0.726997,3.299835,8.42431,3.17928,1.2915022222222223,5.499465,4.68406,5.76955,4.309975,4.806625,3.477915,2.8131500000000003,7.739835,0.8882070000000001,3.441265,4.14866,3.18727,4.026585,2.198725,4.307105,1.5883383333333334,4.37856,4.24831,4.11884,1.6696075,4.91334,4.930625,2.3561525,2.112225,2.5403,1.12456,4.02794,3.5748165,1.7605119999999999,8.59254,5.6976,4.69595,4.4198,3.433285,4.304245,1.3911628571428571,4.55372,4.01185,5.1159,3.732675,2.4100266666666665,6.502711623931624,1.02274,1.02274,2.51635,0.9088485714285713,4.3315,3.2231166666666664,1.0199575,1.6441999999999999,0.5259766666666666,6.608572499999999,0.9735025,2.826945,3.950955,4.02134,4.318015,4.400025,5.3183,5.4484525,2.900155,3.170495,2.39066,4.618115,4.84358,4.349635,3.975775,4.07654,6.773,4.44618,4.4002711111111115,6.547575999999999,3.604465,4.7982875,2.206645,4.7982875,6.83997,42.301791028138524,3.6256,3.38259,3.1244633333333334,4.340205,4.298755,3.315125,3.445765,3.793495,4.186445,4.31154,1.69635,5.2035,2.51955,4.342955,5.1182,4.891825,2.37933,4.57203,3.841795,4.34177,1.474734,0.6692023076923077,1.747964,3.738433333333333,3.09268,1.3700125,3.1787566666666667,2.7560933333333337,2.8715666666666664,3.347566666666667,3.0300499999999997,1.46068,2.8281333333333336,3.8106666666666666,1.8957837323037323,2.92667,3.2494140000000002,2.784003333333333,2.705486666666667,3.376333333333333,1.1516777777777778,5.04945,3.989725,1.2010233333333333,1.2010233333333333,1.2010233333333333,1.2010233333333333,2.8488024242424244,1.9607033333333332,2.34823,3.43065,4.59138,4.787015,4.900355,4.689195,5.86145,4.71263,2.35005,6.08315,3.718575,2.650705,4.28743,3.8555,4.330665,4.33896,0.7944846153846155,1.3886871428571428,1.6024166666666666,4.57762,4.41439,3.99071,4.12305,6.169815,2.2700299999999998,4.57867,1.64997,4.366025,5.1221,1.5545466666666667,5.8057,0.7765191666666666,4.677205,1.346272,1.311975,3.83117,4.744635,5.30035,5.81265,6.06385,3.806795,1.53108,4.348165,1.4481325,3.55879,3.967645,2.5914757777777777,1.7636525,3.894925,1.33178,3.48737,4.799325,2.9253533333333333,5.81815,124.00099696645022,0.4747233333333333,5.2045,2.66837,4.75715,4.26629,2.77496,1.54784,0.3779757142857143,3.048995,3.68545,5.56085,2.911195,4.00717,4.482545,4.49173,4.524665,7.549643333333334,0.6844611111111111,3.082215,0.96964125,12.06862,3.09236,3.60773,0.9708899999999999,2.28166,2.669075,2.15415,3.0644333333333336,3.4014333333333333,2.37303,4.77671,2.7965433333333336,2.3168,2.184203333333333,4.9469,3.028955,3.094495,3.589645,3.75503,3.364195,2.3149133333333336,3.864645,3.51942,3.063435,1.1979,2.5635533333333336,4.77671,4.75261,5.4688,4.08591,5.6699,1.84384,10.464749999999999,3.009155,2.728885,3.91148,5.445,0.572496,0.572496,4.33909,4.33909,4.1085,3.7474666666666665,1.7635986363636365,0.6255375,2.928045,4.494225,4.35352,5.089,4.113875,5.34138,4.645885,2.3666175,4.625225,2.2302525,2.69265,5.196108333333333,1.68862,2.20658,0.5017128571428572,2.098630857142857,2.098630857142857,1.862605,4.930065,4.375575,5.395,6.355395,3.71235,3.141995,1.912855,2.344335,4.045001666666667,3.85545,5.3147866666666665,2.370165,5.3147866666666665,5.29505,3.500415,5.9039,3.706505,2.42206,2.047896666666667,2.8937333333333335,1.4652375,1.4235775,1.5188175,1.87427,1.6047175,2.03576,3.6161,4.62756,2.654295,6.4657,3.0687333333333338,4.431965,2.999125,4.17208,3.0839366666666668,3.1339400000000004,6.554846666666666,3.6666333333333334,4.716614666666667,3.159876666666667,1.2825175,2.574543333333333,2.5744866666666666,2.4558666666666666,5.7396,4.2758125,5.0833,12.652482505928283,0.6951725,2.0135715000000003,2.3422525,1.6965420000000002,1.3151457142857144,2.62685,2.59925,2.5573,2.4396925,0.7356676923076922,1.935345,0.5229521052631579,5.17065,2.024505,4.554405,4.815915,2.49857,5.91287,4.40599,8.72845,4.013975,2.91961,3.2351,4.96822,4.59925,2.7504688571428573,4.680865,2.2762925,2.2762925,5.1962,3.80944,4.63071,4.060655,3.2413833333333333,4.030975,5.0578,4.708975,4.588425,4.222245,4.285715,4.469755,2.59492,5.0373,1.2865216666666666,4.785725,4.66791,2.4582433333333333,2.5907833333333334,4.489335,1.4670483333333333,4.75749,1.8417125,5.830895181159421,4.08268,4.010365,1.5641733333333334,3.116695,3.116695,12.12246,3.82068,4.92441,1.08573875,4.422161,2.43646,1.4535875,2.24299,1.8169575,2.1821175,1.86477,3.53612,6.19755,1.751905,5.1048,4.733340833333333,5.3078,2.2107425,2.332585,4.16379,4.37489,5.3777,3.92987,7.35572,3.287653333333333,2.942486666666667,0.39087666666666665,3.78455,3.928315,3.393333333333333,6.522678333333333,2.5992133333333336,3.224513333333333,1.2247700000000001,1.4801916666666666,0.5876375,1.7566780000000002,2.985475,1.51629,1.6852,0.67639375,1.374336,4.54453,2.3915275,0.6129846153846154,1.6462050000000001,1.7003125,1.747662,1.2795416666666666,2.0322675,1.4801916666666666,2.2917925,1.374336,1.374336,0.6129846153846154,1.6079142857142856,2.5327,1.22014,2.794275,0.6129846153846154,2.6845,2.5327,1.3197750000000001,1.3197750000000001,1.3197750000000001,1.8815380000000002,1.22768375,0.6129846153846154,1.046624,1.19254125,1.0224655555555555,1.952092,2.634675,0.8818916666666667,2.148005,1.6118857142857144,0.6129846153846154,1.7357220000000002,1.4801916666666666,1.9490333333333334,2.0663,0.930347,1.9490333333333334,1.05225,2.3561525,2.3603225,2.5693,1.19254125,2.1116599999999996,1.33178,1.33178,0.9265818181818181,0.9265818181818181,0.9265818181818181,1.2247700000000001,1.4801916666666666,1.6118857142857144,1.6462050000000001,0.8565628571428572,2.0663,1.31355,1.846486,1.9066500000000002,1.2247700000000001,2.65986,12.497652500000001,0.67639375,2.55816,1.9250166666666668,2.6691,1.0410285714285714,1.0410285714285714,0.6129846153846154,1.3693444444444445,1.75918,1.6118857142857144,1.778002,2.0663,1.2352444444444446,1.2352444444444446,1.7149999999999999,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,3.385733333333333,1.05225,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.19334194444444444,0.4015322727272727,55.89837496753247,1.500945,1.5248100000000002,1.6118857142857144,1.9250166666666668,0.8565628571428572,0.6367764705882353,0.711773,0.711773,0.711773,0.711773,4.4219,16.28871875,3.3991333333333333,0.6323927272727272,1.6084520000000002,1.6084520000000002,1.6084520000000002,0.6323927272727272,2.985475,0.6129846153846154,1.7357220000000002,1.6852,2.4972000000000003,1.05225,2.515475,1.05225,1.572252,1.572252,2.13555,2.13555,0.6129846153846154,2.2652799999999997,2.2652799999999997,0.9605727272727272,0.19334194444444444,2.985475,1.665045,2.30883,0.6323927272727272,0.6323927272727272,0.6323927272727272,0.6323927272727272,0.6323927272727272,1.9250166666666668,0.4015322727272727,1.05225,2.348035,2.348035,2.55175,3.1277000000000004,0.6497904761904761,0.6497904761904761,3.3401666666666667,4.1193333333333335,1.2169899999999998,3.3152866666666667,1.07931,2.4798175,1.95011,1.098145,3.26186,1.87795,3.238023333333333,5.43775,2.483005,1.2362666666666666,4.226175,4.39768,2.676273333333333,1.722962,2.398541153846154,4.451775,1.6337269444444444,2.7114366666666663,3.0359533333333335,3.2152966666666667,2.36328,6.229946666666667,4.450885,0.19334194444444444,3.137,5.182,4.121345,4.62594,4.499395,4.52767,2.7575833333333333,1.750588,3.725885,4.54118,4.399895,4.74549,5.23835,3.36036,0.7020991666666667,6.709485000000001,1.4194666666666667,3.15898,4.958475,2.5377,2.5377,0.7981718181818181,1.7636525,3.90833,3.12664,4.775295,4.32173,4.704285,5.17845,1.0353214285714285,4.8282,5.2395,7.184231736111111,2.2901366666666667,4.324165,4.26313,3.953085,4.798535,4.273345,4.307625,5.628195,5.19995,4.646018333333333,3.883965,4.226866666666667,7.732429000000001,1.8126775,1.898761794871795,2.85714,1.72867,2.633503333333333,1.9874333333333334,5.21585,3.6540666666666666,5.583,1.9581659999999999,4.875425,3.916855,3.57996,4.33487,3.829995,2.4856133333333332,2.736943333333333,2.7356,2.868486666666667,2.526596666666667,1.6879833333333334,2.6988333333333334,2.9242399999999997,2.56236,2.56236,4.47032,2.91161,1.9595866666666666,3.12651,2.3970766666666665,2.458056666666667,2.7445133333333334,2.685173333333333,3.0608133333333334,5.30115,4.80542,4.69419,3.83087,3.83087,4.312715,3.26042,4.37841,4.38054,3.81648,3.458595,3.31741,7.59051,2.0949275,1.91459,3.31348,3.12036,1.4982833333333332,1.4982833333333332,3.48794,1.744825,4.129297333333334,3.537315,3.36829,2.1633115,2.2432340833333333,0.5261233333333334,2.990435,3.98623,2.308725,2.45015,4.33,1.20651,5.11445,1.1829766666666666,0.3899392857142857,0.5272532142857143,21.83062742857143,0.5272532142857143,0.3899392857142857,0.6645671428571429,11.141076666666667,3.2123266666666663,4.096585,4.556275,3.4694374999999997,3.078835,4.433387857142858,2.21122,2.39316,3.293065,3.04405,4.16441,4.983605,3.525785,2.31273,3.11186,3.628595,3.94058,3.067205,1.0839159999999999,1.0839159999999999,1.0839159999999999,1.0839159999999999,3.36979,2.83038,3.21603,1.62582,1.214545,2.393025,3.51076,3.623865,2.762495,2.978145,2.501145,2.5697241666666666,3.862355,4.197545,1.1585349999999999,2.8478433333333335,1.09998,2.820373333333333,2.3538099999999997,3.650733333333333,5.1411,2.449073333333333,3.98134,4.029186666666667,0.7829647619047619,0.19513142857142857,0.19513142857142857,0.5878333333333333,0.19513142857142857,0.19513142857142857,0.19513142857142857,0.5878333333333333,4.47909,7.34135,3.43705,0.54615875,3.762545,7.42526,3.35141,3.31001,1.1328316666666667,4.822545,5.5405,4.415495,4.76487,1.6553239999999998,4.95405,2.1821433333333333,2.323628666666667,3.958545,5.5401,0.8035228571428572,0.8035228571428572,3.5852,2.93322,2.450095,3.31605,2.785825,6.19455,3.297655,5.85255,5.8168,5.964,2.15011,1.6147,4.280655,3.43134,2.09557,3.57398,3.35588,1.8545375,1.1404616666666667,3.923335,3.442655,4.98341,6.281083333333333,1.6060466666666666,3.914055,1.1111133333333334,2.496356666666667,3.62488,4.32679,0.4523614285714285,4.156355,4.44299,0.972795,2.7558166666666666,7.847386666666667,5.6161,2.04801,6.117871999999999,4.674015,3.7561,1.3629633333333333,5.532206666666667,2.97311,3.17623,3.6112333333333333,1.7352633333333334,1.7352633333333334,6.218875000000001,6.218875000000001,3.609432142857143,3.609432142857143,9.91371,3.609432142857143,3.609432142857143,4.271783253968254,6.64805,4.20046,3.5715916666666665,2.988496666666667,5.27975,4.3056,3.2222866666666667,3.07503,4.68406,3.3501999999999996,2.6394266666666666,3.0534833333333338,2.3087266666666664,2.626695,5.10065,7.934419999999999,6.9061275,4.818615,3.723815,3.97584,6.474316,5.65775,3.92832,4.241035,4.41921,2.36858,2.083335,1.972695,5.6467,5.39145,4.6876675,4.271075,2.27839,2.65499,7.107585,1.8815380000000002,2.54413,3.2955799999999997,3.2955799999999997,3.18901,5.30595,0.8330933333333334,3.5544,3.881995,2.8627233333333333,10.431075,4.25105,2.8600166666666667,2.499286666666667,5.76055,5.74345,3.056845,5.4975,2.66481,4.47751,2.9680808571428567,4.519255,5.34615,4.68849,1.0275216666666667,3.6185666666666667,1.0935875,2.4571666666666667,5.1229697352941175,7.932076666666667,2.64634,3.2842599999999997,7.584479999999999,1.789134,4.65073,5.6373,3.523605,3.699185,2.2032266666666667,4.798815,2.47730625,0.48303769230769233,5.30915,3.208115,3.5576333333333334,5.1571,5.0888,5.2161,6.8962825,4.744575,5.34645,7.3612975,55.14091666666667,4.62859,3.899435,4.68714,5.92875,4.446225,5.0443,3.911545,4.77373,1.9018825,3.991825,4.493275,4.50311,2.42801,4.94646,3.5952,1.6501180000000002,5.67465,6.57535,7.051488333333333,5.56625,3.258075,4.808015,3.23319,3.155535,3.69008,4.271405,3.742545,6.80731,2.695575,1.0636942857142857,2.3710324999999997,0.548934,0.548934,3.46059,0.548934,2.591935642857143,2.591935642857143,3.2121596428571424,4.4646135,4.959608142857142,2.3710324999999997,5.0939775,2.863725,1.39402,5.502,2.12384,7.678872,5.91943,11.717224,3.5202333333333335,2.813406666666667,0.25045333333333336,1.7937773333333333,2.4241333333333333,0.91522,1.66446,2.933123333333333,2.15496,2.865,0.674129,28.4623,1.9803525,0.7611176923076923,2.641383333333333,2.641383333333333,0.423975,1.6822675,3.19337,1.2429075,1.9814,1.646115,4.426765,2.820945,2.1548133333333332,2.3615933333333334,1.1223466666666666,2.12519,1.629755,5.636432166666667,4.121605,6.812099166666667,2.48633,3.3567,0.9618516666666667,2.64752,5.0411,6.039020000000001,2.97519,2.2783,5.176224166666667,1.9500875,2.664073333333333,4.39553,0.9791,3.7875666666666667,2.4291,5.9003,5.45505,6.3484,3.5148,4.370315,4.370315,5.32855,1.836335,5.55515,2.8517766666666664,1.7867225,4.45154,4.660985,5.8076945,4.248205,2.93896,3.11454,2.64443,1.2119814285714285,5.1534,0.975225,5.62752,4.950495,7.637368,4.499215,4.342515,4.22042,8.434756666666665,4.3107,5.13035,1.1484999999999999,0.7359214285714285,4.91507,4.818685,2.230605,3.09197,3.70155,4.191365,2.14303,4.72073,2.6152333333333333,5.39215,5.38815,5.03245,4.62359,4.798595,2.8441,6.9367145,3.403675,4.34154,3.358145,3.980415,5.993927023809524,0.5806607142857143,3.8320000000000003,1.6679433333333333,0.6333677777777778,4.42595,3.893425,1.10853,1.938775,6.00405,3.79562,2.20746,2.76923,2.5879733333333332,5.0967,4.167095,1.7701766666666665,4.17485,2.5358266666666665,3.4844000000000004,4.613525,5.00595,3.1648433333333337,3.857466666666667,3.797333333333333,1.919518,7.30544,5.0104,4.841085,5.01695,2.295255,4.31424,4.643755,3.008735,3.89915,10.717880000000001,3.720085,4.9325616666666665,4.612255,4.636595,2.297665,4.14701,4.267675,4.726895,3.274266666666667,4.115005,1.61256,2.9428433333333337,3.30198,3.61426,5.1066,1.8795819999999999,3.811185,3.0764033333333334,5.21685,2.9993833333333337,2.10804,3.839395,4.44926,1.03555375,2.89727,2.6717433333333336,4.491474,1.71526,1.7753533333333333,1.341745,4.71019,5.4294,5.4824575,3.6980174999999997,3.370235,2.375995,2.13002,1.97047,1.4812133333333335,5.43505,3.144375,1.79403,0.9200692307692309,21.094124583333333,3.156025,3.280096666666667,4.403998333333334,4.294133333333333,1.3853133333333334,2.8017166666666666,3.0396722727272727,1.213114,1.8337866666666667,4.083835,5.21005,3.790535,3.369905,5.36515,4.83252,7.412694999999999,5.0662875,4.721385,3.65116,2.80817,3.93535,4.02102,3.699866666666667,4.487235,2.0037575,5.3023,9.22177,3.599645,2.88207,4.68889,0.55959375,3.344633333333333,2.03442,2.4094825,4.218375,3.22193,4.91929,4.000485,2.826785,2.26817,1.602555,1.338568,1.4141966666666665,1.1375433333333334,4.063355,3.919635,4.738675,4.74446,7.3481,2.6539699999999997,1.37734,2.3605966666666665,7.797583333333334,3.34768,2.87605,3.177005,4.91503,3.731765,3.75716,1.637002,4.42406,5.00885,4.140025,3.97995,3.704725,4.4062,4.91032,4.20126,4.474815,3.58908,2.090155,3.21473,3.330915,5.24735,2.740545,4.3786700000000005,4.20374,2.899345,2.7464,2.2491333333333334,2.27537,2.7954273333333335,2.7954273333333335,1.9533666666666667,2.7378133333333334,2.26227,2.37177,1.95238,4.0327,2.36126,2.9049366666666665,2.8918133333333333,1.6747433333333335,4.29076,2.91103,3.82508,2.880186666666667,5.21565,5.29385,5.0331875,2.663375,2.082285,2.888125,2.15692,2.02718,2.783955,1.9920325,2.4972875,2.578425,6.741555333333333,4.2219075,3.66753,0.6394,4.561035,4.10313,4.14537,3.418705,3.940525,3.627625833333333,6.11155,4.498415,3.54118,2.797435357142857,2.2432482222222223,2.4614000000000003,1.707976,1.7393740000000002,1.531258,2.0967,1.93711,1.3366916666666666,4.14121,0.6129846153846154,0.5380622222222222,2.1162199999999998,1.4950616666666667,1.470124,1.5047366666666668,2.326371515151515,1.5015,1.713492,0.58153875,172.8764774026823,0.42672066666666664,2.12518,1.03633,1.2171125,2.0982875,1.4948725,2.045095,2.6668233333333333,2.12883,6.9625,3.2115,3.650044761904762,1.8252266666666666,3.164325,1.319,1.319,5.8452875,0.504965,2.2450975,3.3843333333333336,3.0449533333333334,0.7866263636363636,0.6643470588235294,1.2704155384615385,1.1147454545454545,2.534,3.829165,2.09586,2.09292,2.319453333333333,4.884226611111111,1.0683877777777777,4.525445,3.601545,3.515365,6.83513,1.7660166666666666,2.410965,2.634285,3.996366,2.174315,3.179035,3.10271,3.25835,4.41268,2.90909,5.88835,2.461195,2.54071,3.46064,1.55945,2.901715,3.05752,2.66737,1.87514,1.57618,2.206705,4.287075,5.513973333333333,2.6875,2.904635,1.290185,4.323135,3.493133333333333,4.105766666666667,2.804745,25.256307183760686,2.247692,2.7010633333333334,3.258036666666667,3.3255966666666663,3.222936666666667,5.880046666666667,3.13973,2.474956666666667,3.5071,3.4112333333333336,2.139413333333333,3.2538633333333333,3.3222766666666668,3.1550333333333334,1.6727333333333334,1.6789565,0.586834,2.23882,2.1484675,0.21271,2.43377,2.934495,0.21271,0.21271,2.1032933333333337,0.21271,0.21271,0.21271,0.21271,2.8926266666666667,2.6938333333333335,0.5636553846153846,3.4096021428571426,1.6053525,1.951774,5.1677,4.5411375,6.225759999999999,2.130645,5.0519,2.1300475,2.868,1.2619228571428571,5.780086666666666,2.7745766666666665,6.0164875,0.9097333333333334,1.3261225,4.931845,4.65384,35.99002693609169,1.685336,1.3459233333333334,2.33334,2.35959,0.9265818181818181,2.39273,2.323296666666667,2.9124766666666666,1.9888266666666665,2.4611666666666667,1.6801283333333332,3.0859900000000002,2.3818033333333335,2.3178533333333333,2.5573099999999998,2.4948366666666666,4.392175,3.2150200000000004,1.1944085714285715,3.92621,4.12267,20.24564572222222,2.9646866666666667,3.3823333333333334,2.57246,0.802814,3.051652,1.6106828888888889,3.051652,2.3971633333333333,2.45627,3.017943333333333,1.8103975,2.007375,4.53987,3.999345,5.41425,4.29038,1.85732,5.12925,1.6643875,4.823895,4.0950851904761905,5.4207,0.7413527272727273,2.17188,2.191,2.857514,3.395985,1.07171375,4.045255,2.075,1.9415733333333334,1.028886,1.028886,2.89385,3.6120666666666668,4.527675,29.107969583333333,6.211774999999999,1.8826166666666666,3.5221266666666664,0.3715213333333333,6.600515,5.14585,2.88973,3.261895,5.7590525,4.208965,1.20692,4.467565,1.264038,4.21927,4.748525,5.3628,2.28422,3.10395,4.45285,2.453595,3.4877075,4.39998,1.2830333333333332,2.8879183333333334,4.15398,4.8733325,2.714786666666667,3.0803233333333337,3.0326,3.56186,3.99179,4.173755,4.1286,1.657105,6.30019,2.55211,1.761556,4.125145,5.56755,4.13941,3.569505,0.9127275,2.93689,3.42566,2.194685,4.693693666666666,2.73402,3.863205,2.8685766666666663,3.1278433333333333,2.958745,3.2472600000000003,3.2012033333333334,3.0810333333333335,4.678325,4.88396,4.93681,1.784885,4.073885,4.254025,1.893485,1.766335,1.6634275,3.9388916666666667,4.61451,5.555218958333334,3.980185,3.635033333333333,3.74155,3.4585000000000004,1.4944183333333332,3.13371,3.02372,3.757225,4.67084,4.67166,4.53628,2.800645,1.930525,1.561615,1.472505,3.500215,2.33602,2.126715,3.31052,4.74204,1.527915,5.35975,1.3923971428571427,1.7206375,3.27799,3.2563,3.019405,3.55297,2.936915,1.549505,0.9848115789473684,3.05603,4.189816666666666,4.522515,8.409121666666667,2.22589,3.2718433333333334,1.5291233333333334,2.738853333333333,2.8631966666666666,1.28254,3.0478366666666665,2.7981833333333337,3.1034400000000004,4.146866666666667,3.2568466666666667,7.311276666666667,3.185416666666667,0.7547063636363636,2.02343,3.30159,3.29677,3.410275,3.6179666666666663,2.67001,3.690935,2.804685,1.9498592857142856,3.87915,3.0203,4.07949,2.2499766666666665,4.848295,4.85253,4.73643,3.897095,3.727705,1.2174333333333331,4.978295,3.2290466666666666,2.986603333333333,4.62238,2.780936666666667,3.026206666666667,0.39714714285714287,0.39714714285714287,4.00674,5.52885,6.6447,3.29347,4.54306,3.69705,3.37614,5.1868,4.27454,1.02248375,4.126315,2.581323333333333,4.5412300000000005,2.960176666666667,3.017011666666667,1.7167933333333334,3.2285107142857146,2.5083033333333336,2.7791200000000003,2.6475933333333335,2.87129,1.9357433333333331,24.130831147233202,5.49695,4.46319,4.017795,3.3097,5.0270275,3.96289,4.58294,4.637515,3.79955,3.606345,4.00638,2.783466666666667,3.0667000000000004,3.271266666666667,3.070498333333333,2.7613333333333334,4.245755,3.460215,4.711685,5.2017,4.52703,1.314084,1.6928860000000001,1.6928860000000001,4.47808,3.95524,2.61089,2.2634766666666666,2.96024,4.50983,3.543555,7.891796666666667,3.1063566666666667,3.285076666666667,3.393526666666667,4.933155,1.6102166666666669,6.2421875,2.5687666666666664,2.6123266666666667,1.732255,4.08079,3.273675,6.91787,3.321345,2.636375,4.24021,4.522584666666667,1.49176,2.66145,1.6973933333333333,8.129858500000001,4.17528,6.867006666666667,2.238635,3.94472,3.677875,3.989295,5.3812,3.3627000000000002,3.3627000000000002,2.1045775,4.371845,5.13975,2.492445,6.091777857142857,1.7420375,5.96725,9.227960000000001,3.4972333333333334,4.515333333333333,2.3345533333333335,1.96108,0.555290625,4.30627,2.572175,2.4664925,4.046113500000001,2.4119,2.5398733333333334,3.941045,5.65725,5.2099,4.606865,5.25005,4.153945,2.3032075,1.0747727272727272,2.91522,3.176895,2.8425433333333334,5.85355,4.0803,3.9658,2.804585,2.08674,4.437795,1.0065125,5.26795,1.0284888888888888,5.3584,3.23533,4.953955,4.922165,3.229115,3.28491,3.4761,3.0299333333333336,4.35389,3.44626,2.356205,4.688645,4.727655,6.733153333333333,4.309855,1.82457,3.747805,3.55308,5.419925,1.9688325,1.9688325,2.884453333333333,2.538676666666667,2.432636666666667,2.7238133333333336,0.8961539999999999,6.2974,3.965155,2.09892,2.235315,2.503765,3.625755,2.736545,3.80111,4.817675,5.2118,5.0508,6.31485,5.825,1.3728375,3.69015,1.1159666666666668,2.4398,4.3590333333333335,2.47485,2.955355,3.1794,4.58768,3.854385,0.4616378947368421,4.666555,4.222285,4.93241,3.31782,4.99764,5.5761,4.616965,4.08895,1.72974,4.66914,2.0651225,4.315633333333333,4.315633333333333,6.3231,5.19685,5.81735,5.00265,2.685485,1.6102166666666669,4.7996,2.1835566666666666,1.6309500000000001,1.906285,4.16092,4.22833,4.538805,7.88307,1.7688666666666668,5.62445,1.4048049999999999,3.262075,6.1312,2.0255875,4.95596,3.1098033333333333,4.84783,3.622675,4.457735,2.9555000000000002,4.225325,3.962755,6.079,4.15331,3.67221,3.8167,5.85095,3.940465,4.41155,3.5332,4.239755,7.3612633333333335,3.517665,7.13405,3.13893,5.1642,6.28642409090909,4.552085,3.54015,2.2679725,5.2323,3.926965,0.7937633333333333,8.38738,6.02145,5.27845,3.0505091666666666,5.12565,2.91378,1.722028,3.91194,1.1585349999999999,5.7679,3.127705,4.66735,5.4232,4.64839,4.049205,2.81657,4.38971,5.06225,1.42319,6.914305000000001,2.98958,3.91618,5.27845,4.048505,2.306265,4.352975,4.63077,4.513415,2.9216599999999997,4.425115,3.67776,5.5124,4.77271,3.446815,1.80203,1.80203,7.285326666666667,1.547057142857143,5.05105,4.37938,5.4051,3.511575,3.63635,4.7994,3.817935,0.8531833333333334,0.8531833333333334,0.8531833333333334,3.535935,2.95461,3.868635,4.694035777777778,2.817245,1.436655,4.97509,2.2106,2.652305,4.02094,5.2038,1.8087275,2.1821200000000003,5.8338,4.00628,2.811605,4.268435,1.602535,1.9820075,3.28858,2.8612,5.3002,1.413384,1.59564,1.09541375,4.05594,3.198775,2.9753833333333333,3.20002,5.57485,1.74342,2.083115,3.12293,1.6063857142857143,3.988785,3.808005,2.307675,5.63825,5.69155,2.907205,5.02475,4.059325,3.38427,3.464515,4.39749,3.578745,6.6835,5.30845,1.75521,1.7413833333333333,3.434335,4.515675,4.098275,4.224315,3.2481766666666663,4.16976,5.74565,5.08155,2.649966666666667,5.4313,4.123805,4.589155,8.0985075,5.6097,0.7015790909090909,4.187625,4.216654166666666,2.43316,4.148455,3.9243333333333332,5.70935,3.86353,3.937385,3.724095,4.652525,4.92981,4.455145,3.452935,3.85377,4.97256,4.127915,3.96963,2.825065,6.40702,4.888205,1.787068,3.030785,4.37859,3.74891,5.19815,4.6337,2.7383400000000004,0.8998277777777778,4.295827272727273,6.6211575,3.791735,4.87538,3.58839,7.726673333333334,4.341685,3.4659,2.7306899999999996,3.630455,1.91282,3.359405,4.323915,2.622938,4.25598,5.49885,1.3914825,5.1063,0.7215499999999999,5.96295,5.02565,6.06255,5.73015,1.5317533333333333,1.65153,4.650015,1.843285,5.0423,0.5380733333333333,6.30595,3.13004,1.5234619999999999,6.1254349999999995,6.7488,0.7990525,1.5939005000000002,1.21754,1.21754,1.21754,2.18764,5.29485,3.62879,4.992855,3.7508,5.4923,4.65221,1.962988,4.14452,5.35695,0.2973487804878049,3.871915,4.441535,4.979905,40.255000401515154,5.8616375000000005,5.3637,12.355129999999999,4.57912,4.322895,8.0358,3.164015,4.515105,4.1134,4.448385,10.273785,3.967635,2.7169566666666665,3.40142,5.0788,4.05805,3.910895,4.36144,2.50822,4.743065,3.84998,6.940434,4.71931,5.308,2.341645,4.14958,0.5276875,1.4175449999999998,3.911305,6.3036,2.859885,1.3717083333333333,1.3717083333333333,3.92853,3.84334,4.00715,3.02392,1.6750833333333333,3.63082,4.32145,1.8400225,3.1243233333333333,1.6447500000000002,2.2997566666666667,4.26129,4.471965,2.1146425,4.527,2.27046,2.130005,3.59124,3.669945,3.97401,3.68948,5.977114333333333,2.4391993333333333,3.740535,0.6660554545454546,0.6522275000000001,3.818215,2.091945,8.752906666666666,3.3991333333333333,5.1268,1.630445,4.419845,1.6296983333333335,4.496175,4.346005,2.8038600000000002,4.10567,5.49745,0.417709,0.417709,3.6811666666666665,3.1311699999999996,3.028923333333333,3.706105,3.6219,5.13775,0.943890909090909,10.323515,10.210415000000001,2.0322675,4.7904625,4.780875,5.2504,3.429855,2.5511266666666668,2.03984,2.0084675,9.6744175,2.1475675,2.7470733333333333,3.884228,4.726855,3.884228,2.589575,3.0720833333333335,3.1630766666666665,0.7539272727272728,5.392248333333333,3.3491,2.713286666666667,4.4007,8.72315,9.370845,4.381645,4.063825,4.63361,6.781805,1.96203,1.365925,27.0060825,3.347305,4.48248,0.95644,4.53494,4.211825,4.5863,4.804135,5.0889,5.65877,2.9374933333333337,2.03501,0.6953470588235294,0.7473583333333332,5.1062,4.728375,1.412615,4.611581666666666,0.8628083333333333,3.540233333333333,1.5113766666666668,4.2324,5.93335,1.78471,2.503055,2.530375,3.896645,2.986945,0.5532455555555555,4.0516,3.730495,2.73814,3.22228,5.3633,3.1263400000000003,4.45845,2.87325,4.897615,8.813586666666668,4.96152,7.07226,2.59945,2.60657,4.294915,4.6045375,4.55671,4.24184,3.70548,5.0099,1.258475,3.4751037499999997,3.3183645,0.780902,1.6928860000000001,1.6928860000000001,5.244,7.536276666666666,0.8491769230769232,4.695555,0.9473616666666667,3.0936233333333334,2.4408333333333334,2.620764318181818,6.672802222222222,2.677706666666667,1.1270222222222221,2.5178166666666666,1.23549125,2.1984533333333336,3.1566766666666664,3.020926666666667,3.329333333333333,2.553166666666667,0.9473616666666667,4.72273,4.75585,5.4328,2.72881,5.45095,2.1745799999999997,6.00505,4.874925,4.401435,2.967973333333333,3.52189,2.168995,1.57546,4.246715,2.734,4.51717,5.3875,1.679516,4.59578,2.762033333333333,6.508676666666667,3.4834,2.801155,0.9473616666666667,2.33378,4.25501,7.346016611111112,2.4383733333333333,1.700282,2.4383733333333333,0.43964916666666665,1.067966,3.510925,4.35685,1.8009475,3.52248,3.9334939999999996,0.577574,0.577574,0.577574,7.872345000000001,1.601228,0.7711372727272727,2.82236,41.744935251082254,1.8392591111111112,0.6623511111111111,3.0449675000000003,0.6623511111111111,3.73508,1.952645,2.381695,2.4683266666666666,5.52125,4.43142,4.535315,2.3382033333333334,0.8514742857142857,4.346475,3.189923333333333,5.27095,1.0088214285714285,2.86655,2.86655,3.833005,4.669355,4.35068,5.788413076923077,3.23972,4.884945,5.4394,1.8781379999999999,1.17960625,5.38195,6.4664,3.87277,0.669366,4.4716,4.187473333333333,0.923785,4.39356,2.43017,3.99499,4.700385,1.8518630303030303,1.8518630303030303,4.178265,3.36833,0.8870455555555555,2.98525,3.11379,3.66487,3.939295,4.46148,0.49516857142857146,0.27415529411764705,0.27415529411764705,0.27415529411764705,0.7693238655462185,0.625663076923077,0.688863,0.27415529411764705,0.27415529411764705,7.110275,0.27415529411764705,0.7693238655462185,3.57059,1.23456,4.54846,1.1554116666666667,0.59487,0.923785,2.589405,2.712775,4.13653,3.005495,0.27415529411764705,0.27415529411764705,4.240945,3.67571,4.487585,2.65965,3.965875,1.53424,3.843445,0.688863,0.688863,4.65789,3.869665,2.57928,2.752175,4.141543333333333,1.03777,0.8266153846153846,10.72903,1.311525,4.460555,4.726655,4.96957,2.05722,0.4160195652173913,0.89912125,2.93904,3.209415,3.223515,4.33677,1.472494,6.11815,3.67752,4.9115375,4.106155,3.0149633333333337,3.1602866666666665,6.383818333333334,2.8113966666666665,4.9805,4.18994,4.029186666666667,5.937849999999999,0.565904,4.350965,3.3277366666666666,2.13732,0.6769977777777778,4.24357,6.82535,2.670425,2.358355,2.336825,5.31345,2.81021,3.54967,0.9928000000000001,0.46098153846153844,3.996445,0.35795866666666665,0.7963290909090909,3.911185,3.36015,4.612435,2.69053,5.1323,4.14116,6.5784823333333335,3.8497,4.056195,4.68121,1.52671,5.045170000000001,1.9124860000000001,4.056385,2.58075,6.17525,2.677275,1.359054,4.728745,6.96134,6.726499166666667,3.26328,0.8570416666666666,2.75513,4.634615,3.8814,4.63037,4.600515,4.222685,4.737435,2.791245,4.10906,1.8043966666666666,2.199605,1.4929166666666667,3.978145,10.31015,3.71237,3.566745,5.8037,2.81462,4.35268,2.6613966666666666,3.056719666666667,3.314195,3.874155,3.59873,3.58334,3.491485,4.950015,5.8344,5.3202,4.66669,4.96732,4.99428,2.962225,5.49005,7.807925000000001,0.9010711111111112,4.863895,4.32774,4.79364,5.4009,5.30325,2.34151,8.520775,2.40584,3.548215,5.52435,3.71826,4.157195,2.17446,2.016625,2.81371,2.2839533333333333,1.92317,3.12539,4.636295,4.51551,4.033445,3.463055,4.8617,3.38236,3.07292,3.840855,5.29465,3.08625,5.735401333333333,4.44873,3.768905,3.69739,8.20549,3.98216,3.56113,4.41429,5.0735,3.898635,9.60848,1.3013833333333333,2.19299,3.83094,2.893776666666667,2.893776666666667,1.87424,8.231485000000001,0.924911111111111,3.125255,0.891725,2.083115,4.398095,4.50388,4.452885,4.170685,2.9148833333333335,3.33547,4.05767,3.76131,4.246315,3.158385,2.6865566666666667,4.39067,4.72966,3.988975,4.596715,1.72848,1.6419000000000001,2.60745,5.4921,2.3697425,1.6395099999999998,2.0167525,4.469745,4.92515,2.978695,3.36022,0.49416333333333334,2.223305,7.4865900000000005,3.268575,1.5460133333333335,0.8680125,1.2051566666666667,1.9405466666666669,2.1911175,1.1723416666666666,2.0174266666666667,4.292456,4.351015,5.15645,2.5403066666666665,2.129715,7.162245,2.926075,2.166275,2.166275,2.166275,6.545496666666667,2.22223,3.621565,2.803045,0.48918799999999996,1.219592,2.2748475,6.1842524999999995,0.4668027777777778,3.90521,3.9660341666666667,5.73965,2.864289444444444,0.4668027777777778,2.864289444444444,0.9335825,1.242136,5.9153,4.26061,6.7448525,4.51006,4.951575,3.862325,4.06715,5.00685,5.58935,6.2932,3.697885,3.370805,5.41115,5.1945,4.005215,4.481535,4.18953,1.3803033333333332,2.7808333333333333,1.18406375,2.17623,3.150648611111111,1.4765652777777778,7.097525,5.419925,2.752291666666667,4.61776,2.82044,5.06415,2.76918,4.35421,4.91411,9.493254166666667,5.62195,4.53069,2.194245,2.74679,2.2087,0.55959375,2.095901111111111,6.3183,4.945115,4.79052,4.67833,0.69532,2.10307,1.43144,4.493105,0.7978307692307692,7.108465000000001,2.070015,1.123525,1.123525,3.681672,1.953008,3.644833333333333,2.771215,4.60632,3.5719925000000003,3.5719925000000003,4.27813,5.951441666666666,2.7991433333333333,2.59609,3.442966666666667,4.33003,1.82423,3.1548200000000004,5.7266,5.6269,4.63429,4.46234,3.9065483333333333,4.679295,3.6936058333333337,3.19152,2.26437,4.02464,5.32675,3.13827125,5.2398,5.9675,2.1081566666666665,2.8333433333333335,6.4253,6.89015,1.461042,2.722275,2.1821,2.8908233333333335,2.12458,2.538325,2.6144885,1.0549222222222223,1.8436125,2.5682,2.2804025,2.31601,2.31601,3.0296100000000004,2.97745,2.264825,2.599975,2.36931,2.06062,1.5992886666666668,4.846935,14.442006,2.9760500000000003,3.6235,1.800876,1.800876,1.5988466666666667,1.5988466666666667,2.965396666666667,3.912433333333333,3.0050566666666665,1.9060675,1.9060675,3.7904,2.8025599999999997,1.0593700000000001,1.4943142857142857,2.909463333333333,3.1082533333333333,4.112233333333333,2.750937142857143,3.23263,3.2660666666666667,0.671437,2.668725,3.602993,7.036505,4.78331,4.640115,4.58914,3.37957,4.66242,4.74413,2.9761066666666665,4.33907,1.3673733333333333,3.3308166666666668,5.8163,5.59365,2.777015,1.3583699999999999,2.95823,2.6997666666666666,3.1099633333333334,1.5880383333333334,0.7404642857142857,3.2615166666666666,5.141341666666667,4.76481,4.54403,4.77273,3.00597,2.0863333333333336,3.267809166666667,2.59932,3.5404999999999998,3.0596333333333336,3.608366666666667,2.4599800000000003,2.3920566666666665,3.5826,2.6712866666666666,5.31605,4.998925,5.1849050000000005,5.1849050000000005,3.26743,3.824945,3.723375,3.7689,2.859345,5.59305,3.274855,3.08497,6.1587,0.8055716666666667,5.1907,5.01655,2.47963,4.861251666666666,3.2915033333333334,1.6909666666666665,1.3702699999999999,2.35164,0.9726839999999999,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.3259564285714286,0.53614,0.53614,1.1453725,0.8720370833333333,1.6817792045454545,0.9292471428571429,0.9292471428571429,1.2641558712121213,0.41762333333333335,0.3955666666666666,1.1895625,1.50313,3.3381333333333334,2.46936,7.202615,3.1145133333333335,3.95145,5.159413333333333,5.112143142857143,1.41138,4.872495,4.62519,4.691085,3.27867,1.50127,3.96186,3.45006,4.905145,4.70743,2.5534,4.741035,4.466935,4.782765,1.214582,3.82785,4.693585,3.32544,2.5075600000000002,3.383055,2.429525,3.169245,4.014325,3.18106,4.80075,8.659555000000001,3.20053,5.2467,4.34707,4.467938333333334,2.75973,3.848575,1.5199142857142858,3.941175,3.242625,1.917172,1.09907625,2.86743,1.2726466666666667,0.5301173333333333,3.5355333333333334,3.963855,5.107066666666666,3.5842666666666667,2.427105,2.80154,4.97836,3.9306,4.47409,2.4754475,2.2102533333333336,4.21328,4.11345,3.984395,5.41945,4.666215,3.683055,4.799285,3.1546000000000003,4.469185,2.2599116666666665,4.77561,5.3588,3.28995,3.955215,2.426125,3.77573,5.2455,4.4965,5.46475,5.2841,4.944335,2.5801666666666665,5.3255,5.02045,4.953075,2.673,1.04812125,4.12112,4.930175,4.36903,5.0824,1.81586,4.591745,2.133855,5.1523,4.65697,4.77987,2.3214475,4.36751,4.79874,4.37181,3.0134066666666666,4.50434,5.3682,5.13475,3.97492,2.673,2.33261,2.848165,4.454095,3.83067,4.375185,3.509805,4.86836,2.438555,6.9591,4.923275,4.52437,5.2036124444444445,4.855395,5.1309,3.598805,2.881175,2.881175,4.13745,4.20925,4.42003,2.1419725,3.09613375,1.10557125,2.701726666666667,3.21744,2.524716666666667,3.1715699999999996,4.606055,2.8313066666666664,5.55365,2.8269033333333335,5.0757,4.2183925,2.06574,4.15445,2.65751,2.962203333333333,3.90427,0.893487,5.1613,4.773395,6.501144999999999,5.09465,5.36815,1.4153157142857142,4.752215,6.38615,8.512155,3.11272,3.3513,1.9734960000000001,0.8574759999999999,3.970825,1.004052857142857,4.371975,4.631955,5.167,3.313825,4.1688,1.2879214285714284,3.332395,3.62717,4.415235,4.13615,3.91289,4.13319,2.36016,4.278765,5.20375,5.94125,4.610205,3.757315,0.34991666666666665,0.34991666666666665,0.34991666666666665,0.34991666666666665,5.4324,2.752825,5.90475,2.9594799999999997,5.70625,4.678865,3.804785,2.35897,2.5638833333333335,1.4113066666666667,5.2647,2.896653333333333,4.052,4.073975,3.379505,1.545735,1.2031425,4.48339,2.42128,6.388096666666667,3.878655,5.52455,2.199205,1.5347466666666667,0.9199488888888889,3.284075,4.680285,2.89103,2.229085,8.29129,4.24457,3.435725,2.27778,0.487279,3.32462,2.72811,2.079615,1.861225,3.168305,4.017935,2.461125,3.2512033333333332,3.168035,3.85017,4.56254,3.836295,4.35803,4.19391,5.591926666666667,0.6144726666666667,4.65253,5.41765,4.82453,4.577625,3.5591000000000004,5.29235,4.253675,4.250375,5.461766666666667,5.2847,4.75116,4.70081,3.5702550000000004,4.6185,2.764105,8.91773,5.24635,4.347595,4.99338,4.989125,5.17195,3.563425,1.1330333333333333,6.147708333333334,3.47659,5.2946,1.4698833333333334,4.337325,4.115025,7.4878,4.745375,3.365435,2.2381100000000003,4.382695,1.790512,1.11509,4.358975,6.2416,1.9248900000000002,2.303506666666667,2.75389,3.392925,3.49172,3.61821,5.0943,3.2538033333333334,4.11683,3.725314,3.40373,3.5980333333333334,3.82119,2.939955,2.58096,2.3423475,2.45056,2.66572,4.26744,0.5261233333333334,2.5471333333333335,4.678505,2.914135,3.525733333333333,4.389705,6.12185,4.02805,17.56876943939394,2.9511800000000004,3.953666666666667,1.4483840000000001,0.8456872727272727,0.8456872727272727,0.8456872727272727,0.8456872727272727,0.8456872727272727,4.17701,4.708185,5.15175,9.3526815,2.56305,2.56305,4.479565,4.583760833333333,1.3379075,2.2805766666666667,3.89423,2.611125,2.627825,2.2376,2.97883,3.825902,2.230085,3.923065,0.8027071428571428,3.0268466666666662,2.8276966666666667,3.066523333333333,1.3412233333333334,3.3315566666666663,2.24499,0.92705625,2.79209,2.7670399999999997,1.123788888888889,2.48233,2.669646666666667,2.1002533333333333,4.448518,2.0245433333333334,3.031836666666667,2.08499,2.6918,1.0735644444444443,2.78173,4.9959793333333335,3.6107333333333336,1.08709375,2.9757033333333336,1.307845,2.6229400000000003,2.9638266666666664,4.648154999999999,2.9798033333333334,2.5720233333333336,4.85041,2.9413,2.137335,2.8454633333333335,2.5835733333333333,1.9495333333333333,2.89847,3.259463333333333,3.21921,3.1245666666666665,3.0979033333333335,2.833133333333333,2.4677325,3.709225,3.709225,2.96589,1.98999,1.8726,2.85482,5.51117,2.933033333333333,1.9300433333333336,1.7578325,3.25389,4.72325,2.7711666666666663,1.1070579999999999,2.703488,1.40202,3.9071,2.1485333333333334,2.460226666666667,2.16735,3.6474333333333333,1.180274,1.6514,1.4166833333333333,4.15474,2.6269966666666664,4.075865,0.9734577777777778,4.1154,2.0524766666666667,2.4605475,1.787734,1.653605,3.2512899999999996,24.23403222943723,6.83886,2.79545,3.5264625,2.2148,10.27285,3.04298,0.971705,2.555283333333333,2.34801,2.103613333333333,3.3019,2.59244,2.5163166666666665,0.86067,3.2562166666666665,2.5235166666666666,2.89843,2.9751100000000004,2.852446666666667,2.062676666666667,2.170313333333333,2.91651,2.57441,2.19309,1.59786,5.33352,4.69228,2.651675,2.915225,2.3017433333333335,2.4097033333333333,8.2584975,1.9914699999999999,5.01705,2.149425,1.948895,7.55943,3.2205833333333334,2.883706666666667,2.56265,1.8014160000000001,1.5381153846153846,3.3912333333333335,3.3547,4.17484,1.51608,3.983033333333333,1.41785,1.41785,4.12798,4.3623,3.0108677142857143,3.0108677142857143,6.294919999999999,3.402675,0.394726,11.827434413919413,1.18105,0.9472142857142857,3.896520833333333,1.4725517948717948,1.6987975,6.51003,3.758995,0.7778345454545454,2.11524,5.061482848484848,2.5239421666666666,4.10346,1.4297857142857142,5.6084,4.94443,5.04785,3.6879195,2.04102,2.66878,2.6469733333333334,2.396,2.25228,5.125236666666666,4.907085,4.574225,1.9475025,4.837375,4.172385,3.0774166666666667,2.3524525,4.785405,2.5403266666666666,8.566943333333334,7.2272925,1.9553175,2.09444,1.741482,4.573933333333334,4.573933333333334,3.4347666666666665,2.88205,3.3812794999999998,4.90122,9.8309675,4.312545,2.460885,5.5668,4.16147,5.2664,2.05366,0.82207,1.353725,4.60341,4.8608,3.6501333333333332,2.954523333333333,3.708766666666667,2.3974766666666665,3.940965,4.58341,3.333605,5.42485,3.1433766666666667,3.752785333333333,3.5571,3.33083,3.3572,6.18255,3.137125,5.6707,5.3092,3.34257,3.318625,3.318625,6.082483333333333,12.0942375,3.721833333333333,6.3951525,7.43854,3.54633,2.46179,3.93307,1.2189033333333332,3.84712,2.1103825,2.950806666666667,2.877076666666667,3.27767,2.17138,2.5286166666666667,2.740876666666667,2.7943366666666667,2.9776366666666667,3.0956766666666664,4.057935,2.5494499999999998,2.9234733333333334,4.09377,2.98023,2.8053033333333333,1.20514,2.063935,2.92943,2.78647,2.5339466666666666,2.4423066666666666,3.6640333333333337,2.54646,2.4446600000000003,2.648843333333333,3.0595,2.8239633333333334,2.854423333333333,2.6388633333333336,3.098193333333333,2.7907933333333332,3.23592,2.6206866666666664,2.4078133333333334,2.2461166666666665,2.4910099999999997,2.7190933333333334,3.2554833333333337,3.3622333333333336,2.76548,2.0474975,2.0474975,0.6492633333333333,1.637002,4.11944,3.32674,2.64753,2.17138,3.3989666666666665,1.3321614285714285,2.9439266666666666,0.583724,3.467966666666667,3.227016666666667,3.359165,3.045726666666667,2.6562933333333336,2.799603333333333,3.0662133333333332,2.5729133333333336,3.5357000000000003,5.539006666666666,1.54355,2.5464333333333333,2.352396666666667,1.7185433333333335,2.1397366666666664,2.9825633333333332,2.89869,1.739124,2.6292933333333335,2.5951333333333335,2.5259266666666664,2.7009833333333333,2.8672866666666668,2.784143333333333,3.16886,1.340405,2.9403366666666666,2.292143333333333,3.7184666666666666,3.5718666666666667,2.0253875,1.7767799999999998,3.4411666666666663,2.64732,3.4732000000000003,2.5954633333333335,2.7353133333333335,4.843935,3.3229233333333332,2.1857966666666666,1.582084,3.3600666666666665,6.433353333333333,3.2251666666666665,3.451233333333333,2.893736666666667,3.16943,4.726744666666667,1.651828,1.2374222222222222,2.72439,1.8509066666666667,4.647165,3.0736600000000003,3.3798333333333335,2.89603,3.2153033333333334,2.322443333333333,3.5314333333333336,2.33629,1.7398060000000002,2.7689166666666662,3.438255,3.88403,3.84287,3.565915,1.7266625,2.63617,3.147795,4.100455,2.7958366666666667,3.598266666666667,3.9815666666666663,3.8089333333333335,1.414875,5.764612,3.29864375,1.6140233333333331,3.40691,3.32805,2.837805,3.96569,1.8602260000000002,1.8602260000000002,3.2434999999999996,2.8683300000000003,2.9457,5.2154,4.392185,4.803463333333333,1.5359099999999999,3.04617,2.7177133333333336,4.1881900000000005,2.9948933333333336,4.853901333333333,2.717893333333333,2.3834733333333333,2.5742499999999997,3.49085,3.698475,1.62284,3.0741433333333332,3.079965,2.2256975,4.580275,1.2763316666666666,3.7093,4.749055,2.664295,3.505345,4.15075,1.639225,1.5766333333333333,2.40175,1.11091,2.1263785714285715,1.9482825,0.4364785714285714,4.31649,2.3433,4.68004,4.27331,3.03003,4.694324999999999,3.2373999999999996,3.1735866666666666,3.4869,2.4917166666666666,3.1575933333333333,2.9449233333333336,3.2254666666666663,2.1593166666666668,0.6645353846153846,2.311636666666667,0.6311564285714286,1.8907566666666666,2.5019466666666665,3.16114,3.11876,1.4930466666666666,1.32899,3.919945,4.817435,3.45264,3.3772425,3.253795,1.94907,4.011735,6.832377777777778,3.67356,5.66511,1.4926575,3.92461,1.8879575,3.99364,3.906045,2.08043,3.916245,3.241245,3.911285,4.005885,2.2445975,4.036085,6.7272625,5.32015,3.276785,2.90174,1.7003125,2.053295,3.679925,3.5337,3.160925,3.62507,3.763355,3.27686,1.7416025,4.017045,3.01722,2.0543725,4.2564,0.951375,3.663005,1.6935775,4.064165,4.660441666666666,3.676955,2.8975074999999997,3.75923,3.565255,2.02123,2.275775,3.942633333333333,2.77219,5.6120775,4.262825,4.443665,2.262265,2.530655,5.10145,4.24268,2.4572060000000002,2.4572060000000002,5.836676000000001,3.9130010000000004,2.743835,3.02553,2.1119600000000003,2.70875,3.255085,3.7392341666666664,2.6111935,3.69648,0.9493199999999999,3.663195,3.069885,4.16543,2.59336,1.5344175,1.409045,3.201855,5.951935000000001,5.506235,3.45294,1.4615425,3.6765,3.666535,0.8042316666666666,3.01063,1.414732,5.555365,1.4272183333333333,3.918755,2.0563975,1.4930466666666666,3.15716,2.606435,4.314425,7.213206666666666,4.25355,4.337078333333333,2.362725,2.876175,4.945535,4.054655,4.427865,4.442525,0.9794875,1.6789565,1.0921225,2.487315,2.33261,4.647215,1.0921225,4.4821,2.236275,1.5382675,1.5382675,2.0543725,3.82776,4.384495,4.48133,1.547372,1.547372,0.9001733333333334,2.77068,2.0555025,5.9258725,4.282255,3.763645,2.86462,0.9826471428571428,3.583225,2.63696,4.436565,3.457485,3.87655,3.87655,3.450405,4.014755,1.9298025,3.609805,0.9630799999999999,1.91341,3.610465,2.33023,3.4346183333333338,3.4346183333333338,2.780105,4.645,4.61979,2.949745,3.66571,4.350185,2.64627,4.459275,2.82952,4.350015,8.675705,4.815455,2.581025,3.142005,3.17983,4.70314,3.007034,7.8875475,4.6615269999999995,4.63078,3.609045,3.83074,3.94571,4.63446,4.687905,2.27565,4.101,6.610396666666667,2.417065,2.18278,3.54803,3.36311,3.331615,5.2095,2.2032266666666667,2.222253333333333,2.682265,3.0648175,2.9259133333333334,6.947597999999999,1.437875,4.720178333333333,4.720178333333333,3.069735,3.72999,3.074495,2.43989,5.28924,4.38455,2.27468,3.8643,4.252175,3.435670833333333,3.323795,2.97884,6.3205133333333325,3.259975,5.1601,3.671355,4.870665,3.969915,3.583915,2.8683300000000003,1.8621999999999999,2.57088,3.90735,2.795865,3.064398333333333,3.07528,5.901248333333333,2.500445,1.61899,3.0821233333333335,2.3485133333333335,4.04618,2.76942,0.8042316666666666,3.223055,4.19641,3.95358,5.7733550000000005,2.95306,3.13065,2.9432033333333334,2.9432033333333334,3.6795725,4.76037,3.78828,2.0721275,6.23411,2.100385,4.547825,3.752185,7.90857,2.774376666666667,1.3013633333333334,3.325065,4.34588,0.63982375,4.011,3.17522,3.362865,3.23941,4.857295,2.1153999999999997,2.482385,9.089690000000001,3.44575,2.84922,1.4272183333333333,3.660205,2.65171,2.3180175,4.12305,5.5361875000000005,1.6893775,1.2089833333333333,1.0742450000000001,4.197575,3.82214,3.558115,3.562135,3.562135,1.7416025,2.209725,2.9735127777777777,0.8717977777777778,2.93094,1.0935225,1.7266625,3.62345,3.750035,2.66755,3.003005,2.568204166666667,4.47714,4.49718,3.534215,3.261525,2.877935,4.31262,6.56875,3.99087,0.91056375,2.573471,8.62433,4.563245,3.867245,0.9880575,4.46969,1.3836950000000001,4.1776475,4.1776475,3.634865,8.893625,0.9469477777777777,5.16705,4.432115,2.2733166666666667,3.9530175000000005,3.998655,2.1731075,9.562599333333333,1.77862,2.339376666666667,3.68018,1.6036233333333334,4.113468083333333,3.04479,3.3871,3.32952,2.853575,3.36584,1.1580766666666666,7.32717,4.24732,3.87714,4.13592,2.0837675,2.8975074999999997,3.9646858333333332,3.610155,0.6409215384615384,3.900225,4.44627,4.922805,2.04791,1.39385,4.92327,4.31743,8.20733,0.7178638461538461,0.752865,0.752865,1.8556333333333335,1.3732166666666668,1.3533300000000001,1.713,4.786825,1.1828133333333333,0.8183457142857142,3.9611025,3.50428,1.4030825,3.43333,4.549895,3.35476,0.6565559999999999,1.717525,9.136045,3.2079383333333333,3.486485,2.705255,1.4805625,2.4663766666666667,2.61827,4.86205,4.21744,3.80579,0.9188714285714286,1.460332,0.902834,4.6808425,4.30245,4.12899,0.8717977777777778,1.805602,3.960525,2.2089714285714286,4.626850833333333,0.9960925,4.5695,0.6171783333333333,0.6171783333333333,0.6171783333333333,10.22411,4.07553,1.0935225,3.67809,4.609745,3.15163,3.178435,4.661740833333333,2.801235,1.8335066666666666,2.22677,0.6565559999999999,1.4607876666666666,0.50095,0.7072583333333333,1.3964816666666666,4.48364,3.78261,2.112425,7.488006666666667,4.858068333333334,0.65765,5.77555,5.166830000000001,3.714955,4.62937,7.762714000000001,3.9369465476190477,4.858068333333334,4.608377750000001,2.452706666666667,4.323195,3.769865,6.952195,3.45177,0.487279,1.52513,4.07919,1.7397680000000002,1.2089833333333333,4.0496,2.365746666666667,1.644815,3.340545,1.661016,4.40666,4.323455,4.1794,4.65899,6.19469,2.839585,3.958485,1.414732,2.3103725,3.82001,3.830165,2.27468,4.073845,2.533185,4.923805,2.863505,2.293945,3.2623533333333334,1.710346,3.61061,0.8717977777777778,2.26926775,1.0742450000000001,1.681715,3.57818,1.437875,1.3964816666666666,2.2281175,3.04744,7.44526,0.9188714285714286,0.9880575,1.2878479999999999,3.664585,3.988505,1.2878479999999999,3.93341,2.3103725,0.63982375,0.8717977777777778,1.8556333333333335,1.414732,0.4364785714285714,1.6501180000000002,4.6269480000000005,2.2733166666666667,1.3814333333333335,2.98309,1.414875,1.77862,2.7009816666666664,2.22677,4.54083,2.7009816666666664,0.8042316666666666,2.683026,2.56325,0.1023434090909091,0.1023434090909091,0.1023434090909091,0.1023434090909091,0.1023434090909091,3.22926,2.7256033333333334,2.701726666666667,2.7700033333333334,4.727345,3.870645,1.787734,3.768775,3.522715,2.11391,5.07847,2.690535,2.34078,2.34863,2.574715,4.484515,8.086566666666666,2.33773,2.002796666666667,3.200212857142857,1.010252857142857,1.3691066666666665,2.4317699999999998,2.0754033333333335,1.571205,2.75344,2.21576,2.6961099999999996,2.644233333333333,2.653233333333333,3.78726,3.82955,2.6996033333333336,1.320192,3.709625,3.73284,1.4628533333333333,1.319634,1.319634,1.319634,3.63274,2.7909166666666665,1.0775833333333333,2.35616,1.2524728571428572,4.28084,1.5673133333333331,6.898536666666667,3.3266825,2.7727066666666667,3.25263,3.25263,5.535763333333334,3.246175,4.413585,5.241,2.2999925,3.1251800000000003 +GSM1946774,0.0,1.94015,1.94015,1.53839,4.37204,6.0071,2.3366940789473687,1.7934533333333331,7.488917083333333,4.42869,3.1804466666666666,2.43004,2.75092,3.379305,4.30421,1.798398,1.451408,5.07585,2.538996666666667,2.3084125,4.71169,5.319063333333334,3.88674,2.340415,1.8185600000000002,4.0818,4.46426,4.37575,0.701545,1.6362169444444445,1.8902377777777777,1.7434375,1.710135,1.1014957142857142,0.68613,3.109800714285714,1.570765,1.9078825,1.2171575,2.1137975,1.0763775,1.16358,1.128272,1.454964,0.938252,0.9486060000000001,0.7696780000000001,1.2399985714285715,1.6158919999999999,1.8521640000000001,1.487406,2.0329,1.728324,17.9256625,0.38377199999999995,0.827786,1.101042,1.8515979999999999,1.423512,1.74452,1.0574,1.0574,1.0574,1.16613,1.068194,4.7188225,1.143855,2.4015275,2.0907225,2.44655,0.986038,2.3215175,2.33094,1.9499425,1.51724,1.862765,1.54962,1.693825,2.58292,3.78937,4.52668,4.821,1.58126,4.59286,4.48066,4.2431,4.197575,1.0708725,7.52617,0.63185625,0.63185625,2.155115,1.1248385714285714,16.77555,4.405775,5.33475,5.3034,4.218915,4.10264,5.12095,0.46746,2.3425083333333334,1.88305,2.36927,4.670505,3.555915,1.465875,3.3478333333333334,3.2738066666666668,2.835593333333333,3.646933333333333,3.472065,4.82001,2.93836,4.53995,2.9679633333333335,0.6937954545454545,1.463002,2.70455,4.85621,3.35017,0.54251125,3.67402,3.868425,0.804785,4.20721,1.7489897402597403,2.39364,2.54755,2.0338325,3.876885,5.71795,3.378405,2.6539366666666666,3.228806666666667,3.12159,4.141935,3.02173,5.54515,3.382765,4.327525,3.14882,2.324355,3.719805,2.46135,6.866826666666666,3.485445,3.185865,5.45355,3.001965,4.515705,0.76431,9.527515000000001,3.62565,1.72513,1.7658066666666665,3.1656366666666664,2.56643,4.651985,5.5108,2.126755,5.013035,2.75254,4.483435,2.126755,2.74113,4.47385,5.067569166666667,3.67186,8.545433333333333,3.687285,4.99459,3.066415,5.20635,4.218935,1.8998,8.36343,4.140885,4.123995,3.44352,3.548,3.308845,2.308985,6.0906649999999996,2.307775,3.958475,3.955455,5.11885,4.766845,3.521835,1.4234799999999999,2.760555,2.852215,2.013975,2.013975,5.944710523809524,2.97004,1.9475533333333335,4.287225,4.53451,2.73627,1.4761,1.1651333333333334,6.7679,2.89677,6.7498,5.5198,4.02827,3.831945,3.121805,3.76589,3.485205,3.88659,4.13317,5.9238,2.92485,3.59281,9.042086666666666,4.471075,3.5507666666666666,3.0675033333333332,2.7328499999999996,3.8632333333333335,4.358324166666667,1.9081375,2.62375,2.19632,1.7562719999999998,1.6060733333333335,2.67369,1.84186,1.9867625,3.0166299999999997,2.7869166666666665,2.39204,2.7818133333333335,4.48066,3.47707,3.621935,3.449625,4.140995,1.2628083333333333,2.128965,2.8947522857142856,1.9814520000000002,2.586676666666667,2.1701200000000003,3.4218333333333333,1.7624479999999998,1.3813700000000002,2.7522366666666667,0.671474,1.5474266666666667,0.5262566666666666,0.5262566666666666,1.5455133333333333,2.5635966666666667,2.250226666666667,1.4796766666666665,1.61463,0.31145,2.7682533333333335,0.671474,1.2895866666666667,0.19331594594594595,1.5565066666666667,1.9973375,3.395633333333333,2.1503433333333333,2.1934666666666667,2.55387,2.252333333333333,2.390703333333333,2.50242,2.2845066666666667,2.3245566666666666,2.681203333333333,1.89977,2.81437,4.168705,0.6890383333333333,1.8854833333333334,2.5929966666666666,1.9809366666666666,3.545116666666667,1.497934,2.536303333333333,2.2269,4.344193333333333,2.0210333333333335,7.3320590476190475,1.6066857142857143,2.7226166666666667,1.972025,1.959995,3.3381000000000003,1.91887,1.8934175,4.0672,2.728896666666667,2.16021,3.87772,4.294785,4.32387,3.69779,2.34363,3.42345,4.547135333333333,3.878915,3.948295,4.27687,4.661035,3.021675,3.94819,3.5345,0.91027,4.84159,1.2658633333333333,4.44944,3.82356,5.9294709999999995,3.715275,4.260555,0.9597625,2.294345,3.45745,4.083925,0.8137114285714285,1.1328748717948718,2.0665588095238094,3.1364997142857143,5.775145,5.61411,2.30624,3.228645,5.33605,0.32940714285714284,3.400365,2.386815,0.95127125,4.63055,2.049575,11.83198,1.2069925,1.3978925,2.18565,2.418565,2.2177430263157896,5.0542580263157895,0.3953405263157895,1.6948633333333334,3.0461066666666667,1.080725,3.8006666666666664,1.036052857142857,5.11715,3.81575,2.1182,5.66985,5.2727,2.320785,1.13673,4.2272,4.459295,4.41452,0.8520254545454545,7.7874,2.7742,4.59796,2.6933333333333334,2.4158166666666667,4.57572,2.34016,2.6983366666666666,2.030413333333333,2.48341,2.97166,2.950276666666667,0.33996625,4.05256,3.814965,3.830295,3.884935,4.491015,6.120443999999999,4.041125,1.69035,5.33745,4.42703,4.24163,4.297175,1.0428016666666666,2.73826,3.2527633333333337,2.6393933333333335,15.713835,3.143365,3.78504,4.073675,5.32785,2.56878,5.090816527777777,1.6494825,0.7732755555555556,2.602025,3.55352,3.694905,3.93867,6.528941666666666,3.0236966666666665,2.39476,2.129495,3.3638333333333335,4.69963,2.2649,0.40857336309523806,2.4559597826086956,1.900515,1.158825,0.4761607543995859,0.5437481457039337,0.40857336309523806,0.40857336309523806,0.40857336309523806,1.16502,1.3074175,0.9701325,1.526835,4.3527625,0.2190255882352941,11.174946336580087,3.345833333333333,2.8203866666666664,4.124265,4.250915,3.917465,2.130115,4.7356,4.007417,4.230145,3.881755,0.6638046153846153,3.3721,4.271033333333333,0.5139742857142857,3.496655,2.8913333333333333,4.639175,0.6435709090909091,1.91126,4.490525,3.388075,1.8716025,1.7835033333333332,1.6194,3.126746666666667,4.068295,3.04611,2.975573333333333,5.22895,5.58645,4.920145,3.286326666666667,3.069928,6.788600000000001,3.7918000000000003,4.939455,0.4133780952380952,3.07934,3.9466133333333335,2.1002033333333334,2.723745,2.7129475,5.517146666666667,0.607915,2.678225,4.356505,4.250685,1.03419,4.43292,2.88247,5.0144,3.12325,4.144835,3.431445,4.326365,1.1901816666666667,3.43065,2.765223333333333,4.654815,3.94044,4.2351,5.795,4.4887,2.67904,5.05322,2.27071,2.9684,3.2397733333333334,2.4972133333333333,2.7243866666666663,2.326303333333333,1.7720680000000002,1.4149166666666666,2.14255,0.8111342857142858,1.68614,2.1297866666666665,2.0982433333333335,3.0872766666666664,3.1532366666666665,2.820703333333333,0.9274877777777779,4.8967,3.373533333333333,5.3456729166666666,2.6404929166666666,3.1057133333333335,2.96687,1.7206333333333335,1.7206333333333335,2.5065406493506495,2.5065406493506495,3.3540506493506492,0.5028742857142857,1.8616033333333333,2.1400033333333335,3.7029333333333336,2.2293483333333337,2.2293483333333337,2.2293483333333337,7.3451361904761905,4.240645714285714,0.9592545454545455,2.874745,4.860626666666667,2.46846,4.59122,3.232255,2.34479,4.180205,3.08618,3.1153833333333334,1.15687625,2.0281066666666665,2.8078033333333337,2.383436666666667,2.512516666666667,5.7714,4.267399999999999,3.855166666666667,4.89725,1.9627666666666668,2.66605,3.1569533333333335,0.9887555555555555,2.1676800000000003,4.624338,7.674835,1.362335,2.99359,4.37693,1.8246259999999999,1.7802075,1.7802075,0.99283625,4.78583,7.52167,4.389465,5.441151,4.596725,1.7698333333333334,4.067075,3.01253,4.625245,4.9916133333333335,0.3585236842105263,2.88952,2.54563,3.729415,3.94737,1.8220960000000002,1.9359275,2.549525,4.36087,4.00862,3.207505,2.47106,1.4702,6.86133,5.11745,4.53646,3.490355,5.0993,4.709025,4.665015,3.723575,3.5741050000000003,1.9715175,1.1045157142857143,2.714545,3.96979,3.61741,5.5456225,5.799825,2.44205,1.6866700000000001,2.6715033333333333,2.692296666666667,2.8873533333333334,0.7069678571428571,2.181035,3.68705,1.0791575,5.02665,3.22935,6.052855,1.268826818181818,1.268826818181818,4.17384,3.66829,3.8845,5.4943,2.7614566666666662,2.2940166666666664,4.159945,3.386555,2.18091,3.3938,2.523423333333333,4.153085,3.3661825,3.82409,4.68413,1.079031111111111,2.6078,4.27152,4.03485,3.30594,2.53394,1.75844,0.8091288888888889,0.8091288888888889,0.8091288888888889,0.8091288888888889,1.6033155555555556,3.6838975,3.6838975,1.6747966666666667,6.942956666666667,3.097525,4.188895,3.238163333333333,2.69765,4.85877,4.257945,4.924885,5.15365,1.8384575,4.028265,3.7015,2.63943,3.33852,3.33249,3.063185,4.216895,1.9873,4.31032,1.64419,3.3887237499999996,3.006515,1.6962325,1.1691816666666666,2.89047,4.40362,1.304014,0.8261266666666667,3.81911,1.2807775,4.855430666666667,4.397625,1.3325328571428572,3.494935,0.7524822222222222,2.62384,2.6357466666666665,2.3636766666666666,2.667125,3.98441,2.901365833333333,4.65147,5.38725,4.385145,4.30974,1.9669975,1.2695057142857142,4.106865,5.0282,1.557685,1.557685,4.126095,0.22085800000000003,2.459703333333333,0.22085800000000003,0.22085800000000003,0.22085800000000003,0.22085800000000003,5.1893,2.6164833333333335,3.03999,3.49844,3.2395033333333334,4.55682,2.6157,1.02635,1.02635,1.0210933333333332,1.0210933333333332,3.76945,1.73352,4.402435,1.5999948214285715,1.5999948214285715,4.67631,0.5233800000000001,2.2127825,7.249443333333334,4.88931,3.220635,3.73927,0.9423375,2.508135,2.1013825,5.07005,4.42622,4.350245,3.84686,1.28539,2.754955,1.9977825,7.7113,1.82733,4.4196,4.6586,2.986795,3.84584,5.89582,8.130955,4.01467,4.473745,4.469215,2.314105,3.14496,2.327265,2.348175,2.062725,3.841765,3.514045,5.932148333333333,5.84365,4.140565,1.1850133333333333,1.64923,3.78353,3.79663,2.112095,4.34163,3.833445,4.6387,1.8314433333333333,3.8158,1.5634833333333333,6.267440000000001,2.53473,2.34844,2.1503533333333333,2.50066,3.3623666666666665,3.4340666666666664,3.402366666666667,2.8428466666666665,3.3876000000000004,1.8243379999999998,3.249005,3.1369,3.141295,0.378517,3.00984,4.12525,2.654725,5.44975,4.988995,4.608675,6.727651,4.67632,2.21196,4.083255,5.1354,1.5561116666666666,4.68269,5.76255,5.1368,4.53982,3.151545,5.55345,4.98634,3.82233,5.4544060000000005,7.6316500000000005,3.965695,1.1754966666666666,1.423845,2.436595,1.856146,4.51638,3.996255,4.844465,2.5665033333333334,2.3496533333333334,2.6703233333333336,2.464916666666667,2.3038966666666667,0.9990455555555555,0.5084064705882353,3.936295,3.88613,3.6246333333333336,4.092695,2.92776,3.3357666666666668,5.202671666666666,2.95661,0.5991588235294119,3.15,5.6206,1.69993,1.653204,3.687105,3.345755,2.4686266666666667,3.7665666666666664,4.04133,2.742036666666667,2.31196,2.31211,2.493116666666667,2.79267,4.347315,5.176159999999999,6.49311075,1.359264,4.7409,3.111648333333333,4.774093,2.405673333333333,2.866555,2.15348,1.7011966666666665,1.4470275,1.4470275,2.61262,2.44043,2.6994833333333332,3.992825,1.68207,2.064445,1.830095,0.47135375,3.710995,0.5654191666666667,0.94033875,3.63564,4.000095,3.7752,1.67796,4.41965,3.197236666666667,0.7698214285714285,4.090225,3.9520657142857143,3.127466666666667,2.49865,5.1539,0.2743386206896552,2.2744385,3.249075,1.4603975,3.619665,6.7157,2.312975,1.4598366666666667,4.00972,3.80615,2.60914,2.60914,3.54768,2.34719,4.691215,5.876284999999999,5.0196,0.98169,2.720466666666667,2.471363333333333,4.53222,5.07775,5.2093,4.814735,4.3181666666666665,3.7892333333333332,3.742233333333333,3.6155333333333335,4.056633333333333,3.059646666666667,3.092803333333333,0.6273685714285715,2.383645,2.47689,3.51326,3.144856666666667,3.1357466666666665,0.7686491666666666,2.811605,3.7550075,4.74844,5.7916,4.55948,1.90197,1.90197,0.805278,2.981705,4.35588,3.867405,4.574634285714286,3.369715,4.643755,0.5761018181818182,3.239015,3.66634,4.26563,3.717763333333333,0.7840114285714286,3.017445,3.94708,5.61055,3.85217,5.0137,2.799745,4.135445,1.556805,1.00726,2.7210199999999998,5.01755,4.221005,3.132675,1.423515,3.87039,2.598575,2.43364,2.7849962222222224,3.0300266666666666,4.5140666666666664,3.0279833333333332,1.716402,3.4882333333333335,1.4413244047619047,2.9049899999999997,2.557846666666667,2.195795,2.8634500000000003,2.7060099999999996,2.4085199999999998,2.7288766666666664,3.864265,3.2003233333333334,3.568126666666667,2.39167,1.947685,4.065376666666666,2.99945,2.43039,3.568126666666667,2.1563866666666667,0.8089672727272728,2.4469275,1.0240566666666666,2.1413775,1.652535,0.9542090909090909,1.7373475,1.76138,2.6654479999999996,2.566425,4.60553,1.5365975,4.217115,3.0604833333333334,1.63665,2.34141,2.61566,1.5570533333333334,2.8512566666666666,2.7079833333333334,2.210455,1.723165,1.8334759999999999,3.6317,2.2909266666666666,2.9459366666666664,3.093476666666667,3.1379,3.8874,2.0722166666666664,4.1183000000000005,3.4878,3.7137,3.040836666666667,3.4675,3.6401333333333334,1.68116,9.648175,4.23826,4.336435,3.281135,2.79546,2.08206,4.022635,1.6858239999999998,4.131655,4.408875,1.360276,2.46193,1.1020433333333333,2.31619,1.7158933333333335,2.4071233333333333,4.980253333333334,3.07467,3.549885,4.914235,0.67545875,1.374192,0.961879,3.538735,10.361628333333332,3.5437,6.6785,2.0393825,5.2042,4.304745,2.56185,5.06065,0.2859482352941176,0.798097142857143,4.7146,4.26671,6.7703524999999996,1.8656225,4.22249,5.57,4.474575,4.398425,3.514895,4.703785,3.63592,5.957498333333334,3.868565,3.233665,3.23231,2.3341566666666664,1.9807633333333332,1.3966313125,2.3302833333333335,3.92985,4.87397,1.54336,8.96825,1.8467366666666667,2.8725725,1.075436,1.075436,7.352071666666667,3.05402,2.168425,2.2242225,2.7382933333333335,2.0881766666666666,0.97822,3.680856666666666,2.6799700000000004,0.6217357142857143,1.7719133333333332,3.1891,3.1891,1.2180666666666666,2.567086666666667,2.2480066666666665,2.5780216666666664,1.364365,1.9600833333333334,4.724606,2.6366333333333336,2.6767,1.2404475,1.2404475,3.843155,5.4265,4.4183,3.12006,3.661845,6.14629,2.398,2.8384066666666663,3.0491466666666667,3.96156,1.1534716666666667,3.2958966666666663,2.661975,3.73328,2.17118,4.742025,3.600955,4.36046,3.3208,5.605207,0.9674544444444445,2.0959025,1.922475,3.552835,4.2988475,3.842975,3.8733,3.67139,2.863585,1.6450375,4.177495,3.38686,3.416105,2.3450366666666667,0.86137875,3.36663,4.291635,4.75135,1.2408633333333332,2.9211766666666663,2.54363,1.82843,1.7854383333333335,1.7854383333333335,1.2107783333333333,2.0650866666666667,1.0606485714285714,1.384454,4.407575,4.442945,0.49848571428571425,3.69524,3.498866666666667,3.96296,5.1928,0.42005299999999995,8.77242,5.38775,2.6268,3.82617,4.46829,5.482348571428572,4.782945,6.601275,0.7045254545454546,2.8236866666666667,5.3716,2.6224366666666667,1.7667625,2.02012,4.576085,5.16583,2.4592298214285715,3.0030300000000003,3.1904333333333335,1.876325,4.431505,10.839749999999999,8.269372916666667,3.7944666666666667,4.55412,3.0636925,3.088,3.97482,1.89891,3.0064566666666668,3.59725,4.631025,4.81994,4.70735,6.35929,2.24146,4.00695,4.544515,4.691755,4.7385,7.328116666666666,4.1572175,6.02085,3.554025,3.107545,2.96425,5.8215,3.72994,5.0224,2.2307,3.1590900000000004,3.359855,5.93155,4.075225,4.012845,1.448022,0.90274875,2.519975,0.5407226666666667,3.88281,3.57729,3.50083,2.911975,2.0967,2.974425,2.581025,2.971908,1.8778860000000002,3.0038,2.941725,2.31286,2.617175,3.870986,1.2166266666666667,2.7043516666666667,5.07635,3.810333333333333,1.1141175,2.8943966666666667,3.708734166666667,3.71672,1.5285625,5.72995,5.44415,2.2558866666666666,2.9522833333333334,29.940632019482152,3.249686666666667,1.660595,4.006733333333334,1.6320499999999998,2.5903,2.965673333333333,3.4356000000000004,1.94439,2.687225,1.96453,3.4928755000000002,3.211876666666667,2.4183425,1.5362425,2.19426,2.864625,0.3796986363636364,1.2337425,2.729153333333333,1.6538879999999998,3.420755,1.5285625,2.3139766666666666,25.370913,4.869275,3.666115,3.53886,2.463325,2.531075,2.673666666666667,2.3058725,3.606625,5.184545,5.4409,1.60883,1.781072,2.23866,2.3529566666666666,3.7892483333333336,5.28575,4.647615,4.431285,0.18602170212765956,5.0147,4.945736666666667,3.916845,9.16537,1.0532825,1.0532825,2.9909466666666664,2.886175,5.51795,1.8616144444444442,1.018771111111111,4.55385,1.9536925,4.20118,4.07168,3.23443,4.064775,3.97765,4.07409,2.879925,0.7223811111111111,3.34529,2.2333083333333335,4.350675,7.641855,4.371475,1.9488200000000002,1.9488200000000002,6.6160749999999995,4.860755,4.22359,5.5577,2.31847,5.316003333333333,1.33264,1.4965766666666667,3.08391,2.27955,2.85361,2.7649633333333337,3.777565,4.374225,4.18819,5.37425,2.317735,2.30548,1.91348,2.617225,2.1554025,2.0128,2.05959,4.697168333333333,1.868305,3.4678109523809524,2.46787,2.9520999999999997,2.54054,1.82245,1.4711142857142858,0.9330740000000001,2.46345,3.7778666666666667,0.72348,4.436655,1.8524825,5.757012083333334,1.9509075,1.5969675,1.4535075,1.56159,5.596267222222222,1.8057480000000001,3.10406,3.5710333333333337,1.2369875,1.7876375,4.819412,3.2146500000000002,2.10202,3.5778,2.845993333333333,2.8602000000000003,1.3169476785714285,0.27635166666666666,0.27635166666666666,0.27635166666666666,0.27635166666666666,0.27635166666666666,3.614455,2.80789,2.4636425,3.196376666666667,1.3576050000000002,2.66037,2.9428033333333334,2.476246666666667,3.279815,2.820175,1.6984599999999999,2.9194666666666667,3.19407,2.20257,1.9358175,3.71962,2.6892300000000002,3.886066666666667,4.997,2.5315499999999997,2.5982433333333335,2.5892166666666667,10.847100000000001,4.723805,4.472305,4.90399,4.25852,2.85711,5.115,3.946295,4.10137,5.462963333333333,3.88807,3.01629,2.33115,3.39844,5.069401571428571,3.330825,17.83373619047619,1.113605,4.30309,0.8533822222222223,1.1821475,2.886,4.67855,3.78004,3.92955,1.5551566666666667,2.28298,4.113945,1.9078,4.451955,3.1519725000000003,2.654383333333333,0.6822233333333334,3.03563,4.60929,2.319165,2.41167,2.1654175,19.5912325,1.255984,1.243385,2.5187,0.28773038461538464,1.8074175,2.79839,1.9126766666666668,3.0559166666666666,2.719925,7.2499075,1.874975,2.57515,2.225175,2.1627125,1.5884,3.3245833333333334,3.24877,3.28395,3.07281,1.90787,2.5153325,3.0998513888888892,4.8581,0.431305,3.4065999999999996,3.0782166666666666,3.04167,2.08749,3.5374605,3.533105,1.5628766666666667,2.358026666666667,2.12129,1.4823066666666669,1.7720900000000002,3.37642,3.33496,0.7600066666666666,3.35645,5.0316,4.15439,2.307328,2.307328,2.9895266666666664,4.27817,3.019445,3.36941,2.3142875,0.8990609090909092,3.88637,3.635365,6.229,3.897125,2.382374,2.382374,1.2870925,3.421685,5.1798,4.118605,4.20151,3.00306,2.2586666666666666,4.27767,3.228275,4.12882,2.8952566666666666,2.1430433333333334,3.970566,3.1233133333333334,2.696823333333333,1.9352533333333335,3.635905,2.701925,1.6721266666666665,3.679325,3.20125,4.406545,3.490133333333333,4.52774,4.46396,6.3355725,3.935365,2.14188,4.802415,2.9256,7.39319,2.5850833333333334,1.2345733333333333,4.52732,3.3775666666666666,4.611855,0.45209,0.7859925,3.663725,3.55566,2.093232121212121,4.253335,2.82782,2.896755,8.762196,1.828686,1.282292,3.5935,2.66552,3.422215,4.78257,6.529353333333333,3.1402633333333334,2.1480633333333334,2.9254933333333333,1.9006133333333333,3.23321,8.474654950738916,0.9381835714285713,0.979105,4.609385,0.48602333333333336,1.68303,2.1200575,2.6752,2.99085,2.833225,4.73684,2.3221075,13.191279999999999,5.1336075,2.4926225,2.4926225,4.42109,0.8754583333333333,4.921176666666667,3.95141,4.10623,5.614086666666667,3.63117,4.88238,1.4096566666666668,2.714285,2.696055,2.604385,3.095215,2.70246,2.99861,3.57717,3.561035,3.13096,2.974745,3.26062,4.29927,4.3722,2.9005033333333334,3.1953533333333333,4.8074725,4.34543,18.061972976190475,11.776539166666668,3.2606450000000002,0.6880408333333333,1.4819142857142857,4.39987,3.3841,3.1185433974358974,2.448375,0.82671,0.6326266666666667,0.6747285714285713,2.049525,1.6122260000000002,5.20185,3.3988333333333336,0.7142509090909092,3.29964,2.44264,1.7457025,1.74057,6.114153333333333,1.5248680000000001,4.364065,2.959055,3.05672,2.35618,2.5888766666666667,2.52074,0.7603036363636364,3.12677,2.96939,3.8275346666666668,2.9865399999999998,7.677428333333333,3.610225,3.248375,2.4324525,3.472385,5.85402,2.097815,2.4229225,2.41718,1.6272325,2.5404,2.2195675,2.641125,0.909422,1.37818,1.02600375,3.129625,4.453995,6.4354,5.7067,3.00377,2.358205,2.86655,3.5056,7.372446666666667,1.2542433333333334,0.37399,2.568355,2.20955,1.5288119999999998,3.4108899999999998,1.235812,1.7223860000000002,3.6484466666666666,2.8900826666666664,1.222705,1.9612999999999998,4.54157,3.717735,4.56321,3.91913,1.907375,5.1708,3.92757,0.7784076923076924,4.781085,4.147915,4.197909583333333,3.3706333333333336,2.80826,1.317498,1.02766,3.484395,2.740205,3.337535,4.17552,2.58436,2.6350466666666668,3.33817,3.7229,4.37438,2.457195,2.4637,4.456,5.69685,0.57756625,4.479085,1.846335,3.48291,3.9944333333333333,1.740285,3.06913,2.152055,2.02796,2.76041,2.3124158333333336,1.6791233333333333,4.65689,3.696845,1.25874,6.98296,1.05742,3.584475,1.6419533333333334,4.54812,4.017565,3.1694099999999996,3.18604,4.093315,8.73549,2.85223,3.547995,3.44158,3.69171,1.70351,7.97409,3.79047,4.09877,2.042205,4.063475,2.92815,1.05603,2.04666,4.202085,2.25136,4.147445,4.844665,4.080985,4.55165,2.11764,5.33495,3.92914,3.1069999999999998,2.45905,1.4256220000000002,4.176625,6.3397,4.19791,4.622415,2.97976,2.28282,4.062885,3.30001,1.184157857142857,4.04277,4.787105,3.84929,2.87386,3.607045,0.47468000000000005,0.47468000000000005,4.59745,4.08579,4.13772,2.312465,3.824895,5.7625,0.8265399999999999,4.18573,4.942115,4.79821,5.07825,4.651905,1.8179925,3.159555,2.09356,4.429855,0.67858125,4.03357,4.20318,2.80782,2.796003333333333,4.238155,2.367855,3.267255,59.474320482683986,3.267525,2.5677333333333334,1.647255,3.384285,4.001805,0.800015,0.98638125,2.065205,2.065205,1.329666,3.22924,2.273975,3.7250639999999997,7.36705,2.856673333333333,1.2886028571428572,1.3007533333333334,2.65905,3.9160150000000002,0.903908,1.881235,1.217224,1.7914575,4.1522,4.158035,3.39685,20.38536326839827,3.325995,4.017165,3.265665,2.1223566666666667,2.79533,3.213085,2.4500675,5.48965,1.5589460000000002,3.86247,3.322952753968254,5.8361725,2.039255,2.81201,1.88188,4.326335,2.276403333333333,2.3214575,2.0320533333333333,3.6238522222222223,3.64604,3.50736,3.845185,4.26154,2.5838,2.597065,2.994055,2.750055,3.0342172222222223,2.337305,2.01383,3.433755,1.167165,3.770985,4.799785,2.723155,4.794655,4.76734,5.195423333333333,2.03695,2.291865,2.743065,2.906575,4.025755,3.454685,4.67555,0.8370185714285715,4.110564,2.9286,3.78404,2.3325,1.7830059999999999,4.056321666666667,1.2347333333333335,2.783375,4.3373,1.12935,3.592085,3.50494,4.586885,6.048575,2.23842,2.902875,2.63229,3.8561666666666667,3.1491233333333333,2.6642346666666668,2.996166666666667,2.439083333333333,2.5303133333333334,1.3390866666666668,2.0726075,2.0726075,1.9642333333333333,2.08145,1.7595066666666668,2.5916433333333333,3.8329,5.40795,4.35376,1.670765,4.298005,3.869655,3.39614,4.235405,1.92323,1.82483,4.644570833333333,1.826795,4.313138333333334,3.604985,3.57378,2.4154033333333333,3.744043125,3.303105,3.018035,3.431935,0.14889408163265308,2.3675433333333333,7.722474999999999,1.5145300000000002,3.48845,3.04783,1.0039971428571428,1.1397216666666667,1.88175,3.73898,3.091125,7.36472,3.849625,3.50991,3.119295,2.607685,3.366305,3.50645,4.02756,3.27916,2.8495266666666663,5.2926,4.03413,4.220825,2.76365,1.9481925,3.50174,4.569065,2.749175,2.91027,2.14734,2.57305,3.864725,3.8155,2.738725,4.368495,5.1214,2.762395,3.93442,4.19858,3.602655,4.534115,3.279655,3.246605,5.88805,4.551365,5.3435,5.0232,4.36053,5.0317325,4.59438,3.921475,1.3321960000000002,6.5617,2.39251,4.28102,4.07749,3.95117,3.2121566666666665,1.9740066666666667,2.29784,2.4522166666666667,0.9609209999999999,3.3378,3.6077333333333335,3.11903,1.9405700000000001,3.7722,4.227285,2.5752200000000003,0.5580375,4.60357,4.692045,5.02695,4.803485,3.672295,4.624015,4.979835,4.690025,1.3814444444444445,0.9282384615384616,2.961703333333333,5.19625,5.85015,0.494125625,2.873435,2.510686666666667,3.29724,4.42876,3.8647666666666667,2.0467925,5.2957,3.477695,4.56889,2.993915,6.33115,5.1804,6.9011075,0.5584566666666667,4.12979,0.802636,2.319695,4.050433333333333,3.2274966666666667,1.3389333333333333,2.25848,4.229405,3.539565,4.32985,1.6495933333333335,2.0486875,2.85081,4.319845,4.1782,3.79058,1.6439039999999998,1.230259,5.6757,2.301275,7.7463,4.33231,3.57553,2.1589,1.636805,4.05376,4.571665,1.7844133333333334,2.384695,2.4651325,2.3675433333333333,6.617796666666667,3.0782049999999996,2.7685766666666667,3.6982808333333335,3.7097,1.96661,3.135135,7.0034975,4.581915,5.12015,0.5086718181818182,3.448715,4.07532,4.542208214285714,3.857515,3.95648,3.083905,3.25223,3.163575,2.926635,3.5025386666666667,2.06634,5.73482,4.715505,5.0446,3.89117,3.269775,3.094460833333333,2.1508325,1.2900525,0.91279,2.81041,2.567105,1.0883399999999999,2.6181933333333336,5.3616,5.01715,3.59369,4.155,16.52838,4.053605,4.469205,3.92408,0.7208258333333334,5.1234,4.441965,4.064235,4.85274,5.209,2.726795,3.44702,3.28885,1.544464,3.09233,4.68692,3.25926,1.5962640000000001,3.60827,4.89565,3.87244,5.1888,4.8204,5.6792,3.906605,2.662243333333333,4.101385,4.14443,2.36051,3.1237666666666666,2.9893933333333336,1.6128929166666666,4.92245,2.6572025,2.154576666666667,3.931845,2.41857,4.35205,4.065376666666666,2.30998,2.774005,4.40731,3.66198,4.32191,4.509635,4.8507,5.175905,3.10361,5.2318,2.6505916666666667,3.79015,3.65957,1.567672,4.52843,0.9988483333333332,4.39045,3.16791,0.9479242857142857,3.528715,2.278405,6.47443,2.485705523809524,2.485705523809524,2.485705523809524,0.6279283333333333,1.1824666666666668,1.8231,3.403675,5.51985,3.1031899999999997,1.93881,2.1807675,1.7557099999999999,3.801185,2.46585,0.4427569230769231,1.78721,2.2187775,2.95607,1.93498,2.389205,2.334785,2.093265,3.80292,2.8358666666666665,3.348735,2.99611,1.974005,6.37019,2.053895,4.25107,3.826195,6.63914,1.5707866666666668,3.67159,3.604935,3.810815,4.26933,2.826455,2.0139875,3.733165,5.8593641666666665,2.11077,3.595575,3.201725,1.953625,4.86994,4.437725,2.6963666666666666,2.202025,3.586115,5.618375714285714,5.85305,3.012155,2.31554,2.62413,2.970805,2.87877,3.8495,1.31315,2.705805,4.62455,0.7785875,3.46634,3.89182,3.68282,3.434035,2.526255,3.266,2.19173,4.642365,7.957141666666667,4.1019,3.32516,3.267445,0.9845375,4.64277,2.42392,4.25433,5.681170000000001,3.86088,3.751425,10.589095,4.812685,3.904435,1.51189,0.6841400000000001,2.712835,3.94726,3.53855,3.590375,2.1655933333333333,2.4480299999999997,2.2048566666666667,1.159905,1.159905,1.92595,2.38006,2.2948233333333334,2.3864300000000003,2.9702266666666666,2.547406666666667,2.6604300000000003,2.847236666666667,1.4064266666666667,2.401803333333333,1.9687466666666669,2.01153,1.57955,2.60108,0.7049833333333333,9.6472625,0.7049833333333333,3.149703333333333,2.0292933333333334,1.5964933333333333,4.324605,4.21018,4.293865,4.2936,2.104483333333333,2.914453333333333,3.411944666666667,2.0409866666666665,3.106643333333333,2.9019433333333335,2.6409033333333336,2.603196666666667,1.6486266666666667,5.38865,6.340482761904762,3.0238033333333334,3.4179,3.0194166666666664,2.4396733333333334,2.5645933333333333,1.1014957142857142,3.4633000000000003,3.2655766666666666,4.059645,5.90705,4.404845,2.8516366666666664,3.421466666666667,3.0391166666666667,4.176807777777778,4.318205,2.617453333333333,3.400185,3.1613066666666665,3.0507733333333333,4.62261,3.10665,3.674925,5.85656,2.00997,2.35948,1.6670366666666665,1.4875266666666667,4.711803333333334,3.5911766666666667,2.485,2.3048033333333335,2.2532900000000002,4.43861,3.699905,2.79744,3.3099399999999997,3.2584166666666667,3.4577666666666667,3.4533666666666663,3.5415666666666668,3.2234833333333337,0.5855375,3.7845333333333335,2.4305966666666667,2.5630966666666666,3.493975,4.411535,4.26434,5.2468,2.56304,3.9820599999999997,1.099095,2.917673333333333,2.917673333333333,4.070615,2.743105,3.75458,4.664525,1.758065,3.40783,3.725085,1.2652242857142857,3.647934333333333,3.217549095238095,2.2963276666666665,0.370911,5.0174,2.85543,6.397545,2.92015,5.9506,3.262405,3.88051,3.89067,1.5872104166666667,2.995745,4.087105,3.23653,3.17455,2.9497366666666665,5.445815,2.082975,0.98633375,1.9732066666666668,1.7512133333333333,5.45087,2.2737366666666667,2.4221733333333333,1.79192,4.34121,3.873845,4.024205,0.504947,4.08372,3.83514,2.4726066666666666,2.3099833333333333,2.57014,3.20838,3.92536,1.63563,0.6577684210526316,0.7759357142857143,3.5243333333333333,4.14154,6.020278333333334,4.809385,4.354675,5.2186,1.4277628571428571,3.9944333333333333,2.250973333333333,0.9831725,5.4783,5.6868,2.584515,4.675055,4.147635,6.63054,3.9882333333333335,6.180484999999999,3.641705,2.483311111111111,5.9839,10.284421435897436,2.55838,0.652334,3.294375,4.00895,2.317435,6.3549,3.855285,3.701735,2.7778166666666664,2.7778166666666664,5.687,3.35719,3.94585,4.914715,3.838555380952381,2.3384374285714284,1.14844,4.78053,2.689275,5.208495,3.498075,4.27508,2.922885,2.08872,4.484355,4.499215,3.4646333333333335,4.110155,4.580715,26.984709166666665,1.87708,2.537775,2.4045875,1.6511266666666666,2.4048966666666667,0.9714200000000001,2.729093333333333,3.009063333333333,3.3155666666666668,3.14269,0.6455784615384614,3.0534266666666667,3.66516,3.07823,3.19131,3.582725,5.5569125,4.675365,3.899455,3.65971,3.9240700000000004,3.827185,3.5452999999999997,1.695205,0.9992416666666667,1.5167433333333333,2.37556,1.5631466666666667,3.08249,2.34597,2.395696666666667,2.1462566666666665,2.77344,2.200775,1.78695,3.234355,4.2561,3.642895,3.94549,1.368392,3.3755666666666664,2.474493333333333,3.67664,2.24465,2.61269,2.50841,1.4650699999999999,4.272695,6.601936666666667,2.863385,3.75652,3.96328,2.636,3.3344050000000003,3.4894,3.46214,4.659485,0.32091272200772203,0.32091272200772203,4.914645,5.17865,3.20279,2.920675,5.31245,4.333385,0.6417623076923077,4.81128,4.364945,3.64621,6.2004,4.638505,7.47022,14.148471666666666,12.553342692307691,4.597105,4.23103,2.51851,0.5925976923076923,2.5004666666666666,4.33824,1.30196,4.596305,3.512866666666667,2.834493333333333,2.15735,2.0246133333333334,4.85888,4.24835,8.963274166666666,4.915045,4.048165,7.1773671212121215,3.42367,3.2052833333333335,1.36989,5.452371666666667,1.955505,2.4419166666666667,2.7813199999999996,0.2593953125,2.90819,3.63191,4.7428791666666665,0.84856,1.2317933333333333,3.885615,0.574597,0.574597,2.8939279166666667,3.1878433333333334,3.2842366666666667,4.006505,4.28962,5.5415,3.699465,4.144145,2.83221,3.1434233333333332,2.6396133333333336,0.80075,2.7186466666666664,2.90566,2.89327,6.83479,2.82535,9.107825,2.966725,5.7206,2.81006,2.32673,2.525375,2.734375,1.7031925,2.4067275,1.9046675,3.39249,2.3715475,3.9357949999999997,2.96177,4.211096666666666,4.211096666666666,2.6377516666666665,2.6377516666666665,8.780643333333334,2.4713366666666667,0.8078900000000001,2.51633,2.5192099999999997,2.56292,3.9357949999999997,1.917828,1.9752759999999998,1.528676,3.31459,3.813845,1.629275,4.424375,4.115815,5.94004,6.663975000000001,2.21538,4.36895,6.01228,3.80643,2.917435,2.160623333333333,3.373215,3.303224242424242,4.22086,5.247263333333333,7.469742,3.56225625,3.12949,1.1965933333333334,4.349765,3.825683333333333,3.79577,3.801196666666667,4.369515,2.395345,2.5573099999999998,6.33781,2.907995,1.24693,5.73439,3.76955,2.54116,5.18975,2.54116,2.81612,3.53086,5.1359,1.02548,4.099968888888888,4.556115,3.48245,1.30635,1.7715775,3.74956,3.923515,2.529715,6.797348333333333,4.03233,3.45763,4.000255,4.6089475,1.3536075,3.90627,2.501695,3.58858,3.98616,3.799835,4.797645,3.17931,3.66687,4.91208,1.9773936666666665,1.838625,3.17515,3.6715,3.4906,2.7764333333333333,3.637233333333333,3.0738366666666668,5.61675,3.35703,3.52048,2.893905,1.9682566666666668,3.664733333333333,2.100166666666667,3.04991,3.1027,2.88781,0.67858125,2.10573,1.8375066666666668,3.08822,1.8954339999999998,3.610398,3.983985,1.1803919999999999,3.00522,4.63382,0.890566,1.3909233333333333,3.312975,3.75509,3.5327,1.971745,1.7905166666666668,3.503845,2.513520833333333,1.6106266666666667,2.79364,1.89334,1.16683,1.3796075,6.493085000000001,3.40015,2.277855,2.446705,2.39878,3.948965,0.8537575,0.34139214285714287,0.8410342857142857,4.827005,1.7914282857142856,4.52381,2.029595,1.633390857142857,2.915100857142857,1.28171,1.055608857142857,0.718116,0.61038,2.5685525,6.3589,2.977415,3.624315,0.3130582142857143,3.51642,17.97885966666667,3.165625,6.918845402097903,1.1043225,1.1043225,1.1043225,1.1043225,5.8668675,4.032995,3.840475,2.3653866666666667,3.214465,4.809515,4.67029,3.823415,3.523925,4.161035,3.81263,3.929615,3.758221333333333,4.316545,4.86379,4.04138,4.74884,3.641615,4.248145,2.57408,3.716785,3.312285,3.74091,3.83423,4.239825,3.10253,2.41099,2.4459966666666664,4.11783,1.2783600000000002,3.83268,2.5621966666666665,3.288592,4.080985,4.37645,3.15442,2.803175,4.177845,2.97128,3.170345,5.18065,4.850545,3.329455,3.313625,1.697676,1.697676,1.9815,4.651075,3.85535,5.474292999999999,5.1625,3.499765,6.48825,4.716695,2.0502075,9.688205,5.3481,6.441682500000001,4.40521,2.8744,3.03622,0.258278275862069,0.83007,3.164822666666667,3.4131,4.682145,2.9822566666666668,6.22837,4.89144,0.5818914285714286,3.608815,0.48599899999999996,1.791002142857143,3.18528,2.867055,4.17916,3.83077,3.10137,3.48242,3.31834,3.75049,3.50328,3.61752,3.70484,2.39478,1.791002142857143,2.794155,2.1012325,3.59769,2.38247,4.03559,3.587655,1.70351,4.50986,2.79896,1.3403600000000002,4.533665,4.659245,4.25213,2.87288,2.9605,4.27951,1.8650766666666667,1.3760999999999999,2.4449166666666664,2.6037966666666668,2.5666800000000003,2.17056,4.9138,3.432825,4.960100833333334,3.8797585714285714,4.875535,3.954555,1.604692,5.1196,4.276825,5.3604,4.08562,6.76779,1.927655,4.91522,3.33398,3.216115,1.723315,1.7116966666666666,3.91221,4.34393,2.5139066666666667,2.763552916666667,3.4727625,3.4727625,2.6285966666666667,3.1944966666666663,3.285895,3.98368,3.75181,0.7315130769230769,3.06229,4.326655,4.841140277777778,2.831485,3.16961,1.790315,2.797245,3.502415,2.366365,4.579845,3.086465,4.73721,1.8539233333333334,1.0365545454545455,5.73137,3.67363,3.595133333333333,3.2249266666666667,1.748762,30.08941044047619,3.79044,3.339675,5.21085,4.626005,0.8711666666666668,6.9854,1.8634125,5.6948,1.4568183333333333,4.151075,5.016615,3.72923,3.082225,2.2080075,3.4018333333333337,4.73102,2.0404225,2.69566,3.747275,2.64058,2.506085,6.13685,2.31327,5.7066,1.14187625,4.396965,3.735875,3.983085,4.892035,2.899995,2.5070033333333335,4.199645,4.529525,3.7558575000000003,3.7558575000000003,5.9104,1.790835,4.32825,6.684901666666667,3.26833,4.09782,3.29781,4.535695,3.7107,4.24837,1.3487775,2.230475,4.43445,4.38826,5.30595,4.33923,2.37891,9.215533333333333,3.55163,3.719645,1.6803714285714286,3.607135,2.24088,2.734593333333333,2.1007616666666666,1.29313,2.4971533333333333,0.937807142857143,1.1485057142857145,1.1485057142857145,1.1485057142857145,1.82785,0.579705,3.91352,1.30927,2.5354533333333333,0.873075,1.78828,2.6618,2.0032799999999997,0.7402425,1.6974,1.4113833333333332,2.5063066666666667,1.678622,1.678622,1.6876433333333332,1.9171333333333334,0.95403,1.75233,1.57222,1.2137666666666667,2.469185,2.117835,5.88425,1.3997725,5.4489,16.9984345,6.358245,3.267555,3.5845833333333337,3.3191100000000002,2.63693,2.77845,3.1731133333333332,0.7423475,1.0035,1.0035,0.6369375,2.38082,3.620635,3.338955,1.489328,5.0393,3.778635,2.50578,3.813155,4.92191,3.712895,4.11255,3.4496333333333333,3.223765,3.48849,5.60065,3.2132466666666666,4.935345,0.522646,0.522646,2.381675,2.810775,4.71279,3.454425,3.7868,4.59278,7.82915,7.57591,3.66125,2.2373,4.397315,3.490355,2.5330766666666666,2.356685,3.879635,1.4434633333333335,3.66256,2.262675,1.70686,3.3723666666666667,4.03908,2.049625,5.247263333333333,1.646195,3.449533333333333,3.053745,1.0860171428571428,3.6359999999999997,2.6727966666666667,4.47524,1.111145,1.7534775,2.294355,2.1253175,1.7539575,2.502975,1.9520475,1.984025,4.2365,4.58046,2.450775,1.932995,1.4216199999999999,3.6239000000000003,2.0100233333333333,2.613325,4.62457,7.1224,2.5126708333333334,3.07141,3.526505,3.52336,2.52981,5.1129,3.982285,2.833625,1.3701875,4.47275,2.27317,3.0695533333333334,2.479265,4.432825,4.94116,5.6139,2.206253333333333,2.6415266666666666,2.8526399999999996,3.3901333333333334,1.9494833333333332,1.531192,5.44935,3.311123333333333,2.244086181818182,3.116236666666667,2.962376666666667,2.22581,3.1801,3.113436666666667,3.489966666666667,5.22885,4.375905,2.9985933333333334,4.891055,3.253905,2.316155,3.6966,3.78551,3.763285,5.996862999999999,1.8326360000000002,3.870045,2.39507,4.115865,3.66359,0.5716675,2.38656,2.38096,3.245265,2.787075,2.293015,2.85448,0.601891,2.7739066666666665,4.513455,2.4594025,4.16275,2.4774866666666666,3.922155,1.898445,4.48026,4.51197,2.01224,2.84313,6.9048625,3.91106,4.517265,4.715535,6.9124367045454544,4.395415,4.294685,2.1853975,4.524775,3.085075,1.9793133333333335,1.924805,2.4537299999999997,1.0007314285714286,2.5593366666666664,2.33311,2.5976933333333334,3.2851933333333334,1.7803080000000002,3.212785,1.9147433333333332,4.32295,5.2559700000000005,1.02800625,1.8539966666666665,2.5165166666666665,2.8570166666666665,2.015143333333333,1.11246,5.4235549999999995,2.1213525,2.682283333333333,2.786713333333333,2.538656666666667,2.8283966666666664,3.156815,2.27701,2.77908,2.1964266666666665,4.012265,3.511155,4.031175,3.058403333333333,2.9984966666666666,0.7250530000000001,1.8998466666666667,2.1519325,1.9984433333333333,2.5139333333333336,1.1797466666666667,2.70497,2.9070199999999997,3.87713,1.8807233333333333,3.41359,3.211095,5.0379,3.34271,0.6181508333333333,2.0611,2.8329066666666667,3.195956666666667,0.7918854545454544,2.6888900000000002,3.3925800000000006,3.480233333333333,2.9426733333333335,3.213410833333333,3.7108,3.8815000000000004,3.05116,1.9059975,5.4862,5.0447,4.90387,5.3683,5.62525,1.8424733333333334,3.418195,3.7067333333333337,3.3935333333333335,2.90451,2.8087199999999997,3.840733333333333,3.4342666666666664,2.9321366666666666,13.81848,4.48874,1.05201,2.7924066666666665,1.549404,3.309036666666667,3.315326666666667,2.1587466666666666,5.720360833333333,6.502037333333334,2.2961066666666667,0.8417830000000001,4.1234,3.4781,3.09762,4.63347,5.0682,5.45565,4.80929,3.478195,1.9326875,6.46391,1.1965933333333334,6.430645,4.741815,2.3855,4.148675,7.033081666666667,5.8537,2.180286666666667,1.5187249999999999,1.972025,6.630623333333333,1.5285625,3.04766,2.542791666666667,4.087523888888889,5.85665,4.3089,6.4602,3.436825,5.2438,3.75253,8.64992,4.85408,5.9322,2.36261,2.541525,11.117553333333333,3.433835,2.38236,2.4555599999999997,1.6827666666666667,2.2705866666666665,2.90809,0.70990625,1.108096,1.0831442857142857,3.222195,7.003796666666667,2.9925093333333335,1.4476866666666668,4.77978,3.53688,0.578913,4.835585,3.91942,4.628735,3.793655,3.346345,2.7117633333333333,4.27326,10.2194,1.76508,3.96888,4.096675,4.52381,3.852475,0.8266483333333333,3.6535666666666664,3.9042333333333334,1.7262266666666666,2.5372333333333335,2.3406033333333336,2.4636733333333334,2.25346,2.2281566666666666,2.274195,5.945381428571428,5.20775,3.723015,5.269411666666667,1.8021466666666666,2.3984725,4.777515,4.25116,4.554565,4.16251,4.56591,4.66673,1.697676,3.8265,7.48985,1.3098533333333333,1.6927233333333334,2.4170833333333333,2.81028,2.8442666666666665,4.816795833333333,0.7759357142857143,2.51691,3.35864,6.23155,4.65333,2.0662,2.86532,1.9964475,0.54799375,2.3717025,2.987065,7.71361,4.37561,4.715975,0.853877,4.250933333333333,9.173856083333334,10.624378333333334,3.29622,1.21720125,3.528825,3.598495,2.5089566666666667,5.332066,4.850695,3.846355,2.0883875,3.7304,2.2444566666666668,2.56857,0.7672563636363635,0.37817333333333336,2.5407,3.355645,1.8939508333333333,3.418175,3.1782466666666664,4.10033,5.10085,1.5493359999999998,2.9863866666666667,1.95487,1.95487,2.214405,3.01212,6.239,2.657833333333333,2.3875033333333335,3.235743333333333,3.4273666666666665,4.21163,4.243345,4.394605,4.116725,4.004235,4.11391,6.95405,7.857030833333333,1.9324325,2.2006433333333333,2.9819666666666667,0.9689983333333334,0.7171908333333333,4.7011,2.292735,5.1904,2.8863,3.0007866666666665,1.7664380000000002,1.5361675,3.699785,4.276155,4.22714,1.9620499999999998,1.2488233333333334,2.6274533333333334,1.8554766666666669,2.6493966666666666,1.15922,1.15922,2.7502133333333334,4.49167,2.619505,3.31583,3.26162,2.193675,19.95688646969697,3.99665,5.2949,4.481345,3.957695,3.787755,3.640865,5.5077,6.346080000000001,0.9040933333333333,0.9040933333333333,0.9040933333333333,2.7687666666666666,1.7155857142857143,3.3285,4.341225,4.19685,3.15193,4.016005,4.375595,0.8052888888888889,2.1231166666666668,2.2390333333333334,6.0976575,3.3684575,4.1979,5.0388,1.740285,2.0012033333333332,2.3275099999999997,0.52285375,0.833352,1.991785,1.97362,2.84844,13.127278333333333,2.5436433333333333,5.1915,0.6634342857142858,9.3368075,5.3897,3.723845,4.075975,2.679325,5.38165,2.679325,2.835874,3.23573,3.880825,3.394705,3.95472,4.26611,3.575695,5.95765,6.90105,1.84729,2.2425420000000003,2.733965,26.331608555341056,1.387194,6.20425,3.6297360000000003,3.71533,4.18107,4.26606,2.76733,2.36065,2.48324,6.67825,7.06835,4.546635,4.63146,4.288305,1.816055,2.006365,4.178785,0.4155738461538461,0.4155738461538461,0.4155738461538461,0.4155738461538461,4.19988,3.3124000000000002,1.0319766666666668,1.9696999999999998,1.1853777777777779,4.770685,2.44612,2.34333,7.073433333333334,3.2474633333333336,0.1662055172413793,20.341367833333333,4.536571666666666,1.7933119999999998,1.3315303571428572,2.14712,2.00004,2.2621675,4.613265,3.08486,3.438935,4.29535,2.098663333333333,7.1823749999999995,2.888515,2.007885,3.68161,5.8016,8.785463333333334,4.372105,0.2991878048780488,3.58262,3.792475,2.86701,2.051805,3.0492666666666666,1.62249,1.62249,4.15368,5.643665,11.0540725,8.89935,0.5729666666666666,2.51296,3.78078,3.24362,4.23397,3.74248,1.474342,1.474342,3.21954,3.86709,2.35698,3.178715,4.43433,5.32815,7.036754999999999,2.0939,4.907265,4.22306,2.661345,3.0487966666666666,3.0640033333333334,4.837325,4.09122,5.4793,4.19541,4.327145,3.907475,4.325445,4.265115,5.3405,2.719246666666667,3.1390666666666664,1.13154,4.404065,4.18356,3.872965,1.597522,2.002186666666667,3.6114333333333337,2.75119,2.352186666666667,4.0926833333333335,1.6302733333333332,2.012845,2.7085166666666667,1.7976066666666668,2.3114866666666667,1.79783,3.9446666666666665,3.10872,4.040733333333333,3.403575,2.1333166666666665,2.64662,2.0605866666666666,4.029895,2.03237,38.63162441666667,2.183515090909091,2.183515090909091,2.501793333333333,2.3021433333333334,2.2430833333333333,1.6783966666666668,2.8687666666666662,1.7592100000000002,0.7983153846153846,4.98478,6.7566325,4.186045,4.037085,5.6857,1.8747,4.40344,1.7815539999999999,5.0827,4.493145,5.6117,3.92912,1.695205,3.91565,4.307835,4.52418,5.23945,5.433,4.08878,2.95068,3.3560666666666665,2.6280566666666667,2.01737,2.070435,4.53834,2.5709866666666668,3.799995,3.799995,2.2617533333333335,1.5415466666666668,2.2109866666666664,2.5074,2.21742,5.61441,2.7355366666666665,1.1652766666666667,1.1652766666666667,2.095476666666667,1.8152866666666665,2.5056966666666667,2.56606,2.4807900000000003,2.4301033333333333,2.1810533333333333,2.16466125,2.9663226785714287,1.6293926785714286,0.8016614285714285,61.85098646428572,2.343512,3.339166666666667,2.359902,0.818458,3.8843506666666663,1.552184,1.552184,2.9237133333333336,2.9711533333333335,0.82773125,2.9496033333333336,5.79779,3.419833333333333,2.4903366666666664,2.8755166666666665,2.1756166666666665,2.792986,0.31075125,3.3040233333333333,0.751986,2.512776666666667,1.206248,1.206248,3.3801666666666663,2.08866,2.8430933333333335,1.65188,3.4113,1.65188,2.13556,2.6578399999999998,3.033466666666667,1.3624,1.3624,2.9671033333333336,1.4789966666666665,3.3128333333333333,2.16615,4.26933,3.61241,12.389683500000002,7.0454225,3.327495,2.513535,3.699775,5.146,5.4715,2.7419133333333336,3.846825,3.716855,2.228946666666667,4.156475,3.28881,2.9087266666666665,4.78138,2.3826466666666666,1.0328857142857142,3.8164054166666666,2.9543466666666665,3.033865,0.7784514285714286,2.584735,3.508095,4.13276,4.419305,6.6089,1.9078,1.9209340000000001,4.31767,4.25275,2.376725,2.4831374999999998,2.02375,2.1471833333333334,0.92502,4.98335,4.23091,3.54677,3.868415,3.052826666666667,4.9035,5.18435,2.701563333333333,1.7129200000000002,0.5171606666666667,13.858751666666667,0.5019427272727273,0.5019427272727273,0.5019427272727273,3.025786666666667,3.772133333333333,0.5019427272727273,6.73996,4.167,0.725002,0.725002,3.5506666666666664,3.25137,3.122875,4.417015,4.96142,4.2051085,1.9969575,4.889061999999999,3.226955,3.541358511904762,4.97665,2.94036875,2.347845,2.359775,2.68875,1.63729,3.2845466666666665,3.0413566666666667,2.26984,2.1776975,1.9335325,1.7579666666666667,1.681935,2.600175,1.0674788888888889,2.4634,0.5946971428571429,5.22435,1.8012275,0.6616541666666667,2.21933,7.813425,2.7474,2.077303,3.422155,7.30272,2.541655,4.40606,2.939915,6.01822,3.55329,3.72438,4.014545,4.286775,2.9649533333333333,4.19865,1.0988357142857141,4.237805,2.43348,2.5474866666666665,2.51913,2.376515,2.06736,1.2443375,5.61655,0.9542090909090909,4.90835,5.47905,5.1095,5.39335,3.6554,2.4309266666666667,1.945018,2.861826666666667,2.98991,2.4836,3.859166666666667,2.6909,5.0792,1.8132819999999998,39.994036031746035,4.87665,2.4855300000000002,2.3685433333333332,2.9231166666666666,1.53686,5.993436666666668,3.87541,2.3405833333333335,2.97282,2.3195900000000003,1.621465,5.22925,0.8050785714285714,4.525382857142857,1.3045985714285713,3.455,3.392533333333333,2.7206966666666665,1.3685625,4.434690666666667,1.686086,1.686086,2.4494599999999997,2.8365074999999997,3.450466666666667,3.4728333333333334,1.4373333333333334,2.888716666666667,2.6871233333333335,6.270936833333334,2.8417366666666664,4.0066,1.4624249999999999,1.3987999999999998,3.0416566666666665,0.981282,5.340046666666666,3.2735,2.9271166666666666,3.6201333333333334,2.9001699999999997,2.73925,3.14728,1.7108400000000001,2.39878,2.5135733333333334,3.4672,2.493583333333333,3.7859,2.083413333333333,0.6145166666666667,9.68899032051282,2.7348966666666663,5.29575,4.782985,2.836446666666667,3.10018,1.32071,2.086863333333333,1.89442,1.32071,4.187325,0.46252875,0.46252875,1.0022225,1.0022225,1.071535,1.071535,2.728155,3.09146,2.529055,1.5237,2.1886,3.416545,3.0938,4.494455,5.22645,1.9154140000000002,4.348255,2.28233,4.667576410256411,1.664775,1.664775,1.986025,1.68869,3.7273658333333337,1.9352425,4.459885,1.5551566666666667,2.61605,0.5441161538461539,1.1650785714285714,2.1565875,2.16716,1.9342775,1.33784,4.25228,4.19619,2.279316666666667,2.437,1.31934,0.694925,2.2461166666666665,3.38235,3.1241533333333336,4.509165,5.06875,4.939485,3.78098,7.5337250000000004,1.6054466666666667,5.92221,1.807595,4.69335,4.61533,5.712921,3.270113333333333,2.32693,1.7852025,2.00142,2.00142,2.5936,2.5936,4.278985,5.73895,0.93948,3.816905,3.337835,3.530755,2.62812,1.40946,2.8290066666666664,4.063525,4.149675,1.7160959999999998,6.651,5.0432,1.5591366666666666,1.289225,3.97523,4.080256666666667,3.77578,3.630875,3.92344,0.6165992857142857,3.6282666666666668,3.202733333333333,2.7608466666666662,2.88693,2.2371733333333332,3.5966666666666662,1.5841999999999998,1.5841999999999998,1.5841999999999998,2.95752,3.169086666666667,2.8485566666666666,3.366586273809524,2.27278,1.215172857142857,3.1514633333333335,3.2073199999999997,1.36318,2.8335133333333338,2.6453266666666666,1.168445714285714,2.658186666666667,2.8426733333333334,2.955553333333333,2.6757933333333335,2.58306,1.9540375,3.191133333333333,4.630861333333334,3.782535,0.968949,1.446296,0.56803,3.6334999999999997,8.897735,3.0839133333333333,3.298865,3.3596333333333335,4.246535,1.881705,7.590318333333333,6.712773333333334,2.6761966666666663,2.1957079999999998,4.13301,4.945365,1.5527900000000001,1.296362,1.36996,1.97931,10.59114,2.61467,3.055293333333333,2.9029316666666665,3.795055,2.2305800000000002,1.12914125,3.920115,1.0669266666666666,3.4876765384615385,4.21457,3.288425,3.278173333333333,3.151035,4.976,1.185225,2.1729,1.9233603333333333,1.9233603333333333,3.69821,5.7062,10.3467425,4.27836,3.40304,4.74449,1.76199,2.2606783333333333,4.412255,3.716315,3.860655,1.5520133333333332,2.9710433333333337,3.450685,3.83349,2.4181,4.05834,3.80862,3.84846,4.153775,3.98728,3.561035,5.20435,3.1017200000000003,2.5560966666666665,4.30361,3.019515,3.855525,2.00271,2.62664,2.661055,5.4879,2.425065,3.2122410795454543,1.66275,2.544675,3.15789,2.1659425,2.074065,0.6550216666666667,0.6550216666666667,1.74328,3.7485909090909093,4.094435,2.9010366666666667,4.53132,3.1191691666666665,2.4824182857142856,0.9994125,2.425805,1.38817,4.104955,4.101505,0.89665,1.803615,3.973165,2.9543825000000004,1.6326925,1.6563400000000001,5.347645714285714,0.9687683333333333,2.613795,3.266405,2.764265,2.50198,2.763044,2.174455,1.020965,2.886975,2.973935,3.39352,1.4340766666666667,1.5236366666666665,1.806755,4.327585,2.27035,4.53378,4.564595,4.381565,5.996,5.1813,4.124765,5.968695,4.088598571428571,0.7880518181818182,2.9313,4.14057,3.999625,0.4779363636363636,1.000912,3.015585,4.251065,4.81441,4.316965,3.352829642857143,2.770805,4.61085,1.7449999999999999,2.486925,4.458315,4.1860625,3.363635,2.968465,3.64634,4.749885,2.899355,5.1097075,0.9308350000000001,3.241215,2.60369,4.23338,4.321955,4.541185,2.08974,2.578095,2.98574,1.8982166666666667,5.0654,3.268485,1.3684028571428573,2.72984,3.8267550000000004,1.539566,5.83826,1.859224,2.51702,13.400837195906432,2.9002733333333333,1.5304333333333335,1.640135,2.1917066666666667,5.525116666666667,1.6439039999999998,5.613731666666666,0.6829430769230769,3.0103266666666664,4.168615,7.454485,2.50354,2.83081,2.83081,4.67073,4.34349,3.437925,3.338315,4.95205,5.2277,2.459975,3.2106933333333334,4.66669,1.216455,2.3927333333333336,4.5655,3.995485,2.983185,2.30242,3.46642,3.56311,6.176895,6.0813875,0.6835180000000001,4.065825,3.20039,3.5979666666666668,4.372855,3.93342,3.860585,1.341146,4.90926,2.357985,2.72609,4.14953,4.23458,4.40269,0.9101296428571428,2.691796666666667,8.624765,1.5077533333333333,2.190282857142857,2.31925,3.825635,3.55414,3.30147,0.6549427272727273,2.3216925,1.6170475,2.21604,4.301375,5.3229500000000005,2.73286,9.038885,2.3360833333333333,2.62776,1.0205899999999999,4.318195,5.2809,2.22415,5.462963333333333,2.830495,3.196825,5.2817,4.425855,4.724955,2.1221,1.6618425,1.6618425,2.91943,3.417035,4.816604166666667,1.4736875,6.024850000000001,1.5701466666666668,3.64823,1.3045866666666666,8.759814666666667,4.750035,2.694455,4.459115,4.10061,3.808145,1.15689,1.906535,3.5401666666666665,3.1889333333333334,3.3460666666666667,3.687466666666667,3.792585,2.70231,3.05679,3.263395,1.66431,2.5526633333333333,1.88635,2.8661333333333334,1.9218666666666666,4.887838333333334,3.20469,1.7361833333333332,2.8689400000000003,3.301715,3.42561,6.4124,6.16145,2.937955,3.43679,2.8126,3.072555,2.947475,1.2861366666666667,0.95618,6.54673,3.025105,6.03285,4.421585,6.43195,2.776275,2.775726666666667,6.65045,2.675145,0.42864888888888886,5.77895,3.16285,3.79809,3.4120000000000004,1.4093485714285714,4.10804,1.12033,4.539665,0.8930025,1.3987166666666668,3.1347666666666663,2.4229333333333334,2.6942864285714285,3.5518,4.75592,5.9247425,5.9247425,4.860402499999999,4.860402499999999,4.72188,2.8259133333333337,4.33496,0.99623125,5.9822,3.47077,3.6013333333333333,4.25489,3.85488,4.224485,1.8295575,4.62489,3.128698,2.8888,4.288585,2.58127,5.04865,5.3799,3.51924,3.162735,5.0803,3.531175,5.28425,3.15257,2.672703333333333,6.0761,3.967545,2.8743499999999997,6.23582,1.5251400000000002,1.9940675,4.431905,4.271475,5.11175,3.90368,2.013908,2.013908,12.8616645,11.8138,4.92559,3.316705,2.9508889743589743,4.419755,4.666725,2.5391933333333334,3.2290166666666664,3.205405,4.014966666666667,3.7363,4.854335,2.08772,8.388026666666667,2.412885,2.0667375,5.832,2.257245,5.01315,4.36901,4.75141,0.743771111111111,3.350665,3.6266,0.90829,2.88082,3.7636016666666667,1.42321,1.87402,2.792533333333333,2.7261733333333336,2.385353333333333,3.240066666666667,2.23366,0.46758500000000003,2.52778,2.7005766666666666,2.792536666666667,3.21509,1.590388,2.99124,7.011673333333333,4.33896,2.3131833333333334,2.0868966666666666,2.603073333333333,3.65722,2.566545,3.5238125,18.3480475,5.8231,3.4175180000000003,4.687015,3.753065,5.473016666666667,1.6677666666666668,5.7862,1.4904483333333334,4.666235,4.41211,5.46685,4.96504,0.9862799473684212,6.1284,2.369455,4.927005,3.174215,4.2581,3.58645,2.845035,2.3051366666666664,1.590902,1.9164575,4.1797,4.67685,2.27749,1.725185,2.90772,4.035073333333333,3.005653333333333,6.3346,2.11009,3.738555,4.320265,4.33821,4.05359,3.17442,3.985,4.920215,4.020945,2.7273333333333336,2.7273333333333336,5.361108333333333,1.9275433333333334,2.6929266666666667,3.879025,1.7992979999999998,7.63003,3.68694,4.492163333333333,4.332866666666667,4.37723,1.8246259999999999,4.346485,5.42725,3.893245,2.05803,3.63987,3.271845,1.22303,1.41664,1.2342333333333333,0.6966716666666667,1.6822166666666665,0.9744583333333333,4.665345,1.0039655555555556,2.58266,1.6661866666666667,1.8486725,1.0429466666666667,1.96436,2.2401225,1.5643125,3.1159700000000004,2.6474866666666665,4.78943,1.5564933333333333,2.627825,3.161046666666667,3.0448166666666663,2.37784,4.4118125,4.6893,4.74317,19.80715375,2.6701866666666665,2.15049,0.6526207692307692,0.64729,4.159506666666666,1.95305,3.908635,4.711615,7.3148238333333335,3.79083,3.809915,4.14754,3.2706766666666667,3.0853033333333335,3.1471066666666663,3.6125666666666665,3.0955266666666668,6.4147,3.81203,0.928106,1.12110375,5.41075,3.24597,2.5530166666666667,2.1527833333333333,2.2689833333333334,5.4965,4.83807,2.4118925,2.27749,3.529465,4.73059,8.4453,4.947112083333334,4.31107,4.004285,5.35175,4.78088,4.24082,4.694375,3.973495,5.2744,2.7681,5.51945,1.5757714285714286,5.11525,0.7399333333333333,4.964035,5.4315,6.1118,6.2775,4.535185,5.8378,5.6906,6.2186375,1.8630333333333333,1.5418142857142858,5.5428,2.88845,6.124935000000001,5.13155,5.524085833333333,5.21175,6.11125,1.3325328571428572,4.389325,5.28425,4.11,4.71793,5.4427,2.575075,4.141105,3.15999,4.42203,0.9942166666666666,1.6049866666666668,1.3870179999999999,4.759575,4.272185,3.28876,2.012993333333333,2.9760733333333333,1.6236466666666667,2.1500833333333333,0.4132,3.4868666666666663,1.6485379999999998,2.2073650000000002,2.7989466666666662,2.2698300000000002,3.1804799999999998,2.5201,2.537175,10.183781333333334,3.820733333333333,1.7979465384615383,3.668635,0.8816381818181818,4.5818674999999995,1.1502425,1.767245,1.8936625,1.0527625,5.803749333333333,1.1405780555555556,1.1405780555555556,1.1405780555555556,3.0727333333333333,1.969632,4.89587,3.036425,1.434365,1.59358,2.2515725,1.2664125,2.02108,5.237360000000001,0.8350244444444445,4.2227,4.217735,3.0790333333333333,1.0005328571428571,2.2061725,1.8865975,1.8865975,1.51018,3.5855625,4.51741,4.885155,5.58215,4.221185,5.31995,2.893876666666667,2.0220075,2.79083,5.1463,3.018145,4.13133,1.03549875,3.8766760416666664,5.59995,1.8843475,3.83334,3.1243466666666664,4.616175,4.79279,2.603365,6.77605,6.368,4.000695,4.464875,4.20386,3.196285,7.92416,4.042555,5.260423333333334,3.43903,2.7226233333333334,5.4945,2.6511,5.69945,4.42946,2.7441633333333333,3.28279,3.922985,1.2860266666666667,10.4992975,3.67136,3.09948,15.182560595238096,4.25557,1.7989066666666667,2.8322766666666666,2.146,2.65105,3.68859,2.600324027777778,2.972835,2.88554,3.024345,4.276825,6.517995000000001,1.2325666666666668,2.0125825,4.216025,4.418905,4.761955,2.29168,0.5663093333333333,4.57238,4.18672,2.0339875,1.4033749999999998,4.62126,4.32199,0.90347,3.775375,12.686715833333333,1.3077967142857143,0.4240157142857143,3.585566666666667,4.45313,1.0801944444444445,3.78987,4.023005,6.317121666666666,1.3513216666666665,3.252095,3.99363,3.33425,4.464155,4.39425,4.477705,8.53894,3.39142,3.913795,5.46665,16.160683125,3.432735,2.73585,1.171825,2.030415,1.4408825,2.26630875,1.3160725,1.9955625,1.68828,1.9481125,2.4227225,2.3803,2.22385,5.57165,4.632665,5.70165,3.187165,5.797281666666667,2.887696666666667,5.04825,3.5203,1.2511875,3.76489,2.0177925,2.8904466666666666,4.73091,4.502345,4.849975,4.39207,3.1458266666666668,3.6218,2.50406,3.356425,3.758655,2.26292,1.967875,3.4636333333333336,4.26603,3.921155,2.3898366666666666,12.5025,0.6817933333333334,2.7284,4.56529,2.475315,1.051914,2.72622,7.318005,7.223793333333333,4.422495,3.91139,4.169305,2.048295,2.167345,2.897910333333334,2.0772533333333336,3.675735,4.34683,4.17399,0.45319866666666664,6.2032,3.2032366666666667,3.2771899999999996,3.5653,6.2576,8.8800285,4.385491,1.0519075,2.22391,2.5693,3.87089,2.520825,4.20111,4.523395,3.4639333333333333,2.7730433333333333,4.165615,4.166005,3.78711,3.9037,1.8400999999999998,3.39433,5.2545,5.55325,3.0025633333333333,1.47412,2.2811566666666665,15.028029183566433,0.5103636363636364,1.478935,1.478935,2.4003033333333335,4.479333333333333,3.80152,4.556925,3.12257,2.965395,4.26506,3.0750499999999996,4.170075,3.0750499999999996,3.496845,1.85699,1.58126,5.8268,2.665675,4.38692,3.23866,2.69244,6.276046666666667,2.0622366666666667,4.68894,5.0552,3.520615,3.361655,4.82595,2.0321000000000002,4.9281,3.3661825,7.070376666666666,5.233154166666667,2.6523,3.882855,5.3493,2.110505,2.5637933333333334,3.5408333333333335,0.42874642857142853,3.269956666666667,10.347926666666666,3.9366,3.380425,5.1367,3.1323075,3.192535,1.3348385714285715,4.11657,5.56985,3.286965,2.192065,4.462655,3.569875,4.21493,4.34107,2.80595,2.80595,4.11405,2.822635,2.5535188636363637,1.76189,4.81923,4.081605,0.994,3.852035,4.9948,2.837756666666667,7.02307,7.25656,1.492636,4.205865,4.82311,6.859596,0.667993,7.553263333333334,3.5422241666666663,0.5855263636363636,5.22345,5.36465,4.90181,4.30704,4.69101,4.3405,4.93695,4.010875,3.84095,4.466045,5.22595,4.77443,4.70639,3.924395,2.52529,3.980685,3.051445,0.952447,4.32852,2.471,1.739505,4.2982,4.53868,5.79485,1.01607,4.95815,2.89905,2.67633,1.586155,1.2702233333333333,11.736139166666666,2.4457866666666668,3.02783,1.87781,3.8052876190476193,5.468653333333333,6.2049,2.6576066666666667,1.9484566666666667,2.0974399999999997,2.0974399999999997,2.0974399999999997,1.444,3.73736,3.885495,3.391315,4.69664,8.241345,4.029715,1.091442,2.19679,3.334025,2.460755,1.7720680000000002,3.98309,3.081305,1.46312,3.11828,5.4396700000000004,5.98295,3.93641,4.18839,3.1136533333333336,5.00215,4.635255,5.177766666666667,1.69333,1.69333,4.15498,3.75237,2.7268909999999997,2.7268909999999997,3.901895,1.0479914285714285,4.80866,3.349885,4.174955,3.69588,4.059545,3.18192,1.0024642857142856,4.20953,5.2044,4.50355,4.63558,4.878155,4.80969,4.376895,1.972895,1.4936575,3.36245,3.791835,3.319785,4.430825,2.123015,2.8114524999999997,5.48305,2.77611,4.871295,7.382289999999999,2.29154375,3.016591666666667,4.324556190476191,5.013035,1.6252025,2.1736154761904762,1.1457783333333333,2.1736154761904762,1.6038466666666666,1.6038466666666666,1.5041740000000001,4.971675,3.227665,4.051335,2.572385,3.825215,1.4727350000000001,5.3503,3.027875,1.7331475,2.973176666666667,3.53492,3.92262,6.478813,4.62974,1.2885360000000001,0.9136733333333332,3.450175,6.709923333333333,2.4286499999999998,3.558105,3.33649,3.33649,2.365335,3.36477,3.205325,1.414622012987013,3.0646066666666667,3.31826,2.91504,4.376985,3.736805,1.496175,3.49777,4.483725,4.263785,5.1262,4.41507,1.70056,2.146815,1.3504833333333333,2.191285,3.443725,1.891315,4.337415,3.141386666666667,3.194215,3.92875,4.882995,1.092185,0.936496,1.8205966666666666,1.1729425,1.1962222222222223,5.17635,4.03493,1.13154,0.13517478260869567,0.13517478260869567,0.13517478260869567,3.680155,5.696038333333334,4.359535,5.3777,5.0186,5.17455,4.42727,4.445075,2.71948,3.379565,1.6988625,4.758635,3.83964,4.00736,4.19524,4.20185,0.6894454545454546,0.6894454545454546,0.6894454545454546,0.6894454545454546,1.061016,1.061016,4.07796,3.99515,3.66172,2.72567,2.585265,5.35005,5.0924,5.4892,4.238595,3.109766666666667,2.5307366666666664,9.84167,1.55394,1.55394,4.181145,5.3527,3.2686333333333333,0.46252875,0.46252875,0.46252875,0.46252875,0.46252875,0.46252875,4.811998333333333,5.08605,3.476995,4.41524,2.8089625,2.8089625,2.824565,3.3065816666666668,2.50162,2.659455,3.26935,7.066272333333334,1.412144,4.594385,3.45492,3.88297,8.880823333333332,2.291116666666667,2.71799,0.92889,2.15072,5.07175,2.970855,0.89601375,2.86849,4.130045,5.49985,2.6901,4.749732083333333,1.1651333333333334,1.8650433333333334,4.872675,4.850705,2.885156,2.5434066666666664,2.2242566666666668,1.3518383333333333,7.097228333333332,3.445733333333333,2.0576033333333332,3.02041,2.778826666666667,3.713325,3.74736,2.6303433333333333,3.190606666666667,5.8981,1.4768350000000001,4.29926,5.32995,3.33383,3.92232,2.009586666666667,3.07749,3.71338,3.56138,2.864775,4.84529,4.641075,2.758953333333333,1.97154375,2.8922633333333336,2.8534433333333333,2.9234299999999998,0.7895263636363636,2.1894325,8.3575325,0.45412625,2.9243166666666665,1.5333566666666665,2.4515166666666666,3.3313066666666664,2.8238,1.2764555555555555,1.745112,2.7358233333333337,2.16821,3.681935,2.01146,2.7277299999999998,1.5049466666666669,3.0700700000000003,1.911005,1.1425185714285715,2.8283733333333334,2.0185125,2.40018,2.6887233333333334,3.149453333333333,3.2104133333333333,3.3538,3.2053966666666667,2.82404,2.5801266666666667,2.7776666666666667,2.490565,1.7108566666666667,2.38548,2.62112,1.7428833333333333,3.0751333333333335,3.833858571428572,2.8657866666666667,2.489873333333333,2.894223333333333,3.6213333333333337,4.748380833333333,3.0768799999999996,1.7767185714285714,1.7767185714285714,2.3736625,1.161915,2.509825,3.3726366666666667,4.563734166666666,2.791375,2.124315,2.010935,2.0672875,3.714885,3.041895,4.07676,3.301865,1.704305,2.2106966666666668,4.17765,1.148992,1.148992,2.107365,0.6382030769230769,2.426466538461539,1.5892375,1.5892375,2.7548866666666663,2.4079333333333333,2.7362933333333337,2.656693333333333,1.9502325,5.486336666666666,3.9074675,3.9074675,3.65131,3.217915,2.272485,3.045975,2.444125,2.93628,5.2267600000000005,0.5111466666666666,0.677486,4.1748,2.374515,2.89365,6.4939816666666665,3.66246,1.6177540000000001,4.9916133333333335,4.699465,4.093595,4.23853,5.4179,4.793995,13.645595,3.458105,1.5743033333333332,2.962935,3.9509,5.07875,3.20495,3.984515,4.08593,3.65252,5.00275,2.8210633333333335,2.924935,2.6755066666666667,2.40698,2.40698,4.09872,2.784635,3.005515,3.76903,2.515235,2.588805,2.1865725,1.9012125,1.96799,2.081425,1.668965,3.4331035,3.482645,2.74524,6.5114275,3.21898,2.3406266666666666,2.2192666666666665,3.21479,3.92239,3.748525,3.1936593749999997,3.409055,3.083585,4.27282,3.62252,3.797215,4.033645,3.5559909999999997,3.642755,0.6428483333333334,0.6428483333333334,0.6428483333333334,3.369645,2.440125,5.7918,2.592265,3.64607,6.945208148148148,2.7854799999999997,0.35230884615384617,5.5207,0.7610089999999999,4.3988652380952376,2.08683,3.85349,2.019145,4.1043,5.185836666666667,4.26609,4.220885,2.8108466666666665,2.6730300000000002,1.498245,2.5782333333333334,0.4602568421052632,0.556485294117647,2.5984766666666665,1.4435333333333331,1.9033025,3.895915,2.64338,4.99187,2.76395,3.017568333333333,3.30901,5.78832,1.83825,0.9755885714285714,2.51147,3.3932659999999997,1.2287514935064934,5.00515,3.70371,3.800415,2.6602633333333334,4.23827,2.59295,2.49373,2.49124,2.46846,2.438356666666667,2.299675,3.244213333333333,2.3868766666666668,5.571395333333333,2.1701775,1.9319566666666665,2.2233566666666666,4.959507333333333,3.405224,3.405224,2.4749866666666667,3.799515,2.35319,3.29436,2.976915,0.561492,4.31589,1.8300425,11.646232222222222,6.67231,3.0405,3.4737,3.42441,5.26046,2.854455,3.6216,0.22085800000000003,1.9867075,3.635566666666667,0.8451,4.085285,1.3234571428571429,4.72805,3.084885,3.299045,3.205525,3.251475,2.24508,4.48942,3.759775,3.45905,6.74947,4.606445,2.897873333333333,3.0987633333333338,1.584052,1.977545,4.08438,3.67412,3.7433275000000004,2.65571,3.37519,1.337952,2.97347,2.890345,3.553125,10.475293333333333,3.71203,6.662211666666667,3.67802,4.306415,1.0103533333333334,4.685226,4.780395,2.50636,2.669836666666667,2.6683133333333333,3.2535166666666666,2.34986,1.9480166666666667,1.9176166666666665,3.296045,1.614932,2.756736666666667,5.006525333333334,2.7018166666666663,1.2132846428571429,1.2132846428571429,3.60416,2.925764,2.925764,3.8440666666666665,3.0111600000000003,3.3091656410256416,3.860666666666667,3.4031000000000002,2.7696166666666664,2.4839333333333333,2.41915,3.1983833333333336,2.21722,2.3495266666666668,1.620392,5.687022,9.004657666666667,0.5379030769230769,0.5379030769230769,0.5379030769230769,0.642411486013986,0.642411486013986,0.5379030769230769,2.968863333333333,2.97069,4.220015,1.4273316666666667,1.75524,3.360424,2.5064800000000003,2.9824966666666666,2.3653633333333333,2.93343,3.366233333333333,6.817851666666666,3.1109833333333334,2.4484666666666666,2.873746666666667,4.679285,2.377666666666667,3.5158,5.5246,2.3613766666666667,3.429866666666667,1.3922566666666667,1.3922566666666667,2.74845,0.5238331578947368,2.4965100000000002,2.69483,2.8465233333333333,3.3185266666666666,2.30841,1.6386666666666667,2.5770933333333335,2.8032566666666665,2.280386666666667,4.376075,2.522664333333333,3.43657,2.426865,3.37651,0.528016,7.427405,2.9862719999999996,2.9862719999999996,7.603208055555555,1.8013133333333335,1.8067866666666665,2.710103333333333,4.50013,2.4343966666666668,1.9012766666666667,2.6927766666666666,1.411305,3.4813666666666667,1.883,3.0053605,1.3251475,0.2787545454545455,0.2787545454545455,4.89121,3.779065,3.317835,2.8385366666666667,2.750675,3.38015,1.2587233333333334,5.58015,3.7745,2.952205,1.74963,1.1527491666666667,1.926875,2.710103333333333,2.83525,2.17357,6.033605,3.945915,4.368215,3.84065,2.20875,0.6873825,6.9828575,2.0349225,1.637305,3.31711,3.90341,2.223595,1.7595333333333334,4.53971,4.16101,3.098736666666667,3.1721466666666664,4.11013,4.15106,3.6601666666666666,2.380462,2.380462,4.06785,4.665275,5.4903,6.270883333333334,2.6802499999999996,3.940185,1.4002357142857143,2.594325,5.0865920000000004,3.81187,1.861762,4.86383,3.4685249999999996,3.615385,2.163955,4.075155,4.756665,4.65554,4.5535,2.356106666666667,2.5073166666666666,3.6534999999999997,2.17216,2.390325,2.65796,2.3506199999999997,0.702275,2.35911,2.8291233333333334,1.8160716666666668,4.496115,4.632825,4.649285,3.62294,3.288875,4.8143625,12.533805,4.87399,3.891925,4.45673,3.87607,4.548795,2.4759333333333333,3.317958,3.5522333333333336,1.21202875,2.839455,3.05404,4.595335,5.49595,4.372215,3.598133333333333,2.981056666666667,2.27917,4.168233333333333,3.806805,3.5290666666666666,3.806805,2.30252025,2.2406099999999998,2.448061666666667,2.10283,2.62116,1.8495233333333332,0.8366549999999999,1.3609416666666665,2.01909,2.02205,1.6362733333333335,1.40342,1.6116833333333334,2.844466666666667,1.5262259999999999,3.0465766666666667,1.3750333333333333,1.67697,2.67194,3.4227000000000003,2.4118733333333333,2.1107366666666665,2.333056666666667,3.233865,2.323925,2.842503333333333,3.0459833333333335,2.5502566666666664,3.0351466666666664,3.0916050000000004,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,0.1604409677419355,5.0455,2.814825,0.9884928571428572,3.080773333333333,2.616286666666667,2.8543333333333334,3.44194,3.09906,4.66601,3.317456,1.4421,3.10627,1.6357799999999998,0.99602,0.961792,1.6654633333333333,0.8759716666666666,0.7442941666666667,1.327712,3.190745,1.52114,1.636785,1.8550383333333333,2.3123650000000002,1.3930266666666666,1.2176666666666667,1.58065,0.9502466666666667,1.2652349999999999,0.7469199999999999,1.01989,3.320865,3.549495,4.2221,4.46814,4.0021,3.0591733333333333,4.88478,3.4608000000000003,2.0467925,3.63385,2.1013825,3.4424,2.0073433333333335,0.79829,4.328385,4.77864,2.142723333333333,1.28959,2.93207,3.374515,3.5855625,3.0396633333333334,2.60687,0.92493125,2.123245,5.04094,3.678835,2.47727,1.5617433333333333,3.76291,1.9436075,0.6016609090909091,4.509235,4.4341,4.193095,2.453655,1.453158,3.42398,4.24156,2.6140233333333334,2.58512,2.4956533333333333,2.66994,2.7672000000000003,2.85514,2.9922833333333334,1.2721375,2.51585,2.496966666666667,5.19825,4.432515,3.908585,4.725635,16.30500062878788,3.8218025,4.591198,2.770495,4.34088,5.0677,1.498436,2.008175,2.4052466666666668,5.777285,3.636955,3.394355,6.39895,2.4052466666666668,3.876705,2.121745,2.1014066666666666,2.8085299999999997,2.747536666666667,1.2008633333333334,4.28786,3.63512,2.496385,4.28614,2.3998166666666667,3.1159966666666663,3.68409,3.25662,4.425925,3.98735,2.68202,3.55201,2.824175,2.8307633333333335,1.229646,1.229646,3.2202633333333335,2.48266,0.3463057142857143,4.999401000000001,1.0067819999999998,2.828555,3.724115,0.5376500000000001,4.57891,8.014265,1.838625,3.62409,3.35714,2.5021166666666668,3.188875,2.328015,3.003165,3.47355,4.262685,3.299945,3.7907333333333333,0.9799916666666667,11.571023333333333,2.74683,2.898355,5.61585,2.59071,3.886765,7.628983333333333,4.06116,4.020405,3.821755,4.237695,5.4059775000000005,1.5861275,2.83097,4.582285,3.829133333333333,1.855294,3.81444,3.54217,3.5809,3.97546,4.159925,3.817445,2.599135,4.127815,3.84191,5.13695,3.32627,2.1502333333333334,2.303526666666667,2.0349933333333334,3.099933333333333,1.3778166666666667,3.7308,0.8409509090909091,3.1484,3.0610166666666667,2.58698,1.60703,4.25613,4.141725,4.171765,1.9161275,4.61976,4.00067,0.722852,0.32957000000000003,4.23484,5.32315,0.94568875,0.32957000000000003,4.64209,0.722852,0.722852,0.32957000000000003,5.439438333333333,2.3740833333333335,2.2895533333333336,5.4738,3.273555,3.13605,0.8223722222222222,3.265805,4.03843,4.670305,5.5891,2.1671575,0.7322523076923078,4.099211666666666,2.038936666666667,1.2223140000000001,1.752105,0.9774442857142857,2.2797533333333333,2.2177366666666667,3.64296,5.0687,2.7331,2.974686666666667,2.8749466666666668,2.20508,2.917345,4.479006249999999,1.73375,2.0073125,3.969415,5.1701,2.1156194444444445,5.28595,2.56626,4.12457,4.11196,3.08062,1.1845025,3.07797,6.7456,4.043465,3.485515,5.2332,6.2953,2.47978,3.316475,4.60283,3.28091,3.249515,8.27923,3.71451,4.8133,2.34664,1.28592,2.615886666666667,1.787625,2.019355,2.030885,4.11857,0.6325064285714286,3.280105,3.939305,1.9236199999999999,2.8640066666666666,5.07765,3.36501,2.807715,4.26014,5.15725,9.382929,2.69164,2.56137,1.6917380000000002,1.50354,1.2948866666666665,1.49468,2.7336566666666666,2.577933333333333,2.834296666666667,4.44927858974359,1.620135,2.34512,4.54466,5.2155,3.825935,3.420005,3.036485,2.609875,2.09557,2.078195,1.80511,2.090545,3.192135,3.823565,4.933575,5.2351,3.94525,5.443183333333334,3.27282,2.5009,6.443926666666666,3.232325,8.766255,4.918545833333333,4.918545833333333,5.337091666666667,1.5788733333333334,1.406955,1.3003933333333333,0.756769,4.877965,3.729366666666667,3.37852,3.37852,2.10102,4.31958,4.266005,4.27116,3.95893,2.7705133333333336,2.696,3.56991,3.0260466666666663,5.208056666666667,3.514405,0.7387954545454545,5.1187,5.0566,4.259305,5.01335,3.23433,6.0287,4.187415,0.8103461538461538,5.45315,7.066118333333334,3.39705,5.7064,5.7312,3.46121,2.835725,3.746815,6.10135,2.086805,5.8572,1.8805975,4.716635,2.5271033333333333,2.2173125,0.9308350000000001,3.061635,5.9213,3.473485,3.801485,1.9947266666666668,4.906055,8.17723,3.783255,4.273875,2.653775,2.42174,0.8721650000000001,4.767145,1.52471,3.4322274999999998,3.4322274999999998,3.670715,2.2622633333333333,3.049106666666667,3.689495,1.8059125,2.7930499999999996,3.3560666666666665,3.3815666666666666,2.961985,3.778465,3.02145,1.87916,3.202173333333333,2.1019925,3.0591500000000003,1.9511333333333332,3.0428266666666666,3.1222499999999997,1.3821657142857142,1.7266766666666669,0.5252450000000001,1.3059016666666667,0.5252450000000001,0.5252450000000001,1.7266766666666669,0.5252450000000001,3.4865,3.13513,3.13513,2.835226666666667,4.196335,3.753985,4.10543,5.3259,5.2484,3.609325,3.973805,3.97831,1.9394825,2.434092166666667,2.467633333333333,0.8037554545454545,5.47005,2.9455566666666666,3.0748366666666667,5.6208,4.51568,5.21785,3.366345,2.610323333333333,2.938595,3.45999,2.69138,2.870706666666667,2.0881633333333336,5.2358,0.8855977777777777,3.72192,1.0529557142857142,3.55383,2.6416333333333335,2.9150066666666667,4.106915,4.23698,3.80341,4.563495,4.06826,3.7616,4.2921,4.064015,2.479715,2.719025,3.3087966666666664,4.19202,2.718465,3.336645,2.677315,2.973405,3.1176,3.61508,4.90801,4.69871,4.1054,68.31332987912089,2.673906666666667,3.88066,15.967787333333334,4.222645,3.0550833333333336,2.156023333333333,1.9448466666666666,2.7433033333333334,4.41604,3.03807,4.07534,5.6676,3.32331,7.264144999999999,5.09605,2.34067,2.95176,3.573275,3.445415,1.873682,1.0880675,4.62205,2.692175,5.895983333333334,3.600915,2.2411066666666666,3.50229,3.502945,4.54984,2.947335,5.682225,4.32971,3.66465,3.02346,2.51355,3.005195,6.35315,2.62353,3.55753,4.325107916666667,1.2289166666666667,2.54597,5.0816625,3.10311,3.255335,3.63296,3.05607,4.09532,3.33559,3.242785,2.78213,4.5088,3.0599,3.33176,4.38461,9.756845,3.232693333333333,4.138975,5.51475,3.378055,2.0905,4.104565625,2.260893333333333,2.9049766666666668,2.959906,3.180375,3.11954,2.959245,3.356645,3.35981,3.99664,3.86113,4.218215,4.047495,3.020905,3.56154,2.5780216666666664,2.5780216666666664,7.129971666666666,1.829185,3.21774,3.244365,2.315865,4.727745,4.127985,3.067095,3.265655,3.821055,6.1707175,0.6353209090909091,3.81308,2.37368,2.8467566666666664,2.5087433333333333,5.11045,2.7139166666666665,1.98748,1.14187625,2.071825,4.15661,4.754435,4.06389,5.84025,5.4132,5.66445,2.514475,2.0393833333333333,3.72588,2.633885,2.860303333333333,1.9920266666666666,1.2255883333333333,2.5499566666666666,3.378966666666667,1.537026,2.34918,2.313773142857143,3.455919807692308,2.81682,4.810845,3.43021,1.348865,4.24121,3.483225,5.605,4.875515,5.79875,4.690265,1.9914399999999999,1.5323399999999998,0.5860628571428571,1.5181266666666666,3.517615,2.516595,3.5340833333333332,1.3890133333333334,2.394205,2.3303,3.417065,3.52699,3.82755,3.9537166666666668,1.6912,1.366035,1.915185,2.018275,1.392645,2.587825,6.82271725,4.9172,3.297245,2.999275,6.67208,4.51002,3.172515,3.07208,3.404635,2.6756,3.862175,2.2975666666666665,7.36093,0.9396566666666667,3.113825,6.71245,3.814895,4.762355,5.48015,1.4922466666666667,3.042146666666667,2.88143,2.8646233333333337,1.48328,4.007965,8.67704,3.2121,5.1938,4.01122,3.350185,4.846025,0.871895,2.775263333333333,5.2201,6.287823333333334,5.2205,5.82,2.773935,3.711766666666667,2.51124,4.687525,4.811665,3.9854311666666664,3.9854311666666664,0.75686,3.6221666666666668,0.930902,0.5800016666666666,1.7907525,3.709566666666667,4.128988,5.637373714285714,3.069623333333333,3.376573714285714,3.4121890476190475,2.7687166666666667,3.1481399999999997,4.586866666666666,3.7195799999999997,2.03878,2.03878,3.919845,3.07004,2.743403333333333,3.607695,3.360133333333333,0.6137944444444444,3.1733733333333336,2.555076666666667,2.62693,2.66898,2.516675,2.5109733333333333,3.1602533333333334,2.8494499999999996,0.8526,2.891833333333333,6.439527476190476,2.08258,7.399502333333333,1.670792,1.670792,3.4431965,3.3991000000000002,3.3374,2.795113333333333,1.6884160000000001,1.2940328571428572,3.2794566666666665,3.2324933333333337,1.5270016666666668,1.483342857142857,2.806313333333333,2.604336,2.70425,1.8919,1.82489,2.93504,2.11139,2.821705,3.304645,1.861635,3.809715,3.26583,6.818706,3.560075,1.64593,3.170435,2.59621,2.2527,3.989245,2.23929,2.714165,7.1514275000000005,0.8540153846153846,0.7365925,4.526775,1.512504,1.512504,3.865045,2.4481475,4.563945,3.22711,1.3286566666666666,2.54547,2.937203333333333,2.5096133333333333,5.02955,4.004235,2.59537,2.051346666666667,1.3209535714285714,1.3209535714285714,1.9706333333333335,3.83104,3.7746,5.4938,3.1155333333333335,4.79644,4.323625,6.7747,4.200125,2.53869,2.8164266666666666,2.659053333333333,2.614053333333333,0.7256433333333333,0.7256433333333333,0.7256433333333333,2.787565,4.350635,3.782245,0.989655,0.989655,4.821245,6.0629,6.43571,21.7954705,11.7438,7.40912,2.90237,5.8236,2.2104225,4.036355,2.5553433333333335,3.13917,4.0691,5.343911333333334,2.04799,2.162265,6.06094,1.8689139999999997,1.8689139999999997,6.21155,3.153025,4.54,1.88499,4.744734833333333,4.45059,3.337695,4.89299,3.44232,1.0308533333333334,5.701,8.14303,1.0308533333333334,1.88499,2.123886666666667,0.925154,0.925154,1.7651700000000001,2.1823566666666667,1.7651700000000001,4.080655,5.5805,6.0785,9.0453,1.88499,11.429845833333333,5.8991,5.75405,2.2104225,3.32962,4.19781,8.1717,3.0519416666666666,3.76632,5.5243,3.30638,4.71001,6.3696,4.448385,5.08145,4.830335,2.850935,4.894595,3.107445,4.487465,4.41819,0.78625625,1.507166,3.130415,5.55185,4.46521,2.7018166666666663,2.0708,4.17147,4.76945,5.7167,5.2738,5.31265,4.384655,3.182995,4.07497,3.76826,2.103025,5.0559,2.000595,2.76717,3.502385,1.6717233333333334,3.94661,3.990445,3.64732,3.542381666666667,2.72926,6.517195,0.9434333333333333,3.514355,1.937155,1.2227085714285715,4.945548,1.4363816666666667,1.7493566666666667,2.586676666666667,2.8340435,2.9147700000000003,2.7654033333333334,1.74603,0.7294927272727272,2.0968733333333334,2.533485,3.62557,0.6815015384615385,6.650761666666666,1.8725766666666666,1.166882,3.5046666666666666,1.166882,3.741565,0.8764554545454545,4.45775,3.17125,2.02664,4.195476,4.184531,4.184531,4.79149,2.5303,3.026353333333333,2.94122,1.590388,3.841405,3.64247,1.9137333333333333,0.6899099999999999,6.964851538461538,2.70461,3.81907,4.062955,7.40676,2.1991075,4.142325,3.79971,3.228135,3.680955,5.485,6.2584575000000005,4.44343,4.70456,5.3061,2.9441966666666666,4.8803,4.215755,4.45363,1.0656955555555556,0.4845535714285715,3.080415,3.3659,2.89852,5.3796,3.80482,4.151655,4.29079,5.1977,4.28558,4.098255,1.1805999999999999,2.245145,8.536966666666666,2.2604133333333336,1.8989133333333335,3.7350319047619047,11.336537579365078,1.54728,4.59619,6.4243,4.84544,3.448366666666667,2.27547,3.3291133333333334,4.11738,1.1021366666666668,2.775463333333333,3.37181,0.3500442105263158,2.0462433333333334,4.40588,4.14135,2.27224,4.14254,2.893325,5.090815833333334,1.3010233333333334,0.5353718181818182,3.7897925,1.15509,1.04194125,1.04194125,1.04194125,1.04194125,1.5849216666666666,2.6887666666666665,1.9189766666666666,3.2331066666666666,5.33915,3.5201333333333333,5.25155,3.60825,4.193895,3.43705,3.889195,1.4647866666666667,6.593555,2.36339,4.629905,5.36449,5.0448,5.0587675,2.3602933333333334,2.46429,2.5467233333333334,3.39019,1.2979766666666668,4.698731666666667,2.7088666666666668,4.888325,2.91398,2.3763833333333335,3.743995,3.479825,2.99619,2.4408266666666667,2.6258266666666668,1.5094725,0.42099,4.058075,3.533265,4.166795,3.4843,3.684455,5.6744,4.156355,0.5462607692307693,3.235892,7.161584666666666,2.1543666666666668,1.7713259999999997,5.360476666666667,4.25529,2.6808666666666667,4.70958,5.0841,4.33415,3.98929,4.027305,5.2063,5.7025,5.109,3.563585,5.200056,1.4749919999999999,1.6241349999999999,3.948195,4.0922,3.742765,3.058395,5.43135,4.63832,3.91998,3.32097,15.014124626643644,1.253419562600321,1.12422125,1.860712159090909,0.493700625,0.47202533333333335,1.251825,0.30172647058823526,1.350468,3.4423333333333335,1.8697279999999998,0.94495,1.08071875,0.46198500000000003,1.08071875,1.08071875,0.46198500000000003,0.8244230769230769,0.5542342857142858,2.720175,2.7309866666666665,4.886015,3.75383,2.8248166666666665,2.7228,4.232275,4.532425,4.8884,2.782395,4.15985,0.6911257142857143,2.3654433333333333,8.146764166666667,4.078205,6.544476666666666,2.81009,4.065725,2.462475,5.2547,5.5544,3.409725,4.43828,1.9829,0.9874366666666666,4.47363,4.66872,1.069496,1.2343959999999998,1.5215233333333333,2.6206,1.9964066666666669,4.654825,5.2108,2.3638675,2.3638675,3.532825277777778,6.68088,2.1120233333333336,0.66569,0.77408,2.23589,3.442466666666667,0.89573,0.89573,0.89573,0.37308230769230766,1.0328857142857142,2.9019,6.0462,3.8326333333333333,4.1413649999999995,5.2942,1.0369300000000001,3.435233333333333,3.1787033333333334,3.9266,5.82565,2.5343533333333332,7.351516666666667,4.967375,1.0898855555555556,3.7326,1.832808,2.41698,2.31424,6.962705,3.3187533333333334,4.3137,2.1393975,4.50617,4.429465,4.831175,0.5000561111111111,2.203516666666667,1.4314133333333334,2.55477,4.0566933333333335,2.1310966666666666,2.8014166666666664,2.4334933333333333,2.5539466666666666,2.6787266666666665,3.007766666666667,2.9143233333333334,2.91496,1.41872,2.1848266666666665,2.0165866666666665,3.1649366666666663,2.54198,2.1351225,1.7170933333333334,1.9106033333333334,1.66012,3.12243,2.2311666666666667,2.003956666666667,2.028163333333333,2.4087566666666667,2.255123333333333,0.7888522222222222,0.7888522222222222,0.7888522222222222,2.4261166666666667,2.0311966666666668,2.95919,2.2685833333333334,2.5892666666666666,2.097636666666667,3.922485,3.457086666666666,1.2917866666666666,2.434016666666667,2.7730433333333333,3.7472633333333336,1.5548285714285714,7.073486666666667,4.509925,3.30821,4.144935,3.580435,1.51947,0.7311642857142857,3.505435,3.780675,3.7472633333333336,4.18203,4.239025,4.455625,2.9624633333333334,3.894015,4.30121,0.85053,3.03964,3.294645,5.028575,4.79845,3.582105,2.99718,2.52326,2.2472266666666667,2.1244366666666665,0.6380925000000001,5.303998333333333,2.65785,4.050665,2.73655,3.7897350000000003,3.2428166666666667,2.43254,3.1208736666666663,3.1208736666666663,2.457663333333333,2.2417433333333334,2.6023166666666664,2.0022166666666665,4.35263,1.444512,2.56759,3.659215,4.17899,4.013865,5.4279,3.858405,2.46135,2.06407,3.209045,2.94322,2.581725,5.14185,2.702655,0.8650728571428571,0.8650728571428571,4.62781,3.8916299999999997,0.9423,4.356025,0.9423,4.001855,4.53767,4.82983,3.212055,3.28087,6.3633500000000005,4.0900225,5.63825,0.8376714285714285,0.8376714285714285,1.9814520000000002,4.50992,1.534895,2.975025,3.36894,1.1095985714285714,3.890835,4.045915,5.582775,5.582775,1.0665566666666666,5.57185,5.1353,4.858915,5.9564,2.0119775,2.0119775,6.92385,0.9615272727272728,7.151,1.9121675,6.1915375,2.77994,2.6412233333333335,3.475605,2.17098,2.00901,2.3604766666666666,2.9975533333333337,2.578775952380952,6.3109079999999995,1.7968879999999998,4.8726,2.9548233333333336,2.60547,1.659985,2.226165,3.31238,3.52819,3.258415,2.746115,2.212235,2.00653,2.583755,1.1113680000000001,3.31285,2.48213,3.192675,2.0482175,2.0482175,3.16677,2.076983333333333,3.8099,3.347945,4.84147,7.280535,4.246085,3.50493,6.460705,2.0046033333333333,3.400081111111111,2.292543333333333,1.4875,1.63622,4.19725,1.5854533333333334,0.50266875,0.65474,4.08918,4.57362,2.889945,0.9570022222222223,2.879945,2.9940366666666667,4.810135,1.7624479999999998,1.89522,1.1323999999999999,4.689585,2.376895,4.28675,0.699385,4.28471125,3.835995,3.65089,4.372175,3.55151,3.91311,2.79176,5.39315,3.612345,2.0306566666666668,2.705853333333333,6.064603333333333,6.1651525,0.7172025,3.691765,4.645865,5.2348,3.6592333333333333,3.8600333333333334,2.7925,3.23818,3.6903666666666664,6.0402,2.604336,2.560663,3.84952,3.06499,2.32336,2.44636,8.503216666666667,4.646825,1.9071333333333333,5.01425,4.76243,1.80479,3.761605,1.2927625,1.6044571428571428,4.51533,3.990025,4.714445,2.4022,3.12677,3.120115,5.26065,3.944275,3.92982,3.204815,3.84046,3.944305,3.6696575000000005,1.1603193846153848,1.1603193846153848,7.2884,0.8095525,1.831556011904762,0.8095525,0.7181449999999999,0.3063433333333333,2.549701011904762,2.728745,0.6568014285714286,1.831556011904762,1.89237,2.94219,1.892899583333333,3.69333,4.4269,6.920821666666667,1.978805,2.201425,2.10354,4.51941,5.70565,1.975295,1.7486675,1.0694325,2.8181000000000003,4.264285,2.68122,4.233035,6.413092499999999,0.43604444444444446,3.72238,0.727746,2.7706233333333334,2.2095425,3.65711,1.2503116666666667,4.12686,4.607419999999999,4.00859,2.688605,3.9522,5.3447775,1.7229725,3.211685,0.6001869230769231,2.457355,2.48242,1.114824,2.8527299999999998,2.4886033333333333,2.5107566666666665,3.58511,8.76649,3.0301651515151518,3.77326,3.41285,6.73405,5.344475833333334,3.230446666666667,4.269955,3.619115,5.85695,4.418775,5.18995,4.783625,4.179275,5.2688,4.0264,1.5001775,1.9800333333333333,1.9085433333333333,3.93366,2.4314533333333332,0.19331594594594595,0.19331594594594595,0.19331594594594595,29.681953,0.19331594594594595,3.190115945945946,0.19331594594594595,0.19331594594594595,0.19331594594594595,3.320415945945946,4.22289,0.19331594594594595,0.19331594594594595,0.19331594594594595,0.19331594594594595,0.19331594594594595,2.902785,5.35523,2.91745,0.2252025641025641,0.2252025641025641,4.347887333333333,4.027004333333333,3.883068333333333,3.1717223333333333,3.9478004761904764,8.0089,11.20353028904429,6.321116333333333,8.005446666666668,7.437267821428572,2.74845,6.3874361904761905,4.28381,4.542357115384615,0.2252025641025641,8.114888666666667,6.609220761904762,7.02445,2.615875,9.474427321428571,14.38007017857143,18.589773965201466,55.86875727215758,116.91275727032608,1.3922566666666667,3.429866666666667,3.3358,3.732969734877735,0.2252025641025641,1.6396629487179486,8.527547916666666,14.991496654761905,19.910695833333335,47.60534325,13.399256488095238,3.197625,0.2283013793103448,0.2283013793103448,4.398836666666667,2.6626533333333335,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,0.2283013793103448,5.05054,0.2283013793103448,0.2283013793103448,0.2283013793103448,2.715105,1.7908966666666668,4.18278,3.77221,3.8399525,5.19205,2.0992225,4.174545,4.314335,3.089385,1.4812200000000002,3.552725,1.00383,2.2902425,2.0080733333333334,5.11488,6.162536666666666,2.8206933333333333,5.603240555555555,0.5283111111111112,0.4483333333333333,2.5073133333333333,2.7728633333333335,2.84763,3.754505,3.300186666666667,7.3254675,3.773325,3.687825,3.44332,3.994715,3.06081,3.391525,5.46435,1.93808,0.4482123076923077,0.8328381818181818,4.14759,1.866725,3.627705,3.803825,4.42478,3.688885,2.3715475,2.640715,0.6175213333333333,0.740768,4.340605,2.6314233333333332,5.17785,3.543315,3.8716616666666663,2.433715,2.845955,5.1467,4.033645,3.294955,0.8067863636363637,3.2912866666666667,4.40268,2.357705,0.969735,1.5925466666666666,4.043335,6.0796,2.039315,3.056665,3.87692,5.42955,2.6819,2.31086,2.44496,4.486,2.53021,3.841865,0.7111657142857143,2.1612966666666664,3.293055,1.887165,5.993275,3.33513,3.960865,4.18224,2.994125,1.928905,0.5164227272727273,4.53849,4.672535,6.1174,2.93858,4.22429,4.58029,2.89583,2.012295,1.2060057142857143,5.053,2.06041,2.78438,8.696765,4.092605,4.757615,3.630525,0.74279,3.14431,1.2495671428571427,3.369035,6.1382,4.97969,4.986205,3.714965,4.93651,4.39476,1.6477325,1.75301,5.0658,3.1333333333333333,3.3378333333333337,2.4213175,5.4007,4.52828,1.4495883333333335,3.5351,2.788505,2.82627,4.14694,9.31153,4.72369,1.7471675,4.69992,6.32479,4.396025,4.02391,3.882125,3.972055,4.52756,8.194375,2.3330866666666665,3.75934,3.403085,4.20511,2.791425,3.25317,4.887055,4.47013,3.52109,4.034922666666667,18.670948666666668,2.824176666666667,2.5387133333333334,3.3733,5.563543666666666,1.21198875,4.1373,2.088610833333333,4.976975,1.365245,4.104255,4.37442,3.722545,0.97371125,4.505865,4.279065,1.5302825,4.560447651515151,4.364175,1.0537871428571428,3.36268,1.873435,2.35078,1.565445,4.23607,3.659845,3.72609,3.65626,2.991956666666667,4.54052,7.994868333333333,4.467875,4.319315,4.74253,3.11647,4.012065,4.845575,6.226573999999999,0.8125859999999999,0.8125859999999999,4.36148,4.927425,2.1973933333333333,1.3685349999999998,7.100485,3.95003,3.438935,3.82052,4.650925,4.462995,3.56072,3.917145,6.56473,3.9544033333333335,4.62283,4.824525,1.4422142857142857,2.657675,4.348655,4.50359,3.56225625,0.1983336111111111,1.5182025,2.1416575,2.3981233333333334,2.104293333333333,0.9363322222222222,1.510935,1.4427875,2.3342666666666667,0.60131,1.0824214285714286,1.8950125,3.78142,3.964566666666667,2.0988666666666664,2.554796666666667,2.8757800000000002,2.63821,0.726954,0.97107,2.863835,4.69407,4.151295,2.907545,4.363875,4.38038,4.21729,2.0810400000000002,4.30541,5.0534,4.505825,6.163467499999999,3.66691,0.49136823529411766,5.361,4.49737,3.79139,4.73243,3.197465,1.9090219999999998,3.82513,4.09245,3.101945,5.259865833333333,4.591865,1.4025483333333335,5.259865833333333,4.232115,6.831887500000001,3.649695,1.2347333333333335,3.791435,4.937865,4.13314,2.53183,4.95695,1.45147,1.940985,3.413955,3.461025,0.7940877777777778,4.89244,4.862415,3.61271,3.877865,3.2431133333333335,3.01933,1.7794619999999999,1.773215,3.291855,3.380955,3.374233333333333,2.430266666666667,2.267785,1.9773936666666665,4.07682,1.4342428571428572,0.8273766666666666,5.82003,4.009315,1.443538,2.4971633333333334,2.19263,3.0643733333333336,5.950435,2.1870494444444444,0.8332090000000001,2.64546,4.35847,1.9913633333333334,4.03578,5.11035,5.3596,4.580105,4.18279,4.81621,2.1555866666666668,2.2960533333333335,1.7103733333333333,2.1577699999999997,1.91375,2.37513,2.1981566666666668,1.540615,2.75557,3.014665,3.80192,6.50115,4.64114,4.137835,4.48163,3.87223,3.787745,4.66418,0.90854375,3.20984,4.61685,1.167854,0.6532006666666667,4.838575,3.54516,2.431643333333333,3.40619125,5.98236,5.51485,0.955199,1.2120671428571428,0.7003133333333333,4.034175833333333,2.18113,2.7665566666666668,1.18465,2.73549,2.635596666666667,5.74405,4.63959,4.412925,5.0432,4.4417,1.2273116666666668,3.58552,1.7356066666666665,3.48449,3.975145,3.55959,2.4624099999999998,3.162326666666667,2.5704066666666665,3.35378,4.136375,3.09643,2.499295,8.223790000000001,10.0670075,4.01968,1.3415857142857142,5.4587,4.02693,4.703205,4.561375,3.88455,3.88116,3.450345,4.163765,3.6326702083333338,4.88734,3.71412,3.82487,4.586715,1.8208659999999999,5.17935,5.6889,4.71237,3.329975,3.422155,7.3266849999999994,0.795105,2.63871,2.7345066666666664,2.35928,4.9774,3.16532,1.3033483333333333,4.224685,3.3246599999999997,3.646625,4.725505,4.0013625,6.48639,3.1964400000000004,3.003833333333333,3.1707866666666664,2.8561300000000003,3.95783,2.067083333333333,2.12608,3.0107700000000004,3.97099,3.649510416666667,1.97317,1.5423825,3.3264914285714284,3.1489650000000005,0.92406,2.551473333333333,2.551473333333333,1.223245,5.70185,2.80052,3.49297,3.441785,3.218415,3.40877,3.401435,3.197515,3.01045,2.36953,0.5178653333333333,3.307035,5.6936350000000004,3.068775,3.729395,3.20279,4.046605,4.068625,3.1464,2.83313,3.934455,3.606955,3.00463,2.858005,3.719555,2.6405366666666668,4.24265,3.92309,8.87576,3.25157,3.630015,3.05019,4.015665,4.080545,3.59123,2.40752,3.6237,2.591465,2.77983,3.03177,3.12568,3.727725,1.7878800000000001,1.7878800000000001,2.236735,2.971065,3.358285,1.562284,2.57783,3.426575,1.8331579999999998,2.809025,1.562284,4.409885,2.96853,3.8067244999999996,3.020275,3.43078,2.54781,3.155435,4.00625,4.093095,3.39763,4.336325,3.6783,4.18139,3.73201,2.82017,3.335255,2.964905,3.847695,2.6181933333333336,3.67741,5.27175,4.159595,3.606875,0.3088965217391304,3.851175,0.4570733333333334,3.615105,3.603395,3.00398,3.53445,3.731865,5.940441666666667,3.216795,2.549446666666667,2.3313466666666667,2.8190733333333333,0.658173,6.364048333333334,2.94019,3.41517,3.78023,2.11894,2.68559,3.187455,3.15832,6.681805,4.62951,4.84846,4.29501,4.39844,4.194835,3.724415,1.4944333333333333,1.643054,3.99216,4.577535,5.69947,2.49579,4.855475,1.877715,3.4642,4.205775,1.869940476190476,4.067475,4.92073,3.510533333333333,3.7593333333333336,2.6664666666666665,4.4139,4.588445,3.3485333333333336,4.38158,4.346525,4.77212,4.437685,4.432045,4.04592,3.0247,4.17835,2.541525,3.1857666666666664,3.1857666666666664,4.08532,2.46855,3.823155,2.3936100000000002,4.307855,3.2835566666666662,3.630785,1.97514,1.8443966666666667,1.167165,1.167165,1.6243480000000001,3.3714666666666666,1.7131666666666667,2.8528300000000004,3.604925,5.2026245,3.2902466666666665,4.22639,5.80121,2.861715,2.803955,3.0446033333333333,1.88696,4.156165,4.12368,6.1344075,1.81916,5.2266,5.6578,3.410433333333333,3.51507,4.03378,6.85248,2.0572933333333334,2.40793,4.112515,0.5272385714285714,3.643765,4.124935,4.312075,4.13292,2.991955,1.34084,1.621798,3.94608,3.214925,2.397553333333333,3.752095,4.599595,5.1556,0.9844,3.22579,4.59219,3.6672,4.593115,2.4596633333333333,5.455766666666667,3.691435,1.6320219999999999,3.44099,1.2201133333333334,2.7398066666666665,6.942776666666667,3.40455,0.6564454545454546,3.236975,4.033165,3.73962,1.8222675,1.8222675,4.998716666666667,5.6239,2.888,0.4916155555555556,1.8694675,4.489329166666667,4.1175,4.24049,1.794882,2.912506666666667,3.404525,1.1508484210526317,1.1508484210526317,1.1508484210526317,0.7623292543859649,1.3892025877192982,0.6268733333333333,1.1508484210526317,0.7623292543859649,0.24365842105263158,0.8705317543859649,0.24365842105263158,0.5186708333333333,0.5186708333333333,0.5186708333333333,0.5186708333333333,1.0637604999999999,1.048245,2.2802266666666666,2.304918333333333,1.08254,6.245585,2.65756,5.876071666666666,2.4181766666666666,3.7141,2.829315,3.427845,2.7147449999999997,4.44194,2.9245933333333336,4.103015,4.04075,4.86975,2.1140175,3.89201,4.82945,4.151215,3.498655,5.0108,3.457545,4.474755,5.43335,5.4349,6.25385,5.33785,1.09701125,4.71521,3.811795,3.014895,15.69307,4.509315,4.97964,2.668343333333333,7.82525,4.0625,4.31308,4.81253,3.14298,1.0532825,2.523415,4.00302,4.13442,3.52393,3.330815,4.09127,2.9664366666666666,4.36297,4.744215,4.24168,6.615938333333333,7.249376666666667,1.2549242857142857,3.71389,3.947685,4.20166,3.650605,3.630995,7.09415,2.60591,2.851695,2.57893,3.90757,3.74229,4.57814,2.560725,1.742805,0.9351079999999999,4.298495,3.391895,3.55648,4.207115,3.635075,5.09365,3.96298,6.2469,5.96425,5.1064,6.52165,3.67901,3.245655,3.24406,3.34018,1.8138375,4.327565,5.3132,6.15105,5.619898333333333,5.619898333333333,2.60617,1.8138375,1.9732,3.22979,0.7173066666666666,1.5023441666666666,0.7850375,1.336165,2.50602,0.351753,2.75869,4.209795,1.336165,3.0857729999999997,10.95632,6.733625,2.2858716666666665,1.0321799999999999,1.94496,4.44167,4.351335,5.669583238095238,1.9543325,2.356065,3.579745,3.53023,4.449735,1.5767066666666667,5.21755,3.4979666666666667,3.429345,5.17515,7.121528,3.76811,2.3860875,2.7885500000000003,1.7556,3.778505,5.201635,1.7695560000000001,5.728,4.354995,5.9072949999999995,0.527634,4.605003333333333,5.62885,4.57404,2.25093,2.6548,7.2802,7.622933333333333,6.4554,1.7875333333333332,1.7875333333333332,1.7875333333333332,4.832395,4.40659,5.4486,3.495035,2.732795,2.568171052631579,4.013595,4.0468,2.525651,1.97073,2.525651,7.040921,4.903403333333333,4.741809047619048,7.38489,4.741809047619048,4.741809047619048,3.593305714285714,6.80596,5.653379,2.920154,2.920154,2.534385,7.05585,2.865305,3.5114,5.366976666666667,5.366976666666667,5.366976666666667,7.16422,3.5382275,3.504105,3.612965,3.4691375,0.80436,7.540403333333334,2.637,6.1204,3.470715,13.100249999999999,4.54447,5.429195833333333,6.92507,2.521355,3.503275,1.1160733333333333,5.429195833333333,3.230245,1.6366675,1.6366675,3.05956,5.391843333333334,1.8082025,4.88228,0.887303,1.4517466666666667,0.887303,1.96131,2.6955055,5.2563830000000005,3.36258,1.4517466666666667,2.952035,4.9083025,1.1633025,3.365655,4.56325,2.06546,4.122038333333333,2.48237,3.254275,2.816085,0.86342,3.69109,2.0755,2.22282,1.7084766666666666,3.549951666666667,3.85041,2.46749,3.66658,1.3493122222222222,1.3493122222222222,1.3493122222222222,3.697415,3.0265,3.0265,3.38603,4.000635,2.303533333333333,1.34403,1.34403,2.3026,4.641115,0.90395,1.46207,2.52338,1.2412816666666666,2.703351666666667,0.86342,0.86342,2.0166991666666667,0.86342,3.3625391666666666,0.524765,3.3625391666666666,6.0641825,3.208335,2.3523866666666664,1.8002313888888888,0.8048299999999999,2.6050613888888887,3.67358,2.6050613888888887,0.9661088888888888,3.03417,4.0903,3.89376,3.604755,2.432305,3.81348,2.0623566666666666,0.9630397222222222,0.5197275,0.9630397222222222,0.4433122222222222,0.9630397222222222,0.9630397222222222,4.311975,4.414585,6.3151,3.39972,4.41067,4.354125,5.11735,3.380045,3.73,1.3226928571428573,2.4803666666666664,4.396376666666667,3.865485,1.3671566666666666,2.754493333333333,4.01476,3.81001,4.07904,3.396375,3.997655,3.621945,3.270775,4.41151,2.3066766666666667,6.1098,3.733825,3.88714,4.403217142857143,1.0842926428571427,2.07284,3.204375,6.20396,4.010115,3.48091,3.0571033333333335,4.320055,7.39721,3.176833333333333,4.11925,2.8389100000000003,4.597465,3.98295,5.62305,5.38595,4.26939,2.86138,5.1122,4.801,3.5927666666666664,7.58567,3.3906333333333336,2.3317575,2.390006666666667,4.855735,6.4651,4.973395,5.0926,3.958345,4.79369,5.7167,0.5190523076923077,7.21492,4.57891,3.6878,3.76624,4.691055,3.955475,2.957523333333333,2.4457775,1.3154350000000001,0.5713261538461538,1.743532,2.9794766666666668,2.957845,2.967,3.73078,4.048615,11.303908333333332,3.773995,4.036105,2.95669,0.7008233333333332,5.59581,3.291873333333333,1.7191133333333333,5.010986666666667,5.5829683333333335,2.291095,9.19297,4.35379,1.9381779999999997,1.9381779999999997,1.9381779999999997,3.913565,9.37394,3.20044,2.539475,2.539475,3.3207,9.80204,0.99994875,4.75341,4.44639,4.113635,2.801346666666667,2.21086,4.35487,3.85927,5.91115,5.94985,3.91284,2.780815,3.826295,4.047975,3.369905,1.19997125,2.7848633333333335,6.27919,3.25793,4.623745,0.958015,3.7189333333333336,2.29349,2.6237666666666666,1.7893,1.7777066666666668,2.1368233333333335,4.96168,2.144015,4.27902,5.57525,1.7968879999999998,4.9439,3.73277,4.60702,3.2036833333333337,2.23061,2.76135,4.361215,4.1216825,4.1216825,1.1734575,1.6018566666666667,2.9032766666666667,4.414007,2.244086181818182,4.8801646666666665,1.8073679999999999,2.7262500000000003,2.09506,1.64857,1.64857,4.89428,7.43052,1.8834933333333332,2.9753666666666665,2.26526,4.891295,3.17113,0.8809340000000001,2.962755,0.8809340000000001,2.545265,3.521805,5.214,5.4627,3.64351,4.632806666666667,6.1641,2.481325,1.8817833333333331,3.0165433333333334,2.29886,5.9338,4.96562,2.587955,4.127045,2.77833,4.50833,1.1043225,1.1487120000000002,1.8731933333333333,1.2356416666666667,2.5643866666666666,2.70849,2.3063,2.91465,2.66831,4.53109,2.5922466666666666,2.34448,2.7376566666666666,2.41965,2.8759200000000003,2.62625,2.0388433333333333,2.413186666666667,3.90248,3.902235,2.994265,3.20649,2.7844433333333334,2.176475,1.86329,1.1276599999999999,0.2822555,0.13146108695652173,2.172286666666667,1.7429166666666667,0.13146108695652173,3.429746920289855,2.0293225,0.13146108695652173,5.7619396527777775,2.0702583333333333,6.28754,3.47431,3.06591,2.5783766666666668,3.0379666666666663,2.2106975,4.4203,3.0458833333333337,3.26491,0.4262647368421053,4.068580000000001,2.6362647368421053,2.918415,1.711015,2.418775,4.198225,2.407535,7.940144999999999,5.2388,3.327205,3.708245,6.90856,6.42411,1.8846866666666668,4.25885,2.02632,2.019355,7.25861,7.94226,1.2492066666666666,2.0713575,3.716575,2.70253,3.061685,3.160295,2.752495,4.546125,2.21369,3.230145,3.39991,3.18659,7.3375,1.4157833333333334,1.978665,2.78683,3.367955,1.8800733333333335,3.41531,1.87883,3.712845,3.33726,6.53313,3.43824,9.2480775,3.66636,1.438244,1.6172166666666667,2.844765,5.70582,1.5838875,1.6680366666666666,5.89856,3.386275,4.062165,2.53288,2.1088066666666667,3.073715,11.071065,4.93745,6.41106,3.516335,2.653295,2.18595,2.283025,2.92282,3.471045,1.5979816666666666,1.6641899999999998,2.4557466666666667,3.46106,1.75524,3.44726,2.711485,3.048255,3.74088,3.33966,1.1604616666666667,2.55145,1.1262633333333334,1.25437,1.37532,3.205195,3.341175,3.458895,2.607155,3.83799,3.96897,2.90397,1.453696,3.454615,3.4685249999999996,2.984285,2.13725,2.90107,3.32994,1.47044,3.35302,1.53365,4.02159,4.169275,4.73528,2.54949,3.702675,1.711825,3.23637,4.862285,1.78492,1.09852,3.509,2.708085,4.387925,4.16609,2.787675,4.510005,4.949685,2.4455466666666665,5.303,5.314235,6.55005,3.99024,6.112971666666667,4.029465,1.6056766666666666,2.8568166666666666,4.577025,4.84957,2.5857533333333333,7.462022,1.217677142857143,3.3772333333333333,2.17144,1.7898640000000001,2.2657833333333333,2.74385,0.376275,2.75116,3.4159333333333333,4.070475,2.67744,3.1739433333333333,2.294486666666667,2.39226,2.1829875,9.307195,4.949485,1.73663,5.09205,2.360804652173913,0.722852,2.7536199999999997,7.5611239999999995,1.7541820000000001,4.656852499999999,6.177716666666667,1.9110875,1.623835,1.4426775,4.34651,3.17859,4.36695,3.810435,2.40654,3.54208,0.8590579999999999,2.692488,4.16321,4.104375,4.768845,3.00984,4.99273,4.81519,4.10817,4.837625,5.78025,4.725925,3.957585,4.604025,1.528866,1.8843475,2.84925,3.33439,1.1607222222222222,3.865315,2.09259,3.3089433333333336,4.346455,3.2268133333333338,2.5833733333333333,1.5330466666666667,2.918253333333333,2.7802091666666664,2.5353499999999998,2.9457066666666667,1.9020933333333332,2.067665,2.443915,3.89175,4.386125,3.9401,4.82342,3.428325,2.449515,2.92583,5.06545,3.6644,4.717595,3.439255,2.32992,4.554526666666667,1.7611766666666666,4.06814,4.834609166666667,5.993829166666667,3.84913,4.470975,5.39525,3.322416666666667,3.9695116666666665,4.446985,3.467335,3.818176,3.361565,1.385235,3.160035,1.7375,2.286085,4.16917,5.1405275,3.818176,4.00707,3.62647,1.534895,3.70984,2.06423,2.23929,2.22737,2.84441,1.519025,1.519025,1.519025,0.48729,0.7619044444444445,2.0608894444444443,1.096945,3.45536,1.3921999999999999,4.04793,5.17455,4.5988,3.302715,3.99138,3.15438,5.08165,1.6253025,3.044765,2.68138,3.01863,5.817279000000001,4.34154,5.2186,4.131195,1.0297775,2.36648,1.3160166666666666,3.842905,3.89499,4.13031,4.989855,4.686835,3.99052,4.60782,3.78891,1.68451,1.11863,5.277873333333333,1.0678088888888888,1.2584833333333334,2.8499600000000003,8.103765,2.98937,3.887465,2.63199,5.713627499999999,1.7653675,0.9925766666666668,1.389525,3.123375,3.692195,3.884715,3.627035,1.88175,6.18434,2.8568700000000002,0.92245625,4.75648,2.9105000000000003,2.89826,2.3295866666666667,3.616633333333333,5.4321883333333325,2.6661733333333335,3.1578366666666664,3.488766666666667,2.5993133333333334,2.8446933333333333,2.98184,2.533275,2.1014625,4.729815,4.652555,4.99122,1.02946,0.725203,3.7634666666666665,2.70242,1.04453625,2.763552916666667,3.65898,4.309555,6.90291,4.732715,3.5210333333333335,1.776124,3.72477,3.666,2.8452333333333333,2.5049494285714284,3.860985,2.813416666666667,4.927918666666667,0.8882533333333333,3.426605,1.8194400000000002,3.70514,4.199825,1.8391,1.0796,3.1131,0.430093,3.272215,6.87805,5.18915,2.835874,1.500216,3.8729666666666667,0.793151111111111,2.69197,0.793151111111111,4.129825,4.17972,1.3762975,1.79192,5.194603333333333,1.8683633333333332,3.53603,2.68714,3.73122,1.269606,1.57941,3.62688,4.47143,5.29285,2.959906,2.652775,3.218775,1.534135,2.5719,1.8623625,1.97221,4.04092,1.4414444444444445,1.4414444444444445,3.077785,4.618021333333333,8.383999166666667,4.84021,7.728535000000001,2.33035,3.713835,4.103095,1.6576000000000002,3.5932158333333333,4.05133,3.121765,4.95624,3.133835,2.565915,2.9509633333333336,3.956435,1.08644,4.109525,4.51017,1.1533683333333333,7.993406666666667,2.51633,3.34057,3.4612333333333334,4.97474,4.53708,3.6162429166666668,2.5466633333333335,2.809013333333333,2.0969633333333335,3.6766,2.2857025,2.180685,7.1939720000000005,3.2667800000000002,2.8995466666666663,4.19389,22.263631391941395,0.6798333333333333,2.768845,4.53724,4.557095,8.14069,4.849855,4.336505,4.456925,6.860106666666667,3.472645,1.6165466666666666,4.891096666666667,3.34045,1.143862,1.143862,1.143862,2.39775,1.7093375,3.15755,1.48645,2.886415,1.4922466666666667,2.51325,2.811925,2.932675,1.48645,3.257705,2.749695,4.113848333333333,4.766966666666667,4.80236,0.7812041666666666,3.286095,3.01776,4.69557,3.497165,2.998985,2.3660525,1.704135,2.2561475,1.35907,3.87145,1.7870075,4.74849,10.917628,2.70074,2.433485,4.7650500000000005,4.6616333333333335,4.4799,6.2827,2.21,5.344475833333334,4.46074,1.117175,1.1555428571428572,6.521499,4.05569,2.4488575,3.655785,1.97529,4.001515,4.84333,4.575715,4.07609,1.3521542857142859,4.26147,4.84134,4.765005,6.266248,3.496405,5.35075,4.445155,4.490015,5.1914,3.5314333333333336,5.034,1.96008,3.50029,3.079995,3.6704,3.94131,6.10765,4.33747,2.65206,3.3284133333333332,8.88033,4.68777,3.2965766666666667,3.613975,3.38251,4.4103,4.33077,4.634715,6.7998416666666675,3.46863,2.7441566666666666,3.9809175000000003,2.562,4.159775,2.435373333333333,6.5234025,1.6020833333333335,4.307945,4.91205,11.44315,0.4379078571428571,4.504685,4.5745,0.6557521428571428,3.620845,3.76851,4.147445,0.945651,4.84332,4.9398599999999995,2.6924499999999996,9.854535,3.23265,1.8260500000000002,2.38282,3.522155,5.8888,0.5523433333333333,3.908955,1.9549925,5.407,0.7083469230769232,4.264875,5.56225,5.84695,3.55288,6.3287725,4.613445,3.41301,2.5556033333333334,2.8590933333333335,4.24458,4.48386,4.9634,4.96363,5.4574,3.14024,6.822405,2.83665,3.089655,1.819155,4.45039,2.2127166666666667,1.5256133333333333,3.280466666666667,2.930733333333333,3.0110733333333335,3.412333333333333,3.432233333333333,3.0724699999999996,2.6872833333333332,5.48715,3.186946666666667,3.755035,4.87327,2.70494,1.1458222222222223,2.9909199999999996,2.8882366666666663,3.92898,2.8914666666666666,2.8478266666666667,5.01605,2.04159,1.7205925,2.99459,3.72913,4.42354,1.096615,4.182965,3.272435,4.0003,2.9368733333333332,4.8678475,4.019935,3.385585,4.121855,1.718285,3.70993,0.65571875,4.655525,4.90544,16.403478181818183,3.1506600000000002,1.20033,3.94072,0.6255971428571429,2.6962,4.421765,1.79274,1.2270842857142856,3.604135,4.598435,3.201966666666667,0.7675383333333333,2.44224,7.47031,4.05381,5.6398,5.15465,5.2794,3.2607533333333336,3.529166666666667,3.194013333333333,6.812388333333333,3.969295,5.05805,2.14603,0.42944666666666664,2.153745,3.167465,2.098855,3.65942,3.93949,2.9141166666666667,4.778615,0.6870883333333334,4.568755,3.83828,2.979305,1.1670866666666666,2.7300066666666667,2.001866666666667,4.92977,4.028515,2.284565,1.6066857142857143,3.420745,4.477475,4.389685,6.262598333333333,2.1452033333333334,4.69038,4.48444,3.95635,1.9376919999999997,3.82469,6.005026666666666,4.96053,2.439175,4.72517,2.86983,2.723955,4.029585,3.789875,1.362,4.618145,2.14134,2.80115,5.219456666666666,5.219456666666666,4.356475,1.6682200000000003,4.89439,0.91995375,1.7423980000000001,5.0145,2.75916,1.4643933333333334,3.1270933333333333,0.90829,4.254066666666667,4.37896,3.09797,4.916845,4.1398,3.855085,5.4683425,3.532455,3.433033333333333,2.87092,2.4542466666666667,2.55095,2.931486666666667,4.49423,1.6386974725274726,2.8895766666666667,4.39303,4.825535,2.244772916666667,4.557905,4.67756,4.814191666666667,3.3969666666666662,5.3034,4.99962,5.1276,4.969025,3.69891,3.6556,3.750425,4.410085,5.5301,4.734815,4.89113,4.42578,4.604235,0.7171908333333333,5.0096,4.445905,3.97467,7.179612499999999,4.119115,3.798825,4.444485,4.761965,3.47419,3.63825,2.14028875,4.456835,1.86241,1.2523671428571428,3.63707,2.1091366666666667,2.4844166666666667,3.6582426666666663,3.27088,2.93202,1.1999366666666667,1.953625,4.635415,3.96844,1.894435,1.894435,3.31413,1.580562,3.1843733333333333,4.39652,3.43168,3.844965,1.60076,2.16824,3.5221366666666665,2.026635,3.79093,4.237775,4.479455,3.86611,6.63685,2.672,3.812835,4.575735,4.301685,3.173223333333333,4.01606,3.993835,4.374715,2.373645,2.51165,4.570675,3.95394,3.704915,3.70228,1.621465,3.82757,4.34724,4.501975,4.10399,3.9422675,3.9422675,3.1340433333333335,4.054895,4.191425,3.950805,1.7001460000000002,7.5466725,3.957905,5.07685,4.39278,4.167545,3.584855,4.742405,2.92618,3.517215,3.082165,4.980245,1.86233,4.343945,5.532600555555556,5.1398,0.708037,4.787105,1.11408,4.8174,4.55503,4.48301,4.14001,5.2204,3.6852666666666667,3.6852666666666667,0.883582,2.299675,4.981735,3.777545,4.15032,4.53924,5.68245,3.20083,4.301305,1.395105,2.736935,1.686175,1.2232025,4.2725,0.862449,2.4172966666666666,3.166593333333333,1.2502199999999999,2.034605,2.62275,1.3504216666666666,6.39765,2.0021425,2.3868666666666667,5.51325,1.98983,2.8199433333333332,2.918435,4.54071,3.2384733333333333,3.5162666666666667,4.266900000000001,1.641656,2.129830833333333,4.33612,0.6521692857142857,2.05632,2.3698783333333333,3.1183099999999997,2.8195099999999997,1.1402914285714285,0.8801916666666667,2.48603,4.26455,1.0972842857142857,2.1562875,1.28794,5.603511666666666,2.306075,4.93866,4.50561,4.24965,4.95394,5.2791,4.19179,4.263175,1.4252683333333334,3.970133333333333,1.733756,2.478833333333333,1.2203171428571429,4.290995,2.029595,6.794293,3.87277,3.857655,1.482146,6.960660000000001,3.567285,1.5968,4.034455,3.13758,3.873865,3.37005,2.04111,2.04111,3.358366666666667,1.3609416666666665,1.3609416666666665,1.9376919999999997,2.9072433333333336,2.1351225,1.2917866666666666,3.4646333333333335,1.0684275,3.21032,2.3984725,1.881705,1.5278533333333335,2.15049,2.0569375,0.2859482352941176,2.4659625,1.2206949999999999,2.3255433333333335,2.09506,2.46135,1.0567333333333333,1.1113680000000001,3.810333333333333,3.0958433333333333,2.04111,1.866725,2.03368,2.5213566666666667,2.406023333333333,1.82148,3.1694099999999996,1.05201,3.3087966666666664,2.7924066666666665,2.53799,1.515374,0.948902,2.338725,0.948902,2.338725,0.701075,0.701075,0.48884055555555556,2.262415,2.5070033333333335,0.701075,2.23754,2.3146666666666667,2.376725,1.66012,0.7888522222222222,0.701075,0.701075,1.6533919999999998,1.6533919999999998,1.9973375,1.866725,0.701075,2.2857600000000002,0.46621692307692303,2.8358666666666665,2.015433333333333,2.5341033333333334,2.668976666666667,2.668976666666667,0.378517,0.378517,1.9376919999999997,2.00004,2.14712,2.02224,0.378517,3.512866666666667,2.53255,1.624008,0.62571875,1.624008,0.62571875,7.69475,2.50354,4.064333333333333,2.5021166666666668,2.953606666666667,3.1243466666666664,2.81514,3.5370000000000004,2.51355,1.6537125,2.6596433333333334,3.176833333333333,2.28977,1.6533919999999998,2.4715790476190476,2.4715790476190476,2.7614566666666662,2.1213525,4.23577,2.3406266666666666,3.2958966666666663,2.8302033333333334,1.5589460000000002,2.477705,2.27278,0.7895263636363636,1.6085825,3.62023,1.68869,3.178406666666667,2.63436,2.566425,3.8463666666666665,1.6966833333333333,3.5345,3.052826666666667,4.1734333333333336,1.2565060000000001,0.2283013793103448,1.28539,1.28539,1.018771111111111,2.9822566666666668,3.9266,2.6393933333333335,2.144953333333333,2.144953333333333,2.1519325,1.53365,0.986038,1.8449099999999998,1.8449099999999998,0.701075,1.9376919999999997,2.8495266666666663,3.2851933333333334,2.3984725,2.08974,2.08974,2.08974,1.09333,1.4875,1.4875,2.47733,2.6741566666666667,2.6070494065656566,3.86964,2.55301,2.5544766666666665,3.64911,3.71977,6.8402575,3.89768,4.340865,3.9579,12.932892500000001,4.912555,3.611225,0.9317725,3.958925,3.133975,2.426315,3.732415,5.1035,6.119983333333333,6.023,0.4739976470588235,3.90321,2.924305,3.80578,2.461705,4.496615,4.24208,4.06914,8.352675,3.45762,4.02653,3.96915,3.268225909090909,7.838064512820512,3.09956,2.6590666666666665,3.64052,4.0033,4.95192,3.53067,6.363716999999999,4.0322,1.355288,2.731775,0.87338,4.777255,3.872945,2.8329,3.993005,3.995465,2.630995,4.907185,3.992095,7.56633,3.91678,4.577999,2.5129233333333336,4.88802,2.89794,0.891665,0.891665,3.458175,3.713425,2.375975,2.12383,4.16598,3.59632,2.92633,1.97837,1.9923075,3.092885,2.3937466666666665,1.15267125,3.41309,4.738915,8.39895,1.552112,2.83861,2.964295,3.30484,2.816496666666667,8.4245,4.19189,3.4662,2.9833200000000004,3.94988,3.2288,3.037986666666667,3.0820133333333337,4.004705,3.809915,4.5324,4.075335,0.401062,1.62157,2.4398066666666667,1.7852025,4.53827,3.58304,2.595876666666667,2.2075575,4.565035,3.783575,2.067825,2.276065,0.8944050000000001,2.20588,2.3838033333333333,2.3838033333333333,5.051,1.8978,2.7968166666666665,2.28452,2.069173333333333,1.8882700000000001,3.063755,3.75924,4.414645,4.331045,5.1825,4.725675,2.77129,2.9524333333333335,2.1102,4.73906,5.449498333333333,1.9603833333333334,2.88981,2.2395675,2.3282266666666667,3.918758333333333,2.463973333333333,4.723025,3.76219,3.600355,4.187595,2.91152,3.52772,4.027455,2.28213,2.3938566666666667,0.4110557142857143,3.8344,2.608093333333333,2.892045,6.06305,4.78996,5.600465833333333,1.7599775,1.5633483333333331,3.06744,5.3416,6.4999,5.39075,3.0820633333333336,2.2182666666666666,3.622755,2.163413333333333,4.6748,2.1702933333333334,2.3277375,5.4781,5.01515,4.19738,1.7893075,1.9249525,1.1073140000000001,1.1073140000000001,1.319274,0.9371542857142857,0.766388,1.915072285714286,4.375795,10.038146666666666,3.803345,4.295855,4.139355,5.7054825000000005,2.65155,1.6752033333333334,3.350875,2.900465,4.43329,2.48415,2.2971966666666668,2.9204133333333337,3.2928266666666666,2.3621466666666664,3.1570933333333335,3.3447999999999998,3.054123333333333,3.501633333333333,3.4003333333333337,2.9199633333333335,2.7837033333333334,3.170806666666667,2.3903733333333332,3.0491766666666664,3.1178566666666665,2.9583766666666667,3.2525366666666664,2.1795999999999998,5.474817333333334,3.2675633333333334,4.017018,3.2302466666666665,3.06033,3.6908999999999996,2.83079,2.7744633333333333,3.0898966666666667,3.1313,3.4601333333333333,3.164073333333333,2.0139875,2.801293333333333,2.73138,2.8761,2.8761,3.3143733333333336,2.8974466666666667,2.523493333333333,2.5947766666666667,3.1183266666666665,4.219333333333333,2.91208,2.74635,2.786823333333333,2.8203866666666664,4.335841666666667,5.0299,1.6130183333333334,3.2648166666666665,3.7616,3.379282,3.1790000000000003,3.7179333333333333,3.539266666666667,2.8169066666666667,3.2947319999999998,1.974816,2.93836,3.443766666666667,3.5119333333333334,2.5788100000000003,2.463713333333333,3.930733333333333,3.0473533333333336,3.090343333333333,2.3384075,1.154975,3.3546333333333336,2.687326666666667,2.1049366666666667,2.5608,3.11275,3.1306166666666666,1.916922,5.660322666666667,2.4767233333333336,0.9061170000000001,4.60901,1.91342375,1.66845,4.50166,4.319395,3.31184,2.140225,1.374415,3.300195,2.74244,2.61396,0.42456550000000004,2.029745,0.42456550000000004,1.85868,1.374415,2.68265,3.87386,2.4248275,3.032775,3.46753,0.510826,2.826446666666667,1.0065275,0.4477805882352941,3.92022,3.873115,4.864465,2.4651325,5.52015,4.210475,3.74951,2.235695,3.8760333333333334,1.7278580000000001,5.45815,2.453735,4.365825,4.64793,2.7534733333333334,2.0699366666666665,2.0772233333333334,1.3357966666666667,1.934635,0.9273225,0.9273225,4.3857,2.1980566666666665,5.956711666666667,2.1552975,2.294075,1.932985,2.16611775,1.9281875,5.04955,3.9527925,2.024605,2.5190033333333335,2.16611775,2.66352,3.69780525,2.0343512500000003,5.631238333333334,2.1552975,3.25009,3.364665,3.0544966666666666,5.5549,4.548105,1.955505,2.067435,2.3724575,2.542805,4.815925,5.47985,1.9411525,3.884985,1.88696,1.646195,5.28125,10.351166666666668,2.13308,2.2195466666666666,2.42428,4.40955,4.029645,1.8241475,4.684015,4.35679,2.66211,39.18059651190477,2.8678333333333335,3.153893333333333,0.41989166666666666,4.820235,2.17031,0.9374300000000001,3.64759,3.67703,1.90023,1.835405,2.3524,3.831345,1.3733071428571428,3.3065816666666668,3.80858,4.570045,0.942785,4.851405,4.678805,4.863405,2.9032366666666665,1.57596,3.7894425000000003,4.58881,3.86424,3.08862,3.58823,3.81411,11.774632575757575,2.7975666666666665,3.1131,4.05815,2.700695,4.512815,3.316325,2.2354,2.920055,6.14375625,4.439415,5.2046,5.0975,2.458655,3.717645,4.23595,3.585755,4.6261,4.601855,0.10427032608695652,2.350695,5.4561,2.884395,1.4346416666666666,1.128875,1.128875,2.1304725,2.55676,2.439085,1.70033,2.7221499999999996,4.370285,2.452565,4.47659,0.5700828571428571,4.54111,3.473975,4.80706,4.68594,4.74452,1.24168,1.116435,3.8867666666666665,2.9163099999999997,3.0849100000000003,3.822023424242424,4.414945,6.3693,5.56855,4.149255,3.53443,2.1364833333333335,1.4800483333333334,4.35874,0.30545266666666665,3.37614,3.77331,4.023425,14.473436666666666,1.85500625,3.3348,0.67050375,4.557435,8.51187,3.32506,1.9378466666666665,5.85515,3.1720900000000003,1.1168855555555557,4.40245,2.886385,3.065185,4.80343,3.4788239444444446,0.9612475,8.404193333333334,0.7349125,5.00165,3.3158559444444444,1.4326125,2.1020049444444444,3.1729625,3.1729625,3.93604,4.405012,1.35535,2.514225,2.73787,3.645815,2.743225,2.67155,3.1726,3.285605,6.793846,6.4963,4.031345,3.28587,5.05925,4.80078,3.88537,3.3669,3.394895,4.04263,4.45743,2.5053966666666665,2.5563066666666665,1.61223,2.28538,2.3216875,1.5035175,2.6418866666666667,3.5642333333333336,3.4204000000000003,3.05926,2.4747,1.4812200000000002,1.5711266666666666,0.46475181818181815,2.52306,1.5222714285714287,2.00824,3.137696666666667,2.4672266666666665,2.5807066666666665,0.98725875,2.1934475,2.572765,3.25173,3.52282,5.39195,3.837045,2.942615,2.3036533333333336,3.42305,4.371685,2.529625,3.220515,2.03423,3.87479,2.771895,3.84959,1.4155133333333334,0.619233,2.4534775,3.23639,3.222455,3.892675,4.58658,8.404924999999999,3.0471766666666666,2.27015,1.9265233333333331,1.814152,1.814152,2.8661133333333333,2.5821733333333334,4.911795,4.569245,3.471015,4.94495,4.269605,4.295065,3.2682708333333332,4.21919,7.936730000000001,2.507325,0.50266875,3.33268,1.37307,0.9785714285714285,2.0322733333333334,0.7955829999999999,2.0806075,4.88992,5.26025,5.288995,0.84872,7.35844,1.939428,1.5609833333333334,2.4791866666666666,4.34017,3.3691666666666666,2.43679,3.564975,3.064743333333333,4.263766666666666,2.859453333333333,2.73319,2.996726666666667,6.67745,2.488185,3.9257,3.782976666666667,3.7260324999999996,1.5011999999999999,1.3120425,4.236055,2.780893333333333,3.0333366666666666,5.80275,2.865345,2.07356,2.436625,3.249505,3.6844,2.1831033333333334,3.8821266666666667,2.900233333333333,5.1804,2.434306,1.838585,4.738485,5.42725,4.469395,4.0702,1.4961033333333333,2.368545,1.8915,3.31743,1.7385666666666666,1.0115966666666667,2.8686716666666667,2.036225,1.9253875,4.24127,0.7759791666666667,5.9575024999999995,1.5514325,0.783520909090909,3.5955999999999997,4.042365,0.7027371428571428,3.1652880000000003,3.2826137500000003,0.8801916666666667,4.47223,0.17416190476190477,0.17416190476190477,0.17416190476190477,0.17416190476190477,0.17416190476190477,0.17416190476190477,1.9914640000000001,3.87371,1.9914640000000001,1.9914640000000001,1.827,0.17416190476190477,0.17416190476190477,3.1028800000000003,2.63943,3.47848,3.37338,2.310145,3.4879,1.3776499999999998,1.612822,3.369905,1.394708,2.7650366666666666,2.6475706666666667,5.882579999999999,4.322845,4.087685,6.21935,4.456205,4.264635,3.570645,3.70172,7.02192125,3.8135999999999997,3.661433333333333,2.36328,5.610986666666667,2.5615733333333335,2.045875,1.7895333333333332,4.591225,5.25295,4.95262,5.0063,5.55865,4.41931,4.638705,0.7445909090909091,0.7155285714285714,0.7155285714285714,4.564775,2.3182666666666667,3.89297,1.0550357142857143,4.68725,1.4636,2.3183166666666666,2.5605,4.487333333333333,4.487333333333333,6.8405,4.112255,1.349975,9.795755,2.869593333333333,1.1785666666666668,4.941605,4.92918,3.64112,3.15488,2.532735,4.320433333333333,0.7625866666666667,3.3264099999999996,3.408,3.8503000000000003,3.2371166666666666,1.5706666666666667,1.4617666666666667,4.6270375,3.196543333333333,3.04584,3.4828666666666668,5.400448333333333,3.333665,0.773358,1.8128366666666667,3.5551999999999997,2.281438333333333,3.8462333333333336,3.4744333333333333,3.072086666666667,3.513,3.064243333333333,2.3799,0.9524266666666666,3.0322866666666664,2.5590100000000002,3.57613,3.225695,3.998195,2.6296433333333336,3.238136666666667,2.76455,1.595766,1.8056033333333332,2.7326976190476193,3.6242666666666667,1.8298860000000001,3.3284533333333335,1.8208666666666666,3.697366666666667,5.4772083333333335,4.949200666666666,2.4633125,2.5586,2.747725,2.5739,1.654442857142857,2.3634875,3.3105503571428567,2.433895,3.5399333333333334,2.898225,3.797652666666667,3.074935,1.291611111111111,1.2925525,1.8389025,2.2208,2.9386566666666667,3.4570333333333334,5.1691,7.380157499999999,2.863065,5.1359,4.004865,15.377020333333332,0.41732050000000004,11.34337,0.8546411111111111,3.34807,3.1125833333333333,2.0822233333333333,3.05562,1.5557779999999999,1.453696,2.3421133333333333,1.255054,2.8462993333333335,1.9584633333333334,2.9076733333333333,2.1580633333333332,2.719393333333333,1.6414866666666665,0.6186733333333333,3.0654800000000004,2.5012,3.011746666666667,1.09333,3.5616333333333334,0.7284700000000001,0.36617153846153844,2.1735466666666667,4.431135,4.56494,4.58823,0.7974281818181819,4.015875,4.71282,1.1374825,2.2406375,5.13115,3.40027,3.775925,3.97072,3.90016,1.8897225,3.86308,2.7139166666666665,2.995015,3.46844,2.74444,2.827045,3.6912,3.19642,3.64341,2.534205,3.40992,4.524665,1.2588266666666665,4.614935,2.1874375,4.22358,5.160946666666666,1.9670925,2.817653333333333,2.98897,5.868005,2.450083333333333,3.157615,5.20735,4.064333333333333,3.983605,1.79195,2.74455,4.58839,3.6279,3.73243,3.7489333333333335,3.11552,2.8220666666666667,3.6526666666666667,3.1837233333333335,2.6517933333333334,2.679926666666667,0.4581694444444444,2.28299,2.0984375,4.5773,4.828965,3.0433333333333334,2.7891600000000003,3.1915366666666665,8.040595,3.5244537499999997,3.95613,2.8252900000000003,4.32434,3.168945,3.642180833333333,2.9461366666666664,2.271055,2.7298833333333334,6.4198,4.46089,2.14133,3.21047,3.096305,2.6113399999999998,4.635284,1.7267219999999999,6.172296666666667,4.0112,4.92976,4.49631,6.17285,3.54932,6.7595849999999995,3.83077,3.359175,0.6408207142857142,2.3835075,1.5176525,2.94889,3.0482825,4.017115,3.80179,5.50815,2.7138166666666668,4.52223,3.730366666666667,3.8333,3.1781733333333335,4.49419,4.44085,4.49787,2.71739,5.70538,4.51979,1.4461966666666666,5.35315,3.48282,2.704535,2.09306,2.19899,4.439184,1.2939500000000002,2.3944033333333334,1.9858225,3.88469,4.299955,2.59545,3.3305833333333332,3.0300269999999996,2.5683966666666667,4.145125,1.3410600000000001,2.28837,2.3123466666666666,2.8420533333333338,2.5114266666666665,2.5204666666666666,2.6830233333333333,3.938155,2.96036,2.8163699999999996,4.04698,2.47077,3.73627,3.651065,1.5163290909090907,1.5163290909090907,4.596865,2.884133333333333,1.783455,1.344165,2.074535,2.024405,1.118752,1.4368566666666667,0.628074,1.5979166666666667,1.48425,2.6998533333333334,2.1716433333333334,1.7935999999999999,1.9287066666666668,2.2865766666666665,1.4588833333333333,1.7870466666666667,1.8369233333333332,2.502925,3.883565,2.85755,2.9300599999999997,2.66355,5.501325,2.837775,4.340895,3.915412916666666,2.085985,4.0416,3.078505,1.994605,3.43618,1.971445,2.995255,3.574505,1.9073925,4.293045,3.14938,4.096815,3.3261299999999996,0.8007511111111111,4.88818,3.785875,3.137485,3.766075,2.2782666666666667,4.671695,4.577755,5.0608275,9.120908333333333,3.591885,4.343985,2.7987533333333334,3.796745,4.53825,2.033395,2.69706,3.96467,2.0814725,5.85662,1.823514,2.70293,6.739536666666666,2.933873333333333,4.0644919999999995,1.2771528571428572,4.46733,4.41489,3.1810233333333335,4.61033,4.918595,6.160451,15.956773214285715,0.6296058823529412,1.0567333333333333,2.99315,3.91668,3.49095,2.09356,3.26833,4.030475,4.72877,2.32941,4.73108,1.7593500000000002,1.7593500000000002,5.40675,0.76888,1.7583379999999997,3.050265,3.972585,0.37308230769230766,1.9498433333333332,4.05704525,1.1489883333333333,3.1358366666666666,2.712823333333333,2.917055,7.84077,2.452323333333333,3.4072,1.9363466666666669,2.168203333333333,3.89734,3.30184,3.36767,6.769994666666666,1.86979,2.885,4.368755,6.76055,1.8944666666666665,2.31296,2.51842,1.4950999999999999,2.577455,1.68867375,3.96232,3.647965,1.52922,1.8938723333333334,1.8938723333333334,2.857666666666667,5.35245,4.166398333333333,3.769325,4.38712,4.335105,3.177375,3.695905,4.256455,3.53571,4.5192483333333335,3.7386825,4.53696,0.9057740000000001,0.35910375,5.34335,3.861,2.4261233333333334,8.06619,1.6925533333333334,4.626566666666666,4.080005,0.3602066666666666,2.0849066666666665,1.3033766666666666,1.8713166666666667,1.9317166666666665,5.49367,3.11968,3.118985,4.5773025,4.959715,4.67359,0.5680546153846154,2.0352,0.599927,5.75127,1.470456,4.90236,2.060255,3.14018,3.206535,4.2758,4.23531,5.20475,0.8676554545454546,3.4547,4.151845,1.9867075,1.6848725,3.606195,3.1205,3.62729,3.86569625,5.353585714285714,4.58542,5.44,2.73414,0.5948177777777778,3.32593,3.70364,0.6280399999999999,3.746315,3.788485,4.03631,3.05312,2.6079233333333334,5.12545,3.35645,3.18823,2.16116,3.691265,1.6710699999999998,3.859365,3.68729,0.5817753846153846,3.84204,3.96514,3.28547,3.74355,4.27775,2.72227,3.841185,0.651389,2.9973899999999998,3.7463466666666667,4.47645,3.4579,2.3577375,3.4341000000000004,2.3577375,4.95986,3.14828,3.025456666666667,1.5692083333333333,2.88071,1.88521,4.26591,2.7877166666666664,5.138476666666667,3.1507,2.83937,3.0199866666666666,2.419494464285714,2.419494464285714,2.419494464285714,2.239456666666667,1.1301616666666667,4.540105,2.4369133333333335,1.6687333333333332,3.8336666666666663,2.4552566666666666,3.04082,4.07128,5.53455,3.49479,1.8634125,1.0939260000000002,4.038825,1.9544380000000001,2.28545,2.979455,3.50407,2.01102,3.42267,2.815925,1.6442160000000001,4.6999,4.14393,3.183145,3.57944,0.7569855555555556,2.3806866666666666,4.47808,7.497015,4.121545,3.029675,2.86848,3.489125,3.78478,1.6504525,2.4004875,4.61912,2.1197,4.374075,3.53307,5.33035,8.44655,4.056215,3.58606,3.298375,4.775705,4.031805,3.1270100000000003,3.1270100000000003,3.84897,4.142651666666667,4.07233,3.954435,4.15287,4.268715,3.96457,1.11952875,4.274115,4.175845,5.1605,7.976285000000001,5.2625,3.675370666666667,1.8316466666666666,1.37836,2.52424875,5.06315,3.857835,4.76343,2.347096666666667,4.535495,5.05885,5.1391,4.791935,2.968173333333333,3.547965,4.107555,5.1627,4.739695,3.85575,6.732541666666666,4.66878,2.303576666666667,5.0017,4.07179,4.10393,3.734645,4.593275,0.7355999999999999,4.26557,4.26383,1.2060057142857143,1.30147,4.85417,4.689375,8.7186785,5.04615,4.464535,6.06295,3.115315,2.57544,5.0559,1.634975,1.634975,2.65823,1.6484500000000002,2.9678225000000005,3.29276,1.8702675,4.1305190909090905,1.4815633333333331,2.15231,5.37876,3.8200183333333335,3.453875,3.104365,3.882985,3.94834,2.995563333333333,1.0202055555555556,4.07911,3.1384833333333333,3.913555,4.19619,3.7477533333333333,5.4332,4.473825,4.74528,3.520635,5.29985,6.37925,4.69836,3.30586,3.432295,1.9135725,1.9135725,3.894245,3.983915,2.60254,2.6891833333333337,2.0938201515151516,2.5923366666666667,1.8317766666666666,1.8317766666666666,4.32233,3.39706,2.113095,3.510125,2.79493,2.09769,1.23962,1.0595833333333333,2.690835,0.44777736842105265,0.7561133333333333,2.886685,3.79429,0.42625545454545455,3.835245,1.8921,5.36615,3.36536,7.35715,4.43583,5.36449,4.576155,5.2996,4.11875,2.234875,1.8886800000000001,3.897165,3.06668,3.791415,1.3120633333333334,3.50506,4.403305,2.7108,2.618575,2.444415,4.317675,3.27692,3.207705,3.90874,3.54485,3.580405,2.69283,1.0328857142857142,1.98735,2.26384,2.83384,4.241675,7.38365,0.981282,1.5030700000000001,1.5030700000000001,1.8723120000000002,3.782125,2.755335,3.02802,5.401002500000001,2.9095999999999997,1.2139225,1.2139225,1.2139225,2.929975,3.0857729999999997,4.94863,3.264805,4.11235,3.374385,3.65222,3.101805,3.2148791666666665,3.585805,3.9556175,3.0444,1.118752,2.692365,3.0444,3.67828,1.46295,1.77494,1.9661725,5.683682,2.995145,6.232177,5.683682,3.237032,1.6099266666666667,1.6099266666666667,2.678785,6.09523,1.6099266666666667,2.520885,6.03209,2.567005,2.930175,4.94657,3.58819,4.22536,1.9141933333333334,3.309365,4.90783,2.059413333333333,2.35043,4.18843,1.9141933333333334,2.61812,2.021595,6.25726,2.576845,1.101478,2.52269,3.097675,3.1265446666666667,1.910675,1.9198179999999998,4.12666,1.9306146666666666,1.873925,3.27751,2.39437,3.44107,4.2613,2.2821000000000002,2.714745,2.0657,6.95336,2.322125,2.79172,3.323595,3.323595,7.906823333333333,1.0863833333333333,2.936625,2.195765,3.21331,2.31324,1.0730166666666667,1.0730166666666667,3.36253,2.21062,7.797155,2.667125,3.621735,2.663825,6.10273,2.696545,2.63233,5.86133,5.86133,2.363105,1.445905,1.37578,1.37578,1.445905,1.9013966666666666,1.1784433333333333,1.2040316666666666,1.6459666666666666,2.078676666666667,3.713905,1.80579,3.62485,3.01056,2.719805,2.779865,2.883125,2.477705,3.5854066666666666,3.5854066666666666,6.15355,2.272535,3.08604,2.98671,3.096195,2.47009,2.795335,2.355835,5.7175825,1.8201325,1.6801983333333332,1.3936066666666667,2.343425,6.09826,3.9942349999999998,3.263855,3.245405,1.8281475,1.8281475,1.8281475,5.09912,2.51775,1.2040316666666666,3.197495,3.25889,1.3803975,5.1790875,3.23819,5.97872,3.4352,1.69673,3.5276,2.3925566666666667,2.231385,3.238635,4.92752,3.84576,1.84656,2.407515,3.247835,3.35192,4.52777,1.974435,3.581675,2.63401,6.34863,4.8048,2.082795,2.294855,5.71335,5.51898,5.26431,5.41825,1.060644,1.060644,2.391036,2.391036,0.748986,5.30796,3.40894,5.2872,4.20972,4.70255,2.3666,4.6524383333333335,4.6524383333333335,2.469655,3.294605,3.398925,1.166882,4.53341,2.89947,2.831015,2.70989,4.65941,2.577015,2.282375,3.11243,3.14823,2.93827,5.3026,2.401775,2.19134,3.83578,5.92879,5.97423,4.3007,2.591675,3.5653,2.584265,5.28981,2.948645,3.78772,2.46503,6.71509,4.76136,2.56934,2.16257,2.613185,4.59504,2.139675,2.57029,2.748095,7.40153,4.38403,3.3306,1.994575,2.762955,6.11324,3.31599,3.241095,6.15014,3.16681,3.076295,2.6973,2.98558,2.00712,1.951145,1.2729333333333333,1.6747966666666667,1.5591366666666666,2.1111,1.37532,2.148423333333333,1.794265,2.00712,4.40717,4.03406,2.16122,1.9856950000000002,1.9856950000000002,3.9967300000000003,3.9967300000000003,3.1872999999999996,3.1872999999999996,2.797745,2.37859,1.738015,3.84107,2.2505924999999998,2.2505924999999998,2.441555,2.441555,3.58947,2.2151,4.69329,2.28685,3.024385,1.95838,1.95838,1.71801,4.37572,4.59893,1.46295,4.30772,2.2821000000000002,2.04202,3.784,3.084875,2.003285,2.699595,7.28709,2.29249,5.84691,3.11318,3.34514,3.161015,2.573665,5.96545,3.4741,2.148435,2.4620880769230773,2.52096,5.05186,3.218045,1.599756,1.599756,4.02034,5.50182,4.99095,5.49388,2.65385,2.64198,1.79472,3.177,1.851595,2.762075,1.83166,0.832988,0.832988,0.832988,1.9845391666666665,4.752566666666667,1.9845391666666665,2.064325,3.69695,1.76518,2.11887,4.2449,3.2841,5.06399,1.64306,4.62622,1.64306,1.64306,2.458695,1.96245,2.891705,6.10779,2.891705,2.47297,3.84745,1.89991,1.620845,2.66827,2.976096666666667,3.1761975,3.1531800000000003,3.584955,1.3619733333333333,4.141675,0.7304045454545455,4.389285,4.27261,2.6416775,2.6416775,0.7097263636363637,3.806566666666667,2.662846666666667,5.5059,4.99203,3.915325,5.0174,3.988025,4.072065,5.05365,4.08896,4.3557,3.74918,3.79353,4.87848,4.717245,3.31543,3.493225,3.70797,2.4970666666666665,1.304014,4.5115,3.581855,2.96742,1.3161442857142858,3.837205,4.04311,6.3213,0.97485,5.19485,4.22569,2.333685,2.047855,3.24281,3.56397,1.74544,1.599756,3.682585,4.54604,2.55452,4.693995,3.039355,1.15045,2.94227,1.2319185714285716,3.0383366666666665,1.8212233333333332,3.1861866666666665,1.8828475,2.5077333333333334,4.081165,3.166525,4.50987,3.284625,2.21604,4.95854,4.41325,3.234855,5.57755,4.17601,2.6998200000000003,5.95695,4.743355,3.1402633333333334,2.6300333333333334,3.56522,3.0934033333333333,3.0125233333333337,2.777616666666667,4.858085,4.21427,3.766035,2.5167333333333333,2.62088,2.3890533333333335,2.3368366666666667,2.0807933333333333,2.3929,2.3202833333333333,2.2927575,1.2625075,2.989224,1.2680125,1.8695175,1.7928875,2.789275,1.6870675,1.796,3.836355,4.276455,1.9683875,4.04428,3.4909,6.196535,2.0278266666666664,1.6309159999999998,6.9295,3.416975,4.75827,3.97364,3.628885,1.852825,3.39014,2.505275,2.977235,4.40859,0.7208258333333334,3.8716,2.254166666666667,0.7961227272727274,4.937905,4.56669,3.982255,1.7685935714285714,4.819075,5.18665,2.6663366666666666,2.7546133333333334,2.5121733333333336,2.165993333333333,0.602004,2.97968,3.00685,4.91506,2.4137975,2.0328525,3.44419,1.106705,1.8995816666666667,1.8995816666666667,2.73903,1.8995816666666667,4.10633,2.719665,4.32977,4.38093,5.75595,13.5918525,3.26271,4.74823,2.69235,4.69528,3.269735,6.59703,2.9049300000000002,4.574665,4.95998,3.866625,1.139475,5.0782,2.9107866666666666,2.5839433333333335,0.9147822222222223,2.16108,3.054655,7.146903333333334,4.28236,2.9072433333333336,4.51189,3.358366666666667,4.16065,4.63456,4.50109,2.90753,2.907693333333333,4.00064,5.4263,2.58278,4.429715,1.8317725,1.8317725,3.10143,4.92819,0.992985,4.132392666666667,2.0749975,4.75871,2.60602,2.6224766666666666,3.03125,2.4604,0.69994,3.5838,2.739786666666667,4.8637,4.676205,0.237928125,4.91099,4.570325,4.23127,6.855458333333333,2.9818233333333333,2.8610233333333333,2.1112733333333336,2.9699533333333332,2.83052,1.3429133333333334,2.8916033333333337,2.58486,1.3802816666666666,3.3722,3.045666666666667,2.590516666666667,3.1225166666666664,1.342555,4.248295,2.750135,5.036,4.014945,3.77508,1.64306,2.5271500000000002,1.303045,2.01629,1.303045,4.93497,3.3691333333333335,1.557842,2.35099,4.044595,3.87363,3.119285,3.916795,0.335364,1.3955708333333332,3.8986,4.311235,6.1999,1.9936525,2.78494,3.0713233333333334,2.19599,2.854765,3.64078,4.591375,2.58215,2.32667,2.8845433333333332,2.58804,2.7892966666666665,4.281675,2.480185,4.36206,3.740239166666667,5.82725,7.4483425,0.7285200000000001,0.809723,4.154055,6.6242725,1.9540220000000001,3.454485,1.6001216666666667,1.6001216666666667,3.409575,0.4576577777777778,3.519385,3.84104,2.76559,3.99264,3.235315,2.39398,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,0.23185566666666665,2.36028,2.964095,3.91455,2.9345100000000004,4.66764,6.02826125,2.946995,1.9311166666666668,0.9339750000000001,3.487625,0.71652625,4.771414166666666,2.8402975,2.68313,0.71652625,2.544205,2.68809,0.85808,3.93288625,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,0.16239666666666666,4.288095,1.57799,4.628785,4.47581,1.748762,4.753515,4.22728,5.2618,4.796121666666666,3.534117142857143,3.41764,4.36882,2.0361775,5.649215,4.33871,0.7461357142857142,1.3664314285714287,1.3521142857142858,3.24756,3.24756,3.007075,3.82099,4.31352,3.565405,3.990925,2.84134,1.96403,0.47468000000000005,4.060225,3.97805,2.740965,4.14017,3.308045,3.0727675,4.51731,4.4298,6.962625,4.145925,4.936315,5.6606,4.359845,1.2725485714285714,3.169855,4.9972866666666675,33.45708651443001,1.25828,4.315095,3.31634,4.6208,4.08301,5.2814,5.2613,0.4133780952380952,5.05875,4.369185,1.87505,2.12528,3.621595,1.5838875,2.4479,2.35437,1.733785,3.032925,2.406023333333333,2.93535,2.75589,0.5949876923076923,3.113275,3.823855,0.3840205263157895,2.5401966666666667,3.210295,2.958225,3.866875,1.82558,4.38387,3.89381,3.326055,3.42039,3.056335,4.133655,2.967805,3.79965,2.1853975,4.9972866666666675,3.549315,3.43873,3.025735,1.656636,3.954115,3.30717,6.905190000000001,3.145525,4.789315,6.081160000000001,5.150734,2.1508325,4.28994,5.852145,7.255438,2.5980266666666667,2.60263,4.801625,5.608036666666666,4.18632,3.2887,5.371301666666667,2.710825,1.907025,2.1933575,60.004883297643616,4.744825,4.254995,2.588425,0.846519,2.7448333333333337,2.8857966666666663,3.3533333333333335,0.7926177777777778,4.60131,0.7837666666666666,7.7175971428571435,1.9544380000000001,3.3953,1.7722079999999998,2.844005,2.6147566666666666,2.808873333333333,2.39704,2.22968,3.3707,1.5627233333333335,5.522825833333333,3.972933333333333,1.5498925,2.6679833333333334,1.4401433333333333,1.48685,7.60569,5.92905,3.37168,4.21954,5.409587500000001,1.4066228571428572,3.457433333333333,3.44775,1.666265,5.18325,3.573135,3.8937,1.773215,2.893679166666667,3.544166666666667,4.00819,5.92535,4.273545,4.60201,2.594825,3.76341,4.476933333333333,3.1021966666666665,1.4388,4.34063,3.2986133333333334,4.10933,5.119,3.962735,3.989605,4.54541,4.271985,4.25739,4.564565,3.7355,3.167,4.015225,4.210115,3.25034,4.199665,3.83782,1.5568775,1.5568775,4.27539,4.901905,5.079,3.68454,4.850255,3.381933333333333,2.79798,4.51255,5.01365,0.7254509090909091,5.39215,6.66822,5.31545,5.64245,1.0425944444444444,3.04808,0.9139933333333333,0.9139933333333333,0.9139933333333333,3.636835,3.3308066666666662,2.659386666666667,3.6227,0.9908939999999999,5.1099,4.824415,3.159095,1.6991875,2.048295,4.28885,3.6577,3.891275,2.8967780000000003,6.7488,3.560645,2.46398,4.90232,6.67615,2.568495,4.16554,3.736425,3.101585,5.2284,4.853225,4.938555,5.9784,3.06841,3.592392222222222,2.3681766666666664,2.3681766666666664,0.7142509090909092,8.283403999999999,2.208385,5.87605,5.6281,4.24845,4.822195,3.67289,2.977778333333333,4.511335,7.71384875,5.66979,2.376306666666667,4.39643,1.00068,3.744425,1.9074933333333333,0.8843455555555555,1.2505428571428572,2.6297166666666665,3.039703333333333,2.85177,1.13604,2.553576666666667,3.08774,0.8915288888888888,2.7517133333333335,3.2235533333333333,1.629782,1.712506,2.9394899999999997,2.9785833333333334,2.793673333333333,2.5715133333333333,1.7438120000000001,5.3307,4.33339,3.885355,4.359145,5.10065,3.313255,4.377625,5.8017,5.0173,4.344485,3.86849,10.309143333333333,8.14124,2.9174133333333336,3.379485,1.98566,3.702445,3.2348,4.430095,1.053905,3.62061,3.456685,1.6008916666666666,3.904305,3.016591666666667,4.26314,2.775535,3.7932,6.5356,7.0267349999999995,3.999725,1.5327950000000001,1.5327950000000001,1.5327950000000001,4.74559,1.2270833333333333,1.4195625,0.4611355555555556,4.36195875,2.935,3.763315,0.925387,1.1574125,3.16653,4.339735,3.708335,16.326161916666667,4.1883575,4.525445,5.9820025,2.7728,3.656415,3.253285,0.9326666666666666,1.42713,3.827975,3.873795,4.495015,4.276555,4.523775,3.85744,2.7210086666666666,3.337975,5.20885,0.5551999999999999,4.56018,2.33989,4.215865,5.03965,3.615,2.50061,3.96464,1.83488,3.53247,6.0017,3.1873133333333334,3.44232,4.299425,4.06004,4.629475,3.8674,3.479315,3.855155,4.8962,4.93016,3.745375,4.505455,3.717625,1.1423871428571428,1.4145475,5.877890166666667,5.8629,3.989045,4.9117,2.3993425,2.7091100000000004,2.825813333333333,5.657450000000001,1.8503475,2.256075,2.9520233333333334,3.041676666666667,3.18237,4.5215,3.39987,4.800008333333333,1.2024275,4.506465,0.9266366666666667,4.115675,3.38089,1.6650583333333333,4.34465,0.9483422222222223,5.07865,5.7269,4.903725,4.02924,3.828924166666667,4.00654,3.0759633333333336,5.1286,5.87475,2.8491074999999997,4.054245,2.4002,2.58022,1.9976,2.59141,3.16422,5.0063,1.0684275,4.52953,1.38779,3.32352,1.67408,1.0684275,0.19331594594594595,3.648405,2.997515,2.29154375,1.9946,2.739225,1.1390725,4.081025,3.616595,4.473175,2.56874,6.2602,6.5174175000000005,2.630236666666667,3.235276666666667,2.6289166666666666,0.8119859999999999,2.32591,6.20725,4.036535,5.6381,4.83017,2.16886,1.2803633333333333,4.0433675000000004,1.5935925,2.126925,1.740755,2.59955,1.8504775,1.89091,2.05458,2.1850125,1.8745275,1.3415857142857142,1.38909,1.863165,2.0377325,2.243085,2.4505066666666666,0.5302053333333333,1.113448,2.7818,3.2101666666666664,2.0021425,1.83423,1.5244525,3.433135,2.2885233333333335,2.591765,2.97695,5.75825,3.569105,2.9940366666666667,4.220875,1.6754157352941177,3.8228887499999997,24.0197385,4.55186,5.40995,4.279065,2.2731766666666666,3.80902,4.809595,2.50603,5.09945,3.13813,0.80309125,3.15062,4.590295,3.681675,4.17278,1.56951,2.030413333333333,2.420123333333333,2.41639,1.4996142857142856,3.347566666666667,5.01895,4.29016,3.2974,3.91263,4.88271,3.69577,4.85015,1.2742375,3.09631,4.155105,4.67907,1.685272,3.3278766666666666,1.8792312500000001,1.8792312500000001,3.6624,4.67328,2.7279633333333333,3.1289466666666663,3.895365,3.89456,6.62186,4.654715,2.20468,1.42713,2.9964,4.40587,3.21032,2.4715790476190476,2.4715790476190476,3.352233333333333,4.955615,3.681085,4.943726666666667,2.298965,3.3311146666666662,0.6386266666666667,0.6386266666666667,0.6386266666666667,3.57409,3.75032,3.81397,5.4772,2.067665,4.65562,4.954545,4.53595,3.319225,5.3509,3.329945,1.3486185714285714,4.20449,4.05907,0.48012428571428567,4.296433333333334,4.783525,1.4992216666666665,5.1422,5.21015,4.721715,4.40638,3.65976,2.80885,4.36696,1.689244,4.485395,1.6344683333333334,3.91639,5.8315,1.09655375,3.156185,6.96485,3.87684,3.20445,2.084205,3.745215,5.81695,3.0949666666666666,7.950176666666668,4.041015,2.2375700000000003,3.15325,2.67623,2.519556666666667,2.75806,1.9101233333333332,4.429185,0.635055,1.84632,1.84632,3.155215,3.72376,2.3142875,2.95969,4.204775,4.96697,4.42687,1.46312,4.641971744047619,4.36852,4.82721,3.66357,3.6196748333333337,3.2083175,0.4113573333333333,2.6942864285714285,0.966375,0.4113573333333333,4.460995,0.8463788888888888,4.233985,3.947295,6.4698839999999995,2.189293333333333,1.059235,1.14547,2.310275,2.94463,2.04645,2.4387166666666666,3.393445,3.409935,2.03342,2.1601066666666666,4.455135,3.2012075,3.980205,5.72545,3.51748,4.852125,6.760468333333334,4.5889,3.57384,4.399815,3.675315,4.263085,4.928635,5.7133325,5.4157,2.4107600000000002,0.95189,3.74081,3.89552,4.04467,4.45554,4.119335,4.962675,2.6663133333333335,2.4761466666666667,3.07025,2.3124966666666666,2.096443333333333,3.082216666666667,3.16643,2.4342833333333336,3.7867,5.2007,4.209545,5.3462,2.4830733333333335,3.3613,2.924425,0.7036557142857143,4.11844,3.522375,4.5445,3.09671,5.267043333333333,3.093845,4.47437,3.95644,0.5827976923076923,0.5477271428571429,4.320095,2.8340435,3.12995,4.50031,4.13218,1.83274,5.2387,4.293095,2.65909,2.59631,2.3338525,2.14107625,3.5829,3.201333333333333,3.0886533333333333,3.10681,3.4981666666666666,2.715125,3.0439366666666667,3.6614,4.4073225,0.516835,0.516835,0.516835,3.1717223333333333,3.630266666666667,3.6686666666666667,2.70815,2.88712,1.11952875,3.058073333333333,3.02964,1.8204425,2.8718800000000004,2.3654699999999997,0.9635511111111111,2.8546983333333333,4.69352,9.756207333333332,1.3981685833333333,0.556125,3.90471,0.556125,0.556125,0.556125,0.556125,2.2105325,4.0273025,3.91677,5.08135,5.9792,2.7891333333333335,2.7438933333333337,2.99813125,3.2766433333333334,4.71516,1.0050483333333333,2.3233166666666665,3.1134766666666667,2.46378,2.958296666666667,3.88986,2.180286666666667,2.515445,1.1493,4.576755,2.88961,3.527715,0.87245,0.622062,0.622062,0.8662926521739129,1.7387426521739129,0.8662926521739129,0.8662926521739129,0.30319565217391303,0.30319565217391303,0.8662926521739129,1.4559133333333334,2.43168,2.96967,3.0552499999999996,2.583483333333333,2.7028233333333334,3.19493,2.7701666666666664,4.65398,3.586015,1.93317,2.2672266666666667,1.7932375,0.18282376472754047,0.18282376472754047,0.18282376472754047,0.18282376472754047,2.57167,2.4358833333333334,0.8418380000000001,4.963075,0.7715645454545453,1.678334,4.7428791666666665,4.924915,4.298095,3.31059,4.45236,3.603915,1.8495966666666668,1.297195,3.7604,4.680055,6.165,2.499575,1.4073066666666667,1.9750966666666667,3.05981,1.4692933333333331,2.7487600000000003,2.9541866666666667,3.1699066666666664,4.53645,3.93879,3.051725,5.28325,2.4292166666666666,4.10024,5.2349,3.906215,4.48127,4.77079,5.328353333333333,4.6696025,2.9991677142857145,4.936758333333334,4.432365,6.29875,4.30166,4.45127,2.2144325,3.201495,4.23735,4.67965,4.437115,3.986545,3.91108,4.056425,3.977135,2.4456966666666666,5.23995,3.545295,7.513405,5.9755,5.88525,4.896985,1.4633571428571428,0.9687889999999999,0.6538407692307693,1.7751100000000002,4.81296,5.47365,3.932075,1.6485379999999998,4.057465,3.065535,4.523015,5.18045,6.098617,3.85966,3.10749,1.678816,5.4235999999999995,3.96774,3.082155,1.61943,1.01270625,3.82567,3.321295,3.34203,3.804475,2.212105,4.46369,1.66517,2.9787166666666667,2.243465,4.31347,5.53095,4.85138,2.1393975,1.736835,5.64485,2.9201766666666664,9.15888,2.852725,5.0823,5.83985,4.57629,5.1567,3.726145,5.19285,2.0580475,4.093435,4.836856,2.550475,4.307335,4.402195,7.1752400000000005,5.0653,3.1897699999999998,4.197615,3.999945,3.2012075,3.641665,5.1858,5.43915,2.4481475,2.996066666666667,3.2862666666666667,2.23583,2.58428,4.31829,5.8196,4.978065,4.635485,4.922415,4.314455,4.8208,0.6526207692307692,3.09469,1.24396,30.970931596661494,2.25297,4.549185,2.975745,4.65833,1.60123,2.451983333333333,3.251105119047619,1.724962619047619,1.724962619047619,1.724962619047619,1.724962619047619,1.5261425,3.588255,0.31394999999999995,7.688553611111112,0.31394999999999995,4.359435,4.91401,2.01737,5.36135,2.562675,3.9547920000000003,2.4370366666666667,2.4376933333333333,2.7997866666666664,2.1692966666666664,0.6191392307692307,2.6329933333333333,0.7363058333333333,3.1433999999999997,2.2954933333333334,2.5688459999999997,1.1882366666666666,2.5688459999999997,6.0977,7.994375,4.640085,4.36938,5.71625,6.2174,7.568384999999999,3.06164,1.48328,1.48328,2.3928766666666665,4.85345,3.907455,4.385045,5.991,3.97575,2.83093,3.787885,3.673615,3.648425,2.2649,0.976764,1.950855,3.72915,4.18863,5.276457777777779,2.00441,3.898185,1.232914,3.19918,1.3030599999999999,3.410433333333333,3.10129,3.1988766666666666,3.1833333333333336,2.896903333333333,4.941325,0.6317738461538462,3.459385,3.646266666666667,2.779996666666667,2.34624,4.1795124999999995,3.4566666666666666,2.3210933333333332,4.7304525,3.75055,5.11135,3.94293,3.60163,5.3634,4.936895,2.1555066666666667,5.671,2.340676833333333,1.8664333333333334,3.202413333333333,2.3480866666666667,2.9488,2.49658,1.9104700000000001,3.418626393939394,4.351015,3.1908125,2.4401743333333332,2.4401743333333332,2.541105,3.916995,4.00558,0.6592045454545454,3.0984,2.839455,8.70709,0.8520254545454545,4.505085,3.596075,5.3057,3.648765,3.778545,2.1634,3.93595,2.92976,5.67195,2.5965941666666668,0.960305,3.927815,2.6629,3.77158,2.604206666666667,3.60561,3.941115,3.98103,5.178654,2.84796,2.103135,5.2831,2.5515733333333332,4.55839,4.996445,4.65312,4.371765,4.016055,2.84787,2.17582,2.93417,2.5938866666666667,2.7965,3.2715833333333335,2.675182619047619,4.931373333333333,2.9459466666666665,2.605043333333333,6.619678333333334,5.083963750000001,3.7433275000000004,3.0885200000000004,3.826833333333333,4.01355,3.46111,2.060765,4.064885,4.93407,4.63199,1.3531016666666666,3.965165,2.7548866666666663,6.1370075,4.791875,8.504048888888889,4.136245,3.58238,2.11597,4.1612,5.5502175000000005,7.75569,3.63391,5.76541,3.702645,3.409745,4.03244,1.7267219999999999,4.630749,1.423515,3.59258,4.620885,3.4204666666666665,0.8504333333333333,8.914380000000001,1.201788888888889,1.877565,2.467356666666667,1.8698466666666667,3.4405666666666668,1.3678299999999999,3.62822,3.29448,2.52873,4.290995,1.0757516666666667,3.567345,1.43912,2.7189336666666666,3.9267,4.6878,1.5295825,5.71967375,2.2532069999999997,8.10141,4.341905,2.77515,3.976085,3.358005,1.1467091666666667,7.57901,2.964355,3.436715,2.293005,4.15112,2.1345975,3.00522,2.313675,3.90203,1.44444,5.245,2.86258,4.250865,0.805462,2.301582,3.818655,5.07135,5.282045,1.4781520000000001,1.4781520000000001,5.87985,4.206735,4.844525,3.711565,3.51795,8.70507,4.47358,5.52555,4.08373,2.418775,2.1182748023553506,0.38999799999999996,0.17899354838709677,0.6324779928315413,1.0957988095238096,0.6468106912442396,0.17899354838709677,1.2158305,0.45348444444444447,1.4857968095238094,1.8483084928315412,1.960475,2.248645,2.2510966666666667,5.00465,6.444155,4.868975,5.153,4.48713,5.15795,1.2538099999999999,4.993265,3.927045,5.7754,5.2114,5.02545,5.8239,5.6784,5.6157,1.2650433333333333,1.3255642857142858,1.892508,6.042989,1.317784,5.29415,4.873785,6.871235,5.01455,5.43635,4.410295,4.60742,2.563,5.3315,5.30165,6.3960566666666665,4.873955,6.074183333333333,5.75565,3.7942099999999996,4.27163,3.673833333333333,1.00819,3.6368666666666667,4.542405,1.144025,3.6415,4.776385,4.6089475,5.2752,2.541075,3.334455,2.6897333333333333,4.62865,2.1399575,3.827895,1.2677116666666668,3.213165,3.74443,3.92452,4.42304,3.39997125,0.6346483333333334,5.9969,0.99276875,3.654065,2.9633533333333335,3.77889,2.0367266666666666,3.668445,3.7974628205128202,3.2607,4.448505,15.399775785714287,5.203609999999999,2.28282,8.45567,1.3704125,3.220445,2.84459,2.8255266666666667,2.0075566666666664,0.2199013043478261,2.9407833333333335,4.49086,1.756834,2.3213333333333335,3.4159666666666664,1.82002,2.48054,1.5791428571428572,3.22704,4.875805,5.39035,3.753385,0.5272385714285714,2.4213400000000003,4.739815,2.865665,4.1353,4.409445,4.10657,5.23025,0.4870788235294118,2.52031,2.52031,5.32845,5.09895,4.83477,2.7003,3.575366666666667,2.8600499999999998,5.2067,3.522845,5.624415,4.70531,4.444215,4.68457,2.524625,1.9599060000000001,4.397315,4.12649,4.039765,3.20338,1.8316659999999998,4.532785,4.380395,3.76989,4.61553,3.847295,3.967715,0.6109546666666666,3.12075,0.5968683333333333,3.0637966666666667,3.265675,4.32039,17.831844285714286,3.521655,3.56471,2.3925566666666667,0.974875,2.3187599999999997,2.53799,1.515374,2.398325,2.488865,4.72969,2.2343333333333333,3.86725,4.35435,2.10573,4.430355,2.922606666666667,4.755875,5.22915,5.36085,1.70879,1.795045,2.132095,4.7026,4.951485,1.1286111111111112,5.2373,3.899795,5.741,4.79026,1.7156333333333331,4.606835,3.48083,3.65964,3.804905,4.08711,3.0360633333333333,0.6474325,7.536191666666666,1.317206,0.1983336111111111,0.1983336111111111,0.1983336111111111,4.971935,3.98668,2.695956666666667,4.194125,2.82141,4.38114,4.301096428571428,4.0338899999999995,8.176706666666666,4.24568,6.514745,0.90149,0.7782975,2.459725,4.501275,4.245495,2.0821,5.3028,5.40565,3.558295,3.513515,4.41751,2.11521,4.83441,4.6822680000000005,2.3255433333333335,2.9088266666666667,3.093223333333333,2.784005,6.1272,3.864365,0.667135,3.81373,3.154845,4.1242,4.803100000000001,4.84307,3.0027,5.3584,3.565505,13.53646125,4.71028,6.629648666666666,2.47554,6.377735,4.38546,3.886835,2.0569375,2.30838,9.42037,2.194096666666667,4.218733333333334,4.085566666666667,3.659966666666667,3.0149166666666667,2.8920266666666667,2.0244525,2.2220975,2.9049866666666664,1.8208659999999999,3.9016333333333333,2.3215166666666667,2.62138,3.2234133333333332,3.440633333333333,2.423,2.423,2.46326,3.4279666666666664,3.3944666666666667,2.41743,3.14148,4.213666666666667,2.6889033333333336,2.7972533333333334,3.770966666666667,2.306,1.93335,3.834,2.97845,1.59894,3.7549333333333332,2.143196666666667,2.2932366666666666,2.9555666666666665,2.202313333333333,3.430733333333333,5.475371666666667,2.3942033333333335,3.7504666666666666,1.9158099999999998,10.494906333333333,1.9708633333333332,1.8465366666666665,2.1599399999999997,1.018771111111111,1.590678,4.505406666666667,2.815814,2.815814,1.64608,1.4787983333333334,3.4378166666666665,3.6882849999999996,2.1978266666666664,1.5333983333333334,1.641656,4.476604666666667,3.5826333333333333,3.9998,8.05522,2.99801,2.326416666666667,3.301205652173913,4.178766666666667,1.93335,3.2332666666666667,2.822573333333333,3.2247166666666662,3.4856675,0.8855575,3.231515,2.9081233333333336,2.84173,4.074585,3.1511600000000004,0.6877263636363636,1.869940476190476,5.14045,2.6236575,3.4194999999999998,1.5191366666666666,1.5191366666666666,2.093265,3.6381266666666665,0.92843,2.21783,4.50043,4.50043,0.6427619047619048,5.97658,3.40092,3.919245,4.68604,1.1958942857142856,3.3524333333333334,3.5645666666666664,5.004458333333334,5.758717,2.4146533333333333,0.624424,2.645356666666667,2.5524533333333332,2.9545060000000003,2.236683333333333,2.3828400000000003,2.8953133333333336,2.361925,2.4847633333333334,0.76826,5.31425,4.624964571428571,1.20509,1.6849285714285713,5.30525,2.159685,1.65682,4.20631,1.429462,3.497045,2.584725,3.6185333333333336,8.782395833333334,4.259476666666666,4.53229,4.96801,2.3550596363636362,0.790697,1.840188,6.94025,1.7345499999999998,4.143455,4.12251,3.678195,21.16797325,3.1862600000000003,1.4156966666666666,1.10476125,3.0923,1.5150833333333333,4.0644919999999995,5.20495,3.37058,3.3097133333333333,1.80895,1.390625,2.744426666666667,0.5546575,3.4725,3.6227,3.0552233333333336,2.5181276666666665,2.49476,2.770353333333333,2.0040366666666665,3.0023133333333334,1.614932,3.8236666666666665,1.5100133333333332,3.768605,4.00477,2.5266433333333334,5.222,3.280895,3.96756,5.11115,4.717765,3.0027066666666666,2.658796666666667,2.2410466666666666,1.159107142857143,1.159107142857143,1.159107142857143,2.39754,3.2393300000000003,2.53786,2.435556666666667,2.29788,2.0284975,3.65537,4.255145,3.653285,6.435505,3.14658,2.5415,1.8934925,0.942595,2.4122266666666667,3.85907,2.54212,2.57648,2.456976666666667,2.40904,2.6165866666666666,2.82906,2.85035,2.6889266666666667,2.2796600000000002,3.2052,2.14165,2.1440225,1.6344025,1.6736425,3.04464,3.0799766666666666,1.98919,3.87244,4.958045,2.7700933333333335,2.280503269230769,5.473443333333333,4.090525,4.741885,5.62375,4.4,4.25134,6.4857175,1.27135,4.308375,2.67562,5.18195,5.45575,3.66259,3.610865,2.14215,7.465335,2.47089,0.8266483333333333,7.35579,4.65894,5.8348233333333335,4.422955,2.94036875,1.71208,5.0868,4.16848,4.34535,4.94404,2.69275,4.03885,4.469455,1.7932375,3.87965,2.94985,1.3718133333333336,4.57535,0.6159058823529412,4.246358333333333,3.359925,4.497245,2.876235,1.817575,3.41986,2.160725,1.4071375,2.8246933333333337,3.4126,3.2719233333333335,7.21428141025641,1.78827,6.574380416666667,9.602530000000002,5.3511075,3.09999,1.3226928571428573,2.9343033333333337,1.3226928571428573,2.76559,2.2048133333333335,0.2944158823529412,1.1189346323529412,0.2944158823529412,0.2944158823529412,0.2944158823529412,1.1189346323529412,1.1189346323529412,0.2944158823529412,0.82451875,4.506075,3.491535,3.17194,3.345455,3.322545,3.9584,2.7954783333333335,1.594154,6.817851666666666,2.890053333333333,4.206895,2.6641533333333336,1.0597,1.17664625,4.480005,3.708315,1.1443222222222222,1.408422,0.7267918181818183,2.970611909090909,4.280525,5.02645,3.489966666666667,5.337365,0.5756261538461538,4.17683,2.921745,2.88758,2.371023333333333,3.3985,2.45096,2.9699566666666666,2.6206533333333333,2.866915,3.53998,5.0091,4.658805,1.9768000000000001,4.786825,4.384385,3.135475,3.786875,3.42872,0.3403293333333333,4.918645,3.619345,3.109695,3.036338,4.321315,3.916085,2.002955,3.38726,3.9469,8.400575,4.87631,5.3744,4.60593,4.21741,1.101245,2.14602,2.117805,1.358925,1.827,4.465105,5.34855,4.04703,4.94258,2.8967780000000003,2.656693333333333,0.9635816666666667,4.01419,1.1891116666666666,1.1260283333333334,3.41186,3.7254,4.74664,1.2321025,2.4181433333333335,8.661613333333333,3.1192266666666666,3.073723333333333,0.8981,3.76667,11.940363333333334,3.42554,4.14331,3.371315,2.99251,4.711205,5.02635,2.0945,4.32237,0.5852061538461538,4.83429,2.23754,1.9513025,1.9513025,3.624366666666667,4.242385,1.5323033333333334,3.991185,1.309427142857143,3.682865,2.720718333333333,3.372733333333333,4.8231,3.526775,3.9478590000000002,2.654725,2.7036890000000002,2.7036890000000002,11.139579999999999,0.704302,2.953725,3.12411,2.16152,2.0234075,0.8142885714285715,1.454855,1.1279299999999999,2.079695,4.755695,2.659355,4.267580000000001,2.04544,3.71951,4.06499,1.6695,2.0177925,1.0426766666666667,6.187658416666667,2.0737075,2.129985,1.7278580000000001,1.7695560000000001,1.10476125,2.3056245833333335,3.64734,2.22236,3.0909099999999996,2.5522133333333334,2.76306,1.92816,3.153473333333333,2.4890666666666665,1.4257366666666667,1.7926466666666665,2.7007966666666667,2.88513,2.43657,1.16882,2.538743333333333,2.1194933333333332,2.7169266666666663,0.31325315789473684,0.41471083333333336,2.2092466666666666,2.2233933333333336,3.183235,3.0738866666666667,2.904525,4.742375,5.4658,4.42702,4.58227,4.33745,3.889275,2.77896,3.773295,0.7305045454545455,0.08597295454545455,6.89505,0.08597295454545455,3.521415,2.93491,5.2284,3.629405,6.21355,4.76333,2.06441,2.51948,0.9733283333333334,5.19295,6.1814,2.479973333333333,5.1521,1.7388975,3.83207,1.986790652173913,3.0691733333333335,3.18858,3.930725,4.920375,3.198135,2.1966466666666666,2.1966466666666666,4.068245,7.44724,3.632635,2.09686,2.3269533333333334,4.071215,3.084585,5.0829,3.55765,0.98192,4.17051,2.50407,2.4592,4.28041,1.0913183333333334,2.3842666666666665,3.918595,3.56141,4.760235,2.989075,2.78526,3.81777,3.862395,4.314365,4.846915,3.981675,3.241652222222222,3.644705,2.7031833333333335,2.7149199999999998,2.6256166666666667,3.6986000000000003,4.42202,2.9306,5.051030833333334,4.02978,3.70907,5.1864,4.31977,3.434505,1.43217,1.3487775,4.05765,3.30751,1.6348833333333335,2.8576200000000003,3.32563,3.0435033333333332,4.099968888888888,3.057173333333333,2.353746666666667,12.541403666666666,2.1753899999999997,1.785068,4.646115,1.052748,3.17896,3.75322,4.60304,3.07822,1.1773444444444445,2.2859166666666666,2.56874,1.451408,4.47549,0.9907175,0.9907175,3.37847,1.4251833333333332,1.9532866666666668,1.8384575,3.23147,4.054985,1.8962,3.128605,3.106908333333333,2.8161799999999997,2.8895733333333333,2.0297799999999997,6.1611,5.58595,3.550235,0.6555238461538462,3.88321,3.439025,1.0243545454545453,5.3525,3.14785,8.2893,4.753815,4.60065,3.53658,1.3983175,3.123765,4.702395,4.70127,3.913055,3.517045,4.33278,3.652575,3.5521,3.5521,4.2074,2.7651333333333334,4.09761,1.84087,5.541520833333333,5.281976666666666,1.4992216666666665,4.712605,1.01763,5.5755,4.035985,4.9693,4.51128,4.080705,2.62831,2.52825,4.666975,4.279335,5.0005,4.198495,1.89813,1.4194360000000001,4.246905,2.1178966666666668,5.3926,3.08626,3.62303,6.872085,3.819415,4.34257,4.7197,3.890485,4.49096,8.337720000000001,3.99814,3.267695,9.02721,3.732725,0.5896564285714286,2.0140549755799757,4.678595,0.6118713333333333,4.5501,4.073465,4.646575,4.557365,3.34631,3.3923,4.64243,4.71829,2.315975,0.6918592857142858,4.586275,4.36859,4.46827,4.311095,2.84112,4.515025,3.684225,0.686498,3.35664,3.83385,2.504,3.1116266666666665,3.830285,2.1977599999999997,5.3837,5.18625,3.997175,0.87560625,3.259593333333333,5.453860833333334,5.453860833333334,8.5141,1.984658,0.8537575,0.8537575,23.985954666666668,2.620875,7.848721666666666,0.3602066666666666,1.3033766666666666,2.9763866666666665,0.980021,3.73311,3.78373,2.1219475,2.1219475,4.17172,4.87502,3.70625,2.587436666666667,2.587436666666667,3.498355,4.380445,3.768865,3.4568333333333334,2.0107766666666667,2.602645,4.0668429999999995,2.007625,3.369245,2.8381833333333333,2.9896964285714285,2.9896964285714285,3.253816666666667,0.861091111111111,2.5087800000000002,1.4141633333333334,3.390333333333333,2.859666666666667,2.8691933333333335,2.4568133333333333,4.570055,2.45512,2.98598,5.615314,1.2844419999999999,2.21994,3.09711,2.3968433333333334,4.108725,5.679580476190476,1.3718733333333333,3.7969333333333335,2.4697475,5.20565,7.17284,1.5382825,4.848353333333334,5.060263333333333,3.1075874285714287,4.6085666666666665,1.027837142857143,1.685272,3.25881,3.997062857142857,1.2346333333333332,2.28298,1.65506,1.520924,2.325995,3.276256,4.9754435,1.117175,1.3684028571428573,2.9583766666666667,12.653405,4.390388333333333,2.81484,1.1271985714285715,2.5788030952380954,0.9450214285714286,3.2302466666666665,4.235928333333334,5.1942,3.514333333333333,5.6912,1.56834,3.6908999999999996,4.33091,2.83079,3.8534944444444443,1.83612,1.079031111111111,2.513376666666667,2.747536666666667,6.722113333333334,2.8230765714285715,2.6179433333333333,0.725002,4.626566666666666,3.6037,1.104398,5.8333433333333335,1.98681,2.4965100000000002,5.5226,1.2349333333333332,2.8949433333333334,1.0194272727272726,2.94323,4.331605,3.00014,3.043146666666667,2.2312066666666666,2.5669299999999997,4.56086,4.687905,4.913105,1.836665,4.46309,4.21686,4.197006666666667,3.379282,2.57487,4.382123999999999,1.132244,2.8432895238095237,4.929875,2.719025,4.074522916666666,1.2664125,2.8169066666666667,1.973742,1.973742,7.362451666666667,3.21259,5.556971666666667,3.4644049999999997,1.88849,2.8632995238095242,4.672723333333333,5.9884666666666675,8.528476666666666,4.814526,2.70876975,1.1169633333333333,1.9377635,4.16509,3.80792,1.5114319999999999,1.930235,3.0035430357142854,1.1628225,3.1306166666666666,19.001022666666668,3.0255833333333335,2.8070500000000003,2.900846666666667,2.9978200000000004,2.3249166666666667,1.9775733333333332,3.1056500000000002,3.6977333333333333,2.5899566666666667,2.6597933333333335,5.660322666666667,2.4767233333333336,4.662025714285715,2.7252777142857143,2.6009257142857143,1.5289533333333332,3.7853066666666666,2.1150275,3.97841,4.92147,3.887425,3.06104,3.2430033333333337,2.36162,3.454133333333333,3.6156,3.3151233333333336,3.2558933333333333,0.8199127272727273,5.2576,2.5877,3.116286666666667,2.8064933333333335,1.990125,2.2344191666666666,2.2344191666666666,3.4662125,1.9848358333333334,4.722755,4.282025,3.738875,4.29319,4.565875,4.6370000000000005,4.6370000000000005,3.9493,2.944123333333333,4.521245,2.829435,1.6045380000000002,2.38291,4.52538,3.924525,2.7621,3.591165,5.435375,3.6709,6.457068666666667,3.13886,0.8437620000000001,0.8437620000000001,3.254575,4.78207,3.766065,3.2947319999999998,2.3867166666666666,1.7649666666666668,1.71674,2.9114966666666664,5.916224,1.4427333333333332,4.18643,3.6442666666666668,3.820185,5.14015,5.0024,4.7428086249999994,3.2412833333333335,2.24063,4.308595,4.02024,2.086805,1.16769,3.92586,2.76795,5.94347,3.17552,2.53057,3.318515,3.550955,3.402375,4.638035,3.0326,4.3407,3.842235,4.22188,3.71168,3.359665,3.54767,3.80692,2.767236666666667,4.305475,3.200475,4.77705,0.6090655555555555,2.322345,1.805985,2.186825,1.8393675,2.4764,2.56064,1.80199,4.454095,4.62264,1.9787433333333333,3.803265,4.30832,2.4874475,5.641361666666667,4.009324166666667,4.27017,4.976165,7.450406666666666,1.9934399999999999,2.9087033333333334,1.8283533333333333,2.9210166666666666,1.755345,1.85108,4.101185,3.66807,5.33215,1.0329388888888889,3.10489,4.394775,2.24311,5.06305,3.67026,2.71627,3.6222,3.3116,1.948795,1.7348759999999999,2.65955,3.197625,3.3358,1.9978425,2.508152857142857,2.508152857142857,3.57695,3.427425,20.267279345238098,1.0308533333333334,5.097814166666667,1.8129375,2.0143333333333335,3.578655,3.70166,1.88818,3.673665,4.837845,1.2784200000000001,1.2784200000000001,1.2814433333333333,1.67858,2.36103,3.109173333333333,4.654898333333333,3.40132,3.3950666666666667,0.48999000000000004,3.416776666666667,2.03937,2.1587,4.7402,3.369625,3.93857,3.41729,4.482185,4.4126,2.051355,3.682505,5.608036666666666,2.329225,3.45351,4.985555,2.232795,4.807415,5.6273,1.2297857142857143,1.9549800000000002,3.5612333333333335,0.6771328571428572,2.96663,3.32484,4.782515,4.97847,2.7802091666666664,7.754138333333334,2.8720933333333334,2.754436666666667,0.4477805882352941,4.21146,5.229142619047619,2.9596185714285714,5.3155,3.755285,2.510715333333333,1.7449999999999999,5.2865435000000005,4.358195,4.22575,2.657275,1.8960175,3.646205,3.705,2.94003,2.070735,4.110694166666667,6.157584999999999,2.68756,3.836675,3.45976,4.111445,1.4893857142857143,1.4893857142857143,3.2390933333333334,2.99315,4.524705,4.76475,6.61095,3.542605,2.759925,2.1436275,1.5172999999999999,1.364672857142857,4.923075,5.6381125,4.960875,5.92615,4.312985,6.59874,3.46534,2.795083333333333,3.8277666666666668,2.1257033333333335,3.0722022499999997,1.6244939999999999,4.59376,2.28977,3.78143,5.1086,4.04193,2.751393333333333,2.9201766666666664,1.3776499999999998,2.41099,3.7901333333333334,1.908065,0.54704625,3.10253,2.653016666666667,2.4342833333333336,2.350283333333333,1.9059975,1.6243480000000001,0.7045254545454546,0.7045254545454546,3.4979666666666667,1.74603,2.4118925,3.16095,5.3768,4.197595,5.6979,4.132505,4.62797,2.0386176666666667,1.3409066666666665,2.749665,4.16621,1.0342175,3.2203125,3.10621,2.926295,2.20008,4.269535,2.848385,1.9331633333333331,1.0824214285714286,3.30069,8.96227,3.400505,1.5643726785714285,4.311835,3.41199,2.63668,3.51754,2.75205,1.85914,1.080725,3.65674,2.548261666666667,2.25582,1.6960199999999999,2.248083333333333,2.2425566666666668,2.4810866666666667,2.8573275000000002,1.4301266666666665,1.7749966666666666,1.1031175,6.1864225,5.75085,5.5477,3.980625,4.272365,3.017936666666667,1.6496397435897436,4.66112,5.01805,2.55014,5.12595,2.1845,4.588325,1.0011033333333335,4.07358,4.077775,1.8284625,7.60257,3.60969,1.8501425,2.24179,1.7577025,2.516025,3.133766666666667,1.2287514935064934,2.9879766666666665,5.748,3.78271,4.05977,5.5759,5.2994,5.1811,0.89730625,4.27838,4.44767,4.29924,4.89544,3.863941666666667,4.448355,4.96497,2.935805,1.4346416666666666,1.4346416666666666,5.10285,5.229835,3.236335,2.6440566666666667,3.84698,4.32646,1.581418,4.073145,5.24395,3.669255,3.882545,2.9241766666666664,2.8083899999999997,4.946075,2.3691422500000003,10.506085531120839,1.92153,0.70947125,2.5378066666666665,1.723205,2.594325,2.15739,1.843724,2.92308,5.0096,5.31525,2.9748866666666665,1.58683,6.214862857142857,1.4002357142857143,2.9774333333333334,0.5110857142857143,4.08422,5.64785,3.356335,4.69782,12.048955,5.30265,3.027786666666667,3.0757333333333334,4.476185,3.1354100000000003,4.533505,0.88261375,1.11148,0.7945463636363637,5.79,4.21623,1.7889199999999998,4.492145333333333,4.57942,6.5967,4.812605,5.01065,4.426615,6.2713,3.8802,5.3403,3.11849,1.226172,3.925195,5.69795,2.96529,4.04679,3.39997,2.759505,1.262375,5.10465,3.91291,1.293075,3.5828333333333333,3.0635833333333333,2.4723566666666668,2.4621633333333333,2.48713,3.15415,0.7132536363636364,2.4229533333333335,2.620366666666667,2.6608899999999998,2.0453666666666668,2.690706666666667,1.894675,1.4763666666666666,2.393635,1.95291,2.095595,3.4865999999999997,2.813023333333333,0.6987599999999999,2.6922200000000003,3.475685,4.58358,2.39586,3.63474,5.35045,4.963255,3.33029,3.916165,1.3521142857142858,3.318075,2.548011111111111,4.284073333333334,2.68811125,4.2752,5.3949,4.89915,4.214845,4.2205,1.101794,1.101794,2.246704038461538,1.6694525,4.11287,2.538573,2.538573,4.96674,5.89265,3.05325,1.2206949999999999,1.5685,5.9065,3.647445,2.2569,3.11802,2.497755,3.261655,2.2569,4.486995,3.10243,3.0444533333333332,2.90229,2.00866,3.082605,6.54675,2.67336,5.2068,4.464865,6.6543,6.19725,6.46915,6.46915,5.5387,4.81382,0.5280407692307693,4.830225,4.098565,3.157935,2.626675,8.62774,2.71603,3.879275,3.684245,2.6876033333333336,4.50872,2.13416,3.4470375,2.9297566666666666,3.26314,2.5403366666666667,1.663968,1.663968,3.615765,3.925025,4.195745,1.7613219999999998,1.547456,48.228137159090906,2.6462833333333333,0.8494009090909092,3.0725833333333337,1.8360675,3.2560533333333335,2.793953333333333,2.9971533333333333,3.13973,2.7771633333333337,2.1378666666666666,0.99386625,4.45722,3.25862,3.53804,3.82838,5.1637,5.07705,5.10115,5.40165,5.3209,4.834105,5.47485,6.241065000000001,5.0407,5.50235,2.054975,3.86939,6.7978,5.30305,3.22561,3.820175,3.788055,2.486875,3.82669,4.576975,2.93249,3.860533333333333,1.59622,4.122025,1.3410600000000001,3.321835,3.961395,3.66932,6.512264999999999,4.13521,1.9497125,4.093005,3.969495,4.03853,0.9839275,2.890775,3.01649,4.545383095238096,1.1522375,4.608615,1.35449,5.96725,0.6919788888888889,4.110564,10.1388025,4.518805,3.33343,3.25895,1.8476166666666665,4.17778,5.42195,2.9513233333333333,4.57048,9.108809444444443,3.2996433333333335,2.02016,2.8083033333333334,2.7192166666666666,2.7727466666666665,2.730775,2.1768433333333332,2.6129166666666666,2.9330766666666666,2.6986633333333336,2.99225,3.316375,2.34538,1.5324866666666666,4.745962666666667,3.8944666666666667,2.6281600000000003,4.899131333333333,2.7824166666666668,1.04141875,2.137235,2.8547,5.188498571428571,2.7873,2.0608894444444443,2.0608894444444443,1.574545,1.6321625,2.2331600000000003,1.9718699999999998,5.7880625000000006,4.41888,2.1953975,3.0987766666666663,3.7688666666666664,2.070205,0.5878583333333333,2.7249666666666665,1.9191975,0.57139,3.8708,2.512725,2.492595,3.67941,3.6133414999999998,2.5292766666666666,1.5712400000000002,1.1397183333333334,2.116005,3.465935,3.593975,4.1536975,2.76972,3.883805,3.80872,1.1607181818181818,9.234765,2.665105,3.25104,1.292375,2.6432733333333336,2.37576,2.37576,2.37576,5.08515,5.37685,1.560565,5.0227,1.468064,5.143976666666667,1.5802479999999999,3.96884,4.304965,4.16277,4.66624,4.557475,1.951945,8.632365,3.925015,5.04315,3.5592,4.140188333333334,3.315296666666667,3.0226100000000002,3.75756,2.456513333333333,4.330905714285715,4.353325833333333,1.6168775,3.93183,1.6168775,3.42352,4.415323333333333,5.0457875,4.415323333333333,1.5913333333333333,5.75395,4.638615,4.33894,2.7536199999999997,2.972716666666667,4.264225,3.15113,5.21725,0.51642,2.97277,3.003643333333333,5.108884166666666,4.56796,2.3917,4.9133,5.961196666666667,3.25531,2.67914,3.03166,1.9973466666666668,3.991,3.90426,4.62591,2.704745,3.86829,0.8722810000000001,5.6171,3.251235,4.21717,2.2334766666666668,3.1936366666666665,1.9246166666666669,2.7714133333333333,2.78926,2.806316666666667,2.96957,2.53255,2.53255,4.335841666666667,2.806985,4.55352,11.6291625,0.9540677777777778,4.42941,2.5814233333333334,2.3766766666666665,2.5583033333333334,1.4195625,7.625361833333333,3.5359,3.56545,3.6573149999999996,2.2384,3.9014,4.106767388888889,1.7973266666666667,0.42938611111111114,1.521722,1.532585,4.983025,2.8283,3.23715,3.7274374999999997,3.3798266666666668,2.3102125,4.95382,4.577025,3.885025,4.468145,2.295275,3.861855,2.5213566666666667,5.59581,3.18186,4.828755,4.019375,3.94681,4.32791,2.01689,3.753915,3.589455,3.102203333333333,3.473945,2.73011,3.082075,3.26654,3.866875,2.6129466666666668,4.54997,1.4274166666666668,3.7763,2.83833,4.18233,4.492095,3.73727,4.350865,2.60525,4.214675,5.4548,4.1313,3.3581333333333334,2.18051,3.12295,2.435915,0.8914333333333334,4.313065,2.098205,3.41439,2.704815,4.03016,3.619895,3.07106,3.10581,4.242575,4.540534666666667,4.157295,2.81243,1.5461133333333335,3.4216,2.500635,0.8985633333333334,4.418045,8.885505,3.4244,3.7763,4.083425,4.795425,3.826655,2.26076,4.08524,3.8813,3.247475,3.3204,3.88038,0.65403125,1.2610042857142858,6.33521,1.67969,2.738775,4.670892,2.541075,2.173565,2.77151,7.52931,2.72142,3.984685,3.752005,0.7772844444444444,3.4377,2.71813,3.851665,3.684205,5.909618333333333,0.686165,3.201295,9.47404,3.171095,1.1168855555555557,5.125707500000001,4.706585,5.21495,4.48979,4.659665,3.200585,2.63436,7.0979849999999995,0.8297549999999999,3.55035,3.98025,3.08396,3.90047,2.404845,4.129055,1.5839066666666666,4.20239,4.096215,4.139105,1.703495,4.658265,4.642715,2.35912,2.243325,2.244055,1.104398,4.246435,3.37058,1.471114,8.34835,5.81355,4.40236,4.20497,3.450305,4.41676,1.4340428571428572,4.31683,3.882735,5.3417,3.77042,2.6025199999999997,6.530195256410256,0.846485,0.846485,2.5454033333333332,0.9378042857142858,4.16553,2.9991066666666666,1.0598225,1.7964833333333334,0.4183966666666667,6.240869999999999,1.0297775,2.798075,3.577255,3.99964,3.67104,4.18527,5.4597,5.5473324999999996,3.32631,3.065125,2.4712,4.09054,4.579875,4.1668,3.59965,3.7495,6.04205,4.114905,4.367952222222222,5.704681,3.72791,3.3862025,2.397495,3.3862025,7.047598,41.19221954112554,3.6824,3.536205,2.9736433333333334,4.30778,4.545135,3.52029,3.64305,3.78511,4.72071,4.233945,1.6247800000000001,4.795665,2.694615,4.558425,5.0164,4.786985,2.4387933333333334,4.473765,3.934645,3.31968,1.5281280000000002,0.6470707692307692,1.64984,3.6215333333333333,2.8274500000000002,1.31745,2.9440333333333335,2.6975033333333336,2.7694466666666666,3.6198333333333337,3.005933333333333,1.420048,2.6119066666666666,3.7218666666666667,1.9394786229086232,2.967356666666667,3.128698,3.0066100000000002,2.5889533333333334,3.4788,1.2361,3.700995,3.87958,1.25711,1.25711,1.25711,1.25711,2.9188966666666665,2.1085066666666665,2.593405,3.39216,4.882095,4.499535,4.11136,4.351985,5.65805,4.582565,2.34539,6.147,3.84306,2.99859,3.99073,3.104485,4.11238,4.181175,0.7178776923076923,1.4450285714285713,1.6051833333333334,4.3668,3.865685,4.67733,4.106105,5.993186666666666,2.2156433333333334,4.36179,1.5256816666666666,3.7994,5.17755,1.63598,5.2078,0.7040574999999999,4.377095,1.236122,1.12047375,3.666895,3.973955,5.0614,5.1114,6.0219,4.404605,1.482538,3.66603,1.48749,3.53686,2.78385,2.510715333333333,1.8998125,3.586415,1.3077400000000001,3.47354,4.8069,2.92286,5.723,120.56505477849927,0.5128666666666667,4.55964,2.3128966666666666,4.78251,4.100555,3.21334,1.547095,0.3277195238095238,2.880155,3.77239,5.27595,3.321305,3.659015,4.39824,4.35308,4.420865,8.467406666666667,0.6855455555555555,2.719435,0.9550475,10.922302,3.047735,3.53334,0.9324055555555556,2.210465,2.72934,2.15861,3.02441,3.3600666666666665,2.7613766666666666,4.273035,3.1164466666666666,2.277956666666667,2.2331433333333335,3.442025,3.428025,3.020315,3.654105,3.713505,3.3654,2.3215533333333336,3.838715,4.7888,2.97532,0.9812433333333332,2.5886133333333334,4.273035,4.83495,5.5494,4.061745,3.85444,2.0252,10.67474,4.47779,2.70714,3.91512,5.2639,0.5784373333333334,0.5784373333333334,4.0893125,4.0893125,3.27935,3.6512666666666664,1.824581818181818,0.6029533333333333,2.847795,4.41613,4.093275,3.04148,4.205875,5.3674925,4.624245,2.0580975,4.66573,2.2161925,2.91887,4.2413099999999995,1.81385,2.13217,0.4923942857142857,1.2225722857142856,1.2225722857142856,1.91024,4.360825,4.655235,4.986915,5.786213,2.88864,3.0529,1.979725,2.07843,4.08447,3.77101,4.66947,2.336055,4.66947,4.430145,3.5461,6.1318,3.96967,2.43463,2.015433333333333,2.5341033333333334,1.4168525,1.4384025,1.6576,1.7429975,1.631525,1.8573675,3.731866666666667,4.45668,2.553585,6.7656,2.9746366666666666,4.297885,3.5051,4.104425,2.925746666666667,3.006596666666667,6.1256699999999995,3.2994333333333334,4.683394666666667,3.1502433333333335,1.40343,2.4880166666666668,2.6620966666666668,2.3429266666666666,6.0448,4.374225,4.65299,12.422059793715057,0.7412641666666667,2.01534025,2.27059,1.65348,1.2630657142857142,2.5125,2.400195,2.480275,2.445285,0.7340361538461538,1.858275,0.5377210526315789,4.582925,1.92574,3.89712,4.466335,2.338725,5.7294725,3.97928,7.29024,4.31944,2.96577,3.35823,4.551235,4.90855,2.7984233333333335,4.54419,2.15873,2.15873,4.621035,3.725955,4.101935,4.04371,3.141386666666667,3.949965,5.0785,5.239,4.75405,4.76731,4.54219,4.309665,2.50677,4.889645,1.1604616666666667,4.65287,4.743855,2.4873266666666667,2.26848,4.163305,1.4146866666666666,5.2536,1.8207575,5.628167318840579,4.37489,4.28333,1.5660333333333334,3.532821666666667,3.532821666666667,11.958755,3.963925,4.130585,1.1224375,4.2045505,2.18135,1.4932825,2.4018525,1.67416,1.9377075,1.7583379999999997,3.061905,5.9647,1.8192425,4.95223,4.609909166666666,5.07205,2.1595075,2.364045,3.253385,4.306875,5.3759,3.9885,6.402633333333333,3.110443333333333,2.722773333333333,0.3954933333333333,3.769915,3.992815,3.327576666666667,6.304706666666666,2.5793666666666666,3.0729633333333335,1.2545883333333332,1.6283433333333335,0.54704625,1.521722,3.0594,1.49583,1.5154933333333334,0.65571875,1.182194,4.635555,2.4171425,0.6018899999999999,1.58864,1.6715175,1.597522,1.3513216666666665,2.110775,1.6283433333333335,2.550475,1.182194,1.182194,0.6018899999999999,1.5757714285714286,2.5020800000000003,1.2346333333333332,2.657675,0.6018899999999999,2.575075,2.5020800000000003,1.3033483333333333,1.3033483333333333,1.3033483333333333,1.8979659999999998,1.2478025,0.6018899999999999,1.1113680000000001,1.12914125,1.018771111111111,1.798398,2.6962,0.8504333333333333,2.0814725,1.5418142857142858,0.6018899999999999,1.7992979999999998,1.6283433333333335,1.9494833333333332,1.8630333333333333,0.8837809999999999,1.9494833333333332,1.0567333333333333,2.35912,2.436625,2.505275,1.12914125,2.1795999999999998,1.3077400000000001,1.3077400000000001,0.9148636363636363,0.9148636363636363,0.9148636363636363,1.2545883333333332,1.6283433333333335,1.5418142857142858,1.58864,0.9863,1.8630333333333333,1.46176,1.59894,2.01224,1.2545883333333332,2.81484,12.302362500000001,0.65571875,2.5903,1.7895333333333332,2.519975,0.9450214285714286,0.9450214285714286,0.6018899999999999,1.0595833333333333,1.6243480000000001,1.5418142857142858,1.81103,1.8630333333333333,1.1286111111111112,1.1286111111111112,1.678334,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,2.99315,1.0567333333333333,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.1983336111111111,0.3796986363636364,53.913595666666666,1.5228925,1.52471,1.5418142857142858,1.7895333333333332,0.9863,0.6296058823529412,0.725002,0.725002,0.725002,0.725002,4.332866666666667,16.38450041666667,3.401,0.6016609090909091,1.61713,1.61713,1.61713,0.6016609090909091,3.0594,0.6018899999999999,1.7992979999999998,1.5154933333333334,2.5201599999999997,1.0567333333333333,2.3917,1.0567333333333333,1.531816,1.531816,2.0967,2.0967,0.6018899999999999,2.00978,2.00978,0.9615272727272728,0.1983336111111111,3.0594,1.4568183333333333,2.4697475,0.6016609090909091,0.6016609090909091,0.6016609090909091,0.6016609090909091,0.6016609090909091,1.7895333333333332,0.3796986363636364,1.0567333333333333,2.11764,2.11764,2.52825,2.9633533333333335,0.6427619047619048,0.6427619047619048,3.3938,4.11,1.1958942857142856,3.10972,1.00099,2.51955,1.984658,1.0913183333333334,3.0817,1.8429925,3.259593333333333,5.15275,2.361115,1.1635222222222223,4.283645,4.17614,2.7143366666666666,1.730742,2.276276,4.88936,1.9938886111111112,2.7140033333333338,2.96752,3.1575366666666667,2.51723,6.172296666666667,4.05484,0.1983336111111111,2.97466,4.81042,3.3773,4.41873,4.28892,4.38598,2.704606666666667,1.8334759999999999,4.138075,4.705035,4.51905,4.655385,5.0049,3.107835,0.7021841666666666,6.77266,1.4808033333333332,2.877872,4.638375,2.44669,2.44669,0.8488427272727272,1.8998125,3.99854,3.054945,4.81853,4.27191,4.67514,5.15025,1.0931157142857144,4.511045,5.1483,6.7545375694444445,2.2356766666666665,4.197395,3.775805,3.980305,3.967665,4.115055,4.4952,6.099477500000001,5.2582,4.317073333333333,3.64849,4.51128,7.279072000000001,1.965325,2.2313646153846154,2.8886533333333335,1.7786566666666666,2.7464099999999996,1.87285,5.23935,2.992993333333333,5.7055,1.8530339999999998,4.661455,4.08075,3.868805,4.458705,3.85404,2.480586666666667,2.8216666666666668,2.7032433333333334,2.5788266666666666,2.4343966666666668,1.6620650000000001,2.762233333333333,2.8791433333333334,2.25664,2.25664,4.63702,2.9272500000000004,1.9975466666666666,2.946123333333333,2.1304666666666665,2.65157,3.080906666666667,2.63951,3.04359,5.2981,4.116885,3.892445,3.3237966666666665,3.3237966666666665,3.898115,3.2453866666666666,3.958995,4.456185,3.887935,3.442045,3.347235,7.29236,1.93845,2.120515,3.40258,3.0806,1.4045699999999999,1.4045699999999999,3.531535,1.79926,3.950512,3.74336,3.3395,2.265679,2.136617833333333,0.5599758333333333,3.462915,3.81205,1.82942,2.46614,4.138835,1.2897933333333333,4.614315,1.1715566666666668,0.46435785714285716,0.6278928571428571,21.199550284722225,0.6278928571428571,0.46435785714285716,0.7914278571428571,9.863006666666667,2.7096,3.62712,4.116035,3.4534174999999996,2.90151,4.09551,2.3116,2.46494,3.66814,2.967535,4.13546,4.19494,3.70161,2.30387,3.055365,3.44672,3.869915,3.19493,1.13014,1.13014,1.13014,1.13014,3.39127,2.89965,3.12982,1.8719299999999999,1.1606766666666666,2.46667,3.821535,4.098135,2.930645,3.16931,2.564895,2.720718333333333,4.00826,4.02845,1.1057883333333334,2.5656433333333335,1.07701,2.5015733333333334,1.84812,3.8136666666666668,5.0017,2.44976,3.70563,3.994773333333333,0.8181788095238095,0.21521214285714288,0.21521214285714288,0.6029666666666667,0.21521214285714288,0.21521214285714288,0.21521214285714288,0.6029666666666667,3.932055,7.080946666666668,3.68263,0.53548875,3.67079,7.68215,3.29367,3.1347966666666665,1.1489883333333333,4.484095,5.13255,4.28178,4.791125,1.666912,4.569435,2.0431500000000002,2.259176666666667,3.530335,5.28565,0.8483842857142857,0.8483842857142857,3.693235,2.840536666666667,1.98187,3.2841,2.820155,6.5269,2.866105,5.9912,5.6634,5.6521,2.834405,1.89302,3.777145,3.50238,2.13588,4.26277,3.162435,1.8804525,1.146065,4.107845,3.36256,4.803100000000001,6.0593,1.4800483333333334,3.895845,1.1418766666666667,2.5666966666666666,3.23539,3.79852,0.3848385714285714,3.50001,4.167305,0.913025,2.596293333333333,7.6055600000000005,4.000955,2.173655,5.622671,4.46873,3.62326,1.41191,5.195803333333333,2.79125,3.1064933333333333,3.5963333333333334,2.244073333333333,2.244073333333333,6.0375,6.0375,3.54765,3.54765,8.95418,3.54765,3.54765,4.204848888888889,6.78395,3.45725,3.5422241666666663,2.8950633333333333,4.64076,3.46665,3.244846666666667,3.1596766666666665,4.790025,3.1557833333333334,2.6939966666666666,3.0959633333333336,2.3224966666666664,2.73698,4.82435,7.232335,6.516075,5.11985,3.706255,3.975625,6.609754,5.26595,4.747105,3.93686,4.226505,2.2567566666666665,2.173415,2.246985,5.41385,5.3782,4.4824525,4.27532,2.417943333333333,2.4709533333333336,6.74365,1.8979659999999998,2.52384,3.3693666666666666,3.3693666666666666,3.226245,5.0341,0.7855408333333332,3.5370000000000004,3.867935,2.81649,10.300775,4.294825,2.4652866666666666,2.37503,4.622575,6.0639,3.102195,5.34735,2.570673333333333,4.787835,3.1470114285714286,4.136485,5.24725,4.91687,0.9687683333333333,3.4779,0.98995875,2.5390433333333333,4.806715985294118,7.78659,2.4323,3.0458766666666666,6.7564416666666665,1.7541820000000001,4.5332,5.541,3.51881,3.63446,2.281476666666667,4.57603,2.3734,0.5085315384615384,5.20045,2.79098,3.5345,4.781825,4.770045,5.3061,6.69487,4.823115,5.6775,7.232362500000001,54.84426,4.678195,3.89802,5.11125,6.02585,4.528465,5.15405,4.342805,4.47128,1.9423175,3.86593,3.980275,4.581455,2.5538,5.09305,3.93405,1.6463640000000002,5.42145,6.2623,7.128855,5.44295,3.14002,4.59199,3.27082,3.346575,3.51794,4.31463,3.83754,6.37942,2.73465,1.0977114285714287,2.4082475,0.615518,0.615518,3.176745,0.615518,2.6230949285714287,2.6230949285714287,3.3571289285714285,4.3503935,4.908527428571428,2.4082475,4.536549166666667,2.3203566666666666,1.3697016666666666,5.55325,2.1823,7.018607333333334,5.762623333333334,10.660114454545454,3.1135333333333333,2.51389,0.2195987878787879,1.8590656666666665,2.024226666666667,0.9298,1.1947083333333333,3.0112900000000002,2.3474675,2.64295,0.593473,27.042924166666666,1.8021875,0.7731615384615385,2.51362,2.51362,0.4133894444444445,1.6696925,2.97931,1.1976725,1.684105,1.604695,3.986705,2.910935,2.161626666666667,2.45416,1.1089200000000001,1.9828125,1.4479083333333334,5.327597666666667,3.805045,6.808538333333333,2.439415,3.2478166666666666,0.9964216666666666,2.416665,5.0486,6.134285,3.089926666666667,2.2753799999999997,5.362006666666666,2.00404,2.4710199999999998,4.14759,1.0723433333333332,3.6402666666666668,2.28538,5.2115,4.60815,6.08255,2.98259,4.05467,4.05467,5.34075,2.068795,5.3541,2.7928800000000003,1.6988625,3.09037,3.497335,5.603667833333333,4.05897,2.8886233333333333,3.0443833333333337,2.434775,1.004692857142857,5.4123,0.930205,5.483573333333333,4.349935,7.365526,3.83862,4.44641,4.09986,8.385015,4.069385,4.47186,1.12774,0.7120592857142858,4.56607,4.134675,2.23792,3.466955,3.145635,4.177865,2.121145,4.936045,2.3987666666666665,5.2055,4.94448,5.42595,4.37017,4.79784,3.029875,6.6527425000000004,3.56134,4.12605,3.375575,4.20427,5.554882023809524,0.5970407142857143,3.6812,1.7167733333333333,0.6137944444444444,3.89189,2.454885,0.98464,2.12801,6.29219,3.614875,2.415085,2.6380133333333333,2.6702866666666663,4.96878,3.990135,1.5774354761904763,4.154595,2.1608666666666667,3.5865333333333336,4.30579,5.13025,3.0410733333333333,3.7261,3.7719666666666662,1.972176,7.39526,4.760515,4.16437,5.0913,2.208025,4.40871,4.75385,4.14316,3.808885,10.765645,3.50401,4.134758333333333,4.840185,4.40496,2.40793,4.376255,3.93844,4.110785,3.2347900000000003,4.25805,1.495705,3.0742100000000003,3.45483,3.54851,4.96973,1.765844,4.167255,3.1060166666666666,5.2644,3.14261,1.87049,4.44353,4.45018,1.07406625,3.09936,2.7338833333333334,4.423120666666667,1.720036,1.6734733333333331,1.2837325,3.65662,5.41255,5.444929999999999,3.6849524999999996,2.703095,2.34409,2.04411,1.973305,1.53333,5.8697,2.98871,1.9117875,0.8879076923076923,19.952305833333334,3.021405,2.8204391666666666,4.675306666666667,4.100553333333333,1.5823733333333332,2.6547465,2.8808070454545454,1.2884499999999999,1.8180500000000002,4.326155,4.684775,3.4406541666666666,3.35705,5.3499,4.677425,7.208102499999999,4.5545591666666665,4.702065,3.64976,2.6519333333333335,3.97566,3.993215,3.302766666666667,3.865715,1.8175,4.791825,8.24628,3.38756,2.812775,3.88306,0.52513875,3.178406666666667,2.0897033333333335,2.1142525,4.326055,3.146105,4.700015,3.68555,2.9267,2.2075575,1.71324,0.767376,1.4970466666666666,1.29264,3.88083,3.962185,4.65815,4.613915,7.19284,2.3167766666666667,1.384314,2.323913333333333,7.762906666666667,3.034205,2.885,3.081985,4.38999,3.19904,3.53015,1.502322,4.64732,5.07755,4.12713,3.8931,3.592025,4.24798,4.251055,4.3213,4.32719,3.763375,2.278495,3.036046666666667,3.2737,5.49965,3.04661,4.2051085,2.637975,2.908965,2.333056666666667,2.16743,2.1289833333333332,2.585955666666667,2.585955666666667,1.9264166666666667,2.6262633333333336,2.3896266666666666,2.3486366666666667,2.110043333333333,3.96896,2.40187,2.671416666666667,2.975293333333333,1.73946,4.50622,2.80681,3.737,2.24439,5.22635,5.0773,4.8338761111111115,2.640405,2.531805,3.041515,3.3637,2.021575,2.959855,1.927265,2.472435,2.536025,6.823323333333334,4.2090225,3.48998,0.583954375,4.40806,3.96142,4.130235,3.315735,4.106455,3.7122425000000003,6.20995,4.47047,3.19975,2.786110357142857,2.147683333333333,2.504,1.65307,1.699412,1.551712,2.06704,1.835185,1.1304,4.159426285714286,0.6018899999999999,0.5484233333333334,1.941748,1.5278533333333335,1.4424379999999999,1.44574,2.268584090909091,1.442435,1.7476880000000001,0.58923,168.1293775232631,0.5131313333333334,2.13544,1.091262,1.1682175,2.133595,1.5802375,2.0090525,2.287176666666667,2.08556,6.70605,3.07935,3.2921761904761904,1.79051,3.186525,1.2840366666666667,1.2840366666666667,5.9921075,0.48884055555555556,2.1908875,3.24143,3.052146666666667,0.7850045454545455,0.5792317647058823,1.2079622564102566,1.0337636363636362,2.20053,4.130655,2.08364,2.1302225,2.2018333333333335,4.722702388888889,1.0217622222222222,4.279355,3.52855,3.508155,7.1066,1.9570866666666669,3.12486,2.733655,3.999219,2.35076,2.959285,3.156765,3.039605,4.541085,2.793735,6.68472,2.60085,2.61396,2.714065,1.67414,2.651155,3.517665,3.098995,1.645535,1.64342,2.11076,4.56701,5.3846766666666666,3.125055,2.835985,1.48893,4.2306,3.585233333333333,3.9278333333333335,2.890895,24.90180432615995,2.715338666666667,2.733026666666667,3.0614033333333333,3.4730666666666665,2.986083333333333,5.707660000000001,3.18134,2.3872533333333332,3.5209333333333332,3.4725,2.1559033333333333,3.23103,3.2733600000000003,3.1193233333333334,1.660595,1.60911825,0.574597,2.36255,2.0118375,0.261284375,2.19718,2.7122,0.261284375,0.261284375,2.1557510416666665,0.261284375,0.261284375,0.261284375,0.261284375,2.8617399999999997,2.5939,0.5846646153846154,3.2921310714285714,1.3960875,1.9562760000000001,5.2008,4.4073225,6.178705,2.09033,4.90102,2.00147,2.5917066666666666,1.28097,5.813716666666666,2.76815,6.0033125,0.8360500000000001,1.4520025,4.59046,4.672105,35.230373876623375,1.588076,1.3071566666666665,2.303663333333333,2.371825,0.9148636363636363,2.3256166666666664,2.23328,2.6996066666666665,1.94043,2.44889,1.6571366666666667,2.5870366666666667,2.3346433333333336,2.3594566666666665,2.61288,2.4687333333333332,3.85551,3.4290333333333334,1.098652857142857,4.08141,3.96821,19.742638333333332,2.6699800000000002,3.2138299999999997,2.71714,0.8636079999999999,3.105142,1.6459246666666667,3.105142,2.236736666666667,2.47604,2.8945666666666665,1.677845,1.939045,4.31915,4.118755,5.00775,4.22165,1.645252,5.21405,1.646325,4.929755,3.9249115238095236,4.422145,0.7412336363636364,2.039515,2.14373,2.73286,3.35834,1.061285,3.23155,1.8842860000000001,1.9196133333333334,1.010472,1.010472,3.12866,2.5648966666666664,4.2899,28.80044416666667,6.3007,1.8257233333333334,3.544643333333333,0.39995933333333333,5.888615,5.00015,2.728816666666667,3.591795,5.369035,3.27414,1.1288475,4.577005,1.313156,2.647105,4.514475,4.66583,2.16746,3.221265,4.46858,2.62667,2.816943,4.19184,1.3480133333333333,2.4487983333333334,3.58656,4.8935025,2.3935400000000002,3.0178966666666667,2.7937100000000004,3.964095,4.041285,4.0987,4.1734333333333336,1.778765,5.76328,2.694165,1.719096,4.06556,5.572,4.205345,3.61858,0.74063625,2.96915,3.611295,2.097705,4.758122999999999,2.621925,3.89894,2.84775,3.3755333333333333,2.83764,3.272766666666667,3.0465933333333335,3.1962733333333335,4.305445,5.64615,3.53559,1.69565,4.16882,4.09618,2.04183,1.980405,1.84186,3.9475705555555556,4.51416,5.048929583333334,4.031725,3.4620333333333337,3.701575,3.19548,1.3961016666666666,3.04322,3.011445,3.13604,4.54228,4.661415,4.216505,2.77143,1.906395,1.74304,1.4497825,3.58087,2.42102,2.22875,3.36059,4.81766,1.51366,5.3925,1.3772428571428572,1.84312,3.08698,3.26112,3.08298,3.740715,3.061935,1.779685,0.9862799473684212,3.39972,3.968045,4.527135,9.081308333333334,3.062326666666667,3.16651,1.7251233333333333,2.7657233333333333,2.6776999999999997,1.1795883333333335,2.97438,2.6692033333333334,3.0917266666666667,4.091,3.123083333333333,7.06646,3.1271,0.7508172727272728,1.7499966666666669,3.63367,3.275405,3.44645,3.4836666666666667,2.608874,3.035175,3.087625,1.9111722857142857,3.91003,2.6125938888888887,3.44777,2.2054466666666666,4.506605,4.307875,4.63164,3.45606,3.756095,1.0147288888888888,4.70363,2.9002700000000003,2.810753333333333,4.439445,2.66323,2.6863533333333334,0.7191299999999999,0.7191299999999999,4.259753333333333,4.272625,6.9108,3.21955,4.461035,3.413815,3.07818,4.81655,4.311455,1.02079,3.93166,2.6483233333333334,4.131429166666667,2.9435566666666664,3.0519416666666666,1.85462,3.352829642857143,2.565236666666667,2.9899466666666665,2.46951,2.73277,1.97687,22.54658261166008,4.268955,3.6294,4.085795,3.289945,4.3126,3.487295,4.56267,3.82778,3.97091,3.511365,3.686515,2.56563,2.84544,2.9326266666666663,3.026353333333333,2.7796866666666666,4.220535,3.54674,4.5773025,5.0503,4.336455,1.272034,1.440836,1.440836,5.07775,3.69435,2.637583333333333,2.38426,2.957926666666667,3.344525,3.329,7.765218333333333,3.218083333333333,3.4657,2.993885,4.80118,1.5818666666666665,5.7000975,2.45701,2.946353333333333,1.8012275,3.4792,3.05552,6.21139,3.154985,2.79154,4.188855,4.233502666666666,1.5091625,2.5883133333333332,1.6624400000000001,7.444789,4.280805,6.811291666666667,2.2032425,3.98378,3.823645,4.091025,5.1769,3.6942,3.6942,2.171615,4.35559,5.0237,2.186215,6.72775,1.67065,5.74395,8.099668666666666,2.9803599999999997,4.239064,2.23038,2.067755,0.48724625,4.47049,2.5155,2.621875,3.8034989999999995,2.3101,2.5458633333333336,3.770775,5.61685,5.02975,4.600855,4.748705,4.27169,2.2486775,1.0320727272727273,2.996285,3.303275,2.801346666666667,5.2758,3.923115,3.29298,2.45816,1.9549800000000002,4.26061,1.00826125,5.23235,0.9861366666666667,5.48675,3.37518,4.74411,5.183895,3.084595,3.26822,3.1379633333333334,2.3146666666666667,3.98332,3.045445,2.493665,3.76364,4.914245,5.734758333333334,4.74461,1.7627075,3.406105,3.14422,5.582126666666667,1.9067425,1.9067425,2.9327400000000003,2.239456666666667,2.5069,2.60642,0.865778,6.21105,3.292595,2.0667375,2.47233,2.636465,3.58326,2.65171,3.716875,4.99157,5.0233,4.880815,5.9895,5.83815,1.315075,3.755445,1.1032666666666666,2.5619,4.322066666666667,2.45283,3.11334,3.224245,4.61524,3.059215,0.44673894736842107,4.33812,4.082135,4.73105,3.312675,4.62715,5.57905,4.33533,3.79279,1.89897,4.61335,2.064485,4.3804,4.3804,6.63305,5.6574,5.52475,5.03635,2.74019,1.5818666666666665,4.258295,1.92696,1.7226033333333335,2.099885,4.344355,4.1352,4.171835,8.15615,1.5760766666666666,5.22395,1.225925,3.341035,5.9435,1.94009,4.71739,2.6873799999999997,5.0274,3.323705,4.72661,2.479973333333333,4.16372,3.99101,5.9729,4.33352,4.13233,4.01974,5.5666,4.13867,4.724715,3.78978,4.34454,6.911336666666667,3.546535,7.08641,3.30418,5.6291,6.308738863636363,4.445835,3.47041,1.6990475,5.59535,3.846605,0.8456044444444444,8.65411,6.0141,5.2474,3.0688341666666665,4.87274,3.025905,1.752406,3.946575,1.1057883333333334,6.078,2.61265,4.66058,5.47885,4.43138,4.3789,2.15658,4.37306,5.1898,1.66809,6.974069999999999,2.976735,3.71475,5.256,4.173095,2.22785,4.552875,3.62383,3.805305,2.7228966666666667,3.99372,3.70195,5.4287,4.58334,3.415415,1.8360725,1.8360725,7.540741666666667,1.3760557142857142,5.1123,4.26424,5.4788,3.666325,3.603765,5.0461,3.89872,1.012605,1.012605,1.012605,3.659885,3.132905,3.967095,4.415155333333333,2.622775,1.4574333333333334,4.3514,2.1807675,2.69331,3.980185,4.63125,1.9206675,2.17534,5.76367,3.741185,2.981795,4.566205,1.7870075,1.8702675,3.2965999999999998,2.737305,5.1987,1.3760999999999999,1.5788,1.04264375,3.83966,3.360945,2.9995100000000003,2.953606666666667,5.32905,1.745112,2.0368425,2.70767,1.6206714285714285,3.16387,3.54499,2.48751,5.42885,5.5933,2.86451,4.37504,3.78318,3.38056,3.643185,3.98566,3.59704,6.88609,5.1413,1.80511,1.7579666666666667,3.764405,4.659885,4.201275,3.67686,3.0253566666666667,4.22195,5.9942,5.2422,2.8302033333333334,5.4632,3.970545,3.9072,7.9552375,4.394165,0.7305872727272728,3.81307,4.1083275,2.24714,4.18616,3.724066666666667,5.7609,3.894,3.885065,3.837785,4.322845,4.74304,4.72844,2.959025,4.097555,4.91575,3.964065,2.368335,2.955345,6.46536,5.2541,1.8708639999999999,3.054135,3.8399525,3.90492,5.0893,4.475325,2.46855,0.8742300000000001,4.604855757575757,6.125792499999999,3.50346,4.8504,3.62198,6.642118333333333,3.862435,3.7833666666666663,2.8275566666666667,3.72113,1.988765,3.373615,4.37806,2.58886,4.19551,5.47615,1.4338475,4.75179,0.6325064285714286,5.9265,6.02935,5.76335,5.3883,1.5795716666666666,1.7105433333333335,4.336805,1.892335,4.56363,0.5360133333333333,5.70935,3.255735,1.520726,6.1637375,6.46415,0.9337825,1.8589365,1.226032,1.226032,1.226032,2.250713333333333,4.44901,3.595495,3.47094,3.881835,5.27025,4.02981,1.902802,4.06885,5.14705,0.2991878048780488,3.653965,4.67535,4.546465,38.90394515909091,5.8108175,5.08625,10.701121666666666,3.31076,4.21033,6.9195400000000005,3.10025,4.96954,3.995425,3.954585,8.80607,3.803875,2.70295,2.615425,4.5884,4.05058,3.393495,4.442805,2.12938,4.47393,4.38267,6.7501880000000005,4.032725,4.610105,2.35582,4.30076,0.51227125,1.4478216666666668,3.482815,5.9303,2.829985,1.185915,1.185915,2.987865,3.81248,4.078655,2.65498,1.6480733333333333,3.491625,4.150775,1.6983875,3.054323333333333,1.6335799999999998,1.8272133333333331,4.073555,4.485185,2.1135075,4.599515,2.28662,2.25562,3.7484,3.54948,4.081495,3.862895,6.053144333333333,2.522664333333333,3.626035,0.7276772727272728,0.6229933333333334,3.68435,2.396745,8.61279,3.401,4.8876,1.6508175,4.44039,1.5599416666666668,3.963935,4.657175,2.5748533333333334,3.856975,4.890015,0.42005299999999995,0.42005299999999995,3.595333333333333,3.379566666666667,2.926716666666667,3.79928,3.754385,5.4846,0.9869272727272727,10.19374,10.552900000000001,2.110775,4.62199,4.599285,4.74737,3.432755,2.54135,2.01146,2.00441,10.650627499999999,2.1829875,2.6584266666666667,3.511512,4.68146,3.511512,2.1411225,2.9267733333333332,2.8152866666666667,0.7045981818181818,5.337365,2.94664,2.64671,4.105825,8.63721,9.08394,4.10708,3.905295,4.21907,6.482135,1.884435,1.3849,26.6407675,4.410385,3.787065,0.8667680000000001,4.12531,4.11677,5.09605,4.542305,4.79511,5.730066666666666,3.1551766666666663,2.0247699999999997,0.6702294117647059,0.7403408333333333,4.83501,5.18885,1.367305,4.363008333333333,0.9203416666666667,3.5279000000000003,1.52433,4.12667,5.88595,2.092975,2.366235,2.293335,3.859195,2.939205,0.47349722222222224,4.285075,3.671305,2.569,3.302805,4.89953,2.90811,4.480025,2.98255,4.646165,8.157893333333334,4.701845,7.844695,2.78485,2.65128,4.477435,4.3967825000000005,4.440485,4.474635,3.73601,4.52909,1.15875125,3.2524058333333334,3.257938285714286,0.706654,1.440836,1.440836,4.14148,7.495801666666667,0.8461230769230769,4.83921,0.8785633333333333,2.812673333333333,2.3378033333333335,2.476238409090909,6.135052222222222,2.4833633333333336,1.1285555555555555,2.3023166666666666,1.18755125,2.0027066666666666,3.1980500000000003,3.0782049999999996,3.29946,2.45735,0.8785633333333333,4.659295,4.316945,5.5275,2.755845,3.974685,2.0797999999999996,5.9135,4.764565,4.38874,2.9425166666666667,3.322435,2.241745,1.3592425,4.13063,2.675625,4.561485,5.7417,1.659732,4.65135,2.8158133333333333,6.243285,3.57876,2.591565,0.8785633333333333,2.34104,3.4567,7.179389055555555,2.3182066666666667,1.643182,2.3182066666666667,0.427985,1.03433,3.86964,2.76796,1.6196075,3.671165,3.8713290000000002,0.643429,0.643429,0.643429,8.85366,1.60883,0.7294927272727272,2.880905,38.96554531601732,1.783244888888889,0.6571988888888889,2.9394575,0.6571988888888889,3.936365,1.98543,2.44445,2.6772033333333334,5.12275,4.22805,4.511025,2.4461533333333336,0.8826428571428571,4.264875,3.2895033333333337,4.88229,1.0496857142857143,2.943525,2.943525,3.94972,3.86483,3.528925,4.563293846153846,3.33697,4.64461,5.2347,1.8678519999999998,1.05511,5.3409,6.59195,3.818,0.696676,4.371055,4.1252200000000006,0.9060575,4.56639,2.50655,3.977515,4.40436,1.854940606060606,1.854940606060606,4.087365,3.464245,0.9013611111111111,2.923645,3.058593333333333,3.204915,4.01307,4.49422,0.5439742857142857,0.29259352941176475,0.29259352941176475,0.29259352941176475,0.8365678151260505,0.5735038461538461,0.655661,0.29259352941176475,0.29259352941176475,7.2362,0.29259352941176475,0.8365678151260505,3.544695,1.2554075,4.352475,1.2040316666666666,0.6001869230769231,0.9060575,2.551015,2.6901,3.996995,3.132905,0.29259352941176475,0.29259352941176475,4.40829,3.77284,4.146405,2.60936,4.107745,1.531192,3.70387,0.655661,0.655661,4.60922,3.035935,2.7228,2.909635,3.8672233333333335,1.04875,0.8196384615384615,10.267900000000001,1.23752875,3.721175,4.477115,5.17085,2.05792,0.3845734782608696,0.89907625,2.7712066666666666,3.221735,3.056645,4.539875,1.455768,5.71055,3.612225,5.28337,4.008795,3.0778499999999998,2.921836666666667,6.415396666666666,2.677216666666667,4.78193,4.09875,3.994773333333333,5.84941,0.5422853333333334,4.205885,3.3782666666666668,2.1409266666666666,0.6726977777777778,3.95618,4.35012,2.944,2.36712,2.177535,4.997385,2.743505,2.823405,1.0317859999999999,0.46621692307692303,3.849025,0.3488346666666667,0.7566672727272727,3.915395,3.14393,4.099285,2.82122,5.5345,4.37097,5.760055666666666,3.60395,3.33049,4.132985,1.55861,5.243895,1.7756779999999999,4.11562,2.4300975,5.999686666666667,2.590615,1.0539239999999999,4.48366,6.9220749999999995,6.602929166666667,3.2520733333333336,0.8163283333333333,2.871283333333333,4.343135,4.041785,4.52611,4.33775,4.155455,4.694855,2.97854,4.148785,1.8424733333333334,2.49798,1.4711633333333334,4.12563,9.526720000000001,3.16458,3.659455,5.8592,2.92425,4.2992,2.58883,2.9029316666666665,3.19673,3.116345,3.390245,3.221215,3.6255,5.23145,5.6401,3.93406,4.783395,5.09875,3.964305,2.9549,5.2213,7.718975,0.9071366666666667,4.091415,3.99246,4.717055,5.49985,5.02985,2.511225,8.01663,2.494803333333333,3.344085,6.1048,3.74514,4.27495,2.1444400000000003,1.8002975,2.9307200000000004,2.3081333333333336,2.1627,2.9790766666666664,4.11587,4.695715,4.17224,3.352955,4.429011666666667,3.395195,3.28178,4.06363,5.4614,2.89905,5.48462,3.964555,4.02536,3.606305,7.64863,3.792465,3.61597,4.248155,4.973815,3.18871,10.3409,1.2929483333333334,2.45143,3.80642,2.7560966666666666,2.7560966666666666,1.9154,7.776361666666667,0.8871722222222221,3.23265,0.87338,2.0368425,4.55531,5.19405,4.00144,4.366255,2.7208466666666666,3.302455,3.799915,3.85759,4.07028,2.98214,2.60143,3.98128,4.7650500000000005,3.29671,4.34345,1.642998,1.6533919999999998,2.6551066666666667,5.6465,2.271055,1.71892,2.0393825,4.246925,4.808455,2.97338,2.86728,0.5006811111111111,2.2885,7.357255,3.14051,1.5180766666666665,0.82451875,1.3691266666666666,2.0532366666666664,2.269515,1.3246416666666667,2.13849,4.2952905,3.97097,4.544195,2.4646933333333334,1.887925,6.784435,2.966525,1.8394650000000001,1.8394650000000001,1.8394650000000001,6.4933700000000005,2.21107,3.48282,2.713255,0.460312,1.094022,2.3914625,6.2177925,0.42944666666666664,3.49831,3.8517316666666668,5.64,3.029063333333333,0.42944666666666664,3.029063333333333,0.942965,1.235668,5.6529,4.10748,6.829955,4.193225,4.654105,3.801605,4.1622,5.0564,4.95462,5.9409,3.72221,3.358365,4.81304,4.59685,4.196085,4.446045,4.30162,1.3521733333333332,2.5987133333333334,1.23122875,2.1197,3.1905945833333336,1.5221445833333334,6.4999725,5.582126666666667,2.7058916666666666,4.37244,2.97048,4.84021,2.952445,4.163545,4.896665,9.4066375,5.3621,4.53831,2.3387225,2.650775,2.14188,0.52513875,2.221779333333333,5.88815,5.26235,4.988585,4.466665,0.5258953333333333,2.0553625,1.38038,4.337725,0.7315130769230769,6.665179999999999,2.06176,1.219215,1.219215,4.0017320000000005,2.0321000000000002,3.0495733333333335,2.60382,4.60473,3.74662,3.74662,4.959915,5.584770000000001,2.7787166666666665,2.4857400000000003,3.249643333333333,4.666245,1.829652,2.7711900000000003,5.50405,5.21275,4.686245,4.170185,3.8952999999999998,4.402105,3.5358658333333333,3.2434733333333337,2.35319,4.20212,5.11195,3.146545,4.9183,5.5757,2.08146,2.5075366666666667,6.12255,6.86975,1.2641040000000001,2.5694,2.3579025,2.6803233333333334,2.2499225,2.569675,2.3848845,1.0610633333333332,1.9742325,2.7034,2.292195,2.691298333333333,2.691298333333333,2.9274094999999996,2.860525,2.1739824999999997,2.48386,2.34098,1.9825240000000002,1.5680013333333334,5.0901325,14.891375333333333,2.86368,3.2079733333333333,1.718772,1.718772,1.6305283333333334,1.6305283333333334,2.82258,3.6409333333333334,2.89045,1.97501,1.97501,3.7522,2.5919333333333334,1.1876966666666666,1.4066228571428572,3.0045333333333333,2.874886666666667,3.6206666666666667,2.6212400000000002,3.25668,3.228206666666667,0.654722,2.5826,3.5957493333333335,7.011673333333333,4.82207,5.12935,4.318615,3.798735,4.842295,4.599795,2.845266666666667,4.196765,1.3518383333333333,3.270716666666667,5.77855,5.4902,2.8392,1.3174283333333332,3.049515,2.36351,3.0661133333333335,1.5689683333333333,0.699975,3.068756666666667,4.537889166666666,4.82245,4.20874,4.789755,3.0153700000000003,2.0606466666666665,3.314465,2.3698,3.348466666666667,3.091396666666667,3.2736933333333336,2.6436766666666665,2.53783,3.6541,2.8465066666666665,5.11955,4.818765,5.314898333333334,5.314898333333334,3.436125,4.015655,3.890665,3.629255,2.830105,4.123215,3.32507,3.147436666666667,6.152,0.6872225,5.3205,4.849775,2.61888,4.9189525,3.127166666666667,1.8442333333333334,1.3233528571428572,2.1726199999999998,0.975392,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.3042560714285715,0.5811342857142857,0.5811342857142857,1.240035,0.8003397222222222,1.6620810353535354,1.0120642857142856,1.0120642857142856,1.2527388131313133,0.4093422222222222,0.37607222222222225,1.3016825,1.4913125,2.8289299999999997,2.29769,6.529059999999999,3.1141133333333335,3.827785,3.31227,4.624964571428571,1.20509,4.584425,4.050335,4.8901,3.182165,1.48426,4.245518461538461,3.73542,4.42174,4.274065,2.992735,4.739825,4.54236,4.703875,1.21488,4.094305,4.765525,3.15912,2.42102,3.50848,2.393715,3.191605,4.660525,2.99963,5.0832,8.728774999999999,3.255025,4.833155,4.152535,4.407585,2.6774833333333334,4.21313,0.88844,4.074075,3.408445,2.07428,1.11083875,2.899395,1.1770383333333332,0.509088,3.4431,4.38722,5.109616666666667,3.7411,2.4036825,2.208585,4.871235,3.8945666666666665,4.366845,2.695575,2.2182666666666666,4.08365,3.99122,3.76675,5.1483,4.524585,3.71748,4.5871,3.1979433333333334,4.21359,2.1794195833333334,4.43219,5.22155,3.32606,4.289535,2.57421,3.702715,5.44445,4.13435,5.1426,4.561595,4.91914,2.3078866666666666,4.84848,4.997055,4.816445,2.1975975,1.13506875,4.03619,4.57802,4.238375,4.7541,1.998295,3.836395,2.24235,4.90958,4.507685,4.808785,2.3006075,4.287755,4.726125,4.26204,2.49864,4.53572,4.617915,5.15735,3.559465,2.1975975,2.39375,2.746895,5.0519,4.034135,4.235065,3.476445,4.843505,2.330625,6.97396,4.893195,4.40761,5.279472048611112,4.8775525,5.1859,3.42877375,2.895951666666667,2.895951666666667,3.930865,3.505715,4.46409,2.14606,2.9506562499999998,0.99283625,2.5770500000000003,2.9686466666666664,2.42088,3.0599333333333334,4.413005,2.83385,5.29965,2.6290366666666665,4.535855,5.203340000000001,2.29458,4.12636,2.69107,2.7381533333333334,4.028335,0.9187900000000001,5.0254,4.5329,5.949565,4.763155,5.6043,1.330207142857143,4.57376,6.54945,8.41151,3.2193666666666663,3.2175666666666665,1.941686,0.8526,3.815675,1.0337471428571428,4.36907,4.466925,5.6298,3.114795,3.49597,1.106142857142857,3.57196,3.708585,4.37489,4.1316,2.93544,2.92579,2.4136225,4.32973,4.667045,5.68475,4.56322,3.77074,0.4136211111111111,0.4136211111111111,0.4136211111111111,0.4136211111111111,5.6132,2.887055,6.2385,3.043143333333333,4.93701,4.68182,3.899405,2.11244,2.5130266666666667,1.47231,5.3375,2.81514,4.21101,3.365045,3.38707,1.693845,1.151215,4.52866,2.341865,5.83982,3.89975,5.0663,2.19084,1.5136649999999998,0.9198744444444444,3.2505,4.27269,3.64082,2.1345975,8.17624,4.754655,3.42931,2.2857600000000002,0.49752,3.313755,2.7581,2.049505,1.86174,2.89649,2.746715,2.42966,2.95317,2.86958,3.349485,4.26768,3.83369,4.18341,3.11177,5.865196666666667,0.6109546666666666,4.46716,5.92465,4.94604,4.69692,3.319376666666667,5.11305,4.373705,4.20909,5.271434999999999,5.2069,4.558895,4.555735,3.6111500000000003,4.88652,2.629655,9.01213,4.877055,4.197515,4.754485,4.90401,5.3869,3.570805,1.1107922222222222,5.959866666666667,3.44025,4.65188,1.395715,4.468545,3.707855,6.722131666666668,4.48659,3.191835,1.8465366666666665,4.413795,1.87863,0.91011,4.149015,6.1437,1.9109766666666665,2.3303533333333335,2.88025,3.245935,3.60504,3.687095,5.0295,1.7947033333333333,4.0111,3.7550075,3.339105,3.7744,3.698075,2.776005,2.683865,1.9661725,2.4356733333333334,2.6807233333333333,4.413195,0.5599758333333333,2.627806666666667,4.07874,2.88198,3.4427333333333334,4.475035,4.95148,3.85114,16.679921242424243,2.57709,4.078433333333334,1.5114319999999999,0.8871509090909092,0.8871509090909092,0.8871509090909092,0.8871509090909092,0.8871509090909092,4.6092,4.68148,4.822475,8.765865,2.3990675,2.3990675,4.574985,4.4745791666666666,1.3674025,2.1401533333333336,3.812365,2.47056,2.41192,2.17768,3.040065,3.8248153333333335,1.7774225,3.455655,0.8257785714285715,2.82082,2.8581866666666667,2.996696666666667,1.5543266666666666,3.1658933333333334,2.2325466666666665,0.9384025,2.76029,2.6792466666666663,1.228488888888889,2.45208,2.6912299999999996,2.16572,4.407426666666667,1.7958033333333334,3.040596666666667,2.0713575,2.6086233333333335,1.1488222222222222,2.76256,4.65741,3.5779666666666667,1.030575,2.93167,1.3598675,2.52282,2.4501733333333333,4.751128333333333,3.0088833333333334,2.3943033333333332,4.770736,2.6408566666666666,2.238465,2.9071433333333334,2.4505399999999997,1.5459566666666669,2.79151,3.2052899999999998,2.9788833333333335,2.4842299999999997,3.2100066666666667,2.6975599999999997,2.47733,3.680097,3.680097,2.9873100000000004,1.9799566666666666,1.8598299999999999,2.503693333333333,5.502706666666667,3.0205933333333337,1.9981066666666667,1.762985,3.049986666666667,4.463725,2.57603,1.08222,2.7896566666666667,1.5363766666666667,2.9166566666666665,2.14433,2.5027666666666666,2.1194,3.03527,1.36686,1.6311366666666667,1.3833966666666668,4.194111666666666,2.5698633333333336,3.73435,1.0623233333333333,4.11098,2.0545266666666664,2.081395,1.72479,1.6966833333333333,3.257516666666667,23.41759096969697,7.268533333333334,2.64204,3.451721666666667,3.0053733333333335,10.071941333333333,3.06235,0.9860075,2.4531533333333333,2.4304633333333334,2.081113333333333,3.0210633333333337,2.5451566666666667,2.55712,0.961059,3.2913333333333337,2.6922266666666665,2.9776399999999996,2.5518633333333334,2.72862,2.1823533333333334,2.13264,2.8223299999999996,2.5989733333333334,2.0955075,1.576556,5.255878333333333,4.60875,2.243855,2.9516,2.2052066666666668,2.4686333333333335,8.161216666666666,1.9268766666666668,5.11325,2.257215,1.8717725,7.66774,2.938086666666667,2.6928866666666664,2.511675,1.82148,1.4216084615384617,3.1564300000000003,2.8366733333333336,4.043595,1.559205,3.7096,1.4610675,1.4610675,4.32409,3.704605,3.4769342857142855,3.4769342857142855,5.655856666666667,3.497185,0.46585099999999996,11.700832356532358,1.2762733333333334,0.9278371428571429,3.7376991666666664,1.4243985470085472,1.9214875,6.14325,3.780995,0.7617790909090908,2.1665633333333334,5.046948666666666,2.4382966666666666,3.947975,1.3417557142857142,5.5172,5.05735,4.79957,3.3176365,1.9090219999999998,2.3922933333333334,2.56307,2.42623,2.24494,5.06036,4.490325,4.1881,1.89813,4.72038,4.32607,3.397066666666667,2.1431875,5.1022,2.51887,8.79731,6.4474375,1.889715,2.39507,1.696638,4.5517666666666665,4.5517666666666665,3.028723333333333,2.8681300000000003,3.1668998333333334,4.939525,9.52915,4.219365,2.51755,5.32535,4.098625,5.2246,2.0352799999999998,0.89063,1.3368183333333334,4.501235,4.751995,3.6600333333333332,2.8251066666666667,3.7592,2.23251,3.874175,4.444345,3.330835,5.34235,3.1514366666666667,3.6771933333333338,3.32448,3.2878333333333334,3.339933333333333,6.1997,3.00685,5.3929,4.847405,3.134075,3.36805,3.36805,5.71725,11.931146666666667,3.573233333333333,6.29124,7.1015355555555555,3.636525,2.4566866666666667,3.84129,1.3437299999999999,3.58443,2.4646325,2.9795866666666666,2.9768066666666666,3.4256333333333333,1.9462499999999998,2.37201,2.7079400000000002,2.5433066666666666,2.9730366666666668,3.1022200000000004,4.03262,2.624476666666667,2.9012666666666664,3.918345,2.854816666666667,2.5893433333333333,1.17948375,2.08877,2.84372,2.294846666666667,2.5259766666666668,2.4970933333333334,3.5780333333333334,2.458556666666667,2.3597033333333335,2.7545933333333337,3.1215200000000003,2.69267,2.8846366666666667,2.5533333333333332,3.166983333333333,2.8567,3.3427879999999996,2.6542666666666666,2.4465333333333334,2.423696666666667,2.67308,2.6394533333333334,3.5185,3.31324,3.16101,1.9618475,1.9618475,0.659695,1.502322,4.17047,3.248915,2.681243333333333,1.9462499999999998,3.149923333333333,1.2556357142857144,2.763253333333333,0.5661546666666666,3.3699999999999997,3.1103666666666663,3.12903,2.9650499999999997,2.667316666666667,2.4457833333333334,2.93308,2.880103333333333,3.341666666666667,4.696016666666667,1.5083199999999999,2.668946666666667,2.43622,1.6774333333333333,2.1987166666666664,2.9540333333333333,2.7295866666666666,1.6871559999999999,2.5376433333333335,2.61473,2.61324,2.69026,2.811866666666667,2.916873333333333,3.261426666666667,1.3499775,2.872973333333333,2.4293333333333336,3.683533333333333,3.717866666666667,1.8583375,2.0394733333333335,3.22931,2.5892033333333333,3.470666666666667,2.6903333333333332,2.7448599999999996,5.1326350000000005,3.2621333333333333,1.7871866666666667,1.52477,3.3593333333333333,6.427836666666666,3.18346,3.5292666666666666,2.8050800000000002,3.0172600000000003,4.686317333333334,1.6322240000000001,1.1283555555555556,2.394013333333333,1.6789079166666665,4.55333,2.7771833333333333,3.0775,3.11106,3.23268,2.2834499999999998,3.19354,2.531075,1.624008,2.85516,3.564915,3.6319099999999995,3.306755,3.72907,1.65593,2.78608,3.421295,3.3393,2.3487633333333333,3.606666666666667,4.011,3.9003,1.3431475,5.544798,3.31778375,1.4814483333333335,3.33084,3.491995,2.96036,3.60029,1.8326360000000002,1.8326360000000002,3.2012433333333337,2.8889266666666664,2.846845,5.15905,4.296245,4.395066666666667,1.57024,2.8816366666666666,2.530463333333333,4.1860625,3.1447266666666667,4.756856666666667,2.5326366666666664,2.4234966666666664,2.6796100000000003,3.54149,3.634565,1.6177540000000001,3.05212,2.98318,2.3325,4.54141,1.332895,2.953845,4.25459,2.69733,3.49687,3.983175,1.666265,1.5251400000000002,2.3877925,1.0770250000000001,2.046486428571429,1.931375,0.45321,4.15609,2.74136,4.78223,4.22436,2.8765,4.644570833333333,3.350766666666667,3.164846666666667,3.4878,2.5007633333333334,3.2332366666666665,2.7799566666666666,3.111216666666667,2.2809666666666666,0.6720915384615385,2.3156,0.6414921428571428,1.91411,2.5082666666666666,3.23936,3.0115766666666666,1.4926466666666667,1.3736175,3.841565,4.543205,3.344705,3.651605,3.12886,1.47412,4.012225,6.722487777777777,3.53636,5.5153925,1.561105,3.928875,1.91028,4.390725,3.81898,1.817615,4.213015,3.23486,3.84236,4.189985,2.1213725,3.80793,6.2194449999999994,4.942965,3.658365,3.07416,1.6715175,2.0409625,3.919715,3.282485,3.09853,3.750425,3.58422,3.61529,1.5975625,3.589095,3.444245,1.77154,4.1622275,1.0418166666666666,3.248125,1.6557925,4.0958,4.677076666666666,3.57951,3.1072100000000002,3.72099,3.399735,1.947795,2.2809325,3.8463666666666665,2.1803,5.61532,4.06904,4.43132,2.75519,2.84013,4.4926,4.547695,2.344468,2.344468,6.087289666666667,3.830463,2.624265,2.854585,2.1383266666666665,2.92983,3.340595,3.7512925,2.7072380000000003,3.29578,1.048024,3.90114,2.981615,4.082895,2.65224,1.50734,1.546895,3.140615,5.908246999999999,5.9409975,3.900035,1.55417,4.33798,3.796155,0.8036466666666667,2.803865,1.421304,5.3523125,1.3975083333333334,3.855505,1.88024,1.4926466666666667,2.92282,3.103535,4.43471,7.017175,4.03674,4.844534166666667,2.2844,2.65854,4.03798,3.87485,4.308605,4.3609,0.982635,1.60911825,1.03452125,2.55538,2.37518,4.883115,1.03452125,4.41402,2.353905,1.620205,1.620205,1.77154,4.026515,4.25563,3.869285,1.549594,1.549594,0.9571583333333334,2.95162,2.0945975,6.0691775,4.298675,3.81063,2.963563333333333,1.0225257142857143,3.446655,2.77928,4.17179,3.61682,3.951285,3.951285,3.18569,4.05422,1.948655,2.821675,0.9824777777777778,2.156423333333333,3.513655,2.54935,3.4132975,3.4132975,2.780615,4.646815,4.54673,3.055375,3.51811,3.96127,2.5606566666666666,4.350209166666667,2.91077,3.996915,7.80984,5.08835,2.69197,3.22366,3.132325,4.59865,3.0700700000000003,7.74683,4.802161,4.58922,3.51195,3.69385,3.78167,4.467755,4.76147,2.665485,4.41918,6.349976666666667,2.718005,2.1590208888888887,3.205745,3.269505,3.575315,4.917805,2.281476666666667,2.292316666666667,2.845845,3.03388,2.840786666666667,7.411357333333333,1.5511325,4.9725616666666665,4.9725616666666665,3.35971,3.8412283333333335,3.171035,2.536993333333333,5.05505,4.442456,2.248186,4.000315,3.934305,3.488360833333333,2.92876,2.766255,6.1998033333333336,3.45451,5.2886,3.3339,4.767865,4.045955,4.015835,2.8889266666666664,2.161983333333333,3.165275,3.888775,2.97768,3.36152,2.6293,6.315343333333333,2.59271,1.8540725,3.2220158333333337,2.3172633333333335,3.884355,2.841735,0.8036466666666667,3.599095,4.08047,3.90582,5.8875399999999996,3.08826,3.175105,2.9935833333333335,2.9935833333333335,3.91856,4.213085,3.761615,2.10757,5.7602075,2.176905,4.60613,3.73876,8.11195,2.7819800000000003,1.2588266666666665,3.16971,4.591365,0.61382,4.03315,3.3908,3.054015,3.13518,4.26495,2.09469,2.49765,9.129484999999999,3.40678,3.102665,1.3975083333333334,3.810275,2.680915,2.37585875,4.322915,5.428445,1.615635,1.1772883333333333,1.0422200000000001,4.233935,4.080035,3.60694,3.421285,3.421285,1.5975625,2.21633,3.0982652777777777,0.8718777777777778,3.0226,1.0143425,1.65593,3.528845,3.47971,2.989455,2.71634,2.4481100000000002,4.645655,3.893185,3.37596,3.1459,2.63186,4.237935,6.658284999999999,3.90557,0.88007125,2.5996224999999997,8.44243,4.462325,4.129435,1.04955,4.849983333333333,1.4183283333333332,3.6192275,3.6192275,3.968265,8.569485,0.8310322222222222,4.637795,4.448295,2.5322533333333332,4.25885,3.85901,2.15054,10.221018333333333,1.8188975,2.393796666666667,3.28016,1.7560033333333334,4.170600833333333,2.895495,3.384855,3.452035333333333,2.889785,3.0881,1.12076,7.04654,4.00745,3.88372,3.93741,1.948495,3.1072100000000002,3.9273966666666666,3.54344,0.6293807692307692,3.869145,4.01895,4.75309,2.12611,1.444332,4.16775,4.073065,8.92274,0.729846923076923,0.7626275,0.7626275,1.8719633333333334,1.3727966666666667,1.453158,1.9435966666666669,4.62126,1.2238633333333333,0.8559985714285715,4.023705,3.61981,1.3317075,3.188735,4.52439,3.30699,0.686356,2.12875,9.509055,3.41085,3.410415,2.575985,1.82374,2.4812866666666666,2.64139,4.370305,4.315815,3.74151,0.9159271428571428,1.378614,0.916272,4.3354275,4.37061,4.09064,0.8718777777777778,1.7208780000000001,3.73677,2.2201621428571428,4.708958333333333,1.016445,4.795705,0.805205,0.805205,0.805205,10.079225000000001,4.071145,1.0143425,3.820345,4.584045,2.62918,3.26063,4.501049166666666,2.73845,1.8902377777777777,2.2867433333333334,0.686356,1.4900026666666668,0.5503444444444444,0.85188,1.4792866666666666,4.047505,3.657245,2.024135,7.508023333333334,4.9183875,0.5991088888888889,6.1356,5.13921,3.462215,4.50394,7.794205333333333,3.690668988095238,4.9183875,4.419005333333333,2.5054233333333333,4.080135,3.68791,7.21629,3.59102,0.49752,1.559912,4.07497,1.77216,1.1772883333333333,4.033245,2.34884,1.73063,3.365545,1.718928,4.374005,4.322385,4.17773,4.738165,5.87891,2.7534,3.763405,1.421304,2.3743375,3.279045,3.29454,2.248186,4.029775,2.46214,4.839665,2.855205,2.434325,3.3512008333333334,1.70383,3.52967,0.8718777777777778,2.144642,1.0422200000000001,2.165665,3.498215,1.5511325,1.4792866666666666,1.979395,3.455965,7.78451,0.9159271428571428,1.04955,1.409972,3.55989,3.813155,1.409972,3.900465,2.3743375,0.61382,0.8718777777777778,1.8719633333333334,1.421304,0.45321,1.6463640000000002,4.22076,2.5322533333333332,1.41927,3.00848,1.3431475,1.8188975,2.5656233333333334,2.2867433333333334,4.228115,2.5656233333333334,0.8036466666666667,2.993001,2.14278,0.1045084090909091,0.1045084090909091,0.1045084090909091,0.1045084090909091,0.1045084090909091,3.22349,2.7591933333333336,2.7291399999999997,2.9700699999999998,4.75087,4.236335,1.72479,3.62851,3.645165,2.245455,4.94044875,2.67845,2.4923,2.3678,2.873845,4.588415,8.252923333333333,2.262415,1.9215066666666667,3.0984614285714285,1.0725714285714285,1.3982066666666666,2.3593100000000002,1.9540966666666666,1.4814675,2.7537066666666665,2.1421466666666666,2.65363,2.58854,2.5569566666666668,3.859415,3.40738,2.5646999999999998,1.374606,3.62019,3.700195,1.5029700000000001,1.307204,1.307204,1.307204,3.525835,2.6791633333333333,1.0100833333333334,2.1212166666666668,1.3566314285714287,4.3102,1.5835266666666667,6.354311666666667,3.25793,2.517506666666667,3.123988,3.123988,5.240773333333333,2.96235,4.507285,4.670965,2.1814925,3.1029033333333333 +GSM1946775,1.0,1.895955,1.895955,1.4869700000000001,5.1447,3.11069,2.587787894736842,1.5138966666666667,8.894115490196079,4.88498,3.0779099999999997,2.20178,2.58817,4.016545,4.714675,2.04758,1.546438,5.12255,2.3203033333333334,2.383095,5.2318,5.338146666666667,4.200475,2.681665,1.799718,3.964095,5.00955,4.031225,0.7285925,1.7126088888888886,2.0992255555555555,2.2057575,2.4134575,1.3157128571428571,0.7793658333333333,3.3087753571428573,1.468765,1.803405,1.390725,2.10998,1.4397175,1.2395,1.166884,1.553566,0.858596,0.935052,0.763844,1.385937142857143,1.6354399999999998,1.847062,1.536646,2.43796,1.795334,17.69195675,0.36508666666666667,0.8103339999999999,1.211386,2.013,1.724122,2.26446,1.0276642857142857,1.0276642857142857,1.0276642857142857,1.1227,1.084946,4.6849025,1.2855625,2.1036675,2.04866,2.7046,1.0454599999999998,2.539175,2.5151,2.039555,1.8212725,1.7975075,1.5202275,1.6515825,2.5112166666666664,4.74171,4.898535,4.899255,1.43037,4.44931,4.886511666666666,4.07217,4.18059,1.0809225,7.1647,0.5928975,0.5928975,2.21537,1.2106714285714286,16.77565,4.77494,5.0546,4.80192,4.76983,4.217175,5.0283,0.5608833333333334,2.4463579166666665,1.9893525,2.4259575,5.00905,4.144415,1.279275,2.9408966666666667,2.49863,2.809946666666667,3.2487733333333337,3.284045,5.1663,3.1481795,4.60083,3.1711566666666666,0.7708263636363636,1.503832,2.1643,4.3383,3.470745,0.573055625,4.12249,4.00321,0.9764525,4.08822,1.7859881818181815,2.19813,2.3137225,1.98084,3.661795,5.22425,3.228765,2.7885500000000003,3.4619,2.9632666666666663,3.872215,2.86832,5.411,3.43026,4.467445,3.65551,2.39432,3.612375,2.42839,6.979556666666666,3.672435,2.73332,3.13316,3.06843,4.67455,0.7457522222222221,9.095731666666666,3.732255,2.3027533333333334,1.6959616666666666,3.5348666666666664,2.293445,4.32905,5.479,2.136985,4.861511666666667,2.72375,5.0527,2.136985,2.3720266666666667,4.547635,5.0996875,4.819415,7.890038333333333,3.095195,4.261595,2.900885,5.6025,4.730395,1.6841666666666668,7.78554,4.02901,3.880645,3.72562,3.546305,3.488595,2.26623,6.05194,2.24156,3.877435,4.086835,4.9074,4.76058,4.058675,1.3415616666666665,2.73314,2.922015,1.949925,1.949925,5.906933,3.07768,1.8374266666666665,5.2791,4.08152,2.929685,1.4190616666666667,0.9915855555555555,6.83545,2.74953,6.71425,4.2303,4.95369,3.57367,2.80269,3.74,3.54395,3.700205,4.434445,5.6065,2.721365,3.51816,8.830006666666666,4.328535,3.3816333333333333,3.228353333333333,2.9814399999999996,3.8580666666666663,4.705135833333333,1.9513925,2.85436,2.4163900000000003,1.7904399999999998,1.6355533333333332,2.51606,1.829855,2.304705,3.0135166666666664,2.938633333333333,2.4674366666666665,2.9266799999999997,4.886511666666666,3.549465,3.678815,3.73651,4.632445,1.4910916666666667,2.037345,2.8481528571428574,2.21178,2.5440666666666667,2.9925566666666668,3.236416666666667,2.0274,1.2904933333333333,2.8207566666666666,0.649638,1.7079333333333333,0.5235477777777777,0.5235477777777777,1.76417,3.7224,2.59805,1.1602466666666666,1.4786566666666667,0.3337776923076923,2.706213333333333,0.649638,1.2614699999999999,0.2445810810810811,1.4193466666666668,2.013665,3.3786,2.87527,2.6236099999999998,2.5731266666666666,2.310166666666667,2.40292,2.481593333333333,2.35671,2.21502,2.7899066666666665,1.85552,2.650575,4.24871,0.7187,1.83749,2.46626,1.9466666666666665,3.486076666666667,1.454866,2.4908333333333332,2.4664433333333333,4.096256666666667,2.1307066666666667,6.504307619047619,1.5980142857142856,2.6519166666666667,2.1227625,2.0338025,3.6959,1.9188375,1.90194,4.801475,2.69806,2.233765,3.759175,4.58402,4.34191,4.008885,2.275605,3.3636,5.621841333333333,3.93709,4.333135,4.020415,4.34313,4.097105,4.4966,3.496765,0.853825,4.72544,1.334655,5.13455,3.618305,6.003235,4.12809,4.140945,0.99131875,2.098725,3.4279,3.968225,0.8751085714285713,1.312866752136752,2.026497857142857,1.7907842857142855,4.8908325,5.655826,1.9637375,3.64581,5.47555,0.32454500000000003,3.37766,2.224485,0.96528625,3.22532,2.0104,13.50374,1.13217375,2.0891575,2.6909233333333336,2.339075,2.060493947368421,5.107838947368421,0.340288947368421,1.5906799999999999,3.5278666666666667,0.999795,3.813966666666667,1.1358557142857142,5.48675,3.90938,1.9375933333333333,5.7253,5.3701,2.12162,1.2237314285714285,4.274651666666667,5.0693,4.12742,0.9480181818181819,8.60951,2.97781,4.721085,2.584913333333333,2.554386666666667,5.0703,2.35257,3.14355,2.26667,2.50805,3.223655,2.986273333333333,0.327173125,3.85291,3.45186,3.91339,3.773075,4.415695,6.14433,4.03031,1.6056925,5.52315,4.56705,3.90972,5.02225,1.08627,3.0036066666666668,3.4961333333333333,2.7231566666666667,15.303135000000001,2.96094,3.852605,4.16068,4.587565,2.437365,5.2305525,1.9063525,0.78574,2.4624625,3.09483,4.376865,3.70202,6.480406666666666,2.922946666666667,2.060875,2.092935,3.5987333333333336,4.17668,2.41991,0.3773588244047619,2.2856695652173915,1.91374,1.17965375,0.45938360701345754,0.5414083896221532,0.3773588244047619,0.3773588244047619,0.3773588244047619,1.09457,1.7483025,0.9983825,1.37488,4.74355,0.2297555882352941,11.70087198051948,3.04902,2.83723,4.580585,4.103845,4.14352,2.15351,5.3827,4.19596,4.905185,4.345825,0.7173892307692308,3.21175,4.196315384615385,0.5250185714285714,3.45204,2.8729099999999996,4.848415,0.7717518181818181,1.66241,4.270545,3.68893,1.981295,1.71725,1.5770933333333332,3.3183633333333336,3.838455,3.07826,2.953953333333333,5.3821,5.5269,4.86875,3.0949733333333334,3.084971,5.8367483333333325,3.289073333333333,5.83575,0.4324352380952381,3.1247066666666665,4.629449999999999,1.9018866666666667,2.512655,2.965505,5.149253333333333,0.6785925,2.1709025,4.409125,4.055065,1.0087185714285714,4.1987,3.092495,5.2107,3.3698,4.763535,3.38542,4.19216,1.2535666666666667,3.30427,2.59729,4.864605,4.020085,4.919305,5.2908,4.357185,2.611115,4.99855,2.519746666666667,3.16745,3.3542666666666663,2.843916666666667,2.6984266666666668,2.34113,1.809056,1.3955766666666667,1.9197300000000002,0.8047485714285714,1.7218866666666666,2.09001,2.1613233333333333,3.24771,3.286936666666667,3.117103333333333,0.9430133333333335,5.1103,3.2477699999999996,5.463617916666667,2.627474583333333,2.982763333333333,3.6636333333333333,1.9415166666666668,1.9415166666666668,3.0649506493506493,3.0649506493506493,4.304712792207792,0.48025142857142855,1.7468599999999999,1.9811433333333335,3.5510333333333333,2.1348885714285717,2.1348885714285717,2.1348885714285717,7.496575773809524,4.413845714285715,0.9494181818181818,3.3827,5.017155833333334,2.20998,4.513355,3.09659,2.21232,5.57025,3.179046666666667,3.149153333333333,1.4804,1.8368033333333333,2.819456666666667,2.8659766666666666,2.3769,5.70035,4.0967,3.9235666666666664,4.137301666666667,1.3797616666666668,2.7978966666666665,2.8753433333333334,0.7490077777777777,2.1161,4.1693533333333335,7.778055,1.439555,2.803075,4.554405,2.0799,2.30532,2.30532,1.08717625,4.871615,7.220675,3.94545,6.87058,4.644085,1.94995,4.095185,3.454935,5.11385,4.4064749999999995,0.3483315789473684,2.78138,2.904035,3.97574,4.247985,1.859302,2.0215375,2.6401,4.492515,3.86749,3.206355,2.378935,1.821892,6.74596,4.61073,4.194365,3.32363,3.881615,4.653595,4.86855,3.671245,3.51259,1.8950475,1.1394771428571429,2.77726,3.80689,4.18215,5.4076375,5.8800775000000005,2.0313125,1.7551500000000002,2.55592,2.6645066666666666,2.834906666666667,0.6177942857142857,1.96852,3.43334,1.11036625,4.7383,3.121485,6.1398175,1.1537277272727273,1.1537277272727273,4.02848,3.797855,3.799235,5.17615,2.6729033333333336,2.19982,4.01974,3.75795,2.06953,3.122536666666667,2.81491,4.0815,3.5761025,3.61409,4.929475,1.0384955555555555,2.528665,4.498135,4.322185,3.18365,2.5734366666666664,2.004215,0.730828888888889,0.730828888888889,0.730828888888889,0.730828888888889,1.550638888888889,3.9603025,3.9603025,1.6074366666666666,7.569393333333334,3.902125,4.527225,3.4804,2.71175,5.0614,4.033345,4.89284,5.38035,1.6667325,4.125815,4.23158,2.85975,3.78982,3.29077,2.36886,4.37395,1.7952,3.83789,1.71371,3.565085,3.02895,1.6536775,1.1368133333333332,2.889995,4.747005,1.6028099999999998,0.8374666666666667,4.771845,1.2450975,5.062205333333333,4.71299,1.3079528571428571,3.600735,0.7642422222222223,2.68407,3.0060066666666665,2.6386499999999997,2.6355,4.52824,3.137320833333333,4.46508,5.08555,4.739675,4.317885,2.0573025,1.3007185714285714,4.252945,5.11765,1.4092075,1.4092075,3.96504,0.25001066666666666,2.0381966666666664,0.25001066666666666,0.25001066666666666,0.25001066666666666,0.25001066666666666,3.559375,2.7209733333333332,3.340855,3.48831,3.11821,4.56958,2.558523333333333,0.9653925,0.9653925,0.9565566666666667,0.9565566666666667,3.564965,1.76945,3.60032,2.0618235714285715,2.0618235714285715,4.48245,0.6925692857142858,2.008095,7.725523333333333,5.341,3.145945,3.917775,1.04086375,2.15809,2.046725,5.2654,5.22795,4.396055,3.694325,1.2354442857142858,2.93905,1.892505,7.32605,1.710695,4.196075,4.933025,2.639195,3.818275,5.95493,7.8201350000000005,4.297525,5.1967,5.32905,2.143015,3.196195,2.233095,2.20283,1.95268,3.700185,4.278095,6.2346900000000005,6.83712,4.34966,1.23129,1.75915,4.5235,4.332535,2.18222,5.44205,4.23044,4.480433333333333,1.7738233333333333,3.5782666666666665,1.48979,6.344393333333333,2.59569,2.3555599999999997,2.06194,2.57696,2.3918466666666665,3.7388666666666666,3.7032333333333334,3.1872566666666664,3.3705,1.410472,4.386575,3.107835,3.034015,0.4100675,2.851795,4.252275,2.3439425,5.4381,4.842445,4.62921,6.3982969999999995,5.14145,2.2459266666666666,4.098415,4.93046,1.6278066666666666,5.4554,6.0528,4.975115,4.566235,3.097835,5.6301,5.11065,4.489315,5.580556666666666,7.9259,3.891585,1.2948116666666667,1.6090200000000001,2.682855,1.831382,4.87088,4.21461,5.439565,2.9911133333333333,2.637166666666667,2.65841,2.6206766666666668,2.54196,1.0996433333333333,0.5225817647058824,3.863695,3.842565,3.8000666666666665,3.96834,2.869365,3.298016666666667,5.378103333333334,2.8777399999999997,0.5984470588235294,3.69544,5.81775,1.880465,1.6513760000000002,3.624385,3.53034,2.450293333333333,3.9225666666666665,5.32265,2.6036,2.2881466666666666,2.1312133333333336,2.4015233333333335,2.58462,4.140285,4.980950833333333,6.619398749999999,1.9777799999999999,5.161,3.6757350000000004,5.865006666666667,3.0267133333333334,2.98052,2.373665,2.1247066666666665,1.2797825,1.2797825,2.59255,2.3076833333333333,2.6690466666666666,5.37775,1.6590820000000002,2.2562,1.86103,0.58986125,3.77026,0.6199708333333334,0.89838375,3.46486,3.91874,4.17688,1.76341,4.72814,3.0700066666666666,0.8632285714285715,4.33262,3.7873004761904756,3.4215666666666666,2.630615,5.3245,0.28299689655172416,2.4412789999999998,3.042125,1.525845,3.592695,4.33694,2.206875,1.2841933333333333,3.714475,3.664995,2.7394766666666666,2.7394766666666666,3.407445,2.89254,4.409745,5.190391666666667,4.979555,1.040181111111111,2.79888,2.5871333333333335,4.539105,4.981735,4.10568,4.773155,4.273166666666667,3.7101,3.6186000000000003,3.5042333333333335,3.6366666666666667,3.1343599999999996,3.140053333333333,0.6372985714285715,2.53225,2.442,3.373865,3.16221,3.157083333333333,0.7768708333333333,2.37355,3.464111,4.65539,5.52145,4.256075,2.0196425,2.0196425,0.824128,3.51957,4.43074,3.969845,5.532475,2.94577,4.91841,0.5747390909090909,4.324385,4.14163,4.579685,3.43048,1.004512857142857,3.54865,3.9784,4.43703,3.678275,5.26675,2.634005,4.49826,1.698555,0.9642071428571429,2.77843,4.9241,3.719255,3.158365,1.536395,4.02949,2.4034025,2.603425,2.7897239999999996,3.135263333333333,4.33077,2.7229200000000002,1.79419,3.4184,1.4361789285714286,2.8313400000000004,2.678053333333333,2.19187,3.0523133333333337,2.916513333333333,2.746176666666667,3.3455333333333335,4.378125,2.7965466666666665,3.627631666666667,2.2878833333333333,1.77647,4.208548333333333,3.120086666666667,2.4610233333333333,3.627631666666667,2.534263333333333,0.7916727272727272,2.497345,1.0349833333333334,2.1513825,1.6602425,0.8695263636363637,1.7343725,2.0549275,2.6618235,2.750075,4.616985,1.82419,4.137985,2.944433333333333,1.5823639999999999,2.1426766666666666,3.2065866666666665,1.3707799999999999,3.069123333333333,2.79858,2.6708647727272727,2.0409775,1.8302479999999999,3.5147,2.6223666666666667,2.8767055555555556,3.365766666666667,2.9407866666666664,3.6038333333333337,2.45005,4.5066999999999995,3.527233333333333,3.7256,3.4326333333333334,3.5596333333333336,3.5936,2.335453333333333,8.07928,4.891185,4.710895,3.355005,2.99436,1.896725,3.988765,1.782618,4.21178,4.888635,1.583928,2.5732166666666667,1.1623816666666666,2.52208,1.6681066666666666,2.3258233333333336,4.889935,3.17677,3.51295,4.694135,0.77733375,1.528492,0.9911,4.23501,11.453965,4.006966666666666,6.54895,1.99281,5.07865,4.115105,2.5475,5.6299,0.284834705882353,0.8215914285714286,5.0099,4.86317,7.0054125,2.2218975,4.40849,4.94595,4.486915,4.390565,3.96231,4.36507,2.93591,5.732063333333333,4.97334,3.36712,2.908775,1.9687466666666669,1.8490633333333333,1.4225486458333334,2.3564866666666666,4.148545,5.05205,1.545764,8.64264,2.6202733333333335,2.645503333333333,0.9464460000000001,0.9464460000000001,7.89814875,3.383355,2.659675,2.020835,3.0605366666666662,2.09709,1.1331766666666667,3.0792566666666668,2.71914,0.5989171428571429,1.6678833333333334,3.357812,3.357812,1.1318,2.51621,2.258246666666667,3.2158566666666664,1.33494,1.7186133333333335,4.883794666666667,2.843773333333333,2.551825,1.1195325,1.1195325,4.579945,5.0378,4.62014,3.055615,3.83519,5.24321,3.088815,3.23525,3.4577333333333335,3.89955,1.1214250000000001,3.4882666666666666,2.590625,4.170305,2.16846,4.59537,3.37184,4.30663,3.53974,5.349842000000001,1.0677055555555555,2.23905,1.78851,3.559095,4.9886475,3.7359,3.852285,4.56823,4.3627,1.7574075,4.3472,3.32587,4.12334,2.33506,0.81022625,3.570645,4.828165,5.22565,1.1851133333333335,3.1227300000000002,3.13634,2.5042966666666664,1.610220980392157,1.610220980392157,1.0365933333333335,2.6661533333333334,1.1658442857142857,1.34504,4.67683,4.904835,0.5419095238095238,3.889815,3.4843333333333333,4.092965,5.388,0.4229225,9.406315,5.5482,2.92475,3.791715,4.605595,5.570742142857143,4.999795,6.3707899999999995,0.7468572727272726,2.7698433333333337,5.57865,2.2963733333333334,1.8729525,2.02944,4.682885,5.221439999999999,2.637112142857143,2.640136666666667,3.637,1.964505,5.1027,10.8941,8.835948333333334,3.8600333333333334,4.96626,3.0878091666666663,3.06826,3.854335,1.6042580000000002,2.87419,3.524725,3.37586,4.776285,4.45207,6.277696666666667,2.69623,2.963785,4.66925,4.934515,5.4559,5.532981666666666,4.09973,6.3239,3.35961,3.001065,2.80994,5.8785,3.61736,6.1925,2.0121,3.2737366666666667,3.38415,6.0501,4.263095,5.1385,1.4034140000000002,0.87424125,2.73995,0.6650526666666666,4.06837,3.49244,3.40465,2.9542,2.1145333333333336,2.833275,2.4642925,2.983746,1.840552,2.96597625,2.867225,2.230245,2.56985,3.727968,1.2551233333333334,2.8221983333333336,4.949005,3.6288666666666667,1.077955,2.7056966666666664,3.7574741666666664,3.5244820000000003,1.549875,5.3322,5.3307,2.344883333333333,2.9368366666666668,30.440549437214745,3.4219000000000004,1.69105,3.765833333333333,1.6612133333333334,2.53658,3.0068266666666665,3.4470666666666667,2.0031975,2.63655,2.3393075,3.091049,2.6173066666666664,2.3428925,1.667475,2.1768,2.782425,0.40034272727272724,1.0760225,2.758766666666667,1.522086,3.26754,1.549875,2.088153333333333,25.656385333333333,5.2918,4.164825,3.48684,2.594285,2.4701925,2.7743066666666665,2.3031875,4.66404,5.995515,5.917,1.6101400000000001,2.04538,2.4435,2.7390600000000003,3.833245,5.26765,4.78308,4.807885,0.18099106382978722,5.00045,5.175199166666667,3.77908,9.63596,1.0044975,1.0044975,3.144016666666667,3.69033,5.77995,2.123207777777778,1.0511066666666666,5.31695,1.8865975,4.747625,3.787305,3.24619,4.190975,3.971995,4.519315,3.035545,0.7159855555555557,3.133785,2.1485416666666666,4.53435,7.99958,4.48182,1.7742066666666665,1.7742066666666665,6.47204,4.99439,4.056065,5.9269,2.591736666666667,5.6007925,1.3418233333333334,1.65108,2.912736666666667,1.9958833333333335,2.961345,2.7699,3.67446,4.066715,4.519245,5.41755,2.4003225,2.074165,1.7829275,2.82255,2.1490425,1.9546025,1.9428575,5.1642166666666665,1.9082725,3.88981,2.34112,3.4019666666666666,2.9528766666666666,1.75906,1.601214285714286,0.9919370000000001,2.77651,3.6005000000000003,0.840859,4.61143,1.8870125,5.911690833333333,1.977775,1.84138,1.4592275,1.5022866666666665,5.7356372222222225,1.994518,2.88678,3.300736666666667,1.13495625,2.0177425,4.811482,3.0965900000000004,2.288656666666667,3.607533333333333,2.9062699999999997,2.9345666666666665,1.2430205357142858,0.27846750000000003,0.27846750000000003,0.27846750000000003,0.27846750000000003,0.27846750000000003,4.640395,2.7945966666666666,2.3846775,3.3952000000000004,1.2800583333333333,2.60772,3.02828,2.7037,3.490775,2.85035,2.16489,2.9427566666666665,3.4598999999999998,2.477015,1.89525,3.368015,2.8653066666666667,2.6152633333333335,5.2634,2.6547566666666667,2.4944533333333334,2.6082366666666665,10.968663333333334,4.71654,5.1874,4.848615,4.315295,2.8252733333333335,5.0948,3.67718,2.533225,5.785534999999999,4.19411,3.2629,2.3182525,4.182245,5.487235714285714,3.87197,18.530436773809523,1.2383475,5.6972,0.8406211111111112,1.21184125,2.74995,4.814765,3.895115,3.432885,1.2840716666666667,2.57965,4.446865,2.8547933333333333,4.666505,3.320511428571429,2.7094833333333335,0.6985483333333334,2.6884866666666665,4.794695,2.216185,2.62495,2.211135,19.187833333333334,1.5467819999999999,1.24713375,2.63306,0.3177411538461538,1.9416575,2.678986666666667,1.8671433333333332,2.7342933333333335,2.585975,7.778482499999999,1.9045125,2.739825,2.34905,2.2626375,1.545865,3.4278,3.26178,3.044725,3.1105699999999996,1.9203125,2.4324820833333334,3.3267458333333333,4.86721,0.46397166666666667,2.70079,2.6633633333333333,3.566175,2.2668025,3.5407355000000003,3.27518,1.5692899999999999,2.3528333333333333,2.21688,1.6782866666666667,1.8214333333333332,3.519345,3.20228,0.7239716666666666,3.1928,5.53285,4.256015,2.282484,2.282484,3.100543333333333,5.0859,3.421735,3.326455,2.32922,1.0672818181818182,3.963405,3.570565,5.48425,3.88845,2.311414,2.311414,1.56015,3.679,5.2372,3.746385,4.087755,3.3646333333333334,2.3895500000000003,4.577895,3.57239,4.16171,3.4791000000000003,2.78685,4.59223,3.4563666666666664,2.547003333333333,1.91759,3.557575,2.725375,1.5778766666666666,3.664315,4.51267,4.833785,2.4853066666666668,4.41113,4.378245,6.726549499999999,3.90994,2.2272600000000002,5.1736,3.32456,7.573985,2.854623333333333,1.3853383333333333,4.465225,2.9737466666666665,4.248955,0.6278457142857142,0.8683333333333333,3.6379,3.747575,2.238775303030303,4.558535,2.60676,2.75468,9.463038000000001,1.742668,1.399808,4.251125,2.56928,3.53608,5.50085,6.52628,3.088965,2.1900999999999997,3.1986933333333334,1.7932133333333333,3.571066666666667,8.299837175697865,0.8487230952380952,0.972795,4.95815,0.4450286666666667,1.637775,2.4970375,2.78335,2.85145,1.9069875,3.829505,2.5411,13.880244999999999,5.069345,2.499095,2.499095,4.509735,0.798925,5.473703333333333,4.261135,3.807815,6.0395183333333335,3.35805,4.92873,1.5169866666666667,2.634695,2.559295,2.398435,2.88062,2.62842,3.0724,3.456595,3.550185,3.015495,2.922675,2.706445,4.36215,4.676815,3.04175,3.398766666666667,5.0778525,4.4918,19.91338904761905,13.407251428571428,3.109833571428571,0.6851116666666667,1.5682714285714285,4.670035,3.485125,3.0187751602564106,1.86953,0.8811566666666667,0.7896658333333333,0.6072685714285715,2.103925,1.6425,5.275033333333333,3.4344,0.7081354545454546,3.173255,2.32389,2.333015,2.06284,5.86836,1.457258,4.512055,3.061205,2.982153333333333,2.157005,2.6480900000000003,2.4929566666666667,0.75353,3.03263,2.67559,3.9044706666666666,3.00255,7.914161666666667,3.54045,3.229385,1.930535,3.59204,6.5799725,2.2098875,2.4829475,2.44155,1.5828175,2.774125,2.4001725,2.5803,0.873968,1.34253,0.98150375,2.708945,3.921655,6.23355,6.10895,3.066405,2.411025,3.08785,3.5691666666666664,8.152016666666666,1.14023,0.4291875,3.359075,1.8981199999999998,1.654102,3.720707,1.334116,2.0175643333333335,4.370095,3.396329333333333,1.1925083333333333,1.7836533333333333,3.930203333333333,3.57217,4.46916,4.971625,2.5889,5.4587,4.104685,0.853676923076923,5.15715,4.36533,4.497565000000001,3.5888000000000004,2.189205,1.235054,1.0405925,3.380385,2.88744,3.091895,4.334485,2.819935,2.69586,3.12776,3.62934,5.06385,2.401395,2.517165,4.835395,6.1574,0.543995,4.421495,1.836305,3.471405,3.8371999999999997,2.0718075,3.067195,2.2918775,2.00076,2.579895,2.710379166666667,2.0387999999999997,5.79865,3.775255,1.1953,6.72376,1.0883866666666666,3.97276,1.5750666666666666,4.50627,4.364445,2.3686133333333332,3.328755,4.009955,9.34498,2.839935,3.522335,3.704755,3.537075,1.6461325,7.6899,3.838565,4.894765,1.69453,4.002665,2.991735,1.21693875,2.0558,4.012945,2.092405,4.08328,4.656345,4.3770375,4.58732,2.3955975,5.383,4.13746,2.9922233333333335,2.4360166666666667,1.764674,4.784755,6.3641,4.996575,4.52425,2.89981,2.2190825,4.57535,3.376925,1.1187927472527472,3.960185,4.6763216666666665,3.9716,2.76498,3.43895,0.46092714285714287,0.46092714285714287,5.98935,4.785485,5.8996,2.09907,3.96438,4.473815,0.815545,4.6348,5.04465,4.55484,4.364085,4.4663,1.952925,3.225895,2.25973,4.43728,0.708675,4.22839,4.46076,2.877005,2.9356266666666664,4.47991,2.31366,3.1407,59.04982514935065,3.02889,2.54042,1.574805,3.126105,3.70549,0.99063125,0.95553,2.58215,2.58215,1.269242,3.058485,2.44857,3.7713745,7.55817,2.9057033333333333,1.1473957142857143,1.5643,2.67577,3.912435,1.02576,1.82275,1.404116,2.19831,4.47191,4.400875,2.992285,23.17233314935065,4.273375,3.87394,3.126505,2.1564900000000002,3.391825,3.381675,2.425345,4.81218,1.7196339999999999,4.21739,3.3829558253968255,6.181070555555555,1.933625,2.52605,1.86899,4.084395,2.471573333333333,2.3082375,2.07352,4.629212222222222,3.55209,3.35277,4.462795,4.90839,2.641075,3.301765,2.83933,2.642945,2.945382222222222,2.243355,2.113155,3.52675,1.1085566666666666,3.695955,4.53865,2.54111,5.0618,4.81677,5.021541666666667,2.3061700000000003,2.132625,2.609505,2.693155,3.93953,3.353435,4.93002,0.6959928571428572,4.527723333333333,2.7033,3.942085,2.256005,1.841902,4.670363333333333,1.274788888888889,3.13314,4.41614,1.2623820000000001,3.481955,3.95465,4.777825,6.14067,2.071035,2.83171,2.7467133333333336,3.8831333333333333,1.9621700000000002,2.48156,2.4911833333333333,2.2970566666666667,2.2936166666666664,1.3228433333333334,1.9983775,1.9983775,1.82264,2.01191,1.7222866666666665,2.5855333333333332,3.79573,5.2953,3.280225,1.60374,4.526965,3.78674,3.396145,3.996925,1.9259625,1.706045,4.513594166666667,1.782325,4.880845,4.994855,3.46497,2.45301,3.6565624999999997,3.316075,2.895315,3.377975,0.14053673469387756,2.973473333333333,7.4978,1.48586,3.28447,3.78603,0.9985757142857142,1.3712466666666667,1.8474275,4.00989,2.90348,7.007045,3.343995,3.63612,2.79148,2.70574,4.80987,3.191965,3.924645,3.286745,2.775,5.2601,4.55599,5.03055,2.50577,1.9242275,3.418435,4.51135,2.85137,3.178755,2.157495,2.54393,3.25857,3.52929,2.37834,4.18591,4.87495,2.71937,4.375135,4.58881,3.455915,4.79413,3.227475,3.096055,7.88092,4.311345,5.9128,5.11275,4.177075,6.06709,3.942115,3.609875,1.548456,6.6701,2.398205,5.10065,4.066645,4.26331,2.9821899999999997,1.9371933333333333,2.2289533333333336,2.4411033333333334,1.02067,3.508433333333333,2.8973766666666667,3.043363333333333,2.4252233333333333,3.84387,4.49452,2.617313333333333,0.54015,4.44495,4.519535,4.777955,5.08785,3.80008,4.52255,5.1486,4.599015,1.4276333333333333,0.9334461538461538,2.6414466666666665,4.923655,5.4271,0.504814375,2.700805,2.4561566666666668,3.18709,4.36782,3.6967666666666665,2.0344975,3.89555,3.157975,4.475425,2.945075,5.83205,4.062205,7.0979125,0.5926308333333333,4.076025,0.738564,2.279365,4.039166666666667,3.4107000000000003,1.2299733333333334,2.14478,4.24439,4.26506,4.01774,1.9974466666666668,2.1406425,2.20875,4.58459,3.480265,4.100445,1.6262260000000002,1.3074277142857142,5.47165,2.3625575,7.74552,4.58914,3.54982,2.05235,1.6327925,4.20133,4.48708,1.6459400000000002,2.282275,2.648875,2.973473333333333,6.897131666666667,3.163956666666667,2.894816666666667,4.138089166666667,3.353895,1.9650699999999999,3.087085,7.6074975,4.71129,4.816535,0.5766718181818182,4.04556,4.4937,4.842671428571429,4.327205,4.03712,3.029625,2.620805,3.0859,2.882765,3.9910200000000002,1.674096,6.097220999999999,4.580395,5.08825,3.703515,3.29787,3.591869166666667,2.3629125,1.3529275,0.88037,2.70315,2.671285,1.0508383333333333,2.54678,6.31555,5.50195,3.26229,4.698755,15.577446071428572,4.19081,4.401595,4.19623,0.7018675,5.4067,4.6269,5.48615,4.73247,5.709,2.3344,3.512455,3.73162,1.507072,2.940645,5.23285,2.890803333333333,1.628416,4.428025,5.0798,4.175105,5.6084,4.81715,5.8234,4.6311,2.9234466666666665,4.59072,4.20435,2.56668,2.9388900000000002,3.021263333333333,1.82799125,5.2766,2.7647925,2.0983466666666666,4.039455,2.607205,4.43061,4.208548333333333,2.21907,2.74348,4.446185,3.525815,4.48426,4.32622,4.205385,5.271147,3.183435,5.33555,2.7024800000000004,3.739095,5.0129,1.4903359999999999,4.65087,1.0529616666666668,4.37628,3.88263,1.3071300000000001,3.728705,2.13693,7.024285000000001,2.8481960476190475,2.8481960476190475,2.8481960476190475,0.638545,1.4474583333333333,1.791595,3.60481,6.35543,3.5519866666666666,1.88658,2.181625,1.8724466666666668,3.63172,2.386805,0.4350169230769231,1.621095,2.2192475,3.833325,1.78994,2.957125,2.30212,2.0694625,3.74946,2.783673333333333,4.872875,3.632375,1.838855,6.34879,1.965785,4.18248,4.14105,6.321031666666666,1.4867533333333334,3.472795,3.79828,3.750825,4.37446,2.759115,2.17258,3.714775,6.3551085,2.021105,3.51727,3.01197,2.0322525,4.91366,5.0994,2.6924466666666667,2.155135,3.9000725,6.009525,5.69575,3.04023,2.319805,2.62723,2.83571,2.98567,3.73733,1.3440225,2.734125,4.56501,0.8127525,4.469715,3.896375,3.67653,3.884765,2.366745,4.170945,1.98408,4.464035,7.648098333333333,4.72887,3.373815,4.255105,0.9781125,4.56254,2.37445,4.30825,5.6972024999999995,4.495095,4.21394,11.557345,4.877025,3.52495,1.4389375,0.71204,2.81585,3.69897,3.453615,3.543205,2.1182933333333334,2.604616666666667,2.099136666666667,1.1174733333333333,1.1174733333333333,1.9021433333333333,2.3365633333333333,3.2258166666666668,3.3914666666666666,3.5973333333333333,2.6740733333333337,3.20255,2.89061,1.4536933333333335,2.533183333333333,2.1112333333333333,1.7733999999999999,1.4049025,2.37511,0.8050716666666666,10.086987916666667,0.8050716666666666,3.0561866666666666,1.9704549999999998,1.9857933333333333,4.514625,4.224315,4.907705,4.68334,2.29126,2.7654333333333336,3.23017,2.7359833333333334,3.6489999999999996,3.5796333333333332,2.8169766666666667,3.5746333333333333,1.5842166666666666,5.153,6.404516571428571,3.9242000000000004,3.3846666666666665,2.9922299999999997,2.6234733333333335,3.013223333333333,1.3157128571428571,3.3024066666666667,3.1211266666666666,4.08941,5.89435,4.591635,2.726103333333333,3.3805333333333336,3.4575333333333336,4.327573333333333,4.399515,2.5079966666666667,4.069905,3.4134666666666664,3.3229666666666664,4.68137,2.928316666666667,4.51077,6.571149999999999,2.6283433333333335,2.49046,1.9148566666666669,1.3493233333333334,5.140616666666666,3.7694266666666665,2.8895733333333333,2.02745,2.127003333333333,4.67461,3.88141,3.67277,3.1978500000000003,3.4317333333333333,3.6489999999999996,3.7608333333333337,4.020566666666666,3.6260999999999997,0.58972625,4.062133333333334,2.51015,2.4738666666666664,3.64745,4.351415,4.90751,5.71755,2.66719,4.455023333333333,1.2124083333333333,2.51442,2.51442,3.922595,3.930495,3.790795,3.858805,1.76648,3.700765,3.83313,1.1818142857142857,4.127925833333333,3.432567238095238,2.0562586666666665,0.345282,3.8188,3.392055,7.310639999999999,3.28122,4.69471,3.24692,3.807815,3.740235,1.93018125,2.913555,5.0761,3.411675,3.273946666666667,3.2263466666666667,5.644415,2.11688,0.99393125,1.9694099999999999,1.6519933333333334,4.87067,2.329213333333333,2.3384733333333334,1.9344375,4.77587,4.04152,4.792845,0.594703,4.661335,4.92229,2.9420800000000003,2.838646666666667,3.14233,3.4335944444444446,4.237793333333333,1.6851133333333335,0.6738315789473684,0.7947214285714285,3.6826333333333334,4.70608,6.157778333333333,5.0899,5.25375,4.84645,1.4797857142857143,3.8371999999999997,2.1637133333333334,1.02445375,5.35965,5.61365,3.53021,4.795925,4.026635,6.9866383333333335,4.235533333333334,7.389383333333333,3.7478,2.8411483333333334,6.2663,10.25856201923077,2.9202666666666666,0.746883,3.769655,4.12403,2.161845,6.66915,4.588955,4.20422,3.01571,3.01571,3.73469,3.782105,4.151305,5.179,4.180370619047619,2.5328545714285715,1.09262,5.86565,2.588695,5.7518425,4.12967,5.43795,3.368715,2.1961875,4.647365,4.68039,3.5005666666666664,3.779,4.519905,28.05616857142857,2.336835,2.4924475,2.2338075,1.4729633333333334,2.5898066666666666,1.1909185714285715,3.0650366666666664,2.920006666666667,3.4364666666666666,3.32054,0.7478376923076924,3.3726333333333334,4.933095,3.63659,3.382733333333333,4.26448,6.5125225,4.970405,4.66824,4.530115,4.434678333333333,4.813645,3.3365666666666667,1.7303625,0.9290833333333333,1.4287033333333332,3.8403333333333336,1.5121033333333334,3.6966,2.3740733333333335,2.1972466666666666,1.8975966666666666,2.56839,2.066145,1.8383933333333333,2.83093,3.9966,3.5914,4.208915,1.6404260000000002,3.823033333333333,2.72996,4.04523,2.46786,2.42138,2.98018,1.44181,5.0317,6.4324449999999995,2.870675,3.55724,3.93266,2.3135875,3.141799166666667,3.704166666666667,4.729155,4.860805,0.3193018404118404,0.3193018404118404,5.23525,5.29,4.23364,3.0171,5.208,4.635285,0.6816169230769231,4.349985,5.1257,3.756245,6.5631,4.715865,7.64789,13.461941666666666,14.035618461538462,4.44048,4.1713,2.6954700000000003,0.6886284615384616,2.7686333333333333,5.48495,1.3336116666666669,4.46496,3.536766666666667,3.1663266666666665,2.1750133333333332,1.8121166666666666,5.000245,3.557065,8.645968095238095,5.39745,4.020775,7.203448787878788,3.01141,3.0643333333333334,1.43828,4.749584166666667,2.0097375,2.4746466666666667,2.6715933333333335,0.3041471875,2.98509,3.50722,4.6246366666666665,0.8792960000000001,1.4535333333333333,3.89488,0.576752,0.576752,3.1974370833333334,3.0756866666666665,3.7041,3.923685,4.700885,5.7803,3.612035,3.97877,2.81827,3.18913,2.59936,0.5689041666666667,2.5465233333333335,2.711765,2.85476,5.5232125,2.809855,4.6960625,1.5710425,2.82076,2.611145,2.292315,2.639425,2.9177,1.67944,2.38367,2.115565,3.735465,2.360975,3.807795,2.774005,3.9210149999999997,3.9210149999999997,2.54428,2.54428,8.982555166666666,2.7564233333333337,0.782387,2.4966666666666666,2.49382,2.418413333333333,3.807795,1.9594840000000002,1.903272,1.538454,3.527215,4.56079,1.6587825,4.537485,4.03981,6.62385,6.994951666666666,2.4092866666666666,4.675525,8.19665,5.0273,4.177165,2.6763966666666668,5.21545,3.7530963636363635,4.428355,5.53665,9.103808,3.74508375,3.900085,1.270215,4.39017,4.518866,4.907285,3.79612,4.429805,2.681655,2.7293633333333336,6.604265,3.535975,1.346778,6.82726,3.840715,3.1013266666666666,4.830065,3.1013266666666666,3.56344,4.03484,5.63045,1.0731614285714286,3.8576377777777777,4.68309,4.074265,1.3836666666666666,2.036775,4.923465,4.826975,2.681855,7.834555,4.992615,4.37554,4.90292,4.395285,1.6116075,4.430385,2.733935,3.87205,4.608185,4.716215,4.77421,2.98923,4.126245,4.999485,2.2265686666666666,1.8108375,3.7157666666666667,3.5703333333333336,3.2379233333333333,3.068543333333333,3.9655,3.1388533333333335,4.47149,3.165285,3.434545,2.601205,1.8024033333333334,3.7604333333333333,2.1734233333333335,3.054415,3.12866,2.764105,0.708675,2.202745,1.8439233333333334,3.238875,2.08498,3.7057279999999997,3.804805,1.616146,3.5218949999999998,4.69495,0.84131,1.5416533333333333,3.9756,3.782425,4.042465,2.141415,2.0414833333333333,3.33366,2.499391666666667,1.6546200000000002,3.61608,1.89669,1.115872,1.4529625,5.947229999999999,3.647145,2.653315,2.3542,2.4245125,3.71929,0.83979875,0.35109428571428575,0.8073699999999999,5.43075,2.011567142857143,4.48934,2.2139725,1.870623,3.1041315714285713,1.2335085714285716,1.036815,0.70343,0.5524785714285715,2.6002283333333334,6.5048,3.109305,3.87419,0.32182142857142854,3.67276,19.21232295238095,2.95098,7.28433506993007,0.96291375,0.96291375,0.96291375,0.96291375,5.923378333333334,3.777975,3.075825,2.766923333333333,3.20211,3.624305,3.761145,4.03325,3.39119,4.846245,4.45645,4.135615,3.6028173333333333,4.369685,4.872955,4.711805,4.9629,3.54408,4.56995,2.75056,4.26842,3.202695,4.07386,3.899125,4.59445,3.377266666666667,2.54145,2.4144366666666666,4.768425,1.282467142857143,3.792395,3.2256433333333336,3.5199993333333333,4.3770375,3.809295,3.000905,4.60227,3.763505,3.376385,3.071115,5.0107,5.046,3.317535,4.231695,1.7366199999999998,1.7366199999999998,1.9924675,4.8071,3.95667,6.1128409999999995,4.96162,3.821801666666667,6.2695,4.113475,2.14318,8.989155,5.0825,6.2045,4.50286,2.857936666666667,3.983605,0.2649527586206897,1.06064875,4.0979193333333335,3.40114,4.911895,3.407633333333333,5.9537,5.24605,0.5670678571428571,3.131425,0.47161400000000003,1.5706257142857143,3.504765,2.140375,4.422585,3.49281,3.137045,3.441935,3.33124,3.513965,3.3433,3.633245,4.84153,2.37079,1.5706257142857143,2.79386,1.9613775,3.57275,2.183705,4.29167,3.541935,1.6461325,4.356725,4.73704,1.4808533333333334,4.850895,4.765535,4.08554,3.1182866666666667,3.04997,5.14165,1.9110866666666666,1.409474,2.1690366666666665,2.656753333333333,2.5344,2.0194433333333333,5.2242,3.434085,5.291158333333334,4.099021428571429,5.23275,4.37916,1.771778,5.39255,4.584795,5.3083,4.2872,6.794525,1.6858275,4.630055,4.73381,2.862955,2.15266,1.6907866666666667,3.767415,4.48591,2.1908266666666667,2.58695625,3.3975150000000003,3.3975150000000003,2.8969,3.4803333333333337,3.26264,3.759905,3.574905,0.7251423076923077,3.19403,4.05624,4.647494444444445,2.769395,3.008905,1.7321725,2.67928,3.5318,2.35912,4.368925,4.37749,4.49881,2.15585,1.0637818181818182,6.01341,3.58906,3.6333333333333333,3.4807333333333332,1.891422,30.310335238095238,4.451105,3.111485,4.64477,4.164245,0.8923916666666667,7.6611175000000005,2.226505,5.64245,1.6809166666666666,4.813815,5.24617,3.65456,2.967345,2.018975,3.8300666666666667,5.2626,2.145625,2.798526666666667,3.83591,2.767005,2.421625,6.15765,1.99929,2.692315,1.21607125,4.458225,3.46426,4.213915,4.854215,3.04399,2.2410833333333335,4.287495,5.07275,3.60904,3.60904,5.8911,1.4975325,4.309275,7.074716666666666,3.1942,4.33717,3.407435,2.49481,3.34446,4.079805,1.2896175,2.652775,4.30013,4.275595,4.393,4.39508,1.897775,8.847966666666666,2.63964,3.73482,1.825314285714286,3.5058,2.2761466666666665,2.607203333333333,2.156010833333333,1.16462,2.7183833333333336,0.920582857142857,1.0902857142857143,1.0902857142857143,1.0902857142857143,1.85768,0.5405675,3.798755,1.18863,2.6835833333333334,1.1209083333333334,1.71315,2.6640433333333333,2.4786766666666664,0.75539375,1.6799433333333333,1.5135266666666667,2.290573333333333,1.6052779999999998,1.6052779999999998,1.5696766666666668,2.11435,1.101432,1.7213166666666666,1.6520400000000002,1.1677333333333333,2.11041,3.026225,5.8373,1.86775,4.07535,17.861246166666668,6.68762,4.24125,3.38673,3.0375366666666666,3.030226666666667,2.7142,3.426433333333333,0.7816908333333333,1.01823,1.01823,0.6390125,2.5808,3.809305,3.646595,1.514616,5.51575,3.563425,2.728215,4.396285,4.562445,4.073415,4.745215,3.4819333333333335,3.214765,3.239675,5.594,3.9340666666666664,4.938105,0.504513,0.504513,2.244285,3.811755,5.289,3.515145,4.342575,4.57479,6.633964,7.60086,3.428295,2.27557,5.2351,4.53846,2.714733333333333,2.288435,3.03052,1.4496,3.47381,2.53648,1.777435,3.19084,5.2995,1.98053,5.53665,1.6286925,3.6248666666666662,3.59438,0.9047114285714286,3.5117333333333334,2.76788,5.62635,1.11135,1.6645575,2.6442,2.26852,1.639335,2.4225375,2.092465,2.06305,4.718845,4.23013,2.423115,1.79043,1.4307566666666667,3.8729999999999998,1.9014233333333335,2.57465,4.413595,5.4812,2.4254458333333333,2.822435,3.40458,3.49533,2.352095,5.1504,4.515185,3.266125,1.3948375,4.10376,2.598525,2.670313333333333,2.454925,3.71175,5.0828,4.440425,2.38656,2.97653,3.2016533333333332,3.5823666666666667,1.9543333333333335,1.6157499999999998,5.6577,3.4995666666666665,2.2885752727272726,3.2786866666666667,3.2030333333333334,2.4817733333333334,3.3314299999999997,3.2647266666666668,3.7894,5.0443,4.160215,3.1187066666666667,5.61865,3.73302,2.37293,3.475135,3.911235,4.0428,5.8739705,1.916808,3.837975,3.091075,4.45948,3.555585,0.66048625,2.45768,2.10737,3.571485,2.711615,2.036785,2.57605,0.78379,2.9060166666666665,5.0475,2.333235,4.577755,2.8628066666666663,4.42839,1.9198225,4.52253,3.57844,1.791744,3.81767,6.9029925,4.317495,4.37583,4.72874,7.454026931818182,4.20474,4.821705,2.2690175,4.793915,3.031455,1.8807633333333333,1.892715,3.2237466666666665,0.9729857142857143,2.2741833333333332,2.5610166666666667,2.6187033333333334,3.586766666666667,1.769914,3.056895,1.8969866666666666,5.1073,5.9583474999999995,1.00582,1.72399,2.46016,2.7197766666666667,1.9265366666666666,1.0479333333333334,5.607631666666667,2.141095,2.6154066666666664,3.3186633333333333,2.8763433333333333,3.1729299999999996,3.09809,2.1582766666666666,2.95743,2.2915233333333336,4.119575,3.763115,3.81727,3.2889700000000004,3.1870933333333333,0.8752679999999999,1.9037533333333334,2.2731375,1.9961433333333334,2.5970400000000002,1.1098216666666667,2.6598466666666667,2.855373333333333,3.55671,2.0529066666666664,3.349135,3.154,5.8074,3.51471,0.5965066666666666,2.04462,2.8990666666666667,3.8405,0.7875336363636364,3.079446666666667,3.563188,3.4509000000000003,2.8461833333333337,3.3478924999999995,3.6378,3.5200666666666667,2.9081733333333335,2.178695,5.5122,5.13945,5.23095,5.3141,5.82185,1.6955333333333333,3.466925,3.8173666666666666,3.4959666666666664,3.1121833333333337,2.9168766666666666,4.0691,3.4854000000000003,3.3691333333333335,14.895366666666666,4.4787,1.08591,3.0597666666666665,1.6338000000000001,3.3224533333333333,3.4671333333333334,2.4454366666666667,5.558883333333334,6.091910833333333,2.6702166666666667,0.916599,4.42498,3.4757,3.03807,5.16095,5.1468,5.9928,5.13705,3.333485,1.899695,6.46462,1.270215,6.61431,4.92864,2.67505,4.32898,7.584906666666667,5.71205,2.359766666666667,1.5157333333333334,2.1227625,7.883703333333333,1.549875,3.0655900000000003,2.7451483333333333,4.327785555555556,5.7821,4.180215,6.05885,3.238565,5.15675,3.58391,8.01762,5.50065,5.5982,2.2347,2.499615,11.06574,3.328785,3.14352,2.350426666666667,1.6002733333333332,3.4004666666666665,2.5538366666666668,0.6594475,1.0763099999999999,1.0644128571428573,3.980165,6.962476666666666,2.9623566666666665,1.3373666666666668,4.916615,3.589705,0.557749,4.113225,3.42852,3.799515,4.193,3.87054,2.5698133333333333,4.15318,9.81258,1.7320175,3.5818075,3.469505,4.197765,3.50449,0.8904166666666667,3.5942000000000003,3.6839666666666666,1.6105066666666668,2.51051,2.1888166666666664,2.6700466666666665,2.3292066666666664,2.089566666666667,2.20831,6.684984285714286,4.66728,4.342925,4.27211,1.52187,2.5117,4.884075,5.0741,5.287,4.78532,4.87698,5.09775,1.7366199999999998,3.91414,7.864648333333333,1.3683949999999998,1.71734,2.4992966666666665,2.439713333333333,2.7573166666666666,4.768567166666667,0.7947214285714285,3.789535,3.60096,4.55078,4.268975,2.2703866666666666,2.8202599999999998,1.9867475,0.588690625,2.1531925,2.879695,7.39236,4.05815,4.65751,0.962722,2.822153333333333,9.867738750000001,10.922348333333334,3.07987,1.1003775,3.387665,3.83458,2.7942666666666667,5.784433333333333,5.26905,4.1086,2.3928975,3.560233333333333,2.1240633333333334,2.6414966666666664,0.7394663636363638,0.4031686666666667,2.3108,3.318945,2.0110763333333335,3.273275,3.5805000000000002,3.875765,4.50895,1.47145,3.524433333333333,2.10384,2.10384,2.17835,2.897895,2.599365,2.6782966666666668,2.5659466666666666,3.436866666666667,3.495533333333333,4.193505,4.313775,4.67117,4.071515,4.78055,4.87946,3.394875,7.908516666666667,1.98476,2.149836666666667,3.1697566666666668,0.8823500000000001,0.7310150000000001,3.63601,2.269145,5.58925,2.885733333333333,3.061583333333333,2.0066800000000002,1.43331,3.88543,4.08342,4.17976,1.488805,1.29237,2.701,1.8858166666666667,2.47182,1.0938628571428572,1.0938628571428572,2.7336500000000004,3.747795,2.73917,3.1555,3.298225,2.055675,20.27730556060606,3.775495,5.68249,3.63424,3.494785,3.89824,3.623485,5.587,6.7450525,0.9912933333333332,0.9912933333333332,0.9912933333333332,2.6498,1.7328571428571429,3.6840666666666664,4.47445,4.418985,3.05558,4.45142,4.156265,0.8120822222222223,2.3206366666666667,2.8232166666666667,5.675816666666667,3.2233099999999997,3.9591666666666665,4.724385,2.0718075,2.00485,2.2632166666666667,0.4987525,0.775756,1.597905,1.903895,3.026505,12.810293333333334,2.4089633333333333,5.31325,0.7059221428571429,10.814214999999999,5.86875,3.692765,4.365925,3.0008,5.662,3.0008,2.964772,3.490385,3.69886,4.02734,3.63648,4.530835,3.34321,5.85285,6.683925,1.6998833333333332,2.911206,2.67059,27.03794872136422,1.590332,6.30825,4.501538,3.888445,3.755045,4.58111,2.66005,2.619445,1.99097,5.595,6.2928,5.08,4.33551,4.68091,2.2081125,2.53709,4.542835,0.3667153846153846,0.3667153846153846,0.3667153846153846,0.3667153846153846,3.883245,3.1071666666666666,0.9641966666666667,1.75932,1.170488888888889,4.749535,2.41776,2.1698525,7.525616666666667,3.4376333333333338,0.16750655172413792,20.956787333333335,4.553106666666666,1.800304,1.4189964285714285,2.28024,2.09062,2.69545,4.55308,2.84485,3.754205,4.269625,2.49226,7.21471,2.71588,1.907295,4.334615,6.0558,8.015203333333332,4.60139,0.28600000000000003,3.43923,4.250455,3.371366666666667,2.1787525,3.129356666666667,1.5781216666666669,1.5781216666666669,3.88605,5.72836,11.959743333333334,8.971725,0.6480666666666667,2.52302,3.992785,3.39089,4.80352,4.902575,1.614106,1.614106,3.7653,4.297455,2.72984,3.098795,5.2005,5.15055,5.752683,1.9986080000000002,4.58269,4.2562,2.659975,2.9949166666666667,3.4140333333333337,5.2333,4.319835,5.34765,4.38232,4.1314,3.827255,4.67287,4.52627,5.58755,2.919216666666667,3.5909,1.33066,4.730365,4.24197,4.68414,1.9215959999999999,2.1677033333333333,2.07245,3.1302233333333334,2.7235,4.852373333333333,1.9404333333333332,2.368605,3.2289999999999996,2.1799666666666666,2.883103333333333,3.428366666666667,4.558366666666667,3.2407233333333334,2.3981533333333336,3.783205,2.068566666666667,2.5631633333333332,1.9260266666666668,4.51417,3.14002,40.799999250000006,1.8252047272727274,1.8252047272727274,2.3874299999999997,3.4118,2.32937,1.88309,3.12928,1.9022866666666667,0.6655830769230769,4.8522,7.4679675,4.08821,3.99647,5.933,1.95705,4.653245,1.792612,4.994045,4.82707,5.5993,3.90182,1.7303625,4.04806,5.2277,4.765975,5.59675,5.61565,4.336555,3.138465,3.3502333333333336,2.8404433333333334,2.31124,1.704105,4.41528,1.7574266666666667,3.652955,3.652955,2.1432466666666667,1.4694233333333333,2.08642,2.3494733333333335,2.3745,5.06102,2.93875,1.1273783333333334,1.1273783333333334,3.7533666666666665,3.0142066666666665,2.4321566666666667,2.5959033333333332,2.29047,2.3065433333333334,2.16995,2.28699375,3.1015123214285714,1.6601623214285715,0.8145185714285714,58.13970390376984,2.244558,2.0217966666666665,2.076734,0.88649,3.2752706666666667,1.587612,1.587612,2.0603666666666665,2.984863333333333,0.84564375,2.1636266666666666,5.312250000000001,3.9001333333333332,2.5166566666666665,2.7156333333333333,1.86313,2.2390533333333336,0.289654375,2.11839,0.67848,2.444573333333333,1.282152,1.282152,2.1579966666666666,2.3936599999999997,2.43568,1.697402,2.4974333333333334,1.697402,2.0530500000000003,3.0283833333333336,2.9418466666666667,1.146344,1.146344,2.8299800000000004,1.2823233333333333,2.7367633333333337,2.168016666666667,4.92524,4.496985,13.292568416666667,7.2046624999999995,3.86173,2.59604,4.195835,5.30065,5.3671,2.7224408333333336,4.34372,3.464815,2.2508933333333334,4.51295,3.5144333333333333,2.989926666666667,3.807695,2.22532,1.07796,4.1617991666666665,3.096856666666667,3.090785,0.7767857142857143,2.600575,3.401505,4.675025,4.20554,6.3006,2.8547933333333333,1.9902159999999998,3.840705,4.62535,2.37552,2.7194141666666667,1.8086333333333335,2.030756,0.8628159999999999,5.6771,4.623545,4.07287,3.903435,3.1524933333333336,4.463275,5.3542,3.03726,1.6902233333333332,0.5515933333333333,14.833905166666666,0.50964,0.50964,0.50964,3.1705633333333334,3.920533333333333,0.50964,7.7532049999999995,4.64969,0.688884,0.688884,3.2575066666666666,3.246915,3.010895,4.706635,4.635765,4.3321570000000005,2.03805325,4.744218,4.164045,3.5222136904761907,4.81998,3.0600545,2.2962,2.24238,2.59815,1.46845,3.5130041666666667,3.1357033333333333,2.55965,2.38264,1.9628325,1.8349666666666666,1.533795,2.3980175,1.1409666666666667,2.611225,0.6416214285714286,5.2846,1.817665,0.6733375,2.57455,7.785873333333333,2.60392,2.2571339999999998,3.1521575000000004,7.38601,2.672785,4.91508,3.131215,5.87993,4.27315,3.967585,3.92266,5.2306,3.09716,4.260196666666666,1.2170657142857144,4.41805,2.3507366666666667,2.49798,2.343545,2.362835,2.1772,1.3049625,5.20555,0.8695263636363637,4.828685,5.60595,5.13465,5.98135,4.086266666666667,2.4883533333333334,1.872306,2.9313000000000002,3.7879666666666663,2.42156,3.7073,2.699575,4.07011,1.775168,40.67252726190476,5.14355,2.39075,2.8563266666666665,3.1452899999999997,1.5175633333333334,5.673591666666667,4.81591,2.5967933333333333,3.071536666666667,2.1855466666666667,1.608105,5.354,0.8362071428571428,4.908082142857143,1.4194014285714285,3.2352066666666666,3.4023,2.9479066666666665,1.4313125,5.31418,1.755602,1.755602,2.6705799999999997,2.9514333333333336,3.6298666666666666,3.5482,1.3874766666666665,3.1104566666666664,2.6885133333333333,6.5288493333333335,3.07567,3.69827,1.2553349999999999,1.3812866666666668,3.1828299999999996,0.8966879999999999,5.588961666666666,3.7182,2.9045533333333338,3.852133333333333,3.2081033333333333,2.8414333333333333,3.2346066666666666,1.6826133333333333,2.4245125,2.65317,3.568633333333333,2.647203333333333,3.784933333333333,2.6310933333333333,0.608366,9.400051602564103,2.855316666666667,5.37555,4.948275,2.8320866666666666,3.0035133333333337,1.272205,1.9807533333333334,2.03144,1.272205,2.907555,0.48293125,0.48293125,1.19281,1.19281,0.7947925,0.7947925,2.774885,3.02977,2.94901,1.400765,1.71784,3.466265,2.71883,5.13505,4.503235,2.2828,4.311295,2.35312,4.734426752136753,1.4062275,1.4062275,2.55409,1.791386,3.6308083333333334,2.037205,4.4114,1.2840716666666667,2.27504,0.59026,1.2837671428571429,2.25698,2.07314,2.394905,1.543345,4.76372,4.514505,2.7506233333333334,3.041603333333333,1.3524966666666665,0.755575,2.2319466666666665,3.59418,2.4349266666666667,4.874035,5.44155,5.25955,3.85571,6.582685,1.7193833333333333,6.294295,1.990475,4.73329,4.64468,5.871957,2.951003333333333,2.25296,1.7237875,1.925786,1.925786,2.4066025,2.4066025,4.60536,5.3951,0.890714,4.66426,3.983135,3.344635,2.7640433333333334,1.519415,2.7589233333333336,4.11291,4.329135,2.02228,6.51855,5.27745,1.7233266666666667,1.205305,3.87916,4.1660699999999995,4.194095,3.38694,4.21166,0.671885,2.6698866666666667,3.01459,2.6737300000000004,2.944296666666667,2.1224166666666666,3.3007733333333333,1.5126571428571427,1.5126571428571427,1.5126571428571427,2.922776666666667,3.15544,2.15037,3.5214738809523807,2.606,1.3112685714285714,3.17934,3.361333333333333,1.3331314285714286,3.2149566666666662,2.73082,1.3295385714285715,3.3470666666666666,2.967006666666667,3.0430966666666666,2.9714333333333336,3.1571433333333334,2.0550275,3.3638999999999997,5.173316,4.500555,0.910683,1.471936,0.645386,3.435833333333333,9.205745,3.11834,3.23263,2.2791833333333336,4.23432,1.89141,7.800781666666667,7.0137,2.732836666666667,2.605490571428571,4.67196,5.4092,1.68594,1.30077,1.270548,2.12726,11.762943333333332,3.0847766666666665,3.2044633333333334,3.2075093333333333,3.637525,2.3541933333333334,1.2425225,5.2412,1.0207216666666665,3.61277,3.31009,3.23852,3.125776666666667,3.34135,5.13235,1.1554200000000001,2.1650225,2.3701506666666665,2.3701506666666665,3.7269,5.7968,7.337664999999999,3.92885,3.4888,5.24975,1.97266,2.1786833333333333,4.56502,4.38774,3.82126,1.7016,2.95921,3.445155,3.844285,2.3980975,4.48104,3.95081,4.03917,4.10002,5.1061,4.71838,5.28895,3.4576,2.3911233333333333,4.66639,2.80772,3.63789,2.557045,2.56069,2.591695,4.49444,2.42204,3.270646931818182,1.63471,3.214995,3.87387,1.9509425,1.9997575,0.6629416666666667,0.6629416666666667,1.7090025,4.248907272727273,4.232715,2.9195266666666666,4.097145,3.5826775,2.459308857142857,1.10347125,2.62884,1.64257,4.53701,3.831405,0.9755004166666668,1.8061225,3.951745,2.822025,1.51991,1.5635666666666665,5.062757142857143,1.2212533333333333,2.620265,3.15179,2.71136,2.87673,2.851557,2.02629,0.982265,2.774635,2.81216,3.317305,1.3974166666666665,1.52139,1.808335,4.430085,2.096545,4.31674,4.92435,4.58294,5.6498,5.8339,4.260155,5.908705,4.42571380952381,0.80568,2.755335,4.362045,4.00981,0.46295454545454545,0.8688359999999999,3.00103,3.964925,4.323405,5.0224,3.259194642857143,2.736,5.11455,1.88611,2.43507,4.396765,4.200465,3.60874,3.677975,4.397905,5.034,2.679625,5.8951425,0.955865,3.90945,2.31051,4.23086,4.803605,4.43424,2.11824,2.416405,2.787025,2.12536,5.0508,3.491975,1.6029142857142857,3.08225,4.3057525,1.430422,5.78158,1.764368,2.5680333333333336,13.696466726720647,3.1915566666666666,1.3032733333333333,1.6107316666666665,2.1304333333333334,5.486513333333333,1.6262260000000002,6.3452649999999995,0.7020846153846154,3.5757,4.02523,7.374435,2.47701,3.1561833333333333,3.1561833333333333,5.31695,4.95558,3.745995,3.264615,5.1745,5.24775,2.3406,3.354233333333333,4.81933,1.2372033333333332,2.8846633333333336,5.1196,4.26375,3.898465,2.70031,3.165575,3.888655,6.779925,6.081542499999999,0.786806,3.902975,2.938015,3.301683333333333,4.210645,4.301635,3.9598,1.655764,4.40355,2.320195,3.157065,4.13519,4.48742,4.55313,0.9513749285714286,2.42786,7.387426333333333,1.5708816666666667,2.0143466233766234,2.3561575,3.669915,3.454035,3.21706,0.664680909090909,2.493395,1.603265,2.23496,4.797155,5.195898666666666,2.843702,9.6822,2.3334066666666664,2.8151233333333336,1.09133,4.572095,5.2047,1.991285,5.785534999999999,4.24951,3.17355,5.5627,4.797935,4.842415,2.16606,1.6343875,1.6343875,2.786795,4.079595,4.8732675,1.5600075,5.684711666666667,1.4625833333333331,3.936145,1.605275,8.987931,3.94299,2.637405,5.5868,5.74345,4.241205,1.0772833333333334,1.9742325,3.5963999999999996,3.13687,3.4283333333333332,3.6783,3.78969,2.69715,3.2423,3.16636,1.5359425,2.38565,1.9037966666666666,2.79522,1.6084466666666666,5.461985,3.2360233333333333,1.73199,3.2833400000000004,3.215125,3.604555,5.799,6.3755,2.776475,3.42237,4.011105,2.96851,2.724755,1.1981533333333334,0.9261480000000001,6.454230000000001,3.61542,4.93314,5.26195,6.3288,2.732085,3.411633333333333,6.3574,2.44524,0.5412483333333333,5.75885,4.072155,3.89834,3.6740999999999997,1.4496857142857142,5.43555,1.313884,5.1589,0.9721875,1.84325,2.8831399999999996,2.4291966666666664,2.449408571428571,4.109235,5.50895,5.166485833333333,5.166485833333333,4.1286275,4.1286275,4.675715,2.9598933333333335,4.529245,1.13345875,5.5391,4.079615,3.6762,4.6686,3.720115,4.91142,1.81883,4.889265,3.183744,3.35998,4.242795,2.546305,4.36358,5.11995,3.463035,3.049335,4.736455,3.44377,4.20058,2.81669,3.315,6.00825,4.08163,2.8716500000000003,6.790605,1.6265966666666667,2.260165,4.37356,4.633395,5.7479,4.038525,2.000931,2.000931,14.407630686507936,5.11006,5.0643,4.29009,2.939671794871795,4.662975,4.67431,2.7545466666666667,3.3388000000000004,3.67975,3.9628333333333337,3.7723333333333335,4.850985,2.00082,7.9066149999999995,2.38578,2.0567375,5.09965,2.49579,5.07585,4.64922,4.425335,0.7967533333333333,3.5762,3.66038,1.195686,3.391455,3.938205833333333,1.542076,2.2625266666666666,3.04243,2.7228966666666667,2.809063333333333,3.4229333333333334,2.3060633333333334,0.5361921428571429,3.1051133333333336,2.97405,2.916956666666667,3.10201,1.638786,3.07756,7.304133333333333,4.83976,2.49013,1.9640833333333332,2.64706,3.702345,2.568265,3.837047,18.229390000000002,5.64605,3.4764779999999997,5.6129,3.768195,5.475503333333333,1.5934533333333334,5.76755,1.5387483333333334,4.531515,4.259165,5.31035,5.41995,0.9947256842105263,4.125715,2.88576,5.02675,2.459165,4.49736,5.22775,2.83838,2.14228,1.383158,2.111825,4.656365,4.814045,2.16049,1.916565,2.8673300000000004,4.196261666666667,3.1071866666666668,6.10535,2.5827,5.3721,4.493895,3.649655,4.765405,3.626965,4.44739,4.303335,4.459865,2.82129,2.82129,5.289291111111111,2.054396666666667,3.0149833333333333,3.81211,1.7517679999999998,7.445885,3.62144,4.864890000000001,4.3971,4.647575,2.0799,4.85662,5.2056,3.836125,2.2306525,3.732255,3.30775,1.1093425,1.846165,1.19453,0.6910183333333334,1.7882066666666667,1.0805266666666666,4.445195,1.3052666666666668,2.887636666666667,1.5632566666666667,2.1347925,1.0399116666666666,2.03173,2.29681,1.624425,3.32278,2.40237,4.327226666666666,1.5821100000000001,2.2488325,3.4214333333333333,3.113963333333333,2.57144,4.483515833333334,4.458325,5.253903333333334,20.268254833333334,2.66257,2.1967125,0.6342761538461539,0.615615,4.911933333333333,1.8862279999999998,4.17234,4.21583,7.675943,3.881625,3.603995,3.958535,3.6286,3.029673333333333,3.301486666666667,3.5208333333333335,3.187556666666667,5.9331,4.273155,0.969114,1.21973125,5.17305,3.5140333333333333,2.7124133333333336,2.1405166666666666,2.91055,5.54505,4.970215,2.4636025,1.4957200000000002,3.61495,5.30705,9.32805,5.828906666666667,4.58107,4.79286,5.3681,4.52596,4.47309,4.787355,4.464195,5.1342,1.863805,5.64615,1.620342857142857,5.21325,0.71144,5.1528,5.41815,6.1917,6.09795,5.00485,5.808,5.65125,6.317552500000001,1.8685,1.6678714285714287,5.50315,3.707515,6.738519999999999,5.2097,5.2715475,4.913485,6.16895,1.3079528571428571,4.64018,5.48755,4.173333333333333,4.750185,5.9872,2.54385,3.922455,4.24821,4.69946,0.9486583333333334,1.6624316666666665,1.508378,4.881725,3.973,3.574775,2.81635,3.260706666666667,1.5534999999999999,2.083153333333333,0.38216,3.4479666666666664,1.7055140000000002,2.1028333333333333,3.2269666666666663,1.91267,3.18482,2.2994825,2.6949,10.180472666666667,3.1472866666666666,1.6741435897435897,4.52253,0.81552,4.648155,1.1084225,1.9768125,1.92326,1.04615125,5.646323666666666,1.24293625,1.24293625,1.24293625,3.0857466666666666,1.867954,5.0936,2.922575,1.745025,1.4828275,1.54783,1.4839875,1.7667059999999999,5.6845575,0.9934044444444444,4.37569,4.467095,3.454166666666667,1.0286114285714285,2.1893700000000003,2.00397,2.00397,1.6215816666666667,3.6597925,4.62812,4.624905,5.08555,4.312905,4.926625,3.20965,2.0403725,3.601215,5.0649,3.926595,4.568355,1.0674125,3.83104625,5.31645,1.91189,4.477135,2.7617166666666666,4.464725,5.4083,2.438935,6.07525,6.43065,4.426005,5.21555,4.054025,3.20787,8.24581,3.872135,6.5024033333333335,3.430245,2.710793333333333,5.2559,2.6943266666666665,3.243805,5.08685,2.927213333333333,3.131455,3.91632,1.4251933333333333,10.6350775,4.637045,3.17202,15.795470833333333,4.67889,1.7341300000000002,2.8721099999999997,2.91358,3.37389,4.35522,2.7542394444444445,2.922305,3.113135,2.76051,4.017575,6.489375,1.25421,2.3848425,4.186965,4.715095,4.92121,2.0021575,0.6550826666666667,4.906695,4.172405,2.3197325,1.3023716666666667,4.83093,5.10315,0.9252122222222222,3.73375,13.710073333333334,1.3462844285714286,0.40884642857142856,3.6575333333333333,4.343368333333333,1.1320666666666666,4.712475,3.77669,5.707503333333333,1.3846433333333332,3.686265,3.75901,3.23022,4.395595,4.965825,6.14945,8.23188,3.04699,4.180795,3.32186,15.845968124999999,3.3046075000000004,2.3125975,1.23476,2.0796325,1.3334225,1.79776875,1.71309,1.98347,2.0658675,2.15324,2.34433,2.69635,2.17701,5.28775,3.72698,3.523485,3.074195,6.008853333333334,3.0057833333333335,5.01415,3.4149999999999996,1.1411125,3.636115,2.00467,2.451150666666667,4.965935,4.68541,4.7166,5.1147,2.645566666666667,3.0610466666666665,2.42035,3.67577,3.612035,2.14861,1.715225,3.676133333333333,4.98272,4.65865,2.3123466666666666,11.23694,0.6293826666666666,2.53164,5.3193,2.7942950000000004,1.48655,2.945255,7.692328333333333,7.33375,4.97121,4.43707,3.82456,2.0540875,2.51499,3.034285666666667,2.1412166666666668,4.337658333333334,2.93433,4.718305,0.5133846666666667,5.7308,3.3022733333333334,3.5145,3.6819333333333333,6.35405,9.07784975,4.3899159999999995,1.20496875,2.156915,2.29287,3.581955,2.587245,4.15579,5.0281,3.5950666666666664,2.8079966666666665,4.55932,3.946355,3.63347,3.22087,2.10112,3.12657,5.2505,5.4013,3.1454166666666663,1.8637675,2.13813,14.556600703962705,0.5334318181818182,1.4669175,1.4669175,2.1838966666666666,4.110386666666667,4.29676,4.660555,4.13814,2.939725,4.006455,2.85304,4.04172,2.85304,3.37497,1.8568300000000002,1.43037,5.59985,2.275725,4.67301,3.14202,2.646825,6.67234,1.96962,4.930005,5.37105,3.78852,4.09027,4.821145,1.995954,4.816675,3.5761025,6.9332666666666665,5.633601666666666,2.3228175,4.102305,4.69212,2.051045,3.0209533333333334,3.8371,0.5425128571428571,3.205033333333333,9.956813333333333,4.840245,4.791295,5.35905,3.4742125,3.08234,1.3474000000000002,4.534515,5.42845,3.07646,2.62321,5.092,3.50334,4.07063,4.473715,2.2961375,2.2961375,3.90748,2.88111,2.8611506818181818,2.178455,4.589155,3.91688,1.3172714285714286,4.10228,4.69456,2.859,7.990225000000001,8.43738,1.4605700000000001,4.24266,4.699015,6.6902919999999995,0.913974,7.52122,3.6022658333333335,0.6760090909090909,5.36165,5.38325,5.43705,4.32141,4.81651,4.66422,4.96645,4.38255,4.364325,5.19845,4.140265,5.5343,4.967085,3.73099,3.724655,4.205,2.825175,0.8581810000000001,4.36684,2.412245,1.637045,4.35849,5.32705,5.2998,1.0211885714285713,4.98138,3.0057,2.6126633333333333,2.2262975,1.1744666666666668,11.327511666666666,3.285076666666667,3.07545,2.6700133333333333,3.639232857142857,5.541813333333334,6.132106666666667,2.562143333333333,1.9579766666666665,2.17682,2.17682,2.17682,1.3750666666666669,3.357615,3.60874,3.21808,4.730035,8.137205000000002,4.29468,1.091248,2.340815,3.36965,3.918955,1.809056,3.76783,2.56073,1.3782633333333332,3.20963,6.917821428571428,7.6370175,4.63258,3.90217,3.4157666666666664,5.22525,4.411615,5.351778333333334,1.87197,1.87197,4.709485,3.7392,2.878953666666667,2.878953666666667,3.884615,1.05941,5.1335,3.42985,4.132925,4.54539,4.75734,3.1251333333333338,0.9880185714285714,4.356055,5.54715,4.551565,4.71292,5.14005,4.92882,4.50877,1.790655,1.438585,3.17092,3.87093,3.33676,4.23494,1.943295,4.00445,4.48388,2.60568,5.0137,8.398185,2.4118375,2.954563333333333,4.472210952380952,4.861511666666667,1.47227,2.097501428571429,0.9775200000000001,2.097501428571429,2.02345,2.02345,1.45804,4.790595,3.18799,4.233725,2.480995,3.708535,1.5590849999999998,5.51965,3.01861,1.6726725,2.72644,4.613065,3.485195,6.115137000000001,4.80449,1.1928100000000001,0.804105,3.535705,6.071338333333333,2.2922866666666666,3.48904,3.292195,3.292195,2.327705,3.31516,3.152185,1.4117232467532468,2.981453333333333,3.84515,3.253385,4.60992,3.91768,1.544765,3.28536,4.95141,4.253465,5.09365,4.139265,2.028125,2.028185,1.35516,2.560625,3.80499,1.866195,4.332235,3.423133333333333,2.867515,4.11224,4.843205,2.190205,1.075852,1.7947366666666669,1.3202225,1.2476,4.73505,4.228675,1.33066,0.1640495652173913,0.1640495652173913,0.1640495652173913,3.63554,5.984545,4.589175,5.08305,2.996205,3.58991,4.9531,4.269085,2.77266,3.32384,1.5754225,4.60956,4.114215,3.987515,4.671145,4.35741,0.8214363636363636,0.8214363636363636,0.8214363636363636,0.8214363636363636,0.840412,0.840412,4.116425,4.698855,3.730335,2.667945,2.41553,4.27009,4.582985,5.316,4.210935,2.78978,2.441593333333333,10.0089,1.7841159999999998,1.7841159999999998,4.81633,5.4567,3.26699,0.48293125,0.48293125,0.48293125,0.48293125,0.48293125,0.48293125,5.031786666666667,5.0499,3.39801,4.43871,2.5591625000000002,2.5591625000000002,2.561655,3.0997723333333336,2.8061000000000003,3.51191,4.28162,7.270073666666667,1.396518,5.1312,4.1728,4.210995,11.166438333333334,2.9114766666666667,3.06354,0.9442557142857143,2.355655,4.652835,4.03246,1.22338625,2.9900466666666667,4.73416,5.6066,2.706,4.856805138888889,0.9915855555555555,2.0917766666666666,4.70394,4.925955,3.308184,2.942043333333333,2.6213933333333332,1.4967016666666666,8.384121666666667,3.361,2.4092433333333334,2.931515,2.86631,5.0454,4.008875,2.7172300000000003,3.2058466666666665,6.2088,1.5171483333333333,4.71988,5.11185,3.9935,4.00166,2.3855366666666664,5.2083,3.73921,3.691075,2.723985,4.61262,4.790675,2.913206666666667,1.88631,2.8909000000000002,2.6633533333333332,2.7201866666666668,0.8307681818181819,2.1998175,8.388427499999999,0.490288125,3.1602566666666667,1.6297766666666667,2.4959000000000002,3.271153333333333,3.0209766666666664,1.2564333333333333,1.78588,2.63488,2.1539625,3.646035,2.05348,3.11547,1.6368966666666667,3.227902,2.199405,1.0563842857142858,3.119453333333333,2.313355,2.3253333333333335,2.7006333333333337,2.9831533333333335,3.231533333333333,3.3197233333333336,3.2241233333333335,3.1260399999999997,2.6747666666666667,2.802543333333333,2.23826,1.80729,2.37433,2.8396500000000002,1.5649233333333334,2.9428433333333337,3.7783042857142863,2.8582933333333336,2.9103066666666666,2.8204166666666666,3.7227,4.914375,3.0622666666666665,1.687672857142857,1.687672857142857,2.22191,1.120825,2.6716,3.3444216666666664,4.510055416666667,2.684925,2.017415,2.2050025,2.1055675,3.731895,2.96259,4.230125,4.730755,1.74982,2.37163,3.7871,1.246678,1.246678,2.57605,0.6649615384615385,2.908530769230769,2.122535,2.122535,2.8781199999999996,2.4263233333333334,2.6339200000000003,2.6441316666666665,2.45727,6.057526666666667,3.834555,3.834555,3.76007,3.16981,2.33568,3.18015,2.496245,2.94389,5.0047075,0.5116858333333333,0.667961,4.140845,3.087555,2.788675,6.516593333333333,3.58468,1.661832,4.4064749999999995,4.448665,4.683855,4.486215,5.4958,4.713425,13.2603685,3.43705,1.6421566666666667,2.702235,3.719245,5.51425,3.814045,4.242235,4.41222,3.56545,3.12154,2.781446666666667,3.280425,3.00435,2.32481,2.32481,3.96206,2.566465,3.179565,3.595175,2.34699,2.47703,2.09008,1.8878575,1.9686625,1.7828125,1.7843575,4.069710000000001,3.32707,2.5678,6.1332325,4.464545,2.314416666666667,1.84063,3.285155,3.79922,4.0566,3.095971875,3.419075,3.01697,4.14872,3.3908,3.62469,3.765985,3.51079,3.28876,0.6442566666666667,0.6442566666666667,0.6442566666666667,3.2654,2.46008,5.49175,5.0505,3.69715,7.846224444444445,2.938446666666667,0.4494461538461539,5.34095,0.750481,4.325230476190477,1.848865,3.8954,1.822615,4.75217,5.793833333333334,4.55249,4.367165,2.7954166666666667,2.9453833333333335,1.5135883333333335,2.38494,0.5328736842105263,0.5706394117647059,3.0057733333333334,1.4541899999999999,2.018675,3.701055,2.534375,5.36745,2.69365,2.8944033333333334,3.425235,5.24906,2.1300625,1.0078757142857142,2.43411,3.41561,1.3374908441558442,4.968185,3.682945,3.957845,2.72179,4.708625,3.5583666666666667,2.60122,2.7329399999999997,2.20998,2.9078199999999996,2.27905,3.15114,2.3356233333333334,5.706800666666666,2.2997425,1.9072333333333333,2.5450466666666665,4.953786666666667,3.217148,3.217148,2.2700533333333333,3.97691,2.26751,3.963925,2.933135,0.604834,4.406055,2.1026325,11.596629444444446,7.07269,3.02964,3.16997,3.3731,5.06373,2.70962,3.843265,0.25001066666666666,1.92495,3.8936666666666664,0.8462333333333333,3.87208,1.435057142857143,4.962905,3.322355,3.428615,3.85018,3.939675,2.35704,4.71098,3.785965,4.63639,6.86932,3.81398,3.2354366666666667,3.0326833333333334,1.6284500000000002,1.96882,4.35353,4.88022,4.2409324999999995,2.408935,3.581645,1.490616,2.817225,2.28177,3.9543,10.701196666666666,3.55605,6.095836666666667,3.85597,4.89722,0.9995666666666667,4.853642000000001,5.0094,2.534666666666667,2.8061933333333333,3.5373,2.8333999999999997,2.32009,1.64534,1.90661,3.877285,1.6883780000000002,2.7871166666666665,5.0768379999999995,2.7476333333333334,1.1519903571428571,1.1519903571428571,3.5243,3.1491675,3.1491675,3.6740999999999997,3.085836666666667,3.205720256410256,3.773433333333333,3.199363333333333,2.56744,2.1762566666666667,2.2746999999999997,2.997503333333333,2.19233,2.70375,1.598602,5.695012,10.368322333333332,0.6016592307692308,0.6016592307692308,0.6016592307692308,0.7406521853146854,0.7406521853146854,0.6016592307692308,3.6291666666666664,2.913843333333333,4.326478333333334,1.507745,1.731285,3.291784,2.3037233333333336,2.93686,2.2001766666666667,3.07823,3.7170666666666663,6.819605,3.0495900000000002,2.566946666666667,3.6077,4.61399,3.0091066666666664,3.3653666666666666,4.93852,2.3096866666666664,3.4073666666666664,1.3458433333333335,1.3458433333333335,2.5821533333333333,0.4955357894736842,3.193583333333333,2.7172699999999996,3.00897,3.631133333333333,2.25124,1.4579866666666668,2.6858633333333333,2.9432466666666666,2.1704333333333334,4.86842,2.6334963333333334,3.658565,2.532815,4.64041,0.567341,8.968466666666666,3.083728,3.083728,7.80783,1.8275466666666667,2.74408,3.0390566666666667,4.596075,2.3208233333333332,1.9282066666666668,2.6003966666666667,1.3389,3.3053399999999997,1.6661400000000002,2.94908,1.3582225,0.2628754545454546,0.2628754545454546,5.15515,4.101275,3.852775,2.9932533333333335,3.11767,3.798205,1.15618,6.32585,3.59798,2.78665,1.9109075,1.4094266666666666,1.941835,3.0390566666666667,2.445115,2.09467,6.501995,5.9661,4.397015,4.892185,2.203815,0.6613525,7.5810325,2.151465,1.4957825,3.4291,4.702155,2.030225,1.7982666666666667,4.49641,4.445105,3.560966666666667,3.2666,4.57838,4.301655,3.661633333333333,2.601948,2.601948,4.191305,4.763015,6.20905,6.827566666666667,2.81148,3.906735,1.3318942857142857,2.12375,3.6659786666666667,3.757655,1.7323920000000002,3.60916,3.4472699999999996,4.22706,2.1193,4.3799,5.1985,5.59855,4.732725,2.26947,2.5241599999999997,3.666066666666667,2.00269,2.4507275,3.400533333333333,2.2251866666666666,0.8761369999999999,1.94471,2.6685166666666666,2.3503153333333335,4.87165,5.06555,5.11635,4.136135,4.08813,5.331935,11.740395,5.72045,4.82761,4.609915,3.98866,4.81558,2.6324033333333334,3.263954666666667,3.6972666666666663,1.2678875,2.713965,2.793515,4.948935,5.7869,4.75716,3.340733333333333,2.4418633333333335,2.4379933333333335,4.145533333333334,4.1879425,3.5345333333333335,4.1879425,2.58235,2.2287066666666666,2.3190933333333335,2.50685,2.9432066666666667,1.77503,0.8074383333333334,1.4205816666666669,1.64382,2.20213,1.5142133333333332,1.28846,1.6533,2.55173,1.473336,3.280116666666667,1.37787,1.5770466666666667,3.74112,2.122263333333333,2.5471566666666665,2.5401666666666665,2.3836733333333333,3.118545,2.19732,2.734336666666667,2.927046666666667,2.4719233333333333,3.0250033333333337,3.033935,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,0.14135806451612903,4.79882,4.03635,1.0082371428571428,3.1621433333333333,2.5527866666666665,3.0294166666666666,3.377215,2.5738066666666666,4.515415,3.7159386666666663,1.678316,3.6128,1.6895166666666668,1.02918125,1.0309300000000001,1.28077,1.2077916666666666,0.8158325,1.299164,3.180635,1.8578160000000001,1.6688833333333333,1.8298961111111112,2.406563888888889,1.1494833333333332,1.3737233333333334,1.4230383333333334,0.89515,1.25192,0.7196916666666667,0.91647,3.081215,3.47635,4.0539,4.42003,4.098705,3.1245700000000003,4.60697,3.8677333333333332,2.0344975,3.49836,2.046725,3.414505,2.6244833333333335,0.8160000000000001,4.379765,4.935325,1.9751033333333332,1.2371375,2.78578,3.3259,3.6597925,2.8494966666666666,2.402115,0.97835625,2.0638475,5.1166975,3.84833,2.42774,1.4990766666666666,3.64264,2.0361825,0.7158363636363636,4.583,3.739065,4.324425,2.365905,1.3667859999999998,4.117195,4.333905,2.4997933333333333,2.6077966666666668,2.48325,2.5890033333333333,2.6521433333333335,2.838623333333333,3.3398,1.3070125,2.75085,2.65895,5.37645,4.578215,3.693235,4.547275,16.17018793181818,4.3539925,4.511015333333334,2.768875,3.976875,5.04275,1.609518,2.26097,2.2987699999999998,5.89231,3.9837,3.873245,4.706435,2.2987699999999998,3.90732,2.01453,2.5139833333333335,2.8728033333333336,2.77718,1.33001,4.563325,4.118765,2.42624,4.18344,2.14735,3.0194733333333335,3.6022,3.048355,5.7915,4.589275,2.59766,3.42298,2.693895,2.65173,1.701,1.701,2.159996666666667,2.0690933333333335,0.23573142857142856,5.668749,1.135384,3.94099,4.016125,0.553,4.548905,8.407246666666667,1.8108375,3.54399,3.92239,2.37815,3.09342,2.260605,2.93367,3.47905,3.970875,3.124955,3.947566666666667,0.9602499999999999,11.712854666666667,2.82142,2.853115,3.936675,2.543945,3.89896,8.080926666666667,4.475915,4.37172,4.42253,4.44249,5.6424125,1.6506325,3.3364666666666665,4.656125,3.9011,1.88828,3.72726,3.77875,3.567415,3.84378,4.933265,3.961665,2.4822783333333334,3.680475,3.94575,5.33495,3.38726,2.394136666666667,2.3749566666666664,2.07162,2.9723900000000003,1.2623733333333333,3.3876333333333335,0.8058209090909091,3.4428666666666667,3.0986666666666665,2.5609733333333335,1.5903033333333332,4.34479,4.549415,4.032605,1.812565,4.83873,4.094555,0.6884217692307693,0.32336576923076926,4.378555,3.92845,1.054225,0.32336576923076926,3.28201,0.6884217692307693,0.6884217692307693,0.32336576923076926,5.767776666666666,2.5985566666666666,2.5279966666666667,5.43765,4.10985,2.994905,0.7870355555555555,3.488995,3.802195,4.488755,5.50765,2.321415,0.7566207692307692,4.332929166666666,2.3929066666666667,1.517268,2.0109325,1.0847628571428571,2.59561,2.4713966666666667,3.72023,5.12205,3.4539333333333335,3.6977666666666664,3.122116666666667,2.56752,2.820485,4.0148775,1.516585,1.837735,3.870925,5.57595,2.187125,5.33555,2.757345,4.03626,4.121025,3.043615,1.2429175,3.05097,5.80225,3.843345,3.317015,4.86296,5.46935,2.850455,4.844195,4.503185,3.12296,3.24087,7.88899,3.73801,4.6647175,2.192725,1.3305475,2.5757566666666665,2.03902,2.10103,1.804835,4.403615,0.713025,3.698905,4.3036,1.8077366666666668,2.9234566666666666,5.3115,3.17201,3.42957,4.58805,5.5589,10.160038,2.97876,2.994813333333333,1.687136,1.7187666666666666,1.2298466666666668,1.3550166666666668,2.9471900000000004,2.4538100000000003,3.117153333333333,4.294681987179487,1.4295525,2.3031633333333335,4.998845,5.4177,3.92784,3.31436,2.97859,2.310585,2.073945,2.203485,1.8074766666666668,2.153195,3.23288,3.742295,5.0953,5.17245,4.074915,5.7973275,3.130985,2.54612,6.567375,3.78561,7.93554,4.95665,4.95665,5.497366666666666,1.6157933333333334,1.3076925,1.2473966666666667,0.72645,5.05985,3.7367333333333335,3.5401875,3.5401875,1.8721340000000002,4.374525,4.51893,4.53422,4.529085,2.83741,2.58338,4.288555,3.0731,4.97239,3.950025,0.7947172727272727,5.8634,5.18595,5.0708,5.3701,2.972075,5.17285,4.640825,0.8473999999999999,4.977855,6.612111666666666,3.44891,5.37715,5.8574,3.33803,2.53425,4.006155,6.155,2.030745,5.78765,1.9197125,4.453525,2.8636466666666665,1.857245,0.955865,3.5387,5.6384,3.236945,4.13927,1.9726366666666666,4.003045,7.730123333333333,3.43344,3.997695,2.557705,2.660905,0.907081,5.1054,1.5018633333333333,3.5338483333333333,3.5338483333333333,3.83789,2.212763333333333,3.242103333333333,4.22462,1.892095,2.9123433333333337,3.3958,3.3737333333333335,2.894185,3.845865,2.465535,1.752055,3.558,2.1768325,2.8536333333333332,2.06302,2.970133333333333,2.9281400000000004,1.3338828571428571,1.3110766666666667,0.43026666666666663,1.2647916666666668,0.43026666666666663,0.43026666666666663,1.3110766666666667,0.43026666666666663,3.3770333333333333,2.8407419999999997,2.8407419999999997,3.0271233333333334,5.53245,4.88637,4.66851,5.53055,4.82289,3.427325,4.328065,4.430225,2.09656,2.4233595,2.8139366666666668,0.7583081818181818,5.47315,3.1317299999999997,3.1055266666666665,5.55645,3.5876425000000003,5.0957,3.38314,2.4671,2.969835,3.347785,2.3218833333333335,2.84079,1.9528400000000001,5.41785,0.8863788888888888,4.30733,1.2285857142857142,3.43928,3.0385899999999997,3.0007800000000002,4.223625,4.713985,4.165835,4.600305,3.966115,4.185915,4.52282,4.07588,2.610175,2.820275,3.9012333333333333,4.157435,5.23395,4.241265,2.72284,3.225225,3.149596666666667,3.11721,3.84691,4.79998,4.16877,68.0571312320596,2.6817466666666663,3.417315,16.369923666666665,3.987025,2.9634766666666668,2.1953733333333334,1.9086833333333333,2.265433333333333,5.02,2.9559766666666665,4.873925,6.3827,2.90828,7.82627,5.0375,2.305215,3.068585,3.876245,3.511985,1.8665220000000002,1.21945625,4.553135,2.970425,5.835568333333333,3.464655,2.26051,3.344895,3.61863,4.48986,3.152575,5.4059225,4.407195,3.574445,3.6631,2.307285,2.75269,5.61945,2.843415,4.26543,4.384147083333334,1.1310033333333334,2.87289,5.17993,4.087265,3.970895,3.51982,3.029625,4.150215,3.009575,3.929995,3.72446,4.31219,3.558655,3.093875,4.4295,9.6723,3.1709599999999996,3.99281,5.89862,3.13046,2.8771,3.987504375,1.9037866666666667,2.83091,2.967102,3.54511,3.15832,3.45931,3.646355,3.3462,3.982745,3.76028,4.030495,3.735585,3.79999,3.50997,3.2158566666666664,3.2158566666666664,6.514046666666667,1.84639,3.586515,3.34954,2.447035,5.1012,4.13355,2.960425,2.795975,4.04537,7.34845,0.6871409090909091,3.611075,2.44177,2.90706,2.67899,5.2365,2.8074666666666666,2.014365,1.21607125,2.1154039393939392,4.069625,4.22979,4.117285,6.17095,3.791085,6.0453,2.372675,1.7055833333333332,5.1226,3.84451,3.0698600000000003,2.080573333333333,1.28891,2.4193933333333333,3.246423333333333,1.636352,2.4888266666666667,2.442236285714286,3.749252912087912,2.660355,4.986765,3.29773,1.4539575,4.07884,3.4725,4.91895,5.09625,4.577505,4.43896,1.8790466666666665,1.4181266666666668,0.6307028571428572,1.5078866666666666,3.60208,2.459645,3.5201133333333336,1.3912333333333333,2.487705,2.241805,3.320805,3.409315,3.67563,4.006579166666667,1.542415,1.3628675,1.844185,1.9983875,1.3792775,2.594475,6.96523275,4.98135,4.365085,2.77041,7.46483,4.700515,3.13039,3.01448,3.244285,2.57929,3.84774,2.1915733333333334,7.0465,0.8855066666666667,3.169015,6.09605,3.91989,4.63356,5.1033,1.5662266666666669,3.2945433333333334,2.8420366666666665,2.9664266666666665,1.787655,4.01449,8.54479,3.589075,4.443375,4.075695,3.645855,4.681695,0.8756666666666666,2.6683333333333334,5.29725,6.704513333333333,4.160615,5.45565,2.92092,3.7926,2.8213233333333334,5.31015,4.9512,4.0812351428571425,4.0812351428571425,0.6487071428571428,3.6321666666666665,0.933368,0.60346,1.9641975,3.7180666666666666,4.78992,6.439934285714285,3.8407999999999998,3.773194285714286,3.692027619047619,3.382733333333333,3.136316666666667,4.611766666666667,3.495328333333333,1.930645,1.930645,3.69807,3.01564,2.6817933333333333,4.25011,3.4071,0.7112022222222223,3.3107466666666667,2.559553333333333,3.0724633333333333,2.76122,2.5784,2.56738,3.338233333333333,3.2249833333333338,0.860891,2.630873333333333,6.7513458095238095,2.30474,7.64796,1.662902,1.662902,3.6543329166666667,3.2438266666666666,3.6257,3.2732766666666664,1.8695160000000002,1.3748328571428572,3.24737,3.17773,1.6874666666666667,1.3963185714285713,2.8653600000000004,2.692272,2.8494266666666666,2.01784,2.0412175,2.85719,2.089175,2.679145,3.24736,1.72327,3.52361,2.993725,6.725068,4.627605,1.6834325,3.70934,3.17144,2.123785,3.79685,2.5608299999999997,2.63227,7.19453,0.7584823076923077,0.5628675,4.948765,1.593342,1.593342,4.136765,2.4483275,4.712135,3.528745,1.2689833333333334,2.4430266666666665,2.7479866666666664,2.390965,4.84963,2.68209,3.0325666666666664,2.3642533333333335,1.524812857142857,1.524812857142857,2.1499900000000003,3.84559,3.8024,4.05999,3.486133333333333,5.49445,5.18375,7.0574,5.42575,2.51716,2.7042,2.6220166666666667,2.574316666666667,0.7163288888888889,0.7163288888888889,0.7163288888888889,2.9756,4.48991,4.58136,1.3762725,1.3762725,5.5497,6.6716,7.40581,22.901242555555555,13.2335,8.44488,4.0674,6.18175,2.5343,5.01425,2.52747,3.486466666666667,4.447333333333334,5.498902,1.982105,1.83832,7.2841,2.17546,2.17546,6.9811,3.90164,4.71636,1.79072,4.773130500000001,4.945295,4.87234,5.62165,4.12701,1.2446133333333333,6.4446,9.59333,1.2446133333333333,1.79072,1.96362,0.736646,0.736646,1.795512,2.3916766666666667,1.795512,5.2661,6.20305,6.6765,10.4671,1.79072,11.911716166666666,6.6378,6.604,2.5343,3.599535,4.94434,9.45615,3.038244166666667,4.56985,6.0317,3.6433,5.57055,6.80495,5.32315,5.57475,4.7743,2.61848,5.55795,3.885,4.467575,4.19091,0.76885375,1.529166,2.724685,5.79215,5.11715,2.7476333333333334,1.8576575,4.45648,4.935135,5.97025,5.3287,5.36,4.29432,3.046675,4.199805,3.626,2.0340725,4.8856275,1.93429,2.48623,3.921495,1.9581566666666665,3.901685,4.291825,3.60376,3.6030366666666667,2.951775,6.421331666666666,0.9497444444444445,3.39604,3.917535,1.4575714285714285,5.820271,1.7068833333333335,1.7729799999999998,2.9652733333333336,2.8634295,3.2256433333333336,2.8706866666666664,2.048725,0.7367818181818181,2.47556,2.521335,3.935835,0.7140746153846155,6.056691666666667,1.7493666666666667,1.176676,3.0956499999999996,1.176676,3.795,0.9422181818181818,4.342985,3.164213333333333,1.79738,3.797087,3.601917,3.601917,4.446045,2.646325,3.1730399999999994,2.591063333333333,1.638786,3.79642,3.248615,1.9712533333333333,0.7585125,7.457284615384616,2.633205,3.51292,4.228435,7.35953,2.511425,3.93375,3.749265,3.112415,3.860515,5.5325,6.427322500000001,4.20099,4.991805,5.3469,3.260643333333333,4.48927,4.045115,4.618665,1.1094355555555557,0.48680214285714285,3.32792,3.3950666666666667,3.0437133333333333,5.69695,3.803795,4.34004,5.22185,5.2051,4.046045,4.37151,1.23046,2.26859,9.24145,2.2205966666666668,1.9487233333333334,3.5685990476190477,12.608213373015873,1.4801375,4.828365,5.78745,4.812315,3.1656366666666664,2.2680266666666666,3.227373333333333,4.13588,1.1215683333333333,3.474466666666667,3.47076,0.46580315789473686,2.2632833333333333,4.924225,4.16829,2.108795,4.15187,3.3217,4.82838,1.24424,0.6096127272727272,3.58414,1.2380942857142858,1.00425875,1.00425875,1.00425875,1.00425875,1.3584466666666666,2.7840866666666666,2.2978466666666666,2.75098,5.2047,3.651733333333333,5.04085,3.07033,4.2955,3.378315,3.868125,1.4034133333333332,7.6635800000000005,2.664035,5.07315,5.478496666666667,4.739435,5.062218333333333,3.3671666666666664,2.5449966666666666,2.597443333333333,3.91411,1.2203633333333335,4.89912,2.50515,4.9629,2.8964933333333334,2.5012233333333334,3.670925,3.915375,3.22382,2.4596966666666664,2.6612433333333336,1.4282725,0.4787133333333333,4.711375,3.383875,4.110235,3.1747,3.800165,5.7571,4.654875,0.51731,3.40596,7.369956666666667,1.9260166666666667,2.03798,5.905196666666667,4.54687,2.76872,4.94488,5.0927,4.27275,5.08295,4.252145,4.91258,5.1927,5.0591,3.471655,5.398996499999999,1.627622,1.7078499999999999,4.222955,3.815765,4.836455,3.184435,5.13135,4.471605,3.75937,3.273525,16.10994192247515,1.3525625936329586,1.2579875,2.094303863636364,0.533000625,0.47503666666666666,1.427125,0.31275,1.38147,3.5256666666666665,1.4422760000000001,1.0276750000000001,1.06102375,0.4185425,1.06102375,1.06102375,0.4185425,0.822123076923077,0.6396814285714285,2.68949,2.86776,4.6851,4.98153,2.76725,2.645325,4.447605,4.81454,5.55125,3.288785,4.796015,0.7101971428571429,2.3504753333333337,8.386361666666666,5.22735,6.834078333333332,2.72769,3.89138,2.32129,5.0468,5.08815,3.02372,3.910575,3.11297,0.9847483333333332,4.708015,5.24225,0.9274979999999999,1.3921379999999999,1.6228383333333334,2.2910566666666665,2.5727933333333333,4.065455,5.07215,2.31375,2.31375,3.5043980555555554,6.34958,2.0948366666666667,0.6346572727272727,0.7335585714285714,2.2061699999999997,3.5186333333333333,1.09392,1.09392,1.09392,0.3609515384615385,1.07796,3.13155,6.08925,4.044933333333334,4.3732283333333335,5.5805,1.12621,3.4629666666666665,3.4791666666666665,4.016066666666666,5.9513,3.08399,7.727983333333334,5.35765,1.2055777777777776,3.9661000000000004,1.9318339999999998,2.830115,2.2749433333333333,6.288516666666666,2.8115566666666667,4.5282,2.0625125,3.949525,4.527125,4.354475,0.43676611111111113,1.99916,1.3682400000000001,2.38748,3.984233333333333,1.9596866666666666,2.63679,2.4229166666666666,2.5363933333333333,2.52655,2.762513333333333,2.818823333333333,3.4304333333333332,1.3805999999999998,2.24497,2.511913333333333,2.706823333333333,2.5910800000000003,1.97526,1.7678733333333332,1.86083,1.8373,3.27994,2.221363333333333,2.5790833333333336,2.1556333333333333,2.3772800000000003,2.6724666666666668,0.7855622222222222,0.7855622222222222,0.7855622222222222,2.577033333333333,2.5317933333333333,2.9043233333333336,3.371233333333333,2.7441166666666668,1.8042033333333334,4.15347,3.600905,1.368595,2.69856,2.83957,3.31447,1.6230428571428572,6.956065,4.722095,3.088235,3.917295,3.801105,1.795955,0.6264335714285715,3.686415,3.599555,3.31447,4.623215,4.348625,5.1334,2.9004033333333332,4.11664,4.18259,0.836235,3.07935,3.30311,5.000399166666666,4.74558,3.447845,2.763155,2.518815,2.4544099999999998,2.5236933333333336,0.6205458333333334,5.512427083333334,2.4949575,4.370295,2.76374,3.743673333333333,2.8543266666666667,2.3341266666666667,2.936463,2.936463,2.5189366666666664,2.0815033333333335,2.6793366666666665,1.8980266666666665,4.11621,1.4336959999999999,2.719295,3.60383,4.20759,3.811565,5.11505,4.63096,2.42839,2.117275,3.2043,2.878705,2.983235,4.835495,3.07301,0.9365971428571429,0.9365971428571429,4.621385,3.824601,0.9642160000000001,4.360795,0.9642160000000001,4.361175,4.1604,5.2179,3.56101,3.34309,6.4758675,4.082989166666667,5.9368,0.9104571428571429,0.9104571428571429,2.21178,4.699426666666667,1.5422766666666667,3.15715,3.83868,1.0856528571428572,4.40665,4.109995,5.794425,5.794425,1.2146783333333333,4.441085,4.97994,4.89121,6.0891,2.0253425,2.0253425,6.99815,1.0255181818181818,7.0163,1.824125,5.920415,2.546155,2.3985499999999997,3.24156,1.517824,1.96631,2.8717433333333333,2.9637933333333333,2.6215599999999997,6.9495450000000005,1.938964,5.3342,3.2540566666666666,2.75666,1.67551,2.2306,2.970455,3.43606,3.404075,2.767195,2.239275,2.246315,2.565645,1.051326,3.055215,2.005705,3.06593,1.9257994999999999,1.9257994999999999,2.9646,2.1282200000000002,3.757175,3.58955,5.2534,7.877706666666667,4.23611,3.34821,6.4095505,2.247596666666667,3.2975088888888893,2.15722,1.462042857142857,1.6866175,4.146085,1.6429133333333334,0.493735625,0.6530766666666666,4.057705,4.342125,3.108555,1.0473533333333334,3.03038,2.3436033333333333,4.832425,2.0274,1.84495,1.2220666666666666,4.84488,2.48496,4.21307,0.637291,4.42092,4.376245,4.00138,4.198235,3.3022,3.792715,3.288406666666667,5.3024,3.37461,2.656633333333333,2.69194,6.016685,7.0559025,0.8055525,4.939155,4.49339,5.1682,3.599933333333333,3.6443333333333334,2.853825,3.5072666666666668,3.5594333333333332,5.7512325,2.692272,2.4031195000000003,3.70877,3.846025,2.45283,2.3966175,8.305026666666667,4.572405,1.7986333333333333,5.48815,4.34344,1.832266,3.866355,1.4338125,1.4890285714285714,4.619005,3.86738,5.71305,2.8646833333333332,3.602745,3.868845,5.6366,4.05563,4.19597,3.545525,4.35475,4.065685,4.138809999999999,1.0401531538461537,1.0401531538461537,7.89621,0.7758675,1.8769352182539683,0.7758675,0.734765,0.3599411111111111,2.611700218253968,2.16703,0.5446728571428572,1.8769352182539683,1.887745,3.182555,2.067027361111111,3.486685,4.54023,7.29894,1.914935,2.076535,2.50979,5.12315,5.58895,2.08096,1.685805,1.071665,2.75747,4.191385,2.385005,4.63202,6.38266,0.5218033333333333,4.04576,0.8340249999999999,3.03309,2.71855,4.210395,1.2999466666666668,4.22837,4.857735,4.64943,3.41607,4.555085,5.87779,1.9207,3.60782,0.7650346153846154,3.34028,2.93596,1.213102,2.889553333333333,2.3846700000000003,2.480663333333333,3.792755,10.470189999999999,3.546520303030303,3.626275,3.27293,8.407969999999999,5.6054433333333336,3.345266666666667,3.930775,3.43441,5.87575,6.17405,5.9842,5.4026,4.239395,5.9543,3.6359666666666666,1.36978,1.9057033333333333,2.53592,4.13213,2.36808,0.2445810810810811,0.2445810810810811,0.2445810810810811,31.397140595238096,0.2445810810810811,2.792256081081081,0.2445810810810811,0.2445810810810811,0.2445810810810811,3.353861081081081,4.293195,0.2445810810810811,0.2445810810810811,0.2445810810810811,0.2445810810810811,0.2445810810810811,3.53482,4.94521,3.24483,0.3152589743589744,0.3152589743589744,4.062430666666667,4.22737425,4.300552916666666,3.6754768055555553,4.296934761904762,8.058533333333333,11.016420233877234,6.539788,8.136823333333334,6.597576464285714,2.5821533333333333,6.297848571428572,4.584251666666667,4.7008190705128206,0.3152589743589744,7.771363666666667,6.8984541904761905,6.658205,1.9013375,9.064091464285713,15.91608255952381,18.522849372710624,55.634223060704,118.61948323516843,1.3458433333333335,3.4073666666666664,2.8796,3.9098628738738737,0.3152589743589744,1.7187061538461539,8.069433333333333,14.251614464285714,20.26039888888889,48.26171753696742,13.01209363095238,2.4259825,0.2768924137931035,0.2768924137931035,4.315456666666667,2.583466666666667,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,0.2768924137931035,7.87351,0.2768924137931035,0.2768924137931035,0.2768924137931035,2.73979,2.3218433333333333,4.27048,3.69952,3.850576666666667,5.58845,2.418135,4.1228,4.89274,2.91914,1.4465000000000001,3.455725,0.9922833333333334,2.187345,2.336063333333333,5.446023333333333,6.138786666666666,2.7917799999999997,5.9823681111111116,0.4094055555555556,0.5253406666666667,2.538816666666667,2.921,2.84632,4.306315,3.1661,7.38217,3.642715,3.13627,3.25757,3.98377,3.33655,3.02795,4.751155,2.19436,0.46010538461538464,0.8642618181818182,4.50922,1.9161775,3.68136,3.634175,4.469635,3.83385,2.360975,2.785685,0.5741726666666668,0.784602,4.168665,2.53075,4.05693,3.81152,4.7144200000000005,2.65342,3.051095,3.69533,4.62269,3.219285,0.8916463636363635,3.4807333333333332,4.825515,2.196665,0.914495,1.7413800000000001,3.931155,3.889595,1.854135,3.155575,3.874755,4.489125,2.431855,2.504086666666667,3.144095,4.08107,2.698895,3.78518,0.7697128571428572,2.283256666666667,3.226875,1.99281,6.0156833333333335,3.97011,4.361095,4.85275,2.846995,2.00712,0.6391809090909091,4.941725,3.887295,4.157545,2.45497,4.754825,3.89843,2.80542,1.9603058333333334,1.3140657142857144,4.594265,2.070255,2.68742,8.915995,4.23984,5.2186,3.490635,0.9665544444444445,3.02395,1.1583542857142857,3.24624,6.40735,5.6352,5.06835,4.25139,5.1469,4.32635,1.9234925,2.01475,5.4162,3.3099399999999997,3.5790666666666664,2.352905,4.954155,5.02005,1.4850716666666666,3.4690666666666665,2.73817,2.743375,3.58548,9.41905,4.337315,1.62121,4.629855,6.1026,4.3299725,4.01959,4.07833,4.444215,5.2369,9.211604999999999,2.3531133333333334,3.33216,3.846455,4.59228,2.55994,3.06326,5.12925,4.07862,3.67224,4.295084,19.546795333333336,2.9944900000000003,2.58942,3.3889333333333336,5.846591999999999,1.02833375,4.55226,1.9320075,4.98588,1.574685,4.34425,4.31103,4.04577,1.00930875,4.614635,4.705435,1.5323775,5.078897803030303,4.52956,1.1103,3.529535,1.854735,2.3126,1.65689,4.15146,3.775775,4.23625,3.462635,3.1027466666666665,4.462145,7.853811666666667,4.617715,4.772415,5.4976,3.4790666666666668,4.46368,5.13025,7.020167,0.942924,0.942924,4.455445,4.89885,2.110866666666667,1.5428166666666667,7.879945,4.249975,3.94713,4.135385,4.65727,4.674405,3.426885,3.811105,6.874499999999999,4.464953333333334,4.593415,4.98489,1.4905285714285714,2.836325,4.39826,5.3268,3.74508375,0.17868916666666668,2.45652,2.434225,2.5987666666666667,1.9932666666666667,1.023861111111111,1.4073575,1.324,2.65543,0.6826355555555556,1.3768157142857143,2.1929,3.709445,3.8844999999999996,2.40613,2.8760733333333337,3.0372,2.7468766666666666,0.729772,0.92941,2.992575,4.80519,3.804115,3.40153,4.236975,5.10715,4.61512,2.25256,4.348145,5.43635,4.757305,6.4054975,3.930865,0.47446705882352935,5.31975,4.50381,4.64755,4.85372,3.03632,2.0893,4.43687,4.343,2.592835,5.031956666666666,4.55366,1.4315316666666666,5.031956666666666,4.674125,6.419695,4.008865,1.274788888888889,3.79172,5.28125,4.011965,2.5305633333333333,5.21285,1.4632275,1.9786775,4.57919,3.45254,0.7546344444444445,4.63195,4.63552,4.12644,4.418075,3.17236,3.3489,1.8947340000000001,1.95393,3.109175,3.445625,3.7426666666666666,2.40809,2.63295,2.2265686666666666,4.463075,1.7735857142857143,0.8188322222222222,7.23576,4.209875,1.495936,2.8325566666666666,2.3748533333333333,3.7577,6.537273333333333,2.2962927777777775,0.886145,2.82153,4.787355,2.2868133333333334,4.61099,5.76615,5.38265,4.58596,4.1595,5.23325,2.1310733333333336,2.143683333333333,1.6018966666666667,2.0539333333333336,1.8987875,2.688696666666667,2.21013,1.8194,2.563325,2.968785,3.84991,6.435,5.64345,4.51283,4.525465,3.930145,4.276315,4.373925,0.92286875,2.547076666666667,5.5282,1.13309,0.7325733333333333,4.5872,3.17999,2.4674533333333333,3.62852625,6.786375,3.794365,1.04605,1.2956128571428571,0.6880577777777778,4.021873333333334,2.1813533333333335,2.7006333333333337,1.2247542857142857,3.1602366666666666,2.54598,6.03595,4.926135,4.458395,5.1279,3.893685,1.3150916666666668,3.51653,2.2606566666666668,3.5644,4.400245,3.692605,2.91194,3.28915,2.73877,5.85515,4.070025,3.104785,2.522,8.368625,10.369959999999999,4.11217,1.33104,5.7476,4.412565,5.2583,4.38132,4.118085,3.74104,3.363985,3.94477,3.7550653124999998,6.49615,3.82159,4.40038,4.45954,1.88108,5.3124,5.64545,4.86375,3.16305,3.1521575000000004,6.480555000000001,0.6337516666666666,2.689166666666667,2.6671099999999996,2.27518,5.1164,3.117315,1.4573483333333332,4.601715,3.5633,3.58347,5.04555,3.5387541666666666,6.663125,3.1375233333333337,3.1872233333333333,3.2322733333333336,3.134036666666667,4.10009,2.29515,2.09841,3.077253333333333,3.99913,3.4217520833333332,1.888055,1.531825,3.6005417857142854,3.146238,0.9788211111111111,2.7974683333333332,2.7974683333333332,1.1681525,5.80415,2.830885,3.12158,3.5203,3.57726,3.31669,3.311735,3.202585,3.15242,2.1430766666666665,0.5734626666666667,3.355615,5.56603,3.17623,3.77696,3.129245,3.87373,4.183405,3.17542,2.96056,3.752035,3.857705,2.87167,3.439125,3.22878,2.4909166666666667,3.948185,3.64905,8.47184,3.8631,3.433555,3.50064,3.92019,3.945545,3.549055,2.255185,3.53763,2.41885875,3.6968,2.985985,3.179365,3.83713,1.74081,1.74081,2.11594,2.74875,3.3458,1.54285,2.37622,3.22149,1.9944680000000001,2.67799,1.54285,4.651915,2.84296,3.75809225,2.8216,3.28449,2.204585,3.36924,3.787365,4.375815,3.631245,4.302755,3.61517,4.254225,3.57947,2.998705,3.25534,3.76561,3.822395,2.54678,3.652495,4.52224,3.941565,3.70321,0.38771260869565216,3.589285,0.42990750000000005,3.535695,3.38107,2.917085,3.614585,3.80439,5.950913333333333,3.17481,2.50309,2.2010666666666667,2.7289100000000004,0.854031,6.021835,3.012525,3.288905,5.0948,2.01757,2.656215,3.06505,3.05963,6.54488,4.721165,4.86731,4.12013,4.470455,4.179625,3.816655,1.5798783333333333,1.6727560000000001,4.134205,4.64001,5.56836,2.09859,4.760015,1.7939,3.4904333333333333,3.72151,1.9890454761904763,3.961345,4.612285,3.5008,3.889333333333333,3.1852933333333335,4.35545,4.89469,3.4476999999999998,4.373235,4.65237,4.89397,5.20065,4.417335,4.098275,3.598645,4.69526,2.499615,3.0715533333333336,3.0715533333333336,4.01354,2.5524766666666667,3.92759,2.78036,4.833365,3.4959666666666664,3.51238,1.78623,1.81573,1.1085566666666666,1.1085566666666666,1.852656,3.5449,1.66835,2.82442,4.439985,5.134013,3.4613666666666667,5.14435,5.87657,2.85924,2.863265,3.1511866666666664,1.6653866666666666,3.904575,4.154025,6.392315,1.7670566666666667,5.4443,5.3991,3.327196666666667,3.89706,4.226525,6.65405,2.2281066666666667,2.446775,4.11263,0.4759514285714285,4.753935,3.89319,4.99684,3.648315,4.256,1.78671,1.7667899999999999,3.813035,4.710615,2.331303333333333,3.738515,4.525105,4.62776,1.2224975,3.98869,4.62327,3.930915,5.3006,3.2458899999999997,5.482226666666667,3.625035,1.513656,3.49104,1.188115,2.8363366666666665,8.030436666666667,3.0756,0.8617018181818181,3.46744,4.585025,4.799005,2.2443825,2.2443825,5.217935,5.69,2.847285,0.4931488888888889,2.030765,4.277597500000001,4.547485,4.464695,1.781428,2.9801533333333334,3.45196,1.162767894736842,1.162767894736842,1.162767894736842,0.7751812280701755,1.3401845614035088,0.5650033333333333,1.162767894736842,0.7751812280701755,0.2660378947368421,0.8310412280701753,0.2660378947368421,0.5091433333333334,0.5091433333333334,0.5091433333333334,0.5091433333333334,1.0749683333333333,1.2711375,2.2518,2.270835,1.041835,6.019821666666667,2.550526666666667,6.587758333333333,2.822853333333333,4.4651,2.915805,3.09868,2.7000375,4.587805,2.7164099999999998,4.264755,3.972115,4.973615,2.4231775,4.51095,4.83277,4.04017,3.31075,4.91299,3.20144,4.53141,5.4222,5.0913,6.18715,4.901765,1.2607625,3.35072,3.79589,2.88331,16.36529,4.549465,5.37885,2.7930266666666665,7.21769,3.881025,3.87273,4.252535,3.23071,1.0044975,2.55296,4.37143,4.45132,4.312215,3.100795,4.054285,2.8475300000000003,4.11513,4.68869,4.34139,6.552178333333333,10.121135,1.4755285714285713,3.68283,4.237215,3.801105,4.00701,3.506705,6.80482,2.47973,2.8072,2.564305,3.88042,3.90105,4.791695,2.29991,1.785825,0.9296,5.02795,4.8215,3.960865,4.278975,4.169855,5.0529,4.081175,6.08025,5.17655,3.46571,4.09413,3.588365,3.06913,3.17987,3.389245,1.78893,3.82582,4.25134,4.986075,5.452200833333334,5.452200833333334,2.46814,1.78893,2.264205,3.54056,0.7007066666666667,1.5314616666666667,0.830755,1.5098725,2.67451,0.353953,3.040965,4.346125,1.5098725,3.2203910000000002,11.246870000000001,6.61403,2.3879275,1.12689,1.7701799999999999,4.785595,4.347975,6.115609142857143,1.9085675,2.16178,4.56087,4.57371,5.0802,2.2582366666666664,5.24315,3.6623,3.73159,5.05975,7.194922,3.91996,2.449005,2.743116666666667,1.7670866666666667,4.33423,5.761234999999999,1.6861339999999998,5.47605,4.37217,6.3232,0.6266706666666667,5.019723333333333,4.07559,3.904505,2.93422,2.726445,6.5437,9.399333333333333,6.5472,2.1953333333333336,2.1953333333333336,2.1953333333333336,6.2419,4.834275,6.2197,2.931505,3.40659,2.5422963157894736,3.16878,2.89474,2.5682045000000002,1.79317,2.5682045000000002,6.8624845,4.320926666666667,4.25124761904762,6.63323,4.25124761904762,4.25124761904762,3.1475242857142858,6.19011,5.3117090000000005,2.812194,2.812194,2.540825,5.0386,2.761275,3.57845,5.631594583333333,5.631594583333333,5.631594583333333,7.198065,3.4401225,3.35345,3.4145825,3.37775,1.17246125,6.764276666666667,2.44335,3.719965,3.05159,13.274669333333334,3.91215,5.269950833333333,6.67678,2.5520316666666667,3.330975,1.0973216666666665,5.269950833333333,3.38922,1.6854475,1.6854475,2.927625,5.059855000000001,1.673565,4.651645,0.8347340000000001,1.415385,0.8347340000000001,1.823595,2.508299,5.066429,3.73731,1.415385,2.95581,4.817565,1.12503,3.51151,4.114605,2.015525,3.856195,2.512995,3.04575,2.983995,1.047156,3.540705,2.46727,1.795465,1.5097666666666667,2.9579666666666666,3.260265,2.62051,3.686235,1.32837,1.32837,1.32837,2.977195,2.6325766666666666,2.6325766666666666,2.471145,3.840295,1.96993,1.317005,1.317005,3.701455,4.22869,0.72614,1.3887,2.704575,1.3911583333333333,2.7798583333333333,1.047156,1.047156,2.0432825,1.047156,3.2546608333333333,0.7718533333333334,3.2546608333333333,5.6904908333333335,3.007585,2.1773700000000002,1.6568774999999998,0.6811766666666667,2.3380541666666668,3.219845,2.3380541666666668,0.9198799999999999,3.186145,3.774245,3.592975,3.59604,2.511005,3.61375,1.8306833333333332,0.9367887500000001,0.53466875,0.9367887500000001,0.40212,0.9367887500000001,0.9367887500000001,4.55108,5.19555,5.12485,3.612725,4.87672,4.67512,5.24945,3.877445,4.07652,1.2636785714285714,2.4071633333333335,4.323834166666667,3.74433,1.29381,2.682933333333333,4.010225,3.801145,4.086025,3.673695,4.54114,3.424255,3.131615,4.2105,2.31102,5.68885,3.621815,3.868905,5.0579664285714285,1.1124114285714286,2.18273,3.60501,6.86278,4.46319,3.84031,3.261816666666667,4.949735,8.052466666666668,3.6811666666666665,3.02116,3.3928666666666665,5.21875,4.07603,5.54395,5.2085,5.20165,2.99771,5.1518,4.79632,3.4799333333333333,7.70808,3.5236,2.906075,1.9730033333333334,4.847335,6.45025,6.044,5.6402,4.044975,5.1713,5.7038,0.5249869230769231,7.250232500000001,4.230575,4.28216,4.242505,4.873155,4.24099,3.044116666666667,2.642175,1.397245,0.5616169230769231,1.702018,2.9237133333333336,3.66952,4.54653,4.571615,3.85318,12.086338333333334,3.427425,3.85828,3.133515,0.683535,5.81349,2.83626,1.44981,4.28607,5.71502,2.87876,8.46386,4.00622,2.304914,2.304914,2.304914,4.10829,8.90769,3.57159,2.3309375,2.3309375,3.12243,9.69966,1.0382475,5.52255,4.52593,4.69044,3.0338766666666666,2.1059,4.22965,3.692325,4.93498,5.722440000000001,3.813495,2.68646,3.681515,4.1875175,3.6003344999999998,1.31965,3.1701,6.01043,3.7144250000000003,4.70556,1.065375,3.960566666666667,2.540903333333333,2.5295166666666664,1.762925,1.64276,1.9931599999999998,6.07285,1.971565,3.91409,5.44805,1.938964,4.780645,4.07589,4.74681,3.3069866666666665,2.27239,2.62068,5.268,3.7900266666666664,3.7900266666666664,1.1740625,1.6747100000000001,3.145186666666667,4.333194,2.2885752727272726,4.905932666666667,1.7335660000000002,2.9052066666666665,2.0902233333333333,1.76775,1.76775,5.123,7.300293333333333,1.7933166666666667,3.03661,2.389205,5.54275,3.07636,0.8024660000000001,2.84949,0.8024660000000001,2.477325,3.795695,3.986575,5.1418,3.62812,4.687736666666666,5.9119,2.4379,2.0095199999999998,2.8915933333333332,2.177563333333333,5.61815,4.417605,4.35007,4.596035,2.62972,4.43954,0.96291375,1.068476,1.7446433333333333,1.4486966666666667,2.5019033333333334,2.6664666666666665,2.173626666666667,3.089653333333333,2.676065,4.453,2.485603333333333,2.6061533333333333,2.64615,2.32295,2.9828733333333335,2.6263666666666667,1.9808899999999998,2.42528,3.87314,4.35501,3.32409,3.850285,2.9409899999999998,2.4149325,1.94114,1.3332233333333334,0.28756,0.17142978260869565,2.129566666666667,2.0685066666666665,0.17142978260869565,4.249730615942029,2.37064,0.17142978260869565,5.932345902777778,2.256335,6.22219,3.21839,3.527433333333333,2.53105,3.1397566666666665,2.3373375,4.27548,3.3641,3.387033333333333,0.4712584210526316,3.9670499999999995,2.302025087719298,2.8877,1.754685,2.3433075,4.321825,3.185245,7.91065,5.67355,4.079925,3.641525,6.19249,6.05755,1.64219,4.045435833333333,2.124615,1.965785,7.6515,7.95897,1.2521033333333333,2.1354425,3.438025,2.286535,2.910025,3.099805,3.056685,4.38844,2.301705,3.200135,3.18888,3.17081,7.2476,1.3691533333333332,1.86692,2.960035,3.319375,1.57254,3.23815,1.443715,3.47016,3.154415,6.79875,3.423535,8.813794999999999,3.94514,1.488688,1.5320933333333333,3.48198,6.48946,1.58582,1.39849,5.57067,3.320045,3.960855,2.43219,2.2356333333333334,2.846325,10.347935,4.77501,6.18748,3.43882,2.363555,2.126965,2.56243,2.85128,3.30478,1.7412166666666666,1.4914466666666666,2.467276666666667,3.440395,1.731285,3.13765,2.52607,2.77486,3.558055,3.069435,1.313865,2.44319,1.0671233333333332,1.405988,1.413655,3.026035,3.315685,3.581855,2.527985,3.801715,3.8006,2.86676,1.5184739999999999,3.454495,3.4472699999999996,3.15419,1.712065,2.90859,3.259005,1.4275425,3.40967,1.7142566666666665,3.93479,4.17352,4.898325,2.497745,3.820755,1.692,3.34331,2.580875,1.661545,1.1999242857142858,4.0301,2.4748,4.216755,3.92973,2.76533,4.65738,4.362945,2.4060799999999998,5.5243,5.1091175,6.2192,4.590915,7.070593333333333,3.785555,1.5453533333333331,2.7698066666666663,4.69303,4.823435,2.904396666666667,7.227556,1.411322857142857,3.714866666666667,2.005255,1.7631340000000002,2.3850266666666666,2.7434833333333333,0.41817785714285716,2.9219399999999998,3.0251133333333335,3.53378,2.38384,3.383766666666667,2.2114866666666666,2.452036666666667,2.65615,8.950579999999999,4.83626,1.61161,4.884705,2.397938173913044,0.6884217692307693,2.8600100000000004,7.6171473333333335,1.656474,4.62952125,6.277815,1.8360625,1.53478,1.384995,4.08475,3.01441,4.6366,4.061802500000001,2.590056666666667,5.10115,1.079242,2.838282,4.08847,4.321955,5.25765,2.811305,4.628785,4.42196,5.5737,5.0316,6.12095,4.27361,4.511965,4.344825,1.522106,1.91189,2.822735,3.238655,1.2582222222222221,4.481865,1.9757366666666665,3.0913866666666667,4.051505,2.9503633333333332,2.6263566666666667,1.5221266666666666,3.3983000000000003,2.7429127777777778,2.6470233333333333,2.9666566666666667,1.9216333333333333,1.78766,3.681,4.454855,4.92839,4.256725,5.1803,3.18728,2.433595,3.01492,4.83251,3.1906166666666667,4.2536,5.0056,3.01231,4.438476666666666,1.7508866666666665,4.13903,5.230934166666667,6.3247970238095235,5.01265,5.3357,5.4058,3.7017333333333333,4.0446,4.65164,2.9968,3.9434544999999996,4.03903,1.319725,3.292175,1.718105,2.16027,4.433565,5.599535,3.9434544999999996,4.15404,3.73968,1.5422766666666667,3.739375,2.087885,2.5608299999999997,2.16313,2.638985,1.7260922727272727,1.7260922727272727,1.7260922727272727,0.6298872727272727,0.8723366666666666,2.355811666666667,1.1381675,3.444775,1.3350033333333335,4.19849,5.21635,5.06065,3.1075,4.10737,3.303425,4.971835,2.085425,2.92089,2.389965,3.247625,5.809269,4.81711,5.2235,4.352255,0.9868325,2.17225,1.4688666666666668,3.74336,4.119365,4.154695,5.0258,5.0429,5.1176,5.8499,3.5421,1.73132,1.4830816666666669,5.599596666666667,0.9996677777777777,1.3968833333333333,3.485526666666667,8.396235,3.84029,3.72899,3.226795,5.5100875,1.7523025,0.9566283333333333,1.49226,3.14689,3.32829,3.843485,3.45264,1.8474275,6.367575,3.12391,1.152665,5.5459,2.9003433333333333,3.1371333333333333,2.3648466666666668,3.7009000000000003,6.178531666666666,3.1163866666666666,3.1723966666666663,3.8029666666666664,3.0617066666666664,3.288603333333333,3.0393966666666667,2.901365,1.893985,4.644445,4.57521,4.638055,1.0220011111111111,0.758495,3.458933333333333,2.795776666666667,0.99976125,2.58695625,4.621455,4.3472,7.273755,4.979765,3.6006666666666667,1.688728,3.850855,3.6559,2.8894533333333334,2.6112165714285713,4.114875,3.0948700000000002,5.261983333333334,1.0083777777777778,5.3179,1.724918,4.553545,4.219855,2.86405,0.986035,3.043775,0.410339,3.727065,6.20385,5.75335,2.964772,1.406594,2.4430666666666667,0.7423777777777778,2.54522,0.7423777777777778,3.921305,4.52243,1.3621775,1.9344375,4.961538333333333,1.6949433333333335,3.627135,3.433665,3.88929,1.214458,1.5788266666666668,3.926395,5.2048,4.90249,2.967102,1.8654375,2.604925,1.568135,1.9964375,1.9551225,2.4067325,3.770485,1.3923222222222222,1.3923222222222222,2.652885,4.740362666666666,7.940365,4.5574200000000005,7.962985,2.38841,3.593525,3.96617,1.5334050000000001,3.751195833333333,4.138,3.36232,6.1535,3.09463,2.447545,3.027283333333333,4.40487,1.09770375,3.909085,4.79732,1.3038833333333333,8.18983,2.80866,3.055925,2.8376083333333333,3.892705,3.649525,4.403159166666667,2.6156466666666667,2.7695366666666668,1.9811500000000002,3.5713666666666666,2.653375,2.2185,8.146178666666666,3.3871333333333333,3.3337333333333334,4.161285,22.682266476190478,0.6708466666666666,2.58199,4.41991,4.75262,8.25383,4.52744,4.06488,4.885275,7.352996666666667,3.39716,1.5428,4.8320316666666665,3.252915,1.0551080000000002,1.0551080000000002,1.0551080000000002,2.65167,1.5622325,3.24906,1.441855,2.97041,1.5662266666666669,2.58256,2.453965,2.871395,1.441855,3.070925,2.55196,4.282665,4.77581,4.85752,0.7883791666666666,3.09265,2.56865,5.4137,3.96784,2.67103,2.28124,1.6651675,1.812295,1.338558,4.435355,1.4602625,5.01955,11.914794999999998,2.9192466666666665,2.408335,5.1409325,2.4902,4.077833333333333,6.54235,1.8307666666666667,5.6054433333333336,4.519675,1.1231283333333333,1.1553757142857144,6.781678,4.685135,2.207205,3.91278,1.8868225,4.524765,4.964205,4.64075,4.074735,1.3364242857142856,4.73591,4.95769,4.61722,6.510712,3.91822,5.5035,4.47158,4.257925,4.949745,3.5807,4.34672,1.7383675,3.44564,3.48969,5.46295,4.08394,6.28645,4.488075,2.07539,3.4088999999999996,8.67288,4.49995,3.11027,4.08586,4.07131,4.48059,4.29524,4.89901,7.150881666666667,3.540025,2.659663333333333,4.125006666666667,2.329735,4.477265,2.8933933333333335,6.5799775,1.5866533333333335,4.62494,4.49114,11.3926175,0.42386214285714285,4.13486,4.105015,0.6542285714285715,3.746015,4.37163,4.587635,1.02105,4.80276,4.954330000000001,2.76534,10.448221666666669,3.305236666666667,2.5968,3.04524,3.91857,5.70735,0.73358,3.854075,2.0876575,5.00525,0.6977246153846154,4.17985,5.4167,5.2798,3.36311,6.613165,4.274065,3.5358799999999997,2.57715,2.786023333333333,4.36836,4.863315,5.19905,5.10995,4.841675,3.4135000000000004,7.413105,2.919075,3.6798089999999997,2.052665,3.4507,2.8611299999999997,1.5032933333333334,3.0262766666666665,2.9128266666666662,3.01132,3.8931,3.536766666666667,3.2638466666666663,2.9277466666666663,5.59775,3.2368433333333333,3.619445,5.138,2.9314033333333334,1.0623333333333334,3.0656499999999998,2.967473333333333,4.227985,3.5894,3.0419466666666666,4.61089,1.95246,1.738925,2.902585,3.6552,4.70097,1.12890875,4.68019,3.08784,4.1421,3.1160033333333335,4.996842,3.859105,3.185485,4.710145,2.117125,3.722845,0.69079375,4.74325,5.10135,15.400858484848484,3.6519666666666666,1.0934633333333335,4.79073,0.6595221428571428,2.66745,4.49665,1.698145,1.4704,3.825655,4.679815,3.1951366666666665,0.7236783333333333,2.50462,7.57548,3.887125,6.01935,5.18995,4.79047,3.3706333333333336,3.2179566666666664,3.2184933333333334,6.999830000000001,4.42867,5.28365,2.112295,0.4419855555555555,2.181265,2.98562,1.652865,2.694635,4.367345,2.8573799999999996,4.65563,0.7604758333333334,5.10175,3.623135,2.978325,1.1312666666666666,2.8418500000000004,2.1861333333333333,5.10475,3.96512,2.035245,1.5980142857142856,4.124225,5.56205,5.33755,6.530493333333332,2.306503333333333,5.5175,5.10085,4.988555,2.4245200000000002,5.09715,6.043233333333333,5.25685,2.65164,4.79217,3.480645,3.18074,4.157225,3.9632,1.3642,4.94582,2.6131466666666667,2.82565,5.0410683333333335,5.0410683333333335,4.861365,1.915624,4.890915,1.06417,1.707614,5.11045,3.090996666666667,1.3490066666666667,3.3867,1.195686,4.3493,5.4079,3.507125,4.9201,4.53008,3.85123,5.580780000000001,3.254055,3.2027433333333337,3.0353333333333334,2.34095,2.7132,3.1689066666666665,4.09258,1.4425062637362638,3.01367,4.480205,5.1341,2.4177425,4.4237,4.80384,5.947283333333333,3.5738333333333334,5.5532,4.97417,4.99163,5.0237,4.38087,3.50252,3.65423,4.894735,5.6676,4.72618,5.12995,4.487765,4.54511,0.7310150000000001,5.12425,4.825335,4.397335,6.82461,4.56037,3.89857,4.43769,4.850615,3.681755,3.494315,2.1674525,4.5078875,2.14007,1.2803242857142858,3.676415,2.6704066666666666,2.43809,4.1288686666666665,3.4120000000000004,3.154785,1.0949533333333334,2.0322525,4.113195,3.501635,1.8592825,1.8592825,4.165075,1.923838,3.0750666666666664,4.60567,3.437745,3.73292,1.4550033333333332,2.093195,3.816889166666667,1.891995,4.30886,4.855165,4.37797,4.201805,8.749753333333333,2.795925,4.297275,4.895765,4.317795,2.9381833333333334,4.284575,4.420495,4.698245,2.4539,2.835903333333333,4.560945,4.247795,4.13631,4.10322,1.608105,3.631225,4.41333,4.65043,4.25122,4.118919999999999,4.118919999999999,3.1760241666666666,4.633325,4.65377,4.298615,1.7472239999999999,7.890185000000001,4.231995,5.38365,4.423855,4.55644,4.762725,4.71937,2.800285,4.37597,2.977275,5.33225,1.9963640000000002,5.2579,6.013888888888889,5.159,0.759649,4.6763216666666665,1.10561,4.949255,4.626505,4.618125,4.33297,5.52665,3.6334999999999997,3.6334999999999997,0.919535,2.27905,5.12055,3.91973,4.172545,4.49287,5.3859,3.075565,4.346975,1.3761349999999999,2.56135,1.66146,1.1937475,4.330836,0.866367,2.39505,3.2532366666666666,1.1818266666666666,2.37167,2.59281,1.362045,6.39453,1.8801275,2.4405966666666665,3.983625,2.5887,2.8714066666666667,3.94469,4.68215,3.555733333333333,3.1078566666666667,4.148266666666667,1.598638,2.0320325,4.85956,0.6447992857142857,2.0902499999999997,2.456878333333333,3.0894433333333335,2.86183,1.3626,0.7666333333333334,2.341153333333333,4.15172,1.2836657142857142,2.194515,1.4270625,5.7534475,2.1942475,4.35581,4.504525,4.280445,4.77948,5.17965,4.18198,4.332845,1.5689149999999998,3.817466666666667,1.7817219999999998,2.607083333333333,1.158647142857143,4.39379,2.2139725,5.590842,4.05835,3.76137,1.586304,6.6433175,4.756265,1.4718200000000001,4.02175,3.021965,3.848835,3.56038,1.99173,1.99173,3.2555666666666667,1.4205816666666669,1.4205816666666669,2.4245200000000002,2.7999733333333334,1.97526,1.368595,3.5005666666666664,1.09514875,3.2147133333333335,2.5117,1.89141,1.61719,2.1967125,2.4030225,0.284834705882353,2.43256,1.1053666666666666,2.557166666666667,2.0902233333333333,2.42839,1.0969077777777778,1.051326,3.6288666666666667,2.969746666666667,1.99173,1.9161775,1.9521233333333334,2.450016666666667,2.4563566666666667,1.797906,2.3686133333333332,1.08591,3.9012333333333333,3.0597666666666665,2.455033333333333,1.528684,1.289624,2.665275,1.289624,2.665275,0.7640025,0.7640025,0.4819016666666667,2.4175875,2.2410833333333335,0.7640025,2.2493575,2.6214333333333335,2.37552,1.8373,0.7855622222222222,0.7640025,0.7640025,1.582504,1.582504,2.013665,1.9161775,0.7640025,2.31536,0.48040307692307693,2.783673333333333,2.3340133333333335,3.0371466666666667,2.45845,2.45845,0.4100675,0.4100675,2.4245200000000002,2.09062,2.28024,2.0972,0.4100675,3.536766666666667,2.778075,1.714382,0.67329375,1.714382,0.67329375,6.12857,2.47701,4.2527,2.37815,3.119783333333333,2.7617166666666666,3.08961,3.2739966666666667,2.307285,1.7291825,2.8993466666666667,3.6811666666666665,2.3290233333333332,1.582504,2.34184126984127,2.34184126984127,2.6729033333333336,2.141095,4.205935,2.314416666666667,3.4882666666666666,2.72641,1.7196339999999999,2.64595,2.606,0.8307681818181819,1.39633,3.847255,1.791386,3.158253333333333,2.6271,2.750075,3.9230666666666667,1.6469383333333332,3.6616999999999997,3.1524933333333336,4.037733333333334,1.252064,0.2768924137931035,1.2354442857142858,1.2354442857142858,1.0511066666666666,3.407633333333333,4.016066666666666,2.7231566666666667,2.033656666666667,2.033656666666667,2.2731375,1.7142566666666665,1.0454599999999998,1.7203266666666668,1.7203266666666668,0.7640025,2.4245200000000002,2.775,3.586766666666667,2.5117,2.11824,2.11824,2.11824,1.0540488888888888,1.462042857142857,1.462042857142857,2.582675,3.08527,2.782176060606061,4.39641,2.5615366666666666,2.7898566666666667,3.75197,3.84144,7.5954524999999995,4.700215,4.78509,3.5652000000000004,12.933905,4.71888,3.581265,0.997565,4.49416,3.037065,2.06161,3.579,5.49195,8.460256000000001,6.1341,0.5114505882352942,4.028535,2.62588,3.907765,2.544025,4.51765,5.37005,4.606145,8.029325,3.34423,3.94159,3.80622,3.4503354545454545,8.211728256410256,3.2622999999999998,2.6488733333333334,3.78984,4.347785,5.01075,4.39557,6.6339820000000005,5.3121,1.296668,3.063865,0.8446025,4.81922,5.009,4.374265,4.652525,5.71425,3.571765,4.9068,4.02251,8.082615,3.933425,4.906627,3.5001333333333338,4.97801,2.9092,0.6536325,0.6536325,3.411715,3.83772,2.214885,2.462625,3.6958,4.44491,5.3797,1.943875,2.4959125,3.47989,2.5326166666666667,1.207375,4.127775,4.773855,8.53428,1.6750219999999998,4.13935,3.47325,4.292705,2.8166166666666665,8.22439,4.074975,3.7712,3.058816666666667,3.9776,3.3499666666666665,3.080026666666667,3.047883333333333,3.649335,3.59411,4.512245,4.4665,0.38426333333333335,1.3536266666666668,2.1824033333333333,1.7237875,5.0458,3.625405,2.5895233333333336,2.202965,4.40831,3.7444102499999996,2.331055,2.34816,0.8802030000000001,2.0711275,2.5864866666666666,2.5864866666666666,5.04515,1.8768225,3.3085299999999997,2.2687399999999998,2.3365,1.6719799999999998,2.99295,4.115675,4.008275,3.801515,5.0138,4.841945,2.805935,3.0016700000000003,1.861648,4.78044,5.606628333333333,2.59637,2.9795366666666667,2.3460125,2.657903333333333,4.045995,3.0071833333333333,4.732705,3.55058,3.378835,4.455655,2.95262,3.457515,3.93707,2.3085466666666665,2.5649666666666664,0.4011821428571429,3.0731133333333336,2.6373266666666666,3.54112,5.79485,4.36984,6.2086041666666665,2.1593025,1.6271816666666667,2.931975,5.2574,5.6108,4.5183,3.11136,2.198,4.942595,2.3161533333333333,4.70088,2.9369433333333332,2.23371,5.33805,5.0523,5.29305,1.7322675,1.8656925,1.0236779999999999,1.0236779999999999,1.172884,0.8773214285714286,0.84335,1.8016294285714287,4.4395,11.484648333333332,4.07841,4.5628,4.373165,5.817864999999999,2.680485,1.6132166666666665,3.8025041666666666,2.92937,4.1252,2.6628233333333333,2.7081466666666665,3.1394066666666665,3.3948,2.53233,3.3782,3.4812999999999996,3.1221533333333333,3.5643333333333334,3.4801,3.1769533333333335,2.9145233333333334,3.3594666666666666,2.5079833333333332,3.1658333333333335,3.2369566666666665,2.8904433333333333,3.4642,2.41938,5.922293619047619,3.3665000000000003,4.7153046666666665,3.2972633333333334,3.585933333333333,3.9277333333333337,2.8844166666666666,2.7231133333333335,3.1791366666666665,3.0366066666666662,3.5696,3.4628,2.17258,2.8073766666666664,2.9013533333333332,3.0014,3.0014,3.3897666666666666,3.4296666666666664,2.7005533333333336,2.6772466666666666,3.3256200000000002,4.3904000000000005,2.6195999999999997,2.863775,2.7072366666666667,2.838926666666667,4.902880833333334,5.0803,1.71985,3.32666,3.8339666666666665,3.629124,3.4157333333333333,3.9433666666666665,3.6078666666666668,3.344466666666667,3.3373660000000003,2.06414,3.1481795,3.5941666666666667,3.5499333333333336,2.6845766666666666,2.7768833333333336,3.9089666666666667,3.0192633333333334,3.1609466666666663,2.572875,1.3360383333333334,3.6603,2.61625,2.6521966666666668,2.683075,3.4591333333333334,3.27791,2.02042,5.8110219999999995,2.71036,0.951469,4.705315,1.9687729166666665,1.8258833333333333,4.556595,4.7976,3.304725,2.12735,1.593825,3.253215,3.376415,3.362475,0.4641465,2.01467,0.4641465,1.801245,1.593825,2.6313,4.01111,2.7444,3.46248,3.662795,0.652296,2.898343333333333,0.9419075,0.47623941176470586,5.0554,4.505775,4.864615,2.648875,6.16475,4.194155,3.49544,2.408545,3.495566666666667,1.683032,6.0,2.666715,3.93037,4.601265,2.5141266666666664,2.155746666666667,2.18377,1.3111216666666665,2.015255,1.08372,1.08372,4.41146,2.56175,6.1737850000000005,2.1443675,2.13523,2.311335,2.355276,2.5122,4.668595,4.61772,2.10552,2.2290633333333334,2.355276,2.878335,4.445401,2.833925,5.405258333333333,2.1443675,3.2582674999999997,3.21833,3.187,5.46195,5.1423,2.0097375,1.9568675,2.32933,3.6586,4.954875,5.3984,2.1366375,4.264885,1.6653866666666666,1.6286925,5.5508,11.840946666666667,2.189506666666667,2.7370866666666664,2.5607333333333333,4.643285,4.596175,1.871455,5.04665,4.39386,2.85344,39.81831903571429,3.1357133333333334,3.1709300000000002,0.4899855555555555,5.130476666666667,2.21916,0.9247833333333334,4.583505,3.83791,2.2269925,1.8926525,2.407766666666667,3.75278,1.38142,3.0997723333333336,4.02036,5.0223,0.9099769999999999,5.35395,4.696225,5.16405,2.8077199999999998,1.47063,3.5707675,4.626345,4.351715,3.01983,3.44536,4.033405,12.184802676767676,2.8368933333333337,3.043775,4.76026,2.69285,4.41675,3.5402,2.47136,3.305105,6.1114375,5.22085,4.58625,5.0519,2.589205,3.951715,4.766665,3.385355,4.648655,4.83564,0.08510510869565217,2.254155,4.13762,2.68506,1.2393349999999999,0.442615,0.442615,1.837835,2.669425,2.963285,1.229816,2.7840000000000003,4.545935,2.90597,4.3923741666666665,0.6129135714285715,4.474095,4.02609,4.44454,4.009705,4.48131,1.230025,1.07228375,3.0908366666666667,2.8919099999999998,3.0319366666666667,4.458530242424242,4.18384,6.419404999999999,5.3954,4.55789,3.41823,2.2907816666666667,1.5682316666666667,5.5703,0.2958346666666667,3.14867,3.61612,3.91153,14.41527,1.87247375,3.034386666666667,0.62955625,4.81135,8.215405,3.12609,1.9928299999999999,5.4407,3.307233333333333,1.259472222222222,3.43047,2.614595,2.9626,5.0281,3.3471146944444445,0.84404625,9.347433333333333,0.71151625,4.74416,3.1156474444444444,1.345855,2.0420466944444446,3.0997425,3.0997425,3.829515,4.2282452500000005,1.3840625,2.29436,2.688665,3.354905,2.82718,2.37008,3.09844,3.20148,6.521178000000001,6.3183,4.146735,3.08898,4.837395,4.58381,4.003735,3.3132,3.420635,4.918025,5.2651,2.444103333333333,2.7144266666666668,1.4222483333333333,2.20397,2.4498875,1.4942425,3.4708,3.5478666666666663,3.30733,2.774506666666667,2.6763666666666666,1.4465000000000001,1.4317900000000001,0.4577227272727273,3.4079333333333337,1.2916928571428572,1.7598725,2.8155699999999997,2.52254,2.600893333333333,1.0390125,2.3486675,2.519975,2.83544,3.438125,5.63145,3.54756,2.82739,2.13569,3.33356,3.483505,2.35648,2.86015,1.929865,3.72113,2.576315,3.605975,1.32472,0.6193299999999999,2.553925,3.12649,3.015465,3.86959,4.65836,8.751560000000001,3.1132500000000003,2.7398900000000004,1.9710333333333334,1.9173459999999998,1.9173459999999998,2.707133333333333,2.5108266666666665,4.874945,4.91127,3.714365,5.1978,4.563435,4.51079,3.6363933333333334,4.489905,8.1848175,2.546325,0.493735625,2.9521833333333336,1.3639633333333334,0.997252857142857,1.9561766666666667,0.910398,2.16581,4.831295,5.7235,5.9855625,1.0427475,7.29314,2.01358,1.52099,2.6540133333333333,4.71301,3.1714599999999997,2.5479,4.119095,3.1419333333333337,3.7736,2.8958600000000003,2.942273333333333,2.7964566666666664,7.040245,2.418405,3.93359,3.6488033333333334,3.4735925,1.49427,1.0989525,4.252685,2.8071699999999997,2.949256666666667,6.8142875,3.555445,2.066875,2.5935,3.49909,3.4274,3.0318400000000003,4.471213333333333,2.9553966666666667,4.782275,2.445672,1.82614,4.90908,5.7501,5.05115,5.07315,1.3651799999999998,2.545825,2.09738,3.280405,1.3610233333333335,0.9439633333333334,2.695260833333333,1.99099,2.093375,4.132935,0.8293666666666667,5.96119,1.45053,0.7569318181818182,3.7183333333333333,4.312085,0.6988785714285715,3.376913,2.882024375,0.7666333333333334,4.72795,0.2027880952380952,0.2027880952380952,0.2027880952380952,0.2027880952380952,0.2027880952380952,0.2027880952380952,1.8295340000000002,3.780715,1.8295340000000002,1.8295340000000002,1.7476033333333334,0.2027880952380952,0.2027880952380952,3.3604333333333334,2.9777833333333334,3.68678,3.31926,2.286045,3.39244,1.6353714285714285,1.8171620000000002,3.6003344999999998,1.874628,3.4753000000000003,2.657067111111111,6.27325,5.16045,4.459705,4.316555,4.820575,5.40155,3.929535,4.067225,7.34887625,3.7434333333333334,3.5800666666666667,2.7625733333333335,4.895519999999999,2.5979433333333333,2.10081,1.9852166666666669,4.97812,5.54995,4.675565,5.35165,5.4935,4.81107,4.932345,0.7931154545454546,0.7450857142857144,0.7450857142857144,5.05045,2.2063866666666665,3.65669,1.0405357142857143,5.3246,1.4819857142857145,2.3470333333333335,2.58784,4.5553333333333335,4.5553333333333335,6.8624,4.466545,1.6863000000000001,12.869035,3.3961333333333332,1.1101577777777778,4.922705,4.46141,3.5878,3.66029,2.723075,4.245233333333333,0.6521866666666667,3.4913000000000003,3.2225533333333334,3.4851666666666667,3.2127700000000003,1.4296766666666667,1.39124,4.578410833333333,3.414733333333333,3.04236,3.4784,5.315480833333333,3.36862,0.758907,1.9594366666666667,2.5433033333333332,2.612703333333333,3.6446666666666663,3.417733333333333,3.23068,3.7175666666666665,3.24255,2.6568,1.0537233333333333,3.0804333333333336,2.7218033333333334,4.215255,3.63226,4.631905,2.673636666666667,3.292203333333333,2.7061,1.596676,1.8920766666666669,3.0011095238095242,3.8569,1.904432,3.20128,1.8071166666666667,3.932533333333333,5.357026666666666,5.1593946666666675,2.5641,2.653625,2.7364,2.695225,1.7235,2.65085,3.239836785714286,2.4509475,3.7157999999999998,2.769415,3.6890686666666666,3.60614,0.8702666666666666,1.221,1.7194575,2.22131,3.0769,3.4397,5.02065,6.9105925,3.84844,4.480085,4.528525,16.363037666666667,0.56438,11.32842,1.0295055555555555,3.17965,3.4623333333333335,2.3287633333333333,2.987935,1.509912,1.5184739999999999,2.741823333333333,1.462206,2.886085333333333,2.54252,3.17779,2.3023333333333333,2.8648366666666667,1.4975266666666667,0.7727375,3.3030166666666667,2.5630466666666667,3.1513733333333334,1.0540488888888888,3.8389,0.7613683333333333,0.37857153846153846,2.5454066666666666,4.23993,4.718705,5.61315,0.9623181818181817,4.135235,4.74781,1.1700625,2.4144125,5.3477733333333335,3.27652,4.07858,3.70722,4.13288,1.97656,3.801555,2.8074666666666666,2.911895,3.45075,2.63737,2.673985,3.76557,3.037665,3.53133,2.20012,3.221075,5.1744,1.4108766666666668,4.398185,2.1265375,3.929225,5.10161,2.2143225,2.8359199999999998,3.14652,5.729891666666667,2.5316633333333334,3.292335,5.6736,4.2527,4.361135,1.8293100000000002,2.570975,5.13275,3.7103333333333333,4.606215,3.591466666666667,3.2514800000000004,3.0292666666666666,3.886433333333333,3.1600699999999997,2.7243833333333334,2.73929,0.454285,2.439115,2.1483225,5.00475,5.07725,3.0145233333333334,2.9919100000000003,3.4129666666666663,9.954835,3.44834875,3.843215,2.88678,4.103925,3.059995,3.8157466666666666,2.7583533333333334,2.5866,3.1164,6.06245,4.738275,1.9837233333333335,3.28557,2.834755,2.6792166666666666,5.14531,1.683468,6.069073333333334,4.131115,4.824675,4.52904,5.31525,3.614315,6.834001666666666,4.7736,3.52876,0.7407928571428571,2.4276025,1.484425,3.0061133333333334,3.50813125,3.847185,4.053145,5.666,2.8154833333333333,4.98696,2.8639033333333335,3.401533333333333,3.1626499999999997,5.0214,4.83268,5.79875,1.9725599999999999,5.820501666666667,4.565625,1.4503466666666667,6.1497,3.480985,3.40783,2.060595,2.11613,4.835283333333333,1.2550828571428572,2.485176666666667,2.018765,4.184045,4.44827,2.4852133333333333,3.3101233333333333,3.065204,2.6457833333333336,4.406365,1.3160560000000001,2.2104633333333332,2.284733333333333,2.9626066666666664,2.43315,2.5923633333333336,2.57607,4.05053,2.8592,2.81958,4.432675,2.511505,4.30908,3.456445,1.5822622727272728,1.5822622727272728,4.801635,3.5599000000000003,1.7450475,1.3366175,2.1538675,1.9916725,1.136426,1.3946800000000001,0.632212,1.5326766666666665,1.477,2.6573966666666666,2.23102,1.74433,1.89126,2.2722233333333333,1.53596,1.7899166666666666,1.7414266666666667,2.1572925,4.18244,2.559115,3.2729766666666666,2.839675,5.8618500000000004,3.022175,4.372275,4.256879166666667,1.914415,3.968615,3.297455,1.89912,3.343045,2.3305275,2.832075,3.878745,2.29961,4.51342,2.77814,4.029825,3.5391,0.8139922222222222,3.761625,3.690765,3.818305,3.5822,2.5433600000000003,5.2525,4.92102,5.79578375,8.605973333333333,4.11082,4.523305,2.9848233333333334,3.75983,3.70763,2.18423,2.63556,4.673695,2.33694,5.529393000000001,1.814352,2.559305,8.792146666666667,2.9714500000000004,4.037476,1.4086957142857144,4.680745,4.992135,3.3843,4.353155,5.0283,6.389265,17.69082476190476,0.6297941176470588,1.0969077777777778,3.5727666666666664,3.918245,3.821445,2.25973,3.3596,4.08208,4.738565,2.85877,5.0677,1.5257033333333334,1.5257033333333334,5.3015,0.7673072727272726,2.04754,3.291385,3.92099,0.3609515384615385,1.8078200000000002,4.5191465,1.1623983333333332,2.9591666666666665,2.690046666666667,2.874325,7.40026,2.4158833333333334,3.046583333333333,1.88567,2.145443333333333,4.43192,4.966435,3.13648,6.908625833333334,1.7460425,2.789575,4.61533,6.88911,1.66239,2.437996666666667,2.52163,1.3873499999999999,3.192465,1.99490375,3.96916,3.416125,1.462875,2.019161,2.019161,3.1084266666666664,5.5039,4.036381666666666,3.696335,4.875865,5.51495,3.068625,3.66293,4.23902,3.51231,4.415256666666666,4.2051425,4.377455,1.00284,0.353294375,5.353,3.703135,2.41261,8.36352,1.4865066666666669,4.716833333333333,4.011595,0.3252125,1.9698966666666669,1.22801,1.8224433333333332,2.0379333333333336,5.462923,3.198365,2.806345,4.7141225,5.075,4.626195,0.6191800000000001,2.001345,0.580041,5.519496666666667,1.6350000000000002,5.242,2.2670025,3.2069875000000003,3.125955,4.450545,4.63545,4.850285,0.9291181818181818,2.99787,4.18274,1.92495,1.743595,3.545465,3.221595,3.254665,3.76291375,5.463057142857143,4.39305,5.42935,2.8958866666666663,0.9234255555555555,3.6006666666666667,3.85512,0.7212815384615384,4.140215,4.047575,3.900225,2.492605,2.63746,5.16545,3.20542,3.971035,2.06792,3.751705,1.969162,3.480915,3.69812,0.6604269230769231,4.626415,4.36545,3.217255,4.70042,4.166595,2.854405,3.91009,0.685152,3.20074,4.016918888888889,4.740525,3.2273633333333334,2.3518875,3.4623333333333335,2.3518875,4.74522,2.928875,3.512966666666667,1.7058166666666665,3.2617766666666665,2.137975,4.15095,3.037646666666667,5.50643,3.5602,3.32349,3.3090666666666664,2.4990464285714284,2.4990464285714284,2.4990464285714284,2.6759,1.0334466666666666,4.71518,2.2968266666666666,1.6588933333333333,3.510066666666667,2.61951,3.1910600000000002,4.568915,5.43595,3.957925,2.226505,1.238796,4.186095,1.870966,2.6621900000000003,2.821835,3.774865,2.17774,3.70014,2.540165,1.756468,4.911545,4.125065,3.75055,3.521555,0.7340866666666667,2.429326666666667,4.70828,7.354585,5.9213,3.03027,5.1024,3.233735,3.60774,2.10725,2.195875,5.26855,2.2329225,4.61242,3.94591,4.248015,8.945986666666666,3.97797,4.44108,3.42786,4.87302,4.44745,3.604505,3.604505,3.99307,3.8492783333333334,4.159185,4.122865,4.43815,4.49382,4.336105,1.16369125,4.204175,4.038285,5.6942,7.854150000000001,5.5343,3.8002433333333334,2.0130333333333335,1.5366883333333332,2.63815375,4.659405,4.00097,5.25852,3.0188900000000003,4.87933,5.22495,5.377,4.534235,3.1619566666666667,4.413285,4.514875,5.49245,5.4674,4.25719,7.43642,4.56527,2.20222,5.11875,4.579815,4.561565,4.181485,4.937325,0.7134554545454546,4.700225,4.686635,1.3140657142857144,1.30343,5.24655,5.17585,9.533878000000001,6.0411,5.53155,6.43865,2.74191,2.81766,5.16695,1.7791925,1.7791925,2.41351,1.5914400000000002,2.906635,3.3316433333333335,1.88542,4.166320909090909,1.3630933333333333,2.010085,7.029855,3.2560583333333333,3.494965,3.04413,3.965935,4.01089,3.2763899999999997,1.0422788888888888,3.971345,2.75107,3.93252,4.276635,3.8315366666666666,4.870685,4.770795,4.83284,3.64173,5.1222,6.56895,5.01945,3.080865,3.73364,1.8711225,1.8711225,3.98,4.611135,2.59197,2.6874566666666664,2.3416750000000004,2.9980700000000002,1.59967,1.59967,4.375755,3.25465,2.05402,3.492135,3.004775,1.839815,1.20517,1.4440777777777778,2.72625,0.4861152631578948,0.8579388888888889,2.554775,4.21127,0.39717,3.86018,1.977222,5.46765,3.832905,7.3527024999999995,4.45229,5.478496666666667,4.777565,5.03365,4.226075,1.96636,1.959084,5.11345,2.88697,3.8248,1.2318033333333334,5.1458,5.2335,2.596555,2.476235,3.111955,4.471355,3.50514,3.431965,3.79534,3.53806,3.274255,3.408785,1.07796,1.96327,2.337925,2.42809,4.29961,7.41259,0.8966879999999999,1.4653266666666667,1.4653266666666667,2.041,3.857975,2.510825,3.0356,5.353915000000001,2.9685400000000004,1.1747775,1.1747775,1.1747775,2.81667,3.2203910000000002,4.397825,3.07111,4.006385,3.266035,3.64916,2.946495,3.1178966666666663,3.493785,3.8954375000000003,2.0477600000000002,1.136426,3.097255,2.0477600000000002,3.81431,1.3412366666666669,1.73145,2.0299125,5.307926666666667,2.77216,5.75831,5.307926666666667,2.9861500000000003,1.9585483333333333,1.9585483333333333,2.523125,4.79175,1.9585483333333333,2.389665,5.7215,2.265125,2.62051,4.53413,3.196095,4.10311,1.9986333333333333,3.34131,4.21968,1.8714566666666668,2.156065,4.11202,1.9986333333333333,2.51517,1.97799,5.62976,2.46315,1.103564,2.459075,2.897375,3.0112186666666667,1.816275,1.9134120000000001,3.96232,1.6920286666666666,1.95066,3.09468,2.14086,3.024715,3.80744,2.1504066666666666,2.56198,2.106325,6.26939,2.279985,3.05472,3.207455,3.207455,8.271883333333333,0.9649133333333334,2.87889,2.387625,3.14798,2.25413,1.2164266666666668,1.2164266666666668,3.47842,1.75467,6.252295,2.124045,3.24409,3.02693,5.56638,2.57066,2.55488,5.336455,5.336455,2.41839,1.4966425,1.34269,1.34269,1.4966425,2.0099633333333333,1.2547566666666665,1.1668633333333334,1.5354866666666667,1.5795000000000001,3.474465,1.63589,2.90037,3.05113,3.187065,2.67141,2.7049,2.347525,3.1698391666666668,3.1698391666666668,5.71578,2.212005,2.8378,3.055405,2.915125,2.46754,2.722115,2.6947,4.9364475,1.6357975,1.520485,1.2971666666666666,2.1660316666666666,5.36295,4.073235,3.421615,2.814125,1.63098,1.63098,1.63098,4.19142,2.377675,1.1668633333333334,2.956745,3.322415,1.18134,5.1267875,2.9820775,6.41852,3.09164,1.80966,3.51528,3.0693566666666663,1.98859,3.38478,4.06593,3.14384,1.76384,2.334955,3.071925,3.000805,5.26324,2.049235,3.32586,2.53256,5.20476,4.44715,2.14397,2.31725,5.35484,4.97029,5.16197,3.91845,1.0359859999999999,1.0359859999999999,2.852417,2.852417,0.862082,5.1457,3.6723,5.19891,4.09973,5.22955,2.116505,4.280178333333334,4.280178333333334,2.386595,3.280045,3.406575,1.176676,4.498,2.97311,2.840465,2.703875,4.39227,2.33481,2.260085,3.25009,2.843045,2.92637,3.9635,2.70281,1.94456,3.565775,6.03047,5.26598,4.2394,2.63825,3.06287,2.581,5.13749,2.72944,3.23029,2.355105,6.96172,3.58179,2.20705,2.425685,2.90908,4.73314,2.26071,2.635875,2.68191,6.95085,4.81275,3.29154,2.25217,2.165125,6.29312,2.67533,3.03438,4.77947,2.84471,2.88858,2.419415,2.77836,1.9302533333333332,1.89734,1.4574166666666668,1.6074366666666666,1.7233266666666667,1.9959066666666667,1.413655,1.9019866666666667,1.760305,1.9302533333333332,3.88287,4.22717,2.129255,1.61345,1.61345,3.7430033333333332,3.7430033333333332,2.83489,2.83489,2.74758,2.0133,1.644955,3.61822,2.052375,2.052375,2.303165,2.303165,3.08621,1.87246,4.45436,2.2297,3.206875,1.9170233333333335,1.9170233333333335,1.623005,3.70666,4.95633,1.3412366666666669,4.35335,2.1504066666666666,1.79965,4.10159,3.050815,1.799705,2.248635,6.19304,2.03465,5.65652,3.014345,3.179905,3.04628,2.58615,6.32071,3.04734,2.376655,2.7280796153846154,2.896465,4.99354,3.239355,1.496142,1.496142,3.9803,4.70454,4.58232,4.96547,2.63734,2.915635,1.709015,2.679215,1.567965,2.786865,1.90178,0.818492,0.818492,0.818492,2.0939725,4.8979,2.0939725,2.05654,3.358015,1.420165,2.03295,4.16161,3.63361,4.9958,1.7480733333333334,4.91171,1.7480733333333334,1.7480733333333334,2.222355,1.808785,2.111575,5.67858,2.111575,2.357795,3.78622,2.13862,1.65064,2.82258,3.1424066666666666,3.5725875,3.113846666666667,4.497415,1.5221566666666666,4.558555,0.8366554545454545,4.824205,4.693595,2.3324925,2.3324925,0.8048790909090908,3.6615333333333333,2.81625,5.68755,4.997335,3.990055,4.585515,4.576045,4.363005,4.717105,4.188405,4.3626,4.24973,4.023545,4.810975,5.40825,3.342205,3.58954,4.504645,2.4578966666666666,1.6028099999999998,4.61818,4.107165,3.28575,1.545785714285714,3.665335,4.534445,6.21424,1.01339,4.824835,4.20203,2.01544,1.899605,3.14591,3.453395,1.61998,1.496142,3.71171,3.579915,2.618765,4.50829,2.862425,1.13731,2.56405,1.2758257142857143,3.0423899999999997,1.8413899999999999,3.4398,1.7728575,2.59342,4.623745,4.115975,4.968815,3.90901,2.23496,4.55669,4.19752,3.136855,4.28035,4.373825,2.6384933333333334,5.9517,4.78917,3.088965,2.5557866666666667,2.932365,3.04606,2.8975899999999997,2.8732933333333333,4.736085,3.935895,3.68289,2.4471000000000003,2.530136666666667,2.3771999999999998,2.8339433333333335,2.6326566666666666,2.24194,2.25448,2.3949525,1.4872925,3.08759,1.23686,2.0627625,1.9813575,2.345945,1.55568,1.85733,4.25938,4.432815,2.0108375,4.251055,4.27642,6.074088333333334,1.99419,1.6260020000000002,6.81055,3.90105,4.692755,4.43827,3.95892,1.933985,3.499605,2.740875,3.037105,4.41503,0.7018675,4.267825,2.047286666666667,0.8592372727272728,4.99449,4.319065,3.895655,1.8300023214285714,4.75943,3.593505,2.555073333333333,2.5157066666666665,2.4484666666666666,2.1031,0.57516,3.0498999999999996,3.06025,5.01625,2.572825,1.9598225,4.19059,1.0102925,1.7927516666666667,1.7927516666666667,2.598065,1.7927516666666667,4.598595,2.595315,4.90774,4.416375,5.97835,14.334303333333333,3.3775333333333335,5.38465,2.811255,4.630405,4.1657,7.18167,3.2929833333333334,4.38605,5.27065,3.98189,1.2588733333333333,4.23828,2.6389633333333333,2.76347,1.0117944444444444,2.201705,3.92975,7.813671666666666,4.64912,2.7999733333333334,4.579485,3.2555666666666667,4.12861,5.36645,4.58898,2.830515,2.8260400000000003,3.98947,5.57555,2.42427,5.14925,1.88928,1.88928,3.06835,4.98158,1.000885,4.225831333333334,2.4928225,3.53044,2.48791,2.4523066666666664,2.7081366666666664,2.2390233333333334,0.7155071428571428,3.391035,2.6793266666666664,4.970945,4.959445,0.2523140625,5.324,4.965075,5.2432,7.399203333333334,3.4962,2.8841566666666663,2.51768,3.3148,3.3433333333333333,1.9136066666666667,3.06031,2.8527633333333333,1.4828733333333333,3.2286133333333336,3.4497999999999998,2.9660466666666667,3.2416066666666663,1.4527027777777777,4.354815,2.37166,5.11255,4.64635,4.106905,1.5751033333333335,2.9031633333333335,1.2490275,1.787625,1.2490275,5.0706,3.6559666666666666,1.8161740000000002,2.4262075,3.768045,3.61886,2.99234,3.73003,0.377162,1.5203075000000001,3.809685,4.230875,4.65421,2.1312575,3.1866,3.13428,2.8265733333333336,3.49428,2.73609,4.61128,2.586175,2.5923266666666667,2.88759,2.58949,2.860393333333333,4.372995,1.90212,4.45308,3.7894175,6.1258,7.8807925,0.7823277777777777,0.835583,3.651195,7.317477500000001,1.590398,3.59842,1.2366983333333332,1.2366983333333332,3.384905,0.43632333333333334,3.85065,5.2469,2.574705,3.862085,3.105365,2.38106,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,0.227552,2.200375,2.862805,3.49784,3.087,4.1376475,5.88568375,3.067805,2.0646633333333333,0.8857750000000001,3.180465,0.68593375,4.892480833333333,2.8278175,2.130135,0.68593375,2.360025,2.61617,0.8436425,3.5716487499999996,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,0.1543917777777778,4.82524,1.61193,4.87191,5.11505,1.891422,4.682945,4.56636,5.35235,5.2548125,3.8320253571428573,3.1658,4.5031,2.670425,6.355805,4.40105,0.7282214285714286,1.3806314285714285,1.4886857142857142,3.9539000000000004,3.9539000000000004,3.211796666666667,3.93234,4.677165,4.07427,4.372495,3.3266466666666665,2.2147,0.46092714285714287,4.09729,3.0092,2.825985,4.120615,3.451795,3.2075199999999997,3.94184,4.348535,6.483320000000001,4.22557,4.63705,5.85255,4.52892,1.4222957142857144,3.60717,4.819580666666667,35.389744264069265,1.3911466666666668,4.63139,3.986495,4.508335,4.134225,4.917975,5.0936,0.4324352380952381,4.59262,4.546805,2.1473,1.91686,4.06025,1.58582,2.334005,2.28441,1.6831575,2.791205,2.4563566666666667,2.852975,4.306445,0.6258376923076923,3.7685,3.6634,0.4477810526315789,2.4935066666666668,3.374285,2.56103,3.73392,1.916395,4.762885,3.66733,3.07161,4.245945,3.29537,4.572325,2.96785,4.05484,2.2690175,4.819580666666667,3.72131,3.5374,3.23199,1.8039999999999998,4.419665,3.57258,6.848891666666667,3.323735,4.742105,6.7988800000000005,4.855554,2.3629125,5.0549,6.863267500000001,7.408054,2.5573566666666667,2.41427,4.774415,5.64508,3.94096,3.38744,5.548831666666667,2.3166825,2.143445,2.1289675,60.22678204819647,5.78905,4.279215,2.5672,1.08104,3.27371,2.90387,3.5370000000000004,0.9580377777777778,4.638675,0.7738244444444444,7.575755357142857,1.870966,3.10787,1.8325479999999998,2.62951,2.4995533333333335,2.4146199999999998,2.3981833333333333,2.17644,3.1720633333333335,1.5154166666666666,4.918176666666667,3.567266666666667,1.35091,2.265966666666667,1.3323533333333333,1.3982125,7.3369,5.86705,3.287725,5.2149,5.90294,1.5264428571428572,3.3539,3.2333,1.5832925,4.91976,3.857915,4.02907,1.95393,3.1245683333333334,3.648233333333333,3.85889,5.39195,3.99395,4.81575,2.1964025,3.697435,4.358099999999999,3.3384,1.7384,4.679615,3.3595,4.203535,4.94449,3.844655,4.24734,4.887815,4.27013,4.33765,4.59753,4.39026,3.1128366666666665,3.665975,4.765475,3.12599,4.159695,3.75185,1.37236,1.37236,4.60599,4.80831,5.3869,4.43577,4.883555,3.606533333333333,2.70376,4.34407,4.62936,0.694559090909091,5.1071,7.622645,5.17195,5.77335,1.3325222222222222,3.50353,0.8357316666666667,0.8357316666666667,0.8357316666666667,3.610485,3.4652666666666665,3.1987466666666666,3.5174333333333334,0.940207,4.76095,4.917,3.03484,1.807165,2.0540875,4.235525,3.81144,3.70199,3.0601439999999998,6.3046,3.493695,2.605653333333333,4.65433,6.55465,2.148,4.049695,3.61773,2.8328,4.281225,4.16114,4.025325,5.3727,3.77527,3.3004044444444443,2.0313066666666666,2.0313066666666666,0.7081354545454546,8.6465,2.049055,5.99305,5.56785,4.77966,4.32337,3.70379,3.0930316666666666,4.47961,7.768572499999999,5.744233333333333,2.3477799999999998,4.46164,1.1318199999999998,3.572865,1.9106466666666666,0.9469488888888888,1.1994857142857143,2.9252000000000002,3.2843166666666668,2.732153333333333,1.3468442857142857,2.9443966666666666,3.2272833333333337,0.9554177777777778,2.94416,3.4941666666666666,1.618916,1.7079280000000001,3.050603333333333,3.0850866666666668,3.2127700000000003,2.5054766666666666,1.7744499999999999,5.31565,4.865845,3.901115,4.402835,5.1092,3.123435,4.92607,5.51825,4.71216,3.973135,3.99374,14.384176666666667,7.723505,3.3114066666666666,3.428025,2.6220033333333332,3.67859,3.184275,4.35913,1.1187233333333333,4.605675,3.68894,1.22807,3.467685,2.954563333333333,4.247595,3.97096,3.746265,5.83185,6.934183333333333,3.954595,1.5521900000000002,1.5521900000000002,1.5521900000000002,4.73457,1.4538483333333332,1.449225,0.52976,4.345254583333333,3.1003166666666666,4.14555,1.0310700000000002,1.12550375,3.49917,4.47884,3.93709,16.99363126190476,4.66411,4.47385,5.9828275,2.9335799999999996,3.82936,3.95038,0.9604222222222223,1.45811,4.348835,3.83168,4.730775,4.4083,4.697215,3.869855,2.7377468888888887,3.308385,5.33815,0.58731,4.949155,2.2950475,4.68028,5.9606,3.6363,2.45534,3.9454199999999995,1.7685466666666667,4.19626,6.1055,3.009263333333333,2.28343,4.855145,4.769505,4.884555,4.148625,3.920385,4.195145,5.10965,4.9161,4.93438,5.3831,3.847735,1.2562842857142857,1.73771,6.888256,5.07565,4.427455,5.25345,2.5529,2.6773633333333335,2.6865666666666663,5.495043333333333,1.85825,2.037945,3.0903333333333336,3.32788,3.26854,4.464785,3.915795,5.50541,1.28985,4.545405,0.9997716666666667,4.06757,3.298855,1.7393049999999999,4.31469,1.0092522222222222,4.667475,5.29655,4.959065,4.700605,3.7750508333333332,3.8678,2.9255566666666666,4.729665,5.16975,3.214195,3.86319,2.40704,2.55691,1.936295,2.605435,3.64251,5.06245,1.09514875,4.3928199999999995,1.33706,3.144565,1.5560166666666666,1.09514875,0.2445810810810811,4.343655,2.902985,2.4118375,1.8269766666666667,2.58878,1.093665,3.672395,3.6548,4.759505,2.519573333333333,6.37625,7.3178475,3.027533333333333,3.179126666666667,2.73944,0.8445819999999999,2.2310733333333332,6.2809,4.79734,4.97542,5.18645,2.1307266666666664,1.2144933333333332,3.7842575,1.56418,2.2281275,1.7558575,1.586215,1.837775,1.870865,1.99213,1.863415,1.9220275,1.33104,1.516945,1.89591,2.351295,1.9635325,2.296466666666667,0.5433206666666667,1.660502,3.4944,3.1360033333333335,1.8801275,2.09579,2.0271325,4.44196,2.2468766666666666,2.534,2.773125,4.97721,4.96013,2.3436033333333333,4.62811,1.7463722794117646,4.31507,21.6612645,4.8054966666666665,4.54194,4.65042,3.487766666666667,4.078695,4.624415,4.214015,4.29322,3.0937866666666665,0.83246375,3.144755,5.0057,4.124095,3.94878,1.6937466666666667,2.26625,2.318966666666667,2.477505,1.378197142857143,3.1285666666666665,5.57065,4.14218,3.192825,4.23348,5.1852,4.30472,4.76874,1.3430625,3.810185,4.148895,4.60621,1.500662,2.6625099999999997,1.85421375,1.85421375,3.37731,4.924495,2.4960299999999997,3.1427333333333336,4.45415,4.62299,6.515644999999999,4.289365,2.28051,1.45811,3.420715,4.200335,3.2147133333333335,2.34184126984127,2.34184126984127,3.31645,4.40275,4.31908,5.283131666666667,2.279695,3.4324564444444445,0.5941744444444444,0.5941744444444444,0.5941744444444444,3.610885,3.734865,4.127648333333333,4.84855,1.78766,5.86575,4.824285,4.293085,4.270255,5.1157,2.698955,1.425212857142857,4.37654,4.983115,0.48365642857142854,4.056866666666667,4.92682,1.7477166666666666,5.62365,5.5345,4.65816,4.3134,3.85326,3.44013,4.4954,1.64575,4.37112,1.6513733333333331,4.08781,5.3263,1.120755,3.031775,7.081545,3.54193,3.9679333333333333,2.4717775,4.140555,5.50935,3.7326,6.687546666666666,4.24685,2.1768733333333334,3.166926666666667,2.761836666666667,2.8714399999999998,3.0930433333333336,1.7827833333333334,4.88522,0.6133216666666667,1.8433525,1.8433525,3.14782,4.64886,2.32922,3.25401,4.93342,4.03493,4.468705,1.3782633333333332,5.344255970238095,4.61237,5.3019,4.03793,4.386498166666667,3.8511615,0.5353366666666666,2.449408571428571,1.022095,0.5353366666666666,4.093515,0.8311022222222222,4.490475,4.014425,6.803076,2.0945033333333334,1.0550475,1.089668,2.223615,2.9085199999999998,1.6295133333333334,2.3822466666666666,3.319645,3.51653,1.9899633333333335,2.2473033333333334,4.704225,3.6684712499999996,3.845245,4.78268,3.57561,4.799145,6.9519383333333336,4.23049,3.4673,4.439005,3.65402,4.26432,4.98625,6.6391,5.3873,2.6049533333333335,1.0129255555555554,4.70968,4.180175,3.800265,5.0226,4.417245,3.81268,3.0208166666666667,2.6060866666666667,3.32328,2.9545833333333333,2.4758833333333334,3.175656666666667,3.441466666666667,2.7313233333333335,4.56727,4.6368,4.498705,5.62605,3.1095,3.1682,2.904425,0.7233642857142858,4.7001,4.126395,4.794405,3.3299833333333333,6.334983333333334,3.787805,4.64793,4.53448,0.6586061538461538,0.5634821428571428,4.33202,2.8634295,4.071435,4.98153,4.651575,1.910284,5.1063,4.478135,2.950836666666667,2.7094233333333335,2.42475,2.303495,3.4778333333333333,3.5041666666666664,3.307306666666667,3.3163666666666667,3.5581666666666667,2.6691,3.4122333333333335,4.106166666666667,4.417885,0.58348625,0.58348625,0.58348625,3.6754768055555553,3.867266666666667,3.525533333333333,2.87424,2.78075,1.16369125,3.2680966666666666,3.28943,2.218455,2.55736,2.2837066666666668,0.9131911111111111,3.0654500000000002,4.55156,9.659903416666667,1.5232079166666666,0.5153730000000001,3.60245,0.5153730000000001,0.5153730000000001,0.5153730000000001,0.5153730000000001,2.2240025,4.2138029999999995,4.283205,5.1922,5.8871,2.893353333333333,2.8691999999999998,3.10627375,3.1335083333333333,5.31635,1.0393733333333333,2.734773333333333,2.991823333333333,2.655116666666667,3.28302,3.546185,2.359766666666667,2.63233,1.1960777777777778,4.112745,3.601495,4.546035,0.84011,0.589244,0.589244,0.9685841739130436,1.8086941739130435,0.9685841739130436,0.9685841739130436,0.3416821739130435,0.3416821739130435,0.9685841739130436,1.42526,2.478353333333333,2.862055,3.215363333333333,2.58403,2.4384133333333335,3.069786666666667,2.62628,4.42224,3.402095,1.7852425,2.201146666666667,1.6539975,0.1842948416789396,0.1842948416789396,0.1842948416789396,0.1842948416789396,2.3580433333333333,2.7979299999999996,0.8134460000000001,4.817565,0.8124536363636363,1.7408100000000002,4.6246366666666665,4.884815,4.308855,2.76947,4.43477,4.287585,1.7598266666666669,1.1907175,3.83274,4.79893,5.7276,2.200605,1.4110433333333334,1.8193133333333333,3.3504666666666663,1.4214900000000001,2.73334,3.08846,2.9418466666666667,4.88521,4.08831,3.094775,4.44607,2.8197166666666664,4.691755,5.46085,4.34154,4.93664,5.14475,5.24852,5.246560833333334,3.0039480000000003,5.639776666666667,4.576575,5.28005,4.257215,5.0113,2.2243625,2.89546,4.197495,5.2819,4.357575,4.023125,3.61728,4.32679,3.865085,2.4016566666666668,5.5983,3.56405,7.5534425,6.1145,6.0916,5.14145,1.4624142857142857,1.01417,0.6373599999999999,1.783894,4.66323,4.77286,4.005405,1.7055140000000002,4.23175,2.781725,4.52085,5.12275,6.217036,4.163675,3.077455,1.77784,5.0752575,3.777495,3.319345,2.066685,1.08555375,3.840295,2.960515,3.9487050000000004,3.4814,2.007305,4.727395,1.5734899999999998,2.8717633333333334,2.499885,3.609125,3.08213,4.842345,2.0625125,1.547785,5.7341,2.9361266666666666,8.9726,2.7935,4.725375,5.65245,4.404735,4.78955,4.24012,4.62115,2.3038925,4.60948,4.946035,2.3781925,4.44604,4.30334,7.665265,4.86855,3.26245,4.32946,3.966075,3.6684712499999996,3.41739,5.27525,5.0986,2.4483275,3.0093266666666665,3.590666666666667,2.19012,2.681865,4.522605,5.8013,5.0203,4.645125,5.2637,4.757915,6.20355,0.6342761538461539,3.15035,1.4942571428571427,31.94064111346187,2.38286,4.43056,3.32712,4.42432,1.720766,2.4231366666666667,3.666249880952381,1.5176623809523808,1.5176623809523808,1.5176623809523808,1.5176623809523808,2.1485875,3.385745,0.3868711111111111,7.7754988888888885,0.3868711111111111,5.38205,5.01335,2.31124,5.5361,2.2996625,3.9142313333333334,2.56222,2.4481033333333335,2.67858,2.102253333333333,0.6406269230769231,2.5560033333333334,0.7439091666666666,3.1142366666666668,2.0250033333333333,2.328788,1.1661516666666667,2.328788,6.2752,8.042725,5.1276,4.17558,5.4608,6.04055,7.723116666666666,2.881425,1.787655,1.787655,2.314973333333333,5.04205,3.701425,4.422185,6.665603333333333,4.415025,2.97993,4.00837,3.379135,3.43587,2.1931,1.3562020000000001,1.72477,4.769865,4.06756,4.987316666666667,1.899385,4.637885,1.6839400000000002,3.26513,1.591966,3.327196666666667,3.4427,2.24121,3.2006666666666668,3.3068033333333333,4.886435,0.6702199999999999,3.441905,3.664766666666667,2.794696666666667,2.2851466666666664,4.302899375,3.1624933333333334,2.602716666666667,5.45291875,4.033105,4.907995,3.83826,3.48524,4.954755,5.226,2.3952666666666667,6.0402,2.275631833333333,2.3478833333333333,3.189166666666667,3.0479299999999996,3.3467000000000002,2.94478,1.9530900000000002,3.27270243939394,4.621455,3.4682399999999998,2.5685830000000003,2.5685830000000003,2.406675,3.770705,3.791845,0.6110009090909091,3.06558,2.97676,8.16605,0.9480181818181819,4.42399,4.143495,5.5933,3.757805,4.08807,2.19581,4.06057,2.809505,6.245,2.7724458333333333,1.01928,4.03748,2.55886,3.884265,2.8457033333333333,3.53016,3.67055,3.96072,5.171151,3.016285,2.078415,4.585055,2.41186,4.522635,4.674555,4.83397,4.426615,4.013315,3.085975,2.0733966666666666,3.10378,2.6287733333333336,2.9024750000000004,3.4558,2.751842857142857,5.308479999999999,3.068493333333333,2.6415266666666666,7.1908441666666665,5.610332916666667,4.2409324999999995,3.2502933333333335,3.9632,3.931625,3.406955,2.2846475,3.9860125,5.039,4.69026,1.5929133333333334,4.54964,2.8781199999999996,7.0128924999999995,5.08115,9.144378888888888,3.94543,3.25098,2.31245,4.055545,5.7258949999999995,7.64464,4.03876,5.50374,4.464795,3.14033,3.90776,1.683468,4.989292000000001,1.536395,4.692505,4.677135,3.3350000000000004,0.885725,9.707041666666667,1.247288888888889,1.5273975,2.3099366666666667,1.64536,3.4201,1.34948,3.68867,3.36132,2.694456666666667,4.2462,0.961175,4.709545,1.3478133333333335,2.066509,3.76801,4.234245,1.985475,4.89678,1.588904,7.69437,4.288015,2.80169,3.87194,3.14263,1.1674491666666666,7.31422,2.909845,3.361405,2.229305,3.91639,2.194425,3.5218949999999998,2.017425,3.84269,1.28718,4.7695,4.644755,4.007385,0.9103490000000001,2.3205533333333332,3.771785,5.35715,5.1449175,1.4010479999999998,1.4010479999999998,6.0728,5.2212,4.11452,3.68695,3.355345,9.565045000000001,4.266205,5.3326,3.86145,2.3433075,2.0554829019457244,0.35435249999999996,0.1886303225806452,0.5758458781362007,1.125284523809524,0.7036931797235023,0.1886303225806452,1.287655,0.38721555555555554,1.4796370238095238,1.8635008781362008,2.33104,2.23783,2.11387,5.31965,7.0321549999999995,5.03565,5.653,4.520115,5.35945,1.2677266666666667,5.10575,4.183445,6.21715,5.40305,5.5786,5.82555,5.53895,5.6685,1.4440216666666668,1.5620714285714286,2.07624,6.585998,1.552748,5.4864,5.0017,7.403359166666667,4.97994,5.62675,4.572575,4.81564,2.700675,5.64455,5.5451,6.363203333333333,5.206,6.046335,5.8265,3.9278312499999997,4.27521,3.7042333333333333,0.949761,3.6819666666666664,4.72673,1.3643375,3.874833333333333,4.990265,4.395285,5.4408,2.5471,3.21412,2.514606666666667,4.91146,2.3446,3.66694,1.3033466666666667,3.34641,3.7858,4.404155,4.4938,3.43220875,0.6699174999999999,5.879,1.08886,4.143645,3.347766666666667,3.697035,2.0294766666666666,3.768205,3.715276153846154,3.9274,4.37219,15.051419476190476,5.08539,2.2190825,8.23446,1.4993525,3.736195,3.069793333333333,2.8841633333333334,2.2970466666666667,0.17834608695652174,3.291786666666667,4.63829,1.827932,2.2392533333333335,3.636433333333333,1.8634775,2.3021333333333334,1.4069842857142858,3.32923,5.3775,4.007155,4.18253,0.4759514285714285,2.3282633333333336,4.313565,3.919865,4.692685,5.1134,4.329895,3.998065,0.5519258823529412,2.5265833333333334,2.5265833333333334,5.6268,4.774005,4.908545,2.476805,3.7735333333333334,3.3457666666666666,5.03305,3.99828,5.9225811111111115,4.87095,4.59912,5.04745,2.599825,2.3205999999999998,4.821185,4.233295,3.573625,3.57159,1.7755400000000001,4.22638,4.359405,3.640905,5.07935,3.92248,4.724475,0.6577286666666667,3.49237,0.766735,3.2373066666666666,4.24316,4.37831,18.769893809523808,4.021625,3.629605,3.0693566666666663,1.17586,2.6789233333333335,2.455033333333333,1.528684,2.442895,2.414025,5.6011,2.5688299999999997,3.67663,5.24905,2.202745,4.648165,3.4819666666666667,4.41077,5.3898,5.3327,1.90861,1.7696,2.39341,4.7977,5.2162,1.1816555555555555,5.5953,3.869425,5.5714,4.949645,1.76753,4.55097,3.954315,3.63286,4.82068,4.363915,2.903636666666667,0.69576,7.520483333333333,1.564846,0.17868916666666668,0.17868916666666668,0.17868916666666668,5.1752,4.17909,2.51527,4.51218,2.814655,4.57395,4.336016428571429,4.158465,8.453256666666666,4.212665,7.096555,0.83072,1.1068825,2.618575,4.99681,4.67845,2.0722066666666668,5.50255,4.734205,3.36457,4.74065,4.691325,2.411653333333333,4.270785,4.9984725,2.557166666666667,2.815576666666667,2.9897233333333335,2.62862,5.8592,3.82643,0.6746614285714285,4.31386,3.4583,4.338535,4.888343333333333,4.846245,4.523765,5.34385,3.481705,13.72988625,5.2141,6.529240416666667,3.00145,6.965453999999999,5.2289,4.120545,2.4030225,2.3768666666666665,9.30914,2.1053833333333336,4.077633333333334,3.8936333333333333,3.778033333333333,2.421936666666667,3.03616,2.1619925,2.0915,2.907883333333333,1.88108,3.807066666666667,2.7563999999999997,2.5413900000000003,3.1694266666666664,3.6329,2.3228,2.3228,2.52461,3.4676333333333336,3.3828333333333336,2.44422,3.1140233333333334,3.5483,2.825563333333333,2.79848,3.441933333333333,2.4767233333333336,2.3036475,3.667066666666667,2.9434566666666666,1.860876,3.8874333333333335,2.7434733333333337,2.4087366666666665,2.990873333333333,2.4830383333333335,3.3675333333333337,5.570515,2.44537,3.4720666666666666,1.9276,11.277536333333334,2.93877,1.8328933333333335,1.92669,1.0511066666666666,1.648778,5.105066666666667,2.857824,2.857824,1.78614,1.5655849999999998,3.6102316666666665,3.8836916666666665,2.149363333333333,1.4962516666666668,1.598638,4.194746,3.3044766666666665,4.027833333333334,8.071983333333332,2.8343742857142855,3.33184,3.176056459627329,4.306,2.3036475,3.3283733333333334,3.1143066666666663,3.0214733333333332,3.088860833333333,0.8605975,3.2658705,3.18009,2.8271466666666663,4.36015,3.1599766666666667,0.6975618181818182,1.9890454761904763,4.42613,2.5700295,3.127473333333333,1.7519333333333333,1.7519333333333333,2.0694625,3.702396666666666,1.03305,2.3728575,4.877613333333334,4.877613333333334,0.6516523809523809,6.782299999999999,3.820845,4.58125,5.4659,1.2040942857142858,3.6072,3.5081333333333333,5.2713575,7.036231666666667,3.20525,0.727078,2.9308266666666665,2.7517866666666664,3.2645813333333336,2.80852,2.9011066666666667,3.0266266666666666,2.490405,2.4958066666666667,0.8444345454545453,3.146805,4.180525428571428,1.317285,1.3329214285714286,5.3599,2.50513,1.636965,4.49724,1.7884,3.54237,2.40911,3.4915000000000003,8.569764583333333,4.428651666666666,4.556035,5.2303,2.522427090909091,0.724726,1.61316,6.997906666666666,1.6620566666666667,4.160855,4.46597,3.752145,21.88062925,3.1360499999999996,2.039773333333333,1.17190875,3.2469333333333332,1.4664466666666665,4.037476,5.0917,3.2683745,3.1996933333333337,1.7355433333333332,1.3925966666666667,3.151146666666667,0.553700625,3.09009,3.6946,2.9042499999999998,2.699403333333333,2.6395233333333334,2.600546666666667,2.263263333333333,3.0795266666666667,1.6883780000000002,3.4069000000000003,1.5162483333333334,3.780035,4.170725,3.1521000000000003,5.0742,3.82658,4.037645,5.0933,4.70726,3.0746599999999997,2.9376599999999997,2.60746,1.287955714285714,1.287955714285714,1.287955714285714,2.011115,2.8080966666666662,2.6914033333333336,2.5887433333333334,2.425586666666667,1.6811225,4.06296,4.33907,3.618525,6.383025,3.31488,2.111975,1.8746375,1.1486666666666667,2.35729,3.76784,2.44714,2.637383333333333,2.4287666666666667,2.6995,2.53494,2.854673333333333,3.0609566666666663,2.61747,2.6557366666666664,2.94129,2.2973466666666664,2.08214,1.8108,1.841015,3.1831333333333336,3.1973833333333332,1.8967175,3.739145,5.27435,2.9855,2.672468076923077,5.553660000000001,4.418865,4.945515,5.546,5.4015,4.06184,7.292505,1.339825,4.57612,2.581455,4.967145,5.37785,3.32605,4.454735,2.2939725,7.39534,2.5985,0.8904166666666667,9.04073,4.82981,6.147460714285715,4.818155,3.0600545,1.80978,5.1527,4.48145,4.61467,5.37725,2.36577,4.332485,4.6366,1.6539975,4.32839,2.820975,1.4859866666666666,5.076,0.658364705882353,4.462083333333333,3.570905,4.52301,3.290775,1.816725,3.8116,1.942555,1.2630375,3.2594766666666666,3.5942333333333334,3.3193066666666664,7.268017435897436,1.689575,6.9647375,9.98641,5.9785375,3.53744,1.2636785714285714,3.0370566666666665,1.2636785714285714,2.7283866666666667,2.0161633333333335,0.3254241176470588,1.1755778676470587,0.3254241176470588,0.3254241176470588,0.3254241176470588,1.1755778676470587,1.1755778676470587,0.3254241176470588,0.85015375,4.977835,3.176845,3.08037,3.330245,3.706645,3.13882,3.15303,1.5968579999999999,6.819605,2.6816066666666667,4.172855,2.598543333333333,1.0152545454545454,1.24058375,4.86562,3.80937,1.0867744444444445,1.7436699999999998,0.7248318181818182,3.241537694805195,4.292595,5.34065,3.7894,5.684563333333333,0.6042723076923078,4.46561,3.688635,3.4125666666666667,2.435703333333333,3.2009566666666665,2.517403333333333,3.13617,2.6577933333333332,3.063245,3.517045,5.30405,4.70394,1.23069,4.47607,4.406275,3.051545,3.76688,3.39005,0.34829133333333334,4.75769,4.02984,3.418425,3.31504,4.61466,3.906495,1.8495,4.045345,3.902075,8.585185,4.91069,5.42875,4.116015,3.8660474999999996,0.8601075,2.10899,2.00615,1.48399,1.7476033333333334,5.0134,5.2729,4.295035,4.501445,3.0601439999999998,2.6441316666666665,0.9400666666666666,4.08914,1.1808533333333333,1.1370666666666667,3.13612,3.61801,5.11605,1.21286125,2.516243333333333,8.3693,3.1109466666666665,3.0535433333333337,0.86105,4.40008,12.106813333333333,3.552815,3.81629,3.259555,3.77529,4.93809,5.06265,1.927952,4.84664,0.6354792307692307,4.88855,2.2493575,1.8686025,1.8686025,3.347466666666667,4.71208,1.8032666666666666,4.975075,1.6942428571428572,4.795435,2.7714008333333333,3.05555,4.55466,3.363625,3.5006524999999997,2.3439425,2.59044,2.59044,11.397035,0.7813019999999999,3.661875,3.6206333333333336,2.1403825,2.058885,0.9549071428571428,1.354545,1.3106771428571429,1.961725,5.37815,2.600625,4.592852499999999,2.2143433333333333,4.60961,4.682955,1.6635016666666667,2.00467,1.0044816666666667,6.287090083333334,2.1126575,2.16469,1.683032,1.6861339999999998,1.17190875,2.5019187499999997,3.352275,2.729346666666667,3.17184,2.36375,2.5923833333333333,1.8366133333333332,2.983563333333333,2.6644733333333335,0.8871433333333334,1.9922766666666665,2.9637700000000002,2.8757266666666665,2.354906666666667,1.1676466666666667,2.5040833333333334,2.1150366666666667,3.4171,0.37139315789473687,0.3953166666666667,2.2428033333333333,2.2214899999999997,3.005095,3.13135,2.63614,5.1491,6.0502,4.33423,4.73901,4.290245,4.00955,2.3232266666666668,3.860755,0.6319927272727273,0.06583363636363636,5.0994,0.06583363636363636,3.93574,3.36672,5.67525,3.364625,6.06005,4.72717,2.485533333333333,2.6426066666666665,1.4113433333333332,5.5827,5.2319,2.9339099999999996,5.13715,2.03687,4.3212,2.1132821739130434,3.25444,3.354433333333333,3.94539,4.421123333333334,3.14645,2.1903,2.1903,4.05295,7.93726,3.49346,2.24832,2.43575,4.039295,3.48644,5.21365,4.204635,1.0894688888888888,4.320845,3.098516666666667,2.70261,4.14588,1.1063699999999999,2.4112833333333334,3.82925,3.98501,5.18195,2.79033,2.671,3.955615,3.83203,4.17139,5.63015,4.131975,3.366955,3.728025,2.9088,3.0466766666666665,2.647276666666667,3.4905000000000004,4.531185,2.9807066666666664,4.944630833333333,4.36368,3.238495,5.10435,4.5983,3.722535,1.4696820000000002,1.2896175,4.075725,3.2019466666666667,1.5869666666666669,2.85675,3.23144,3.28482,3.8576377777777777,3.102263333333333,2.319699166666666,12.861851472222222,1.8308333333333333,1.8444800000000001,4.81196,1.226028,3.2524833333333336,4.458625,5.1775,3.28376,1.0440588888888889,2.273,2.519573333333333,1.546438,4.61904,0.91029,0.91029,3.6731333333333334,2.0952066666666664,1.5779266666666667,1.6667325,3.344305,2.80013,1.98541,2.693415,3.4549583333333334,3.1357266666666668,3.0912333333333333,2.0503,6.19615,5.8496,3.86758,0.6938361538461538,3.368095,4.093605,1.0500272727272728,4.934735,3.3019266666666667,8.648276666666668,4.691845,4.972995,3.516955,1.4764575,2.745085,5.10005,4.970105,4.400895,3.759485,4.346455,3.76256,3.5018666666666665,3.5018666666666665,3.092585,2.892005833333333,5.0292,1.586675,5.535575,5.988541666666666,1.7477166666666666,4.943745,0.989958,5.20905,3.820685,4.645305,4.72478,3.75864,2.58995,2.55915,4.728395,4.533815,4.93615,5.2026,2.23462,1.383746,3.88398,2.3093366666666664,5.3178,2.942755,3.529455,6.955885,3.699635,4.4998,4.559585,4.18275,4.617245,8.255035,3.58978,3.322185,9.75507,3.94343,0.662415,2.138298076923077,4.62674,0.6726066666666667,4.843395,4.403565,5.1104,4.61939,3.535805,4.113595,4.665,4.74345,2.305215,0.7010914285714286,5.117,4.7126,4.70503,4.44704,2.7814433333333333,5.17835,3.660495,0.656386,3.8479,4.12617,2.340265,3.102983333333333,4.15898,2.248005,5.2162,5.27035,4.441905,0.8881375,3.4431,6.092619999999999,6.092619999999999,8.689986666666666,2.0998799999999997,0.83979875,0.83979875,25.906709999999997,2.841675,8.343655,0.3252125,1.22801,3.1961999999999997,1.00835,3.66377,3.821795,2.3566075,2.3566075,4.58701,4.778865,3.45051,2.5698708333333333,2.5698708333333333,3.403385,3.703405,3.96136,3.0252766666666666,2.257303333333333,2.3907941666666668,3.919247,1.97836,3.477785,2.5281833333333332,3.008889285714286,3.008889285714286,3.673833333333333,0.8779966666666668,2.51513,1.4745866666666665,3.635066666666667,3.14796,2.93005,2.822953333333333,5.02555,2.359765,3.0165733333333336,5.6984509999999995,1.517444,2.208465,2.981775,2.430563333333333,4.275715,5.744457809523809,1.1538633333333335,3.782033333333333,2.551125,5.04497,6.38603,1.551215,4.758623333333333,5.1534320000000005,3.334120857142857,4.578433333333334,1.1199814285714287,1.500662,2.911235,3.7898652380952385,1.4184183333333333,2.57965,1.601885,1.674842,2.37169,3.470346,5.277511,1.1231283333333333,1.6029142857142857,2.8904433333333333,12.4481,4.561843333333333,2.81082,1.260387142857143,2.764457142857143,1.0812071428571428,3.2972633333333334,4.576733333333333,5.1443,3.386233333333333,5.26705,1.31101,3.9277333333333337,4.323265,2.8844166666666666,3.761608888888889,2.9323533333333334,1.0384955555555555,2.4804999999999997,2.7985100000000003,6.89891,3.2427891428571427,2.60439,0.688884,4.716833333333333,3.4850999999999996,1.334838,5.670975833333333,1.9169425,3.193583333333333,5.9501,1.324311111111111,3.02524,1.0280181818181817,3.2472100000000004,4.36511,3.1088633333333333,3.001136666666667,2.1908433333333335,2.6369233333333333,5.20665,4.80322,5.2443,1.7265525,4.426325,4.37093,4.3885499999999995,3.629124,2.38584,4.201414,0.885294,2.910777619047619,5.52875,2.820275,4.20508375,1.4839875,3.344466666666667,1.9566880000000002,1.9566880000000002,7.010556666666666,3.1380966666666663,5.667051666666667,3.5622233333333333,1.9381266666666666,2.8638209523809524,4.706738333333334,5.799716666666667,8.272128333333333,5.033513999999999,2.7168595,2.1362866666666664,2.2519471666666666,4.03727,3.81848,1.580674,1.820845,2.544777142857143,1.063795,3.27791,19.134195,3.308856666666667,2.963903333333333,3.0465,2.955023333333333,2.56482,1.5121033333333334,3.081136666666667,3.3617666666666666,3.1480599999999996,2.4776000000000002,5.8110219999999995,2.71036,4.35441,2.828728,2.30979,1.32952,4.084292222222222,2.245485,4.607025,4.660745,4.04967,2.8512075,3.1594466666666663,2.4577933333333335,3.3346999999999998,2.4284266666666667,3.4680666666666666,3.338366666666667,0.7922236363636365,4.8803,2.511585,3.6605333333333334,2.9344683333333332,1.9762875,2.3947129166666667,2.3947129166666667,3.8482462500000003,2.2181345833333332,4.59856,4.510435,4.100085,4.43551,4.86382,4.6246475,4.6246475,4.2012,3.08191,4.92099,2.684065,1.651734,2.4622699999999997,4.528165,4.64277,2.606025,4.028175,6.2229525,3.8819666666666666,6.7297038928571435,2.991895,0.848794,0.848794,3.20094,4.527245,3.778725,3.3373660000000003,2.357963333333333,1.73001,1.6812033333333334,3.0757833333333333,6.85984,1.5385016666666667,4.142475,3.31855,3.792675,4.798765,5.15705,5.019817645833333,3.5110333333333332,2.372915,4.976005,3.29875,2.030745,1.1121320000000001,4.598655,2.7197,5.89195,3.17225,2.61965,3.468405,3.631575,3.90295,5.01605,3.357305,4.546885,4.091185,4.143015,3.531775,3.417,3.381315,4.23974,2.621026666666667,4.585575,4.16326,4.97423,0.7023533333333334,2.4313,1.926375,2.0248725,1.83216,2.78735,2.6671866666666664,1.7956033333333332,4.902315,5.61978,1.9556933333333333,4.180255,4.732325,2.25803,5.892663333333333,4.193982083333333,5.43985,5.13655,6.957496666666667,2.048146666666667,2.76092,1.9742133333333334,3.271653333333333,1.811845,1.75336,3.872495,3.548925,5.37455,1.089108888888889,3.062385,4.500245,2.317915,5.8481,3.61385,2.5217,3.6641666666666666,3.120175,1.9385825,1.4320297499999999,2.531625,2.4259825,2.8796,2.0189975,3.1957714285714287,3.1957714285714287,3.410625,2.97725,18.33503154761905,1.0351033333333333,4.2253541666666665,2.1517375,1.8980233333333334,3.986435,4.146225,1.972355,3.706375,4.61911,1.4243466666666666,1.4243466666666666,1.2230666666666667,1.8787900000000002,2.753856666666667,3.12448,4.487326666666667,3.997135,3.6862999999999997,0.5371052631578948,3.6483219298245615,1.9060266666666665,2.1999,4.4705125,3.519425,3.7693,3.56707,4.67906,4.16308,1.946505,4.695945,5.64508,2.219715,3.455335,5.03905,2.08017,4.439025,5.1929,1.2895785714285712,1.878986,3.6028333333333333,0.8648785714285714,3.174416666666667,3.949985,4.968535,4.675155,2.7429127777777778,7.9722116666666665,3.0193966666666667,2.824973333333333,0.47623941176470586,4.215425,5.174143452380952,2.7692869047619046,5.42945,3.67444,2.6248255555555557,1.88611,5.4992895,4.51205,4.785095,2.1550075,2.1346,4.43265,4.091566666666666,2.921726666666667,2.1720725,4.284743333333333,6.7712,2.6076,3.69972,3.53544,4.242,1.4072685714285715,1.4072685714285715,3.0724699999999996,3.2042333333333333,4.850025,4.77978,4.653105,3.70135,2.4960475,2.167855,1.5689433333333334,1.3792342857142859,5.1606,6.1329975,5.34925,5.5683,4.39512,6.66944,4.52067,2.74715,4.071021333333333,2.51078,3.0014875,1.652078,5.1335,2.3290233333333332,4.28427,5.3489,4.010745,2.681853333333333,2.9361266666666666,1.6353714285714285,2.54145,3.970333333333333,2.24469,0.564641875,3.377266666666667,2.96287,2.7313233333333335,2.63763,2.178695,1.852656,0.7468572727272726,0.7468572727272726,3.6623,2.048725,2.4636025,4.138645,5.59705,5.13775,2.509015,4.1007,4.667475,2.293976333333333,1.19156,2.56907,3.19363,0.9449275,3.2655475,3.07028,2.7609,2.17091,4.071395,2.627665,1.9409466666666668,1.3768157142857143,4.25808,6.51002,3.865005,1.8890532142857142,5.05065,3.22406,3.249555,3.332385,2.765065,1.7376766666666665,0.9974625,3.8019,2.2907391666666665,2.199343333333333,1.65079,2.2164766666666664,2.212143333333333,2.635686666666667,2.76621375,1.3640866666666664,2.14114,2.0220325,6.4811575,4.053235,3.96445,3.86993,3.687645,3.1321733333333337,1.6022534188034188,4.763885,4.84987,2.440385,5.3569,2.10057,4.44503,1.1646222222222222,4.066265,4.24691,1.76658,7.38898,3.53622,1.8099925,1.9401175,2.210305,2.566625,3.242976666666667,1.3374908441558442,3.199313333333333,5.5316,4.78123,4.45392,5.4456,5.44145,4.26467,0.93473375,4.54988,4.640465,4.2242,4.900705,4.264876666666667,4.75692,5.53305,2.986275,1.2393349999999999,1.2393349999999999,5.0613,5.80138,3.17255,3.161796666666667,4.06693,3.427245,1.603506,4.367985,3.97409,3.53523,3.800245,3.10441,2.668976666666667,4.80914,2.423943875,10.69384383640869,1.8155700000000001,0.79864,2.43871,1.672185,2.12375,2.3823525,1.78721,3.1527433333333335,5.0159,5.5611,3.053263333333333,1.4752983333333332,6.332737976190476,1.3318942857142857,3.2071366666666665,0.5145190476190477,4.115223333333334,5.8908,3.74852,4.422745,13.802495,5.385,3.176223333333333,2.9512933333333335,4.774025,3.143963333333333,4.774845,1.234445,1.330915,0.68506,5.9536,4.363525,1.961206,4.77112,4.985905,6.2857,4.820935,4.63416,4.718645,6.4457,3.73449,5.40185,4.391145,1.59732,4.467855,6.2957,3.800915,4.0157,5.269,3.1539,1.1838725,4.65047,3.896425,1.24177625,3.5635666666666665,3.3336666666666663,2.4271133333333332,2.7738099999999997,2.436636666666667,3.4827,0.6984809090909091,2.749686666666667,2.5937266666666665,2.6073033333333333,3.135256666666667,2.8040866666666666,1.927825,1.4212966666666667,2.6543,2.3974775,2.35899,3.539433333333333,3.0010666666666665,0.75062,3.0269166666666667,3.60122,4.82113,2.6215566666666668,3.9851,5.6529,5.7824,3.350125,3.70286,1.4886857142857142,4.06784,2.6018455555555557,3.9565816666666667,2.8764325,4.642425,4.73836,5.3715,3.39733,4.213166666666667,1.0205920000000002,1.0205920000000002,2.2094419230769233,1.640665,4.28399,2.4063345,2.4063345,4.912455,5.533,3.1093,1.1053666666666666,1.4867428571428571,6.1139,3.99808,2.7363166666666667,3.21237,2.6817,3.114225,2.7363166666666667,4.798555,3.13365,3.27816875,2.624185,1.893755,3.029495,5.11515,2.607785,2.942575,2.258455,6.1327,3.83369,3.2635,3.2635,5.37915,4.24402,0.5312776923076923,4.765815,4.61585,3.0018,2.611795,8.953341666666667,3.548166666666667,4.599315,3.70917,3.1630133333333332,5.8352,3.286035,3.44844,2.7399133333333334,3.261926666666667,2.5910866666666665,1.849878,1.849878,3.647545,3.593195,3.850425,2.22822,1.62117,50.547852007575756,2.8874366666666664,0.8720690909090909,3.0616233333333334,1.9987975,3.4294666666666664,2.8721366666666666,3.301213333333333,3.27906,3.0879066666666666,2.2123,1.08148375,4.639305,3.116135,3.432755,3.974695,5.33745,5.2931,5.2572,5.8759,5.79085,5.0761,5.66835,6.322337500000001,4.95668,6.1386,2.055985,3.97457,6.3557,5.82805,4.159055,3.2915,3.841695,2.295815,3.770565,4.77437,3.08727,3.7927999999999997,1.7585000000000002,3.461525,1.3160560000000001,3.153535,3.822585,3.56581,7.0399424999999995,4.849115,2.1233375,4.474785,4.19875,3.861905,1.08720875,2.859325,3.900665,4.59729619047619,1.1493275,5.3186,1.4688675,6.37905,0.6995611111111111,4.527723333333333,10.445126666666667,4.026265,4.347445,4.132225,1.8912333333333333,3.97699,5.4953,3.0409333333333333,4.43116,8.8929975,3.533333333333333,2.542543333333333,2.9500533333333334,2.8236333333333334,2.907666666666667,2.85688125,1.9627866666666665,2.629586666666667,2.947286666666667,2.71537,2.8610233333333333,3.33858,2.1500366666666664,1.6177466666666669,4.168557999999999,2.46379,2.3764399999999997,4.886791333333333,2.735376666666667,1.2722,2.0084325,2.8235766666666664,5.375335000000001,2.57005,2.355811666666667,2.355811666666667,1.5118425,1.5203025,1.970496,1.80549,6.022765,4.5970475,2.595325,3.196633333333333,3.5327,1.929005,0.5082825,2.7526100000000002,1.876225,0.58403,3.79951,2.5318,2.4291675,3.60244,3.8361541666666668,2.6448933333333335,1.6183733333333334,1.3415416666666669,2.04227,3.354585,3.897355,4.27581,2.975906666666667,4.06187,3.97797,1.124509090909091,8.79447,2.6661,3.175515,1.276625,2.78727,2.55505,2.55505,2.55505,4.575505,5.7587,2.020615,4.899505,1.41689,5.526996666666667,1.6616659999999999,4.313395,4.127345,4.160115,3.93826,5.08635,1.8537,8.157084999999999,4.26336,5.29675,3.306665,3.8375383333333337,3.171203333333333,3.0652666666666666,3.83674,2.7434600000000002,4.475210714285714,4.6529075,1.534035,3.929545,1.534035,3.696035,4.362439999999999,4.7921525,4.362439999999999,1.8010533333333332,5.7584,4.572475,4.43435,2.8600100000000004,3.05063,4.1766,3.086315,4.206005,0.5615835714285714,3.3191166666666665,3.1551233333333335,5.586423333333333,4.617565,2.3762,4.797285,7.4078333333333335,3.421445,2.91484,2.86743,2.3171833333333334,4.453275,3.631385,4.84145,2.29711,4.074365,0.8724299999999999,5.15915,3.217975,4.01852,2.7919066666666663,3.2108166666666667,2.1397666666666666,2.9267,2.7960833333333333,2.6950066666666666,3.947525,2.778075,2.778075,4.902880833333334,3.06325,4.52959,11.558025,0.9722244444444443,4.371155,2.8083766666666663,2.2114233333333333,2.96402,1.449225,7.554769333333333,4.011,3.94869,3.8404416666666665,2.0946266666666666,3.8396333333333335,4.601217805555556,2.44162,0.47343111111111114,1.7279820000000001,1.4344425,5.15535,2.68843,3.23534,3.7188999999999997,3.5182725,2.432165,3.93445,4.564885,3.71223,4.4295,2.06328,4.275285,2.450016666666667,5.81349,3.058745,4.39776,5.2122,4.612825,4.55906,1.95627,3.69485,3.657055,2.5455833333333335,3.36061,2.92567,3.035745,2.912165,3.895285,2.7757199999999997,4.643705,1.8368166666666665,3.875345,2.6816,4.353985,4.9617,3.66934,4.509285,2.65161,4.461335,3.718105,4.04925,2.95469,2.187395,2.77834,2.41883,0.8466766666666666,3.88296,1.980575,3.38444,2.57401,4.056025,3.11353,3.34567,3.065325,3.698865,4.694360666666666,4.2232,3.419365,1.3270533333333334,3.41304,2.81533,1.078148888888889,6.10355,9.19378,3.55889,3.49513,4.66315,5.05325,3.66881,1.9501,3.97159,3.8238,3.19271,3.202795,3.4952,0.63671875,1.2658085714285714,6.2394675,1.6375775,2.63885,5.126416,2.5471,2.222105,2.597855,6.70947,2.63796,4.004005,3.68668,0.7560944444444444,3.355415,2.46307,3.764155,4.521815,6.40433,0.742194,3.26763,8.87601,3.156765,1.259472222222222,5.361159583333333,4.82135,5.517,4.96268,5.0059,3.31051,2.6271,8.122885,0.8422959999999999,3.35261,4.177725,3.03654,3.67006,2.36232,4.343535,1.5420683333333332,4.12935,4.248105,4.25013,1.637,4.91106,4.346575,2.350705,2.08682,2.6067,1.334838,3.989475,3.2683745,1.877216,8.68091,5.587,4.59445,4.868945,3.436795,4.384915,1.1983457142857143,4.579275,3.935785,5.17435,3.552,2.67192,6.693037799145299,0.8981725,0.8981725,2.48669,0.94412,4.21817,2.723943333333333,1.004,1.71976,0.4227783333333333,6.637582500000001,0.9868325,2.730465,3.351415,4.00077,4.463695,4.365045,4.770925,5.5755875,2.950515,3.055605,2.27673,3.96959,5.25435,4.32078,4.01939,4.288045,6.83035,4.01921,4.207396666666667,6.024863,3.47934,3.6413425,2.287175,3.6413425,6.850712000000001,41.61069293506493,3.575835,3.31207,3.1735399999999996,4.79998,4.51272,3.417445,3.43049,3.66892,4.29026,4.63911,1.8752666666666666,4.894275,2.623785,4.83307,5.0135,4.53331,2.339723333333333,5.10955,3.754335,3.227545,1.5640079999999998,0.6307784615384615,1.674084,3.559366666666667,3.3367,1.35915,3.5278333333333336,2.80177,2.9144733333333335,2.963506666666667,3.1830766666666666,1.36206,2.7155966666666664,3.8154333333333335,1.8972887773487772,3.0149833333333333,3.183744,2.5064933333333332,2.8275433333333333,3.348466666666667,1.1519000000000001,4.79084,3.94793,1.168625,1.168625,1.168625,1.168625,2.826500606060606,1.9893833333333333,2.267625,3.912335,4.140875,4.54107,4.777575,4.6581,6.00665,4.802705,2.28365,6.2679,3.588525,2.495115,3.68699,3.722755,4.315885,4.391495,0.7618323076923077,1.5103571428571427,1.5165766666666667,4.90778,4.744455,3.24822,4.261445,6.212096666666667,2.2117333333333336,5.4921,1.6351666666666667,4.1393,5.2306,1.5559033333333332,5.99235,0.8398500000000001,4.786075,1.258054,1.2349825,3.74691,4.62231,4.716775,5.59685,5.7858,3.26957,1.417424,4.573375,1.4546675,3.712045,3.188445,2.6248255555555557,1.7198975,3.223315,1.7499500000000001,4.455045,4.655205,2.79321,5.8936,125.89393102976192,0.46741,5.9274,2.68958,4.84467,4.395195,2.71087,1.45671,0.40529904761904756,2.75734,3.60105,5.28355,2.87963,3.745835,4.53897,3.70828,2.98443,7.630523333333333,0.6687633333333333,3.92802,0.93654875,11.88637,2.982155,3.48617,1.1163666666666667,2.228375,2.624085,2.118075,3.03685,3.456566666666667,2.243403333333333,4.1778200000000005,2.5997666666666666,2.19967,2.09804,2.28463,3.14825,3.03634,3.50902,3.66611,3.55282,2.249643333333333,3.73311,4.335935,2.945335,1.1187777777777779,2.494596666666667,4.1778200000000005,4.731555,5.30045,3.956765,6.122,1.901045,9.88127,5.04605,2.602255,3.2593,5.9791,0.621916,0.621916,4.704644999999999,4.704644999999999,4.10886,3.9789,1.8056963636363637,0.6995025,2.78005,4.414825,4.18162,4.69292,3.73606,5.40008,4.572355,2.09232,4.47966,2.0295975,2.720955,4.767826666666667,1.74699,3.14052,0.49679999999999996,1.3146639999999998,1.3146639999999998,1.94944,4.845875,4.300215,5.69835,5.751501,2.75573,3.097705,1.930055,1.92169,4.551716666666667,4.058635,5.236736666666666,3.36403,5.236736666666666,4.725665,3.491975,5.968,3.84747,2.3790533333333332,2.3340133333333335,3.0371466666666667,1.370595,1.4114375,1.4919775,1.5089625,1.509145,2.19832,3.4176333333333333,4.611705,2.317185,5.1687,3.1452000000000004,4.456695,2.1558675,4.32478,2.956516666666667,3.3935,7.072333333333333,3.7625333333333333,5.185044666666666,3.402566666666667,1.478065,2.77277,2.9012933333333333,2.81282,5.0617,4.066715,4.89121,13.525774032436862,0.7656291666666667,2.06038675,2.562675,2.0263999999999998,1.3105314285714285,2.589425,2.597475,2.613575,2.6961,0.7510761538461538,2.1003925,0.5740263157894736,4.76955,1.877195,4.87557,5.0503,2.665275,6.0485075,4.702115,8.71355,4.39749,2.859435,2.972995,4.73396,4.57526,3.1462202857142856,4.66842,2.2130425,2.2130425,5.06465,4.120905,4.690915,3.946965,3.423133333333333,3.99445,5.3022,4.95035,4.622675,4.61917,4.461435,4.320815,2.37129,5.1452,1.313865,5.0631,5.15105,2.44116,2.36537,4.269145,1.4147633333333334,4.405795,1.7063425,5.829774673913043,3.89433,4.081495,1.50641,3.519905833333333,3.519905833333333,12.129875,3.80565,4.202105,1.12467625,4.683705,2.535925,1.3514525,2.5071,2.0141725,2.26197,2.04754,3.11919,6.3933,1.7268275,5.31095,4.868655833333333,4.755465,2.333285,2.32201,3.785065,4.635765,5.19725,3.969165,7.658629999999999,3.33202,3.4039,0.471985,3.73078,3.74934,3.4621,6.6294900000000005,2.4086933333333334,3.2072366666666667,1.3209733333333333,1.5387866666666667,0.564641875,1.7279820000000001,3.01915,1.538385,1.7840333333333334,0.69079375,1.26146,4.726745,2.47579,0.6918646153846153,1.5859183333333335,1.6657275,1.9215959999999999,1.3846433333333332,2.327565,1.5387866666666667,2.3781925,1.26146,1.26146,0.6918646153846153,1.620342857142857,2.48956,1.4184183333333333,2.836325,0.6918646153846153,2.54385,2.48956,1.4573483333333332,1.4573483333333332,1.4573483333333332,2.0477,1.160885,0.6918646153846153,1.051326,1.2425225,1.0511066666666666,2.04758,2.66745,0.885725,2.33694,1.6678714285714287,0.6918646153846153,1.7517679999999998,1.5387866666666667,1.9543333333333335,1.8685,0.937438,1.9543333333333335,1.0969077777777778,2.350705,2.5935,2.740875,1.2425225,2.41938,1.7499500000000001,1.7499500000000001,0.9527545454545454,0.9527545454545454,0.9527545454545454,1.3209733333333333,1.5387866666666667,1.6678714285714287,1.5859183333333335,0.9481285714285714,1.8685,1.37913,1.860876,1.791744,1.3209733333333333,2.81082,11.6766,0.69079375,2.53658,1.9852166666666669,2.73995,1.0812071428571428,1.0812071428571428,0.6918646153846153,1.4440777777777778,1.852656,1.6678714285714287,1.729362,1.8685,1.1816555555555555,1.1816555555555555,1.7408100000000002,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,3.5727666666666664,1.0969077777777778,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.17868916666666668,0.40034272727272724,55.65007906926407,1.4300675,1.5018633333333333,1.6678714285714287,1.9852166666666669,0.9481285714285714,0.6297941176470588,0.688884,0.688884,0.688884,0.688884,4.3971,17.709450416666666,3.6110333333333333,0.7158363636363636,1.628122,1.628122,1.628122,0.7158363636363636,3.01915,0.6918646153846153,1.7517679999999998,1.7840333333333334,2.59316,1.0969077777777778,2.3762,1.0969077777777778,1.713778,1.713778,2.1145333333333336,2.1145333333333336,0.6918646153846153,2.125,2.125,1.0255181818181818,0.17868916666666668,3.01915,1.6809166666666666,2.551125,0.7158363636363636,0.7158363636363636,0.7158363636363636,0.7158363636363636,0.7158363636363636,1.9852166666666669,0.40034272727272724,1.0969077777777778,2.3955975,2.3955975,2.55915,3.347766666666667,0.6516523809523809,0.6516523809523809,3.122536666666667,4.173333333333333,1.2040942857142858,3.1649999999999996,1.11209,2.774275,2.0998799999999997,1.1063699999999999,3.345133333333333,2.211975,3.4431,5.5271,2.575385,1.2774111111111113,4.727245,4.78936,3.06822,1.7837299999999998,2.270323769230769,4.993355,1.9803441666666668,2.63434,2.838203333333333,3.337666666666667,2.429795,6.069073333333334,4.863805,0.17868916666666668,3.04356,4.950505,4.047205,4.29876,4.15058,4.805855,2.6273866666666668,1.8302479999999999,3.768165,4.558375,4.440615,4.611845,5.0096,3.20956,0.6816274999999999,6.67061,1.3401916666666667,3.019628,4.87028,2.6280766666666664,2.6280766666666664,0.7713254545454545,1.7198975,3.857515,2.882235,4.60141,4.76465,5.2551,5.2027,1.0094928571428572,4.606415,4.717445,7.367630208333334,2.1465466666666666,4.08134,4.669955,3.601055,4.252775,4.26783,4.96783,5.83975,5.23135,4.544338333333334,3.67448,4.628061666666667,7.478197,1.7466275,1.8234230769230768,2.9401499999999996,1.7607566666666665,2.7822566666666666,1.8454833333333334,5.12915,3.2569233333333334,4.178215,2.1008199999999997,4.581165,3.8886,4.985315,4.294055,3.740755,2.4320233333333334,2.6750666666666665,2.87875,2.7095800000000003,2.4710633333333334,1.6602616666666667,2.6436633333333335,2.7617,2.48798,2.48798,4.45342,2.89901,1.8936866666666667,3.2259766666666665,2.76999,2.755656666666667,2.8529466666666665,2.6204199999999997,2.773433333333333,5.38595,4.616515,4.49908,3.803866,3.803866,4.02035,3.4387333333333334,4.79464,4.36136,3.59312,3.355165,3.265345,7.2584,1.9693325,1.94366,3.300755,2.71399,1.2400866666666668,1.2400866666666668,3.55566,1.800675,4.158520666666667,3.70999,3.104875,2.086709,2.1918778333333333,0.5444924999999999,2.649,3.84857,2.2980425,2.403845,4.43316,1.2529866666666667,4.791525,1.2430766666666666,0.37161642857142857,0.5048114285714286,21.84857304265873,0.5048114285714286,0.37161642857142857,0.6380064285714286,10.71108,3.0944366666666667,4.00174,5.1105,3.2773200000000005,2.636845,4.347552142857143,2.13262,2.630675,3.03079,2.84294,4.26525,4.845195,3.364305,2.35763,3.235805,3.88564,3.92067,3.01191,1.077955,1.077955,1.077955,1.077955,3.201795,2.7562,3.098325,1.78889,1.2220166666666665,2.28393,3.760705,4.200515,2.78528,3.555925,2.3898,2.7714008333333333,3.798265,4.149015,1.0977516666666667,3.21201,1.0911,2.9208966666666663,2.5458133333333333,3.828666666666667,5.009,2.35875,4.54849,4.66367,0.7879711904761904,0.23591785714285712,0.23591785714285712,0.5520533333333333,0.23591785714285712,0.23591785714285712,0.23591785714285712,0.5520533333333333,4.514725,7.162816666666667,3.507305,0.60916125,3.816365,7.2848749999999995,3.085925,3.28075,1.1623983333333332,4.590935,5.7022,4.53782,4.665945,1.6592980000000002,4.80245,2.134943333333333,2.236824,4.48458,5.6798,0.79659,0.79659,3.37044,3.0138233333333333,1.91966,3.0506,2.808035,3.616835,2.51116,2.765945,5.6984,5.46735,2.492105,1.783675,3.9632,3.171315,2.12676,3.59597,3.68774,1.82436,1.1080066666666666,3.96192,3.24875,4.888343333333333,6.637545,1.5682316666666667,3.75564,1.0951466666666667,2.46969,4.538345,4.220265,0.47185785714285716,4.008765,3.949845,0.964359,2.866896666666667,7.940926666666666,4.033965,2.119095,6.2480020000000005,4.71147,3.556285,1.54075,5.737026666666667,2.8704699999999996,3.6068,3.6850666666666663,2.0288733333333333,2.0288733333333333,4.8821625,4.8821625,3.1345178571428574,3.1345178571428574,7.10535,3.1345178571428574,3.1345178571428574,3.7343589682539684,4.732665,3.53672,3.6022658333333335,2.8731766666666663,4.60051,4.00641,3.093083333333333,3.156703333333333,4.36256,3.314996666666667,2.6750066666666665,3.15286,2.2674233333333333,2.589355,4.806865,7.39309,6.975285,4.65134,3.559435,3.886195,6.653626,4.943525,4.3504,4.412655,4.328785,2.29588,2.05602,2.02336,5.26595,5.107,4.7085225,4.417675,2.207196666666667,2.9245300000000003,7.223811666666667,2.0477,2.490346666666667,3.291923333333333,3.291923333333333,3.214835,5.01915,0.7809066666666666,3.2739966666666667,4.550575,3.1285566666666664,10.2823325,4.47212,2.61962,2.61093,5.4032,6.07295,2.953715,5.5087,2.45911,4.737615,2.9696291428571433,4.255425,5.25015,5.0895,1.2212533333333333,3.5485333333333333,1.1867775,2.5144699999999998,4.9851487500000005,7.805199999999999,2.7203133333333334,2.4633366666666667,6.578186666666667,1.656474,4.673825,5.7682,3.418505,3.53473,2.4157100000000002,5.00555,2.62762,0.506103076923077,5.41155,2.951015,3.6616999999999997,5.3549,4.90164,5.149,7.111387499999999,5.29795,5.6449,7.693280000000001,54.88614833333333,4.92098,4.051045,5.01605,6.2616,4.802505,4.941975,4.46372,4.708415,1.9323325,4.14854,4.09076,4.411195,2.49509,5.07495,3.824825,1.5614000000000001,5.64755,6.59805,7.369176666666666,5.31465,3.165655,5.1945,3.043165,3.23347,3.47402,4.010985,3.58154,6.32927,2.63105,1.0741814285714286,2.3099457500000002,0.563106,0.563106,3.74597,0.563106,2.3404820357142855,2.3404820357142855,2.949920035714286,4.657867749999999,4.901718285714286,2.3099457500000002,4.535730833333333,2.5061333333333335,1.4184183333333333,5.0919,2.07196,7.399392,5.85261,11.426341674242424,3.1947500000000004,2.8033366666666666,0.2726490909090909,1.7447079999999997,2.480776666666667,0.93012125,1.5932700000000002,3.1768699999999996,1.7084425,2.8433,0.686485,28.541254583333334,1.9407575,0.7614515384615385,2.85763,2.85763,0.44367500000000004,2.15417,2.94706,1.245305,2.00623,1.599145,4.399225,2.829425,1.9825833333333334,2.255786666666667,1.1424166666666666,2.3489925,1.6266983333333334,5.995154749999999,4.39519,6.930509166666667,2.4001375,3.4236,1.0423316666666667,2.751385,4.845595,5.9652650000000005,3.1641866666666663,2.2619766666666665,5.577604166666667,2.2360375,2.5333566666666667,4.50922,1.07448,3.9892,2.3511633333333335,5.57925,5.01015,6.05015,3.38731,4.2830425000000005,4.2830425000000005,5.2626,2.03634,5.6541,2.8874133333333334,1.5754225,3.4123,3.725325,6.518904166666665,5.62705,2.93592,2.228083333333333,2.791815,1.3979614285714284,4.67152,1.13232875,5.488910000000001,4.341375,7.77552,4.20688,4.64164,4.25446,8.596488333333333,5.02155,5.0554,1.077,0.7634214285714286,4.65228,4.717505,2.223265,3.330595,3.475825,4.266845,2.51904,5.2654,2.8166466666666667,5.2292,5.31915,4.5665,4.663825,4.762265,3.137825,6.9380525,3.26098,5.0045,3.171965,3.85488,5.785986547619048,0.6076064285714285,3.6168666666666667,1.64015,0.7112022222222223,4.49524,5.0732,1.045465,1.97481,6.04104,3.86775,2.22375,2.8139266666666667,2.62091,5.07575,4.30783,1.8865980952380954,4.131135,2.37692,3.5939333333333336,4.50787,5.10615,3.1409333333333334,3.8046666666666664,3.8551,2.02532,7.26734,4.69413,3.687115,4.43707,2.320105,4.257425,4.68868,3.117755,4.066475,10.53414,3.774445,3.9548016666666665,4.69543,4.401935,2.446775,3.84549,4.08358,5.2273,3.1697466666666667,4.153835,1.960075,2.6086666666666667,3.45222,3.172415,4.655615,1.677684,4.49795,3.0433833333333333,5.2419,3.00602,2.200405,4.101715,4.662915,1.03967375,3.00724,2.674186666666667,4.774808,1.7767060000000001,1.61777,1.2447,4.920615,5.55565,6.140295,3.9809925,2.6574,2.37767,2.22918,4.54616,1.56009,3.70858,3.05071,1.906295,0.9851076923076924,21.069219615384615,2.948605,2.845935,4.67981,4.169445897435898,1.5040533333333332,2.7376966666666664,2.965559318181818,1.234154,1.8455066666666669,3.80711,5.2435,3.6991883333333333,3.69137,5.4711,4.81963,7.489700000000001,5.253455,5.12245,3.83193,2.85271,3.805425,3.955145,3.4326666666666665,4.28322,2.06652,5.2167,9.67902,4.26719,3.194245,4.20062,0.5599775,3.158253333333333,2.0923133333333332,2.4710225,4.26056,3.55874,4.48463,3.79752,2.89712,2.202965,1.671765,1.4800280000000001,1.9336533333333332,1.2396,3.960095,4.073365,4.662085,4.909225,6.99782,2.1536166666666667,1.388186,2.14224,7.642386666666667,3.547065,2.789575,3.155525,4.60562,3.44097,3.39728,1.679456,4.07558,5.19065,4.29689,3.934205,3.604095,3.992895,4.335045,3.82517,4.48067,3.47021,2.074805,3.1881166666666663,2.963475,5.72545,2.73877,4.3321570000000005,4.21571,3.04481,2.6887166666666666,2.2563933333333335,2.127866666666667,2.3908776666666665,2.3908776666666665,1.875,2.9264233333333336,2.34712,2.3022966666666664,1.88351,3.86303,2.3690366666666667,2.683996666666667,2.80135,1.6571633333333333,4.19655,2.844,3.18605,1.7933666666666666,5.23225,5.09935,5.129386666666667,2.251875,1.825655,2.720695,2.55014,2.18278,2.78014,1.9108025,2.41743,2.256325,6.719784666666666,4.3559325,3.410085,0.5920675,4.654945,4.49487,4.33197,3.082315,3.84097,3.599864166666667,5.94655,4.53168,3.876755,2.9190214285714284,2.1599115555555555,2.50002,1.835612,1.6440100000000002,1.462502,2.10976,1.819355,1.3632566666666666,4.047268857142857,0.6918646153846153,0.5442055555555556,2.15132,1.61719,1.594714,1.5429016666666666,2.573110909090909,1.5703716666666667,1.727796,0.59174625,173.14573548584053,0.5485026666666666,2.03228,1.062994,1.3146775,2.01575,1.45342,1.9488475,2.4139933333333334,1.899245,6.8336,3.210645,3.750874761904762,1.7334033333333334,3.24195,1.2851166666666667,1.2851166666666667,5.9669525,0.4819016666666667,2.3216125,3.3638999999999997,3.17844,0.7244036363636364,0.6234705882352941,1.2192728205128205,1.0946454545454545,2.49387,4.261045,2.410685,2.304235,2.634463333333333,4.941987611111111,1.0945288888888889,4.458935,4.01873,3.498825,6.78999,1.79926,2.976275,3.53004,5.026567,2.10405,3.81951,3.922705,3.79551,5.42732,3.216045,6.27069,3.31386,2.63968,3.40803,1.88892,2.82946,3.537355,2.82974,1.68984,1.549235,2.288985,4.462445,5.627865,3.557345,2.85145,1.41267,4.37869,3.3558333333333334,3.7258,2.90231,25.59128511431624,2.253184,2.8961400000000004,3.2485933333333334,3.6216666666666666,3.2078166666666665,6.0938099999999995,3.181556666666667,2.766723333333333,3.3358000000000003,3.467033333333333,2.047066666666667,3.16892,3.30579,3.441266666666667,1.69105,1.76246825,0.576752,2.175526666666667,2.2322175,0.210389375,2.680236666666667,3.06997,0.210389375,0.210389375,1.872779375,0.210389375,0.210389375,0.210389375,0.210389375,2.948183333333333,2.723183333333333,0.6098253846153846,3.489522142857143,1.3952725,1.984912,5.19105,4.417885,6.68231,2.419955,5.053,2.2256925,2.6830466666666664,1.360502857142857,5.830613333333333,2.6899866666666665,5.866607500000001,0.959725,1.1928125,4.99752,4.726535,36.4139288538406,1.767758,1.3010233333333334,2.2996733333333332,2.3657475,0.9527545454545454,2.2928433333333333,2.18932,3.0232200000000002,2.2408566666666667,2.36877,1.6584466666666668,2.9436633333333333,2.5153366666666668,2.229346666666667,2.479643333333333,2.3374200000000003,4.232885,2.79156,1.1379942857142857,3.94443,3.75442,20.13298988888889,2.7914266666666667,3.2867433333333334,2.6298533333333336,0.819524,3.0661819999999995,1.5904062222222222,3.0661819999999995,2.4987333333333335,2.5642,2.9283433333333337,1.705445,2.099315,4.6398,3.8953,5.5955,4.217115,1.855782,5.2114,1.605485,4.991875,4.132633238095238,5.85155,0.7485109090909091,2.4304775,2.2079975,2.843702,3.353785,1.104155,4.028115,2.0027999999999997,2.04493,1.039968,1.039968,1.63731,2.802236666666667,4.57272,30.613669583333333,6.319599999999999,1.8456433333333333,3.4883499999999996,0.3765806666666667,6.628097499999999,4.47509,2.794373333333333,3.160745,6.0284475,4.39146,1.2464175,4.512865,1.253612,3.46995,4.552705,5.1296,2.04949,3.073285,4.159075,2.363915,3.2975019999999997,4.02016,1.2579066666666667,2.6212125,4.055985,4.9757324999999994,3.030976666666667,3.0882533333333337,3.1496600000000003,3.16933,4.01739,4.05095,4.037733333333334,1.74244,5.94158,2.45086,1.6901620000000002,4.144865,4.84272,4.050725,3.644055,0.8309875,2.85594,3.50425,2.06878,4.7366806666666665,2.810085,3.793895,2.9253199999999997,3.210043333333333,2.50285,3.2748633333333337,3.5345333333333335,3.1491633333333335,4.27055,4.320235,4.212025,1.638445,4.05733,4.1952,1.898405,1.820595,1.829855,3.9169699999999996,4.67851,5.667811979166667,3.994235,3.8287,3.677895,3.2568933333333336,1.317125,3.15715,3.21047,3.766565,4.545545,4.89388,4.700235,2.709605,1.891335,1.591865,1.44708,3.46537,2.318865,2.172325,3.278525,4.577965,1.525755,5.6972,1.36253,1.774425,3.17881,3.263485,2.780375,3.317495,2.93224,1.652535,0.9947256842105263,3.876325,3.7254099999999997,5.0618,8.596711666666668,2.2018299999999997,3.4179666666666666,1.5668333333333333,2.6969933333333334,3.1241066666666666,1.1837016666666667,3.451966666666667,3.053366666666667,3.1496366666666664,4.1132333333333335,3.69,7.021873333333334,3.10928,0.7323272727272727,2.047893333333333,3.46128,3.2739,3.300015,3.6598333333333333,2.49588,3.59873,2.724855,1.8938398571428572,4.05218,3.0285733333333336,3.601425,2.3655233333333334,4.448135,4.76262,4.929425,4.98219,3.346755,1.3176777777777777,5.07345,3.2683666666666666,2.9241533333333334,4.77304,2.8920866666666663,3.3630999999999998,0.42505857142857145,0.42505857142857145,3.0393258333333333,4.42971,5.34815,3.419615,3.6147,3.655505,2.89579,5.40645,4.975625,0.99567875,4.670075,2.83325,4.851395,3.115546666666667,3.038244166666667,1.8441033333333332,3.259194642857143,2.8552366666666664,3.06859,2.645443333333333,2.7164800000000002,2.3014033333333335,24.274908887516467,5.49625,4.08703,4.13569,3.22528,4.7215875,3.2606,4.701215,4.180495,4.215145,4.22954,3.58483,3.14222,3.0739366666666665,3.2518,3.1730399999999994,2.8732699999999998,4.403485,3.50743,4.7141225,5.197,3.77145,1.305828,1.618026,1.618026,4.12259,3.68644,2.92305,2.7769933333333334,3.11025,4.3538,3.77751,8.904883333333334,3.387033333333333,2.7404766666666664,3.133671666666667,4.46878,1.5739416666666666,6.6652000000000005,2.5285466666666667,2.761226666666667,1.817665,3.913795,3.68832,7.61521,3.39795,2.52213,4.327525,4.116081333333333,1.5796,2.599833333333333,1.77954,8.779475,4.56788,7.101753333333333,2.3312625,4.42637,3.61495,4.716195,5.20675,3.786966666666667,3.786966666666667,2.0481475,4.640365,5.3172,2.43498,6.444582857142857,1.75944,6.169,9.020659666666667,3.31831,4.470796,2.42328,1.94888,0.556021875,4.493185,2.42334,2.57555,4.32967,2.401065,2.4282933333333334,4.061615,4.59121,4.46983,3.82542,5.6557,4.18751,2.4648175,1.0871818181818182,2.711885,3.24289,3.0338766666666666,5.4232,3.924585,3.33993,2.85974,1.878986,4.46085,1.0714075,4.98794,1.0715677777777777,5.59605,3.16994,5.23535,5.580695,3.071455,3.158525,3.2493499999999997,2.6214333333333335,4.202485,3.790465,3.10327,4.128185,4.943655,6.2712699999999995,4.14361,2.2639125,3.922955,3.559185,5.337278333333334,1.8472375,1.8472375,2.8425233333333337,2.3341533333333335,2.891773333333333,2.7054666666666667,0.986624,6.04115,3.909195,2.0567375,2.297975,2.61699,3.63134,2.763105,3.73682,4.274605,5.50445,4.84587,5.90065,5.85895,1.3708125,4.25392,1.0260583333333333,2.515675,4.281233333333334,2.444615,2.974715,3.041495,4.26776,2.925045,0.46423631578947366,4.514985,4.19791,4.818385,3.34669,4.63852,5.6044,4.65079,3.910025,1.733585,4.73244,2.133785,4.067266666666667,4.067266666666667,6.6518,5.1371,5.7463,4.95516,2.68765,1.5739416666666666,4.35772,2.29427,1.6302966666666665,1.92407,4.349615,4.14187,4.59857,8.00625,1.6300083333333333,5.645,1.3003099999999999,3.444405,6.02725,1.9743025,4.69933,3.4093999999999998,4.89138,3.452065,4.530095,2.9339099999999996,4.138865,3.93836,6.7258,3.806645,4.252925,4.453745,5.6218,4.08685,4.53483,3.574285,4.65751,7.526425,3.35723,6.80577,3.09633,5.36,6.672507045454545,4.952425,3.389125,1.891815,5.28835,3.947815,0.6306011111111112,8.67188,5.67885,5.64955,3.553303333333333,5.27395,3.023805,1.6866700000000001,3.71122,1.0977516666666667,5.119,3.21463,4.740835,5.32335,4.671495,4.36877,2.6107466666666665,4.134075,5.5348,1.586585,7.760356666666667,3.095585,4.536935,5.06535,3.755475,2.235065,4.33253,4.36664,4.675375,3.0898133333333333,4.290185,3.510865,5.4633,4.68092,3.73531,1.8839025,1.8839025,7.035411666666667,1.5162,5.3775,4.15511,5.91,3.817855,3.76347,4.91615,3.798475,0.8698666666666667,0.8698666666666667,0.8698666666666667,3.597885,2.89957,3.848115,4.651845555555555,2.81429,1.445305,4.758515,2.181625,2.429915,4.212975,5.42945,1.4392875,2.25062,5.32501,4.321365,2.47608,4.63668,1.4602625,1.88542,3.2021333333333337,2.63453,5.85285,1.409474,1.605378,1.20581125,4.3739,3.301035,3.3742,3.119783333333333,5.71265,1.78588,2.0984275,2.892085,1.5897857142857144,3.974845,3.65506,2.393415,5.3515,5.7159,2.597845,4.615905,4.31529,3.326155,4.217765,4.62421,3.66961,6.2056,5.2625,1.8074766666666668,1.8349666666666666,3.43558,4.371015,4.03889,4.49002,3.5170999999999997,4.45766,4.596745,5.3312,2.72641,5.5344,4.439515,3.85277,6.1415625,4.371025,0.6992445454545455,3.614535,3.8573775,2.01755,4.17926,3.6357,5.8484,3.716105,4.303805,3.705395,4.405255,5.07355,4.471935,4.222975,4.29515,5.44985,4.137815,2.652255,2.763655,6.1511,4.184285,1.833574,3.21466,3.850576666666667,3.795155,5.24725,4.44352,2.5524766666666667,0.8985944444444445,4.369740606060606,5.94316,3.692155,5.15645,3.476765,7.9725649999999995,4.934935,3.496033333333333,2.7084966666666666,3.61206,1.984365,3.479325,4.2884,2.5014175,4.01728,5.1166,1.4378575,5.4133,0.713025,5.8847,2.680505,5.00345,3.367945,1.2010616666666667,1.6192433333333334,3.88425,1.842885,3.435745,0.5148266666666667,5.27825,3.02763,1.487576,6.181302499999999,6.46095,0.770395,1.507041,1.271058,1.271058,1.271058,2.04165,3.90087,3.49726,4.271725,3.72774,5.6064,4.28048,1.95131,4.26322,5.1558,0.28600000000000003,4.116905,4.766865,6.2744,41.50803348484848,5.151092499999999,5.43385,11.78889,3.823065,4.21284,7.711118333333333,3.16925,4.502895,3.847225,4.72172,8.942715,3.723825,2.3700666666666668,3.2259,5.1997,3.897815,3.69675,4.472695,2.343705,4.631685,4.690065,7.114368,4.46349,5.3849,2.35385,4.08955,0.531640625,1.3888933333333335,4.244645,6.4839,2.91442,1.2896066666666666,1.2896066666666666,3.436325,3.69243,4.406275,2.617175,1.6910999999999998,3.907275,3.93998,1.8610425,3.0054833333333337,1.6747299999999998,2.0259266666666664,4.080615,4.611545,2.249375,4.448585,2.2676975,2.12485,3.438055,3.52679,3.87608,3.66854,6.145081333333334,2.6334963333333334,3.977145,0.6768018181818182,0.7165741666666667,3.53152,2.15334,8.79965,3.6110333333333333,5.14105,1.6479775,4.913365,1.5872616666666666,4.382055,4.76745,2.77942,4.206745,5.47685,0.4229225,0.4229225,3.21531,3.02446,3.1883199999999996,3.689075,3.64761,4.901075,0.8432772727272727,11.47849,8.93414,2.327565,4.76565,4.75249,5.04545,3.3853,2.5701766666666668,2.05348,1.899385,9.729447500000001,2.65615,2.7982066666666667,3.7450159999999997,5.13625,3.7450159999999997,2.695825,3.0718533333333333,3.1018266666666663,0.7283018181818182,5.684563333333333,3.6989666666666667,2.6341933333333336,4.50814,8.54184,9.69897,4.52584,3.786595,4.624225,6.900835,2.05285,1.29235,25.963143333333335,3.989395,4.82977,0.929712,4.40584,4.26045,4.247285,4.68222,4.200955,5.986836666666667,3.3386333333333336,2.0549500000000003,0.746,0.764315,4.892815,4.50774,1.4062116666666666,4.552701666666667,0.8073241666666666,3.4419,1.3900433333333335,3.993245,6.1502,1.99545,2.46415,2.173385,4.28132,3.137915,0.5511255555555556,4.224565,3.508225,2.8573133333333334,3.177255,5.15795,2.8768266666666666,4.344275,2.86242,5.3499,9.223479999999999,5.0281,6.72269,2.64735,2.9090933333333333,4.28006,4.06714,4.381735,4.32805,3.6553,5.29155,1.15148375,3.408481666666667,3.225888642857143,0.7821640000000001,1.618026,1.618026,5.41495,7.707121666666666,0.9215076923076922,4.675135,0.9611666666666667,2.705246666666667,2.4385833333333333,2.653794318181818,6.6925011111111115,3.0021799999999996,1.073071111111111,2.5612866666666667,1.267,2.3687566666666666,3.1186000000000003,3.163956666666667,3.19961,2.59949,0.9611666666666667,4.546495,4.63232,5.5601,2.76361,5.3656,2.2310600000000003,5.8453,4.74004,4.594065,3.0953366666666664,4.004265,2.3106075,1.3788175,4.441635,2.80255,4.49999,5.38615,1.736474,4.40187,2.992566666666667,6.549095,3.364415,2.72782,0.9611666666666667,2.446735,2.82161,7.467494277777778,2.4100766666666664,1.105334,2.4100766666666664,0.45491750000000003,1.09765,3.229735,2.90269,1.82194,3.537275,3.8196070000000004,0.598927,0.598927,0.598927,8.556035,1.6101400000000001,0.7367818181818181,3.358445,40.403968982683985,1.758105111111111,0.5998411111111112,3.1838825,0.5998411111111112,3.68404,1.933835,2.25311,2.6946766666666666,5.28875,5.0036,4.25951,2.34369,0.8555771428571429,4.25887,3.1270100000000003,4.87282,0.9977614285714286,2.6476,2.6476,3.845885,4.75082,3.91333,4.7943257692307695,3.853875,4.4939,5.22605,1.848702,1.18945375,5.63415,6.21265,3.95995,0.649412,4.59729,4.110525,0.86404625,4.466775,2.477015,4.40748,4.24974,1.880550404040404,1.880550404040404,4.54155,3.285855,0.9731422222222221,2.98189,3.323816666666667,3.67719,3.88758,4.566385,0.46832285714285715,0.24423176470588234,0.24423176470588234,0.24423176470588234,0.7125546218487395,0.6084207692307693,0.65248,0.24423176470588234,0.24423176470588234,8.11107,0.24423176470588234,0.7125546218487395,3.39967,1.257955,4.574175,1.1668633333333334,0.7650346153846154,0.86404625,2.540985,2.706,4.19479,2.782385,0.24423176470588234,0.24423176470588234,4.45427,3.476625,4.312,2.640955,3.873885,1.6157499999999998,3.65579,0.65248,0.65248,4.892195,3.29718,2.548905,2.650695,4.503296333333333,0.9369630000000001,0.6819838461538462,10.21578,1.2934,5.39335,4.51766,5.38455,2.1136399999999997,0.43610000000000004,0.95842125,3.0160933333333335,3.344475,3.421555,4.934925,1.569776,6.24215,4.031105,5.5205975,4.14187,3.03214,2.940713333333333,5.9928783333333335,2.78514,5.4572,4.1278,4.66367,5.874785,0.5459686666666667,4.18608,3.1368233333333335,2.25186,0.6959477777777778,4.48794,5.33129,3.201015,2.396545,2.21202,5.1392,2.57695,2.87116,0.9487099999999999,0.48040307692307693,3.863755,0.346754,0.7761681818181819,3.83411,2.92679,5.0174,2.76954,4.984795,4.33502,6.221806666666668,3.69787,3.44872,4.68505,1.5734875,4.9815675,2.0434799999999997,4.33359,2.5287,5.972853333333333,2.6218,1.2546599999999999,4.69344,7.26949,6.544513749999999,3.2332366666666665,0.7835141666666666,2.7587966666666666,4.919805,4.288805,4.51567,4.603415,4.46286,4.547445,2.83373,3.96674,1.6955333333333333,2.181905,1.3591300000000002,4.50251,9.232155,3.7654,3.471565,6.18745,2.91508,4.75289,2.6646033333333334,3.2075093333333333,3.239255,3.45717,3.27226,3.995555,3.46011,5.38215,5.8214,5.14355,4.378855,5.28885,5.72855,2.95354,5.66345,8.136125,0.9032488888888888,5.12285,4.19076,4.63652,4.984955,5.5655,2.61172,8.867205,2.3960266666666667,3.23854,5.46685,3.704535,4.347395,2.09198,1.98012,2.8229066666666665,3.2103066666666664,1.9818633333333333,3.089976666666667,4.146505,4.742525,4.095125,3.295315,5.284409999999999,3.365805,3.01538,3.9878275,4.765935,3.0057,5.6427708333333335,4.65643,3.821055,3.762865,8.61495,4.414745,3.56158,4.81273,4.99613,3.819975,9.52739,1.3829099999999999,2.48591,4.483565,2.750296666666667,2.750296666666667,1.8913,7.77787,1.0116277777777778,3.625645,0.8446025,2.0984275,4.340485,3.924585,3.813065,4.912465,3.1752333333333334,3.591695,4.082175,3.672165,4.75777,3.432085,2.907766666666667,4.778085,5.1409325,4.21372,4.88812,1.71875,1.582504,2.60718,5.2207,2.5866,1.6427066666666665,1.99281,4.593415,4.86237,2.96088,3.46994,0.5248166666666667,2.318225,7.95823,2.91479,1.5361666666666667,0.85015375,1.1499266666666668,1.91698,1.98587,0.90457,1.9546999999999999,4.08667,4.4651,5.13955,2.52027,2.254635,7.96258,2.969175,1.9666633333333332,1.9666633333333332,1.9666633333333332,6.392683333333333,2.27445,3.5614,2.472465,0.50166,1.143194,2.1547725,6.4808675,0.4419855555555555,3.813065,3.817489166666667,4.73439,2.9264188888888887,0.4419855555555555,2.9264188888888887,1.03539,1.27834,5.8473,4.39988,7.0240925,4.51369,5.0941,4.03477,4.18349,5.3162,5.26565,6.3514,3.57508,3.311645,5.14325,4.66565,4.32507,4.465045,5.28255,1.4250299999999998,3.137503333333333,1.1234,2.2329225,3.34609375,1.5202104166666666,6.9901,5.337278333333334,2.8702583333333336,4.834045,2.905885,4.90493,2.76816,4.250905,4.63052,9.508931666666665,6.0731,4.65178,2.04972,2.720275,2.2272600000000002,0.5599775,2.236133555555556,5.62895,5.35425,5.3269,4.8561,0.72832,2.0126625,1.372265,4.608835,0.7251423076923077,7.794015,2.125015,1.028935,1.028935,3.863908,1.995954,3.5090333333333334,3.403305,4.68767,4.1551425,4.1551425,4.8512,6.355371666666667,2.8217666666666665,2.44162,3.4266,3.893235,1.776518,3.1355233333333334,5.2512,5.4291,4.897345,4.901505,3.84277,5.08705,3.6952350000000003,3.434466666666667,2.26751,4.137555,5.2545,3.073925,4.93666,5.77645,2.0379033333333334,2.56432,6.3729,6.89045,1.44631,2.536,2.247855,2.9689099999999997,2.1450425,2.545925,2.5651420000000003,1.1091955555555557,1.8241175,2.4858225,2.1655825,2.4667616666666667,2.4667616666666667,3.309013,2.82895,2.1646542307692305,2.6693,2.523925,1.862254,1.496785,4.9569675,14.374276166666666,2.9238700000000004,3.5140666666666664,1.816914,1.816914,1.6181483333333333,1.6181483333333333,3.05959,3.7547333333333337,2.9320566666666665,2.015355,2.015355,3.7316333333333334,3.16457,1.0562533333333333,1.5264428571428572,3.2332133333333335,3.0255799999999997,3.826033333333333,2.6098209523809524,3.3158366666666663,3.5348666666666664,0.679799,2.541225,3.6024896666666666,7.304133333333333,4.8013,4.392125,4.410975,3.313705,4.537985,4.893255,2.808816666666667,4.59359,1.4967016666666666,3.489933333333333,5.77685,4.969385,2.474345,1.4487050000000001,2.881115,2.8316033333333333,3.10807,1.5957116666666666,0.7092978571428572,3.355066666666667,4.849973333333333,4.574875,4.35529,5.09955,3.076496666666667,1.9651399999999999,3.083061666666666,3.1360799999999998,3.5878666666666668,3.100346666666667,3.7993333333333332,2.703186666666667,3.5164333333333335,3.3055066666666666,2.8728200000000004,5.3206,5.2044,5.314954999999999,5.314954999999999,3.26554,3.88152,3.76184,3.507065,2.58567,5.2715,3.440395,3.1848033333333334,6.059,0.7530633333333333,4.83497,4.75448,2.578933333333333,4.792561666666667,2.9728499999999998,1.9249666666666665,1.4433,2.3576566666666667,0.994389,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.34632321428571433,0.5552228571428571,0.5552228571428571,1.2050475,0.8343572222222222,1.6050593434343434,1.0595928571428572,1.0595928571428572,1.1841971212121212,0.42086222222222225,0.3858166666666667,1.252545,1.4660625,3.084146666666667,2.636875,7.692628333333333,3.1927266666666667,3.716475,3.863465,4.180525428571428,1.317285,4.762365,4.629865,4.57739,3.384565,1.4185320000000001,3.9955419230769227,3.491055,5.33735,4.690945,3.34503,3.712695,4.074585,4.86525,1.1991239999999999,4.41384,4.50295,3.15695,2.3896966666666666,3.355285,2.29714,2.976,3.54961,3.08943,5.45745,8.668685,3.146985,4.95989,4.399625,4.51304,2.7449666666666666,3.53491,0.9324657142857143,3.6613,3.252905,1.8367499999999999,0.9979575,2.8723,0.993505,0.5425733333333334,3.6598333333333333,4.36571,5.141046666666667,3.6772666666666667,2.389405,2.54145,4.89111,3.9552333333333336,4.13294,2.55765,2.198,4.23012,4.39817,4.200725,5.12125,4.66518,3.52461,4.925875,3.232473333333333,4.58788,2.1175591666666667,4.76851,5.1717,3.210555,4.07364,2.45408,3.690975,5.12875,4.59425,5.538,4.88958,5.14905,2.89274,5.5507,4.74731,4.65987,2.306165,0.94347375,4.215275,5.11595,4.762755,4.892205,1.73448,4.50271,2.202845,5.364,4.6819,5.4237,2.26498,4.36796,5.26725,4.53323,3.0457,4.60125,5.2479,5.0067,3.844985,2.306165,2.79035,2.84264,4.73154,4.08258,4.414675,3.641895,5.1505,2.400985,6.78927,4.89268,4.26343,5.1558836319444445,4.508845,5.2698,3.5823675,2.43246,2.43246,4.291805,4.28091,4.41042,2.3228975,3.12937375,1.08717625,3.02216,3.169283333333333,2.834963333333333,3.410833333333333,4.93203,2.899836666666667,5.71365,2.83107,4.3615,4.4903275,2.40186,3.99444,2.09318,3.2435666666666667,4.08814,1.0261900000000002,4.690295,4.859785,6.725705,4.761085,5.3222,1.3498914285714285,4.67713,6.07635,8.51348,3.058203333333333,3.345833333333333,2.00924,0.860891,4.024155,1.05262,4.074785,4.540165,4.60361,3.053625,3.82489,1.2924285714285715,3.19848,3.474,4.355515,4.338865,4.330275,4.06185,2.3941975,4.19629,4.895165,5.53975,4.63344,3.665925,0.35131333333333337,0.35131333333333337,0.35131333333333337,0.35131333333333337,5.0909,2.843555,6.11915,2.63843,4.90608,4.87667,3.7397,2.21306,2.4799,1.4577966666666666,5.58605,3.08961,4.0293,3.270505,3.28303,1.725565,1.21364,4.6979,2.437425,6.270315,3.853195,5.54815,2.186455,1.4607166666666667,0.9427133333333333,3.26465,4.81594,3.817945,2.194425,8.73887,4.05569,3.495825,2.31536,0.524088,3.3115,2.29308,1.958865,1.945045,2.981975,2.86229,2.357875,3.7373333333333334,2.83435,3.676095,4.414875,3.831655,4.61862,4.19084,5.323521666666666,0.6577286666666667,4.519095,5.62385,5.0041,4.569435,3.21833,5.1689,4.41366,4.46038,5.484881666666666,5.2127,4.46552,4.586565,3.6423175,4.31042,2.7683,8.81032,5.35715,4.55866,4.723815,4.861645,5.217,3.926475,1.140611111111111,5.816903333333334,4.04657,5.0358,1.4658416666666667,4.1159,4.37019,7.682166666666667,4.51993,3.107895,2.0728033333333333,4.577885,1.53806,0.9890325,3.93577,6.2757,1.8893233333333335,2.2399999999999998,2.8533266666666663,3.70682,3.491815,3.611415,4.976395,1.6565733333333332,4.170915,3.464111,3.17521,3.6427,4.138695,2.76011,2.57708,2.0299125,2.420386666666667,2.61999,4.293525,0.5444924999999999,2.50832,4.15321,2.882615,3.4754,4.63134,5.0667,4.25497,17.14838090909091,2.6174033333333333,3.9337666666666666,1.580674,0.8411909090909091,0.8411909090909091,0.8411909090909091,0.8411909090909091,0.8411909090909091,4.38965,4.761975,5.0848,9.101146,2.654125,2.654125,4.352605,4.312969166666667,1.2241625,2.15007,5.0029,2.49109,2.309235,2.234325,2.99689,4.0109406666666665,2.187915,4.668075,0.7998571428571429,3.042503333333333,3.1519333333333335,2.943163333333333,1.3732966666666666,3.3748,2.53967,0.90000125,2.8715233333333336,2.5746233333333333,1.1024922222222222,2.59903,2.8177766666666666,2.2042733333333335,4.727213333333333,2.4229333333333334,3.213893333333333,2.1354425,2.7303433333333333,1.090077777777778,2.6754266666666666,4.644109333333334,3.470666666666667,1.08337,2.97026,1.488455,3.0170733333333337,3.128496666666667,4.616388333333333,3.2020199999999996,2.83935,4.910505333333333,2.719086666666667,2.155995,3.1431066666666667,2.8897133333333334,2.11119,3.108586666666667,3.4654333333333334,3.3630333333333335,3.21973,3.1934966666666664,2.757626666666667,2.582675,3.7068515,3.7068515,2.9243733333333335,1.9438066666666665,1.8218266666666667,2.5474533333333333,5.692703333333334,2.8763533333333338,1.9013533333333335,1.7777025,3.0282999999999998,5.0527,2.55567,1.051422,2.6255753333333334,1.7222466666666667,2.3562233333333333,2.1817233333333332,2.43801,2.101386666666667,3.22265,1.115864,1.4499566666666668,1.4666933333333334,4.270765,2.53241,4.172645,0.935521111111111,4.050345,4.1059,2.4916,1.761836,1.6469383333333332,3.4563333333333333,24.8191389004329,6.845043333333333,2.7598800000000003,3.430255,2.14701,9.925133333333333,3.2153833333333335,0.99947625,2.4425233333333334,2.48931,1.9537133333333332,3.07442,2.47065,2.65309,0.892482,3.5132,2.4481533333333334,2.9251133333333335,2.6651000000000002,2.7896866666666664,2.03362,2.1092333333333335,2.9008233333333333,2.5094266666666667,2.221835,1.6337920000000001,5.91212,4.800145,2.3462575,2.901525,2.0923766666666666,2.40878,7.794525833333333,1.7192733333333334,5.10365,1.9826875,1.8782525,7.5853,2.8548299999999998,2.6134866666666667,2.572,1.797906,1.4870442307692309,3.3336666666666663,3.363633333333333,4.166425,1.45165,3.5597999999999996,1.6235025,1.6235025,4.073545,3.822775,2.957725142857143,2.957725142857143,6.065696666666666,3.323055,0.42041199999999995,10.87873021978022,1.1991833333333333,0.9519871428571428,3.5919533333333336,1.4758830769230769,1.49541,6.465563333333333,4.006585,0.7930536363636363,2.0463,5.001300545454545,2.6849499999999997,4.216595,1.4555857142857143,5.7952,5.258,5.3529,3.58264,2.0893,3.18041,2.67482,2.678573333333333,2.35416,5.014306666666666,4.962895,5.2349,2.23462,5.00595,4.358285,3.1620266666666663,2.479845,5.1239,2.60722,8.629716666666667,6.8342975,2.0522475,2.160125,1.801228,4.492366666666666,4.492366666666666,3.560033333333333,3.2291233333333333,3.435532666666667,4.87221,9.498625,4.317215,2.42317,5.4678,4.579385,5.2265,1.902294,0.82686,1.3276533333333334,4.46376,4.781485,3.7066666666666666,3.0190033333333335,3.687,2.278773333333333,3.642725,4.506595,3.27286,5.44115,3.350733333333333,3.6802259999999998,3.6537,3.2789699999999997,3.5604666666666667,6.12615,3.06025,5.82965,5.4656,3.487125,3.417525,3.417525,5.7404383333333335,12.181901666666667,3.6192333333333333,6.258380000000001,7.4601516666666665,3.526055,2.525506666666667,3.90651,1.3267466666666665,3.74921,2.1103475,2.998146666666667,2.9117800000000003,3.8203666666666667,2.15768,2.3403466666666666,2.880993333333333,2.78467,3.2979800000000004,3.0898466666666664,4.3744,2.4573233333333335,2.8405233333333335,4.21856,3.08554,2.7997599999999996,1.11434625,2.0913575,2.9635700000000003,2.79557,2.653376666666667,2.365346666666667,3.5865333333333336,2.4132666666666664,2.5522633333333333,3.0350566666666663,3.018746666666667,2.968476666666667,3.1183266666666665,2.55422,3.221083333333333,2.8330366666666666,3.3215520000000005,2.62805,2.45902,2.3869700000000003,2.4383133333333333,2.74534,3.2124966666666666,3.0091433333333337,2.50884,2.01494,2.01494,0.6863383333333334,1.679456,4.740725,3.085335,2.6410233333333335,2.15768,3.6794666666666664,1.30193,2.8157566666666667,0.5835980000000001,3.5134666666666665,3.247996666666667,3.24087,3.017443333333333,2.607596666666667,2.97311,3.0986766666666665,2.7929033333333333,3.419333333333333,5.520496666666666,1.661308,2.2193666666666667,2.475776666666667,1.7547233333333334,2.09444,3.110376666666667,2.83577,1.763252,2.4402066666666666,2.678323333333333,2.89194,2.8214400000000004,2.992096666666667,2.90404,3.356533333333333,1.3780325,2.994073333333333,2.3487033333333334,3.5411333333333332,3.4349666666666665,1.7925775,1.7129866666666667,3.3823333333333334,2.989986666666667,3.3294099999999998,2.61266,2.7892766666666664,5.041790000000001,2.8629233333333333,1.9265566666666667,1.7976299999999998,3.3508666666666667,6.3580966666666665,3.5734999999999997,3.302903333333333,3.0571566666666663,3.28566,4.690944,1.6315840000000001,1.1395444444444445,2.7183533333333334,1.9812283333333331,4.75416,3.088783333333333,3.284876666666667,2.997586666666667,3.253553333333333,2.450486666666667,3.459566666666667,2.4701925,1.714382,2.9320866666666667,3.260625,3.9103149999999998,3.078735,4.052775,1.608535,2.70391,3.000535,3.830275,2.6479633333333332,3.14354,3.8375,3.9882333333333335,1.682005,5.906225999999999,3.23725,1.6583983333333334,4.105105,4.06668,2.80162,4.21573,1.916808,1.916808,3.2309433333333337,2.847113333333333,2.971885,5.71615,4.436955,4.265259333333333,1.267306,2.6065,2.5736233333333334,4.200465,2.9789966666666667,4.007336666666667,2.7737200000000004,2.356943333333333,2.8559966666666665,3.50537,3.40042,1.661832,3.1199,3.81982,2.256005,4.99013,1.26401,4.795305,4.466445,2.847555,3.473825,4.07741,1.5832925,1.6265966666666667,2.5633,1.1202566666666667,2.167045238095238,2.2369425,0.45937285714285714,4.81928,2.49733,4.623525,4.36608,2.94851,4.513594166666667,3.35,3.196756666666667,3.7443333333333335,2.7687633333333337,3.3924333333333334,2.946266666666667,3.5666666666666664,2.26977,0.71401,2.2323933333333335,0.64286,1.9135133333333334,2.4123233333333336,3.2964800000000003,3.1876466666666663,1.5594033333333333,1.56579,3.98954,5.0053,4.326665,3.7313275,3.07983,1.8637675,4.40423,8.594201111111111,4.20918,6.35987,1.512245,4.460185,1.99533,3.889675,4.26961,1.875275,4.96346,3.619145,4.00332,4.53147,2.2837725,4.20297,6.581175,5.7513,3.44449,3.416185,1.6657275,2.035025,4.1776,3.09261,3.124805,3.98059,4.008685,3.931515,1.8714075,4.00194,3.63943,2.0120925,4.411004999999999,0.7760566666666667,3.70052,1.757695,4.612125,4.8064350000000005,3.911885,3.13427,3.839465,3.656715,2.1866425,2.34719,3.9230666666666667,2.26447,5.80067,4.321695,4.45126,2.16973,2.46,4.9698,4.54218,2.851738,2.851738,6.021968,3.927028,2.72027,3.20211,2.19692,3.192385,3.670515,3.931201666666667,2.6544404999999998,3.8712,1.001944,4.06152,3.116315,4.444085,2.773625,1.614175,1.597225,3.29202,5.948591,5.584300000000001,3.549275,1.569395,4.25907,4.002495,0.78815,3.239175,1.093548,5.831695,1.440575,4.257355,2.199915,1.5594033333333333,3.56697,3.749215,4.301095,7.25667,4.531415,5.286326666666667,2.37834,2.817145,4.758745,4.511605,4.59132,4.731925,0.9420225,1.76246825,1.18571625,3.03786,2.24717,4.500885,1.18571625,5.15095,2.415505,1.7868225,1.7868225,2.0120925,4.217095,4.634585,4.4317,1.62758,1.62758,1.1404233333333333,3.330265,2.0269925,5.9584475,4.57813,3.666495,3.07254,1.0213128571428571,3.65941,2.52706,4.26677,4.07054,4.262315,4.262315,3.615905,3.88785,2.096435,2.427325,0.9606233333333333,2.387793333333333,3.683115,2.2397533333333333,3.7491033333333332,3.7491033333333332,2.95119,4.987275,5.13875,2.68934,3.62858,4.423505,2.643013333333333,4.791893333333333,2.465965,3.97766,8.765755,4.916865,2.69005,3.18038,2.97657,4.85294,3.227902,7.612735000000001,5.335032,4.674685,3.852555,3.693695,3.871965,4.18883,4.72581,2.731285,4.13954,6.963015833333333,2.64365,2.325887555555555,2.96784,3.301665,3.51376,4.81782,2.4157100000000002,2.3362266666666667,3.40986,3.1407325,2.72317,7.0274193333333335,1.31531,4.6338783333333335,4.6338783333333335,2.94474,3.9021525,3.08888,2.5527,5.03382,4.500067,2.429342,3.88143,4.27609,3.4763391666666665,3.092335,3.43834,6.580236666666666,3.26813,5.19395,3.27968,4.995955,3.98126,4.16647,2.847113333333333,1.79891,2.43748,4.30378,2.809905,3.1489966666666667,3.660715,6.678156666666666,2.576465,1.9193375,3.4671908333333334,2.43111,4.19576,2.621285,0.78815,3.388315,4.509875,3.869905,5.9256775,3.278235,2.943195,2.9269,2.9269,3.5064683333333333,4.59902,4.210515,2.2183025,7.0920000000000005,2.212805,4.55481,3.977175,8.78148,2.7855399999999997,1.4108766666666668,3.354675,4.35378,0.7659,4.240105,3.82581,3.01485,3.23719,5.2947,2.07266,2.32414,9.013875,3.34186,2.68973,1.440575,3.924415,2.69234,2.33613125,4.28857,5.8388725,1.7164125,1.3242749999999999,1.0093483333333333,4.110715,4.028505,3.536,4.0103100000000005,4.0103100000000005,1.8714075,2.25009,3.047281111111111,0.859261111111111,2.886055,1.2654175,1.608535,3.677815,3.51803,2.539225,2.561905,2.458965,4.32923,3.55892,3.20794,2.84441,2.88696,4.29987,6.1896275,4.0204,0.97073125,2.460562,8.34772,4.655125,4.05038,1.0265125,4.40202,1.40108,3.08276,3.08276,3.99813,9.296639166666667,0.9414755555555556,5.0837,4.464405,2.32097,4.045435833333333,3.2217,2.2137975,10.512005333333333,1.7860525,2.534003333333333,3.4508,1.6484566666666665,4.366885333333333,2.6086,3.49051,3.505338,3.21683,3.69695,1.2558683333333334,7.59896,4.19895,4.430315,4.4849,2.1063875,3.13427,3.74531,4.30728,0.7150130769230769,4.744175,4.61135,5.0819,2.1446175,1.547338,4.660215,4.172555,7.76635,0.7763538461538461,0.7385725,0.7385725,1.7230299999999998,1.3711200000000001,1.3667859999999998,1.7309599999999998,4.93283,1.2485733333333333,0.79384,4.1484925,3.88135,1.704145,3.33971,4.495895,3.43497,0.6790700000000001,1.801265,10.96472,3.2501766666666665,4.592505,2.090095,1.433715,2.3978066666666664,2.90334,4.724655,4.430725,4.12081,0.9426757142857143,1.685286,0.961076,5.131815,4.33342,4.039345,0.859261111111111,1.8395119999999998,3.93532,2.2921282142857144,5.344755833333333,1.1942625,4.882865,0.5726666666666667,0.5726666666666667,0.5726666666666667,10.161014999999999,4.234625,1.2654175,3.77624,4.635435,3.354925,3.852825,4.2981125,2.76046,2.0992255555555555,2.1884833333333336,0.6790700000000001,1.4672200000000002,0.5887088888888888,0.6922166666666666,1.286345,3.425345,3.809635,2.2283875,7.925600000000001,4.916999166666667,0.7695555555555555,5.0222,5.574573333333333,3.461145,4.6499,7.421079,3.713857023809524,4.916999166666667,4.4064239999999995,2.76115,4.51694,3.88454,6.511284999999999,3.736845,0.524088,1.5563319999999998,4.284785,1.7426300000000001,1.3242749999999999,4.63376,2.3966366666666667,1.87734,3.522895,1.673122,4.397115,4.753195,4.599825,4.68435,6.05907,3.10142,4.07571,1.093548,2.451555,3.77291,3.332985,2.429342,4.179205,2.548195,4.95001,2.88941,2.25705,3.3271724999999996,1.586192,3.682215,0.859261111111111,2.135434,1.0093483333333333,1.51828,3.48358,1.31531,1.286345,2.54175,3.87632,8.52891,0.9426757142857143,1.0265125,1.2823280000000001,3.548515,4.271875,1.2823280000000001,3.853105,2.451555,0.7659,0.859261111111111,1.7230299999999998,1.093548,0.45937285714285714,1.5614000000000001,4.42441,2.32097,1.4602933333333334,2.56675,1.682005,1.7860525,2.548726666666667,2.1884833333333336,4.55561,2.548726666666667,0.78815,2.4849750000000004,2.33996,0.13899295454545454,0.13899295454545454,0.13899295454545454,0.13899295454545454,0.13899295454545454,3.5185,2.671976666666667,2.908776666666667,2.8847666666666663,5.08855,4.04021,1.761836,3.520025,3.484065,2.167655,5.03860625,2.6881,2.44719,2.32993,2.69149,4.42784,8.28156,2.4175875,2.41838,3.1483696428571424,1.0343671428571428,1.35021,2.35196,2.109933333333333,1.6430575,2.79464,2.3941966666666668,2.7078133333333336,3.016883333333333,2.6147533333333333,4.092115,4.141505,2.85301,1.455212,4.118815,3.72786,1.4990766666666666,1.381236,1.381236,1.381236,3.75907,2.8399466666666666,1.1213633333333333,2.2488966666666665,1.24963,4.45475,1.5638766666666666,6.9774899999999995,3.7144250000000003,2.97122,3.0817380000000005,3.0817380000000005,5.709903333333333,3.26312,4.550195,5.1863,2.20645,3.3386333333333336 +GSM1946776,0.0,1.994905,1.994905,1.68433,4.13406,6.057,2.361155,1.6426999999999998,7.255445294117647,4.35898,3.13888,2.56273,2.33182,3.320905,4.243385,1.77049,1.382652,4.94416,2.6462166666666667,2.2613525,4.4339,5.265253333333334,3.826385,2.25636,1.727338,3.692745,4.39817,4.672935,0.6580558333333334,1.669678888888889,1.8573288888888888,1.79061,1.5301725,1.1185,0.6978341666666666,3.123485,1.5375975,1.737095,1.18067,2.0901975,1.071415,1.0987725,1.1237679999999999,1.449108,0.908262,0.955472,0.812006,1.1575399999999998,1.629066,1.829982,1.553546,1.970728,1.6694400000000003,18.082055416666666,0.3961426666666667,0.9027879999999999,1.117424,1.745886,1.380314,1.652026,1.0749414285714285,1.0749414285714285,1.0749414285714285,1.1779516666666667,1.011654,4.6772725,1.13686,2.2889475,2.0170425,2.2212,0.943431,2.18444,2.1874075,2.140015,1.4460225,1.944475,1.5720425,1.6980025,2.46992,3.613545,4.649615,5.1129,1.6497233333333332,4.297745,4.40516,4.266855,4.18064,1.03156125,7.74854,0.63151875,0.63151875,2.20979,1.0209871428571429,16.436439999999997,4.89887,5.1542,5.4212,4.274605,4.35684,5.25335,0.43788499999999997,2.2431429166666668,1.6925125,2.30792,4.441165,3.554195,1.511875,3.1318,3.6257333333333333,2.5940266666666667,3.5124333333333335,3.45252,4.68853,2.941916,4.453915,2.9554033333333334,0.7247645454545455,1.688708,2.552625,4.916935,4.19113,0.514134375,3.596295,3.74256,0.7832,4.26801,1.6740811688311688,2.35012,2.676875,2.051355,3.58224,5.809,3.451695,2.6241,3.1882266666666665,2.99564,3.98499,2.92301,5.44535,3.455075,4.24313,3.21507,2.44853,3.801025,2.326085,7.029778333333334,3.515265,3.25876,6.01815,3.231245,4.589425,0.7889544444444445,9.445163571428573,3.54177,2.1122799999999997,1.9812316666666667,3.0391166666666667,2.294195,4.666805,5.5042,2.17611,5.1742341666666665,2.783825,4.518865,2.17611,2.9663299999999997,4.40517,5.174708333333333,3.452015,8.880683333333334,3.804805,4.86734,3.06207,5.10195,4.329485,1.7617,8.55157,4.094825,3.896295,3.74286,3.47638,3.28531,2.378835,5.906775,2.43109,3.99994,3.964685,4.88274,4.829345,3.406785,1.350275,2.88432,3.1928,2.038935,2.038935,6.0344016666666676,3.19221,2.0104366666666666,4.336795,4.457235,2.89382,1.463895,0.8024377777777778,4.803,2.758725,6.5337,3.232805,3.827105,3.78234,3.194135,3.775945,3.78713,3.922945,4.108475,5.4058,2.85732,3.69483,9.073269999999999,4.49729,3.528833333333333,2.86318,2.6965,3.7385333333333333,4.17328,1.69544,2.502006666666667,2.05207,1.6841599999999999,1.74796,2.77378,1.7393575,1.8754025,2.94056,2.6815533333333335,2.3808933333333333,2.7303333333333337,4.40516,3.709115,3.48272,3.401715,4.405375,1.3543,3.0882,2.9123774285714283,2.00664,2.63676,2.1527166666666666,3.3818,1.632552,1.37535,2.6718833333333336,0.659296,1.7123766666666667,0.531548888888889,0.531548888888889,1.5053733333333332,2.33723,2.1397633333333332,1.4486766666666666,1.57494,0.30023307692307694,2.800936666666667,0.659296,1.26937,0.19494891891891894,1.5138566666666666,2.02781,3.4863,2.0599133333333333,2.2022933333333334,2.6320099999999997,2.19956,2.499163333333333,2.64295,2.35574,2.2030933333333333,2.711596666666667,1.9615966666666667,2.78825,4.07802,0.7137116666666666,1.86073,2.5610933333333334,1.8582633333333334,3.396823333333333,1.5594540000000001,2.57527,2.12556,4.4491499999999995,2.07391,7.005142857142857,1.5430428571428572,2.911426666666667,2.07458,2.02253,3.1974066666666663,1.84982,2.018795,3.992215,2.58838,2.160835,3.69083,4.16629,4.33013,3.67337,2.35275,3.404725,4.29664,3.874335,3.900785,4.238995,4.435145,3.09472,4.607705,3.488245,0.8874725,4.82275,1.2440383333333334,4.672235,3.891085,5.784483,3.61362,4.296045,0.9619625,2.304615,3.539085,4.16048,0.8260885714285714,1.1379951282051282,2.058977857142857,3.643051428571428,5.295272499999999,5.432493,2.1151575,3.026315,5.20005,0.35531285714285715,3.456335,2.599705,0.97789875,4.65857,1.95906,12.0687,1.2645375,1.3110275,1.9516866666666666,2.39605,1.896605394736842,4.610840394736842,0.33324789473684213,1.61132,2.90584,1.06902,3.6624,0.9749957142857143,5.10275,3.951335,2.1171166666666665,6.08235,5.61365,2.823025,1.1109971428571428,4.463628333333333,5.16505,4.487725,0.8500127272727273,7.4383783333333335,2.6283733333333332,4.399975,2.59875,2.5371799999999998,4.358235,2.335053333333333,2.5096333333333334,2.0728633333333333,2.4561066666666664,3.05378,2.9849599999999996,0.357669375,4.148395,3.785285,3.75322,3.92846,4.39268,6.1062959999999995,4.02847,1.63924,5.5121,4.261075,4.378615,4.061315,1.0705850000000001,2.6493166666666665,3.1466366666666663,2.45349,15.756235,3.19359,3.910215,4.305765,5.58515,2.6949,5.011036944444444,1.63203,0.7692588888888889,2.64545,3.128585,3.39041,3.963345,6.406503333333333,2.8714666666666666,2.328075,2.26846,3.3427666666666664,4.301425,2.217245,0.3875158630952381,3.104472391304348,1.9624325,1.11145125,0.528239558747412,0.668963254399586,0.3875158630952381,0.3875158630952381,0.3875158630952381,1.2028025,1.2899325,0.8764,1.5872975,4.1967425,0.21924029411764706,10.90831579004329,3.4921333333333333,2.6924466666666667,3.93819,3.662715,3.80126,2.163845,4.5028,3.795980666666667,3.94956,3.938845,0.6903584615384616,3.3528333333333333,4.184902564102564,0.5211692857142857,3.50001,2.7340166666666668,4.217705,0.5314890909090909,1.87932,4.5344,3.484595,1.8034,1.86839,1.48817,3.160816666666667,3.9756,3.08985,2.8846933333333333,5.51785,5.4081,4.629525,3.410966666666667,3.228033,6.573766666666667,3.6444666666666667,4.77985,0.4206814285714286,2.988106666666667,3.8162199999999995,2.0630166666666665,2.92557,2.7206525,5.688741666666667,0.57485,2.848175,4.344165,4.35385,1.0480442857142858,4.411615,2.79072,4.70877,3.10118,4.04326,3.64077,4.27812,1.1795083333333334,3.38775,2.7754033333333332,4.49738,4.31665,4.107605,5.95965,4.535565,2.668595,5.71109,2.3492366666666666,2.86014,3.0637399999999997,2.53676,2.54416,2.20355,1.727366,1.4644233333333334,2.0548866666666665,0.8586371428571429,1.5873366666666666,2.553776666666667,1.9740133333333334,3.0044866666666667,3.1250066666666663,2.5821666666666667,0.8864344444444444,4.80855,3.28572,5.5159899999999995,2.7929633333333337,3.1135433333333338,2.9323533333333334,1.6702166666666667,1.6702166666666667,2.4693684415584416,2.4693684415584416,3.2084941558441558,0.4960414285714286,1.8204533333333333,2.1811433333333334,3.7411333333333334,2.1155928571428575,2.1155928571428575,2.1155928571428575,7.080635952380952,4.322341904761905,0.9483181818181818,2.52603,4.41918,2.4634625,4.715495,3.3049,2.50321,3.707795,3.074173333333333,2.9902599999999997,1.0878725,1.9465766666666668,3.4107000000000003,2.4191066666666665,2.573566666666667,5.87565,4.328366666666667,3.8346999999999998,4.82224,1.9183000000000001,2.484923333333333,3.078943333333333,0.9880099999999999,2.084283333333333,4.646406,7.9680425,1.5582925,2.93704,4.570075,1.816652,1.7776525,1.7776525,0.94011625,4.71611,7.167095,4.31238,5.018662,4.36049,1.7472166666666666,3.77455,2.91492,4.386635,4.94678,0.3577157894736842,2.887185,2.67562,3.75562,3.86968,1.7445119999999998,1.8744575,2.4904125,4.318815,4.007485,2.95315,2.55281,1.322864,6.90196,5.7709,4.5704,3.687355,5.02085,4.36916,4.64415,3.63661,3.7329800000000004,1.94819,1.0320385714285714,2.613715,4.04581,3.70835,5.68117,5.6253174999999995,2.3710325,1.8793966666666666,2.67928,2.759923333333333,2.91395,0.7064114285714286,2.134405,3.65495,1.12031875,4.556345,3.36748,6.009024999999999,1.4228884848484848,1.4228884848484848,4.01453,3.79061,3.78673,5.61985,2.8477033333333335,2.3051166666666667,4.272295,3.291485,2.07955,3.3701666666666665,2.42272,4.18267,3.437285,3.60457,4.53901,1.0848377777777778,2.653855,4.09887,4.593875,3.272025,2.56364,1.66062,0.7513577777777778,0.7513577777777778,0.7513577777777778,0.7513577777777778,1.5111161111111113,3.7156425,3.7156425,1.8146366666666667,6.539958333333333,2.674815,4.23906,3.0406433333333336,2.68025,4.6339,4.228025,4.943765,4.98822,1.7914025,3.99408,3.333425,2.6436,3.333065,3.456655,2.636755,4.098955,1.92602,4.865715,1.757,3.3035395833333334,3.004765,1.78412,1.21079,2.836995,4.329415,1.25265,0.85895,3.426455,1.3694275,4.857152666666666,4.39193,1.275755714285714,3.538305,0.7700377777777778,2.6087666666666665,2.31967,2.3109366666666666,2.53798,3.785535,2.8247733333333334,4.51591,5.5006,4.41399,4.21133,2.22052,1.25114,3.82438,4.767525,1.41493,1.41493,4.155295,0.25522066666666665,2.47298,0.25522066666666665,0.25522066666666665,0.25522066666666665,0.25522066666666665,4.880045,2.5923266666666667,2.9668,3.74999,3.160933333333333,4.37489,2.466273333333333,1.1017575,1.1017575,0.867865,0.867865,3.76126,2.01603,4.358385,1.3169064285714285,1.3169064285714285,4.81101,0.46030642857142856,2.84635,7.215531666666666,4.576935,3.236815,3.342175,0.923285,2.24349,1.9914,4.609415,4.064815,4.53042,3.855355,1.25376,2.770915,1.9969975,7.59847,1.788205,4.5288,4.559435,2.979975,3.92048,6.21129,7.609325,4.067855,4.271215,4.08373,2.371315,3.18705,2.595035,2.416235,1.946485,3.94373,3.399185,5.68437,6.78283,3.565975,1.03331,2.66142,3.47407,3.77319,2.18125,4.05735,3.227575,4.6048,1.8805866666666666,4.055433333333333,1.6368966666666667,6.358626666666667,2.7130666666666667,2.38456,2.3379033333333332,2.270095,3.4724,3.359833333333333,3.2563566666666666,2.66573,3.1544966666666667,2.32562,3.204605,3.08822,2.98541,0.37019799999999997,2.940455,3.77196,2.632725,5.4218,4.841425,4.524605,6.683581,4.671595,2.1414166666666667,4.1087,5.2127,1.590025,4.72004,5.73025,5.33585,4.51073,3.29154,5.4672,4.85131,3.58437,5.246905333333333,7.56241,4.188125,1.2105916666666667,1.4456216666666668,2.465455,1.7200859999999998,4.23043,3.919445,4.56082,2.5319533333333335,2.4811099999999997,2.7268833333333333,2.5287533333333334,2.2424066666666667,0.9666333333333333,0.4957770588235294,3.67219,4.050185,3.6919,4.23376,3.066315,3.255803333333333,5.133486666666666,2.9624400000000004,0.5799229411764706,3.054715,5.4266,1.5562,1.646058,3.81467,3.48501,2.46022,3.7525666666666666,3.899605,2.7717033333333334,2.29496,2.4415566666666666,2.5819633333333334,2.83486,4.670135,4.873846666666666,6.124948666666667,1.392264,5.00315,3.225614583333333,4.976606583333333,2.47763,3.23191,2.54211,2.134576666666667,1.428655,1.428655,2.78895,2.4973966666666665,2.7539433333333334,3.700965,1.7383859999999998,2.49866,1.92455,0.3974975,3.58449,0.5448258333333333,0.93103375,3.511875,3.909135,3.790215,1.654235,4.17882,2.92235,0.7719928571428571,4.10779,3.7003814285714287,3.1026000000000002,2.459745,5.0843,0.2692,2.147227,3.239835,1.5711475,3.930565,6.6048,2.443895,1.45986,4.12434,3.951905,2.8296766666666664,2.8296766666666664,3.58465,2.73045,4.40731,5.579700000000001,4.990595,0.9770777777777777,2.597986666666667,2.426766666666667,4.305495,4.956855,5.51055,4.767375,4.2969,3.7645999999999997,3.6529000000000003,3.6153333333333335,4.091600000000001,3.0199833333333337,2.9966566666666665,0.5888821428571429,2.3074625,2.377935,3.59986,2.96289,3.1518266666666666,0.7444125,2.47508,4.009650000000001,4.3308,5.67155,4.915045,1.757075,1.757075,0.816654,2.88695,4.40013,3.51649,4.627512857142857,3.20427,4.49387,0.588130909090909,3.078755,3.4556,4.03887,3.926119166666667,0.8497728571428571,2.821745,3.834615,5.49765,3.99226,4.90855,2.872365,4.15746,1.5048,1.0381671428571428,2.7134933333333335,5.12855,4.652485,3.37825,1.45793,3.92284,2.627025,2.4792975,2.8196222222222227,3.005266666666667,4.502233333333333,3.0434566666666663,1.7256,3.3704,1.5052365476190477,2.88998,2.6130733333333334,2.3098025,2.73292,2.84469,2.4134966666666666,2.7091999999999996,3.601955,2.9364966666666668,3.4504173333333332,2.5325633333333335,1.95358,4.108736666666667,3.0412,2.49659,3.4504173333333332,2.1490266666666664,0.7841672727272727,2.361345,0.9958322222222223,2.27935,1.5764725,0.9556909090909091,1.6324175,1.6058525,2.64794425,2.59445,4.467025,1.55859,4.733275,3.04187,1.561742,2.30465,2.502823333333333,1.6730266666666667,2.61205,2.7020433333333336,1.9360127272727272,1.3555,1.814998,3.6452000000000004,2.30195,2.956926666666667,3.11229,2.999643333333333,3.5749,1.99118,4.196466666666667,3.510066666666667,3.6854333333333336,2.722773333333333,3.568633333333333,3.6298333333333335,1.7166633333333332,9.914215,4.062845,4.21467,3.3433,2.826345,2.09799,4.134185,1.635894,4.15723,4.052155,1.385248,2.57259,1.1400416666666666,2.48582,1.7039033333333335,2.38153,4.996171666666666,3.172413333333333,3.51761,4.74713,0.72901125,1.414274,0.9478989999999999,3.622895,10.187581666666667,3.2579266666666666,6.5604,1.9973025,5.13175,4.08384,2.48376,4.833845,0.29118058823529414,0.8324485714285714,4.4229,4.308545,7.1424025,1.9526525,4.521565,5.59955,4.77922,4.692645,3.427295,4.4184,3.482615,5.654193333333334,3.5735,3.1473,3.17835,2.2046233333333336,1.9865633333333335,1.4714016875,2.4726266666666668,4.094545,4.72695,1.5641880000000001,9.21217,2.1066066666666665,2.933615,0.9727180000000001,0.9727180000000001,7.082165416666666,3.12439,2.3568825,2.176175,2.6052733333333333,2.0743666666666667,1.01705,3.7783683333333333,2.58988,0.5509514285714286,1.8596033333333333,3.20801,3.20801,1.23118,2.62764,2.3135766666666666,2.5526616666666664,1.42613,1.8677733333333333,4.64583,2.492923333333333,2.632925,1.22767,1.22767,3.92987,5.503,4.230095,3.333535,3.785575,6.30083,3.00351,2.7839466666666666,2.9403066666666664,4.15822,1.1870083333333332,3.1310466666666668,2.54675,3.844555,2.2256666666666667,4.74095,3.44474,4.4089,3.762955,5.637158,0.9441144444444445,1.9313375,2.20243,3.68846,4.1883175,3.798035,3.62849,3.539105,2.46999,1.70144,4.188715,3.516755,3.19072,2.4872733333333334,0.84335875,3.355145,4.19517,4.64588,1.2731566666666667,2.72387,2.3965533333333333,1.8410399999999998,1.7394072549019608,1.7394072549019608,1.1692366666666667,1.93639,1.0507,1.391748,4.26026,3.970545,0.46336000000000005,3.366515,3.304016666666667,4.020895,5.09995,0.410451,8.980329999999999,5.39615,2.59582,3.76843,4.49854,5.357216428571428,4.914805,6.92563,0.6841381818181819,2.624076666666667,5.171,2.6694833333333334,1.66298,1.9976880000000001,4.389415,4.93299,2.39731625,3.4764,3.0472133333333336,1.8500425,4.19851,10.475200000000001,8.02877125,3.8049999999999997,4.584225,3.1209974999999996,3.190155,3.912135,1.7778479999999999,2.9591133333333333,3.66722,4.440865,4.67925,5.02119,6.407023333333333,2.0905566666666666,4.265335,4.541095,4.978605,4.43966,6.902713333333333,3.98089,5.8815,3.445155,3.03549,2.886715,5.6583,3.7505,4.739555,2.42784,3.1411833333333337,3.28767,5.71395,4.086195,3.838105,1.456814,0.94606,2.3633275,0.541848,3.793695,3.627135,3.68313,2.899525,2.0691666666666664,2.91665,2.648475,3.1015120000000005,1.9285080000000001,3.096145,2.846725,2.4333775,2.5207,3.8185979999999997,1.1686433333333335,2.782443333333333,4.98018,3.682033333333333,1.0308025,2.8552666666666666,3.679485,3.741657,1.516975,5.76345,5.40895,2.3759166666666665,3.075763333333333,30.08512626759025,3.1384399999999997,1.7195833333333335,4.007633333333334,1.5962933333333333,2.6120200000000002,3.0046933333333334,3.3910666666666667,1.975655,2.695525,1.80352,3.8451245,3.0719,2.4757475,1.5248325,2.21264,2.835,0.37380727272727277,1.129275,2.89038,1.573054,3.444195,1.516975,2.026666666666667,25.265468722222224,4.805335,3.70807,3.53958,2.58284,2.61315,2.56357,2.3209225,3.50114,4.6697109999999995,5.2803,1.574706,1.740812,2.16721,2.342785,3.6158091666666667,5.06835,4.65055,4.44094,0.1746004255319149,4.873015,4.88891,3.834755,8.74172,1.10656,1.10656,2.976036666666667,2.76477,5.3638,1.8341666666666665,0.9654233333333333,4.591895,2.0069725,4.11341,3.825265,3.29953,4.09615,4.13607,5.06445,3.081455,0.7368366666666666,3.377535,2.2656675,4.194565,7.78228,4.36006,1.9824400000000002,1.9824400000000002,6.544510000000001,4.498435,4.3584,5.42795,2.019343333333333,4.954008333333333,1.35017,1.3379366666666668,3.00408,2.3767866666666664,2.810615,2.64311,3.921305,4.3940325,4.005685,5.51295,2.21251,2.860875,1.8590925,2.525825,2.336035,1.948855,2.2012525,4.853605,1.8828975,3.6037233333333334,2.504626666666667,2.96251,2.7258,1.5608700000000002,1.428332857142857,0.9130520000000001,2.432123333333333,3.9015,0.730036,4.41447,1.8305825,5.8694500000000005,1.98918,1.532955,1.586155,1.6480433333333335,5.637897777777778,1.809758,3.0379,3.6443,1.1478775,1.779145,5.026769333333333,3.1995966666666664,1.8940599999999999,3.4217,2.7613566666666665,2.831163333333333,1.2664232142857141,0.27187916666666667,0.27187916666666667,0.27187916666666667,0.27187916666666667,0.27187916666666667,3.65624,2.7304833333333334,2.5184,3.3374,1.4774216666666666,2.6759033333333337,2.8825033333333336,2.18528,3.36398,2.79889,1.6844700000000001,2.9062666666666668,3.1183366666666665,2.08497,2.067515,3.85195,2.714166666666667,3.7611666666666665,5.0416,2.6849866666666666,2.697173333333333,2.481403333333333,10.787761666666666,4.3917,4.124815,4.81862,4.07401,2.9182633333333334,5.23665,3.660855,3.929325,5.4557675,3.62455,2.954715,2.203775,3.263815,4.752165142857143,3.233955,17.563243226190476,1.02787875,4.32711,0.8740955555555555,1.19591625,2.879075,4.671455,4.20982,4.510155,1.5633949999999999,2.334805,4.34908,2.0663833333333335,4.33319,3.0865210714285714,2.5837166666666667,0.6385166666666667,2.8509100000000003,4.87778,2.3110175,2.31312,2.147635,19.623008333333335,1.29175,1.3474875,2.39653,0.2765796153846154,1.7329825,2.725,2.031756666666667,2.9275300000000004,2.558025,7.304874166666666,1.9610725,2.5014,2.252815,2.002585,1.6258483333333331,3.15129,3.15292,3.94688,3.1071266666666664,1.923525,2.5478708333333335,2.9862275,4.92901,0.41742250000000003,3.683733333333333,3.04287,3.07159,1.875035,3.7229859999999997,3.708575,1.5742166666666666,2.36041,2.24907,1.4192033333333332,1.9485133333333333,3.611935,3.365145,0.7911516666666666,3.29011,4.733755,4.06529,2.360502,2.360502,3.1010633333333337,4.28573,3.19978,3.25698,2.26739,0.8237827272727273,4.15439,3.687225,6.0191,3.962025,2.366472,2.366472,1.3952925,2.98868,4.92139,4.14354,4.26974,2.9303733333333333,2.339166666666667,4.30829,3.354805,4.206455,2.7253600000000002,2.025063333333333,4.237157333333333,2.8928366666666663,2.7171133333333333,1.8747133333333332,3.305135,2.649375,1.7098633333333335,3.73724,3.12639,4.21505,3.5523666666666665,4.8985,4.319835,6.3162122499999995,3.810205,2.04176,4.593225,2.73152,7.03388,2.44524,1.1148766666666667,4.47394,3.813966666666667,4.58459,0.5451178571428571,0.8059191666666666,3.56713,3.766875,1.8627660606060608,4.23568,2.947815,3.11249,8.660002,1.820422,1.251368,3.492885,2.707685,3.184375,4.881155,6.473418333333333,3.1356383333333335,2.065583333333333,2.67053,1.91292,3.1073166666666663,8.617227479474549,1.0051769047619048,1.0328325,4.45149,0.44814333333333334,1.6095875,1.9374575,2.815175,3.047225,2.852075,4.650865,2.209035,12.22162,5.20437,2.4844825,2.4844825,4.148925,0.8879100000000001,4.810700000000001,3.776535,4.31327,5.561211666666667,3.53191,4.892085,1.3502,2.969115,2.773075,3.02362,3.2185,2.63832,3.10095,3.623565,3.575135,3.163815,2.912415,3.79117,4.131645,4.303555,2.72177,3.2446366666666666,4.71387,4.17956,17.929614523809523,11.394246071428572,3.298489285714286,0.6865933333333333,1.4112985714285713,4.51714,3.447845,3.0600783333333332,2.27301,0.8302944444444444,0.6227358333333334,0.68044,2.022455,1.6218879999999998,5.22155,3.2190333333333334,0.7175118181818182,3.3378,2.543095,1.72143,1.622322,6.2298100000000005,1.5383,4.16712,2.76369,2.8714733333333338,2.48925,2.7028866666666667,2.639283333333333,0.7034,3.24526,2.94994,3.9113246666666672,2.9730399999999997,7.262655833333333,3.675675,3.330095,2.4735575,3.522115,6.3703575,1.889955,2.377715,2.39256,1.720125,2.493665,2.12375,2.568475,0.887368,1.3736325,0.9710725,3.005935,4.224735,6.3247,5.48505,3.26262,2.189245,2.7827,3.3043066666666667,7.155456666666667,1.1842266666666668,0.3533575,2.726695,2.1903,1.506046,3.3442790000000002,1.184616,1.680077,3.584175,2.8246253333333335,1.23596,1.9601966666666666,3.802531666666667,3.69648,4.37948,3.793385,1.8616275,4.90458,3.78546,0.7543307692307692,4.71891,4.19754,4.12243875,3.0438533333333333,2.54523,1.340446,1.132215,3.64078,2.800825,3.364395,3.809215,2.73866,2.5200033333333334,3.326755,3.831925,4.17708,2.62554,2.980935,4.202025,5.6774,0.61667875,4.32042,1.7200275,3.62747,3.9941333333333335,1.42869,3.14247,2.1163325,2.21347,2.595185,2.3227475,1.74803,4.45398,3.683725,1.1883885714285716,6.77976,1.1003800000000001,3.537205,1.9858399999999998,4.73446,4.188685,3.21115,3.151825,4.14931,8.72688,3.266575,3.71324,3.65317,3.7455,1.7325525,8.1063,3.96365,3.92096,1.73253,4.362355,3.046275,1.0056425,2.01236,4.00862,2.47191,4.133085,4.9661475,4.0624225,4.51197,2.034735,5.21035,3.98239,3.2609999999999997,2.3523066666666668,1.447816,4.38003,6.27145,4.36959,4.77226,3.02012,2.1348125,4.011385,3.3604,1.1705306593406593,4.33605,4.924697500000001,3.865385,2.849975,3.824265,0.5068971428571428,0.5068971428571428,4.340815,4.02404,3.569905,2.40904,3.735835,6.026,0.830213,4.18881,4.68552,4.428225,4.785145,4.840775,1.8785775,3.38028,2.148775,4.38837,0.64735,3.91386,4.14915,2.891295,2.87966,4.16908,2.36958,3.324675,59.53095377489178,3.375285,2.6547233333333335,1.7679925,3.393205,3.9999,0.79182375,0.9782775,2.0947675,2.0947675,1.358358,3.31112,2.194915,3.6049879999999996,7.33026,2.83485,1.2181614285714286,1.2657383333333334,2.7933333333333334,4.115875833333334,0.8452759999999999,1.928625,1.0123419999999999,1.823555,3.947935,3.94922,3.21203,20.275660941558442,3.46499,4.125115,3.27724,2.26003,2.90236,3.340835,2.37803,5.80291,1.424136,4.01295,3.3255329920634917,5.750253194444444,2.10959,2.70452,1.99346,4.07995,2.30692,2.2342675,2.0273499999999998,3.5800255555555553,3.623065,3.349275,3.87767,4.03978,2.4155625,2.571165,3.17437,2.867855,3.0058055555555554,2.295875,2.0031475,3.37697,1.17762,3.908265,4.47128,2.609905,4.70236,4.737315,5.016063333333333,2.09865,2.763055,2.6839,2.78418,4.156085,3.432805,4.64858,0.7883585714285715,3.850428,2.916565,3.87912,2.2831925,1.840926,3.95259,1.1754666666666667,3.19057,4.30685,1.172654,3.9669,3.196645,4.524835,6.131724999999999,2.180255,2.90909,2.6809999999999996,3.7996666666666665,2.9111100000000003,2.684336,3.15891,2.4923566666666668,2.44784,1.4483066666666666,2.02034,2.02034,1.9957200000000002,2.1355933333333335,1.8590200000000001,2.6016866666666667,3.6104,5.44825,4.168535,1.650875,4.22382,4.32764,3.6163,4.36836,2.01259,2.511845,4.5484225,2.08773,4.472745,3.58503,3.685845,2.5341466666666665,3.821608125,3.222085,3.125045,3.58415,0.14843591836734693,2.17351,7.80104,1.5511139999999999,3.448355,3.03968,0.9912357142857143,1.0836983333333332,1.91535,3.804015,3.05082,7.06834,3.52956,3.69294,2.99188,2.633515,3.5327,3.620135,4.128735,3.675645,2.9792166666666664,5.43935,4.01305,4.03652,2.486686666666667,1.9413475,3.471225,4.40628,2.832715,2.787755,2.28237,2.773655,4.812895,3.795405,2.73182,4.51251,5.0736,2.809705,3.45346,3.822995,3.739555,4.65201,3.587285,2.48146,5.52454,4.5505,5.2177,5.1592,4.3573,4.9786525,4.35483,3.91959,1.30647,6.5218,2.428875,4.057425,4.139395,3.959685,3.109273333333333,1.9732766666666668,2.223613333333333,2.52733,0.991587,3.4219000000000004,3.801066666666667,3.11286,1.9725866666666667,3.79848,4.018985,2.35958,0.5632683333333334,4.52804,4.61524,4.959985,4.58573,3.552545,4.601675,4.78324,4.961075,1.3380555555555556,0.9313,2.8657566666666665,5.17965,5.82515,0.498811875,2.869185,2.5228699999999997,3.27866,4.515725,3.9052333333333333,1.9352575,5.44445,3.531655,4.377285,3.005825,6.32025,4.881845,6.8131825,0.5222041666666667,4.21697,0.7947,2.47757,4.011166666666667,3.1121200000000004,1.4113766666666667,2.2691600000000003,4.278065,3.447515,4.31885,2.226923333333333,1.843515,3.20749,4.531135,4.101335,3.654955,1.6570799999999999,1.1630094285714285,6.06145,2.1579375,7.7350975,4.228895,3.7402,2.0280675,1.6776975,4.056565,4.266785,1.9112466666666668,2.50659,2.4264,2.17351,6.6078608333333335,3.1286400000000003,2.7632033333333332,4.070438333333334,3.50768,1.9081733333333333,3.58604,6.898277500000001,4.49832,5.01145,0.5021481818181818,3.29454,4.033165,4.402074285714286,3.740505,4.16735,3.03428,2.88325,3.26278,3.023095,3.4152465000000003,2.04976,5.607715000000001,4.699165,5.1632,3.9582,3.389395,3.2408791666666668,2.2806075,1.37005,1.022865,2.91333,2.441545,1.1030433333333334,2.7054266666666664,5.09995,4.411575,3.52332,3.946615,16.715480714285714,4.016955,4.713245,3.834315,0.7493016666666666,4.91683,4.23777,3.764295,4.822705,4.94857,2.744465,3.63562,3.2953,1.523622,3.308515,4.726015,3.3833,1.4527839999999999,3.618995,4.923655,4.01161,4.842125,4.929265,5.51125,3.997625,2.61244,4.247855,4.1071,2.755985,3.0860833333333333,2.9528966666666663,1.5291754166666667,4.70199,2.5880964285714287,2.0877666666666665,3.878915,2.304685,4.40708,4.108736666666667,2.40183,2.63444,4.45348,3.66955,4.257635,4.454115,4.93315,4.856221,3.109125,5.4516,2.6652983333333333,3.538115,4.118775,1.5613899999999998,4.58075,1.0304016666666667,4.44608,3.04524,0.9027385714285714,3.92201,2.06739,6.284,2.449262666666667,2.449262666666667,2.449262666666667,0.7258683333333332,1.126755,1.92109,3.40789,5.92364,3.671672222222222,1.948525,2.1840175,1.7663966666666668,3.72282,2.5056,0.40431,1.742785,2.2744075,3.12169,1.929395,2.411015,2.489625,2.1280525,3.821875,2.72256,3.06664,2.96268,2.0284,6.43659,2.033915,4.31233,3.804,6.547375000000001,1.9326699999999999,3.640615,3.942215,3.59127,4.120015,2.6307,1.8709275,3.953275,5.662493333333333,2.52594,3.532845,3.343625,1.868815,4.61576,4.335795,2.5874433333333333,2.17866,3.7027799999999997,5.033306428571429,5.97215,3.264765,2.587535,2.740045,3.0335,2.692525,3.940705,1.372335,3.000555,4.656905,0.87281,3.373865,3.910875,3.809905,3.058935,2.490515,3.25778,2.221245,4.50194,7.750368333333332,4.33026,3.51189,3.096945,0.99314,4.6167,2.14439,4.23326,5.5372325,3.490915,3.98874,10.393989999999999,4.62467,4.070215,1.57733,0.6960116666666667,3.00335,3.86873,3.49474,3.655905,2.25477,2.52018,2.297023333333333,1.1568866666666666,1.1568866666666666,2.11811,2.4709166666666667,1.9229666666666667,2.336856666666667,2.81472,1.92566,2.466126666666667,2.9951866666666667,1.50125,2.1984266666666668,2.1479933333333334,2.0163233333333332,1.67073,2.6151466666666665,0.8440300000000001,9.517809166666666,0.8440300000000001,3.2129166666666666,2.1619466666666667,1.99889,4.28935,4.340275,3.829005,3.869495,2.1013566666666668,3.0428566666666668,3.254794,2.020093333333333,3.0346100000000003,2.908416666666667,2.3900799999999998,2.6255366666666666,1.6540966666666668,5.3875,6.206930666666667,3.0033999999999996,3.3195533333333334,3.2575766666666666,2.65525,2.45954,1.1185,3.5973,3.557033333333333,3.91003,6.03935,4.31245,2.86693,3.305493333333333,2.72122,4.12498,4.245015,2.7122266666666666,3.572585,2.994683333333333,2.8704966666666665,4.64152,3.1813566666666664,3.415065,5.829635,1.86066,2.4683366666666666,1.6935133333333334,1.4348433333333332,4.44045,3.480018333333333,2.6580133333333333,2.18154,1.9499700000000002,4.33216,3.65795,2.63369,3.3415666666666666,3.06152,3.3926,3.4164333333333334,3.380466666666667,3.108053333333333,0.637095,3.658166666666667,2.434886666666667,2.7754766666666666,3.47502,4.27226,4.037685,5.04515,2.54781,3.8963733333333335,1.1211933333333333,2.8200866666666666,2.8200866666666666,4.25517,2.87699,3.860445,4.128795,1.77881,3.529615,3.643045,1.1237028571428571,3.7185601666666668,2.975456380952381,2.115250666666667,0.373364,4.337205,2.813475,6.99882,2.93647,5.91205,3.353515,3.750805,3.81299,1.5972837500000001,2.75797,4.033145,3.395075,3.3214366666666666,2.956023333333333,5.55639,2.01886,1.03430375,1.8987999999999998,1.8210766666666667,5.67035,2.3612333333333333,2.413326666666667,1.680525,4.347945,4.02603,3.868865,0.506556,4.198715,3.662525,2.43457,2.39243,2.5690633333333333,3.0210388888888886,3.9425166666666667,1.5240066666666667,0.6316368421052632,0.7497357142857143,3.3436333333333335,3.7798,5.95229,4.567955,4.24555,5.17655,1.3102357142857142,3.9941333333333335,2.23772,1.0000925,5.5738,6.1116,2.546385,4.702425,4.07612,6.733955,3.9151000000000002,5.918915,3.735415,2.4779183333333332,6.2446,10.105017801282052,2.53945,0.619247,3.10449,4.120225,2.34294,6.3236,3.75156,3.572075,2.63448,2.63448,5.94095,3.34165,3.90669,4.837525,3.5649257142857147,2.3087514285714286,1.04048,4.76737,2.76111,5.02216375,3.54433,4.15403,2.984825,2.00181,4.2247,5.02775,3.508566666666667,3.94728,4.374205,26.890179285714286,1.9468025,2.535475,2.3288275,1.7141333333333335,2.550333333333333,0.9164642857142857,2.8211066666666667,3.0096233333333333,3.2474066666666666,2.9010233333333333,0.6048392307692307,3.0335633333333334,3.432895,2.867065,3.09947,3.53396,5.912635,4.686855,3.8498,3.559555,3.911884166666667,3.801275,3.4848666666666666,1.78358,0.9674083333333333,1.5200266666666666,2.27361,1.5679766666666666,2.900926666666667,2.4734599999999998,2.4298333333333333,1.98012,2.63523,2.1117,1.80523,3.115535,4.24252,3.70104,4.04801,1.417736,3.29809,2.5220866666666666,3.67597,2.15944,2.85757,2.39101,1.47663,3.86764,6.59717,2.88139,3.51885,4.12327,2.496605,3.5506925000000003,3.492566666666667,3.408265,4.50359,0.2940367245817246,0.2940367245817246,4.641645,5.0582,3.14057,3.039705,5.3131,3.958635,0.6384915384615385,4.701935,4.14146,3.63628,6.37075,4.722545,7.55595,13.886346666666666,12.415569871794872,4.417015,4.357435,2.5031766666666666,0.5790915384615385,2.4769466666666666,4.102945,1.337315,4.54508,3.5148333333333333,2.7021200000000003,2.08875,2.0278733333333334,4.85327,4.724335,8.766687738095237,4.9657,4.199015,7.187460984848485,3.537205,3.27726,1.330435,5.2129441666666665,1.8723775,2.4540933333333332,2.8805033333333334,0.250925,3.02963,3.532065,4.604359166666667,0.7697700000000001,1.117885,4.08532,0.5887749999999999,0.5887749999999999,3.165402916666667,3.19415,3.177186666666667,3.89192,4.39476,5.48225,3.83392,4.327205,2.951555,3.1151966666666664,2.6182633333333336,0.8797333333333334,2.76333,2.91412,3.045615,6.975825,3.052335,9.345,3.0276,4.819615,3.134145,2.299025,2.390355,2.7212,1.9146475,2.3512725,1.8454225,3.41602,2.350015,4.181245,2.95198,4.099616666666667,4.099616666666667,2.733509166666667,2.733509166666667,8.6952655,2.4870566666666667,0.808981,2.62899,2.53272,2.6375033333333335,4.181245,1.868566,1.89959,1.5258639999999999,3.63139,3.606385,1.595355,4.55755,4.240465,5.8613494444444445,6.589671666666666,2.1794466666666668,4.294205,5.47121,3.693545,3.079045,2.1936033333333333,3.224805,3.227923636363636,4.238085,4.8950925000000005,7.10365,3.34390375,3.04809,1.1839983333333333,4.283445,3.691752666666667,3.496745,3.662345833333333,4.186225,2.37989,2.35652,6.314495,2.82827,1.318044,5.22616,3.73566,2.505056666666667,5.09835,2.505056666666667,2.476895,3.338365,4.868525,1.0365071428571428,3.8712944444444446,4.257975,3.46928,1.2831883333333334,1.7067475,3.617815,3.737575,2.454365,6.309758333333334,3.96653,3.64145,3.84823,4.4278200000000005,1.295835,3.70373,2.61167,3.720725,3.701395,3.3307,4.55053,3.544865,3.778905,4.80058,1.9125390000000002,1.914515,3.1832366666666663,3.5495666666666668,3.4394666666666667,2.6625033333333334,3.4423,3.1501099999999997,5.59775,3.473595,3.633985,2.76177,1.93949,3.4595333333333333,1.95625,3.081695,3.17103,3.007965,0.64735,2.126375,1.92947,3.26087,1.8027380000000002,3.391062,4.21256,1.23678,3.1515225,4.40786,0.791304,1.4648066666666668,3.221205,3.92467,3.16282,2.12408,1.7314266666666667,3.54694,2.681188333333333,1.7017133333333332,3.010495,1.964345,1.1681,1.43932,6.430125,3.31817,2.21455,2.52907,2.36238,3.825595,0.903235,0.34513,0.7882057142857143,4.647325,1.729661,4.3492,2.138355,1.4075934285714287,2.7075788571428574,1.2999854285714285,1.0703314285714287,0.7415700000000001,0.5862714285714287,2.3995266666666666,6.3722,3.05435,3.835255,0.3255242857142857,3.643995,17.67431242857143,3.17247,6.856328466200466,1.11518,1.11518,1.11518,1.11518,5.6316,4.09291,4.502025,2.2833666666666668,3.095065,4.20988,4.755265,3.712405,3.557675,4.20865,3.97978,3.72258,3.830369333333333,4.13301,4.767005,4.22556,4.465675,3.31323,4.2462,2.56169,3.36674,3.434935,3.40088,3.774065,3.998895,3.0270166666666665,2.3460625,2.4635966666666667,3.84071,1.2802321428571428,3.880475,2.45691,3.276892666666667,4.0624225,4.30965,3.340075,3.00433,4.47625,2.72453,3.15447,4.87375,4.76359,3.276695,3.35189,1.6795559999999998,1.6795559999999998,1.6019875,4.606405,3.69981,5.028081,5.04585,3.6021,6.51755,4.68665,2.0309725,9.46248,5.47385,6.5028975,4.444805,2.5743733333333334,2.835785,0.25436,0.86719875,2.983519333333333,3.62726,4.659925,2.865326666666667,6.266335,5.01255,0.5807064285714285,2.690695,0.451615,1.796903095238095,3.236095,2.40801,3.997975,3.762035,3.331405,3.496005,3.31823,3.814205,3.459835,3.635305,3.412145,2.39588,1.796903095238095,2.803225,2.0811725,3.796715,2.50478,3.931545,3.585,1.7325525,4.482355,2.99737,1.3133733333333333,4.8093,4.654,4.17612,2.848713333333333,2.9313033333333336,4.02269,2.0723733333333336,1.395216,2.4808266666666667,2.6070366666666667,2.4416733333333336,2.1697933333333332,4.88937,3.163895,4.9562475,3.7393392857142858,4.697125,3.742965,1.524778,5.121,4.25376,5.4203,4.09135,6.91056,1.770645,4.720255,3.72193,3.25351,1.7671875,1.8454666666666668,4.01416,4.382095,2.5354033333333335,2.588482083333333,3.29888,3.29888,2.5887,3.0250133333333333,3.470675,4.058455,3.931485,0.6779861538461538,3.404605,4.62784,4.837017222222222,3.165325,3.219695,1.9254925,2.9436,3.525175,2.27467,4.52973,2.80175,4.91568,1.8386233333333333,1.0158272727272726,6.766,3.67772,3.064526666666667,3.098613333333333,1.787548,30.160339047619047,3.90595,3.61686,5.99515,4.482745,0.8780166666666666,6.89809,1.941495,5.6489,1.3662033333333332,4.63944,5.017893333333333,3.828905,3.14463,2.0450375,3.3997666666666664,4.73328,1.9259075,2.7696733333333334,3.397015,2.47471,2.63945,5.98105,2.14404,6.1182,1.11151,4.399425,3.73387,3.922485,4.897365,3.08799,2.2318266666666666,3.994,4.368995,3.7938425,3.7938425,5.7155,2.0514525,4.2694,6.382538333333334,3.4771,4.08404,2.950085,5.07135,3.629775,4.1755,1.36325,2.489495,4.263355,4.33289,5.4216,4.39071,2.459275,9.19273,2.804365,3.832955,1.6490285714285715,3.629825,2.3357433333333333,2.774626666666667,2.1494425,1.3769633333333333,2.6041266666666667,0.9416528571428572,1.1644514285714287,1.1644514285714287,1.1644514285714287,1.8546366666666667,0.5970025,3.88476,1.2153466666666668,2.4034333333333335,0.8371483333333334,1.8682766666666666,2.6613533333333335,2.04255,0.75702625,1.68541,1.5845366666666667,2.33207,1.695842,1.695842,1.7477133333333335,1.8615266666666666,0.8654400000000001,1.74153,1.6859233333333332,1.2788233333333332,2.66901,1.996695,5.80775,1.6996,5.69235,17.22954025,6.501835,3.58853,3.583916666666667,3.257426666666667,2.7251600000000002,2.69335,2.955966666666667,0.6824958333333333,0.9537789999999999,0.9537789999999999,0.667775,2.2618666666666667,3.654305,3.450365,1.457192,5.035,3.746265,2.68458,3.798825,4.667735,3.879195,4.06895,3.5528333333333335,3.025655,3.57245,5.67155,3.1053266666666666,4.83919,0.526965,0.526965,2.306945,2.63864,4.71468,3.50038,3.803885,4.8747,7.620792,7.308400000000001,3.57311,2.3576,4.392395,3.497495,2.4208833333333333,2.404945,3.327035,1.3516066666666668,3.865095,2.630575,1.6758125,3.3836999999999997,3.75141,2.11183,4.8950925000000005,1.608255,3.4469666666666665,2.929145,0.9972457142857143,3.6296666666666666,2.7545133333333336,4.251795,1.1533583333333333,1.801585,2.280735,2.0645575,1.710415,2.3497325,1.8801175,1.9860425,4.11481,4.3129,2.508575,1.936135,1.5336366666666665,3.544166666666667,1.9995466666666666,2.583775,4.474235,7.2701,2.3723625,3.36409,3.49748,3.597085,2.606895,4.980625,4.111535,2.96672,1.3226,4.577385,2.42339,3.215256666666667,2.75701,3.776775,4.924175,5.51135,2.1976166666666668,2.6565933333333334,2.7954033333333332,3.404533333333333,1.9696833333333332,1.513622,5.2917,3.2364366666666666,2.249385272727273,2.9595966666666667,2.8747133333333337,2.34448,3.0993,3.076216666666667,3.3544,5.11015,4.471185,2.8996099999999996,4.626255,3.31595,2.35497,3.61855,3.756875,4.067215,6.138271,1.81292,3.932565,2.49316,3.675325,3.615475,0.56469875,2.458685,2.380205,3.34461,2.71965,2.30171,2.807205,0.590257,2.6297866666666665,4.302435,2.415285,4.04504,2.3402266666666667,3.761835,1.9370675,4.428405,4.37925,1.9939879999999999,2.83971,6.92794,3.68008,4.19269,4.79574,6.8635104545454535,4.12417,4.16104,2.148915,4.456915,2.948,1.97786,1.976115,2.066316666666667,1.0393285714285714,2.69762,2.388176666666667,2.5830866666666665,3.28828,1.78994,3.21558,1.9088166666666666,4.182155,5.0020475,1.06922,1.7854433333333333,2.6069166666666668,2.840123333333333,1.9099700000000002,1.1202050000000001,5.476861666666666,2.148665,2.7593333333333336,2.49905,2.5065233333333334,2.72047,3.18117,2.24371,2.8072366666666664,2.2209600000000003,4.068225,3.426635,4.01474,3.06202,2.9524266666666663,0.661191,1.73728,2.0620525,2.0146,2.5246033333333333,1.2145383333333333,2.7506766666666667,3.0194733333333335,3.79756,1.9031266666666669,3.41062,3.24146,4.84534,3.20793,0.5938083333333334,2.06324,2.6531766666666665,3.228706666666667,0.6935927272727272,2.8712,3.344964,3.3760999999999997,2.76156,3.282138333333333,3.87663,3.7431666666666668,3.0663733333333334,1.8116675,5.45385,4.818805,4.79441,5.46595,5.56895,1.8625233333333335,3.61647,3.5597999999999996,3.336233333333333,2.7181833333333336,2.7149366666666666,3.852266666666667,3.438833333333333,2.8447366666666665,13.471734999999999,4.462835,1.04007,2.7655133333333333,1.429158,3.1348766666666665,3.204333333333333,2.22366,5.5987116666666665,6.496096833333333,2.1627466666666666,0.849793,4.13402,3.3884333333333334,3.07724,4.553495,5.3045,5.4501,4.638715,3.62776,1.9546975,6.5048675,1.1839983333333333,6.374345,4.41684,2.3324866666666666,3.79908,7.005470000000001,5.56285,2.12886,1.4302966666666668,2.07458,6.239888333333333,1.516975,2.9646066666666666,2.4681266666666666,4.1628622222222225,5.83045,4.402995,6.4581,3.60443,5.08365,3.71631,9.04035,4.811935,5.90045,2.39357,2.4797,11.077815000000001,3.554545,2.50267,2.51707,1.67066,2.69651,3.3577999999999997,0.7022,1.0867200000000001,1.1117142857142857,3.013455,6.831806666666667,2.9707333333333334,1.4494066666666667,4.259355,4.051845,0.593524,4.53741,4.119805,4.87723,3.438465,3.1762,2.6110700000000002,4.2649,10.342845,1.80696,4.1203675,3.75366,4.149485,3.56762,0.7820524999999999,3.6913,3.921,1.75999,2.5175,2.406683333333333,2.5753266666666668,1.8448633333333333,2.2197299999999998,2.482835,5.801493571428572,5.18385,3.508235,5.088726666666666,1.7241066666666667,2.3894475,4.562825,4.26195,4.44694,4.003825,4.467255,4.79848,1.6795559999999998,3.786465,7.620828333333334,1.199215,2.0484133333333334,2.5306,2.5531566666666667,2.8040299999999996,4.852891833333333,0.7497357142857143,2.45552,3.3407,6.3214,4.58162,2.2110233333333333,2.89514,2.0562025,0.53878,2.468375,3.00746,7.67544,4.51554,4.45596,0.889748,4.692733333333334,9.029671,10.176486666666667,3.388935,1.15932625,3.62864,3.48069,2.5296933333333333,5.159586,4.56696,3.90679,1.95908,3.6692,2.1406633333333334,2.50675,0.7820063636363636,0.389732,2.599115,3.386655,1.975959,3.4412,2.961866666666667,4.510885,5.39795,1.56464,2.8765966666666665,2.159275,2.159275,2.328635,3.30741,6.55855,2.6970533333333333,2.4088933333333333,3.2582166666666663,3.4286666666666665,4.38152,4.21838,4.035095,4.28702,3.98276,4.080865,7.0741,7.993755,1.923115,2.45454,2.9270766666666668,0.9262983333333333,0.6794966666666666,4.23238,2.47034,5.1477,2.9381833333333334,3.0358466666666666,1.710332,1.54579,3.81593,4.270385,4.41088,1.8848333333333331,1.4408766666666668,2.6648,2.048296666666667,2.7086,1.17956,1.17956,2.8137000000000003,4.68213,2.898785,3.366595,3.581775,1.94842,19.813438606060608,4.017985,5.381595,4.459905,4.05855,3.792595,3.60047,5.5831,6.12641,1.04814,1.04814,1.04814,2.7302466666666665,1.6992857142857143,3.1548466666666664,4.009385,3.90135,3.311315,4.112895,4.582,0.7841444444444444,1.9471333333333334,2.23944,6.640414166666667,3.8446975,4.382646666666667,4.995825,1.42869,2.03334,2.3234666666666666,0.53897,0.906204,1.83401,2.071715,3.232495,12.885245,2.73691,5.33015,0.7377285714285715,9.3055425,5.41325,3.847475,3.866935,2.72285,5.3787,2.72285,2.871098,3.41368,3.88833,3.185035,4.08109,4.14383,3.468545,5.7308,6.600353999999999,1.8770133333333332,2.4744659999999996,2.820425,25.95415762934363,1.556594,6.33825,4.03106,4.153395,4.70834,4.500335,2.72583,2.82419,2.6539,6.582,7.08685,4.44133,4.59124,3.980965,1.7579825,1.86718,4.279115,0.3907761538461539,0.3907761538461539,0.3907761538461539,0.3907761538461539,4.305895,3.479963333333333,1.04212,2.088553333333333,1.1526555555555555,4.525505,2.4712533333333333,2.263105,6.978288333333333,3.159876666666667,0.17906413793103446,20.287407833333333,4.683326666666667,1.782312,1.3062805,2.1419799999999998,1.9816340000000001,2.1988575,4.59266,3.333245,3.37171,4.468485,2.1141166666666664,7.5528925000000005,2.746035,2.03837,4.128915,5.6266,8.56774,4.22495,0.2970243902439025,3.529575,3.920505,2.7188733333333333,1.9779825,2.8987133333333333,1.6603816666666666,1.6603816666666666,4.152505,5.7724375000000006,11.202336666666667,8.9796,0.5853944444444444,2.45188,3.756375,3.037895,4.232915,3.399765,1.297618,1.297618,3.196765,3.8359,3.0590200000000003,3.570095,4.463155,5.3264,6.5363050000000005,2.1922,4.957915,4.36571,2.784625,3.04309,3.0371566666666667,4.62969,3.97116,5.3906,3.945865,4.34162,3.540135,4.203595,4.26836,5.0698,2.50578,3.0414733333333337,1.0973140000000001,4.194055,3.998105,3.691355,1.6188960000000001,1.9108233333333333,3.2369,2.7834033333333337,2.232693333333333,3.9997766666666665,1.5016966666666667,1.755045,1.8906466666666668,2.287733333333333,2.291986666666667,1.6326466666666668,3.9629999999999996,3.0459599999999996,3.8811666666666667,2.971145,2.1535033333333335,2.706163333333333,1.98808,3.654785,2.0820833333333333,38.7013715,2.1454214545454544,2.1454214545454544,2.5366433333333336,2.4423566666666665,2.3446233333333333,1.4535666666666665,2.8701833333333333,1.5264,0.8215230769230769,4.851705,6.78585,4.089915,4.06909,5.57995,1.8309333333333333,4.106565,1.8757359999999998,5.03645,5.1026,5.67415,4.0508,1.78358,3.959075,4.116075,4.487825,4.891965,5.34355,4.067065,2.8442,3.311436666666667,2.6325066666666666,1.9768525,2.087385,4.316065,2.60095,3.8415925,3.8415925,2.360446666666667,1.5947766666666665,2.1452633333333333,2.527276666666667,2.3224466666666665,5.17957,2.4681866666666665,1.18489,1.18489,2.1046133333333334,2.098736666666667,2.5001633333333335,2.6254233333333334,2.55004,2.4412733333333336,2.15104,2.44836575,3.3003414642857143,1.7186894642857142,0.8519757142857143,61.89727535019841,2.520174,3.3179466666666664,2.34059,0.9200480000000001,3.773662,1.581982,1.581982,3.3133,3.263113333333333,0.86671375,3.0231766666666666,5.787773333333334,3.24254,2.5072633333333334,2.83224,1.9780266666666666,2.715936,0.318225625,2.652696666666667,0.786456,2.51702,1.325734,1.325734,3.3987,2.03476,2.6246233333333335,1.629822,3.6639666666666666,1.629822,2.2336,2.3207299999999997,2.81279,1.3412979999999999,1.3412979999999999,2.8044333333333333,1.5548866666666665,3.074056666666667,2.2221466666666667,4.13972,3.90362,11.62762025,6.90469,3.11252,2.822755,3.591465,5.0431,5.48705,2.678824166666667,3.82484,3.853645,2.080643333333333,4.140965,3.1580833333333334,2.7211233333333333,4.584095,2.18757,0.9996914285714286,3.6466916666666664,2.8646366666666663,3.04606,0.80133,2.693425,3.48636,4.11727,4.39078,6.56925,2.0663833333333335,1.85614,4.30906,4.39698,2.3050275,2.51161,2.0900866666666666,2.2275253333333334,0.907612,4.89099,4.24652,3.57355,3.69702,3.065253333333333,4.79485,5.2147,2.6399399999999997,1.7374566666666666,0.50712,14.144147833333333,0.5454554545454545,0.5454554545454545,0.5454554545454545,3.06101,3.8450333333333333,0.5454554545454545,6.9893833333333335,4.387873333333333,0.752106,0.752106,3.4661333333333335,3.397505,2.79082,4.08036,5.08995,4.204774499999999,2.2558775,4.913512666666667,3.107835,3.4712980357142857,5.20561,2.759126,2.4178875,2.3147675,2.8096,1.612375,3.304924166666667,3.0445933333333333,2.12354,2.0128775,1.795225,1.7316666666666667,1.6815525,2.581225,1.0521933333333333,2.39571,0.59201,4.818165,1.7614325,0.6162258333333334,2.0268575,8.159553333333333,2.553875,2.0883975,3.25016,7.36625,2.547025,4.22441,3.16082,6.17169,3.17517,3.66327,3.822775,3.52035,2.9220333333333333,4.140249999999999,1.11073,4.17081,2.470266666666667,2.5636433333333333,2.558035,2.446435,2.09912,1.23349625,5.5446,0.9556909090909091,4.764625,5.26645,4.91533,5.1445,3.7429,2.28083,1.972464,2.7093900000000004,2.8137600000000003,2.513765,3.8542,2.641075,4.894085,1.9313479999999998,39.4667225,4.831705,2.40439,2.32589,2.76183,1.6061699999999999,5.7680066666666665,3.67986,2.35795,3.21642,2.3902366666666666,1.6539,5.19765,0.7891142857142857,4.140468571428571,1.29365,3.5416666666666665,3.1888433333333333,2.5123933333333333,1.34685,4.293970666666667,1.6256340000000002,1.6256340000000002,2.2875466666666666,2.72751,3.2361400000000002,3.306243333333333,1.5059433333333334,2.78871,2.7754066666666666,6.220509,2.800883333333333,3.8763275,1.3945400000000001,1.4902066666666667,2.8996666666666666,0.9268980000000001,4.9928791666666665,3.1999066666666667,2.865073333333333,3.4082000000000003,2.6998766666666665,2.76339,3.15836,1.88866,2.36238,2.4309433333333335,3.3402,2.39776,3.7053999999999996,1.7539433333333332,0.6224533333333333,10.005373974358974,2.778216666666667,5.2789,4.945975,2.7583033333333336,3.09941,1.26316,2.1596266666666666,2.105905,1.26316,4.0997,0.46819875,0.46819875,1.055125,1.055125,0.7569525,0.7569525,2.758575,3.047295,2.946605,1.642875,1.723775,3.84953,2.37393,4.41789,5.59465,1.834434,4.22433,2.376605,4.52483170940171,1.49721,1.49721,1.61104,1.5903040000000002,3.4775275,2.0166625,4.243945,1.5633949999999999,2.47957,0.5333784615384615,1.0693142857142857,2.0782175,2.15844,1.82247,1.35756,3.97563,4.279335,2.0381566666666666,2.4219566666666665,1.3659466666666666,0.6671283333333333,2.364313333333333,3.531575,2.87572,4.604285,4.73852,4.792155,3.82059,6.4809,1.5052666666666665,5.769895,1.94773,4.69938,4.453735,5.568397,3.3574,2.466615,1.80796,1.966002,1.966002,2.52085,2.52085,4.112535,5.74375,0.9490320000000001,3.71445,3.404775,3.42705,2.2745233333333332,1.40507,2.8233033333333335,4.22944,3.99633,1.7061060000000001,6.50485,4.875775,1.7506466666666667,1.25665,3.94394,4.03088,3.333845,3.64375,3.934135,0.595805,3.7880333333333334,3.306483333333333,2.753643333333333,2.8275566666666667,2.23439,3.675933333333333,1.5339714285714285,1.5339714285714285,1.5339714285714285,3.0204833333333334,3.076643333333333,3.1839333333333335,3.295252904761905,2.1899425,1.18306,3.08215,3.10351,1.3576185714285713,2.6323233333333333,2.6616066666666667,1.1798185714285714,2.3043633333333333,2.8645066666666668,2.85352,2.682726666666667,2.4388166666666664,1.9954925,3.0997033333333337,4.438192,3.73273,0.971143,1.371556,0.55374,3.4255333333333335,8.7537,2.8752133333333334,3.36275,2.65265,4.4026575,1.9479875,7.54531,6.520863333333333,2.634796666666667,2.121933428571429,3.99789,4.73778,1.6170339999999999,1.186688,1.272632,1.855005,10.371983333333333,2.5416,3.019683333333333,2.8529150000000003,3.868495,2.0795266666666667,1.06119375,5.53535,1.0205966666666666,3.217306153846154,4.39167,3.34517,3.1629533333333337,3.129605,4.69906,1.1741116666666667,2.0620125,1.8542826666666667,1.8542826666666667,3.87365,5.5196,9.3052975,4.30142,3.450305,4.577465,1.8104775,2.27926,4.589325,3.6003,4.000575,1.5549916666666668,2.8210366666666666,3.534505,3.758075,2.3397975,4.03488,3.793445,3.878565,4.314165,4.022635,3.693,5.07385,3.186803333333333,2.4584066666666664,4.27128,3.195335,3.96008,2.071145,2.518155,2.709685,5.85645,2.522515,3.229893636363636,1.7111225,2.525435,3.219505,2.135405,2.1068775,0.8309666666666667,0.8309666666666667,1.8596725,3.4499342424242423,4.062895,2.9522266666666668,4.17691,3.0647941666666667,2.5360314285714285,0.93858375,2.816755,1.4149475,3.621305,4.220125,0.9329483333333333,1.919685,3.87426,3.0186725,1.6589525,1.6680433333333333,5.200011428571429,0.9903066666666667,2.91039,3.41031,2.82286,2.512205,2.759351,2.22001,1.0102325,2.980015,3.17633,3.37977,1.5740999999999998,1.4890766666666666,1.833485,4.256095,2.191275,4.38059,4.506245,4.437175,5.8931,4.961875,4.18796,6.288600000000001,3.7928542857142853,0.7853436363636365,2.85086,3.909065,3.64706,0.4466554545454546,1.056428,3.05114,3.916395,4.63119,3.924615,3.242893214285714,2.891225,4.29481,1.6948,2.424105,4.282065,4.34135,3.291055,2.861915,3.470485,4.556465,2.84208,5.111997499999999,0.9246800000000001,3.21622,2.687735,3.95568,4.408415,4.58376,2.2271799999999997,2.452995,3.14691,1.90982,4.95632,2.76024,1.2955342857142857,2.704695,3.8410175,1.450386,5.90025,1.805368,2.5772666666666666,13.587513940395862,2.88815,1.5337866666666666,1.6710666666666667,2.128366666666667,5.464585,1.6570799999999999,5.9832695,0.61044,3.3629,4.03649,7.434520000000001,2.581233333333333,2.7245966666666668,2.7245966666666668,4.53971,4.241985,3.510015,3.42903,4.66276,5.0341,2.5422,3.0679366666666668,4.34693,1.2668366666666666,2.4259366666666664,4.259775,3.876925,2.89273,2.13651,3.78134,3.267905,5.77454,6.11383,0.6563060000000001,4.027935,3.668425,3.677466666666667,4.28337,3.841365,3.78114,1.30259,4.80747,2.479105,2.750805,4.17426,4.33109,4.34363,0.8816331428571429,2.5320466666666666,9.089694,1.4896266666666669,2.0961896103896107,2.3377725,4.02535,3.493805,3.464525,0.6639427272727273,2.22564,1.77722,2.1985125,4.10873,5.3510919999999995,2.7050919999999996,9.268934999999999,2.2702,2.6274,0.9874729999999999,4.262495,5.1379,2.14322,5.4557675,2.682525,3.237135,5.30785,4.176415,4.69713,2.119265,1.6100625,1.6100625,2.80909,3.28913,4.694004166666667,1.5913575,5.722236666666666,1.52651,3.554295,1.1933333333333334,8.996202166666666,4.13746,2.799145,4.02887,3.69907,3.82931,1.1530866666666666,1.9378,3.343833333333333,3.20614,3.3248266666666666,3.7467333333333332,3.8817,2.860305,3.223535,3.43622,1.713345,2.5745566666666666,1.9617000000000002,2.958153333333333,1.8867633333333333,5.026132499999999,3.18498,1.9960133333333332,2.7171966666666667,3.44303,3.236435,6.30405,5.85165,2.98409,3.60215,2.85019,3.038665,2.87621,1.2974133333333333,0.90739,6.44092,2.96587,5.8995,4.66736,6.24095,3.0331,2.72429,6.4884,2.48931,0.38722833333333334,5.7383,2.92826,3.67602,3.3846666666666665,1.347777142857143,3.959855,1.103712,4.438325,0.86303875,1.2437033333333334,2.9207433333333337,2.4602666666666666,2.8760342857142858,3.56015,4.25569,5.88091,5.88091,4.5773775,4.5773775,4.605065,2.8302133333333335,4.34203,0.961345,6.04835,3.33206,3.5719666666666665,3.80803,4.011815,5.15855,1.909485,4.826865,2.983968,2.693835,4.22363,2.45743,4.663625,5.15985,3.794205,3.6005,5.10095,3.788035,5.9722,2.70765,2.51233,5.6238,3.810415,2.9060799999999998,6.173368333333333,1.7626466666666667,2.1372225,4.891585,4.34094,5.03285,3.64181,2.1278755,2.1278755,12.681597337301588,11.7047,4.555775,3.075045,2.9321115384615384,4.21854,4.454665,2.554603333333333,3.3156133333333333,3.001425,3.890166666666667,3.7322,5.01005,2.187205,8.357346666666666,2.387645,1.83292,5.61105,2.329605,4.813355,4.43442,4.473855,0.7196344444444445,3.389435,3.56788,0.8272619999999999,2.922425,4.037775833333333,1.381752,1.8185766666666667,2.818936666666667,2.730703333333333,2.237573333333333,3.0963933333333333,2.124136666666667,0.3842492857142857,2.51532,2.6525866666666666,2.74352,3.11023,1.447566,3.0307999999999997,7.181393333333334,4.18551,2.36741,2.092416666666667,2.6923033333333333,3.770405,2.422025,3.46337,18.208827499999998,5.6237,3.299842,4.6168,3.684525,5.209933333333334,1.4454133333333334,5.93975,1.4467433333333333,4.851365,4.588845,5.4896,4.980185,0.9739076842105263,6.73435,2.442285,4.61862,2.846215,4.326605,3.46663,2.846045,2.33224,1.514358,1.850835,4.228735,4.573805,2.209135,1.880725,2.9366233333333334,3.978645,2.73879,6.3251,1.8101425,3.47512,5.1341,4.322765,3.92549,3.056615,3.749265,4.4336,3.8427,2.544383333333333,2.544383333333333,5.7761394444444445,2.06422,2.35908,3.799285,1.7538,7.35374,3.68814,4.175516666666667,4.248366666666667,4.18241,1.816652,4.098385,5.65915,4.042955,2.05441,3.47968,3.24478,1.17954,1.102945,1.4238966666666668,0.7504149999999999,1.6516,0.8953766666666666,4.736665,0.99794,2.5488166666666667,1.6945233333333334,1.7289775,1.0655183333333333,1.8266475,2.2623525,1.42521,2.9595566666666664,2.755853333333333,4.616593333333333,1.4847666666666666,2.552525,3.0942600000000002,2.8613999999999997,2.3880266666666667,4.355683333333333,4.506665,4.639480833333334,19.446155333333333,2.4978533333333335,2.257835,0.6457446153846154,0.6312979999999999,3.99139,1.962408,4.062695,4.87703,6.670019999999999,3.64469,3.55996,4.258985,3.0970433333333336,3.2258600000000004,3.1636233333333332,3.769133333333333,3.1023866666666664,6.43445,3.40873,0.903514,1.1155125,5.15715,3.0809866666666665,2.3652166666666665,2.13092,2.3173533333333336,5.58755,4.676785,2.188875,2.2350533333333336,3.31837,4.554245,8.330729999999999,4.77725,4.08732,3.94254,5.2495,4.576355,4.0291,4.7154,3.775855,4.96498,2.23991,5.35845,1.5516,4.935715,0.7225266666666667,4.6474,5.306,6.0092,6.16895,4.333285,5.85155,5.52645,6.02151,1.7834833333333335,1.482557142857143,5.32065,3.66279,6.131385,5.09015,5.513844166666667,5.01285,6.2661,1.275755714285714,4.217275,5.1117,4.091066666666666,4.557695,5.67795,2.5682,4.071385,2.586005,4.123035,1.0032750000000001,1.5883733333333332,1.38561,4.682805,4.199085,3.331025,1.7368066666666666,2.8277133333333335,1.6654333333333333,2.2791966666666665,0.39607583333333335,3.389,1.542788,2.2636233333333333,2.8395766666666664,2.3895833333333334,3.1677166666666667,2.67285,2.35361,10.069946,3.674633333333333,1.7394565384615386,3.414865,0.8888836363636364,4.5502062500000005,1.1765975,1.7681275,1.8870375,1.03961625,5.549056,1.139807638888889,1.139807638888889,1.139807638888889,2.8817033333333337,1.9730219999999998,4.780495,3.023225,1.4532725,1.503965,2.06669,1.212675,1.9137619999999997,5.1115433333333335,0.7313511111111111,4.05603,4.066405,3.0150799999999998,0.9535028571428572,2.2206685,1.7694775,1.7694775,1.4420466666666665,3.718166666666667,4.150195,5.01,5.6325,4.12377,5.1363,2.7797366666666665,1.9537475,2.781915,5.16175,3.15617,3.828535,1.04445875,3.895872708333333,5.6744,1.9269575,3.851045,3.039773333333333,4.71182,4.576135,2.457705,6.92825,6.381,3.835155,4.3272,4.376305,3.20074,7.7856,3.87771,5.187626666666667,3.47605,2.627076666666667,5.17345,2.6483133333333333,5.6195,4.32619,2.7106933333333334,3.17007,3.931135,1.55166,10.383009999999999,3.58833,3.33168,15.157529682539682,4.03685,1.81716,2.7202966666666666,2.125695,2.376635,3.523755,2.6281943055555557,2.973465,2.722385,2.964015,4.293465,5.814695,1.3185333333333333,1.8382375,4.2195,4.26949,4.8075,2.2533475,0.5748733333333333,4.22583,4.390165,1.955495,1.3523016666666667,4.753415,4.290265,0.8566711111111112,3.784675,12.232116666666666,1.279439142857143,0.4052671428571428,3.459633333333333,4.464111666666668,1.0270566666666667,3.52859,4.005695,6.231761666666666,1.3151416666666667,3.42486,3.876415,3.346215,4.284035,4.07631,4.05799,8.30162,3.220005,4.24717,5.25155,15.867988125,3.45196,2.79525,1.16629,1.88601,1.332345,2.08125375,1.333455,2.012715,1.66584,1.991725,2.417985,2.29298,2.1616175,5.5588,4.29104,5.6131,3.33876,5.537543333333334,2.7099733333333336,5.20455,3.415366666666667,1.253225,3.862375,2.019285,2.8255226666666666,4.436245,4.7246,4.648925,4.082915,3.5076666666666667,3.752266666666667,2.54522,3.435545,3.84964,2.509545,1.840605,3.4619999999999997,4.042705,3.43803,2.455346666666667,12.361233333333333,0.71072,2.761125,4.570715,2.395177,1.045514,2.83421,7.329475,7.149473333333334,4.274625,3.60501,4.06442,1.92952,2.243385,2.820853,2.07608,3.7171849999999997,5.09395,4.222055,0.4631573333333333,6.05735,3.3149266666666666,3.135896666666667,3.5283333333333338,5.8612,8.643346000000001,4.327321,0.9979,2.1301025,2.40924,3.973545,2.62414,4.45766,4.344535,3.3035266666666665,2.56259,3.98473,3.952085,3.936085,4.195166666666666,1.6797266666666666,3.09744,5.1866,5.3995,2.95658,1.79506,2.326566666666667,15.247940816433566,0.5558863636363637,1.532845,1.532845,2.4738233333333333,5.0115099999999995,3.573465,4.31909,2.74656,3.033085,5.05195,3.0912433333333333,4.215265,3.0912433333333333,3.54709,1.8600933333333334,1.6497233333333332,5.83715,2.591425,4.723165,3.28918,2.6512,6.041115,1.9929866666666667,4.439425,5.26025,3.47828,3.30579,4.8073,1.9334320000000003,5.1469,3.437285,6.968273333333333,5.064843333333333,2.8822,3.86741,5.0093,2.148815,2.4125566666666667,3.4828333333333332,0.43595071428571425,3.0438466666666666,10.208176666666667,4.113555,3.684065,4.84032,3.1514866666666665,3.08028,1.3353657142857143,4.18824,5.44695,3.30021,2.21947,3.98967,3.429785,4.218315,4.289185,2.81265,2.81265,4.04308,2.88156,2.5287336363636364,2.1202,4.65335,4.20547,0.9895957142857144,3.659115,4.78166,2.681226666666667,6.4443,7.60278,1.5079420000000001,4.29714,4.66474,6.552835999999999,0.626239,7.61725,3.2971608333333333,0.5700163636363637,5.0385,5.19555,4.689845,4.15674,4.598735,4.134425,5.03025,3.897695,3.64103,4.24794,5.1711,4.42251,4.463155,3.853845,2.64414,3.868475,3.106455,0.9659890000000001,4.535615,2.492985,1.763235,4.262895,4.23183,5.6648,1.0347971428571427,4.994368333333334,2.888475,2.7406400000000004,1.577695,1.3152833333333334,11.411821666666667,2.3817533333333336,3.0343766666666667,1.69041,3.9023942857142857,5.4330766666666666,5.936475,2.71396,1.9572533333333333,2.10752,2.10752,2.10752,1.64015,3.97267,3.92577,3.36424,4.65128,8.19187,4.099255,1.149044,2.44372,3.0611,2.34284,1.727366,3.9923,2.762045,1.4511033333333332,3.090593333333333,5.034639285714286,5.6317775,4.137445,4.248155,2.9816766666666665,4.846725,4.538055,5.108721666666667,1.7378525,1.7378525,4.13223,3.813865,2.889341,2.889341,3.69689,1.14932,4.847815,3.30397,4.41295,3.582885,3.54833,3.2073366666666665,0.9997785714285714,4.38174,4.700115,4.20875,4.49538,4.74282,4.86787,4.27354,1.9363175,1.574295,3.426685,3.746195,3.28562,4.37354,2.373915,3.2517625,5.17785,2.84012,4.965935,7.306135,2.2236525,3.072103333333333,4.2648842857142855,5.1742341666666665,1.598495,1.9906771428571428,0.9652,1.9906771428571428,1.8009766666666664,1.8009766666666664,1.556486,5.12415,3.29909,3.634095,2.452145,3.76376,1.5275466666666666,5.3729,3.19555,1.7313875,2.89972,3.478885,3.60097,6.718872,4.704575,1.24133,0.85834,3.660665,6.888933333333334,2.491033333333333,3.76455,3.79868,3.79868,2.37945,3.509535,2.95077,1.3754167532467534,2.9475266666666666,3.023835,2.481165,4.02031,3.81706,1.5921925,3.29328,4.17525,4.382715,4.93277,4.477205,1.6829025,2.24728,1.38121,2.07428,3.42676,1.90099,4.339325,3.311123333333333,3.593585,4.13288,5.155,1.30177,1.002624,1.84462,1.449855,1.1893222222222224,4.965145,4.193105,1.0973140000000001,0.28144739130434787,0.28144739130434787,0.28144739130434787,3.434955,5.725126666666667,4.407715,5.2226,4.8856,5.289,4.415645,4.57903,2.851525,3.75525,1.6335375,4.677715,4.018665,3.952695,4.066135,4.183965,0.6587545454545455,0.6587545454545455,0.6587545454545455,0.6587545454545455,0.9767020000000001,0.9767020000000001,3.87306,3.77163,3.41459,2.89507,2.6287,6.0207,4.746425,5.6147,4.325305,2.969943333333333,2.5341133333333334,9.99467,1.426624,1.426624,3.940205,5.29855,3.264253333333333,0.46819875,0.46819875,0.46819875,0.46819875,0.46819875,0.46819875,4.513648333333333,4.87547,3.44586,4.59232,2.9460949999999997,2.9460949999999997,2.954055,3.1463703333333335,2.414613333333333,2.51721,3.28244,6.925435666666667,1.427322,4.544625,3.275695,3.829335,8.733496666666667,2.0913033333333333,2.56325,0.9334771428571429,2.052115,4.720985,2.832455,0.86827875,2.67671,3.83236,5.41315,2.60775,4.557692777777778,0.8024377777777778,1.8576366666666668,4.692615,4.757905,2.672243,2.36086,1.9353033333333334,1.3335283333333334,6.84122,3.09717,1.9486800000000002,3.22686,2.7046383333333335,3.555985,3.781035,2.71518,3.0445966666666666,5.67885,1.4800550000000001,4.332825,5.2064,3.41928,3.717725,1.96061,3.03657,3.828035,3.82206,3.26049,4.878995,4.67419,2.7025666666666663,1.97597125,2.73575,2.9152733333333334,2.86481,0.7967427272727273,2.2017225,8.4565725,0.465604375,3.03368,1.5289933333333332,2.6456866666666667,3.20954,2.6437933333333334,1.2509222222222223,1.745356,2.690993333333333,2.205385,3.71781,1.95375,2.59863,1.4486666666666668,3.2137539999999998,1.9394975,1.1638385714285715,2.82202,2.0469775,2.2997533333333333,2.66559,3.08286,3.1446566666666667,3.312466666666667,2.9314066666666663,2.8533633333333337,3.3109,2.72315,2.76055,1.69507,2.3014466666666666,2.4194033333333334,1.68461,3.0788933333333333,3.926821904761905,2.9073433333333334,2.4070633333333333,2.942066666666667,3.4385,4.696084166666667,2.975346666666667,1.8536185714285713,1.8536185714285713,2.37582,1.17427,2.418285,3.3666400000000003,4.6034475,2.77135,2.0177275,2.0335825,2.1458,3.84218,3.178985,4.09651,3.60847,1.83208,2.1820866666666667,3.76757,1.180872,1.180872,2.0299075,0.6187592307692308,2.3392871153846153,1.5865525,1.5865525,2.781166666666667,2.5200299999999998,3.04337,2.602033333333333,1.8953625,5.459361666666667,3.8930024999999997,3.8930024999999997,3.61044,3.04206,2.297375,2.998145,2.39448,2.9966,5.2068575,0.48176749999999996,0.681431,4.223615,2.56848,2.86725,6.4064283333333325,3.53921,1.664938,4.94678,4.798495,4.109965,4.251135,5.3468,4.71038,13.124117,3.308445,1.6517799999999998,3.004795,3.78698,4.56568,2.89745,3.97147,3.820325,3.60399,4.09009,2.7139866666666665,3.034985,2.55869,2.4896266666666667,2.4896266666666667,4.265865,2.693815,3.19819,3.377465,2.30241,2.562705,2.169985,1.810755,1.9607225,2.040065,1.7095975,3.3045445,3.646325,2.5926,6.7763875,3.15592,2.3328,1.8658299999999999,3.507215,3.940135,3.859395,3.1608614583333337,3.614915,3.274145,4.4418,3.893515,3.95242,3.971395,3.5490440000000003,3.61176,0.74161,0.74161,0.74161,3.57995,2.50376,5.68535,2.3143,3.75205,6.7524631481481485,2.5542866666666666,0.3424753846153846,5.2063,0.7523489999999999,4.281922857142857,1.964515,3.532715,1.97589,3.89451,5.216466666666666,4.20667,3.863845,2.679233333333333,2.8398333333333334,1.4749800000000002,2.47532,0.4011194736842105,0.5561370588235295,2.4634266666666664,1.4313033333333334,1.9013975,3.91922,2.57276,4.96087,2.7275466666666666,3.0457416666666663,3.44894,5.73071,1.68204,0.90202,2.424105,3.5556080000000003,1.1779337012987012,4.93328,4.030295,3.217575,2.725186666666667,4.263775,2.59781,2.40812,2.2269866666666664,2.4634625,2.05219,2.274045,3.240536666666667,2.3141633333333336,5.387084,2.234855,2.0342100000000003,2.096013333333333,5.0262139999999995,3.24033,3.24033,2.438563333333333,3.95261,2.3634275,2.997655,2.922325,0.5575313333333334,4.262465,1.82863,11.585322222222223,7.11138,2.9124,3.50366,3.42451,4.50451,2.90071,3.17557,0.25522066666666665,1.972955,3.315103333333333,0.7796591666666667,3.903165,1.2780500000000001,4.51905,3.371825,3.09419,3.336925,3.229615,2.267695,4.67516,3.74891,3.43589,6.56803,4.191965,2.8226866666666663,3.11632,1.547668,2.03803,4.113985,3.434675,3.7919825,2.52225,3.39236,1.348654,3.102895,2.426715,3.272315,10.157873333333335,3.73445,5.208138333333333,3.851685,4.277975,0.9874655555555556,4.753799,4.48428,2.575346666666667,2.48409,2.5214766666666666,3.6470333333333333,2.50259,1.8603399999999999,1.99749,3.598335,1.539116,2.654733333333333,4.828041333333333,2.6418566666666665,1.1081214285714285,1.1081214285714285,3.62581,3.1142445,3.1142445,2.9821299999999997,2.915563333333333,3.255961282051282,3.882433333333333,3.364333333333333,2.7975266666666667,2.3615833333333334,2.577243333333333,3.12932,2.310645,2.5231966666666668,1.6612380000000002,5.879918,8.301934666666668,0.44334153846153845,0.44334153846153845,0.44334153846153845,0.5300422202797203,0.5300422202797203,0.44334153846153845,2.990406666666667,2.99764,4.162345,1.3909816666666668,1.79527,3.318258,2.54537,3.0438833333333335,2.3724133333333333,2.911936666666667,3.3323533333333333,6.687591666666667,3.08258,2.4810133333333333,2.906216666666667,4.60142,2.2361133333333334,3.3202,5.74609,2.4057233333333334,3.4923,1.40831,1.40831,2.827116666666667,0.5132,2.322583333333333,2.7512166666666666,2.8612866666666665,3.216606666666667,2.37649,1.8156533333333333,2.6361933333333334,2.8226433333333336,2.3074233333333334,4.29047,2.3474166666666667,3.430575,2.699285,3.61308,0.490438,7.200243333333333,3.089208,3.089208,7.534406388888889,1.75216,1.9159133333333334,3.236353333333333,4.36191,2.38487,2.01797,2.62116,1.416225,3.5022,1.89297,2.801001,1.4045725,0.27775363636363637,0.27775363636363637,4.691595,3.942695,3.443225,2.6316633333333335,2.73107,3.058895,1.38763,5.4139,3.84753,2.86134,1.7976675,1.1934933333333333,2.42618,3.236353333333333,2.64994,2.26644,5.80278,3.67308,4.35318,3.78035,2.608315,0.7070675,7.557095,2.097975,1.57451,3.50318,4.07253,2.653015,1.6551916666666668,4.408915,3.9886,2.9090333333333334,3.0478366666666665,4.086295,4.12941,3.6067666666666667,2.472434,2.472434,4.05029,4.761005,5.412,5.95687,2.540833333333333,3.794255,1.4720571428571427,2.48353,5.522698666666667,3.811045,1.9078320000000002,5.38185,3.50449,3.50391,2.48341,4.138365,4.680385,4.437815,4.450025,2.52331,2.581253333333333,3.6629,2.1735966666666666,2.666,2.5954833333333336,2.646803333333333,0.654462,2.13964,2.7745433333333334,1.7691686666666668,4.32181,4.45846,4.826135,3.880835,3.28689,4.97667,11.38016,4.545425,3.627435,4.445245,3.830915,4.62668,2.4780366666666667,3.0242940000000003,3.412433333333333,1.20194375,3.036905,2.77376,4.51571,5.4025,4.26531,3.4047666666666667,3.030696666666667,2.18122,4.276966666666667,3.9750199999999998,3.7476333333333334,3.9750199999999998,2.280137,2.3224233333333335,2.271475,1.98122,2.4037466666666667,1.8053766666666666,0.8309233333333333,1.2304666666666666,2.0186533333333334,2.0316366666666665,1.6056633333333332,1.3426200000000001,1.7806633333333333,2.7274166666666666,1.583216,3.085053333333333,1.3508566666666668,1.6207966666666669,2.659445,3.7254,2.5594766666666664,2.2288433333333333,2.2531766666666666,3.3675,2.27366,2.8739133333333338,3.2756233333333333,2.4865033333333333,3.0801366666666667,3.0397875,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,0.1463416129032258,5.1501,2.96691,1.0682842857142858,3.0706866666666666,2.7208133333333335,2.881016666666667,3.19431,3.1956666666666664,4.715875,3.281114,1.519932,3.0210500000000002,1.73505,0.948705,0.944867,1.5788650000000002,0.8687266666666668,0.7318408333333334,1.3196059999999998,3.253945,1.535668,1.5518066666666668,1.8583894444444446,2.2208127777777777,1.3910733333333332,1.2735566666666667,1.5031633333333334,0.94697,1.317005,0.8189783333333334,0.927592,3.35066,3.6844,4.039145,4.54212,4.01333,3.207876666666667,4.54177,3.3845333333333336,1.9352575,3.518775,1.9914,3.687345,2.181973333333333,0.80215,4.091065,4.90378,2.095616666666667,1.3365425,2.96217,3.352185,3.718166666666667,3.06134,2.59768,0.8359775,2.195545,4.8342875,3.68887,2.44557,1.5336299999999998,3.921545,1.689395,0.5879836363636364,4.38919,4.2739,4.12321,2.2141,1.371248,3.059105,4.611805,2.7592933333333334,2.645896666666667,2.6183433333333332,2.66494,2.7803966666666664,2.9077133333333336,3.0425400000000002,1.24055,2.580475,2.6200433333333333,5.1225,4.30363,3.928845,4.670145,16.1502537739899,4.1593275,4.403076666666667,2.87329,4.00345,4.845015,1.501322,1.84327,2.2715,5.613555,2.95315,3.03067,6.23745,2.2715,3.878245,2.112755,1.9629466666666666,2.9603,2.68395,1.2875216666666667,4.19352,3.36011,2.54079,4.259375,2.4838,3.397733333333333,3.6055,3.47961,4.43131,3.956865,2.6944,3.55022,2.76095,2.5573966666666665,1.044324,1.044324,3.2422799999999996,2.3073366666666666,0.3752071428571429,4.523501,1.018164,2.760115,3.46477,0.5833533333333333,4.39833,8.188500000000001,1.914515,3.685895,3.7386,2.6572733333333334,3.545245,2.49238,3.01591,3.58776,4.16656,3.115855,3.7889,0.9756,11.69408,2.83481,2.89206,5.88445,2.76979,4.02094,7.6035216666666665,4.003355,3.700635,3.89608,4.122625,5.19206,1.43742,2.673436666666667,4.49105,3.783166666666667,1.8992339999999999,3.95306,3.74339,3.60335,4.07204,3.83793,3.78756,2.450745,4.147865,3.77308,4.86201,3.26914,2.2424833333333334,2.3758033333333333,1.9449733333333334,3.1655433333333334,1.3271266666666668,3.5544,0.8590836363636364,3.1150466666666667,3.1326133333333335,2.669473333333333,1.5070533333333334,4.05979,3.87216,4.346425,1.892215,4.376375,3.663345,0.7465856410256411,0.3370123076923077,4.277785,5.37245,0.97609125,0.3370123076923077,4.299385,0.7465856410256411,0.7465856410256411,0.3370123076923077,5.581201666666667,2.4243466666666666,2.417476666666667,5.3998,3.15436,3.221935,0.82496,3.145445,3.941995,4.65162,5.7201,2.100345,0.6930715384615385,4.084315,2.00455,1.214846,1.756445,1.0193285714285714,2.010686666666667,2.1872633333333336,3.122585,4.9803,2.7201033333333338,2.9005833333333335,2.731146666666667,2.3005,3.25245,4.4860325,1.666295,1.97497,4.095605,5.01805,2.0699152777777776,5.05445,2.55218,4.055575,4.21699,2.99582,1.2020725,3.455405,6.65965,3.64324,3.322385,4.957915,6.2041,2.425925,2.985695,4.48693,3.19651,3.3755,8.61601,3.817395,4.7701275,2.529185,1.314535,2.4847766666666664,1.84295,2.126135,1.977165,3.952965,0.637385,3.159565,3.876905,1.8927366666666667,2.9929166666666664,4.841615,3.284345,2.832705,4.15896,4.94211,9.168446166666666,2.692293333333333,2.398963333333333,1.7298839999999998,1.396025,1.3424500000000001,1.4054033333333333,2.4118133333333334,2.5805233333333333,2.8897099999999996,4.5540125,1.6489525,2.24548,5.1323,5.13695,3.78915,3.443245,3.12201,2.63009,2.2026,2.25249,1.93292,1.887675,2.765915,3.760405,4.80203,5.128,3.63469,5.223378333333334,3.40369,2.57355,6.4429904166666665,3.21253,8.731449999999999,4.793645833333334,4.793645833333334,5.45079,1.7559566666666668,1.410055,1.45059,0.715585,4.79281,3.753966666666667,3.3298875,3.3298875,2.14886,4.233305,4.385095,4.227735,3.82936,2.8892866666666666,2.665735,3.609685,3.0274633333333334,5.045819999999999,3.499775,0.7616409090909091,4.92782,4.89227,3.883625,4.82901,3.28383,5.99975,4.079975,0.8436307692307692,5.2813,7.197998333333333,3.18368,5.73715,5.8202,3.424865,2.66544,3.623215,5.99865,2.0974975,5.8847,1.92309,4.45479,2.5760633333333334,2.331525,0.9246800000000001,2.78669,5.80075,3.461945,3.34087,2.054936666666667,4.806,8.172446666666666,3.55541,4.307275,2.545805,2.61979,0.8452,4.66391,1.4856633333333333,3.2513875,3.2513875,3.650135,2.1775333333333333,2.9021966666666668,3.789325,1.690235,2.68033,3.1739866666666665,3.2639633333333333,2.874955,4.263215,2.829235,1.82446,3.1783566666666663,2.0553475,2.897206666666667,2.140703333333333,2.9409266666666665,2.8406066666666665,1.3759542857142857,1.8988033333333334,0.49817333333333336,1.3203816666666668,0.49817333333333336,0.49817333333333336,1.8988033333333334,0.49817333333333336,3.4072999999999998,2.549386,2.549386,2.6799766666666667,3.911005,3.74047,4.045155,5.18655,5.2516,3.582355,3.612895,3.841205,1.6916725,2.217861833333333,2.198726666666667,0.8092190909090909,5.35255,2.951726666666667,2.94819,5.46845,4.2426200000000005,5.06955,3.587895,2.811533333333333,3.142605,3.501865,2.766246666666667,2.863906666666667,2.03818,5.3297,0.8453844444444445,3.59145,1.1272757142857144,3.612635,3.1882533333333334,2.717033333333333,3.921865,3.96962,3.57813,4.221745,3.849895,3.489595,4.04709,4.331595,2.39218,2.728825,3.2001566666666665,4.1851,2.83024,3.18541,2.732415,2.973855,3.2949300000000004,3.506885,4.88678,4.562165,3.96453,67.3865588274642,2.7621941666666663,3.731075,15.969296333333332,4.104595,3.0343766666666667,2.1063233333333335,1.9485566666666667,2.6683333333333334,4.3353775,2.929066666666667,3.8662658333333333,5.48905,3.46357,7.33826,5.4005,2.581905,3.405885,3.520795,3.449705,1.9312159999999998,1.07874,4.91083,2.963085,5.951501666666667,3.66196,2.1826833333333333,3.31651,3.46727,4.478925,3.493095,5.734954999999999,4.28057,3.37854,2.983955,2.502575,2.95315,5.6697,2.98765,3.524955,4.30268,1.1872283333333333,2.414855,5.12453,2.710025,3.26375,3.64041,2.919835,3.849895,3.20649,3.014765,3.2471,4.69134,2.857465,3.273225,4.468745,9.424435,3.2031066666666668,4.198405,5.29899,3.395565,1.91366,4.2479618750000006,2.04832,2.9194633333333333,2.9063980000000003,3.61801,3.37048,2.878745,3.08638,3.26087,3.90783,3.90154,4.20061,3.51159,3.18545,3.36421,2.5526616666666664,2.5526616666666664,6.975705,1.850395,3.131885,3.24175,2.43264,4.59763,4.1982,3.24957,3.33784,5.0258,5.8410775,0.6394209090909091,4.271835,2.271565,2.88587,2.3365633333333333,5.155,2.70342,2.0899075,1.11151,2.051212272727273,4.1395,5.2744,4.077245,5.4462,5.59285,5.81645,2.662485,1.8261566666666667,3.9866,2.513565,2.84844,2.02588,1.2587933333333334,2.55772,3.1178899999999996,1.542236,2.3092466666666667,2.456403142857143,3.34167510989011,2.867195,4.840765,3.33798,1.4524025,3.122425,3.26272,5.745,4.602075,5.6429,4.734545,2.01546,1.4594533333333333,0.6097285714285714,1.63229,3.537135,2.683325,3.6550450000000003,1.39706,2.43462,2.42421,3.431365,3.682035,3.95484,4.001196666666667,1.6873125,1.415175,1.959525,2.086585,1.4447425,2.5051,6.722039916666667,4.820965,3.37407,3.06313,6.88436,4.463415,3.24696,3.103165,3.230725,2.66125,3.965125,2.4392866666666664,7.51606,0.91948,3.09686,6.6156,4.03943,4.51256,6.26695,1.80776,2.994536666666667,2.9632166666666664,2.727816666666667,1.4478875,4.14816,9.15615,3.15219,4.75083,3.93062,3.04978,4.806285,0.9040516666666667,2.8419166666666666,5.29875,5.946883333333333,4.964035,5.73195,2.876925,3.6056333333333335,2.5075533333333335,4.971515,4.74509,4.121779166666666,4.121779166666666,0.65337,3.5863333333333336,0.96943,0.8909716666666667,1.761585,3.6612333333333336,4.124782,5.592667714285715,3.020296666666667,3.2518277142857146,3.2094890476190474,2.69488,3.098273333333333,4.542233333333333,3.6184683333333334,1.920535,1.920535,4.00772,3.1315399999999998,2.7700899999999997,3.255935,3.2770966666666665,0.5731088888888889,3.26156,2.51872,2.5444833333333334,2.6007866666666666,2.4934025,2.4432833333333335,3.0242966666666664,2.63718,0.810299,2.5208266666666668,6.363443095238095,1.9914,7.5408921666666675,1.68997,1.68997,3.3453199999999996,3.3338666666666668,3.2357633333333333,2.722566666666667,1.6240739999999998,1.287777142857143,3.276203333333333,3.2800100000000003,1.3697383333333333,1.5914,2.84606,2.590542,2.4414700000000003,2.4758,1.8859025,2.62346,2.16358,2.85277,3.29933,1.85744,3.77289,3.262645,6.828132,3.39439,1.6891025,3.127995,2.693155,2.26659,4.064145,2.4631366666666668,2.71471,6.770619999999999,0.8382692307692309,0.69484,4.60437,1.317424,1.317424,3.70503,2.3434675,4.3887,3.39486,1.3785533333333333,2.4688033333333337,2.9377833333333334,2.4691733333333334,5.03415,4.25417,2.573566666666667,1.8953566666666666,1.3883492857142856,1.3883492857142856,1.95183,4.03402,4.053066666666667,5.62535,3.1241533333333336,5.0573,4.28713,6.70615,4.270875,2.57533,2.9552066666666668,2.5982233333333333,2.7591066666666664,0.7681533333333334,0.7681533333333334,0.7681533333333334,3.292335,4.268785,3.69347,1.08999,1.08999,4.852585,5.8669,6.53409,21.646452833333335,11.7348,7.61095,2.46803,5.78935,2.3584225,4.26835,2.488443333333333,3.166793333333333,3.9824,5.261635333333334,2.07241,2.869715,6.49302,1.8705459999999998,1.8705459999999998,6.1391,3.27718,4.499775,1.804985,4.62415,4.395245,2.458875,4.495345,3.2659,2.293536666666667,5.83155,8.83413,2.293536666666667,1.804985,2.16399,0.8543839999999999,0.8543839999999999,1.67956,2.381536666666667,1.67956,4.100445,5.45025,6.0616,8.17124,1.804985,11.2226725,6.04295,5.73425,2.3584225,3.276925,4.288965,8.2368,3.077585,3.70976,5.83615,3.18864,4.38742,6.25725,4.37497,5.1038,4.629535,2.429525,5.1712,3.30183,4.49733,4.32783,0.8274875,1.45409,3.045845,5.2587,4.69033,2.6418566666666665,2.0876,4.08075,4.745975,5.66275,5.44605,5.3148,4.519725,3.02389,4.178035,3.728515,2.158765,5.058615,1.98747,2.634985,3.505565,1.7267033333333333,3.8821,3.922845,3.840865,3.6787633333333334,2.823615,6.470631666666667,0.9183455555555555,3.58374,2.42058,1.1324642857142857,4.842081,1.37188,1.83026,2.4191866666666666,2.762712,2.874423333333333,2.848943333333333,1.7109475,0.7169972727272728,2.0667133333333334,2.569985,3.615265,0.6695153846153846,5.536095,1.86602,1.200694,3.310083333333333,1.200694,3.857825,0.9354454545454545,4.702365,3.0962033333333334,2.30513,4.874272,4.591392,4.591392,4.566265,2.46408,3.000645,2.6613266666666666,1.447566,3.899945,3.560375,1.9634533333333335,0.698985,6.639780384615385,2.865115,4.344935,4.079735,7.78191,2.1963975,4.242295,3.80422,2.96352,3.680615,5.4036,6.3121375,4.52963,4.53467,5.2796,2.8542799999999997,4.83007,4.09486,4.57696,1.035991111111111,0.4682264285714286,3.18533,3.3684333333333334,2.81691,5.2798,3.97539,4.15227,4.370755,5.0274,4.202445,4.107745,1.16286,2.25383,7.924974166666667,2.2095,1.9500033333333333,3.669470476190477,10.94227861111111,1.52883,5.0508,6.4298,5.1214,3.4749,2.099623333333333,3.2404533333333334,4.07807,1.1074083333333333,2.6575,3.174465,0.3311484210526316,2.0289033333333335,4.344735,4.1672,2.275215,4.0999,2.801805,5.136761666666667,1.3455033333333333,0.5490190909090908,3.7912583333333334,1.0516785714285715,0.9811775,0.9811775,0.9811775,0.9811775,1.590935,2.6326199999999997,1.7338233333333333,3.3051433333333335,5.0149,3.6264333333333334,5.10155,3.335905,4.424635,3.62038,4.019115,1.43692,6.5563199999999995,2.376365,4.571995,5.279956666666666,5.07105,5.082526666666666,2.47206,2.2155566666666666,2.6126400000000003,3.33359,1.28419,4.51624,2.64395,4.94622,2.886393333333333,2.2896,3.71187,3.404825,2.797195,2.5620600000000002,2.599886666666667,1.54834,0.39228555555555555,3.912815,3.1993,4.041395,3.45546,3.9848,5.50935,4.202545,0.5669184615384615,2.9252079999999996,6.8453479999999995,2.08058,1.83956,5.4862850000000005,5.9138,2.7655366666666663,4.209395,5.0365,4.086505,3.70059,4.17674,5.265,5.4876,5.07045,3.589165,5.030832,1.4258440000000001,1.537295,4.1396,3.86046,3.794725,3.253165,5.2383,4.62224,3.782425,3.382475,14.604161372825365,1.2488571829855537,1.08011,1.7876672727272727,0.497679375,0.4551206666666667,1.3740375,0.3257323529411765,1.285322,3.044086666666667,1.7231999999999998,0.9242333333333334,1.0825245833333335,0.5005883333333333,1.0825245833333335,1.0825245833333335,0.5005883333333333,0.8191538461538461,0.5518064285714286,2.84757,2.5274233333333336,4.61263,3.0894,2.81889,2.773125,4.01261,4.383265,4.841965,2.68564,3.993975,0.6888935714285714,2.4406459999999996,7.955101666666667,4.146925,6.727268333333333,2.80252,4.06707,2.382545,4.962365,5.2711,4.10338,4.4114,2.89575,1.0433483333333333,4.250925,4.579945,1.1090680000000002,1.251872,1.5340266666666666,2.38297,2.043413333333333,5.61995,5.5179,2.3481575,2.3481575,3.6957355555555558,6.58719,2.21947,0.6824709090909091,0.7492385714285714,2.16003,3.3179833333333337,0.8069857142857143,0.8069857142857143,0.8069857142857143,0.3931246153846154,0.9996914285714286,2.827375,5.89255,3.6788333333333334,3.9956191666666667,5.0598,1.00192,3.4703999999999997,2.958323333333333,3.8725666666666663,5.7138,2.5129533333333334,7.195035,4.668535,1.0310722222222222,3.6613,1.8563880000000001,2.567565,2.468993333333333,6.259755,3.29651,4.456915,2.1878675,4.21197,4.400825,4.7068,0.5395655555555555,2.8905833333333333,1.5671566666666665,2.620843333333333,4.017526,2.0475666666666665,2.7414433333333332,2.316476666666667,2.4774066666666665,2.5120766666666667,2.95604,2.7266999999999997,2.7763733333333334,1.380876,2.4870566666666667,2.11664,3.10698,2.59449,2.24486,2.004523333333333,1.9197600000000001,1.695495,3.386395,2.254016666666667,2.12602,2.2258833333333334,2.518126666666667,2.38347,0.8119355555555555,0.8119355555555555,0.8119355555555555,2.4856266666666667,2.2068499999999998,3.0690066666666667,2.2315133333333335,2.5933966666666666,2.1124,4.01793,3.5520166666666664,1.2927633333333333,2.58089,2.774896666666667,3.8890399999999996,1.5198142857142858,7.17634,4.41372,3.13297,4.260565,3.57291,1.2652225,0.8266785714285714,3.163975,3.862895,3.8890399999999996,3.84641,4.204845,4.36844,2.7741933333333333,3.81473,4.224155,0.870401,2.87315,3.540065,4.897355833333334,4.736265,3.698135,3.161615,2.69568,2.14982,2.4213,0.6585358333333333,5.158617916666667,2.670875,4.01021,2.74917,3.735998333333333,2.9102433333333333,2.493516666666667,2.7885163333333334,2.7885163333333334,2.6537966666666666,2.0676566666666667,2.5398833333333335,2.0786666666666664,4.06776,1.406276,2.50843,3.862995,3.882345,4.005415,5.45625,3.48796,2.326085,2.104515,3.05119,2.83577,2.738795,5.07445,2.44391,0.8152985714285714,0.8152985714285714,4.502885,4.007576,0.9084059999999999,4.10065,0.9084059999999999,3.96359,4.626985,4.683945,3.05434,3.363295,6.3801000000000005,4.2750425,5.53445,0.8481571428571428,0.8481571428571428,2.00664,4.3564316666666665,1.5229066666666666,2.833525,3.362805,1.1223985714285714,3.80679,3.814865,5.48395,5.48395,0.9821133333333334,5.4858,5.0989,4.71436,5.8306,1.9700175,1.9700175,6.9092,0.9200454545454545,7.12825,1.987835,6.331149999999999,2.603455,2.49511,3.422005,2.27996,2.1912766666666665,2.209493333333333,3.019766666666667,2.391943095238095,6.372407,1.739722,4.555785,2.8536066666666664,2.44131,1.91762,2.320765,3.433045,3.68614,3.55586,2.948455,2.386505,2.389305,2.598075,1.156974,3.206175,2.621455,3.213725,2.205535,2.205535,2.925995,2.0823666666666667,3.682055,3.351175,4.967215,7.053243333333333,4.146495,3.54364,6.225614666666667,1.94094,3.1941866666666665,2.140563333333333,1.4090928571428571,1.7332025,3.99931,1.53107,0.502781875,0.6891566666666668,4.116415,4.58585,2.93083,0.9113022222222222,2.85684,3.0187066666666666,4.58409,1.632552,1.99937,1.0745166666666668,4.617945,2.4691,4.16403,0.71956,4.0755275,3.761515,3.529425,4.42138,3.68479,3.862895,2.7195433333333336,5.3454,3.73954,1.8394966666666666,2.73114,5.829411666666666,6.0589525,0.9219025,3.574755,4.492235,4.976555,3.6470000000000002,3.789766666666667,2.58685,3.188613333333333,3.696066666666667,5.8704374999999995,2.590542,2.6046895,3.933615,3.04236,2.41983,2.588675,8.37018,4.60676,1.9370166666666666,4.84654,4.84066,1.8341619999999998,3.830195,1.20042,1.6216428571428572,4.483355,4.026965,4.66086,2.3355366666666666,3.081125,2.97991,4.507315,3.609605,3.5586,2.970775,3.658555,3.640245,3.6500525,1.2260581538461537,1.2260581538461537,7.2692,0.7756825,2.084585456349206,0.7756825,0.8025683333333333,0.32454777777777777,2.88715378968254,2.90962,0.6842014285714286,2.084585456349206,1.995605,3.68435,2.202952361111111,3.78296,4.34876,6.946368333333333,2.03662,2.137395,2.19219,4.03258,5.76325,2.05395,1.756295,0.81958,2.575875,4.014205,2.54686,4.2184,6.2992525,0.4136633333333333,3.738265,0.700009,2.6198466666666667,2.292895,3.71886,1.2416416666666665,4.078825,4.47302,4.03315,2.732555,3.638475,4.907105,1.53664,3.09425,0.5705753846153846,2.42352,2.37903,1.187554,2.81197,2.5972500000000003,2.5677533333333336,3.89787,8.281044999999999,2.803120303030303,3.98634,3.525495,7.02533,5.2655883333333335,3.0223833333333334,4.29903,3.606065,5.74265,4.013145,5.18845,4.429085,4.233865,4.608545,3.8708666666666667,1.6806425,1.94959,2.21271,3.984365,2.3785766666666666,0.19494891891891894,0.19494891891891894,0.19494891891891894,30.066644285714283,0.19494891891891894,3.124248918918919,0.19494891891891894,0.19494891891891894,0.19494891891891894,3.1387622522522522,4.277525,0.19494891891891894,0.19494891891891894,0.19494891891891894,0.19494891891891894,0.19494891891891894,2.865445,5.15486,3.18194,0.1915953846153846,0.1915953846153846,4.318553333333334,4.045546083333334,3.9130520833333335,3.1292208611111114,3.8716838095238097,7.870293333333333,11.219457385780885,6.217297333333334,7.775240666666667,7.902900821428571,2.827116666666667,6.287102857142857,4.4096,4.364972692307692,0.1915953846153846,8.024077333333334,6.440498666666667,7.14924,2.6678,8.855180821428572,13.915143392857143,18.09483026098901,56.4446580613243,115.30688298911872,1.40831,3.4923,3.369625,3.8392253166023167,0.1915953846153846,1.516879358974359,8.81979375,14.583535654761905,19.952588333333335,47.33750273120301,13.419902488095238,3.20925,0.22614724137931036,0.22614724137931036,4.8613,2.8652866666666665,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,0.22614724137931036,5.34086,0.22614724137931036,0.22614724137931036,0.22614724137931036,2.68802,1.8895433333333334,3.73732,3.882665,4.475294166666667,4.97224,1.9793,4.05095,4.17233,3.1488,1.6303533333333335,3.595315,1.0210783333333333,2.29323,2.044556666666667,4.962936666666668,5.77876,2.7449600000000003,5.466552166666666,0.49924499999999994,0.4567326666666667,2.490483333333333,2.5965766666666665,2.9156,4.018395,3.371033333333333,7.43959,3.847845,3.559855,3.364345,3.949585,2.87686,3.35148,5.3555,1.95434,0.4607784615384615,0.8497754545454547,4.24783,1.876465,3.49707,3.79336,4.55876,3.521785,2.350015,2.74959,0.6133113333333333,0.702534,4.30927,2.7258566666666666,5.5953,3.527255,3.8699783333333335,2.582755,3.04033,5.18325,4.16429,3.25715,0.7801118181818182,3.2288833333333335,4.14037,2.272025,0.96137,1.6589633333333333,3.908215,6.28495,1.846385,2.86323,3.79449,5.3908,2.505025,2.44918,2.15183,4.72972,2.48237,4.014295,0.7109300000000001,2.135406666666667,3.43808,1.835565,5.896881666666666,2.90269,4.00981,4.023785,3.080885,2.40051,0.523989090909091,4.33233,4.80508,6.5952,3.50897,3.175765,4.74447,2.940765,1.99082,1.1986085714285715,4.793165,1.9398,2.782675,8.25178,3.99326,4.71198,3.16024,0.63068,3.14397,1.1970542857142856,3.34423,6.0703,4.79389,5.0024,3.543615,5.2996,4.45227,1.6207675,1.5713766666666666,4.967255,3.0594566666666663,3.2348466666666664,2.3166225,5.3091,4.114905,1.4589783333333333,3.532033333333333,2.7934,2.750755,3.915895,9.35509,4.605545,1.8654725,4.665215,6.50335,4.3810325,4.0631,3.65378,3.71264,4.37203,8.220225,2.411983333333333,3.52278,3.38662,4.25399,2.8489,3.262615,4.494145,4.050015,3.379265,3.8389786666666668,18.41454733333333,2.8468999999999998,2.6269466666666665,3.2152700000000003,5.550980666666667,1.0407975,4.012435,2.0924825,4.770535,1.3140283333333334,4.55308,4.22629,3.425305,0.98887,4.614305,4.50643,1.729755,4.532875303030303,4.000655,1.0708957142857143,3.484605,2.017605,2.482685,1.506295,4.32296,3.916745,3.701855,3.64781,2.96252,4.173805,8.006045,4.250485,4.185395,4.64831,2.9906133333333336,3.77023,4.62878,6.208474000000001,1.019392,1.019392,4.52227,4.57672,2.0923233333333333,1.2707766666666667,6.9789449999999995,3.888505,3.50568,3.60166,4.57766,4.40317,3.485015,3.633485,6.5846350000000005,3.78735,4.40119,4.69563,1.3663785714285714,2.48168,4.06765,4.399915,3.34390375,0.20345611111111112,1.57107,2.0199,2.41772,2.3194399999999997,0.9511022222222222,1.55579,1.44289,2.28123,0.62917,1.0422171428571427,1.9551775,3.99961,3.859666666666667,2.04851,2.5478166666666664,2.9024066666666664,2.777153333333333,0.677548,0.97247375,2.730995,4.650325,4.11731,2.900795,4.403485,4.40316,4.122155,2.03822,4.4326,4.875485,4.456985,6.1009725,3.608095,0.4924994117647059,5.0673,4.63749,3.80131,4.54387,3.511035,1.895148,3.71484,4.110565,2.880105,5.29458,4.55735,1.3628916666666668,5.29458,4.028235,6.7579199999999995,3.670005,1.1754666666666667,3.47412,4.994195,4.083695,2.58398,4.73029,1.4867875,2.08597,3.061685,3.602645,0.8183722222222223,4.67228,4.90357,3.45241,3.95742,3.4487666666666663,2.952296666666667,1.677684,1.5507525,3.20747,3.51549,3.2702833333333334,2.48176,2.1972225,1.9125390000000002,3.86411,1.2701214285714286,0.8398922222222223,5.38819,3.902355,1.455496,2.4971566666666667,2.2161866666666667,2.82154,6.014411666666667,2.206505,0.798969,2.500745,4.25777,2.1080366666666666,3.68066,5.1129,5.261,4.123025,4.64643,5.1395,2.1867966666666665,2.3549633333333335,1.7091733333333332,2.05509,1.9077325,2.318236666666667,2.2903033333333336,1.5332575,2.741715,3.204265,3.732945,6.3894,4.493705,3.95601,4.28904,3.97233,3.775525,5.1057,0.86016625,2.81129,4.705835,1.270308,0.6189513333333333,5.08345,3.475305,2.57436,3.4837375,6.158805,5.3219,0.880048,1.1210799999999999,0.7076211111111111,4.1866650000000005,2.3105933333333333,2.7744166666666668,1.1648714285714286,2.656496666666667,2.54439,5.36545,4.561205,4.146165,5.10915,3.935535,1.2239933333333333,3.53809,1.6730833333333335,3.502355,3.65796,3.28131,2.49808,3.2099666666666664,2.6680733333333335,2.99167,3.865185,3.257755,2.3934625,8.54363,9.86854,3.995955,1.3580942857142857,5.4442,3.891435,4.5949,4.531045,3.36121,3.93833,3.534005,4.404055,3.4992666666666667,4.03966,3.7017,3.48793,4.715675,1.7851299999999999,4.725635,5.70145,5.0215,3.295125,3.25016,7.10243,0.767035,2.6577066666666664,2.8562733333333337,2.3387366666666667,4.932125,3.235325,1.2035533333333335,3.96352,3.1887666666666665,3.73632,4.50586,4.033120833333333,6.45911,3.04494,2.798313333333333,3.0393933333333334,2.813136666666667,3.90014,1.8166433333333334,2.2744666666666666,3.0192033333333335,4.18876,3.6842750000000004,1.94639,1.6021225,3.0581807142857143,3.1401955,0.88721,2.511115,2.511115,1.23919,5.78125,3.118505,3.367945,3.59589,3.210595,3.561815,3.441845,3.303955,3.412895,2.3146333333333335,0.5140226666666667,3.32231,5.66359,3.06793,3.8067,3.29751,4.10729,3.83741,3.08144,2.61095,3.686155,3.79039,3.14248,3.143375,3.229325,2.67929,4.10117,3.940415,8.90243,3.28583,3.729115,3.01816,4.01621,4.233115,3.81236,2.423835,3.784795,2.6198449999999998,2.886775,2.88036,3.254935,3.735585,1.5765933333333333,1.5765933333333333,2.231265,3.29124,3.42833,1.6100400000000001,2.522535,3.535035,1.806632,2.97811,1.6100400000000001,4.17367,3.13465,3.7897765,3.314905,3.570945,2.397945,3.25206,3.95525,3.98545,3.407485,4.345505,3.81392,4.29869,3.65772,3.17861,3.39497,2.921625,4.035125,2.7054266666666664,3.578165,5.25885,4.25661,3.72318,0.2897730434782609,3.69289,0.4520916666666666,3.7843,3.605035,2.997635,3.50169,3.799125,5.645908333333333,2.885565,2.625366666666667,2.45656,2.8153433333333333,0.634355,6.600716666666667,3.180395,3.480945,3.47081,2.03013,2.935155,3.29702,3.519805,6.72851,4.633815,4.819435,4.620535,4.23756,4.14668,3.87791,1.4495483333333334,1.632862,3.77111,4.577595,5.6819425,2.520696666666667,4.83966,1.72675,3.4796,4.017405,1.8727764285714286,4.201255,5.051444999999999,3.5107666666666666,3.7183333333333333,2.7593633333333334,4.49893,4.462315,3.3826666666666667,4.286605,4.20828,4.813865,4.210795,4.500305,3.91194,3.390345,3.99719,2.4797,3.1374133333333334,3.1374133333333334,3.91267,2.6894899999999997,3.96244,2.263313333333333,4.390515,3.1723533333333336,3.73192,1.99549,1.9044033333333334,1.17762,1.17762,1.464404,3.2593333333333336,1.6916466666666665,2.77229,3.396875,5.0471375,3.2813433333333335,3.909175,6.18433,2.50695,2.83109,2.9695666666666667,1.6010866666666665,4.113515,3.72914,6.1102325,1.6441166666666664,5.28475,5.5817,3.2281766666666667,3.39502,4.0881,6.90297,1.9408166666666666,2.3100425,3.88663,0.4851885714285714,3.505735,4.116845,4.19295,4.150535,2.77333,1.298278,1.585898,3.96399,3.22182,2.5118066666666667,3.80896,4.652385,5.1936,1.00547875,3.09095,4.403035,3.659005,4.637615,2.41203,5.472708333333333,3.750955,1.5908200000000001,3.73375,1.1887866666666667,2.8288266666666666,6.678301666666666,3.547495,0.6688918181818182,3.040285,3.981425,3.74692,1.82508,1.82508,4.82709,5.42655,2.901575,0.5061599999999999,1.8950475,4.456329166666667,3.921865,4.192395,1.765814,2.9698933333333333,3.12774,1.1761989473684211,1.1761989473684211,1.1761989473684211,0.8565406140350877,1.478498947368421,0.6219583333333333,1.1761989473684211,0.8565406140350877,0.29575894736842107,0.9177172807017544,0.29575894736842107,0.5607816666666666,0.5607816666666666,0.5607816666666666,0.5607816666666666,1.2249101666666666,1.04956625,2.43255,2.302811666666667,1.0134833333333333,6.447279999999999,2.70774,6.125878333333333,2.6651233333333333,3.58577,2.93527,3.40964,2.7374816666666666,4.600095,2.8731333333333335,3.96419,4.13448,4.610885,2.104605,3.636755,4.706285,4.138725,3.39291,4.825805,3.43264,4.62095,5.45835,5.14055,6.1803,5.2633,1.07078625,4.414835,3.756125,2.89267,15.131730000000001,4.507535,5.2056,2.6840333333333333,7.53593,4.28112,4.6869,4.791685,3.14596,1.10656,2.550545,3.604025,4.20005,3.504465,3.49118,4.16062,2.873506666666667,4.32299,4.45112,4.07863,6.753393333333333,6.843838333333332,1.3099442857142858,3.84063,4.003735,3.81424,3.670255,3.56824,7.22166,2.608665,2.803445,2.601045,4.20054,3.83403,4.4709,2.360195,1.8628175,0.846358,4.20883,3.42519,3.624335,3.980825,3.176835,4.560445,3.97268,6.4548,6.02985,5.32125,6.5367,3.83378,3.348565,3.1918,3.388615,1.9647225,4.927425,5.80045,6.3581,5.619363333333334,5.619363333333334,2.49621,1.9647225,1.88835,3.13609,0.7044933333333333,1.5704958333333332,0.8660025,1.4744425,2.585295,0.374917,2.839885,4.166585,1.4744425,2.8203760000000004,10.74653,6.4173375,2.1544731666666666,0.992295,2.036776666666667,4.221675,4.44095,5.521365571428571,1.9829725,2.419215,3.571315,3.21745,4.409685,1.5467466666666667,5.0014,3.4492666666666665,3.00399,5.0208,6.932292,3.93964,2.32893,2.748976666666667,1.76621,3.635825,4.997395,1.744282,5.56215,4.47986,5.724653,0.49014399999999997,4.230331666666666,4.992465,5.74025,2.4462,2.81251,7.2317,8.120716666666667,6.5712,2.0786666666666664,2.0786666666666664,2.0786666666666664,5.0381,4.897835,6.263,4.365815,2.745125,2.6254784210526316,4.42268,3.986235,2.6130015,1.92587,2.6130015,7.4480715,4.958993333333334,4.8343847619047615,7.03907,4.8343847619047615,4.8343847619047615,3.622651428571429,6.88983,5.843291,3.0716859999999997,3.0716859999999997,2.77944,7.0074,2.982435,3.488275,5.449356666666667,5.449356666666667,5.449356666666667,7.765835,3.7434325,3.518375,3.7520775000000004,3.60387,0.84689,7.578623333333333,2.61963,6.67645,3.43472,12.799527,4.79609,5.523531666666667,6.99441,2.583896666666667,3.360325,1.0993,5.523531666666667,3.4512,1.75602,1.75602,2.960935,5.448440833333333,1.7988425,5.052193333333333,0.901597,1.58566,0.901597,1.9819075,2.7004395,5.778192,3.87566,1.58566,3.241825,5.0146425,1.0330675,3.456035,4.67533,2.23206,4.363021666666667,2.693165,3.221525,2.841815,1.110054,3.907965,2.747235,2.25018,1.81951,3.7696300000000003,3.591055,2.517575,3.47032,1.3710766666666667,1.3710766666666667,1.3710766666666667,4.1362,2.9466933333333336,2.9466933333333336,3.07005,3.9845,2.426276666666667,1.601295,1.601295,3.02227,4.5423575,0.8644125,1.4504266666666668,2.840615,1.3515350000000002,2.8019616666666667,1.110054,1.110054,1.9707050000000002,1.110054,3.1871533333333333,0.70655,3.1871533333333333,6.123469583333334,3.643835,2.5297133333333335,1.8249518055555556,0.7914916666666666,2.616443472222222,3.59102,2.616443472222222,1.0304355555555555,3.4797,4.258395,4.10851,3.59832,2.591915,3.73891,1.8614333333333333,0.9612648611111111,0.45360375,0.9612648611111111,0.5076611111111111,0.9612648611111111,0.9612648611111111,4.48353,4.238065,6.01875,3.620605,4.159015,4.08104,5.1485,3.397275,3.80445,1.3634414285714287,2.389676666666667,4.102304166666666,4.059795,1.46715,2.6226866666666666,3.71679,3.89058,4.007235,3.20355,3.924105,3.301645,3.274255,4.370585,2.2411966666666667,5.9888,3.440835,3.922695,4.586986428571429,0.9912799285714285,2.072845,3.232475,6.00376,3.886405,3.318235,3.02432,4.20514,7.240408333333333,2.9997666666666665,4.050985,2.7287033333333333,3.799675,4.07157,5.5549,5.162,4.40371,2.91664,5.1449,4.669765,3.5210333333333335,7.63804,3.264746666666667,2.2152375,2.4316866666666668,4.792095,6.40995,4.92887,5.04285,3.914825,4.714965,5.51755,0.47882461538461535,6.958495000000001,4.303125,3.71809,3.513505,4.42931,3.95726,2.878553333333333,2.510375,1.3425666666666667,0.5871284615384615,1.697616,3.1443266666666667,3.00839,3.404225,3.681225,3.785525,11.519521666666666,3.70077,3.918415,2.85239,0.692295,5.566166666666668,3.4880666666666666,1.7578233333333333,5.24589,6.6848616666666665,3.196795,8.95732,4.57021,2.561382,2.561382,2.561382,4.07585,8.70219,3.49246,1.9513,1.9513,3.69843,9.95211,1.005115,4.559555,4.21178,4.0327,2.7888,2.3930333333333333,4.3796,3.959655,5.98115,6.1678283333333335,4.058,2.93544,4.02602,4.030755,3.2096925,1.1267925,2.6993899999999997,6.21614,3.2049125,4.58214,0.8574725,3.6148666666666665,2.2238166666666666,2.6591299999999998,1.7722,1.78892,2.2563033333333333,5.12645,2.237705,4.582155,5.34815,1.739722,4.616985,3.8395,4.572275,3.2129833333333333,2.18233,2.800445,4.157375,4.037381666666667,4.037381666666667,1.2049825,1.6473166666666668,2.6715999999999998,4.1382813333333335,2.249385272727273,4.7820599999999995,1.7720099999999999,2.605183333333333,2.1146166666666666,1.6375625,1.6375625,4.547455,7.34861,1.8538666666666668,2.9337466666666665,2.1352075,4.466415,3.30041,0.84999,3.113705,0.84999,2.669655,3.40902,5.42295,5.39475,3.726115,4.4818774999999995,5.58815,2.459085,1.8954233333333335,2.9538333333333333,2.24872,6.0477,4.728055,2.59865,4.145485,2.93112,4.254655,1.11518,1.138652,1.9165133333333333,1.2101666666666666,2.60543,2.6907300000000003,2.1259833333333336,2.71065,2.699755,4.650925,2.57608,2.4697533333333332,2.7255566666666664,2.3942666666666668,2.769386666666667,2.6623466666666666,2.008246666666667,2.58275,3.785745,3.567915,3.244355,2.967355,2.854706666666667,2.04582,1.79438,1.1474733333333333,0.31173850000000003,0.14321782608695652,2.26689,1.7352966666666667,0.14321782608695652,3.694061992753623,2.0131075,0.14321782608695652,5.624339930555555,2.176946666666667,5.62902,3.411095,3.0807866666666666,2.5374766666666666,2.853596666666667,2.28777,4.61382,2.9671766666666666,3.106996666666667,0.3906352631578947,4.012661666666666,2.645168596491228,2.880765,1.866395,2.459815,4.316875,2.47747,7.872295,4.97886,3.20476,3.629225,7.02494,7.13826,1.83219,4.280200833333334,2.26801,2.25486,6.37997,7.72598,1.1497866666666667,2.0458525,3.69168,2.410345,3.079565,3.082375,2.901805,4.29169,2.490185,3.20149,3.50271,3.17324,7.5133,1.4039633333333335,2.09733,3.04835,3.30198,1.77383,3.46695,1.41316,3.802505,3.354195,6.94525,3.711925,8.993435,3.74066,1.517514,1.7989499999999998,2.920775,6.01903,1.5640675,1.9464466666666667,5.94977,3.5755,4.131455,2.78463,2.0352799999999998,3.16917,10.442545,5.12618,6.42939,3.536685,2.790995,2.185245,2.57501,3.0503,3.47078,1.4807983333333334,1.7001600000000001,2.705346666666667,3.6272,1.79527,3.442435,2.828685,4.615445,3.7577,3.41124,1.1681516666666667,2.237075,0.9625466666666668,1.325844,1.680115,3.351055,3.49565,3.28948,2.927745,4.012075,4.0061,2.91637,1.44239,3.48416,3.50449,3.258635,1.54982,2.77076,3.342235,1.4719825,3.369835,1.70953,3.926305,3.750275,4.45228,2.97217,3.920155,1.7923,3.365515,5.38375,1.71778,1.091797142857143,3.557,2.641085,4.208785,4.3086,3.227515,4.58964,4.870015,2.4360066666666667,5.11925,5.45117,6.446,3.715635,5.59709,4.09444,1.66287,2.6396633333333335,4.635145,4.825635,2.4439333333333333,7.27667,1.1774042857142857,3.29542,2.48981,1.807292,2.3734466666666667,2.8567199999999997,0.34779785714285716,2.7094766666666668,3.791733333333333,3.374815,2.638045,3.3347333333333338,2.3199333333333336,2.5861466666666666,2.01972,8.875005000000002,4.902865,1.9739840000000002,5.11065,2.3515392826086954,0.7465856410256411,2.5312266666666665,7.198632666666667,1.639818,4.451409999999999,6.0556616666666665,1.585235,1.627955,1.427825,4.103655,3.32314,4.573585,3.8108725,2.3626133333333335,3.63309,0.9918279999999999,2.8922480000000004,4.155215,4.207765,4.553155,2.798125,4.901935,4.40015,4.112145,4.74604,5.7527,4.922585,3.91057,5.4904,1.7475159999999998,1.9269575,2.73159,3.35661,1.0794955555555557,3.92199,2.08039,3.2722366666666667,4.246755,3.0748333333333338,2.42474,1.5630366666666669,2.8399433333333337,2.838383888888889,2.6317766666666667,2.8745733333333336,1.9369766666666666,2.0477225,2.320345,3.52389,4.112185,3.685745,4.54857,3.50819,2.529645,3.29882,4.845295,3.8688000000000002,4.546175,3.047635,2.262665,4.551945,1.7402300000000002,4.218935,4.732620833333334,5.912180833333333,3.70138,4.07194,5.4271,3.1467566666666666,3.881743333333333,4.43337,3.482585,3.8042160000000003,3.41721,1.4039825,3.234205,1.913295,2.34466,5.2329,5.3056575,3.8042160000000003,4.071775,3.55872,1.5229066666666666,3.75629,2.24528,2.4631366666666668,2.237285,2.952035,1.5728610606060607,1.5728610606060607,1.5728610606060607,0.5805127272727273,0.777208888888889,2.068493888888889,1.0643725,3.66308,1.2284683333333333,3.74672,5.21075,4.47047,3.300085,4.07518,3.221095,4.89865,1.539465,3.25972,2.726285,3.152325,6.009081999999999,4.180345,5.0301,4.111215,1.0435475,2.33478,1.3215333333333332,3.818105,3.947225,4.255385,5.02305,4.42509,3.78155,4.38472,3.884945,1.808915,1.092775,5.2475233333333335,1.048848888888889,1.2802433333333334,2.7102766666666662,7.97119,3.07098,3.849435,2.86468,5.6962649999999995,1.647435,0.9902566666666667,1.5449925,3.14801,3.4718,3.907895,3.81028,1.91535,6.7898,2.8350266666666664,0.91034875,4.33074,2.8160900000000004,2.71451,2.3266633333333333,3.5175,5.8742625,2.6579,3.0651666666666664,3.5414999999999996,2.1187533333333333,2.5785966666666664,2.94923,2.70526,2.0755375,4.8413,4.6323,4.869905,0.9952177777777779,0.721773,3.744866666666667,2.618043333333333,0.99528375,2.588482083333333,3.3652,4.26922,7.01579,4.677005,3.4412000000000003,1.760794,3.517465,3.842365,2.63864,2.441864,3.654355,2.7192600000000002,4.726108,0.8089511111111112,2.4953,1.7625419999999998,3.731385,4.07664,2.066195,1.114545,3.11035,0.447904,3.27166,6.7366,5.32285,2.871098,1.535858,4.200333333333334,0.7855033333333333,2.5717766666666666,0.7855033333333333,4.15511,4.52808,1.2780475,1.680525,5.016565,1.85454,3.45968,2.43166,3.587895,1.254728,1.6141866666666667,4.09387,4.317505,5.3689,2.9063980000000003,2.661725,3.230075,1.65148,2.150215,1.7455375,1.96474,4.303535,1.543088888888889,1.543088888888889,2.97679,4.638727333333334,8.287434166666667,4.281606666666667,7.47518,2.2362,3.88305,4.07029,1.5643716666666665,3.4926200000000005,3.61847,2.87484,5.0691,2.9664,2.690235,2.79839,3.73007,1.0837625,4.101195,4.60219,1.1159516666666667,7.360993333333334,2.768775,3.164355,3.4905316666666666,5.0304,4.784605,3.2158016666666667,2.3163266666666664,2.8114833333333333,2.0714533333333334,3.7096999999999998,2.2693275,2.15586,7.1177953333333335,3.1785766666666664,2.9289199999999997,4.456935,21.548020913919416,0.6868333333333333,2.951505,4.52987,4.62089,8.87866,4.637825,4.465395,4.548745,7.053976666666666,3.731495,1.6178966666666668,4.601806666666667,3.394495,1.2449020000000002,1.2449020000000002,1.2449020000000002,2.37034625,1.7093775,3.3872,1.61728,3.280785,1.80776,2.48448,2.636775,2.84629,1.61728,3.416835,2.71206,4.151956666666666,4.939965,5.01835,0.7752491666666667,3.331065,2.954225,4.905305,3.451785,2.841095,2.3650875,1.77379,2.28363,1.490604,3.65245,1.711745,4.54421,10.703694500000001,2.68299,2.473425,4.5869125,4.712233333333333,4.426466666666667,6.29825,2.2545333333333333,5.2655883333333335,4.43911,1.0747166666666665,1.1797728571428572,6.430324,4.219845,2.3387175,3.75073,2.0280225,3.636655,4.57684,4.53442,4.00564,1.2223485714285716,4.13697,4.894685,4.6,6.2658439999999995,3.54335,5.23075,4.089445,4.292835,4.95014,3.4242333333333335,4.909015,1.8761875,3.363205,3.13202,3.24681,4.412465,6.26085,4.6071,2.770103333333333,3.5261,9.03288,4.789355,3.2873966666666665,3.538355,3.2699,4.368715,4.39822,4.67905,6.507973333333333,3.30043,2.703723333333333,4.074675833333334,2.489065,3.79202,2.1718333333333333,6.423335,1.6356883333333334,4.38741,4.607795,11.4839775,0.4898664285714286,4.30836,4.879945,0.6437935714285714,3.66402,3.85125,3.921365,0.913803,4.702645,5.024093333333333,2.668203333333333,9.983726666666668,3.2551366666666666,1.95183,2.30096,3.444055,5.88495,0.5224166666666666,3.947505,2.0078575,5.3216,0.6803246153846154,4.232035,5.62845,6.123,3.624435,6.2162975,4.5796,3.44097625,2.58167,3.0015199999999997,4.3237,4.44567,4.81662,4.90078,5.37525,3.0156733333333334,6.2140933333333335,2.70715,3.207172,1.8126175,3.956795,2.2841733333333334,1.6787766666666668,3.2182833333333334,2.8118366666666668,3.1847266666666667,3.3455333333333335,3.4758666666666667,3.006126666666667,2.6384966666666667,5.5417,3.222663333333333,3.738355,4.74816,2.55743,1.1100255555555556,2.9450966666666667,2.9535699999999996,3.677005,2.8813866666666663,3.16241,5.002878333333333,2.2161633333333333,1.7478925,3.08698,3.81943,4.278835,1.10221125,4.018135,3.114545,3.8006333333333333,2.9574433333333334,4.8585205,4.02532,3.32587,4.032335,1.765375,3.931355,0.62285625,4.81245,4.99528,16.782971818181817,3.0176833333333337,1.18962,3.433015,0.6215157142857143,2.64395,4.43032,2.016115,1.2033957142857141,3.616225,4.588305,2.925823333333333,0.8486016666666667,2.668945,7.62547,3.75016,5.44175,4.84885,5.08855,3.0976666666666666,3.6194,3.22814,7.621165,3.7273,4.90059,2.02248,0.43942888888888887,2.343285,2.98692,2.265015,4.20307,3.690955,2.82521,4.621915,0.66066,4.4643,3.53028,3.272375,1.18261,2.7424433333333336,1.9810666666666668,4.88692,3.80758,2.20565,1.5430428571428572,3.402705,4.37062,4.24539,6.037075,2.1057,4.65479,4.376485,3.79671,1.8779620000000001,3.71926,5.260461666666667,4.656705,2.52925,4.927565,2.759285,2.69628,3.726235,3.792875,1.3808449999999999,4.652195,1.9523033333333333,2.51385,5.151541666666667,5.151541666666667,5.26905,1.363818,4.944045,0.90299125,1.774994,5.18105,2.4774866666666666,1.4995333333333332,3.060563333333333,0.8272619999999999,4.289433333333333,4.866905,2.945015,4.78056,3.779165,3.391995,5.2323325,3.354495,3.532966666666667,2.544773333333333,2.5174966666666667,2.502,2.84097,4.524205,1.6707513186813188,2.9606366666666664,4.399665,4.550365,2.1729708333333333,4.098105,4.489855,4.813008333333333,3.3262300000000002,5.1115,4.71617,5.3646,4.827,3.3489,3.6284,3.71073,4.29637,5.43,4.47075,4.87701,4.677175,4.524075,0.6794966666666666,4.88894,4.427155,3.73623,6.9922474999999995,4.12765,3.705905,4.17783,4.76946,3.42015,3.622125,2.12391125,4.5022325,1.7572775,1.3124985714285715,3.711175,2.0865533333333333,2.5724066666666667,3.92822,3.4103666666666665,2.869425,1.1340066666666666,1.868815,4.3944,3.518925,1.89905,1.89905,3.388355,1.5534940000000002,3.2665933333333332,4.441105,3.49953,3.86082,1.58871,2.07754,3.4595758333333335,1.919345,3.79611,4.2266,4.61886,3.870565,6.469033333333334,2.579875,3.602795,4.199085,4.42002,3.2799,3.6235,3.75863,4.13077,2.320835,2.3563366666666665,4.27824,3.63711,3.59289,3.71064,1.6539,3.602905,4.22064,4.56031,4.118205,3.9580625,3.9580625,2.9459983333333333,3.926305,4.04516,3.70128,1.6835499999999999,7.3303,4.028215,4.740815,4.30027,4.13292,3.870855,4.536585,3.051405,3.36382,2.92068,4.803265,1.948632,4.127615,5.134955,5.02145,0.7030339999999999,4.924697500000001,1.12331,4.748985,4.59003,4.46126,4.233285,4.93295,3.5103000000000004,3.5103000000000004,0.8671530000000001,2.274045,4.80217,3.62231,3.83703,4.86255,5.5671,3.43981,4.01648,1.3186966666666666,2.66893,1.71853,1.27485,4.229705333333333,0.759062,2.4254366666666667,3.14846,1.2841666666666667,2.0527775,2.7353966666666665,1.1613383333333334,6.27442,2.005705,2.40094,5.6149,1.909185,2.7916433333333335,2.839845,4.651605,3.6082,3.398566666666667,4.073266666666666,1.720504,2.2827583333333337,4.152325,0.6426871428571428,2.1163866666666666,2.2983183333333335,3.149153333333333,2.78078,1.1194757142857144,0.8279191666666667,2.51489,4.243445,1.2192357142857142,2.0902,1.2347725,5.278134166666666,2.2021775,4.880495,4.37364,4.061685,5.1775,5.29765,3.930755,4.20033,1.3935533333333332,3.8424,1.771256,2.39376,1.20181,4.056275,2.138355,7.4572199999999995,4.00159,3.54359,1.418742,6.9265025,3.4536,1.45075,4.18455,3.47285,3.86681,3.083665,2.10518,2.10518,3.1826066666666666,1.2304666666666666,1.2304666666666666,1.8779620000000001,2.7807033333333333,2.24486,1.2927633333333333,3.508566666666667,1.0584525,3.1184,2.3894475,1.9479875,1.5209183333333334,2.257835,1.9843125,0.29118058823529414,2.33764,1.154425,2.28675,2.1146166666666666,2.326085,1.06634,1.156974,3.682033333333333,3.0658766666666666,2.10518,1.876465,2.0387866666666667,2.5976399999999997,2.45677,1.8414000000000001,3.21115,1.04007,3.2001566666666665,2.7655133333333333,2.6017333333333332,1.5329000000000002,0.958906,2.4028075,0.958906,2.4028075,0.62493625,0.62493625,0.48970833333333336,2.1713275,2.2318266666666666,0.62493625,2.2257375,2.35129,2.3050275,1.695495,0.8119355555555555,0.62493625,0.62493625,1.6449960000000001,1.6449960000000001,2.02781,1.876465,0.62493625,2.195,0.46504769230769233,2.72256,1.9352733333333332,2.4607,2.573726666666667,2.573726666666667,0.37019799999999997,0.37019799999999997,1.8779620000000001,1.9816340000000001,2.1419799999999998,1.9825959999999998,0.37019799999999997,3.5148333333333333,2.4623675,1.563246,0.62452375,1.563246,0.62452375,7.40777,2.581233333333333,3.904866666666667,2.6572733333333334,2.888056666666667,3.039773333333333,2.7296866666666664,3.4547000000000003,2.502575,1.7040325,2.58655,2.9997666666666665,2.401616666666667,1.6449960000000001,2.6260166666666667,2.6260166666666667,2.8477033333333335,2.148665,4.51863,2.3328,3.1310466666666668,2.7700366666666665,1.424136,2.131435,2.1899425,0.7967427272727273,1.639015,3.725655,1.5903040000000002,3.0525466666666667,2.64786,2.59445,3.808,1.5809333333333333,3.3802,3.065253333333333,4.248366666666667,1.26883,0.22614724137931036,1.25376,1.25376,0.9654233333333333,2.865326666666667,3.8725666666666663,2.45349,2.131743333333333,2.131743333333333,2.0620525,1.70953,0.943431,1.7123,1.7123,0.62493625,1.8779620000000001,2.9792166666666664,3.28828,2.3894475,2.2271799999999997,2.2271799999999997,2.2271799999999997,1.1003655555555556,1.4090928571428571,1.4090928571428571,2.36048,2.637303333333333,2.6164904924242425,3.59168,2.5472266666666665,2.4133999999999998,3.600125,3.88832,6.45242,3.66035,4.191745,4.075233333333333,13.424714999999999,4.85369,3.61524,1.164915,3.94533,3.55066,2.425835,3.924325,4.96725,5.820297666666667,6.0264,0.45244411764705883,3.53412,3.035215,3.939385,2.46492,4.28223,4.56991,3.79062,7.258835,3.774205,3.895355,3.941105,3.2720118181818183,7.891966512820513,3.1825666666666668,2.63756,3.43367,3.721375,4.94618,3.82149,6.559558,3.65266,1.351048,2.79745,0.9226,4.665895,2.790345,2.76508,4.0558,2.85092,2.722905,4.791525,3.901575,9.26972,4.04853,4.658449,2.3771066666666667,5.22108,3.26908,0.8602,0.8602,3.522055,3.999605,2.245585,2.19848,4.099755,2.99131,2.841805,1.96869,1.95456,2.943485,2.35264,1.09085375,3.124215,4.73281,8.44865,1.537582,2.872575,2.88805,3.206875,2.83165,8.57406,4.21987,3.3383333333333334,2.77956,3.86503,3.3077466666666666,2.97801,2.91502,3.94927,3.703775,4.347355,3.921575,0.40727066666666667,1.6144966666666667,2.5609800000000003,1.80796,4.483815,3.55464,2.3801,2.13455,4.284755,3.6690945,1.9484375,2.76547,0.8537839999999999,2.1480975,2.4479333333333333,2.4479333333333333,4.868405,1.83714,2.8445966666666664,2.2908833333333334,2.0537199999999998,1.8499566666666667,3.38633,3.760795,4.74772,4.14084,5.2795,4.642245,2.82959,2.9629999999999996,2.09944,4.607155,5.565166666666667,1.8877833333333334,2.9812600000000002,2.0129925,2.2646166666666665,3.8371866666666667,2.28023,4.98711,3.85713,3.490895,4.13396,2.9349433333333335,3.79257,3.985205,2.3561533333333333,2.395706666666667,0.41695071428571434,3.6230666666666664,2.6803033333333333,3.120755,6.0596,4.74207,5.736308333333334,1.877015,1.5822133333333335,3.087885,5.0872,6.24245,5.81325,2.88288,2.3006033333333336,3.50951,2.1148833333333332,4.540795,2.1659666666666664,2.3052275,5.40365,4.79362,4.280775,1.7434775,1.9449475,1.060784,1.060784,1.322358,0.9850071428571429,0.8093859999999999,1.984155142857143,4.32741,9.873544166666667,3.69487,4.10693,4.189085,5.7675475,2.834575,1.6457033333333333,3.2130399999999995,2.987485,4.05138,2.25881,2.55851,2.85952,3.2423033333333335,2.2572366666666666,3.1646733333333334,3.2801233333333335,2.8421633333333336,3.4751666666666665,3.301626666666667,2.8462066666666668,2.6692733333333334,3.1796933333333333,2.318353333333333,3.1471,3.0353600000000003,2.8794066666666667,3.273213333333333,2.08708,5.138182476190476,3.12829,4.076578,3.2538300000000002,2.9869,3.6625,2.7847933333333335,2.7785533333333334,3.1184999999999996,3.1702033333333333,3.3123299999999998,3.0713733333333333,1.8709275,2.7194966666666667,2.69252,2.79695,2.79695,3.2086400000000004,2.7460299999999997,2.3811633333333333,2.662243333333333,2.8990299999999998,4.142233333333333,2.790926666666667,2.7323,2.7907166666666665,2.8549633333333335,4.4101675,4.88111,1.5711533333333334,3.3767,3.7123333333333335,3.27541,3.083076666666667,3.6344666666666665,3.4694333333333334,2.7447766666666666,3.459218,1.939488,2.941916,3.387233333333333,3.16271,2.4835066666666665,2.3101533333333335,3.858033333333333,2.8273499999999996,2.9787033333333333,2.2723,1.1554966666666666,3.214676666666667,2.5064266666666666,1.9875633333333333,2.482135,3.0326,3.0681966666666667,1.918466,5.654255999999999,2.3067933333333333,0.9041600000000001,4.30033,1.80167875,1.55328,4.228625,3.92971,3.43844,2.26032,1.5089825,3.22668,2.588025,2.505745,0.408131,2.16871,0.408131,2.222825,1.5089825,2.841415,3.55699,2.46005,3.162725,3.4866,0.48613666666666666,2.7422866666666668,0.9811575,0.43967470588235297,3.77664,3.942825,4.92775,2.4264,5.2756,4.06614,3.86496,2.11273,3.7871666666666663,1.66738,5.20615,2.63055,4.25598,4.377705,3.00389,2.0366166666666667,1.9903333333333333,1.3241083333333334,1.812255,0.821865,0.821865,4.52007,2.12664,5.97628,2.4172875,2.74776,2.210615,2.5825105,2.4109,6.22135,4.5055125,2.0946125,2.6255366666666666,2.5825105,2.836385,4.476013,2.653905,6.216216666666666,2.4172875,3.5512575,3.55909,3.0632900000000003,5.3833,4.60909,1.8723775,1.9592175,2.46077,2.328215,4.751925,5.32845,1.9432,3.702705,1.6010866666666665,1.608255,5.13185,9.743265000000001,2.035556666666667,2.0265333333333335,2.36642,4.04528,4.05779,1.87856,4.51697,4.379465,2.49905,38.74386558333333,2.8612333333333333,3.0707466666666665,0.41276999999999997,4.337415,2.04428,0.88201,3.51233,3.74629,1.858855,1.75243,2.34308,3.770845,1.3153299999999999,3.1463703333333335,3.66485,4.649495,0.932804,4.686745,4.883915,4.66558,2.83372,1.552855,3.69361,4.42578,3.43324,3.071845,3.74013,3.81812,11.42108292929293,2.56376,3.11035,3.72457,2.54991,4.426795,2.93725,2.69147,2.97541,6.213025,4.35671,4.854275,5.1327,2.47225,3.587745,4.18275,3.808415,4.68413,4.336525,0.12521630434782607,2.34915,5.2874,2.788935,1.6204766666666668,1.1533333333333333,1.1533333333333333,1.9737725,2.87418,3.063025,1.883842,2.8195099999999997,4.425705,2.64656,4.491205833333334,0.5561707142857143,4.62902,3.678795,4.81674,4.692035,4.35866,1.1815175,1.01243125,4.308366666666667,2.8900233333333336,3.0609366666666666,3.8622902424242422,4.18101,6.2639575,5.4883,3.899975,3.55179,2.0749258333333334,1.4561849999999998,4.251875,0.3230673333333333,3.48253,3.8624,4.018415,14.009716666666666,1.9716200000000002,2.976523333333333,0.7695475,4.525475,8.67708,3.49165,1.7468466666666667,5.74025,3.164406666666667,1.0891011111111113,4.973785,2.82847,2.78591,4.749135,3.6813431666666667,1.00232375,6.465656666666666,0.7768775,4.923925,3.3990981666666666,1.4399225,2.2656108333333336,3.3472725,3.3472725,3.91442,4.577822333333334,1.2702,2.84509,2.95625,3.72656,3.168925,3.04198,3.12194,3.672425,6.715284666666667,6.2933,4.165895,3.28817,4.58865,4.551865,3.41299,3.40628,3.669465,3.726225,4.20578,2.577436666666667,2.58632,1.56282,2.3144933333333335,2.16691,1.539395,2.9375133333333334,3.5517,3.3966,3.0296033333333336,2.5163733333333336,1.6303533333333335,1.63133,0.4745836363636364,2.51015,1.5827142857142857,1.8663225,3.4474,2.495973333333333,2.6211366666666667,0.90545,2.2246625,2.595795,2.98593,3.70648,5.1203,3.86774,2.931765,2.28968,3.3933,4.301225,2.47965,3.442855,2.183545,3.95908,2.873985,4.12676,1.5082700000000002,0.619609,2.24227,3.36997,3.168515,3.868055,4.70308,8.684525,3.1690133333333335,2.15605,1.8975733333333331,1.6748539999999998,1.6748539999999998,2.8950099999999996,2.5136600000000002,4.75128,4.302665,3.38869,4.81246,3.965145,4.085205,3.194089166666667,4.32129,7.752387499999999,2.573575,0.502781875,3.2338766666666667,1.4401966666666668,1.03387,1.7190866666666667,0.7226049999999999,2.1287475,5.0306,5.24075,6.18288,1.12463,7.71612,1.959456,1.5779483333333333,2.63685,3.97994,3.2632366666666663,2.3465225,3.39734,3.00474,4.1961,2.91834,2.8191466666666667,2.9499,6.814545,2.486505,4.003195,3.7986766666666667,3.9747716666666664,1.6684166666666667,1.28349,4.269025,2.6926366666666666,3.0909833333333334,5.45945,2.672475,2.158535,2.3999125,3.30081,3.7046666666666668,2.0447666666666664,3.734199166666667,2.893466666666667,5.4596,2.4322938333333335,1.8966,4.725595,5.2485,4.22516,4.086375,1.4811233333333333,2.1829075,2.00146,3.384175,1.4556166666666668,0.978395,2.81761,2.050535,1.9398525,4.529355,0.6681083333333334,5.5603475,1.4537075,0.766240909090909,3.5096666666666665,3.842895,0.6706371428571429,2.9503985,3.1661762500000004,0.8279191666666667,4.104445,0.16377190476190476,0.16377190476190476,0.16377190476190476,0.16377190476190476,0.16377190476190476,0.16377190476190476,1.651938,3.64892,1.651938,1.651938,1.88511,0.16377190476190476,0.16377190476190476,3.255383333333333,2.6226366666666667,3.334765,3.434465,2.403575,3.58779,1.3800342857142858,1.5986179999999999,3.2096925,1.38796,2.83295,2.619348222222222,5.496826666666666,3.95114,4.007905,6.4788,4.455295,4.509805,3.567865,3.92461,7.208762916666666,3.9745333333333335,3.6059,2.260256666666667,5.007513333333334,2.6096533333333336,2.11701,1.6684666666666665,4.561245,5.00885,4.9983,4.92835,5.4401,4.211185,4.577295,0.6570736363636364,0.6854792857142857,0.6854792857142857,4.81696,2.3953533333333334,4.017415,1.0233,4.421105,1.4588285714285714,2.2919,2.4956199999999997,4.427266666666667,4.427266666666667,6.72815,4.20523,1.3203449999999999,9.666085,2.7662266666666664,1.2103555555555556,5.02805,5.07245,3.398625,3.10778,2.803185,4.194866666666667,0.7889666666666667,3.244873333333333,3.3515,3.8107666666666664,3.1917299999999997,1.5387366666666666,1.4824466666666665,4.801383333333334,3.1045033333333336,3.1636133333333336,3.4418333333333333,5.465231666666667,3.4739975,0.8263339999999999,1.7045733333333333,3.5553000000000003,2.241295,3.747833333333333,3.4422333333333337,3.0757766666666666,3.340666666666667,3.00568,2.3518399999999997,0.8875299999999999,3.0608799999999996,2.45406,3.336855,3.043245,3.705475,2.5948100000000003,3.302846666666667,2.85105,1.535432,1.93049,2.6836509523809524,3.4639666666666664,1.747392,3.21021,1.8385999999999998,3.6689333333333334,5.462529999999999,5.04093,2.3979125,2.5717,2.674775,2.511575,1.6231857142857142,2.3206975,3.3595975000000005,2.48524,3.583266666666667,3.235065,3.778151,2.99673,1.2518777777777776,1.338065,1.82397,2.21436,2.835593333333333,3.4876666666666662,5.0788,7.6515249999999995,2.65597,5.11965,3.817395,15.015015666666667,0.4676835,11.122892499999999,0.8325733333333333,3.33981,2.8441566666666667,2.1561166666666667,2.93108,1.6227239999999998,1.44239,2.3092366666666666,1.176288,2.8208719999999996,1.8754466666666667,2.8745100000000003,2.1423666666666668,2.5873399999999998,1.6084100000000001,0.5992341666666666,3.0227799999999996,2.544566666666667,2.8337233333333334,1.1003655555555556,3.4686333333333335,0.7160316666666667,0.35624923076923076,1.9353833333333332,4.36588,4.687395,4.403755,0.7373763636363637,3.97018,5.0237,1.2236,2.012715,5.229621666666667,3.200665,3.797685,3.80879,3.98421,1.82897,3.87299,2.70342,2.797305,3.69048,2.776465,2.876305,3.79338,3.26502,3.98313,2.05369,3.347775,4.341085,1.3361966666666667,4.480045,2.313095,4.148725,4.983563333333334,1.9932575,2.7003633333333332,2.91019,5.706118333333333,2.5449533333333334,3.240475,4.844785,3.904866666666667,4.014595,1.9296933333333335,2.627125,4.449375,3.602133333333333,3.97636,3.6759,2.9509866666666666,2.830856666666667,3.8354666666666666,3.21608,2.670643333333333,2.6454866666666668,0.4563211111111111,2.2270525,2.093675,4.50691,4.809565,3.0245599999999997,2.589233333333333,3.0280733333333334,8.542095,3.5661137500000004,4.000455,2.58615,3.993715,3.069895,3.7375516666666666,2.6858233333333335,2.179735,2.57049,6.26395,4.778345,2.1559233333333334,3.286865,3.11385,2.6812400000000003,4.360279333333334,1.7934519999999998,6.1370233333333335,3.887315,4.78704,4.525535,6.42875,3.7124,6.81667,3.413945,3.252405,0.629965,2.21336,1.639755,2.737273333333333,3.4026137500000004,4.23786,3.91816,5.15385,2.58717,4.560415,3.5518666666666667,3.6561333333333335,3.25175,4.276335,4.613985,4.377285,2.7174,6.011010000000001,4.50179,1.4346283333333334,5.18785,3.560045,2.856505,2.289445,2.29705,4.316675333333333,1.2422799999999998,2.553506666666667,2.0378025,3.883285,4.34051,2.4733,3.2894,2.9679876666666667,2.369056666666667,3.671725,1.392276,2.4419733333333333,2.4247866666666664,2.86214,2.6308166666666666,2.6610033333333334,2.66122,3.88949,2.9456433333333334,2.8350866666666668,4.02325,2.561925,3.74844,3.67115,1.5069736363636363,1.5069736363636363,4.40522,2.65536,1.82616,1.3661525,1.9571575,2.0085675,1.2824680000000002,1.46925,0.653388,1.6141733333333335,1.5774833333333333,3.0982266666666667,2.2325066666666666,1.90248,2.00772,2.2517,1.61409,1.8649766666666665,1.9249833333333333,2.4897775,3.827425,2.901445,2.62377,2.617625,5.356425,2.7388,4.318055,4.034179166666667,2.12771,3.88781,2.86498,2.15335,3.664195,1.86791,2.94258,3.6654,1.7681775,4.434655,3.398625,4.21562,3.151146666666667,0.7946755555555556,4.766395,3.806185,3.197215,4.14737,2.2732433333333333,4.51053,4.72716,4.75037375,8.997648333333334,3.31907,4.43434,2.6828133333333333,3.484535,4.408025,2.30556,2.61545,3.74657,1.93383,5.77153,1.889996,2.77042,5.585641666666667,2.817206666666667,4.167762,1.2010385714285714,4.232975,4.29369,3.0188133333333336,4.52503,4.70942,5.8122050000000005,15.286483988095238,0.621835294117647,1.06634,2.792816666666667,3.80378,3.71073,2.148775,3.302385,4.05821,4.93014,2.38241,4.797185,1.6249633333333333,1.6249633333333333,5.17815,0.7633872727272727,1.666562,2.916885,4.02374,0.3931246153846154,1.94777,3.9858900833333335,1.1797333333333333,3.126803333333333,2.7661766666666665,2.96319,8.00017,2.585733333333333,3.778166666666667,2.05018,2.27351,3.6070925000000003,3.562905,3.379565,6.938173666666666,1.949415,2.838325,4.547325,6.6231775,1.86915,2.44015,2.5986066666666665,1.38227,2.4965,1.6170275,3.832435,3.942425,1.5266575,1.864344,1.864344,2.54666,5.40805,4.082528333333333,3.91503,4.38418,4.301215,3.26605,3.38163,4.42919,3.4892,4.7725550000000005,3.6083325,4.41965,0.8923909999999999,0.37585375,5.26135,3.915735,2.351933333333333,8.10662,1.5545533333333335,4.548066666666666,4.19143,0.3730541666666667,1.9545599999999999,1.37611,1.7817933333333331,1.9452166666666668,5.2748170000000005,3.30522,2.808685,4.98235,4.818865,4.662635,0.5790146153846154,1.948275,0.6159239999999999,5.571581666666667,1.396242,4.818935,1.91715,3.1141075000000003,3.272505,4.08904,4.166285,5.2031,0.8504245454545455,3.024045,3.96039,1.972955,1.6463825,3.700915,3.147475,3.7224,3.9941875000000002,5.317485714285715,4.734265,5.5571,2.7700133333333334,0.5279444444444444,3.2818666666666663,3.650625,0.5368576923076923,3.856095,3.84212,4.049985,3.1548,2.7520733333333336,4.555765,3.206355,3.09551,2.254675,3.70433,1.703046,3.108965,3.890405,0.6026438461538461,3.633605,3.78103,3.248945,3.911455,4.455485,2.8937,3.925185,0.636246,2.8686866666666666,3.6528188888888886,4.40612,3.3641666666666663,2.4149675,3.3793666666666664,2.4149675,4.586735,3.135705,2.89868,1.5023066666666667,2.92206,1.737725,4.16484,2.6779266666666666,4.980309999999999,3.02021,2.6093966666666666,2.8962299999999996,2.3945060714285713,2.3945060714285713,2.3945060714285713,2.1464633333333336,1.1270766666666667,4.53411,2.3703133333333333,1.7012933333333333,3.9898333333333333,2.006083333333333,3.0109966666666668,3.9464,5.5157,3.178165,1.941495,1.099616,4.04865,1.9991759999999998,2.131063333333333,2.72801,3.421025,2.12861,3.544475,3.02862,1.70197,4.729815,4.212695,3.17801,3.767995,0.7629733333333334,2.4771933333333336,4.316895,7.627375000000001,4.044185,3.16058,2.99802,3.461085,3.773195,1.6799125,2.442465,4.537425,2.058725,4.31874,3.29809,5.11685,8.270846666666667,3.9756,3.245775,3.289805,4.82572,4.2023,3.1560175,3.1560175,3.875905,3.79967,4.353745,3.873485,4.203265,4.539065,3.899655,1.077855,4.44318,4.11006,4.98682,8.143685,5.03425,3.6669246666666666,1.8935166666666667,1.4010216666666666,2.44421625,5.0673,3.719955,4.76668,2.196076666666667,4.223105,4.89544,5.09175,4.87612,3.0159300000000004,3.263295,3.85354,4.88375,4.435235,3.75423,6.5333966666666665,4.79483,2.325196666666667,5.0243,3.940105,3.931785,3.63264,4.62982,0.7901536363636363,3.9971,4.2015,1.1986085714285715,1.26312,4.79262,4.47082,8.495636999999999,5.2426,4.467205,6.0723,3.080775,2.4630933333333336,4.772625,1.879215,1.879215,2.67531,1.7172,3.127755,3.2425466666666662,1.9494475,3.9784068181818184,1.4888199999999998,2.03584,5.1924624999999995,3.95059,3.51093,3.152145,4.112485,4.222295,3.07018,0.9445399999999999,4.15395,3.1939266666666666,4.03749,4.30545,3.72501,5.3943,4.411175,4.59818,3.57904,5.22835,6.41645,4.70347,3.366295,3.194895,2.0431175,2.0431175,3.720735,4.009345,2.3715066666666664,2.8385866666666666,2.09689696969697,2.6464666666666665,1.75943,1.75943,4.146415,3.527525,2.128485,3.587715,2.69385,1.929755,1.3005325,0.8802933333333334,2.72304,0.4339063157894737,0.8139555555555555,3.014465,3.482655,0.44148545454545457,3.64682,1.836418,5.26745,3.42305,7.1249649999999995,4.29956,5.279956666666666,4.71256,5.1092,4.134145,1.88593,1.814486,3.97354,3.10194,3.706845,1.3602366666666665,3.09559,4.530305,2.769255,2.658905,2.463565,4.410195,3.36266,2.979455,4.067265,3.458325,3.261515,3.136625,0.9996914285714286,2.3275,2.482335,2.82468,4.37312,7.76972,0.9268980000000001,1.6274533333333334,1.6274533333333334,1.78472,3.899085,2.925625,3.103055,5.0142575,2.9571,1.05761,1.05761,1.05761,3.02148,2.8203760000000004,5.22325,3.120605,4.200265,3.343745,3.725845,3.07467,3.392138333333333,3.72485,3.9754625000000003,2.3759725,1.2824680000000002,3.234425,2.3759725,4.33848,1.4154633333333333,1.9265433333333333,1.7724525,5.157082666666667,2.78626,5.879456,5.157082666666667,3.093196,1.9825733333333333,1.9825733333333333,2.332175,5.21656,1.9825733333333333,2.338105,5.39615,2.231895,2.813155,5.0031,3.52585,4.16187,1.70562,3.38278,4.47299,2.045993333333333,2.32013,4.21006,1.70562,2.38966,2.098035,6.64005,2.65868,1.24756,2.947015,3.445815,3.7684838333333333,2.000205,2.3394905,4.02145,2.2307213333333333,1.75208,3.06407,2.339105,3.00642,3.98918,2.0407433333333334,2.776065,2.11767,5.68969,2.263305,3.516005,3.309375,3.309375,8.409569999999999,0.99925,2.963885,2.276875,3.34768,2.462965,1.4534766666666668,1.4534766666666668,3.46035,2.65216,6.727495,2.361865,3.368005,2.961195,5.73251,2.87651,2.14415,5.640924999999999,5.640924999999999,2.798955,1.68359,1.359905,1.359905,1.68359,1.9468233333333334,1.4308933333333334,1.1900716666666666,1.6450766666666665,2.278633333333333,3.71613,2.21839,3.66364,2.98884,2.711405,2.9569,3.02886,2.6275,3.2029316666666663,3.2029316666666663,6.15171,2.34711,2.8986,3.39606,3.595845,2.925655,2.88804,2.97662,5.6793625,1.8995825,1.6882483333333331,1.177405,2.2003733333333333,5.67382,3.9743199999999996,3.30904,3.65148,1.9898925,1.9898925,1.9898925,4.6083,2.53235,1.1900716666666666,2.885335,3.53174,1.3153075,5.1841375,3.147785,6.37304,4.28644,1.899395,3.48879,2.38402,2.097465,3.226925,4.78762,4.76464,1.78723,2.713955,2.977555,3.065505,5.52321,1.94791,3.56755,2.716955,6.20905,4.99946,2.048255,2.756855,5.69947,5.41569,5.53991,6.54098,1.125026,1.125026,4.025227,4.025227,0.835072,5.31915,3.7549,4.95738,4.29276,4.90389,2.52749,5.0066500000000005,5.0066500000000005,2.378555,3.38397,3.7207,1.200694,4.54585,3.45032,3.238135,2.962585,5.69535,2.816535,1.905025,3.091725,3.16718,2.957065,4.70071,2.70965,1.600525,3.803625,5.51296,5.66525,4.44602,3.12703,3.1836,2.789125,5.49124,3.01598,3.56484,2.41831,7.55926,4.45186,2.66081,2.69818,2.604055,4.75984,2.80777,2.81937,2.46341,7.33281,5.28958,3.739875,2.457715,2.596355,6.73415,2.88063,2.877095,5.29251,3.11193,3.101435,2.64754,3.33138,2.051946666666667,2.14403,1.9090299999999998,1.8146366666666667,1.7506466666666667,2.07872,1.680115,1.98311,1.827295,2.051946666666667,4.24189,4.40018,2.35165,1.6606275,1.6606275,3.92945,3.92945,3.097296666666667,3.097296666666667,3.030445,2.168205,1.99505,4.10836,2.3958899999999996,2.3958899999999996,2.3253874999999997,2.3253874999999997,4.30621,2.46656,4.76474,2.472545,3.438915,1.8490466666666665,1.8490466666666665,1.42106,4.34564,5.09586,1.4154633333333333,3.96306,2.0407433333333334,2.606345,4.80319,3.151215,2.02398,2.48474,6.42489,2.41129,6.85291,3.544435,2.93081,3.047455,3.176095,7.00291,3.45743,2.106415,2.502991923076923,3.19553,5.24844,3.53898,1.45794,1.45794,4.02135,5.53598,5.76225,5.54145,2.88092,3.035135,1.95943,3.112305,1.702195,3.010975,1.822605,0.8371280000000001,0.8371280000000001,0.8371280000000001,2.044620833333333,5.858053333333333,2.044620833333333,2.415755,3.7451,1.826375,2.090785,4.09449,3.27832,5.90726,1.7606233333333332,5.5299,1.7606233333333332,1.7606233333333332,2.192035,2.034445,2.24636,6.8706,2.24636,2.54905,3.40298,2.4817,1.676125,2.781095,2.9885066666666664,3.1384825000000003,3.230703333333333,3.611775,1.264755,4.068135,0.6886081818181818,4.05102,4.3805325,2.989695,2.989695,0.6208072727272728,3.9459,2.7566466666666667,5.57065,4.86208,4.085405,5.30095,3.772775,4.01817,5.0981,4.067795,4.28809,3.52684,3.95077,4.637285,5.0617,3.36028,3.333875,4.096335,2.32326,1.25265,4.409715,3.38801,2.927545,1.1383385714285714,3.881705,3.95091,6.458915,1.196815,5.22435,3.943015,2.012,2.093715,3.24497,3.545415,1.79996,1.45794,3.892265,4.839855,2.642945,4.742765,3.132495,1.13354,2.86444,1.1754885714285714,3.0775133333333335,1.8234166666666667,2.954413333333333,1.900485,2.5749033333333333,3.87436,2.924685,4.56906,3.363185,2.1985125,4.77699,4.35757,3.105535,5.4751,4.208475,2.8308999999999997,5.8968,4.503935,3.1356383333333335,2.66574,2.47329,2.9568433333333335,3.0182300000000004,2.64636,4.849525,4.382465,3.69639,2.53838,2.7380066666666667,2.4306266666666665,2.4242666666666666,2.3024366666666665,2.48088,2.26737,2.1640475,1.3324725,2.896342333333333,1.1810575,1.725095,1.61836,2.647975,1.6200925,1.826855,3.79454,4.032755,2.013105,4.032725,3.468755,6.245881666666667,2.0180866666666666,1.563998,6.7806,3.2934,4.55353,4.55536,4.085285,2.03259,3.761875,2.420995,3.122305,4.132975,0.7493016666666666,4.015025,2.078183333333333,0.7502800000000001,4.88368,4.46298,3.945365,1.797209642857143,4.729255,5.63795,2.641576666666667,2.7839899999999997,2.5086999999999997,2.089303333333333,0.598492,3.080686666666667,3.0002,4.82842,2.4357875,2.02195,3.30984,1.1674925,1.8387566666666668,1.8387566666666668,2.885705,1.8387566666666668,4.01629,3.00415,4.206985,4.442175,5.77045,13.169215833333334,2.9967133333333336,4.448235,2.66848,4.71815,3.241355,6.4365975,2.7325233333333334,4.797735,4.74383,3.914585,1.127575,4.608505,2.9606933333333334,2.4187,0.9188477777777777,2.1806275,3.474085,6.83545,4.05929,2.7807033333333333,4.58004,3.1826066666666666,4.060655,4.36828,4.60058,3.03974,2.909456666666667,3.980035,5.4147,2.62288,4.070175,1.7384,1.7384,3.09496,4.74219,1.00985125,3.906238666666667,2.0473825,4.670305,2.5852333333333335,2.4879166666666666,3.1509966666666664,2.2830966666666668,0.69965,3.370505,2.8778233333333336,5.3083,4.5229,0.230940625,4.778185,4.422985,3.863455,6.624835000000001,2.804883333333333,2.9170266666666667,2.1385666666666667,2.882593333333333,2.5692633333333332,1.3461999999999998,2.7929866666666663,2.55864,1.3385666666666667,3.2230133333333337,2.9407933333333336,2.4634033333333334,2.5006533333333336,1.282781111111111,4.09197,2.42723,4.908635,4.015585,3.862505,1.6939166666666667,2.45912,1.2240075,1.901555,1.2240075,4.71906,3.3561333333333336,1.57145,2.2416925,4.0861,3.96628,2.97644,3.76966,0.353901,1.3627754166666666,3.814355,4.43058,6.39735,1.898105,2.6967766666666666,3.0678133333333335,2.2187533333333334,3.087835,3.3332,4.42934,2.46036,2.0746466666666667,2.780836666666667,2.582523333333333,2.6716366666666667,4.395215,2.267635,4.37525,3.653383333333333,6.0533,7.731305000000001,0.7720755555555556,0.8230850000000001,3.923625,6.462892500000001,2.0569800000000003,3.490385,1.9078916666666665,1.9078916666666665,3.5656,0.44596777777777774,3.50189,3.319535,2.809965,3.641355,3.38311,2.533985,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,0.23861,2.405485,2.832135,3.62945,2.942125,4.3813325,5.72887875,2.872945,1.9085033333333332,0.925135,3.36335,0.70466375,4.629498333333333,2.7209950000000003,2.2057,0.70466375,2.525525,2.53554,0.9485425,3.5385887499999997,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,0.15123466666666666,4.249185,1.6084225,4.30127,4.313375,1.787548,4.52215,4.028315,5.30225,4.422019166666667,3.4195792857142857,3.406715,4.3725,1.9597025,5.264885,4.181785,0.7300000000000001,1.3876928571428573,1.3256514285714285,3.142163333333333,3.142163333333333,2.8939733333333333,3.75185,4.13336,3.604275,3.851565,2.87162,2.024036666666667,0.5068971428571428,4.107675,3.16013,2.71642,4.296885,3.39953,3.059355,5.04045,4.38437,6.4276375,4.08639,4.598135,5.6486,4.21929,1.2026757142857143,3.18417,5.161186666666667,32.62276661760462,1.1861033333333333,4.074905,2.97662,4.54214,4.07621,4.980005,5.1664,0.4206814285714286,5.26905,4.439725,1.99979,2.40023,3.52198,1.5640675,2.41667,2.289615,1.75907,2.910715,2.45677,2.909205,2.63974,0.6037507692307693,3.12121,3.880655,0.3540605263157895,2.4291066666666667,2.70543,2.993805,3.876715,1.94333,4.306705,4.114385,3.370995,3.37328,3.09571,4.08084,2.92181,3.82155,2.148915,5.161186666666667,3.65228,3.194225,2.82356,1.5816240000000001,3.720195,3.589335,6.9364333333333335,3.3797,4.68017,5.778689999999999,5.2976600000000005,2.2806075,4.39885,5.58307,7.397642,2.48931,2.5836,4.699165,5.817613333333334,4.244485,3.623735,5.32751,2.747,1.5930025,2.2249175,59.73911385418202,4.81147,3.891,2.539925,0.8534940000000001,2.2952966666666668,2.820156666666667,3.2492933333333336,0.7606111111111111,4.39234,0.8024922222222223,7.642474285714286,1.9991759999999998,3.312673333333333,1.7832439999999998,2.676885,2.6088466666666665,3.1491733333333336,2.5066633333333335,2.39082,3.2918766666666666,1.5971066666666667,5.424918333333333,3.751333333333333,1.673585,2.680733333333333,1.3912333333333333,1.4714625,7.50134,5.8871,3.353085,3.78664,5.471432500000001,1.439857142857143,3.3877,3.339625,1.680695,5.3689,3.746555,3.913965,1.5507525,2.8512575,3.4655,4.177035,5.5634,4.394035,4.403175,2.2938825,3.935365,4.470066666666667,3.0039933333333333,1.406654,4.104845,3.2006766666666664,4.132575,4.94919,3.947055,3.5355,4.36142,4.315125,4.318955,4.38369,3.77683,3.1097466666666667,3.7634,4.058235,3.20505,4.17152,3.74583,1.489455,1.489455,4.197415,4.834245,4.97334,3.753685,4.779525,3.377166666666667,2.85683,4.939275,5.18375,0.7373754545454545,5.49035,6.5057775,5.51205,5.6151,1.0581944444444444,3.09052,1.0836816666666667,1.0836816666666667,1.0836816666666667,3.69164,3.29823,2.47228,3.5095666666666667,0.9948029999999999,4.924815,5.64895,2.92033,1.501055,1.92952,3.98001,3.68873,3.8731,3.236224,6.64735,3.712875,2.58762,4.32994,6.76105,2.18514,4.34456,3.865595,3.28692,5.34525,4.088855,4.890915,5.6421,3.129765,3.393513333333333,1.92614,1.92614,0.7175118181818182,8.287474,2.29153,5.7083,5.4313,4.12314,5.4279,3.95039,3.02306,4.50598,7.29437875,5.575558333333333,1.9251933333333333,4.369025,0.9249430000000001,3.873405,1.99913,0.8684888888888889,1.1382999999999999,2.4498666666666664,2.9842766666666667,2.8556266666666663,1.032382857142857,2.5737,2.9959866666666666,0.84206,2.61221,3.08742,1.719128,1.7849119999999998,2.85281,2.85118,2.699733333333333,2.5165533333333334,1.6664100000000002,5.1993,3.900055,3.64641,4.136395,4.931985,3.40701,4.30681,6.59255,4.93876,4.22213,3.919055,10.317908333333333,8.20304,2.8847566666666666,3.74258,1.6372733333333331,4.037235,3.177365,4.49387,0.9981966666666667,3.9564,3.62344,1.5831916666666668,4.073875,3.072103333333333,4.20822,2.7617,3.906785,6.69255,7.650043333333333,3.726165,1.4903700000000002,1.4903700000000002,1.4903700000000002,4.62353,1.2169016666666665,1.4404625,0.45089388888888887,4.213238333333333,2.9500166666666665,3.36764,0.966706,1.1363925,3.182035,4.387495,3.691555,16.244592345238097,4.2309725,4.580155,5.545105,2.65125,3.300135,3.150075,0.9017377777777779,1.18471,3.5152,3.607015,4.123245,4.41676,4.327955,3.670965,2.8117164444444445,3.3061,5.19455,0.5488649999999999,4.445025,2.2957825,3.90064,4.24892,3.4115,2.2011600000000002,4.004605,1.8094033333333333,3.53469,5.88775,3.0016533333333335,3.238185,4.18846,3.965345,4.361665,3.828295,3.43983,4.013515,4.587405,4.92353,3.66449,4.338775,3.781025,1.075567142857143,1.45056,5.719152,6.1232,4.0186,4.998935,2.4577625,2.7659333333333334,2.7558233333333333,5.706110000000001,1.8748675,1.98913,2.8537166666666667,2.955686666666667,3.332926666666667,4.51547,3.338615,5.181753333333333,1.2154675,4.71296,0.9675383333333333,4.11045,3.44006,1.7636083333333332,4.46679,0.9439033333333333,4.86871,5.4553,4.79002,3.804415,3.798285833333334,3.970965,3.051246666666667,4.912895,6.0085,2.7390385,4.199175,2.511865,2.65174,2.059245,2.499365,3.18152,4.90242,1.0584525,4.4413350000000005,1.32809,3.397495,1.6554200000000001,1.0584525,0.19494891891891894,3.47601,3.278045,2.2236525,1.9791666666666667,2.65386,1.1198975,3.95405,3.72026,4.714135,2.5691133333333336,6.1775,6.482167499999999,2.76364,3.2379766666666665,2.672363333333333,0.7756109999999999,2.3948633333333333,6.0684,3.947805,5.6229,4.61721,2.0499033333333334,1.2669300000000001,3.8742525,1.609905,2.172005,1.70924,2.2186075,1.672735,1.89704,2.1156975,1.975205,1.85113,1.3580942857142857,1.3937875,2.09201,1.8316825,2.1400925,2.26681,0.5377379999999999,1.108892,2.6547733333333334,3.16687,2.005705,1.8253000000000001,1.73287,3.23276,2.3400466666666664,2.935865,3.06049,5.6723,3.70144,3.0187066666666666,4.130905,1.5200436764705882,3.571535,23.2018705,4.728986666666667,5.66295,4.226485,2.2816233333333336,3.716745,4.84662,2.248245,5.2084,3.301716666666667,0.77865375,3.0373,4.43828,3.70827,4.084255,1.4758333333333333,2.021123333333333,2.4896566666666664,2.44726,1.4345142857142859,3.3692666666666664,5.0675,4.29146,3.39221,3.938295,4.77085,3.298785,4.39897,1.2035275,2.73866,4.149535,4.662145,1.8216439999999998,3.1265733333333334,1.80947375,1.80947375,3.592465,4.6289,2.958043333333333,2.838533333333333,3.896655,3.90084,6.539887500000001,4.80657,2.363605,1.18471,2.92338,4.41545,3.1184,2.6260166666666667,2.6260166666666667,3.3000399999999996,4.942895,3.462905,5.20547,2.356625,3.5341880000000003,0.64194,0.64194,0.64194,3.466335,3.913755,3.967293333333333,5.46245,2.0477225,4.72424,4.59525,5.0716,3.20142,5.522,2.715515,1.3198899999999998,4.366535,3.985185,0.4661085714285714,4.222566666666666,4.62675,1.4800266666666666,4.932735,4.90241,4.409015,4.17936,3.66653,3.06613,4.497995,1.745828,4.62646,1.5360266666666667,4.109945,5.84295,1.12405875,3.164765,7.10239,3.687295,3.3630666666666666,2.1551025,3.79922,5.63395,2.9847566666666663,7.327195,4.050795,2.1635066666666667,3.01742,2.736596666666667,2.3481866666666664,2.725626666666667,1.8433966666666668,4.71141,0.60986,2.0688075,2.0688075,3.10034,3.71105,2.26739,3.06201,4.2025,5.3135,4.174215,1.4511033333333332,4.714583244047619,4.290275,4.699075,3.497845,3.8448786666666668,3.4547160000000003,0.39016266666666666,2.8760342857142858,1.0528925,0.39016266666666666,4.265765,0.8640933333333334,3.925045,4.01167,6.556293,2.2025,1.1000525,1.1386939999999999,2.35842,3.003496666666667,1.64916,2.58656,3.4323,3.70867,2.21145,2.4380366666666666,4.206875,2.92134625,4.038295,5.70435,3.510895,5.145,6.742491666666666,4.520425,3.794465,4.458825,3.743515,3.97599,4.94814,5.5301075,5.1673,2.43128,0.9004744444444444,3.44356,3.82951,4.32507,4.25367,4.170555,5.07775,2.5415366666666666,2.4166466666666664,2.8461133333333333,2.2843133333333334,2.139136666666667,2.87027,3.0342266666666666,2.2598433333333334,3.621065,4.193435,4.16408,5.2054,2.49394,3.5556666666666668,2.905675,0.7181214285714285,3.929595,3.20191,4.49337,2.72484,5.227186666666666,3.3402,4.67511,3.857225,0.5179776923076923,0.5530464285714286,4.250065,2.762712,3.022185,4.249795,3.862435,1.70852,5.1659,4.01204,2.48104,2.60972,2.181525,2.0342275,3.5019666666666667,2.97463,3.033666666666667,2.9703633333333332,3.5103666666666666,2.636225,3.033723333333333,3.6015,4.3337,0.58069875,0.58069875,0.58069875,3.1292208611111114,3.512966666666667,3.6207666666666665,2.54776,2.803876666666667,1.077855,2.7761433333333336,2.9433633333333336,1.67889,2.821426666666667,2.341806666666667,0.9612488888888888,2.8582583333333336,4.72861,9.773841916666667,1.3704064166666665,0.6328229999999999,3.849865,0.6328229999999999,0.6328229999999999,0.6328229999999999,0.6328229999999999,2.15876,3.9135269999999998,3.76499,4.75166,5.81245,2.7583699999999998,2.705303333333333,2.89332125,3.197725,4.76385,1.0568,2.23372,3.0313700000000003,2.612553333333333,2.9978200000000004,3.369915,2.12886,2.51018,1.1502444444444444,4.853005,2.631345,3.376935,0.8549225,0.567095,0.567095,0.9295217826086957,1.7844442826086957,0.9295217826086957,0.9295217826086957,0.3493547826086956,0.3493547826086956,0.9295217826086957,1.4560199999999999,2.45676,2.851335,2.9677366666666667,2.667896666666667,2.7295533333333335,3.2276066666666665,2.82103,4.682665,3.595275,2.004845,2.301136666666667,1.7267775,0.1915704620765832,0.1915704620765832,0.1915704620765832,0.1915704620765832,2.5210399999999997,2.468863333333333,0.893092,5.0255,0.7549236363636364,1.6579039999999998,4.604359166666667,5.2043,4.20744,3.07103,4.410945,3.02958,1.82555,1.3563925,4.061135,4.612225,6.59135,2.473575,1.4842766666666665,1.9560000000000002,2.9191033333333336,1.5100300000000002,2.73112,2.8389666666666664,3.0892966666666664,4.20547,3.447445,3.0199,4.996015,2.283873333333333,4.10702,5.5818,3.690295,4.21741,4.5408,5.208783333333333,4.720940833333334,2.9138374285714286,4.958601666666667,4.076195,6.5284,4.44433,4.54893,2.20805,3.111895,4.27174,4.73768,4.507655,3.954195,3.834475,3.7205,3.904185,2.4773066666666668,5.17675,3.55024,7.5625975,5.9747,5.79245,4.79022,1.4272885714285715,0.9000540000000001,0.5941138461538462,1.788388,4.75736,5.57995,4.005065,1.542788,4.035345,3.214685,5.00735,5.2985,6.185294000000001,4.121675,3.04172,1.620196,5.593885,4.08092,3.07382,1.792835,0.9946425,3.86924,3.2502,3.78314,3.7873,2.26503,4.394885,1.7902833333333332,2.97563,2.535695,4.520655,5.46095,4.648655,2.1878675,1.840215,5.63055,2.9235666666666664,8.66182,2.8481,5.1043,5.80875,4.415515,5.2292,3.57238,4.984665,2.1025275,3.891175,4.595925,2.42608,4.24986,4.34102,7.18624,4.993285,2.96508,3.990595,3.93556,2.92134625,3.59073,5.3068,5.60145,2.3434675,2.8799799999999998,3.0718300000000003,2.43971,2.62174,4.372775,5.77775,5.0501,4.571835,4.76652,3.99267,4.65454,0.6457446153846154,3.0056666666666665,1.1572657142857143,30.70382568870773,2.76816,4.486515,3.047375,4.73523,1.601632,2.5117533333333335,3.1767005952380956,1.5692580952380952,1.5692580952380952,1.5692580952380952,1.5692580952380952,1.6074425,3.734835,0.35645666666666664,7.7300933333333335,0.35645666666666664,4.302035,4.928555,1.9768525,5.0698,2.848525,3.941117333333333,2.4966666666666666,2.4208266666666667,2.7878666666666665,2.2826666666666666,0.6122507692307692,2.6003133333333333,0.7140858333333333,3.2302066666666662,2.144973333333333,2.649938,1.2105583333333334,2.649938,6.12685,8.117095,4.34448,4.24591,5.77405,6.12575,7.365705,3.039925,1.4478875,1.4478875,2.4144533333333333,4.78163,3.692095,4.374405,5.795748333333333,3.90775,2.662045,3.800855,3.53403,3.52896,2.358045,0.697484,1.803805,3.59985,4.05573,5.183325555555555,1.9543475,3.788455,1.235642,3.22153,1.160756,3.2281766666666667,2.9261166666666667,2.7656533333333333,3.350633333333333,2.769823333333333,5.00645,0.6093430769230769,3.57953,3.5218333333333334,2.497526666666667,2.3025866666666666,4.13401125,3.3511666666666664,2.0895066666666664,4.4365524999999995,3.583675,5.1706,3.96817,3.79212,5.5521,4.9991,2.1503799999999997,5.65155,2.4199076666666666,1.77301,3.10692,2.3604166666666666,2.672356666666667,2.558415,1.8183333333333334,3.193430833333333,4.292945,3.27025,2.3523636666666667,2.3523636666666667,2.681165,3.82719,4.260225,0.5954809090909091,3.484935,3.13714,9.10619,0.8500127272727273,4.393935,3.394005,5.46405,3.654965,3.805965,2.394005,3.838715,3.00231,5.4517,2.5306141666666666,1.0320925,3.92853,2.660346666666667,3.87238,2.61154,3.70111,3.89552,3.797545,4.9507080000000006,3.51938,1.98438,5.1391,2.593366666666667,4.49183,4.86975,4.433645,4.54334,3.978735,2.96474,2.14683,2.6700633333333332,2.4816033333333336,2.6688500000000004,3.1087399999999996,2.6668080952380953,4.726238333333334,2.752876666666667,2.3459,6.248164999999999,4.916867916666667,3.7919825,3.0610933333333334,3.6567333333333334,4.21472,3.618935,1.8884225,3.7999824999999996,4.964595,4.94904,1.3121716666666667,4.102085,2.781166666666667,6.902955,4.820515,8.273966666666666,4.00909,4.504215,2.1883,4.282425,5.7225275,8.19008,4.60906,5.82626,3.622765,3.081805,4.18136,1.7934519999999998,4.374609,1.45793,3.56241,4.676505,3.3462,0.8217458333333334,8.576765666666667,1.1271555555555555,1.8697575,2.57782,1.8779733333333333,3.3437,1.387995,3.80213,3.74277,2.2782266666666664,4.331745,1.1496416666666667,3.86435,1.3837666666666666,2.994927666666667,4.131915,4.85495,1.701605,5.768331666666667,2.4187526666666668,8.05404,4.48229,2.494475,4.08969,3.44918,1.2115991666666668,7.83735,2.9614,3.350965,2.457585,4.18307,2.1050875,3.1515225,2.089665,4.21675,1.2797375,5.926,2.64743,4.43278,0.8135160000000001,2.013059666666667,3.90945,4.865105,5.221985,1.401422,1.401422,5.80105,3.9413,5.96415,3.90505,3.529855,8.94443,4.406005,5.41125,4.104035,2.459815,2.348824943932412,0.3901085,0.19664096774193549,0.6886276344086022,1.2700888095238096,0.7565581105990784,0.19664096774193549,1.4994735,0.4919866666666667,1.6601973095238096,2.188101134408602,1.85154,2.2113775,2.2296366666666665,4.98153,6.347675,4.546655,4.71563,4.30647,5.0443,1.2885933333333333,4.84818,3.990085,5.6449,5.06025,4.96702,5.688,5.62375,5.57355,1.176355,1.243472857142857,1.7908519999999999,5.964301000000001,1.3124259999999999,5.2076,4.60999,6.414707083333333,4.898055,5.38065,4.3917,4.614105,2.4539075,5.16245,5.25065,6.209585000000001,4.726545,6.1519525,5.70195,3.75371375,4.33625,3.595266666666667,1.00006,3.5168666666666666,4.416025,1.0771025,3.6448666666666667,4.659205,4.4278200000000005,5.0187,2.490835,3.34116,2.7873699999999997,4.383085,2.137645,3.467605,1.27132,3.326225,3.829685,3.9889,5.4478,3.30042,0.5402691666666667,5.96415,0.983875,3.540795,2.7457933333333333,3.80413,2.13856,3.731495,3.7402482051282053,3.1751,4.456645,15.284242238095239,4.874196666666666,2.1348125,8.54344,1.5877875,3.84029,2.9777666666666662,3.003963333333333,2.1005066666666665,0.2548078260869565,2.7835733333333335,4.38291,1.749022,2.2061466666666667,3.2314433333333334,1.907915,2.2763566666666666,1.5089857142857144,3.219665,4.660825,5.0756,3.122545,0.4851885714285714,2.3817233333333334,4.733665,2.7487,4.013065,4.307705,3.99534,5.48005,0.4745941176470588,2.504236666666667,2.504236666666667,5.2924,4.72302,4.873415,2.52335,3.2673400000000004,2.8316166666666667,5.2673,3.551555,5.531495,4.54067,4.274605,4.5802,2.491245,1.901972,4.37576,3.957085,3.66419,3.206395,1.79461,4.842495,4.40375,3.835925,4.586905,3.7887,3.87678,0.6072000000000001,2.98627,0.5595508333333333,3.15691,3.298525,3.988985,17.231103333333333,3.426695,3.799495,2.38402,0.93638375,2.15333,2.6017333333333332,1.5329000000000002,2.399505,2.578845,4.56372,2.3684333333333334,3.935475,4.150965,2.126375,3.52923,2.80701,4.39695,5.2012,5.36,1.55044,1.8676,2.408695,4.496725,4.82883,1.1035644444444443,5.09055,3.53502,5.51925,4.42949,1.71216,4.626275,3.306635,3.38029,3.3936,3.886145,3.15347,0.5510075,7.52842,1.351612,0.20345611111111112,0.20345611111111112,0.20345611111111112,4.786085,3.838315,2.8303133333333332,4.105795,2.831285,4.38729,4.453967857142858,3.8008100000000002,8.208435000000001,4.206485,6.8140583333333336,0.7666275,0.7745625,2.577575,4.423775,4.20956,2.2244366666666666,5.2844,5.348,3.533855,3.621745,4.2723,2.18768,4.99358,4.4719585,2.28675,3.0871833333333334,3.10413,2.775895,6.0041,3.80033,0.6207885714285714,3.699065,3.23033,4.11523,4.8763966666666665,5.05565,2.778555,5.2917,3.68831,13.646894166666666,4.472355,6.954155083333333,2.5349733333333333,6.4754819999999995,3.952315,3.789725,1.9843125,2.3248879166666665,9.63272,2.2674833333333333,4.174533333333334,4.093233333333333,3.7733666666666665,3.31732,2.79224,2.079825,2.241315,3.04625,1.7851299999999999,3.7328666666666668,2.3861966666666667,2.6892300000000002,3.228676666666667,3.404733333333333,2.45376,2.45376,2.4944466666666667,3.3157033333333334,3.2416199999999997,2.14295,3.1261566666666667,4.214266666666666,2.7941366666666667,2.7222933333333335,3.6917000000000004,2.07618,1.8310525,3.7807666666666666,2.7548033333333333,1.519158,3.6810333333333336,2.13379,2.3970266666666666,2.8163,2.215441666666667,3.402066666666667,5.701636666666667,2.380386666666667,3.748333333333333,1.95143,10.285831333333332,1.8612033333333333,1.9951266666666667,2.08308,0.9654233333333333,1.6372879999999999,4.27009,2.697756,2.697756,1.4856159999999998,1.5466083333333334,3.5484600000000004,3.7787699999999997,2.1662399999999997,1.4735283333333333,1.720504,4.583858666666667,3.7003333333333335,4.017933333333334,8.110973333333334,3.0171600000000005,2.490413333333333,3.3665147826086956,4.206933333333333,1.8310525,3.1130099999999996,2.5291166666666665,3.4090666666666665,3.409375,0.821565,3.313416,2.7645199999999996,2.8791333333333333,3.992345,3.0613733333333335,0.6295118181818181,1.8727764285714286,5.09755,2.4776555,3.2746366666666664,1.3971516666666668,1.3971516666666668,2.1280525,3.6412716666666665,0.9465350000000001,2.2416575,4.3493933333333334,4.3493933333333334,0.6362761904761906,5.433282,3.314675,4.0017,4.681825,1.2275057142857142,3.290563333333333,3.519833333333333,4.9615841666666665,5.773682,2.4761266666666666,0.575563,2.579143333333333,2.5939900000000002,2.9902933333333332,2.2558000000000002,2.3380966666666665,2.8239,2.3727275,2.47301,0.7600618181818182,5.1144,4.779276571428571,1.3782383333333332,1.7156285714285713,5.45295,2.22743,1.68004,4.146655,1.327768,3.805895,2.576025,3.5056,8.673814166666666,3.8604958333333332,4.060955,4.96255,2.3203201818181816,0.7668090000000001,1.81403,6.99733,1.88608,4.076995,4.079285,3.554365,21.125228416666666,3.2590133333333333,1.4084366666666668,1.00628625,3.0840333333333336,1.4683366666666666,4.167762,5.16515,3.4376035,3.4493333333333336,1.6168666666666667,1.4362416666666666,2.9376700000000002,0.58679375,3.4203333333333332,3.694266666666667,3.1430433333333334,2.5483096666666665,2.4582333333333333,2.8850933333333333,1.92992,2.750766666666667,1.539116,3.656,1.37702,3.95109,3.984575,2.42701,5.24605,3.2288,3.80165,4.8753,4.342555,2.9364933333333334,2.7581900000000004,2.3407633333333333,1.0306671428571428,1.0306671428571428,1.0306671428571428,2.2995875,3.4034999999999997,2.6152366666666667,2.5403933333333333,2.31391,1.8803,3.8502,4.83036,3.75177,6.7026,3.17868,2.1651225,1.924505,0.9149966666666667,2.53337,3.796745,2.521106666666667,2.6896166666666663,2.2309733333333335,2.3958833333333334,2.7150166666666666,2.74039,2.733776666666667,2.6478266666666666,2.3582433333333332,3.3340333333333336,2.0467033333333333,2.228375,1.71981,1.7146375,3.066656666666667,2.907133333333333,2.0325525,4.162785,4.90522,2.807423333333333,2.2838596153846153,5.2801,3.884155,4.50499,5.48175,4.216635,4.350625,6.09081,1.20871,4.248585,2.706115,5.1478,5.1423,3.57741,3.420475,2.10004,7.696795,2.868005,0.7820524999999999,7.50595,5.04073,5.706188333333333,4.154045,2.759126,1.627985,4.890225,3.87612,4.254685,4.791395,2.45187,3.91392,4.191975,1.7267775,3.79374,2.907025,1.3536733333333333,4.791735,0.585074705882353,4.128073333333334,3.54038,4.616865,3.01871,1.704745,3.23952,2.08126,1.4233,2.6496233333333334,3.2909900000000003,3.0880166666666664,7.102362435897436,1.52974,6.38196875,9.45853,5.949655,2.909125,1.3634414285714287,2.9385399999999997,1.3634414285714287,2.890943333333333,2.30571,0.3337835294117647,1.1927397794117647,0.3337835294117647,0.3337835294117647,0.3337835294117647,1.1927397794117647,1.1927397794117647,0.3337835294117647,0.85895625,4.379315,3.534385,3.266855,3.57136,3.235535,4.33585,2.736175333333333,1.691986,6.687591666666667,2.9991966666666667,4.185495,2.5762300000000002,1.0641,1.1462925,4.547495,3.525265,1.1361999999999999,1.401688,0.7205645454545455,2.871868177489177,4.137805,5.0571,3.3544,5.3267058333333335,0.5233484615384616,3.980705,2.78764,2.7662333333333335,2.442016666666667,3.415566666666667,2.6462233333333334,2.86195,2.64805,3.02086,3.65095,4.397205,4.56102,2.05384,5.1507,4.19057,2.97277,3.83257,3.528165,0.35844666666666664,4.82099,3.60571,3.07822,2.782856,4.244995,3.990925,2.013995,3.348915,3.915825,8.444875,4.85722,5.2393,4.698905,3.8095725,0.7915725,2.17007,2.047885,1.63743,1.88511,4.12763,5.4702,4.181225,4.66904,3.236224,2.602033333333333,0.9237183333333333,4.10798,1.288885,1.1429033333333334,3.32206,3.69141,4.63126,1.2588375,2.379776666666667,8.533726666666666,3.2438800000000003,2.9919275,0.9183075,3.647705,11.974763333333334,3.458835,4.28517,3.06677,2.963115,4.562365,5.1039,2.08474,4.182725,0.5268323076923077,4.837525,2.2257375,1.615715,1.615715,3.6384666666666665,4.051755,1.477335,3.89554,1.2746485714285714,3.60282,2.4989208333333335,3.3716666666666666,4.9609,3.704275,4.024217,2.632725,2.8618395,2.8618395,10.64311,0.677813,2.933845,2.9956866666666664,2.137495,2.031975,0.88112,1.48438,1.0699057142857142,2.073405,4.46703,2.411425,4.15904,2.08189,3.66916,3.898335,1.6826999999999999,2.019285,1.0581733333333332,5.971860916666667,1.9792125,2.15554,1.66738,1.744282,1.00628625,2.2938079166666667,3.6892,2.0608,3.113823333333333,2.5583966666666664,2.6673666666666667,1.7694166666666666,3.06521,2.4175066666666667,1.3323633333333333,1.7487633333333334,2.6533966666666666,2.464836666666667,2.4899533333333332,1.2121866666666665,2.58154,2.04722,2.2073266666666664,0.3114110526315789,0.4225258333333333,2.3358633333333336,2.2570200000000002,3.35968,3.120733333333333,2.789315,4.68293,5.65845,4.458375,4.648675,4.28426,4.04168,2.85958,3.821845,0.7211809090909092,0.06621931818181818,6.8874,0.06621931818181818,3.24027,3.060085,5.20435,3.65518,6.2678,4.63069,2.0547066666666667,2.4737466666666665,0.9448500000000001,5.072,6.3632,3.332246666666667,5.3525,1.695055,3.548045,2.0222647826086955,2.923583333333333,3.2301266666666666,4.190015,4.863858333333333,3.384625,1.9635966666666667,1.9635966666666667,4.120175,7.81452,3.69622,2.201956666666667,2.3646133333333332,4.04379,2.944445,4.91765,3.457955,0.9384077777777777,4.133725,2.3004000000000002,2.6504166666666666,4.37745,1.1068616666666666,2.443286666666667,3.901925,3.54287,4.59702,3.01292,2.88033,3.82638,3.975945,4.293955,4.69618,4.311275,3.1895341666666663,3.83642,2.803646666666667,2.4836233333333335,2.4223766666666666,3.8806666666666665,4.27113,2.90734,4.814719166666666,4.04989,3.59609,5.3032,4.51096,3.404075,1.45402,1.36325,4.19,3.285163333333333,1.6827733333333335,2.864036666666667,3.488295,2.94233,3.8712944444444446,2.7519233333333335,2.2247075,12.595141194444444,2.0397666666666665,1.7748819999999998,4.45171,1.046588,3.1084599999999996,3.4699,4.778935,2.94375,1.2048222222222222,2.208833333333333,2.5691133333333336,1.382652,4.3827,0.942115,0.942115,4.23139,2.0073933333333334,2.223996666666667,1.7914025,3.24503,4.9397,1.688935,3.015565,3.386425,2.7886866666666665,2.80496,2.10318,6.3106,5.51795,3.517015,0.6854823076923077,3.20085,3.54289,0.9994727272727272,5.4562,3.3052466666666667,8.394096666666666,4.868835,4.515035,3.602275,1.57133,3.19567,4.683415,4.449165,3.85664,3.38933,4.21717,3.02089,3.553933333333333,3.553933333333333,4.18522,2.66308,3.98457,1.899145,5.5702645833333335,4.9674966666666664,1.4800266666666666,4.513425,0.984434,5.74365,3.92631,4.99849,4.555185,3.86304,2.573205,2.4841525,3.93532,4.36099,5.00435,3.9042,1.79703,1.4078499999999998,4.31061,2.080906666666667,5.34935,3.404885,3.757615,6.8338600000000005,3.739675,4.30241,5.07545,3.543365,4.295585,8.152315,4.1367,3.274795,8.52906,3.54759,0.5813878571428572,2.0021102503052504,4.34663,0.6003013333333332,4.691415,4.09595,4.69518,4.454885,3.309895,3.793735,4.301445,4.69632,2.5638,0.6952185714285715,4.50115,4.221765,4.154905,4.29847,2.75611,4.277465,3.368205,0.627504,3.522005,3.73239,2.52395,3.2004066666666664,3.859835,2.1658625,5.416,5.26585,3.3966575,0.872175,3.19313,5.326714166666666,5.326714166666666,8.259473333333332,2.0827,0.903235,0.903235,23.163413333333335,2.519475,7.560648333333333,0.3730541666666667,1.37611,2.80794,0.917361,3.85184,3.81597,1.897305,1.897305,3.888105,4.920015,3.537365,2.664165,2.664165,3.616875,4.465715,3.779545,3.477233333333333,2.049516666666667,2.5384191666666664,3.919861,2.048455,3.652795,2.6969366666666663,2.6608432142857144,2.6608432142857144,3.30456,0.8573344444444444,2.53112,1.4962466666666667,3.2520100000000003,2.7890466666666662,2.7227200000000003,2.2532566666666667,4.43745,2.40407,2.8377966666666663,4.795459,1.285708,2.27786,3.25595,2.6719500000000003,3.98655,5.461522761904763,1.2471733333333332,3.6002333333333336,2.514825,5.3696,6.47085,1.7064625,4.610567333333334,4.751873333333333,2.965332,4.568666666666666,1.025477142857143,1.8216439999999998,3.02274,3.968749523809524,1.2625,2.334805,1.690085,1.5910579999999999,2.810825,3.3960660000000003,4.897121,1.0747166666666665,1.2955342857142857,2.8794066666666667,12.599915,4.50888,2.71808,0.9148214285714286,2.4896778571428566,0.925532857142857,3.2538300000000002,4.562386666666667,5.03255,3.5516,5.7039,1.405645,3.6625,3.90508,2.7847933333333335,3.8633911111111114,2.1042466666666666,1.0848377777777778,2.5861199999999998,2.800456666666667,6.812623333333333,2.7108155714285718,2.504166666666667,0.752106,4.548066666666666,3.4771,1.169044,5.625539166666667,1.9477725,2.322583333333333,5.11505,1.2017444444444445,2.73671,1.0080636363636364,2.9693433333333332,4.21593,2.9198733333333333,2.9946333333333333,2.2538533333333333,2.22424,4.360825,4.634695,5.07565,1.6664525,4.61906,4.303495,4.269066666666667,3.27541,2.21269,4.115556,1.0851060000000001,2.8113133333333336,4.727175,2.728825,3.999235833333333,1.212675,2.7447766666666666,1.9514479999999998,1.9514479999999998,7.78312,3.157383333333333,5.557654166666667,3.357945,1.78745,2.581925,4.46669,5.614183333333334,8.282881666666666,4.675208333333333,2.5865359999999997,1.6958466666666665,1.9629963333333333,4.114536666666666,3.81453,1.47922,1.8805175,2.990783392857143,1.205535,3.0681966666666667,18.547983000000002,3.0287566666666668,2.7698866666666664,2.7433033333333334,2.9466533333333333,2.173366666666667,1.91489,2.9882666666666666,3.6356333333333333,2.433333333333333,2.66221,5.654255999999999,2.3067933333333333,4.771796,2.7160640000000003,2.708556,1.5791933333333334,3.644531111111111,2.0967075,4.020235,4.87276,3.651365,3.3123766666666667,3.24192,2.1305733333333334,3.3465333333333334,3.4364000000000003,3.324526666666667,3.3104833333333334,0.8072300000000001,5.2719,2.390905,3.0303533333333337,2.8137194444444447,1.89009,1.9956554166666667,1.9956554166666667,3.113540416666667,1.84728375,4.66916,4.156055,3.317525,4.12782,4.39353,4.4459125,4.4459125,3.856745,2.83379,4.102725,2.93425,1.612782,2.1867966666666665,4.388155,3.804205,2.655,3.446115,5.4809525,3.523633333333333,6.142267904761905,3.304885,0.768626,0.768626,3.27692,4.674385,3.85928,3.459218,2.3908333333333336,1.9071066666666667,1.4954666666666665,2.8390233333333335,5.677372,1.42812,4.164545,3.6893,4.07091,5.01195,4.855845,4.668025041666667,3.1980133333333334,2.2248675,4.15082,3.90778,2.0974975,1.1411060000000002,4.07089,2.75325,5.911056666666667,3.157806666666667,2.72683,3.44131,3.808135,3.637155,4.476225,3.007155,4.610215,3.79964,4.36855,3.57377,3.533425,3.7777,3.68256,2.7702766666666663,4.243325,3.1529,4.979045,0.6112255555555556,2.259105,1.742115,1.98795,1.80549,2.38937,2.653706666666667,1.7148033333333332,4.379125,5.57216,1.87754,3.683605,4.345695,2.404465,5.722543333333333,4.018226666666667,4.295355,4.997885,7.502421666666667,2.0203166666666665,2.82075,1.7261766666666667,2.5691533333333334,1.78892,1.87246,4.0708,3.71291,5.4085,1.0014433333333335,3.172995,4.26522,2.2197875,4.932075,3.740155,2.62957,3.6857333333333333,3.3217,2.085275,1.778774,2.7709,3.20925,3.369625,2.0258425,2.4953885714285713,2.4953885714285713,3.54495,3.448275,19.821869702380955,1.0658333333333332,5.227461666666667,1.795795,1.8993666666666666,3.528915,3.864155,1.903355,3.91784,4.83526,1.2163566666666668,1.2163566666666668,1.1900199999999999,1.7953999999999999,2.23276,3.2170433333333333,4.339203333333334,3.17705,3.3274000000000004,0.4622710526315789,3.3715277192982454,2.016966666666667,2.280825,4.6813775,3.563745,4.067415,3.668625,4.43812,4.53202,2.12817,3.372055,5.817613333333334,2.34077,3.618355,5.1381,2.158735,4.67333,5.74905,1.22617,1.8245460000000002,3.4794666666666667,0.6943,3.1106033333333336,2.98176,4.795835,4.962235,2.838383888888889,7.530435000000001,2.9468,2.5940933333333334,0.43967470588235297,4.449385,5.173394047619047,2.9715880952380953,5.37935,3.867475,2.5275162222222223,1.6948,5.25770375,4.22533,4.026505,2.831475,1.975135,3.447825,3.8554999999999997,2.978203333333333,1.887255,3.934024166666667,5.8439875,2.643325,3.98214,3.707915,4.001545,1.4841857142857144,1.4841857142857144,3.228476666666667,2.7745800000000003,4.26585,4.625545,6.555,3.513715,2.69355,2.1844925,1.40613,1.2969142857142857,4.801375,5.3972925,4.979775,6.06585,4.168495,6.6262799999999995,3.79938,2.8679466666666666,3.911068,2.1185633333333334,3.0242925,1.531942,4.48673,2.401616666666667,3.89742,4.91122,4.245565,2.8156133333333333,2.9235666666666664,1.3800342857142858,2.3460625,3.7312666666666665,1.7147,0.608984375,3.0270166666666665,2.5524533333333332,2.2598433333333334,2.1337566666666667,1.8116675,1.464404,0.6841381818181819,0.6841381818181819,3.4492666666666665,1.7109475,2.188875,2.958565,5.6629,4.071425,5.77895,4.08344,4.315425,2.176086333333333,1.3357866666666667,2.77512,5.40325,0.97645,2.5678799999999997,2.948195,3.0246,2.66391,4.31988,2.709205,2.003836666666667,1.0422171428571427,3.32163,8.440505,3.2513,1.4781585714285714,4.21569,2.92687,2.76686,3.486055,2.850695,1.7711366666666668,1.0309225,3.861125,2.5575191666666663,2.3084333333333333,1.6966933333333334,2.3124333333333333,2.28455,2.661513333333333,2.80672625,1.4100233333333334,1.8745833333333335,1.0862475,6.1887925,5.8261,5.9473,4.016905,4.481375,2.9175633333333333,1.607268376068376,4.592525,5.025,2.654075,4.97437,2.04255,4.59302,0.946548888888889,4.14068,3.90977,1.8914175,7.82703,3.603,1.86025,1.79679,1.741035,2.527775,3.2431900000000002,1.1779337012987012,2.83394,5.6069,3.551995,3.839405,5.49455,5.345,5.7514,0.82293875,3.986815,4.52698,4.059145,4.8416,3.9722983333333337,4.49486,4.8333,2.936275,1.6204766666666668,1.6204766666666668,5.01685,5.214171666666667,2.87219,2.55444,4.05013,4.54011,1.503238,4.132545,5.0137,3.621895,4.048185,2.9232133333333334,2.537776666666667,4.809035,2.3534963749999998,10.68539598275744,1.9946433333333333,0.7604375,2.607746666666667,1.632475,2.48353,2.017205,1.7734079999999999,2.7596233333333333,4.83528,5.2058,2.794833333333333,1.5863866666666666,6.104695238095238,1.4720571428571427,2.7878133333333337,0.5015,4.118373333333333,5.50925,3.40869,4.50175,11.600985,5.0398,2.9189633333333336,3.323316666666667,4.151825,2.9246266666666667,4.3482,0.855535,1.0519033333333334,0.8225281818181819,5.597,4.01879,1.655048,4.563876666666667,4.34762,6.5997,4.745085,4.94133,4.36665,6.0437,4.006015,5.0594,3.581425,1.1513740000000001,3.75897,5.4825,2.71304,4.115895,2.644525,2.484405,1.2044,5.133,3.94411,1.2377725,3.3588,2.9342699999999997,2.5225133333333334,2.43851,2.5296366666666668,2.8968000000000003,0.6949127272727273,2.2719666666666667,2.688806666666667,2.6381466666666666,1.9986499999999998,3.078796666666667,2.17407,1.6704966666666667,2.2381025,1.9037925,2.0647,3.3661666666666665,2.6246300000000002,0.619161,2.596373333333333,3.41838,4.700805,2.3021266666666667,3.721735,5.1916,5.0926,3.412695,3.987695,1.3256514285714285,3.338575,2.5118605555555558,4.4925999999999995,2.71049,4.30797,5.35625,4.669045,4.070935,4.1162,0.985034,0.985034,2.1958590384615384,1.6108275,4.02324,2.447783,2.447783,4.79065,6.2973,3.0657,1.154425,1.5247857142857144,5.69825,3.691955,2.32055,3.32678,2.946315,3.27429,2.32055,4.36043,3.095035,2.8816145833333335,2.826335,2.171855,3.384215,6.36305,2.84234,4.250155,3.682525,6.526,6.274,6.49985,6.49985,5.1127,4.688495,0.5454915384615384,4.89317,4.52517,2.99282,2.62352,8.100935,2.7138500000000003,3.74722,3.75771,2.53999,4.51491,2.089765,3.50873,2.9727099999999997,3.4946,2.4296233333333332,1.385616,1.385616,3.636205,3.792255,5.16125,1.651352,1.3906459999999998,46.73890375,2.57243,0.81134,3.0502000000000002,1.74947,3.1775633333333335,2.7236433333333334,2.9438099999999996,2.778555,2.64098,1.9278033333333333,0.98137875,4.123005,3.3526,3.576275,3.979165,5.0633,5.01085,5.18055,5.25465,5.17665,4.73268,5.27415,6.2928075,4.64747,5.24915,2.1435625,3.669115,6.68915,4.990125,3.133045,3.954175,2.895185,2.438,3.932945,4.507465,2.8656633333333335,3.8955333333333333,1.61448,4.491085,1.392276,3.392645,3.910655,3.577585,6.511570000000001,4.11368,1.95533,3.83318,3.77642,4.15626,0.9283025,2.77383,2.88905,4.385419761904762,1.2003975,4.60752,1.32843,5.7383,0.7601722222222222,3.850428,9.6977775,4.196445,3.66033,3.10118,1.8716166666666665,4.183485,5.28265,3.0247933333333332,4.49824,9.066282777777777,3.4084333333333334,1.8736466666666667,2.84402,2.6908,2.7729266666666668,2.725457916666667,2.43695,2.58145,3.054233333333333,2.6869033333333334,3.0902,3.447925,2.27217,1.7684600000000001,4.735401333333334,4.000233333333333,2.65202,4.985510666666666,2.7335433333333334,1.033635,2.022585,2.9261533333333336,5.235240714285714,2.978,2.068493888888889,2.068493888888889,1.6280925,1.8052725,2.17984,1.911808,5.781992499999999,4.2710825,1.90377,2.9443900000000003,3.540566666666667,1.98483,0.6102858333333333,2.56323,2.0006225,0.597883076923077,4.278415,2.5638,2.594025,3.72389,3.537443,2.4398633333333333,1.59887,1.1352766666666667,2.099965,3.723985,3.850995,4.1050725,2.7624366666666664,3.9628,3.63867,1.084681818181818,9.977715,2.88565,3.315545,1.3012,2.7150433333333335,2.2849975,2.2849975,2.2849975,5.20945,5.4393,1.674765,4.85724,1.458152,5.642333333333333,1.4815939999999999,3.86591,4.297435,4.025045,4.868735,4.372865,1.981355,8.3859375,3.70478,4.88829,3.610645,4.06883,3.334,3.0668433333333334,3.85597,2.62669,4.453408571428572,4.5708424999999995,1.7027375,4.032945,1.7027375,3.561965,4.434571666666667,5.2064575,4.434571666666667,1.7944933333333333,5.67865,4.449475,4.24505,2.5312266666666665,2.863246666666667,4.193405,3.229915,5.17745,0.5207142857142857,2.89052,2.9418333333333333,4.979113333333333,4.73717,2.2908775,4.659705,6.400338333333334,3.526245,2.77894,3.06093,2.1334933333333335,3.77929,4.076895,4.58071,2.49696,3.77009,0.881119,5.69375,3.358675,4.081165,2.44899,3.03394,2.2855333333333334,2.6365633333333336,2.7777766666666666,2.8365299999999998,2.910625,2.4623675,2.4623675,4.4101675,2.83062,4.671945,11.3258825,0.9412911111111111,4.15874,2.4050933333333333,2.4113166666666666,2.6302833333333333,1.4404625,7.3774215,3.3697,3.62059,3.588891666666667,2.2792266666666667,3.8057,4.149929805555556,2.01362,0.4199161111111111,1.471306,1.4639075,4.703315,2.98751,3.31698,3.7537483333333332,3.410410833333333,2.2565099999999996,4.987825,4.610075,3.835025,4.386175,2.27689,3.67988,2.5976399999999997,5.566166666666668,3.330905,4.86866,3.99904,3.727035,4.214075,1.94332,3.882185,3.727535,3.0795933333333334,3.617785,3.03513,3.2349,4.06982,3.60953,2.7099766666666665,4.406685,1.36855,3.51605,2.90454,4.400395,4.158585,3.68209,4.715065,2.440485,4.439335,4.970935,4.15078,3.092216666666667,2.20831,2.849445,2.39972,0.8346933333333334,4.54295,2.089885,3.46215,2.75146,4.181715,3.301605,3.026425,2.870185,3.895185,4.590236666666667,3.912185,2.741115,1.6522533333333334,3.45924,2.62684,0.9121477777777778,4.234915,8.557134999999999,3.612505,3.637825,3.866905,5.05695,3.592895,2.24717,4.11384,4.077,3.119315,3.318505,3.60802,0.68415125,1.2421900000000001,6.711530000000001,1.836,2.747385,5.07396,2.490835,2.37745,2.689745,7.32917,2.582345,3.88639,3.971975,0.7469633333333333,3.57308,2.620285,3.863025,3.8736,5.69559,0.667646,3.28247,9.91016,3.29511,1.0891011111111113,5.0399779166666665,4.744265,5.16125,4.13288,4.41571,3.28132,2.64786,7.25436,0.791898,3.59542,3.906915,3.10309,4.29942,2.40337,4.18063,1.7328000000000001,4.046965,3.90577,3.953135,1.63858,4.45005,4.608025,2.3396275,2.02476,2.0147375,1.169044,4.320035,3.4376035,1.320528,7.8476099999999995,5.7227,4.132505,4.03294,3.472915,4.31272,1.445757142857143,4.164895,4.05833,5.26365,3.848135,2.42996,6.485040876068376,0.9496975,0.9496975,2.5103066666666667,0.98576,4.20878,2.79147,1.01005,1.7200233333333335,0.4321983333333333,6.09837,1.0435475,2.79765,3.567235,4.089285,3.32398,4.06403,5.37085,5.6923025,3.34935,3.22118,2.618795,3.86819,4.328455,4.24159,4.04363,3.674945,6.1325,4.410105,4.247513333333333,5.308596,3.59529,3.348085,2.29187,3.348085,6.955694,40.92618276731602,3.750565,3.53348,2.9208,4.202995,4.34879,3.420525,3.56549,3.86898,4.42302,4.048255,1.5576533333333333,4.502755,2.74953,4.39757,5.1031,5.1109,2.4826433333333333,4.26407,3.929415,3.309215,1.324642,0.6383500000000001,1.7300460000000002,3.6097,2.8324233333333333,1.274725,2.8142866666666664,2.5429233333333334,2.53584,3.6085666666666665,2.9639900000000003,1.288278,2.6363666666666665,3.7959,1.8702818146718148,2.9112733333333334,2.983968,2.86346,2.58457,3.2988199999999996,1.1919444444444443,3.630705,3.987995,1.193255,1.193255,1.193255,1.193255,2.889842727272727,2.1319399999999997,2.613885,3.31863,4.846315,4.775315,4.000235,4.34132,5.435,4.63729,2.397075,5.87615,4.14913,2.87892,3.812495,2.93441,4.1347,4.172015,0.6955523076923077,1.4182014285714286,1.6454333333333333,4.179745,3.82403,4.483175,4.050075,6.0377366666666665,2.317876666666667,4.558495,1.4840516666666668,3.482785,4.8995,1.5962633333333331,5.0232,0.6842075,4.19065,1.13378,1.137195,3.740945,4.02932,5.0196,4.8216,5.9747,4.47314,1.5232160000000001,4.18589,1.50415,3.36984,3.03587,2.5275162222222223,1.9416825,2.93532,1.2868316666666666,3.574955,4.673395,2.896686666666667,5.70725,118.97130879960316,0.5154133333333334,4.852565,2.3395066666666664,4.80214,4.074555,3.21936,1.491935,0.2925433333333333,2.89485,3.75301,5.34905,3.642005,3.905315,4.382625,4.186515,4.476185,8.409303333333334,0.7014044444444445,2.78871,0.96946,10.525036,2.98618,3.632515,0.8635977777777778,2.434915,2.80229,2.1251625,3.3307366666666667,3.1099,2.63749,4.458410000000001,3.0196233333333335,2.3243766666666668,2.2972233333333336,3.27655,3.50445,3.016375,3.656865,3.753745,3.372065,2.3252133333333336,3.815175,4.072125,3.217835,0.9529788888888889,2.5617366666666666,4.458410000000001,4.878545,5.42045,4.095005,3.461025,1.881285,11.256170000000001,4.02415,2.66409,4.172935,5.24935,0.5217773333333333,0.5217773333333333,3.995805,3.995805,3.173515,3.5769333333333333,1.8538536363636364,0.5509324999999999,3.02933,4.36346,4.05954,3.333085,3.861405,5.3895225,4.57962,2.1523525,4.687355,2.08397,2.696925,3.8627475000000002,1.78616,2.136535,0.5176314285714285,1.2882074285714284,1.2882074285714284,1.962395,4.396095,4.47201,4.792515,6.4963619999999995,2.681885,3.11622,2.01548,1.95796,4.032391666666666,3.51864,4.629293333333333,2.401995,4.629293333333333,4.08394,3.570155,5.96705,4.084405,2.4680166666666667,1.9352733333333332,2.4607,1.38934,1.44958,1.5112175,1.9017625,1.675205,1.5509675,3.8502666666666667,4.34874,2.59992,6.5856,2.8224400000000003,4.279395,3.4,4.13724,2.9351000000000003,2.7994533333333336,5.859159999999999,3.3867,4.51324,3.0508866666666665,1.47624,2.5239266666666667,2.57384,2.2179366666666667,6.15715,4.3940325,4.488915,12.240080848804704,0.7045766666666666,1.9861657499999998,2.09155,1.590144,1.2134085714285714,2.488355,2.3350125,2.4350325,2.3750825,0.7187915384615385,1.9006275,0.5073884210526316,4.208945,2.053165,3.559055,4.123885,2.4028075,5.5290075000000005,3.848235,6.80494,3.885685,2.87318,3.001085,4.4646,4.8925,2.4652373333333335,4.396365,2.017145,2.017145,4.759795,3.600355,4.03141,4.28878,3.311123333333333,3.97155,4.70966,5.2623,4.57577,4.484865,4.737805,4.159945,2.330465,4.705555,1.1681516666666667,4.45732,4.597045,2.6432166666666665,2.1968633333333334,4.68063,1.4777183333333335,5.0384,2.02135,5.791590615942029,3.92916,4.138165,1.61751,3.4654325,3.4654325,12.10681,4.00554,3.728935,1.126805,4.274979,2.1839325,1.5091175,2.24786,1.68443,1.9604575,1.666562,3.16719,5.72795,1.8240725,4.772855,4.593740833333333,5.40975,2.08871,2.482235,3.00329,4.231035,5.3084,4.006885,7.01319,3.0934333333333335,2.790993333333333,0.35708,3.70741,4.698895,3.231113333333333,6.118803333333333,2.5785466666666665,3.0774166666666667,1.312975,1.5628683333333333,0.608984375,1.471306,2.986425,1.5181266666666666,1.4912733333333332,0.62285625,1.4162839999999999,4.593045,2.46949,0.5414507692307692,1.59393,1.58283,1.6188960000000001,1.3151416666666667,1.82988,1.5628683333333333,2.42608,1.4162839999999999,1.4162839999999999,0.5414507692307692,1.5516,2.46356,1.2625,2.48168,0.5414507692307692,2.5682,2.46356,1.2035533333333335,1.2035533333333335,1.2035533333333335,1.8220859999999999,1.1639325,0.5414507692307692,1.156974,1.06119375,0.9654233333333333,1.77049,2.64395,0.8217458333333334,1.93383,1.482557142857143,0.5414507692307692,1.7538,1.5628683333333333,1.9696833333333332,1.7834833333333335,0.8741720000000001,1.9696833333333332,1.06634,2.3396275,2.3999125,2.420995,1.06119375,2.08708,1.2868316666666666,1.2868316666666666,0.872639090909091,0.872639090909091,0.872639090909091,1.312975,1.5628683333333333,1.482557142857143,1.59393,0.9354714285714286,1.7834833333333335,1.496438,1.519158,1.9939879999999999,1.312975,2.71808,12.26152,0.62285625,2.6120200000000002,1.6684666666666665,2.3633275,0.925532857142857,0.925532857142857,0.5414507692307692,0.8802933333333334,1.464404,1.482557142857143,1.80662,1.7834833333333335,1.1035644444444443,1.1035644444444443,1.6579039999999998,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,2.792816666666667,1.06634,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.20345611111111112,0.37380727272727277,52.76433641269841,1.5828225,1.4856633333333333,1.482557142857143,1.6684666666666665,0.9354714285714286,0.621835294117647,0.752106,0.752106,0.752106,0.752106,4.248366666666667,15.583272916666665,3.3097933333333334,0.5879836363636364,1.496498,1.496498,1.496498,0.5879836363636364,2.986425,0.5414507692307692,1.7538,1.4912733333333332,2.46422,1.06634,2.2908775,1.06634,1.413732,1.413732,2.0691666666666664,2.0691666666666664,0.5414507692307692,1.9182839999999999,1.9182839999999999,0.9200454545454545,0.20345611111111112,2.986425,1.3662033333333332,2.514825,0.5879836363636364,0.5879836363636364,0.5879836363636364,0.5879836363636364,0.5879836363636364,1.6684666666666665,0.37380727272727277,1.06634,2.034735,2.034735,2.4841525,2.7457933333333333,0.6362761904761906,0.6362761904761906,3.3701666666666665,4.091066666666666,1.2275057142857142,3.20175,0.9507899999999999,2.441175,2.0827,1.1068616666666666,2.8936466666666667,1.7786775,3.19313,5.3126,2.30938,1.1789555555555555,4.227565,4.261185,2.5726133333333334,1.72789,2.2818643076923077,4.603385,1.8254861111111111,2.81475,2.9092533333333335,3.0263500000000003,2.502635,6.1370233333333335,3.88682,0.20345611111111112,2.8838033333333333,4.68574,3.30144,4.47548,4.276175,4.133885,2.6868733333333332,1.814998,4.18696,4.610805,4.372925,4.667485,5.0617,3.06492,0.7215533333333334,6.847255,1.5859183333333335,2.91308,4.40011,2.6188233333333333,2.6188233333333333,0.8380436363636363,1.9416825,3.88865,3.076735,5.0225,3.999665,4.571215,5.06445,1.0275785714285715,4.680655,5.671,6.532945694444445,2.367906666666667,4.167845,4.00631,3.99621,3.70905,3.65751,4.379115,6.2109974999999995,5.18865,3.964486666666667,3.762955,4.424911666666667,7.062787,1.8868775,2.117895641025641,2.9662133333333336,1.7990466666666667,2.7560966666666666,1.8759833333333333,5.39005,2.921276666666667,5.91785,1.806582,4.692675,4.163535,3.295845,4.449985,3.82308,2.5590800000000002,2.7842333333333333,2.8404966666666667,2.5957233333333334,2.5671666666666666,1.6780666666666668,2.7408333333333332,2.886206666666667,2.21808,2.21808,4.54401,2.995293333333333,2.0874,2.95256,2.0615133333333335,2.5948433333333334,3.12669,2.724833333333333,3.0743533333333333,5.2151,3.802655,3.65245,3.2032413333333336,3.2032413333333336,3.88505,3.149696666666667,3.55482,4.541895,4.09568,3.439255,3.40739,7.43517,2.0141275,1.966805,3.57435,3.32658,1.3151066666666666,1.3151066666666666,3.63664,1.89243,3.9837526666666667,3.797435,3.60055,2.1570635,2.1287850833333333,0.5469674999999999,3.166955,4.01146,1.8447825,2.40728,4.29016,1.5544200000000001,4.33059,1.2905766666666667,0.343035,0.5014857142857143,21.205467564484128,0.5014857142857143,0.343035,0.6599364285714285,9.66431,2.684336666666667,3.275975,3.908465,3.454505,2.98615,3.999322142857143,2.31054,2.35164,3.73643,3.319155,3.980045,4.20957,3.569045,2.314405,3.23582,3.39049,3.84771,3.214165,1.183651,1.183651,1.183651,1.183651,3.455465,3.001485,3.13537,1.9363633333333334,1.0643166666666668,2.570525,3.84838,3.603465,2.94502,3.185085,2.523205,2.4989208333333335,4.00794,4.23211,1.1291833333333334,2.6300966666666667,1.0587,2.5952100000000002,1.6936033333333331,3.8945333333333334,4.671265,2.518473333333333,3.418375,3.99884,0.8836786507936507,0.3021064285714286,0.3021064285714286,0.5815722222222222,0.3021064285714286,0.3021064285714286,0.3021064285714286,0.5815722222222222,4.684555,7.344225,3.815545,0.549545,3.65102,7.740425,3.316145,2.9941866666666663,1.1797333333333333,4.17375,5.14135,4.20735,5.0544,1.6916360000000001,4.493635,2.09259,2.41047,3.33638,5.12635,0.8679585714285715,0.8679585714285715,3.631965,2.891856666666667,2.302645,3.54412,2.47494,6.6256,3.626225,6.3079,6.1653,5.5879,3.178155,2.089465,4.56785,3.72556,2.090005,4.0384,3.035385,1.9098425,1.2076083333333334,4.2176,3.66764,4.8763966666666665,6.184946666666667,1.4561849999999998,4.065285,1.25146,2.5882633333333334,3.21067,3.78043,0.3691307142857143,3.376445,3.88291,0.9041539999999999,2.3751433333333334,7.409643333333333,3.20217,2.225465,5.493829,4.444985,3.63682,1.3051283333333332,5.103916666666667,2.493743333333333,3.0490833333333334,3.5055,2.53049,2.53049,6.1148,6.1148,3.5440392857142857,3.5440392857142857,8.11649,3.5440392857142857,3.5440392857142857,4.20881373015873,6.7571,3.312515,3.2971608333333333,2.9728066666666666,4.20085,3.667205,3.05332,3.18704,4.624575,3.1447066666666665,2.7235866666666664,3.4271666666666665,2.31979,2.743085,4.736385,7.480589999999999,6.300065,4.817985,3.82118,4.038775,6.717408,5.20965,4.383325,3.71587,4.41175,2.2279466666666665,2.38836,2.21718,5.1585,5.36465,4.5880075,4.10378,2.33211,2.3046633333333335,6.732736666666666,1.8220859999999999,2.60146,3.3373666666666666,3.3373666666666666,3.23571,5.03125,0.7566516666666666,3.4547000000000003,3.62465,2.766996666666667,9.904544999999999,3.83566,2.8476433333333335,2.410153333333333,4.528995,5.86575,2.860245,5.3169,2.629496666666667,4.602195,2.963354285714286,4.041825,5.1495,4.614605,0.9903066666666667,3.389866666666667,0.9984375,2.5211200000000002,4.933339676470588,7.96512,2.5573166666666665,3.209016666666667,6.480828333333333,1.639818,4.426315,5.3755,3.411315,3.868425,2.19671,4.479665,2.2577325,0.45302846153846155,4.94419,2.87729,3.3802,4.53186,4.755095,5.33515,6.219205,4.353125,5.53375,7.362667500000001,55.33322833333334,4.58241,3.911615,4.72989,5.87175,4.43192,4.992865,4.0602,4.65479,1.9473525,3.742385,4.016395,4.676155,2.652225,5.06765,3.93554,1.6627120000000002,5.2437,6.1877,6.855703333333334,5.30165,3.3375,4.44189,3.35167,3.25356,3.68416,4.393505,3.900295,6.29399,2.724675,1.0837471428571428,2.486985,0.8029059999999999,0.8029059999999999,3.16107,0.8029059999999999,2.4741447142857145,2.4741447142857145,3.2824207142857142,4.387563999999999,4.810954714285714,2.486985,4.8451575,2.7611875,1.3940700000000001,5.49765,2.186425,6.387943333333334,5.096193333333334,10.628105606060606,2.9913933333333333,2.55306,0.2095339393939394,1.989935,2.048903333333333,0.83528,1.1911116666666668,2.8522166666666666,2.2011825,2.628,0.5932540000000001,26.870594583333332,1.85975,0.7811307692307692,2.45063,2.45063,0.39352777777777775,1.6937,3.2308675,1.3009925,1.61833,1.66935,3.99936,2.96586,2.04326,2.43843,1.1749866666666666,1.8607925,1.4338566666666666,5.134312,3.491075,6.669340833333333,2.349295,3.3133233333333334,0.91863,2.850295,5.08065,5.9728449999999995,3.1118133333333335,2.251583333333333,5.206521666666666,1.905095,2.16499,4.24783,1.31276,3.5225666666666666,2.3346533333333332,4.829715,4.39417,5.7151,3.070445,4.012957500000001,4.012957500000001,5.05585,2.245825,5.29155,2.7215433333333334,1.6335375,3.163965,3.38983,5.103742499999999,3.943425,2.849403333333333,2.6591366666666665,2.80697,0.9512571428571429,5.06045,0.829125,5.454363333333333,4.46153,7.321680000000001,4.07015,4.432405,4.058315,8.2259,4.164875,4.238905,1.1976900000000001,0.6960385714285715,4.380435,3.75207,2.17998,3.38714,3.25936,4.33239,2.30633,4.743695,2.3427466666666668,5.1787,4.811745,5.50455,4.1384,4.73495,3.178155,6.4934325,3.442605,4.403645,3.4811,4.58558,5.319916071428572,0.590397142857143,3.5808,1.6781,0.5731088888888889,3.993735,2.455555,0.93142875,2.011825,6.09847,3.737565,2.30854,2.66389,2.7300633333333333,4.851575,3.882625,1.5748388095238095,3.978465,2.200536666666667,3.6618333333333335,4.027005,5.11435,2.9344083333333333,3.5624333333333333,3.6949,1.99818,7.33264,4.779685,3.99822,5.1049,2.1429025,4.22911,4.569,3.52928,3.87138,11.37215,3.25111,4.399218333333334,4.61731,4.570565,2.3100425,4.15939,4.03104,4.580005,3.2872266666666667,4.092095,1.311515,2.971346666666667,3.53367,3.70052,4.435265,1.77679,3.779845,3.134726666666667,5.44265,3.0213133333333335,1.65272,3.77723,4.315545,1.0427175,2.920045,2.778613333333333,4.343260666666667,1.627394,1.7731033333333333,1.1437575,3.372655,5.40365,5.542445000000001,3.66543,2.994435,2.269665,1.99035,1.976665,1.73375,5.8988,2.999095,1.8907225,0.8781153846153846,18.990971942307695,2.94579,2.8280624999999997,4.096808333333334,3.9587420512820515,1.2120333333333333,2.676544,2.921278863636364,1.388082,1.9508933333333334,4.383825,4.55735,3.3901475,2.885285,5.2946,4.629745,6.889517499999999,4.509024166666666,4.388775,3.497955,2.61659,3.93604,4.02275,3.5452333333333335,3.890035,1.7568675,4.71272,8.00305,3.39194,2.870715,3.422695,0.62788,3.0525466666666667,2.0066133333333336,2.34213,4.48393,2.997185,4.87829,3.726975,3.106145,2.13455,1.80278,0.7835479999999999,1.4804733333333333,1.32365,3.899465,3.84619,4.40364,4.55179,7.58105,2.31474,1.47519,2.37977,7.5799183333333335,3.383775,2.838325,3.005545,4.150295,3.1269,3.56473,1.3966480000000001,4.77944,4.645525,4.34244,3.9657,3.431415,4.117,4.017075,3.761595,4.39936,5.01525,2.12354,3.20463,2.99794,5.31435,2.963475,4.204774499999999,2.7805,2.94832,2.230913333333333,2.224883333333333,2.15593,2.471535666666667,2.471535666666667,2.0045433333333333,2.8662233333333336,2.40145,2.47315,2.0317866666666666,4.07703,2.3193233333333336,2.758426666666667,2.929676666666667,1.7492433333333333,4.44041,2.808045,3.941475,2.129443333333333,5.20285,5.1208,4.7260011111111115,2.69086,2.750435,2.56899,2.19844,2.098595,2.92765,1.8624375,2.621725,2.71745,7.040513833333334,4.2053650000000005,3.369905,0.611353125,4.232415,3.902425,3.98107,3.33801,4.08467,3.7218191666666667,6.2626,4.3947,3.16744,2.73549,2.1159713333333334,2.5145,1.561022,1.6922540000000001,1.486946,1.9845279999999998,1.739865,1.1097183333333334,4.212897428571429,0.5414507692307692,0.5456033333333333,1.855404,1.5209183333333334,1.425238,1.3617833333333333,2.276603484848485,1.4517583333333333,1.621636,0.60035625,165.48132544568054,0.498082,2.13286,1.126272,1.2966275,2.14124,1.5299825,1.94808,2.24766,1.8106875,6.573,3.065215,3.2438304761904764,2.2287966666666668,3.281075,1.3395933333333332,1.3395933333333332,5.741235,0.48970833333333336,2.07199,3.1552100000000003,2.9786133333333336,0.802039090909091,0.5396211764705883,1.1308137435897436,0.9893545454545454,2.2420725,3.87962,1.9179225,2.144655,2.18882,4.740832944444445,1.0057122222222223,4.39037,3.470145,3.525885,6.73174,2.0333200000000002,3.005745,2.3905,3.6974039999999997,2.566355,2.521175,2.64267,3.097155,4.278905,3.120125,6.3355,2.15995,2.711455,3.54285,1.7886,2.352865,2.820475,3.142985,1.891685,1.71017,2.298155,3.97537,5.02535,2.579705,3.04275,1.4442,4.001425,3.6842333333333332,3.8015666666666665,2.996935,24.3773952736569,2.6907406666666667,2.75552,3.0265066666666667,3.4858,3.068493333333333,5.538270000000001,3.1270666666666664,2.2577933333333333,3.16859,3.423966666666667,2.22301,3.225566666666667,3.2387366666666666,2.9817766666666667,1.7195833333333335,1.6009674999999999,0.5887749999999999,2.3016166666666664,1.9249425,0.237653125,2.179116666666667,2.49938,0.237653125,0.237653125,2.106803125,0.237653125,0.237653125,0.237653125,0.237653125,2.7102466666666665,2.4793166666666666,0.5590330769230769,2.9916914285714284,1.45516,1.925826,5.64895,4.3337,5.879745,1.93933,4.86852,1.990125,2.5083733333333336,1.1196528571428572,5.7056466666666665,2.8553200000000003,6.050167500000001,0.8225691666666667,1.4883025,4.543825,4.65946,34.48774759931735,1.442536,1.4254533333333335,2.2542233333333335,2.20022,0.872639090909091,2.3316033333333333,2.2159400000000002,2.7323533333333336,1.8992133333333332,2.488113333333333,1.9054483333333332,2.5176133333333333,2.4169966666666665,2.2577599999999998,2.7227266666666665,2.4575566666666666,3.93139,3.1654133333333334,1.1089714285714287,3.815895,4.06662,20.00745211111111,2.7895800000000004,3.32404,2.6309299999999998,0.944284,3.218712,1.7356551111111111,3.218712,2.3448533333333335,2.4991666666666665,3.0032266666666665,1.464515,1.879105,4.120805,4.08701,4.85873,4.372225,1.617786,4.949555,1.5544125,4.82132,4.009865619047619,4.078545,0.7505136363636363,2.0351475,2.07246,2.7050919999999996,3.372585,1.0520575,2.885825,1.892502,2.063003333333333,1.081816,1.081816,2.4295833333333334,2.61344,4.28615,28.328258333333334,6.745975,1.8502599999999998,3.590206666666666,0.37803466666666663,5.7471875,5.7441,2.682166666666667,3.515435,5.5403275,3.458575,1.08561875,4.2232,1.279222,2.570505,4.31193,4.537175,2.2411,3.325805,4.25376,2.648225,2.747472,4.12929,1.3118766666666668,2.4487195833333333,3.738655,5.19215,2.5261133333333334,3.0708366666666667,2.706846666666667,3.876475,4.047125,4.00657,4.248366666666667,1.92519,6.24984,2.58391,1.752906,4.21104,5.97403,4.01658,3.12053,0.72620625,3.080185,3.64342,2.141825,4.605630666666666,2.828655,4.00126,2.8683433333333332,3.3810333333333333,2.666955,3.1593199999999997,2.835103333333333,3.0565200000000003,4.11162,5.57985,3.689245,1.70264,3.879665,4.20338,1.970445,2.227975,1.7393575,3.916538333333333,4.564085,5.043846041666667,4.015735,3.1642833333333336,3.782185,3.17477,1.3553916666666668,3.08806,3.12462,3.19621,4.51567,4.46585,4.003805,2.938795,2.03322,1.664415,1.549585,3.61784,2.504715,2.26169,3.38343,5.04175,1.589955,5.04865,1.4165028571428573,1.9233375,3.259605,3.106105,2.93784,3.65828,3.092415,1.76473,0.9739076842105263,3.13778,4.380925,4.292845,8.764948333333333,3.011286666666667,3.0560899999999998,1.6884466666666667,2.7428733333333333,2.6664233333333334,1.124345,2.787126666666667,2.5654,3.0774000000000004,3.9553,2.9612,7.106695,2.9438133333333334,0.7559527272727273,1.7529833333333331,3.50183,3.30512,3.61073,3.468666666666667,2.453029,2.736665,2.822585,1.9729054285714285,3.802315,2.3432705555555553,3.485885,2.07391,4.609245,5.0547,4.493495,3.366525,3.54124,0.9052744444444445,4.509795,2.7822566666666666,2.830106666666667,4.165075,2.65286,2.65678,0.5426842857142857,0.5426842857142857,4.11686,3.929215,6.9213,3.11792,4.511955,3.67482,3.225025,4.7839,3.903505,1.04596125,3.747705,2.5326166666666667,4.252448333333334,2.90436,3.077585,1.7540766666666665,3.242893214285714,2.3231333333333333,2.808526666666667,2.56203,2.90846,2.0472266666666665,22.16533911001318,3.82656,3.99522,4.037125,3.25983,4.332695,3.462695,4.554345,4.05646,4.02227,3.4031,4.204485,2.36893,2.699006666666667,2.84986,3.000645,2.660696666666667,4.213025,3.576135,4.98235,4.9728,4.204035,1.38173,1.389808,1.389808,4.85902,3.63117,2.4786,2.29827,2.72388,3.195075,3.88662,7.415651666666667,3.1386766666666666,3.4252333333333334,2.9984616666666666,5.30435,1.5320766666666668,5.9106725,2.38366,2.7960833333333333,1.7614325,3.485295,2.80222,6.35558,3.405915,2.585205,4.130265,4.043342,1.4424225,2.4999266666666666,1.61993,7.1419630000000005,4.09343,6.532159999999999,2.1517825,3.78349,3.84486,3.832275,5.10835,3.5248000000000004,3.5248000000000004,2.100305,4.312765,4.92465,2.290035,6.37318,1.469685,5.58855,8.639516666666667,3.7673666666666663,4.21768,2.37332,1.99026,0.5595525,4.380595,2.51055,2.647975,3.5174380000000003,2.234955,2.48625,3.547435,5.64995,5.15655,5.2829,4.630585,4.15196,2.242815,1.0451181818181818,2.94689,3.580175,2.7888,5.13385,3.9861,3.162075,2.569395,1.8245460000000002,4.163885,1.02174625,5.10755,0.9833666666666667,5.4892,3.38264,4.95655,4.97994,3.044165,3.196365,2.8856,2.35129,4.25364,3.015905,2.47745,3.726135,4.72871,5.573886666666667,4.38807,1.44292,3.436175,2.907315,5.57539,2.02384,2.02384,2.945456666666667,2.406356666666667,2.39563,2.75712,0.799921,6.2148,3.19929,1.83292,2.539895,2.833905,3.849275,2.8274,3.7347,5.08165,5.2033,4.815185,5.86635,5.68105,1.2922,3.35839,1.1209166666666668,2.445625,4.341833333333333,2.84286,3.24866,3.31823,4.951035,3.052805,0.4490921052631579,4.403645,4.19165,4.792935,3.384415,4.82326,5.33815,4.345165,4.20072,1.70078,4.50768,2.00022,4.2679,4.2679,6.54815,5.79625,5.4388,4.85634,2.832435,1.5320766666666668,3.942905,1.9509966666666667,1.6198966666666665,1.9894,4.379185,4.197255,4.19118,8.14138,1.5534316666666665,4.98281,1.3061450000000001,3.189335,5.9296,1.955425,4.68594,2.4712533333333333,4.62825,3.33416,4.807385,3.332246666666667,4.23966,4.16911,5.7412,4.244445,3.724715,3.80056,5.99025,4.177025,4.48369,3.7651,3.932575,7.165701666666667,3.43977,7.4209,3.57095,5.6115,6.046797954545454,4.140555,3.623645,1.7120425,5.32635,3.922265,0.8148488888888888,8.97995,5.9876,5.1096,3.033360833333333,5.0045,2.93259,1.739602,3.991175,1.1291833333333334,5.9762,2.7766,4.555035,5.48235,4.413635,4.092025,2.0848833333333334,4.49409,4.86628,1.492245,6.894293333333334,2.95328,3.385615,5.0926,4.00352,2.21429,4.345765,3.47009,3.82949,2.6988,4.109825,3.767665,5.4506,4.61087,3.23012,1.8378425,1.8378425,7.480356666666666,1.4475571428571428,4.902065,4.26887,5.11655,3.569625,3.550045,4.96547,3.90883,1.0065250000000001,1.0065250000000001,1.0065250000000001,3.623575,3.248735,3.96367,4.495230222222222,2.599505,1.4553116666666668,4.00474,2.1840175,2.487075,4.014915,4.456245,2.1087275,2.0552,5.55567,3.72861,3.10958,4.495475,1.711745,1.9494475,3.300546666666667,2.445245,5.3851,1.395216,1.6020379999999999,1.00360625,3.50908,3.611125,2.761893333333333,2.888056666666667,5.22465,1.745356,2.091795,3.143055,1.5955285714285714,3.353635,3.374315,2.54215,5.3928,5.45475,2.81415,3.9916,3.75485,3.528985,3.33381,3.95858,3.399815,6.71263,5.07265,1.93292,1.7316666666666667,3.45228,4.687355,4.71258,3.345415,2.862386666666667,4.144225,6.13395,5.01155,2.7700366666666665,5.23285,4.031395,4.406765,8.168225,3.677965,0.7118254545454545,3.847395,4.124264166666666,2.24631,3.926245,3.8234,5.77755,4.09983,3.69735,3.824715,4.238735,4.462655,4.396775,2.89343,3.769525,4.987635,3.91887,2.293085,2.993775,6.79528,5.28335,2.06756,3.057005,4.475294166666667,3.918735,4.791305,4.11337,2.6894899999999997,0.9167077777777778,4.470024545454545,6.4321150000000005,3.77449,4.81961,3.73817,6.458701666666666,3.85489,3.6488,2.691333333333333,3.79034,2.07363,3.639085,4.20721,2.5099345,3.667925,5.787,1.3925025,4.64223,0.637385,5.87085,6.1289,5.7224,5.7826,1.5579216666666669,1.8502266666666667,4.44754,1.994945,5.3742,0.53147,5.4769,3.26023,1.542632,6.3375725,6.38335,0.8871925,1.7415764999999999,1.2654640000000001,1.2654640000000001,1.2654640000000001,2.24226,4.585895,3.78857,3.417995,3.68862,4.957385,3.71843,1.9793420000000002,4.15292,4.811675,0.2970243902439025,3.457875,4.38137,4.227345,37.91786375757576,5.415329166666667,4.846615,10.324022333333334,2.740335,4.0262,7.172556666666667,3.32916,4.9837,3.770775,4.11039,9.285645,3.89299,2.6752633333333335,2.850155,4.722955,4.294425,3.774655,4.375745,2.072035,4.3424,4.00517,6.6260580000000004,4.132465,5.04695,2.3350125,4.320595,0.50107875,1.4437983333333333,3.295235,5.93065,3.06476,1.2351349999999999,1.2351349999999999,3.14572,3.856955,3.68873,2.8485,1.6290566666666668,3.70669,4.383895,1.7365025,3.3374333333333333,1.471314,1.8387900000000001,4.158985,4.43378,2.0188775,4.511515,2.192185,2.153485,3.59392,3.768445,4.092275,3.906815,6.098621666666666,2.3474166666666667,3.8426,0.7303009090909091,0.6489775,3.869685,2.441905,8.442116666666667,3.3097933333333334,4.817655,1.679615,4.466535,1.4884116666666667,3.822775,4.413325,2.5947,3.730455,4.8622,0.410451,0.410451,3.6580666666666666,3.1672666666666665,2.8647899999999997,3.44237,3.80345,5.33175,1.0349545454545455,9.985501666666666,10.638390000000001,1.82988,4.426625,4.536295,4.7289,3.703705,2.4835066666666665,1.95375,1.9543475,10.3656075,2.01972,2.71668,3.4802539999999995,4.3645,3.4802539999999995,2.1924025,2.7504833333333334,2.654776666666667,0.7043063636363637,5.3267058333333335,2.7834466666666664,2.5855,4.15167,8.334195000000001,10.28678,3.94197,3.974115,4.11894,6.593235,1.9325675,1.3981875,25.951771666666666,4.391795,3.691255,1.00523,4.917835,4.145675,4.82393,4.472045,5.44675,5.518566666666667,3.013806666666667,2.1820166666666667,0.6395235294117647,0.7303675,4.67376,5.13285,1.3986216666666669,4.358046666666667,0.9310416666666667,3.6051333333333333,1.4154933333333333,4.31668,5.8477,2.17407,2.50594,2.390815,3.75458,2.718315,0.4015116666666667,3.546035,3.528755,2.31535,3.323305,4.76154,2.7565233333333334,4.08529,3.355065,4.40793,7.911253333333334,4.901195,7.77173,2.7535,2.5353266666666667,4.64615,4.705545,4.360615,4.688465,3.76912,4.796895,1.13317,3.1048725,3.3345080714285715,0.725572,1.389808,1.389808,4.22114,7.03601,0.8218307692307693,4.777575,0.8787683333333334,2.8234066666666666,2.2139266666666666,2.505711590909091,6.070981111111111,2.4903666666666666,1.0953511111111112,2.279873333333333,1.23319,1.7678266666666669,3.0576266666666663,3.1286400000000003,3.25231,2.42435,0.8787683333333334,4.4966,4.41527,5.3868,2.72453,3.76512,2.08,5.8059,4.685565,4.29237,2.8300933333333336,3.10626,2.17892,1.3737075,4.05756,2.600775,4.431145,5.6366,1.6106459999999998,4.65536,2.810416666666667,6.175431666666666,3.65003,2.32513,0.8787683333333334,2.975425,2.93817,7.208222944444445,2.33396,1.8452860000000002,2.33396,0.4099791666666666,1.13667,4.001825,2.643095,1.8022575,3.482885,3.879436,0.579831,0.579831,0.579831,8.177655,1.574706,0.7169972727272728,2.36361,38.728407108225106,1.8690204444444443,0.6647744444444444,2.8718125,0.6647744444444444,3.822215,2.19025,2.2886,2.5471766666666666,5.1748,3.99945,4.40337,2.4195966666666666,0.8873942857142857,4.216155,3.190046666666667,4.87282,1.0330428571428572,3.040425,3.040425,3.8889,4.4197,3.243705,4.665901923076923,3.20565,4.512005,5.0649,1.725384,1.04253125,5.1678,6.50555,3.92497,0.6829810000000001,4.229135,4.003333333333334,0.876865,4.380015,2.51243,3.738365,4.10765,1.8598436363636364,1.8598436363636364,4.00372,3.46437,0.9057588888888889,2.972555,2.8557433333333333,3.20669,4.07621,4.364555,0.4653185714285714,0.33526999999999996,0.33526999999999996,0.33526999999999996,0.8005885714285714,0.566636923076923,0.6683250000000001,0.33526999999999996,0.33526999999999996,6.574764999999999,0.33526999999999996,0.8005885714285714,3.53263,1.270605,4.53818,1.1900716666666666,0.5705753846153846,0.876865,2.58473,2.60775,3.914165,3.053845,0.33526999999999996,0.33526999999999996,4.492275,3.7745,3.938685,2.628615,3.807965,1.513622,3.72671,0.6683250000000001,0.6683250000000001,4.69572,3.11623,2.59896,2.86775,3.6641866666666667,1.0421,0.9282846153846154,10.091650000000001,1.223225,3.589145,4.491305,5.18495,2.0905,0.37166,0.87739375,2.6556866666666665,3.077375,3.130465,4.25246,1.299118,5.6265,3.036585,4.9288725,3.9262,3.047753333333333,2.8049233333333334,6.31635,2.460503333333333,4.553885,4.0736,3.99884,5.89842,0.5398253333333333,4.457515,3.480866666666667,1.8697666666666668,0.7317822222222222,4.16544,4.39237,2.652755,2.411515,2.10969,5.00525,2.89344,2.841385,1.090248,0.46504769230769233,3.95674,0.357272,0.7772445454545455,4.00918,3.076125,3.696525,2.72642,5.36095,4.4495,6.207581333333334,3.410515,3.445965,4.404145,1.484525,5.16113,1.694604,3.910965,2.363845,5.8526766666666665,2.681205,0.987052,4.46134,7.08915,6.464371666666667,3.3369,0.7934633333333333,2.9652600000000002,4.11847,3.92783,4.600265,4.46609,4.008745,4.77455,3.006305,4.27992,1.8625233333333335,2.278115,1.4871366666666666,4.03058,9.91188,3.216695,3.75849,5.9178,3.035235,4.15551,2.5050666666666666,2.8529150000000003,3.305005,3.04169,3.510055,3.55263,3.389325,4.92922,5.7491,3.8263,4.819825,4.9509,3.76866,2.83523,5.2371,7.57435,0.9272944444444443,3.95514,4.21844,4.75462,5.59345,5.0025,2.48382,8.169495,2.5556266666666665,3.29623,5.91315,3.824785,4.36208,2.16594,1.63263,2.9909233333333334,2.28914,2.22214,2.8738733333333335,3.956205,4.71357,4.17082,3.274365,4.369104999999999,3.235815,3.30276,4.12397,5.8325,2.888475,5.228654499999999,3.921135,3.697815,3.502455,7.46435,3.452095,3.85594,3.950995,4.928225,3.00335,10.743,1.26293,2.39626,3.518335,2.7493933333333334,2.7493933333333334,2.114105,7.266986666666666,0.8436533333333334,3.050925,0.9226,2.091795,4.260185,4.948905,3.62966,3.881085,2.5852999999999997,3.089575,3.669905,3.877605,4.18295,2.73396,2.3930266666666666,3.810805,4.5869125,3.2561,4.104545,1.62987,1.6449960000000001,2.6249566666666664,5.5727,2.179735,1.7399466666666665,1.9973025,4.152985,4.55891,3.049925,2.607545,0.5193133333333333,2.40357,7.10037,3.19708,1.6293366666666669,0.85895625,1.0961733333333334,2.1453133333333336,2.3283625,1.1572733333333334,2.1743133333333335,4.536618499999999,3.997665,4.623785,2.422266666666667,1.88132,6.257820000000001,2.95785,2.0252166666666667,2.0252166666666667,2.0252166666666667,6.543806666666667,2.2592066666666666,3.43707,2.550065,0.47877600000000003,1.1730040000000002,2.34792,5.85472,0.43942888888888887,3.709455,4.006259166666667,5.6943,2.9266055555555557,0.43942888888888887,2.9266055555555557,0.906945,1.163164,5.8324,4.18428,6.67121,3.995385,4.40707,3.402295,4.14003,4.93578,5.4057,5.85285,3.821465,3.73861,4.91252,4.285355,4.14814,4.381475,4.511605,1.3534766666666667,2.54169,1.19038375,2.058725,3.1856429166666667,1.6323629166666667,6.73815,5.57539,2.661223333333333,4.337205,2.879105,4.629185,2.75177,3.850645,4.78359,9.403089999999999,5.09755,4.319735,2.3272825,2.975335,2.04176,0.62788,2.164324666666667,6.02835,5.1977,4.82587,4.26655,0.5048093333333333,1.99377,1.4345525,4.27079,0.6779861538461538,6.8973625,2.1280625,1.1536275,1.1536275,3.906454,1.9334320000000003,3.1969066666666666,2.60883,4.66881,3.44494,3.44494,4.543535,5.565835,2.69549,2.4058333333333333,3.1581499999999996,4.77245,1.8234480000000002,2.82625,5.49135,4.990105,4.53505,4.025375,3.9330016666666667,4.317955,3.5398525,3.12414,2.3634275,4.350895,5.31255,3.2819100000000003,5.0284,5.4478,2.18866,2.48343,6.2019,7.00155,1.256762,2.6131,2.4091325,2.7136133333333334,2.1753025,2.556225,2.208609,1.0316044444444445,1.962865,2.66965,2.332595,2.539416666666667,2.539416666666667,2.868426,2.921225,2.195567884615385,2.592375,2.3026675,1.9461400000000002,1.5259806666666667,5.133335000000001,14.481798166666666,2.8868333333333336,3.21559,1.76796,1.76796,1.5819216666666664,1.5819216666666664,2.823636666666667,3.5844666666666662,2.724273333333333,2.0251375,2.0251375,3.9573,2.4946733333333335,1.12457,1.439857142857143,2.87576,2.7601766666666667,3.4956666666666667,2.4095102380952382,3.256486666666667,3.064773333333333,0.6659010000000001,2.532575,3.5100643333333337,7.181393333333334,4.62981,5.35905,4.30836,3.737535,4.969315,4.69649,2.7920266666666667,4.095285,1.3335283333333334,3.1378799999999996,5.61735,5.1537,2.634915,1.3026833333333332,3.24894,2.28266,2.833816666666667,1.4903766666666665,0.6579528571428571,2.95095,4.162399166666667,4.89809,4.05879,4.575,3.0444866666666663,1.9752866666666666,3.3172916666666663,2.4787033333333333,3.2042266666666666,3.176553333333333,3.09719,2.54363,2.3007,3.6763333333333335,2.8105499999999997,5.05765,4.698985,5.225545833333333,5.225545833333333,3.59063,4.041965,3.70425,3.976465,2.8777,4.14498,3.403515,3.04517,6.0862,0.7714833333333333,5.2469,4.55433,2.561853333333333,5.4440333333333335,3.4198,1.6562716666666668,1.1908271428571429,2.03114,0.9514279999999999,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.27993107142857143,0.5542971428571428,0.5542971428571428,1.1801525,0.8119319444444444,1.6443404292929293,1.0134342857142857,1.0134342857142857,1.2343359848484847,0.41000444444444445,0.4385266666666667,1.2228825,1.4647775,2.53075,2.177105,6.15097,3.1263666666666663,3.704645,2.6342749999999997,4.779276571428571,1.3782383333333332,4.979605,4.02839,4.99523,3.014465,1.5256539999999998,4.619798076923077,4.085025,4.36498,4.40816,2.787025,4.47982,4.48785,4.659005,1.26063,3.87606,4.581725,3.184435,2.3998233333333334,3.462495,2.527015,3.358795,4.31244,3.0141333333333336,4.690715,8.872264999999999,3.339585,4.74145,4.0242,4.3402433333333335,2.41184,4.03498,0.9551157142857143,4.3932,3.50042,2.23136,1.16568875,2.943565,1.2386366666666666,0.4833866666666667,3.3703333333333334,4.43694,5.342169999999999,3.6688666666666667,2.425285,1.949725,4.87246,3.881133333333333,4.62451,2.6674,2.3006033333333336,3.9467,3.89322,3.549745,4.887675,4.43825,3.698695,4.583815,3.097466666666667,4.085935,2.1683837500000003,4.371955,5.15255,3.332595,4.548895,2.597855,3.81228,5.34975,3.696385,4.83584,4.62432,4.62331,2.251723333333333,4.64346,5.0474,4.55656,2.0515375,1.077375,3.950235,4.557115,3.93267,4.826695,2.113065,3.76698,2.393105,4.83243,4.50641,4.52781,2.1420525,4.08406,4.393545,4.137165,2.353473333333333,4.48775,4.553405,5.10735,3.553855,2.0515375,2.35341,2.650725,4.98,3.71146,3.98606,3.58396,4.66314,2.308055,7.04186,4.936835,4.5558,5.2647983125,5.127682500000001,4.99554,3.36762375,2.6763266666666663,2.6763266666666663,3.403,3.433265,4.661705,2.0439575,2.81490625,0.94011625,2.4171133333333334,2.8263200000000004,2.2097666666666664,3.009956666666667,4.06571,2.6378033333333333,5.10075,2.4511499999999997,4.2757,4.7830575,2.260725,4.22317,2.5662766666666665,2.4771366666666665,3.917875,0.91232,4.95062,4.369315,5.803627499999999,4.591415,5.53685,1.2308557142857144,4.45141,6.3791,7.787045,3.1633033333333334,3.1747933333333336,1.875414,0.810299,3.84515,1.0220357142857144,4.97587,4.515645,5.81375,3.260785,3.565565,1.1127271428571428,3.42413,3.433115,4.508495,3.87883,2.707225,2.71609,2.34058,4.305965,4.66828,5.54,4.30714,3.4098,0.3922055555555556,0.3922055555555556,0.3922055555555556,0.3922055555555556,5.80265,2.47326,6.0854,3.02374,5.0658,4.681165,3.859645,2.16037,2.46577,1.49346,5.08845,2.7296866666666664,4.25916,3.84533,3.486315,1.526,1.128205,4.419135,2.58684,5.669283333333333,3.97691,4.48452,2.439565,1.4772033333333334,0.901961111111111,3.14789,4.016305,3.620675,2.1050875,7.848990000000001,4.732225,3.397005,2.195,0.43996599999999997,3.467125,3.134635,2.209315,2.07143,2.80071,2.928575,2.303725,2.832183333333333,3.084105,3.40249,4.33311,3.462,3.716005,3.00261,5.466815,0.6072000000000001,4.674395,5.7472,4.89905,4.59809,3.1657966666666666,5.1958,4.37997,4.09589,5.251613333333333,5.1319,4.55016,4.38259,3.621555,4.95672,3.47908,9.16023,4.944325,4.104475,4.59712,4.90881,5.60645,3.37728,1.1172777777777778,5.840718333333333,3.322945,4.52575,1.3475849999999998,4.48164,3.700995,6.389103333333333,4.388695,3.304195,1.9671200000000002,5.0244,2.08026,0.96975,4.18166,6.0583,1.9884333333333333,2.3464533333333333,2.868793333333333,3.16185,3.781985,3.849425,4.9186,1.6689033333333334,3.939995,4.009650000000001,3.362995,3.796666666666667,3.66765,3.05956,2.72349,1.7724525,2.4777033333333334,2.6998033333333336,4.431105,0.5469674999999999,2.6731533333333335,4.198,2.868275,3.445233333333333,4.200675,4.811365,3.81519,16.663018848484846,2.403303333333333,4.185033333333333,1.47922,0.9273181818181818,0.9273181818181818,0.9273181818181818,0.9273181818181818,0.9273181818181818,4.3073,4.540925,4.6812,8.981144,2.347635,2.347635,4.47239,4.644294166666667,1.3357275,1.8793233333333335,3.658325,2.47288,2.25676,2.066825,2.92461,3.786814666666667,1.6910075,3.344955,0.8229642857142857,2.71908,2.7130733333333334,3.0671999999999997,1.5050733333333335,3.102816666666667,2.149896666666667,0.93762375,2.73362,2.756536666666667,1.2865111111111112,2.3526433333333334,2.47653,2.1807866666666667,4.306383333333334,1.7148700000000001,2.77886,2.0458525,2.61209,1.09827,2.6695466666666667,4.800482000000001,3.6265,1.04724875,3.0268466666666662,1.362595,2.40145,2.3399233333333336,4.6123666666666665,2.95996,2.3636166666666667,4.470564666666666,2.6766166666666664,2.194665,2.7202566666666663,2.3112166666666667,1.5922766666666668,2.8373633333333337,3.03519,2.75757,2.4435966666666666,3.1119033333333337,2.599346666666667,2.36048,3.8527415000000005,3.8527415000000005,3.0678533333333333,2.0454166666666667,1.9259366666666666,2.464116666666667,5.514436666666667,2.8099000000000003,2.1863233333333336,1.675805,3.0385933333333335,4.26843,2.45058,1.029,2.7879733333333334,1.6427100000000001,3.737966666666667,2.13688,2.4955366666666667,2.1024533333333335,3.1140600000000003,1.3394059999999999,1.7056666666666667,1.5588233333333334,4.411115000000001,2.574876666666667,3.930355,1.0383655555555555,4.209845,1.9719666666666666,2.02053,1.7295639999999999,1.5809333333333333,3.350433333333333,22.898824699134202,7.384866666666667,2.726243333333333,3.4610874999999997,2.70119,10.084303333333335,3.0235966666666667,1.00468375,2.5652266666666668,2.3807,2.040153333333333,2.81983,2.6528300000000002,2.4473066666666665,0.939822,3.194463333333333,2.6141566666666667,3.0048933333333334,2.6322300000000003,2.4904033333333335,2.1811700000000003,2.2455133333333333,2.80852,2.64525,2.0495225,1.582326,5.05783,4.442835,2.22546,2.915675,2.259673333333333,2.36466,8.054419166666667,1.9879866666666668,4.754365,2.4207475,1.89274,8.19102,2.8031333333333333,2.6427433333333332,2.4564175,1.8414000000000001,1.4765534615384617,3.1052366666666664,2.998976666666667,4.161035,1.564475,3.5662333333333334,1.4953175,1.4953175,4.29982,3.633575,3.565677142857143,3.565677142857143,5.628973333333334,3.466685,0.470475,11.539414297924298,1.3039966666666667,0.9571685714285714,3.501621666666667,1.4207223931623931,1.767655,5.8833433333333325,3.810955,0.7454163636363635,2.1961733333333333,5.061154666666667,2.3679325,3.72063,1.2882685714285713,5.3072,4.93422,4.57135,3.16314925,1.895148,2.25947,2.592283333333333,2.3494266666666666,2.19862,4.918323333333333,4.2006,3.97092,1.79703,4.689295,4.002025,3.2916433333333335,2.135245,4.81294,2.3191433333333333,8.679146666666666,6.29132,1.82905,2.73949,1.769498,4.471633333333333,4.471633333333333,2.9543633333333332,2.71381,3.1747268333333336,4.847695,9.7150675,4.170155,2.4533975,5.53,4.2971,5.02655,1.9840579999999999,0.87587,1.3412616666666668,4.502325,4.69252,3.611166666666667,2.5208833333333334,3.6731,2.1429066666666667,3.836765,5.00865,3.408745,5.34505,3.1485966666666667,3.3972233333333337,3.2528900000000003,3.1901333333333333,3.2390166666666667,6.14525,3.0002,5.4268,4.714385,3.078415,3.34245,3.34245,5.319542500000001,11.697930833333334,3.6231000000000004,6.25704,7.426218333333334,3.604915,2.46739,3.99762,1.4071300000000002,3.80857,2.532675,2.9888933333333334,2.903983333333333,3.0858166666666667,2.007,2.418553333333333,2.61474,2.4546633333333334,2.821846666666667,3.083833333333333,3.6952,2.699593333333333,2.87281,3.83266,2.6296666666666666,2.3143,1.11397875,2.0719975,2.7410033333333335,2.1467199999999997,2.4340699999999997,2.5707166666666668,3.4036000000000004,2.329006666666667,2.0888833333333334,2.43715,3.0842433333333332,2.5227866666666667,2.6598166666666665,2.5077833333333333,3.0515733333333332,2.8624033333333334,3.4187840000000005,2.581253333333333,2.3223,2.2733633333333336,2.7199833333333334,2.5006366666666664,3.4867000000000004,3.408333333333333,2.938675,1.919295,1.919295,0.67329,1.3966480000000001,3.8891,3.288045,2.7322100000000002,2.007,2.8635066666666664,1.2162214285714286,2.5662833333333332,0.5540179999999999,3.2926,3.04054,3.6465,2.967693333333333,2.5013166666666664,2.4365833333333335,2.912576666666667,2.6471533333333332,3.1881266666666668,4.405336666666667,1.46916,2.7798466666666664,2.37602,1.8218566666666665,2.2799833333333335,2.7256366666666665,2.565393333333333,1.573988,2.5932766666666667,2.6729566666666664,2.4454733333333336,2.61725,2.6874533333333335,2.84102,3.1520266666666665,1.33103,2.8201366666666665,2.3638766666666666,3.6994666666666665,3.742233333333333,1.7838825,1.9839433333333334,3.15822,2.4020766666666664,3.4340666666666664,2.6699266666666666,2.3809466666666665,5.163775,3.2220166666666668,2.023163333333333,1.479762,3.3796666666666666,6.038496666666667,3.0786466666666663,3.4534333333333334,2.6909833333333335,2.9332766666666665,4.685578666666667,1.6076720000000002,1.1401444444444444,2.075953333333333,1.6056825000000001,4.70343,2.4825433333333335,3.02768,3.1834733333333336,3.26168,2.1860666666666666,3.5040333333333336,2.61315,1.563246,2.60903,3.611095,3.6818549999999997,3.3017,3.49685,1.50364,2.80851,3.453055,2.986065,2.1691566666666664,3.8007000000000004,3.9380333333333333,3.9276999999999997,1.4181975,5.647339,3.14494375,1.4225116666666666,3.38448,3.21755,2.842245,3.66096,1.81292,1.81292,3.20034,3.0522833333333335,2.760265,4.85394,4.26542,4.183859333333333,1.5347060000000001,3.168673333333333,2.402276666666667,4.34135,3.14902,4.719573333333333,2.650306666666667,2.3651633333333333,2.4714133333333335,3.75369,3.65596,1.664938,3.0829133333333334,2.847565,2.2831925,4.233085,1.2957866666666666,3.062685,4.338455,2.807945,3.57927,4.15009,1.680695,1.7626466666666667,2.37637,1.00556,1.9196114285714287,1.8777225,0.4431507142857143,3.698475,2.318145,4.664035,4.181215,3.055165,4.5484225,3.3455333333333335,3.1215566666666668,3.5238,2.4081266666666665,3.1593999999999998,2.751163333333333,3.0107533333333336,2.1936966666666664,0.6585184615384615,2.3529433333333336,0.60164,1.9622666666666666,2.56343,3.1601666666666666,3.0964466666666666,1.4169466666666668,1.20434,4.289535,4.257545,3.15421,3.754325,3.08125,1.79506,3.80108,6.412921111111111,3.25964,5.030355,1.480835,3.91783,1.900795,4.387365,3.31757,2.1198,3.87231,3.1409,3.639825,3.906385,2.0369375,3.74575,5.51383,4.843205,3.462585,3.073435,1.58283,1.9835575,3.763605,3.2693,3.26576,3.540495,3.50994,3.343425,1.5567875,3.56563,3.239895,1.58237,4.0359175,1.0521583333333333,3.257765,1.6437675,3.74337,4.485416666666667,3.62248,2.963435,3.64161,3.2452,1.8278675,2.32762,3.808,2.67566,5.64344,4.07544,4.57825,2.59753,2.715445,4.24656,4.517405,2.1806859999999997,2.1806859999999997,5.825775,4.0789175,2.8874775,2.820775,2.1289599999999997,2.877415,3.285895,3.7157108333333335,2.6925075,3.20916,0.992894,3.631825,2.830505,3.99899,2.58973,1.5301525,1.314615,2.844065,5.791553,5.4807975,3.49724,1.5196925,4.125115,3.713015,0.891045,2.965335,1.324078,5.0367925,1.3987100000000001,3.507245,1.703825,1.4169466666666668,2.65624,2.510925,4.650725,6.647783333333333,3.864815,4.527424166666667,2.60135,2.91424,3.919785,3.54188,4.121085,4.367045,1.25041,1.6009674999999999,1.0121925,2.391545,2.6772,4.934665,1.0121925,4.224205,2.427385,1.4922575,1.4922575,1.58237,3.68743,4.11765,3.751945,1.370176,1.370176,0.9188916666666667,3.08444,2.0452375,6.0062675,4.051545,3.78956,2.7975666666666665,0.9402242857142857,3.549635,3.073805,4.124295,3.494835,3.5267525,3.5267525,3.27901,4.096535,1.7731075,2.536895,0.9539855555555555,1.9857866666666668,3.52193,2.43656,3.1591625,3.1591625,2.67236,4.722015,4.44924,3.76527,3.52581,3.970505,2.5296833333333333,4.190100833333333,2.46629,3.80363,8.070129999999999,5.0879,2.787225,3.23371,2.925265,4.46623,3.2137539999999998,7.6346025,4.512399,4.639665,3.38718,3.84083,3.547285,4.35548,4.80019,2.812185,4.481605,6.081129166666667,2.83679,2.258578222222222,3.116675,3.252245,3.6945,5.47335,2.19671,2.1170666666666667,2.947665,2.8426225,3.2241766666666667,6.968857333333334,1.4839325,4.850865000000001,4.850865000000001,3.170635,3.9067058333333335,3.2995,2.4429333333333334,4.988,4.128894,2.0354573333333335,3.9704,3.836385,3.493544166666667,2.75609,2.69696,5.807136666666667,3.43941,5.1262,3.10505,4.66042,4.17968,3.522015,3.0522833333333335,2.08935,2.8295,3.64842,2.85727,3.0496950000000003,3.18759,5.844101666666667,2.55248,1.74281,3.266096666666667,2.4251533333333333,3.813595,2.70079,0.891045,3.54658,3.976205,3.865405,6.188905,3.012705,2.66341,2.9934,2.9934,3.897219166666667,3.663415,3.56943,2.071095,5.73573,2.1804325,4.55036,3.63257,7.95688,2.8535266666666668,1.3361966666666667,3.09185,4.680235,0.6213675,3.88092,3.185475,3.04984,2.876455,4.00909,2.2738033333333334,2.468555,9.171489999999999,3.44087,2.84606,1.3987100000000001,3.70223,2.782085,2.37299375,4.15682,5.252785,1.598645,1.1734033333333334,0.9783716666666668,4.27681,4.115615,3.347965,3.2724625,3.2724625,1.5567875,2.32605,2.951688611111111,0.8640711111111111,3.010305,1.024195,1.50364,3.324605,3.39879,2.76897,2.69598,2.4829708333333333,4.448455,3.61937,3.22098,2.875635,2.796925,4.173495,6.925515,3.982855,0.8782025,2.5994505,8.79204,4.6035,4.149745,1.1408675,4.656865,1.3726683333333334,3.5445275,3.5445275,3.59077,8.232904166666668,0.7902766666666667,4.55341,4.267895,2.3957366666666666,4.280200833333334,3.68031,2.1677625,9.847969666666668,1.772705,2.43954,3.13199,1.7038066666666667,4.139709666666667,3.095915,3.29652,3.2313733333333334,2.584805,2.89325,1.1011783333333334,7.56072,3.779595,3.711725,3.669505,1.884925,2.963435,3.9084608333333333,3.6572,0.5805469230769231,3.573905,3.817745,4.27651,2.10746,1.2670299999999999,3.88197,4.2087,8.16358,0.6890592307692308,0.7163925,0.7163925,1.9203833333333333,1.3419666666666668,1.371248,1.8354433333333333,4.711975,1.2719799999999999,0.8872,4.06825,3.4758,1.2245325,3.404795,4.700655,3.105535,0.733804,2.397225,9.323535,3.1212,3.21207,3.24512,1.6984725,2.412943333333333,2.70424,4.410065,4.175625,3.84189,0.89366,1.296338,0.87644,4.1786674999999995,4.249945,4.07815,0.8640711111111111,1.6562860000000001,3.72023,2.3574325,4.8075616666666665,1.12007,4.811765,0.577395,0.577395,0.577395,9.15701,3.886605,1.024195,4.05437,4.786525,2.79801,3.25835,4.8624591666666666,2.75304,1.8573288888888888,2.197153333333333,0.733804,1.624849,0.6241188888888889,0.72296,1.42549,4.071285,3.54314,1.98945,7.161191666666667,4.974105833333334,0.6529822222222221,6.08615,4.660613333333334,3.154795,4.457645,7.801106333333333,3.7452487499999996,4.974105833333334,4.575998833333333,2.1785866666666664,4.236575,3.704775,7.083475,3.14847,0.43996599999999997,1.6055959999999998,4.175315,1.8072959999999998,1.1734033333333334,3.77791,2.363846666666667,1.790065,3.204365,1.677342,4.44126,4.417585,4.08503,4.800915,6.47277,2.650305,3.81377,1.324078,2.2400675,3.66483,3.257465,2.0354573333333335,3.949715,2.414485,5.0095,2.918405,2.576305,3.4056825,1.637248,3.46492,0.8640711111111111,2.3293155,0.9783716666666668,1.35169,3.667005,1.4839325,1.42549,1.9878925,3.23244,7.20715,0.89366,1.1408675,1.300924,3.556885,3.678715,1.300924,3.94585,2.2400675,0.6213675,0.8640711111111111,1.9203833333333333,1.324078,0.4431507142857143,1.6627120000000002,4.297816,2.3957366666666666,1.29414,2.434975,1.4181975,1.772705,2.62146,2.197153333333333,4.444395,2.62146,0.891045,3.255234,2.055235,0.08670068181818182,0.08670068181818182,0.08670068181818182,0.08670068181818182,0.08670068181818182,3.2225266666666665,2.8365466666666665,2.63059,2.69532,4.549925,4.428375,1.7295639999999999,3.632415,3.64555,2.3498,4.84067375,2.72048,2.472635,2.51198,2.720035,4.505865,8.275933333333334,2.1713275,1.9173533333333335,3.0563217857142853,0.9277742857142857,1.4443366666666666,2.3839166666666665,1.91576,1.5664325,2.8882066666666666,2.2090666666666667,2.7845933333333335,2.5579466666666666,2.6068166666666666,3.685865,3.331945,2.5155266666666667,1.340144,3.582795,3.630235,1.6618333333333333,1.364154,1.364154,1.364154,3.445765,2.57688,1.2448633333333332,2.0426466666666667,1.3392457142857144,4.38033,1.5366666666666668,6.112043333333333,3.2049125,2.4809433333333333,3.211702,3.211702,5.238519999999999,3.17661,4.470795,4.73806,2.06833,2.8995333333333337 +GSM1946777,1.0,1.9509775,1.9509775,1.5589166666666667,4.86415,4.311355,2.7935863157894736,1.68555,8.391847867647058,4.83938,3.1262966666666667,3.36111,2.258575,3.5162,4.604415,1.842266,1.350576,5.0667,2.4380633333333335,2.37987,5.4249,5.224141666666667,4.15981,2.233645,1.6888539999999999,3.99301,5.1357,4.14568,0.7192075,1.6150413888888888,1.9582022222222222,2.229965,2.39629,1.1923128571428572,0.7092616666666666,3.038047857142857,1.5565925,1.7964325,1.17096,2.13617,1.143405,1.1377025,1.1386699999999998,1.6254439999999999,0.9382339999999999,0.9710300000000001,0.8186019999999999,1.326042857142857,1.572298,1.859486,1.5298539999999998,2.1782399999999997,1.8038820000000002,18.4061795,0.37015133333333333,0.820648,1.138146,1.876174,1.508226,2.22194,1.0263814285714286,1.0263814285714286,1.0263814285714286,1.1323783333333333,1.028396,4.9930175,1.1274075,2.412485,2.2029375,2.48907,1.02119,2.3561625,2.553275,2.0648825,1.7145625,1.80753,1.5449475,1.7040075,2.5365533333333334,4.33052,5.1737,4.811695,1.5320799999999999,4.877595,4.898,4.053855,4.381555,1.130035,7.48818,0.6040525,0.6040525,2.218045,1.185347142857143,18.0791,5.22205,5.3026,4.872375,4.595805,4.256485,5.3588,0.4881094444444445,2.27312,1.69361,2.3369975,4.790355,3.91065,1.3766375,2.8062466666666666,2.80443,2.5296933333333333,3.2850066666666664,3.233195,5.1695,2.7626165,4.548595,3.1985499999999996,0.7164527272727272,1.4923899999999999,2.342245,4.3943,2.938995,0.54770375,3.432335,3.925215,0.83150125,4.17192,1.7204894805194804,2.185365,2.727875,2.1410175,3.70536,5.4607,3.26704,2.5807233333333333,3.4446,3.0188966666666666,3.60864,2.742183333333333,5.7784,3.577335,4.97217,3.329485,2.851295,3.596595,2.38693,7.239371666666666,3.611365,3.133535,3.48188,3.11496,4.64383,0.7959811111111111,9.701047380952382,3.67236,2.2144733333333333,1.8664583333333333,3.4958666666666667,2.47928,5.0069,5.8482,2.2545725,4.666111666666667,2.77901,4.96062,2.2545725,2.92163,4.65607,5.117815,4.62388,8.358978333333333,3.25478,4.193935,3.135545,5.49145,5.11225,1.3859816666666667,7.97737,3.92426,4.39432,3.34449,3.5346,3.346355,2.18039,6.095035,2.229985,4.26107,4.02228,5.4232,5.02865,4.36045,1.7973999999999999,2.732675,2.88735,2.2284075,2.2284075,6.055975761904762,3.07295,1.9816066666666667,4.301225,4.5504,2.7824,1.4564416666666666,0.9888222222222223,5.4103,2.491845,6.6734,3.584545,4.83305,3.78793,2.97136,3.81208,3.60383,3.68149,4.18403,5.8424,2.799095,3.55541,9.003526666666668,4.58994,3.4362,3.1389066666666667,2.8844966666666667,3.806566666666667,4.500581666666666,1.890645,2.7928466666666663,2.493533333333333,1.697544,1.59031,2.6473033333333333,1.726955,2.36917,3.112573333333333,2.6760033333333335,2.436436666666667,2.9036399999999998,4.898,3.87282,4.06763,3.431535,4.42163,1.318355,2.1068,2.8438105714285715,2.07268,2.49685,2.46021,3.5206,1.9441400000000002,1.3656300000000001,2.5428866666666665,0.6480319999999999,1.5360166666666668,0.5560166666666667,0.5560166666666667,1.6336066666666669,1.9967266666666665,3.4516333333333336,1.3456000000000001,1.4965866666666667,0.35796538461538463,2.6629133333333335,0.6480319999999999,1.2367866666666667,0.23835135135135138,1.52422,2.05376,3.843033333333333,3.1169366666666662,2.370293333333333,2.5047133333333336,2.2234833333333333,2.350166666666667,2.51144,2.32908,2.2313733333333334,2.590716666666667,1.8737633333333334,2.754585,4.22939,0.8139133333333333,1.89376,2.59469,1.9439033333333333,3.5592566666666663,1.459382,2.53365,2.2897366666666668,4.2069833333333335,2.3935633333333333,6.809291428571428,1.5967714285714287,3.1842666666666664,2.2427325,2.0104325,3.5554666666666663,1.7425075,1.8652325,4.27395,2.577636666666667,2.18697,4.046335,4.308065,4.37207,3.988945,2.34256,3.39532,5.2058420000000005,3.83787,3.86809,4.10886,4.24509,2.93592,4.53719,3.46737,0.8977825,4.692345,1.2674783333333333,5.29765,3.71202,6.038205,3.774525,4.22638,0.97931,2.264125,3.45768,3.988645,1.0112842857142856,1.327713675213675,2.0793985714285714,3.770288571428572,4.74104,5.598346,1.895955,3.57046,5.75545,0.33806642857142855,3.58317,2.294925,1.016095,4.37997,2.118655,12.21951,1.0565,1.7122625,2.7096733333333334,2.50908,2.6156343421052632,5.750919342105263,0.6033368421052632,1.7195133333333334,3.0966066666666667,1.089345,3.5286333333333335,1.2042671428571428,5.6128,3.88649,2.1133966666666666,5.9228,5.21905,2.34884,1.1640485714285713,4.35769,4.632275,4.248175,0.9225636363636363,8.07836,2.84381,4.77231,2.65009,2.44097,4.908155,2.7068166666666666,2.79284,2.23221,2.5683233333333333,3.148835,2.9907566666666665,0.344214375,4.04248,3.59978,3.822945,3.85733,4.52039,6.212457000000001,4.06731,1.65428,5.67235,4.888635,4.749665,4.93164,1.069305,2.6707733333333334,3.316183333333333,2.5062633333333335,15.632405,3.24639,4.031615,4.0211,4.63441,2.7408,4.894052916666666,1.896155,0.7542433333333334,2.4876675,3.612435,3.952875,3.641965,6.339965,3.1872433333333334,2.14578,2.241415,3.4497999999999998,4.470005,2.415905,0.3663385714285714,2.5704982608695652,1.892635,1.15523125,0.477167701863354,0.5879968322981366,0.3663385714285714,0.3663385714285714,0.3663385714285714,1.1933575,1.4877025,0.917365,1.5518975,4.64339,0.21506941176470587,11.352007126623375,3.1706633333333336,2.8671366666666667,4.413635,5.0016,4.048755,2.14634,4.69511,4.149009666666666,4.44814,3.924755,0.7355123076923077,3.3961333333333332,4.227289743589743,0.52742,3.322425,3.16311,5.08115,1.0381727272727272,2.65879,4.29189,3.412235,1.8239075,1.76875,1.49965,3.617233333333333,3.994595,3.03728,2.9088700000000003,5.2395,5.7052,5.35515,3.0397133333333333,2.9965905,5.931665000000001,3.32504,5.8285,0.4264090476190476,3.5065666666666666,4.2099166666666665,2.1556166666666665,2.696495,2.8417508333333332,5.2233,0.6641883333333333,2.0086925,4.850745,4.164425,1.044497142857143,4.24659,3.369735,5.0351,3.4652999999999996,4.647915,3.340645,4.19496,1.214,3.306355,2.785906666666667,4.9389,4.32109,4.733595,5.73265,4.50853,2.67674,6.57326,2.1452033333333334,2.38971,3.5525333333333333,2.6690533333333337,2.7790466666666664,2.27685,1.654894,1.6086,1.7787899999999999,0.78738,1.64569,2.39927,2.0599133333333333,3.1816633333333333,3.10854,2.6257433333333333,0.9389088888888888,5.0512,3.3074033333333333,5.567182083333334,2.8581920833333334,3.24465,3.3956,1.8526333333333334,1.8526333333333334,2.893342857142857,2.893342857142857,3.2449128571428574,0.4966628571428572,1.76917,2.4347566666666665,3.6087333333333333,2.273455952380952,2.273455952380952,2.273455952380952,7.606866666666666,4.344433333333334,0.9424,3.369675,4.744999999999999,2.2382,4.762725,2.992375,2.29082,5.5906,3.15872,3.16196,1.38755,1.93037,3.4066666666666667,2.93192,2.5633133333333333,5.231,4.418666666666667,3.6650333333333336,4.80027,1.64796,2.71279,3.115906666666667,0.7619044444444445,2.1254,4.186914,7.891064999999999,1.470265,2.93749,4.46532,2.11076,1.832505,1.832505,1.16320375,5.03085,8.126415,4.51486,6.877785,4.63459,1.9780666666666666,4.771725,3.61093,5.0152,4.544553333333333,0.35287684210526316,2.84284,2.836255,4.316355,3.830015,1.801596,2.0131225,2.62655,4.63641,4.012695,2.85947,2.52641,1.6473520000000001,7.16603,4.314865,4.2134,5.30715,4.09691,4.292785,4.70359,3.58235,3.7019599999999997,1.94369,1.0987728571428572,2.571555,3.78617,4.08952,5.64565,5.7586675,2.2053075,3.0576266666666663,2.620226666666667,2.64548,2.94823,0.6882171428571429,2.186365,3.47654,1.13406375,4.841015,3.316765,6.108495,1.3131828787878788,1.3131828787878788,3.838535,3.78494,3.658345,5.38655,2.7508166666666667,2.2275966666666664,3.90173,3.23973,2.1130925,3.436033333333333,2.5645233333333333,4.194055,3.3699149999999998,3.96161,3.97286,1.0078966666666667,2.625595,4.42207,4.42873,3.27202,2.5009366666666666,2.821575,0.7038222222222221,0.7038222222222221,0.7038222222222221,0.7038222222222221,1.4590772222222221,3.8729,3.8729,1.8070899999999999,7.453956666666667,3.522745,4.812035,3.4239333333333337,3.02265,4.730445,4.057595,4.921325,5.3991,1.821765,4.45131,3.94587,2.75365,4.04264,3.417095,2.436625,4.02923,1.96975,4.29988,1.65056,3.454469583333333,2.981905,1.7143425,1.2581066666666667,2.77796,4.00195,1.420606,0.8272933333333333,3.765695,1.257935,5.013613333333334,5.03685,1.3112,3.46472,0.7633522222222222,2.692653333333333,2.7859833333333337,2.5812133333333334,2.633365,4.54084,2.8198666666666665,4.606695,5.37335,4.495915,4.346905,2.12749,1.2981142857142858,4.20207,4.769195,1.5001275,1.5001275,4.017805,0.27895466666666663,1.88556,0.27895466666666663,0.27895466666666663,0.27895466666666663,0.27895466666666663,4.519105,2.68448,3.366895,3.57013,3.245926666666667,4.483505,2.73809,0.9591025,0.9591025,1.0144383333333333,1.0144383333333333,3.71232,2.256715,3.723375,1.7954941071428572,1.7954941071428572,4.70114,0.5938235714285715,2.4319675,7.477835000000001,5.2417,3.02426,3.46578,0.92461375,2.14741,2.042205,4.743265,4.719035,4.3747,3.818765,1.3184742857142857,2.58685,1.98964,7.48812,1.79742,4.719935,4.751555,2.63008,3.805705,6.20365,7.90536,3.964245,5.19285,6.49245,2.216105,3.20393,2.267065,2.207005,1.95829,3.83409,3.742505,5.606718333333333,6.25064,4.253195,1.1104833333333333,1.3548,4.34885,3.982305,2.2578975,5.3321,4.43335,4.558166666666667,1.7950633333333332,3.9201333333333337,1.5813300000000001,6.348213333333334,2.73284,2.37898,2.2368099999999997,2.716395,3.05545,3.7786333333333335,3.839933333333333,2.9500766666666665,3.461,1.5021,3.929915,3.1698,3.30305,0.38156599999999996,2.95822,4.248995,2.583525,5.5405,5.21135,4.616545,7.074529999999999,4.736305,2.11817,4.537135,5.14435,1.5541666666666665,5.72255,6.3819,5.2129,4.611435,3.096465,5.6751,4.88913,5.19985,5.2880373333333335,7.3266025,4.009605,1.1389449999999999,1.4182033333333333,2.9698,2.0038799999999997,4.473565,4.110965,5.501117499999999,2.3807833333333335,2.3799966666666665,2.737223333333333,2.383783333333333,2.24412,1.078108888888889,0.5295294117647059,3.968055,3.862265,3.651866666666667,3.90662,3.00507,3.2821433333333334,5.510888333333333,3.0474433333333333,0.6124294117647059,3.128155,5.54175,1.7888275,1.409316,3.702645,3.42858,2.4573266666666664,3.7254,4.659505,2.615423333333333,2.3185233333333333,2.29669,2.387026666666667,2.66184,4.217766666666667,4.906710833333333,7.356014166666667,2.09362,5.36605,3.9377070833333336,6.165917416666667,3.1587899999999998,3.09647,2.3127,2.0454866666666667,1.50922,1.50922,2.5711733333333333,2.386013333333333,2.6972166666666664,4.239295,1.690664,2.098045,1.946375,0.558905,3.71884,0.63414,0.97818875,3.42121,4.3655,4.21638,1.6831725,4.924805,1.8845933333333333,0.8868714285714285,4.44589,3.6921461904761905,3.30555,2.48354,4.897355,0.2918775862068965,2.5251164999999998,3.19129,1.393535,3.724485,6.5372,2.250695,1.3228833333333332,5.35525,3.71485,2.894956666666667,2.894956666666667,3.44029,3.67531,4.571215,5.282185,5.0437,1.1381333333333332,2.490666666666667,2.732226666666667,4.41848,5.1459,4.545795,5.07125,4.4317,3.9465333333333334,3.7091,3.4649,3.825366666666667,3.09376,2.9363833333333336,0.7086528571428571,2.531825,2.4456725,4.149855,3.071593333333333,3.3029766666666664,0.7573508333333333,2.441555,3.8110295,4.577545,5.7934,3.652825,2.128305,2.128305,0.9008050000000001,3.171945,4.282245,4.231155,4.594332142857143,2.99493,5.23035,0.5512018181818182,3.268745,3.991235,4.674105,3.590793333333333,0.7855914285714285,3.272855,3.89249,5.03535,3.752365,5.1896,2.652985,4.160555,1.58945,0.9913785714285714,2.7281566666666666,5.09475,3.91275,3.121,1.4710150000000002,3.90494,2.676525,2.85395,2.741737777777778,3.0698899999999996,4.547676666666667,2.8165333333333336,1.7525,3.3343000000000003,1.4443140476190477,2.9781633333333333,2.9770800000000004,2.2442925,2.9292533333333335,2.85702,2.2686733333333335,2.5105666666666666,3.86694,3.0755033333333333,3.491624333333333,2.46258,2.499325,4.302528333333334,2.813546666666667,2.5102466666666667,3.491624333333333,2.1393766666666667,0.7996763636363636,2.4352175,0.9631933333333333,2.1576975,1.5841725,0.9287818181818182,1.7755175,1.9654225,2.7063792500000003,2.5404,4.58452,1.40083,3.711375,3.21536,1.5292059999999998,2.1009233333333333,2.9255433333333336,1.5353266666666665,2.7874933333333334,2.7732533333333333,2.415480681818182,1.9181225,1.903204,3.6726666666666667,2.4064799999999997,2.8521650000000003,2.9055866666666668,3.2749,3.877466666666667,2.1386533333333335,4.4869666666666665,3.6546333333333334,3.7561666666666667,3.2916166666666666,3.617366666666667,3.5177666666666667,2.03921,7.46058,4.71665,4.405095,3.261875,2.831155,1.90691,3.877005,1.7250640000000002,4.09752,4.93418,1.439282,2.25004,1.119905,2.9514066666666667,1.7056566666666668,2.575623333333333,4.804266666666667,3.5135666666666663,3.547705,4.79704,0.84044125,1.5233560000000002,0.989508,3.49612,11.171596666666666,3.9229333333333334,6.56065,1.9730925,5.1527,4.26064,2.4247975,5.14545,0.2868129411764706,0.8068,4.4349,5.0457,7.00131,2.00592,4.375455,4.78825,4.570535,4.64999,3.949235,4.451175,2.97674,5.567145,3.706725,3.46967,3.108625,2.1543733333333335,2.0605166666666666,1.3237495208333332,2.4082033333333333,4.16178,5.23255,1.57232,8.95121,1.6729900000000002,2.862415,0.998988,0.998988,7.591525416666666,2.99279,2.5867,2.1429275,2.778496666666667,2.1836699999999998,1.1927566666666667,3.2904675,2.9565099999999997,0.625302857142857,1.8132233333333332,3.318834,3.318834,1.24963,2.5120366666666665,2.2867133333333336,2.83924,1.2184075,1.7699966666666667,4.860430666666667,2.654456666666667,2.6728,1.2057125,1.2057125,4.27394,5.4821,4.44148,3.311875,3.57964,5.90587,2.84835,2.971713333333333,3.660266666666667,3.995725,1.12392,3.2272166666666666,2.676025,4.29889,2.1457633333333335,4.718805,3.4884,4.28863,3.437685,5.434664,1.0218155555555555,2.14272,1.777625,3.399495,4.9792775,3.836775,4.217895,4.033245,3.500325,1.7170275,4.58454,4.09469,3.71786,2.4160633333333332,0.84921375,3.35805,4.359515,4.93312,1.2916733333333335,3.1007866666666666,3.1214099999999996,1.9619766666666667,1.887636568627451,1.887636568627451,1.3016283333333334,2.7075633333333333,1.1267728571428572,1.372654,4.559055,4.919395,0.5198238095238095,3.854615,3.5346333333333333,3.805245,5.41545,0.41618649999999996,9.352195,5.25105,3.09944,4.18896,4.718495,5.332392142857143,5.1278,6.803135,0.7358318181818183,2.80297,5.5886,2.77623,1.939625,2.05392,4.751,5.19064625,2.577642857142857,2.6538133333333334,3.4301999999999997,1.9946825,4.666385,10.581299999999999,8.136740416666665,3.6918666666666664,4.51542,3.0055983333333334,3.06766,3.99591,1.755302,2.86241,3.54509,4.875515,4.749895,4.64295,6.63048,2.7169933333333334,3.050605,4.603805,5.22455,5.50735,6.96279,4.47193,6.4739,3.46487,3.16873,2.916055,6.07195,3.67332,6.1675,2.189795,3.3685666666666667,3.34219,6.2186,4.309265,4.793695,1.46915,0.88912,2.62395,0.6684266666666667,4.28621,3.461835,3.38454,2.816125,2.1816166666666668,3.096,2.593425,3.085042,1.920742,3.065735,2.989225,2.276365,2.713975,3.7332620000000003,1.19419,2.8090875000000004,5.58625,3.6864666666666666,1.08324,2.7535233333333333,3.6702291666666667,3.7074,1.5563,5.7565,5.47585,2.1617566666666668,3.0150633333333334,29.63896551138241,3.5550333333333337,1.7064666666666666,4.051366666666667,2.1231466666666665,2.62906,2.8956933333333335,3.476766666666667,2.0075525,2.720725,2.3376825,3.5984385000000003,2.9299999999999997,2.545425,1.5813675,2.2093599999999998,2.854725,0.3944345454545454,1.09986,2.80346,1.4889519999999998,3.733625,1.5563,1.94935,26.154269666666664,5.0836,3.790695,3.590175,2.531395,2.3843625,2.5087433333333333,2.34425,4.838,5.831804999999999,5.85555,1.60655,1.987864,2.27402,2.492278333333333,3.638555,5.5629,4.61647,4.669045,0.18451574468085108,4.78943,4.8820975,3.718385,9.36736,1.01042,1.01042,2.9882033333333333,3.78915,5.86985,2.093538888888889,1.0586966666666666,5.08785,1.900795,4.33203,3.774665,3.445965,4.26241,3.937475,4.870745,3.039955,0.7136077777777777,3.1864,2.217983333333333,4.44266,8.33402,4.33101,1.8658700000000001,1.8658700000000001,6.58575,5.09975,4.08707,5.993,2.5542666666666665,5.5525175,1.5465799999999998,1.4638866666666666,3.0173466666666666,2.61552,3.72245,2.8039,3.69584,4.1902925,4.520575,5.3991,2.410075,2.656775,1.8130625,2.893725,2.3761225,2.4916975,2.017225,5.015493333333334,1.920885,3.81576,2.3872133333333334,3.0683633333333336,2.5458000000000003,1.5734233333333334,1.5694571428571429,0.956423,3.0312333333333332,3.8911,0.870656,4.721015,2.012205,5.969417916666666,1.9883325,2.0028675,1.526475,1.51403,5.801502222222222,1.9130099999999999,2.86069,3.7774,1.12653875,1.743015,5.05048,3.3310666666666666,2.7942433333333336,3.557533333333333,3.17041,2.98087,1.257672142857143,0.28345333333333333,0.28345333333333333,0.28345333333333333,0.28345333333333333,0.28345333333333333,4.385505,2.64322,2.49182,3.30118,1.2885866666666665,2.6522533333333334,3.368933333333333,3.1908100000000004,3.78685,2.824305,1.8528266666666668,2.9381733333333333,3.2800233333333337,2.3350825,1.97284,3.691725,2.6053166666666665,2.993446666666667,5.56035,2.6381866666666665,2.73425,2.5095933333333336,11.186808333333333,4.976335,4.695465,4.998975,4.11758,2.8168933333333332,5.0997,3.70131,2.625275,6.042434999999999,4.17638,3.265555,1.952205,3.69268,5.052059,3.557765,18.554026714285712,1.17839875,4.709505,0.8632611111111111,1.26095,3.07275,4.901525,4.2857,4.680515,1.4038216666666665,2.48791,4.185035,2.4973899999999998,4.70402,3.281953214285714,2.7255599999999998,0.6598516666666666,2.7434333333333334,4.96338,2.4847875,2.29193,2.174195,18.391743333333334,1.524512,1.2776125,2.42618,0.3219669230769231,1.942005,2.9126333333333334,2.15424,2.8157366666666666,2.76045,7.629456666666666,1.92028,2.6758,2.349655,2.195955,1.5590933333333332,3.3286533333333335,2.95497,3.485635,2.9589766666666666,2.002155,2.590139166666667,3.1693716666666667,5.02305,0.4640275,3.4177999999999997,3.0182,3.053885,2.1077025,3.740349,3.34999,1.5433066666666668,2.34661,2.26679,1.6538000000000002,1.86294,3.385895,3.24333,0.736565,3.356545,5.03635,4.44125,2.58089,2.58089,3.3767666666666667,4.938565,3.057745,3.3091,2.36183,0.8816709090909091,4.116265,3.634105,5.77485,4.572535,2.44007,2.44007,1.3269675,2.73326,4.903445,4.463025,4.090005,3.3588,2.59126,4.550105,3.40559,4.30373,2.9661033333333333,2.60445,4.800492,3.167666666666667,2.6626766666666666,1.8318266666666665,3.71824,2.7592,1.6052166666666665,3.73894,3.924635,4.34606,2.5496733333333332,4.62793,4.386375,6.6615715,3.94433,2.24418,4.80649,2.686335,7.64542,2.7811299999999997,1.2766383333333333,4.56767,3.6649999999999996,4.342025,0.6066471428571428,0.8154016666666667,3.7414,3.59217,2.249759696969697,4.91176,2.823925,2.73002,9.708636,1.668946,1.849896,3.42049,2.60733,3.519485,5.2766,6.666843333333333,3.056338333333333,2.1597399999999998,3.143546666666667,2.6388166666666666,3.3115233333333336,8.543796272577996,0.8707569047619048,1.0089625,4.77203,0.40242266666666665,1.696815,2.292035,2.0675475,3.000475,2.133795,3.85446,2.507775,12.59786,4.94142,2.4780675,2.4780675,4.556885,0.8018133333333334,5.574073333333333,3.870805,3.887715,5.314215,3.535875,4.800835,1.4893516666666666,2.796765,3.312755,2.553105,3.010465,2.740465,5.7518,3.425655,3.477975,3.03847,2.87119,2.545225,4.586785,4.64741,2.9836533333333333,3.26639,5.065977500000001,4.58923,19.568592738095237,12.949121547619047,3.205498571428571,0.6839266666666667,1.5461142857142858,4.464755,3.30777,3.0101601923076924,2.21323,0.8660777777777777,0.7116283333333334,0.6427228571428572,2.1312725,1.7400099999999998,5.492766666666666,3.7052666666666667,0.7285136363636364,3.32055,2.261975,2.17881,2.02942,5.91258,1.4907400000000002,4.876925,3.16245,3.1329466666666668,2.292705,2.5653533333333334,2.520513333333333,0.7151545454545455,2.895295,1.9592566666666666,4.11712,3.0751633333333337,8.019309166666666,3.679385,3.35064,2.21442,3.765805,7.815787499999999,2.0554775,2.48065,2.55535,1.579595,2.613025,2.363245,2.735525,0.9391260000000001,1.3906625,0.97690875,2.77494,4.20407,6.21795,5.80005,3.17627,2.368395,3.024175,3.5414999999999996,7.657426666666666,1.2043166666666667,0.38546375,2.93802,2.1424133333333333,1.615296,3.636917,1.3129279999999999,2.040538333333333,4.500108333333333,3.3263833333333332,1.2569466666666667,1.9045833333333333,3.8989583333333333,3.62526,4.458055,4.722965,2.1653575,5.314,3.87971,0.828723076923077,4.9749,4.13701,4.374395,3.4756,2.51438,1.3512520000000001,1.0839875,3.48908,2.748405,3.218565,4.137315,2.587495,2.5625633333333333,3.164275,3.61706,5.10415,2.51005,2.635995,4.08724,5.81335,0.54406625,4.396435,1.8067225,3.38867,3.8702666666666663,2.1150575,3.06581,2.2514625,2.013355,2.813645,2.7919275,1.8792933333333333,5.3673,3.609715,1.3437157142857143,7.08223,1.0690266666666666,3.83824,1.6836633333333333,4.482025,4.17689,2.7865800000000003,3.23378,3.997365,8.90911,2.81984,3.501075,3.866965,3.4826,1.715725,7.6995,3.99005,4.680005,1.50977,4.19596,2.87173,1.23648625,2.0750599999999997,4.142195,2.128995,4.196175,4.8119250000000005,4.250995,4.643685,2.3340425,5.485,3.94859,3.3745666666666665,2.5550666666666664,1.837202,5.13285,6.37125,5.36465,4.51936,3.10101,2.3710675,3.98328,3.385435,1.1978640659340658,3.97096,4.692055833333333,4.017695,2.820415,3.452575,0.5730714285714286,0.5730714285714286,5.0535,4.36153,4.749025,2.3511,4.123675,5.08865,0.837705,4.018545,5.17715,4.87608,3.638575,4.764485,1.8397925,3.09454,2.1923175,4.556375,0.703225,4.17719,4.44372,2.831885,2.9760733333333333,4.416275,2.47799,3.176155,61.32559869047619,3.154775,2.5297233333333335,1.6079925,3.229555,3.732005,0.7690775,0.9533725,2.0708325,2.0708325,1.324584,3.154655,2.219845,3.888116,7.29767,2.803266666666667,1.2106228571428572,1.7497833333333332,2.674846666666667,3.932216666666667,0.947268,1.884705,1.22696,2.04172,4.43328,4.18693,3.119255,22.948784404761906,4.318625,3.952525,3.14595,2.2373433333333335,3.409515,3.316005,1.7234375,5.31543,1.6908439999999998,3.92339,3.415701095238095,6.1652249999999995,2.181315,2.59703,1.952275,4.157275,2.4968933333333334,2.138595,2.1121466666666664,3.6480483333333336,3.90243,3.16155,4.37845,4.834775,2.58375,3.352895,3.08713,2.73982,3.0465883333333332,2.29861,2.1787875,3.44807,1.17561,3.79689,4.829555,2.66521,4.998005,5.0197,4.982645,2.1689000000000003,2.577735,2.739715,2.773105,3.95472,3.3123,4.76478,0.73526,4.396601333333333,2.7289,3.9977,2.2470475,1.835266,4.702605,1.2632333333333332,2.779485,4.312505,1.09972,3.566575,3.787905,4.67562,6.32182,2.05443,2.770875,2.628816666666667,3.8455,2.2224233333333334,2.8039306666666666,2.91823,2.3722733333333332,2.36396,1.3086466666666667,1.892125,1.892125,1.86799,2.01862,1.70732,2.489333333333333,4.053955,5.3308,3.66306,1.551575,4.433045,4.093275,3.449385,4.15069,1.93292,1.93294,4.765853333333334,2.013625,4.2650483333333336,4.248165,3.50514,2.375363333333333,3.7001774999999997,3.29348,3.065985,3.41975,0.14272408163265307,2.7159633333333333,7.54995,1.489072,3.408775,2.68827,1.0147857142857144,1.1465483333333333,1.85597,3.92305,2.883045,7.139355,3.399975,3.55829,2.783245,2.71022,3.5801,3.32837,3.92738,3.4356,2.8323666666666667,5.25685,4.398415,4.53302,2.3979866666666667,1.9650075,3.474375,4.813095,2.830845,4.269,2.238815,2.671235,3.43493,3.759225,2.316525,4.36529,5.2455,2.912255,4.24127,3.947575,3.45352,4.46836,3.48037,2.842015,6.29608,4.549435,5.6728,5.1288,4.109075,5.4220749999999995,4.038045,3.76355,1.336786,6.77455,2.39825,5.106,4.1287,4.182815,3.2037666666666667,2.0279599999999998,2.2715866666666664,2.4437599999999997,0.892525,3.3381666666666665,2.79387,3.07931,2.0303633333333333,3.711255,4.591895,2.5325333333333333,0.5572508333333334,4.59716,4.56648,4.4352,4.983135,3.456005,4.633365,5.12845,4.997825,1.4519222222222221,0.9504153846153846,2.65589,5.02395,5.8471,0.49965625,2.813805,2.4831266666666667,4.70889,4.53818,4.0529,1.79504,4.734045,3.069705,4.314575,3.437815,6.20395,3.845345,6.8776625000000005,0.46529333333333334,4.0936,0.918398,2.501475,4.1062666666666665,3.2647166666666667,1.3024,2.2861599999999997,4.370705,3.529125,4.164225,2.11261,2.06416,2.48133,5.01015,4.333375,4.03403,1.6404900000000002,1.2384071428571428,5.59135,2.26076,7.7859225,5.0906,3.571505,2.07564,1.54047,4.16925,4.459685,1.8086833333333334,2.324435,2.596,2.7159633333333333,6.9193533333333335,3.1742233333333334,2.9773533333333333,4.17677,3.72013,2.0034266666666665,2.96924,6.69674,5.74455,4.842995,0.5344227272727273,3.546525,4.722335,4.4841364285714285,4.072475,4.50649,3.12157,3.03111,3.297855,2.838135,3.425205666666667,1.6348179999999999,5.783888,4.58738,5.30565,3.8003,3.30359,3.1854633333333333,2.184355,1.4164925,1.470805,2.72042,2.49254,1.0831216666666668,2.62648,5.5222,5.0692,3.44789,4.55843,17.03859404761905,4.29653,4.44149,4.151715,0.6917541666666667,5.4255,4.408565,4.544835,4.60273,5.3174,2.51431,3.606885,3.1515,1.46814,3.06501,4.52048,2.6589766666666668,1.539714,3.97988,4.879525,4.13383,5.185,5.04835,5.58085,4.60004,2.8563666666666667,4.48231,4.445105,2.66736,3.058873333333333,2.9968066666666666,1.70638875,5.2067,2.8453432142857142,1.9064766666666666,3.92276,2.323475,4.51855,4.302528333333334,2.905725,2.69132,4.40506,3.584455,4.67495,4.363615,4.304645,4.930958,2.9084,5.35215,2.7217166666666666,3.716985,4.539,1.568834,4.6635,1.0298399999999999,4.42353,3.378255,1.0798385714285714,3.749375,2.036455,6.74048,2.3065559999999996,2.3065559999999996,2.3065559999999996,0.7368033333333334,1.3736983333333335,1.857265,3.59898,5.41595,3.494342777777778,1.863145,2.543575,1.7955366666666668,3.84971,2.4473,0.4289853846153846,1.75098,2.251315,3.126,1.870075,2.82334,2.369405,2.045765,3.82445,2.7128,5.3586,3.05946,1.898985,6.60486,2.022535,4.244915,4.14323,6.8561266666666665,1.7012033333333332,3.59772,3.7869,3.83149,4.523915,2.87091,2.0746875,3.653505,6.199356666666667,2.011105,3.7386,3.13336,2.084935,5.2236,4.86565,2.699863333333333,2.14647,3.7581475,6.115205,5.6531,3.863725,2.4567,2.693345,2.8876,2.58209,3.76757,1.3434125,2.71093,4.584415,0.8688425,4.0268,3.7961,3.724755,5.25275,2.38109,3.439365,1.97286,4.50755,8.083216666666667,4.68435,3.337,3.871435,0.98014875,4.49495,2.07084,4.30763,5.4046525,4.14902,4.039075,11.148240000000001,4.878835,3.46328,1.511265,0.7286441666666666,2.57828,3.85401,3.54411,3.59874,2.1222066666666666,2.8475300000000003,2.2274066666666665,1.1413900000000001,1.1413900000000001,1.8154033333333333,2.4156366666666664,2.1649966666666667,2.2272000000000003,3.2197433333333336,3.03557,2.1504666666666665,2.73441,1.3053666666666668,2.848613333333333,2.0489833333333336,2.0280833333333335,1.38681,3.179316666666667,0.7170966666666666,9.793105416666666,0.7170966666666666,3.207273333333333,2.0619583333333336,1.87037,4.699735,4.225455,4.383795,4.172995,2.2148766666666666,2.839703333333333,3.283917333333333,2.6991333333333336,3.410266666666667,3.410833333333333,2.78788,3.1089533333333335,1.5489266666666666,5.28215,7.187417142857143,2.4906133333333336,3.517333333333333,3.0124133333333334,2.745983333333333,3.0447,1.1923128571428572,3.3807333333333336,2.9128399999999997,4.17597,5.7897,4.41097,2.9755299999999996,3.6659666666666664,3.3380666666666667,4.082406666666667,4.136735,2.59931,4.24492,3.3813666666666666,3.17498,4.8822,3.01469,4.317675,6.679493333333333,2.719806666666667,2.5206500000000003,1.51565,1.5213833333333333,4.7455099999999995,3.4964199999999996,2.4403133333333336,2.05171,2.07527,4.636635,3.89975,2.89247,3.093056666666667,3.4753666666666665,3.6125000000000003,3.6592333333333333,4.1498,3.20205,0.64402875,3.943566666666667,2.51132,2.6134533333333336,3.535905,4.2862,4.8364,5.93005,2.75191,4.48216,1.35339,2.6546333333333334,2.6546333333333334,4.01915,3.33509,3.66295,3.2474,1.78011,3.197185,4.016465,0.9751271428571429,3.7865093333333335,3.9785489523809523,3.0299846666666665,0.38450799999999996,3.58435,3.890805,6.27567,3.213265,5.46835,3.25997,3.879815,3.804225,1.76401125,2.856335,4.71255,3.432125,3.354233333333333,3.1188866666666666,5.84825,2.12327,0.98889625,2.048973333333333,1.5573066666666666,5.01073,2.4059399999999997,2.370083333333333,1.8039675,4.679585,4.05291,4.46066,0.6332639999999999,4.12792,3.96723,2.4571866666666664,2.3781933333333334,2.60409,3.408579722222222,3.9644633333333332,1.4247533333333333,0.6518473684210526,0.8233785714285714,3.7228333333333334,4.375805,6.200536666666666,4.470185,4.958165,5.8474,1.5043285714285715,3.8702666666666663,2.239646666666667,1.0114025,5.8374,6.13085,2.72916,4.755995,3.92143,6.885938333333334,4.475033333333333,6.674195,3.6423,2.6341665277777775,6.2598,10.749784461538463,2.45416,0.670605,3.60735,4.0799,2.089975,6.2906,4.41301,3.7454,2.8644200000000004,2.8644200000000004,3.916855,3.81903,3.88709,5.30645,4.11490080952381,2.4738282857142857,1.1005625,5.55985,2.715925,5.70972625,3.94681,4.92562,3.29804,2.1012575,4.700525,4.63114,3.586,4.117085,4.481865,29.68987035714286,2.540175,2.605125,2.2701175,1.7288500000000002,2.76024,1.335842857142857,3.4208,3.090056666666667,3.3396333333333335,3.5734,0.7924923076923077,3.330856666666667,5.28775,3.4148,3.3153733333333335,4.363725,5.7426925,5.0211,4.63979,4.00214,4.203210833333333,4.49474,3.5037333333333334,1.7260825,0.9796166666666667,1.4408366666666668,2.5835933333333334,1.4834833333333333,3.21913,2.3979399999999997,2.2322,1.8304533333333335,2.70449,2.000495,1.7254633333333331,2.846405,4.18109,3.63437,4.498075,1.677232,3.880466666666667,2.4614366666666667,3.957145,2.3876,2.50451,3.369135,1.49322,3.45242,6.5273916666666665,2.83369,3.72476,3.954155,2.512025,3.191865,3.8464666666666667,4.45848,4.4509,0.33421737451737454,0.33421737451737454,4.96256,5.19995,3.26704,2.877435,5.1788,4.502335,0.6942092307692308,4.237965,5.11175,3.49856,6.82645,4.931145,7.62982,13.643844999999999,13.551636153846154,4.05656,4.352115,2.6509933333333335,0.5968061538461538,2.854316666666667,4.508995,1.3421483333333333,4.461185,3.6621666666666663,2.96238,2.0068966666666666,1.8504133333333332,5.033035,3.93269,9.077998214285714,5.15475,3.91752,7.513096515151515,3.22922,3.4088333333333334,1.50354,4.396239166666666,1.7239825,2.6346833333333333,2.7169266666666663,0.320234375,2.995705,3.13119,4.708966666666667,0.8118399999999999,1.4112483333333332,4.322435,0.56056,0.56056,3.2018249999999995,3.0176133333333333,3.5231999999999997,3.83158,4.37799,5.71295,3.761875,4.45951,2.787205,3.14449,2.5028433333333333,0.8664416666666667,2.53958,2.875105,2.88889,7.05264,2.88296,9.8673,3.20055,6.23355,3.087385,2.3179,2.7209,3.033325,1.8263575,2.4048825,2.0978275,4.00717,2.56215,3.7092825,2.8231,4.053624166666666,4.053624166666666,2.6952641666666666,2.6952641666666666,8.742635333333332,2.3801799999999997,0.8097139999999999,2.5879166666666666,2.4750566666666667,2.5293366666666666,3.7092825,2.0945,1.922316,1.6771260000000001,4.526485,4.225295,1.73149,4.380635,3.96763,6.391933333333333,6.76986,2.25793,4.39188,6.61531,4.21462,3.676525,2.8338566666666662,4.27659,3.600440909090909,4.57196,5.187056666666667,8.166185333333335,3.3476075,3.956855,1.2872733333333333,4.495505,5.587404,3.78853,4.077623333333333,4.541175,2.56808,2.7129666666666665,7.2244399999999995,3.08991,0.815612,6.16932,3.73203,2.9811099999999997,5.2539,2.9811099999999997,4.050125,4.06235,5.2986,1.01515,3.9631133333333333,4.433315,3.907615,1.30759,1.803095,4.89362,4.052575,2.682665,7.325178333333334,4.293995,4.610415,4.680775,4.5585925,1.5525325,4.22514,2.838545,3.68116,4.42081,4.38099,5.0714,2.732285,3.741975,5.2535,2.083423333333333,1.7918375,3.842033333333333,2.9458333333333333,3.2961466666666666,3.09933,3.8939333333333335,2.9723966666666666,4.89006,3.30769,3.49174,2.858685,1.81898,3.628133333333333,2.0267,3.017245,3.17611,2.957805,0.703225,2.1834775,1.7872066666666668,3.30716,2.15036,3.4630419999999997,3.53443,1.4024699999999999,3.4159800000000002,4.696375,0.843056,1.30651,3.644685,3.69193,4.220705,1.90614,1.9311966666666667,3.562045,2.4085925,1.6893566666666666,2.993755,1.994495,1.202,1.3669975,6.68291,3.35431,2.229685,2.4266,2.4850475,3.900215,0.8418525,0.3422642857142857,0.7900985714285714,5.83855,2.142846,4.448865,2.0256975,2.4164605714285714,3.9964262857142856,1.5799657142857142,1.1336385714285715,0.70187,0.6366357142857143,2.9892733333333332,6.7091,3.026285,4.03422,0.31724142857142856,3.577105,18.955246428571428,3.131675,7.369351352564102,1.08168125,1.08168125,1.08168125,1.08168125,4.4008175,4.01961,2.97899,2.368933333333333,3.49262,3.31865,4.300005,4.174215,3.45989,4.613215,4.4103,4.282995,3.691378666666667,4.3305,5.0748,4.217925,5.28675,3.67736,4.565315,2.6357266666666668,4.24204,3.293605,3.92736,4.03475,4.09136,3.12702,2.3721075,2.4745333333333335,4.2307,1.2989735714285713,4.08869,2.9985666666666666,3.5753786666666665,4.250995,4.209525,3.05989,2.736685,4.23648,2.95541,3.16783,5.05795,4.990855,3.17561,4.39758,1.75785,1.75785,1.812365,4.67837,2.69875,6.367386,4.891045,3.815538333333333,6.42635,2.9397,2.246515,9.408875,5.29385,6.2734625,4.608895,3.042263333333333,3.6613,0.28252758620689655,0.84529,3.856962666666667,4.37165,5.0642,3.2426100000000004,6.92531,5.2479,0.5757178571428572,2.58094,0.46102699999999996,1.8876102380952382,3.25692,2.29048,4.361535,3.760755,3.042405,3.423725,3.307185,3.598825,3.355105,3.507025,4.277385,2.299855,1.8876102380952382,2.76788,1.930725,3.568675,2.197015,3.788105,3.557655,1.715725,4.45323,4.77666,1.3151316666666666,5.13325,4.778995,4.15464,2.8652433333333334,3.0862700000000003,4.41097,2.210646666666667,1.3276759999999999,2.3218533333333333,2.57255,2.5527166666666665,3.5210666666666666,5.03605,3.265395,5.236330000000001,4.10215,4.891645,4.409365,1.850836,5.3553,4.50483,5.52775,4.3528,6.8701799999999995,1.5864975,5.085,3.21808,3.108635,2.025785,1.7788599999999999,3.861195,4.45509,2.1966466666666666,2.5906062500000004,3.419175,3.419175,3.0272,3.4946333333333333,3.21083,3.897255,3.624385,0.8107384615384615,3.05367,4.28346,4.923036944444445,2.978495,2.94777,1.763955,2.743365,3.54273,2.20544,4.672545,4.01298,4.453115,1.99791,1.0569545454545455,5.9455,3.655335,3.7418,3.3699999999999997,1.9637280000000001,30.374035845238097,4.54036,3.171395,4.80608,4.4734,0.8834,7.39714,2.205375,5.62755,1.6328366666666667,5.34195,6.020085,3.61861,3.043395,2.1006775,3.7352666666666665,4.628835,2.1018675,2.7879533333333337,3.705185,4.04343,2.59405,5.8902,2.14611,5.32985,1.21424875,4.549985,3.556655,4.19345,4.555195,3.09305,2.265563333333333,4.289405,4.663835,3.825375,3.825375,6.93275,1.512445,4.13531,7.4103666666666665,3.2176,4.214885,4.26371,2.745415,3.425345,4.229675,1.2786825,2.22115,4.361595,4.739535,5.6033,4.405005,3.096395,9.494853333333333,3.22713,3.65629,1.7251999999999998,3.66292,2.1060766666666666,2.59975,2.2231629166666664,1.29194,2.7405566666666665,0.9053685714285714,1.1293442857142857,1.1293442857142857,1.1293442857142857,1.89419,0.54209625,3.884645,1.2645233333333332,2.9162433333333335,0.9431416666666667,1.7557833333333335,2.647936666666667,2.2099800000000003,0.75823625,1.7532699999999999,1.6111733333333333,2.33884,1.6671559999999999,1.6671559999999999,1.60788,1.7363666666666668,1.05839,1.8737833333333331,1.50537,1.1415466666666667,2.901095,2.090025,6.06295,1.58835,4.15142,17.79851975,7.26007,3.25677,3.607876666666667,3.1411166666666666,2.928596666666667,2.6398566666666667,3.0041733333333336,0.7293383333333333,1.0107300000000001,1.0107300000000001,0.63215625,2.3591133333333336,4.3943,3.499345,1.684026,5.28235,3.89535,2.43999,3.961345,4.57559,4.179655,5.0125,3.5673999999999997,3.223895,3.305025,5.7968,3.7725666666666666,4.52151,0.5303950000000001,0.5303950000000001,2.294445,3.378065,5.60815,3.54502,4.00276,4.887575,7.3111060000000005,7.967320000000001,3.48953,2.23298,5.20065,4.358765,2.5883966666666667,2.17358,3.097205,1.2488766666666666,3.587825,2.37097,2.462755,3.385033333333333,5.40655,2.131335,5.187056666666667,1.6817775,3.5546333333333333,3.98953,0.9513628571428571,3.7658666666666663,2.84136,5.0829,1.225205,1.722565,2.2575475,2.3677275,1.6533175,2.428255,2.0227125,2.0590875,4.536915,4.450105,2.58467,1.873635,1.4487133333333333,3.688,2.0177733333333334,2.56475,4.582375,5.7789,2.0983325,2.939375,3.553915,3.512115,2.50737,5.51675,3.999125,2.819825,1.428275,4.346935,2.198205,2.667316666666667,2.476755,3.647245,4.962595,4.9203,2.70194,2.67949,3.1132166666666667,3.6302,1.9345333333333334,1.560614,5.4828,3.499033333333333,2.3067143636363636,3.061386666666667,3.0105766666666667,2.1875733333333334,3.3633333333333333,3.3861000000000003,3.7052,5.13365,4.088395,3.266016666666667,5.6045,3.46049,2.42609,3.738855,3.947825,4.031155,6.328624,1.979784,3.799705,2.68817,4.71375,3.635905,0.566245,2.22714,2.19233,3.233635,2.845175,2.151465,2.71511,0.636279,2.7723833333333334,4.84956,2.588275,5.05735,2.5095899999999998,4.303585,2.011265,4.856815,4.227305,1.824472,3.23224,7.39734,4.540695,4.69248,4.94013,7.023494659090909,4.50811,4.737405,2.22602,4.712815,3.066465,1.9154566666666666,1.93586,2.6845733333333333,0.9761185714285715,2.21067,2.4900433333333334,2.57302,3.1000633333333334,1.7250599999999998,3.242755,1.9536066666666667,4.5683,5.448770000000001,0.997535,1.94897,2.4549866666666667,2.84596,2.06121,1.0771133333333334,5.570276666666667,2.07774,2.6064233333333333,2.9395666666666664,2.65741,2.8356766666666666,3.20535,2.18533,2.91263,2.3345866666666666,3.997845,3.701205,3.80047,3.0068466666666667,3.0031666666666665,0.746545,1.77993,2.13741,2.0033,2.474056666666667,1.1475966666666666,2.72533,2.8984466666666666,3.96381,1.9785166666666667,3.514065,3.601015,5.7595,3.2406,0.6068766666666666,2.02718,2.840393333333333,3.7843999999999998,0.8062563636363635,2.88142,3.50103,3.610633333333333,2.712683333333333,3.230688333333333,3.6874,3.8706666666666667,3.0190033333333335,2.0875275,5.76875,5.14795,5.56325,5.47995,5.92155,1.7619733333333334,3.627005,3.5871666666666666,3.4463666666666666,2.9335133333333334,2.97423,3.851933333333333,3.3836,3.0426133333333336,14.113628333333333,4.227335,1.1049099999999998,3.475733333333333,1.6277259999999998,3.3961333333333332,3.3301233333333333,2.3929133333333334,5.789676666666667,6.810719666666667,2.478943333333333,0.873594,4.16022,3.6313,3.104685,4.84229,5.4677,5.96995,5.2005,3.37598,1.88691,6.468085,1.2872733333333333,6.3275275,4.76257,2.5344966666666666,4.477805,7.433066666666667,6.01055,2.2536166666666664,1.5052466666666666,2.2427325,7.348845,1.5563,2.9628766666666664,2.568106666666667,4.1988272222222225,5.94895,4.231255,6.46605,3.44218,5.4777,3.702775,9.25503,5.33835,5.71625,2.38659,2.4418325,11.413386666666668,3.28077,5.82745,2.42472,1.6406066666666668,2.9094466666666663,2.1361166666666667,0.69077125,1.088902,1.0615957142857142,3.97398,7.161593333333333,2.994772,1.4540266666666666,5.48285,4.38664,0.548349,3.657025,3.41883,4.5203,3.795215,3.63938,2.64578,4.305175,10.432120000000001,1.732505,3.8392749999999998,3.515995,3.868305,3.567135,0.7750275000000001,3.6435333333333335,3.8206,1.71776,2.5933433333333333,2.2919300000000002,2.5488,2.946263333333333,2.1737100000000003,2.34897,6.12442,4.970575,3.96324,4.597283333333333,1.7103833333333334,2.4541825,5.04,4.87982,4.798955,4.52119,4.93011,5.4238,1.75785,3.76583,7.71786,1.31873,1.5927933333333335,2.3924433333333335,2.42921,2.7878900000000004,4.83240625,0.8233785714285714,2.483555,3.33903,5.3074,4.444765,2.4253233333333335,2.8858366666666666,1.987605,0.5582625,1.928835,2.910285,7.4976650000000005,4.25412,4.33393,0.9050090000000001,2.955503333333333,9.316773,11.263096666666666,5.52595,1.17528,3.462745,3.77418,2.5943666666666667,5.506466,4.937985,3.8684,1.92941,3.6775333333333333,2.24253,2.560896666666667,0.8146418181818181,0.42204800000000003,2.48744,3.493195,1.9699886666666666,3.38295,3.3584,5.16655,5.41765,1.522296,3.2494633333333334,2.06519,2.06519,2.34266,3.016535,4.0662,2.8053933333333334,2.4165466666666666,3.44,3.567766666666667,4.181565,4.530585,4.45904,4.08868,3.89379,4.26992,5.39505,8.035344166666667,2.0034275,2.2828566666666665,2.8628199999999997,0.8899566666666666,0.7272966666666667,3.84734,2.296015,5.4348,2.8330866666666665,3.1077933333333334,1.826306,1.451195,4.161105,4.419415,4.13036,1.6408966666666667,1.28157,2.5674633333333334,2.043696666666667,2.5801000000000003,1.0619,1.0619,2.8124266666666666,3.987105,2.90929,3.10377,3.53854,2.071555,19.630455045454546,3.90857,5.56084,4.064025,4.17427,3.208135,3.4618,5.6594,6.17612,0.9027883333333334,0.9027883333333334,0.9027883333333334,2.63219,1.740657142857143,3.4947666666666666,4.3602,4.26028,3.3178,4.181065,4.286395,0.8936055555555557,2.0906433333333334,2.458136666666667,6.088348833333333,3.4634055,4.122641333333333,4.56988,2.1150575,2.0098266666666667,2.318356666666667,0.512455,0.9075580000000001,2.024705,2.231475,2.84767,12.911096666666667,2.4312666666666667,5.5096,0.7277714285714286,9.731835,5.7186,3.868845,4.392695,2.81115,5.61255,2.81115,2.917454,3.33221,3.761805,3.89624,3.826375,4.417305,3.48987,5.9175,6.848822,1.7175633333333333,2.638998,2.551795,27.55675454118404,1.577332,6.28195,4.21633,3.864925,3.86804,4.46545,2.65822,2.548245,2.181605,6.3151,6.65315,4.799955,5.1705,4.398015,2.038695,2.23007,4.19762,0.39216923076923077,0.39216923076923077,0.39216923076923077,0.39216923076923077,4.062045,3.372391666666667,1.1705133333333333,1.7517500000000001,1.1958222222222221,4.47553,2.4637366666666667,2.3455025,7.289375,3.397733333333333,0.1672403448275862,20.96873666666667,4.58347,1.7367599999999999,1.413575,2.29394,2.00476,2.494395,4.76105,2.902375,4.626245,4.003365,2.27588,7.2816374999999995,2.676935,1.943865,3.61683,5.82725,8.254840000000002,4.4229,0.3045756097560976,3.53821,4.154285,3.026756666666667,1.9551275,2.9137633333333333,1.5532983333333332,1.5532983333333332,3.950965,5.6683225,12.076908333333332,9.501625,0.6708555555555555,2.64162,3.789415,3.02775,5.00855,4.32708,2.0610399999999998,2.0610399999999998,3.736085,4.9968,2.5970666666666666,3.33678,4.92112,6.09225,5.658578,1.998498,4.74679,4.103895,2.510315,3.19964,3.2025233333333336,4.926815,4.56275,5.2703,4.54587,4.194665,3.77229,4.223165,4.347055,5.432,2.8566266666666666,3.1352733333333336,1.1649800000000001,4.24342,4.42797,4.18263,1.8997319999999998,1.9768800000000002,1.9030933333333333,3.4087,2.1159466666666664,4.496733333333333,1.8547166666666666,2.93405,2.88522,2.3086166666666665,2.4087333333333336,1.66742,3.7378666666666667,3.5233666666666665,3.7275666666666667,4.785846666666667,2.2502833333333334,2.9164666666666665,2.1011633333333335,5.81105,2.3062733333333334,39.52684408333334,2.3187656363636364,2.3187656363636364,2.4486399999999997,2.5683599999999998,2.24975,1.8220433333333332,2.8876766666666662,1.8406533333333333,0.7745923076923076,5.19565,7.644705,4.241815,4.16382,5.592,2.020633333333333,4.547465,1.91998,5.3066,4.718255,6.1035,4.257425,1.7260825,4.237015,4.684345,4.97921,5.2684,5.81565,4.199775,2.677395,3.1293133333333336,2.53592,2.1454425,1.762355,4.35171,1.99067,3.689965,3.689965,2.25922,1.5395666666666665,2.228876666666667,2.5426733333333336,2.7523733333333333,5.47905,2.868183333333333,1.181475,1.181475,2.82459,2.7738600000000004,2.4955233333333333,2.5455466666666666,2.3953866666666666,2.493936666666667,2.4240033333333333,2.2020030000000004,3.0256230000000004,1.637515,0.82362,62.61595226388889,3.9717360000000004,2.762723333333333,2.001548,0.830588,3.314923333333333,1.60612,1.60612,2.4850666666666665,3.176903333333333,0.813895,2.5224766666666665,5.4302866666666665,4.174133333333333,2.52963,2.857976666666667,1.9719466666666667,2.585506,0.31064375,2.8603633333333334,0.736626,2.4639233333333332,1.2774839999999998,1.2774839999999998,3.3267366666666667,2.13334,2.4611633333333334,1.3003646666666666,2.37505,1.3003646666666666,2.0721333333333334,3.31466,3.526033333333333,1.379982,1.379982,2.6569566666666664,1.3290066666666667,2.72856,2.3024999999999998,4.842485,3.93132,12.876589166666667,7.137045,3.520895,2.712415,4.389075,5.2981,5.54875,2.722405833333333,4.13408,3.93523,2.3928066666666665,4.57749,3.3099900000000004,2.7531033333333332,4.36152,2.2372900000000002,1.0982942857142857,4.07334875,3.03144,2.796455,0.8079685714285715,2.682915,3.278555,4.098415,4.24231,6.77295,2.4973899999999998,1.9758559999999998,4.543535,4.70393,2.3409925,2.764690833333333,1.9838533333333332,2.149414,0.867144,6.20735,4.623675,4.03277,3.389795,3.1826866666666667,4.284775,5.24475,2.9146900000000002,1.72424,0.5664066666666667,14.337820333333333,0.502550909090909,0.502550909090909,0.502550909090909,3.0767666666666664,4.1086,0.502550909090909,7.253568333333333,4.494883333333333,0.700969,0.700969,3.2247166666666662,3.15744,3.12893,4.552615,4.47685,4.45589,2.1181575,4.671302666666667,4.10841,3.530174047619048,4.79078,2.8815512500000002,2.3805325,2.431495,2.724,1.5542925,3.3940799999999998,3.0896833333333333,2.3394025,2.1990525,1.9757125,1.7968833333333334,1.5073525,2.578725,1.0975533333333334,2.714825,0.6076471428571428,4.97459,1.7557225,0.710665,2.3804125,7.7753250000000005,2.41945,2.168987,3.403555,7.10601,2.50742,4.636065,3.083785,5.91227,4.19595,4.290345,4.20304,4.625795,2.9524633333333337,4.259015,1.1941514285714285,4.22022,2.46345,2.6321133333333333,2.570945,2.0861,2.35872,1.274225,5.50395,0.9287818181818182,4.91436,5.34115,5.45225,5.99645,4.0548,2.4433433333333334,1.8791060000000002,2.8666,2.9845400000000004,2.38296,3.9380666666666664,2.67125,4.509495,1.808048,40.814237142857145,4.910265,2.4347600000000003,2.943433333333333,2.9486733333333333,1.5347266666666668,5.583408333333333,4.358765,2.8466533333333337,3.005376666666667,2.2872033333333333,1.7056175,5.7081,0.8551642857142857,4.511667142857143,1.4328571428571428,3.4209666666666667,3.556566666666667,2.7583699999999998,1.37835,5.12737,1.7929739999999998,1.7929739999999998,2.59367,2.9618175,3.6140666666666665,3.6706333333333334,1.4269999999999998,2.96734,2.814783333333333,6.276932666666666,3.028116666666667,3.6762466666666667,1.1417216666666665,1.3773633333333333,3.07708,0.893736,5.4855566666666675,3.6893666666666665,2.903033333333333,3.8472333333333335,2.876246666666667,2.7546666666666666,3.3747333333333334,1.6259466666666667,2.4850475,2.756683333333333,3.6465,2.5645666666666664,3.578533333333333,2.4378100000000003,0.583898,9.855583205128204,2.7546033333333333,5.4772,5.0595,2.7847766666666662,2.8121333333333336,1.352645,2.0820233333333333,2.03637,1.352645,4.814845,0.4548575,0.4548575,1.0386825,1.0386825,0.9728725,0.9728725,2.587675,2.837505,3.1017,1.432415,1.847275,3.61853,2.79061,4.300015,4.86606,2.2469200000000003,4.35999,2.42173,4.874795128205128,1.5286925,1.5286925,2.203355,1.6936240000000002,3.8163391666666664,1.9407075,4.44278,1.4038216666666665,2.3722625,0.6145907692307693,1.2374071428571427,2.2216275,1.984925,2.1462275,1.47527,4.471535,4.499675,2.7621466666666667,2.862223333333333,1.3899633333333332,0.7518400000000001,2.2918766666666666,3.804845,2.7370966666666665,4.807385,5.63055,5.18605,3.914695,6.789060000000001,1.6965166666666667,5.970645,1.79892,4.684515,4.85178,6.088395,2.56483,2.33069,1.7925325,2.019,2.019,2.48047,2.48047,4.45139,5.62595,0.998032,4.34567,3.50005,3.477965,3.0315366666666663,1.41224,2.8639733333333335,4.21742,4.4257,1.8968779999999998,6.50335,5.6786,1.7481633333333333,1.2895875,3.651095,4.295496666666667,4.017875,3.52674,4.24826,0.675995,3.11688,3.173576666666667,2.69511,3.0107466666666665,2.2031433333333332,3.9789666666666665,1.5299714285714285,1.5299714285714285,1.5299714285714285,3.2235266666666664,3.3260666666666663,3.5524,3.52290275,2.3923325,1.3225628571428572,3.07351,3.2684599999999997,1.3419957142857142,2.98555,2.7105766666666664,1.2452771428571427,3.2582166666666663,3.0096233333333333,3.0729233333333332,2.92989,2.7079533333333337,2.0458275,3.462733333333333,5.189226,4.533395,0.9628349999999999,1.4827,0.657956,3.5776,8.804915000000001,3.1666866666666666,3.32975,1.97928,4.226286666666667,1.87034,7.3924216666666664,6.405226666666666,2.7506033333333337,2.4902988571428573,3.92841,5.2721,1.5596619999999999,1.155688,1.250916,2.15995,11.389676666666666,2.81188,3.0037233333333333,3.177745,3.728465,2.15194,1.22960125,5.4858,1.0723683333333334,2.963511153846154,4.69015,3.084595,3.264863333333333,3.08576,5.09535,1.176595,2.3289325,2.14473,2.14473,3.785145,5.7669,7.04614,4.169325,3.2826,5.054,1.7107325,2.292304166666667,4.459135,4.493635,3.74106,1.7151666666666667,3.0142100000000003,3.437665,4.072985,2.576875,4.1016,3.61576,3.61068,4.07387,3.663845,3.859015,5.41855,3.3228000000000004,2.4498599999999997,4.29282,2.95268,3.80058,2.306935,2.421765,2.693065,4.7146,2.394685,3.343129318181818,1.619685,2.969815,3.3557,2.10754,2.0539725,0.8305083333333334,0.8305083333333334,1.7256325,3.9296460606060606,4.295015,2.9146433333333337,3.969175,3.3099741666666667,2.4213245714285714,1.05046125,3.08836,1.62075,4.56959,4.048205,0.9093891666666667,1.823305,3.908615,2.9058325,1.5913475,1.6174099999999998,5.142202857142856,1.0193633333333334,2.72414,3.17606,2.711425,2.59083,2.713529,2.22761,1.0137275,2.825205,2.97095,3.392605,1.3951900000000002,1.5507166666666665,1.8135,4.592185,2.11202,4.568695,4.9351,4.75794,5.71915,6.1625,4.2783,6.067265,4.146493809523809,0.7702463636363636,2.7366,4.396215,3.822775,0.45797727272727273,0.872748,2.952995,4.261395,5.06685,4.92826,3.3618164285714287,2.994005,4.77802,1.908852,2.6354,4.705335,4.12635,3.577665,3.37277,3.81456,5.1755,3.554215,5.228145,0.984451,3.60406,2.54185,4.831635,4.455465,4.627285,2.0981,2.69874,2.907965,2.0090266666666667,5.19295,3.82362,1.5418857142857143,3.28117,4.2078975,1.467046,5.68951,1.929268,2.52761,13.959735482006298,3.333206666666667,1.4057733333333333,1.6228550000000002,2.1435866666666668,5.424015,1.6404900000000002,6.087736666666667,0.6867346153846154,3.424466666666667,4.02994,7.3731475,2.4427833333333333,2.8356433333333335,2.8356433333333335,5.0738,4.423785,3.69123,3.206125,5.0672,5.3511,2.373845,3.4916,4.883205,1.2657483333333335,2.9895,4.67315,3.713005,3.070035,2.3491566666666666,3.254395,3.59479,7.136606666666666,6.0818674999999995,0.730443,3.51275,3.10037,3.21536,4.321955,4.14047,3.76582,1.502264,4.65016,2.440355,2.778015,4.217305,4.27505,4.620045,0.9708146428571428,2.6698299999999997,7.562542666666667,1.5077616666666664,2.124222857142857,2.28358,3.74601,3.40771,3.318785,0.6715800000000001,2.4842425,1.6696,2.2358775,4.655475,5.4147,2.91958,9.477625,2.52888,2.752133333333333,1.09172,4.63523,5.28605,2.107465,6.042434999999999,2.803475,3.322895,5.42545,4.52282,4.95944,2.22398,1.664015,1.664015,2.81655,3.329515,5.008734166666667,1.5631875,5.835591666666667,1.48461,3.9395,1.5984116666666666,8.875239,4.949525,2.85638,4.970005,4.96931,3.65295,1.1195549999999999,2.2474575,3.6760333333333333,3.2571866666666662,3.5192333333333337,3.7794333333333334,3.654875,2.864825,3.040025,3.259925,1.557,2.40882,1.9255566666666668,2.851906666666667,1.9116533333333334,5.3987549999999995,3.3323766666666668,1.6808766666666666,3.2157966666666664,3.273385,2.55445,5.65965,6.0751,2.894835,3.421735,3.705975,2.982485,2.61598,1.1814366666666667,0.8557219999999999,6.072234999999999,2.824855,2.91513,5.60035,6.1159,2.72734,3.3282000000000003,5.83065,2.45635,0.4287183333333333,5.2995,2.908245,3.616555,3.03136,1.4349,5.2263,1.339118,4.69057,0.92612375,1.4073166666666665,2.96043,2.3412333333333333,2.5401341428571427,4.05713,5.138,5.75013,5.75013,4.9435175000000005,4.9435175000000005,4.828785,3.1325133333333333,4.518735,1.02941375,6.07615,4.076275,3.7474000000000003,4.415295,3.7267,4.272295,1.85332,4.29345,3.113438,3.23205,4.26043,2.44377,4.552185,5.3368,3.58756,3.392185,5.18585,3.68736,4.9757,3.3861,3.0734133333333333,5.96855,4.226195,2.9363533333333334,6.282478333333334,1.5188666666666668,2.195635,4.746845,4.448745,5.8117,3.937405,1.923179,1.923179,13.724100095238095,6.34988,4.985885,3.612315,2.952250769230769,4.51251,4.65159,2.686056666666667,3.4495666666666662,3.527855,3.8346666666666667,3.7266666666666666,4.9188,1.81653,7.998703333333333,2.507335,2.0446875,4.84524,2.50772,4.88256,4.304485,4.78632,0.7893122222222222,3.19413,3.76584,0.94795,2.80128,3.7050583333333336,1.415832,2.031563333333333,3.006906666666667,2.87018,2.598263333333333,3.528966666666667,2.3800133333333333,0.5562921428571429,3.0861933333333336,2.7601533333333332,2.9034,3.1524133333333335,2.052,3.32725,7.225966666666666,4.918045,2.377866666666667,1.9736900000000002,2.6025666666666667,3.6905,2.5198,3.7893499999999998,19.0982075,5.68805,3.391181,5.99125,3.877875,5.351095,1.57512,6.03995,1.63999,3.993975,4.268395,5.4045,5.4685,1.0392222631578947,5.3375,2.40374,4.927705,2.7857,4.569495,5.1345,2.852375,2.0477,1.427494,2.2564275,4.317555,4.81625,2.414925,1.538125,3.0545633333333337,4.277093333333334,3.2150166666666666,6.086,2.00364,3.759665,4.35942,3.70984,4.00883,3.68748,4.235125,4.621265,3.97207,2.7734199999999998,2.7734199999999998,5.268903333333333,1.99496,2.6865799999999997,3.95993,1.757266,7.39348,3.52363,4.81557,4.216466666666666,4.4786,2.11076,4.549075,5.2951,4.071915,2.0523175,3.84725,3.21312,1.3412275,1.829865,1.1410500000000001,0.7096083333333333,1.6358466666666667,1.0989,4.49512,1.1649222222222222,2.56241,1.6861899999999999,1.890965,0.9322916666666666,1.94847,2.74525,1.42072,3.3222166666666664,2.569096666666667,4.500183333333333,1.5782100000000001,2.51575,3.368233333333333,2.87375,2.2175033333333336,4.337179166666667,4.49465,5.316483333333333,20.296792833333335,2.9184666666666668,2.178945,0.6276976923076922,0.640091,4.2816616666666665,1.948648,4.203765,4.37973,7.4999155,3.783205,3.30538,4.108895,3.17208,3.24523,3.3577666666666666,2.9926666666666666,3.368133333333333,6.32725,4.48637,0.923616,1.177795,5.31195,3.2118066666666665,2.4890466666666664,2.0789166666666667,2.32282,5.93005,5.12255,2.3526075,1.4486066666666666,3.55548,5.2107,9.37525,5.468670416666667,5.0323,4.309555,5.53575,4.764615,4.46204,4.67451,4.572125,5.4678,2.09748,5.4687,1.5612,5.3678,0.7445066666666666,4.849395,5.41535,6.04995,6.3459,4.59337,5.95405,5.62325,6.2815925,1.8675333333333333,1.6618571428571427,5.9124,3.511075,6.503593333333333,5.11135,5.4226608333333335,5.07905,6.0923,1.3112,4.39305,5.63655,4.1303,4.72227,5.8063,2.699975,3.904955,4.330665,4.36612,1.0083166666666667,1.7826000000000002,1.325698,4.691025,4.01474,4.204375,2.7207633333333336,3.1118,1.9242066666666666,2.1165033333333336,0.38718,3.5485666666666664,1.648294,2.238593333333333,3.3272133333333334,2.24278,3.1531833333333332,2.4500825,2.63175,10.950233333333333,3.546,1.748886923076923,4.154675,0.7844845454545454,4.36684375,1.0576125,1.18499,1.9877,1.02772375,5.793919000000001,1.1644944444444443,1.1644944444444443,1.1644944444444443,3.157806666666667,1.760298,5.10445,2.961825,1.422405,1.479675,1.5678425,1.5044125,1.577496,5.386310833333333,0.8850422222222222,4.69281,4.214695,3.231203333333333,1.0342414285714285,2.25178,2.254365,2.254365,1.6438833333333334,3.6616683333333335,4.58494,5.1044,5.47275,4.1348,5.5382,2.9594066666666667,2.2042025,3.18419,5.42665,3.844025,4.17078,1.033915,3.9211175,5.3177,1.8320575,3.421135,3.0227533333333336,4.59486,5.4178,2.248,5.9149,6.3903,4.347955,4.684575,4.13386,3.228575,7.92841,4.1332,6.567863333333333,3.357675,2.77624,4.71414,2.6801399999999997,3.36897,4.894455,2.748086666666667,3.07451,4.039805,1.4496399999999998,10.9896425,4.094135,3.18248,15.610430952380952,4.12539,1.6697633333333333,3.1601533333333336,2.292375,2.6561,4.20943,2.739902638888889,3.73011,3.982815,3.142575,4.00745,6.04463,1.2364033333333333,2.1779375,4.134915,4.670525,5.4409,2.281105,0.6305966666666667,5.081,4.232155,2.1441925,1.2055416666666667,4.75702,4.994245,0.9581244444444444,3.752955,12.5355575,1.284648,0.38987499999999997,3.9435333333333333,4.22516,1.1366666666666667,3.701725,3.68548,6.090843333333333,1.3519633333333332,3.563245,4.08414,3.239805,4.539415,4.610995,5.947,7.706334999999999,3.188315,3.4981,2.98376,16.146104375,3.4247825,2.748125,1.1957875,2.0998775,1.3248975,2.09348875,1.557575,1.99986,1.8949675,2.4519525,2.590675,2.53405,2.066845,6.0357,4.24492,3.743715,3.244275,5.687333333333333,2.6562233333333336,5.072,3.2770966666666665,1.23032,3.715095,2.045795,2.5297153333333333,4.90156,4.62375,4.748945,5.5591,2.856313333333333,3.23493,2.6888233333333336,3.93818,3.647365,2.18289,1.785575,3.881066666666667,5.1044,4.281015,2.3702566666666667,12.261596666666666,0.7037333333333333,2.697945,5.04485,2.428116,1.053796,2.968125,7.399081666666666,7.052975,4.766295,4.159455,3.994195,1.966795,2.42505,2.8334343333333334,2.0117333333333334,4.078216666666666,3.64091,4.5305,0.513964,6.17215,3.5549999999999997,3.4903,3.6036,6.47855,9.488753500000001,4.3356835,1.12319,2.2122725,2.37416,3.813465,2.65453,4.01727,5.12115,3.616566666666667,3.0257400000000003,4.057155,4.074265,4.49354,3.7213999999999996,2.4398066666666667,3.0422,5.52785,5.69175,3.294373333333333,1.621145,2.3955766666666665,14.672685330419581,0.5191945454545455,1.3857775,1.3857775,2.31894,4.445415333333333,4.11656,4.562875,3.17282,3.166365,4.31403,3.0653633333333334,4.164215,3.0653633333333334,3.612695,1.7974033333333335,1.5320799999999999,5.7726,2.4551725,5.0264,3.22162,2.79113,6.828436666666667,1.9080333333333332,5.0612,5.12255,3.446255,3.80806,4.74045,2.05986,5.21855,3.3699149999999998,6.942276666666666,5.664550833333333,2.627825,4.05496,4.99044,2.14253,2.8137899999999996,3.8916,0.4529742857142857,3.209096666666667,10.047366666666667,3.982265,3.85263,5.4767,3.4658716666666667,3.242295,1.3283714285714285,4.50954,5.385,3.14983,2.524975,4.91212,3.97933,4.309215,4.181015,2.2971775,2.2971775,4.03842,2.72548,2.7316447727272726,1.895595,5.19545,3.950605,1.3476628571428573,4.009925,4.875365,2.92544,7.6242399999999995,7.67414,1.473742,4.177205,4.731925,7.09948,0.823406,7.692143333333333,3.6105575,0.6279990909090909,5.3807,5.4081,5.2155,4.349295,4.8857,4.610485,4.970035,3.94109,4.29651,4.708765,4.318245,5.37715,4.82528,3.88194,3.46881,4.51983,2.82818,0.9722289999999999,4.40861,2.49697,1.65861,4.22508,4.753215,5.68025,1.0318457142857143,5.1357566666666665,3.02985,2.631813333333333,1.7882625,1.2467,11.581760833333334,2.7938066666666668,3.2903633333333335,2.022893333333333,3.734005714285714,5.868573333333334,6.146554999999999,2.61775,1.9388966666666667,2.2261800000000003,2.2261800000000003,2.2261800000000003,1.43365,4.404295,4.53342,3.047195,4.69245,8.284044999999999,4.1181,1.196062,2.409735,3.11327,3.943705,1.654894,4.248145,2.93258,1.32933,3.8341999999999996,6.605452857142858,6.864555,4.06947,3.927835,3.2175999999999996,5.38945,4.495245,5.56708,1.92605,1.92605,5.00785,3.79784,2.649242666666667,2.649242666666667,3.695135,1.324282857142857,4.92026,3.191645,4.203355,4.24576,4.846115,3.395466666666667,0.9820457142857143,4.233565,4.864965,4.479725,4.797825,5.11075,4.96155,4.38596,1.9393,1.420425,3.30831,4.01933,3.16515,4.3462,2.16609,2.9671725,5.11255,2.790555,5.01865,8.334785,2.4336520833333335,2.73493,4.517542380952381,4.666111666666667,1.6529275,2.0281059523809524,1.0822416666666668,2.0281059523809524,1.8768966666666669,1.8768966666666669,1.532318,4.682525,3.16961,3.562275,2.470455,3.9817,1.7192,5.46945,3.016585,1.6644125,2.5516033333333334,3.94738,4.09871,6.228791,4.790215,1.399202,0.902755,3.51209,6.17821,2.5003466666666667,3.538775,3.68001,3.68001,2.30726,3.37294,2.95466,1.3806896753246753,3.23644,3.49415,3.27233,4.49831,3.86984,1.5662325,3.194755,4.77972,4.68596,4.99492,4.327645,1.7851425,2.12459,1.3285366666666667,2.1926075,3.458945,1.9491175,3.731315,3.4560999999999997,3.107265,4.26413,4.99786,1.799035,0.986758,1.7955333333333332,1.41333,1.2243777777777778,5.05465,3.885865,1.1649800000000001,0.22165826086956522,0.22165826086956522,0.22165826086956522,3.704995,5.808653333333333,4.496105,5.28895,3.319455,5.0047,4.645865,4.394365,2.715635,3.37401,1.575025,5.32345,4.489215,3.91347,4.3892,4.34716,0.7955909090909091,0.7955909090909091,0.7955909090909091,0.7955909090909091,1.009176,1.009176,4.136205,4.01636,3.576965,2.86636,2.799535,6.1023,4.498455,5.26425,4.411715,3.30552,2.4557100000000003,9.86597,1.7957360000000002,1.7957360000000002,4.24861,5.5488,3.26803,0.4548575,0.4548575,0.4548575,0.4548575,0.4548575,0.4548575,5.270183333333333,5.0233,3.60158,4.47648,2.610978333333333,2.610978333333333,2.662635,2.9825696666666666,2.5894733333333333,3.04758,3.798705,7.090649000000001,1.401426,5.0106,3.61401,4.333075,10.098201666666668,2.6572533333333332,3.20066,0.8860257142857143,2.33182,4.98584,4.243635,1.2167025,2.8868033333333334,4.58248,5.7043,2.6971,4.9697063888888895,0.9888222222222223,1.9490100000000001,4.5755,4.902885,3.306992,2.5828,2.8278766666666666,1.406815,8.079111666666666,3.3688333333333333,2.23839,2.927385,2.8261833333333333,3.718035,4.090165,2.774016666666667,3.3600999999999996,6.02375,1.5144733333333333,4.77372,5.05745,4.495755,3.95238,1.9981166666666665,3.004805,3.707955,3.843175,2.842475,4.73063,4.81472,2.848613333333333,2.00057375,2.8997233333333337,2.63145,2.8723033333333334,0.8083663636363636,2.1958875,7.9398275,0.46396125,3.0184033333333335,1.5762933333333333,2.4725533333333334,3.3310133333333334,2.83919,1.2056555555555555,1.774314,3.201083333333333,2.1593325,3.557055,2.15718,2.8656433333333333,1.3732033333333333,3.596168,1.808045,1.0878842857142856,3.0667833333333334,2.0029225,2.3489299999999997,2.64189,2.705296666666667,3.0402966666666664,3.277233333333333,3.075283333333333,2.791983333333333,2.74222,3.0124566666666666,2.609825,1.8077500000000002,2.32754,3.01332,1.60975,2.9536599999999997,3.7789409523809523,2.8938,2.72514,3.0048166666666667,3.8028999999999997,4.620048333333333,3.088696666666667,1.8430457142857142,1.8430457142857142,2.284145,1.12331,2.51125,3.321815,4.6234275,2.670375,1.7855875,2.1712125,2.072855,3.761225,3.141875,4.047905,4.75535,1.75614,2.57713,3.61687,1.415718,1.415718,2.732925,0.604666923076923,3.0352584615384615,2.132705,2.132705,2.9630500000000004,2.48162,2.7386133333333333,2.6866433333333335,2.655775,6.342186666666667,3.892045,3.892045,3.768215,3.00514,2.29214,3.08269,2.51868,2.96779,5.2023,0.4960175,0.680971,4.10817,2.39156,2.975625,6.653285,3.61187,1.6461659999999998,4.544553333333333,4.857235,4.007815,4.34828,5.2502,4.64737,12.898436,3.217885,1.6676566666666668,2.80923,4.0249,4.87515,3.168955,4.069325,4.26799,3.543645,4.164115,2.8438199999999996,4.00602,2.9150466666666666,2.3761266666666665,2.3761266666666665,3.975135,3.00688,3.22856,3.743815,2.51331,3.384025,1.964625,1.8864825,1.901795,1.9467025,1.7279725,3.8058604999999996,3.69069,2.537335,6.378575,4.05326,2.3663833333333333,1.7749566666666665,3.463885,3.85801,3.584215,3.0738697916666666,3.265625,3.04351,4.159995,3.40892,3.74409,3.968245,3.5887260000000003,3.517045,0.6877083333333333,0.6877083333333333,0.6877083333333333,3.310575,2.415005,5.5323,2.844365,3.66518,7.831596666666666,2.94243,0.38045,5.64605,0.757015,4.4711276190476195,2.35724,3.902365,1.784085,4.5703,5.418506666666667,4.66696,3.62753,2.72848,2.71813,1.5110233333333334,2.40129,0.44573631578947365,0.5768170588235294,2.7272866666666666,1.4513,2.0929525,3.854015,2.535005,5.36215,2.916206666666667,2.8495316666666666,3.543785,5.28856,1.9924425,0.9222400000000001,2.471855,3.236732,1.2914709090909091,4.82621,3.67936,3.56449,2.67586,4.23212,2.741906666666667,2.8184566666666666,3.3137566666666665,2.2382,2.600426666666667,2.262375,3.560333333333333,2.53056,5.683525333333333,2.2768775,1.95388,2.4827033333333333,5.086558,3.1773360000000004,3.1773360000000004,2.485536666666667,3.93564,2.3025575,3.49811,3.35329,0.5967733333333333,4.360775,1.9793675,11.481163333333335,7.12761,2.862565,2.92114,3.26919,4.79742,2.899295,3.49066,0.27895466666666663,2.17216,3.542533333333333,0.8324283333333334,3.961,1.3868885714285715,5.31635,3.26869,2.86382,3.487295,3.65322,2.207225,4.4598,3.830415,4.16914,6.28815,4.179905,3.099956666666667,3.2979233333333333,1.605178,2.090975,4.123495,4.18533,3.87875,2.789995,6.28485,1.94446,3.132,2.583365,3.8964,10.516798333333334,3.611655,6.109133333333333,4.280285,4.679105,0.9515788888888888,5.301987,4.61264,2.4875833333333333,2.8416033333333335,3.6786,2.7500433333333336,2.35763,1.8495866666666665,1.9628433333333335,3.74916,1.656814,3.31641,5.193169333333333,2.6557666666666666,1.067420357142857,1.067420357142857,3.89418,3.1242425000000003,3.1242425000000003,4.007233333333333,3.0642133333333335,3.440085897435897,3.6618999999999997,3.8587333333333333,2.66001,2.4299500000000003,2.3099166666666666,3.24462,2.2050525,2.68521,1.62905,5.877675,10.124483666666666,0.5714715384615384,0.5714715384615384,0.5714715384615384,0.7044758566433567,0.7044758566433567,0.5714715384615384,3.124306666666667,2.96726,4.371791666666667,1.568805,1.67045,3.2653119999999998,2.40014,2.8449533333333332,3.0502366666666667,3.17275,3.5379,7.044906666666667,3.026206666666667,2.6297466666666667,3.6627333333333336,4.348885,2.72798,3.5068333333333332,5.40841,2.3773,3.4012333333333333,1.3866100000000001,1.3866100000000001,2.5458233333333333,0.48312263157894736,2.55773,2.71811,3.055016666666667,3.6676,2.2582366666666664,1.46455,2.70463,3.2540066666666667,2.3052333333333332,4.816895,2.530705666666667,3.86659,2.8682,4.316605,0.5150089999999999,7.064675,3.095042,3.095042,7.463085833333333,1.7485266666666668,1.7951133333333333,2.3528966666666666,4.44909,2.36742,1.9047366666666665,2.5000166666666668,1.37189,3.4267,1.7261499999999999,3.1281494999999997,1.33312,0.2771909090909091,0.2771909090909091,5.04365,4.053505,3.030835,2.80796,2.88559,3.73623,1.2402833333333334,6.354,3.703005,2.825975,1.7821875,1.1029175,2.15556,2.3528966666666666,2.594505,2.04232,5.925665,4.751415,4.533665,4.244335,2.27702,0.6608508333333333,7.557175,2.1031075,1.6491675,3.250225,4.3255,2.315805,1.8889166666666668,4.64062,4.51881,3.3549666666666664,3.2168466666666666,4.9739,5.15015,3.5479000000000003,2.599858,2.599858,4.16094,4.607955,5.7947,6.571813333333333,2.8485133333333335,4.05251,1.3453271428571427,2.6627,5.194812,3.91907,1.799712,4.522845,3.2303275,4.76309,2.28486,4.304355,4.657,5.4214,4.60877,2.3309133333333336,2.54562,3.928933333333333,2.0152933333333336,2.7846,2.5852533333333336,2.467633333333333,0.8596769999999999,2.16956,2.7089700000000003,2.1238086666666667,4.946505,4.582845,4.979705,3.886105,4.463645,5.606465,12.999075,5.73515,3.6285,4.777415,4.01686,4.6192,2.9848966666666663,2.9391176666666663,3.6950333333333334,1.2082625,2.8305,2.833725,5.2255,5.82225,5.14555,2.6776133333333334,2.4351266666666667,2.22263,4.205033333333334,4.1466575,3.4849,4.1466575,2.403413,2.278703333333333,2.4421133333333334,2.193455,2.860666666666667,1.7896,0.8850166666666667,1.4369533333333333,1.8430166666666665,2.0388033333333335,1.7049899999999998,1.3832466666666667,2.4216866666666665,2.7487633333333332,1.51768,3.2692633333333334,1.3584766666666666,1.76281,2.68737,4.123033333333333,2.57626,2.794233333333333,2.4163566666666667,3.53392,2.14674,2.788733333333333,2.952806666666667,2.3795800000000003,3.09704,3.0430325,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,0.14085838709677417,4.969435,3.061805,1.03255,3.16037,2.5626533333333334,2.908846666666667,4.270515,3.2042533333333334,4.529475,3.415128,1.786356,3.2175766666666665,1.7816833333333333,1.0986275,0.9515319999999999,1.7028333333333334,0.9149683333333334,0.8227691666666667,1.3516679999999999,3.2839,1.675244,1.7538833333333335,2.0707211111111112,2.7165644444444443,1.6815,1.6421133333333333,1.5851183333333332,0.9351383333333333,1.238855,0.7502366666666668,1.036402,3.139875,3.488455,4.160325,4.431375,4.162775,2.97911,4.38469,3.938833333333333,1.79504,3.57314,2.042205,3.443695,2.4104233333333336,0.7624918181818181,4.260595,4.96599,2.08922,1.2488325,2.935525,3.29381,3.6616683333333335,2.8547433333333334,2.4514,0.8687575,1.94203,5.106595,3.76605,2.24501,1.5982783333333332,3.67414,2.0073575,0.6857509090909091,4.66501,3.64693,4.015515,2.405575,1.3207900000000001,4.28578,4.37684,2.5632800000000002,2.710096666666667,2.4903366666666664,2.6738133333333334,2.7331066666666666,3.02215,3.1148466666666668,1.23458,2.588125,2.552773333333333,5.36165,4.05695,3.65619,4.495135,15.771207617424242,4.5016774999999996,4.688885333333333,2.833765,3.95901,4.87971,1.469782,2.2412625,2.41513,6.5079025,3.974075,3.75984,4.654565,2.41513,3.88127,2.207235,2.478263333333333,2.848903333333333,2.722156666666667,1.2968666666666666,4.32655,3.890585,2.575225,4.25656,2.8569833333333334,2.9011866666666664,3.641645,3.16974,5.50485,4.567645,2.787035,3.52612,2.67224,3.26777,1.444594,1.444594,3.474466666666667,2.2686733333333335,0.2492035714285714,5.143504,0.907716,3.85124,4.67386,0.5560691666666667,4.807795,8.552903333333333,1.7918375,3.614855,3.89562,3.6090666666666666,3.35617,2.22809,2.89479,3.76558,4.190435,3.092335,4.0405,1.0058666666666667,11.586736666666667,3.52105,3.133565,4.475,2.53393,3.86645,7.466606666666666,4.32926,4.225615,4.183505,4.305285,5.3525675,1.6809125,3.2412033333333334,4.797495,3.9025,1.9102599999999998,3.74879,3.93193,3.744245,3.90103,5.0115,4.22795,2.484885,3.683835,3.61296,5.43765,3.412405,2.22177,2.20656,2.22628,2.9843933333333332,1.3143733333333334,3.7055333333333333,0.8250263636363637,3.416733333333333,3.245706666666667,2.5028566666666667,1.7200499999999999,4.66306,4.54043,4.126765,1.8097775,4.892075,4.17546,0.7325979230769231,0.3345619230769231,4.366245,4.53588,0.9656375,0.3345619230769231,3.322455,0.7325979230769231,0.7325979230769231,0.3345619230769231,5.62181,2.50454,2.6568833333333335,5.6523,4.108085,3.224765,0.7983733333333334,3.18029,3.617255,4.343475,5.40565,2.1327275,0.7140692307692308,4.4269791666666665,2.73286,1.4518499999999999,1.9430925,1.068302857142857,2.5384966666666666,2.3776733333333335,3.891325,5.30135,3.2626833333333334,3.3285933333333335,3.205783333333333,3.0327533333333334,2.86249,4.11200875,1.4973825,1.92918,4.16607,5.72435,2.194183472222222,4.073345,2.87917,3.94955,4.23291,3.19898,1.2801075,3.1217,6.33155,3.831985,4.0751,5.11435,5.6415,2.98038,3.351545,4.546095,3.2165,3.320575,8.37626,3.64537,4.7802075,2.59416,1.31871,2.816273333333333,1.917495,2.172295,2.043735,5.01525,0.6880307142857143,3.56026,3.71514,1.9580666666666666,2.80196,4.697445,3.26328,2.840595,4.662165,5.737,9.304027333333332,2.768943333333333,2.7720933333333337,1.7132580000000002,1.6804833333333333,1.2201233333333332,1.2638233333333333,2.6407233333333333,2.46888,3.0202233333333335,4.697225512820513,1.463915,2.3784033333333334,5.29275,5.5138,3.87786,3.454955,2.883565,2.66835,2.08056,2.2095,1.8450766666666667,2.240105,4.0106,3.98576,5.0302,5.4498,4.087645,5.5744875,3.27425,2.531475,6.57738,3.479315,8.245695,5.0403625,5.0403625,5.966255,1.5180766666666665,1.3153325,1.4830766666666666,0.716643,4.994455,3.9004999999999996,3.51042,3.51042,2.08832,4.44853,4.43323,4.59724,4.316315,2.7593,2.52771,4.38703,3.3205733333333334,5.0482458333333335,3.97241,0.859700909090909,5.7893,5.33555,5.07745,5.40505,3.075125,5.7601,4.73315,0.8599153846153846,5.06815,7.621581666666667,2.9758,5.70385,5.75155,3.40224,2.57758,3.724645,6.2798,2.04979,5.7484,1.8308125,4.74621,2.7691033333333333,2.460125,0.984451,3.809125,5.54765,3.32065,3.90782,1.99428,4.064155,8.323500000000001,3.38977,4.07541,2.64944,2.60526,0.9044869999999999,4.906695,1.51497,3.4266466666666666,3.4266466666666666,4.17574,2.4628433333333333,3.1876599999999997,4.08794,1.8120025,3.3214666666666663,3.4228,3.4887,2.953805,3.927725,2.78044,1.8145625,3.7164,2.1506575,2.85765,1.92413,3.0350533333333334,2.8856966666666666,1.5028714285714284,1.6566433333333332,0.401275,1.289245,0.401275,0.401275,1.6566433333333332,0.401275,3.8895,2.033436,2.033436,2.9108733333333334,5.0365,5.8885,4.75398,5.71265,5.24165,3.52332,4.466805,4.14472,2.2912125,2.484289,2.7487033333333333,0.7937290909090908,5.69755,3.1913633333333333,3.1177966666666665,6.0353,3.6445350000000003,5.79075,3.39239,2.51674,2.891355,3.460815,2.50297,2.71259,2.12114,5.4428,0.9220766666666668,3.99853,1.1980742857142859,3.62605,2.3481133333333335,3.6059666666666668,4.18271,4.560865,4.176905,4.52389,4.090395,3.90239,4.40233,4.23261,2.508125,2.75125,3.483033333333333,4.20965,3.77781,4.133615,2.60041,3.008805,3.2639533333333333,3.301335,4.436105,4.93406,4.03182,67.71961788272839,2.8407425,3.83102,15.596112666666667,4.04624,2.9922966666666664,2.0859099999999997,1.8734333333333335,2.21049,4.8098075,3.0894366666666664,4.7651425,5.03015,3.372965,7.716715000000001,5.40515,2.683605,3.112735,3.76093,3.337675,1.87447,1.2539375,4.51055,2.86132,5.821808333333333,3.49971,2.49586,3.535675,3.57269,4.592635,3.5567,5.50897,4.79722,3.72106,2.907015,2.378695,2.89238,5.18515,3.80748,3.72273,4.401188333333334,1.2155066666666667,2.78938,4.826545,3.275135,3.10787,3.495235,2.885145,4.84055,3.06045,3.381805,2.360455,4.394175,3.119945,2.23107,4.432205,8.852595,3.2169833333333333,4.117,6.89117,3.163535,2.823775,4.35891125,2.0099533333333333,2.975303333333333,3.07708,3.56189,3.26099,2.94288,3.162205,3.49956,4.069985,3.858285,4.2027,3.11963,3.21891,3.573055,2.83924,2.83924,6.78285,2.033525,3.088965,3.16346,2.50275,5.17255,4.119315,2.783405,3.23276,5.32615,7.0663575000000005,0.8504018181818181,3.529105,2.181345,2.8734866666666665,2.5338233333333333,5.4173,2.7529066666666666,1.95528,1.21424875,2.0995246969696972,4.064895,4.11765,3.912315,6.5568,3.95114,6.1828,2.346895,1.8304533333333335,4.54441,3.965645,2.9651633333333334,1.9097799999999998,1.25607,2.84779,3.376533333333333,1.461204,2.2642233333333333,2.253186857142857,3.4881274450549453,2.758265,5.36095,3.35713,1.4023275,4.277165,3.465065,4.642755,5.12055,4.73627,4.854805,2.0462599999999997,1.5024833333333334,0.5889528571428572,1.4604733333333335,3.495275,2.5894,3.5228133333333336,1.3843933333333334,2.28205,2.39286,3.530905,3.46473,3.72863,3.9185083333333335,1.56368,1.36476,1.9142675,1.97163,1.4488575,2.65445,6.949128583333334,5.0407,3.802715,2.96604,6.555105,4.93392,3.198885,3.153605,3.34528,2.659895,3.87155,2.2282066666666664,7.1837,0.9285950000000001,3.00238,6.4885,3.805225,4.65935,5.2734,1.45616,3.15033,3.1123266666666667,2.88152,1.6549925,4.052445,8.26655,3.91947,3.482145,4.16089,3.8956,4.417215,0.8425933333333333,2.6887333333333334,5.3662,6.472709999999999,5.1077,5.4215,2.7919,3.8630999999999998,2.4510733333333334,5.6983,4.96282,5.2974404999999996,5.2974404999999996,0.75988,3.5492333333333335,1.113618,1.02902,1.86456,3.4041,3.862888,5.351216571428571,3.044896666666667,3.0375765714285716,3.2560385714285713,2.89169,2.60317,4.639233333333333,3.6704575000000004,1.9341075,1.9341075,4.06839,2.9895066666666668,2.746253333333333,3.866235,3.4975666666666663,0.6578911111111112,3.3613666666666666,2.6810533333333333,2.9773566666666667,2.9601133333333336,2.582275,2.704446666666667,3.1366266666666665,3.2026066666666666,0.892657,2.5011366666666666,6.451417238095239,2.09162,7.748951666666667,1.5701420000000001,1.5701420000000001,3.4275467500000003,3.1668566666666664,3.528833333333333,2.9922466666666665,1.716656,1.3314385714285712,3.23732,3.304866666666667,1.5833166666666667,1.4567285714285716,2.8394366666666664,2.753482,3.0690733333333333,1.931765,2.09679,2.87516,2.124785,2.79818,3.42559,1.74122,3.64892,3.21581,7.15946,4.31568,1.684035,3.579685,2.65659,2.128725,3.865105,2.40188,2.636325,6.945755,0.810876923076923,0.7459866666666667,4.71674,1.479936,1.479936,3.77876,2.455725,5.042,3.321615,1.3555866666666667,2.4001873333333332,2.70919,2.413984,4.99679,2.684215,2.5910366666666667,2.5963133333333333,1.4924771428571428,1.4924771428571428,1.9413066666666667,3.800205,3.8820333333333337,5.99945,3.2519899999999997,5.44375,4.816255,6.9953,5.41145,2.511155,2.76029,2.6657066666666664,2.61391,0.7277622222222222,0.7277622222222222,0.7277622222222222,3.5394,4.75814,4.807645,0.84605,0.84605,5.60555,6.59325,7.76478,22.579779055555555,13.2095,8.63223,3.87258,6.02205,2.48786,4.90239,2.50326,3.379433333333333,4.345533333333333,5.484992666666667,2.01914,2.259575,7.83731,2.29696,2.29696,6.9872,3.901355,4.73215,1.84296,4.863997833333333,4.97381,4.531,5.57715,4.209425,0.8883333333333333,6.4197,9.61993,0.8883333333333333,1.84296,2.043626666666667,0.689604,0.689604,1.9213719999999999,2.4538066666666665,1.9213719999999999,4.96382,6.17715,6.71085,9.71243,1.84296,11.973181166666667,6.756,6.54845,2.48786,3.72092,4.802965,9.91483,3.19011,4.47433,6.3374,3.43041,5.3579,6.65615,5.11275,5.61165,4.238095,2.6999,5.68715,4.25868,4.652895,4.325985,0.77334625,1.4903140000000001,3.079395,5.5808,4.875485,2.6557666666666666,1.889485,4.087095,4.977485,5.91245,5.46675,5.3967,4.36113,3.09537,4.229945,3.67397,2.0791325,5.110647500000001,1.925975,2.647245,3.710025,1.7001666666666668,3.89445,4.34859,3.48749,3.6063366666666665,3.085875,6.556625,0.975098888888889,3.46562,2.382665,1.40525,5.464099,1.6597483333333332,1.6384333333333334,2.7203866666666667,2.791565,3.333833333333333,2.8475466666666667,1.97391,0.7420763636363635,2.458276666666667,2.587025,3.71718,0.7301753846153846,5.232936666666666,1.7676366666666665,1.17245,3.5922,1.17245,3.837215,0.823880909090909,4.476605,3.05186,1.958455,4.175688,4.067923,4.067923,4.806185,2.60235,3.2678683333333334,2.6773066666666665,2.052,3.717365,3.915495,2.1136133333333333,0.7460616666666667,8.488650384615385,2.611045,3.56664,4.317195,7.35514,2.5037,3.873715,3.719015,3.033555,3.66649,5.824,6.668307500000001,4.176785,4.8726,5.31455,2.8710566666666666,4.510255,3.83714,4.82545,1.0546111111111112,0.511405,3.15043,3.439633333333333,2.7660966666666664,5.73585,3.843165,4.25066,4.789305,4.64971,4.37032,4.640915,1.18558,2.17856,9.019328333333334,2.31277,1.9644166666666667,4.190246666666667,12.036109623015872,1.4662275,5.01725,5.99575,4.623335,3.3636666666666666,2.25125,3.296443333333333,3.83752,1.09949,3.0546366666666667,3.45929,0.42209315789473684,2.126306666666667,5.0134,4.237925,2.105045,4.01237,3.423995,4.936261666666667,1.2980966666666667,0.5317145454545454,3.638165,1.0631028571428571,0.986805,0.986805,0.986805,0.986805,1.3437166666666667,2.6397566666666665,2.1060866666666667,2.72218,5.6069,3.643333333333333,5.40765,3.678165,4.463505,3.63674,3.68875,1.4734833333333333,7.084994999999999,2.161725,5.34,5.455516666666666,5.34665,5.2909291666666665,3.4857333333333336,2.98573,2.605226666666667,4.07802,1.2024966666666665,5.106246666666667,2.6698766666666667,5.1209,3.4639,2.421133333333333,3.77324,3.421775,2.92142,2.4200333333333335,2.8416766666666664,1.479225,0.41572000000000003,4.8717,3.09648,4.04575,3.563085,4.32455,6.0151,4.373665,0.5311715384615385,3.177722,7.279608666666666,1.9769666666666668,2.12492,5.587566666666667,4.25669,2.652766666666667,4.819645,5.28795,4.27954,4.273485,4.24023,5.25555,5.3528,4.710775,3.454855,5.484366,1.59625,1.5773216666666665,3.784545,3.934195,4.416225,3.20358,5.09005,5.4618,3.866435,3.26045,15.423674692413703,1.377279946495452,1.47865,2.390813636363636,0.524364375,0.49449466666666664,1.5634375,0.36091764705882357,1.3906560000000001,3.1367766666666665,1.549452,1.0735,1.0517154166666667,0.46009666666666665,1.0517154166666667,1.0517154166666667,0.46009666666666665,0.8680461538461538,0.6966450000000001,2.81032,2.57421,3.885035,4.25206,2.8144333333333336,2.70485,4.263455,4.92529,5.2688,2.75364,4.24813,0.7569285714285714,2.3854906666666666,8.704965,4.457075,6.94266,2.916515,4.26917,2.37939,4.714305,5.23105,4.140445,4.04771,3.414195,1.03256,4.22681,4.96218,0.906208,1.335844,1.6688833333333333,2.43166,2.65324,4.45073,5.2494,2.32653,2.32653,3.6069130555555553,6.25686,2.030823333333333,0.6421445454545455,1.0443142857142858,2.217173333333333,3.4661333333333335,1.008897142857143,1.008897142857143,1.008897142857143,0.38661307692307695,1.0982942857142857,3.093225,6.159,3.8836333333333335,4.2509525,5.53025,1.04116,3.7123000000000004,3.27379,3.9418666666666664,5.99845,2.9020266666666665,7.6356,5.33305,1.1562666666666666,3.8845333333333336,2.12284,2.626935,2.2821966666666667,6.498466666666667,2.98798,4.598965,2.3598375,4.15819,4.26441,5.11525,0.4495311111111111,3.2540999999999998,1.4189866666666668,2.678903333333333,4.367215333333334,2.23916,2.95196,2.24891,2.5849766666666665,2.4664466666666667,2.8744300000000003,2.956443333333333,3.32079,1.7063220000000001,2.4086233333333333,1.86297,3.5836,2.8643133333333335,2.2131925,2.05768,2.1072566666666668,1.8566725,3.152045,2.4285900000000002,2.87988,2.175003333333333,2.4300266666666666,2.587833333333333,0.7975933333333334,0.7975933333333334,0.7975933333333334,2.3903766666666666,2.41541,3.108076666666667,3.1748066666666666,2.6715066666666663,1.9539033333333335,4.348695,3.4501283333333337,1.275285,2.6937233333333332,2.833346666666667,3.50122,1.6238,7.401408333333333,4.732395,3.18564,3.9457,3.84895,1.55782,0.66594,3.309605,3.639975,3.50122,4.73737,4.400915,5.5089,2.9486933333333334,4.01798,4.25391,0.901651,2.672005,3.174895,5.016583333333333,4.61233,3.51435,3.010805,2.749235,2.38436,2.4917266666666666,0.6171841666666666,5.275568333333334,2.6219,4.67988,2.8082,3.8376183333333334,3.998533333333333,2.4159366666666666,2.837743333333333,2.837743333333333,2.5205333333333333,2.11978,2.9231133333333332,1.8922233333333331,4.178095,1.4619719999999998,2.67628,3.66092,4.395855,4.024385,5.06445,4.829945,2.38693,2.14732,3.202545,3.729515,2.751535,5.0247,2.49644,0.8562171428571429,0.8562171428571429,4.681895,3.907769,0.9410640000000001,4.45874,0.9410640000000001,3.654,4.625305,5.14785,3.25143,3.231055,6.422622499999999,4.763216666666667,6.5114,0.9074,0.9074,2.07268,4.6536100000000005,1.47736,3.17625,3.663555,1.0943671428571429,4.350965,4.43698,5.944075,5.944075,1.1004016666666667,5.1191,5.05625,4.743965,6.28605,1.9991475,1.9991475,7.0411,1.0140272727272726,7.17215,1.8751775,6.1929275,2.68143,2.38408,3.50742,2.0279800000000003,2.1812133333333334,2.48772,3.061166666666667,2.6501216666666667,6.669480999999999,1.935294,5.6234,3.1111733333333333,2.9217866666666663,1.81427,2.145745,3.427965,3.5535,3.52673,2.81446,2.24508,2.24311,2.45203,1.1088879999999999,3.31536,2.062075,3.25129,2.1835585,2.1835585,3.032465,1.9268033333333332,3.950955,3.367535,5.1877,7.619106666666667,4.172455,3.50143,6.141868,2.1648,3.314604444444445,2.201826666666667,1.3867571428571428,1.71956,4.7914,1.6578933333333332,0.49790375,0.7099716666666667,4.139105,4.264275,2.69248,0.9361388888888889,2.917185,2.5991133333333334,5.05185,1.9441400000000002,1.92551,1.1527333333333332,4.74204,2.48745,4.4904,0.702633,4.1473458333333335,4.63366,3.93745,4.479985,3.33567,3.682925,2.88992,5.67615,3.70788,2.0873,2.418293333333333,6.415125,6.2017875,0.6941875,3.99993,4.03856,5.26115,3.7883999999999998,3.5056999999999996,2.8025,3.473933333333333,3.8330333333333333,5.66166,2.753482,2.5795500000000002,3.832995,5.52045,2.477435,2.596025,8.610436666666667,4.831825,2.0713833333333334,5.13775,4.610605,1.846228,3.87158,1.4491125,1.7911,4.760165,4.028555,5.75915,3.1542933333333334,4.19434,4.530525,5.50275,3.84848,4.05472,3.69544,4.786215,4.007685,4.44181,1.200342769230769,1.200342769230769,8.40675,0.8622325,1.948142996031746,0.8622325,0.7650883333333334,0.3800188888888889,2.7132313293650796,2.18532,0.4911828571428571,1.948142996031746,1.589155,3.61797,2.2220484722222222,3.370845,4.603845,7.870993333333333,2.158495,2.12922,2.04211,5.31295,5.65895,1.82264,1.583625,0.8821025,2.4657275,4.10368,2.664805,4.21633,6.566285000000001,0.4452555555555555,3.808745,0.74657,3.24512,2.4737525,4.4276,1.3128383333333333,4.42773,4.74263,4.297305,2.964385,4.119085,5.7188175,1.7980725,3.533735,0.6889761538461538,2.75307,2.7104,1.186824,2.85162,2.46658,2.44087,4.245415,8.22622,3.4433969696969697,3.6772,3.290805,8.094315,5.492323333333333,3.2253866666666666,3.93267,3.575655,5.84545,6.02885,6.09335,4.82769,5.02725,6.13195,2.4626366666666666,1.417705,1.8837033333333333,2.284546666666667,4.018145,2.4321033333333335,0.23835135135135138,0.23835135135135138,0.23835135135135138,29.838731523809525,0.23835135135135138,2.8449763513513515,0.23835135135135138,0.23835135135135138,0.23835135135135138,3.197244684684685,5.0309,0.23835135135135138,0.23835135135135138,0.23835135135135138,0.23835135135135138,0.23835135135135138,3.25442,5.01682,3.032945,0.3224358974358974,0.3224358974358974,5.057596666666667,4.339779875,4.120751875,3.4954359861111115,4.084640952380952,8.129733333333332,11.46915548096348,6.700378666666667,8.096796666666666,7.376527714285714,2.5458233333333333,6.5601014285714285,4.35338,4.460450865384614,0.3224358974358974,9.036418999999999,6.684730666666667,7.4408650000000005,2.55465,8.322701714285714,15.98186357142857,19.179408456959706,57.61757529820832,120.38627269331322,1.3866100000000001,3.4012333333333333,3.17185,4.141403151866152,0.3224358974358974,1.7902079487179487,8.701015833333333,14.816779797619047,20.300217222222223,49.8076691946533,13.533891880952382,2.8455,0.2699810344827586,0.2699810344827586,4.20757,2.5266933333333332,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,0.2699810344827586,7.55611,0.2699810344827586,0.2699810344827586,0.2699810344827586,3.000525,1.9432,4.49638,3.84579,3.877755,5.3016,2.39224,4.215185,4.35667,2.762305,1.4581966666666668,3.707135,1.004175,2.294865,2.7272866666666666,6.425886666666667,6.1696333333333335,2.74694,5.7014817777777775,0.5002088888888889,0.4414013333333333,2.55625,2.8020766666666668,3.112345,4.18056,3.473133333333333,7.3912825,3.733745,3.55845,3.438875,3.992795,3.310535,3.29473,5.20155,2.937205,0.4456269230769231,0.8815818181818181,4.2490499999999995,1.9078675,3.753315,3.629205,4.458465,3.577935,2.56215,3.07721,0.5832206666666667,0.706914,4.129455,2.6070033333333336,4.39839,3.94006,4.215714999999999,2.709365,3.8266,4.42683,4.683075,3.11536,0.7899336363636364,3.1113233333333334,5.18015,2.19824,0.9651225,1.7230699999999999,3.420355,5.5908,2.001115,2.97762,4.31252,5.8085,2.314365,2.30113,2.2676,3.912895,2.53613,3.807355,0.6994285714285714,2.6671266666666664,3.290745,1.66167,6.025023333333333,4.21726,4.143035,4.17912,2.741695,2.106105,0.5106372727272727,4.704565,3.84361,5.2843,2.54217,4.64737,3.63124,2.770855,1.9060783333333333,1.2729300000000001,5.3861,1.921815,2.75933,9.14152,4.26092,5.24645,3.718765,0.894641111111111,3.07842,1.4385999999999999,3.19431,6.40615,5.2186,5.16665,3.810625,5.3111,4.60665,1.684,1.7448233333333334,5.4356,3.0228533333333334,3.5517333333333334,2.538725,5.4498,4.894635,1.50363,3.6409000000000002,2.86917,2.76362,2.937435,9.01497,4.97845,1.6307725,4.729525,5.76812,4.593954999999999,4.105055,4.78186,4.05315,4.424605,8.246469999999999,2.3998033333333333,3.06281,3.77639,4.584955,2.859155,3.144505,5.00765,4.01365,3.61256,4.3671240000000004,18.872728333333335,2.9967233333333336,2.4994466666666666,3.1453699999999998,5.800658333333334,1.1433725,4.306035,2.0652641666666667,5.01935,1.4505866666666665,4.081165,4.148425,3.71589,1.05053875,4.53876,5.24405,1.6777375,5.12113446969697,4.41709,1.16202,3.422725,1.77547,2.24041,1.56421,4.20775,3.75706,4.501945,3.664315,3.0543133333333334,4.762035,8.165806666666667,4.48767,4.48786,4.981975,3.3178566666666662,4.33859,4.89497,6.289108000000001,1.054222,1.054222,4.623635,4.721245,2.23946,1.47597,7.3332500000000005,4.37766,3.46983,4.098145,4.453885,4.45873,3.811465,3.9582,6.473145000000001,4.26239,4.760585,5.05565,1.5002142857142857,2.667875,4.36046,4.970405,3.3476075,0.20729777777777778,1.6390975,2.341805,2.662646666666667,2.1158933333333336,1.013912222222222,1.3500325,1.4117625,2.8018066666666663,0.6125477777777778,1.3290799999999998,2.1840225,3.854625,3.6963000000000004,2.336863333333333,2.8430133333333334,3.01944,2.7539433333333334,0.72764,0.91096,2.82304,4.942275,4.42635,4.69903,4.395795,4.564605,5.1451,2.4376,4.409985,5.3019,4.730365,6.48993,3.723,0.4639505882352941,5.5242,4.46084,4.22368,5.2688,3.355665,1.979428,4.58527,3.894345,2.937575,5.31349,4.58874,1.4029566666666666,5.31349,4.235355,6.748355,3.72672,1.2632333333333332,4.095835,5.3223,3.933725,2.5490833333333334,5.41365,1.55941,1.98078,3.725845,3.38796,0.7890088888888889,4.61171,5.08055,3.78297,5.02375,3.3104933333333335,3.4485333333333332,1.7170919999999998,1.8173525,3.252645,3.395945,3.6079000000000003,2.3948233333333335,2.744975,2.083423333333333,4.58968,1.6491142857142855,0.8120777777777778,6.01983,4.24731,1.428844,2.4693433333333332,2.197956666666667,3.152006666666667,6.132146666666667,2.4422855555555554,0.915996,2.3429,4.546805,2.219543333333333,4.66711,5.9317,5.25415,4.823975,4.45783,5.1209,2.1293966666666666,2.27297,1.6777166666666667,2.199266666666667,1.88924,2.55896,2.24258,1.52083,2.835305,3.029095,3.609615,6.46685,5.61355,4.12321,4.883445,3.923455,3.805905,4.429635,0.86252125,2.172006666666667,5.32905,1.191572,0.7461066666666666,4.70179,3.41079,2.544376666666667,3.32558625,6.388005,3.845325,0.9838939999999999,1.24663,0.7210144444444445,4.102481666666667,2.2170866666666664,2.7076966666666666,1.1908142857142856,2.9181566666666665,2.3158733333333332,5.22525,4.796955,4.52017,5.3759,3.83563,1.2455749999999999,3.63904,1.6523700000000001,3.431685,4.16397,3.39851,2.6420166666666667,3.110376666666667,2.5776233333333334,5.82615,4.15014,2.835845,2.809175,8.11613,10.555695,4.43874,1.20918,5.49935,4.001795,5.5457,4.441345,4.11387,3.761565,3.387915,4.03732,3.749329583333333,5.27363,3.629755,3.97951,4.552985,1.9970780000000001,5.1377,5.82105,4.935715,3.295875,3.403555,6.593155,0.6837691666666667,2.7576,2.7063,2.3483733333333334,5.10845,3.445825,1.4262249999999999,4.4856,3.3613999999999997,3.698095,5.06405,3.4666616666666665,6.649235,3.8203333333333336,2.778116666666667,3.2557899999999997,3.1384833333333333,3.92222,1.9829266666666667,2.4157800000000003,3.27462,4.146395,3.4926929166666665,1.9235175,1.5383375,3.577453214285714,2.9226789999999996,0.9142899999999999,2.857635,2.857635,1.2128925,5.79165,2.85852,3.43303,3.498035,3.1936,3.33806,3.17021,2.95613,3.087155,2.2039933333333335,0.5426420000000001,3.141915,5.6399825,3.10386,3.56302,3.14983,3.92064,4.12727,3.11163,2.77866,3.99158,3.714865,3.168615,4.46271,3.31559,2.5782599999999998,4.08992,3.61466,8.794,3.7336,3.44255,3.107325,4.0047,4.00952,3.615095,2.312835,3.54845,2.5327349999999997,2.836225,3.034365,3.136435,3.980605,1.7641900000000001,1.7641900000000001,2.128255,3.163595,3.214975,1.5426819999999999,2.752765,3.47893,1.959002,2.86947,1.5426819999999999,4.578915,3.048915,3.857863,2.78657,3.212435,2.402785,3.234305,3.879465,4.74021,3.573935,4.26302,3.76841,4.196825,3.711295,3.135455,3.179015,2.959155,3.958,2.62648,3.949635,4.901745,3.920025,3.529155,0.2963695652173913,3.452795,0.4561025,4.251365,3.44428,2.98402,3.5498,3.826045,5.9485166666666665,3.15548,2.507686666666667,2.198983333333333,2.7741733333333336,0.6687700000000001,6.620635,2.904115,3.294425,5.37045,1.97701,2.767815,3.119005,3.192295,6.6461500000000004,4.76423,4.93364,3.93046,4.40562,4.34669,3.6967,1.4984433333333333,1.574704,3.850525,4.751215,5.526375,2.2084033333333335,4.93727,1.64821,3.5381666666666667,3.697945,1.824435238095238,3.965235,5.0641175,3.733966666666667,4.098833333333333,3.6803666666666666,4.584265,5.0378,3.3455666666666666,4.225985,4.21411,4.884345,4.49115,4.306155,4.03712,3.153585,4.322725,2.4418325,2.93979,2.93979,3.923145,2.534823333333333,3.85195,2.5832166666666665,4.550275,3.3718333333333335,3.48625,1.7731,2.0124999999999997,1.17561,1.17561,1.69163,3.4897333333333336,1.7179933333333333,2.8183833333333332,4.350405,5.1959645000000005,3.4693666666666663,4.83228,5.84075,3.285645,2.889745,3.1392100000000003,1.5356033333333334,4.245285,4.29464,6.5730775,1.6602133333333333,5.56895,5.50835,3.314826666666667,3.367865,4.37841,6.58169,2.207613333333333,2.3562875,4.227525,0.5066214285714286,4.404255,4.035635,4.51242,4.54905,3.74697,1.4546860000000001,1.6643820000000003,3.945685,4.067985,2.3276333333333334,3.782165,4.52278,4.61585,1.21614125,3.687545,4.475655,3.85584,5.2163,2.8015266666666663,5.745433333333333,3.73825,1.581426,3.30856,1.2288766666666666,2.72357,7.852513333333334,3.25606,0.7967663636363637,3.427045,4.34892,3.86012,2.01165,2.01165,4.83287,5.9421,2.862715,0.49769555555555556,1.888665,4.32996,3.90716,4.356305,1.735898,2.82809,3.69054,1.2131690131578947,1.2131690131578947,1.2131690131578947,0.8014052631578947,1.3900419298245614,0.5886366666666667,1.2131690131578947,0.8014052631578947,0.32806526315789475,0.9167019298245614,0.32806526315789475,0.47334000000000004,0.47334000000000004,0.47334000000000004,0.47334000000000004,1.1355443333333333,1.0758875,2.3365266666666664,2.229906666666667,1.0159833333333335,6.246883333333334,2.6029433333333336,6.556428333333333,2.8555533333333334,3.818045,2.85243,3.212035,2.8073425,4.95221,2.65328,4.350195,4.07682,4.961605,2.322195,3.815255,5.09885,4.13242,3.67702,4.985445,3.353485,4.509505,5.54355,5.01405,6.2821,4.92358,1.1938025,3.594075,3.72765,3.165925,16.25595,4.750225,5.4,2.61065,7.61175,4.024755,3.9661,4.338295,3.34415,1.01042,2.564635,4.26054,4.304565,4.490685,3.370705,4.10459,2.7941000000000003,4.32071,4.616905,4.225435,6.63768,8.412781666666667,1.4118157142857142,3.346815,4.1826,4.03784,3.64323,3.4984,7.2121,2.78519,2.75126,2.55282,3.848245,3.763495,4.50825,2.381845,1.77985,0.9064840000000001,4.470355,4.470145,3.72677,4.098505,3.516265,4.92937,3.904005,6.239,5.9392,3.904945,6.15835,3.56368,3.253805,3.143545,3.41317,1.7893025,3.85698,4.8589,5.13635,5.353948333333333,5.353948333333333,2.441715,1.7893025,2.0181,3.090955,0.7324799999999999,1.562455,0.829975,1.3628475,2.51033,0.344741,2.896325,4.149445,1.3628475,3.419511,10.672385,6.4479275000000005,2.1625513333333335,1.06007,1.7941666666666667,4.394905,4.333685,6.157761714285714,1.8905875,2.308365,4.154915,4.30178,4.766225,2.10689,5.3504,3.615766666666667,3.4601,5.17185,7.275196,3.8028,2.4539075,2.7436399999999996,1.62368,3.92489,5.35617,1.838624,5.47625,4.391695,6.1986799999999995,0.534778,5.05795,3.74306,4.948875,3.300445,2.63561,7.01055,8.5266,5.60405,1.877,1.877,1.877,5.86225,5.32495,6.89815,2.90396,2.914725,2.5910663157894738,5.40035,3.51437,2.546607,1.922135,2.546607,6.926907,4.448683333333333,4.391842380952381,6.16015,4.391842380952381,4.391842380952381,3.2098857142857145,6.53965,5.372922,2.748192,2.748192,2.414375,6.5592,2.734815,3.4867,5.22868375,5.22868375,5.22868375,7.395045,3.3931625,3.40577,3.4683775,3.340585,0.81368375,6.957396666666666,2.508713333333333,4.22442,3.264205,13.585543666666666,4.484285,5.4517425,6.67681,2.5871216666666665,3.264505,1.1012633333333333,5.4517425,3.292545,1.6903375,1.6903375,3.084305,5.1848,1.734625,4.737186666666666,0.846556,1.4540966666666666,0.846556,1.90171,2.581181,5.208976,3.86549,1.4540966666666666,2.99676,5.1285075,1.3600725,3.358425,4.19102,1.83896,3.971268333333333,2.166215,2.929145,2.91423,0.9678699999999999,3.574225,2.204405,1.84125,1.86444,3.29076,3.869925,2.503345,3.774795,1.3203233333333335,1.3203233333333335,1.3203233333333335,3.440775,2.4958533333333333,2.4958533333333333,2.313255,3.51081,2.072763333333333,1.614575,1.614575,2.849105,4.3122025,0.7738575,1.7422266666666666,2.67734,1.0995883333333334,2.841815,0.9678699999999999,0.9678699999999999,1.8074474999999999,0.9678699999999999,3.1091258333333336,0.5157833333333334,3.1091258333333336,5.75321875,3.30799,2.29567,1.7536554166666667,0.5859566666666667,2.3396120833333334,2.986295,2.3396120833333334,0.9503466666666667,3.04376,3.885485,3.58683,3.34581,2.49833,3.5158,1.8854833333333334,0.8873301388888889,0.49165125,0.8873301388888889,0.3956788888888889,0.8873301388888889,0.8873301388888889,4.75027,5.513,3.92006,3.3889,4.736685,4.82828,5.2949,3.601685,3.914585,1.3195342857142855,3.7673,4.191558333333333,3.90108,1.4324033333333333,2.871646666666667,3.881495,3.79497,4.23354,3.54739,3.78488,3.338015,3.118915,4.200075,2.6808366666666665,5.7245,3.577315,4.20378,5.054654285714285,1.2337502857142857,1.94752,3.025695,6.37405,4.51289,3.818335,3.18298,4.582565,7.80289,3.7924,3.169405,3.20217,5.3503,3.99023,5.6163,5.4498,5.4718,3.22553,6.00045,4.964805,3.3260133333333335,8.0005,3.22319,2.2635675,2.18313,4.83895,6.66245,6.1324,5.59495,4.092,5.30325,5.73825,0.4938092307692308,7.522525,4.12619,4.454995,3.863515,4.728235,4.299745,2.9481533333333334,2.725425,1.3095166666666667,0.5719707692307693,1.7292999999999998,2.9561833333333336,3.407855,3.152635,4.7607,3.654575,12.412603333333333,3.698935,3.928035,2.798845,0.64752,5.758336666666667,2.8158066666666666,1.5238566666666669,4.339663333333333,5.601771666666666,2.785965,8.79182,4.256535,1.826946,1.826946,1.826946,4.11349,9.10996,3.502755,1.69464,1.69464,3.44785,9.8024,1.0080425,5.52785,4.504635,4.201735,3.27951,2.0905133333333334,4.065525,3.921315,6.43,5.846778333333333,3.861715,2.826915,3.792825,4.14562,3.4399845,1.20186875,2.9491133333333335,6.19878,3.48204,4.5459,1.08143375,3.65,2.489126666666667,2.51038,1.74905,1.76066,2.0806366666666665,5.32245,1.919235,4.47371,5.7216,1.935294,4.42542,3.78016,5.2132,2.55575,2.124385,2.701055,4.080105,4.10239,4.10239,1.1883125,2.2925166666666668,3.01554,4.592398333333334,2.3067143636363636,4.835504,1.8220939999999999,2.7638133333333332,2.1628266666666667,1.8683275,1.8683275,5.11635,7.517435,2.1443333333333334,3.121843333333333,2.3529075,5.3038,3.082735,0.8167120000000001,2.948805,0.8167120000000001,2.605365,3.273605,5.05095,6.12215,4.081815,4.618425,5.4413,2.46439,1.9680133333333334,2.725373333333333,2.1728733333333334,6.2209,4.71315,2.517245,3.793495,2.8543,4.288385,1.08168125,1.124526,2.1942366666666664,1.5759633333333334,2.55862,2.7020166666666667,2.33657,3.06918,2.779455,4.730515,2.5196466666666666,2.4023866666666667,2.6791933333333335,2.3748466666666666,2.739853333333333,2.679536666666667,1.97656,2.446686666666667,3.754435,3.794,3.60561,4.689115,2.941603333333333,2.33975,1.98205,1.28138,0.291966,0.13668847826086958,1.9451866666666666,2.10461,0.13668847826086958,3.996471811594203,2.1984525,0.13668847826086958,6.061189097222223,2.321235,6.0061,3.350635,3.5078666666666667,2.3367166666666668,2.9458866666666665,2.195385,4.50367,3.3914333333333335,3.287986666666667,0.44306210526315787,4.029233333333333,2.4701954385964915,3.079905,1.83463,2.510975,4.1974,2.480215,7.8397,5.0986,4.085765,3.65123,6.48098,5.66257,1.7786366666666666,4.004664999999999,2.0271,1.896705,5.82316,7.48709,1.1757600000000001,2.0285825,3.455465,2.49072,2.91727,3.11729,2.763575,4.6423375,2.312555,3.081275,3.35093,3.10608,7.44936,1.26925,1.84203,2.61796,3.278045,1.66434,3.289135,1.373835,3.554215,3.232025,6.86575,3.287205,8.9687075,4.106605,1.7816299999999998,1.7525533333333332,3.169505,6.45462,1.856105,1.4477166666666665,5.60216,3.305925,4.059435,2.908905,1.9620499999999998,3.003485,10.64235,4.94974,6.38327,3.47859,2.302115,2.11624,2.7323,2.69228,3.354,1.8633499999999998,1.6227933333333333,2.3953133333333336,3.4153,1.67045,3.339395,2.75452,4.833,3.87296,3.40129,1.3112466666666667,2.5392,1.0185899999999999,1.358452,1.641945,2.982905,3.58798,3.72684,2.604495,3.75412,3.908725,2.855165,1.49655,3.541705,3.2303275,3.04051,1.63646,2.958275,3.42416,1.318675,3.30924,1.5495233333333334,3.731005,3.883335,5.34375,2.55882,3.87539,1.76762,3.1834,5.5934,1.699445,1.1282171428571428,4.086133333333334,2.771905,4.353145,4.117255,3.03774,4.642655,4.997525,2.64376,5.3079,5.150025,6.58415,4.51875,6.830196666666666,3.78797,1.6668666666666667,2.7210199999999998,4.760275,5.19475,3.0692299999999997,7.384926,1.3797857142857144,3.650733333333333,2.073855,1.756684,2.2416266666666664,2.757706666666667,0.37420214285714287,2.9672133333333335,3.1918733333333336,3.539635,2.60062,3.2332566666666662,2.2530466666666666,2.4243,2.34512,8.838149999999999,4.79618,1.522608,5.1037,2.4966051304347827,0.7325979230769231,2.693826666666667,7.997312666666667,1.789564,4.6626762500000005,6.4515883333333335,1.7678425,1.5784375,1.5877425,5.38425,3.173795,4.59438,3.8309249999999997,2.4328566666666664,4.17049,0.865174,2.7839506666666667,4.284355,4.3475,4.828995,2.712585,4.440425,4.68928,4.90641,5.3231,5.93085,4.6874,4.522015,3.907075,1.546866,1.8320575,2.94344,3.334235,1.2492444444444444,4.166255,2.1158633333333334,3.23354,4.16132,2.967366666666667,2.7107533333333333,1.5268266666666666,3.3429333333333333,2.7450591666666666,2.7544466666666665,2.871976666666667,1.77792,2.1838,2.411885,4.052315,5.10975,4.12675,4.582845,3.44735,2.303785,3.003085,4.961895,3.691966666666667,4.65162,3.921475,2.323985,4.725645,1.90188,4.109045,5.297841666666667,6.359741666666666,4.278505,4.92277,5.6181,3.5340000000000003,4.272189166666666,4.79447,3.23642,3.8372634999999997,3.355825,1.42477,3.22828,1.769635,2.231845,4.26575,5.3193775,3.8372634999999997,4.137695,3.479435,1.47736,3.445875,2.81626,2.40188,2.23781,2.723835,1.5747531818181817,1.5747531818181817,1.5747531818181817,0.4973581818181818,0.7614555555555556,2.2780538888888886,1.14817,3.57729,1.5783166666666668,4.38851,5.13265,4.868305,3.215815,4.271595,3.272515,5.0946,1.69977,2.95195,2.53258,3.05543,5.836689,4.243385,5.69885,4.14482,0.96456,2.23352,1.3676866666666667,3.79928,3.85863,4.17632,5.57905,5.28155,4.86735,5.51875,3.958605,1.672115,1.4621783333333334,5.295683333333333,0.99428,1.4831899999999998,2.6821433333333333,8.0848,5.21005,3.77782,2.86449,5.4443075,1.5554075,1.0188366666666666,1.5097875,3.12329,3.80582,3.747465,3.71981,1.85597,7.789785,3.0178066666666665,0.917795,5.37805,3.1676533333333334,3.1180833333333333,2.2485233333333334,3.6219,5.9227983333333345,3.0475966666666667,3.202923333333333,3.805633333333333,3.0805433333333334,3.012283333333333,3.019073333333333,2.55515,2.079285,4.58213,5.18815,4.24443,1.0261455555555556,0.720685,3.585433333333333,2.681313333333333,0.98849125,2.5906062500000004,4.129335,4.04181,7.156235,4.808165,3.4489,1.7577559999999999,3.596125,3.63108,2.8485666666666667,3.043017142857143,4.27513,2.88763,5.071744666666667,0.9332711111111112,5.3655,1.768762,4.578215,4.29545,2.17462,0.98304,2.986875,0.433626,3.116725,6.22045,6.03185,2.917454,1.517568,2.70067,0.7754711111111111,2.644343333333333,0.7754711111111111,3.903485,4.998285,1.4564775,1.8039675,5.251041666666667,1.9493866666666666,3.57769,4.41582,3.88387,1.266162,1.6988466666666666,3.882995,6.2602,4.843405,3.07708,2.0083625,2.87775,1.6031575,1.996385,2.0413125,2.577625,4.431905,1.4239222222222223,1.4239222222222223,3.55936,4.419852666666667,7.5580300000000005,4.96072,7.99868,2.22163,3.880545,4.12472,1.6922666666666668,3.5991866666666663,3.8711,3.01764,6.03835,2.96533,2.47604,2.9710900000000002,4.07943,1.11452875,3.92348,4.81774,1.1294616666666666,7.81599,2.63574,3.153475,3.156401666666667,4.005945,4.466915,3.558524166666667,2.87534,2.862133333333333,1.81838,3.6645,2.4742975,2.19676,8.287776000000001,3.5924666666666667,3.430266666666667,4.093035,22.39636107875458,0.69082,2.73507,3.818555,4.938935,8.40893,4.394225,4.21547,4.688005,7.539993333333333,3.539185,1.4601633333333333,5.016548333333333,3.84266,1.020252,1.020252,1.020252,2.29222625,1.7099225,3.037175,1.477775,3.021845,1.45616,2.501755,2.413285,2.91947,1.477775,3.10414,2.503685,4.300766666666667,4.813771666666667,5.16765,0.7766216666666667,3.1369,2.416505,5.5919,3.543315,2.62992,2.01622,1.708915,2.2025225,1.426754,4.109135,1.8540725,4.74749,11.527207666666667,2.932346666666667,2.519175,5.292806666666666,3.3918666666666666,4.4296999999999995,6.117,2.0271333333333335,5.492323333333333,4.15155,0.9127683333333333,1.1495157142857142,6.605500999999999,3.94624,2.1367225,4.269885,1.8818375,4.587285,5.21395,4.686155,4.14391,1.3615314285714286,4.06887,5.05635,4.630755,6.1168700000000005,4.12842,5.51145,4.453995,4.227805,5.20095,3.174533333333333,5.00375,1.78804,3.605185,3.000275,3.428005,3.38236,5.88945,4.54718,2.1385033333333334,3.3024733333333334,9.032485000000001,4.56985,3.0049533333333334,3.62457,3.57886,4.549765,4.282865,5.2268,7.064736666666667,4.038935,2.6790866666666666,4.002613333333334,2.609705,4.3892,2.6128666666666667,6.484025,1.5818216666666667,4.495685,4.745715,11.2676175,0.49924214285714286,4.660375,4.549255,0.6216021428571429,3.540035,4.19702,4.60387,0.882523,4.962615,4.95205,2.78821,9.766348333333333,3.378033333333333,1.8069899999999999,2.281605,3.5528,5.9463,0.7047175,3.88774,2.1871325,5.0214,0.7070192307692308,4.21253,5.66045,5.52905,3.45514,6.544505000000001,4.22416,3.72365,2.67498,2.8077533333333338,4.292895,4.82349,4.944205,5.14945,5.0594,3.4066333333333336,7.447328333333334,2.804975,3.6527055,1.9846475,3.633315,2.58081,1.5127499999999998,3.1371333333333333,3.6581333333333332,2.900463333333333,3.9286,3.322373333333333,3.11078,3.0645966666666666,5.47995,3.188993333333333,3.855285,5.11115,3.13587,1.1346222222222222,3.1444766666666664,2.8325033333333334,4.030525,2.9511966666666667,3.2959833333333335,4.769806666666667,2.185826666666667,1.7745125,3.03571,3.71691,4.730985,1.11780875,5.0291,3.06106,4.151066666666667,3.2102233333333334,4.835302,3.90577,3.273685,4.53565,1.733965,3.699375,0.6634375,4.555995,4.784755,15.939250606060606,3.5352,1.3021533333333333,4.522545,0.6085364285714286,2.5118,4.39835,1.95723,1.3707028571428572,3.090885,4.82213,3.4006666666666665,0.7445583333333333,2.592355,7.70929,3.844275,5.8889,5.2689,4.75131,3.4938000000000002,3.7381666666666664,3.23467,6.839981666666667,4.19869,5.077,2.1043375,0.43369166666666664,2.00088,3.06739,1.756625,2.76293,4.110705,3.0846366666666665,4.91418,0.7799483333333334,4.935245,3.52925,3.02579,1.1365466666666666,2.8598433333333335,2.0207433333333333,5.01265,3.913945,2.31384,1.5967714285714287,4.473275,5.0463,5.1615,5.987123333333333,2.0928633333333333,5.48955,5.231,4.49306,2.22762,4.738655,6.2866800000000005,5.0645,2.928585,4.995595,2.633985,2.577825,4.258315,3.965575,1.3600783333333333,4.989095,2.6553400000000003,2.934176666666667,5.401786666666666,5.401786666666666,5.1155,1.6088879999999999,4.825005,0.96860125,1.7873480000000002,4.78669,2.69091,1.4539133333333334,3.5568666666666666,0.94795,4.347066666666667,6.13135,3.24434,5.1232,3.82479,3.505185,5.634385,3.544075,3.1467733333333334,2.8017533333333335,2.3085299999999997,2.77895,3.024096666666667,4.11932,1.8104445054945053,3.17698,4.79756,5.13995,2.3885895833333333,4.473085,4.26525,5.325585,3.6035333333333335,5.2109,4.88704,5.31145,4.978265,3.68741,3.705815,3.80428,4.852595,5.59075,4.571675,5.25585,4.46942,4.57868,0.7272966666666667,4.96648,4.80538,4.187405,7.329957500000001,4.55104,4.150715,4.320865,4.67254,3.74289,3.59012,2.12558625,4.4885,1.96038,1.3136057142857143,3.672855,2.1051100000000003,2.45052,3.9184973333333333,2.9790533333333333,3.162595,1.05738,2.084935,4.16359,3.629355,1.8107225,1.8107225,4.28152,1.9672100000000001,3.139393333333333,4.629465,3.475165,3.85853,1.56715,2.054705,3.6506,1.94131,4.109645,4.61989,4.404475,4.176825,8.230563333333334,2.6303,3.78649,4.81729,4.2669,3.043176666666667,4.30211,4.46301,4.35144,1.97953,2.619283333333333,4.772625,4.06024,3.89379,3.845795,1.7056175,4.181915,4.54339,4.646105,4.278165,4.05456,4.05456,3.2111891666666668,4.465425,4.54672,3.93989,1.671068,7.6710400000000005,3.943305,4.83877,4.42637,4.28876,4.29054,5.0509,2.781675,3.459825,2.759405,5.33115,1.8136199999999998,5.228,5.998048333333333,5.54225,0.754313,4.692055833333333,1.1582000000000001,4.86971,4.91395,4.981195,4.7576,5.39785,3.633433333333333,3.633433333333333,0.914373,2.262375,4.73868,4.70356,4.005475,4.74767,5.5504,3.155005,3.968955,1.3974966666666668,3.155865,1.6168625,1.23124375,4.488734666666667,0.817655,2.534473333333333,3.2489066666666666,1.26243,2.1425725,2.6096933333333334,1.2749033333333333,6.2884,1.9146775,2.4368233333333333,3.74623,2.1480325,2.7573133333333337,3.905455,4.724255,3.750766666666667,3.2827566666666663,4.2179,1.723922,2.1131975,4.547355,0.6606449999999999,2.298513333333333,2.5943533333333333,2.9974000000000003,2.995643333333333,1.3430514285714286,0.8803833333333334,2.4798266666666664,4.22518,1.26431,2.272615,1.2090475,5.68528,2.31478,4.865375,4.591465,4.564945,4.732585,5.4988,4.430685,4.301135,1.5756866666666667,3.8877,1.8758400000000002,2.7098133333333334,1.1826485714285713,4.421315,2.0256975,5.815445,3.450095,3.79415,1.6981639999999998,6.70188,4.77674,1.4677449999999999,4.04706,3.191865,4.019655,3.98914,1.965535,1.965535,3.302153333333333,1.4369533333333333,1.4369533333333333,2.22762,2.3949333333333334,2.2131925,1.275285,3.586,1.07606125,3.108643333333333,2.4541825,1.87034,1.5277966666666665,2.178945,2.176425,0.2868129411764706,2.4329675,1.1732,2.35649,2.1628266666666667,2.38693,1.098418888888889,1.1088879999999999,3.6864666666666666,3.2048533333333338,1.965535,1.9078675,2.132136666666667,2.4880666666666666,2.4617733333333334,1.8902640000000002,2.7865800000000003,1.1049099999999998,3.483033333333333,3.475733333333333,2.5202766666666667,1.564054,1.04583,2.610425,1.04583,2.610425,0.67640875,0.67640875,0.518925,2.3430525,2.265563333333333,0.67640875,2.2587275,2.3433066666666664,2.3409925,1.8566725,0.7975933333333334,0.67640875,0.67640875,1.6808340000000002,1.6808340000000002,2.05376,1.9078675,0.67640875,2.44722,0.45475538461538456,2.7128,1.8765266666666667,2.5317966666666667,2.4862766666666665,2.4862766666666665,0.38156599999999996,0.38156599999999996,2.22762,2.00476,2.29394,2.1091,0.38156599999999996,3.6621666666666663,2.7353,1.59369,0.64415,1.59369,0.64415,8.85336,2.4427833333333333,4.074533333333333,3.6090666666666666,3.1057366666666666,3.0227533333333336,2.990596666666667,3.480566666666667,2.378695,1.6734075,2.7265366666666666,3.7924,2.327923333333333,1.6808340000000002,2.469900634920635,2.469900634920635,2.7508166666666667,2.07774,4.26377,2.3663833333333333,3.2272166666666666,2.7467633333333334,1.6908439999999998,2.55265,2.3923325,0.8083663636363636,1.654015,3.22416,1.6936240000000002,3.0844833333333335,2.7485233333333334,2.5404,3.8468666666666667,1.7452500000000002,3.6710666666666665,3.1826866666666667,4.069866666666667,1.266894,0.2699810344827586,1.3184742857142857,1.3184742857142857,1.0586966666666666,3.2426100000000004,3.9418666666666664,2.5062633333333335,2.112913333333333,2.112913333333333,2.13741,1.5495233333333334,1.02119,1.7727166666666667,1.7727166666666667,0.67640875,2.22762,2.8323666666666667,3.1000633333333334,2.4541825,2.0981,2.0981,2.0981,1.062368888888889,1.3867571428571428,1.3867571428571428,2.4633425,3.139143333333333,2.8588863005050507,4.426655,2.8804200000000004,2.5018333333333334,4.354005,3.818245,6.9111199999999995,4.201445,4.395895,3.6221,12.7962575,4.58646,3.47148,0.9555375,4.20401,3.053235,2.17446,3.613665,5.5747,9.835029,5.88855,0.5030588235294118,3.7516,2.52471,4.48854,2.549,4.57033,4.03689,4.23997,8.48683,3.463825,3.884345,4.44877,3.3249886363636363,8.301460256410255,3.297563333333333,2.66027,3.603425,3.804705,4.921205,4.36567,6.440809999999999,5.23,1.389302,3.26507,0.9152375,5.1635,6.6899,4.94771,3.974225,5.5657,4.022775,5.2788,4.75903,7.444570000000001,3.83489,4.680191000000001,3.114596666666667,4.9161,2.878635,1.24353,1.24353,3.394605,3.96461,2.14236,2.04594,4.9301,4.871055,3.372365,1.92012,2.2059725,3.13444,2.4551433333333335,1.10802625,3.83625,4.70517,8.29211,1.8266760000000002,3.474965,3.47232,3.62531,2.7976166666666664,8.48234,4.16117,3.7453000000000003,2.6636366666666667,3.813915,3.2386199999999996,3.2518733333333336,3.0260766666666665,4.179105,3.81167,4.537915,4.01642,0.40198933333333337,1.54389,2.110866666666667,1.7925325,5.05675,3.83996,2.608076666666667,2.191095,4.527305,3.939258,2.2960875,2.413965,0.8739459999999999,2.3654425,2.64774,2.64774,5.3674,1.946105,3.1986033333333332,2.1978066666666667,2.049796666666667,1.75342,2.649115,4.116485,4.13874,3.716155,4.929545,4.93327,2.73631,2.1130666666666666,2.0038,5.1775,5.582416666666667,2.0996533333333334,2.9175799999999996,2.19415,2.4785333333333335,4.20076,2.7860133333333335,4.964145,3.712275,3.50132,4.56254,2.9030199999999997,3.55039,3.8219,2.1085766666666665,2.5156566666666667,0.41178785714285715,3.3836,2.8303166666666666,4.616175,5.7287,4.63329,6.0596625,1.9835125,1.66925,3.12581,5.5056,6.0967,4.87321,3.3279599999999996,2.2195566666666666,4.531985,2.28579,4.06278,2.298156666666667,2.0734875,5.36925,4.982595,5.055,1.76392,1.883515,0.997206,0.997206,1.233778,0.8408442857142857,0.670502,1.7517002857142858,4.442455,11.410175,4.164895,4.71734,4.25776,6.0114825,2.743145,1.7091633333333334,3.5607375,2.939435,4.98068,2.3649066666666667,2.8936666666666664,3.2471300000000003,3.525233333333333,2.5235533333333335,3.5269999999999997,3.7075666666666667,3.25798,3.5826666666666664,3.4975,3.1387766666666668,3.103756666666667,4.1162,2.61258,3.0446033333333333,3.263973333333333,3.041676666666667,3.5768,2.27944,5.5027438095238095,3.4044666666666665,4.59276,3.4397333333333333,3.4881333333333333,3.867366666666667,2.9806266666666663,2.792946666666667,3.2513633333333334,3.3093833333333333,3.5937666666666668,3.4526333333333334,2.0746875,2.8015633333333336,2.9172999999999996,3.05655,3.05655,3.2797966666666665,3.501533333333333,3.1159166666666667,2.713756666666667,3.3283133333333335,4.125766666666666,2.8908,2.858475,2.758376666666667,2.9366299999999996,5.047963333333334,5.3994,1.6941666666666666,3.32475,3.8114666666666666,3.54685,3.3617666666666666,3.9194999999999998,3.6445333333333334,2.7262733333333333,3.4667120000000002,2.14138,2.7626165,3.5328666666666666,3.4194,2.8841933333333336,2.9527866666666664,4.0653999999999995,2.947373333333333,3.1092666666666666,2.470395,1.4461066666666669,3.3378666666666668,2.574736666666667,2.5779666666666667,2.777075,3.3427666666666664,3.2515066666666663,1.984912,5.886473333333334,2.56034,0.9489369999999999,4.698525,1.933477083333333,1.6563866666666665,4.56534,3.748635,3.16518,2.31969,1.6007675,3.35853,2.842365,3.198675,0.44737499999999997,2.10083,0.44737499999999997,1.9554,1.6007675,2.771485,3.693935,2.664875,3.4776,3.313805,0.5883906666666667,2.96545,0.969625,0.4604917647058824,4.472665,3.799005,4.972265,2.596,6.0183,3.93453,3.750995,5.06055,3.5389666666666666,1.756562,5.92375,3.23836,3.95253,4.814315,3.0550333333333337,1.9916433333333332,1.98973,1.4763733333333333,1.791055,0.972415,0.972415,4.52647,2.4374066666666665,6.084771666666667,2.132515,1.828585,2.373155,1.99429475,2.0746925,4.06848,4.19368,2.1189875,1.8602666666666667,1.99429475,2.851785,3.2705397499999997,1.6720537500000001,5.1161216666666665,2.132515,3.20177,3.29173,3.2849133333333334,5.71485,4.723555,1.7239825,2.1719575,2.46984,3.352645,4.916755,5.20355,1.8868625,3.757365,1.5356033333333334,1.6817775,5.7048,10.733905,2.0961066666666666,2.5259933333333335,2.3568000000000002,4.69999,4.480745,2.13213,5.12175,4.50314,3.21917,39.67245236904762,2.96583,3.3293466666666665,0.4692833333333334,5.321715833333334,2.186033333333333,0.96434,4.49875,3.550725,2.2578375,1.9070075,2.4304799999999998,4.10352,1.3632257142857143,2.9825696666666666,3.811085,4.956185,0.949569,4.73412,4.84508,5.0685,2.8061666666666665,1.3528075,3.86623,4.5809,4.17124,3.094165,3.51921,3.995405,12.140070858585858,3.0478400000000003,2.986875,4.34419,2.79742,4.52164,3.65723,2.58094,3.29587,6.73950625,5.50485,5.2451,5.2819,2.45858,3.84467,4.895265,3.56538,4.911785,4.687195,0.12210326086956522,5.0539,3.1787,2.69923,1.6780666666666668,0.9324666666666667,0.9324666666666667,3.0862,2.80407,3.05754,1.236068,2.95358,4.543895,2.50673,4.430413333333334,0.6025657142857143,4.64197,3.47102,4.31839,4.311625,5.0917,1.19472875,1.0843875,3.6259,2.9302433333333333,2.9993866666666666,4.449551636363637,3.79039,6.332765,5.48025,4.070365,3.570805,2.1111291666666667,1.4578533333333334,5.424,0.31172133333333335,3.24433,3.57886,4.024645,14.282406666666667,1.8254875,3.00188,0.54538,4.363075,8.083300000000001,3.212975,2.0137066666666668,5.6065,3.4830666666666663,1.0468077777777778,5.25495,2.430015,3.19075,5.081,3.479108777777778,0.74781625,7.286136666666667,0.709565,5.09325,3.224769277777778,1.3570675,2.098354777777778,3.1268025,3.1268025,3.71711,4.349228500000001,1.3814,2.40366,2.75969,3.50329,2.963535,2.493615,3.258945,3.39115,6.591018666666667,6.3343,4.20427,3.13656,4.679875,4.87375,3.588005,3.41267,3.39028,4.71193,5.1566,2.4530566666666664,2.5204566666666666,1.5437883333333333,2.2497933333333333,2.487865,1.54195,3.467233333333333,3.6060666666666665,3.637233333333333,3.0751833333333334,2.6291166666666665,1.4581966666666668,1.5130800000000002,0.4601154545454546,2.8563500000000004,1.3611657142857143,2.1617925,2.990763333333333,2.433193333333333,2.6246733333333334,0.84872125,2.3129475,2.52236,2.81294,3.48444,5.7193,3.863785,2.77876,2.278303333333333,3.376055,4.722725,2.584355,2.850745,1.98625,3.775265,2.69615,4.691285,1.3448033333333334,0.630593,2.3598025,3.184145,3.10386,3.787765,4.8078,8.84769,3.1265699999999996,2.2853333333333334,1.80014,1.796376,1.796376,2.7479999999999998,2.54967,5.17495,4.52487,3.709575,4.88454,4.37912,4.377455,3.420165,4.71219,8.19469,2.56445,0.49790375,3.029443333333333,1.3087466666666667,0.9968685714285714,1.9308466666666666,0.880683,2.1115725,4.442045,5.7895,6.292845,1.025445,7.57574,2.15624,1.5313400000000001,3.0299300000000002,4.85306,3.699733333333333,2.51415,3.759285,3.3752333333333335,3.8490333333333333,3.19563,2.90828,2.855646666666667,6.52913,2.40065,4.298985,3.5745899999999997,4.193731666666666,1.4628466666666666,1.26008,4.20526,2.83282,3.4604,6.28177,2.9345,2.001505,2.577,3.80646,3.508566666666667,2.4759100000000003,4.233901666666666,3.2484066666666664,5.3366,2.4528499999999998,1.796695,4.952535,5.60005,4.492345,4.959615,1.8606066666666665,2.3358675,1.983495,3.33693,1.5998,0.959925,2.8850125,2.03388,2.11002,4.106835,0.7880408333333334,5.342815,1.39111,0.7620463636363636,3.7952666666666666,4.270595,0.9711128571428571,3.3001505,2.9450981250000003,0.8803833333333334,4.76058,0.18053952380952382,0.18053952380952382,0.18053952380952382,0.18053952380952382,0.18053952380952382,0.18053952380952382,2.0608779999999998,4.100155,2.0608779999999998,2.0608779999999998,1.7836133333333333,0.18053952380952382,0.18053952380952382,3.4471333333333334,2.9520999999999997,3.44008,3.460115,2.300125,3.467725,1.4008528571428571,1.7331320000000001,3.4399845,1.69524,3.3381333333333334,2.79611,5.848896666666667,4.80877,4.06182,4.350635,4.471785,5.41785,4.163315,4.23642,7.602029583333334,3.6962333333333333,3.5836,2.5148566666666667,4.767336666666667,2.5859866666666664,2.1104725,1.8882166666666667,5.0292,4.977465,4.58103,5.28085,5.6416,4.611195,4.68271,0.7855381818181818,0.6999907142857144,0.6999907142857144,4.85331,2.2604833333333336,3.945565,1.0435385714285714,4.938075,1.5433714285714284,2.3306,2.55766,4.522233333333333,4.522233333333333,6.77905,4.27193,1.6286516666666666,12.275751666666666,3.3721666666666668,1.1605444444444446,5.22115,5.0548,3.54873,3.351375,2.392455,4.0178,0.7183666666666666,3.5092666666666665,3.4177999999999997,3.5358,3.0612,1.4963833333333334,1.62701,4.991694166666666,3.3047799999999996,3.0766466666666665,3.517333333333333,5.178005000000001,3.419389166666667,0.8280099999999999,2.209356666666667,2.6233999999999997,2.34662,3.9674666666666667,3.3948666666666667,3.451033333333333,3.5259,3.3844666666666665,2.31246,1.0427566666666668,3.00954,2.64629,3.736695,3.654175,4.273195,2.6632433333333334,3.5660000000000003,2.75665,1.624962,2.2227099999999997,2.939737619047619,4.023166666666667,2.00112,3.22397,1.8410333333333335,4.117133333333333,5.198729166666666,4.984995333333333,2.5394,2.65755,2.744525,2.673325,1.6561142857142859,2.6217,3.2727057142857143,2.577325,3.839066666666667,2.98492,3.6783573333333335,3.52467,1.1693,1.28173,1.770455,2.245615,3.4348333333333336,3.527566666666667,4.955245,7.246995,4.52712,4.88747,4.65312,15.235984333333333,0.47109449999999997,12.179780000000001,0.9777499999999999,3.270045,2.2491966666666667,1.97828,2.956505,1.6104500000000002,1.49655,2.55489,1.216996,2.828844666666667,1.94385,3.2230933333333334,2.3898366666666666,2.8466466666666665,1.5899266666666667,0.8115408333333334,3.1865133333333335,2.5736933333333334,3.1676300000000004,1.062368888888889,3.7085000000000004,0.7757858333333334,0.3521276923076923,2.7220433333333336,4.4863,4.790535,4.72784,0.9246272727272727,4.015585,4.59761,1.1317275,2.672125,5.848085833333334,3.367475,3.7978,3.85304,3.80601,1.929625,4.05411,2.7529066666666666,3.019265,3.512785,2.69361,2.83682,3.903005,3.2208,3.4386,3.0922,3.377175,5.2947,1.36428,4.698755,2.1724475,4.20137,5.032936666666666,2.1065575,2.5890733333333333,3.1573933333333333,5.9240725,2.4406466666666664,3.355755,5.8375,4.074533333333333,4.16695,1.7785633333333333,2.4789475,4.57652,3.5926666666666667,4.477295,3.3645333333333336,3.1860033333333333,2.990676666666667,4.021133333333333,3.2006366666666666,2.6861766666666664,2.79556,0.45283555555555555,2.530475,1.9480925,4.766865,4.943325,3.17483,2.6819900000000003,3.2228600000000003,9.50442,3.3459000000000003,3.773105,3.123583333333333,3.74343,2.988545,4.275408333333333,2.75981,2.3594475,2.90692,6.50345,5.04745,2.1088999999999998,3.1722,3.069,2.5925333333333334,4.7428886666666665,1.696752,6.369543333333333,3.84595,5.22925,5.0156,5.53295,3.55078,6.710876666666666,4.00061,3.41722,0.71805,2.44208,1.7153425,3.058543333333333,3.4617925,4.192315,3.82304,5.727,2.7364033333333335,5.05205,2.9659633333333333,3.8922666666666665,3.2332033333333334,4.97901,4.96184,5.25395,2.7026166666666662,5.652616666666667,4.27552,1.5143733333333333,5.5701,3.41779,4.078,2.222885,2.14578,4.830256,1.1674900000000001,2.3040266666666667,1.9762875,4.20448,4.25522,2.6012999999999997,3.374366666666667,3.109005,2.789426666666667,3.90077,1.338668,2.3038666666666665,2.2954766666666666,2.7551133333333335,2.47344,2.857476666666667,2.6895466666666668,3.964915,2.837423333333333,2.8380733333333334,4.35725,2.43709,3.89904,3.47015,1.3785168181818181,1.3785168181818181,4.853585,3.0160733333333334,1.70513,1.373375,2.210055,1.7874825,1.185984,1.3712533333333334,0.6498929999999999,1.63103,1.53268,2.8284633333333336,2.2082833333333336,1.6626899999999998,1.8939366666666666,2.3399466666666666,1.50695,1.68901,1.79205,2.129695,4.302285,2.95697,3.3770333333333333,2.923275,6.003,3.079725,4.484915,4.054778333333333,1.98746,4.04041,3.0804,1.95445,3.46905,2.3813275,2.845865,3.710145,2.2358825,4.492915,3.13207,3.991865,3.6313,0.8050077777777778,4.88447,3.86489,3.31429,3.53803,2.5794433333333333,5.26795,4.642325,5.40961375,9.293589166666667,3.84134,4.559655,2.8815266666666663,3.90648,3.91574,2.151675,2.60092,4.602325,2.3293125,5.934005,1.8858599999999999,2.607055,8.428096666666667,3.12283,4.019236,1.26252,4.670565,4.880695,3.17834,4.64702,4.91005,6.58676,17.06852875,0.6094235294117647,1.098418888888889,3.316046666666667,4.098825,3.92859,2.1923175,3.963515,4.067175,4.8675,2.977395,4.60984,1.6287916666666666,1.6287916666666666,4.47402,0.7594763636363637,1.903652,2.86379,3.871265,0.38661307692307695,1.9454866666666666,4.260815083333333,1.0889766666666667,3.0314766666666664,2.69983,2.935945,7.42505,2.43143,3.3287033333333333,1.92623,2.14857,3.9008075,3.916355,3.44694,7.141314666666666,1.82942,2.901625,4.666835,6.648365,1.74895,2.339593333333333,2.5103066666666667,1.4432733333333332,2.980875,1.73116375,3.978195,3.453105,1.49764,1.833248,1.833248,3.17197,5.7609,4.120748333333333,4.009475,4.733595,5.6268,3.174205,3.71491,3.847195,3.608195,4.358296666666667,3.67352,4.57003,0.929746,0.356169375,5.37275,3.79554,2.53078,8.20062,1.59108,4.686466666666667,3.96455,0.38194083333333334,2.05386,1.25708,1.8827766666666665,2.02,5.71019,3.07458,3.08472,4.635415,4.31468,4.794185,0.5938915384615384,1.99577,0.59258,5.857568333333333,1.641538,4.79523,2.264515,3.4580237499999997,3.101235,4.212465,4.60517,5.151,0.8415172727272728,3.09332,4.434565,2.17216,1.721515,3.57842,3.296365,3.56318,3.7880262499999997,5.60802380952381,4.622015,5.47775,2.7276866666666666,0.5577511111111111,3.4766666666666666,3.791425,0.6186123076923077,4.039705,4.27704,3.951935,3.86699,2.6691133333333332,5.0147,3.0774,3.19348,2.123885,3.786285,2.07246,4.59215,3.786335,0.6766223076923077,4.218265,3.89327,3.24237,4.426735,4.204475,2.813215,3.77988,0.714253,2.99527,3.955042222222222,4.763415,3.3884000000000003,2.651425,3.4250333333333334,2.651425,4.21321,2.92246,3.4309,1.6639983333333335,3.1872933333333333,2.0622875,4.27627,2.8956766666666667,5.43635,3.5642333333333336,3.09301,3.193293333333333,2.54011,2.54011,2.54011,2.5388100000000002,0.9774883333333334,4.81236,2.391453333333333,1.6474033333333333,3.7293000000000003,2.50351,3.261646666666667,4.08722,5.269,3.99796,2.205375,1.583526,4.0654,1.945656,2.61457,2.86072,3.60358,2.186295,3.582305,2.669675,1.777684,4.6792,4.123615,4.2611,3.639455,0.74227,2.41437,4.96667,7.58476,4.96202,2.981055,6.15635,3.3453,3.744575,1.8354475,2.2528925,5.0703,2.4325275,4.55173,3.872475,4.547525,9.059036666666666,4.10075,4.231995,3.46032,4.920025,4.492305,3.1763500000000002,3.1763500000000002,4.30448,3.94911,4.4488,4.49922,4.39709,4.55985,4.334245,1.162985,4.274355,3.974875,5.60685,8.467525,5.18175,4.176859333333333,2.2587433333333333,1.6371133333333334,2.54539625,4.99806,3.93609,4.84627,2.9578699999999998,4.863765,5.36365,5.64405,4.982335,3.013083333333333,4.37662,4.44042,5.23715,5.32865,3.829635,7.097038333333334,4.69369,2.288343333333333,4.729905,4.45635,4.597605,3.75473,4.979545,0.82482,4.374685,4.65004,1.2729300000000001,1.605152,5.14435,5.0477,8.921266,5.4647,5.07805,6.43335,2.80783,2.62741,5.0389,1.4002775,1.4002775,2.56555,1.5742933333333333,2.9351133333333332,3.2818133333333335,1.93028,4.041325454545454,1.37788,2.30343,6.361985000000001,3.57008,3.590235,3.11437,4.03515,4.30948,3.147883333333333,1.1094533333333334,4.04571,3.00632,3.832485,4.41017,3.72936,5.2865,5.35275,4.97694,4.2947,5.61725,6.5756,4.75321,3.180395,3.877905,1.96966,1.96966,3.80907,4.45729,2.2112866666666666,2.96866,2.346567424242424,3.0186166666666665,1.7950633333333332,1.7950633333333332,4.282,3.202285,2.10036,3.571115,2.6944,1.84616,1.132085,1.2774666666666665,2.74381,0.46204,0.8976366666666666,2.52282,4.33512,0.4304390909090909,3.690625,1.7647559999999998,5.72895,3.302165,6.974705,4.377905,5.455516666666666,4.72795,5.0102,4.221115,1.854375,1.7918720000000001,4.56941,2.80114,3.812735,1.2505933333333334,3.14755,4.10763,2.805,2.56747,2.732195,4.52035,3.58956,3.4532,3.76374,3.544515,3.362235,3.10837,1.0982942857142857,1.89773,2.18463,2.50881,4.269735,7.58939,0.893736,1.5034266666666667,1.5034266666666667,2.15,3.94135,2.623505,3.05714,5.1522,2.9178366666666666,1.13486,1.13486,1.13486,2.845375,3.419511,4.741945,3.09533,4.329475,3.29836,3.55998,3.024345,3.3193966666666666,3.53169,4.10457875,2.4358125,1.185984,2.543435,2.4358125,3.48264,1.4286566666666667,1.6783733333333333,1.9446925,5.500900666666666,2.706415,5.817329,5.500900666666666,3.110914,1.8051466666666667,1.8051466666666667,2.795365,6.00918,1.8051466666666667,2.427195,5.84269,2.22261,2.65184,4.96604,3.41371,4.36625,1.8154766666666668,3.003805,4.72879,2.2342766666666667,2.31205,3.87703,1.8154766666666668,2.51144,2.31383,5.56392,2.660365,1.112172,2.439395,3.22508,3.1959295,1.904005,2.0294594999999997,4.0381,1.775832,2.085665,3.055495,2.278495,3.196945,3.81851,2.0902499999999997,2.548765,2.22892,6.22043,2.32334,3.602085,3.361705,3.361705,8.36772,1.03514,2.909035,2.245505,2.765445,2.27274,1.3191066666666666,1.3191066666666666,3.4413,1.936645,6.707660000000001,2.42965,3.21412,3.32807,6.53485,2.66696,2.597405,6.36059,6.36059,2.66441,1.4646,1.1788125,1.1788125,1.4646,2.009866666666667,1.24016,1.1686349999999999,1.6123033333333332,1.9685166666666667,3.6043,2.021915,3.39191,3.16596,3.10646,2.88045,3.00093,1.941355,3.4936241666666668,3.4936241666666668,6.26732,2.58717,2.972295,2.885075,3.121095,2.562835,2.8876,2.60818,5.44057,1.73771,1.5625676666666666,1.2806826666666666,2.1501943333333333,5.59492,4.102224333333333,3.409168333333333,3.04763,1.74635,1.74635,1.74635,4.76139,2.37424,1.1686349999999999,3.01661,3.046675,1.328645,5.0983775,3.1613575000000003,6.30064,3.43942,1.87239,3.429215,2.949756666666667,2.01111,3.428675,4.29852,3.35536,1.562115,2.51028,3.082465,3.014645,6.00269,2.09855,3.15733,2.595305,5.87224,4.77488,2.026195,1.99782,5.35031,5.47532,5.10943,5.45659,0.941098,0.941098,3.51322,3.51322,0.68574,4.23982,3.11838,4.66208,3.67348,4.96293,2.165355,4.194391666666666,4.194391666666666,1.993305,3.210265,3.332575,1.17245,4.20588,2.891735,3.054715,2.733885,4.43253,2.543285,1.770185,2.793945,2.75913,2.776245,4.56734,2.50932,1.883635,3.608725,4.87229,5.91671,4.63129,2.29953,3.41524,2.30524,5.1184,2.84924,3.42624,2.026025,6.47939,4.5119,2.28667,2.328285,2.87407,5.22,2.28912,2.43447,2.545205,7.11178,4.44087,3.238375,1.88963,2.25759,6.3494,3.006365,3.02593,5.07295,3.00001,2.97764,2.54099,2.86543,1.9167466666666666,2.03213,1.7548266666666665,1.8070899999999999,1.7481633333333333,2.05338,1.641945,2.1702233333333334,1.537155,1.9167466666666666,3.59889,3.9775,2.21929,1.88188,1.88188,3.6712,3.6712,2.9435433333333334,2.9435433333333334,2.78895,2.060095,1.77748,3.59632,2.1276650000000004,2.1276650000000004,2.2822375,2.2822375,2.71733,1.90622,4.1534,1.990415,3.197425,2.12777,2.12777,1.53693,3.71861,4.39633,1.4286566666666667,4.37425,2.0902499999999997,1.732245,3.97307,3.28908,1.876725,2.44153,6.44678,2.010155,5.68305,2.970285,3.1962,3.23843,2.614,6.57344,3.35372,2.58513,2.5965034615384615,2.907265,5.53541,3.59463,1.53857,1.53857,3.63066,4.73737,4.06812,5.80878,2.72022,3.106165,1.726765,2.715125,1.74215,2.7417,1.85045,0.7423580000000001,0.7423580000000001,0.7423580000000001,1.8901575,4.59582,1.8901575,1.99574,3.702295,1.81904,2.33095,3.78644,3.61261,4.87202,1.5088033333333335,5.20089,1.5088033333333335,1.5088033333333335,2.13702,2.15833,2.428845,6.09981,2.428845,2.369655,3.96077,2.549725,1.838295,2.76356,3.2608466666666662,3.356844166666667,3.3034199999999996,4.15685,1.4290283333333333,4.433975,0.7627054545454546,4.4177,4.8425525,2.49442,2.49442,0.7603209090909092,3.9433666666666665,2.9600933333333335,5.94455,5.20355,4.102405,5.1024,4.35504,4.091,4.955015,4.201985,4.17679,3.481665,4.084245,4.895135,5.1013,3.36443,3.36178,4.01507,2.7038533333333334,1.420606,4.28299,3.913155,3.16562,1.6651,3.91053,4.28683,6.3590875,1.3140875,5.0982,4.407405,2.166925,1.845135,3.127615,3.58927,1.72873,1.53857,3.766385,4.85471,2.671505,4.563525,3.09567,1.1702,3.00693,1.2171928571428572,2.950203333333333,1.8677866666666667,3.232946666666667,1.8347025,2.6364233333333336,4.545755,3.62105,4.85578,3.281895,2.2358775,4.64965,4.01778,3.295755,4.90148,4.155925,2.66609,6.18925,4.842455,3.056338333333333,2.6120533333333333,2.922515,3.0134433333333335,3.0390566666666667,2.826363333333333,4.619685,4.177625,3.71991,2.39333,2.581303333333333,2.418773333333333,3.220776666666667,2.2793366666666666,2.34143,2.15349,2.4049275,1.3253675,3.0484929999999997,1.23222,1.8856875,1.803525,3.03465,1.4840525,2.073655,4.27316,5.51785,1.99968,4.28608,4.268995,6.30686,1.9171666666666667,1.6524999999999999,6.95475,4.29281,4.740715,4.31384,4.25408,2.113205,3.321875,2.577475,2.80662,4.46326,0.6917541666666667,4.09282,2.113513333333333,0.8008090909090909,5.0781,4.5144,3.97988,1.952470357142857,4.73676,4.02144,2.67202,3.3204733333333336,2.50941,2.1697233333333332,0.590245,3.03178,3.026375,4.88878,2.52635,2.0291125,3.73517,1.017675,1.9325683333333332,1.9325683333333332,2.620025,1.9325683333333332,4.500555,2.6809,4.65348,4.328465,5.95745,13.223466666666667,3.369066666666667,5.47395,2.680365,4.658575,2.957385,6.5315425,3.24513,4.675035,4.680505,3.76096,1.1701616666666668,4.3963,3.0668166666666665,2.2815933333333334,1.0409833333333334,2.217115,3.463135,7.652206666666666,4.50146,2.3949333333333334,4.38268,3.302153333333333,4.35285,4.75224,4.601995,2.87356,2.8203300000000002,3.955605,5.8082,2.537445,4.673435,1.76259,1.76259,3.14272,4.74497,1.2739875,3.9422493333333333,2.538225,3.31254,2.5406999999999997,2.25901,2.795973333333333,2.344586666666667,0.6865085714285714,3.472535,2.8143666666666665,4.93999,4.0744,0.24014,5.5359,5.4188,4.512885,7.125168333333333,3.4385333333333334,2.87847,2.02786,3.1894233333333335,3.1721,1.4492766666666668,2.71651,3.0199033333333336,1.5913449999999998,3.4210333333333334,3.1798333333333333,3.1015333333333337,3.185,1.5182905555555555,4.352305,2.341245,5.04625,4.31469,3.724465,1.6176833333333331,2.612083333333333,1.2877825,1.807995,1.2877825,4.50438,3.6353666666666666,1.81996,2.5516,3.86104,3.759635,2.99386,3.842995,0.341839,1.3921141666666665,4.44329,4.22806,5.5475,1.895065,2.94115,3.1537933333333332,3.115436666666667,2.856865,3.15807,4.35344,2.29926,2.449806666666667,2.10232,2.5708100000000003,2.8279866666666664,4.588155,1.972575,4.51715,4.043195833333334,5.9889,7.7838449999999995,0.6966044444444445,0.8424429999999999,4.09486,7.4358125,1.972642,3.504635,1.2994916666666667,1.2994916666666667,3.46798,0.43854,3.67216,4.03727,4.23845,4.3415,3.16301,2.46291,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,0.24371533333333334,2.270205,2.84115,4.514273333333334,2.9017733333333333,4.083475,6.0310620833333335,3.02078,2.2099033333333336,0.9292233333333333,3.451505,0.69880875,5.042635833333334,2.8327324999999997,2.284515,0.69880875,2.365395,2.685135,0.919625,3.86175875,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,0.15599355555555555,4.38178,1.5072975,4.211945,4.89901,1.9637280000000001,4.497485,4.514595,5.4044,4.970083333333333,3.8217407142857143,3.185665,4.724855,2.44741,5.524195,4.476705,0.7531428571428572,1.4110185714285712,1.3537114285714285,3.716333333333333,3.716333333333333,3.1470166666666666,3.56694,4.63869,3.70567,4.369795,3.0044233333333334,1.97469,0.5730714285714286,3.98819,3.158955,2.757195,4.06075,3.1734,3.16055375,4.541225,4.217935,6.3154775,4.225475,4.84519,5.62715,4.4115,1.4214185714285714,2.93487,5.027946666666667,34.990530456349205,1.4956566666666669,4.17306,4.03025,4.44677,3.993855,4.231,5.1367,0.4264090476190476,4.7469,4.20575,2.0623525,2.06831,3.991645,1.856105,2.41745,2.24632,1.7344225,2.900375,2.4617733333333334,2.88099,3.81673,0.6034661538461539,3.37238,3.69239,0.38347105263157893,2.561166666666667,3.107155,2.75274,3.87278,1.794025,4.70377,3.677845,3.09431,3.770205,3.37425,4.385495,3.00305,4.15754,2.22602,5.027946666666667,3.52523,3.62235,2.893735,1.714124,4.06095,3.46391,6.996623333333333,3.230345,4.6002,6.4916825,4.960905,2.184355,5.08445,6.767132500000001,7.935636000000001,2.6123233333333333,2.525365,4.37184,5.8466,3.99083,3.967185,5.6366483333333335,2.509475,2.1239725,2.052065,59.528306033588876,6.0105,4.132315,2.588025,0.946923,2.961596666666667,2.8811066666666663,3.27957,0.9189122222222222,4.900665,0.7869933333333333,7.631640714285714,1.945656,3.2396833333333332,1.85668,2.59213,2.5312066666666664,2.7957433333333337,2.39919,2.279453333333333,3.2884766666666665,1.4709966666666665,5.962444166666667,4.371666666666667,1.5907775,2.4493733333333334,1.3680966666666665,1.3579625,7.32233,5.6008,3.1567,5.0787,5.3305375,1.5188285714285714,3.5706,4.21632,1.571935,4.58306,4.177615,3.947345,1.8173525,3.022219166666667,3.6488666666666667,4.257105,5.37345,3.97052,4.93808,1.9566975,3.686555,4.457833333333333,3.4140333333333337,1.508572,4.18588,3.3515333333333337,4.08633,5.0232,3.825475,3.936595,4.99046,4.3986,4.54675,4.65817,4.480105,3.2497866666666666,3.54114,4.04178,3.19996,4.601525,3.70587,1.473965,1.473965,4.24581,4.90467,5.4047,4.128325,4.83064,3.6951,2.727765,4.666315,4.98147,0.6855899999999999,5.1275,7.256035,5.8766,5.7118,1.3697555555555556,3.145475,0.9206216666666666,0.9206216666666666,0.9206216666666666,3.79015,3.5856999999999997,2.7211700000000003,3.171226666666667,0.952646,5.28345,5.37875,3.03092,1.8182225,1.966795,4.17266,3.487785,3.80378,3.838406,6.4789,3.5612,2.460226666666667,4.811315,6.808,2.447215,4.15733,3.53544,3.042495,4.3361,3.861255,4.72645,5.4601,5.1073,3.653933333333333,1.8822999999999999,1.8822999999999999,0.7285136363636364,8.594657999999999,2.020745,6.3082,5.3946,4.697245,4.5906,3.78669,3.2498183333333337,4.716195,7.822575,5.579126666666666,1.5045400000000002,4.47821,1.12697,3.71711,1.9889333333333334,0.9587622222222222,1.2229257142857144,2.7920866666666666,3.3540666666666668,2.87153,1.224702857142857,2.6655666666666664,3.1170666666666667,0.8874,3.022296666666667,3.6269333333333336,1.6592600000000002,1.7205559999999998,3.16199,3.3341666666666665,3.0831966666666664,2.54971,1.6998360000000001,5.1723,4.42285,3.46089,4.074885,5.2365,3.146685,4.71728,5.88995,5.049,4.07055,3.8821,11.485601666666666,7.90607,2.7612666666666663,3.40512,2.16306,3.850035,3.27171,4.439915,1.17794,3.930935,4.193455,1.246635,3.55504,2.73493,4.33992,3.4557,3.86032,6.64535,7.119366666666667,3.964085,1.6188583333333335,1.6188583333333335,1.6188583333333335,4.67459,1.1253133333333334,1.358375,0.4935744444444444,4.461998333333334,3.0016499999999997,4.097075,0.9387000000000001,1.17753625,4.051785,4.365625,3.81546,16.679221238095238,4.1598,4.330505,5.7312625,2.708763333333333,3.706535,3.1618,0.962188888888889,1.660645,4.53816,3.737755,4.79594,4.123635,4.87049,4.17994,2.7761264444444445,5.964,5.57055,0.6059599999999999,5.02765,2.4327,4.56293,5.7909,3.4736333333333334,2.545523333333333,3.9589250000000007,1.6880966666666666,3.91188,5.77885,2.9286999999999996,2.529675,4.185885,4.759195,5.25725,4.08194,3.44991,4.29693,4.97666,4.90242,4.875675,4.857965,3.821255,1.1735514285714286,1.59263,6.427650666666667,4.947325,4.448615,4.9046,2.514575,2.849793333333333,2.618323333333333,5.33123,1.946415,2.376595,3.2068100000000004,3.2133233333333333,3.592033333333333,4.72801,3.42213,5.555913333333333,1.6855475,4.66526,0.981165,3.759355,3.21752,1.6846433333333333,4.743195,1.0197833333333335,4.80824,5.43595,5.21885,4.90305,3.8975824999999995,3.747335,2.98655,5.38265,5.76795,3.124005,3.97027,2.4266,2.517595,1.994975,2.582955,3.54876,5.02985,1.07606125,4.553725,1.39833,3.227495,1.6021766666666668,1.07606125,0.23835135135135138,3.860125,2.96995,2.4336520833333335,1.9117199999999999,2.88765,1.112505,4.552345,3.627235,4.69532,2.605236666666667,6.3457,7.536440000000001,2.9289133333333335,3.402066666666667,2.76332,0.848634,2.2547466666666667,5.6996,4.92204,5.0078,4.93955,2.0996333333333332,1.9400000000000002,3.7681675,1.5831875,2.3176975,1.57254,1.64689,1.7150125,1.886935,1.997895,1.8389025,2.1495425,1.20918,1.40463,1.815435,1.9601875,1.899225,2.355583333333333,0.5232226666666667,1.760278,2.8759766666666664,3.26206,1.9146775,1.9554933333333333,1.60892,4.588875,2.2175933333333333,2.573735,2.8226,4.812915,3.98709,2.5991133333333334,4.12263,1.8505200735294118,4.00550375,22.8093625,4.5641766666666665,5.8411,4.768415,2.9623666666666666,3.795765,5.0393,2.906275,4.39765,3.4933333333333336,0.79232875,5.02465,4.44402,3.77565,4.156345,1.5426766666666667,2.0381133333333334,2.512023333333333,2.55201,1.3271642857142858,3.1145066666666668,5.3641,4.0641,3.276395,3.801665,4.928055,3.903155,5.2002,1.29495,3.75448,4.162015,4.57365,1.825684,2.7309300000000003,1.84295125,1.84295125,3.69041,4.98117,2.5999733333333332,3.1798866666666665,4.12449,4.09663,6.395045,3.82247,3.42039,1.660645,4.01438,4.508115,3.108643333333333,2.469900634920635,2.469900634920635,3.3020099999999997,4.47764,3.8667,5.268418333333334,4.14341,3.411552888888889,0.6276022222222222,0.6276022222222222,0.6276022222222222,3.80335,3.717485,3.971256666666666,5.14255,2.1838,5.5879,4.569555,4.48609,3.86398,5.689,2.8573,1.5673285714285714,5.59945,4.53309,0.4464692857142857,4.136333333333334,5.2763,1.650995,6.05245,5.34875,4.914275,4.157985,3.67221,2.817735,4.76712,1.646688,4.452955,1.5929033333333333,5.28155,5.70225,1.288725,3.1618,6.82301,5.05205,3.9417333333333335,2.4287875,3.934225,4.183295,3.3962333333333334,6.92619,4.15633,2.2061699999999997,2.9607466666666666,2.77271,2.6896966666666664,2.8820200000000002,1.7910599999999999,4.50011,0.7153883333333333,1.90464,1.90464,3.2896,4.658315,2.36183,3.082825,4.38049,4.5423,4.583985,1.32933,5.215545357142856,4.39068,4.95162,3.67491,4.160447666666666,3.729293,0.4311546666666667,2.5401341428571427,1.04016,0.4311546666666667,4.091405,0.8177444444444445,4.074785,4.185515,6.421716,2.1407633333333336,1.038585,1.0986639999999999,2.28322,3.1527433333333335,1.6061333333333332,2.4419033333333333,3.2798,3.59895,2.089446666666667,2.2164266666666665,4.584915,3.3569387500000003,3.96358,5.7807,3.43126,4.933215,6.955088333333333,4.48687,3.451205,4.40201,3.61353,4.388205,5.59205,6.2431475,5.1521,2.67389,1.0676677777777777,4.45332,3.95034,3.84348,5.2866,4.525975,2.629245,2.73251,2.5095300000000003,3.114573333333333,2.6996033333333336,2.5344333333333333,2.9131766666666667,3.1956933333333333,2.5225833333333334,4.559475,5.8508,4.36665,5.65755,3.7490666666666663,3.5338999999999996,3.032775,0.7402785714285713,4.362915,4.437685,4.78017,3.513666666666667,5.780376666666667,3.751265,4.380305,3.728915,0.6355200000000001,0.5467835714285714,4.3968,2.791565,3.618025,4.672225,4.427775,1.8800979999999998,5.0961,4.45628,2.7479099999999996,2.6804666666666663,2.4760375,2.1804454166666667,3.347566666666667,3.2641566666666666,3.3569666666666667,3.2558233333333333,3.5887666666666664,2.777225,3.4996333333333336,4.2217666666666664,4.382715,0.582851875,0.582851875,0.582851875,3.4954359861111115,3.923166666666667,3.5485333333333333,2.748006666666667,2.775173333333333,1.162985,3.05428,3.099156666666667,1.8969325,2.6835833333333334,2.63901,1.00672,3.1448850000000004,4.722305,10.018723666666666,1.4613821666666666,0.625799,3.82445,0.625799,0.625799,0.625799,0.625799,2.1578125,4.1577045,3.981935,5.96435,6.15235,2.75942,2.8928666666666665,3.14885,3.686656666666667,5.25185,1.4157966666666668,2.58851,3.2459133333333337,2.7496666666666667,3.1366599999999996,4.64291,2.2536166666666664,3.38755,1.1897777777777778,4.340035,3.081235,4.17252,0.864115,0.694947,0.694947,0.9375431304347825,1.8016581304347827,0.9375431304347825,0.9375431304347825,0.3660891304347826,0.3660891304347826,0.9375431304347825,1.48029,2.4600233333333335,2.72544,3.1174,2.5351133333333333,2.50925,3.12698,2.7875300000000003,4.54742,3.514475,1.85374,2.2625533333333334,1.7328525,0.18664799153166423,0.18664799153166423,0.18664799153166423,0.18664799153166423,2.46846,2.6957133333333334,0.907366,5.1531,0.7783527272727273,1.7216879999999999,4.708966666666667,4.96882,4.140475,2.759005,4.52441,3.857115,1.7283833333333334,1.1717775,3.68583,4.752925,5.9516,2.455285,1.5758566666666667,1.92237,3.9131666666666667,1.4736366666666667,2.746703333333333,2.91329,2.9026866666666664,4.76096,4.256175,3.078675,5.0722,2.6498166666666667,4.400415,5.1506,4.14905,4.530935,5.0949,5.254596666666667,5.013893333333334,3.0434,4.970063333333333,4.64291,5.2045,4.423255,4.94714,2.30015,3.08862,4.07694,5.163,4.39587,4.033745,3.102665,4.34984,3.89042,2.4673133333333332,6.1647,3.57276,7.63702,5.8954,6.05265,4.96923,1.5414285714285714,1.01803,0.6406438461538462,1.7834299999999998,4.91089,5.00775,3.820215,1.648294,3.99465,2.80286,4.855305,5.23335,6.328434,3.9667,3.113445,1.781492,5.3395375000000005,3.74585,3.32299,1.689305,1.0853325,3.80555,3.623635,3.48246,3.601665,2.08418,4.626855,1.5784066666666667,2.9252533333333335,2.52219,3.755965,3.1568,4.841935,2.3598375,1.490455,5.5236,3.0402166666666663,9.1734,2.903375,5.17215,5.598,4.31897,5.02895,3.439275,3.614505,2.2668625,4.21407,5.067252,2.363655,4.717435,4.62016,7.611645,4.966785,3.22507,4.152575,4.46803,3.3569387500000003,3.46407,5.40845,5.617,2.455725,3.203886666666667,3.3851,2.248225,2.62548,4.60794,5.80655,5.3379,4.6523,5.1703,4.45935,5.5142,0.6276976923076922,3.4995666666666665,1.2799914285714284,31.213733136387162,2.523665,4.468595,3.102425,4.883285,1.678574,2.4315233333333333,3.2780227380952383,1.6871452380952383,1.6871452380952383,1.6871452380952383,1.6871452380952383,1.5908775,3.35471,0.3443811111111111,7.653366388888889,0.3443811111111111,4.92866,5.0716,2.1454425,5.21395,2.3810525,3.7938586666666665,2.5982833333333333,2.3468,2.7249933333333334,2.083743333333333,0.6106746153846154,2.6022633333333336,0.7196816666666667,3.1092866666666663,2.2321,2.375432,1.2480066666666667,2.375432,6.2058,8.056185,5.2435,4.34636,5.92085,5.91825,7.837153333333333,3.109225,1.6549925,1.6549925,2.3269800000000003,5.0691,3.60178,4.493275,6.310341666666667,4.15471,2.92121,3.980775,3.42038,3.34037,2.280225,0.828876,1.917215,3.93969,3.53182,5.1246277777777784,2.0538075,4.784605,1.6793600000000002,3.29886,1.9203040000000002,3.314826666666667,3.5776,2.4328499999999997,3.4421,3.0898233333333334,4.996255,0.6916246153846154,3.40056,3.7550000000000003,2.975626666666667,2.32236,4.2866518750000004,3.23466,2.768273333333333,5.04159625,3.860175,5.06675,4.089275,3.62246,5.4103,5.34315,2.0762033333333334,6.05425,2.3412191666666664,1.9234600000000002,3.1369900000000004,2.8871066666666665,3.1733,2.65316,2.03674,3.249146924242424,4.44451,3.3139025,2.2847459999999997,2.2847459999999997,2.624335,3.753525,3.965115,0.5270618181818182,3.416975,2.982345,8.51461,0.9225636363636363,4.156385,3.719855,5.6281,3.83358,3.98735,2.4108,3.703105,2.9962,5.89815,2.80441,1.0761725,3.995075,2.5843766666666665,4.05682,2.924243333333333,3.589845,3.80763,4.138235,4.835116,3.24027,2.20669,4.930575,2.5194300000000003,4.81563,4.714955,4.773955,4.70364,4.03166,2.89735,2.1831533333333333,3.0363466666666667,2.8143333333333334,2.9797500000000006,3.2675866666666664,2.7849483333333334,5.101996666666667,3.094993333333333,2.575556666666667,6.918284166666666,5.282875,3.87875,3.1131100000000003,3.773633333333333,4.023095,3.598105,2.535775,4.5803650000000005,5.5392,4.7729,1.4262499999999998,4.77634,2.9630500000000004,7.232695,4.984925,8.926986666666668,5.03195,3.96268,2.377745,4.116975,5.781135,7.4958,3.5475,5.8649,4.221145,3.26909,3.91584,1.696752,4.365801,1.4710150000000002,3.827785,4.71912,3.527566666666667,0.863125,9.057515333333333,1.2104444444444444,1.6095875,2.456123333333333,1.7769266666666665,3.1688433333333332,1.3938283333333334,3.466295,3.24323,2.61576,4.39947,1.1033083333333333,4.772225,1.3948216666666668,2.343932333333333,3.850115,5.1292,2.15608,4.98863375,1.8223806666666666,7.6772,4.24269,2.642695,3.97466,3.19787,1.3727108333333333,7.55104,2.99006,3.57889,2.26933,4.09286,2.2215875,3.4159800000000002,2.102575,3.843,1.3879775,5.4484,4.80204,4.18617,0.901228,1.9406256666666666,3.696655,5.30485,5.5025875,1.4100899999999998,1.4100899999999998,6.05935,4.4025,5.54985,3.62297,3.37473,9.5389,4.5274,5.7505,4.22279,2.510975,2.0997875386584743,0.344761,0.20382193548387098,0.6306674910394265,1.1243590476190475,0.6843276497695853,0.20382193548387098,1.2786985,0.4268455555555556,1.4691200476190476,1.9093659910394265,2.1611175,2.3096275,2.2055866666666666,5.221,6.968935,5.3396,5.45125,4.86781,5.4128,1.3300466666666666,5.2459,4.2578,6.19235,5.84875,5.6767,6.09375,5.81295,5.76635,1.4994566666666669,1.6097285714285714,2.0324999999999998,6.52975,1.5265499999999999,5.7423,5.06805,7.16596,5.2565,5.862,4.96659,4.844925,2.72785,5.8526,5.96645,6.621831666666667,5.00325,5.91067,6.2368,3.9199875,4.420375,3.9091666666666662,1.0396,3.8223000000000003,4.95701,1.3271875,3.730166666666667,4.973795,4.5585925,5.58105,2.4931325,3.19429,2.58527,4.730305,2.1693175,3.683885,1.33389,3.20212,3.67455,3.76933,5.5516,3.4767683333333337,0.6444725,6.0131,1.03952125,3.57531,3.276816666666667,3.73135,2.0172166666666667,3.789045,3.8067976923076925,3.7907666666666664,4.434115,14.820220095238096,4.9443166666666665,2.3710675,8.25648,1.44773,3.6042,2.925996666666667,2.9290299999999996,2.22094,0.24848478260869566,3.1870733333333336,5.3747,1.8200800000000001,2.2780566666666666,3.6344666666666665,1.838775,2.1851933333333333,1.3810114285714286,3.79415,4.760505,4.25834,5.19345,0.5066214285714286,2.4151666666666665,4.52895,2.88253,4.75483,5.1319,4.55481,4.52702,0.5324711764705882,2.6143466666666666,2.6143466666666666,5.41845,4.704525,4.851775,2.713875,4.0618,3.238236666666667,5.24155,3.920075,5.64827,4.853165,4.793475,4.69844,2.604725,1.9514040000000001,4.58354,4.49323,3.8013,3.28254,1.781438,4.309275,4.43955,3.686305,4.89089,3.85403,4.283755,0.6312106666666666,3.51633,0.6516566666666667,3.0828866666666666,2.96696,4.047395,18.735988095238095,3.89971,4.37391,2.949756666666667,1.12875375,2.835013333333333,2.5202766666666667,1.564054,2.35641,2.51942,5.18185,2.1537466666666667,4.717015,4.54622,2.1834775,4.895425,2.9603433333333338,4.45584,5.678,5.4716,1.559405,1.733235,2.26735,5.08675,5.1564,1.1451555555555555,5.43795,3.77436,5.5999,4.671495,1.6868100000000001,4.565675,3.6009,3.510405,4.084665,4.36131,3.1134566666666665,0.68282875,7.54058,1.526254,0.20729777777777778,0.20729777777777778,0.20729777777777778,5.1246,3.98487,2.7286866666666665,4.356135,2.758585,4.65088,4.271198571428571,3.944278333333333,8.9445,4.011175,7.464446666666667,0.858555,0.96541125,2.673075,5.3066,4.5051,2.05863,5.7142,5.60085,3.39856,3.563575,4.446395,2.283186666666667,4.63197,4.981395,2.35649,2.8421266666666667,2.9605866666666665,3.36203,5.9226,3.61877,0.6271899999999999,3.969745,3.994035,4.130505,4.64568,4.845455,2.80801,5.24935,3.5009,13.75446,4.678865,7.0327865,2.819293333333333,6.42605,4.72134,4.044215,2.176425,2.3761225,9.94254,2.2505566666666668,4.120866666666667,3.7625333333333333,3.7964,3.07198,2.8160333333333334,2.104865,2.2341025,2.99925,1.9970780000000001,3.775866666666667,2.9814866666666666,2.6535033333333335,3.279476666666667,3.6266,2.46682,2.46682,2.7808499999999996,3.6936,3.3708666666666667,2.6758400000000004,2.9980700000000002,3.8760333333333334,2.83916,2.778753333333333,3.691433333333333,2.4069766666666665,2.2533125,3.756266666666667,3.2144933333333334,1.609276,4.2335,2.3588299999999998,2.40711,2.7290166666666664,2.5371033333333335,3.5361999999999996,5.66169,2.5572033333333333,3.6748333333333334,1.8207033333333333,11.057612666666666,2.1055066666666664,2.0181299999999998,2.00148,1.0586966666666666,1.582216,4.8874466666666665,2.598722,2.598722,1.6005019999999999,1.550275,3.6324666666666667,4.246263333333333,2.198986666666667,1.579985,1.723922,4.328432666666666,3.4727,4.2565,8.18506,3.2218557142857143,2.37432,3.5879448447204965,4.291533333333333,2.2533125,3.3312833333333334,2.9598933333333335,3.045246666666667,3.12725,0.90044,3.373487,2.97334,2.754773333333333,4.244105,3.076026666666667,0.6588081818181818,1.824435238095238,4.85868,2.6880550000000003,3.329943333333333,1.647435,1.647435,2.045765,3.8303683333333334,1.00198,2.3763125,5.031726666666667,5.031726666666667,0.6443095238095238,6.659205,3.60521,4.527845,5.1993,1.1942728571428571,3.6178000000000003,3.5070666666666668,4.916153333333333,6.765648333333333,2.9181166666666667,0.749501,2.9902466666666663,2.68542,3.088572666666667,2.6325433333333335,2.7269166666666664,2.81306,2.5319,2.5202533333333332,0.8159836363636365,3.530445,4.197380857142857,1.3714533333333332,1.278202857142857,5.276,2.08383,1.61319,4.466245,1.85795,3.53437,2.4730075,3.384733333333333,8.73334625,4.17883,5.19955,4.981955,2.333571090909091,0.743583,1.6458760000000001,7.116363333333334,1.8128133333333334,4.174095,4.135215,3.84808,21.344671583333334,3.2333466666666664,1.4105233333333331,1.09148125,3.1644166666666664,1.58173,4.019236,5.3112,3.3414710000000003,3.24129,1.3796099999999998,1.44276,3.1475733333333333,0.537224375,3.3511666666666664,3.6785,3.0495133333333335,2.4391103333333333,2.42695,2.8046466666666667,2.1610466666666666,2.644363333333333,1.656814,3.8047,1.5064816666666667,3.767095,4.37262,2.980143333333333,5.1095,4.47944,4.170935,5.08565,4.49349,3.0514166666666664,2.8311333333333333,2.4890666666666665,1.098387142857143,1.098387142857143,1.098387142857143,2.1109025,3.0031233333333334,2.581323333333333,2.5893,2.174323333333333,2.014975,3.59759,3.717935,3.7643,6.4574750000000005,3.35356,2.1217775,1.78352,1.0055533333333333,2.3852333333333333,3.93326,2.4656966666666666,2.6477333333333335,2.386903333333333,2.48717,2.6003666666666665,2.86646,2.7988133333333334,2.81263,2.460996666666667,3.064026666666667,2.59494,2.1968175,1.8099575,1.784765,3.129583333333333,3.167213333333333,1.93089,3.79236,5.39415,2.8351133333333336,2.5398957692307693,5.842955,4.431885,4.670315,5.51585,5.2115,4.04937,6.5228625000000005,1.26445,4.075205,2.5049,5.1305,5.54235,3.76279,4.26161,2.32381,7.382155000000001,2.809635,0.7750275000000001,7.55239,5.13736,5.822174523809523,4.621655,2.8815512500000002,1.9475975,5.3244,4.250465,4.589965,5.3033,2.51113,4.218565,4.570065,1.7328525,4.202615,2.77255,1.3708683333333334,4.85622,0.6217294117647059,4.348316666666666,3.683995,4.703095,2.835985,1.784875,3.632225,1.983415,1.3789875,2.75568,3.5115,3.114076666666667,7.003781666666667,1.5750275,6.76587875,9.601135,6.6180325,3.468975,1.3195342857142855,3.1180033333333337,1.3195342857142855,2.8030000000000004,2.1833133333333334,0.3156029411764706,1.1524479411764705,0.3156029411764706,0.3156029411764706,0.3156029411764706,1.1524479411764705,1.1524479411764705,0.3156029411764706,0.836845,4.535235,3.5253,3.167585,3.29796,3.783465,2.8696,2.9388430000000003,1.584988,7.044906666666667,2.90204,4.058365,2.609173333333333,1.0411818181818182,1.2512125,4.44013,3.772005,1.0293222222222222,1.7933,0.7716536363636363,3.168154675324675,4.462355,5.41445,3.7052,5.6858699999999995,0.5594107692307693,4.222515,3.47408625,3.0528166666666667,2.5357966666666667,3.52,2.5860833333333333,2.9494566666666664,2.6201666666666665,2.81847,3.60631,6.72665,5.00695,1.425864,4.679825,4.660875,3.07353,3.81714,3.455145,0.3386893333333333,4.484955,3.558175,2.98983,3.2973600000000003,4.58971,3.88238,1.869235,3.38847,3.8453,9.192924999999999,5.18785,5.7177,4.51218,3.982175,1.011965,2.13077,1.968435,1.311985,1.7836133333333333,4.883315,5.611,4.269515,4.27175,3.838406,2.6866433333333335,0.9469716666666667,4.54458,1.199625,1.1521516666666667,3.369765,3.67091,4.966555,1.18245625,2.50209,8.729083333333334,3.1285833333333333,3.838563333333333,0.88838,4.18096,12.165176666666667,3.349505,4.106735,3.285,3.474795,4.833085,5.3804,2.17884,4.539135,0.5734523076923077,4.91322,2.2587275,1.7626075,1.7626075,3.336133333333333,4.50196,1.7081,5.0191,1.6916142857142857,4.531375,2.756073333333333,3.325563333333333,4.776275,3.397735,3.738572333333333,2.583525,2.646834833333333,2.646834833333333,11.60828,0.722215,3.463025,3.6687333333333334,2.083595,2.0794575,0.8109485714285715,1.3879425,1.2325185714285714,2.011955,4.605505,2.528495,4.5136675,2.1547733333333334,5.0971,4.20685,1.6476899999999999,2.045795,1.0078183333333333,5.5693581666666665,2.125295,2.098775,1.756562,1.838624,1.09148125,2.3883479166666666,3.50797,2.683066666666667,2.98199,2.364923333333333,2.62665,1.72584,3.0039533333333335,2.5771466666666667,1.3112866666666667,1.9032033333333331,2.7604966666666666,3.4110666666666667,2.4054533333333334,1.14674,2.54707,2.0571566666666667,3.0589833333333334,0.3296536842105263,0.41118916666666666,2.4256866666666665,2.2054,3.15254,3.17729,2.82744,5.0146,5.7399,4.37929,4.76685,4.483915,3.977965,2.8629766666666665,3.69584,0.6738609090909091,0.06782772727272728,5.42915,0.06782772727272728,3.45407,3.446285,5.7101,3.436855,6.07795,4.76278,2.12444,2.819366666666667,1.3950250000000002,5.98565,5.6454,2.7352566666666664,5.0329,1.945155,4.015655,2.3254616304347824,3.2582299999999997,3.3340666666666667,4.59822,4.687083333333334,3.34195,2.2653466666666664,2.2653466666666664,4.10435,7.29478,4.39703,2.08846,2.6577033333333335,4.003775,2.676895,4.990325,4.12465,1.0854422222222224,4.57453,2.794643333333333,2.5736433333333335,4.432975,1.06659,2.28311,4.0748,3.46505,5.1529,3.10128,3.66226,3.921565,3.75957,4.31813,5.2905,4.39929,3.2588316666666666,3.53849,2.655393333333333,2.9476933333333335,2.833653333333333,3.5694666666666666,4.500485,3.0263000000000004,5.099808333333334,4.610505,3.44769,5.05015,4.58532,3.535805,1.4274580000000001,1.2786825,3.94546,3.21955,1.6013566666666668,2.9516033333333334,3.276645,3.0047033333333335,3.9631133333333333,2.7364433333333333,2.2932383333333335,13.229162500000001,1.9353033333333334,1.917428,4.68364,1.238182,3.2483033333333338,4.160015,5.24675,3.202405,1.0837444444444444,2.3128166666666665,2.605236666666667,1.350576,5.31655,0.9660475,0.9660475,3.41552,1.6497633333333335,1.7657566666666666,1.821765,3.665235,2.910125,1.842725,2.84953,3.70243,3.2037099999999996,3.185703333333333,2.0778,6.2309,5.50775,4.08316,0.7415169230769231,3.79952,3.458835,0.8979199999999999,5.22035,3.3933999999999997,8.7861,4.49504,4.719835,3.45371,1.5254275,3.00322,5.11295,4.93287,5.01595,3.775855,4.35022,3.542715,3.542,3.542,4.952015,2.9819216666666666,4.930235,1.940795,5.661861666666667,5.88142,1.650995,5.0554,1.05044,5.4171,3.674735,4.91183,4.98188,3.70337,2.755315,2.576375,4.455665,4.456695,5.0084,4.84399,1.8234325,1.3757099999999998,5.021,2.3542566666666667,5.59665,2.79446,3.625715,6.899635,3.885705,4.837885,4.998985,4.194125,4.495425,8.496849999999998,3.797605,2.94516,9.565225,3.642905,0.6289842857142858,2.1153817216117217,4.39371,0.6486540000000001,4.53536,4.22891,4.89514,4.86578,3.431305,3.76064,4.823775,4.63667,2.480685,0.6878178571428571,4.85519,4.80665,4.408995,4.562765,2.8709366666666667,4.911025,3.5562,0.700976,3.46082,3.934505,2.41297,2.8630566666666666,4.075275,2.2513275000000004,5.407,5.148,4.110469999999999,0.88165625,3.306236666666667,5.890065,5.890065,8.640396666666668,2.11644,0.8418525,0.8418525,25.849856666666668,2.703975,8.070581666666666,0.38194083333333334,1.25708,3.021506666666667,0.931601,3.648015,3.76135,2.3917875,2.3917875,4.73328,4.92793,3.555835,3.268890833333333,3.268890833333333,3.91509,3.726545,4.15288,2.456663333333333,2.054753333333333,2.4520279166666668,4.0930990000000005,2.198935,3.38908,2.4221933333333334,2.995133214285714,2.995133214285714,3.4970666666666665,0.9349766666666667,2.6267766666666668,1.53843,3.3054133333333335,2.755523333333333,2.9221866666666667,2.8026666666666666,4.6934,2.32999,3.1978000000000004,5.541025,1.368774,2.215855,2.958045,2.615256666666667,4.185005,5.86370638095238,1.2975700000000001,3.6932666666666667,2.4242675,5.16602,5.98309,1.5097175,4.569796666666667,5.0126566666666665,3.102064,4.632233333333333,0.9458642857142857,1.825684,3.094535,3.947521428571428,1.3087766666666667,2.48791,1.5308275,1.6818300000000002,2.51405,3.48841,5.3066325,0.9127683333333333,1.5418857142857143,3.041676666666667,11.994325,4.760513333333333,2.7873,1.169152857142857,2.676541904761905,0.9743085714285714,3.4397333333333333,4.3755,5.29955,3.3584,5.89565,1.661295,3.867366666666667,3.96868,2.9806266666666663,3.800843333333334,3.389,1.0078966666666667,2.4876400000000003,2.868183333333333,7.008358333333334,3.1989517142857142,2.668836666666667,0.700969,4.686466666666667,3.4898000000000002,1.516412,5.770124166666666,2.0546575,2.55773,6.01585,1.3123333333333334,2.9705166666666667,1.0643727272727272,3.30252,4.33259,2.99626,3.3112,2.10073,2.4654833333333332,4.939105,4.741525,5.0337,1.98682,4.436645,3.996645,4.33136,3.54685,2.6003766666666666,4.635546,1.185146,2.857325714285714,5.0801,2.75125,4.2203679166666666,1.5044125,2.7262733333333333,1.9545480000000002,1.9545480000000002,7.467141666666667,3.4116999999999997,5.6822325,3.4937683333333336,1.8449766666666667,2.7521257142857145,4.813526666666667,5.7941,8.176966666666665,4.889699666666667,2.7022435,1.9766666666666666,2.162335333333333,4.13968,3.81873,1.41069,1.8619175,3.0112582142857143,1.4156275,3.2515066666666663,19.184299333333335,3.6104000000000003,2.818296666666667,2.9260333333333333,3.0707533333333337,2.6962233333333336,1.58118,3.3067433333333334,3.4280333333333335,2.58316,2.56053,5.886473333333334,2.56034,4.519406857142857,3.0887228571428573,2.492226857142857,1.3754666666666668,4.069022222222222,2.24794,4.21504,4.864105,3.86003,2.8948533333333337,3.19014,2.2491666666666665,3.21373,2.914023333333333,3.811366666666667,3.3244399999999996,0.8559,5.12075,2.65014,3.3185466666666668,2.907128333333333,2.0855225,2.2669008333333336,2.2669008333333336,3.6781491666666666,2.1435008333333334,4.576835,4.303785,3.98429,4.298085,4.944335,4.676724999999999,4.676724999999999,3.897155,3.09001,4.851465,2.68763,1.575474,2.50605,4.56531,4.110025,2.583925,3.544155,5.9493075,3.7922666666666665,6.355883988095238,3.25542,0.961892,0.961892,3.248675,4.419315,3.6624,3.4667120000000002,2.38024,1.7563933333333335,1.82656,3.16309,7.254263999999999,1.5825483333333334,4.30036,3.6343,3.863785,5.02995,5.1789,4.774502624999999,3.1693366666666667,2.3036075,4.72644,3.717975,2.04979,1.127468,4.514915,2.755025,5.647738333333333,2.8927133333333335,2.530155,3.17759,3.910105,3.71044,4.63921,3.41282,4.5605,4.351975,4.184095,3.781325,3.52438,3.52702,4.63733,2.7130799999999997,4.725865,3.541755,4.97846,0.6434588888888889,2.28516,1.8370425,1.68884,1.85352,2.9403133333333336,2.5439233333333333,1.7205033333333333,4.952655,4.76311,1.79363,4.19079,4.64703,2.471375,5.779795,4.283881666666667,4.918385,5.2816,6.952463333333334,2.29784,2.94948,1.8860633333333334,3.647866666666667,2.387315,1.785855,3.97169,3.573295,5.2389,1.06161,3.07097,4.543815,2.204365,5.6272,3.717245,2.614465,3.6517999999999997,3.177975,1.93767,1.7298295000000001,2.907575,2.8455,3.17185,2.0667075,2.9841428571428574,2.9841428571428574,3.52055,3.39925,20.018736845238095,1.2614933333333334,5.710575833333333,2.1189425,1.94547,3.96333,4.07968,1.9394925,3.736875,4.66785,1.544128333333333,1.544128333333333,1.3021233333333333,1.7197333333333333,2.5659466666666666,3.1094833333333334,4.39851,3.27245,3.6375666666666664,0.5125142105263157,3.6247742105263154,2.06895,2.209745,4.50273,3.20404,3.89829,3.5714,4.643855,4.067395,1.9945825,4.111825,5.8466,2.344375,3.81743,5.0275,2.190125,4.68016,4.924765,1.2225228571428572,1.788636,3.8215333333333334,0.7998914285714286,2.97458,3.79539,4.92736,4.96288,2.7450591666666666,7.99835,3.11877,2.9277599999999997,0.4604917647058824,4.309225,5.345930357142857,3.046527380952381,5.73365,3.59811,2.7276302222222224,1.908852,5.307722500000001,4.65802,4.57284,2.17815,2.0230725,4.603635,3.9981666666666666,2.977813333333333,1.6872125,4.2564525,6.765337499999999,2.51707,3.81276,3.46022,4.33122,1.4727428571428571,1.4727428571428571,3.1410066666666663,2.949336666666667,4.829105,4.91166,4.426875,3.55287,2.5904,2.1687425,1.5500983333333334,1.3079128571428573,4.802695,5.5700325,5.234,5.6823,4.61902,6.788795,4.361055,2.746036666666667,3.831558,2.408116666666667,3.01603175,1.449082,4.91574,2.327923333333333,4.33412,5.29935,4.05379,2.688,3.0402166666666663,1.4008528571428571,2.3721075,3.8171,2.0458625,0.57691125,3.12702,2.892673333333333,2.5225833333333334,2.57139,2.0875275,1.69163,0.7358318181818183,0.7358318181818183,3.615766666666667,1.97391,2.3526075,3.777065,5.2292,4.5242,4.447245,4.43475,4.146025,2.274459,1.2821,2.693665,5.96775,1.0697725,3.5152125,2.90715,3.110125,2.265275,4.114435,2.75794,2.0266800000000003,1.3290799999999998,3.67835,7.751445,3.61064,1.76382375,4.477765,3.44423,2.665045,3.39553,2.848435,1.8312333333333333,1.025015,3.804845,2.4915416666666665,2.198096666666667,1.6880833333333334,2.2248433333333333,2.1754933333333333,2.4612666666666665,2.6991825,1.34405,1.9555933333333335,1.10395,6.666487500000001,5.36745,5.0196,3.98146,3.553485,3.0821966666666665,1.7925984615384616,4.622815,4.92674,2.382925,6.09585,2.082015,4.434805,1.1740000000000002,4.19816,4.19457,1.839395,7.66865,3.656385,1.823935,1.702825,1.80627,2.697825,3.439833333333333,1.2914709090909091,2.9712333333333336,5.83955,4.002015,4.23223,5.7529,5.9261,5.1429,0.9788975,4.81233,5.0822,4.36962,5.2113,4.326228333333333,4.95766,5.2684,3.100365,1.6780666666666668,1.6780666666666668,5.4927,5.809723333333333,3.50498,2.8583266666666667,3.71972,4.624895,1.613782,4.305625,3.948125,3.67427,3.92795,3.0096266666666662,2.854153333333333,5.07275,2.37850725,10.938747150016649,1.9187933333333334,0.7649775,2.4391066666666665,1.9294325,2.6627,2.3127925,1.918116,2.9445266666666665,5.5429,5.3796,3.03955,1.5860416666666666,6.196087738095238,1.3453271428571427,3.3062066666666667,0.5025428571428572,4.088053333333334,5.8973,3.698445,4.788935,15.09679,5.36265,3.14838,2.728873333333333,5.2022,3.31959,5.1533,1.23260625,1.2188566666666667,0.9525545454545454,6.1026,4.499045,1.866986,4.8077906666666665,4.72404,6.2374,5.02255,6.03625,4.74848,6.6457,3.92483,5.32925,4.17213,1.35112,4.269735,5.86055,3.562345,4.4193,4.35047,3.817245,1.229555,5.10215,3.97142,1.1725775,3.5839,3.1151733333333333,2.360256666666667,2.672356666666667,2.430003333333333,3.4333666666666667,0.7053818181818182,2.22007,2.669923333333333,2.6215100000000002,2.0422733333333336,2.6924200000000003,2.16427,1.50831,2.622625,2.366735,2.231135,3.507233333333333,2.8716633333333337,0.67864,2.6388933333333333,3.68876,5.10505,2.513716666666667,3.640235,5.18345,5.29575,3.33154,3.77142,1.3537114285714285,4.008505,2.5159961111111113,3.6703316666666668,2.9481962499999996,4.79793,4.975585,5.39785,3.759295,4.198833333333334,1.139964,1.139964,2.279344423076923,1.7036575,4.066205,2.5635185,2.5635185,4.90765,6.39175,3.123925,1.1732,1.624242857142857,6.2898,3.49913,2.6621433333333333,3.1254,2.70565,3.220405,2.6621433333333333,4.8139875,3.274075,3.1377454166666667,2.708505,2.06052,3.02708,6.04255,3.451445,4.260345,2.609145,6.36035,5.4252,6.567425,6.567425,5.4121,4.63973,0.5364853846153846,4.80169,3.936535,2.924825,2.73786,8.706038333333334,3.18972,5.26635,3.664365,3.0999700000000003,5.4311,2.75342,3.7300925000000005,3.19604,3.231286666666667,2.68878,1.77254,1.77254,3.49479,3.53303,4.19805,1.7579879999999999,1.902882,48.456959431818184,2.5290933333333334,0.8351281818181818,3.2175100000000003,1.74213,3.4580333333333333,2.81391,3.1317233333333334,3.026295,2.8629033333333336,2.1082466666666666,0.95952625,4.394905,3.22691,3.468615,4.157395,5.27935,5.2403,5.1901,5.6722,5.6691,5.1453,5.59025,6.5080824999999995,5.009,5.70635,2.051155,3.89717,6.4947,5.54745,3.74458,4.603845,3.39236,2.55982,3.84859,4.773305,3.196816666666667,3.6410666666666667,1.6517140000000001,3.621985,1.338668,3.260275,3.847175,3.456805,6.73415,4.49821,2.1245575,4.43812,4.06443,3.957545,1.04876625,2.835005,3.67039,4.242511190476191,1.158835,5.25915,1.3782725,6.41495,0.7195166666666667,4.396601333333333,10.272155833333333,4.47336,4.06633,3.814815,1.8565666666666667,3.934285,5.45245,3.2349333333333337,4.466875,9.251238611111111,3.539266666666667,2.153626666666667,2.8861733333333333,2.85266,2.77856,2.7988214166666667,2.6991833333333335,2.6053633333333335,2.9356533333333332,2.71359,3.2804466666666667,3.39685,2.27088,1.6096133333333331,3.883308,3.23647,2.56356,5.142133333333334,2.844806666666667,1.243965,1.9200275,2.8434500000000003,5.0544014285714285,2.6391,2.2780538888888886,2.2780538888888886,1.565115,1.4505325,2.09834,1.764976,5.8916625,4.381185,2.535125,3.0572866666666667,3.3368,1.93873,0.5249775,2.7946766666666663,1.85708,0.6483338461538461,4.001755,2.609975,2.479485,3.627775,3.778243333333333,2.43742,1.5826133333333334,1.4862333333333335,2.172285,3.411925,3.60625,4.1160925,2.822373333333333,3.79306,3.718475,1.091281818181818,8.944815,2.642835,3.284385,1.3138625,3.0119366666666667,2.3417775,2.3417775,2.3417775,4.591905,5.96155,2.307045,4.94088,1.6577639999999998,5.572856666666667,1.540858,4.349425,4.31317,3.945995,4.14608,4.74998,1.997045,8.619272500000001,4.15305,5.16725,3.340265,4.720933333333333,3.113713333333333,3.361466666666667,3.818825,2.654456666666667,4.501315,4.514119166666667,1.6156525,3.93558,1.6156525,3.470735,4.320610833333333,4.8387225,4.320610833333333,1.7810366666666668,6.01565,4.71484,4.250605,2.693826666666667,3.108546666666667,4.487905,3.162885,4.36291,0.4872485714285714,3.106756666666667,3.0006066666666666,5.550603333333333,4.93987,2.515875,4.929315,6.52589,3.48639,2.950695,2.871,2.15422,4.163335,4.122315,4.60909,2.420965,4.105655,0.9171340000000001,5.3948,3.20788,4.263035,3.2068433333333335,3.4071,2.30389,3.1145533333333333,2.7179866666666666,2.681153333333333,3.59359,2.7353,2.7353,5.047963333333334,3.113725,4.38046,11.308535000000001,0.9976644444444445,4.35704,2.532783333333333,2.2999066666666668,2.9982666666666664,1.358375,7.498532,3.861333333333333,3.896525,3.851605,1.8208033333333333,3.6333,4.410408555555556,2.214373333333333,0.45763777777777775,1.659326,1.5124,5.17215,2.76422,3.09704,3.8305675,3.5415908333333337,2.5212125,4.367785,4.58409,3.920505,4.454905,2.09802,4.98411,2.4880666666666666,5.758336666666667,3.07214,4.529015,4.71775,4.238915,4.43972,2.04213,3.979365,3.627445,2.73223,3.320195,2.67314,3.068355,3.1468,4.864025,2.813193333333333,4.864885,1.7459833333333332,3.77836,2.802655,4.233635,4.182725,3.549865,5.45285,3.07446,5.05715,3.97454,3.955995,2.9539166666666667,2.13577,3.017005,2.29246,0.8670816666666666,4.24633,1.998585,3.37402,2.60683,4.08229,3.26867,2.89777,2.98218,4.58929,4.612236666666667,4.232835,3.04773,1.52723,4.36197,2.383025,0.9531444444444445,4.84294,9.247385,3.29702,3.712875,4.713805,5.6025,3.87616,2.030905,3.947935,3.89974,3.232635,3.277485,3.526415,0.6337075,1.2184771428571428,6.375205,1.694495,2.720635,5.14569,2.4931325,2.19606,2.674945,8.34215,2.934015,4.155755,3.722955,0.7717877777777777,3.38539,2.585255,3.80377,4.41543,6.273065,0.646967,3.358455,7.38004,3.10988,1.0468077777777778,5.243042083333334,5.22255,5.50005,4.68994,4.634415,3.437415,2.7485233333333334,7.3238,0.90898,3.41205,4.42343,3.1069,4.332655,2.50361,4.31103,1.5832833333333334,4.609415,3.83668,3.72281,1.664305,5.01035,4.754045,2.4672575,2.200135,2.53075,1.516412,4.087215,3.3414710000000003,1.810958,9.333835,5.85865,5.65335,4.45859,3.42263,4.32513,1.4164657142857142,4.79965,3.959185,5.3101,3.6113,2.458063333333333,6.861235683760684,1.06133,1.06133,2.59203,0.92734,4.292315,2.7074200000000004,1.072945,2.3772533333333334,0.4271175,6.61574,0.96456,2.814215,4.374265,4.027615,3.186715,4.595965,5.1553,5.5020575,2.955215,3.025335,2.422665,3.7339,4.908835,4.70946,4.00653,3.61532,6.43595,5.29885,4.299010555555555,5.280007,3.85499,3.6068550000000004,2.363145,3.6068550000000004,6.738223,41.0829890508658,3.628705,3.54309,3.059276666666667,4.162335,4.50732,3.598775,3.471075,3.92435,4.02003,4.73577,1.8462333333333334,5.3157,2.809865,4.582555,5.30945,4.759945,2.2358533333333335,5.372,3.87774,3.564465,1.498092,0.6419453846153846,1.832966,3.5031,3.3363,1.4342625,3.410433333333333,2.7742566666666666,3.0218233333333333,3.7401,3.138446666666667,1.562078,2.6471566666666666,3.7739333333333334,1.8922427348777349,3.042543333333333,3.113438,2.571616666666667,2.5479766666666666,3.4126,1.1854333333333333,4.43106,3.86146,1.1275916666666668,1.1275916666666668,1.1275916666666668,1.1275916666666668,2.886471212121212,2.0590366666666666,2.431205,3.67893,4.591965,4.67261,4.738765,4.519885,5.99825,5.07105,2.417775,6.1356,3.483755,2.41917,3.52772,4.177165,4.47297,4.512245,0.8000307692307692,1.4928571428571427,1.50164,4.54932,5.0356,3.36791,4.18847,6.349648333333334,2.25048,5.31355,1.7463333333333333,4.30158,5.55965,1.5652666666666668,5.72745,0.8066383333333333,4.896465,1.433152,1.2703,3.85277,4.568855,5.16875,5.45465,5.82245,4.76154,2.35916,4.647335,1.4860175,3.96166,3.84318,2.7276302222222224,1.6459775,3.39055,1.4708500000000002,3.257705,4.70656,2.857756666666667,5.8973,123.59216248502887,0.5093144444444444,5.46105,2.50486,4.8827,4.074865,4.21323,1.5151825,0.35374285714285714,2.811465,3.728725,5.6166,3.36612,3.752215,4.773685,4.74554,3.659,8.03485,0.6624577777777777,2.998695,0.945115,11.128522,2.942835,3.465305,1.0250855555555556,2.420475,4.317275,2.2242375,2.9863766666666667,3.4558,2.2944400000000003,4.3969375,2.560913333333333,2.1993,2.164356666666667,5.4731,4.143225,3.006925,3.6552,3.840605,3.426405,2.3587666666666665,3.76795,3.17814,2.955965,1.1749222222222222,2.5788066666666665,4.3969375,4.858345,5.3616,3.963455,4.250245,1.698915,11.307120000000001,2.87015,2.67642,3.227005,5.7002,0.5237313333333333,0.5237313333333333,4.713545,4.713545,4.00523,3.5023666666666666,1.8443547727272727,0.6304608333333334,2.88237,4.65988,4.6755,4.045475,4.69184,5.520872499999999,4.825245,1.8329125,4.58501,1.9825675,2.6976,4.5809325,1.80652,3.378585,0.4976128571428572,1.8775208571428572,1.8775208571428572,1.865025,4.54189,4.19348,4.744575,5.931506000000001,2.74232,2.781585,1.965005,1.77548,4.381308333333333,3.83011,5.34498,2.76371,5.34498,5.47615,3.567455,6.3143,3.92906,2.39371,1.8765266666666667,2.5317966666666667,1.405355,1.3453275,1.5610175,1.54365,1.6008825,2.4745025,3.5858000000000003,4.4383,2.304165,6.71325,2.887233333333333,4.53943,2.140475,4.174215,2.981173333333333,3.07325,5.9265566666666665,3.5651666666666664,4.658014666666666,3.0564933333333335,1.392005,2.5502866666666666,2.648753333333333,2.2393199999999998,5.49435,4.1902925,4.848,12.93198005166763,0.7150066666666667,1.93267525,2.3112425,1.6320679999999999,1.2894814285714287,2.73125,2.3719425,2.5758,2.666775,0.7619076923076923,2.0186625,0.5842263157894737,4.5419,1.84927,4.51051,4.82722,2.610425,5.639385,4.750175,8.06938,3.85291,2.88954,3.11027,4.5796,4.921075,2.7844984761904765,4.59178,2.0323625,2.0323625,4.844275,4.10153,4.398685,3.890055,3.4560999999999997,3.98722,5.0786,5.0128,4.94637,5.3446,4.462245,4.388295,2.466365,4.958775,1.3112466666666667,5.0215,4.58525,2.410083333333333,2.2977666666666665,4.29849,1.3007516666666665,4.65129,2.0637625,5.966185797101449,3.86216,4.098365,1.4584766666666666,3.1931233333333333,3.1931233333333333,12.145624999999999,3.82072,4.56569,1.17411125,4.2522015,2.6734,1.47803,2.3075075,1.8882125,2.084675,1.903652,3.218135,6.217,1.8262875,5.0537,4.760425,5.5403,2.321485,2.321755,4.4071,4.569965,5.4412,3.87739,7.200068333333333,3.361666666666667,3.2413399999999997,0.44510277777777785,3.712,3.76497,3.393133333333333,6.311788333333333,2.561636666666667,3.3970333333333333,1.298455,1.6619149999999998,0.57691125,1.659326,2.89115,1.6451500000000001,1.6945166666666667,0.6634375,1.345108,4.637205,2.4370975,0.6031269230769231,1.66231,1.6513075,1.8997319999999998,1.3519633333333332,2.1728875,1.6619149999999998,2.363655,1.345108,1.345108,0.6031269230769231,1.5612,2.494,1.3087766666666667,2.667875,0.6031269230769231,2.699975,2.494,1.4262249999999999,1.4262249999999999,1.4262249999999999,1.9883659999999999,1.23407125,0.6031269230769231,1.1088879999999999,1.22960125,1.0586966666666666,1.842266,2.5118,0.863125,2.3293125,1.6618571428571427,0.6031269230769231,1.757266,1.6619149999999998,1.9345333333333334,1.8675333333333333,0.894773,1.9345333333333334,1.098418888888889,2.4672575,2.577,2.577475,1.22960125,2.27944,1.4708500000000002,1.4708500000000002,0.9865363636363637,0.9865363636363637,0.9865363636363637,1.298455,1.6619149999999998,1.6618571428571427,1.66231,0.9881728571428571,1.8675333333333333,1.5654059999999999,1.609276,1.824472,1.298455,2.7873,11.1906675,0.6634375,2.62906,1.8882166666666667,2.62395,0.9743085714285714,0.9743085714285714,0.6031269230769231,1.2774666666666665,1.69163,1.6618571428571427,1.7659379999999998,1.8675333333333333,1.1451555555555555,1.1451555555555555,1.7216879999999999,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,3.316046666666667,1.098418888888889,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.20729777777777778,0.3944345454545454,55.561101746753245,1.53586,1.51497,1.6618571428571427,1.8882166666666667,0.9881728571428571,0.6094235294117647,0.700969,0.700969,0.700969,0.700969,4.216466666666666,17.204930416666667,3.385,0.6857509090909091,1.7184300000000001,1.7184300000000001,1.7184300000000001,0.6857509090909091,2.89115,0.6031269230769231,1.757266,1.6945166666666667,2.5712800000000002,1.098418888888889,2.515875,1.098418888888889,1.540864,1.540864,2.1816166666666668,2.1816166666666668,0.6031269230769231,1.9521920000000001,1.9521920000000001,1.0140272727272726,0.20729777777777778,2.89115,1.6328366666666667,2.4242675,0.6857509090909091,0.6857509090909091,0.6857509090909091,0.6857509090909091,0.6857509090909091,1.8882166666666667,0.3944345454545454,1.098418888888889,2.3340425,2.3340425,2.576375,3.276816666666667,0.6443095238095238,0.6443095238095238,3.436033333333333,4.1303,1.1942728571428571,3.07145,1.02408,2.77,2.11644,1.06659,3.3635,2.053475,3.306236666666667,5.4836,2.41725,1.263177777777778,4.702245,4.914105,3.0258133333333332,1.783686,2.3392219230769236,4.919875,1.8271977777777777,2.58987,2.703053333333333,3.2660366666666665,2.576,6.369543333333333,4.185145,0.20729777777777778,3.1970233333333336,4.656355,3.847695,4.294325,3.929885,4.678305,2.8177966666666667,1.903204,4.05058,4.674215,4.51214,4.61008,5.17345,2.945805,0.66373,6.72054,1.2933216666666667,3.584446,4.79437,2.528776666666667,2.528776666666667,0.7915454545454547,1.6459775,4.3428,2.98207,4.445305,4.496875,4.698245,5.34695,1.2033457142857142,4.850085,4.896105,7.348624305555556,2.2550833333333333,4.39762,4.18811,3.829375,4.82488,4.473695,4.736735,5.6237699999999995,5.3464,4.414588333333334,3.732445,4.481826666666667,7.165621,1.6372425,2.5286625641025644,3.005853333333333,1.7244466666666665,2.6289233333333333,1.79987,5.26295,3.11777,4.746425,1.963326,4.835515,3.9382,3.654415,4.40145,3.757075,2.435556666666667,2.7684933333333333,2.7146966666666668,2.9910266666666665,2.5196066666666668,1.7221166666666667,2.76294,2.8179966666666663,2.25298,2.25298,4.176315,2.8000366666666667,1.9551966666666667,3.08902,1.9313200000000001,2.1521233333333334,3.1095166666666665,2.5743300000000002,2.90883,5.24325,4.442935,4.275245,3.638718,3.638718,4.189445,3.336,4.163755,4.509015,3.828255,3.27124,3.324,7.15676,2.1466525,2.087865,3.29136,3.01024,1.3582433333333332,1.3582433333333332,3.49217,1.81245,3.7512273333333335,3.809915,3.795755,2.204186,2.2125630000000003,0.5409091666666667,3.097685,3.85527,2.2586075,2.436965,4.53939,1.2080166666666667,4.861,1.28036,0.3697271428571428,0.5091778571428571,21.95831686904762,0.5091778571428571,0.3697271428571428,0.6486285714285713,10.49775,2.9866433333333333,3.97717,4.53681,3.5546075,2.69239,4.794296428571428,2.35362,2.93308,3.456385,3.07207,4.21679,4.70574,3.523005,2.288615,3.27373,3.67463,3.909915,3.0319,1.067377,1.067377,1.067377,1.067377,3.225215,2.72509,3.017265,1.9058966666666668,1.2182833333333334,2.55717,3.783045,4.03229,3.07,3.50764,2.33833,2.756073333333333,3.9443,3.97525,1.0822316666666667,3.27482,1.10327,2.8255033333333333,2.4252733333333336,3.8737,5.0721,3.5012333333333334,4.44754,4.545303333333333,0.8429847619047619,0.2538714285714286,0.2538714285714286,0.5891133333333333,0.2538714285714286,0.2538714285714286,0.2538714285714286,0.5891133333333333,4.33057,7.117405,3.466795,0.5677025,3.683255,7.377090000000001,3.177105,3.2504333333333335,1.0889766666666667,4.4498,5.4013,4.218815,4.801205,1.614126,4.672795,2.1796633333333335,2.908339333333333,4.26616,5.2804,0.7965071428571429,0.7965071428571429,3.270375,2.9951866666666667,1.943375,3.13024,2.6311,4.78266,2.48494,4.11242,5.74065,5.7112,2.690645,1.87981,4.0895,3.3705,2.15372,3.87861,3.05389,1.7286975,1.1342533333333333,3.950305,3.577085,4.64568,6.452716666666667,1.4578533333333334,3.77783,1.1443933333333334,2.5127566666666667,3.384305,3.88652,0.38840928571428573,3.554535,4.34037,0.989613,2.7043,7.6787849999999995,3.770825,2.169395,5.788473,4.65236,3.65128,1.4021866666666667,5.827256666666667,2.77933,3.4322666666666666,3.8303,2.1080366666666666,2.1080366666666666,5.727755,5.727755,3.3689124999999995,3.3689124999999995,7.55978,3.3689124999999995,3.3689124999999995,4.039711388888889,6.3462,3.48312,3.6105575,2.8126200000000003,4.58878,3.63416,3.3071633333333335,3.302683333333333,4.47685,3.152533333333333,2.6944199999999996,3.0793366666666664,2.36621,2.694855,4.62898,7.144935,6.8752775,4.57966,3.63223,3.908825,6.398135999999999,5.19065,3.499145,4.04845,4.514085,2.2308833333333333,2.175255,2.16082,5.3815,5.34565,4.670255,4.294025,2.35034,2.7214666666666667,6.946718333333333,1.9883659999999999,2.45554,3.5072666666666668,3.5072666666666668,3.18483,5.66155,0.8251025,3.480566666666667,4.00524,2.782446666666667,10.2845825,4.398825,2.941053333333333,2.863493333333333,5.4038,6.1273,2.896825,5.5643,2.5704533333333335,4.40174,3.0313157142857143,4.548785,5.4107,4.82764,1.0193633333333334,3.6010666666666666,1.04440875,2.5180233333333333,5.143870573529412,8.22532,2.25746,3.2064833333333334,6.636733333333333,1.789564,4.634435,5.402,3.9078,3.57045,2.277883333333333,4.813125,2.52718375,0.5270961538461538,5.2996,2.904615,3.6710666666666665,5.11845,4.92238,5.0418,6.813459999999999,5.0141,5.74425,7.0242949999999995,53.59590166666666,4.797325,3.92745,4.97977,6.124,4.72969,5.22305,4.34954,4.777455,1.92485,4.060305,4.28092,4.81484,2.614435,5.0578,4.63959,1.660748,5.76325,6.6048,7.726793333333333,5.7661,3.09955,5.2681,3.44164,3.19221,3.459995,4.137815,3.55099,6.24671,2.783875,1.0899928571428572,2.30156575,0.667974,0.667974,3.64321,0.667974,2.2696271785714286,2.2696271785714286,3.0973271785714287,4.41696575,4.862983428571429,2.30156575,4.366680833333334,2.3841133333333335,1.4663033333333333,5.14035,2.09212,7.506765333333333,5.9822533333333325,11.888434136363635,3.3776666666666664,2.67708,0.2325969696969697,1.7816180000000001,2.93472,0.8847525,1.99805,2.64645,2.638275,2.83515,0.618247,27.588969583333334,2.058925,0.793976923076923,2.785246666666667,2.785246666666667,0.4517683333333334,1.6074575,2.96999,1.2936175,1.8644125,1.6204125,4.362955,2.784195,2.07341,2.305963333333333,1.108735,2.3191125,1.6553950000000002,5.693173166666667,3.79978,6.930723333333333,2.53795,3.376533333333333,0.95209,2.20543,4.770695,5.79882,3.7825666666666664,2.22932,5.990479166666667,2.4137125,2.58453,4.2490499999999995,1.0632300000000001,3.867366666666667,2.31307,5.5184,4.951355,6.24795,3.83117,4.45132,4.45132,5.42595,3.76313,5.4056,2.803793333333333,1.575025,4.315585,3.726225,6.049939,5.1197,3.138196666666667,3.5833333333333335,2.336855,1.32767,4.937325,1.09131125,5.480996666666667,4.77221,8.08506,4.50219,4.586535,4.165255,8.545906666666667,5.0633,5.0361,1.1130499999999999,0.7168142857142856,4.70406,4.79823,2.44906,3.38529,3.27542,4.241245,2.115185,4.676545,2.5105666666666666,5.52355,5.2459,4.882475,4.535975,4.331935,3.043855,7.040131,3.631715,4.537595,3.175435,3.918555,5.5349788095238095,0.5768492857142856,3.8927,1.7153333333333334,0.6578911111111112,3.945115,2.593545,1.03498375,2.02914,6.33206,4.14711,2.40471,2.7784066666666667,2.642513333333333,5.11425,3.601095,1.6418869047619047,4.173395,2.757516666666667,3.429266666666667,4.713205,5.11825,3.3644258333333337,3.8891333333333336,3.795833333333333,2.07646,7.38167,4.80232,3.799755,4.80074,2.255505,4.028105,4.777745,3.67584,4.07183,10.423445000000001,3.67168,4.696791666666666,4.832705,4.803515,2.3562875,3.750765,4.06219,4.40068,3.3179499999999997,4.504905,1.8150275,2.61328,3.36864,3.80842,4.907815,1.8587520000000002,4.48791,3.364333333333333,5.593,2.9509966666666667,1.882355,3.969555,4.74937,1.0222875,2.931415,2.6504600000000003,4.444670666666667,1.728312,1.6534333333333333,1.0968,3.477625,5.14645,5.89577,3.9122575,2.869415,2.299505,2.082475,2.444805,1.4702833333333334,4.951145,2.831775,1.8637825,0.9343923076923077,20.85517782051282,3.03635,2.985224166666667,4.916243333333333,4.032105641025641,1.24174,2.7869683333333333,3.0307186363636367,1.253102,1.87198,4.43722,5.3323,3.6171691666666668,3.38593,5.6644,4.73257,7.49672,4.97258,5.06385,3.829685,2.8728366666666667,3.874245,3.76397,3.378033333333333,4.272965,2.219785,5.4796,8.98303,3.26642,2.80335,3.925875,0.5378075,3.0844833333333335,2.3648833333333332,2.3402275,4.314075,3.402325,4.561185,4.50662,2.879165,2.191095,1.690535,0.831968,1.4976,1.22246,3.820705,4.203915,4.937315,4.82026,7.11554,2.3618566666666667,1.352856,2.2574799999999997,7.722346666666667,3.049565,2.901625,3.05691,4.35522,3.147315,3.42356,1.628612,4.52239,5.42315,4.0742,3.89302,3.58496,4.19908,4.939755,3.498785,4.51674,3.561825,2.256975,3.21243,3.3902,5.53405,2.81805,4.45589,4.038875,3.145025,2.448976666666667,2.2941533333333335,2.0679333333333334,3.0176,3.0176,1.8710000000000002,3.207046666666667,2.3165833333333334,2.20461,1.8803,4.034795,2.3809400000000003,2.9588933333333336,2.8223033333333336,1.6566599999999998,4.39175,3.672005,4.070625,2.32143,5.7024,5.40645,4.888336944444445,2.71388,2.1625,2.86128,2.116355,2.16434,2.85239,1.976865,2.384705,2.2939575,6.7661023333333326,4.17652,3.471375,0.6116775,4.230725,4.448155,4.62003,3.224555,3.787,3.914839166666667,6.20255,4.48656,3.91626,2.937175,2.0864993333333333,2.50988,1.8128520000000001,1.794726,1.6567979999999998,2.15538,1.8520125,1.1922516666666667,4.055476571428571,0.6031269230769231,0.5165033333333333,2.11764,1.5277966666666665,1.587348,1.541885,2.3191187878787876,1.5425733333333334,1.794362,0.59948875,172.7840887677935,0.5087413333333334,2.15922,1.033392,1.2641075,2.1257775,1.5407225,1.93343,2.3256366666666666,1.8445875,6.92525,3.146,3.8097366666666668,1.49169,3.155825,1.2765266666666666,1.2765266666666666,5.61888,0.518925,2.2303075,3.3902,3.1005133333333332,0.8226863636363636,0.6567,1.2236138974358974,1.1190545454545455,2.479375,4.20624,2.1779875,2.2137325,2.4439433333333334,4.799220388888888,1.1308555555555555,4.49756,3.429415,3.64563,7.04093,1.8395033333333333,3.1044,2.23198,3.8541809999999996,2.339525,3.306165,2.73956,3.336355,4.63033,3.07999,6.16637,2.704385,2.71168,3.07963,1.38502,2.707815,2.519885,2.898845,1.785095,1.52921,2.01391,4.48578,5.834266666666667,3.144945,2.93597,1.323705,4.106005,3.5402,3.8257666666666665,2.94727,25.26329994215506,2.245494,2.8850466666666663,3.0272133333333335,3.470833333333333,3.1678466666666663,5.976956666666666,3.092703333333333,2.51048,3.5910666666666664,3.2520633333333335,2.1449966666666667,3.328526666666667,3.3278033333333332,3.1547033333333334,1.7064666666666666,1.6472175,0.56056,2.17276,2.039245,0.257698125,2.6410966666666664,2.65268,0.257698125,0.257698125,2.006648125,0.257698125,0.257698125,0.257698125,0.257698125,2.7202566666666663,2.4935733333333334,0.5744661538461538,3.443450357142857,1.7834025,1.906014,5.24235,4.382715,6.3998550000000005,2.35186,5.05895,2.2387675,2.55573,1.284622857142857,5.88733,2.6664533333333336,5.912817500000001,1.0097500000000001,1.4059775,4.959405,4.745965,36.25508353238428,1.6985420000000002,1.3541033333333334,2.3556866666666667,2.289115,0.9865363636363637,2.262703333333333,2.2407366666666664,2.72277,2.15247,2.3428566666666666,1.5573750000000002,2.68727,2.3506233333333335,2.12094,2.7350266666666667,2.4646466666666664,4.2792,3.7118,1.0986485714285714,3.70667,3.841945,20.63564672222222,2.8941266666666667,3.6072666666666664,2.8095966666666663,0.773808,3.0715139999999996,1.5802102222222223,3.0715139999999996,2.4388566666666667,2.6529233333333333,3.3302366666666665,1.5811525,1.9894025,4.48502,3.974225,5.07075,4.198195,1.8028479999999998,5.3381,1.66393,4.681035,4.22138,4.586165,0.7390281818181819,2.108775,2.2563975,2.91958,3.33433,1.09161125,5.8386,2.10336,2.03573,1.0509840000000001,1.0509840000000001,3.0170866666666663,3.3765666666666667,4.619395,30.30531875,6.166715,1.8622699999999999,3.551153333333333,0.39579733333333333,6.367274999999999,4.436815,2.79865,3.1947,5.94143,4.15387,1.22600875,4.832965,1.223554,3.22741,4.7503,5.20935,2.127945,3.29934,4.407935,2.561515,3.424583,4.13052,1.25901,2.5225141666666664,3.515905,4.5164425,2.8150766666666667,3.1078833333333336,3.0836666666666663,3.05333,3.90433,4.231035,4.069866666666667,1.754855,5.95069,2.62056,1.761288,4.227195,5.50613,3.985405,3.833855,0.74428375,3.003655,3.579655,2.120845,4.647599666666666,2.707435,3.91043,2.9283133333333335,3.371033333333333,2.435025,3.3161633333333334,3.422,3.2004300000000003,4.50495,4.273865,4.31924,1.653375,4.140735,4.220155,1.823655,1.864185,1.726955,4.088767777777778,4.88924,5.448352187499999,4.046325,3.5258333333333334,3.698675,3.4568333333333334,1.3123383333333334,3.00792,2.878635,3.095015,4.17136,4.571515,4.354515,2.58112,1.877875,1.53605,1.45582,3.557675,2.337915,2.19013,3.278585,4.906425,1.870155,5.3508,1.4195200000000001,1.7099325,3.099875,3.612225,3.14865,3.62759,3.115295,1.9267,1.0392222631578947,3.05464,3.7321850000000003,4.9658,8.366063333333333,2.1586933333333334,3.1416166666666663,1.6118866666666667,2.6761966666666663,3.01845,1.2104566666666667,3.3695,3.0103066666666667,3.0583500000000003,4.1899,3.5286000000000004,7.163024999999999,2.9588933333333336,0.7599490909090908,1.8974933333333333,4.340705,3.24571,4.099915,3.632766666666667,2.6879299999999997,4.125105,3.44796,2.0153299999999996,3.9453,2.9370405555555554,3.4107,2.5017733333333334,4.76546,5.4194,4.53238,5.14845,3.66128,1.1831666666666667,4.762385,3.3937000000000004,2.6278866666666665,4.51091,2.8396133333333338,3.01805,0.46747,0.46747,3.637051666666667,4.549505,4.71903,3.169215,3.632485,3.50801,3.0961,5.18885,4.77617,0.9927475,4.16285,3.0538566666666664,4.61708,3.257006666666667,3.19011,1.8390633333333335,3.3618164285714287,2.7077299999999997,2.89016,2.7421933333333333,2.7407866666666667,1.9430633333333331,22.928595648221343,5.0316,3.952125,4.04184,3.239485,4.7993825,3.172155,5.17315,4.20409,4.036835,4.22464,4.41243,2.785503333333333,3.1533800000000003,3.2089966666666663,3.2678683333333334,2.7687899999999996,4.38758,3.354115,4.635415,5.05,4.83364,1.2410619999999999,1.6760560000000002,1.6760560000000002,4.38361,4.071995,2.7676700000000003,2.5246999999999997,3.189496666666667,3.77023,3.53012,8.30364,3.3015399999999997,2.8226566666666666,3.1003600000000002,4.678015,1.6876,5.999644999999999,2.51134,2.64752,1.7557225,3.85794,3.29445,6.38177,3.61639,2.584735,4.499895,4.043264000000001,1.5518475,2.6224833333333333,1.7397933333333333,8.6269125,4.747915,6.5472399999999995,2.25577,4.50831,3.77768,4.26354,5.2465,3.8087,3.8087,2.096115,4.57864,5.1632,2.51902,6.39484,1.944695,5.98035,9.429637999999999,3.1973566666666664,5.111189333333334,2.35613,2.041745,0.64355,3.89136,2.588175,2.798725,4.1962225,2.4200525,2.565376666666667,4.08855,5.10015,4.70817,5.0915,5.99335,4.6288,2.376605,1.0470727272727272,2.826245,3.50016,3.27951,5.349,3.96168,4.329575,2.75854,1.788636,4.552415,1.099325,4.958415,0.9635411111111112,5.6555,3.38996,4.95025,5.2665299999999995,3.13641,3.17472,3.1833233333333335,2.3433066666666664,4.159685,3.607545,2.459315,4.672645,5.6287,6.335241666666667,4.884435,2.018275,3.57141,3.071665,5.557653333333333,2.038135,2.038135,2.9229066666666665,2.2271566666666667,2.67311,2.956716666666667,0.871257,6.46295,3.94589,2.0446875,2.23431,2.78088,3.653735,2.73539,3.61383,4.706985,5.08985,5.68775,6.22185,6.0005,1.33425,3.981035,1.0938333333333332,2.579175,4.488733333333333,2.439105,2.967655,3.186325,4.92901,5.10065,0.4571710526315789,4.20769,4.075825,4.710175,3.227185,4.87358,5.79815,4.989635,4.27628,1.65488,4.69085,2.0645475,4.433766666666666,4.433766666666666,6.8268,5.27045,5.8854,5.42155,2.671565,1.6876,4.54689,2.0938,1.6527866666666666,1.908525,4.43992,4.084815,4.563635,7.80979,1.7349166666666667,5.7809,1.3093683333333332,3.352175,6.31365,1.947665,4.629215,3.1756933333333333,4.640305,3.497705,4.448545,2.7352566666666664,4.25232,3.98444,6.24155,4.30032,3.832025,4.05134,5.86925,4.18977,4.683565,3.67868,3.789315,8.035093333333332,3.43291,6.87009,3.117955,5.3226,6.327812272727273,5.27925,3.53977,1.905065,5.4382,4.00308,0.92185,8.38503,5.97135,5.71605,3.147075,5.35085,2.738875,1.8180900000000002,3.808695,1.0822316666666667,4.990205,3.186755,4.666345,5.6525,4.65285,4.43027,2.3843900000000002,4.636615,5.36375,1.674125,7.02187,2.98772,3.5904,5.23655,4.701895,2.162,4.561275,4.28611,4.48374,3.025593333333333,3.98351,3.653775,5.73685,4.848725,3.53996,1.799075,1.799075,7.381963333333333,1.649357142857143,5.18905,4.411565,5.6181,3.69754,3.91461,5.45605,3.77117,0.8307666666666668,0.8307666666666668,0.8307666666666668,3.699465,3.107645,3.88754,4.844230222222222,2.612875,1.4438366666666667,4.553925,2.543575,2.704435,4.398535,5.36675,1.659525,2.37002,4.5318,4.51443,2.72823,4.75192,1.8540725,1.93028,3.278703333333333,3.002115,5.494,1.3276759999999999,1.645858,1.0993975,4.22774,3.465835,3.1554233333333332,3.1057366666666666,5.5874,1.774314,2.03122,2.649235,1.472557142857143,3.391395,3.672405,2.442245,5.72865,5.66365,2.83457,4.66542,4.57527,3.27157,4.41541,4.243765,3.65383,6.64958,5.1979,1.8450766666666667,1.7968833333333334,3.713195,5.56365,4.29124,4.416645,3.4765,4.30582,5.0299,5.7619,2.7467633333333334,5.30955,4.44238,3.97562,7.418492499999999,4.3702,0.7185836363636363,4.07075,4.014124166666667,2.267315,4.508575,3.9281333333333333,5.9842,3.84003,4.042915,3.940755,4.72593,5.5315,4.61598,3.849175,4.254915,5.3069,4.394105,3.762695,2.76612,6.03767,4.485715,1.6314520000000001,3.5722,3.877755,3.76832,4.995245,4.99426,2.534823333333333,0.8940455555555555,4.431828181818182,6.4538675,4.497025,5.3556,3.59408,8.135425,4.896105,3.5791,2.78234,3.65633,2.145425,3.30676,4.391345,2.5366725,3.413095,5.01085,1.4722875,5.48465,0.6880307142857143,5.90755,2.917965,5.8797,5.25645,1.46671,1.6879633333333333,3.956865,1.870825,4.854645,0.5431883333333333,6.1256,3.072645,1.47738,6.13671,6.67615,1.000645,1.6902490000000001,1.21373,1.21373,1.21373,2.2556566666666664,4.96715,3.676175,4.095975,4.11152,5.64875,4.462375,2.04632,4.4845,5.68375,0.3045756097560976,3.68908,4.676075,5.025,40.55120007575758,5.897005833333333,5.47835,11.781818000000001,3.967995,4.129635,7.5724366666666665,3.2281,3.77394,4.42768,5.08005,9.855039999999999,4.21976,2.4477800000000003,3.07911,5.7132,4.142265,3.61765,4.574725,1.931085,4.888975,3.76087,6.873645,4.49031,5.6744,2.299155,4.118355,0.51683125,1.4061583333333332,4.021995,6.58255,2.964055,1.2950283333333334,1.2950283333333334,3.360485,3.672015,4.139715,2.78592,1.6719433333333333,3.39681,4.25246,1.84102,3.01456,1.698818,2.67275,4.15908,4.55109,2.178375,4.722395,2.2159925,2.01073,3.59366,3.557605,4.055285,3.86981,6.158635666666667,2.530705666666667,4.057455,0.6684545454545454,0.7121591666666666,3.983815,2.140525,8.549706666666667,3.385,4.9192,1.6307375,4.542135,1.586615,3.932415,4.23935,2.75379,4.22016,5.8044,0.41618649999999996,0.41618649999999996,3.5910333333333333,3.1976133333333334,3.0727700000000002,3.883995,3.63056,4.97995,0.9383363636363636,10.397191666666666,9.583245000000002,2.1728875,5.206075,5.11665,5.1832,3.46759,2.7430333333333334,2.15718,2.0538075,8.985555,2.34512,2.7544566666666666,4.178240000000001,4.6557,4.178240000000001,2.6328,2.862296666666667,2.91107,0.7597272727272727,5.6858699999999995,3.4796666666666667,2.6569333333333334,4.486795,8.638355,9.454905,4.726145,4.019935,4.620325,6.8546025,2.0244025,1.409525,26.054915833333332,3.633755,3.77485,0.9211919999999999,5.84675,4.356085,4.552035,4.31973,4.70631,5.9636700000000005,3.2779566666666664,2.0487466666666667,0.7240882352941176,0.7771658333333332,5.0348,4.986205,1.63312,4.852706666666666,0.8588,3.4619,1.47387,4.198245,6.02585,2.454005,2.44496,2.131025,3.846645,3.117665,0.44991666666666663,3.791665,3.60488,2.7472733333333337,3.40909,5.23975,3.03537,4.30792,2.994385,5.2724,8.638456666666666,4.968615,6.85422,2.74795,2.9311566666666664,4.3467,4.31332,4.3818,4.5187,3.67224,5.1547,1.21320625,3.39887125,3.2867384285714287,0.785832,1.6760560000000002,1.6760560000000002,4.993135,7.056518333333333,0.9042,5.1033,0.8618833333333332,2.9086866666666666,2.19241,2.603900909090909,6.5503800000000005,2.7972699999999997,1.0807,2.4051666666666667,1.3431125,2.302043333333333,3.0231933333333334,3.1742233333333334,3.32107,2.6556966666666666,0.8618833333333332,4.554555,4.75129,5.7557,2.750235,4.92231,2.2743200000000003,5.8367,4.72254,5.0641,3.10537,3.54736,2.2432475,1.28803,3.904575,2.76055,4.364605,5.58545,1.75564,4.851665,2.8893733333333333,6.47732,3.470635,2.39429,0.8618833333333332,2.322705,2.88688,7.332777055555555,2.3642533333333335,1.240624,2.3642533333333335,0.42211166666666666,1.1843059999999999,3.50087,3.517145,1.7571975,3.4573,3.7954309999999998,0.5952759999999999,0.5952759999999999,0.5952759999999999,8.623194999999999,1.60655,0.7420763636363635,2.8538,41.68626835714286,1.8372928888888889,0.6707988888888888,2.9619275,0.6707988888888888,3.73189,1.917675,2.40142,2.8833133333333336,5.58515,5.07195,4.55787,2.4024466666666666,0.9607542857142857,4.574935,3.09299,4.827445,1.0537214285714287,2.6077,2.6077,3.9274,4.213015,3.805485,4.727356153846154,3.26693,4.66661,4.880665,1.8287140000000002,1.19156125,5.43955,6.30265,3.866585,0.967328,4.336275,4.270483333333333,0.9147525,4.49645,2.43293,4.30932,4.252115,1.9169860606060607,1.9169860606060607,4.21905,3.405955,0.9131977777777779,3.158985,3.0810600000000004,3.33705,3.944635,4.918935,0.4100614285714285,0.26796588235294116,0.26796588235294116,0.26796588235294116,0.6780273109243697,0.6004161538461539,0.6637190000000001,0.26796588235294116,0.26796588235294116,7.1936800000000005,0.26796588235294116,0.6780273109243697,3.538565,1.3415975,4.254095,1.1686349999999999,0.6889761538461538,0.9147525,2.47097,2.6971,4.163505,3.00734,0.26796588235294116,0.26796588235294116,4.5036,3.723085,4.325855,2.505425,4.07367,1.560614,3.787825,0.6637190000000001,0.6637190000000001,5.0383,3.02632,2.708915,2.83061,4.241343333333333,1.04441,0.7753923076923077,10.73319,1.249835,4.980615,4.278985,5.327,2.1423200000000002,0.3935826086956522,0.87903375,2.8716166666666667,3.198335,3.36728,4.825445,1.460642,6.27995,3.876365,5.453715000000001,4.296295,3.13195,3.0289433333333338,6.12003,2.85953,4.97843,4.17749,4.545303333333333,6.3716550000000005,0.5669813333333333,4.3751,3.1536233333333334,2.04076,0.6642022222222222,4.368765,5.17109,2.562055,2.55728,2.06477,4.964045,2.68229,2.769945,0.959636,0.45475538461538456,3.940425,0.33439800000000003,0.8633663636363637,3.8947,2.996675,4.067105,2.719245,4.74807,4.497755,6.318999666666667,3.61184,3.310865,5.16495,1.5665525,5.0726825,1.7676939999999999,4.29746,2.5482,6.160893333333334,2.79641,1.249696,4.51097,7.047575,6.4958775,3.2383366666666666,0.8695083333333334,2.733643333333333,4.800835,4.15383,4.53774,4.980145,4.44571,4.465445,2.87087,4.03726,1.7619733333333334,2.50411,1.4233766666666667,4.120605,8.4271,3.848885,3.53311,5.92655,3.046335,4.56119,2.5070466666666666,3.177745,3.292855,6.1063,3.383235,3.48709,4.34857,5.84255,5.7973,5.4515,4.632205,5.06535,3.971265,3.156285,6.1372,8.375575,0.9089800000000001,3.813405,4.20485,4.69292,5.4398,4.56046,4.62906,8.29346,2.44117,3.290305,5.8576,3.611275,4.11509,2.0328399999999998,1.67369,2.5662166666666666,2.8816733333333335,2.1205333333333334,2.982063333333333,4.03935,4.63005,3.900985,3.444125,4.948511666666667,3.15576,2.998385,3.8456,5.58895,3.02985,5.564819166666667,4.073755,4.006765,3.4839,8.87626,4.28831,3.54364,4.55363,4.78794,3.273235,8.83862,1.2618283333333333,2.36361,4.090945,2.6955766666666663,2.6955766666666663,2.02155,7.506693333333334,0.9541644444444444,3.8612,0.9152375,2.03122,4.74164,4.53857,4.16044,4.464755,2.9308666666666667,3.95978,4.262625,3.751155,4.55558,3.114055,2.9777233333333335,4.51071,5.292806666666666,4.07895,4.90429,1.73948,1.6808340000000002,2.56045,5.73155,2.3594475,1.6888833333333333,1.9730925,4.46144,4.951755,2.967025,2.790585,0.5193677777777778,2.40137,7.492655,3.169675,1.4801066666666667,0.836845,1.28432,1.9307833333333333,1.97765,0.8137633333333333,2.0483,4.2270460000000005,3.928175,5.22815,2.3336799999999998,1.8628875,7.6902575,2.8584,2.1577149999999996,2.1577149999999996,2.1577149999999996,6.431633333333333,2.3024666666666667,3.618635,2.650485,0.505848,1.1643000000000001,1.9803825,5.3371775,0.43369166666666664,3.660465,3.8289383333333333,4.952945,3.0818616666666667,0.43369166666666664,3.0818616666666667,1.16462,1.236264,6.26945,4.47523,7.2009875,4.51899,4.484935,3.643965,4.15943,5.3852,4.36245,6.1582,3.704585,3.371605,4.821285,4.365045,4.13044,4.66224,5.33355,1.39771,2.64941,1.1037525,2.4325275,3.141826111111111,1.4854394444444443,6.745950000000001,5.557653333333333,2.7466716666666664,5.3021,2.81489,4.921825,3.091615,4.09242,4.946275,9.813924166666666,6.00145,4.765765,2.3858025,2.78592,2.24418,0.5378075,2.239854222222222,6.3374,5.0427,4.73339,4.787395,0.6384340000000001,2.0290425,1.32139,4.568565,0.8107384615384615,7.662917500000001,2.0597675,1.0851075,1.0851075,3.820158,2.05986,3.595666666666667,2.671405,4.54868,3.6346075,3.6346075,4.472025,6.050656666666667,2.8050800000000002,2.4525833333333336,3.382733333333333,4.143025,1.97789,2.9792366666666665,5.28065,5.4247,4.601315,4.40791,4.010258333333334,4.7766,3.6050266666666664,3.363,2.3025575,4.184595,5.4407,3.062375,4.978875,5.56235,2.00137,2.5984233333333333,6.37855,6.9474,1.422428,2.75525,2.26849,2.8605933333333335,2.2831175,2.575525,2.503533,1.1077311111111112,1.9036025,2.51985,2.0908125,2.5813566666666667,2.5813566666666667,3.0729335,2.74395,2.1166673076923077,2.66195,2.44827,2.00736,1.587858,4.9738500000000005,14.554194666666668,3.17966,3.5459333333333336,1.879126,1.879126,1.6636866666666668,1.6636866666666668,3.0090966666666668,3.8320333333333334,2.9095833333333334,1.852375,1.852375,3.836766666666667,3.1389033333333334,1.2088433333333333,1.5188285714285714,3.20394,2.9227000000000003,3.888533333333333,2.496212857142857,3.3686333333333334,3.364333333333333,0.681871,2.63115,3.570942666666667,7.225966666666666,4.96136,4.631015,4.56577,3.44347,4.69984,4.52371,2.9624366666666666,4.418445,1.406815,3.3047166666666663,5.79115,4.940805,2.402075,1.5192033333333335,2.791125,2.6724866666666665,3.0342066666666665,1.5739583333333333,0.6958014285714286,3.134116666666667,5.2397925,4.66301,4.63562,4.889675,3.1252266666666664,2.061993333333333,3.2907124999999997,2.8226533333333332,3.5253,3.1094866666666667,3.5545666666666667,2.981396666666667,2.737386666666667,3.613633333333333,2.9588099999999997,5.02185,4.971935,5.066939166666666,5.066939166666666,3.30784,3.956865,3.79064,3.58756,2.84111,5.1568,3.384945,3.14607,6.08665,0.8523499999999999,5.1117,4.76953,2.481786666666667,5.875234166666667,3.5404,1.8033833333333333,1.4194457142857144,2.35021,0.9968130000000001,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.3139982142857143,0.5608057142857142,0.5608057142857142,1.18273,0.9849419444444445,1.8836420454545455,1.0871042857142856,1.0871042857142856,1.408497601010101,0.4751444444444444,0.43814555555555557,1.2554075,1.6247525,3.3526333333333334,2.63265,7.272718333333333,3.1657333333333333,3.96185,3.80974,4.197380857142857,1.3714533333333332,4.627565,3.74356,4.26359,3.15771,1.462776,4.058987692307692,3.54909,4.971815,4.573635,3.067565,4.4658,4.19406,4.564935,1.183906,4.249585,4.954485,3.251315,2.4084666666666665,3.39393,2.33922,3.26309,3.76958,3.5559999999999996,5.14655,8.68327,3.22906,4.91202,4.38671,4.371981666666667,2.770243333333333,3.21574,1.0750642857142858,3.949755,3.151315,1.913382,1.03867125,2.78622,0.8738100000000001,0.5494020000000001,3.8877666666666664,4.332155,5.085866666666666,3.8845333333333336,2.483335,3.059545,5.0666,4.117366666666666,4.525305,2.618525,2.2195566666666666,4.14992,4.302365,4.10714,5.2235,4.584015,3.67487,4.927825,3.1953099999999997,4.82745,2.1363891666666666,4.792225,5.28075,3.13667,4.00812,2.599175,3.640385,5.13945,4.668465,4.99869,4.89603,5.0008,2.6858833333333334,5.2397,4.857495,4.514695,2.4291925,0.99125875,3.997395,4.76994,4.242845,4.53322,1.76301,4.409795,2.413735,5.04935,4.55123,5.1417,2.2245825,4.477755,4.910225,4.50292,2.8853866666666668,4.44207,5.3114,5.0258,3.76771,2.4291925,2.273835,2.861585,4.56725,3.751145,4.38781,3.58754,4.300425,2.30215,6.68474,4.70944,4.490225,5.2953843124999995,4.6687075,5.13345,3.36199875,2.2926933333333332,2.2926933333333332,3.993795,4.291445,4.38106,2.2968325,3.2896312500000002,1.16320375,2.8497299999999997,3.3165566666666666,2.7030833333333333,3.3737,4.70351,2.7496666666666667,5.7412,3.0513066666666666,3.937535,4.2101225,2.348605,4.03552,1.8504966666666667,2.76852,4.070845,1.0221399999999998,4.865045,4.98555,6.1244700000000005,4.43719,5.57335,1.3122885714285712,4.65496,6.38815,9.228874999999999,3.361666666666667,3.29208,1.933234,0.892657,3.84168,1.022422857142857,4.01895,4.823635,4.96414,3.02035,3.621135,1.2005357142857143,3.354515,3.57943,4.436875,4.42313,3.322145,3.4592,2.563925,4.010575,4.732955,5.78895,4.65786,3.797905,0.42508222222222225,0.42508222222222225,0.42508222222222225,0.42508222222222225,5.5758,2.68813,6.9023,3.159216666666667,5.46985,5.06625,3.749175,2.199575,2.464226666666667,1.5290766666666666,5.7367,2.990596666666667,4.15693,3.562425,3.37985,1.67697,1.15820625,4.61001,2.34648,6.219466666666667,4.369785,4.981,2.35701,1.54443,0.8906644444444445,3.214125,4.551155,3.097195,2.2215875,8.492015,3.87213,3.774395,2.44722,0.471099,3.640775,2.873055,2.033445,2.08695,3.533145,3.67024,2.80874,3.2638599999999998,2.854955,3.703025,4.19833,3.52957,4.085445,3.85224,5.579338333333333,0.6312106666666666,4.409435,5.9608,5.02035,4.337015,3.1015533333333334,5.1726,4.659895,4.407335,5.229375,5.3209,4.363305,4.67685,3.76763,4.78484,3.42371,8.92611,4.93833,4.49053,4.989465,5.05575,4.93409,3.432825,1.1188888888888888,5.496424166666667,3.6316,5.00855,1.5408,4.27919,4.686645,7.3736733333333335,4.76335,3.121315,2.2686966666666666,4.343615,1.8969919999999998,1.11597375,4.38337,5.69295,1.9393866666666666,2.3498933333333336,2.85577,3.12649,3.610205,3.511845,5.0452,3.27601,4.152995,3.8110295,3.35106,3.657633333333333,3.859345,2.865275,2.755415,1.9446925,2.42959,2.694126666666667,4.35963,0.5409091666666667,2.5465266666666664,3.951315,3.001275,3.5745,4.446215,5.6594,4.280255,16.29999037878788,2.1106166666666666,4.025766666666667,1.41069,0.8138745454545454,0.8138745454545454,0.8138745454545454,0.8138745454545454,0.8138745454545454,4.6953,4.80617,5.085,9.3072775,2.643325,2.643325,4.59323,4.660360833333334,1.2642275,2.2131133333333333,4.263135,2.5089,2.2298025,1.9928525,2.887475,3.7346593333333336,2.2133475,3.941745,0.7989571428571428,2.8951766666666665,3.0378266666666662,2.9761900000000003,1.3987066666666665,3.3041633333333333,2.0984366666666667,0.94455875,2.8858533333333334,2.80194,1.1206666666666667,2.4536266666666666,2.7754,2.20731,4.536887333333333,1.95181,3.2018866666666668,2.0285825,2.5907833333333334,1.083148888888889,2.76219,4.766720666666667,3.710266666666667,1.09229875,2.837673333333333,1.6224575,2.9321866666666665,2.8204533333333335,4.7155716666666665,3.180956666666667,2.5932133333333334,4.817019999999999,2.7073199999999997,2.16527,2.804413333333333,2.809613333333333,1.9909100000000002,2.7960700000000003,3.5248000000000004,3.219863333333333,2.88696,3.2870033333333333,2.7152666666666665,2.4633425,3.852716,3.852716,2.882823333333333,1.9952866666666667,1.8570933333333333,2.69357,5.586973333333334,2.8530366666666667,1.9164433333333333,1.7100475,3.20059,4.395435,2.61299,0.986218,2.693144666666667,1.4444566666666667,2.4352066666666667,2.2538666666666667,3.8447333333333336,2.133723333333333,2.95717,1.171492,1.55835,1.3995466666666667,4.2904816666666665,2.56027,4.153825,0.9781877777777778,3.982285,1.96416,2.2928175,1.75871,1.7452500000000002,3.2935,24.611327077922077,6.24029,2.71327,3.2935933333333334,2.2491533333333336,9.927647333333333,3.2180366666666664,0.98576625,2.5146933333333332,2.62397,2.0570866666666667,3.00074,2.5341333333333336,2.658333333333333,0.96692,2.9296,2.4643866666666665,2.8731500000000003,2.6993566666666666,3.285016666666667,2.13996,2.109103333333333,3.1473033333333333,2.4678733333333334,2.233475,1.7247219999999999,5.771925,4.775255,2.42963,2.9404,2.1785666666666668,2.4708099999999997,8.137683333333333,1.9194833333333332,5.05695,2.0423775,2.150585,7.39571,2.72962,2.5643333333333334,2.645825,1.8902640000000002,1.4885384615384616,3.30105,3.2838166666666666,4.11984,1.59593,4.0142999999999995,1.43982,1.43982,3.60582,3.856375,2.7070537142857143,2.7070537142857143,6.143509999999999,3.487685,0.45049,11.24631445970696,1.2312100000000001,0.9858228571428571,3.263205,1.486397435897436,2.0465825,6.1218,3.766905,0.8024045454545454,2.074953333333333,5.297829818181818,2.6499741666666665,4.25462,1.3568528571428573,5.62335,5.4387,5.10205,3.63996475,1.979428,2.87115,2.7893033333333332,2.8350266666666664,2.2751200000000003,5.050153333333333,4.91647,4.51341,1.8234325,5.04725,3.95934,2.6189833333333334,2.3665725,5.26145,2.54867,7.99268,7.1575425,1.924045,3.34683,1.6914639999999999,4.498833333333333,4.498833333333333,3.389466666666667,3.245433333333333,3.3493353333333333,5.28955,9.691815,4.535835,2.4632225,5.63995,4.28213,5.2532,1.921914,0.8472825,1.332405,4.6715,4.79991,3.8027333333333337,2.91149,3.8773666666666666,2.0497433333333333,3.792315,4.43498,3.250845,5.37365,3.223463333333333,3.6299566666666667,3.5292999999999997,3.3523333333333336,3.5165666666666664,6.14415,3.026375,5.50335,5.30895,3.192035,3.4038,3.4038,5.634401666666666,12.003301666666667,3.5164000000000004,6.0610125,7.40981,3.6244,2.5335566666666667,3.87269,1.3773133333333334,3.815725,2.020495,3.0230866666666665,3.041846666666667,3.3345333333333333,2.10594,2.36084,2.8063800000000003,2.5891266666666666,3.0986966666666667,3.1022533333333335,4.13469,2.4923533333333334,2.9333299999999998,3.82712,3.017916666666667,2.3479266666666665,1.1571775,2.101915,3.1345833333333335,2.526126666666667,2.53702,2.381206666666667,3.5764,2.2925633333333333,2.4235966666666666,2.9731566666666667,2.9387266666666663,2.7761366666666665,3.114523333333333,2.377616666666667,2.93055,2.7976433333333333,3.301868,2.6105899999999997,2.561993333333333,2.4296966666666666,2.28241,2.62194,3.330356666666667,3.1786999999999996,3.06198,2.033015,2.033015,0.8998366666666667,1.628612,4.777605,3.18141,2.66746,2.10594,3.5135666666666663,1.3141,2.785966666666667,0.5992726666666666,3.4182333333333332,3.0693333333333332,3.05222,2.9904333333333333,2.64682,2.7629900000000003,3.1836599999999997,2.9339166666666667,3.356733333333333,5.001273333333334,1.5909179999999998,2.2327733333333333,2.5598666666666667,1.7436533333333333,2.0892433333333336,2.84212,2.9030966666666664,1.6249179999999999,2.5589333333333335,2.61749,2.7152433333333335,2.8523266666666665,2.9511033333333336,2.9805533333333334,3.4012666666666664,1.3415225,2.6927266666666667,2.46818,3.7946666666666666,3.5588333333333337,1.8868825,1.6670666666666667,3.5925,2.8145399999999996,3.4690999999999996,2.5872266666666666,2.9253,5.145605,2.8834700000000004,2.0752,1.6269380000000002,3.5095333333333336,6.0708166666666665,3.4615333333333336,3.5779,3.02049,3.23929,4.638534,1.5271839999999999,1.2053,2.4423033333333333,1.8244250000000002,4.55088,3.0731933333333337,3.4396,2.97667,3.25316,2.299323333333333,3.3500333333333336,2.3843625,1.59369,2.888726666666667,3.343255,3.74606,3.04906,3.859145,1.5966825,2.79744,3.038445,2.22443,2.0450233333333334,3.3874999999999997,3.9818,3.8403333333333336,1.446615,5.6508780000000005,3.249485,1.5481116666666666,3.78055,3.179965,2.80008,4.17198,1.979784,1.979784,3.4115,2.8765366666666665,2.7904,5.5015,4.30779,4.229438666666667,1.450172,2.8290900000000003,2.7271866666666664,4.12635,3.09295,4.255674,2.6218866666666667,2.3842133333333333,2.6445666666666665,3.518825,6.1015,1.6461659999999998,3.0673866666666663,3.374105,2.2470475,4.597375,1.2464116666666667,3.320645,4.72595,2.54773,3.600325,4.069055,1.571935,1.5188666666666668,2.3430025,1.0724183333333335,2.095286904761905,1.9941,0.43458142857142856,4.39238,2.056675,4.665795,4.662465,2.77641,4.765853333333334,3.0899933333333336,3.3707666666666665,3.717,2.6144333333333334,3.3330566666666663,2.6600266666666665,3.30967,2.3250433333333334,0.6917061538461537,2.305963333333333,0.6158892857142858,2.08403,2.4803,3.1964733333333335,3.173716666666667,1.4197066666666667,1.1790825,3.72108,4.5202,3.441395,3.3794174999999997,3.480435,1.621145,4.10966,7.471163333333333,3.64286,6.134697500000001,1.4764925,3.84505,1.8142875,3.87427,3.665175,2.03366,3.833745,3.062875,4.04295,4.14718,2.161885,3.9967,6.5290275,5.3296,3.22296,2.896235,1.6513075,1.913685,3.323765,3.53492,3.12919,3.72821,3.82216,3.706155,1.6504025,3.49138,3.332775,1.8424625,4.26544,0.9143249999999999,3.677245,1.7691875,3.801635,4.536448333333333,3.584185,2.7858475,3.907925,3.17204,1.96529,2.337415,3.8468666666666667,2.18458,5.7514575,4.043195,4.462965,2.55304,2.86345,4.483825,4.655155,2.582606,2.582606,5.916342,4.1787595,3.0131275,3.161965,2.1824600000000003,3.05414,3.2982,3.8184508333333333,2.752877,3.58371,0.9147259999999999,3.78954,3.027505,3.89434,2.3887,1.6309325,1.53137,3.36262,5.722538,5.34678,3.433095,1.4823675,3.787275,2.87717,0.8418,3.16362,1.1872880000000001,5.6813475,1.3142216666666666,4.195785,2.103995,1.4197066666666667,3.62465,2.98639,4.36726,6.7463733333333336,4.183535,4.151579166666667,2.40778,2.846755,4.65809,3.890655,4.53941,4.42993,0.9405775,1.6472175,1.0866575,2.2536,2.087735,4.81505,1.0866575,4.52145,2.277615,1.313705,1.313705,1.8424625,3.773545,4.416025,4.115425,1.58603,1.58603,0.9002566666666666,2.95636,2.0366375,5.9608775000000005,4.48094,3.53543,2.898403333333333,0.9510071428571428,3.427585,3.04464,4.208575,3.638905,3.92584,3.92584,3.450545,3.88762,1.941225,2.447445,0.9503355555555556,1.6779400000000002,3.45779,2.424323333333333,3.430858333333333,3.430858333333333,2.843365,4.74938,4.577815,2.87074,3.56858,4.233895,2.7460466666666665,4.557136666666667,2.30739,4.05634,8.321705000000001,5.1338,2.68737,3.157365,2.99392,4.66996,3.596168,7.5814025,4.691831,4.448445,3.337345,3.853185,3.713185,4.513145,4.60318,2.176875,4.095005,6.014304166666666,2.51545,2.211844666666667,3.328965,3.16216,3.47878,4.447095,2.277883333333333,1.4883266666666666,2.317845,2.61109,2.1640200000000003,7.214357333333333,1.38953,4.762583333333334,4.762583333333334,3.49827,3.8005466666666665,2.996265,2.5067666666666666,4.5818,4.0917449999999995,2.2079133333333334,3.81782,4.0029,3.4028041666666664,3.048085,3.166905,6.323023333333333,3.393205,4.733275,3.15348,4.264445,4.032275,3.791545,2.8765366666666665,1.84947,2.51319,4.209095,2.87257,3.3179316666666665,3.467665,6.480471666666666,2.466625,1.8532275,3.376524166666667,2.39066,3.74874,2.60074,0.8418,2.98933,4.249395,3.93283,5.859845,2.937945,2.742495,3.0316533333333333,3.0316533333333333,3.2644908333333333,4.47446,3.773105,2.2978375,6.206872499999999,2.0653425,4.661945,3.60697,7.8727,2.8265166666666666,1.36428,3.148445,4.37882,0.60171625,4.01398,2.7425,3.09946,3.0778,4.04242,2.079763333333333,2.16379,8.974605,3.310235,2.530615,1.3142216666666666,3.653595,2.71598,2.219775,3.98275,4.86997,1.621495,1.205425,1.0678750000000001,4.03236,3.78484,3.03693,3.4069025,3.4069025,1.6504025,2.172115,2.960443333333333,0.8552633333333334,2.590335,1.0760625,1.5966825,3.71462,3.59096,2.23254,2.62994,2.3337391666666667,4.2697,3.619035,2.88631,3.20797,2.422905,4.209345,6.452225,4.071065,0.8791925,2.711124,8.56357,4.53884,3.97712,1.0348725,4.289555,1.3839583333333334,3.575885,3.575885,3.649445,8.287604166666666,0.7951333333333334,4.571425,4.78189,2.2052633333333334,4.004664999999999,4.203485,2.236675,9.940890666666666,1.8437225,2.3711266666666666,2.943985,1.6101166666666666,4.213096916666666,2.912535,3.397775,3.421176,2.748985,3.09328,1.1767,7.30485,3.84145,4.3934,4.04362,1.924795,2.7858475,3.6175791666666663,3.87199,0.6469192307692307,4.65532,4.700335,4.93517,2.0848925,1.388006,4.56191,4.24683,6.06777,0.7368415384615384,0.8694775,0.8694775,1.51433,1.2794533333333333,1.3207900000000001,1.78146,4.703545,1.1950766666666668,0.8046328571428571,4.0383949999999995,3.64624,1.4432575,3.23371,4.92474,3.728375,0.725052,1.769685,10.962315,3.653261666666667,3.906375,2.79894,1.2358675,2.4627033333333332,2.810015,4.600075,4.596985,4.004275,0.88171,1.461458,0.9364140000000001,4.5374125,4.261185,4.199255,0.8552633333333334,1.782732,4.153255,2.17549,4.713504166666667,1.0620575,4.92842,0.6680083333333333,0.6680083333333333,0.6680083333333333,9.731265,4.15441,1.0760625,3.556445,4.267495,2.50468,3.273655,3.5960275000000004,2.557175,1.9582022222222222,2.0093866666666664,0.725052,1.566852,0.5769388888888889,0.8359916666666667,1.2838399999999999,3.44959,3.777905,2.12819,7.324793333333333,4.9028975,0.6451266666666666,5.337,5.296083333333334,3.33987,4.645975,7.557100333333333,3.58906875,4.9028975,4.213511583333333,2.3493933333333334,4.57457,3.635065,6.61459,3.402915,0.471099,1.566718,3.63716,1.750822,1.205425,4.26525,2.380313333333333,1.660825,3.116905,1.6552959999999999,4.376445,4.415025,4.14238,4.806635,5.65753,2.74206,3.89764,1.1872880000000001,2.3326175,3.56724,3.23135,2.2079133333333334,3.926435,2.48554,4.833855,2.963085,2.475755,3.2150166666666666,1.804414,3.5321,0.8552633333333334,2.17231825,1.0678750000000001,1.581905,3.512045,1.38953,1.2838399999999999,2.28541,2.52081,8.4183,0.88171,1.0348725,1.368858,3.746455,3.93156,1.368858,3.80051,2.3326175,0.60171625,0.8552633333333334,1.51433,1.1872880000000001,0.43458142857142856,1.660748,4.238235333333334,2.2052633333333334,1.3428383333333331,2.466905,1.446615,1.8437225,2.4972666666666665,2.0093866666666664,4.321075,2.4972666666666665,0.8418,2.782997,2.2777725,0.13300431818181818,0.13300431818181818,0.13300431818181818,0.13300431818181818,0.13300431818181818,3.350766666666667,2.7569700000000004,2.9522066666666666,2.9579533333333337,5.35345,4.282465,1.75871,3.600855,3.60328,2.118925,5.0737,2.770505,2.588535,2.465875,2.937375,4.59657,7.982673333333333,2.3430525,2.0392066666666664,3.0086532142857143,1.0059957142857143,1.3589583333333335,2.40003,2.3562366666666668,1.57319,2.6628166666666666,2.1880666666666664,2.80054,2.714926666666667,2.492973333333333,3.774095,3.77662,2.57715,1.265696,3.741795,3.637415,1.53455,1.4093959999999999,1.4093959999999999,1.4093959999999999,3.72594,2.7842300000000004,1.0915666666666668,2.2049766666666666,1.2868042857142858,4.31729,1.6321433333333333,6.80775,3.48204,2.99905,3.05051,3.05051,5.32468,2.857405,4.5003,4.744195,2.13957,3.2273833333333335 +GSM1946778,0.0,2.0165225,2.0165225,1.6374266666666666,4.58013,6.2174,2.3649806578947365,1.5441066666666667,7.557089950980393,4.596,3.3508999999999998,2.23316,2.164195,3.339655,4.302175,1.8112860000000002,1.480564,4.87465,2.58889,2.2877475,4.85554,5.235575,3.871315,2.060755,1.848516,3.93332,4.61211,4.363775,0.7089691666666668,1.5802591666666665,1.820193333333333,1.8601925,1.56905,1.1100771428571428,0.7002766666666668,3.0874321428571427,1.5319075,1.949115,1.1535475,2.215465,1.1009375,1.1025575,1.112138,1.3908099999999999,0.93008,0.9263960000000001,0.7630939999999999,1.1871542857142856,1.688348,1.872666,1.5241099999999999,1.996556,1.6888400000000001,18.3766515,0.39206599999999997,0.897492,1.061428,1.730896,1.4104160000000001,1.69058,1.06496,1.06496,1.06496,1.173265,1.028106,4.74089,1.0527025,2.3578275,2.073085,2.2351025,0.951797,2.181855,2.203535,2.2500775,1.525275,2.0718225,1.546285,1.7248275,2.4851433333333333,3.603265,4.45538,5.19495,1.6206966666666667,4.51976,4.308251666666667,4.273945,4.13442,1.0551925,7.70064,0.603843125,0.603843125,2.2930825,1.0058614285714287,16.371850000000002,5.0568,5.35875,5.53165,4.21213,4.192665,5.32565,0.44185722222222223,2.2406579166666667,1.6570825,2.386835,4.674,3.52326,1.5311125,3.2061733333333335,3.4707333333333334,2.70553,3.6556333333333337,3.53613,4.40579,2.7868475,4.55994,2.9532000000000003,0.7061818181818181,1.659366,2.63885,4.92639,3.218975,0.5597925,3.61052,3.848815,0.74911125,4.42461,1.6594622077922079,2.28071,2.6823,2.0800925,3.81513,5.77355,3.351335,2.6432166666666665,3.1753766666666667,3.0052733333333332,4.10597,2.9909499999999998,5.44545,3.481595,4.448775,3.13217,2.119125,3.659145,2.32318,7.028215000000001,3.52062,3.651425,5.4381,3.14615,4.979805,0.7846522222222222,9.73015523809524,3.58478,2.0997133333333333,1.9971416666666666,3.27587,2.401485,4.872255,5.6624,2.1551575,5.009437500000001,2.68796,4.35874,2.1551575,2.8204433333333334,4.506345,5.212164166666666,3.757475,9.04775,3.52237,4.88566,2.88216,4.99714,4.587065,1.7992833333333333,8.13777,4.5086,3.928745,4.035625,3.493795,3.344105,2.28182,6.28387,2.296805,3.91848,4.02362,5.05855,4.65259,3.43266,1.4016883333333334,2.78808,3.01665,2.06275,2.06275,5.791938571428572,3.203425,1.9060033333333333,4.252795,4.707535,2.68476,1.4790766666666666,0.8379811111111111,6.68405,2.855775,6.88375,2.9456,3.75182,3.78188,3.01763,3.909815,3.680175,3.84653,4.12406,5.95795,2.82799,3.626805,9.094693333333334,4.579275,3.6183666666666667,3.000913333333333,2.730256666666667,3.7868,4.2097758333333335,1.8348725,2.7025133333333335,2.1689133333333332,1.704534,1.7499166666666666,2.7143033333333335,1.7114925,1.9598625,2.9881966666666666,2.6487833333333333,2.3598033333333333,2.7998333333333334,4.308251666666667,3.572355,3.39228,3.43538,4.44594,1.2215216666666666,1.92546,2.9238662857142863,2.1101,2.62881,2.1358133333333336,3.3829,1.6629079999999998,1.4156233333333335,2.5886633333333333,0.688968,1.6407299999999998,0.5366822222222223,0.5366822222222223,1.4767366666666666,2.7354233333333333,2.270023333333333,1.31724,1.4535200000000001,0.30778692307692307,2.7255533333333335,0.688968,1.1927066666666668,0.19703216216216216,1.4976466666666666,2.0371425,3.598266666666667,2.22539,2.3148666666666666,2.5900366666666668,2.2704333333333335,2.4030733333333334,2.5696866666666667,2.401266666666667,2.23341,2.7200433333333334,1.9071666666666667,2.735675,4.14274,0.6830883333333334,1.8615199999999998,2.5627733333333333,1.9889166666666667,3.4273000000000002,1.547396,2.5859900000000002,2.1578566666666665,4.293406666666667,2.0730833333333334,6.926675238095238,1.5733285714285714,2.9251566666666666,2.0838725,2.0942525,3.2494099999999997,1.9383525,1.93793,3.93897,2.5747566666666666,2.20576,3.88119,4.014735,4.299765,3.789035,2.359285,3.2249,4.3438099999999995,3.867655,3.91324,4.245275,4.591125,3.07056,4.35529,3.585765,0.903255,4.816815,1.2613283333333334,4.77866,3.734585,5.726863,3.545435,4.225525,0.95854625,2.257415,3.510985,4.1395,0.8081957142857144,1.1952757264957266,2.022478095238095,3.696042857142857,5.324935,5.464637,2.189495,3.17397,5.38595,0.34976142857142856,3.47258,2.3823,1.00092375,4.571375,2.178365,12.262545,1.2776375,1.37302,2.0121233333333333,2.353145,1.9694757894736843,4.553535789473684,0.3109457894736842,1.6862599999999999,2.93684,1.05017,3.7015333333333333,1.0078057142857142,4.98014,3.806335,2.0497133333333335,5.9149,5.79225,2.8892,1.116412857142857,4.575431666666667,4.922795,4.37151,0.861090909090909,8.02018,2.90098,4.413635,2.6879399999999998,2.5471033333333333,4.33361,2.31412,2.6792266666666666,2.13606,2.4892266666666667,3.14463,2.9467700000000003,0.346706875,4.016015,3.62536,3.83648,3.872265,4.36811,6.114322,4.123935,1.68235,5.58615,4.494485,4.469965,4.026825,1.0515166666666667,2.66339,3.27866,2.4605799999999998,15.37781,2.94335,3.805205,4.354425,5.6357,2.569905,5.108765972222222,1.7058025,0.7695544444444444,2.683725,3.321625,3.46772,3.887805,6.510496666666667,2.9600266666666664,2.31616,2.122125,3.30489,4.577275,2.267515,0.4183826041666667,3.181739130434783,1.9284425,1.14186625,0.564652169384058,0.7109217346014493,0.4183826041666667,0.4183826041666667,0.4183826041666667,1.18034,1.2665175,0.929675,1.5684925,4.210465,0.21052294117647058,11.078974556277057,3.4276666666666666,2.7249033333333332,4.08194,3.94819,3.916355,2.12919,4.6636,3.9047799999999997,4.031615,3.74595,0.6682107692307693,3.3331733333333333,4.187225641025641,0.6191407142857143,3.52465,2.69603,4.358175,0.5415727272727273,1.924265,4.42545,3.401315,1.8462825,1.8035500000000002,1.8058266666666667,3.2720066666666665,4.003785,3.05988,2.83164,5.36175,5.45775,4.762875,3.2950733333333333,2.8156705,6.772966666666667,3.8195666666666668,4.60302,0.41145,3.1786666666666665,3.8671300000000004,2.0235866666666666,2.66712,2.7547858333333335,5.706063333333333,0.5974658333333334,2.896125,4.431295,4.09458,1.0370142857142857,4.58143,2.75582,4.80386,3.1375533333333334,4.21587,3.514885,4.36647,1.1603216666666667,3.335615,2.80077,4.68243,4.05909,4.169295,5.8676,4.64076,2.73552,5.4831,2.36828,3.01846,3.1488833333333335,2.6322966666666665,2.7388333333333335,2.2690966666666665,1.863134,1.44238,2.0604366666666665,0.81099,1.4102833333333333,2.268733333333333,1.9368566666666667,3.0828466666666667,3.222246666666667,2.735193333333333,0.9617133333333333,5.0195,3.309696666666667,5.418191666666667,2.707141666666667,3.1311699999999996,2.9352199999999997,1.7361166666666668,1.7361166666666668,2.5626841558441558,2.5626841558441558,3.04130487012987,0.48545714285714286,1.7264466666666667,2.0614133333333333,3.628833333333333,2.1944935714285716,2.1944935714285716,2.1944935714285716,7.36780613095238,4.346538095238095,0.9692272727272727,2.413415,4.884974166666666,2.544475,4.729035,3.209665,2.279215,3.54916,3.1194133333333336,3.1595566666666666,0.96338125,1.9575366666666667,3.5317666666666665,2.5174533333333335,2.6449866666666666,5.6844,3.895,3.780666666666667,5.07515,2.0212833333333333,2.7096199999999997,3.1651133333333337,1.0237577777777778,2.1834466666666668,4.616668,8.0119925,1.5343425,2.973255,5.16585,1.846512,1.892885,1.892885,1.02551875,4.824225,7.556215,4.254285,5.244177,4.592295,1.7392666666666667,3.996695,3.082475,4.73196,5.117276666666667,0.3585405263157895,2.90828,2.56285,3.73417,3.63431,1.859442,1.8915475,2.508075,4.28577,4.03418,3.18501,2.53881,1.36835,6.89742,5.29585,3.961095,3.467635,5.3282,4.28365,4.61926,3.53633,3.5586675,1.99796,1.0713342857142858,2.692745,4.091735,3.823385,5.556627499999999,5.7291925,2.3940425,1.8000999999999998,2.6418066666666666,2.7549566666666667,3.02071,0.6664864285714286,2.36161,3.614715,1.13960875,4.711705,3.272145,6.24953,1.3168604545454545,1.3168604545454545,4.16092,3.82461,3.773025,5.66455,2.7734233333333336,2.3292800000000002,3.88838,3.283195,2.141205,3.4794666666666667,2.350096666666667,4.08204,3.6777025000000005,3.921165,4.63445,1.0561433333333334,2.66577,4.15157,4.756645,3.269095,2.5143133333333334,1.93411,0.6304422222222222,0.6304422222222222,0.6304422222222222,0.6304422222222222,1.3522072222222223,3.7842849999999997,3.7842849999999997,1.87531,6.787276666666667,3.16866,4.093745,2.9272566666666666,2.709325,4.7942,4.017485,4.922615,5.10505,1.76665,4.050425,3.54317,2.65761,3.29719,3.410385,2.42797,4.009745,1.94113,4.901195,1.74935,3.4575466666666665,2.95428,1.7938675,1.182605,2.746015,4.386205,1.213914,0.8496888888888888,3.69258,1.26401,5.001880666666667,4.236455,1.2875114285714286,3.702295,0.7746288888888889,2.5715566666666665,2.432166666666667,2.2672,2.650015,3.894095,2.9112516666666663,4.80015,5.6809,4.28154,4.22195,2.526275,1.3000900000000002,4.003255,4.889475,1.4721375,1.4721375,4.069525,0.23255733333333334,2.25955,0.23255733333333334,0.23255733333333334,0.23255733333333334,0.23255733333333334,5.21755,2.63302,3.137115,3.49814,3.1722,4.385795,2.8155,1.006025,1.006025,0.8964233333333333,0.8964233333333333,3.77266,1.55488,4.399705,1.4360371428571428,1.4360371428571428,4.47608,0.49444,2.6423,7.165965,4.7781,3.35594,3.818335,0.88621125,2.413025,1.9771725,4.81578,4.32804,4.335635,3.82985,1.2846728571428572,2.674775,1.9392675,7.60201,1.79364,4.341885,4.71045,2.79264,3.91985,6.2409,7.90903,3.985135,4.37346,4.14169,2.344365,3.205885,2.34727,2.337325,2.02671,3.86179,3.537595,5.918558333333333,6.73808,4.128235,1.3346233333333333,1.799955,3.409355,3.706485,2.1186775,4.14545,3.182265,4.652933333333333,1.7126933333333334,4.0094,1.64053,6.531106666666666,2.69138,2.35344,2.3058633333333334,2.399915,3.32282,3.3733,3.2993,2.6403933333333334,3.3529,2.12946,3.467415,3.099835,3.1731,0.37780800000000003,2.94901,3.70718,2.70365,5.55825,4.9802,4.65884,6.79936,4.59811,2.1273733333333333,4.10929,5.33505,1.62361,4.78657,5.6826,5.4168,4.52263,3.16932,5.5937,5.08425,3.7704,5.324771999999999,7.639900000000001,3.99441,1.2344066666666667,1.4151966666666667,2.481275,1.78321,4.487255,3.994915,5.1681975,2.5503833333333334,2.366966666666667,2.70342,2.4251366666666665,2.2478233333333333,0.9475922222222223,0.49398588235294116,3.816265,4.063335,3.5897,4.041355,2.828615,3.2416966666666664,5.239988333333333,2.9889766666666664,0.5632805882352941,3.104005,5.5944,1.8410425,1.605946,3.74287,3.367845,2.5086633333333332,3.9183,4.02689,2.762923333333333,2.4153066666666665,2.35064,2.5716766666666664,2.77397,4.307156666666667,5.0069975,6.007915916666667,1.297916,4.82627,3.2694254166666665,4.90335375,2.43432,2.8804,2.392445,1.8902299999999999,1.541435,1.541435,2.6753699999999996,2.4161266666666665,2.70222,3.926475,1.639534,2.297225,2.18073,0.497379375,3.587265,0.5612,0.87517375,3.52868,4.44687,4.141625,1.61935,4.404735,3.1596233333333337,0.8309571428571428,4.27824,3.719715238095238,3.2085066666666666,2.512075,5.2292,0.2726803448275862,2.1852431666666665,3.30871,1.5372175,3.80473,6.6555,2.356205,1.3919066666666666,4.01759,3.891635,2.718973333333333,2.718973333333333,3.574825,2.397925,4.748055,5.580816666666667,5.0538,1.0301277777777778,2.7294199999999997,2.4216133333333336,4.29337,5.22015,5.50235,4.894255,4.3084,3.8093333333333335,3.5962666666666667,3.5128333333333335,4.0786,3.077223333333333,3.0558333333333336,0.6231985714285715,2.410785,2.430925,3.62335,3.0382200000000004,3.1685466666666664,0.7718975,2.71276,3.8638505,4.55555,5.9098,4.72741,1.940965,1.940965,0.8453820000000001,3.095125,4.495305,3.724255,4.729341428571429,3.559255,4.79336,0.5798081818181818,3.192445,3.583355,3.898155,3.8517358333333336,0.8767514285714286,2.666835,3.965545,5.70695,3.8214,5.06525,2.77349,4.178695,1.58851,1.0115271428571428,2.7052833333333335,5.31345,4.84281,3.147815,1.44017,3.92437,2.6496,2.60315,2.7772555555555556,3.0206733333333333,4.563973333333333,3.08583,1.738766,3.5148333333333333,1.4781083333333331,2.84449,2.5746100000000003,2.3504425,2.77487,2.859583333333333,2.2967366666666664,2.5944133333333332,3.537095,3.047273333333333,3.433733,2.4461933333333334,1.861865,4.099824999999999,3.023093333333333,2.44836,3.433733,2.13177,0.8093181818181818,2.380595,0.9991944444444444,2.264865,1.5330425,0.9471,1.65969,1.64457,2.62644275,2.6861,4.30196,1.5324775,4.880895,3.117793333333333,1.59366,2.307256666666667,2.4046266666666667,1.8055166666666667,2.8577266666666667,2.722856666666667,2.329308181818182,1.78223,1.832112,3.6374666666666666,2.3597466666666667,2.8391105555555556,3.1100433333333335,3.1521633333333337,3.7151333333333336,1.9795633333333333,4.2465,3.5376666666666665,3.7551,2.8089333333333335,3.4766333333333335,3.6186666666666665,1.9615600000000002,9.755975,4.258025,4.26086,3.400715,2.692305,1.98505,4.06148,1.692616,4.17093,4.13669,1.32413,2.4560333333333335,1.1049633333333333,2.3819666666666666,1.6092433333333334,2.4184966666666665,4.988143333333333,3.0783466666666666,3.62328,4.990345,0.7665625,1.416178,0.9515689999999999,3.510525,10.515123333333333,3.5147333333333335,6.5716,1.9743525,5.1215,4.17334,2.54475,5.16475,0.28579235294117644,0.8355028571428571,4.937365,4.351425,7.2674725,1.9901725,4.250795,5.69485,4.60182,4.633455,3.525235,4.596725,3.718405,5.858415,3.65008,3.20179,3.0504,2.1864500000000002,1.9464333333333332,1.4673674583333334,2.5132566666666665,4.07557,4.67252,1.562228,9.12894,1.9753533333333333,2.942556666666667,1.058028,1.058028,7.2307958333333335,3.18016,2.284205,2.10428,2.5650166666666667,2.2068066666666666,1.1211499999999999,3.7056291666666668,2.67929,0.5895085714285714,1.7372966666666667,3.321696,3.321696,1.1765933333333334,2.58402,2.2508133333333333,2.4510183333333337,1.34173,1.7663533333333332,4.682088666666667,2.6708433333333335,2.69855,1.239435,1.239435,4.1164,5.7999,4.16429,3.36755,3.826675,5.86643,2.83723,2.8107,3.0279333333333334,4.121445,1.2180066666666667,3.1829666666666667,2.565375,3.81376,2.15537,4.750205,3.48661,4.37239,3.455145,5.515261000000001,0.9922322222222222,1.92943,1.887415,3.60267,4.336875,3.746945,3.754215,3.481275,2.636745,1.72356,4.19316,3.370795,3.121335,2.45573,0.8346225,3.39469,4.239425,4.673215,1.3072566666666667,2.8926200000000004,2.51255,1.98362,1.7323599019607845,1.7323599019607845,1.1496516666666667,2.1127,1.0741571428571428,1.386806,4.377315,4.418025,0.483647619047619,3.670165,3.396933333333333,3.9575,5.14935,0.416139,9.408355,5.60645,2.774565,3.70179,4.42831,5.490362857142856,5.07525,6.925355,0.6807581818181818,2.801823333333333,5.08505,2.86008,1.6346475,2.03182,4.50273,5.09961875,2.4280980357142856,3.3494333333333333,3.046726666666667,1.9944,4.23037,10.73425,8.294589166666666,3.8220666666666667,4.53405,3.1320575,3.11224,3.914345,1.8554220000000001,3.0007366666666666,3.73801,4.54882,4.787075,5.08825,6.442956666666667,2.1440533333333334,4.4382,4.66375,4.7155,4.4461,7.396916666666666,4.0837725,5.9895,3.522885,3.151405,2.90169,5.7698,3.753695,4.771075,2.141165,3.1629566666666666,3.343065,5.9762,4.0387,4.034035,1.469988,0.92385375,2.4369175,0.5434593333333333,4.16099,3.630425,3.573855,2.944125,2.109783333333333,2.95885,2.666125,3.044894,1.885052,3.0518625,2.900275,2.32668,2.52625,3.8083299999999998,1.2510083333333333,2.926968333333333,5.18575,3.6801666666666666,1.136785,2.6660866666666667,3.7907075,3.7601489999999997,1.5746875,5.8113,5.72345,2.3077033333333334,3.142056666666667,30.491473857482386,3.2451933333333334,1.7199666666666669,4.087066666666667,1.6042266666666667,2.58824,2.9483466666666662,3.3735,1.971525,2.707575,1.8097725,3.921691,3.3666,2.512975,1.5515875,2.2162800000000002,2.87125,0.3704663636363636,1.106605,2.861523333333333,1.662096,3.456365,1.5746875,2.0132733333333332,25.581262944444443,5.30445,3.677385,3.631825,2.57359,2.57835,2.70363,2.3506575,3.58036,4.909468,5.24465,1.5916679999999999,1.8374020000000002,2.16064,2.4549399999999997,3.6951733333333334,5.2336,4.744135,4.448715,0.19020127659574468,4.91029,4.780169166666666,3.79663,9.51679,1.1083825,1.1083825,3.0002066666666667,2.85872,5.39895,1.8568966666666666,0.9832455555555555,4.60402,1.935265,4.08749,4.052115,3.375555,3.996015,3.94838,5.3933,2.91612,0.76123,3.34571,2.207098333333333,4.16086,7.82523,4.316355,1.9101433333333333,1.9101433333333333,6.681925,4.72969,4.27091,5.56415,2.0535466666666666,5.044231666666667,1.3314000000000001,1.5152233333333334,3.020466666666667,2.2200333333333333,3.05081,2.7247833333333333,3.832065,4.3373099999999996,4.019955,5.49425,2.2395475,2.4831075,1.9926975,2.4199875,2.3941975,2.090485,2.151955,4.9150025,1.860285,3.446705714285714,2.40457,2.9628433333333333,2.604836666666667,1.77675,1.4436714285714287,0.9333500000000001,2.290783333333333,3.968033333333333,0.72245,4.45678,1.8591125,5.836765833333333,1.964585,1.5844975,1.674515,1.5691633333333332,5.695963888888889,1.8616160000000002,3.0732433333333335,3.7383333333333333,1.2224125,1.8150175,4.905975333333334,3.188893333333333,1.8215566666666667,3.619066666666667,2.7157766666666667,2.9198633333333333,1.2523946428571429,0.263565,0.263565,0.263565,0.263565,0.263565,3.70231,2.8004433333333334,2.5948,3.3906666666666667,1.4130916666666666,2.727126666666667,2.9485166666666665,2.40081,3.352055,2.854145,1.6871133333333335,2.88011,3.1478800000000002,2.0670275,1.998825,3.70779,2.7087133333333333,3.813133333333333,4.90507,2.53796,2.6562366666666666,2.5111933333333334,10.879135833333333,4.63572,4.31307,4.9551,4.16989,2.882486666666667,5.11685,4.138775,4.26729,5.767691666666666,3.80151,3.040125,2.3562825,3.45609,4.915073714285715,3.21287,17.63495794047619,1.0328975,4.34973,0.8659466666666666,1.18311125,2.9492,4.65383,4.11318,4.481835,1.5688250000000001,2.38397,4.18539,2.2245166666666667,4.51833,3.042872857142857,2.7472833333333333,0.61387,2.9190400000000003,4.7514,2.28492,2.3611225,2.18298,19.81764666666667,1.2540200000000001,1.370825,2.62268,0.2984603846153846,1.75175,2.8900400000000004,1.97227,2.987886666666667,2.716175,7.405519166666666,1.960925,2.4776175,2.2079725,2.12681,1.6247416666666668,3.163266666666667,3.28174,4.031835,3.1969166666666666,1.9188075,2.6038983333333334,2.990285,4.87591,0.41788166666666665,3.691333333333333,3.08874,3.073445,1.950455,3.6892475,3.53457,1.6267933333333333,2.3316466666666664,2.2507366666666666,1.4906566666666665,1.7258066666666665,3.512115,3.27625,0.7856566666666667,3.346855,4.75659,4.07975,2.266024,2.266024,3.0457633333333334,4.338375,3.17043,3.2679,2.30417,0.8268472727272727,4.11236,3.623195,6.0494,3.9579,2.38426,2.38426,1.3381025,3.497395,5.0326,4.02724,4.25104,2.9727766666666664,2.3615333333333335,4.303415,3.22024,4.27219,2.934153333333333,2.1516433333333334,4.236533333333334,3.0053900000000002,2.68454,1.9289033333333334,3.458865,2.688475,1.60389,3.64537,3.204695,4.11294,3.689133333333333,4.736055,4.416255,6.36529625,3.739655,2.03768,4.7018,2.65475,7.215714999999999,2.39023,1.2245666666666668,4.364135,3.855,4.696335,0.5234364285714286,0.8457666666666667,3.536825,3.65108,2.0084807575757577,4.202485,2.81191,3.05295,8.815422,1.8180219999999998,1.369948,3.52711,2.70908,3.33815,4.701785,6.468181666666666,3.156251666666667,2.0974366666666664,2.970083333333333,1.8781666666666668,3.215856666666667,8.259142701149425,0.7961533333333333,1.08757,4.75925,0.4269786666666667,1.5814275,2.1167525,2.942975,3.0748,2.791725,4.377845,2.2799025,12.462,5.376917499999999,2.472485,2.472485,4.20366,0.84536,4.9506966666666665,3.95812,4.09473,5.608473333333333,3.58166,4.552055,1.3417633333333334,2.908725,2.88764,2.618335,3.049885,2.574275,3.521775,3.62178,3.689175,3.168645,2.914165,3.1001,4.067185,4.328975,2.9972833333333333,3.2024166666666667,4.6938475,4.237385,18.301529404761904,11.608014523809523,3.293452857142857,0.6907141666666666,1.4491142857142858,4.39805,3.641715,3.033273717948718,1.813585,0.8340822222222222,0.6367658333333334,0.6666385714285715,2.03644,1.5798780000000001,5.205433333333333,3.3544,0.71992,3.33752,2.37584,1.709115,1.601108,6.2006033333333335,1.5736240000000001,4.37059,2.87021,2.8641666666666663,2.574685,2.62064,2.5528733333333333,0.7652654545454546,3.01745,3.1125966666666667,3.9288213333333335,2.9412933333333338,7.491910833333334,3.632055,3.344825,2.37176,3.30577,6.234315,2.09271,2.3971,2.560125,1.6133475,2.5939,2.15451,2.652875,0.9381970000000001,1.35583,0.99288,2.89546,4.367015,6.2754,5.4305,3.06432,2.26857,2.924825,3.2587733333333335,7.52992,1.2837033333333332,0.36799875,2.86854,2.119,1.4901820000000001,3.3547830000000003,1.213162,1.7575863333333333,3.8956516666666667,2.8756246666666665,1.2363533333333334,1.86416,4.128985,3.651465,4.56898,3.81783,1.9948375,4.9606,3.871515,0.7373861538461538,4.631175,3.91926,4.158809583333333,3.161156666666667,2.75124,1.355738,1.0704525,3.507045,2.74251,3.38328,3.78792,2.760645,2.7203366666666664,3.26996,3.670495,4.297465,2.559455,2.663935,4.26921,5.52255,0.586925,4.58412,1.8085375,3.505085,4.119233333333333,1.6021425,3.147915,2.194405,2.113305,2.58315,2.3066275000000003,1.7630033333333335,5.16905,3.689525,1.1996385714285716,7.12176,1.1094533333333334,3.538665,1.82515,4.845655,3.97784,3.3216300000000003,3.10485,4.1477,8.59183,2.984235,3.668825,3.72921,3.644405,1.7413125,8.22115,3.718945,4.1773,1.831715,4.19575,2.76915,1.03247125,2.0899799999999997,4.12946,2.180565,4.121515,5.025625,4.1475675,4.579695,2.1425025,5.2384,3.883275,3.382233333333333,2.5114366666666665,1.579606,4.51355,6.20985,4.437285,4.63572,2.997945,2.2674375,4.02236,3.345155,1.1391195054945056,4.22909,4.847453333333333,3.835695,2.798905,3.59126,0.6006271428571429,0.6006271428571429,4.86316,4.106525,4.19336,2.22151,3.74465,5.9985,0.8378140000000001,3.9551,4.71287,4.38974,4.795505,4.49807,1.8401375,2.988565,2.1011225,4.360985,0.66139375,4.025495,4.055305,2.6614,2.825863333333333,4.09168,2.2703,3.300735,60.08031498917749,3.323595,2.4508533333333333,1.734535,3.27669,3.92362,0.78693125,0.994015,2.1602075,2.1602075,1.346544,3.1861,2.307395,3.7121700000000004,7.66023,2.8422699999999996,1.2846514285714286,1.3175866666666667,2.7381499999999996,4.12069,0.909616,1.846115,1.1798899999999999,1.8648125,4.114965,3.972135,3.077925,20.72616548917749,3.53541,3.89417,3.2784,2.2373233333333333,2.991885,3.486205,2.39696,5.539,1.403354,3.911485,3.257587876984127,5.799922777777778,1.99488,2.70431,2.107645,3.95963,2.47055,2.1539,2.0619166666666664,3.555986111111111,3.365285,3.53448,3.91334,4.084715,2.4650825,2.75076,2.89387,2.836705,2.963336111111111,2.26732,1.947345,3.489985,1.1639716666666666,3.739875,4.44302,2.650605,4.743215,4.74605,5.168006666666667,1.8882133333333335,2.61778,2.891435,2.74757,4.11272,3.47102,4.45172,0.7260128571428571,3.810765333333334,2.79615,3.7528,2.344695,1.7938479999999999,4.575621666666667,1.1690333333333334,2.7136,4.410575,1.16423,3.6877,3.31867,4.59669,6.357547500000001,2.14205,2.830075,2.6113033333333333,3.9003666666666668,2.8732366666666667,2.649014666666667,3.18298,2.4126866666666666,2.5404833333333334,1.4809033333333332,2.265185,2.265185,1.9426833333333333,2.1807866666666667,1.6899266666666666,2.6061833333333335,3.76863,5.35195,4.41564,1.63093,4.399455,4.020135,3.51402,4.22171,2.024215,1.62392,4.696185,1.9162,4.314098333333334,3.77345,3.63487,2.4736466666666668,3.93749,3.23085,3.042225,3.52485,0.14679285714285714,2.1576066666666667,7.67517,1.526628,3.450685,3.179315,1.0022114285714285,1.1017416666666666,1.8967475,3.86031,3.03965,7.2319700000000005,3.675965,3.74605,2.9978,2.62046,3.533565,3.560305,3.940195,3.46403,2.858546666666667,5.38055,4.062415,4.079365,2.595826666666667,1.975815,3.56156,4.49684,2.81736,2.882155,2.143555,2.53216,4.316315,3.88365,2.66195,4.55392,5.17755,2.67976,3.91026,3.755985,3.59509,4.49865,3.43492,3.1841,5.86155,4.71815,4.958395,5.1896,4.54446,5.2434825,4.406705,3.72865,1.2908,6.66735,2.578005,4.09762,4.17072,3.88345,3.1237333333333335,1.8815566666666665,2.27017,2.46318,0.9710279999999999,3.5010666666666665,3.7717333333333336,3.08588,1.9719566666666666,3.75265,4.19367,2.45213,0.5532033333333334,4.51439,4.55219,5.0957,4.470235,3.30331,4.66362,5.03255,5.0215,1.3661444444444444,0.9215307692307693,2.7649066666666666,5.28915,5.93835,0.483880625,2.87262,2.497593333333333,3.36852,4.50361,3.8482333333333334,2.01507,5.4919,4.03207,4.37284,3.028035,6.345,5.1001,6.903965,0.5782200000000001,4.077275,0.8603780000000001,2.299575,4.025366666666667,3.0916,1.4048033333333334,2.29904,4.26591,3.455895,4.394255,2.3369133333333334,1.8867075,3.296265,4.54903,4.00173,3.858915,1.6180879999999997,1.193930142857143,6.18455,2.14966,7.8127525,4.33363,3.614795,2.1229925,1.67233,4.320405,4.526865,1.91261,2.41837,2.5318,2.1576066666666667,6.691144166666667,3.1062466666666664,2.7987266666666666,4.223620833333333,3.652455,2.0250666666666666,3.368555,6.9018049999999995,4.535815,5.1492,0.5207863636363637,3.36833,3.94741,4.469775714285714,3.585915,4.17703,3.077875,2.6598,3.210045,2.93454,3.511674666666666,2.05232,5.457375,4.651485,5.03995,3.89282,3.453525,3.2989924999999998,2.2831675,1.2605225,0.96169,2.877415,2.454745,1.106935,2.6808099999999997,5.0611,4.834495,3.745375,4.229585,16.80998369047619,4.150895,4.494005,4.05828,0.7287716666666667,4.94293,4.56092,3.9275,4.99726,4.96332,2.86622,3.616515,3.33504,1.486988,3.200705,4.787885,3.3397666666666663,1.498704,3.69408,4.948965,3.802285,4.846245,4.85112,5.6373,3.93859,2.6195066666666666,4.18637,4.29477,2.52123,3.0984166666666666,2.93764,1.6149216666666666,4.88776,2.6943525,2.0309833333333334,3.985195,2.290615,4.349345,4.099824999999999,2.242355,2.64228,4.32011,3.71472,4.536645,4.380835,4.908265,4.594274,3.32132,5.43835,2.6574416666666663,3.401085,3.751715,1.544144,4.48798,0.9953566666666666,4.40594,2.994225,0.8817928571428572,3.774815,2.141055,6.261340000000001,2.4628217142857145,2.4628217142857145,2.4628217142857145,0.763265,1.0669983333333333,1.821425,3.4292,5.86816,3.2321205555555554,1.92892,2.2001025,1.7635333333333334,3.86999,2.37253,0.4141646153846154,1.73399,2.2854075,2.867785,1.914065,2.369835,2.373225,2.0945225,3.842965,2.9298,2.94634,2.85536,2.011765,6.58323,2.23667,4.31877,3.915225,6.576076666666666,1.6488666666666667,3.620525,3.95003,3.64375,3.959975,2.775245,1.9581725,3.843895,5.799448666666667,2.04193,3.479035,3.201855,2.011505,4.77106,4.207515,2.655283333333333,2.249995,3.5844424999999998,5.490206428571429,6.0926,3.25773,2.43581,2.66611,3.047315,2.859125,3.753595,1.37111,2.7734,4.52655,0.7680375,3.705355,3.931135,3.79391,3.1551,2.43215,3.30654,2.07304,4.56925,8.074736666666666,4.1361,3.376355,3.130425,1.00655,4.65368,2.315175,4.32128,5.631577500000001,4.035395,4.22194,10.8575,4.828415,3.980735,1.50425,0.6641258333333333,2.87906,3.82653,3.57736,3.65491,2.2258066666666667,2.5650766666666667,2.196826666666667,1.0843583333333333,1.0843583333333333,2.04761,2.4261066666666666,1.9046233333333333,2.184973333333333,3.14223,2.547903333333333,2.39962,2.8454200000000003,1.5075833333333335,2.1052166666666667,2.1720200000000003,1.93502,1.4618025,2.5288933333333334,0.7346083333333334,9.708565416666666,0.7346083333333334,3.1355533333333336,2.033245,1.9485366666666666,4.34897,4.286925,4.10398,4.75685,2.2236766666666665,3.0056766666666666,3.1759286666666666,1.9707966666666668,3.10587,2.9087933333333336,2.473266666666667,2.6920466666666667,1.6717966666666666,5.29105,6.302447142857143,3.3196433333333335,3.3714,3.31497,2.6304966666666667,2.5695799999999998,1.1100771428571428,3.5462333333333333,3.424633333333333,3.8095,6.04525,4.287825,2.8720533333333336,3.5092666666666665,2.836593333333333,4.144078888888888,4.30766,2.64038,3.39799,3.2412466666666666,2.9219033333333333,4.802375,3.281026666666667,3.5573,6.071581666666667,1.97588,2.1652733333333334,1.4932033333333334,1.4793866666666666,4.578713333333333,3.356486666666667,2.4493633333333333,2.09984,2.0253733333333335,4.456595,3.61968,2.68193,3.4285333333333337,3.18904,3.4116999999999997,3.436166666666667,3.290366666666667,2.9662400000000004,0.5830375,3.6832999999999996,2.5288,2.5634,3.2894,4.48043,4.16906,5.3657,2.59009,3.975111666666667,1.1345066666666666,3.0385500000000003,3.0385500000000003,4.824545,2.99344,3.875085,3.8729,1.742195,3.12976,3.737935,1.1225114285714286,3.6079874999999997,3.066534857142857,2.219662,0.34548199999999996,4.063415,3.225405,6.749725,2.967455,6.0692,3.403865,3.814545,3.706485,1.6033675,3.176975,3.9301,3.08379,3.2519533333333333,2.9824699999999997,5.6276475,2.1171075,1.0042975,2.0657666666666668,1.5150966666666665,5.23955,2.3209966666666664,2.44497,1.5592725,4.36958,3.971175,4.060145,0.498562,4.109165,3.77561,2.34143,2.38591,2.4914,3.0981591666666666,4.058813333333333,1.68182,0.6624842105263158,0.7768785714285714,3.427433333333333,3.784,6.141848333333334,4.3963,4.14745,5.18265,1.3078385714285716,4.119233333333333,2.3163233333333335,0.9804725,5.4333,6.1628,2.353645,4.79614,4.090995,6.68004,3.9277333333333337,6.347963333333333,3.64071,2.381995,5.90035,10.079915564102564,2.4929799999999998,0.6068870000000001,3.080685,4.024075,2.12377,6.3849,4.07345,3.426545,2.73987,2.73987,5.8669,3.325295,3.99661,5.00595,3.709141,2.457022,1.152255,4.760305,2.695205,5.19398625,3.50544,4.32888,2.724595,1.8971725,4.580205,5.0022,3.550466666666667,3.96612,4.38481,27.054486904761905,1.8074075,2.57795,2.4045575,1.7156666666666667,2.5922,1.0398485714285715,2.76202,3.052906666666667,3.22105,2.8969733333333334,0.6268900000000001,2.9465800000000004,3.770945,2.86072,3.0549866666666667,3.567355,5.5799075,4.708945,3.96204,3.65361,3.775425,3.74416,3.5508666666666664,1.708085,1.0094916666666667,1.4143999999999999,2.3543933333333333,1.55005,3.0090033333333337,2.445253333333333,2.350356666666667,2.090456666666667,2.721535,2.19627,1.78548,3.10712,4.242455,3.677775,3.980235,1.386144,3.5847333333333338,2.5376933333333334,3.84653,2.236806666666667,2.550195,2.550695,1.4646666666666668,4.089525,6.536908333333333,2.84333,3.69747,4.03852,2.645325,3.425984166666667,3.4971,3.53616,4.627145,0.34748180180180177,0.34748180180180177,4.951155,5.07615,3.11705,2.83981,5.40015,4.352655,0.6463615384615384,4.71621,4.36041,3.62799,6.3744,4.703795,7.46656,14.190058333333333,12.512961025641026,4.469465,4.25882,2.4868833333333336,0.6183376923076923,2.53188,4.20935,1.295305,4.67135,3.541533333333333,2.7414199999999997,2.10874,1.9318266666666668,4.81255,5.02345,8.686519523809524,5.0622,4.143025,7.334938787878787,3.187875,3.15742,1.39474,5.453345833333334,1.9286125,2.4373133333333334,2.7506633333333332,0.2553021875,3.063995,3.497465,4.655340833333334,0.8077120000000001,1.1690883333333333,4.159345,0.59099,0.59099,3.1199804166666665,3.2287766666666666,3.3156166666666667,3.74019,4.342715,5.4135,3.70493,4.329425,2.972175,3.1333566666666663,2.6927266666666667,0.9226833333333334,2.82816,2.8353,2.88663,7.1381,2.799245,9.563625,3.191725,6.07715,3.022575,2.230075,2.40807,2.734475,1.831535,2.367845,1.92674,3.489675,2.411995,4.0230725,2.862995,4.054195,4.054195,2.78954,2.78954,8.795597666666668,2.4767066666666664,0.8008219999999999,2.59137,2.5620499999999997,2.5805466666666668,4.0230725,1.94588,1.91723,1.5169739999999998,3.8095,3.808215,1.77953,4.35553,4.072815,5.748558888888889,6.401213333333333,2.1512033333333336,4.152535,5.7259,3.610465,2.81888,2.332053333333333,3.22824,3.2487051515151513,4.271715,5.2195358333333335,7.3095333333333325,3.50830625,2.90031,1.15266,4.349925,3.914043333333333,3.77486,3.7499633333333335,4.230295,2.393775,2.439583333333333,6.0375,2.84051,1.30126,5.33424,3.735205,2.6593466666666665,5.15065,2.6593466666666665,2.860715,3.517535,5.06345,1.048592857142857,4.057771111111111,4.350885,3.391375,1.2747933333333334,1.7067225,3.784015,3.887425,2.43022,6.233981666666667,3.923575,3.25919,4.033215,4.5438,1.33107,3.86325,2.536035,3.60408,3.93109,3.541915,4.66311,3.011515,3.78003,4.795115,1.9069083333333332,1.8872025,3.2152100000000003,3.7586999999999997,3.5277999999999996,2.75131,3.5422999999999996,3.09756,5.6864,3.57348,3.590215,2.92846,1.92989,3.665233333333333,2.0120400000000003,3.09727,3.22671,2.906465,0.66139375,2.11586,1.8342266666666667,3.04059,1.8586079999999998,3.368451,4.12412,1.2329940000000001,3.0890825,4.59162,0.835898,1.4581466666666667,3.033005,3.77744,3.541895,1.99404,1.77961,3.44825,2.4907508333333332,1.6811033333333334,2.873345,1.90763,1.184036,1.3661775,6.46455,3.251745,2.217885,2.445845,2.40934,3.78457,0.87287,0.35182642857142854,0.7752885714285714,4.600385,1.8766354285714286,4.923285,2.082255,1.6667017142857143,2.926144857142857,1.2594431428571429,1.0697337142857144,0.745978,0.5835071428571429,2.541741666666667,6.33315,3.130015,3.60884,0.3268757142857143,3.643205,17.850598333333334,3.19683,6.944750842074592,1.06557375,1.06557375,1.06557375,1.06557375,5.661546666666666,4.003175,4.63597,2.1744733333333333,3.10054,4.29905,5.81425,3.38576,3.61157,4.218015,4.00839,3.938095,3.8096946666666667,4.07992,5.1422,4.12668,4.437815,3.286255,4.182405,2.6134733333333333,3.564795,3.3991,3.45613,3.58176,4.318215,3.156503333333333,2.3274775,2.4684,4.106795,1.2916928571428572,3.76301,2.509586666666667,3.359928,4.1475675,4.45766,3.097925,2.8836,4.227385,3.15071,3.14839,5.0936,4.956835,3.267755,3.43338,1.7316500000000001,1.7316500000000001,2.130815,4.6606,3.89343,5.309963,5.0996,3.509878333333333,6.55075,4.505195,2.04127,9.372634999999999,5.29585,6.73898,4.459505,2.728213333333333,3.022195,0.2549268965517241,0.88075125,3.767782,3.52729,4.63777,2.834623333333333,5.693,4.906745,0.5767942857142857,2.761405,0.506413,1.749952857142857,3.211235,1.91859,3.85978,3.642195,3.46215,3.47589,3.47825,3.68185,3.48923,3.60285,3.464675,2.257525,1.749952857142857,2.79098,2.1059,3.61706,2.28855,3.93764,3.489635,1.7413125,4.469895,2.818455,1.2866433333333334,4.71684,4.63057,4.218035,2.8248466666666663,2.916453333333333,4.046815,2.0771433333333333,1.407942,2.4686866666666667,2.6344966666666667,2.63158,2.274296666666667,4.825815,3.097005,5.018845833333334,3.9328342857142857,4.68233,3.8787,1.690008,5.0957,4.21203,5.46735,4.16301,6.37334,1.7724525,4.92065,3.621645,3.238285,1.6646175,1.88446,3.909545,4.437635,2.5497833333333335,2.7250883333333333,3.25904,3.25904,2.6468333333333334,3.1081066666666666,3.40853,3.98695,3.725675,0.7328707692307692,3.26933,4.519,5.002855277777778,3.070485,3.045445,1.80903,2.799635,3.563095,2.184115,4.692165,2.915815,4.871485,1.8795633333333335,1.0307727272727272,6.22479,3.71222,3.22898,3.1086666666666667,1.7714020000000001,30.24685661904762,3.92707,3.40379,5.9704,4.476355,0.8723166666666667,7.206165,1.837015,5.6423,1.429685,4.22754,5.086415000000001,3.64995,3.15557,2.1985625,3.2750333333333335,4.693215,1.9740925,2.748276666666667,3.61322,2.941855,2.58242,6.0199,2.252585,6.0882,1.125815,4.32361,3.522115,3.80415,4.940815,3.02235,2.50657,4.142125,4.56825,3.7491725000000002,3.7491725000000002,5.89695,1.8654725,4.419915,6.44411,3.56475,4.082905,3.27723,5.3627,3.60282,4.254095,1.3958325,2.18252,4.399115,4.310445,5.5144,4.346325,2.2154,9.41709,3.373405,3.624315,1.6359857142857144,3.490115,2.3357433333333333,2.68162,2.0606962500000003,1.2343733333333333,2.62973,0.9219214285714286,1.06905,1.06905,1.06905,1.9611933333333333,0.55927625,3.89274,1.1187466666666668,2.6308266666666666,0.819155,1.6091,2.76328,1.9380266666666666,0.767055,1.6956433333333332,1.50012,2.40327,1.631244,1.631244,1.71282,1.6797833333333332,0.901324,1.82202,1.58753,1.2958566666666667,2.516335,1.957055,5.7718,1.8324575,5.79415,17.424714583333333,6.454355,3.429395,3.588198333333333,3.419333333333333,2.667816666666667,2.6902500000000003,2.9523499999999996,0.6957091666666666,0.956339,0.956339,0.67230625,2.27988,3.72933,3.373715,1.522122,5.01605,3.743595,2.370205,3.897195,4.81554,3.75492,4.22132,3.476566666666667,3.12508,3.46723,5.7391,3.082356666666667,4.98523,0.536512,0.536512,2.16673,2.713125,4.727365,3.39955,3.83374,4.782685,7.62191,7.63489,3.72187,2.404785,4.706705,3.556815,2.4806066666666666,2.318675,3.73584,1.3981466666666666,3.855665,2.41131,1.509485,3.4693,3.77559,2.097675,5.2195358333333335,1.5670375,3.5526666666666666,3.324435,1.0650742857142856,3.561,2.7560000000000002,4.252035,1.115885,1.752575,2.2677275,2.1088775,1.6427575,2.3450875,1.8913375,1.9465175,4.1445,4.39584,2.438315,1.83472,1.4931266666666667,3.4913666666666665,2.0768866666666668,2.663425,4.70192,7.29015,2.38457,3.020855,3.4819,3.588255,2.49762,5.19795,3.96153,2.88348,1.2963875,4.60917,2.270935,3.23295,2.500005,3.6096,5.1592,5.54085,2.1242033333333334,2.7411433333333335,2.7981366666666667,3.4497666666666666,2.017116666666667,1.482506,5.30625,3.4301333333333335,2.251692727272727,3.0610999999999997,2.8933166666666668,2.193286666666667,3.265083333333333,3.0911500000000003,3.3411000000000004,5.38815,4.27727,3.0176266666666667,4.780315,3.16552,2.41471,3.540195,3.713545,3.96921,6.160785000000001,1.82398,3.87881,2.47098,3.9307,3.64242,0.5775825,2.35081,2.30319,3.313765,2.683315,2.246765,2.84045,0.611633,2.74997,4.345305,2.4715375,4.077445,2.3080066666666665,3.868385,1.933895,4.563495,4.27885,2.03548,2.80722,6.9961199999999995,3.77246,4.5155,4.933615,6.785150227272727,4.36818,4.27535,2.18043,4.62072,3.14195,1.9432633333333333,1.9655875,2.0971466666666667,1.0192157142857143,2.4052599999999997,2.3900900000000003,2.5937366666666666,3.3372333333333333,1.78189,3.230605,1.91409,4.307805,5.0168975,1.04352875,1.8261333333333332,2.5346033333333335,2.8343933333333333,1.9873833333333335,1.0867766666666667,5.46339,2.1333525,2.6618833333333334,2.57657,2.5707299999999997,2.7973,3.17626,2.2146399999999997,2.8028,2.18458,3.91136,3.428715,4.0156,3.0193366666666663,2.97507,0.681217,1.81506,2.08029,1.9718133333333334,2.5666066666666665,1.141325,2.6445133333333333,2.936583333333333,3.89346,2.0692366666666664,3.25464,3.06274,5.0201,3.213145,0.6154633333333334,1.968424,2.7083100000000004,3.1310066666666665,0.7671890909090909,2.77042,3.332714,3.480566666666667,2.803096666666667,3.3811258333333334,3.81361,3.8259666666666665,3.115083333333333,1.849575,5.54475,5.0965,4.896105,5.6092,5.62775,1.8399733333333332,3.451555,3.6623,3.3904333333333336,2.82234,2.76768,3.8002333333333334,3.502333333333333,2.80931,13.648961666666667,4.349225,1.0987500000000001,2.7226966666666663,1.54855,3.18338,3.2368566666666667,2.2089433333333335,5.871758333333333,6.676962166666667,2.4078766666666667,0.826598,4.205595,3.510533333333333,2.95925,4.662075,5.2725,5.67385,4.70209,3.50214,1.936385,6.469655,1.15266,6.520685,4.560685,2.2417000000000002,4.24086,7.328256666666666,5.9051,2.2734799999999997,1.4520366666666666,2.0838725,6.409196666666666,1.5746875,2.9801566666666663,2.579785,4.244716111111111,5.7801,4.360715,6.50285,3.362555,5.3426,3.71858,7.95104,4.7508,5.9156,2.40482,2.536575,11.167851666666667,3.3337,2.625385,2.4764833333333334,1.5718233333333334,2.1391633333333333,3.849833333333333,0.7004075,1.022364,1.0893742857142856,3.11412,6.906616666666667,2.972784,1.5895166666666667,4.820055,3.58838,0.59172,4.646395,4.263755,4.89821,3.54245,3.189525,2.7348233333333334,4.27585,9.984875,1.8178325,3.8618125,4.207795,4.27585,3.840665,0.84655,3.648066666666667,3.9776666666666665,1.7100099999999998,2.47428,2.3511833333333336,2.513133333333333,2.1933466666666668,2.22223,2.544765,5.800180714285714,5.28535,3.511245,5.116208333333334,1.8311333333333335,2.38978,4.836615,4.197415,4.392735,4.24167,4.585865,4.61062,1.7316500000000001,3.842875,7.506869999999999,1.37694,1.7713766666666666,2.4942933333333333,2.5900833333333333,2.771523333333333,4.83052,0.7768785714285714,2.46914,3.439115,6.17535,4.66327,2.2450266666666665,2.9029333333333334,2.00475,0.551303125,2.57365,2.973695,7.676130000000001,4.45569,4.41708,0.8735160000000001,4.664166666666667,9.110724916666667,10.416066666666666,3.3255,1.20466625,3.66068,3.49918,2.51329,5.4069780000000005,4.74672,3.85086,2.0216325,3.6209333333333333,2.2186666666666666,2.5366833333333334,0.78918,0.3755406666666667,2.909145,3.44801,1.9780086666666667,3.42077,3.0399833333333333,4.776025,5.44405,1.585888,2.9604666666666666,2.3574625,2.3574625,2.368085,3.16151,6.43445,2.754073333333333,2.373083333333333,3.3488666666666664,3.527233333333333,4.28526,4.39811,4.348915,4.211845,4.15115,4.161945,7.0143,7.943910000000001,2.00246,2.26918,2.8979633333333332,0.9329783333333334,0.66088,4.359085,2.212265,4.961355,2.9119200000000003,2.971633333333333,1.780264,1.48873,3.83038,4.421075,4.47059,2.0497,1.3503066666666665,2.64404,1.8279866666666666,2.6730033333333334,1.1224914285714287,1.1224914285714287,2.7011233333333333,4.70301,3.12139,3.21625,3.542055,2.30485,20.029955696969697,3.975555,5.1296425,4.38238,3.997175,3.853675,3.850905,5.7109,6.2669,0.7949099999999999,0.7949099999999999,0.7949099999999999,2.7344233333333334,1.6927,3.3817333333333335,4.113925,3.95533,3.23953,4.083045,4.54101,0.7836911111111111,2.1725266666666667,2.2008966666666665,5.9925033333333335,3.25969,4.082753333333333,5.00155,1.6021425,2.0137633333333333,2.34617,0.51752,0.901616,1.82405,1.984915,2.95804,12.884741666666667,2.6368466666666666,5.3432,0.7649357142857143,9.50002,5.49855,3.70895,3.867945,2.723325,5.5118,2.723325,2.80363,3.29822,3.8105,3.189685,3.876175,4.196415,3.336605,5.7506,6.954116000000001,1.8103300000000002,2.52731,2.848825,26.460599468468466,1.522288,6.45755,4.049598,3.956025,4.36418,4.38179,2.553375,2.52246,2.3106,6.53655,7.15415,4.70959,4.694155,4.26067,1.90315,2.40536,4.22329,0.47898999999999997,0.47898999999999997,0.47898999999999997,0.47898999999999997,4.13343,3.2453233333333333,0.9731133333333334,1.7906033333333333,1.1470333333333333,4.408395,2.4997633333333336,2.3305275,7.105395,3.2314900000000004,0.1718941379310345,20.362971666666667,4.7830449999999995,1.7965779999999998,1.2945877857142856,2.14128,1.96434,2.277095,4.65691,3.41921,3.326055,4.344155,2.1301099999999997,7.33137,2.71901,1.96445,3.83894,5.66085,8.564680000000001,4.236195,0.3028878048780488,3.53265,3.874545,2.6976366666666665,2.033565,3.075253333333333,1.6608366666666667,1.6608366666666667,4.07239,5.7334675,11.381960833333334,9.078275,0.6187222222222223,2.50684,3.76697,3.279295,4.606855,3.46409,1.410802,1.410802,3.114995,3.681325,3.1365499999999997,3.663845,4.35838,5.3837,6.8218250000000005,2.1755400000000003,4.69347,4.263285,2.646365,3.0588933333333332,3.0782966666666667,4.66097,4.3053,5.3766,4.13978,4.544125,3.87598,4.32015,4.224235,5.1794,2.626376666666667,3.0439900000000004,1.10532,4.41954,4.104125,3.65818,1.6455380000000002,1.90651,3.5031,2.7846766666666665,2.47112,4.412396666666667,1.8409000000000002,1.92281,1.8612966666666668,1.9983066666666665,2.49803,2.08943,3.8553333333333337,3.0594966666666665,4.175966666666667,3.31319,2.1478466666666667,2.6401333333333334,2.02792,3.26662,2.0202066666666667,38.046591916666664,2.102307818181818,2.102307818181818,2.466763333333333,2.372993333333333,2.1146433333333334,1.6164133333333333,2.90564,1.8291466666666667,0.7807615384615385,5.1002,6.8800725,4.10917,3.977755,5.55055,1.89355,4.339295,1.854524,5.08145,5.1062,5.8292,3.969065,1.708085,3.97703,4.414225,4.56941,4.754805,5.2017,3.485285,2.89648,3.3491,2.5602266666666664,2.034625,1.98405,4.425535,2.4230199999999997,3.8422549999999998,3.8422549999999998,2.252056666666667,1.5935433333333335,2.20399,2.6165766666666666,2.082336666666667,5.14387,2.61922,1.18086,1.18086,2.0644266666666664,1.9999900000000002,2.4158,2.65925,2.4019766666666666,2.43989,2.2556966666666667,2.3351445,3.1139245,1.5617524999999999,0.77878,61.94382977083333,2.3859199999999996,3.4464333333333332,2.447524,0.89222,3.9759773333333333,1.5663,1.5663,3.28435,2.9771900000000002,0.7829725,3.0663533333333333,5.712223333333334,3.399566666666667,2.3716133333333334,2.8528266666666666,2.146243333333333,2.6367266666666667,0.281179375,2.6002266666666665,0.73896,2.5631233333333334,1.086098,1.086098,3.393133333333333,2.16868,2.9416700000000002,1.9429960000000002,3.5177666666666667,1.9429960000000002,2.15044,2.41487,3.169473333333333,1.356686,1.356686,2.9716400000000003,1.4207833333333333,3.3157666666666668,2.141783333333333,4.31008,3.760935,12.1335285,7.04234,3.16272,2.437085,3.814765,5.27385,5.50395,2.6917383333333333,3.830315,3.571985,2.321536666666667,4.11832,3.2515199999999997,2.8289299999999997,4.84717,2.1651000000000002,1.0271042857142858,3.8309745833333335,2.9388133333333335,3.034925,0.8001857142857143,2.86332,3.36406,4.129775,4.37764,6.5846,2.2245166666666667,1.856684,4.307925,4.35891,2.32472,2.430070833333333,1.9677233333333335,2.0960726666666667,0.8678060000000001,4.85194,3.980515,3.484935,3.78044,3.10383,4.84242,5.0187,2.6718333333333333,1.69689,0.505404,14.178815166666666,0.51551,0.51551,0.51551,3.0776133333333333,3.936666666666667,0.51551,6.536223333333334,4.256473333333334,0.733758,0.733758,3.3892666666666664,3.22228,3.072565,4.25857,5.07495,4.1211255,2.107475,4.931990666666667,3.131095,3.550542083333333,4.92146,2.78654775,2.478665,2.3615975,2.792575,1.6880475,3.3397516666666665,3.039,2.195075,2.0163575,2.0432925,1.76715,1.6091075,2.6415,1.0396577777777778,2.523775,0.5881057142857143,5.19865,1.6935525,0.6753041666666667,2.06285,7.857371666666667,2.726415,2.0213010000000002,3.290575,7.30892,2.54357,4.01125,3.074075,5.88334,3.41702,3.747555,3.81193,3.733025,2.961793333333333,4.28597,1.1400657142857142,4.236015,2.44568,2.5291200000000003,2.442515,2.20601,1.9383320000000002,1.24239625,5.63125,0.9471,4.86146,5.4244,4.99729,5.3026,3.6413333333333333,2.3296666666666668,1.911724,2.743396666666667,2.9449566666666667,2.47967,3.9209,2.7201,4.61513,1.685972,40.288357658730156,4.812315,2.5052600000000003,2.352203333333333,2.7551433333333333,1.5080533333333335,5.945205,3.92841,2.4337166666666668,3.2253866666666666,2.33931,1.60793,5.19125,0.7720642857142856,4.428185714285714,1.3333114285714287,3.4759666666666664,3.2630866666666667,2.7968233333333337,1.386475,4.324181333333334,1.7008459999999999,1.7008459999999999,2.2820199999999997,2.8391166666666665,3.4307,3.3689666666666667,1.4219966666666668,2.9002033333333332,2.7674133333333333,6.340254333333333,2.8239566666666662,4.076726666666667,1.5141016666666667,1.4440233333333332,3.009066666666667,0.892882,5.0529625,3.2880333333333334,2.88271,3.4537333333333335,2.89512,2.7748166666666667,3.2477933333333335,1.6687733333333332,2.40934,2.504983333333333,3.3548333333333336,2.4864866666666665,3.7497666666666665,1.9589999999999999,0.6229726666666667,9.957552948717948,2.8614200000000003,5.1855,4.9846,2.7683199999999997,3.0550766666666664,1.29456,2.1657966666666666,2.150265,1.29456,4.09082,0.476514375,0.476514375,1.2143575,1.2143575,0.80262,0.80262,2.633275,3.05259,2.429885,1.50609,1.94624,3.518065,2.98823,4.234165,5.39895,1.7961580000000001,4.2597,2.307845,4.630345213675214,1.715475,1.715475,2.280675,1.734912,3.594848333333333,2.0177225,4.56258,1.5688250000000001,2.5605,0.5308007692307692,1.1650514285714286,2.0509925,2.3357675,1.868775,1.3461325,4.033245,4.325005,2.1699566666666668,2.37745,1.35748,0.695035,2.4185166666666666,3.36802,2.872263333333333,4.681915,5.0004,5.09505,3.852705,6.6643,1.47922,6.17783,1.837935,4.46633,4.505105,5.789532,3.280836666666667,2.30315,1.8253025,1.981068,1.981068,2.543125,2.543125,4.37834,5.7785,0.930194,3.72364,3.316685,3.439575,2.524836666666667,1.3974725,2.824263333333333,4.195355,4.15934,1.654632,6.5829,5.30255,1.7244400000000002,1.3136375,4.24548,4.01278,3.58869,3.66022,4.014615,0.6472942857142857,3.8696333333333333,3.32784,2.69957,2.8526966666666667,2.148756666666667,3.6179333333333332,1.4995857142857143,1.4995857142857143,1.4995857142857143,3.008426666666667,3.1454466666666665,3.3897333333333335,3.397637595238095,2.1918125,1.2026814285714287,3.0472333333333332,3.080246666666667,1.3518128571428571,2.71712,2.66261,1.262392857142857,2.449663333333333,2.88062,2.949586666666667,2.7477933333333335,2.4903,1.986885,3.228923333333333,4.528685333333334,3.935505,0.9603569999999999,1.483778,0.554323,3.5817,8.993835,2.815853333333333,3.227955,3.3498,4.368040833333334,1.9514575,7.734748333333333,6.8323599999999995,2.7183499999999996,2.0768885714285714,3.92638,4.68589,1.5839539999999999,1.233436,1.366946,1.93484,10.513763333333333,2.59083,2.972236666666667,2.8247116666666665,3.899655,2.2025366666666666,1.106565,6.0448,1.0369833333333334,3.444893846153846,4.91061,3.30749,3.3155033333333335,3.119665,4.743845,1.17025,2.0767975,1.9384346666666668,1.9384346666666668,3.81734,5.69525,9.64298,4.29253,3.393405,4.805305,1.773295,2.2758725,4.623105,3.771205,3.90582,1.5151733333333333,2.89219,3.51883,3.96242,2.4569275,4.06286,3.553665,3.72339,4.07144,3.635005,3.96168,5.1514,3.2324800000000002,2.50768,4.222055,3.258085,3.81926,2.022135,2.501475,2.622375,5.92735,2.3967,3.2321071590909094,1.6883175,2.48715,3.388945,2.1989825,2.109245,0.67882,0.67882,1.7452325,3.4051572727272728,4.0516,2.8756866666666667,4.31523,3.0859433333333337,2.499230285714286,0.959775,2.86981,1.5322725,4.026855,4.116725,0.9232912500000001,1.8677275,3.871305,2.9702425000000003,1.6150925,1.6208166666666666,4.943188571428571,0.9006599999999999,2.88658,3.20408,2.77836,2.459355,2.786828,2.11303,1.0212175,2.946105,3.04106,3.39292,1.4852533333333333,1.4948866666666667,1.810075,4.389105,2.122495,4.564005,4.56752,4.50276,6.184,5.05495,4.23245,6.096075000000001,4.020168095238096,0.7909390909090909,3.1214,4.21436,3.775845,0.47610454545454545,0.935698,3.136435,3.996295,4.77353,3.989095,3.2493250000000002,2.749845,4.420775,1.7237120000000001,2.579225,4.398125,4.238755,3.189765,2.760765,3.360365,4.500315,2.71711,5.2233225,0.9319660000000001,2.969235,2.74563,4.386625,4.402575,4.49349,2.2645600000000004,2.61042,3.052905,1.90615,5.10455,3.39567,1.3635485714285716,2.623465,3.8388675,1.50458,6.128275,1.8601759999999998,2.544826666666667,13.54126132388664,2.998606666666667,1.64299,1.6371650000000002,2.1237533333333336,5.5963683333333325,1.6180879999999997,5.913207666666667,0.6704492307692308,3.3683666666666667,4.13443,7.65893,2.622743333333333,2.833683333333333,2.833683333333333,4.70386,4.066985,3.512405,3.310375,4.65286,5.05475,2.471825,3.1463699999999997,4.35547,1.2148283333333334,2.21251,4.57295,3.656225,3.125775,2.1619366666666666,3.724125,3.3646,5.940966666666666,6.3621125,0.641302,4.01514,3.213665,3.7922333333333333,4.372445,3.85637,3.822875,1.400666,4.87309,2.427955,2.80776,4.169565,4.375215,4.488725,0.9252041428571429,2.5894366666666664,9.240638666666666,1.5509333333333333,2.211924155844156,2.3497925,3.856355,3.523275,3.323095,0.6643563636363636,2.3496875,1.701925,2.2468425,4.034515,5.341797333333334,2.884894,8.644885,2.380596666666667,2.65234,1.05148,4.311245,5.1185,2.1282,5.767691666666666,2.580635,3.20091,5.3971,4.34942,4.828505,2.32756,1.64965,1.64965,2.659885,3.31994,4.741678333333334,1.640865,5.701216666666666,1.3922566666666667,3.642965,1.2344983333333335,8.6320175,4.738945,2.70014,4.20482,3.74191,3.92962,1.1167783333333332,1.981355,3.3706,3.09596,3.2603833333333334,3.8021333333333334,3.765085,2.82404,3.210405,3.31381,1.6664675,2.5289800000000002,1.93035,2.9124166666666667,1.89611,4.999173333333333,3.2420666666666667,1.8561866666666667,2.7369033333333337,3.275115,3.097335,6.46125,6.105,2.98985,3.588835,2.96211,2.983685,2.698215,1.2106566666666667,1.036552,6.336635,3.12147,5.94615,4.86783,6.48065,2.977815,2.838086666666667,6.5098,2.536285,0.4058938888888889,5.7277,3.078845,3.745415,3.5066333333333333,1.4756857142857143,3.967385,1.06426,4.50265,0.87310625,1.3561666666666667,2.995573333333333,2.4164933333333334,2.780373571428572,3.42151,4.54742,6.137873333333333,6.137873333333333,4.82393,4.82393,4.691345,2.9877933333333337,4.47718,0.9617625,5.7064,3.610665,3.544366666666667,3.872055,3.89642,4.86715,1.9417375,4.894225,3.1774620000000002,2.847825,4.259535,2.537825,4.82106,5.1153,3.57054,3.28868,5.15725,4.182285,6.0078,3.060375,2.6210033333333334,5.7169,4.133085,2.85237,5.999063333333334,1.6086566666666666,2.1466775,4.586865,4.320705,4.98474,3.83257,1.9825575000000002,1.9825575000000002,12.91419075793651,12.0175,5.0128,3.18278,2.9329520512820517,4.26679,4.6209,2.57315,3.3338666666666668,3.10204,4.347066666666667,3.7216,5.06685,2.261475,8.26099,2.38275,1.98847,5.7613,2.30292,5.0563,4.57758,4.728825,0.7264022222222223,3.301605,3.64014,1.034964,3.09391,3.822679166666667,1.4277760000000002,1.91408,2.78904,2.6413933333333333,2.0671133333333334,3.1631366666666665,2.0899233333333336,0.4000307142857143,2.5402766666666667,2.9406133333333333,2.7867866666666665,3.1576833333333334,1.46654,3.0796733333333335,6.99661,4.304745,2.273136666666667,2.0408866666666667,2.608633333333333,3.74151,2.52447,3.4529835,18.38335,5.6855,3.435125,4.616865,3.762475,5.307918333333333,1.5221833333333334,5.96595,1.4567816666666669,4.763935,4.44377,5.5453,4.867045,0.9705142631578948,6.64525,2.48742,4.821415,2.837385,4.292865,3.39659,2.840805,2.1742733333333333,1.53711,1.837765,4.37153,4.65184,2.355085,1.608695,2.953343333333333,4.06756,2.8516966666666668,6.4149,2.1661025,3.627145,4.731415,3.7911,3.764815,3.2579,4.090015,4.85386,4.02581,2.49021,2.49021,5.928577777777778,2.0592266666666665,2.4810033333333332,3.922185,1.7881399999999998,7.43788,3.7036,3.980103333333333,4.337366666666667,4.262165,1.846512,4.080945,5.6376,4.013745,1.9984125,3.571345,3.35236,1.13835,1.25548,1.2389333333333334,0.7048549999999999,1.7576,0.9093566666666667,4.605205,1.0044944444444444,2.593253333333333,1.6954833333333335,1.6459325,1.0043433333333334,1.93943,2.308295,1.5048075,3.0198699999999996,2.6617833333333336,4.416851666666666,1.4294616666666666,2.5956,3.12439,2.990816666666667,2.3145866666666666,4.31042,4.58715,4.914172499999999,19.541472666666667,2.6812133333333334,2.20955,0.6376146153846154,0.623041,4.06567,1.9448940000000001,4.007615,5.37365,6.992987333333334,3.789005,3.523135,4.09612,3.1137,3.182593333333333,3.1950566666666664,3.8721,3.216506666666667,6.5193,3.637615,0.93309,1.124905,5.3616,3.1570633333333333,2.5356166666666664,2.151616666666667,2.29759,5.7139,4.827245,2.303165,2.492523333333333,3.363175,4.65425,8.324603333333334,4.925387708333333,4.10691,4.071805,5.28095,4.693575,4.04122,4.624175,3.844855,5.09365,2.196565,5.71545,1.6025428571428573,5.0019,0.72528,4.74701,5.42255,6.1524,6.10075,4.52699,5.8307,5.7325,6.1702375,1.8890500000000001,1.4961714285714287,5.5388,3.63777,5.931051666666667,5.0209,5.4156933333333335,5.04965,6.33125,1.2875114285714286,4.31369,5.18865,4.1361,4.68767,5.48985,2.6431,4.05318,2.927475,4.19925,0.9923000000000001,1.5930799999999998,1.390076,4.839835,4.069115,3.233025,1.9276933333333333,2.963673333333333,1.6792866666666668,2.1498399999999998,0.4099258333333333,3.5996,1.606704,2.2965383333333333,2.86365,2.41911,3.1135,2.67205,2.4217775,10.181953333333334,3.765,1.787891153846154,3.385035,0.9454636363636364,4.5293575,1.2025175,1.6512325,1.869155,1.04662875,5.599580666666666,1.1673205555555555,1.1673205555555555,1.1673205555555555,3.0076,1.897948,4.93149,2.98395,1.359315,1.6048075,1.927905,1.3404125,1.860864,5.310218333333333,0.8306977777777778,4.18985,4.318255,3.11969,0.9824914285714286,2.1819305,1.753475,1.753475,1.4678566666666668,3.6593033333333334,4.21589,4.98244,5.70215,4.267555,5.3141,2.8146400000000003,1.94301,2.880855,5.13975,3.26235,3.8472,1.03793,3.9140525,5.5097,1.90351,4.140975,3.13648,4.686005,4.489725,2.682905,6.98985,6.38775,3.786725,4.50866,4.246475,3.239325,8.09889,3.97201,5.25746,3.42455,2.68129,5.34345,2.6940500000000003,5.67205,4.583775,2.7445166666666663,3.222315,3.887505,1.5121633333333333,10.579075,3.848025,3.15895,15.265987777777779,4.310725,1.8191966666666666,2.8481133333333335,2.132435,2.34449,3.311155,2.5698006944444445,2.680995,2.739575,2.97402,4.16234,5.577075,1.3218466666666666,1.99006,4.334745,4.12872,4.944675,2.3450175,0.5861913333333334,4.54112,4.31367,1.976755,1.4178166666666667,4.56182,4.11191,0.81394,3.746325,12.614711666666667,1.284406857142857,0.38551785714285713,3.4675,4.369196666666666,1.0895966666666665,3.50319,4.058915,6.055813333333333,1.1969283333333334,3.21345,3.741175,3.346505,4.507055,4.27537,3.894965,8.82012,3.26311,4.48772,5.3323,15.944655,3.3899299999999997,2.848225,1.17177,2.238585,1.2271325,2.02066,1.31737,2.0277125,1.65043,2.008655,2.44453,2.31999,2.11902,5.445,4.2998,5.8379,3.17471,5.525608333333333,2.705133333333333,5.2591,3.491766666666667,1.2837375,3.53714,2.022815,2.7957893333333335,4.604695,4.52379,4.9294,4.320195,3.457266666666667,3.7931333333333335,2.5296600000000002,3.672215,3.911535,2.374785,1.69183,3.552566666666667,4.152405,3.75268,2.4804566666666665,12.694933333333333,0.7157866666666667,2.67813,4.45018,2.4921189999999998,1.0438779999999999,2.713585,7.348836666666667,7.172303333333334,4.313535,3.82491,4.17025,2.11228,2.229595,2.9082866666666667,2.1414566666666666,3.76273,5.0828,4.2166,0.49233733333333335,6.32835,3.2213933333333333,3.29265,3.5925333333333334,5.97465,8.73080425,4.3033529999999995,1.00680625,2.1887025,2.38557,3.75385,2.56742,4.24098,4.25531,3.3859666666666666,2.605163333333333,4.10096,4.161775,3.81388,4.314,1.6274766666666667,4.147715,5.4015,5.6538,3.0256900000000004,1.93144,2.2228233333333334,15.196711634032635,0.5699609090909091,1.44605,1.44605,2.449456666666667,5.077463333333334,3.813195,4.58819,3.07684,2.86478,4.92957,3.1123766666666666,4.119145,3.1123766666666666,3.544395,1.9143266666666667,1.6206966666666667,5.83905,2.6923,4.684625,3.208715,2.685045,6.532103333333334,2.072243333333333,4.82924,5.0903,3.511685,3.225515,4.725205,2.01396,5.0944,3.6777025000000005,7.003375,5.6084508333333325,2.860425,3.8733,3.845985,2.10452,2.53296,3.5993666666666666,0.4134078571428571,3.1306966666666667,9.950386666666667,3.973955,3.421865,5.13025,3.1230325,3.05991,1.30101,4.05896,5.4022,3.2921,2.1932,4.212005,3.32476,4.31381,4.458915,2.89415,2.89415,4.08125,2.71733,2.590146136363636,1.903295,4.73674,4.072095,0.9741357142857143,3.514225,4.867235,2.782923333333333,6.7966225,7.64255,1.47701,4.34296,4.780335,6.654484999999999,0.67271,7.698043333333334,3.3728999999999996,0.5957318181818182,5.315,5.229,4.70675,4.278625,4.66624,4.337085,4.960145,3.78276,3.92064,4.136965,5.37875,4.76904,4.657735,3.83853,2.43945,3.93005,2.78134,1.00623,4.41936,2.433765,1.67911,4.404985,4.31926,5.66095,1.0222128571428573,4.976744999999999,2.914625,2.704493333333333,1.6148625,1.37123,11.412621666666666,2.3297466666666664,2.820603333333333,1.9564199999999998,3.7880409523809524,5.300113333333334,6.002675,2.682586666666667,1.9667899999999998,2.15032,2.15032,2.15032,1.41809,3.81954,3.86081,3.4561,4.544305,8.05791,4.00949,1.1570360000000002,2.47211,3.14295,2.24655,1.863134,4.18499,2.541815,1.3417466666666666,3.04547,5.394138571428572,5.992055000000001,4.054905,4.178495,3.00313,4.982255,4.65361,5.7124033333333335,1.86579,1.86579,3.874795,3.855865,2.5510676666666665,2.5510676666666665,3.737665,1.1790514285714286,4.88677,3.28409,4.074195,3.80109,3.95998,3.2508033333333333,1.0055242857142856,4.32543,5.005,4.317735,4.557725,4.93537,4.858605,4.300795,1.9366325,1.4938875,3.467065,3.76147,3.23751,4.39331,2.25181,2.7124625,5.25255,2.93742,5.02085,7.14445,2.2383145833333336,3.083095,4.410431904761905,5.009437500000001,1.69354,2.098817857142857,1.083025,2.098817857142857,1.5033733333333332,1.5033733333333332,1.561538,4.952505,3.194095,3.388525,2.477485,3.84246,1.5139500000000001,5.25775,3.22284,1.6977625,2.8934433333333334,3.45735,3.345555,6.250543,4.740285,1.207014,0.9943383333333333,3.51807,7.39757,2.38902,3.569,3.17053,3.17053,2.326315,3.50013,3.15363,1.382957012987013,3.07677,3.128115,2.69655,4.216485,3.8777725,1.601975,3.535505,4.35068,4.76707,5.09345,4.23516,1.687215,2.25931,1.2844733333333334,2.2497025,3.266095,1.85979,4.42719,3.2366233333333336,3.46824,4.10434,5.13525,1.198605,0.9550560000000001,1.8148666666666669,1.37761,1.1991555555555555,4.94303,4.028495,1.10532,0.2925391304347826,0.2925391304347826,0.2925391304347826,3.692285,5.711069999999999,4.529105,5.3196,4.970785,5.11805,4.540015,4.47727,2.883255,3.55261,1.64279,4.8766,3.972855,3.9067,4.331715,4.14543,0.6876981818181819,0.6876981818181819,0.6876981818181819,0.6876981818181819,0.993936,0.993936,3.90403,3.929865,3.668885,2.754185,2.67948,5.9797,4.80688,5.55285,4.31857,3.0960566666666662,2.5495366666666666,10.197,1.569988,1.569988,3.90783,5.41495,3.2519533333333333,0.476514375,0.476514375,0.476514375,0.476514375,0.476514375,0.476514375,4.650741666666667,4.846565,3.617585,4.44919,2.913654166666667,2.913654166666667,2.731785,3.24848,2.4953233333333333,2.778955,3.465035,7.006076,1.403066,4.48434,3.37378,3.886685,9.092825,2.1662733333333333,2.684445,0.9690728571428571,2.01092,4.99328,2.88688,0.8609675,2.827053333333333,3.93349,5.51045,2.595625,4.6051569444444445,0.8379811111111111,1.9549899999999998,4.975855,4.705935,2.771949,2.43467,2.074263333333333,1.3605066666666668,6.973038333333334,3.3598,1.9275966666666668,3.234685,2.6954883333333335,3.45466,3.701305,2.7039066666666667,3.146433333333333,5.872,1.4430416666666668,4.356055,5.26585,3.368575,3.93896,1.9758466666666665,2.996265,3.779735,3.724555,2.904685,4.96079,4.65141,2.7390933333333334,1.8985,2.8814566666666668,2.793723333333333,2.881866666666667,0.7767172727272726,2.17038,8.05691,0.46536625,3.1065833333333335,1.6032966666666668,2.5951733333333333,3.3055299999999996,2.7049633333333336,1.222811111111111,1.7490960000000002,2.701086666666667,2.10404,3.698605,2.0073,2.6345300000000003,1.4146066666666668,3.2517780000000003,1.98967,1.1391257142857143,2.9036500000000003,2.0697475,2.357153333333333,2.6781900000000003,3.1213233333333332,3.0664599999999997,3.4552333333333336,3.05637,2.869476666666667,3.217306666666667,2.76928,2.717475,1.6245966666666665,2.2503333333333333,2.485063333333333,1.63074,3.0788433333333334,3.870455714285714,2.8739966666666668,2.35727,2.8814533333333334,3.6346333333333334,4.658495833333333,2.9399766666666665,1.935097142857143,1.935097142857143,2.3563775,1.082525,2.4797175,3.3466766666666667,4.5952416666666664,2.820325,2.0317525,2.1085575,2.073345,3.80417,3.140875,4.03669,3.63541,1.7851325,2.36703,4.09557,1.1589880000000001,1.1589880000000001,2.06424,0.6448692307692308,2.3866746153846154,1.60857,1.60857,2.708743333333333,2.4815066666666667,3.003363333333333,2.5944766666666665,1.968925,5.7421500000000005,3.9412000000000003,3.9412000000000003,3.71836,3.11067,2.28177,3.06562,2.54491,2.77865,5.1784275,0.47719666666666666,0.7040230000000001,4.188195,2.58157,2.932275,6.524078333333334,3.544975,1.627064,5.117276666666667,4.85049,4.296205,4.325325,5.4133,5.0163,13.200918999999999,3.3578,1.5617066666666668,2.922005,3.92728,5.19495,2.893765,3.989735,4.15609,3.685425,4.02912,2.7859433333333334,2.95351,2.6393166666666668,2.4321633333333335,2.4321633333333335,4.00849,2.750565,3.299765,3.426265,2.3161,2.530645,2.16347,1.932225,2.0005775,2.1057725,1.7179225,3.4077985,3.52031,2.76921,6.95753,3.26192,2.2541800000000003,1.8403666666666665,3.446925,3.881335,3.56095,2.9538585416666665,3.375175,3.16106,4.30635,3.63109,3.92804,3.990485,3.578048,3.63679,0.6568616666666667,0.6568616666666667,0.6568616666666667,3.49743,2.358235,5.5784,2.67184,3.815335,7.118267407407409,2.8709633333333335,0.3527480769230769,5.27525,0.759097,4.3241128571428575,1.98873,3.8111,1.968415,4.02546,5.131085,4.277485,3.78536,2.7716499999999997,2.8420233333333336,1.4875216666666666,2.4820933333333333,0.40135736842105263,0.5325529411764706,2.61404,1.3973533333333332,1.91724,3.86555,2.61385,4.93091,2.7569,3.0019983333333338,3.54665,5.28509,1.74718,0.9182271428571429,2.46094,3.688952,1.181482987012987,4.83821,3.96726,3.738065,2.7615866666666666,4.192515,2.6143199999999998,2.4796066666666667,2.2972433333333333,2.544475,2.5165866666666665,2.1806075,3.3501333333333334,2.43846,5.558351999999999,2.0433025,2.06241,2.14419,5.026172,3.242204,3.242204,2.4506799999999997,3.985685,2.37644,3.35468,2.98907,0.5593346666666666,4.38878,1.8709425,11.685635555555557,7.19691,2.908035,3.125285,3.40717,5.19938,2.81714,3.40368,0.23255733333333334,2.00886,3.6041000000000003,0.8417666666666667,3.89255,1.3041628571428572,4.8882,3.31355,2.975925,3.25247,3.479275,2.26519,4.576725,3.758215,3.40474,6.60387,4.371385,2.9248833333333333,3.0887766666666665,1.626236,1.995595,4.17567,3.466675,3.763185,2.408015,3.56203,1.41643,2.988075,2.6023,3.6035,10.335621666666666,3.730745,5.4635316666666665,3.933035,4.10468,1.0193955555555556,4.589214,4.657065,2.66009,2.6677433333333336,2.65959,3.3269466666666667,2.3896166666666665,1.7551666666666668,1.90467,3.580245,1.56327,2.5969366666666667,5.1310080000000005,2.6799999999999997,1.115049642857143,1.115049642857143,3.66945,3.0482259999999997,3.0482259999999997,3.545033333333333,2.8233,3.10795,3.8508,3.4111666666666665,2.708693333333333,2.379086666666667,2.4750466666666666,3.14756,2.260405,2.44122,1.670084,5.799754,8.641389,0.5475961538461539,0.5475961538461539,0.5475961538461539,0.6176177447552448,0.6176177447552448,0.5475961538461539,2.94665,2.982696666666667,4.171036666666667,1.3992633333333335,1.7905175,3.292262,2.4929633333333334,3.10793,2.3491566666666666,2.9263066666666666,3.316126666666667,6.832935,3.131206666666667,2.4009899999999997,2.9641266666666666,4.780725,2.28014,3.4206,6.16197,2.3863600000000003,3.391966666666667,1.3713616666666668,1.3713616666666668,2.8105433333333334,0.5078963157894737,2.345146666666667,2.6685933333333334,2.8001966666666664,3.202123333333333,2.2708733333333333,1.6018433333333333,2.688423333333333,2.7936533333333333,2.25196,4.429225,2.3890013333333333,3.456265,2.48935,3.359725,0.49246100000000004,7.117983333333333,3.003024,3.003024,7.688306944444444,1.7949933333333332,1.87216,3.23766,4.41966,2.3893766666666667,1.9730100000000002,2.705496666666667,1.41189,3.472933333333333,1.69668,2.9997325000000004,1.4177775,0.280845,0.280845,4.946225,3.92063,3.69929,2.760006666666667,2.656295,3.3695,1.3013133333333333,5.48905,3.94891,3.03905,1.8407075,1.1586725,2.3929,3.23766,2.639465,2.126165,5.716995000000001,3.74244,4.385775,3.73404,2.4771,0.6891725000000001,7.3631325,2.034075,1.5498575,3.530025,3.779645,2.23075,1.7481499999999999,4.573645,4.201855,3.069433333333333,3.10648,4.110385,4.185945,3.6900333333333335,2.5295240000000003,2.5295240000000003,3.9686,4.77106,5.5007,6.175913333333333,2.608893333333333,3.921795,1.5277999999999998,2.70315,5.522315333333333,3.77937,1.864482,5.4091,3.468905,3.48435,1.945915,4.13882,4.46678,4.51563,4.59151,2.445326666666667,2.4845433333333333,3.7088666666666668,2.04471,2.633425,2.60844,2.4673700000000003,0.689194,2.25488,2.742736666666667,1.760729,4.30638,4.44678,4.56712,3.87621,3.366145,4.9600575000000005,12.032865000000001,4.660145,3.770075,4.346055,3.860135,4.711265,2.277766666666667,3.1437333333333335,3.5145999999999997,1.18125875,2.848235,2.932475,4.58885,5.5294,4.29903,3.503966666666667,3.08977,2.3050466666666667,4.2703999999999995,3.9774125000000002,3.7441999999999998,3.9774125000000002,2.1577845,2.31056,2.412428333333333,2.1189875,2.5085966666666666,1.8119233333333333,0.7901416666666666,1.312485,1.9997766666666665,2.02527,1.6580000000000001,1.4110066666666665,1.76495,2.72612,1.538312,3.0233899999999996,1.29885,1.5486533333333332,2.718445,3.1803899999999996,2.55081,2.004586666666667,2.408326666666667,3.254,2.31893,2.9716733333333334,3.21515,2.48897,3.123693333333333,2.992465,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,0.15675064516129034,5.0619,2.97412,1.0274342857142857,3.10501,2.6287233333333333,2.8570333333333333,3.66042,3.16212,4.79965,3.4339226666666667,1.454946,3.1085266666666667,1.8363833333333333,0.97859125,0.9372450000000001,1.5988499999999999,0.9142283333333333,0.766765,1.330844,3.24733,1.59818,1.6006683333333334,1.8926222222222222,2.3565183333333333,1.3777483333333331,1.2662433333333334,1.5353233333333334,0.9341849999999999,1.2722616666666666,0.7478616666666666,0.9323460000000001,3.435725,3.57158,4.275415,4.555295,4.10086,3.1426833333333337,4.82531,3.5808,2.01507,3.413025,1.9771725,3.59093,1.9913066666666666,0.8245436363636363,4.181755,4.891755,2.1025233333333335,1.2905275,3.060345,3.36511,3.6593033333333334,3.0013666666666663,2.79567,0.9042975,2.297505,5.04521,3.753395,2.806635,1.54376,3.78302,1.9026075,0.5768718181818181,4.43138,4.710145,4.293585,2.278295,1.443454,3.11992,4.51268,2.6453666666666664,2.5627766666666667,2.4777,2.680213333333333,2.7797133333333335,2.8636666666666666,2.9247566666666667,1.283175,2.514775,2.56747,5.0455,4.403605,3.68029,4.67714,16.143660180555557,4.3459725,4.515557333333334,2.722265,4.24167,5.1497,1.5646280000000001,2.010545,2.3856433333333333,5.470185,3.26806,3.15799,6.17415,2.3856433333333333,3.927645,1.988315,2.052563333333333,2.972773333333333,2.6606533333333333,1.2426133333333333,4.284505,3.365815,2.45814,4.2866,2.4037866666666665,3.293676666666667,3.77895,3.45963,4.252525,3.81607,2.70184,3.55904,2.71168,2.48767,1.25763,1.25763,3.1428933333333333,2.16494,0.3873214285714286,4.972349,0.9203239999999999,2.809835,3.612095,0.5657033333333333,4.45651,8.331484999999999,1.8872025,3.681035,3.59029,2.9371566666666666,3.406105,2.349445,3.001175,3.589175,4.21072,3.075615,3.968,0.9887166666666666,11.759109333333335,2.76117,2.943845,6.0577,2.6235,3.92926,7.638011666666666,4.10985,3.76628,3.49428,4.24286,5.5273475,1.6385225,2.64272,4.70299,3.8467333333333333,1.867286,3.892075,3.64053,3.689595,4.00946,3.982595,3.708225,2.4923533333333334,4.450985,3.767595,5.0758,3.262155,2.2098833333333334,2.4334633333333335,2.08646,3.0607933333333333,1.3305733333333334,3.8173666666666666,0.876890909090909,3.229573333333333,3.1581799999999998,2.6700199999999996,1.550885,4.261095,3.894965,4.25031,1.8943525,4.59594,3.82737,0.7521807179487179,0.3522053846153846,4.20139,5.3746,0.9134925,0.3522053846153846,4.35757,0.7521807179487179,0.7521807179487179,0.3522053846153846,5.829868333333334,2.4920433333333336,2.419216666666667,5.52165,2.994045,3.12767,0.8068166666666667,3.213515,3.87705,4.716785,5.7591,2.120675,0.7031253846153847,4.1423974999999995,2.0558133333333335,1.265406,1.7702475,1.0186885714285714,2.2412566666666667,2.2267933333333336,3.293845,5.1664,2.6776866666666668,2.954553333333333,2.887723333333333,2.2866,3.06695,4.5086312500000005,1.660555,1.9746075,3.982185,5.0255,2.141770277777778,5.2973,2.578365,4.03548,4.10954,3.07642,1.2120175,3.395215,6.78565,3.82161,3.499745,5.12925,6.3957,2.407695,3.38742,4.616365,3.29429,3.453955,8.24227,3.85086,4.649935,2.38851,1.0874325,2.45518,1.87377,2.163395,1.91216,4.146345,0.6305,3.19381,3.92322,1.87629,2.841606666666667,5.20605,3.572885,2.820665,4.358455,5.22455,9.093910333333334,2.6357033333333333,2.4869600000000003,1.7068439999999998,1.3971799999999999,1.2589599999999999,1.41472,2.5798200000000002,2.63037,2.8456466666666667,4.373756346153846,1.6924025,2.205416666666667,5.04485,5.11335,3.699755,3.422625,3.073105,2.582385,2.125915,2.097375,2.211466666666667,2.076015,3.04728,3.69994,5.01015,5.07915,3.63321,5.3057212499999995,3.386655,2.574035,6.30800125,3.225075,8.745000000000001,4.897785833333334,4.897785833333334,5.689636666666667,1.73004,1.406855,1.61491,0.72683,4.9012,3.8109,3.2793799999999997,3.2793799999999997,2.09074,4.32788,4.453195,4.29474,4.05198,2.9055033333333333,2.71252,3.609135,3.0609300000000004,5.157064999999999,3.456265,0.753290909090909,4.89258,4.98484,4.02961,5.07085,3.313625,6.1518,4.065395,0.8470923076923077,5.28295,7.535606666666666,3.12481,5.75275,5.79015,3.384585,2.599865,3.795885,6.01635,2.0981125,5.7647,1.8627375,4.39449,2.596553333333333,2.2872975,0.9319660000000001,3.106775,5.77965,3.604975,3.48958,2.0153333333333334,4.71423,7.949286666666667,3.468215,4.308705,2.553815,2.59466,0.845373,4.473025,1.4695766666666668,3.4099225,3.4099225,3.70209,2.3269266666666666,2.9197066666666665,3.763715,1.66019,2.9317100000000003,3.316796666666667,3.3668333333333336,2.94598,4.12072,3.23853,1.763495,3.2944333333333335,2.144945,3.07977,1.9431,3.03513,3.0244666666666666,1.4198042857142856,1.8390366666666667,0.505075,1.2914833333333333,0.505075,0.505075,1.8390366666666667,0.505075,3.3480000000000003,2.821744,2.821744,2.7403633333333333,3.89718,3.781805,4.206095,5.248,5.2788,3.53728,3.870615,3.841125,1.866205,2.380574166666667,2.26052,0.793909090909091,5.3593,3.035603333333333,3.0902133333333333,5.64705,3.64202,5.01565,3.373635,2.59043,3.012815,3.4223,2.616983333333333,2.892253333333333,2.0156199999999997,5.16875,0.87282,3.84916,1.1083771428571427,3.36082,3.1308900000000004,2.7784566666666666,4.05013,4.06354,3.697405,4.496635,3.954445,3.647645,4.39787,4.29014,2.4056525,2.660825,3.2162966666666666,4.1689,2.717185,3.25037,2.69827,3.13481,3.3996999999999997,3.39956,4.69264,4.602585,3.95599,68.31143630824731,2.7835575,3.86224,16.518111666666666,4.008165,3.1060866666666667,2.2395,1.8776266666666668,2.67084,4.2528749999999995,2.9338466666666663,4.124915,5.55305,3.4684,7.825415,5.4098,2.62403,3.106665,3.67599,3.43626,1.886822,1.08874375,4.732955,3.11456,5.925473333333333,3.663095,2.0257033333333334,3.578785,3.463795,4.487205,3.34169,5.91118,4.40533,3.451165,3.02417,2.503875,2.89886,6.27875,2.786715,3.54773,4.360943333333333,1.240955,2.398445,5.2288825,3.06647,3.108105,3.63967,2.712035,4.032685,3.153585,3.04882,2.784245,4.40223,3.26149,2.75993,4.39798,9.85048,3.1842733333333335,4.17331,4.77771,3.31905,2.21851,4.094535625,2.2528566666666667,2.9632799999999997,3.0630059999999997,3.559565,3.345925,2.97632,3.06756,3.304135,4.01553,3.8618,4.25808,3.418815,3.11244,3.819315,2.4510183333333337,2.4510183333333337,6.865713333333334,1.658305,3.25165,3.114645,2.230135,4.623435,4.078085,3.122115,3.249925,6.01275,6.229865,0.6545727272727273,4.304185,2.371015,2.885343333333333,2.5057233333333335,5.19115,2.6913766666666668,2.048475,1.125815,2.05086696969697,4.282675,5.0804,4.11402,5.88215,5.6298,5.7178,2.526045,1.9584733333333333,3.822095,2.64072,2.8472866666666667,1.9831666666666665,1.3119116666666668,2.59945,3.3368,1.63224,2.3496900000000003,2.4063742857142856,3.372316098901099,2.88092,4.96569,3.31558,1.38434,2.706735,3.40201,5.49805,4.85577,5.6477,4.836535,1.94372,1.5448666666666666,0.6024014285714285,1.5720933333333333,3.591395,2.668545,3.68426,1.47577,2.473,2.326745,3.360555,3.56134,3.821525,3.9653083333333337,1.6441025,1.423915,1.922545,2.0899825,1.42455,2.445925,6.680173166666666,4.86339,3.6719,2.726775,6.99023,4.517805,3.172965,3.065035,3.40325,2.60714,3.9436,2.2722633333333335,7.25427,0.9237799999999999,3.04461,6.77185,3.856165,4.58897,6.24045,1.5209233333333334,2.968946666666667,2.92266,2.82043,1.43457,4.134205,8.89318,3.08275,5.11535,3.97666,3.21058,4.8152,0.9116066666666667,2.8221633333333336,5.1897,6.29006,5.1943,5.8307,3.18001,3.7552,2.58926,4.904995,4.96506,3.9220935714285714,3.9220935714285714,0.6288585714285714,3.5315666666666665,0.9545,0.7600250000000001,1.7400875,3.628633333333333,3.27103,4.667828571428571,2.629253333333333,3.0577645714285717,3.119935238095238,2.7356266666666667,3.1133866666666665,4.614033333333333,3.025173333333333,1.798735,1.798735,3.964465,3.1082066666666663,2.7266666666666666,3.46524,3.397733333333333,0.5491199999999999,3.3371333333333335,2.4302033333333335,2.3998233333333334,2.7238566666666664,2.6081,2.5912566666666668,3.2015833333333332,2.8314133333333333,0.8029299999999999,2.5646566666666666,6.2870974761904765,2.0780000000000003,7.439148666666666,1.615692,1.615692,3.42045425,3.4285,3.2013200000000004,2.732506666666667,1.7206959999999998,1.3200214285714285,3.262513333333333,3.3815666666666666,1.42941,1.5357714285714288,2.8229399999999996,2.58682,2.66369,1.73119,1.887325,2.65927,2.280025,2.907615,3.5273,1.74454,3.747325,3.052625,6.871339000000001,3.304345,1.6578075,3.028965,2.65034,2.287235,4.004,2.4329633333333334,2.625985,6.8577925,0.8398153846153846,0.7155208333333333,4.509685,1.3909340000000001,1.3909340000000001,3.893885,2.34267,4.3662,3.299025,1.3279866666666666,2.3941866666666667,2.83743,2.4292166666666666,5.13825,4.93992,2.595876666666667,2.0154366666666665,1.2678842857142858,1.2678842857142858,1.9668433333333333,3.874205,4.085233333333333,5.53365,3.0774333333333335,4.766735,4.088915,6.60025,4.23475,2.563575,2.804273333333333,2.6743366666666666,2.63257,0.7529655555555556,0.7529655555555556,0.7529655555555556,3.09476,4.08891,3.643265,0.96529,0.96529,4.798915,5.51645,6.3432,21.63744938888889,11.2728,7.92325,2.917745,5.6682,2.334975,3.98616,2.527946666666667,3.2256199999999997,3.9543,5.2684180000000005,1.9752,2.12181,6.36162,1.8506879999999999,1.8506879999999999,6.2164,3.194105,4.179135,1.9548725,4.741629833333333,4.17141,3.05368,4.77264,3.47675,1.7618666666666665,5.5541,8.81697,1.7618666666666665,1.9548725,2.1977866666666666,0.7167399999999999,0.7167399999999999,1.8097699999999999,2.3718666666666666,1.8097699999999999,4.10395,5.3597,5.9357,7.76963,1.9548725,11.602146666666666,5.89875,5.5409,2.334975,3.24745,4.16604,8.29079,3.0742683333333334,3.615985,5.7378,3.447205,4.26523,6.0918,4.19421,4.943905,4.438425,2.339775,5.4511,3.33739,4.432935,4.231925,0.795985,1.512152,2.96907,5.31765,4.59389,2.6799999999999997,2.07625,3.93179,4.830215,5.7337,5.21845,5.42285,4.493515,3.49167,4.216635,3.717255,2.1146275,4.9394124999999995,2.090335,2.709645,3.48483,1.5452833333333331,4.042825,3.9206,3.65513,3.6825166666666664,2.943755,6.448195,0.9139166666666667,3.495945,2.20944,1.2425342857142856,5.022004,1.36553,1.9263633333333334,2.5545833333333334,2.7260555,2.81568,2.813826666666667,1.7728025,0.7286845454545454,2.17487,2.6039,3.543795,0.6691561538461539,5.41373,1.56361,1.150918,3.1792133333333332,1.150918,3.957605,0.8979627272727272,4.61231,3.09581,1.93455,4.98842,4.507275,4.507275,4.679175,2.4988725,3.0872316666666664,2.8330066666666665,1.46654,3.661055,3.752585,2.02852,0.7020783333333332,6.793294487179487,2.737435,3.95311,3.945285,7.48026,2.196035,4.247025,3.764085,3.197525,3.64077,5.43645,6.38392,4.38629,4.547635,5.20795,2.92685,4.899915,4.25127,4.46701,1.0822144444444444,0.46563928571428576,3.07687,3.362133333333333,2.8073766666666664,5.21645,3.881805,4.24987,4.318335,5.24205,4.464505,4.179875,1.17836,2.273865,8.085660833333334,2.2977133333333333,1.84655,4.062719047619048,11.288503154761905,1.5440825,5.0402,6.40315,5.0736,3.5871,2.2707366666666666,3.2444566666666668,4.253335,1.0950266666666666,3.04983,3.44395,0.35115999999999997,2.03918,4.560865,4.264105,2.424335,4.08824,2.814115,5.023218333333333,1.2342266666666666,0.5288672727272727,3.7889916666666665,1.1548042857142857,1.03474375,1.03474375,1.03474375,1.03474375,1.5889583333333333,2.7807999999999997,1.8223,3.1650833333333335,5.2713,3.5074,5.088,3.762955,4.428555,3.5741,3.96092,1.4438866666666668,6.7192799999999995,2.46733,4.505735,5.2894966666666665,5.37045,5.07391,2.3806866666666666,2.3306766666666667,2.620363333333333,3.311865,1.17131,4.438901666666666,2.6350466666666668,5.0191,2.72228,2.3580533333333333,3.80194,3.44895,2.9522,2.5255,2.6416,1.4990625,0.3948477777777778,4.05276,3.559595,4.19686,3.54206,3.992545,5.6073,4.5499,0.5320976923076923,3.121826,6.998386666666667,1.9845266666666666,1.892034,5.696816666666667,5.84565,2.8024066666666667,4.52127,5.0567,4.208245,3.712805,4.233675,5.17095,5.4772,5.1314,3.63472,5.178482,1.4663119999999998,1.5341500000000001,4.250415,4.005455,3.90235,3.27012,5.40135,5.09265,3.82517,3.374855,15.352487155503672,1.251896586409845,1.0844675,1.812969318181818,0.50561625,0.4434453333333333,1.3997125,0.3198029411764706,1.367526,2.90793,1.749766,0.89235,1.0705425,0.4714,1.0705425,1.0705425,0.4714,0.8277461538461538,0.5584049999999999,2.89699,2.6024966666666667,4.33249,3.610435,2.8065599999999997,2.8063,4.05148,4.572715,4.93992,2.677825,4.184545,0.6863207142857143,2.3207473333333333,7.9940125,4.11489,6.826423333333333,2.63539,4.202095,2.287825,5.15985,5.52335,3.272685,4.34658,3.12109,1.10448,4.092005,4.43613,1.185322,1.22146,1.5493983333333334,2.4515766666666665,1.8573933333333335,5.38065,5.53285,2.28713,2.28713,3.5890730555555557,6.68932,2.1350933333333333,0.6605581818181818,0.7683242857142857,2.1801033333333333,3.22256,0.9151642857142858,0.9151642857142858,0.9151642857142858,0.3985792307692308,1.0271042857142858,2.846475,5.78865,3.715733333333333,4.005323333333333,5.1424,0.989948,3.5473,3.1194933333333332,3.8883666666666667,5.7327,2.3914033333333333,7.241816666666667,4.72258,1.042208888888889,3.747833333333333,1.9134879999999999,2.58835,2.2958433333333335,6.850263333333333,3.2429333333333332,4.39657,2.2699325,4.51209,4.503115,4.581125,0.5265477777777777,1.98764,1.42756,2.6705133333333335,3.9412633333333336,2.071826666666667,2.7786299999999997,2.389186666666667,2.528373333333333,2.5854333333333335,2.8809533333333337,2.7109400000000003,2.7297233333333337,1.37064,2.3104533333333332,1.80855,3.2057866666666666,2.65328,2.194765,1.79145,1.8758166666666665,1.71509,3.08835,2.1701966666666666,2.02658,2.1560166666666665,2.43363,2.3804233333333333,0.789441111111111,0.789441111111111,0.789441111111111,2.27997,2.1812866666666664,3.0113633333333336,2.3742966666666665,2.5265833333333334,1.9890299999999999,3.86128,3.51262,1.33596,2.5176966666666667,2.792386666666667,3.7245866666666663,1.5311000000000001,7.181103333333333,4.492495,3.157725,4.068165,3.46279,1.2970725,0.7807428571428572,2.774755,3.828835,3.7245866666666663,4.28565,4.274085,4.41001,2.92792,3.86226,4.25435,0.922445,2.6736,3.32577,5.019119166666666,4.884195,3.534355,3.06471,2.5674,2.18406,2.382286666666667,0.6534166666666666,5.29717875,2.698675,3.97302,2.7170533333333338,3.7270900000000005,3.1907599999999996,2.44721,3.0374966666666667,3.0374966666666667,2.59261,2.13752,2.641183333333333,2.0320300000000002,4.189125,1.447838,2.517945,3.812405,4.09638,3.98759,5.48725,3.629895,2.32318,2.11013,3.258025,2.96036,2.56713,5.08635,2.602915,1.0375557142857141,1.0375557142857141,4.55869,3.9150709999999997,1.018436,4.600465,1.018436,4.13551,4.73457,4.679105,3.06364,3.35025,6.281025,4.197510833333333,5.6479,0.8330785714285714,0.8330785714285714,2.1101,4.581215,1.57259,3.008625,3.4796,1.1218071428571428,3.70787,3.94485,5.558025,5.558025,1.0824383333333334,5.2169,5.1344,4.89008,6.0651,1.9955175,1.9955175,6.95785,0.9312727272727273,7.1395,2.00928,6.3601600000000005,2.704925,2.4858233333333333,3.346,2.3765,2.1923233333333334,2.170316666666667,2.995706666666667,2.493627142857143,6.333284,1.7596139999999998,4.957635,2.9718766666666667,2.6976433333333336,1.75736,2.20985,3.41024,3.48296,3.451745,2.72708,2.66686,2.203655,2.542675,1.1265800000000001,3.44636,2.437435,3.363805,2.1510185,2.1510185,3.00102,1.80582,3.716985,3.60943,4.89746,6.990898333333334,4.178085,3.4784,6.360942,2.072763333333333,3.3493822222222223,2.2807866666666667,1.508657142857143,1.6936575,4.057955,1.5101916666666666,0.50158125,0.65832,4.40565,4.565035,2.864495,0.94535,2.803895,2.9078166666666667,4.885245,1.6629079999999998,2.01126,1.158111111111111,4.563645,2.43513,4.21036,0.722936,4.024664583333333,3.855575,3.517095,4.39276,3.547405,3.852705,2.8464566666666666,5.2578,3.810075,1.7430666666666665,2.738443333333333,6.019258333333333,6.19914,1.16949,3.57625,4.43136,5.26,3.6967666666666665,3.8442000000000003,2.8292,3.19233,3.775233333333333,6.3228675,2.58682,2.5541905,3.973735,3.158315,2.355805,2.708175,8.4343,4.7487,1.8493333333333333,4.92013,4.800185,1.7935320000000001,3.85422,1.26525,1.4003414285714286,4.4229,3.679255,4.926275,2.5519700000000003,3.0762,3.488395,5.1477,3.70415,4.05996,3.043535,3.94577,3.88319,3.91542,1.1749631538461538,1.1749631538461538,7.35291,0.95049,2.2798886904761906,0.95049,0.7673266666666666,0.39348333333333335,3.047215357142857,2.49294,0.6759628571428572,2.2798886904761906,1.65508,3.079475,2.3712524999999998,3.616585,4.643455,7.025873333333333,2.24399,2.17258,1.8551,4.223585,5.5802,1.87974,1.7790475,1.0004225,2.77947,4.08002,2.70176,4.380505,6.23368,0.4120077777777778,3.757525,0.7006319999999999,2.751943333333333,2.140235,3.59981,1.2545766666666667,4.154295,4.6232425,4.024955,2.68973,3.620515,5.08686,1.69207,3.285275,0.5802669230769231,2.38874,2.493615,1.20018,2.9084733333333332,2.43753,2.5072466666666666,3.862255,8.52892,2.9035221212121214,3.698835,3.4027,7.034800000000001,5.3762550000000005,3.2258266666666664,4.33461,3.50099,5.7496,4.03014,5.1967,4.555205,4.38428,5.04895,3.9813333333333336,1.5649425,1.8902299999999999,2.3021866666666666,3.854955,2.43575,0.19703216216216216,0.19703216216216216,0.19703216216216216,30.589792404761905,0.19703216216216216,3.150432162162162,0.19703216216216216,0.19703216216216216,0.19703216216216216,3.2717121621621623,4.18538,0.19703216216216216,0.19703216216216216,0.19703216216216216,0.19703216216216216,0.19703216216216216,3.06804,5.38743,3.1282,0.19813128205128205,0.19813128205128205,4.314728666666666,4.031287333333333,3.8604366666666667,3.1004443333333334,3.8650961904761907,7.85319,11.371432881895883,6.071343666666667,7.731691333333334,7.688361160714286,2.8105433333333334,6.098087142857143,4.4194233333333335,4.36959689102564,0.19813128205128205,8.054085666666666,6.67556019047619,7.14551,2.802375,9.129992660714285,14.268703065476192,18.23308294642857,56.457490609222475,116.40933628515765,1.3713616666666668,3.391966666666667,3.3312,3.747706033462033,0.19813128205128205,1.6132139743589742,8.787712291666669,14.19849411904762,19.78399222222222,48.02631493880535,13.121047827380952,3.22285,0.23246103448275862,0.23246103448275862,4.606913333333333,2.7507266666666665,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,0.23246103448275862,5.87469,0.23246103448275862,0.23246103448275862,0.23246103448275862,2.63977,1.8402233333333333,3.287325,3.704095,4.615679166666667,5.042,1.97998,4.117975,4.24328,3.29386,1.53182,3.652185,0.9866183333333334,2.284925,2.1532533333333332,5.163896666666666,5.931710000000001,2.78671,5.627907444444444,0.5272222222222223,0.44519933333333334,2.5157166666666666,2.89735,2.988235,3.822825,3.4128333333333334,7.293883749999999,3.782475,3.58467,3.24865,3.94556,3.008895,3.25029,5.78975,1.839545,0.43925615384615385,0.8379490909090909,4.3171725,1.837395,3.67816,3.77159,4.574745,3.38513,2.411995,2.67894,0.61171,0.713305,4.29285,2.685843333333333,5.62095,3.56557,3.687456666666667,2.3783,3.04567,4.96055,3.8034,3.1138,0.7884163636363636,3.1554866666666666,4.425105,2.304035,1.01828,1.5341066666666665,3.927685,6.22005,1.91061,3.05635,3.88421,5.22965,2.80205,2.3944666666666667,2.38686,4.788055,2.48682,4.22872,0.6870385714285714,2.17545,3.42534,1.875285,6.153128333333333,2.953975,3.827545,4.241175,3.07372,2.062225,0.5012445454545454,4.52371,4.678265,6.48415,3.212615,3.755655,4.396555,2.971135,1.83054,1.2154214285714284,5.01045,2.045285,2.792015,8.13845,4.031595,5.0032,3.308045,0.6495733333333333,3.076655,1.2192685714285714,3.30553,6.0076,5.0043,5.04465,3.687485,5.2706,4.43407,1.7252025,1.7401133333333334,5.02535,3.2429400000000004,3.2255766666666665,2.450795,5.2995,4.481345,1.45364,3.4187333333333334,2.86121,2.767765,4.52979,9.36137,4.63731,1.74104,4.665915,6.5324,4.3680725,4.032955,3.743135,3.73446,4.501055,7.68501,2.3759366666666666,3.257255,3.20005,4.228035,2.799275,3.19905,4.911165,4.323905,3.525815,3.891367333333333,18.775861999999996,2.82831,2.713063333333333,3.2988199999999996,5.631373666666667,1.10327125,4.03873,2.1113341666666665,4.94057,1.3045083333333334,4.191415,4.279045,3.68308,0.98756875,4.626495,4.36099,1.75573,4.659252121212122,4.492015,1.0255057142857142,3.649335,2.061535,2.456395,1.55746,4.348965,3.870885,3.914355,3.66876,2.961126666666667,4.250105,7.892776666666666,4.263035,4.473195,4.82176,3.0387866666666667,3.92115,4.733665,6.536998,0.9860239999999999,0.9860239999999999,4.47733,4.95524,2.1643399999999997,1.3552816666666667,7.092915,4.118585,3.38928,3.77518,4.500035,4.40723,3.584565,3.88308,6.748765000000001,3.78179,4.364435,4.78244,1.4270228571428571,2.622275,4.339185,4.39001,3.50830625,0.20210277777777777,1.510995,1.9704525,2.40677,2.1438900000000003,0.9462366666666667,1.3883725,1.333145,2.1521,0.6240555555555556,1.0107871428571429,1.96727,3.957295,4.0145,2.02024,2.5139066666666667,2.8512233333333334,2.812186666666667,0.705988,0.97013875,2.888995,4.58222,4.170365,3.061195,4.49717,4.63688,4.43056,2.01588,4.350395,4.867315,4.41174,6.13499,3.613835,0.47593058823529416,5.27405,4.67053,3.92131,4.942805,3.19158,1.962558,3.69321,4.064955,2.781445,5.367655,4.40762,1.3332983333333333,5.367655,3.906215,6.998875,3.713605,1.1690333333333334,3.893735,5.0441,4.20828,2.4814166666666666,4.633255,1.4150075,1.9656775,3.19535,3.563725,0.8240611111111111,4.59284,4.848485,3.27204,4.050965,3.4785,3.0810866666666663,1.779852,1.5422525,3.192095,3.506735,3.3552666666666666,2.4336733333333336,2.2860425,1.9069083333333332,3.802505,1.3624742857142855,0.8235666666666667,5.60966,3.968835,1.465034,2.52175,2.2279766666666667,2.93517,6.049591666666666,2.2147233333333336,0.8078540000000001,2.601345,4.26511,2.11575,3.61218,5.30205,5.2185,4.56527,4.29734,4.816485,2.1803,2.3259166666666666,1.6910833333333333,2.0966666666666667,1.8833325,2.5163533333333334,2.24114,1.5908825,2.709645,3.06332,3.919285,6.54965,4.45006,4.0946,4.329535,3.993955,3.66771,5.337,0.8682425,3.1823633333333334,4.62534,1.158352,0.642286,5.2423,3.3477,2.6230266666666666,3.6188337500000003,6.2896475,5.2348,0.898655,1.1437071428571428,0.6876744444444445,4.229934999999999,2.3800066666666666,2.839983333333333,1.177962857142857,2.6030366666666667,2.6222,5.6982,4.62766,4.289165,5.14855,4.45845,1.2679016666666667,3.61382,1.6469333333333334,3.51237,3.967525,3.39701,2.5714966666666665,3.2290266666666665,2.6287833333333332,3.101685,4.181015,3.082465,2.48394,8.796265,9.9343925,4.242035,1.329337142857143,5.49775,3.940645,4.736215,4.63221,3.793505,3.83595,3.267555,4.189555,3.624594895833333,4.92851,3.85852,3.647555,4.58203,1.7615200000000002,4.800325,5.83635,4.927495,3.366975,3.290575,7.245445,0.8127566666666667,2.55981,2.83072,2.3688333333333333,5.13155,3.21595,1.2421383333333333,4.07971,3.2665966666666666,3.740575,4.622185,4.031034166666666,6.628019999999999,3.2187,2.97951,3.02083,2.8179499999999997,3.65777,2.0081533333333335,2.15772,3.041956666666667,4.06636,3.7420600000000004,1.9653925,1.516105,3.0346217857142856,3.282226,0.9330477777777778,2.636913333333333,2.636913333333333,1.423035,5.663,3.01759,3.45686,3.467505,3.14124,3.430195,3.36826,3.21965,3.062875,2.2832133333333333,0.5217153333333333,3.21139,5.6637775,3.092755,3.951625,3.151995,4.05113,3.974955,3.15845,2.6488,3.76539,3.7743,2.85771,2.96074,3.43611,2.59638,4.104875,4.01786,8.86729,3.44295,3.61799,3.014825,4.01936,4.131745,3.60759,2.410235,3.69205,2.69829,2.798485,3.003795,3.20806,3.674915,1.7009100000000001,1.7009100000000001,2.323235,2.70181,3.182045,1.569772,2.4629,3.502415,1.880728,2.89893,1.569772,4.53898,3.129945,3.9027825000000003,2.946085,3.5025,2.42496,3.1983,4.00302,3.93537,3.55434,4.461285,3.71992,4.178705,3.692045,3.198095,3.255875,2.98727,3.8632,2.6808099999999997,3.58758,5.35505,4.082345,3.71079,0.2941226086956522,3.47552,0.4594775,3.761885,3.665335,2.91005,3.46247,3.8098,5.795583333333333,3.05069,2.6218066666666666,2.3004466666666668,2.8323699999999996,0.641568,6.852790000000001,3.11464,3.353075,3.846625,2.07532,2.6173,3.251385,3.45963,6.71705,4.65794,4.93632,4.66286,4.323455,4.113675,3.79073,1.4686649999999999,1.694048,3.70928,4.463455,5.4820875,2.4137933333333335,4.74897,2.048625,3.4885333333333333,3.726625,1.8418304761904762,4.141855,4.93294,3.584633333333333,3.7117,2.90287,4.33058,4.483995,3.5123333333333338,4.370785,4.45025,4.77325,4.40108,4.56809,4.08077,3.08021,4.31028,2.536575,3.2447666666666666,3.2447666666666666,4.257155,2.52662,3.94359,2.4589,4.611715,3.2363466666666665,3.48727,2.06848,1.9776166666666668,1.1639716666666666,1.1639716666666666,1.5295999999999998,3.2790466666666664,1.7191933333333334,2.6798133333333336,3.711295,5.070754,3.3829333333333333,3.93265,6.27244,2.62285,2.78987,2.9653733333333334,1.5741433333333334,4.16474,4.055225,6.5443750000000005,1.64125,5.36145,5.4432,3.4756666666666667,3.465495,4.08826,6.61481,1.9047266666666667,2.3172275,3.99665,0.50108,3.73449,4.11486,4.26316,4.4116,2.846305,1.2610519999999998,1.651848,3.94621,3.28208,2.4177733333333333,3.771305,4.718845,5.1825,1.00661125,3.27924,4.571035,3.722705,4.54746,2.53253,5.097713333333333,3.792205,1.586842,3.67263,1.1920183333333334,2.698093333333333,6.730665,3.239455,0.6424390909090909,3.102845,4.029735,3.894475,1.9245375,1.9245375,5.002585,5.6508,2.930205,0.49624333333333337,1.9229325,4.38396,4.07417,4.593625,1.78962,2.9858499999999997,3.43203,1.3304492105263157,1.3304492105263157,1.3304492105263157,0.8698783771929824,1.3971800438596491,0.5273016666666667,1.3304492105263157,0.8698783771929824,0.33298421052631577,0.8602858771929824,0.33298421052631577,0.5368941666666667,0.5368941666666667,0.5368941666666667,0.5368941666666667,1.1068885,1.03975375,2.4175833333333334,2.331763333333333,1.0894033333333333,6.413263333333333,2.7398133333333337,6.31785,2.9076799999999996,3.84727,2.918955,3.48835,2.7393783333333332,4.604005,2.8302533333333333,3.915755,4.113505,4.791655,2.05227,3.86913,4.76861,4.107035,3.023195,4.933755,3.31387,4.499405,5.4266,5.2112,6.26305,5.27445,1.08776,4.71084,3.788015,2.913105,14.855975,4.559445,4.94023,2.6869833333333335,7.61526,4.08619,4.513155,4.56151,3.10671,1.1083825,2.61297,3.791535,4.218645,3.378705,3.368145,4.13029,2.89996,4.32582,4.55463,4.162125,6.490255,7.215443333333333,1.222877142857143,3.748425,3.95644,4.17274,3.492875,3.681755,7.17395,2.83921,2.899555,2.623435,4.009025,3.95926,4.66772,2.44867,1.779235,0.8621380000000001,4.287635,3.57151,3.627655,3.690555,3.431925,5.0191,3.99692,6.55695,6.0125,5.1057,6.649,3.85418,3.252675,3.230485,3.53152,1.814005,4.85058,6.4152,6.70625,5.764773333333333,5.764773333333333,2.53935,1.814005,2.185505,3.05849,0.7158000000000001,1.54969,0.83389,1.389055,2.62098,0.378726,2.88911,4.10527,1.389055,2.9031529999999997,11.0184025,6.6256900000000005,2.2138869999999997,0.9956200000000001,1.92465,4.55622,4.371815,5.516517142857143,1.9807325,2.234465,3.72443,3.374425,4.444,1.6372733333333331,5.20575,3.4228,2.990145,5.01975,7.130746,3.91875,2.4314875,2.7932366666666666,1.57644,3.891825,5.07081,1.742764,5.72365,4.415965,5.963775,0.49152799999999996,4.4033299999999995,4.486605,4.60046,2.602305,2.86428,7.26155,9.06535,6.4819,2.25405,2.25405,2.25405,5.2316,4.8171,6.4859,3.398545,2.76536,2.5545086842105262,4.267755,5.4837,2.6469129999999996,1.832975,2.6469129999999996,7.198853,4.807313333333333,4.898567380952381,7.57567,4.898567380952381,4.898567380952381,3.679265714285714,7.02955,5.535098,2.846888,2.846888,2.6357,7.01945,2.96081,3.574375,5.5269625,5.5269625,5.5269625,7.61672,3.6642025,3.54401,3.707225,3.5709475,0.8397625,7.417226666666667,2.6099133333333335,6.69335,3.614595,13.138934333333333,4.87328,5.460756666666667,7.03984,2.5951583333333335,3.49514,1.1275033333333333,5.460756666666667,3.430385,1.7054275,1.7054275,3.083065,5.433816666666666,1.80477,4.935876666666666,0.888763,1.4543100000000002,0.888763,1.95225,2.693533,5.605293,3.729685,1.4543100000000002,3.15391,4.925115,1.144705,3.584015,4.560485,2.24483,4.235571666666667,2.343025,3.199255,2.54367,1.04795,3.71679,2.18974,2.166985,1.9064533333333333,3.5754433333333333,3.77749,2.42316,3.46788,1.3222566666666666,1.3222566666666666,1.3222566666666666,4.11552,3.09666,3.09666,2.886255,3.96058,2.5098066666666665,1.5282575,1.5282575,2.948955,5.04972,0.833985,1.4108933333333333,2.894065,1.2194033333333332,2.6302966666666667,1.04795,1.04795,1.7182516666666667,1.04795,3.0416266666666667,0.6690716666666666,3.0416266666666667,5.831602916666666,3.3989,2.4110633333333333,1.7660895833333332,0.6053433333333333,2.3714329166666666,3.51581,2.3714329166666666,0.9602533333333333,3.48612,4.16138,4.075755,3.24544,2.71,3.801575,1.8737066666666669,0.8856815277777778,0.48813375,0.8856815277777778,0.3975477777777778,0.8856815277777778,0.8856815277777778,4.34075,4.310525,5.1267,3.557095,4.21701,4.418885,5.0869,3.418815,4.024145,1.2836128571428573,2.5892466666666665,4.584201666666667,3.91982,1.3853766666666667,2.7068,3.92131,3.85528,4.17211,3.33839,3.98294,3.384705,3.28724,4.283605,2.3538099999999997,5.9633,3.679185,3.84555,4.248794999999999,0.7283235,2.150945,3.226665,6.05521,4.003755,3.228215,3.06762,4.19358,7.1270066666666665,3.0622733333333336,3.414015,2.6714266666666666,4.075635,4.048885,5.73065,5.51945,4.221875,2.968735,5.15195,4.65787,3.427766666666667,7.4349799999999995,3.274763333333333,2.228515,2.3650100000000003,4.72879,6.2839,5.0057,4.809245,4.115695,4.74821,5.6048,0.47309,7.456905000000001,4.29229,3.65042,3.51535,4.58552,3.976525,2.965973333333333,2.50145,1.3016633333333334,0.552926923076923,1.700534,3.168343333333333,3.203855,3.700625,3.774635,4.136735,11.212769999999999,3.668045,3.931415,2.85066,0.6762533333333334,5.603203333333333,3.3276566666666665,1.7328966666666668,5.060553333333333,5.545931666666666,2.218275,9.17193,4.67029,2.124424,2.124424,2.124424,4.29276,9.1966,3.296715,2.9627,2.9627,3.51839,10.0577,0.98055625,4.635835,4.55553,4.41764,2.7248900000000003,2.24208,4.33653,3.945225,6.41995,5.971465,3.975405,2.871465,3.90411,4.309555,3.2952440000000003,1.12149,2.6386866666666666,6.2625,3.2589449999999998,4.908665,0.90709375,3.7254,2.2264433333333336,2.6007833333333332,1.7991375,1.80128,2.12954,5.26345,2.038945,4.45981,5.69205,1.7596139999999998,4.64492,3.713675,4.68315,3.04395,2.092795,2.8337,3.90925,4.103904166666666,4.103904166666666,1.168915,1.6068233333333335,2.8852733333333336,4.219969666666667,2.251692727272727,4.8682506666666665,1.760304,2.747313333333333,2.09502,1.602675,1.602675,4.6767,7.391815,1.85667,2.9935233333333335,2.1281,5.0275,3.1509,0.8534979999999999,2.876,0.8534979999999999,2.78067,3.33831,5.46865,5.5679,3.71749,4.440330833333333,5.79905,2.499855,1.92181,2.9855733333333334,2.2134066666666667,6.06205,4.981575,2.587465,3.764495,2.659735,4.25402,1.06557375,1.134248,1.8982566666666667,1.2974883333333334,2.566946666666667,2.72011,2.0928366666666665,2.78452,2.67579,4.62141,2.61841,2.2941766666666665,2.749226666666667,2.45778,2.7367566666666665,2.684343333333333,1.94106,2.4856266666666667,3.73521,3.773275,3.21036,2.781535,2.828913333333333,2.137605,1.9238825,1.1544533333333333,0.2889135,0.1367295652173913,2.07124,1.7636399999999999,0.1367295652173913,3.619076231884058,1.948655,0.1367295652173913,5.714305277777778,2.141555,6.23375,3.460365,3.2544133333333334,2.6374,2.8459766666666666,2.23687,4.43231,2.9619733333333333,3.3194133333333333,0.40506631578947366,4.053511666666667,2.6117829824561403,3.010295,1.81338,2.50385,4.2558,2.438095,7.78298,5.2152,3.10709,3.852225,6.66222,6.14182,1.8857166666666665,4.177465833333333,2.072295,2.08786,6.56648,7.85173,1.0595133333333333,2.1347025,3.77599,2.614735,2.897625,3.141225,2.86797,4.6742550000000005,2.40634,3.142755,3.58492,3.38622,7.43042,1.3525366666666667,1.96867,2.978385,3.496175,1.8333300000000001,3.518985,1.955075,3.74717,3.370675,6.48885,3.30795,9.3291825,3.49101,1.567304,1.6496033333333333,2.79971,6.09354,1.588385,1.5949733333333331,5.96494,3.458565,4.05742,2.66849,2.13708,3.06504,10.384775,4.92303,6.57722,3.563775,2.009965,2.204875,2.457205,2.88993,3.478325,1.5818649999999999,1.5753700000000002,2.5382599999999997,3.52152,1.7905175,3.37596,2.685255,4.186175,3.740325,3.620735,1.09495,2.404225,1.03831,1.339092,1.74674,3.187195,3.432225,3.874775,2.854215,3.7693,3.868045,2.898185,1.43815,3.50989,3.468905,3.01396,1.92469,3.215465,3.425935,1.481955,3.559625,1.6631600000000002,4.25934,3.97939,4.848215,2.713325,3.965925,1.74621,3.33286,5.09355,1.69955,1.0607814285714285,3.629566666666667,2.895745,4.209925,4.182115,2.80048,4.61642,4.981635,2.26141,5.37975,5.3856175,6.41615,3.91434,5.676944,4.04379,1.660755,2.731036666666667,4.66675,4.999335,2.593783333333333,7.287992,1.1848571428571428,3.3795,2.244385,1.795328,2.34821,2.83379,0.3781242857142857,2.5948066666666665,3.8107333333333333,3.485975,2.39963,3.25184,2.3458966666666665,2.37719,2.114105,9.09858,4.956175,1.98563,5.2941,2.4588329565217393,0.7521807179487179,2.7378133333333334,7.2847919999999995,1.7516639999999999,4.4911225,6.265933333333333,1.5975975,1.58907,1.4089475,4.36776,3.216475,4.34053,3.7680474999999998,2.4119333333333333,3.606815,0.848696,2.6967693333333336,4.145095,4.18096,4.851085,2.82307,5.0055,4.74335,3.996355,4.997,5.80815,4.845235,4.037165,5.5482,1.879292,1.90351,2.80437,3.334835,1.1146333333333334,3.77032,2.1086666666666667,3.422333333333333,4.391275,3.1695966666666666,2.5625766666666667,1.5279833333333332,2.872813333333333,2.7782372222222222,2.57717,2.8895166666666667,1.9949066666666668,2.2740575,2.441205,3.6921,4.32912,3.71131,4.744595,3.489935,2.23818,2.92891,4.90575,3.9326666666666665,4.632775,3.334415,2.273755,4.573248333333333,1.8085133333333332,4.079665,4.821433333333333,5.9439247619047615,3.77293,4.11932,5.30565,3.1547633333333334,3.94736,4.375005,3.42619,3.7373855,3.433295,1.3533675,3.0366,1.72235,2.27383,5.381,5.0164675,3.7373855,4.049405,3.471755,1.57259,3.70814,2.376995,2.4329633333333334,2.09803,2.80227,1.6732281818181818,1.6732281818181818,1.6732281818181818,0.5470781818181818,0.7968833333333333,2.1156,1.095035,3.55514,1.3704483333333333,3.776565,5.0102,4.242025,3.18944,4.129455,3.16365,4.98124,1.5765,3.06901,2.654695,3.40088,5.9307929999999995,4.150785,5.2351,4.10597,0.9991575,2.283645,1.27491,3.824985,3.89604,4.1948,5.026,4.40631,3.78189,4.259535,3.7986,1.811715,0.9963416666666666,5.263333333333334,1.0275522222222222,1.25101,2.8633699999999997,8.198409999999999,3.16982,3.887045,2.44842,5.7989375,1.8045425,1.0071233333333334,1.45357,3.279455,3.565425,3.929115,3.704,1.8967475,6.221495,2.846693333333333,0.88267625,4.41217,2.9420800000000003,2.732606666666667,2.4036166666666667,3.673,6.076009166666667,2.589116666666667,3.085653333333333,3.549533333333333,2.3904133333333335,2.6065566666666666,2.908533333333333,2.742845,2.00617,4.58853,4.76193,5.1822,0.9606411111111112,0.748563,3.8562666666666665,2.75367,1.054205,2.7250883333333333,3.592825,4.30783,6.994655,4.677655,3.5488999999999997,1.76339,4.018155,3.790315,2.8086866666666666,2.510347142857143,3.751525,2.821073333333333,4.857426,0.8709322222222222,3.05274,1.746256,3.73789,4.09102,1.921195,1.1679075,3.16685,0.431682,3.01271,6.74645,5.21425,2.80363,1.503862,3.1295,0.7814099999999999,2.54351,0.7814099999999999,4.06548,4.25877,1.38294,1.5592725,4.823511666666667,1.8109166666666667,3.489155,2.72214,3.36951,1.25143,1.66524,4.05693,4.65308,5.31715,3.0630059999999997,2.504975,3.211525,1.5878125,2.3083525,1.8160825,1.8900725,4.249555,1.4735222222222222,1.4735222222222222,3.22978,4.618933999999999,8.459360833333333,4.63209,7.01279,2.094135,3.896155,3.984285,1.602435,3.629929166666667,3.79836,3.07067,5.3454,3.05686,2.71351,2.78208,3.64794,1.10343625,4.104755,4.513525,1.11983,7.961679999999999,2.57022,3.280725,3.45193,5.0746,4.841685,3.4675587500000002,2.44349,2.830783333333333,2.00366,3.636366666666667,2.2718325,2.17824,7.097021999999999,3.1272599999999997,2.792896666666667,4.187375,22.169295864468864,0.6810933333333333,2.757415,4.633435,4.452645,8.52942,4.96833,4.61792,4.514805,6.8258383333333335,3.559515,1.6482599999999998,4.97235,3.30196,1.20382,1.20382,1.20382,2.4173475,1.693775,3.40144,1.5907475,3.05119,1.5209233333333334,2.696595,2.60318,3.033635,1.5907475,3.30128,2.722045,4.201368333333333,4.831736666666666,5.05455,0.7698741666666667,3.283245,2.606885,4.62663,3.314625,2.724855,2.297825,1.7369575,2.2501275,1.456412,3.53071,1.6846925,4.60713,11.047256666666668,2.6490899999999997,2.421845,4.667063333333333,4.7023,4.423133333333333,6.378,2.2067166666666664,5.3762550000000005,4.663415,1.1408266666666667,1.1884085714285715,6.47924,4.304075,2.3622475,3.72285,1.91967,3.97934,4.558185,4.6072,4.00326,1.3362757142857142,4.241215,4.834385,4.66074,6.330178,3.396685,5.3923,4.258905,4.430785,5.009,3.6179333333333332,5.0385,1.9127175,3.436935,3.15194,3.223475,4.39266,6.2904,4.730355,2.671053333333333,3.6027,9.04268,4.834495,3.2504899999999997,3.61041,3.6996,4.396765,4.275365,4.640535,6.764548333333334,3.379775,2.6950766666666666,4.137323333333333,2.64375,3.95393,2.1461,6.547740000000001,1.5754966666666668,4.42429,4.720335,11.6967725,0.49272714285714286,4.40407,5.05345,0.6576285714285713,3.599015,4.02875,3.839635,0.9217489999999999,4.877665,4.957076666666667,2.66604,9.920081666666666,3.182706666666667,1.96965,2.27984,3.76523,6.02625,0.5592308333333333,3.91272,1.993695,5.1981,0.681983076923077,4.220045,5.75325,6.03355,3.56553,6.5589525,4.56684,3.5818975,2.6018266666666667,2.8785866666666666,4.346475,4.281015,4.99466,4.833935,5.1549,3.1191333333333335,6.6096683333333335,2.85315,3.234075,1.8249225,4.586915,2.197956666666667,1.59352,3.0632,2.7467233333333336,3.2406433333333333,3.323676666666667,3.4609,3.04608,2.6385333333333336,5.59825,3.14124,3.689325,5.0468,2.681063333333333,1.1546111111111113,3.055336666666667,2.98049,3.821245,2.805593333333333,3.0400899999999997,4.626116666666666,2.0310466666666667,1.6186525,3.07232,3.829715,4.25288,1.08741625,4.307425,3.22277,3.9761666666666664,2.9286433333333335,4.914345,3.96895,3.23051,3.849185,1.813565,3.919985,0.61819125,4.766165,5.0171,16.788716363636365,3.1288966666666664,1.17469,3.737835,0.6421657142857143,2.683325,4.468825,1.747105,1.1548914285714285,3.645465,4.697875,3.1567133333333337,0.6164666666666666,2.54494,7.9075,3.78302,5.46045,5.182,5.15405,3.125693333333333,3.6605000000000003,3.225796666666667,7.225795,3.926725,5.0043,2.1618975,0.44476,2.38078,3.034675,1.59376,3.292275,3.9442,2.89859,4.715525,0.66833,4.482825,3.513415,2.962615,1.1872733333333334,2.6447366666666667,2.018186666666667,4.68703,3.85622,2.20218,1.5733285714285714,3.560895,4.33682,4.16208,6.15362,2.0976399999999997,4.632865,4.43429,3.769115,1.86901,3.81284,5.693271666666666,4.897365,2.37738,4.915155,2.710565,2.57958,3.818015,3.903985,1.3672983333333333,4.748935,1.9902333333333333,2.7488333333333332,5.281313333333333,5.281313333333333,5.4071,1.577682,4.902,0.880715,1.7651379999999999,4.990875,2.6003433333333335,1.4994433333333335,3.0442466666666665,1.034964,4.250900000000001,4.61897,3.034445,4.986375,3.754395,3.574615,4.996605,3.544465,3.4895,2.8921799999999998,2.47047,2.531025,2.7232866666666666,4.497555,1.672953296703297,2.9558966666666664,4.34275,4.742835,2.2493866666666666,4.475715,4.650245,4.766078333333333,3.4393999999999996,5.3593,5.0811,5.4106,5.00885,3.62481,3.79051,3.7035,4.30651,5.62045,4.547745,4.972665,4.684975,4.574935,0.66088,4.937635,4.715265,3.90511,7.40062,4.12728,3.78913,4.32971,4.779645,3.6024,3.631025,2.11500375,4.513052500000001,1.80336,1.27491,3.692015,2.075063333333333,2.4842566666666666,3.905692,3.4293333333333336,2.902345,1.1793333333333333,2.011505,4.50372,3.878505,1.8993075,1.8993075,3.454325,1.568284,3.205526666666667,4.400205,3.38238,3.802965,1.4513,2.101355,3.5361241666666663,2.00521,4.334655,4.465445,4.54147,3.97068,6.84234,2.59785,3.631795,4.53517,4.51191,3.290093333333333,3.861355,3.942655,4.12673,2.44619,2.4946433333333333,4.564115,3.659875,3.530275,3.655105,1.60793,3.80559,4.255215,4.563125,4.106635,3.944805,3.944805,3.0736133333333333,4.03109,4.204565,3.83227,1.680622,7.42298,3.89447,4.98558,4.48863,4.357005,3.703245,4.76104,2.867445,3.29407,2.99728,4.87621,1.9467919999999999,4.3138,5.306950555555556,5.03155,0.689597,4.847453333333333,1.11113,4.74779,4.634125,4.551525,4.082535,4.96144,3.6498666666666666,3.6498666666666666,0.8218120000000001,2.1806075,4.84602,3.34833,3.90352,4.898555,5.4251,3.3067,4.070125,1.3745066666666668,2.668115,1.67569,1.220345,4.232975333333333,0.8384410000000001,2.417266666666667,3.0157866666666666,1.18923,2.09525,2.6979399999999996,1.3355466666666667,6.30773,1.9370725,2.586743333333333,5.47535,1.9690425,2.864076666666667,2.85384,4.651725,3.6635333333333335,3.3742666666666667,4.1075,1.7068699999999999,2.22767,4.42691,0.6457464285714286,2.14183,2.3527733333333334,3.135946666666667,2.7522566666666664,1.1267971428571428,0.8444833333333334,2.3722666666666665,4.23288,1.2552171428571428,2.2000075,1.23365,5.5265075,2.2315075,4.91043,4.453995,4.219955,5.37765,5.3601,3.905915,4.10383,1.41144,4.039166666666667,1.7092500000000002,2.4075966666666666,1.1963085714285715,4.36995,2.082255,6.971435,4.270385,3.89888,1.4361039999999998,7.0432625,3.598615,1.4586183333333331,4.072805,3.22652,3.940955,3.150375,2.09457,2.09457,3.239943333333333,1.312485,1.312485,1.86901,2.8464766666666663,2.194765,1.33596,3.550466666666667,1.075815,3.06075,2.38978,1.9514575,1.532095,2.20955,1.9720675,0.28579235294117644,2.472825,1.200015,2.3554733333333333,2.09502,2.32318,1.06043,1.1265800000000001,3.6801666666666666,3.216143333333333,2.09457,1.837395,1.7781733333333334,2.5283233333333333,2.4395366666666667,1.929548,3.3216300000000003,1.0987500000000001,3.2162966666666666,2.7226966666666663,2.575126666666667,1.522728,1.029078,2.3683575,1.029078,2.3683575,0.63078625,0.63078625,0.490115,2.21529,2.50657,0.63078625,2.2207525,2.35758,2.32472,1.71509,0.789441111111111,0.63078625,0.63078625,1.616396,1.616396,2.0371425,1.837395,0.63078625,2.30654,0.47641692307692307,2.9298,2.02939,2.4294466666666668,2.4234266666666664,2.4234266666666664,0.37780800000000003,0.37780800000000003,1.86901,1.96434,2.14128,1.971032,0.37780800000000003,3.541533333333333,2.5194,1.645918,0.62540625,1.645918,0.62540625,7.6645,2.622743333333333,3.8877666666666664,2.9371566666666666,2.9992966666666665,3.13648,2.7640166666666666,3.600766666666667,2.503875,1.679335,2.70816,3.0622733333333336,2.364596666666667,1.616396,2.562581428571429,2.562581428571429,2.7734233333333336,2.1333525,4.35331,2.2541800000000003,3.1829666666666667,2.652206666666667,1.403354,2.3871,2.1918125,0.7767172727272726,1.687405,3.87296,1.734912,3.1963899999999996,2.4958533333333333,2.6861,3.9046000000000003,1.66795,3.4388,3.10383,4.329666666666667,1.2384819999999999,0.23246103448275862,1.2846728571428572,1.2846728571428572,0.9832455555555555,2.834623333333333,3.8883666666666667,2.4605799999999998,2.138846666666667,2.138846666666667,2.08029,1.6631600000000002,0.951797,1.7749366666666668,1.7749366666666668,0.63078625,1.86901,2.858546666666667,3.3372333333333333,2.38978,2.2645600000000004,2.2645600000000004,2.2645600000000004,1.0906333333333333,1.508657142857143,1.508657142857143,2.367655,2.795806666666667,2.6325217045454545,3.612405,2.51782,2.3986266666666665,3.45833,3.81811,6.7017475,3.706455,4.33773,4.138366666666667,13.257012499999998,4.791005,3.50866,0.9701425,4.03347,3.346835,2.241025,3.781875,5.15045,6.433278333333333,5.98165,0.47199529411764707,3.80849,2.967005,3.897645,2.4607475,4.417925,4.173675,4.11387,8.17472,3.39379,3.908145,3.97089,3.28707,8.034335025641026,3.2271666666666667,2.6913466666666666,3.665145,3.889175,5.0607,3.59534,6.545261,3.702765,1.371586,2.86118,0.89007875,4.77555,2.8017,2.588485,3.96103,3.09834,2.81127,4.904705,4.02093,8.56532,4.00764,4.7035,2.487956666666667,4.94827,3.10803,0.98372,0.98372,3.47449,3.97673,2.09168,2.25274,4.054725,3.082295,4.344555,2.026805,1.884575,2.90792,2.4854833333333333,1.15576375,3.15064,4.52358,8.62994,1.6283819999999998,2.791235,2.88289,3.010045,2.79663,8.09042,4.038975,3.3867666666666665,2.8232199999999996,4.049165,3.4375666666666667,2.9805533333333334,2.98935,4.047475,3.791225,4.30467,4.147145,0.417032,1.4484266666666665,2.63295,1.8253025,4.47646,3.600465,2.4168366666666667,2.2670525,4.623555,3.8215522500000003,2.0837525,2.535065,0.914147,2.31835,2.52554,2.52554,5.1472,1.925485,2.7476066666666665,2.256963333333333,2.0094433333333335,1.7971433333333333,3.065255,3.747845,4.85422,4.355695,5.1194,4.650755,2.823495,2.7448533333333334,1.9919440000000002,4.71421,5.499205,1.9227666666666667,3.0036799999999997,2.0529575,2.33832,3.990363333333333,2.53429,5.1076,3.70181,3.57244,4.112465,3.0374866666666667,3.60731,4.033715,2.3224966666666664,2.434946666666667,0.4147564285714286,3.8031333333333333,2.7603066666666667,3.055565,6.29915,4.739975,5.649845833333334,1.7786275,1.6087783333333334,3.172015,5.116,6.41935,5.85565,2.892666666666667,2.3087733333333333,3.509245,2.176276666666667,4.694335,2.2901166666666666,2.1678475,5.3442,4.76015,4.39283,1.7892,1.9083,1.038922,1.038922,1.063202,0.9446685714285714,0.720636,1.8129145714285715,4.3376,9.977372500000001,3.856795,4.1929,4.07051,5.7270625,2.894665,1.68477,3.377815,2.91627,4.37559,2.21927,2.5831033333333333,2.9622533333333334,3.2748166666666667,2.32877,3.082826666666667,3.29379,3.0282966666666664,3.5012333333333334,3.2760233333333333,2.8493033333333333,2.7361066666666667,3.143466666666667,2.25872,3.1259933333333336,2.9730933333333334,2.9264266666666665,3.31026,2.06032,5.329471428571429,3.1197700000000004,4.076912666666667,3.2075533333333333,2.9000500000000002,3.6117666666666666,2.8701633333333336,2.8520766666666666,3.0870466666666663,3.1728433333333332,3.5812333333333335,3.21612,1.9581725,2.771993333333333,2.587006666666667,2.865925,2.865925,3.303846666666667,2.7888966666666666,2.5686066666666667,2.7816799999999997,3.1094666666666666,4.178833333333333,2.7761766666666667,2.685775,2.8272666666666666,2.803123333333333,4.504816666666667,5.0597,1.5799383333333334,3.3354,3.8020333333333336,3.42152,3.1240066666666664,3.7024666666666666,3.5362666666666667,2.4744433333333333,3.3586720000000003,1.9340039999999998,2.7868475,3.3870666666666662,2.9544200000000003,2.49136,2.444733333333333,3.7508666666666666,2.8681866666666664,3.032806666666667,2.2956925,1.1541616666666668,3.1757566666666666,2.66901,2.1613866666666666,2.4990325,3.092563333333333,3.0163733333333336,1.9527860000000001,5.737316666666667,2.4163799999999998,0.9059459999999999,4.45666,1.8961870833333334,1.6456816666666667,4.18424,4.183415,3.337455,2.44523,1.432785,3.44061,2.64103,1.805265,0.413816,1.931335,0.413816,2.1852,1.432785,2.677975,3.75635,2.3724,3.38972,3.364265,0.47848466666666667,2.7395600000000004,0.985795,0.4321635294117647,3.705095,3.918335,4.8356,2.5318,5.28065,4.19629,3.93133,2.02705,3.9910333333333337,1.718814,5.7809,2.4933,4.206055,4.604,3.0681266666666667,1.9042633333333334,2.0940499999999997,1.3073533333333334,2.09407,0.912665,0.912665,4.462295,2.2392533333333335,6.150788333333334,2.2188975,2.22678,2.224495,2.2004282500000003,1.8139525,5.4701,3.9582075,2.144255,2.4219066666666667,2.2004282500000003,1.74357,3.51389825,1.83823625,5.763511666666666,2.2188975,3.3042725,3.27999,3.057916666666667,5.46405,4.58791,1.9286125,2.0489525,2.3009275,2.44259,4.63937,5.43735,1.9713425,3.83701,1.5741433333333334,1.5670375,5.1316,10.063525,2.033533333333333,2.28274,2.3451766666666667,4.104575,4.139975,1.8882075,4.628655,4.425125,2.715495,39.24556763095238,2.8369433333333336,3.0946233333333333,0.4229088888888889,4.6619633333333335,2.08084,0.9309177777777777,3.565475,3.77545,1.8381375,1.8489025,2.3871766666666665,4.01833,1.3882385714285714,3.24848,3.62243,4.5871,0.9163410000000001,4.953475,5.0539,4.943405,2.935583333333333,1.5877325,3.789125,4.43383,3.92066,3.266915,3.554925,3.846915,11.721914444444444,2.713893333333333,3.16685,3.732995,2.475595,4.287205,3.34466,3.098435,3.03742,6.3446,4.28188,5.31305,5.03565,2.496135,3.588835,4.52572,3.799625,4.55047,4.262335,0.12298260869565217,2.312925,5.4616,2.64839,1.7053166666666666,1.1433416666666667,1.1433416666666667,2.03773,2.92682,2.967875,1.726108,2.8288766666666665,4.439725,2.540235,4.5082325,0.5589878571428571,4.73654,3.5267,4.88145,4.825665,4.85537,1.2639625,1.02118625,4.224766666666667,2.969273333333333,3.05759,3.8064175151515154,4.23188,6.1406825000000005,5.40435,4.1277,3.49415,2.084175833333333,1.4859116666666665,4.469605,0.322588,3.32518,3.80798,4.072095,14.276580000000001,2.00615125,3.2689266666666668,0.79413375,4.503845,8.498059999999999,3.32696,1.85808,5.66655,3.25113,1.0664622222222222,4.81036,2.56672,2.74854,4.799165,3.4888294444444443,1.0774875,6.614821666666667,0.72784,5.15405,3.2621969444444443,1.3764675,2.1169511111111112,3.260865,3.260865,3.89896,4.351445833333333,1.3607125,2.522135,2.878095,3.593525,2.955415,2.630705,3.33947,3.35414,6.772423333333333,6.7468,4.13212,3.281135,4.40847,4.53928,3.500905,3.42282,3.593805,3.74443,4.37341,2.5296366666666668,2.650726666666667,1.6316083333333333,2.33747,2.2290125,1.5382025,3.0531066666666664,3.648,3.4766333333333335,3.25573,2.5643933333333333,1.53182,1.5538266666666667,0.4805154545454545,2.7485199999999996,1.5983857142857143,1.92161,3.4103,2.48199,2.56955,0.96050125,2.252685,2.700705,2.98709,3.593065,5.5489,3.79817,2.96577,2.2452566666666667,3.39007,4.440995,2.44628,4.551285,2.08103,3.82223,2.78755,4.081805,1.3963533333333331,0.6143460000000001,2.2934725,3.291085,3.122515,3.99477,4.681620000000001,8.68169,3.28403,2.1424133333333333,1.8615666666666666,1.780174,1.780174,2.84906,2.6879766666666662,4.88524,4.28491,3.525525,4.95559,4.325505,4.28516,3.1716699999999998,4.36204,7.6935675,2.545425,0.50158125,3.089786666666667,1.3072966666666666,1.018557142857143,1.91509,0.765184,2.083735,5.12655,5.3068,6.0359675,1.1265425,7.04277,1.9927540000000001,1.54259,2.639413333333333,3.88436,3.3396333333333335,2.39592,3.36361,3.074,4.200033333333333,2.9075933333333333,2.7414366666666665,2.9570133333333337,6.688725,2.52832,3.834965,3.9139283333333332,3.653598333333333,1.4913233333333331,1.200585,4.457225,2.9891233333333336,3.2004933333333336,5.4798575000000005,2.76583,1.90002,2.4109675,3.30078,3.7789,2.28471,3.898740833333333,3.04049,5.4113,2.4234503333333333,1.88186,4.96574,5.4298,4.428535,4.01743,1.4722833333333334,2.287005,1.85759,3.294385,1.5251833333333333,0.9443450000000001,2.725825,2.020285,1.9227575,4.28724,0.7481450000000001,5.7890975,1.4543925,0.7797481818181818,3.5185666666666666,3.93092,0.6735871428571428,3.1677665,3.2129575,0.8444833333333334,4.424115,0.15601833333333331,0.15601833333333331,0.15601833333333331,0.15601833333333331,0.15601833333333331,0.15601833333333331,2.001198,3.71742,2.001198,2.001198,1.8545066666666665,0.15601833333333331,0.15601833333333331,3.4096333333333333,2.74236,3.51767,3.262115,2.373665,3.588905,1.3809785714285714,1.6632000000000002,3.2952440000000003,1.365446,2.6517399999999998,2.6560504444444444,5.70991,3.95978,4.16993,6.5925,4.41157,4.71105,3.65997,3.76253,7.134945833333333,3.8853000000000004,3.5591333333333335,2.359716666666667,5.148873333333333,2.64904,2.14323,1.7105499999999998,4.70419,5.1806,5.24465,5.15505,5.58775,4.38948,4.743645,0.7207272727272728,0.7162071428571428,0.7162071428571428,4.85479,2.3790299999999998,3.845515,1.0259128571428573,4.52813,1.450357142857143,2.319716666666667,2.6296,4.483466666666667,4.483466666666667,6.81575,4.18647,1.295685,9.877683333333334,2.907766666666667,1.247911111111111,4.97018,5.205,3.523895,3.0362,2.89824,4.395366666666667,0.8005866666666667,3.4082000000000003,3.4719333333333338,3.7687000000000004,3.1998466666666663,1.52203,1.5696199999999998,4.7167658333333335,3.1627666666666667,3.287686666666667,3.4885,5.438951666666666,3.3210750000000004,0.836276,1.8486200000000002,3.8500333333333336,2.174805,3.838366666666667,3.580166666666667,3.2036333333333338,3.549533333333333,3.0766033333333334,2.498596666666667,1.3154266666666665,3.080216666666667,2.4075466666666667,3.425075,3.004565,3.687885,2.6593533333333332,3.2358966666666666,2.8926,1.528744,2.0111866666666667,2.7900509523809527,3.5211666666666663,1.8490220000000002,3.2433533333333333,1.85135,3.6253333333333333,5.260123333333333,5.019438,2.4377725,2.5491,2.72675,2.544725,1.5661285714285713,2.2862125,3.422697857142857,2.488355,3.511433333333333,2.75453,3.7849820000000003,2.991575,1.3199111111111113,1.2880225,1.7789475,2.2298875,3.0822266666666667,3.4105333333333334,5.2581,7.489155,2.52789,5.03,3.78539,15.532989,0.50622,11.856705,0.8424911111111111,3.4512,3.556433333333333,2.8742366666666666,2.89889,1.599338,1.43815,2.29154,1.201882,2.832644,1.9702366666666666,2.9194666666666667,2.1148366666666667,2.6784733333333333,1.5126666666666668,0.6653675,3.0480199999999997,2.55916,3.0454666666666665,1.0906333333333333,3.493,0.7043275000000001,0.37233615384615387,1.94435,4.42031,4.30124,4.49991,0.7384027272727273,3.93281,4.820145,1.1670975,2.1829825,5.2490325,3.43568,3.782985,3.8609,3.917825,1.8677275,3.70015,2.6913766666666668,3.049085,3.63085,2.9512,2.78455,3.888385,3.215135,3.660635,2.072925,3.39601,4.514035,1.2531666666666668,4.572405,2.23517,4.205205,5.104753333333333,1.9912175,2.6321533333333336,3.043286666666667,5.967453333333333,2.4465600000000003,3.311675,5.14915,3.8877666666666664,4.05013,1.8997966666666668,2.62,4.516125,3.6123,4.102265,3.734833333333333,3.0606666666666666,2.801693333333333,3.787333333333333,3.2108733333333332,2.692633333333333,2.575013333333333,0.44794388888888886,2.389525,2.181555,4.510485,4.717325,3.0573933333333336,2.552853333333333,3.1079899999999996,8.622164999999999,3.63293125,3.949095,2.7252466666666666,4.07633,3.19978,3.7089266666666667,2.80698,2.24702,2.6040933333333336,6.4846,4.658445,2.1694166666666668,3.449145,3.09981,2.6312333333333333,4.490908666666667,1.7447120000000003,6.2910666666666675,4.0483,4.780455,4.30004,6.4751,3.641635,6.771118333333334,3.68607,3.38158,0.6181435714285713,2.1842975,1.487595,2.988106666666667,3.22213875,4.039165,3.997575,5.2861,2.6784266666666667,4.58516,3.5416666666666665,3.8632333333333335,3.185363333333333,4.36307,4.61855,4.39649,2.8897433333333336,5.720166666666667,4.45413,1.40716,5.1014,3.72848,2.696165,2.17212,2.3030733333333333,4.428105333333333,1.2404128571428572,2.47988,1.9707875,3.83334,4.365835,2.4439466666666667,3.3821999999999997,2.965040666666667,2.457683333333333,3.831825,1.325398,2.282366666666667,2.37431,2.82938,2.54807,2.6015133333333336,2.694406666666667,3.95134,2.9908966666666665,2.790976666666667,4.039375,2.37481,3.755195,3.596885,1.429785606060606,1.429785606060606,4.555415,2.755133333333333,1.800815,1.3265975,2.07009,2.0442325,1.252794,1.4159166666666667,0.642868,1.6468533333333333,1.56157,3.0224533333333334,2.2515,1.75215,1.9943733333333336,2.29245,1.6034566666666665,1.7483766666666665,1.85211,2.540775,4.26167,2.98365,2.751333333333333,2.753,5.6059,2.8529,4.26679,4.10417625,1.966535,3.91039,2.98306,1.87959,3.56019,1.76195,2.88938,3.556665,1.83262,4.50625,3.60777,4.222325,3.3656,0.8159211111111111,4.739225,3.731845,3.32903,3.74646,2.2930466666666667,4.511865,4.591505,4.73853,9.220257499999999,3.45129,4.52035,2.8199199999999998,3.634955,4.338515,2.441315,2.593655,3.850725,2.1595675,5.757475,1.8796700000000002,2.7151,5.404421666666667,2.87372,4.143636,1.2723742857142857,4.336315,4.37288,3.034283333333333,4.70431,4.775555,5.9951289999999995,15.301759107142857,0.6287882352941176,1.06043,2.8335633333333337,3.96633,3.58104,2.1011225,3.284295,4.015705,4.9701,2.522265,4.74723,1.7261833333333334,1.7261833333333334,5.37575,0.7568236363636364,1.669726,3.03071,4.091265,0.3985792307692308,1.9474600000000002,4.1171015833333335,1.1966833333333333,3.078416666666667,2.7963833333333334,2.942365,8.05145,2.5564566666666666,3.583833333333333,1.9811366666666668,2.21214,3.8855975000000003,3.5362,3.085455,7.115354833333333,1.8813875,2.945425,4.566745,6.7357825,1.9456833333333332,2.3829533333333335,2.5673766666666666,1.3708833333333335,2.49111,1.61275375,3.896995,3.214045,1.51758,1.840884,1.840884,2.7607,5.45515,4.215576666666666,3.809025,4.54261,4.539265,3.37507,3.692855,4.134245,3.51009,4.657595,3.623855,4.44913,0.896499,0.36117875,5.3375,3.883725,2.5047533333333334,7.93744,1.6020566666666667,4.6897,4.0698,0.3667816666666666,1.8880833333333333,1.3153933333333334,1.85008,1.9419166666666667,5.338183,2.970415,3.139325,4.86445,4.76412,4.731015,0.5892000000000001,2.207085,0.6150800000000001,5.692645000000001,1.459276,4.756745,2.0251525,3.0704700000000003,3.295675,4.029105,4.218025,5.13475,0.8543572727272728,3.17578,4.03148,2.00886,1.7322325,3.661485,3.058035,3.609325,3.8914999999999997,5.352966666666667,4.670985,5.5557,2.9136,0.5544355555555556,3.2848666666666664,3.686025,0.6266907692307692,3.85085,3.826955,4.04662,3.390915,2.661216666666667,5.13065,3.23668,3.231145,2.29527,3.895435,1.671132,3.361535,3.744885,0.6126053846153846,3.696635,3.850075,3.072945,3.781305,4.40838,2.771805,3.85038,0.6220950000000001,2.9410966666666667,3.6703666666666668,4.4842,3.5896333333333335,2.56815,3.5137666666666667,2.56815,4.95172,3.10161,2.9801300000000004,1.5276816666666668,3.1339633333333334,1.6801725,4.11035,2.872586666666667,5.115756666666666,3.0460766666666665,2.6517133333333334,2.8881933333333336,2.3451778571428568,2.3451778571428568,2.3451778571428568,2.1833533333333333,1.0522933333333333,4.49718,2.4460933333333332,1.7128433333333335,4.0568333333333335,2.268476666666667,2.980786666666667,3.924455,5.23105,3.419585,1.837015,1.0830600000000001,4.02824,1.993694,2.244126666666667,2.911725,3.60039,2.052695,3.514125,2.970595,1.6591619999999998,4.906605,4.20192,3.468455,3.672035,0.7391211111111111,2.43655,4.395095,7.514875,4.40557,3.01777,2.86129,3.456165,3.790785,1.7233275,2.356165,4.465605,2.15358,4.499495,3.76189,5.2181,8.256336666666666,4.106055,3.42158,3.161975,4.74231,3.940995,3.148935,3.148935,3.75759,4.1087983333333336,4.2544,4.14157,4.15718,4.54085,3.97327,1.07242625,4.409995,4.060445,5.2218,8.09889,4.926195,3.9341340000000002,2.09274,1.4728116666666666,2.25701375,5.01065,3.7804,4.82575,2.16771,4.501095,5.0866,5.21265,4.967285,3.1167133333333332,3.62885,3.858205,4.867235,4.312345,3.828765,6.619176666666666,4.84672,2.271926666666667,5.1777,3.634945,4.09697,3.68744,4.379325,0.7699527272727273,3.87995,4.494055,1.2154214285714284,1.172766,4.90269,4.739385,8.786710000000001,5.3969,4.53009,6.10865,2.940365,2.4420933333333332,5.06025,1.5806075,1.5806075,2.68179,1.6449166666666668,3.0088566666666665,3.4703999999999997,2.002495,4.134707727272727,1.4431866666666666,2.184665,5.420115,3.6059816666666666,3.520665,3.230135,4.01728,4.1255,3.0130433333333335,0.9965855555555555,4.015095,3.03269,3.891735,4.14258,3.6726816666666666,5.60845,4.997205,4.71891,3.64237,5.26355,6.40615,4.61551,3.288825,3.432565,2.0519925,2.0519925,3.8359,3.902685,2.5850866666666668,2.7849133333333334,2.0212015151515152,2.4850666666666665,2.0656233333333334,2.0656233333333334,4.248495,3.544155,2.127115,3.550495,2.769465,1.78642,1.2855075,0.9207788888888889,2.7713,0.4518594736842106,0.8037533333333333,2.861415,3.530275,0.4171263636363637,3.983655,1.9739840000000002,5.2995,3.43428,7.4470825,4.410495,5.2894966666666665,4.682515,5.08105,4.07425,1.88576,1.84416,3.915995,3.052235,3.632105,1.3057533333333333,3.18436,4.331685,2.65961,3.196415,2.34669,4.34942,3.23399,3.338845,3.888615,3.753965,3.390775,3.01965,1.0271042857142858,1.95479,2.300935,2.924215,4.36638,7.61494,0.892882,1.57487,1.57487,1.7787739999999999,3.942615,2.72903,3.099035,5.4644225,2.950423333333333,1.228785,1.228785,1.228785,2.852515,2.9031529999999997,5.1107,3.26776,4.160695,3.32239,3.67706,2.94701,3.3480475,3.66687,4.1412325,2.6985900000000003,1.252794,3.169915,2.6985900000000003,3.87842,1.3737133333333331,1.8840466666666666,2.0571,5.329748,3.21726,6.281578,5.329748,3.064318,1.8722116666666668,1.8722116666666668,2.75495,6.02585,1.8722116666666668,2.324875,5.62562,2.516275,2.81242,4.90464,3.6941,4.21894,1.90058,3.35239,4.24335,2.2421466666666667,2.34664,4.83795,1.90058,2.614865,1.92047,6.20542,2.55765,1.126112,2.55887,3.277855,2.9892095000000003,2.13255,1.9181895,4.02195,1.7289020000000002,1.60969,3.326875,2.46429,3.517265,4.00162,2.0063133333333334,2.52343,2.50632,6.3145,2.225345,3.47734,3.473085,3.473085,8.247673333333333,1.0942733333333334,3.03146,2.8394,3.106895,2.30076,1.1431033333333334,1.1431033333333334,3.55773,1.94383,6.528585,2.249185,3.71141,2.683345,5.59009,3.008685,2.38828,5.5849150000000005,5.5849150000000005,2.759635,1.582325,1.2557825,1.2557825,1.582325,2.1374866666666668,1.5087666666666666,1.1712083333333334,1.4577133333333334,2.0964633333333333,3.722125,1.95517,3.81453,3.05665,3.05711,2.840625,3.071535,2.223005,3.362645,3.362645,5.84798,2.463435,3.089285,2.720305,3.196955,2.51492,2.91192,2.768135,5.234477500000001,1.8764675,1.5917080000000001,1.5062513333333334,2.4875413333333336,5.74839,4.2393513333333335,3.6289333333333333,2.852575,1.9797125,1.9797125,1.9797125,4.98662,2.474105,1.1712083333333334,3.162845,3.627885,1.3125275,5.446295,3.1931475000000002,5.82949,3.50184,1.697195,3.432,2.4123466666666666,2.273975,3.736175,4.60352,3.47127,1.871415,2.410895,2.92138,3.112795,5.70563,2.044585,3.460095,2.686675,6.13429,4.45058,1.94369,2.11454,5.72772,5.0421,5.13125,6.17865,1.179866,1.179866,2.6011059999999997,2.6011059999999997,0.708826,5.05457,3.34455,5.78948,4.85488,5.22214,2.28862,4.635533333333333,4.635533333333333,2.173525,3.2055,3.25209,1.150918,4.66813,3.42805,3.071315,2.736165,4.80363,2.36357,1.94424,3.418845,3.079385,2.88302,4.83683,2.608605,1.725135,3.85569,5.94419,5.85977,4.34817,2.484865,3.65429,2.385835,5.21325,2.86013,3.51085,2.16915,6.6832,3.77659,2.663195,2.323565,2.422425,5.08108,2.423115,2.740315,2.88361,7.26,5.08709,3.344815,2.408135,2.69968,6.14303,3.119695,2.896225,5.71103,2.77669,2.867435,2.779365,3.051635,1.9652833333333335,1.99168,2.18865,1.87531,1.7244400000000002,2.116216666666667,1.74674,2.2480066666666665,1.78144,1.9652833333333335,3.8481,4.23167,2.361425,1.7408225,1.7408225,3.65526,3.65526,2.9078299999999997,2.9078299999999997,2.80101,2.72741,1.70051,4.28505,2.2662875,2.2662875,2.333615,2.333615,3.51851,1.96111,5.31193,2.39832,3.09016,1.81285,1.81285,1.41323,4.45236,5.40587,1.3737133333333331,5.20045,2.0063133333333334,2.055775,3.8475,3.12523,1.882485,2.468115,6.54409,2.064075,6.48186,3.152805,3.192475,3.095535,2.74151,5.97497,3.05742,2.636275,2.5225092307692307,2.90185,5.81908,3.54461,1.5068899999999998,1.5068899999999998,3.97212,5.20325,5.40382,4.52918,2.712665,2.871655,1.711685,3.02033,1.777095,2.73186,1.804275,0.872638,0.872638,0.872638,2.287259166666667,4.732066666666666,2.287259166666667,2.587275,3.77557,1.735475,2.050485,4.12187,3.938,5.46538,1.7554066666666666,5.36343,1.7554066666666666,1.7554066666666666,2.304085,1.632895,1.9517,6.59612,1.9517,2.44513,3.8759,2.26139,2.05542,2.72042,2.9019366666666664,3.1322391666666665,3.1912866666666666,3.59323,1.3057533333333333,3.924885,0.7047172727272728,4.173635,4.3566125,2.7778575,2.7778575,0.6585045454545454,4.031033333333333,2.7080933333333337,5.8029,5.04045,4.340395,5.19705,3.847735,4.292815,5.2283,4.10214,4.235,3.7037,3.88331,5.02415,4.903635,3.36636,3.466015,4.178785,2.485516666666667,1.213914,4.449785,3.382505,3.6054,1.2512957142857142,3.903805,3.843955,6.195984999999999,1.077685,5.255,3.921715,2.070695,2.04901,3.25127,3.567715,1.76291,1.5068899999999998,3.97044,4.87754,2.6428,4.63759,3.14654,1.16464,2.9375199999999997,1.1381442857142858,3.1083,1.9708166666666667,2.920866666666667,1.9227425,2.52094,4.08309,3.12624,4.506095,3.36903,2.2468425,4.83736,4.60783,3.096875,5.43545,4.254615,2.6672499999999997,5.92825,4.55889,3.156251666666667,2.5413433333333333,2.513625,2.880546666666667,2.9989866666666667,2.7022733333333337,4.634505,4.37434,3.731965,2.46318,2.6009366666666667,2.42395,2.3760866666666667,2.2195466666666666,2.3477200000000003,2.33862,2.2063975,1.340315,2.975172,1.2018975,1.685515,1.61165,2.73795,1.5948075,1.781815,3.885075,3.976535,1.974095,4.04756,4.12897,5.844181666666667,2.02265,1.573196,6.7786,3.531555,4.785895,4.27417,3.97928,2.1166,3.591105,2.396375,3.02941,4.170505,0.7287716666666667,3.819385,1.8919766666666666,0.7479327272727272,5.0392,4.39496,3.98337,1.8384235714285715,4.72838,5.51535,2.63527,2.727486666666667,2.4789266666666667,2.13526,0.634486,3.200226666666667,3.049975,5.00625,2.46863,2.012785,3.454125,1.04119,1.9573133333333332,1.9573133333333332,2.82414,1.9573133333333332,4.115675,2.775295,4.23046,4.424395,5.7189,13.420919166666668,3.0323766666666665,4.622595,2.824785,4.71439,3.204545,6.6283725,2.8443066666666668,4.82856,4.73913,3.81424,1.1366983333333334,4.828285,3.191523333333333,2.36696,0.9651266666666667,2.14318,3.388135,7.141906666666666,4.2815,2.8464766666666663,4.60579,3.239943333333333,4.11687,4.5072,4.763475,2.86441,2.88332,3.999365,5.5744,2.42368,4.181395,1.926245,1.926245,3.11023,4.77005,1.21139375,3.8926919999999994,2.3146575,4.70411,2.6058266666666667,2.495886666666667,3.02232,2.3204566666666664,0.7272571428571428,3.46481,2.9037400000000004,5.38515,4.60295,0.2386959375,4.887455,4.272065,3.74472,6.790414999999999,2.9420366666666666,2.8835766666666665,2.1874166666666666,2.85431,2.710053333333333,1.3562966666666665,2.9415033333333334,2.5473066666666666,1.3266433333333334,3.419966666666667,3.051933333333333,2.50169,2.7816799999999997,1.3251844444444445,4.1008,2.442475,5.14415,3.936205,3.786515,1.7285433333333333,2.4717166666666666,1.32283,1.81658,1.32283,4.818365,3.4768333333333334,1.535366,2.3265325,4.05184,3.80817,3.03522,3.88997,0.3668865,1.3922775,3.847075,4.250645,6.41275,1.993215,2.6303566666666667,3.1089966666666666,2.374773333333333,2.81232,3.308125,4.556675,2.506625,1.9951266666666667,2.772296666666667,2.62053,2.6643733333333333,4.534225,2.27911,4.621535,3.715419166666667,5.93045,7.65739,0.7630533333333333,0.817764,4.13169,6.3987625,2.00772,3.501445,1.5311416666666666,1.5311416666666666,3.52425,0.45301888888888886,3.60159,3.837965,2.68918,3.99675,3.242755,2.55474,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,0.247639,2.362395,2.945405,3.508525,3.1167000000000002,4.62136,5.75714,2.840335,2.1032866666666665,0.9470900000000001,3.56956,0.68035,5.2546091666666666,3.1513225,2.332705,0.68035,2.66427,2.682245,0.939745,3.9193350000000002,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,0.1584657777777778,4.255565,1.6129725,4.623955,4.2128,1.7714020000000001,4.636675,4.215975,5.2625,4.46154,3.4432196428571427,3.367785,4.44015,2.02029,5.412325,4.14244,0.7209357142857142,1.4115771428571429,1.3756857142857142,3.2832666666666666,3.2832666666666666,2.9200633333333332,3.83271,4.25382,3.535005,4.03046,2.859026666666667,1.9522666666666666,0.6006271428571429,4.09692,3.13189,2.67908,4.386515,3.312725,3.0832837499999997,5.20225,4.467185,6.6183175,4.137585,4.690745,5.6425,4.437785,1.2392614285714285,3.08379,5.3401499999999995,33.269291844516594,1.2074033333333334,4.23822,2.95159,4.44425,4.001415,5.1936,5.1674,0.41145,5.12905,4.438415,1.997365,2.170355,3.772635,1.588385,2.474285,2.198585,1.691055,2.88449,2.4395366666666667,2.92834,2.54203,0.6007523076923077,3.091275,3.809455,0.3588078947368421,2.432,2.61907,3.01655,3.88073,1.85276,4.313595,3.927975,3.124965,3.725785,3.144015,4.168485,2.96052,3.88825,2.18043,5.3401499999999995,3.531965,3.132305,2.939095,1.703322,3.888905,3.44455,6.959828333333334,3.355925,4.63122,6.1837575000000005,5.159195,2.2831675,4.385215,5.740745,7.440016,2.463083333333333,2.50958,4.862695,5.725883333333334,4.40415,3.180705,5.475333333333333,2.6305,1.6703775,2.0930525,59.902380038883976,5.1914,4.23831,2.61505,0.846978,2.72217,2.9296933333333333,3.2692833333333335,0.8084033333333333,4.320585,0.8164422222222222,7.604059642857143,1.993694,3.442833333333333,1.7340440000000001,2.94592,2.5897466666666666,3.0088333333333335,2.4929366666666666,2.34142,3.4558666666666666,1.60857,5.624668333333333,4.113833333333333,1.510835,2.6691533333333335,1.41648,1.4498,7.69478,5.88275,3.414805,4.21253,5.1028275,1.4547,3.3654333333333333,3.22989,1.840715,5.44275,3.64877,3.91577,1.5422525,2.8881908333333333,3.532133333333333,4.04994,5.7591,4.269285,4.38825,2.3910775,3.76463,4.405166666666667,3.18132,1.443216,4.06116,3.19089,4.22717,4.9123,3.852765,3.89283,4.46629,4.343615,4.34188,4.3934,4.00744,3.1769866666666666,3.72201,4.16134,3.12542,3.816855,3.7227,1.6274199999999999,1.6274199999999999,4.28493,4.83646,4.96592,3.621195,4.838485,3.2675533333333333,2.757635,4.768245,5.47905,0.7496863636363635,5.5164,6.6182125,5.72775,5.7746,0.9700388888888889,3.26114,0.89331,0.89331,0.89331,3.634445,3.3723666666666667,2.500173333333333,3.5982333333333334,0.993805,5.02065,5.4431,3.050205,1.6235725,2.11228,4.135795,3.688855,3.80661,3.4032959999999997,6.63215,3.614405,2.57627,4.78144,6.95595,2.4817,4.27729,3.74285,3.187255,5.3586,4.167605,4.803285,5.8458,3.17803,3.4777277777777775,1.9060933333333334,1.9060933333333334,0.71992,8.593492,2.014625,5.82885,5.4376,4.257665,5.15485,3.85606,3.0586399999999996,4.331425,7.44570125,5.69198,2.38278,4.283745,0.941929,3.76095,1.9867033333333335,0.88324,1.191957142857143,2.6955466666666665,3.002423333333333,2.8271933333333332,1.0880657142857142,2.7087,3.086676666666667,0.9083077777777778,2.6725600000000003,3.2143466666666662,1.6810120000000002,1.7594100000000001,2.8451533333333336,2.9869966666666667,2.8324466666666663,2.475823333333333,1.7325579999999998,5.19495,4.11983,3.959145,4.291935,5.17175,3.306465,4.47675,6.5229,5.033,4.284705,3.94537,9.968885,8.63562,2.993313333333333,3.42745,1.8129366666666666,3.933295,3.279105,4.623825,0.9980316666666668,3.710875,3.613205,1.63833,4.04014,3.083095,4.223085,2.630655,3.87867,6.77065,7.484943333333334,3.67801,1.5659433333333332,1.5659433333333332,1.5659433333333332,4.61307,1.1751500000000001,1.4442125,0.47668555555555553,4.24748625,3.0406333333333335,3.525705,1.01165,1.172205,2.945895,4.341935,3.792275,16.362143440476192,4.424295,4.632685,5.9997625,2.8043366666666665,3.569385,2.680615,0.9108577777777778,1.43499,3.63995,3.619285,4.13947,4.747155,4.52277,3.91206,2.762138666666667,3.72045,5.3511,0.561215,4.765425,2.2942825,3.92886,4.533735,3.394833333333333,2.2657266666666667,4.084341666666667,1.8001833333333332,3.6427,6.1708,2.99751,3.359455,4.406525,3.93641,4.41751,3.9414,3.320465,4.275325,4.688355,4.945825,3.69072,4.38517,3.76625,1.0945328571428572,1.35944,5.692338,6.0426,4.01673,4.99768,2.506625,2.5854666666666666,2.7986633333333333,5.67869,1.8476725,1.964905,2.9449166666666664,3.0243,3.319876666666667,4.474465,3.142825,4.993595,1.25774,4.757905,0.9086866666666666,4.14318,3.35314,1.6916600000000002,4.410025,0.9552122222222221,4.962885,5.6817,4.899425,4.36277,3.8160083333333334,3.99251,3.0510466666666667,5.28355,5.9601,2.7883240000000002,4.106225,2.47322,2.6934,2.027855,2.600915,3.23567,5.0155,1.075815,4.480125,1.35624,3.377645,1.6458966666666666,1.075815,0.19703216216216216,3.5749,3.0656,2.2383145833333336,1.9465633333333334,2.723305,1.1260525,3.85114,3.510235,4.60251,2.574593333333333,6.4147,6.7577975,2.72362,3.2766466666666667,2.6569933333333333,0.799592,2.4210966666666667,6.12205,4.4317,5.61705,4.66113,2.1560099999999998,1.5321966666666667,4.009535,1.7346625,2.1359725,1.8263575,2.2805125,1.751005,1.9855125,2.0550925,2.144575,1.8065125,1.329337142857143,1.408215,2.0607875,2.0322675,2.2774,2.4460833333333336,0.5347106666666667,1.0974819999999998,2.7803466666666665,3.269106666666667,1.9370725,1.9165633333333334,1.6055825,3.576525,2.2312933333333334,2.694895,3.36207,5.68315,3.90065,2.9078166666666667,4.40266,1.6983208823529412,3.7906425,23.179881,4.650763333333334,5.7524,4.46209,2.1622533333333336,3.82591,4.86408,2.244825,5.11445,3.3026733333333333,0.78341,3.075795,4.547705,3.90816,4.16771,1.4124999999999999,2.02876,2.5074833333333335,2.15014,1.4921285714285715,3.5005333333333333,5.1256,4.270575,3.322935,3.885135,4.885955,3.334315,4.602805,1.257325,3.208345,4.149795,4.69584,1.822824,3.248083333333333,1.8217124999999998,1.8217124999999998,3.56041,4.682385,2.876916666666667,2.89114,4.014565,3.82116,6.594837500000001,4.70728,2.380275,1.43499,2.77643,4.40924,3.06075,2.562581428571429,2.562581428571429,3.243063333333333,5.09695,3.67591,5.232453888888889,2.58898,3.331481555555556,0.6347122222222222,0.6347122222222222,0.6347122222222222,3.50419,3.82707,3.8625983333333336,5.73835,2.2740575,4.80226,4.77661,4.909695,3.23107,5.22285,2.65179,1.3775671428571428,4.117045,3.9697,0.4835357142857143,4.319533333333333,4.68297,1.4923633333333333,5.0743,5.12595,4.5929,4.24799,3.910885,2.881885,4.60437,1.6871040000000002,4.5822,1.608935,4.22557,5.94115,1.1207975,3.222115,7.163705,3.70859,3.455633333333333,2.22309,3.948135,5.61905,3.0222266666666666,7.511326666666667,4.31659,2.2413466666666664,3.106866666666667,2.74682,2.5042233333333335,2.724743333333333,1.89021,5.1314,0.61834,1.8254424999999999,1.8254424999999999,3.172075,3.76929,2.30417,3.05896,4.374335,5.01245,4.295265,1.3417466666666666,4.809523779761905,4.379995,4.606425,3.475245,3.828180166666667,3.3814075,0.4467726666666667,2.780373571428572,0.97080625,0.4467726666666667,4.369305,0.8617044444444445,4.038805,4.003395,6.538816000000001,2.19185,1.0611625,1.14443,2.41675,2.8895466666666665,1.3947933333333333,2.47757,3.34804,3.65399,2.0726066666666667,2.25721,4.34905,2.8821775,3.89277,5.70955,3.38705,4.995955,6.8941349999999995,4.545905,3.601105,4.511325,3.747285,4.05268,5.18965,5.5312125,5.3187,2.40726,0.9669233333333334,3.60321,3.875425,4.178575,4.47992,4.02485,5.2606,2.6525666666666665,2.5355933333333334,2.8757433333333338,2.1275933333333334,2.0719766666666666,2.95227,3.07934,2.3943966666666667,3.775365,5.07845,4.16146,5.1506,2.47539,3.5865666666666667,2.911225,0.7355714285714285,4.155345,3.52938,4.55609,2.871563333333333,5.36876,3.327,4.594865,3.86787,0.5707684615384616,0.5508564285714286,4.220255,2.7260555,3.14745,4.43492,3.947205,1.698856,5.35005,4.262545,2.4497066666666667,2.6205866666666666,2.199955,2.0151375000000002,3.620433333333333,2.9942499999999996,3.11588,2.961726666666667,3.5353666666666665,2.698125,3.1031033333333333,3.5286000000000004,4.4729849999999995,0.54431,0.54431,0.54431,3.1004443333333334,3.4707666666666666,3.664733333333333,2.7010466666666666,2.879906666666667,1.07242625,2.757206666666667,3.0113133333333333,1.7988675,2.54607,2.47176,0.9791311111111111,2.8930583333333333,4.671235,9.847892916666666,1.5438526666666668,0.5732039999999999,3.872445,0.5732039999999999,0.5732039999999999,0.5732039999999999,0.5732039999999999,2.14045,3.8531259999999996,3.88613,4.919655,6.0157,2.827663333333333,2.733503333333333,3.06963,3.351565,4.75531,1.020215,2.2169633333333336,3.1542033333333332,2.5263133333333334,2.9202866666666663,3.76152,2.2734799999999997,2.43303,1.1866666666666665,4.79235,2.764625,3.41499,0.891655,0.665905,0.665905,0.9012729565217392,1.7929279565217393,0.9012729565217392,0.9012729565217392,0.34752695652173915,0.34752695652173915,0.9012729565217392,1.8025166666666665,2.3829366666666667,2.93628,3.03486,2.59548,2.6446166666666664,3.201973333333333,2.8320133333333337,4.53114,3.50276,1.92332,2.295846666666667,1.756025,0.18073868372606772,0.18073868372606772,0.18073868372606772,0.18073868372606772,2.52371,2.3688366666666667,0.945466,5.14725,0.7428227272727272,1.685332,4.655340833333334,5.1203,4.16889,2.988565,4.375865,3.47435,1.83434,1.2693025,4.128675,4.532685,6.5463,2.319225,1.3976466666666667,1.95747,3.0236666666666667,1.44782,2.76202,3.084626666666667,3.257406666666667,4.411205,3.87448,3.0726,4.911925,2.4299399999999998,3.96108,5.56605,3.74258,4.17453,4.56865,5.3928899999999995,4.506039166666667,2.8835154285714286,5.137465000000001,4.21562,6.6317,4.397475,4.396485,2.24837,3.062985,4.28624,4.77898,4.314495,3.89196,3.603025,3.88696,3.926155,2.39097,5.4341,3.616085,7.646179999999999,5.9714,5.8994,4.883545,1.4497714285714287,0.9602080000000001,0.6040253846153847,1.792612,4.931725,5.588,3.92305,1.606704,4.138935,3.11533,5.064,5.25245,6.1358369999999995,4.04728,3.12096,1.553938,5.370915,3.97943,3.149035,1.7481625,0.98002625,3.79579,3.14179,3.6500075,3.664,2.16236,4.40618,1.6118566666666665,3.010006666666667,2.33274,4.60877,6.4372,4.863415,2.2699325,1.60689,5.58035,2.8558166666666662,8.94083,2.8031,5.18795,5.9263,4.629065,5.2095,3.58702,5.10705,2.2096375,3.842075,4.863619,2.45512,4.389625,4.556255,7.18383,5.08745,3.1488933333333335,4.168355,3.75304,2.8821775,3.60808,5.2224,5.67615,2.34267,2.95879,3.167426666666667,2.4032,2.59574,4.4067,5.90185,5.2015,4.68915,4.982795,4.153435,4.57602,0.6376146153846154,3.0658,1.1576857142857142,30.9699989169039,2.49601,4.566695,3.094865,4.612365,1.693572,2.489993333333333,3.1512253571428572,1.5919728571428573,1.5919728571428573,1.5919728571428573,1.5919728571428573,1.5592525,3.66833,0.505141111111111,7.898361527777778,0.505141111111111,4.400305,4.851865,2.034625,5.32285,2.804425,4.069482666666667,2.39988,2.5120733333333334,2.7588333333333335,2.165103333333333,0.6211176923076922,2.6192033333333335,0.7222400000000001,3.3993,2.0859133333333335,2.468032,1.1978583333333332,2.468032,6.06575,8.107050000000001,4.642175,4.33103,5.7442,5.78385,7.342953333333333,3.454445,1.43457,1.43457,2.440793333333333,5.0156,3.66422,4.445335,5.931626666666667,3.95746,2.68633,3.89357,3.516625,3.594365,2.302475,0.9784219999999999,2.235545,3.851455,4.03891,5.308256666666667,2.0222,3.865615,1.249982,3.28657,1.31822,3.4756666666666667,2.953196666666667,2.8320933333333334,3.344,2.9076966666666664,5.05955,0.6682661538461538,3.648165,3.6859333333333333,2.44548,2.387513333333333,4.29259,3.3795333333333333,2.0735033333333335,4.700105,3.630535,4.98494,3.84813,3.64355,5.64995,4.970735,2.13851,5.7546,2.366575333333333,1.84638,3.173583333333333,2.2878633333333336,2.9543733333333333,2.608665,1.8680566666666667,2.997595893939394,4.14187,3.15979375,2.3817816666666665,2.3817816666666665,2.5845,3.543885,4.068645,0.6101718181818182,3.23814,3.23904,8.83648,0.861090909090909,4.454045,3.52661,5.47775,3.36292,3.82854,2.377455,3.768075,2.845865,5.6491,2.6504691666666664,1.01361,3.844315,2.689853333333333,3.76569,2.66329,3.655475,3.798295,3.695815,5.094601,3.27784,2.14064,5.2877,2.5339066666666668,4.435355,4.910085,4.694525,4.59601,4.061685,2.95806,2.1902433333333335,2.7436633333333336,2.71625,2.778325,3.1395633333333333,2.6972730952380957,4.660190000000001,2.686726666666667,2.4856233333333333,6.272897500000001,4.940265833333333,3.763185,3.129963333333333,3.7383,4.06632,3.61424,2.005655,3.86856,5.099,4.846035,1.350735,4.133085,2.708743333333333,6.724225000000001,4.83023,8.644652222222222,4.09645,3.87329,2.10485,4.15349,5.60104,8.0325,4.42308,5.87449,3.58448,3.148175,3.814155,1.7447120000000003,4.744172,1.44017,3.616035,4.59399,3.3825333333333334,0.8215325,9.282858333333333,1.1752333333333334,2.06497,2.5254266666666667,1.9038666666666666,3.5026666666666664,1.3527016666666667,3.769135,3.72114,2.2806,4.178875,1.2313475,3.721515,1.4101566666666667,3.1051755,3.915675,5.6149,1.6722675,5.962829583333333,2.6021346666666667,7.94102,4.48299,2.86969,4.06418,3.409855,1.2487954166666668,7.82542,3.11627,3.361295,2.46204,4.128735,2.1262,3.0890825,2.24619,3.968505,1.33931,5.754,2.72437,4.23754,0.811854,1.8499403333333335,3.8358,5.1633,5.16447875,1.5480880000000001,1.5480880000000001,5.92695,4.664765,5.729,3.78413,3.43289,9.172055,4.31311,5.56195,3.91895,2.50385,2.2113219818228367,0.3865285,0.2086193548387097,0.6758082437275985,1.1489852380952381,0.7394379262672812,0.2086193548387097,1.3878335,0.4671888888888889,1.5355137380952382,2.0636417437275982,1.9427925,2.2685275,2.1752,5.04195,6.116128333333334,4.853465,5.1433,4.406645,5.1362,1.27322,4.82403,4.042045,5.69055,5.3654,4.9012,5.6406,5.92085,5.57245,1.24806,1.2503814285714285,1.820524,6.171319,1.345514,5.3464,4.804675,6.61640625,4.88566,5.46375,4.566185,4.722565,2.4451075,5.201,5.3925,6.428731666666667,4.988145,5.9027875000000005,5.7629,3.80737625,4.278375,3.6968333333333336,0.971627,3.6187666666666662,4.574085,1.1105425,3.7349,4.707175,4.5438,4.94782,2.519675,3.3247,2.7033166666666664,4.533615,2.185435,3.513025,1.2699283333333333,3.322045,3.73514,3.945815,4.858545,3.370260416666667,0.59008,6.0634,0.97487375,3.54833,2.821566666666667,3.74494,2.0270366666666666,3.774065,3.816388461538461,3.1751566666666666,4.484295,15.384757214285713,5.1741399999999995,2.2674375,8.54804,1.5321775,4.011065,2.99415,2.8747166666666666,2.0365366666666667,0.21750173913043477,2.7111866666666664,4.564365,1.7352340000000002,2.2742533333333332,3.264623333333333,1.89438,2.2145,1.6201142857142856,3.315,4.79995,5.03815,3.318285,0.50108,2.3424566666666666,4.7319,2.84282,3.930495,4.411735,4.2141,5.51885,0.47981529411764706,2.562726666666667,2.562726666666667,5.2321,4.833525,4.90458,2.556,3.3953666666666664,2.90207,5.3053,3.577345,5.501277777777777,4.75509,4.37352,4.569925,2.54005,1.8771719999999998,4.36143,4.0111,4.069865,2.83495,1.808146,4.709545,4.294235,3.851145,4.526525,3.77797,4.04175,0.6184879999999999,3.095055,0.570115,3.1181433333333337,3.4455,4.10185,17.823664285714287,3.636165,3.79095,2.4123466666666666,0.959015,2.25169,2.575126666666667,1.522728,2.381275,2.454785,4.74703,2.23686,3.91198,4.266655,2.11586,3.960035,2.965723333333333,4.721515,5.1241,5.3553,1.51859,2.25343,2.44245,4.672995,4.93731,1.107761111111111,5.08805,3.855495,5.5527,4.486755,1.7426700000000002,4.491035,3.502925,3.36277,3.524185,4.107595,3.0533966666666665,0.65781875,7.65386,1.351938,0.20210277777777777,0.20210277777777777,0.20210277777777777,4.820175,3.952595,2.7687733333333333,4.18331,2.94283,4.03075,4.327222142857143,3.9471999999999996,8.435466666666667,4.414315,7.24922,0.8063825,0.72099625,2.514525,4.337755,4.301595,2.3887266666666664,5.29875,5.7825,3.41138,3.47326,4.25637,2.1380666666666666,4.99622,4.6224195,2.3554733333333333,3.033523333333333,3.0691666666666664,2.768455,5.9741,3.7554,0.6371421428571429,3.71057,3.252245,4.23521,4.846793333333333,5.0467,3.15045,5.22715,3.6266,13.441516666666667,4.7195,6.956111083333333,2.47902,6.494097,4.1478,4.051705,1.9720675,2.2959825,9.64359,2.270426666666667,4.184333333333334,4.1356,3.7606333333333333,3.4279333333333333,2.9783500000000003,2.08103,2.226995,2.974743333333333,1.7615200000000002,3.9141333333333335,2.4348233333333336,2.65753,3.3232433333333335,3.4009666666666667,2.4720199999999997,2.4720199999999997,2.50613,3.5692,3.3394333333333335,2.19137,3.1168899999999997,4.200466666666666,2.8050866666666665,2.717443333333333,3.8443666666666663,2.243326666666667,1.9304425,3.782833333333333,2.90898,1.648838,4.130433333333333,2.2709566666666667,2.389956666666667,2.82384,2.251075,3.4439333333333333,5.4774666666666665,2.4143133333333333,3.875033333333333,1.82678,10.744150333333334,1.8596300000000001,1.93865,2.14802,0.9832455555555555,1.582282,4.67481,2.7532880000000004,2.7532880000000004,1.65379,1.5538866666666669,3.57792,3.712701666666667,2.0645233333333333,1.4480700000000002,1.7068699999999999,4.6918326666666665,3.8205333333333336,4.041300000000001,8.209743333333334,3.035557142857143,2.55339,3.383084099378882,4.190166666666666,1.9304425,3.2827699999999997,2.60042,3.3594000000000004,3.4182550000000003,0.960615,3.3341635,2.84494,2.8484933333333333,4.051005,3.234443333333333,0.6606636363636363,1.8418304761904762,5.24265,2.496979,3.3295,1.58711,1.58711,2.0945225,3.6780333333333335,0.936553,2.252035,4.641493333333333,4.641493333333333,0.6315809523809524,5.465233,3.41849,3.839645,4.789785,1.2366357142857143,3.3737,3.5393666666666665,4.798406666666667,5.8261970000000005,2.3997466666666667,0.632958,2.7050933333333336,2.600886666666667,3.023125333333333,2.3018899999999998,2.3733400000000002,2.78871,2.364685,2.512793333333333,0.7971809090909091,4.69355,4.779936,1.4070233333333333,1.6778,5.25245,2.22891,1.679655,4.17205,1.325726,3.64169,2.537325,3.5688999999999997,8.877422916666667,4.5600725,4.646915,5.1527,2.415375272727273,0.79447,1.81736,7.06576,1.85416,4.193625,4.011555,3.399935,21.294989166666667,3.3081133333333335,1.3909166666666666,1.0341425,3.1667466666666666,1.4535099999999999,4.143636,5.19215,3.367224,3.3077966666666665,1.0360866666666666,1.4250333333333334,2.96569,0.570706875,3.511566666666667,3.6674333333333333,3.0561933333333333,2.4713613333333333,2.46978,2.7832333333333334,1.9527933333333334,2.7945100000000003,1.56327,3.8035,1.454155,3.888935,3.9179,2.46219,5.37785,3.27196,3.99714,4.956345,4.38915,3.01465,2.7427766666666664,2.3302,0.9485871428571429,0.9485871428571429,0.9485871428571429,2.381305,3.3388666666666666,2.6300133333333333,2.48875,2.3152933333333334,1.9738675,3.54776,4.98436,3.778185,6.491009999999999,3.169165,2.5144,1.923,0.9683566666666666,2.458486666666667,3.92737,2.49839,2.6119233333333334,2.3918466666666665,2.35519,2.6142166666666666,2.71456,2.758176666666667,2.6999566666666666,2.316666666666667,3.273616666666667,2.0985733333333334,2.17844,1.623015,1.601665,3.0746233333333333,2.75618,2.0426125,3.97912,5.16445,2.9097566666666665,2.386311346153846,4.93704,3.98285,4.780655,5.62495,4.51249,4.39752,6.2856725,1.2148725,4.37854,2.70064,5.28445,5.5148,3.63874,3.637655,2.1757275,7.88275,2.746425,0.84655,7.56734,5.41703,5.899901666666667,4.255955,2.78654775,1.74393,5.10345,4.195635,4.247695,5.07775,2.525145,4.19441,4.515695,1.756025,3.8579,2.8772,1.3759283333333334,4.67593,0.6040588235294118,4.279775,3.505185,4.586505,3.09988,1.845265,3.16039,1.87055,1.4202125,2.6792200000000004,3.4302333333333332,3.1991133333333335,7.224594102564103,1.824525,6.4079625,9.43736,5.89705,3.272265,1.2836128571428573,2.9045366666666665,1.2836128571428573,2.83215,2.0953,0.41661176470588235,1.2510480147058822,0.41661176470588235,0.41661176470588235,0.41661176470588235,1.2510480147058822,1.2510480147058822,0.41661176470588235,0.83443625,4.62277,3.449255,3.21946,3.440925,3.596565,4.268875,2.7975503333333336,1.6334440000000001,6.832935,3.0166,4.23671,2.585173333333333,1.0570545454545455,1.18752125,4.511605,3.66006,1.1142444444444444,1.404714,0.7289890909090908,2.9492958311688313,4.249355,4.89313,3.3411000000000004,5.393735833333334,0.533896923076923,4.09293,3.287235,2.793366666666667,2.4761366666666667,3.4982333333333333,2.481056666666667,2.8956033333333333,2.64742,3.093695,3.640375,4.89487,4.837285,2.12678,5.0148,4.11158,3.114115,3.84518,3.32584,0.32613200000000003,4.969595,3.61345,3.04009,2.964612,4.254995,4.02804,2.002745,3.191165,3.871365,8.087340000000001,5.14475,5.25555,4.736135,3.6341200000000002,0.89243,2.131285,2.202715,1.467665,1.8545066666666665,4.422685,5.4266,4.06789,5.0129,3.4032959999999997,2.5944766666666665,0.9432566666666666,3.978775,1.2183983333333332,1.0834733333333333,3.422505,3.749355,4.54687,1.24627625,2.443096666666667,8.44184,3.14603,2.9571433333333332,0.86625,4.01797,11.877256666666668,3.45023,4.15161,3.20274,2.831695,4.567105,5.1643,2.1023,4.15489,0.5337007692307693,4.84054,2.2207525,1.673,1.673,3.5325333333333333,4.047635,1.4353366666666665,3.973095,1.2239457142857142,3.899015,2.4573175000000003,3.4418,4.931755,3.441445,3.9744383333333335,2.70365,2.8737333333333335,2.8737333333333335,10.805544999999999,0.723442,2.895905,3.1451366666666662,2.1640725,2.0291125,0.8811842857142856,1.4415875,1.1108442857142857,2.013575,4.79242,2.51296,4.2831,2.00616,4.10432,3.905835,1.6231583333333335,2.022815,1.0121383333333334,6.045605500000001,2.012475,2.06097,1.718814,1.742764,1.0341425,2.2767558333333335,3.65553,1.9249633333333334,3.0920166666666664,2.4764500000000003,2.6866800000000004,1.6401766666666668,3.094723333333333,2.60132,1.3853966666666666,1.8296266666666667,2.7550833333333333,2.543946666666667,2.3287066666666667,1.1886366666666668,2.519746666666667,2.03928,2.6728433333333332,0.31875684210526317,0.415365,2.36862,2.1634866666666666,2.992055,3.1380266666666663,2.749435,4.73065,5.541,4.497805,4.784795,4.227555,3.920085,2.8838166666666667,3.79197,0.7247672727272727,0.063355,6.9652,0.063355,3.466665,2.986145,5.33365,3.63064,6.21575,4.49824,2.0902233333333333,2.4499333333333335,0.9349599999999999,5.2084,6.4035,3.24283,5.394,1.70451,3.753575,2.0237869565217395,3.0612166666666667,3.1843500000000002,4.04832,4.976733333333334,3.36244,2.2286766666666664,2.2286766666666664,4.018165,7.71828,3.499425,2.1276533333333334,2.5205800000000003,4.335145,2.95646,4.94639,3.50831,0.9634377777777777,4.274775,2.3301366666666667,2.7059366666666667,4.271875,1.1131933333333335,2.4389766666666666,3.96616,3.33799,4.58784,2.96314,2.87638,3.87131,3.850205,4.264585,5.02025,4.393405,3.1563149999999998,3.794965,2.648746666666667,2.5259566666666666,2.51736,3.9440000000000004,4.157805,2.9639233333333332,4.918456666666667,3.866555,3.509925,5.282,4.2705,3.38641,1.463312,1.3958325,4.09452,3.354366666666667,1.60053,2.8244733333333336,3.389485,3.08831,4.057771111111111,3.0058333333333334,2.2971508333333333,12.614965638888888,2.4192033333333334,1.802634,4.62597,1.03729,3.13156,3.636155,4.64546,2.86438,1.1937333333333333,2.2711,2.574593333333333,1.480564,4.374865,0.994015,0.994015,3.7941400000000005,1.7918666666666667,2.0022733333333336,1.76665,3.190105,5.49225,2.19879,3.039515,3.4288183333333335,2.7826066666666667,2.8882133333333333,2.00348,6.32405,5.74425,3.70016,0.6864484615384616,3.950125,3.494605,1.0402,5.5797,3.3482333333333334,8.466883333333334,4.786725,4.49986,3.57565,1.4945825,3.04621,4.856165,4.352635,4.0777,3.978465,4.263295,3.36721,3.5150666666666663,3.5150666666666663,4.17519,2.7082783333333333,3.767805,1.797485,5.543184999999999,5.179268333333333,1.4923633333333333,4.49222,1.01763,5.79075,3.874065,5.0175,4.48066,3.99012,2.652435,2.5008,4.267625,4.296395,5.02265,3.909095,1.92278,1.407862,4.4375,2.1280733333333335,5.31705,3.28289,3.646415,6.93712,3.850675,4.507115,5.20855,3.70078,4.593775,8.20758,4.15863,3.138405,9.231175,3.84291,0.5720935714285714,2.0316085286935284,4.58658,0.5976293333333333,4.784095,4.048875,4.81421,4.500785,3.240765,3.507895,4.53246,4.83557,2.595775,0.6938342857142857,4.567675,4.35009,4.38978,4.257665,2.789453333333333,4.3659,3.49212,0.771316,3.52674,3.741145,2.57005,3.2046966666666665,4.127545,2.133065833333333,5.43815,5.1283,3.6841725000000003,0.8809,3.174656666666667,5.520930833333334,5.520930833333334,8.542966666666667,2.00984,0.87287,0.87287,23.436755,2.586675,7.722898333333333,0.3667816666666666,1.3153933333333334,2.8285199999999997,0.9513469999999999,3.839075,3.79547,2.0880325,2.0880325,3.877695,5.0504,3.43002,2.6716758333333335,2.6716758333333335,3.580175,4.30506,3.81546,3.4582333333333337,1.9938,2.4877949999999998,3.9611300000000003,2.09713,3.560265,2.8966933333333333,2.8206342857142856,2.8206342857142856,3.4087333333333336,0.8124066666666666,2.435443333333333,1.5857866666666667,3.342166666666667,2.8652466666666663,2.6831833333333335,2.5153266666666667,4.36046,2.532645,2.753686666666667,5.186598999999999,1.321228,2.212115,3.094165,2.3897233333333334,3.83385,5.738432523809524,1.2942733333333334,3.735633333333333,2.4444375,5.32373,6.82774,1.5351775,4.648864666666666,4.8414573333333335,3.1743268571428573,4.577166666666667,1.0157928571428572,1.822824,3.087795,3.839367142857143,1.29343,2.38397,1.76403,1.92056,2.14141,3.81402,5.4375925,1.1408266666666667,1.3635485714285716,2.9264266666666665,12.856845,4.2841466666666665,2.7648599999999997,0.9381257142857143,2.4900650000000004,0.93018,3.2075533333333333,4.030171666666667,5.12815,3.5399333333333334,5.74265,1.647165,3.6117666666666666,3.641485,2.8701633333333336,3.90822,1.97321,1.0561433333333334,2.5081333333333333,2.5636766666666664,7.244258333333333,2.700087142857143,2.6951633333333334,0.733758,4.6897,3.5235333333333334,0.9678720000000001,5.7422208333333336,1.9229875,2.345146666666667,5.30785,1.2666777777777778,2.8096866666666664,0.996890909090909,2.9793633333333336,4.30794,2.93026,3.00916,2.3328933333333333,2.25978,4.64644,4.714405,4.909515,1.71763,4.483825,3.90524,4.362346666666666,3.42152,2.67704,4.160785333333333,1.018812,2.8655661904761907,4.73458,2.660825,4.080062916666667,1.3404125,2.4744433333333333,1.9061800000000002,1.9061800000000002,7.042423333333334,3.2759466666666666,5.637264166666666,3.42367,1.70854,2.55206,4.579066666666667,5.802333333333333,8.257606666666668,4.724707,2.65242625,1.8473766666666667,1.9012108333333333,4.143293333333333,4.04045,1.4815200000000002,2.08137,3.0712187500000003,1.1198675,3.0163733333333336,18.984691333333334,2.983373333333333,2.947953333333333,2.9764033333333333,2.9482166666666667,2.4528733333333332,2.0149500000000002,3.14758,3.6288,2.4341833333333334,2.6054633333333332,5.737316666666667,2.4163799999999998,4.474907142857143,2.803591142857143,2.5064831428571432,1.4089099999999999,3.783444444444444,2.1518025,4.06305,4.875865,3.736335,2.9956758333333333,3.28027,2.247123333333333,3.3904333333333336,3.576233333333333,3.584633333333333,3.3209133333333334,0.8443618181818181,5.2274,2.482085,3.17755,2.7594755555555555,2.03657,2.0212354166666664,2.0212354166666664,3.1903237499999997,1.8009070833333332,4.702025,4.276195,3.45646,4.35112,4.492265,4.5283275,4.5283275,4.04027,2.90783,4.16691,2.86109,1.6193079999999997,2.315636666666667,4.43005,3.868915,2.710625,3.64529,5.4580400000000004,3.6180333333333334,6.260736964285715,2.994715,0.858346,0.858346,3.397275,4.707755,3.922515,3.3586720000000003,2.4082833333333333,1.8467366666666667,1.6024733333333332,2.93629,5.757421,1.4537766666666665,4.03267,3.7357666666666667,3.90805,5.0855,4.91104,4.6934254375,3.2937100000000004,2.2757975,4.115575,3.98379,2.0981125,1.0915240000000002,4.040685,2.80285,6.361683333333334,3.5588333333333337,2.644275,3.26094,3.71167,3.69397,4.493415,2.96992,4.526945,3.634535,4.35219,3.730575,3.29962,3.71471,3.79901,2.6966566666666663,4.448235,3.211,4.866365,0.6056544444444445,2.22998,1.83063,2.11902,1.8175475,2.510473333333333,2.648703333333333,1.8024366666666667,4.646235,4.92409,1.9061033333333333,3.919825,4.270745,2.3768025,5.956793333333334,4.093275833333333,4.22837,5.0024,7.12848,2.11649,2.9664033333333335,1.78857,2.7709466666666667,1.83354,1.841155,4.008425,3.59969,5.4521,0.9936966666666667,2.98458,4.349805,2.217485,4.818295,3.710785,2.569415,3.7730333333333337,3.32415,2.1026425,1.8379455,2.72635,3.22285,3.3312,1.892045,2.7676985714285713,2.7676985714285713,3.527525,3.43525,20.132021369047617,1.1932033333333334,5.3824708333333335,1.8208375,1.9232733333333334,3.698635,3.779985,1.8791475,3.78652,4.69761,1.2776416666666668,1.2776416666666668,1.31218,1.7659799999999999,2.28957,3.158516666666667,4.442436666666667,3.426875,3.517333333333333,0.49359631578947366,3.400966315789474,2.0292666666666666,2.166025,4.405505,3.375245,3.964085,3.57746,4.507285,4.371185,2.0683675,3.724995,5.725883333333334,2.18092,3.5782,5.1497,2.086985,4.746135,5.85445,1.2295671428571429,1.983474,3.6161999999999996,0.6960271428571428,3.0889,3.286965,4.782625,5.00135,2.7782372222222222,7.63415,2.91759,2.6596766666666665,0.4321635294117647,4.297035,5.215375238095238,2.9895504761904763,5.43635,3.81512,2.4890922222222223,1.7237120000000001,5.357645,4.216405,4.19645,2.754625,1.8765575,3.481765,4.1100666666666665,2.8922233333333334,1.9739475,3.9817316666666667,6.315205,2.725055,3.946205,3.6163,3.931935,1.4982142857142857,1.4982142857142857,3.2399799999999996,2.992513333333333,4.598835,4.743125,6.69595,3.409465,2.81995,2.1890425,1.5139833333333332,1.367562857142857,4.8697,5.73415,4.861575,6.03425,4.338245,6.764340000000001,3.457885,2.839586666666667,3.913510666666667,2.08024,3.024766,1.6181360000000002,4.360835,2.364596666666667,4.02087,4.88994,4.176675,2.7273300000000003,2.8558166666666662,1.3809785714285714,2.3274775,3.7412666666666667,1.853215,0.61541375,3.156503333333333,2.5797333333333334,2.3943966666666667,1.9424233333333334,1.849575,1.5295999999999998,0.6807581818181818,0.6807581818181818,3.4228,1.7728025,2.303165,3.084415,5.9578,4.11971,5.9737,4.250505,4.210785,2.1520183333333334,1.3350266666666668,2.50168,4.27214,1.052855,3.22113,2.86207,2.996605,2.32244,4.067775,2.742315,2.0541833333333335,1.0107871428571429,3.33047,7.90795,3.310475,1.5048992857142856,4.19226,3.34549,2.61878,3.531005,2.79947,1.7809533333333334,1.0335775,3.6694,2.4548708333333336,2.3225666666666664,1.6644166666666667,2.177146666666667,2.25993,2.466483333333333,2.8853150000000003,1.26,1.83922,1.0810775,6.197925,5.76095,6.1201,4.061975,4.469825,2.91221,1.7181352136752137,4.7074,4.99607,2.653245,5.1823,2.159995,4.68497,0.95495,4.16344,3.915425,1.8703775,7.71543,3.5853,1.863495,1.87543,1.798015,2.550175,3.3958333333333335,1.181482987012987,2.7161299999999997,5.6207,3.394725,3.90009,5.39375,5.30715,5.68625,0.83952125,4.127135,4.631115,4.21391,4.755255,3.9601516666666665,4.75042,4.790495,2.95137,1.7053166666666666,1.7053166666666666,4.97635,5.304525,3.132985,2.5947633333333333,4.00504,4.543915,1.517436,3.963855,5.13265,3.609925,4.019955,3.0223266666666664,2.7505733333333335,4.923355,2.47485575,10.7098446716176,1.9139799999999998,0.78890875,2.6016966666666668,1.70585,2.70315,2.090655,1.841394,2.7390833333333333,5.09825,5.43315,2.95527,1.6249033333333334,6.2362433333333325,1.5277999999999998,2.8562433333333335,0.5145857142857143,4.1366499999999995,5.54445,3.58123,4.666895,11.657805,5.1456,3.194596666666667,3.3809,4.429935,2.99509,4.550975,0.83422375,1.0798666666666665,0.8074618181818182,5.64625,4.12124,1.714172,4.6584840000000005,4.479095,6.48905,4.80375,5.0213,4.45826,6.06185,3.920585,5.4698,3.22744,1.185444,3.955245,5.488,2.729065,4.028315,3.07039,2.704095,1.228755,5.0248,3.93174,1.23023625,3.5079,2.8823600000000003,2.455976666666667,2.498136666666667,2.5132666666666665,2.9389366666666668,0.7089736363636363,2.2781066666666665,2.650873333333333,2.64933,1.9347333333333332,3.1782,1.94856,1.4493566666666666,2.3610275,1.8785975,2.1110275,3.168563333333333,2.6754233333333333,0.639546,2.8198733333333332,3.49134,4.67455,2.260876666666667,3.699555,5.2265,4.90233,3.44299,4.161065,1.3756857142857142,3.33691,2.603536111111111,4.28263,2.668285,4.366235,5.26045,4.964885,4.02193,4.1470666666666665,1.032126,1.032126,2.286213653846154,1.6983375,4.167495,2.691992,2.691992,4.90949,5.9985,3.090625,1.200015,1.5343,5.79865,3.58133,2.4198833333333334,3.301335,2.686535,3.047795,2.4198833333333334,4.64421,2.98674,2.9145975,2.898425,2.026715,3.058505,6.4351,2.986075,3.516875,4.028415,6.65205,6.2891,6.704575,6.704575,5.46745,4.870705,0.5479830769230769,4.884335,4.370735,2.988235,3.03431,8.088521666666667,2.7320266666666666,3.973895,3.7151,2.7509766666666664,4.699855,2.183465,3.4046499999999997,2.965783333333333,3.4543666666666666,2.48204,1.60432,1.60432,3.67917,3.799575,5.16835,1.758382,1.474174,47.16295954545455,2.474153333333333,0.8051545454545455,3.2004900000000003,1.8304425,3.1481600000000003,2.7529566666666665,2.8708833333333335,3.04506,2.6701599999999996,2.0484466666666665,0.942375,4.467295,3.291035,3.532345,3.897295,5.21735,5.2063,5.1155,5.23955,5.1445,4.910335,5.44755,6.1717125,4.82795,5.2693,2.07016,3.68079,6.65015,5.0658,3.625465,3.875355,2.932895,2.486685,3.891395,4.63951,2.8364100000000003,3.922833333333333,1.654302,3.953315,1.325398,3.361395,3.9315,3.57596,6.474897500000001,4.097865,1.952665,4.101805,3.83833,4.016875,0.86686625,2.720185,2.9385,4.453875952380953,1.18965,4.68475,1.3417675,5.87395,0.7254444444444444,3.810765333333334,10.048990833333333,4.35705,3.306,3.12842,1.9007666666666667,4.248215,5.3295,3.001133333333333,4.48393,9.314611388888888,3.477266666666667,2.0135666666666667,2.8354700000000004,2.70018,2.8193,2.691216,2.4846533333333336,2.6128433333333336,3.22261,2.7373066666666666,3.0843633333333336,3.390755,2.27472,1.5441166666666666,4.867422,3.8728,2.63442,4.998484,2.80687,1.02317625,2.0318525,2.896103333333333,5.261465,2.9232,2.1156,2.1156,1.618715,1.589055,2.12554,1.969558,5.938415,4.569445,2.2046125,2.8274233333333334,3.541733333333333,2.0167325,0.5920566666666667,2.561776666666667,1.946735,0.5851276923076922,3.9532,2.583,2.619225,3.624585,3.5798588333333337,2.40471,1.6268133333333334,1.1672283333333333,2.055355,3.60222,3.838655,4.21258,2.84325,3.99271,3.616115,1.1488272727272728,8.963205,2.864445,3.19268,1.307825,2.90816,2.3519375,2.3519375,2.3519375,5.0881,5.65185,1.658675,5.08245,1.465876,5.569190000000001,1.4629780000000001,3.965685,4.28925,4.32213,4.804685,4.58881,2.051815,8.9221225,3.7769,4.909575,3.44421,3.98745,3.360466666666667,3.098986666666667,3.92639,2.6007333333333333,4.3475214285714285,4.461795833333333,1.534425,4.09744,1.534425,3.42058,4.494761666666666,5.0306525,4.494761666666666,1.8475466666666664,5.7061,4.40806,4.406735,2.7378133333333334,2.90292,4.25884,3.14134,5.201,0.49937785714285715,2.967966666666667,2.9986833333333336,4.814449166666666,4.750755,2.4021475,4.60658,6.152086666666667,3.45143,2.974235,3.0601,2.1437666666666666,3.938615,4.18247,4.64593,2.480645,3.759125,0.878486,5.68215,3.45309,4.055185,2.25055,3.1196300000000003,2.2388600000000003,2.865126666666667,2.7589566666666667,2.7595433333333332,3.155135,2.5194,2.5194,4.504816666666667,2.66816,4.49102,11.3949925,0.9501644444444444,4.26669,2.5475133333333333,2.3837433333333333,2.5496266666666667,1.4442125,7.542378333333334,3.3754333333333335,3.454735,3.7223716666666666,1.88328,3.817,4.124089361111111,2.03736,0.4470522222222222,1.465764,1.5523125,4.74362,2.957165,3.284135,3.7077366666666665,3.4498533333333334,2.323415,4.911855,4.48829,3.750075,4.768785,2.20241,3.898075,2.5283233333333333,5.603203333333333,3.207115,5.0906,4.11992,4.106795,4.204795,2.13623,3.881065,3.690505,3.23713,3.603295,2.743935,3.16584,3.766035,3.83168,2.6754833333333337,4.578545,1.4164766666666668,3.644355,2.75717,4.36516,4.31925,3.924485,4.969265,2.60738,4.110995,5.21215,4.17103,3.164543333333333,2.16425,3.07397,2.418605,0.9059733333333333,4.34295,2.01614,3.508125,2.753785,4.10986,3.00765,2.79908,3.246655,3.967955,4.549036666666667,3.94563,3.092985,1.6030733333333334,3.534705,2.42858,0.9233444444444445,4.127545,9.20928,3.41534,3.625675,4.712585,5.03855,3.741525,2.18063,4.12335,3.90327,3.329775,3.204235,3.617005,0.68166375,1.2416957142857143,6.473035,1.687735,2.6587,5.157659000000001,2.519675,2.13659,2.86382,7.58446,2.63503,3.916655,3.784535,0.7609777777777778,3.48528,2.75285,3.831975,4.005725,5.739978333333333,0.685146,3.24408,9.77903,3.25943,1.0664622222222222,5.115100833333333,4.82814,5.2466,4.07833,4.45205,3.296215,2.4958533333333333,7.32441,0.8184509999999999,3.49046,4.03206,3.095625,3.92961,2.24014,4.262685,1.7078,4.04584,3.990915,3.899805,1.64518,4.582335,4.46559,2.34017,2.13693,2.0954575,0.9678720000000001,4.192005,3.367224,1.418608,7.94852,5.8362,4.301075,3.98743,3.53522,4.393095,1.4658571428571427,4.276935,3.939405,5.2189,3.71834,2.4069333333333334,6.5001478418803424,0.8800375,0.8800375,2.549506666666667,0.9373957142857143,4.11197,2.85051,1.0741375,1.8113266666666668,0.4192808333333333,6.259635,0.9991575,2.819165,3.645285,4.015665,3.50936,4.070285,5.5104,5.5765425,3.295465,3.1785,2.49556,4.218205,4.18993,4.26082,3.76014,3.641295,6.0292,4.284325,4.429346111111111,5.445543,3.671245,3.3528075,2.215615,3.3528075,6.941375,40.89519157900433,3.806785,3.44703,2.97641,4.324465,4.33513,3.482535,3.606125,3.918755,4.602645,4.00985,1.6181983333333332,4.43907,2.69375,4.48017,5.2872,5.1447,2.45412,4.3823,3.82783,3.368325,1.426116,0.6457223076923077,1.715404,3.5188333333333333,2.8391366666666666,1.3004625,2.7901966666666667,2.5946266666666666,2.6454233333333335,3.6424333333333334,3.031076666666667,1.396194,2.7017733333333336,3.844666666666667,1.9500275675675676,3.0108633333333334,3.1774620000000002,2.95206,2.5194,3.3627000000000002,1.191788888888889,3.740695,3.95419,1.2314483333333335,1.2314483333333335,1.2314483333333335,1.2314483333333335,2.846689393939394,2.0724566666666666,2.342845,3.20419,4.813775,4.82571,4.00475,4.426105,5.5684,4.72452,2.21294,6.15165,3.83343,3.05901,4.28832,3.032805,4.282075,4.086305,0.6954215384615385,1.467242857142857,1.6959966666666666,4.16436,3.799065,4.895455,4.14401,5.985860000000001,2.3115166666666664,4.358685,1.4564700000000002,3.361475,5.15705,1.6039066666666668,5.1653,0.7260991666666667,4.11148,1.156798,1.144805,3.627125,4.10506,5.03615,5.11905,6.1722,4.34074,1.587482,2.877825,1.4728725,3.471845,3.274665,2.4890922222222223,1.9866225,3.126825,1.2784083333333334,3.583875,4.704045,2.964093333333333,5.6572,119.78654548520923,0.4855044444444444,4.728615,2.282973333333333,4.774795,4.09818,3.346195,1.54588,0.30439238095238097,2.85833,3.746935,5.1883,3.44869,3.533615,4.373785,4.365565,5.2111,8.119146666666666,0.6823,2.590495,0.9640825,10.951596,3.02124,3.58964,0.8942266666666667,2.275415,2.84539,2.08778,3.3645666666666667,3.2407466666666664,2.55004,4.39834,2.9442166666666663,2.3547333333333333,2.30127,4.324655,3.173385,3.015515,3.679195,3.75776,3.36062,2.3741833333333333,3.81225,3.71674,3.11403,0.922841111111111,2.5417866666666664,4.39834,4.687665,5.4133,4.073495,4.113385,1.97248,11.08192,3.901,2.745595,4.190075,5.1633,0.5392206666666667,0.5392206666666667,4.00889,4.00889,3.25659,3.537333333333333,1.8184681818181818,0.5420391666666667,2.86288,4.330205,4.177465,3.3173,4.003415,5.4856,4.774165,2.24393,4.85918,2.1580525,2.807385,3.9580266666666666,1.79254,2.127215,0.48640999999999995,1.2002359999999999,1.2002359999999999,1.913435,4.355035,4.8057,4.87285,6.360326,2.743255,3.038775,1.90102,2.02609,3.8309175,3.76883,4.85852,2.365885,4.85852,4.467225,3.484605,6.0724,3.95101,2.4110366666666665,2.02939,2.4294466666666668,1.3868375,1.4171525,1.6070825,1.73985,1.6261925,2.137605,3.9059000000000004,4.44335,2.36197,6.79805,2.946986666666667,4.301205,3.249425,4.222665,2.9473033333333336,2.971356666666667,6.303786666666667,3.4128666666666665,4.696716,3.0872266666666666,1.4751375,2.5284033333333333,2.610673333333333,2.307776666666667,6.1716,4.3373099999999996,4.51434,12.346885203826874,0.7712433333333334,1.9981015,2.1696825,1.490466,1.2299114285714285,2.52255,2.3315425,2.530575,2.4119975,0.7485684615384615,1.919,0.5286736842105263,4.503655,1.902725,3.79634,4.45718,2.3683575,5.64881,3.48257,7.35795,4.182695,2.829105,3.371495,4.681875,4.9791,2.790913523809524,4.458755,2.12182,2.12182,4.716925,3.8762,4.180465,4.077405,3.2366233333333336,3.737985,4.707165,5.22215,4.543855,4.42448,4.511275,4.39462,2.5332,4.956795,1.09495,4.54887,4.58618,2.518683333333333,2.1542666666666666,4.55815,1.5207766666666667,4.883,1.922005,5.754815289855072,3.97023,4.183455,1.5663466666666668,3.7751391666666665,3.7751391666666665,12.393464999999999,4.03764,4.24624,1.11081,4.270966,2.25462,1.4845675,2.299065,1.6431875,2.0038275,1.669726,3.087915,6.0315,1.919755,5.02675,4.576405833333333,5.52385,2.1083925,2.022765,3.419595,4.286885,5.50775,3.926005,7.010515,3.0765533333333335,2.6488633333333333,0.3579172222222222,3.788575,4.392945,3.317293333333333,6.159898333333333,2.5872033333333335,3.08356,1.2536866666666666,1.4867166666666665,0.61541375,1.465764,2.955075,1.4552800000000001,1.4178716666666666,0.61819125,1.282598,4.52275,2.4399925,0.5984638461538462,1.5622850000000001,1.7088525,1.6455380000000002,1.1969283333333334,1.932445,1.4867166666666665,2.45512,1.282598,1.282598,0.5984638461538462,1.6025428571428573,2.4587,1.29343,2.622275,0.5984638461538462,2.6431,2.4587,1.2421383333333333,1.2421383333333333,1.2421383333333333,1.902478,1.2365875,0.5984638461538462,1.1265800000000001,1.106565,0.9832455555555555,1.8112860000000002,2.683325,0.8215325,2.1595675,1.4961714285714287,0.5984638461538462,1.7881399999999998,1.4867166666666665,2.017116666666667,1.8890500000000001,0.8988889999999999,2.017116666666667,1.06043,2.34017,2.4109675,2.396375,1.106565,2.06032,1.2784083333333334,1.2784083333333334,0.8703672727272728,0.8703672727272728,0.8703672727272728,1.2536866666666666,1.4867166666666665,1.4961714285714287,1.5622850000000001,0.9028385714285714,1.8890500000000001,1.288972,1.648838,2.03548,1.2536866666666666,2.7648599999999997,12.50768,0.61819125,2.58824,1.7105499999999998,2.4369175,0.93018,0.93018,0.5984638461538462,0.9207788888888889,1.5295999999999998,1.4961714285714287,1.822562,1.8890500000000001,1.107761111111111,1.107761111111111,1.685332,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,2.8335633333333337,1.06043,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.20210277777777777,0.3704663636363636,54.07965143434343,1.484,1.4695766666666668,1.4961714285714287,1.7105499999999998,0.9028385714285714,0.6287882352941176,0.733758,0.733758,0.733758,0.733758,4.337366666666667,15.865754583333333,3.409933333333333,0.5768718181818181,1.511184,1.511184,1.511184,0.5768718181818181,2.955075,0.5984638461538462,1.7881399999999998,1.4178716666666666,2.5694,1.06043,2.4021475,1.06043,1.571784,1.571784,2.109783333333333,2.109783333333333,0.5984638461538462,2.01778,2.01778,0.9312727272727273,0.20210277777777777,2.955075,1.429685,2.4444375,0.5768718181818181,0.5768718181818181,0.5768718181818181,0.5768718181818181,0.5768718181818181,1.7105499999999998,0.3704663636363636,1.06043,2.1425025,2.1425025,2.5008,2.821566666666667,0.6315809523809524,0.6315809523809524,3.4794666666666667,4.1361,1.2366357142857143,3.335366666666667,0.970646,2.55335,2.00984,1.1131933333333335,2.8182466666666666,1.8543875,3.174656666666667,5.27945,2.394585,1.189111111111111,4.350095,4.229835,2.6840733333333335,1.721998,2.3102193846153845,4.76487,1.7803277777777777,2.6942166666666663,2.97419,3.1269066666666667,2.504605,6.2910666666666675,4.154065,0.20210277777777777,2.997106666666667,4.8764,3.485,4.580255,4.40646,4.206745,2.7255633333333336,1.832112,4.237325,4.513605,4.38226,4.84576,4.97781,3.228445,0.7046241666666666,6.8704149999999995,1.5702583333333333,3.034534,4.424595,2.62928,2.62928,0.8571736363636364,1.9866225,4.25561,3.098915,5.05815,3.89736,4.76575,5.18745,1.0816828571428572,4.70078,5.38035,6.5662988194444445,2.2447966666666668,4.273055,3.872605,3.8327,3.88012,3.93632,4.26942,6.002829999999999,5.1538,4.328804999999999,3.705375,4.606858333333333,7.418327,1.8723375,2.2331479487179484,2.8274066666666666,1.7720900000000002,2.7309366666666666,1.8545333333333334,5.266,2.96223,5.8921,1.8371819999999999,4.89787,4.101265,3.55428,4.368755,3.800465,2.5256000000000003,2.7711433333333333,2.70996,2.55564,2.5460333333333334,1.654305,2.7888933333333337,2.8240166666666666,2.19754,2.19754,4.670175,2.90148,2.0648833333333334,2.99093,2.00673,2.714676666666667,3.0903333333333336,2.654053333333333,3.155483333333333,5.30575,3.91945,3.846235,3.254944,3.254944,4.052095,3.1394699999999998,3.777495,4.51248,3.899205,3.43292,3.369005,7.3439,2.0716675,1.9687,3.461755,3.22036,1.1527866666666666,1.1527866666666666,3.45154,1.78035,4.15185,3.79073,3.28204,2.0814615,2.058999083333333,0.5550825,3.57522,4.061705,1.894195,2.41473,4.152265,1.38258,4.54666,1.2212633333333334,0.39605285714285715,0.5422678571428572,21.32258308829365,0.5422678571428572,0.39605285714285715,0.6884828571428572,9.726799999999999,2.6445933333333334,3.455655,3.97516,3.5320650000000002,2.894605,4.172382142857143,2.257465,2.394205,3.676945,2.943825,4.03693,4.281945,3.56076,2.284655,3.14542,3.65995,3.961745,3.20493,1.097415,1.097415,1.097415,1.097415,3.374595,2.994505,3.245265,1.9228766666666666,1.2382266666666666,2.42926,3.642185,3.561625,2.91987,3.165755,2.573605,2.4573175000000003,3.915615,4.18304,1.06154,2.6950033333333336,1.03457,2.67479,1.6279533333333334,3.7726333333333333,4.853625,2.360986666666667,3.54026,3.8641499999999995,0.8270255555555555,0.25947,0.25947,0.5675555555555555,0.25947,0.25947,0.25947,0.5675555555555555,4.439615,7.531793333333333,3.64964,0.53071625,3.63126,7.6725,3.30235,3.0253033333333335,1.1966833333333333,4.53364,5.3064,4.205895,4.924425,1.6646139999999998,4.63039,2.2121933333333335,2.3178473333333334,3.479715,5.3475,0.8316271428571429,0.8316271428571429,3.472305,2.85291,1.8955,3.24552,2.45774,6.51615,2.737815,6.1529,6.13835,5.6578,2.234775,1.65833,4.514075,3.40641,2.369915,3.85123,3.095055,1.741755,1.1899866666666667,4.141405,3.41071,4.846793333333333,6.084758333333333,1.4859116666666665,4.01613,1.12274,2.5626633333333335,3.17618,3.88432,0.3930021428571429,3.655845,4.026205,0.914472,2.5242999999999998,7.649025,3.217045,2.13241,5.768846,4.525115,3.65636,1.4102766666666666,5.453513333333333,2.659403333333333,3.0208033333333333,3.6104000000000003,2.034656666666667,2.034656666666667,6.2911,6.2911,3.6754446428571432,3.6754446428571432,11.1664,3.6754446428571432,3.6754446428571432,4.337255753968254,6.7407,3.94224,3.3728999999999996,2.880686666666667,4.422305,3.44385,3.23982,3.1361033333333332,4.73658,3.1548200000000004,2.7229033333333335,3.3505000000000003,2.2950333333333335,2.685245,5.04035,7.355315,6.378485,5.06505,3.77438,4.0215,6.8345460000000005,5.2075,4.618405,3.83524,4.025815,2.373483333333333,2.197145,2.202485,5.52645,5.5471,4.5887125,4.110615,2.396526666666667,2.40184,6.721245,1.902478,2.561533333333333,3.3425333333333334,3.3425333333333334,3.237365,5.1051,0.8035416666666667,3.600766666666667,3.61694,2.7723866666666663,10.1594275,4.079525,2.76843,2.38667,4.441495,5.5923,3.091515,5.3845,2.5735466666666666,4.72329,3.04157,4.26469,5.3818,4.63177,0.9006599999999999,3.29118,0.98597625,2.5112133333333335,5.051034470588235,8.70961,2.64897,3.3601666666666667,6.656961666666666,1.7516639999999999,4.402465,5.6279,3.43828,3.73957,2.1438966666666666,4.41225,2.34650875,0.43575153846153847,4.99961,2.759865,3.4388,4.538195,4.62886,5.38345,6.7058125,4.29102,5.6229,7.3434275,55.031796666666665,4.647355,3.87936,4.776055,5.84005,4.366115,5.0805,4.0399,4.67742,1.9394,3.951165,4.006105,4.65933,2.686545,5.1027,3.841525,1.6601019999999997,5.24865,6.1694,6.997533333333333,5.50005,3.331085,4.686835,3.322205,3.2131,3.61824,4.40527,3.76505,6.8792,2.677525,1.0802285714285715,2.38882875,0.600754,0.600754,3.21916,0.600754,2.4333001785714288,2.4333001785714288,3.1294001785714287,4.74543875,5.091041428571428,2.38882875,4.9479500000000005,2.7898975,1.448955,5.699,2.216605,6.815796666666667,5.561776666666667,10.544421356060607,3.1841399999999997,2.46619,0.21549727272727273,1.9034086666666665,1.9513266666666667,0.82385875,1.1915383333333334,2.702223333333333,2.375505,2.577025,0.598836,27.111293333333332,1.79079,0.7816384615384616,2.46416,2.46416,0.38175222222222227,1.665665,3.1565925000000004,1.25898,1.5569125,1.6306525,4.132005,2.88559,1.9689133333333333,2.39404,1.116875,1.8498675,1.4789899999999998,5.18104425,3.440305,6.783645,2.380995,3.2665933333333332,0.9582766666666668,2.257085,5.2299,6.10935,3.1832933333333333,2.18198,5.349406666666667,2.00054,2.50936,4.3171725,1.1375066666666667,3.5114666666666667,2.3301166666666666,5.20315,4.81537,6.23925,2.981165,4.023705,4.023705,5.18275,2.121425,5.4365,2.9024199999999998,1.64279,3.06529,3.27076,5.441531,4.06408,2.7968666666666664,3.3047833333333334,2.99307,0.9909085714285714,5.32165,0.89967,5.538016666666667,4.427295,7.42424,4.01899,4.4677,3.993435,8.212321666666666,4.16051,4.40022,1.19786,0.6946064285714285,4.55138,4.246815,2.07355,3.11147,3.218895,4.18675,2.27424,4.93383,2.4483366666666666,5.12915,5.25475,5.44155,4.347745,4.57785,2.925325,6.374402,3.374915,4.439075,3.434755,4.61952,5.641465714285713,0.5930714285714286,3.602733333333333,1.8194766666666666,0.5491199999999999,4.016175,2.27731,0.97095625,2.0756,5.79816,3.7035,2.40209,2.79927,2.7535399999999997,5.1146,4.04792,1.7358821428571427,4.05249,2.2128466666666666,3.6648666666666667,4.19962,5.09855,3.1105058333333333,3.685,3.7119,2.01544,7.14077,4.8048,4.24486,5.1639,2.1947725,4.351935,4.654745,3.67214,3.804375,11.095939999999999,3.35969,5.107011666666667,4.72712,4.58608,2.3172275,4.249105,4.112015,4.87988,3.377133333333333,4.11409,1.4879775,2.9836533333333333,3.548485,3.83374,4.868565,1.87381,4.037775,3.225986666666667,5.36585,3.135146666666667,1.7443,3.93254,4.507645,1.101075,3.058405,2.7555633333333334,4.525306,1.77645,1.7553333333333334,1.112745,3.497525,5.34315,5.4929775,3.71435,3.08469,2.38629,1.966435,1.83928,1.57531,5.93925,3.06397,1.8831025,0.8670461538461538,19.40642066025641,3.26571,2.6551808333333335,4.46204,3.9980761538461542,1.43551,2.6489168333333333,2.978584772727273,1.293544,1.9426133333333333,4.441475,4.667375,3.5048041666666663,2.98024,5.41215,4.74801,7.07653,4.4692058333333335,4.645345,3.59859,2.728813333333333,4.19657,3.85733,3.7151666666666667,4.008595,1.798635,4.87838,8.73182,3.28795,2.877975,3.47411,0.634255,3.1963899999999996,2.0836799999999998,2.3931225,4.42806,3.165535,5.0479,3.706425,2.88134,2.2670525,1.821855,0.776106,1.5222733333333334,1.2241,3.803795,3.72951,4.63588,4.677265,7.54087,2.268336666666667,1.4362840000000001,2.30841,7.600723333333334,3.143815,2.945425,2.98124,4.381705,3.1961625,3.56714,1.4060840000000001,4.66936,4.988395,4.241815,4.02252,3.637015,4.108605,4.32944,3.82189,4.32682,5.42015,2.18564,3.3120999999999996,3.28924,5.35805,3.21333,4.1211255,2.90148,2.88616,2.1289599999999997,2.321213333333333,2.1379366666666666,2.580043,2.580043,2.0241933333333333,2.8565199999999997,2.34137,2.351036666666667,2.05091,4.13313,2.3945933333333334,2.8962333333333334,3.0557133333333333,1.7182033333333333,4.36348,2.757155,4.05228,2.561783333333333,5.3179,5.00865,4.788875000000001,2.487085,2.443215,2.814675,3.02462,2.045755,2.838955,1.9458125,2.553425,2.7983,6.801094833333334,4.3913075,3.49057,0.600231875,4.465145,3.868875,4.074335,3.306915,3.854945,3.76295,6.21285,4.266405,3.26844,2.7267617857142854,2.162469333333333,2.5032,1.632876,1.6693460000000002,1.584462,2.06754,1.7745525,1.1431733333333334,4.1977722857142865,0.5984638461538462,0.5586333333333333,1.968992,1.532095,1.485562,1.3450883333333332,2.239249393939394,1.4536300000000002,1.71168,0.61369,166.8704467041741,0.45570133333333335,2.0301400000000003,1.153782,1.18787,2.1513175,1.599255,2.0387475,2.23533,1.7191925,6.66045,3.31252,3.3576319047619045,1.5331166666666667,3.27975,1.2867766666666667,1.2867766666666667,5.60553,0.490115,2.045,3.295593333333333,3.0794599999999996,0.8353209090909091,0.548355294117647,1.1340107179487178,1.0184545454545455,2.255545,3.979795,1.9508025,2.1705875,2.1972466666666666,4.802625111111111,1.020331111111111,4.405635,3.63828,3.57064,7.2812,1.8977666666666666,2.8224,2.31495,3.8854319999999998,2.422205,3.27193,3.46063,3.43068,4.00852,2.9297,7.86372,2.172275,2.61387,2.98586,1.575575,2.821745,3.16807,2.749845,1.725995,1.68451,2.75291,4.08705,5.378731666666667,2.79536,2.88529,1.573975,3.974695,3.634933333333333,3.9176333333333333,3.07185,24.974215840354088,2.7070366666666668,2.71972,3.0558866666666664,3.4256666666666664,3.201256666666667,5.866183333333334,3.200253333333333,2.22496,3.5055,3.5467,2.1553366666666665,3.3199466666666666,3.29574,3.0299266666666664,1.7199666666666669,1.6663175,0.59099,2.3529766666666667,2.0190325,0.23715625,2.1220066666666666,2.572375,0.23715625,0.23715625,2.182839583333333,0.23715625,0.23715625,0.23715625,0.23715625,2.88374,2.4909766666666666,0.5443284615384616,3.0865657142857144,1.570585,1.920916,5.349,4.4729849999999995,5.9322775,1.9446825,5.00185,2.035635,2.61746,1.2792014285714284,5.721543333333333,2.780283333333333,6.11989,0.8253958333333333,1.494645,4.56708,4.77407,34.985591692474195,1.4916779999999998,1.3499033333333335,2.303263333333333,2.31908,0.8703672727272728,2.419846666666667,2.26157,2.6797400000000002,1.9667733333333333,2.47724,1.67378,2.5712466666666667,2.3543600000000002,2.2575833333333333,2.7874,2.50425,3.858065,3.4971333333333336,1.0726942857142858,3.94587,3.982265,19.972547277777778,2.7319433333333336,3.1816166666666668,2.6154533333333334,0.908794,3.1467479999999997,1.6635951111111111,3.1467479999999997,2.438213333333333,2.58473,2.8779766666666666,1.6102475,1.8778675,4.121355,4.04706,5.03525,4.281485,1.67017,5.1153,1.6117625,4.95716,4.042672619047619,4.441575,0.7341881818181818,2.0451525,2.0863625,2.884894,3.332655,1.0868525,3.264755,1.9820119999999999,2.044773333333333,1.07277,1.07277,3.5437,2.6485133333333333,4.313635,28.110750833333334,6.434659999999999,1.8863333333333332,3.59802,0.39464466666666664,6.06454,5.93015,2.6806533333333333,3.567305,5.4172325,3.6377,1.12849125,4.614395,1.284828,2.71178,4.419445,4.664,2.32652,3.234455,4.47617,2.549115,2.742662,4.29908,1.2906133333333334,2.4358558333333336,3.464665,5.3791,2.4990033333333335,3.019973333333333,2.7455700000000003,3.981145,4.0467,4.115145,4.329666666666667,1.736235,6.17418,2.48921,1.774244,4.052085,5.79831,4.05937,3.54824,0.75818625,2.959085,3.500745,2.05061,4.617527333333333,2.8287,3.89424,2.88368,3.4087,2.576665,3.1424566666666665,2.9176800000000003,3.12564,4.248755,5.54675,3.50227,1.77435,3.984275,4.17644,1.85989,2.13583,1.7114925,3.9153494444444443,4.48999,5.147950104166666,4.01364,3.312673333333333,3.724005,3.18378,1.3795666666666666,3.1659,2.912765,3.13629,4.554635,4.42271,4.233985,3.12801,1.90272,1.735945,1.53742,3.612435,2.48674,2.18743,3.34464,5.1281,1.60297,5.27395,1.368657142857143,1.9029375,3.24586,3.08933,3.08667,3.704305,3.11197,1.77509,0.9705142631578948,3.26006,4.92755,4.379035,8.742605,2.759846666666667,3.1864000000000003,1.5827499999999999,2.75508,2.6819933333333332,1.0548566666666666,2.75709,2.72791,2.9407766666666664,4.0168333333333335,3.01154,6.867553333333333,3.0746800000000003,0.7499781818181819,1.7438666666666667,3.72215,3.18434,3.401365,3.4905666666666666,2.613801,3.06011,2.944965,1.9868874285714286,3.879165,2.782065,3.33768,2.2088300000000003,4.62752,5.29975,4.42603,3.660205,3.6908,0.8939588888888887,4.68113,2.7992966666666668,2.6005233333333333,4.213505,2.7055733333333336,2.6548000000000003,0.4021642857142857,0.4021642857142857,4.221253333333333,4.126095,6.9462,3.11244,4.72863,3.60386,3.47874,4.730605,4.072095,1.0476275,3.7358,2.6419900000000003,4.197926666666667,2.97791,3.0742683333333334,1.7989133333333334,3.2493250000000002,2.36241,2.75297,2.5891366666666666,2.9112566666666666,1.8663733333333334,22.19044814245718,4.330735,4.044455,3.986885,3.3297,4.43049,3.28623,4.520055,4.35378,3.760555,3.723985,3.36391,2.591083333333333,2.8379966666666667,2.9336800000000003,3.0872316666666664,2.70589,4.33124,3.49654,4.86445,4.84122,4.305665,1.320738,1.497862,1.497862,5.14545,3.65528,2.5982433333333335,2.2223533333333334,2.8365333333333336,3.40299,3.54392,7.549048333333333,3.2101133333333336,3.5000666666666667,2.8672266666666664,5.48145,1.5624900000000002,6.0180625,2.41153,2.8105766666666665,1.6935525,3.6346,2.72552,6.63059,3.35656,2.828745,4.13507,4.07197,1.5292375,2.5116633333333334,1.7137533333333332,7.427628,4.270285,6.743883333333333,2.310235,3.808035,3.7007,4.06369,5.2123,3.4675333333333334,3.4675333333333334,2.2002175,4.341935,5.023,2.271425,6.626862857142857,1.629785,5.4987,8.862692000000001,3.861333333333333,4.3173140000000005,2.3310033333333333,2.13842,0.53653125,4.41418,2.569175,2.62265,3.711823,2.21398,2.4703166666666667,3.64422,5.78825,5.2985,5.1427,4.920695,4.39964,2.2866475,1.0239272727272726,2.995575,3.243825,2.7248900000000003,5.1644,4.045965,3.271525,2.705685,1.983474,4.174225,1.03858625,5.30105,1.0099444444444443,5.35285,3.354225,4.710005,5.07713,3.05474,3.22045,3.0815633333333334,2.35758,4.24435,3.167995,2.21607,3.642705,4.80214,5.765851666666666,4.558615,1.82966,3.55663,3.01483,5.48508,1.8899575,1.8899575,2.93295,2.45231,2.43974,2.7452633333333334,0.881123,6.1088,3.31664,1.98847,2.536165,2.54131,3.74246,2.636815,3.78989,5.30075,5.24935,4.91764,6.05845,5.88725,1.3593625,3.51766,1.1016916666666667,2.4999375,4.436133333333333,2.72237,3.063805,3.3328,4.97114,3.2618,0.45997473684210527,4.339295,4.10219,4.892055,3.364155,4.9756,5.3819,4.40689,4.10512,1.793995,4.32348,2.08318,4.358233333333334,4.358233333333334,6.60975,5.7258,5.3423,4.84667,2.652165,1.5624900000000002,4.137375,1.9823866666666667,1.6409333333333331,2.02075,4.282945,4.086465,4.4134,8.11147,1.5236616666666667,5.15205,1.2725766666666667,3.136015,6.0498,2.05021,4.607385,2.56041,4.92749,3.36132,4.77813,3.24283,4.232195,4.011005,5.8568,4.264645,4.069355,4.017625,5.8085,4.021345,4.511545,3.71401,4.301445,7.168248333333334,3.511595,7.29942,3.407595,5.6178,6.314112045454545,4.245835,3.565765,1.6057775,5.55305,3.920905,0.8525266666666667,8.20494,5.98505,4.919305,3.031785833333333,4.631195,2.90462,1.723996,3.88571,1.06154,5.86325,2.87453,4.52493,5.5788,4.495,3.997545,2.1085266666666667,4.47363,5.02535,1.761065,6.987065,2.888105,3.398645,5.00645,4.21354,2.284625,4.44018,3.48162,3.913345,2.6913633333333333,4.00435,3.67452,5.4542,4.548,3.300355,1.7688325,1.7688325,7.441238333333333,1.4713142857142858,4.993355,4.383555,5.1699,3.444205,3.808975,5.1245,3.8724,0.907995,0.907995,0.907995,3.591365,2.980435,4.003335,4.466134222222222,2.73454,1.4446466666666666,4.26749,2.2001025,2.751105,3.843645,4.55131,1.9152625,2.1206,5.82462,3.81386,2.848315,4.59984,1.6846925,2.002495,3.3130699999999997,2.68922,5.42055,1.407942,1.56259,0.98779125,3.92565,3.1365,2.69823,2.9992966666666665,5.28715,1.7490960000000002,2.06786,2.91209,1.6797714285714285,3.280345,3.58648,2.58575,5.5403,5.60575,2.78854,4.35847,3.64323,3.532515,3.383365,4.051175,3.57646,7.33024,5.1518,2.211466666666667,1.76715,3.39352,4.490135,4.220195,3.56229,2.890136666666667,4.118015,6.08315,5.0202,2.652206666666667,5.1829,3.88718,4.360335,8.260605,3.975935,0.7204981818181818,3.877645,4.301622500000001,2.170165,4.1691,3.7688333333333333,5.73065,3.93043,3.72674,3.679865,4.35968,4.643055,4.693285,2.86278,3.92414,4.934265,3.86578,2.56743,2.965195,6.34188,5.2046,2.15976,3.23935,4.615679166666667,4.0096,4.97246,4.280715,2.52662,0.8895822222222223,4.497466363636363,6.807255,3.510865,4.79073,3.663915,6.762158333333333,3.73302,3.6969,2.750026666666667,3.817985,1.827635,3.37537,4.32884,2.5241805,4.171025,5.98545,1.423755,4.841215,0.6305,6.10615,5.99295,6.0192,5.90375,1.6415749999999998,1.7524166666666667,4.583145,1.90286,5.58555,0.5438308333333334,5.9369,3.221355,1.5185499999999998,6.3392800000000005,6.56825,0.836075,1.5528149999999998,1.233606,1.233606,1.233606,2.31293,4.96221,3.624465,3.446105,4.106445,5.2382,3.767625,1.9053999999999998,4.225195,5.0024,0.3028878048780488,3.6679,4.566435,4.42391,38.80907625757576,6.0128875,4.904445,10.787602999999999,3.16652,4.068725,7.60274,3.136125,4.93231,3.88924,4.03201,9.40956,3.90829,2.7488533333333334,2.65198,4.71355,4.330315,3.64135,4.404515,2.17936,4.476195,4.273175,6.818220999999999,4.177155,5.03425,2.3378475,4.233745,0.519996875,1.4239816666666665,3.345095,6.1282,3.04844,1.2182833333333334,1.2182833333333334,3.16014,3.960145,4.17365,2.45265,1.6739333333333333,3.406985,4.33516,1.821735,3.2767999999999997,1.5633380000000001,1.9317399999999998,4.077545,4.44695,2.068925,4.68085,2.2931125,1.98143,3.62752,3.783655,4.05551,3.95125,6.047521333333334,2.3890013333333333,3.73584,0.7046572727272727,0.635075,3.508515,2.338245,8.602283333333334,3.409933333333333,4.832485,1.634045,4.595845,1.5665583333333333,3.956735,4.33142,2.5408166666666667,3.72239,4.93318,0.416139,0.416139,3.8083333333333336,3.2875,2.835736666666667,3.688025,3.703895,5.59905,1.0328454545454546,9.85081,10.89175,1.932445,4.7682,4.75999,4.85372,3.603595,2.54583,2.0073,2.0222,9.88814,2.114105,2.6807700000000003,3.62923,4.44944,3.62923,2.1882575,2.8147466666666667,2.7704966666666664,0.7341754545454545,5.393735833333334,2.8026700000000004,2.64556,4.05209,8.32339,9.8834,4.132395,4.098685,4.061205,6.5828225,1.9539525,1.3982,26.234785833333333,4.26525,3.85915,0.9919520000000001,4.657115,4.141565,4.98954,4.64572,5.49195,5.663223333333333,3.0155133333333333,2.147743333333333,0.6504588235294118,0.7415533333333334,4.727055,5.21255,1.3798216666666667,4.429958333333333,0.9013416666666667,3.626666666666667,1.4878133333333334,4.27657,5.9551,1.822615,2.590215,2.19772,3.82444,2.836345,0.40364,3.82722,3.609645,2.6790133333333332,3.227255,5.0222,2.9698966666666666,4.267795,3.1483,4.83021,8.164313333333334,4.687255,7.88297,2.7051,2.6222133333333333,4.49479,4.35232,4.38556,4.447675,3.728015,4.490405,1.18208375,3.3093508333333332,3.2679172142857142,0.708284,1.497862,1.497862,4.29489,7.209426666666667,0.8183,4.691615,0.8852683333333333,2.9356166666666668,2.367783333333333,2.599874090909091,6.107223333333334,2.4781166666666667,1.1253666666666666,2.281606666666667,1.2184625,1.9132033333333334,3.142996666666667,3.1062466666666664,3.400866666666667,2.46885,0.8852683333333333,4.56877,4.389495,5.48655,2.850425,3.89677,2.10366,5.93585,4.80249,4.265085,2.8539133333333333,3.06965,2.20599,1.336085,4.27659,2.634625,4.27038,5.69975,1.595664,4.67808,2.9574866666666666,6.466906666666667,3.52006,2.4011,0.8852683333333333,2.44103,2.43421,7.246358444444445,2.2709066666666664,1.873828,2.2709066666666664,0.4269658333333333,1.1761599999999999,3.81718,2.43933,1.65941,3.55646,3.8806920000000003,0.640467,0.640467,0.640467,8.253615,1.5916679999999999,0.7286845454545454,2.223225,39.01083065584415,1.8236451111111112,0.6618111111111111,2.97898,0.6618111111111111,3.83267,1.994705,2.510745,2.51546,5.119,4.205995,4.51404,2.4462366666666666,0.8829828571428572,4.280335,3.3534,4.908975,1.0303371428571428,2.949575,2.949575,3.84736,4.277885,3.59804,4.854371153846154,3.19167,4.709445,5.2404,1.775298,0.999115,5.3266,6.56015,3.856595,0.665173,4.213195,4.021065,0.95064625,4.48497,2.37308,3.972485,4.23889,1.8535331313131314,1.8535331313131314,3.875845,3.361025,0.8712688888888889,3.096535,2.96543,3.33289,4.006305,4.440695,0.5351385714285714,0.31690294117647055,0.31690294117647055,0.31690294117647055,0.8520415126050419,0.5957061538461539,0.6557489999999999,0.31690294117647055,0.31690294117647055,6.847885,0.31690294117647055,0.8520415126050419,3.42144,1.2768975,4.495945,1.1712083333333334,0.5802669230769231,0.95064625,2.579945,2.595625,3.971525,2.976945,0.31690294117647055,0.31690294117647055,4.41241,3.74219,4.215535,2.744405,3.81697,1.482506,3.818535,0.6557489999999999,0.6557489999999999,4.68555,3.114335,2.77448,2.91353,3.69632,1.01651,0.9108307692307692,10.936435,1.2396275,3.50024,4.62077,4.960485,2.10894,0.3773004347826087,0.856335,2.7178633333333333,3.099305,3.083255,4.1591,1.342324,6.1004,3.285975,4.923295,3.89813,3.0330933333333334,2.912943333333333,6.26259,2.5853766666666664,4.68362,4.228935,3.8641499999999995,5.919595,0.5325833333333333,4.229575,3.3593333333333333,1.8563933333333333,0.6485299999999999,4.11554,4.32526,2.608795,2.358605,2.148665,5.0987,2.835325,2.852195,0.99709,0.47641692307692307,3.93689,0.35387599999999997,0.7949645454545454,3.938725,3.170785,4.06298,2.699815,5.3564,4.357235,6.265378,3.6099,3.503205,4.42175,1.585455,5.0238,1.704216,3.95326,2.500825,5.946036666666666,2.57943,1.023958,4.57559,7.0369,6.642304583333333,3.3909000000000002,0.8142891666666667,2.8524066666666665,4.308585,3.942765,4.57429,4.52805,4.177425,4.934815,2.934295,4.215765,1.8399733333333332,2.38599,1.4315933333333335,4.206625,9.495335,3.138325,3.550295,6.02605,2.93441,4.100185,2.5266566666666668,2.8247116666666665,3.375005,3.69618,3.48493,3.37358,3.37083,5.08685,5.77965,4.09181,4.772074999999999,4.880335,3.922485,2.654215,5.46605,7.8157749999999995,0.9412688888888889,3.834595,4.14541,4.910325,5.5597,4.900265,2.410885,8.24581,2.48631,3.51498,6.082,3.77303,4.29219,2.1586600000000002,1.6651575,3.0379766666666668,2.28315,2.1023533333333333,2.8979966666666663,4.293125,4.64968,4.06922,3.45389,4.641898333333334,3.25355,3.098065,4.062215,5.6654,2.914625,5.4378105,4.13303,3.861795,3.667795,7.61611,3.4737,3.76783,4.270155,4.96378,3.036885,10.4711,1.3299616666666667,2.13392,3.622585,2.8087999999999997,2.8087999999999997,2.00915,7.7962066666666665,0.8608666666666667,3.07961,0.89007875,2.06786,4.35945,4.79811,3.88237,4.10701,2.75269,3.216235,3.969765,3.814915,4.201335,3.025755,2.4976866666666666,4.049505,4.667063333333333,3.26774,4.23028,1.661046,1.616396,2.6641133333333333,5.64605,2.24702,1.7116866666666668,1.9743525,4.045115,4.796155,3.087025,2.795165,0.5382888888888888,2.41567,7.442335,3.275545,1.4909866666666665,0.83443625,1.20973,2.0073833333333333,2.3428375,1.31822,2.1672433333333334,4.3374334999999995,3.93831,4.571925,2.41126,2.004565,6.5554049999999995,3.073225,2.31535,2.31535,2.31535,6.429246666666666,2.22568,3.464845,2.47095,0.461676,1.159842,2.37652,5.836455000000001,0.44476,3.71471,3.9188633333333334,5.8634,2.9637233333333333,0.44476,2.9637233333333333,0.9357625,1.162292,5.84965,4.178835,6.72483,4.013265,4.622235,3.767265,4.179725,5.0703,5.2528,6.13415,3.729995,3.474775,5.00135,4.527885,4.25797,4.357705,4.472975,1.3550283333333333,2.4206866666666667,1.24205875,2.15358,3.2549054166666664,1.60922375,7.1042075,5.48508,2.5976150000000002,4.48755,3.010195,4.76496,2.79568,4.104815,4.938535,9.4101675,5.1798,4.39673,2.5245,2.7919,2.03768,0.634255,2.0986511111111112,5.5805,5.2999,5.0583,4.518235,0.5329966666666667,2.0533125,1.5765175,4.3489,0.7328707692307692,6.3037125,2.0380875,1.1746875,1.1746875,3.911908,2.01396,3.07591,2.6155,4.621555,3.8458550000000002,3.8458550000000002,4.58502,5.411365,2.768383333333333,2.47036,3.3042233333333333,4.673795,1.756128,2.7789,5.6353,5.15875,4.494255,3.95998,3.9397383333333336,4.528725,3.491245833333333,3.099543333333333,2.37644,4.28231,5.3171,3.33671125,5.1232,5.4517,2.06536,2.5942833333333333,6.2705,7.0206,1.147732,2.666925,2.3519675,2.699343333333333,2.29401,2.526625,2.3931025,1.0423633333333333,1.8628075,2.636675,2.3580875,2.476531666666667,2.476531666666667,2.884819,3.0217,2.254676153846154,2.60305,2.367075,1.9655719999999999,1.5434566666666667,5.029002500000001,14.685031666666667,2.9809633333333334,3.24187,1.78904,1.78904,1.6429033333333332,1.6429033333333332,2.9258366666666666,3.5362666666666667,2.88714,1.94246,1.94246,3.9796666666666667,2.46855,1.12537,1.4547,2.9609199999999998,2.893853333333333,3.5564666666666667,2.6265292857142857,3.3498,3.0784033333333336,0.6996439999999999,2.6824,3.6211040000000003,6.99661,4.65155,5.4821,4.332515,3.417775,4.94583,4.7112,2.752076666666667,4.166095,1.3605066666666668,3.1434866666666665,5.7634,5.18675,2.86939,1.2551933333333334,3.175495,2.4659999999999997,2.9702633333333335,1.507045,0.678325,3.0708466666666667,4.416425,4.845755,4.32343,4.7624,3.0997266666666667,2.0861466666666666,3.2978491666666665,2.3514466666666665,3.2645999999999997,3.1814999999999998,3.1099099999999997,2.592633333333333,2.249913333333333,3.6456999999999997,2.81643,5.2667,4.719375,5.236011666666666,5.236011666666666,3.294675,4.15189,3.702215,3.677475,2.88054,4.720265,3.42794,3.0543266666666664,6.01505,0.7851275000000001,5.1398,4.79803,2.539633333333333,5.197473333333333,3.4469999999999996,1.6702333333333332,1.2762242857142856,2.0943433333333332,0.959125,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.2764967857142857,0.5408357142857143,0.5408357142857143,1.204595,0.8405197222222223,1.6163306313131311,1.0539342857142857,1.0539342857142857,1.232728409090909,0.38360222222222223,0.38764,1.2267875,1.44866,2.57327,2.259505,6.290713333333333,3.0964333333333336,3.750165,3.7228200000000005,4.779936,1.4070233333333333,4.87639,4.130595,4.860775,2.908715,1.470204,4.394413846153846,3.87799,4.34807,4.583935,3.041735,4.895745,4.749055,4.724335,1.274184,3.864575,4.71669,3.263115,2.397953333333333,3.367755,2.468785,3.323855,4.71462,3.045503333333333,4.8813,8.84915,3.31657,4.90632,4.36502,4.420425,2.606943333333333,4.44554,0.9594085714285715,4.38392,3.64578,2.1505400000000003,1.29275,2.88587,1.2968533333333332,0.505382,3.4571666666666663,4.41493,5.173513333333333,3.7083,2.4923025,2.521605,4.853115,3.980066666666667,4.560145,2.6475,2.3087733333333333,4.11889,3.781265,3.782825,5.1457,4.535555,3.705685,4.566935,3.115016666666667,4.385465,2.17874875,4.344515,5.2115,3.322605,4.36415,2.535095,3.849565,5.34175,3.775235,5.12215,4.661265,4.7848,2.2908666666666666,4.99357,5.021,4.885175,2.121205,1.1562825,4.068955,4.448925,3.982875,5.1355,1.98172,3.93289,2.342475,4.95804,4.709865,4.70184,2.2986175,4.15884,4.48212,4.216005,2.4450833333333333,4.44509,4.47124,5.02485,3.68572,2.121205,2.198765,2.67749,4.890365,4.017515,3.977795,3.45874,4.84298,2.392865,6.9686,4.932945,4.762155,5.352148875,5.101122500000001,5.1626,3.51429875,2.9577416666666667,2.9577416666666667,3.75036,3.61299,4.50182,2.005165,2.93234875,1.02551875,2.4067666666666665,2.997393333333333,2.4116500000000003,2.96504,4.140715,2.7002166666666665,5.11685,2.5707566666666666,4.35818,4.6335275,2.20932,4.19862,2.77745,2.7059233333333332,4.00484,0.861258,4.97263,4.57195,6.104715000000001,4.624145,5.4817,1.2422142857142855,4.697465,6.32165,8.29276,3.23165,3.3166100000000003,1.9143059999999998,0.8029299999999999,3.83854,1.04063,4.79298,4.537125,5.6723,3.04945,3.951315,1.1176314285714286,3.40859,3.61741,4.428485,4.06807,2.93289,2.820555,2.398875,4.265835,4.846405,5.71955,4.506905,3.45657,0.4073888888888889,0.4073888888888889,0.4073888888888889,0.4073888888888889,5.56945,2.92129,6.198,3.1480633333333334,5.04495,4.688025,3.70141,2.200505,2.5502,1.4542933333333332,5.14485,2.7640166666666666,4.27823,4.094725,3.420415,1.686055,1.14803375,4.271115,2.365095,5.7879483333333335,3.80318,4.831795,2.282075,1.503325,0.8777788888888889,3.23941,4.3735,3.28172,2.1262,7.837305000000001,4.96981,3.61092,2.30654,0.504321,3.128015,2.607645,2.10312,1.836355,2.820775,2.82505,2.341855,2.928653333333333,2.932125,3.61547,4.63536,3.82372,3.82441,3.32987,5.670715,0.6184879999999999,4.60805,5.90085,5.089,4.746525,3.332546666666667,5.235,4.59327,4.29851,5.393665,5.3377,4.715595,4.55945,3.68546,5.0163,2.853765,8.90482,5.0607,4.057175,4.627015,4.94809,5.8164,3.461125,1.1081577777777778,6.005166666666668,3.252705,4.595435,1.3246483333333334,4.38982,3.68096,6.348563333333333,4.636955,3.181055,1.8451966666666666,4.839715,2.09832,0.96199875,4.52662,6.06155,1.93224,2.345353333333333,2.8882666666666665,3.26818,3.618885,3.727675,4.928575,1.7721333333333333,4.236595,3.8638505,3.34255,3.8107666666666664,3.763105,2.800505,2.68191,2.0571,2.37749,2.6713166666666663,4.45225,0.5550825,2.6282866666666664,4.500015,2.944705,3.5444999999999998,4.4277,4.951535,3.89006,16.652453984848485,2.5235833333333333,4.136633333333333,1.4815200000000002,0.9066918181818182,0.9066918181818182,0.9066918181818182,0.9066918181818182,0.9066918181818182,4.573205,4.762965,4.869155,9.0138455,2.495445,2.495445,4.61175,4.743690833333333,1.3360575,2.13659,3.70692,2.40588,2.4263,2.1374025,3.0801,3.816684666666667,1.7868075,3.41542,0.8151357142857142,2.912516666666667,2.68385,3.06743,1.3928966666666664,3.1520733333333335,2.2123,0.9548425,2.778723333333333,2.70928,1.2251555555555556,2.4401800000000002,2.5056133333333332,2.3049666666666666,4.370395333333333,1.7832466666666666,2.806486666666667,2.1347025,2.5975,1.0603955555555555,2.818903333333333,4.782075333333333,3.7392,1.0203525,2.8388299999999997,1.348655,2.3008333333333333,2.3094933333333336,4.6318616666666665,3.060116666666667,2.3663933333333333,4.559689333333333,2.6300833333333333,2.14611,2.8365566666666666,2.3617,1.66348,2.7310733333333332,3.1215833333333336,2.8242166666666666,2.43158,3.0924766666666668,2.622333333333333,2.367655,3.808873,3.808873,2.956323333333333,1.9929933333333334,1.91556,2.6077066666666666,5.485446666666666,2.9979899999999997,2.05706,1.738565,3.0335666666666667,4.26379,2.3146033333333333,1.154606,2.819986,1.6010733333333331,3.3074066666666666,2.2277133333333334,2.7031433333333332,2.2020833333333334,3.1648933333333336,1.314956,1.6942133333333331,1.50305,4.347603333333334,2.6056866666666667,4.102635,1.008841111111111,4.0771,2.08569,2.0269575,1.737988,1.66795,3.2525566666666665,22.998287954545454,7.6792333333333325,2.6249933333333333,3.480009166666667,2.7638866666666666,10.053174,2.98615,0.9839775,2.47668,2.39371,2.13198,2.8017333333333334,2.5194666666666667,2.52697,0.9322969999999999,3.04259,2.59571,2.9672733333333334,2.6826066666666666,2.6600233333333336,2.149296666666667,2.11782,2.7993466666666666,2.66359,2.0789425,1.571872,5.10899,4.475555,2.3910125,2.975575,2.2173266666666667,2.456026666666667,8.257069166666668,1.9704666666666668,4.870695,2.4471325,1.895265,7.89559,2.9384333333333337,2.7590800000000004,2.4476825,1.929548,1.4916996153846154,3.2200133333333336,2.934563333333333,4.05448,1.391155,3.7441666666666666,1.50111,1.50111,4.07874,4.29608,3.58596,3.58596,5.857060000000001,3.497235,0.459131,12.032986266788766,1.2323466666666667,0.9332971428571428,4.034151666666666,1.4595149572649573,1.7810225,6.0162933333333335,3.68735,0.7619245454545454,2.2145733333333335,5.101545878787879,2.427906833333333,3.989955,1.28048,5.44295,4.94088,4.983335,3.1760655,1.962558,2.25447,2.5717833333333333,2.3635966666666666,2.20532,5.084436666666667,4.300315,4.17071,1.92278,4.652705,4.082005,3.4674333333333336,2.164885,4.629255,2.498133333333333,8.784003333333333,6.565777499999999,1.8843175,3.04239,1.706148,4.5774333333333335,4.5774333333333335,3.023903333333333,2.7841466666666665,3.208249,4.94891,9.839329999999999,4.22816,2.4850025,5.4359,4.264745,5.14085,2.05314,0.8930725,1.3767366666666667,4.631185,4.84904,3.6423,2.7623533333333334,3.7909333333333333,2.176746666666667,3.998125,4.83892,3.329155,5.25825,3.1534666666666666,3.574165333333333,3.3699333333333334,3.1898033333333333,3.2839533333333333,6.2732,3.049975,5.3889,4.85922,3.079005,3.3448,3.3448,5.903320833333333,11.868485,3.6041666666666665,6.3942075,7.458634444444444,3.603045,2.4437333333333333,3.87309,1.30519,3.93586,2.355655,2.95641,3.01079,3.341533333333333,1.9937239999999998,2.39264,2.6376166666666667,2.5194966666666665,2.8650533333333335,3.114686666666667,3.937675,2.53961,2.8529,3.8405,2.63231,2.4232366666666665,1.10519,2.06498,2.6903133333333336,2.4139133333333334,2.58438,2.4683100000000002,3.6595333333333335,2.378363333333333,2.38473,2.4709166666666667,3.146853333333333,2.649,2.659056666666667,2.63564,3.2602766666666665,2.8177966666666667,3.3807,2.6235399999999998,2.368473333333333,2.33875,2.80022,2.710483333333333,3.5269,3.239656666666667,2.574175,1.868385,1.868385,0.7507633333333333,1.4060840000000001,3.989905,3.147765,2.6762766666666664,1.9937239999999998,3.220556666666667,1.1829814285714286,2.7419100000000003,0.5684086666666667,3.2647866666666663,3.11782,3.149745,2.980283333333333,2.511573333333333,2.6131366666666667,2.95242,2.6639466666666665,3.2443233333333334,4.395723333333334,1.49946,2.7168433333333333,2.4206433333333335,1.8105433333333334,2.1983333333333333,2.8939299999999997,2.565046666666667,1.613636,2.492576666666667,2.6161533333333336,2.4970166666666667,2.775,2.8709233333333333,2.80114,3.2127700000000003,1.3427525,2.8535633333333332,2.3390999999999997,3.6904333333333335,3.750033333333333,2.0026625,2.061853333333333,3.31945,2.5833533333333336,3.3721666666666668,2.6784033333333332,2.13625,5.341075,3.3419333333333334,2.217033333333333,1.5133839999999998,3.384066666666667,6.139543333333333,3.1054133333333334,3.5761000000000003,2.77075,3.029533333333333,4.710752,1.6485220000000003,1.1585777777777777,2.12439,1.7799120833333333,4.694405,2.641366666666667,3.1972066666666668,3.0354500000000004,3.2217266666666666,2.2680833333333332,3.5074666666666663,2.57835,1.645918,2.883156666666667,3.47555,3.6646,3.178085,3.55452,1.6252675,2.769875,3.576325,3.27532,2.31746,3.7135,4.017966666666667,3.8145333333333333,1.313705,5.643969,3.1853937500000002,1.5056216666666666,3.24179,3.275785,2.954835,3.571285,1.82398,1.82398,3.32142,2.9889833333333335,2.82691,4.944765,4.31112,4.313927333333334,1.4757440000000002,3.2203533333333336,2.474956666666667,4.238755,3.1973833333333332,4.89362,2.6117066666666666,2.3993166666666665,2.48408,3.736745,4.40666,1.627064,3.0436533333333333,2.75948,2.344695,4.297855,1.3528966666666669,3.079665,4.281505,2.70097,3.57687,4.08101,1.840715,1.6086566666666666,2.38311,1.045335,2.0275292857142855,1.8736625,0.44518714285714284,3.829245,2.4135,4.6125,4.192865,2.97661,4.696185,3.374033333333333,3.1237966666666668,3.450533333333333,2.4800133333333334,3.2730633333333334,2.8076733333333332,2.9897566666666666,2.3709700000000002,0.6658953846153846,2.3445566666666666,0.6255621428571428,1.9466733333333333,2.4688733333333333,3.1739933333333332,3.2432,1.4350866666666666,1.40158,4.374065,4.55382,3.19132,3.751635,3.124205,1.93144,3.85929,7.838148888888889,3.303845,4.939175,1.6393825,3.860925,1.8686275,4.32243,3.63364,2.04256,4.079575,3.25869,3.888815,3.72256,2.029085,3.996985,5.6172225000000005,4.79356,3.427475,2.967015,1.7088525,1.967685,3.89145,3.197345,3.19424,3.77083,3.470005,3.617805,1.610585,3.618575,3.01954,1.7261925,4.1019974999999995,1.0699583333333333,3.31838,1.6891325,4.05094,4.463311666666667,3.59516,3.0612399999999997,3.709085,3.375205,1.8536275,2.2814525,3.9046000000000003,2.6673,5.6871275,4.27099,4.53591,2.382035,2.505755,4.45579,4.550405,2.398194,2.398194,6.111355333333333,3.8671845,2.6434925,3.021925,2.1885133333333333,2.824435,3.26901,3.7935258333333333,2.7496445,3.19117,0.9544119999999999,3.61136,3.02358,4.090935,2.63463,1.54748,1.412895,3.14638,5.925561,5.65171,3.684025,1.6081725,4.23825,3.868625,0.9390783333333333,2.908265,1.4297119999999999,5.2396675,1.3860966666666668,3.96068,1.829415,1.4350866666666666,3.07466,2.80696,4.763005,6.840208333333333,3.82953,4.65219,2.5521,2.91196,4.075305,3.85232,4.180975,4.39097,1.086995,1.6663175,1.0753275,2.601735,2.036035,4.839055,1.0753275,4.18543,2.3617,1.35283,1.35283,1.7261925,3.976805,4.225035,3.734275,1.443532,1.443532,0.968575,2.99015,2.084175,6.103885,4.09614,3.7187,2.7301,1.0170814285714287,3.501085,2.930285,4.279685,3.749505,3.85231,3.85231,3.12504,4.0541,1.8207125,2.757405,0.9450188888888889,1.9370933333333333,3.32036,2.53831,3.090655,3.090655,2.692535,4.567325,4.37603,3.818255,3.55193,4.010665,2.58149,4.3253900000000005,2.71501,3.979455,8.164065,5.3135,2.73849,3.183755,3.001305,4.43997,3.2517780000000003,7.58274,4.557016,4.680585,3.61417,3.858445,3.6564,4.41097,4.818075,2.496335,4.512485,6.492781666666667,2.65618,2.038412222222222,3.22193,3.271335,3.622805,5.8662,2.1438966666666666,2.395236666666667,2.830395,3.2821100000000003,3.355066666666667,7.185042666666666,1.60719,4.817528333333334,4.817528333333334,3.266725,3.822076666666667,3.22117,2.564906666666667,5.32709,4.390332,2.1161820000000002,3.8701,3.79814,3.516070833333333,2.858285,2.99836,5.844041666666667,3.438765,5.24305,3.19354,4.742205,4.07497,3.60959,2.9889833333333335,2.0550533333333334,2.97463,3.84187,2.978405,3.2243183333333336,2.976835,6.061428333333334,2.45751,1.730185,3.142098333333333,2.4140266666666665,3.937595,2.871585,0.9390783333333333,3.320835,3.802315,3.90527,5.9684225,3.00409,3.024935,3.02101,3.02101,4.009055,4.10317,3.668405,2.09145,5.5383575,2.163635,4.44317,3.53101,7.97349,2.8160966666666667,1.2531666666666668,3.00759,4.60706,0.615065,3.981615,3.40941,3.049055,3.27161,4.2846,2.0115333333333334,2.478145,9.19093,3.507415,3.02298,1.3860966666666668,3.799275,2.60863,2.26162,4.231195,5.28392,1.626315,1.2016816666666668,1.1116883333333334,4.40188,4.627735,3.74486,3.4786975,3.4786975,1.610585,2.35013,3.185453888888889,0.9166288888888889,3.09636,1.1527975,1.6252675,3.22996,3.42025,2.63552,2.718855,2.8156958333333333,4.51217,3.8164,3.19603,2.991885,2.59553,4.151905,6.872685000000001,3.98087,0.92574125,2.7553574999999997,8.63919,4.56596,4.146715,1.13125,4.654418333333334,1.3881716666666666,3.6029975,3.6029975,3.93589,8.806151666666667,0.8208322222222222,4.801565,4.249345,2.2927866666666668,4.177465833333333,3.70088,2.2019975,9.802705,1.7738975,2.5068766666666664,3.381715,1.7191433333333332,4.3389975,3.12463,3.310175,3.3707346666666664,2.74489,2.79576,1.1193633333333333,7.01517,3.86302,3.871345,3.729765,1.9655275,3.0612399999999997,4.2988525,3.780985,0.6161700000000001,3.41039,3.963295,4.49806,2.098445,1.399698,4.09557,4.20299,8.69026,0.6912684615384616,0.9299375,0.9299375,1.8501766666666668,1.3194366666666666,1.443454,1.8233033333333333,4.68642,1.2878366666666667,0.8344128571428572,4.029055,3.480325,1.13364,3.31798,4.61881,3.44842,0.75148,2.17796,9.4436,3.7042433333333338,3.35899,3.15372,1.841295,2.46012,2.51448,4.41053,4.30092,3.694365,0.9118771428571428,1.417078,0.8772220000000001,3.9571750000000003,4.372615,4.0679,0.9166288888888889,1.6548279999999997,3.975065,2.169047142857143,4.9363150000000005,0.98975,4.714615,0.605635,0.605635,0.605635,9.709635,3.911105,1.1527975,3.904905,4.76836,2.776165,3.229375,5.235596666666667,2.809415,1.820193333333333,2.203936666666667,0.75148,1.6905583333333334,0.5041566666666667,0.8174483333333334,1.4831566666666667,3.96698,3.724495,2.060205,7.271386666666666,4.83308,0.5675722222222223,6.1715,5.130776666666667,3.426235,4.457805,8.070589,3.7589410714285716,4.83308,4.489979,2.2998366666666668,4.125115,3.48899,7.416595,3.377135,0.504321,1.47084,4.32465,1.759946,1.2016816666666668,3.87892,2.363373333333333,1.80269,3.26145,1.682646,4.48161,4.26163,3.932615,4.736345,6.26779,2.740325,3.84755,1.4297119999999999,2.30312,3.513155,3.31505,2.1161820000000002,4.02043,2.342715,4.84014,2.831345,2.39845,3.3213616666666668,1.7916899999999998,3.477805,0.9166288888888889,2.1911490000000002,1.1116883333333334,1.8518,3.49046,1.60719,1.4831566666666667,2.0066725,3.34228,7.62632,0.9118771428571428,1.13125,1.275998,3.58075,3.819225,1.275998,3.96026,2.30312,0.615065,0.9166288888888889,1.8501766666666668,1.4297119999999999,0.44518714285714284,1.6601019999999997,4.248869333333333,2.2927866666666668,1.3102850000000001,3.09811,1.313705,1.7738975,2.8492466666666667,2.203936666666667,4.45037,2.8492466666666667,0.9390783333333333,2.985675,2.1692375,0.07002159090909091,0.07002159090909091,0.07002159090909091,0.07002159090909091,0.07002159090909091,3.18554,2.72709,2.7881933333333335,2.6395666666666666,4.82229,4.40332,1.737988,3.7318,3.659175,2.291295,5.00903,2.819785,2.522135,2.51138,2.798545,4.34395,8.371793333333333,2.21529,2.0093900000000002,2.94103,0.98275,1.4249483333333333,2.4347866666666667,1.9531666666666665,1.413125,2.760203333333333,2.2124200000000003,2.7364833333333336,2.53853,2.6447166666666666,3.67801,3.4429,2.593383333333333,1.311296,3.82061,3.694725,1.6381666666666668,1.313174,1.313174,1.313174,3.522675,2.6881866666666667,1.1156,2.21198,1.366542857142857,4.307535,1.5129299999999999,6.408709999999999,3.2589449999999998,2.53746,3.170032,3.170032,5.162326666666667,3.111625,4.35894,4.74193,2.2083325,2.9816599999999998 +GSM1946779,1.0,1.9964325,1.9964325,1.5630866666666667,5.12395,2.849605,2.554556052631579,1.7287100000000002,8.325521274509804,4.816495,3.0256366666666668,2.801125,2.312135,3.550875,4.735625,1.8107,1.4348100000000001,5.17525,2.423556666666667,2.4244875,5.25955,5.271985,4.19332,2.205595,2.0819199999999998,4.19243,5.07505,4.398615,0.7324625,1.578928888888889,1.8645255555555553,1.4452575,1.4798225,1.283442857142857,0.6844775,3.204672857142857,1.528185,1.3282825,1.1631625,2.12417,1.0211075,1.08429,1.055234,1.455684,0.903308,0.931392,0.777272,1.224187142857143,1.8025860000000002,1.819546,1.570362,2.10974,1.7426739999999998,17.694787083333335,0.37978466666666666,0.8287739999999999,1.173764,1.6768820000000002,1.689178,1.754782,1.0734371428571428,1.0734371428571428,1.0734371428571428,1.171525,1.366018,4.7708325,1.12754,2.113725,2.170345,2.6206,1.03073,2.37381,2.2831025,2.0389125,1.523435,1.87982,1.55574,1.73365,2.382353333333333,4.105645,4.62343,4.397245,1.5113333333333332,5.01265,4.764216666666667,4.029785,4.264455,1.0458475,7.53288,0.605990625,0.605990625,2.0753225,1.0460028571428572,17.03885,4.8918,5.19425,4.620915,3.845785,4.131295,4.90165,0.5191166666666667,2.248508333333333,1.68401,2.4161575,5.09805,4.496145,1.22256125,2.81226,3.050413333333333,2.4701066666666667,3.0001533333333334,3.515595,4.96244,2.6946085,4.72534,3.1863266666666665,0.7450963636363636,1.5168659999999998,2.146435,4.319645,3.33162,0.540676875,3.48131,3.901555,0.785705,3.90353,1.697052077922078,2.163505,2.33552,1.99832,2.916665,4.876035,3.48232,2.6323866666666667,3.00723,2.946963333333333,4.54671,2.7339533333333335,5.379,3.46533,4.21421,3.26887,1.91879,3.71421,2.3780575,7.265203333333333,3.8376,2.682565,3.514615,3.124595,4.96314,0.7538766666666666,9.51355357142857,3.47389,2.3271166666666665,1.9289566666666667,3.6149,2.535965,4.8243,5.3989,2.23131,4.531385,2.74154,4.502285,2.23131,2.788213333333333,4.751775,5.026273333333333,5.05555,7.195458333333333,3.275725,4.15443,2.98654,5.35315,4.86309,1.181385,8.23783,4.359105,3.500305,3.505965,3.573945,3.44203,2.31016,6.144629999999999,2.32178,3.94328,3.898875,4.199845,4.884975,4.527645,1.5620383333333334,2.771315,2.952115,1.9398575,1.9398575,6.062282857142857,3.232365,1.9002133333333333,4.06886,4.186625,2.83929,1.4754466666666666,1.2355222222222222,6.8254,2.69612,6.67585,5.01145,4.54181,3.771965,3.242395,3.823055,3.605025,3.76469,4.11244,6.718,2.89586,3.690195,8.906063333333334,4.48041,3.665366666666667,3.01713,2.817973333333333,3.759733333333333,3.9402991666666667,1.4762025,2.8604866666666666,2.1094833333333334,1.6672440000000002,1.7348933333333332,2.64903,1.823645,2.298885,3.0175633333333334,2.55004,2.4592266666666664,3.0346499999999996,4.764216666666667,3.58709,3.85708,3.157675,4.89981,1.3904500000000002,2.236205,2.9173228571428567,2.21026,2.575816666666667,3.1075700000000004,3.2665933333333332,1.891042,1.3432166666666667,2.9264966666666665,0.662914,1.6462333333333332,0.5395166666666666,0.5395166666666666,1.57184,2.02393,2.0865199999999997,1.23267,1.5102733333333334,0.31522384615384613,2.726593333333333,0.662914,1.15554,0.21823648648648647,1.5378566666666666,2.19006,3.467333333333333,2.1763833333333333,3.0052800000000004,2.6161966666666667,3.0129466666666667,2.438966666666667,2.664076666666667,2.4652166666666666,2.2539866666666666,2.6186633333333336,1.8664966666666667,2.72791,4.747855,0.7195550000000001,1.9499233333333335,2.8227966666666666,2.2646466666666667,4.145896666666666,1.54291,2.5336233333333333,2.4671933333333333,4.27453,1.9993333333333334,6.858954761904761,1.6324714285714286,2.8602166666666666,2.2168725,2.10669,3.6082666666666667,2.054215,1.9328675,4.67634,2.9302433333333333,2.149945,3.744935,4.107205,4.407675,3.80562,2.294725,3.283825,5.249450666666666,4.001705,3.79152,3.78318,5.0343,3.149205,4.576355,3.524235,0.9370075,4.767465,1.3195816666666667,4.02814,3.81271,6.289304,3.82202,4.18351,0.9750375,2.17534,3.477115,4.06753,0.8973942857142857,1.4331365384615387,2.0174690476190476,2.545398,5.30748,5.434621,2.11699,4.0173,5.3117,0.3385721428571428,3.68059,2.45076,0.97279875,4.264805,2.05471,12.26671,1.11367,1.349015,2.9062933333333336,2.33889,1.954335,4.430445,0.30174,1.7360499999999999,3.0548333333333333,0.9954675,1.92153,1.0212828571428572,4.970625,4.02315,2.09716,5.73935,5.4222,2.24629,1.2022785714285715,4.678363333333333,5.28045,4.26171,0.9319363636363637,7.939336666666666,2.8676366666666664,4.783905,2.63798,2.5495933333333336,4.84862,2.7110766666666666,3.01955,2.3415866666666667,2.47344,3.052845,2.972443333333333,0.3518725,4.21321,3.873285,3.835765,3.82454,4.34014,6.238542,4.21845,1.6316725,5.67285,4.88499,4.112585,4.421555,1.1919116666666667,3.085373333333333,3.3565,2.9362399999999997,15.961540000000001,3.339085,4.378255,4.731325,4.93889,2.633915,4.88523375,1.6222975,0.75863,2.575375,3.396825,3.831905,3.708885,6.431381666666667,2.8800566666666665,2.20222,2.25377,3.1458100000000004,4.09393,2.3907375,0.387948005952381,2.456556956521739,1.9591,1.16011875,0.49308148421325054,0.5982149624741201,0.387948005952381,0.387948005952381,0.387948005952381,1.12245,1.566295,0.83904,1.50461,4.3711075,0.21807411764705883,11.273193095238096,3.01481,2.7709333333333332,4.093595,3.95281,4.265665,2.177125,4.50042,4.202048666666666,4.45038,3.357565,0.7285030769230769,3.3486666666666665,3.7001653846153846,0.6148999999999999,3.871145,3.0457633333333334,5.06305,0.47112545454545457,1.782475,4.724495,3.524335,1.97004,1.8040266666666664,1.6708933333333331,3.609666666666667,4.001345,3.131275,2.943016666666667,5.4891,5.4246,3.909205,2.9617233333333335,2.9638945000000003,6.164483333333333,3.5352333333333337,5.1215,0.40800952380952377,3.5862,4.316776666666667,1.9923233333333332,2.643865,2.8731791666666666,5.262325000000001,0.6859391666666667,1.98598,4.530645,4.1653,1.04324,4.656695,4.302705,5.0082,3.4400666666666666,4.59275,3.54329,4.33336,1.2165633333333334,3.21964,2.73218,5.6189,4.121415,4.325835,5.44595,4.332335,2.828815,5.15656,2.122596666666667,2.332645,3.260013333333333,2.57538,2.60851,2.6671866666666664,1.812398,1.5239033333333334,2.00169,0.8278314285714286,1.61906,2.2767933333333334,1.9992566666666667,3.2627699999999997,3.3836,2.68653,0.98196,5.2179,3.413133333333333,5.42435375,2.679580416666667,2.8774200000000003,3.126493333333333,0.8938066666666667,0.8938066666666667,2.3512853246753247,2.3512853246753247,2.903085681818182,0.51539,1.6709233333333333,2.52819,3.6107333333333336,2.179334761904762,2.179334761904762,2.179334761904762,7.228984047619048,4.283058095238095,0.9073227272727272,3.69298,4.3266100000000005,2.20243,4.577135,3.3013,2.29885,5.65905,3.083543333333333,3.356666666666667,0.7667075,2.0197866666666666,2.9904433333333333,3.3662666666666667,2.4304866666666665,4.770495,2.9413300000000002,3.1774766666666667,4.377586666666667,1.4229266666666665,2.2683433333333336,2.5874266666666665,1.0109433333333333,2.1520233333333336,3.9214933333333333,8.0567625,1.4983625,2.855615,4.35835,2.11594,1.97818,1.97818,1.070655,4.872355,7.26937,4.51245,5.98409,4.887355,1.9031833333333334,4.404325,3.046865,4.971615,3.9549133333333333,0.3596394736842105,2.869625,2.682815,4.300295,4.17593,1.908076,1.9130525,2.565125,5.19185,3.78074,4.108345,2.572805,1.498142,7.11913,4.317485,3.72143,3.636355,4.10025,4.63371,4.696775,3.57724,3.70682,1.94597,1.0283900000000001,2.934935,3.95724,3.926255,5.6527899999999995,5.926292500000001,2.2602875,2.68808,2.7189599999999996,2.7909566666666668,3.0587700000000004,0.5794064285714285,2.32896,3.62689,1.118005,4.744375,3.213375,6.383800000000001,1.2840045454545455,1.2840045454545455,4.10911,3.74515,3.944825,5.5031,2.8125766666666667,2.32855,3.81893,5.13975,2.185365,3.3619,2.713226666666667,4.1614,3.174755,3.3455,4.86465,1.088791111111111,2.586365,4.43304,4.68601,3.318655,2.4644633333333332,1.836915,0.45488555555555554,0.45488555555555554,0.45488555555555554,0.45488555555555554,1.1986422222222222,3.7262925000000005,3.7262925000000005,1.7918066666666668,7.879716666666667,3.26073,4.489425,3.4591999999999996,2.7924,4.807995,4.180405,4.830965,5.23505,1.77288,4.655885,3.79725,2.74747,4.778725,3.49344,2.86079,4.841715,1.83144,4.4407,1.6986,3.636413333333333,3.011045,1.7553075,1.1851533333333333,2.895,3.704255,1.342524,0.8306888888888889,3.33743,1.2416025,4.925652666666666,4.732105,1.3011057142857143,3.531145,0.7760033333333333,2.6565499999999997,2.7309433333333337,2.24151,2.837295,4.46649,2.943755,4.13559,5.3151,4.66204,4.19334,2.563675,1.291677142857143,3.732525,4.94023,1.448815,1.448815,4.19457,0.24583666666666665,2.0499233333333335,0.24583666666666665,0.24583666666666665,0.24583666666666665,0.24583666666666665,3.62778,2.6727633333333336,3.001875,3.6303,3.3616333333333333,4.458375,2.28613,0.9870625,0.9870625,0.9905466666666666,0.9905466666666666,3.69196,1.81971,3.528815,1.4533844642857143,1.4533844642857143,4.18511,0.5659521428571429,2.059405,7.547158333333334,5.19415,3.21603,3.66245,0.91100875,2.561475,1.94945,5.0445,4.206815,4.358765,3.88291,1.2625899999999999,2.71628,1.8551475,7.64774,1.746425,4.52315,4.83677,2.718245,3.94967,6.21847,8.045875,4.310435,5.54485,4.829375,2.1617,3.092505,2.31842,2.32256,1.940795,3.91298,3.74269,6.04275,6.79411,4.5339,1.05748,1.61762,4.14286,4.710915,2.23631,5.09305,5.09005,4.456566666666666,1.7670133333333335,3.8091000000000004,1.5824666666666667,6.430540000000001,2.7520399999999996,2.36924,2.2679066666666667,2.505565,3.6180333333333334,3.4384,3.8699666666666666,3.31899,3.384933333333333,1.480734,3.750535,3.136355,3.481455,0.3552535,2.90204,3.889485,2.4166825,5.3953,5.13865,5.0102,6.5683739999999995,5.59445,2.207666666666667,4.12772,5.11865,1.6833666666666665,5.7461,5.98775,5.0571,4.69175,3.144755,5.81575,5.035,4.054495,5.8147199999999994,7.51975,3.88613,1.2622066666666667,1.5593883333333334,2.580805,1.767194,4.36137,4.14687,5.4594000000000005,2.379703333333333,2.65941,2.74544,2.4850966666666667,2.3330533333333334,1.1608333333333334,0.5308235294117647,3.938825,4.00808,3.32182,4.83323,2.900175,3.3297733333333333,5.567893333333333,2.9376533333333334,0.5889529411764706,3.699715,5.70365,1.777945,1.4632640000000001,4.518825,3.727015,2.556766666666667,3.9483333333333337,4.19705,2.7415000000000003,2.3254533333333334,2.3129833333333334,2.4440433333333336,2.67559,4.315136666666667,5.080618333333334,6.6248717500000005,1.581456,4.78236,3.3285245833333335,5.266369583333334,2.736473333333333,3.02205,2.302885,2.184746666666667,1.2585375,1.2585375,2.6655366666666667,2.4111966666666667,2.7357066666666667,4.097485,1.8157139999999998,2.227705,1.84742,0.51283125,3.85654,0.6246708333333334,0.981315,3.695005,4.40306,4.35033,1.6567075,4.11143,2.9602799999999996,0.9114500000000001,3.89819,3.4662357142857148,2.9390966666666665,2.342435,5.1019,0.2927362068965517,2.3157638333333335,3.1596,1.490505,3.698955,5.57225,2.26954,1.33368,3.868285,3.87025,2.8198566666666665,2.8198566666666665,3.62877,3.22031,4.87833,5.199553333333333,4.924845,1.0359533333333333,2.258906666666667,2.6436733333333335,3.609545,5.1239,6.0375,5.00265,4.329466666666667,3.8620666666666668,3.7784999999999997,3.30049,3.8622,3.3022500000000004,3.1317033333333337,0.6201078571428571,2.2048275,2.367105,3.491705,2.74352,3.3863,0.7789066666666667,2.43927,4.003059,4.416655,5.67685,4.00415,2.318325,2.318325,0.814251,3.2758,4.49039,4.437785,4.813540714285714,3.154745,5.27805,0.6366209090909091,3.18591,3.9546,3.96825,3.451835,0.7851085714285714,4.7827,3.907115,4.51012,3.91458,4.77914,2.81736,4.254345,1.6769725,0.9984500000000001,2.8177066666666666,4.844545,3.76394,3.203665,1.4203483333333333,4.002685,2.58965,2.920375,2.701385111111111,3.13077,5.01811,2.7166099999999997,1.73073,3.1958866666666665,1.4701310714285714,2.7974633333333334,2.93001,2.272425,2.7091333333333334,2.9726933333333334,2.526616666666667,1.9053433333333334,3.9998,2.799276666666667,3.1444106666666665,2.210576666666667,1.877065,4.294289999999999,2.9861166666666663,2.621026666666667,3.1444106666666665,2.2435133333333335,0.8213963636363637,2.44857,1.0077866666666668,2.232015,1.655625,0.9147545454545455,1.6750475,1.82595,2.6996685,2.660925,4.59979,1.565995,3.790315,2.7353133333333335,1.6220240000000001,2.2236166666666666,2.82963,1.56346,2.858143333333333,2.427583333333333,2.274306136363636,1.8051225,1.943508,3.5126000000000004,2.365743333333333,2.843655,3.14155,2.8907900000000004,3.6033333333333335,2.06907,4.3884,3.5485333333333333,3.7105,3.372,3.3946666666666663,3.499333333333333,2.1294233333333334,7.656549999999999,4.72662,4.264985,3.278545,2.89673,1.983355,4.071035,1.784506,4.02294,4.601515,1.446984,2.6052133333333334,1.1576366666666666,2.54334,1.68971,2.3508033333333334,4.880105,2.8291733333333333,3.52467,4.821645,0.74587,1.591374,0.9800890000000001,3.540005,11.735063333333333,4.349433333333333,6.6883,1.92848,5.16265,4.40397,2.4896,5.4051,0.29039470588235294,0.8411542857142857,4.66203,4.723015,7.1010375,2.2419975,4.33396,4.471265,4.576295,4.43573,3.94838,4.093795,3.12795,5.042825000000001,4.16277,3.60773,3.260695,2.13527,1.9291766666666668,1.3721501875,2.3943566666666665,4.335285,4.582805,1.573162,8.80779,1.9113266666666666,2.6644025,0.9879260000000001,0.9879260000000001,7.8041275,3.071165,2.6356,2.0674325,2.94523,2.11274,1.0754066666666666,3.2820566666666666,2.5457033333333334,0.5569557142857143,1.7493299999999998,3.410762,3.410762,1.1254733333333333,2.61611,2.39224,2.5333916666666667,1.40574,1.7461166666666665,5.159290666666666,2.80838,2.434105,1.2195275,1.2195275,4.52491,5.10185,4.784685,3.333215,3.735105,6.53861,2.853925,2.9601566666666668,3.532633333333333,3.979555,1.17161,3.19453,2.439955,4.181785,2.2110366666666668,4.65637,3.636085,4.27282,3.60655,5.586977999999999,1.0652288888888888,2.1814475,1.78218,3.656135,4.8067075,4.101305,3.75362,4.28247,4.06836,1.7140525,4.358415,3.455,3.622675,2.3894466666666667,0.843225,3.40539,4.632965,4.949645,1.2073433333333334,3.1053866666666665,3.1249233333333333,1.7535266666666667,1.7685825490196079,1.7685825490196079,1.1825466666666666,2.4971733333333335,1.1040157142857143,1.3983919999999999,4.571165,4.866305,0.5408809523809524,3.61577,3.347,4.084115,5.21475,0.416219,9.34178,5.39095,2.838105,3.37687,4.714895,5.5238635714285715,5.0393,6.534974999999999,0.75929,2.9387733333333332,5.36795,2.4927966666666665,1.834565,1.960266,4.83801,5.0453174999999995,2.480049642857143,2.704806666666667,3.7822333333333336,1.8549575,4.503735,10.61445,9.078164166666667,3.6336666666666666,4.833085,3.1929583333333333,2.992305,3.894565,1.673524,2.97383,3.82069,3.22154,4.65787,4.92518,5.49028,2.7389233333333336,2.938495,4.67742,4.96476,5.36475,4.628428333333334,3.93879,6.2598,3.4209,3.124665,2.96131,5.10195,3.710305,5.36485,2.202215,3.01524,3.43431,6.12265,4.138755,4.511,1.4746320000000002,0.92026375,2.541175,0.617406,3.718445,3.637515,3.40099,2.77905,2.11515,2.877675,2.583125,3.10675,1.9707560000000002,3.0321687500000003,2.8937,2.31242,2.67665,3.596006,1.2310066666666668,2.6398366666666666,5.2673,3.724066666666667,0.983635,2.821873333333333,3.724595,3.649998,1.514875,5.45435,5.40165,2.4139733333333333,2.9494566666666664,29.493327936367557,3.429233333333333,1.6934333333333333,3.9195333333333333,1.5689933333333332,2.53994,2.8650599999999997,3.361166666666667,1.9538225,2.62965,2.2707725,2.9105195,3.0228566666666663,2.3689475,1.6128825,2.12468,2.730425,0.3938327272727273,1.1169925,2.801356666666667,1.324276,3.460985,1.514875,1.85402,25.989503000000003,4.222555,4.945005,3.64976,2.76244,2.424615,2.4807566666666667,2.24353,3.741535,5.476674,5.46155,1.6163440000000002,1.8138359999999998,2.10484,2.5910883333333334,3.626085,4.90726,4.861175,4.72149,0.18926595744680852,4.850465,4.6219975,3.917055,9.12092,1.0607675,1.0607675,3.06949,3.478255,5.7819,2.1465344444444447,1.0627966666666666,5.24705,1.93162,4.31195,4.292385,3.25605,4.23286,4.006965,4.88038,3.205985,0.7497422222222222,3.291725,2.1588908333333334,4.57859,7.625875000000001,5.3966,1.9508066666666668,1.9508066666666668,6.35584,5.23105,4.246065,6.10805,2.48242,5.174883333333334,1.4452166666666668,1.4045766666666666,2.7128833333333335,2.049046666666667,2.964525,2.8121500000000004,3.848005,4.0782175,4.79013,5.3728,2.16073,2.3039625,1.9422775,2.713275,2.1628375,2.12606,1.978735,4.931445,1.8463975,3.830445238095238,2.5019,2.73375,2.718336666666667,1.76788,1.5606857142857142,0.9693339999999999,2.39474,3.6996,0.674484,4.714275,1.89313,5.809816666666666,1.9557,1.5285575,1.557985,1.5038533333333335,5.8385533333333335,1.783324,2.915286666666667,3.606666666666667,1.2606875,1.89251,4.972210666666667,3.1360733333333335,3.3593333333333333,3.756066666666667,2.832356666666667,2.9185266666666667,1.2650726785714286,0.2591016666666667,0.2591016666666667,0.2591016666666667,0.2591016666666667,0.2591016666666667,4.061665,2.7606966666666666,2.3835125,3.4736999999999996,1.42816,2.629096666666667,3.3001166666666664,2.1631066666666667,3.687905,3.083415,1.7691666666666668,2.9985233333333334,3.2768633333333335,2.25171,1.9516125,3.784685,2.71048,3.29597,6.0141,2.766776666666667,2.8667833333333337,2.7068933333333334,10.867862500000001,5.10385,4.79779,5.01425,4.03404,2.8738433333333333,5.0059,3.16392,2.514865,5.964341666666666,3.922365,2.982935,2.3544475,3.85815,5.087361714285715,3.54692,18.086139273809522,1.254675,4.97559,0.8622011111111111,1.11878875,2.958575,5.2572,4.9703,3.5106,1.30639,2.02728,4.29182,3.25999,4.339405,3.382635714285714,2.52564,0.68494,2.6876166666666665,5.04625,2.299125,2.0595975,2.1010225,18.922885833333332,1.6070239999999998,1.23326,2.46482,0.3002176923076923,1.919725,2.87438,1.9320700000000002,2.9202999999999997,2.554625,7.1265575000000005,2.1088325,2.677675,2.2992375,2.0658125,1.5960633333333334,3.3432,3.009105,2.908385,2.9306300000000003,1.9492275,2.5209229166666667,3.382534166666667,4.006955,0.38556166666666664,3.1527833333333333,2.946286666666667,2.960835,2.14415,3.596933,3.705185,1.6209666666666667,2.3278,2.1752033333333336,1.5895066666666666,1.8233,3.654715,3.387235,0.7965833333333333,3.30098,5.20925,4.55698,2.2764420000000003,2.2764420000000003,3.2546033333333333,5.28745,3.163655,3.309125,2.35006,1.1129727272727272,4.067635,3.539725,5.41855,4.05206,2.33477,2.33477,1.7189825,3.7139,5.125,3.34765,4.16505,3.21213,2.262913333333333,4.757465,3.440325,4.240405,3.9675333333333334,3.8059666666666665,4.720116,3.0957600000000003,2.70067,1.9327033333333334,3.587975,2.876275,1.64252,3.70738,4.350745,4.321705,2.3431266666666666,4.26531,4.53439,6.3049695,3.98795,2.16764,5.0254,2.57169,7.4173350000000005,2.4853133333333335,1.255155,4.18726,2.9980100000000003,4.407415,0.6689228571428572,0.825185,3.64881,3.67165,2.061330606060606,4.90541,2.84371,2.938415,8.93141,1.73151,1.319526,3.494905,2.598175,3.46679,3.685635,7.370306666666667,3.1406066666666668,2.1249833333333332,2.9776966666666667,2.4387166666666666,3.4642666666666666,8.70815341543514,0.9164623809523809,1.03825,5.63425,0.47767133333333334,1.6410925,2.4431475,3.0653,2.890675,1.693275,3.71732,2.638275,12.777334999999999,5.57617,2.5764,2.5764,4.290625,0.8561066666666667,5.528983333333334,3.95013,3.879565,5.597901666666667,3.364525,4.38148,1.370425,2.77535,2.756725,2.71427,3.237955,2.752715,3.10786,3.543425,3.664365,3.075225,3.020245,2.57469,4.283415,4.699475,2.8331366666666664,2.90598,5.234576666666666,4.49494,18.744944166666667,13.052324047619047,3.1468942857142856,0.6789991666666667,1.526557142857143,4.548795,3.614645,3.33690467948718,1.671555,0.8570744444444444,0.7017675,0.6309342857142858,2.09218,1.644154,5.426466666666667,3.4992,0.71816,3.320435,2.421045,2.1550825,1.8478439999999998,5.911076666666666,1.445658,4.796475,2.924985,2.9823566666666665,2.28589,2.63428,2.594203333333333,0.6709209090909091,2.6532,2.77167,3.4755986666666665,2.9326133333333337,7.8370854166666675,3.596155,3.33927,1.9095325,3.71369,7.608974999999999,2.1047225,2.5395,2.480695,1.59312,2.74055,2.0596175,2.542475,0.967248,1.3705725,0.865635,2.80577,4.03112,6.4005,5.5645,3.10451,2.2353,2.751875,3.0053533333333333,7.149468333333334,1.17853,0.414981875,2.95581,2.070813333333333,1.601926,3.554446,1.26715,2.02073,4.4460033333333335,3.23835,1.1530500000000001,1.92804,4.03345,3.52953,4.60356,4.921035,2.4364375,5.70095,3.83495,0.7952923076923077,5.16835,4.342905,4.314754166666667,3.5852,2.466285,1.338536,1.2939,3.47539,2.70999,3.28078,4.311615,2.703485,2.6323333333333334,3.31875,3.932535,5.20175,2.34038,2.721755,3.817735,5.98175,0.572185,4.638145,1.7045,3.42879,4.1335,1.83332,2.965805,2.30318,2.03933,2.430665,2.4552125,1.9887566666666665,5.70575,3.73224,1.3286685714285713,7.06616,1.0579033333333332,3.704625,1.7919533333333335,4.522575,4.286305,2.1375466666666667,3.19851,4.115665,9.70799,2.88138,3.66354,4.17461,3.66416,1.660815,7.66904,3.627255,4.16519,1.498695,4.210075,2.9385,1.104035,1.853024,4.26684,2.18456,4.28849,4.8110975,4.358155,4.517685,2.34109,5.441,3.94438,3.2864,2.228216666666667,1.9731839999999998,5.41355,6.3438,5.4824,4.859665,3.00675,2.22668,4.28237,3.642865,1.0507056593406594,4.04937,4.853045,4.89535,2.747495,3.57649,0.5570771428571428,0.5570771428571428,5.9068,4.62971,5.93265,2.236705,3.65125,5.08325,0.836008,4.71561,5.20295,4.403305,4.4,3.61192,1.90892,3.13847,2.0967,4.409785,0.7010625,4.063995,4.3724,2.77765,2.8702,4.46118,2.192185,3.074015,58.69706165800866,3.599405,2.6465433333333332,1.6487225,3.188815,3.93913,0.7922175,0.98084375,1.937265,1.937265,1.365072,3.20932,2.18863,3.9324765,7.00507,2.8087133333333334,1.186402857142857,1.3935366666666666,2.7727033333333337,4.030130833333334,0.926721,1.864515,1.001954,1.832745,4.148815,4.24677,2.9492,22.120390800865803,5.0238,3.94663,3.122735,2.269573333333333,3.087015,3.406105,2.379325,5.35884,1.800228,3.849695,3.294730194444445,6.1243912499999995,2.09778,2.674615,1.97264,3.859255,2.39486,2.2079725,2.1161666666666665,3.435268888888889,4.161705,3.36352,4.374555,4.238495,2.58465,2.73683,3.256985,2.60653,3.004328888888889,2.247155,1.9121625,3.63127,1.1819783333333334,3.782275,4.41492,2.622655,4.91952,4.657795,5.112655,2.2661433333333334,2.280365,2.60997,2.755825,4.040195,3.49813,4.83665,0.7068114285714285,3.9333406666666666,2.95348,3.8477,2.344385,1.829262,4.439061666666667,1.3250666666666666,2.92513,4.426295,1.173284,3.80772,3.16622,4.7911,6.0243775,2.12041,2.845745,2.5218933333333333,3.5389,2.108026666666667,2.6531433333333334,3.236546666666667,2.4025633333333336,2.4352466666666666,1.41312,1.7570775,1.7570775,1.8854333333333333,2.09752,1.6889333333333332,3.3817333333333335,3.74365,5.67455,2.798595,1.710685,4.402205,3.407475,3.534895,4.22669,1.98193,1.79479,4.41123,1.799395,4.563248333333333,3.38394,3.620195,2.4336866666666666,3.839499375,3.139755,3.07946,3.52271,0.1455330612244898,2.8509766666666665,7.810684999999999,1.514546,3.46457,3.493245,1.0131657142857142,1.0166016666666666,1.9155875,4.05681,2.96167,7.034715,3.274545,3.662005,2.9247,2.81124,4.271665,3.53179,4.003945,3.42613,2.875946666666667,5.532,4.30391,4.68874,2.6263166666666664,2.015905,3.508885,3.96582,2.77294,2.98306,2.262315,3.954755,3.522185,3.62703,2.5896,4.093405,4.69688,2.762665,4.41956,5.01305,3.635345,4.685335,3.40418,2.94037,8.28026,4.5797,5.5461,5.129,3.89148,5.910905,3.91617,3.738535,1.291334,6.65485,2.469035,5.06045,4.210195,4.16754,2.8663666666666665,2.0329566666666667,2.3265,2.5132966666666667,0.875816,3.3367,3.6252,3.0505366666666665,2.063213333333333,3.67423,4.512525,2.2457766666666665,0.5493383333333334,4.493685,4.74265,4.67461,5.2219,3.450345,4.394775,5.0231,4.80216,1.4071,0.9718076923076923,3.1584266666666667,5.17085,5.67075,0.498431875,2.831845,2.469813333333333,3.305595,4.55743,3.9060666666666664,2.1878,4.053065,3.187345,4.070495,2.943065,6.52215,3.496485,7.12009,0.6535624999999999,4.063735,0.7716339999999999,2.32364,4.025733333333333,3.1776366666666664,1.2898666666666667,2.26478,4.587295,3.73061,4.022265,2.1633633333333333,2.2967625,2.93826,4.95738,3.731825,3.95147,1.695138,1.14802,5.7861,2.3783225,7.796374999999999,4.37301,3.62601,2.17922,1.607755,4.362345,4.88643,1.6261,2.347625,2.508725,2.8509766666666665,6.621995,3.1477583333333334,2.8133166666666667,4.460125833333333,3.45823,1.9917633333333333,5.59655,6.842617499999999,4.311295,5.5381,0.6309181818181818,3.458255,4.504135,4.5402875,4.09988,3.83251,3.15169,2.73235,3.14092,2.91947,3.5445010000000003,1.593018,5.147793,4.211275,4.93199,3.86825,3.355905,3.2521883333333332,2.25573,1.310635,0.903455,2.83037,2.345315,1.0714566666666667,2.7046266666666665,6.559,5.4715,3.515855,4.895855,15.670945476190477,5.0092,4.54515,3.688625,0.7141716666666666,5.2749,4.88054,4.72142,4.775275,4.858005,2.933545,3.51257,3.257505,1.483158,2.99657,4.41054,2.5424666666666664,1.25061,4.190155,4.923195,4.0041,5.6239,4.79677,5.41365,3.95465,2.489943333333333,4.31804,3.919155,2.57367,2.8808166666666666,2.97241,1.7274487500000002,5.1384,2.7551814285714284,3.2229200000000002,4.045595,2.78054,4.41441,4.294289999999999,2.082925,3.014415,4.212745,3.641205,4.305015,4.26624,4.34323,4.493354999999999,3.29466,5.4446,2.455945,3.26759,3.82942,1.5688280000000001,4.356135,1.022165,4.413155,3.509785,1.1044914285714287,3.69037,2.09731,6.49897,2.4809026666666663,2.4809026666666663,2.4809026666666663,0.58618,0.973455,1.814685,3.32468,5.51268,3.6367038888888885,1.89558,2.1827525,1.8320699999999999,3.791065,2.41407,0.40355230769230765,1.763575,2.250265,2.837115,1.78743,2.972295,2.279845,2.11707,3.89304,2.67411,2.770995,2.7897,1.912115,6.47178,2.036605,4.207615,4.05171,6.366895,1.5348933333333334,3.52549,3.70797,3.7607,3.622635,2.77027,2.102755,3.751895,6.1256829999999995,2.06867,3.58484,3.09941,2.02599,4.79603,5.10385,2.7173866666666666,2.228515,3.78598,6.026174999999999,5.6354,3.20777,2.45127,2.693605,2.923235,3.587655,3.49636,1.249015,2.834135,4.651855,0.7930525,3.97542,3.9975,3.77477,4.188775,2.495125,3.82018,2.006915,4.66298,8.01442,4.96242,3.374195,4.035315,0.988975,4.458555,2.385595,4.31886,5.6826975,4.524575,3.7566,11.08595,4.599745,3.830585,1.4862825,0.6919783333333333,3.069945,3.80241,3.570145,3.69354,2.25627,2.9161300000000003,3.11272,1.1464083333333333,1.1464083333333333,1.9270233333333333,2.47087,4.042566666666667,2.3515533333333334,3.7876333333333334,2.7803,3.6693,2.8668,1.5126266666666668,2.34324,2.0866466666666668,1.8533333333333333,1.5254925,2.7663333333333333,0.8642616666666667,9.712088333333334,0.8642616666666667,3.1496033333333333,2.1238616666666665,3.1403233333333334,4.72863,4.314725,5.1375,5.41235,2.3987966666666667,2.9692633333333336,3.33852,3.5338666666666665,3.5781666666666667,3.4746666666666663,3.03602,3.3030633333333337,1.5728666666666669,5.3898,6.482689142857144,3.824666666666667,3.566266666666667,2.9784100000000002,2.681736666666667,2.878406666666667,1.283442857142857,2.6564166666666664,2.76731,4.18763,5.7387,4.548225,3.1620566666666665,3.5965000000000003,3.20835,4.423373333333334,4.277925,2.6560200000000003,4.5408,3.3200233333333333,3.1642966666666665,4.745965,3.17705,4.121095,6.015188333333333,2.9618566666666664,2.5743199999999997,1.8089066666666669,1.44432,5.020333333333333,3.4540949999999997,2.68326,2.097916666666667,2.38787,4.52285,3.82159,2.61522,3.14162,3.5364,3.760566666666667,3.7205,3.9075666666666664,3.3892333333333333,0.55210375,3.996,2.55571,2.5967166666666666,3.40603,5.01735,5.28135,6.2401,2.733495,5.140241666666666,1.1931566666666666,2.6079466666666664,2.6079466666666664,4.263895,3.594945,3.82981,3.372055,1.770535,2.88329,3.85501,0.9554942857142857,3.766156,2.9631048095238097,1.9101876666666668,0.343371,3.462375,3.906455,6.669465,3.06966,4.688645,3.16514,3.8216,4.46469,1.7297170833333333,3.57004,5.20905,3.33842,3.1520166666666665,3.1992499999999997,5.991685,2.130075,1.02523875,2.00137,1.6302433333333333,5.5843,2.418883333333333,2.39553,1.7140075,4.731325,4.223355,4.60137,0.594936,4.581745,3.679795,2.5124933333333335,2.368583333333333,2.7172199999999997,3.390258888888889,3.8626899999999997,1.5086133333333331,0.6845052631578947,0.7661071428571429,3.676266666666667,4.327445,6.097158333333333,4.323705,5.2245,5.10945,1.4387857142857143,4.1335,2.163553333333333,0.97742,5.6276,5.8984,3.31914,4.822725,4.266435,6.922445,4.2769,6.299238333333333,3.72538,2.9151483333333337,6.3453,9.746307628205129,2.6561166666666667,0.772563,4.09649,4.000935,2.176605,6.1333,4.85736,3.517485,2.88304,2.88304,5.2297,3.47844,4.05617,5.215,3.898742619047619,2.5364585714285717,1.12894375,5.96385,2.626385,5.7968425,4.06625,4.92385,3.511335,2.2062025,4.72477,4.930425,3.7033666666666663,3.838295,4.569355,28.551464523809525,2.2383975,2.603975,2.1949625,1.6298533333333334,2.82441,1.3188328571428571,3.0333633333333334,3.03654,3.2497566666666664,3.4125333333333336,0.7523792307692307,3.2421166666666665,4.890295,3.383925,3.28635,4.122835,6.3073,5.3689,5.0189,4.659375,4.538971666666667,4.641945,3.6562333333333332,1.694445,0.9806083333333334,1.4442599999999999,3.0819266666666665,1.5930900000000001,3.6358333333333337,2.4962266666666664,2.33223,1.7415466666666666,2.66737,2.05976,2.390843333333333,2.93863,4.166235,3.662635,4.516365,1.339242,4.2732,2.5208233333333334,4.41717,2.533236666666667,2.63487,2.680835,1.4812366666666668,3.55793,6.628881666666667,2.83557,3.662045,4.08734,2.535425,3.166265833333333,3.6983333333333337,4.50378,4.577835,0.3333092664092664,0.3333092664092664,5.1977,5.06905,4.069655,2.919675,5.17625,4.64614,0.7397723076923076,4.039015,5.01905,3.744705,6.44545,4.56391,7.19294,13.467075,12.865668076923077,4.2484,4.378625,2.618813333333333,0.6558530769230769,2.5312566666666667,5.5847,1.3054433333333333,4.78778,3.6946333333333334,2.9304900000000003,2.2426566666666665,1.9365733333333335,4.96422,3.69523,9.06659738095238,5.0225,3.99006,6.955894053030303,3.398575,2.7143433333333333,1.4485675,4.452864166666666,1.6060275,2.3003466666666665,2.6915066666666667,0.31524375,3.13288,3.158765,4.463994166666667,1.020802,1.4878716666666667,4.38715,0.589522,0.589522,2.9146495833333335,2.76463,3.2911066666666664,3.63996,4.52912,5.7151,3.790675,4.21304,2.98877,3.1738466666666665,2.6436366666666666,0.5968875,2.6816433333333336,2.981935,3.135605,5.11718,2.830155,4.147175,1.2068,2.93153,2.75504,2.1182025,2.7204,2.904325,1.80917,2.35726,2.0296975,3.28362,2.580125,3.9913325000000004,2.878725,3.927635,3.927635,2.688613333333333,2.688613333333333,9.099821500000001,2.474886666666667,0.820543,2.6553233333333335,2.556313333333333,2.5508433333333334,3.9913325000000004,2.0583,1.761318,1.572914,3.902795,4.70428,1.83297,4.276575,4.140135,6.375855555555555,6.718916666666667,2.3694266666666666,4.14311,7.38189,4.53063,3.475425,2.776616666666667,4.61888,3.8417245454545457,4.374265,5.488901666666667,8.040307333333333,3.4974712500000003,3.512635,1.20512,4.550585,3.941764666666667,3.99677,3.7475008333333335,4.43229,2.399475,2.5690233333333334,7.962505,3.277545,1.2694459999999999,5.66471,3.80293,3.4616333333333333,5.1807,3.4616333333333333,2.794825,3.519035,5.131,1.0537628571428572,3.8305177777777777,4.47753,3.784415,1.3100583333333333,1.694315,5.03935,4.407905,2.714175,7.04252,4.000375,3.249795,4.559985,4.2293725,1.526605,4.19846,2.57628,4.006925,4.36211,4.152345,4.79415,3.087405,4.726095,4.80657,2.4702213333333334,1.884695,3.7498666666666662,2.839916666666667,3.055483333333333,3.1326866666666664,3.897266666666667,2.9524333333333335,5.20395,3.29716,3.444405,2.81135,1.7729266666666668,3.5627333333333335,2.139816666666667,3.271745,3.14758,2.895055,0.7010625,2.301695,1.84841,3.48473,2.08182,3.48529,3.546745,1.631986,3.1610625,4.44916,0.798844,2.411286666666667,3.2537,3.784745,4.01857,1.97426,1.5279966666666667,3.52572,2.4904683333333333,1.6761033333333335,2.870505,1.997,1.172596,1.4141875,6.3596,3.195095,2.159065,2.34384,2.5049,3.86973,0.87327625,0.3362171428571429,0.7844157142857143,4.950355,1.9758204285714287,4.381055,2.19692,2.019740857142857,3.3030814285714283,1.2833405714285715,1.055078857142857,0.6712659999999999,0.5945885714285714,2.6352141666666666,6.69365,3.05044,4.46934,0.30786250000000004,3.57829,18.444045476190478,3.21616,7.6899074259906754,1.1272475,1.1272475,1.1272475,1.1272475,5.668828333333334,3.74796,3.20934,2.1876266666666666,3.29262,3.81911,4.159035,3.745815,3.53246,4.65115,4.368295,4.148745,3.771956,4.27499,4.84119,4.14236,4.936085,3.47162,4.245745,2.6762099999999998,4.25089,3.31771,4.13824,4.27312,4.38841,3.10734,2.592825,2.4903933333333335,4.20056,1.2142021428571428,3.736525,3.0664766666666665,3.384024,4.358155,4.402785,3.14826,2.759745,4.053555,2.995415,3.175035,4.72701,5.22255,3.292245,4.210575,1.67865,1.67865,1.3309375,4.763325,4.102635,6.235418,5.0155,3.704425,6.10795,4.16679,2.0949325,9.11007,4.82524,6.1801825,4.482625,2.870896666666667,4.264655,0.2609762068965517,0.79987375,4.237268,3.4296,5.2501,3.181696666666667,5.248883333333334,5.3566,0.5680992857142857,2.73451,0.480039,1.7013671428571429,3.46444,2.417545,3.924135,3.901105,3.088325,3.659875,3.585985,3.63535,3.42741,3.61686,4.497575,2.57994,1.7013671428571429,2.74183,2.0051125,3.644295,2.44206,3.735705,3.61688,1.660815,4.478715,3.072795,1.4131066666666667,5.50255,4.78733,4.1959,2.8909599999999998,3.16493,4.801065,2.0121566666666664,1.443986,2.37112,2.598593333333333,2.6082933333333336,2.0302000000000002,5.3545,3.6925,5.4019208333333335,3.9892149999999997,4.8614,4.40996,1.92192,5.45405,4.754115,5.4196,4.126205,6.8498850000000004,1.544195,4.85977,3.285265,3.19884,1.909915,1.8158833333333335,3.89216,4.424655,2.3286433333333334,2.3853750000000002,3.3542225,3.3542225,2.7794399999999997,2.773343333333333,3.307435,3.937185,3.656825,0.7821076923076924,3.31138,4.35492,4.47197,2.86572,3.19636,1.756805,2.93706,3.47721,2.289235,4.60027,4.180515,4.457805,1.9117633333333333,1.021981818181818,6.09606,3.667515,3.565466666666667,3.30188,1.866546,30.105092523809525,4.482345,3.34306,4.993365,4.445275,0.9187416666666667,7.413585,2.3839025,5.58195,1.71615,4.890335,5.598918333333334,3.800945,3.063705,1.9720275,3.9479333333333333,5.04265,2.1433875,2.7725333333333335,3.71108,3.244285,2.573655,5.0418,2.085185,2.549345,1.12988375,4.55298,3.546695,4.00756,4.032115,3.17312,2.1342,4.448555,4.99086,3.80911,3.80911,6.35335,1.715515,4.391425,7.117161666666667,3.358545,4.443965,3.433475,1.8886,3.45507,4.222465,1.418365,2.10235,4.39578,4.390825,3.953465,4.51506,2.407235,8.775563333333332,2.50103,3.82204,1.6747571428571428,3.66171,2.2167966666666667,2.735253333333333,2.3732058333333335,1.3543533333333333,2.67909,0.9400657142857144,1.1076514285714285,1.1076514285714285,1.1076514285714285,1.8705433333333332,0.6017925,3.82948,1.1911866666666666,2.895113333333333,0.8961683333333333,1.8712600000000001,2.677466666666667,2.5069866666666667,0.78363875,1.7652166666666667,1.5008299999999999,2.2801233333333335,1.705156,1.705156,1.6781066666666666,2.2036466666666668,1.2074960000000001,1.8436766666666669,1.58345,1.1133666666666666,2.145555,1.94002,6.06445,1.586965,4.27519,18.179831333333333,6.5641099999999994,3.30456,3.398365,3.0941166666666664,2.7447199999999996,2.738936666666667,2.8520533333333336,0.7287408333333333,0.987904,0.987904,0.6718,2.3366266666666666,3.88364,4.543725,1.54849,5.58035,3.509495,2.469745,4.46633,4.197425,4.235085,4.5993,3.5574333333333334,3.33044,3.43695,5.4103,3.4401666666666664,4.63783,0.520748,0.520748,2.56893,3.493915,5.3019,3.42555,4.568545,4.900075,7.576524000000001,7.71011,3.689895,2.346865,4.38042,4.06071,2.57553,2.22929,3.107545,1.7199099999999998,3.068335,2.60342,1.6505975,3.31499,4.62112,1.903465,5.488901666666667,1.69737,3.6396333333333337,4.049555,0.9051157142857144,3.3164433333333334,2.97457,5.15025,1.1622383333333333,1.67676,2.5842,2.103055,1.763465,2.4055175,2.536775,1.9179475,4.594675,4.37157,2.401775,2.6498,1.48313,3.7712,2.0168066666666666,2.657025,4.466125,4.24576,2.238243333333333,3.085375,3.59026,3.68841,2.392465,5.58745,3.961235,3.191135,1.419175,4.419765,2.23765,2.4860633333333335,2.50866,4.0118,5.44425,5.34425,2.3352666666666666,2.8806666666666665,2.8476233333333334,3.5278333333333336,1.93535,1.545414,5.4955,3.3552,2.347314,2.9119966666666666,2.9711266666666667,2.1682466666666667,3.14367,3.2771500000000002,3.7532333333333336,4.999745,4.055305,3.1601700000000004,5.41155,3.58866,2.325125,3.64841,4.041645,3.65845,5.834413,1.9331980000000002,3.81454,2.571885,4.68376,3.673705,0.56634375,2.284685,2.253805,3.622625,2.655805,2.25548,2.708795,0.717952,2.7289133333333333,4.774115,2.23748,4.3993,2.418413333333333,4.16631,2.0370375,4.570035,3.62837,1.7240600000000001,2.95201,7.0272525,4.121205,4.456465,4.890455,6.762087954545454,4.260495,4.359595,2.283025,4.58951,3.908245,2.3279566666666667,1.935715,3.7670333333333335,1.0269071428571428,2.2951799999999998,2.768193333333333,2.68761,4.0104,1.825704,3.35064,1.9282533333333334,6.2148,6.8803525,1.0268825,1.8348966666666666,2.588886666666667,2.8798266666666668,2.0805966666666666,1.0924216666666666,5.691405,2.379305,2.73753,3.7505333333333333,3.2223100000000002,3.466666666666667,3.16414,2.241496666666667,3.1554866666666666,2.4804,4.501985,4.4682,4.15562,3.629,3.4626333333333332,0.937739,1.7045700000000001,2.3400125,2.1457833333333336,2.501866666666667,1.1833616666666666,2.70846,3.0036,3.4771,1.8803233333333333,3.4431,3.93293,6.1232,3.11357,0.6080666666666666,1.896978,2.87628,3.5989,0.7232172727272728,2.8244466666666668,3.502554,3.5132999999999996,2.8267066666666665,3.345154166666666,3.805985,3.6204,3.0469666666666666,1.9335575,5.735,5.35335,5.0735,5.23515,5.78685,1.82441,3.654145,3.7830666666666666,3.364133333333333,2.8587399999999996,2.849406666666667,4.0726,3.5700000000000003,3.2897,14.436933333333332,4.344715,1.04765,2.8697199999999996,1.569334,3.29983,3.1716533333333334,2.279993333333333,5.82348,6.554947666666667,2.22546,0.8305020000000001,4.06724,3.4482666666666666,3.039865,5.0113,5.14705,6.1505,4.78895,3.523675,2.08485,6.842594999999999,1.20512,6.808255000000001,4.69645,2.4725233333333336,4.06192,7.500106666666667,5.8876,2.3195666666666668,1.4645716666666668,2.2168725,6.00361,1.514875,3.013116666666667,2.658533333333333,4.2950116666666664,5.80985,4.403205,6.3969,3.397605,5.34085,3.78136,8.150649999999999,4.961045,5.78895,2.407845,2.54565,11.068836666666666,3.469955,2.507365,2.467286666666667,1.6675766666666665,2.0284299999999997,2.5331966666666665,0.70710625,1.007126,1.0936542857142857,3.91323,6.8068,2.993776,1.45376,4.49804,3.05656,0.588826,3.68253,3.313915,3.678875,4.405595,3.320765,2.65754,4.26193,9.818635,1.7823625,3.9617875,3.94195,4.262595,3.771165,0.9003583333333333,3.648566666666667,3.598966666666667,1.7111966666666667,2.50313,2.3488433333333334,2.64275,2.5479333333333334,2.190116666666667,2.39102,5.826457142857143,4.50983,4.180885,4.482609999999999,1.6323699999999999,2.56455,5.14115,4.76771,5.26075,4.464425,4.84526,4.235845,1.67865,3.85905,7.2078283333333335,1.37962,1.6743866666666667,2.7686466666666667,2.295733333333333,2.8245833333333334,4.890645333333333,0.7661071428571429,2.34588,3.28166,3.87233,4.463725,2.2919133333333335,2.915786666666667,1.8821175,0.59011125,2.3724825,2.83278,7.644675,4.242845,4.49285,0.9100529999999999,2.499843333333333,9.633518166666667,11.355541666666667,3.70296,1.16120125,3.578865,3.567985,2.67053,5.615604666666667,5.02285,3.77925,2.145345,3.485633333333333,2.3101166666666666,2.525873333333333,0.7784118181818183,0.3915093333333333,2.629275,3.386325,1.9970185000000003,3.45444,3.4680999999999997,5.08925,5.33525,1.52421,3.012793333333333,2.1130475,2.1130475,2.308015,2.770375,2.680885,2.8354966666666663,2.6555933333333335,3.4077,3.5368,4.14962,4.279815,4.2235,4.107505,4.00555,4.056355,3.640765,7.943441666666667,1.95064,2.2974366666666666,2.528163333333333,0.8979849999999999,0.7618916666666666,3.953115,2.2883,5.3487,2.919943333333333,3.108143333333333,1.896188,1.49519,4.15242,4.264855,4.265205,1.1643266666666667,1.3802466666666666,2.710316666666667,2.07802,2.624476666666667,1.11019,1.11019,2.7408366666666666,3.930545,2.570875,3.066065,3.427125,1.93021,18.824325393939393,3.826805,5.3703475,3.677985,3.65077,4.224275,3.6434,5.55705,6.03807,0.8782333333333333,0.8782333333333333,0.8782333333333333,2.7024966666666668,1.6766285714285714,3.5864999999999996,4.569765,4.524415,3.615005,4.349865,4.303095,0.8717388888888888,2.2397666666666667,3.02252,6.251920666666666,3.530444,4.327790666666666,4.64897,1.83332,1.9715566666666666,2.353283333333333,0.576325,0.8532080000000001,1.865955,1.9597,2.89652,12.783073333333332,2.5857233333333336,5.37005,0.7429642857142857,10.237315,5.75605,3.741585,4.175745,2.68285,5.8415,2.68285,2.9815319999999996,3.42347,3.802415,3.80708,3.84512,4.46042,3.374435,5.792,6.613874,1.8388533333333335,3.349874,2.8689,27.518381814028313,1.750656,6.29615,5.10053,4.08483,4.037815,4.59441,2.685475,3.024175,2.359655,5.17705,6.4152,4.86999,4.63266,4.519505,2.11399,1.974795,4.20023,0.43747923076923073,0.43747923076923073,0.43747923076923073,0.43747923076923073,4.219115,3.247901666666667,1.0658866666666666,1.7968233333333332,1.1791444444444443,4.69469,2.5016966666666667,2.2649225,7.1640266666666665,3.3237166666666664,0.17044413793103447,20.924499666666666,4.4224266666666665,1.807058,1.4176707142857143,2.25612,2.07194,2.53665,4.68214,3.072275,4.51979,4.216445,2.4040233333333334,7.1178,2.738675,1.99581,5.04705,5.98915,7.990503333333334,4.733545,0.2883,4.07515,4.058,3.2348,1.857725,3.1014633333333332,1.6399100000000002,1.6399100000000002,4.092055,5.897855,11.8430275,8.878350000000001,0.69585,2.58212,3.84163,3.21752,4.591085,5.17565,2.13566,2.13566,3.433195,4.50451,3.3039066666666668,3.571,5.50875,5.3727,5.231373,1.977908,4.673895,4.393585,2.646255,2.8649566666666666,3.118736666666667,4.814195,4.24382,5.175,4.38776,4.042805,4.3602,4.357815,3.83861,5.54535,2.744056666666667,3.0284166666666668,1.169162,4.487405,4.14857,4.232625,1.9015799999999998,2.56793,1.88628,2.6470833333333332,2.039076666666667,3.6579716666666666,1.3629283333333333,2.46609,4.0344,4.1517333333333335,2.5272833333333335,2.4584699999999997,3.3494333333333333,2.9826433333333333,2.3007766666666667,4.296343333333333,2.1354166666666665,2.7698966666666665,2.09009,4.934355,3.1783566666666663,43.117481166666664,2.0291027272727273,2.0291027272727273,2.5682899999999997,2.8323633333333333,2.2064366666666664,1.7607766666666667,2.9986866666666665,1.79076,0.7031761538461538,4.670025,7.209175,4.13011,4.17403,4.5271,2.009866666666667,4.350305,1.7349160000000001,5.3679,4.860845,5.81925,4.155725,1.694445,4.201315,5.41085,4.8141,5.39505,5.6586,4.1855,2.93885,3.3843,2.54352,2.2294375,1.88842,4.178605,2.0735366666666666,3.8203475,3.8203475,2.2778300000000002,1.6103166666666666,2.074123333333333,2.47109,2.220126666666667,5.10668,2.7776899999999998,1.15209,1.15209,3.013726666666667,1.9480766666666665,2.724083333333333,2.60826,2.32069,2.6525333333333334,2.347226666666667,2.1869245,3.012608785714286,1.5964667857142858,0.8256842857142858,56.36408429563492,2.3522999999999996,1.75772,2.13641,0.907062,3.3881613333333336,1.599042,1.599042,2.1398066666666664,3.113436666666667,0.7707825,2.10838,4.221596666666667,3.23838,2.5150333333333332,2.826026666666667,2.02388,2.5188193333333335,0.29037875,2.167656666666667,0.7362960000000001,2.53401,1.2309860000000001,1.2309860000000001,2.25658,2.22188,1.9937266666666666,1.1950986666666668,2.5387133333333334,1.1950986666666668,2.12624,2.594473333333333,2.015566666666667,1.2865119999999999,1.2865119999999999,2.93534,1.4351766666666668,2.56207,2.06865,4.630205,4.045765,13.662400416666665,7.0458025,3.183515,2.62224,4.07679,4.833675,5.32175,3.1596141666666666,4.59327,3.788465,2.5838666666666668,4.154465,3.3012433333333333,2.7172433333333337,4.434995,2.3177600000000003,0.9913614285714286,4.296039583333334,3.0934633333333337,2.94469,0.7735185714285714,2.680135,3.853855,4.004525,4.370135,6.6403,3.25999,1.8255199999999998,3.9414,4.54308,2.291715,2.4568624999999997,2.02909,2.1676233333333332,0.92867,5.4429,4.500025,4.295865,3.60797,3.459633333333333,4.1314,5.469,3.16482,1.8232,0.5417393333333334,14.523990333333334,0.5184536363636364,0.5184536363636364,0.5184536363636364,3.2497000000000003,3.8211999999999997,0.5184536363636364,8.173658333333334,4.698073333333333,0.717699,0.717699,2.9324033333333333,3.286755,3.0209,4.62646,4.386475,4.40536,2.0521624999999997,4.684678,3.63325,3.4456569642857144,4.91542,2.924757,2.2802,2.2231875,2.61575,1.648575,3.4919391666666666,3.2187866666666665,2.39642,2.3432775,2.306865,1.8039500000000002,1.6122075,2.59915,1.0865944444444446,2.512525,0.6041335714285714,4.767595,1.68777,0.8022566666666666,2.682925,7.939465,2.59143,2.075902,3.31925,7.73555,2.481395,4.40527,3.017205,6.05374,3.92033,4.22435,3.7183,5.0311,3.0052833333333333,3.867795,1.1314242857142858,4.211675,2.472906666666667,2.4928166666666667,2.59369,2.41039,2.10366,1.286,5.36595,0.9147545454545455,4.86243,5.3768,4.913795,5.98355,3.771333333333333,2.4203466666666666,1.97715,2.8595400000000004,4.167366666666667,2.66988,3.5536333333333334,2.6966,4.202105,1.739066,41.16541134920635,4.892095,2.47359,2.9863966666666664,2.7116866666666666,1.66751,5.56726,4.796265,2.6244633333333334,3.5839,2.2403133333333334,1.6170525,5.47855,0.7883071428571429,4.875697142857143,1.2383428571428572,3.3516999999999997,3.5059,3.6108666666666664,1.3702,5.264056666666667,1.8577059999999999,1.8577059999999999,2.6934400000000003,3.1969833333333333,3.551933333333333,3.863566666666667,1.45979,3.1338833333333334,2.8732399999999996,6.577121833333333,3.0589833333333334,3.603108333333333,1.1955783333333334,1.3768799999999999,3.0827500000000003,0.895816,5.371713333333334,3.8113333333333332,2.89771,3.775733333333333,3.087986666666667,2.8828,3.3783333333333334,1.8339033333333334,2.5049,2.83408,3.682033333333333,2.3953933333333333,3.5606666666666666,2.95743,0.5834253333333332,9.662883012820513,2.7665,5.19755,4.78673,2.673633333333333,2.9262599999999996,1.4430325,2.1744666666666665,2.406075,1.4430325,3.075675,0.459125,0.459125,1.1265825,1.1265825,0.889265,0.889265,2.61963,2.90431,2.50993,1.43072,1.65492,3.424785,2.95334,4.63318,4.494835,2.16044,4.48099,2.28747,4.762584358974359,1.4789825,1.4789825,1.75165,1.87805,3.1789933333333336,1.9969075,4.58923,1.30639,2.2134975,0.6047161538461538,1.2059657142857143,2.2241725,1.95438,2.4201425,1.4662225,4.048905,4.501795,2.8596,3.004296666666667,1.4442966666666666,0.6617216666666667,2.60819,3.9137,2.0847599999999997,4.862495,5.55485,4.93288,3.876855,6.65239,1.6221566666666665,5.864435,1.77538,4.827715,4.831525,5.715561,2.6041633333333336,2.38497,1.759995,1.9859839999999997,1.9859839999999997,2.4317575,2.4317575,4.40983,5.34155,0.910912,4.57769,3.587085,3.507215,2.86504,1.4092525,2.8023000000000002,4.239525,4.3807,1.876764,6.10215,4.963715,1.8814066666666667,1.23075375,3.993135,4.110916666666666,3.62907,3.477845,4.25715,0.6524057142857143,3.21433,2.9895933333333335,2.668646666666667,2.8646166666666666,2.3345433333333334,3.0741033333333334,1.5025142857142857,1.5025142857142857,1.5025142857142857,3.423666666666667,3.0016599999999998,2.1603266666666667,3.317178833333333,2.425,1.2921542857142858,3.0984233333333333,3.3137933333333334,1.3703857142857143,3.11823,2.7223699999999997,1.2548385714285715,2.97962,3.0801,3.12436,2.6549833333333335,2.6715133333333334,2.0786925,3.2699700000000003,5.067856666666667,4.380605,1.01107,1.169662,0.743133,3.6410666666666667,9.251745,3.0135066666666668,3.307965,1.9244899999999998,4.328799166666666,1.9255525,7.464778333333333,6.569556666666666,2.65978,2.5135057142857145,4.051775,4.65535,1.5178660000000002,1.205212,1.33128,2.018,11.279563333333334,2.7445833333333334,3.0059966666666664,2.9318146666666665,4.29281,2.16408,1.2758625,5.6118,1.1655149999999999,3.4991080769230765,3.721245,3.233485,3.1274800000000003,3.580765,4.502125,1.1598866666666667,2.0624425,2.193379666666667,2.193379666666667,3.79543,5.13105,6.960345,3.75453,3.48839,5.1014,1.77872,2.3074575,4.67897,4.78421,3.85164,1.7228166666666667,3.205766666666667,3.54457,4.29217,2.64245,4.155775,3.899815,3.43505,4.09551,3.53639,3.78985,5.5046,3.23312,2.5105233333333334,4.475305,3.063825,3.772375,1.89906,2.511515,2.565505,5.51875,2.74603,3.2925960227272726,1.66544,2.632535,3.167965,2.0384325,2.1174225,0.8107783333333334,0.8107783333333334,1.78379,3.7895930303030303,3.92012,2.9221466666666664,3.77411,3.3852450000000003,2.4921168571428574,1.047395,2.642895,1.6415675,4.513625,4.10346,0.9288895833333333,1.8215275,3.77573,2.9664525,1.605645,1.64158,4.789725714285715,0.9153733333333333,2.79622,3.280965,2.773535,2.524795,2.752198,2.072385,1.00269,2.887875,3.026305,3.36228,1.4249433333333332,1.5348966666666666,1.74167,4.82903,2.342605,4.551305,4.87815,4.50835,5.48935,5.5176,4.315235,6.188585,4.151629047619048,0.777479090909091,2.829405,4.686485,4.179965,0.4551,0.8225339999999999,3.139485,3.775795,4.49411,4.98982,3.354440357142857,3.001405,4.71416,1.8299320000000001,2.5862,4.460105,4.363415,3.59629,2.765865,3.83877,4.559775,3.29984,5.582345,1.00016,3.162335,2.404755,4.275675,4.38819,4.378755,2.1002199999999998,2.49647,2.88622,2.058003333333333,5.0831,3.816955,1.6434142857142857,2.98023,3.85116,1.4453960000000001,5.96255,1.918328,2.58089,13.891039752586595,3.05832,1.4525366666666668,1.6104766666666668,2.268686666666667,5.571213333333333,1.695138,6.112576666666667,0.766573076923077,3.422166666666667,4.0906,7.5197175000000005,2.583126666666667,2.924526666666667,2.924526666666667,5.4325,4.166245,3.73822,3.313275,5.20475,5.27975,2.43918,3.4454666666666665,4.89593,1.2401016666666667,1.8922800000000002,4.68205,4.20861,3.835385,2.4765266666666665,3.22165,4.135345,7.299216666666666,6.2736624999999995,0.779754,3.819155,3.11084,3.24778,4.36538,3.954705,4.102425,1.625846,4.288865,2.511315,2.931155,4.169385,4.53314,4.624785,0.9325968571428571,2.4724533333333336,7.066906666666666,1.5808633333333333,2.1004755844155842,2.3938925,3.954895,3.601525,3.33299,0.7093054545454546,2.4918875,1.6928,2.2213875,4.69367,5.5272353333333335,2.957582,9.284654999999999,2.5089900000000003,2.9383233333333334,1.0886799999999999,4.84377,5.16065,2.0627,5.964341666666666,2.95358,3.19537,5.32215,4.50307,5.2613,2.68592,1.677545,1.677545,2.819535,3.415735,4.7547225,1.4792625,5.891525,1.43051,3.585145,1.486305,8.918369666666667,4.387165,2.84845,4.93468,5.24265,3.84527,1.0956666666666666,1.8334825,3.6095666666666664,3.1883166666666667,3.3577333333333335,3.8013333333333335,3.799075,2.768815,3.15053,3.39293,1.617305,2.53537,1.9884833333333332,2.89144,1.9789700000000001,5.2181575,3.2809899999999996,1.80406,3.0176933333333333,3.33486,2.960915,5.27635,5.84715,3.34813,3.58672,3.903375,3.086425,2.73764,1.1411833333333334,0.938006,7.18136,3.733215,4.26639,5.6232,5.78815,2.79823,3.2546033333333333,6.0826,2.614385,0.45837222222222224,5.2269,3.256795,3.57362,3.3015133333333337,1.4909857142857141,5.23095,1.100614,4.61711,0.89853875,1.3891066666666667,2.7578899999999997,2.4541033333333333,2.4705895714285715,3.712725,5.4826,4.721559166666667,4.721559166666667,4.0933375,4.0933375,4.734425,3.0417566666666667,4.53233,1.0330525,5.4678,4.641705,3.6025666666666667,4.446315,3.701245,4.719575,1.88593,4.464455,2.9569599999999996,2.89346,4.22947,2.43372,4.243765,5.1344,3.62071,3.4529,5.03115,4.28933,5.4857,3.58802,3.3666666666666667,6.33255,4.130575,2.9526233333333334,6.737733333333334,1.5948133333333334,2.1314625,5.00185,4.29824,5.31635,3.99219,2.0398829999999997,2.0398829999999997,13.917446773809523,5.34349,5.09155,3.262895,2.9184689743589742,4.588365,4.745165,2.4655,3.4606999999999997,2.98402,3.7031333333333336,3.5458,5.0301,2.11094,7.891456666666667,2.35779,2.0132775,4.454735,2.444365,4.782425,4.23315,4.68442,0.8270977777777778,3.707895,4.1821,0.8611639999999999,2.86319,4.023448333333333,1.527062,1.9025800000000002,3.043006666666667,2.61774,2.6953933333333335,3.6981,2.0973966666666666,0.49595428571428574,3.1035833333333334,2.7984500000000003,2.8970466666666668,3.1863433333333333,1.540528,3.047826666666667,7.404473333333334,4.62955,2.5438,2.1863966666666665,2.5936833333333333,3.71413,2.34251,3.836071,18.546935,5.68795,3.5669020000000002,5.1329,3.826705,5.423685,1.5563099999999999,5.3473,1.5588366666666669,3.77331,4.217875,5.38045,5.17045,0.9927033684210527,4.39198,2.77585,5.1616,2.801875,4.494995,4.653695,2.834175,2.2165466666666664,1.392272,2.0099475,4.48967,4.89047,2.453395,2.02139,2.9895600000000004,4.2709633333333334,2.863496666666667,6.1625,2.1360475,4.14797,4.39735,3.77062,5.1665,3.212215,4.286605,4.47929,4.41257,2.83662,2.83662,5.42576,2.005263333333333,2.66494,4.058735,1.805012,7.832855,3.643335,4.452826666666667,4.4321,4.62533,2.11594,4.420915,4.60383,3.566295,1.9170275,3.711785,3.298625,1.0484975,1.5008625,1.21452,0.72499,1.6451066666666667,0.9645216666666667,4.595275,1.2397555555555555,2.916423333333333,1.6339233333333334,1.815855,0.957065,2.0673075,2.560975,1.5766975,3.2392266666666667,2.7262,4.181218333333334,1.454675,2.4818425,3.7610333333333332,3.2853266666666667,2.26054,4.374873333333333,4.18639,5.270734166666666,21.768175333333335,2.78759,2.26137,0.6222276923076924,0.670488,4.857991666666666,1.9428640000000001,4.099655,5.2513,7.264040166666668,3.94404,3.664495,4.024195,3.2040466666666667,3.298033333333333,3.5118666666666667,3.03045,3.487133333333333,4.663205,3.72379,0.97211,1.15356,5.0991,3.3629,2.3262633333333333,2.1914533333333335,2.395453333333333,5.8266,5.17265,2.19666,1.5509933333333334,3.375005,5.09815,8.981616666666667,5.460121041666667,4.11936,4.639605,5.5033,4.979905,4.34724,4.636685,3.95491,5.71735,1.934535,5.6086,1.6368142857142858,5.49875,0.7379533333333334,5.013,5.75835,6.2477,6.29455,4.848685,5.7011,5.5804,6.5933025,1.7826166666666667,1.6357714285714287,5.6122,3.182645,6.623458333333334,5.25845,5.103893333333334,5.1588,6.2278,1.3011057142857143,4.072195,5.4097,4.133666666666667,4.775625,6.0592,2.6639,4.026185,4.4718,4.686345,0.9900666666666668,1.63887,1.333222,4.81528,4.087895,3.260575,2.36319,3.13501,2.3885566666666667,2.1366066666666668,0.38452083333333337,3.4529333333333336,1.573394,2.051591666666667,3.302576666666667,2.047,3.1438566666666667,2.633325,2.4544,10.321741333333334,3.5457,1.6378507692307693,3.7533,0.8107727272727273,4.5478137499999995,1.1548475,1.56221,1.82941,1.020555,5.785602333333333,1.1727215277777778,1.1727215277777778,1.1727215277777778,3.0397266666666667,1.8224779999999998,5.14595,2.86235,1.924735,1.663825,1.3015225,1.483325,1.6873280000000002,5.677690833333333,0.87107,4.392005,4.482125,3.2990633333333332,0.9958085714285714,2.2990825,2.2601325,2.2601325,1.68525,3.6089725,4.33133,4.60781,5.9336,4.23192,5.67415,3.0355733333333332,2.064455,3.089175,5.28715,3.8115,4.80369,1.0401275,4.031927916666667,5.4376,1.8806125,3.738235,2.83703,4.493425,5.00815,2.27512,6.0622,5.87845,5.2682,4.915665,4.200615,3.232605,7.99152,4.077595,6.035023333333333,3.370865,3.07192,5.1186,2.7002466666666667,3.16981,5.11415,2.8109699999999997,3.254945,4.01051,1.4521,10.8639525,4.256785,3.125655,15.00793119047619,4.229375,1.89349,2.830973333333333,2.75734,2.713415,4.542965,2.1919970833333333,3.072725,2.50799,2.872695,4.117505,5.957935,1.2963799999999999,2.2172075,4.202555,3.46553,4.70297,2.065765,0.5964793333333334,4.76075,4.411985,2.3867475,1.150725,4.77369,4.984705,0.9623533333333333,3.96108,12.647929999999999,1.309641,0.38558,3.9435333333333333,3.996715,0.8757677777777778,4.807065,3.97897,4.7934133333333335,1.3603383333333332,3.645495,4.092225,3.31925,4.185425,4.57775,4.70441,8.682285,3.72217,3.78573,2.812855,15.474235,3.54713,2.665175,1.2868725,1.61536,1.219745,1.9227474999999998,1.32044,1.9904775,1.777435,2.5732,2.2368975,2.72395,1.926735,4.48318,3.325425,2.863165,3.436085,5.359043333333334,2.5984633333333336,4.99388,3.137503333333333,1.1592375,3.94198,2.13409,2.8859033333333333,4.68621,4.713055,4.671755,4.32307,2.5682300000000002,3.1676033333333335,2.4437866666666666,4.73132,3.78824,2.409145,1.98066,3.7253666666666665,4.68142,4.944395,2.4200766666666667,11.168296666666667,0.551876,2.69624,4.72186,2.582798,1.013756,2.88032,7.628653333333334,7.3012033333333335,4.831895,4.18679,3.969455,2.2258925,2.677345,2.9749606666666666,2.1513466666666665,3.9307266666666667,3.95168,4.615405,0.547476,6.0757,3.4447666666666668,3.5467666666666666,3.669,6.57555,9.0702135,4.168871,1.1183075,2.214845,2.368755,3.885895,2.64968,4.42364,4.634525,3.5704,2.6353566666666666,3.862675,4.044075,3.8215,3.8044333333333333,1.83729,3.698685,5.1928,5.63635,3.751633333333333,1.2623,2.2726866666666665,14.853242883449884,0.5534618181818182,1.4765725,1.4765725,2.56629,4.258342666666667,3.705445,4.83127,3.137385,3.8514,4.244845,3.111136666666667,4.214935,3.111136666666667,3.534025,1.9436666666666669,1.5113333333333332,5.42165,2.39898,4.747835,3.25565,2.689395,6.736546666666666,2.0210166666666667,5.11005,5.01435,3.448365,3.57962,4.78343,2.0320799999999997,4.70551,3.174755,5.961111666666667,5.251851666666667,2.49793,4.0747,4.051765,2.23956,3.4860666666666664,3.7715333333333336,0.4971335714285714,3.063223333333333,9.764213333333334,4.450225,4.283765,5.29645,3.40942,3.557265,1.341924285714286,3.615295,5.43635,3.132275,2.62654,4.836195,3.655645,4.1837,4.28237,2.236465,2.236465,4.03049,3.010675,2.9916945454545454,1.8914,4.62839,4.05374,1.2417742857142857,4.09075,4.548935,2.813496666666667,7.028305,7.86468,1.528486,4.39654,4.5561,6.882894,0.642483,7.432556666666667,3.454736666666667,0.6511927272727273,5.50305,5.5022,5.60115,4.42026,5.15805,4.42658,4.999275,4.02116,4.35463,4.726985,4.2339,5.59025,5.2424,3.876865,3.525855,4.260215,3.805095,0.671101,4.42493,3.30467,1.796295,3.7865,4.404085,5.63595,1.0412342857142858,4.784368333333333,2.853575,2.6735366666666667,2.5771,1.3094366666666668,12.762249166666667,3.417866666666667,3.4148333333333336,2.496593333333333,3.819277619047619,6.524263333333334,6.142821666666666,2.66383,1.86237,2.21452,2.21452,2.21452,1.3864533333333335,3.55249,3.665575,2.692035,4.691845,8.243185,4.41867,1.1295220000000001,2.4157,3.596555,2.26829,1.812398,3.97214,2.984925,1.4624933333333334,3.252713333333333,7.286135714285715,7.1370000000000005,5.4165,4.014005,3.1657666666666664,5.5465,4.60557,5.340978333333333,1.77807,1.77807,3.96278,3.90489,2.719424333333333,2.719424333333333,3.80292,1.0758314285714285,4.558835,3.35279,4.161115,4.419375,4.53075,3.0230766666666664,0.9750685714285714,4.223615,4.591245,4.06535,4.70859,5.2352,4.896005,4.434305,1.8230825,1.5084875,3.31442,3.833525,3.2548,4.292255,2.144345,3.2162025,4.18106,2.80506,4.8896,7.7386099999999995,2.3215466666666664,2.905866666666667,4.4315742857142855,4.531385,1.54729,2.0689985714285717,1.00372,2.0689985714285717,1.7165266666666668,1.7165266666666668,1.488606,4.30945,3.214725,3.6249,2.392175,3.973475,1.5627616666666666,5.44335,3.04811,1.693095,2.532366666666667,4.55691,3.24093,6.202609000000001,4.799375,1.278976,0.9052433333333334,3.541795,6.078953333333333,2.38436,3.588855,3.66898,3.66898,2.340255,3.415415,3.13289,1.4017746753246754,3.0792433333333338,3.535315,2.98903,4.813205,4.0122824999999995,1.6491775,3.579505,4.52028,4.653235,5.0032,4.402875,2.152045,2.121785,1.2700266666666666,2.374735,3.38707,1.921715,3.865855,3.1629233333333335,2.76073,4.17019,5.01795,2.904395,0.9563980000000001,1.7773966666666665,1.389455,1.129711111111111,5.07415,3.920795,1.169162,0.21026695652173916,0.21026695652173916,0.21026695652173916,3.52393,5.558728333333333,4.472725,5.2188,2.636395,3.66171,4.1778,4.371755,2.716945,3.4807,1.6301625,4.783265,3.94539,4.041015,4.463395,4.308485,0.8124136363636364,0.8124136363636364,0.8124136363636364,0.8124136363636364,1.130504,1.130504,4.013185,4.15183,3.78622,2.59304,2.62938,6.1332,3.593565,5.21705,4.24791,2.90819,2.55471,10.1652,1.660116,1.660116,4.47359,5.31355,3.18478,0.459125,0.459125,0.459125,0.459125,0.459125,0.459125,5.117,4.910535,3.75963,4.29293,2.613096666666667,2.613096666666667,2.81442,3.094543,2.7891,3.262855,3.69056,7.195591,1.417758,4.894895,3.56014,4.38502,10.768376666666667,2.518803333333333,3.37514,0.9174357142857142,3.67856,4.795705,4.327365,1.261125,2.7721733333333334,4.205095,5.748,2.777925,4.794355138888889,1.2355222222222222,1.8563466666666668,4.819905,4.663115,3.1414600000000004,2.6422333333333334,2.4174166666666665,1.2906,8.064475,3.4171333333333336,2.152816666666667,3.160095,2.8939033333333333,3.67953,3.541245,2.6397533333333336,3.1125166666666666,5.8293,1.5468716666666669,4.36879,5.0284,4.10566,3.93381,2.83756,3.308095,3.793075,3.921965,2.97691,4.662845,4.85772,2.9762766666666667,2.103175,2.9255033333333333,2.787153333333333,2.7704633333333333,0.8467418181818182,2.178705,8.385545,0.528070625,2.9855633333333333,1.4680166666666665,2.6148700000000002,3.29961,2.90283,1.1753888888888888,1.8477679999999999,2.7978199999999998,2.2026525,3.77427,2.20444,2.733503333333333,1.4535799999999999,2.9834060000000004,2.0796775,1.2541885714285714,2.8839066666666664,2.2111325,2.35856,2.4258966666666666,2.59286,3.1659333333333333,3.3596,3.2530966666666665,2.892716666666667,2.5689466666666667,2.7703466666666667,2.30944,1.5963266666666664,2.33034,2.5977466666666666,1.5547866666666668,2.933073333333333,4.033721904761904,2.7986233333333335,2.936636666666667,2.9356500000000003,3.5822333333333334,4.432798333333333,2.8723333333333336,1.67084,1.67084,2.26956,1.1491375,2.51795,3.276094,4.50525025,2.659525,1.82536,2.1171575,2.1329775,3.730875,3.14974,4.097945,5.14945,1.7706025,2.58481,3.680865,1.495272,1.495272,3.124925,0.7324723076923078,3.491161153846154,2.55675,2.55675,2.9979566666666666,2.6059666666666668,2.5374733333333332,2.6702616666666668,2.360625,6.013951666666667,3.96551,3.96551,3.809505,3.09404,2.345065,3.125445,2.469645,2.79368,5.27755,0.48746666666666666,0.673007,4.12097,2.27137,2.64605,6.592856666666666,4.079655,1.68922,3.9549133333333333,4.41788,3.97896,4.37317,5.54035,4.75388,13.320605500000001,3.888665,1.6612799999999999,2.836335,3.808515,5.05845,4.803485,4.43771,4.605225,3.760295,3.202845,2.833576666666667,3.943075,2.845356666666667,2.38677,2.38677,4.191815,3.1759,2.96294,3.45116,2.37154,2.582315,2.005435,1.9526775,1.947705,2.061165,1.7654325,4.0890705,3.66478,2.548565,6.4666825,3.322045,2.395086666666667,1.8201933333333333,3.57359,4.001625,3.68132,2.9879060416666667,3.43884,3.33416,4.36891,3.724185,3.872455,3.9569,3.856769,3.55669,0.6637166666666666,0.6637166666666666,0.6637166666666666,3.45597,2.40423,6.0285,2.719765,3.713935,7.960519814814814,3.1237766666666666,0.3101757692307692,5.0854,0.762609,4.319875238095237,1.938725,3.672805,2.018155,4.53115,5.62608,4.35973,3.31107,2.83272,2.7884333333333333,1.4554,2.240936666666667,0.6426578947368421,0.634435294117647,2.96461,1.4558466666666667,2.24331,3.9066,3.463715,5.16595,2.758176666666667,2.832228333333333,3.516675,6.7346,1.945045,1.0334571428571429,2.5992,2.912316,1.2448377272727273,5.42225,3.77816,3.624615,2.6738633333333333,5.29795,3.1910566666666664,2.90434,3.1389666666666667,2.20243,2.17276,2.2005825,3.4613333333333336,2.4299500000000003,5.745143333333333,2.428855,1.9618466666666665,2.4239333333333333,4.655096666666667,3.1816960000000005,3.1816960000000005,2.3668033333333334,3.95814,2.2725075,3.607625,2.94012,0.57976,4.3859,2.25999,11.90479111111111,7.16978,3.046285,3.35845,3.378725,5.68478,2.87362,3.62041,0.24583666666666665,1.81194,4.192566666666667,0.94405,4.05346,1.4089057142857142,4.9833,3.277105,4.793635,3.819835,4.038985,2.21254,4.54058,4.097445,4.108315,7.13346,4.2971,2.9748433333333337,3.07577,1.604506,1.93769,4.43226,5.10925,4.002447500000001,2.20638,3.408325,1.260814,2.879405,2.40157,4.19018,10.38073,3.69661,9.83353,3.796205,4.42679,0.96082,4.774041,4.95155,2.595143333333333,2.8941166666666667,3.5012666666666665,2.7834233333333334,2.4092233333333333,1.6770166666666666,1.8944400000000001,3.5992,1.695052,2.7054333333333336,5.331653333333334,2.6490066666666667,1.0511135714285713,1.0511135714285713,3.68687,3.7479005,3.7479005,3.3587666666666665,2.90603,3.6155956410256413,3.528233333333333,2.7274333333333334,2.7732466666666666,2.28684,2.5243933333333333,3.16691,2.2697325,2.816273333333333,1.6357679999999999,5.831683,9.49171,0.4800592307692308,0.4800592307692308,0.4800592307692308,0.589751048951049,0.589751048951049,0.4800592307692308,2.7498799999999997,3.020606666666667,4.2642999999999995,1.5007533333333332,1.7608825,3.346316,2.3937566666666665,3.0385833333333334,2.3723266666666665,3.063023333333333,3.5155999999999996,6.987328333333332,3.13961,2.620983333333333,3.7284666666666664,3.663935,2.77117,3.4078666666666666,5.89454,2.3803433333333333,3.4448333333333334,1.373195,1.373195,2.42222,0.5051821052631579,1.8903066666666666,2.8927533333333333,2.9738566666666664,3.0273866666666667,2.2959133333333335,1.42575,2.6881266666666668,2.7525633333333333,2.404383333333333,5.17735,2.3139546666666666,3.801355,2.99911,4.944635,0.5323249999999999,6.78175,2.9462019999999995,2.9462019999999995,7.363385,1.7567266666666665,1.7990133333333331,3.046946666666667,3.78024,2.4125666666666667,1.96865,2.6506466666666664,1.7128125,3.4733666666666667,1.76129,3.0526435000000003,1.3743625,0.27381136363636366,0.27381136363636366,5.02515,4.02351,3.153635,2.931063333333333,2.80074,3.48438,1.3338833333333333,6.62225,3.773435,3.087265,1.8897525,1.3250741666666666,2.095365,3.046946666666667,2.6171,2.103485,5.757885,6.5702,5.7149,3.636845,1.94959,0.6843225,7.0066375,2.0341075,1.40581,3.2077,4.54942,2.295665,1.8251666666666668,4.70796,4.453695,3.5891333333333333,3.31716,3.89877,5.15755,3.4502333333333333,2.534036,2.534036,4.18069,4.9562,6.08245,6.906293333333333,2.6808833333333335,3.58978,1.3823500000000002,1.9140525,4.169942666666667,3.983435,1.816076,3.851745,3.5704225000000003,4.20787,2.172235,4.07832,5.1225,5.24915,4.508035,2.4467766666666666,2.6762533333333334,3.6099333333333337,2.0867533333333332,2.778125,2.816193333333333,2.624006666666667,0.899141,1.940465,2.46297,2.259266,4.46239,4.478315,4.417585,4.24264,3.371475,6.137915,11.95325,5.1306,3.94769,4.524455,3.899275,4.72738,2.8689466666666665,2.742929,3.783333333333333,1.221885,2.87829,2.857575,4.959695,5.5722,4.24481,2.798626666666667,2.5175533333333333,2.290923333333333,3.8981666666666666,4.077565,3.469666666666667,4.077565,2.3114142500000003,2.2703533333333334,2.418328333333333,2.4410725,2.439486666666667,1.8022566666666666,0.7664783333333333,1.1937716666666667,1.80941,2.11911,1.6458566666666667,1.3315166666666667,1.5934433333333333,2.6549133333333335,1.5199120000000002,3.002076666666667,1.2815166666666666,1.6195300000000001,2.68094,1.9856800000000001,2.25775,2.0379866666666664,2.41407,3.40732,2.30742,3.01411,3.1315000000000004,2.53387,3.17618,3.11555,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,0.14955193548387097,4.859175,4.36464,1.0468457142857142,3.218336666666667,2.6352333333333333,2.888033333333333,4.095245,3.1633933333333335,4.49073,3.6270446666666665,1.582492,3.242836666666667,1.6209333333333333,1.13557,0.842532,1.1670916666666666,0.9509150000000001,0.8123241666666666,1.322378,3.26337,1.84653,1.8061666666666667,1.9384200000000003,2.2770277777777777,1.1822066666666666,1.4856266666666667,1.4805716666666668,0.91315,1.269765,0.7568466666666667,1.018736,3.45228,3.5669,4.070395,4.447425,4.219405,2.9888399999999997,3.93646,3.8861666666666665,2.1878,3.598565,1.94945,3.638435,2.0861433333333332,0.7963945454545454,4.235695,4.03129,2.08245,1.250185,2.853105,3.360475,3.6089725,2.9974066666666666,2.61724,0.87016,2.197845,5.3018275,3.970255,2.45729,1.5068616666666665,3.82281,2.0487775,0.6769045454545455,5.26935,3.78895,4.02111,2.45416,1.375542,4.542895,4.497855,2.58817,2.6347366666666665,2.5694433333333335,2.6378833333333334,2.7334566666666666,2.9703533333333336,3.2738533333333333,1.3200125,2.6101,2.5009433333333333,5.45635,4.61056,3.93754,4.459155,15.458174606060606,4.1732075,4.733456,2.843505,4.030715,5.1769,1.551278,2.665825,2.3947366666666667,6.8900049999999995,4.119685,4.744425,4.291885,2.3947366666666667,3.95826,2.14305,2.3492566666666668,2.8519400000000004,2.72094,1.2863733333333334,4.318515,3.67188,2.688515,4.24306,2.37154,2.53046,3.72255,3.21761,5.1404,3.911235,2.736355,3.646305,2.66004,2.8612133333333336,1.098458,1.098458,2.896383333333333,2.0283666666666664,0.24023607142857142,5.172613,0.94383,2.713625,4.08232,0.58417,4.677475,7.759246666666668,1.884695,3.6945,3.662325,2.7433933333333336,3.319655,2.391765,3.04241,3.55241,4.11256,3.05348,4.091966666666667,0.9715833333333334,12.212657333333333,2.679215,2.92078,3.607145,2.69675,4.084065,7.589923333333333,4.29634,4.55881,4.0258,4.39201,5.2962325,1.6538475,2.992843333333333,4.562975,3.8566000000000003,1.870332,3.877025,3.92021,3.703915,3.9191,4.595465,4.29555,2.5569883333333334,3.76921,3.881405,5.08165,3.81,2.2592266666666667,2.43769,2.4017399999999998,3.13808,1.3260966666666667,3.680066666666667,0.7946072727272727,3.270566666666667,3.0559433333333335,2.57648,1.6317016666666666,4.32316,4.11059,4.17224,1.8572,4.58244,3.735525,0.7220200256410256,0.33907269230769227,4.54026,3.968625,0.94755125,0.33907269230769227,3.317485,0.7220200256410256,0.7220200256410256,0.33907269230769227,5.846628333333333,2.4523033333333335,2.4762033333333333,5.5276,2.46646,3.288895,0.8109866666666666,3.102295,3.771285,4.254175,5.4138,2.23546,0.7315207692307693,4.514926666666667,2.26514,1.571296,2.20879,1.1198014285714286,2.54638,2.3942900000000003,3.332,5.2785,3.02856,3.5045333333333333,3.124413333333333,2.42182,2.92242,4.12247875,1.4803575,1.994465,3.910035,5.5852,2.1027205555555555,5.23605,2.806225,4.189485,4.2857,3.499925,1.1844675,3.124265,6.2647,4.20916,3.79927,5.09085,6.32445,2.85931,5.10265,4.528985,3.31575,3.53568,8.38508,3.83836,4.432735,2.26157,1.0395925,2.38945,1.890155,2.19285,1.829765,4.94755,0.7012857142857143,3.668385,3.59692,1.93053,2.665973333333333,4.628245,4.411405,2.82197,4.583865,5.62475,9.995911333333334,2.7554866666666666,2.8773133333333334,1.698216,1.9547833333333333,1.3117733333333332,1.3861366666666666,3.2553533333333333,2.58952,3.17975,4.5512466025641025,1.4671725,2.3223266666666667,4.98566,5.59595,3.806025,3.519805,3.06095,2.59878,2.091865,2.051305,1.8000800000000001,2.06886,3.441315,3.89793,5.3576,5.53795,4.8856,5.28500875,3.37975,2.46786,6.476942916666666,5.2625,7.245635,4.933160833333334,4.933160833333334,5.348644999999999,1.6382033333333332,1.407265,1.35801,0.73182,5.03815,3.685366666666667,3.27217,3.27217,1.865782,4.48608,4.457325,4.797275,4.636625,2.8491733333333333,2.671495,4.11862,3.2136533333333333,5.119038333333333,4.074475,0.85368,5.71655,5.19855,5.27045,5.2383,3.105485,5.89115,4.5715,0.8824923076923077,5.2527,5.909688333333333,3.2046,5.74525,5.8658,3.48774,2.511705,3.716335,6.4601,2.100505,5.90145,1.86015,5.24,2.8630166666666668,2.225455,1.00016,4.39475,5.5845,3.29111,4.16404,1.8010566666666668,4.625565,8.108093333333334,3.50189,4.13487,2.54553,2.461465,0.885721,4.910145,1.54127,3.481511666666667,3.481511666666667,3.95131,2.35631,3.0355933333333334,4.095015,1.7614175,3.3063866666666666,3.3674666666666666,3.4220666666666664,2.87709,4.080595,2.63994,1.79308,3.533,2.0686775,2.889416666666667,2.07962,3.0124866666666663,2.769023333333333,1.4542857142857142,1.6474833333333334,0.42789666666666665,1.2800233333333333,0.42789666666666665,0.42789666666666665,1.6474833333333334,0.42789666666666665,3.3377,3.18924,3.18924,2.7282966666666666,5.0667,5.28755,4.447865,5.31455,4.75199,3.451165,4.487635,4.08314,2.02962,2.6601766666666666,2.5086333333333335,0.7978236363636363,5.631,2.8819700000000004,3.1131533333333334,5.5742,3.6154574999999998,5.2257,3.427735,2.6270599999999997,2.950995,3.25329,2.5446,2.7696366666666665,2.0899766666666664,5.62685,0.8946988888888888,4.1563,1.1843371428571428,4.01376,2.19328,2.9923466666666667,4.181365,4.241195,4.0042,4.77426,4.127965,4.13791,4.322105,4.339175,2.487455,2.64565,3.5534666666666666,4.19636,2.908945,3.215405,2.660845,4.776025,2.743396666666667,3.38743,3.29342,4.78367,3.98038,67.37898829177767,2.786620833333333,4.2452,16.596363,4.09057,3.02099,1.9279333333333335,1.9140566666666665,2.6281866666666667,4.6143625,3.1988866666666667,4.8776150000000005,5.27835,3.238975,7.820545,5.08125,2.583785,3.29957,3.66275,3.65787,1.910244,1.13973625,4.70317,3.02974,6.069498333333334,3.549745,2.1399133333333333,3.60715,3.16911,4.48494,3.172645,5.740215,4.76021,3.3713,3.274365,2.3021575,3.1449,4.352195,2.48124,3.87036,4.37243625,1.2229483333333333,2.694255,5.125405,3.12211,4.53687,3.56481,2.83248,4.637615,3.096305,3.684885,3.327375,4.367875,3.15742,2.740685,4.42023,9.514325,3.2007733333333337,4.23738,6.5759,3.37224,3.039245,3.994476875,1.9019733333333333,2.9507033333333332,3.4549960000000004,3.61866,3.268845,2.88568,3.15075,3.341765,3.9136,3.82304,4.190755,4.152595,3.6358,4.01606,2.5333916666666667,2.5333916666666667,6.654163333333333,1.755985,3.30468,3.64318,2.551855,4.769065,4.14245,2.78556,3.07561,5.3671,6.650499999999999,0.63422,3.569865,2.30653,2.9419566666666666,2.7238666666666664,5.35125,2.7128633333333334,2.0212725,1.12988375,2.1316331818181817,4.122565,3.889255,4.00463,5.77765,4.157515,5.83795,2.445305,1.78257,4.220205,4.449265,3.3596333333333335,2.15403,1.03196,2.55758,3.0523933333333333,1.666086,2.210836666666667,2.422388857142857,3.5483364835164832,2.823215,4.944245,3.39272,1.5663625,5.29965,3.45996,4.04552,4.82596,4.319855,4.815685,2.0339133333333335,1.42777,0.6271457142857143,1.5690266666666668,3.57252,2.59969,3.551991666666667,1.3276166666666667,2.585985,2.336735,3.448085,3.51834,3.836825,4.0403400000000005,1.6329225,1.4363425,1.9359725,2.09167,1.4974975,2.75075,6.331942833333334,4.91117,3.7702,2.90459,7.322675,4.68984,3.133765,3.11731,3.36624,2.625785,3.84022,2.31259,7.17084,0.9287550000000001,3.20742,6.26025,4.15063,5.0263,5.27855,1.4935766666666668,3.1481100000000004,2.6697566666666668,2.9196066666666667,1.72165,4.09129,8.70071,3.47883,4.599505,4.19599,4.888145,4.523415,0.8953016666666667,2.775536666666667,5.1855,6.61088,4.471425,5.0647,2.850665,3.9046000000000003,2.2856433333333332,5.11185,5.0076,3.8267406904761905,3.8267406904761905,0.6526728571428572,2.4778066666666665,0.909902,0.7914933333333334,1.8588775,3.5237,2.9287339999999995,4.153509714285714,2.3592166666666667,2.6840397142857144,2.789139047619048,3.1707366666666665,2.8824433333333332,4.5671333333333335,3.2552674999999995,2.0132475,2.0132475,3.72224,3.0568066666666667,2.8284233333333333,3.984955,3.3711333333333333,0.5448077777777778,3.3876000000000004,2.6115666666666666,2.941073333333333,2.743093333333333,2.64065,2.6644466666666666,3.3166333333333333,3.0635066666666666,0.8569229999999999,2.752743333333333,6.270704857142857,2.0373200000000002,7.581194166666667,1.586912,1.586912,3.3771516666666668,3.1093666666666664,3.3107633333333335,3.13768,1.8725460000000003,1.3905657142857142,3.2017366666666667,3.2547566666666667,1.6015616666666668,1.4993999999999998,2.9331566666666666,2.857538,2.71721,1.96737,2.1648175,2.744835,2.31715,2.86201,3.36983,1.63709,3.66154,3.21243,7.068759999999999,4.67304,1.8227125,3.93363,2.598965,2.248545,3.99079,2.77049,2.773245,6.9586275,0.8263307692307692,0.49785250000000003,4.53414,1.4033060000000002,1.4033060000000002,3.87742,2.3929625,4.76094,3.30974,1.4259266666666666,2.482558666666667,2.904476666666667,2.5482236666666664,4.91678,2.72887,2.5749866666666668,2.0609066666666664,1.5239328571428572,1.5239328571428572,1.9886533333333334,3.958785,3.875166666666667,5.7066,3.1744033333333337,5.2307,4.79903,6.9042,4.88883,2.616475,2.7792133333333333,2.68661,2.717496666666667,0.7562666666666666,0.7562666666666666,0.7562666666666666,3.300675,4.49866,4.239545,0.8312275,0.8312275,4.9436,6.39415,6.38826,22.020753166666665,12.4932,8.24609,3.359295,5.8837,2.3615725,4.63376,2.4771300000000003,3.3211433333333336,4.288333333333333,5.497724,2.04711,2.0282,6.99409,2.00118,2.00118,6.72885,3.356385,4.85087,1.8009925,4.691647833333334,5.00315,3.70699,5.1839,3.860015,1.7565799999999998,6.2328,8.83526,1.7565799999999998,1.8009925,2.1258766666666666,0.839294,0.839294,1.675288,2.2883066666666667,1.675288,4.3968,5.9146,6.4169,9.43122,1.8009925,11.905659666666667,6.22595,6.25055,2.3615725,3.068955,4.85309,9.23585,3.1479850000000003,3.99984,6.031,3.517085,5.02735,6.2459,4.751885,5.0877,5.12245,2.773795,5.29525,3.91618,4.311375,4.16622,0.80949625,1.57266,3.15018,5.7927,4.97784,2.6490066666666667,1.9604225,4.119565,4.64718,5.74165,5.08835,4.876575,4.46499,3.16229,4.282115,3.59423,2.1137275,4.8426675,2.124825,2.57393,3.55157,2.0730166666666667,3.98535,4.48322,3.791755,3.674458333333334,2.98849,6.601371666666667,0.971588888888889,3.49227,5.1465,1.2490400000000002,5.523912,1.60534,1.7604666666666666,2.9158566666666665,2.7662555,3.110716666666667,2.9898866666666666,2.0648775,0.7978181818181818,2.441543333333333,2.521045,4.4647,0.6876207692307692,6.035446666666667,1.7500766666666667,1.24658,3.3788666666666667,1.24658,3.79617,0.7762854545454545,4.464045,3.1334733333333333,1.78635,4.042486,3.7060785000000003,3.7060785000000003,4.5844,2.6211,3.364466666666667,2.6232666666666664,1.540528,3.724525,3.806015,2.05418,0.7600941666666667,7.217734102564103,2.725245,3.67717,4.46303,7.48397,2.6104,3.94464,3.91624,3.169005,4.203285,5.5981,6.6541075,3.94588,4.900075,5.47925,2.90439,4.429445,3.87409,4.73474,1.1023388888888888,0.5151371428571428,3.05452,3.396933333333333,2.83269,5.6795,3.890135,4.378425,5.15855,4.703095,3.77844,4.44594,1.22247,2.396345,9.179345833333334,2.3139266666666667,1.9966566666666665,3.8699757142857143,10.755639623015872,1.558155,5.1603,5.9148,4.712425,3.096463333333333,2.141103333333333,3.192883333333333,3.733465,1.1134683333333333,3.3641666666666663,3.67269,0.4435794736842105,2.012983333333333,4.9629,4.493545,2.435935,4.077505,3.35347,5.145830833333333,1.2414366666666667,0.6201681818181819,3.904394166666666,1.1059428571428571,1.07984625,1.07984625,1.07984625,1.07984625,1.5715266666666665,2.9334433333333334,2.4248166666666666,3.013333333333333,5.1803,3.6351666666666667,4.87957,3.62801,4.69448,3.50836,3.9223,1.4404166666666667,7.450519999999999,2.36732,5.4501,5.46857,4.68932,5.190939166666666,2.5956966666666665,2.4977233333333335,2.775446666666667,3.43005,1.2312266666666667,4.998363333333334,2.6722633333333334,5.1435,2.714366666666667,2.270373333333333,3.83683,3.486565,2.868335,2.5328733333333333,2.7208166666666664,1.48171,0.4011588888888889,4.50101,3.049425,4.290505,3.58349,3.798585,5.8839,4.429035,0.5428569230769231,3.1057180000000004,7.201906666666667,2.106856666666667,1.9893319999999999,5.820141666666666,4.04333,2.6245966666666667,4.5921,5.10865,3.41479,4.13174,4.13568,5.0922,5.0488,4.84629,3.64789,5.5334505,1.6009740000000001,1.5519,4.49677,3.958285,4.909435,3.201385,5.1503,5.0785,3.92629,3.47316,15.77240178782204,1.373945224719101,1.3055125,2.1596470454545456,0.531034375,0.44620266666666664,1.563,0.3528852941176471,1.349116,3.161443333333333,1.427764,1.0101083333333334,0.9855291666666666,0.4839691666666666,0.9855291666666666,0.9855291666666666,0.4839691666666666,0.8721538461538461,0.7300642857142857,2.8194,2.5734666666666666,3.190535,4.59552,2.86145,2.6692,4.113185,4.698615,5.36505,2.78298,4.464695,0.714105,2.500627333333333,9.26319,4.646865,6.766748333333333,2.985595,3.766545,2.36304,4.73724,4.63454,3.19871,4.384715,2.678345,0.9705050000000001,4.187335,5.0417,0.8558920000000001,1.287426,1.5392333333333335,2.4489533333333333,2.6866466666666664,4.29352,5.50785,2.28295,2.28295,3.556781666666667,6.48017,2.0783333333333336,0.6578427272727273,0.78261,2.2704933333333335,3.4007666666666663,1.0620142857142858,1.0620142857142858,1.0620142857142858,0.3671876923076923,0.9913614285714286,3.086625,6.23535,3.8887666666666667,4.222366666666667,5.62665,1.06507,3.608333333333333,3.4278999999999997,4.1460333333333335,5.97375,2.73436,7.511166666666666,5.33675,1.1393666666666666,3.6705666666666663,1.674542,2.77761,2.29625,6.986303333333334,2.5118199999999997,4.608355,2.1129775,2.779845,4.10225,4.34435,0.408835,2.16864,1.4447733333333332,2.66557,4.19985,2.226246666666667,2.83363,2.0679766666666666,2.518123333333333,2.4069333333333334,2.77496,2.7657433333333334,2.9501266666666663,1.55329,2.1393,1.9974433333333332,2.7922100000000003,2.3971,2.04504,1.9288466666666666,1.9669066666666666,1.76468,3.40344,2.166463333333333,2.1005,2.18495,2.3733333333333335,2.54014,0.7748988888888889,0.7748988888888889,0.7748988888888889,2.53603,2.2424166666666667,3.0255766666666664,3.4161,2.77038,1.8457933333333332,3.849485,3.665105,1.3943416666666666,2.5708266666666666,2.8691166666666668,3.6591899999999997,1.5946285714285715,7.095763333333334,4.73363,3.254155,4.282475,3.616645,1.47238,0.41187642857142853,2.882775,3.784715,3.6591899999999997,5.0209,4.265205,4.841715,2.84301,4.044785,4.461445,0.836422,2.812485,3.34418,5.037616666666667,4.903715,3.602855,3.17858,2.498585,2.75507,2.6407833333333333,0.6370316666666667,5.331575,2.55965,4.405265,2.8263433333333334,3.753091666666667,3.1214999999999997,2.3835166666666665,2.9839936666666667,2.9839936666666667,2.4986,2.1258500000000002,2.8571766666666663,2.0509633333333332,4.094955,1.415354,2.7502,3.748515,3.915885,3.95209,4.959135,4.965415,2.3780575,2.2135,3.33665,2.927075,2.72635,4.63151,3.007725,0.7318171428571428,0.7318171428571428,4.17431,3.785359,0.936204,4.519825,0.936204,3.886465,4.291835,5.5304,3.297095,3.50172,6.4906275,4.718850833333334,6.2887,0.9459571428571428,0.9459571428571428,2.21026,4.533168333333333,1.4459933333333332,3.087175,3.491845,1.128437142857143,4.256375,4.050425,5.647399999999999,5.647399999999999,1.1116433333333333,5.8801,5.2093,4.1737,6.1739,2.0749725,2.0749725,7.0907,1.0124272727272727,6.81385,1.95763,5.8637049999999995,2.72966,2.5754033333333335,3.362275,1.3502319999999999,2.2059966666666666,2.528706666666667,3.0103733333333333,2.948870238095238,6.944737999999999,1.855572,5.64055,3.1050133333333334,2.6056766666666666,1.72981,2.30586,2.987935,3.60433,4.017925,2.628215,2.25556,2.12068,2.54272,1.124194,3.34532,2.12155,3.096325,2.185074,2.185074,2.98885,2.131893333333333,3.70154,3.751215,5.5642,7.660873333333333,4.641475,3.520335,6.381485166666667,1.9963499999999998,3.2467822222222225,2.1340266666666667,1.4697571428571428,1.72993,4.031625,1.7034833333333335,0.500175625,0.6548783333333333,4.44469,4.14779,2.78948,1.0694255555555554,2.91973,2.859226666666667,4.858025,1.891042,2.00743,1.1962111111111111,4.58656,4.022125,4.336035,0.6204989999999999,4.087745833333333,5.11855,4.121565,4.53696,3.50304,3.984325,3.0726066666666667,5.61365,3.838915,2.6612899999999997,2.54587,5.519704166666667,5.8336525,0.7289525,3.980315,3.99571,4.968605,3.417033333333333,3.5881666666666665,2.785625,3.179396666666667,3.7568,5.853705,2.857538,2.741282,3.329545,4.376355,2.282275,2.531175,8.366196666666667,4.6145,1.8469333333333333,4.973005,4.790655,1.8877659999999998,4.040535,1.3928625,1.7943857142857145,4.850605,4.136135,5.7962,3.29661,4.314985,5.0366,6.2185,4.520055,5.692,4.759815,5.8238,4.366545,4.5053350000000005,1.194251,1.194251,7.9502,0.6490825,2.167222777777778,0.6490825,0.8171933333333333,0.3618377777777778,2.984416111111111,2.296755,0.5961299999999999,2.167222777777778,1.814365,3.2151,2.3882861111111113,3.758825,4.439185,7.19021,1.94535,2.16352,2.287305,4.9117,5.6601,2.61164,1.684085,1.4369725,3.1210575,3.956725,2.7323,4.100315,6.530139999999999,0.44208555555555556,3.89874,0.710017,2.9467166666666667,2.544075,4.14723,1.242595,4.320145,4.6238025,4.33657,2.961895,4.13479,5.0909625,1.6437575,3.268265,0.6187384615384615,2.681635,2.550775,1.122222,3.042213333333333,2.5080733333333334,2.580366666666667,4.125285,10.194949999999999,3.569466969696969,3.57201,3.66501,8.702695,6.055759166666666,3.369666666666667,4.225305,3.71444,4.90656,5.4165,5.52305,4.36492,5.58635,6.307,2.6572766666666667,1.5050575,1.9170266666666667,2.3042666666666665,4.415545,2.4536000000000002,0.21823648648648647,0.21823648648648647,0.21823648648648647,31.337083214285713,0.21823648648648647,2.847486486486486,0.21823648648648647,0.21823648648648647,0.21823648648648647,3.307713153153153,4.3799,0.21823648648648647,0.21823648648648647,0.21823648648648647,0.21823648648648647,0.21823648648648647,2.99706,4.71571,3.10815,0.2680717948717949,0.2680717948717949,4.305162666666666,4.181697083333333,4.0575737499999995,3.005931861111111,4.059565238095239,8.071266666666666,10.999992174048174,6.554398,8.245658666666667,6.121038642857143,2.42222,6.206833809523809,4.3672233333333335,4.66774673076923,0.2680717948717949,7.907962666666666,6.779880952380952,7.293746666666666,1.6972,8.574959642857143,13.36704,18.56471333791209,56.062184280064706,116.50271345704051,1.373195,3.4448333333333334,3.05995,3.9948867194337194,0.2680717948717949,1.780304230769231,8.587994791666667,14.64961230952381,19.713994166666666,49.02710069152047,13.463410476190477,2.3827075,0.2356710344827586,0.2356710344827586,4.58874,2.78468,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,0.2356710344827586,5.9211,0.2356710344827586,0.2356710344827586,0.2356710344827586,2.839595,1.9079066666666666,3.34243,3.956485,4.147670833333334,5.1848,2.599625,4.1559,4.19968,3.08279,1.4472533333333333,3.564935,1.0193466666666666,2.3089975,2.8003733333333334,5.593153333333333,5.97391,2.9152133333333334,5.734874722222222,0.37703277777777777,0.45859666666666665,2.5631833333333334,2.9339099999999996,3.11247,4.37118,3.27917,7.489128749999999,3.777575,3.20707,3.517255,4.14585,4.733035,3.319045,5.11865,1.9602,0.4754338461538462,0.9172545454545454,4.3331825,1.78894,3.61808,3.81319,4.507375,3.418365,2.580125,2.643685,0.5674546666666667,0.676304,4.19522,2.63487,4.565565,3.92952,4.05608,2.59506,2.905055,5.83495,5.2202,3.296365,0.8049136363636364,2.9983633333333333,4.871815,2.272185,0.9662725,1.72951,3.78407,4.405965,1.964265,3.66302,3.03851,2.31707,2.426425,2.50161,2.1899,4.060405,2.371575,3.928095,0.6738685714285715,2.470146666666667,3.28276,1.79838,6.33717,4.230985,4.19211,4.46742,2.96866,2.01357,0.6763318181818182,5.7461,3.814545,3.904535,2.450515,3.524995,3.55998,2.93769,1.8963116666666666,1.2953314285714286,5.25135,1.963645,2.669775,9.496805,4.395225,5.23235,3.41184,1.040991111111111,3.163095,1.0338714285714286,3.25155,6.33725,5.42505,5.6828,3.875395,5.01835,4.429805,1.76172,1.7088533333333331,5.31185,3.2371499999999997,3.7451000000000003,2.391765,4.38374,4.15834,1.491485,3.698,2.866195,2.712165,3.367985,9.26892,4.459445,1.8108025,4.80854,5.80759,4.8219025,4.06526,3.88288,3.832875,4.56861,8.32193,2.46257,3.25414,5.85025,4.25573,2.99953,3.135905,5.1909,3.95898,3.503075,4.035834666666666,18.933009000000002,2.9064200000000002,2.29984,3.3331633333333333,5.837525666666666,0.96441125,4.427975,2.1832583333333333,5.1029,1.4071666666666667,4.18994,4.49326,4.023745,0.94655125,4.285055,4.82426,1.73518,5.30464696969697,3.79979,1.2381185714285714,3.566785,2.05785,2.292995,1.551265,4.2738,3.868645,3.906445,3.689225,3.1095066666666664,4.15315,8.20885,4.35037,4.950445,5.2175,3.2106733333333337,4.230225,4.951335,6.598352,0.914602,0.914602,4.6662,4.85491,2.195253333333333,1.45386,7.533315,4.193925,3.21857,4.1484,4.503275,4.3154,3.49509,3.77194,6.57117,4.216186666666667,4.53886,5.34275,1.6100999999999999,2.9212,4.342435,5.18465,3.4974712500000003,0.1764136111111111,2.012585,2.1915025,2.50386,2.2040233333333332,0.9944966666666666,1.5428725,1.2836525,2.3489233333333335,0.6166666666666667,1.3834485714285714,1.889345,3.787135,4.0017000000000005,2.370766666666667,2.94812,3.0814066666666666,2.69196,0.69069,0.965585,2.706165,5.1705,4.319415,3.56364,3.694585,4.61019,5.1329,2.0826000000000002,4.381605,5.0355,4.705685,6.58456,3.73738,0.46014,5.70325,4.67812,4.38175,5.22955,3.441165,1.934472,4.872655,4.35515,2.91131,5.183494166666668,4.57072,1.4092566666666666,5.183494166666668,4.23306,6.4912425,3.66937,1.3250666666666666,4.046185,5.15025,4.418465,2.7071233333333335,5.33495,1.5473325,2.06485,4.774355,3.50889,0.8102033333333334,4.689165,4.71869,3.90685,4.10656,3.3509333333333333,3.1930033333333334,1.7909099999999998,2.1823725,3.214875,4.00023,3.567633333333333,2.432846666666667,2.899075,2.4702213333333334,5.68675,1.7478714285714285,0.8279933333333332,6.08074,4.438485,1.384282,2.68038,2.5007566666666667,3.532966666666667,6.782571666666667,2.3489144444444445,0.8750450000000001,2.56328,4.82266,2.5541966666666664,4.411525,6.17965,5.28135,5.448,3.98591,4.533305,2.61633,2.27278,1.61796,2.2962700000000003,1.904275,2.3808233333333333,2.2528966666666665,1.608235,2.70457,2.92537,3.733735,6.0883,5.55025,4.1466,5.002,3.97206,3.74665,4.31167,0.8738575,2.764343333333333,5.52695,1.18628,0.7540266666666666,4.76868,3.505615,2.6351033333333334,3.2974125,6.4416,3.255365,1.01563,1.3376628571428573,0.6983255555555555,4.153616666666667,2.31814,2.8221133333333337,1.163714285714286,3.21046,2.5763866666666666,5.41995,5.17745,4.470985,5.30795,3.847955,1.3049199999999999,3.556955,1.69533,3.49662,4.087185,3.68192,2.2950433333333335,3.075583333333333,2.7142966666666664,3.739295,4.27168,3.007335,2.7504,8.976015,10.3067075,4.35596,1.206597142857143,5.473,3.983085,5.27815,4.433635,4.20248,4.05875,3.39923,4.151645,3.7339906249999997,4.89446,3.85802,4.081635,4.5151,1.8348900000000001,4.99889,5.6809,4.615055,3.1696,3.31925,6.65324,0.62164,2.8699066666666666,2.765753333333333,2.4269666666666665,5.00455,2.813565,1.3189316666666666,4.4166,3.7510666666666665,3.64232,4.957435,3.397231666666667,6.70664,2.9845066666666664,2.87425,2.9988733333333335,3.0820566666666664,4.085885,2.46564,2.1290466666666665,3.11926,4.0463,3.4151791666666664,1.94895,1.56037,3.5517789285714287,3.397385,0.9587711111111111,2.837831666666667,2.837831666666667,1.5951525,5.68255,2.818135,3.24131,3.424925,3.290365,3.41675,3.54201,3.327135,3.04526,2.1023166666666664,0.5499866666666667,3.325755,5.940855,3.13444,3.65005,3.203095,4.009615,4.07412,3.040425,3.029675,3.43687,3.75532,2.991255,2.978905,3.870955,2.6557866666666667,4.08268,3.681665,9.08349,3.25124,3.73572,2.83193,4.000815,4.05519,3.636925,2.35983,3.74906,2.45571,2.805555,3.059625,3.20321,4.155725,1.70258,1.70258,2.199595,3.25124,3.090665,1.558918,2.38891,3.4728,1.837408,2.95309,1.558918,3.82187,2.96827,3.96945075,3.04851,3.69221,2.509165,3.71722,4.00793,4.034155,3.04144,4.12875,3.803255,4.322055,3.61512,3.12028,3.258475,3.0556,3.812125,2.7046266666666665,3.66677,4.88071,3.947475,3.735045,0.30216086956521737,3.661345,0.4375266666666667,3.792585,3.58195,2.994845,3.58219,3.895175,6.238533333333333,3.46687,2.603826666666667,2.313466666666667,2.7270266666666667,0.8602169999999999,5.975158333333333,3.0775,3.44107,3.812145,2.043535,2.561555,3.349215,3.249065,6.634905,4.03647,4.87613,4.511105,4.9543,4.22247,4.86204,1.5419133333333335,1.66416,3.699185,4.562755,5.2164425,2.390546666666667,4.488285,1.885375,3.5927666666666664,3.428015,1.8713128571428572,4.045195,4.7847574999999996,3.5186333333333333,3.9145,3.212963333333333,4.501665,5.37545,3.441266666666667,4.258635,4.42674,4.88579,4.35653,4.41781,3.69393,3.453555,4.345525,2.54565,3.0066066666666664,3.0066066666666664,3.75884,2.6523600000000003,4.00238,2.866286666666667,4.80666,3.30677,3.49462,1.88785,1.7324400000000002,1.1819783333333334,1.1819783333333334,1.712218,3.5472333333333332,1.7473566666666667,2.6775533333333335,3.56275,5.240903,3.597466666666667,5.22435,6.05578,2.64065,2.832025,2.9413066666666663,1.6247533333333333,3.759,4.21089,6.18725,1.5718033333333334,5.42735,5.3524,2.78703,3.21412,4.28248,7.01585,2.21691,2.4209725,3.8536,0.4784485714285714,4.42306,4.08868,4.66399,3.602795,4.114325,1.579762,1.543258,4.036475,4.632645,2.3910833333333334,3.72142,4.45404,4.679255,1.3004875,3.92525,4.13905,3.822865,5.05985,3.1860033333333333,5.643623333333333,3.74573,1.5950760000000002,3.70999,1.271725,2.733363333333333,7.7688500000000005,3.3377,0.8131418181818181,3.46701,4.255795,4.39045,2.3551825,2.3551825,5.02432,5.5593,2.928835,0.4989544444444445,1.986235,4.395994166666666,4.24045,4.54954,1.7840420000000001,3.1150533333333335,3.35644,1.0538109868421053,1.0538109868421053,1.0538109868421053,0.7890914035087719,1.3620797368421051,0.5729883333333333,1.0538109868421053,0.7890914035087719,0.24186473684210527,0.8148530701754386,0.24186473684210527,0.5472266666666666,0.5472266666666666,0.5472266666666666,0.5472266666666666,1.1187908333333334,1.329175,2.38855,2.4155166666666665,1.1607433333333332,6.319633333333333,2.685513333333333,5.4720200000000006,2.4967200000000003,3.47072,2.992115,3.300205,2.8443125,4.91232,2.745423333333333,4.10826,4.08383,5.14215,2.2276225,4.42109,5.09975,4.081125,3.07903,5.36345,3.291995,4.52496,4.974445,4.611865,5.89315,5.2584,1.4282625,3.321915,3.89219,2.49191,14.02704,4.503825,5.25945,2.7565333333333335,7.51713,4.13348,3.898725,4.05089,3.090885,1.0607675,2.493715,4.00753,4.294035,3.168415,3.47906,4.13431,2.9037666666666664,3.87041,4.56662,4.185935,6.677465,8.720978333333333,1.1353514285714286,3.564655,3.871105,3.84899,3.903565,3.48415,7.22,2.71149,2.90884,2.520785,3.970235,3.83946,4.55252,2.73653,1.783565,0.8945360000000001,4.94177,4.41844,3.733875,4.147405,3.44502,4.888695,3.8022,4.27144,3.842315,3.371765,3.618775,3.64639,3.31583,3.338295,3.524445,1.8601825,3.88501,3.638555,4.18067,4.726680833333333,4.726680833333333,2.4662,1.8601825,2.05394,2.717845,0.6891733333333333,1.5420208333333334,0.8528475,1.337435,2.531205,0.32127,2.854685,4.10784,1.337435,3.147483,11.091625,7.4217125,2.1201616666666667,0.980368,1.7693866666666667,4.33093,4.34572,6.082390238095238,1.9564725,2.26624,4.527515,4.09841,4.853575,1.8962733333333333,5.31065,3.5559999999999996,3.17604,5.2143,7.462402,3.94077,2.300475,2.7679233333333335,1.7680733333333334,4.139615,5.1654675,1.234312,4.6474,4.455365,6.074241,0.5480126666666667,5.125579999999999,4.258885,4.18543,2.742515,2.77094,4.412495,9.041116666666667,4.23163,1.8891166666666666,1.8891166666666666,1.8891166666666666,6.13505,5.30445,6.234,2.915315,2.693865,2.573803157894737,3.21387,3.149065,2.5793365,1.906535,2.5793365,7.1226165,4.512506666666667,4.443399523809523,6.31635,4.443399523809523,4.443399523809523,3.258002857142857,6.75238,5.711221,3.003336,3.003336,2.640485,4.96504,2.82279,3.52185,5.3002375,5.3002375,5.3002375,7.28929,3.5846574999999996,3.46528,3.6028775,3.509755,0.8440875,7.055516666666667,2.54301,3.77581,3.33116,13.830375333333333,3.894455,5.615365,7.00412,2.627068333333333,3.47297,1.1606566666666667,5.615365,3.50941,1.7399475,1.7399475,3.050905,5.170921666666667,1.7678125,4.748198333333334,0.8707229999999999,1.4706716666666668,0.8707229999999999,1.893395,2.6385354999999997,5.451653,3.7693,1.4706716666666668,3.14268,4.95562,1.01579,3.517945,4.52099,2.14525,4.250396666666666,2.72945,3.027,3.2952,0.960004,3.799205,2.35396,2.173955,1.71708,3.1213699999999998,3.89492,2.981015,3.68564,1.454631111111111,1.454631111111111,1.454631111111111,3.124035,2.4915533333333335,2.4915533333333335,2.23091,3.783975,2.4704166666666665,1.439315,1.439315,3.01016,4.432315,0.889265,1.48719,2.815915,1.4172866666666666,2.9044766666666666,0.960004,0.960004,1.9691658333333333,0.960004,3.2839475,0.7709383333333334,3.2839475,6.1523762500000005,3.495705,2.280813333333333,1.8594873611111111,0.6359383333333334,2.4954256944444446,3.65301,2.4954256944444446,0.9820311111111111,3.354245,4.142045,3.93796,3.21552,2.69066,3.62709,1.96113,0.9934862499999999,0.47901625,0.9934862499999999,0.51447,0.9934862499999999,0.9934862499999999,4.60141,4.861775,5.0058,3.476345,4.794935,4.97094,5.24035,3.48222,4.00449,1.2617885714285715,3.3210033333333335,4.417914166666667,3.818415,1.4158600000000001,2.7840066666666665,4.8361,3.748115,4.141085,4.19048,3.11946,3.654945,3.1884,4.470665,2.468243333333333,5.6751,3.7357,4.098675,5.477525714285714,1.2040032142857142,2.0832,3.14642,6.49799,5.1515,4.514305,3.29112,5.2608,8.251651666666667,3.8895999999999997,3.079435,3.6054666666666666,6.3663,4.071625,5.524,5.2322,4.70798,3.332855,5.27815,4.688785,3.319036666666667,6.958805,3.198423333333333,2.31922,1.98543,5.13045,6.47465,5.98365,5.80445,3.777075,5.0855,5.91355,0.43401230769230764,7.450835,4.262155,4.348895,3.71118,4.75427,4.2465,3.2335833333333333,2.7428,1.3434483333333331,0.5798261538461539,1.807628,3.160076666666667,3.399995,3.94899,4.218035,3.92532,11.880363333333332,3.71532,3.922525,2.797305,0.689995,6.35155,3.1218266666666667,1.5728066666666667,4.694633333333334,5.997181666666666,2.875355,8.83194,4.353185,2.148696,2.148696,2.148696,3.93493,8.90538,3.4083,1.4471925,1.4471925,3.333425,9.81303,1.02025125,5.1526,4.46907,4.31005,3.12705,2.3425233333333333,4.384865,3.973275,3.700595,6.147653333333333,3.95871,2.88405,3.957085,4.119365,3.5442745,1.472,3.2502099999999996,6.05866,3.6209350000000002,4.230785,0.93770625,3.8843333333333336,2.5883233333333333,2.606646666666667,1.82635,1.8166933333333333,2.17821,6.40885,2.08278,4.05664,5.849,1.855572,5.29185,3.765245,4.634,3.4793333333333334,2.1456,2.67709,4.02926,4.0390508333333335,4.0390508333333335,1.18374,1.6685699999999999,2.9895366666666665,4.378885,2.347314,4.817164666666667,1.7375979999999998,2.8820366666666666,2.098716666666667,1.60587,1.60587,4.837745,7.611788333333333,1.9776766666666665,3.2093566666666664,2.2646425,6.35005,3.04453,0.795234,2.94218,0.795234,2.725595,3.371685,4.705915,5.9338,3.743985,4.606865833333334,5.3716,2.26434,1.9159633333333332,2.4549,2.2210466666666666,6.2282,4.338585,2.55642,3.65678,2.734665,4.457425,1.1272475,1.122866,1.8208933333333333,1.60367,2.510693333333333,2.665696666666667,2.2858933333333336,3.8136666666666668,2.72512,4.37989,2.8150600000000003,2.4853533333333333,2.72499,2.44016,3.1838266666666666,2.8243466666666666,1.9324466666666666,2.52711,3.764475,3.35165,3.05684,3.251805,2.8902633333333334,2.1357075,2.03584,1.2739033333333334,0.2906975,0.15834847826086956,2.2111533333333333,2.120746666666667,0.15834847826086956,4.207606811594204,2.2464675,0.15834847826086956,5.999716666666667,2.514721666666667,6.00757,3.489555,3.8326333333333333,2.1941966666666666,3.0277066666666665,2.323915,4.41883,3.2430966666666667,3.1554066666666665,0.45746894736842103,4.110131666666667,2.506368947368421,3.028475,2.639935,2.757275,3.918695,2.654655,7.669040000000001,5.23835,3.498475,3.755455,6.57732,6.44296,1.7990966666666666,4.027429166666667,2.09856,1.941895,6.16476,8.04521,1.14087,2.00075,3.597435,2.625905,2.99592,3.12225,2.66139,3.9994300000000003,2.347825,3.015815,3.57027,3.246435,7.41324,1.4366533333333333,2.074425,3.18954,3.5453,1.67383,3.494125,1.55393,3.75763,3.31203,6.53971,3.452635,8.7718,3.66127,1.517562,1.7703866666666668,3.114305,6.93849,1.773685,1.50893,5.85754,3.481665,4.09227,2.80293,2.056556666666667,3.25657,10.609549999999999,5.17117,6.27481,3.584875,2.08751,2.29893,2.58296,2.74618,3.312645,1.8108000000000002,1.5643566666666666,2.50236,3.472915,1.7608825,3.273685,2.96056,2.846965,3.8095,3.288755,1.246535,2.64715,1.03833,1.348966,1.551545,3.09664,3.47726,3.615345,2.64129,3.774485,3.904945,2.72475,1.48807,3.42846,3.5704225000000003,3.22292,1.770865,3.067155,3.376635,1.510655,3.46232,1.5998533333333331,4.19792,4.07317,5.03195,2.6218,3.75093,1.718495,3.819545,3.74961,1.72229,1.0718942857142857,4.0496,2.690505,4.81256,4.08877,3.10779,4.47052,4.32053,2.64113,5.2487,5.3079625,6.4455,4.53496,5.548242666666667,3.851105,1.5629666666666668,2.80684,4.529315,5.1571,2.658776666666667,7.453476,1.343802857142857,3.8494333333333333,2.124405,1.766054,2.3168866666666665,2.741483333333333,0.40951785714285716,2.4535766666666667,2.79734,3.562335,2.682795,3.25196,2.298576666666667,2.521316666666667,2.156975,8.79726,4.926055,1.306988,4.85292,2.4350861304347826,0.7220200256410256,2.8549399999999996,8.216613333333333,1.715146,4.459765,6.189381666666667,1.4054275,1.5874825,1.46068,5.28065,3.283305,4.52079,4.32326,2.5392733333333335,3.661215,0.992332,2.8786620000000003,4.38234,4.114195,5.3881,2.884005,4.800765,3.91816,5.2126,5.1771,6.0252,5.3138,4.422755,3.917465,1.550368,1.8806125,3.120725,3.380405,1.1867,4.14421,2.29969,2.9934066666666665,3.839885,2.8025966666666666,2.8401866666666664,1.5704066666666667,3.17942,2.7501866666666666,2.9722033333333333,2.9876666666666662,1.8949999999999998,1.6033975,2.353995,4.13878,4.443415,4.15608,4.676735,3.502575,2.325905,3.07641,4.772985,3.4421999999999997,4.71835,4.564255,2.2568,4.448836666666667,1.7256266666666666,4.17736,5.195576666666666,6.305766666666666,4.098585,4.698405,5.4911,3.585366666666667,4.180325,4.23199,3.30708,3.9034345,3.75587,1.531545,3.240415,1.799865,2.250145,4.29301,5.299325,3.9034345,4.269125,3.4961,1.4459933333333332,3.84444,2.122305,2.77049,2.272955,2.83915,1.4833419696969696,1.4833419696969696,1.4833419696969696,0.46918363636363636,0.752821111111111,2.1130127777777776,1.053815,3.525875,1.18065,4.24063,5.0217,4.95593,3.238175,4.13167,3.084975,5.22075,1.8470825,3.04777,2.632235,3.212855,5.884969,4.50359,5.6756,3.952855,1.015455,2.26644,1.3709066666666667,3.844255,3.90994,4.258385,5.3091,3.906725,5.46795,5.3537,3.87392,1.73122,1.2807683333333333,5.701156666666667,1.0202844444444445,1.29041,2.60078,8.42527,2.913715,3.72657,2.95696,5.8346849999999995,1.72558,0.9866566666666667,1.58575,3.086415,3.55858,3.85038,3.68415,1.9155875,6.48339,2.9604433333333335,0.8607875,4.993505,2.8880966666666663,2.8273466666666667,2.48713,3.922633333333333,5.9132275,2.89552,3.0381066666666663,3.6415333333333333,2.8961366666666666,2.9769466666666666,3.0993166666666667,2.773175,1.98361,4.446395,4.98255,4.63969,1.0460055555555554,0.743086,3.4342,2.6757833333333334,0.98751,2.3853750000000002,4.216385,4.959785,7.075189999999999,4.57812,3.9263666666666666,1.756774,3.51255,3.635965,2.914683333333333,2.656789142857143,4.32814,2.913983333333333,4.867659333333333,0.9198755555555554,5.36375,1.712074,3.63539,4.819135,1.843585,1.029685,2.90375,0.43456799999999995,2.89648,6.12545,5.8558,2.9815319999999996,1.517614,2.447103333333333,0.7939,2.6359766666666666,0.7939,4.034435,4.913185,1.451155,1.7140075,5.340991666666667,1.8360666666666667,3.461635,4.15446,4.160775,1.243018,1.6023766666666666,4.031955,5.4647,4.613175,3.4549960000000004,2.053925,2.4804075,1.7067525,2.131925,1.7866225,1.9986725,4.338485,1.3906555555555555,1.3906555555555555,3.166485,4.479053333333333,7.590750833333334,5.231713333333333,7.099404999999999,1.913295,3.844415,4.25439,1.5863416666666668,3.6464133333333333,3.51319,3.927665,5.5598,3.079735,2.456475,2.9636033333333334,3.86019,1.13455625,4.05784,4.55905,1.2263866666666667,8.304416666666667,3.38294,3.172735,2.43304,3.766675,3.534605,3.9183874999999997,2.6849433333333335,2.733686666666667,1.9708133333333333,3.5533333333333332,2.1268225,2.24143,8.113692666666667,3.4443,3.4222,4.242625,21.939309368131866,0.6807266666666667,2.647,4.248095,4.817405,8.53381,4.33324,4.14894,4.607635,7.291106666666666,3.55007,1.5483500000000001,4.830086666666666,3.34222,1.22315,1.22315,1.22315,2.42767,1.7197525,3.299605,1.572205,3.033355,1.4935766666666668,2.578355,2.559775,2.92033,1.572205,3.34685,2.783485,4.303718333333333,5.0041416666666665,4.71219,0.7764025,3.22938,2.806405,4.916545,3.669215,2.9792,1.85062,1.69957,1.957195,1.3840299999999999,4.076845,1.476415,4.971095,12.741849666666667,2.89327,2.47296,5.0368233333333325,2.6846533333333333,4.159133333333333,5.8781,2.0489,6.055759166666666,4.356345,1.2151733333333332,1.1797714285714285,6.679049,4.10408,1.8287175,3.90748,1.919475,4.79351,4.660475,4.848,3.91535,1.3516700000000001,4.017365,4.966425,4.69487,6.350998000000001,3.606525,5.42585,4.40174,4.50098,5.09915,2.42642,3.876325,1.5457675,3.399745,3.410915,4.09392,3.860745,6.1405,4.67697,2.2052866666666664,3.6433666666666666,8.897085,4.501245,2.8337066666666666,3.64924,2.964385,4.61126,4.306705,4.96507,6.645001666666667,3.38495,2.7132733333333334,4.279655,2.259785,4.433885,3.1012,6.5831,1.5291933333333334,3.73038,4.499165,11.54961,0.5261685714285714,4.078245,4.56515,0.6791935714285715,3.57127,4.220535,4.38198,1.02884,4.979145,5.003423333333333,2.738163333333333,9.849948333333334,3.4108,1.8921433333333333,2.67598,4.013085,5.8734,0.5482983333333333,3.956925,2.2170925,4.025665,0.6985453846153846,4.20537,5.8391,5.167,3.580005,6.37499,4.192085,3.689375,2.5897666666666668,2.774563333333333,4.444645,4.715475,5.2617,5.1524,4.896085,3.28136,7.22751,2.834775,3.3282464999999997,1.6366725,3.530825,2.7838166666666666,1.5552333333333335,3.091606666666667,2.7790966666666663,2.98155,3.6063333333333336,3.4649666666666668,3.0122699999999996,2.64021,5.48865,3.1991533333333333,3.857945,4.763485,2.7275666666666667,1.1107166666666666,3.1976333333333335,2.8021333333333334,4.21004,3.8561666666666667,2.7347433333333337,4.637431666666667,2.017796666666667,1.633815,2.997735,3.809775,4.598925,1.1007575,4.73348,3.096565,4.034833333333333,3.0168,5.3408825,4.014,3.324215,3.69632,1.914155,3.86493,0.67150625,4.483315,4.798765,15.530222727272726,3.512166666666667,1.1647233333333333,4.58149,0.6189564285714286,2.5797,4.4674,1.861735,1.2886057142857141,3.358605,4.59483,2.8267466666666667,0.7836799999999999,2.656775,7.8055,4.021905,5.6984,5.32685,4.146495,3.28321,3.5337666666666667,3.1955500000000003,6.905295000000001,3.878465,5.09915,2.0677925,0.4648922222222222,2.09334,2.98965,2.23233,2.65766,4.69275,2.747723333333333,4.972165,0.6118075,4.79315,3.01636,2.908275,1.13906,2.56848,1.9868166666666667,4.930155,3.90703,2.31202,1.6324714285714286,4.222585,5.2556,5.08545,6.209176666666666,2.1744066666666666,5.62115,4.92184,4.742535,2.39348,4.3935,6.130808333333333,5.35235,2.4519,4.876955,3.345965,3.54331,4.000845,4.141375,1.4032499999999999,4.73092,2.5647166666666665,2.8639733333333335,5.344989999999999,5.344989999999999,5.17735,1.53689,4.76999,1.02598,1.8912,4.689065,2.62033,1.48285,3.2180166666666667,0.8611639999999999,4.299633333333333,4.860765,2.99417,4.597995,3.761145,3.87304,5.4100325,3.410855,2.99194,3.0299133333333335,2.62346,2.65045,2.8627933333333337,4.70852,1.4611656043956043,3.01134,4.59999,5.0439,2.5284145833333334,3.999705,4.617795,4.885571666666666,3.4724,5.37605,4.8873,5.58885,4.902055,4.008835,3.51474,3.76956,4.67509,5.74195,4.6605,5.0496,4.36891,4.547185,0.7618916666666666,5.0579,4.62577,4.410695,6.891584999999999,4.25993,4.351315,4.39969,4.680835,3.587825,3.898805,2.1598325,4.5247075,2.11884,1.3398828571428572,3.74603,2.0555833333333333,2.53192,4.021702666666666,3.08691,3.03371,1.0574733333333333,2.02599,3.69078,3.78401,1.9177675,1.9177675,4.60276,1.926914,3.155886666666667,4.678325,3.633985,3.730225,1.45414,2.07207,3.64503,2.03199,4.18537,4.834195,4.540645,4.07686,8.047983333333333,2.5496,3.82029,4.85331,4.32524,3.0025399999999998,4.35438,4.35862,4.1835,2.55179,2.5869433333333336,4.891685,3.907635,4.05361,4.158235,1.6170525,3.3618,4.34442,4.67262,4.151305,4.048462499999999,4.048462499999999,3.387505833333333,4.243225,4.78056,3.78327,1.8100239999999999,7.750275,4.04545,5.09535,4.63869,4.46767,4.774295,5.0006,2.95845,3.14527,5.37675,5.2272,2.02484,4.76813,5.212149444444445,5.4479,0.8033129999999999,4.853045,1.00583,5.1829,4.30299,5.1176,4.399455,5.42385,3.8435,3.8435,0.883456,2.2005825,5.1857,3.47236,4.036185,4.326985,4.35027,3.33738,4.126875,1.3601566666666667,2.767445,1.66319,1.23994125,4.528952666666666,0.8309179999999999,2.338443333333333,3.269963333333333,1.2818533333333333,2.3137925,2.73582,1.2770716666666666,6.20662,1.721345,2.5206733333333333,4.26455,2.1238225,2.564216666666667,3.137935,4.733055,3.7782,2.8549900000000004,4.0466,1.6163319999999999,2.0789733333333333,4.210805,0.6520421428571429,2.6849366666666667,3.1210183333333337,3.12924,2.8259600000000002,1.4407999999999999,0.857675,2.41398,4.18128,1.2209314285714286,2.137405,1.2146175,5.074887500000001,2.0865775,4.387015,4.60673,4.31689,4.645825,5.11955,4.219125,4.252685,1.4340733333333333,3.992233333333333,1.590262,2.5456433333333335,1.1581071428571428,4.53381,2.19692,5.1384240000000005,4.110305,3.5573,1.553898,6.527480000000001,4.72486,1.3625083333333334,4.07975,3.241885,3.72664,2.95648,2.0179625,2.0179625,3.15104,1.1937716666666667,1.1937716666666667,2.39348,2.4992733333333335,2.04504,1.3943416666666666,3.7033666666666663,1.08612875,3.269626666666667,2.56455,1.9255525,1.5867483333333334,2.26137,2.2365975,0.29039470588235294,2.37186,1.06716,2.5164133333333334,2.098716666666667,2.3780575,1.1215111111111111,1.124194,3.724066666666667,2.99682,2.0179625,1.78894,2.2015,2.57261,2.5235533333333335,1.8362200000000002,2.1375466666666667,1.04765,3.5534666666666666,2.8697199999999996,2.5058966666666667,1.5434139999999998,1.228858,2.514525,1.228858,2.514525,0.81352875,0.81352875,0.5080255555555556,2.504025,2.1342,0.81352875,2.3316025,2.4268033333333334,2.291715,1.76468,0.7748988888888889,0.81352875,0.81352875,1.652628,1.652628,2.19006,1.78894,0.81352875,2.35366,0.47380846153846157,2.67411,2.27893,2.55141,2.46002,2.46002,0.3552535,0.3552535,2.39348,2.07194,2.25612,2.11822,0.3552535,3.6946333333333334,2.67185,1.598634,0.617160625,1.598634,0.617160625,8.18892,2.583126666666667,3.727066666666667,2.7433933333333336,3.292923333333333,2.83703,2.969446666666667,3.2238,2.3021575,1.7111825,2.6948899999999996,3.8895999999999997,2.35765,1.652628,2.3025760317460318,2.3025760317460318,2.8125766666666667,2.379305,4.5442,2.395086666666667,3.19453,2.8475900000000003,1.800228,2.53745,2.425,0.8467418181818182,1.5833025,3.366745,1.87805,2.9237,2.68805,2.660925,3.814033333333333,1.497515,3.6244333333333336,3.459633333333333,3.928733333333333,1.3001,0.2356710344827586,1.2625899999999999,1.2625899999999999,1.0627966666666666,3.181696666666667,4.1460333333333335,2.9362399999999997,2.12787,2.12787,2.3400125,1.5998533333333331,1.03073,1.6306466666666666,1.6306466666666666,0.81352875,2.39348,2.875946666666667,4.0104,2.56455,2.1002199999999998,2.1002199999999998,2.1002199999999998,1.0515788888888888,1.4697571428571428,1.4697571428571428,2.454115,3.0773233333333336,2.757185946969697,4.1516,3.12349,2.5580166666666666,3.4712,3.829515,7.724,3.504785,4.26094,3.626333333333333,13.113679999999999,4.72468,3.74209,0.88878,4.0713,3.11466,2.435045,3.749315,5.39705,7.237869666666667,6.12455,0.48996117647058823,4.137525,2.3775,4.16788,2.5514,4.1997,4.242295,4.317275,8.026264999999999,3.4633,3.967255,3.80959,3.3735850000000003,8.477378256410256,3.5574999999999997,2.659143333333333,3.41162,3.334885,4.753685,3.878345,6.607766,4.89636,1.3304019999999999,4.992795,0.89755375,5.0189,5.9708,4.7672,4.84876,6.08425,4.44142,5.5976,4.078525,9.909880000000001,4.046705,5.001724,3.5778666666666665,5.32029,3.005145,0.79563,0.79563,3.46314,4.007365,2.21377,2.185945,3.868335,4.15517,3.94415,2.158045,2.521025,3.406415,2.554316666666667,1.2715875,4.128165,4.41282,9.01632,1.7817060000000002,3.546555,3.757635,3.469645,2.8620866666666664,8.21481,4.116035,3.5255666666666667,2.941463333333333,3.898325,3.6776,3.6377,2.8939033333333337,3.960415,3.727525,4.572645,4.19594,0.38883666666666666,1.5653033333333333,2.38127,1.759995,4.913095,3.73828,2.6184333333333334,2.2690325,4.35335,3.6624950000000003,2.20115,2.623515,0.84975,2.02081,2.6412133333333334,2.6412133333333334,5.44895,1.9535175,2.75258,2.3887899999999997,2.164826666666667,1.7573400000000001,3.10053,4.596725,3.709215,3.75877,4.83796,5.15245,2.810675,2.2100466666666665,1.765128,4.671215,5.539750000000001,2.655273333333333,3.03605,2.1318575,2.5146366666666666,3.9746566666666663,2.6060666666666665,5.004,3.71762,3.46323,4.65633,2.8163966666666664,3.66735,4.47849,2.2803066666666667,2.4960633333333333,0.42407,2.3097533333333335,2.5229233333333334,2.82392,6.06015,4.58898,5.8724975,1.8570825,1.640295,3.16614,5.4787,5.42195,4.005955,3.05091,2.2926800000000003,3.29666,2.3908566666666666,4.51314,2.48529,1.9869775,5.3484,4.86016,5.35585,1.7976625,1.9240175,1.071092,1.071092,1.1977,0.9060557142857143,0.9134420000000001,2.015025714285714,4.41185,11.385878333333332,4.15539,4.557645,4.189625,5.601165,2.67522,1.6589866666666666,3.5770266666666664,2.82438,4.24593,2.5148800000000002,2.874476666666667,3.0474366666666666,3.4339999999999997,2.4496866666666666,3.4168333333333334,3.7851666666666666,3.292536666666667,3.6488666666666667,3.4975,2.994286666666667,2.977733333333333,3.2761066666666667,2.5382333333333333,3.0395800000000004,3.0850833333333334,2.8757066666666664,3.6053333333333337,2.3048200000000003,5.2089916190476195,3.438,4.151764,3.2268033333333332,3.0938433333333335,3.767666666666667,2.845053333333333,2.76634,3.1842233333333336,3.1469166666666664,3.6969666666666665,3.16183,2.102755,2.8015566666666665,2.8269866666666665,3.014,3.014,3.33103,3.055426666666667,2.6233299999999997,2.7237566666666666,3.5043,4.3671,2.7871799999999998,2.723625,2.7797533333333333,2.8912666666666667,4.927019166666667,5.191,1.7092,3.3434333333333335,3.7925,3.449274,3.3153133333333336,3.873533333333333,3.6674666666666664,2.9965566666666668,3.457608,2.1113600000000003,2.6946085,3.7607666666666666,3.3509666666666664,2.6100833333333333,2.802986666666667,3.981866666666667,2.9461633333333332,2.931426666666667,2.4482025,1.29256,3.4994666666666667,2.6593566666666666,2.1607,2.6546,3.4875333333333334,3.3900333333333332,2.0669399999999998,5.6645286666666665,2.5681266666666667,0.9558139999999999,4.712015,1.9037074999999999,1.6448099999999999,4.882955,4.05402,3.3231,2.38999,1.8011825,3.39486,2.663195,4.12605,0.4853575,1.995025,0.4853575,2.152465,1.8011825,2.75708,3.72652,2.94965,4.193635,4.90031,0.5426793333333334,2.83165,0.9453275,0.45063294117647057,4.360665,3.94995,4.91771,2.508725,5.74785,4.05838,4.051825,2.21583,3.2415966666666667,1.757346,6.5308,4.217245,3.85338,4.764655,2.59554,2.4562466666666665,2.2252033333333334,1.478085,1.82449,1.0616825,1.0616825,4.482975,2.4289833333333335,6.217223333333333,2.3179,2.05219,2.44524,2.11873225,2.2929075,4.42431,4.325975,2.0330675,2.6407833333333333,2.11873225,4.297565,3.58287475,1.98326875,6.146203333333333,2.3179,3.3165075,3.35758,3.3276066666666666,5.5831,4.205315,1.6060275,2.0534175,2.3336325,3.276125,5.00065,5.4502,1.98207,3.919755,1.6247533333333333,1.69737,5.71,10.634528333333334,1.9887766666666666,2.5600166666666664,2.36003,4.72345,4.289095,2.010465,4.948875,4.130295,3.317535,38.90914358333333,3.0413433333333333,3.567833333333333,0.5254650000000001,5.214556666666667,2.0150533333333334,0.8482833333333333,4.38808,3.76402,2.039005,1.73446,2.3281633333333334,3.86709,1.3360328571428572,3.094543,3.81839,4.312425,0.931071,5.12085,4.214175,4.831455,3.0079700000000003,1.31757,3.7440325000000003,4.60763,4.07168,3.169965,3.597355,4.011965,12.396846111111111,2.766636666666667,2.90375,4.587855,2.44458,4.583255,3.603915,2.690355,3.231155,6.398524999999999,5.15775,4.64638,5.3197,2.481205,3.6942,3.862165,3.550555,4.752825,4.729075,0.10195478260869564,2.40335,2.812375,2.83628,1.0884666666666667,0.5183325,0.5183325,1.867685,2.7306,2.844855,1.265844,2.9525466666666667,4.704815,2.656145,4.445205,0.5767621428571428,4.421515,3.43981,4.51344,4.02032,4.972795,1.345225,1.2736875,3.1747566666666667,2.87363,2.9346599999999996,4.433537696969697,4.61586,6.475395,5.5004,5.4975,3.6091,2.123245,1.5711966666666666,5.643,0.31572933333333336,3.34135,3.792925,4.135675,14.78813,1.88441375,2.9358066666666667,0.69994625,4.463525,8.143135,3.312935,2.3118666666666665,5.60605,3.4618333333333333,1.077951111111111,3.54084,2.87075,3.274885,4.860565,3.492620777777778,1.11582625,7.261191666666667,0.74088,4.33951,3.262633777777778,1.386185,2.114383111111111,3.2271525,3.2271525,3.76503,4.380594666666667,1.4752625,2.424085,2.65813,3.757595,2.82428,2.703765,3.146425,3.432485,6.4748193333333335,6.28915,4.027285,3.232395,5.3986,3.76438,4.253735,3.409145,3.49967,4.18136,5.24085,2.5305166666666667,2.4623733333333333,1.4919716666666665,2.32808,2.49916,1.53164,3.8173666666666666,3.5633666666666666,3.2418766666666667,3.3436333333333335,2.7117233333333335,1.4472533333333333,1.5460933333333333,0.5883918181818182,3.2922999999999996,1.002,1.4130075,2.8468033333333334,2.5702966666666667,2.6288933333333335,0.97051125,2.38854,2.50576,3.018,3.56295,5.76835,3.898495,2.87792,2.2275033333333334,3.430165,4.44619,2.50354,2.970255,2.070165,3.945565,2.67809,3.805645,1.32325,0.612914,2.3526975,3.3145,3.12223,3.88563,4.7743,8.579115,3.1365366666666668,2.190983333333333,1.7272566666666667,1.786066,1.786066,2.7667699999999997,2.3014233333333336,5.4026,4.648785,3.54606,4.33348,4.367365,4.498685,3.204510833333333,4.471815,7.8040675,2.49054,0.500175625,2.81189,1.3461999999999998,1.02225,1.68476,0.835351,2.1539275,5.1456,5.67065,6.1424674999999995,0.9987175,7.35864,2.10882,1.5355316666666667,2.716396666666667,4.08496,3.1450833333333335,2.51515,3.88284,3.135173333333333,3.729533333333333,2.9153233333333333,2.867713333333333,3.08117,6.83368,2.61138,3.896435,3.4666233333333336,3.7968325,1.5912899999999999,1.3020875,4.43471,2.75421,3.3391,6.094035,2.52842,3.04925,2.54815,3.14783,3.28126,2.2062466666666665,4.00375,2.9543466666666665,5.0442,2.4014213333333334,1.903455,4.911305,5.3548,5.00645,4.765445,1.5196800000000001,2.657125,2.0094325,3.421165,1.6113633333333333,0.95972,2.7660425,2.0552075,2.1590725,4.04078,0.81481,6.107717500000001,1.7965175,0.759240909090909,3.6962333333333333,4.174985,0.6633757142857143,3.310845,2.8327793750000003,0.857675,4.826435,0.1695692857142857,0.1695692857142857,0.1695692857142857,0.1695692857142857,0.1695692857142857,0.1695692857142857,1.808064,3.638645,1.808064,1.808064,1.7974066666666666,0.1695692857142857,0.1695692857142857,3.2662999999999998,2.568913333333333,3.37204,3.381265,2.42308,3.53034,1.5883857142857143,1.77881,3.5442745,1.541628,3.4570333333333334,2.748442,5.84038,4.48753,4.14615,4.197405,4.86097,4.79123,4.76933,4.017275,7.0900920833333325,3.8583,3.6403,2.7001166666666667,4.636473333333333,2.6749666666666667,2.0774075,2.00305,5.2671,4.194955,4.84861,5.3524,5.52845,4.620035,4.774595,0.6858909090909091,0.6747235714285714,0.6747235714285714,4.955465,2.44654,3.88755,1.0527114285714285,5.4428,1.5012857142857143,2.2718666666666665,2.51652,4.3082,4.3082,6.57135,3.911675,1.6078849999999998,12.183476666666667,3.3549666666666664,1.1151888888888888,5.0601,5.01495,3.11486,3.11126,2.56437,4.5163,0.5446706666666666,3.4337999999999997,2.87506,3.743066666666667,3.18247,1.5283533333333335,1.5499666666666665,4.7863541666666665,3.2751,3.0817866666666665,3.5027000000000004,5.237359166666667,3.5129200000000003,0.752346,1.6348733333333334,2.6373599999999997,2.211516666666667,3.7216,3.345966666666667,3.3893,3.7456,3.263723333333333,2.363513333333333,0.8179966666666667,3.0274699999999997,2.665216666666667,3.385685,3.36707,4.126085,2.69241,3.3997666666666664,2.66715,1.526246,2.2371,1.919402380952381,3.5710333333333337,1.8198060000000003,3.155276666666667,1.8474000000000002,3.9073333333333333,5.158723333333333,5.0334113333333335,2.411435,2.507325,2.7807,2.48627,1.5637142857142856,2.4082475,3.3029764285714283,2.443835,3.6170666666666667,2.98753,3.6880246666666667,3.08219,0.8762088888888889,1.28804,1.7936425,2.2051125,3.2896633333333334,3.5924666666666667,5.0964,7.4198474999999995,4.80364,4.10679,4.402845,16.010497666666666,0.50273,11.666605,0.9929744444444444,3.160425,2.4078466666666665,1.9039966666666668,2.994815,1.520998,1.48807,2.888403333333333,1.243894,2.8391046666666666,1.9646066666666666,3.28078,2.48463,2.7601366666666665,1.5469666666666668,0.8607999999999999,3.429133333333333,2.6049599999999997,3.2455200000000004,1.0515788888888888,3.7114,0.7578116666666667,0.35932000000000003,2.0395133333333333,4.344035,4.87725,3.542715,0.88044,4.09266,4.85513,1.2601075,2.830475,5.465016666666667,3.338205,4.15738,3.927685,3.919145,1.9173275,3.98647,2.7128633333333334,2.83653,3.46106,2.753625,2.75337,3.84254,3.134225,3.604425,2.99732,3.399395,5.1402,1.39008,4.437185,2.26597,4.09057,5.396833333333333,2.103085,2.76972,3.19493,5.6593,2.53272,3.321205,5.53115,3.727066666666667,4.14728,1.8893199999999999,2.4772225,4.89102,3.5074666666666663,4.401075,3.220076666666667,3.2542666666666666,3.1622333333333335,3.8364999999999996,3.1038333333333337,2.8352,2.8768333333333334,0.4454338888888889,2.005075,2.1308175,5.02835,4.85643,3.0641700000000003,2.7066866666666667,3.2968766666666665,9.303785000000001,3.532850625,3.9969,3.205413333333333,3.90844,3.38517,3.768836666666667,2.5711766666666667,2.418935,3.071153333333333,5.53865,4.65145,2.1674433333333334,3.26714,2.98312,2.7318366666666667,4.816582,1.7044679999999999,6.21586,4.08947,4.90782,4.38891,5.51995,3.638845,6.576008333333332,4.8688,4.25808,0.7171214285714286,2.52465,1.5891125,3.0600466666666666,3.6056725,4.310485,3.803555,6.0665,2.7250099999999997,5.05575,2.936106666666667,3.1094333333333335,3.1922466666666662,4.539865,4.525405,5.03745,2.760873333333333,5.760911666666667,4.38752,1.4304216666666667,5.47145,3.579245,2.608195,2.104405,2.2551166666666664,4.462538,1.1593699999999998,2.38835,1.997715,4.006665,4.272255,2.2091766666666666,3.305376666666667,2.8993876666666667,2.7854766666666664,4.065045,1.39184,2.2486566666666667,2.33908,2.808756666666667,2.5229333333333335,2.676353333333333,2.7065099999999997,4.08718,2.93326,2.829473333333333,4.53393,2.19095,3.912795,3.646675,1.505185303030303,1.505185303030303,4.85524,3.1810733333333334,1.7689675,1.3918025,2.3848925,1.870245,1.253632,1.40287,0.649116,1.6065866666666666,1.4469166666666666,2.74349,2.46977,1.7992,1.95705,2.3900466666666667,1.45203,1.8475166666666667,1.8837400000000002,2.067215,4.179205,3.00683,3.2089166666666666,2.87475,5.926925000000001,3.052175,4.43277,4.129275,2.0077,4.109225,3.51173,1.848695,3.44599,2.2410075,2.83796,3.78561,1.7661675,4.84814,2.42712,4.142095,3.4913666666666665,0.8130722222222223,3.9415,3.82042,3.0586,3.559335,3.414733333333333,4.93999,4.62397,5.6303525,9.330155833333333,4.309585,4.713845,3.0412199999999996,3.944585,3.75951,2.50367,2.675715,4.239925,2.2723125,5.565904,1.8693840000000002,2.716385,7.454196666666666,3.2601266666666664,3.91725,1.3516614285714286,4.80431,5.2817,3.4366333333333334,5.0526,5.07035,6.584352,16.55984648809524,0.6159941176470588,1.1215111111111111,3.5975,4.16389,3.43158,2.0967,3.300805,4.12804,4.772045,2.47674,4.89048,1.7448833333333333,1.7448833333333333,5.1595,0.7623081818181817,1.9310559999999999,2.850055,4.099615,0.3671876923076923,1.9910266666666667,4.577408083333333,1.1551616666666666,3.0211166666666665,2.7877533333333333,3.021405,8.02282,2.52652,3.13754,1.9795366666666665,2.219936666666667,4.8723125,3.81512,3.504655,7.071242166666667,1.7928875,3.04475,4.52263,6.897595000000001,1.6689666666666667,2.35406,2.5370266666666668,1.4643,2.52679,1.6931175,3.998945,3.990415,1.4703825,1.9483509999999997,1.9483509999999997,2.59546,5.35455,3.7643983333333333,3.870275,5.21865,5.06145,3.24288,3.74138,3.959505,3.645275,4.99908,3.2294475,4.24158,0.9406100000000001,0.3536275,5.4173,3.828565,2.5310433333333333,8.13229,1.6742466666666667,4.803233333333334,4.057165,0.2989425,1.9992033333333332,1.2898566666666667,1.86053,2.015966666666667,5.35538,3.17111,2.962595,4.564685,4.14038,4.3205,0.6261807692307693,2.003155,0.598763,5.535745,1.615078,4.861925,2.1826775,3.4897512500000003,3.263885,4.11509,4.953455,4.87788,0.9309545454545455,2.977735,4.175495,1.81194,1.7911375,3.696695,3.463945,3.52367,3.89799625,5.545561904761905,4.520835,5.108,3.0518066666666663,0.6109177777777778,3.3983666666666665,3.91115,0.7684330769230769,3.904685,5.3338,3.99064,3.50318,2.69556,5.12525,3.3302,3.314705,2.32352,3.768615,1.963268,3.42019,3.79209,0.7154,4.98474,4.2518,3.172305,4.029305,4.197395,2.60859,3.932525,0.613815,3.0024200000000003,3.937962222222222,4.324025,3.2573666666666665,2.169345,3.18277,2.169345,4.037175,3.018155,3.3583,1.5940333333333332,3.22879,2.05924,4.502285,2.95696,5.2405333333333335,3.4810666666666665,2.8602133333333337,3.177326666666667,2.506389821428572,2.506389821428572,2.506389821428572,2.1824333333333334,0.9789166666666667,4.68725,2.31004,1.66768,3.528366666666667,2.581253333333333,3.0757966666666667,3.934385,5.3732,4.357585,2.3839025,2.06266,4.080295,2.06096,2.6096033333333333,2.87896,3.764755,2.1317075,3.76335,2.94323,1.940174,4.642645,4.24261,3.33365,3.66111,0.7547166666666666,2.47252,4.521015,7.5950299999999995,3.344305,3.08914,2.6918,4.0825,3.673885,2.138115,2.2194425,4.696035,2.205565,4.754975,3.94563,4.22074,8.800983333333333,4.255605,4.72375,3.436835,4.832235,4.160295,3.3774699999999998,3.3774699999999998,3.672095,4.434953333333333,4.37689,4.25596,4.234075,4.36069,4.147545,1.17378,4.305595,4.04982,5.5695,8.195675,5.0542,3.7992926666666667,1.9354966666666666,1.4966516666666667,2.41601875,4.75271,3.72449,4.98127,2.78923,4.82264,5.21765,4.936675,5.1309,3.0866333333333333,4.29399,4.20961,5.39745,5.07315,4.21374,6.521818333333334,4.53649,2.257823333333333,5.036,4.521995,4.717335,4.06235,4.93322,0.7817790909090909,4.316775,4.823685,1.2953314285714286,1.3441420000000002,5.00385,5.37085,9.155955,4.64846,5.16885,6.7787,2.879395,2.704553333333333,5.15475,1.928105,1.928105,2.57167,1.5817500000000002,3.002865,3.3689,1.99777,4.286901363636363,1.35957,2.073465,5.987045,3.3834299999999997,3.57318,3.05679,4.17423,4.20607,3.0927666666666664,1.0076244444444444,4.072305,2.5395533333333336,3.96413,4.30819,3.681446666666667,5.47215,5.70005,5.4815,4.40042,5.205,6.5194,4.698435,3.27828,3.79491,2.00553,2.00553,3.89962,4.26894,2.24508,2.728736666666667,2.2438113636363637,2.92013,1.6883133333333333,1.6883133333333333,4.23088,3.451775,2.222945,3.572895,2.78815,1.88653,1.4845175,1.192611111111111,2.81787,0.49575157894736843,0.8235133333333333,2.688115,4.28352,0.41591636363636364,3.47925,1.9128720000000001,5.2976,3.38098,7.6352475,4.444395,5.46857,4.994205,4.300905,4.217055,1.882095,2.03306,4.972405,3.066805,3.710705,1.3390633333333335,3.24393,4.49738,2.7715,2.55288,3.412635,4.84276,4.23201,4.13591,3.885365,3.56132,3.331225,3.97928,0.9913614285714286,2.476055,2.268965,2.78509,4.314555,7.58415,0.895816,1.4678933333333333,1.4678933333333333,1.9194120000000001,3.90852,2.843105,3.06546,4.9665725,2.8653133333333334,1.1770425,1.1770425,1.1770425,3.07906,3.147483,4.75378,3.25179,4.13227,3.39477,3.748245,2.952655,3.274830833333333,3.67915,4.2956062500000005,2.4868949999999996,1.253632,3.012505,2.4868949999999996,3.72642,1.4661233333333332,1.96085,1.6467875,5.611618666666667,2.740075,6.045157,5.611618666666667,3.3050819999999996,1.7328016666666668,1.7328016666666668,3.143955,6.41929,1.7328016666666668,2.214315,5.72262,2.341655,2.75143,4.97283,3.528535,3.92398,2.08946,3.37495,4.0471,2.02361,2.388815,4.47407,2.08946,2.509765,2.13786,5.84498,2.52551,1.115052,2.6098,3.284175,3.084280166666667,1.99023,1.7868335000000002,4.09885,1.8798126666666666,1.833435,3.30669,2.460925,3.169595,3.27496,2.26876,2.692595,2.53502,6.5317,2.32597,3.218805,3.52895,3.52895,9.094986666666665,0.8912366666666666,3.013395,2.57448,3.26193,2.467945,1.1629366666666667,1.1629366666666667,3.2593,1.9248,6.766455,2.351685,3.46583,2.693525,5.58755,2.663745,2.644785,6.0457149999999995,6.0457149999999995,2.283125,1.43268,1.32655,1.32655,1.43268,1.9408366666666668,1.34031,1.1605666666666667,1.5641100000000001,1.94812,3.65005,1.715365,3.02009,2.88257,2.81323,2.942385,2.93886,2.529155,3.5859950000000005,3.5859950000000005,6.13975,2.059995,2.99278,3.083565,3.2786,2.872615,2.802065,2.61959,5.0686375,1.7235275,1.4778123333333335,1.2155706666666668,2.126759,5.36317,3.8642423333333333,3.2976183333333333,3.087605,1.8418375,1.8418375,1.8418375,4.14439,2.452115,1.1605666666666667,3.2575,3.377325,1.39692,5.0999525,3.1433975,5.99919,3.35452,1.83632,3.35005,2.85861,2.25943,3.07288,4.328,3.94992,1.700775,2.59282,2.935615,3.43629,5.58366,2.22905,3.402435,2.60481,5.59256,4.48609,1.96546,1.867405,5.72653,5.01407,5.28797,5.76034,0.992252,0.992252,2.384741,2.384741,0.918666,4.95674,3.17531,5.68855,4.50067,5.3519,2.150925,4.145498333333333,4.145498333333333,2.144115,3.466865,3.78798,1.24658,4.98836,3.342275,3.64452,2.71081,4.71421,2.42389,1.99535,3.407415,2.9137,2.78765,5.17984,2.72902,1.968195,3.645665,5.32182,5.86755,4.51047,2.54231,3.61265,2.8231,5.11275,2.61868,3.79943,2.16579,6.70478,4.13805,2.16859,2.86766,2.041215,4.69797,2.331215,2.67499,2.56219,7.52438,4.64536,3.37116,2.455395,2.410505,6.49854,2.56437,2.99735,5.97114,3.429515,3.188175,2.798215,3.149205,1.8525433333333332,2.011955,2.0934166666666667,1.7918066666666668,1.8814066666666667,1.8726133333333335,1.551545,1.9967933333333334,1.66033,1.8525433333333332,3.76084,3.90954,2.15827,1.6928225000000001,1.6928225000000001,3.8593633333333335,3.8593633333333335,3.301566666666667,3.301566666666667,2.78978,2.52618,1.795315,4.0795,2.2578175,2.2578175,2.456615,2.456615,3.06474,1.852185,4.7312,2.359595,3.05438,2.12677,2.12677,1.60206,4.11165,4.76511,1.4661233333333332,4.47764,2.26876,1.84693,4.26625,3.27894,2.031095,2.371155,6.34912,2.22281,6.40504,3.26875,3.404685,3.105185,2.723915,6.37108,3.31898,2.042935,2.760968076923077,2.962245,5.59351,3.591755,1.569162,1.569162,3.41933,5.03926,4.91985,5.92249,2.91217,2.954155,1.76,2.87672,1.65492,2.828565,1.86748,0.793512,0.793512,0.793512,2.0888783333333336,5.143483333333333,2.0888783333333336,1.887935,3.4991399999999997,1.638425,2.043275,4.95883,3.56526,5.49146,1.7921466666666666,4.78595,1.7921466666666666,1.7921466666666666,2.258555,1.776655,2.137885,6.43772,2.137885,2.424835,3.84353,2.173285,1.87334,2.96413,3.15157,3.2097474999999998,3.16484,4.071395,1.4361266666666666,4.5927,0.7344809090909091,4.270585,4.964955,2.5337275,2.5337275,0.7741327272727272,3.876666666666667,2.62766,5.64865,5.18605,3.843095,5.28205,4.26707,4.20919,4.575135,4.40708,4.21311,3.47087,4.10204,4.761465,5.28625,3.493925,3.24386,3.88124,2.647483333333333,1.342524,4.4832,4.20607,3.547165,1.5322857142857145,3.81607,4.41571,6.2424075000000006,1.1205075,4.74582,4.477635,2.142875,2.07117,3.26912,3.599315,1.683805,1.569162,3.59937,3.53291,2.59544,4.69356,3.05552,1.16897,2.56247,1.215094285714286,3.0808766666666667,1.8100366666666667,3.4284,1.860405,2.4726733333333333,4.20232,3.479655,4.481975,3.330975,2.2213875,4.76423,4.4337,3.06263,4.669915,3.94663,2.6810500000000004,6.17215,4.25929,3.1406066666666668,2.60243,2.47227,3.022016666666667,2.7207666666666666,2.7200133333333336,4.809715,4.349945,3.767075,2.39913,2.6422466666666664,2.38138,2.7181433333333334,2.5510433333333333,2.4101033333333333,2.4239966666666666,1.882715,1.287805,3.129226,1.2264425,1.890885,1.8932925,2.4301825,1.5662625,2.06704,4.39063,5.55095,2.0047125,4.197815,5.18315,6.64575,2.15956,1.539054,7.09145,3.379885,4.38599,4.15566,3.76792,2.03792,3.56315,2.695975,3.15058,4.69464,0.7141716666666666,4.233355,1.9731466666666666,0.8029890909090909,5.24565,4.674405,3.90651,1.834037857142857,4.791975,3.70103,2.5841533333333335,2.4487566666666667,2.4796833333333335,2.13644,0.8060499999999999,2.8869566666666664,2.963575,4.999185,2.48281,1.793265,4.204905,1.18965,1.8794400000000002,1.8794400000000002,2.66704,1.8794400000000002,4.372475,2.79211,4.874365,4.33607,5.8481,13.311206666666667,3.3443666666666663,5.16185,2.78031,4.57347,3.125695,6.8150525,3.17306,4.64645,4.96538,3.873195,1.5502399999999998,4.27427,3.0771033333333335,2.9949,1.0439366666666665,2.264745,3.34811,7.219735,4.248845,2.4992733333333335,4.256175,3.15104,4.32303,5.6102,4.686655,3.026895,2.76605,4.078795,5.7701,2.564255,4.53784,1.97086,1.97086,3.10514,4.599755,1.083535,3.95476,2.60025,3.72436,2.5588866666666665,2.2870333333333335,2.65223,2.3401166666666664,0.6197685714285714,3.42894,2.6547633333333334,4.596745,4.267885,0.255165625,5.45065,4.81421,3.79811,7.2023166666666665,3.3089333333333335,2.9362133333333333,2.29349,3.3369666666666666,3.448066666666667,1.4139533333333334,2.888333333333333,2.9527933333333336,1.4494566666666666,3.307926666666667,3.3554,3.0970166666666668,3.2651533333333336,1.3716955555555557,4.092765,2.368975,5.6426,4.571385,3.92976,1.65506,2.5525033333333336,1.3557675,1.877495,1.3557675,4.485975,3.7278333333333333,1.6673680000000002,2.4557425,3.859675,3.832095,3.079835,3.90439,0.3547615,1.2062004166666667,3.841495,4.09911,4.71117,2.0969125,2.7043733333333333,3.359766666666667,2.5412,3.146535,3.290235,4.38953,1.8424775,2.3000633333333336,3.0014966666666667,2.6247599999999998,2.6420666666666666,4.630295,2.18336,4.39824,3.6589983333333334,5.8317,7.7608175,0.7500766666666666,0.856851,3.61827,6.532885,1.633214,3.613685,1.59755,1.59755,3.664845,0.45431000000000005,4.08462,4.223545,3.02857,4.25135,3.23251,2.693345,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,0.24237133333333333,2.011525,2.95219,3.983363333333333,3.1177283333333334,4.197825,6.417078333333333,3.001845,1.9007133333333333,0.9469833333333333,3.440765,0.728055,5.225875833333333,3.3251625,2.380835,0.728055,2.413275,2.632715,0.806355,4.1388050000000005,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,0.1600451111111111,4.46118,1.717395,4.39355,4.767365,1.866546,4.33861,3.99493,5.46525,4.9637975,3.640072857142857,3.369795,4.47184,2.5644,4.754255000000001,4.179205,0.7864857142857142,1.2607785714285715,1.2256414285714285,3.4623333333333335,3.4623333333333335,3.0354400000000004,3.792815,5.1014,3.667275,4.7541,3.6858,2.02338,0.5570771428571428,4.124185,3.05513,3.1205,4.22275,3.296515,3.1587387500000004,3.50382,4.284165,6.854430000000001,4.269615,4.722045,5.11785,4.210075,1.2867742857142856,3.027375,4.6280719999999995,34.92820580266956,1.25689,4.89,4.48684,4.676975,4.397895,3.992155,5.50655,0.40800952380952377,4.78712,4.388515,2.118895,1.994955,3.73844,1.773685,2.43629,2.39628,1.7262475,2.800585,2.5235533333333335,3.182285,2.779315,0.6429238461538461,3.55865,3.751645,0.38219157894736844,2.61582,2.895515,2.58765,3.819555,1.833325,4.537495,3.92536,3.231735,4.852685,3.16529,4.333235,2.93339,3.734175,2.283025,4.6280719999999995,3.876375,4.126695,3.17585,1.605328,4.817675,3.558845,6.76976,3.329775,4.484485,6.478135,5.219044,2.25573,4.700955,6.9010549999999995,7.083502,2.2188233333333334,2.65815,5.1547,5.38263,3.71244,3.36818,5.321348333333333,2.394965,2.0274675,2.3244,60.89907645501622,5.7281,4.33156,2.6107,1.10581,3.19969,2.7935466666666664,3.2727466666666665,0.8967899999999999,4.71913,0.7661288888888889,7.783787857142857,2.06096,3.3026366666666664,1.830414,2.789725,2.6634766666666665,2.5660366666666667,2.449056666666667,2.311103333333333,3.2502433333333336,1.5403666666666667,3.917980833333333,2.437603333333333,1.4803775,2.3691400000000002,1.3852366666666667,1.4748625,7.17782,5.7665,3.422975,5.2931,5.0531125,1.5010285714285714,3.5286000000000004,3.666965,1.6465225,4.49378,3.60147,3.96786,2.1823725,3.0328033333333333,3.5541,3.938975,5.34925,4.08872,4.540285,1.7958725,3.68662,4.2339,3.3127266666666664,1.320524,3.57809,3.362966666666667,3.8748,4.747175,3.94205,4.00254,4.42307,4.42727,4.371115,4.501395,3.84632,3.2234833333333337,3.99119,4.549535,3.17653,4.00065,3.55132,1.51923,1.51923,4.539645,5.19135,5.54185,4.375175,4.85493,3.653233333333333,2.82126,4.40972,5.0071,0.74837,5.24745,7.2822525,5.6354,5.80435,1.3142777777777779,2.986575,0.9254466666666666,0.9254466666666666,0.9254466666666666,3.651655,3.5848,2.493933333333333,3.448366666666667,0.882493,4.668565,5.1713,3.166305,1.4158875,2.2258925,4.214785,3.8762,3.80777,3.194286,6.116,3.91026,2.6658466666666665,4.75827,6.95205,2.20985,4.17427,3.687635,3.208165,3.3685,3.51852,4.665825,5.2869,3.686995,3.440848888888889,1.9994933333333333,1.9994933333333333,0.71816,8.37761,2.21953,6.1915,5.3213,4.57943,4.488165,3.76013,3.1567700000000003,4.712555,7.452585,5.7482500000000005,2.1563666666666665,4.53269,1.01364,3.81687,1.9948333333333332,0.9143577777777777,1.15767,2.7024000000000004,3.19842,2.771126666666667,1.222427142857143,3.1194,3.1590733333333336,0.9232777777777778,2.805816666666667,3.317486666666667,1.672448,1.66998,3.0938866666666667,3.156283333333333,2.952583333333333,2.534476666666667,1.6361560000000002,5.1501,4.44453,3.487145,4.344425,4.78775,3.15465,4.67546,5.96225,5.14935,4.215745,4.33964,12.316036666666667,7.75244,2.7660433333333336,3.50582,2.1099966666666665,3.87089,3.244825,4.6384,1.105365,4.06395,3.49069,1.291945,3.660825,2.905866666666667,4.243505,3.348205,3.88451,5.5175,7.49165,3.912205,1.4965366666666666,1.4965366666666666,1.4965366666666666,4.624295,1.185225,1.402225,0.4651177777777778,4.267376666666666,3.055426666666667,3.90682,1.08257,1.08026875,3.05112,4.461775,3.758885,16.817464880952382,5.2164175,4.540225,5.8992024999999995,2.848053333333333,3.723225,2.953505,0.93067,1.4432,4.42226,3.69744,4.15252,3.726365,4.62602,4.032035,2.771909111111111,3.288725,5.2805,0.59178,4.816965,2.3833325,4.44211,4.90761,3.4694333333333334,2.46761,3.9021116666666664,1.69013,4.34457,6.13455,2.59454,2.523105,4.25417,4.463755,4.134205,4.25936,3.597775,3.548265,4.671655,4.52867,3.82357,4.904105,3.98171,1.1425985714285714,1.9098725,6.752469166666667,5.58095,4.356665,5.19785,2.555525,2.923083333333333,2.8530433333333334,5.273006666666666,1.933015,2.126585,3.1954333333333333,3.2020666666666666,3.3683,4.574915,3.8663,5.476681666666666,1.21356,4.646935,0.9293,4.14713,3.397425,1.7878516666666666,3.649595,0.9739411111111111,4.7714,4.977965,5.00035,5.0424,3.6253833333333336,3.91828,2.6328566666666666,5.00305,4.77223,2.9071119999999997,4.04113,2.46296,2.69395,2.071605,2.6016,3.97482,4.917745,1.08612875,4.485145,1.351665,3.33974,1.6389500000000001,1.08612875,0.21823648648648647,3.90088,3.047525,2.3215466666666664,1.8764866666666666,2.69974,1.08654,3.691225,3.55151,4.793975,2.56728,6.6898,7.7004,2.9134499999999997,3.265083333333333,2.7929033333333333,0.8637980000000001,2.3788266666666664,5.8629,4.78097,5.19205,5.00255,2.1494833333333334,1.2802933333333333,3.7403999999999997,1.5797825,2.4475425,1.7298275,1.6754825,1.6839525,1.9240775,2.0295075,1.74872,1.81376,1.206597142857143,1.4566875,1.881375,1.9077475,1.89189,2.4089,0.5226626666666667,1.908128,2.9406666666666665,3.2519266666666664,1.721345,1.8679833333333333,1.6247725,3.968305,2.21095,3.038095,3.01118,3.746865,4.818705,2.859226666666667,4.13322,1.6778405147058826,4.7394975,22.803851,4.745796666666667,5.2965,4.750675,2.3448366666666667,3.936565,4.976775,2.600365,4.163685,3.365933333333333,0.78558625,3.33923,4.906825,3.88343,4.068425,1.6597666666666668,2.01551,2.402606666666667,2.44117,1.1117085714285715,2.9667,5.29405,4.23791,3.320965,4.04055,5.35125,4.452085,6.0033,1.268675,3.246275,4.145865,5.07845,1.531056,2.48393,1.8752475,1.8752475,3.644785,4.91183,2.7602733333333336,2.8846633333333336,4.41416,3.832845,6.715482499999999,4.0002,2.25285,1.4432,2.700655,4.19213,3.269626666666667,2.3025760317460318,2.3025760317460318,3.346033333333333,4.59346,4.039585,5.543893888888889,2.31508,3.4947186666666665,0.6160566666666667,0.6160566666666667,0.6160566666666667,3.30155,3.81806,4.05052,5.2113,1.6033975,5.83675,5.03135,4.761995,3.772035,4.64233,2.87836,1.6362571428571429,5.6121,5.53655,0.4595535714285714,4.189633333333333,4.785535,1.5396666666666665,5.21715,4.84916,4.194225,4.143335,3.68493,2.9867,4.57151,1.69421,4.494935,1.5828116666666665,3.19634,6.00505,1.25225,3.239685,7.21201,3.897335,4.0656,2.544025,4.509485,4.89032,3.693766666666667,6.485715,4.234515,2.18356,2.96725,2.7758833333333333,2.88162,3.154253333333333,1.83169,4.873615,0.6827200000000001,1.9563975,1.9563975,3.142935,5.2338,2.35006,2.92978,4.94297,4.221785,4.730965,1.4624933333333334,5.326530791666666,4.832585,4.69156,3.79247,3.987592166666667,3.5397835000000004,0.4478086666666667,2.4705895714285715,1.05288375,0.4478086666666667,3.87629,0.8644833333333334,4.301225,4.318375,6.355834,2.1644666666666668,1.0320025,1.144832,2.37342,3.20392,1.8344866666666666,2.439693333333333,3.319625,3.47461,2.1037266666666667,2.3079466666666666,4.758035,3.3543525,3.909825,5.4286,3.45201,4.933755,6.846363333333334,4.099845,3.61053,4.54692,3.74367,3.73615,4.961005,6.2674375,5.14365,2.66593,0.9270044444444445,4.195585,4.005505,4.212245,5.1199,4.02051,3.49456,2.8245966666666664,2.60787,3.11416,2.4987566666666665,2.67182,3.4784,3.1960033333333335,2.5219466666666666,4.49082,4.226815,4.55597,5.8347,2.895573333333333,3.3567666666666667,2.901825,0.6879335714285714,4.672035,4.26523,4.91545,3.4255666666666666,6.115266666666667,3.449525,4.452215,3.834275,0.6143776923076923,0.5790264285714286,4.35572,2.7662555,3.686385,4.8635,4.69489,1.8461839999999998,5.0363,4.81365,2.9354099999999996,2.8465633333333336,2.3433625,2.1718795833333333,3.508433333333333,3.1971000000000003,3.3522,3.4491333333333336,3.6059,2.7023,3.3706,3.8828666666666667,5.008414999999999,0.54197375,0.54197375,0.54197375,3.005931861111111,3.7261,3.8305000000000002,3.0154566666666667,2.653113333333333,1.17378,3.1258199999999996,3.324726666666667,1.7982925,2.761253333333333,2.26168,0.9576311111111111,3.1123250000000002,4.924125,9.850905166666667,1.4960636666666667,0.585434,3.9244,0.585434,0.585434,0.585434,0.585434,2.17324,4.0842715,3.797625,4.92576,6.0297,2.7922933333333333,3.1192733333333336,2.9423174999999997,3.3666566666666666,5.35235,1.2302566666666668,2.48913,3.1405966666666667,2.736693333333333,3.4002,5.1411,2.3195666666666668,4.380765,1.1088088888888887,4.40397,5.7825,3.89891,0.828765,0.62537,0.62537,0.9809511304347827,1.8097161304347826,0.9809511304347827,0.9809511304347827,0.3677291304347826,0.3677291304347826,0.9809511304347827,1.5057833333333335,2.5053533333333333,3.10427,3.1111299999999997,2.6313233333333335,2.48182,3.07662,2.7568366666666666,4.503,3.55281,2.0082575,2.2717899999999998,1.8889525,0.18469524484536082,0.18469524484536082,0.18469524484536082,0.18469524484536082,2.5139566666666666,2.4022566666666667,0.833338,5.32705,0.7179436363636363,1.773806,4.463994166666667,5.25095,3.19546,2.57576,4.395995,3.981585,1.9813166666666666,1.2165325,3.886025,4.53728,5.9007,2.398895,1.4715166666666668,1.9041366666666668,3.298503333333333,1.46871,2.6909166666666664,3.3538333333333337,2.2983266666666666,4.75466,4.0035,3.196575,4.697335,2.480156666666667,4.45559,5.708,4.14951,4.54495,5.21575,5.15789,4.586355833333333,3.173158,4.967523333333333,4.43459,5.06275,4.36532,4.49558,2.044275,3.03029,4.237335,5.0178,4.411425,4.036875,3.471565,2.70371,3.94786,2.3759033333333335,5.65725,3.444255,7.579455,5.62375,6.08115,4.949385,1.4500428571428572,1.01647,0.6073392307692308,1.7683360000000001,4.283145,5.1632,3.936215,1.573394,4.259765,2.96094,4.74658,5.1254,6.2671589999999995,4.115235,3.262875,1.886358,5.4517475,3.993145,3.189445,1.6634525,1.0040125,3.961875,3.273995,3.4602575,3.59914,2.24695,4.703485,1.7036566666666666,2.881266666666667,2.522105,4.02887,3.33268,4.790855,2.1129775,1.69957,5.6727,3.0514566666666667,9.01205,2.902775,4.84437,5.7021,4.37011,4.72626,3.39686,3.98446,2.3345325,3.785085,5.186526,2.1482375,4.53338,4.344185,7.4597050000000005,5.08995,3.3620666666666668,4.345215,3.76145,3.3543525,3.63825,5.37125,5.25925,2.3929625,3.15323,3.2114333333333334,2.362225,2.762035,4.440805,5.83315,5.09255,4.57619,5.18825,5.05265,5.5316,0.6222276923076924,3.31316,1.2895585714285716,31.047252380046586,2.606825,4.600215,3.09999,4.495085,1.7370139999999998,2.4579566666666666,3.242666904761905,1.6837969047619048,1.6837969047619048,1.6837969047619048,1.6837969047619048,1.55887,3.46414,0.32454333333333335,7.20861375,0.32454333333333335,5.15015,5.02435,2.2294375,5.1763,2.291385,3.944402,2.541236666666667,2.523946666666667,2.74525,2.1997466666666665,0.6173346153846153,2.65508,0.7340033333333333,3.174856666666667,2.1015099999999998,2.351234,1.2730383333333333,2.351234,6.049,7.493684999999999,5.1482,4.36294,5.65235,5.8663,7.397003333333332,3.40068,1.72165,1.72165,2.4024633333333334,5.10135,3.73975,4.688765,5.715331666666667,4.282145,2.791385,4.10921,3.43752,3.533055,2.310555,1.104082,1.866185,4.31797,3.86944,5.147618888888888,1.904265,4.56622,1.570354,3.298125,1.375678,2.78703,3.1728733333333334,1.8947933333333333,3.01226,3.288513333333333,4.77509,0.6568423076923077,3.48548,3.5470333333333333,2.6146733333333336,2.36721,4.23432375,3.1763066666666666,2.0694933333333334,5.23500875,3.699685,4.851225,3.727255,3.6665,5.05495,5.16745,2.2355533333333333,6.0677,2.3317578333333335,2.0832,3.1269533333333333,2.7715666666666667,3.3859999999999997,2.95236,1.7421033333333333,3.1261662575757576,4.462485,3.27137875,2.050624,2.050624,2.49949,3.79952,4.16807,0.4953763636363636,3.057655,3.120945,8.42149,0.9319363636363637,4.15531,4.24079,5.87905,3.662195,4.10218,2.30992,3.505625,2.8636,6.057,2.6839158333333337,0.9905425,4.096365,2.6486566666666667,4.52104,2.5372533333333336,3.66975,3.70969,4.06678,4.912559,3.478405,2.00607,4.882535,2.4818333333333333,4.62117,4.35684,4.878815,4.735085,4.589735,3.14993,2.1839166666666667,2.9400333333333335,2.4939066666666667,2.997825,3.3511666666666664,2.751132857142857,5.085278333333333,2.99689,2.6683466666666664,7.163119166666667,5.412290416666667,4.002447500000001,3.240013333333333,3.812333333333333,4.07076,3.533545,2.579175,4.33295,5.27775,4.36536,1.3721916666666667,5.20995,2.9979566666666666,6.9910175,4.846875,8.31789611111111,4.09695,2.91725,2.751235,4.07506,5.68405,7.82454,3.20851,5.6871,4.141475,3.143035,3.98133,1.7044679999999999,4.574217,1.4203483333333333,4.58359,4.604485,3.4353,0.8793833333333333,9.470263333333333,1.2315444444444443,2.0340125,2.2309033333333335,1.8788466666666668,3.074953333333333,1.37268,3.526185,3.43642,3.13444,4.156335,0.9710633333333334,3.49254,1.3998683333333333,2.3289733333333333,3.929645,4.25062,2.5222,4.732512083333333,1.8547616666666666,8.17901,4.42962,2.841875,4.018585,3.17967,1.228345,7.47476,3.00288,3.329675,2.31974,4.07294,2.257265,3.1610625,2.102025,4.01422,1.3112175,4.651275,4.18612,4.20183,0.834255,2.0610523333333335,3.885775,4.63667,5.24351375,1.295242,1.295242,6.01765,4.44642,4.17711,3.77805,3.39205,7.72952,4.210165,5.84275,4.074585,2.757275,2.1327028074756784,0.367136,0.17932387096774194,0.6593827598566309,1.1061840476190477,0.6392995852534562,0.17932387096774194,1.244106,0.48005888888888887,1.4733200476190476,1.9034887598566308,2.1636075,2.35075,2.212546666666667,5.34705,6.977003333333334,5.11685,5.55555,4.73561,5.5723,1.2792666666666668,5.201,4.350825,6.0404,5.4932,5.44785,6.22275,5.4107,6.04315,1.4735933333333333,1.6956857142857142,1.809412,6.7989180000000005,1.4941179999999998,5.41,4.870475,7.219661666666667,4.98734,5.563,4.489595,5.0839,2.7182,5.82025,5.59595,6.924953333333333,5.2107,5.7187141666666665,5.8538,3.952725,4.4653,3.9161,1.0185600000000001,3.7049,4.64702,1.2529375,3.621233333333333,5.1827,4.2293725,5.3197,2.4270275,3.596155,2.5904666666666665,4.749615,2.136545,3.57301,1.3261066666666668,3.278795,3.768545,4.446655,4.684555,3.43995125,0.6258199999999999,5.9504,1.041075,3.800845,3.1628600000000002,3.722985,2.044966666666667,3.788185,3.6945223076923077,3.886233333333333,4.89599,14.784686785714285,5.013173333333333,2.22668,8.65392,1.6139025,3.763015,2.83107,2.9233499999999997,2.1313333333333335,0.21075434782608693,2.9369433333333332,5.1974,1.839968,2.3087733333333333,3.7685333333333335,1.9334775,2.2958000000000003,1.3891542857142858,3.2843,4.653465,5.19995,5.0864,0.4784485714285714,2.392866666666667,4.69856,2.99917,5.99105,5.0763,4.330955,4.59073,0.56011,2.5321533333333335,2.5321533333333335,5.28285,3.66512,4.90347,2.720775,3.816466666666667,3.118986666666667,5.1637,3.99223,6.001221111111111,5.12735,4.53171,5.10115,2.38567,2.18892,4.46266,4.214105,4.144965,3.20923,1.779568,4.19697,4.33002,3.836515,5.005,3.879095,4.65642,0.5856293333333333,3.683695,0.6769008333333333,3.1404333333333336,3.160635,4.740425,18.143704285714286,4.592005,3.711725,2.85861,1.2055675,2.760756666666667,2.5058966666666667,1.5434139999999998,2.605095,2.517785,4.423915,2.197853333333333,4.322235,3.842145,2.301695,4.690695,2.7908566666666665,4.25436,5.648,5.58025,1.426685,1.47982,3.306815,5.1089,5.3343,1.1740333333333333,5.20755,4.231595,5.75275,4.677975,1.6944933333333332,4.693495,3.11167,3.39114,4.01242,4.155775,3.1069,0.6564525,8.196843333333334,1.43623,0.1764136111111111,0.1764136111111111,0.1764136111111111,5.425,4.14375,2.6909766666666664,4.412825,3.471695,4.72325,4.245908571428571,3.8264983333333333,9.06955,3.93082,8.179706666666666,0.8369475,0.7824225,2.5532,4.75837,4.68078,2.0465,5.4371,5.94085,3.45837,3.627685,4.33384,2.2248733333333335,4.42533,4.9257745,2.5164133333333334,2.8263533333333335,3.023353333333333,2.75716,5.8682,3.72943,0.6977864285714286,4.401425,3.231985,4.30962,5.049473333333333,4.926385,3.006645,5.2782,3.45055,13.866277083333333,4.85494,6.834787166666667,3.0638666666666663,6.948785,4.778005,4.09387,2.2365975,2.35611375,9.64853,2.222443333333333,3.797,3.7684333333333337,3.7869333333333333,2.355773333333333,3.1211800000000003,2.1290575,2.08665,2.9769900000000002,1.8348900000000001,3.7811,2.57308,2.6063366666666665,2.89611,3.417066666666667,2.3963,2.3963,2.7689800000000004,3.4070666666666667,3.2907333333333333,2.77021,2.9210666666666665,2.8675433333333333,2.740266666666667,2.709016666666667,3.186026666666667,2.24147,2.391475,3.6808666666666667,3.0692299999999997,1.7827860000000002,4.143066666666667,2.89823,2.52978,2.8465399999999996,2.4829833333333333,3.4913333333333334,5.688898333333333,2.37198,3.8933,1.8182233333333333,10.383891,2.44744,1.9283233333333334,1.867456,1.0627966666666666,1.6946660000000002,4.360573333333333,2.7620059999999995,2.7620059999999995,1.548204,1.49033,3.7158166666666665,4.18689,2.19326,1.4133883333333335,1.6163319999999999,4.222871333333333,3.02609,4.131,8.048883333333333,2.7791942857142855,2.3042000000000002,3.1469234161490682,4.1948,2.391475,3.3453666666666666,3.286826666666667,3.00041,3.4229608333333337,0.9003675,3.3886570000000003,2.8583166666666666,2.8261133333333333,4.52549,3.114406666666667,0.68243,1.8713128571428572,4.62196,2.6389375,3.1045833333333337,1.5979150000000002,1.5979150000000002,2.11707,3.6245674999999995,1.04574,2.26524,4.991786666666667,4.991786666666667,0.6434761904761904,6.0110790000000005,3.522595,4.35972,5.29105,1.2353357142857142,3.6128,3.5856333333333335,4.7268825,6.725148666666667,3.2103300000000004,0.771416,2.5742866666666666,2.7187866666666665,3.157002,2.71163,2.6850966666666665,2.92417,2.4554925,2.49025,0.8224745454545453,3.258545,4.010248285714286,1.4568883333333333,1.0866342857142857,5.0387,2.45843,1.701595,4.32691,1.8192,3.483915,2.55675,3.510066666666667,8.40864625,3.8571766666666667,3.63625,5.0153,2.4224416363636365,0.684798,1.4903460000000002,7.252346666666667,1.7208966666666665,4.077395,4.300765,3.837605,21.386790666666666,3.200806666666667,1.44189,1.0903175,3.28097,1.4419366666666666,3.91725,5.2141,3.5073865,3.2747166666666665,1.2710299999999999,1.2527583333333332,3.187533333333333,0.563856875,3.26632,3.6501333333333332,3.04908,2.5078026666666666,2.464566666666667,2.8807733333333334,2.139606666666667,2.7571999999999997,1.695052,2.543813333333333,1.493,3.808445,4.31491,2.199543333333333,4.680855,3.23096,4.18527,5.1722,4.646555,3.2299066666666665,2.6822233333333334,2.75313,1.1520042857142858,1.1520042857142858,1.1520042857142858,2.007365,3.2922733333333336,2.6647966666666667,2.5781633333333334,2.4035800000000003,1.3551875,4.442895,3.663285,3.67995,6.755495,3.58503,1.6958,1.9240375,1.1798966666666666,2.45154,4.02725,2.5699866666666664,2.6898199999999997,2.206303333333333,2.5299133333333335,2.59548,2.8711533333333334,2.8204266666666666,2.9225833333333333,2.861496666666667,2.754303333333333,1.9853066666666666,2.27387,2.20377,1.504535,3.2617833333333333,2.8095,1.9895375,3.962755,5.00605,2.739463333333333,2.387868076923077,5.376893333333333,4.230345,4.95916,5.44085,4.439315,4.162675,5.7580425,1.20631375,4.40844,2.56169,5.2276,5.64255,3.388845,4.13178,2.13141,7.332955,2.44786,0.9003583333333333,8.15849,4.88215,6.0335592857142855,4.742675,2.924757,1.82629,5.4412,4.519765,4.746085,5.10725,2.823275,4.487135,4.60309,1.8889525,4.09739,2.847475,1.3657599999999999,4.696415,0.6416941176470587,4.465616666666667,3.701105,4.7909,3.17235,1.767425,3.636525,1.93703,1.22854375,2.8498533333333333,3.5910666666666664,3.203063333333333,7.028874871794871,1.510005,6.405477916666667,10.6191,6.558055,3.795235,1.2617885714285715,3.0849266666666666,1.2617885714285715,2.8198266666666663,2.148633333333333,0.2783876470588235,1.1508251470588235,0.2783876470588235,0.2783876470588235,0.2783876470588235,1.1508251470588235,1.1508251470588235,0.2783876470588235,0.8724375,5.07755,3.604215,3.264205,3.42049,3.61072,3.48958,2.887748333333333,1.672966,6.987328333333332,2.576346666666667,4.172705,2.59919,1.0431727272727274,1.2588625,4.49389,3.95382,1.0600611111111111,1.570086,0.7009990909090908,3.057982069264069,4.391575,5.2993,3.7532333333333336,5.680920833333333,0.5420269230769231,4.531735,3.60234875,2.961843333333333,2.94521,3.22621,2.534483333333333,2.8219833333333333,2.6970433333333332,2.72328,3.608635,4.535055,5.1912,1.424772,4.47007,4.492115,2.96663,3.76696,3.451115,0.340542,6.27325,3.803185,3.388825,3.103062,4.62701,3.87963,1.946735,3.21805,3.926545,9.50528,4.743535,5.59785,4.130765,3.9899,0.817495,2.22307,2.12001,1.466075,1.7974066666666666,4.134015,5.59235,4.34518,4.04573,3.194286,2.6702616666666668,1.0417066666666666,4.26024,1.2365483333333334,1.1710716666666667,3.265635,3.82023,4.367435,1.22266625,2.45803,8.665016666666666,3.061923333333333,2.8930524999999996,0.8992825,3.888365,11.67995,3.667145,4.241805,3.325635,2.95616,4.748515,5.0428,1.87775,4.233915,0.6154392307692308,4.781625,2.3316025,1.69435,1.69435,3.4903333333333335,4.521655,1.6534633333333335,5.1044,1.594542857142857,4.36992,2.5068808333333332,2.8552733333333333,4.87505,3.65169,3.6603095,2.4166825,2.733097,2.733097,11.332825,0.784331,3.31324,3.5959333333333334,2.13831,2.16639,0.8716785714285714,1.4274475,1.1913714285714287,1.98825,4.89682,2.509465,4.43519,2.118653333333333,4.33129,4.341345,1.5725683333333331,2.13409,1.0418683333333334,5.457853500000001,2.147295,2.11338,1.757346,1.234312,1.0903175,2.3766908333333334,3.646555,2.5235333333333334,3.1779933333333332,2.4209666666666667,2.53174,1.74631,3.0172133333333337,2.6846866666666664,1.2289466666666666,2.0383166666666668,3.1211033333333336,2.771216666666667,2.4749033333333332,1.1944133333333333,2.5705666666666667,2.17838,2.67507,0.3095215789473684,0.41252500000000003,2.36337,2.225776666666667,3.10677,3.1403066666666666,2.68906,4.88716,5.6321,4.43355,4.638475,4.608085,4.027055,2.2143966666666666,3.760075,0.6645818181818182,0.06262181818181818,4.056745,0.06262181818181818,3.087215,3.25532,5.49035,3.562965,6.0694,5.10065,2.4845566666666667,2.8671433333333334,1.3359733333333335,5.8273,6.35825,2.81458,5.40115,1.9376125,4.438595,2.2854041304347827,2.9536933333333333,3.3717666666666664,4.178895,4.3142483333333335,3.27515,1.9674500000000001,1.9674500000000001,4.00227,7.49116,4.39882,2.1503833333333335,2.3826266666666664,4.2452,2.692595,5.4671,3.79762,1.075911111111111,4.288115,2.9992566666666662,3.24905,4.287475,1.0156933333333333,2.327926666666667,3.84243,4.533195,4.500255,2.91034,3.0376,3.82252,3.98977,4.43037,5.1251,4.20634,3.1593091666666666,3.671275,2.34856,2.9606033333333333,2.844723333333333,3.653033333333333,4.706305,3.0102166666666665,4.783260833333333,5.08205,3.23869,4.410225,4.93331,3.53497,1.508418,1.418365,4.07309,3.0295566666666667,1.59626,2.8733866666666668,3.405525,3.11837,3.8305177777777777,3.192553333333333,2.27557,13.222304333333334,2.12891,1.832088,4.67306,0.9973259999999999,3.3343333333333334,4.07243,4.684435,3.31851,0.9679422222222223,2.2626500000000003,2.56728,1.4348100000000001,6.11825,0.9638125,0.9638125,3.943616666666667,2.1226033333333336,1.8210133333333334,1.77288,3.76506,3.515925,1.94125,2.658855,3.426686666666667,3.2205633333333332,3.07936,2.1795999999999998,6.14965,5.63685,3.281465,0.6374869230769231,3.275475,3.37681,1.004609090909091,4.99412,2.960933333333333,8.024283333333333,4.281265,4.738495,3.57108,1.5951775,3.15372,5.1344,4.96767,4.368285,3.741135,4.27147,3.049285,3.6616,3.6616,3.199435,2.8307808333333337,4.424905,1.613775,5.453198333333333,5.046826666666666,1.5396666666666665,4.79027,1.0278,4.998545,3.823745,4.858085,4.5408,3.89828,2.668285,2.62745,4.229945,4.44033,4.525485,4.251735,2.114175,1.385166,3.91662,2.0795666666666666,5.3733,3.000855,3.54104,6.3715150000000005,3.78562,4.600465,4.851035,4.23507,4.43946,8.125385,3.24834,3.002905,10.031385,3.634145,0.6315942857142858,2.099742918192918,4.961825,0.6429433333333333,4.43525,4.46681,5.1132,4.846715,3.26603,3.509905,4.84343,4.58258,2.169375,0.7101528571428571,4.813185,4.632555,4.29468,4.449915,2.7127499999999998,4.50072,3.493415,0.614808,3.41112,3.893345,2.522125,3.004103333333333,3.898725,2.1731616666666667,5.14445,5.07955,4.00983,0.863375,3.3517333333333332,5.7041458333333335,5.7041458333333335,8.904723333333333,2.06366,0.87327625,0.87327625,24.942621666666668,2.809925,8.124401666666667,0.2989425,1.2898566666666667,2.88515,0.8217230000000001,3.783285,4.094155,2.2179775,2.2179775,4.6197,4.39224,3.55733,2.7371733333333337,2.7371733333333337,3.65016,3.75756,4.73481,2.7488266666666665,2.056713333333333,2.3838708333333334,4.188065,2.153405,3.574195,2.584773333333333,2.9116964285714286,2.9116964285714286,3.3379999999999996,0.8670966666666666,2.573733333333333,1.61193,3.3240133333333333,3.0432733333333335,2.8328133333333336,2.55784,5.0351,2.62377,3.0510433333333338,6.086992,1.389602,2.33599,3.14013,2.4707933333333334,4.072305,5.445867301587302,1.3526966666666667,3.8304333333333336,2.5178,5.10881,6.46395,1.69557,4.8288253333333335,4.820729333333333,3.1310142857142855,4.573766666666667,1.0652785714285715,1.531056,3.1008,3.6686004761904765,1.3276433333333333,2.02728,1.4396875,1.573734,2.811835,3.302746,4.7186335,1.2151733333333332,1.6434142857142857,2.8757066666666664,12.580115,4.77883,2.85928,1.146307142857143,2.681857142857143,0.9628571428571429,3.2268033333333332,4.3128383333333336,5.2886,3.3778,5.8054,1.315625,3.767666666666667,4.30845,2.845053333333333,3.855131111111111,2.50859,1.088791111111111,2.539213333333333,2.61984,6.279178333333333,3.1336135714285716,3.0073866666666667,0.717699,4.803233333333334,3.7035,1.141698,5.9647516666666665,2.078485,1.8903066666666666,5.97285,1.3003,2.862493333333333,1.0161909090909091,3.227446666666667,4.559085,3.3447999999999998,3.03633,2.2310033333333332,2.52466,4.409225,4.93808,4.870455,1.6586925,4.56835,3.61781,4.311983333333333,3.449274,2.5429733333333333,4.9013,1.0314999999999999,2.955408095238095,5.52495,2.64565,4.267495833333333,1.483325,2.9965566666666668,1.999428,1.999428,7.3226466666666665,3.14795,6.040538333333333,3.5794266666666665,1.9184133333333333,2.7827776190476188,4.79396,5.949366666666667,8.336538333333333,4.869770666666667,2.66949725,1.9569533333333335,2.093264,4.1273,3.83348,1.6551120000000001,2.0632825,2.6520180357142857,1.297225,3.3900333333333332,18.991425000000003,3.4943000000000004,2.9465033333333337,2.76284,3.21387,2.24492,1.6384733333333334,2.99262,3.3903,2.5645266666666666,2.6425566666666667,5.6645286666666665,2.5681266666666667,4.4340597142857145,2.9188397142857143,2.5370817142857143,1.49939,4.120491111111111,2.2757175,4.51886,4.86076,3.97712,3.4031925000000003,3.1761166666666667,2.16446,3.29401,2.2482533333333334,3.761533333333333,3.5352,0.8113372727272726,4.986465,2.38356,3.4985,2.864889444444445,2.0145975,2.258530416666667,2.258530416666667,3.7464020833333334,2.1933954166666667,4.786685,4.85925,4.076355,4.54635,4.8294,4.8462225,4.8462225,4.246025,3.2386199999999996,5.15445,2.76891,1.62222,3.4446666666666665,4.42382,3.999445,2.59795,3.85507,5.8925,4.037633333333333,6.41771830952381,3.1412,0.818284,0.818284,3.36918,4.371395,3.8306,3.457608,2.4012233333333333,1.88093,1.8547200000000001,3.220423333333333,6.341381,1.490855,3.976265,3.499366666666667,3.894035,5.1883,4.85353,4.8902411458333335,3.2727799999999996,2.363105,4.885925,2.893525,2.100505,1.12791,3.991515,2.735075,5.7699316666666665,3.0348566666666668,2.602295,3.34328,3.87049,3.478565,4.76615,3.258215,4.739075,4.038725,4.363525,3.711345,3.41397,3.546115,4.54598,2.7370300000000003,4.860025,3.50127,4.949615,0.7236955555555555,2.22468,1.855925,1.7242,1.8541325,2.5858133333333333,2.6593433333333336,1.8376400000000002,4.947825,6.38428,1.9481366666666666,4.4669,4.68033,2.3616875,5.882171666666666,4.2055291666666665,5.19,5.1531,7.314931666666666,2.0530066666666666,2.780483333333333,1.87669,2.804873333333333,1.728,1.813925,4.06443,3.784355,5.39445,1.0341588888888888,3.021495,4.4061,2.1352525,5.5381,3.70595,2.615805,3.7371666666666665,3.26725,1.9466575,1.3036265,2.87765,2.3827075,3.05995,2.05656,1.6916728571428572,1.6916728571428572,2.713075,2.4048475,16.70625851190476,1.0809533333333332,4.526599166666666,2.1763725,1.8558466666666666,3.95387,4.33592,2.0710675,3.853245,4.52058,1.4369866666666666,1.4369866666666666,1.2523166666666665,1.85123,2.89795,3.1799166666666667,4.222903333333333,4.41488,3.6427666666666667,0.5200310526315789,3.589154385964912,1.9727333333333332,2.199295,4.78156,3.366605,4.086225,3.72628,4.625835,3.879345,2.0722725,2.634795,5.38263,2.251225,4.303755,5.0256,2.12034,4.548625,5.44665,1.4353,1.991782,3.5659333333333336,0.84317,2.667123333333333,3.185985,5.0168,4.898275,2.7501866666666666,7.9485600000000005,3.06289,2.7748633333333337,0.45063294117647057,4.235765,5.3956985714285715,2.838530476190476,5.3122,3.86432,2.7481073333333335,1.8299320000000001,5.43535075,4.671525,4.572365,1.9290425,2.0302275,4.422035,3.6269666666666667,2.8373266666666663,1.8708075,4.391105,6.8573075,2.704345,3.85429,3.60183,4.11031,1.491357142857143,1.491357142857143,3.113103333333333,2.9740866666666665,4.31798,4.992245,4.050045,3.26569,2.46305,2.17962,1.5105533333333332,1.3574442857142857,4.958365,5.5002175,5.2256,5.53715,4.406715,6.77074,3.830045,2.801023333333333,3.919430666666667,2.2381100000000003,2.9790255,1.397268,4.60987,2.35765,4.309715,5.0892,4.26236,2.8424300000000002,3.0514566666666667,1.5883857142857143,2.592825,4.073966666666666,2.284695,0.56078375,3.10734,2.8863833333333333,2.5219466666666666,2.2851866666666667,1.9335575,1.712218,0.75929,0.75929,3.5559999999999996,2.0648775,2.19666,3.596555,5.8657,4.96928,2.851925,4.36509,4.01021,2.518992,1.2752666666666668,3.01306,3.420895,0.94328,3.60067,2.859895,3.190155,2.385175,4.10231,2.69775,2.050143333333333,1.3834485714285714,3.55371,6.61388,3.63346,1.6966798214285714,4.52749,3.49711,2.51616,3.417295,2.808475,1.8045933333333333,1.0772425,3.90341,2.5103191666666667,2.2589200000000003,1.7544533333333332,2.53099,2.25721,2.489876666666667,2.649705,1.2752533333333333,1.8534866666666667,1.135485,6.466292500000001,4.198555,3.71281,3.934635,3.411,3.0416166666666666,1.7209676923076924,4.34951,4.3096,2.502195,5.0814,2.04703,4.533865,1.2462,4.122285,3.70118,1.8294825,7.8732,3.651345,1.85735,1.7302225,1.7602175,2.672075,3.200153333333333,1.2448377272727273,3.0678633333333334,5.4624,4.776735,4.58633,5.8839,5.647,4.183605,0.96626875,4.43643,4.62932,4.291475,4.94024,4.203586666666666,4.82561,5.2094,2.814695,1.0884666666666667,1.0884666666666667,5.30015,5.361635,2.47618,2.7357333333333336,3.80453,3.397285,1.60329,3.350575,3.980405,3.73835,4.042325,3.21406,2.338156666666667,5.00375,2.46885975,10.808670277173807,2.0076666666666667,0.7796325,2.4689200000000002,1.8863325,1.9140525,2.18542,1.863796,3.0886133333333334,5.7025,4.979065,3.14596,1.5356533333333333,6.184778333333334,1.3823500000000002,3.17262,0.513,4.231283333333334,5.9234,3.538025,5.1305,12.064589999999999,5.5909,3.1157166666666662,2.7687500000000003,4.70912,3.0913799999999996,5.0815,1.0387525,1.153225,0.7007181818181819,6.0299,4.10649,1.725926,4.612794000000001,4.91977,6.2705,4.800815,4.028,4.82313,6.3086,4.000525,5.104,4.08893,1.119146,4.578295,5.9243,4.771235,4.07953,5.00765,2.88621,1.1914625,4.74113,3.89432,1.0778875,3.5101666666666667,2.9027433333333335,2.39804,2.6587566666666667,2.4054433333333334,2.6736166666666663,0.73752,2.6154266666666666,2.751523333333333,2.6127,2.1140233333333334,3.30402,2.046055,1.4188333333333334,2.4847725,2.1342,2.2078775,3.4417000000000004,2.844556666666667,0.636088,2.6597233333333334,3.56685,4.858855,2.3074766666666666,3.58425,5.39865,5.57745,3.317485,3.971115,1.2256414285714285,3.355705,2.587995,3.955401666666666,2.7530775000000003,4.39006,5.01205,5.3526,3.188105,4.175033333333333,0.893092,0.893092,2.2437032692307692,1.6730125,4.29311,2.5780815,2.5780815,5.17655,6.3576,3.133625,1.06716,1.4717857142857143,5.88485,3.647055,3.15183,3.170705,2.779615,3.24923,3.15183,4.3779375,3.11459,3.1494,2.832185,1.978635,3.09915,5.58075,3.0508,2.393965,2.475945,5.18895,6.2508,5.206935,5.206935,5.497,4.42371,0.68637,4.480325,4.491235,3.122385,2.68894,10.765733333333333,3.516833333333333,4.67909,3.712465,3.6527666666666665,6.1543,2.376885,3.11921,2.8264833333333335,2.80582,2.457953333333333,1.346492,1.346492,3.69473,3.389155,4.12191,1.20547,1.674886,48.70271541666666,2.726713333333333,0.8168699999999999,3.20501,1.733545,3.3566333333333334,2.9313300000000004,3.1038033333333335,2.92197,2.8270199999999996,1.90947,0.86979875,4.64742,3.276045,3.518915,4.242055,5.4159,5.12695,5.44255,5.8959,5.5549,5.2001,5.57115,6.446385,4.875445,5.5725,2.0567175,3.882475,6.74985,5.5606,3.97366,4.7924,5.0947,2.48968,3.98492,4.797255,3.3041433333333337,3.6611666666666665,1.659284,3.72036,1.39184,3.29311,3.88862,3.679575,6.837305,3.957635,2.3803475,4.45122,3.89759,4.005275,1.045945,3.007545,4.870005,4.466102380952381,1.1968375,4.857965,1.4759925,5.97025,0.6974077777777778,3.9333406666666666,10.574586666666667,4.656555,3.919065,4.12895,1.8423833333333333,4.70962,3.93797,3.0689566666666668,4.321665,8.887841666666667,3.5667000000000004,2.4410366666666667,2.87912,2.770773333333333,3.092423333333333,2.7892218333333334,1.8709133333333332,2.6784166666666667,3.2365633333333332,2.8224199999999997,2.69755,3.452935,2.3496166666666665,1.66328,4.230658666666667,2.20765,2.4960999999999998,4.998354,2.7042266666666666,1.275925,1.9721425,2.6469033333333334,5.274704285714286,2.743675,2.1130127777777776,2.1130127777777776,1.62293,1.685855,2.1014399999999998,1.780268,6.028555,4.383245,2.457115,3.0316033333333334,3.3966333333333334,2.0867875,0.6012558333333333,2.2082966666666666,1.9452025,0.6020284615384616,3.9523,2.7191,2.49744,3.81254,3.8407116666666665,2.444456666666667,1.6573766666666667,1.4546299999999999,2.05116,3.61175,3.643415,4.4123399999999995,2.79064,4.085635,4.005395,1.1223818181818181,9.196605,2.87381,3.233515,1.25745,2.636296666666667,2.36403,2.36403,2.36403,4.10933,5.7827,1.655525,4.943455,1.4905659999999998,5.352376666666666,1.561946,4.130055,4.262945,3.990895,3.886475,5.0505,1.97859,7.6247775,4.14857,5.0619,3.266735,3.7106433333333335,3.1329999999999996,3.0216666666666665,4.144085,2.7240133333333336,4.4183514285714285,4.611448333333334,1.604365,3.966025,1.604365,3.240185,4.471178333333333,5.0245999999999995,4.471178333333333,1.88896,6.27525,4.87537,4.236565,2.8549399999999996,3.1179633333333334,4.343695,3.15256,4.26697,0.5108192857142857,3.2147433333333333,3.186083333333333,5.442206666666667,4.924965,2.6321,3.52104,6.770686666666667,3.585535,3.233025,2.971685,2.1962566666666667,4.18069,3.542735,4.721395,2.55367,3.93144,0.903566,5.13695,3.24026,4.12865,2.8781433333333335,3.2367166666666667,2.3184833333333335,3.01245,2.7994133333333333,2.83285,3.444985,2.67185,2.67185,4.927019166666667,2.815625,4.49467,11.706325,0.9985766666666667,4.427315,2.5700566666666664,2.2924700000000002,2.6787233333333336,1.402225,7.394729833333333,3.8271333333333337,3.88092,3.8300166666666664,1.8005266666666666,3.6408,4.4180354444444445,2.08168,0.41063388888888885,1.8499020000000002,1.55391,5.06535,2.841765,3.385675,3.9355616666666666,3.472910833333333,2.5010825,3.7024,4.442585,4.233625,4.243335,2.224905,4.298115,2.57261,6.35155,3.198115,4.700345,4.61348,4.520115,4.636315,2.05721,3.833725,4.09011,2.6148433333333334,4.09877,2.71799,3.1499,3.13314,3.815335,3.07464,4.93476,1.9673166666666668,4.29153,3.236465,3.86801,3.086615,4.45745,4.830465,2.788535,4.20967,3.135005,4.04144,2.060773333333333,2.16675,2.91972,2.361795,0.8682966666666667,4.07029,2.085975,3.47326,2.756285,4.253515,3.495005,2.97771,3.168165,3.720755,4.829204000000001,4.01908,2.92304,1.5484099999999998,3.130225,2.491085,0.8712255555555556,4.34442,9.385845,3.947775,3.71858,5.204,5.09455,3.94236,2.13755,4.06773,3.970865,3.30683,3.13252,3.829205,0.667975,1.2597328571428572,6.2566925,1.6615575,2.70034,5.502231,2.4270275,2.332125,2.743935,8.79176,2.91964,3.974475,3.79701,0.7758544444444444,3.42134,2.752265,3.860455,4.264405,6.387898333333333,0.693861,3.41418,7.25272,3.165115,1.077951111111111,5.1868375,4.49507,5.1076,4.502905,5.161,3.33906,2.68805,7.365955,0.867936,3.523115,4.427415,3.24806,3.771025,2.255045,4.639965,1.4369383333333332,4.53831,4.073625,4.011655,1.70167,4.86628,4.106545,2.420735,2.13852,2.732575,1.141698,4.15199,3.5073865,1.680018,8.644845,5.80535,4.330065,4.97848,3.42592,4.24416,1.4307285714285716,4.41736,3.7859,5.4021,3.85134,2.4690766666666666,6.783583461538462,0.93086,0.93086,2.56253,0.9654085714285714,4.16174,2.5895533333333334,1.0271825,1.7206466666666669,0.41647083333333335,7.109355000000001,1.015455,2.76494,3.376815,4.07644,2.833015,4.429525,5.2691,5.5351825,2.843185,3.165185,2.500165,3.382675,5.45255,4.19174,4.01684,3.56643,6.4479,4.103405,4.382321111111111,5.236827,3.622485,3.9139175,2.28459,3.9139175,7.012954000000001,39.90154461038961,3.54046,3.54855,3.0707400000000002,4.71806,4.31726,3.431195,3.56096,3.884565,4.00325,4.30776,1.74835,5.1825,2.83789,4.202925,5.1978,5.36355,2.5485966666666666,4.781035,3.88842,3.2672,1.5222099999999998,0.6466123076923077,1.616638,3.599933333333333,2.9538333333333333,1.330975,3.4568333333333334,2.5173566666666667,2.9759166666666665,3.2684599999999997,3.0419699999999996,1.434434,2.77238,3.8087666666666666,1.8941403474903473,3.0216733333333337,2.9569599999999996,3.7673,2.697563333333333,3.3579666666666665,1.1684555555555556,4.2204,3.96629,1.1777416666666667,1.1777416666666667,1.1777416666666667,1.1777416666666667,2.9040754545454543,2.0701199999999997,2.53107,3.5274,3.84359,3.9923,4.39494,4.54131,6.1126,4.7881,2.37576,6.4075,3.451435,3.174075,3.63109,3.80246,4.51729,4.599535,0.8097384615384615,1.3703185714285715,1.5897933333333334,5.2096,5.0269,3.164825,4.28477,6.289935,2.22428,4.805475,1.63743,4.56688,5.4615,1.5757666666666665,5.9361,0.7688483333333332,4.971265,1.35747,1.31715,4.02824,4.48789,5.403,5.2083,5.72045,3.913385,1.500136,3.44768,1.4994575,3.54243,3.242645,2.7481073333333335,1.779815,3.498805,1.2299116666666667,4.131405,4.676745,2.8788133333333334,5.47805,123.6586696271645,0.49643666666666664,4.34179,2.4376166666666665,4.77216,4.379635,2.600105,1.50649,0.38308761904761907,2.8865,3.693435,5.32405,2.870185,3.7699,4.909615,3.76294,2.828115,8.17525,0.70441,2.7769,0.9762225,12.283639999999998,3.060075,3.545435,0.9940811111111112,2.237545,2.729995,2.1761625,3.06335,3.374166666666667,2.41173,4.42581,2.9109933333333333,2.2956966666666667,2.1763966666666668,2.4835,4.2881,3.029155,3.69916,3.7862,3.737765,2.3680533333333336,3.85507,3.22405,3.10818,1.0080811111111112,2.5792433333333333,4.42581,4.6015,5.54675,4.049205,5.4917,1.79603,11.41046,3.600335,2.744475,3.487835,6.1557,0.6049026666666666,0.6049026666666666,4.9574,4.9574,4.47048,3.644766666666667,1.8214663636363635,0.7140725,2.82928,4.349665,4.622495,3.14043,3.96439,5.84638,4.73849,1.9138025,4.375075,1.76164,2.77148,4.483336666666667,1.751975,2.526515,0.5075314285714285,2.2374674285714287,2.2374674285714287,1.96998,4.53793,4.80825,5.3052,6.245443,2.572525,3.053105,1.955105,1.83297,4.150233333333333,4.04539,6.20638,2.747905,6.20638,5.021,3.728205,6.35575,4.03546,2.402773333333333,2.27893,2.55141,1.4340225,1.4324375,1.4654625,1.630365,1.7182975,2.4524775,3.633233333333333,4.614195,2.38524,6.0336,2.8793699999999998,4.260675,2.12815,4.29955,3.1801133333333333,2.94751,6.0757666666666665,3.5211666666666663,4.662238666666666,3.1114433333333333,1.372615,2.50569,2.7683033333333333,2.3255833333333333,5.1396,4.0782175,4.734955,13.122935161364952,0.6880850000000001,2.00959675,2.32562,1.6226019999999999,1.3148228571428573,2.6201,2.4777,2.4341025,2.696425,0.7151123076923077,1.90762,0.5209031578947368,4.598295,1.882485,4.69519,4.914895,2.514525,5.8105225,4.001825,8.24361,3.823715,2.69095,3.1821,4.576785,4.335425,2.8745543809523806,4.78862,1.9923525,1.9923525,4.85769,4.06004,4.259495,4.095685,3.1629233333333335,4.046285,5.09885,4.168025,4.7788,4.363165,4.43288,4.493575,2.41658,4.74769,1.246535,5.1124,4.449555,2.69438,2.2683166666666668,3.86942,1.3503283333333334,4.594555,1.745745,5.995062463768116,3.847615,3.967565,1.5672033333333333,3.2981949999999998,3.2981949999999998,12.053455,3.8966,4.17866,1.13269875,4.62629,2.725375,1.424765,2.6242,1.7491575,2.1172025,1.9310559999999999,3.405375,6.72945,1.794835,5.12935,4.609421666666667,5.11325,2.2649075,2.60642,3.81336,4.605805,5.28355,4.082285,7.852616666666666,2.9527633333333334,2.8857933333333334,0.3731527777777778,3.80827,3.978755,3.4141666666666666,6.273236666666667,2.5378266666666667,3.2714866666666667,1.2904316666666666,1.62896,0.56078375,1.8499020000000002,2.9736,1.6329933333333333,1.8065333333333333,0.67150625,1.272194,4.68824,2.4330025,0.6842769230769231,1.8758,1.8027675,1.9015799999999998,1.3603383333333332,2.0298775,1.62896,2.1482375,1.272194,1.272194,0.6842769230769231,1.6368142857142858,2.5936399999999997,1.3276433333333333,2.9212,0.6842769230769231,2.6639,2.5936399999999997,1.3189316666666666,1.3189316666666666,1.3189316666666666,1.970638,1.20582125,0.6842769230769231,1.124194,1.2758625,1.0627966666666666,1.8107,2.5797,0.8793833333333333,2.2723125,1.6357714285714287,0.6842769230769231,1.805012,1.62896,1.93535,1.7826166666666667,0.924061,1.93535,1.1215111111111111,2.420735,2.54815,2.695975,1.2758625,2.3048200000000003,1.2299116666666667,1.2299116666666667,0.9983727272727273,0.9983727272727273,0.9983727272727273,1.2904316666666666,1.62896,1.6357714285714287,1.8758,1.0103157142857142,1.7826166666666667,1.415018,1.7827860000000002,1.7240600000000001,1.2904316666666666,2.85928,11.73349,0.67150625,2.53994,2.00305,2.541175,0.9628571428571429,0.9628571428571429,0.6842769230769231,1.192611111111111,1.712218,1.6357714285714287,1.8222539999999998,1.7826166666666667,1.1740333333333333,1.1740333333333333,1.773806,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,3.5975,1.1215111111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.1764136111111111,0.3938327272727273,55.65606996536796,1.4922275,1.54127,1.6357714285714287,2.00305,1.0103157142857142,0.6159941176470588,0.717699,0.717699,0.717699,0.717699,4.4321,17.554205833333334,3.4949666666666666,0.6769045454545455,1.69361,1.69361,1.69361,0.6769045454545455,2.9736,0.6842769230769231,1.805012,1.8065333333333333,2.62022,1.1215111111111111,2.6321,1.1215111111111111,1.4942,1.4942,2.11515,2.11515,0.6842769230769231,2.1157,2.1157,1.0124272727272727,0.1764136111111111,2.9736,1.71615,2.5178,0.6769045454545455,0.6769045454545455,0.6769045454545455,0.6769045454545455,0.6769045454545455,2.00305,0.3938327272727273,1.1215111111111111,2.34109,2.34109,2.62745,3.1628600000000002,0.6434761904761904,0.6434761904761904,3.3619,4.133666666666667,1.2353357142857142,3.142576666666667,1.08053,2.675575,2.06366,1.0156933333333333,3.429066666666667,2.0128775,3.3517333333333332,5.46575,2.64129,1.2318222222222222,4.207865,4.854485,2.8925633333333334,1.779864,2.3497326923076924,5.0112,1.804773611111111,2.6219566666666667,2.8793333333333333,3.2854433333333333,2.589205,6.21586,4.602005,0.1764136111111111,3.3571333333333335,4.86814,4.4104,4.3948,4.312965,4.44784,2.925803333333333,1.943508,3.287315,4.47576,4.468085,4.74744,5.06515,3.176305,0.6782083333333334,6.915665000000001,1.2786766666666667,3.053424,4.686875,2.71384,2.71384,0.8231,1.779815,3.152565,3.089475,4.90046,4.29613,4.94155,5.602,1.1191385714285713,4.76301,5.21945,7.328366805555556,2.32471,4.188425,4.25197,3.998365,4.378925,4.49102,4.55471,5.526365,5.0989,4.3190100000000005,3.60019,4.55056,7.201597,1.630495,2.03504,2.9196333333333335,1.8099166666666668,2.879376666666667,1.8643533333333335,5.23645,2.7125299999999997,4.12925,1.793168,4.58591,4.018465,2.758745,4.341555,4.001515,2.4410433333333335,2.7878966666666667,2.7635466666666666,2.5478366666666665,2.7313899999999998,1.6777833333333334,2.8819966666666663,2.95225,1.447018,1.447018,4.02463,2.8910733333333334,1.9873066666666668,3.0293266666666665,2.0951166666666667,2.231473333333333,3.0381533333333333,2.6971333333333334,3.219516666666667,5.0553,4.887285,4.83708,3.723081333333333,3.723081333333333,3.938705,3.274453333333333,4.447295,4.490555,3.777555,3.523045,3.342685,7.45474,1.6046125,2.01166,3.529635,3.06877,1.20193,1.20193,3.57188,1.86445,3.7452646666666674,3.854765,3.41338,2.271936,2.201634666666667,0.518455,2.59213,3.951485,2.200265,2.498555,4.14236,1.30264,4.7736,1.2656966666666667,0.43611285714285714,0.5955603571428572,21.773822000992062,0.5955603571428572,0.43611285714285714,0.7550078571428571,11.460346666666666,2.9116633333333333,3.90097,3.944695,3.4276774999999997,2.855365,4.367967142857143,2.236425,2.609025,3.196675,3.37406,4.106235,4.64767,3.590245,2.278885,3.105435,3.70806,4.009625,3.072745,1.170031,1.170031,1.170031,1.170031,3.504085,2.90011,3.051595,1.8674166666666665,1.2010866666666666,2.495095,3.600165,3.245405,2.77334,3.22443,2.67856,2.5068808333333332,3.924445,4.163,1.122285,3.23087,1.20435,3.0597666666666665,2.09502,3.7650666666666663,5.07135,2.4217566666666666,4.67156,4.278316666666667,0.7828921428571429,0.21461214285714286,0.21461214285714286,0.56828,0.21461214285714286,0.21461214285714286,0.21461214285714286,0.56828,4.69238,7.143558333333333,3.59023,0.52147,3.805945,7.74344,3.338335,3.2792066666666666,1.1551616666666666,4.41119,5.5105,4.32233,5.48155,1.652348,4.90828,2.1466533333333335,2.3189153333333334,3.7338,5.5576,0.8245185714285714,0.8245185714285714,3.34689,3.1492133333333334,1.90553,3.84917,2.502425,3.10424,2.47219,1.952205,5.4163,5.29405,2.998575,1.70857,4.303665,3.47122,2.31556,3.86801,3.381825,1.823495,1.139635,4.058385,3.57132,5.049473333333333,6.4720483333333325,1.5711966666666666,3.89828,1.1074366666666666,2.61007,4.360355,3.92766,0.393055,3.710325,4.438085,0.945397,2.7907666666666664,8.003996666666666,5.8707,2.318505,5.806133,4.555285,3.764145,1.3513801666666665,5.610533333333333,3.2343833333333336,3.2878166666666666,3.5780999999999996,2.331366666666667,2.331366666666667,4.397655,4.397655,2.3811767857142856,2.3811767857142856,6.10975,2.3811767857142856,2.3811767857142856,3.0516823412698413,3.51471,3.422485,3.454736666666667,2.6867566666666662,4.13624,4.537395,3.2748233333333334,3.0540233333333333,4.63112,3.147596666666667,2.6651266666666666,3.1109066666666667,2.335836666666667,2.67822,4.97205,7.620515,6.7601875,4.251585,3.69191,4.01559,6.505164000000001,5.14205,3.76717,4.132965,3.320645,2.3154966666666668,2.144195,2.049695,5.48255,5.1873,4.5526675,4.331925,2.4161266666666665,2.7685600000000004,7.028038333333333,1.970638,2.554683333333333,3.2623366666666667,3.2623366666666667,3.273785,4.83415,0.7509691666666667,3.2238,3.944395,2.8477366666666666,10.465074999999999,4.510815,2.8673633333333335,2.5287566666666668,5.5656,6.662,3.1486,5.94375,2.5473,4.41918,3.059767714285714,4.34158,5.28575,4.871125,0.9153733333333333,3.5368333333333335,1.06672875,2.5291433333333333,5.122401897058824,7.800643333333333,3.3974333333333333,2.828056666666667,6.08106,1.715146,4.635075,5.70925,3.38259,3.726795,2.1608066666666668,4.929125,2.51865375,0.4826669230769231,5.32105,2.89493,3.6244333333333336,5.0764,4.845735,5.4359,6.7072650000000005,5.09785,5.6901,7.0078325,53.68985133333334,4.541555,3.96718,4.80697,6.47525,4.496455,4.01132,3.07185,4.75668,1.9650175,4.201745,4.18558,4.486665,2.48449,5.08985,3.89061,1.6390920000000002,5.56795,6.4735,7.497966666666667,5.46865,3.31651,5.2437,3.287575,3.35244,3.694055,4.26986,3.774125,6.66982,2.775575,1.1001814285714286,2.40176,0.570774,0.570774,3.385635,0.570774,2.3046285714285712,2.3046285714285712,3.069728571428571,4.44993,4.728838571428572,2.40176,4.419740833333334,2.658100833333333,1.3399133333333333,4.927895,2.12564,7.650420666666666,6.043396666666666,11.328539272727273,2.9582266666666666,2.98279,0.23466060606060607,1.8008886666666666,2.4707433333333335,0.88123,1.3832266666666666,2.635946666666667,1.68263,2.428845,0.61532,28.148587499999998,2.03786,0.7790769230769231,2.7220633333333333,2.7220633333333333,0.3933788888888889,1.7385875,3.0530825,1.34005,1.87264,1.6544725,4.43097,2.95745,2.19699,2.33622,1.1627,2.00602,1.612095,5.696872916666666,3.74975,6.8543025,2.3609875,3.378633333333333,1.0189716666666666,3.039835,4.764345,5.734035,3.1088633333333333,2.5504233333333333,6.082583333333334,2.59675,2.7490433333333333,4.3331825,1.1305433333333335,3.9362333333333335,2.4472033333333334,6.04055,5.24455,5.7818,3.202185,4.165967500000001,4.165967500000001,5.2829,2.023305,5.5047,2.4258166666666665,1.6301625,3.879715,4.15505,6.7469874999999995,4.344285,3.02378,3.1859300000000004,2.571255,1.253757142857143,4.906105,0.96519625,5.617383333333333,4.69022,8.125499999999999,4.51081,4.658365,4.18479,8.736735,5.23545,5.2503,1.12233,0.766792857142857,4.756615,4.790925,2.10035,3.249745,3.390705,4.32837,2.21719,4.587435,2.5469633333333332,4.86453,5.22085,5.00445,4.67913,4.369845,2.92588,6.923816,3.4436,5.2972,3.42023,3.951955,5.970512738095238,0.5971221428571428,3.856733333333333,1.76732,0.5448077777777778,4.44767,2.37413,1.01928875,1.95934,6.11515,3.72076,2.331515,2.5990100000000003,2.69074,5.22745,3.06959,1.744155476190476,4.16833,2.7358266666666666,3.4484333333333335,4.697735,5.0073,3.064750833333333,3.7825666666666664,3.703,2.0072,7.2174,4.791855,3.97958,4.771595,2.2906,4.09173,4.69238,2.593445,4.05349,11.081095,4.69744,4.72973,4.90272,4.460045,2.4209725,4.14065,3.565335,4.45784,3.319876666666667,4.165055,1.55309,2.6864333333333335,3.4915,3.485015,5.01985,1.8463100000000001,4.00678,3.191383333333333,5.17975,2.9908533333333334,2.72588,3.80996,4.4301,1.00898875,3.453645,2.6654666666666667,4.515059333333333,1.794404,1.6876499999999999,1.1255225,4.91908,6.0528,5.6500825,3.793,2.66921,2.459715,2.16105,2.037595,1.6154833333333334,4.052525,2.96976,1.7456675,0.9399692307692308,20.20596710897436,3.03759,2.84653,4.283356666666666,4.194585384615385,1.4693033333333334,2.7387070000000002,2.6600220454545456,1.246096,1.8982999999999999,3.912715,5.46785,3.677745,3.430155,5.2393,4.725275,7.3355475,4.762414166666666,5.13345,3.85764,2.8892399999999996,3.942465,3.98428,3.379,4.3695,1.9985325,5.0328,9.00468,3.40749,2.9562,3.647595,0.614665,2.9237,2.1055266666666665,2.5213,4.389635,3.251035,4.457955,3.61026,3.069785,2.2690325,1.677025,0.78454,1.44581,1.2712933333333334,4.39803,3.973395,4.30724,4.733305,7.30839,2.2489133333333333,1.3980700000000001,2.4383933333333334,8.083353333333333,3.18868,3.04475,3.153645,4.25388,3.7745274999999996,3.467265,1.599354,4.126145,4.775385,4.120285,3.946445,3.411755,4.24024,4.4786,3.805445,4.478675,3.63976,2.121345,2.95918,3.57163,4.91544,2.776875,4.40536,3.719575,2.96208,2.66324,2.4399466666666667,2.1714166666666666,2.1064553333333333,2.1064553333333333,1.9789166666666667,2.7888933333333337,2.3703966666666667,2.34533,1.8942333333333332,4.10277,2.3980466666666667,3.2375833333333333,2.884703333333333,1.75884,4.100845,2.96773,3.36824,1.73153,5.35135,5.34175,4.960850277777777,2.754565,2.308475,2.8689,2.70734,2.09288,3.0308,1.8944825,2.49526,2.3411625,6.806760833333334,4.41707,3.72956,0.54966375,4.19308,4.40856,4.35064,3.081675,3.82988,3.7444991666666665,5.8091,4.1951,3.223395,2.8854107142857144,2.1985128888888887,2.5491800000000002,1.6793019999999999,1.6513839999999997,1.575996,2.00898,1.8593925,1.2448933333333334,4.179046857142857,0.6842769230769231,0.5439588888888889,2.12496,1.5867483333333334,1.6458059999999999,1.5814766666666669,2.522324696969697,1.4908816666666667,1.752054,0.61443625,171.70279880064828,0.553492,2.10514,1.149554,1.218865,2.066115,1.47829,1.9833275,2.40652,2.313945,6.8991,3.19896,3.6665004761904765,1.81722,3.1913,1.3205583333333333,1.3205583333333333,5.6774325,0.5080255555555556,2.2817875,3.3344,3.13322,0.79525,0.6755058823529412,1.2414795897435895,1.0937272727272729,2.581575,3.712845,1.9499375,2.21519,2.43555,4.504958055555556,1.0671066666666666,4.315925,3.86898,3.60172,6.98153,1.8361133333333333,2.754465,2.514455,4.2289069999999995,2.27665,3.3825,3.303385,3.14804,4.339885,2.92938,6.79468,2.276425,2.65855,3.12367,1.60605,2.65299,2.486755,2.93893,1.694355,1.546985,2.418935,4.468715,5.716378333333333,3.05341,3.95413,1.29133,4.14249,3.4065999999999996,3.5521,2.981505,24.66476521001221,2.1633313333333333,2.8902666666666668,3.2053933333333333,3.3181166666666666,3.092886666666667,5.933286666666667,2.9735600000000004,2.44175,3.558566666666667,3.0544366666666662,2.089446666666667,3.18599,3.2023200000000003,3.048503333333333,1.6934333333333333,1.69607075,0.589522,2.2910633333333332,2.3250725,0.21136875,2.4354833333333334,2.695765,0.21136875,0.21136875,1.8803354166666666,0.21136875,0.21136875,0.21136875,0.21136875,2.9172700000000003,2.4448066666666666,0.5657361538461538,3.3224496428571433,1.4075325,1.9270980000000002,5.2893,5.008414999999999,6.3348175,2.1213475,4.888535,2.01041,2.58689,1.20966,5.816303333333333,2.7515466666666666,5.3202575,0.875525,1.2803275,4.952425,4.970335,36.438221616078366,1.694672,1.3854133333333334,2.35596,2.30347,0.9983727272727273,2.4064433333333333,2.231123333333333,2.806813333333333,2.0283666666666664,2.4609433333333333,1.6777683333333333,2.59935,2.4546766666666664,2.2673633333333334,2.5473033333333333,2.4998299999999998,4.27834,2.832943333333333,1.0299685714285716,3.287345,4.02766,19.366316222222224,2.7455200000000004,2.5562366666666665,2.8219766666666666,0.931766,3.264058,1.7521048888888888,3.264058,2.447903333333333,2.3738366666666666,3.2039633333333337,1.40468,1.866775,4.703535,3.978855,5.4118,4.304805,1.783452,5.03065,1.5923325,4.73716,4.196397571428572,4.718975,0.7406927272727273,2.4512225,2.30767,2.957582,3.39667,1.024015,3.42308,2.11068,2.08174,1.069648,1.069648,1.8652966666666666,3.0522899999999997,5.0852,30.60843708333333,6.45182,1.9380333333333333,3.653366666666667,0.37624133333333337,6.76915,3.89291,2.7349366666666666,3.13415,5.642125,4.38091,1.2813875,4.41352,1.302486,4.34522,4.84918,4.942865,2.090905,3.000245,4.047735,2.419585,3.609798,4.218585,1.3175000000000001,2.5372425,3.82146,5.2212250000000004,2.7778066666666668,3.02732,3.3609666666666667,2.97715,3.966725,4.03829,3.928733333333333,1.765725,6.08357,2.543105,1.76916,4.25084,5.711,3.862195,3.474795,0.85856625,3.003465,3.609645,2.036205,4.692006666666667,2.97805,3.91754,3.0482,3.048633333333333,2.509545,3.251773333333333,3.3051999999999997,3.353666666666667,4.77406,4.3693,3.673665,1.762105,4.24921,4.294455,1.909455,1.90458,1.823645,4.002389999999999,4.701485,5.4868592708333335,4.034395,3.6872000000000003,3.665785,3.3379,1.172495,3.00497,2.94261,3.403155,4.145655,4.565075,4.89184,2.7541,1.933675,1.49853,1.5001925,3.575975,2.406515,2.15711,3.417505,4.701275,1.726785,5.4236,1.394882857142857,1.7300825,3.55376,3.193105,3.05201,3.604895,3.054295,1.727455,0.9927033684210527,2.85834,3.533828333333333,5.2788,8.290296666666666,2.1767533333333335,2.9524633333333337,1.5614800000000002,2.732696666666667,3.1257933333333336,1.120105,3.1953300000000002,2.795923333333333,3.3670000000000004,4.170566666666667,3.3392999999999997,7.097861666666667,3.0894766666666666,0.7226772727272727,2.11319,3.424285,3.46013,3.560215,3.5925999999999996,2.543322,3.49662,5.19985,1.912298857142857,3.85709,3.036588333333333,3.36718,2.431826666666667,4.72822,5.1356,5.2163,4.204395,4.09773,1.4352777777777779,5.29745,3.5894666666666666,2.39906,4.82261,2.8378866666666664,3.0068133333333336,0.5376542857142858,0.5376542857142858,3.283605833333333,5.86535,3.239105,3.35064,3.40883,3.529745,3.140245,5.0005,4.72535,1.04832625,3.92601,2.801546666666667,4.6051424999999995,2.9717033333333336,3.1479850000000003,1.64445,3.354440357142857,2.35807,2.7381766666666665,2.609436666666667,2.8145399999999996,1.9145466666666666,23.005250489130436,6.56045,5.1049,3.969045,3.295495,4.7100025,3.21974,4.52417,4.544775,4.110015,3.569855,3.61619,2.75723,3.183783333333333,3.075616666666667,3.364466666666667,2.58278,4.485405,3.53868,4.564685,5.15305,3.638345,1.290978,1.748788,1.748788,4.58409,3.616455,2.85093,2.2585966666666666,2.962396666666667,4.833775,3.76583,7.951181666666667,3.3883666666666667,2.6442033333333335,3.112568333333333,4.78233,1.6776166666666665,6.4689,2.6587833333333335,2.4377233333333335,1.68777,3.985745,3.33719,6.70546,3.66898,2.568325,4.358885,3.8769793333333333,1.6374575,2.5781199999999997,1.6584133333333335,8.439495,4.609155,6.7358683333333325,2.3449775,4.34026,3.75029,4.12331,5.00015,3.889866666666667,3.889866666666667,2.080965,4.71607,5.3272,2.580215,6.29732,1.9618725,5.75465,9.705681666666667,3.5916333333333337,5.050936666666667,2.34146,1.94164,0.620264375,3.966825,2.5416,2.79185,4.366515,2.344465,2.337466666666667,4.06467,5.4865,4.772465,3.945335,5.8022,4.253035,2.268415,1.0962909090909092,2.969755,3.4407,3.12705,5.09745,4.006875,3.131715,3.15106,1.991782,4.52708,0.97460125,4.86884,0.8619311111111112,5.2418,3.439555,5.14315,5.014705,3.710285,3.339575,3.407966666666667,2.4268033333333334,4.45087,3.41179,2.379305,4.79644,4.4446,6.53538,3.763275,1.8968125,3.8327,3.609985,5.571886666666666,1.916165,1.916165,2.9244800000000004,2.41239,2.547823333333333,2.7187133333333335,0.938214,6.09755,4.240375,2.0132775,2.36469,2.691395,3.826775,2.883605,3.78012,4.194495,4.840185,5.312,5.93765,5.83215,1.318575,4.037505,1.0963833333333333,2.3940825,4.327366666666667,2.48354,3.067045,3.251505,4.10084,3.002035,0.43999157894736846,4.3744,4.2031,4.772035,3.358465,4.955185,5.5888,4.622545,3.79782,1.73858,4.71956,2.1439175,4.3826,4.3826,6.7018,5.52095,5.48205,5.59975,2.61446,1.6776166666666665,4.555105,2.2226666666666666,1.6672966666666669,2.052265,4.40238,4.165355,4.48728,8.29386,1.5131933333333334,5.3458,1.2976216666666667,3.204055,6.05795,1.919455,4.843545,2.2647566666666665,4.08963,3.564705,4.28226,2.81458,4.25519,4.019655,6.77635,3.945725,4.585495,4.430885,5.6901,3.887965,4.427535,3.69167,4.25944,7.822025,3.47595,7.11519,3.25862,5.14025,6.29671,4.83779,3.493295,2.1497375,5.45625,3.881345,0.7592244444444445,8.73458,6.06085,4.945565,3.0708975,5.0788,2.78474,1.79408,4.04249,1.122285,4.767415,3.046215,4.77257,5.4368,4.441055,4.44381,2.2123,4.0936,5.0656,1.8019,6.025433333333333,3.075265,3.540685,5.4492,4.146165,2.340005,4.37881,4.582035,4.84869,3.1858166666666663,3.969995,3.74109,5.52415,4.820205,3.45677,1.8562825,1.8562825,7.089761666666666,1.5494142857142859,5.03645,4.206245,5.85315,3.61978,3.631495,4.857815,3.770915,0.8861849999999999,0.8861849999999999,0.8861849999999999,3.54722,3.19988,3.964805,4.741249333333333,2.95392,1.4758883333333335,4.79487,2.1827525,2.560055,4.274155,5.0569,1.429155,2.16174,5.82384,4.2692,2.765245,4.44284,1.476415,1.99777,3.3340333333333336,3.10811,5.60905,1.443986,1.62114,1.20379875,4.26902,3.30212,3.0258266666666667,3.292923333333333,5.57645,1.8477679999999999,2.04725,3.049535,1.4081142857142857,3.64822,3.913655,2.42049,5.4961,5.7536,2.944395,4.473515,4.63159,3.567265,3.817445,4.291555,3.519735,6.60855,5.1272,1.8000800000000001,1.8039500000000002,3.542265,4.12481,4.02386,3.78456,3.3985,4.40745,4.87739,5.1674,2.8475900000000003,5.44005,4.25049,4.384555,5.6048875,4.81872,0.6446272727272727,4.184145,3.95782,2.336205,4.045985,3.6620333333333335,5.5526,3.80885,3.813035,3.827995,4.332745,4.71729,4.401845,3.65772,3.97523,5.1973,4.052375,2.49438,2.87587,6.23946,3.954855,1.7923559999999998,3.197215,4.147670833333334,3.873625,5.2304,4.84879,2.6523600000000003,0.8821811111111111,4.380894545454545,6.0070250000000005,4.344635,4.87214,3.60217,7.692411666666667,4.005955,3.546,2.6885733333333337,3.77289,2.176485,3.426255,3.96072,2.620096,3.84219,5.40735,1.4500925,5.13235,0.7012857142857143,2.951775,2.160455,2.643355,2.156555,0.7474533333333334,1.7271733333333332,3.480165,1.955885,3.072015,0.5302066666666666,3.730515,3.23567,1.51888,6.347977500000001,6.767,1.0106725,1.8499665,1.227842,1.227842,1.227842,2.2461433333333334,3.477575,3.67065,3.79124,2.87021,5.02645,3.70005,1.9401879999999998,4.277275,5.47435,0.2883,3.75176,4.043845,6.0497,40.595198045454545,5.318935833333333,4.200945,12.201199333333333,4.56594,4.32927,7.747723333333333,3.253555,4.23169,4.49163,4.963945,9.149145,4.596415,2.4559833333333336,2.60061,6.4784,4.19583,3.675995,4.4203,2.10055,4.62222,3.801155,7.1514240000000004,4.516585,5.28545,2.4010475,4.247645,0.527595625,1.42664,3.725575,6.2169,2.947145,1.3467183333333335,1.3467183333333335,4.03446,3.866385,3.856325,2.54732,1.8057400000000001,3.98571,4.322375,1.71447,3.2135833333333337,1.6960460000000002,2.13952,4.081015,4.536665,2.1571025,4.490955,2.2877725,2.19534,3.42287,3.566965,4.025575,3.911025,5.931279666666667,2.3139546666666666,4.313005,0.66617,0.6604433333333334,3.67333,2.32377,8.95822,3.4949666666666666,4.75384,1.654055,4.644785,1.4836533333333335,3.80327,4.29134,2.6928900000000002,4.320005,5.98715,0.416219,0.416219,3.3463333333333334,3.061083333333333,3.1024233333333338,3.677235,3.77538,4.96955,0.8311736363636364,9.830823333333333,8.762255,2.0298775,5.3260274999999995,4.734505,5.42035,3.314175,2.52131,2.20444,1.904265,10.0816125,2.156975,2.835546666666667,3.556634,4.978045,3.556634,2.525575,2.440366666666667,2.87959,0.7414754545454546,5.680920833333333,3.4391,2.566656666666667,4.51684,8.60289,9.886775,4.471695,4.047925,4.367745,6.7379525,2.0077575,1.39625,26.50268,4.053835,4.19002,0.9236230000000001,4.372105,4.2294,4.320795,3.744665,4.14923,5.8492766666666665,3.0055,2.0827766666666667,0.6726705882352941,0.7543708333333333,5.5561,4.84949,1.4207333333333334,4.2220733333333325,0.7766358333333333,3.6986000000000003,1.41397,4.18849,5.67075,2.04043,2.50893,2.50578,3.66679,3.01613,0.5835111111111111,5.0538,3.61314,2.3423266666666667,3.306265,5.31655,3.09705,4.226075,2.91805,5.1262,8.96967,4.95196,5.5580549999999995,2.55065,2.69981,4.457305,4.58261,3.86096,4.4466,3.75468,5.13165,1.17879875,3.20217125,3.2569042857142856,0.68787,1.748788,1.748788,5.28645,7.320311666666667,0.8930307692307693,4.93334,0.8891683333333332,2.900586666666667,2.3483933333333336,2.5188845454545454,6.483395555555555,2.54611,1.1747555555555556,2.355586666666667,1.3090875,2.3499666666666665,3.266336666666667,3.1477583333333334,3.0961700000000003,2.6920366666666666,0.8891683333333332,4.34022,4.27879,5.678,2.799995,5.1512,2.22456,5.8488,4.69473,4.08554,2.7883433333333336,3.2912,2.262635,1.180995,4.186055,2.745375,4.359425,5.59955,1.564806,4.53465,2.62522,6.1358749999999995,3.56675,2.45532,0.8891683333333332,2.372305,2.93726,6.969821388888889,2.3409733333333334,1.35791,2.3409733333333334,0.42411249999999995,1.187838,3.517145,3.780395,2.080885,3.685595,3.912802,0.615897,0.615897,0.615897,8.759905,1.6163440000000002,0.7978181818181818,2.639265,40.999371658008656,1.8163355555555554,0.6705055555555556,2.6886225,0.6705055555555556,3.699645,2.68726,2.52275,2.7643966666666664,5.64775,4.330265,4.29542,2.36401,0.9070057142857142,4.322735,2.9219933333333334,5.0318,1.0056885714285715,2.62885,2.62885,3.86943,3.30018,4.18905,5.23541,3.29696,3.87969,5.34965,1.7633299999999998,1.1841675,5.44095,5.68415,3.99709,0.681703,4.461275,4.1815549999999995,0.98328,4.60666,2.82727,4.210935,4.111175,1.8785464646464647,1.8785464646464647,4.084835,3.45053,0.923831111111111,2.969995,3.3775,3.333495,3.9531,4.61439,0.403,0.3106188235294118,0.3106188235294118,0.3106188235294118,0.7136188235294119,0.70271,0.684905,0.3106188235294118,0.3106188235294118,7.29284,0.3106188235294118,0.7136188235294119,3.55197,1.2901425,4.774545,1.1605666666666667,0.6187384615384615,0.98328,2.70178,2.777925,3.924505,3.02066,0.3106188235294118,0.3106188235294118,4.44651,3.69312,4.35197,2.592205,3.96706,1.545414,3.77155,0.684905,0.684905,4.911975,3.11267,2.73997,2.855895,4.344444,0.909844,0.7707692307692308,10.604800000000001,1.2853,5.1306,4.513695,5.51845,2.1608799999999997,0.3913969565217391,0.89311625,3.1260866666666662,3.083535,3.15594,4.5415,1.559492,6.2901,3.913425,5.288305,4.14262,3.10899,2.7871133333333336,5.80952,2.80138,4.843935,4.229725,4.278316666666667,5.74785,0.541856,4.158945,3.1930133333333335,2.115883333333333,0.6659388888888889,4.38317,5.60288,2.729625,2.51446,2.15999,5.20205,2.724475,2.998785,0.984936,0.47380846153846157,4.00965,0.36790933333333337,0.7686345454545456,3.983795,2.958895,4.365295,2.7059,4.40446,4.403475,6.056288666666667,3.95067,3.39161,4.36264,1.523035,4.8427549999999995,1.96789,4.27935,2.62155,5.8961033333333335,2.76052,0.959236,4.64875,7.0759075000000005,6.55220875,3.2742400000000003,0.8105475000000001,2.773263333333333,4.62676,4.140265,4.60469,4.475695,4.24157,4.59216,2.713145,4.083525,1.82441,2.36275,1.44278,4.040475,7.099765,4.17244,3.623445,6.18875,2.518335,4.605335,2.45892,2.9318146666666665,3.24554,3.829015,3.61886,3.661645,3.393925,5.18305,5.79145,4.90719,4.457091,5.16085,4.470845,2.843355,5.53325,7.965294999999999,0.9173800000000001,3.973555,5.11925,5.1485,4.453005,4.446655,2.31069,8.598375,2.4840666666666666,3.27611,5.39585,3.72017,4.22914,2.05596,1.69839,2.9878933333333335,2.2754066666666666,2.01409,3.00907,4.172105,4.720675,4.327405,3.509925,4.981546666666667,3.26824,3.165395,3.8942825,4.067065,2.853575,5.791572666666667,4.4475,4.06321,3.46461,7.71712,3.87056,3.70878,4.587015,4.764955,3.501215,7.79339,1.3330766666666667,2.227175,4.156345,2.6251666666666664,2.6251666666666664,1.994425,7.399875,0.9266933333333333,3.119805,0.89755375,2.04725,4.35315,3.619975,3.296235,3.84192,2.9594666666666662,3.559665,4.231975,3.758565,4.6136,3.22008,2.919146666666667,4.687675,5.0368233333333325,4.195295,4.75472,1.489088,1.652628,2.7278800000000003,5.0367,2.418935,1.7153333333333334,1.92848,4.71566,5.07175,3.102775,2.697005,0.49338222222222217,2.254215,8.209875,3.10374,1.4892866666666666,0.8724375,1.2438533333333333,2.0314833333333335,2.0534725,0.8335283333333333,1.9935766666666668,4.2992675,4.062965,5.3407,2.39786,2.19644,7.277810000000001,2.9426,2.226821666666667,2.226821666666667,2.226821666666667,6.673656666666666,2.2769566666666665,3.49541,2.64905,0.497836,1.135994,2.0256125,5.7860875,0.4648922222222222,3.73793,3.867305,5.76,3.019852222222222,0.4648922222222222,3.019852222222222,0.80649875,1.22525,5.97085,4.200005,7.2068449999999995,4.52777,4.89683,4.043225,4.204445,5.30785,4.647595,5.80425,3.67276,3.329475,4.954605,4.50802,4.226495,4.42059,5.26895,1.4433049999999998,2.6930099999999997,1.16330125,2.205565,3.151058472222222,1.5062484722222222,6.6447650000000005,5.571886666666666,2.918603333333333,4.841115,2.81166,4.98414,2.749245,4.289025,4.531685,9.613024166666667,5.69165,4.5729,2.210015,2.987135,2.16764,0.614665,2.2176724444444442,5.35795,4.8389,4.883725,4.742575,0.6816,2.073555,1.46957,4.55226,0.7821076923076924,7.41962,2.14017,1.154915,1.154915,3.8545579999999995,2.0320799999999997,3.830633333333333,2.557785,4.65527,3.83842,3.83842,5.12435,6.0693649999999995,2.7545966666666666,2.7454933333333336,3.4046333333333334,4.584945,1.890962,2.9622100000000002,5.34055,5.8327,4.70053,4.30288,3.938108333333333,4.595395,3.540990833333333,3.3303833333333333,2.2725075,4.350055,5.16395,3.12187875,5.3043,5.74575,2.071753333333333,2.8453666666666666,6.3496,6.87315,1.252688,2.639675,2.2446575,3.01736,2.30212,2.552575,2.6569875,1.0426944444444444,1.9848875,2.5742,2.22414,2.5731450000000002,2.5731450000000002,3.0644465,2.6963,2.1088353846153844,2.588775,2.4290575,1.932836,1.5431179999999998,5.0236325,14.883167499999999,2.9489699999999996,3.7439666666666667,1.7705899999999999,1.7705899999999999,1.613685,1.613685,3.0375933333333336,3.7536666666666663,2.961396666666667,1.815355,1.815355,3.8252666666666664,3.0317366666666667,1.1114933333333334,1.5010285714285714,3.16662,2.8955,3.7821,2.5850911904761906,3.1317633333333332,3.2304666666666666,0.697521,2.49212,3.442686666666667,7.404473333333334,5.2048,3.93186,4.45361,3.604265,4.972815,4.745815,2.93651,4.506195,1.2906,3.2272533333333335,5.89455,4.90603,2.770545,1.3178283333333334,2.945205,2.879583333333333,3.038653333333333,1.5333783333333333,0.7261285714285715,3.31213,4.917883333333333,4.908255,4.441005,4.867425,3.0873166666666667,2.02939,3.202340833333333,2.5944266666666667,3.4417666666666666,3.0897433333333333,3.2764966666666666,2.5277333333333334,3.697433333333333,3.686833333333333,2.948776666666667,5.31455,5.2426,5.214365,5.214365,3.515095,4.272755,4.06661,3.81889,2.836535,4.93416,3.38223,3.2259733333333336,5.7964,0.8525583333333334,4.84511,5.11865,2.50126,4.614305,3.2925166666666663,1.6410583333333333,1.3920414285714284,2.3129433333333336,0.911427,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.22304214285714288,0.5462157142857144,0.5462157142857144,1.18027,0.9538525,1.6931718939393938,1.0255957142857142,1.0255957142857142,1.2156518939393939,0.47751999999999994,0.34203666666666666,1.253695,1.541925,3.3221233333333333,2.4061,7.267035000000001,3.3234766666666666,4.05146,3.5735583333333336,4.010248285714286,1.4568883333333333,4.600645,3.847715,4.08534,2.96497,1.5027279999999998,4.165567692307692,3.64965,5.06855,4.29443,3.016055,3.90483,4.26201,4.69836,1.2643520000000001,4.23226,4.666685,3.25347,2.3824333333333336,3.38449,2.45841,3.218175,3.649125,3.2615866666666666,5.05955,8.88943,3.219055,4.80601,4.332935,4.365311666666667,2.68177,3.423275,0.8933214285714286,4.03543,3.51029,1.8734559999999998,1.112935,2.74811,1.1460316666666668,0.535362,3.6107666666666667,4.18979,5.228483333333333,3.4656000000000002,2.4074625,2.485955,5.0834,4.020766666666667,4.436365,2.579625,2.2926800000000003,3.90218,4.43492,4.238685,5.32035,4.954185,3.671635,4.89088,3.1598166666666665,4.83267,2.1080341666666667,4.573945,5.22175,3.25583,3.961885,2.52708,3.780035,4.996865,4.597455,5.56765,5.0359,5.1271,2.598403333333333,5.2236,5.0687,4.503965,2.53955,0.9147275,4.065015,4.658145,4.25836,4.536185,1.89803,4.08873,2.27751,5.1388,4.371215,5.3587,2.25939,4.36446,4.405195,4.59214,2.819763333333333,4.22767,4.937725,4.696245,4.022195,2.53955,2.36523,2.97473,4.03427,3.94008,4.191825,3.55556,4.97942,2.213135,6.46887,4.12826,3.81513,5.094788652777778,4.429205,5.00355,3.32076625,2.34883,2.34883,3.98467,3.677295,4.56812,2.2493175,3.3420575,1.070655,2.8487233333333335,3.16502,2.829193333333333,3.4570333333333334,4.9569,2.759926666666667,5.9369,2.967726666666667,3.97997,3.9433825000000002,2.054005,4.27993,1.9381666666666666,2.967886666666667,4.08893,0.952989,4.831225,5.05805,6.541625,4.186055,5.461,1.2765757142857144,4.61015,5.8989,8.93482,3.0797233333333334,3.4135000000000004,2.02812,0.8569229999999999,3.98213,1.0375528571428572,4.07847,4.69722,4.707535,3.231335,3.730385,1.4595142857142858,3.178575,3.689185,4.415055,4.262175,4.028305,4.61386,2.4119025,3.896505,5.50085,5.6478,4.635705,3.833065,0.3834911111111111,0.3834911111111111,0.3834911111111111,0.3834911111111111,5.63085,2.829765,5.97995,3.07387,5.4598,4.793775,4.94747,2.22657,2.5265033333333333,1.6199700000000001,5.3413,2.969446666666667,4.225485,3.959835,3.32669,2.110885,1.1626225,4.448905,2.44281,6.181633333333333,3.801665,6.20575,2.24042,1.5914599999999999,0.85317,3.198325,4.7528,3.1122,2.257265,8.137625,3.922255,3.487895,2.35366,0.450866,3.71725,2.786485,2.036325,1.93683,2.88629,2.83891,2.45579,3.435866666666667,2.75499,3.471495,4.261205,3.43104,4.108835,3.92394,5.276695,0.5856293333333333,4.49346,5.69045,4.99984,4.375055,3.1127800000000003,5.0309,4.404235,4.246305,5.447705,5.31115,4.074875,4.197175,3.6546649999999996,4.58556,2.88152,8.69176,5.04105,4.145415,4.66448,5.04885,4.882925,3.466185,1.068661111111111,5.5618075,3.41525,4.907255,1.33919,4.06928,4.889565,6.898173333333332,4.544515,3.377885,2.2461166666666665,3.903295,1.603526,1.2097575,4.005715,5.79625,2.0167333333333333,2.332543333333333,2.85118,3.55191,3.542,3.698565,5.1278,1.7531166666666669,4.172785,4.003059,3.49889,3.778166666666667,3.553865,3.008575,2.60416,1.6467875,2.4199466666666667,2.6385366666666665,4.380135,0.518455,2.6100533333333336,4.10785,2.91824,3.4136666666666664,4.6945,5.7891,4.302795,17.27923790909091,2.666193333333333,4.024566666666667,1.6551120000000001,0.8471509090909091,0.8471509090909091,0.8471509090909091,0.8471509090909091,0.8471509090909091,4.399775,5.01155,5.075,8.782445,2.740025,2.740025,4.609965,4.2754658333333335,1.2846225,2.087406666666667,4.217565,2.58525,2.28191,2.05946,2.98816,3.90267,2.2790975,3.503165,0.8302928571428572,2.9479100000000003,3.2543333333333333,2.8934200000000003,1.48086,3.314833333333333,2.1172033333333333,0.9123725,2.9258100000000002,2.7909,1.1079688888888888,2.490763333333333,3.0582,1.9606033333333333,4.552707333333333,2.136746666666667,3.2593333333333336,2.00075,2.7540366666666665,1.0425144444444445,2.7028433333333335,4.728497333333333,3.5850000000000004,1.09721,2.6548700000000003,1.243635,2.8026066666666662,3.13766,4.7573533333333335,3.104283333333333,2.5585533333333332,4.789237333333333,3.048526666666667,2.196925,2.676016666666667,2.555613333333333,1.83484,2.988,3.6611666666666665,3.392666666666667,2.9946533333333334,3.3459,2.711593333333333,2.454115,3.7422484999999996,3.7422484999999996,3.0141266666666664,2.12619,1.8546466666666666,2.67564,5.57224,2.925456666666667,2.005236666666667,1.64953,2.8156033333333332,4.593395,2.5608133333333334,1.094294,2.735510666666667,1.5272366666666668,2.5512266666666665,2.21291,2.65818,2.2368966666666665,3.064166666666667,1.26782,1.6697533333333334,1.4824566666666668,4.198486666666667,2.5536499999999998,4.085475,0.9484955555555555,4.074945,1.9358899999999999,2.428455,1.7282699999999998,1.497515,3.20621,24.53546569264069,7.036,2.6703333333333332,3.2636424999999996,2.3595533333333334,10.361084,2.9870966666666665,1.0015225,2.55208,2.44325,2.2152333333333334,2.4434066666666667,2.5918266666666665,2.630333333333333,0.8367190000000001,2.7681133333333334,2.55133,2.94366,2.7515666666666667,2.5388633333333335,2.02283,2.1526566666666667,2.9151666666666665,2.5332766666666666,2.18185,1.6288399999999998,5.5229083333333335,4.798325,2.4091825,2.69835,2.3179833333333333,2.3790666666666667,8.458934166666667,2.1641266666666668,5.1757,2.2252875,1.989935,7.80051,2.575626666666667,2.543876666666667,2.447825,1.8362200000000002,1.4446303846153847,3.3546,3.240576666666667,4.115005,1.739445,3.5465999999999998,1.7971325,1.7971325,3.69316,4.00542,2.8547202857142855,2.8547202857142855,5.969150000000001,3.467175,0.43379399999999996,10.207041846764346,1.2612433333333333,0.9051757142857142,3.1994058333333335,1.4681486324786324,1.299655,6.023503333333333,3.666235,0.8122845454545454,2.149833333333333,4.883213393939394,2.6906333333333334,4.43144,1.4745142857142857,6.06445,5.0843,4.776275,3.7445797499999998,1.934472,2.7688133333333336,2.8406300000000004,2.745013333333333,2.26816,4.75153,4.68211,4.51204,2.114175,4.56389,4.06596,2.81908,2.2497225,4.96207,2.5413133333333335,9.577183333333334,7.074282500000001,2.172355,2.64666,1.711616,4.707933333333333,4.707933333333333,3.490133333333333,3.14061,3.4329565,5.30585,9.5650725,4.309205,2.468175,5.3508,4.049995,5.4038,2.0168,0.86163,1.3430766666666667,4.63834,4.742715,3.9973333333333336,2.98081,3.7097333333333338,2.16107,3.372055,4.234035,3.31362,4.955015,3.14538,3.7421886666666673,3.5879666666666665,3.337733333333333,3.3863333333333334,6.27365,2.963575,5.7189,5.37375,3.301455,3.3883,3.3883,5.41033,11.919699166666668,3.5341,6.037577499999999,7.893866666666667,3.594245,2.464863333333333,4.02163,1.3850766666666667,3.717405,2.3881975,2.94393,3.066613333333333,3.5142,2.07748,2.41447,2.9103066666666666,2.6809833333333333,3.0679200000000004,2.979713333333333,3.891055,2.524716666666667,2.96637,3.68262,3.2482900000000003,2.47727,1.09280625,2.0677175,3.2504266666666664,2.5667233333333335,2.4499066666666667,2.5029133333333333,3.451233333333333,2.37751,2.32933,2.7183100000000002,2.788513333333333,2.937,2.8336666666666663,2.4393766666666665,3.0160366666666665,2.6612833333333334,3.4329940000000003,2.5910766666666665,2.411633333333333,2.291933333333333,2.2383833333333336,2.8125933333333335,3.3022733333333334,3.0861666666666667,2.754465,2.0230125,2.0230125,0.612005,1.599354,4.12748,3.3115,2.6197,2.07748,3.16827,1.36553,2.7568966666666666,0.6221873333333333,3.6294,3.198933333333333,3.256755,3.0527833333333336,2.23411,2.94373,3.10866,2.8308,3.3245400000000003,5.288303333333333,1.5429819999999999,2.25595,2.5206133333333334,1.73857,2.1760466666666667,2.913413333333333,2.76883,1.67045,2.6261,2.6125433333333334,2.6745533333333333,2.84375,2.953936666666667,3.0471166666666663,3.2159366666666664,1.37257,2.9272466666666666,2.411286666666667,3.7820666666666667,3.398766666666667,1.82832,1.7377933333333333,3.6062333333333334,2.822983333333333,3.5528999999999997,2.6145733333333334,2.2162466666666667,5.0190225,2.233493333333333,1.9720433333333334,1.577882,3.4257666666666666,5.788786666666667,3.462733333333333,3.4372000000000003,2.9788366666666666,3.3139066666666666,4.816289333333333,1.6002759999999998,1.2174555555555555,2.7267833333333336,1.9645058333333334,4.450165,3.05011,3.295166666666667,2.929906666666667,3.257843333333333,1.87544,3.24891,2.424615,1.598634,2.8510933333333335,3.457595,3.9477374999999997,4.01433,3.984645,1.7232,2.5356,3.64476,2.7501,2.3261066666666665,3.1951666666666667,4.0752,3.9360999999999997,1.403415,5.761721,3.24476125,1.573885,3.63544,3.419145,4.473055,3.93766,1.9331980000000002,1.9331980000000002,3.3526666666666665,2.9528533333333336,3.4888,5.2602,4.574095,4.149046666666667,1.29763,2.7922933333333333,2.5789466666666665,4.363415,3.00784,4.393565333333333,2.76775,2.353963333333333,2.4701066666666667,3.611145,3.706405,1.68922,3.1207266666666666,3.17025,2.344385,4.65355,1.3142133333333332,3.38348,4.630215,2.697165,3.575935,4.19397,1.6465225,1.5948133333333334,2.39862,1.0233133333333333,2.0242219047619048,2.1523275,0.45679785714285714,4.41891,2.229245,4.692465,4.17181,3.01962,4.41123,3.1915833333333334,3.12905,3.567833333333333,2.5181299999999998,3.2705966666666666,2.8991733333333336,3.1978066666666667,2.168886666666667,0.6703376923076922,2.2908933333333334,0.5855357142857143,1.9103666666666665,2.4909966666666667,3.436733333333333,2.9772433333333335,1.4648666666666665,1.3472075,3.705345,4.8353,3.563125,3.5445975,3.92065,1.2623,4.00788,7.764311111111111,3.692315,5.7607725,1.479655,3.814645,1.90586,3.99982,3.93261,1.82349,3.851,3.0196,3.774345,3.8938,2.2932175,4.132465,7.401750000000001,5.2991,3.274495,3.14771,1.8027675,1.9159875,3.756135,3.362195,3.19833,3.439835,3.67794,3.518735,1.65933,3.189135,3.1031,2.063975,3.8723374999999995,0.749755,3.438105,1.7020175,4.3552,4.615726666666666,3.54825,2.85532,3.798855,3.487015,1.8280625,2.3902275,3.814033333333333,2.47698,5.773605,4.00876,4.39702,2.25868,3.17548,4.337575,4.72203,2.827992,2.827992,5.799056333333333,3.6885179999999997,2.59814,2.93041,2.0970133333333334,2.726615,3.32605,3.8395841666666666,2.5149805,3.384055,0.990428,3.770135,2.658865,4.0243,2.67189,1.472115,1.262245,2.720485,5.696172,5.5575075,3.64152,1.3560825,3.908085,3.74601,0.8024066666666667,3.037255,1.029354,5.8195675,1.3331950000000001,4.111045,2.0347225,1.4648666666666665,3.08917,2.76818,4.329755,7.088315,4.100465,4.380365,2.541775,3.0278,4.632895,3.7124,4.92045,4.47598,1.0768275,1.69607075,1.10654875,2.308075,2.34643,4.629995,1.10654875,4.65796,2.283025,1.5722725,1.5722725,2.063975,3.758015,4.42178,4.07879,1.45909,1.45909,0.9957199999999999,2.93233,1.9883975,5.8880375,4.264335,3.68071,3.02258,0.9821428571428571,3.52874,2.854955,4.312985,3.57174,3.8307475,3.8307475,3.45219,4.00192,1.8620575,2.258435,0.9401044444444445,1.7149400000000001,3.4531,2.42606,3.415535,3.415535,2.71934,4.604075,4.32413,2.97814,3.49961,4.291405,2.57558,4.5240325,2.74267,3.70795,8.751545,4.930825,2.8447,3.184195,3.03788,4.778965,2.9834060000000004,7.394444999999999,4.367016,4.21764,3.374945,3.885715,3.466605,4.6902,4.696715,2.17057,3.8591,5.708065,2.647005,2.1587639999999997,2.888755,3.371475,3.18417,4.748025,2.1608066666666668,1.6513366666666667,2.34738,2.7510675,2.33079,6.849090666666667,1.391445,4.664195833333333,4.664195833333333,3.190695,3.8072308333333336,2.90964,2.4299233333333334,5.04303,3.8939790000000003,2.007704,4.02857,3.96767,3.5242458333333335,3.06394,2.78974,6.3205849999999995,3.378455,4.622355,2.581255,4.66613,4.015925,2.995505,2.9528533333333336,2.03042,2.62153,4.01297,2.9371,3.3400833333333333,3.104765,6.30779,2.47981,1.90339,3.4108099999999997,2.42435,3.864275,2.794895,0.8024066666666667,2.97768,4.28883,3.899375,5.9842325,3.15848,2.95591,2.7191466666666666,2.7191466666666666,3.6470883333333335,4.31656,3.795355,2.24251,6.0828299999999995,2.130695,4.416925,3.523735,7.96165,2.813893333333333,1.39008,3.397135,4.43535,0.70032125,4.06005,3.2454,2.707545,3.450805,4.716765,2.2309633333333334,2.46044,8.94323,3.349525,2.649415,1.3331950000000001,3.649205,2.691835,2.1078525,3.992555,5.538625,1.675125,1.1837183333333334,0.9949366666666667,4.02917,3.77239,3.57304,3.5832224999999998,3.5832224999999998,1.65933,2.352195,2.841328611111111,0.8226011111111111,2.59531,1.0877325,1.7232,2.80307,2.87989,2.404295,2.79079,2.5506875,4.50572,3.778695,2.72538,3.347595,2.46858,4.12735,6.3739550000000005,4.0172,0.898575,2.688291,8.68538,4.636285,4.247235,1.0550375,4.7072400000000005,1.3335350000000001,2.8195924999999997,2.8195924999999997,3.7425,7.88672,0.7625066666666667,4.94404,4.77754,2.1852033333333334,4.027429166666667,4.164675,2.310025,10.026606000000001,1.800695,2.3434633333333332,3.28052,1.69264,4.38433225,3.10514,3.529135,3.1152526666666667,2.858205,3.82718,1.0969566666666666,7.21433,3.990875,4.19747,4.227785,1.90768,2.85532,3.8113058333333334,3.68629,0.6318569230769231,4.246485,4.339485,4.840645,2.1293675,1.3216160000000001,4.075935,4.17299,7.63807,0.7853230769230769,0.763555,0.763555,1.7464333333333333,1.4537466666666665,1.375542,1.8179466666666666,4.535325,1.29281,0.85992,4.169585,3.60594,1.455295,3.19145,4.245995,3.490275,0.69373,1.924535,9.21904,3.5547733333333333,3.604695,2.693925,1.512055,2.4304333333333332,2.74817,4.58327,4.2961,3.984975,0.8832257142857143,1.502556,0.8964719999999999,4.659375,4.331435,4.11303,0.8226011111111111,1.768432,3.860745,2.260533214285714,4.4776175,1.0461075,4.619415,0.7393133333333334,0.7393133333333334,0.7393133333333334,9.442435,4.18892,1.0877325,3.925055,4.653645,2.660135,3.055195,3.7346500000000002,2.664105,1.8645255555555553,1.95753,0.69373,1.4961366666666667,0.5783788888888889,0.8317183333333333,1.2606183333333334,3.944805,3.70742,2.078075,7.2595616666666665,4.9242799999999995,0.6717,4.56977,5.407439999999999,3.26029,4.418995,7.530605333333334,3.552308690476191,4.9242799999999995,4.598046583333334,2.2755266666666665,4.41535,3.743885,6.768165,3.446125,0.450866,1.487064,3.721845,1.7639859999999998,1.1837183333333334,4.26645,2.2868133333333334,1.82742,3.28923,1.686102,4.29598,4.33604,3.90743,4.80046,6.78776,2.921995,3.855385,1.029354,2.31708,3.696745,3.30867,2.007704,3.991815,2.49185,4.66314,2.87901,2.30671,3.264815,1.7566359999999999,3.31116,0.8226011111111111,2.3009932500000003,0.9949366666666667,2.05792,3.426925,1.391445,1.2606183333333334,2.2250275,2.761745,7.54038,0.8832257142857143,1.0550375,1.307778,3.63425,3.795115,1.307778,4.023685,2.31708,0.70032125,0.8226011111111111,1.7464333333333333,1.029354,0.45679785714285714,1.6390920000000002,4.222642666666666,2.1852033333333334,1.333295,3.04941,1.403415,1.800695,2.886705,1.95753,4.47862,2.886705,0.8024066666666667,2.761345,2.513675,0.10969181818181818,0.10969181818181818,0.10969181818181818,0.10969181818181818,0.10969181818181818,3.5949333333333335,2.7297,2.7970133333333336,3.011816666666667,5.6042,3.861765,1.7282699999999998,3.59708,3.70385,2.202525,4.907335,2.805535,2.4466,2.53416,2.79666,4.81557,8.16409,2.504025,2.1198366666666666,3.2205507142857144,1.0679857142857143,1.402755,2.456376666666667,1.9572666666666667,1.414625,2.80442,2.2786399999999998,2.82973,2.8357500000000004,2.60048,4.028995,3.56626,2.713346666666667,1.3238759999999998,3.27784,3.803575,1.62578,1.308616,1.308616,1.308616,3.70291,2.823093333333333,1.0681233333333333,2.2524533333333334,1.22959,4.333015,1.6309033333333334,6.685145,3.6209350000000002,2.96423,3.178922,3.178922,5.360566666666667,3.40353,4.11067,5.363,2.1305275,3.26066 +GSM1946780,0.0,1.9522125,1.9522125,1.57677,4.257135,6.13165,2.3585644736842104,1.6201966666666667,7.398036078431373,4.516905,3.1548533333333335,2.63707,2.99386,3.539455,4.306435,1.8286719999999999,1.3830719999999999,4.924415,2.4941566666666666,2.260725,4.592465,5.291731666666666,3.695445,2.722705,1.746958,3.97934,4.574405,4.242825,0.6123833333333334,1.6957833333333334,1.9279033333333335,2.033405,1.7249825,1.0890914285714286,0.6982149999999999,3.0585939285714288,1.5501725,1.8094775,1.21343,2.046925,1.146155,1.1119725,1.12189,1.490524,0.9427260000000001,0.971008,0.80183,1.1616128571428572,1.6607040000000002,1.8083200000000001,1.498366,1.9992560000000001,1.6907340000000002,18.293203916666666,0.378094,0.87192,1.111446,1.85958,1.43598,1.7216799999999999,1.0497914285714285,1.0497914285714285,1.0497914285714285,1.1529283333333333,1.006616,4.70817125,1.231935,2.245335,2.0330975,2.47914,0.9666460000000001,2.287805,2.28561,1.9397075,1.392785,1.92548,1.5927775,1.6567225,2.5197533333333335,3.58984,4.774205,5.05675,1.58627,4.552385,4.56411,4.47734,4.04502,1.068345,7.21374,0.603478125,0.603478125,2.17006,1.1077171428571428,16.047475,4.61556,5.3191,5.75535,4.033475,4.160195,5.17685,0.4672483333333333,2.24444625,1.7413425,2.3346825,4.46069,3.790095,1.4940625,3.1707733333333334,3.6981333333333333,3.18336,3.6559000000000004,3.628855,4.85811,2.886421,4.49394,2.8692966666666666,0.7243127272727272,1.633912,2.560375,4.816165,4.440165,0.538875,3.58844,3.64402,0.82959875,4.19844,1.6911166233766235,2.481255,2.681175,2.01812,3.879505,5.81475,3.357495,2.6747866666666664,3.3328399999999996,3.037933333333333,4.3283,2.9840133333333334,5.57675,3.439985,4.34993,3.10282,2.661865,3.55374,2.445135,6.802741666666667,3.473315,3.33573,5.80165,3.226815,4.80594,0.7785266666666666,9.704162619047619,3.499155,1.9289933333333333,1.9133166666666668,3.268663333333333,2.41946,4.822345,5.55165,2.0854775,5.152583333333332,2.80682,4.52528,2.0854775,2.62773,4.314705,5.141375833333333,3.81799,8.824676666666667,3.854975,4.98493,3.095235,5.0057,4.44236,1.76795,7.99779,3.973005,3.801755,3.782155,3.578125,3.342835,2.26427,5.98013,2.301545,4.03055,3.9104,5.07105,4.86176,3.718575,1.4618116666666667,2.869215,2.955785,1.767555,1.767555,6.094251333333333,3.052975,1.915,4.35577,4.51249,2.820615,1.4956516666666666,0.8372655555555555,6.9577,2.662075,6.8377,3.288775,4.070395,3.788295,2.50696,4.11618,3.57329,3.949195,4.20181,5.65225,2.84453,3.5305,9.088816666666666,4.48865,3.4255999999999998,3.011503333333333,2.6841566666666665,3.945733333333333,4.421618333333333,1.970355,2.5698766666666666,2.001186666666667,1.7432379999999998,1.7660966666666666,2.553856666666667,1.7987425,1.92688,2.878833333333333,2.71301,2.3846866666666666,2.6915766666666667,4.56411,3.602865,3.28883,3.372865,4.1843,1.4387733333333335,2.77001,2.8370300000000004,2.0572399999999997,2.5823300000000002,2.1845,3.360633333333333,1.7543399999999998,1.4823033333333333,2.8765066666666663,0.707398,1.6372799999999998,0.5254522222222222,0.5254522222222222,1.5554366666666668,2.4462333333333333,2.1623066666666664,1.3948733333333332,1.5052,0.3377161538461539,2.6934566666666666,0.707398,1.3578733333333333,0.2005935135135135,1.5882166666666666,2.00334,3.5021,2.0685233333333333,2.028216666666667,2.51491,2.23358,2.316073333333333,2.5116733333333334,2.345003333333333,2.225233333333333,2.70023,1.9121133333333333,2.81021,4.160405,0.7013349999999999,1.8418166666666667,2.5486066666666667,1.9258633333333333,3.4825333333333335,1.508762,2.5563766666666665,2.2019166666666665,4.1822566666666665,2.049123333333333,7.2453385714285705,1.5942285714285713,2.8975066666666667,2.1421125,2.00712,3.26788,1.9394775,1.91433,3.997475,2.67891,2.1272675,3.59945,4.142055,4.3837,3.73644,2.38841,3.368815,4.411814,3.795875,3.9264,4.25185,4.306575,2.998025,4.327575,3.505535,0.8970025,4.88931,1.2483600000000001,4.73173,3.724055,5.76046,3.661295,4.277695,0.9744175,2.36267,3.457455,4.01782,0.8196728571428571,1.1423555982905982,2.025049523809524,3.354028571428571,5.3198775000000005,5.547739,2.1969075,3.229445,5.2509,0.34519142857142854,3.43316,2.249895,0.979205,4.582205,2.095255,11.90947,1.2757125,1.3510775,2.205763333333333,2.539485,2.183485657894737,5.236265657894736,0.36561315789473686,1.58496,2.9604466666666664,1.0714625,3.7983666666666664,1.0524157142857142,5.0452,3.86299,2.193306666666667,6.02175,5.46795,2.7555,1.1187542857142856,4.258993333333334,5.0191,4.303605,0.8552209090909091,7.721053333333334,2.7334033333333334,4.377405,2.66482,2.359566666666667,4.436045,2.3096533333333333,2.53066,2.1658133333333334,2.4446499999999998,3.16121,2.98179,0.356146875,3.96907,3.598435,3.75024,3.906285,4.46162,6.058794000000001,3.97385,1.6974125,5.49185,4.41922,4.372435,4.065105,1.0599366666666665,2.6593533333333332,3.094666666666667,2.579353333333333,15.668825,3.1138,3.78363,4.189405,5.62095,2.746605,5.140444166666667,1.65297,0.8071433333333333,2.671125,3.29046,3.653065,3.667105,6.267479999999999,2.9159666666666664,2.50395,2.19558,3.348966666666667,4.639995,2.3218325,0.3611486011904762,3.0561660869565217,1.9361125,1.1692825,0.5114816446687371,0.661814688146998,0.3611486011904762,0.3611486011904762,0.3611486011904762,1.125885,1.3487975,0.8132275,1.5002275,4.2964375,0.21889058823529411,11.189622104978357,3.5152,2.8453933333333334,4.15899,4.10991,3.96112,2.32621,4.69591,3.9652190000000003,4.169375,3.99491,0.7111376923076923,3.30166,4.282171794871795,0.5393292857142857,3.496335,2.8752933333333335,4.43973,0.5538663636363637,1.74298,4.44057,3.45358,1.8610225,1.7829899999999999,1.6355266666666666,3.1565933333333334,4.03649,3.06595,2.7855266666666663,5.42495,5.56175,4.83494,3.4095666666666666,3.146721,6.444333333333333,3.6872333333333334,4.952175,0.41453904761904764,3.0604133333333334,3.8778066666666664,2.0558799999999997,2.552355,2.852978333333333,5.592526666666666,0.5751041666666666,2.7484,4.26185,4.380255,1.0027757142857143,4.627555,2.85194,4.893305,3.0805133333333337,4.223945,3.525055,4.281125,1.0662933333333333,3.39298,2.72992,4.726995,4.02474,4.441655,5.65605,4.569055,2.58667,5.39693,2.163343333333333,3.09064,3.22557,2.642726666666667,2.611873333333333,2.2912500000000002,1.736926,1.6083800000000001,2.17541,0.8274471428571429,1.5372333333333332,2.39547,2.0456566666666665,3.00576,3.250523333333333,2.7035666666666667,0.9096277777777778,4.941645,3.3589,5.37829625,2.7044795833333333,3.0940666666666665,2.9215199999999997,1.7463,1.7463,2.431404805194805,2.431404805194805,3.258195162337662,0.5822385714285714,1.8038966666666667,2.14885,3.6865666666666663,2.1922361904761907,2.1922361904761907,2.1922361904761907,7.387330297619048,4.387421428571429,0.9621545454545455,2.8116,5.003739166666667,2.33094,4.80081,3.068195,2.355375,4.30163,2.99689,3.1048299999999998,1.23537625,1.88931,2.978736666666667,2.470493333333333,2.60543,5.6014,3.9941999999999998,3.8495666666666666,5.0452900000000005,1.9679333333333335,2.653913333333333,3.1575066666666665,1.0158744444444445,2.2036233333333333,4.591442,7.9386,1.54205,2.783155,5.0195,1.795356,1.78354,1.78354,0.9578275,4.90608,7.5356700000000005,4.08781,4.9165659999999995,4.37093,1.8063833333333335,3.735005,3.02175,4.7321,5.054596666666667,0.36280368421052633,2.78447,2.461215,3.975105,3.817625,1.736682,1.8630025,2.5422,4.13272,3.913135,2.9471,2.43013,1.35353,6.88509,5.4253,4.25773,3.41315,5.7426,4.467505,4.42083,3.495925,3.7882100000000003,2.037785,1.0601142857142858,2.80626,3.989995,3.859095,5.825995000000001,5.622529999999999,2.428725,1.6389033333333334,2.622176666666667,2.69054,3.028356666666667,0.7356,2.14637,3.725115,1.08791,4.980425,3.390005,5.9309425000000005,1.239084393939394,1.239084393939394,4.186025,3.685805,3.940645,5.4995,2.73626,2.2914966666666667,4.06548,3.27043,2.1470625,3.3521666666666667,2.4554533333333333,4.0847,3.3591225,3.610385,4.58746,1.0822155555555557,2.817455,4.328465,4.429445,3.16565,2.5495300000000003,1.83937,0.77747,0.77747,0.77747,0.77747,1.53829,3.606835,3.606835,1.8004733333333334,7.076078333333333,3.08652,3.653465,3.1053599999999997,2.65335,4.6946,4.313775,4.7987,5.191,1.8156525,4.10183,3.56954,2.557585,3.40846,3.447975,2.62092,4.19624,1.88023,4.615525,1.698345,3.365167083333333,2.94559,1.7382425,1.1567983333333334,2.81987,4.3624,1.2423899999999999,0.8289655555555555,3.476785,1.283175,4.790502,4.192825,1.3064814285714286,3.575765,0.7588633333333333,2.61123,2.7156933333333337,2.1808133333333335,2.61839,3.77384,2.896820833333333,4.66806,5.4602,4.367455,4.27081,2.2445775,1.2686142857142857,3.82251,5.07115,1.336095,1.336095,4.00352,0.29222266666666663,2.291446666666667,0.29222266666666663,0.29222266666666663,0.29222266666666663,0.29222266666666663,5.09505,2.65158,3.02303,3.81366,3.0587999999999997,4.4779,2.493046666666667,1.15881,1.15881,0.7858350000000001,0.7858350000000001,3.75626,1.84474,4.15849,1.8093980357142858,1.8093980357142858,5.12205,0.521985,2.6639,7.182475,4.909605,3.31088,3.84884,0.93201125,2.21749,2.051,4.419525,4.34212,4.17804,3.954065,1.274767142857143,2.715385,1.9632775,7.30742,1.77977,4.28604,4.654605,2.94795,3.822465,5.93481,7.848879999999999,4.090075,4.46689,3.67963,2.4659725,3.050325,2.35537,2.338625,1.897335,3.866605,3.23133,5.70721,6.23357,4.13001,1.3572499999999998,1.938485,3.696285,3.74917,2.12638,4.32225,3.220675,4.7167666666666666,1.8053800000000002,3.9840999999999998,1.6104733333333332,6.424259999999999,2.92921,2.4256599999999997,2.2575533333333335,2.29419,3.582466666666667,3.26671,3.295006666666667,2.7815133333333333,3.3228899999999997,2.03906,3.433425,3.119485,3.158055,0.3851195,2.949595,3.885,2.614975,5.51515,4.90789,4.55428,6.559735999999999,4.67598,2.0590466666666667,4.2948,5.0961,1.5870133333333334,4.692695,5.5636,4.922345,4.547355,3.20125,5.479,4.970465,3.84604,5.467640666666667,7.42568,4.008475,1.2231116666666666,1.44275,2.52989,1.808576,4.418795,3.99532,4.96946,2.4444733333333333,2.4711233333333333,2.6276033333333335,2.50868,2.2861,0.9655233333333333,0.5125576470588236,3.85428,3.9649,3.6775,4.055875,3.00801,3.3378333333333337,5.281416666666667,3.0080333333333336,0.5654899999999999,3.114965,5.4771,1.86449,1.6865480000000002,3.674275,3.186405,2.449733333333333,3.7428000000000003,3.993195,2.723786666666667,2.2761766666666667,2.3589733333333336,2.49363,2.854265,4.09425,5.030991666666667,6.204751833333333,1.275052,5.03645,3.2546737500000003,5.031815416666666,2.5371799999999998,3.019385,2.53773,1.90159,1.1957575,1.1957575,2.654646666666667,2.413656666666667,2.6924333333333332,4.88671,1.639364,2.236915,2.040515,0.462701875,3.58783,0.54491,0.948195,3.469145,3.99093,3.664215,1.6916775,4.29852,3.0875233333333334,0.7885357142857143,4.251455,3.9092828571428573,3.1629,2.49801,4.80516,0.27264275862068965,2.1004301666666665,3.27127,1.4821625,3.697295,6.6241,2.25661,1.4346966666666667,4.14202,3.829015,2.8295733333333337,2.8295733333333337,3.55606,3.48491,4.55478,5.558976666666667,5.01315,0.9605677777777779,2.7344833333333334,2.4211,4.50555,5.15045,5.29985,4.83551,4.304466666666666,3.8013,3.7632999999999996,3.5102333333333333,4.075066666666666,2.94951,2.9550300000000003,0.6208135714285714,2.3522775,2.39531,3.61123,3.0555766666666666,3.12264,0.7382508333333333,2.67531,3.8185320000000003,4.592045,5.7907,5.00205,1.86362,1.86362,0.833827,3.20819,4.6269,3.82631,4.294343571428572,3.059805,4.640945,0.5818309090909092,3.249945,3.82829,4.37624,3.892524166666667,0.8023114285714286,2.721275,3.88909,5.4968,3.83663,5.0404,2.77543,4.07788,1.47832,0.9989342857142857,2.621723333333333,5.23425,4.46474,3.12912,1.4420250000000001,3.941285,2.574525,2.46427,2.7150093333333336,3.0610999999999997,4.5499833333333335,3.0475966666666667,1.8150439999999999,3.4214,1.4626038095238096,2.891776666666667,2.4737733333333334,2.2464725,2.871593333333333,2.924746666666667,2.4180633333333335,2.6965033333333337,3.7058,3.0898333333333334,3.5400359999999997,2.2705066666666665,1.94777,4.076368333333333,3.1090166666666668,2.421316666666667,3.5400359999999997,2.014133333333333,0.7919736363636364,2.44329,1.000391111111111,2.2255825,1.507605,0.9252545454545454,1.7810125,1.782805,2.5627969999999998,2.6498,4.61769,1.528655,4.800115,3.110253333333333,1.589404,2.3140366666666665,2.59549,1.66178,2.777423333333333,2.5273166666666667,2.4944990909090907,1.92268,1.8153860000000002,3.561666666666667,2.29997,2.8954661111111113,3.140496666666667,3.0586599999999997,3.7120333333333337,2.1182433333333335,4.1123,3.4636333333333336,3.7324333333333333,2.8518399999999997,3.5229,3.687666666666667,1.7911533333333332,9.933710000000001,4.244895,4.308805,3.21948,2.822515,2.10752,3.892285,1.6905819999999998,4.07257,4.36295,1.383446,2.55597,1.173525,2.36574,1.7110833333333335,2.4199966666666666,5.24935,3.184703333333333,3.66097,4.926245,0.63682125,1.408662,0.984904,3.60288,9.949755,3.2923500000000003,6.695,2.0339875,5.07855,4.122345,2.475105,5.0166,0.30449588235294117,0.83988,4.433875,4.53275,7.2579,1.9835,4.37565,5.6127,4.502235,4.662515,3.365335,4.303815,3.493665,5.599921666666667,3.7694,3.398525,3.02842,1.89428,2.0240466666666665,1.3856255,2.4336066666666665,4.170535,4.675105,1.563232,9.01216,2.2412466666666666,2.9431108333333333,1.058136,1.058136,7.245055416666667,3.022715,2.240705,2.2175975,2.6877333333333335,2.1480166666666665,0.9430333333333333,3.4516299999999998,2.5765166666666666,0.600152857142857,1.7899900000000002,3.3432760000000004,3.3432760000000004,1.2546899999999999,2.5375900000000002,2.2333966666666667,2.7318249999999997,1.4079425,1.8333633333333335,4.596842666666666,2.6319066666666666,2.6401,1.3105775,1.3105775,3.89343,5.6472,4.47384,2.914735,3.7003,5.96783,2.77721,2.9717233333333333,3.00599,4.08501,1.1229733333333334,3.2770833333333336,2.630525,4.06282,2.2888966666666666,4.62962,3.606175,4.21687,3.5502,5.5719270000000005,0.9690388888888888,1.9364225,1.956955,3.63164,4.383705,3.636525,3.804075,3.572195,2.43108,1.664245,4.254695,3.32268,3.50507,2.5290066666666666,0.85409,3.367295,4.168395,4.8591,1.2898,2.8049666666666666,2.5439633333333336,1.8012866666666667,1.8427804901960785,1.8427804901960785,1.2714516666666666,2.03134,1.1141385714285714,1.391702,4.333215,4.442085,0.4942476190476191,3.325925,3.4361333333333337,3.862165,5.37325,0.415703,10.163795,5.45095,2.69768,3.9813,4.45311,5.292797142857143,4.89149,6.66042,0.6944981818181818,2.6636233333333332,5.4184,2.7598833333333332,1.7580625,1.975874,4.46257,5.11154125,2.421825357142857,3.5487,3.15734,1.8837225,4.436525,10.4048,8.153905416666667,3.8523666666666667,4.746765,3.080065,2.869855,3.963855,1.8857,2.9410933333333333,3.60388,4.517885,4.855215,5.05594,6.863133333333334,2.23931,4.58541,4.625035,4.86223,4.694615,7.212521666666667,4.459245,6.01085,3.536265,2.87334,2.90182,5.9304,3.705005,5.0078,2.20795,3.1823266666666665,3.26415,5.79525,4.04737,3.67368,1.50057,0.92689875,2.3534175,0.5557486666666667,4.10341,3.57984,3.37787,2.809,2.09795,2.912875,2.564225,3.0280579999999997,1.78145,3.10870125,2.8217,2.27019,2.55575,3.717352,1.2735116666666666,2.9111441666666664,5.0007,3.7226,1.0666875,2.7834,3.7473191666666668,3.626677,1.557625,5.62745,5.1843,2.151893333333333,3.010033333333333,30.322285968800806,3.21018,1.7194666666666667,3.952833333333333,1.64122,2.58622,2.9659999999999997,3.4159,1.937625,2.714725,2.01773,4.0982525,3.1862,2.4460625,1.5642775,2.22212,2.78475,0.3834872727272727,1.24668,2.7464033333333333,1.7184599999999999,3.361285,1.557625,2.05476,25.0879365,5.0577,3.86518,3.40667,2.48394,2.525675,2.560303333333333,2.1929375,3.56933,5.049568000000001,5.29915,1.586208,1.7446819999999998,2.17001,2.2880416666666665,3.743314166666667,5.26285,4.949675,4.57848,0.1746314893617021,5.0945,4.9010175,3.809525,8.80657,1.0488575,1.0488575,2.9816266666666666,2.96358,5.53855,1.9099755555555555,1.0160722222222223,4.59733,1.8716625,4.32535,3.6304,3.321205,3.961655,3.97863,4.647255,2.654165,0.7304277777777778,3.18377,2.252219166666667,4.24285,7.56125,4.249315,1.8055899999999998,1.8055899999999998,6.7162125,4.63609,4.06915,5.1188,2.1723733333333333,5.113266666666667,1.5354,1.4434766666666665,2.9660533333333334,2.30275,2.864365,2.6922633333333335,3.82087,4.413209999999999,3.772915,5.2348,2.230735,2.6915,1.93819,2.675975,2.297135,2.0224425,2.07037,4.4855025,1.8368175,3.3548400000000003,2.4034666666666666,2.8388166666666668,2.5711066666666667,2.1063966666666665,1.4241057142857143,0.96173,2.4623,3.861133333333333,0.718186,4.561285,1.6870275,5.664069166666667,1.898905,1.534455,1.4707925,1.5057733333333332,5.457088333333333,1.8357780000000001,3.0887433333333334,3.507766666666667,1.16984625,1.81698,4.7537606666666665,3.1033233333333334,1.9296300000000002,3.5525,2.8925699999999996,2.6464266666666667,1.3311464285714285,0.269845,0.269845,0.269845,0.269845,0.269845,3.92374,2.66257,2.54815,3.420166666666667,1.4485599999999998,2.6753966666666664,2.99556,1.93585,3.46593,2.90893,1.72354,2.87081,3.209213333333333,2.1420175,1.9885525,3.824165,2.7374166666666664,3.8714,5.0629,2.61632,2.60688,2.6228700000000003,10.723574166666667,4.706655,4.5091,4.97016,4.21952,2.8359199999999998,5.2389,3.616875,4.320105,5.458838333333334,3.90087,3.11748,2.2716175,3.293395,5.079292571428572,3.475565,17.575120845238096,1.114255,4.23464,0.8492177777777778,1.24733625,2.8708,4.577925,4.250485,4.41763,1.5984616666666664,2.332585,4.259005,1.9756066666666667,4.411055,3.190676785714286,2.5664966666666666,0.64565,2.9430899999999998,4.699675,2.3530925,2.3727575,2.1226025,19.9716775,1.414418,1.3445375,2.4859566666666666,0.2815296153846154,1.7839025,2.7427333333333332,1.9414066666666667,2.8247633333333333,2.632025,7.4225775,1.9100575,2.5814,2.209315,2.175705,1.6226200000000002,3.2425333333333337,3.144105,3.527635,3.02013,2.018315,2.577026666666667,3.2119055555555556,4.979035,0.45350416666666665,3.4910666666666668,3.0023466666666665,3.09155,2.0161925,3.6287555000000005,3.44459,1.5320366666666667,2.313973333333333,2.2212333333333336,1.46039,1.7441866666666668,3.431925,3.27813,0.7538066666666667,3.35667,4.854225,4.226215,2.5146040000000003,2.5146040000000003,2.86229,4.38586,3.211965,3.38435,2.3095625,0.8271154545454545,4.4309,3.52821,6.177,3.812585,2.302358,2.302358,1.3287275,3.484485,4.895155,4.101735,4.23802,3.0295133333333335,2.23327,4.28714,3.18543,4.1512,2.7804333333333333,2.1515,4.016260666666667,2.9889433333333333,2.647483333333333,1.8855166666666667,3.45384,2.6855,1.4875533333333333,3.72718,3.296675,4.353075,3.5719666666666665,4.96825,4.320365,6.34670025,3.95142,2.07188,4.55557,2.68715,7.170954999999999,2.4825333333333335,1.234395,4.519445,3.551966666666667,4.878215,0.5869578571428571,0.8116891666666667,3.7147,3.56654,2.062304696969697,4.315235,2.941185,2.898635,8.580018,1.910448,1.243046,3.569325,2.65883,3.52303,4.635985,6.371206666666667,3.1208816666666666,2.1325333333333334,3.0264433333333334,1.8193166666666667,3.266496666666667,8.679324039408867,0.9924404761904762,1.0202325,4.56069,0.455768,1.6546525,2.111535,2.884225,3.07655,2.870675,4.68075,2.3462225,12.99848,5.2632125,2.531775,2.531775,4.07155,0.8636116666666668,4.866666666666667,3.64285,3.949115,6.046386666666667,3.465605,4.98633,1.3739433333333333,2.757045,2.69281,2.629205,2.987055,2.669435,3.197,3.502065,3.512285,3.09598,2.73362,2.550055,4.28019,4.379225,2.9690066666666666,3.2366566666666667,4.793025833333333,4.32426,18.00383511904762,11.649218452380953,3.195187142857143,0.6759974999999999,1.4585714285714286,4.43017,3.412345,3.149165384615385,2.3836,0.8465044444444445,0.6422941666666667,0.6739214285714287,2.0557775,1.58983,5.0149099999999995,3.18782,0.7015881818181818,3.376935,2.325045,1.66365,1.7600799999999999,6.231556666666666,1.541576,4.35021,2.896465,3.0011566666666667,2.162425,2.64327,2.577663333333333,0.7551163636363636,3.2518,3.0121866666666666,3.7162919999999997,2.9419299999999997,7.573845416666667,3.757765,3.49841,2.389595,3.47534,6.13974,2.0226125,2.4315325,2.3885875,1.6034925,2.6072,2.02634,2.494775,0.913784,1.4048175,1.017465,2.969,4.32096,6.0687,5.47815,3.1703,2.54471,2.742875,3.212763333333333,7.061821666666667,1.2002166666666667,0.340374375,3.02108,2.07625,1.461704,3.476432,1.33164,1.6524306666666666,3.618306666666667,2.8265206666666667,1.2322516666666667,1.9031933333333333,4.253008333333334,3.663145,4.471305,3.91156,1.9408025,4.895405,3.867325,0.7758076923076923,4.453635,3.77529,4.338346666666666,3.3080366666666667,2.38548,1.2664360000000001,1.0667775,3.53786,2.676575,3.27203,3.87089,2.83954,2.6999333333333335,3.18059,3.49008,4.535995,2.588915,2.817375,4.232585,5.75415,0.54841375,4.5229,1.8198575,3.46668,4.139466666666666,1.49786,3.162665,2.2231225,2.127885,2.50709,2.273921666666667,1.5436833333333333,4.42073,3.61348,1.2219242857142858,6.80463,1.14677,3.566215,1.6409966666666669,4.54626,3.935305,3.0698133333333337,3.11639,4.182915,8.31223,3.029655,3.548655,3.488795,3.53542,1.6513775,7.76339,3.556605,3.930195,1.940595,4.1304,2.924225,1.0259975,1.914124,4.04599,2.185345,4.03721,4.8928925,4.08451,4.588405,2.11173,5.1972,3.912175,3.3090166666666665,2.3855766666666667,1.441288,4.117655,6.10495,4.122895,4.51991,3.132095,2.1677325,3.80023,3.451385,1.1943576923076924,4.148115,4.7569275,3.864625,2.802685,3.52304,0.4455585714285714,0.4455585714285714,4.42339,3.994635,3.76544,2.29678,3.819385,6.0718,0.844674,3.71148,4.682735,4.553225,4.813105,4.99848,1.8901875,3.21929,2.1572925,4.480135,0.68191875,4.006725,4.211955,2.599775,2.8166966666666666,4.09089,2.44175,3.243385,60.00970913852814,3.251385,2.5940833333333333,1.76021,3.228975,3.866825,0.86333375,0.96613,1.9835225,1.9835225,1.270994,3.15863,2.23145,3.7411185,7.32411,2.89475,1.2057485714285714,1.3401083333333332,2.7078100000000003,4.06982,0.8751599999999999,2.074,1.27578,1.92357,4.171465,4.07233,3.38635,20.184384543290044,3.447905,3.910825,3.34458,2.1753466666666665,3.15748,3.2033,2.511825,5.4323,1.444454,4.10212,3.286658535714286,5.918946944444445,2.1978,2.73569,1.989435,4.466295,2.33475,2.1466775,2.098986666666667,3.4655950000000004,3.411295,3.284535,3.8854,4.148455,2.581675,2.738,2.937185,3.02523,2.97546,2.22754,2.0218425,3.44959,1.2246233333333334,3.676855,4.393565,2.66805,4.58815,4.808265,5.380554999999999,1.9067766666666666,2.476445,2.803715,2.83408,4.01092,3.247565,4.5373,0.7721857142857144,3.936772,2.89804,3.85384,2.3313075,1.831774,4.05559,1.1685444444444444,2.746115,4.28528,1.147742,3.68638,3.21507,4.529755,6.14517,2.093005,2.89524,2.69127,3.8333333333333335,3.1264766666666666,2.717292,2.8463233333333338,2.516696666666667,2.41465,1.32013,2.0311075,2.0311075,1.90953,2.106133333333333,1.7648466666666665,2.5900866666666666,3.83739,5.5024,4.57467,1.72019,4.278375,4.02312,3.594385,4.206855,1.88703,1.920905,4.529749166666667,2.02479,4.428513333333333,3.68548,3.56866,2.4481066666666664,3.8620125,3.251575,3.215775,3.51113,0.14543673469387755,2.4846333333333335,7.6164,1.5023680000000001,3.436255,3.259365,1.0211257142857142,1.1922883333333334,1.8875175,3.90364,2.79866,7.032882,3.568105,3.628915,2.79784,2.54991,3.41821,3.363645,3.776715,3.47309,2.8331233333333334,5.33745,4.036145,4.14756,2.5003233333333332,2.12297,3.555745,4.515315,2.634335,2.953885,2.231855,2.549375,4.023205,3.75604,2.533305,4.491525,5.0988,2.88618,3.773235,4.09921,3.620275,4.542645,3.325755,2.73642,5.8295,4.50176,4.87821,5.0973,4.46026,5.0865375,4.274065,4.006085,1.3236700000000001,6.564,2.46843,4.432945,4.11897,4.109495,3.10681,1.9428633333333334,2.1436100000000002,2.49585,0.9914099999999999,3.2963799999999996,3.9498333333333338,3.14155,1.9074633333333333,3.7127,4.15047,2.6875,0.5601466666666667,4.381355,4.631895,5.0214,4.63183,3.76612,4.7905,4.809395,5.03275,1.3835555555555556,0.9352307692307692,2.9788200000000002,5.2089,5.75075,0.50211375,2.94382,2.5024166666666665,3.509175,4.51611,3.8839333333333332,1.9866,5.4075,3.655485,4.51813,3.164885,6.45025,4.915625,6.8436875,0.5622091666666666,4.082925,0.793534,2.46317,4.079866666666667,3.1271566666666666,1.3697033333333335,2.3061599999999998,4.141755,3.50154,4.34204,1.93487,1.9637825,2.885665,4.446395,4.168255,3.73686,1.626624,1.2023574285714287,5.7622,2.3089925,7.6473575,4.297355,3.6079,2.1665975,1.5885775,3.94001,4.424685,1.7581266666666666,2.378585,2.593675,2.4846333333333335,6.5501483333333335,3.0105116666666665,2.7920833333333337,3.8986525,3.551255,2.0115933333333333,3.03411,6.9865275,4.53563,4.9392,0.504769090909091,3.32493,3.689045,4.560965357142857,3.86766,4.23989,3.010345,2.750215,3.35526,2.94292,3.4832181666666666,2.0255199999999998,5.49011,4.8525,5.00525,3.95954,3.351445,3.2825175,2.3289575,1.4065925,0.89764,2.76567,2.600015,1.0926449999999999,2.6900099999999996,4.85056,4.68538,3.790395,4.08624,16.463876785714284,4.02442,4.53423,3.89805,0.7065225,4.95845,4.492735,3.99913,4.84889,5.33145,2.751035,3.53139,3.19779,1.497708,3.198605,4.657585,3.2488166666666665,1.4721259999999998,3.60074,4.99398,3.83872,5.05325,4.835735,5.58545,3.892845,2.7100166666666667,4.243045,4.18183,2.838005,3.05673,3.020016666666667,1.5877908333333335,4.83811,2.677057857142857,1.88924,3.88913,2.36213,4.3857,4.076368333333333,2.595775,2.68361,4.3143,3.74095,4.29487,4.521885,4.985715,4.911964,3.22004,5.49385,2.731025,3.800715,4.36317,1.56284,4.441405,1.0715166666666667,4.399335,2.92163,0.9418014285714286,3.681545,2.163045,6.369405,2.7050443333333334,2.7050443333333334,2.7050443333333334,0.6930299999999999,1.2205783333333333,1.933705,3.46292,5.82824,3.650801111111111,2.02081,2.11344,1.7524499999999998,3.781565,2.46457,0.39868384615384617,1.937855,2.225515,2.87713,1.897885,2.572895,2.420105,2.0421375,3.934915,2.95937,2.985435,2.95882,2.008735,6.45776,1.93081,4.320805,3.826725,6.35111,1.5269033333333333,3.674555,3.55336,3.781795,3.826695,2.719355,1.8433425,3.811385,5.7645745,2.122845,3.62964,3.027585,1.9648025,4.69294,4.1487,2.5245833333333336,2.061955,3.6256525,5.512305,5.94355,3.061955,2.42758,2.7189,3.0464,2.83001,4.0376,1.4135425,2.881005,4.693065,0.8880475,3.188175,3.84767,3.77293,3.29775,2.393135,3.28145,1.94111,4.517745,8.00331,4.293955,3.48583,3.26463,0.9689375,4.481775,2.21542,4.253885,5.5780075,3.752,4.259855,11.18521,4.89729,4.01935,1.4909725,0.6841541666666666,3.046065,3.9469,3.491225,3.705405,2.1398266666666665,2.4291933333333335,2.041706666666667,1.1576933333333332,1.1576933333333332,1.9632166666666666,2.35963,2.0284833333333334,2.2838533333333335,2.6186366666666667,2.5368033333333333,2.388646666666667,2.7254,1.4382933333333332,2.3620966666666665,2.092166666666667,2.0774933333333334,1.3823,2.619936666666667,0.641355,9.584043750000001,0.641355,3.2932066666666664,2.0552183333333334,1.6029466666666667,4.221005,4.342735,3.73065,3.99743,2.250723333333333,2.9403066666666664,3.283871333333334,1.9217733333333333,3.1062100000000004,2.9537133333333334,2.53785,2.6458566666666665,1.6826999999999999,5.452,6.262348190476191,3.050326666666667,3.337666666666667,3.209773333333333,2.5136966666666667,2.6279666666666666,1.0890914285714286,3.523733333333333,3.485,3.89403,6.1665,4.281565,2.8430166666666667,3.5713000000000004,2.8539133333333333,3.9550655555555556,4.32842,2.540383333333333,2.975825,3.1661533333333334,3.0347899999999997,4.763335,3.1129833333333337,3.548425,5.767268333333334,2.1654166666666668,2.3149633333333335,1.56724,1.5196933333333333,4.64335,3.412961666666667,2.2624866666666668,2.1051466666666667,1.8425866666666666,4.42437,3.709625,2.798105,3.3585666666666665,3.145723333333333,3.4123,3.4958666666666667,3.519966666666667,3.0977933333333336,0.59629,3.7238,2.50517,2.5392633333333334,3.487755,4.379675,3.924275,5.29305,2.86161,3.8019016666666667,1.0959166666666667,2.8387966666666666,2.8387966666666666,4.282035,2.669675,3.69404,4.077735,1.988745,3.28796,3.75556,1.1961814285714285,3.7882295,3.132833476190476,2.2629463333333333,0.38550300000000004,4.618635,3.008805,6.312255,2.937895,6.18895,3.36014,3.822745,3.66302,1.5761025,2.770085,3.995495,3.33315,3.31683,2.91982,5.2439025,2.0535525,0.96069,1.79744,1.5236599999999998,5.83509,2.2443433333333336,2.479013333333333,1.83024,4.275845,3.84873,4.038275,0.613075,4.102965,3.922885,2.5232466666666666,2.5818333333333334,2.7307900000000003,3.0269983333333332,3.889146666666667,1.45921,0.6482736842105263,0.7885428571428571,3.4546666666666668,3.97053,5.891408333333333,4.80773,4.33606,5.38095,1.4210285714285715,4.139466666666666,2.247243333333333,1.003095,5.2012,6.0032,2.90416,4.705625,4.02946,6.53051,3.8650333333333333,6.211641666666667,3.73612,2.428065138888889,5.81105,9.975433525641026,2.54609,0.628024,2.9656,4.149525,2.15852,6.12005,3.71859,3.81262,2.60636,2.60636,5.83075,3.352865,3.92572,5.00435,3.7832882380952384,2.324523142857143,1.10603625,4.74241,2.71795,5.293805,3.485775,4.085485,3.170915,2.2346925,4.340915,4.726315,3.447566666666667,3.871975,4.340835,27.286830000000002,1.92928,2.5458,2.33883,1.71025,2.587476666666667,0.9900399999999999,2.8353066666666664,3.0008666666666666,3.402366666666667,2.98373,0.6213207692307693,3.1694600000000004,3.682495,2.917425,3.2371,3.58949,5.7361725,4.451645,3.981565,3.76186,3.8485241666666665,3.62965,3.546333333333333,1.732665,0.9757666666666666,1.4420966666666668,2.30851,1.5024433333333331,2.9523566666666667,2.4399433333333334,2.4476533333333332,2.3141266666666667,2.756505,2.07164,1.8171533333333334,3.09639,4.304635,3.63461,4.02339,1.556788,3.2662633333333333,2.5080566666666666,3.689,2.0849933333333333,2.491075,2.394455,1.57833,4.30472,6.568476666666667,3.018855,3.549635,4.003565,2.6493,3.332291666666667,3.4070666666666667,3.34241,4.623825,0.3155518532818533,0.3155518532818533,4.910805,5.21525,3.129035,3.01853,5.36995,4.242105,0.6466753846153845,4.8593,4.42741,3.59601,6.3639,4.7759,7.29359,14.057305000000001,12.749368076923076,4.276485,4.27464,2.4776766666666665,0.583533076923077,2.4621566666666665,4.295525,1.3316366666666666,4.59771,3.4969,2.8624166666666664,2.1726,2.06412,4.92166,4.65462,8.95749511904762,4.926995,4.005595,7.370353257575758,3.40465,3.3158600000000003,1.450515,5.351553333333333,1.88242,2.42227,2.717843333333333,0.2478259375,2.972915,3.601055,4.595923333333333,0.8619199999999999,1.0387766666666667,3.916,0.587601,0.587601,2.966981666666667,3.2233933333333336,3.217503333333333,3.77158,4.2025,5.64605,3.747955,4.106765,2.892625,3.054766666666667,2.62109,0.8661833333333333,2.714036666666667,2.908955,2.8112,7.24756,2.888925,9.565850000000001,3.12015,5.84195,3.08678,2.22057,2.480515,2.6678,1.8145175,2.2804375,1.9306575,3.407455,2.4309,3.897225,2.6909,4.143026666666667,4.143026666666667,2.711164166666667,2.711164166666667,8.717195,2.4698033333333336,0.80623,2.583056666666667,2.4639866666666665,2.5049466666666667,3.897225,1.900892,1.915798,1.560284,3.845155,3.59021,1.7592175,4.491555,4.152115,5.696478333333333,6.39455,2.12174,4.26427,6.09417,3.7684,3.128915,2.08752,3.53517,3.394028484848485,4.11658,5.176986666666667,7.256004,3.3123537499999998,2.996025,1.1620516666666667,4.27445,3.7415139999999996,3.575615,3.660661666666667,4.317265,2.5024,2.49159,5.895855,2.90966,1.216996,5.53957,3.7362,2.6703666666666668,5.16385,2.6703666666666668,2.708015,3.38447,4.975225,1.0184442857142857,3.9732933333333333,4.440585,3.572155,1.2311116666666666,1.68232,3.73635,3.81998,2.469225,6.634079999999999,4.07743,3.80046,4.134785,4.3813949999999995,1.365525,3.748365,2.501195,3.58133,3.903555,3.55799,4.73656,3.367575,4.08759,4.8521,1.9416986666666665,1.8137125,3.2174533333333333,3.708066666666667,3.5555,2.7062333333333335,3.5257666666666663,3.0842266666666664,5.675,3.53584,3.509085,2.984715,1.9598533333333332,3.4540666666666664,2.03328,3.01741,3.244265,2.96683,0.68191875,2.05713,1.8178933333333334,3.456465,1.787634,3.719305,4.362985,1.168642,3.043665,4.549855,0.83559,1.35274,3.23373,3.8717,3.55885,2.01647,1.7869933333333332,3.54054,2.5338266666666667,1.6401066666666668,2.896565,1.917425,1.218542,1.3977325,6.482945,3.147185,2.331615,2.442195,2.388775,3.76398,0.80102125,0.35960285714285717,0.7742257142857143,4.868435,1.750384,4.6016,2.06495,1.7031804285714287,3.054315,1.3511345714285714,1.0219604285714285,0.674174,0.6383285714285715,2.4336925,6.43555,2.996815,3.618785,0.33672035714285714,3.418145,17.90825076190476,3.128225,7.015724027972027,1.02484375,1.02484375,1.02484375,1.02484375,5.878191666666666,4.15597,4.42766,2.2185799999999998,3.11165,4.61599,5.48645,3.932385,3.52417,4.11458,4.01073,3.905175,3.678752666666667,4.091815,4.975675,3.926945,4.65929,3.453985,4.18868,2.5690566666666665,3.694735,3.32146,3.732245,3.768475,4.182755,3.1478099999999998,2.3971325,2.46995,4.00081,1.2181335714285715,3.949975,2.48913,3.3467653333333334,4.08451,4.37236,3.068725,2.885,4.37951,2.750695,3.297045,5.09465,4.77599,3.29496,3.358085,1.718906,1.718906,1.7706775,4.61448,3.912755,5.334849999999999,5.0926,3.4772533333333335,6.44205,4.78873,2.02871,9.31907,5.47475,6.281477499999999,4.4799,2.81672,2.94184,0.26185758620689653,0.88421,3.304257333333333,3.37778,4.58373,2.911286666666667,6.0520283333333325,5.06145,0.568565,2.83879,0.47272400000000003,1.7064673809523812,3.0942,2.712935,3.69263,3.77018,3.359235,3.29835,3.1632,3.621515,3.372485,3.586485,3.59611,2.25788,1.7064673809523812,3.03394,2.17449,3.92477,2.518195,4.349055,3.56574,1.6513775,4.467495,2.758515,1.31673,4.56133,4.586285,4.237845,2.77111,2.9279666666666664,4.248835,1.8186499999999999,1.4155039999999999,2.619283333333333,2.505803333333333,2.5312233333333336,2.10859,4.78588,3.146725,4.8967875,3.6933871428571425,4.938565,3.847535,1.6797,5.1387,3.851015,5.4193,4.1517,6.90259,1.7676375,4.652205,3.593445,2.97558,1.7817975,1.7048433333333335,3.957835,4.43088,2.4274666666666667,2.7266395833333332,3.3987675,3.3987675,2.5837333333333334,3.13259,3.360485,3.904235,3.5732,0.6979507692307692,3.0727,4.36114,5.1311775,2.94566,3.11163,1.776705,2.70942,3.321585,2.219285,4.598255,3.129185,4.811525,1.9107666666666667,1.0075818181818181,6.2977,3.71487,3.28852,3.1643066666666666,1.8159079999999999,30.053422011904765,3.81152,3.42353,5.8498,4.399575,0.8607333333333332,6.8474699999999995,1.941355,5.55475,1.3760566666666667,3.909175,4.881361666666667,3.71325,3.23109,1.78969,3.4327666666666663,4.85148,2.040365,2.73687,3.536655,2.59961,2.653395,5.91365,2.26688,6.48395,1.09348625,4.27961,3.58927,3.8728,4.878065,2.95244,2.273286666666667,4.1366,4.478915,3.7538125,3.7538125,6.0617,2.1517275,4.308165,6.692703333333333,3.31121,4.09083,3.37089,4.75678,3.59969,4.24726,1.3848075,2.4256,4.19448,4.38955,5.4727,4.260565,1.86613,9.4942,2.997385,3.76468,1.7267428571428571,3.654905,2.1890133333333335,2.607206666666667,2.1079033333333332,1.2681266666666666,2.4975133333333335,0.9309428571428572,1.16538,1.16538,1.16538,1.8157766666666666,0.54974,3.94123,1.1578266666666666,2.5340666666666665,0.9222766666666667,1.8417433333333333,2.6214233333333334,1.9372633333333333,0.7910875,1.8351300000000001,1.6283933333333334,2.4245466666666666,1.6710540000000003,1.6710540000000003,1.7282166666666667,1.8424366666666667,0.789264,1.6829933333333333,1.6160366666666668,1.24424,2.66267,2.074085,5.77765,1.255115,5.52215,17.2885715,6.7018,3.50811,3.668973333333333,3.3960666666666666,2.7902799999999996,2.7050966666666665,3.039433333333333,0.7410833333333334,0.9950430000000001,0.9950430000000001,0.6554625,2.3895066666666667,3.6014,3.27228,1.501608,4.922165,3.753585,2.58778,3.615985,5.21175,3.74569,4.096235,3.5040666666666667,3.173355,3.471665,5.6196,3.0716933333333336,4.80948,0.5271790000000001,0.5271790000000001,2.352805,2.90474,4.6873,3.41825,3.931685,4.737155,7.689604,7.47238,3.49133,2.28,4.585845,3.465295,2.45593,2.37797,3.754305,1.3330033333333333,3.723275,2.399665,1.6662525,3.539066666666667,3.53486,1.9481925,5.176986666666667,1.6158575,3.4692333333333334,2.884445,1.0074257142857144,3.6209000000000002,2.7002900000000003,4.46117,1.1632866666666668,1.653135,2.17991,2.0021775,1.638845,2.3883925,1.8799425,2.0398875,4.176605,4.367725,2.495255,1.99405,1.5510233333333332,3.5691333333333333,2.0004433333333336,2.4950225,4.46544,7.2631,2.7378533333333337,3.145625,3.58531,3.461055,2.37174,5.00855,4.091435,3.125865,1.3893875,4.516685,2.307675,3.067833333333333,2.47854,3.54672,4.987545,5.83865,2.30579,2.61176,2.76625,3.2548866666666663,1.9343666666666666,1.552626,5.3308,3.3514,2.1864576363636363,3.2115766666666663,3.00587,2.4254599999999997,3.1689566666666664,3.040903333333333,3.523566666666667,5.10205,4.36476,2.910073333333333,4.83855,3.195585,2.328335,3.317635,3.83707,4.119495,6.0512630000000005,1.8509440000000001,3.89115,2.45976,3.085225,3.712845,0.5920825,2.3663,2.42986,3.188145,2.645425,2.198715,2.797585,0.6063729999999999,2.72992,4.48018,2.4225075,4.174415,2.4520133333333334,3.909695,1.8657725,4.486325,4.461645,2.06794,2.84572,6.98386,3.839755,4.25549,4.70475,7.059694318181819,4.305855,4.281815,2.12918,4.58714,2.87492,1.95298,1.94269,2.0630933333333332,1.0025242857142858,2.543163333333333,2.344533333333333,2.60791,3.384866666666667,1.765222,3.269365,1.9122666666666666,4.012755,5.0117325,1.0241875,1.8823666666666667,2.4900966666666666,2.85472,1.9577600000000002,1.1113633333333335,5.472818333333334,2.129735,2.6370033333333334,2.541706666666667,2.3657766666666666,2.63971,3.110845,2.2886366666666667,2.6595833333333334,2.173366666666667,3.97042,3.535575,3.88298,2.995556666666667,2.917873333333333,0.675919,1.7830666666666666,2.1445775,2.0372566666666665,2.5347166666666667,1.1721933333333332,2.71853,2.93994,3.62572,1.9970100000000002,3.300205,3.06203,5.0013,3.24785,0.6215733333333333,2.0917000000000003,2.71672,3.31275,0.7458063636363637,2.720613333333333,3.341158,3.4087666666666667,2.867226666666667,3.162848333333333,3.72712,3.6523333333333334,3.1039499999999998,1.931155,5.5277,4.963165,4.98303,5.464,5.609,1.7780866666666666,3.467715,3.7187333333333332,3.2838133333333333,2.95025,2.6246666666666667,3.8626666666666662,3.5261333333333336,3.01461,13.79063,4.35823,1.11831,2.69751,1.540068,3.219086666666667,3.1763166666666667,2.3427599999999997,5.658261666666666,6.4998743333333335,2.2105900000000003,0.841293,4.055685,3.4067666666666665,3.07232,4.48503,5.1987,5.6924,4.784095,3.49473,1.9090525,6.5057375,1.1620516666666667,6.2913250000000005,4.657955,2.3537133333333333,3.890115,7.007965,5.8257,2.19687,1.4602383333333335,2.1421125,7.041485,1.557625,2.911683333333333,2.3969966666666664,4.079850833333333,5.7778,4.42725,6.29655,3.46568,4.781405,3.60947,8.99459,4.65976,5.70575,2.351475,2.5249,11.207188333333333,3.338795,2.462905,2.374136666666667,1.6246,2.0936233333333334,3.5366666666666666,0.700345,1.102964,1.0702357142857142,3.255385,6.894853333333333,3.063344,1.3783033333333332,4.53051,4.12726,0.5728679999999999,4.52477,4.068375,4.78675,3.495595,3.30194,2.678596666666667,4.189285,10.06151,1.7948425,3.7645074999999997,3.662165,4.09272,3.600655,0.8492166666666666,3.6008666666666667,4.069233333333334,1.8109766666666667,2.48273,2.302756666666667,2.5333466666666666,2.192086666666667,2.172963333333333,2.24576,5.9901728571428565,5.132,3.54534,4.658468333333333,1.5713433333333333,2.34871,4.721935,4.362765,4.445055,4.24446,4.665115,4.81519,1.718906,3.73318,7.4917566666666655,1.2447683333333333,1.8157333333333332,2.440706666666667,2.4550733333333334,2.8074066666666666,4.74034225,0.7885428571428571,2.46525,3.407205,6.20485,4.53959,2.1672033333333336,2.8904433333333333,1.9177275,0.536975,2.60585,2.89876,7.6335,4.379245,4.481645,0.895622,4.7396666666666665,9.26981625,10.525341666666666,3.2106,1.21550125,3.59888,3.436525,2.5614233333333334,5.369922,4.880225,3.945405,1.9640525,3.7199000000000004,2.1764933333333336,2.56224,0.7491618181818183,0.3790673333333333,2.563115,3.363255,2.0325726666666664,3.353675,3.0119433333333334,4.036595,5.37165,1.499658,3.01791,2.2562325000000003,2.2562325000000003,2.389525,3.41917,6.71695,2.6353566666666666,2.302216666666667,3.3441333333333336,3.397766666666667,4.240505,4.432165,4.23088,4.184805,4.086125,4.128245,7.10015,7.930809999999999,2.011425,2.2537,2.9979600000000004,0.9088599999999999,0.6965533333333332,4.47909,2.36467,5.3107,2.9332700000000003,3.11265,1.82201,1.5164375,3.949195,4.159945,4.327425,2.0199666666666665,1.4347433333333333,2.6766466666666666,1.9366033333333332,2.49992,1.120977142857143,1.120977142857143,2.68472,4.85883,2.938225,3.247855,3.407735,2.391915,20.142014272727273,3.871095,5.3630325,4.161085,4.141745,3.868915,3.50471,5.57285,6.0990575,0.7271533333333333,0.7271533333333333,0.7271533333333333,2.72081,1.722414285714286,3.3356666666666666,4.090885,3.947815,3.302315,4.035365,4.59187,0.845891111111111,1.9824233333333332,2.224153333333333,5.6753445,3.0247045,3.996712,4.90991,1.49786,2.0330333333333335,2.3206666666666664,0.54334,0.7877799999999999,2.012555,2.163895,3.073705,12.868103333333334,2.5548233333333332,5.3486,0.7336857142857143,9.14635,5.5393,3.78648,4.2126,2.624375,5.45255,2.624375,2.85935,3.30217,3.80309,3.478085,3.952845,4.27234,3.39626,6.06775,6.491334,1.9260733333333333,2.098278,2.562215,26.509136900900902,1.493418,6.10225,3.5916959999999998,3.973585,4.13311,4.413505,2.6957,2.38111,2.37248,6.7878,7.1263,4.66126,4.66188,3.99508,1.8094475,1.93431,4.05588,0.22060846153846156,0.22060846153846156,0.22060846153846156,0.22060846153846156,4.08337,3.17309,1.0312133333333333,1.6855733333333334,1.151388888888889,4.4534,2.4524266666666668,2.30489,7.110521666666667,3.18243,0.18126517241379309,20.58349133333333,4.555054999999999,1.753028,1.3330760714285714,2.15624,2.02766,2.25269,4.66989,3.616545,3.4668,4.359645,2.039216666666667,7.3005775,2.77922,2.06276,4.104505,5.8132,8.690813333333333,4.241625,0.29762439024390247,3.608625,3.797695,2.8146299999999997,2.0196025,2.9313000000000002,1.6748666666666667,1.6748666666666667,4.10277,5.772325,11.216176666666666,9.095075000000001,0.6220833333333333,2.4752400000000003,3.889065,3.08114,4.447985,3.427555,1.27029,1.27029,3.29568,3.926095,2.6172866666666668,3.355065,4.37352,5.2869,6.811785,2.25196,4.74326,4.07109,2.624515,3.0855266666666665,3.0114666666666667,4.985185,4.138475,5.49645,4.14196,4.373,3.687055,4.271565,4.132115,5.2438,2.53013,3.1432533333333335,1.058606,4.349955,3.97117,3.802975,1.6394220000000002,1.8775433333333333,3.5423333333333336,2.8312166666666667,2.074073333333333,3.948901666666667,1.5825250000000002,1.91683,1.82287,1.6909,2.2063633333333335,1.5961333333333334,4.0851999999999995,3.092416666666667,4.1022,3.37406,2.2116666666666664,2.69444,1.9784066666666666,4.60709,1.9096466666666665,37.67168241666667,2.2872254545454545,2.2872254545454545,2.476836666666667,2.46841,2.0361866666666666,1.8654933333333332,2.87523,1.75649,0.7956615384615385,5.022,6.581245,4.04501,4.016515,5.51675,1.9199166666666667,4.29655,1.782412,4.915675,5.0402,5.6776,3.96819,1.732665,3.802635,3.757465,4.488535,4.633835,5.31885,3.860285,2.645745,3.3541666666666665,2.6939266666666666,2.062185,1.944625,4.30602,2.402163333333333,3.7121325,3.7121325,2.210246666666667,1.5489766666666667,2.0857,2.532696666666667,2.3454166666666665,5.38485,2.6390033333333336,1.1915850000000001,1.1915850000000001,2.14327,2.012236666666667,2.6090566666666666,2.548756666666667,2.51642,2.3495466666666665,2.1882733333333335,2.23719325,3.040408964285714,1.5657969642857141,0.8032157142857143,62.00542546130952,2.3997159999999997,3.549,2.455982,0.9061600000000001,3.863062,1.549568,1.549568,3.2536199999999997,3.1840200000000003,0.76258125,3.0421333333333336,5.44233,3.299326666666667,2.4683466666666667,2.8303666666666665,2.0890166666666667,2.993640666666667,0.295373125,3.5409666666666664,0.8782439999999999,2.5370733333333333,1.105864,1.105864,3.31021,1.797882,2.7931233333333334,1.5305453333333334,3.4185666666666665,1.5305453333333334,2.1517433333333336,2.7683033333333333,3.0071166666666667,1.347384,1.347384,3.0747966666666664,1.49073,3.09733,2.2201633333333333,4.30153,3.550795,12.023312916666665,7.05147,3.07798,2.480775,3.897525,5.1451,5.4226,2.720675833333333,3.79874,3.637145,2.3923533333333333,4.1203,3.2474266666666662,2.7828366666666664,4.682335,2.200536666666667,1.0619871428571428,3.71333375,2.89859,2.917455,0.7668671428571429,2.605665,3.54173,4.056505,4.2243,6.4917,1.9756066666666667,1.9144100000000002,4.33757,4.43412,2.3468325,2.471988333333333,1.9307433333333333,2.336708,0.932348,4.96974,4.325085,3.274425,3.431335,2.9923266666666666,4.97217,5.2837,2.7888466666666667,1.7683933333333333,0.5239086666666667,14.457348166666668,0.5198036363636364,0.5198036363636364,0.5198036363636364,3.0055066666666668,3.897766666666667,0.5198036363636364,6.845655,4.28634,0.7294940000000001,0.7294940000000001,3.265356666666667,3.205175,3.193955,4.43157,4.94101,4.324261,2.2537225,4.6879306666666665,3.28112,3.457022142857143,4.91944,2.939924,2.34457,2.3133275,2.67335,1.73292,3.3206391666666666,2.9562399999999998,2.271675,2.0440675,1.8944975,1.7505666666666666,1.60196,2.648675,1.0596933333333334,2.464735,0.6064242857142857,5.633,1.749475,0.64857,2.2019,7.982171666666667,2.729795,2.058777,3.3081300000000002,7.16773,2.593555,4.345815,2.953335,5.85245,3.453245,3.78917,3.963445,4.0192,3.1078766666666664,4.302515,1.09903,4.173885,2.47314,2.5457033333333334,2.55379,2.240095,2.1546399999999997,1.24395125,5.5358,0.9252545454545454,4.865225,5.35975,5.18945,5.0947,3.5925333333333334,2.3843099999999997,2.0456399999999997,2.9072266666666664,2.9769233333333336,2.42704,3.932166666666667,2.72275,5.11665,1.8822500000000002,39.696490952380955,4.61165,2.3862433333333333,2.37189,2.9388566666666667,1.6502966666666667,5.937905,3.771955,2.3965633333333334,3.1482166666666664,2.3362333333333334,1.674315,5.0955,0.7832785714285714,4.347496428571429,1.3116771428571428,3.369566666666667,3.3879,2.7086166666666665,1.4099375,4.4632613333333335,1.67805,1.67805,2.451416666666667,2.814861666666667,3.4168000000000003,3.4271,1.46993,2.84685,2.7111866666666664,6.241999166666666,2.8474799999999996,4.005043333333333,1.4707433333333333,1.47387,2.988073333333333,1.005256,5.341335000000001,3.30524,2.7905033333333336,3.6826333333333334,2.7678999999999996,2.67395,3.287876666666667,1.7071666666666667,2.388775,2.4852833333333333,3.4011666666666667,2.4258533333333334,3.6698,1.9073766666666667,0.609064,9.758896282051282,2.7447133333333333,5.4143,4.85675,2.79839,3.033493333333333,1.3446325,2.255176666666667,2.285305,1.3446325,4.053345,0.442394375,0.442394375,1.1320175,1.1320175,1.1782375,1.1782375,2.62887,2.908425,2.36522,1.522565,1.9252,3.515725,2.846165,4.590485,5.3513,1.9349779999999999,4.36854,2.56331,4.606275213675214,1.591485,1.591485,2.137,1.6742819999999998,3.7234066666666665,2.0321775,4.3539,1.5984616666666664,2.585675,0.543146923076923,1.1153842857142857,2.14856,2.13809,1.9844675,1.3794775,4.17524,4.176355,2.118186666666667,2.49613,1.4695099999999999,0.7031058333333333,2.1914000000000002,3.38664,2.730506666666667,4.39184,5.0994,4.722,3.76913,6.634895,1.5406283333333333,5.90859,1.91853,4.41601,4.711505,5.679642,3.1945866666666665,2.33703,1.8194975,1.9544139999999999,1.9544139999999999,2.37545,2.37545,4.297685,5.68405,0.9352539999999999,3.94777,3.38524,3.50116,2.5616733333333332,1.3991525,2.782296666666667,4.010535,4.04174,1.7514759999999998,6.73265,5.19275,1.9181333333333335,1.3292625,3.916745,4.023499999999999,3.65151,3.38624,3.785795,0.6398821428571428,3.7895,3.4102333333333337,2.62977,2.85046,2.1418566666666665,3.657166666666667,1.4966285714285714,1.4966285714285714,1.4966285714285714,3.0656233333333334,2.9550733333333334,3.0815566666666663,3.3253931071428573,2.33866,1.2258442857142857,3.1761266666666668,3.2226666666666666,1.412354285714286,2.69308,2.69019,1.1971942857142857,2.6373433333333334,2.8197233333333336,2.8850833333333337,2.6419799999999998,2.5426166666666665,1.919585,3.1005233333333333,4.6181746666666665,4.14782,0.9816,1.435336,0.558566,3.5071,8.79702,2.999413333333333,3.42085,3.0297533333333333,4.3420974999999995,1.9159575,7.512325,6.487396666666667,2.6596466666666667,2.20891,3.739315,4.886215,1.5773160000000002,1.1987539999999999,1.40705,2.24151,10.716533333333334,2.6716800000000003,3.178186666666667,2.949109,3.77992,2.11646,1.13886375,5.5592,1.1070366666666667,3.2655453846153844,4.4981,3.31793,3.2577833333333337,3.03377,4.913905,1.1768783333333335,2.12309,1.976483,1.976483,3.842095,5.7781,8.9195675,4.38405,3.665195,4.81412,1.760555,2.3156458333333334,4.602365,3.668435,3.748445,1.5780566666666667,2.933476666666667,3.42547,3.7425,2.3973725,4.06837,3.810685,3.73584,4.052815,3.719065,3.935715,5.26145,3.30903,2.456986666666667,4.40243,2.84175,3.826805,2.01727,2.5047,2.592355,5.5327,2.55491,3.1008718181818185,1.6414475,2.50453,3.188265,2.147455,2.1084125,0.8262883333333333,0.8262883333333333,1.743855,3.6821606060606062,4.27933,2.79548,4.30966,3.0344083333333334,2.4903500000000003,0.97234125,3.108415,1.58968,4.06979,4.06994,0.8996183333333334,1.844615,3.95759,2.9553675000000004,1.6167275,1.61442,5.299382857142857,1.056805,2.749125,3.16634,2.78828,2.509295,2.987596,2.100925,1.05424,2.861175,2.99148,3.434195,1.4674399999999999,1.62381,2.0147,4.432875,2.439985,4.423755,4.496055,4.42044,5.9313,5.2326,4.1097,5.95346,4.018944285714285,0.7948427272727273,2.862375,3.953825,3.76988,0.45894545454545455,0.841798,3.03429,4.00384,4.72196,4.262125,3.144802142857143,2.688295,4.60343,1.6944780000000002,2.58905,4.365855,4.1277425,3.32027,2.89386,3.76651,4.7043,2.58967,5.095765,0.9015470000000001,3.20659,2.82924,4.33895,4.2462,4.384255,2.16824,2.54462,3.00193,1.9061966666666665,5.04935,3.43181,1.2731571428571429,2.65635,3.8009174999999997,1.426516,5.713825,1.776964,2.5193600000000003,13.437881855375618,2.862413333333333,1.5658033333333332,1.6138450000000002,2.18123,5.580348333333333,1.626624,5.8813525,0.6579569230769231,3.3722,3.70615,7.4545325,2.6191833333333334,2.860386666666667,2.860386666666667,4.59637,4.384155,3.4269,3.17987,4.72344,4.99856,2.48436,3.1403766666666666,4.623605,1.25121,2.5745833333333334,4.51191,3.903715,2.80011,2.256813333333333,3.63269,3.333115,6.037558333333333,6.1472925,0.69684,4.05362,3.135655,3.7691666666666666,4.1471,3.85449,3.759655,1.388334,4.86549,2.55325,2.72128,4.195695,4.37759,4.396395,0.9095774285714285,2.69243,8.901661666666666,1.5415733333333332,2.119494025974026,2.3000275,3.83206,3.43923,3.19524,0.6302663636363636,2.3349075,1.7040075,2.2104575,4.34481,5.171828666666666,2.738722,8.834235,2.466536666666667,2.700006666666667,1.05122,4.38306,5.13285,2.222355,5.458838333333334,2.653265,3.271605,5.31975,4.35994,4.787245,2.25281,1.3088375,1.3088375,2.958785,3.270845,5.040655833333333,1.4056325,6.224615,1.6061633333333332,3.576125,1.31566,8.704904333333333,4.489945,2.799455,4.086475,3.68543,3.687115,1.1380983333333334,1.9764325,3.4497666666666666,3.0027566666666665,3.32725,3.6390999999999996,3.87454,2.87181,3.09733,3.2369,1.53543,2.48231,1.9560866666666668,2.8477599999999996,1.8562266666666665,5.102670833333333,3.2514833333333333,1.8130566666666665,2.778113333333333,3.30031,3.13268,6.37645,5.93945,2.92204,3.6203,2.87984,2.906725,2.96589,1.3159333333333334,1.017314,6.214045,2.97901,5.7781,4.538585,6.49085,2.910155,2.791236666666667,6.4863,2.691385,0.42760444444444445,5.3806,2.859415,3.71316,3.3575,1.3752285714285715,4.260105,1.019558,4.49534,0.9383375,1.3374266666666665,2.8872666666666666,2.333693333333333,2.7732642857142857,3.50481,4.55959,5.900094166666666,5.900094166666666,4.9024375,4.9024375,4.596255,2.9400866666666663,4.43491,1.0107625,5.78315,3.191765,3.6101666666666667,3.850575,3.80179,4.932225,1.860185,4.813385,3.1335319999999998,2.936475,4.09529,2.569605,4.685165,5.11365,3.643885,3.536425,5.1129,3.527385,5.89195,2.93849,2.5601833333333333,6.0976,3.929365,2.856946666666667,6.047688333333333,1.6160933333333334,1.86452,4.688935,4.307755,5.1506,4.073115,1.992781,1.992781,12.93721871031746,12.6049,4.60976,3.242945,2.985492307692308,4.613165,4.56123,2.6318566666666667,3.20664,3.101755,4.024466666666666,3.6291666666666664,4.879095,2.102035,8.24184,2.621785,1.9070825,5.738,2.434885,4.964875,4.36274,4.729025,0.7269844444444444,3.286055,3.58293,0.924432,2.879835,4.181394166666667,1.458464,1.9142166666666667,2.8089099999999996,2.7468533333333336,2.304323333333333,3.1264133333333333,2.374143333333333,0.4064514285714286,2.5024533333333334,2.849133333333333,2.768356666666667,3.16986,1.435124,2.9062699999999997,6.964975,4.539215,2.3707933333333333,2.0409966666666666,2.56453,3.59809,2.396365,3.612172,18.1052325,5.2908,3.3292515,4.596695,3.781415,5.379066666666667,1.4468466666666666,5.92875,1.612025,4.73036,4.44616,5.2806,4.71593,0.993456052631579,6.6941,2.472755,4.690395,3.02931,4.31308,3.608735,2.9337,2.18883,1.553524,1.9540125,4.282115,4.695325,2.127615,1.75276,2.9766933333333334,3.9442716666666664,2.9442633333333332,6.271,2.005165,3.53958,4.52052,4.58978,4.07943,2.746465,3.96026,4.784945,3.88657,2.66013,2.66013,5.585581666666666,1.9168833333333335,2.6016933333333334,3.76321,1.691246,7.30322,3.35752,4.409063333333334,4.292566666666667,4.09198,1.795356,4.4241,5.415,4.031115,2.1082975,3.493665,3.377125,1.1747775,1.29169,1.2887633333333333,0.7196583333333333,1.6666366666666665,0.961755,4.627425,0.91544,2.4373566666666666,1.71835,1.751655,1.070695,1.9254675,2.28257,1.59714,2.9263733333333337,2.6437733333333333,4.694205,1.4723916666666668,2.628825,3.165623333333333,2.9139166666666667,2.43335,4.382640833333333,4.532515,4.960913333333333,19.551849416666666,2.567413333333333,2.2143475,0.6753976923076923,0.629476,4.256888333333333,2.00008,3.999915,4.872715,6.709112666666667,3.6367,3.484515,4.06694,3.186973333333333,3.193286666666667,3.2120766666666665,4.061633333333334,3.1453900000000004,6.59215,3.531015,0.914837,1.11966875,5.1338,2.9804600000000003,2.54025,2.09776,2.163046666666667,5.49745,4.9471,2.27053,2.314503333333333,3.33209,4.856315,8.545613333333334,4.992236666666667,4.15174,3.97005,5.16445,4.593635,4.160715,4.77885,3.846005,5.20185,2.155615,5.56765,1.5822,5.0386,0.73128,4.973105,5.39475,6.0388,6.1345,4.594035,5.78025,5.71545,6.3175975,1.9313,1.5637285714285714,5.5334,3.70851,5.756074999999999,4.992215,5.47862,5.19425,6.18105,1.3064814285714286,4.38742,5.3344,4.148666666666666,4.783195,5.39245,2.55125,3.908445,3.147745,4.490775,0.978475,1.5549483333333332,1.335518,4.83683,4.058745,3.25485,2.21932,2.91743,1.6060066666666666,2.1627966666666665,0.40139416666666666,3.5369333333333333,1.59195,2.1476916666666668,2.8601799999999997,2.3748833333333335,3.1283066666666666,2.6035,2.4541625,10.189544,3.8760999999999997,1.7699741025641025,3.58307,0.89195,4.5355675,1.18829,1.7484475,1.9722525,1.060625,5.726122,1.1239611111111112,1.1239611111111112,1.1239611111111112,2.901816666666667,1.944594,4.97811,3.08405,1.39892,1.5496425,2.2707175,1.37465,1.992086,5.2325091666666665,0.7930699999999999,4.48586,4.12652,3.0913500000000003,0.9923114285714286,2.1528685,1.789725,1.789725,1.472605,3.651535,4.669865,4.97052,5.57335,3.918035,5.1488,2.65629,1.946105,2.870725,5.08395,3.153735,3.96426,1.00265625,3.9179564583333333,5.43455,1.8763175,3.54186,3.002553333333333,4.76312,4.785165,2.4941,7.042,6.33675,3.937395,4.539295,4.14966,3.210525,7.891,3.97872,5.407875,3.487755,2.3923433333333333,5.1316,2.650116666666667,5.6765,4.549565,2.648746666666667,3.19183,3.781235,1.37667,10.50255,4.012115,3.068965,15.156452202380953,4.17409,1.7597466666666666,2.7264266666666668,2.08928,2.68602,3.87125,2.6501906944444444,2.723875,2.89501,3.056185,4.100275,6.60882,1.2886966666666666,1.943025,4.158415,4.51875,4.80518,2.300045,0.5792373333333334,4.26711,4.28282,2.0006775,1.3344566666666668,4.69391,4.474795,0.9076755555555555,3.74132,12.255314166666667,1.2984787142857144,0.4089357142857143,3.4610333333333334,4.49654,1.043668888888889,3.98964,4.0546,6.289945,1.248195,3.368925,3.96211,3.27167,4.329265,4.406475,4.475005,8.0074,3.228215,4.00474,5.63385,16.27412125,3.5261975,2.819525,1.2001225,1.92788,1.3592225,2.367185,1.362005,1.98952,1.67639,2.02602,2.43583,2.35669,2.155405,5.4917,4.30849,5.60285,3.254285,5.801988333333333,2.836123333333333,4.999685,3.499233333333333,1.2766875,3.78411,2.0324925,2.715640666666667,4.724205,4.774445,4.882015,4.33548,3.3434666666666666,3.663933333333333,2.452906666666667,3.266445,3.67458,2.36535,1.941925,3.4850999999999996,4.4677,3.576395,2.39437,12.4473,0.6973133333333333,2.771175,4.786285,2.449207,1.050214,2.761095,7.280514999999999,7.0049416666666655,4.47345,3.624675,4.0086,2.0043625,2.32721,2.7613786666666664,1.9729666666666665,3.9270300000000002,5.09765,4.274025,0.444432,6.26385,3.3735999999999997,3.3022899999999997,3.6487,6.0921,8.6592055,4.4233905,1.02656,2.177225,2.488185,3.75423,2.5574,4.34959,4.5259,3.5065666666666666,2.744923333333333,3.95795,3.99668,3.73935,4.300666666666666,1.85958,2.989025,5.0001,5.473,3.2678766666666665,2.0122775,2.25315,15.086429072843822,0.5572663636363636,1.490165,1.490165,2.34659,5.008272666666667,3.754505,4.533215,3.089405,2.86523,4.51363,3.0831166666666667,4.179395,3.0831166666666667,3.41912,1.8918333333333335,1.58627,5.9709,2.73855,4.597395,3.012735,2.58431,6.0907583333333335,1.9069833333333335,4.66928,5.21555,3.481185,3.440305,4.76401,1.9961559999999998,4.844675,3.3591225,7.445891666666666,5.20233,2.6993,3.68815,4.96063,2.12035,2.470396666666667,3.4203666666666668,0.4908578571428572,3.1094166666666667,9.856156666666667,4.188135,3.66088,4.913115,3.2539966666666666,3.1554,1.3325542857142858,4.047645,5.44495,3.316955,2.25618,4.39818,3.6993,4.290855,4.31067,2.779875,2.779875,4.18582,2.930485,2.5363984090909093,2.06329,4.877205,4.061295,1.0152628571428572,3.75698,4.91911,2.7600366666666667,6.8078575,7.64707,1.49581,4.26588,4.7546,6.800871000000001,0.6703129999999999,7.677403333333333,3.3511016666666666,0.6131754545454545,5.1348,5.3151,4.780685,4.302065,4.770135,4.282655,4.922235,3.88136,3.85096,4.46483,5.07605,4.65263,4.570095,3.855665,2.97426,4.103565,3.137265,0.9428129999999999,4.699735,2.50077,1.91821,4.440785,4.37675,5.8617,1.0536542857142857,4.898595,2.889575,2.6318733333333335,1.5029575,1.27807,11.532555833333333,2.3587599999999997,2.96819,1.80861,3.6618190476190478,5.20052,6.184493333333333,2.65989,1.926,2.10956,2.10956,2.10956,1.4094033333333333,3.864335,4.01812,3.20331,4.561745,8.136755,3.805925,1.204542,2.35341,3.049355,2.2559,1.736926,3.864845,3.0773,1.5220933333333333,3.07001,4.994722142857142,5.4246225,3.875265,4.149925,3.06838,5.0409,4.626315,5.619129999999999,1.90783,1.90783,4.050115,3.817065,2.7548893333333333,2.7548893333333333,3.965555,1.185487142857143,4.884715,3.28483,4.160785,3.672225,3.951135,3.28438,1.0307585714285714,4.36596,4.96044,4.27958,4.74717,4.823965,5.0222,4.35203,1.8830625,1.460135,3.304535,3.79864,3.37228,4.429175,2.06523,2.9756725,5.36635,2.80486,4.726735,7.269635,2.32547125,2.9073333333333333,4.229230476190477,5.152583333333332,1.4797775,2.172832380952381,1.0905366666666667,2.172832380952381,1.8043966666666666,1.8043966666666666,1.515836,4.936045,3.145775,3.73522,2.33489,3.87487,1.555595,5.4642,2.944915,1.722195,2.9949433333333335,3.77767,3.92158,6.848522,4.60457,1.266698,0.8796633333333334,3.557935,7.375023333333333,2.39419,3.571305,3.886795,3.886795,2.37504,3.395145,2.97418,1.4263612987012988,3.02928,3.332,2.754385,4.19509,3.8518925,1.5976575,3.412755,4.48237,4.86131,5.02895,4.392445,1.752075,2.143155,1.3762166666666669,2.2135475,3.316035,1.84918,4.32672,3.1973933333333338,3.50252,4.02852,5.2303,3.195315,0.984332,1.89562,1.45729,1.1590333333333334,5.08735,3.987465,1.058606,0.30066608695652175,0.30066608695652175,0.30066608695652175,3.54884,5.614836666666667,4.33709,5.25265,5.00445,5.3086,4.43114,4.478925,2.89073,3.38224,1.5927775,4.685675,4.026555,3.878645,4.226425,4.27173,0.7056218181818182,0.7056218181818182,0.7056218181818182,0.7056218181818182,1.0445980000000001,1.0445980000000001,3.913465,3.83826,3.46416,2.87526,2.680845,5.8547,4.927495,5.6527,4.24153,3.0054866666666666,2.5308366666666666,10.0293,1.522908,1.522908,4.09208,5.2064,3.3998333333333335,0.442394375,0.442394375,0.442394375,0.442394375,0.442394375,0.442394375,4.6688350000000005,5.21045,3.603845,4.388925,3.1259249999999996,3.1259249999999996,2.88129,3.1817686666666667,2.41298,2.6803,3.28583,6.868038,1.416846,4.55679,3.488665,3.86146,8.876226666666666,2.4457066666666667,2.517425,0.9654557142857143,2.15742,5.0875,3.0124,0.88481375,2.7902566666666666,3.957375,5.5266,2.67035,4.6143559722222225,0.8372655555555555,1.67481,4.78842,4.732025,2.8645015000000003,2.5066133333333336,2.1024566666666664,1.3372549999999999,6.729001666666666,3.266993333333333,1.95695,2.972655,2.5720560000000003,3.64095,3.938205,2.6896,3.07414,5.77135,1.4352766666666668,4.431955,5.3548,3.40707,4.039835,1.9886433333333333,3.04305,3.751365,3.632745,2.82958,4.878315,4.62237,2.7208133333333335,1.93500875,2.841153333333333,2.87894,2.864903333333333,0.8047636363636363,2.1546375,8.2071775,0.4652625,3.010733333333333,1.6758433333333331,2.55208,3.2058133333333334,2.7670166666666667,1.2786777777777778,1.691226,2.72898,2.17969,3.678655,2.0061,2.7571366666666663,1.4158166666666665,3.236128,2.00029,1.1563957142857144,2.770186666666667,2.0375125,2.3822933333333336,2.666866666666667,3.006883333333333,3.1300133333333338,3.4108666666666667,3.062203333333333,2.853896666666667,2.990266666666667,2.6551266666666664,2.6009,1.7167333333333332,2.346503333333333,2.5702366666666667,1.8352199999999999,3.1096866666666667,3.956482380952381,2.9627,2.44033,2.8646366666666663,3.6146333333333334,4.6221733333333335,2.9465466666666664,1.6941171428571429,1.6941171428571429,2.3270125,1.152485,2.39391,3.3113099999999998,4.504035,2.676025,1.9665525,2.0832375,2.0424275,3.74458,3.25633,3.76181,3.43121,1.8083875,2.12627,3.901055,1.153346,1.153346,2.05731,0.5860976923076924,2.3503588461538465,1.5965225,1.5965225,2.7098999999999998,2.4395266666666666,3.2557766666666663,2.6436733333333335,2.024685,5.534173333333333,3.840265,3.840265,3.637945,3.10348,2.3095,3.03506,2.44426,2.911495,5.5276274999999995,0.49922666666666665,0.6824709999999999,4.11821,2.211065,2.981275,6.2018450000000005,3.550385,1.632342,5.054596666666667,4.657595,4.07118,4.27729,5.2851,4.811445,13.6966435,3.547655,1.6575366666666669,2.839795,3.96013,4.961905,2.911045,3.885685,4.137335,3.61619,4.89372,2.836603333333333,2.846635,2.6546,2.39709,2.39709,3.85564,2.89574,3.333985,3.2764,2.447335,2.51617,2.23135,1.8940675,1.9501225,2.02562,1.72751,3.3259464999999997,3.2533,2.554955,7.18324,3.06168,2.2911033333333335,2.0691466666666667,3.62178,3.94472,3.6197,3.047987083333333,3.467085,3.36411,4.19237,3.6705,3.818165,3.87756,3.2201750000000002,3.50317,0.6626133333333334,0.6626133333333334,0.6626133333333334,3.45955,2.36564,5.756,2.44961,3.63446,7.005201666666666,2.817536666666667,0.3566723076923077,5.37595,0.770985,4.337871428571429,1.97903,3.75699,1.812905,3.90703,5.438531666666667,4.285725,4.137575,2.7600233333333333,2.7075866666666664,1.5119933333333335,2.672556666666667,0.41587052631578947,0.5379623529411764,2.64519,1.56384,1.8168575,3.724985,3.076715,4.776315,2.7140033333333338,3.0425750000000003,3.59085,5.78211,1.7943425,0.9520142857142858,2.425555,3.701048,1.22419525974026,4.765895,3.93031,3.6473,2.70114,4.203375,2.57002,2.47366,2.4499866666666668,2.33094,2.3321666666666667,2.1558525,3.09965,2.3969133333333335,5.455458,2.388255,2.0118466666666666,2.12678,4.9477546666666665,3.323696,3.323696,2.5137033333333334,3.93026,2.2930975,3.377945,3.02158,0.5737279999999999,4.20208,1.8210975,11.825527777777777,6.97818,2.96148,3.154665,3.33802,5.42376,3.02521,3.501275,0.29222266666666663,1.911275,3.2473166666666664,0.8097025000000001,3.86894,1.3309557142857142,4.842225,3.3498,2.93071,3.93752,3.433465,2.243,4.62466,3.74507,3.695995,7.12043,3.781485,2.7584966666666664,3.0449566666666663,1.573826,1.953695,4.09176,3.733195,3.7574475,2.390215,3.408615,1.367476,3.161815,3.20473,3.67703,10.377238333333333,3.661415,5.454585,3.854405,4.30953,1.0077144444444446,4.93263,4.77841,2.5759166666666666,2.6320200000000002,2.829546666666667,3.6554,2.4066933333333336,1.7390966666666667,2.0699166666666664,3.78695,1.6177499999999998,2.8194700000000004,5.121166666666667,2.6082433333333332,1.289580357142857,1.289580357142857,3.568,3.0241585000000004,3.0241585000000004,2.8520366666666668,2.8023933333333333,3.403869743589744,3.8326666666666664,3.4247666666666667,2.6417733333333335,2.20467,2.129373333333333,3.0969433333333334,2.2427575,2.45346,1.638438,5.756303,8.810826500000001,0.5446476923076923,0.5446476923076923,0.5446476923076923,0.641749965034965,0.641749965034965,0.5446476923076923,2.9832,2.9721666666666664,4.138181666666666,1.3679016666666666,1.65746,3.2885679999999997,2.5025233333333334,3.0462066666666665,2.25432,2.882896666666667,3.5002,6.736056666666666,3.166463333333333,2.5470466666666667,2.906973333333333,4.88646,2.28017,3.4088,5.79199,2.3703766666666666,3.385066666666667,1.3830433333333334,1.3830433333333334,2.8380500000000004,0.525728947368421,2.2645433333333336,2.6724,2.95433,3.2077000000000004,2.2460633333333333,1.4306733333333332,2.5959033333333332,2.797,2.4289866666666664,4.17055,2.4625296666666667,3.450535,2.59753,2.993025,0.48316499999999996,7.0818,2.915134,2.915134,7.706063333333334,1.7331633333333334,1.7762366666666667,3.0126666666666666,4.23134,2.3812,1.8786100000000001,2.6151466666666665,1.422745,3.4450333333333334,1.8348366666666667,2.9859095,1.4121825,0.27092363636363637,0.27092363636363637,4.816425,3.967825,3.13814,2.7856133333333335,2.78786,3.20774,1.3516733333333333,5.6142,3.601625,3.05345,1.8241675,1.21803,2.31404,3.0126666666666666,2.77523,2.01019,6.052475,3.748715,4.245475,3.907825,2.20835,0.6640716666666667,6.648065,2.0670175,1.5505275,3.463975,4.21471,2.283245,1.7646333333333333,4.539855,4.03475,3.2977066666666666,3.0730633333333333,4.06556,4.230985,3.4911,2.520328,2.520328,3.81171,4.69736,5.35765,6.37077,2.6010966666666664,3.942825,1.4303428571428571,2.4603625,5.406077333333333,3.678735,1.8958439999999999,5.13175,3.5939224999999997,3.599855,2.18923,4.19208,4.71678,4.70061,4.55197,2.435093333333333,2.43418,3.5629666666666666,2.0894166666666667,2.4681475,2.63707,2.4916666666666667,0.715026,2.66101,2.83382,1.8825876666666668,4.60727,4.57467,4.783145,3.610535,3.462735,4.909845000000001,11.880665,4.79792,3.655185,4.31324,4.023375,4.510435,2.89725,3.042556,3.5126333333333335,1.2278275,2.810165,3.024025,4.623345,5.3198,4.364345,3.4549333333333334,3.148233333333333,2.3227166666666665,4.2962,3.6892424999999998,3.6284666666666667,3.6892424999999998,2.18607675,2.2846800000000003,2.3585016666666667,2.0936175,2.60868,1.84683,0.8283,1.3365566666666666,1.9193466666666668,1.9108666666666665,1.7185966666666666,1.33283,1.7253266666666667,2.7335999999999996,1.51584,3.26637,1.44078,1.63458,2.683135,3.900866666666667,2.5345299999999997,2.20362,2.3039533333333333,3.264185,2.211785,2.950476666666667,3.2205433333333335,2.2850766666666664,3.1108533333333335,3.1654575,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,0.16706290322580647,5.0727,3.09547,1.0004314285714286,3.127103333333333,2.5318166666666664,2.86533,3.188485,3.1729866666666666,4.572335,3.3789119999999997,1.505014,3.08825,1.7859333333333334,0.96978625,0.9400890000000001,1.6235833333333334,0.8978916666666666,0.7980616666666666,1.346716,3.17979,1.483204,1.5510533333333332,1.8975544444444443,2.1506066666666666,1.3766,1.222475,1.5374283333333334,0.9168866666666666,1.260365,0.7949350000000001,0.845724,3.159635,3.61244,4.27596,4.45534,4.01458,3.0670699999999997,4.527075,3.5161,1.9866,3.551585,2.051,3.40848,2.1378133333333333,0.8065045454545454,4.265575,5.0964,2.028653333333333,1.32423,2.965345,3.42063,3.651535,3.0048733333333337,2.599825,0.8744025,2.2396575,4.9684,3.750205,2.48208,1.522695,3.76808,1.86185,0.6051818181818182,4.39034,4.35163,4.125185,2.362005,1.414452,3.385805,4.47486,2.6051066666666665,2.5675433333333335,2.506603333333333,2.6993899999999997,2.781893333333333,2.7306566666666665,3.0747366666666665,1.2672875,2.68065,2.524286666666667,5.23725,4.294175,3.66462,4.55231,16.05086416161616,4.416535,4.554417333333333,3.01683,4.14498,4.938045,1.559466,1.88945,2.31656,5.5363050000000005,3.417645,3.261735,6.50915,2.31656,3.936215,2.073265,1.9508833333333333,2.86369,2.6550766666666665,1.1745616666666667,4.107955,3.751405,2.737855,4.18182,2.48151,3.036766666666667,3.62141,3.65068,4.351525,3.52366,2.82709,3.649765,2.56449,2.500106666666667,1.17863,1.17863,3.271183333333333,2.4217066666666667,0.3728535714285714,4.7229589999999995,0.9497479999999999,2.715375,3.568305,0.5659375,4.609965,7.822235000000001,1.8137125,3.62977,3.428065,2.5768133333333334,3.377825,2.53055,3.0079,3.55286,4.16181,3.213965,3.8911333333333338,0.9715250000000001,11.494163,2.753805,2.91309,5.94415,2.60836,3.873495,7.627531666666666,4.2615,4.00554,3.90033,4.084045,5.505635,1.625145,2.6873066666666667,4.503135,3.708466666666667,1.859466,3.79564,3.376255,3.5831,3.95552,4.1563,3.7875,2.44128,4.25179,3.759425,5.17465,3.319945,2.2123500000000003,2.2199966666666664,2.120763333333333,2.965116666666667,1.3331933333333332,3.5071666666666665,0.8762281818181819,3.1664999999999996,3.1662199999999996,2.5588933333333332,1.5496366666666666,4.270405,3.951605,4.155065,1.9478825,4.53662,3.750575,0.7198741025641026,0.3329407692307692,4.29316,5.4708,0.95849375,0.3329407692307692,4.37064,0.7198741025641026,0.7198741025641026,0.3329407692307692,5.92695,2.60085,2.2786133333333334,5.3905,3.35747,3.1663,0.8217522222222222,3.06614,3.77383,4.7037,5.5534,2.191275,0.7228546153846154,4.261651666666666,2.0650066666666667,1.37941,1.858385,1.03211,2.253503333333333,2.239803333333333,3.622095,5.1916,2.7374266666666665,2.89209,2.7246733333333335,2.1592233333333333,2.9036,4.4552375,1.69827,1.975555,3.96877,5.1013,2.117151388888889,5.1185,2.85717,4.12827,4.094965,3.08881,1.2492075,3.265255,6.75885,3.847305,3.48145,5.1791,6.4168,2.15781,3.082295,4.636665,3.32902,3.54137,8.2429,3.757935,4.2742175,2.291645,1.165485,2.515493333333333,1.977255,2.47691,2.117195,4.02257,0.6464142857142857,3.19308,3.858645,1.8919666666666668,2.9349366666666667,4.935225,3.124,2.62812,4.18605,4.987235,9.215082333333333,2.69005,2.57035,1.668358,1.3719533333333331,1.2057433333333334,1.42413,2.7199066666666667,2.4306633333333334,2.8451066666666667,4.241686858974359,1.6835525,2.42217,4.899635,5.30005,3.67957,3.45599,3.004985,2.623715,2.095135,2.27618,1.8480833333333333,1.94175,3.278045,3.643,4.7816,5.03415,4.053805,5.405097083333334,3.351175,2.354975,6.520417916666666,3.20528,8.66853,4.842630833333333,4.842630833333333,5.465615,1.5977766666666666,1.39818,1.4533866666666666,0.739179,4.952075,3.8969666666666662,3.2761225,3.2761225,2.10392,4.508435,4.29934,4.436465,4.115785,2.8840299999999996,2.592805,3.52163,3.0940499999999997,5.2396725,3.69451,0.7696490909090908,5.2422,5.11215,3.94155,4.830245,2.9038,6.09815,4.23739,0.8051999999999999,5.2884,6.94752,3.119555,5.627,5.7538,3.51041,2.80373,3.70154,6.07635,2.0919975,5.7462,1.9102225,4.54183,2.5122733333333334,2.254,0.9015470000000001,2.769685,5.88975,3.419305,3.729295,1.9344299999999999,4.7445,8.026653333333334,3.523925,4.123845,2.75479,2.80586,0.84676,4.616655,1.6115483333333334,3.4737975,3.4737975,3.888775,2.3474533333333336,2.9337999999999997,3.726605,1.8875075,2.83175,3.254906666666667,3.1239066666666666,2.82845,4.080875,2.982825,1.877675,3.16051,2.11767,3.0045066666666664,1.9388133333333333,3.0353,3.2163299999999997,1.398737142857143,1.4815233333333333,0.594005,1.3395416666666666,0.594005,0.594005,1.4815233333333333,0.594005,3.4537666666666667,2.5428100000000002,2.5428100000000002,2.76567,4.313185,3.868095,3.984305,5.2859,5.3497,3.522965,3.68327,4.053725,1.8364725,2.3158060000000003,2.41424,0.8165690909090909,5.66935,3.06874,3.07382,5.51805,4.0961725,4.68513,3.34651,2.690253333333333,2.84568,3.456565,2.49137,2.91906,2.07673,5.2342,0.8621533333333333,3.69003,1.1523785714285713,3.53339,3.104703333333333,2.8083233333333335,3.98054,3.83284,3.744425,4.334695,3.90091,3.952895,4.305215,4.21084,2.474175,2.70315,3.2218666666666667,4.217795,2.733925,3.27565,2.586065,2.94561,3.0849100000000003,3.51793,4.903365,4.64288,4.02991,68.32805082048507,2.6809966666666667,3.75095,16.070438666666668,4.07167,3.00774,2.1343633333333334,2.0111966666666667,2.6239933333333334,4.4102925,2.9558400000000002,4.146228333333333,5.6521,3.356345,7.25397,5.24245,1.98659,3.29048,3.55131,3.388495,1.858654,1.00944625,4.76539,2.4734,5.792728333333333,3.63928,2.254156666666667,3.441745,3.41901,4.500085,3.017105,5.489865,4.347495,3.38392,3.1505,2.47011,2.767865,5.896,2.4358,3.651785,4.257237083333334,1.2121183333333334,2.452465,5.0508275000000005,3.454555,3.07068,3.60973,2.85232,4.038925,3.13083,2.516245,2.783325,4.46666,3.115945,2.90376,4.578155,9.02552,3.2009600000000002,4.097815,6.15268,3.054005,2.00672,4.182053750000001,1.9603833333333334,2.912646666666667,2.885784,3.220905,3.17975,3.092615,3.09503,3.25875,4.022675,3.932395,4.251635,3.67143,3.041595,3.468225,2.7318249999999997,2.7318249999999997,6.739771666666666,1.608425,3.360135,3.28709,2.426435,4.593165,4.19814,3.020705,3.46898,4.12935,5.884107500000001,0.6278372727272727,3.82603,2.4306,2.8843566666666667,2.5378133333333333,5.08275,2.7152600000000002,1.93978,1.09348625,2.065675,4.207795,4.8832,4.22094,5.7544,5.4614,5.6235,2.71901,1.8514433333333333,4.11817,2.5752,2.859246666666667,1.8990233333333333,1.2355916666666666,2.8507866666666666,3.1502199999999996,1.3849420000000001,2.2843066666666667,2.2042477142857146,3.479083186813187,2.75669,4.953315,3.411655,1.3026425,3.05243,3.540015,5.71195,4.933345,5.8955,4.713025,2.122523333333333,1.5428766666666667,0.5955985714285715,1.55636,3.49619,2.58229,3.6243133333333333,1.4161933333333332,2.575305,2.468435,3.55151,3.478235,3.705595,4.0401325,1.6071475,1.38689,1.8886875,2.0463575,1.3447225,2.603725,6.640514083333334,4.79788,3.332045,2.992905,6.9137450000000005,4.64235,3.21968,3.098215,3.295665,2.753095,3.93344,2.34688,7.33581,0.9039866666666666,3.073035,6.6317,4.02969,4.65158,6.09485,1.5282499999999999,3.1219366666666666,2.8516333333333335,2.8435733333333335,1.5007625,3.942715,8.50104,3.273415,4.954945,4.00611,3.206575,4.738785,0.8880033333333334,2.83074,5.44815,6.159273333333333,4.99173,5.57375,3.26646,3.733166666666667,2.592496666666667,5.07765,4.67241,3.6875675238095242,3.6875675238095242,0.6873428571428571,3.6742666666666666,0.947048,0.6138366666666667,1.754815,3.6800333333333337,3.8834020000000002,5.366473428571428,2.9563166666666665,3.4558854285714284,3.1206080952380955,2.5219566666666666,3.1096866666666667,4.4937,3.5594200000000003,1.95465,1.95465,3.623375,3.0533333333333332,2.7741466666666668,3.514395,3.391666666666667,0.5818455555555555,3.14668,2.58435,2.452106666666667,2.65123,2.52035,2.52922,3.1859366666666666,2.792783333333333,0.811731,2.5586699999999998,6.410704952380952,2.10996,7.403924166666667,1.6016439999999998,1.6016439999999998,3.375436,3.3744,3.3434333333333335,2.7809866666666667,1.6905899999999998,1.2911985714285714,3.28405,3.310893333333333,1.4866533333333332,1.5654714285714284,2.7875433333333333,2.6417159999999997,2.55697,1.88201,1.865165,2.72392,2.27279,2.805495,3.29431,1.62827,3.49151,3.264535,6.5858550000000005,3.3809,1.657165,2.970555,2.5898,2.142735,4.005465,2.350956666666667,2.51916,7.09666,0.7917,0.7389833333333334,4.52346,1.519706,1.519706,3.570555,2.504575,4.28044,3.20267,1.33692,2.4516746666666664,2.8964233333333333,2.453161333333333,5.11515,4.95104,2.49707,2.05933,1.388207142857143,1.388207142857143,1.9694166666666666,3.865895,4.022733333333333,5.6368,3.063086666666667,4.62263,4.14389,6.6812,4.28147,2.53709,2.846636666666667,2.671386666666667,2.729893333333333,0.7387722222222223,0.7387722222222223,0.7387722222222223,3.00101,4.1393,3.91658,1.257,1.257,4.987445,5.48765,6.10099,21.464379222222224,11.3474,7.83875,2.452305,5.57275,2.242185,4.18337,2.4555533333333335,3.1289433333333334,3.8671333333333333,5.281672,2.06006,1.763175,6.07187,1.9942119999999999,1.9942119999999999,6.29895,3.216485,4.3316,2.0049,4.6922435,4.440905,3.345325,4.813155,3.63003,0.8361366666666666,5.8484,7.71315,0.8361366666666666,2.0049,2.15692,0.84565,0.84565,1.694702,2.32528,1.694702,4.39685,5.43225,5.9772,8.46132,2.0049,11.585412833333333,5.68015,5.8708,2.242185,3.451285,4.37844,8.3818,3.2476041666666666,3.43879,5.742,3.10058,4.395995,5.92045,4.42952,4.7632,4.85381,2.85819,4.8226,3.42368,4.529215,4.5363,0.797525,1.4540760000000001,3.078265,5.42225,4.701155,2.6082433333333332,2.0312625,4.035855,4.67076,5.7895,5.33625,5.1906,4.430415,3.31323,4.28697,3.790955,2.13757,5.02168,2.138785,2.746755,3.52368,1.6427766666666666,4.05901,3.8291,3.61243,3.6370233333333335,2.87564,6.686495000000001,0.933008888888889,3.40851,2.505045,1.1584871428571428,5.081726,1.46122,1.56461,2.44921,2.7449215000000002,2.7871,2.7652466666666666,1.66036,0.7363672727272728,2.1459633333333334,2.77577,3.544745,0.6951553846153846,5.37203,1.71174,1.114002,3.3670000000000004,1.114002,3.701325,0.9366818181818182,4.500385,3.17876,2.412505,5.34324,4.542445000000001,4.542445000000001,4.67673,2.5282,2.9593966666666667,2.706026666666667,1.435124,3.883035,3.451555,1.9603133333333334,0.6923875,6.785608717948717,2.88551,3.957575,4.425445,7.52668,2.16617,4.15034,3.80641,3.188265,3.48374,5.48205,6.3272775,4.335465,4.86408,5.20275,2.9306300000000003,4.82805,4.19384,4.495015,1.0834477777777778,0.4705964285714286,3.12792,3.4039333333333333,2.7908666666666666,5.3886,3.852875,4.168785,4.4237,4.97804,4.39855,4.142275,1.17418,2.284935,8.406315,2.3024833333333334,1.9706733333333333,3.7668085714285713,11.340229464285713,1.5510625,4.514555,6.3917,5.034,3.4684333333333335,2.1509933333333335,3.336733333333333,4.008545,1.0962016666666667,3.1745300000000003,3.33533,0.34218894736842104,2.05762,4.54024,4.043575,2.20299,4.1384,2.88988,5.016525,1.3349399999999998,0.5182318181818182,3.681585,1.0838414285714286,0.99718125,0.99718125,0.99718125,0.99718125,1.6338583333333334,2.6766666666666663,1.9321466666666665,3.3571333333333335,5.2135,3.632766666666667,5.3315,3.71487,4.212025,3.769165,3.833105,1.4651500000000002,6.76914,2.590245,4.553835,5.157769999999999,4.94692,5.025434166666667,2.378836666666667,2.3015266666666667,2.5928633333333333,3.32592,1.2251,4.554151666666667,2.6657966666666666,4.94302,3.058566666666667,2.4392133333333335,3.731105,3.34747,3.0024,2.460386666666667,2.8502533333333333,1.56833,0.41313444444444447,4.014565,3.564205,4.12396,3.444645,3.881615,5.7704,4.27941,0.5385653846153846,3.117916,7.131142666666667,1.9518466666666667,2.06138,5.469455,6.0703,2.72507,4.660545,4.627965,4.224085,3.97612,4.171735,5.3318,5.69755,5.13555,3.51044,5.222008499999999,1.48089,1.58198,4.436735,4.10004,3.935595,3.21729,5.22585,4.79451,3.85467,3.24944,15.16899401965076,1.26008515917603,1.081895,1.6924386363636366,0.503815,0.48577933333333334,1.3114625,0.2927988235294117,1.313204,3.1964433333333333,1.768716,0.8738250000000001,1.8370841666666666,0.7947866666666666,1.8370841666666666,1.8370841666666666,0.7947866666666666,0.7846307692307692,0.5456392857142858,2.62404,2.6524733333333335,4.65559,3.877215,2.8129933333333335,2.695325,4.31629,4.54661,4.846915,2.833145,4.28199,0.6811292857142857,2.3294906666666666,7.928046666666667,4.1396,6.579685,2.88029,4.25758,2.370255,5.28455,5.4973,4.728145,4.348295,2.717005,1.010505,4.103085,4.775155,1.2609439999999998,1.281058,1.5344266666666666,2.3846133333333333,1.9057233333333334,5.2615,5.4777,2.30521,2.30521,3.6232841666666666,6.41762,2.0989033333333333,0.6581327272727273,0.8241242857142856,2.5382866666666666,3.3825333333333334,0.9473871428571429,0.9473871428571429,0.9473871428571429,0.3671992307692308,1.0619871428571428,2.9511,6.05845,3.820933333333333,4.2005825,5.04935,1.02044,3.4726,3.2456300000000002,3.879433333333333,5.74225,2.5166133333333334,7.3801,4.80438,1.1151222222222221,3.8560666666666665,1.7818619999999998,2.67955,2.421206666666667,6.803913333333333,3.2535966666666667,4.394655,2.2441425,4.60543,4.343015,4.90021,0.5007933333333333,3.01215,1.48674,2.65692,3.840543333333333,2.0746766666666665,2.8043066666666667,2.563353333333333,2.603893333333333,2.73401,2.8195266666666665,2.655883333333333,2.9116166666666667,1.30511,2.4558166666666668,1.9704833333333334,3.3043899999999997,2.685366666666667,2.16583,1.7857033333333332,1.9167233333333333,1.7223775,3.331985,2.1306033333333336,1.9932433333333333,1.93292,2.394956666666667,2.31353,0.6959500000000001,0.6959500000000001,0.6959500000000001,2.478596666666667,1.95123,3.02957,2.2795733333333335,2.5469766666666667,1.9772100000000001,3.578875,3.5311233333333334,1.32264,2.461393333333333,2.749143333333333,3.8951833333333337,1.5626,7.241408333333334,4.491545,3.30914,4.00455,3.49268,1.323495,0.8242357142857143,3.218705,3.71887,3.8951833333333337,3.94521,4.15648,4.516915,2.79993,3.712395,3.91396,0.8679919999999999,2.73208,3.36357,5.100884166666667,4.587895,3.57469,3.084355,2.37417,2.2244966666666666,2.397413333333333,0.6366741666666667,5.064619166666667,2.74595,3.8214,2.657033333333333,3.813221666666667,3.121966666666667,2.410623333333333,2.8994980000000004,2.8994980000000004,2.5578366666666668,2.19725,2.4780666666666664,1.9989233333333332,4.00936,1.406232,2.582005,3.6993,3.955365,3.883825,5.19485,3.69264,2.445135,2.110685,3.200905,2.81473,2.823565,5.10545,2.771535,0.9368114285714286,0.9368114285714286,4.408295,4.005279,1.029874,4.252635,1.029874,3.71541,4.74943,4.87399,3.090905,3.07383,6.37045,4.05122,5.7296,0.8569071428571429,0.8569071428571429,2.0572399999999997,4.474906666666667,1.5174816666666666,2.957425,3.415345,1.094312857142857,3.875165,3.82037,5.42865,5.42865,1.0301433333333334,5.5823,5.1956,5.14005,6.1229,1.9552575,1.9552575,7.02245,0.9374363636363636,7.25275,1.9822925,6.3668575,2.624865,2.431016666666667,3.450545,2.2508,2.145043333333333,2.21618,2.9421366666666664,2.497364761904762,6.2280299999999995,1.7836159999999999,4.97096,2.829753333333333,2.4679733333333336,1.92832,2.13513,3.221065,3.573855,3.543235,2.88513,2.53598,2.123725,2.84142,1.094754,3.143645,2.50363,3.12035,2.221897,2.221897,3.325365,1.8262433333333332,3.70325,3.40258,4.82349,7.169651666666667,4.053165,3.558515,6.299568,1.9936566666666666,3.1631766666666667,2.05984,1.4602714285714284,1.7204725,4.07952,1.5716116666666666,0.502068125,0.6385483333333334,4.4358,4.62428,2.8852,0.9623155555555556,2.8648,3.003026666666667,4.838355,1.7543399999999998,2.00274,1.1252333333333333,4.540305,2.454515,4.32563,0.801401,4.175422083333333,4.187465,3.59712,4.24113,3.386665,3.791735,2.8161166666666664,5.3065,3.583395,1.7820366666666667,2.732943333333333,5.805663333333333,6.1314475,0.7021975,3.780995,4.405395,5.19815,3.5937333333333332,3.7354333333333334,2.711925,3.1743466666666666,3.7787666666666664,6.17061,2.6417159999999997,2.577834,3.900985,2.729085,2.429285,2.4639125,8.396506666666667,4.38501,1.9202333333333332,4.88638,4.665565,1.786252,3.836275,1.286625,1.5654571428571429,4.299205,3.674165,4.58023,2.45105,2.995275,3.214045,4.994715,3.70841,3.39129,3.10874,3.46211,3.867035,3.9221700000000004,1.113397846153846,1.113397846153846,7.70357,0.8145875,2.3675029563492065,0.8145875,0.7325883333333333,0.5998477777777778,3.1000912896825397,2.43546,0.5952914285714286,2.3675029563492065,2.00956,3.415845,2.504799861111111,3.664425,4.546395,6.787435,1.98352,2.051935,2.06893,4.20912,5.71755,1.945145,1.6903825,1.237875,2.9282575,4.04721,2.86984,4.452375,6.37094,0.42421722222222225,3.64455,0.713486,2.8383766666666665,2.2593125,3.471255,1.2482033333333333,3.941585,4.576825,3.93011,2.9418,3.94909,5.077780000000001,1.55138,3.58754,0.5916707692307692,2.564605,2.442335,1.12197,2.8330866666666665,2.5459,2.536776666666667,3.77964,8.136275,2.8169781818181816,3.743965,3.51518,6.996315,5.3644875,3.147933333333333,4.26636,3.67063,5.5555,4.212635,5.31985,4.630775,4.092595,4.832665,4.077366666666667,1.45789,1.8137866666666669,2.38623,3.66698,2.5011533333333333,0.2005935135135135,0.2005935135135135,0.2005935135135135,29.311532476190475,0.2005935135135135,2.9576935135135134,0.2005935135135135,0.2005935135135135,0.2005935135135135,3.2761435135135133,4.150625,0.2005935135135135,0.2005935135135135,0.2005935135135135,0.2005935135135135,0.2005935135135135,2.93014,5.92368,3.075055,0.22646,0.22646,4.29088,3.9747162083333336,4.041236875,3.3456363194444445,4.020775714285715,8.001066666666667,11.375358813131314,5.812886333333333,7.976706666666667,7.5204747321428576,2.8380500000000004,6.153336190476191,4.1708783333333335,4.264512083333333,0.22646,7.758353333333334,6.651846000000001,7.103255,2.649375,8.862784732142858,13.646610922619047,17.972331169871794,55.864117279805164,116.0187747649034,1.3830433333333334,3.385066666666667,3.373875,3.848315851994852,0.22646,1.5589666666666666,8.640107291666666,14.705718523809523,19.920012222222223,47.79557397410192,13.31260056547619,3.163525,0.22546689655172414,0.22546689655172414,4.53054,2.7174833333333335,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,0.22546689655172414,4.83317,0.22546689655172414,0.22546689655172414,0.22546689655172414,2.640145,2.05806,3.68447,3.696045,4.221828333333333,5.06535,1.8892125,4.203265,4.293115,2.88882,1.4871366666666666,3.31414,1.0072966666666667,2.2966425,1.9665866666666665,5.017776666666666,6.00565,2.505316666666667,5.7631623888888885,0.5284694444444444,0.46787533333333337,2.48832,2.8399733333333335,2.848405,4.011385,3.3782,7.355835,3.689635,3.743365,3.452825,4.019115,3.12881,3.188495,5.5616,2.12517,0.43747615384615385,0.8139281818181818,4.2742,1.7745825,3.79704,3.800625,4.32642,3.71913,2.4309,2.683425,0.6152826666666668,0.750417,4.279865,2.5838300000000003,5.3805,3.58524,3.693201666666667,2.692125,2.88015,5.98385,4.599905,3.30371,0.8454209090909092,3.4089333333333336,4.267995,2.297905,0.9472025,1.5124466666666667,4.133055,6.51805,1.869135,3.116035,3.877015,5.7627,2.504915,2.2215366666666667,2.47217,4.768555,2.48897,4.07821,0.7335171428571429,2.1133633333333335,3.205915,1.99405,6.086503333333333,2.195585,4.070215,4.66134,2.97491,1.97377,0.5222454545454546,4.266695,5.01345,6.7669,3.546545,3.85884,4.98824,3.06386,1.9706200000000003,1.2049414285714286,4.991415,2.04781,2.60572,8.75679,4.15738,5.2176,3.54401,0.7765644444444445,3.09014,1.224607142857143,3.211035,6.1119,4.91167,5.01195,3.586225,5.11375,4.285755,1.60253,1.7683633333333333,5.05475,2.9342966666666666,3.3443666666666663,2.4013025,5.22675,4.311655,1.4459366666666666,3.5515000000000003,2.84695,2.78779,3.868595,8.87476,4.687585,1.70152,4.67923,6.40031,4.4105825,3.919755,4.1561,3.980835,4.52666,8.017645,2.3875800000000003,3.102445,3.216255,4.301295,2.71708,2.953145,4.750435,4.311605,3.48333,3.7973559999999997,18.464985,2.786936666666667,2.4808666666666666,3.3118966666666663,5.58329,1.14225375,4.161385,2.1494524999999998,4.70431,1.3683383333333332,4.27324,4.28076,3.5255,0.97553625,4.49025,4.490185,1.76681,4.583788181818182,4.04344,1.04206,3.357535,1.74926,2.54312,1.596415,4.27147,3.820955,3.73327,3.648385,2.9404,4.285875,8.022158333333334,4.29823,4.326355,4.65571,3.132493333333333,3.86663,4.735405,6.2364180000000005,0.9607060000000001,0.9607060000000001,4.44129,4.681975,2.20748,1.3607383333333332,7.182785000000001,4.203905,3.757045,3.91219,4.70267,4.47293,3.767295,3.905125,6.508812000000001,4.082493333333334,4.652795,4.80837,1.425892857142857,2.655425,4.298495,4.60051,3.3123537499999998,0.20194638888888888,1.485915,2.076855,2.4999233333333333,2.0450399999999997,0.9513433333333333,1.515355,1.4595875,2.4123733333333335,0.6043266666666667,1.044592857142857,1.8470725,3.89892,3.9143333333333334,2.048313333333333,2.57288,2.9127500000000004,2.868843333333333,0.704326,0.944725,3.127995,4.5767,4.31955,3.12518,4.23203,4.458525,4.196415,2.10782,4.34541,4.842045,4.333475,6.1626575,3.612875,0.4997747058823529,5.32875,4.46847,3.49297,4.76584,3.060095,1.998714,3.80675,3.974045,2.829275,5.267359166666666,4.49788,1.4239516666666667,5.267359166666666,4.111825,6.7893075,3.70125,1.1685444444444444,3.85844,4.93739,4.05738,2.55805,4.97292,1.50096,1.994305,3.252505,3.45903,0.8064111111111111,4.77282,4.788595,3.53314,3.88489,3.3744666666666667,2.93007,1.718958,1.6663025,3.177435,3.38194,3.3739666666666666,2.40802,2.3058175,1.9416986666666665,3.69406,1.3132342857142858,0.8131688888888889,5.5626,3.9006,1.456846,2.58151,2.25636,2.9313933333333337,6.02918,2.194008888888889,0.8176589999999999,2.55168,3.99228,2.0496366666666668,4.09756,5.09065,5.3657,4.35292,4.126555,4.77076,2.1146833333333332,2.3255933333333334,1.6952133333333332,2.1415533333333334,1.890015,2.3149666666666664,2.212543333333333,1.621605,2.731835,3.05629,4.367865,6.4084,4.49184,3.972195,4.32481,3.85584,3.87783,4.961385,0.8996475,2.936503333333333,4.635455,1.2254619999999998,0.6424193333333333,4.971785,3.488355,2.54111,3.52289875,6.095504999999999,5.47645,0.958319,1.1950157142857143,0.68743,4.096443333333333,2.182586666666667,2.8323699999999996,1.1559085714285715,2.7206233333333336,2.5572433333333335,5.46815,4.649655,4.3252,5.10835,4.10678,1.2428116666666666,3.63892,1.74399,3.50356,3.8333,3.32821,2.3663766666666666,3.26153,2.77304,4.09808,3.913365,3.20266,2.363395,8.691320000000001,10.0767975,4.06688,1.3923271428571429,5.3598,3.96905,4.876595,4.498765,3.538405,3.847685,3.469975,4.203085,3.4563325000000003,4.54298,3.69617,3.57596,4.58259,1.8142099999999999,4.81992,5.71125,4.869835,3.3373,3.3081300000000002,7.25135,0.8007958333333334,2.5298133333333332,2.69205,2.3547033333333336,5.0476,3.440755,1.2273583333333333,4.22407,3.30292,3.7408,4.74827,4.1358258333333335,6.417641,3.1405666666666665,2.947846666666667,3.0542233333333333,2.8453999999999997,4.021195,1.8966900000000002,2.17413,2.951283333333333,3.871565,3.675088333333333,1.922555,1.53596,3.1067367857142854,3.0693805000000003,0.9520333333333334,2.4862466666666667,2.4862466666666667,1.20276,5.664,3.152665,3.52418,3.48431,3.120485,3.50111,3.36569,3.24384,3.115515,2.2419266666666666,0.528572,3.223345,5.52355,3.002175,3.850325,3.231255,3.968215,4.041125,3.073115,2.87139,3.6784,3.73259,2.959495,2.861965,3.388885,2.59944,4.144785,3.940315,8.71249,3.484145,3.60342,3.09074,3.93791,4.124245,3.566335,2.33849,3.70478,2.7534549999999998,2.87608,2.89001,3.105505,3.80189,1.7459233333333335,1.7459233333333335,2.31102,2.829605,3.145775,1.568688,2.45555,3.34622,1.8683520000000002,2.882755,1.568688,4.28553,3.039915,3.83896925,2.94728,3.46629,2.510545,3.26136,3.96696,4.13752,3.42289,4.26894,3.740785,4.229905,3.5522,3.12209,3.260965,3.10443,3.99373,2.6900099999999996,3.78381,5.1632,4.21819,3.672995,0.33199,3.530875,0.45340416666666666,3.48079,3.620815,3.105245,3.47506,3.73161,5.774573333333333,3.11388,2.5189,2.3004933333333333,2.851573333333333,0.679508,6.644753333333333,3.30122,3.358475,3.578895,2.126285,2.74767,3.238895,3.35343,6.688805,4.662035,4.849195,4.5435,4.310165,4.292195,3.762475,1.4246066666666666,1.6359000000000001,3.83244,4.546395,5.8152075,2.2899766666666665,4.897025,1.80379,3.3923,4.007085,1.9170259523809525,4.07421,4.7713775,3.551766666666667,3.737133333333333,2.767303333333333,4.441565,4.60335,3.395433333333333,4.371965,4.336225,4.875815,4.24386,4.424775,3.67167,3.048155,4.110685,2.5249,3.1908366666666663,3.1908366666666663,4.20068,2.56171,3.86467,2.4543633333333332,4.439295,3.15602,3.82097,1.765735,1.8894333333333335,1.2246233333333334,1.2246233333333334,1.54786,3.4208,1.73372,2.672686666666667,4.085065,5.076474,3.26266,4.07597,6.32788,2.43124,2.813525,3.0039700000000003,1.60389,4.11869,4.001495,6.172655,1.7532699999999999,5.22825,5.5828,3.4128000000000003,3.45453,4.24496,6.37795,2.0674233333333336,2.322545,3.76506,0.5838685714285715,3.78101,4.00849,4.332085,4.216175,2.90384,1.3753119999999999,1.640178,3.943265,3.168305,2.4061733333333333,3.77775,4.83004,5.12805,1.01983,3.248265,4.65664,3.63514,4.53957,2.48967,4.97047,3.765245,1.575726,3.363875,1.2704466666666667,2.727926666666667,7.347738333333334,3.270235,0.6380627272727273,3.308735,4.066065,3.82223,1.7752675,1.7752675,5.224141666666666,5.66245,2.980645,0.49776888888888887,1.914185,4.509549999999999,4.0934,4.316905,1.797512,2.86385,3.279585,1.1300210526315788,1.1300210526315788,1.1300210526315788,0.8157852192982455,1.3623818859649122,0.5465966666666667,1.1300210526315788,0.8157852192982455,0.28024105263157895,0.8268377192982457,0.28024105263157895,0.5355441666666666,0.5355441666666666,0.5355441666666666,0.5355441666666666,1.0933701666666666,1.07895875,2.3447766666666667,2.3300383333333334,1.0926150000000001,6.201546666666667,2.599936666666667,5.642715,2.10582,3.637085,2.82835,3.45407,2.670628333333333,4.66389,2.7560566666666664,4.077975,4.193035,4.472075,2.154265,3.71332,4.82437,4.00976,3.29296,5.04735,3.42095,4.552575,5.4675,4.980035,6.2266,5.1832,1.1217975,4.54864,3.742725,2.931,15.590175,4.47913,5.01855,2.53572,7.54669,3.927205,4.25046,4.76666,3.268055,1.0488575,2.582975,3.857015,4.21159,3.361495,3.300285,4.048405,3.0081399999999996,4.64383,4.574975,3.990695,6.480558333333333,7.398336666666667,1.2897757142857142,3.690565,3.898335,3.676445,3.798025,3.64522,7.1876,2.80926,2.68822,2.62567,3.942525,3.76753,4.4617,2.31662,1.8346825,0.994974,4.23094,3.57948,3.5642,3.88982,3.505405,4.78623,4.18228,6.5958,5.98595,5.4421,6.6502,3.77757,3.155505,3.21999,3.353065,1.9005725,4.49745,5.5116,6.10715,5.496438333333333,5.496438333333333,2.558795,1.9005725,2.039745,2.857485,0.79702,1.740745,0.943725,1.4928825,2.556215,0.402191,2.87847,4.20728,1.4928825,2.9376925,11.0435,6.5605925,2.307945,1.05332,2.14812,4.444985,4.217685,5.687396904761904,1.9791375,2.33785,3.648505,3.40231,4.57076,1.5025300000000001,5.20685,3.471966666666667,3.24055,5.07895,7.207688,3.73069,2.3373,2.7916733333333332,1.4608533333333333,3.90696,4.8573075,1.754232,5.6062,4.373115,5.836214,0.5343753333333333,4.452716666666666,4.601125,4.80163,2.37471,2.741325,7.3151,7.851116666666667,6.47005,1.9583666666666666,1.9583666666666666,1.9583666666666666,4.214865,4.6657,6.08865,3.352425,2.798825,2.6426315789473684,4.14302,4.827795,2.6543745,1.991705,2.6543745,7.0259944999999995,4.835990000000001,4.732072380952381,6.96706,4.732072380952381,4.732072380952381,3.524705714285714,7.01831,5.497391,2.7930460000000004,2.7930460000000004,2.671485,7.08815,2.730575,3.503675,5.29955875,5.29955875,5.29955875,8.29909,3.55892,3.487745,3.6298425,3.4875025,0.83135875,7.486296666666667,2.650306666666667,6.6262,3.51594,12.698288999999999,4.76295,5.317126666666667,6.99954,2.556471666666667,3.303635,1.119,5.317126666666667,3.3622,1.6670975,1.6670975,2.75747,5.395933333333333,1.81121,5.000501666666667,0.8452970000000001,1.5362683333333333,0.8452970000000001,1.9317,2.656507,5.3178920000000005,3.833255,1.5362683333333333,3.287295,4.730655,1.0098,3.445045,4.524805,1.98023,4.059195,2.571915,3.20573,2.918225,1.03142,3.748865,2.64186,2.48698,1.8526166666666668,3.424266666666667,3.814535,3.42116,3.665005,1.2873166666666667,1.2873166666666667,1.2873166666666667,4.120565,2.85798,2.85798,2.899315,3.77392,2.22084,1.2845275,1.2845275,3.031695,6.1452475,1.0183975,1.49608,2.89168,1.7057183333333332,3.2017983333333335,1.03142,1.03142,1.9733049999999999,1.03142,3.5117233333333333,0.9580833333333333,3.5117233333333333,5.68129375,3.429815,2.52239,1.5565370833333334,0.69789,2.2544270833333333,3.535135,2.2544270833333333,1.0084133333333334,3.514585,3.861395,3.81281,3.54206,2.44044,3.730325,2.2860533333333333,0.9129273611111111,0.50700625,0.9129273611111111,0.4059211111111111,0.9129273611111111,0.9129273611111111,4.196685,4.32412,5.432,3.42755,4.40797,4.336575,5.18665,3.54269,3.94402,1.3061614285714285,2.4917966666666667,4.173254166666666,3.796695,1.5203466666666667,2.74337,3.80283,3.808095,4.09596,3.50648,3.9128,3.56388,3.174375,4.451735,2.3467733333333336,6.10815,3.50668,3.5609,4.499122857142857,0.9466213571428572,1.862675,3.146405,6.10156,3.857335,3.312315,2.98456,4.29029,7.39612,3.090256666666667,4.238515,2.78037,3.79868,3.993095,5.5957,5.2932,3.98361,3.059695,5.1321,4.555775,3.5292333333333334,7.3144,3.2062866666666667,2.20778,2.2893,4.677985,6.38695,5.02725,4.916525,3.931635,4.934775,5.7602,0.5171430769230769,7.30564,4.322565,3.62932,3.701515,4.66124,4.00827,2.8928166666666666,2.489225,1.3282816666666666,0.5637761538461539,1.78701,3.11619,3.24709,3.18907,3.780115,3.98096,11.509419999999999,3.77873,3.89829,3.049985,0.6741983333333333,5.475806666666667,3.29678,1.60699,4.90377,5.409745,2.112965,8.62181,4.63011,2.117198,2.117198,2.117198,4.317335,8.72945,3.795565,2.590925,2.590925,3.733285,9.94808,1.005955,4.630125,4.31768,4.16603,2.5964566666666666,2.051626666666667,4.3838,3.805385,6.2721,5.794931666666667,3.863455,2.84315,3.84075,4.163092499999999,3.3766855,1.13279625,2.7942033333333334,6.2069,3.2399125,4.912125,0.95466125,3.6489666666666665,2.21889,2.5716,1.7708625,1.8682133333333333,2.08224,5.5014,2.004345,4.53201,5.5658,1.7836159999999999,4.613835,3.690295,4.600255,3.26591,2.361805,3.037865,4.35358,4.02157,4.02157,1.1575375,1.7000866666666665,2.81251,4.451303,2.1864576363636363,4.880581333333333,1.7150079999999999,2.741623333333333,2.2066066666666666,1.6371425,1.6371425,4.653945,7.349571666666667,1.8158899999999998,2.955163333333333,2.22732,4.750175,3.084555,0.8369440000000001,2.90537,0.8369440000000001,2.688885,3.35013,5.10865,5.5794,3.56432,4.792421666666667,5.52925,2.382915,1.8620966666666667,2.8816900000000003,2.24086,6.22325,4.735965,2.4932,4.454955,3.01607,4.383255,1.02484375,1.146326,1.9188233333333333,1.21226,2.558406666666667,2.73644,2.187926666666667,2.848653333333333,2.56702,4.38924,2.53247,2.4239433333333333,2.7299966666666666,2.3930599999999997,2.8195833333333336,2.614526666666667,2.0188366666666666,2.5436466666666666,3.868455,4.06754,3.26391,3.266605,2.8019,2.2211275,1.942585,1.1139116666666666,0.29402849999999997,0.13105673913043478,2.0538000000000003,1.9145066666666668,0.13105673913043478,3.4829117391304347,1.7449125,0.13105673913043478,5.809236736111111,2.000731666666667,6.6421,3.374515,3.19689,2.4656366666666667,2.9420066666666664,2.1580575,4.3332,3.0872333333333333,3.1712000000000002,0.4066515789473684,4.053745,2.6130015789473684,3.01994,1.829235,2.49001,4.22161,2.23918,7.726694999999999,5.15145,3.449315,3.78488,6.49397,6.29691,1.8590766666666667,4.1805433333333335,2.204845,1.9649,6.47358,8.02766,1.2943566666666666,1.9789875,3.664585,2.591005,2.919125,3.222865,2.705685,4.456675,2.497805,3.16404,3.62748,3.14928,7.65291,1.3933366666666667,2.110815,3.15267,3.24254,1.8529900000000001,3.42774,1.72041,3.70418,3.140685,6.69713,3.49961,9.2212025,3.386445,1.587454,2.028376666666667,2.88079,5.6591,1.6144475,1.53212,5.71489,3.466635,4.060875,3.033365,1.96251,3.23085,10.573885,5.21842,6.72163,3.571545,2.241455,2.12553,2.56946,2.93568,3.421335,1.625815,1.6547433333333332,2.4382,3.424925,1.65746,3.333885,2.197515,3.77321,3.745985,3.434955,1.1491283333333333,2.454865,1.2147333333333334,1.3971259999999999,1.5883,3.307655,3.369725,3.683615,2.478325,3.521115,4.005095,3.272175,1.4615719999999999,3.346595,3.5939224999999997,3.081895,2.134835,3.265275,3.42884,1.4418725,3.354515,1.5588300000000002,3.984365,3.74256,4.686475,2.77507,3.77818,1.913225,3.074015,5.53585,1.705215,1.0971,3.5820333333333334,2.69814,4.33269,4.225055,3.15161,4.431645,4.78293,2.3125033333333334,5.31835,5.4663175,6.49405,4.12214,6.549473333333334,4.03808,1.6586733333333334,2.9000233333333334,4.623375,4.662395,2.696293333333333,7.1538260000000005,1.1806057142857143,3.3778333333333332,2.0901,1.754152,2.1931433333333334,2.6776366666666664,0.3777028571428572,2.70997,3.8331,3.465565,2.6873,3.3571333333333335,2.3032333333333335,2.1927733333333332,2.236505,9.05019,4.93198,1.9685400000000002,5.08695,2.527988,0.7198741025641026,2.6640900000000003,7.319441333333334,1.6021260000000002,4.44160125,6.204465000000001,1.59607,1.6258675,1.402045,4.188485,3.2103,4.43563,3.7585775,2.4246766666666666,3.516335,1.014128,2.835578,4.242245,4.19063,4.797255,2.81033,4.9834,4.507605,4.12218,4.9618,5.57665,4.94663,4.14429,5.3946,1.713054,1.8763175,2.82286,3.490165,1.117788888888889,3.778215,2.0108333333333333,3.3352,4.25055,3.1312333333333338,2.5526166666666668,1.5419966666666667,3.0490433333333335,2.8259672222222223,2.684203333333333,2.8475333333333332,1.9514566666666668,2.0060375,2.322805,3.763035,4.304965,3.89521,4.548995,3.295605,2.30654,2.82689,4.907185,3.9094333333333338,4.576445,3.241465,2.35668,4.516846666666667,1.7899566666666666,4.023715,4.83919,5.960167142857143,3.90429,4.236785,5.3555,3.153786666666667,3.8969250000000004,4.439295,3.0361,3.8491714999999997,3.51389,1.3595,2.964025,1.87957,2.43738,4.579755,5.109845,3.8491714999999997,3.991375,3.23077,1.5174816666666666,3.481865,2.141985,2.350956666666667,2.195435,2.78109,1.6901657575757576,1.6901657575757576,1.6901657575757576,0.5718190909090909,0.8080533333333333,2.186888333333333,1.141895,3.63101,1.28242,3.82182,5.22715,4.61547,3.15447,3.948285,3.000725,4.995475,1.5336275,2.99417,2.90786,3.168785,5.861981999999999,4.130055,5.27185,4.330795,1.0556125,2.360405,1.391,3.800945,3.86581,4.204895,5.2221,4.44745,3.74455,4.473855,3.889025,1.74744,1.2366416666666666,5.4679199999999994,1.0779577777777778,1.3719833333333333,2.6996200000000004,7.95368,2.93115,3.58596,2.85214,5.465075000000001,1.6069,1.0139483333333332,1.4679275,3.20658,3.641915,3.903825,3.80128,1.8875175,6.237615,2.9544866666666665,0.90848,4.765155,2.91044,2.5931933333333332,2.4092566666666664,3.4768000000000003,5.399402500000001,2.639273333333333,3.3543000000000003,3.4035333333333333,2.5875933333333334,2.5935866666666665,2.8810266666666666,2.956255,2.024495,4.83803,4.62668,4.997925,1.0035066666666668,0.752412,3.7974333333333337,2.6756266666666666,1.03190625,2.7266395833333332,3.711615,4.193285,6.9486349999999995,4.68597,3.4904333333333333,1.730996,3.5879,3.676065,2.702053333333333,2.5312148571428574,3.913355,2.7381166666666665,4.983192666666667,0.8766155555555556,2.892835,1.7354880000000001,3.333485,4.317705,1.98985,1.0359425,3.14965,0.439078,3.16128,6.6171,5.4857,2.85935,1.471256,4.0380666666666665,0.7953622222222223,2.6541433333333333,0.7953622222222223,3.93975,4.38622,1.46583,1.83024,4.986048333333334,1.8491933333333332,3.61102,2.604775,3.78262,1.219188,1.6198266666666665,3.84416,4.20296,5.2529,2.885784,2.62035,3.26265,1.5587075,2.063085,1.8099175,1.9036125,4.153665,1.4311888888888888,1.4311888888888888,3.318555,4.82963,8.325994166666666,4.485123333333334,7.867155,2.22618,3.81578,3.988445,1.6837666666666669,3.521659166666667,3.80894,2.903035,4.162415,3.10471,2.53705,2.8683633333333334,3.89287,1.091965,4.24761,4.54345,1.1199766666666666,7.83462,2.72993,3.16724,3.523663333333333,4.896125,4.71889,3.43433,2.42017,2.8080499999999997,1.9335166666666668,3.6301,2.362205,2.2033925,7.170162,3.1329733333333336,2.81495,4.261665,22.362982375457875,0.6722733333333333,2.812335,4.52874,4.66528,8.52345,4.713265,4.589885,4.33295,6.991196666666667,3.592035,1.61318,4.7660116666666665,3.14399,1.090934,1.090934,1.090934,2.30234625,1.6414775,3.454715,1.5628375,3.005805,1.5282499999999999,2.77413,2.41248,2.891275,1.5628375,3.30048,2.58644,4.1836400000000005,4.87375,4.966635,0.7529075000000001,3.16528,2.666505,4.633155,3.348075,2.868515,2.3614675,1.71962,2.171945,1.438382,3.530825,1.7153625,4.581775,10.760518666666666,2.6140766666666666,2.5,4.787247499999999,4.713166666666667,4.477533333333334,6.3816,2.20635,5.3644875,4.458205,0.9690916666666666,1.1743157142857144,6.490371000000001,4.537745,2.4555675,3.56217,1.9530075,3.81834,4.777915,4.43411,4.051965,1.2587785714285715,4.17755,4.5856,4.59547,6.148041,3.3371,5.2201,4.39854,4.745945,5.0712,3.5172333333333334,4.991505,1.82742,3.35355,3.066695,3.23731,3.860395,6.09765,4.395325,2.6111033333333333,3.5474333333333337,8.89069,4.728565,3.21409,3.43184,3.23311,4.375295,4.19971,4.641195,6.664666666666667,3.617585,2.67079,3.9238758333333332,2.5339,4.214595,2.2822766666666667,6.3872975,1.599915,4.34334,4.671705,11.783372499999999,0.4980678571428571,4.203205,4.954455,0.6657835714285715,3.620405,3.86817,4.116625,0.9482290000000001,4.81913,4.75323,2.5300466666666668,9.86767,3.2003133333333333,1.8888066666666665,2.19803,3.75337,6.0031,0.5555466666666666,3.833035,1.9882425,5.23275,0.7001938461538462,4.223505,5.5916,5.97035,3.530345,6.466374999999999,4.636925,3.4668375000000005,2.5532266666666668,2.79556,4.229815,4.480315,4.93654,4.87123,5.47535,3.126583333333333,6.539448333333333,2.7806,2.974908,2.0739175,4.385175,2.1860866666666667,1.49784,3.0724766666666667,3.0724199999999997,3.1235733333333333,3.481033333333333,3.6017333333333332,3.12898,2.584966666666667,5.63455,3.1956633333333335,3.722405,4.784655,2.681763333333333,1.175888888888889,3.0630733333333335,2.9341399999999997,3.96681,2.9365466666666666,3.083546666666667,4.9952716666666666,2.0983266666666665,1.6958625,3.056525,3.69606,4.451325,1.06837,4.12373,3.038405,3.9712,2.92674,4.818851,3.958985,3.325355,4.10489,2.23004,3.829425,0.63489375,4.64218,4.936885,16.958122727272727,3.1636633333333335,1.09419,3.82584,0.611235,2.700125,4.343045,1.895065,1.2300671428571428,3.71479,4.626035,3.047136666666667,0.85283,2.61271,7.8167,3.904685,5.53085,4.769535,5.0159,3.2032566666666664,3.6178333333333335,3.2497833333333332,7.188338333333334,3.855855,4.914805,2.0275,0.4332427777777778,2.4937,3.52155,2.331935,3.883485,3.78473,2.861893333333333,4.559345,0.7054191666666667,4.53661,3.598135,2.599735,1.1172666666666666,2.67041,2.0145566666666666,4.814305,3.85195,2.08999,1.5942285714285713,3.514585,4.464165,4.37437,6.0609616666666675,2.155326666666667,4.74338,4.33911,3.85449,1.990244,4.116765,6.004076666666666,4.76613,2.71271,4.818675,2.682145,2.809745,3.95177,3.85424,1.3273666666666666,4.63768,2.07755,2.6499099999999998,5.106725,5.106725,5.12565,1.5550760000000001,4.9389,0.91298125,1.7840599999999998,5.0318,2.54536,1.4286733333333332,3.0327300000000004,0.924432,4.276166666666667,4.659765,2.83286,4.89359,4.08638,3.676825,5.17027,3.43252,3.5906333333333333,2.7172533333333333,2.4512733333333334,2.566275,2.82658,4.17769,1.65916978021978,2.9627033333333332,4.437055,4.82833,2.1969091666666665,4.106355,4.69232,5.002025,3.3785666666666665,5.2546,4.89082,5.31345,4.816195,3.46214,3.502645,3.67096,4.328105,5.3957,4.705795,4.90661,4.47452,4.454005,0.6965533333333332,4.93508,4.416585,3.90527,7.10147,4.15774,3.850635,4.27084,4.74167,3.292,3.49014,2.1132625000000003,4.4011575,1.8313275,1.3449628571428571,3.5372,2.12389,2.46936,3.8844813333333335,3.4088666666666665,2.712065,1.1899,1.9648025,4.505695,3.574775,1.82281,1.82281,3.57457,1.603236,3.1111233333333335,4.43382,3.544125,3.792965,1.56297,2.020545,3.4457358333333334,2.149825,4.05091,4.290155,4.269785,3.99706,6.528401666666666,2.7062,3.74451,4.5386,4.229465,3.1928,4.1134,4.00302,4.287605,2.140685,2.47108,4.37272,3.94681,3.69766,3.58952,1.674315,3.686645,4.376675,4.499905,4.196675,3.8367549999999997,3.8367549999999997,3.1347058333333333,4.00391,4.276615,3.88856,1.6409600000000002,7.2332125000000005,3.73973,4.906485,4.237825,4.15749,3.66761,4.870905,2.99644,3.40863,2.713825,4.988485,1.8824100000000001,4.067625,5.559558888888889,5.0999,0.685295,4.7569275,1.1289799999999999,4.874655,4.415055,4.502325,4.161035,5.16915,3.5554333333333332,3.5554333333333332,0.8404769999999999,2.1558525,4.893425,3.423535,3.99381,4.742145,5.5759,3.35331,4.148495,1.3761616666666667,2.753715,1.681575,1.24911625,4.216172,0.795814,2.44938,3.0886666666666667,1.2395733333333332,2.10381,2.6373933333333333,1.24217,6.4298,1.9916275,2.4377133333333334,5.6206,1.955265,2.6874033333333336,2.88526,4.594655,3.7606,3.3407999999999998,3.999366666666667,1.6929500000000002,2.030619166666667,4.197335,0.6402771428571429,2.157033333333333,2.2778549999999997,3.17202,2.8134766666666664,1.1467399999999999,0.8558333333333333,2.4904366666666666,4.1218,1.1843942857142857,2.0772575,1.2321,5.2816849999999995,2.177555,4.92523,4.3998,4.258805,4.97234,5.36335,4.104045,4.167325,1.4959583333333333,3.7637,1.7468419999999998,2.3949599999999998,1.1986371428571427,4.3363,2.06495,7.1490100000000005,4.081365,3.85451,1.4482659999999998,6.9640775,3.58005,1.5472966666666668,4.116655,3.160455,3.80044,3.660325,1.967715,1.967715,3.245293333333333,1.3365566666666666,1.3365566666666666,1.990244,2.83126,2.16583,1.32264,3.447566666666667,1.04332125,3.0463,2.34871,1.9159575,1.5310683333333335,2.2143475,2.117945,0.30449588235294117,2.4737975,1.1953933333333333,2.3571,2.2066066666666666,2.445135,1.0486144444444445,1.094754,3.7226,3.124303333333333,1.967715,1.7745825,2.2085966666666668,2.4764399999999998,2.4049733333333334,1.780452,3.0698133333333337,1.11831,3.2218666666666667,2.69751,2.53237,1.5206899999999999,1.014728,2.5225,1.014728,2.5225,0.68367,0.68367,0.47755000000000003,2.309855,2.273286666666667,0.68367,2.19734,2.322556666666667,2.3468325,1.7223775,0.6959500000000001,0.68367,0.68367,1.6715060000000002,1.6715060000000002,2.00334,1.7745825,0.68367,2.31058,0.4641207692307692,2.95937,2.019486666666667,2.5418,2.5222666666666664,2.5222666666666664,0.3851195,0.3851195,1.990244,2.02766,2.15624,2.03518,0.3851195,3.4969,2.4948975,1.575856,0.623175,1.575856,0.623175,5.65512,2.6191833333333334,3.9601333333333333,2.5768133333333334,2.9119266666666666,3.002553333333333,2.8006499999999996,3.4954666666666667,2.47011,1.7272075,2.81284,3.090256666666667,2.4041799999999998,1.6715060000000002,2.5995992063492066,2.5995992063492066,2.73626,2.129735,4.317315,2.2911033333333335,3.2770833333333336,2.751,1.444454,2.3675225,2.33866,0.8047636363636363,1.6678525,3.5715,1.6742819999999998,3.103213333333333,2.54014,2.6498,3.8594666666666666,1.5925316666666667,3.4842,2.9923266666666666,4.231933333333333,1.204726,0.22546689655172414,1.274767142857143,1.274767142857143,1.0160722222222223,2.911286666666667,3.879433333333333,2.579353333333333,2.192736666666667,2.192736666666667,2.1445775,1.5588300000000002,0.9666460000000001,1.7303300000000001,1.7303300000000001,0.68367,1.990244,2.8331233333333334,3.384866666666667,2.34871,2.16824,2.16824,2.16824,1.1017422222222222,1.4602714285714284,1.4602714285714284,2.389055,2.8240700000000003,2.6736446843434343,3.64711,2.49076,2.4751833333333333,3.64288,3.746125,6.621315,3.720395,4.428655,3.9736999999999996,13.388375,4.774985,3.419365,0.963875,3.814975,3.10256,2.4312,3.69973,5.0737,6.198138999999999,6.1738,0.48577764705882354,3.735475,2.901355,3.82006,2.439105,4.40263,5.0721,3.9334,8.23377,3.640765,3.629005,4.026115,3.228263181818182,8.057031794871795,3.24149,2.6671633333333333,3.44682,3.770825,4.798545,4.076005,6.523417,3.93413,1.344554,3.01997,0.9107225,4.717905,2.959165,2.772955,3.899625,3.25109,2.64905,4.795795,3.828635,8.78297,3.947975,4.556713,2.6424933333333334,5.0184,2.908795,0.71506,0.71506,3.340065,3.85869,2.17149,2.23044,3.87112,2.94454,3.051085,2.028645,1.95773,2.92157,2.3947533333333335,1.13200625,3.105925,4.68335,8.06179,1.590792,2.946865,3.09394,3.228705,2.86773,8.32633,4.07513,3.452033333333333,2.9130299999999996,3.844665,3.3572666666666664,2.9399766666666665,3.1117866666666667,3.887935,3.83552,4.59981,3.89368,0.3971906666666667,1.5885533333333333,2.22931,1.8194975,4.600995,3.521935,2.791173333333333,2.208985,4.400095,3.7631,2.0305,2.56417,0.89444,2.175675,2.53452,2.53452,5.12555,1.84325,2.9215766666666667,2.3377399999999997,1.9987599999999999,1.7883466666666665,3.109815,3.728415,4.712865,4.31997,5.3472,4.68959,2.8133,3.0911500000000003,2.01194,4.561115,5.432296666666667,2.02061,2.937523333333333,2.2060825,2.34631,3.8223833333333332,2.3853266666666664,5.119,3.9848,3.637255,4.249745,2.809336666666667,3.5039,3.848915,2.2751033333333335,2.3656900000000003,0.4218935714285714,3.7064,2.56581,3.129755,6.1027,4.652455,5.847638333333334,1.929435,1.5921833333333335,3.281685,5.124,6.29635,5.5904,2.9988799999999998,2.2203933333333334,3.620215,2.11641,4.615165,2.20422,2.3120575,5.29025,4.85761,4.20953,1.67585,1.897955,1.059476,1.059476,1.139184,0.8561985714285714,0.7340880000000001,1.7947425714285714,4.34029,10.082719166666667,3.89542,4.259915,4.019435,5.8327800000000005,2.633245,1.67641,3.4430825,2.83986,4.87879,2.3909433333333334,2.5775033333333335,2.7803233333333335,3.135403333333333,2.271916666666667,3.12777,3.299526666666667,2.8914733333333333,3.4646000000000003,3.4202,2.93848,2.7710733333333333,2.9974633333333336,2.26194,2.946486666666667,3.0213433333333337,2.80892,3.2414133333333335,2.17338,5.46459,3.11073,4.020388,3.2182833333333334,3.008383333333333,3.705133333333333,2.80102,2.7884333333333333,3.139666666666667,3.146793333333333,3.3432666666666666,3.117976666666667,1.8433425,2.6116,2.551883333333333,2.901275,2.901275,3.2930833333333336,3.0141466666666665,2.40439,2.7024166666666667,3.0052833333333333,4.1497,2.89652,2.694275,2.7690333333333332,2.837353333333333,4.208025833333333,4.652605,1.6003416666666668,3.3532666666666664,3.7336333333333336,3.37941,3.2451666666666665,3.6193666666666666,3.469333333333333,2.6602,3.3822840000000003,1.97992,2.886421,3.4062,3.3846666666666665,2.523406666666667,2.4275800000000003,3.908666666666667,2.8852233333333337,2.993916666666667,2.436955,1.1534583333333333,3.2110800000000004,2.63732,2.2031066666666668,2.422905,3.0363233333333333,3.1356033333333335,1.937814,5.487575333333333,2.4509333333333334,0.901842,4.42002,1.9198820833333334,1.6718166666666667,4.51424,3.8204,3.28382,2.45922,1.3734025,3.33687,2.896245,2.622995,0.386352,2.1214,0.386352,1.959495,1.3734025,2.66153,3.729145,2.353675,3.186385,3.23301,0.49434666666666666,2.8161666666666663,1.0204,0.44336764705882353,3.8121,3.98688,4.8895,2.593675,5.39685,4.125815,3.65593,1.91836,4.081466666666667,1.748904,5.3528,2.43241,4.16644,4.22317,2.8596266666666668,1.9684266666666668,2.072686666666667,1.3983516666666667,1.99722,1.020715,1.020715,4.40355,2.2807666666666666,5.955346666666667,2.580275,2.99427,1.505795,2.3995534999999997,2.699825,6.70405,4.9258625,2.2260375,2.44248,2.3995534999999997,2.208205,4.5433485,2.8415624999999998,6.647819999999999,2.580275,3.3314449999999995,3.72409,3.0827566666666666,5.484,4.904305,1.88242,2.06604,2.3440225,2.45422,4.796595,5.2029,1.8758875,3.7739,1.60389,1.6158575,5.3475,10.095643333333333,2.027276666666667,2.1889566666666664,2.36314,4.170445,4.083345,1.9408225,4.923345,4.393625,2.64717,38.87391304761905,2.8191100000000002,3.0094333333333334,0.4108811111111111,4.591754999999999,2.2068733333333332,0.9060044444444445,3.732985,3.596635,1.8979475,1.78984,2.4289466666666666,3.61256,1.3576014285714284,3.1817686666666667,3.711485,4.651195,0.913699,4.77803,4.91259,4.806375,2.84887,1.55392,3.726095,4.551315,3.74427,3.25802,3.563535,4.00321,11.531795959595959,2.7284400000000004,3.14965,3.936495,2.70341,4.304135,3.2465,2.09346,3.027545,6.10029375,4.57144,5.14145,5.0839,2.57454,3.717125,4.41475,3.42563,4.749045,4.396655,0.12829347826086956,2.36291,5.15445,2.779345,1.5506266666666668,1.17195,1.17195,2.13051,2.76918,2.75503,1.923126,2.9391166666666666,4.344925,2.58184,4.485038333333334,0.5892735714285714,4.606145,3.71503,4.782715,4.750945,4.331695,1.13810625,1.0057125,4.290033333333334,2.9444433333333335,3.0637266666666663,3.8387006969696973,3.89981,6.33423,5.3348,4.098445,3.63917,2.1757616666666664,1.5097783333333332,4.475905,0.3245746666666667,3.30866,3.70956,4.008175,14.288789999999999,1.9364512500000002,3.0790633333333335,0.68724375,4.52677,8.637285,3.39849,1.8516533333333334,5.77445,3.14917,1.1178655555555554,4.840565,3.01031,2.83935,4.89528,3.3737884166666667,1.0259875,6.603326666666666,0.73559375,4.913785,3.1766746666666665,1.4096,2.0991704166666665,3.215745,3.215745,3.992045,4.29093175,1.3193125,2.501675,2.906185,3.43507,2.97252,2.499485,2.947605,3.36873,6.674755333333334,6.2025,3.917225,3.257605,4.49915,4.53459,3.52065,3.36707,3.51426,3.991155,4.506535,2.4928866666666667,2.6573166666666665,1.5868883333333335,2.28733,2.23578,1.55743,2.7219599999999997,3.6041000000000003,3.401666666666667,3.052433333333333,2.48092,1.4871366666666666,1.6481466666666666,0.4817463636363637,2.68088,1.5775857142857144,1.8948525,3.4370666666666665,2.46139,2.6066966666666667,0.93758625,2.1898975,2.544285,2.938965,3.56472,5.21195,3.719795,2.977785,2.2689833333333334,3.434855,4.31947,2.67488,3.4531,2.012885,3.85767,2.72821,4.008775,1.35631,0.632432,2.3640025,3.28301,3.1517,3.98437,4.7809800000000005,9.10255,3.1912033333333336,2.24095,1.76142,1.793874,1.793874,2.9334233333333333,2.4897933333333335,4.966395,4.65017,3.54036,4.89627,4.19579,4.248205,3.1838866666666665,4.304595,7.91802,2.57905,0.502068125,3.1781433333333333,1.3529333333333333,1.0128485714285715,1.8385466666666668,0.7659659999999999,2.1607425,5.26735,5.2122,6.01842,1.11182,7.46,2.01922,1.5248616666666666,2.6029733333333334,4.103765,3.2121833333333334,2.398325,3.687085,3.0977766666666664,4.327266666666667,2.9159366666666666,2.7986566666666666,2.9403466666666667,6.43432,2.55669,3.826205,3.8582016666666665,3.3325216666666666,1.3207966666666666,1.114085,4.163585,2.6802266666666665,3.07262,5.3185175000000005,2.83881,2.08532,2.31723,3.341705,3.7381333333333333,2.34278,3.9088775,2.99473,5.1171,2.3850377499999995,1.8703925,4.692305,5.5,4.471,4.03952,1.7677233333333333,2.336595,1.908925,3.25133,1.54145,0.9849483333333334,2.7889283333333332,2.0667225,1.9758525,4.16613,0.6881741666666666,5.62229,1.35997,0.7797027272727273,3.5081333333333333,4.0412,0.6678671428571429,3.155777,3.227060625,0.8558333333333333,4.3989,0.17752119047619047,0.17752119047619047,0.17752119047619047,0.17752119047619047,0.17752119047619047,0.17752119047619047,1.964054,3.750225,1.964054,1.964054,1.8208433333333334,0.17752119047619047,0.17752119047619047,3.2682300000000004,2.64264,3.22036,3.22757,2.26348,3.62763,1.3368371428571428,1.632696,3.3766855,1.414828,2.8137566666666665,2.616559111111111,5.816606666666667,4.169495,4.091585,6.5461,4.585425,4.53122,3.39973,3.80166,7.27104,3.9397,3.6780666666666666,2.2728766666666664,5.249716666666667,2.61514,2.133835,1.8101,4.604175,5.25225,5.05335,5.0594,5.4361,4.351785,4.697305,0.6810272727272727,0.7143499999999999,0.7143499999999999,4.637675,2.3248266666666666,3.89156,1.0361757142857144,4.54218,1.4946428571428572,2.3403,2.59088,4.579466666666667,4.579466666666667,6.9534,4.4164,1.387325,10.020771666666667,2.9079866666666665,1.2354111111111112,4.783365,4.874585,3.49139,3.24277,2.641085,4.294366666666667,0.7811533333333334,3.292533333333333,3.2871666666666663,3.8243666666666667,3.19624,1.51677,1.5310633333333332,4.382840833333334,3.1420833333333333,2.954686666666667,3.424533333333333,5.257709166666666,3.473675833333333,0.794231,1.6814833333333334,3.6549666666666667,2.15985,3.7432,3.4048,2.998866666666667,3.4214,2.97315,2.437116666666667,1.00133,3.1376666666666666,2.66601,3.48465,3.216095,3.865065,2.6192433333333334,3.214933333333333,2.81205,1.500208,2.167546666666667,2.7832028571428573,3.5739,1.7840520000000002,3.1490566666666666,1.8127833333333332,3.6811000000000003,5.255141666666667,4.942138666666667,2.43953,2.55435,2.673875,2.4693875,1.622642857142857,2.26727,3.1778710714285716,2.36709,3.514866666666667,2.7351,3.7450133333333335,3.067865,1.2213444444444446,1.3077325,1.73392,2.1794875,3.08679,3.451166666666667,5.05945,7.669555000000001,2.823715,5.10285,3.797425,15.313430666666667,0.477773,11.404965,0.8526311111111111,3.09002,2.41528,2.1139,2.94061,1.580316,1.4615719999999999,2.4301366666666664,1.249182,2.9161140000000003,1.9947533333333334,2.8696099999999998,2.2467799999999998,2.6527866666666666,1.5863500000000001,0.6254158333333334,3.06913,2.4367300000000003,2.89261,1.1017422222222222,3.5285333333333333,0.7222216666666667,0.34318923076923075,1.9723033333333333,4.448845,4.446245,4.658345,0.8018509090909092,4.05584,4.58101,1.1297675,2.295135,5.055571666666667,3.343625,3.73406,3.933415,3.911985,1.88001,3.95432,2.7152600000000002,2.822515,3.545555,2.68491,2.892345,3.824965,3.29068,3.64855,2.020375,3.38414,4.661235,1.2601066666666667,4.644275,2.3104625,3.895565,5.234203333333333,1.9435925,2.667196666666667,3.0137,5.89917,2.43804,3.1989,5.0188,3.9601333333333333,3.85772,2.0038,2.80995,4.800015,3.6824333333333334,4.052745,3.702733333333333,3.056316666666667,2.801296666666667,4.071166666666667,3.150536666666667,2.5475666666666665,2.648,0.4475105555555555,2.28288,2.1320775,4.51666,4.696915,3.1120466666666666,2.72579,3.161576666666667,8.29427,3.4050450000000003,3.933905,2.7565399999999998,4.118455,3.055225,3.6071475,2.8196266666666667,2.2425175,2.7201533333333336,6.4218,4.549135,1.9449100000000001,3.325485,3.078515,2.65376,4.440084000000001,1.697954,6.32264,3.875595,4.879055,4.257645,6.37965,3.682665,6.91357,3.636495,3.181425,0.6309721428571429,2.331105,1.672205,2.798173333333333,3.1076575,3.87054,3.978265,5.33215,2.60364,4.613115,3.725633333333333,3.8937333333333335,3.1260933333333334,4.51198,4.592965,4.790995,2.7572033333333335,6.005896666666667,4.60581,1.4213533333333332,5.43325,3.686265,2.74218,2.377815,2.26544,4.492991333333333,1.2231142857142856,2.484253333333333,1.99203,3.812975,4.13065,2.58506,3.4853666666666663,2.8996829999999996,2.4050333333333334,3.990485,1.3658860000000002,2.30651,2.4103266666666667,2.7455033333333336,2.480916666666667,2.5876733333333335,2.71655,4.008365,2.990693333333333,2.85511,4.048235,2.17563,3.80885,3.38167,1.639958484848485,1.639958484848485,4.666525,2.9127333333333336,1.799,1.3193,1.98318,2.0030125,1.187786,1.48299,0.611901,1.5943866666666666,1.5145799999999998,2.7972266666666665,2.203186666666667,1.7814066666666666,1.8439666666666668,2.1803966666666668,1.3598133333333333,1.7256866666666666,1.8428366666666667,2.541425,3.70215,2.89381,2.9423733333333337,2.63525,5.405025,2.769775,4.066985,3.940150833333333,2.1246,3.969865,3.0237,1.98721,3.54792,1.8605725,3.01773,3.666125,1.9107475,4.276905,3.3664,4.092525,3.3928999999999996,0.8442888888888889,4.611655,3.84858,3.20923,4.1461,2.4416266666666666,4.42653,4.752605,4.78392125,9.261084166666667,3.615045,4.31976,2.8577433333333335,3.61967,4.48196,2.13335,2.42554,3.91975,2.191035,5.9220500000000005,1.8609259999999999,2.71434,6.753785,2.9232633333333333,4.257426000000001,1.269712857142857,4.57423,4.455845,2.9751966666666667,4.8126,4.91555,6.467880000000001,15.655430892857144,0.6126470588235293,1.0486144444444445,3.10746,3.81444,3.586465,2.1572925,3.21535,4.101305,4.823925,2.646365,4.55262,1.7199499999999999,1.7199499999999999,5.2964,0.76557,1.762234,3.154815,3.847075,0.3671992307692308,1.9851066666666668,3.9334210833333336,1.1655016666666667,3.041536666666667,2.684973333333333,2.81979,7.88941,2.4985666666666666,3.7771333333333335,2.0292166666666667,2.2161733333333333,3.753125,3.757095,3.685355,6.8403228333333335,1.8744575,2.63295,4.513915,6.7143475,1.9415666666666667,2.36498,2.5612533333333336,1.4549833333333335,2.71576,1.69305125,3.926455,3.70643,1.5157925,1.852287,1.852287,2.6300433333333335,5.4373,4.189430000000001,3.9119,4.367335,4.321765,3.37662,3.714025,4.32416,3.5151,4.260305,3.76258,4.40095,0.9190910000000001,0.36286375,5.1274,3.803905,2.39883,7.88439,1.5771533333333334,4.6591,4.14823,0.37714416666666667,2.14347,1.3843366666666668,1.8688166666666666,1.9888666666666666,5.574834,3.256595,3.22596,4.7462275,4.68946,4.50544,0.5613223076923076,1.943025,0.600593,5.779858333333333,1.443754,4.96309,1.8984375,3.13331375,3.300275,4.03565,4.1289,5.14735,0.8500536363636364,3.25763,3.87809,1.911275,1.6653125,3.73398,3.13877,3.546065,3.860245,5.4507142857142865,4.221045,5.54265,2.8125766666666667,0.6196644444444445,3.324996666666667,3.54376,0.5440546153846154,3.85129,3.78738,4.13382,2.917675,2.699676666666667,4.884485,3.096315,3.16787,2.230015,3.72538,1.691868,3.30443,3.80658,0.5493384615384616,3.67767,3.890605,3.15292,4.118295,4.24715,2.855425,3.862045,0.607416,3.0259533333333333,3.7273555555555555,4.53053,3.682866666666667,2.483075,3.418533333333333,2.483075,4.670505,3.25359,2.93709,1.5500550000000002,2.8793699999999998,1.891555,4.072985,2.7027,5.2078,3.1003966666666667,2.7169366666666668,2.9937966666666664,2.340217142857143,2.340217142857143,2.340217142857143,2.247246666666667,1.1105633333333333,4.534915,2.4514333333333336,1.7230999999999999,3.9834,2.39495,3.0941766666666664,4.06106,5.55495,3.50493,1.941355,1.010864,4.04918,1.9072600000000002,2.10888,3.10103,3.321465,2.041955,3.55181,2.477745,1.579556,4.91471,4.099795,3.28293,3.635085,0.7609266666666668,2.3346,4.108975,7.62542,4.04651,3.096325,3.08879,3.45889,3.769375,1.66181,2.3438625,4.67585,2.0560525,4.24843,3.344675,5.42795,8.42468,3.97617,3.506175,3.283115,4.884345,3.84381,3.1568674999999997,3.1568674999999997,3.765125,3.9636033333333334,4.19622,3.899605,4.278365,4.36314,4.06427,1.1017075,4.18639,4.123975,5.14645,7.82447,5.11175,3.8244860000000003,1.9391800000000001,1.5042333333333333,2.4121474999999997,4.845595,3.813875,4.82329,2.2251733333333332,4.61991,4.942435,5.20085,4.88001,3.0475766666666666,3.5318,4.038155,5.15605,4.49926,3.647295,6.715936666666667,4.91012,2.3080066666666665,4.926405,3.981005,4.00805,3.70138,4.64954,0.7541554545454545,4.192195,4.32328,1.2049414285714286,1.297208,4.918015,4.66663,8.898259,5.3448,4.525165,5.8529,3.05848,2.592706666666667,5.05395,1.7673425,1.7673425,2.794395,1.6663033333333335,2.9853458333333336,3.2057233333333333,1.95436,4.2603836363636365,1.46497,2.02861,5.4933250000000005,3.78599,3.6033,3.048135,3.90842,3.907475,2.9380366666666666,1.0036088888888888,4.026535,3.145443333333333,3.792145,4.202075,3.7534216666666667,5.3556,4.47774,4.66246,3.503995,5.10665,6.45725,4.639315,3.2103,3.23941,1.9674275,1.9674275,3.849225,3.898535,2.48151,2.7785766666666665,2.0796668181818183,2.57085,1.8874533333333332,1.8874533333333332,4.24375,3.4943,2.150115,3.60552,2.796335,2.00442,1.2860575,0.9464488888888888,2.81371,0.45186421052631576,0.8611388888888889,2.912855,3.84892,0.4472936363636364,3.95625,1.90699,5.46065,3.431835,7.251882500000001,4.15611,5.157769999999999,4.555655,5.14525,4.12138,1.79013,1.896278,3.769095,2.922695,3.73834,1.2631366666666668,2.951445,4.50925,2.775365,2.593665,2.531295,4.39127,3.253955,3.24029,3.905695,3.42513,3.37719,3.193235,1.0619871428571428,2.0443,2.351215,2.67682,4.443115,7.6335,1.005256,1.5879433333333333,1.5879433333333333,1.8596879999999998,3.87352,2.68869,2.983605,5.3167625,2.9313766666666665,1.2023725,1.2023725,1.2023725,2.8843,2.9376925,4.809025,3.37752,4.20945,3.320245,3.52869,3.047075,3.4828941666666666,3.789705,4.02597125,2.690265,1.187786,2.125915,2.690265,3.57548,1.3352366666666666,1.9320466666666667,1.7681175,5.678050666666667,3.073885,6.314769,5.678050666666667,3.240884,1.6995083333333332,1.6995083333333332,2.10151,4.808,1.6995083333333332,2.42027,5.71369,2.381435,2.751895,6.08949,3.253345,4.6793,1.9571733333333334,3.206,4.67978,1.9426866666666667,2.401705,4.03198,1.9571733333333334,2.72087,1.954515,6.64062,2.653475,1.175188,2.690585,3.032425,3.346129,2.192745,2.1960990000000002,3.63926,1.952254,2.10214,3.0256,2.152125,2.792185,3.95267,1.9603966666666668,2.700705,2.795735,6.44082,2.40961,3.30959,3.349065,3.349065,8.82571,1.16123,3.293755,2.35087,3.174605,2.383425,1.3981966666666665,1.3981966666666665,4.32601,2.24877,7.330945,2.390325,2.81898,3.3767,6.61002,2.488575,2.3259,5.38608,5.38608,2.2088,1.4794875,1.1956175,1.1956175,1.4794875,2.154646666666667,1.3248333333333333,1.188825,1.6338266666666668,1.7659466666666666,3.6868,1.97541,3.33271,2.96935,2.568355,2.73346,2.977105,2.33483,3.3425525,3.3425525,6.24255,2.35719,3.061815,3.05376,3.59697,2.573035,2.81484,2.566255,5.8581425000000005,1.9850125,1.5468833333333332,1.3725233333333333,2.262696666666667,5.67565,4.160803333333334,3.5040933333333335,3.365315,1.608005,1.608005,1.608005,4.07039,2.43504,1.188825,3.292935,3.391745,1.349295,5.1850125,3.1351125,6.23164,4.04895,1.768095,3.509295,2.26976,2.197275,3.31003,4.77642,2.99736,1.59184,2.72309,2.741695,3.089935,5.39718,1.8216,3.36839,2.606105,6.44679,4.99508,2.190665,2.380035,5.74357,5.08941,5.31596,5.00832,0.6082620000000001,0.6082620000000001,2.840838,2.840838,0.8290179999999999,4.8234,3.42946,3.64366,4.03558,5.43158,2.026145,4.537893333333334,4.537893333333334,2.066755,3.257065,3.44745,1.114002,4.36579,3.001575,3.021275,2.893185,4.66522,2.799535,1.997215,3.07287,3.037415,2.86647,4.99988,2.45006,1.51167,3.858895,5.96574,5.78478,4.56969,2.794755,3.61144,2.023795,5.73628,2.895805,3.71396,2.73642,6.34744,3.87405,2.645025,2.72306,2.55355,5.59859,2.27931,2.739455,2.78534,7.46184,4.70865,3.581545,1.85283,2.21565,5.64448,3.187275,3.45275,5.16311,3.265005,2.74606,2.77414,2.864225,1.8673133333333334,2.097155,1.58131,1.8004733333333334,1.9181333333333335,2.054676666666667,1.5883,2.2299366666666667,1.64408,1.8673133333333334,4.90824,5.00109,2.110425,1.6341625,1.6341625,3.4330766666666666,3.4330766666666666,2.6526099999999997,2.6526099999999997,2.893405,2.244765,1.892815,3.82329,2.2553875000000003,2.2553875000000003,2.3507724999999997,2.3507724999999997,3.56403,2.123735,4.42822,2.328845,3.303635,1.8505933333333333,1.8505933333333333,1.94818,3.93781,5.0517,1.3352366666666666,4.66905,1.9603966666666668,2.4681,3.79818,2.90161,1.968055,2.46887,6.41411,2.22396,5.72538,3.068,3.641635,2.99422,2.90081,6.67689,3.18068,2.158825,2.519692307692308,2.71852,5.4382,3.364585,1.492452,1.492452,3.6519,4.64386,4.50773,5.77592,2.795245,2.84108,1.817195,2.985185,1.74302,2.98976,2.149715,0.785762,0.785762,0.785762,2.2271025,5.2751,2.2271025,2.52528,3.611605,1.700815,2.16074,4.09678,4.20305,5.45769,1.6296733333333335,5.58875,1.6296733333333335,1.6296733333333335,2.54892,1.97665,1.822505,5.94684,1.822505,2.653385,4.18011,2.02896,1.661915,2.86175,2.9083366666666666,3.1731491666666667,3.094163333333333,3.60201,1.3547133333333334,3.88482,0.7507072727272728,4.14338,4.24423,2.68765,2.68765,0.6852790909090909,3.855033333333333,2.55845,5.6053,4.89358,4.08944,5.2689,4.19046,4.10974,5.01745,4.24191,4.217235,3.636,3.878995,4.73307,5.1372,3.30143,3.34502,3.842875,2.314583333333333,1.2423899999999999,4.28019,3.413835,3.468725,1.2575228571428572,3.829625,3.973275,6.292484999999999,1.169235,5.1549,4.13623,2.36789,2.0468,3.25592,3.503355,1.98964,1.492452,3.91253,4.91812,2.65943,4.75345,3.149435,1.13266,3.01357,1.204622857142857,3.0490266666666668,1.7414366666666667,3.2205866666666663,1.8706125,2.61699,4.05023,3.144835,4.63277,3.21106,2.2104575,4.83612,4.30287,3.256015,5.3383,4.22898,2.536113333333333,6.01745,4.647375,3.1208816666666666,2.6783566666666663,2.849115,3.055806666666667,3.162153333333333,2.769823333333333,4.57683,4.1486,3.893585,2.41935,2.5817666666666668,2.3878866666666667,2.3829033333333336,2.2692166666666664,2.2413166666666666,2.3237099999999997,2.225905,1.1868525,3.0288070000000005,1.2441725,1.7722975,1.4976,2.697175,1.535045,1.86708,3.768635,4.19674,1.9237025,3.961925,3.776265,6.067638333333333,1.9871299999999998,1.603996,6.7289,3.255215,4.603195,4.14769,3.867215,2.303415,3.50538,2.439015,2.95176,4.276685,0.7065225,4.128275,2.2540299999999998,0.7773890909090909,4.87163,4.227265,4.0494,1.8443760714285715,4.679285,5.87825,2.762896666666667,3.1628900000000004,2.50979,2.09504,0.588187,3.07799,3.063,5.0717,2.44785,2.0204825,3.16254,1.02592,1.9518266666666666,1.9518266666666666,2.729445,1.9518266666666666,4.126685,2.711445,4.40841,4.309335,5.8331,13.539192499999999,3.2388999999999997,4.901025,2.75084,4.7153,3.191105,6.5242225000000005,2.865126666666667,4.43305,4.78425,3.94916,1.08803,4.87196,3.0569333333333333,2.70987,0.9697333333333334,2.1836425,3.109465,7.061778333333333,4.224575,2.83126,4.52087,3.245293333333333,4.19404,4.36535,4.380085,2.847355,2.8266466666666665,4.020815,5.67635,2.460115,4.422515,1.8542175,1.8542175,3.13898,4.691775,1.03884125,4.109718,2.266995,4.79747,2.5755966666666668,2.4547733333333333,3.162576666666667,2.2647633333333332,0.7064992857142858,3.427025,2.7843766666666667,5.20595,4.470465,0.221538125,4.957735,4.46025,4.153645,6.68688,3.007303333333333,2.85338,2.1643966666666667,2.9729233333333336,2.7220600000000004,1.40052,2.86011,2.66085,1.4376416666666667,3.165486666666667,2.9446999999999997,2.67135,2.89039,1.3242422222222223,4.181365,2.72023,5.1097,3.82923,3.671255,1.6222066666666668,2.49161,1.30438,1.862585,1.30438,4.94925,3.484666666666667,1.587598,2.3518525,4.08521,3.812065,3.04054,3.941465,0.3459335,1.36149,3.93932,4.38327,6.2946,2.0502875,2.841836666666667,2.9804033333333333,2.2706133333333334,2.77194,3.819915,4.725595,2.487045,2.4003099999999997,2.8570266666666666,2.6524466666666666,2.68265,4.199005,2.00547,4.46667,3.8315824999999997,5.99695,7.5544575,0.7407133333333333,0.85534,4.108355,6.645765,2.02816,3.54926,1.3852383333333333,1.3852383333333333,3.406165,0.4512233333333333,3.549995,3.57934,2.646815,3.78756,3.1395,2.824935,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,0.24731033333333335,2.452335,3.009105,3.5812600000000003,3.01723,4.54477,5.7273425,2.949215,1.9323433333333335,0.839125,3.161625,0.7119725,5.405098333333333,3.472755,2.11372,0.7119725,2.076655,2.624315,0.90431,3.8406374999999997,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,0.15763822222222224,4.26718,1.58351,4.44998,4.517005,1.8159079999999999,4.732455,4.14856,5.2841,4.568739166666667,3.4522482142857145,3.32836,4.351725,1.809665,5.216385,4.338955,0.7544214285714286,1.412447142857143,1.3257257142857142,3.15462,3.15462,2.959086666666667,3.79619,4.246325,3.543655,4.045175,2.82926,1.9543433333333333,0.4455585714285714,4.084165,3.03853,2.777015,4.059365,3.32399,3.060705,4.699885,4.44427,6.311237500000001,4.225385,4.601345,5.68575,4.322865,1.3175542857142857,3.072815,5.100783333333334,33.25838657070707,1.2840483333333335,4.257375,2.67919,4.52812,3.96542,5.0718,4.988125,0.41453904761904764,5.36565,4.33558,1.86794,1.98472,3.643025,1.6144475,2.44499,2.63518,1.6365675,2.933775,2.4049733333333334,2.829535,2.68058,0.5916015384615385,3.18073,3.794595,0.37047157894736843,2.590106666666667,2.82913,3.16868,3.900775,1.90135,4.411935,3.92199,3.296025,3.54489,3.111605,4.19116,2.9721,3.854045,2.12918,5.100783333333334,3.30369,3.416715,2.77684,1.732508,3.770685,3.592025,6.825408333333334,3.47981,4.77748,6.31196,5.160756,2.3289575,4.448975,5.9082799999999995,7.67234,2.47983,2.491795,4.895645,5.623866666666666,4.11009,3.6571,5.15538,2.673275,1.6096925,2.2056025,59.80503893545137,5.20965,4.27401,2.586625,0.8224880000000001,2.6988733333333332,2.8870233333333335,3.3877666666666664,0.7951744444444445,4.45873,0.7687622222222221,7.6195282142857135,1.9072600000000002,3.2874766666666666,1.740834,2.7532,2.4740233333333332,3.0193499999999998,2.4540133333333336,2.288606666666667,3.26359,1.5691899999999999,4.985100833333333,3.6802333333333332,1.3048675,2.891273333333333,1.4291133333333335,1.5079375,7.49641,5.84575,3.23954,4.257135,5.2681175,1.4038614285714286,3.424533333333333,3.57504,1.5726925,5.46305,3.38911,3.95664,1.6663025,2.9495941666666665,3.5693,3.78575,5.56545,4.224435,4.271455,2.2264975,3.98014,4.518,3.1408633333333333,1.415634,4.255425,3.316326666666667,4.16072,5.11395,3.872915,3.87754,4.45989,4.32484,4.17126,4.50181,3.765795,3.16568,3.996775,4.3128,3.13099,4.113235,3.77763,1.7601375,1.7601375,4.21987,5.0478,5.0163,3.50252,4.666715,3.3775999999999997,2.659955,4.88708,5.17445,0.7492318181818182,5.3319,6.726775,5.5136,5.8449,1.1110777777777778,3.1103,0.8458383333333334,0.8458383333333334,0.8458383333333334,3.661655,3.3608333333333333,2.584493333333333,3.5376,0.965952,5.04815,5.37955,3.021135,1.6497375,2.0043625,3.970615,3.81949,3.801945,3.081824,6.69295,3.520305,2.43944,4.625175,6.82015,2.723995,4.080735,3.60321,3.288765,5.50285,4.507625,4.92279,5.80105,3.138765,3.6073677777777777,1.93421,1.93421,0.7015881818181818,8.732218,2.04066,5.71215,5.59225,4.111955,5.46635,3.77436,2.871645,4.646285,7.5161525,5.6045,2.37167,4.361795,1.01083,3.660895,1.8728233333333335,0.8993244444444445,1.2278342857142857,2.6367833333333333,3.03023,2.72366,1.1291971428571428,2.5322366666666665,3.044356666666667,0.8690933333333333,2.7585433333333333,3.29126,1.66376,1.7827439999999999,2.9768033333333332,2.94666,2.7674566666666665,2.5434066666666664,1.749064,5.18205,4.219305,3.766885,4.288435,5.0284,3.306115,4.42134,6.37335,5.0098,4.2646,3.914735,10.77257,8.566814999999998,2.917453333333333,3.480265,1.9385733333333333,3.784145,3.31324,4.42181,1.0621066666666665,3.948445,3.67602,1.64325,3.821985,2.9073333333333333,4.2716,2.82218,4.00727,6.6708,7.603606666666668,3.99542,1.5373566666666667,1.5373566666666667,1.5373566666666667,4.71927,1.1176383333333333,1.4765375,0.47082111111111113,4.426340833333334,2.9462466666666667,3.525015,0.9560639999999999,1.16434,3.05925,4.241715,3.7817,16.440041833333332,4.13749,4.47127,5.977544999999999,2.7264733333333333,3.464315,3.16706,0.9188011111111111,1.4373575,3.99655,3.609815,4.46098,4.306695,4.350105,3.931425,2.706558444444444,3.499445,5.1302,0.54975,4.65459,2.273105,3.996905,4.812975,3.5113333333333334,2.500433333333333,3.9301150000000007,1.96519,3.68445,6.07445,3.0879366666666663,3.43736,4.28902,4.126355,4.534105,3.878205,3.43359,3.798235,5.03445,4.795305,3.84421,4.51217,3.779305,1.1080257142857142,1.6849875,6.299900166666667,5.8809,3.887895,4.691015,2.4777775,2.8071,2.7020966666666664,5.638063333333333,1.8960775,2.25219,2.9036266666666664,3.0204400000000002,3.3565666666666663,4.428435,3.06879,5.0139716666666665,1.18902,4.60877,1.0160116666666668,4.037885,3.351075,1.6400766666666668,4.31923,0.9369144444444445,4.847235,5.51935,4.978425,4.147585,3.7879474999999996,3.862985,3.02559,5.0028,5.9893,2.8485375,3.96151,2.461045,2.565685,1.98199,2.625915,3.388385,5.00085,1.04332125,4.4380875,1.2848875,3.323525,1.6135400000000002,1.04332125,0.2005935135135135,3.81186,3.059445,2.32547125,1.9973033333333332,2.76155,1.108825,4.13318,3.57837,4.71312,2.6019533333333333,6.1902,6.71069,2.711813333333333,3.3379333333333334,2.66779,0.8130900000000001,2.4054733333333336,6.12685,4.069145,5.3465,4.85325,2.0970866666666668,1.1795266666666666,4.15092,1.67342,2.1978725,1.67886,3.015425,1.8341575,1.9416,1.976145,2.0646975,1.8381425,1.3923271428571429,1.3485,1.96498,1.8309075,2.17833,2.2436966666666667,0.5244046666666666,1.1149580000000001,2.83849,3.163876666666667,1.9916275,1.75215,1.5947775,3.43629,2.21097,2.526645,3.22763,5.5274,2.907065,3.003026666666667,4.34816,1.533845367647059,3.663785,23.0502765,4.595746666666667,5.628,4.329075,2.0904866666666666,3.757925,4.689165,2.355165,5.08445,3.281413333333333,0.8531875,3.08192,4.55747,3.699715,4.15506,1.4351966666666665,1.8975466666666667,2.4149433333333334,2.15247,1.4616,3.3186633333333333,5.1022,4.242095,3.35366,3.925175,4.83017,3.754405,4.485145,1.23913875,2.771615,4.11431,4.79606,1.8392199999999999,3.3225866666666666,1.83789875,1.83789875,3.61572,4.60352,2.779526666666667,2.888033333333333,3.921475,3.939495,6.5805925,4.55749,2.280695,1.4373575,2.918705,4.34301,3.0463,2.5995992063492066,2.5995992063492066,3.2380600000000004,4.967805,3.66908,4.958505555555556,2.33634,3.4870368888888885,0.6514588888888889,0.6514588888888889,0.6514588888888889,3.286015,3.83073,4.033838333333334,5.54605,2.0060375,4.90622,4.685665,5.14165,3.411975,5.3246,2.54465,1.3757199999999998,4.513665,3.80059,0.4638935714285714,4.2406999999999995,4.760995,1.5055916666666667,5.0482,5.10865,4.482355,3.84782,3.687875,2.71002,4.50301,1.6600560000000002,4.490445,1.5871283333333333,4.128225,5.81025,1.11718625,2.937615,7.0591825,3.820845,3.3849666666666667,2.30091,3.874925,5.57645,3.0961933333333334,7.680156666666667,4.20349,2.087076666666667,3.15916,2.743263333333333,2.3504333333333336,2.738426666666667,1.7808633333333335,4.77065,0.62053,2.11927,2.11927,3.04876,3.495815,2.3095625,3.175505,4.186165,4.94237,4.31203,1.5220933333333333,4.481292404761905,4.23803,4.945035,3.62285,4.235334333333333,3.749441,0.48589333333333334,2.7732642857142857,1.0147,0.48589333333333334,4.12976,0.8541033333333333,4.174955,3.97946,6.541463,2.1658399999999998,1.0720725,1.126336,2.27157,2.8891833333333334,1.3674266666666668,2.465806666666667,3.40141,3.68133,2.01002,2.3182300000000002,4.564765,3.0380962499999997,3.989165,6.05925,3.529905,4.98511,6.56596,4.430805,3.441155,4.40851,3.68661,4.27597,5.0099,5.7969875,5.4303,2.4349333333333334,0.9375100000000001,3.57019,3.824815,4.156885,4.35302,4.22099,4.968315,2.541166666666667,2.4296433333333334,3.0705666666666667,2.3701666666666665,2.06371,2.8422633333333334,3.20675,2.4046133333333333,3.706775,4.423595,4.22433,5.35105,2.5524566666666666,3.413133333333333,2.865975,0.72075,4.015235,3.5773,4.612105,2.948096666666667,5.222306666666666,3.071905,4.53495,3.89896,0.5856261538461538,0.5452064285714285,4.343845,2.7449215000000002,3.04013,4.49078,4.207595,1.7037520000000002,5.2691,4.217265,2.6177433333333333,2.59904,2.2003225,2.01344125,3.534466666666667,3.1361333333333334,3.10215,2.974353333333333,3.5828666666666664,2.68405,2.86868,3.7144666666666666,4.3674025,0.541036875,0.541036875,0.541036875,3.3456363194444445,3.5208,3.5721000000000003,2.6270466666666668,2.8138966666666665,1.1017075,2.9669666666666665,3.0552466666666667,1.799755,2.7344033333333333,2.3856733333333335,0.9983277777777777,2.72506,4.62093,9.753260333333333,1.4863058333333332,0.488452,3.884485,0.488452,0.488452,0.488452,0.488452,2.1690975,3.927718,4.016805,4.982255,5.9684,2.7901166666666666,2.740326666666667,3.00097,3.4732233333333333,4.903735,1.1159883333333334,2.274723333333333,3.05226,2.575886666666667,2.9185700000000003,3.634865,2.19687,2.188565,1.1777666666666666,4.909675,2.628235,3.23829,0.928545,0.671277,0.671277,0.928166,1.856711,0.928166,0.928166,0.30014,0.30014,0.928166,1.6641666666666666,2.4235933333333333,2.95043,3.1364199999999998,2.53372,2.6107766666666667,3.2010400000000003,2.8410666666666664,4.52307,3.61833,1.8330475,2.2832033333333333,1.7675975,0.18273422312223858,0.18273422312223858,0.18273422312223858,0.18273422312223858,2.5547833333333334,2.5121766666666665,0.936072,4.833555,0.7684090909090909,1.6860220000000001,4.595923333333333,5.34335,4.439285,2.9672,4.40055,3.60912,1.7886300000000002,1.2777625,3.75633,4.57296,6.49925,2.369425,1.5212366666666668,1.9654366666666665,3.03313,1.4787966666666668,2.6816,2.7926333333333333,3.235696666666667,4.418325,3.782145,3.1001,4.907635,2.6228166666666666,4.1114,5.2288,3.96868,4.201645,4.592525,5.263669999999999,4.869808333333333,3.0570700000000004,4.9626850000000005,4.181935,6.4637,4.472735,4.529295,2.214735,3.015145,4.21822,4.77432,4.3444,3.97007,4.13346,4.095825,4.01856,2.4232466666666665,5.571,3.58401,7.366827499999999,6.05005,5.78395,4.986255,1.4900142857142857,0.976437,0.6112176923076923,1.78039,4.96187,5.5211,3.96776,1.59195,3.641525,3.047915,5.0426,5.07185,6.118021000000001,4.05516,3.190315,1.6459700000000002,5.2050675,4.00175,3.40214,1.72018,0.95874,3.880935,3.5072,3.67812,3.46738,2.20175,4.538665,1.7638466666666668,2.969253333333333,2.54932,4.13352,5.42455,4.71666,2.2441425,1.74056,5.61515,2.890556666666667,8.82753,2.82105,5.09405,5.802,4.39863,5.4386,3.607875,5.0577,2.1317,3.94253,4.766908,2.490245,4.32686,4.29514,7.223,4.987225,3.0913766666666667,4.182415,3.9087,3.0380962499999997,3.276455,5.1683,5.5341,2.504575,2.8847133333333335,3.2822633333333333,2.33203,2.600035,4.327175,5.92615,4.90396,4.62917,4.89502,4.41344,4.91958,0.6753976923076923,2.991656666666667,1.2116928571428571,31.169352911533817,1.90129,4.48373,2.88506,4.521435,1.742866,2.4640233333333335,3.1769810714285716,1.7178735714285716,1.7178735714285716,1.7178735714285716,1.7178735714285716,1.4591075,3.418455,0.3925977777777778,7.722565555555556,0.3925977777777778,4.296035,5.01855,2.062185,5.3605,2.8182,4.048802,2.376106666666667,2.4987366666666664,2.7068766666666666,2.1114966666666666,0.6252146153846153,2.6299766666666664,0.7275341666666666,3.2227533333333334,2.3069633333333335,2.331016,1.211915,2.331016,6.1306,7.5486450000000005,4.51596,4.314395,5.65815,6.20635,7.415873333333334,3.090145,1.5007625,1.5007625,2.35954,5.0228,3.699655,4.36054,6.182968333333334,3.871875,2.78129,3.831035,3.4308,3.46445,2.278965,0.8425560000000001,2.05278,3.619585,4.112875,5.263486666666666,1.9473925,3.982955,1.296982,3.201165,1.241754,3.4128000000000003,3.065376666666667,2.9379666666666666,3.23292,3.0218666666666665,4.87088,0.7033753846153845,3.385455,3.5582666666666665,2.685513333333333,2.3002933333333333,4.147713125,3.4391,2.1298533333333336,4.64295,3.500435,5.02955,4.01556,3.59511,5.5956,5.0602,2.2512133333333333,5.6327,2.3470641666666667,1.7568733333333333,3.1045866666666666,2.4699966666666664,2.7758266666666667,2.595195,1.9187900000000002,3.4052285909090907,4.18517,3.307015,2.363605,2.363605,2.619725,4.179835,4.21077,0.6428172727272727,3.430285,3.134005,8.68876,0.8552209090909091,4.412465,3.501745,5.52025,3.66517,3.79497,2.411565,3.863145,2.73659,5.564,2.6083516666666666,1.1247175,3.944305,2.69562,3.793275,2.653723333333333,3.60587,3.872915,4.084825,5.239733,3.222215,2.09475,5.1518,2.5586966666666666,4.564585,4.802935,4.854255,4.413635,4.04858,2.825015,2.2413633333333336,2.8512233333333334,2.6005566666666664,2.7062000000000004,3.23389,2.709953333333334,4.94568,2.9262266666666665,2.39773,6.552454166666667,5.001077083333334,3.7574475,3.02732,3.7751333333333332,4.031835,3.401695,1.9440125,4.2915125,4.839975,4.910535,1.3553683333333335,4.084755,2.7098999999999998,6.9285075,4.860625,8.689407777777777,4.163725,3.80501,2.2164,4.13512,5.7181750000000005,7.80558,4.13016,5.34851,3.77836,3.409165,3.860965,1.697954,4.387576,1.4420250000000001,3.67068,4.60337,3.4472666666666663,0.8759250000000001,8.941466666666667,1.1906,1.8903325,2.4567733333333335,1.95002,3.3804,1.36424,3.692605,3.34963,2.3986,4.18388,1.0379283333333333,3.599855,1.418455,2.9808483333333333,3.90608,5.0728,1.672495,5.844169583333333,2.419626666666667,8.13166,4.44944,3.01586,3.88836,3.33276,1.1302016666666668,7.54736,2.948655,3.282935,2.41018,4.161335,2.0901475,3.043665,2.3523,3.909855,1.3247525,5.69165,2.488055,4.177045,0.86744,1.9332783333333334,3.87089,5.1046,5.221992500000001,1.56941,1.56941,5.74255,4.343025,6.2877,3.755805,3.48743,8.794830000000001,4.31038,5.4314,4.116725,2.49001,2.1230059423963135,0.39511850000000004,0.22445387096774194,0.6345938709677419,1.0932935714285714,0.7252224423963134,0.22445387096774194,1.4112084999999999,0.41014,1.4884120714285713,2.045802370967742,1.999785,2.299245,2.2247233333333334,5.144,6.061436666666666,4.785155,5.1433,4.25697,4.95513,1.2073333333333334,4.69908,3.716675,5.6653,4.92762,4.85214,5.3903,5.6065,5.18785,1.1977366666666667,1.2447457142857143,1.8791,6.00697,1.3644399999999999,5.5621,4.676985,6.83906375,4.811355,5.3453,4.401545,4.48605,2.546375,5.2386,5.2618,6.442828333333333,4.98832,5.866265833333333,5.53615,3.6578625,4.11073,3.6587666666666667,0.95676,3.7352000000000003,4.316495,1.14108625,3.7228,4.58228,4.3813949999999995,4.960775,2.45075,3.315155,2.635076666666667,4.53772,2.1762275,3.77915,1.2913483333333333,2.88723,3.658305,3.855575,4.48982,3.3451166666666667,0.5927491666666667,5.9874,1.00096625,3.55371,2.9474633333333333,3.742875,2.01642,3.78922,3.675418205128205,3.20734,4.423505,15.14107988095238,4.9299333333333335,2.1677325,8.27772,1.47044,3.57701,2.6964799999999998,2.82542,1.88879,0.23262565217391304,2.7531,4.20257,1.7390899999999998,2.353763333333333,3.2226700000000004,1.9714625,2.2596233333333333,1.4578142857142857,3.21977,4.66161,4.795505,3.765905,0.5838685714285715,2.4194833333333334,4.489355,2.872745,3.86055,4.537855,4.42982,5.07105,0.48277000000000003,2.4161,2.4161,5.5182,5.17215,4.795715,2.6555,3.6070333333333333,2.781193333333333,5.0958,3.54868,5.592943333333333,4.56285,4.3841,4.9334,2.5452,1.959874,4.419635,3.997795,3.908,3.42804,1.84977,4.776875,4.33019,3.7367,4.45024,3.84963,3.98519,0.6068446666666667,3.10277,0.5850783333333334,3.0957399999999997,3.25294,4.042375,17.550914285714285,3.52885,3.64752,2.26976,0.94315625,2.24509,2.53237,1.5206899999999999,2.377895,2.544345,4.744255,2.2057766666666665,3.847645,4.237595,2.05713,4.266315,2.8441899999999998,4.609555,4.897565,5.19725,1.586495,2.096405,2.47364,4.78161,4.843395,1.1479,5.1824,3.815625,5.66055,4.664855,1.73325,4.586985,3.070275,3.450315,3.979395,4.03445,3.0870033333333335,0.64615125,7.542046666666667,1.4594960000000001,0.20194638888888888,0.20194638888888888,0.20194638888888888,4.824615,3.938825,2.6542733333333333,4.26278,2.850235,4.27684,4.406777142857143,4.173448333333333,8.254913333333333,3.95896,6.770748333333334,0.9430425,0.75139,2.367205,4.41463,4.236485,2.250853333333333,5.1148,4.81159,3.404725,3.55557,4.35719,2.174723333333333,4.897705,4.6492450000000005,2.3571,2.795533333333333,2.9025266666666667,2.70801,6.06645,3.573895,0.6553178571428572,3.62099,3.19333,4.12852,4.87717,4.910045,2.86479,5.41715,3.70349,13.65055375,4.68081,6.8686955,2.4329966666666665,6.3587,4.375115,3.869135,2.117945,2.31846625,9.38599,2.2016266666666664,4.2467999999999995,4.105766666666667,3.715033333333333,3.3277733333333335,2.9204266666666663,2.0314825,2.2027525,3.0286399999999998,1.8142099999999999,3.9206333333333334,2.3923033333333334,2.66389,3.3128166666666665,3.5322999999999998,2.46976,2.46976,2.3036033333333332,3.4944333333333333,3.21923,2.290833333333333,3.146933333333333,4.267266666666667,2.7328499999999996,2.72364,3.6959666666666666,2.33921,2.1269625,3.8386333333333336,2.89382,1.4713100000000001,3.930266666666667,2.2565399999999998,2.35045,2.8515566666666667,2.1502433333333335,3.318683333333333,5.546531666666667,2.4359533333333334,3.7835666666666667,1.8715166666666667,10.155633333333334,1.9272933333333333,1.9398566666666666,2.1108599999999997,1.0160722222222223,1.53248,4.174823333333333,2.6957459999999998,2.6957459999999998,1.608844,1.4563783333333333,3.890166666666667,3.6904399999999997,2.30644,1.4843433333333333,1.6929500000000002,4.698538666666667,3.628133333333333,4.097566666666666,8.210106666666666,2.9409014285714283,2.7533833333333333,3.2410414285714286,4.3776,2.1269625,3.2527066666666666,2.70821,3.306103333333333,3.5623441666666666,0.9993575,3.3387580000000003,2.92248,2.69638,3.828165,3.2079166666666663,0.6759490909090909,1.9170259523809525,5.3219,2.6050199999999997,3.319406666666667,1.6303066666666668,1.6303066666666668,2.0421375,3.7255866666666666,0.917562,2.158005,4.5014,4.5014,0.6454714285714286,5.872475,3.420785,4.04078,4.819565,1.2349071428571428,3.3663666666666665,3.5130666666666666,5.1240258333333335,5.578715666666667,2.27977,0.650392,2.5946666666666665,2.52452,3.0318759999999996,2.2082366666666666,2.364523333333333,2.84214,2.35206,2.4619,0.7633509090909091,5.1809,4.757442,1.244265,1.6986,5.49765,2.258405,1.554535,4.03546,1.468006,3.46953,2.5919,3.5009,8.831745833333333,4.0867,4.236275,5.01355,2.3748296363636365,0.778397,1.862512,6.935043333333334,1.8397933333333334,4.01432,4.03386,3.4337,21.31571275,3.238913333333333,1.4276600000000002,1.05664375,3.12698,1.4632133333333333,4.257426000000001,5.37965,3.4291229999999997,3.384733333333333,1.6517666666666668,1.4743083333333333,2.8670466666666665,0.58248,3.5156666666666667,3.5521,3.03993,2.319347333333333,2.5026266666666666,2.78256,2.0544733333333336,2.8683366666666665,1.6177499999999998,3.7209333333333334,1.5062616666666668,3.80395,3.979295,2.539756666666667,5.3021,3.14775,4.074105,5.19585,4.532835,2.9833966666666663,2.83036,2.28205,1.0850357142857143,1.0850357142857143,1.0850357142857143,2.2942425,3.481533333333333,2.538933333333333,2.43567,1.9762033333333333,1.94016,3.68288,4.946485,3.72441,6.306025,3.098465,2.4682625,1.9084825,0.9432883333333333,2.42214,3.88645,2.407993333333333,2.676606666666667,2.35614,2.4405933333333336,2.55347,2.7903066666666665,2.6641966666666668,2.5481366666666667,2.1405499999999997,3.379433333333333,2.0624533333333335,2.1962475,1.5784725,1.641475,3.098456666666667,3.1192266666666666,1.9312125,4.01188,5.16755,2.87668,2.5255001923076925,5.6866183333333336,4.017375,4.702655,5.4391,4.45607,4.30349,6.063000000000001,1.2556,4.113745,2.6515,5.2652,4.972755,3.47825,3.568325,2.1489325,7.69148,2.520435,0.8492166666666666,7.04995,5.11292,5.458238095238095,4.3117,2.939924,1.7510325,4.8297,4.12792,4.256885,5.1392,2.543935,4.168435,4.463895,1.7675975,3.93695,2.729575,1.4375816666666665,4.643795,0.6059705882352941,4.214783333333333,3.416275,4.488475,2.929355,2.02245,3.52088,1.942215,1.4232375,2.81813,3.3641666666666663,3.2099933333333333,7.284109871794872,1.57108,6.608435,9.753585000000001,5.76588,2.96867,1.3061614285714285,2.92873,1.3061614285714285,2.9109200000000004,2.2171766666666666,0.3204982352941177,1.1589507352941177,0.3204982352941177,0.3204982352941177,0.3204982352941177,1.1589507352941177,1.1589507352941177,0.3204982352941177,0.8384525,4.17187,3.40887,3.217435,3.32804,3.39479,4.30269,2.8631276666666667,1.616528,6.736056666666666,3.033606666666667,4.099905,2.6475466666666665,1.039790909090909,1.184575,4.366865,3.64709,1.1414111111111112,1.4332340000000001,0.745809090909091,2.9314713073593075,4.25937,5.0837,3.523566666666667,5.204809166666667,0.5536976923076924,4.10651,3.0708937499999998,2.8289866666666668,2.4626733333333335,3.5183666666666666,2.516896666666667,2.9748699999999997,2.6569,3.003135,3.63626,4.582975,4.84111,2.1369,4.83116,4.462005,2.68898,3.63428,3.575735,0.347736,4.874795,3.478145,3.041535,2.99208,4.400585,3.883565,2.058715,3.21372,3.8281,8.1109,5.0644,5.65585,4.638515,4.3236475,1.0928475,2.07134,2.0781,1.515735,1.8208433333333334,4.2017,5.50415,4.082785,4.74884,3.081824,2.6436733333333335,0.9349166666666666,3.999135,1.2155233333333333,1.1314183333333332,3.318215,3.678905,4.596825,1.2640625,2.4883333333333333,8.568476666666667,3.2391133333333335,2.9452391666666666,0.9040425,3.7564,12.128456666666667,3.370285,4.074355,3.28789,2.84778,4.533855,4.928305,2.07044,4.3212,0.5722276923076923,4.633665,2.19734,1.8930575,1.8930575,3.4835333333333334,4.23726,1.51475,4.023515,1.3098785714285714,3.60741,2.863386666666667,3.4329666666666667,4.68771,3.40722,4.009815,2.614975,3.03123,3.03123,10.96404,0.714789,2.930775,3.1114766666666664,2.1230275,1.9774825,0.8760228571428571,1.4490475,1.1267114285714286,2.19732,4.82035,2.61872,4.1023325,2.00319,4.05927,3.95654,1.7042666666666666,2.0324925,1.0249683333333335,6.101339333333334,1.96584,2.196135,1.748904,1.754232,1.05664375,2.2312054166666666,3.65241,1.9660366666666667,3.0877266666666667,2.5194233333333336,2.769816666666667,1.84351,3.0752466666666667,2.53806,1.7610566666666667,1.9196233333333332,2.744423333333333,2.725873333333333,2.52815,1.17429,2.47443,2.0833066666666666,2.2879533333333333,0.31487526315789477,0.4232991666666666,2.268893333333333,2.12261,3.076835,3.2767099999999996,2.77346,4.84557,5.64515,4.392945,4.52085,4.419375,3.85215,2.762373333333333,3.73668,0.7160054545454545,0.0939265909090909,6.9599,0.0939265909090909,3.51432,2.955225,5.21915,3.531955,6.31525,4.66625,2.0027,2.56878,1.0396283333333334,5.1346,6.12505,2.9297533333333337,5.49365,1.799545,3.502345,1.910765,3.0305400000000002,3.1793899999999997,3.925735,4.814783333333333,3.129245,2.1657800000000003,2.1657800000000003,4.09282,7.17456,3.56899,2.1538666666666666,2.3814766666666665,4.170735,2.98936,4.84203,3.407075,0.9531777777777778,4.16452,2.4178833333333336,2.6018433333333335,4.18176,1.0975666666666666,2.3890333333333333,3.933775,3.36058,4.802825,2.989075,2.798915,3.94492,4.069435,4.2172,4.821345,4.004075,3.197457222222222,3.876215,2.8150333333333335,2.7861233333333337,2.52889,3.8181333333333334,4.04724,3.0052,4.917870833333334,4.156365,3.686515,5.102,4.44385,3.51703,1.429424,1.3848075,4.114195,3.29012,1.6705233333333334,2.73645,3.201605,3.10082,3.9732933333333333,3.01243,2.5128783333333335,12.654373388888889,2.279383333333333,1.787802,4.43122,1.0445,3.17203,3.668705,4.627275,2.98706,1.2078777777777778,2.2863,2.6019533333333333,1.3830719999999999,4.31398,1.04158,1.04158,3.6709433333333337,1.6594433333333332,2.0115000000000003,1.8156525,3.0937,5.7927,2.029045,2.61801,3.2870833333333334,2.810613333333333,2.8187266666666666,1.947026,6.46695,5.6559,3.506625,0.707043076923077,3.380305,3.323725,1.0281909090909092,5.339,3.25253,8.32038,4.91066,4.29949,3.550995,1.3194875,3.21623,4.607775,4.350265,3.86359,3.558245,4.399305,3.50795,3.5315999999999996,3.5315999999999996,4.091095,2.7195383333333334,4.03681,2.142385,5.325430833333334,5.143161666666667,1.5055916666666667,4.57646,1.03629,5.38635,4.020655,4.82441,4.46512,3.937745,2.584315,2.4772925,4.106485,4.149435,4.92386,4.21298,1.7801225,1.478768,4.2694,2.08157,5.1231,3.20879,3.614425,7.308835,3.98317,4.33068,4.969915,3.753415,4.43728,8.205995,3.98735,3.160085,8.749095,3.78969,0.6007600000000001,2.0674654700854704,4.6935,0.6193506666666667,4.683155,4.318215,4.76308,4.480415,3.208895,3.49102,4.378155,4.78643,2.580625,0.7045485714285714,4.684845,4.33871,4.40788,4.411225,2.7578,4.37139,3.54772,0.714688,3.289965,4.00385,2.442395,3.053796666666667,4.001955,2.1854933333333335,5.3992,5.2592,3.6910175,0.87649375,3.2276433333333334,5.171871666666666,5.171871666666666,8.422326666666667,2.05104,0.80102125,0.80102125,23.780475,2.5546,7.55705,0.37714416666666667,1.3843366666666668,2.9616000000000002,0.9736710000000001,3.736645,3.812945,2.0901075,2.0901075,4.21915,4.771045,3.48616,2.5778383333333332,2.5778383333333332,3.50779,4.244015,3.66068,3.4271999999999996,2.0125866666666665,2.5950687500000003,3.9643060000000006,2.14741,3.57693,2.80105,2.8860542857142857,2.8860542857142857,3.2427333333333332,0.8216711111111111,2.5219366666666665,1.8185799999999999,3.3231466666666667,2.8919099999999998,2.863426666666667,2.5301566666666666,4.442025,2.63801,2.997453333333333,5.881251,1.2316259999999999,2.37513,3.157455,2.7258099999999996,3.909555,5.54853561904762,1.5978133333333335,3.5953666666666666,2.291985,5.16389,6.25212,1.573885,4.848936666666667,4.849497333333334,3.187246,4.580866666666666,1.0822957142857141,1.8392199999999999,2.92167,3.8913961904761902,1.2243916666666668,2.332585,1.74033,1.9776900000000002,2.51534,3.7673740000000002,5.417111500000001,0.9690916666666666,1.2731571428571429,2.80892,12.67355,4.53709,2.67854,1.2172742857142858,2.5027978571428573,0.9474328571428572,3.2182833333333334,4.251198333333334,4.80639,3.3266666666666667,5.33635,1.56834,3.705133333333333,3.848725,2.80102,3.870648888888889,2.0554566666666667,1.0822155555555557,2.5052766666666666,2.974686666666667,7.174231666666667,2.8297235714285716,2.5506233333333332,0.7294940000000001,4.6591,3.4857666666666667,0.726778,5.463500833333334,1.8634675,2.2645433333333336,5.439,1.2332666666666665,2.9893466666666666,0.9909545454545454,2.93627,4.27245,2.77886,2.9740933333333337,2.19265,2.512236666666667,4.455905,4.62368,5.1301,1.75294,4.60272,3.79065,4.210036666666667,3.37941,2.3758966666666668,4.074274666666667,1.037088,2.7229319047619045,4.672935,2.70315,4.0737733333333335,1.37465,2.6602,1.9467780000000001,1.9467780000000001,7.114958333333334,3.0599333333333334,5.729008333333334,3.4046133333333333,1.8190266666666668,2.6178933333333334,4.584756666666666,5.493233333333333,8.446745,4.687973333333334,2.6449935,1.8514033333333335,1.9601751666666667,4.1099733333333335,3.931605,1.472884,2.0545975,3.164744285714286,1.4427225,3.1356033333333335,18.782458666666667,3.06751,2.8124599999999997,2.8396633333333337,2.90218,2.3402833333333333,2.1041133333333333,3.1636666666666664,3.5472333333333332,2.45587,2.56719,5.487575333333333,2.4509333333333334,4.912204,2.8821060000000003,2.8205039999999997,1.4448666666666667,3.6748877777777778,2.0516675,4.054045,5.07155,3.63944,3.2157608333333334,3.1199933333333334,2.21887,3.3466666666666662,3.4854000000000003,3.4166000000000003,3.2946166666666667,0.8168581818181818,5.3089,2.351355,3.071213333333333,2.7304316666666666,1.9189675,2.164437916666667,2.164437916666667,3.2032145833333336,1.8308929166666665,4.738645,4.224895,3.56626,4.176875,4.576185,4.4977575000000005,4.4977575000000005,3.778825,2.9919933333333333,4.63071,2.75846,1.6232739999999999,2.11733,4.504025,3.919055,2.708925,3.187075,5.4963975,3.7062666666666666,6.227629583333333,3.210025,0.932194,0.932194,3.15196,5.0041,3.80275,3.3822840000000003,2.4218333333333333,1.79223,1.6062166666666666,2.8728166666666666,5.988325,1.4262083333333333,4.10571,3.6938333333333335,3.92416,5.0945,4.762525,4.650668375,3.306573333333333,2.254235,4.26394,4.04237,2.0919975,1.122614,4.11552,2.8782,6.4129000000000005,3.5347000000000004,2.507855,3.174755,3.741085,3.52106,4.58639,2.964805,4.444115,3.85278,4.196545,3.781625,3.487455,3.597035,3.74231,2.7027300000000003,4.0741,3.08681,5.0538,0.6146655555555556,2.390375,1.8467675,2.103115,1.858205,2.4026633333333334,2.5798666666666668,1.7998266666666665,4.27199,5.86199,1.8407,3.989195,4.292415,2.4276475,5.398415,4.013534583333334,4.497435,5.0268,7.409258333333334,2.0961933333333334,2.89053,1.8114033333333335,2.734223333333333,1.861385,1.95006,4.06421,3.535435,5.3304,1.01427,3.171805,4.19205,2.227185,5.2166,3.676375,2.619085,3.7711333333333332,3.39665,1.9778525,1.7724985,2.688475,3.163525,3.373875,2.0816675,1.8525028571428575,1.8525028571428575,3.586625,3.432475,19.753773095238095,1.18801,5.132705,1.835685,2.1277466666666665,3.665535,3.698835,1.844145,3.90003,4.74576,1.2811949999999999,1.2811949999999999,1.2174433333333334,1.6940799999999998,2.3827933333333333,3.1791866666666664,4.584861666666667,3.20705,3.4301999999999997,0.4920878947368421,3.4119278947368423,2.022673333333333,2.321185,4.55908,3.496735,3.85793,3.42688,4.483605,4.626285,2.0451675,3.96019,5.623866666666666,2.39745,3.603345,5.2183,2.27349,4.712985,5.93465,1.3264957142857143,1.898986,3.5162999999999998,0.6792085714285714,3.1641266666666668,3.260685,4.95448,4.845425,2.8259672222222223,7.761721666666666,2.976156666666667,2.71252,0.44336764705882353,4.115545,5.216058095238095,3.0879161904761903,5.2288,3.694205,2.5789511111111114,1.6944780000000002,5.3869,4.22888,4.087345,2.828925,2.01021,3.562875,3.9481333333333333,2.85994,2.0251775,3.8684583333333333,5.9695025,2.9165,3.825285,3.566325,4.05549,1.5442571428571428,1.5442571428571428,3.1898999999999997,2.9356533333333332,4.336885,4.54002,6.52925,3.522865,2.87285,2.1660775,1.4985916666666668,1.382782857142857,4.88411,5.328305,5.0293,6.04215,4.33529,6.5855475000000006,3.173475,2.7681566666666666,3.94947,2.048486666666667,3.09312375,1.5791359999999999,4.67435,2.4041799999999998,4.039275,4.90889,4.04386,2.703953333333333,2.890556666666667,1.3368371428571428,2.3971325,3.7029,1.8439675,0.578304375,3.1478099999999998,2.6256133333333334,2.4046133333333333,2.3371833333333334,1.931155,1.54786,0.6944981818181818,0.6944981818181818,3.471966666666667,1.66036,2.27053,3.392405,5.4272,4.307305,6.02935,4.269715,4.472095,1.966269,1.2380866666666666,2.571415,4.54189,1.2164625,4.2769125,3.000545,2.656975,2.19394,3.998945,2.769535,1.9279566666666668,1.044592857142857,3.09742,8.76357,3.46164,1.5813658928571428,4.54018,3.354145,2.752325,3.489315,2.801145,1.8268966666666666,1.06228,3.60961,2.5298966666666667,2.24165,1.6905633333333334,2.3268166666666668,2.20119,2.489313333333333,2.8310199999999996,1.3067466666666667,1.8234633333333334,1.0337325,6.382705,5.5853,5.82775,4.06089,4.482595,2.9959433333333334,1.6103318803418802,4.91497,4.95334,2.463675,5.0839,2.289225,4.55511,1.03234,4.131405,4.15508,1.827165,7.66345,3.554445,1.827125,1.91854,1.762765,2.544425,3.3029466666666667,1.22419525974026,2.885453333333333,5.69945,3.46485,3.997985,5.43095,5.3824,5.40735,0.90594875,4.17378,4.394495,4.120295,4.686965,4.180406666666666,4.53899,4.983015,2.976695,1.5506266666666668,1.5506266666666668,5.1183,6.098098333333334,2.84222,2.6281466666666664,3.8985,4.39586,1.538176,4.20673,5.24365,3.43712,3.9497,2.85812,2.7045266666666667,4.878755,2.314986375,10.688670993016787,1.9524666666666668,0.79457875,2.4299,1.67759,2.4603625,2.15745,1.885306,2.7341866666666665,4.93119,5.3414,2.9248366666666663,1.6548733333333334,6.369461428571429,1.4303428571428571,3.03518,0.5201714285714286,4.107266666666667,5.6022,3.65401,4.511435,11.7231,5.31265,3.1148900000000004,3.270896666666667,4.00746,3.126106666666667,4.54703,0.8952575,1.0527083333333334,0.8914663636363636,5.7481,4.12069,1.736364,4.793544666666666,4.395855,6.594,4.85274,4.97423,4.33098,6.0316,3.87292,5.09795,3.684495,1.215924,3.919715,5.37385,2.65335,3.937375,2.783195,2.47191,1.267045,5.1346,3.87016,1.3377125,3.4471666666666665,2.87508,2.5321166666666666,2.501646666666667,2.5812,2.98375,0.7077636363636364,2.6183666666666667,2.599606666666667,2.64226,1.9111966666666669,3.0519933333333333,2.13932,1.5265333333333333,2.362635,2.0409525,2.112975,3.5119000000000002,2.87003,0.6799540000000001,2.7492099999999997,3.40509,4.591325,2.19663,3.738325,5.4421,5.11865,3.402725,3.967075,1.3257257142857142,3.67492,2.4580249999999997,4.355608333333333,2.76091875,4.51047,5.2745,4.76535,4.34768,4.2017999999999995,1.007882,1.007882,2.2812107692307695,1.70663,3.89219,2.435182,2.435182,4.98387,6.09645,3.08445,1.1953933333333333,1.5564285714285713,5.8046,3.5917,2.33318,3.29669,2.872975,3.26923,2.33318,4.4857675,3.33455,2.9657308333333336,2.76743,2.017415,2.979,6.5858,2.862915,3.428255,4.628395,6.572,6.6351,6.43825,6.43825,5.53505,4.85052,0.521253076923077,5.1732,4.53904,3.09211,2.853785,8.14902,2.888056666666667,3.94933,3.600265,2.752463333333333,4.6023,2.3132,3.2987225000000002,2.83851,3.3473666666666664,2.3476433333333335,1.509506,1.509506,3.553785,3.732105,5.0736,1.7359719999999998,1.443824,48.04109049242424,2.6266166666666666,0.869800909090909,3.0431500000000002,1.776745,3.3863333333333334,2.765423333333333,3.124563333333333,2.974095,2.7632833333333333,1.9612566666666666,0.98390875,4.35804,3.20617,3.55825,3.77121,5.21125,5.15855,5.1444,5.56655,5.3654,4.79295,5.4524,6.42073,4.95831,5.4874,2.0657175,3.98044,6.7533,5.28605,3.43836,4.22253,3.248035,2.490065,3.88378,4.618135,2.785766666666667,3.8715666666666664,1.617266,4.535725,1.3658860000000002,3.370205,3.869935,3.413635,6.429365,4.097515,1.9511425,4.09112,3.84283,3.898575,0.97192125,2.82538,3.01738,4.365270357142857,1.1822825,4.585595,1.346405,5.8264,0.6889144444444445,3.936772,9.964391666666668,4.43717,3.49139,3.245505,1.8545666666666667,4.104735,5.45185,3.1328366666666665,4.50283,9.146217777777778,3.471833333333333,2.1151733333333333,2.81183,2.7573366666666668,2.6895633333333335,2.6532827500000002,2.093856666666667,2.6313866666666668,3.0338233333333338,2.5951366666666664,3.1073466666666665,3.29804,2.32279,1.6282266666666667,4.931010666666666,3.9921,2.6111,4.888614,2.7116666666666664,1.02165625,2.0468725,2.881206666666667,5.357044285714286,2.910975,2.186888333333333,2.186888333333333,1.57763,1.6707125,2.1238,1.899772,5.766859999999999,4.452109999999999,2.169645,2.81209,3.7188,1.9891875,0.6180733333333334,2.6814199999999997,1.888805,0.55331,3.9182,2.52035,2.52275,3.689365,3.5386633333333335,2.4293,1.5376233333333333,1.1079633333333334,2.22181,3.491285,3.738785,4.1604575,2.82066,4.08617,3.582085,1.1256545454545455,9.2954,2.725685,3.31753,1.2621375,2.59665,2.3819975,2.3819975,2.3819975,5.00325,5.5104,1.695085,4.97233,1.4028399999999999,5.370843333333333,1.537966,4.180625,4.263125,4.12877,4.87408,4.33809,2.017125,8.416924999999999,3.95159,4.962665,3.22258,3.8256016666666666,3.1516300000000004,3.0030066666666664,3.807995,2.4562933333333334,4.4085914285714285,4.271193333333334,1.57437,3.98373,1.57437,3.221215,4.355248333333333,5.06519,4.355248333333333,1.6058966666666665,5.75395,4.51869,4.313685,2.6640900000000003,2.9822,4.158005,3.233445,5.0967,0.5207621428571428,2.9777400000000003,2.9642866666666667,5.215621666666667,4.712415,2.3936975,4.902705,5.918786666666667,3.484725,1.926175,2.710855,2.2040366666666666,3.76214,3.879535,4.5403,2.482035,3.70303,0.8517429999999999,5.39025,3.49383,4.11518,2.2417000000000002,3.05885,2.2776,2.9089066666666668,2.8202533333333335,2.771573333333333,3.01215,2.4948975,2.4948975,4.208025833333333,2.925055,4.765855,11.585537500000001,0.9493444444444444,4.472495,2.3607766666666667,2.36687,2.7069466666666666,1.4765375,7.664488833333333,3.3764333333333334,3.49197,3.635873333333333,2.4316166666666668,3.9429,4.255637472222222,2.1356633333333335,0.4321461111111111,1.416258,1.5727175,4.907815,2.84242,3.22755,3.6992700000000003,3.4990825,2.28373625,4.853075,4.62523,3.87744,4.37333,2.21071,3.82057,2.4764399999999998,5.475806666666667,3.172995,4.91175,4.077135,4.114605,4.242105,2.02725,3.896465,3.599895,3.292213333333333,3.69089,2.76716,3.09651,3.743875,4.214575,2.722386666666667,4.565215,1.5326816666666667,3.693915,2.712885,4.30783,4.230435,3.884305,4.58813,2.506375,4.21093,5.1884,4.03734,3.1128400000000003,2.23127,2.985435,2.465785,0.8733916666666667,4.504595,2.15329,3.492785,2.69812,4.07658,3.471455,2.8363,3.222165,4.04982,4.516758666666666,3.998855,2.99915,1.5971666666666666,3.493605,2.42096,0.9186555555555554,4.33215,8.70619,3.248085,3.67187,3.776845,5.0148,3.88373,2.154985,3.97465,3.8104,3.211145,3.116935,3.63065,0.61434,1.27961,6.2992550000000005,1.69275,2.71645,4.778642,2.45075,2.44843,2.771985,7.69651,2.63544,4.050425,3.71026,0.7815966666666667,3.45981,2.69361,3.87775,3.945895,6.180048333333334,0.665588,3.36892,9.2458,3.174425,1.1178655555555554,5.08066625,4.67183,5.2145,4.21935,4.70808,3.09265,2.54014,6.972955,0.8125709999999999,3.503125,3.99231,3.295155,4.22371,2.205565,4.205875,1.6970833333333333,4.06422,3.822095,4.022055,1.7585775,4.49422,4.478585,2.3202525,2.016445,2.254375,0.726778,4.174085,3.4291229999999997,1.489884,8.495275,5.782,4.526495,4.191785,3.52521,4.33718,1.4167257142857144,4.38015,3.90935,5.26005,3.758395,2.441336666666667,6.4618437606837595,1.06997,1.06997,2.53502,0.91022,4.18424,3.1735333333333333,1.035295,1.8018266666666667,0.4317583333333333,6.31803,1.0556125,2.810885,3.59439,4.009705,3.652475,4.14464,5.38865,5.489155,3.29218,3.13488,2.513685,3.97373,4.594035,4.27575,3.79347,3.52598,6.05575,4.26504,4.157590555555555,5.436959,3.56352,3.611275,2.277005,3.611275,6.862274,41.00717454437229,3.81817,3.485955,2.8127099999999996,4.345085,4.370225,3.56217,3.621545,3.871325,4.4595,4.117445,1.6004383333333332,4.811805,2.90513,4.666675,5.2488,4.679325,2.186166666666667,4.50682,4.040435,3.21423,1.51688,0.6207784615384615,1.6706420000000002,3.7647,2.84439,1.2900375,2.9844899999999996,2.5475833333333333,2.8110166666666667,3.5582999999999996,2.9867233333333334,1.367474,2.5999233333333334,3.741733333333333,1.9314280694980694,2.8572633333333335,3.1335319999999998,2.9835433333333334,2.57943,3.4761333333333333,1.1768333333333334,3.753155,4.126695,1.2201183333333334,1.2201183333333334,1.2201183333333334,1.2201183333333334,2.951739090909091,2.13721,2.46623,3.15123,4.81288,4.83763,4.27869,4.2207,5.7054,4.56605,2.404235,5.9239,3.693735,2.767235,3.943555,2.95568,4.150615,4.106555,0.7249046153846154,1.407617142857143,1.52543,4.22391,3.94805,4.34124,4.123945,5.979638333333334,2.20986,4.31673,1.5402633333333335,3.51769,4.876545,1.5268933333333334,5.24735,0.6541808333333333,4.473785,1.11484,1.1344375,3.761735,3.92347,5.3793,4.88227,6.03125,4.61447,1.495768,4.114725,1.5031225,3.566405,3.082295,2.5789511111111114,1.9241625,3.019855,1.36603,3.30702,4.71613,2.9574033333333336,5.76455,119.38384977507215,0.5095222222222222,4.56629,2.2871,4.724925,4.1545,3.355525,1.541105,0.32829142857142857,2.808175,3.880565,5.13485,3.219045,3.49566,4.391095,3.91196,4.361215,7.985836666666667,0.6866733333333334,2.70585,0.96692125,11.319564,2.891855,3.53239,0.9288700000000001,2.19743,2.74952,2.1503025,3.132623333333333,3.119946666666667,2.8704033333333334,4.2249675,3.13116,2.2380999999999998,2.1766733333333335,3.36078,3.518645,2.94319,3.614785,3.702025,3.26387,2.3278266666666667,3.855845,4.043975,3.088455,1.0176833333333333,2.5474866666666665,4.2249675,4.67956,5.5635,4.05699,3.481425,1.98681,11.02426,4.05534,2.665115,4.250565,5.32475,0.5240053333333333,0.5240053333333333,4.0388675,4.0388675,3.136455,3.607533333333333,1.7748136363636364,0.5549525000000001,2.926085,4.35185,4.19606,3.17782,3.92473,5.3071225,4.59846,2.1968775,4.73947,2.190675,2.719555,4.183569166666667,1.91187,2.08918,0.5238657142857143,1.2779977142857142,1.2779977142857142,1.911315,4.690395,4.29717,4.897025,6.021378,2.936685,2.91498,2.007885,1.765015,4.11709,3.49215,4.89584,2.395445,4.89584,4.233915,3.58373,5.9418,4.061315,2.37045,2.019486666666667,2.5418,1.46655,1.42064,1.5073525,1.750355,1.51508,1.66837,3.9019333333333335,4.53498,2.530295,6.662,2.8624566666666666,4.372785,3.32755,4.130225,2.93869,2.9025700000000003,6.1514299999999995,3.3339666666666665,4.642928,3.181573333333333,1.49534,2.4078466666666665,2.4772000000000003,2.2674433333333335,6.14595,4.413209999999999,4.77679,12.612556808704452,0.7465925000000001,1.99561675,2.2760675,1.639738,1.24711,2.551675,2.454185,2.510175,2.3428375,0.7025115384615385,2.0173775,0.5188215789473684,4.4779,2.05276,3.760085,4.50958,2.5225,5.6322575,4.2148,6.97681,3.891215,2.96279,3.199855,4.571125,4.79359,2.565704476190476,4.60966,2.1375975,2.1375975,4.92343,3.655865,4.229375,4.055025,3.1973933333333338,3.876005,4.947975,5.2233,4.666075,4.53423,4.598135,4.398875,2.82709,4.63144,1.1491283333333333,4.69626,4.77219,2.5235166666666666,2.206323333333333,3.974565,1.4938416666666667,5.04025,1.8310125,5.820365000000001,3.828175,3.91844,1.4559466666666667,3.6035,3.6035,12.01113,3.916975,4.14915,1.09406125,4.296519,2.273285,1.5215375,2.340955,1.6923075,1.9893825,1.762234,2.90117,5.90945,1.8038975,5.02475,4.6206175,5.2973,2.0924975,2.524905,3.02759,4.32103,5.4852,3.90362,7.174798333333333,3.0895499999999996,2.641966666666667,0.3759461111111111,3.787035,4.33853,3.2469066666666664,6.013476666666667,2.6005866666666666,2.9054699999999998,1.2507916666666665,1.5433966666666665,0.578304375,1.416258,2.901475,1.5162166666666668,1.4980983333333333,0.63489375,1.380912,4.63834,2.4266625,0.6131746153846154,1.68115,1.8352975,1.6394220000000002,1.248195,1.97093,1.5433966666666665,2.490245,1.380912,1.380912,0.6131746153846154,1.5822,2.48876,1.2243916666666668,2.655425,0.6131746153846154,2.55125,2.48876,1.2273583333333333,1.2273583333333333,1.2273583333333333,1.917022,1.17193625,0.6131746153846154,1.094754,1.13886375,1.0160722222222223,1.8286719999999999,2.700125,0.8759250000000001,2.191035,1.5637285714285714,0.6131746153846154,1.691246,1.5433966666666665,1.9343666666666666,1.9313,0.889543,1.9343666666666666,1.0486144444444445,2.3202525,2.31723,2.439015,1.13886375,2.17338,1.36603,1.36603,0.8968018181818181,0.8968018181818181,0.8968018181818181,1.2507916666666665,1.5433966666666665,1.5637285714285714,1.68115,0.98878,1.9313,1.518928,1.4713100000000001,2.06794,1.2507916666666665,2.67854,12.5976375,0.63489375,2.58622,1.8101,2.3534175,0.9474328571428572,0.9474328571428572,0.6131746153846154,0.9464488888888888,1.54786,1.5637285714285714,1.793318,1.9313,1.1479,1.1479,1.6860220000000001,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,3.10746,1.0486144444444445,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.20194638888888888,0.3834872727272727,53.34759702813853,1.50141,1.6115483333333334,1.5637285714285714,1.8101,0.98878,0.6126470588235293,0.7294940000000001,0.7294940000000001,0.7294940000000001,0.7294940000000001,4.292566666666667,16.155964166666667,3.392533333333333,0.6051818181818182,1.58462,1.58462,1.58462,0.6051818181818182,2.901475,0.6131746153846154,1.691246,1.4980983333333333,2.4951,1.0486144444444445,2.3936975,1.0486144444444445,1.6050460000000002,1.6050460000000002,2.09795,2.09795,0.6131746153846154,1.9952,1.9952,0.9374363636363636,0.20194638888888888,2.901475,1.3760566666666667,2.291985,0.6051818181818182,0.6051818181818182,0.6051818181818182,0.6051818181818182,0.6051818181818182,1.8101,0.3834872727272727,1.0486144444444445,2.11173,2.11173,2.4772925,2.9474633333333333,0.6454714285714286,0.6454714285714286,3.3521666666666667,4.148666666666666,1.2349071428571428,3.2900899999999997,0.982423,2.1990825,2.05104,1.0975666666666666,2.9799133333333336,1.8752225,3.2276433333333334,5.1732,2.600615,1.1465666666666667,4.01846,4.321265,2.51588,1.644688,2.120090769230769,4.282,1.8171763888888888,2.656406666666667,2.92515,2.993673333333333,2.57793,6.32264,4.047775,0.20194638888888888,2.99361,4.89098,3.362355,4.350775,4.2065,4.40556,2.8544633333333334,1.8153860000000002,4.450875,4.49849,4.21987,4.617065,5.38865,3.12458,0.7074708333333333,6.817945,1.6025283333333336,3.143442,4.63198,2.58555,2.58555,0.8097372727272727,1.9241625,3.91653,3.063765,5.03205,4.3322,4.528685,5.0574,1.0686728571428572,4.5917,5.6907,6.7198843055555555,2.2485633333333332,4.09643,3.70622,3.91644,3.72361,3.91626,4.423515,5.974397499999999,4.910445,4.163306666666667,3.72556,4.33525,7.190485,1.8498125,2.288062051282051,2.907023333333333,1.7834933333333334,2.6786766666666666,1.8668366666666667,5.1455,2.9411133333333335,5.77925,1.945328,4.838715,4.04318,3.380025,4.366275,3.777715,2.539493333333333,2.7494833333333335,2.7389200000000002,2.7817000000000003,2.60612,1.6579633333333332,2.64826,2.69657,2.2702999999999998,2.2702999999999998,4.490445,2.9190233333333335,2.018006666666667,3.0277933333333333,2.0897966666666665,2.60472,3.0492166666666667,2.6602033333333335,3.0718599999999996,5.2228,4.00007,3.882915,3.329369333333333,3.329369333333333,4.06302,3.2420033333333333,4.057605,4.41937,4.099985,3.43131,3.39296,7.64487,1.8833375,2.07414,3.3332,3.21977,1.3384766666666668,1.3384766666666668,3.50528,1.94392,3.8484553333333333,3.808975,3.657015,2.2896015,2.08919575,0.5642491666666667,3.381415,3.90621,1.8642025,2.513025,4.30349,1.12836,4.57931,1.3269966666666666,0.3477342857142857,0.5103796428571429,21.142402775793652,0.5103796428571429,0.3477342857142857,0.673025,9.4213,2.899343333333333,3.59588,4.21134,3.633615,2.701695,3.968168571428571,2.430555,2.41108,3.58154,3.171315,3.9434,4.05555,3.73996,2.20543,2.99643,3.667275,3.859495,3.1316,1.0787390000000001,1.0787390000000001,1.0787390000000001,1.0787390000000001,3.35088,2.90946,3.3193,1.5925533333333333,1.1087266666666666,2.519315,3.78593,3.857295,2.90749,2.97771,2.514285,2.863386666666667,3.998095,4.003975,1.1234366666666666,2.6720433333333333,1.08558,2.53516,1.9953633333333334,3.8208333333333333,4.823535,2.4994866666666664,3.86946,3.9515666666666664,0.8276276190476191,0.2554042857142857,0.2554042857142857,0.5722233333333333,0.2554042857142857,0.2554042857142857,0.2554042857142857,0.5722233333333333,4.417125,7.311251666666667,3.66403,0.554415,3.720895,7.751005,3.44342,3.20093,1.1655016666666667,4.420875,5.1928,4.203475,4.966965,1.636394,4.51637,2.2077633333333333,2.3542813333333332,3.51675,5.29965,0.8042614285714286,0.8042614285714286,3.44122,2.8144733333333334,1.862935,3.75612,2.769125,6.8049,3.01377,6.4435,6.0379,5.44205,2.21609,1.698255,4.4373,3.46586,2.31143,3.83872,3.375605,1.891725,1.1507116666666668,4.085655,3.57929,4.87717,6.075901666666667,1.5097783333333332,3.986955,1.2523,2.50607,3.331505,3.81517,0.4131485714285715,3.160825,3.98813,0.915827,2.6101566666666667,7.687266666666666,4.2744,2.10152,5.634397,4.473285,3.704555,1.4061716666666666,5.42247,2.7265266666666665,3.2228433333333335,3.5106333333333333,2.114316666666667,2.114316666666667,6.305149999999999,6.305149999999999,3.687182142857143,3.687182142857143,9.68835,3.687182142857143,3.687182142857143,4.359146587301587,6.86545,3.654885,3.3511016666666666,3.022513333333333,4.263235,3.52725,3.1890933333333336,3.255433333333333,4.68065,3.1973066666666665,2.5092133333333333,3.28929,2.28384,2.73587,4.75759,7.41375,6.5674850000000005,4.82547,3.712405,3.9629,6.804598,5.2859,4.43606,3.725915,4.47469,2.286493333333333,2.1256,2.446805,5.5781,5.30505,4.6580025,3.964475,2.28793,2.5435233333333334,6.729088333333333,1.917022,2.54767,3.2502433333333336,3.2502433333333336,3.217195,5.277,0.7510258333333333,3.4954666666666667,3.757585,2.8484200000000004,10.1642125,4.256205,2.84306,2.4114066666666667,4.715965,5.9597,2.605825,5.6821,2.5373666666666668,4.020205,2.9182991428571428,4.09967,5.2657,4.85617,1.056805,3.6142,1.008055,2.58672,4.900977661764705,8.684166666666666,2.454963333333333,3.356033333333333,6.749146666666666,1.6021260000000002,4.665785,5.6552,3.711595,3.727835,2.2575333333333334,4.64797,2.3520425,0.4474284615384615,5.09735,2.92092,3.4842,4.866255,4.922375,5.2673,6.53092,4.59373,5.53475,6.906715,54.85463,4.699895,3.822155,4.81352,5.86505,4.592195,5.27275,4.03416,4.703975,1.967845,3.93866,3.842135,4.61286,2.71545,4.84735,3.880675,1.675318,5.49495,6.18685,7.057731666666667,5.04795,3.30222,4.61064,3.26284,3.245685,3.447085,4.28753,3.7629,6.42037,2.704925,1.1013185714285714,2.3862,0.522276,0.522276,3.33212,0.522276,2.3993602857142857,2.3993602857142857,3.097574285714286,4.450861000000001,4.804915285714285,2.3862,4.9538858333333335,2.7632108333333334,1.3964033333333334,5.5975,2.13763,6.881681333333334,5.467263333333333,10.97196462878788,3.2453533333333335,2.575396666666667,0.21486787878787877,1.8862613333333333,2.1290466666666665,0.92103875,1.2969083333333333,2.888113333333333,2.1030725,2.6155,0.583825,26.777817083333336,1.81962,0.7899153846153847,2.58116,2.58116,0.39671944444444446,1.6317825,3.0072599999999996,1.243295,1.6227925,1.62887,3.972515,2.884715,2.0028266666666665,2.456653333333333,1.12138,1.985105,1.487685,5.459646416666667,3.57376,6.788065,2.5075,3.30477,0.9450949999999999,2.802515,4.96702,6.19788,3.172696666666667,2.1019,5.265211666666667,1.942695,2.3638166666666667,4.2742,1.1327666666666667,3.5414,2.2858,4.953295,4.49187,5.93515,3.13615,3.95932,3.95932,5.29005,1.77569,5.3572,2.8534433333333333,1.5927775,3.065345,3.16226,5.2864716666666665,4.370645,2.781693333333333,2.51802,2.73871,1.0436542857142856,5.20065,0.91442875,5.538696666666667,4.286155,7.451002000000001,4.22526,4.328845,4.10597,8.323156666666666,4.142125,4.54869,1.1388500000000001,0.7134885714285714,4.53306,4.16564,2.19056,3.36311,3.228255,4.175835,2.261045,4.783885,2.53968,5.25515,5.17545,5.4453,4.42786,4.979885,3.376885,6.6526145,3.538735,3.987625,3.45245,4.46532,5.37287369047619,0.5720907142857143,3.5447,1.6801766666666669,0.5818455555555555,4.153055,2.446425,1.02787375,2.235775,6.10839,3.56713,2.44175,2.734523333333333,2.7991233333333336,4.87757,3.993305,1.6513042857142857,4.085485,2.258923333333333,3.6796666666666664,4.227685,5.1931,3.0677825,3.716333333333333,3.7526666666666664,1.897002,7.42657,4.66579,4.309135,5.27135,2.1806525,4.21836,4.677365,3.41607,3.905305,10.93028,3.165075,4.9229666666666665,4.72481,4.5707,2.322545,4.43847,4.115625,4.80777,3.2942199999999997,4.08829,1.5702975,2.9874233333333335,3.558615,3.54565,4.964505,1.843906,4.273745,3.0653433333333333,5.55155,3.2642866666666666,1.72974,3.9925,4.510435,1.0583925,3.094615,2.68534,4.499745333333333,1.692728,1.9117933333333335,1.2129375,3.507025,5.1703,5.684535,3.7551,3.397295,2.518415,2.13167,1.942935,1.57123,5.92185,2.8194,1.9334275,0.8898307692307692,20.37415462820513,2.934755,3.3480358333333333,4.741821666666667,3.92991358974359,1.2831733333333333,2.637582666666667,2.8738043181818185,1.373874,1.83728,4.507375,4.651585,3.495285,3.138745,5.30525,4.78856,6.9834225,4.5167850000000005,4.556525,3.67056,2.6805766666666666,3.86523,3.91621,3.5668,3.97913,1.90495,4.83202,8.10011,3.35719,2.651095,3.315525,0.60666875,3.103213333333333,2.161653333333333,2.2378475,4.284915,3.401855,4.7887,3.737885,3.21586,2.208985,1.711905,0.797258,1.5421133333333332,1.1712933333333333,3.805185,3.720145,4.53748,4.606615,7.31057,2.324733333333333,1.439194,2.4816133333333332,7.944913333333333,3.141285,2.63295,3.090715,4.28451,3.10015,3.66588,1.5182639999999998,4.760195,4.56859,4.170445,3.964915,3.569925,4.135665,4.24004,3.69706,4.345365,4.2082,2.20961,3.2346299999999997,3.361685,5.4371,2.87251,4.324261,2.83684,2.911635,2.1776266666666664,2.1924233333333336,2.12399,2.4625023333333336,2.4625023333333336,2.0846533333333332,2.80013,2.25189,2.30559,1.9835866666666666,4.031585,2.4231133333333332,2.7076933333333333,3.04453,1.7268066666666666,4.426885,2.742265,3.794925,2.3766666666666665,5.26025,5.20075,4.885662777777778,2.3907,2.276135,3.171635,2.8045,2.20743,2.974215,1.8809125,2.61215,2.74645,6.897156333333333,4.365145,3.741885,0.601065,4.323965,3.9758,4.036065,3.3679,3.95785,3.6765766666666666,6.2876,4.402635,3.1948,2.8174360714285713,2.087036,2.47852,1.6088999999999998,1.755294,1.477106,2.0608,1.8295775,1.2717083333333334,4.11441,0.6131746153846154,0.55773,1.9635840000000002,1.5310683333333335,1.428864,1.3980466666666667,2.2867936363636363,1.4040549999999998,1.6107040000000001,0.60271,166.7173048723527,0.4661153333333333,2.07374,1.1017540000000001,1.22454,2.1381,1.5440075,1.96184,2.2588166666666667,1.6818825,6.74285,3.08009,3.3659542857142855,1.7929133333333331,3.1636,1.2869916666666665,1.2869916666666665,6.0759475,0.47755000000000003,2.231205,3.2948533333333336,3.02144,0.8070981818181818,0.5369388235294118,1.168335487179487,1.0001818181818183,2.1790325,4.055905,2.0119575,2.1501025,2.29074,4.914265944444445,1.0083600000000001,4.30023,3.50496,3.616455,6.83235,2.0264966666666666,3.1614,2.26596,3.883136,2.48182,2.88062,3.49531,3.579475,3.66627,3.1283,6.61693,2.607685,3.09743,3.395715,1.33155,2.680555,2.609435,2.96663,1.60213,1.501245,2.26347,4.327085,5.293015,2.84577,2.86119,1.336575,4.259355,3.7678666666666665,3.875,2.89317,24.799052641330892,2.6821159999999997,2.6325166666666666,2.9807333333333332,3.4689,3.02193,5.781926666666666,3.096906666666667,2.3994866666666668,3.3018033333333334,3.406333333333333,2.1714766666666665,3.193443333333333,3.3065833333333337,3.1884766666666664,1.7194666666666667,1.6775485,0.587601,2.3206599999999997,1.946885,0.20024125,2.2472233333333334,2.63297,0.20024125,0.20024125,2.1418079166666666,0.20024125,0.20024125,0.20024125,0.20024125,2.823313333333333,2.6202566666666667,0.5354007692307692,3.2980442857142855,1.4584725,1.960812,5.70445,4.3674025,5.9441825,1.9290075,4.853445,2.0163,2.5662766666666665,1.2632442857142858,5.77121,2.809976666666667,6.03578,0.8600666666666666,1.37047,4.742255,4.6565,35.031344918414916,1.523384,1.3742333333333334,2.3570933333333333,2.3428925,0.8968018181818181,2.3808266666666666,2.2917366666666665,2.70377,2.02847,2.427776666666667,1.7662316666666666,2.5885433333333334,2.35563,2.22504,2.736356666666667,2.4112266666666664,3.936355,3.3942,1.1230371428571428,3.982135,3.82748,19.700668722222222,2.7817666666666665,3.3336333333333332,2.6287133333333332,0.8094699999999999,3.091604,1.6020055555555555,3.091604,2.3403733333333334,2.48868,2.9697533333333332,1.4338925,1.884365,4.38518,4.011685,5.0778,4.24898,1.669826,5.0978,1.6290625,4.6921,3.9855476666666667,4.413285,0.7663618181818183,2.1063875,2.239525,2.738722,3.43263,1.0558125,3.11072,1.947028,2.04806,1.083,1.083,2.7941366666666667,2.4815466666666666,4.399635,28.524933333333333,6.185689999999999,1.9669100000000002,3.762203333333334,0.38902000000000003,5.9385125,5.8398,2.875163333333333,3.442155,5.4644925,3.693775,1.1127025,4.546125,1.289946,2.636745,4.39417,4.625545,2.141155,3.08565,4.554565,2.510915,2.8735355,4.046045,1.3094966666666668,2.4605691666666667,3.735195,5.167,2.3665533333333335,3.13304,2.7452966666666665,4.003485,4.02343,4.040845,4.231933333333333,1.89162,5.94969,2.439025,1.71964,4.117645,5.53122,3.98991,3.47962,0.72725625,2.81375,3.51371,2.190675,4.828862666666667,2.833835,3.70477,2.8073433333333333,3.2907766666666665,2.544595,3.2503499999999996,2.990016666666667,3.036936666666667,4.09206,5.26105,3.456165,1.954765,3.92813,4.1352,1.84429,2.019845,1.7987425,3.8990833333333335,4.541435,5.0870074999999995,4.02676,3.5306333333333337,3.540905,3.18296,1.3465483333333335,3.164115,2.96768,3.151605,4.73431,4.620415,4.246045,2.720405,1.922195,1.55174,1.41464,3.561205,2.39257,2.27618,3.344715,4.905035,1.59682,5.21715,1.38921,1.8780625,3.1964,3.067695,3.027585,3.817035,2.993895,1.71835,0.993456052631579,3.54242,4.928476666666667,4.51059,9.036548333333332,3.1657933333333332,3.1050799999999996,1.6382633333333334,2.73556,2.683806666666667,1.1561683333333332,3.0298533333333335,2.7013166666666666,3.1630833333333332,3.9693,3.1066566666666664,6.7982700000000005,3.07555,0.7642118181818183,1.6960366666666669,3.233525,3.15839,3.31535,3.6381333333333337,2.433598,2.889195,2.62446,1.955921,3.96737,2.559415,3.5129,2.1329566666666664,4.66546,5.33145,4.40183,3.42717,3.614485,0.8573344444444444,4.444675,2.9493066666666667,2.9132433333333334,4.42749,2.5745833333333334,2.701586666666667,0.3799814285714286,0.3799814285714286,4.348438333333333,3.832405,7.00935,3.240035,4.60599,3.598365,3.255215,4.834355,4.19588,0.98459625,3.91398,2.4885766666666664,4.0747875,2.9161699999999997,3.2476041666666666,1.7689666666666666,3.144802142857143,2.14813,2.8068233333333334,2.5693966666666666,2.804953333333333,1.8909333333333331,22.148379437747035,3.857175,3.91915,3.978765,3.339725,4.544495,3.794955,4.55276,4.03939,3.898405,3.37384,3.519915,2.5385466666666665,2.7697066666666665,2.9151166666666666,2.9593966666666667,2.9136100000000003,4.21618,3.6928,4.7462275,4.93458,4.44405,1.2960720000000001,1.378994,1.378994,5.06725,3.892595,2.6035,2.3100566666666666,3.02538,3.37854,3.52221,7.682605000000001,3.21634,3.408466666666667,3.0025649999999997,5.29495,1.6135366666666666,5.87922,2.4241466666666667,2.75694,1.749475,3.61894,2.91685,6.37861,3.02002,2.78446,4.201715,4.454591333333333,1.432,2.438896666666667,1.64116,7.1866465,4.393775,7.054083333333333,2.19752,3.966155,3.602195,3.996145,5.29025,3.6008333333333336,3.6008333333333336,2.11163,4.26563,5.06075,2.58318,6.397964285714286,1.61079,5.7403,8.476253666666667,3.4774999999999996,4.201690666666667,2.2573166666666666,2.16265,0.518966875,4.520495,2.4996225,2.5887,3.6316015,2.3353975,2.5204233333333335,3.75786,5.80635,5.22545,5.0195,4.693785,4.08226,2.255865,1.0255454545454545,3.00376,3.385145,2.5964566666666666,5.4186,3.90538,3.18565,2.528225,1.898986,4.201785,1.03180625,5.2223,1.0217877777777777,5.48215,3.287125,4.86519,4.92572,3.15254,3.20595,3.0245833333333336,2.322556666666667,4.33432,2.835305,2.586805,3.333885,4.98062,5.74947,4.588665,1.4959825,3.28521,2.980145,5.60903,1.9455725,1.9455725,2.8708266666666664,2.379516666666667,2.3509966666666666,2.7171866666666666,0.8386990000000001,6.2585,3.470315,1.9070825,2.46326,2.72615,3.71972,2.6963,3.647445,5.0023,5.0885,4.910955,6.08175,5.7413,1.319275,3.593385,1.1088666666666667,2.4755875,4.276633333333334,2.67544,3.082645,3.223265,4.783155,2.972375,0.4339715789473684,4.38621,4.099205,4.902965,3.3085,4.436675,5.36745,4.26989,3.702845,1.94019,4.57459,2.0353325,4.2789,4.2789,6.4815,5.3737,5.5332,5.0533,2.742535,1.6135366666666666,4.28396,1.9459766666666667,1.6472866666666668,2.33634,4.113825,3.91575,4.44033,8.05048,1.6717166666666667,4.931485,1.2565266666666666,3.04679,6.039,2.0015875,4.880115,2.5614133333333333,4.61209,3.337885,4.739085,2.9297533333333337,4.096665,4.15196,5.9788,4.292515,3.829595,3.634665,5.90135,4.200515,4.608785,3.62,4.07051,7.046331666666667,3.59924,6.83343,3.65912,5.3655,6.077890454545455,4.4294,3.58714,1.7477475,5.2555,3.885,0.861281111111111,8.19324,5.8557,5.0798,3.086613333333333,4.90154,3.15282,1.730404,3.87166,1.1234366666666666,6.2786,2.95691,4.57559,5.23475,4.44457,3.940825,2.0962133333333335,4.28021,5.0297,1.720335,7.141541666666667,3.09429,3.33202,5.09555,4.119835,2.126625,4.646095,3.669915,3.53856,2.79658,3.926205,3.66898,5.39925,4.516345,3.272095,1.805745,1.805745,7.5765666666666664,1.4239214285714286,5.2063,4.250805,5.2154,3.497505,3.466025,4.993545,3.822455,0.8781783333333334,0.8781783333333334,0.8781783333333334,3.70254,3.12884,3.88221,4.609531111111111,2.60313,1.4586433333333335,4.253885,2.11344,2.712005,3.9229,4.79374,1.9783225,2.13932,5.05437,3.678075,2.876,4.25672,1.7153625,1.95436,3.2400966666666666,2.573615,5.19105,1.4155039999999999,1.616958,1.04616375,3.90302,3.431705,2.9275033333333336,2.9119266666666666,5.4213,1.691226,2.0787325,3.0412,1.6442999999999999,3.26305,3.54533,2.3721525,5.0326,5.5216,2.778395,4.18107,3.50121,3.29559,3.511865,4.070665,3.47536,7.42021,5.10725,1.8480833333333333,1.7505666666666666,3.393645,4.626655,4.061425,3.61224,2.9500566666666668,4.35099,6.08185,5.06195,2.751,5.5375,3.93246,3.78191,8.1016775,4.113225,0.7133590909090909,3.955745,4.1202925,2.25813,4.15362,3.7710333333333335,5.76115,3.83718,4.06815,3.657995,4.41232,4.711355,4.52338,3.03692,3.88259,5.1362,3.878615,2.757425,2.97771,6.91533,5.40225,1.9529859999999999,3.29759,4.221828333333333,3.84055,4.85538,4.44268,2.56171,0.8654366666666666,4.466093939393939,6.42566,3.470605,4.85715,3.29331,7.056916666666666,3.758685,3.6342666666666665,2.842966666666667,3.67312,1.961375,3.426125,4.55812,2.5040234999999997,3.88788,5.85285,1.4552,4.58804,0.6464142857142857,6.18735,6.3269,5.81645,6.10395,1.5140883333333335,1.8018633333333334,4.354295,1.904565,5.20065,0.5291458333333333,5.74905,3.12531,1.50267,6.142935,6.53045,0.795625,1.641275,1.3122099999999999,1.3122099999999999,1.3122099999999999,2.4689133333333335,4.579005,3.552145,3.329565,3.86636,4.975665,3.629465,1.9411100000000001,4.21088,4.987315,0.29762439024390247,3.459935,4.28257,4.40417,38.44264234090909,5.605330833333333,4.83407,10.941604333333334,3.6865,4.095615,7.193175,3.24424,4.74787,3.871785,3.95978,9.01878,3.79309,2.624886666666667,2.655075,4.640265,4.191405,3.80013,4.395625,2.1146,4.54303,4.13343,6.658968000000001,4.1483,4.752715,2.3268525,4.28378,0.50953875,1.4395816666666665,3.23666,5.99365,2.884645,1.2337933333333333,1.2337933333333333,2.619775,3.78524,3.932405,3.276195,1.6715,3.559345,3.97151,1.837825,3.2135233333333333,1.5071160000000001,1.8638000000000001,3.987375,4.536105,2.0523225,4.63512,2.1976375,2.18366,3.565575,3.431145,4.098415,3.88903,6.031579666666667,2.4625296666666667,3.90493,0.7663309090909091,0.6596066666666667,3.804955,2.139825,8.738416666666666,3.392533333333333,4.892475,1.694285,4.450835,1.5310733333333333,3.88474,4.498365,2.597163333333333,3.78287,5.06335,0.415703,0.415703,3.7015,3.1814999999999998,2.935643333333333,3.58286,3.558435,5.34905,1.0149363636363637,10.189938333333334,10.790065,1.97093,4.896035,4.493965,4.83512,3.498605,2.566333333333333,2.0061,1.9473925,9.7844175,2.236505,2.7006033333333335,3.637956,4.494555,3.637956,2.1052725,2.971776666666667,2.792923333333333,0.7276118181818181,5.204809166666667,2.932916666666667,2.6033233333333334,4.10727,8.836920000000001,10.206620000000001,4.0385,3.98114,4.138055,6.56728,1.925525,1.381225,25.992910833333333,4.19151,3.777055,1.0085000000000002,4.64521,4.109585,5.06785,4.448775,5.08165,5.570006666666666,2.926826666666667,2.0709466666666665,0.6630294117647059,0.7512083333333334,4.585315,5.0396,1.3678633333333332,4.230691666666667,0.9045083333333334,3.5850333333333335,1.5262566666666666,4.344045,5.82395,1.84655,2.514345,2.108295,3.75643,2.76432,0.4115566666666666,3.72908,3.66934,2.7644866666666665,3.316375,5.06145,2.8439033333333334,4.19016,2.75104,4.48245,8.370953333333333,4.803845,7.947485,2.6656,2.6986933333333334,4.376455,4.4503675000000005,4.470675,4.504195,3.710485,4.816735,1.18573875,3.1655929166666663,3.289908214285714,0.6992700000000001,1.378994,1.378994,4.325115,7.287773333333334,0.8339692307692308,4.757115,0.9010883333333334,2.80817,2.3250733333333335,2.596264090909091,6.329555555555555,2.5621199999999997,1.1345888888888889,2.4436966666666664,1.18544125,1.9684533333333334,3.1527366666666663,3.0105116666666665,3.1950833333333333,2.49164,0.9010883333333334,4.56226,4.43852,5.35755,2.72115,3.966975,2.06854,5.79765,4.706585,4.331405,2.9458966666666666,3.446445,2.1847275,1.2970475,4.090535,2.66295,4.16777,5.4692,1.591408,4.675785,2.8176666666666663,6.351520000000001,3.510555,2.605475,0.9010883333333334,2.586905,3.14889,7.285479277777778,2.2788866666666667,1.9429200000000002,2.2788866666666667,0.42119749999999995,1.288618,4.010335,2.694075,1.61008,3.61119,3.728549,0.648259,0.648259,0.648259,8.497135,1.586208,0.7363672727272728,2.62613,38.71685097186147,1.8572884444444444,0.6719644444444444,3.0569775,0.6719644444444444,3.71744,2.067775,2.43652,2.5378666666666665,5.1027,4.11637,4.50175,2.44561,0.9324,4.21671,3.2219233333333333,5.04045,1.0317271428571428,2.84725,2.84725,3.953755,4.191755,3.49816,4.6772226923076925,3.324695,4.658725,5.2262,1.805236,1.0587425,5.25485,6.6031,3.79494,0.644346,4.42641,4.071353333333334,0.9439825,4.468385,2.384775,4.00769,4.373555,1.8432889898989897,1.8432889898989897,4.17379,3.58598,0.9072999999999999,3.081035,2.990213333333333,3.337055,4.130255,4.357335,0.4772971428571428,0.29618352941176473,0.29618352941176473,0.29618352941176473,0.7734806722689076,0.6125476923076923,0.66901,0.29618352941176473,0.29618352941176473,7.043419999999999,0.29618352941176473,0.7734806722689076,3.56623,1.313305,4.42365,1.188825,0.5916707692307692,0.9439825,2.58919,2.67035,3.96512,3.02717,0.29618352941176473,0.29618352941176473,4.42475,3.72213,4.160125,2.61941,3.90946,1.552626,3.8819,0.66901,0.66901,4.794135,3.02325,2.732165,2.98562,3.885253333333333,1.09921,0.8962307692307692,10.479875,1.2609125,3.696085,4.3858,5.18825,2.11986,0.3915773913043478,0.86392,2.7899366666666663,3.063545,3.15742,4.27181,1.432424,5.75675,3.34689,5.28516,3.972785,3.0210033333333333,2.86008,6.441458333333333,2.3854633333333335,4.83585,4.10601,3.9515666666666664,6.096415,0.5482813333333334,4.266995,3.3087999999999997,2.13153,0.6894877777777778,4.08942,4.44657,2.855655,2.38856,2.18667,5.0235,2.807535,2.851445,1.02511,0.4641207692307692,3.790835,0.349856,0.7556481818181818,3.927065,3.01266,3.975755,2.739245,5.4356,4.335565,6.0047033333333335,3.65437,3.3093,4.44801,1.6533125,5.3942825,1.758044,3.840745,2.462795,5.881083333333333,2.59467,1.120936,4.483465,6.8943650000000005,6.5556295833333325,3.4741,0.7788258333333333,2.8694,4.47566,4.07487,4.497645,4.4751,4.054885,4.8121,3.146255,4.1762,1.7780866666666666,2.390745,1.4857500000000001,4.07411,9.523635,2.863315,3.73969,5.97555,2.70293,4.1403,2.532216666666667,2.949109,3.283365,3.465675,3.50669,3.156235,3.968875,5.00175,5.7479,3.733805,4.727824999999999,4.93089,3.78573,2.694175,5.0014,7.4252,0.9140922222222222,3.824645,3.84132,4.55199,5.555,5.0499,2.542755,7.58578,2.41676,3.41359,6.0335,3.76858,4.239755,2.19766,1.7678175,3.0016866666666666,2.1049233333333333,1.90575,2.909826666666667,4.172795,4.410745,4.03692,3.267575,4.317678333333333,3.232315,3.29826,3.9218025,5.6005,2.889575,5.4137035000000004,3.865465,3.93042,3.649535,7.86202,3.781435,3.653085,4.088445,4.78509,3.14566,10.5274,1.3049899999999999,2.420675,3.71849,2.695536666666667,2.695536666666667,2.16715,7.808566666666667,0.8287066666666667,3.114885,0.9107225,2.0787325,4.29321,5.10545,3.76684,4.0989,2.81312,3.254005,3.79609,3.865935,3.979995,2.87057,2.54989,4.06845,4.787247499999999,3.52345,4.220675,1.6613900000000001,1.6715060000000002,2.6892066666666667,5.63505,2.2425175,1.7952933333333334,2.0339875,4.308505,4.671495,3.0952,2.795015,0.5166622222222222,2.30152,7.553285000000001,3.162485,1.52625,0.8384525,1.18751,2.04095,2.2530525,1.2278866666666668,2.00432,4.2323385,3.976075,4.646375,2.42915,1.9804575,6.3880925,2.94745,2.3801516666666664,2.3801516666666664,2.3801516666666664,6.680126666666666,2.3949599999999998,3.70538,2.624865,0.480428,1.246608,2.331735,5.824755,0.4332427777777778,3.802115,3.8893050000000002,5.4767,3.004982777777778,0.4332427777777778,3.004982777777778,0.93455625,1.168798,5.94015,4.21815,6.5825,3.907405,4.580965,3.57055,4.115255,4.89227,5.2958,6.0525,3.828135,3.390565,5.1927,4.6172,4.13526,4.403305,4.542485,1.3596816666666667,2.6370299999999998,1.21832,2.0560525,3.080512777777778,1.4086961111111111,6.291565,5.60903,2.671573333333333,4.37616,2.98304,4.843665,2.82318,4.23624,4.913085,9.2275975,5.28,4.57356,2.26281,2.613655,2.07188,0.60666875,2.1261302222222223,5.97125,5.1975,4.72229,4.440265,0.4688133333333333,1.98613,1.48979,4.23378,0.6979507692307692,6.2703999999999995,2.04012,1.076325,1.076325,3.9407499999999995,1.9961559999999998,3.0184800000000003,2.513195,4.518095,3.4122375,3.4122375,4.59357,5.5254916666666665,2.6322033333333335,2.5634366666666666,3.2266866666666663,4.802345,1.8573419999999998,2.68273,5.5676,5.15755,4.81384,4.32251,3.88638,4.458565,3.5990241666666662,3.0327800000000003,2.2930975,4.159125,5.1944,3.2420512500000003,4.99885,5.66435,2.0880633333333334,2.41701,6.0399,6.91845,1.105658,2.634625,2.31372,2.6027566666666666,2.155405,2.5867,2.5508645000000003,1.0981277777777778,1.9145425,2.6807,2.3882925,2.4757716666666667,2.4757716666666667,3.0122915,2.971675,2.230444423076923,2.66445,2.314085,2.03656,1.5690626666666667,5.146405,14.837733666666667,2.94326,3.2937933333333334,1.853768,1.853768,1.5955133333333331,1.5955133333333331,2.8993033333333336,3.6829,2.8207,1.952825,1.952825,3.887033333333333,2.36741,1.31769,1.4038614285714286,3.105916666666667,2.8227933333333333,3.6430333333333333,2.5204347619047622,3.242653333333333,3.1389533333333333,0.688458,2.6194,3.588410666666667,6.964975,4.903115,5.29805,4.23751,3.660725,4.866405,4.59555,3.098713333333333,4.01137,1.3372549999999999,3.284613333333333,5.6281,5.39055,2.61912,1.44958,3.095595,2.366356666666667,2.98112,1.5214816666666666,0.6772592857142856,2.99878,4.4105324999999995,4.794125,4.087345,4.721275,2.9178599999999997,1.9887866666666667,3.296648333333333,2.6614366666666665,3.285823333333333,3.1016766666666666,3.331113333333333,2.652956666666667,2.361003333333333,3.5311333333333335,2.857673333333333,5.133,4.73012,5.193381666666667,5.193381666666667,3.471655,4.02671,3.56564,3.76535,2.961005,4.2292,3.296245,3.0398633333333334,6.256,0.7497975,5.2323,4.78638,2.504453333333333,5.37322,3.392633333333333,1.8397500000000002,1.2825942857142858,2.0904066666666665,0.983839,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.30143535714285713,0.5952157142857143,0.5952157142857143,1.2841775,0.9092063888888888,1.7304132575757576,1.0369028571428571,1.0369028571428571,1.2755943686868687,0.4548188888888889,0.3792277777777778,1.2417675,1.5233925,2.6742233333333334,2.2808925,6.341601666666667,2.97679,3.88148,2.739045,4.757442,1.244265,4.73752,4.183705,4.78739,3.147065,1.494322,4.156951153846154,3.649855,4.30214,4.323745,2.116255,4.730175,4.55937,4.57416,1.2271779999999999,3.892165,4.60389,3.196825,2.4395333333333333,3.41446,2.45541,3.329035,4.539745,2.9794033333333334,4.67465,8.656265,3.16663,4.804235,4.17944,4.46554,2.6792533333333335,4.22696,1.2214428571428573,4.380205,3.29387,2.15442,1.20466625,3.009615,1.304745,0.4981986666666666,3.336,4.151485,5.220933333333333,3.5528999999999997,2.39365,2.95361,4.833425,3.880266666666667,4.788875,2.4576725,2.2203933333333334,4.08293,3.98196,4.118755,5.16025,4.411065,3.73224,4.525705,3.04035,4.27306,2.1346875,4.530395,5.1364,3.25359,4.332935,2.640425,3.77477,5.61345,3.99583,5.16315,4.615525,4.81387,2.3371999999999997,4.887905,4.937125,4.82154,2.16763,1.08517,3.99909,4.71328,4.105535,4.882535,1.99146,4.014135,2.219515,4.867825,4.63186,4.62867,2.372055,4.21549,4.618555,4.274975,2.5213733333333335,4.591995,4.670025,5.11155,3.65154,2.16763,2.55231,2.611215,4.94143,3.990885,4.1602,3.44398,4.697565,2.25663,6.77501,4.837965,4.59493,5.280954652777778,5.0228925,5.07235,3.31596375,2.7755283333333334,2.7755283333333334,3.883485,3.20721,4.54031,2.136865,2.89984,0.9578275,2.634513333333333,3.0328866666666667,2.3493366666666664,3.004903333333333,4.391075,2.7798233333333333,5.3717,2.51231,4.412475,4.8636575,1.780135,4.014405,2.7067599999999996,2.6489966666666667,3.865725,0.88118,4.846725,4.47572,6.0195574999999995,4.862505,5.48705,1.3324228571428571,4.62462,6.3806,8.410875,3.1869366666666665,3.3155366666666666,1.917094,0.811731,3.865875,1.0253942857142857,4.721415,4.4556,5.61365,3.18222,3.57186,1.111872857142857,3.494665,3.542765,4.418975,3.980585,2.95023,2.92802,2.311245,4.272235,4.754005,5.56455,4.200725,3.50781,0.44916222222222224,0.44916222222222224,0.44916222222222224,0.44916222222222224,5.4697,2.804775,6.1223,3.0636799999999997,5.17595,4.603425,3.749145,2.367615,2.4327799999999997,1.4540033333333333,5.2872,2.8006499999999996,4.172475,3.67296,3.61028,1.914605,1.16693125,4.328405,2.55568,5.909318333333333,3.94348,4.57531,2.31476,1.486515,0.8816444444444445,3.33328,4.225015,3.769885,2.0901475,7.966855000000001,4.686295,3.15858,2.31058,0.480713,3.5629,2.39392,2.11798,2.263155,2.818425,2.9481,2.53244,2.835763333333333,3.047955,3.213425,4.332735,3.64356,3.989195,3.13238,5.602591666666667,0.6068446666666667,4.44897,5.7646,4.936975,4.72656,3.3356666666666666,5.1968,4.40916,4.026265,5.172865,5.16465,4.402985,4.49404,3.75636,4.85211,2.83719,9.11426,4.910855,4.12704,4.72619,5.00225,5.45505,3.59829,1.150611111111111,6.042775,3.478155,4.841625,1.38974,4.29537,3.8359,7.045366666666666,4.4609,2.94028,1.92418,4.627135,1.994536,0.89046375,4.049295,6.23885,1.8913866666666665,2.3243033333333334,2.921276666666667,3.21544,3.56559,3.795935,5.08755,1.7003133333333331,4.162725,3.8185320000000003,3.34504,3.6986000000000003,3.734905,2.92757,2.668465,1.7681175,2.43228,2.66058,4.281575,0.5642491666666667,2.551013333333333,4.14382,3.05896,3.5595666666666665,4.466245,4.959875,3.861205,16.875884954545455,2.753,4.0858,1.472884,0.8897954545454546,0.8897954545454546,0.8897954545454546,0.8897954545454546,0.8897954545454546,4.73072,4.64113,4.826705,9.1934555,2.4430875,2.4430875,4.45373,4.686356666666667,1.29149,2.10174,3.910625,2.34551,2.332285,2.16378,3.136855,3.654836666666667,1.788985,3.481715,0.8201357142857143,2.800826666666667,2.7566066666666664,3.0280533333333337,1.5375366666666668,3.1554300000000004,2.2070833333333333,0.92588875,2.695256666666667,2.64529,1.2718888888888888,2.4645366666666666,2.62249,2.16044,4.333802666666666,1.7980333333333334,2.9354899999999997,1.9789875,2.622196666666667,1.1266,2.789123333333333,4.775192666666666,3.548766666666667,1.03758125,2.96933,1.3022075,2.47113,2.4118999999999997,4.7003449999999996,3.0347766666666662,2.5326866666666668,4.699026,2.60756,2.238485,2.8606366666666667,2.499563333333333,1.5536833333333335,2.7426100000000004,3.21578,2.970993333333333,2.6064933333333333,3.06401,2.5852866666666667,2.389055,3.6595570000000004,3.6595570000000004,2.9373766666666667,1.9292933333333335,1.8697733333333335,2.55145,5.43317,2.76591,1.92375,1.7037075,3.0012966666666667,4.18462,2.4275933333333333,1.176466,3.003406,1.5352066666666666,3.365933333333333,2.1574566666666666,2.4280433333333336,2.04881,2.963713333333333,1.280114,1.6693300000000002,1.3746600000000002,4.154075000000001,2.5394799999999997,4.19326,0.9631355555555555,4.06688,2.0507666666666666,2.0864675,1.722638,1.5925316666666667,3.2152266666666667,23.129385987012988,7.324566666666668,2.6008566666666666,3.4665258333333338,2.7868433333333336,10.069963333333334,3.11356,1.01828,2.534053333333333,2.4815866666666664,2.01771,2.8912999999999998,2.514136666666667,2.5317233333333333,0.9093479999999999,3.09915,2.5152533333333333,2.96088,2.6991266666666665,2.3563666666666667,2.1749633333333334,2.1452433333333336,2.74851,2.5576633333333336,2.05495,1.52896,5.3428249999999995,4.52635,2.3472825,2.949975,2.19646,2.46766,8.256414166666666,2.1642766666666664,4.877275,2.4730175,1.9817,7.76101,2.9171666666666667,2.59156,2.540575,1.780452,1.4657434615384615,3.206376666666667,3.080856666666667,4.30258,1.628065,3.6415,1.610175,1.610175,4.026485,3.88714,3.3724242857142857,3.3724242857142857,5.820953333333334,3.610745,0.422864,11.924283208180709,1.3660033333333335,0.9389185714285714,3.7370658333333333,1.4667054700854703,1.95171,6.1133033333333335,3.81626,0.7521127272727273,2.106856666666667,4.843802242424243,2.4065973333333335,3.850165,1.3078057142857145,5.4799,5.11215,4.79279,3.2542602499999997,1.998714,2.4477733333333336,2.49761,2.51781,2.20366,5.201883333333333,4.53626,4.18028,1.7801225,4.7268,4.09463,3.3961333333333332,2.134495,5.0707,2.4751266666666667,8.790773333333334,6.625755,1.8124525,2.87492,1.764586,4.4831666666666665,4.4831666666666665,3.1231166666666668,2.73175,3.4094773333333332,4.97468,9.5406975,4.13395,2.4522075,5.5192,4.19031,5.1585,1.9429880000000002,0.8731875,1.3359066666666666,4.442185,4.706795,3.6612666666666667,2.7317733333333334,3.6900999999999997,2.1393666666666666,3.832975,4.795545,3.39626,5.30655,3.162713333333333,3.62434,3.3361666666666667,3.160436666666667,3.3551333333333333,6.12045,3.063,5.35315,4.727425,3.11025,3.339075,3.339075,5.610318333333333,12.022211666666667,3.677766666666667,5.83202,7.179712777777778,3.64729,2.3712133333333334,3.870485,1.43474,3.754475,2.490205,2.990126666666667,3.0108766666666664,3.395566666666667,2.0322,2.389823333333333,2.7482333333333333,2.5525066666666665,2.9040233333333334,3.1121200000000004,3.730955,2.61751,2.88476,3.84562,2.7644133333333336,2.5882866666666664,1.13573875,2.0378,2.8097133333333333,2.4673633333333336,2.45039,2.403636666666667,3.4892,2.0782599999999998,2.1909899999999998,2.5610733333333333,3.1636333333333333,2.739603333333333,3.0034533333333333,2.5804933333333335,3.12128,2.8904599999999996,3.317944,2.6231,2.4704566666666667,2.35512,2.6207966666666667,2.6013366666666666,3.4922,3.358333333333333,2.002985,1.950465,1.950465,0.68126,1.5182639999999998,4.26413,3.37133,2.580346666666667,2.0322,2.8570533333333334,1.2700600000000002,2.6732,0.5606486666666667,3.4136666666666664,3.073,3.23391,2.969383333333333,2.5497633333333334,2.5977799999999998,3.0145,2.74459,3.2853266666666667,4.69836,1.522392,2.85905,2.44748,1.8090466666666665,2.15963,2.80078,2.6842900000000003,1.652268,2.505383333333333,2.5803966666666667,2.52899,2.6442033333333335,2.86065,2.95849,3.1668233333333333,1.37506,2.86757,2.298293333333333,3.5767,3.817833333333333,1.8717525,2.1881866666666667,3.226373333333333,2.45791,3.5128,2.6326066666666668,2.2719633333333333,5.224375,3.32093,1.81239,1.515226,3.3107233333333332,6.266776666666667,3.0857733333333335,3.538066666666667,2.816046666666667,2.993626666666667,4.687391333333332,1.6164079999999998,1.1742,2.213886666666667,1.6732004166666665,4.56061,2.8360266666666667,3.056976666666667,3.073843333333333,3.2412799999999997,2.2384766666666667,3.3096366666666666,2.525675,1.575856,2.814853333333333,3.48304,3.6286525000000003,3.283455,3.492465,1.62836,2.84928,3.663935,3.24362,2.286583333333333,3.8377666666666665,4.0122,3.892533333333333,1.3940775,5.613398,3.23880125,1.4628566666666665,3.603935,3.51641,2.90509,3.717775,1.8509440000000001,1.8509440000000001,3.229283333333333,2.9175533333333337,3.07643,5.10555,4.0888,4.312822,1.508372,3.0525233333333333,2.51485,4.1277425,2.96266,4.81053,2.5160766666666667,2.29947,2.5329099999999998,3.43773,3.422055,1.632342,2.9879200000000004,2.683745,2.3313075,4.5509,1.328055,3.065,4.18851,2.64701,3.602645,3.944785,1.5726925,1.6160933333333334,2.3217425,1.1319166666666667,2.1057695238095238,1.919705,0.4593257142857143,3.992485,2.41702,4.701935,4.038925,2.99822,4.529749166666667,3.449866666666667,3.1740566666666665,3.4971,2.4904699999999997,3.30119,2.830246666666667,3.1603766666666666,2.311033333333333,0.6627423076923077,2.3760600000000003,0.6159457142857142,2.021306666666667,2.476176666666667,3.11263,3.1064966666666667,1.46846,1.251655,3.964625,4.443225,3.454775,3.3613325,3.10465,2.0122775,4.04915,7.042983333333333,3.380965,5.50453,1.472925,3.89501,1.8454325,4.09604,3.516185,2.353595,4.06145,3.177315,3.645735,4.12222,2.20965,4.042365,6.209395,4.97284,3.573855,2.867275,1.8352975,1.97674,3.930515,3.30139,3.20455,3.588995,3.47221,3.465095,1.55615,3.640375,3.22311,1.6704925,4.1484025,1.0564833333333332,3.202715,1.6480675,3.97728,4.813511666666667,3.62926,2.84763,3.676825,3.36631,1.9336675,2.259345,3.8594666666666666,2.596345,5.6475475,4.15639,4.56559,2.2814,2.62435,4.31567,4.37818,2.167768,2.167768,5.662166666666667,3.8683924999999997,2.6808924999999997,2.88223,1.9474266666666666,2.804655,3.29493,3.714710833333333,2.699015,3.53146,0.9072800000000001,3.897875,2.88696,4.01785,2.4733,1.5337,1.460965,3.11565,5.753817000000001,5.70105,3.72431,1.6163925,4.325645,3.616375,0.7825183333333333,2.85783,1.29925,5.1300799999999995,1.3910166666666666,3.46788,1.9023225,1.46846,3.130445,2.968915,4.48906,6.71493,4.01749,4.794928333333333,2.528175,2.81998,4.071745,3.7262,4.25874,4.4018,0.9852825,1.6775485,1.0899475,2.59387,2.157875,4.81456,1.0899475,4.3956,2.26257,1.547515,1.547515,1.6704925,3.748135,4.1969,3.886185,1.44225,1.44225,0.9065733333333333,3.07778,2.0259025,5.9142975,4.218655,3.78879,2.864106666666667,0.99974,3.463875,2.866575,4.184675,3.595655,3.8501225000000003,3.8501225000000003,3.44684,4.11352,1.8812575,2.518425,0.9781777777777777,2.1721166666666667,3.66812,2.4399166666666665,3.3058158333333334,3.3058158333333334,2.714245,4.725875,4.500985,3.643075,3.671345,4.046795,2.556293333333333,4.331838333333333,2.76906,3.925095,8.16505,5.05005,2.784425,3.22469,3.032205,4.41379,3.236128,8.00025,4.666046,4.635015,3.539345,3.54464,3.484145,4.274015,4.671445,2.67189,4.321895,6.5781575,2.796325,2.136797555555556,3.243385,3.237165,3.735445,5.4696,2.2575333333333334,2.63167,2.822255,3.0872775,3.2455499999999997,7.1200866666666665,1.527885,4.957656666666667,4.957656666666667,3.145725,3.458170833333333,3.088635,2.2813733333333333,4.65513,4.246007,2.052902,4.00277,4.015295,3.494438333333333,2.892115,2.88793,6.087603333333334,3.46682,5.2388,3.06254,4.686995,3.920075,3.79516,2.9175533333333337,2.170853333333333,3.079775,3.82786,2.85533,3.3219800000000004,2.74311,6.292314999999999,2.385525,1.7287625,3.2338225,2.2766066666666664,3.83109,2.847185,0.7825183333333333,3.40083,4.11712,3.87213,6.022665,3.16179,2.96833,3.0428033333333335,3.0428033333333335,3.6716125,4.20936,3.697865,1.972635,5.8148175,2.131765,4.60425,3.523345,7.68292,2.78863,1.2601066666666667,3.115405,4.52089,0.66919625,4.05742,3.1201,2.96681,3.013205,4.301595,2.254583333333333,2.58514,8.98678,3.39365,2.99788,1.3910166666666666,3.72214,2.711105,2.2218287500000002,3.85654,5.2710175,1.6149775,1.1346616666666667,1.03855,4.18968,4.1841,3.59657,3.150215,3.150215,1.55615,2.318165,3.097680833333333,0.8862333333333333,3.1012,1.0856725,1.62836,3.374175,3.47565,2.562775,2.5831,2.8081725,4.36801,3.74425,3.04263,2.993215,2.93598,4.206065,6.53336,3.96808,0.8909925,2.3996545,8.39829,4.614955,4.06268,1.008205,4.918593333333333,1.3936583333333334,3.51966,3.51966,3.767965,8.751369166666667,0.8201177777777777,4.580925,4.35441,2.3582233333333336,4.1805433333333335,3.64819,2.130935,9.748885333333334,1.824045,2.3794133333333334,3.327005,1.7684,3.9754240833333334,2.817465,3.469655,3.4228899999999998,2.829385,2.92919,1.1824216666666667,7.2802,4.155905,3.70816,3.954495,1.93595,2.84763,4.333749166666667,3.48861,0.6243830769230769,3.902935,4.12229,4.633515,2.0629625,1.41215,4.29268,4.14734,8.88014,0.717296923076923,0.876175,0.876175,1.8796333333333333,1.6469666666666667,1.414452,1.7752666666666668,4.641405,1.3202166666666666,0.8788814285714286,3.9354275,3.49973,1.2142025,3.017375,4.51726,3.733155,0.747814,1.911345,9.26575,3.433815,3.51015,3.029735,1.5939425,2.5263666666666666,2.70958,4.53041,4.31107,3.676105,0.9054957142857143,1.4057840000000001,0.9117279999999999,4.1083025,4.287655,4.04761,0.8862333333333333,1.688356,3.82681,2.0822932142857145,4.958048333333334,1.078,4.84065,0.5857249999999999,0.5857249999999999,0.5857249999999999,9.445205,4.02964,1.0856725,3.853,4.69278,2.87693,3.309115,5.081172499999999,2.602515,1.9279033333333335,2.05245,0.747814,1.5303323333333334,0.5621233333333334,0.7762600000000001,1.5255766666666668,3.9062,3.743975,2.0575975,7.313611666666667,4.823010833333333,0.6138155555555556,6.2493,4.9804433333333336,3.38992,4.529355,7.215500666666667,3.8289899404761907,4.823010833333333,4.416746916666667,2.4301666666666666,4.052565,3.498175,7.307970000000001,3.62725,0.480713,1.522982,4.08013,1.755172,1.1346616666666667,3.919505,2.34673,1.949485,3.232015,1.6741879999999998,4.377355,4.336735,4.27049,4.725975,6.20749,2.59214,3.797615,1.29925,2.3145525,3.598615,3.18166,2.052902,4.00746,2.453995,5.02665,2.99918,2.361275,3.2626791666666666,1.574042,3.465985,0.8862333333333333,2.15136025,1.03855,1.772815,3.50208,1.527885,1.5255766666666668,2.12629,3.38885,7.546,0.9054957142857143,1.008205,1.2572800000000002,3.36592,3.78419,1.2572800000000002,3.931945,2.3145525,0.66919625,0.8862333333333333,1.8796333333333333,1.29925,0.4593257142857143,1.675318,4.193718666666667,2.3582233333333336,1.3547583333333335,2.942355,1.3940775,1.824045,2.843561666666667,2.05245,4.82435,2.843561666666667,0.7825183333333333,3.027304,2.142765,0.09710227272727273,0.09710227272727273,0.09710227272727273,0.09710227272727273,0.09710227272727273,3.25676,2.6929200000000004,2.7850633333333334,2.9610633333333336,4.68272,4.23723,1.722638,3.614515,3.637195,2.282895,4.968815,2.721585,2.44696,2.478495,2.736705,4.47895,8.546563333333333,2.309855,1.9919366666666667,2.7743596428571426,0.9348771428571429,1.3883783333333335,2.3547033333333336,2.0119466666666668,1.543665,2.6833633333333338,2.20433,2.505873333333333,2.53615,2.686386666666667,3.691775,3.63217,2.65897,1.313326,3.610565,3.52576,1.5201833333333334,1.333914,1.333914,1.333914,3.467255,2.7840433333333334,1.12765,2.19354,1.3511657142857143,4.263015,1.5675166666666664,6.056343333333333,3.2399125,2.4195533333333334,3.0645439999999997,3.0645439999999997,5.3292866666666665,3.01897,4.391595,5.15855,2.1629625,3.06652 +GSM1946781,1.0,1.94519,1.94519,1.59521,5.4121,5.1689,2.641770131578947,1.72312,7.92639375,4.62117,2.9609733333333335,2.315045,2.279735,3.535035,4.476135,1.900532,1.503812,4.927955,2.4745833333333334,2.4746425,5.2496,5.113295,3.87177,2.199795,1.807044,3.96287,4.791355,4.22205,0.7350383333333333,1.6183433333333332,1.9084950000000003,2.55945,1.536055,1.2672657142857144,0.7091025000000001,3.248263214285714,1.4798475,1.7171825,1.4949675,2.082625,1.2073575,1.2890225,1.1823380000000001,1.48933,0.9148440000000001,0.908836,0.8444100000000001,1.0575285714285714,1.71238,1.741294,1.4797639999999999,2.2662400000000003,1.708694,18.429081749999998,0.3748866666666667,0.85211,1.185298,1.8495940000000002,1.61654,2.03484,1.0215128571428571,1.0215128571428571,1.0215128571428571,1.1473716666666667,1.25002,4.81616,1.297315,2.031105,2.190655,2.735925,1.04528,2.3147575,2.45419,2.0525,1.4198575,1.97946,1.4617275,1.658475,2.3909966666666667,4.154905,4.718065,4.91976,1.5894166666666667,4.751475,5.082213333333334,4.175135,4.2036,1.125645,7.60428,0.601165625,0.601165625,2.075775,1.2148414285714286,16.61835,5.032,5.6081,4.841595,4.28993,4.07343,5.06095,0.49408666666666673,2.3793804166666668,1.7769375,2.4098025,4.92322,4.48796,1.3114375,3.068936666666667,3.0614333333333335,2.7527166666666667,3.3074766666666666,3.24425,4.920035,2.921655,4.87461,3.104703333333333,0.7448354545454545,1.494788,2.190985,4.25906,3.67725,0.51126875,3.59653,3.79528,0.7927375,4.13463,1.6532358441558443,2.024205,2.4509575,2.0074925,3.74719,5.30155,3.323295,2.8281766666666663,3.3218833333333335,2.929676666666667,4.072275,2.23477,5.6233,3.51364,4.12377,3.315825,2.319,3.53744,2.42009,7.171681666666666,3.748305,4.213715,3.47019,3.39993,4.818905,0.7545088888888889,9.893103809523808,3.3931,2.0307166666666667,2.0989383333333334,3.26242,2.4288,4.803435,5.5916,2.239665,4.789359166666667,2.62645,5.38045,2.239665,2.61476,4.669445,5.095933333333333,4.85961,8.111466666666667,3.457995,4.2721,3.04373,5.21615,4.73358,1.2442883333333332,8.00245,4.46607,3.52739,4.272225,3.577235,3.609055,2.13229,6.0413250000000005,2.322145,3.95232,4.1956,5.18745,4.576685,4.196585,1.7143166666666667,2.655,2.90794,1.905785,1.905785,6.4580527142857145,3.152885,2.0084733333333333,4.542135,4.39017,3.13729,1.431375,1.1307666666666667,6.96935,3.75036,6.8882,4.30325,4.9074,3.608735,2.91709,3.6543,3.42217,3.831895,4.352645,6.5198,2.84457,3.66721,8.999996666666666,4.738015,3.5391,2.9537999999999998,2.532113333333333,3.8973666666666666,4.043059166666667,1.5454925,2.8628133333333334,2.1989433333333332,1.687264,1.7449166666666667,2.4893433333333332,1.662195,2.230545,2.83412,2.7337166666666666,2.3394,2.9484066666666666,5.082213333333334,3.738755,3.53315,3.449265,5.2785,1.54789,2.02635,2.923610285714286,2.1596599999999997,2.6130633333333333,2.4084066666666666,3.330666666666667,2.05932,1.35652,2.79972,0.715284,1.62188,0.5507500000000001,0.5507500000000001,1.6623833333333333,2.2300999999999997,2.6776133333333334,1.2732866666666667,1.4690233333333333,0.35637615384615384,2.7412166666666664,0.715284,1.2371166666666666,0.2827,1.4796033333333334,2.0796275,3.5007333333333333,3.1818166666666667,2.30195,2.49276,2.4694033333333336,2.3481133333333335,2.5360133333333335,2.4495733333333334,2.1485766666666666,2.563003333333333,1.8412266666666666,2.76743,4.42035,0.708125,1.8138699999999999,2.5236533333333333,2.0956966666666665,3.501763333333333,1.5358399999999999,2.5601233333333333,2.3623600000000002,4.167086666666666,2.1738833333333334,7.176057619047619,1.6875142857142857,2.9572366666666667,2.0955,2.1309875,3.6464,2.24011,1.8832175,4.881405,2.7897533333333335,2.25313,3.968295,3.9604,4.319725,3.94977,2.30324,3.26585,5.007104666666667,3.894015,3.715855,3.80088,4.60635,3.064735,4.74,3.57253,0.8755425,4.8611,1.30109,4.724535,3.7645,5.921546,3.549695,4.123755,0.93264,2.20861,3.490735,3.912935,0.9696328571428571,1.428535341880342,2.134408571428571,3.1529937142857145,5.134382499999999,5.384078,2.1688175,3.56121,5.94435,0.3553592857142857,3.90233,2.33726,1.0491775,3.986545,1.946095,13.35012,1.24684625,1.5798075,2.8218633333333334,2.370895,2.3184259210526315,6.167030921052632,0.35991842105263155,1.69611,2.93586,1.004945,2.5212266666666667,0.9033585714285713,5.1343,3.97332,2.0984000000000003,6.07225,5.4861,2.3954075,1.165177142857143,4.531253333333334,4.87475,4.1653,0.9103636363636363,8.269066666666667,2.923166666666667,4.57175,2.6288133333333334,2.5566166666666668,5.01295,2.9288233333333333,2.8013399999999997,2.2796266666666667,2.4355166666666666,3.149405,2.7849233333333334,0.348259375,4.065585,3.79397,3.74552,3.609525,4.36287,6.2166049999999995,4.13955,1.7000875,5.6751,4.60233,4.673765,4.349155,1.1279350000000001,2.90256,3.4159666666666664,2.6622266666666667,15.14613,3.10375,3.835015,4.342365,5.26815,2.41232,5.167631527777778,1.8181425,0.7536455555555555,2.697725,3.53376,4.26763,3.469025,6.48541,2.908673333333333,2.30665,2.217335,3.368866666666667,4.849895,2.359795,0.3957344345238095,2.5927696739130437,1.995295,1.09537125,0.49441552148033124,0.593096608436853,0.3957344345238095,0.3957344345238095,0.3957344345238095,1.1756675,1.4043875,0.8456375,1.5467975,4.584462500000001,0.208765,11.457692467532468,3.0335366666666665,2.864986666666667,4.00201,3.926685,3.94807,2.218115,4.75279,4.202761333333333,4.29988,3.777645,0.7774153846153846,3.3581333333333334,3.936722051282051,0.6154514285714285,3.290915,2.957266666666667,4.966495,0.4944763636363636,1.938935,4.401445,3.655055,2.0529075,1.7207,1.8028533333333332,3.630466666666667,3.86261,2.92079,2.8277733333333335,5.318,5.47435,4.83391,3.107666666666667,3.5031185000000002,6.360025,3.8979,5.82015,0.4097490476190476,3.4296666666666664,4.057733333333333,1.96879,2.43302,2.7096116666666665,5.826359999999999,0.6795524999999999,2.12413,4.509705,3.9826,1.0309771428571428,4.82478,4.75964,4.79115,3.3084466666666668,4.78928,3.453945,4.29237,1.1897533333333332,3.83274,2.7998766666666666,5.09095,4.595765,4.402725,5.7453,3.96303,2.57973,5.98259,2.341133333333333,3.296885,3.1779499999999996,2.9164999999999996,2.7658233333333335,2.633036666666667,1.796266,1.4332033333333334,2.2074366666666667,0.7870928571428571,1.8917466666666665,2.924936666666667,2.037713333333333,3.09286,3.4468666666666667,2.7283333333333335,0.90272,4.834805,3.5852,5.469764583333333,2.6393679166666666,2.9990466666666666,3.314913333333333,1.3909966666666669,1.3909966666666669,2.438224025974026,2.438224025974026,3.3261768831168834,0.5455514285714286,1.7044966666666665,2.666786666666667,3.470133333333333,2.1539795238095234,2.1539795238095234,2.1539795238095234,7.7506869047619045,4.54520380952381,0.966981818181818,4.419505,5.16797,2.3283275,4.79887,3.17388,2.176965,4.863555,3.108913333333333,3.1422633333333336,0.93575625,2.1036433333333333,3.2216766666666667,2.90306,2.4577633333333333,5.4672,3.7655,3.6504,4.799546666666666,1.9157833333333334,2.72857,2.923306666666667,1.0326244444444446,2.0924533333333333,3.920408666666667,8.051095,1.519245,2.99299,4.61483,2.0667999999999997,1.8344975,1.8344975,1.04890375,4.97533,7.576475,3.85996,6.06518,4.740225,1.9826499999999998,4.295525,3.13002,5.09825,4.8951199999999995,0.3416694736842105,3.10066,2.845345,4.51206,3.96877,1.7485060000000001,1.9727775,2.6737,4.49862,3.620215,3.188535,2.35284,1.501572,6.77741,4.21732,6.05365,3.455255,4.223725,4.64582,5.27705,5.0651,3.4630150000000004,1.9324925,1.15774,2.72526,3.800805,4.545395,5.3955075,5.7424275,2.1738925,2.3503700000000003,2.4734366666666667,2.676023333333333,2.866903333333333,0.6556664285714285,1.783375,3.65271,1.0852,4.888335,3.315025,6.069687500000001,1.3283862121212122,1.3283862121212122,3.92693,3.664145,3.5478,5.55025,2.7129,2.29,4.059275,4.23713,1.9662025,3.2782699999999996,2.5833166666666667,4.10391,3.5710675,3.42316,4.26645,0.9675622222222222,2.645045,4.30975,4.818715,3.238435,2.407646666666667,4.4914,0.6544977777777778,0.6544977777777778,0.6544977777777778,0.6544977777777778,1.4638244444444446,4.01982,4.01982,1.8141433333333332,7.202468333333334,3.9419,4.311845,3.2892966666666665,2.802575,4.914015,4.189775,4.56256,5.1524,2.04101,4.853505,3.76868,2.798605,4.47304,3.20554,2.455585,4.583295,1.957685,4.642705,1.747305,3.6287054166666666,3.058055,1.749125,1.3304133333333332,3.016905,4.22064,1.47378,0.83912,4.21654,1.211025,4.993476,5.1471,1.3978957142857145,3.54883,0.7489722222222223,2.5421033333333334,2.6975166666666666,2.34548,2.811675,4.27679,2.934990833333333,4.63267,5.26365,4.336495,4.270255,2.365875,1.2724942857142858,3.62892,5.103,1.3739275,1.3739275,4.12153,0.25982,2.0973666666666664,0.25982,0.25982,0.25982,0.25982,4.948145,2.55571,3.16558,3.77588,3.1959066666666662,4.2917,2.476246666666667,1.12374,1.12374,0.9672466666666667,0.9672466666666667,3.795175,1.824725,3.51347,1.4440426785714287,1.4440426785714287,5.7374,0.47488071428571427,2.3020625,7.165305,5.10895,3.09331,3.728085,0.98256,2.23027,1.9496525,4.289835,4.704145,4.197435,3.66953,1.2917828571428571,2.78311,2.12847,7.36136,1.878765,4.652425,4.963065,2.72914,3.86644,6.09197,7.756640000000001,4.072775,5.01855,5.4251,2.3167925,3.15449,2.363605,2.36655,2.08698,3.71047,4.674765,5.835941666666667,6.1928,4.38431,1.1484366666666668,1.543025,4.171385,4.41948,2.180295,5.1226,4.4601,4.6498333333333335,1.7411433333333333,3.852066666666667,1.5944733333333332,6.341933333333333,2.6668833333333333,2.4011,2.3169133333333334,2.716775,3.140843333333333,3.2537866666666666,3.6799,3.3911333333333338,3.4361333333333337,1.546218,4.530245,3.06576,3.432545,0.377935,2.88776,3.951335,2.4554525,5.7618,5.17595,4.68866,6.6357680000000006,5.2301,2.2120466666666667,4.2341,5.13975,1.6127966666666669,5.29955,5.8694,5.21245,4.68473,3.21435,5.5804,4.88023,3.97427,5.7093266666666675,7.52614,3.496205,1.2243950000000001,1.4159566666666665,3.04311,1.974438,4.83294,3.945285,5.2174075,2.3533166666666667,2.6499533333333334,2.77962,2.5582933333333333,2.5745133333333334,1.2463333333333333,0.5338523529411765,4.185925,3.87099,3.3619333333333334,4.356665,2.95063,3.2984466666666665,5.611090000000001,3.0534466666666664,0.5684794117647058,3.660535,5.4645,1.9578875,1.63503,3.65689,3.5351,2.510893333333333,3.857333333333333,4.751545,2.7382933333333335,2.22977,2.2865699999999998,2.5032166666666664,2.65209,4.20947,4.834614999999999,7.422211916666667,1.902098,5.37035,3.6690004166666665,5.869764750000001,3.01111,3.13336,2.077025,2.4867666666666666,1.4263875,1.4263875,2.6367066666666665,2.3149866666666665,2.73242,4.740265,1.775928,2.26761,1.981305,0.66911875,4.327935,0.7067691666666667,0.99574,3.59716,4.500325,4.005995,1.6726475,4.775065,3.0234366666666666,0.9075285714285714,4.31258,3.7345942857142855,3.241823333333333,2.459235,4.91663,0.2863696551724138,2.2318765,3.025185,1.442935,3.56378,6.59215,2.27521,1.4738166666666668,3.725315,3.73606,2.6547566666666667,2.6547566666666667,3.548375,4.24885,4.915245,5.442573333333334,5.08455,1.03896,2.54832,2.5574933333333334,4.33068,5.0753,5.46885,5.00665,4.2465,3.711933333333333,3.7464,3.3516999999999997,3.9908,3.19987,2.953386666666667,0.6761678571428572,2.136825,2.487925,3.642575,3.30303,3.180066666666667,0.7976116666666666,2.880525,4.0191285,4.2246,5.6008,4.006965,2.1916225,2.1916225,0.9089639999999999,3.54077,4.85534,4.385135,4.562746428571429,2.96436,4.91607,0.6180127272727273,3.298225,4.08723,4.35268,3.414811666666667,0.9064285714285714,3.586745,4.16522,4.900445,3.69756,5.1037,2.723945,4.187845,1.500625,1.0366328571428571,2.82007,5.15725,4.070725,3.28278,1.4605616666666668,4.155375,2.2995475,2.81225,2.752686,3.1079266666666663,4.58924,2.809806666666667,1.798394,3.3726333333333334,1.4825046428571427,2.78727,2.7362866666666665,2.237805,2.779733333333333,2.86885,2.6093366666666666,2.4782800000000003,3.42995,2.9743033333333333,3.7579233333333333,2.86344,1.77776,4.216921666666667,3.135593333333333,2.492926666666667,3.7579233333333333,2.44722,0.8088072727272727,2.41386,1.0605633333333335,2.2447975,1.557715,0.9073745454545455,1.9036075,1.99294,2.54393975,2.6168,4.589955,1.5273025,3.72598,2.966613333333333,1.647014,2.15678,2.6893133333333332,1.6356166666666667,2.9206800000000004,2.788683333333333,2.3509238636363636,1.7933175,1.905796,3.5573333333333337,2.3650533333333335,2.7298633333333333,2.9604433333333335,2.5953233333333334,3.736466666666667,2.24297,4.3884,3.425133333333333,3.6776999999999997,3.2164033333333335,3.5485,3.5657666666666668,1.6555366666666667,8.494245,4.167915,4.551315,3.354795,2.96838,2.038185,3.9695,1.70062,4.12506,4.582305,1.401196,2.3447366666666665,1.0964416666666665,2.53919,1.70013,2.4702933333333332,5.03268,2.77553,3.406885,4.90572,0.80628,1.6731500000000001,1.03345,3.596825,11.103085,3.852866666666667,6.4944,1.8965575,5.1926,4.413145,2.47279,5.19885,0.27453,0.7898085714285715,4.890505,5.2076,7.412694999999999,2.271995,4.334585,5.1021,4.623385,4.612095,3.97133,4.3957,2.991085,5.353898333333333,4.2186,3.85691,3.277305,2.0888033333333333,1.9552833333333333,1.6557319583333334,2.4173833333333334,3.88405,4.810855,1.53608,8.70624,2.427916666666667,2.7733833333333333,0.9718260000000001,0.9718260000000001,7.669357083333333,2.784285,2.3010725,1.9706725,2.6976366666666665,2.11326,0.9670766666666667,3.2052058333333333,2.5210733333333333,0.6572042857142858,1.78132,3.3387200000000004,3.3387200000000004,1.1581566666666667,2.45963,2.5231266666666667,2.5232099999999997,1.2701875,1.7539066666666667,4.953708000000001,2.685083333333333,2.548075,1.276245,1.276245,4.527565,5.1548,4.922995,3.130935,3.71835,6.35907,2.73177,3.4396,3.4139,4.06524,1.1369666666666667,3.3857666666666666,2.5206,3.822425,2.2031966666666665,4.50712,3.396155,4.34083,3.50286,5.151976,0.9529455555555556,2.0719625,1.771925,3.42996,4.8339925,3.879905,3.8778,4.36713,4.66674,1.8016275,4.49939,3.400165,3.586315,2.3382033333333334,0.81827875,3.60501,4.587865,4.979745,1.22889,3.083816666666667,3.0639000000000003,1.9188366666666665,1.619545,1.619545,1.083015,2.3622466666666666,1.0696885714285715,1.3750959999999999,4.519515,4.577625,0.527,3.327525,3.2247233333333334,4.089475,5.6949,0.4240145,9.12077,5.58205,3.688135,4.35721,4.507195,5.595475,4.907435,7.025715,0.698659090909091,2.9597366666666667,5.57235,2.7197366666666665,1.9273875,2.03238,4.932745,5.1057325,2.306393571428571,2.87158,3.3500666666666667,1.6274075,4.57313,10.60515,8.695718333333334,4.0343333333333335,5.03935,2.93899,3.43384,3.793265,1.841116,2.98176,3.567155,4.684755,4.91125,4.99005,6.807533333333334,2.5648866666666668,4.39781,4.757845,4.938685,5.6012,4.919980000000001,4.2159175,6.27915,3.32921,3.052175,2.80993,5.5853,3.724715,5.4258,2.24875,3.28504,3.403095,5.8477,4.29458,4.300255,1.488054,0.8897175,2.727475,0.6065833333333334,4.89417,3.59914,3.41269,2.755675,2.060916666666667,2.90675,2.49893,2.9095839999999997,1.771502,2.922,2.767675,2.266495,2.575675,3.501954,1.2587916666666665,2.7175616666666667,5.2096,3.7808333333333333,0.99187,2.58287,3.7252041666666664,3.705879,1.5648625,5.47615,5.4304,1.83681,2.925333333333333,30.514551266713678,3.21508,1.7270833333333335,4.1058666666666666,1.9873066666666668,2.6622399999999997,2.7904966666666664,3.5297,1.96251,2.793075,2.3420525,3.5845944999999997,3.061033333333333,2.3340125,1.53181,2.0348800000000002,2.84135,0.38874500000000006,1.10358,2.600826666666667,1.6888159999999999,3.445605,1.5648625,2.0490333333333335,25.447230388888887,4.78647,4.82474,3.75098,2.73232,2.49923,2.5688633333333333,2.206795,3.85203,5.212447,5.6427,1.583832,2.0201000000000002,2.31572,2.5173916666666667,3.9426249999999996,5.1835,4.72907,4.865695,0.2054368085106383,4.860245,5.035829166666666,3.68205,8.79557,1.0553375,1.0553375,3.039846666666667,3.16505,5.6432,2.160487777777778,1.0839122222222222,5.06445,1.8732,4.15405,3.961505,3.279445,4.08358,3.923275,5.12105,3.12278,0.7021755555555556,3.05425,2.149425,4.49076,7.842715,4.696345,2.3124866666666666,2.3124866666666666,6.551612499999999,4.794235,4.06972,5.97665,2.114596666666667,5.403625,1.4133733333333334,1.30827,2.829283333333333,1.9234499999999999,2.72114,2.6774133333333334,3.71044,4.2199575,4.403475,5.06755,2.3150825,2.495265,1.9521825,2.856475,2.1260975,2.1515825,2.06261,5.180422500000001,1.8958575,3.732998571428572,2.34394,3.4807,2.6596699999999998,1.6733200000000001,1.4363428571428571,0.9780150000000001,2.4739533333333332,3.8036666666666665,0.6817840000000001,4.8616,1.86712,6.128157916666667,1.9640725,1.501015,1.643265,1.5377766666666668,5.704757222222222,1.8598020000000002,3.1019900000000002,3.5375333333333336,1.20451375,1.8691675,4.684882666666667,2.9451666666666667,3.0384433333333334,3.705966666666667,2.9597933333333333,3.04373,1.2719685714285713,0.2931333333333333,0.2931333333333333,0.2931333333333333,0.2931333333333333,0.2931333333333333,4.791935,2.4574000000000003,2.5636,3.3891666666666667,1.3659783333333333,2.65454,3.5691666666666664,2.8610966666666666,3.430645,2.91741,1.7555166666666666,2.9653733333333334,3.10146,2.161255,1.919285,3.57218,2.9549333333333334,3.0357333333333334,5.52085,2.716606666666667,2.9016066666666664,2.561166666666667,10.6939925,5.12025,4.728715,5.0965,4.14231,2.7930766666666664,5.081,3.731755,2.927365,5.9251233333333335,4.28896,3.250005,2.502175,3.624645,4.643571142857143,3.84934,18.510641023809523,1.2381925,5.0092,0.8276044444444444,1.17383875,2.8921,5.01695,4.14917,3.51218,1.42387,2.384195,4.092675,2.5182733333333336,4.887555,3.4379028571428574,2.4284,0.6594066666666667,2.7209233333333334,5.22215,2.2852625,2.3696625,2.321995,19.227879166666668,1.8156580000000002,1.3437125,2.7459866666666666,0.2985692307692308,1.8713,2.6982633333333332,1.9963233333333334,2.9909666666666666,2.670625,7.676825,1.9472775,2.5988,2.2475225,2.2240525,1.6248883333333335,3.328246666666667,2.99372,3.781405,3.00108,2.056045,2.5599545833333335,3.1528111111111112,4.975415,0.4701108333333333,3.9979999999999998,3.1681333333333335,3.005365,2.1389025,3.6018095,3.52442,1.6188066666666667,2.204403333333333,2.1985466666666666,1.4827766666666669,2.0913633333333332,3.653515,3.356425,0.800465,3.16054,5.13725,4.374905,2.366042,2.366042,3.0798633333333334,5.2466,3.44965,3.34943,2.29931,1.0702545454545456,4.236045,3.63824,5.78815,4.34563,2.267554,2.267554,1.6737725,3.829165,5.5145,3.93138,4.190935,3.2111666666666667,2.32586,4.41712,3.88753,4.09847,2.9565900000000003,2.5326233333333334,4.428723333333333,3.1087666666666665,2.6645366666666668,1.7689933333333334,3.604925,2.870275,1.5699666666666667,3.609915,3.786445,4.20216,2.996283333333333,4.599945,4.194405,6.82239775,4.005025,2.2808,4.809845,2.841495,7.19694,2.6757299999999997,1.3885866666666666,4.18881,3.3918666666666666,4.733215,0.6225835714285715,0.8105833333333333,3.78127,3.75353,2.164675909090909,4.439405,2.803115,2.79372,10.453199999999999,1.87572,1.272146,4.06986,2.501135,4.22052,4.901865,6.603718333333333,2.8959133333333336,2.04874,3.21716,2.03437,3.4476999999999998,8.610511683087028,0.9396171428571428,1.0585825,5.2067,0.481464,1.735145,2.349145,2.9555,3.0657,2.101215,3.85929,2.5818,13.55292,5.098504999999999,2.30623,2.30623,4.34626,0.7727966666666667,5.285596666666667,4.147835,4.013125,6.571371666666668,3.140515,4.34714,1.5305933333333333,2.864705,2.62814,2.8814,2.99678,2.639315,3.118245,3.47633,3.487485,3.018115,3.07288,3.197225,4.68828,4.099885,3.1179433333333333,3.13271,4.87422,4.53936,18.5180225,12.996312857142858,3.0774864285714285,0.6681016666666667,1.493142857142857,4.73675,3.19841,3.1514112179487177,1.81473,0.9222522222222221,0.6921175,0.63303,2.13571,1.578016,4.939168333333334,3.090203333333333,0.6792927272727273,3.20112,2.44668,2.0220175,2.0205200000000003,6.375213333333333,1.526098,4.672955,3.4872,2.9301333333333335,2.265425,2.5955533333333336,2.4915133333333332,0.7419372727272727,3.21163,2.9153300000000004,3.4380006666666665,3.012003333333333,7.654476666666666,3.582405,3.307295,2.20436,3.723785,8.25465,2.0999625,2.34497,2.46473,1.599745,2.707025,2.2789875,2.72845,0.958219,1.401815,1.064785,2.85258,4.16965,6.0048,5.44555,2.718415,2.306255,2.789125,3.3753333333333333,7.618356666666667,1.33844,0.418584375,3.159715,2.1167466666666668,1.55391,3.560747,1.232264,2.2707983333333335,4.772741666666667,3.7537333333333334,1.2054866666666666,1.8340500000000002,3.659885,3.51636,4.690385,4.582045,2.08541,5.41205,3.862735,0.7895846153846153,4.61824,4.207885,4.54944125,3.5818,2.402515,1.324072,1.268305,3.52991,2.850495,3.21854,4.460315,2.83916,2.64744,3.198605,3.73174,5.1945,2.361525,2.62988,4.354365,5.85515,0.58369,4.522935,1.9723125,3.33357,3.9784,1.655705,3.13168,2.2022225,1.99039,2.428605,2.64785,1.8470533333333332,4.482255,3.428955,1.416157142857143,7.63913,1.2155933333333333,4.042135,1.7070333333333334,4.466245,4.04183,2.50623,3.35992,3.98071,9.55795,2.97067,3.62733,4.308825,3.47104,1.6861,7.55715,3.844235,4.40521,1.55313,3.97882,2.76153,1.06950625,1.995192,4.246485,2.163165,4.2253,4.8535375,4.2440375,4.68688,2.295215,5.4207,4.09613,3.346,2.25697,1.9930119999999998,5.6713,6.1351,5.61545,4.46041,2.70021,2.23352,4.137535,3.54301,1.1281395054945054,4.04885,4.7041275,4.071625,2.787285,3.560645,0.6531685714285714,0.6531685714285714,5.8504,5.11115,6.0981,2.182495,4.03843,5.32635,0.812538,4.523225,4.777385,4.613645,4.55164,4.706895,1.934875,3.03968,2.1170575,4.41368,0.69671875,3.98044,4.23981,2.901645,3.067653333333333,4.473235,2.198535,2.994215,60.64891069264069,3.201905,2.480983333333333,1.667275,3.33549,3.832265,0.9071275,0.97251125,2.04699,2.04699,1.331736,3.16503,2.191505,3.7925554999999997,8.4676,2.8003400000000003,1.1731571428571428,1.4842266666666666,2.589653333333333,3.956980833333333,0.9554790000000001,1.827895,1.14786,2.0477075,4.33856,4.442665,3.07765,22.551379978354976,4.92483,3.814675,3.126155,2.0841433333333335,3.4154,3.26904,2.480305,5.14898,1.62018,4.145475,3.36370201984127,6.340565416666667,2.035685,2.599935,1.924905,4.765605,2.399293333333333,2.1972525,2.0178133333333332,3.7636761111111112,4.21552,3.63152,4.531375,4.94531,2.7004,3.063175,2.90768,2.60312,2.9334361111111114,2.40355,2.0988925,3.765255,1.1729616666666667,4.17084,4.82965,2.47329,4.95295,5.07955,6.128963333333333,2.087216666666667,2.155925,2.631375,2.6775,3.78612,3.248565,4.652285,0.6865899999999999,3.84462,2.67977,3.763855,2.351555,1.8185120000000001,4.243648333333334,1.265011111111111,2.732005,4.333055,1.103412,3.6248,3.80791,4.678255,5.73824,2.086935,2.796535,2.81786,3.9872,2.0319233333333333,2.6242086666666666,3.4083666666666663,2.36628,2.4034,1.4391266666666667,2.099445,2.099445,1.82599,2.0526133333333334,1.7490066666666666,3.138116666666667,3.92251,5.54005,2.873725,1.62158,4.336235,3.75092,3.428805,4.10398,1.88844,2.26035,4.583489999999999,1.778875,4.670656666666667,3.990775,3.558875,2.4259766666666667,3.742143125,3.114795,2.96911,3.518295,0.14068857142857144,2.61322,7.696275,1.482016,3.334695,3.842875,0.9724414285714286,1.0555116666666666,1.89048,3.969525,3.06564,6.467836,3.15445,3.60934,2.78747,2.654875,3.743835,3.33709,3.853905,3.3948,2.7662666666666667,5.62275,4.325465,4.36557,2.533113333333333,1.96349,3.32317,4.314565,2.67551,3.301525,2.34234,4.922625,4.170665,3.694375,2.56868,4.608895,5.0605,2.612365,3.879225,4.588585,3.55214,4.500685,3.42699,2.745245,8.44753,4.491235,5.5988,5.1488,4.202845,5.2584825,5.36085,3.683155,1.329632,6.68595,2.276265,5.0213,4.152135,4.049935,3.03905,1.98235,2.2406566666666667,2.3573666666666666,0.9990650000000001,3.2815766666666666,3.3618333333333332,3.036486666666667,2.33683,3.706705,4.366655,2.64102,0.5250158333333333,4.647855,4.55,4.873755,4.965385,4.06518,4.741265,5.0076,4.89024,1.4460888888888888,0.9230307692307692,2.9959066666666665,5.25775,5.27745,0.46955875,2.7648,2.5289966666666666,3.180865,4.464595,3.876133333333333,1.7742,4.10428,2.99726,4.28473,2.92314,6.3244,5.20995,6.9440875,0.6124483333333334,3.563795,0.8167,2.279885,4.0286,3.3034833333333338,1.3371266666666666,2.2516,4.28563,3.499625,4.003405,1.97786,2.1092175,2.994635,4.874375,4.773415,4.077325,1.6095479999999998,1.2037145714285713,6.5078,2.4464375,7.771000000000001,4.78283,3.514665,2.040335,1.60376,4.100655,4.428335,1.6741833333333334,2.30861,2.546375,2.61322,6.8347825,3.18523,2.83865,4.0870775,3.832605,2.07313,4.130085,6.667735,4.46711,5.2014,0.5807709090909091,3.297185,4.542935,5.029256428571428,4.292275,4.289295,3.01243,2.83266,3.182985,3.160685,3.5904533333333335,1.8966539999999998,5.431134,4.61939,5.0552,3.65177,3.41495,3.230845,2.31502,1.3673225,0.99928,2.835635,2.459795,1.0580016666666667,2.668093333333333,6.18805,5.2346,3.490005,4.58062,16.044098214285714,4.27801,4.377005,4.260065,0.7056883333333334,5.44685,4.73265,4.573355,5.0734,5.49125,2.370295,3.598775,3.311035,1.51699,3.08828,4.414015,2.60514,1.649204,3.87468,5.02725,3.859325,5.33915,4.94502,5.26765,4.591475,2.8801366666666666,4.262815,4.13445,2.67772,3.063883333333333,2.84685,1.9014966666666666,5.18175,2.6453325,1.9656633333333333,4.150325,2.5666,4.226815,4.216921666666667,2.587895,2.963025,4.33986,3.612365,4.722495,4.231695,4.55326,4.902583,3.36582,5.4881,2.607895,3.91331,4.70386,1.5255839999999998,4.58459,0.9987316666666667,4.332285,3.03493,1.0625671428571428,3.253145,2.083055,6.357505,2.9075489523809526,2.9075489523809526,2.9075489523809526,0.7018049999999999,1.0858649999999999,1.79947,3.45423,6.12534,3.3527905555555555,1.895605,2.1977375,1.7305433333333333,3.62849,2.402655,0.41948615384615384,1.795395,2.28645,2.936095,1.915815,2.800805,2.373035,2.07219,3.854175,3.0008366666666664,2.41466,2.910135,1.94482,6.57763,2.146205,4.277855,3.88372,6.3347750000000005,1.5773033333333333,3.525375,3.79898,3.65956,4.454825,2.98322,1.8964675,3.83456,5.756416,1.986935,3.560855,3.188115,2.1382675,4.995435,4.825755,2.578046666666667,2.144175,3.79368,6.026567142857143,5.6287,3.073605,2.35135,2.70087,2.91029,2.91902,3.88143,1.3680225,2.88726,4.58025,1.0418025,4.296585,3.945315,3.768325,4.279325,2.28468,3.40397,2.21614,4.3994,8.269928333333333,4.54062,3.394695,4.153295,0.96731125,4.65583,2.337235,4.31538,5.4430475000000005,4.673425,4.174285,11.151045,5.1181,3.52734,1.499075,0.7204433333333333,3.004365,3.7504,3.27266,3.641405,2.133,3.06896,2.2694533333333333,1.1570616666666667,1.1570616666666667,2.0129466666666667,2.3397433333333333,3.4476,2.474136666666667,3.5063,3.4158000000000004,2.997946666666667,2.782833333333333,1.5285033333333333,3.1265300000000003,2.0453766666666664,2.0825833333333335,1.4572925,2.84319,0.6528066666666666,9.8250775,0.6528066666666666,3.685166666666667,2.0763,1.9720566666666668,4.573985,4.2881,4.149675,4.35327,2.41712,2.8557400000000004,3.411424666666667,3.4967666666666664,3.487,3.3761666666666668,2.9645766666666664,3.2750833333333333,1.6161766666666668,5.64095,6.5911500952380955,3.0081066666666665,3.3943,2.8953366666666667,2.8001766666666668,2.67322,1.2672657142857144,3.4085666666666667,2.8590999999999998,4.106115,5.85535,4.347985,2.884066666666667,3.7261333333333333,3.31536,3.86554,4.159335,2.6329433333333334,3.959185,3.2550233333333334,3.1739599999999997,4.766085,2.954413333333333,4.41422,6.701166666666667,3.0421566666666666,2.5480199999999997,1.8721333333333332,1.4743066666666669,5.0780199999999995,3.5366316666666666,2.7014,2.07168,2.0547933333333335,4.68949,3.816165,2.53754,3.3907333333333334,3.3199433333333332,3.7487999999999997,3.743733333333333,3.9796,3.223216666666667,0.56749,3.8714,2.53228,2.7611566666666665,3.64846,5.0774,5.2708,5.8009,2.852235,5.000678333333333,1.3259133333333333,2.4457,2.4457,4.971905,3.91915,3.8525,3.20328,1.972135,3.054955,3.799265,1.0078471428571427,4.119748833333333,2.9500039523809525,2.0195196666666666,0.367563,3.217085,4.38604,7.041525,3.63188,5.94285,3.2838,3.985825,4.12024,2.0397541666666665,3.16216,4.79678,3.381895,3.457133333333333,3.2295766666666665,6.112075,2.13206,1.02608625,2.01247,1.6519233333333334,4.90283,2.3656466666666667,2.35574,2.1055775,4.789765,3.993875,4.291905,0.8100440000000001,4.64623,4.47439,2.99062,2.93384,3.2125733333333333,3.5249502777777777,4.07065,1.5212633333333334,0.673278947368421,0.8130142857142857,3.5295666666666663,4.698705,6.065476666666667,5.21245,5.46985,5.67365,1.4863857142857142,3.9784,2.114246666666667,1.05538125,5.17105,6.3656,3.67043,4.819365,4.205835,6.94711,4.5957,7.713048333333333,3.861795,2.7553590277777777,6.21885,10.038526467948717,2.5640133333333335,0.733529,3.83324,4.69926,2.09832,6.39495,4.466235,4.381135,2.911966666666667,2.911966666666667,5.4233,3.803265,3.80523,4.955645,3.8251011904761905,2.501575714285714,1.0848675,5.52475,2.53604,6.13705,3.428675,5.3677,3.55032,2.1608825,4.61339,4.831395,3.5538000000000003,4.144315,4.67956,28.867092261904762,2.1449925,2.753725,2.22222,1.6986333333333334,2.55566,1.3284814285714286,3.2746433333333336,2.954803333333333,3.3791333333333333,3.591666666666667,0.6867615384615384,3.5003666666666664,4.51504,3.359265,3.2921266666666664,4.044935,6.2699475,5.1033,4.34877,4.3111,4.28745,4.208295,3.4799333333333333,1.673605,1.0233166666666667,1.4248933333333333,3.3964666666666665,1.4574133333333332,3.8199666666666663,2.42087,2.2898433333333332,1.9932733333333335,2.64138,2.20601,1.9151233333333335,2.971495,4.2239,3.66057,4.143005,1.6814419999999999,4.2591,2.56092,4.110015,2.5093433333333333,2.67136,2.415665,1.5154233333333333,4.27856,6.464508333333333,2.78888,3.56743,3.99249,2.63625,3.259239166666667,3.7043666666666666,4.45769,4.729415,0.2951008880308881,0.2951008880308881,5.05155,5.2485,4.37253,2.95073,5.4476,4.375215,0.7024546153846154,4.524955,4.748675,3.746255,6.3269,4.696605,7.70787,14.006551666666667,13.362329615384615,3.97326,4.036835,2.7343466666666667,0.6324146153846153,2.476383333333333,5.083,1.2731716666666666,4.747435,3.6970666666666667,3.1977499999999996,2.09417,1.8350266666666668,4.888325,4.86212,9.66208619047619,5.0763,4.009,7.286816704545455,3.418365,3.082926666666667,1.4027725,5.400190833333333,2.0790275,2.5179533333333333,2.7193400000000003,0.313575,2.977125,3.331625,4.6175291666666665,1.441962,1.433785,4.108185,0.611842,0.611842,3.0360904166666662,2.765943333333333,3.658533333333333,5.88985,4.421045,5.52825,3.57275,4.234705,2.87359,3.228123333333333,2.770023333333333,0.8033583333333333,2.883653333333333,2.943435,3.064255,6.6325,3.042515,7.73458,2.74155,3.086955,3.054155,2.1556475,2.8813,3.0053,1.768145,2.3476675,1.9968425,3.649725,2.503775,3.78308,2.883535,3.765060833333333,3.765060833333333,2.6355975,2.6355975,8.895196499999999,2.598813333333333,0.796843,2.55709,2.467286666666667,2.52176,3.78308,1.932294,1.849402,1.497118,3.88237,4.394685,1.6649175,4.41296,4.13403,6.078742777777778,6.942528333333334,2.5088833333333334,4.45649,6.97766,4.46121,3.394915,2.494083333333333,4.309555,3.886998181818182,4.26186,5.772178333333334,7.786948,3.596085,3.922675,1.1363916666666667,4.697735,4.018038,3.95965,3.717138333333333,4.40061,3.070815,2.7687833333333334,7.91369,2.99588,1.100014,6.45003,3.78228,3.22669,5.4571,3.22669,3.76136,3.78828,5.5298,1.0597814285714287,3.6642277777777776,4.690455,3.69451,1.3765183333333333,1.9133525,4.86323,4.235825,2.66508,6.991016666666667,4.508285,4.118775,4.51301,4.3324300000000004,1.3805075,3.882705,2.82484,3.883135,4.34637,4.251165,4.80471,3.36565,4.755455,4.955285,2.262039,1.804755,3.622533333333333,3.5172666666666665,3.5684666666666662,2.8932266666666666,3.5911000000000004,2.9781433333333336,4.803835,3.145545,3.573415,3.09579,1.9637366666666667,3.4421999999999997,2.0245133333333336,3.022735,3.04138,2.625895,0.69671875,2.2899175,1.86617,3.333975,2.0725000000000002,3.7669040000000003,3.71053,1.381108,3.57835,4.4697,0.8123480000000001,1.4954599999999998,3.53623,3.81823,3.922015,2.04712,1.6633266666666666,3.533365,2.5687974999999996,1.6143166666666666,3.140635,2.17152,1.08479,1.4170775,6.223755,3.645185,2.248745,2.47396,2.35858,3.814365,0.84935375,0.34877214285714286,0.7618485714285714,5.349,2.1800678571428573,4.38542,2.3165725,2.2575851428571427,3.5480414285714286,1.2904562857142858,1.0599211428571427,0.6858839999999999,0.5727142857142857,2.9009125,6.47575,2.99373,4.22703,0.3500614285714286,3.66809,18.771460523809523,3.08507,7.566036945221445,1.1121775,1.1121775,1.1121775,1.1121775,5.870405,3.773155,3.279685,2.3412433333333333,3.43683,3.15252,4.1942,4.06191,3.21956,4.61582,4.218075,4.20322,3.7433886666666663,4.312915,5.0444,3.7934,4.648545,3.44469,4.165695,2.748666666666667,3.72464,3.216695,3.971825,3.78796,4.514575,3.27026,2.4717975,2.41576,4.430005,1.380315,3.776975,2.9971300000000003,3.443216666666667,4.2440375,3.87127,3.136105,2.72388,4.92521,3.71803,3.144435,5.15415,4.847035,3.202725,4.224845,1.627814,1.627814,1.441535,4.65894,4.033395,6.188632,5.1874,3.461733333333333,6.3594,4.478975,2.20232,9.372055,5.0268,6.2417975,4.75532,2.8511100000000003,4.110255,0.24885586206896554,0.8238825,3.9572686666666668,3.513935,4.91361,3.1896833333333334,5.795123333333334,5.24825,0.5412685714285714,2.78173,0.48673599999999995,1.6836928571428573,3.32325,2.33429,4.03362,3.59051,3.41982,3.449145,3.33927,3.60946,3.42596,3.521185,4.041125,2.40832,1.6836928571428573,3.30231,2.0654525,3.54347,2.237995,4.13918,3.428615,1.6861,4.35071,3.952765,1.37192,5.5041,4.923445,4.02186,2.7130466666666666,3.4445666666666668,4.84139,1.8988800000000001,1.3997519999999999,2.3974733333333336,2.57711,2.5206933333333335,1.9556833333333332,5.0829,3.43386,5.166271666666667,4.196885714285714,4.95801,4.281015,1.9580179999999998,5.2518,4.722895,5.3725,4.178375,7.179225000000001,1.78804,4.68633,3.87321,3.16689,1.8861775,1.6783266666666667,3.898825,4.580015,2.3201133333333335,2.77788625,3.225515,3.225515,2.957456666666667,3.2184333333333335,3.19763,3.96684,3.584425,0.8179923076923077,3.32188,4.33796,4.576366944444445,2.833215,3.08222,1.730385,2.97472,3.498005,2.212795,4.6907,3.811275,4.572125,2.2104333333333335,0.9995636363636364,5.82858,3.49258,3.4685,3.358233333333333,1.8675080000000002,29.76971280952381,4.130795,3.257345,5.43235,4.216355,0.9186333333333333,7.423225,2.24409,5.4356,1.5873666666666668,4.98607,5.695048333333333,3.81697,2.94544,2.06385,3.852733333333333,4.99924,2.0722675,2.6944033333333333,3.81109,3.71045,2.556535,5.8961,2.011775,3.899565,1.11761125,4.389475,3.32009,4.08274,4.942595,3.505035,2.3630066666666667,4.173495,4.95493,3.527225,3.527225,6.2696,1.5620125,4.228355,7.156031666666667,3.247395,4.09577,3.345165,4.201,3.229465,3.98344,1.3802375,2.584035,4.207825,4.347685,5.449,4.34113,2.70628,8.70755,2.51843,3.74267,1.7078428571428572,3.520105,2.344116666666667,2.716813333333333,2.8045891666666667,1.4476133333333332,2.62753,0.9338785714285713,1.0055885714285713,1.0055885714285713,1.0055885714285713,1.9151933333333335,0.6063325,3.791725,1.35124,2.9827966666666668,1.1088983333333333,1.8942166666666667,2.540993333333333,2.316953333333333,0.77254,2.0778066666666666,1.8639933333333334,2.27536,1.7043399999999997,1.7043399999999997,1.67324,2.008183333333333,1.116282,1.8024866666666668,1.61121,1.2823733333333334,2.21327,2.01294,6.03825,1.865605,4.70151,17.695811916666667,7.29296,4.34323,3.6497283333333335,3.2325,2.9466099999999997,2.8349233333333337,3.21156,0.7389775,1.00126,1.00126,0.6383375,2.60365,4.56199,4.98026,1.55638,5.2274,3.44576,2.65739,3.88998,4.69969,3.80778,4.71004,3.448166666666667,2.88579,3.327315,5.72505,3.4771,4.815735,0.527713,0.527713,2.49004,3.07352,5.0933,3.50405,4.381125,4.742645,8.019014,7.5864899999999995,3.41867,2.29249,4.568,4.45517,2.61725,2.43339,2.97119,1.2691233333333334,3.31294,2.306005,1.8314975,3.3142899999999997,4.362995,2.0335625,5.772178333333334,1.55128,3.9631333333333334,4.24944,0.9283114285714286,3.438,2.774453333333333,5.027,1.1637883333333334,1.740095,2.639825,2.0740925,1.6605025,2.3910475,2.082435,1.9106225,4.79714,4.6263,2.51743,1.80276,1.5486633333333335,3.735333333333333,2.0415966666666665,2.555975,4.997975,7.0375,2.623725,3.05006,3.429805,3.75912,2.487495,5.25285,4.23213,3.0235,1.473675,4.30883,2.33439,2.8059133333333333,2.510915,3.776375,5.3132,4.86571,2.8899333333333335,2.8897099999999996,2.779833333333333,3.437666666666667,1.9801666666666666,1.580104,5.4573,3.4484999999999997,2.2465769090909093,3.167143333333333,3.3533000000000004,2.3166433333333334,3.1310866666666666,3.509133333333333,3.574033333333333,4.963055,4.04689,2.9538166666666665,5.3196,3.307815,2.56262,3.33858,3.845085,3.909935,5.8564620000000005,1.8873799999999998,4.77658,2.927655,3.09876,3.52059,0.59538375,2.40938,2.244535,3.4089,2.565555,2.21106,2.714615,0.7026030000000001,2.82396,4.894295,2.2546525,4.509725,2.5022166666666665,4.042025,1.9554025,4.66627,4.16507,1.8609660000000001,3.8257,7.393805,4.183415,4.29502,5.01165,7.159175568181817,4.358905,4.694375,2.32741,4.569955,3.294955,1.9242233333333332,1.885285,3.3869666666666665,1.0066771428571428,2.2940066666666667,2.500503333333333,2.5395166666666666,3.6290666666666667,1.771042,3.46486,1.8213266666666668,5.46705,6.3544675,1.03102625,1.6979333333333333,2.5367366666666666,2.79421,1.9909466666666666,1.0592766666666666,5.680688333333333,2.3089775,2.6456666666666666,3.5434,2.9044633333333336,3.0581899999999997,3.115695,2.172423333333333,2.7161666666666666,2.1511766666666667,4.239105,3.95218,3.95544,3.3684333333333334,3.23275,0.905518,1.88859,2.1164275,2.0802633333333334,2.58608,1.125975,2.6664933333333334,2.9292433333333334,3.39454,1.9132133333333332,3.236995,3.66748,5.8732,3.06139,0.5799841666666666,2.0196,3.0151533333333336,3.9072,0.7541809090909091,2.806013333333333,3.477566,3.3889666666666667,2.864046666666667,3.089928333333333,3.731995,3.5878,3.0071766666666666,2.1228475,5.7604,5.13345,5.1027,5.4325,5.62105,1.7322300000000002,3.46666,3.835366666666667,3.3998666666666666,3.122973333333333,2.50559,3.9284,3.6926,2.980923333333333,14.167506666666666,4.058675,1.10185,2.93914,1.6145559999999999,3.370033333333333,3.154666666666667,2.6084366666666665,5.872168333333333,6.578208500000001,2.4820933333333333,0.845858,4.15712,3.6898666666666666,3.050585,5.1643,5.421,6.0165,5.0593,3.412335,1.8672725,6.6803925,1.1363916666666667,6.7839575000000005,4.7395,2.548696666666667,3.436055,7.534834999999999,6.0921,2.2046433333333333,1.5302449999999999,2.0955,6.972566666666666,1.5648625,3.0508,2.647911666666667,4.261124166666668,5.68045,4.0662,6.12235,3.380935,5.13235,3.71978,9.09694,5.0359,5.85945,2.26486,2.59995,11.1209,3.384295,3.52727,2.407903333333333,1.5952466666666665,2.6704033333333332,3.1816666666666666,0.6364075,0.9896459999999999,1.0848114285714285,3.493555,7.11113,2.900366,1.4907966666666665,5.0709,4.159335,0.595005,4.162895,3.60581,4.705875,4.13653,3.701125,2.5006333333333335,3.9999,9.821135,1.7167225,3.6739775,3.955935,4.31616,3.720295,0.9193833333333333,3.5521666666666665,3.6704000000000003,1.6536600000000001,2.5605933333333333,2.3203533333333333,2.577,2.8912533333333332,2.0591166666666667,2.20774,5.907177857142857,4.86196,4.312565,4.318925,1.50463,2.48355,5.16175,4.8822,4.70557,4.47585,4.59178,4.905075,1.627814,3.723365,7.166964999999999,1.4058650000000001,1.6323333333333334,2.499546666666667,2.2865166666666665,2.78669,4.881339166666666,0.8130142857142857,2.4993,3.3965,5.8599,4.217185,2.451563333333333,2.8433833333333336,1.819595,0.584690625,2.19978,2.84111,7.428694999999999,4.239195,4.5484,0.826831,4.319933333333333,9.617268916666667,11.263593333333333,3.35596,1.15775875,3.554245,3.53698,2.850796666666667,5.809446666666666,5.4827,4.18488,1.9115525,3.7937333333333334,2.2268433333333335,2.4467233333333334,0.7867518181818182,0.42260733333333333,2.67392,3.40473,1.9673426666666667,3.292955,3.2421633333333335,4.53512,5.5998,1.38736,3.348266666666667,2.32465,2.32465,2.23344,2.82312,3.84249,2.6460466666666664,2.867926666666667,3.445133333333333,3.4652,4.520685,4.289455,4.57283,4.126985,3.81149,4.541575,5.67625,7.862263333333333,1.96237,2.230303333333333,2.6432466666666667,0.8914683333333334,0.7323683333333334,3.847445,2.709165,5.40425,2.9470333333333336,3.2618033333333334,1.917382,1.4869975,3.904425,4.086785,4.206335,2.007633333333333,1.30929,2.6433133333333334,1.9719133333333334,2.5963066666666665,1.0258328571428572,1.0258328571428572,2.68356,4.21516,2.997755,2.804555,3.47132,1.95309,18.810882499999998,3.738745,5.40447,4.109485,3.71502,4.03332,3.58207,5.3982,5.7277875,0.8823650000000001,0.8823650000000001,0.8823650000000001,2.6201833333333333,1.7051285714285715,3.657666666666667,4.411455,4.5648,3.470485,4.604105,4.41266,0.9626533333333334,2.3979933333333334,2.839206666666667,5.726595833333333,3.1809925,3.926273333333333,4.51096,1.655705,1.9432733333333332,2.2285833333333334,0.535795,0.772618,1.839875,2.284785,2.81096,13.438688333333333,2.5297533333333333,5.358,0.7411214285714286,9.6622725,5.6498,3.636325,4.578475,2.93705,5.9871,2.93705,2.92126,4.18114,3.64363,3.30594,3.905575,4.232765,3.259715,6.0897,6.589123000000001,1.91909,3.258768,2.875585,27.143814364221363,1.675724,6.2156,4.934492,3.93355,3.76764,4.88983,2.7108,2.64309,2.66867,5.5684,6.90605,5.0471,4.254845,4.577275,2.0769675,2.10564,4.147865,0.8868307692307693,0.8868307692307693,0.8868307692307693,0.8868307692307693,3.996915,3.393441666666667,0.9630866666666668,1.8432633333333335,1.1639111111111111,4.77153,2.4397266666666666,2.35959,7.424353333333333,3.364466666666667,0.17409,20.803958666666666,4.483708333333333,1.7743120000000001,1.3573342857142856,2.21726,1.92117,2.492845,4.47676,2.94795,4.110535,4.18563,2.221433333333333,7.2685975,2.73811,2.005675,4.39689,5.94225,8.255886666666667,4.618195,0.29278048780487803,3.463165,4.228635,2.824503333333333,2.2945775,2.966113333333333,1.5663083333333334,1.5663083333333334,3.939205,5.8088625,11.730964166666666,9.146775,0.6904722222222222,2.596,4.034945,3.359125,4.858,5.0642,1.9585380000000001,1.9585380000000001,3.997085,4.73878,3.15498,3.784775,5.2265,5.2709,5.28032,2.08568,4.44797,4.1268,2.676655,2.9546033333333335,3.1240400000000004,4.881725,4.51136,5.24375,4.17092,4.1331,3.76799,4.49388,4.136825,5.58675,2.82567,3.3618,1.126786,4.25359,4.14393,4.13629,1.8775179999999998,1.9781966666666666,2.9218833333333336,2.9671800000000004,2.23997,4.67939,1.77885,2.585225,3.7735333333333334,3.9198,2.3620733333333335,2.9673499999999997,4.4187,3.3488333333333333,3.9965666666666664,3.994925,2.0635066666666666,2.76192,2.27189,5.92995,3.6972666666666663,42.286937333333334,2.464670909090909,2.464670909090909,2.62607,2.79397,2.0948366666666667,1.8798433333333333,2.9646666666666666,1.4324766666666668,0.7231284615384616,4.912665,6.890245,3.94485,3.707995,5.2108,2.0839166666666666,4.41781,1.803086,5.6984,4.53466,5.84915,4.52687,1.673605,4.200095,5.2695,4.80773,5.20365,5.5002,4.02134,3.06603,3.3229366666666666,2.8914500000000003,2.3913975,1.8614,4.674935,2.123746666666667,3.72107,3.72107,2.19044,1.58518,2.1104766666666666,2.35088,2.4910833333333335,5.07091,2.6831266666666664,1.1426966666666667,1.1426966666666667,3.3381333333333334,2.27684,2.53252,2.5710433333333333,2.4676733333333334,2.60918,2.5473966666666668,2.09314325,2.83756325,1.4578912499999999,0.74442,59.15578368055556,2.36207,3.0411966666666665,2.1471,0.95891,3.34352,1.5121740000000001,1.5121740000000001,2.3132033333333335,3.08835,0.71347125,2.33001,5.46864,3.5467666666666666,2.40301,2.7187866666666665,2.3667433333333334,2.5133560000000004,0.284205,2.510683333333333,0.744106,2.52176,1.0921340000000002,1.0921340000000002,2.1807766666666666,1.7968879999999998,2.0070133333333335,1.30962,3.2919033333333334,1.30962,2.0985766666666668,3.058173333333333,2.9435266666666666,1.145406,1.145406,2.8669233333333337,1.4895633333333331,2.4853533333333333,2.1371266666666666,4.401725,4.439815,12.798214833333333,7.0452875,3.80593,3.213795,4.518585,5.6008,5.373,2.8667724999999997,4.62009,3.388905,2.385823333333333,4.172215,3.26597,2.72509,4.990105,2.2532833333333335,1.03175,4.3397075,3.14683,3.019035,0.7743385714285714,2.779,3.516325,3.828015,4.436215,6.75375,2.5182733333333336,1.9086500000000002,3.783765,4.564795,2.2261275,2.478860833333333,2.0625833333333334,2.2243413333333333,0.839668,5.6719,4.454045,4.11118,4.121765,3.32827,4.51735,5.5588,3.20785,1.7162966666666666,0.5723146666666667,14.253807166666668,0.4935690909090909,0.4935690909090909,0.4935690909090909,3.0405533333333334,3.8749333333333333,0.4935690909090909,6.894065,4.27615,0.724035,0.724035,2.9328566666666664,3.140285,3.29781,4.64852,4.672715,4.3432255,2.22098,4.7428,3.49595,3.4444065476190477,5.03046,2.85309,2.40895,2.31621,2.643025,1.5922,3.3985425000000005,3.06842,2.45603,2.1181475,2.2681375,1.7765833333333332,1.5974175,2.7778,1.1671666666666667,2.62925,0.6257428571428572,5.11385,1.7227875,0.7844891666666666,2.4188625,7.855041666666667,2.653425,2.085896,3.0502475000000002,7.35602,2.4423,4.73607,2.996145,5.75858,3.99782,3.958685,3.74858,5.2741,3.0582266666666666,4.5965,1.15324,4.21201,2.3731233333333335,2.511086666666667,2.472315,2.288155,2.2861599999999997,1.2755625,5.3804,0.9073745454545455,5.0751,5.6549,5.06915,5.65775,3.918433333333333,2.38353,2.2100400000000002,2.891503333333333,3.0559166666666666,2.389675,3.8716333333333335,2.7314,3.643745,1.7065359999999998,40.939072857142854,4.87246,2.366496666666667,2.95618,2.9082233333333334,1.41223,5.466268333333334,4.193905,2.633646666666667,3.1951066666666663,2.13817,1.7698125,5.21945,0.7964357142857142,4.94111,1.3973614285714286,3.1607066666666666,3.5035666666666665,2.6962200000000003,1.410375,5.038813333333334,1.896714,1.896714,2.53988,2.9359183333333334,3.4066333333333336,3.8049999999999997,1.5110166666666667,3.0899366666666666,2.9138533333333334,6.486880333333334,2.9682933333333335,3.884593333333333,1.2841933333333333,1.4024133333333333,3.055626666666667,0.922212,5.67553,3.6562666666666668,2.762836666666667,3.8044666666666664,3.06842,2.6775800000000003,3.2344333333333335,1.64058,2.35858,2.412786666666667,3.3719333333333332,2.52991,3.5901666666666667,3.158166666666667,0.5878773333333334,9.710630064102563,2.763593333333333,5.44045,5.31505,2.7995733333333335,2.987956666666667,1.31873,2.1510233333333333,2.13549,1.31873,4.09419,0.4274125,0.4274125,1.10852,1.10852,0.937985,0.937985,2.832085,2.47601,3.32629,1.71088,2.12376,3.74826,2.891215,4.91402,4.659245,2.20194,4.43374,2.514705,4.8931678632478635,1.82837,1.82837,2.166055,1.8962379999999999,3.6360833333333336,2.02374,4.304475,1.42387,2.33517,0.5951592307692308,1.1720657142857143,2.2097175,2.2218575,2.2725175,1.65081,4.478085,4.215275,2.47892,2.8530333333333338,1.4632866666666666,0.6846208333333333,2.3328166666666665,3.97319,2.653026666666667,4.672525,5.626,4.96376,4.162375,6.86531,1.6393816666666667,5.943085,1.987135,4.69373,4.83356,5.754556,3.032216666666667,2.204885,1.7073675,1.923906,1.923906,2.4181825,2.4181825,4.26949,5.16605,0.92832,4.171675,3.29614,3.36698,2.5584533333333335,1.3792875,2.735656666666667,4.06546,4.505905,1.8497620000000001,6.31505,5.39435,2.1247233333333333,1.2155175,3.965305,4.146976666666667,3.754085,3.45845,4.12567,0.6669078571428572,3.32802,2.93526,2.6197033333333333,2.8279533333333333,2.1716933333333333,3.5829,1.5226714285714285,1.5226714285714285,1.5226714285714285,3.422333333333333,3.0903766666666663,2.82357,3.4249715595238097,2.43534,1.30242,3.1618399999999998,3.1945266666666665,1.4380428571428572,2.9301066666666666,2.7417533333333335,1.2361642857142858,3.373866666666667,2.833266666666667,3.1278699999999997,2.856856666666667,2.6807433333333335,2.0109075,3.1771666666666665,4.888463333333333,4.391935,1.01634,1.2274699999999998,0.6663669999999999,3.729533333333333,9.275745,2.9297066666666667,3.05135,2.5348166666666665,4.390574166666666,1.9977175,7.480086666666667,6.509823333333333,2.77823,2.643414285714286,4.267695,4.495775,1.5908200000000001,1.2616960000000002,1.236986,1.9685,10.989973333333333,2.7472999999999996,2.957076666666667,3.065045,3.82963,2.30159,1.16783625,4.729315,1.0905099999999999,3.387916923076923,3.67387,3.55327,3.1681399999999997,3.3432,5.08445,1.1289116666666665,2.032205,2.201575,2.201575,3.740875,5.57335,6.837289999999999,3.773025,3.41788,5.10755,1.78072,2.2415391666666666,4.844665,4.75968,3.902155,1.6876166666666668,2.989993333333333,3.46797,4.06135,2.543125,3.967695,3.647895,4.057,4.11719,4.355825,4.233025,5.7444,3.3804,2.50211,4.358865,3.018605,3.69821,2.0293,2.482,2.427765,6.1622,2.63561,3.4017802272727273,1.66773,2.662085,3.365165,1.97759,1.9724925,0.8400483333333333,0.8400483333333333,1.73045,4.0164912121212115,4.16007,3.025866666666667,4.493735,3.3638933333333334,2.5567142857142855,0.9962075,2.817415,1.7479825,4.907815,4.23542,0.9286329166666667,1.7885475,3.638765,2.9499725000000003,1.5497175,1.5678266666666667,5.129314285714286,0.9425083333333334,2.82047,3.182625,2.96967,2.432275,2.669906,2.06179,1.0130225,2.8819,2.95426,3.39258,1.5403799999999999,1.4601533333333334,2.048805,4.750045,2.158855,4.736715,4.917125,4.63805,5.8221,5.8983,4.26582,6.159995,4.005122380952381,0.7693445454545454,2.54673,4.34001,4.726595,0.47709545454545454,0.912638,2.90468,4.18693,4.86678,4.575515,3.2637157142857145,3.053015,4.79712,1.720716,2.691325,4.300505,3.8992475000000004,3.82838,3.215315,4.18742,5.08135,3.0122,5.645055,0.95358,3.4429,2.674745,4.461805,4.45017,4.29898,2.12864,2.706925,3.03411,2.023433333333333,5.01885,3.685155,1.5320571428571428,3.3404,4.0307175,1.391856,6.003445,1.884742,2.5731366666666666,13.244789325011245,3.0872833333333336,1.4570666666666667,1.4450283333333334,2.44495,5.4513766666666665,1.6095479999999998,5.773553166666667,0.7489584615384615,3.1752266666666666,3.767535,7.403974999999999,2.269233333333333,3.25363,3.25363,5.0963,4.525555,3.9587,3.343525,4.925675,5.44535,2.470485,3.4874333333333336,4.76466,1.288355,2.5688933333333335,4.727325,4.080565,4.210895,2.5835866666666667,3.24145,3.68105,6.643961666666666,6.316635000000001,0.733563,4.03166,3.124355,3.4804999999999997,4.189,3.800655,4.10049,1.8965260000000002,4.68123,2.539825,2.91162,4.153165,4.606675,4.62816,0.9564380714285714,2.7749699999999997,7.503832,1.5133599999999998,2.088357142857143,2.3754925,4.06203,3.61259,3.252965,0.7367754545454546,2.362305,1.751995,2.213685,4.167645,5.804309333333333,3.3063260000000003,9.178525,2.62434,2.74147,1.1274,4.809085,5.07935,1.98,5.9251233333333335,3.38812,3.139975,5.5712,4.41604,4.97571,2.414905,1.7020725,1.7020725,2.72584,3.390675,5.680716666666667,1.53971,6.5806016666666665,1.75244,3.68978,1.4897683333333334,8.8281255,4.952005,2.84824,5.1725,4.789845,3.74766,1.0646033333333333,2.0855225,3.4756,3.0942666666666665,3.4173666666666667,3.715733333333333,3.720335,2.692705,3.12812,3.235355,1.5519925,2.46085,1.8041866666666666,2.81061,1.8618866666666667,5.117448333333334,3.3838666666666666,1.7159700000000002,3.1497266666666666,3.260705,3.381435,6.2342,6.0707,3.05451,3.58051,3.74982,3.2134,2.850095,1.2446533333333334,0.9142060000000001,6.90934,2.98649,5.2905,5.0476,6.36895,3.08071,3.4116,6.5291,2.44892,0.4413783333333334,5.7644,3.594225,3.856935,3.3913333333333333,1.4447571428571429,5.30585,1.156768,4.62293,0.930925,1.3938966666666666,3.0620333333333334,2.425403333333333,2.415448714285714,3.64546,5.32555,5.932291666666666,5.932291666666666,4.9576675,4.9576675,4.671315,3.3143733333333336,4.509215,1.07744375,6.10525,4.375455,3.6905666666666668,4.365165,3.755515,4.691555,1.953305,4.695515,3.343442,3.13897,4.0527,2.70056,4.88432,5.15115,3.516075,3.051105,4.950835,3.82153,5.03595,3.461425,3.4310333333333336,6.2107,4.12659,2.8775399999999998,6.17431,1.6077366666666668,2.16219,4.60592,4.542975,5.5434,3.90741,2.0201155,2.0201155,13.954482777777779,4.95789,5.16795,3.49639,2.988342564102564,4.61156,5.00015,2.582246666666667,3.3213899999999996,3.27208,3.9230666666666667,3.5488999999999997,5.16605,2.206625,8.238993333333333,2.49998,2.2612825,4.736155,2.46973,4.869785,4.339385,4.630185,0.8779166666666667,3.538025,3.930775,0.878776,3.014875,3.7700691666666666,1.390468,2.1777833333333336,3.0270733333333335,2.5361566666666664,2.508246666666667,3.4222,2.272283333333333,0.5137992857142858,2.8083500000000003,2.5982233333333333,2.8616566666666667,3.173923333333333,1.758832,3.2506299999999997,7.368613333333332,4.768085,2.4566399999999997,2.0736399999999997,2.5545433333333336,3.783975,2.48104,3.5209,18.6688275,5.06615,3.473376,5.36635,3.680915,5.210373333333333,1.5306433333333331,5.94125,1.6506883333333333,3.649355,4.209565,5.3003,5.1451,0.9559236842105262,5.5901,2.9329,5.0035,2.663375,4.52283,4.79627,2.97956,2.041376666666667,1.465948,1.885315,4.54195,5.0836,2.260435,1.56255,3.12564,4.233924999999999,3.1696333333333335,6.1683,2.0868225,3.99725,4.053655,3.634585,4.604565,3.71538,4.001405,4.50303,3.855805,2.6134666666666666,2.6134666666666666,5.9549827777777775,1.9050866666666666,2.8849400000000003,3.70683,1.57702,7.482645,3.595665,4.800483333333334,4.358033333333333,4.50143,2.0667999999999997,4.651715,5.3979,3.73181,2.1297325,3.840695,3.1353,1.2520475,1.783795,1.2580933333333333,0.7280783333333334,1.63373,1.065555,4.427905,0.9898266666666667,2.875166666666667,1.5417133333333333,1.67723,0.9315699999999999,1.9959625,2.469995,1.546345,3.0552766666666664,2.4857466666666665,4.9798350000000005,1.5495016666666668,2.438075,3.646933333333333,3.108636666666667,2.608006666666667,4.3237075,4.51845,5.2153825000000005,20.360770666666667,2.6084066666666668,2.273705,0.6484015384615385,0.61938,4.616083333333333,1.86626,4.07847,5.61075,7.373661666666666,4.22408,3.94388,3.933365,3.0886566666666666,3.14612,3.6247000000000003,2.9909766666666666,3.1343266666666665,6.1323,4.296405,0.957619,1.15077875,4.99874,3.3346666666666667,2.6453933333333333,2.0405333333333333,2.1226133333333332,5.40595,4.80966,2.443425,1.6798566666666668,3.594925,5.68905,9.148096666666667,5.594095625,4.39229,3.96851,5.06125,4.7219,4.147105,4.48723,4.131415,5.57655,2.28015,5.54545,1.5939142857142858,5.44945,0.71412,5.00485,5.48045,6.196,6.1466,4.51347,5.9146,5.66035,6.5527525,1.9872166666666666,1.6807142857142858,5.6649,3.642225,6.317951666666667,4.878945,5.248401666666666,4.92577,6.2301,1.3978957142857145,4.278275,5.573,4.010166666666667,4.84999,5.9192,2.69005,3.9206,4.22381,4.629665,0.9825416666666666,1.5663066666666667,1.330566,4.732965,3.930805,3.374275,2.63414,3.00137,1.6117633333333332,2.1100266666666667,0.37023500000000004,3.4631000000000003,1.721058,2.149305,3.0285666666666664,2.1607533333333335,3.2806533333333334,2.5978,2.651875,10.807602,3.6127333333333334,1.697226282051282,4.44828,0.8345000000000001,4.8015325,1.1994275,2.06139,1.8945125,1.04840125,5.387563,1.1904091666666665,1.1904091666666665,1.1904091666666665,2.9541633333333333,1.630156,5.31645,2.895175,1.43129,1.4405675,1.79699,1.459175,1.411264,5.6971225,0.8867466666666667,4.61118,4.313895,3.4095,0.9988914285714285,2.1205715,2.13428,2.13428,1.5846966666666666,3.7102649999999997,4.60669,4.78546,5.83445,4.38053,5.5732,3.0642600000000004,2.1176525,3.050595,5.15695,3.574545,4.47658,1.040265,3.8826916666666667,5.16805,1.9154175,3.98429,2.9736100000000003,4.258915,4.98726,2.349545,6.21085,6.2011,5.0279,4.72856,4.155785,3.30046,7.68166,3.990915,6.425958333333334,3.3568,2.7617766666666665,4.68635,2.71379,3.283085,5.1352,2.78441,3.11862,3.931985,1.9123066666666666,10.526555,4.705545,3.20759,15.502312956349208,3.915845,1.7627166666666667,2.7692766666666664,2.479775,2.76571,4.28597,2.5048145138888893,3.33098,4.00043,2.799935,4.02307,6.064515,1.2690066666666666,2.48417,4.250725,4.213565,5.00605,2.1518625,0.653598,4.705205,4.26648,2.25755,1.1684283333333334,4.70139,4.832355,0.8936488888888889,3.970685,12.586924166666666,1.2830022857142855,0.4039792857142857,3.8958333333333335,4.23158,0.9918266666666666,4.47828,3.856295,5.1267966666666664,1.2565666666666666,3.91073,4.27514,3.30841,4.39735,4.61394,4.91865,7.46136,3.58355,3.986645,3.811765,15.402729375,3.201315,2.60665,1.2536025,2.0470475,1.3274025,1.82593375,1.292955,1.95065,1.6146125,2.307,2.586425,2.488495,1.992745,5.10025,3.435535,3.52359,3.178525,5.996600000000001,2.9625500000000002,4.930215,3.3723333333333336,1.16492375,3.63074,2.0225175,2.629742666666667,4.7856,4.719065,4.92233,3.974605,2.929123333333333,3.1490066666666667,2.43378,4.20528,3.755495,2.515775,1.953235,3.6625666666666667,5.0744,4.428815,2.3484766666666665,11.548293333333334,0.6420046666666667,2.62839,5.0077,2.6106100000000003,1.0200200000000001,2.70141,7.688181666666667,7.706816666666667,4.74356,4.467075,3.913035,2.063505,2.66414,2.8758773333333334,2.0688633333333333,4.121511666666667,5.75995,4.48621,0.5196066666666667,6.3062,3.718666666666667,3.607466666666667,3.7202333333333333,6.4779,9.44618375,4.8059575,1.02252125,2.1845375,2.14052,3.798895,2.61019,4.43064,4.79394,3.7432666666666665,2.7018533333333337,3.87219,4.161755,3.65857,4.081166666666666,2.24016,3.263485,4.64674,5.6252,3.5280666666666662,1.743645,2.1400166666666665,14.58916166083916,0.5703790909090909,1.5586825,1.5586825,2.0910233333333332,4.14084,4.41424,4.754365,3.67177,3.621385,3.911695,2.96833,4.053595,2.96833,3.293935,1.9351033333333334,1.5894166666666667,5.58455,2.565125,4.535185,3.239275,2.59872,6.657658333333334,2.0812466666666665,4.986,5.15155,3.80307,3.656305,4.965815,1.979242,5.09015,3.5710675,7.568853333333333,5.603890833333333,2.315625,4.13473,4.586435,2.09459,3.0565833333333337,3.6734666666666667,0.5684178571428571,3.1249933333333337,9.586653333333334,4.629905,4.55226,5.3965,3.47294,2.969005,1.3257742857142856,4.388365,5.3186,3.14947,3.115555,5.5175,3.588215,4.46805,4.46278,2.41244,2.41244,3.86923,2.81489,2.8647152272727276,1.93804,5.0624,4.038325,1.2244971428571427,3.642745,4.58354,2.9507766666666666,7.65255,8.24387,1.48272,4.1947,4.442535,7.358538,0.7682450000000001,7.7923100000000005,3.557265833333333,0.6509427272727273,5.38365,5.3328,5.3903,4.48769,5.11995,4.497095,4.960295,3.897885,4.055995,4.73919,4.20438,5.68775,4.99146,3.857185,3.37813,4.610495,2.878895,0.676358,4.33464,3.02101,1.785455,4.22673,4.488915,5.87515,1.0564557142857143,4.944673333333333,3.06535,2.56961,2.312235,1.3004766666666667,11.8138975,3.0892233333333334,3.3173600000000003,2.5352433333333333,3.7613547619047614,5.354946666666667,6.17343,2.7246366666666666,2.05031,2.1744399999999997,2.1744399999999997,2.1744399999999997,1.4679066666666667,3.85644,3.84928,3.11873,4.57138,7.884650000000001,4.029035,1.033874,2.12259,3.497595,4.97854,1.796266,4.720715,3.02902,1.5543933333333333,3.29278,6.24681,6.490565,4.56022,3.894,3.089116666666667,5.5576,4.428665,6.881103333333334,1.9473425,1.9473425,4.39483,3.81324,2.621373,2.621373,3.697245,1.1430542857142856,5.1281,3.249795,4.009905,4.258525,4.332645,3.137086666666667,1.069402857142857,4.45313,5.27915,4.28473,4.8181,5.06515,4.836725,4.56258,2.043945,1.5121625,3.161555,3.80997,3.16585,4.24311,2.20919,4.0811975,5.0145,2.775845,5.03355,7.87977,2.3279466666666666,2.961263333333333,4.353853809523809,4.789359166666667,1.747265,2.0015140476190476,0.8910683333333332,2.0015140476190476,1.7545033333333333,1.7545033333333333,1.538556,4.526755,3.03972,3.736835,2.35898,3.806345,1.6823833333333333,5.4224,3.007895,1.605755,2.9197900000000003,3.8465,3.60812,5.843657,4.711365,1.382522,0.8685783333333333,3.514485,6.461556666666667,2.4008966666666667,3.415775,3.38721,3.38721,2.397025,3.43314,2.984855,1.3908560389610392,3.0997466666666664,3.890835,3.139765,4.562145,3.9838500000000003,1.5277825,3.620845,4.73324,4.76385,5.05825,4.2815,1.9650225,2.33038,1.3283833333333332,2.378085,3.10399,2.0212075,3.942715,3.4706333333333332,2.63901,4.02616,5.242,1.38168,1.024412,1.8145633333333333,1.75192,1.2435,5.0672,3.870525,1.126786,0.19736217391304348,0.19736217391304348,0.19736217391304348,3.501515,6.12063,4.550235,5.21635,2.87265,3.569805,5.52025,4.31568,2.633125,3.632955,1.635365,4.829065,4.443765,3.84511,4.41195,4.572525,0.7805845454545455,0.7805845454545455,0.7805845454545455,0.7805845454545455,0.9485239999999999,0.9485239999999999,3.918675,3.93762,3.91225,2.60976,2.550205,6.28485,4.74585,5.17815,4.29403,2.9195533333333334,2.50752,9.81642,1.7397459999999998,1.7397459999999998,4.57497,5.39165,3.4389333333333334,0.4274125,0.4274125,0.4274125,0.4274125,0.4274125,0.4274125,4.866273333333333,4.90632,4.047585,4.3264,2.8742791666666667,2.8742791666666667,2.731435,3.0035613333333337,2.6533666666666664,3.957005,3.666,6.788954666666667,1.2838100000000001,5.0663,3.491695,4.16115,10.15582,2.7746633333333333,3.22394,0.9816514285714285,2.966295,4.707685,4.00477,1.0980525,2.5993666666666666,4.685475,5.5842,2.574925,4.809230833333333,1.1307666666666667,2.10341,4.65061,4.787235,2.722142,2.527276666666667,2.61931,1.46804,8.332998333333332,3.5909999999999997,2.2640966666666666,3.18217,2.7562146666666667,3.35523,4.5182,2.6770633333333334,3.1911766666666668,5.97395,1.5270916666666665,4.819,4.99135,4.360565,3.819155,2.426266666666667,3.241435,3.74487,3.929965,2.910645,4.725885,4.543455,2.843833333333333,1.9368237499999998,2.726836666666667,2.7431933333333336,2.8239199999999998,0.8149272727272727,2.2975175,8.2982475,0.499640625,3.1237333333333335,1.63983,2.4323833333333336,3.2224133333333334,3.0357533333333335,1.264188888888889,1.7584060000000001,2.5902133333333333,2.1083,3.76064,2.086,2.978056666666667,1.5002233333333335,3.2475819999999995,1.980455,1.2107071428571428,2.8966833333333333,2.1061725,2.382496666666667,2.52408,2.7612400000000004,3.215863333333333,3.4447666666666668,3.3123633333333333,2.944993333333333,2.8089633333333333,2.8788,2.504075,1.6800766666666667,2.28557,2.7572733333333335,1.5886699999999998,3.07152,3.917710476190476,3.0394966666666665,2.9409500000000004,2.9435599999999997,3.7235,4.973569166666667,3.0638,1.7208785714285715,1.7208785714285715,2.4221125,1.1220775,2.520375,3.379811666666667,4.625392916666667,2.658625,2.0435975,2.0308325,2.031085,3.64097,3.71405,3.42047,4.97469,1.8447175,2.6109,3.569665,1.338954,1.338954,3.0296,0.7055315384615385,3.382365769230769,2.486965,2.486965,2.9327433333333333,2.475776666666667,2.9865766666666667,2.67245,2.3636425,6.28232,3.788055,3.788055,3.99549,2.86527,2.283705,3.05476,2.42387,3.12538,5.0336725,0.5226716666666666,0.639162,4.10744,2.233925,2.735525,6.41189,3.510665,1.672792,4.8951199999999995,4.680555,3.8992,4.23415,5.47035,5.0677,12.6709615,3.679435,1.7899466666666666,2.773655,3.59564,5.752,3.941265,4.341325,4.69871,3.802605,3.66897,2.63577,3.33884,2.84718,2.3187233333333332,2.3187233333333332,4.163445,3.26583,3.264285,3.07175,2.437225,2.43813,2.1804275,1.8974175,2.14063,2.1138425,1.75479,3.702599,3.70231,2.70382,6.8995375,3.38495,2.3465866666666666,1.9327733333333335,3.25721,3.70594,3.84843,3.185900833333333,3.474145,3.131455,4.192365,3.590615,3.80542,3.847215,3.247878,3.571925,0.8108483333333334,0.8108483333333334,0.8108483333333334,3.163615,2.38493,5.52355,2.33224,3.635535,7.8412779629629625,3.0308666666666664,0.34144384615384615,5.3257,0.771727,4.193145238095238,1.89452,3.71775,2.051375,5.10525,5.871214999999999,4.48474,4.053435,2.7970633333333335,2.952053333333333,1.4873066666666668,2.52331,0.5131147368421053,0.6078411764705882,2.7746666666666666,1.6226500000000001,2.12873,3.673615,3.28981,4.751665,2.79466,2.907021666666667,3.154795,5.94329,1.9419125,1.0169042857142858,2.302145,3.321612,1.322571948051948,4.727645,3.71652,4.3102,2.72266,4.34229,3.022346666666667,2.8464066666666668,3.1780000000000004,2.3283275,2.84755,2.1526175,3.0946466666666663,2.59709,5.735794666666666,2.651,1.92495,2.53579,5.076797333333333,2.92766,2.92766,2.4252066666666665,3.97536,2.2738825,3.744335,2.787165,0.6133986666666666,4.37573,2.1384725,11.68653888888889,7.14682,2.665305,3.23417,3.19411,5.61844,2.82126,3.41248,0.25982,1.957825,3.796466666666667,0.907,3.87396,1.4711714285714286,5.0133,3.368595,3.49991,2.490645,3.963725,2.28458,4.90252,3.672795,4.257435,7.48321,5.18035,3.0405200000000003,3.1551066666666667,1.565464,2.03635,4.442495,5.18405,3.9450775,2.563275,4.12501,1.59211,2.933775,2.34071,4.579405,10.817741666666667,3.566105,7.232803333333333,3.887615,4.65343,1.0564355555555556,4.9518450000000005,4.67078,2.50306,2.85323,3.6150333333333333,2.68859,2.3507433333333334,1.7369899999999998,1.82554,3.509905,1.830702,2.735716666666667,5.520418,2.819706666666667,1.1677432142857143,1.1677432142857143,3.537515,3.2767494999999998,3.2767494999999998,3.6945666666666668,2.9470266666666665,3.598052820512821,3.6595999999999997,2.805563333333333,2.6934400000000003,2.2383533333333334,2.3583766666666666,3.0474366666666666,2.2731325,2.6098733333333333,1.544258,5.587778,9.336768666666666,0.36129076923076925,0.36129076923076925,0.36129076923076925,0.4238509965034965,0.4238509965034965,0.36129076923076925,3.0019766666666663,2.86041,4.3170633333333335,1.4994733333333334,1.705725,3.254858,2.2073933333333335,2.9528366666666668,2.4238066666666667,3.3055800000000004,3.5802333333333336,7.187906666666667,3.1338933333333334,2.3244599999999997,3.5663666666666667,4.65033,2.8296966666666665,3.6191,5.66822,2.2752466666666664,3.3283233333333335,1.4012916666666666,1.4012916666666666,2.77721,0.5335052631578947,2.3126433333333334,2.7702266666666664,3.0418966666666667,3.253626666666667,2.2852333333333332,1.5796166666666667,2.77469,3.1489666666666665,2.47186,4.782455,2.4143673333333333,4.0998,3.42129,4.78396,0.567662,6.613461666666667,2.9375080000000002,2.9375080000000002,7.802388055555555,1.81754,1.6764166666666667,3.122673333333333,4.46361,2.2284533333333334,1.97752,2.5207166666666665,1.4409925,3.4519333333333333,1.7843733333333331,2.9826345000000005,1.42229,0.26129318181818184,0.26129318181818184,4.82705,3.836005,3.626335,3.0279633333333336,3.217515,3.44546,1.3611266666666666,6.7127,3.7193,2.62151,1.8091025,1.2059416666666667,2.18615,3.122673333333333,2.375915,2.059445,6.180669999999999,4.857035,4.70228,4.402845,2.51074,0.6706358333333333,6.3342975,1.86543,1.3579575,3.25904,4.5102,1.75009,1.9541666666666666,4.70895,4.53901,3.4576333333333333,3.32319,5.0897,4.775435,3.6153666666666666,2.5002519999999997,2.5002519999999997,4.41328,5.19105,6.00385,6.780823333333333,2.6726666666666667,3.79979,1.3817814285714287,2.2858225,4.778653333333334,3.75796,1.7579,4.461865,3.6062775,4.2485,1.961245,4.270285,4.6225,5.5926,4.686645,2.3773633333333333,2.7228166666666667,3.8404333333333334,2.1287333333333334,2.5309,2.81898,2.4579999999999997,0.974583,1.94239,2.704003333333333,2.4174179999999996,4.89504,4.596615,4.314095,3.87437,3.925215,5.3451925,11.00578,5.14725,3.86465,4.286695,3.697295,4.622755,3.414633333333333,2.843466333333333,3.8549333333333333,1.2183925,2.85874,2.716205,4.95222,5.08625,5.00185,3.2609100000000004,2.8028366666666664,2.3930000000000002,4.2754666666666665,4.369275,3.7918333333333334,4.369275,2.5848455,2.2965866666666668,2.2572883333333333,2.257125,2.81303,1.8114,0.8391166666666666,1.4332566666666666,1.6797833333333332,1.9544566666666665,1.5508766666666667,1.30294,1.6185933333333333,2.662246666666667,1.531404,3.1811433333333334,1.31904,1.5246633333333335,2.643185,3.381866666666667,2.8118833333333337,2.57895,2.41264,3.146755,2.273975,2.7537533333333335,3.0555333333333334,2.4836233333333335,3.060726666666667,2.934355,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,0.16083225806451615,4.881025,4.01844,1.0150828571428572,3.0452600000000003,2.6162566666666667,2.9342466666666667,4.4872,2.9164266666666667,4.65264,3.841108666666667,1.65509,3.2004,1.6930333333333334,1.10678,0.912041,1.3081433333333334,0.8928916666666668,0.8067083333333334,1.402536,3.185525,1.717362,1.77365,1.892468888888889,2.396455555555556,0.9889083333333333,1.4523783333333335,1.39992,0.9798916666666666,1.2586116666666667,0.7368533333333334,0.922574,3.22534,3.57485,4.326375,4.274065,4.2069,3.0548133333333336,4.531545,3.6950000000000003,1.7742,3.757545,1.9496525,3.35864,2.3794166666666667,0.8269272727272727,3.98564,4.879275,2.0367633333333335,1.2593925,2.88014,3.355085,3.7102649999999997,2.9308333333333336,2.75867,0.8880075,2.1406425,5.131475,3.74134,2.4019,1.487895,3.65343,2.0230525,0.6791481818181818,4.43708,4.321915,4.25448,2.46181,1.263078,4.29677,4.364615,2.575606666666667,2.5180233333333333,2.5333733333333335,2.6403733333333332,2.6515033333333333,2.8188433333333336,3.102463333333333,1.3061125,2.777125,2.70884,5.18875,4.18608,3.74984,4.42452,15.923328147727272,4.6258175,4.798643333333334,2.837675,3.993645,5.16855,1.601658,2.7206,2.62924,6.876505,4.395815,4.803935,4.7843,2.62924,3.75539,2.05395,2.55403,2.79275,2.6203233333333333,1.2696183333333333,4.294355,4.05411,2.808095,4.178085,2.5472733333333335,2.5413566666666667,3.59048,3.06405,4.98076,3.415675,2.73519,3.469655,2.556235,2.6733533333333335,1.072718,1.072718,2.7666299999999997,2.2439133333333334,0.30148964285714286,5.4531,0.9201599999999999,3.406245,4.094195,0.5663025,4.61682,8.470713333333332,1.804755,3.743195,3.84702,2.6194,3.581815,2.54733,2.96758,3.59326,4.032575,3.222715,3.9686333333333335,0.951925,11.370230666666666,2.89228,2.942905,4.515655,2.601205,3.99314,7.768308333333334,4.25436,4.41998,4.226275,4.331245,5.9937925,1.5367025,2.966756666666667,4.3435,3.8664,1.8781780000000001,3.74567,3.95338,3.560575,3.898215,4.936865,4.05875,2.4380333333333333,4.276355,3.513805,4.996675,4.52733,2.18273,2.342093333333333,2.0354,2.98127,1.2429033333333332,3.5947333333333336,0.8469009090909091,3.4210333333333334,3.2019800000000003,2.4758400000000003,1.5517366666666668,4.40247,3.725435,4.160315,1.8596275,4.59398,3.654225,0.6790854102564103,0.33788807692307693,4.70829,4.67078,0.97469625,0.33788807692307693,3.466245,0.6790854102564103,0.6790854102564103,0.33788807692307693,5.7018466666666665,2.6030966666666666,2.4434,5.6063,3.58787,3.075635,0.7795855555555555,2.996285,3.671225,4.70408,5.4241,2.18099,0.7124784615384615,4.5354399999999995,2.84348,1.595964,2.07857,1.1422485714285713,2.5601966666666667,2.368186666666667,3.753505,5.76615,3.4430333333333336,3.6084333333333336,3.154873333333333,2.2599033333333334,3.093235,4.228365,1.443575,1.966655,4.20784,5.15825,2.143025972222222,5.0142,2.616225,4.19496,4.184295,3.87629,1.168715,2.98591,6.5877,3.86969,4.40814,4.98527,6.4911,3.045575,4.60894,4.467985,3.18756,3.338855,8.09344,3.681915,4.3189725,2.363,0.9307125,2.46945,2.11212,2.297795,1.843095,4.623555,0.7104007142857143,3.692385,3.946365,1.99986,3.0946266666666666,4.91049,3.927995,2.848235,4.68264,5.7828,9.767670333333333,2.5848566666666666,2.7788766666666667,1.615524,1.8787666666666667,1.2829266666666668,1.38515,3.2374066666666668,2.40515,3.0428366666666666,4.319406089743589,1.5945325,2.31469,5.3951,5.8192,3.890165,3.34364,2.91548,2.37553,2.101295,2.11511,1.9180466666666665,1.97837,4.426005,3.522575,5.0271,5.2468,4.537835,5.333599166666667,3.51202,2.543375,6.353527916666667,4.268985,8.213755,4.867221666666667,4.867221666666667,5.541618333333334,1.7321466666666667,1.2908225,1.2963433333333334,0.683807,5.2879,4.1783,3.3147699999999998,3.3147699999999998,1.893716,4.486695,4.409265,4.84377,4.919265,2.94504,2.65928,4.411335,3.1339733333333335,4.767779166666667,3.691445,0.8863918181818182,6.04525,5.3207,5.2162,5.22085,2.986535,5.90115,5.0454,0.8357769230769231,4.95871,7.161994999999999,3.6179,5.51145,5.84695,3.42156,2.623745,3.67769,6.07845,2.087725,5.75675,1.8604325,4.891155,2.7192266666666662,2.133335,0.95358,3.66354,5.5892,3.49713,4.389355,1.8465566666666666,4.48364,7.8289116666666665,3.665145,4.079975,2.6761,2.792135,0.89765,4.790265,1.4974466666666668,3.366039166666667,3.366039166666667,4.70385,2.2403666666666666,3.1099366666666666,4.345345,1.8351975,3.3681666666666668,3.221296666666667,3.3746333333333336,2.74171,3.98634,3.054735,1.847915,3.5179666666666667,2.2373575,2.98254,2.0194233333333336,2.9790433333333333,2.9776566666666664,1.4593285714285713,1.79183,0.48850666666666664,1.3036483333333333,0.48850666666666664,0.48850666666666664,1.79183,0.48850666666666664,3.4619999999999997,2.623168,2.623168,2.8170566666666663,5.26145,4.83011,4.377705,5.6396,3.933405,3.45121,4.31195,4.24373,2.3387275,2.6493011666666666,2.70406,0.7819945454545455,5.7751,3.071733333333333,3.031,5.59145,3.7816425,5.14295,3.31969,2.5712766666666664,3.116435,3.248415,2.477323333333333,2.736283333333333,2.07762,5.6378,0.8664444444444445,4.05548,1.2643814285714285,3.47904,3.0736233333333334,2.902946666666667,4.148705,4.321865,4.129045,4.77484,3.892345,4.106895,4.431835,4.07731,2.540475,2.651925,3.3059933333333333,4.10215,3.13175,3.728025,2.554885,3.681975,3.205963333333333,3.25812,3.591945,4.14165,3.96698,68.2923844980575,2.7144308333333336,4.103555,15.911693333333334,3.904555,3.09067,2.128766666666667,2.09742,2.39324,4.61717,2.89561,4.6526525,6.035,3.386175,8.207613333333335,5.42465,2.798765,3.377325,3.90692,3.495125,1.786646,1.23919625,4.529345,2.96585,6.016568333333334,3.88701,2.4342099999999998,3.44375,4.03441,4.381535,2.83585,5.436285,4.451225,3.895345,3.226265,2.1862075,3.55718,6.0055,2.84845,3.71859,4.3127941666666665,1.1699916666666665,3.494565,5.1764149999999995,4.22608,3.84289,3.578045,2.87513,4.12124,3.11023,3.59918,4.347835,4.439935,3.123105,2.615655,4.369565,9.157415,3.1212066666666662,4.174775,4.9181,3.15441,3.366925,3.9975537500000002,1.8972233333333335,2.7801299999999998,2.938136,3.55246,3.21099,3.06177,3.09106,3.573555,3.867845,3.75482,4.02756,4.296815,3.87055,3.72045,2.5232099999999997,2.5232099999999997,6.3879850000000005,2.45628,3.186845,3.505135,2.32732,5.12815,4.026945,2.85799,3.298085,5.20385,6.7719024999999995,0.6850172727272728,3.7263,2.48925,2.919033333333333,2.6344733333333332,5.28175,2.776543333333333,1.9767175,1.11761125,2.0590228787878786,3.968265,4.058875,3.711375,6.23555,3.973245,5.88595,2.36123,1.6864966666666668,4.724645,3.733,3.123476666666667,2.0028366666666666,1.261485,2.6546533333333335,3.1672266666666666,1.594496,2.50459,2.489883142857143,3.499685604395604,2.835865,5.20875,3.384045,1.3784075,5.2683,3.35002,5.32675,4.75039,5.301,4.69016,1.9492566666666666,1.4730966666666667,0.6002342857142857,1.5771066666666667,3.49846,2.489285,3.553095,1.33428,2.62192,2.317215,3.24078,3.41177,3.733825,4.05933,1.586525,1.47474,1.90088,1.95136,1.5076525,2.74575,6.547725416666666,5.00105,4.198925,2.949915,8.110195,4.919265,3.008925,2.97489,3.42526,2.636705,3.901935,2.3016566666666667,7.09811,0.8719416666666667,3.100755,6.4979,3.968005,4.695435,5.8128,1.6708266666666667,3.1046066666666667,2.6406266666666665,2.8611400000000002,1.634305,4.016965,8.6501,4.18309,5.12845,4.06645,4.201595,4.777625,0.8937566666666666,2.77113,5.48755,6.54024,4.973185,5.3528,2.8878,3.9293333333333336,2.48848,5.0581,5.01205,3.886128166666667,3.886128166666667,0.69449,3.494866666666667,0.862194,0.8895266666666667,1.86288,3.4185666666666665,3.20737,4.613518571428571,2.423506666666667,2.943726571428572,3.207061904761905,3.160816666666667,3.097963333333333,4.6325,3.176375,1.875025,1.875025,3.74946,2.9485200000000003,2.614316666666667,4.254625,3.555266666666667,0.6187577777777777,3.1905,2.469473333333333,2.6948233333333333,2.75108,2.543925,2.686976666666667,3.15536,2.8809166666666663,0.830033,2.85376,6.293803904761905,2.15242,7.583145,1.531512,1.531512,3.371558916666667,3.3588,3.313803333333333,3.118263333333333,1.839102,1.2592128571428571,3.119123333333333,3.348966666666667,1.5688316666666668,1.5412571428571429,2.812556666666667,2.678766,2.766723333333333,2.280925,2.05904,2.817825,2.250895,2.62538,3.3162,1.77002,3.41232,3.25396,6.73251,4.32745,1.6922125,3.42707,2.745495,2.278135,3.905695,2.747063333333333,2.72917,6.9793325,0.7888384615384615,0.6379941666666666,4.64344,1.390854,1.390854,3.594205,2.50845,4.968725,3.42322,1.3399433333333333,2.281694,2.91485,2.3869256666666665,5.2271,2.74345,2.767056666666667,2.70368,1.77137,1.77137,2.4219566666666665,3.78349,3.8858,5.88825,3.02371,5.10295,4.54781,6.83355,4.40342,2.20453,2.7577866666666666,2.64255,2.5665533333333332,0.70843,0.70843,0.70843,2.958215,4.762655,4.05813,1.228015,1.228015,5.16,6.19825,7.5417,22.279837,11.9586,8.07292,3.225185,5.86035,2.3946175,4.447245,2.8637766666666664,3.28354,4.1171,5.1816086666666665,1.97015,1.76289,6.51126,2.2932200000000003,2.2932200000000003,6.6083,3.985805,4.539205,1.76944,5.286425,4.900705,4.07656,5.1023,3.941465,2.00942,6.2839,9.54077,2.00942,1.76944,2.1479500000000002,0.9264300000000001,0.9264300000000001,1.743752,2.0483066666666665,1.743752,4.83672,6.0669,6.42215,9.58714,1.76944,11.4509445,6.10745,6.3304,2.3946175,3.85696,4.68095,9.368,3.065345833333333,3.889915,5.7129,3.454955,4.660745,6.11615,4.714275,5.1996,4.7442,2.65832,5.5523,3.77929,4.722885,4.207315,0.819305,1.55429,3.034015,5.5462,4.86054,2.819706666666667,2.0066475,4.070395,4.728015,5.7816,5.3656,5.3493,4.349005,3.71971,4.20065,3.615335,2.0333375,4.6494125,2.198305,2.65716,3.510425,1.9272266666666666,3.646235,4.486125,3.541205,3.69413,2.935325,6.585628333333333,0.9581066666666668,3.48096,3.512325,1.4929857142857144,5.799899,1.6642466666666669,1.6941733333333333,2.55408,2.8011135,3.3648000000000002,2.8465733333333336,2.0381675,0.7564927272727272,2.3889533333333333,2.461395,4.40547,0.7191792307692307,4.968396666666666,1.7064266666666665,1.0785040000000001,3.7200666666666664,1.0785040000000001,3.883325,0.9195818181818182,4.38076,3.3607666666666667,1.911455,4.313266,4.0614885,4.0614885,5.5338,2.607425,3.3810249999999997,2.6144633333333336,1.758832,3.772895,4.01892,1.88009,0.7686141666666666,7.448027564102564,2.64698,3.62061,4.13478,7.27794,2.837825,3.955555,3.579875,3.20782,3.910955,5.67625,6.154555,4.21616,5.3099,5.5896,2.9083466666666666,4.61499,4.050815,4.36682,1.1452666666666667,0.5183428571428571,3.1838,3.4409666666666667,2.947343333333333,5.7014,3.834895,4.370235,4.79247,4.81173,4.303075,4.2687,1.16151,2.249565,8.969355,2.358103333333333,2.1662233333333334,3.9656338095238093,11.944446607142856,1.5416375,5.1896,6.187,4.9376,3.300076666666667,2.3495933333333334,3.1821,3.847685,1.0449966666666668,3.3271833333333336,3.40791,0.40553,1.9431633333333334,4.9964,4.43652,2.261065,3.88255,3.286085,4.831508333333334,1.2209066666666668,0.5954927272727273,3.6106016666666667,1.1447114285714286,1.00670875,1.00670875,1.00670875,1.00670875,1.5720733333333332,2.9667999999999997,2.317633333333333,2.9333899999999997,5.76725,3.65,5.05515,3.74729,4.32484,3.258085,3.98253,1.4319199999999999,7.28566,2.487435,5.3662,5.317753333333334,4.78705,4.998891666666667,2.8610333333333333,2.5195000000000003,2.67849,3.989175,1.2744466666666667,5.276875,2.56673,4.95833,2.9849599999999996,2.41146,3.62373,3.517205,2.850035,2.547963333333333,2.5395233333333334,1.5037875,0.38123222222222225,4.61896,2.951935,4.186075,3.14917,3.94266,6.2652,4.68657,0.5441400000000001,3.3150759999999995,7.547199333333333,2.1065033333333334,2.12562,5.267666666666667,4.772695,2.63064,4.977425,5.07415,4.389395,4.32594,4.22982,5.0952,5.1075,4.9644,3.45821,5.4023115,1.6097560000000002,1.5724766666666667,4.465275,3.9618,4.31635,3.22292,5.3039,4.90654,3.848935,3.292425,16.07930752898163,1.3714985660781167,1.517625,2.4818704545454544,0.70588125,0.5892693333333334,1.6535875,0.3723705882352941,1.3928559999999999,3.1799766666666667,1.6015160000000002,1.1099833333333333,2.599758333333333,1.1066083333333332,2.599758333333333,2.599758333333333,1.1066083333333332,0.8974,0.7403785714285714,2.916005,2.616756666666667,3.642015,5.298,2.7666733333333333,2.74745,4.51825,4.89849,5.0021,3.171025,4.55033,0.7550857142857142,2.4548146666666666,8.627231666666667,4.76649,6.512311666666667,2.818745,3.99926,2.338905,4.958665,5.3368,3.021415,4.04208,2.555315,1.004815,4.302195,5.19805,1.14194,1.353898,1.5624,2.333223333333333,2.90173,4.65118,5.75165,2.2929575,2.2929575,3.539520833333333,6.87877,2.097046666666667,0.64771,0.7781571428571429,2.2479466666666665,3.6161666666666665,0.9411814285714285,0.9411814285714285,0.9411814285714285,0.37652846153846153,1.03175,3.0985,6.17235,3.8844999999999996,4.241649166666667,5.41145,1.0346899999999999,3.453666666666667,3.399366666666667,4.0069,5.8035,2.6600066666666664,7.538733333333333,5.10345,1.1700222222222223,3.972,1.591444,2.705365,2.1651366666666667,6.787095000000001,3.1701033333333335,4.663315,2.320565,3.896145,4.318805,4.572685,0.4125972222222222,3.1018966666666667,1.4086800000000002,2.698593333333333,4.231191333333333,2.1840366666666666,2.7201500000000003,2.24824,2.48471,2.39948,2.7750133333333333,2.8004833333333337,3.2193233333333335,1.6801480000000002,2.293433333333333,2.4293400000000003,2.7914733333333337,2.39797,2.0952825,1.7697766666666668,1.9548033333333334,1.8000825,3.17751,2.45308,2.56175,2.3037633333333334,2.3644166666666666,2.738326666666667,0.7699511111111111,0.7699511111111111,0.7699511111111111,2.5464766666666665,2.4187333333333334,2.9106400000000003,3.3122933333333333,2.6450366666666665,2.032363333333333,4.192205,3.0813699999999997,1.2689166666666667,2.56218,2.749416666666667,3.9860333333333333,1.5661,6.949331666666666,4.7838,3.237745,3.899955,3.955555,1.6803175,0.4679242857142857,2.916035,3.70322,3.9860333333333333,4.753605,4.37847,5.35235,2.8907833333333333,3.90242,4.243775,0.7565470000000001,2.78758,3.17866,5.286656666666667,4.480055,3.5671,2.95049,2.46556,2.5932833333333334,2.53554,0.6077391666666666,5.302695416666667,2.515575,4.36227,2.7772133333333335,3.7621149999999997,2.9258900000000003,2.38537,2.8603303333333336,2.8603303333333336,2.5133933333333336,2.0720633333333334,2.4672466666666666,1.9700666666666666,4.32287,1.40355,2.759145,3.87395,4.762825,3.82506,5.014,4.976255,2.42009,2.07096,3.276225,3.87391,2.726425,5.15525,2.87481,0.7687299999999999,0.7687299999999999,4.02694,3.989491,1.018256,4.686595,1.018256,4.106255,4.8302,4.93583,3.435875,3.24928,6.315255,4.388395833333333,6.3229,0.9193428571428571,0.9193428571428571,2.1596599999999997,4.671348333333333,1.5147483333333334,3.1566,3.889355,1.1000742857142858,4.759905,3.93452,5.91375,5.91375,1.29209,5.8641,5.44025,5.31205,6.4014,2.0587575,2.0587575,7.0648,1.0179454545454545,7.25005,1.8419925,6.1286775,2.74976,2.4378966666666666,3.452045,2.0773599999999997,2.1498766666666667,2.4441866666666665,3.011903333333333,2.6304476190476187,6.4103069999999995,1.8525839999999998,5.5064,3.17599,2.568846666666667,1.947405,2.255535,3.271905,3.31718,3.409095,2.61065,2.037425,2.18005,2.60154,1.16662,3.23764,2.040805,3.02137,2.098643,2.098643,2.993385,2.0685333333333333,3.664445,3.60263,5.3479,7.354416666666667,4.39152,3.311835,6.50024,1.9543566666666665,3.1599377777777775,2.1112866666666665,1.4988428571428571,1.7573825,4.174165,1.6088250000000002,0.500629375,0.6446766666666667,4.50104,4.73914,2.89274,0.9417288888888888,2.959095,2.7930833333333336,4.895245,2.05932,1.79921,1.1577555555555556,4.6627,2.36983,4.542655,0.703188,4.034015833333333,4.99862,4.293815,4.47299,3.39054,3.839955,3.1108466666666668,5.178,3.722855,2.36064,2.5339566666666666,6.037883333333333,6.7624675,0.6912175,4.275155,4.081365,5.1829,3.4185,3.6213333333333337,2.731125,3.4514333333333336,3.697533333333333,5.605665,2.678766,2.383349,3.602665,4.709365,2.344975,2.4386975,8.07371,4.623585,1.8983333333333334,5.09745,4.61486,1.8311620000000002,3.85043,1.4734875,1.8786142857142856,4.69571,4.186325,5.8471,3.1716800000000003,4.014095,4.636455,6.24205,4.41317,4.53957,4.11037,5.29705,4.39801,4.481375,1.160200076923077,1.160200076923077,8.79916,0.851705,1.9435449206349207,0.851705,0.8741416666666666,0.3549877777777778,2.8176865873015875,1.97572,0.6647471428571429,1.9435449206349207,1.943175,3.28238,2.1529394444444443,3.54897,4.605235,7.5329983333333335,2.58679,2.14843,2.79087,5.4045,5.658,2.307535,1.683315,1.00125,2.684565,4.042845,2.529965,4.40281,6.15597,0.44045388888888887,3.89359,0.724125,2.9170233333333333,2.401505,3.74701,1.2820833333333332,4.468835,4.5036075,4.433745,2.916865,4.05831,5.8611575,1.7938425,3.81386,0.7292861538461538,2.669185,2.589085,1.1058020000000002,2.9581733333333333,2.388193333333333,2.537453333333333,4.726705,8.960225000000001,3.4527042424242427,3.563725,4.222285,8.53543,5.483643333333333,3.4079333333333337,3.934555,3.596555,5.46975,5.02755,5.918,5.38635,5.6611,6.2658,3.2489000000000003,1.6542275,1.9565566666666667,2.26375,4.13177,2.37588,0.2827,0.2827,0.2827,29.972910666666667,0.2827,2.744825,0.2827,0.2827,0.2827,3.516256666666667,4.49948,0.2827,0.2827,0.2827,0.2827,0.2827,3.91818,5.19945,3.367585,0.3556102564102564,0.3556102564102564,4.531106666666666,4.397146333333334,4.139528333333334,3.120777111111111,4.129232380952381,8.160766666666667,11.237536585470083,6.182789333333333,7.864787333333333,7.301643142857143,2.77721,6.18202,4.241278333333334,4.446713044871795,0.3556102564102564,7.8947519999999995,6.722468285714285,7.036373333333334,3.139475,8.810445142857143,15.71681380952381,18.85368065018315,58.13738415247498,119.37755066505962,1.4012916666666666,3.3283233333333335,3.234675,3.9750939047619047,0.3556102564102564,1.6785017948717948,8.300413958333333,14.79815855952381,20.134698333333333,49.126500219089394,13.19592680952381,2.93245,0.33300620689655175,0.33300620689655175,4.479706666666667,2.7637366666666665,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,0.33300620689655175,10.6838,0.33300620689655175,0.33300620689655175,0.33300620689655175,2.92905,2.0145566666666666,3.63634,3.548085,4.178105,5.2006,2.57045,4.46523,4.233715,3.071235,1.4722,3.394995,0.97989,2.351835,2.504253333333333,5.47474,6.046633333333333,2.5593766666666666,6.027525499999999,0.395625,0.5403426666666667,2.4877833333333332,3.0074466666666666,3.074515,4.763765,3.342833333333333,7.42649625,3.683535,3.10156,3.13058,4.193505,4.036625,3.07635,5.1843,2.97628,0.46366153846153846,0.8611981818181818,4.377985,1.8320075,3.458755,3.805885,4.518605,3.368625,2.503775,2.845265,0.5738946666666667,0.745668,4.10924,2.53602,4.71036,4.017875,4.429315,3.35907,2.7992,5.35085,5.6245,3.151655,0.9038172727272727,3.7369333333333334,5.18065,2.295885,0.928065,1.80202,3.8661,5.97865,1.727565,3.082095,4.391855,5.9424,2.463815,2.4909066666666666,2.26283,4.31322,2.183005,3.755795,0.68652,2.60325,3.290335,1.82551,5.9640949999999995,4.448725,4.53678,5.27695,2.90832,2.04329,0.5369127272727273,5.5405,4.10492,5.81975,3.08128,6.13185,5.075,2.856535,2.3339058333333336,1.2987471428571429,5.7015,1.75254,2.68648,9.02899,4.428475,5.3828,3.362675,0.9575877777777778,3.124,1.1045014285714285,3.30882,6.4505,5.18145,5.16055,3.655325,5.518,4.41983,1.8005,1.7647233333333334,5.21685,3.0492966666666668,3.3936666666666664,2.28935,5.09,4.41154,1.4599866666666665,3.499233333333333,2.85897,2.729145,3.986175,9.08769,4.77823,1.6982275,4.47512,6.28841,4.74009,4.03254,4.19184,3.702005,4.60685,7.43234,2.4894666666666665,3.083015,4.26484,4.421015,3.13954,3.173955,5.12225,3.73463,3.235885,4.022597333333334,18.191686,2.69552,2.2338400000000003,3.2397899999999997,5.8825009999999995,1.0419575,4.43391,2.0491333333333333,4.99363,1.3977166666666667,4.322405,4.422745,4.10682,1.04038875,4.589075,4.715675,1.7120375,5.164741742424242,4.16247,1.2028228571428572,3.600745,2.13353,2.52521,1.660915,4.164705,3.73454,4.454495,3.534585,3.0520333333333336,4.33024,7.693548333333334,4.413685,4.974725,4.96324,3.19873,4.27701,5.01505,6.683636,1.068284,1.068284,4.36132,4.45115,2.1506633333333336,1.5059483333333334,7.11933,4.107865,3.93313,4.224595,4.572255,4.43635,3.51886,3.749375,6.370783,4.25028,4.49059,5.1631,1.4630857142857143,2.7964,4.75469,5.23305,3.596085,0.21040722222222222,1.4825125,2.0523675,2.4248266666666667,2.0840466666666666,1.033148888888889,1.189185,1.3687775,2.779056666666667,0.6479522222222223,1.3363885714285715,2.0872075,3.763775,3.8415,2.66468,2.7879466666666666,3.1102900000000004,2.67582,0.693396,0.9809175,3.00077,4.657035,4.211925,4.08314,3.919185,4.48897,5.09715,2.2480599999999997,4.31042,5.2066,4.70343,6.462664999999999,4.25453,0.45433352941176475,5.74165,4.59562,4.708035,5.5523,3.424515,2.04326,4.284045,4.245215,2.73796,5.250280833333333,4.44896,1.412755,5.250280833333333,4.316115,6.6392125,3.91088,1.265011111111111,4.044255,4.998955,4.34627,2.633246666666667,5.22575,1.5804525,1.900425,4.75389,3.56046,0.7801611111111111,4.689115,5.03845,3.67134,4.32964,3.3716000000000004,3.4811666666666667,1.7644279999999999,2.0273325,3.10818,4.1046,3.6726666666666667,2.419486666666667,2.65805,2.262039,5.2041,1.7556571428571428,0.8223833333333332,6.78788,4.36052,1.6083539999999998,2.8783499999999997,2.48737,3.393166666666667,6.83488,2.4650299999999996,0.880044,2.43718,4.75454,2.396673333333333,4.2669,6.10095,5.43385,4.776955,4.368585,5.15525,2.2971733333333333,2.2126433333333333,1.7485600000000001,2.13842,1.8470825,2.856403333333333,2.2564566666666668,1.7908075,2.71553,3.00094,3.94643,6.47315,5.65095,4.19124,4.96102,3.87991,3.820915,4.83319,0.867065,2.5943,5.5223,1.16758,0.75512,5.1549,3.56552,2.4949966666666668,3.483485,5.8459425,5.19345,0.988027,1.2727242857142858,0.7004066666666666,4.155509166666667,2.2718599999999998,2.8555233333333336,1.2371514285714285,3.2968533333333334,2.5314533333333333,5.737,5.0362,4.416315,5.28855,3.90621,1.3016866666666667,3.5184,1.6801933333333334,3.370565,4.05157,3.60752,2.90054,3.4700666666666664,2.78797,5.99025,3.738845,3.078835,2.766,8.91742,10.32159,4.52078,1.2093314285714285,5.46655,4.29223,5.30025,4.43079,3.916535,3.868835,3.4364,4.08183,3.6489486458333333,4.93618,3.80986,3.760265,4.53371,1.838988,4.95459,5.7569,4.88068,3.3275,3.0502475000000002,6.6859,0.7294383333333333,2.79978,2.6982366666666664,2.271173333333333,5.00065,3.67996,1.18497,4.38402,3.626533333333333,3.60415,4.82002,3.7317508333333334,6.3875,3.107613333333333,2.8791333333333333,3.1034966666666666,3.2227433333333333,4.348145,2.3223733333333336,2.1709666666666667,3.22535,3.9419,3.3434637499999997,1.872285,1.45689,3.561893214285714,3.1250315000000004,0.9801411111111111,2.284135,2.284135,1.3252175,5.64475,2.78454,3.151715,3.6127,3.690555,3.48391,3.48502,3.028755,2.828385,1.9922033333333333,0.5677646666666667,3.12804,6.07463,2.966045,3.5332,3.10679,4.084005,3.960775,3.062215,3.07174,3.7031,3.545725,3.177265,2.79342,3.303225,2.4182966666666665,3.98527,3.888,8.50163,3.25435,3.699365,3.067255,3.85451,4.045505,3.620405,2.435735,3.619965,2.5712775,2.82573,3.238405,3.16184,3.80392,1.8129133333333334,1.8129133333333334,2.32806,3.09019,3.242005,1.573284,2.41684,3.13226,1.9445139999999999,2.700615,1.573284,3.783975,2.8612,3.80640775,2.76374,3.6326,2.25353,3.516715,3.76821,4.588825,3.677455,4.02236,3.61167,3.989065,3.419025,2.949135,2.99756,2.87348,3.663565,2.668093333333333,3.708675,5.25705,4.171225,3.56378,0.34311608695652174,3.502385,0.4439341666666667,3.7476,3.487855,2.848175,3.790175,3.94519,5.70058,3.01988,2.521523333333333,2.2944633333333333,2.680616666666667,0.823658,5.744086666666667,3.24789,3.246835,4.192765,2.01803,2.633235,3.171325,3.08492,6.27851,4.243645,4.842005,4.80619,4.63483,4.530265,3.454965,1.4555716666666667,1.6316320000000002,3.96501,4.752835,5.6848325,2.0828933333333333,4.424755,2.112385,3.698,3.62315,1.850335238095238,3.97562,4.73331,3.6468666666666665,3.8898333333333333,3.3657333333333335,4.336585,5.0432,3.5381,4.23722,4.56729,5.1098,4.14473,4.383185,3.4572,3.437975,4.6597,2.59995,3.1466333333333334,3.1466333333333334,4.32597,2.706106666666667,4.009685,2.571,4.587635,3.3339666666666665,3.49435,2.01142,1.8292233333333332,1.1729616666666667,1.1729616666666667,1.729888,3.4761666666666664,1.7014266666666666,3.0182266666666666,4.26723,5.402909,3.3643666666666667,5.0804,5.72468,2.524365,2.68747,3.0226100000000002,1.6005500000000001,4.67079,4.53811,6.145285,1.7685866666666668,5.56005,5.7114,3.167456666666667,3.445685,4.022735,6.35193,2.1614299999999997,2.535875,3.79665,0.46666714285714284,4.60781,4.108785,4.845725,4.46744,3.91743,1.616658,1.876724,3.761565,4.213905,2.3749833333333332,3.616965,4.5368,4.63649,1.2973,3.97514,3.86466,3.790315,5.1171,2.848546666666667,5.5182649999999995,3.68058,1.517264,3.64057,1.2596483333333335,2.8135966666666667,7.554353333333333,3.04053,0.7349254545454545,3.654675,4.70915,4.33432,2.07922,2.07922,4.823243333333333,5.9024,2.96283,0.4938266666666667,1.92898,4.270995,4.447575,4.231845,1.762038,2.9911366666666663,3.38519,1.1939217763157894,1.1939217763157894,1.1939217763157894,0.7906396929824561,1.4579413596491226,0.6673016666666666,1.1939217763157894,0.7906396929824561,0.29362052631578944,0.9609221929824561,0.29362052631578944,0.4970191666666666,0.4970191666666666,0.4970191666666666,0.4970191666666666,1.2113046666666665,1.3569,2.3956633333333333,2.335046666666667,1.117485,6.229833333333334,2.675933333333333,5.37781,2.17279,4.20596,3.18071,3.243595,2.7644816666666667,5.0028,2.8299266666666667,4.198815,4.123,5.0298,2.3598225,4.09415,5.0131,3.958705,3.213355,5.0185,3.19836,4.381815,5.3811,5.1369,5.9612,4.84024,1.3372375,2.97551,3.78912,3.03211,14.266494999999999,4.910355,5.42725,2.7463433333333334,7.41636,4.049375,3.703145,4.426655,3.09932,1.0553375,2.64015,4.059625,4.18139,3.67497,3.40574,4.05131,2.85548,4.304955,4.742565,4.02905,6.6167783333333325,8.130531666666666,1.462,3.50804,4.15044,4.157815,3.682855,3.594605,6.68374,2.559955,2.69142,2.468765,3.894995,3.77715,4.95664,2.621815,1.716255,0.831434,4.8671,4.158525,4.149195,3.972685,3.74655,5.07745,4.457815,6.7382,5.6373,4.72603,5.76875,4.520225,3.123,3.200365,3.355815,1.8743675,5.14685,6.5575,6.5805,6.24431,6.24431,2.295255,1.8743675,1.96655,3.14499,0.7339600000000001,1.648505,0.914545,1.704215,3.2329,0.433983,3.1715,3.92657,1.704215,3.206537,10.91539,6.535947500000001,2.3141933333333333,1.06351,1.8304566666666666,4.770495,4.356605,6.283765476190476,1.92696,2.32069,3.94952,3.97677,4.77617,2.1203366666666668,5.2481,3.7662999999999998,3.592335,5.10025,7.028666,4.09103,2.3923975,2.691126666666667,1.8108833333333332,4.078625,5.789680000000001,1.52647,5.33325,4.25956,6.1345149999999995,0.5539893333333333,5.005256666666667,3.81705,4.75257,2.560835,2.80521,6.54445,9.373716666666667,5.034,2.2462666666666666,2.2462666666666666,2.2462666666666666,6.1308,4.81827,4.358355,3.118525,2.868935,2.6178176315789474,3.956955,5.1784,2.552445,2.00434,2.552445,7.328374999999999,4.455503333333334,4.5914271428571425,6.7631,4.5914271428571425,4.5914271428571425,3.413237142857143,6.26558,5.800307,3.222922,3.222922,2.474205,4.210625,2.832875,3.5061,5.898425,5.898425,5.898425,7.07702,3.42348,3.33415,3.53578,3.37322,1.264475,6.994713333333333,2.53921,4.571395,3.22518,12.907681333333333,4.59239,5.545265,6.92907,2.653138333333333,3.327425,1.1318066666666666,5.545265,3.4882,1.581465,1.581465,3.16275,4.968355833333333,1.7106325,4.477196666666666,0.790343,1.4229633333333334,0.790343,1.9141225,2.5009755,4.882463,3.306985,1.4229633333333334,3.092825,4.7289925,1.1133925,3.45472,4.408315,2.22305,4.346988333333333,2.423985,2.93721,2.9455,0.9312340000000001,3.71001,3.017075,1.94956,1.3273466666666667,2.7498966666666664,3.60205,2.739525,3.55263,1.3011066666666666,1.3011066666666666,1.3011066666666666,3.43556,2.5777,2.5777,2.762955,3.497205,2.3482833333333333,1.2034025,1.2034025,2.551615,4.3311025,0.8114725,1.567,2.850205,1.2876616666666667,2.854661666666667,0.9312340000000001,0.9312340000000001,1.9148566666666667,0.9312340000000001,3.3262583333333335,0.69419,3.3262583333333335,5.712469166666667,3.236285,2.3585866666666666,1.6855680555555557,0.682585,2.3681530555555557,3.717155,2.3681530555555557,0.9451055555555556,3.024165,3.96305,3.88561,3.829155,2.720595,3.660265,2.0048733333333333,0.9581705555555555,0.550385,0.9581705555555555,0.40778555555555557,0.9581705555555555,0.9581705555555555,4.509795,4.64254,6.48245,3.438655,4.550355,4.854895,5.2964,3.47673,4.392735,1.2324428571428572,3.250586666666667,3.8476216666666665,3.826095,1.44634,2.9004100000000004,4.28955,3.77334,4.040095,4.1382,3.74587,3.84982,3.26134,4.674495,2.4893266666666665,6.00435,3.65132,3.963125,5.383373571428571,1.1395165714285713,2.268485,3.457045,7.14001,4.69097,4.047825,3.07015,4.41272,8.0558,3.6495333333333337,2.94796,3.4421999999999997,5.95845,4.036055,5.41975,5.27155,5.1942,3.08429,5.41115,4.56245,3.4039333333333333,7.1405650000000005,3.0686633333333333,2.2355225,1.9517166666666668,4.85912,6.553,5.58145,5.9332,4.12749,4.57125,5.9437,0.5141461538461539,7.44406,3.839205,4.22012,3.781275,4.86748,4.118725,3.0354566666666667,2.60075,1.3677766666666666,0.5769153846153846,1.895634,2.947226666666667,4.224245,3.6467,4.950605,3.786345,11.064168333333335,3.742565,3.785015,2.929605,0.7390249999999999,5.891123333333334,2.918646666666667,1.5238233333333333,4.44247,5.454566666666667,2.53592,8.25287,4.76182,3.662666,3.662666,3.662666,4.92415,8.62833,3.36062,3.2616,3.2616,3.475015,9.3914,1.0538675,5.46505,4.648445,4.08416,2.738113333333333,2.1659866666666665,4.513325,3.94377,6.439,5.699226666666666,3.81632,2.77413,3.75724,4.2242475,3.5489625,1.4256,3.3663666666666665,6.12027,3.4812375,5.15505,0.9681025,3.736966666666667,2.46642,2.5637166666666666,1.7858,1.7493100000000001,2.1228000000000002,6.43085,2.20585,4.160845,5.98325,1.8525839999999998,4.595695,3.796985,4.78196,2.5820266666666667,2.372445,2.82413,3.891785,3.8258258333333335,3.8258258333333335,1.1952375,1.5613133333333333,2.861273333333333,4.304328666666667,2.2465769090909093,4.789329333333333,1.714106,2.695743333333333,2.0708166666666665,1.83216,1.83216,5.13365,7.298018333333332,2.06433,2.977453333333333,2.2593525,6.18685,3.088895,0.77416,2.8572,0.77416,2.99992,3.538135,4.617955,6.22895,3.6779,4.907344999999999,5.8198,2.44437,1.9136633333333333,2.802403333333333,2.1393833333333334,6.30325,4.12385,2.60472,4.225485,2.77758,4.494375,1.1121775,1.109234,1.9164766666666668,1.50004,2.5123133333333336,2.6518533333333334,2.2197666666666667,3.5372,2.63725,4.573985,2.5307133333333334,2.68225,2.7334633333333334,2.3026933333333335,2.8466799999999997,2.65251,1.8956633333333333,2.46362,3.516205,4.44363,3.54456,4.07408,2.9039533333333334,2.1591125,2.1254725,1.3956983333333335,0.33755799999999997,0.17853152173913045,2.0786933333333333,2.3202266666666667,0.17853152173913045,4.650225688405797,2.33095,0.17853152173913045,6.031744930555556,2.5324850000000003,6.12754,3.310455,3.6743666666666663,2.1040233333333336,2.9008266666666667,2.2507775,4.35852,3.3047866666666668,3.11279,0.4440289473684211,3.953968333333333,2.561578947368421,2.715775,1.826865,2.582575,4.042855,2.597815,7.94993,4.98133,3.739115,3.60005,6.05858,5.26385,1.74775,3.9491941666666666,2.080335,1.84089,6.03304,8.72374,1.2538733333333334,1.982,3.51191,2.574865,2.895545,3.042645,2.841705,4.26532,2.384485,3.08306,3.47864,3.17399,7.46867,1.4850633333333334,2.10223,2.942,3.20536,1.7396200000000002,3.281045,1.57019,3.611945,3.459645,7.11859,3.359015,8.7652375,3.63071,1.59359,1.7663666666666666,2.9615,5.26754,1.5861725,1.5732466666666667,5.6441,3.480715,3.94092,2.506025,2.03004,3.052045,10.239675,4.29092,6.388,3.42328,2.158435,2.050875,2.40652,3.120305,3.57932,1.781,1.4903766666666665,2.43831,3.506935,1.705725,3.20801,2.622735,4.30031,3.57044,3.10989,1.4738566666666666,2.56655,1.3251600000000001,1.3362859999999999,1.668305,3.34827,3.573185,3.65909,2.339935,3.649865,3.88146,2.94693,1.4091879999999999,3.40882,3.6062775,3.18458,1.77198,2.95273,3.43614,1.3705975,3.4252,1.6676166666666665,3.804525,3.97648,5.4871,2.630995,3.67117,1.79449,4.15763,4.98707,1.781185,1.092842857142857,4.148499999999999,2.28245,4.617415,4.046635,3.071755,4.550595,4.4796,1.8709533333333335,5.5239,5.2622925,6.5647,4.71556,6.6073303333333335,3.68372,1.7065333333333335,2.6491700000000002,4.8926,4.761495,3.0264133333333336,7.341914,1.2913757142857143,3.6184333333333334,2.120975,1.733258,2.3048366666666666,2.7503166666666665,0.4152221428571429,2.3370466666666667,3.161433333333333,3.68254,2.59991,3.3269566666666663,2.1244533333333333,2.5026433333333333,2.2174675,8.965515,5.0652,1.5323639999999998,4.908665,2.5097312173913044,0.6790854102564103,2.726046666666667,8.144934666666666,1.7020700000000002,4.5037,6.6510283333333335,1.602545,1.572495,1.4513,5.2566,3.19834,4.495285,4.0991025,2.4169966666666665,3.85239,1.3007440000000001,3.1153506666666666,4.381535,4.069525,4.855165,2.7802,4.621235,4.74106,5.1382,5.468,5.91195,4.92608,4.34698,4.55973,1.664082,1.9154175,2.991865,3.372065,1.2501777777777778,4.41161,2.5036366666666665,2.9303666666666666,4.088065,3.25841,2.7712233333333334,1.6631333333333334,3.3189566666666668,2.7192075000000004,2.8706099999999997,2.8948733333333334,2.008226666666667,1.9957175,2.3555,4.371665,4.166435,3.97811,4.33937,3.467285,2.12545,3.06756,4.983645,3.7443666666666666,4.628725,4.26955,2.210775,4.454741666666667,1.7567766666666669,4.21536,5.172005833333333,6.197838690476191,4.3851,4.29153,5.5855,3.3756,4.189911666666667,4.69939,3.34619,3.9091595000000003,3.44092,1.369365,3.221285,1.713225,2.142175,4.527615,5.391305,3.9091595000000003,4.26097,3.32911,1.5147483333333334,3.745115,2.050335,2.747063333333333,2.114705,2.74334,1.6398713636363635,1.6398713636363635,1.6398713636363635,0.5576063636363636,0.7894122222222222,2.1308422222222223,1.1351075,3.39299,1.1913233333333333,4.105425,5.0657,4.71692,3.289195,4.083575,3.250315,4.82512,1.6412425,2.970115,2.408285,3.194165,5.749768,4.132065,5.22145,3.98143,1.0009975,2.22917,1.4158366666666666,3.65642,3.89791,4.120375,5.9294,4.589415,4.80598,5.27265,4.193675,1.78488,1.3855366666666666,5.577843333333334,0.9818455555555556,1.2918633333333334,2.892076666666666,8.27789,2.98785,3.59763,3.620545,5.4823925,1.6230425,0.9844383333333333,1.5091475,3.172125,3.38342,3.983505,3.66804,1.89048,6.591165,3.0473866666666667,1.06294125,5.1707,2.89879,2.7394133333333333,2.3147233333333332,3.6074333333333333,5.93062,2.9776900000000004,3.2644333333333333,3.5591666666666666,3.0179066666666667,3.139886666666667,2.8987133333333333,2.820385,1.92817,5.6424,4.77744,4.522625,1.0489388888888889,0.7189949999999999,3.648066666666667,2.3440166666666666,1.10948625,2.77788625,4.90672,5.03685,7.009259999999999,4.85657,3.6733,1.575064,3.445905,3.729605,2.8763666666666663,2.5963834285714285,4.191125,2.8465900000000004,4.802977333333334,0.86846,5.75715,1.592474,4.574725,4.42078,1.922575,0.8867225,2.845025,0.40713800000000006,3.421045,6.3969,5.84085,2.92126,1.418792,3.6161,0.76606,2.38862,0.76606,3.949635,4.48659,1.29917,2.1055775,5.147606666666666,1.8038566666666667,3.80905,4.23887,3.87059,1.154066,1.60882,3.981285,4.87875,4.98264,2.938136,2.07851,3.12235,1.62135,2.56675,1.6934525,1.9601825,3.473575,1.342888888888889,1.342888888888889,3.740225,4.9877,8.05415,4.95857,8.70257,2.13267,3.726975,4.00002,1.6786666666666665,3.6994075000000004,4.182785,3.364365,6.271,2.867205,2.51295,2.944236666666667,3.864685,1.08212625,3.969295,4.61441,1.3070433333333333,8.356273333333334,2.668625,2.934655,3.0180133333333337,4.04467,4.42201,4.117852916666666,2.6084166666666664,2.707606666666667,2.07804,3.6761666666666666,2.449215,2.19743,8.085380666666666,3.530533333333333,3.175473333333333,4.09635,22.93856377838828,0.68568,2.919105,4.473745,4.803375,8.38324,4.77158,4.182525,4.47688,7.698588333333333,3.487825,1.7047866666666665,4.998901666666667,3.535935,1.086374,1.086374,1.086374,2.33424625,1.69997,3.296165,1.5415675,2.926095,1.6708266666666667,2.449285,2.55367,2.81802,1.5415675,3.13162,2.497785,4.31639,4.960126666666667,5.06795,0.7924541666666666,3.35822,2.5638,5.1783,3.80813,2.726115,2.0953425,1.69963,1.920855,1.416962,3.7834,1.5533325,4.989205,11.400366666666667,2.9423600000000003,2.411005,4.890943333333333,2.9466666666666668,4.391033333333334,6.05745,2.11755,5.483643333333333,4.453265,0.9442383333333333,1.1544785714285715,6.530969,4.16147,1.9175475,3.84336,1.95349,4.95722,4.87007,4.77571,4.054215,1.334407142857143,4.132515,5.04575,4.73043,5.984698,3.802865,5.581,4.89843,3.968885,4.97982,3.219806666666667,4.688715,1.668095,3.645735,3.17345,3.53011,3.862695,6.27955,4.532245,2.445256666666667,3.3564333333333334,8.84356,4.81853,3.1380933333333334,3.572445,3.345625,4.51809,4.268035,4.70179,7.250661666666667,3.79121,2.7269900000000002,4.661561666666667,2.407275,4.689785,3.1144166666666666,6.5173925,1.6080916666666667,4.554455,4.35154,12.1488125,0.47093714285714283,4.75816,4.83685,0.6653685714285714,3.76586,4.16331,4.38662,1.02128,4.976465,4.77192,2.65231,10.002975000000001,3.3533000000000004,1.74589,2.316465,4.10147,5.9577,0.5544183333333333,3.79048,2.06023,4.80176,0.7598823076923077,3.98352,5.80225,5.72735,3.535375,6.527715,4.18523,3.6484625,2.48773,2.838896666666667,4.29801,5.10175,5.35625,5.2236,5.2867,3.2083600000000003,7.023475,2.9928,3.5194955,2.18601,3.649405,2.7667,1.5431033333333335,3.3565666666666663,3.4448000000000003,3.0559933333333333,3.8481666666666663,3.533333333333333,3.3836333333333335,2.7043233333333334,5.63175,3.255183333333333,3.63698,5.26485,2.6234433333333333,1.0660166666666668,3.448733333333333,3.0586933333333337,3.86449,3.4732000000000003,3.2149133333333335,4.687566666666667,1.9537566666666668,1.6282275,2.76528,3.72864,4.41788,1.09787,4.507835,3.07891,4.162766666666667,3.1811966666666667,5.2121625,4.209795,3.1223,3.69132,2.21186,3.857735,0.6744375,4.496235,5.16765,16.701945454545456,3.4349333333333334,1.0617566666666667,4.892395,0.64756,2.61985,4.42885,1.963405,1.35773,3.657225,4.58375,3.4775666666666667,0.7941933333333333,2.77298,7.57466,3.881705,6.0595,4.41503,4.38075,2.8982200000000002,3.6214666666666666,3.355066666666667,7.145248333333333,3.84194,5.4821,2.386235,0.44560888888888894,2.26836,3.303905,1.963125,2.359465,4.22268,2.7809500000000003,5.169,0.7094416666666666,4.79152,3.58207,3.137335,1.2387566666666667,2.6845966666666663,2.0476033333333334,4.910565,3.768705,2.16084,1.6875142857142857,3.838015,4.98243,4.99901,6.011101666666667,2.153826666666667,5.28765,4.906075,4.56731,2.2563,4.86269,6.25638,5.16905,2.69472,4.893905,2.74766,2.93614,3.9855,4.156115,1.387795,4.55813,3.209016666666667,2.9735366666666665,5.194143333333334,5.194143333333334,5.10335,1.7894919999999999,4.92646,0.99702875,1.821048,4.72223,2.52821,1.4541533333333332,3.172416666666667,0.878776,4.195333333333333,5.0677,2.94568,4.740815,4.00204,3.712905,5.66141,3.24414,3.2906433333333336,2.8834866666666668,2.4092366666666667,2.68995,2.8307033333333336,4.902685,1.4342123076923077,3.0342066666666665,4.35177,4.98759,2.331470416666667,4.184445,4.67475,4.973916666666667,3.4303000000000003,5.24095,5.14335,5.35055,4.9328,3.848955,3.35127,3.542035,5.0063,5.7436,4.95762,4.96854,4.671585,4.63574,0.7323683333333334,4.93681,5.1408,4.197265,6.932815,4.411615,4.350765,4.49227,4.47395,3.70305,3.764435,2.1933237500000002,4.483155,2.1419325,1.3695957142857142,4.090445,2.106666666666667,2.4816933333333333,3.4589933333333334,3.2177133333333336,3.442855,1.8050033333333333,2.1382675,3.9573,3.90612,1.88092,1.88092,4.19349,1.935772,3.0907766666666667,4.51057,3.47537,3.48506,1.6292166666666665,2.126235,3.505805,1.935435,4.13109,4.51245,4.35891,4.083905,8.173200000000001,2.599125,3.662035,4.650735,4.18396,3.11035,4.19829,4.198185,4.518885,2.124355,2.7451833333333333,4.75581,4.02227,3.764225,4.27917,1.7698125,3.58542,4.748235,4.602365,4.37649,3.6375625,3.6375625,3.4381775,4.357065,4.77281,4.22415,1.75773,8.1318,3.880315,5.22575,4.29411,4.2528,4.75309,5.2805,4.23264,4.680795,3.352235,5.127,2.06212,5.13685,5.884631111111111,5.20895,0.774939,4.7041275,1.13442,5.1651,4.565515,4.923165,4.492905,5.3645,3.541933333333333,3.541933333333333,0.872725,2.1526175,5.27005,3.275565,4.243725,4.252195,5.17585,3.25039,4.297015,1.3452816666666667,3.21913,1.60572,1.2267275,4.592415333333333,0.8489639999999999,2.7143433333333333,3.22697,1.24428,2.2063625,2.6805566666666665,1.2576683333333334,6.0307,1.6207275,2.2946966666666664,4.359215,2.37725,2.9754400000000003,4.37239,4.762725,2.42897,3.0366466666666665,3.8533000000000004,1.653098,2.155600833333333,4.755875,0.6218271428571428,2.56521,2.795113333333333,3.29156,2.921526666666667,1.3796542857142857,0.8598833333333333,2.3538166666666664,4.24397,1.3455300000000001,2.0421,1.2055,5.9541941666666665,2.2023275,4.541125,4.80251,4.36064,4.89205,5.2676,4.243665,4.2771,1.5007616666666665,3.746033333333333,1.868054,2.62076,1.1435328571428571,4.39918,2.3165725,5.998123,3.85911,3.705925,1.516514,7.01985,5.0048,1.478345,4.07561,3.002555,3.76434,3.737455,1.93413,1.93413,3.5022,1.4332566666666666,1.4332566666666666,2.2563,2.5669,2.0952825,1.2689166666666667,3.5538000000000003,1.0752475,3.0558866666666664,2.48355,1.9977175,1.5346966666666668,2.273705,2.3040875,0.27453,2.4437175,1.1255616666666668,2.3612266666666666,2.0708166666666665,2.42009,1.0531855555555554,1.16662,3.7808333333333333,2.9633933333333338,1.93413,1.8320075,1.5507233333333332,2.5214933333333334,2.544496666666667,1.8676860000000002,2.50623,1.10185,3.3059933333333333,2.93914,2.41827,1.45645,1.13602,2.6873,1.13602,2.6873,0.63235625,0.63235625,0.4820744444444444,2.3033975,2.3630066666666667,0.63235625,2.234365,2.350023333333333,2.2261275,1.8000825,0.7699511111111111,0.63235625,0.63235625,1.6187719999999999,1.6187719999999999,2.0796275,1.8320075,0.63235625,2.34564,0.4565484615384615,3.0008366666666664,1.8776633333333335,2.958576666666667,2.65076,2.65076,0.377935,0.377935,2.2563,1.92117,2.21726,2.00486,0.377935,3.6970666666666667,2.60895,1.675404,0.61585875,1.675404,0.61585875,8.44714,2.269233333333333,3.928266666666667,2.6194,3.1680466666666667,2.9736100000000003,2.8136799999999997,3.1796166666666665,2.1862075,1.76232,2.78302,3.6495333333333337,2.3665333333333334,1.6187719999999999,2.418228571428571,2.418228571428571,2.7129,2.3089775,4.219915,2.3465866666666666,3.3857666666666666,2.66504,1.62018,2.3789825,2.43534,0.8149272727272727,1.5235875,3.449005,1.8962379999999999,3.2188833333333338,2.6246933333333335,2.6168,3.7106999999999997,1.5763983333333333,3.4445,3.32827,4.162733333333334,1.3000019999999999,0.33300620689655175,1.2917828571428571,1.2917828571428571,1.0839122222222222,3.1896833333333334,4.0069,2.6622266666666667,2.13099,2.13099,2.1164275,1.6676166666666665,1.04528,1.6635466666666667,1.6635466666666667,0.63235625,2.2563,2.7662666666666667,3.6290666666666667,2.48355,2.12864,2.12864,2.12864,1.0675233333333334,1.4988428571428571,1.4988428571428571,2.417065,3.3538333333333337,2.6886229482323234,4.377185,2.5387,2.5510566666666668,3.61592,3.90938,7.3572299999999995,4.224875,4.15146,3.8338,13.1246475,4.64454,3.620335,0.9554675,3.944435,3.059635,2.37631,3.702815,5.1855,8.722638,6.4587,0.4913882352941177,4.187235,2.868385,4.316275,2.507325,4.416425,4.13061,4.454665,7.8969000000000005,3.44858,3.89713,3.75578,3.3781427272727274,7.927575282051282,3.2796466666666664,2.58273,3.80033,3.826375,4.605635,4.18394,6.462873,5.2122,1.344632,4.52423,0.86098625,4.94381,5.3518,4.08777,4.38144,5.8181,3.198125,5.38155,4.0322,8.81842,3.972995,5.031966000000001,3.8226999999999998,4.88051,2.90983,0.835295,0.835295,3.467295,4.05097,2.07805,2.120535,3.980805,4.064225,3.70485,2.041505,2.403485,3.339185,2.709443333333333,1.2047175,4.055165,4.74887,8.96347,1.919624,4.014775,4.01033,4.00234,3.00712,7.64377,4.240635,3.5825,2.9504633333333334,3.89555,3.7129,3.2573933333333334,3.02529,3.820465,3.76523,4.531975,4.28753,0.3897273333333333,1.4583633333333335,2.35566,1.7073675,4.82998,3.86894,2.5338966666666667,2.3972275,4.345675,3.89676225,2.2286275,2.661945,0.909262,2.280895,2.421953333333333,2.421953333333333,5.4123,1.9443525,2.970993333333333,2.2713933333333336,2.081116666666667,1.80016,3.20874,4.39111,4.356,4.63097,5.1147,4.861125,2.90322,2.71811,1.96894,4.84405,5.70285,2.4819466666666665,2.9900533333333335,2.08407,2.9221866666666667,4.105883333333333,2.65942,5.1108,3.66816,3.42889,4.706915,2.92566,3.582035,4.422835,2.3885066666666668,2.3225633333333335,0.41246214285714283,3.377266666666667,2.60793,3.45423,5.66165,4.68004,6.1416474999999995,2.1071625,1.634565,2.91499,5.31505,6.07205,5.3603,3.4504333333333332,2.2518333333333334,3.66025,2.4988633333333334,4.297245,2.31587,2.11446,5.3976,5.1177,5.2112,1.7985175,1.9031625,1.097712,1.097712,1.092164,0.9211157142857143,0.706286,1.8863077142857143,4.1371,11.515561666666667,3.98219,4.4264,4.079795,5.974857500000001,2.64394,1.6600933333333332,3.5632949999999997,3.02577,4.17075,2.5876466666666667,2.6455366666666666,3.12284,3.24883,2.5263733333333334,3.4653666666666667,3.037506666666667,3.001393333333333,3.5643999999999996,3.562333333333333,3.0187866666666667,3.0549700000000004,3.3369,2.6680766666666664,3.024566666666667,3.1377066666666664,2.812656666666667,3.6724,2.20848,5.34476619047619,3.285496666666667,4.429295333333334,3.2521166666666663,3.2482966666666666,3.6903,2.89275,2.8083333333333336,3.1832666666666665,3.27244,3.6127333333333334,3.2035733333333334,1.8964675,2.7473899999999998,2.7440366666666667,3.02205,3.02205,3.2866133333333334,3.4921333333333333,2.71862,2.6373599999999997,3.3348666666666666,4.296966666666667,2.70978,2.744375,2.79913,2.83189,4.667914166666666,5.04735,1.6899,3.4274,3.7213,3.442776,3.4357666666666664,3.6656333333333335,3.5958,2.7584199999999996,3.4025559999999997,2.1103,2.921655,3.6690666666666663,3.676933333333333,2.56119,2.63595,3.9143000000000003,2.849956666666667,3.169506666666667,2.47344,1.2819749999999999,3.5566333333333335,2.7660533333333333,2.0146333333333333,2.545075,3.310756666666667,3.1365200000000004,2.09196,5.733587333333333,2.535703333333333,0.990515,4.693555,2.0252233333333334,1.8016666666666667,4.352595,3.96184,3.348415,2.534845,1.6988825,3.026505,2.91681,4.01642,0.48131399999999996,2.156265,0.48131399999999996,2.3237,1.6988825,2.698215,3.833015,2.630575,3.324625,3.73102,0.5397053333333334,2.8719533333333334,0.9477525,0.46002,4.476495,4.054825,4.87656,2.546375,5.60115,4.331855,3.761685,2.2373,4.011166666666667,1.8738199999999998,6.4086,3.78295,4.04501,5.17815,2.855233333333333,2.0409633333333335,2.0281,1.4571983333333334,1.819685,0.99342,0.99342,4.380235,2.7250099999999997,6.480504999999999,2.292215,1.76128,2.25741,2.41640925,2.513525,3.934015,4.40384,1.890315,2.26964,2.41640925,3.801305,4.05357925,2.38523125,5.6578800000000005,2.292215,3.3422125,3.41749,3.3409,5.1414,4.78169,2.0790275,2.031515,2.2857525,3.235305,4.95936,5.05065,1.89659,3.85348,1.6005500000000001,1.55128,5.5223,10.495571666666667,2.1012333333333335,2.3807,2.248343333333333,4.5205,4.43736,1.9855975,4.721495,4.100705,2.74968,39.53452448809524,2.9250933333333333,3.4064333333333336,0.48233666666666664,4.86855,2.268003333333333,0.9535366666666667,4.38147,3.85513,2.004095,1.8279825,2.524366666666667,3.918825,1.3531514285714288,3.0035613333333337,4.088875,4.95606,0.915487,4.91947,4.662385,4.987075,2.8167899999999997,1.4363725,3.7528300000000003,4.427885,4.4174,3.344285,3.70083,4.43473,12.159921060606061,2.9931900000000002,2.845025,4.451405,2.93393,4.33834,2.627635,2.845495,3.26233,6.309774999999999,5.3393,5.3503,5.06025,2.39902,3.61043,4.47197,3.51622,4.903335,4.74668,0.10736489130434783,2.34443,3.274255,2.542485,1.2089516666666666,0.5485766666666666,0.5485766666666666,1.880565,2.71223,4.156865,1.341734,2.8701133333333337,4.228375,2.690675,4.2907525,0.55683,4.52699,3.782065,4.601145,4.00785,4.930585,1.19123375,1.17626375,4.009566666666667,2.8892399999999996,2.98896,4.27623306060606,4.46673,6.3673850000000005,5.3353,5.26285,3.30968,2.0910975,1.5334416666666666,5.569,0.31715133333333334,3.29881,3.70921,3.9041,14.48774,1.919625,2.81395,0.75091,4.315065,8.038195,2.98342,2.010213333333333,5.4812,3.29327,1.0715511111111111,4.590965,2.747135,3.18759,4.781745,3.4839410277777776,1.1051975,8.092761666666668,0.72619625,4.894955,3.3416952777777778,1.4356125,2.060479361111111,3.15932,3.15932,3.766465,4.436932416666666,1.43635,2.45835,2.55744,3.501745,2.81426,2.73834,3.29095,3.296185,6.278037333333334,6.1808,3.926515,3.188635,5.1155,4.35847,3.853045,3.24724,3.502525,4.516235,5.28885,2.475276666666667,2.699533333333333,1.5714766666666666,2.3049766666666667,2.259445,1.539355,3.4833,3.659133333333333,3.3701666666666665,3.2270333333333334,2.76878,1.4722,1.7783300000000002,0.4447563636363636,3.2135833333333337,1.3142285714285715,1.44081,3.290343333333333,2.5835133333333333,2.64166,0.94575625,2.3497575,2.534615,3.132055,3.500165,5.96315,3.68906,3.15605,2.175946666666667,3.31088,4.584095,2.522085,2.97104,1.84167,3.75718,2.791215,3.76592,1.3348266666666666,0.5997,2.24034,3.30874,3.0803,3.79557,4.79302,8.703949999999999,3.4987999999999997,2.46833,1.8550066666666665,1.827582,1.827582,2.55082,2.4701233333333334,4.98907,4.93331,2.83397,4.941315,4.19622,4.283985,3.3096491666666665,4.387385,7.915545,2.60575,0.500629375,3.0637133333333337,1.3617,1.02318,1.7236666666666667,0.9260550000000001,2.144005,4.93315,5.26655,6.15483,1.26767,6.97919,2.08248,1.54178,2.6140433333333335,4.687855,3.149016666666667,2.699425,4.14822,3.2124633333333334,3.7585333333333337,3.0103033333333333,2.950476666666667,2.9002499999999998,6.79214,2.519785,3.817815,3.7256283333333333,3.9268858333333334,1.7128833333333333,1.2147225,4.227245,3.0628233333333337,3.1729333333333334,5.3846275,3.24411,2.25851,2.4232675,3.17575,3.691933333333333,2.5943866666666664,4.534313333333333,2.9334633333333335,5.1201,2.511227,1.91075,5.0067,5.2959,4.68513,4.3125,1.7268766666666666,2.34515,2.173035,3.331535,1.43638,0.8069333333333333,2.525078333333333,2.0432275,1.995115,4.18597,0.8458749999999999,5.6288374999999995,1.6918425,0.7577418181818182,3.7603333333333335,4.26254,0.6930285714285714,3.2038915,3.17682375,0.8598833333333333,4.559805,0.18397952380952382,0.18397952380952382,0.18397952380952382,0.18397952380952382,0.18397952380952382,0.18397952380952382,2.030954,3.749815,2.030954,2.030954,1.7926566666666668,0.18397952380952382,0.18397952380952382,3.269686666666667,2.89171,3.546985,3.350075,2.41958,3.525865,1.5688,1.743494,3.5489625,1.5391400000000002,3.2977900000000004,2.721744888888889,5.9810533333333336,4.621815,4.24775,5.31925,4.55833,4.582025,4.820405,4.486175,7.341290416666666,3.8509666666666664,3.6695333333333333,2.8104633333333333,4.628706666666666,2.6268333333333334,2.118375,1.8687166666666668,4.92131,4.845255,4.19929,5.3719,5.5831,4.618155,4.93132,0.7387454545454546,0.7071678571428571,0.7071678571428571,4.778545,2.3651666666666666,3.61607,1.023172857142857,5.59295,1.5684714285714285,2.356383333333333,2.6390599999999997,4.5912,4.5912,6.9901,5.15605,1.49315,11.91448,3.686866666666667,1.2404222222222223,5.2095,4.565325,4.144215,3.571685,2.60674,4.5300666666666665,0.7860466666666667,3.5574333333333334,3.6024,3.8504666666666663,3.2593033333333334,1.4578766666666667,1.4362133333333331,4.5625475,3.07516,3.0017300000000002,3.4301333333333335,5.3402416666666666,3.4086716666666668,0.779709,1.7414133333333333,3.1109833333333334,2.5148400000000004,3.6978666666666666,3.4098333333333333,3.425966666666667,3.8007666666666666,3.3808666666666665,2.2103800000000002,0.88213,3.0024033333333335,2.7969833333333334,3.70243,3.176005,4.20594,2.6128466666666665,3.595666666666667,2.742275,1.443462,1.65606,2.47509380952381,3.8437,1.922016,3.2222266666666664,1.8573000000000002,4.0147,5.210586666666667,5.098788000000001,2.388555,2.580575,2.671975,2.5804,1.572357142857143,2.519225,3.207939642857143,2.5239,3.721,2.928555,3.7560156666666664,3.34749,1.0115122222222221,1.2873925,1.737165,2.2444475,3.2922366666666663,3.511366666666667,5.12605,7.299245,3.26589,5.2696,4.37695,15.817268666666665,0.490909,11.745195,0.9458644444444444,3.33576,2.243646666666667,2.0413866666666665,2.92502,1.501598,1.4091879999999999,2.9032933333333335,1.389958,2.8500146666666666,2.299506666666667,3.269213333333333,2.3574800000000002,2.68097,1.6062033333333332,0.8069716666666666,3.305633333333333,2.473873333333333,3.3763,1.0675233333333334,3.7749,0.7617183333333334,0.3601361538461539,2.9348233333333336,4.57336,4.680565,4.837865,0.8813200000000001,4.03511,4.598975,1.1319175,2.8839,5.711233333333333,2.927765,3.791475,3.68408,3.845995,1.8052475,3.741245,2.776543333333333,2.889275,3.58399,2.58276,2.706715,3.707945,3.03678,3.6599,3.29943,3.314135,4.9275,1.5338833333333335,4.5409,2.2492175,3.669925,5.08112,2.1979425,2.9221266666666668,3.251936666666667,6.067625,2.4332433333333334,3.47575,5.6518,3.928266666666667,3.88923,2.087686666666667,2.7059,4.81157,3.625666666666667,4.689685,3.5109666666666666,3.14236,3.117153333333333,4.023633333333334,3.223043333333333,2.76195,2.768606666666667,0.4431777777777778,2.4888525,2.11724,4.869935,4.74362,3.17039,2.7401066666666662,3.4218666666666664,7.943965,3.6319237500000003,3.96774,3.3064466666666665,4.074565,2.80016,3.7187316666666668,2.6849233333333333,2.413065,2.8574699999999997,6.13635,4.715675,2.0476633333333334,3.314205,2.926435,2.853173333333333,4.75836,1.669398,6.306976666666667,3.955095,4.673305,4.098475,5.8858,3.58343,6.686451666666667,4.64896,3.882585,0.7098085714285715,2.426275,1.457815,3.0440066666666667,3.587035,4.539275,4.099025,5.78075,2.660833333333333,4.661895,3.2011333333333334,3.615866666666667,2.94627,5.15705,4.870685,5.24845,2.635076666666667,5.763156666666667,4.299105,1.5753683333333333,5.64735,3.565295,2.456045,2.15351,2.22336,4.72644,1.1985357142857143,2.3865266666666667,2.0750775,4.007235,4.67278,2.5652066666666666,3.5284333333333335,3.111704,2.5386833333333336,4.042575,1.350804,2.2853033333333332,2.2798666666666665,2.7771399999999997,2.4791833333333333,2.7175499999999997,2.627943333333333,3.915135,2.819293333333333,2.7749066666666664,4.107255,2.314555,4.209205,3.58424,1.4481733333333333,1.4481733333333333,4.62704,3.0608533333333336,1.790015,1.42219,2.471755,1.97465,1.34922,1.5270833333333333,0.652669,1.66085,1.5148766666666666,2.8831366666666667,2.417593333333333,1.7417133333333332,1.80661,2.352466666666667,1.58348,1.7845833333333332,1.8770066666666667,2.34653,4.01456,2.854885,3.4837333333333333,2.677825,5.4491499999999995,2.771325,3.99466,4.138818333333333,2.070595,4.02783,2.969825,1.915515,3.294425,2.172635,2.87705,3.55698,2.030645,4.799465,2.71478,4.12047,3.4689666666666668,0.8855411111111111,3.76697,3.73394,3.301095,3.49415,2.8779533333333336,4.97182,4.74268,5.3042750000000005,9.069579166666667,4.015935,4.47442,3.1642499999999996,3.728435,4.501975,2.41263,2.80673,4.37981,2.31729,5.76934,1.83857,2.65826,7.57801,3.025843333333333,4.180814,1.3330814285714285,4.52259,4.781485,3.0670966666666666,4.828695,4.886535,6.578900000000001,16.443729642857143,0.6276058823529411,1.0531855555555554,3.3833333333333333,4.26484,4.16373,2.1170575,3.40577,3.949105,4.97706,2.71304,4.96791,1.60204,1.60204,5.6624,0.7373645454545454,1.8251439999999999,3.014245,3.76257,0.37652846153846153,1.9631633333333334,4.517405333333333,1.1255416666666667,3.052963333333333,2.6669366666666665,2.93058,7.27019,2.4329966666666665,3.5947999999999998,2.0967033333333336,2.244946666666667,4.077695,3.19923,2.798755,6.764336,1.71886,2.961325,4.374475,6.886162499999999,1.7705666666666666,2.4184,2.5489566666666668,1.3950966666666667,2.866405,1.6760712500000001,3.847415,3.857695,1.41795,1.9223133333333333,1.9223133333333333,2.96213,5.78415,4.234345,3.689285,4.87105,4.482785,3.42484,3.72444,3.880065,3.562405,4.557886666666667,3.37193,4.26823,0.992345,0.348079375,5.3493,3.68737,2.50668,7.97882,1.3633066666666667,4.730433333333333,4.048735,0.3791533333333333,1.9314600000000002,1.29736,1.8441533333333335,1.6438533333333334,5.553615,2.99031,2.91857,4.68793,4.318325,4.607265,0.6033561538461538,2.047155,0.563437,5.5513683333333335,1.531584,4.92027,2.101635,3.37839125,3.175655,4.444245,4.502725,4.763455,0.9221727272727273,2.941945,4.171765,1.957825,1.7203325,3.53328,3.030305,3.65883,3.888195,5.438628571428572,4.63322,5.36975,2.8713466666666663,0.5958733333333334,3.4869333333333334,3.974285,0.7029792307692309,3.87224,4.24795,3.836215,2.687395,2.5459366666666665,5.47915,3.178115,4.09752,2.128975,3.9023,2.0021,5.04205,3.70272,0.6823823076923077,4.59407,3.9481,3.109835,5.15755,4.226635,2.6008,3.82152,0.638063,3.20356,3.8713166666666665,4.45134,3.3988,2.3451975,3.6160666666666668,2.3451975,4.71835,2.994125,3.4318000000000004,1.50086,3.233976666666667,2.1161275,4.27777,2.9389800000000004,5.40378,3.4073666666666664,2.91221,2.990206666666667,2.5307158928571427,2.5307158928571427,2.5307158928571427,2.3363033333333334,1.0171533333333334,4.517105,2.344813333333333,1.7004366666666666,3.7486333333333337,2.7604699999999998,3.1316133333333336,4.22093,5.172,3.59144,2.24409,1.90819,4.00713,2.08236,2.3497766666666666,2.90461,3.568415,2.150575,3.73266,2.817585,1.7809080000000002,4.350205,3.98108,3.989375,3.769195,0.7021911111111111,2.428853333333333,4.757915,7.317225,3.72366,3.05417,2.589,3.58748,3.511335,2.013475,2.08263,4.984345,2.3612425,4.503095,4.08775,4.33266,8.873216666666668,3.904655,3.92883,3.8107,4.64858,4.397,3.3622625,3.3622625,3.916255,4.123296666666667,4.33167,3.81343,3.95774,4.475475,3.86104,1.1410575,4.161595,4.170395,5.6235,7.7097299999999995,5.27315,3.5990159999999998,1.7397799999999999,1.5211483333333333,2.485725,4.582135,3.890055,4.97,2.9270033333333334,4.60438,4.892135,5.19465,5.22245,3.09388,3.931735,4.361575,5.5168,5.39895,3.938805,6.681841666666667,4.60533,2.2575366666666667,5.09755,4.324635,4.134495,3.797255,5.13075,0.8074427272727273,4.56311,4.478995,1.2987471428571429,1.413978,5.22785,5.2471,9.0345585,4.99876,4.81215,6.397,2.739735,2.7740333333333336,5.10095,1.72444,1.72444,2.797725,1.6817966666666668,3.006206666666667,3.5718333333333336,1.9078775,4.211178181818182,1.4757999999999998,2.31256,6.0696775,3.5317099999999995,3.421565,2.96494,3.83849,4.473115,3.013333333333333,1.0465111111111112,3.89823,2.567886666666667,3.861805,4.2896,3.5790033333333335,5.24615,5.2184,4.80798,4.745785,5.0601,6.58845,4.689995,3.222925,3.67709,1.9058925,1.9058925,3.69099,4.31618,2.19374,2.9210333333333334,2.2230539393939392,2.801493333333333,1.9763033333333333,1.9763033333333333,4.371265,3.38884,2.11671,3.64311,2.79705,1.78869,1.2260275,1.3227333333333333,2.64341,0.48988578947368416,0.9661577777777778,2.79257,4.3446,0.4354590909090909,4.341045,1.9683579999999998,5.5517,3.87506,7.566675,4.19635,5.317753333333334,5.03755,5.01255,4.02754,2.22386,1.9038,4.13355,2.995785,3.775185,1.5065833333333334,4.004085,4.96793,2.61417,4.5486,3.382155,4.81706,3.60813,3.962875,3.790085,3.23397,3.494925,4.261055,1.03175,2.880205,2.58648,3.33312,4.210275,7.47721,0.922212,1.54786,1.54786,2.05056,3.908535,2.815535,3.05135,5.1415524999999995,2.8587166666666666,1.17881,1.17881,1.17881,2.72841,3.206537,4.806875,3.04341,3.81213,3.275665,3.69613,2.92596,3.249023333333333,3.6843,4.243668749999999,2.8523625,1.34922,2.393275,2.8523625,3.49069,1.3708333333333333,1.8538266666666667,1.8101025,5.577324666666667,2.656695,5.925133000000001,5.577324666666667,3.268438,1.7202416666666664,1.7202416666666664,2.716495,5.35164,1.7202416666666664,2.09555,5.62847,2.002075,2.614725,5.05586,3.35972,4.44865,1.7145599999999999,3.46321,4.0619,1.8315966666666668,2.458725,4.105,1.7145599999999999,2.623835,2.04376,5.77982,2.57982,1.061874,2.565975,3.226415,3.532476166666666,1.99365,2.1744195,4.43282,2.1012686666666665,1.376325,3.079065,2.35019,3.020795,2.91398,1.9693066666666665,2.74601,2.09885,5.18089,2.357445,2.889035,3.094545,3.094545,8.196026666666667,1.1029066666666667,3.60232,2.476985,3.115145,2.14921,1.33722,1.33722,3.51283,2.07119,6.37065,2.125,3.020855,3.309565,7.14933,2.684205,2.38746,6.55226,6.55226,2.32691,1.52462,1.29242,1.29242,1.52462,1.9573266666666667,1.2887233333333332,1.12927,1.63615,1.49048,3.597135,1.90225,3.50681,3.07052,2.939875,2.72215,2.800285,2.59206,3.215445,3.215445,5.45925,2.442575,2.73579,2.914055,2.86459,2.54025,2.545795,2.550505,5.3905425000000005,1.7846175,1.6837903333333335,1.322632,2.353820333333333,5.44707,4.059177,3.406575,3.12199,1.6837675,1.6837675,1.6837675,4.34151,2.705215,1.12927,3.04041,3.188385,1.39468,5.428985,3.2206599999999996,5.82807,3.63517,2.42383,3.588405,2.92214,2.4188,3.243935,4.40957,3.97424,1.99472,2.555645,2.92301,2.81699,5.78172,2.14791,3.23677,2.49172,6.05009,4.4435,2.24398,2.539305,5.76274,5.33317,5.49081,5.02528,1.172226,1.172226,2.10594,2.10594,0.5785,5.07401,3.79572,5.044,4.23045,5.26815,2.046195,4.3353649999999995,4.3353649999999995,1.800425,3.530845,3.15122,1.0785040000000001,4.73475,3.263805,3.197005,2.58607,4.48264,2.65711,2.195765,3.34562,2.666865,2.763365,4.92188,2.655455,1.9685,3.885865,5.77065,6.16513,4.8025,2.57873,2.78985,1.993785,5.81143,2.54606,3.53046,2.38459,6.72423,4.39837,2.70098,3.19466,2.13741,4.69627,2.40649,2.55255,2.673085,7.21053,5.00303,3.343695,2.236695,2.6387,6.02826,2.770915,2.43357,5.82523,2.83854,2.729285,2.282225,3.07709,1.9402666666666668,2.0205,1.9759066666666667,1.8141433333333332,2.1247233333333333,2.1331633333333335,1.668305,2.1050166666666668,1.81838,1.9402666666666668,3.99343,4.11014,2.01033,1.6190725000000001,1.6190725000000001,3.7190833333333333,3.7190833333333333,3.0380233333333333,3.0380233333333333,2.65764,1.911165,1.851565,3.83062,2.2640575,2.2640575,2.4255525000000002,2.4255525000000002,2.76713,1.93371,4.39908,2.37789,3.13591,1.9455566666666666,1.9455566666666666,1.615955,3.99812,6.26184,1.3708333333333333,4.60685,1.9693066666666665,2.063215,4.30152,3.105085,2.05333,2.3862,6.74787,2.226845,5.71055,3.26579,3.43785,2.97635,2.67179,5.11452,3.6977,1.638635,2.6541084615384616,3.01547,6.44067,3.472645,1.493592,1.493592,3.88082,4.80417,4.91523,5.05138,2.85701,2.8721,1.7361,2.95026,1.84299,2.725375,1.806905,0.7282919999999999,0.7282919999999999,0.7282919999999999,2.2461308333333334,5.1078133333333335,2.2461308333333334,2.17816,3.70756,1.652755,1.982505,4.413,3.85943,5.20871,1.5817466666666666,5.28542,1.5817466666666666,1.5817466666666666,2.14218,1.60281,1.823435,5.65194,1.823435,2.48082,4.28727,2.074345,1.989615,2.59878,3.059746666666667,3.491639166666667,3.085383333333333,3.79653,1.4520099999999998,4.722385,0.7936736363636363,4.393845,4.5999475,2.3071825,2.3071825,0.7162227272727273,3.6273999999999997,2.703056666666667,5.62485,4.8924,4.165535,4.79756,4.483235,4.25783,5.0682,4.1517,4.312255,3.94588,3.89468,4.76569,5.28105,3.228515,3.422055,4.160855,2.6290533333333332,1.47378,4.312325,3.76205,3.98902,1.6805428571428571,3.790595,4.22963,6.4987675,1.3905675,4.677135,4.7477,1.992775,2.05478,3.21575,3.360715,1.7628,1.493592,3.982785,4.23227,2.482245,4.382435,2.91611,1.0795400000000002,3.268993333333333,1.3116,3.107153333333333,1.6557199999999999,3.098933333333333,1.849515,2.57286,4.602795,4.30575,4.46289,3.160695,2.213685,4.90793,4.33847,2.88236,5.2913,4.18653,2.6741833333333336,6.3078,4.23704,2.8959133333333336,2.3509933333333333,2.774835,3.057726666666667,2.7528333333333332,2.8235966666666665,4.29994,4.065015,3.749815,2.47239,2.5587266666666664,2.4810166666666666,2.7573133333333337,2.4618166666666665,2.38763,2.5742166666666666,2.1717025,1.52133,3.0731786666666663,1.195885,2.0685925,1.8158325,2.52555,1.6189575,1.9503875,4.10227,5.417,1.91464,4.20909,5.0658,6.82597,2.1521666666666666,1.515598,6.59565,3.926215,4.518915,4.092855,4.094855,2.00644,3.41175,2.3814175,2.876035,4.53306,0.7056883333333334,4.1018,1.8547500000000001,0.7731354545454546,5.21395,4.65133,3.88821,1.934567857142857,4.493845,3.57095,2.77783,2.65568,2.39492,2.0103133333333334,0.593567,3.2378400000000003,3.109925,5.2808,2.471935,1.9427825,4.508855,0.94827,1.828,1.828,2.753205,1.828,4.513625,2.710775,4.71897,4.13217,6.1264,13.346309999999999,3.28996,5.2628,2.798335,4.633275,2.973335,6.146990000000001,3.3483,4.15062,5.0656,4.092105,1.4163816666666669,4.874285,3.026733333333333,2.9015,1.103441111111111,2.1784475,3.77492,7.254791666666667,4.283175,2.5669,4.51329,3.5022,4.315,4.973595,4.327425,3.080865,2.863933333333333,4.18561,6.0355,2.41225,4.65286,2.0587975,2.0587975,3.06265,4.19341,1.04711625,4.111063333333333,2.517975,4.30439,2.55631,2.1446533333333333,2.6419099999999998,1.9750866666666667,0.6833778571428571,3.24032,2.6680266666666665,4.924135,4.410255,0.250310625,5.1173,4.941285,4.27806,7.098986666666667,3.276006666666667,2.8876066666666667,2.3021933333333333,3.0193366666666663,3.2895633333333336,1.3861766666666666,2.8484233333333333,3.0557533333333335,1.60954,3.1415333333333333,3.28297,2.8927899999999998,3.496066666666667,1.278401111111111,4.35039,2.27757,5.1747,4.783615,3.81045,1.58856,2.3673800000000003,1.3164325,1.92776,1.3164325,4.529735,3.5464333333333333,1.629908,2.3351825,3.952035,3.758405,2.841105,3.839445,0.3585435,1.39260875,3.60555,4.41416,4.90109,1.87475,2.88601,3.1500566666666665,2.7007999999999996,3.240935,2.994015,4.443025,2.278155,2.449733333333333,3.0040666666666667,2.6020266666666667,2.86956,5.12715,2.00349,4.730285,3.7350491666666663,6.01675,7.6318025,0.7716999999999999,0.886552,3.67621,6.571462500000001,1.9487860000000001,3.43106,1.6316066666666666,1.6316066666666666,3.379595,0.4672766666666667,3.600675,4.67852,2.611075,4.101085,3.18979,2.524445,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,0.23536166666666666,2.042965,4.29169,5.6770966666666665,3.957806666666667,5.266235,7.0389816666666665,3.0874,2.5818233333333334,0.8572466666666667,3.58927,1.175085,6.8776383333333335,4.295814999999999,2.452265,1.175085,3.45504,3.11189,1.5838,5.749015,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,0.1707162222222222,4.7299,1.7762825,4.584275,4.76653,1.8675080000000002,4.807435,4.69106,5.3549,4.592381666666666,3.7112382142857143,3.331415,4.64743,2.3355225,5.70443,4.23374,0.8041785714285714,1.38635,1.4450714285714288,3.7137,3.7137,3.00161,3.760235,5.03905,3.64853,4.53117,3.23436,2.14585,0.6531685714285714,4.069955,3.286045,2.710955,4.11342,3.340945,3.1158375,3.69415,4.132085,6.685885000000001,3.962115,4.64109,5.63945,4.64671,1.4464857142857144,2.970665,4.8694733333333335,35.23825867171717,1.4518983333333333,4.447105,4.201055,4.42423,4.09863,4.62183,5.17065,0.4097490476190476,4.98778,4.17839,2.13964,2.024445,3.94891,1.5861725,2.42144,2.41176,1.75813,2.71678,2.544496666666667,3.240695,3.64966,0.606863076923077,3.751455,3.7261,0.3690294736842105,2.5644,3.036265,2.633925,3.787125,1.917635,4.53948,3.926155,3.13535,3.723615,3.234205,4.67669,3.03136,4.197965,2.32741,4.8694733333333335,3.725655,3.89916,3.258685,1.789248,4.608945,3.513455,7.633236666666667,3.17138,4.702145,6.4247325,5.060956,2.31502,4.76144,6.7220200000000006,7.7430520000000005,2.25585,2.571315,5.0043,5.74743,4.24868,4.38342,5.31055,2.40372,1.9434825,2.5525,60.21308822399135,5.11275,4.55792,2.668025,0.9811460000000001,3.1746833333333337,2.86164,3.3894333333333333,0.8967977777777778,4.444725,0.8172277777777778,7.946943214285715,2.08236,3.273263333333333,1.7524760000000001,2.74011,2.5258833333333333,2.9850333333333334,2.4906,2.2593433333333333,3.2664000000000004,1.5643933333333333,5.610015833333334,3.9822333333333333,1.6277825,2.4284066666666666,1.3812533333333334,1.445875,7.35514,5.4368,3.243605,5.41165,5.213324999999999,1.5205428571428572,3.3806999999999996,3.702845,1.6398475,4.823575,3.756375,4.091955,2.0273325,3.1012383333333333,3.7685333333333335,3.89977,5.55365,4.310315,4.440425,1.9914275,3.74952,4.567633333333333,3.2292633333333334,1.6341480000000002,4.23001,3.2504833333333334,4.03334,4.973095,3.91406,4.075415,4.633085,4.286855,4.172395,4.76997,3.94659,3.091666666666667,4.032415,4.709435,3.012235,4.294525,3.799855,1.56484,1.56484,4.373865,5.3236,5.46315,4.269985,4.59671,3.609766666666667,2.842535,4.67404,4.99094,0.667630909090909,4.996305,7.06869,5.36,5.91515,1.3282111111111112,3.11964,0.9451,0.9451,0.9451,3.552435,3.3254066666666664,2.48805,3.3840333333333334,0.90594,4.994595,5.1945,3.12564,1.4547,2.063505,4.59008,4.20148,3.75961,2.970478,5.6618,4.3306,2.53384,4.81668,6.9476,2.097835,4.126035,3.830495,3.179845,5.5427,4.60886,4.558755,5.6635,3.77784,3.8014866666666665,2.0373366666666666,2.0373366666666666,0.6792927272727273,8.874464,2.224875,5.8536,5.74825,4.48118,4.759255,3.72708,3.2937700000000003,4.89316,7.432634999999999,5.633883333333333,2.2751733333333335,4.37886,1.10585,3.69473,2.067083333333333,0.9888033333333333,1.3034142857142859,2.6481766666666666,3.20511,2.7216133333333334,1.2377442857142857,2.7993966666666665,3.138033333333333,0.941068888888889,2.9258900000000003,3.4352666666666667,1.6559300000000001,1.827386,3.3262,3.1182833333333337,3.0444266666666664,2.6633,1.7068619999999999,4.407225,4.88376,3.2176,4.685105,5.18395,3.052335,4.77063,5.89095,4.87734,4.170085,4.12545,11.712641666666666,8.05004,2.8985333333333334,3.58027,2.15183,3.70287,3.033365,4.526755,1.0834333333333335,4.17425,4.162115,1.25813,3.539565,2.961263333333333,4.42689,3.56567,3.754145,7.0134,7.357136666666667,4.198265,1.5549466666666667,1.5549466666666667,1.5549466666666667,4.81488,1.1789433333333335,1.4343375,0.49374666666666667,4.4115975,3.1610133333333335,3.7623,0.886579,1.1422525,3.382065,4.26683,3.82092,17.01217401190476,5.1405475,4.05816,6.7447824999999995,2.8569766666666667,3.563605,2.97927,0.9261488888888889,1.6688775,4.526555,3.501645,4.544205,3.91604,4.66119,4.07101,2.8154868888888887,3.243765,5.2382,0.60042,4.897405,2.4285575,4.077455,5.64855,3.398433333333333,2.5043533333333334,3.9788316666666663,1.8706433333333334,4.40135,5.98795,2.6650766666666668,2.509495,4.266725,4.785625,4.57103,4.047195,3.95701,4.065825,4.857105,4.701545,4.274125,4.86106,4.07872,1.1189057142857144,1.9030075,6.620178166666666,5.8098,4.731655,4.894805,2.53655,2.6447266666666667,2.6172366666666664,5.371996666666666,1.9209125,1.91684,3.1424833333333333,3.0633666666666666,3.215536666666667,4.585595,3.638675,5.3145283333333335,1.30818,4.566065,0.9449299999999999,3.936255,3.41134,1.7356983333333331,4.91009,0.9575155555555556,4.514685,5.4747,5.07255,4.79132,3.6286008333333335,3.876395,2.6593666666666667,5.05205,5.4782,2.941005,3.814385,2.553895,2.55677,2.009535,2.614695,3.859425,5.24075,1.0752475,4.578025,1.485115,3.272005,1.6123900000000002,1.0752475,0.2827,3.873655,3.0016,2.3279466666666666,1.9553933333333333,2.865625,1.098565,3.41529,3.40126,4.604845,2.475756666666667,6.4281,7.4248899999999995,2.9620466666666663,3.1508366666666667,2.8998733333333333,0.8496689999999999,2.3200966666666667,6.2634,4.29544,4.97966,4.91482,2.0841233333333333,1.3347766666666667,3.6059574999999997,1.717105,2.4900125,1.7880325,1.5498625,1.6904125,1.8678725,2.109875,2.04352,1.7850975,1.2093314285714285,1.4999325,2.1092225,2.51935,2.0206,2.32793,0.5119906666666666,1.965108,2.7060999999999997,3.25653,1.6207275,1.9460433333333331,1.5304825,4.257945,2.2235033333333334,3.11858,2.929545,4.045985,4.84197,2.7930833333333336,4.277275,1.7404298529411764,4.10597875,23.489556,4.455043333333333,5.55585,4.81033,2.868133333333333,4.06914,4.55981,2.475745,4.36886,3.233836666666667,0.76199375,3.27949,4.849535,4.388525,3.930925,1.5845,2.15855,2.45186,2.27567,1.3932742857142857,3.3299833333333333,5.56255,4.122475,3.27708,3.91004,5.17765,4.838115,5.4805,1.2729125,3.302,4.20361,4.673145,1.520052,2.47435,1.847985,1.847985,3.550135,4.964875,2.83865,2.7864166666666663,4.717995,4.59294,6.3190125,3.91808,2.14221,1.6688775,3.38806,4.085335,3.0558866666666664,2.418228571428571,2.418228571428571,3.3222400000000003,4.566565,4.01305,5.431405000000001,2.417845,3.682672888888889,0.5673222222222223,0.5673222222222223,0.5673222222222223,3.70151,3.64717,4.488125,5.529,1.9957175,5.81895,4.78252,4.51959,4.30409,4.966065,2.974845,1.5908857142857145,4.7317,4.91517,0.47523428571428566,4.2706,4.717295,1.6381350000000001,5.4478,4.905145,4.37422,4.17481,3.77708,2.99356,4.754145,1.6709340000000001,4.3483,1.7243166666666667,3.9019,5.85275,1.16946125,3.102555,7.377745000000001,4.11939,3.632566666666667,2.5237,4.417255,5.44595,3.5268333333333337,6.450748333333333,4.13029,2.10359,2.9805833333333336,2.7767033333333333,3.0259300000000002,3.075343333333333,1.83197,4.11748,0.6041633333333333,1.8955600000000001,1.8955600000000001,3.085455,5.4033,2.29931,3.262045,4.752245,4.16895,4.572525,1.5543933333333333,5.344980494047618,4.72034,5.24155,3.786795,4.078384,3.634058,0.444326,2.415448714285714,1.01248375,0.444326,4.118705,0.8461066666666667,4.44967,4.05501,6.679130000000001,2.000086666666667,1.0461175,1.147232,2.22532,3.1639466666666665,1.6169733333333334,2.4673433333333334,3.30888,3.96802,2.0179633333333333,2.3189033333333335,4.727275,3.1736050000000002,3.923,6.14165,3.552685,4.884945,6.831258333333333,5.0934,3.587675,4.378545,3.71965,4.486245,5.1856,5.720345,5.5646,2.487206666666667,0.996248888888889,4.17099,4.287325,4.40419,4.7752,4.237055,3.22853,2.9173033333333334,2.5775633333333334,3.093666666666667,2.6318733333333335,2.48456,2.88247,3.376633333333333,2.6582866666666667,3.998935,4.582255,4.493105,5.35665,2.3589933333333333,3.6808666666666667,2.82765,0.7143357142857143,4.13899,4.47955,4.971665,3.0033333333333334,5.71239,3.34316,4.751015,4.13274,0.6136838461538462,0.5840442857142857,4.198985,2.8011135,3.228825,4.59399,4.517845,1.776604,5.04205,4.177055,2.9436933333333335,2.6957166666666663,2.501475,2.3070008333333334,3.4662,3.306093333333333,3.4148,3.0683733333333336,3.602866666666667,2.6759,2.9170166666666666,4.0839,4.410455,0.559295,0.559295,0.559295,3.120777111111111,3.717866666666667,3.4785333333333335,2.8078533333333335,2.59476,1.1410575,3.1130633333333333,3.243456666666667,2.0565025,2.7175266666666666,2.44862,0.9208477777777778,3.0905316666666667,4.829255,9.8435845,1.4152784999999999,0.636871,3.65651,0.636871,0.636871,0.636871,0.636871,2.1455475,3.8296089999999996,3.97932,4.91686,6.0156,2.7583800000000003,3.0011266666666665,3.067035,3.3690800000000003,5.21605,1.3233949999999999,2.3244700000000003,3.2005266666666667,2.522816666666667,3.1264766666666666,4.753075,2.2046433333333333,3.403645,1.1840777777777778,4.77489,4.89179,3.534255,0.8393,0.7529,0.7529,0.9175312173913044,1.7568312173913045,0.9175312173913044,0.9175312173913044,0.29266521739130436,0.29266521739130436,0.9175312173913044,1.42279,2.70082,2.957335,3.2432466666666664,2.65951,2.614806666666667,3.00433,2.7063,4.40881,3.535465,1.8860525,2.1839066666666667,1.7575675,0.1824471299705449,0.1824471299705449,0.1824471299705449,0.1824471299705449,2.37873,2.63986,0.881156,5.42165,0.7568018181818182,1.7054719999999999,4.6175291666666665,5.8195,4.09655,2.821385,4.428635,3.8283,1.7182333333333333,1.2198175,3.51186,4.47989,6.0434,2.16539,1.4244166666666667,1.8368766666666667,3.3608,1.5503833333333334,2.697423333333333,3.1079333333333334,2.7345133333333336,4.61733,3.73046,3.118825,5.0414,3.0093933333333336,4.255965,5.5539,3.0204,4.14556,5.1049,5.1829133333333335,5.1171875,3.298311142857143,4.823295,4.37065,5.9846,4.75421,4.8261,2.24692,3.09128,4.046835,4.79515,4.16108,3.82769,3.529855,3.54013,3.86136,2.4223933333333334,6.098,3.69491,7.51646,5.85325,5.8846,4.96171,1.5428857142857144,0.9923819999999999,0.64568,1.7914359999999998,4.82025,5.13755,3.94769,1.721058,4.919685,2.97502,4.787745,5.0846,6.0478250000000005,4.392935,3.099915,1.82682,5.32835,3.78659,3.260585,1.753235,1.01375375,3.83505,3.515275,3.5774350000000004,3.5687,2.10102,4.573385,1.7248833333333333,2.8843866666666664,2.2717,4.307585,3.27583,4.804335,2.320565,1.7414,5.3054,2.8143166666666666,8.80652,2.91285,4.861015,5.696,4.29356,5.0369,3.37879,5.3177,2.3225275,3.92004,5.478511999999999,2.4538075,4.42993,4.724825,7.69145,5.3389,3.32323,4.402455,3.928085,3.1736050000000002,3.47396,5.33635,5.30955,2.50845,3.1835766666666667,3.366766666666667,2.332425,3.959315,4.627785,6.1074,5.21645,4.563405,5.20985,4.657345,5.63185,0.6484015384615385,3.05733,1.3195285714285716,31.2619206554089,2.07446,4.594905,3.12236,4.542245,1.8850259999999999,2.3984,3.6835864285714286,1.4742314285714286,1.4742314285714286,1.4742314285714286,1.4742314285714286,2.209355,3.70789,0.41915888888888886,7.747402500000001,0.41915888888888886,4.93688,5.11305,2.3913975,5.3626,2.762675,3.8508539999999996,2.42293,2.36057,2.655456666666667,2.11727,0.6199892307692308,2.6184766666666666,0.7015666666666666,2.9176866666666665,2.053706666666667,2.345316,1.1814466666666668,2.345316,6.0752,7.639010000000001,5.093,4.397335,5.4099,5.9962,7.425096666666667,3.51924,1.634305,1.634305,2.292126666666667,5.1395,4.01776,4.69259,6.3017916666666665,4.456685,2.844385,4.68563,3.495025,3.679865,2.28691,0.95591,2.05366,4.583485,3.970695,5.300753333333334,1.90834,4.44797,1.644414,3.13548,1.452288,3.167456666666667,3.4423666666666666,2.2533066666666666,2.9244233333333334,3.2771600000000003,5.0227,0.7004461538461538,3.4343,3.4322666666666666,2.6419433333333333,2.2872133333333333,4.309740625,3.1819133333333336,2.6118166666666665,5.886632499999999,3.94606,4.82682,3.66381,3.640705,5.41615,5.1497,2.4823066666666667,5.94485,2.324327333333333,2.0373733333333335,3.22451,2.73633,3.0757133333333333,2.72518,1.8205333333333333,2.9818014545454545,4.264155,3.36118625,2.4549440000000002,2.4549440000000002,2.392105,3.960425,4.110105,0.5169772727272727,3.23983,3.017345,8.60225,0.9103636363636363,4.21417,3.721415,5.707,3.512125,4.14717,2.5367,4.300205,2.646745,6.5905,2.9271416666666665,1.1083425,3.93808,2.5969366666666667,3.95547,2.819266666666667,3.71102,3.72674,5.04795,5.463134999999999,3.069545,2.07011,4.88947,2.3730266666666666,4.877765,4.13489,4.706465,4.467855,4.157295,2.72725,2.1769966666666667,2.98436,2.673916666666667,2.708625,3.2949466666666667,2.780030714285714,4.968316666666667,3.0083,2.60113,6.900379166666666,5.2674287500000005,3.9450775,3.16557,3.8428,4.044975,3.327725,2.224285,4.081955,5.7026,4.615895,1.5184416666666667,4.878665,2.9327433333333333,7.011902500000001,5.00075,8.573688888888888,4.108095,3.311335,2.58457,3.850535,5.820065,7.69228,4.11506,5.38153,4.460705,2.97658,3.89232,1.669398,4.638835,1.4605616666666668,3.956335,4.555285,3.6130333333333335,0.9178166666666666,9.541095,1.243411111111111,1.9566925,2.4265866666666667,1.9711333333333334,3.3203333333333336,1.284335,3.58223,3.472685,2.655206666666667,4.464265,1.1181758333333334,3.830435,1.4521249999999999,2.7129278333333335,3.71661,5.4874,1.9652075,5.410125000000001,2.1928703333333335,7.67199,4.360555,2.73955,3.96772,3.38262,1.2852770833333333,7.40297,2.962205,3.21239,2.232135,3.935325,2.30671,3.57835,2.242465,3.85583,1.293535,5.56455,3.523755,4.11893,0.920471,2.0652523333333335,3.823245,5.4431,5.0144062499999995,1.527346,1.527346,6.238,4.076225,4.39207,3.8676,3.3312,8.281849999999999,4.14117,5.6458,3.950365,2.582575,2.2946398154121863,0.3532265,0.21617387096774193,0.6250283154121863,1.316385,0.747233870967742,0.21617387096774193,1.3520189999999999,0.4088544444444444,1.6696114999999998,1.9770473154121864,2.160655,2.4332875,2.12326,5.3664,6.548561666666666,5.35715,5.5036,4.471675,5.26945,1.2750233333333334,5.3791,4.33529,5.85035,5.14725,5.3395,5.9579,5.91805,5.7996,1.5546916666666668,1.6814857142857143,2.09572,6.039549,1.304584,5.73835,4.79331,7.26097,5.1622,5.5174,4.749515,4.593375,2.712575,5.7743,5.46245,6.487559999999999,5.31375,5.6454450000000005,5.95655,3.91266,4.100275,4.037733333333334,1.08634,3.7642666666666664,4.704035,1.2925,3.9532666666666665,4.88139,4.3324300000000004,5.24595,2.560525,3.27203,2.6002233333333336,4.514305,2.1393025,3.462885,1.2283033333333333,3.17965,3.668505,4.255295,4.888915,3.3297220833333334,0.6185941666666667,6.21425,1.0059525,3.765565,3.1221833333333335,3.511985,2.0115266666666667,3.516625,3.570954871794872,3.2575133333333333,4.351755,15.236279595238095,5.256489999999999,2.23352,8.25956,1.460975,3.99104,2.7709200000000003,2.8602233333333333,2.54652,0.22577217391304347,2.8950266666666664,5.22185,1.825816,2.2065466666666667,3.6044666666666667,1.84939,2.314513333333333,1.361337142857143,3.97317,4.77146,5.3764,4.818255,0.46666714285714284,2.3002033333333336,4.32849,2.71037,5.53865,5.0586,4.58292,4.532425,0.540235294117647,2.3487633333333333,2.3487633333333333,5.6766,4.178455,5.0139,2.69565,3.493,3.2597966666666665,5.2112,3.981415,5.672121111111111,5.04275,4.45436,5.3057,2.5057,2.04176,4.576575,4.273465,3.78859,3.923155,1.762734,4.49638,4.07576,3.667585,5.0021,3.99655,4.21969,0.6472726666666666,3.401415,0.7512608333333333,3.3947333333333334,3.143805,4.8393,18.330062857142856,4.07835,4.215775,2.92214,1.176935,2.95532,2.41827,1.45645,2.593325,2.436135,5.2318,2.15951,3.98874,4.258615,2.2899175,4.749655,2.7798433333333334,4.42062,5.72965,5.26945,1.60276,1.751965,3.35293,5.6025,5.08445,1.1676444444444445,5.33855,3.801655,6.07805,4.854535,1.76915,4.53178,3.259265,3.5846,4.28653,4.10883,2.8686233333333333,0.7163725,7.928353333333333,1.535904,0.21040722222222222,0.21040722222222222,0.21040722222222222,4.8466,3.9345,2.573723333333333,4.465145,2.85535,4.718,4.24718,4.4097100000000005,8.234796666666666,4.08404,7.31691,0.9072575,0.8938125,2.65295,4.683155,4.59513,2.0593733333333333,5.99085,5.55045,3.371595,4.21339,4.50828,2.4991566666666665,4.4321,4.8444485,2.3612266666666666,2.5669233333333334,2.892,2.77151,5.8063,3.53557,0.7147785714285714,4.173915,3.39243,4.39234,5.16535,4.67347,3.037305,5.3021,3.59787,13.812579583333333,4.695085,6.93904425,2.73292,6.5241050000000005,4.583605,4.094855,2.3040875,2.36428625,9.77971,2.2089233333333333,4.1453999999999995,3.812666666666667,3.7368666666666663,2.8596033333333337,3.01575,2.08698,2.07125,2.902293333333333,1.838988,3.9304666666666663,2.619756666666667,2.4933466666666666,3.2823233333333337,3.5813,2.52028,2.52028,2.5292066666666666,3.3839333333333332,3.4193,2.9527066666666664,3.19847,3.9282,2.8128666666666664,2.9014900000000003,3.347,2.3580133333333335,2.4177275,3.4011666666666667,3.233143333333333,1.808684,4.1894,2.624353333333333,2.5401233333333333,2.9656800000000003,2.3883783333333333,3.2941033333333336,5.630696666666667,2.5235866666666666,2.51585,1.88196,10.777761666666667,2.15279,2.0826733333333336,1.9857040000000001,1.0839122222222222,1.6424600000000003,4.635093333333334,2.7313100000000006,2.7313100000000006,1.6339020000000002,1.536255,3.66526,4.087165000000001,2.19364,1.50812,1.653098,4.486889333333333,3.303316666666667,4.1548,8.379876666666666,3.01239,2.5576233333333334,3.3050552173913044,4.413666666666667,2.4177275,3.411,3.293036666666667,3.6267666666666667,3.5120858333333334,0.9022125,3.561813,3.1272033333333336,2.808206666666667,4.23788,3.3075566666666667,0.7004563636363637,1.850335238095238,5.0658,2.5326485,3.1712233333333333,1.644065,1.644065,2.07219,3.5738575,1.04471,2.2019625,4.716076666666667,4.716076666666667,0.6575380952380951,6.62959,3.548835,4.215835,5.3168,1.2125771428571428,3.506866666666667,3.5669,5.180747500000001,6.527564,2.872,0.787001,2.88806,2.615746666666667,3.173179333333333,2.48666,2.550073333333333,2.920386666666667,2.4396675,2.40189,0.8351172727272727,4.534185,5.099823714285715,1.5915283333333334,1.6510857142857145,5.28735,2.26124,1.96284,4.41644,1.8499020000000002,3.79906,2.420155,3.4880666666666666,9.07696,4.711954166666667,4.730245,5.20575,2.499448,0.713846,1.8429300000000002,7.0898900000000005,1.72269,3.862255,4.056295,3.44904,22.08750225,3.4224,1.9398166666666665,1.13131375,3.223793333333333,1.4257799999999998,4.180814,5.3837,3.4629145,3.3834666666666666,1.2093866666666666,1.3533,3.115156666666667,0.539163125,3.23725,3.7448333333333337,2.9411466666666666,2.527535,2.59925,2.85515,2.2252966666666665,2.933543333333333,1.830702,3.1903900000000003,1.5104133333333334,3.837395,4.23925,2.33858,4.77763,4.252505,3.950695,5.4158,4.885645,3.3126599999999997,2.82841,2.6494766666666667,1.2433657142857142,1.2433657142857142,1.2433657142857142,2.195265,2.9661633333333337,2.5968466666666665,2.38417,2.6554033333333336,1.6207225,3.717145,4.03155,3.56011,6.34917,3.42268,2.3103175,1.933605,1.1348366666666667,2.5451566666666667,3.88803,2.557793333333333,2.6094399999999998,2.3370466666666667,2.3196,2.57816,2.7114833333333332,3.0363633333333335,2.7277466666666665,2.68251,3.1747566666666667,2.16848,2.022785,1.967925,1.2514525,3.1154766666666664,3.09017,1.9477425,4.027155,5.27745,2.713013333333333,2.5901194230769233,5.092336666666666,4.39774,5.006,5.80455,4.47881,4.05987,6.833292500000001,1.3008875,4.11635,2.701035,4.972825,4.991735,3.82528,4.341785,2.45407,7.40776,2.810865,0.9193833333333333,7.89953,5.00556,5.845668571428571,4.49847,2.85309,1.7601025,5.40805,4.221545,4.914475,5.4783,2.53479,4.317515,4.46321,1.7575675,3.889655,2.65645,1.4066266666666667,4.823105,0.6272529411764706,4.420958333333333,3.57052,4.677215,2.99124,1.696865,3.59992,2.02972,1.32095,2.9064033333333334,3.5479333333333334,3.0322766666666667,6.957840897435897,1.6949575,6.499842916666667,9.644995,6.2625875,3.820005,1.2324428571428572,2.9409500000000004,1.2324428571428572,2.72936,2.2622533333333332,0.31999235294117645,1.2045848529411765,0.31999235294117645,0.31999235294117645,0.31999235294117645,1.2045848529411765,1.2045848529411765,0.31999235294117645,0.8845925,3.690945,3.392935,3.178825,3.366735,3.623305,3.13121,3.2431133333333335,1.6140440000000003,7.187906666666667,2.66215,4.31373,2.5798833333333335,1.0236727272727273,1.297325,4.65513,3.820625,1.0206155555555556,1.5442719999999999,0.7639836363636363,3.053675913419913,4.25306,5.1815,3.574033333333333,5.526534166666666,0.5389507692307692,4.194295,3.30761125,3.1080366666666666,2.7863933333333333,3.676266666666667,2.4773366666666665,3.0646133333333334,2.6161833333333333,3.438755,3.548675,5.20755,5.25705,1.737198,4.57888,4.69021,2.974055,3.664855,3.28447,0.3671393333333333,4.96873,3.615285,3.31565,3.1522360000000003,4.43291,3.919055,1.99358,3.01275,3.83745,8.602285,5.17625,5.778,4.51538,3.88684,0.863835,2.19819,1.88053,1.902515,1.7926566666666668,4.73927,5.3437,4.19679,4.26524,2.970478,2.67245,0.9045233333333332,4.136595,1.2296316666666667,1.1801566666666667,3.08566,3.735775,4.620945,1.254925,2.9288000000000003,8.235628333333334,3.0124600000000004,3.404164166666667,0.9131775,4.08786,12.364846666666667,3.421695,3.983035,3.08894,3.020475,4.559185,4.85891,1.97155,4.299845,0.6383323076923078,4.806535,2.234365,1.814455,1.814455,3.404033333333333,4.59875,1.5860233333333333,4.750805,1.6115714285714287,4.213645,2.7737875,3.14841,4.62269,3.51382,3.9014485,2.4554525,3.0054485,3.0054485,10.85833,0.805354,3.578275,3.496866666666667,2.1201775,2.1483675,0.8693371428571428,1.40695,1.2496442857142858,2.110575,4.85513,2.36241,4.3425275,2.1895866666666666,4.103625,4.40026,1.6214933333333335,2.0225175,1.0721633333333334,5.6920135,1.942155,2.236775,1.8738199999999998,1.52647,1.13131375,2.400932083333333,3.569885,2.4690566666666665,3.09069,2.36137,2.597983333333333,1.7421333333333333,2.9451,2.54798,1.4016166666666667,2.05322,3.24936,3.1744566666666665,2.347163333333333,1.23394,2.5621566666666666,2.37763,3.2353233333333336,0.3343163157894737,0.39373083333333336,2.3222333333333336,2.3026433333333336,2.91775,3.2313400000000003,2.671685,4.82556,5.74635,4.265195,4.72077,4.54175,3.959405,2.2695466666666664,3.74826,0.6278945454545455,0.07270113636363637,6.27635,0.07270113636363637,2.752685,3.21749,5.54955,3.42043,6.15125,4.801615,2.3731066666666667,2.68722,1.3674350000000002,5.44595,5.95365,3.3399666666666668,5.41005,2.15203,4.196635,2.1386102173913044,3.009233333333333,3.3515,4.146605,4.249560833333334,3.13044,2.246653333333333,2.246653333333333,3.87384,7.42323,3.81664,2.1833733333333334,2.5704866666666666,4.513545,2.820945,5.0459,3.76675,1.1675,4.502035,2.775533333333333,2.8970766666666665,4.297985,1.1276183333333334,2.3827866666666666,3.850825,4.357965,5.3558,2.860245,2.84732,3.995595,4.00299,4.094045,5.5527,4.3451,3.3303366666666667,3.720325,2.7343100000000002,3.10078,2.8803066666666663,3.4134333333333333,4.32749,2.9793266666666667,4.916455,4.34158,3.059055,4.791945,4.923135,3.908315,1.466894,1.3802375,4.033535,3.2926933333333337,1.6078766666666666,2.67849,3.322545,3.1338633333333337,3.6642277777777776,3.1779566666666668,2.3599783333333333,12.842091611111112,1.6658099999999998,1.759396,4.563165,1.1013439999999999,3.061726666666667,4.297365,5.1053,3.211485,1.0907155555555557,2.3439666666666668,2.475756666666667,1.503812,5.9615,0.9907375,0.9907375,4.04085,2.1226166666666666,1.9182333333333332,2.04101,4.094915,5.05065,2.38487,2.757805,3.4554116666666665,3.03505,2.9150500000000004,2.02466,6.49695,5.88565,3.902685,0.7337330769230769,3.72772,3.2657,0.9404818181818182,4.938525,3.2102,8.23835,4.63153,4.574175,3.593785,1.4495875,3.199315,5.07935,4.88,4.35569,4.22001,4.372675,3.332545,3.5028333333333332,3.5028333333333332,3.137195,2.873270833333333,4.91463,1.799295,5.4777241666666665,5.31538,1.6381350000000001,4.971365,1.08845,5.08135,3.887955,4.8373,4.772485,4.4302,2.67035,2.606375,4.118475,4.469285,5.0026,4.919065,1.80636,1.46581,4.16503,2.1744566666666665,5.2342,3.02888,3.287695,7.68097,3.7616,4.63578,4.796915,4.26371,4.46117,7.955105,3.665515,3.89925,9.758355,3.79613,0.6278014285714286,2.070303907203907,4.949325,0.618732,4.83482,4.07136,5.39205,4.867495,3.37502,4.18019,4.52891,4.78472,2.5526,0.6885178571428572,5.06085,4.41218,4.27326,4.757905,2.7681766666666667,4.40022,3.5042,0.8243959999999999,3.460565,4.265665,2.3764325,3.1356699999999997,3.86222,2.2499466666666668,5.145,4.89874,4.0593,0.875925,3.2128366666666666,5.713425833333334,5.713425833333334,8.544236666666666,2.0015,0.84935375,0.84935375,25.116396666666667,2.73395,7.788086666666667,0.3791533333333333,1.29736,3.1133900000000003,0.942785,3.6283,3.823315,2.2756975,2.2756975,4.519605,4.722585,3.600625,2.714624166666667,2.714624166666667,3.47894,3.785345,4.040895,3.0220800000000003,2.0691866666666665,2.394166666666667,4.210267,1.963825,3.491975,2.7396133333333332,2.7692007142857147,2.7692007142857147,3.5577,0.8415222222222222,2.49559,1.50854,3.5470333333333333,2.8557433333333333,2.9262200000000003,2.7297999999999996,4.691285,2.349165,3.0374666666666665,5.95788,1.487412,2.318545,3.21159,2.4741966666666664,3.55006,6.514122174603176,1.3218400000000001,3.5903666666666667,2.389485,4.86674,6.42865,1.60917,4.399420666666666,5.034015333333333,3.158068285714286,4.598433333333333,1.1104457142857143,1.520052,3.0378,3.5139433333333336,1.2167116666666666,2.384195,1.4326525,1.635666,1.981805,3.3758480000000004,4.830548,0.9442383333333333,1.5320571428571428,2.812656666666667,12.491525,4.697023333333334,2.66204,1.1792357142857142,2.566145476190476,0.9233971428571428,3.2521166666666663,4.335365,5.11955,3.3661999999999996,5.52155,1.84985,3.6903,3.581565,2.89275,3.7758955555555556,2.856503333333333,0.9675622222222222,2.5180833333333332,2.8301933333333333,5.748448333333333,3.319582142857143,2.639823333333333,0.724035,4.730433333333333,3.425133333333333,1.067756,5.51111,2.06991,2.3126433333333334,5.75235,1.3030777777777778,2.96759,1.0329727272727274,3.0747366666666665,4.63027,3.0599866666666666,2.9113966666666666,2.0751033333333333,2.6240866666666665,4.48889,4.68492,5.23275,1.6448525,4.442925,3.35427,4.550726666666667,3.442776,2.2531066666666666,4.709168,1.028368,2.7176538095238096,5.5518,2.651925,4.0835875,1.459175,2.7584199999999996,1.9175280000000001,1.9175280000000001,6.933776666666667,3.0741300000000003,5.983394166666667,3.3455883333333336,1.8082166666666666,2.921690952380952,4.678675,5.52455,8.336205,4.843343333333333,2.628576,1.6891033333333334,2.0421835,4.10735,3.69932,1.6522279999999998,2.0589425,2.7208387500000004,1.176675,3.1365200000000004,19.269211666666667,3.3579333333333334,2.893213333333333,3.315533333333333,2.881266666666667,2.70116,1.6268266666666669,3.0669466666666665,3.5145999999999997,2.77103,2.4849533333333333,5.733587333333333,2.535703333333333,4.644799428571429,3.084033428571429,2.6251994285714284,1.59047,4.146473333333334,2.201865,4.018015,4.85339,3.72779,3.040941666666667,3.2507800000000002,2.59059,3.3192466666666665,3.287713333333333,3.8676333333333335,3.2773466666666664,0.8590663636363637,5.227,2.387235,3.397066666666667,2.8197444444444444,1.9539075,2.2328841666666666,2.2328841666666666,3.666669166666667,2.1409075,4.50036,4.386305,3.87548,4.39911,4.858215,4.4072725,4.4072725,3.87063,2.96941,4.40162,2.7873,1.584324,3.0704366666666663,4.41117,4.06141,2.521125,3.672825,5.47642,3.944266666666667,6.231338511904761,2.832105,0.971904,0.971904,3.321515,4.841785,3.756005,3.4025559999999997,2.4129666666666667,1.7577866666666668,2.0305766666666667,3.2394,6.762385999999999,1.4424783333333335,3.86038,3.5821,3.83919,4.67973,4.8141,4.901545666666666,3.1428999999999996,2.4560675,4.3249,3.190745,2.087725,1.177768,4.337775,2.78595,6.229316666666667,3.4433666666666665,2.58387,3.233965,3.793785,3.47838,4.775715,3.539625,4.58292,4.04916,4.216275,3.638285,3.28697,3.498595,5.2756,2.4758,4.5943,3.309095,5.0054,0.6532122222222223,2.3437675,1.89393,1.7834,1.78414,2.45229,2.7005666666666666,1.9999133333333334,4.887945,5.84408,1.9625666666666666,4.345655,4.680005,2.2797975,5.33845,4.289847916666667,4.907805,5.24885,7.463035,2.46916,2.9125533333333333,1.8882866666666667,2.9263766666666666,1.90398,1.8092,3.93441,3.45775,5.7282,1.02942,3.09752,4.40102,2.26983,5.51345,3.682885,2.586395,3.7122333333333333,3.340675,1.663145,1.983153,2.72175,2.93245,3.234675,1.9527875,3.6247999999999996,3.6247999999999996,3.555025,3.393675,20.048057083333333,0.90986,4.6503575,1.9267075,1.9413933333333333,4.06763,4.106525,1.8531425,3.55073,4.80911,1.7820833333333335,1.7820833333333335,1.4091333333333333,1.71319,2.5155066666666666,3.09445,4.432526666666667,3.389165,3.670533333333333,0.5116868421052632,3.5114335087719297,1.9195933333333333,2.184285,4.403065,3.51729,3.865175,3.83559,4.63438,4.198955,1.9788425,2.97848,5.74743,2.58829,3.84399,5.22695,2.266175,4.68339,6.09005,1.4721857142857144,2.02922,3.6817333333333333,0.9248885714285714,3.2184899999999996,3.21664,5.06055,4.708895,2.7192075000000004,8.130203333333334,3.0823033333333334,3.008836666666667,0.46002,4.46034,5.443058333333333,3.23365,5.3613,3.71505,2.598822222222222,1.720716,5.315915499999999,4.28611,4.11573,2.24613,2.0802625,4.1325,4.0887,2.9239633333333335,2.032175,4.270326666666667,6.595807499999999,2.735,3.81232,3.42353,4.236845,1.4365142857142856,1.4365142857142856,3.07274,3.1106033333333336,4.450105,4.87321,6.4421,3.45995,2.704325,2.15697,1.5236316666666667,1.3521457142857145,5.15825,5.9133375,5.3174,5.6727,4.32941,6.714385,3.92338,2.87302,3.823636666666667,2.162316666666667,2.966399,1.646198,4.40112,2.3665333333333334,4.16826,5.2004,4.01095,2.748443333333333,2.8143166666666666,1.5688,2.4717975,4.0037666666666665,2.12374,0.580568125,3.27026,2.803793333333333,2.6582866666666667,2.5196833333333335,2.1228475,1.729888,0.698659090909091,0.698659090909091,3.7662999999999998,2.0381675,2.443425,4.29336,5.25785,4.46338,4.826645,4.55139,4.220505,2.552819,1.2136500000000001,2.876165,3.912845,1.1185925,3.8002275,2.72927,2.86977,2.31977,3.873635,2.904395,1.9914333333333334,1.3363885714285715,4.386765,6.629655,4.081465,1.6460735714285715,4.65955,4.19907,3.519815,3.358885,2.72299,1.69498,1.0219375,3.78153,2.616364166666667,2.0768766666666667,1.6460133333333333,2.3050466666666667,2.2279633333333333,2.44903,2.712585,1.3045466666666667,1.8880633333333332,1.0237175,6.532795,5.4444,5.0953,3.845855,4.206975,3.1270366666666667,1.7661311965811968,4.9131,4.51929,2.623435,5.12225,2.081,4.343735,1.1676333333333333,4.01338,4.153635,1.88652,7.67311,3.44907,1.923385,1.75764,1.759295,2.55705,3.232006666666667,1.322571948051948,2.99159,5.75725,4.31779,4.48772,5.82365,5.5166,5.58085,0.97237625,4.337,4.6757,4.09052,4.91451,4.2597233333333335,4.65883,5.2883,2.97287,1.2089516666666666,1.2089516666666666,5.2654,6.376971666666666,2.92951,2.8758433333333335,4.426875,3.759055,1.653584,2.848215,4.851475,3.78708,3.98576,2.9254866666666666,2.7992399999999997,4.85542,2.329074125,11.020459296238075,1.8893366666666667,0.89831,2.417056666666667,1.87435,2.2858225,2.245605,1.8592359999999999,3.088756666666667,5.60275,5.48205,3.088573333333333,1.73565,6.3075390476190485,1.3817814285714287,3.150846666666667,0.5188428571428572,4.155626666666667,5.70065,3.38787,4.957775,12.80519,5.63935,3.2502933333333335,3.08196,4.949965,3.0725700000000002,5.21925,1.20460625,1.1567,0.6987454545454546,5.9885,3.93654,1.723918,4.747794,4.728495,6.22785,4.77669,5.0266,4.404925,6.67685,3.86336,5.4978,4.545485,1.274734,4.75145,5.8227,4.21883,3.950185,5.0764,3.028095,1.1683875,4.755185,3.754025,1.23393,3.521933333333333,2.85801,2.4260533333333334,2.6468366666666667,2.5761766666666666,2.7503100000000003,0.6955681818181818,3.055196666666667,2.8745833333333333,2.5643333333333334,2.132843333333333,3.0582700000000003,1.957645,1.6415033333333333,2.502075,2.33393,2.2129325,3.5782333333333334,3.0891800000000003,0.7183889999999999,2.63862,3.26531,5.02075,2.471303333333333,3.920255,5.6327,5.0527,3.398845,3.804795,1.4450714285714288,4.116895,2.6333194444444445,3.9699099999999996,2.960685,4.901145,5.17685,5.40565,3.92873,4.136733333333333,0.585592,0.585592,2.1910721153846153,1.6194075,4.17338,2.5156715,2.5156715,5.4758,6.35275,3.2248,1.1255616666666668,1.5709428571428572,6.1857,3.55659,3.1893766666666665,3.3129,2.801785,3.150275,3.1893766666666665,6.951935,3.289845,2.974458333333333,2.8935,2.03022,3.116195,6.1158,2.429815,2.56266,2.385425,5.7138,4.989,5.8225,5.8225,5.7073,4.531175,0.63521,4.725065,4.76852,2.854895,2.844695,10.086033333333333,3.161653333333333,4.562055,3.587185,3.7810666666666664,5.65735,2.55755,3.28648,2.9081466666666667,3.1652566666666666,2.49219,1.43728,1.43728,3.52137,3.74364,4.12611,1.761674,1.6855619999999998,49.26694299242424,2.6918066666666665,0.847840909090909,3.2670333333333335,1.7656425,3.3447333333333336,2.9036566666666666,3.3657333333333335,2.99553,2.9400666666666666,1.8935733333333333,1.00408125,4.6893,3.22141,3.487585,4.70701,5.18685,5.1185,5.19285,5.54875,5.6959,5.11065,5.7987,6.4564924999999995,5.1521,5.7597,2.037015,3.81247,6.69135,5.51775,4.20478,4.852905,4.40572,3.20022,3.972565,4.58428,3.1925833333333333,3.7753333333333337,1.69307,3.628965,1.350804,3.21153,3.83327,3.540865,6.9444425,4.12561,2.365585,4.296695,3.81277,3.856995,1.06671875,2.79518,3.872975,4.352375119047619,1.1525125,5.14375,1.4466075,6.2972,0.6937822222222222,3.84462,10.505403333333334,4.250485,3.888145,4.04406,1.8203833333333332,4.5577,5.3913,3.2604399999999996,4.251455,9.219220833333335,3.488766666666667,2.3335766666666666,2.9126666666666665,2.94027,2.921726666666667,2.755368,2.34204,2.7817333333333334,3.02612,2.7457133333333332,2.8135766666666666,3.37035,2.24586,1.5942666666666667,4.687239999999999,2.933386666666667,2.56628,5.025186,2.885676666666667,1.10459875,1.93951,2.8797766666666664,5.164039285714285,2.782725,2.1308422222222223,2.1308422222222223,1.63318,1.5793275,1.9949739999999998,1.790514,6.532885,4.38302,2.7575,2.8912166666666668,3.7845999999999997,1.968195,0.5619991666666667,2.377823333333333,1.93025,0.6060376923076923,3.842375,2.55715,2.638325,3.484335,4.0232475,2.785436666666667,1.5896033333333335,1.460915,2.127715,3.331175,3.82901,4.3945975,2.8324233333333333,3.94524,3.68203,1.116009090909091,8.88852,2.6184,3.209785,1.31355,2.8903766666666666,2.3654475,2.3654475,2.3654475,4.543525,5.6069,1.831695,5.16495,1.403586,5.707563333333333,1.58337,4.180545,4.153885,4.4735,3.637565,4.760545,1.948915,8.3576425,4.666625,5.03785,3.167895,3.748861666666667,3.1588766666666666,2.91295,3.93413,2.8214433333333333,4.630397142857142,4.804988333333333,1.613315,3.883945,1.613315,3.49111,4.4806425,5.21907,4.4806425,1.7412233333333333,6.0402,4.730905,4.39631,2.726046666666667,3.0732666666666666,4.467335,2.940285,4.283255,0.5753364285714285,3.1343333333333336,3.0657300000000003,5.4962625,4.72538,2.51975,4.886555,7.620336666666667,4.135455,3.02805,3.19316,2.6475666666666666,4.183905,4.04387,4.77954,2.53071,4.17919,0.900442,5.2158,3.731655,3.95284,2.5210966666666668,3.0515933333333334,2.2516966666666667,2.98683,2.8434633333333337,2.90089,3.357965,2.60895,2.60895,4.667914166666666,3.219125,4.656945,11.6038375,0.9975377777777779,4.63236,2.35035,2.2148,3.1334400000000002,1.4343375,7.414893666666666,3.8036666666666665,4.243125,3.7476858333333327,2.24703,3.861333333333333,4.783072916666667,2.672776666666667,0.5079666666666667,1.83527,1.4963575,5.05595,2.82958,3.228525,3.770385833333333,3.5784008333333333,2.5635875,4.73293,4.729945,4.03034,4.126725,2.205405,4.39941,2.5214933333333334,5.891123333333334,3.12045,5.2175,4.507215,4.055155,4.323935,1.895935,3.748915,3.518495,2.6030866666666665,4.53814,2.968435,3.231845,3.92504,3.55376,2.980323333333333,4.819595,1.9219,3.848145,2.78655,4.67708,3.773865,3.96598,4.98886,3.04417,4.6568,3.637675,3.94849,2.6350966666666666,2.06523,2.895605,2.389645,0.8522683333333334,4.460115,2.142725,3.44702,2.73958,4.198245,3.256725,2.87086,2.996545,4.03008,4.725422,3.861555,3.42235,1.6663466666666666,3.452045,2.54462,0.9993188888888889,4.76544,9.28642,3.27034,3.45892,4.17225,4.9898,3.77144,2.31029,4.009175,3.94234,3.12122,3.1064,3.33406,0.61755375,1.3399085714285714,6.2045625,1.5846075,2.683085,4.945138,2.560525,2.309535,2.686135,8.00437,3.090715,4.159125,3.62929,0.7471722222222222,3.436885,2.7649,3.73176,4.673455,5.6191699999999996,0.662524,3.379365,9.10647,3.226385,1.0715511111111111,5.111290416666667,4.78368,5.4026,4.770775,4.72625,3.253305,2.6246933333333335,7.56908,0.8593999999999999,3.39252,4.32692,2.845825,3.92622,2.35311,4.38274,1.7057833333333334,4.30489,4.04996,3.88167,1.71785,4.74948,4.47409,2.1760925,2.162825,2.553575,1.067756,4.02914,3.4629145,1.6328,8.952210000000001,5.61775,4.66469,4.48418,3.417245,4.374365,1.3320385714285714,4.66519,3.956925,5.4129,3.669215,2.3879,6.707327649572649,1.05498,1.05498,2.4315966666666666,0.9329085714285714,4.357185,2.787663333333333,1.00758,1.8080299999999998,0.40429,6.479125,1.0009975,2.789065,4.03514,4.041515,3.449175,4.36166,5.1775,5.61608,3.33007,3.05815,2.432125,4.807295,5.19525,4.46785,4.22675,3.883225,6.362,4.065895,4.130467777777778,6.022833,3.644555,4.1130375,2.310855,4.1130375,6.819465,41.542787255411255,3.64561,3.341065,2.896293333333333,4.589575,4.331705,3.355775,3.524055,3.94905,4.042935,4.26685,1.74655,5.00905,2.55294,4.55452,5.4158,5.3207,2.3519133333333335,5.13015,3.85476,3.255275,1.6765139999999998,0.6442623076923077,1.54522,3.976766666666667,2.9894833333333337,1.3054375,3.4285,2.7164633333333335,2.8468433333333336,3.00259,3.06396,1.334786,2.610063333333333,3.7576666666666667,1.8366978249678252,2.8757866666666665,3.343442,2.9142733333333335,2.60711,3.368,1.1492777777777778,3.95128,3.946335,1.196615,1.196615,1.196615,1.196615,2.9283763636363638,2.00354,2.406655,3.43994,3.917185,4.44804,4.28708,4.28176,5.6823,4.92577,2.260325,6.11575,3.571265,2.67028,3.67708,3.70796,4.620185,4.425725,0.7837999999999999,1.38926,1.5778466666666666,4.7851,4.4785,4.500845,4.115585,6.180123333333333,2.334616666666667,4.740235,1.6947333333333334,4.127895,5.37375,1.5305166666666665,5.6341,0.8247016666666668,5.01585,1.453746,1.223365,3.82185,4.61019,5.16385,5.6535,5.5586,3.623625,1.414974,4.479135,1.4947775,3.52388,3.21999,2.598822222222222,1.7469375,3.61221,1.3964800000000002,3.291805,4.632405,2.7760833333333337,5.81175,123.1718950609668,0.46893,4.61665,2.38942,4.76033,4.094355,2.763485,1.45545,0.34420047619047617,2.88349,3.643125,5.41935,2.5752,3.63168,4.51777,4.499805,4.543295,8.03642,0.6655599999999999,3.361,0.94888125,11.66624,2.97137,3.47649,0.9454822222222222,2.29632,2.616395,2.05304,2.9856166666666666,3.358033333333333,2.16404,4.24744,2.8360466666666664,2.396176666666667,2.2570799999999998,5.25605,3.970035,3.07092,3.448275,3.583785,3.921375,2.238586666666667,3.695375,3.32189,3.110395,1.1127555555555555,2.5012133333333333,4.24744,4.41384,5.4791,4.086285,3.97577,1.94622,10.51393,3.79845,2.58793,3.363545,5.84395,0.5545366666666667,0.5545366666666667,4.445422499999999,4.445422499999999,4.09345,3.8757333333333333,1.8381075,0.6317858333333334,2.89098,4.337915,4.245705,3.092155,3.965685,5.68609,4.825175,1.9960125,4.398295,2.02353,2.69864,4.202115833333333,1.860415,2.802565,0.58861,2.4304900000000003,2.4304900000000003,2.01022,4.73179,4.62295,4.706525,6.873746000000001,2.867525,3.078775,2.00793,2.19049,4.572509166666666,3.941215,5.415853333333334,2.36418,5.415853333333334,4.876905,3.57581,6.23125,3.76539,2.3525633333333333,1.8776633333333335,2.958576666666667,1.4333325,1.4335575,1.4390475,1.5236525,1.46434,1.575865,3.6275999999999997,4.62396,2.385135,6.93475,2.8436233333333334,4.67628,2.59785,4.28383,3.08104,2.9945,6.188333333333333,3.529533333333333,4.653022666666667,3.3815000000000004,1.33826,2.56618,2.7065266666666665,2.450273333333333,5.1078,4.2199575,5.0239,12.73270025168691,0.7184308333333332,1.96109375,2.517025,1.6795179999999998,1.29867,2.535125,2.44554,2.4180675,2.4017225,0.7283515384615384,1.96214,0.5179726315789474,4.74649,2.008685,4.53133,4.96979,2.6873,5.5086225,4.59839,7.79309,3.902405,2.86261,3.15653,4.72687,4.552775,2.8070012380952383,4.6631,2.1446275,2.1446275,5.1414,3.796935,4.21114,3.89726,3.4706333333333332,3.87083,4.943495,4.833275,4.67793,4.526085,4.493215,4.403535,2.40069,4.705455,1.4738566666666666,5.1377,4.52647,2.428103333333333,2.4252466666666668,4.692725,1.455795,4.677605,1.9817825,5.872134384057971,3.935625,3.74089,1.5946166666666668,3.2395491666666665,3.2395491666666665,12.66775,3.86121,4.57251,1.09813,4.3000620000000005,2.52575,1.430385,2.5264,1.697065,2.127215,1.8251439999999999,3.19926,6.6169,1.71632,4.9368,4.654751666666667,5.10385,2.25518,2.551925,4.403555,4.597725,5.41935,3.9397,7.048778333333333,3.1616666666666666,2.9852733333333332,0.47504611111111106,4.10281,3.96291,3.235803333333333,6.054038333333333,2.49522,3.028893333333333,1.2832816666666667,1.4416933333333333,0.580568125,1.83527,2.84,1.5096733333333334,1.6378633333333334,0.6744375,1.33439,4.53019,2.567725,0.5965838461538462,1.9420166666666667,1.6435675,1.8775179999999998,1.2565666666666666,2.077415,1.4416933333333333,2.4538075,1.33439,1.33439,0.5965838461538462,1.5939142857142858,2.6036200000000003,1.2167116666666666,2.7964,0.5965838461538462,2.69005,2.6036200000000003,1.18497,1.18497,1.18497,2.05068,1.14203125,0.5965838461538462,1.16662,1.16783625,1.0839122222222222,1.900532,2.61985,0.9178166666666666,2.31729,1.6807142857142858,0.5965838461538462,1.57702,1.4416933333333333,1.9801666666666666,1.9872166666666666,0.8790229999999999,1.9801666666666666,1.0531855555555554,2.1760925,2.4232675,2.3814175,1.16783625,2.20848,1.3964800000000002,1.3964800000000002,0.9552545454545455,0.9552545454545455,0.9552545454545455,1.2832816666666667,1.4416933333333333,1.6807142857142858,1.9420166666666667,0.9241842857142857,1.9872166666666666,1.564852,1.808684,1.8609660000000001,1.2832816666666667,2.66204,12.206705,0.6744375,2.6622399999999997,1.8687166666666668,2.727475,0.9233971428571428,0.9233971428571428,0.5965838461538462,1.3227333333333333,1.729888,1.6807142857142858,1.7180240000000002,1.9872166666666666,1.1676444444444445,1.1676444444444445,1.7054719999999999,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,3.3833333333333333,1.0531855555555554,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.21040722222222222,0.38874500000000006,55.249914806637804,1.415515,1.4974466666666668,1.6807142857142858,1.8687166666666668,0.9241842857142857,0.6276058823529411,0.724035,0.724035,0.724035,0.724035,4.358033333333333,16.473160416666666,3.4364333333333335,0.6791481818181818,1.584896,1.584896,1.584896,0.6791481818181818,2.84,0.5965838461538462,1.57702,1.6378633333333334,2.44148,1.0531855555555554,2.51975,1.0531855555555554,1.564154,1.564154,2.060916666666667,2.060916666666667,0.5965838461538462,2.0975,2.0975,1.0179454545454545,0.21040722222222222,2.84,1.5873666666666668,2.389485,0.6791481818181818,0.6791481818181818,0.6791481818181818,0.6791481818181818,0.6791481818181818,1.8687166666666668,0.38874500000000006,1.0531855555555554,2.295215,2.295215,2.606375,3.1221833333333335,0.6575380952380951,0.6575380952380951,3.2782699999999996,4.010166666666667,1.2125771428571428,3.2173599999999998,1.01645,2.29223,2.0015,1.1276183333333334,3.043753333333333,2.2935775,3.2128366666666666,5.31145,2.340295,1.2722888888888888,4.3646,4.65504,3.0222333333333338,1.7390560000000002,2.221818076923077,4.84487,1.578952222222222,2.7268833333333333,2.84883,3.477133333333333,2.46103,6.306976666666667,4.32645,0.21040722222222222,3.3288433333333334,4.913735,4.37505,4.25654,4.250365,4.63219,3.0109366666666664,1.905796,3.65081,4.4473,4.28391,4.477705,5.57285,3.332945,0.6614483333333333,6.8587299999999995,1.4217716666666667,3.226616,4.91071,2.7987033333333335,2.7987033333333335,0.8265454545454546,1.7469375,3.34583,3.14545,4.993545,4.488005,5.0223,5.5193,1.0157171428571428,4.85372,5.23395,7.410748333333333,2.2388566666666665,4.137775,4.26355,3.4236,4.5225,4.52204,4.64589,5.423884999999999,4.979265,4.667978333333333,3.68299,4.458483333333334,7.213089999999999,1.8622575,1.6494197435897435,2.864546666666667,1.8105900000000001,2.69049,1.8868600000000002,4.947095,2.7888699999999997,4.556455,2.0027999999999997,5.08775,4.03984,2.879485,4.209025,3.679335,2.4453466666666666,2.6532966666666664,2.8479833333333335,2.721173333333333,2.2671466666666666,1.7313166666666666,2.6356066666666664,2.8475266666666665,1.94177,1.94177,3.763865,2.8850200000000004,1.9428366666666665,3.030666666666667,2.0977,2.12661,2.97793,2.64573,3.4023333333333334,5.11095,4.69465,4.561535,3.79347,3.79347,4.048115,3.340866666666667,4.74676,4.142615,3.64874,3.412345,3.304725,6.97049,2.00203,1.88262,3.433545,3.067175,1.6904766666666668,1.6904766666666668,3.40281,1.927645,3.942369333333333,3.59731,3.04271,2.103244,2.324882,0.5674791666666666,2.73658,4.01403,2.09301,2.5533,4.333075,1.1287866666666666,4.874725,1.2444933333333335,0.383835,0.5167928571428572,21.81213160218254,0.5167928571428572,0.383835,0.6497507142857143,10.919049999999999,3.241286666666667,4.272515,4.399855,3.5504075,2.55352,4.4410235714285715,2.44472,2.72856,3.00799,3.027935,4.210085,4.62841,3.36527,2.42493,3.110235,3.94815,3.929605,3.00155,1.0987459999999998,1.0987459999999998,1.0987459999999998,1.0987459999999998,3.22303,2.851135,2.978275,1.7437933333333333,1.231805,2.381745,3.597135,3.599825,2.77663,3.98089,2.584545,2.7737875,3.744215,4.067195,1.07301,3.1144866666666666,1.09937,2.9379299999999997,2.3022666666666667,3.6857,5.24895,2.442486666666667,4.759485,4.336943333333333,0.8472681746031747,0.25652928571428574,0.25652928571428574,0.5907388888888889,0.25652928571428574,0.25652928571428574,0.25652928571428574,0.5907388888888889,4.439815,7.400436666666667,3.537635,0.54975625,3.53165,7.409695,3.18748,3.2225433333333338,1.1255416666666667,4.48141,5.3983,4.347415,4.997345,1.6284300000000003,4.99849,2.1777,2.3767406666666666,3.684505,5.604,0.7910785714285715,0.7910785714285715,3.39836,2.818576666666667,2.88836,3.33436,2.53591,5.425,4.0482,5.15025,5.1906,5.5893,2.48077,1.78742,4.607815,3.480745,2.303905,3.6815,3.492145,1.9531625,1.1408166666666666,3.88724,3.1602,5.16535,6.564726666666667,1.5334416666666666,3.89693,1.15992,2.5895,3.670875,4.20522,0.38572071428571425,4.298905,4.413875,0.9447469999999999,2.899736666666667,7.80509,4.92953,2.237185,5.838272,4.54818,3.65827,1.3932666666666667,5.4708733333333335,3.2577966666666662,3.24287,3.3867,1.96225,1.96225,6.3949750000000005,6.3949750000000005,3.659830357142857,3.659830357142857,9.83447,3.659830357142857,3.659830357142857,4.395145912698413,6.59215,5.41445,3.557265833333333,2.7693100000000004,4.040775,4.40408,3.3436,3.24306,4.537435,3.3046900000000003,2.6365233333333333,3.1017833333333336,2.2256633333333333,2.59262,4.858465,7.380504999999999,6.6549525,4.342985,3.63077,3.916715,6.63491,5.10685,4.393115,4.450555,3.28187,2.3622566666666667,1.99533,2.194115,5.375,5.3419,4.72281,4.2395,2.308803333333333,2.86908,7.043551666666667,2.05068,2.4936633333333336,3.29054,3.29054,3.036085,5.3502,0.7766275,3.1796166666666665,3.877395,2.900463333333333,10.536575000000001,4.710355,2.6451366666666667,2.4605966666666665,5.9086,5.86645,2.778045,5.40345,2.520356666666667,3.969585,2.984283142857143,4.60433,5.42825,4.884145,0.9425083333333334,3.6718666666666664,1.154885,2.47837,5.1316695441176465,7.696680000000001,2.8594333333333335,2.6361433333333335,6.439076666666667,1.7020700000000002,4.561685,5.6551,3.774975,3.589255,2.2229633333333334,4.689755,2.464715,0.4572169230769231,5.0473,2.89047,3.4445,5.15795,4.92175,5.13485,6.811702499999999,4.70778,5.4788,7.28522,52.766313333333336,4.64445,3.83792,4.436855,6.16195,4.263825,4.748555,3.94163,4.8421,1.8355,4.145415,4.27414,4.81943,2.519675,5.00615,4.68713,1.5873680000000001,5.9404,6.522,7.601303333333333,5.2958,3.338105,4.734735,3.27028,3.18974,3.610515,4.099075,3.625705,6.49347,2.636,1.06115,2.3188255,0.693584,0.693584,3.216215,0.693584,2.404540642857143,2.404540642857143,3.006102642857143,4.9424185000000005,5.266668142857143,2.3188255,4.818575,2.795045,1.41993,5.49805,2.19635,7.944621333333334,6.128963333333333,11.51176859848485,3.2448,2.9305800000000004,0.2132848484848485,1.7090683333333334,2.4379866666666667,0.97604875,1.7219666666666666,2.5757,1.712,2.879475,0.629703,27.825660833333334,1.97189,0.8170307692307692,2.8466400000000003,2.8466400000000003,0.4049627777777778,1.65133,3.264665,1.21775,1.921645,1.5430875,4.37895,2.88685,2.0276533333333333,2.382026666666667,1.1598249999999999,2.0032025,1.6150399999999998,5.5459794166666665,3.483675,6.944821666666666,2.528875,3.3661999999999996,1.0266466666666667,2.947225,4.79068,5.814064999999999,3.3302300000000002,2.24626,5.6973625000000006,2.3440625,2.6691233333333333,4.377985,1.1273033333333333,3.7667333333333333,2.4263600000000003,6.1221,5.0361,6.21475,3.735655,4.241245,4.241245,5.3049,1.7146,5.68145,2.7027566666666663,1.635365,4.523055,3.48109,6.295885,4.20871,2.852123333333333,3.3320066666666666,2.8549,1.1673571428571428,4.99771,1.03508875,5.335123333333334,4.513885,7.79199,4.711855,4.51682,4.02454,8.509598333333333,5.30745,5.34425,1.09127,0.6901671428571429,4.552535,4.782625,2.133315,3.17055,3.231245,4.23166,2.29867,5.0733,2.2924866666666666,5.36325,5.41425,4.850545,4.86977,4.390055,3.59077,6.6622845,3.26872,4.69045,3.206,3.93862,5.825274761904762,0.5892228571428572,3.7534666666666667,1.71051,0.6187577777777777,4.26131,2.68621,1.004835,1.91582,6.28081,4.250995,2.212,2.722936666666667,2.6282433333333333,5.12875,3.903415,1.6009250000000002,3.99919,2.5482766666666667,3.4723333333333333,5.097,5.11185,3.2734783333333333,3.751533333333333,3.6098,1.9936399999999999,7.35877,4.699725,4.78325,4.952415,2.3966225,4.438895,4.71801,2.93661,3.94717,10.850805000000001,3.73932,4.578416666666667,5.2118,4.66163,2.535875,4.52085,4.419555,5.0413,3.1866333333333334,4.15063,1.6757025,2.8933066666666662,3.44767,3.36583,5.4576,1.823726,4.68403,3.14672,5.29665,3.1153633333333333,2.464365,4.07134,4.110245,1.075075,3.350295,2.6958533333333334,4.417256666666667,1.617252,1.6582066666666666,1.113705,4.089545,5.86075,5.856084999999999,3.7489225,3.28498,2.396415,2.14891,2.450575,1.5941866666666666,5.7053,3.024825,1.54857,0.9136153846153847,21.056727000000002,3.046715,3.0874958333333336,4.948121666666666,4.024523333333334,1.2669666666666666,2.6934246666666666,2.843340909090909,1.27453,1.7947833333333334,3.936495,5.37015,3.8085683333333336,3.408335,5.30575,4.8811,7.149962500000001,4.81107,4.995875,3.749355,2.95382,3.964055,3.933735,3.4202,4.385015,2.0459775,5.0213,8.33247,3.40226,2.821515,3.58407,0.587505,3.2188833333333338,1.9832833333333333,2.43011,4.322795,3.58899,5.2159,3.538215,2.879875,2.3972275,1.75614,0.9573919999999999,1.7176966666666666,1.2661833333333334,4.00519,3.88495,4.601065,4.8734,7.35512,2.3148133333333334,1.36984,2.4617666666666667,8.067136666666666,3.49377,2.961325,3.148815,4.49503,3.7796725,3.523755,1.6630220000000002,4.308855,4.97966,4.15864,3.714865,3.51908,4.36537,4.90499,3.901795,4.616225,3.63652,1.9948,3.08235,3.41371,5.35425,2.876995,4.3432255,3.43312,2.901155,2.73244,2.4586900000000003,2.098403333333333,2.6644743333333336,2.6644743333333336,1.9201833333333334,3.04907,2.36008,2.334026666666667,2.01055,3.955655,2.32846,2.780086666666667,2.678546666666667,1.70103,4.1022,2.94512,3.30834,1.8657833333333331,5.19795,5.19325,4.668389444444445,2.259615,2.202065,2.52986,2.52242,2.160805,2.62513,1.9233175,2.706825,2.529475,6.717253666666666,4.47631,3.56387,0.58531125,4.39205,4.306685,4.46105,2.89498,3.781165,3.7426841666666664,6.1143,4.43258,3.22385,2.840544285714286,2.1327913333333335,2.4153,1.8045259999999999,1.675702,1.569088,2.0164,1.65702,1.373825,4.200990285714286,0.5965838461538462,0.5518033333333334,2.13542,1.5346966666666668,1.5433759999999999,1.4577499999999999,2.3159848484848484,1.4303766666666666,1.8890360000000002,0.62350125,173.95073381576267,0.5215973333333334,2.0572399999999997,1.046098,1.25565,2.060445,1.461745,1.9796375,2.5254166666666666,2.05838,7.07645,2.964945,3.4201438095238093,1.9205733333333335,2.97855,1.273375,1.273375,5.8173675,0.4820744444444444,2.431645,3.4065999999999996,3.2050733333333334,0.7923572727272727,0.6853058823529412,1.3721154871794874,1.1251818181818183,2.66895,4.16425,2.0526425,2.13518,2.25901,4.945041555555555,1.1094455555555556,4.503175,3.49498,3.53946,6.79107,1.9706066666666666,3.005795,2.55451,3.7944750000000003,2.518345,3.19447,3.3844,2.99977,4.307205,3.083505,5.80451,1.98366,2.387265,3.07648,1.5391,2.3996,3.06631,2.942135,1.728915,1.499405,2.229,4.427225,5.56525,3.23728,2.902815,1.43453,4.094115,3.3741333333333334,3.6954666666666665,2.84937,25.52501794658119,2.51107,2.906553333333333,3.208493333333333,3.4171,3.164896666666667,6.296143333333333,3.1280066666666664,2.5209733333333335,3.5554333333333332,3.526733333333333,2.093856666666667,3.20666,3.3263166666666666,3.2533999999999996,1.7270833333333335,1.5854382500000002,0.611842,2.3505233333333333,2.16943,0.2311775,2.62508,3.07598,0.2311775,0.2311775,2.0017441666666667,0.2311775,0.2311775,0.2311775,0.2311775,2.8852666666666664,2.677773333333333,0.5891569230769231,3.394200714285714,1.6081775,2.0131,5.1641,4.410455,6.4221,2.27673,4.98899,2.190915,2.789213333333333,1.3019442857142856,5.805626666666666,2.7801266666666664,6.5727625,0.9647749999999999,1.2984125,4.79413,5.07675,36.142579397019645,1.8313479999999998,1.3799066666666666,2.290976666666667,2.3630675,0.9552545454545455,2.3255,2.50564,2.7163066666666666,2.2893399999999997,2.495903333333333,1.65009,2.6769233333333333,2.3235766666666664,2.51896,2.708883333333333,2.2352966666666667,4.58197,3.4857666666666667,1.144292857142857,3.734495,3.983355,20.019149555555554,2.8861733333333333,2.8529033333333333,2.7440700000000002,0.9282400000000001,2.9613039999999997,1.7504688888888889,2.9613039999999997,2.3983,2.66581,3.1233299999999997,1.76012,2.0181425,4.74959,3.9006,5.26375,4.25977,1.6360800000000002,5.17805,1.808085,4.83944,4.139176142857143,4.81274,0.7844336363636363,2.133045,2.3501575,3.3063260000000003,3.35135,1.06173375,3.358085,2.15382,1.9136333333333333,1.048632,1.048632,2.1247433333333334,3.11263,4.742305,30.35124,6.229134999999999,1.8959833333333334,3.5516,0.37518866666666667,6.4141975,4.906135,2.8280600000000002,3.06896,5.9259225,4.0263,1.2304575,4.287285,1.194368,3.60891,4.6975,5.4201,2.11248,3.0182,4.190745,2.572035,3.682958,4.18498,1.3811166666666665,2.56969,4.008345,4.6631775,2.8862966666666665,3.2104266666666668,3.0955266666666668,3.176395,3.911785,4.356835,4.162733333333334,1.60149,5.9193,2.60942,1.741048,4.130445,5.4981,3.96366,3.65452,0.7764975,2.864425,3.512185,2.140765,4.590925,2.774825,3.70741,2.89949,3.1710766666666665,2.58951,3.33056,3.4217999999999997,3.3365666666666667,4.648855,4.70596,4.94021,1.808405,4.27837,4.08574,1.929365,1.751945,1.662195,4.099398333333333,4.87058,5.527843229166667,3.865735,3.8214666666666663,3.697125,3.2986299999999997,1.3242816666666666,3.373785,3.13082,3.94636,4.30809,4.59771,4.690995,2.781165,1.98925,1.612135,1.4717025,3.687195,2.45047,2.36526,3.339255,5.06085,1.884995,5.21905,1.3531614285714286,1.84242,3.2787,3.0742,3.414605,3.439685,2.98905,2.055595,0.9559236842105262,3.18748,3.831225,4.85458,8.600950000000001,2.155063333333333,3.07499,1.5615633333333332,2.63555,2.8712199999999997,1.2745416666666667,3.2007033333333332,2.77666,3.5345999999999997,3.9924666666666666,3.5314,6.8919266666666665,3.233556666666667,0.780749090909091,2.1596233333333332,3.23965,3.2316,3.3861,3.6915333333333336,2.54882,3.497965,3.77702,1.9616647142857142,3.806785,2.851448333333334,3.17369,2.1190533333333335,5.0554,5.6264,4.74899,4.207535,3.86388,1.3239444444444444,4.94546,3.475766666666667,2.360326666666667,4.74054,2.7225933333333336,3.0432166666666665,0.45611857142857143,0.45611857142857143,4.118236666666666,5.30445,5.54295,3.17695,4.41231,3.663775,3.109105,5.14195,4.12302,0.9778025,4.039415,2.7554833333333337,4.4605325,3.3334333333333332,3.065345833333333,2.0396366666666665,3.2637157142857145,2.621843333333333,2.9494066666666665,2.6316166666666665,2.8360066666666666,2.03674,24.12851010177866,5.1641,4.72076,4.05078,3.29407,4.663472499999999,3.302055,4.53604,4.711305,3.955595,3.624215,3.405285,2.7190366666666663,2.9717300000000004,3.0281866666666666,3.3810249999999997,2.8394733333333337,4.273885,3.34413,4.68793,5.01665,3.85692,1.401688,1.5008940000000002,1.5008940000000002,4.503895,4.13434,2.897263333333333,2.55467,2.9968466666666664,4.390325,3.39105,7.904436666666667,3.256016666666667,3.100046666666667,3.3089183333333336,4.802725,1.7400666666666667,6.161965,2.4059,2.4922666666666666,1.7227875,4.137855,3.35731,6.80494,2.953405,2.71773,4.25602,4.141561333333334,1.660805,2.797356666666667,1.6002433333333332,8.25769,4.18676,6.902036666666666,2.1500125,4.273045,3.642285,4.047915,5.36855,3.8344666666666662,3.8344666666666662,2.08696,4.5052,5.3193,2.397215,5.999500714285714,1.844,5.9365,9.464011666666668,3.6073,4.812239999999999,2.19715,2.165485,0.6345,4.46786,2.7513,2.8921,4.19624,2.47201,2.432373333333333,4.03505,5.3115,4.92323,4.203405,5.64925,4.380515,2.253335,0.9880454545454544,2.948375,3.28756,2.738113333333333,5.1194,3.94647,3.03851,2.54924,2.02922,4.78921,1.074105,5.1025,0.9908177777777778,5.3995,3.24117,4.98456,5.0897325,3.25031,3.26534,3.3508999999999998,2.350023333333333,4.246845,3.534555,2.49126,4.52885,5.3392,6.8133816666666664,4.682135,1.9851625,4.07394,3.7277,5.42452,1.87804,1.87804,2.8132099999999998,2.4544266666666665,2.4207933333333336,2.6154533333333334,0.8698130000000001,6.14925,3.800185,2.2612825,2.29073,2.634205,3.60125,3.21855,3.67736,4.166565,5.2403,5.4414,6.071,5.9215,1.42275,4.31104,1.0972916666666668,2.4171575,4.1537,2.431425,3.09803,3.18899,4.16101,3.4666,0.45863842105263164,4.58993,4.140905,5.0159,3.285455,4.966915,5.60365,4.461515,3.585545,1.88524,4.894435,2.051325,4.4576,4.4576,6.32475,5.005,5.5312,5.2821,2.58075,1.7400666666666667,4.52454,2.46204,1.6730266666666667,2.510345,4.183515,4.254875,4.708605,8.03987,1.7547499999999998,5.1475,1.3959833333333334,3.369085,5.78005,2.04099,4.832835,2.44188,4.52131,3.77964,4.531525,3.3399666666666668,4.06216,3.883225,6.1594,3.854405,3.797965,3.957305,5.6881,4.046975,4.668105,3.59517,4.54427,7.413618333333334,3.39565,6.96577,3.33704,5.36235,6.360280454545454,4.69986,3.36033,2.141275,5.6309,4.098205,0.8634055555555555,8.61917,5.724,5.2325,3.2740341666666666,5.2009,2.794305,1.715136,3.828045,1.07301,5.9343,3.17114,4.596795,5.3298,4.7775,4.122035,2.3445133333333334,4.022175,5.0809,1.35005,7.035795,3.049595,3.598295,5.43315,3.96338,2.020595,4.626845,4.849755,4.64737,3.0188166666666665,3.8079,3.64411,5.39355,4.561645,3.722855,1.7978975,1.7978975,7.466873333333334,1.5720857142857143,5.44565,4.26836,5.5818,3.974285,3.647555,4.72082,4.03189,0.8055766666666666,0.8055766666666666,0.8055766666666666,3.773995,3.061625,3.81217,4.620322222222223,2.817725,1.4465066666666668,4.73096,2.1977375,2.49019,4.24036,4.910315,1.37227,2.2341,5.95714,3.717625,2.577475,4.55525,1.5533325,1.9078775,3.01118,3.26884,5.8788,1.3997519999999999,1.588616,1.07699875,4.06122,3.374725,3.1988466666666664,3.1680466666666667,5.4228,1.7584060000000001,2.0195725,3.1758,1.552642857142857,3.43316,3.81911,2.5672,4.911775,5.6925,3.09997,4.625275,4.39934,3.33606,3.97463,4.44373,3.518845,6.58152,5.40625,1.9180466666666665,1.7765833333333332,3.58106,4.433275,4.047515,4.36356,3.2376533333333337,4.362895,5.5987,5.1398,2.66504,5.56675,3.964205,5.7182,7.78209,4.69758,0.7012790909090909,4.02254,3.7449358333333334,2.304285,4.21829,3.8222666666666663,5.5775,3.878375,4.35108,3.5853,3.99841,4.96022,4.61053,3.225155,3.556165,5.0925,4.228455,3.524225,2.866385,6.84978,4.84876,1.7773720000000002,3.216175,4.178105,3.765055,4.45657,4.68919,2.706106666666667,0.9036677777777778,4.287609090909091,6.7776725,4.0021,5.09715,3.505965,7.504493333333333,3.716605,3.3605,2.73996,3.560055,1.959505,3.3444,4.410905,2.607728,4.009035,5.2835,1.411945,4.739105,0.7104007142857143,5.0352,3.75848,5.74695,5.66195,1.4843983333333333,1.62603,4.10913,2.01187,3.98268,0.5390608333333333,5.35345,3.13446,1.48316,6.0627825,6.6263,0.876225,1.8026550000000001,1.2726359999999999,1.2726359999999999,1.2726359999999999,2.07723,3.985775,3.810425,4.44352,3.58929,5.0277,3.684195,1.90185,4.37026,5.6166,0.29278048780487803,3.60312,4.699625,5.53255,40.3805643560606,5.417796666666667,4.850695,11.786884333333333,5.0827,4.55213,7.835775,2.911515,4.520555,4.0667,4.75756,10.74343,3.72978,2.4916533333333333,2.7795,5.9721,4.069005,3.775085,4.32898,2.65056,4.55304,3.621425,7.095352,4.687125,5.1206,2.2824175,3.991085,0.52216,1.35204,4.16767,6.35525,3.103325,1.267885,1.267885,4.10122,3.973945,4.171425,2.663165,1.8303099999999999,3.755635,4.36184,1.7595725,3.265553333333333,1.7387460000000001,2.04584,4.052535,4.71051,2.1348125,4.637065,2.31534,2.224955,3.54197,3.697395,3.909985,3.82906,5.8214923333333335,2.4143673333333333,4.61631,0.7199054545454545,0.662745,3.739165,2.367835,8.876933333333334,3.4364333333333335,4.683535,1.6102175,4.78886,1.640195,4.13757,4.576755,2.7556066666666665,4.242205,6.11245,0.4240145,0.4240145,3.3280933333333333,3.2521400000000003,2.8139533333333335,3.977505,3.519715,5.0559,0.9225454545454546,10.137496666666667,10.24514,2.077415,4.99284,4.601655,5.1485,3.323935,2.6214633333333333,2.086,1.90834,9.7038125,2.2174675,2.7514566666666664,3.95201,4.84018,3.95201,2.58715,2.90209,3.0421533333333333,0.7410399999999999,5.526534166666666,3.30602,2.7184933333333334,4.284685,8.919844999999999,10.508635,4.65974,4.22426,4.220545,7.1427125,2.0937575,1.426075,26.836780833333332,4.003805,3.922085,0.960348,4.48121,4.08595,3.92478,4.56662,4.700085,5.90929,2.9549066666666666,2.073366666666667,0.7262058823529411,0.7570133333333334,5.38245,4.388785,1.4847466666666669,4.2533216666666664,0.8481333333333333,3.761233333333333,1.5103266666666666,4.0744,5.8731,1.954245,2.4791,1.992795,3.804705,2.898755,0.490475,4.247865,3.435155,3.1520433333333333,3.26595,5.55915,2.923273333333333,4.673615,2.9527,6.06545,8.802443333333333,4.85607,8.303545,2.5537,2.7655966666666667,4.26152,4.3411125,4.165375,4.589605,3.632755,4.885995,1.19822625,3.0963879166666666,3.3967679285714287,0.843004,1.5008940000000002,1.5008940000000002,5.36455,6.528091666666667,0.8645384615384616,4.80094,0.9648133333333333,3.0282966666666664,2.394906666666667,2.5348297727272726,7.0292,2.5079966666666667,1.2554333333333334,2.670306666666667,1.10652375,2.3004633333333335,3.0139266666666664,3.18523,3.263756666666667,2.498276666666667,0.9648133333333333,4.26282,4.616785,5.24825,2.869515,5.22225,2.24614,5.8309,4.684985,4.686685,2.9575866666666664,3.488135,2.1845425,1.5300275,4.366375,2.69665,4.2702,5.65725,1.754504,4.91208,2.6600633333333334,6.4423216666666665,3.32393,2.954105,0.9648133333333333,2.43403,3.57105,7.432091555555555,2.4116633333333333,1.5947520000000002,2.4116633333333333,0.4376583333333333,1.068924,3.347405,5.27375,2.1436825,3.411875,3.7600979999999997,0.582623,0.582623,0.582623,7.775895,1.583832,0.7564927272727272,2.911425,40.62643585930736,2.036791555555556,0.7353155555555556,2.90825,0.7353155555555556,3.458515,2.08281,2.29634,2.5683633333333336,5.8105,4.85078,4.18657,2.3928166666666666,0.8978142857142857,4.221365,2.892576666666667,5.0976,1.0420871428571428,2.748175,2.748175,3.73519,4.41573,4.2713,5.186175,3.36237,4.19523,5.3086,1.826896,1.16749375,5.4147,6.5222,3.866785,0.618647,4.68981,3.9974925,0.91277625,4.390395,2.621045,4.10154,4.461315,1.9012960606060607,1.9012960606060607,4.390315,3.44544,0.9579400000000001,2.821935,3.0643766666666665,3.24132,3.84081,4.770605,0.5122871428571428,0.3247535294117647,0.3247535294117647,0.3247535294117647,0.8370406722689075,0.6422300000000001,0.58519,0.3247535294117647,0.3247535294117647,7.799215,0.3247535294117647,0.8370406722689075,3.457445,1.26953,4.375925,1.12927,0.7292861538461538,0.91277625,2.46068,2.574925,3.760525,2.877825,0.3247535294117647,0.3247535294117647,4.448745,3.58302,3.56337,2.847635,3.980885,1.580104,3.742935,0.58519,0.58519,4.775125,3.1972,2.77259,3.20261,4.4250766666666665,1.0405099999999998,0.7721846153846154,10.9816,1.2557,4.878155,4.396755,5.1788,2.1048400000000003,0.3763908695652174,0.90216625,2.9062966666666665,2.982235,3.14578,4.75292,1.416706,5.88655,4.210265,4.9752125,4.388255,2.9843766666666665,2.7845766666666667,5.869441666666667,2.98894,5.1771,4.125265,4.336943333333333,5.6818550000000005,0.5248046666666667,4.052445,2.9633766666666665,2.1309366666666665,0.6458211111111111,4.38134,4.80406,3.693115,2.364215,2.22643,5.2661,2.68126,2.97538,0.9503780000000001,0.4565484615384615,4.02299,0.34325733333333336,0.7844445454545454,3.8558,3.077615,4.145415,2.74633,4.91597,4.17559,6.361585333333332,3.765095,4.184765,4.354265,1.42506,4.58989,1.7950119999999998,4.06441,2.682925,5.768953333333333,2.56299,1.157048,4.92981,7.0868,6.65844875,3.6954333333333333,0.8203141666666666,2.7213499999999997,4.96356,4.09804,4.554535,4.60691,4.1511,4.575305,3.16196,4.17044,1.7322300000000002,2.253495,1.51256,4.188995,9.83803,3.94714,3.630825,5.81445,2.94721,4.46868,2.5931866666666665,3.065045,3.352795,3.11778,3.61864,3.53374,3.41842,5.2173,5.8439,4.516925,4.6551089999999995,5.24265,4.18091,2.977895,5.1345,7.883175,0.9109211111111111,3.9802,4.37403,3.90743,4.70824,4.729155,2.53711,8.686515,2.4388433333333333,3.096045,5.6993,3.695335,4.451845,2.242,1.837305,3.2072066666666665,3.2433099999999997,1.9296633333333333,2.987276666666667,4.25635,4.669025,4.10916,3.4047,5.208798333333334,3.33676,3.2192,4.024195000000001,5.3827,3.06535,5.659931333333333,3.994115,4.609085,3.469965,8.40819,4.057425,3.605395,4.369235,4.82109,3.416725,8.5134,1.32576,2.40884,3.93545,2.6532899999999997,2.6532899999999997,2.03942,7.77343,0.9248588888888888,3.82627,0.86098625,2.0195725,4.373475,4.67422,4.29794,4.12085,2.950613333333333,3.41796,4.356,3.777415,4.107495,3.18255,2.64725,4.750175,4.890943333333333,4.354535,4.62426,1.720094,1.6187719999999999,2.79248,5.5003,2.413065,1.6556166666666667,1.8965575,4.27413,5.0655,2.957915,2.670965,0.5265155555555556,2.456925,8.279150000000001,3.18167,1.3792099999999998,0.8845925,1.32029,1.9613366666666667,2.0531,0.9192233333333334,2.0180766666666665,4.194173,4.48111,5.50775,2.41338,2.152755,6.691715,2.889125,1.9762833333333334,1.9762833333333334,1.9762833333333334,6.532276666666666,2.1925433333333335,3.636985,2.57842,0.516204,1.138082,2.4028375,5.9401174999999995,0.44560888888888894,4.03362,3.917185,5.353,2.9317022222222224,0.44560888888888894,2.9317022222222224,0.993775,1.2762280000000001,5.8819,4.25917,6.9875975,4.200965,4.795655,4.02575,4.01514,5.31155,4.792895,6.25265,3.520155,3.316955,5.24975,4.85223,4.084195,4.39662,4.919405,1.3583100000000001,2.7696,1.21602875,2.3612425,3.197130416666667,1.39546375,6.62767,5.42452,2.8843133333333335,4.6934,2.801865,4.743645,2.79905,4.888115,4.919305,9.75227,5.667,4.835695,2.13823,2.79287,2.2808,0.587505,2.151473777777778,5.92115,4.964965,4.651165,4.64403,0.5554833333333333,2.0303875,1.42488,4.50843,0.8179923076923077,6.917705,2.11339,1.148625,1.148625,3.6093979999999997,1.979242,3.6681000000000004,2.76366,4.695095,3.65349,3.65349,4.833265,6.1895750000000005,2.752143333333333,2.4945366666666664,3.297556666666667,4.30028,1.9186800000000002,2.941266666666667,5.55115,5.48495,4.72584,4.29244,3.9259866666666667,4.942215,3.6753925,3.3427666666666664,2.2738825,4.195135,5.41285,3.25069375,5.165,5.7753,2.15326,2.721223333333333,6.41345,6.78435,1.515628,2.695175,2.42781,2.960296666666667,2.4272925,2.721925,2.4725035,1.0312911111111112,1.9254675,2.563075,2.4387075,2.3361183333333333,2.3361183333333333,3.015675,2.89345,2.201985,2.7091,2.520225,2.1073,1.5859213333333333,5.0088925,14.959621833333333,2.7516033333333336,3.7889,1.7434180000000001,1.7434180000000001,1.5130949999999999,1.5130949999999999,3.1276200000000003,3.7801666666666667,2.8812166666666665,1.82067,1.82067,3.910433333333333,3.041703333333333,1.12449,1.5205428571428572,3.146943333333333,2.8829499999999997,3.7472,2.590329761904762,3.1601766666666666,3.1914700000000003,0.70358,2.528925,3.5410990000000004,7.368613333333332,4.889535,4.441585,4.30588,3.2399,4.72752,4.716325,3.2738033333333334,4.58521,1.46804,3.1782800000000004,5.82815,5.51935,2.86039,1.4632283333333334,2.967055,2.558476666666667,3.324073333333333,1.5777999999999999,0.6903078571428571,3.168226666666667,5.297034166666666,4.74998,4.89907,4.79656,2.898706666666667,2.332123333333333,3.2564349999999997,2.79661,3.4508666666666667,3.124966666666667,3.753833333333333,2.5421833333333335,2.60299,3.4918333333333336,2.964183333333333,5.23365,4.885865,5.323925833333334,5.323925833333334,3.47743,3.895845,3.463065,3.61149,2.759415,5.043,3.22923,3.1248833333333335,6.05895,0.8042241666666667,5.0921,4.672345,2.482083333333333,5.240365833333334,3.610533333333333,1.6661333333333335,1.3997785714285715,2.301363333333333,0.999449,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.25418964285714285,0.5211228571428571,0.5211228571428571,1.145695,0.9616373611111111,1.7539420075757575,1.0840971428571429,1.0840971428571429,1.2664508964646464,0.4874911111111111,0.3836355555555555,1.235365,1.6101125,2.8012433333333333,2.54825,7.24874,3.0689433333333334,4.16035,4.483741666666667,5.099823714285715,1.5915283333333334,4.76219,4.33609,4.21835,3.049555,1.460684,4.021412307692308,3.51163,4.784185,4.3799,3.211145,4.24539,4.51131,4.5841,1.210384,3.99075,4.83828,3.161455,2.29045,3.33808,2.426405,3.12455,3.8012,3.12833,4.753475,8.707155,3.21739,4.928545,4.169235,4.311791666666667,2.4395700000000002,3.39892,1.2145657142857142,3.897915,3.24389,1.850698,1.09156625,2.78241,1.0344083333333334,0.5680873333333333,3.531166666666667,4.090555,5.087066666666667,3.4346666666666668,2.3616925,2.70594,4.78221,4.1243,4.746855,2.633025,2.2518333333333334,4.405215,4.04557,4.084455,5.36575,4.78987,3.65708,4.727835,3.1039833333333333,4.982195,2.2029729166666665,4.94779,5.32495,3.2457,4.08712,2.489825,3.760925,5.383,4.32347,5.84085,5.2139,5.0191,2.6243866666666666,5.02095,4.99586,4.74493,2.2333925,1.1384175,4.14169,4.883635,4.142185,4.83149,1.99194,4.33079,2.25021,5.08965,4.679385,5.2152,2.402375,4.33688,4.69232,4.45239,2.670946666666667,4.985675,4.852995,4.777835,3.70098,2.2333925,2.38889,3.1356,4.30957,4.145455,4.28415,3.543665,5.0543,2.500615,7.60974,4.86068,4.041685,5.184050222222222,4.5433975,5.4237,3.6316837499999997,2.514603333333333,2.514603333333333,3.97081,3.60097,4.47797,2.1868225,3.00847125,1.04890375,2.750833333333333,3.0867966666666664,2.3677466666666667,3.404033333333333,4.704155,2.89809,5.89405,2.7384633333333332,4.18861,4.743002499999999,1.896335,4.14994,2.1515833333333334,2.99648,3.885505,0.9232549999999999,5.09445,5.11455,6.59038,4.88475,5.3824,1.3840328571428573,4.455875,6.1827,8.40202,3.17375,3.5096666666666665,1.963448,0.830033,3.936815,0.9924999999999999,4.590385,4.83669,4.92872,3.12188,3.92514,1.3567171428571427,3.035685,3.634175,4.31216,4.320675,4.2453,4.19742,2.555275,4.253915,5.2014,5.6485,4.34039,3.98685,0.41377444444444444,0.41377444444444444,0.41377444444444444,0.41377444444444444,5.3858,2.590785,6.0005,2.955106666666667,5.41625,4.596975,3.77787,2.43489,2.48731,1.49529,5.35035,2.8136799999999997,3.90232,3.96404,3.329695,1.870365,1.1290425,4.44318,2.567065,5.914541666666667,3.597285,5.56035,2.40037,1.6201566666666667,0.8460588888888889,3.190135,4.51266,3.153865,2.30671,8.039470000000001,4.21001,3.271725,2.34564,0.483513,3.22179,2.602795,2.30558,1.96576,3.735095,3.89084,3.21289,3.1523833333333333,3.39144,3.72464,4.421195,3.38011,4.17574,3.834115,5.377588333333334,0.6472726666666666,4.32131,5.59065,5.20135,4.517995,3.29495,5.1687,4.376565,4.11832,5.370146666666667,5.58675,3.865235,4.245385,3.5163450000000003,4.30973,2.483465,8.29764,4.688195,4.5291,4.88197,5.15845,5.179,3.653515,1.1214333333333333,5.639499166666667,3.479505,5.18225,1.433765,4.38526,4.63808,7.162438333333334,4.583825,3.070775,2.1416366666666664,3.699635,1.5702,1.23773625,4.353725,6.4087,2.039076666666667,2.22999,2.82672,3.918945,3.525355,3.644145,5.29235,1.8367133333333332,4.34162,4.0191285,3.30845,3.4802999999999997,3.43756,2.744525,2.545515,1.8101025,2.46122,2.6194833333333336,4.119355,0.5674791666666666,2.54219,4.2674,2.739395,3.6636333333333333,4.607975,6.31725,3.790585,17.636464151515153,2.6885733333333337,3.8960000000000004,1.6522279999999998,0.8540518181818182,0.8540518181818182,0.8540518181818182,0.8540518181818182,0.8540518181818182,4.62357,4.68479,5.2944,9.474211,2.69225,2.69225,4.691325,4.817484166666667,1.3176175,2.1014133333333334,4.286905,2.44837,2.16049,2.13676,2.989065,3.8481753333333333,2.27175,3.71911,0.8041714285714285,2.9489900000000002,2.9248966666666667,2.98611,1.4388933333333334,3.4027333333333334,2.0223833333333334,0.96731375,3.0144800000000003,2.8879566666666663,1.1811444444444446,2.545783333333333,2.641793333333333,2.225706666666667,4.631296666666667,2.02611,3.1330766666666663,1.982,2.5483766666666665,1.1547333333333334,2.73941,5.001742666666667,3.529033333333333,1.08093,2.736693333333333,1.318345,2.9981899999999997,2.8772,4.471125000000001,3.172026666666667,2.6361666666666665,4.691118,2.7883133333333334,2.190565,2.9175833333333334,2.954743333333333,2.0453033333333335,2.72555,3.2336500000000004,3.2483733333333333,2.87725,2.929046666666667,2.729343333333333,2.417065,3.7602955,3.7602955,2.8305866666666666,1.97806,1.9253600000000002,2.95402,5.614269999999999,2.62977,1.9719300000000002,1.6170125,3.09386,4.33238,2.549986666666667,1.154546,2.7193593333333332,1.7654333333333332,3.7148333333333334,2.2241233333333335,2.8368233333333333,2.127866666666667,3.6727666666666665,1.197076,1.66758,1.4697466666666665,4.214908333333333,2.59507,3.870565,0.9582722222222222,4.212075,2.0362966666666664,2.560675,1.7850860000000002,1.5763983333333333,3.3232766666666667,24.115794958874456,6.6556266666666675,2.595406666666667,3.5500749999999996,2.1939933333333332,10.284106666666668,2.8680966666666667,0.95385875,2.5385666666666666,2.344786666666667,2.0592533333333334,2.5569433333333333,2.5364,2.4372633333333336,0.8589880000000001,2.9843933333333332,2.4288466666666664,2.704893333333333,2.7126099999999997,2.802296666666667,2.0599266666666667,2.266173333333333,2.9209,2.5229500000000002,2.2565075,1.592684,5.69223,4.72958,2.40008,2.76175,2.24168,2.4661466666666665,8.159342500000001,2.05058,5.11135,2.240295,1.97832,7.63535,3.0901866666666664,2.8352166666666663,2.51065,1.8676860000000002,1.5726542307692308,3.326143333333333,3.237716666666667,4.28152,1.902965,3.8843666666666667,1.6603825,1.6603825,4.274055,4.43996,2.808492,2.808492,5.987226666666667,3.441045,0.411798,11.175166883394382,1.2459466666666665,0.9245485714285715,3.5776808333333334,1.4425024786324787,1.683075,6.254993333333333,3.6366,0.8021245454545455,2.2187433333333333,4.965974060606061,2.6906025,4.08373,1.3906100000000001,5.8158,5.09195,4.780895,3.4890905,2.04326,2.72815,2.6772733333333334,3.0277499999999997,2.19124,5.397893333333333,4.881915,4.88975,1.80636,4.881,4.121605,3.11119,2.29127,5.0381,2.482206666666667,8.418906666666667,6.5988475,2.1118425,2.400875,1.7360959999999999,4.570566666666667,4.570566666666667,3.5056,2.9105600000000003,3.5298165,5.35095,9.7698325,4.050955,2.5074,5.5037,4.28799,5.5915,1.918726,0.883625,1.3160466666666666,4.51378,4.656355,3.6468666666666665,2.9613066666666668,3.6260999999999997,2.2195199999999997,3.934095,4.73201,3.429595,5.6619,3.21311,4.282338666666666,3.618,3.0900833333333337,3.2484699999999997,6.2018,3.109925,5.5092,5.226,3.27089,3.424825,3.424825,5.8022775,12.132403333333333,3.625633333333333,6.48736,7.44373,3.52151,2.48705,3.912105,1.3358033333333335,3.64541,2.209595,2.89155,2.9936333333333334,3.4645333333333332,2.20118,2.4850933333333334,3.1107266666666664,2.5689033333333335,3.1210066666666667,3.035876666666667,4.01355,2.50184,2.83449,3.99371,3.1283766666666666,2.7253666666666665,1.1578725,2.1601825,3.3022633333333338,2.7651266666666667,2.4398133333333334,2.44467,3.4468333333333336,2.1961866666666667,2.3621133333333333,2.603473333333333,3.190376666666667,2.83177,3.2402233333333332,2.70572,3.15152,2.906546666666667,3.37458,2.62938,2.4011766666666667,2.2686566666666668,2.3461966666666667,2.7770799999999998,3.4156999999999997,3.2444866666666665,3.22961,2.0366475,2.0366475,1.0552316666666666,1.6630220000000002,3.982865,3.321555,2.4946333333333333,2.20118,3.6000666666666667,1.402677142857143,2.7635,0.5923666666666667,3.6149,3.26304,3.288325,3.04077,2.4894000000000003,3.056126666666667,3.10376,2.73268,3.3136466666666666,4.7475700000000005,1.539746,2.420576666666667,2.57376,1.88494,2.19569,3.02149,2.8658266666666665,1.7278980000000002,2.7260833333333334,2.6184933333333333,2.6897533333333334,2.68836,2.8749966666666666,2.9891166666666664,3.278893333333333,1.384925,3.1678433333333333,2.4067933333333333,3.7230333333333334,3.416866666666667,1.920945,1.8039466666666666,3.4741,2.6662433333333335,3.4562333333333335,2.6227033333333334,2.2356266666666667,4.884705,2.9973733333333334,1.9025299999999998,1.530936,3.366766666666667,6.051333333333334,3.4088333333333334,3.2614,2.897013333333333,3.3889333333333336,4.72176,1.55143,1.163822222222222,2.9452966666666662,1.90730625,4.778565,2.9785500000000003,2.9953533333333335,2.82668,3.355066666666667,2.2803733333333334,3.0517733333333332,2.49923,1.675404,2.77942,3.41167,3.519825,4.167195,4.27944,1.5927825,2.73117,3.286535,3.407255,2.3937066666666666,3.5162333333333335,4.023633333333334,3.8225,1.721125,5.959464,3.1973275,1.6171616666666668,3.547775,3.532115,2.873475,4.67077,1.8873799999999998,1.8873799999999998,3.2231533333333338,2.8635533333333334,3.38667,5.51615,4.41963,4.280052666666667,1.2688760000000001,3.0235800000000004,2.639136666666667,3.8992475000000004,3.0081133333333336,4.809964666666667,2.687386666666667,2.41098,2.5977433333333333,3.341065,3.73277,1.672792,3.0937866666666665,3.023485,2.351555,4.78047,1.3906716666666668,3.690455,4.25281,2.600645,3.390665,4.027275,1.6398475,1.6077366666666668,2.419425,1.0969716666666667,2.1560488095238095,1.9716325,0.45302785714285715,4.544395,2.10363,5.17895,4.396385,2.892465,4.583489999999999,3.430733333333333,3.0563466666666668,3.4690666666666665,2.605653333333333,3.2648966666666666,2.96761,3.1964799999999998,2.2382500000000003,0.6693984615384616,2.240416666666667,0.6110578571428571,1.8627933333333333,2.5148366666666666,3.18694,2.96672,1.3534866666666667,1.28244,3.761745,4.43546,3.54841,3.69192,3.976225,1.743645,4.223745,7.496274444444445,3.46883,6.10777,1.4710075,4.096105,1.84765,4.28796,3.86691,2.245475,3.99092,3.495175,3.70658,4.108975,2.15353,4.40317,6.4929325,5.24045,3.4354,2.9646,1.6435675,1.93499,4.23319,3.705395,3.164225,3.702145,3.88157,3.55517,1.6640275,3.75414,3.38474,1.93702,4.42395,0.935075,3.47324,1.78332,4.112845,4.596105,3.69873,2.8219225000000003,3.937315,3.364335,2.17703,2.39418,3.7106999999999997,2.156415,5.538445,4.050535,4.621285,2.569915,2.988725,4.924765,4.418695,2.7338240000000003,2.7338240000000003,6.095193,3.691758,2.5368199999999996,2.908785,2.25764,2.77305,3.609025,4.071186666666667,2.608698,3.82188,0.977994,3.80095,2.827065,4.014975,3.142915,1.474895,1.4351675,3.162,6.129137999999999,5.204305,3.269315,1.6944175,3.616415,3.40565,0.779935,2.968395,1.354448,5.69043,1.33606,3.796925,2.315245,1.3534866666666667,3.23805,2.729415,4.374155,7.013731666666667,4.28957,5.488875833333333,2.459065,2.804935,4.414435,3.90888,4.67468,4.46278,0.968835,1.5854382500000002,0.97359625,2.51999,2.331405,4.48165,0.97359625,4.47776,2.533005,1.3720125,1.3720125,1.93702,3.91789,4.37236,4.44472,1.708948,1.708948,1.1109366666666667,3.079115,1.988395,5.93597,4.037535,3.557695,3.14829,1.0607042857142857,3.50449,3.112835,4.270875,3.901285,3.9187925000000003,3.9187925000000003,3.60893,4.01578,2.0905125,2.850015,0.9913955555555556,2.55809,3.616715,2.447686666666667,3.6597033333333338,3.6597033333333338,3.27193,4.85565,4.735545,2.89634,3.365545,4.234425,2.8857733333333333,4.7331883333333336,2.825505,4.21387,8.793614999999999,5.1422,2.55567,3.220725,2.983925,4.657245,3.2475819999999995,7.745315,4.810665,4.294485,3.477625,3.59737,3.829755,4.36793,4.662745,3.35022,3.9444,6.476058333333333,2.7702,2.209325777777778,3.16853,3.33418,3.07411,4.82423,2.2229633333333334,2.3867933333333333,2.80432,2.761655,2.5718099999999997,7.0054213333333335,1.448,4.541635833333333,4.541635833333333,3.537505,4.133704166666667,3.07065,2.592496666666667,5.19405,4.364961,2.2711159999999997,3.85377,4.06166,3.492965,3.096985,3.16457,6.55217,3.48046,5.2499,3.205495,4.615915,4.200605,4.256075,2.8635533333333334,1.8985433333333335,2.83409,3.982005,3.00883,3.293861666666667,3.285235,6.717203333333334,2.613825,2.0832775,3.6872075,2.4329533333333333,4.06703,2.846545,0.779935,3.492105,4.298175,3.71495,6.0070274999999995,3.30185,2.555265,2.9869466666666664,2.9869466666666664,3.7206558333333333,4.471415,4.140375,2.1435675,5.796165,2.1445925,4.461685,3.621835,8.10117,2.55704,1.5338833333333335,3.30431,4.42077,0.73357375,4.132815,3.665185,2.984945,3.144575,4.35424,2.08061,2.32144,9.147625,3.398695,2.89455,1.33606,3.679085,2.751595,2.34452625,3.92457,5.4171125,1.6426125,1.18173,1.117995,4.270945,4.10104,2.97404,3.5832825,3.5832825,1.6640275,2.488795,3.0082344444444447,0.8998144444444445,3.30859,1.14189,1.5927825,3.87453,3.729635,2.68633,2.834645,3.0378558333333334,4.253765,3.991085,3.22839,3.35129,2.833825,4.36493,6.14879,4.002585,0.8931325,2.4984865,8.39333,4.8541,4.206345,1.0634775,4.877443333333334,1.37963,3.87883,3.87883,3.57631,8.775783333333333,0.8094711111111111,4.74456,4.408925,2.2812966666666665,3.9491941666666666,3.7032,2.237365,10.318460666666667,1.87509,2.4563099999999998,3.44657,1.7359133333333334,4.342996916666667,3.1676,3.520695,3.3683466666666666,3.369185,3.74597,1.2617833333333335,7.06785,3.916095,4.25781,4.29635,2.0474275,2.8219225000000003,4.458595833333334,4.0795,0.6584138461538462,4.467735,4.20099,4.742505,2.262365,1.38032,4.367465,4.184305,8.52807,0.7580207692307692,1.052545,1.052545,2.08007,1.39229,1.263078,1.8467500000000001,4.511855,1.3406933333333333,0.8424685714285715,4.1264125,3.48503,1.611905,3.35368,4.569555,3.852335,0.709678,1.81775,9.791125000000001,3.063391666666667,3.77119,2.687755,1.6746225,2.3802933333333334,2.769305,4.63905,4.54163,3.91592,0.9415557142857143,1.482246,0.906587,4.52134,4.09554,3.914365,0.8998144444444445,1.808268,4.016935,2.4827632142857143,5.394639166666667,1.3466575,4.521525,0.5993350000000001,0.5993350000000001,0.5993350000000001,9.5085,3.9971,1.14189,3.82214,4.690925,2.70936,3.422765,4.051024999999999,2.640355,1.9084950000000003,1.9138633333333335,0.709678,1.489613,0.5672333333333334,0.6831416666666666,1.4207400000000001,3.533645,3.826375,2.0050975,7.138355000000001,4.820685833333333,0.7064277777777778,5.86025,5.727316666666667,3.524475,4.40969,7.653674666666667,3.891215357142857,4.820685833333333,4.337048416666667,2.31458,4.605595,3.555205,7.23742,3.54019,0.483513,1.502898,4.075555,1.69737,1.18173,4.101205,2.3059499999999997,1.823585,3.313795,1.6248159999999998,4.37852,4.425445,4.11101,4.675585,7.00992,2.778265,3.98369,1.354448,2.37834,3.538345,3.45483,2.2711159999999997,4.221435,2.36968,4.72092,2.867875,2.517895,3.20926,1.596004,3.899985,0.8998144444444445,2.18947175,1.117995,2.232885,3.735245,1.448,1.4207400000000001,2.456565,3.88795,7.97961,0.9415557142857143,1.0634775,1.189388,3.7486,3.80124,1.189388,3.97087,2.37834,0.73357375,0.8998144444444445,2.08007,1.354448,0.45302785714285715,1.5873680000000001,4.26828,2.2812966666666665,1.3777533333333334,2.89205,1.721125,1.87509,2.899538333333333,1.9138633333333335,4.1618,2.899538333333333,0.779935,2.679073,2.562925,0.06256022727272727,0.06256022727272727,0.06256022727272727,0.06256022727272727,0.06256022727272727,3.4265333333333334,2.576093333333333,2.67834,2.719303333333333,4.955525,3.785765,1.7850860000000002,3.65895,3.58286,2.12568,4.902535,2.591095,2.397685,2.577315,2.798265,4.383755,8.538070000000001,2.3033975,2.20084,2.957744642857143,0.986887142857143,1.368215,2.3749233333333333,2.20254,1.5814275,2.7897366666666668,2.2550733333333333,2.4969633333333334,2.786,2.6823366666666666,3.760465,4.15439,2.681783333333333,1.35716,3.70909,3.77754,1.48609,1.4800879999999998,1.4800879999999998,1.4800879999999998,3.611545,3.029943333333333,1.11653,2.56921,1.3095142857142859,4.421485,1.6960233333333334,6.518685,3.4812375,2.7666299999999997,2.9692619999999996,2.9692619999999996,5.133073333333333,3.08637,4.399135,5.27,2.163745,3.1089800000000003 +GSM1946782,0.0,1.9773125,1.9773125,1.60017,4.28808,6.1335,2.271093947368421,1.5614666666666668,7.737353946078431,4.745405,3.2307633333333334,2.894455,2.555025,3.57333,4.41934,1.8453,1.52633,5.10945,2.617176666666667,2.3315225,4.684605,5.448783333333334,4.06763,2.676165,1.9324860000000001,4.452285,4.86674,4.311555,0.6857366666666667,1.690346388888889,2.0674172222222222,1.819365,1.54105,1.1075457142857144,0.7130666666666667,3.1589582142857147,1.498595,2.0451925,1.2714375,2.1186,1.1303175,1.0975925,1.151456,1.547954,0.9252179999999999,0.931184,0.74763,1.2252428571428573,1.791908,1.827514,1.476226,2.01194,1.7337440000000002,18.4075515,0.37065266666666663,0.822402,1.1450879999999999,1.781246,1.540996,1.813982,1.0406542857142858,1.0406542857142858,1.0406542857142858,1.1051883333333332,1.008632,4.7913375,1.119505,2.5078,2.147245,2.605075,0.9831239999999999,2.2610375,2.35144,1.8881925,1.70497,1.845025,1.5105325,1.6976425,2.4044466666666664,4.114625,4.770835,5.045,1.52916,4.77157,4.580428333333334,4.557675,4.223365,1.114815,7.50663,0.604964375,0.604964375,2.2680575,1.1934014285714285,16.746565,4.42763,5.51255,5.4436,4.5,4.175365,5.33455,0.49121888888888887,2.3232083333333335,1.80416,2.4189375,4.679495,3.828255,1.4908625,3.15138,3.1511633333333333,3.02207,3.6537,3.26418,5.01445,3.1115555,4.76861,3.112413333333333,0.7037672727272727,1.4791079999999999,2.689475,4.821875,3.994515,0.57532,3.76778,4.01188,0.9346375,4.47999,1.7378670129870128,2.517665,2.5385,2.028795,4.492725,5.83715,3.345485,2.7430833333333333,3.3448333333333333,3.0561900000000004,4.399335,3.0715800000000004,5.7051,3.48288,4.70774,3.40357,2.42164,3.740735,2.51915,6.817288333333334,3.51843,3.60507,5.69075,3.25827,4.64259,0.7509,9.740366904761904,3.511935,1.8799766666666666,1.785065,3.265086666666667,2.378475,4.907155,5.6558,2.2132975,5.016209999999999,2.73846,4.83898,2.2132975,2.7942033333333334,4.339765,5.264335,3.805105,8.602666666666666,3.956965,5.2279,2.85537,5.17585,4.6661,1.9285166666666667,8.06811,4.113305,4.309815,3.45455,3.61507,3.309905,2.317585,5.971265000000001,2.40895,4.295,4.058215,5.325,5.0756,3.948245,1.5315216666666667,2.703575,2.95989,2.0837525,2.0837525,6.173042428571429,3.03637,1.8321066666666666,4.592075,4.63316,2.7278,1.4484616666666668,0.9463433333333333,6.8278,2.74604,6.8364,4.18069,4.20619,3.672455,3.16333,3.815475,3.52082,3.68269,4.11324,5.7357,2.82681,3.619645,8.989366666666665,4.753185,3.5325333333333333,3.16316,2.7161666666666666,4.0140666666666664,4.4024725,1.9387525,2.8220466666666666,2.4364,1.8475380000000001,1.7730733333333333,2.643186666666667,1.6806425,2.0862025,3.0590566666666668,2.94914,2.36707,2.75117,4.580428333333334,3.44659,3.640855,3.69847,4.31133,1.4235016666666667,2.14667,2.9060237142857144,2.14454,2.5839266666666667,2.0948366666666667,3.441966666666667,1.814784,1.3565333333333334,2.8768966666666667,0.6681079999999999,1.5952766666666667,0.58833,0.58833,1.56825,2.58188,2.1947266666666665,1.25704,1.5474633333333332,0.32565076923076924,2.6961333333333335,0.6681079999999999,1.2963866666666666,0.1875762162162162,1.3790733333333334,1.9714675,3.332273333333333,1.8550000000000002,2.1583033333333335,2.5343,2.1827466666666666,2.3165766666666667,2.503226666666667,2.29569,2.202393333333333,2.694523333333333,1.8659166666666664,2.75366,4.07018,0.6730483333333334,1.7836299999999998,2.47967,1.89684,3.47912,1.468572,2.49563,2.1741466666666667,4.22956,1.9879266666666666,6.867941904761905,1.6095285714285714,2.8531566666666666,1.9477675,1.9635925,3.4738,1.9161175,1.8911575,4.170095,2.9393499999999997,2.19014,4.04406,4.46555,4.32439,3.641715,2.27694,3.34326,4.486422666666667,3.751455,3.81754,4.26469,4.58493,2.9622,4.08969,3.39202,0.87766,5.03505,1.2376500000000001,4.8936,3.71019,5.79231,3.88755,4.199,0.94089125,2.222045,3.46946,4.00767,0.7774485714285715,1.1756165811965813,2.024960238095238,3.015460857142857,5.87566,5.600255,2.37709,3.205285,5.42805,0.32729857142857144,3.34947,2.315825,0.9896,4.98637,1.977135,11.852565,1.20860875,1.34258,2.2143433333333333,2.328475,2.225636842105263,4.909986842105263,0.41965684210526316,1.7012266666666667,3.1639533333333336,0.9992975,4.003933333333333,1.1663242857142857,5.2362,3.660235,2.07018,5.94535,5.38235,2.3404425,1.136197142857143,4.529815,4.30794,4.204445,0.8749281818181818,8.26865,2.9491,4.606755,2.5477666666666665,2.515143333333333,4.47722,2.2201766666666667,2.7832000000000003,2.0175933333333336,2.4789033333333332,3.23385,3.0635999999999997,0.34860125,3.913235,3.67473,3.70064,3.704475,4.284215,6.215849,4.131935,1.581305,5.47185,4.65358,4.44814,4.49666,1.1260316666666668,2.58052,3.3383333333333334,2.4807366666666666,15.42117,2.836855,3.60721,4.082585,5.3592,2.62909,5.155549583333333,1.5969975,0.7646766666666667,2.611525,3.71044,3.850605,3.877165,6.498128333333334,3.13449,2.21006,2.024405,3.3961333333333332,4.99811,2.3105425,0.37811129464285714,2.533209456521739,1.9215825,1.13681375,0.47449477290372666,0.5708782511645962,0.37811129464285714,0.37811129464285714,0.37811129464285714,1.1106525,1.3670225,0.8528,1.4545975,4.4433175,0.21394117647058825,11.39828683982684,3.4464,2.965973333333333,4.41557,4.606875,3.832655,2.12252,4.880685,4.022456333333333,4.41057,4.230285,0.7057423076923077,3.3877,4.32844358974359,0.5100192857142857,3.083375,2.917946666666667,4.725935,0.48968545454545453,1.78867,4.41725,3.316035,2.0703375,1.79579,1.8158,3.216343333333333,3.88705,2.964895,2.86565,5.2572,5.61815,5.1508,3.3535,3.1475920000000004,6.817475,3.8527,5.21785,0.4046128571428571,3.135403333333333,4.241361666666666,1.9439333333333335,2.678605,2.7582933333333335,5.673385,0.6220833333333333,2.524525,4.52425,4.139485,1.01418,4.98931,2.982155,5.14365,3.2021033333333335,4.313075,3.41175,4.245805,1.227895,3.392235,2.790626666666667,4.89006,3.98736,4.645305,5.88105,4.46106,2.6015,5.96464,2.46639,3.553785,3.3357666666666668,2.6952933333333333,2.86609,2.2109799999999997,1.784774,1.5095466666666668,2.0450433333333335,0.8214428571428571,1.5269166666666667,2.5858666666666665,2.22267,3.1256566666666665,3.2746866666666663,2.90095,0.9262755555555555,4.97585,3.3722999999999996,5.507235416666667,2.73321875,3.242853333333333,3.047283333333333,1.7832,1.7832,2.6720103896103895,2.6720103896103895,3.609576818181818,0.5154799999999999,1.7262933333333335,2.2359833333333334,3.7456,2.1629159523809527,2.1629159523809527,2.1629159523809527,7.616811666666667,4.336073333333333,0.9648,3.243635,5.38535,2.522475,4.70998,3.20674,2.340595,4.307885,3.062196666666667,3.2473799999999997,1.316175,1.8641566666666665,2.795866666666667,2.5095566666666667,2.49324,6.0721,4.3266,3.9977666666666667,5.153713333333334,2.0259833333333335,2.89144,3.4061333333333335,1.0821922222222222,2.1024066666666665,4.7679046666666665,7.78733,1.44733,2.860415,4.843445,1.911976,1.9345575,1.9345575,1.08136875,4.884635,7.973115,4.462165,5.159526,4.659385,1.7879666666666667,4.175275,3.519355,5.0241,5.24904,0.35228263157894735,2.87964,2.40712,4.08181,4.129945,1.829444,1.9826975,2.561725,4.39189,4.17253,3.485355,2.419125,1.513582,6.82058,5.2017,3.81763,3.456825,5.4725,4.927815,4.91822,3.515715,3.4656025,1.8960875,1.1769157142857143,2.64483,3.915865,3.62191,5.36169,5.97226,2.40135,1.8409033333333333,2.53616,2.74503,2.9611133333333335,0.7546642857142858,2.24778,3.46475,1.10227375,5.1274,3.33268,6.184855,1.2704389393939395,1.2704389393939395,4.24578,3.634805,3.641165,5.647,2.7448833333333336,2.3070233333333334,3.66633,3.379975,2.108785,3.3990666666666667,2.6882066666666664,4.19997,3.49327,3.973175,4.705925,1.0501711111111112,2.69308,4.29847,4.229425,3.19709,2.6468933333333333,1.912785,0.89283,0.89283,0.89283,0.89283,1.7252466666666666,3.939495,3.939495,1.73748,7.163338333333333,3.315555,4.58898,3.3442333333333334,2.743475,5.12435,4.07659,4.926785,5.295,1.88924,4.179485,3.98954,2.76599,3.49955,3.39518,2.51124,4.04985,1.88079,4.016165,1.737305,3.5032533333333333,2.90654,1.6371925,1.1508216666666666,2.82717,4.66832,1.408346,0.8527344444444445,3.963495,1.23771,5.056216,4.381605,1.3949728571428572,3.580795,0.7473544444444444,2.6604633333333334,2.8064533333333332,2.5287833333333336,2.79059,4.21181,2.8938466666666667,4.87617,5.4132,4.3384,4.480465,2.2851075,1.3041542857142858,4.078105,5.21945,1.7390375,1.7390375,4.077285,0.28381866666666666,2.3613633333333333,0.28381866666666666,0.28381866666666666,0.28381866666666666,0.28381866666666666,5.15615,2.641226666666667,3.357165,3.5146,3.2283633333333337,4.817375,2.6800800000000002,1.0337175,1.0337175,0.8340433333333334,0.8340433333333334,3.743185,1.77357,4.42731,1.5352242857142857,1.5352242857142857,4.87244,0.61983,2.26334,7.457111666666666,4.93162,3.247225,3.682205,1.0159775,2.22357,2.1016425,4.916005,4.40425,4.41415,3.75857,1.2828357142857143,2.852585,2.0297225,7.4831,1.719005,4.41241,4.702185,3.19995,3.896015,5.74087,7.9903,4.06904,4.71318,4.073245,2.4787375,3.16105,2.31762,2.24419,1.972185,3.75664,3.51472,5.834951666666667,6.55677,4.40001,1.1063566666666667,1.5548,4.00653,3.7076,2.138745,4.40173,3.682945,4.679433333333333,1.6964033333333333,3.685233333333333,1.4967333333333332,6.5326933333333335,2.77354,2.40806,2.3194766666666666,2.54699,3.5968,3.5879666666666665,3.6067666666666667,2.8947633333333336,3.483366666666667,1.7608840000000001,3.561135,2.993315,3.029895,0.40168400000000004,2.93799,4.34261,2.626825,5.6096,5.1012,4.79997,6.968681999999999,4.790425,2.2326333333333332,4.24721,5.23705,1.6298616666666668,5.1068,5.7807,5.2793,4.791765,3.190085,5.43035,5.19065,4.216775,5.545186666666667,7.857125,4.295205,1.3066183333333334,1.4440483333333332,2.85702,1.939282,4.552215,4.05224,5.69519,2.5987833333333334,2.4498133333333336,2.68839,2.4687566666666667,2.45461,1.02925,0.5199864705882353,4.185,3.896275,3.7682,3.919995,2.987465,3.4453333333333336,5.456781666666666,3.10603,0.6009176470588236,3.40304,5.7932,2.174195,1.677938,3.74736,3.30942,2.4367433333333333,3.7992666666666666,4.26244,2.7103266666666666,2.29426,2.23033,2.4665266666666668,2.628025,4.36582,5.022589166666666,6.280425083333333,1.395216,5.04405,3.607645833333333,5.3886695,2.7556933333333333,2.907895,2.31145,2.20424,1.39153,1.39153,2.57801,2.234366666666667,2.6077233333333334,4.08754,1.648978,2.280555,1.97317,0.48709875,3.62583,0.6140375,1.0451625,3.48873,4.35073,3.858965,1.7097025,4.72788,3.1341366666666666,0.7799071428571428,4.482895,4.031149523809524,3.1846433333333333,2.48548,5.2175,0.27762241379310343,2.247042,3.0601,1.4167325,3.68451,6.66265,2.302645,1.27327,3.79981,3.71295,2.73345,2.73345,3.48812,2.826195,4.8842,5.708358333333333,5.1639,0.9766900000000001,2.8132966666666666,2.4306433333333333,4.79019,5.29275,4.92587,5.01985,4.304166666666666,3.8208333333333333,3.6958333333333333,3.6203000000000003,4.027466666666666,3.0183,3.21958,0.6450614285714286,2.4720575,2.50505,3.51641,3.283516666666667,3.160413333333333,0.7614333333333333,2.7526,3.7776045,4.839175,5.86675,4.489345,2.0695925,2.0695925,0.8868579999999999,3.16411,4.574485,4.0671,5.177437857142857,3.066125,4.586755,0.5593190909090909,3.2546,3.888665,4.575535,3.650946666666667,0.8226457142857143,2.96055,3.991945,5.59665,3.854975,5.1403,2.8041,4.16891,1.8002525,1.0024942857142858,2.70356,5.37105,4.32788,3.06934,1.4426350000000001,3.963375,2.496045,2.517275,2.7712335555555554,3.06166,4.5416566666666665,3.0081666666666664,1.7075420000000001,3.6107666666666667,1.4290914285714285,2.8213333333333335,2.53993,2.21805,2.9377600000000004,2.8488333333333333,2.354973333333333,2.8838166666666667,4.11419,3.274176666666667,3.69384,2.4519266666666666,1.77851,4.012131666666667,3.0484633333333337,2.41498,3.69384,2.3511366666666667,0.8290790909090909,2.470515,1.0366477777777776,2.1141,1.68001,0.9593,1.89373,1.872075,2.63674475,2.692075,4.67333,1.5525425,4.417905,3.23208,1.624072,2.4101733333333333,2.632406666666667,1.5894433333333333,2.9764666666666666,2.7313500000000004,2.6674863636363635,2.12472,1.880176,3.7510333333333334,2.394886666666667,3.0352905555555556,3.2894633333333334,3.0862700000000003,3.7454666666666667,2.17413,4.2736,3.51,3.9835666666666665,3.0927866666666666,3.5592666666666664,3.7627666666666664,1.7258133333333332,10.046825,4.518205,4.437845,3.28567,2.859345,1.983525,4.012,1.71088,4.168945,4.556035,1.385662,2.5741733333333334,1.1378766666666666,2.41085,1.79987,2.5648966666666664,5.143896666666667,3.2131833333333333,3.514625,5.04975,0.80600875,1.536154,1.00969,3.576585,10.196591666666666,3.3889,6.7104,2.0963325,5.18895,4.39994,2.580525,5.19965,0.2785782352941176,0.8135028571428571,4.80267,4.44117,7.0704275,2.0671275,4.362535,5.71,4.625495,4.46066,3.548165,4.877915,3.583905,6.198588333333333,3.836745,3.61372,3.10678,2.2489033333333333,1.9348599999999998,1.3450980208333334,2.40155,4.07646,5.0697,1.5437340000000002,8.79849,2.2785266666666666,2.9634108333333335,1.0371460000000001,1.0371460000000001,7.437152083333334,2.87957,2.30249,2.2875175,2.76641,2.151733333333333,1.1482333333333334,3.704565833333333,2.6945200000000002,0.5640828571428572,1.7802766666666667,3.328338,3.328338,1.2060966666666666,2.50868,2.2721566666666666,2.7634066666666666,1.2633025,2.00905,4.772684666666667,2.73307,2.75505,1.3301,1.3301,4.280825,5.5512,4.58886,3.21233,3.75086,5.91961,2.75653,3.270543333333333,2.999143333333333,4.000695,1.1383583333333334,3.4469,2.7611,3.7759,2.1558966666666666,4.74474,3.507785,4.60396,3.59666,5.669219,0.9706933333333334,2.1140675,2.009765,3.44763,4.47727,3.675095,3.619745,3.868665,2.890575,1.638865,4.26042,3.375995,3.60333,2.3990633333333333,0.8278425,3.32837,4.455455,4.93526,1.1810166666666666,3.0489200000000003,2.7026233333333334,2.08773,1.7257353921568628,1.7257353921568628,1.1583083333333333,2.1498266666666668,1.1182471428571428,1.373578,4.645245,4.619345,0.5195190476190477,3.58302,3.5964333333333336,3.8693,5.38525,0.41857449999999996,9.85939,5.581,3.142115,4.502165,4.660755,5.478695,4.85814,6.80908,0.7344627272727273,2.9830733333333335,5.3528,2.7166599999999996,1.94046,2.03798,4.657905,5.348358749999999,2.4761553571428574,2.9717000000000002,3.3674666666666666,2.0798675,4.69963,11.05745,8.758099583333333,3.8555333333333333,4.61284,3.0490358333333334,2.999575,3.885985,1.830038,3.0033333333333334,3.624875,4.7038,5.1471,4.90088,6.686706666666668,2.4107833333333333,3.5469,4.669,4.747305,4.83368,6.87929,4.1156425,6.17335,3.384835,3.06459,2.831675,5.7307,3.762565,5.24695,2.1776,3.25862,3.327075,6.0789,4.117615,4.09462,1.446856,0.89499,2.558975,0.5904506666666667,3.869205,3.548765,3.40472,3.006175,2.1446666666666667,2.9968,2.63625,2.946814,1.816172,3.05097625,2.901125,2.423345,2.598125,3.844436,1.423195,3.0501449999999997,5.2512,3.6558333333333333,1.3872575,2.7659300000000004,3.838175833333333,3.759182,1.5696125,5.76995,5.66025,2.11281,3.00053,30.687921942753324,3.273023333333333,1.6873666666666667,3.9895333333333336,1.54493,2.59166,2.9385733333333337,3.5173,1.9379675,2.8052,2.113445,3.6378649999999997,3.2761633333333333,2.4685875,1.48363,2.24208,2.844975,0.3893054545454545,1.20398,2.8945566666666664,1.8212599999999999,3.37908,1.5696125,2.444243333333333,25.886095666666662,5.0964,3.81108,3.506865,2.58215,2.5317,2.782016666666667,2.3910125,3.961995,5.38587,5.4855,1.6185199999999997,1.858988,2.11567,2.465918333333333,3.8725691666666666,5.41795,4.805645,4.509845,0.19925617021276595,5.14265,5.085093333333333,3.77729,9.49036,1.07978,1.07978,3.13001,2.780715,5.5594,1.9805188888888887,1.0789288888888888,4.634945,1.913735,4.391085,4.12847,3.360295,4.006485,3.885425,4.31843,2.890505,0.7089788888888889,3.21531,2.1854808333333335,4.303525,7.71552,4.417045,1.8092766666666666,1.8092766666666666,6.777254999999999,5.09295,4.106385,5.6885,2.304073333333333,5.453105,1.3332133333333334,1.54471,3.0655699999999997,2.554936666666667,2.926475,2.6752633333333335,3.68518,4.50207,4.245125,5.4375,2.262905,2.1696525,1.84312,2.586075,2.1721225,1.9768525,1.9342675,4.992478333333334,1.85054,3.359237142857143,2.3942133333333335,2.83313,2.5437233333333333,1.8834633333333333,1.418397142857143,0.966156,2.5473033333333333,3.7965666666666666,0.752845,4.59475,1.8615925,5.79153875,1.9207875,1.51804,1.4050425,1.4826966666666666,5.788254444444444,1.9423100000000002,3.1562333333333332,3.5262666666666664,1.2149625,1.8058925,4.774436666666666,3.2534233333333336,1.80518,3.6259,2.99321,3.0101999999999998,1.3201399999999999,0.27390583333333335,0.27390583333333335,0.27390583333333335,0.27390583333333335,0.27390583333333335,3.92799,2.7961666666666667,2.4761025,3.3830666666666667,1.3806266666666664,2.6346000000000003,2.9615633333333338,2.0772333333333335,3.30475,2.8861,1.7227,2.951003333333333,3.252713333333333,2.1996275,1.9681,3.59523,2.6763433333333335,3.9799666666666664,5.04075,2.647326666666667,2.51811,2.4080766666666666,11.00923,4.87902,4.576305,5.0238,4.502985,2.8088833333333336,5.1309,4.119095,4.42569,5.6241,4.214625,3.28042,2.4662375,3.797855,5.291227428571428,3.66938,18.155350357142854,1.19389,4.251115,0.8521344444444444,1.25495,2.9701,4.381415,3.81894,4.330345,1.5826683333333333,2.48246,4.092655,1.8883633333333334,4.66695,3.2316714285714285,2.7946166666666667,0.6605983333333333,3.1752633333333335,4.827205,2.3572,2.560425,2.23009,19.922210833333335,1.30084,1.23406625,2.732086666666667,0.29582846153846154,1.8038475,2.9990733333333335,1.95864,2.9751733333333337,2.554775,7.4787525,1.8793625,2.57865,2.2345825,2.2558675,1.5935383333333333,3.492366666666667,3.152305,3.54511,3.20124,1.98586,2.53302625,3.248136388888889,5.0267,0.4942058333333333,3.536566666666667,3.0201700000000002,3.03352,2.1677575,3.6831975000000003,3.444945,1.5672733333333333,2.23579,2.0524299999999998,1.4232133333333332,1.9205666666666668,3.39699,3.239765,0.741645,3.25054,5.1971,4.242535,2.388068,2.388068,2.959023333333333,4.641995,3.315005,3.271025,2.282075,0.8689309090909091,4.06235,3.525025,6.2636,3.977725,2.269648,2.269648,1.2698925,3.196615,5.086,4.176095,4.16071,2.9426366666666666,2.260126666666667,4.318925,3.4594,4.15641,3.009446666666667,2.3442766666666666,4.193002666666667,3.1949233333333336,2.62235,1.8414666666666666,4.04982,2.712675,1.6160933333333334,3.68259,3.43525,4.711465,3.5833,4.791315,4.42764,6.3724609999999995,3.95115,2.12262,4.718455,3.02891,7.35749,2.5583933333333335,1.3374383333333333,4.567955,3.4004333333333334,4.771975,0.6554521428571428,0.7680033333333333,3.699665,3.59839,2.1955334848484847,4.324225,2.66675,2.874015,9.027491999999999,1.876652,1.1918419999999998,3.75204,2.60587,3.324565,5.28575,6.197724999999999,3.102515,2.0593033333333333,3.15234,1.7898066666666665,3.4219000000000004,8.807054926108375,0.9533245238095238,0.9930275,4.678195,0.5141153333333334,1.6849225,2.2764975,2.7528,3.0812,2.87825,4.88722,2.40251,13.661919999999999,4.96268,2.532175,2.532175,4.45606,0.7966449999999999,5.15763,4.036045,4.005395,6.397866666666667,3.493505,4.744875,1.5324799999999998,2.634245,2.73373,2.73599,2.996265,2.678745,2.99168,3.570655,3.571475,2.998725,2.932945,2.946375,4.324905,4.508325,3.131083333333333,3.2807666666666666,5.026908333333333,4.29428,19.00714988095238,12.15132476190476,3.3442007142857144,0.6923308333333332,1.5115,4.531105,3.529665,3.117361153846154,2.111545,0.8687611111111111,0.6580766666666666,0.6434785714285713,2.071405,1.68279,5.119248333333333,3.3254966666666665,0.6983845454545454,3.23425,2.308355,1.889015,1.8202000000000003,6.342046666666667,1.538184,4.39127,3.04613,3.04393,2.40651,2.5743933333333335,2.54299,0.8113654545454545,2.73323,3.15126,3.8451113333333335,3.05801,7.793173333333334,3.539515,3.281425,2.39842,3.401005,6.270995000000001,2.21271,2.49588,2.529325,1.5327475,2.70695,2.288495,2.690275,0.937913,1.498175,1.03625,3.294205,4.679255,6.35095,5.94495,2.92729,2.62282,2.844025,3.3464666666666667,7.7045933333333325,1.2785833333333334,0.371215,3.07246,2.1424600000000003,1.592244,3.600821,1.3286120000000001,1.9725426666666666,4.242893333333333,3.184356,1.1871633333333333,1.8680266666666665,3.838866666666666,3.53446,4.611335,4.1582,2.07681,5.2503,4.10221,0.7757153846153847,4.746865,4.08877,4.306387083333333,3.4560666666666666,2.30909,1.349752,1.21492,3.45704,2.555055,3.232065,4.117065,2.562085,2.42832,3.23306,3.6429,4.46946,2.562985,2.560335,4.54605,5.78555,0.61121875,4.431525,1.936795,3.41974,4.0449,1.837965,3.128525,2.17331,1.958465,2.752695,2.3960266666666667,1.7746066666666669,4.858865,3.71765,1.2766785714285713,7.56316,1.0488466666666667,3.90722,1.7372866666666666,4.594735,4.40837,2.9736766666666665,3.18903,4.072625,8.52946,2.761965,3.61125,3.755975,3.61292,1.6619775,7.56177,3.782455,4.336715,1.709415,3.998665,2.96795,1.10626125,2.1227,4.114355,2.39875,4.054335,4.908615,4.1772875,4.54614,2.159055,5.26475,3.947145,3.2924166666666665,2.5765733333333336,1.488702,4.17638,6.26495,4.18852,4.49972,2.859105,2.4078275,3.86056,3.261035,1.2438327472527473,4.0074,4.701102499999999,3.98831,2.69243,3.498105,0.6400557142857143,0.6400557142857143,4.708745,4.16391,4.134345,2.256865,3.67354,5.7118,0.8222289999999999,4.29676,4.950075,4.84739,5.2115,4.82352,1.8172975,3.24979,2.1382675,4.384255,0.699325,4.26485,4.299315,2.798975,2.842833333333333,4.25246,2.098285,3.28519,60.66608655627706,3.286685,2.4491633333333334,1.6010825,3.40144,3.89579,0.832065,0.95594125,2.210695,2.210695,1.285358,3.1132,2.181915,3.799093,7.55137,3.002283333333333,1.2484271428571427,1.38195,2.6966066666666664,3.993664166666666,0.98353,1.82045,1.3857,1.991265,4.457275,4.35007,3.157925,20.48022888961039,3.437965,3.82411,3.165515,2.05729,2.99932,3.127165,2.550275,4.92067,1.551368,4.2039,3.2683999166666666,6.002268333333333,2.004105,2.700365,1.89435,4.555925,2.3769466666666665,2.2709875,2.0188,4.054473333333333,3.339365,3.262675,4.08352,4.503155,2.68215,2.60191,3.012705,2.771555,2.9576233333333333,2.229005,2.1487875,3.42783,1.144155,3.78383,4.65793,2.553805,5.10285,4.891875,5.091760000000001,2.1928566666666667,2.20479,2.63011,2.798745,4.03902,3.070615,4.697625,0.7162014285714287,4.300581333333334,3.037255,3.84642,2.3449125,1.824494,3.853461666666667,1.2243111111111111,2.891665,4.37233,1.189036,3.62455,3.648225,4.802705,6.3273125,2.19115,2.969805,2.770656666666667,3.9561333333333333,3.2623033333333336,2.5753613333333334,2.8679633333333334,2.4494599999999997,2.38225,1.4409433333333332,2.21372,2.21372,1.9101299999999999,2.0944333333333334,1.7674833333333335,2.4992966666666665,4.037675,5.4566,4.859705,1.693575,4.38151,3.780195,3.35387,4.05574,1.8844125,1.89864,4.5961316666666665,1.88436,4.348248333333333,3.97327,3.508345,2.3943566666666665,3.5542606250000004,3.358225,2.989875,3.501,0.1456895918367347,2.606316666666667,7.56493,1.5131299999999999,3.360895,3.708615,0.9858314285714286,1.27651,1.8676475,3.83204,2.981725,7.28412,3.72045,3.56714,2.87284,2.639485,3.292785,3.36115,4.0239,3.256465,2.7954133333333337,5.3259,4.26662,4.263175,2.7362366666666667,1.8691225,3.42195,4.650115,2.63048,2.984275,2.06196,2.50534,3.97403,3.741455,2.643785,4.63701,5.32865,2.62619,4.237265,4.147965,3.46822,4.43154,3.191645,3.34091,5.44652,4.68985,5.69255,5.18365,4.451445,5.3491625,4.53141,4.053865,1.279376,6.5795,2.432015,4.484805,4.06888,3.90493,3.340066666666667,1.9523666666666666,2.204336666666667,2.4287666666666667,1.0077500000000001,3.4294333333333333,3.5210666666666666,2.9967233333333336,2.0898600000000003,3.7178,4.32458,2.70683,0.5335791666666666,4.559045,4.562525,5.12435,4.73521,3.879415,4.760795,5.16995,4.732845,1.4038666666666666,0.9406923076923076,2.9454700000000003,5.29315,5.8179,0.494279375,2.80541,2.4804666666666666,3.31502,4.39744,3.8687,2.1144625,5.0738,3.19391,4.779595,2.896285,6.43335,5.3744,6.9941575,0.6146608333333333,4.002135,0.8726240000000001,2.29276,4.1224,3.2199333333333335,1.3130833333333334,2.3304,4.243605,3.504395,4.323875,1.8941766666666666,2.265285,3.155645,4.66864,4.27438,4.08755,1.681608,1.233192857142857,5.5477,2.4572325,7.8296,4.47664,3.570975,2.338705,1.57514,4.15136,4.62016,1.6214133333333332,2.355085,2.5996,2.606316666666667,6.659505833333333,3.046291666666667,2.8158666666666665,4.159461666666667,3.706585,1.9420466666666665,3.404985,7.310915,4.75351,5.1363,0.5028409090909091,3.76558,4.063365,4.770027499999999,4.126175,4.31868,2.981115,2.772645,3.28123,2.806705,3.552299666666667,2.14554,5.8032,4.695725,5.27705,3.71564,3.2877,3.3656374999999996,2.4028175,1.2946825,0.936435,2.775595,2.442635,1.0979050000000001,2.58394,5.1933,4.89351,3.41673,4.16265,16.547104166666667,4.14746,4.396125,4.2274,0.7136683333333332,5.14895,4.58433,4.242175,4.91747,5.3759,2.42766,3.572625,3.265155,1.4902039999999999,3.059715,4.95942,3.3868666666666667,1.7476099999999999,3.692355,4.95484,3.746375,5.14685,4.776,5.74975,4.036015,2.83746,4.09191,4.419955,2.553205,3.078473333333333,3.03073,1.63928375,5.05685,2.7189142857142854,2.026263333333333,3.842755,2.24212,4.280485,4.012131666666667,2.448895,2.981065,4.57096,3.591875,4.44395,4.657535,4.869915,4.856439,3.553655,5.35305,2.795325,3.916895,3.729545,1.497608,4.608405,0.9925666666666667,4.308025,3.166425,1.0058042857142857,3.56767,2.12427,6.476475,2.588914714285714,2.588914714285714,2.588914714285714,0.6767216666666668,1.3448533333333332,1.88629,3.437925,6.075,3.4474116666666665,1.88915,2.2538175,1.69925,3.708095,2.41493,0.4841361538461539,1.70116,2.25463,2.936,1.97595,2.760935,2.340605,2.07208,3.78188,3.0197933333333338,3.808015,3.11128,1.97657,6.39182,1.988335,4.3587,3.706385,6.671936666666666,1.5899066666666668,3.536445,4.005035,3.67188,4.58065,2.767375,1.9722325,3.63207,6.026745166666667,1.9635,3.52744,3.100175,2.073615,4.933055,4.41848,2.7251133333333333,2.264165,3.6003525,5.908709999999999,6.0086,3.0955,2.37083,2.574845,2.92774,2.702015,3.88368,1.44794,2.78763,4.7141,0.8611525,3.87033,3.7952,3.722895,3.25436,2.38306,3.542815,1.95134,4.47677,7.976606666666667,4.337315,3.34674,3.59058,0.984685,4.6815,2.25147,4.284865,5.7616775,4.1926,4.28107,11.302045,4.79636,4.098115,1.45088,0.6750725000000001,2.680875,3.829695,3.416955,3.62125,2.123416666666667,2.419636666666667,2.1114333333333333,1.15438,1.15438,1.93204,2.3264333333333336,1.9109766666666665,2.3512033333333333,3.222853333333333,2.4352566666666666,2.3333633333333332,2.96297,1.3117033333333332,2.8250566666666668,2.0477166666666666,2.06602,1.55788,2.7603566666666666,0.7145283333333333,9.890267083333333,0.7145283333333333,3.6384333333333334,1.9996433333333332,1.7556333333333332,4.286005,4.207605,3.94542,4.04612,2.125976666666667,2.814493333333333,3.3983666666666665,1.9726566666666667,3.321543333333333,3.0682233333333335,2.798883333333333,2.85958,1.7130633333333334,5.40355,6.552460190476191,3.2411333333333334,3.3604333333333334,3.21573,2.53512,2.6460833333333333,1.1075457142857144,3.614433333333333,3.1956933333333333,4.261835,6.0934,4.39346,2.7525633333333333,3.5211666666666663,3.1353633333333337,4.2947500000000005,4.23925,2.5774933333333334,3.904605,3.3335666666666666,3.175473333333333,4.84582,3.04064,4.02686,6.362598333333333,2.1713366666666665,2.349493333333333,1.68825,1.4907633333333334,4.65028,3.52942,2.5694033333333333,2.03288,1.9286766666666668,4.596,3.786685,2.843525,3.5069666666666666,3.282106666666667,3.529333333333333,3.5470333333333333,3.624166666666667,3.1452033333333334,0.61879625,3.8055333333333334,2.60604,2.5281466666666668,3.57273,4.678015,3.93334,5.20625,2.812815,3.81365,1.065405,2.8255433333333335,2.8255433333333335,4.06375,2.84013,3.612285,4.725435,1.5779,3.74191,3.694535,1.3939557142857144,4.067955,3.354275238095238,2.4640766666666667,0.351,5.3519,2.835455,6.296405,3.29292,6.2309,3.354485,3.92802,3.829255,1.7564404166666667,3.295665,4.101345,3.23444,3.4455666666666667,3.00531,5.4503125,2.0632175,0.986455,1.8297966666666667,1.7292399999999999,5.4302,2.3007866666666668,2.3914166666666667,2.118095,4.213935,3.920775,4.152725,0.551398,4.49252,3.824855,2.822433333333333,2.90292,3.268466666666667,3.324321388888889,4.168433333333333,1.7553433333333333,0.6643842105263158,0.7992857142857143,3.7103,4.24253,6.1055383333333335,4.886155,4.724135,5.17795,1.4172428571428572,4.0449,2.1965533333333336,1.00996125,5.44175,5.61875,2.97625,4.70926,3.91929,6.765856666666666,4.132133333333333,6.322261666666666,3.71807,2.454622638888889,5.8063,10.410097506410256,2.5304066666666665,0.68901,3.441825,4.43575,2.33087,6.4606,3.999365,4.3441,2.759066666666667,2.759066666666667,5.7848,3.768805,3.98679,5.2543,3.9998086666666666,2.3650439999999997,1.24195875,5.02525,2.547185,5.6700975,3.55195,4.189085,2.909405,2.0659475,4.64623,4.72935,3.522133333333333,4.21436,4.80834,27.740380714285713,2.094765,2.5552,2.38695,1.6075233333333332,2.5531833333333336,1.0423957142857143,2.7836866666666666,3.0088866666666667,3.4449666666666663,3.170946666666667,0.63002,3.2988633333333333,3.768885,2.999805,3.3296733333333335,3.75299,5.74502,4.792245,4.016545,3.79444,3.950705,4.10393,3.5579666666666667,1.72553,1.0087249999999999,1.3954833333333332,2.2413333333333334,1.4797933333333333,2.996563333333333,2.411016666666667,2.368106666666667,2.2818766666666668,2.68474,2.059825,1.7700633333333335,3.272955,4.24469,3.555185,4.05579,1.3381539999999998,3.3373333333333335,2.4231433333333334,3.776285,2.164703333333333,2.562885,2.30467,1.3876966666666668,4.45077,6.428051666666667,2.81812,3.48061,3.967195,2.655925,3.2597875,3.6526,3.784995,4.812785,0.3105785328185328,0.3105785328185328,5.04275,5.31035,3.17249,2.740605,5.40965,4.467645,0.6449223076923077,5.09125,4.503705,3.77056,6.40865,4.649925,7.59368,14.113246666666665,13.277344102564102,4.402395,4.15498,2.6224233333333333,0.6339007692307692,2.71129,4.44493,1.3426583333333333,4.74371,3.5564999999999998,3.05456,2.112156666666667,2.2912133333333333,4.954765,4.304105,8.967319761904761,5.14975,3.939495,7.4287287878787875,3.4655,3.2422766666666667,1.46914,5.468119999999999,2.01882,2.5569366666666666,2.6800466666666662,0.26557625,3.00277,3.854465,4.811835,0.839578,1.2134983333333333,3.853755,0.530106,0.530106,3.2134783333333337,3.2508700000000004,3.4326333333333334,3.69028,4.244425,5.68405,3.76476,4.057595,2.96237,3.140546666666667,2.6837366666666664,0.7916433333333334,2.67724,2.86523,2.98986,6.74985,2.69938,8.6817,2.77985,4.673995,2.89454,2.26525,2.4485025,2.711525,1.777955,2.358025,2.230625,3.23889,2.4154175,3.6488525000000003,2.86976,3.8971316666666667,3.8971316666666667,2.741465,2.741465,8.876009333333334,2.65687,0.799982,2.5198199999999997,2.4484266666666668,2.537453333333333,3.6488525000000003,1.9419080000000002,1.97313,1.508568,3.50844,4.031375,1.741255,4.576135,3.983865,5.616328888888889,6.645511666666667,2.3366966666666666,4.281415,6.5139,4.135395,3.308785,2.4348199999999998,3.812495,3.492645454545455,4.25036,5.3300149999999995,7.574349333333334,3.5277175,3.100405,1.2051516666666666,4.419625,4.225632,3.81072,3.7140325,4.567575,2.682075,2.6609233333333333,6.97148,3.114185,1.427178,6.21084,3.82263,2.8825133333333333,5.04485,2.8825133333333333,2.88134,3.883645,5.4159,1.0458885714285715,4.1693,4.710505,3.54125,1.3307566666666666,1.88886,3.974755,4.264005,2.66371,7.159588333333334,4.34495,3.91907,4.102495,4.70504,1.547425,4.110675,2.656035,3.850655,4.214795,3.95346,5.08705,2.89447,3.64986,4.989445,1.9667836666666667,1.7829225,3.3808000000000002,3.703333333333333,3.4624333333333333,3.0180833333333332,3.7184333333333335,3.1760266666666666,5.67785,3.488335,3.75553,2.70636,1.89663,3.6706333333333334,2.469586666666667,2.986855,3.101025,2.74161,0.699325,2.1691975,1.7865333333333335,3.35157,1.9484780000000002,3.7577290000000003,4.09057,1.223876,3.1555825,4.791475,0.8178280000000001,1.36876,3.40154,3.81202,3.673295,2.025785,1.7699666666666667,3.39876,2.477778333333333,1.6662033333333335,2.94582,1.934495,1.1730779999999998,1.3843025,6.37656,3.528895,2.216695,2.62099,2.40927,3.831365,0.8295125,0.3579664285714285,0.7965942857142857,5.0646,1.7768504285714286,4.536535,2.1827425,1.8265822857142857,3.1019045714285713,1.2753222857142856,1.1471902857142857,0.8035859999999999,0.5853942857142858,2.4646816666666664,6.40525,3.087635,3.656345,0.3251075,3.679415,17.82946695238095,2.902095,6.836928587412587,1.0502025,1.0502025,1.0502025,1.0502025,6.075941666666667,4.04689,3.938715,2.22849,3.19382,4.942665,4.344755,3.935545,3.500305,4.21561,4.044415,4.19775,3.742122,4.402385,4.9223,4.240505,4.67737,3.678185,4.42036,2.6093566666666668,3.867085,3.29233,3.94515,4.13479,4.424405,3.1796966666666666,2.540025,2.4431933333333333,4.39041,1.3322028571428572,3.75219,2.7949,3.4147073333333333,4.1772875,4.43395,3.038855,2.684165,4.36844,2.855605,3.067945,5.16935,4.91045,3.24112,3.550855,1.803896,1.803896,2.037655,4.631265,3.99912,5.772128,5.16805,3.5545666666666667,6.5119,4.805255,2.1976175,9.930575000000001,5.03065,6.508495,4.490025,2.9142966666666665,2.9311,0.25761137931034483,0.8706475,3.7289700000000003,3.380745,4.59728,2.967276666666667,6.224248333333333,5.23585,0.5586607142857143,2.64522,0.46701499999999996,1.7085823809523808,3.268485,2.299455,3.871365,3.81887,3.196525,3.35773,3.42014,3.63896,3.374295,3.541685,3.644075,2.207655,1.7085823809523808,2.78853,2.0705975,3.63114,2.06721,4.24228,3.489975,1.6619775,4.356605,2.805385,1.317995,4.453175,4.670495,4.12623,2.962123333333333,2.8375133333333333,4.35838,1.7447166666666665,1.42245,2.3458033333333335,2.53268,2.52758,2.1846099999999997,4.97378,3.438635,4.967446666666666,3.9231485714285714,4.97967,4.073995,1.8084140000000002,5.24165,4.45072,5.4304,4.2284,6.52381,1.691695,4.916265,3.163615,2.987675,1.775055,1.7539433333333332,3.748785,4.35451,2.571283333333333,2.8053029166666663,3.3543075,3.3543075,2.7569033333333333,3.2346833333333334,3.22943,3.909625,3.621605,0.6967769230769231,3.205235,4.303755,4.926353888888889,3.14047,3.037605,1.755005,2.76056,3.427415,2.265885,4.76052,3.300925,4.76147,2.1308866666666666,1.0813272727272727,6.11447,3.62947,3.5296000000000003,3.1946866666666662,1.78352,30.684292345238095,3.98498,3.23992,5.30025,4.73513,0.8867583333333333,7.241705,2.0193825,5.58305,1.53054,3.899575,5.420725,3.692575,3.194635,2.1298675,3.4782666666666664,4.983625,2.163115,2.76791,3.706995,2.56289,2.577,6.28835,2.1203,6.1295,1.20341875,4.341865,3.55682,3.886415,5.0858,3.00485,2.49342,4.301155,4.5875,3.5789225,3.5789225,6.02755,1.840625,4.25033,6.94283,3.350215,4.159135,3.30029,3.344975,3.47969,4.068845,1.360735,2.48683,4.32553,4.323875,5.44915,4.296605,2.31949,9.495516666666667,3.468305,3.700945,1.7214142857142856,3.477945,2.3380966666666665,2.6620133333333333,2.08370125,1.2475166666666666,2.537993333333333,0.9000485714285714,1.1236871428571429,1.1236871428571429,1.1236871428571429,1.8377999999999999,0.56694125,3.730495,1.2413,2.7565766666666662,1.05052,1.79385,2.654526666666667,2.087833333333333,0.7404825,1.71844,1.4910966666666667,2.3409566666666666,1.6287939999999999,1.6287939999999999,1.6419833333333334,1.8842466666666666,0.9149520000000001,1.9300066666666666,1.6174933333333332,1.3106733333333334,2.185115,2.44427,5.92855,1.5226,5.5027,17.205593333333333,6.67654,3.340415,3.63931,3.3134566666666667,2.7405833333333334,2.6581033333333335,3.155913333333333,0.7593941666666667,1.00487,1.00487,0.65438125,2.5843233333333333,3.739955,3.13552,1.6255359999999999,5.1039,3.841035,2.534115,3.90483,5.2167,3.937775,4.23167,3.514533333333333,3.15707,3.381555,5.6759,3.1712833333333332,5.08855,0.510005,0.510005,2.228105,2.870775,4.970045,3.47797,3.931095,4.81964,7.555672,7.66791,3.73359,2.611965,4.2865,3.649775,2.6110166666666665,2.414365,3.93939,1.40582,4.01093,2.444355,1.7210075,3.5881666666666665,3.950275,1.970985,5.3300149999999995,1.683035,3.3998666666666666,3.046605,1.0787814285714286,3.7584666666666666,2.7323166666666663,4.45647,1.13655,1.70707,2.302525,2.222145,1.6526475,2.4682675,1.9459875,1.9686675,4.46577,4.55541,2.53432,1.863335,1.4942266666666668,3.7180666666666666,2.0229766666666666,2.612775,4.80044,7.10805,2.5108708333333336,3.036645,3.465635,3.477545,2.431365,5.23805,3.968075,3.067985,1.388875,4.512685,2.32381,3.0490733333333337,2.42868,3.66328,5.04505,5.6557,2.324386666666667,2.8160600000000002,2.9209333333333336,3.4572000000000003,1.9892333333333332,1.681188,5.543,3.5193,2.168602909090909,3.2773966666666667,3.1713633333333333,2.6131100000000003,3.413266666666667,3.2532366666666666,3.6491000000000002,5.40825,4.491685,3.04092,5.0879,3.28062,2.345815,3.461255,3.821035,3.69863,6.2252725,1.902936,3.6753,2.600755,3.9895,3.549935,0.55722125,2.273215,2.155425,3.297525,2.66723,2.23975,2.68961,0.658605,2.801603333333333,4.68999,2.542075,4.433495,2.6435833333333334,4.088995,1.9725275,4.51316,4.54548,2.04032,2.82797,7.30809,4.10971,4.60236,5.0673,7.258404431818182,4.657865,4.48626,2.233405,4.752545,2.80759,1.8939300000000001,1.873435,2.1406366666666665,0.9852342857142856,2.57204,2.29708,2.5862933333333333,3.4079333333333337,1.74304,3.195035,1.8630866666666668,4.09151,4.918975,1.02070625,1.8313766666666667,2.4807166666666665,2.7893033333333332,1.9150033333333332,1.082065,5.46237,2.076685,2.64377,2.6825233333333336,2.4383233333333334,2.66822,3.024045,2.1691933333333333,2.8266533333333332,2.125383333333333,3.88966,3.392925,3.867835,3.0055933333333336,2.92192,0.687756,1.8367866666666668,2.130235,1.99671,2.541333333333333,1.1429116666666668,2.65713,2.9346633333333334,3.85203,1.9614733333333334,3.30711,3.21498,5.08765,3.236325,0.5899958333333334,2.12066,2.8978699999999997,3.434533333333333,0.8100318181818181,2.8225266666666666,3.40965,3.6834333333333333,3.1369733333333336,3.2339933333333333,3.674705,3.9065333333333334,3.0572033333333333,2.1013625,5.6363,5.22635,5.09145,5.45255,5.69805,1.72567,3.31776,3.7406333333333333,3.4351333333333334,3.0663633333333333,2.876853333333333,3.8741,3.6468333333333334,3.0682566666666666,14.21684,4.4171,1.10661,2.80735,1.646536,3.273486666666667,3.3013999999999997,2.395426666666667,5.790355,6.8976445,2.5156433333333332,0.8797710000000001,4.21479,3.536633333333333,2.969415,4.89344,5.1442,5.5042,4.9008,3.5188,1.905125,6.473465000000001,1.2051516666666666,6.4348825000000005,4.88308,2.5907966666666664,4.46539,7.491748333333334,5.97325,2.1381966666666665,1.5240666666666665,1.9477675,7.412061666666666,1.5696125,3.057513333333333,2.612568333333333,4.182097222222222,5.8824,4.268925,6.42475,3.4474,5.20185,3.655185,8.94172,5.0549,5.8817,2.47178,2.661975,11.13106,3.37268,2.28522,2.32401,1.5227333333333333,2.6032433333333334,3.18678,0.66569875,1.24877,1.0657785714285715,3.39932,7.087256666666666,3.1620299999999997,1.4323333333333332,4.92776,3.67055,0.5459780000000001,4.866595,4.047415,4.671225,3.72782,3.544875,2.743043333333333,4.12324,10.046434999999999,1.7606775,3.76397,3.64686,3.99268,3.4954,0.8290000000000001,3.5681333333333334,4.0321,1.7713700000000001,2.4581500000000003,2.276013333333333,2.4926066666666666,2.037873333333333,2.1364466666666666,2.278165,6.008814285714285,5.14275,3.935555,5.233618333333333,1.6301533333333333,2.405585,4.942725,4.56482,4.629525,4.39426,4.75605,4.80693,1.803896,3.71324,7.801761666666666,1.4327066666666666,1.8556866666666665,2.4005033333333334,2.4304099999999997,2.795006666666667,4.762062083333333,0.7992857142857143,2.36046,3.190745,6.39195,4.618365,2.17623,2.858473333333333,2.119665,0.558768125,2.44686,2.884235,7.494675,4.309025,4.992055,0.947044,4.3496,9.41517125,10.9194,3.17899,1.21423625,3.45576,3.58578,2.448906666666667,5.406451333333333,5.01525,4.02759,2.1974625,3.8891333333333336,2.1730266666666664,2.4996233333333335,0.7506381818181819,0.4026146666666667,2.297945,3.183105,2.0710183333333334,3.356535,3.1631933333333335,4.47691,5.40975,1.500306,3.14662,2.0722050000000003,2.0722050000000003,2.32168,3.0491,6.29395,2.6214733333333333,2.3547866666666666,3.4095,3.4684000000000004,4.135385,4.385585,4.50143,4.053655,3.90734,4.259825,7.0183,7.695146666666666,1.969795,2.1902766666666666,3.257,0.8845216666666667,0.6818875000000001,4.33076,2.409525,5.4526,2.878436666666667,3.0344700000000002,1.84599,1.4570875,4.103165,4.289135,4.239745,1.9694833333333335,1.31112,2.59807,1.9634,2.5661466666666666,1.1250457142857144,1.1250457142857144,2.729786666666667,4.58205,2.926705,3.12274,3.42979,2.340405,20.372408954545456,3.870695,5.5270174999999995,4.46864,3.92303,4.19825,3.984535,5.70795,6.594994999999999,0.8326283333333334,0.8326283333333334,0.8326283333333334,2.6786999999999996,1.781442857142857,3.4840999999999998,4.02637,4.135155,2.88307,4.00324,4.221675,0.7973122222222222,1.8988699999999998,2.457246666666667,5.813143833333333,3.1123304999999997,4.072041333333333,5.0756,1.837965,1.9242100000000002,2.2607266666666668,0.51578625,0.8111039999999999,1.59615,1.954725,2.90922,13.448876666666667,2.4279266666666666,5.29985,0.6719392857142857,9.8182175,5.5216,3.60638,4.40403,2.789525,5.6545,2.789525,2.953338,3.255725,3.807195,3.687765,3.8391,4.31569,3.78061,5.8393,6.927842,1.7571199999999998,2.261978,2.435565,27.136959294723294,1.434192,6.2956,3.69617,3.99828,4.184965,4.652965,2.770195,2.607015,2.127155,6.66795,7.1152,4.7651,4.814085,4.50495,2.056155,2.05967,4.36807,0.40319538461538457,0.40319538461538457,0.40319538461538457,0.40319538461538457,4.05039,3.2480350000000002,0.9634933333333334,1.7614166666666666,1.184322222222222,4.86618,2.389343333333333,2.42681,7.465543333333333,3.300596666666667,0.16820862068965517,21.033917000000002,4.649443333333334,1.766852,1.37679,2.21278,2.1007000000000002,2.468065,4.63101,2.881245,3.502975,4.355875,2.0901333333333336,7.2230325,2.694935,1.97484,4.03341,5.8915,8.989753333333333,4.28951,0.3030073170731707,3.508905,3.95123,2.93101,2.1787675,3.1394866666666665,1.6048866666666666,1.6048866666666666,3.940645,5.66021,11.2435775,9.058325,0.6036944444444444,2.45798,3.883305,3.101065,4.76567,3.5866,1.368662,1.368662,3.674725,4.246105,2.253206666666667,3.87712,4.467285,5.25905,7.21571,2.13726,4.737585,4.085285,2.689605,3.0267199999999996,3.18521,4.946605,4.42367,5.6306,4.440455,4.580985,4.18646,4.481615,4.381195,5.6121,2.7556233333333338,3.0861033333333334,1.106738,4.6422,4.20683,4.16838,1.7520859999999998,2.1699466666666667,3.802566666666667,2.9042833333333333,2.491706666666667,4.74429,1.8546833333333332,1.6910825,3.3557666666666663,3.252526666666667,2.2467966666666666,1.84799,4.143433333333333,3.0974766666666667,4.2602,3.1055925,2.1394866666666665,2.5300533333333335,1.8636533333333334,3.42572,2.86441,38.59361825,2.1592961818181817,2.1592961818181817,2.5723066666666665,2.567973333333333,2.1382566666666665,1.9257966666666666,2.9129666666666663,1.8794266666666666,0.7868538461538462,5.0218,7.067925,4.27591,4.123115,5.8538,1.9159833333333334,4.49555,1.8724560000000001,5.17845,4.76461,5.77325,4.17428,1.72553,3.954395,4.45289,4.542855,5.03285,5.54435,4.049285,2.72648,3.4373666666666662,2.863566666666667,1.907445,1.910875,4.728815,2.861416666666667,3.752015,3.752015,2.32341,1.5335066666666668,2.4027866666666666,2.547546666666667,2.5503433333333336,5.15534,2.92789,1.1545316666666667,1.1545316666666667,2.15061,1.9750933333333334,2.51106,2.617433333333333,2.6490199999999997,2.34186,2.1578933333333334,2.1869282500000002,2.960629678571429,1.6089776785714287,0.7737014285714287,63.435407165674604,2.266502,3.501333333333333,2.528764,0.8695660000000001,4.220791333333333,1.585658,1.585658,2.9158266666666663,2.8134266666666665,0.83527625,3.2423133333333336,5.9240200000000005,3.2976833333333335,2.432513333333333,2.78128,2.3734699999999997,3.1541213333333333,0.291686875,2.987106666666667,0.8245979999999999,2.4223500000000002,1.158804,1.158804,3.7137333333333333,1.98785,3.0738966666666667,1.7779466666666668,3.5493333333333332,1.7779466666666668,2.1078033333333335,2.918673333333333,3.2384,1.374022,1.374022,3.02213,1.4362433333333333,3.3767,2.21077,4.59039,3.62169,12.381481833333334,7.003645000000001,3.4322,2.30148,3.836385,5.28095,5.49795,2.7763816666666665,3.965825,3.77404,2.2533733333333332,4.32747,3.4228666666666663,2.848903333333333,4.84202,2.1518200000000003,1.104987142857143,3.8071441666666668,2.928976666666667,2.896815,0.7879028571428571,2.745925,3.3426,4.144025,4.235575,6.6762,1.8883633333333334,1.933306,4.632045,4.402475,2.500725,2.552299166666667,1.90718,2.2857293333333333,0.9322060000000001,5.14935,4.409885,3.6371,3.54355,3.087353333333333,4.736825,5.3377,2.8894300000000004,1.7919233333333333,0.5412606666666666,14.357319,0.5154254545454545,0.5154254545454545,0.5154254545454545,3.0858333333333334,3.9129,0.5154254545454545,6.978031666666666,4.2505266666666675,0.694635,0.694635,3.575466666666667,3.263985,2.740985,4.499815,4.93422,4.22518,2.1272675,4.778166,3.478925,3.6977393452380953,4.73432,3.0175867500000004,2.4555875,2.51115,2.669675,1.59192,3.453243333333333,3.080633333333333,2.46106,2.26439,2.073555,1.8172666666666668,1.60262,2.645125,1.1304444444444444,2.567525,0.6364871428571428,5.39225,1.7722425,0.6728550000000001,2.283945,7.775865,2.643745,2.012432,3.268515,7.10011,2.43008,4.55555,2.895665,5.86098,3.76649,3.674465,4.222165,4.66721,3.1351566666666666,4.437225,1.1399057142857143,4.42479,2.4095999999999997,2.5863166666666664,2.62062,2.174885,2.1547799999999997,1.2627625,5.62975,0.9593,5.11565,5.52895,5.16495,5.4646,3.7936333333333336,2.4918366666666665,1.9137419999999998,3.110863333333333,2.9995100000000003,2.428905,3.9290000000000003,2.687175,5.4083,1.888696,41.23440742063492,4.899685,2.3999966666666666,2.5791033333333333,3.225433333333333,1.4976200000000002,6.041146666666667,3.937065,2.5268533333333334,2.7918633333333336,2.17271,1.5938575,5.3126,0.8088071428571428,4.266931428571429,1.3510942857142858,3.383766666666667,3.4840999999999998,2.9832,1.4387625,4.876344666666667,1.7716660000000002,1.7716660000000002,2.61774,2.8598075,3.4873333333333334,3.5505333333333335,1.4424700000000001,2.9640766666666667,2.8267866666666666,6.500445999999999,2.825036666666667,3.681796666666667,1.0347466666666667,1.4501833333333334,3.090616666666667,0.8948560000000001,5.57367,3.4440666666666666,2.9269433333333335,3.676,3.0557433333333335,2.7467400000000004,3.3645333333333336,1.7110333333333332,2.40927,2.5643933333333333,3.4972666666666665,2.551066666666667,3.8748,2.3773966666666664,0.6172373333333333,9.75210532051282,2.91404,5.40525,4.83421,2.9178366666666666,3.09993,1.32813,2.1372166666666668,1.965535,1.32813,3.969255,0.4434575,0.4434575,1.1586875,1.1586875,0.7658725,0.7658725,2.819955,3.181215,2.47473,1.503195,1.793315,3.692115,2.8541,4.967225,5.3522,1.972288,4.522745,2.327885,4.706929145299146,1.6315625,1.6315625,2.707375,1.729154,3.833946666666667,2.01878,4.576195,1.5826683333333333,2.57985,0.5533853846153846,1.2446271428571427,2.1369,2.3353725,2.0688525,1.3439,4.46642,4.464665,2.5138333333333334,2.5309633333333332,1.3954833333333332,0.7234916666666668,2.4282566666666665,3.370695,3.30594,4.685845,5.26455,5.07635,3.688585,6.75343,1.585775,6.472975,1.751895,4.72701,4.730655,5.915524,3.3595333333333333,2.19756,1.732175,2.0058800000000003,2.0058800000000003,2.4992875,2.4992875,4.42946,5.80205,0.933038,3.92359,3.647025,3.391355,2.7060733333333338,1.371655,2.79309,4.19296,4.378665,1.812134,6.6945,4.999515,1.95099,1.3218375,4.047825,4.423883333333333,3.709945,3.439365,4.00491,0.6753735714285715,3.7112,3.317,2.875273333333333,2.8895966666666664,2.176083333333333,3.6798333333333333,1.5684,1.5684,1.5684,3.1584533333333336,3.260263333333333,2.39578,3.476616285714285,2.4030275,1.2624485714285714,3.3005066666666667,3.2471333333333336,1.3521514285714284,2.92952,2.6946499999999998,1.2213571428571428,2.87902,2.9028533333333333,2.97329,2.9018800000000002,2.7210866666666664,2.042025,3.235936666666667,4.976536,4.27772,0.9479960000000001,1.623188,0.605935,3.6842666666666664,9.038405000000001,3.120343333333333,3.32732,2.6679399999999998,4.2890041666666665,1.8884975,7.896228333333333,6.956043333333334,2.7926,2.4125388571428568,3.851555,4.91669,1.5756640000000002,1.203906,1.334184,1.693535,11.277326666666667,2.9099133333333334,3.2097833333333337,3.01469,3.721085,2.3291733333333333,1.1661175,4.514225,1.1147850000000001,3.4103753846153846,4.00041,3.22478,3.420533333333333,3.173695,5.1551,1.142765,2.268995,2.107216,2.107216,3.686575,5.7839,10.8044225,4.413865,3.43459,4.76396,1.78457,2.273814166666667,4.53247,3.879465,3.7774,1.5601450000000001,3.0235133333333333,3.48317,3.770935,2.552475,3.93948,3.553945,3.72161,4.017825,3.79193,3.7021,5.38095,3.2941966666666667,2.6982366666666664,4.524345,2.89099,3.87605,2.07836,2.50154,2.548195,5.62555,2.28798,3.2567882954545455,1.61926,2.412845,3.074005,2.17075,2.0352725,0.9533566666666666,0.9533566666666666,1.727535,3.8873484848484847,4.02742,2.8130100000000002,4.7835,3.183835,2.459317714285714,1.04729875,3.18285,1.553295,4.39056,4.023925,0.9353075,1.8028525,4.075515,2.8871075,1.5790475,1.5559433333333335,5.108542857142857,1.0258433333333332,2.73354,3.135545,2.764505,2.40255,2.7166390000000002,2.086265,1.0202025,2.884195,2.931775,3.36476,1.4300066666666666,1.4949566666666667,1.78451,4.356785,2.13052,4.597925,4.60518,4.323745,5.9815,5.2583,4.22363,5.806955,4.259280476190476,0.8178709090909091,2.98548,4.57317,3.638225,0.4665090909090909,0.8831239999999999,2.87673,4.001065,4.931805,4.470915,3.2773210714285717,2.799795,5.0179,1.8084700000000002,2.527875,4.562065,4.248565,3.195165,3.20514,3.88109,4.91033,2.795205,5.6287199999999995,0.9357710000000001,3.50415,2.999995,4.32573,4.393255,4.62507,2.13008,2.60078,2.929095,1.8854566666666666,5.10825,3.564915,1.4049,2.727495,3.997565,1.418644,5.89093,1.859378,2.51937,13.536337549482681,3.068756666666667,1.4786933333333332,1.5383416666666667,2.1095466666666667,5.541948333333333,1.681608,5.883448,0.678703076923077,3.3897999999999997,4.055475,7.3505175000000005,2.47072,2.93975,2.93975,4.685675,4.3837,3.403785,3.23943,4.941465,5.25765,2.356435,3.18262,4.502915,1.2196566666666666,2.17043,4.70776,4.25963,3.327105,2.4188266666666665,3.414745,3.534615,6.478036666666666,6.016852500000001,0.780447,4.42208,3.40412,3.6843,4.20631,3.820415,3.77164,1.414986,4.993545,2.325745,2.761535,4.122595,4.17212,4.6565,0.8976945714285716,2.8824133333333335,9.051805666666667,1.4996483333333332,2.1468707792207793,2.2537525,3.815655,3.545955,3.18386,0.6107336363636363,2.3633025,1.6695575,2.2271825,4.28861,5.341325333333334,2.782802,9.87335,2.7946866666666668,2.75121,1.06363,4.503315,5.20995,2.092615,5.6241,2.795315,3.141445,5.478,4.67861,4.761185,2.15652,1.3256575,1.3256575,2.75486,3.269525,4.8714475,1.4001375,6.099716666666667,1.6895233333333335,3.93096,1.4179983333333332,8.766192,4.759695,2.60828,4.445795,3.741945,3.763625,1.1093833333333334,2.0366975,3.6318333333333332,3.1134633333333332,3.5817666666666668,3.699733333333333,3.786395,2.81054,3.15387,3.18394,1.4456025,2.467703333333333,1.8571133333333334,2.813753333333333,1.9400266666666666,5.191023333333334,3.28557,1.7572566666666667,3.04893,3.296485,3.963275,6.4954,6.26605,2.88785,3.5706,3.04618,2.914485,2.6308,1.2417666666666667,0.8397500000000001,6.648664999999999,3.28098,6.1221,4.81777,6.47865,2.83434,3.001376666666667,6.72325,2.41352,0.4615644444444445,5.8146,3.30503,3.996075,3.4930333333333334,1.4534714285714287,4.261055,1.069812,4.6435,0.92829125,1.66833,3.18125,2.3316266666666667,2.6582364285714286,3.647615,4.89768,5.843249166666666,5.843249166666666,4.85056,4.85056,4.73664,3.09754,4.462975,1.03068625,5.7911,3.30873,3.692933333333333,4.22534,3.870405,4.237275,1.8445525,4.861705,3.221946,3.30702,4.095005,2.69086,4.94215,5.25555,3.555325,3.36868,5.0722,3.559175,5.1948,2.87361,2.68678,5.77315,3.94447,2.8169799999999996,6.253948333333334,1.5839466666666666,2.12104,4.802375,4.427695,5.099,3.951895,1.978932,1.978932,13.601973123015874,11.2151,5.0656,3.20509,2.9753476923076922,4.606835,4.78506,2.7203199999999996,3.26156,3.43797,4.1501,3.735133333333333,4.983515,2.11411,8.69031,2.377145,2.12866,5.8829,2.347915,5.13435,4.51753,4.707675,0.71271,3.397515,3.457195,0.8542500000000001,2.953545,3.824995,1.3762539999999999,2.1573366666666667,2.8122166666666666,2.8114833333333333,2.3759133333333335,3.16837,2.33623,0.46901071428571434,2.54363,2.9314033333333334,2.801816666666667,3.2391966666666665,1.440662,3.219273333333333,7.196758333333333,4.6632,2.2594833333333333,1.9928333333333335,2.57633,3.69231,2.51372,3.5705804999999997,18.5682725,5.8195,3.473794,4.814095,3.65903,5.25987,1.4799,6.06865,1.6302283333333334,4.930695,4.50719,5.54735,4.98102,1.0055175263157894,5.977,2.46305,5.04905,2.98122,4.435925,3.941025,2.913915,2.07831,1.631446,1.943685,4.54103,4.765815,2.039135,1.85241,2.9618,4.189548333333333,3.1453133333333336,6.3004,1.9212175,3.643185,4.17196,4.24687,4.12912,3.106155,4.2111,5.05875,4.1252,2.788743333333333,2.788743333333333,5.3571511111111105,2.128156666666667,2.745033333333333,4.00521,1.74894,7.290775,3.48109,4.461553333333333,4.415633333333333,4.443285,1.911976,4.389765,5.35145,3.981665,2.13469,3.785,3.26712,1.446035,1.495915,1.24072,0.6881666666666666,1.80895,1.03189,4.49522,0.9774022222222223,2.5195066666666666,1.6654833333333334,2.0082875,1.1162483333333333,1.8757125,2.240165,1.614635,3.1294133333333334,2.5540366666666667,4.806968333333334,1.5910616666666666,2.715025,3.1043299999999996,2.9589866666666667,2.3903733333333332,4.3227408333333335,4.750765,5.021628333333333,19.428995,2.7222833333333334,2.165625,0.6727584615384615,0.62641,4.163026666666667,1.9581779999999998,3.91991,4.372805,7.337187999999999,3.54047,3.4527,3.87493,3.4407333333333336,3.08175,3.197623333333333,3.7552333333333334,3.003486666666667,6.47245,4.12843,0.935615,1.14983875,5.4683,3.265966666666667,2.7045100000000004,2.157293333333333,2.238323333333333,5.6717,4.94969,2.64515,1.1265033333333332,3.628155,5.0304,8.797653333333333,5.2554252083333335,4.440635,4.423115,5.45345,4.730365,4.30099,4.788785,4.07926,5.393,1.678805,5.87405,1.6371142857142857,5.1804,0.7463266666666667,5.128,5.57795,6.21135,6.21985,4.80083,5.9438,5.97655,6.4474525,1.9656666666666667,1.6213,5.5559,3.731285,6.817128333333333,5.15575,5.6510875,5.0727,6.248,1.3949728571428572,4.616055,5.2871,4.1761333333333335,4.84842,5.3166,2.71735,4.040355,3.14408,4.62365,1.0176583333333333,1.6858833333333332,1.4157980000000001,4.93986,4.00787,3.286255,2.258356666666667,3.0122,1.6228,2.184623333333333,0.3869483333333333,3.6513333333333335,1.7259360000000001,2.2180416666666667,2.950723333333333,2.54804,3.1644733333333335,2.553525,2.55745,10.218475333333334,3.9091666666666662,1.8822894871794873,3.789195,0.9094818181818183,4.6683625,1.092685,1.923065,1.95631,1.03122,5.806525333333333,1.153820138888889,1.153820138888889,1.153820138888889,2.95402,1.995384,4.933855,3.128325,1.3419725,1.4509225,2.343535,1.3149125,2.03914,5.4897875,0.90344,4.59053,4.57399,3.1976166666666668,1.0267,2.114036,2.0095325,2.0095325,1.5286233333333332,3.6717491666666664,4.554435,5.0076,5.6595,4.23948,5.44805,2.9790766666666664,2.141655,3.06747,5.2162,3.340555,4.16866,1.01665625,3.8246614583333334,5.3674,1.8304875,3.774565,3.1388866666666666,4.704955,5.16645,2.884675,6.90995,6.5265,4.265125,4.68525,4.205905,3.15533,7.52056,4.025305,5.4667433333333335,3.32182,2.7159566666666666,5.3714,2.6806666666666668,5.7028,4.393355,2.759916666666667,3.111265,3.90414,1.4511966666666665,10.62526,3.83932,3.171105,15.615578412698412,4.54924,1.7056766666666665,2.9742766666666665,2.036815,2.623435,4.125535,2.636150486111111,2.83497,3.338285,2.8855,4.043805,6.990589999999999,1.24542,2.0466075,4.26153,4.6556,4.94006,2.4628925,0.5908359999999999,4.465415,4.149805,2.0231525,1.5351350000000001,4.70055,4.75701,0.9583311111111112,3.6811,12.869018333333333,1.3179175714285714,0.4126835714285714,3.5315999999999996,4.5654433333333335,1.0791677777777777,3.968575,3.915035,6.589626666666667,1.3720766666666666,3.356485,4.03047,3.346275,4.60969,4.7489,4.603295,8.693625,3.14581,4.16319,5.3484,16.047856875,3.4616249999999997,2.60625,1.143,2.06931,1.2308175,2.40486375,1.238395,1.9676325,1.6512125,1.91315,2.3660525,2.37116,2.257795,5.7429,4.864285,5.659,3.056515,5.859791666666666,3.0008966666666663,5.0228,3.5449,1.2462575,3.683195,2.0090925,2.743284,4.965285,5.01975,4.91192,4.739355,3.05311,3.5934666666666666,2.4205200000000002,3.689175,3.734635,2.152195,1.79969,3.6039666666666665,4.588185,3.97682,2.4005033333333334,12.685793333333333,0.7067733333333333,2.609775,5.00105,2.5163640000000003,1.050488,2.596915,7.450338333333334,7.229901666666667,4.568655,4.074975,4.38317,2.1541775,2.305755,3.0265036666666667,2.2069266666666665,3.934636666666667,4.41724,4.22605,0.45819,6.2435,3.3751333333333338,3.3955333333333333,3.6644666666666663,6.1437,9.451331249999999,4.757675,1.09972625,2.2238725,2.26829,3.677055,2.462405,4.07581,4.62493,3.6199,2.933066666666667,4.259375,4.131425,3.689865,3.9931,1.9217433333333334,3.249085,5.4207,5.6136,2.9771033333333334,2.0350425,2.2119866666666668,14.7271035,0.51534,1.4300125,1.4300125,2.36776,4.34235,4.09813,4.87306,3.43421,3.042545,4.52707,3.0664166666666666,4.076885,3.0664166666666666,3.38988,1.8697433333333333,1.52916,5.9752,2.68255,4.70561,3.281445,2.692655,6.583631666666667,2.1923833333333334,4.816025,5.2503,3.5877,3.54618,4.958605,2.09484,5.1174,3.49327,7.654601666666666,5.745006666666667,2.636,3.96789,5.35855,2.095975,2.7556,3.5656,0.5196592857142857,3.3003666666666667,9.952816666666667,3.880135,3.63934,5.20745,3.282565,3.037535,1.3480871428571428,4.179255,5.49015,3.27616,2.56583,4.815025,4.038555,4.22048,4.452485,2.765225,2.765225,4.01424,2.94732,2.7523425,2.059885,4.99798,4.06539,1.0030771428571428,3.812595,5.23255,2.9705966666666668,7.1445799999999995,7.6393,1.4872640000000001,4.13456,5.1072,7.120682,0.7387699999999999,7.569139999999999,3.596546666666667,0.6344718181818182,5.3961,5.4246,5.0614,4.43904,4.71384,4.38781,4.990035,4.13927,4.07153,4.60256,5.26805,4.85251,4.726135,3.8543,3.08912,4.15868,3.172925,0.9390980000000001,4.516005,2.410255,1.861185,4.613945,4.620605,5.84075,1.0151985714285714,4.99174,2.9696,2.6845433333333335,1.865305,1.2696566666666667,11.621260833333334,2.4780933333333333,3.1449200000000004,1.89678,3.6668385714285714,5.4340166666666665,6.232936666666666,2.6120233333333336,2.09512,2.18414,2.18414,2.18414,1.34863,4.152765,4.140095,3.48367,4.62782,8.108665,4.0277,1.0933680000000001,2.20484,2.908655,2.19246,1.784774,4.407715,2.77095,1.42049,3.11801,5.724347857142857,6.1640725,4.06749,4.01288,3.3246366666666667,5.17035,4.65866,5.608328333333334,1.8223175,1.8223175,4.542305,3.71907,2.7560439999999997,2.7560439999999997,3.899885,1.06555,4.97558,3.30735,4.153645,4.2203,4.05669,3.3763,1.092037142857143,4.42346,5.4109,4.518825,4.64332,5.02455,4.8495,4.651535,2.03514,1.4379275,3.40636,3.72856,3.14343,4.25947,2.079185,3.3351475,5.40045,2.682215,4.8594,7.98387,2.3476670833333335,2.898391666666667,4.578553333333334,5.016209999999999,1.655555,1.9850285714285714,0.9285899999999999,1.9850285714285714,1.8269133333333334,1.8269133333333334,1.606602,5.1563,3.16792,3.692695,2.45811,3.82141,1.5188733333333333,5.43205,3.015285,1.64974,3.0497266666666665,3.76152,4.12762,6.532916999999999,4.716655,1.369994,0.8483583333333334,3.6373,6.520113333333334,2.4083166666666664,3.418815,3.594255,3.594255,2.27257,3.34886,3.215585,1.4348946753246752,3.11535,3.66801,2.774855,4.51287,3.909715,1.5628175,3.24356,4.65135,4.554035,5.15205,4.129485,1.8307525,2.110455,1.28683,2.22194,3.36548,1.895955,4.74701,3.281216666666667,3.58132,3.9269,5.0134,2.67694,0.97387,1.8173233333333334,1.2789425,1.2159555555555555,4.96018,3.981915,1.106738,0.1927669565217391,0.1927669565217391,0.1927669565217391,3.856335,5.54315,4.480285,5.294,5.15185,5.2504,4.56869,4.248225,2.74512,3.503435,1.5531925,4.779525,4.33058,3.924785,4.370105,4.32501,0.7417354545454546,0.7417354545454546,0.7417354545454546,0.7417354545454546,0.984112,0.984112,4.188605,4.101625,3.58097,2.71665,2.485495,5.14445,5.10435,5.28725,4.28122,3.1280666666666668,2.5214766666666666,9.83931,1.6206720000000001,1.6206720000000001,3.92086,5.43515,3.3749333333333333,0.4434575,0.4434575,0.4434575,0.4434575,0.4434575,0.4434575,4.742966666666667,5.2229,3.80221,4.55731,2.6616291666666667,2.6616291666666667,2.74975,3.502533333333334,2.46918,2.90526,3.479155,7.432327333333333,1.402404,4.683115,3.974615,4.02418,9.574538333333333,2.520986666666667,3.01485,0.9503928571428572,1.97733,5.3258,2.95525,0.86338875,2.8903966666666663,4.54603,5.55965,2.75485,4.904515833333333,0.9463433333333333,1.8804299999999998,4.817885,4.807735,3.1623704999999998,2.7638200000000004,2.2738466666666666,1.4323583333333334,7.020925,3.5009,2.00562,3.09054,2.8002433333333334,3.3936,4.081855,2.7237299999999998,3.27506,6.0796,1.451615,4.482035,5.1062,3.389045,3.771045,1.9798266666666666,2.949235,3.70178,3.801955,2.97255,4.810885,4.606595,2.87161,1.85707875,3.0597166666666666,2.8151100000000002,2.895993333333333,0.7773481818181818,2.178655,7.766135,0.459744375,3.0927933333333333,1.39616,2.5443633333333335,3.4534000000000002,3.0232966666666665,1.3220888888888889,1.7265059999999999,2.66685,2.156015,3.69432,2.11224,2.9486833333333333,1.4275866666666666,3.3037659999999995,2.0987025,1.1047242857142856,3.058503333333333,2.1289875,2.3374133333333336,2.87684,3.2444900000000003,3.3022666666666667,3.4552,3.3001566666666666,2.9443933333333336,2.9529633333333334,2.85803,2.47532,1.79431,2.296813333333333,2.8294599999999996,1.6159833333333333,3.167196666666667,3.8383042857142855,2.88256,2.6183533333333333,2.89481,3.7876666666666665,4.972306666666666,3.1494,1.7252285714285716,1.7252285714285716,2.323035,1.1751025,2.573475,3.379881666666667,4.579342916666667,2.79135,2.1826625,2.143785,2.14756,3.658505,2.99766,3.85141,3.581905,1.75591,2.523146666666667,4.22124,1.199724,1.199724,2.1727425,0.6854476923076922,2.515466346153846,1.6501775,1.6501775,2.7867033333333335,2.444,3.0698566666666665,2.6245666666666665,2.2743325,5.6315100000000005,3.84283,3.84283,3.72007,3.086145,2.206205,2.907495,2.420555,2.791905,5.053575,0.477765,0.659382,4.200855,2.27728,2.933275,6.708876666666667,3.96838,1.6304539999999998,5.24904,4.74684,4.402365,4.4404,5.43,4.867315,13.68719,3.81751,1.58732,2.83517,3.76302,5.1908,3.12805,4.043555,4.355175,3.623925,4.11036,2.8024,2.680225,2.7373,2.37749,2.37749,4.004265,2.72393,3.022955,3.67906,2.2531,2.51461,2.1982525,1.823715,2.005035,2.137005,1.6567025,3.7671825,3.313925,2.56708,6.5326325,3.15651,2.2591766666666664,2.0663733333333334,3.320065,3.78095,3.65374,3.256677708333333,3.472495,3.07249,4.29155,3.32337,3.624255,3.82824,3.399303,3.52732,0.6583183333333333,0.6583183333333333,0.6583183333333333,3.33883,2.34143,5.64615,2.52507,3.7781,7.376908518518518,2.924803333333333,0.3690430769230769,5.41605,0.7558309999999999,4.325845238095238,1.97035,4.065205,1.90909,4.21367,5.479955,4.508735,4.243715,2.900506666666667,2.7890800000000002,1.508375,2.932166666666667,0.4033263157894737,0.5638217647058824,2.821813333333333,1.3190933333333332,1.92789,3.796525,3.07667,5.0744,2.7340466666666665,3.147535,3.501965,4.94154,1.9140525,0.8678442857142857,2.26671,3.439972,1.2989805194805195,5.2033,3.72724,3.831055,2.7571,4.246535,2.5624366666666667,2.5863066666666668,2.61421,2.522475,2.679373333333333,2.2673175,3.2157633333333333,2.5170133333333333,5.646572,2.257295,1.9706666666666666,2.18158,5.067408666666667,3.184784,3.184784,2.500243333333333,3.892215,2.3946375,3.799425,3.11858,0.5818313333333334,4.415795,1.9833225,11.961612222222222,7.08324,2.92437,3.08729,3.329415,4.82689,2.81224,3.499965,0.28381866666666666,1.9520125,3.3767,0.8413166666666667,3.748215,1.35953,4.880345,3.345285,3.374635,3.534135,3.42718,2.354175,4.589055,3.68553,3.87235,6.62837,3.871545,2.9698466666666667,3.0696833333333333,1.6206340000000001,2.00871,4.19274,3.929475,3.843575,2.40547,3.31287,1.43724,3.312495,3.22587,3.731955,10.835963333333332,3.629935,5.34243,3.9083,4.752755,1.038582222222222,4.884212,4.926385,2.50567,2.889366666666667,2.77629,3.4341333333333335,2.2678,1.6630766666666668,1.8462766666666666,3.95207,1.7113720000000001,2.9405366666666666,5.263880666666667,2.897413333333333,1.1617575,1.1617575,3.53466,2.9429369999999997,2.9429369999999997,3.255153333333333,2.853566666666667,3.1284438461538464,3.957466666666667,3.4461333333333335,2.6195733333333333,2.405996666666667,2.402746666666667,3.0583033333333334,2.180995,2.4399466666666667,1.625588,5.690718,9.6323955,0.5051415384615384,0.5051415384615384,0.5051415384615384,0.6476283566433566,0.6476283566433566,0.5051415384615384,2.96278,2.9670400000000003,4.084016666666667,1.3746533333333335,1.7366525,3.2975399999999997,2.3938200000000003,2.9998066666666667,2.3432033333333333,2.9862266666666666,3.512033333333333,6.786965,3.043863333333333,2.4517599999999997,3.0075299999999996,5.0158,2.5586166666666665,3.611,6.01746,2.3663766666666666,3.3679666666666663,1.3499333333333334,1.3499333333333334,2.9128900000000004,0.541257894736842,2.6285966666666667,2.672083333333333,2.8841566666666663,3.238493333333333,2.2783366666666667,1.53936,2.7114700000000003,2.9064033333333334,2.285093333333333,4.434985,2.6429983333333333,3.36225,2.20989,3.637135,0.6047629999999999,7.317398333333333,3.141838,3.141838,7.642149166666666,1.7419166666666666,1.8043466666666665,3.035693333333333,4.502065,2.326286666666667,1.8842133333333333,2.7635966666666665,1.4094375,3.5772999999999997,1.7875166666666666,2.828501,1.3654225,0.27026863636363635,0.27026863636363635,5.12705,3.967855,3.21364,3.013253333333333,2.632715,3.494695,1.3785233333333335,4.974425,3.775605,2.83636,1.80583,1.2588308333333333,2.039125,3.035693333333333,2.90979,2.050635,5.42333,3.855595,4.295445,3.77848,2.68591,0.6729766666666667,7.3601875,2.0546775,1.395605,3.332105,4.237535,2.13829,1.8166166666666665,4.553365,4.247105,3.28513,3.2228666666666665,4.36926,4.523095,3.736333333333333,2.540132,2.540132,3.67479,4.643835,5.5687,6.507996666666667,2.65037,4.178525,1.3866657142857142,2.53915,5.007042,3.81714,1.796632,4.722475,3.5650525,3.94549,2.11769,4.209675,4.891225,4.951495,4.674195,2.2298233333333335,2.48441,3.7173,2.02364,2.3934825,2.7083733333333337,2.3824733333333334,0.830554,2.465115,2.9149233333333338,2.105064,4.66221,4.54908,4.815305,3.70403,3.65942,4.8549999999999995,12.447375,5.0557,3.991745,4.28738,3.852815,4.63312,2.5750933333333332,3.4477106666666666,3.6724,1.2483525,2.71518,2.835875,4.760815,5.42165,4.300865,3.6493,3.1328,2.3977366666666664,4.2682,3.8830325,3.5857666666666668,3.8830325,2.29331025,2.2362800000000003,2.3202716666666667,2.2347125,2.81749,1.8040566666666666,0.8667266666666666,1.4151916666666666,1.9456333333333333,1.9628566666666665,1.62863,1.3161066666666665,1.68794,2.8150399999999998,1.492954,3.2358700000000002,1.3334333333333335,1.5320966666666667,2.656115,3.814166666666667,2.40523,2.0734866666666667,2.2581866666666666,3.237445,2.253325,2.82101,2.93704,2.4409033333333334,3.0599433333333335,2.9576325,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,0.14845806451612903,5.02125,3.07762,1.0037428571428573,3.0564999999999998,2.5608333333333335,2.9739299999999997,4.00298,3.104643333333333,4.6394,3.5619700000000005,1.5707900000000001,3.11614,1.7132666666666667,0.988765,0.99014,1.7102666666666666,0.8779283333333333,0.7595608333333334,1.294394,3.162005,1.54325,1.5938566666666667,1.943935,2.415602777777778,1.4220249999999999,1.264395,1.6208266666666666,0.9440633333333334,1.2501,0.7079133333333334,0.916696,3.205455,3.49515,4.07443,4.460805,4.383305,3.1501933333333336,5.0764,3.5769333333333333,2.1144625,3.497785,2.1016425,3.52245,2.30719,0.8321999999999999,4.351855,5.1475,1.97992,1.2620175,2.918585,3.331315,3.6717491666666664,2.96575,2.65466,0.956335,2.1475975,5.0380375,3.701245,2.624185,1.5303633333333335,3.708565,2.02946,0.6032154545454546,4.56627,4.22698,4.32134,2.343045,1.4771100000000001,3.45706,4.28818,2.47026,2.5354633333333334,2.4997833333333332,2.6156166666666665,2.70511,2.7619233333333333,3.21842,1.279675,2.63305,2.618723333333333,5.1192,4.465085,3.878105,4.78986,16.57766826388889,4.20765,4.652505333333333,2.776175,4.345015,5.096,1.551946,2.3152675,2.5983033333333334,6.1985825000000006,4.42036,3.5486,6.66475,2.5983033333333334,3.689975,1.942775,2.3738766666666664,2.9891233333333336,2.8273733333333335,1.30446,4.39951,4.00248,2.55148,4.1704,2.5634833333333336,3.1132899999999997,3.676475,3.327035,4.711235,3.89595,2.579555,3.407135,2.5351,2.66389,1.274664,1.274664,2.9186433333333333,2.505673333333333,0.33433535714285717,5.330613,0.994248,2.699075,3.797435,0.5505191666666667,4.878595,8.273796666666666,1.7829225,3.65762,3.697735,2.3733633333333333,3.303855,2.277445,2.993395,3.467365,4.100765,3.06566,3.8509333333333333,1.0037833333333335,11.364927333333334,2.86621,2.841425,5.7171,2.595515,3.85251,7.818583333333334,4.34542,4.18014,3.726745,4.41293,5.774817499999999,1.5158725,2.938753333333333,4.857645,3.8352,1.8432860000000002,3.78036,3.608475,3.544085,3.90803,4.334105,4.059415,2.4852366666666663,4.1071,3.818195,5.16915,3.288825,2.14487,2.176556666666667,2.150443333333333,3.018243333333333,1.25299,3.6346666666666665,0.8616909090909091,3.368233333333333,3.219003333333333,2.6802166666666665,1.6383966666666667,4.38052,4.42578,4.145725,1.83736,4.802265,4.006915,0.7086484615384615,0.33833846153846153,4.148725,5.28955,0.98042875,0.33833846153846153,5.0044,0.7086484615384615,0.7086484615384615,0.33833846153846153,5.5667816666666665,2.5105766666666667,2.4011566666666666,5.6125,3.7977,3.1435,0.7955055555555556,3.2284,3.71124,4.92425,5.7259,2.1783875,0.7575592307692307,4.3682575,2.29011,1.4299899999999999,2.0208475,1.0437557142857143,2.432113333333333,2.1416999999999997,3.901495,5.43335,2.86832,2.9918066666666667,3.00897,2.22802,2.966465,4.3728187499999995,1.75933,1.8760575,3.889665,5.2331,2.1969394444444443,5.6217,2.917385,4.015025,4.123905,2.89188,1.251625,3.040805,6.7363,3.81626,3.23981,5.28305,6.24745,2.19945,3.334065,4.416605,3.040745,3.364675,8.12003,3.75286,4.5911675,2.145915,1.0931275,2.64411,1.96794,2.116595,1.86853,4.07762,0.6869821428571428,3.32702,4.02795,1.8279233333333333,3.008646666666667,5.3791,3.169255,3.1107,4.434395,5.28855,9.294733,2.5612866666666667,2.6860766666666667,1.665206,1.5812366666666666,1.13149,1.5001933333333335,2.8622366666666665,2.4743566666666665,2.76385,4.210508525641026,1.5485275,2.57729,4.900325,5.43605,3.947685,3.37224,2.901125,2.344025,2.077795,2.145505,1.8899966666666668,1.945285,3.31728,3.967,4.842335,5.2337,4.12365,5.606802083333333,3.271575,2.758995,6.611348333333334,3.187345,8.72888,4.996522499999999,4.996522499999999,5.156659166666667,1.61596,1.369525,1.4502433333333336,0.721924,4.91617,3.8685666666666667,3.42957,3.42957,2.01936,4.50701,4.322975,4.55838,4.183365,2.82803,2.65443,3.704735,3.0638400000000003,5.114878333333333,3.497275,0.8203854545454546,5.32145,5.22015,4.078685,5.11725,3.29762,5.9365,4.518245,0.8262692307692308,5.58345,7.133698333333333,3.29274,5.8228,5.8157,3.304225,2.582435,3.65562,6.2046,2.13234,5.8584,1.85756,4.75977,2.635126666666667,2.13393,0.9357710000000001,3.05834,6.03795,3.255735,3.91489,1.9126433333333335,4.564235,8.163603333333333,3.486915,4.19554,2.459095,2.746185,0.8579269999999999,4.853325,1.5499150000000002,3.542349166666667,3.542349166666667,3.78556,2.3134466666666667,3.226126666666667,4.05333,1.93951,3.0345866666666663,3.5013,3.3978,2.945455,3.84134,2.74874,1.798285,3.366433333333333,2.2150425,3.0235833333333333,1.9890566666666667,3.0454066666666666,3.26329,1.4170528571428573,1.8316966666666668,0.7478883333333334,1.2899116666666666,0.7478883333333334,0.7478883333333334,1.8316966666666668,0.7478883333333334,3.5811333333333333,3.33627,3.33627,2.9356766666666663,4.37364,3.81011,4.38849,5.36765,5.3309,3.41184,4.15944,4.276035,2.157785,2.498107,2.5070200000000002,0.7984172727272728,5.6087,3.135283333333333,3.13944,5.7295,3.884595,5.2738,3.32744,2.5568633333333333,2.870455,3.351555,2.4000566666666665,2.6039833333333333,1.9685266666666665,5.34675,0.9093088888888889,4.019945,1.175892857142857,3.39862,2.6148466666666668,3.0084166666666667,4.25977,4.43646,3.9551,4.66383,3.955125,3.776235,4.528155,4.175895,2.554675,2.81455,3.2571366666666663,4.154085,2.87547,3.356495,2.613365,3.0641,3.2627966666666666,3.310695,5.2825,4.85915,3.994865,69.11953945303308,2.5857516666666664,4.01707,16.454013333333336,3.96279,3.0944966666666667,2.4332733333333336,1.8723633333333334,2.8942099999999997,4.6455175,3.0368366666666664,4.405549166666667,6.30825,3.297145,7.757513333333334,5.33825,2.226135,3.124165,3.698285,3.420565,1.89527,1.13943375,4.61357,2.934825,5.9196100000000005,3.769935,2.24005,3.357855,3.920625,4.45223,3.123475,5.4675275,4.18856,3.88934,2.891905,2.5942,2.684945,5.8974,2.804015,3.598445,4.341136666666666,1.1823949999999999,2.90993,5.1848125,4.250965,3.27477,3.57709,3.062625,4.06715,3.074145,3.26456,2.915175,4.505215,3.065445,2.84039,4.47297,9.313685,3.20081,4.01303,6.79288,3.01416,2.03947,3.953149375,2.0955033333333333,2.818443333333333,3.110128,3.277255,3.097275,2.891775,3.34584,3.44793,3.99041,3.784925,4.090225,3.91642,3.3521,3.73966,2.7634066666666666,2.7634066666666666,7.020491666666667,1.755915,2.988665,3.16586,2.356255,4.838595,4.127515,3.18157,3.80622,3.607015,6.21772,0.6355872727272728,3.81378,2.26618,2.806696666666667,2.593176666666667,5.15985,2.71869,1.91544,1.20341875,2.0584801515151514,4.13996,4.74802,4.222625,5.9565,5.3039,5.80925,2.393935,1.8291199999999999,3.95453,2.922395,2.88326,2.0583766666666667,1.3080766666666668,2.7133766666666665,3.3566333333333334,1.423592,2.5153633333333336,2.130802,3.492762445054945,2.808505,5.07735,3.29051,1.3514625,2.903805,3.44368,5.7066,5.03535,5.85615,5.03465,1.9347566666666667,1.4907466666666667,0.5936757142857143,1.5231133333333335,3.44932,2.512915,3.6304116666666664,1.5167766666666667,2.51448,2.3312,3.394065,3.553075,3.74296,4.032505,1.5970575,1.3969925,1.865625,2.0260225,1.46706,2.58355,7.152882583333334,4.89132,3.62756,2.91789,6.6054949999999995,4.716155,3.160035,3.01428,3.324985,2.65412,3.67452,2.24052,7.12247,0.886235,2.961605,6.70335,3.933855,4.702775,5.5671,1.4869933333333334,3.2585766666666665,2.9804,2.8217933333333334,1.47819,4.024285,8.61437,3.6181,4.969795,3.951235,3.21393,4.816075,0.8586550000000001,2.8120833333333333,5.2645,6.494293333333333,5.04265,5.742,3.01669,3.8280999999999996,2.646386666666667,5.12325,5.0431,4.012181047619047,4.012181047619047,0.6507757142857143,3.7774666666666668,0.917412,0.5395183333333333,1.8339725,3.896433333333333,4.430199999999999,5.906028571428571,3.2200933333333333,3.5553485714285715,3.121541904761905,2.7227933333333336,3.207803333333333,4.5963666666666665,3.0212891666666666,1.9201025,1.9201025,4.106,3.0096966666666667,2.6244366666666665,3.87267,3.5071333333333334,0.5801688888888888,3.3822666666666668,2.604346666666667,2.71213,2.8443966666666665,2.55425,2.5324,3.4210333333333334,3.01079,0.8451919999999999,2.8404000000000003,6.376890952380952,2.15764,7.2764310000000005,1.6389900000000002,1.6389900000000002,3.524351666666667,3.4098,3.4042333333333334,3.040236666666667,1.798276,1.3280642857142857,3.413866666666667,3.325556666666667,1.58388,1.4634142857142858,2.8336133333333335,2.7165939999999997,2.78055,1.68283,1.9065325,2.842555,2.234275,2.59591,3.25551,1.45152,3.55682,2.94357,6.883483,3.459025,1.6365325,2.93887,2.89606,2.10986,3.961705,2.318303333333333,2.669065,7.522285,0.842023076923077,0.7921666666666667,4.561815,1.571196,1.571196,3.884505,2.4528875,4.493535,3.267415,1.2881366666666667,2.299796,3.017303333333333,2.3310293333333334,5.07875,4.244195,2.6540166666666667,2.2624666666666666,1.4353542857142858,1.4353542857142858,2.4236566666666666,3.812605,3.852866666666667,5.83445,3.1681566666666665,5.136,4.45741,6.8598,4.74356,2.52743,2.7792766666666666,2.6487433333333334,2.5398366666666665,0.7582322222222222,0.7582322222222222,0.7582322222222222,3.002915,4.391,3.687175,0.887235,0.887235,5.16815,6.00555,6.43846,22.148330055555554,12.083,7.75065,3.119805,5.9885,2.3450025,4.47826,2.63977,3.1819100000000002,4.063366666666666,5.393958666666666,2.13612,2.18015,6.51696,2.01816,2.01816,6.47035,3.32882,4.15847,2.21765,4.811810833333333,4.44462,3.94065,5.17845,3.62823,1.5683966666666667,5.8256,8.90941,1.5683966666666667,2.21765,1.8787766666666668,0.9353199999999999,0.9353199999999999,1.8518519999999998,2.23335,1.8518519999999998,4.577645,5.778,6.4356,9.1188,2.21765,11.566830333333334,6.1957,6.09735,2.3450025,3.495125,4.482905,8.60437,2.9509316666666665,4.301945,6.0073,3.440535,4.74447,6.52035,4.56296,5.1171,4.9181,2.773675,5.01475,3.556595,4.62735,4.45537,0.77416,1.5121639999999998,2.99281,5.56035,4.615455,2.897413333333333,2.11348,4.47204,4.939105,5.9156,5.3999,5.2933,4.373655,3.14803,4.173665,3.789505,2.03864,4.846865,1.98721,2.514525,3.454725,1.56299,3.83155,3.972535,3.654035,3.6325900000000004,2.997765,6.540291666666667,0.9730455555555556,3.37125,2.63786,1.2264985714285714,5.1764790000000005,1.5455316666666665,1.7314433333333332,2.643946666666667,2.929069,3.120093333333333,2.8748666666666662,1.838335,0.7261772727272727,2.10569,2.553175,3.620685,0.7269923076923077,5.567355,1.53031,1.243598,3.2419100000000003,1.243598,3.84793,0.9260181818181817,4.379855,3.3166366666666662,1.725405,4.905368,4.3772780000000004,4.3772780000000004,4.934885,2.5021,3.044473333333333,2.9986333333333337,1.440662,3.64248,3.56511,1.9258300000000002,0.7066491666666667,7.079467307692308,2.734575,3.803955,4.274585,7.4485,2.4179175,4.14168,3.72113,3.07665,3.957065,5.56825,6.2723024999999994,4.663795,4.939295,5.42955,2.9114966666666664,5.1857,4.411365,4.45369,1.122211111111111,0.48205785714285715,3.116185,3.524233333333333,2.9003833333333335,5.4544,3.77337,4.22329,4.414565,5.41915,4.400855,4.325625,1.20634,2.330825,8.784229166666666,2.2896566666666667,1.8535133333333331,4.061494761904762,11.560221468253967,1.48578,4.91084,6.424,4.9928,3.5098333333333334,2.3158866666666666,3.4072999999999998,4.29793,1.0590483333333334,2.8407666666666667,3.51336,0.36314842105263156,2.21401,4.71825,4.0998,2.222055,4.35375,2.845045,5.199725,1.42234,0.5629609090909091,3.7773849999999998,1.201002857142857,1.0555125,1.0555125,1.0555125,1.0555125,1.6049016666666667,2.89962,2.0246633333333333,3.5787,5.36705,3.5967333333333333,5.381,3.71466,4.1997,3.30245,3.93083,1.3480733333333335,6.985405,2.372405,4.852785,5.4346,5.14275,5.1580425000000005,2.3545133333333332,2.53996,2.54282,3.635275,1.1481966666666665,4.561906666666666,2.5916266666666665,4.90858,3.1119299999999996,2.51176,3.63897,3.48226,2.92061,2.3874733333333333,2.7215399999999996,1.459195,0.3893877777777778,4.380385,3.817155,4.06532,3.525905,3.72996,6.0528,4.553455,0.5326223076923077,3.2033760000000004,7.475039333333333,2.110603333333333,2.16106,5.819301666666666,5.0633,2.8845733333333334,5.03895,5.15175,4.4734,4.08463,4.06566,5.3794,5.71205,5.21105,3.49262,5.356933,1.5578400000000001,1.6648683333333334,4.26118,4.19734,3.95809,3.131355,5.474,4.21448,3.71803,3.28467,15.832535228042868,1.2527021883360085,1.1722025,1.9554215909090908,0.506439375,0.48501,1.5048625,0.3609323529411764,1.348326,3.2633500000000004,2.04786,0.9731916666666667,1.1263604166666665,0.4481641666666667,1.1263604166666665,1.1263604166666665,0.4481641666666667,0.8486230769230769,0.5737192857142857,2.770325,2.8895633333333333,4.928045,4.166955,2.7509200000000003,2.66025,4.460385,4.582755,5.16935,2.805095,4.42431,0.6967435714285715,2.321124666666667,8.0849775,4.437695,6.590351666666667,2.886615,4.292955,2.320695,5.37795,5.6539,4.341015,4.12341,3.226975,1.0175966666666667,4.63345,4.89128,1.368104,1.3715439999999999,1.5719016666666665,2.2717300000000002,2.1548266666666667,4.381765,5.23055,2.3160625,2.3160625,3.542404166666666,6.71695,2.0582266666666666,0.6507118181818181,0.7279757142857143,2.6523066666666666,3.4535,0.9882857142857143,0.9882857142857143,0.9882857142857143,0.36423230769230763,1.104987142857143,3.005625,6.1434,3.8707999999999996,4.195614166666667,5.299,1.0708199999999999,3.4932666666666665,3.3149433333333334,3.9133333333333336,5.75865,2.695256666666667,7.472949999999999,5.17425,1.1336666666666666,3.8570333333333333,1.932468,2.585145,2.29114,7.32637,3.1603100000000004,4.31711,2.276975,4.555675,4.42983,4.95513,0.4744272222222222,2.8120433333333335,1.3960133333333333,2.613836666666667,3.8346653333333336,1.9255033333333333,2.7157433333333336,2.72382,2.5420233333333333,2.7911099999999998,2.9614100000000003,2.6510366666666667,2.8045333333333335,1.3250920000000002,2.293973333333333,2.06175,3.29095,2.5934133333333333,2.1547675,1.7275933333333333,1.94206,1.6563575,3.21863,2.16471,2.0617533333333333,2.0662433333333334,2.3903833333333333,2.35787,0.8425433333333333,0.8425433333333333,0.8425433333333333,2.3978466666666667,2.156946666666667,2.9594566666666666,2.21131,2.4597633333333335,1.9199966666666668,3.692915,3.345065,1.2527016666666666,2.46825,2.7135,3.6370899999999997,1.6387,7.0614783333333335,4.496395,3.15809,3.861195,3.547275,1.4402625,0.8262785714285714,3.455395,3.60714,3.6370899999999997,4.262985,4.3508,4.83345,3.0124333333333335,4.25568,4.129365,0.8583719999999999,2.71437,3.261915,5.115085,4.735205,3.364275,3.13199,2.56313,2.10955,2.26165,0.63863,5.390070833333334,2.627475,3.940425,2.7315400000000003,3.85022,2.992983333333333,2.42813,3.022554,3.022554,2.5066,2.0767700000000002,2.52923,2.0062133333333336,4.262435,1.436584,2.417325,3.707245,4.20214,3.96676,5.56635,4.191165,2.51915,2.185885,3.220235,2.90721,2.54495,5.36185,2.628605,0.9405014285714286,0.9405014285714286,4.86542,3.750661,0.9568960000000001,4.327615,0.9568960000000001,4.03286,4.926535,4.85003,3.255925,3.16381,6.48508,4.137133333333334,5.67115,0.8742571428571428,0.8742571428571428,2.14454,4.63015,1.615375,3.014775,3.41487,1.1093585714285714,3.91711,4.07916,5.7834,5.7834,1.17864,5.60885,5.2325,5.0885,5.95255,1.95036,1.95036,6.85415,0.9684181818181817,7.1739,1.99253,6.4855149999999995,2.628485,2.4841533333333334,3.46531,2.0364,2.0698866666666667,2.4502633333333335,2.98112,2.3645983333333334,6.323605000000001,1.7801259999999999,4.980135,3.2074166666666666,2.8023166666666666,1.889495,2.277625,2.98531,3.512695,3.63212,2.631305,1.997305,2.124315,2.665445,1.005926,3.22654,2.40547,3.094645,2.0715065,2.0715065,3.01581,2.00327,3.634715,3.406675,4.83513,7.317728333333333,3.996575,3.24609,6.571550833333333,2.0664633333333335,3.321527777777778,2.218976666666667,1.512857142857143,1.7190775,4.1086,1.5886233333333333,0.497018125,0.6935333333333333,4.078775,4.56243,2.84053,1.0067877777777778,3.104505,3.0370166666666667,4.71181,1.814784,1.915295,1.163722222222222,4.830555,2.29776,4.478075,0.753547,4.286238333333333,3.96045,3.53264,4.541485,3.332,3.83629,3.12217,5.4522,3.457275,1.9694266666666669,2.74255,5.953758333333333,6.4143075,0.7539075,3.703765,4.784845,5.40545,3.8363,3.7838,2.674075,3.3198966666666667,3.8113333333333332,6.059374999999999,2.7165939999999997,2.520633,4.122595,3.109175,2.272705,2.538525,8.453619999999999,4.596745,1.8196166666666667,5.1819,4.703885,1.74157,3.7689,1.3487625,1.610642857142857,4.763335,4.20799,5.02155,2.525396666666667,3.630855,3.43299,5.0116,4.237335,3.96189,3.595185,4.134995,4.34827,3.81994,1.1613618461538462,1.1613618461538462,7.89136,1.06217,2.2738269444444446,1.06217,0.6920116666666667,0.4088544444444444,2.9658386111111112,2.51055,0.5606099999999999,2.2738269444444446,2.03888,2.782725,2.405228611111111,3.36012,4.746935,7.298914999999999,1.94407,2.321925,2.16029,4.62005,5.71025,1.790585,1.6311275,1.2562425,2.8873699999999998,4.1773,2.600635,4.38696,6.32038,0.4736316666666667,3.79261,0.782853,2.8960899999999996,2.3209,4.18824,1.3084550000000001,4.10595,4.903075,4.246995,2.865205,4.184785,5.45944,1.85851,3.89349,0.6514876923076923,2.684105,2.774035,1.310314,3.0398566666666667,2.4602166666666667,2.4990433333333333,3.704215,9.04315,2.875079393939394,3.69285,3.412195,6.7640150000000006,5.26803,3.335433333333333,4.07687,3.507685,5.8268,4.31473,5.32735,4.90486,4.1744,4.95643,3.217503333333333,1.47749,1.9062833333333333,2.221083333333333,3.95149,2.3552633333333333,0.1875762162162162,0.1875762162162162,0.1875762162162162,30.392627857142855,0.1875762162162162,3.152351216216216,0.1875762162162162,0.1875762162162162,0.1875762162162162,3.2614795495495494,4.30179,0.1875762162162162,0.1875762162162162,0.1875762162162162,0.1875762162162162,0.1875762162162162,2.69999,5.39522,3.65576,0.18718153846153848,0.18718153846153848,4.365983333333333,4.101272666666667,4.060383333333333,3.4562113333333335,3.9989685714285717,8.090266666666668,11.431664553224552,6.641248,8.073730000000001,7.294813857142858,2.9128900000000004,6.597748571428571,4.54945,4.504916602564103,0.18718153846153848,7.92507,6.955231619047619,6.846776666666667,2.6489,9.651890357142857,13.896736904761905,18.9073623489011,56.70039487313504,119.46921877552431,1.3499333333333334,3.3679666666666663,3.3312,3.9545527747747746,0.18718153846153848,1.6363874358974357,8.294271041666667,15.285850773809525,19.832541388888888,48.43408565204678,13.129656523809524,3.1759,0.21939206896551725,0.21939206896551725,4.3801000000000005,2.6228433333333334,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,0.21939206896551725,4.99267,0.21939206896551725,0.21939206896551725,0.21939206896551725,2.606715,2.0832833333333336,3.887795,3.644965,4.01113,5.30805,2.1875325,4.198405,4.30095,3.21258,1.4740566666666668,3.52539,1.0134933333333334,2.3458925,2.0878433333333333,5.285613333333334,6.193316666666666,2.72022,5.925147055555556,0.5311661111111111,0.49389466666666665,2.5602533333333333,3.03464,2.790865,4.22812,3.3827,7.30526375,3.884155,3.93235,3.316695,3.962475,2.957355,3.225715,5.7574,1.78637,0.44512769230769234,0.8201654545454545,4.3541225,1.755295,3.66742,3.520155,4.43403,3.5131,2.4154175,2.650865,0.6269806666666666,0.752846,4.46199,2.5873566666666665,5.34715,3.632775,3.887648333333333,2.79817,2.876625,4.77041,3.80602,3.065625,0.8698190909090908,3.1360533333333334,4.41951,2.2233,0.9449225,1.5254433333333333,4.087625,6.31825,1.95156,2.98937,3.96471,5.7431,2.52175,2.354366666666667,2.310025,4.71943,2.4,3.67672,0.67234,2.20787,3.17193,1.749655,6.036593333333333,3.051115,4.2161,4.710955,2.788145,1.93015,0.49496,4.675945,5.12535,5.89885,2.598845,3.318245,3.924585,2.79099,1.8458275000000002,1.22623,4.95942,2.07655,2.6771,8.20886,3.987445,5.0238,3.74291,0.8322777777777778,2.98445,1.25159,3.188695,6.2083,5.16345,5.30295,3.77969,5.12405,4.49928,1.78783,1.8875933333333332,5.20975,3.296416666666667,3.4345,2.5241,5.4778,4.865515,1.4326033333333335,3.731033333333333,2.885015,2.75331,4.15498,9.03097,4.73094,1.6684125,4.699435,6.59804,4.4168725,4.01426,3.935845,4.09173,4.950325,8.780835,2.296933333333333,3.128045,3.24753,4.11948,2.98464,3.18066,5.00265,4.2876,3.637715,4.0212053333333335,19.205505000000002,2.8728933333333333,2.6429666666666667,3.4206,5.7146,1.24711125,4.15192,2.0236816666666666,4.90473,1.4791383333333332,4.25737,4.275995,3.94171,0.98329875,4.64715,4.386885,1.64134,4.516419393939394,4.18175,1.1412285714285715,3.41585,1.882975,2.332415,1.808715,4.213735,3.814885,3.860095,3.569135,2.9714733333333334,4.65128,8.051291666666668,4.592665,4.66739,5.13855,3.31227,4.279265,5.0284,6.824206,0.9835160000000001,0.9835160000000001,4.51454,5.0525,2.38517,1.4922416666666667,7.497555,4.225325,3.7723,3.99934,4.66502,4.601365,3.39962,3.861115,6.567515,4.257873333333334,4.661875,4.905585,1.490757142857143,2.776075,4.655755,4.823485,3.5277175,0.20808055555555555,1.5188725,2.1488275,2.5107066666666666,2.0089099999999998,0.9666344444444444,1.3264675,1.3247075,2.4449033333333334,0.59572,1.0375528571428572,1.962415,3.823745,3.9828333333333332,2.33525,2.69859,2.86637,2.7232833333333333,0.67452,0.9082975,3.238425,4.583915,4.06499,2.97297,4.564575,4.776615,4.431455,2.1922,4.405995,5.0847,4.49032,6.1460225,3.685125,0.48413529411764705,5.53935,4.40902,3.90874,5.0616,3.305945,1.9371759999999998,3.819125,4.088545,2.435645,5.220494166666667,4.492945,1.3551549999999999,5.220494166666667,4.043905,6.8764175,3.54692,1.2243111111111111,3.967435,5.21465,3.976405,2.5582866666666666,5.06585,1.401665,1.98197,3.075875,3.3602,0.8058288888888889,5.04725,4.88113,3.610335,3.8426,3.3316166666666667,3.18525,1.8581720000000002,1.87082,3.16117,3.311545,3.5879333333333334,2.3829766666666665,2.2101275,1.9667836666666667,3.916945,1.4599,0.8113322222222222,5.68392,3.740295,1.531314,2.7640966666666666,2.240693333333333,3.122726666666667,6.086283333333333,2.236689444444444,0.819407,2.62331,4.486465,2.1044766666666668,4.31314,5.20425,5.4394,4.57753,4.279,4.783975,2.1626533333333335,2.2291366666666668,1.6472866666666668,2.0284066666666667,1.86628,2.3733299999999997,2.190636666666667,1.7488475,2.68006,2.97129,4.61514,6.63095,4.64124,4.14892,4.432095,3.723515,3.995755,4.73038,0.910095,3.3748,4.615075,1.187912,0.6469520000000001,4.96454,3.57196,2.5931466666666667,3.44298625,6.44156,5.50185,1.02394,1.23691,0.6948677777777778,4.018724166666667,2.2103766666666664,2.7563666666666666,1.2149371428571427,2.8778566666666667,2.73104,5.815,4.60492,4.546135,5.3224,4.70788,1.24172,3.56619,1.6714399999999998,3.419735,3.997895,3.390875,2.889606666666667,3.2322699999999998,2.7670600000000003,2.987455,4.170485,3.304805,2.5576,8.555425,10.1740275,4.20308,1.3494542857142857,5.42515,4.29352,4.881445,4.531715,3.852895,3.805455,3.343625,4.111225,3.654380729166667,5.96107,3.89041,3.96606,4.51169,1.8517579999999998,5.261,5.42525,4.815105,3.31335,3.268515,7.18494,0.8182908333333333,2.5960666666666667,2.7261699999999998,2.3213966666666668,5.11745,3.659895,1.3861383333333333,4.34064,3.432733333333333,3.65406,4.80943,4.0964475,6.69209,3.3110233333333334,3.1491866666666666,3.336066666666667,2.89275,4.18379,2.2169366666666668,2.2539633333333335,3.061253333333333,3.947755,3.5401675,1.8887775,1.535675,3.430017857142857,3.4727985,0.9755266666666667,2.768021666666667,2.768021666666667,1.3562575,5.7346,3.270115,3.24284,3.65501,3.33454,3.473375,3.52434,3.224395,3.22717,2.4877966666666667,0.5333406666666666,3.224345,5.621175,2.990495,3.56706,3.18542,3.950975,3.97806,3.149105,2.606325,3.69661,3.671905,3.208295,3.14965,3.29635,2.5201233333333333,4.09503,3.88233,8.81974,3.25602,3.572945,3.020865,3.932095,4.03315,3.56186,2.31072,3.60464,2.6236775,2.866535,2.96991,3.183235,3.76386,1.7916366666666665,1.7916366666666665,2.16647,2.770895,3.446585,1.507512,2.40984,3.372095,2.09524,2.734445,1.507512,4.75179,3.09152,3.8641815,3.07146,3.608585,2.26266,2.97444,3.918745,3.889435,3.76331,4.29599,3.681835,4.198115,3.54563,3.122805,3.051,2.85682,3.870385,2.58394,3.641915,5.1442,4.29495,3.65372,0.28442826086956524,3.64004,0.4189658333333333,3.57024,3.531255,2.95675,3.368375,3.72992,5.820589999999999,3.15643,2.53243,2.3275200000000003,2.762503333333333,0.6543,6.7998650000000005,3.09306,3.433075,3.51889,1.994895,2.59783,3.27696,3.103435,6.6459150000000005,4.96794,4.934345,4.28048,4.332895,4.285085,3.839855,1.5246083333333333,1.624594,4.1669,4.772085,5.800915,2.2924433333333334,5.0231,1.743575,3.4291666666666667,4.22819,1.9429542857142859,4.109225,4.9225325,3.612,3.8374666666666664,2.7792766666666666,4.52144,4.83055,3.4029000000000003,4.405385,4.605865,5.0371,4.671455,4.448025,4.44425,3.2454,4.44776,2.661975,3.3088933333333332,3.3088933333333332,4.608295,2.499826666666667,3.90126,2.3648866666666666,4.77552,3.3646333333333334,3.74252,1.81512,1.87727,1.144155,1.144155,1.762632,3.4393999999999996,1.7490366666666668,2.7751533333333334,4.123095,5.235407,3.3516999999999997,4.384305,5.58798,3.102725,2.76584,3.13768,1.59147,4.092445,4.37806,6.4728625,1.7607333333333333,5.28955,5.82625,3.5043333333333333,3.708175,4.016345,7.22504,2.22404,2.46942,4.267725,0.49948571428571426,4.147965,4.00824,4.47484,4.23376,3.126745,1.439696,1.7922740000000001,3.833,3.50492,2.34371,3.72704,4.69406,4.99199,1.0667275,3.624935,4.706645,3.791805,4.78334,2.57958,5.349916666666667,3.683725,1.544622,3.543985,1.1851933333333333,2.986736666666667,7.6671916666666675,3.282225,0.6725872727272727,3.74161,4.19328,3.78286,1.86258,1.86258,5.1247066666666665,5.72865,2.818535,0.4943966666666666,1.9188175,4.500724166666667,4.50019,4.40771,1.797918,2.78852,3.628115,1.1644088157894736,1.1644088157894736,1.1644088157894736,0.7191796491228071,1.300099649122807,0.58092,1.1644088157894736,0.7191796491228071,0.2611763157894737,0.8420963157894736,0.2611763157894737,0.4580033333333333,0.4580033333333333,0.4580033333333333,0.4580033333333333,1.0474431666666666,1.07119875,2.3035533333333333,2.3082666666666665,1.0802283333333333,6.084661666666666,2.5668666666666664,6.5074966666666665,2.3924566666666665,3.78355,2.929285,3.433515,2.8003141666666664,4.50268,2.7753666666666668,4.16274,4.027215,4.55857,2.21013,4.00705,4.9435,4.047915,3.31009,4.87953,3.409345,4.42671,5.4636,5.3486,6.28255,5.50005,1.10794375,4.844255,3.613355,3.3033,17.36079,4.915255,5.2643,2.6266700000000003,7.52393,3.96628,4.15193,4.926255,3.166435,1.07978,2.566255,4.21587,4.315495,3.658515,3.277765,4.10752,3.013476666666667,4.25906,4.816145,4.251565,6.531868333333334,7.793595,1.3327814285714286,3.795135,3.92486,4.230655,3.5824,3.73244,6.81881,2.808385,2.8818,2.45841,3.847155,3.89433,4.73744,2.349285,1.787025,0.906096,4.43428,3.807895,3.699285,4.18817,3.88455,5.13955,4.184405,6.0297,6.00305,4.69242,6.3561,3.68984,3.133275,3.235645,3.405245,1.7659075,4.127965,4.46652,5.6425,5.1142900000000004,5.1142900000000004,2.54375,1.7659075,2.34315,3.436365,0.7698166666666667,1.7431291666666668,0.9733125,1.77485,3.10111,0.362558,2.84269,4.16078,1.77485,3.0811305000000004,11.27816,6.6518025000000005,2.3439058333333334,1.0721500000000002,1.74182,4.726045,4.27879,6.017933619047619,1.9123025,2.244315,3.94694,3.699765,4.685065,1.9196966666666666,5.378,3.554933333333333,3.66377,5.20585,7.1111640000000005,3.87033,2.45992,2.72275,1.9555533333333335,4.239055,5.43276,1.859798,5.6258,4.34809,6.094665,0.5617906666666667,4.72446,5.94935,5.0476,2.85719,2.756325,7.31015,7.437283333333334,6.6817,1.7251833333333335,1.7251833333333335,1.7251833333333335,3.93627,4.798825,5.6574,3.806025,2.844575,2.896148684210526,3.931715,3.04347,2.6196770000000003,1.9352,2.6196770000000003,7.067207000000001,4.789253333333333,4.901025,7.60076,4.901025,4.901025,3.6196099999999998,7.01791,5.547759,2.877994,2.877994,2.48404,7.12,2.788515,3.511775,5.199734583333333,5.199734583333333,5.199734583333333,7.381805,3.4740475,3.31086,3.5373975,3.3832899999999997,0.80095125,7.626733333333332,2.83748,5.9638,3.423075,12.845047333333333,4.497785,5.429963333333333,6.76818,2.5673333333333335,3.42084,1.103225,5.429963333333333,3.280345,1.636875,1.636875,2.747035,5.311132499999999,1.7346925,4.864105,0.8458439999999999,1.445805,0.8458439999999999,1.8928325,2.5805365,5.298119,3.710165,1.445805,2.914555,5.0369625,1.3037375,3.33597,4.527265,2.04936,4.396045,2.571885,3.040115,2.82664,0.9234479999999999,3.72466,2.580475,2.01304,1.6616099999999998,3.1623799999999997,3.75158,3.048755,3.626415,1.287218888888889,1.287218888888889,1.287218888888889,3.953355,3.308396666666667,3.308396666666667,2.587045,3.781635,2.23585,1.0698925,1.0698925,2.926305,4.4816825,0.8329275,1.4497,2.682525,1.2663783333333334,2.7160783333333334,0.9234479999999999,0.9234479999999999,1.7710991666666667,0.9234479999999999,3.0282308333333336,0.6935866666666667,3.0282308333333336,5.563487083333333,3.343565,2.36451,1.7145270833333335,0.65572,2.370247083333333,3.14394,2.370247083333333,0.9769833333333333,3.41084,3.837955,3.97099,3.751685,2.425665,3.75873,1.8299233333333333,0.9513068055555556,0.50682125,0.9513068055555556,0.4444855555555556,0.9513068055555556,0.9513068055555556,4.53715,4.619855,5.6976,3.43359,4.549595,4.659455,5.1818,3.343895,4.01939,1.4290857142857143,2.767583333333333,4.395181666666667,3.85695,1.3436599999999999,2.8460133333333335,4.11099,3.83431,4.15315,3.52344,4.361,3.646355,3.174485,4.613725,2.5227999999999997,6.1054,3.64284,3.939155,4.214085,0.7771865,2.15763,3.11317,5.82893,4.18744,3.32916,3.0662066666666665,4.40381,7.65301,3.0972333333333335,3.857685,2.8911,4.097385,4.002635,5.66395,5.56805,4.38077,2.897465,5.21155,4.86076,3.6424333333333334,7.62853,3.5723000000000003,2.4245575,2.412436666666667,4.858915,6.5759,5.10625,5.4051,3.956375,5.03775,5.7645,0.5453238461538461,7.399825,4.56957,3.565185,4.00019,5.05795,4.07816,3.0743033333333334,2.5094,1.3279233333333333,0.5608792307692307,1.8493860000000002,2.98668,3.14458,3.118105,3.88753,3.98065,11.315528333333333,3.81138,3.844355,2.991865,0.7089866666666667,5.574450000000001,3.1909733333333334,1.4878166666666666,4.67879,5.829488333333334,2.638515,8.78862,4.24628,1.821822,1.821822,1.821822,4.00251,8.59916,3.29893,2.647175,2.647175,3.34197,9.57368,1.040455,4.908955,4.548035,4.219985,2.93005,2.2024399999999997,4.13023,3.78424,5.5232,5.97275,3.828845,2.776075,3.740025,4.1555175,3.5961355,1.2822,2.9320833333333334,5.79047,3.3900449999999998,5.01375,1.075285,3.7807333333333335,2.367383333333333,2.538133333333333,1.7564625,1.7830866666666667,2.15635,5.33255,2.19341,4.38697,5.4498,1.7801259999999999,4.954085,3.772395,4.797665,3.212566666666667,2.12202,2.757245,4.37207,3.9239208333333333,3.9239208333333333,1.1551075,1.54471,2.966153333333333,4.503061333333333,2.168602909090909,4.9826846666666675,1.7428080000000001,2.89776,2.0137033333333334,1.6875025,1.6875025,4.92492,7.5756950000000005,1.8134166666666667,3.189306666666667,2.228205,4.737355,3.08262,0.9696279999999999,2.821215,0.9696279999999999,2.752315,3.55491,5.2644,5.6493,3.704245,4.663919166666666,5.8031,2.294965,1.8868933333333333,2.9200633333333332,2.20164,6.0543,5.282,2.514925,4.271385,2.710145,4.752795,1.0502025,1.0953979999999999,1.9356466666666667,1.2086516666666667,2.4980033333333336,2.8183666666666665,2.16672,3.0557833333333337,2.934335,4.8418,2.4310300000000002,2.3997966666666666,2.7490233333333336,2.3673733333333336,2.9199466666666667,2.544096666666667,1.9277199999999999,2.433473333333333,4.28256,3.82031,3.408885,3.331875,2.8250466666666667,2.247645,1.96592,1.209545,0.2769165,0.12772760869565217,2.0958099999999997,1.7169033333333334,0.12772760869565217,3.7235892753623188,1.888925,0.12772760869565217,5.845990486111111,2.0650266666666663,6.13708,3.36399,3.2659366666666667,2.616823333333333,3.05776,2.2132875,4.311995,3.020913333333333,3.3277733333333335,0.4501484210526316,3.9290583333333338,2.6668484210526313,2.95981,1.83528,2.4635175,4.2804,2.33886,7.8081499999999995,5.40525,3.46365,3.687625,6.1889,6.40694,1.8089000000000002,4.3476550000000005,2.12842,1.8061,7.29146,7.98275,1.2279333333333333,2.0881,3.58628,2.3308,2.65365,3.02397,2.863585,4.467075,2.28885,3.040205,3.64399,3.147515,7.12635,1.2211433333333332,1.88298,2.85499,3.27203,1.9646466666666667,3.39862,1.420665,3.765295,3.15536,7.0238,3.555955,9.01202,3.81545,1.6238199999999998,1.6228333333333333,2.95376,5.82968,1.55706,1.6041933333333331,5.63739,3.377135,3.89065,2.72918,1.97753,3.10611,10.042390000000001,5.21683,6.26386,3.374,2.51908,2.15987,2.29252,2.974215,3.48965,1.7094666666666667,1.5191999999999999,2.5167566666666668,3.51481,1.7366525,3.41393,2.60715,2.910745,3.687665,3.15,1.292365,2.462145,1.2811433333333333,1.43558,1.650805,3.165035,3.28619,3.737125,2.67423,3.701675,3.886295,2.73765,1.43746,3.460405,3.5650525,3.07492,1.744425,2.99585,3.3024,1.47867,3.31256,1.5984666666666667,3.952795,4.139925,5.07655,2.535245,3.87645,1.75647,3.28948,5.28875,1.77345,1.1434985714285715,3.5398333333333336,2.581125,4.517915,4.062495,3.08571,4.605525,4.879285,2.3414366666666666,5.352,5.3156675,6.62145,4.221805,6.4522406666666665,4.102665,1.7469666666666666,3.000856666666667,4.575375,4.974385,2.70758,7.230321999999999,1.2571657142857142,3.3480000000000003,2.166335,1.775026,2.3320633333333336,2.665366666666667,0.3910442857142857,2.8485666666666667,3.3836333333333335,3.331245,2.501975,3.182096666666667,2.26174,2.3132266666666665,2.341525,9.683959999999999,5.1049,1.697904,5.09535,2.533282304347826,0.7086484615384615,2.8749800000000003,7.599260666666667,1.767664,4.6299025,6.406376666666667,1.93705,1.62066,1.388475,4.09452,3.169815,4.374435,3.7924825,2.3446933333333333,3.48187,0.8551080000000001,2.604874666666667,4.485825,4.260025,4.89361,2.91066,5.1164,5.03405,4.05886,5.05685,5.95045,4.79837,4.31091,4.731,1.55982,1.8304875,2.77071,3.2748,1.1505,4.347485,2.08934,3.351766666666667,4.32291,3.4097333333333335,2.685366666666667,1.4832566666666667,3.156703333333333,2.85764,2.711486666666667,2.8203133333333334,1.86998,1.9844275,2.35265,3.94002,4.603555,4.170705,5.14575,3.49138,2.34832,3.03401,5.0798,3.7502333333333335,4.728085,3.64766,2.286025,4.426565,1.73264,4.00468,4.910176666666667,6.035222380952381,4.11313,4.31592,5.35765,3.429766666666667,3.9876883333333333,4.670795,3.28033,3.8542915,3.26344,1.3060325,3.1873,1.82076,2.17127,4.115085,5.0048525,3.8542915,3.971455,3.542525,1.615375,3.765055,2.144495,2.318303333333333,2.132195,2.790485,1.5918996969696972,1.5918996969696972,1.5918996969696972,0.5427663636363637,0.8642833333333333,2.3072116666666664,1.1183825,3.43557,1.2175016666666667,4.305005,5.24495,4.601425,3.158955,4.00385,3.109525,5.1642,1.7041875,2.896435,2.55117,3.21995,5.824066,4.445045,5.1943,4.14468,1.02467,2.412695,1.3427466666666668,3.760465,3.722475,4.22261,4.993785,4.80195,4.064615,4.78703,3.53676,1.79526,1.362785,5.5845,1.0755122222222222,1.2963,3.04777,8.39882,3.071445,3.74253,3.35953,5.55841,1.63284,0.95594,1.4228825,3.065485,3.38285,4.06209,3.54414,1.8676475,6.471550000000001,2.9124666666666665,0.90165375,4.900195,3.1254733333333333,2.764256666666667,2.41115,3.635666666666667,6.004298333333333,2.8659833333333338,3.4177666666666666,3.5214,2.685563333333333,2.8768433333333334,2.95992,2.836535,2.02135,4.68597,4.63845,4.997995,1.031828888888889,0.748731,3.8888,2.73968,1.05948625,2.8053029166666663,3.71638,4.258885,6.957425000000001,4.73584,3.5445666666666664,1.748114,3.43599,3.58323,3.0379833333333335,2.6183268571428573,4.10547,2.894716666666667,5.0634673333333335,0.9545888888888889,3.121405,1.7668399999999997,3.550285,4.424035,2.28765,1.0763575,3.13705,0.424473,3.695,6.6559,5.4471,2.953338,1.466338,4.0706,0.77405,2.5662933333333333,0.77405,3.93343,4.38244,1.3726975,2.118095,4.951111666666667,1.5566466666666667,3.72308,3.268225,3.80558,1.2497479999999999,1.60599,3.820875,4.237305,5.2292,3.110128,2.5451,3.227225,1.5687375,2.2264075,1.8475425,1.916225,4.30993,1.3799777777777777,1.3799777777777777,3.83762,4.658768666666666,8.316849166666668,4.736573333333333,9.02419,2.416635,3.881315,4.00008,1.7152,3.7267708333333336,4.276735,3.373575,5.3124,2.906945,2.42924,3.1826033333333332,4.29348,1.09752875,4.164205,4.625715,1.13423,8.356480000000001,2.239025,3.16379,3.5920633333333334,4.92766,4.609485,3.6763216666666674,2.5888,2.839783333333333,2.04401,3.7169000000000003,2.3941925,2.15468,7.333892666666666,3.2645066666666662,2.98739,4.27798,22.928166527472527,0.7015666666666667,2.7869,4.677605,4.701885,8.22764,4.789215,4.17888,4.50827,6.774335000000001,3.408675,1.57677,4.732136666666666,3.22782,1.049714,1.049714,1.049714,2.33862125,1.6732075,3.198515,1.4668175,2.98548,1.4869933333333334,2.694955,2.480135,2.970275,1.4668175,3.0753,2.40846,4.20709,4.67223,5.094,0.7960208333333334,3.300585,2.8057,4.83902,3.741935,2.830045,2.3404425,1.713855,2.29193,1.397546,3.823415,1.9423125,4.784525,11.219808,2.8470099999999996,2.29328,4.9657725,4.6583,4.517433333333334,6.42975,2.2167,5.26803,4.631105,1.1077716666666666,1.1645642857142857,6.520684,4.397455,2.54855,3.649895,1.8416125,4.009625,5.0468,4.65873,4.089075,1.34287,4.43863,4.878175,4.90871,6.37754,3.72163,5.50355,4.869885,4.654575,5.0675,3.6935333333333333,5.2248,1.9499575,3.401615,2.985405,3.29377,3.98828,6.0761,4.48528,2.6578633333333332,3.3531999999999997,8.835149999999999,4.662115,3.3248599999999997,3.84622,3.729805,4.51745,4.225245,4.712965,6.879215,3.5931,2.8789166666666666,4.0597875000000005,2.37878,4.48859,2.4588733333333335,6.5405925,1.6479116666666667,4.39425,4.790375,11.7571675,0.5133628571428571,4.50363,4.572565,0.6776592857142857,3.672665,3.881085,4.40727,0.9360620000000001,5.0494,4.678183333333333,2.5724533333333333,9.917125,3.1564200000000002,1.80241,2.38519,3.601475,6.025,0.552635,3.77788,1.9317125,5.46715,0.744253076923077,4.14216,5.7235,5.9366,3.507915,6.331455,4.60587,3.5081599999999997,2.5794166666666665,2.723516666666667,4.297675,4.716905,5.04095,4.9112,5.4155,3.2824533333333332,7.221963333333333,2.8076,3.1201594999999998,1.9277775,4.3885,2.4491366666666665,1.5082266666666666,3.0520600000000004,2.955716666666667,3.1436433333333333,3.5929333333333333,3.5423666666666667,3.215726666666667,2.673626666666667,5.5881,3.1412866666666663,3.72229,5.13765,2.7195366666666665,1.174911111111111,3.1041733333333332,2.9053,4.059245,3.016363333333333,3.0132766666666666,4.687986666666666,2.0655766666666664,1.6090925,2.984945,3.677395,4.527315,1.0588125,4.442715,3.24389,4.1278999999999995,3.1334400000000002,4.8327525,3.967135,3.156215,4.45816,1.73418,3.78462,0.68174375,4.736035,4.93217,16.51117181818182,3.179596666666667,1.1144816666666666,4.133275,0.638695,2.6983,4.42112,1.880725,1.3131242857142857,3.85969,4.66163,3.24939,0.8209216666666667,2.562275,7.71747,4.23073,5.7897,5.2137,5.3916,3.3513333333333333,3.690533333333333,3.2905433333333334,7.132225,4.28846,5.2854,2.1963625,0.42544444444444446,2.1398,3.1119,2.315245,3.32829,3.54046,2.9148599999999996,4.73936,0.7509883333333334,4.89673,3.952685,2.891465,1.1728466666666666,2.772266666666667,1.9524633333333332,4.79405,3.868105,2.04125,1.6095285714285714,3.42204,4.36787,4.557505,6.313486666666667,2.1186066666666665,4.98589,4.4805,4.0251,1.9950679999999998,4.216295,6.49058,5.05425,2.698115,4.70969,2.84006,3.052195,4.2303,3.82506,1.3477649999999999,4.80858,2.1415,2.9300533333333334,5.273176666666666,5.273176666666666,4.5389,1.7057680000000002,4.894605,0.9452275,1.68944,4.99064,2.713276666666667,1.4252233333333333,3.3300666666666667,0.8542500000000001,4.3648,4.465555,3.23187,5.0505,4.4928,3.96389,5.6237525,3.451135,3.5675000000000003,2.94529,2.3669166666666666,2.616,3.037573333333333,4.40182,1.6960293406593407,2.981806666666667,4.49207,4.969115,2.2777108333333334,4.552305,4.78768,5.0892333333333335,3.4879333333333338,5.401,5.12525,5.2568,4.92905,3.949685,3.726635,3.69487,4.530085,5.5101,4.95968,5.0437,4.490895,4.509265,0.6818875000000001,4.963245,4.530065,3.945405,7.3219525,4.603035,3.9139,4.52965,4.99161,3.501235,3.584395,2.1037,4.4552,1.8507875,1.3087014285714285,3.497845,2.0627033333333333,2.4503733333333333,3.5873846666666664,3.3750999999999998,2.9447,1.1151633333333333,2.073615,4.81346,3.888085,1.8871225,1.8871225,3.67049,1.593884,3.1353933333333335,4.502635,3.483855,3.75224,1.4946033333333333,2.03482,3.6511183333333337,2.01317,3.860405,4.49649,4.30582,4.086635,6.563463333333333,2.819325,3.783015,4.8405,4.200515,3.11232,4.070645,4.3315,4.60908,2.17605,2.6594233333333333,4.771805,4.009035,3.84291,3.86964,1.5938575,4.14525,4.486245,4.55685,4.069625,3.9753325000000004,3.9753325000000004,3.1879466666666665,4.386035,4.41349,4.17682,1.783058,7.6985825000000006,3.86649,5.07325,4.30855,4.40829,3.46036,5.0337,2.930865,3.234195,2.753415,5.2368,1.842344,4.307955,5.77848,5.2339,0.729773,4.701102499999999,1.17843,4.844515,4.755425,4.405805,4.10035,5.5044,3.7217333333333333,3.7217333333333333,0.862805,2.2673175,4.980115,3.601505,4.200505,4.894995,5.7278,3.27883,4.46399,1.3934066666666667,2.63371,1.642115,1.231905,4.261056666666667,0.809436,2.5838233333333336,3.1923033333333333,1.1800366666666666,2.13083,2.58625,1.35998,6.41992,2.0647225,2.43571,5.636,2.110845,2.8019266666666667,3.194745,4.636545,3.8715333333333333,3.6635666666666666,4.161933333333333,1.6531420000000001,2.1847733333333332,4.528045,0.6531071428571428,2.14444,2.3644533333333335,3.160626666666667,2.7825866666666665,1.1744185714285713,0.8438249999999999,2.4624333333333333,4.191335,1.1553871428571427,2.2984525,1.3002325,5.6083675,2.2658675,5.07555,4.541965,4.38354,4.957475,5.22975,4.362755,4.211345,1.5156266666666667,3.9365666666666663,1.8316780000000001,2.728073333333333,1.2039614285714286,4.32714,2.1827425,6.897234,4.35209,4.16149,1.499652,6.8771275,4.014605,1.6350983333333333,4.04622,3.03271,4.184535,3.57128,1.984465,1.984465,3.3566000000000003,1.4151916666666666,1.4151916666666666,1.9950679999999998,3.07121,2.1547675,1.2527016666666666,3.522133333333333,1.05827,3.1648266666666665,2.405585,1.8884975,1.5347166666666665,2.165625,2.15414,0.2785782352941176,2.502925,1.2923733333333334,2.2497933333333333,2.0137033333333334,2.51915,1.049821111111111,1.005926,3.6558333333333333,3.1723966666666663,1.984465,1.755295,1.9227999999999998,2.5021633333333333,2.4293133333333334,1.8611280000000001,2.9736766666666665,1.10661,3.2571366666666663,2.80735,2.4956133333333335,1.519462,1.075326,2.45685,1.075326,2.45685,0.69876875,0.69876875,0.4915472222222222,2.45337,2.49342,0.69876875,2.2466825,2.37658,2.500725,1.6563575,0.8425433333333333,0.69876875,0.69876875,1.613724,1.613724,1.9714675,1.755295,0.69876875,2.30556,0.45352461538461536,3.0197933333333338,1.9734533333333333,2.4590166666666664,2.54934,2.54934,0.40168400000000004,0.40168400000000004,1.9950679999999998,2.1007000000000002,2.21278,2.07808,0.40168400000000004,3.5564999999999998,2.50035,1.6600819999999998,0.65433125,1.6600819999999998,0.65433125,7.248,2.47072,4.162166666666667,2.3733633333333333,3.16574,3.1388866666666666,3.0137066666666663,3.551966666666667,2.5942,1.73423,2.8605,3.0972333333333335,2.3307966666666666,1.613724,2.5006193650793653,2.5006193650793653,2.7448833333333336,2.076685,4.13116,2.2591766666666664,3.4469,2.8080366666666667,1.551368,2.43899,2.4030275,0.7773481818181818,1.66262,4.08633,1.729154,3.2308733333333333,2.65529,2.692075,3.9445333333333337,1.6366683333333334,3.5932666666666666,3.087353333333333,4.236066666666667,1.227266,0.21939206896551725,1.2828357142857143,1.2828357142857143,1.0789288888888888,2.967276666666667,3.9133333333333336,2.4807366666666666,2.0671166666666667,2.0671166666666667,2.130235,1.5984666666666667,0.9831239999999999,1.69446,1.69446,0.69876875,1.9950679999999998,2.7954133333333337,3.4079333333333337,2.405585,2.13008,2.13008,2.13008,1.1002366666666665,1.512857142857143,1.512857142857143,2.605025,2.9879033333333336,2.7063464457070707,4.212765,2.4338466666666667,2.6852866666666664,3.82676,3.82649,7.031125,4.01073,4.666375,4.0004333333333335,13.683835,5.0343,3.55975,1.194675,4.196155,3.251915,2.337695,3.5382,5.20945,7.032902,6.0461,0.5084088235294119,3.991765,2.927595,4.210435,2.43623,4.84347,4.28269,4.40337,8.509645,3.424565,3.90293,3.878775,3.2817595454545456,7.7561123589743595,3.035296666666667,2.60638,3.751255,4.18782,5.0749,4.09779,6.482908,4.301065,1.329188,2.83097,0.87132625,5.09325,3.002895,2.686725,3.816075,2.92792,2.4003,4.931155,3.982575,8.12226,3.866305,4.604827,2.4000133333333333,4.73756,2.848085,0.73421,0.73421,3.366885,3.823755,2.309905,2.24436,4.200485,2.819165,2.90435,1.999235,1.9709625,2.871165,2.28623,1.195375,3.62417,4.973565,8.35659,1.613766,3.015875,3.120065,3.58921,2.7924333333333333,8.18106,4.15767,3.672633333333333,3.071623333333333,3.959245,3.3404333333333334,3.0750666666666664,3.1861566666666667,3.87426,3.857315,4.574925,4.13676,0.3867706666666667,1.5965466666666668,2.3135766666666666,1.732175,4.565855,3.587865,2.68932,2.2428575,4.71005,3.82722575,2.148655,2.367335,0.9618040000000001,2.3142625,2.4618066666666665,2.4618066666666665,5.1452,1.82637,3.015083333333333,2.3488866666666666,2.1767433333333335,1.7394066666666665,2.885065,3.65518,4.638465,4.621235,5.37395,4.96993,2.801375,2.9879599999999997,2.07364,4.858105,5.5235666666666665,1.9513133333333332,2.955633333333333,2.253045,2.4102133333333335,4.053421666666667,2.7234866666666666,5.08645,3.877205,3.52678,4.331045,3.0180133333333337,3.496855,4.247005,2.2886366666666667,2.455086666666667,0.41588785714285714,3.8321,2.781803333333333,2.99564,5.948,4.823095,5.908024166666667,1.9342375,1.5919666666666668,3.02243,5.3209,6.4974,5.2641,3.1563499999999998,2.19073,3.561215,2.2005399999999997,4.826225,2.45053,2.34998,5.40125,5.11795,4.47011,1.653515,1.90561,1.050114,1.050114,1.331594,0.9045442857142857,0.792218,1.8314742857142856,4.445035,10.312895833333332,3.97853,4.296405,4.2287,6.01672,2.731895,1.6364233333333333,3.3937683333333335,2.94218,3.82419,2.594543333333333,2.6349033333333334,2.9370266666666667,3.292756666666667,2.37623,3.2328433333333333,3.3405666666666662,3.085593333333333,3.5254333333333334,3.445266666666667,2.94253,2.8327166666666668,3.21311,2.5097033333333334,3.1566666666666667,3.1552333333333333,2.9126133333333333,3.300713333333333,2.1936,5.881765238095238,3.309336666666667,4.369126666666667,3.2581399999999996,3.1831899999999997,3.8092,2.822013333333333,2.978536666666667,3.11683,3.2235566666666666,3.4764,3.379433333333333,1.9722325,2.8142866666666664,2.911716666666667,2.9956,2.9956,3.3770666666666664,3.0633733333333333,2.6391566666666666,2.6914866666666666,3.12999,4.258366666666666,2.7022666666666666,2.761125,2.8150099999999996,2.8109866666666665,4.6054075,5.1654,1.6795,3.3404000000000003,3.7101333333333333,3.484152,3.3396666666666666,3.7799333333333336,3.6411333333333338,2.85958,3.36097,2.06778,3.1115555,3.4769666666666663,3.429866666666667,2.627266666666667,2.566666666666667,3.8562,3.0420133333333332,3.05913,2.51465,1.2744216666666668,3.512366666666667,2.8547233333333337,2.3559066666666664,2.575125,3.3206666666666664,3.236943333333333,1.962832,5.7628113333333335,2.51751,0.9578599999999999,4.66408,1.9370816666666666,1.6963833333333334,4.472735,3.70288,3.23699,2.34888,1.3177075,3.342745,3.03232,3.09018,0.42369500000000004,1.965015,0.42369500000000004,1.890725,1.3177075,2.641975,3.857265,2.459675,3.56814,3.275575,0.547456,3.1138966666666668,0.963675,0.45603764705882355,4.07543,3.89154,4.79479,2.5996,5.72635,4.443895,3.71023,2.24726,4.017966666666667,1.7405519999999999,5.5005,2.44135,4.511875,4.45412,3.09624,1.8823699999999999,2.048713333333333,1.368385,1.885255,0.89259,0.89259,4.3522,2.26826,6.0028950000000005,2.2541125,2.071575,1.72942,2.24166175,2.0449475,5.63165,4.069452500000001,2.024505,2.2458033333333334,2.24166175,2.88563,3.86034175,2.17354375,5.7517483333333335,2.2541125,3.20435,3.338675,3.1089266666666666,5.63425,4.97266,2.01882,2.2202225,2.3336575,2.69148,4.893305,5.49895,1.976445,3.884675,1.59147,1.683035,5.36315,10.885253333333333,2.34089,2.2846866666666665,2.5073666666666665,4.453,4.360765,1.9417875,4.91722,4.548345,2.6998,40.20974547619048,2.8842033333333332,3.203523333333333,0.4110638888888889,4.714823333333333,2.1724433333333333,0.9407144444444445,4.07508,3.89951,2.122285,1.95743,2.4004733333333332,4.051465,1.4066614285714285,3.502533333333334,3.909875,4.889435,0.9625,5.01145,4.85584,5.082,2.927426666666667,1.7185225,3.9250499999999997,4.58868,4.10033,3.047035,3.502445,4.221925,11.980890656565656,2.9684866666666667,3.13705,4.29069,2.802575,4.73125,3.65513,2.629455,3.27136,6.188075,4.76132,5.1898,5.2725,2.528205,4.025665,4.457985,3.716185,4.55551,4.764425,0.10256608695652174,2.2709,5.66535,2.707025,1.4294716666666665,1.1446666666666667,1.1446666666666667,1.969445,2.734735,2.6417,1.613448,2.9029433333333334,4.47079,2.52391,4.3416,0.5728242857142857,4.633515,3.7226,4.66613,4.72972,4.66061,1.24286125,1.12378875,3.7999333333333336,2.9089733333333334,3.1220466666666664,3.948768909090909,4.37226,6.1487300000000005,5.3967,4.21163,3.43184,2.2156458333333333,1.4929,4.3689,0.3057926666666667,3.36848,3.703375,4.024745,15.008856666666667,1.93995,3.3941666666666666,0.688325,4.84431,8.131045,3.05808,1.7497633333333333,5.6742,3.2446033333333335,1.0571144444444445,4.27233,2.95705,3.009215,4.97016,3.430117722222222,1.01838125,7.164191666666667,0.7237275,5.03405,3.223363222222222,1.382855,2.0753350555555556,3.11981,3.11981,3.811415,4.327247166666666,1.366775,2.44753,2.79033,3.489065,3.05542,2.56755,2.93345,3.28651,6.719702666666667,6.4483,4.071435,3.13055,4.576975,4.9186,3.44642,3.246425,3.39561,4.36435,4.501455,2.482693333333333,2.712353333333333,1.6054433333333333,2.27549,2.29074,1.515285,2.5837866666666667,3.6086666666666667,3.551,3.1296433333333336,2.557303333333333,1.4740566666666668,1.7582966666666666,0.48451727272727274,2.717563333333333,1.5133714285714286,2.00457,3.289236666666667,2.4276666666666666,2.5702700000000003,1.03890625,2.21554,2.48249,2.88926,3.552955,5.6585,3.614115,3.0002,2.2209566666666665,3.37038,4.115555,2.415265,2.95736,1.979345,3.680285,2.72263,3.976835,1.40567,0.610467,2.515975,3.24845,3.080655,4.03948,4.76332,8.69669,3.19463,2.5923766666666666,2.180476666666667,1.9554680000000002,1.9554680000000002,2.8247066666666663,2.8729433333333336,4.913995,4.75983,3.726275,4.962665,4.4874,4.60676,3.4226616666666665,4.25737,7.9834075,2.45999,0.497018125,3.3342666666666667,1.35201,1.0167171428571429,2.2073066666666668,0.868358,2.102835,4.62541,5.1921,6.2537275,1.0562775,7.29147,1.951692,1.52051,2.5629433333333336,4.541665,3.383433333333333,2.528075,3.95687,3.1644166666666664,4.312366666666667,2.870646666666667,2.76126,2.9545333333333335,6.619635000000001,2.46083,3.77676,3.670263333333333,3.9819241666666665,1.7328666666666666,1.3126225,4.204925,2.8736266666666666,3.15417,6.0042425,3.05052,2.22722,2.493285,3.19183,3.7009333333333334,2.4748433333333333,3.965016666666667,3.106973333333333,5.09935,2.4568305833333337,1.7794175,4.91488,5.5974,4.73053,4.32158,1.51837,2.395265,1.8817575,3.243165,1.6327633333333333,0.8979400000000001,2.583695,2.06309,1.9671475,4.16371,0.69983,5.81579,1.379505,0.8106154545454545,3.622533333333333,4.367235,0.6807614285714285,3.424958,3.20561,0.8438249999999999,4.791245,0.188205,0.188205,0.188205,0.188205,0.188205,0.188205,1.8945219999999998,4.042415,1.8945219999999998,1.8945219999999998,1.8164366666666665,0.188205,0.188205,3.3996,2.9106199999999998,3.73212,3.27615,2.274425,3.480045,1.4603428571428572,1.69424,3.5961355,1.509854,2.861406666666667,2.6644222222222225,6.1371166666666666,4.44917,4.294955,6.2517,4.57213,4.48465,3.70221,3.75716,7.339015,3.8472000000000004,3.7283000000000004,2.55461,5.613933333333334,2.5983233333333335,2.1350125,1.8751833333333332,4.614975,5.1963,5.0717,5.26455,5.6847,4.470735,4.83119,0.7869127272727273,0.7326142857142858,0.7326142857142858,4.56638,2.21063,3.6521,1.0131842857142856,4.64818,1.5061285714285713,2.33635,2.5903,4.560333333333333,4.560333333333333,6.9402,4.404045,1.4463433333333333,10.756081666666667,3.039876666666667,1.2046555555555556,5.0731,4.971785,3.65286,3.156505,2.43489,4.259433333333333,0.7617533333333333,3.5145999999999997,3.5636666666666668,3.8069,3.317816666666667,1.48762,1.4308633333333332,4.8640425,3.278286666666667,3.125766666666667,3.5339666666666667,5.343206666666667,3.4067316666666665,0.809846,1.8920199999999998,3.6692,2.3897383333333337,3.83,3.4919333333333333,3.23291,3.5797000000000003,3.2215233333333333,2.629356666666667,1.1404033333333332,3.11205,2.5231933333333334,3.747075,3.357895,4.13631,2.71876,3.2685433333333336,2.770025,1.6135179999999998,2.2763566666666666,2.759057142857143,3.7346,1.982034,3.2088933333333336,1.8732499999999999,3.7448333333333337,5.366248333333333,5.139496,2.600125,2.66125,2.772025,2.624275,1.6326,2.3464725,3.3098389285714287,2.491325,3.6827666666666663,2.68662,3.907433,2.92354,1.303122222222222,1.2580175,1.7144725,2.2157525,3.0796500000000004,3.6063333333333336,5.19185,7.4104975,2.881835,5.15695,4.20741,16.287073,0.40493100000000004,11.745995,0.9109366666666667,3.20109,3.7708666666666666,3.1356033333333335,2.878005,1.56556,1.43746,2.5474666666666668,1.397068,2.7550746666666663,2.032696666666667,2.9100966666666666,2.4403,2.7972366666666666,1.5497666666666667,0.6376575,3.187333333333333,2.56201,3.14048,1.1002366666666665,3.6690666666666663,0.7497199999999999,0.3499269230769231,2.07009,4.655515,4.6377,4.869475,0.8472036363636364,3.924755,4.556155,1.1006325,2.3291375,5.306115,3.00661,3.96079,3.789485,3.83978,1.9480675,3.808755,2.71869,2.036395,3.5144,3.0463,2.65202,3.81957,3.14957,3.565905,2.02913,3.21383,4.80254,1.2490966666666667,4.710675,2.1739025,4.28144,5.330026666666667,1.94874,2.89077,3.1161433333333335,6.056216666666667,2.47905,3.067895,5.1782,4.162166666666667,3.85292,1.9205966666666667,2.824575,4.98235,3.6479,4.338115,3.8538,3.231246666666667,2.8899000000000004,3.7040666666666664,3.14449,2.65377,2.68306,0.4467216666666667,2.214345,2.262655,4.805245,4.81929,3.245373333333333,2.9487733333333335,3.313003333333333,8.72809,3.59765125,3.86063,2.9851533333333333,4.194265,2.968765,3.660661666666667,3.023353333333333,2.32449,2.947416666666667,6.3286,4.50376,2.0675333333333334,3.27715,2.98613,2.759256666666667,4.856503999999999,1.7109580000000002,6.107620000000001,4.20903,4.99306,4.577235,6.0567,3.49884,7.239703333333333,3.49121,3.151385,0.6755000000000001,2.379735,1.46886,3.006326666666667,3.4135737500000003,4.169555,3.924745,5.54165,2.67732,4.727775,3.7716,4.0019,3.262356666666667,4.764045,4.788755,4.891845,3.1844900000000003,6.39047,4.685075,1.496715,5.48515,3.65067,2.682565,2.15713,2.15997,4.715703333333333,1.3326600000000002,2.4471233333333333,1.9737775,3.73469,4.36789,2.6739766666666664,3.3790666666666667,3.134243666666667,2.62915,4.34982,1.3631,2.357813333333333,2.2363833333333334,2.760946666666667,2.4312766666666668,2.533986666666667,2.62358,3.900485,2.919506666666667,2.755333333333333,4.168745,2.28731,3.69133,3.49821,1.3202480303030302,1.3202480303030302,4.69409,2.99132,1.720425,1.320755,2.13227,2.1626375,1.126406,1.4915633333333334,0.643302,1.5954766666666667,1.5014733333333332,2.7432966666666663,2.19828,1.7588566666666667,1.9034966666666666,2.31428,1.5088866666666665,1.8147966666666668,1.7646833333333334,2.458755,3.785885,2.80994,3.042456666666667,2.69975,5.614,2.91425,4.341385,4.1355325,1.951815,4.273905,3.17275,1.852095,3.390815,1.9764025,3.19942,3.43354,1.9029125,4.52511,3.65518,4.0865,3.423166666666667,0.9012355555555556,5.261,3.703945,3.222865,3.5963,2.3784033333333334,4.79562,4.964295,5.2030787499999995,9.095543333333334,3.79491,4.441465,2.714226666666667,3.79416,4.528735,2.377215,2.49381,4.38481,2.277215,5.99653,1.823426,2.66932,6.4609483333333335,2.960516666666667,4.18022,1.3320514285714287,4.72477,4.739345,3.3808333333333334,4.724905,5.098,6.59224,16.59377208333333,0.6520176470588236,1.049821111111111,3.23779,3.946855,3.677045,2.1382675,3.319005,3.94112,4.70541,2.508165,4.65057,1.7764833333333332,1.7764833333333332,5.35575,0.7554718181818182,1.7910499999999998,3.074645,3.949615,0.36423230769230763,1.8767233333333333,4.231472833333333,1.1381916666666667,3.0443866666666666,2.69568,2.93904,7.74169,2.48106,3.716333333333333,1.9724333333333333,2.1988933333333334,4.2913475,3.434215,3.41749,6.9409535,1.8187075,2.98165,4.439735,6.9887524999999995,1.9146,2.3513766666666664,2.549446666666667,1.4050466666666666,2.49185,1.87494125,3.88359,3.721895,1.4774075,1.8915666666666668,1.8915666666666668,2.8898433333333333,5.3952,4.243653333333333,3.80014,4.355465,4.43561,3.236115,3.586925,4.08925,3.407595,4.2631499999999996,4.1471824999999995,4.728685,0.9374370000000001,0.3385025,5.36165,3.83252,2.4245233333333336,7.91622,1.4891766666666666,4.729933333333333,4.02238,0.3759341666666667,2.0328666666666666,1.21123,1.8035466666666666,2.0513833333333333,5.467134,3.11556,3.0101,4.5525,4.324615,4.73142,0.5899169230769231,1.90968,0.587772,5.724715,1.60501,4.97356,2.133255,3.10522,3.214045,4.063455,4.32634,5.0222,0.9086190909090909,3.40416,3.87838,1.9520125,1.685935,3.703565,3.20629,3.59111,3.714385,5.585309523809523,4.46811,5.58805,2.856173333333333,0.5348277777777777,3.4972,3.78402,0.6216746153846154,3.922565,3.78524,4.018655,3.04182,2.60297,4.877105,3.02954,3.007685,2.173985,3.77391,1.8096419999999998,3.552265,3.764355,0.5899984615384615,3.568745,3.78615,3.08638,3.95114,4.302225,2.84129,3.809185,0.602902,3.1565266666666667,3.78925,4.740625,3.532033333333333,2.51675,3.4736333333333334,2.51675,5.2106,3.088665,3.2513400000000003,1.632865,3.1797066666666667,1.953155,4.32748,2.959633333333333,5.588573333333333,3.2164066666666664,2.9961866666666666,3.096413333333333,2.486415,2.486415,2.486415,2.4543566666666665,1.188885,4.57333,2.29293,1.5947500000000001,3.908533333333333,2.5619433333333332,3.0466166666666665,4.46248,5.5077,3.69252,2.0193825,1.0832700000000002,4.03573,1.9881,2.3671533333333334,3.09097,3.51066,2.0480375,3.492675,2.79445,1.648918,4.66656,4.04904,3.184405,3.535645,0.7319777777777777,2.3785833333333333,4.782635,7.439275,4.3332,2.998205,2.61493,3.338025,3.772745,1.72261,2.2672775,5.05195,2.23076,4.436635,3.78742,5.51095,8.72499,3.893665,3.764365,3.471635,4.8633,4.051735,3.31955,3.31955,4.3802,4.207003333333334,4.458165,3.98415,4.29471,4.556145,4.051595,1.1565975,4.24129,4.291775,5.44165,8.092365000000001,5.3515,3.7317306666666665,1.8140766666666668,1.53231,2.48915875,5.17785,4.10223,5.26673,2.4397766666666665,4.645645,5.0858,5.23615,4.907,2.976226666666667,3.88234,4.42783,5.3127,4.90416,4.12799,6.654413333333334,4.54959,2.2592433333333335,4.978195,4.31755,4.321805,4.034445,4.89533,0.7649609090909091,4.555545,4.450475,1.22623,1.29002,5.02525,4.953815,9.073593,5.5461,4.761715,6.15865,2.925975,2.7048400000000004,5.2272,1.72044,1.72044,2.671075,1.5927766666666667,2.9609491666666665,3.25853,1.9380075,4.047705909090909,1.39089,2.214525,5.420095,3.587225,3.423545,3.09867,3.91267,3.87892,2.9965766666666664,1.06695,3.95283,3.1705566666666667,3.904195,4.131855,3.7544299999999997,5.4966,4.9566,4.800975,3.614585,5.5853,6.4447,4.852725,3.218825,3.72381,1.95464,1.95464,3.78181,4.0884,2.6112333333333333,2.7832566666666665,2.215170606060606,2.7606866666666665,2.198976666666667,2.198976666666667,4.579195,3.484535,2.13975,3.555855,2.734175,1.89709,1.252935,1.0665777777777778,2.726115,0.4583357894736842,0.8302333333333334,2.639825,4.075895,0.4179627272727273,4.177535,2.04372,5.38785,3.272225,7.7160875,4.430005,5.4346,4.656525,5.3576,4.160545,1.74583,2.0267399999999998,4.154245,2.983995,3.88836,1.2787033333333333,3.20339,4.3559,2.642715,2.646665,2.57153,4.383475,3.19247,2.886495,3.778585,3.551585,2.94456,2.963305,1.104987142857143,2.03727,2.239755,2.639815,4.367525,7.31021,0.8948560000000001,1.6663066666666666,1.6663066666666666,1.936834,3.96436,2.832165,3.07935,5.789885,2.9147466666666664,1.2715725,1.2715725,1.2715725,2.8826,3.0811305000000004,4.59142,3.14009,4.089795,3.324675,3.60579,2.86768,3.2666958333333334,3.67168,4.06494,2.8281625,1.126406,2.94313,2.8281625,3.71026,1.3400366666666665,1.9207,2.0679325,5.137549333333333,3.01532,6.055376,5.137549333333333,3.040056,1.9824433333333333,1.9824433333333333,2.542245,6.08471,1.9824433333333333,2.20658,5.60086,2.250425,2.36382,5.23571,3.456075,3.97484,1.7871133333333333,3.0845,4.21748,2.1304866666666666,2.39357,3.90027,1.7871133333333333,2.66208,2.04098,5.10688,2.563835,1.026958,2.62731,3.350065,3.3791156666666664,1.99438,1.914319,3.89755,2.1076506666666663,1.821085,3.29506,2.339705,3.128825,3.58549,2.11122,2.80849,2.38259,6.47281,2.322095,3.432925,3.28162,3.28162,8.82516,1.26354,3.160515,2.36999,2.987565,2.235275,1.0942766666666668,1.0942766666666668,3.67684,2.103355,6.09505,2.05882,2.729315,3.341855,5.57627,2.717415,2.24784,6.587825,6.587825,2.683895,1.384245,1.360275,1.360275,1.384245,1.9040833333333333,1.2244599999999999,1.1315416666666667,1.5224833333333334,2.060896666666667,3.839835,1.579625,3.2045,2.85492,2.825175,2.759795,2.62725,2.52256,3.2669325000000002,3.2669325000000002,6.03572,2.442035,2.835105,2.844885,3.14609,2.48427,2.708095,2.466895,5.39174,1.83285,1.750591,1.4340193333333333,2.5182243333333334,5.55107,4.421067666666667,3.7546816666666665,3.13937,1.782915,1.782915,1.782915,4.9939,2.31907,1.1315416666666667,2.940275,3.651475,1.2516825,5.2301725,2.99114,5.67977,3.59592,1.70195,3.46946,2.5336666666666665,2.277715,3.454435,4.62162,3.35446,1.96076,2.468825,3.0975,3.154285,5.00701,1.83824,3.23438,2.55108,5.4624,4.31188,1.904315,2.066785,6.08153,4.92245,5.35571,5.16023,1.2441900000000001,1.2441900000000001,2.349841,2.349841,0.630736,4.74042,3.23189,4.86333,3.81636,4.70196,2.156115,4.869691666666666,4.869691666666666,2.14254,3.390095,3.31098,1.243598,4.54247,3.156875,3.101,2.539535,4.58357,2.31591,1.973445,2.90372,2.830375,2.799685,5.41942,2.6818,1.67525,3.550265,4.98222,5.88057,4.40515,2.945475,3.61748,2.59878,5.70333,2.620135,3.85889,1.898545,6.49443,4.07504,2.247635,3.11855,2.547265,4.77319,2.017765,2.48859,2.49023,7.32205,5.07162,3.368245,2.19327,2.29557,6.12985,3.38669,3.31006,5.28896,2.842935,2.872205,2.724415,3.25305,1.8615000000000002,1.982455,1.9657966666666666,1.73748,1.95099,2.082953333333333,1.650805,2.21877,1.858115,1.8615000000000002,4.0687,3.65526,2.17207,1.746425,1.746425,3.5700200000000004,3.5700200000000004,2.8264566666666666,2.8264566666666666,2.690145,2.330505,1.80656,4.10263,2.2478875,2.2478875,2.4592225,2.4592225,3.41223,2.114,4.50956,2.192535,2.839775,2.0372566666666665,2.0372566666666665,1.42881,4.05526,4.75144,1.3400366666666665,4.388,2.11122,2.129235,4.48683,3.1488,1.89612,2.281285,5.78744,2.221555,5.6148,3.278455,3.177215,3.11451,2.663605,6.03175,3.2312,2.12836,2.4450003846153847,3.0267,5.76427,3.682195,1.5317859999999999,1.5317859999999999,4.04221,4.9697,4.78551,4.76419,2.74884,2.7673,2.021955,2.68231,1.690775,2.89428,1.69902,0.884342,0.884342,0.884342,2.0509500000000003,4.71976,2.0509500000000003,2.197425,3.590345,1.67505,2.155365,4.51075,3.48199,5.22091,1.7600066666666667,4.52886,1.7600066666666667,1.7600066666666667,2.344875,1.81918,2.444325,5.38086,2.444325,2.43757,4.18834,2.068455,1.765015,2.817345,3.0874966666666666,3.2623708333333337,3.2481299999999997,3.59881,1.4723783333333333,4.452625,0.7782354545454545,4.46249,4.303767499999999,2.7736549999999998,2.7736549999999998,0.7551654545454546,3.912266666666667,2.7770766666666664,5.75305,5.1151,4.00088,5.05245,4.339245,4.23674,5.13185,4.20896,4.31578,3.80519,3.88307,5.14715,5.15265,3.353125,3.43298,3.979575,2.5771433333333333,1.408346,4.34811,3.70343,2.997695,1.306827142857143,3.69256,3.896105,6.330345,1.161945,5.28535,4.312455,2.128855,2.01722,3.20125,3.44342,1.704195,1.5317859999999999,3.946425,4.90515,2.565405,4.64077,3.025975,1.153,3.068403333333333,1.2549242857142857,3.0416966666666667,1.6902333333333335,3.18798,1.868995,2.6388966666666667,4.242495,3.50146,4.563765,3.239785,2.2271825,4.74851,4.25754,3.294395,5.3692,4.350165,2.5975333333333332,6.1641,5.16015,3.102515,2.6300233333333334,3.15082,3.191546666666667,3.19688,2.8936933333333332,4.697835,4.138765,3.682105,2.444096666666667,2.5639066666666666,2.3400733333333332,2.48666,2.2049333333333334,2.30871,2.5108433333333333,2.325555,1.51288,3.0210143333333335,1.23306,1.994865,1.7335,2.713425,1.59417,1.748665,3.9357,4.093695,1.941125,3.849645,3.986025,6.203505,2.049263333333333,1.6889939999999999,6.75535,3.74046,5.04915,4.24987,4.0547,2.024245,3.536985,2.617675,3.030115,4.3701,0.7136683333333332,3.76308,2.2264,0.8117572727272727,5.04505,4.287375,3.88834,1.8400151785714285,4.802865,5.41465,2.7026133333333333,2.833206666666667,2.44422,2.1208933333333335,0.5994729999999999,3.0729966666666666,3.088925,5.01995,2.46778,2.1029675,3.82109,1.0356625,1.8932533333333335,1.8932533333333335,2.7257,1.8932533333333335,4.180445,2.84489,4.58835,4.363575,5.9597,14.086430833333333,3.265893333333333,4.96906,2.66763,4.744745,3.14215,6.767425,3.01341,4.651745,4.932085,3.893385,1.1568283333333333,4.986915,3.14039,2.7207166666666667,0.9393033333333334,2.155015,3.10238,7.5857,4.67239,3.07121,4.663155,3.3566000000000003,4.203395,4.607515,4.37096,2.7938,2.888866666666667,3.86366,5.7212,2.412275,4.75052,1.7948225,1.7948225,2.99335,5.03485,0.9313625,4.204725333333333,2.07566,4.98509,2.5470200000000003,2.7316933333333338,3.1484199999999998,2.1088733333333334,0.7307928571428571,3.573265,2.7619933333333333,4.877155,4.79999,0.2457084375,5.0049,4.58048,4.3779,7.033918333333333,3.1751833333333335,2.8804499999999997,2.208666666666667,3.0620366666666663,3.04769,1.4513866666666668,3.00225,2.815863333333333,1.4554,3.490266666666667,3.15059,2.9266799999999997,3.04853,1.4081516666666665,4.31115,2.710785,5.2939,3.898695,3.858775,1.6175533333333334,2.4767233333333336,1.3039225,1.76163,1.3039225,5.0865,3.5698000000000003,1.604082,2.4629375,3.92234,3.79029,2.861105,3.72627,0.34307750000000004,1.528715,3.69313,4.06676,6.1186,2.2085275,2.904916666666667,3.1165033333333336,2.4735466666666666,3.004855,3.277345,4.84809,2.683875,2.5560433333333332,3.0657333333333336,2.590716666666667,2.7343499999999996,4.26029,2.29952,4.654705,3.9207125,5.87545,7.7398325,0.7122366666666666,0.813297,4.32505,7.05928,1.9303940000000002,3.420315,1.0623583333333333,1.0623583333333333,3.476675,0.4460544444444445,3.559095,3.675735,2.811325,4.370675,3.225315,2.42687,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,0.23520899999999997,2.10677,3.18544,3.6699216666666667,2.8724416666666666,4.6323075000000005,6.074884166666666,3.03276,2.166776666666667,0.9310466666666667,3.46802,0.8085975,5.754601666666667,3.587825,2.46738,0.8085975,2.435725,2.804155,1.1054375,4.0090275,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,0.1617851111111111,4.509525,1.6314325,4.89553,4.693735,1.78352,4.742015,4.445345,5.26865,5.085684166666667,3.6538432142857142,3.21682,4.4801,2.2187325,6.136324999999999,4.794605,0.7733285714285714,1.4648428571428571,1.4512142857142858,3.3041966666666664,3.3041966666666664,3.0821216666666666,3.90906,4.520675,3.785775,4.37391,2.8673866666666665,1.9899666666666667,0.6400557142857143,3.96747,3.153315,2.649945,3.97263,3.29634,3.15227125,4.435595,4.45225,6.54133,4.03993,4.92818,5.89925,4.619425,1.3103542857142858,3.05114,4.943073333333333,34.522700222943726,1.2746666666666666,4.42089,3.38424,4.65127,4.110085,5.7003,5.1998,0.4046128571428571,5.2712,4.496885,2.11566,2.12454,4.00288,1.55706,2.476975,2.196585,1.673985,2.933735,2.4293133333333334,2.698725,2.784935,0.5942646153846154,3.36237,3.708575,0.3961842105263158,2.54352,2.973535,3.50513,3.83022,1.777125,4.52349,3.950635,3.254235,3.668945,3.116595,4.41061,2.965825,3.772725,2.233405,4.943073333333333,3.44907,3.43445,2.83744,1.7420680000000002,3.76295,3.38546,6.992965,3.35264,5.0268,6.86371,5.134798,2.4028175,4.498345,5.9795475,7.45649,2.7285133333333333,2.472255,4.965075,5.737346666666667,4.462765,3.350025,5.635538333333333,2.6413,1.6972775,2.22475,59.93258914363114,5.0041,4.515125,2.566325,0.8540430000000001,2.963483333333333,2.9340166666666665,3.5126333333333335,0.8874288888888889,4.54595,0.8737166666666667,7.726488214285713,1.9881,3.3519666666666663,1.745128,2.569185,2.6285366666666667,3.012043333333333,2.3998466666666665,2.2185333333333332,3.468666666666667,1.4145833333333335,5.1022083333333335,3.7171333333333334,1.385075,2.64208,1.3863533333333333,1.471375,7.2492,5.88465,3.34689,4.53683,5.495985,1.4360285714285712,3.5534666666666666,3.196885,1.6705525,5.05565,3.69864,3.929195,1.87082,2.9409199999999998,3.6496666666666666,3.92268,5.78525,4.084445,4.42445,2.05662,3.668335,4.5399666666666665,3.22336,1.572292,4.54054,3.3595666666666664,4.206425,5.2667,3.87299,4.09426,4.85305,4.40451,4.267965,4.702445,4.149045,3.21364,4.23643,4.46195,3.07196,4.479235,4.031665,1.45792,1.45792,4.36671,4.829205,5.01055,3.65685,4.919875,3.4667333333333334,2.743095,4.612825,4.92686,0.7196218181818183,5.4009,7.088632499999999,5.3857,5.7515,1.1302444444444444,2.9708,0.9180799999999999,0.9180799999999999,0.9180799999999999,3.673805,3.3538333333333337,2.98977,3.735466666666667,1.03214,5.2074,4.95011,3.216845,1.73444,2.1541775,4.23158,3.4781,3.746105,2.980312,6.8406,3.409515,2.5458366666666667,5.00115,6.70415,2.45828,4.280985,3.69346,3.056535,5.1261,4.676255,5.18845,5.95205,3.215645,3.8259822222222226,1.9230666666666665,1.9230666666666665,0.6983845454545454,8.746312,2.098605,6.0368,5.82375,4.42266,5.0248,3.701775,3.0468633333333335,4.89167,7.697,5.806233333333333,2.63293,4.418385,1.0264099999999998,3.73349,1.8684633333333334,0.9291688888888889,1.2185142857142857,2.9364133333333338,3.12134,2.81164,1.2134857142857143,2.7346466666666664,3.092083333333333,0.9216977777777777,2.841063333333333,3.400933333333333,1.637394,1.787538,3.1445333333333334,2.9235866666666666,3.069933333333333,2.63986,1.8014379999999999,5.5236,4.550275,4.24421,4.639225,5.39845,3.06108,4.398765,5.7284,4.852265,4.248115,3.844225,9.851288333333333,8.291575000000002,3.028226666666667,3.338185,2.2396233333333333,3.76382,3.229925,4.54856,1.0457400000000001,3.9267,3.6652,1.7474333333333334,4.169555,2.898391666666667,4.53888,2.49203,3.75822,6.4263,7.0919799999999995,4.269035,1.577445,1.577445,1.577445,4.69509,1.2001733333333333,1.4621875,0.4910538888888889,4.478640833333333,3.04199,3.77551,0.9556150000000001,1.157675,2.95724,4.34011,3.822575,16.77295104761905,4.2004025,4.38706,6.297185000000001,2.943073333333333,3.665785,3.657565,0.9479033333333332,1.6122225,4.16744,3.872785,4.78377,4.91985,4.653835,4.40393,2.7099213333333334,3.20269,5.33455,0.558535,4.79205,2.3986325,4.23344,4.90631,3.5990333333333333,2.523493333333333,4.053851666666667,1.9655633333333336,3.5393,6.0296,3.2342866666666663,4.251315,4.62715,4.345465,4.97833,3.95689,3.78335,3.964035,5.22815,4.954705,3.618115,4.696595,3.79357,1.2043057142857143,1.5143125,6.318363833333333,5.80555,4.05094,4.67895,2.47919,2.627006666666667,2.7716166666666666,5.74952,1.9498375,2.14051,3.110333333333333,3.10712,3.349933333333333,4.631075,3.421215,5.234921666666667,1.1680725,4.53105,0.9128216666666668,4.08552,3.277675,1.6384766666666668,4.685665,0.9500588888888889,5.01745,5.78555,5.184,3.93101,3.8550933333333335,3.86918,3.1689066666666665,5.1611,6.0199,2.8369175,3.94488,2.36495,2.627805,1.952775,2.74212,3.625095,5.21935,1.05827,4.4052525000000005,1.3882725,3.27427,1.5570866666666667,1.05827,0.1875762162162162,3.994865,2.914515,2.3476670833333335,2.01216,2.62137,1.121105,4.186035,3.71025,4.54516,2.5018766666666665,6.1548,6.43779,2.66056,3.422633333333333,2.64126,0.829743,2.2618933333333335,6.2532,4.09404,5.40575,4.96604,2.0095633333333334,1.3452400000000002,3.9229725,1.6334675,2.252505,1.6707975,2.88845,1.5710625,1.8895025,1.892895,2.0550275,1.928325,1.3494542857142857,1.4128725,1.988155,1.81864,2.221385,2.2460566666666666,0.553392,1.017214,3.1373933333333333,3.3515333333333337,2.0647225,1.9241166666666667,1.57153,3.90576,2.19186,2.61891,3.00887,4.997855,3.864685,3.0370166666666667,4.499455,1.5562835294117647,3.92027375,23.421940499999998,4.5559866666666675,5.5236,4.429655,2.2577599999999998,3.917135,4.81293,2.269845,5.2272,3.097936666666667,0.80937625,3.49699,4.60848,3.88121,4.129045,1.4463366666666666,2.074876666666667,2.214656666666667,2.206425,1.577142857142857,3.2279933333333335,5.1833,4.122905,3.262345,3.898775,4.8806,3.69821,4.990165,1.2953375,3.18667,4.10372,4.832955,1.6482299999999999,3.25313,1.8207425,1.8207425,3.53931,4.797015,2.7108399999999997,3.1859033333333335,3.73485,3.73142,6.6305125,4.55295,2.338185,1.6122225,2.9868,4.33821,3.1648266666666665,2.5006193650793653,2.5006193650793653,3.312196666666667,4.977995,3.56974,5.052874444444445,2.327865,3.1883213333333336,0.5834466666666667,0.5834466666666667,0.5834466666666667,3.807785,3.71427,3.9822283333333335,5.21205,1.9844275,4.859585,5.05625,4.53594,3.664575,5.6677,2.45391,1.3689385714285716,4.63285,3.93594,0.5039078571428571,4.3761,5.10335,1.5151666666666666,5.1542,5.24795,4.664565,4.59613,3.746885,2.936125,4.484505,1.6612660000000001,4.310455,1.6453216666666668,4.19772,5.91755,1.07210875,3.036425,6.98369,3.99341,3.27966,2.14021,3.881825,5.88545,3.13116,7.977428333333334,4.22937,2.1129233333333333,3.2010199999999998,2.686576666666667,2.654783333333333,2.746843333333333,1.83789,4.242195,0.6545283333333333,1.8361325,1.8361325,3.101735,3.58502,2.282075,2.995095,4.369305,5.1119,4.42551,1.42049,4.768513952380953,4.41706,5.128,3.84687,4.3622250000000005,3.9230169999999998,0.439208,2.6582364285714286,1.01520625,0.439208,4.548795,0.8329122222222222,4.593545,3.805565,6.628198,2.0963433333333334,1.0131,1.111516,2.2702,2.99975,1.9284266666666667,2.4040733333333333,3.30666,3.60035,1.9411666666666667,2.2865533333333334,4.67622,3.13132625,3.98915,5.65045,3.414585,4.957645,6.863508333333334,5.0873,3.5496,4.4982,3.78734,4.552365,5.17465,5.8955575,5.6388,2.4339833333333334,1.0278044444444445,3.95038,3.832,4.07254,4.321385,4.14186,5.08345,2.6521166666666667,2.5583066666666667,3.2946666666666666,2.65767,2.209496666666667,3.1874966666666666,3.347766666666667,2.634183333333333,3.940015,4.872245,4.258705,5.38445,2.69291,3.4187333333333334,2.9482,0.7395357142857143,4.19755,3.72856,4.62582,3.04185,5.627173333333333,3.686475,4.78053,4.17233,0.6307646153846154,0.5683685714285714,4.371075,2.929069,3.21286,4.60615,4.492105,1.8223639999999999,5.40005,4.51623,2.7479433333333336,2.5831833333333334,2.3808425,2.199217916666667,3.5621666666666667,3.3538333333333337,3.1955500000000003,3.1742933333333334,3.5370666666666666,2.6787,3.23334,3.7683666666666666,4.4193225,0.54835,0.54835,0.54835,3.4562113333333335,3.660766666666667,3.6846,2.8082933333333333,3.02543,1.1565975,3.0444266666666664,3.0940966666666667,1.891555,2.5688333333333335,2.5875833333333333,1.0283577777777777,2.8439883333333333,4.76653,9.85112625,1.492323,0.646692,3.64125,0.646692,0.646692,0.646692,0.646692,2.1145275,4.045305,4.10548,5.14445,6.0421,2.8961900000000003,2.790986666666667,3.134255,3.1370033333333334,4.912095,1.0045583333333334,2.3487066666666667,3.2172666666666667,2.6385133333333335,3.0819166666666664,3.047235,2.1381966666666665,2.427085,1.1613111111111112,4.324175,3.105865,3.989405,0.928655,0.687619,0.687619,0.9170083043478261,1.845663304347826,0.9170083043478261,0.9170083043478261,0.31764130434782606,0.31764130434782606,0.9170083043478261,1.4361266666666666,2.32032,2.909065,3.1046099999999996,2.4823766666666667,2.7116166666666666,3.1416066666666667,2.7279966666666664,4.521225,3.53496,1.891615,2.196356666666667,1.7590125,0.1864962941826215,0.1864962941826215,0.1864962941826215,0.1864962941826215,2.38526,2.3271933333333332,0.840204,5.1041,0.7821490909090909,1.691216,4.811835,5.08325,4.524265,3.351075,4.471975,3.766625,1.5556400000000001,1.2101175,3.708895,4.7705,6.4244,2.274875,1.4983666666666666,1.9259899999999999,3.12314,1.4128333333333334,2.7034866666666666,3.0376666666666665,3.3058833333333335,4.6365,4.19715,3.0593,5.06245,2.6651266666666666,4.411265,4.90586,4.29596,4.56606,4.84451,5.3674566666666665,5.288654166666666,3.1793760000000004,5.023804999999999,4.81366,6.20355,4.4173,4.676965,2.2395225,3.007355,4.25802,4.71933,4.2949,4.068395,4.608425,4.352685,4.240395,2.5127533333333334,5.38085,3.611335,7.5490900000000005,6.04125,5.95695,4.969145,1.5127285714285714,0.9945729999999999,0.6386938461538462,1.7520479999999998,4.93475,5.40225,3.819565,1.7259360000000001,3.970545,2.96847,4.656075,5.20255,6.039581999999999,4.013065,3.06069,1.643818,5.100675,3.87976,3.189805,1.905835,1.07929625,3.84964,3.35864,3.737675,3.65639,2.152545,4.41852,1.8457233333333332,3.0079499999999997,2.33498,4.38638,4.968475,4.916105,2.276975,1.532735,5.7239,2.98804,8.81374,2.90275,5.23695,5.94345,4.71153,5.2691,3.90271,5.00535,2.200595,4.270825,5.186319,2.700575,4.28466,4.62838,7.411149999999999,5.11395,3.270376666666667,4.43787,4.159145,3.13132625,3.55643,5.2473,5.46885,2.4528875,3.1060199999999996,3.3842,2.20759,2.6366,4.47954,5.97055,5.00355,4.671915,5.05035,4.373525,5.1769,0.6727584615384615,3.162333333333333,1.3349357142857143,31.561187179153727,2.44312,4.652745,3.252035,4.610055,1.67034,2.4699666666666666,3.194875119047619,1.6723576190476193,1.6723576190476193,1.6723576190476193,1.6723576190476193,1.5225175,3.36537,0.3347966666666667,7.868660972222222,0.3347966666666667,4.60893,5.00175,1.907445,5.56045,2.559675,3.9811680000000003,2.3955466666666667,2.46751,2.6734666666666667,2.148093333333333,0.62076,2.5394200000000002,0.7409233333333334,3.215536666666667,2.18988,2.2350440000000003,1.1718433333333333,2.2350440000000003,6.13085,8.10715,4.87871,4.37233,5.8265,6.33605,7.439346666666667,3.30278,1.47819,1.47819,2.3056566666666667,5.10795,3.63391,4.632115,6.401123333333333,4.08838,2.818555,3.95082,3.453765,3.535695,2.23673,1.142484,2.15665,3.694415,4.06359,5.375812222222223,2.03484,4.180615,1.3836,3.14507,1.362842,3.5043333333333333,3.2763566666666666,3.313993333333333,3.2513666666666663,3.17296,5.08805,0.6752776923076923,3.37655,3.722,2.8467033333333336,2.3190133333333334,4.3057525000000005,3.4625,2.28472,4.845785,3.80144,5.21595,3.8181,3.49981,5.4258,5.11525,2.3389266666666666,5.83095,2.3372539999999997,1.90974,3.19815,2.7013466666666663,3.0598733333333334,2.57483,1.9810266666666667,3.442850772727273,4.54194,3.24309375,2.5022686666666667,2.5022686666666667,2.529155,3.79958,3.991545,0.7000809090909091,3.083865,3.259635,8.67095,0.8749281818181818,4.72471,3.83371,5.44795,3.79512,3.959905,2.241595,4.18566,2.82908,5.5929,2.6769225,0.9916275,3.853125,2.6147933333333335,3.83402,2.7391366666666666,3.559175,3.727795,3.903065,5.231083,3.061195,1.933865,5.26135,2.3823933333333334,4.8644,5.14325,4.841975,4.400475,4.118265,2.83046,2.07441,3.0628100000000003,2.8627966666666667,2.801925,3.403166666666667,2.7439840476190476,5.09732,3.0583733333333334,2.775793333333333,6.802065833333334,5.241604166666667,3.843575,3.20443,3.8659,3.964505,3.329295,2.10075,3.855485,5.1469,4.854485,1.453905,4.11784,2.7867033333333335,6.7592324999999995,4.904095,8.936982222222223,4.01409,4.07334,2.044255,4.094245,5.709585,7.54025,3.87756,4.98203,3.943565,3.121735,3.86424,1.7109580000000002,4.775834,1.4426350000000001,3.634665,4.564085,3.5426333333333333,0.8587333333333333,9.498988333333333,1.2146777777777777,1.9176325,2.5039700000000003,1.80976,3.4849333333333337,1.3811266666666666,3.509675,3.36667,2.3705700000000003,4.185005,1.2271983333333334,3.614905,1.431985,2.9294143333333333,3.83747,4.44547,1.68075,5.630544166666667,2.3315526666666666,7.94359,4.359025,2.48408,3.92011,3.281775,1.2457966666666667,7.34722,2.955,3.27373,2.350975,4.01684,2.1887525,3.1555825,2.15033,3.98852,1.349855,5.3549,2.94856,4.047355,0.8682679999999999,1.9777866666666666,3.71178,5.26745,5.2714662500000005,1.462072,1.462072,5.84875,4.517545,5.4962,3.7903,3.363995,9.48046,4.51356,5.59695,4.115475,2.4635175,2.0985858054275472,0.327926,0.18007774193548387,0.571888853046595,1.1987709523809524,0.6439020276497696,0.18007774193548387,1.202866,0.3918111111111111,1.5266969523809524,1.774754853046595,2.1515575,2.308955,2.17477,5.25245,6.697536666666666,4.969005,5.30605,4.52988,5.04765,1.3099866666666666,5.10645,4.02169,5.8286,5.2389,5.19495,5.81025,5.68845,5.64055,1.363645,1.39658,1.9977,6.073178,1.341228,5.34755,4.96606,6.986854583333334,4.96237,5.49665,4.673455,4.66678,2.58335,5.2829,5.35005,6.198075,5.13195,6.156757499999999,5.7897,3.89767625,4.31811,3.8116333333333334,0.9647539999999999,3.6795000000000004,4.61877,1.18021375,3.7726666666666664,5.0337,4.70504,5.1307,2.571925,3.18602,2.5984766666666665,4.78878,2.197935,3.63071,1.253655,3.246385,3.702365,4.069115,4.507685,3.427033333333333,0.6437241666666667,6.12235,1.01462625,4.179685,3.1647133333333333,3.650915,1.9965366666666666,3.56636,3.7128530769230768,3.5012333333333334,4.48969,15.621316452380952,5.431196666666667,2.4078275,8.37695,1.52848,3.70805,2.9051299999999998,2.8845433333333332,2.0638033333333334,0.2003895652173913,3.04107,4.282425,1.757226,2.1033133333333334,3.408333333333333,1.7174275,2.2961233333333335,1.682742857142857,3.75013,5.2266,4.982155,3.45513,0.49948571428571426,2.313293333333333,4.485925,2.66129,4.0913,4.59962,4.31128,5.3427,0.48995705882352936,2.4822466666666667,2.4822466666666667,5.398,5.5675,4.777615,2.72095,3.713233333333333,2.8374666666666664,5.23555,3.62916,5.681491666666666,4.816025,4.47445,4.90608,2.64535,2.01152,4.65909,4.14837,4.290045,3.584455,1.8344799999999999,4.58714,4.313025,3.64329,4.723515,3.803175,4.28941,0.6329893333333333,3.26106,0.6868416666666667,3.198093333333333,3.336905,4.311935,18.05397904761905,3.541335,3.59994,2.5336666666666665,0.99717125,2.3255766666666666,2.4956133333333335,1.519462,2.367255,2.458445,4.74831,2.2257233333333333,3.681055,4.45477,2.1691975,4.34831,3.0879266666666667,4.589945,5.19395,5.45535,1.544115,1.37912,2.206905,5.1076,4.8792,1.1609222222222222,5.52715,4.02519,5.7151,4.74251,1.6756399999999998,4.58752,3.74137,3.743645,3.96991,4.332255,3.093716666666667,0.50574,7.4788049999999995,1.568238,0.20808055555555555,0.20808055555555555,0.20808055555555555,5.06455,4.035605,2.6787666666666667,4.30203,2.71367,4.462565,4.316122857142857,4.266861666666667,8.469233333333333,4.500265,6.660103333333334,0.8639,0.7747725,2.501575,4.4828,4.20874,2.081776666666667,5.3021,5.3792,3.37502,3.654805,4.4778,2.2945033333333336,4.924475,4.859164499999999,2.2497933333333333,2.7889366666666664,2.9564033333333337,2.600235,6.23285,3.931585,0.6930657142857143,3.967995,3.272035,4.270605,4.903893333333333,4.93692,2.801275,5.49615,3.629945,13.616518333333334,4.935955,6.842468916666667,2.482493333333333,6.585869,4.574005,3.98261,2.15414,2.3311525,9.39891,2.10276,4.237966666666667,4.1764,3.8026999999999997,3.0848099999999996,3.012043333333333,2.0069425,2.3306525,2.88989,1.8517579999999998,4.065266666666667,2.4157966666666666,2.5883266666666667,3.4243,3.5423666666666667,2.45228,2.45228,2.4444266666666667,3.6034666666666664,3.4312666666666662,2.4323799999999998,3.0976933333333334,4.296266666666667,2.7401966666666664,2.7464333333333335,3.8134333333333337,2.5536866666666667,2.1758575,3.9065999999999996,3.03397,1.666036,3.5866000000000002,2.3003133333333334,2.524506666666667,3.06052,2.261476666666667,3.3935,5.745556666666666,2.2905366666666667,3.7747333333333333,1.92385,10.628534666666667,1.79669,1.8841666666666665,2.19156,1.0789288888888888,1.521828,4.64124,2.9666360000000003,2.9666360000000003,1.8126120000000001,1.5137316666666667,3.534161666666667,3.77484,2.160953333333333,1.6072983333333333,1.6531420000000001,4.548270666666667,3.6892,4.0147,8.080126666666667,2.9701014285714287,2.4380966666666666,3.287742732919255,4.2668,2.1758575,3.2720000000000002,3.0719366666666663,3.288656666666667,3.4299175,0.9021975,3.3016575,2.99437,2.823173333333333,4.18853,3.32445,0.7228127272727273,1.9429542857142859,4.99886,2.663087,3.3577999999999997,1.56918,1.56918,2.07208,3.80396,0.972096,2.2553025,4.72541,4.72541,0.6555238095238095,6.005225000000001,3.774035,4.21343,4.914265,1.2037342857142856,3.4335,3.608,5.2770391666666665,5.9335320000000005,2.4364933333333334,0.734003,2.754296666666667,2.617426666666667,3.144125333333333,2.3590533333333332,2.3947966666666667,2.9378666666666664,2.391675,2.4198999999999997,0.8351263636363636,5.4488,4.771148,1.3689783333333334,1.6364,5.3552,2.12208,1.595455,4.16154,1.51616,3.50225,2.665525,3.5926333333333336,9.18145,4.848300833333333,4.74162,5.17,2.424336909090909,0.8146280000000001,1.990994,6.943786666666667,1.6904366666666668,4.000615,4.085585,3.4541,21.296940083333332,3.2554200000000004,1.3728733333333334,1.16125125,3.155613333333333,1.4275566666666668,4.18022,5.18105,3.3551055,3.4271333333333334,1.84295,1.415655,2.8703766666666666,0.5841975,3.4789333333333334,3.569366666666667,3.1659666666666664,2.5499746666666665,2.543956666666667,2.69016,2.1692066666666667,3.11086,1.7113720000000001,3.8953666666666664,1.5148533333333332,3.798845,4.08392,2.7902066666666667,5.3866,3.111875,3.878055,5.2518,4.74905,3.208073333333333,2.832966666666667,2.30393,1.1367142857142858,1.1367142857142858,1.1367142857142858,2.2635825,3.2828766666666667,2.6374366666666664,2.3931066666666667,2.205,2.0826125,3.74243,4.411565,3.69125,6.314095,3.242405,2.27396,1.8452025,0.9857383333333334,2.39703,3.83947,2.4884933333333334,2.6999666666666666,2.3575,2.43153,2.5170933333333334,2.8221366666666667,2.963373333333333,2.6592033333333336,2.2612466666666666,3.285073333333333,2.25721,2.1088275,1.6389275,1.9137275,3.0576566666666665,3.2904133333333334,1.967265,3.898605,5.28125,2.904973333333333,2.575062115384615,5.38206,4.25539,4.872565,5.63215,4.584655,4.26284,6.58431,1.2585125,4.50126,2.650775,5.2643,5.24835,3.871895,3.864065,2.36414,7.51,2.674055,0.8290000000000001,8.0948,5.50491,5.917141428571428,4.55322,3.0175867500000004,1.82734,5.1442,4.231305,4.63433,5.205,2.428635,4.386085,4.66812,1.7590125,4.073835,2.92005,1.3881500000000002,4.639375,0.6439235294117647,4.372258333333333,3.60672,4.570295,3.526325,1.680565,3.66194,1.966255,1.385125,3.04714,3.5226333333333333,3.3907666666666665,7.2235924358974355,1.8560625,6.903404583333334,9.57507,6.088055000000001,2.88818,1.4290857142857143,3.031226666666667,1.4290857142857143,2.7497566666666664,2.08093,0.29492117647058824,1.0973861764705881,0.29492117647058824,0.29492117647058824,0.29492117647058824,1.0973861764705881,1.0973861764705881,0.29492117647058824,0.802465,4.451915,3.32606,3.2097,3.305585,3.38434,4.118725,3.123724666666667,1.598646,6.786965,2.8028566666666666,4.065225,2.759486666666667,1.0526090909090908,1.23535625,4.436495,3.523115,1.1747555555555556,1.663514,0.7699254545454545,3.182936751082251,4.2559,5.03155,3.6491000000000002,5.485801666666667,0.61593,4.40791,3.2106375,3.035766666666667,2.25974,3.4472,2.45555,3.1646900000000002,2.6099466666666666,2.752415,3.49531,4.801025,4.771285,2.11592,4.69705,4.536275,3.070495,3.791005,3.37641,0.34002533333333335,4.951375,3.560175,3.19308,3.222632,4.277205,3.980275,1.97997,3.10041,3.8926,8.784555000000001,4.998915,5.7545,4.776165,3.9179500000000003,0.967455,2.17979,1.8702,1.385035,1.8164366666666665,4.55733,5.44915,4.004425,4.961245,2.980312,2.6245666666666665,0.9174533333333333,3.874465,1.1825666666666665,1.1108866666666668,3.32068,3.585875,4.77249,1.29075,2.66435,8.734916666666667,3.2162066666666664,3.2003908333333335,0.8142175,3.930735,12.255403333333334,3.38313,4.153255,3.05919,3.284525,4.796795,5.2294,2.1696400000000002,4.42107,0.5991661538461538,4.758065,2.2466825,1.71892,1.71892,3.5855333333333337,4.515585,1.5676516666666667,4.276935,1.3624271428571428,3.938235,2.842696666666667,3.3599,4.71775,3.3837,3.807183666666667,2.626825,2.7370486666666665,2.7370486666666665,11.2849,0.732526,2.926995,3.21473,2.12487,1.9901425,0.9128342857142858,1.3692125,1.2079428571428572,1.962015,4.968955,2.44797,4.3991575,2.1491233333333333,4.05051,4.22914,1.7021166666666667,2.0090925,1.0367433333333334,6.171801416666667,2.1342175,2.254595,1.7405519999999999,1.859798,1.16125125,2.46571125,3.560905,2.1158566666666667,3.1442,2.43983,2.776946666666667,1.7939866666666668,3.0989133333333334,2.456,1.4542866666666667,1.73388,2.68212,2.64509,2.37603,1.1328433333333334,2.52501,1.8836000000000002,2.5947,0.31102684210526316,0.4087608333333333,2.3086933333333333,2.13965,3.098445,3.038503333333333,2.790015,5.06605,5.56425,4.349765,4.59926,4.40646,3.84033,2.915103333333333,3.70648,0.7019354545454545,0.06680954545454545,6.9398,0.06680954545454545,3.515665,2.920755,5.3483,3.500995,6.3323,4.76228,2.02123,2.4964299999999997,1.039445,5.3194,5.94505,2.63705,5.2686,1.9091725,3.689175,1.9848463043478262,3.221303333333333,3.2194599999999998,3.79817,4.97135,3.257935,2.38577,2.38577,4.06797,7.6731,3.592495,2.156946666666667,2.4479866666666665,4.35424,3.17169,5.0744,3.758655,1.0324677777777778,4.390245,2.68322,2.83492,4.290775,1.1695766666666667,2.3774466666666667,3.82163,4.05131,5.1579,2.86025,2.807115,3.896425,3.76814,4.375125,5.07915,4.086675,3.3132077777777775,3.76619,2.8198066666666666,2.7799866666666664,2.85594,3.8115,4.34217,3.0925666666666665,5.317858333333334,4.335425,3.8838,5.1882,4.36936,3.47842,1.4542199999999998,1.360735,3.95929,3.412933333333333,1.5918466666666669,2.87215,3.377575,3.1929533333333335,4.1693,3.1487533333333335,2.3823875,12.615918194444445,2.184813333333333,1.8603459999999998,4.78154,1.157978,3.3399666666666668,3.834585,4.711355,3.314235,1.192611111111111,2.3204833333333332,2.5018766666666665,1.52633,4.30633,0.9306275,0.9306275,3.53325,1.69715,1.8361,1.88924,3.35024,4.21687,1.93378,2.979495,3.5295850000000004,2.7961533333333333,3.02396,2.03702,6.3546,5.7657,3.891675,0.7088476923076924,3.266135,3.697995,0.9898818181818182,5.3915,3.2392,8.60935,4.896605,4.796735,3.486585,1.4805425,2.776535,4.93973,4.85484,4.01512,3.644965,4.430065,3.919615,3.5292333333333334,3.5292333333333334,4.63601,2.760745,4.27807,1.740745,5.56328,5.426216666666667,1.5151666666666666,4.808755,1.09089,5.6163,4.26952,5.15195,4.632265,4.43481,2.643605,2.59265,4.798465,4.29777,5.1011,4.56283,1.8675675,1.4094060000000002,4.593285,2.06946,5.3754,3.15394,3.506645,7.16986,3.795715,4.593975,4.762,4.12096,4.619795,8.329965000000001,4.046405,3.507745,9.366615,3.98158,0.6094285714285714,2.1027820757020756,4.81203,0.6099926666666666,4.60326,4.30158,4.845495,4.6486,3.33448,3.36504,4.70631,4.88069,2.3605075,0.6988328571428571,4.58157,4.59605,4.529555,4.431215,2.88285,4.643665,3.715385,0.761536,3.45288,4.13341,2.5296,3.3198233333333333,4.20372,2.2626749999999998,5.5913,5.23335,3.8792524999999998,0.888175,3.31053,5.765091666666667,5.765091666666667,8.76558,1.981188,0.8295125,0.8295125,24.831569666666667,2.7303,7.905706666666667,0.3759341666666667,1.21123,3.1468000000000003,1.0218,3.654465,3.809185,2.2643075,2.2643075,4.385305,4.784215,3.561085,2.750261666666667,2.750261666666667,3.499735,4.79488,3.60815,3.4704333333333337,2.0356733333333334,2.7459720833333336,4.008597,2.12418,3.48786,2.95178,3.013842857142857,3.013842857142857,3.4700333333333333,0.8835255555555556,2.4478766666666667,1.5181966666666666,3.3937000000000004,2.8890433333333334,3.0587733333333333,2.7005,4.90526,2.4275,3.149453333333333,5.556697,1.3683859999999999,2.2004,2.990135,2.6432966666666666,4.27547,5.587558555555556,1.4478533333333334,3.8129666666666666,2.4609425,4.9502,6.33587,1.3501075,4.840886666666667,5.147618666666667,3.429798285714286,4.6450000000000005,1.0564385714285713,1.6482299999999999,3.06373,4.088045238095238,1.3927833333333333,2.48246,1.7234125,1.7679459999999998,2.18288,3.589132,5.323572,1.1077716666666666,1.4049,2.9126133333333333,12.900085,4.63252,2.78822,1.2637628571428572,2.710442619047619,1.0557742857142858,3.2581399999999996,4.1035683333333335,4.893535,3.4004,5.70345,1.381175,3.8092,4.248305,2.822013333333333,4.028707777777778,2.1561966666666668,1.0501711111111112,2.49564,2.9068233333333335,7.281856666666667,3.0576002857142854,2.6326766666666668,0.694635,4.729933333333333,3.5661,1.395648,5.807363333333333,2.01153,2.6285966666666667,5.5052,1.258911111111111,3.106286666666667,1.0406545454545455,3.1338899999999996,4.474575,3.1117033333333333,3.1684566666666663,2.27676,2.6587,4.836265,4.70961,5.12615,1.706795,4.471375,4.26936,4.428066666666667,3.484152,2.5869733333333333,4.259594,1.206704,2.809078095238095,5.06825,2.81455,4.148322916666666,1.3149125,2.85958,2.0442799999999997,2.0442799999999997,6.993195,3.159243333333333,5.713539999999999,3.4706550000000003,1.88863,2.7152904761904764,4.657033333333334,5.912566666666667,8.612616666666666,4.945488,2.6759690000000003,2.1736299999999997,2.0228728333333335,4.166473333333333,3.92631,1.550168,1.89438,2.293461607142857,1.2266575,3.236943333333333,19.357999333333332,3.1202166666666664,2.7252266666666665,3.0617933333333336,2.8904633333333334,2.5314533333333333,2.3462433333333332,3.2122499999999996,3.6559666666666666,2.6763933333333334,2.5761600000000002,5.7628113333333335,2.51751,4.829268857142857,2.9248568571428573,2.708608857142857,1.4465700000000001,3.876981111111111,2.11379,4.16762,5.1144,4.030455,3.1170216666666666,3.3221233333333333,2.6146766666666665,3.4793000000000003,3.640166666666667,3.4886,3.2428633333333337,0.8037554545454545,5.2505,2.503995,3.3003366666666665,2.8242761111111108,2.11929,2.250731666666667,2.250731666666667,3.46423,1.9855033333333334,4.75032,4.174895,3.700735,4.454845,4.74999,4.68616,4.68616,4.05245,2.9833366666666667,4.47936,2.721505,1.664876,2.4798466666666665,4.641545,4.20217,2.7663,3.71839,5.436635,3.831933333333333,6.614815952380953,3.07374,0.7947879999999999,0.7947879999999999,3.185775,4.798,3.720135,3.36097,2.3753933333333332,1.7964799999999999,1.5380833333333335,3.150783333333333,6.1071670000000005,1.5023383333333333,4.358655,3.7754666666666665,3.87483,5.31705,4.921555,4.916457458333333,3.420033333333333,2.3468975,4.43058,4.296755,2.13234,1.097214,4.190335,2.86825,6.47025,3.602,2.687255,3.30271,3.70734,3.698565,4.713895,3.15201,4.39824,4.09076,4.253825,3.61915,3.39349,3.49661,4.064475,2.5814366666666664,4.545155,3.432955,4.840055,0.6030688888888889,2.485445,1.97903,2.3757325,1.8284675,2.7625333333333333,2.5374933333333334,1.9178833333333334,4.52209,5.10421,1.8230166666666667,3.859005,4.488395,2.4613975,5.8235816666666675,4.154502916666667,4.537865,5.052,7.310173333333333,2.29869,3.050266666666667,1.9086100000000001,3.2160466666666667,1.958815,1.781445,3.99523,3.510925,5.388,1.0504722222222223,3.02882,4.431155,2.31562,5.3684,3.687025,2.53273,3.7006666666666668,3.36865,2.07857,1.797972,2.6343,3.1759,3.3312,1.892065,2.0209957142857142,2.0209957142857142,3.579675,3.440525,19.917752023809523,1.10844,5.124884166666666,1.9764175,1.98127,3.703065,4.01927,1.86978,3.77101,4.446095,1.2418433333333334,1.2418433333333334,1.22983,1.6547,2.437673333333333,3.1103433333333332,4.96143,3.69826,3.5390333333333337,0.5068452631578948,3.4963019298245617,1.9834366666666667,2.171775,4.4815325,3.411355,3.887395,3.462915,4.477275,4.4723,1.99091,3.853985,5.737346666666667,2.491685,3.45877,4.993785,2.15416,4.767695,5.48245,1.3308214285714286,2.01216,3.7156333333333333,0.7235528571428571,3.1824133333333333,3.49671,4.9649,5.0466,2.85764,7.878516666666666,2.9986866666666665,2.8637366666666666,0.45603764705882355,4.21447,5.34122630952381,3.1060526190476194,5.5769,3.68114,2.5311079999999997,1.8084700000000002,5.52577725,4.331795,4.35065,2.65685,1.913735,3.95057,3.8297333333333334,3.04875,2.2002925,4.057061666666667,6.5177075,2.767175,3.838315,3.524465,4.254745,1.5221714285714287,1.5221714285714287,3.2062566666666665,3.1603,4.7896,4.63003,6.4776,3.518825,2.86645,2.16096,1.5907033333333331,1.4148599999999998,5.09155,6.1258325,5.2677,5.81005,4.54133,6.79138,3.51952,2.7861100000000003,4.117521333333333,2.1330899999999997,3.08420375,1.735848,4.50862,2.3307966666666666,3.95916,5.3728,4.034935,2.6863433333333333,2.98804,1.4603428571428572,2.540025,3.8777333333333335,1.950395,0.550825,3.1796966666666666,2.6890133333333335,2.634183333333333,2.3389333333333333,2.1013625,1.762632,0.7344627272727273,0.7344627272727273,3.554933333333333,1.838335,2.64515,3.44393,5.81765,4.13601,5.81385,4.572435,4.745645,2.0342723333333335,1.2695433333333332,2.557795,4.547465,0.8850925,2.9547675,2.857865,2.892775,2.230105,4.115465,2.50646,1.9742733333333333,1.0375528571428572,3.5225,9.293925000000002,3.79106,1.5925553571428572,4.595095,3.47081,2.94967,3.455515,2.82531,1.70849,0.991745,3.72841,2.3916383333333333,2.2662633333333333,1.6628866666666668,2.171683333333333,2.17243,2.4374533333333335,2.8205975,1.3580866666666667,1.8510733333333331,1.0654575,6.3303175,5.4894,5.73245,3.887845,4.465615,3.07645,1.6304791452991454,4.703405,5.1507,2.461985,5.3485,2.11651,4.56621,1.0588566666666666,4.23525,4.45028,1.8189225,7.74703,3.57845,1.8407375,2.2723875,1.706035,2.5283,3.3679333333333332,1.2989805194805195,3.18739,5.68885,3.67769,3.917115,5.6731,5.3632,5.17855,0.9563575,4.38759,4.57943,4.109575,4.85756,3.911181666666667,4.6734,5.107,2.999025,1.4294716666666665,1.4294716666666665,5.30035,5.8803833333333335,3.050315,2.5371533333333334,3.91809,4.47146,1.634128,4.56797,5.05855,3.593255,4.035235,2.9665199999999996,2.8116333333333334,5.02705,2.380269,10.866847370227813,1.9141866666666667,0.76834875,2.5083366666666667,1.752855,2.53915,2.2800075,1.917654,3.0382,5.1928,5.29355,3.064246666666667,1.6190383333333334,6.322177023809524,1.3866657142857142,2.964116666666667,0.5275571428571428,4.201063333333333,5.61035,3.71937,4.509915,12.650965,5.5403,3.0607900000000003,3.10831,4.19228,3.26454,4.710255,0.98459625,0.9939033333333334,0.8686272727272727,5.77165,4.37293,1.8544899999999997,4.787731333333333,4.305555,6.5432,4.8991,5.30415,4.68165,6.0569,3.866565,5.1393,3.247185,1.224502,4.248345,5.6767,2.67273,3.903845,2.83874,2.62089,1.1755,5.21175,3.81449,1.3320125,3.5269999999999997,3.0566266666666664,2.52534,2.46794,2.5434633333333334,3.1583400000000004,0.6803072727272728,2.708296666666667,2.539146666666667,2.612503333333333,1.9595533333333333,2.6819366666666666,1.89113,1.39785,2.4702675,2.1168325,2.16613,3.398066666666667,3.058566666666667,0.750004,2.90565,3.502,4.703445,2.6761766666666666,3.975825,5.61965,5.1197,3.37554,3.84974,1.4512142857142858,3.24625,2.5148894444444445,4.287546666666667,2.9698512499999996,4.776445,5.3665,4.783135,4.42986,4.387766666666667,0.7971320000000001,0.7971320000000001,2.294166153846154,1.70425,4.26846,2.662239,2.662239,5.2038,5.89605,3.131125,1.2923733333333334,1.6143571428571428,5.7814,3.62052,2.3629599999999997,3.31334,2.674345,3.15818,2.3629599999999997,4.436425,3.17639,3.1909245833333335,2.842285,2.0425,3.031105,6.49595,3.00841,4.72851,4.16176,6.7016,6.1789,6.6047,6.6047,5.58745,4.730295,0.5239846153846154,5.05725,4.48858,2.84993,2.721665,8.129866666666667,2.93535,4.051665,3.59363,2.7086966666666665,4.62953,2.474,3.3329075,2.918703333333333,3.238683333333333,2.4182366666666666,1.7221959999999998,1.7221959999999998,3.61311,4.38736,4.352155,1.8882400000000001,1.576756,49.62566162878788,2.6251366666666667,0.8892845454545455,3.206436666666667,1.96171,3.3667,2.91442,3.13759,3.621145,2.92079,2.394276666666667,1.03730625,4.64066,3.22149,3.442685,3.83821,5.25115,5.2364,5.1633,5.4973,5.5492,4.88983,5.6422,6.2601775,5.15115,5.49815,2.05879,4.06654,6.7384,5.3899,3.56271,3.917495,3.60295,2.265895,3.869915,4.70637,3.1376033333333333,3.9527,1.6993800000000001,4.122165,1.3631,3.229295,3.77574,3.467555,6.5596025,4.237065,2.05404,4.406625,3.968815,3.910835,1.0187675,2.66081,2.81719,4.342815476190476,1.18761,4.924425,1.304045,5.97265,0.69616,4.300581333333334,10.462731666666667,4.71001,3.71464,3.471955,1.8951833333333334,4.29929,5.58695,3.0911000000000004,4.65582,9.206007222222222,3.4129666666666663,2.1194466666666667,2.879383333333333,2.7022933333333334,2.7462666666666666,2.6625679166666667,1.8722666666666665,2.52445,2.9629,2.719003333333333,3.0380800000000003,3.377095,2.2367399999999997,1.81781,5.233337333333334,3.9308666666666667,2.5561,4.9127979999999996,2.792143333333333,1.06780875,2.2822875,2.8815233333333334,5.1513921428571425,2.812775,2.3072116666666664,2.3072116666666664,1.5531025,1.6139575,2.1411000000000002,1.978056,5.9253800000000005,4.5201575,2.16135,3.0727366666666662,3.794833333333333,1.969285,0.6253041666666667,2.89385,1.9017575,0.53751,3.814505,2.541975,2.482765,3.58869,3.6280159999999997,2.47267,1.59411,1.1958499999999999,2.042135,3.479855,3.61423,4.18446,2.7299966666666666,4.04286,3.67332,1.1548181818181817,9.45022,2.58297,3.18686,1.2884625,2.7099466666666667,2.404695,2.404695,2.404695,5.1568,5.5473,1.659825,5.13065,1.375192,5.650013333333333,1.707798,4.341105,4.268725,4.196545,4.4151,4.715655,1.89495,9.123505,4.04384,5.0839,3.30456,4.385776666666667,3.3561,3.13346,3.818755,2.5149,4.354835,4.30559,1.61922,3.93493,1.61922,3.45364,4.239483333333333,4.879535,4.239483333333333,1.7929300000000001,5.7713,4.434485,4.480505,2.8749800000000003,3.0596766666666664,4.34614,3.133905,5.42075,0.5413007142857144,3.1567566666666664,3.0404733333333334,5.238221666666667,4.65197,2.42969,4.994295,6.125796666666666,3.30357,2.945155,2.638265,2.2066166666666667,4.20838,4.20577,4.71322,2.53265,3.91137,0.8742300000000001,5.54535,3.27297,4.15228,2.2128200000000002,2.9883933333333332,2.20235,2.70086,2.7867766666666665,2.7173766666666666,3.237425,2.50035,2.50035,4.6054075,3.21927,4.944175,11.6887875,0.9669711111111111,4.82958,2.7178466666666665,2.4298800000000003,2.7412233333333336,1.4621875,7.6805255,3.5553666666666666,3.633185,3.691650833333333,2.643526666666667,3.9591999999999996,4.365969166666667,2.39099,0.43828833333333334,1.4669,1.484085,5.0138,2.712215,3.257065,3.6993591666666665,3.3888808333333333,2.47100875,4.875085,4.59433,3.72901,4.499405,2.194615,3.97652,2.5021633333333333,5.574450000000001,3.049895,4.91011,4.01228,3.991385,4.291185,1.996555,3.75138,3.68228,3.0038133333333334,3.478645,2.828245,3.18131,3.589545,4.226735,2.6851933333333338,4.724895,1.4717516666666668,3.650575,2.76114,4.343915,4.52697,3.70106,4.26873,2.587385,4.273325,5.4426,4.0257,3.1710066666666665,2.17608,2.87069,2.365085,0.843835,4.603165,2.04569,3.36151,2.681195,4.0346,2.818775,3.36016,2.96931,4.579065,4.463263333333333,4.24719,2.81002,1.3251,3.66551,2.436045,0.98288,4.553255,8.7146,3.431545,3.634565,4.131085,4.81752,3.67837,2.02615,3.91237,3.847435,3.18562,3.05796,4.14952,0.61126875,1.302177142857143,6.4857725,1.6256975,2.609025,4.939066,2.571925,2.21981,2.87204,7.84102,2.68024,4.14078,3.68455,0.7468755555555555,3.355435,2.709145,3.837085,4.08773,6.341046666666667,0.742211,3.204725,9.4959,3.088805,1.0571144444444445,5.2562637500000005,4.826715,5.4637,4.70564,4.688215,3.46237,2.65529,7.693265,0.857855,3.52626,4.140885,3.10779,4.277325,2.403855,4.22126,1.67945,4.485725,3.98783,4.09176,1.90404,4.781205,4.767645,2.435815,2.09509,2.3182125,1.395648,4.103765,3.3551055,1.594278,8.924240000000001,5.76905,4.83446,4.538765,3.40488,4.408255,1.4641142857142857,4.479265,3.945955,5.47045,3.711535,2.5138266666666667,6.6423796794871794,1.0141,1.0141,2.564433333333333,0.9314571428571429,4.16125,3.4243333333333332,1.0478375,1.6850133333333333,0.3998008333333333,6.27366,1.02467,2.63823,3.42484,4.088525,4.060725,4.272315,5.3318,5.4986275,3.46046,3.057115,2.411485,4.324865,4.58454,4.31069,3.805845,3.55619,6.14775,4.475945,4.320213333333333,6.180857,3.68338,3.526465,2.32278,3.526465,6.978881,41.88928002164502,3.75982,3.467245,2.9360199999999996,4.513015,4.56907,3.30565,3.397625,3.67076,4.888905,4.355765,1.7044833333333334,4.86571,2.649185,4.81535,5.1609,4.83067,2.4650133333333333,4.652265,3.85835,3.23404,1.661414,0.6473861538461538,1.79906,3.7763333333333335,3.1662933333333334,1.3307875,3.0273,2.712673333333333,2.8293033333333333,3.4928333333333335,3.13077,1.52456,2.86806,3.7823666666666664,1.9746090283140283,3.039163333333333,3.221946,3.0863366666666665,2.5852166666666667,3.6316666666666664,1.2134888888888888,3.986535,3.772105,1.3128616666666666,1.3128616666666666,1.3128616666666666,1.3128616666666666,2.86827,2.04424,2.390655,3.43838,4.826085,4.719175,4.32853,4.416605,5.94665,4.679065,2.333865,6.28845,3.541385,3.14949,3.824255,3.29594,4.24465,4.446825,0.7236453846153845,1.542,1.5765433333333334,4.36925,4.047255,5.0345,4.092105,5.983358333333333,2.1900633333333333,4.62461,1.5052183333333333,3.91324,5.2668,1.5806133333333332,5.26665,0.7411075,4.410685,1.265024,1.238705,3.81649,4.0888,5.1919,5.30635,6.1883,4.66741,1.456318,4.6182,1.4881525,3.33382,3.198365,2.5311079999999997,1.920745,3.973135,1.3356450000000002,3.801945,4.834495,2.8752666666666666,5.7775,123.46431906259019,0.48564444444444443,4.459195,2.3971233333333335,4.720525,4.021625,3.237805,1.53121,0.33098809523809525,2.831745,3.71496,5.3885,2.847445,3.70532,4.38546,4.156145,3.847385,8.354526666666667,0.6754755555555555,2.61947,0.95852625,11.437332000000001,2.97155,3.49024,0.9492711111111112,2.197765,2.74172,2.14436,3.0226966666666666,3.448866666666667,2.6650566666666666,4.1875775,3.2003466666666665,2.2264733333333333,2.1589966666666665,2.822295,3.802325,3.08289,3.483565,3.607695,3.339325,2.28182,3.81186,5.1009,3.08278,1.041738888888889,2.5522533333333333,4.1875775,4.72166,5.7102,4.05087,3.732195,1.87983,10.70751,5.0365,2.64211,3.778095,5.1988,0.5636433333333334,0.5636433333333334,4.2833974999999995,4.2833974999999995,3.182205,3.8316,1.8515002272727272,0.57704,2.88266,4.446155,4.010335,3.425195,3.887775,5.341285,4.820265,2.115135,4.891655,2.38985,2.5941,4.538465833333333,1.82148,2.02072,0.5142114285714285,1.2752894285714285,1.2752894285714285,1.924015,4.647285,4.72489,5.02395,5.650627,2.875665,3.000265,1.98041,1.98396,4.290983333333333,4.026555,5.12326,2.498565,5.12326,4.902825,3.500875,6.0259,3.86648,2.3942533333333333,1.9734533333333333,2.4590166666666664,1.3911425,1.4357925,1.4417975,1.8906975,1.5230625,1.87639,3.729366666666667,4.65803,2.37337,6.46355,3.07295,4.580395,3.3745,4.09514,2.8963933333333336,3.0579300000000003,6.681163333333334,3.4876,4.898764666666667,3.4194,1.4090375,2.4345433333333335,2.630943333333333,2.26587,6.19795,4.50207,4.817355,13.001333761519184,0.7885933333333334,2.0948815,2.3648825,1.7484760000000001,1.3266514285714286,2.5814,2.5347,2.571,2.5454,0.745133076923077,1.9059625,0.5490736842105263,4.72026,1.899045,4.14894,4.750495,2.45685,5.87405,4.28752,7.84847,4.34533,2.763045,3.12831,4.589625,5.15095,2.7851110476190475,4.500785,2.1857625,2.1857625,4.84923,3.919305,4.32936,4.018975,3.281216666666667,3.915925,4.962855,5.4272,4.953885,4.930295,4.589315,4.29267,2.509455,5.128,1.292365,4.791255,4.80896,2.41419,2.2028333333333334,3.803265,1.4625666666666666,5.135,1.81747,5.833077971014493,4.05439,4.06773,1.7323966666666666,3.1510791666666664,3.1510791666666664,12.084555000000002,3.886775,4.65876,1.15504625,4.315554,2.3105525,1.441655,2.507225,1.7405225,2.007055,1.7910499999999998,3.17364,5.812,1.7303575,5.17405,4.736634166666667,5.2942,2.2390475,2.5029,3.59865,4.438065,5.56405,3.918305,7.067159999999999,3.2707866666666665,2.99545,0.4106855555555555,3.662605,4.11009,3.3764000000000003,6.354480000000001,2.55425,3.1333366666666667,1.2736933333333333,1.6334333333333333,0.550825,1.4669,3.07375,1.5304283333333333,1.6809666666666667,0.68174375,1.3329520000000001,4.639145,2.3909575,0.6512953846153846,1.6678499999999998,1.781885,1.7520859999999998,1.3720766666666666,2.2499225,1.6334333333333333,2.700575,1.3329520000000001,1.3329520000000001,0.6512953846153846,1.6371142857142857,2.50656,1.3927833333333333,2.776075,0.6512953846153846,2.71735,2.50656,1.3861383333333333,1.3861383333333333,1.3861383333333333,1.922418,1.250425,0.6512953846153846,1.005926,1.1661175,1.0789288888888888,1.8453,2.6983,0.8587333333333333,2.277215,1.6213,0.6512953846153846,1.74894,1.6334333333333333,1.9892333333333332,1.9656666666666667,0.9052339999999999,1.9892333333333332,1.049821111111111,2.435815,2.493285,2.617675,1.1661175,2.1936,1.3356450000000002,1.3356450000000002,0.9031927272727273,0.9031927272727273,0.9031927272727273,1.2736933333333333,1.6334333333333333,1.6213,1.6678499999999998,1.004182857142857,1.9656666666666667,1.5946479999999998,1.666036,2.04032,1.2736933333333333,2.78822,12.673670000000001,0.68174375,2.59166,1.8751833333333332,2.558975,1.0557742857142858,1.0557742857142858,0.6512953846153846,1.0665777777777778,1.762632,1.6213,1.767636,1.9656666666666667,1.1609222222222222,1.1609222222222222,1.691216,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,3.23779,1.049821111111111,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.20808055555555555,0.3893054545454545,56.13623005916306,1.4872475,1.5499150000000002,1.6213,1.8751833333333332,1.004182857142857,0.6520176470588236,0.694635,0.694635,0.694635,0.694635,4.415633333333333,17.172822916666668,3.4623666666666666,0.6032154545454546,1.699412,1.699412,1.699412,0.6032154545454546,3.07375,0.6512953846153846,1.74894,1.6809666666666667,2.5263400000000003,1.049821111111111,2.42969,1.049821111111111,1.792684,1.792684,2.1446666666666667,2.1446666666666667,0.6512953846153846,2.06438,2.06438,0.9684181818181817,0.20808055555555555,3.07375,1.53054,2.4609425,0.6032154545454546,0.6032154545454546,0.6032154545454546,0.6032154545454546,0.6032154545454546,1.8751833333333332,0.3893054545454545,1.049821111111111,2.159055,2.159055,2.59265,3.1647133333333333,0.6555238095238095,0.6555238095238095,3.3990666666666667,4.1761333333333335,1.2037342857142856,3.187246666666667,1.0307,2.565625,1.981188,1.1695766666666667,3.1666266666666663,2.02989,3.31053,5.2666,2.749625,1.1874222222222222,4.455275,4.566065,2.7176833333333335,1.7000879999999998,2.2914264615384616,4.516465,1.7364555555555556,2.699756666666667,3.050193333333333,3.194186666666667,2.465315,6.107620000000001,4.49202,0.20808055555555555,3.199033333333333,5.1409,3.49882,4.508325,4.45593,4.64227,2.9588566666666662,1.880176,4.343175,4.542235,4.336325,4.77286,5.38575,3.18638,0.710695,6.704219999999999,1.5929583333333335,3.134564,4.780385,2.6593433333333336,2.6593433333333336,0.8539890909090908,1.920745,4.184005,3.03189,4.7642,4.47413,4.7342,5.3259,1.1152071428571428,4.51787,5.1435,6.962734027777778,2.170533333333333,4.158195,3.57871,4.03267,3.612765,4.191485,4.621215,6.3539924999999995,5.38945,4.332825,3.485215,4.311865,7.428414999999999,1.7566025,2.3128269230769227,2.8913100000000003,1.7318533333333335,2.6750066666666665,1.8223266666666669,5.2102,3.25993,5.86075,2.03508,5.0033,4.009105,3.77768,4.35868,3.672225,2.4738966666666666,2.6785,2.6807700000000003,2.6990466666666664,2.6690666666666663,1.6874333333333331,2.71115,2.7982333333333336,2.3405,2.3405,4.64196,2.8950533333333333,1.8473733333333333,2.94183,2.11348,2.7970966666666666,3.0463733333333334,2.625426666666667,2.98106,5.40685,4.422955,4.07387,3.4599133333333336,3.4599133333333336,4.16535,3.317413333333333,4.217505,4.452615,3.819475,3.49689,3.30277,7.35993,2.1082625,2.01041,3.35401,3.08959,1.4655733333333334,1.4655733333333334,3.500685,2.06955,4.192624,3.600255,3.219425,2.1687555,2.116279416666667,0.6093116666666667,3.636795,3.865345,1.90342,2.335345,4.31655,1.10164,4.683415,1.2159466666666667,0.402145,0.5587471428571429,21.757914117063493,0.5587471428571429,0.402145,0.7153492857142857,9.639173333333334,3.013973333333333,3.925365,4.393455,3.60738,2.824595,4.249325714285714,2.112665,2.47314,4.04385,3.29754,4.154165,4.70294,3.353555,2.30925,3.260295,3.754255,3.74,3.006895,1.078827,1.078827,1.078827,1.078827,3.269025,2.69584,2.970885,1.80177,1.153505,2.409555,3.74956,4.31035,2.884635,3.4853,2.374455,2.842696666666667,3.862635,3.98449,1.1125283333333333,2.8469166666666665,1.096,2.65543,2.16704,3.894833333333333,5.13625,2.36442,3.702135,4.1935633333333335,0.7689573015873016,0.21355285714285713,0.21355285714285713,0.5554044444444445,0.21355285714285713,0.21355285714285713,0.21355285714285713,0.5554044444444445,3.977795,7.282043333333332,3.55206,0.58718,3.61892,7.372605,3.193965,3.2162333333333333,1.1381916666666667,4.84969,5.4457,4.3533,4.649435,1.666526,4.65488,2.169306666666667,2.36945,3.88053,5.46675,0.8556857142857143,0.8556857142857143,3.668865,2.7916866666666666,1.914845,3.31305,2.373555,6.64075,2.31081,5.44435,5.8101,5.656,3.207345,1.902415,3.739355,3.336865,2.12792,3.42184,3.31596,1.7769175,1.1304633333333334,3.933025,3.362225,4.903893333333333,6.206448333333333,1.4929,3.849265,1.1170866666666666,2.4296599999999997,3.123575,3.96265,0.3946714285714286,3.837895,4.322295,0.9703709999999999,2.7153666666666667,7.788966666666667,2.988155,2.112565,5.74064,4.4729,3.642705,1.5047916666666667,5.40201,2.882846666666667,3.1892633333333333,3.5332000000000003,1.9992066666666668,1.9992066666666668,6.0585249999999995,6.0585249999999995,3.4959875,3.4959875,9.34136,3.4959875,3.4959875,4.1642675,6.80615,3.31154,3.596546666666667,3.01056,4.689915,3.434965,3.2556700000000003,3.237603333333333,4.91126,3.2576933333333336,2.6490533333333333,3.1881733333333333,2.28397,2.57667,4.96192,7.24078,6.7692125,4.942745,3.68167,3.94828,6.856488000000001,5.3034,4.977865,4.09526,4.583095,2.3366866666666666,2.25772,2.12495,5.46685,5.40725,4.570685,4.25577,2.216563333333333,2.7269133333333335,6.7936700000000005,1.922418,2.4665966666666668,3.5071666666666665,3.5071666666666665,3.062545,5.29335,0.788535,3.551966666666667,4.032175,2.9796133333333334,10.361524999999999,4.404835,2.68639,2.5083800000000003,4.806125,6.0691,2.920065,5.49285,2.5346533333333334,4.467415,2.867152857142857,4.44785,5.39445,5.0471,1.0258433333333332,3.645766666666667,1.04159375,2.4767733333333335,5.136275426470588,8.31331,2.5938833333333333,3.0042666666666666,7.313908333333333,1.767664,4.658125,5.72975,3.538775,3.64045,2.1683066666666666,4.677665,2.4905412499999997,0.47351076923076924,5.30535,2.782585,3.5932666666666666,5.264,4.85467,5.6436,6.96485,4.959795,5.62805,7.0873225,54.632825,4.87273,3.894955,4.888695,6.04485,4.792765,5.3763,4.387235,4.53395,1.8990925,3.913825,4.140835,4.79714,2.49381,5.2131,4.08368,1.597174,5.59725,6.46465,7.462056666666667,5.5302,3.415325,4.72503,3.20472,3.298765,3.42461,4.075755,3.62894,6.79038,2.74215,1.0550342857142856,2.33287825,0.7298359999999999,0.7298359999999999,3.532155,0.7298359999999999,2.3713805357142856,2.3713805357142856,3.1022725357142855,4.64424625,5.051844285714286,2.33287825,4.910059166666667,2.5202091666666666,1.4452766666666665,5.46945,2.154985,6.983356666666666,5.682516666666666,10.583938606060606,2.96509,2.5243033333333336,0.22402060606060606,1.8576796666666668,2.11706,0.895785,1.307745,3.1352166666666665,2.3610575,2.704225,0.576967,26.871355833333332,1.8208325,0.7799538461538462,2.6056466666666664,2.6056466666666664,0.43342444444444445,1.7201975,3.0818424999999996,1.292915,1.6644825,1.54828,3.89962,2.807645,2.0103666666666666,2.3717166666666665,1.086035,2.133375,1.5981066666666666,5.643845083333334,3.993845,7.039621666666667,2.543275,3.3840333333333334,1.0614633333333334,2.29177,5.1558,6.5364450000000005,3.1735933333333333,2.199786666666667,5.311016666666666,2.00561,2.5712533333333334,4.3541225,1.15321,3.657633333333333,2.2986366666666664,5.4189,5.0135,5.99435,3.43774,4.180804999999999,4.180804999999999,5.48035,1.905825,5.48795,2.9734433333333334,1.5531925,3.152745,3.462405,5.133516166666666,4.45478,2.9638533333333332,2.27394,2.803455,1.1133357142857143,5.31795,0.9449975,5.503166666666667,4.554935,7.485609999999999,4.060465,4.537165,4.13914,8.665624999999999,4.304185,4.96935,1.1162699999999999,0.7178142857142857,4.72339,4.35939,2.32205,3.463555,3.117005,4.2299,2.131405,4.79662,2.59165,5.37485,5.0279,5.37765,4.61907,4.71885,3.26463,6.676883,3.461225,4.341915,3.201015,4.42416,5.516817619047619,0.5777185714285714,3.6663666666666668,1.7450999999999999,0.5801688888888888,4.03043,2.645275,1.03764,1.94615,5.65007,3.59264,2.231725,2.8118366666666668,2.72829,4.97909,4.24781,1.639922857142857,4.31219,2.1924366666666666,3.578333333333333,4.519015,5.1889,3.2217616666666666,3.7813666666666665,3.876466666666667,2.00076,7.30397,4.7651,4.23382,5.24555,2.2824975,4.48946,4.736625,4.39801,3.773945,10.092705,3.491495,4.730426666666666,4.87275,4.544655,2.46942,4.70707,4.228175,4.470505,3.29847,4.526425,1.654865,3.18322,3.487685,3.592855,5.1482,1.960474,4.33066,3.2711566666666667,5.5136,3.399366666666667,2.23879,4.439935,4.787835,1.102655,3.05987,2.7103566666666663,4.594546666666666,1.7661380000000002,1.6645666666666665,1.2636175,3.899415,5.2542,5.698205,3.7639675,2.856565,2.44558,2.097995,1.81385,1.5784533333333333,5.67455,2.98417,1.9862175,0.9173692307692308,20.598449724358975,3.06438,2.9799800000000003,4.973741666666666,4.025687948717949,1.3912666666666667,2.6617735000000002,3.01652,1.156096,1.8622666666666667,4.54042,5.0348,3.6251025,3.378625,5.53675,4.73874,7.2620675,4.776090833333333,4.96184,3.73168,2.8120333333333334,4.100675,3.92372,3.388333333333333,4.112925,1.9630775,5.03565,8.85743,3.431065,2.82538,3.9849,0.55767,3.2308733333333333,2.0155233333333333,2.2257175,4.37675,3.524275,5.11345,3.792575,2.8838,2.2428575,1.74471,0.810182,1.44639,1.2595733333333332,3.854165,4.19702,4.7591,4.729295,7.11326,2.31336,1.3700839999999999,2.45764,8.030906666666667,2.9722,2.98165,3.0276,4.67184,3.289125,3.503165,1.5745559999999998,4.73988,5.0472,3.976625,3.93753,3.84742,4.29771,4.50181,3.983935,4.209235,3.75391,2.17306,3.2616899999999998,3.299455,5.67975,2.844905,4.22518,2.868935,2.80195,2.2556566666666664,2.1709733333333334,2.0964766666666668,2.465628666666667,2.465628666666667,1.8609099999999998,2.8382466666666666,2.3504033333333334,2.3218466666666666,2.0433733333333333,3.94343,2.3121066666666668,2.9373466666666666,2.8163066666666663,1.66299,4.62316,2.92953,3.891305,2.568423333333333,5.253,5.1425,4.916488888888889,2.55602,2.433365,2.88472,2.614465,2.091495,2.75818,1.9536375,2.5434,2.5887,6.692947500000001,4.284689999999999,3.56515,0.60635375,4.518495,4.04719,4.116795,3.159715,3.878115,3.6197808333333334,6.26215,4.60139,3.498705,2.8451500000000003,2.2614555555555556,2.4892,1.7010020000000001,1.7717079999999998,1.6973299999999998,2.1235,1.67379,1.2508266666666665,4.108455714285714,0.6512953846153846,0.5631355555555556,2.04556,1.5347166666666665,1.52615,1.4653383333333334,2.2971792424242423,1.4924566666666665,1.778002,0.59974,171.772509421871,0.5488926666666667,2.14884,1.070776,1.22608,2.09716,1.3975975,1.97279,2.3282666666666665,1.72151,6.585,2.941045,3.442122380952381,1.4721833333333334,3.21995,1.2646433333333333,1.2646433333333333,6.341262500000001,0.4915472222222222,2.239505,3.335233333333333,3.1111400000000002,0.8224518181818182,0.6011882352941177,1.2152907692307693,1.0577545454545456,2.4156975,4.361285,2.21943,2.1616825,2.557,4.9965925,1.0366733333333333,4.404435,3.72006,3.37258,6.64353,1.60149,2.88748,2.58788,4.441784,2.22486,3.829035,3.09836,3.408235,4.908165,2.70441,6.22158,2.613335,2.20227,3.04042,1.694245,2.730895,3.17665,3.109225,1.669825,1.808915,2.318185,4.73758,5.636763333333334,3.29338,2.80606,1.401125,4.310875,3.7245000000000004,3.8469333333333338,2.845945,25.682363888431013,2.8072926666666667,2.77624,3.13255,3.6024666666666665,3.12855,5.792483333333333,3.2201633333333333,2.69092,3.5305666666666666,3.5028333333333332,2.14348,3.2781233333333333,3.3951333333333333,3.178506666666667,1.6873666666666667,1.62332225,0.530106,2.2369766666666666,2.14395,0.203906875,2.3659066666666666,2.8304,0.203906875,0.203906875,2.118506875,0.203906875,0.203906875,0.203906875,0.203906875,2.978566666666667,2.886143333333333,0.5914592307692308,3.5124878571428573,1.5622325,1.959952,5.33755,4.4193225,6.2650725000000005,2.1452325,4.98979,2.210735,2.7481533333333332,1.4486142857142856,6.011546666666666,2.8560266666666667,5.968237500000001,0.89325,1.2553125,4.748195,4.69136,36.12626473021423,1.7270420000000002,1.3212166666666667,2.1991033333333334,2.4323725,0.9031927272727273,2.31369,2.33651,2.67464,2.04319,2.463906666666667,1.74575,2.701703333333333,2.3146133333333334,2.2686033333333335,2.7609433333333335,2.3223433333333334,4.002545,3.5630666666666664,1.1384957142857144,4.371065,3.91735,20.888178833333335,2.7663933333333333,3.5794333333333337,2.813553333333333,0.840476,3.129242,1.6328793333333333,3.129242,2.3907000000000003,2.7729199999999996,2.9683766666666664,1.8030575,2.064685,4.482905,3.97822,5.21085,4.188645,1.6955660000000001,5.25635,1.56002,5.03735,4.027411476190476,4.559865,0.7382563636363636,2.0304325,2.2318775,2.782802,3.15391,1.106755,3.438095,1.9210260000000001,1.94299,1.055352,1.055352,2.8317633333333334,2.5686233333333335,4.362085,29.192919583333335,6.172499999999999,1.8991966666666666,3.5467699999999995,0.3730873333333333,6.547689999999999,5.19655,2.8761166666666664,3.2419,5.7821725,3.999085,1.198155,4.717175,1.2153079999999998,2.566285,4.74677,4.92575,2.103385,3.191905,4.744965,2.934325,2.9212540000000002,4.443055,1.2837266666666667,2.60332125,3.788305,4.990385,2.419306666666667,3.07154,2.723323333333333,3.960525,3.99805,4.14805,4.236066666666667,1.633075,6.01117,2.35555,1.7262499999999998,4.044135,5.62331,4.01071,3.702565,0.77321375,3.011185,3.4528,2.11152,4.7356386666666666,2.84353,3.880505,2.8637599999999996,3.334566666666667,2.79403,3.4295000000000004,3.158046666666667,3.2070000000000003,4.353085,5.46205,3.81711,1.81128,4.14025,4.193695,1.990965,1.869275,1.6806425,4.059982777777777,4.659955,5.363197916666667,3.93258,3.464233333333333,3.709695,3.2785266666666666,1.5148566666666667,3.114995,2.90236,3.32299,4.67291,4.613965,4.43902,2.668785,1.90543,1.705505,1.39634,3.592485,2.44028,2.152655,3.38193,5.0975,1.688135,5.3612,1.4014114285714285,1.73538,3.08149,3.412735,3.11023,3.419975,2.96885,1.718255,1.0055175263157894,3.765545,4.23015,4.72793,9.15756,3.1925566666666665,3.32007,1.5837866666666667,2.6931066666666665,2.74088,1.2665716666666667,3.05861,2.96248,3.25277,4.0526,3.2677,7.1214200000000005,3.0739033333333334,0.7542663636363636,1.6902266666666668,3.36281,3.380025,3.33458,3.5447333333333333,2.6347519999999998,3.37491,2.57544,1.9692217142857142,3.834735,2.5620800000000004,3.475975,2.3842466666666664,4.35637,4.4518,4.44766,3.47608,3.723355,1.0080944444444446,4.96774,3.0078266666666664,3.0229633333333332,4.647875,2.726406666666667,2.7707766666666664,0.3796342857142857,0.3796342857142857,4.179288333333333,4.011125,6.74455,3.03564,4.491295,3.511575,3.08826,4.96735,4.45249,1.0074775,4.248585,2.771406666666667,4.3666375,3.00097,2.9509316666666665,1.9827066666666668,3.2773210714285717,2.599466666666667,3.1006066666666663,2.554883333333333,2.8409999999999997,2.139186666666667,22.52884444071146,4.50228,3.853105,4.219155,3.296655,4.5509699999999995,3.781265,4.583215,4.12395,4.304885,3.94209,3.862565,2.7441066666666667,3.0239133333333332,3.0382466666666663,3.044473333333333,3.0661733333333334,4.23939,3.561055,4.5525,5.10755,4.3972,1.327296,1.451004,1.451004,5.1717,3.798405,2.85698,2.4680966666666664,3.138,3.2974,3.780125,8.216786666666666,3.3132566666666663,3.5766666666666667,3.1285749999999997,4.72152,1.6215849999999998,5.8112525,2.404783333333333,3.2304566666666665,1.7722425,3.713365,3.51288,7.05073,3.49028,2.55467,4.19074,4.795877333333333,1.6194325,2.5283666666666664,1.66964,7.7196880000000005,4.3141,6.896363333333333,2.30919,4.333475,3.93831,4.320935,5.2816,3.6557666666666666,3.6557666666666666,2.1625975,4.414195,5.06315,2.49021,6.66066,1.753495,5.87095,8.172247,3.01408,4.212200666666667,2.1812133333333334,1.97768,0.49133875,4.48593,2.618975,2.623575,3.898873,2.4339875,2.5696833333333333,3.84268,5.7248,5.1565,4.61626,4.803605,4.55074,2.32013,1.0522090909090909,2.882705,3.21233,2.93005,5.4868,4.12255,3.28414,2.84455,2.01216,4.44916,1.01360875,5.1066,1.0399888888888889,5.50705,3.354535,4.935825,5.47819,3.208395,3.11596,3.204136666666667,2.37658,4.02645,2.99885,2.719615,3.8443,5.38845,5.807483333333334,4.998725,1.68606,3.36846,2.910135,5.588386666666667,1.8926075,1.8926075,2.8467033333333336,2.2427533333333334,2.6006933333333335,2.832316666666667,0.909343,6.407,3.51295,2.12866,2.275615,2.59231,3.57577,2.856435,3.62086,5.054,5.38725,5.0529,6.15095,6.0396,1.3563875,3.991385,1.0913083333333333,2.579575,4.406666666666667,2.575245,2.95802,3.10555,4.888295,2.909435,0.45345736842105266,4.31858,4.151235,4.869705,3.21866,4.66999,5.6556,4.40863,4.046755,1.80213,4.723735,1.9927175,4.3389999999999995,4.3389999999999995,6.64075,5.70665,5.66335,5.0668,2.732685,1.6215849999999998,4.273705,2.0623733333333334,1.6228999999999998,2.25317,4.315085,4.148975,4.37043,7.93062,1.6610016666666667,5.2877,1.3456533333333331,3.24035,6.114,2.010525,4.766815,2.8895733333333333,4.94196,3.272445,4.95082,2.63705,4.160765,4.04512,6.1256,4.15852,4.20558,4.068515,5.6019,4.310245,4.68567,3.63926,4.54639,6.986343333333334,3.484665,7.13978,3.133715,5.60945,6.551584090909091,4.60516,3.54605,1.76994,5.6593,4.040145,0.9633966666666667,8.32731,6.00355,5.343,3.033215,5.21945,2.91978,1.7589839999999999,3.87668,1.1125283333333333,6.2784,2.952615,4.493025,5.44335,4.534785,4.540265,2.0640633333333334,4.55117,5.3463,1.46621,7.600273333333334,3.00267,3.85367,5.1801,4.25222,2.111175,4.666075,3.492505,3.665935,2.88401,3.99524,3.630985,5.63625,4.74757,3.499005,1.79086,1.79086,7.42497,1.3986228571428572,5.3615,4.42635,5.311,3.722735,3.80816,5.4224,3.85056,0.8789333333333333,0.8789333333333333,0.8789333333333333,3.76309,3.124445,3.746445,4.533708,2.726195,1.4199599999999999,4.30356,2.2538175,2.572225,4.220085,4.886995,1.81467,2.23118,5.1033,4.131035,2.978515,4.715055,1.9423125,1.9380075,3.360133333333333,2.518305,5.5257,1.42245,1.6385539999999998,1.1299825,4.14956,3.43333,3.0688566666666666,3.16574,5.38965,1.7265059999999999,2.1333775,3.091275,1.7212285714285716,3.25952,3.52501,2.527075,5.57855,5.55335,2.751285,4.634835,4.01764,3.47989,3.81784,4.21676,3.50862,6.82422,5.2478,1.8899966666666668,1.8172666666666668,3.520125,4.770685,4.101945,3.802575,3.1200433333333333,4.352795,5.7943,5.2288,2.8080366666666667,5.65915,4.022355,3.69797,7.870255,4.154025,0.7648627272727272,3.961575,3.9871141666666663,2.070365,4.304945,3.8173333333333335,5.85505,3.83293,4.191555,3.949715,4.68622,4.831715,4.754025,3.242625,4.32204,5.2107,4.064345,2.92617,3.171235,6.24888,5.4175,1.8796880000000002,3.19534,4.01113,3.875015,5.24105,4.61271,2.499826666666667,0.8920333333333333,4.604287272727273,6.4161025,3.428245,5.044,3.513585,7.228959999999999,4.05743,3.7706,2.8549900000000004,3.72634,1.885915,3.16417,4.555495,2.5060225,4.485815,5.61825,1.3572725,5.0404,0.6869821428571428,6.08965,5.8742,5.6391,5.5672,1.4739166666666668,1.7564933333333332,4.360365,1.88474,4.436705,0.51457,5.8183,3.05129,1.506822,6.2163450000000005,6.37965,0.801745,1.7370649999999999,1.259486,1.259486,1.259486,2.061456666666667,5.18785,3.645695,3.362905,4.05665,5.46715,4.198275,1.9610980000000002,4.257415,5.2178,0.3030073170731707,4.014145,4.726005,4.47063,40.14595687121212,5.662406666666667,4.95783,10.890889666666666,2.930875,4.37864,7.350203333333333,3.17117,4.742945,4.067515,4.1582,8.86929,3.702585,2.7343433333333333,2.72454,4.270105,4.106715,3.572175,4.508785,1.88141,4.44571,4.787655,6.925305,4.11595,4.586315,2.3558975,4.10784,0.50619625,1.3868283333333336,3.461425,6.10565,2.83508,1.2509933333333334,1.2509933333333334,3.1516,3.772705,4.401035,2.522215,1.5996499999999998,3.60046,4.177135,1.9366175,3.100073333333333,1.664378,1.8335933333333332,4.079235,4.434085,2.24197,4.667835,2.389695,2.1713,3.52565,3.396015,3.959685,3.89468,6.1990083333333335,2.6429983333333333,3.79281,0.7339236363636363,0.6647108333333334,3.695665,2.17905,8.969616666666667,3.4623666666666666,5.2104,1.6188175,4.594775,1.6025133333333335,4.195945,4.46646,2.6091933333333333,3.91493,5.09425,0.41857449999999996,0.41857449999999996,3.7087333333333334,3.33116,3.0353399999999997,4.08449,3.517935,5.49155,0.9901636363636364,11.058276666666666,10.742875,2.2499225,4.860530000000001,4.8492,4.77194,3.410175,2.62794,2.11224,2.03484,9.8483975,2.341525,2.669703333333333,3.63334,4.594005,3.63334,2.32738,3.2814,2.8579933333333334,0.7578745454545455,5.485801666666667,3.1402366666666666,2.73519,4.2242,8.819245,9.949,4.38231,3.892105,4.253045,6.612765,1.8597925,1.4022625,27.045178333333332,4.66503,4.07507,0.892364,4.24225,4.112145,5.132,4.70988,4.771865,5.846046666666666,3.2013833333333337,2.0625766666666667,0.6754823529411764,0.7322083333333333,4.706245,5.153,1.40526,4.490818333333333,0.9165666666666666,3.4771666666666667,1.5005733333333333,4.18413,6.02445,1.906095,2.48075,2.02415,3.88675,2.860315,0.44733111111111107,3.83862,3.48307,3.1150966666666666,3.243085,5.12355,3.112963333333333,4.266915,2.89001,4.523025,8.564616666666666,4.741985,7.726789999999999,2.77485,2.6827233333333336,4.45024,4.4888075,4.546185,4.398815,3.7657,4.74765,1.18108875,3.3168883333333334,3.2028897857142855,0.718708,1.451004,1.451004,4.601005,7.801175000000001,0.8452230769230769,4.76303,0.9477016666666667,2.879246666666667,2.44857,2.7138229545454546,6.519932222222222,2.566406666666667,1.1475555555555554,2.4657566666666666,1.17863875,2.169583333333333,3.333833333333333,3.046291666666667,3.4225999999999996,2.51184,0.9477016666666667,4.704945,4.565625,5.53705,2.934205,4.043715,2.1899,6.01665,4.855025,4.663755,3.06302,3.551075,2.22225,1.8797675,4.27438,2.758325,4.694005,5.52615,1.7718820000000002,4.950495,2.967363333333333,6.575768333333333,3.53221,2.697285,0.9477016666666667,2.525355,3.32221,7.456165833333333,2.4599533333333334,1.702216,2.4599533333333334,0.4528683333333334,1.195156,4.187605,2.588585,1.6881075,3.54608,3.7486810000000004,0.615591,0.615591,0.615591,9.031965,1.6185199999999997,0.7261772727272727,2.50687,39.26385388961039,1.93415,0.66828,3.0624425,0.66828,3.550935,1.993545,2.33545,2.5993233333333334,4.829225,4.27842,4.374405,2.479573333333333,0.9129771428571428,4.290445,3.4377,5.09905,0.9991628571428571,2.85925,2.85925,3.772225,4.197745,3.891965,5.091623846153846,3.48635,4.866025,5.43025,1.9079059999999999,1.12895375,5.30055,6.6409,3.84526,0.657064,4.626205,4.232966666666667,1.022305,4.62825,2.5597,4.196015,4.55721,1.8814823232323232,1.8814823232323232,4.467125,3.33846,0.9390866666666666,2.99122,3.18262,3.331455,3.864505,4.456365,0.46708285714285713,0.300644705882353,0.300644705882353,0.300644705882353,0.7677275630252101,0.6315938461538462,0.6821659999999999,0.300644705882353,0.300644705882353,7.631185,0.300644705882353,0.7677275630252101,3.49122,1.26371,4.33683,1.1315416666666667,0.6514876923076923,1.022305,2.65922,2.75485,3.91887,2.914655,0.300644705882353,0.300644705882353,4.393265,3.641325,4.36651,2.65821,4.095785,1.681188,3.6811,0.6821659999999999,0.6821659999999999,4.77761,3.040205,2.70927,2.77621,3.8990833333333335,1.05,0.8478153846153845,10.50624,1.2873375,3.81004,4.59524,5.2348,2.10458,0.41508,0.90772125,2.87416,3.367645,3.329615,4.59878,1.552476,6.03625,3.764775,5.4746175,4.321005,3.0439866666666666,3.1244433333333332,6.643385,2.784266666666667,4.815,4.040445,4.1935633333333335,5.7437249999999995,0.566244,4.40223,3.2239799999999996,2.1596033333333335,0.6941700000000001,4.01547,4.18384,3.07041,2.36878,2.225235,5.14415,2.607565,2.824935,0.944352,0.45352461538461536,3.823835,0.344066,0.7912045454545455,3.881195,2.905885,4.547225,2.70114,5.4547,4.399925,6.363435333333333,3.58822,3.342455,4.171715,1.5742375,5.3685374999999995,1.8249939999999998,4.02242,2.505425,6.16843,2.598525,0.969006,4.69903,7.057237499999999,6.628642500000001,3.2252166666666664,0.8311649999999999,2.8181433333333334,4.513445,4.198455,4.545735,4.58501,4.299445,4.89247,3.43845,4.027515,1.72567,2.41458,1.4133066666666665,4.28575,10.33185,3.19568,3.61595,5.9463,3.106005,4.45316,2.6461433333333333,3.01469,3.217935,3.111915,3.32086,3.016525,3.928245,5.0617,5.81865,4.889305,4.76677,4.99379,3.890245,2.827015,5.22805,8.03315,0.9130944444444444,3.95873,4.022805,4.80996,5.44085,5.51775,2.425585,8.002625,2.4104233333333336,3.29582,6.10035,3.710245,4.11451,2.23502,1.7845525,2.962806666666667,2.3532966666666666,2.1482533333333333,3.056093333333333,4.400065,4.72411,3.989875,3.26021,4.918236666666667,3.202615,3.095075,4.03089,5.6375,2.9696,5.574269166666666,4.152525,4.05656,3.900355,8.05977,4.148535,3.57894,4.52583,5.1691,3.673705,10.2671,1.39305,2.232925,4.10251,2.8481566666666667,2.8481566666666667,1.962195,8.088516666666667,0.913478888888889,3.28876,0.87132625,2.1333775,4.3916,5.0564,4.085595,4.600115,2.7712866666666667,3.562,4.055175,3.805895,4.565395,3.19304,2.7339933333333337,4.29308,4.9657725,3.7874,4.474375,1.7515319999999999,1.613724,2.6887166666666666,5.68745,2.32449,1.6475733333333331,2.0963325,4.48094,4.898535,2.9099,2.86242,0.5722188888888888,2.356915,7.554205,3.20163,1.4444966666666668,0.802465,1.1685333333333332,1.90456,2.0020675,0.7658550000000001,1.9894133333333333,4.2708265,3.94848,4.460925,2.3885433333333332,2.1070225,7.9873975,3.06835,1.8285566666666666,1.8285566666666666,1.8285566666666666,6.442616666666666,2.1796166666666665,3.565185,2.62095,0.49054400000000004,1.130642,2.3217475,5.8949075,0.42544444444444446,3.709585,3.865405,5.35095,2.8624477777777777,0.42544444444444446,2.8624477777777777,0.95739875,1.29264,5.6929,4.389575,6.80969,4.30881,4.779695,3.940965,4.20453,5.1289,5.3295,6.0725,3.71184,3.366335,5.01015,4.550765,4.212715,4.467805,4.5679,1.3974316666666666,2.9360233333333334,1.230575,2.23076,3.2404716666666666,1.5440883333333333,6.6709,5.588386666666667,2.731156666666667,4.43843,2.95815,4.99368,2.92368,4.309065,5.04295,9.3883125,5.61915,4.598035,2.3948875,2.850825,2.12262,0.55767,2.201341333333333,6.27825,5.31985,5.2366,4.72073,0.5117313333333333,2.023085,1.4792475,4.407965,0.6967769230769231,6.413717500000001,2.0544925,1.1332775,1.1332775,4.090224,2.09484,3.2021333333333337,2.593295,4.66019,3.6645275,3.6645275,5.0619,6.0128699999999995,2.7893399999999997,2.67436,3.30188,4.78298,1.861978,2.8088466666666663,5.60865,5.334,5.0168,4.421605,3.9798783333333336,4.50235,3.6927250000000003,3.222433333333333,2.3946375,4.195975,5.18065,3.2133525,5.00435,5.71045,2.1378366666666664,2.386676666666667,6.2254,6.8777,1.2028940000000001,2.687475,2.3692025,2.6771966666666667,2.2523025,2.63555,2.459382,1.1238000000000001,1.8976125,2.71435,2.33176,2.55736,2.55736,2.953767,2.918325,2.2123771153846152,2.567425,2.418295,2.02278,1.5780859999999999,5.11433,14.9507045,2.9653266666666664,3.3503333333333334,1.7728259999999998,1.7728259999999998,1.69085,1.69085,2.9517666666666664,3.7653,2.952476666666667,1.9058375,1.9058375,3.851566666666667,2.62892,1.0943866666666666,1.4360285714285712,3.1324233333333336,2.938026666666667,3.707266666666667,2.744334523809524,3.4037666666666664,3.262366666666667,0.692655,2.721775,3.761457,7.196758333333333,4.81489,5.20885,4.35459,3.486275,4.72339,4.840605,3.0158466666666666,4.3103,1.4323583333333334,3.316333333333333,5.82745,5.39065,2.632755,1.26745,3.026505,2.6107066666666667,3.2506866666666667,1.6463633333333334,0.7090528571428572,3.2127133333333333,4.956205000000001,4.78675,4.21423,4.905435,3.0818499999999998,2.11016,3.236473333333333,2.629706666666667,3.4886666666666666,3.1524900000000002,3.3760333333333334,2.8071099999999998,2.3297133333333333,3.7073,2.9603333333333333,5.2455,4.909175,5.268285833333334,5.268285833333334,3.44648,3.997745,3.69687,3.508495,2.642845,4.469715,3.26122,3.3969,6.29715,0.77917,5.2445,4.931415,2.4684033333333333,5.325469999999999,3.195183333333333,1.93075,1.3445257142857143,2.2496899999999997,1.01229,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.3248553571428571,0.5163114285714286,0.5163114285714286,1.1863125,0.8952359722222223,1.6972701136363635,0.975857142857143,0.975857142857143,1.2619378914141413,0.43533222222222223,0.39581777777777777,1.210515,1.4909175,2.717033333333333,2.39462,6.556178333333333,3.08829,3.991055,2.8902216666666667,4.771148,1.3689783333333334,4.707035,4.375655,5.08325,3.36627,1.454322,4.133243846153846,3.6166,4.709465,4.402565,2.825335,4.812005,4.452345,4.878035,1.24149,4.126295,4.744655,3.037355,2.3093566666666665,3.284705,2.455565,3.30952,4.83719,3.1091533333333334,5.0593,8.64694,3.24537,4.849,4.463705,4.617535,2.8505833333333332,4.09237,0.8462914285714286,4.152665,3.363095,2.0377,1.0872725,2.89823,1.3101383333333334,0.5342713333333333,3.4111666666666665,4.394595,5.117383333333334,3.6747333333333336,2.4904675,2.920745,4.87472,4.101966666666667,4.487465,2.672475,2.19073,3.94916,4.026735,4.070455,5.43535,4.63088,3.641445,4.77836,3.16832,4.38531,2.1537733333333335,4.62396,5.2588,3.239525,4.386275,2.48384,3.74069,5.6495,4.371025,5.2995,4.821835,4.90444,2.56799,5.0608,4.80024,5.0774,2.2745875,0.9466325,4.247225,4.850575,4.50788,5.02395,2.01238,4.22096,2.060725,4.99163,4.821625,4.891715,2.331585,4.534485,4.96501,4.428085,2.75999,4.69011,4.84056,5.407,4.086875,2.2745875,2.133675,2.960025,5.1415,4.28991,4.49485,3.455115,4.924095,2.292295,6.81008,4.787515,4.503275,5.210765548611111,4.80537,5.35535,3.43577875,2.4431383333333336,2.4431383333333336,4.30659,3.98251,4.4609,2.2511675,3.09678375,1.08136875,2.8409099999999996,3.11637,2.56312,3.25324,4.5191,2.945603333333333,5.4762,2.69172,4.776315,4.27855,1.75332,4.04164,1.6294700000000002,2.9067366666666667,4.04998,0.9231450000000001,5.09935,4.694195,6.5802625,5.00645,5.60585,1.3497285714285714,4.51321,6.4506,9.015754999999999,3.2677266666666664,3.3415,1.937034,0.8451919999999999,3.883225,0.9881657142857143,4.445985,4.44466,5.5421,3.057775,3.58595,1.1222400000000001,3.728565,3.583425,4.253795,4.23028,2.908395,2.87834,2.474315,4.6211,4.768335,5.6438,4.679785,3.721795,0.3404277777777778,0.3404277777777778,0.3404277777777778,0.3404277777777778,5.4897,2.89355,6.2979,3.0911333333333335,4.83145,4.761365,3.738575,2.18226,2.496593333333333,1.4248666666666667,5.3729,3.0137066666666663,4.05771,3.469015,3.358375,1.629045,1.18264375,4.703895,2.357335,6.079795000000001,3.95589,5.07935,2.22442,1.595915,0.9418144444444445,3.184005,4.601345,3.90067,2.1887525,8.027045,4.67822,3.165625,2.30556,0.506436,3.679825,2.55222,1.947725,1.914695,2.71832,2.87763,2.342015,3.02286,2.81464,3.254325,4.78907,4.061645,4.45463,3.56003,6.006733333333334,0.6329893333333333,4.535085,5.88115,5.193,4.830715,3.3944666666666667,5.25855,4.705465,4.37857,5.63125,5.5054,4.79764,5.00325,3.74671,4.70951,3.07166,8.9109,5.12345,4.542555,4.976415,4.965485,5.50085,3.78129,1.1730777777777779,5.998608333333333,3.782875,4.939385,1.477845,4.44939,4.073755,7.164051666666667,4.667535,2.998005,1.8989900000000002,4.581845,1.82498,0.92758125,4.231055,6.3499,1.9385266666666665,2.2686100000000002,2.7854533333333333,3.32302,3.47731,3.581495,5.30535,1.7896833333333333,4.154915,3.7776045,3.33018,3.710733333333333,3.858365,2.77118,2.53892,2.0679325,2.43244,2.6586066666666666,4.288135,0.6093116666666667,2.5744966666666667,4.12649,2.99528,3.5940666666666665,4.72869,5.19955,4.31644,17.28732315151515,2.9383966666666663,4.1043666666666665,1.550168,0.8881918181818182,0.8881918181818182,0.8881918181818182,0.8881918181818182,0.8881918181818182,5.04675,4.90279,5.032,9.063485,2.5072,2.5072,4.775685,4.716139166666666,1.3961425,2.2508066666666666,4.10278,2.618825,2.4552125,2.262595,3.023615,3.7243280000000003,1.8999975,3.665785,0.8248928571428572,3.055196666666667,2.9643333333333337,3.156223333333333,1.7642433333333332,3.261863333333333,2.5340433333333334,0.979185,2.715643333333333,2.6850533333333337,1.2339333333333333,2.54469,2.86599,2.405143333333333,4.58798,1.9918633333333335,3.1233966666666664,2.0881,2.62811,1.173311111111111,2.8110933333333334,4.727263333333333,3.562466666666667,1.05802625,3.1369399999999996,1.4269625,2.55418,2.3880500000000002,4.615831666666667,3.12772,2.525446666666667,4.829917333333333,2.6171633333333335,2.11787,3.0704499999999997,2.64262,1.5830933333333332,2.91835,3.22235,3.2000833333333336,2.6339166666666665,3.15297,2.65867,2.605025,3.8552045,3.8552045,2.883236666666667,1.9838366666666667,1.88886,2.8181999999999996,5.350350000000001,3.0896399999999997,1.9443533333333332,1.9151025,3.1097,4.529625,2.381623333333333,1.050104,2.7403073333333334,1.4316000000000002,2.721346666666667,2.189833333333333,2.4422900000000003,2.01827,2.9792400000000003,1.3007440000000001,1.4760966666666666,1.4176366666666667,4.204841666666667,2.520723333333333,3.91527,1.0545922222222222,4.158525,1.9792866666666666,2.243495,1.75519,1.6366683333333334,3.2627699999999997,24.09209824891775,7.193896666666666,2.61581,3.5932433333333336,3.186446666666667,9.970340666666667,3.0673866666666663,1.0079175,2.5132933333333334,2.3659966666666667,1.8923466666666666,3.182563333333333,2.5964833333333335,2.5692666666666666,0.9842599999999999,3.4780333333333338,2.6469633333333333,2.905336666666667,2.4941166666666668,2.560236666666667,2.022116666666667,2.0816166666666667,2.85237,2.3885,2.09302,1.601924,5.585999999999999,4.66356,2.4275575,2.97885,2.211516666666667,2.4642166666666667,8.167014166666666,1.9755866666666666,5.10805,2.265175,1.8520325,7.46174,2.9469366666666663,2.9302533333333334,2.615625,1.8611280000000001,1.4202711538461539,3.298973333333333,3.194036666666667,4.184135,1.782205,3.7249,1.407585,1.407585,4.386275,3.58324,2.780642857142857,2.780642857142857,5.99894,3.398475,0.43548,12.448612670940172,1.20637,0.91648,4.1305700000000005,1.4933535042735042,2.0148825,6.367843333333333,3.970895,0.7564045454545454,2.0667966666666664,5.030339757575757,2.5194906666666665,4.256565,1.3730085714285714,5.53965,5.2714,5.04385,3.402559,1.9371759999999998,2.46807,2.5198766666666668,2.476573333333333,2.2969999999999997,5.42328,4.758355,4.41302,1.8675675,4.72625,4.421215,3.3324533333333335,2.2099,5.1255,2.5816333333333334,8.90692,6.7166025000000005,1.9598575,2.284145,1.755226,4.5214,4.5214,3.11895,2.9547933333333334,3.3599645000000002,5.04455,9.677335,4.438495,2.5011,5.4978,4.394255,5.3516,2.01094,0.86978,1.3123166666666666,4.60506,4.8272,3.6653000000000002,2.87999,3.8419000000000003,2.1950600000000002,3.891075,4.6572,3.317445,5.54415,3.2763833333333334,3.826281333333333,3.4913666666666665,3.4099,3.456,6.37665,3.088925,5.31145,5.0411,3.12673,3.339675,3.339675,5.9326975,12.163053333333334,3.654833333333333,6.410292500000001,7.117286666666667,3.533135,2.4595733333333336,3.923425,1.3201033333333334,3.77276,2.4500125,2.93254,3.0593833333333333,3.597566666666667,2.10544,2.355233333333333,3.0059566666666666,2.50447,3.1526099999999997,3.088513333333333,4.261135,2.40734,2.8686133333333337,4.066825,2.9160466666666665,2.7467333333333332,1.20225875,2.1660325,3.02244,2.538206666666667,2.709516666666667,2.4118666666666666,3.6824333333333334,2.5401133333333332,2.5092966666666667,2.7948033333333338,3.21187,2.86149,3.18093,2.6668333333333334,3.319793333333333,2.87513,3.3378560000000004,2.64242,2.4793366666666667,2.43805,2.8723566666666667,2.7438633333333335,3.4638000000000004,3.2816500000000004,2.517965,1.973335,1.973335,0.7696866666666667,1.5745559999999998,4.51103,3.214305,2.51937,2.10544,2.8887199999999997,1.32999,2.91108,0.598792,3.4837666666666665,3.1280966666666665,3.269005,2.9507666666666665,2.90024,2.6563333333333334,3.0429033333333333,2.8127433333333336,3.5066333333333333,4.941826666666667,1.559816,2.96421,2.38489,1.69086,2.2527133333333333,3.0023466666666665,2.8406933333333337,1.711112,2.4762,2.5689966666666666,2.81617,2.912803333333333,2.9444700000000004,2.972963333333333,3.3010066666666664,1.39185,2.8867166666666666,2.4304333333333332,3.723966666666667,3.7625666666666664,1.84707,2.49208,3.368,2.8113166666666665,3.529666666666667,2.54668,2.3533766666666667,5.316675,3.3139033333333336,2.0687866666666666,1.5524660000000001,3.3526333333333334,6.503036666666667,3.2028466666666664,3.602733333333333,2.923773333333333,3.2171299999999996,4.6231713333333335,1.554408,1.1689888888888889,2.3739933333333334,1.7938883333333333,4.766315,2.9678966666666664,3.1473133333333334,3.1736033333333338,3.226343333333333,2.5610933333333334,3.3502333333333336,2.5317,1.6600819999999998,3.0496,3.47708,3.73616,3.22286,3.90048,1.7658425,2.963965,3.8124,3.750615,2.5388699999999997,3.4482,4.0746,3.909933333333333,1.5521575,5.507071,3.20654875,1.52841,3.502235,3.700665,3.045195,4.270765,1.902936,1.902936,3.22451,2.93423,2.93638,5.32325,4.360425,4.435936666666667,1.2408899999999998,3.01469,2.6808599999999996,4.248565,3.278833333333333,4.955706666666667,2.6547133333333335,2.370556666666667,2.7680066666666665,3.404205,3.66773,1.6304539999999998,3.011896666666667,3.019925,2.3449125,4.758975,1.3745016666666665,2.86768,4.140375,2.5718,3.499865,3.930285,1.6705525,1.5839466666666666,2.48575,1.1845833333333333,2.1903433333333333,1.9836,0.46070285714285714,4.379085,2.94864,4.68589,4.427935,2.932165,4.5961316666666665,3.4625333333333335,3.1941,3.602233333333333,2.65693,3.4477333333333333,2.973053333333333,3.324586666666667,2.497193333333333,0.7039330769230769,2.2702533333333332,0.656845,2.0182933333333333,2.4741,3.1813066666666665,3.1261799999999997,1.60888,1.532475,4.002705,4.761675,3.588655,3.9572,2.9958,2.0350425,4.127755,8.07839888888889,3.58769,5.699465,1.59054,3.966865,2.114605,4.487485,3.90225,2.591225,4.378145,3.390095,4.12519,4.405495,2.2103275,4.085575,6.6001674999999995,5.193,3.42272,3.333945,1.781885,2.1066025,4.117945,3.287115,3.14658,3.787975,3.82163,3.906655,1.7304625,3.897335,3.384715,1.97649,4.3474275,1.0265833333333334,3.79902,1.779395,4.335375,4.788716666666667,3.6855,3.175335,3.709865,3.6022,2.107905,2.2847025,3.9445333333333337,3.300555,6.11556,4.142625,4.442925,2.280385,2.640885,4.59815,4.533875,2.5940839999999996,2.5940839999999996,6.170917,4.1378795,2.8639175,2.993295,2.245,3.08444,3.6542,3.887348333333333,2.950637,3.410185,0.960646,4.117385,3.04439,4.22884,2.707595,1.58569,1.673675,3.361475,6.054938,5.5524125,3.44581,1.7256275,4.279045,3.972665,0.9793033333333333,3.36663,1.4923579999999999,5.5789075,1.4997283333333333,4.105715,2.0231,1.60888,3.53209,3.64384,4.544745,6.945105,4.279055,5.383643333333334,2.3638,2.810415,4.367865,4.172745,4.28545,4.361695,1.12424,1.62332225,1.09321625,2.923745,2.11505,4.79447,1.09321625,4.53183,2.26537,1.7613775,1.7613775,1.97649,4.208955,4.4293,4.204825,1.5732599999999999,1.5732599999999999,1.0576983333333334,3.460405,2.1216875,6.0596025000000004,4.560745,4.024955,3.0570633333333332,0.9847814285714286,3.50182,3.1256,4.230095,3.836595,4.412,4.412,3.452465,4.05831,2.0242875,3.11881,1.0100144444444445,2.4403466666666667,3.64978,2.6206066666666668,3.547206666666667,3.547206666666667,3.065735,4.709535,4.637645,3.092475,3.609895,3.93561,2.6664733333333333,4.727675833333333,3.35484,4.41017,8.42623,5.1859,2.66721,3.164135,2.985615,4.65073,3.3037659999999995,7.879630000000001,4.950959,4.700625,3.59358,3.818,3.978725,4.711135,4.806785,3.290115,4.656285,7.033475833333333,2.8306,2.277785777777778,3.504765,3.27511,3.73209,4.913035,2.1683066666666666,2.74973,3.34028,3.33698,3.09173,7.9444099999999995,1.6933175,5.013665,5.013665,3.70717,4.1792316666666665,3.402295,2.510596666666667,5.53471,4.684705,2.49836,3.90119,4.256165,3.4220458333333332,3.26897,3.10934,6.634594999999999,3.453965,5.39345,3.614025,4.974005,4.021675,4.163095,2.93423,2.235536666666667,3.165145,4.05798,2.77017,3.2591883333333334,3.17454,6.678945,2.667665,1.89667,3.4389166666666666,2.217776666666667,4.207145,2.91839,0.9793033333333333,3.757065,3.94644,3.86548,5.9752125000000005,3.273645,3.45567,3.015773333333333,3.015773333333333,3.982124166666667,4.48058,4.08501,2.093715,6.27749,2.1852825,4.459145,3.83743,8.0668,2.7569133333333333,1.2490966666666667,3.180315,4.518345,0.72749125,4.061215,4.03095,3.26301,3.06792,4.51875,2.0603233333333333,2.384645,8.80709,3.368165,3.302115,1.4997283333333333,3.903655,2.797205,2.71794875,4.34995,5.762485,1.78107,1.2943433333333334,1.0987850000000001,4.207315,4.194245,3.848685,3.7609475000000003,3.7609475000000003,1.7304625,2.194305,3.285423888888889,0.8952488888888889,3.290055,1.2727725,1.7658425,3.78254,3.447125,3.120115,2.959955,2.9517525,4.74936,4.196235,3.41129,3.43665,3.06079,4.338485,6.560475,4.11253,0.9414725,2.6311895,8.5908,4.642285,4.18891,1.140725,5.279641666666667,1.4409333333333334,3.87507,3.87507,3.89671,9.426604166666667,0.8592466666666667,4.80524,4.501335,2.703583333333333,4.3476550000000005,3.900465,2.148415,10.436890333333334,1.959365,2.56405,3.69183,1.9075499999999999,4.416379083333334,3.064765,3.595425,3.899707333333333,3.40144,3.02959,1.2352933333333334,7.36885,4.35636,4.00556,4.15312,1.984625,3.175335,4.495774166666667,4.059745,0.6735661538461539,4.1492,4.437445,4.93153,2.1145425,1.561274,4.433845,4.222605,9.17838,0.7473907692307692,1.107375,1.107375,2.1092833333333334,1.4218766666666667,1.4771100000000001,1.7792533333333334,4.722985,1.2975366666666666,0.9364028571428572,4.0266375000000005,3.5933,1.33961,3.315885,4.62457,4.00218,0.7515080000000001,2.034915,10.484745,2.9524583333333334,3.70463,3.30252,1.7988375,2.471156666666667,2.610645,4.52382,4.343705,3.822825,0.96935,1.445422,0.942295,4.31766,4.184975,4.02358,0.8952488888888889,1.7232720000000001,4.05773,2.637985,5.478760833333333,1.1336775,4.761565,0.7392650000000001,0.7392650000000001,0.7392650000000001,10.669855,4.08931,1.2727725,3.852065,4.525845,2.94655,3.459445,4.896235,3.170705,2.0674172222222222,2.34088,0.7515080000000001,1.7308113333333335,0.5722088888888889,0.6063383333333333,1.5440216666666666,4.39269,3.686335,2.16837,7.583105,4.847845833333333,0.6941977777777777,6.22955,5.341493333333333,3.547005,4.62581,7.583058333333334,3.8088575000000002,4.847845833333333,4.4688445833333335,2.5855799999999998,4.13138,3.989145,7.87721,3.44183,0.506436,1.583588,4.402585,1.7284,1.2943433333333334,4.03711,2.4478666666666666,1.81421,3.480945,1.640914,4.520195,4.4118,4.191945,4.72114,6.68591,2.700975,3.97362,1.4923579999999999,2.4134025,3.6127,3.455585,2.49836,4.22937,2.482625,4.93885,2.78791,2.309295,3.4134633333333335,1.856162,3.49408,0.8952488888888889,2.18791125,1.0987850000000001,1.67737,3.527405,1.6933175,1.5440216666666666,2.0864725,3.75793,8.22066,0.96935,1.140725,1.424096,3.67152,4.217645,1.424096,3.87012,2.4134025,0.72749125,0.8952488888888889,2.1092833333333334,1.4923579999999999,0.46070285714285714,1.597174,4.36842,2.703583333333333,1.4436066666666667,2.93906,1.5521575,1.959365,2.896425,2.34088,4.260025,2.896425,0.9793033333333333,3.1050130000000005,2.282575,0.1424868181818182,0.1424868181818182,0.1424868181818182,0.1424868181818182,0.1424868181818182,3.271663333333333,2.6480533333333334,2.8885799999999997,3.1641,4.847015,4.263505,1.75519,3.566225,3.513555,2.170405,5.0333475,2.691085,2.400595,2.47176,2.58979,4.650545,8.529446666666667,2.45337,2.0618833333333333,3.029985357142857,0.8613928571428572,1.3751483333333334,2.3327433333333336,2.1482366666666666,1.6014225,2.7828133333333334,2.21252,2.5178333333333334,2.704003333333333,2.6086533333333333,3.79509,3.88993,2.6054133333333334,1.392084,3.884145,3.786275,1.5437533333333333,1.317422,1.317422,1.317422,3.64228,2.7858433333333337,1.1051766666666667,2.1761033333333333,1.3562257142857141,4.309655,1.6693366666666665,6.774496666666667,3.3900449999999998,2.6368066666666667,3.2191780000000003,3.2191780000000003,5.475936666666667,3.016785,4.71021,4.946995,2.2216325,3.3007266666666664 +GSM1946783,1.0,1.8728375,1.8728375,1.4790999999999999,5.6234,5.27685,2.7844107894736845,1.6847833333333335,8.458595490196078,4.88271,3.0620433333333335,4.63525,3.189345,3.91264,4.46863,2.0406199999999997,1.487622,5.22285,2.3253933333333334,2.3738125,5.228,5.236141666666667,4.02339,2.62661,1.8161960000000001,4.283095,5.22405,4.036645,0.7904375,2.0499344444444443,2.2258727777777776,2.611525,2.578225,1.1933957142857143,0.7600466666666666,3.2501457142857144,1.69085,2.0605425,1.594085,2.1967175,1.41797,1.5643175,1.209324,1.80995,0.8568339999999999,0.9268599999999999,0.774724,1.4296,1.821666,1.877816,1.535318,2.28612,1.852526,18.293621166666668,0.35162666666666664,0.8103339999999999,1.248378,1.912754,1.8120640000000001,2.40352,1.0264757142857144,1.0264757142857144,1.0264757142857144,1.0985,1.496456,4.7830224999999995,1.157655,2.32354,1.97383,2.6108,1.07949,2.36965,2.525875,2.33595,2.0926775,1.7894875,1.48082,1.58574,2.39586,4.88909,5.1365,4.97351,1.4095133333333332,4.67257,4.478696666666667,3.921625,4.328435,1.1474075,7.33486,0.58671625,0.58671625,2.3177775,1.1604557142857141,18.12125,5.02285,5.30375,5.08915,4.572235,4.360125,5.30575,0.5663888888888889,2.4640933333333335,2.14895,2.4189075,5.00615,4.62257,1.3492,2.756676666666667,2.491826666666667,2.8730266666666666,3.3156933333333334,2.85764,5.4578,2.9001615,4.486175,3.1028000000000002,0.7619836363636363,1.414664,2.24111,4.2822,3.665845,0.598496875,4.31777,3.86433,0.992295,4.04528,1.889172857142857,2.318475,2.487695,2.0152325,4.03454,5.499,3.163725,2.6632866666666666,3.6556333333333337,2.89634,4.291655,3.0491266666666665,5.94265,3.41938,4.889785,3.913515,2.686005,3.512185,2.514725,6.775138333333333,3.742905,3.624715,3.25902,3.248335,4.68925,0.6956144444444444,9.245483095238095,3.801765,2.2366033333333335,1.8173716666666668,3.5762666666666667,2.327125,5.0968,5.93805,2.0957575,4.7033725,2.785985,5.28165,2.0957575,2.7046333333333332,4.47024,5.212885,4.89325,8.180276666666666,3.268745,4.39222,2.915275,5.64195,4.67655,1.6714666666666667,7.70383,4.57357,4.238785,3.986065,3.325575,3.703075,2.1396,6.145455,2.131755,3.867935,4.037475,5.4802,5.20515,4.438455,1.35477,2.96495,2.7177,1.94416,1.94416,5.7682116190476185,3.00577,1.8322666666666667,4.743265,4.54067,3.108845,1.4108049999999999,1.3129777777777778,7.00245,3.83768,6.79085,5.8508,5.15285,3.578435,2.783135,3.73287,3.369795,3.704625,4.222305,5.773,2.75408,3.48694,8.841523333333333,4.496555,3.2932966666666665,3.311916666666667,2.873276666666667,4.0569,4.4481225,1.8486625,2.8462566666666667,2.597863333333333,1.789406,1.6241700000000001,2.4019833333333334,1.78016,2.44435,3.0742100000000003,2.93223,2.48741,3.0144333333333333,4.478696666666667,3.22835,3.98242,3.93689,4.870055,1.3730716666666665,1.800775,2.798006571428571,2.20964,2.4819666666666667,3.1428999999999996,3.3684333333333334,2.1299,1.3726900000000002,2.769023333333333,0.653772,1.67804,0.5055499999999999,0.5055499999999999,1.73217,3.859033333333333,2.5476666666666667,1.3289433333333334,1.42262,0.40432538461538464,2.7144066666666666,0.653772,1.2808166666666667,0.22002702702702703,1.34539,1.9416925,3.4586,2.4711766666666666,2.9387066666666666,2.5182100000000003,2.86274,2.2822766666666667,2.5124866666666668,2.3266433333333336,2.3556833333333334,2.5149133333333333,1.87346,2.67538,4.6621,0.7652716666666667,1.9526233333333334,2.68944,2.119196666666667,3.830086666666667,1.464742,2.51789,2.6357033333333333,4.46606,2.11392,6.255041904761905,1.6168285714285715,2.4936366666666667,2.09652,2.07471,3.7929666666666666,2.05073,1.84756,4.33686,2.5756833333333335,2.139355,3.79677,4.572975,4.170475,3.854735,2.371775,4.18668,5.403684,4.031775,3.98795,4.30721,4.244055,3.14788,4.404105,3.5745,0.84542125,4.861375,1.525035,5.1029,3.613715,6.2311510000000006,3.982195,4.072545,1.0589575,2.27364,3.58871,3.88799,0.7783800000000001,1.302918376068376,2.074287142857143,2.9971131428571427,4.775985,5.7521249999999995,2.02137,4.148335,5.5209,0.34061642857142854,3.534705,2.318115,0.93202625,3.74352,1.92187,13.080860000000001,1.20719,1.742835,3.1765600000000003,3.46028,2.16791802631579,5.492158026315789,0.3577605263157895,1.6084066666666665,3.199336666666667,0.93912,3.8501666666666665,1.076357142857143,5.6035,3.775015,1.9661166666666665,6.06015,5.52455,2.22895,1.1614414285714285,4.00162,4.77717,4.12277,0.9143181818181817,8.458603333333333,2.9368533333333335,4.579525,2.5883966666666667,2.41597,4.650235,2.4294966666666666,2.9672666666666667,2.5372666666666666,2.4736366666666667,3.23458,2.8019433333333335,0.3243325,3.70749,3.42556,3.761525,3.688305,4.17328,6.1493400000000005,3.863985,1.5566075,5.5882,4.70938,4.21102,5.33135,1.3340100000000001,3.2017733333333336,3.4266,2.52433,15.245289999999999,2.962475,3.728665,3.84821,4.909935,2.20681,5.386985555555556,2.352095,0.779541111111111,2.6857,3.305095,3.87963,3.5334,6.452591666666667,3.28927,2.10952,2.09091,3.4777666666666662,4.51253,2.43997,0.37154745535714284,2.4249321739130436,1.8014575,1.13158125,0.4695385423136646,0.5675296292701864,0.37154745535714284,0.37154745535714284,0.37154745535714284,1.1209375,1.522305,1.1858675,1.3922875,4.5906199999999995,0.22158970588235294,11.829418084415583,2.9451866666666664,3.05268,4.63437,4.452555,3.54036,2.08487,4.91476,4.314332333333334,4.53142,4.228825,0.7451415384615385,3.502266666666667,4.477646153846154,0.520145,3.049715,2.8701233333333334,4.981175,0.5862127272727272,2.03011,4.34887,3.943205,2.0938125,1.7180366666666667,1.69221,3.3138966666666665,3.61305,2.795745,2.82141,5.2602,5.65105,4.73828,3.304733333333333,3.3712875,6.216575000000001,3.6704000000000003,5.7226,0.3987266666666667,3.17566,4.533813333333333,1.9489966666666667,2.486005,2.7390108333333334,5.521604999999999,0.63566,2.19811,4.8413,4.152045,1.0364185714285714,4.5326,3.257115,4.97912,3.3051666666666666,4.337265,3.307665,4.15624,1.1472016666666667,3.2393,2.751723333333333,4.572185,4.27999,4.74165,5.75795,4.147325,2.92179,5.21355,2.3707366666666667,3.104875,3.3072,2.865553333333333,2.83754,2.4585266666666667,1.8463640000000001,1.59562,1.8960966666666668,0.7674942857142858,1.9183733333333333,1.7642666666666666,2.2412033333333334,3.2117,3.3531999999999997,3.0399,0.9315822222222222,5.1024,3.5761000000000003,5.590989166666667,2.8133291666666667,2.9598099999999996,3.7522,2.1266333333333334,2.1266333333333334,3.259137662337662,3.259137662337662,4.86441551948052,0.47198142857142855,1.6769800000000001,2.801576666666667,3.5141333333333336,2.202127142857143,2.202127142857143,2.202127142857143,7.40157755952381,4.4062342857142855,0.9457,4.368605,4.760070833333334,2.3657075,4.82515,3.266135,2.17145,6.1201,3.22265,3.31275,1.55615,1.8525266666666667,2.79031,3.1191766666666667,2.299933333333333,5.69455,4.374933333333334,3.9117333333333337,4.3989,1.6994166666666668,3.145566666666667,2.983496666666667,0.6827755555555556,2.1339,4.379372,7.4574725,1.3410725,2.832795,4.38958,1.9791340000000002,2.04802,2.04802,1.10433375,4.963775,7.936465,4.201085,6.793214,4.793675,2.0113666666666665,4.20434,3.895215,5.1304,4.68322,0.35589631578947367,2.92217,2.86875,4.006735,4.096875,1.75283,1.958615,2.667725,5.0432,4.14344,3.2648,2.306875,1.92116,6.85293,4.07192,3.74628,3.310265,3.842285,4.464035,4.83741,3.4422,3.4711875,1.865575,1.1547271428571428,2.774445,3.72882,4.30272,5.3367625,6.071305000000001,2.105475,1.8561766666666666,2.4610166666666666,2.6441866666666667,2.97509,0.6241185714285714,1.997965,3.314975,1.08167125,4.943955,3.06248,5.784845,1.1623572727272728,1.1623572727272728,4.27039,3.60048,3.769805,5.3537,2.65216,2.20066,3.931295,3.85942,2.0691075,3.270303333333333,2.8875433333333334,3.884015,3.5017750000000003,4.077115,4.62274,0.9748466666666666,2.620985,4.398645,4.12531,3.333595,2.577463333333333,3.36225,0.8162111111111111,0.8162111111111111,0.8162111111111111,0.8162111111111111,1.7152277777777778,4.06722,4.06722,1.71584,7.861926666666666,3.93074,4.905345,3.4876666666666662,2.605,4.78181,3.94671,4.743175,5.4374,1.7736225,4.21243,4.68735,2.8721,4.37344,3.19522,3.060095,4.899845,1.89838,3.87193,1.491325,3.4762383333333338,2.878535,1.6451325,1.13892,3.124625,4.64183,1.589646,0.79701,4.35732,1.25699,5.072675333333334,4.702805,1.463342857142857,3.53485,0.7315411111111111,2.64647,3.0785433333333336,2.892576666666667,2.549065,4.49116,2.8151491666666666,4.906,5.2759,4.638125,4.433775,2.09534,1.2531214285714287,4.30215,5.05685,1.604205,1.604205,3.968885,0.28535866666666665,1.9707533333333334,0.28535866666666665,0.28535866666666665,0.28535866666666665,0.28535866666666665,4.404365,2.7102166666666663,3.865815,3.40602,3.2165233333333334,4.70997,2.788793333333333,0.9969175,0.9969175,0.8516066666666666,0.8516066666666666,3.54296,1.738335,3.63329,2.4413348214285713,2.4413348214285713,5.74249,0.7530357142857144,1.9676375,7.622616666666666,5.3341,3.04443,3.55499,1.04515,2.13055,1.89629,4.85828,4.423275,4.344425,3.63484,1.2597514285714286,2.61996,2.1546375,7.27314,1.874065,4.41836,4.86183,2.79483,3.73751,5.83711,8.220205,4.093475,5.58015,4.93325,2.24182,3.632305,2.322825,2.165335,2.4679,3.64172,4.175675,5.809746666666666,6.4456,4.499185,1.2493266666666667,1.648655,4.55106,4.326495,2.0463225,5.5638,4.70896,4.596333333333333,1.9668066666666668,3.6035,1.4762866666666667,6.457526666666666,2.612483333333333,2.37736,2.100893333333333,2.36699,3.07159,3.476933333333333,3.9219000000000004,3.3376333333333332,3.3592999999999997,1.557842,4.293245,3.10129,4.019905,0.396699,2.99087,4.155415,2.493645,5.27425,4.80562,4.78412,6.739413,5.0984,2.3877566666666667,4.29893,5.18935,1.6088083333333334,5.41835,6.10535,5.2683,5.09575,3.6186,5.551,5.0854,4.5124,5.7343866666666665,7.5692075,3.876435,1.2668233333333332,1.50254,2.348025,1.846618,4.805575,4.050385,6.0186525,2.58481,2.6565066666666666,2.656973333333333,2.4677366666666667,2.4520766666666667,1.093382222222222,0.5338652941176472,4.310155,3.762,3.4676333333333336,3.836075,2.90275,3.270633333333333,5.393868333333333,3.219803333333333,0.6076235294117647,3.53793,5.76795,2.0406225,1.540978,3.729345,3.85184,2.6191999999999998,4.077933333333333,4.901995,2.5258499999999997,2.1924266666666665,2.11987,2.28187,2.49024,4.055405,4.842891666666667,7.606356249999999,2.201,5.3241,3.878880416666666,6.033900083333333,2.9174966666666666,2.958825,2.26096,1.72637,1.5789225,1.5789225,2.5137300000000002,2.3053033333333333,2.52397,5.29185,1.6645379999999999,2.127325,1.80871,0.62608125,4.014595,0.591645,1.16964125,3.441375,4.228455,4.50748,1.759525,5.3808,3.0241966666666666,0.8755428571428572,4.688915,3.9278514285714285,3.3907333333333334,2.34756,4.66532,0.2911510344827586,2.645279,3.29044,1.5041425,3.48939,4.671915,2.18121,1.35606,3.726715,3.662455,2.6584600000000003,2.6584600000000003,3.407395,3.73785,4.78418,5.139003333333333,5.11,0.9819633333333333,2.83234,2.9736499999999997,4.89216,5.1662,4.917175,4.833635,4.4293000000000005,3.8535333333333335,3.9254333333333338,3.5499666666666667,3.5757666666666665,3.1299966666666665,2.9313800000000003,0.7072821428571429,2.42114,2.478025,4.290555,3.02134,3.0557233333333333,0.7492816666666666,2.25281,3.5665205,4.81124,5.4725,4.020835,2.3196375,2.3196375,0.950003,3.41509,4.272105,4.038395,5.149025,3.07147,5.28725,0.5572436363636363,3.87625,3.956765,4.640515,3.534955,1.1080914285714285,3.94865,3.91067,5.0794,3.880225,5.34115,2.67691,4.080185,2.03463,1.08778,2.6512933333333333,5.04675,3.68704,3.137445,1.5741949999999998,3.90652,2.488975,2.575525,2.596108222222222,3.0830800000000003,4.591763333333334,2.7047866666666667,1.904712,3.5493666666666663,1.4502144047619048,2.830016666666667,2.5876233333333336,2.1915275,3.2087866666666667,3.0843166666666666,2.6745566666666662,3.3213233333333334,4.36471,2.99473,3.88251,2.1479033333333333,1.761825,4.261821666666666,2.9866499999999996,2.545926666666667,3.88251,2.4858333333333333,0.8238872727272728,2.4476725,1.0074766666666666,2.1915125,1.5685325,0.9468363636363637,1.7526925,2.22221,2.5888679999999997,2.659675,4.74721,1.46931,3.932975,3.1935366666666667,1.5302060000000002,2.2821333333333333,3.280796666666667,1.55745,2.9090566666666664,2.964506666666667,2.8055179545454547,2.1189825,1.7714860000000001,3.7046666666666668,2.39525,2.743351666666667,3.2715033333333334,2.815186666666667,3.919233333333333,2.6050833333333334,4.3138,3.5132666666666665,3.707966666666667,3.3645333333333336,3.6057666666666663,3.6512666666666664,1.9640266666666666,8.570105,4.429245,4.612265,3.292055,3.21751,1.920535,3.84505,1.785126,4.3659,4.946325,1.6148399999999998,2.433413333333333,1.1977666666666666,3.0427033333333333,1.95346,2.45657,5.21986,3.2523,3.39226,4.60881,0.750835,1.5668060000000001,1.0302,4.242605,11.035025000000001,4.0563,6.59755,2.0473375,5.3574,4.452995,2.4240575,5.33695,0.2700782352941177,0.7822614285714286,4.78124,4.79119,7.3188125,2.2686125,4.43131,5.77645,4.66794,4.32071,4.445545,5.24115,2.932865,5.675721666666667,4.266985,4.238585,3.200785,1.8778,1.7779299999999998,1.3932147708333333,2.3704933333333336,4.31999,5.5419,1.53317,8.64562,2.8482333333333334,2.7850816666666667,1.033896,1.033896,7.77971,3.00231,2.654675,2.037725,2.9062133333333335,2.0367333333333333,0.9946066666666667,3.740408333333334,2.6218166666666667,0.5496514285714286,1.66203,3.580862,3.580862,1.14033,2.4475599999999997,2.2550266666666667,3.134245,1.32473,1.8257133333333335,4.8605833333333335,2.7779399999999996,2.624725,1.4903,1.4903,4.21916,5.21225,4.679055,3.04599,3.88185,6.17442,2.514985,3.26512,3.5479000000000003,3.87147,1.09418,3.5424666666666664,2.583225,4.011645,2.18031,4.74537,3.293695,4.50953,3.443225,5.395255,1.0800166666666666,2.2060375,2.07272,3.33983,4.93033,3.509455,3.913,4.90477,4.88136,1.5246975,4.559345,3.767155,4.116775,2.42723,0.80306875,3.80652,4.719835,5.2935,1.18618,3.0912133333333336,3.0106633333333335,2.364316666666667,1.696810980392157,1.696810980392157,1.1413233333333335,2.701686666666667,1.168472857142857,1.31944,4.38902,4.766795,0.5333666666666667,3.82059,3.5159000000000002,4.06684,5.58495,0.4147435,9.642669999999999,5.65485,2.64349,4.5272,4.89194,6.007800714285715,4.94592,6.47954,0.7476636363636363,2.6853433333333334,5.6718,2.769133333333333,1.9775275,2.125,4.78462,5.314316249999999,2.6943375,2.6238766666666664,3.514466666666667,2.34129,5.09505,8.877044999999999,8.6898075,3.6359999999999997,4.929825,3.0284491666666664,2.948245,3.73802,1.797352,2.9091199999999997,3.660845,4.06154,4.80311,4.74825,7.115499999999999,2.867926666666667,4.787385,4.73677,5.0264,5.7969,6.108796666666667,4.0891325,6.52285,3.47382,2.77399,2.78439,6.21645,3.751105,6.2197,2.154595,3.25629,3.22562,6.382,4.17224,5.21575,1.3895,0.85054125,2.761475,0.70406,3.764705,3.410325,3.309,2.8216,2.16045,2.986025,2.55925,3.350744,1.8905740000000002,2.97997875,2.923825,2.4272625,2.6965,3.6688560000000003,1.5188483333333334,3.0493233333333336,5.01955,3.5849333333333333,1.136225,2.737526666666667,3.7800308333333335,3.9348799999999997,1.5904375,5.5709,5.75745,2.035093333333333,2.920533333333333,30.53015708892252,3.3498,1.6500166666666667,3.692633333333333,1.74461,2.62946,3.010666666666667,3.6611,1.87593,2.65905,2.3327975,2.980801,2.7277633333333333,2.501525,1.64286,2.2709599999999996,2.842075,0.3968681818181818,1.046665,2.7540099999999996,1.76157,3.478575,1.5904375,2.269953333333333,26.24590388888889,5.2133,4.41499,3.640605,2.524075,2.4685775,2.7206533333333334,2.23869,4.876025,6.413556,5.5676,1.6006360000000002,2.05652,2.808945,2.660195,3.971285,5.50035,5.1225,4.51938,0.18127765957446806,5.0621,5.007691666666666,3.721395,9.39665,0.9896975,0.9896975,3.0379666666666663,3.444755,5.68765,2.267666666666667,1.1471333333333333,5.1351,1.8685475,4.58998,4.22392,3.45482,4.18548,3.742155,4.669875,3.354215,0.6957833333333334,2.94645,2.0469391666666668,4.194625,7.86796,4.41347,1.5409333333333333,1.5409333333333333,6.620125,4.84237,3.949145,5.7643,1.8042066666666667,5.913433333333334,1.7645866666666665,1.5258200000000002,2.9733199999999997,2.55271,3.64503,2.720306666666667,3.69082,4.2781199999999995,4.32994,5.3068,2.36024,2.0534675,1.73037,3.00325,2.10425,2.12134,1.9419425,4.9530275,1.852705,3.877017619047619,2.3290166666666665,3.3678666666666666,2.683726666666667,1.85625,1.457,0.993609,3.4234666666666667,3.9255999999999998,0.845984,4.51035,1.8269375,5.930849583333333,1.9833525,2.2241825,1.333415,1.4479300000000002,5.938491111111111,1.8013940000000002,2.87058,3.6636,1.20112375,1.906505,4.790698,3.237206666666667,3.2761933333333335,3.5538666666666665,2.939853333333333,2.855176666666667,1.2633325,0.27597,0.27597,0.27597,0.27597,0.27597,4.47956,2.715006666666667,2.310335,3.4891,1.2564016666666666,2.500426666666667,3.200203333333333,2.8963,3.042765,2.84697,1.9115066666666667,2.9422266666666665,3.26423,2.34607,1.8818525,3.4617,2.5814866666666667,2.5835733333333333,5.34335,2.6424499999999997,2.46498,2.4303266666666667,11.225503333333332,5.02365,5.1085,5.15635,4.511915,2.795246666666667,5.0027,3.644415,3.029325,5.600300000000001,4.403165,3.19178,2.2534725,3.52018,5.413462714285714,3.778075,18.860063523809526,1.3546,4.99019,0.81511,1.3135375,3.016925,4.63038,3.85194,3.69277,1.4000416666666666,2.5363,4.31883,2.32314,4.763,3.3017567857142858,2.7045600000000003,1.115275,2.9788200000000002,4.5917,2.3329675,2.3838475,2.14323,19.025289166666667,1.4273799999999999,1.26715,2.2540566666666666,0.3427776923076923,1.8964975,2.857423333333333,1.9235433333333332,2.7620666666666662,2.59555,7.785233333333333,2.0131125,2.646725,2.242695,2.306955,1.541505,3.5387,3.938875,3.1322,3.1129233333333333,2.06891,2.4115087500000003,3.3223183333333335,4.91321,0.44315583333333336,2.594883333333333,2.59922,3.260915,2.3487775,3.5891145,3.39909,1.57151,2.251183333333333,2.25994,1.9558600000000002,2.692676666666667,3.511165,3.202135,0.73603,3.02142,5.2212,4.260535,2.348758,2.348758,3.2302033333333333,4.788495,3.29972,3.05912,2.365935,1.0771454545454544,4.21679,3.565505,5.57425,3.944675,2.2635579999999997,2.2635579999999997,1.95358,3.79092,5.2316,4.19977,4.12039,3.3688333333333333,2.5224433333333334,4.5185,3.47389,4.1094,3.1217400000000004,2.5967266666666666,4.480026,3.489933333333333,2.541653333333333,1.8533233333333332,3.75523,2.738925,1.6885466666666666,3.504385,4.23589,4.93275,2.7743333333333333,4.566665,4.195315,6.875380750000001,3.87309,2.2812799999999998,4.690625,3.201645,7.561485,2.9018800000000002,1.4607766666666666,4.377405,3.301816666666667,4.80114,0.6210764285714285,0.7898141666666666,3.63399,3.840935,2.3260972727272726,4.71463,2.651605,2.638555,8.918068,1.826548,1.440468,4.00497,2.447245,3.71984,5.30065,6.86792,3.00838,2.183406666666667,3.2096933333333335,1.91036,3.637033333333333,8.33174869458128,0.7633571428571428,1.1622025,4.799195,0.5211313333333334,1.6632525,2.3638375,2.62005,2.98955,2.271385,4.280015,2.49248,14.155035,5.14952,2.439665,2.439665,4.426375,0.8156150000000001,5.704323333333333,4.088375,3.99799,6.622903333333333,3.434925,4.749905,1.4366883333333333,2.66693,2.532975,2.75521,2.848405,2.517775,3.00186,3.258365,3.507575,2.85198,2.771145,2.65667,4.66303,4.673735,3.2542266666666664,3.4567,4.977284166666666,4.46839,19.889123095238094,12.749010119047618,3.247772857142857,0.6933483333333333,1.5755,4.517515,3.69692,3.3539041025641025,1.807405,0.9361233333333333,0.6596808333333334,0.6186171428571429,2.02108,1.6804860000000001,5.256583333333333,3.6264333333333334,0.6883072727272728,3.11304,2.3009,2.366245,2.00604,5.99037,1.542778,4.40971,3.199285,2.984033333333333,2.174015,2.53049,2.517236666666667,0.8579327272727273,2.49916,3.0911000000000004,3.6916219999999997,3.106203333333333,7.626831666666667,3.51473,3.02741,2.146575,3.671135,6.6570800000000006,2.17382,2.4580275,2.4889875,1.53219,2.58465,2.3108975,2.59265,0.8716329999999999,1.518385,1.06628125,3.186445,4.50062,6.29285,6.00405,3.01855,2.168665,3.011275,3.571266666666667,7.852643333333333,1.2556666666666667,0.400278125,2.99681,1.9009466666666668,1.7137319999999998,3.7982819999999995,1.36997,2.0490423333333334,4.516041666666666,3.193284,1.1721166666666667,1.8000999999999998,3.9305949999999994,3.386245,4.36775,5.03025,2.471105,5.3131,3.982095,0.8130999999999999,5.0035,4.1788,4.6352037500000005,3.5655666666666668,2.223955,1.270256,1.118775,3.59462,2.70711,3.10324,4.2679,2.94386,2.4741566666666666,2.97341,3.52886,4.87239,2.33033,2.44888,4.320885,5.78245,0.57953,4.227285,1.8162775,3.499775,3.8937000000000004,2.0015775,3.094285,2.208585,2.04805,2.97552,2.626125,1.73227,6.00335,3.5997,1.2591914285714285,6.48692,1.0536833333333333,3.71608,1.6480833333333333,4.475325,4.211265,2.20985,3.17518,3.45035,9.22426,2.759175,3.58767,3.714625,3.5763,1.6580225,7.49851,3.43953,5.0962,1.54658,3.93443,3.03865,1.11223625,2.1144600000000002,4.105285,2.062905,4.06104,4.4880075,4.3596775,4.661355,2.3785975,5.4682,3.91305,3.245896666666667,2.70448,1.695656,4.75548,6.3743,4.826135,4.540665,3.037005,2.3360425,4.22479,3.415845,1.1709454945054945,3.904305,4.725020833333334,4.15655,2.856085,3.3999,0.6684971428571428,0.6684971428571428,5.75125,4.68519,5.65785,2.221715,4.14699,4.668925,0.793239,4.385945,4.87215,5.2335,4.917555,4.492815,1.96659,3.55173,2.196705,4.467195,0.706425,3.94749,4.303725,2.86036,2.923313333333333,4.566965,2.19735,3.135325,60.418838162337664,3.165095,2.4226666666666667,1.546995,3.017385,3.711495,0.89098875,0.96497125,2.3288425,2.3288425,1.2197580000000001,3.016255,2.512065,3.8085695,7.36598,3.10662,1.2254985714285715,1.5000433333333334,2.5305866666666668,3.774819166666667,1.00828,1.86829,1.520572,2.164105,4.476345,4.567085,3.152725,23.613123971861473,4.12592,3.822885,3.056135,1.9790166666666666,3.6184,3.1034,2.4267875,4.99847,1.802788,4.33938,3.404917464285714,6.331532916666667,1.85106,2.481485,2.00003,4.13161,2.29463,2.18936,1.9846566666666667,4.0692450000000004,3.99323,3.41066,4.70905,5.0056,2.7432,3.315505,3.03192,2.54438,2.88783,2.242825,2.266575,3.389805,1.1405216666666667,4.006745,4.705,2.607855,5.1828,4.96112,5.43476,2.1409233333333333,2.234485,2.60924,2.62188,3.82512,3.253955,4.484505,0.6911785714285715,4.276857333333334,2.73954,3.665185,2.193035,1.805086,4.03562,1.304588888888889,2.641165,4.4862,1.161624,3.35634,4.365275,4.80711,6.3216925,2.28925,2.647485,2.8726966666666667,3.7509,2.481473333333333,2.527905333333333,2.5964566666666666,2.1797133333333334,2.3081133333333335,1.30951,2.37705,2.37705,1.9014133333333334,2.0077366666666667,1.8998166666666665,2.438196666666667,4.01739,5.2637,3.67323,1.661265,4.524415,3.378435,3.314665,4.03135,1.84486,1.503835,4.461603333333334,1.90562,5.941171666666667,4.462265,3.38106,2.4472,3.481996875,3.19139,3.031105,3.312365,0.1393838775510204,2.98291,7.616785,1.46761,3.27696,4.936455,1.01443,1.4010999999999998,1.850785,3.964755,3.188735,6.992405,3.586805,3.406535,2.7638,2.535495,3.39593,3.18315,3.962545,3.102605,2.75069,5.05915,4.91475,4.68687,2.6034633333333335,1.80461,3.34841,4.65244,2.67465,3.92445,2.109395,2.8332,4.171945,3.632925,2.43653,4.49667,5.0938,2.654545,4.88449,5.1593,3.375525,4.50261,3.202995,3.093485,9.16947,4.46677,6.15305,5.2665,4.348465,5.948005,3.844455,3.677985,1.296954,6.703,2.29804,5.5883,4.072125,4.484815,3.3220766666666663,1.9756666666666665,2.063196666666667,2.3133266666666668,0.9191819999999999,3.28699,2.9160633333333332,2.944906666666667,2.5016833333333333,3.834435,4.520745,2.465176666666667,0.5215299999999999,4.453895,4.30827,4.92103,5.33935,4.048285,4.622635,5.5432,4.830725,1.4349333333333334,0.9415615384615384,3.261696666666667,5.08155,5.29405,0.48782125,2.748535,2.406773333333333,3.236335,4.254965,4.0184,1.8793975,4.096625,3.219745,4.74881,3.21566,6.1786,4.3176,7.0406200000000005,0.6674741666666667,3.91056,1.013468,2.25245,4.0854,3.4235333333333333,1.2036966666666666,2.2236599999999997,4.27606,4.36377,4.005085,2.1566,2.1579725,3.042505,4.885465,3.90476,4.250885,1.6110900000000001,1.2510494285714286,4.993665,2.51085,7.672905,4.5827,3.410905,2.31724,1.56165,4.261405,4.55011,1.6336000000000002,2.343395,2.6565,2.98291,6.777458333333334,2.9445683333333337,2.9396400000000003,4.314572500000001,3.46137,1.9418199999999999,2.72795,7.63306,5.1457,4.947715,0.51066,4.22105,4.185675,4.890187142857143,4.834075,4.419165,2.97765,3.708735,3.08435,2.738065,3.679791833333333,1.579282,5.835212,4.603785,4.87717,3.659225,3.157405,3.5040708333333335,2.2969475,1.451275,0.96758,2.742885,3.0643,1.0690766666666667,2.5341333333333336,5.3306,5.3862,3.13992,4.455385,15.556527738095237,4.50113,4.3194,4.4508,0.6755075,5.3034,4.7047,5.15315,4.68301,5.60405,2.671755,3.565295,3.246965,1.454278,3.04416,5.74175,3.5694666666666666,1.679422,4.300435,5.252,4.068155,5.37315,4.752565,5.8443,4.574265,2.9855133333333335,4.07728,4.205795,2.45465,3.0848133333333334,2.9159666666666664,1.8967654166666665,5.1191,2.7063085714285715,1.8618633333333332,3.81445,2.832625,4.222855,4.261821666666666,2.45504,3.100255,4.280625,3.470175,4.59997,4.14976,4.376365,4.977825,3.790315,5.3587,2.8587333333333333,4.29346,4.197495,1.477296,4.526815,1.0482166666666666,4.29071,4.023415,1.29241,3.54221,2.095235,6.736039999999999,2.761614380952381,2.761614380952381,2.761614380952381,0.6833916666666666,1.20029,2.20112,3.54947,6.055,3.808007777777778,1.784045,2.3608525,1.7608333333333333,3.55349,2.363375,0.49903461538461535,1.66219,1.9978175,3.419955,1.847215,3.045595,2.32576,2.0500325,3.700465,2.80129,5.2072,3.66193,1.927805,6.50098,1.95054,4.284995,3.77373,6.1804716666666675,1.41164,3.35496,3.930035,3.459105,4.617495,3.06264,2.0813325,3.641705,5.888108333333333,1.9135,3.43182,2.98783,2.1030775,5.01635,5.12635,2.8506433333333336,2.09774,3.803635,6.319439999999999,5.463,3.01128,2.418655,2.49922,2.771655,2.81926,3.74181,1.517185,2.664415,4.410035,0.7925425,4.485915,3.642655,3.74766,4.91161,2.23002,3.98512,1.86128,4.178185,7.5194833333333335,4.40183,3.313715,4.36394,0.9293075,4.49011,2.287505,4.322715,5.4913975,4.47458,4.215625,12.708065000000001,4.933735,3.449035,1.390365,0.6909366666666666,2.75415,3.588145,3.305845,3.400725,2.0161666666666664,3.2142866666666667,2.43518,1.1402716666666668,1.1402716666666668,1.9149433333333334,2.3170933333333332,3.2515533333333333,3.2018400000000002,3.7775,3.1149966666666664,3.3026433333333336,2.8760666666666665,1.4444633333333332,2.36408,2.10163,2.36443,1.4211125,2.4690366666666668,0.8311833333333333,10.147814583333332,0.8311833333333333,3.22893,2.1266066666666665,2.2247600000000003,4.343725,4.24299,4.80005,5.21175,2.7563633333333333,2.721766666666667,3.203502,3.3117133333333335,3.606833333333333,3.679233333333333,2.7281999999999997,3.228756666666667,1.6972266666666667,5.27125,5.773723904761905,3.1365,3.532966666666667,3.1893100000000003,3.28056,3.2463833333333336,1.1933957142857143,3.432066666666667,2.959873333333333,4.392935,5.89775,4.277055,2.7029666666666667,3.4864333333333337,3.5919666666666665,4.137381111111111,4.19077,2.4823066666666667,4.33461,3.513866666666667,3.27992,4.822175,2.96007,4.205175,7.068456666666666,2.6816933333333335,2.3063766666666665,1.7078233333333335,1.47696,4.901856666666667,3.51004,2.7526466666666667,1.9657066666666667,2.09956,4.34235,4.296615,3.69443,3.30232,3.442066666666667,3.6697666666666664,3.6481666666666666,3.9240333333333335,3.07696,0.55562375,3.9498333333333338,2.6676,2.4674333333333336,3.582975,5.40515,4.707085,5.4187,2.665405,4.465391666666667,1.1298116666666667,2.4710633333333334,2.4710633333333334,4.30848,3.6618,3.5953,3.70839,1.74287,3.333855,3.66194,1.085297142857143,3.783245,3.4137457142857146,2.06208,0.38172,4.03704,3.23878,6.448675,3.314875,5.55165,3.122295,3.63746,4.218425,1.7294175,4.036935,4.917255,3.40922,3.512,2.9312199999999997,5.682230000000001,2.10142,1.01675875,1.92009,1.5514266666666667,5.03386,2.2656033333333334,2.25713,1.8224975,4.4949,3.88146,4.93167,0.8169299999999999,4.37339,3.7418,2.5894266666666668,2.58166,2.7874866666666667,3.4301713888888887,4.113953333333333,1.4111566666666666,0.6762631578947369,0.8365714285714285,3.8375,4.117085,5.8018133333333335,4.78381,4.97308,5.43855,1.4911571428571428,3.8937000000000004,2.1095833333333336,0.9641425,5.5948,5.67445,3.01651,4.692315,3.9293,7.064803333333333,4.008966666666667,6.980526666666666,3.576555,2.7780041666666664,6.2331,10.15841983974359,2.83083,0.710191,3.81159,4.07489,2.125165,6.67255,5.01535,4.18589,3.1649,3.1649,4.460845,3.483025,3.958285,5.40325,4.155245761904761,2.611864857142857,1.17833125,5.4402,2.606535,6.204315,3.945805,5.1062,3.67778,2.3413975,4.967865,4.736275,3.4847,4.230445,4.634,29.11263119047619,2.7045,2.4716275,2.1951825,1.591145,2.6297966666666666,1.4032928571428571,3.06513,2.9419500000000003,3.5766333333333336,3.4859333333333336,0.763116923076923,3.5033666666666665,4.774325,3.986485,3.4026666666666667,4.400965,6.227415,4.757325,4.34682,3.864325,4.347851666666667,4.524925,3.529166666666667,1.65692,1.0030583333333334,1.3834366666666666,3.4608666666666665,1.4103266666666665,3.3283799999999997,2.3172266666666665,2.1489966666666667,1.8461166666666669,2.555485,2.14807,1.9684100000000002,2.95976,3.93467,3.50135,4.374565,1.78699,3.487966666666667,2.3772800000000003,4.412555,2.697646666666667,2.46229,2.178995,1.43168,3.96606,6.299623333333333,2.63519,3.421485,3.866225,2.52085,3.135791666666667,3.534333333333333,4.57953,4.58175,0.2849498069498069,0.2849498069498069,5.2655,5.14865,4.56203,2.86948,5.68425,4.97298,0.6359484615384615,4.704495,5.18755,3.78959,6.55545,4.63343,8.14617,15.165346666666666,13.971943846153849,4.32959,4.10494,2.686636666666667,0.6956338461538463,2.7126,4.70451,1.3819433333333333,4.644655,3.6153,3.2390633333333336,2.0086566666666665,2.00315,5.533245,4.2915,9.254448452380952,5.1001,3.959955,7.7593075,3.23141,3.1713400000000003,1.477545,5.4972975,2.1888675,2.5320533333333333,2.66738,0.2973215625,2.79328,4.039115,4.7892025,1.271434,1.3587533333333335,3.921515,0.5874159999999999,0.5874159999999999,3.031999166666667,3.0336366666666668,3.7320666666666664,3.824615,4.24828,5.87945,3.53924,3.96462,2.67937,3.3177633333333336,2.89225,0.8017491666666667,2.7615,2.7099,2.855845,6.1454625,2.99011,7.5636624999999995,2.3594625,4.123485,2.59889,2.297025,2.61805,2.847,1.64126,2.49214,2.4023325,4.06268,2.578025,4.429237499999999,2.900065,3.7389708333333336,3.7389708333333336,2.5995975,2.5995975,8.868791166666666,2.7716133333333333,0.757219,2.48549,2.397,2.4847266666666665,4.429237499999999,2.013,1.925482,1.49264,4.025395,4.925835,1.573955,4.540055,4.033205,6.488438888888889,6.53895,2.1418,4.46298,7.87435,5.41875,4.036305,3.0671,4.699705,3.984352424242424,4.649985,5.510688333333333,8.519927333333333,3.5858,4.0491,1.157685,4.271135,4.921953333333334,5.07005,3.8085241666666665,4.603095,3.58789,2.986663333333333,7.018784999999999,3.501105,1.518618,7.45406,3.616385,3.3441333333333336,4.868955,3.3441333333333336,3.9877,4.802825,5.196,1.082612857142857,4.074392222222222,4.907815,3.769135,1.3899666666666668,1.909235,4.730635,4.261395,2.748305,7.647556666666667,4.522645,4.85656,4.26479,4.9165849999999995,1.596825,4.51156,2.856155,3.92845,4.45224,5.2803,4.925115,2.800495,4.559135,4.989565,2.1028303333333334,1.7507625,3.970466666666667,3.3599,3.1105133333333335,3.2029033333333334,4.0699,3.131186666666667,4.47092,3.257005,3.40949,2.70867,1.76673,3.8110999999999997,2.53668,2.920485,2.876895,2.74719,0.706425,2.2843225,1.7100799999999998,3.30825,2.00542,3.8894909999999996,3.489155,1.655846,3.1273775,5.16455,0.79581,1.30783,3.964245,3.82618,3.37991,1.955015,2.49197,3.342755,2.3295416666666666,1.5663966666666667,2.95004,1.98282,1.154688,1.2897675,6.05469,3.433145,2.57573,2.63999,2.417835,3.49111,0.79485625,0.3430207142857143,0.9290728571428571,5.10245,1.942429142857143,4.411455,2.03321,2.208315285714286,3.420061857142857,1.2117465714285713,1.1410352857142858,0.723836,0.5382385714285715,2.951665833333333,6.43505,3.05184,4.250775,0.33593214285714285,3.63101,19.60275938095238,2.95291,6.861178458624709,0.98009875,0.98009875,0.98009875,0.98009875,5.9006875,3.89929,3.14115,2.3206366666666667,3.068595,3.81986,4.363715,4.0255,3.384,4.810055,5.10555,4.30262,3.637842666666667,4.205615,4.907875,3.950085,5.22505,3.50158,4.456685,2.9700366666666667,3.759745,3.213805,4.63643,4.420595,4.420555,3.3382,2.54435,2.3366866666666666,4.94863,1.2135114285714286,3.494825,3.0624833333333332,3.723927333333333,4.3596775,4.06796,2.88105,2.65491,5.04185,3.169635,3.075735,5.15345,4.910465,3.052155,4.051865,1.784626,1.784626,2.02384,4.606445,3.853235,6.353202,4.79651,4.005335,6.23615,4.52291,2.0418225,9.2905,4.391705,6.8547675,4.268615,2.9003333333333337,4.477455,0.26504793103448276,0.9475625,4.086791333333333,3.705755,4.9976,3.2824000000000004,6.07617,5.0009,0.5480857142857143,3.488005,0.616997,1.6449399999999998,3.0938,2.246955,4.67255,3.44051,3.250015,3.43037,3.1556,3.40868,3.34317,3.46516,4.158235,2.518785,1.6449399999999998,2.403755,1.975935,3.53061,2.112145,4.128965,3.360895,1.6580225,4.335565,3.198445,1.5702283333333333,4.961485,4.87745,3.900585,2.8558833333333333,3.2188166666666667,4.42414,1.92623,1.358014,2.4546966666666665,2.765613333333333,2.4526499999999998,2.53768,5.03885,3.326,4.8512175,4.049503571428572,5.0654,4.266965,1.746658,5.31415,4.629545,5.15055,4.01435,6.87838,1.8286225,4.81395,3.85587,2.823395,2.26762,1.6798333333333335,3.76725,4.469885,2.16968,2.2061166666666665,3.4120375000000003,3.4120375000000003,2.6409133333333332,3.5239999999999996,3.427755,3.83107,3.357165,0.7343661538461539,3.106895,4.084635,4.617553888888889,2.86796,2.843195,1.6900275,2.613675,3.441255,2.188725,4.3218,4.643225,4.48248,2.2750766666666666,1.005309090909091,6.37287,3.47903,3.4697999999999998,3.3989333333333334,1.818572,30.477663380952382,4.760435,3.0345,4.444785,4.112145,0.8685416666666667,7.7487575,2.476565,5.7332,1.6516133333333334,4.648215,5.741883333333333,3.574155,3.185255,2.379295,4.095566666666667,5.40175,2.1911175,2.7630733333333333,3.615425,3.44222,2.459175,6.3484,1.98464,3.49664,1.2662125,4.3425,3.325555,4.24888,4.731565,3.133755,2.5931133333333336,4.25745,4.574785,3.44508,3.44508,6.2877,1.563935,4.277925,7.318875,3.034975,4.319565,3.416045,2.41185,3.26876,3.94612,1.2588425,2.434855,3.97411,4.447725,5.5329,4.404915,2.153045,9.686433333333333,3.536085,3.625905,1.8370285714285715,3.516625,2.17361,2.5486366666666664,2.14544375,1.2374666666666667,2.7891266666666668,0.9077571428571429,0.9107385714285714,0.9107385714285714,0.9107385714285714,2.0456533333333335,0.53652375,3.70511,1.1332533333333334,2.2807033333333333,1.1249166666666668,1.71122,2.62162,2.1958033333333336,0.70567375,1.6171,1.6226033333333334,2.251673333333333,1.6332719999999998,1.6332719999999998,1.5809666666666666,2.2699233333333333,0.8675,1.85258,1.5199366666666665,1.31339,2.879815,2.72832,6.0131,2.106185,3.989635,17.847789416666664,6.4878800000000005,3.69899,3.52115,3.2500033333333334,2.8956199999999996,2.830416666666667,3.372,0.7714808333333334,1.04881,1.04881,0.6340875,2.53672,3.916065,4.305235,1.7008199999999998,5.3574,3.72533,2.457565,3.713695,4.822665,3.88153,4.3332,3.5559999999999996,3.09646,3.352135,5.73015,3.3599,4.792915,0.493729,0.493729,2.087905,3.699435,5.30315,3.983915,4.418955,5.0738,7.008106,8.08858,3.80019,2.64695,5.4944,3.35148,2.524966666666667,2.22315,2.977445,1.3185966666666666,3.649085,2.32882,1.9982775,3.30016,4.96494,2.061935,5.510688333333333,1.783345,3.4696,3.60338,0.9784357142857143,3.514,2.8637333333333337,4.963565,1.1244033333333332,1.7495925,2.538,2.221425,1.65141,2.551975,2.2541125,2.1822775,4.77628,4.24609,3.50183,1.80909,1.4243733333333333,3.8691,1.9380666666666666,2.5125,4.427405,5.3971,2.164839166666667,2.76277,3.328515,3.372925,2.355425,5.081,4.160065,3.05483,1.53195,4.22144,3.003275,2.983093333333333,2.45343,4.59056,5.1185,5.14455,2.5376,2.7928833333333336,3.14551,3.637033333333333,1.9176333333333335,1.6519059999999999,5.55045,3.67,2.2953038181818184,3.360666666666667,3.2011866666666666,2.344246666666667,3.3766,3.26031,3.855566666666667,5.27215,4.14664,3.1605633333333336,5.7128,3.76144,2.44809,3.30489,3.92215,4.44009,6.0313894999999995,1.8877859999999997,3.96177,3.445675,5.085,3.44013,0.5726475,2.55952,2.255005,3.510725,2.84368,2.07638,2.962935,0.780053,2.85045,4.668665,2.442275,4.19795,2.8207833333333334,3.97139,1.876795,4.57915,4.060315,2.0552,4.171645,7.453004999999999,4.596035,4.38166,4.47408,7.1934375,4.520865,4.359315,2.0921925,4.90475,3.813865,1.9610233333333333,1.786025,3.6672999999999996,0.9654628571428571,2.5780766666666666,2.9014133333333336,2.5615133333333335,3.2944166666666668,1.7847899999999999,3.180985,1.8235433333333333,6.1098,6.9279425,0.97870375,1.7599433333333332,2.43853,2.6943933333333336,1.9928633333333332,1.030635,5.4474333333333345,2.0669025,2.5705766666666667,3.8652333333333337,2.9876799999999997,3.2391633333333334,3.104875,2.1265266666666665,3.0352766666666664,2.20395,4.239715,4.315235,3.84688,3.4852000000000003,3.366433333333333,1.06219,1.83244,2.290795,2.229573333333333,2.53469,1.111845,2.59729,2.8024,4.147505,2.06087,3.287585,4.058745,5.8287,3.750645,0.5790725,1.9086919999999998,2.7134966666666664,3.8437666666666668,0.8190472727272727,3.0277366666666663,3.373786,3.6702666666666666,2.93233,3.0757258333333333,3.597245,3.8059666666666665,2.860133333333333,2.38825,5.8917,5.33655,5.73405,5.45355,6.1057,1.7358200000000001,3.676305,3.6462333333333334,3.542533333333333,3.04557,2.6980166666666663,3.9265666666666665,3.5656666666666665,3.2139666666666664,14.377223333333333,4.220395,1.1143100000000001,3.6077999999999997,1.858508,3.550133333333333,3.1808266666666665,2.628553333333333,5.6841,6.1940349999999995,2.43121,0.950217,4.530445,3.1779933333333332,3.025065,4.734465,4.881305,6.16815,5.22815,3.721015,2.000995,6.35017,1.157685,6.7164525,4.885945,2.784603333333333,4.768775,7.2342933333333335,5.7716,2.36332,1.4580583333333335,2.09652,8.397903333333334,1.5904375,2.9516899999999997,2.5320416666666663,4.314358333333334,5.9662,4.058535,6.56925,3.204315,5.1524,3.64208,8.92081,5.4802,5.81435,2.34873,2.675325,11.700448333333332,3.262685,3.380265,2.3046166666666665,1.6794799999999999,2.9663633333333332,2.214306666666667,0.63607875,1.036148,1.0412242857142857,4.14626,6.83457,2.9375546666666668,1.3758866666666665,5.61785,4.378545,0.571909,4.12787,3.476635,4.21614,4.388435,4.49634,2.626656666666667,4.046345,9.744045,1.6859825,3.613315,3.35065,4.369185,3.564185,0.85505,3.517466666666667,3.8407,1.6213966666666666,2.473316666666667,2.2025,2.41567,3.0701433333333337,2.1039033333333332,2.20183,6.520353571428571,4.77497,4.610075,4.16503,1.4692,2.3067675,4.85422,5.03395,4.9506,4.749715,4.710485,4.797265,1.784626,3.76646,7.30817,1.4072216666666666,1.7068433333333333,2.584163333333333,3.0545500000000003,2.847913333333333,4.88081775,0.8365714285714285,2.32701,3.001835,4.777655,4.338315,2.3513033333333335,2.7436966666666667,2.13476,0.544040625,2.0177525,2.73206,7.502215,4.213655,4.618035,0.94937,2.6119166666666667,9.597433833333334,11.70143,3.46625,1.24123125,3.381805,3.571195,2.8252400000000004,5.327068,5.0198,4.275335,2.196205,4.0714,2.1807733333333332,2.4668533333333333,0.7847763636363637,0.461192,2.461775,3.49487,2.033276,3.295255,3.4664,4.064105,4.6884,1.4165839999999998,3.5720666666666667,1.8779249999999998,1.8779249999999998,2.158165,2.76436,2.79939,2.593636666666667,2.8730266666666666,3.4629666666666665,3.5461666666666667,4.30934,4.486715,4.513165,3.926395,4.901575,4.413145,4.155,8.115140833333333,2.1729625,2.2073233333333335,3.06202,0.8425950000000001,0.7196816666666667,3.618215,2.20206,5.61235,2.9215533333333332,3.2122233333333337,1.9189859999999999,1.333725,4.22535,4.076435,4.063685,1.6773,1.2415666666666667,2.542333333333333,2.055006666666667,2.47838,1.0247371428571428,1.0247371428571428,2.7116233333333333,4.120605,2.76774,3.054095,3.39214,1.96442,20.47611618181818,3.62064,5.900532500000001,4.228775,3.50895,3.77982,4.23688,5.56995,6.658885000000001,0.8995966666666666,0.8995966666666666,0.8995966666666666,2.6228533333333335,1.7484428571428572,3.7138666666666666,4.39564,4.08109,3.35339,4.495775,4.24769,0.8750911111111112,2.49279,2.7834133333333333,5.942038333333333,3.341405,4.089343333333333,4.606285,2.0015775,1.8631933333333333,2.27228,0.4971525,0.8138,1.69393,1.97656,2.50834,13.288986666666666,2.508696666666667,5.3674,0.7414785714285713,10.691585,5.54395,3.45523,4.79363,2.850175,5.49795,2.850175,3.116428,3.316265,3.6515,3.851265,3.676725,4.73167,3.79566,6.0907,7.041600000000001,1.64703,3.7173119999999997,2.60182,28.058145068854568,1.8991820000000001,6.25585,5.616493999999999,3.88337,3.711095,4.470465,2.667335,2.73743,2.12893,6.33385,6.7089,5.0156,4.510235,4.490815,2.195855,1.95864,4.210095,0.32137923076923075,0.32137923076923075,0.32137923076923075,0.32137923076923075,3.879965,3.19847,1.0273966666666667,1.7248299999999999,1.1787222222222222,4.75774,2.3746266666666664,2.2691175,7.37664,3.3297233333333334,0.1660562068965517,20.863429666666665,4.518936666666667,1.731502,1.3485165714285714,2.2713,2.0267399999999998,2.551025,4.55901,2.904295,4.63189,4.10215,2.3390766666666667,7.7254425,2.585745,1.98264,4.17175,6.0814,7.9252183333333335,4.3135,0.2916707317073171,3.37262,4.242095,3.20341,2.4845825,3.0451099999999998,1.5807216666666666,1.5807216666666666,3.843945,5.5646175,11.925561666666667,9.4209,0.6835444444444445,2.53444,4.19228,3.112595,4.539575,5.60615,1.996582,1.996582,4.09869,4.522575,2.799523333333333,3.67213,5.14505,4.899755,5.584235,2.05024,4.562285,4.086555,2.73364,2.9931066666666664,3.1481166666666667,5.28775,4.777665,5.59605,4.32788,4.427125,4.08499,4.69545,4.61909,5.85935,2.6842633333333334,3.1946433333333335,1.089676,4.28388,4.433345,4.442265,1.7829339999999998,2.10966,1.8087533333333334,3.242086666666667,2.3709166666666666,4.423163333333333,1.7449333333333332,2.66085,3.28492,2.96453,2.5701666666666667,2.8357500000000004,4.289866666666667,3.472933333333333,3.8836,4.1975766666666665,2.0780533333333335,2.7362800000000003,2.52167,5.2291,3.0414666666666665,41.78531866666667,2.1769994545454545,2.1769994545454545,2.41722,2.817463333333333,2.1870066666666665,1.7001099999999998,2.8611466666666665,1.7943866666666668,0.7507107692307693,4.68985,6.947150000000001,4.280625,4.0719,5.67865,1.9249833333333333,4.69574,1.8041019999999999,5.15305,5.22575,5.76135,4.651775,1.65692,4.04,4.990145,4.75753,5.7331,5.2774,4.092315,3.20864,3.3108833333333334,3.1500033333333337,2.2325025,1.788955,4.44631,1.9979433333333334,3.5676550000000002,3.5676550000000002,2.1356266666666666,1.4412099999999999,1.9330633333333334,2.3243833333333335,2.6993500000000004,5.05292,3.190023333333333,1.1014233333333332,1.1014233333333332,2.0563566666666664,2.5031333333333334,2.43144,2.4781233333333335,2.4645366666666666,2.3169633333333333,2.0180433333333334,2.03675925,2.8221763928571426,1.5324183928571427,0.7854171428571428,59.80052452976191,2.282268,3.083073333333333,2.46421,0.879564,4.105296,1.56304,1.56304,2.21792,2.9280233333333334,0.74700125,2.4414333333333333,5.390633333333334,4.0742,2.67588,2.67699,2.1252299999999997,2.494276,0.303045,2.718306666666667,0.754206,2.426093333333333,1.139294,1.139294,2.637916666666667,2.50008,2.62133,2.2111026666666667,2.4964566666666665,2.2111026666666667,2.0471766666666666,3.05501,3.042503333333333,1.2796239999999999,1.2796239999999999,2.890663333333333,1.3891366666666667,2.9726233333333334,1.91284,4.98389,4.56236,13.312597666666665,7.128805,3.711795,3.56,5.11075,5.2733,5.5125,2.717995,4.17321,3.98269,2.6365766666666666,4.767165,3.14917,2.6223233333333336,3.99623,2.3648433333333334,1.0909342857142856,4.139780833333334,2.9653333333333336,3.65181,0.7685142857142857,2.694645,3.80958,4.11262,4.17032,6.5207,2.32314,2.07366,3.906025,4.38806,2.297785,2.892901666666667,1.85817,2.0830106666666666,0.875714,5.68435,4.909185,4.28127,3.860315,3.2110833333333333,4.35318,5.24035,3.2128533333333333,1.5938233333333331,0.5629213333333334,15.214518333333334,0.5062145454545455,0.5062145454545455,0.5062145454545455,3.0988066666666665,4.188433333333333,0.5062145454545455,7.808161666666667,4.705826666666667,0.6980120000000001,0.6980120000000001,3.4942333333333333,3.35027,2.787105,4.588585,4.090365,4.1379185,2.15333225,4.787606666666666,4.31307,3.6183352976190477,4.6257,2.986541,2.451605,2.238675,2.77765,1.46182,3.3510833333333334,3.04269,2.53085,2.348985,1.89343,1.80415,1.536715,2.42596,1.189911111111111,2.7351,0.664885,5.3109,1.6251975,0.7424833333333334,2.804025,8.297768333333334,2.577685,2.2262779999999998,2.98869,7.64131,2.688595,4.68067,3.642885,6.9402,3.937185,4.02114,4.25094,5.4134,3.0803366666666663,4.5355083333333335,1.311402857142857,4.21486,2.305563333333333,2.4736233333333333,2.189185,2.578155,2.21916,1.21188125,5.4265,0.9468363636363637,4.988485,5.24875,5.21785,5.5507,4.196933333333333,2.6448,1.856548,3.0545633333333337,3.1188466666666668,2.385935,3.6866333333333334,2.73805,4.85838,1.8464639999999999,40.80170944444444,4.788425,2.25454,2.959156666666667,3.238863333333333,1.4458533333333332,5.607755000000001,4.42235,2.7860266666666664,2.756543333333333,2.0604999999999998,1.5023975,5.48175,0.8555214285714285,5.6027314285714285,1.4050200000000002,3.571066666666667,3.5714,3.0046466666666665,1.43495,5.474740000000001,1.702588,1.702588,2.6136233333333334,2.7909595833333336,3.5972000000000004,3.5041666666666664,1.3163133333333332,3.09285,2.65809,6.5789225,3.1056500000000002,3.6722533333333334,0.9864783333333333,1.35043,3.26955,0.862396,6.049390000000001,3.6268666666666665,2.91893,3.9362333333333335,2.91102,2.73053,3.3308066666666662,1.6208233333333333,2.417835,2.75008,3.3459,2.66682,3.7543333333333333,2.66903,0.5832106666666667,9.54683314102564,2.7252333333333336,5.3501,4.99237,2.8121899999999997,2.824756666666667,1.278825,1.8374633333333332,2.112065,1.278825,3.06506,0.43861625,0.43861625,0.9197425,0.9197425,0.8086425,0.8086425,2.40643,2.916445,3.104985,1.31522,1.638695,3.732085,2.502965,5.5463,4.57407,2.29194,4.448795,2.314425,4.7049450427350425,1.2860275,1.2860275,2.552855,1.880004,3.986045,1.944475,4.29059,1.4000416666666666,2.3221875,0.597126923076923,1.3915028571428572,2.21096,2.4622525,2.380765,1.7602925,4.89986,4.727705,2.910963333333333,3.122246666666667,1.6760766666666667,0.7513916666666667,2.0990866666666665,3.930225,2.3058333333333336,4.86288,5.31285,5.4323,3.91237,7.5840499999999995,1.80175,6.5738,1.992545,4.500925,4.609575,6.08065,2.56615,2.280575,1.671515,1.961232,1.961232,2.4837925,2.4837925,4.54026,5.5867,0.89085,4.38146,4.035785,3.31661,2.9798066666666667,1.4746975,2.7123000000000004,4.037905,4.0671,1.90791,6.5496,5.3801,1.8312433333333333,1.24585,3.68242,4.534786666666666,3.89175,3.30502,3.769215,0.69931,2.7236466666666668,3.31833,2.674493333333333,2.970753333333333,1.9975566666666669,3.419366666666667,1.4511571428571428,1.4511571428571428,1.4511571428571428,2.86213,3.20325,2.2047866666666667,3.5996093095238093,2.46081,1.322404285714286,3.4138,3.3361666666666667,1.3170442857142857,3.153116666666667,2.7624166666666667,1.4032985714285715,3.3847666666666663,2.911823333333333,2.8388033333333333,3.036706666666667,3.0122400000000003,2.07274,3.4476333333333335,5.35982,4.616875,0.9566169999999999,1.682696,0.704948,3.5788666666666664,9.04974,3.2921666666666667,3.03375,2.810313333333333,3.969498333333333,1.741955,8.152388333333334,7.2889,2.9954633333333334,2.774584857142857,4.63756,5.5972,1.587496,1.499262,1.236922,1.934525,11.732696666666666,2.881463333333333,3.14691,3.24304,3.696025,2.3269266666666666,1.22284375,4.57385,1.2098366666666667,3.5388315384615385,3.43459,3.3575,3.1952166666666666,3.809705,5.4675,1.2688983333333332,2.0546725,2.462094,2.462094,3.668995,6.04565,7.074565,4.284715,3.47095,4.84401,1.7299075,2.2199708333333334,4.732915,4.44547,3.66325,1.5688216666666666,2.881206666666667,3.38941,4.140355,2.3622125,3.90904,3.361885,3.09943,3.88677,4.60459,4.38689,5.52215,3.381066666666667,2.469586666666667,4.245325,2.798265,3.848485,1.96251,2.846335,2.54793,4.90812,2.499835,3.18827125,1.657505,3.367505,3.99513,2.09005,1.956615,0.8452316666666667,0.8452316666666667,1.668215,4.016019696969697,4.32012,2.7917799999999997,4.82897,3.338925833333333,2.4034245714285714,1.0824875,2.7031,1.6562575,4.24988,3.9593,0.94554125,1.7142225,3.960435,2.8295725000000003,1.530575,1.5635733333333333,4.889661428571429,1.4037766666666667,2.571395,3.07327,2.67973,2.43456,3.046288,2.07755,0.97413,2.823625,2.871175,3.23353,1.4263166666666667,1.5436633333333332,1.75115,4.857575,2.04372,4.335455,4.355465,4.466855,5.71645,6.1243,4.04752,5.6301950000000005,4.374322857142857,0.7812027272727273,2.853095,4.953585,4.2843,0.45848636363636364,0.953744,2.639845,4.265945,5.0379,5.10095,3.285662857142857,2.79409,5.256,1.8883079999999999,2.47205,4.62369,3.9675400000000005,4.250115,3.99159,4.254455,5.0868,2.847565,5.5987849999999995,0.9758279999999999,4.03073,2.76526,4.4627,4.42492,4.240835,2.09442,2.610755,2.75247,2.1948666666666665,5.00585,3.626145,1.4527428571428571,3.15571,4.174435,1.446936,5.6747700000000005,1.8447099999999998,2.3748366666666665,13.806806163067925,3.4035666666666664,1.4442466666666667,1.5045650000000002,2.046933333333333,5.744845,1.6110900000000001,6.0216631666666665,0.7329353846153845,3.3790666666666667,3.841615,7.49757,2.3344533333333333,3.02523,3.02523,5.4054,4.7653,3.71029,3.112375,5.13765,5.43025,2.274325,3.2954000000000003,5.02115,1.2063833333333334,3.0812166666666667,4.792775,4.24333,3.755535,2.501656666666667,3.90655,4.0418,6.701716666666666,6.0254025,0.8788259999999999,4.01232,3.18148,3.3615999999999997,4.153905,4.078115,3.738205,1.683608,4.331835,2.516605,3.347875,4.03832,4.46555,4.68133,1.0312314285714286,2.913676666666667,8.871862666666667,1.5874183333333332,2.1049567532467535,2.157915,3.659085,3.41166,3.10895,0.6949145454545455,2.29301,1.6346925,2.236365,4.445615,5.365260666666666,2.937604,9.13454,2.5683833333333332,2.8416633333333334,1.12198,4.846475,5.355,2.217705,5.600300000000001,3.500265,3.082385,5.5639,4.657945,5.0347,2.06161,1.3450575,1.3450575,2.707425,3.76131,4.849265,1.537805,5.6301000000000005,1.51374,4.373735,1.5319,8.620859166666667,4.115825,2.597555,5.2478,5.2191,3.8088,1.1144616666666667,2.1168575,3.5664,3.1728,3.5691666666666664,3.5493666666666663,3.5756,2.735935,3.13863,3.04134,1.5763675,2.41163,1.82083,2.7504666666666666,1.92751,5.217579166666667,3.2986166666666663,1.6667133333333333,3.2331466666666664,3.204145,4.459555,5.8631,6.01435,2.906675,3.401835,3.598795,2.888425,2.581255,1.18611,0.906786,6.4809,4.140885,3.05273,5.37595,5.99325,2.74808,3.407166666666667,6.4446,2.34987,0.5930722222222222,5.67985,4.18318,4.066355,3.4050999999999996,1.3580057142857143,5.42735,1.261164,5.1801,0.98192625,1.6048099999999998,3.2801666666666667,2.3802333333333334,2.4445455714285713,4.19503,5.5816,5.281071666666667,5.281071666666667,4.2446025,4.2446025,4.80244,2.8386566666666666,4.587085,1.0777375,5.79415,4.61813,3.6397333333333335,4.593625,3.61311,4.93006,1.8810825,4.695165,3.120754,3.31871,4.05204,2.57401,4.44437,5.28265,3.366185,3.32528,5.0543,3.595695,4.533275,3.20105,3.2697966666666667,5.89455,3.891835,2.7685099999999996,6.396369999999999,1.4926533333333334,2.191665,4.400025,4.536555,5.78625,4.25389,1.9344925000000002,1.9344925000000002,13.939624539682539,5.03612,5.18245,4.124375,3.060116153846154,4.813555,4.632655,2.9552266666666664,3.4221333333333335,3.803355,4.076966666666666,3.8210333333333337,5.185,2.0313,8.347343333333333,2.38255,2.2432975,5.8243,2.483345,5.4111,4.39391,4.71382,0.8585311111111111,3.42859,4.20538,1.099364,3.06319,4.031301666666667,1.45534,2.440636666666667,3.05789,2.5769266666666666,2.943326666666667,3.212203333333333,2.3577666666666666,0.5926342857142857,3.3368333333333333,2.8035666666666668,2.76594,3.1809733333333337,1.87738,3.03209,6.94073,4.271975,2.6152466666666667,2.052426666666667,2.5699133333333335,3.403065,2.567,3.581613,19.1970275,5.4277,3.3854130000000002,5.92755,3.75482,5.408603333333334,1.5855833333333333,5.84475,1.6022666666666667,4.472025,3.68619,5.23735,4.942945,1.0081030526315788,4.986115,2.953275,5.25975,3.03336,4.37186,5.3912,2.753115,2.106106666666667,1.50239,2.2853925,4.259065,4.696,2.167725,1.46903,3.09441,4.293025,3.3486666666666665,6.15765,2.7217,4.675515,4.03455,3.43029,4.87938,3.78319,4.371945,4.758245,4.2248,2.9665033333333333,2.9665033333333333,5.091424444444445,2.1071133333333334,2.8614599999999997,3.820605,1.699328,7.15176,3.60608,4.99629,4.3106,4.32327,1.9791340000000002,4.527355,5.25615,4.36516,2.109685,3.813285,3.181445,1.4706775,1.964695,1.15785,0.6647833333333334,1.78957,1.16658,4.384905,1.0453000000000001,2.8117633333333334,1.5722533333333333,2.0859575,1.0655316666666665,1.9987175,2.3967975,1.6311825,3.4601666666666664,2.4842366666666664,4.142816666666667,1.6026733333333334,2.522475,3.3769666666666667,3.14087,2.37993,4.2790725,4.42367,5.308324166666667,21.401107,2.855183333333333,2.1901125,0.63051,0.636385,4.148210833333334,1.929692,4.132025,4.70043,7.7199005,4.18415,3.790055,3.729275,3.4255333333333335,2.9375,3.275653333333333,3.0734033333333333,3.02632,5.9477,4.230475,0.9726950000000001,1.184755,5.2506,3.3331033333333333,2.7131933333333333,2.201956666666667,3.01611,6.1469,4.686555,2.934,1.13605,3.61935,5.27775,9.234016666666665,5.841714583333333,4.90722,4.54284,5.4083,4.459885,4.329075,4.61067,4.564875,5.2127,1.973705,6.2019,1.5815714285714286,5.31475,0.7183133333333332,4.707215,5.40995,5.70475,6.1108,4.67551,5.94465,5.6487,6.0929424999999995,2.0177666666666667,1.7066714285714286,5.6747,3.65374,6.843368333333334,5.06955,5.290470833333334,4.97202,6.11915,1.463342857142857,4.48942,5.80615,4.126566666666666,4.942745,5.61935,2.599025,4.06991,4.88974,4.851365,0.956925,1.7233333333333334,1.390244,4.98934,3.88909,4.7633,2.8882333333333334,3.2428133333333338,1.73763,2.055963333333333,0.3549716666666667,3.5766333333333336,1.7044339999999998,2.161688333333333,3.3510333333333335,2.2820133333333334,3.3222733333333334,2.4879525,2.7405,10.49126,3.6131666666666664,1.8175730769230771,4.64576,0.8625781818181818,4.6678774999999995,1.0825125,2.074475,2.0157475,1.05740625,5.496476333333333,1.1674470833333332,1.1674470833333332,1.1674470833333332,2.9826533333333334,1.705886,5.1245,2.89055,2.1588025,1.483065,2.0289075,1.5263375,1.8335139999999999,5.8208075,0.8938255555555555,4.39222,4.140455,3.3958333333333335,1.0645900000000001,2.158397,2.13283,2.13283,1.59947,3.682265,4.470035,4.88369,5.5062,4.509685,5.3363,2.9370166666666666,2.06634,3.846915,5.2491,3.68685,4.383945,1.03905125,3.9213497916666666,5.1731,1.887345,4.538745,2.9479133333333336,4.36199,5.43385,2.98187,5.5659,6.1861,4.76534,4.913045,4.089705,3.102375,7.69625,4.079785,6.992276666666666,3.44208,3.04001,4.894105,2.644953333333333,2.955945,5.1498,2.89383,3.01053,3.77163,1.3735833333333334,11.142902500000002,4.66757,3.14554,16.296252222222222,4.677285,1.7733233333333331,3.0850500000000003,2.762475,3.388755,4.69067,2.7672420833333335,3.6734,4.576925,2.799355,3.891285,6.13943,1.28645,2.4572475,4.20567,4.894635,5.17495,2.016715,0.6396806666666667,4.872765,4.084085,2.1092925,1.2138416666666667,4.785195,4.979395,1.1014255555555554,3.50428,13.811063333333333,1.3642152857142857,0.4142742857142857,3.864133333333333,4.377955,1.09691,4.799195,3.86936,5.99519,1.353815,4.424375,4.23509,3.164585,4.685375,4.95995,6.0845,8.128045,3.534055,4.0241,3.52318,16.818630625,3.35602,2.6444,1.4441675,2.663425,1.296215,2.37723125,1.7523625,1.9353775,1.877325,2.1780875,2.520475,2.4571125,2.4643625,6.05445,3.744885,4.434645,3.703355,6.09122,3.0354799999999997,4.984365,3.411633333333333,1.1422225,3.46772,1.9555525,2.440798666666667,5.3262,4.87287,5.01845,5.4545,2.5812133333333334,3.140773333333333,2.36687,3.60362,3.55092,2.250395,1.75186,3.8121666666666667,5.3172,4.94074,2.2324966666666666,11.84296,0.6627506666666666,2.6542,5.56405,2.6147479999999996,1.147696,2.5415,7.504701666666667,7.127083333333333,4.98311,4.06572,4.04582,2.0889025,2.66899,2.995608,2.07224,4.3164283333333335,3.556545,4.29699,0.5720366666666667,5.82395,3.2963566666666666,3.559533333333333,3.610466666666667,6.28095,9.19704025,4.279453999999999,1.15542625,2.2544975,2.16233,3.743805,2.551895,4.03975,5.05305,3.4835,2.868126666666667,4.11306,3.931235,3.54727,3.6153333333333335,2.842373333333333,3.873615,5.617,5.79935,3.3281166666666664,2.0951525,2.18044,14.492618388694638,0.5587636363636364,1.4774375,1.4774375,2.01064,4.20817,4.04729,4.708435,3.59011,3.493615,4.181835,2.814416666666667,4.018925,2.814416666666667,3.218835,1.7984600000000002,1.4095133333333332,5.6507,2.33636,4.48462,3.012995,3.088625,6.560003333333334,1.9806366666666666,5.15645,5.41555,3.44915,3.896295,5.05055,1.9782060000000001,4.888785,3.5017750000000003,6.774635,5.765211666666666,2.374735,4.178735,5.3451,2.026715,3.1737699999999998,3.7721666666666667,0.5711378571428571,3.2643166666666663,9.611836666666667,4.68426,5.0703,5.28855,3.3155633333333334,3.120315,1.33282,4.33069,5.34835,3.303335,2.55455,5.00405,4.131755,4.185375,4.345755,2.29192,2.29192,3.85133,3.10277,2.8576918181818183,1.948365,4.584835,3.84041,1.384982857142857,3.853625,4.66263,2.9592733333333334,6.917367499999999,7.25014,1.48774,4.134015,4.975375,6.823493,0.894514,7.396556666666667,3.9124749999999997,0.6812536363636363,5.1206,5.32075,5.3057,4.86202,4.533835,4.62797,4.732425,4.05178,4.055005,4.884965,4.5855,5.07565,5.02805,3.62188,3.52013,4.372545,3.035815,0.899699,4.363165,2.69095,1.81675,4.69724,5.31715,5.49065,1.024172857142857,5.05224,3.14035,2.4555666666666665,2.2350325,1.2382966666666666,11.536245833333332,3.3580666666666663,3.5525333333333333,3.27467,3.671010952380952,5.977969999999999,6.381138333333334,2.478396666666667,2.2397966666666664,2.20974,2.20974,2.20974,1.4216233333333335,3.917985,3.8671,3.533415,4.557425,7.797385,4.34846,1.057994,2.2629,3.58653,2.90652,1.8463640000000001,4.412225,2.774365,1.4742333333333333,3.002993333333333,7.023042857142857,7.8102675,4.475575,3.84775,3.1711899999999997,5.35775,4.577225,5.222213333333333,1.94416,1.94416,4.96664,3.685555,2.6649853333333335,2.6649853333333335,3.7963,1.0583042857142857,4.9407,3.73225,4.03114,4.43783,5.0585,3.3924333333333334,1.0263271428571428,4.28671,5.4782,4.57811,4.79554,5.20295,5.09155,4.60554,1.8609175,1.719375,3.370785,4.18745,3.069845,4.09962,2.132285,3.970495,5.3269,2.762955,5.2124,8.086034999999999,2.51856,3.0878633333333334,4.106109523809524,4.7033725,1.86411,2.0724683333333336,1.0723483333333335,2.0724683333333336,1.9955566666666666,1.9955566666666666,1.47242,5.14735,3.07295,3.53032,2.230395,3.67306,1.5347883333333332,5.68825,2.787025,1.5729,2.66227,5.42305,4.334535,6.093356,5.017,1.425388,0.7822433333333333,3.46529,6.11858,2.3360766666666666,3.479885,3.59012,3.59012,2.334855,3.29544,3.03579,1.4612835714285715,3.0956733333333335,3.857405,3.58306,4.2432,3.8676525,1.50522,3.48599,5.4413,4.888525,5.4381,4.12393,1.7770475,2.11887,1.2747966666666668,2.516975,3.42038,2.185895,4.030675,3.2522366666666667,2.9664,4.03648,5.13605,3.30735,1.011112,1.8137999999999999,1.198675,1.1248222222222222,4.99935,4.17604,1.089676,0.19598217391304348,0.19598217391304348,0.19598217391304348,3.33236,5.657736666666667,4.568225,4.965785,5.4721,3.60528,5.0744,3.99553,2.5949,3.52463,1.6787775,4.974945,4.428855,3.618235,4.296265,4.6065,0.9117999999999999,0.9117999999999999,0.9117999999999999,0.9117999999999999,0.9142020000000001,0.9142020000000001,4.04618,4.273695,3.63236,2.8217,2.400165,4.31417,3.770065,5.53355,4.37997,2.9843166666666665,2.359436666666667,9.2539,1.450596,1.450596,4.773925,5.40135,3.4041333333333337,0.43861625,0.43861625,0.43861625,0.43861625,0.43861625,0.43861625,4.791696666666667,5.24535,3.78428,4.546625,2.653521666666667,2.653521666666667,2.61319,3.1746239999999997,2.7067533333333333,3.68844,4.21211,7.288231333333334,1.378484,5.17775,3.738885,4.494395,10.930875,3.1566799999999997,3.023795,0.8943157142857142,3.740315,4.8766,3.77714,1.312575,2.9073499999999997,4.718495,5.5804,2.686775,4.848234027777778,1.3129777777777778,2.0180266666666666,4.768135,4.794395,3.708633,2.805903333333333,2.6698733333333333,1.484255,8.24906,3.533533333333333,2.6080866666666664,2.876515,2.8496266666666665,4.643145,4.311345,2.69847,3.460566666666667,6.0177,1.5076633333333334,4.919565,4.99994,4.62306,3.862805,3.0664033333333336,4.31119,3.588885,3.848165,2.58737,4.369895,4.579675,2.9723100000000002,2.2389725,2.76946,2.5898833333333333,2.91051,0.7897872727272727,2.078255,7.925635,0.50187,3.14301,1.4014499999999999,2.3667233333333333,3.288626666666667,3.05715,1.292588888888889,1.6531120000000001,2.75859,2.086855,3.524845,2.17072,3.15955,1.5323766666666667,3.0249119999999996,1.9521775,1.0095314285714285,3.2174833333333335,2.1780825,2.3391733333333335,2.8476866666666667,3.4514666666666667,3.4896333333333334,3.2003466666666665,3.5128333333333335,2.8666199999999997,2.90659,2.7388333333333335,2.36862,1.6473566666666668,2.3916166666666667,2.9926666666666666,1.5874566666666665,3.032386666666667,3.6972480952380953,2.910323333333333,3.1447366666666667,2.961866666666667,3.8309333333333337,4.844491666666667,3.110666666666667,1.8884500000000002,1.8884500000000002,2.286465,1.1386925,2.611475,3.265791666666667,4.444670416666667,2.725975,1.94902,2.1917425,2.10274,3.42354,3.129865,3.763425,4.706295,1.7075025,2.467173333333333,3.65493,1.336878,1.336878,2.767775,0.6604307692307692,3.0979903846153842,2.16204,2.16204,3.0487800000000003,2.340196666666667,3.0114433333333337,2.597478333333333,2.3712675,6.425818333333334,3.7832125,3.7832125,3.98231,3.0246,2.26272,2.949785,2.53046,2.996545,5.1319824999999994,0.47716749999999997,0.630182,4.054725,2.536305,2.9834,6.899401666666666,3.837355,1.654158,4.68322,4.452605,4.43145,4.35488,5.25035,5.2352,14.152794,4.114225,1.6275166666666667,2.40095,3.51845,5.3501,4.2719,4.02785,4.720395,3.58141,5.7921,2.6375266666666666,3.88006,3.0149733333333333,2.31322,2.31322,3.803685,2.884645,3.002355,3.335505,2.33988,2.31546,2.2669425,1.7977275,1.97174,2.0154975,1.82362,4.117481,3.76488,2.603075,6.012,4.18353,2.29743,1.8942533333333333,3.346205,3.699385,3.49179,3.2354477083333335,3.253795,3.132515,4.05441,3.65974,3.63805,3.776905,3.385815,3.319465,0.8938516666666666,0.8938516666666666,0.8938516666666666,3.216395,2.455845,5.30245,5.01935,3.51823,7.8859874074074074,2.8402600000000002,0.41820384615384615,5.2062,0.7477210000000001,4.2965961904761905,1.923655,3.71023,1.81866,4.394365,5.696481666666667,5.07325,4.259495,2.7561166666666668,3.022653333333333,1.49664,2.4467166666666667,0.524098947368421,0.5270158823529412,2.9279833333333336,1.6906633333333334,1.97191,3.630975,3.659385,4.930875,2.7971233333333334,2.968615,3.4204,4.95547,1.980675,1.0611457142857144,2.28241,3.465148,1.4405883766233765,4.952095,3.55507,3.97226,2.7187866666666665,4.14314,3.1470833333333332,2.711953333333333,2.9971599999999996,2.3657075,2.9231033333333336,2.0031125,2.96069,2.419486666666667,5.795744,2.48975,1.9090433333333332,2.55076,5.162827333333333,3.222162,3.222162,2.3494966666666666,3.815945,2.207765,3.990125,2.926515,0.61048,4.594175,2.10254,11.953936666666667,6.96536,2.97932,3.099085,3.22493,5.24136,2.634775,3.86506,0.28535866666666665,2.2800175,3.9303000000000003,0.8834083333333332,3.99769,1.477042857142857,5.32015,3.2447,3.50731,3.714035,4.297845,2.12059,4.611435,3.74259,4.89872,6.58688,3.91365,3.0329433333333333,2.947713333333333,1.653098,1.931375,4.216575,4.76808,4.1378125,2.63792,4.23813,1.6149419999999999,3.635695,2.813765,4.750465,11.377286666666667,3.438365,8.731243333333333,4.450815,5.0662,1.0240577777777777,4.960566999999999,4.93324,2.4759033333333336,2.8907333333333334,3.7241,2.9444166666666667,2.3849933333333335,1.6896966666666666,1.8333133333333331,3.49749,1.885306,2.8305733333333336,4.929801333333334,2.9589533333333335,1.1601628571428573,1.1601628571428573,3.48558,3.5203379999999997,3.5203379999999997,3.4856,2.9920000000000004,3.2173243589743588,3.7502,3.16501,2.558263333333333,2.22611,2.2496133333333335,3.0424900000000004,2.2051575,2.679016666666667,1.563442,5.697392,10.668664666666666,0.6465715384615385,0.6465715384615385,0.6465715384615385,0.7743599475524476,0.7743599475524476,0.6465715384615385,3.659333333333333,2.8784533333333333,4.301173333333333,1.46058,1.6125325,3.1185080000000003,2.3345733333333336,2.9346366666666666,2.2422633333333333,3.1324199999999998,3.519933333333333,6.816085,2.94693,2.4384833333333336,3.6534999999999997,4.745515,3.01578,3.358033333333333,5.60199,2.293486666666667,3.3711333333333333,1.32533,1.32533,2.7257533333333335,0.5007215789473684,2.749416666666667,2.722376666666667,3.09595,3.387166666666667,2.2146,1.4682566666666668,2.67732,3.1595066666666667,2.304863333333333,4.554965,2.796997333333333,3.796995,2.762255,4.17009,0.55887,8.296701666666667,2.9638419999999996,2.9638419999999996,8.295653611111112,1.8269266666666668,2.71049,3.0878633333333334,4.864935,2.2499733333333336,2.1256633333333332,2.7762333333333333,1.3865275,3.32326,1.7677800000000001,2.8967585,1.3350925,0.25436909090909093,0.25436909090909093,5.27845,4.126595,4.406665,3.0242166666666663,3.716545,3.85104,1.2926466666666667,5.35975,3.699675,2.620925,1.74998,1.4139575,2.118925,3.0878633333333334,2.45105,2.102335,6.134525,5.3611,4.477475,4.488075,2.225925,0.6487575,7.79162,2.16533,1.48583,3.349525,4.44121,2.047315,1.7612166666666667,4.716985,4.48724,3.4918,3.349466666666667,4.713115,4.964655,3.8036666666666665,2.66086,2.66086,3.6844,4.910805,5.89335,6.841266666666667,3.0426366666666667,3.8801,1.30242,2.549775,4.217939333333334,3.72352,1.686346,4.04739,3.3232725,4.66158,2.07009,4.063875,5.0396,5.7997,4.893405,2.4565066666666664,2.4281900000000003,3.8499,1.9659000000000002,2.460545,3.12608,2.3624266666666665,0.796637,2.30147,2.7616566666666666,2.2384836666666668,5.03855,4.63616,4.707335,4.295145,4.160915,5.846405000000001,13.015445,5.56795,4.654895,4.366355,3.792155,4.7682,3.1570666666666667,3.2328806666666665,3.7261666666666664,1.27435,2.65413,2.695675,5.0383,5.89925,4.99536,3.3092066666666664,2.6668299999999996,2.3144933333333335,4.2352,4.2699875,3.4821333333333335,4.2699875,2.680676,2.300266666666667,2.427496666666667,2.29829,3.0556099999999997,1.7211533333333333,0.9417749999999999,1.57378,1.6692799999999999,2.5173200000000002,1.5034666666666665,1.2718433333333332,1.6769866666666668,2.8585766666666665,1.454218,3.276196666666667,1.2929166666666667,1.5929399999999998,3.769175,2.7115299999999998,2.657223333333333,2.8333999999999997,2.413673333333333,3.070685,2.161645,2.866733333333333,2.93221,2.471713333333333,3.0180833333333332,2.8951075,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,0.1437141935483871,4.83384,3.309525,0.9581857142857143,3.20237,2.450886666666667,3.0311566666666665,4.12714,2.585366666666667,4.3776,3.4829920000000003,1.593668,3.09259,1.6745333333333334,1.073955,0.9903549999999999,1.5093866666666667,0.8554183333333333,0.6787316666666667,1.31107,3.35245,1.680846,1.8255666666666668,2.091693333333333,2.642252777777778,1.20971,1.5654866666666667,1.5717400000000001,0.870785,1.1911383333333332,0.7018866666666667,0.873,3.09041,3.4568,3.68106,4.226375,4.57885,3.156226666666667,4.57805,3.7538666666666667,1.8793975,3.544585,1.89629,3.428235,2.2662400000000003,0.8797345454545454,4.264605,4.705765,2.04723,1.197335,2.767745,3.158325,3.682265,2.84456,2.44221,1.00368,2.26868,5.251950000000001,3.65024,2.248465,1.5177949999999998,3.529345,2.425695,0.7714990909090909,4.67802,4.066065,3.57649,2.380645,1.258178,4.81874,4.31311,2.4855199999999997,2.66217,2.3991233333333333,2.73661,2.6049966666666666,2.84117,3.2501200000000003,1.3155875,2.74565,2.451163333333333,5.2075,4.280345,3.6846,4.680605,15.886069181818183,4.6060275,4.8869940000000005,2.825345,4.30402,5.0867,1.672614,2.424435,2.6579833333333336,6.695005,3.715535,3.901035,5.834,2.6579833333333336,3.83009,2.045625,2.80357,2.704276666666667,2.8226533333333332,1.4497783333333334,4.224255,4.341705,2.617405,4.000725,2.4787733333333333,2.8114033333333333,3.515785,3.014265,5.6626,4.989775,2.60644,3.2927,2.446375,2.620836666666667,1.746086,1.746086,2.64669,2.6024499999999997,0.22435285714285716,5.7297530000000005,1.04223,4.616635,4.122865,0.5484383333333334,4.933605,8.194485,1.7507625,3.52954,3.72135,2.938973333333333,3.036095,2.245095,2.81603,3.308625,3.863245,3.241045,4.057066666666667,0.9921333333333333,11.875521666666668,3.05249,3.166765,3.92724,2.498925,3.7955,7.729581666666667,4.43388,4.27958,4.0518,4.50418,5.81304,1.58134,3.4533,4.95395,3.8646999999999996,1.8682839999999998,3.609795,3.51727,3.422655,3.69837,5.36055,4.55969,2.4727766666666664,3.530745,3.757745,5.50145,3.943215,2.3120366666666667,2.2297166666666666,2.641033333333333,2.8930066666666665,1.2110733333333334,3.2394933333333333,0.8174799999999999,3.3465000000000003,3.1131166666666665,2.6466066666666666,1.6814333333333333,4.61253,4.58235,4.047965,1.74544,4.98603,4.27267,0.7138757179487178,0.33250038461538456,4.43048,4.903405,0.9960525,0.33250038461538456,3.09097,0.7138757179487178,0.7138757179487178,0.33250038461538456,5.540776666666667,2.5302466666666668,2.5174933333333334,5.5275,4.068695,2.80165,0.7355011111111112,3.189215,3.639085,4.665375,5.33545,2.18898,0.7638323076923077,4.479067499999999,2.5950666666666664,1.5907360000000001,2.1002075,1.1216642857142858,2.680806666666667,2.3287833333333334,3.962845,5.416,3.12143,3.4044666666666665,3.074203333333333,2.542596666666667,2.86239,4.142435,1.5310075,1.9161575,3.856545,5.40435,2.228083888888889,5.21515,2.474605,3.9852,4.18171,3.716125,1.1951725,2.823435,5.6581,3.567995,3.48509,4.67792,5.84625,3.498525,5.10805,4.34325,3.20516,3.11696,8.11965,3.738555,4.7851475,2.19781,1.10943,2.9212633333333335,2.344495,2.146415,1.824785,4.801405,0.7371,3.653725,4.332465,1.7910433333333333,3.0826266666666666,5.12035,3.087175,2.794245,4.654655,5.4351,9.831074,2.9161366666666666,2.7282166666666665,1.632828,1.7890166666666667,1.16361,1.5236433333333332,3.2263966666666666,2.5101133333333334,3.12426,4.772520256410257,1.61507,2.4770166666666666,5.29625,5.9716,4.006945,3.28442,2.878955,2.487095,2.01095,1.99008,1.7221966666666668,2.570365,4.066795,3.896505,5.06235,5.1823,4.531555,5.965848333333334,3.39965,2.49494,6.485232916666666,4.60068,8.31563,4.9578475,4.9578475,5.618263333333333,1.5987099999999999,1.369675,2.7659933333333337,0.713983,4.60983,3.6793333333333336,3.4610374999999998,3.4610374999999998,1.7456,4.523555,4.48667,4.57736,4.37083,2.8601833333333335,2.491745,4.30409,3.1401833333333333,4.8718775,4.277185,0.7861554545454545,6.21735,5.3277,5.06565,5.6264,3.127755,5.7786,4.79152,0.8596538461538461,5.1984,7.901968333333333,3.40827,5.75005,5.8717,3.232125,2.605045,4.05907,6.28495,2.094075,5.70745,1.80671,4.34881,2.8216900000000003,2.2848525,0.9758279999999999,4.279055,5.7003,3.081465,4.087355,1.80175,4.250595,8.024698333333333,3.438585,3.975595,2.498215,2.59459,0.941019,4.78496,1.46573,3.5624008333333332,3.5624008333333332,4.07005,2.1640433333333333,3.4727333333333337,4.29854,2.2011125,3.13274,3.5539,3.1476400000000004,2.864215,3.77821,2.447635,1.7503525,3.8122333333333334,2.21393,2.9451133333333335,1.9595666666666667,3.12133,3.05917,1.3674157142857144,1.7174466666666666,0.4109716666666667,1.2708066666666666,0.4109716666666667,0.4109716666666667,1.7174466666666666,0.4109716666666667,3.470966666666667,3.1330919999999995,3.1330919999999995,3.273706666666667,5.6288,5.0981,4.56931,5.4366,5.35315,3.29163,4.64082,4.69168,2.131695,2.5646933333333335,2.9524166666666667,0.7761600000000001,5.6646,3.12494,3.236943333333333,5.78625,3.5889375,5.1139,3.39473,2.3713633333333335,2.78509,3.323125,2.46323,2.646993333333333,1.8601566666666667,5.26465,0.915528888888889,3.9269,1.1833500000000001,3.4949,2.7787133333333336,3.09834,4.339535,4.43757,4.702535,4.66545,3.90513,4.03612,4.667285,4.016315,2.7186,2.6279,3.6011666666666664,3.93053,5.28385,4.44138,3.263205,3.946385,3.362,3.06004,4.39319,5.1771,4.19942,68.19122140386003,2.8072891666666666,3.805855,16.854733,3.76883,3.0899933333333336,2.751796666666667,1.87267,2.51714,4.9823474999999995,3.0195233333333333,4.7486041666666665,6.701,3.07407,8.129823333333334,5.11575,2.58611,3.273125,3.717175,3.38216,1.842078,1.4067375,4.28981,2.836585,5.597813333333333,3.429005,2.47121,3.441135,3.043785,4.34842,3.0416,5.263765,4.36129,3.972395,3.174405,2.3507475,2.816585,4.897665,4.19458,4.302105,4.355433333333333,1.1012533333333334,2.80634,5.2918400000000005,3.60528,3.345665,3.44418,2.826655,4.594625,2.84416,3.50532,2.22142,4.20935,3.606205,2.555475,4.38389,9.015329999999999,3.0768633333333333,4.112295,6.05681,2.952615,2.549,3.90673125,1.9640133333333332,2.6961766666666667,3.0561679999999996,3.744525,3.23584,4.44451,3.780165,3.138365,4.0106,3.65562,4.021855,3.835535,3.40031,3.63526,3.134245,3.134245,6.577518333333333,1.746495,3.138945,3.47254,2.66451,5.38525,3.9991,3.19046,3.26804,4.23968,6.8009575,0.7570699999999999,4.17014,2.170995,2.8407633333333333,2.5922133333333335,5.34355,2.76121,2.004,1.2662125,2.029975606060606,3.98922,4.088005,3.9502,6.6016,4.59728,5.87005,2.350135,1.6559233333333332,4.891935,4.319465,3.1742333333333335,2.0608933333333335,1.3695933333333334,2.823676666666667,3.1966633333333334,1.48061,2.4730266666666667,2.1671657142857144,3.5806937362637363,2.82518,5.2546,3.355015,1.4513425,5.904,3.99693,4.984885,4.83686,5.05775,4.879065,1.8662233333333333,1.4715666666666667,0.5997642857142856,1.4991,3.37967,2.367685,3.4822266666666666,1.4048566666666666,2.4066,2.2908,3.259775,3.34709,3.72078,4.0093525,1.58765,1.3031,1.817405,1.9474525,1.402555,2.56795,7.325623416666667,4.696915,4.606,2.93236,7.381829999999999,4.78152,3.16739,2.872655,3.4512,2.568085,3.4777,2.166983333333333,6.69441,0.83636,3.07703,6.34885,3.85253,4.648095,5.17725,1.49428,3.1892833333333335,2.781703333333333,2.8215800000000004,1.805855,3.990035,8.09446,4.122085,4.456335,3.91633,4.12425,4.623015,0.8095433333333334,2.6485,5.3431,6.890093333333334,4.20151,5.5057,2.906935,3.632433333333333,2.8451166666666663,5.6384,4.988465,4.444849857142857,4.444849857142857,0.5979028571428572,3.8777666666666666,0.887952,0.541835,1.8395975,3.7481333333333335,4.78,6.421542857142858,3.9054333333333333,3.7802628571428576,4.09448619047619,3.06493,2.510076666666667,4.5422,3.0728108333333335,1.9192025,1.9192025,3.703915,2.904333333333333,2.6466433333333335,4.435575,3.3409999999999997,0.7451744444444445,3.4068,2.5218233333333333,3.1982966666666663,2.6960599999999997,2.5553,2.4922666666666666,3.2485766666666667,3.16474,0.89193,2.682513333333333,6.060772714285715,2.1693000000000002,8.018638333333334,1.558252,1.558252,3.5473425,3.13252,3.4016333333333333,3.2133633333333336,1.89805,1.3931557142857145,3.0556666666666668,3.3113733333333335,1.656325,1.5366,2.8305399999999996,2.8393599999999997,3.0328366666666664,1.907095,2.1454425,2.7417,2.065055,2.52672,3.32927,1.723745,3.4289,3.20473,6.856230999999999,4.846355,1.85309,4.387365,2.684385,2.121205,3.773355,2.8170033333333335,2.56287,7.5727475,0.7958,0.7239616666666667,5.2746,1.538574,1.538574,4.323425,2.4332075,5.13035,4.279945,1.33924,2.2668193333333333,2.8760666666666665,2.322972666666667,5.10215,2.55498,2.7850699999999997,2.247036666666667,1.5175142857142858,1.5175142857142858,1.9323966666666665,3.757015,3.7393666666666667,4.663745,3.6113999999999997,5.494,4.30602,7.08745,3.40751,2.440055,2.6829199999999997,2.59496,2.56584,0.6953977777777778,0.6953977777777778,0.6953977777777778,3.066375,4.44318,4.24866,0.9776875,0.9776875,5.4915,5.9803,7.05312,22.310690444444443,12.8499,8.53309,3.877555,6.18395,2.3077225,4.85368,2.527336666666667,3.3899333333333335,4.3434333333333335,5.3097460000000005,1.839665,1.91171,7.31708,2.2839400000000003,2.2839400000000003,6.10745,3.67765,4.497665,1.79661,5.131848333333334,4.889965,2.18243,5.86715,4.0565,1.0642766666666665,6.35145,9.16931,1.0642766666666665,1.79661,1.9888566666666667,0.8765499999999999,0.8765499999999999,1.940524,2.2166266666666665,1.940524,3.77283,6.09205,5.28285,7.22521,1.79661,11.909910666666667,6.80065,4.69064,2.3077225,3.083115,4.889755,7.99541,2.971173333333333,3.66799,4.96427,3.48455,5.42775,6.7935,5.18415,5.4546,3.904945,2.70412,5.49285,3.375165,4.8124,4.013,0.7724275,1.5569419999999998,3.128405,5.8099,4.89871,2.9589533333333335,2.10899,4.6732,4.82956,5.74045,5.43385,5.2581,4.11883,3.01749,3.93314,3.635665,1.9807675,4.7366825,1.94109,2.52523,3.80767,2.05492,3.735965,4.39096,3.5229,3.4622416666666664,2.95209,6.740715000000001,0.9984422222222222,3.46214,3.823245,1.4409285714285713,5.8021720000000006,1.8167833333333334,1.6466166666666666,2.7162666666666664,3.047711,2.9957666666666665,2.8326433333333334,2.1914925,0.7295336363636363,2.49541,2.48182,4.02879,0.7657946153846154,7.572166666666667,1.7628166666666667,1.093054,4.153966666666666,1.093054,3.746765,0.9131,4.31431,3.2628766666666666,1.69004,4.2627749999999995,4.10599,4.10599,5.18545,2.696775,3.0295050000000003,2.8226600000000004,1.87738,3.749335,3.365825,1.8556333333333335,0.8232816666666666,7.696481282051282,2.7073,3.48424,4.20318,7.05942,2.38498,3.8223,3.61166,2.99379,3.72504,5.68615,6.42352,4.2778,5.1704,5.29975,2.93564,4.537715,4.363445,4.66165,1.1680444444444444,0.507625,3.111345,3.5173,2.80076,5.6733,3.65367,4.441855,5.2042,4.9553,3.994925,4.369245,1.19604,2.96706,9.913575,2.23277,1.9314933333333333,3.9659257142857145,13.562969246031747,1.4459625,4.971505,5.9088,4.79306,3.2151,2.5763133333333332,3.1211233333333332,4.44258,1.1058816666666667,3.7770333333333332,3.777335,0.46045368421052635,2.2141699999999997,5.0996,4.18363,2.68141,4.086765,2.662875,5.0285383333333336,1.3747066666666665,0.6428472727272727,3.653831666666667,1.2219342857142856,1.08230375,1.08230375,1.08230375,1.08230375,1.4421249999999999,2.7504733333333333,1.9628933333333334,2.8183466666666668,5.1656,3.6020333333333334,5.16,3.35896,4.180235,3.475295,3.756385,1.35039,7.049725,2.1117,5.684,5.43487,4.987075,5.0124125,3.4736666666666665,2.57146,2.6691833333333332,4.032125,1.21371,6.084751666666667,2.4628166666666664,4.95332,3.191433333333333,2.6796333333333333,3.596985,3.76125,3.203105,2.4486233333333334,2.4769900000000002,1.41809,0.4372677777777778,4.94174,3.333485,3.95204,3.381905,4.072715,6.1758,4.4396,0.5183107692307692,3.464676,7.299269333333333,1.8277533333333331,2.00684,5.551511666666666,4.500665,2.8038900000000004,5.5587,5.35365,4.25428,4.99306,4.10581,5.21475,5.2795,5.0522,3.324515,5.3256915,1.517122,1.6952833333333333,4.420685,3.729015,4.79003,3.081255,5.21375,4.84784,3.641395,3.19438,16.33516575672455,1.348210989834136,1.1771725,1.9475924999999998,0.506376875,0.526286,1.4891625,0.34446764705882355,1.2710620000000001,3.030606666666667,1.6816600000000002,0.9516749999999999,0.8982741666666667,0.39809916666666667,0.8982741666666667,0.8982741666666667,0.39809916666666667,0.8541000000000001,0.6028542857142857,2.742685,3.1842566666666667,3.98995,5.315,2.7874933333333334,2.662,4.36772,4.484275,5.74105,3.639245,4.547845,0.7180785714285715,2.336431333333333,8.373950833333334,4.953455,6.886246666666667,2.57905,3.851695,2.175425,5.33945,5.36995,2.956315,3.907835,3.551505,0.9579383333333333,4.887365,5.3445,1.135262,1.403696,1.6253866666666665,2.2609233333333334,2.5346066666666665,4.441265,4.87796,2.280285,2.280285,3.618911666666667,5.93834,2.0840466666666666,0.6283154545454545,0.86344,2.4356766666666667,3.6943,1.0097642857142857,1.0097642857142857,1.0097642857142857,0.34421461538461534,1.0909342857142856,3.1633,6.23075,3.9085,4.479395833333333,5.33755,1.11517,3.5725,3.408666666666667,3.9123,5.75175,2.9193166666666666,7.6959,5.2731,1.2304444444444445,3.9486000000000003,1.889872,2.409285,2.2430666666666665,7.03038,2.7688566666666667,4.589635,2.0745725,4.118615,4.345095,4.63503,0.43554833333333337,3.1642799999999998,1.2923166666666666,2.5846899999999997,3.9118613333333334,2.027406666666667,2.6886033333333335,2.196076666666667,2.506693333333333,2.552916666666667,2.7515699999999996,2.694713333333333,3.1259599999999996,1.3300779999999999,2.1281333333333334,2.3782866666666664,3.0975966666666666,2.7496899999999997,2.08589,2.122403333333333,2.17322,1.84744,3.11319,2.2630833333333333,2.5014,2.0757233333333334,2.288656666666667,2.51221,0.80739,0.80739,0.80739,2.5075533333333335,2.35099,3.0325,3.10365,2.6562666666666668,1.6309833333333332,4.0651,3.530265,1.3464116666666666,2.58126,2.6436733333333335,3.3241533333333333,1.6798714285714287,6.976285,4.801065,3.203875,3.706865,2.8639,1.6885,0.5475514285714286,3.536715,3.54914,3.3241533333333333,4.75388,4.224165,5.78815,2.96069,4.17987,4.043745,0.8802530000000001,2.964745,3.26674,4.801356666666667,4.70025,3.30598,2.93772,2.64547,2.30598,2.538603333333333,0.6193516666666666,5.327312500000001,2.4166875,4.43856,2.846296666666667,3.8557083333333333,3.114716666666667,2.2790133333333333,2.7916323333333333,2.7916323333333333,2.3379066666666666,2.2285533333333336,2.632,1.9685566666666665,4.24305,1.434794,2.684405,3.542705,4.19399,3.824965,5.21835,5.06955,2.514725,2.049715,3.166695,2.955615,4.078585,5.46735,3.34264,0.9234614285714285,0.9234614285714285,4.33002,3.7842709999999995,0.8683859999999999,4.375315,0.8683859999999999,4.08616,4.741895,4.793035,3.937725,3.26362,6.159475,4.082540833333334,6.0476,0.9228714285714286,0.9228714285714286,2.20964,4.774906666666666,1.5350566666666667,3.23985,4.10585,1.0999471428571428,4.664865,4.434985,5.440325,5.440325,1.2187183333333333,4.37512,5.425,5.27325,6.2443,1.98075,1.98075,6.98595,1.0499727272727273,7.12985,1.91196,6.158695,2.57486,2.636956666666667,3.882915,1.778708,2.0411033333333335,2.7746833333333334,2.889893333333333,2.871542857142857,6.8680710000000005,1.9594619999999998,5.53035,3.2551633333333334,2.9351766666666665,1.82478,2.187315,2.91447,3.60627,3.184515,2.644915,2.07666,2.29715,2.738785,1.049398,3.50946,1.98073,3.107355,2.0726180000000003,2.0726180000000003,2.909765,1.8800133333333333,3.66483,3.30618,5.25125,7.537216666666667,4.563625,3.342605,6.426439500000001,2.3871100000000003,3.273305555555555,2.189693333333333,1.5523285714285715,1.71081,4.566655,1.6389883333333335,0.486388125,0.635725,4.57441,4.40766,3.14622,1.0353611111111112,3.28177,2.83165,4.929365,2.1299,1.87281,1.234588888888889,5.22995,2.62465,4.50324,0.692731,4.527330833333333,4.788035,4.342495,4.23131,3.286415,3.58866,3.1919466666666665,5.35845,3.493265,2.3763733333333334,2.676816666666667,6.1383383333333335,6.500055,0.724155,4.21869,4.318155,5.45075,3.9972999999999996,3.5131666666666668,2.98495,3.2878833333333333,3.6481666666666666,6.257965,2.8393599999999997,2.567243,3.904445,3.628365,2.17691,2.628825,8.129693333333334,4.99996,1.9041166666666667,5.17845,4.38477,1.7897760000000003,3.79779,1.4774,1.6328142857142858,4.41865,4.009495,5.77245,3.05687,3.899645,4.48578,5.7856,4.36406,4.19947,3.71494,4.56096,4.25644,4.192270000000001,1.100799846153846,1.100799846153846,8.58715,0.85408,2.0745498412698415,0.85408,0.7066316666666667,0.33168555555555557,2.781181507936508,2.27165,0.5812142857142858,2.0745498412698415,1.482575,3.138755,2.1999672222222224,3.606885,5.1065,8.051318333333334,1.85314,2.054805,2.11096,5.14985,5.7582,1.68931,1.605855,0.8875725,2.4934275,4.183765,2.63131,4.45817,6.150892499999999,0.5145988888888888,3.735215,0.808124,3.2202533333333334,2.614325,4.4016,1.344455,4.17424,4.61281,4.507595,3.496075,4.66202,6.177155,1.91409,3.839505,0.7684807692307692,3.34869,3.15963,1.18766,2.941926666666667,2.339773333333333,2.51689,5.04075,9.30796,3.789820303030303,3.56386,3.33447,8.00535,5.936330833333334,3.4591,3.987595,3.26866,5.89445,5.84925,5.9489,5.7671,4.50102,6.2367,2.42272,1.421835,1.9794166666666666,2.53052,3.97244,2.2460366666666665,0.22002702702702703,0.22002702702702703,0.22002702702702703,30.474622523809526,0.22002702702702703,2.7662020270270267,0.22002702702702703,0.22002702702702703,0.22002702702702703,3.416207027027027,3.942685,0.22002702702702703,0.22002702702702703,0.22002702702702703,0.22002702702702703,0.22002702702702703,3.372205,4.69388,3.64777,0.33784871794871796,0.33784871794871796,4.335863333333333,4.251042166666666,4.069100833333333,3.3171539444444447,4.208646666666667,8.024233333333333,11.114641244366744,6.437711333333333,8.023294666666667,6.871975535714285,2.7257533333333335,6.498674761904761,4.315036666666667,4.583059775641026,0.33784871794871796,8.092887333333334,6.662061428571429,6.829615,2.69365,9.404325035714285,15.071466845238096,19.120090064102563,56.36126718741553,121.6570413204769,1.32533,3.3711333333333333,3.029275,3.8079717516087515,0.33784871794871796,1.6845310256410257,8.249455416666667,15.084352702380952,20.991192777777776,49.12390169256474,13.353068535714286,2.3552,0.2837365517241379,0.2837365517241379,4.25213,2.5854166666666667,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,0.2837365517241379,7.61889,0.2837365517241379,0.2837365517241379,0.2837365517241379,2.83352,2.631796666666667,4.738735,3.59075,3.8369633333333333,5.6673,2.304125,4.400365,4.810525,3.383615,1.5582,3.30773,1.0177066666666665,2.43229,2.537103333333333,5.621943333333332,6.242099999999999,2.8869966666666667,5.775515555555555,0.4696111111111111,0.49474999999999997,2.5903933333333335,2.782883333333333,3.02623,4.206355,3.4887333333333337,7.6585025,3.83805,3.0823,3.350535,3.8941,2.77655,3.08344,5.3767,3.319635,0.45840461538461535,0.8564009090909092,4.1959075,1.744025,3.451135,3.576195,4.25538,3.484995,2.578025,2.762905,0.5785680000000001,0.784964,4.157435,2.4470066666666668,4.48354,3.74719,4.977286666666666,2.71454,3.58224,5.28835,5.19205,3.008505,0.9813363636363637,2.7700600000000004,4.827835,2.13116,0.8787125,1.7370366666666666,3.51218,5.1108,1.838485,2.88103,4.10507,5.3391,2.32823,2.3975133333333334,2.36205,4.16677,2.457905,4.054855,0.6957685714285714,2.9179733333333338,3.137685,1.724635,5.6884049999999995,3.94339,4.248665,4.607295,2.68323,1.95716,0.68368,4.763,4.048705,3.95192,2.34527,5.0641,3.254545,2.76016,2.0449766666666664,1.3165342857142857,4.72733,1.924845,2.726705,8.92221,4.194545,5.6361,3.45185,0.97257,2.86656,1.3695199999999998,3.201415,6.4417,5.42505,5.17625,3.979795,5.4334,4.526435,1.84939,1.9148966666666667,5.504,2.991956666666667,3.4469999999999996,2.2917675,5.16075,4.52037,1.5181633333333335,3.3177266666666667,2.74056,2.89457,3.749555,9.4193,4.57501,1.7090175,4.55433,7.03142,4.3818225,4.0421,4.265535,4.54512,4.899515,8.68417,2.4969233333333336,2.82669,4.595115,4.429045,2.983145,3.12973,5.28335,3.735375,3.415135,4.588377333333333,18.617175333333336,2.84592,2.58041,3.2953666666666668,5.518998666666667,1.100815,4.66501,2.1193141666666664,4.74775,1.4907083333333333,4.214285,4.33095,4.114815,0.96070125,4.920585,4.568585,1.40851,5.198330303030303,4.790555,1.1840314285714286,3.38107,2.018085,2.438155,1.513015,4.026495,3.62483,4.70077,3.450065,3.0080666666666667,4.67027,7.770720000000001,4.559515,4.700655,5.1361,3.393266666666667,4.456275,5.20435,6.428917,0.91662,0.91662,4.29061,5.1711,2.30727,1.6419750000000002,7.482945000000001,4.145135,3.97683,4.42411,4.533545,4.559315,3.42002,3.798695,6.868925000000001,4.61041,4.71602,4.54675,1.5000714285714287,2.7484,4.78955,5.47235,3.5858,0.21187472222222223,1.450135,2.651925,2.5049033333333335,1.9531066666666668,1.01562,1.3305,1.3200125,2.8710566666666666,0.6260155555555555,1.480342857142857,1.9791625,3.731575,3.9059333333333335,2.510613333333333,3.16423,3.0926466666666665,2.83216,0.702858,1.00406625,2.9673,4.78244,3.947615,3.51806,4.670635,4.751145,4.954165,2.2570799999999998,4.27293,5.32605,4.573215,6.4517875,4.02028,0.4875311764705882,5.6115,4.30477,4.075135,5.02325,3.07806,1.9903020000000002,3.99905,4.180545,2.697005,5.020810833333334,4.406405,1.2892583333333334,5.020810833333334,3.909,6.3835675,3.56925,1.304588888888889,3.86317,5.4175,4.113465,2.5871166666666667,5.37455,1.37864,1.9596475,5.3099,3.363695,0.7467355555555556,4.91928,4.976585,4.104345,4.355405,3.229103333333333,3.2402033333333335,1.8254439999999998,2.309595,2.933845,4.363145,3.8510000000000004,2.37966,2.43868,2.1028303333333334,5.0805,1.7506285714285714,0.82994,7.42006,4.16813,1.4657019999999998,2.6287033333333336,2.431643333333333,3.7373333333333334,6.513218333333333,2.479152222222222,0.908768,2.77609,4.57263,2.6544233333333334,4.641595,5.7858,5.77695,4.87966,4.01789,5.65225,2.422686666666667,2.13522,1.6002066666666668,2.1373233333333332,1.864905,2.6565133333333333,2.1671400000000003,1.72513,2.727815,2.98336,3.887865,6.51485,5.6794,4.02909,4.52272,3.83176,4.817105,4.5475,0.9295625,2.7743599999999997,5.463,1.179182,0.7381533333333333,4.42461,3.225075,2.778043333333333,3.45393875,6.190189999999999,4.12374,1.08088,1.3461414285714286,0.6845,4.088796666666667,2.141626666666667,2.6853266666666666,1.1536828571428572,3.2673533333333338,2.851046666666667,5.68015,4.60455,4.39744,5.37465,4.46404,1.3000016666666667,3.40402,2.8454033333333335,3.599615,4.904065,4.15195,2.6782299999999997,3.367566666666667,3.03388,5.1079,4.08229,3.72499,2.54625,8.45125,10.817675000000001,4.480235,1.3057828571428571,5.0688,4.81089,5.40505,4.36753,4.24163,3.71744,3.25558,3.96711,3.4820769791666666,6.75523,3.62924,3.979215,4.36094,1.9483679999999999,5.2411,5.80155,4.80833,3.209625,2.98869,6.9245350000000006,0.7396075,3.021036666666667,2.62526,2.2538633333333333,5.09005,3.66396,1.4102783333333333,4.74986,3.3022899999999997,3.444105,4.95762,3.7455499999999997,6.315766999999999,3.1995966666666664,3.0885200000000004,3.3661,2.8769333333333336,4.16932,2.51662,2.2056,2.9619733333333333,3.866665,3.3561870833333334,1.8150675,1.4181625,3.9389014285714286,3.276261,0.9856388888888888,2.7327500000000002,2.7327500000000002,1.2274675,5.897,2.9057,3.09262,3.33125,3.54681,3.315315,3.292395,2.85421,2.9985,2.4563099999999998,0.5443633333333333,3.36585,5.769147500000001,2.85103,3.652635,3.087485,3.94318,4.12233,3.48002,3.1661,3.66448,3.791495,2.7557,4.13226,3.545785,2.4836066666666667,3.8607,3.643995,8.38174,3.859895,3.445725,3.22714,4.002785,3.90442,3.51294,2.157775,3.443135,2.5617375,3.320085,2.98787,3.124045,3.818465,1.7808866666666667,1.7808866666666667,2.192455,2.624375,3.369675,1.4648059999999998,2.437705,3.191495,1.943888,3.0268,1.4648059999999998,4.38086,2.92109,3.74715475,2.6416,3.239655,2.219115,3.53824,3.684225,4.9356,3.071435,4.189995,3.48127,4.145075,3.430385,2.96793,3.03663,3.29119,3.855645,2.5341333333333336,3.479815,4.684045,4.000035,3.6725,0.3723008695652174,3.65342,0.43426583333333335,3.63711,3.39838,2.97719,3.6249,3.754,5.876905000000001,3.163275,2.4469966666666667,2.2235333333333336,2.6426866666666666,0.757348,6.21985,2.820555,2.99697,4.99072,2.23195,2.64468,3.120845,3.12967,6.4903699999999995,4.29488,5.1134,4.00359,4.549215,4.218385,3.80932,1.5873666666666668,1.6506180000000001,4.157595,4.54239,5.9956025,2.3157133333333335,5.1786,1.61376,3.27997,3.58396,2.0224040476190472,3.82077,4.8541875,3.5993666666666666,4.013966666666667,3.4514,4.235155,4.97415,3.2456933333333335,4.33422,4.8549,5.27925,4.84085,4.432295,4.50717,3.31677,4.80398,2.675325,3.4576,3.4576,5.0282,2.60011,3.642595,2.929956666666667,4.721615,3.6984,3.29545,1.82476,2.2989966666666666,1.1405216666666667,1.1405216666666667,1.9075440000000001,3.5182333333333333,1.7265233333333334,2.8511933333333332,4.68888,5.0314645,3.3906333333333336,4.77012,5.41332,2.995685,3.82088,2.990686666666667,1.90768,4.05864,4.197705,6.75811,2.03194,5.67695,5.54325,3.500633333333333,3.66169,4.23494,6.049,2.6796433333333334,2.5925,4.23727,0.44999285714285714,4.646225,3.87,5.0962,4.089085,4.64893,1.6994859999999998,1.7799399999999999,3.74912,4.28697,2.2771133333333333,4.23475,4.66819,4.57444,1.30875,4.01861,4.94199,3.825755,4.71908,3.1638066666666664,6.072936666666667,3.554775,1.49893,3.49803,1.2601983333333333,3.11035,8.486930000000001,3.06499,0.7891018181818182,4.38402,4.543535,4.57203,2.3109675,2.3109675,4.476076666666667,6.0387,2.766305,0.4960955555555555,1.9625,4.274719166666666,4.9872,4.465995,1.66846,2.7943200000000004,3.838965,1.0583753289473685,1.0583753289473685,1.0583753289473685,0.6770032456140351,1.2664182456140352,0.589415,1.0583753289473685,0.6770032456140351,0.26335157894736844,0.8527665789473684,0.26335157894736844,0.4136516666666667,0.4136516666666667,0.4136516666666667,0.4136516666666667,1.0821971666666665,1.24228,2.14222,2.201551666666667,0.9995266666666667,6.029235,2.5651699999999997,6.83847,3.21318,4.353065,3.146865,3.091015,2.6550291666666666,4.690595,2.6427433333333332,4.288445,3.86546,4.838095,2.571375,4.674225,4.995525,3.94849,3.009325,4.96151,3.11566,4.47787,5.4264,4.806465,6.03515,4.8726,1.234225,4.30469,3.815425,3.069925,17.903755,4.50899,5.46685,2.620366666666667,6.96077,3.88087,3.923055,4.20683,3.35104,0.9896975,2.47291,4.47817,4.547115,4.75333,3.02992,3.925485,2.8738766666666664,4.255735,4.962675,4.15754,6.862145,10.532494999999999,1.693,3.52951,4.02837,3.802335,3.47468,3.756055,6.35769,2.5143,2.60127,2.511295,3.80763,3.690655,4.56581,2.432895,1.7089075,0.9369719999999999,5.0476,4.85329,3.95222,4.42117,3.880105,5.3281,4.68257,6.02035,5.4768,3.8869,4.448195,3.437035,2.99607,2.997085,3.268915,1.6904225,3.85695,4.923095,5.98215,5.302459166666667,5.302459166666667,2.63503,1.6904225,2.977745,3.12485,0.7788166666666667,1.6431716666666667,0.864355,1.4968375,2.76748,0.342044,2.98114,4.3704,1.4968375,3.0300994999999995,11.090499999999999,6.844402499999999,2.3410100000000003,1.08346,1.7195433333333332,4.44606,4.320345,6.557350333333334,1.8754225,2.27499,4.50416,4.75317,5.38585,2.1895599999999997,5.36205,3.8054333333333332,3.46904,5.1849,7.207456,3.8787,2.527125,2.6991066666666668,2.04598,4.70372,5.502375000000001,1.8049880000000003,5.65225,4.128905,6.37254,0.6030300000000001,5.102236666666666,4.201625,5.52525,3.261585,2.598045,6.96745,7.959316666666666,6.28365,2.0149166666666667,2.0149166666666667,2.0149166666666667,5.90705,4.90617,6.6909,2.970365,2.71533,2.4110597368421054,3.807245,3.01229,2.4840445,1.804585,2.4840445,6.6350245,4.1977866666666666,4.17085119047619,6.14455,4.17085119047619,4.17085119047619,3.0077128571428573,6.28168,5.160133,2.746318,2.746318,2.43939,4.671275,2.73575,3.533025,5.316175833333332,5.316175833333332,5.316175833333332,6.941625,3.3142300000000002,3.30681,3.3919024999999996,3.2515725,0.8671925,6.962443333333333,2.7646566666666668,3.973845,3.156925,13.659278333333333,4.085005,5.3153,6.38961,2.5096366666666667,3.07705,1.0947833333333332,5.3153,3.125225,1.6638975,1.6638975,2.740075,4.808510833333333,1.73449,4.446016666666667,0.824395,1.3784433333333332,0.824395,1.7409375,2.558885,4.72593,3.31628,1.3784433333333332,2.987985,4.828455,1.032155,3.27992,4.24929,1.98917,4.043351666666667,2.445435,2.636745,2.845365,0.932498,3.559865,2.70819,2.07378,1.3904166666666666,2.7728666666666664,3.73224,2.47757,3.31912,1.1948066666666668,1.1948066666666668,1.1948066666666668,3.459185,2.71706,2.71706,3.03626,3.552285,2.242856666666667,1.1650175,1.1650175,2.89607,4.0433875,0.7681925,1.6888466666666666,2.649325,1.0783049999999998,2.7671516666666665,0.932498,0.932498,1.7498458333333333,0.932498,3.1422975,0.5784766666666666,3.1422975,5.797419583333333,3.202175,2.3057166666666666,1.7089118055555557,0.634745,2.3436568055555558,3.56414,2.3436568055555558,0.8798155555555556,3.090525,3.628145,3.63174,3.702205,2.34775,3.587135,1.8922800000000002,0.8527673611111111,0.46158625,0.8527673611111111,0.39118111111111115,0.8527673611111111,0.8527673611111111,4.714485,4.65929,5.6689,3.458875,4.61331,4.690165,5.22315,3.285375,4.0398,1.3000157142857145,2.7044566666666667,4.353529999999999,3.59619,1.4589299999999998,2.6417266666666666,4.00814,3.820885,4.132165,4.016245,4.77567,3.801375,3.12457,4.35162,2.6451766666666665,5.60565,3.330635,3.93243,4.523756428571429,0.7607819285714286,2.07408,4.518185,7.92593,4.633865,4.61331,3.224396666666667,5.0759,8.634713333333334,3.647933333333333,3.01772,3.6794333333333333,5.4281,3.914295,5.6386,5.6513,5.2999,3.35844,4.90922,4.861365,3.3588,7.657705,3.4995333333333334,2.22695,2.272276666666667,4.74474,6.87355,5.7092,5.559,4.550045,5.10305,5.7225,0.5344676923076923,7.6989,4.74155,4.69161,4.158565,4.976305,4.19517,3.2117833333333334,2.67355,1.3235916666666667,0.5671838461538461,1.8805040000000002,3.0073566666666665,3.847875,4.47492,4.998825,3.331365,12.894676666666665,3.52628,3.74759,3.312785,0.7141500000000001,5.679539999999999,2.8397233333333336,1.7212666666666667,4.56099,5.971578333333333,3.131855,8.06603,4.054175,2.172818,2.172818,2.172818,4.031835,8.83236,3.28718,1.7741425,1.7741425,3.213435,9.15458,0.9895675,5.42925,4.15364,4.6639,3.0722733333333334,2.043763333333333,4.11023,3.665115,5.991,5.741108333333333,3.703915,2.592555,3.67005,4.445187499999999,3.7306809999999997,1.2535875,3.0940499999999997,6.05991,3.329755,4.35891,1.1383475,3.6951,2.86763,2.514396666666667,1.7077125,1.65231,2.1375433333333334,5.67545,1.91684,4.007105,5.7729,1.9594619999999998,4.657795,4.048355,4.967235,3.322366666666667,2.152745,2.705405,4.838115,3.860835,3.860835,1.22942,1.5395266666666665,3.16712,4.43489,2.2953038181818184,4.8947579999999995,1.6169280000000001,2.738986666666667,1.9475233333333335,1.874975,1.874975,5.0179,7.471121666666667,1.9383299999999999,3.10585,2.2870475,5.84415,2.95807,0.735804,2.834795,0.735804,2.68313,3.168755,4.53614,5.9523,3.52657,4.798125000000001,5.8249,2.370855,2.2404766666666664,3.337566666666667,2.2517733333333334,5.8561,4.73069,3.276825,4.135265,2.605845,4.588095,0.98009875,1.0592320000000002,1.8726933333333333,1.6500983333333332,2.3619533333333336,2.634866666666667,2.133086666666667,3.4109,2.541425,3.939065,2.4764266666666668,2.80598,2.64683,2.3059,3.074756666666667,2.6368633333333333,1.8891433333333334,2.4085300000000003,3.402815,3.74613,3.525605,3.96072,2.9852333333333334,2.4074125,2.0490075,1.2231216666666667,0.2820605,0.14372304347826087,2.0079,1.8772166666666665,0.14372304347826087,3.941303876811594,2.1399925,0.14372304347826087,5.802604583333333,2.251925,5.88256,3.0166,3.6869333333333336,2.4266433333333333,3.1139833333333335,2.3161375,4.167435,3.4611,3.2172699999999996,0.5108126315789473,3.9706599999999996,2.3280959649122805,2.803755,1.59291,2.49911,4.169,2.9072,7.770455,5.3023,4.338375,3.48752,6.21144,5.75075,1.7517500000000001,3.9613950000000004,2.008265,1.87667,6.9743,9.28054,1.26597,2.1998575,3.43992,2.34687,2.687475,3.24628,3.142775,5.0527774999999995,2.357425,3.023815,3.42495,3.046655,7.09117,1.2617466666666666,1.845255,3.04609,3.12301,1.8221866666666668,3.361635,1.506955,3.495985,3.312435,6.65527,3.184775,8.3216,3.830005,1.6691639999999999,1.6259499999999998,2.854195,6.46213,1.6954275,1.3788866666666666,5.58202,3.252945,3.864745,2.621245,2.0858866666666667,2.9193,10.017355,4.85232,6.02434,3.38033,2.37007,2.09118,2.58999,2.857755,3.574045,1.6844166666666667,1.54758,2.3868466666666666,3.51567,1.6125325,3.26946,2.414405,3.00805,3.51058,3.052945,1.4761733333333333,2.43933,1.2112966666666667,1.431246,1.59593,3.192925,3.21899,3.41591,2.539025,3.664675,3.896955,2.656045,1.427608,3.295575,3.3232725,3.076335,1.679695,3.058525,3.688515,1.4284975,3.18174,1.6906433333333333,3.68204,3.956615,5.11505,2.485685,3.838695,1.72487,3.524125,5.1856,1.70783,1.2004942857142857,3.827166666666667,2.50614,4.63979,4.08453,2.88051,4.72248,4.541265,2.55032,5.42475,5.0384625,6.33865,4.672325,7.735546666666666,3.91062,1.7219666666666666,3.086066666666667,4.28144,5.13635,3.11801,7.295579999999999,1.4942142857142857,3.6005000000000003,2.01776,1.720338,2.1756433333333334,2.64602,0.4534464285714286,3.1388766666666665,3.1554933333333337,4.125455,2.468695,3.368866666666667,2.1311666666666667,2.46082,2.531875,9.662500000000001,5.331,1.6383459999999999,4.963675,2.397444217391304,0.7138757179487178,3.0858066666666666,7.525118,1.783262,5.03361625,6.12444,2.103965,2.0606975,1.43332,4.70042,3.05521,4.63293,4.006525,2.4713166666666666,4.338395,0.841464,2.742554,5.04525,4.59313,4.64915,2.787805,4.591755,4.175,4.649765,5.21795,5.99995,4.561525,5.1245,4.725825,1.597668,1.887345,2.85172,3.088245,1.311688888888889,4.268265,2.281683333333333,3.2627966666666666,3.85601,3.2375066666666665,2.8119599999999996,1.6303866666666667,3.458766666666667,2.687525,2.77671,2.8286266666666666,1.9003966666666667,1.800675,2.29914,3.054345,5.08575,4.16421,5.275,3.164525,2.23747,3.23775,5.43495,3.3157766666666664,4.587315,4.81646,2.73028,4.52026,1.7989899999999999,4.50761,4.9908116666666675,6.01554880952381,4.784595,5.048,5.24725,3.6130666666666666,4.012919999999999,5.0645,3.00083,3.8356835,3.53329,1.620585,2.892145,1.792755,2.0723,4.134375,5.5189125,3.8356835,4.04753,3.545995,1.5350566666666667,3.917965,2.02135,2.8170033333333335,2.20994,2.668885,1.8598021212121214,1.8598021212121214,1.8598021212121214,0.6865354545454546,0.8530777777777777,2.361527777777778,1.165035,3.35704,1.6856833333333334,4.201105,5.1707,4.755655,3.09704,4.108255,3.381665,4.985675,2.048475,2.95139,2.308775,3.120115,5.632483000000001,4.50625,5.44185,3.98717,0.9798725,2.16198,1.44993,3.604295,3.91776,4.15249,5.30465,5.34015,4.91176,5.4459,4.22874,1.74076,1.3656916666666667,5.67772,1.0046666666666666,1.3228566666666668,3.31417,8.473255,3.322125,3.70982,3.39162,5.53859,1.747975,1.0192383333333332,1.6919925,3.12447,3.46448,3.805945,3.49872,1.850785,6.083325,3.0353333333333334,1.06830375,5.61,3.0498966666666667,2.96908,2.4298433333333334,3.9037333333333333,5.701256666666666,3.1689933333333333,3.4339,3.765233333333333,3.023953333333333,3.011556666666667,3.142526666666667,2.414775,1.9032075,4.52353,5.083,5.11305,1.00127,0.655513,3.5592,2.52809,0.968395,2.2061166666666665,4.65577,4.56488,7.189795,4.792645,3.5191666666666666,1.6620460000000001,3.348415,3.53092,2.965896666666667,2.4648005714285715,4.157425,2.8153133333333336,5.2777313333333336,1.0109977777777777,5.7891,1.7043199999999998,4.571875,4.5711,1.955535,1.0081,3.081,0.40401499999999996,4.057135,5.1027,5.25805,3.116428,1.440738,3.5506333333333333,0.7421588888888889,2.47129,0.7421588888888889,3.788435,3.537315,1.3697225,1.8224975,5.143513333333333,1.7224233333333334,3.69905,3.903245,4.05314,1.280994,1.6060566666666667,3.767845,5.69345,4.628085,3.0561679999999996,1.9345675,2.995225,1.49249,2.04999,2.2091225,2.4730175,4.16051,1.3548777777777776,1.3548777777777776,4.351615,4.526311333333334,8.074454166666666,4.861689999999999,9.256345,2.279315,4.10274,4.0594,1.77275,3.7544516666666667,4.65024,3.560755,5.83985,2.86594,2.26374,3.099693333333333,4.341835,1.14155125,4.003415,4.62016,1.3522983333333334,8.039783333333332,2.87201,2.972755,2.4650675,3.80523,3.878875,4.44385125,2.9752266666666665,2.7253066666666665,2.0953733333333333,3.779533333333333,2.26531,2.1434,8.285414666666666,3.6046,3.1961,4.26632,23.91077628021978,0.652682,2.67536,4.033365,4.58797,8.18163,4.558025,4.03634,4.801425,7.243331666666666,3.306265,1.5766433333333334,4.879205,2.943305,1.0755240000000001,1.0755240000000001,1.0755240000000001,2.096285,1.5593275,2.810475,1.48279,2.88061,1.49428,2.66225,2.354155,2.819825,1.48279,3.08497,2.33618,4.225103333333333,4.574873333333334,5.46555,0.8298241666666667,3.38195,2.616645,5.44645,4.18211,2.24646,2.2540225,1.658605,2.0597125,1.368446,4.025155,1.73589,4.98822,11.714076333333333,2.929953333333333,2.37333,5.090873333333334,2.8317633333333334,4.2885333333333335,6.57325,1.8172833333333334,5.936330833333334,4.45851,1.1300216666666667,1.1203042857142858,6.470391,4.099995,2.13965,3.978215,1.9095575,4.645395,5.3567,4.579745,3.98253,1.4549,4.786475,5.21185,4.872175,6.047915,4.04746,5.71225,5.29135,4.202165,4.99294,3.754633333333333,4.920875,2.1079625,3.37296,4.857215,5.71445,4.215415,6.03705,4.601465,2.84029,3.285833333333333,8.57898,4.530335,3.2454433333333337,3.892575,4.141555,4.55547,4.215455,4.760495,7.174720000000001,3.825225,2.732936666666667,4.291198333333334,2.44937,4.87146,3.0304466666666667,6.8368975,1.58212,4.722445,4.69362,11.898115,0.49928,4.55718,4.15421,0.67574,3.604385,4.093755,4.813015,0.984383,4.827,4.99498,2.7402266666666666,9.727321666666667,3.2039266666666664,1.86079,3.40352,4.67316,5.9109,0.7819858333333333,3.92266,2.096325,5.3752,0.7539584615384616,4.01368,5.64585,5.027,3.526785,6.2954925,4.39771,3.5111475,2.5533933333333336,2.7766066666666664,4.275365,4.89092,5.23835,5.33,4.86666,3.3790666666666667,7.502121666666667,2.997625,3.4520065,2.4746,3.441285,2.5244566666666666,1.5091566666666667,2.924096666666667,3.463566666666667,2.9638666666666666,3.9508666666666667,3.6633,3.1768033333333334,2.9365166666666664,5.53655,3.3515333333333337,3.448375,4.905845,3.4870666666666668,1.0643133333333334,3.0478666666666663,2.9431833333333333,4.04232,3.3811999999999998,3.1014133333333334,4.404696666666666,1.8528866666666666,1.79399,2.91638,3.57451,4.977505,1.06018625,4.98783,3.10719,4.218233333333333,3.0703766666666668,5.049905,3.725625,3.044,5.39465,1.67863,3.655355,0.70420625,4.76882,5.0643,15.67674,3.26855,1.089085,4.91295,0.6143364285714286,2.6068,4.550835,1.803165,1.5617142857142858,4.056285,4.78121,3.20095,0.6316499999999999,2.608495,7.25041,3.85236,6.13865,5.1174,4.770295,3.5404666666666667,3.5728333333333335,3.4070666666666667,6.784518333333333,4.29041,5.38855,2.36011,0.46721277777777775,2.10245,2.84448,1.98309,3.01544,4.608135,2.89442,4.8525,0.823365,5.10925,3.549985,2.773935,1.1573233333333333,2.9659099999999996,2.1494233333333335,4.95092,3.934795,2.090935,1.6168285714285715,4.158865,5.37365,5.2481,6.765783333333333,2.3286233333333333,5.29125,5.02165,4.994125,2.1787400000000003,4.975015,6.431915,5.15605,2.556035,4.915485,2.867835,4.420395,4.07829,3.916275,1.348005,4.88794,2.668946666666667,2.8573633333333333,5.389693333333334,5.389693333333334,4.645245,1.98738,5.12335,1.098635,1.714028,5.0905,3.2408266666666665,1.3622433333333335,3.4434,1.099364,4.435333333333333,5.7544,3.833595,5.32115,4.581625,3.989905,5.3871875,3.660845,3.9304,3.1344100000000004,2.4153066666666665,2.821075,2.9817733333333334,4.07781,1.6594875824175823,3.0536999999999996,4.302345,5.14755,2.438212083333333,4.17235,4.944335,6.307031666666667,3.6992,5.46485,5.4302,5.2651,4.835165,3.923865,3.54307,3.49755,5.0011,5.42295,4.88359,4.917515,4.480775,4.465815,0.7196816666666667,4.83664,4.770925,4.191385,7.303795000000001,4.37122,3.797215,4.314,4.755495,3.79396,4.265805,2.2111537500000003,4.446512500000001,2.3119175,1.3416757142857143,3.495115,2.73982,2.3420833333333335,3.5656866666666667,3.408466666666667,3.192855,1.0292233333333334,2.1030775,4.23912,4.10799,1.78853,1.78853,4.517095,2.05938,2.9875333333333334,4.37123,3.602585,4.10494,1.4941366666666667,1.982355,3.6552050000000005,1.753165,5.0132,4.466565,4.337605,4.20151,8.85015,2.705225,3.67743,4.996305,4.201995,2.9706233333333336,4.14774,4.609185,4.449985,2.290385,3.0780266666666667,4.465375,4.24737,3.99795,3.747085,1.5023975,3.730865,4.34443,4.442415,4.031095,4.3085225000000005,4.3085225000000005,3.2000525,5.0417,4.65965,4.20695,1.737826,7.544425,3.950825,5.23915,4.45131,4.838465,4.68824,5.01215,3.307935,4.61959,4.276115,5.45915,2.11374,5.1391,6.288834444444444,5.1678,0.7549710000000001,4.725020833333334,1.20385,4.772875,4.760035,4.61169,4.2291,5.6832,3.8449333333333335,3.8449333333333335,0.867535,2.0031125,4.53306,3.621085,4.285795,4.64587,5.8204,3.231965,4.28178,1.41422,2.98088,1.52284,1.1947575,4.284586,0.856863,2.79988,3.2576733333333334,1.3272,2.549825,2.6061633333333334,1.2067983333333332,6.28527,2.020925,2.4119433333333333,4.594615,2.2943525,2.6953566666666666,4.69852,4.57035,3.818433333333333,3.19487,4.1688,1.681022,1.9985591666666664,4.66785,0.6273957142857143,2.2001500000000003,2.6170083333333336,3.1324233333333336,2.908416666666667,1.3812985714285715,0.8459,2.3061633333333336,4.30216,1.208137142857143,2.245335,1.3925425,6.015244166666666,2.4043775,4.919825,4.306875,4.420495,4.77866,5.45915,4.406615,4.382405,1.6576766666666665,3.8536,1.7792020000000002,2.77326,1.1716885714285714,4.270945,2.03321,5.660302,4.094125,3.98291,1.760454,6.6624225,4.83909,1.4890999999999999,3.86187,2.91903,3.976455,3.3986,1.8911875,1.8911875,3.2795533333333338,1.57378,1.57378,2.1787400000000003,2.590003333333333,2.08589,1.3464116666666666,3.4847,1.03766875,3.2079400000000002,2.3067675,1.741955,1.558885,2.1901125,2.4035825,0.2700782352941177,2.5467,1.23595,2.25603,1.9475233333333335,2.514725,1.0481288888888889,1.049398,3.5849333333333333,3.1395866666666667,1.8911875,1.744025,1.5563566666666666,2.4104666666666668,2.4516,1.764414,2.20985,1.1143100000000001,3.6011666666666664,3.6077999999999997,2.4275166666666665,1.478812,1.295514,2.83495,1.295514,2.83495,0.69308875,0.69308875,0.5163361111111111,2.48247,2.5931133333333336,0.69308875,2.247785,2.5326566666666666,2.297785,1.84744,0.80739,0.69308875,0.69308875,1.545832,1.545832,1.9416925,1.744025,0.69308875,2.39648,0.4478561538461538,2.80129,2.6042166666666664,2.762776666666667,2.715173333333333,2.715173333333333,0.396699,0.396699,2.1787400000000003,2.0267399999999998,2.2713,1.9818259999999999,0.396699,3.6153,2.704375,1.6981860000000002,0.626125,1.6981860000000002,0.626125,6.59889,2.3344533333333333,4.2859,2.938973333333333,3.4239333333333337,2.9479133333333336,3.247006666666667,3.466533333333333,2.3507475,1.6431875,2.9761900000000003,3.647933333333333,2.255193333333333,1.545832,2.3907195238095236,2.3907195238095236,2.65216,2.0669025,4.223555,2.29743,3.5424666666666664,2.67944,1.802788,2.39348,2.46081,0.7897872727272727,1.51104,4.21742,1.880004,3.4951666666666665,2.7101933333333332,2.659675,3.9568666666666665,1.8048166666666667,3.563,3.2110833333333333,4.0101,1.2303060000000001,0.2837365517241379,1.2597514285714286,1.2597514285714286,1.1471333333333333,3.2824000000000004,3.9123,2.52433,1.9420566666666668,1.9420566666666668,2.290795,1.6906433333333333,1.07949,1.5937433333333333,1.5937433333333333,0.69308875,2.1787400000000003,2.75069,3.2944166666666668,2.3067675,2.09442,2.09442,2.09442,1.0406166666666667,1.5523285714285715,1.5523285714285715,2.578275,3.30953,2.8590145075757576,4.402355,2.6303199999999998,2.73141,3.886155,3.84358,7.747485,4.414625,5.0349,3.670033333333333,13.41922,4.66457,3.54441,0.94882,4.050155,3.19379,2.205065,3.571335,5.5671,8.928498333333334,6.16085,0.53495,3.97014,2.768775,3.53426,2.51015,4.702575,6.30525,4.67402,8.25525,3.122095,3.72413,3.984375,3.1541647727272726,8.138312358974359,3.2974633333333334,2.535153333333333,3.67387,4.283255,4.95668,3.745065,6.603964,5.3961,1.2640040000000001,3.69731,0.83219625,5.0824,5.87925,3.487895,5.52785,4.968755,3.661115,5.18765,4.057355,10.633995,3.78822,4.878826,3.795166666666667,4.71794,2.77317,0.986215,0.986215,3.426015,3.7712,2.066805,2.242265,3.718845,5.6108,4.14187,1.94558,2.2986475,3.51146,2.6786166666666666,1.12189875,4.341435,5.0156,8.43808,1.729598,3.74325,3.53763,3.36233,2.853153333333333,8.24724,4.103875,3.896433333333333,3.0180433333333334,3.815795,3.411766666666667,3.0641133333333332,3.1591066666666667,3.9177,3.91055,4.892925,4.23351,0.36628933333333336,1.3916766666666665,2.25118,1.671515,4.902235,3.56356,2.5931866666666665,2.1639975,4.79891,4.11720425,2.3694175,2.373875,0.962241,2.68545,2.639276666666667,2.639276666666667,5.3435,1.9000125,3.29595,2.21225,2.0571066666666664,1.6372033333333331,2.86329,3.880215,4.276325,4.56662,4.749435,4.971785,2.782335,2.5539166666666664,1.805546,5.599,5.571933333333333,2.94962,2.8710966666666664,2.237555,2.3895,4.136441666666666,3.28139,4.54158,3.667025,3.264285,4.4336,2.977273333333333,3.47652,4.63254,2.3992033333333334,3.1553466666666665,0.3937942857142857,3.5556666666666668,2.946353333333333,3.703735,5.7692,4.475085,6.007559166666667,1.9517025,1.6650366666666667,2.82496,5.43275,6.0232,4.742935,3.4187333333333334,2.0634366666666666,5.15325,2.51987,4.76819,2.71294,2.2471825,5.23725,4.85089,4.929295,1.6021,1.9352575,0.9869920000000001,0.9869920000000001,1.1079599999999998,0.8570328571428572,0.805968,1.7352728571428573,4.477475,11.556926666666666,4.17696,4.487505,4.161855,6.2233374999999995,2.598065,1.6353166666666665,3.2791625,2.90721,4.10848,2.405536666666667,2.5001633333333335,2.802913333333333,3.31367,2.60471,3.4126333333333334,3.1113999999999997,3.0312133333333335,3.4690999999999996,3.4736333333333334,3.2085266666666663,2.9051533333333333,3.1789533333333337,2.657503333333333,2.9929466666666666,3.3668,2.96602,3.1326699999999996,2.39026,6.069099619047619,3.26683,4.562737333333333,3.3152000000000004,3.2628633333333332,3.7510666666666665,2.843436666666667,2.74027,3.2559766666666667,3.1436833333333336,3.5528666666666666,3.4435333333333333,2.0813325,2.6394800000000003,2.91826,2.977125,2.977125,3.1571033333333336,3.710233333333333,2.50083,2.4756533333333333,3.4283333333333332,4.2619,2.511906666666667,2.7159,2.5801833333333333,2.9366966666666667,4.858456666666666,5.0629,1.7348166666666665,3.3554999999999997,3.582466666666667,3.569556,3.481866666666667,3.7284,3.5376666666666665,2.5427500000000003,3.341556,2.02818,2.9001615,3.4254333333333338,3.6363,2.7984533333333332,2.8736800000000002,3.660066666666667,2.97279,3.098876666666667,2.494635,1.3039783333333335,3.6691333333333334,2.650726666666667,2.6488466666666666,2.3907075,3.2142366666666664,3.2519533333333333,2.09916,5.711502,2.542613333333333,0.961716,4.91525,1.9413425000000002,1.658025,4.25652,3.870225,3.338755,2.1599,1.4468875,3.1456,3.14484,3.363165,0.44272,2.06814,0.44272,1.8284,1.4468875,2.678055,3.993125,2.757225,4.16075,4.15208,0.6334693333333333,3.29547,0.95708,0.49255352941176467,5.0253,4.014105,4.72479,2.6565,6.16905,4.456105,3.576155,3.19334,3.785966666666667,1.807514,6.13845,3.612315,4.189955,4.349095,3.1690666666666663,2.215053333333333,2.1750766666666665,1.29729,1.92055,1.2336625,1.2336625,4.36426,2.3533933333333334,5.9043133333333335,2.1185875,1.893715,1.915255,2.0807945,1.92081,3.911295,3.912305,1.991495,2.00696,2.0807945,2.499835,3.542652,2.04107,4.997439999999999,2.1185875,3.1745975,2.79386,3.05639,5.3509,5.0499,2.1888675,2.4317975,2.33518,4.110485,5.13945,5.26875,2.2249425,4.30134,1.90768,1.783345,5.40525,11.674655000000001,2.48356,2.6765866666666667,2.3691033333333333,4.65181,4.501985,1.8818925,4.78711,4.41391,3.029905,40.44276333333333,2.972096666666667,3.0740933333333333,0.46693833333333334,5.374204166666666,2.16906,0.9232733333333333,4.441685,3.69065,2.206745,1.939595,2.34722,4.119005,1.401492857142857,3.1746239999999997,4.097395,5.01925,0.9097419999999999,4.945725,4.71878,4.99736,2.9905233333333334,1.743875,3.8120725,4.47359,4.25077,3.011665,3.32716,4.28684,11.962805883838383,3.076506666666667,3.081,4.91299,2.87238,4.71558,3.430245,2.285555,3.512735,6.449681249999999,5.3239,4.61646,4.893615,2.55663,3.94949,4.497875,3.59326,4.58385,4.83115,0.09869021739130435,2.341575,4.87083,2.47366,1.581065,0.6014341666666666,0.6014341666666666,2.44941,2.68742,3.52712,1.240478,2.772123333333333,4.35029,2.546705,4.514358333333333,0.5601885714285715,4.50023,4.347695,4.25089,4.398875,4.547915,1.3422625,1.276675,3.486166666666667,2.8891299999999998,2.911576666666667,4.3167523333333335,4.74125,6.64306,5.507,4.74956,3.322635,2.2711916666666667,1.5567833333333334,4.96345,0.29722933333333335,3.143685,3.58597,3.81079,14.236963333333332,2.14690375,3.2198166666666665,0.95173125,4.48483,8.15692,2.96939,2.2483999999999997,5.4263,3.3516999999999997,1.3779233333333334,3.37713,2.65056,2.847355,5.0134,3.217963888888889,1.259225,8.62245,0.68412,5.2872,3.091311388888889,1.4017175,1.9745588888888888,3.0364075,3.0364075,3.774995,4.1734925,1.431125,2.368555,2.53861,3.318055,3.090715,2.525685,2.899285,3.246345,6.458436000000001,6.4368,3.904125,3.03892,5.38635,5.4769,4.477045,3.266695,3.30598,5.0794,5.4661,2.41969,2.578516666666667,1.49092,2.1906666666666665,2.4283,1.51637,3.2875,3.6592333333333333,3.5036,2.972186666666667,2.6530366666666665,1.5582,2.5230533333333334,0.4492227272727272,3.2250300000000003,1.3774642857142858,1.98542,3.281026666666667,2.4643866666666665,2.5197966666666667,1.00201625,2.389685,2.43568,3.58838,3.41669,5.48205,3.45199,3.01205,2.1166666666666667,3.26356,4.668995,2.462275,2.759035,1.90196,3.702855,2.574585,3.65362,1.35541,0.5935509999999999,2.3989225,3.173095,2.96854,3.808135,4.77848,8.6999,2.99612,2.597836666666667,1.7849133333333331,1.926726,1.926726,2.5601533333333335,2.718776666666667,5.04395,4.849745,3.783815,4.90126,4.7165,4.891675,3.7248558333333337,4.39721,8.633062500000001,2.5017,0.486388125,2.8773766666666667,1.4114000000000002,0.9760571428571428,2.722606666666667,0.870018,2.2308475,4.757575,5.5806,5.9218175,0.8994175,6.74535,2.09686,1.5404366666666667,2.89738,4.763435,3.2479,2.533475,3.94226,3.2973033333333333,4.050033333333333,2.9190199999999997,2.821153333333333,2.8315133333333335,6.610105000000001,2.416225,3.825785,3.79475,3.4406000000000003,1.3702500000000002,1.10277,4.237425,2.88723,3.128906666666667,6.8348700000000004,3.442495,2.396695,2.5553,3.51602,3.5279333333333334,2.671416666666667,4.324538333333333,3.196566666666667,4.745225,2.338083666666667,1.73066,5.0965,5.62345,4.64893,4.39025,1.61655,2.3255675,1.8601175,3.09136,1.3601566666666667,0.9121733333333334,2.634708333333333,1.9028025,1.9694475,4.18066,0.9562750000000001,5.9172075,1.5421325,0.777651818181818,3.925933333333333,4.541795,0.9931028571428572,3.7053874999999996,2.907541875,0.8459,4.61979,0.20903785714285716,0.20903785714285716,0.20903785714285716,0.20903785714285716,0.20903785714285716,0.20903785714285716,1.813586,3.96926,1.813586,1.813586,1.7358466666666665,0.20903785714285716,0.20903785714285716,3.427633333333333,3.0024366666666666,3.9698,3.40169,2.58316,3.371675,1.600542857142857,1.8777719999999998,3.7306809999999997,1.881168,3.3350000000000004,2.6731735555555556,6.672409999999999,5.15525,4.539125,4.36776,4.61961,5.6665,4.470335,3.820145,7.6031525,3.6638,3.7831333333333332,2.597653333333333,4.984966666666667,2.57764,2.1229725,1.9201833333333334,4.97952,5.2126,4.51616,5.4353,5.46955,4.84075,5.04665,0.7768272727272727,0.7467928571428571,0.7467928571428571,4.855965,2.247926666666667,3.478165,0.9482057142857142,5.27235,1.575942857142857,2.3902,2.6513400000000003,4.6898333333333335,4.6898333333333335,7.0056,4.35306,1.5391533333333334,13.410628333333333,3.1567000000000003,1.1835444444444443,5.1849,4.521215,3.177205,3.55239,2.42605,3.9723333333333333,0.67286,3.6079666666666665,3.707933333333333,3.5434,3.109576666666667,1.4610766666666668,1.3547933333333333,4.944186666666667,3.1897533333333334,3.1630299999999996,3.6340333333333334,5.292235,3.456495,0.806868,2.2466266666666668,2.4579566666666666,2.7220916666666666,3.8612,3.495233333333333,3.521433333333333,3.7481333333333335,3.0484666666666667,2.3955033333333335,2.380403333333333,3.0127699999999997,2.9228400000000003,3.91918,3.519105,4.61243,2.6444933333333336,3.143133333333333,2.78665,1.6715399999999998,1.8780733333333333,3.1546161904761902,4.122333333333334,2.08268,3.1967,1.7322,3.7335333333333334,5.093506666666666,5.120035333333333,2.639225,2.77695,2.663475,2.659,1.637757142857143,2.4255075,3.2286235714285714,2.39129,3.523733333333333,2.6787,3.830689666666667,4.052975,1.2485777777777778,1.229335,1.7872225,2.2796875,3.1047533333333335,3.4032666666666667,5.03345,7.244815000000001,3.761935,4.917275,4.81547,15.936384333333333,0.5236,11.167695,1.1460666666666668,2.93227,3.013946666666667,1.8815600000000001,3.286105,1.5270899999999998,1.427608,2.68332,1.426558,2.7459533333333335,2.25667,3.254113333333333,2.61115,2.8666033333333334,1.52231,0.7709925000000001,3.4811666666666667,2.5191833333333333,3.0929566666666664,1.0406166666666667,3.7620666666666662,0.7661875,0.4048638461538462,2.8146133333333334,4.23214,5.16205,5.22895,0.9632636363636364,4.031075,4.4828,1.1599925,2.5283,5.7844375,3.011915,3.85478,3.553325,4.05082,1.900695,3.81952,2.76121,2.863165,3.306985,2.59048,2.67794,3.5789,2.9086,3.576465,3.562365,3.20814,5.4836,1.87249,4.695845,2.1528575,4.544035,5.26594,2.0573975,3.06198,2.9809699999999997,5.66996,2.53076,3.109225,5.8058,4.2859,4.270115,1.8058466666666666,2.3807,5.4539,3.5807,4.58398,3.595333333333333,3.2605733333333333,2.956186666666667,3.743,3.151286666666667,2.6580833333333334,2.71307,0.4473944444444445,2.40044,2.1800125,4.873785,4.93577,3.3376333333333332,2.8569333333333335,3.4678,9.06408,3.42543,3.72827,2.8786533333333337,4.128495,2.98203,3.8238716666666663,2.8940033333333335,2.4323275,2.9349166666666666,6.35215,4.53171,2.015136666666667,2.98959,2.740495,2.63381,5.069753333333333,1.639686,6.217386666666666,4.43545,4.891555,4.732985,5.56215,3.45786,6.932398333333333,5.3363,4.15586,0.7152071428571428,2.463985,1.4589225,3.0578266666666667,3.6277887499999997,3.983395,3.725505,5.23895,2.798273333333333,4.837555,2.7906866666666663,3.4360999999999997,3.1273999999999997,5.02685,4.81999,5.03725,3.26422,7.206455,4.55352,1.5236383333333334,5.864,3.246985,3.99246,2.07636,2.0848366666666664,4.905003333333333,1.2109514285714287,2.4770733333333332,2.07624,3.935485,4.152325,2.6861599999999997,3.3532666666666664,2.9455073333333335,2.7260633333333337,4.438055,1.256122,2.10859,2.24217,2.617243333333333,2.3577566666666665,2.533873333333333,2.528993333333333,3.93696,2.7891133333333333,2.7212566666666667,4.14078,3.059295,4.32226,3.501855,1.5168190909090908,1.5168190909090908,5.05505,3.258103333333333,1.669055,1.3495025,2.12232,2.0239975,1.087954,1.3858966666666666,0.630548,1.4430800000000001,1.3928833333333335,2.6469833333333335,2.212056666666667,1.70324,1.81344,2.2456533333333333,1.4208266666666667,1.6939399999999998,1.6745866666666667,2.14025,4.030415,2.51241,3.346633333333333,2.843725,5.6815750000000005,2.83785,4.17875,3.978583333333334,2.05858,3.924295,3.28336,1.872265,3.309295,2.10806,2.88607,3.838315,2.527375,3.783005,3.29625,3.9095,3.5716,0.8870077777777777,4.323275,3.798485,3.48796,3.49077,3.0634833333333336,5.5359,4.5206,5.457185,8.3998725,3.940315,4.470975,2.8798066666666666,3.78827,3.99282,2.10039,2.659665,4.761235,2.388025,5.767936,1.7412199999999998,2.53074,8.479066666666666,3.0401733333333336,4.20694,1.4057499999999998,4.74079,4.74035,3.7176333333333336,4.677935,4.914265,6.213520000000001,17.088497202380953,0.5900764705882353,1.0481288888888889,3.4992,3.865845,3.667115,2.196705,3.26482,4.065215,4.7588,3.327175,5.00635,1.6639833333333334,1.6639833333333334,5.7509,0.7536772727272727,1.8549700000000002,3.0409,3.93899,0.34421461538461534,1.77953,4.490492583333333,1.0990316666666666,2.920806666666667,2.60543,2.92136,6.95791,2.3623233333333333,3.2930533333333334,1.9100266666666668,2.107126666666667,4.4742775,4.45017,2.16569,6.953655333333334,1.64115,2.87725,4.53606,6.9729375,1.8009666666666666,2.30079,2.5066833333333336,1.3632466666666667,2.784005,2.0224875,3.922175,3.327435,1.3546775,1.8921936666666668,1.8921936666666668,3.4998666666666662,5.8035,4.29765,3.735715,4.406355,5.48405,3.047365,3.53804,3.86925,3.63698,5.430289999999999,3.5961100000000004,4.532825,0.895205,0.3811575,5.2693,3.694575,2.4146433333333333,7.91311,1.5808499999999999,4.444166666666667,4.038295,0.3543325,1.9269266666666667,1.24186,1.8036533333333333,2.0769166666666665,5.623135,3.0075,2.742105,4.581185,4.98359,4.88184,0.5619915384615385,1.967175,0.561563,5.644,1.725426,5.0033,2.2540975,3.20781125,2.996785,4.601185,4.572445,4.97154,0.9220363636363637,3.135345,4.236115,2.2800175,1.7866525,3.449285,3.452635,3.514925,3.6176675,5.4166428571428575,4.271415,5.5668,2.74562,1.0074233333333333,3.6103,3.834545,0.7116576923076923,4.233985,4.2085,3.784465,3.460995,2.6497366666666666,4.94812,3.450055,2.87392,2.1111,3.610935,2.03176,4.746465,3.695345,0.7470153846153846,4.459875,4.05709,3.13337,4.79179,4.142305,3.00179,3.74241,0.689271,3.1892600000000004,4.024990000000001,4.88953,3.507233333333333,2.584375,3.446733333333333,2.584375,4.45526,2.83376,3.676066666666667,1.5896083333333333,2.9202,1.924285,4.42375,2.8482766666666666,5.74945,3.5822000000000003,3.360466666666667,2.9504033333333335,2.352549285714286,2.352549285714286,2.352549285714286,2.7620633333333333,0.8509783333333334,4.52033,2.2541966666666666,1.6219666666666666,3.6463666666666668,2.47811,3.33288,4.486875,4.903725,4.57076,2.476565,1.486266,4.19472,1.9472639999999999,2.5133199999999998,2.873305,3.837425,1.9617525,4.47195,2.75341,1.7884699999999998,4.82943,3.981065,3.868355,3.49238,0.7040222222222222,2.3579766666666666,5.06355,7.065185,5.8296,3.05742,6.2672,3.26094,3.538365,2.0521775,2.261265,5.3678,2.194275,4.179825,3.566285,4.692755,9.091916666666666,3.94197,3.968915,3.676495,4.547435,4.30614,3.4319200000000003,3.4319200000000003,4.534335,3.782376666666667,4.481185,4.007495,4.37812,4.26691,4.37895,1.19297625,4.0842,4.35046,5.49365,7.453110000000001,5.3813,3.8358853333333336,1.9141833333333331,1.6444433333333333,2.5507487500000003,4.757765,3.91215,4.32185,3.0951233333333334,4.692015,5.5155,4.97492,4.701705,3.142186666666667,4.50427,4.901745,5.70245,5.59815,4.1077,7.21903,4.56243,2.17733,5.3416,4.430855,4.541765,4.360435,4.95801,0.7781518181818182,4.611775,4.781775,1.3165342857142857,1.68967,5.3187,5.013,9.354249,5.5099,5.29715,6.12875,2.86606,3.04642,5.1317,1.66886,1.66886,2.40488,1.54122,2.8376425000000003,3.3791666666666664,1.8959225,4.062263181818182,1.2685266666666666,2.011535,7.395175,3.302131666666667,3.24698,2.82215,3.891555,3.855325,3.0789933333333335,1.0674844444444445,3.750425,2.7456,3.80755,4.12589,3.6809449999999995,5.30015,5.55035,5.13715,3.76439,5.2019,6.6227,4.70687,3.1698,3.852615,1.9123575,1.9123575,3.799985,4.73835,2.2575533333333335,2.6648166666666664,2.405294848484848,3.164153333333333,1.69187,1.69187,4.864245,3.26437,2.157885,3.504115,2.954235,1.88601,1.18677,1.4813333333333334,2.633535,0.482041052631579,0.9050555555555556,2.61166,4.51211,0.4279145454545455,4.523275,1.9952459999999999,5.3531,3.717565,7.1696125,4.490435,5.43487,4.733635,5.28705,4.202725,2.59665,1.932424,4.618305,2.755,4.11296,1.2270166666666666,4.85354,4.45986,2.60903,2.43007,3.71409,4.50908,3.83215,3.696045,3.802115,3.49043,2.88762,3.613055,1.0909342857142856,2.7217,2.150305,2.6009,4.201395,7.44753,0.862396,1.5251866666666667,1.5251866666666667,2.1514800000000003,3.857675,2.707335,2.954435,5.6593175,2.74532,1.10754,1.10754,1.10754,2.5711,3.0300994999999995,4.25267,3.041055,3.87822,3.24258,3.4917,2.85673,3.2514233333333333,3.48064,4.15412125,2.0025725,1.087954,3.05001,2.0025725,3.66104,1.4422333333333333,1.8777766666666666,2.460035,5.300389333333333,2.564905,5.588181,5.300389333333333,3.023276,1.6299066666666668,1.6299066666666668,2.92657,5.61416,1.6299066666666668,2.26999,5.78459,2.13645,2.42754,4.8436,3.5524,4.22299,1.60656,3.31879,4.31979,1.7676033333333334,2.115415,3.67353,1.60656,2.4165,2.03099,5.31442,2.46221,1.101164,2.411265,2.96935,3.055305833333333,1.786015,1.9202425,3.758,1.7404533333333334,1.882155,3.137125,2.0799,2.97681,3.79727,2.03053,2.67919,2.137195,5.61434,2.163515,2.88498,2.59904,2.59904,7.5623,0.8753799999999999,3.137025,2.19173,3.07875,2.31203,1.31254,1.31254,3.09318,1.87854,6.3137,2.1609,3.492815,3.05636,6.61163,2.554225,2.683055,5.6512150000000005,5.6512150000000005,2.35429,1.41017,1.172125,1.172125,1.41017,2.00056,1.1832466666666666,1.0955583333333332,1.52959,1.6711799999999999,3.509585,1.87545,3.34464,2.913365,2.832665,2.671995,2.38805,2.015895,3.141119166666667,3.141119166666667,6.23399,2.239635,2.743585,2.37426,3.10544,2.52041,2.6562,2.443545,5.1586324999999995,1.8163475,1.6165833333333333,1.38076,2.303443333333333,5.49248,4.06776,3.37386,3.00719,1.545665,1.545665,1.545665,4.69988,2.48316,1.0955583333333332,2.99499,2.98922,1.1662075,4.90488,2.9195925000000003,6.43887,3.12704,1.80833,3.314155,3.0457300000000003,2.046025,3.34045,4.44632,3.66737,1.742065,2.473615,2.94759,2.633335,4.70697,1.95979,3.145445,2.440845,5.89316,4.45501,1.89581,1.95403,5.21265,4.67468,5.08956,4.73272,0.731674,0.731674,2.796391,2.796391,0.874686,3.25975,3.91521,5.71857,3.97878,5.25551,2.247075,4.727736666666667,4.727736666666667,2.13288,3.216635,2.974995,1.093054,4.31203,2.997655,3.299455,2.66293,4.4144,2.30334,1.751985,3.17681,2.55343,2.49487,4.91007,2.48363,1.871105,3.726945,5.54896,5.08166,3.90219,2.60304,3.24105,2.564055,4.96186,2.47782,3.28381,1.95831,5.69483,4.27662,2.186885,2.91266,2.473825,4.5303,2.426445,2.46053,2.706355,7.28359,4.71534,3.29782,2.36887,2.263915,6.01191,2.62695,2.7262,4.96696,2.923685,2.70289,2.539235,2.589525,1.6327299999999998,1.92553,1.29745,1.71584,1.8312433333333333,1.8862233333333334,1.59593,2.1146366666666667,1.692445,1.6327299999999998,3.62723,3.52722,2.25357,1.6616499999999998,1.6616499999999998,3.6539366666666666,3.6539366666666666,2.8702566666666667,2.8702566666666667,2.520185,1.841285,1.68588,3.4003,2.147995,2.147995,2.27722,2.27722,2.87732,1.946555,4.50168,2.04854,3.079005,1.9517233333333335,1.9517233333333335,1.51429,3.76256,4.66289,1.4422333333333333,4.65797,2.03053,2.05784,3.95039,2.83443,1.84922,2.232775,4.6557,1.84532,5.19468,2.969415,3.11855,2.99236,2.796525,6.20004,3.08034,2.364165,3.7113523076923074,3.009555,5.21377,3.258795,1.50544,1.50544,3.84782,4.58949,4.29033,5.15387,2.63981,2.68833,1.623355,2.82056,1.617485,2.818965,1.795915,0.802776,0.802776,0.802776,2.014710833333333,5.027283333333333,2.014710833333333,2.158615,3.6800049999999995,1.629395,1.89099,5.13299,3.20057,4.5696,1.6777733333333333,4.72433,1.6777733333333333,1.6777733333333333,2.175915,1.799035,2.181515,5.32981,2.181515,2.41306,3.44334,1.972995,1.614195,2.78188,3.19243,3.4339733333333333,3.264483333333333,3.98254,1.6072766666666667,5.07715,0.8647463636363636,4.710275,4.53602,2.665435,2.665435,0.8252727272727273,3.8095,2.9384099999999997,5.8377,4.89234,4.035665,4.98314,4.904045,4.31257,5.06845,4.55016,4.15907,4.274925,3.72677,5.04775,5.2736,3.27117,3.34,4.47107,2.3808866666666666,1.589646,4.64741,4.19665,3.3583,1.5598285714285713,3.688015,4.45288,6.097989999999999,1.04714,5.14185,4.49217,2.10332,1.88436,3.04659,3.38333,1.70827,1.50544,3.721615,3.20427,2.597115,4.3858,2.95394,1.09958,2.5286466666666665,1.2541357142857144,3.0684633333333333,1.6348833333333335,3.1954499999999997,1.8233325,2.79473,4.779095,4.41905,4.79434,3.10972,2.236365,4.70076,4.09386,3.17911,4.44712,4.26752,2.556173333333333,5.7939,4.675335,3.00838,2.50907,3.689885,3.03044,2.9247,2.7131333333333334,4.27767,3.93042,3.77328,2.5194,2.4753866666666666,2.3105366666666667,2.9829033333333332,2.4046,2.2187033333333335,2.5372833333333333,2.190685,1.4485,3.057161,1.1683275,1.9200175,1.8676125,2.27968,1.4785625,1.8080825,4.40521,4.48415,1.94787,4.231245,4.329185,6.271201666666666,2.0643733333333336,1.655018,6.644,3.512905,4.85054,4.84052,4.244605,1.92862,3.323955,2.67985,3.1727,4.384085,0.6755075,4.52293,2.04324,0.8157272727272727,4.886835,4.43276,3.850645,1.960582142857143,4.57912,3.522675,2.6092133333333334,2.2955433333333333,2.4342466666666667,2.05819,0.554612,3.18117,3.10385,4.983955,2.61785,1.9172525,4.194535,0.9953725,1.8130549999999999,1.8130549999999999,2.69394,1.8130549999999999,4.02876,2.74285,4.588445,4.510695,6.27415,13.937502499999999,3.3629,5.62455,2.63623,4.665705,3.813785,6.854749999999999,2.9779533333333332,4.42294,5.11825,3.86467,1.3921033333333332,4.612645,2.7825633333333335,2.945513333333333,1.086768888888889,2.184765,3.78955,7.781438333333334,4.52142,2.590003333333333,4.565065,3.2795533333333338,4.386635,4.974805,4.77446,2.85178,2.7245233333333334,4.045565,5.83185,2.548905,5.0523,2.01283,2.01283,2.98729,4.914875,1.14869125,4.237678,2.282325,3.94875,2.4370833333333333,2.4229,2.7239066666666667,2.001863333333333,0.7486285714285714,3.760835,2.659753333333333,4.903575,4.732545,0.2398403125,5.27055,5.1124,4.86317,6.8676,3.747666666666667,2.8274166666666667,2.48537,3.242316666666667,3.5784333333333334,1.4021933333333332,3.0675033333333332,2.8200333333333334,1.4195849999999999,3.4121,3.20532,3.0880799999999997,3.4976333333333334,1.6762127777777778,4.25989,3.146825,5.44695,4.72808,3.85898,1.4831033333333332,2.7366966666666666,1.258,1.81307,1.258,4.85438,3.571733333333333,1.6996379999999998,2.564475,3.567855,3.611955,3.74476,3.72148,0.349794,1.6398929166666667,3.55788,3.84188,4.78298,2.4605675,3.1773433333333334,2.97589,2.7926033333333335,2.86256,3.162125,4.8266,2.65735,2.4739666666666666,3.15315,2.63109,2.965946666666667,4.50221,1.9224,4.549975,4.234728333333334,5.8728,7.8266625,0.7610355555555555,0.849785,3.90425,7.791525,1.682598,3.322645,1.4913133333333333,1.4913133333333333,3.54741,0.42598555555555556,4.12866,4.466405,2.653025,3.942475,3.041745,2.46567,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,0.22373966666666664,2.023075,4.501985,5.342141666666667,3.8213116666666664,5.7077075,7.890010416666666,3.390125,2.8318433333333335,0.8501566666666666,3.98368,1.19415375,7.463775833333333,4.6319325,2.899755,1.19415375,2.72672,3.065,2.0235375,5.7133087499999995,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,0.163318,4.54251,1.709555,4.765625,4.85747,1.818572,4.819405,4.657265,5.20445,5.05164,3.8488967857142855,3.159735,4.30564,2.5347,7.3136399999999995,4.637655,0.7593,1.3654899999999999,1.509242857142857,3.6494666666666666,3.6494666666666666,3.344711666666667,4.15747,4.749275,4.267735,4.2993,3.5687333333333338,2.1390833333333332,0.6684971428571428,3.903185,3.5359,2.947605,4.201245,3.18931,3.2780225,4.78875,4.184385,6.905452500000001,4.07032,5.1404,5.86285,4.62112,1.4556,3.824815,4.597494666666666,35.77517853066378,1.527165,4.40587,4.12407,4.515955,4.14759,4.5603,5.23075,0.3987266666666667,4.900105,4.36515,2.25661,1.75559,4.05448,1.6954275,2.33188,2.63694,1.6903,3.068995,2.4516,3.62167,3.48314,0.6164115384615385,3.721325,3.5256,0.47621736842105267,2.5713266666666668,4.05237,2.48189,3.726235,1.770385,4.790425,3.67682,3.10497,3.90691,3.547145,4.56629,3.214335,4.259445,2.0921925,4.597494666666666,3.60653,4.058105,3.45567,1.826802,4.89496,3.522565,7.020943333333333,3.10729,4.70691,6.7792575,4.682841,2.2969475,5.12695,7.684140000000001,7.349476,2.71285,2.464085,5.13395,5.772953333333334,4.602725,4.110005,5.65175,2.1815575,2.348325,2.29732,60.72087430604698,5.28565,4.243165,2.4056075,0.991598,2.97278,2.89134,3.4669333333333334,0.9597666666666667,4.8271,0.7704555555555556,7.761506785714285,1.9472639999999999,3.312663333333333,1.76796,2.611225,2.471156666666667,2.3592733333333333,2.491423333333333,2.1281833333333333,3.1270399999999996,1.4366633333333334,5.177396666666667,3.6547666666666667,1.52263,2.498623333333333,1.3877499999999998,1.468,7.21251,5.6368,3.08661,5.7358,5.8896625,1.5484142857142857,3.4527666666666668,3.954655,1.6240675,5.033,4.174945,3.917035,2.309595,3.047851666666667,3.3599666666666668,3.88055,5.418,3.945175,4.719,2.00307,3.584565,4.545,3.27548,1.6271,4.67963,3.14237,4.18463,4.841455,3.684255,4.090085,4.839315,4.23414,4.17353,4.72272,3.872825,3.1705666666666663,3.785655,4.50338,2.91788,4.445165,3.78211,1.64442,1.64442,4.330755,5.08245,5.42475,4.473195,4.79612,3.554733333333333,2.777355,4.312205,5.0007,0.7124718181818182,5.23855,7.3468800000000005,5.39375,5.70755,1.3785222222222222,3.1634,0.7376916666666666,0.7376916666666666,0.7376916666666666,3.495395,3.3978333333333333,3.2904633333333333,3.4119333333333333,0.9609730000000001,5.08845,4.70738,3.432215,1.8584425,2.0889025,4.11594,4.33732,3.67176,3.4099320000000004,6.6585,3.66972,2.5416833333333333,5.09235,6.70435,2.002725,4.11796,3.578695,2.993755,4.329815,4.40392,4.74527,5.4737,3.656495,3.9998022222222227,2.191266666666667,2.191266666666667,0.6883072727272728,9.222194,2.05581,6.3684,5.51465,4.87048,4.70028,3.63027,3.141495,4.91889,7.638752500000001,5.675316666666667,2.0590333333333333,4.434215,1.17775,3.61283,2.1119933333333334,1.0261411111111112,1.2481285714285715,2.82412,3.3537666666666666,2.795923333333333,1.319967142857143,2.92116,3.2538300000000002,0.9508033333333334,2.8750133333333334,3.32811,1.5869360000000001,1.7028240000000001,3.402233333333333,3.1013366666666666,3.2307900000000003,2.63395,1.8632300000000002,5.27365,5.11545,4.30144,4.816395,4.91988,2.94958,4.518435,5.6231,5.01745,4.085915,4.213585,13.71296,7.77333,3.085596666666667,3.49233,2.6185033333333334,3.74574,2.98891,4.44519,1.3248866666666668,4.79108,4.403605,1.2827216666666665,3.44559,3.0878633333333334,4.36222,4.073035,3.77553,6.9277,7.019056666666667,4.274225,1.70265,1.70265,1.70265,4.89721,1.1176333333333333,1.400625,0.5289933333333333,4.62357625,3.1032833333333336,4.205355,0.975873,1.10167625,3.48048,4.381015,4.141035,16.732006023809525,5.12054,4.506945,7.08051,2.9013266666666664,3.95988,3.9479,0.9515577777777777,1.2683175,4.439885,3.847615,4.823645,4.38892,4.894945,4.3516,2.625099333333333,3.302305,5.48935,0.5918249999999999,5.08745,2.301335,4.476275,5.86145,3.631933333333333,2.536113333333333,3.920723333333333,1.67174,4.24527,5.9863,3.102516666666667,2.875345,4.64438,5.13765,5.3006,3.82805,3.73681,4.167115,5.27665,4.90342,4.82519,5.4442,3.807715,1.3067585714285712,1.70566,6.758391333333333,5.25445,4.745215,5.16635,2.5071,2.6727399999999997,2.5439833333333333,5.48398,1.775965,1.9374,3.2913866666666665,3.1830966666666662,3.4378333333333333,4.431595,3.869,5.678065,1.523495,4.652945,0.8996149999999999,3.944595,4.01886,1.6573449999999998,3.891635,0.96179,4.628505,5.35705,4.97967,4.337345,3.622016666666667,3.911455,2.9296633333333335,5.58255,5.28215,2.9828650000000003,3.92291,2.403145,2.49169,1.901815,2.634515,3.673295,5.60555,1.03766875,4.48152,1.37489,3.179855,1.5570066666666669,1.03766875,0.22002702702702703,4.439635,2.867405,2.51856,1.7625933333333332,2.58592,1.0855925,4.05299,3.343295,4.50244,2.4050233333333333,6.3039,6.673385000000001,3.0476233333333336,3.3712666666666666,2.6962733333333335,0.882903,2.1691266666666666,6.20555,4.750765,4.72,5.14765,2.386676666666667,1.2699833333333335,3.65447,1.5811875,2.2627625,1.6427375,1.8701225,1.58107,1.82742,1.8673525,1.797285,1.828285,1.3057828571428571,1.78706,1.71745,2.0719925,2.1347725,2.44447,0.5434439999999999,1.787146,3.499966666666667,3.5105,2.020925,2.2102033333333333,2.053215,4.78109,2.2042966666666666,2.537805,2.77563,5.57545,3.2531,2.83165,4.82273,1.6969863970588235,4.277615,22.9577855,4.93919,4.82626,4.979575,3.2184066666666666,3.79144,4.44139,4.008265,4.954605,3.139466666666667,0.76263125,4.259575,4.9988,4.122635,3.986625,1.75654,2.4521366666666666,2.5755233333333334,2.25658,1.5654571428571429,2.9437333333333338,5.68885,4.032495,3.22327,4.15153,4.83288,4.06275,4.471055,1.339575,4.35327,4.27215,4.910065,1.556774,2.80143,1.9708525000000001,1.9708525000000001,3.66556,5.0287,2.48509,2.968443333333333,4.042525,4.115095,6.2848275000000005,4.36855,2.194645,1.2683175,4.121105,4.224165,3.2079400000000002,2.3907195238095236,2.3907195238095236,3.2400800000000003,4.36053,4.31092,5.144545,2.254015,3.3376406666666663,0.5950866666666667,0.5950866666666667,0.5950866666666667,3.98651,3.522395,4.212958333333333,5.078,1.800675,5.2756,5.05085,4.256615,3.99523,4.742805,4.140905,1.5141142857142857,5.2044,4.774225,0.4905592857142857,4.3376,5.00975,1.7861500000000001,5.80855,5.48295,4.71669,4.3045,3.62927,3.017685,4.75524,1.606894,4.283075,1.6377566666666665,4.595815,5.81385,1.2901125,3.11268,6.9567049999999995,4.78859,3.810166666666667,2.5158,4.421685,5.7187,3.7429333333333332,7.475153333333333,4.452055,2.2040366666666666,3.193186666666667,2.8936533333333334,2.9674333333333336,3.3441333333333336,1.7825133333333334,4.528425,0.750215,1.7693025,1.7693025,3.17763,4.629185,2.365935,3.06446,4.594035,4.6277,4.26867,1.4742333333333333,5.513007583333334,4.557415,5.22115,4.168775,4.553272333333333,4.065857,0.48741533333333337,2.4445455714285713,1.0535725,0.48741533333333337,4.143755,0.8309955555555555,4.590485,4.228,6.575678,2.00727,1.0213425,1.05497,2.088595,2.9939966666666664,1.76618,2.22617,3.158955,3.67632,2.01977,2.27188,4.797755,3.5093075000000002,3.923525,4.97976,3.67472,4.675875,7.158313333333333,4.9474,3.29982,4.608545,3.68495,4.88992,5.10335,6.2740575000000005,5.3454,2.53858,1.0994511111111112,4.660075,4.320415,3.83845,5.1764,4.578725,5.1081,2.93617,2.8432033333333333,3.2822600000000004,2.92385,2.6065133333333335,3.313026666666667,3.562466666666667,3.00747,4.32993,4.752235,4.36997,5.13365,2.9519366666666667,3.10645,2.945425,0.7153,4.69699,3.792755,4.64724,3.296533333333333,6.12833,3.687935,5.21805,3.89451,0.7317038461538462,0.5549021428571429,4.1578,3.047711,4.204905,4.905755,4.794095,1.845996,5.0188,4.57214,2.934366666666667,2.5773366666666666,2.3261125,2.3270412499999997,3.5091666666666668,3.404166666666667,3.17037,3.3711,3.5298,2.758275,3.22301,4.232166666666667,4.5069225,0.5491675,0.5491675,0.5491675,3.3171539444444447,3.6806,3.431433333333333,2.6610366666666665,2.8298633333333334,1.19297625,3.0220966666666667,2.9709533333333336,2.0139125,2.51931,2.5281833333333332,1.0020966666666666,2.8742616666666665,4.58359,9.479789583333334,1.5987415833333334,0.5551280000000001,3.324,0.5551280000000001,0.5551280000000001,0.5551280000000001,0.5551280000000001,1.9764825,4.12809,4.4548,5.1876,6.0922,3.0227833333333334,2.950086666666667,3.2326387500000004,3.4132433333333334,5.72395,1.3193183333333334,2.44765,3.2832066666666666,2.8881033333333335,3.2209233333333334,4.37933,2.36332,4.3363,1.2563,4.556875,5.75035,4.39094,0.854845,0.667689,0.667689,0.8749102173913044,1.7297552173913044,0.8749102173913044,0.8749102173913044,0.29876521739130435,0.29876521739130435,0.8749102173913044,1.4431566666666666,2.5660000000000003,2.732805,3.3731333333333335,2.48714,2.4909833333333333,2.8432099999999996,2.576773333333333,4.403125,3.462875,1.851715,2.19486,1.65308,0.1757056093519882,0.1757056093519882,0.1757056093519882,0.1757056093519882,2.3772866666666665,2.709346666666667,0.866462,4.89729,0.75262,1.7214759999999998,4.7892025,4.91421,4.79007,3.0706,4.436255,3.988765,3.111076666666667,1.1358625,3.771525,4.569835,5.8838,2.331525,1.6484566666666665,1.8048066666666667,3.2017966666666666,1.4982133333333334,2.659596666666667,3.0368033333333333,3.0604633333333333,4.900045,4.065645,3.0844,5.3233,2.52577,4.641875,5.09505,4.48905,4.43103,5.325,5.570316666666667,5.439840833333333,3.176544,5.806298333333333,5.0313,4.74656,4.368645,5.09075,2.3237825,2.9253,4.211825,5.235,4.391405,3.907915,3.430615,4.48759,3.92045,2.3158499999999997,5.26185,3.36831,7.2586,6.00085,6.0844,5.1171,1.4922714285714285,1.0584099999999999,0.6861753846153846,1.7939260000000001,4.732305,4.74845,3.84822,1.7044339999999998,3.50161,2.90507,4.612675,5.336,5.991733,4.039845,3.056765,1.819366,5.03241,3.74864,3.45854,1.8795825,1.048845,3.92123,3.45616,3.6070925000000003,3.52301,2.262885,4.45389,1.6570099999999999,2.92084,2.336165,3.750785,3.775625,4.889455,2.0745725,1.59271,5.57455,2.8603199999999998,8.64212,3.005975,4.81262,5.8429,4.61243,4.97369,4.15603,4.75045,2.2008525,4.92469,5.3161380000000005,2.69265,4.461275,4.462035,7.798114999999999,4.97618,3.378,4.242885,3.906325,3.5093075000000002,3.343825,4.94398,5.5915,2.4332075,3.014806666666667,3.4827999999999997,2.219455,2.46988,4.636905,5.9971,5.17405,4.649495,4.905435,4.374975,5.8436,0.63051,3.266783333333333,1.418032857142857,32.45003948725414,2.148795,4.56654,2.749875,4.680025,1.872784,2.3950133333333334,3.635663333333333,1.5020833333333332,1.5020833333333332,1.5020833333333332,1.5020833333333332,2.13358,3.21447,0.4143688888888889,7.741307638888888,0.4143688888888889,5.1872,5.1894,2.2325025,5.5218,2.4448225,3.8298406666666667,2.39764,2.3042599999999998,2.5336233333333333,2.0036366666666665,0.6420123076923077,2.514273333333333,0.7353416666666667,3.2127866666666667,2.300593333333333,2.315076,1.1925666666666668,2.315076,6.3199,8.339275,4.93391,4.43352,5.35365,6.2904,7.58711,2.918685,1.805855,1.805855,2.3057966666666667,5.22965,4.024125,4.596565,6.63719,4.28983,3.418245,3.87952,3.39005,3.287665,2.27799,1.301312,2.018245,4.621015,4.383325,5.342266666666667,1.958145,4.755655,1.769422,3.23855,1.6407,3.500633333333333,3.4821666666666666,3.171753333333333,3.1746833333333337,3.28946,5.21775,0.7091253846153845,3.301335,3.6996333333333333,3.040926666666667,2.17402,4.3684393749999995,3.295923333333333,2.976986666666667,5.24049125,3.71768,4.83716,3.99538,3.414375,5.01085,5.46545,2.2288466666666666,6.0292,2.2287096666666666,2.45677,3.2401933333333335,3.1555066666666662,3.296746666666667,3.082585,1.92433,3.2192347727272725,4.81611,3.4638225,2.670899,2.670899,2.316855,3.564175,3.721805,0.5318290909090909,2.891135,2.926195,8.03804,0.9143181818181817,4.785,3.71333,5.06155,3.575065,3.970515,2.15186,3.86309,2.84196,6.2388,2.8106999999999998,0.97462,3.927735,2.5334266666666667,4.09108,3.056146666666667,3.443285,3.702085,3.99506,4.933913,3.238915,2.190025,5.40605,2.2867166666666665,4.64649,5.4072,4.89099,4.60883,4.14097,2.81747,2.063826666666667,3.2794033333333332,2.94835,2.7583749999999996,3.6277333333333335,2.7721071428571427,4.932546666666666,3.0564933333333335,2.70814,7.520065833333333,5.612839583333333,4.1378125,3.1666433333333335,4.0574666666666666,3.885445,3.430485,2.36951,4.61287,5.5589,4.962005,1.5878766666666666,4.629575,3.0487800000000003,6.8976125,4.6978,8.978911666666667,4.09937,3.160425,2.6445,3.965975,5.976715,7.28379,3.63869,5.64897,4.57698,3.00868,3.716315,1.639686,5.042762,1.5741949999999998,4.272105,4.51759,3.7012666666666667,0.8877666666666667,9.792333333333334,1.3044333333333333,1.898575,2.41968,1.7189666666666668,3.351233333333333,1.2998049999999999,3.37775,3.45584,3.1228700000000003,4.24993,1.140935,4.262415,1.4509183333333333,2.631243,3.59113,4.186125,2.2549,4.851102916666667,2.072064666666667,7.83541,4.20683,2.85184,3.79245,3.22927,1.3532108333333333,7.06455,2.798435,3.166555,2.281915,3.8874,2.097365,3.1273775,2.02773,3.79806,1.2975525,4.942365,4.04012,3.9367,0.935538,2.929664,3.682855,5.65425,5.13929625,1.418438,1.418438,6.0826,5.2058,3.881005,3.669665,3.154205,9.83048,4.210045,5.4661,4.41551,2.49911,1.786204713261649,0.34004500000000004,0.18334193548387098,0.5150930465949821,0.9310666666666667,0.603031935483871,0.18334193548387098,1.158355,0.3317511111111111,1.2711116666666666,1.6734480465949821,2.61225,2.1083125,2.0119633333333335,5.37475,6.8582833333333335,5.03845,5.58165,4.788715,5.31465,1.2393166666666666,5.2148,4.023485,6.09075,5.62405,5.7774,5.79125,5.81065,5.86275,1.4181800000000002,1.5192285714285716,2.07008,6.316643,1.541758,5.6912,5.103,7.354175,5.1706,6.10365,5.09075,4.66785,2.83685,6.09965,5.8307,6.591754999999999,5.0186,6.03685,5.5148,3.87333875,4.307885,3.6697333333333333,0.9778269999999999,3.8033333333333332,4.61942,1.36,3.7526333333333333,5.0762,4.9165849999999995,5.6503,2.542225,3.25301,2.36404,4.953825,2.18016,3.721335,1.2810733333333333,3.145225,3.647735,4.158325,5.03105,3.446105833333333,0.6801400000000001,6.13345,1.04266,3.99822,3.357533333333333,3.61196,1.9263866666666667,3.69346,3.6029784615384615,3.878833333333333,4.34143,15.463943071428572,5.57883,2.3360425,8.1167,1.4214975,3.718375,2.8696800000000002,2.8380466666666666,2.294563333333333,0.24586304347826085,3.02052,4.804015,1.7651039999999998,2.2616066666666668,3.7353666666666663,1.7171675,2.6510333333333334,1.5852,3.493645,4.90349,4.09581,4.66342,0.44999285714285714,2.26596,4.163175,3.78883,4.19838,4.900555,4.25204,4.17884,0.5619858823529412,2.4848866666666667,2.4848866666666667,5.47175,5.2077,4.979695,2.8567,3.928433333333333,3.1266933333333333,5.11465,4.1528,5.634933888888889,4.98972,4.83142,5.23525,2.521775,2.25642,4.77457,4.724215,3.8825,3.537505,1.812834,4.89258,4.11437,3.5309,4.959795,3.75572,4.54191,0.6329713333333333,3.94268,0.7105983333333333,3.1007166666666666,4.565315,4.48099,18.433878095238097,4.39978,3.89082,3.0457300000000003,1.20877375,3.2892566666666667,2.4275166666666665,1.478812,2.41442,2.468215,5.26235,2.201353333333333,3.93262,5.3706,2.2843225,4.66489,3.1162433333333333,4.725305,5.8777,5.7063,1.95282,1.901095,2.39188,5.50685,4.752905,1.1834555555555555,5.8192,4.206655,5.67845,4.589285,1.6014833333333334,4.4616,3.787395,3.703355,4.463505,4.576995,2.9550300000000003,0.8010575,7.754005,1.390598,0.21187472222222223,0.21187472222222223,0.21187472222222223,5.1398,4.415075,2.54593,4.499045,3.756355,4.769485,4.13433,4.364046666666666,8.867133333333333,4.37685,7.352838333333334,0.8534525,1.21344875,2.5742,5.33765,4.08837,2.1381433333333333,5.14205,5.27535,3.42008,4.80644,4.7406,2.3164966666666666,4.499745,5.496392,2.25603,2.7541499999999997,2.815103333333333,2.637155,5.7505,3.9073,0.6744521428571428,4.274655,3.79161,4.303425,4.792703333333334,4.755145,3.6478,5.32705,3.73247,13.66634625,5.02825,6.6317325,2.97415,6.8843,5.0464,4.074375,2.4035825,2.321340833333333,9.16492,2.05619,4.103266666666666,3.8670666666666667,3.7781333333333333,2.7863933333333333,2.9608399999999997,2.024585,2.1524325,2.9704533333333334,1.9483679999999999,3.9901999999999997,2.89638,2.7973433333333335,3.5957666666666666,3.7510333333333334,2.2477799999999997,2.2477799999999997,2.48338,3.6732333333333336,3.378933333333333,3.1222666666666665,3.0313199999999996,3.900933333333333,2.6857866666666665,2.7800833333333332,3.381266666666667,2.715033333333333,2.4150025,3.6634666666666664,2.951173333333333,1.7844200000000001,4.041766666666667,2.42581,2.48434,2.8557966666666665,2.491573333333333,3.3773666666666666,5.639518333333333,2.3906933333333336,3.4674666666666667,1.8468600000000002,12.156334666666666,3.1506266666666662,2.1396266666666666,2.0608,1.1471333333333333,1.592968,5.99155,2.887842,2.887842,1.858318,1.4569066666666668,3.5403666666666664,4.343555,2.20924,1.657005,1.681022,4.388295333333334,3.5181,4.151,8.28351,2.72677,3.314,3.025535217391304,4.4084666666666665,2.4150025,3.4008000000000003,3.02582,3.456566666666667,3.3963633333333334,0.88692,3.3327195,3.346966666666667,2.729886666666667,4.44832,3.249363333333333,0.7469854545454545,2.0224040476190472,4.31313,2.65084,3.4690999999999996,1.637505,1.637505,2.0500325,3.8573866666666667,1.01709,2.2300875,5.058633333333333,5.058633333333333,0.6362333333333334,6.752045000000001,4.037085,4.44573,5.0657,1.2113385714285714,3.6037,3.6802333333333332,5.42294,7.0791900000000005,3.089513333333333,0.701519,3.170576666666667,2.76022,3.2088200000000002,2.5803966666666667,2.5687966666666666,3.0651499999999996,2.4050575,2.40006,0.8554781818181817,3.622095,4.635737428571429,1.3330466666666667,1.5597714285714286,5.1891,2.38279,1.622405,4.460245,1.887716,3.588305,2.4882425,3.634133333333333,9.329159166666667,4.667145,5.039,5.3514,2.543925818181818,0.901362,1.920212,6.9384500000000005,1.58075,4.100765,4.50901,3.765245,21.503917083333334,2.933263333333333,1.43227,1.24820375,3.2212,1.4625733333333333,4.20694,5.2077,3.5713999999999997,3.276173333333333,2.3303933333333333,1.4660133333333334,2.9366766666666666,0.557258125,3.039146666666667,3.852133333333333,3.0247933333333332,2.720333666666667,2.6805066666666666,2.54096,2.3536466666666667,3.0770999999999997,1.885306,3.6789666666666663,1.6040766666666666,3.59665,4.106165,2.5911399999999998,5.0287,3.866695,4.129095,5.06285,4.98442,3.3096833333333335,3.2470266666666667,2.6508566666666664,1.1971214285714284,1.1971214285714284,1.1971214285714284,2.0182925,3.1157733333333333,2.510073333333333,2.6550433333333334,2.5512099999999998,2.0980175,3.53302,4.09693,3.50947,6.21075,3.75825,2.237365,1.8181775,1.2149400000000001,2.3684433333333335,3.91395,2.4793933333333333,2.5796266666666665,2.707683333333333,2.2706066666666667,2.6070166666666665,2.712566666666667,3.0504,2.7699700000000003,2.5008433333333335,3.1032166666666665,2.3128166666666665,2.0775575,2.1627325,2.071665,3.1744033333333337,3.28228,1.910335,3.64659,4.305965,3.0513066666666666,2.7660640384615385,5.804883333333334,4.67403,4.897355,5.9077,4.961365,4.10798,6.9622075,1.233745,4.239585,2.48925,5.17685,5.13025,3.370915,4.465945,2.2570775,7.525965,3.89367,0.85505,8.38572,4.88218,6.173446785714286,4.77236,2.986541,2.0303025,5.33465,4.586705,4.61661,5.06925,2.858915,4.345735,4.614295,1.65308,4.423955,2.68705,1.4411716666666667,4.988585,0.6555176470588235,4.264964166666666,4.076325,4.601355,3.591735,1.81914,3.825425,1.94197,1.278,3.18038,3.4347666666666665,3.2647133333333334,6.971351794871795,2.0033575,7.0974900000000005,10.30239,6.42424,3.9262,1.3000157142857145,3.1859366666666666,1.3000157142857145,2.70408,2.105916666666667,0.3310988235294118,1.1590213235294118,0.3310988235294118,0.3310988235294118,0.3310988235294118,1.1590213235294118,1.1590213235294118,0.3310988235294118,0.8279225,5.3689,3.27159,3.090235,3.32679,3.883265,4.199135,3.247682666666667,1.539554,6.816085,3.0245433333333334,4.379465,2.7667800000000002,1.025409090909091,1.30805,5.11785,4.284345,1.0745866666666666,1.73368,0.7086654545454546,3.2117403463203464,4.263625,5.2382,3.855566666666667,5.291890833333333,0.5948553846153847,4.55537,3.6301862500000004,3.4055999999999997,2.6489866666666666,3.2949933333333337,2.34315,3.1958633333333335,2.54769,2.71384,3.386095,5.59195,4.726765,1.5421939999999998,4.514095,4.39963,2.99601,3.65605,3.09606,0.37077000000000004,5.1873,3.581895,3.87148,3.643302,4.38181,3.84012,1.903555,3.73381,3.974075,9.256540000000001,4.81741,5.8723,4.01201,3.6145250000000004,0.845995,2.26429,1.609105,1.68388,1.7358466666666665,4.992215,5.1784,4.350665,4.42362,3.4099320000000004,2.597478333333333,0.9344666666666667,3.987145,1.1755366666666667,1.118275,3.091975,3.45266,4.92683,1.2678125,2.8834466666666665,8.311020000000001,3.18755,3.878274166666667,1.2392075,4.242265,12.022133333333334,3.338465,3.86129,3.107845,4.283435,4.930535,5.16655,2.08742,4.7768,0.6443030769230769,4.82989,2.247785,1.8012375,1.8012375,3.340066666666667,4.61614,1.7414833333333333,4.66163,1.7073857142857143,4.602375,2.9853225,3.2636233333333333,4.648155,3.384955,3.7444776666666666,2.493645,2.6882651666666666,2.6882651666666666,11.678065,0.789659,4.11109,3.4802999999999997,2.1189575,1.97636,1.0724742857142857,1.351525,1.2625114285714287,2.00611,4.93856,2.428465,4.50854,2.32136,4.635675,4.436235,1.7076666666666667,1.9555525,0.9509416666666667,5.791454,2.23776,2.220455,1.807514,1.8049880000000003,1.24820375,2.6979820833333337,3.42731,2.734643333333333,2.9216366666666667,2.3345466666666668,2.58792,1.81713,2.9305133333333333,2.6813833333333332,1.4459266666666668,1.9297233333333335,2.8381633333333336,3.304263333333333,2.2083266666666668,1.1969366666666665,2.672273333333333,2.750253333333333,3.456,0.32692736842105263,0.40129166666666666,2.1651599999999998,2.373013333333333,3.0949,3.0371866666666665,2.64212,5.10985,6.1836,4.350805,4.41812,4.247525,3.877905,2.5442666666666667,3.730855,0.6645972727272728,0.0739634090909091,3.7341,0.0739634090909091,4.090105,3.389865,5.64975,3.34821,6.092,5.13535,2.47449,2.657033333333333,1.5216616666666667,5.74755,5.2103,2.5294266666666667,4.96556,1.97149,4.604555,2.0869852173913044,3.176676666666667,3.0850333333333335,4.760895,4.363639166666667,3.11599,2.3366866666666666,2.3366866666666666,3.972465,7.61355,4.428535,2.320323333333333,2.0818666666666665,4.523405,2.799235,4.972915,4.296045,1.0851044444444444,4.15571,3.2258533333333332,3.0091733333333335,4.110845,1.1314366666666666,2.41191,4.09435,4.31873,5.28935,2.7771,3.62173,3.996025,3.806995,4.11269,5.15685,4.210965,3.3945905555555558,3.4876,2.9120899999999996,3.12608,2.934903333333333,3.3757333333333333,4.076345,3.036823333333333,5.447233333333333,4.54947,3.584835,4.84873,4.558935,3.804955,1.4708700000000001,1.2588425,4.088035,3.6216666666666666,1.5128933333333334,2.86167,3.227625,3.12914,4.074392222222222,3.23995,2.9922241666666665,13.221496527777777,2.10993,1.900972,4.24999,1.189246,3.1119833333333333,4.653115,4.934115,3.201345,1.0539555555555555,2.2247,2.4050233333333333,1.487622,5.54395,0.8731975,0.8731975,3.3333500000000003,1.73541,1.5979400000000001,1.7736225,3.280005,2.93977,1.859085,2.698275,3.7586516666666667,3.1722333333333332,3.1037933333333334,1.990802,6.4042,5.89505,4.181635,0.7380369230769231,3.52201,4.54359,0.9259636363636364,5.1463,3.4219333333333335,8.806283333333333,4.58679,4.56532,3.40974,1.60802,2.88381,5.17215,5.1963,4.22678,3.952175,4.4132,3.39344,3.5142333333333333,3.5142333333333333,4.11426,3.0504675,5.3678,1.67664,5.43029125,5.76661,1.7861500000000001,4.52082,1.1168799999999999,5.0602,4.4355,5.02415,5.12025,4.291505,2.734105,2.4767275,4.632365,4.236215,5.04435,5.4007,1.922585,1.332204,3.856995,2.2276933333333333,5.3972,3.35647,3.32131,6.918805,3.71542,4.515175,4.833815,4.54593,4.78113,7.768695,3.75703,2.989835,10.08025,3.82216,0.6606142857142857,2.192894713064713,5.3197,0.6185206666666667,4.91721,4.44235,4.90276,4.52152,3.55325,3.65771,4.890345,5.1933,2.07079,0.7136435714285714,4.43015,4.77281,4.796665,4.448495,2.8201699999999996,5.2883,3.774035,0.791682,4.202255,4.414845,2.3553075,3.097296666666667,4.552125,2.269375,5.42845,5.04245,4.08198,0.89618125,3.3645333333333336,5.877646666666667,5.877646666666667,9.094100000000001,1.992934,0.79485625,0.79485625,25.946455666666665,2.75085,8.149773333333332,0.3543325,1.24186,3.3381666666666665,0.977059,3.53334,3.90273,2.559375,2.559375,5.0514,4.53728,3.48842,3.25609,3.25609,3.41082,3.875535,4.6512,3.2455266666666667,2.073723333333333,2.477923333333333,4.5484100000000005,1.94747,3.351195,2.9954300000000003,3.1246614285714287,3.1246614285714287,3.7954000000000003,0.8869388888888889,2.4725800000000002,1.50655,3.4197666666666664,2.7965400000000002,3.1078233333333336,2.9115066666666665,4.90161,2.315885,3.116913333333333,5.570107,1.5540699999999998,2.156155,2.86331,2.55163,4.399845,6.006103523809524,1.2464766666666667,3.6172,2.22241,4.78471,6.31206,1.5479075,4.610661333333334,4.966066666666666,3.1929614285714285,4.5506,1.0001200000000001,1.556774,3.35716,3.8411714285714282,1.32209,2.5363,1.681005,1.56559,2.71372,3.332572,5.1910145,1.1300216666666667,1.4527428571428571,2.96602,12.36209,4.3024949999999995,2.65618,1.2216914285714287,2.7114635714285713,1.0780485714285715,3.3152000000000004,4.330508333333333,4.907575,3.362633333333333,5.1799,1.487285,3.7510666666666665,4.14289,2.843436666666667,3.715116666666667,2.46003,0.9748466666666666,2.4646233333333334,2.7819966666666667,8.355766666666666,3.4818670000000003,2.6326266666666664,0.6980120000000001,4.444166666666667,3.2874766666666666,1.415418,5.761621666666667,2.152355,2.749416666666667,6.14365,1.3423444444444443,3.0440133333333335,1.069709090909091,3.0772399999999998,4.41867,3.146433333333333,3.1433866666666668,2.1530366666666665,2.7922233333333337,4.896355,4.7678,5.3149,1.782225,4.250525,4.04107,4.4808666666666666,3.569556,2.1895933333333333,4.043251333333333,1.0026579999999998,2.7751685714285714,4.755485,2.6279,4.167982083333333,1.5263375,2.5427500000000003,1.9619039999999999,1.9619039999999999,7.1071599999999995,3.12918,5.415473333333333,3.321405,1.7908099999999998,2.8030914285714283,4.735519999999999,5.488666666666666,8.417145,4.876872666666667,2.6942535000000003,2.12356,2.2668291666666667,3.986423333333333,3.639405,1.634662,2.111455,2.3826257142857146,1.169965,3.2519533333333333,19.838099999999997,3.22701,2.9165799999999997,3.4409333333333336,2.79735,2.5592333333333332,2.79745,3.19143,3.163653333333333,3.2878333333333334,2.495366666666667,5.711502,2.542613333333333,3.6695005714285713,2.5798085714285715,1.7608085714285715,1.3920466666666667,4.016481111111111,2.0418075,4.103755,4.5543,3.58022,2.867350833333333,3.2576666666666667,2.91311,3.28492,3.339366666666667,3.683566666666667,3.24145,0.8392181818181819,5.01295,2.74832,3.5856666666666666,3.0053316666666667,2.1197425,2.2445625000000002,2.2445625000000002,3.6033158333333337,2.1078758333333334,4.722775,4.250365,4.257675,4.709585,4.96082,4.6958275,4.6958275,4.03501,2.9745266666666663,4.358115,2.744905,1.668796,2.9109866666666666,4.420345,4.624255,2.587975,4.029375,6.923679999999999,3.522733333333333,6.528364392857142,2.951585,0.762058,0.762058,3.239075,4.56039,3.678815,3.341556,2.2910066666666666,1.7980866666666666,2.4421933333333334,2.9730566666666665,7.2124559999999995,1.5718066666666666,4.27523,3.651733333333333,3.63031,5.11385,4.97808,4.928979354166667,3.3924333333333334,2.3624325,4.958535,3.63644,2.094075,1.0584,4.6732,2.78315,6.159816666666667,3.376666666666667,2.446835,3.31125,3.6523,3.944265,4.756345,3.33747,4.59184,3.407835,4.040415,3.728405,3.24405,3.320035,4.6379,2.3830833333333334,4.701495,3.78439,5.0114,0.6495533333333333,2.242175,1.96451,2.2237875,1.7206075,2.81061,2.6346933333333333,1.78362,5.11695,5.5555,2.212283333333333,4.17985,4.64414,2.47155,5.6442266666666665,3.9163008333333336,5.23335,4.97024,7.267473333333333,2.3772733333333336,2.79021,2.0458233333333333,3.2326366666666666,2.16674,1.662165,3.837655,3.332215,5.24545,1.0657388888888888,2.89335,4.716745,2.369495,5.7515,3.562665,2.976785,3.6125333333333334,3.31995,2.0318325,1.82151,2.664725,2.3552,3.029275,1.8795875,2.564447142857143,2.564447142857143,3.537425,3.185625,18.64904357142857,1.0761533333333333,4.502510833333334,2.2103075,1.9160066666666669,4.15187,3.67659,2.035005,3.759095,4.612205,1.1463616666666665,1.1463616666666665,1.1993566666666666,1.69967,2.6894633333333338,3.0434966666666665,4.71335,4.161905,3.7914999999999996,0.534242105263158,3.6072387719298247,1.89557,2.06363,4.6741825,3.366305,3.863815,3.613595,4.501075,4.0853,1.8872775,4.325495,5.772953333333334,2.335635,3.707645,5.16435,1.9643,4.444965,5.4669,1.3702457142857143,1.980094,3.7770333333333332,0.8116771428571428,3.1612333333333336,4.47353,5.12995,4.75655,2.687525,7.790651666666667,2.9687666666666668,3.063663333333333,0.49255352941176467,4.22803,5.2977654761904756,3.221330952380953,5.4534,3.599685,2.717191777777778,1.8883079999999999,5.39256675,4.254145,4.70844,2.1866175,1.896855,4.51062,4.3209,3.02451,2.22661,4.233028333333333,7.08692,2.687875,3.64786,3.43974,4.325535,1.4779142857142857,1.4779142857142857,3.116123333333333,3.021793333333333,4.95696,4.834975,3.845585,3.83508,2.80815,2.191925,1.6508933333333333,1.4765428571428572,5.1118,6.237209999999999,5.6335,5.43575,4.637635,6.5089500000000005,4.36349,2.7076966666666666,4.034262,2.473593333333333,3.0327565,1.641694,5.0659,2.255193333333333,4.242675,5.5368,4.013445,2.6783699999999997,2.8603199999999998,1.600542857142857,2.54435,3.871,2.21724,0.59421125,3.3382,2.9843733333333335,3.00747,2.71501,2.38825,1.9075440000000001,0.7476636363636363,0.7476636363636363,3.8054333333333332,2.1914925,2.934,5.1588,5.5944,4.897525,3.66619,4.046085,4.296795,2.7436776666666667,1.26937,2.90345,3.196775,0.8901425,3.5857925,3.07997,3.16898,2.173645,4.010895,2.60543,1.9039866666666667,1.480342857142857,3.71709,8.237275,3.9028,1.7656858928571428,4.78847,4.286485,3.678695,3.2788,2.67628,1.7252599999999998,0.9942925,3.87782,2.4781958333333334,2.1053966666666666,1.6249666666666667,2.6447233333333333,2.1225333333333336,2.37528,2.73801375,1.4761,2.1613700000000002,2.134705,6.580685,5.686,3.965775,3.823,3.339755,3.0586533333333334,1.6462917094017095,4.6915,4.81255,2.22682,5.7484,2.17795,4.195585,1.2061555555555554,4.228945,4.556625,1.7386975,6.93993,3.435085,1.817445,1.9080875,2.08523,2.52725,3.652066666666667,1.4405883766233765,3.149093333333333,6.09055,4.891935,4.595265,5.74945,5.4957,4.961,1.01650875,4.957565,4.964075,4.173015,5.04495,4.162628333333333,4.72559,5.4405,2.979205,1.581065,1.581065,5.1993,6.229900000000001,3.106995,2.986353333333333,3.988065,3.883645,1.604104,4.35126,3.775545,3.6512,3.976615,2.963646666666667,2.8365733333333334,4.90189,2.34704125,11.151456084361717,1.7701533333333332,0.9999775,2.3482133333333333,1.6947375,2.549775,2.48844,1.9217020000000002,3.1502133333333333,5.1887,5.4949,3.05568,1.7000166666666667,6.449268333333333,1.30242,3.3686000000000003,0.523747619047619,3.976303333333333,6.06275,4.51265,4.697995,14.765620000000002,5.6002,2.830026666666667,3.0006866666666667,4.98432,3.4946,4.90597,1.3288125,1.6498083333333333,0.7393545454545454,5.7736,3.8413,2.03836,4.689679333333333,5.0057,6.11295,4.866965,4.57015,4.484505,6.1425,3.727205,5.08775,4.599695,1.7879079999999998,4.29012,6.1719,3.89712,3.93354,4.27033,3.969645,1.2540675,4.900535,3.790035,1.32,3.4539666666666666,3.2986533333333337,2.4157966666666666,2.95539,2.348996666666667,2.837073333333333,0.6860345454545455,2.95818,2.67418,2.6542966666666667,2.99401,2.7298633333333338,1.704675,1.4319633333333333,2.64735,2.49801,2.336575,3.5887666666666664,3.293203333333333,0.8197050000000001,2.6446133333333335,3.831575,4.474885,2.4375633333333333,3.700555,5.52185,5.58925,3.181875,3.67318,1.509242857142857,4.061975,2.614160555555556,3.971046666666667,3.00207375,4.97699,5.20415,5.2004,4.08824,4.275733333333333,0.969788,0.969788,2.3474480769230768,1.765825,4.155265,2.441559,2.441559,5.17445,5.66415,3.1648,1.23595,1.6624142857142858,6.15225,3.69358,2.8737633333333332,2.97609,2.748615,2.959815,2.8737633333333332,4.7243475,2.87101,3.15234625,2.53118,1.778205,3.046615,5.85205,2.53559,3.090875,2.930675,6.2834,4.26133,5.9475,5.9475,5.29455,4.45335,0.4486,4.85475,4.806265,2.8183,2.438125,9.062788333333334,3.1373333333333338,4.89698,3.76767,3.4998666666666662,5.52985,4.08401,3.3470950000000004,2.9337666666666666,3.2756966666666667,2.6819066666666664,1.832282,1.832282,3.54548,3.85381,4.02397,2.01158,1.9110800000000001,50.08551439393939,2.6188433333333334,0.8677927272727272,3.0575566666666667,2.1654075,3.4193,2.836536666666667,3.245423333333333,4.002325,3.0912466666666667,2.04258,1.00077,5.0615,3.084435,3.30263,3.951865,5.2327,5.10935,5.18985,5.5389,5.83565,4.806375,5.5674,6.433235,4.928555,5.68,1.9528025,4.268555,6.5557,5.5884,3.60157,3.719485,5.34175,4.02134,3.78459,4.789305,3.2409966666666663,4.0225,1.7235340000000001,3.348595,1.256122,3.019465,3.531415,3.383815,7.1170175,4.260335,2.19045,4.31677,4.436945,3.894325,1.12746125,3.210155,4.18082,4.633750476190476,1.116935,4.734595,1.645225,6.44265,0.6890411111111111,4.276857333333334,10.511041666666666,4.66684,4.355555,4.28502,1.8558000000000001,4.1024,5.83145,3.12844,4.253035,9.288999166666667,3.4886666666666666,2.4741633333333333,2.7529500000000002,2.7454033333333334,2.8879300000000003,2.8071344166666665,1.84148,2.5627,2.9290800000000004,2.8163066666666663,3.095853333333333,3.29219,2.157016666666667,1.80417,4.739095333333333,3.131766666666667,2.4785,4.89343,2.7588333333333335,1.2671125,2.157485,3.22526,5.026199999999999,2.619475,2.361527777777778,2.361527777777778,1.536215,1.3660625,2.01314,1.8409,6.299695,4.377505,2.6015,3.1299333333333332,3.3709666666666664,2.0159375,0.5383491666666667,2.1264499999999997,1.8334775,0.5501792307692308,3.706195,2.3872625,2.4611575,3.42074,3.9022275000000004,2.6901566666666668,1.6272900000000001,1.3096083333333333,1.905575,3.3218,3.525535,4.10622,2.834303333333333,4.309755,4.4176,1.1166545454545456,9.214335,2.52582,3.23301,1.31515,2.8385866666666666,2.44355,2.44355,2.44355,4.705935,5.6556,2.21535,4.90235,1.603106,5.746449999999999,1.691892,4.307765,4.467515,4.48771,3.917155,5.00895,1.86626,8.4513725,4.07766,5.20355,3.341275,3.9202933333333334,3.1189733333333334,3.1179166666666664,3.78476,2.3882933333333334,4.356999285714286,4.1309483333333334,1.56312,3.817685,1.56312,3.383585,4.273154166666667,4.6077650000000006,4.273154166666667,1.5344266666666666,5.87045,4.778005,4.495105,3.0858066666666666,3.0214966666666663,4.650705,3.058915,4.598215,0.5886228571428571,3.2059366666666667,3.1405133333333333,5.4735941666666665,4.536545,2.4331,5.42175,6.954406666666666,3.51055,3.00329,2.58676,2.1010566666666666,4.150165,4.047225,4.46752,2.31014,4.30481,0.888856,5.22715,3.15355,4.170425,2.7598633333333336,3.11314,1.9918333333333333,2.9710366666666665,2.7245733333333333,2.75658,3.78487,2.704375,2.704375,4.858456666666666,3.791055,4.840395,11.433625,1.0224111111111112,4.88699,2.5825566666666666,2.2125966666666668,3.315746666666667,1.400625,8.032371,3.8852333333333333,3.790395,3.8982799999999997,2.08568,3.7745333333333337,4.375512083333334,2.3432,0.43505666666666665,1.65076,1.4283875,5.2706,2.737235,3.0199,3.7304483333333334,3.49365,2.33837375,3.85569,4.435845,3.993165,4.715115,2.04959,4.82077,2.4104666666666668,5.679539999999999,2.997375,5.053,4.666225,5.0344,4.43373,1.94578,3.667655,3.474375,2.4812499999999997,3.236015,2.743275,3.005885,3.360765,4.357985,2.7655133333333333,4.933545,1.6796333333333333,4.25436,2.8537,4.871455,4.625485,3.966945,4.723065,3.333315,4.380165,3.97913,3.909595,2.1883933333333334,2.00346,2.792095,2.32002,0.8102566666666666,4.74497,2.01042,3.246715,2.6368,4.105145,2.80258,3.18789,2.916485,4.265345,4.7223999999999995,4.41156,2.94294,1.6120766666666666,3.416135,2.48204,0.7519355555555556,5.23285,9.534805,3.460585,3.318395,5.0841,5.02195,3.72116,1.98774,3.75982,3.735035,2.898705,3.16336,3.672605,0.59630875,1.3235,6.2943875,1.6754475,2.657165,5.755540999999999,2.542225,2.273925,2.729715,6.71799,3.013005,4.797055,3.52171,0.7249966666666666,3.234945,2.47186,3.71951,4.55045,6.398691666666666,0.695067,3.51105,7.51723,3.081755,1.3779233333333334,5.58567125,4.71271,5.4926,4.783925,5.0836,3.580335,2.7101933333333332,8.321760000000001,0.9076150000000001,3.425425,4.35731,2.821745,4.19041,2.262705,4.24019,1.5967533333333332,4.54571,4.217695,3.949955,1.99356,4.7807,4.55384,2.42553,2.122195,2.4077475,1.415418,4.044085,3.5713999999999997,2.01612,8.5329,5.65395,4.940035,4.9254,3.249015,4.19788,1.3807314285714285,4.73325,3.91893,5.4842,3.51447,2.4364966666666668,6.711116794871796,1.1115075,1.1115075,2.36804,0.9674642857142857,4.31739,2.8994866666666668,1.0111975,1.7903766666666667,0.5669591666666667,6.82494,0.9798725,2.655715,3.34449,3.917125,4.159785,4.63944,5.0643,5.47359,2.84283,2.922905,2.27834,4.609075,5.12565,4.307705,3.87348,4.158495,6.47945,4.278975,4.2321550000000006,6.874388,3.88699,3.9537125,2.359385,3.9537125,6.9151620000000005,42.547005743506496,3.540025,3.347745,2.99498,4.53867,4.38996,3.237085,3.325235,3.642065,4.427515,4.929435,1.8757666666666666,5.3113,2.596155,4.69135,5.26535,5.0189,2.11668,5.29105,3.89115,3.182185,1.6593959999999999,0.6707007692307693,1.8619080000000001,3.7984333333333336,3.5462333333333333,1.413225,3.5197333333333334,3.1281433333333335,3.133453333333333,2.9448566666666665,3.16159,1.538958,3.029476666666667,3.8559,1.887333951093951,3.1191600000000004,3.120754,2.665903333333333,2.80565,3.6124333333333336,1.154288888888889,4.9228,4.250675,1.2044066666666666,1.2044066666666666,1.2044066666666666,1.2044066666666666,2.8477548484848487,1.9342366666666668,2.285665,4.125535,4.69907,4.145665,4.95804,4.49083,6.1099,4.80408,2.365,6.2365,3.349665,2.5701,3.575245,3.918685,4.302025,4.80367,0.7695923076923077,1.4626857142857141,1.5413500000000002,4.680625,4.879415,3.159395,4.26296,6.022825,2.18852,5.07835,1.7124,4.60007,5.08325,1.5624900000000002,5.5623,0.7461308333333333,5.20365,1.687026,1.333075,3.795925,4.50732,4.651875,6.0152,6.26795,4.16781,1.4363139999999999,4.241795,1.4453275,3.66663,3.49979,2.717191777777778,1.771625,4.14862,1.7118666666666666,3.73883,4.808895,2.7895800000000004,6.21425,126.49920151443001,0.4874555555555556,5.48015,2.458693333333333,4.65675,4.371825,2.815015,1.6632375,0.3943157142857143,3.06669,3.55982,5.3512,2.61515,3.769045,4.371225,4.35935,2.82481,7.394946666666668,0.6629511111111112,3.170635,0.9338075,12.948459999999999,3.040595,3.471105,1.0242377777777778,2.85148,2.56133,2.1837575,2.88867,3.3759,2.14946,4.2969,2.558316666666667,2.17193,2.1299933333333336,5.34175,2.77628,3.30304,3.4632,3.58572,3.236375,2.1696766666666667,3.89957,3.472475,2.88901,1.1505444444444446,2.4647466666666666,4.2969,4.755475,4.87587,3.90995,5.8593,1.813255,10.40335,3.53199,2.48994,3.954455,5.08725,0.568602,0.568602,4.4217949999999995,4.4217949999999995,3.947295,3.8150333333333335,1.810951590909091,0.6493633333333334,2.916265,4.58472,4.40553,4.62342,3.81472,5.28714,4.837985,2.3431425,4.435235,2.51845,2.723825,4.757730833333333,1.779175,3.2318,0.6488342857142857,2.3291962857142856,2.3291962857142856,1.92678,4.94237,4.05807,5.45005,5.864891,4.891945,2.942805,2.060215,2.25526,5.236695,4.28513,4.870186666666666,2.755125,4.870186666666666,5.4957,3.520095,5.79435,3.86772,2.3003133333333334,2.6042166666666664,2.762776666666667,1.37345,1.4163075,1.6242725,1.807705,1.441695,1.5230625,3.4223666666666666,4.746155,2.44146,5.9279,2.939486666666667,4.583655,2.057885,4.12973,2.9321533333333334,3.2623366666666667,6.766833333333333,3.419833333333333,4.870977333333333,3.6102333333333334,1.3807325,2.5039700000000003,2.562136666666667,2.495503333333333,5.31105,4.2781199999999995,4.75654,13.537691801571235,0.8575833333333334,2.085161,2.511225,1.783326,1.3507185714285714,2.642525,2.561775,2.623325,2.620975,0.7506984615384616,2.0571975,0.5598947368421052,5.45935,1.81206,4.912725,4.968285,2.83495,6.200435,4.826415,9.43626,4.328905,2.83202,3.1019,4.714045,4.617415,2.890943142857143,4.72212,2.2270625,2.2270625,5.37575,4.30995,4.79985,4.015945,3.2522366666666667,4.267995,4.814765,5.02355,5.081,4.533755,4.37847,4.426805,2.17852,5.41445,1.4761733333333333,4.803265,5.0374,2.4192199999999997,2.74512,4.34077,1.457045,4.58213,1.722175,5.878044384057971,4.01357,4.23028,1.4754533333333333,3.5676075,3.5676075,11.97208,3.916725,4.969555,1.15232875,4.593375,2.6045,1.3862925,2.556575,2.14006,2.17661,1.8549700000000002,3.26453,6.1033,1.7214375,5.0554,4.783871666666666,5.2225,2.46145,2.315175,3.65847,4.4702,5.51565,3.82592,7.404873333333333,3.4869333333333334,3.026923333333333,0.45757444444444445,3.436485,3.74747,3.3943999999999996,6.573695,2.545576666666667,3.25034,1.2198533333333332,1.5638966666666667,0.59421125,1.65076,2.9426,1.5372666666666666,1.7542166666666665,0.70420625,1.227192,4.55855,2.28233,0.6369807692307692,1.55595,1.61373,1.7829339999999998,1.353815,2.570775,1.5638966666666667,2.69265,1.227192,1.227192,0.6369807692307692,1.5815714285714286,2.52424,1.32209,2.7484,0.6369807692307692,2.599025,2.52424,1.4102783333333333,1.4102783333333333,1.4102783333333333,1.889568,1.19684125,0.6369807692307692,1.049398,1.22284375,1.1471333333333333,2.0406199999999997,2.6068,0.8877666666666667,2.388025,1.7066714285714286,0.6369807692307692,1.699328,1.5638966666666667,1.9176333333333335,2.0177666666666667,0.9499409999999999,1.9176333333333335,1.0481288888888889,2.42553,2.5553,2.67985,1.22284375,2.39026,1.7118666666666666,1.7118666666666666,0.8665018181818183,0.8665018181818183,0.8665018181818183,1.2198533333333332,1.5638966666666667,1.7066714285714286,1.55595,0.9630928571428571,2.0177666666666667,1.413286,1.7844200000000001,2.0552,1.2198533333333332,2.65618,11.908075,0.70420625,2.62946,1.9201833333333334,2.761475,1.0780485714285715,1.0780485714285715,0.6369807692307692,1.4813333333333334,1.9075440000000001,1.7066714285714286,1.68622,2.0177666666666667,1.1834555555555555,1.1834555555555555,1.7214759999999998,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,3.4992,1.0481288888888889,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.21187472222222223,0.3968681818181818,56.30327046392497,1.4008425,1.46573,1.7066714285714286,1.9201833333333334,0.9630928571428571,0.5900764705882353,0.6980120000000001,0.6980120000000001,0.6980120000000001,0.6980120000000001,4.3106,17.109600416666666,3.5069666666666666,0.7714990909090909,1.69376,1.69376,1.69376,0.7714990909090909,2.9426,0.6369807692307692,1.699328,1.7542166666666665,2.426,1.0481288888888889,2.4331,1.0481288888888889,1.61139,1.61139,2.16045,2.16045,0.6369807692307692,2.2226600000000003,2.2226600000000003,1.0499727272727273,0.21187472222222223,2.9426,1.6516133333333334,2.22241,0.7714990909090909,0.7714990909090909,0.7714990909090909,0.7714990909090909,0.7714990909090909,1.9201833333333334,0.3968681818181818,1.0481288888888889,2.3785975,2.3785975,2.4767275,3.357533333333333,0.6362333333333334,0.6362333333333334,3.270303333333333,4.126566666666666,1.2113385714285714,3.1896400000000003,1.10403,2.5488,1.992934,1.1314366666666666,3.3274966666666668,2.19741,3.3645333333333336,5.5124,2.536415,1.2504222222222223,4.66956,4.898825,2.8590033333333333,1.747522,2.2998163846153843,4.90408,1.801819722222222,2.7538366666666665,2.7920433333333334,3.2603066666666667,2.34638,6.217386666666666,4.592885,0.21187472222222223,3.05726,4.81251,4.634005,4.43076,4.21152,4.83307,3.177543333333333,1.7714860000000001,3.83461,4.29005,4.43215,4.809665,5.46165,3.00423,0.692235,6.624995,1.5262433333333334,3.3429979999999997,5.02415,2.62457,2.62457,0.785109090909091,1.771625,3.78253,2.920075,4.42729,5.0298,4.671915,5.06235,1.13967,4.6563,5.14285,7.593518958333333,2.1045133333333332,4.123445,4.015935,3.877385,4.662415,4.41048,4.980245,5.380355,5.7802,4.480576666666667,3.6999,4.315943333333333,8.030402,2.05452,1.9456697435897436,2.87753,1.6895633333333333,2.5534399999999997,1.8145499999999999,4.78305,3.580833333333333,5.5408,2.1129000000000002,4.765915,4.1201,4.933725,4.232565,3.767245,2.4269166666666666,2.59323,2.6593733333333334,2.8830833333333334,2.4507733333333332,1.7060333333333333,2.61464,2.7894633333333334,2.56116,2.56116,4.65454,2.8221166666666666,1.7819766666666668,3.22152,2.9935033333333334,2.695873333333333,2.88551,2.567343333333333,2.7674833333333333,5.59755,4.67926,4.199585,3.7591593333333333,3.7591593333333333,4.167965,3.4459999999999997,4.587225,4.180975,3.63036,3.47079,3.179165,6.86603,2.1125825,1.9177,3.403475,2.92251,1.5334833333333335,1.5334833333333335,3.49486,1.750915,4.003134666666666,3.53969,3.269335,2.1156740000000003,2.2051186666666664,0.5794033333333334,3.15515,3.71497,2.36279,2.461115,4.30194,1.228,4.98884,1.1700966666666666,0.347695,0.49440749999999994,22.051889619047618,0.49440749999999994,0.347695,0.6411199999999999,11.72529,3.641,4.39074,5.01645,3.364665,2.841565,4.546477142857142,2.262495,2.92132,3.591855,2.77791,4.27944,5.1036,3.32659,2.099095,3.20917,3.79801,3.8098,2.82776,1.027415,1.027415,1.027415,1.027415,3.126105,2.70524,2.951005,1.7112866666666668,1.1981366666666666,2.28573,3.590395,3.94579,2.851285,3.17488,2.427855,2.9853225,3.751605,3.81492,1.0651066666666666,3.3254033333333335,1.1059100000000002,2.995433333333333,2.732976666666667,3.8166666666666664,5.1637,2.3067433333333334,4.207075,4.544993333333333,0.7363999206349207,0.23735214285714284,0.23735214285714284,0.4990477777777778,0.23735214285714284,0.23735214285714284,0.23735214285714284,0.4990477777777778,4.53838,7.351635,3.460815,0.63484375,3.785285,7.209440000000001,3.044165,3.288373333333333,1.0990316666666666,4.654895,5.51945,4.14491,4.812425,1.63623,4.71006,2.096903333333333,2.2496606666666668,4.58826,5.6916,0.77649,0.77649,3.559055,2.873416666666667,1.8701,3.06798,2.38507,4.314345,2.1481,2.37355,5.4844,5.8975,2.84092,1.73441,4.514985,4.166785,1.97484,3.2821,3.617565,1.724225,1.1065766666666665,3.83427,2.930925,4.792703333333334,6.060761666666666,1.5567833333333334,3.67934,1.0990833333333334,2.4359466666666667,4.408465,3.94416,0.3792028571428571,4.396835,4.71577,0.978898,3.13706,7.6670533333333335,5.93975,2.147445,6.095612,4.7443,3.567825,1.4653533333333333,5.628410000000001,3.0829033333333338,3.4206333333333334,3.688166666666667,1.9505533333333334,1.9505533333333334,5.8321000000000005,5.8321000000000005,3.2893357142857145,3.2893357142857145,7.59437,3.2893357142857145,3.2893357142857145,3.8922268253968255,6.1817,3.852075,3.9124749999999997,2.9305033333333337,4.58798,4.396645,3.1287633333333336,3.1130133333333334,4.661315,3.3148700000000004,2.4561633333333335,2.9500499999999996,2.150726666666667,2.553495,5.0714,7.72268,7.196905,4.488185,3.499575,3.75373,6.833178,4.937285,4.32404,4.53818,4.74413,2.26034,2.10069,2.06534,5.1826,4.89968,4.75266,4.47763,2.26845,2.9240566666666665,7.081546666666666,1.889568,2.4327433333333333,3.2575033333333336,3.2575033333333336,2.979345,4.90696,0.8393583333333333,3.466533333333333,4.569455,3.04025,10.3869525,4.835865,2.8812033333333336,2.5172966666666667,5.3536,6.02885,2.979615,5.60405,2.3649833333333334,4.23754,2.944364,4.47584,5.3275,4.73517,1.4037766666666667,3.8271333333333337,1.17149375,2.473123333333333,5.059294823529411,7.94148,2.716893333333333,2.961256666666667,6.840831666666666,1.783262,4.78649,5.52245,3.74348,3.493045,2.3590966666666664,4.83253,2.7361750000000002,0.52089,5.4557,3.459125,3.563,5.53645,4.826395,5.0753,7.1272625,5.10545,5.9156,7.8282975,54.77099,4.727355,3.972345,4.80987,6.2825,5.0133,5.5726,4.262725,4.75493,1.840265,4.34855,4.570685,4.29693,2.507675,5.2178,4.088935,1.5404579999999999,5.9013,6.6822,8.12931,5.542,3.14121,4.793095,2.93216,3.077385,3.45498,3.97323,3.626215,6.39827,2.5945,1.0704714285714285,2.1996027499999995,0.569834,0.569834,4.007755,0.569834,2.380551892857143,2.380551892857143,2.9683198928571426,4.48576975,4.891938142857143,2.1996027499999995,4.9157125,2.3972625,1.45604,5.42795,2.035815,7.135753333333333,5.708373333333332,11.113889560606061,3.13839,2.7722700000000002,0.24034939393939395,1.7149810000000003,2.2812466666666666,0.9666525,1.509735,2.816053333333333,2.0010125,2.968025,0.6861900000000001,28.35279333333333,1.989585,0.7718538461538462,2.91978,2.91978,0.42909055555555553,1.7652825,3.1717500000000003,1.2131275,1.971555,1.5333725,4.27566,2.770525,2.0313033333333332,2.26844,1.1007233333333333,2.502025,1.6746666666666667,5.868383833333333,4.622655,7.047855,2.555075,3.3217533333333336,1.1070016666666667,2.307045,4.97754,5.924005,2.9940766666666665,2.3213,5.676809166666667,2.3033425,3.000443333333333,4.1959075,1.1071833333333332,3.8735999999999997,2.3231733333333335,5.7542,5.4285,6.1776,3.413505,4.3106875,4.3106875,5.40255,2.270535,5.77335,2.8195266666666665,1.6787775,4.036555,3.96049,6.222238333333333,5.33755,3.1903633333333334,2.552303333333333,2.89612,1.3698642857142858,5.03365,1.08175,5.754836666666667,4.96363,7.44895,4.16753,4.431405,4.184505,8.440725,4.556475,5.10695,1.08969,0.7043435714285715,5.0127,4.756905,2.444075,3.261775,3.455215,4.189905,2.54875,4.923935,2.7340433333333336,5.62215,5.24045,4.7905,4.7048,4.477415,2.95599,7.049971,3.486975,4.52253,3.24002,3.87854,5.845954047619047,0.5777714285714286,3.6925666666666666,1.65597,0.7451744444444445,4.30373,3.586935,1.0848475,1.969285,6.20992,3.873665,2.21532,2.93641,2.5284333333333335,5.1744,4.44917,1.9237390476190477,4.09131,2.596103333333333,3.4848666666666666,4.569565,5.13825,3.4116133333333334,3.8996333333333335,3.925933333333333,1.87345,7.20267,4.865715,3.97609,4.85805,2.3967775,4.430615,4.736165,3.886425,3.89574,9.89056,4.184725,3.7486433333333333,4.55649,4.44085,2.5925,4.1309,4.09096,4.823635,3.2395833333333335,4.4382,1.96374,2.8954400000000002,3.40235,3.50491,4.778825,1.956852,4.356145,3.0152466666666666,5.3773,3.04588,2.546375,4.216805,4.811745,1.0235525,3.25297,2.664423333333333,4.938336,1.6856259999999998,1.8677599999999999,1.262415,5.29565,5.6806,5.793044999999999,3.8413425,3.59241,2.323455,2.22101,2.25242,1.39959,4.760535,2.74744,1.8146275,0.8696692307692307,22.452045064102563,2.84715,3.3683683333333336,5.8496500000000005,4.320071794871795,1.3407866666666666,2.728767333333333,2.857519318181818,1.167554,1.7006566666666665,4.14749,5.135,3.6554475,3.39212,5.62385,4.827115,7.5230375,5.044668333333333,5.0677,4.056595,3.092803333333333,3.92792,3.81514,3.411566666666667,4.58019,2.2764475,5.46775,9.70413,3.623125,4.05799,4.32494,0.54362,3.4951666666666665,2.2975866666666667,2.3709875,4.295305,3.87673,5.393,3.76879,2.72708,2.1639975,1.618845,1.073238,1.6473766666666665,1.24047,4.057855,4.24532,5.0205,4.851275,6.93831,2.3452033333333335,1.3421480000000001,2.5330533333333336,8.290893333333333,3.307045,2.87725,3.33438,4.7303,3.5909174999999998,3.40728,1.667048,4.332775,5.3304,3.90911,3.775195,4.49402,4.27484,4.515625,4.201325,4.41037,3.26756,1.977485,3.3805,3.35011,5.5626,2.81932,4.1379185,4.236205,2.929885,2.84935,2.0697633333333334,2.3179166666666666,3.183319,3.183319,2.0509733333333333,2.74797,2.28381,2.35531,1.9320199999999998,3.84911,2.3580666666666668,2.71939,2.6319666666666666,1.8320866666666669,4.295185,3.187475,3.792245,2.15578,5.1599,5.0653,4.876190555555556,2.557565,2.33914,2.635495,2.37795,2.058125,2.821965,1.91693,2.5171,2.449635,6.392271,4.131655,3.535065,0.613551875,4.396095,4.44647,4.26632,3.567195,3.99346,3.5585408333333333,5.9892,4.70886,3.97661,2.7351010714285713,2.263968666666667,2.44832,1.858324,1.6827739999999998,1.6623819999999998,2.1390000000000002,1.8491325,1.3823800000000002,3.9800725714285714,0.6369807692307692,0.5331866666666667,2.0119599999999997,1.558885,1.604264,1.6677833333333334,2.395658181818182,1.5223716666666667,1.8041340000000001,0.584205,174.00619988945655,0.5646266666666667,2.04032,1.01976,1.1665825,2.0466,1.5510675,1.9583925,2.388803333333333,2.4006525,6.8801,2.952765,3.6655876190476193,1.7103066666666666,3.1998,1.289075,1.289075,5.7663199999999994,0.5163361111111111,2.4456375,3.4830666666666663,2.973106666666667,0.7877209090909091,0.6275764705882353,1.2848690769230768,1.1297454545454544,2.44775,4.40083,2.485245,2.1963875,2.6525766666666666,4.468675111111111,1.1227,4.46825,3.745,3.367375,6.60311,1.9477033333333333,3.205965,2.79567,4.664802,2.37601,4.30254,3.85539,3.69606,5.544765,2.68328,5.62937,3.07397,2.32358,2.587225,2.140195,2.99071,3.85765,2.86519,1.786085,1.80027,2.71549,4.610925,6.019583333333333,3.20683,2.828785,1.492125,4.327085,3.7151666666666667,3.7473666666666667,2.700315,25.76995057814408,2.1812186666666666,2.77713,3.28079,3.509,3.346966666666667,5.938726666666667,3.1747099999999997,2.8123400000000003,3.5942333333333334,3.4205666666666663,2.059206666666667,3.129023333333333,3.354366666666667,3.3697666666666666,1.6500166666666667,1.7307359999999998,0.5874159999999999,2.2267233333333336,2.1891525,0.22707,2.472933333333333,2.687215,0.22707,0.22707,2.0280366666666665,0.22707,0.22707,0.22707,0.22707,2.807893333333333,2.8473566666666668,0.6424646153846154,3.6607739285714285,1.8291425,1.931374,5.07295,4.5069225,6.511067499999999,2.4195825,5.1985,2.4231,2.919086666666667,1.364712857142857,6.1027466666666665,2.7118800000000003,6.4445725,1.0057833333333333,1.2185725,4.955395,4.361365,36.38488818914419,1.8009879999999998,1.3080100000000001,2.24074,2.43988,0.8665018181818183,2.151333333333333,2.3099833333333333,2.8221066666666665,1.9455866666666666,2.3977666666666666,1.6843733333333333,2.9688499999999998,2.2897933333333333,2.4830900000000002,2.39393,2.357326666666667,4.10017,3.1767866666666666,1.2060600000000001,4.123375,3.841785,21.185530944444444,2.9234000000000004,3.5680333333333336,2.968253333333333,0.782788,2.9031959999999994,1.5688424444444444,2.9031959999999994,2.539363333333333,2.69079,3.226233333333333,2.0236525,1.9388175,4.66414,3.78575,5.34785,4.005765,1.967662,5.27715,1.657905,4.64266,4.1822190952380955,5.4728,0.7610209090909091,2.2501025,2.21712,2.937604,3.33009,1.110795,4.88551,1.9133900000000001,2.043746666666667,0.9907959999999999,0.9907959999999999,3.0645166666666666,3.5424,4.48492,29.92572375,6.22156,1.8311566666666668,3.5243900000000004,0.3523046666666667,6.78174,5.11115,3.0314833333333335,3.18681,6.25428,4.91902,1.1938025,4.930375,1.131608,3.99957,4.56355,5.47165,2.050745,3.309795,4.432975,3.63203,3.780706,4.708405,1.2902533333333335,2.7889866666666663,4.2352,5.0008775,3.0436033333333334,3.1905900000000003,2.9607799999999997,3.33942,3.96406,4.03608,4.0101,1.75275,6.02166,2.483025,1.66065,4.066505,5.11274,3.91447,3.981325,0.94347875,2.60721,3.33182,2.055945,4.631603666666666,2.92541,3.580295,2.7384066666666667,3.2083366666666664,2.69886,3.465666666666667,3.5995666666666666,3.0299266666666664,4.33298,3.970485,4.55157,1.67441,4.044,4.27344,1.905195,1.898525,1.78016,3.831072222222222,4.61886,5.596460729166667,3.88848,3.704266666666667,3.68911,3.625833333333333,1.3382083333333332,3.16994,3.20017,3.506705,4.475345,4.78949,4.874635,2.341615,1.928565,1.539085,1.4026475,3.479715,2.32085,2.15051,3.36488,5.035,1.65005,5.60425,1.3716685714285715,1.7072325,2.87403,3.27978,2.944935,3.41143,2.955935,1.658545,1.0081030526315788,3.423415,3.6689249999999998,4.921565,8.419346666666666,2.2531033333333332,3.2072933333333338,1.5433533333333334,2.59761,2.9588366666666666,1.2906433333333334,3.5781333333333336,3.1544166666666666,3.1209100000000003,4.117466666666666,3.838566666666667,6.795516666666666,3.19618,0.7484254545454546,1.96595,3.24915,3.11884,3.46205,3.8519,2.650702,4.47977,3.27289,1.973515142857143,3.490555,3.112135,3.734845,2.3188766666666667,4.59575,4.85761,4.837595,4.528015,4.256595,1.3324777777777779,5.2405,3.3849666666666667,3.1121833333333337,4.81162,2.900173333333333,2.86051,0.4000157142857143,0.4000157142857143,2.9333458333333335,5.18385,4.864105,3.085255,3.88459,3.535705,2.8202,5.48725,4.559125,0.9625475,4.57524,2.7679766666666663,4.747945,2.841953333333333,2.971173333333333,2.02587,3.285662857142857,2.767673333333333,2.9129733333333334,2.6191066666666667,2.7288366666666666,2.092896666666667,23.66328237779974,5.5321,5.2582,4.077965,4.08904,5.285795,3.83085,4.56612,4.18286,3.956845,4.35976,4.21763,3.131396666666667,3.2079966666666664,3.1510599999999998,3.0295050000000003,3.0404466666666665,4.4099,3.53128,4.581185,5.13555,4.237305,1.275502,1.641808,1.641808,3.77127,3.781915,2.5901033333333334,2.713706666666667,3.0817,4.79454,3.49995,8.480966666666667,3.2078166666666665,2.6764466666666666,3.0681333333333334,4.650615,1.7608666666666668,6.3385750000000005,2.5495033333333335,2.7574233333333336,1.6251975,4.3368,3.654295,6.65526,3.281405,2.46373,4.1869,4.303182666666666,1.792505,2.45696,1.6536066666666667,8.792349999999999,4.468775,6.6741150000000005,2.32802,4.774265,3.78709,4.347485,5.2995,3.7548999999999997,3.7548999999999997,2.1674525,4.570885,5.2294,2.53473,6.144071428571428,1.6664025,6.1263,9.969697333333333,3.7328666666666668,4.814948,2.732113333333333,1.982495,0.5955225,4.044325,2.457115,2.758675,4.222659999999999,2.6661,2.6061099999999997,4.17333,5.3651,5.15115,3.919535,5.3997,4.150055,2.19769,1.0724909090909092,2.80797,3.04142,3.0722733333333334,5.6441,3.87767,4.34782,3.21991,1.980094,4.714435,1.01662625,4.93203,1.0993944444444446,5.59855,3.12972,5.2087,5.9461025,3.506805,3.275055,3.4788,2.5326566666666666,4.12218,3.694255,2.417315,4.560915,4.648435,6.724306666666667,4.76831,2.17753,3.45559,3.044765,5.389596666666667,1.7435475,1.7435475,2.737883333333333,2.0582033333333336,2.69999,2.75102,0.9270379999999999,6.43295,4.40422,2.2432975,2.192595,2.435925,3.63394,2.90698,3.630685,4.236765,5.42425,5.07275,6.16195,5.9644,1.3517625,3.965845,1.0718583333333334,2.599175,4.4566,2.439305,2.90195,3.059245,4.75039,2.94109,0.46354684210526315,4.442565,4.07609,5.32715,3.282145,4.601095,5.78515,4.71141,4.011405,1.699235,4.7039,2.14802,4.1235,4.1235,6.63695,5.0748,5.6284,5.27425,2.610275,1.7608666666666668,4.47447,2.627013333333333,1.65951,2.18512,4.373925,4.188955,4.67138,7.57996,1.7905,6.00835,1.2992216666666667,3.33715,6.1041,2.10921,4.68225,3.548833333333333,5.0458,3.58113,4.785955,2.5294266666666667,4.042305,3.909225,6.16475,3.985925,3.85364,4.026625,5.8297,4.152485,4.67161,3.67704,4.40325,7.3921633333333325,3.386785,6.76593,3.128745,5.08105,6.441093863636364,4.778245,3.42185,2.021505,5.18415,4.028535,0.8843866666666667,8.2522,5.9476,5.8135,3.2783516666666666,5.4252,2.82863,1.704212,3.760955,1.0651066666666666,5.4574,3.03813,4.63935,5.40665,4.8748,4.73011,2.82084,4.549745,5.2769,1.74454,7.683333333333334,2.847905,4.37831,5.0975,4.04568,1.963195,4.43658,4.53953,4.6293,3.0465933333333335,3.940005,3.632625,5.3666,4.62116,3.87225,1.9216525,1.9216525,7.218541666666667,1.5818428571428573,5.2424,4.424935,5.7179,3.45878,3.94598,5.24135,3.603745,0.8611816666666666,0.8611816666666666,0.8611816666666666,3.888295,2.990005,3.745885,4.749031777777778,2.960315,1.4250783333333334,4.85767,2.3608525,2.439475,4.03851,5.5296,1.504685,2.2651399999999997,4.77689,4.08923,2.748165,4.342685,1.73589,1.8959225,3.13396,2.60473,5.9504,1.358014,1.604264,1.1816025,3.92119,3.59637,3.1229433333333336,3.4239333333333337,5.69185,1.6531120000000001,2.154065,2.78798,1.6130285714285715,4.536655,3.699125,2.49098,5.3988,5.68465,3.015805,5.08705,4.72433,3.326425,4.150145,4.81993,3.81053,6.17895,5.8476,1.7221966666666668,1.80415,3.564715,4.887725,4.20322,4.75185,3.628933333333333,4.45103,4.827965,5.4624,2.67944,5.5478,4.382475,4.817905,7.2489125,5.3723,0.7791272727272727,3.880325,3.8887525,2.168985,4.343125,3.7836,5.7779,3.73072,4.47117,3.774735,4.59661,5.4813,4.366025,3.62682,4.294805,5.2395,4.22673,3.795085,2.834385,6.28363,4.72013,1.8215599999999998,3.724985,3.8369633333333333,3.72653,5.0071,4.879375,2.60011,0.9325222222222221,4.4631878787878785,6.431497500000001,3.781105,5.01545,3.334895,7.9826033333333335,5.0261,3.5493333333333332,2.9691266666666665,3.55721,1.93778,3.261725,4.54148,2.8124624999999996,4.39853,5.0688,1.407635,5.5851,0.7371,5.27085,2.558415,5.2811,4.97435,1.3804550000000002,1.6478533333333332,4.183215,1.831195,4.442955,0.5227091666666667,5.99675,2.9996,1.506518,6.021224999999999,6.55955,0.731765,1.608315,1.292688,1.292688,1.292688,1.8758366666666666,5.0609,3.578145,4.80673,3.7264,6.06555,4.56278,1.94601,4.47882,5.0903,0.2916707317073171,4.144905,4.905955,5.5519,40.82674951515151,5.973395833333333,5.1338,11.704521333333334,4.669845,4.50152,8.058365,3.052705,4.320345,4.03784,4.579185,9.28134,3.771175,2.4292366666666667,3.530655,4.977315,4.018025,3.803845,4.44898,2.43376,4.54374,4.075535,6.933794,4.44626,5.2135,2.2978675,3.99123,0.514709375,1.3436566666666667,3.94155,6.3638,2.96124,1.3719216666666665,1.3719216666666665,3.417325,3.75295,4.515045,3.612895,1.79673,3.68447,4.11369,2.3361325,3.0019766666666663,1.706738,2.200486666666667,4.113265,4.70105,2.2777,4.38494,2.274635,2.096255,3.448605,3.46262,3.86355,3.66166,6.390137333333334,2.796997333333333,4.06174,0.6882845454545454,0.6161808333333333,3.63744,2.070375,9.12162,3.5069666666666666,5.231,1.59921,4.504095,1.67185,4.374965,4.95531,2.999233333333333,4.169885,5.4583,0.4147435,0.4147435,3.4555333333333333,3.1668766666666666,2.9894200000000004,3.76777,3.46282,4.852825,0.9063054545454545,11.268248333333332,9.75916,2.570775,4.7614675,4.905795,5.0933,3.342645,2.65206,2.17072,1.958145,9.9475,2.531875,2.6415566666666668,3.860842,4.371505,3.860842,2.82005,3.314033333333333,3.1058333333333334,0.7687463636363637,5.291890833333333,3.692266666666667,2.959566666666667,4.72864,8.64592,10.344495,4.76988,4.02628,5.0321,6.8018125000000005,2.0670175,1.277675,27.3557925,3.295855,4.968975,1.00088,4.4588,4.31793,4.378265,4.60953,4.66095,6.127566666666667,3.172496666666667,1.9119866666666667,0.7429764705882352,0.7492083333333334,5.1928,4.512175,1.3535199999999998,4.374718333333334,0.8403916666666666,3.3809666666666662,1.3170566666666665,4.09456,5.9321,2.00236,2.45595,2.14948,3.975115,3.03293,0.5632777777777778,4.324705,3.675315,3.5163333333333333,3.33541,5.1988,3.0509799999999996,4.40053,2.696175,5.4033,9.33393,5.12705,6.568695,2.65465,2.9520866666666667,4.39717,4.12842,4.450795,4.177345,3.6972,5.32455,1.18598625,3.58395125,3.144143071428571,0.709612,1.641808,1.641808,5.46035,7.731918333333335,0.9034384615384615,4.78877,0.9004516666666667,2.81319,2.3883966666666665,3.118620681818182,6.521168888888889,2.917996666666667,1.0874655555555557,2.48798,1.271725,2.7523733333333333,3.1993899999999997,2.9445683333333337,3.4094333333333338,2.6063366666666665,0.9004516666666667,4.758795,4.746425,5.46325,2.93912,5.3848,2.02738,6.05215,5.0812,4.92744,3.09031,4.143025,2.23354,1.80868,3.823535,2.683975,4.672835,5.46425,1.667794,4.416095,2.71888,6.492256666666666,3.41267,2.410105,0.9004516666666667,2.44903,3.04356,6.9269184444444445,2.4019033333333333,1.490308,2.4019033333333333,0.4925091666666667,1.3389099999999998,3.40431,3.60878,1.9515725,3.632955,3.6331230000000003,0.5208079999999999,0.5208079999999999,0.5208079999999999,8.807485,1.6006360000000002,0.7295336363636363,3.204925,41.50589216233766,1.7417951111111112,0.6028911111111112,2.72688,0.6028911111111112,3.45676,2.004265,2.37303,2.657906666666667,5.02565,4.965415,4.42878,2.3181366666666667,0.8524114285714285,4.50761,3.09022,4.92809,0.9621685714285714,2.749775,2.749775,3.926075,4.799395,3.62712,5.259743846153847,3.833835,5.09405,5.2711,1.918928,1.169805,5.3278,6.2473,3.803605,0.638279,4.88303,4.239591666666667,0.8824425,4.395895,2.45669,4.55937,4.840315,1.9285757575757576,1.9285757575757576,4.411195,3.35591,0.9051977777777778,2.72356,3.1615866666666665,3.889855,3.79959,4.460085,0.4571314285714286,0.32930176470588235,0.32930176470588235,0.32930176470588235,0.786433193277311,0.6174838461538462,0.661135,0.32930176470588235,0.32930176470588235,8.026815000000001,0.32930176470588235,0.786433193277311,3.51077,1.2499175,4.323435,1.0955583333333332,0.7684807692307692,0.8824425,2.459015,2.686775,4.026865,2.9613,0.32930176470588235,0.32930176470588235,4.355105,3.4594,4.474435,2.577015,3.804895,1.6519059999999999,3.482435,0.661135,0.661135,4.81875,3.03352,2.63803,2.66931,4.366384333333333,0.985351,0.7359246153846153,10.311645,1.3177625,4.46475,4.347495,4.877905,2.0729800000000003,0.4074321739130434,1.00503375,2.87143,3.405235,3.65141,4.98554,1.57453,6.0376,3.708305,5.449025000000001,4.373615,3.0414866666666662,3.202636666666667,6.234536666666667,2.68756,5.2377,3.897805,4.544993333333333,5.79476,0.5791273333333333,4.291435,2.99659,2.198803333333333,0.6717299999999999,4.556335,6.25253,3.72927,2.566515,2.44837,5.1991,2.61481,3.047475,0.971308,0.4478561538461538,3.82335,0.351496,0.8497036363636364,3.754425,3.08624,4.62274,2.611785,4.830985,4.204305,6.493281,3.7203,3.173105,4.87744,1.5652775,5.3164275,2.0054,4.096255,2.56265,6.244123333333333,2.92362,1.415456,4.71907,6.6351925000000005,6.5662725,3.2625166666666665,0.7863416666666666,2.6674,4.99447,4.07022,4.60856,4.787345,4.440805,4.62271,3.44102,3.91418,1.7358200000000001,2.25443,1.30753,4.009415,9.594645,3.856515,3.41468,5.88715,3.01559,4.80236,2.4468566666666667,3.24304,3.075895,4.644795,3.17605,3.98851,3.79595,5.262,5.4902,4.903935,4.64758,5.1233,5.1911,3.457945,5.73795,8.424949999999999,0.8799844444444445,5.4462,4.20065,4.59529,5.098,5.9708,2.24102,8.68735,2.285626666666667,2.92621,5.4383,3.577765,4.00368,2.0997,2.08948,2.8152500000000003,2.3026,1.9523633333333335,3.1040566666666667,4.46723,4.50565,3.921875,3.140545,4.902098333333333,3.16801,2.918615,3.955265,5.1067,3.14035,6.181229166666666,4.469185,4.0996,3.7057,9.53392,4.91584,3.44655,4.64442,5.05375,4.24113,8.85261,1.304025,2.28607,4.146945,3.0469899999999996,3.0469899999999996,1.80507,8.433,0.9393600000000001,3.75465,0.83219625,2.154065,4.3045,4.489375,4.4381,4.62438,2.676293333333333,3.33635,3.923745,3.665215,4.55229,3.536325,2.9365066666666664,4.673705,5.090873333333334,4.666535,4.96659,1.768498,1.545832,2.55255,5.42205,2.4323275,1.6932333333333334,2.0473375,4.65626,4.825665,2.836495,4.179075,0.56518,2.63523,7.818035,3.001445,1.4324366666666668,0.8279225,1.2067833333333333,1.6186433333333332,2.000215,0.7586333333333334,1.9698533333333332,4.0590705,4.726395,5.2402,2.5759633333333336,2.20369,8.87738,3.056,2.223021666666667,2.223021666666667,2.223021666666667,6.313643333333333,2.1994433333333334,3.521085,2.48844,0.528528,1.46017,2.3919825,7.2356425,0.46721277777777775,3.70652,3.8724274999999997,5.43065,2.572652777777778,0.46721277777777775,2.572652777777778,1.08705625,1.249302,6.11545,4.74211,6.741705,4.512415,5.39325,3.71824,4.245965,4.86992,5.45465,6.33355,3.3948,3.229615,5.35695,4.67299,4.13283,4.37684,5.4155,1.3574616666666666,3.1578766666666667,1.17654625,2.194275,3.191844166666667,1.5338191666666665,7.143485,5.389596666666667,2.8994066666666667,5.60825,2.862665,5.07715,2.64885,4.91218,4.72964,9.132425,5.95015,5.155,2.208295,2.90366,2.2812799999999998,0.54362,2.313824,6.85745,5.2691,5.07535,4.53261,0.7511066666666667,2.0000575,1.340515,4.610495,0.7343661538461539,7.590815,2.098115,1.0862075,1.0862075,3.684092,1.9782060000000001,3.4678,3.13404,4.504095,3.7203625000000002,3.7203625000000002,4.71476,6.460833333333333,2.998753333333333,2.70588,3.389466666666667,4.231115,1.891444,2.957523333333333,5.6523,5.8285,4.994475,4.97073,3.9223250000000003,4.69401,3.6449225,3.339866666666667,2.207765,3.97548,5.4148,3.2299212500000003,5.2599,5.84555,1.9833100000000001,2.659336666666667,6.33925,6.8666,1.4952260000000002,2.757475,2.4162425,3.0055099999999997,2.2182875,2.736075,2.375468,1.0802811111111112,1.83157,2.53585,2.2376575,2.5627016666666664,2.5627016666666664,3.0754795,2.924075,2.2556759615384614,2.7063,2.34967,2.0936,1.6162546666666666,4.9600925,14.666039666666668,3.0318766666666668,3.3883666666666667,1.848574,1.848574,1.7247666666666666,1.7247666666666666,3.0571566666666663,3.8869666666666665,3.0058566666666664,2.0168975,2.0168975,4.027866666666667,3.3519666666666663,1.07975,1.5484142857142857,3.0715299999999996,2.947433333333333,3.862033333333333,2.780425952380952,3.2887033333333338,3.5224666666666664,0.690042,2.6162,3.613484666666667,6.94073,4.688215,4.35726,4.47395,3.449385,4.729505,4.67945,3.1875999999999998,4.384175,1.484255,3.3437,6.05135,5.32445,2.538625,1.3139133333333333,2.638745,2.73244,3.3444000000000003,1.6992666666666667,0.7517714285714286,3.1293166666666665,5.0004316666666675,4.719285,4.50128,4.79494,2.9432333333333336,1.9359,3.1658999999999997,2.82042,3.858,3.1726500000000004,3.8933666666666666,2.8584333333333336,3.935366666666667,3.4201,3.075483333333333,5.3783,5.04795,5.208471666666667,5.208471666666667,3.28911,3.7581,3.72848,3.559585,2.58749,5.2628,3.088005,3.1186866666666666,6.2345,0.8539333333333333,4.713195,4.757245,2.4774833333333333,4.832014166666667,3.28471,1.8961333333333332,1.5337,2.6971966666666667,1.02156,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.3598142857142857,0.5492185714285714,0.5492185714285714,1.2335075,0.8291508333333333,1.5729723484848486,1.027982857142857,1.027982857142857,1.1260990151515151,0.44687333333333334,0.4204833333333333,1.2098725,1.3804675,3.5436,2.7329,7.70489,3.2116633333333335,4.16837,4.07722,4.635737428571429,1.3330466666666667,4.86461,4.79312,4.458225,3.43096,1.405722,3.992552692307692,3.478455,5.1894,4.81673,3.365935,4.61172,4.05556,4.815865,1.151564,4.458945,4.588485,3.23595,2.291263333333333,3.199985,2.331715,3.092885,3.936255,3.001163333333333,5.3225,8.483595000000001,3.09487,5.1023,4.659325,4.488008333333333,2.9112233333333335,3.414915,1.3195157142857143,3.6963,3.050745,1.8326619999999998,0.96727,2.66094,1.2667166666666667,0.5509346666666667,3.6049,4.106055,5.047726666666667,3.6500333333333335,2.53825,2.95443,4.847085,3.835733333333333,4.32675,2.776975,2.0634366666666666,4.29495,4.75355,4.050635,5.5401,4.75592,3.448785,4.612845,3.14441,4.399345,2.0146416666666664,4.84733,5.2838,3.031065,3.976095,2.48698,3.529805,5.2538,4.87618,5.3642,5.0414,4.98201,2.9899533333333337,5.7116,4.78075,4.959845,2.356465,0.90392,4.212125,4.98905,4.51877,4.707515,1.92393,4.580225,1.81975,5.00975,4.815165,4.874345,2.3439775,4.643485,5.30395,4.4807,3.204193333333333,4.63892,5.18095,5.0438,4.381505,2.356465,2.593595,2.949985,4.624865,4.063275,4.51051,3.65646,5.0797,2.276775,6.72235,4.54852,4.378795,5.2365949999999994,4.623415,4.957725,3.4002300000000005,2.5713166666666667,2.5713166666666667,4.392505,4.53461,4.34505,2.1738475,3.0530212499999996,1.10433375,3.20622,3.1717366666666664,2.818486666666667,3.161353333333333,5.0427,2.80482,5.4382,2.87098,4.902555,4.19902,1.89251,4.0992,1.6467599999999998,2.9534800000000003,3.814195,1.04032,5.022,4.570955,6.51011,4.675105,5.3656,1.443557142857143,4.471565,6.2495,9.158719999999999,3.5179666666666667,3.4467666666666665,1.9866679999999999,0.89193,4.00321,1.02194,4.29309,4.522305,5.16175,3.20953,3.99032,1.24164,3.087135,3.40737,4.099465,4.59142,4.48292,5.02225,2.55475,4.58849,4.965535,6.0269,4.44854,3.73734,0.3496255555555556,0.3496255555555556,0.3496255555555556,0.3496255555555556,5.19225,2.767445,6.37245,2.78691,5.4865,4.770685,3.96028,2.230545,2.3786833333333335,1.4689933333333334,5.75265,3.247006666666667,3.945035,3.237665,3.278225,2.342365,1.16021625,4.602495,2.4954,6.398858333333333,3.82976,5.78055,2.21088,1.3968383333333334,0.895611111111111,3.09684,4.44597,3.14517,2.097365,8.628615,4.46051,3.204145,2.39648,0.5249780000000001,3.324645,2.742075,2.14501,1.6405,3.44929,3.45262,2.592095,3.1218266666666667,2.82725,3.30518,4.435615,4.432615,4.45383,4.40295,5.782396666666667,0.6329713333333333,4.4878,5.4684,5.01375,4.745865,3.4215999999999998,4.975125,4.742355,4.585515,5.039728333333334,5.25425,4.53878,4.380355,3.70708,4.415975,2.78322,8.68147,5.05075,4.709375,5.08865,4.76253,4.99576,3.818885,1.0895822222222222,5.832990833333334,4.049745,5.17675,1.6215316666666666,4.149025,4.03865,8.35803,4.80389,2.93287,2.1147899999999997,4.59816,1.54215,1.02794125,3.876765,6.00195,1.7631066666666666,2.21326,2.716836666666667,3.90899,3.46557,3.46057,5.1853,2.8073333333333337,3.99895,3.5665205,3.183565,3.5013666666666663,3.479375,2.58594,2.52659,2.460035,2.2797233333333335,2.88271,4.2274,0.5794033333333334,2.4831933333333334,4.673035,2.86448,3.7119999999999997,4.573645,5.40675,4.150115,17.508296121212123,2.9712433333333332,3.9934333333333334,1.634662,0.7896454545454545,0.7896454545454545,0.7896454545454545,0.7896454545454545,0.7896454545454545,4.90154,4.97305,4.830115,9.361237000000001,2.56435,2.56435,4.5018,4.535286666666667,1.23848,2.2127166666666667,4.48345,2.582925,2.4453175,2.2279825,2.945545,3.7586753333333336,2.180145,4.318905,0.8213,3.0074799999999997,3.019576666666667,3.0453666666666668,1.5620866666666666,3.3214466666666667,2.5928366666666665,0.89549,2.7824733333333334,2.5656066666666666,1.2284333333333333,2.5900666666666665,2.8114666666666666,2.427426666666667,4.829600666666667,2.3315366666666666,3.3877666666666664,2.1998575,2.8203766666666668,1.1847444444444444,2.8619066666666666,4.976057333333333,3.5721333333333334,1.10354625,2.8419399999999997,1.446695,3.021793333333333,2.738993333333333,4.626638333333333,2.8156866666666667,2.84843,4.8196813333333335,2.90225,2.180085,3.067266666666667,2.8774800000000003,2.2021833333333336,2.8112366666666664,3.109586666666667,3.3414,3.3990333333333336,3.1985533333333334,2.770706666666667,2.578275,3.904383,3.904383,2.8530766666666665,1.8732966666666666,1.7399866666666668,2.6484566666666667,5.36401,2.807453333333333,1.8617733333333335,2.00073,3.2139333333333333,4.663385,2.7551366666666666,0.898072,2.4728320000000004,1.5771633333333333,2.4653300000000002,2.0680866666666664,2.7787633333333335,2.100443333333333,3.5241000000000002,1.184182,1.5214933333333331,1.3155066666666666,4.052066666666667,2.3726233333333333,4.00668,0.9677322222222222,3.95041,2.0841433333333335,2.528325,1.785462,1.8048166666666667,3.3466,25.271991735930737,6.775153333333334,2.9583166666666667,3.2847175,2.2714866666666667,10.220816,2.9436233333333335,0.95264875,2.9203799999999998,2.281093333333333,2.3163266666666664,3.0160933333333335,2.570933333333333,2.6220333333333334,0.827701,3.6108333333333333,2.5111866666666667,2.8078266666666667,2.6309766666666667,2.9901166666666668,2.0476933333333336,2.0849100000000003,3.0544366666666662,2.3736633333333335,2.224755,1.7027899999999998,5.717453333333333,4.768035,2.456745,3.0,2.1338399999999997,2.3399766666666664,7.727126666666667,1.5600166666666666,5.08455,2.0906075,2.0059775,6.67098,3.0492166666666667,2.6732,2.553125,1.764414,1.512773076923077,3.23737,3.4389333333333334,4.46981,1.50335,3.7430333333333334,1.729735,1.729735,3.86276,3.7789,2.3832977142857144,2.3832977142857144,6.384746666666667,3.21227,0.42595,11.68977257020757,1.2056799999999999,0.8907471428571428,3.77118,1.5322804273504271,1.614105,6.541013333333334,3.87858,0.7546400000000001,2.01174,5.128963090909091,2.6183224999999997,4.46941,1.4774571428571428,5.4919,5.3031,5.4442,3.73738525,1.9903020000000002,3.05606,2.5910100000000003,2.921226666666667,2.3672,5.138966666666667,5.19195,4.943415,1.922585,4.805045,4.18592,2.9310899999999998,2.34885,5.2887,2.773426666666667,8.31504,7.0359425,2.032305,2.69355,1.693404,4.308466666666667,4.308466666666667,3.690633333333333,3.24842,3.7233473333333333,4.91716,9.331822500000001,4.333365,2.474355,5.6119,4.6548,5.2816,2.03634,0.795675,1.33697,4.41357,4.862235,3.490133333333333,2.9842566666666666,3.9095333333333335,2.43073,3.68508,4.34851,3.274765,5.87205,3.2880033333333336,4.489300666666667,3.6138999999999997,3.26043,3.4149,6.31815,3.10385,5.68825,5.4514,2.835565,3.437,3.437,5.83823,12.418088333333333,3.7340999999999998,6.700010000000001,7.273073888888889,3.35738,2.4582433333333333,3.845215,1.2782333333333333,3.85879,2.227065,2.9066666666666667,3.0398266666666665,3.564666666666667,2.23366,2.3117666666666667,2.9007066666666668,2.7332966666666665,3.4173666666666667,2.87224,4.400395,2.3948266666666664,2.836123333333333,4.542175,3.0214466666666664,3.1346333333333334,1.2728625,2.1363025,2.915713333333333,2.9111333333333334,2.5233033333333332,2.34196,3.771933333333333,2.6630266666666667,2.579543333333333,3.011013333333333,3.12886,2.9324999999999997,3.4965333333333333,2.6206333333333336,3.295973333333333,2.6779666666666664,3.289012,2.684253333333333,2.5780600000000002,2.4099633333333332,2.54136,2.826416666666667,3.28787,3.10561,2.71074,2.0260225,2.0260225,0.7512650000000001,1.667048,4.53082,3.01954,2.6587433333333332,2.23366,3.2576066666666663,1.2960399999999999,2.9317966666666666,0.5929033333333333,3.5846999999999998,3.16348,3.190925,2.8355333333333337,2.6118866666666665,2.777153333333333,3.0738066666666666,2.8724933333333333,3.5231,6.110976666666668,1.686708,2.2727666666666666,2.691713333333333,1.8184133333333332,2.0598533333333333,3.0191166666666667,2.8776966666666666,1.71797,2.6791,2.47769,2.73621,3.076943333333333,3.0241433333333334,3.0375933333333336,3.391166666666667,1.4445325,2.99825,2.639813333333333,3.714066666666667,3.5354666666666668,1.9279875,1.7936466666666666,3.4444666666666666,3.0407266666666666,3.481033333333333,2.4149866666666666,3.2741633333333335,5.326325,3.3223133333333332,2.0321866666666666,1.8778099999999998,3.2958433333333335,6.453720000000001,3.414433333333333,3.374366666666667,2.8950633333333333,3.157386666666667,4.57014,1.55999,1.224788888888889,3.07619,1.8304387500000001,4.720975,2.93505,3.435866666666667,2.93207,3.4294333333333333,2.6087333333333333,3.6648333333333336,2.4685775,1.6981860000000002,3.04342,3.40711,3.8232350000000004,3.738715,3.93452,1.78566,2.68884,4.059655,4.400525,2.7661166666666666,3.33207,3.9581999999999997,3.7518999999999996,1.7498725,5.587688,3.1838587499999997,1.6126933333333333,3.549905,3.686645,2.811005,4.093465,1.8877859999999997,1.8877859999999997,3.1789633333333334,2.8217833333333338,3.5197,5.5921,4.38569,4.838150000000001,1.15255,2.7985900000000004,3.0933266666666666,3.9675400000000005,2.92624,4.294424,2.7017333333333333,2.270566666666667,2.8505833333333332,3.23554,3.449415,1.654158,2.9920033333333333,3.490615,2.193035,4.45572,1.31804,2.79839,4.23389,2.65035,3.404805,3.96101,1.6240675,1.4926533333333334,2.4659825,1.2339683333333333,2.290245476190476,2.1597475,0.47577714285714284,4.82088,2.436405,4.855345,4.983995,3.138325,4.461603333333334,3.1577566666666663,3.0952333333333333,3.6471999999999998,2.75529,3.3776666666666664,3.0464800000000003,3.3755333333333333,2.44978,0.6915092307692308,2.2374233333333335,0.6903585714285715,1.803,2.4495,3.259236666666667,3.32902,1.8493700000000002,1.40607,4.047395,4.71681,4.300875,4.225245,2.98714,2.0951525,4.42156,8.35069888888889,4.23722,6.0714025,1.477485,4.10147,2.19357,3.79201,4.205415,2.85992,4.875635,2.76903,4.1821,4.61155,2.330175,4.13814,6.96646,5.81245,3.10428,3.49595,1.61373,1.893405,3.969465,3.43787,3.16134,4.01839,3.625755,4.05082,2.070695,4.05712,3.78472,2.26345,4.619295,0.876325,4.17651,1.7282425,4.25529,4.88836,3.756195,2.920725,3.889775,3.476705,2.2955125,2.19613,3.9568666666666665,3.4986,6.331059999999999,4.04231,4.19741,2.13465,2.505685,5.00145,4.2698,2.719696,2.719696,6.729494333333333,4.7238285,3.2907124999999997,3.54797,2.3762233333333334,3.23861,3.650305,3.7911325,3.2721385,3.678255,1.048526,4.310265,3.13118,4.24453,2.70224,1.4976725,1.8595625,3.745135,5.827859999999999,5.01992,3.126515,1.9378325,4.347385,4.00675,0.799495,3.29576,1.456386,5.670155,1.6089466666666665,4.454875,2.07859,1.8493700000000002,3.769665,3.78954,4.3774,6.822113333333333,4.2446,4.700440833333333,2.43152,2.811055,5.03285,4.173355,4.7354,4.49967,1.12597,1.7307359999999998,1.14332,2.902915,1.82001,4.35686,1.14332,4.84406,2.67094,1.63022,1.63022,2.26345,4.37106,4.533935,4.628465,1.644212,1.644212,1.1472083333333334,3.533795,1.99931,5.866215,4.75314,3.98343,2.9070633333333333,1.033227142857143,3.634625,3.50715,4.33482,4.01041,4.146789999999999,4.146789999999999,3.2606,3.80345,2.1180025,3.21318,0.946168888888889,1.9548133333333333,3.829825,2.5737099999999997,3.663199166666667,3.663199166666667,3.55328,4.927095,4.50203,2.81144,3.386615,4.388765,3.0263833333333334,4.900070833333333,3.988935,4.37829,8.63086,4.954205,2.648365,3.067705,3.689155,4.652885,3.0249119999999996,7.4454525,4.780915,4.716525,3.711515,3.598975,3.882095,4.34689,4.826645,2.21568,4.52793,7.059465833333333,2.632905,2.5160164444444444,3.806375,3.60189,3.257765,4.8319,2.3590966666666664,2.4873833333333333,2.96061,3.31826,3.0217066666666668,8.162153333333332,1.667815,4.657951666666667,4.657951666666667,3.679825,4.166885833333334,3.320235,2.7792433333333335,6.11446,4.713,2.4869433333333335,3.801365,4.313035,3.458293333333333,3.505495,3.7015,7.3596933333333325,3.24706,5.55375,4.00903,4.776375,4.023745,3.6914,2.8217833333333338,2.3714366666666664,3.12571,4.42989,2.780595,3.2992933333333334,3.1983,7.491516666666666,2.69566,1.76366,3.1656066666666667,2.1881,4.378925,2.59709,0.799495,3.058195,4.378405,3.7106,5.6911325,2.84207,2.84602,2.853946666666667,2.853946666666667,4.064419166666667,4.989305,4.323535,2.20493,7.1133625,2.105265,4.568335,3.88174,7.94489,2.7109966666666665,1.87249,3.927455,4.37451,0.6913825,4.030965,3.90199,3.513585,3.542145,4.854905,2.02563,2.427455,8.649575,3.258365,2.793895,1.6089466666666665,3.68728,3.21992,2.68403,4.545745,6.0630125,1.8607575,1.3991866666666668,1.13892,4.070065,4.304595,3.76484,4.079205,4.079205,2.070695,2.211855,3.1925963888888886,0.9184288888888889,2.979585,1.4058025,1.78566,4.067605,4.060975,2.87671,3.163065,3.3816958333333336,4.35089,4.4619,3.414135,3.20381,2.8157,4.268895,6.122445,4.051805,0.98971875,2.7595685000000003,8.3941,4.684715,3.96855,0.9776875,5.261816666666666,1.433085,3.7463625,3.7463625,4.28208,9.5975725,0.908911111111111,4.714,4.51553,2.1390433333333334,3.9613950000000004,3.27551,2.079785,10.526044333333333,2.0739175,2.4829666666666665,3.719425,2.4890666666666665,4.598159333333333,3.27839,3.76747,4.015173333333333,3.520475,3.895,1.1786616666666667,7.31967,4.29173,4.557445,4.03638,2.1611575,2.920725,4.723809166666667,4.28728,0.7116600000000001,5.0649,4.653305,5.18305,2.0359825,1.6031099999999998,4.719785,4.23895,8.41499,0.7287523076923077,0.91261,0.91261,1.8479733333333332,1.46675,1.258178,1.86022,5.05545,1.2566,0.7970814285714286,3.9697325,4.072475,1.8824575,3.11059,5.4045,4.94087,0.676104,1.884375,12.513119999999999,3.2240583333333332,4.554365,2.2356,1.8866225,2.402486666666667,2.851525,4.835075,3.85411,3.689995,1.0654985714285714,1.488026,1.02574,5.6491625,3.918535,4.003565,0.9184288888888889,1.698686,4.08488,2.453141071428571,5.928388333333333,1.123405,4.61639,0.5976133333333333,0.5976133333333333,0.5976133333333333,10.678035,3.81769,1.4058025,4.12169,4.34061,3.502945,3.212775,4.933896666666667,2.438185,2.2258727777777776,2.00908,0.676104,1.4755989999999999,0.6882244444444444,0.7368633333333333,1.3421133333333335,3.456765,3.737135,2.190475,7.874436666666668,4.6970608333333335,0.8063044444444444,5.7405,5.511426666666667,3.509025,4.719555,7.399517666666666,3.9040647023809525,4.6970608333333335,4.360785166666666,2.753386666666667,4.23139,4.044765,6.904249999999999,3.468895,0.5249780000000001,1.7097120000000001,4.17368,1.6731639999999999,1.3991866666666668,4.16643,2.3744166666666664,1.895455,3.90814,1.597606,4.23218,3.958465,4.3547,4.597305,6.88214,3.386605,4.09903,1.456386,2.4632175,4.18077,3.466255,2.4869433333333335,4.14226,2.65503,5.0304,2.806895,2.271955,3.4774941666666663,1.9010660000000001,3.9316,0.9184288888888889,2.1047285000000002,1.13892,1.399625,3.44525,1.667815,1.3421133333333335,2.30722,3.72929,8.36417,1.0654985714285714,0.9776875,1.57327,3.46042,4.725605,1.57327,3.74255,2.4632175,0.6913825,0.9184288888888889,1.8479733333333332,1.456386,0.47577714285714284,1.5404579999999999,4.413030666666666,2.1390433333333334,1.4940116666666665,2.92835,1.7498725,2.0739175,3.0798433333333337,2.00908,4.543375,3.0798433333333337,0.799495,2.672029,2.4967925,0.1277884090909091,0.1277884090909091,0.1277884090909091,0.1277884090909091,0.1277884090909091,3.2980733333333334,2.63523,3.0331833333333336,2.9522399999999998,4.839045,3.94917,1.785462,3.532855,3.34565,2.037255,5.07290375,2.51705,2.390435,2.423535,2.79508,4.384665,8.3653,2.48247,2.30532,3.1961675,0.98595,1.3712683333333333,2.306923333333333,2.3367666666666667,1.8137325,2.54209,2.2358866666666666,2.594606666666667,2.766696666666667,2.5801633333333336,3.98744,4.16773,2.9603800000000002,1.36647,4.17397,3.68047,1.53387,1.397012,1.397012,1.397012,3.875945,2.781193333333333,1.0736633333333334,2.245983333333333,1.2712128571428571,4.11705,1.69876,7.060663333333334,3.329755,2.9098133333333336,3.0753319999999995,3.0753319999999995,5.826553333333333,2.678875,4.598615,5.0906,2.3678625,3.3116800000000004 +GSM1946784,0.0,2.0277,2.0277,1.5709966666666666,3.80396,6.0855,2.4237376315789474,1.8413066666666669,7.190692475490197,4.373075,3.1597766666666662,2.920895,2.33795,3.155095,4.216765,1.7584019999999998,1.47597,4.94453,2.578613333333333,2.175875,4.335365,5.371388333333333,3.809155,2.41349,1.7795359999999998,3.82821,4.38526,4.630935,0.6194916666666667,1.622026111111111,1.8407311111111109,1.5568975,1.5292825,1.0957071428571428,0.6811016666666667,3.123204642857143,1.555285,1.83073,1.20846,2.1113,1.1164175,1.09687,1.0999940000000001,1.479434,0.941296,0.9370240000000001,0.7994939999999999,1.1699242857142857,1.5794000000000001,1.8652719999999998,1.538096,1.9222819999999998,1.65361,18.012137833333334,0.3891326666666667,0.885792,1.1136380000000001,1.7885760000000002,1.34455,1.5858560000000002,1.0721542857142858,1.0721542857142858,1.0721542857142858,1.1931883333333333,0.993366,4.77547375,1.1287525,2.431465,2.016895,2.23019,0.944422,2.1586875,2.22486,1.9710925,1.5179575,1.97261,1.56237,1.6914775,2.4870466666666666,3.5712,4.75593,5.13015,1.6326766666666668,4.48399,4.4060983333333334,4.215955,4.01773,1.0351425,7.72862,0.62856875,0.62856875,2.2924875,1.0314514285714285,16.88623,4.77349,5.38365,5.54045,4.16171,4.197575,5.3648,0.4256,2.2579516666666666,1.68585,2.2776575,4.43875,3.47469,1.5325625,3.2036466666666663,3.5048666666666666,2.875196666666667,3.6484,3.412195,4.940625,2.8089589999999998,4.301885,2.9550433333333337,0.71786,1.803978,2.639475,4.900555,4.364545,0.52624125,3.56761,3.815595,0.7804125,4.323895,1.6790742857142855,2.26947,2.78725,2.08218,3.65492,5.72215,3.44451,2.615396666666667,3.1445366666666668,3.07428,3.98917,2.79734,5.5037,3.443655,4.464335,3.001165,2.3155,3.65781,2.3814825,7.0001299999999995,3.55229,3.747565,5.9038,3.422395,4.61508,0.7873633333333333,9.437229761904762,3.651275,1.9171500000000001,1.8586833333333332,3.0329266666666665,2.457525,4.80606,5.47755,2.1325975,5.231444166666667,2.87105,4.19518,2.1325975,2.852603333333333,4.386155,5.3184491666666664,3.549645,8.875183333333332,3.75507,4.905365,3.04232,5.0294,4.364315,1.7638166666666668,8.57426,4.15433,3.70525,3.66717,3.62875,3.353675,2.348455,5.95317,2.43946,3.772775,3.94152,4.87596,4.884305,3.095625,1.2646966666666668,2.871895,3.10757,1.794315,1.794315,6.03395619047619,3.11304,1.9375133333333334,4.289495,4.443675,2.779595,1.4831916666666667,0.8385833333333333,6.6536,2.70688,6.68605,3.10897,3.87401,3.85797,2.88695,3.938065,3.616545,4.12534,4.032195,5.69685,2.80927,3.64886,9.118626666666666,4.500365,3.5706333333333333,3.011286666666667,2.815236666666667,3.8095666666666665,4.206698333333334,1.789535,2.552923333333333,2.0492733333333333,1.6495760000000002,1.8152966666666668,2.75851,1.72797,1.828145,2.9897833333333335,2.7559733333333334,2.407103333333333,2.7525333333333335,4.4060983333333334,3.61897,3.244265,3.475,4.295285,1.2874299999999999,2.415295,2.9002737142857145,2.0214600000000003,2.6323366666666668,2.1430866666666666,3.4059666666666666,1.65653,1.4747366666666668,2.720383333333333,0.6632819999999999,1.5991466666666667,0.5584677777777778,0.5584677777777778,1.5365233333333332,2.44604,2.1221466666666666,1.3616566666666667,1.5904566666666666,0.31868769230769234,2.7453766666666666,0.6632819999999999,1.31735,0.19714297297297298,1.4761833333333334,2.069575,3.486666666666667,2.097933333333333,2.1885566666666665,2.566856666666667,2.2971166666666667,2.5140833333333332,2.5568233333333334,2.34505,2.1838166666666665,2.7067599999999996,1.93616,2.787115,4.15781,0.6932649999999999,1.8605166666666666,2.541796666666667,2.00629,3.458306666666666,1.553222,2.6234733333333335,2.140023333333333,4.357546666666666,2.0275733333333332,7.027933333333333,1.5873000000000002,2.8542,2.0564,1.866725,3.1826666666666665,1.8535,1.9897525,3.76637,2.5323933333333333,2.16296,3.82267,4.096925,4.39109,3.72625,2.358705,3.388465,4.276601333333333,3.90569,3.9601,4.29602,4.482805,3.09812,4.07521,3.489035,0.9206875,4.81811,1.2542683333333333,4.75108,3.955035,5.826338,3.588665,4.31568,0.98921,2.366035,3.59649,4.15808,0.8007799999999999,1.1349625213675214,2.0488895238095237,3.7761771428571427,5.4267675,5.532415,2.1570825,3.02156,5.12975,0.3438642857142857,3.46531,2.4564,0.9783875,4.50673,2.019435,11.865795,1.2584,1.3604725,1.8336,2.44498,2.2181686842105264,4.907408684210527,0.3945736842105263,1.65836,2.8692733333333336,1.0849425,3.712066666666667,1.0306614285714286,5.0943,4.00132,2.1168466666666665,6.08485,5.7164,2.644625,1.1227214285714286,4.601206666666666,5.08375,4.375505,0.8218818181818182,7.502801666666667,2.7490066666666664,4.43569,2.73661,2.4776866666666666,4.511175,2.3064233333333335,2.54581,2.2219,2.516226666666667,3.12026,2.9275599999999997,0.35398875,4.050045,3.85123,3.917055,4.122045,4.474155,6.2508989999999995,4.09628,1.72194,5.4374,4.30176,4.392635,4.06453,1.0022849999999999,2.65385,3.098796666666667,2.522,16.30648,3.405645,3.909815,4.089925,5.6458,2.582435,5.085366666666667,1.670115,0.8017833333333333,2.707475,3.265475,3.367585,4.19358,6.448476666666667,2.89164,2.2891,2.2609,3.3411666666666666,4.878365,2.27254,0.3890688095238095,2.875241086956522,1.912505,1.120125,0.5043768530020704,0.6196848964803312,0.3890688095238095,0.3890688095238095,0.3890688095238095,1.18566,1.30381,0.88157,1.540375,4.2610525,0.22583323529411764,11.02420147186147,3.4647666666666663,2.7010966666666665,3.94088,4.06182,3.81733,2.075485,4.514615,3.817956333333333,3.95483,3.71844,0.6634553846153846,3.3912666666666667,4.285328205128206,0.5317114285714285,3.45205,2.7660933333333335,4.3146,0.5503109090909091,1.877375,4.41729,3.32263,1.77589,1.76978,1.7137799999999999,3.170443333333333,4.11686,3.204235,2.92033,5.4233,5.4739,4.751845,3.2702333333333335,3.094125,6.636383333333333,3.713433333333333,4.48685,0.42884333333333335,3.0737233333333336,3.8307683333333333,2.1530299999999998,2.767595,2.862960833333333,5.764763333333333,0.5926458333333333,2.830675,4.269705,4.65126,1.057642857142857,4.610445,2.51466,4.77485,3.0265033333333338,4.09431,3.597505,4.3819,1.16381,3.407445,2.8180666666666667,4.434535,4.21945,4.410675,5.7034,4.42036,2.80159,5.48534,2.434903333333333,2.95935,3.0417466666666666,2.518336666666667,2.5313266666666667,2.2114133333333332,1.762014,1.6467533333333335,1.9831899999999998,0.84643,1.46153,2.229363333333333,1.9965966666666668,2.9365400000000004,3.0760166666666664,2.7188499999999998,0.9177044444444444,4.94162,3.337666666666667,5.424250833333334,2.718794166666667,3.1330266666666664,2.8712866666666668,1.6038916666666667,1.6038916666666667,2.4389385714285714,2.4389385714285714,3.1720135714285713,0.4932485714285714,1.71133,2.0771333333333333,3.8008333333333333,2.356346904761905,2.356346904761905,2.356346904761905,7.203488571428572,4.29282380952381,0.9424636363636364,2.39591,4.6529533333333335,2.432275,4.711065,3.281865,2.34644,4.040415,3.0653566666666667,3.028563333333333,1.1568125,1.9496166666666666,3.239183333333333,2.298243333333333,2.5541266666666664,5.63325,4.224466666666667,3.836,5.188283333333334,1.9618666666666666,2.5479600000000002,3.2405833333333334,0.9599677777777776,2.20821,4.90876,7.9151774999999995,1.4969775,3.015315,4.69297,1.7653159999999999,1.6497575,1.6497575,0.98163625,4.729695,7.114745,4.134325,5.2150110000000005,4.4113,1.7385333333333335,3.850655,2.987035,4.412865,5.008256666666666,0.36729947368421056,3.06686,2.905045,3.79858,3.946975,1.7559799999999999,1.9796475,2.4967775,4.177065,3.927525,3.17337,2.735785,1.337212,6.9206,5.5915,3.86591,3.556475,5.0312,4.519955,4.287,3.645415,3.59173,2.013365,1.0608414285714285,2.76116,4.119025,3.693515,5.6050949999999995,5.6053375,2.3968325,1.7856366666666668,2.7274233333333338,2.7769999999999997,2.95936,0.680745,2.315835,3.6567,1.108515,4.73903,3.192725,6.0787375,1.321819696969697,1.321819696969697,4.01076,3.75989,3.86691,5.62355,2.80733,2.4065533333333335,3.84921,3.258035,2.20118,3.3608666666666664,2.4458933333333333,4.302175,3.3318775,3.64519,4.49611,1.0981922222222222,2.55168,4.17122,4.11081,3.370935,2.54745,1.546845,0.6905888888888889,0.6905888888888889,0.6905888888888889,0.6905888888888889,1.401078888888889,3.67558,3.67558,1.8256466666666666,6.535076666666667,2.932435,4.29941,3.009403333333333,2.711675,4.67948,4.407135,4.82503,4.92326,1.77134,3.86335,3.400385,2.615785,3.086535,3.5088,2.677575,4.13064,1.93402,4.582965,1.785135,3.3405666666666667,3.126695,1.7823425,1.1859866666666667,2.852715,4.34383,1.207428,0.8437988888888889,3.52128,1.2905975,4.800793333333334,4.149285,1.2612957142857142,3.59837,0.761838888888889,2.6639066666666666,2.5078400000000003,2.13386,2.78739,3.747455,2.8479183333333333,4.57277,5.42545,4.338355,4.252645,2.323775,1.2799414285714286,3.92558,4.792075,1.47043,1.47043,4.20981,0.2828173333333333,2.4192199999999997,0.2828173333333333,0.2828173333333333,0.2828173333333333,0.2828173333333333,4.91501,2.7120366666666667,2.837885,3.58169,3.1972166666666664,4.32847,2.6244533333333333,1.0227075,1.0227075,1.013285,1.013285,3.936185,1.75717,4.444185,1.5289548214285713,1.5289548214285713,4.69689,0.5190992857142857,2.56815,7.383586666666666,4.6102,3.305265,3.23545,0.930945,2.349785,1.9341075,4.76389,4.27877,4.35322,3.93282,1.2722485714285714,2.646045,1.89177,7.75105,1.753635,4.506565,4.621965,2.9637,3.98121,6.30913,7.6990799999999995,3.9156,4.16081,3.66159,2.30201,3.11795,2.36493,2.39095,1.903545,3.938165,3.14969,5.932236666666666,7.03216,3.892655,1.3234966666666665,2.034955,3.639685,3.68933,2.0809475,3.875,3.108805,4.598433333333333,1.7691866666666665,4.115166666666666,1.6460833333333333,6.4727733333333335,2.764526666666667,2.4013400000000003,2.4192066666666667,2.53886,3.5025999999999997,3.3609333333333336,3.1837666666666666,2.6207033333333336,3.2634666666666665,2.24024,3.058095,3.134635,3.104605,0.3729225,3.02431,3.75304,2.602975,5.5215,4.88724,4.492895,6.7460249999999995,4.754845,2.1651266666666666,4.182505,5.1333,1.574215,4.71871,5.6002,5.17785,4.535965,3.16961,5.58345,5.00525,3.75025,5.233117333333333,7.4092400000000005,4.394555,1.1739333333333333,1.4192566666666666,2.557955,1.7773499999999998,4.514385,4.06194,5.0220375,2.54227,2.4939033333333334,2.7424033333333333,2.43402,2.1361866666666667,0.9013555555555555,0.4927023529411765,3.8358,4.10015,3.4050333333333334,4.220515,3.008935,3.26054,5.13293,2.9859266666666664,0.5859611764705882,2.85185,5.48125,1.9916375,1.611982,3.87522,3.35858,2.516426666666667,3.8089666666666666,3.90154,2.9005566666666667,2.26667,2.3819466666666664,2.4793600000000002,2.7918,4.449071666666667,4.946745,6.0553195,1.251164,4.7167,3.1020970833333337,4.695245416666666,2.3348299999999997,3.1817,2.330975,2.173363333333333,1.3732125,1.3732125,2.700613333333333,2.5247966666666666,2.7707033333333335,4.04347,1.689928,2.288085,1.97952,0.437041875,3.46136,0.5528491666666667,0.83184,3.73483,4.030205,3.51811,1.646625,4.29414,3.0475133333333333,0.7659285714285715,4.072685,3.7449685714285716,3.1810733333333334,2.521045,5.16105,0.26152275862068963,2.1410045,3.293425,1.476665,3.75577,6.6943,2.383335,1.3514933333333332,3.94966,3.968665,2.6984600000000003,2.6984600000000003,3.653845,2.593215,4.49935,5.621076666666667,5.0332,0.95212,2.626253333333333,2.4593266666666667,4.350855,5.1157,5.1922,4.746575,4.370133333333333,3.8392999999999997,3.7663333333333333,3.6006,4.175366666666666,3.0583233333333335,3.0105466666666665,0.5913285714285715,2.309245,2.4153225,3.66832,3.068216666666667,3.1424299999999996,0.7561566666666667,2.91321,3.9136995,4.17504,5.80245,4.90263,1.79634,1.79634,0.819197,2.88771,4.38171,3.76385,4.077981428571428,3.303345,4.345895,0.5783936363636364,3.11452,3.455015,4.17784,3.9365641666666664,0.7827014285714285,2.85215,3.91848,5.5697,3.907865,4.916195,2.826505,4.20205,1.373305,1.029802857142857,2.7444666666666664,5.17585,4.32313,3.138085,1.403265,3.826965,2.594075,2.625825,2.824279333333333,2.9685666666666664,4.544723333333334,3.100543333333333,1.6942620000000002,3.3882,1.472697261904762,2.9100900000000003,2.49262,2.31205,2.8099366666666667,2.85293,2.2501666666666664,2.8454433333333333,3.553095,3.059093333333333,3.495646333333333,2.2787633333333335,1.762805,4.0946983333333336,2.9150333333333336,2.48405,3.495646333333333,2.0418933333333333,0.7905327272727273,2.3504275,0.9857055555555555,2.211675,1.5361825,0.9533636363636364,1.6552475,1.589245,2.6634867499999997,2.620475,4.31473,1.4408325,4.835305,3.1385366666666665,1.597162,2.331836666666667,2.37046,1.8358566666666667,2.8078966666666667,2.5162400000000003,1.8686609090909092,1.38376,1.813864,3.660266666666667,2.31874,2.8556155555555556,3.2213666666666665,2.9543766666666667,3.7003333333333335,2.07984,4.1864333333333335,3.4819333333333335,3.836866666666667,2.8364,3.5349,3.6719000000000004,1.8712099999999998,10.03052,4.08545,4.223225,3.411545,2.739165,2.104195,4.1276,1.672946,4.030755,4.052995,1.292492,2.4445333333333332,1.1173833333333334,2.38454,1.7415866666666666,2.3568933333333333,5.105556666666667,3.2293066666666665,3.60519,4.89504,0.803055,1.394914,0.9523720000000001,3.59643,9.981831666666666,3.1018866666666667,6.59625,1.9789325,5.31195,4.17847,2.39644,4.96923,0.2993105882352941,0.8804685714285715,4.561965,4.24283,6.9474125,1.8366625,4.26297,5.7488,4.629155,4.739495,3.426865,4.74813,3.516665,5.649821666666667,3.649605,2.95001,3.18919,2.2221933333333332,1.9503133333333331,1.4409563333333333,2.432873333333333,4.110215,4.664955,1.584384,9.40136,1.7128066666666666,2.849361666666667,1.1816280000000001,1.1816280000000001,7.0723400000000005,3.087285,2.245645,2.1697,2.5434933333333336,2.257633333333333,1.2242666666666666,3.5236183333333333,2.56369,0.6125585714285714,1.7638666666666667,3.244156,3.244156,1.1670533333333333,2.6321566666666665,2.2300666666666666,2.6352416666666665,1.37079,1.8909733333333334,4.6426680000000005,2.57483,2.712175,1.31167,1.31167,4.007245,5.53935,4.178455,3.27774,3.70731,5.83365,2.714215,2.7452666666666663,2.87927,4.09114,1.1619833333333334,3.11472,2.61015,3.749485,2.2386466666666665,4.74313,3.57821,4.53278,3.831745,5.592215,0.95618,1.972135,1.806755,3.704145,4.2166274999999995,3.875385,3.63129,3.33955,2.29749,1.781465,4.212735,3.36341,3.139905,2.52645,0.85512125,3.41245,4.069125,4.56344,1.2405166666666667,2.635753333333333,2.3118133333333333,1.7266166666666667,1.7913191176470589,1.7913191176470589,1.218115,1.96323,1.0947571428571428,1.4165860000000001,4.21388,4.18223,0.4700738095238095,3.57007,3.3438666666666665,3.945615,5.20915,0.4164605,9.09412,5.38365,2.557655,3.86581,4.53651,5.397932857142857,4.916185,6.729565,0.6705154545454546,2.65538,5.0693,2.7505366666666666,1.536635,2.02954,4.472695,4.93195125,2.413261785714286,3.2691866666666667,2.9265600000000003,1.93385,4.2127,10.68335,8.049624166666668,3.832966666666667,4.374515,3.093155,3.273915,3.97405,1.832054,2.9243,3.654645,4.904225,4.601265,5.01884,6.436156666666667,2.0254333333333334,4.785725,4.56179,4.832495,4.3574,7.618894999999999,4.0818275,5.9513,3.489905,3.35108,3.030455,5.98185,3.838615,4.894145,2.220135,3.1403933333333334,3.363375,5.9091,4.14298,3.7049,1.483884,0.92683125,2.3162,0.5217373333333334,3.851295,3.652845,3.39603,2.8708,2.099483333333333,2.884925,2.57965,3.104772,1.929364,3.04095125,2.872475,2.3586475,2.587875,3.829842,1.20214,2.717035,4.958375,3.846166666666667,1.0539,3.0684799999999997,3.6744275,3.5299890000000005,1.5229875,5.8588,5.4746,2.0194233333333336,3.0195633333333336,30.23540209927001,3.2766366666666666,1.7514833333333335,4.001433333333334,1.5791166666666667,2.64012,3.0032833333333335,3.359833333333333,2.0309875,2.68855,1.8172125,3.9582075000000003,3.24792,2.4901775,1.51507,2.30488,2.92075,0.3718427272727273,1.1948325,2.7308033333333337,1.595106,3.45857,1.5229875,1.99587,25.09539822222222,4.734295,3.688795,3.607155,2.583175,2.63105,2.56941,2.32586,3.42496,4.773740999999999,5.323,1.599256,1.728914,2.11868,2.308345,3.6701449999999998,5.1711,4.55997,4.338035,0.1768291489361702,4.848145,4.887278333333334,3.852605,8.97698,1.0591375,1.0591375,2.97106,2.617625,5.4029,1.7898233333333333,0.9732322222222223,4.453555,1.94841,4.00002,3.86253,3.30717,3.953535,4.0748,4.77397,2.92588,0.7495400000000001,3.34597,2.2826508333333333,4.07969,7.703665,4.114945,1.91841,1.91841,6.49731,4.699715,4.32494,5.3971,2.1612566666666666,5.0610083333333336,1.44904,1.4534933333333333,3.10838,2.87729,3.265715,2.6883733333333333,3.90269,4.29082,4.152525,5.46345,2.24369,2.87745,1.8661275,2.568175,2.438925,2.07291,2.159195,4.7624975,1.8636125,3.5713409523809525,2.500226666666667,2.854456666666667,2.564296666666667,1.8705966666666667,1.4241728571428571,0.95383,2.4721066666666665,4.0542,0.685683,4.448945,1.7888,5.8519854166666665,2.0116175,1.6474025,1.48626,1.5854833333333334,5.563848888888889,1.8690339999999999,2.9993866666666666,3.7154000000000003,1.1912025,1.7809125,4.9194526666666665,3.1560333333333332,1.8136766666666666,3.5365,2.7965733333333334,2.935416666666667,1.2962826785714285,0.25316333333333335,0.25316333333333335,0.25316333333333335,0.25316333333333335,0.25316333333333335,3.62835,2.7512866666666667,2.51025,3.3349666666666664,1.4918133333333332,2.6860633333333332,2.9021666666666666,2.0152666666666668,3.557195,3.165455,1.7308233333333334,2.9334666666666664,3.06788,2.1517225,2.01789,3.975115,2.72482,3.891633333333333,5.4243,2.6384466666666664,2.711956666666667,2.5228433333333333,10.707705833333334,4.314605,4.266705,4.811075,4.164505,2.9562066666666666,5.13095,3.519655,4.332675,5.384656666666666,3.6525,3.12226,2.222825,3.23481,4.744874428571428,3.10369,17.51114,1.03745375,4.322355,0.8756133333333334,1.2144175,2.896875,4.52057,4.2386,4.886645,1.5647466666666665,2.354165,4.17642,2.01618,4.378925,3.1277978571428573,2.61076,0.6193366666666666,2.914516666666667,4.6106,2.3487175,2.3333275,2.073715,19.865984166666667,1.194234,1.304525,2.5784366666666667,0.28448769230769233,1.83235,2.777703333333333,2.03734,2.9640733333333333,2.69565,7.293514166666666,1.870995,2.52535,2.2216325,2.041415,1.60987,3.1846433333333333,3.09708,3.96284,3.096766666666667,1.9326425,2.534765,2.9678033333333333,4.92822,0.4086958333333333,3.648766666666667,3.0690233333333334,3.055615,1.9257975,3.638847,3.58162,1.5614066666666666,2.3653366666666664,2.1695800000000003,1.38392,1.8137666666666667,3.52144,3.484405,0.8142033333333334,3.33598,4.967745,3.974925,2.264504,2.264504,2.8684733333333337,4.12871,3.21083,3.38725,2.302635,0.8393318181818181,3.98334,3.619975,6.0802,3.76818,2.479324,2.479324,1.15938,3.527315,4.876345,4.177535,4.276075,2.88958,2.2774566666666667,4.213955,3.071695,4.15923,2.715426666666667,2.0244033333333333,4.142199333333333,2.8581766666666666,2.7649866666666667,2.0021633333333333,3.29839,2.65355,1.7309733333333333,3.78609,3.109975,4.24421,3.612,4.79203,4.21356,6.341967499999999,3.95314,2.0278,4.54747,2.63633,7.05148,2.5270233333333336,1.1940166666666667,4.67817,3.699666666666667,4.56679,0.4828807142857143,0.7933408333333333,3.594135,3.64452,1.9712856060606059,4.146555,2.76047,3.23806,8.437602,1.803002,1.26586,3.368135,2.65454,3.37378,4.70675,6.582273333333333,3.2031433333333332,2.16535,2.7678366666666663,1.7417966666666667,3.1139500000000004,8.78541880952381,0.8903104761904761,1.036675,4.31704,0.4314306666666667,1.61876,1.9242975,2.9536,3.033775,2.8834,4.37268,2.0915975,12.269895,4.9356975,2.4871725,2.4871725,4.17999,0.8740549999999999,4.618126666666667,3.69761,3.9511,5.442001666666666,3.466805,4.95648,1.44349,2.771565,2.613595,2.688555,3.259195,2.81118,3.194445,3.6617,3.65566,3.10613,2.898045,2.847475,4.115095,4.224775,2.8287566666666666,3.1903699999999997,4.637331666666666,4.31735,17.81877119047619,11.216594523809523,3.305037857142857,0.6811916666666668,1.4541285714285714,4.411025,3.442205,3.0097942628205128,2.239845,0.8376211111111111,0.6114883333333333,0.6862071428571428,1.99049,1.6040079999999999,5.3721,3.3577999999999997,0.7280954545454545,3.434995,2.48119,1.5986875,1.605462,6.299506666666667,1.547988,4.19943,2.717545,2.9489533333333333,2.478115,2.6073133333333334,2.5996133333333336,0.719489090909091,3.120485,2.9665733333333333,4.012476,2.92911,7.52603375,3.693535,3.29774,2.4406625,3.495245,5.5461725,1.9264425,2.3548875,2.467395,1.637355,2.4655275,2.12908,2.5661,0.9122830000000001,1.39164,0.9995,3.405735,4.45332,6.3355,5.4814,2.939305,2.46832,2.7819,3.2250099999999997,7.0795233333333325,1.2452033333333332,0.355405,2.943345,2.25257,1.434598,3.339532,1.224094,1.644522,3.59604,2.735465333333333,1.2456316666666667,1.9553433333333334,3.9995283333333336,3.761965,4.41325,3.758775,1.8846625,5.00035,3.844125,0.75056,4.66938,4.045335,4.175055416666667,3.1690833333333335,2.5432,1.374588,1.180495,3.51935,2.608325,3.42517,3.72754,2.62215,2.7168666666666668,3.36306,3.889705,4.238335,2.495375,2.80249,4.010505,5.6635,0.559305,4.522845,1.7514225,3.50301,4.029633333333334,1.312725,3.150225,2.1059275,2.038515,2.611015,2.3622608333333335,1.7606566666666668,4.564175,3.60063,1.2045614285714286,7.17156,1.0746266666666666,3.636815,1.7077566666666666,4.705565,3.963095,3.4408333333333334,3.160095,4.217775,8.45004,3.077945,3.76906,3.51201,3.77296,1.7393675,8.04376,3.69481,3.728545,1.636925,4.284065,2.9746,0.93893125,2.02624,4.12293,2.36617,4.231995,4.9402375,4.060935,4.431865,2.015745,5.22585,3.85849,3.2474399999999997,2.3848966666666667,1.497376,4.170455,6.18755,4.190725,4.741495,3.052505,2.1044725,3.86862,3.26934,1.1494826923076924,4.14813,4.885014166666666,3.930005,2.921175,3.703665,0.5392857142857143,0.5392857142857143,4.02779,3.71351,3.480075,2.20407,3.5896,6.12975,0.84681,3.850085,4.69547,4.549,4.82835,4.72401,1.8944275,3.182975,2.1545075,4.43529,0.66401875,4.043295,4.03505,2.73217,2.85519,4.175,2.33633,3.436675,59.97176557142857,3.424275,2.60765,1.765865,3.360155,4.07144,0.81546375,1.001525,1.94165,1.94165,1.388738,3.229995,2.241715,3.5907039999999997,7.31257,2.7909400000000004,1.258257142857143,1.2872466666666667,2.7135033333333336,4.125303333333333,0.849066,1.96424,1.2932359999999998,1.85262,3.95755,4.05381,3.222755,20.469471404761904,3.26214,4.047735,3.410635,2.292073333333333,2.757485,3.38744,2.416405,5.44873,1.420882,3.976045,3.3659309246031746,5.771975555555555,2.067945,2.76575,1.93707,4.60965,2.4292599999999998,2.29997,2.114,3.497757777777778,3.57692,3.349785,3.626885,3.988375,2.4833125,2.469225,2.942855,2.706875,3.175577777777778,2.217995,1.994485,3.35142,1.1826233333333334,3.856285,4.531365,2.668265,4.70533,4.86895,4.785111666666667,1.9882733333333331,2.507885,2.722895,2.900695,4.125995,3.447065,4.53432,0.7308642857142857,3.806662666666667,2.97296,3.727315,2.3578325,1.8328099999999998,3.73912,1.1635111111111112,2.893925,4.35422,1.134798,3.788125,3.361545,4.588285,6.124147499999999,2.19761,2.94841,2.65891,3.9066666666666667,3.0151833333333333,2.7750266666666663,2.84301,2.547563333333333,2.545106666666667,1.4682333333333333,2.0936975,2.0936975,1.9431033333333334,2.1229833333333334,1.74296,2.6274266666666666,3.70245,5.48645,4.636255,1.731415,4.28078,3.77079,3.62069,4.410515,2.001485,1.907215,4.6986349999999995,2.06553,4.431735,3.501725,3.62012,2.50474,3.95078,3.234195,3.125095,3.613665,0.15005061224489796,2.2323066666666667,7.795935,1.563906,3.478785,2.88125,1.0113571428571428,1.112995,1.9074925,3.846355,2.979195,7.18094,3.649545,3.923355,2.869695,2.758345,3.563785,3.64434,4.09303,3.4589,2.91093,5.45535,3.840885,4.071825,2.7190166666666666,1.9749325,3.495395,4.37345,2.79914,2.859625,2.141105,2.56839,4.13159,3.93851,2.72144,4.551105,5.20435,2.814495,4.035615,3.61282,3.647545,4.606595,3.51485,3.32538,5.50779,4.56643,5.2676,5.08225,4.535855,5.1829775,4.431915,3.687325,1.341064,6.5936,2.442155,4.142345,4.273125,4.037625,3.0895566666666667,1.9672066666666668,2.2338333333333336,2.501306666666667,0.9778230000000001,3.478733333333333,3.8682666666666665,3.085976666666667,1.9852233333333331,3.69645,4.21517,2.3947133333333332,0.5696100000000001,4.47515,4.67591,5.0073,4.533535,3.66691,4.61495,4.798315,4.93984,1.3673444444444445,0.9468076923076924,2.752353333333333,5.0759,5.90685,0.49309375,2.86744,2.4813266666666665,3.34768,4.501165,3.951333333333333,1.971615,5.6446,3.345425,4.26534,3.14533,6.4056,5.0455,6.876475,0.5076558333333333,4.11321,0.758602,2.49623,4.0862,3.2005733333333333,1.4977033333333332,2.29032,4.23284,3.50989,4.381455,1.73274,1.8093775,2.832395,4.477005,4.121035,3.721825,1.681646,1.1885095714285714,5.8841,2.175595,7.6087425,4.07097,3.71832,2.1153375,1.7122925,3.98197,4.52633,1.6907166666666666,2.42953,2.485645,2.2323066666666667,6.5935625,3.08323,2.7954033333333332,3.5421175,3.54759,1.9085,3.300205,6.896677499999999,4.47759,5.1201,0.49666272727272726,3.1085,4.0642,4.5831574999999996,3.53854,4.2246,3.0758,2.754525,3.30306,2.979265,3.4689015,2.03072,5.53789,4.650755,5.05865,3.975105,3.395405,3.2507349999999997,2.324365,1.333145,0.8908725,2.853835,2.475575,1.1272133333333334,2.708016666666667,4.431355,4.335805,3.776025,3.930575,16.808644404761903,4.06571,4.627665,3.74328,0.7237933333333334,4.956345,4.219715,3.785015,4.83701,5.1103,2.518345,3.57611,3.362395,1.47828,3.16023,4.603745,3.3198633333333336,1.529154,3.73958,4.969505,3.947335,5.0094,4.8101,5.49305,3.93464,2.6150800000000003,4.19735,4.09959,2.70973,3.061393333333333,2.9921933333333333,1.5053958333333333,4.698925,2.5974510714285715,1.89302,3.94176,2.19801,4.41233,4.0946983333333336,2.209395,2.59475,4.44836,3.84222,4.21753,4.517545,4.94561,4.580636,2.90865,5.3299,2.679105,3.666125,3.997405,1.5668659999999999,4.27337,1.0307199999999999,4.39959,2.88519,0.8614785714285714,3.73767,2.129705,6.356450000000001,2.466837095238095,2.466837095238095,2.466837095238095,0.7907233333333333,1.119135,1.803545,3.419715,5.42923,3.357342222222222,2.01109,2.2079475,1.7339066666666667,3.879085,2.41429,0.4173453846153846,1.779065,2.2538175,2.946755,1.91228,2.314625,2.35448,2.0914675,3.95856,2.8340833333333335,2.789395,2.934955,2.06107,6.83908,2.0167,4.316205,3.95343,6.450245,1.67235,3.66943,3.88589,3.754165,3.600185,2.84193,1.882855,3.805405,5.6643775,2.044495,3.58381,3.316035,1.9227475,4.53852,4.145215,2.4957133333333332,2.25755,3.619405,4.981635714285714,5.99525,3.157205,2.45149,2.92808,2.99559,2.6565,3.85979,1.3045175,2.987335,4.53482,0.767815,3.510005,3.97344,3.92001,3.10189,2.451285,3.170145,2.275745,4.44857,7.969608333333333,4.103145,3.370355,2.888705,1.00163125,4.561335,2.19971,4.255745,5.497847500000001,3.742905,3.84897,10.10506,4.70056,4.013095,1.5621975,0.6836841666666666,2.83215,3.887005,3.50374,3.771675,2.2490366666666666,2.5074666666666667,2.0984633333333336,1.1800916666666665,1.1800916666666665,2.0633033333333333,2.3688166666666666,1.9638233333333333,2.29944,2.76778,2.280066666666667,2.2538,2.932593333333333,1.4958799999999999,2.5573866666666665,2.1280066666666664,2.0373466666666666,1.5023575,2.5032099999999997,0.812135,9.505890416666666,0.812135,3.12431,2.0633299999999997,1.8435766666666666,4.252945,4.32974,4.01121,4.14646,2.1904866666666667,3.048493333333333,3.3343566666666664,1.9734533333333333,3.0822533333333335,2.84047,2.3868666666666667,2.336446666666667,1.7157833333333334,5.45055,6.204850380952381,2.7352333333333334,3.409133333333333,3.30027,2.5503833333333334,2.37999,1.0957071428571428,3.4605333333333337,3.4168333333333334,3.828305,5.9546,4.260595,2.8597099999999998,3.426633333333333,2.7331,4.061084444444444,4.246895,2.6909766666666664,3.20735,3.06211,2.8733233333333335,4.67571,3.2466566666666665,3.29341,5.593055,2.05634,2.4920266666666664,1.9545566666666667,1.4559933333333335,4.727013333333334,3.4862416666666665,2.50798,2.132163333333333,2.1382166666666667,4.336825,3.643855,2.698565,3.32004,3.1336033333333333,3.3209366666666664,3.3741333333333334,3.3277,3.0973733333333335,0.549745,3.6912000000000003,2.4999233333333333,2.8691,3.26838,4.064045,3.93433,4.978395,2.57732,3.8832433333333336,1.0938183333333333,2.8159166666666664,2.8159166666666664,4.26738,2.74418,3.926365,4.238225,1.57452,3.119485,3.725045,1.1891728571428573,3.5474758333333334,3.035092,2.160452,0.37934199999999996,4.664315,2.850125,6.40984,2.77869,5.88925,3.31124,3.86115,4.01683,1.610734583333333,2.86876,3.940565,3.199725,3.2904366666666665,2.9136966666666666,5.3819775,2.1381875,0.97848875,1.9876800000000001,1.7724233333333332,5.4622,2.278016666666667,2.439486666666667,1.67491,4.25214,4.03391,3.649855,0.459209,3.952485,3.783385,2.2061966666666666,2.28683,2.475496666666667,3.091241666666667,3.849763333333333,1.4883199999999999,0.637721052631579,0.7715714285714286,3.270896666666667,3.81246,6.010493333333333,4.543665,3.93749,5.2344,1.34895,4.029633333333334,2.3045033333333333,0.99858875,5.5381,6.06005,2.50314,4.821325,4.08576,6.504904999999999,3.7987,6.131241666666666,3.732775,2.372086944444445,5.6695,10.110205423076923,2.521306666666667,0.5836680000000001,3.010695,4.012835,2.175665,6.42105,3.882275,3.43625,2.653,2.653,5.6958,3.286895,3.943245,4.853945,3.8012801904761906,2.4155337142857145,1.07747125,4.68641,2.758105,5.03518375,3.547105,4.21522,3.006615,2.2250375,4.240805,4.846835,3.5201333333333333,3.94111,4.35637,27.11371488095238,1.91184,2.529675,2.3687975,1.6627433333333332,2.5931933333333332,1.0070857142857144,2.7934566666666663,3.09395,3.347466666666667,2.8864466666666666,0.6027276923076923,2.9749033333333332,3.36784,2.69453,3.083066666666667,3.43796,5.525555000000001,4.845765,3.937085,3.460105,3.8145366666666662,3.630325,3.451966666666667,1.69827,0.9672999999999999,1.47502,2.1625166666666664,1.5663233333333333,2.8052733333333335,2.477113333333333,2.360473333333333,1.88692,2.700665,2.131855,1.8938033333333333,3.14784,4.22506,3.71298,4.07715,1.40602,3.0818966666666667,2.54661,3.524255,2.1382233333333334,2.6068,2.405645,1.4951733333333335,3.845945,6.6581600000000005,2.860725,3.85998,4.13321,2.56485,3.3524266666666667,3.5069,3.335515,4.591735,0.3422165444015444,0.3422165444015444,4.637925,5.0275,3.25897,2.761675,5.3303,4.0766,0.6491930769230769,4.798445,4.15416,3.71537,6.3665,4.825105,7.68195,14.286353333333334,12.174984615384615,4.419985,4.386775,2.406076666666667,0.5656646153846154,2.3782533333333333,4.0809,1.3020766666666665,4.45697,3.5208333333333335,2.79553,2.0759266666666667,2.0324066666666667,4.816695,4.789235,8.658177857142856,4.989485,4.183265,7.328401893939395,3.483985,3.3221433333333334,1.361995,5.3572525,1.8298525,2.4962233333333335,2.8367533333333337,0.232755,2.950775,3.47043,4.630790833333333,0.758552,1.1270183333333332,4.04886,0.567045,0.567045,2.9824454166666663,3.2377566666666664,3.236026666666667,3.744305,4.339015,5.4213,3.839395,4.27714,3.149025,3.0838066666666664,2.45451,0.8770083333333334,2.7641733333333334,3.070375,3.07883,7.262455,2.817095,9.535375,3.211875,6.60185,2.93151,2.2599575,2.3985925,2.733225,1.85166,2.3377525,1.9508075,3.35978,2.3231225,4.100375,2.922645,4.1311675,4.1311675,2.8010358333333336,2.8010358333333336,8.655007833333332,2.317886666666667,0.828509,2.6396966666666666,2.56094,2.55347,4.100375,1.8970939999999998,1.8788019999999999,1.547708,3.34349,3.705725,1.6884825,4.396405,4.1948,5.532818333333333,6.575193333333333,2.2530033333333335,4.28968,5.40744,3.511045,2.773845,2.12701,3.058795,3.202760909090909,4.20708,5.014073333333334,7.140067999999999,3.2586725,2.859485,1.18714,4.156995,3.9236573333333333,3.57228,3.644518333333333,4.24886,2.376705,2.3055066666666666,5.78781,2.86312,1.250746,5.12633,3.72183,2.57686,5.1026,2.57686,2.71805,3.3737,5.013,1.0676471428571428,4.091247777777777,4.21742,3.464135,1.2569883333333334,1.6238225,3.630135,3.77305,2.61541,6.392208333333333,3.94938,3.406785,3.907895,4.56362,1.2747,3.598525,2.307875,3.602105,3.6021,3.462695,4.80083,3.30437,3.713295,4.57728,1.9785103333333334,1.8804525,3.1470599999999997,3.5819666666666667,3.4357,2.5928999999999998,3.5615666666666663,3.1350433333333334,5.52695,3.36792,3.560305,2.914085,1.83739,3.597466666666667,1.96595,3.152875,3.15042,3.0942,0.66401875,2.1036075,1.8553766666666667,3.302615,1.7657640000000001,3.519106,4.21331,1.2164160000000002,3.017585,4.41063,0.8958299999999999,1.3988066666666665,3.230225,3.936265,3.141455,1.976915,1.7259033333333333,3.539545,2.577795,1.7487300000000001,2.95158,1.92179,1.252844,1.38502,6.36281,3.09863,2.21191,2.521075,2.3634625,3.800305,0.91808,0.36602428571428575,0.7933842857142857,4.675275,1.7543465714285715,5.0093,2.05266,1.588526857142857,2.7847745714285717,1.1962477142857144,0.9987308571428571,0.681708,0.5954957142857144,2.540935833333333,6.39445,2.958085,4.288925,0.3287375,3.585565,17.618478619047618,3.110875,6.926215520979021,1.10919875,1.10919875,1.10919875,1.10919875,5.708355,4.11834,4.170445,2.226366666666667,3.059175,3.494015,5.6017,3.780115,3.49076,4.17573,3.948105,3.514285,3.878528,4.10081,4.78476,4.122505,4.377925,3.389835,4.222375,2.6031400000000002,3.726315,3.382065,3.405245,3.636785,4.048885,3.0720533333333333,2.353175,2.52381,3.80912,1.2320642857142858,3.849115,2.351383333333333,3.304542,4.060935,4.33697,3.319805,2.96913,4.38165,3.18587,3.37999,5.02515,4.82705,3.19352,3.31074,1.6816780000000002,1.6816780000000002,1.6968125,4.624285,3.703205,5.352136,5.2154,3.5338783333333335,6.5534,4.690925,2.098405,9.70766,5.4061,6.443944999999999,4.461605,2.8400499999999997,2.84953,0.25601137931034484,0.84385125,3.3045626666666665,3.577445,4.716955,2.8799433333333333,6.314863333333333,4.758375,0.580875,2.792075,0.532697,1.7743321428571428,3.29948,2.132325,3.847155,4.209735,3.324155,3.600645,3.54606,3.645545,3.579835,3.74595,3.400615,2.465515,1.7743321428571428,2.91688,2.0005625,3.62796,2.39195,3.63222,3.65483,1.7393675,4.567105,2.866,1.3169199999999999,4.53654,4.577405,4.362285,2.9333033333333334,2.994483333333333,4.13272,1.9940533333333335,1.440688,2.504653333333333,2.64847,2.586673333333333,2.192023333333333,4.777085,3.444305,4.980725833333333,3.8113407142857145,4.78259,3.63175,1.631824,5.1452,4.06763,5.2665,4.054445,6.746594999999999,1.8942925,4.83616,3.26213,3.19514,1.6076675,1.85612,3.939455,4.33912,2.71223,2.670263333333333,3.4110699999999996,3.4110699999999996,2.5954566666666667,2.9883866666666665,3.296025,4.02558,3.773885,0.7029484615384616,3.17571,4.560505,5.022836111111111,2.897585,3.039915,1.82812,2.826125,3.58211,2.32488,4.519045,2.798395,4.728945,1.7240733333333333,1.0204909090909091,6.13653,3.663045,3.3630333333333335,3.0877966666666663,1.7293220000000002,30.23007711904762,3.694685,3.532955,5.68865,4.50466,0.856175,6.6051400000000005,1.74812,5.63145,1.3187366666666667,4.21189,4.946806666666667,3.86995,3.13029,2.0768675,3.4437333333333338,4.65628,1.9544625,2.7473466666666666,3.60654,2.704625,2.642715,5.9377,2.34729,6.20625,1.1234675,4.34507,3.736145,3.91019,5.09105,2.984885,2.2976733333333335,3.97874,4.37811,3.8495425,3.8495425,5.79025,2.2494925,4.416335,6.29529,3.55677,4.03608,3.30104,4.26617,3.6444,4.30442,1.4006025,2.68352,4.48271,4.536125,5.54905,4.384455,2.052285,9.313846666666667,3.327955,3.76417,1.6999857142857144,3.490535,2.2290566666666667,2.7940133333333335,2.0796983333333334,1.2751833333333333,2.448796666666667,0.9230628571428571,1.1676828571428572,1.1676828571428572,1.1676828571428572,1.7936699999999999,0.617015,3.855055,1.2051333333333334,2.32476,0.8052833333333332,1.77794,2.7706766666666667,1.8749433333333334,0.7780325,1.7732066666666666,1.4675866666666666,2.4955433333333334,1.65902,1.65902,1.6789100000000001,1.86609,0.90194,1.65736,1.5612599999999999,1.18168,2.282235,2.07786,5.8112,1.7850375,5.60135,16.994960416666668,6.616565,3.65287,3.6160983333333334,3.334566666666667,2.670006666666667,2.7531133333333333,2.88293,0.6840408333333333,0.978921,0.978921,0.64808125,2.1938166666666667,3.539085,3.3669,1.456486,5.037,3.920165,2.45963,3.721725,4.849655,3.73718,4.029535,3.451833333333333,3.260355,3.55451,5.6142,3.1072366666666666,4.82145,0.5361830000000001,0.5361830000000001,2.61637,2.7761,4.634575,3.59835,3.806445,4.50565,7.642112,7.316610000000001,3.55172,2.47928,4.39441,3.45857,2.4554566666666666,2.326375,3.5091,1.3319400000000001,3.790235,2.568255,1.5617,3.5575666666666668,3.575525,2.07972,5.014073333333334,1.49643,3.3926,2.886105,1.0516842857142856,3.6734000000000004,2.828863333333333,4.077605,1.1124216666666666,1.6935575,2.209145,2.08245,1.76805,2.478945,1.926245,2.0654725,4.061705,4.43434,2.388325,1.846075,1.4690466666666666,3.452,2.0384233333333333,2.5326,4.53048,7.2635,2.2534141666666665,3.11812,3.656135,3.5549,2.424305,5.07655,4.036365,3.09785,1.304275,4.5598,2.38527,3.1096066666666666,2.62258,3.61063,4.893215,5.63185,2.1742233333333334,2.611056666666667,2.84747,3.4290333333333334,1.9768833333333333,1.438682,5.44345,3.22335,2.198854545454546,3.040903333333333,2.8708266666666664,2.1768300000000003,3.2271666666666667,3.102536666666667,3.338366666666667,5.30725,4.532035,2.93662,4.867685,3.15111,2.52332,3.57785,3.79093,4.115915,6.0829945,1.8112860000000002,3.95131,2.30931,3.17005,3.74492,0.56563,2.41759,2.32136,3.339985,2.771305,2.328475,2.854915,0.565356,2.7065266666666665,4.3302,2.4441475,4.179465,2.3913699999999998,3.784915,1.933655,4.388345,4.447345,2.01248,2.86194,6.8335799999999995,3.602875,4.264915,4.77432,6.926058522727272,4.306065,4.23433,2.16373,4.422305,3.06341,1.9726033333333335,1.9965025,2.06015,1.0336457142857143,2.308196666666667,2.37444,2.603266666666667,3.087476666666667,1.7795020000000001,3.276695,1.9442233333333334,4.199215,5.09375,1.05724875,1.8429633333333333,2.6105233333333335,2.9288000000000003,2.0121766666666665,1.096625,5.498323333333333,2.1383525,2.73531,2.6079233333333334,2.437203333333333,2.7559733333333334,3.19939,2.3286366666666667,2.716613333333333,2.2487033333333333,4.090995,3.552435,4.07379,2.96341,2.965616666666667,0.689072,1.8229766666666667,2.1182525,2.039703333333333,2.5937466666666666,1.1698483333333334,2.783053333333333,2.96396,3.84781,1.99174,3.428015,3.03525,4.896275,3.28618,0.6350541666666667,2.06682,2.8204100000000003,3.1605366666666668,0.7291672727272727,2.81819,3.36371,3.403033333333333,2.78907,3.3315141666666666,3.82649,3.9956333333333336,3.079196666666667,1.8077075,5.45325,4.98107,4.91671,5.4667,5.65975,1.8882333333333332,3.22267,3.5684666666666662,3.2983733333333336,2.7607633333333332,2.7060333333333335,3.778166666666667,3.5324000000000004,2.8359166666666664,13.405550000000002,4.44099,1.08134,2.64935,1.477386,3.164953333333333,3.279616666666667,2.0197233333333333,5.773685,6.5090275,2.2213499999999997,0.8337870000000001,3.994715,3.4110666666666667,3.1036,4.330525,5.2499,5.373,4.910555,3.508165,1.9565575,6.535762500000001,1.18714,6.093742499999999,4.49899,2.25835,4.091745,6.723211666666667,5.72645,2.2170033333333334,1.4193133333333332,2.0564,6.4356816666666665,1.5229875,2.9549766666666666,2.5083016666666667,4.124621111111111,5.7044,4.47526,6.43205,3.44833,5.10125,3.735695,8.19591,4.885195,5.87405,2.416935,2.4695875,11.203596666666666,3.456275,2.51459,2.5475866666666667,1.6400466666666667,2.2487866666666667,3.3040066666666665,0.6996325,1.040442,1.09043,3.100735,6.7889333333333335,2.9859620000000002,1.3997533333333332,4.475585,3.32845,0.588294,4.546965,4.25378,5.0452,3.585595,3.02568,2.7321766666666663,4.34471,10.462064999999999,1.8538575,3.90404,4.107215,4.215955,3.76709,0.8094741666666666,3.6803000000000003,3.9671000000000003,1.7481666666666669,2.47269,2.3354033333333333,2.52781,1.8780066666666666,2.19055,2.272745,5.807600714285714,5.43115,3.169695,4.7477833333333335,1.6832333333333331,2.325915,4.634675,4.06288,4.452685,4.0276,4.42225,4.739835,1.6816780000000002,3.83077,7.6143366666666665,1.2027050000000001,1.76557,2.4570133333333333,2.5753333333333335,2.8349266666666666,4.809727166666667,0.7715714285714286,2.47506,3.39031,5.96485,4.76429,2.28036,2.945593333333333,1.9625925,0.536831875,2.59265,3.024515,7.848965,4.496535,4.45592,0.853505,4.576066666666667,8.942037833333334,10.273126666666666,3.375,1.2124,3.72925,3.5584,2.5494666666666665,5.16323,4.60471,3.834525,1.917115,3.7261333333333333,2.21976,2.62635,0.7772245454545454,0.37755799999999995,2.66725,3.37234,1.9788634999999999,3.477055,2.978066666666667,4.48327,5.51175,1.5713279999999998,2.7958433333333335,2.24647,2.24647,2.29996,3.23376,6.5673,2.751443333333333,2.3531400000000002,3.2389733333333335,3.4016,4.31279,4.15485,3.991425,4.286845,4.143245,4.108265,7.02965,7.996785833333333,1.9203925,2.3748133333333334,2.8345233333333333,0.9865200000000001,0.6790666666666666,4.93857,2.362175,5.0457,2.8830333333333336,2.9849033333333335,1.6974740000000001,1.57471,3.905075,4.305385,4.53772,1.9928833333333333,1.3631900000000001,2.69298,2.04408,2.7106433333333335,1.144297142857143,1.144297142857143,2.7217566666666664,4.778535,3.111505,3.379465,3.59675,2.3549,19.71883106060606,3.82499,5.27548,4.20047,4.56602,3.920175,3.45702,5.5736,6.050767499999999,0.8263583333333333,0.8263583333333333,0.8263583333333333,2.7815933333333334,1.6952285714285715,3.171443333333333,4.02233,3.946965,3.146285,4.05865,4.27177,0.79232,2.0483,2.1203433333333335,6.269300833333333,3.5693374999999996,4.198763333333333,5.00185,1.312725,2.0858833333333333,2.3630833333333334,0.534135,0.843436,1.988695,2.212205,2.993305,12.58066,2.59504,5.32765,0.7358214285714286,9.217220000000001,5.3428,3.780305,3.852585,2.65945,5.19715,2.65945,2.7346019999999998,3.342715,3.930665,3.21634,4.02912,4.15398,3.65731,5.7281,7.033676,1.8397833333333333,2.4625079999999997,2.95273,26.028944544401543,1.420858,6.3437,3.8833659999999997,3.929975,4.431135,4.3206,2.74168,2.621825,2.388195,6.49305,7.1438,4.56217,4.694995,3.963685,1.7108,1.93314,4.22987,0.40418,0.40418,0.40418,0.40418,4.319505,3.3654749999999996,1.10473,1.87176,1.1513111111111112,4.377095,2.474883333333333,2.330835,7.033858333333333,3.14014,0.17298275862068965,20.058390166666666,4.672726666666667,1.764872,1.3157357142857142,2.14576,1.955394,2.0959425,4.564465,3.17022,3.478175,4.34681,2.2499766666666665,7.517565,2.822065,2.059915,4.548245,5.7222,8.446136666666668,4.277615,0.29743170731707314,3.686275,3.8022,2.5762033333333334,1.9989275,2.901873333333333,1.7107833333333333,1.7107833333333333,4.096955,5.7763325000000005,11.000082500000001,8.99635,0.5936722222222222,2.5125,3.613525,3.179625,4.470105,3.37705,1.2176500000000001,1.2176500000000001,3.158235,4.088715,2.6458666666666666,3.59664,4.453595,5.40055,6.8000549999999995,2.17962,4.801985,4.456065,2.67242,3.0871733333333338,3.0155833333333333,4.61919,3.935825,5.52225,3.99945,4.471595,3.66188,4.26809,4.174585,5.21585,2.6625666666666667,3.0970566666666666,1.048058,4.23309,4.01605,3.70635,1.518014,1.8565166666666666,3.5870333333333337,2.7801733333333334,2.5010266666666667,3.939513333333333,1.6319299999999999,2.036655,1.9188599999999998,1.9076166666666667,2.35732,1.8168166666666667,3.6,3.1063766666666663,4.2062333333333335,3.298911666666667,2.1720366666666666,2.5934733333333333,1.9916233333333333,2.86074,1.98357,38.52615591666667,2.1436769090909094,2.1436769090909094,2.603056666666667,2.35789,2.2061533333333334,1.67758,2.8407433333333336,1.9622433333333333,0.813023076923077,5.08,6.7049075,4.147685,4.102235,5.59655,1.8355666666666668,4.1933,1.8179200000000002,4.90408,4.638455,5.71915,4.01048,1.69827,4.018015,4.05088,4.54967,4.618985,5.30865,3.97505,2.86307,3.4244,2.60264,2.1266625,2.024435,4.40152,2.4846633333333332,3.9430000000000005,3.9430000000000005,2.3570533333333334,1.6600066666666666,2.3105166666666666,2.4853366666666665,2.10269,5.4572,2.591816666666667,1.2137983333333333,1.2137983333333333,2.0599000000000003,2.02681,2.4955333333333334,2.685446666666667,2.448373333333333,2.3773233333333335,2.1599133333333334,2.170732,3.002332,1.53974,0.8316,61.62123732638889,2.7166420000000002,3.32764,2.46056,0.939794,3.8581326666666667,1.620188,1.620188,3.078886666666667,3.072566666666667,0.70814,3.18661,5.295546666666667,3.247593333333333,2.3892466666666667,2.9128600000000002,2.0838666666666668,2.6953886666666667,0.313011875,2.800316666666667,0.788342,2.5953399999999998,1.22051,1.22051,3.531,1.9321259999999998,2.714123333333333,1.5612753333333331,3.4022,1.5612753333333331,2.20844,2.2206633333333334,2.964173333333333,1.3572359999999999,1.3572359999999999,2.8369233333333335,1.5324733333333331,3.1224066666666666,2.2012933333333335,4.234445,3.464955,11.668777916666667,7.035620000000001,3.0971,2.34495,3.45268,5.19185,5.4567,2.7009233333333333,3.71351,3.66272,2.1802966666666665,3.850815,3.2361766666666667,2.8880933333333334,4.60799,2.2259533333333335,1.065222857142857,3.6417466666666667,2.8538666666666668,3.029195,0.80795,2.60813,3.486155,4.134375,4.40031,6.6048,2.01618,1.858276,4.331405,4.333055,2.379555,2.5234525000000003,2.06552,2.361311333333333,1.003418,5.03665,4.048015,3.5973,3.6798,2.9975633333333334,5.01935,4.99856,2.6229999999999998,1.7797133333333335,0.5070406666666667,14.294051166666666,0.5219654545454545,0.5219654545454545,0.5219654545454545,2.97143,3.8994999999999997,0.5219654545454545,6.860673333333333,4.335533333333333,0.741468,0.741468,3.3578333333333332,3.41963,3.03326,4.508875,5.1056,4.1663885,2.44931,4.982361333333333,3.05061,3.4555830357142856,5.02287,2.8277865,2.3227825,2.3754425,2.7633,1.656715,3.3164783333333334,3.027426666666667,2.04241,1.983015,1.9465025,1.8058833333333333,1.619025,2.595375,1.0364633333333333,2.4228875,0.5897271428571429,5.14045,1.755315,0.6114058333333333,2.01425,8.06017,2.790705,2.129662,3.35947,7.30235,2.599,4.23952,3.143885,5.87432,3.37073,3.74979,4.055245,3.845585,2.8569533333333332,4.144159999999999,1.116607142857143,4.13138,2.517043333333333,2.55375,2.585735,2.464805,2.01982,1.261425,5.54685,0.9533636363636364,4.84853,5.4944,4.89857,5.25895,3.7167,2.3157733333333335,1.7820820000000002,2.783516666666667,2.83099,2.574975,3.891166666666667,2.610825,5.1572,1.8004120000000001,39.37770880952381,4.507935,2.4222366666666666,2.1878733333333336,2.559223333333333,1.5363533333333335,5.8793,3.775145,2.3747966666666667,3.07523,2.29248,1.73087,5.24745,0.8000428571428572,4.242558571428572,1.2951042857142858,3.5424333333333333,3.2539700000000003,2.5526866666666668,1.34705,4.327026666666667,1.658858,1.658858,2.2105133333333336,2.6960916666666668,3.298783333333333,3.3167166666666668,1.4298133333333334,2.7392299999999996,2.7125466666666664,6.274921333333333,2.7628,3.5453116666666666,0.9986866666666666,1.4485599999999998,2.874943333333333,0.9514440000000001,5.040809166666667,3.21645,2.84895,3.4586333333333332,2.7435833333333335,2.7444666666666664,3.19016,1.6947133333333333,2.3634625,2.286563333333333,3.3065233333333333,2.5001633333333335,3.762366666666667,1.68801,0.6462866666666667,9.973074038461538,2.8460900000000002,5.22805,5.07305,2.7456266666666664,3.1066599999999998,1.3807125,2.1275999999999997,2.187855,1.3807125,4.321745,0.448435625,0.448435625,1.1803175,1.1803175,0.7872925,0.7872925,2.291065,3.145655,2.433065,1.4867,1.68043,3.61164,3.003165,4.000645,5.48815,1.83781,4.26195,2.601965,4.5869884615384615,1.687845,1.687845,2.116545,1.6179700000000001,3.6246383333333334,1.9942825,4.33631,1.5647466666666665,2.62365,0.5489207692307693,1.0673742857142856,2.0639175,2.07064,1.82262,1.3390375,3.969095,4.13293,1.9983666666666666,2.395776666666667,1.3160466666666666,0.6746383333333333,2.30192,3.53666,3.208466666666667,4.55993,4.886015,4.857195,3.96597,6.449237500000001,1.5079033333333334,5.9219550000000005,1.903765,4.53685,4.57585,5.739394,3.4503,2.330825,1.825295,1.993862,1.993862,2.522825,2.522825,4.221205,5.90525,0.959526,3.811145,3.208435,3.492295,2.4259033333333333,1.45011,2.831023333333333,4.26059,3.88798,1.643938,6.54875,4.811895,1.7661499999999999,1.2778,4.04371,4.153513333333333,3.59285,3.78032,3.85352,0.6195907142857143,3.755133333333333,3.3531333333333335,2.7348666666666666,2.87298,2.28312,3.6900666666666666,1.5434571428571429,1.5434571428571429,1.5434571428571429,3.0543833333333335,3.0783566666666666,3.1931066666666665,3.2517252976190476,2.194805,1.17981,3.0035333333333334,3.0900733333333332,1.4012928571428571,2.6114566666666668,2.6541833333333336,1.142934285714286,2.4411466666666666,2.867373333333333,2.90137,2.579286666666667,2.44309,1.9280425,3.06578,4.470432666666667,3.779315,0.9600519999999999,1.31998,0.535687,3.5088666666666666,8.70004,2.840616666666667,3.53063,3.108306666666667,4.44282,1.95943,7.473728333333333,6.620096666666667,2.64836,2.1228374285714287,4.039585,4.88815,1.580244,1.185138,1.408376,1.95053,10.09754,2.4432833333333335,3.03613,2.8384169999999997,3.95289,2.088983333333333,1.0722775,6.1024,1.2244816666666667,3.2652426923076923,4.293575,3.265685,3.2485766666666667,3.173545,4.71918,1.20725,2.0165475,1.8337713333333334,1.8337713333333334,3.832755,5.5803,10.0917925,4.41329,3.41927,4.68038,1.7819875,2.37479,4.510105,3.50528,3.910275,1.5353583333333332,2.7579166666666666,3.49899,3.770185,2.50985,4.10788,3.664255,3.508845,4.20269,3.877735,3.83392,5.10675,3.187753333333333,2.4501233333333334,4.28677,3.13566,3.84726,1.958895,2.461385,2.648815,5.4572,2.564405,3.2488212499999998,1.683105,2.49277,3.370125,2.1519975,2.1254125,0.8356733333333333,0.8356733333333333,1.846645,3.330912424242424,4.088715,2.846363333333333,4.306135,2.9559091666666664,2.5238017142857143,0.9623025,3.06974,1.623895,3.745975,4.19003,0.8713833333333334,1.900915,3.933635,3.03508,1.657475,1.7127133333333333,5.163238571428571,0.9690383333333333,2.761795,3.309295,2.86133,2.456345,2.820183,2.170315,1.030215,2.93254,3.11554,3.39952,1.4673333333333334,1.4308633333333332,1.843455,4.42962,2.18569,4.49897,4.404085,4.304685,5.9791,4.95939,4.085085,6.472825,3.9404142857142856,0.7891436363636365,3.11702,4.486365,3.570365,0.47458181818181816,1.006378,3.253495,4.00602,4.683865,3.76543,3.1337235714285714,2.842535,4.3462,1.723914,2.3309275,4.27191,4.248115,2.902315,2.66922,3.2643,4.60197,3.061525,4.8468375,0.9124399999999999,2.88263,2.93731,4.157905,4.41872,4.55934,2.18854,2.53161,2.97262,1.9988400000000002,4.951465,3.06172,1.3018814285714286,2.58217,3.8439674999999998,1.5489140000000001,5.643425,1.824248,2.5988700000000002,13.516459866846603,2.8193066666666664,1.50462,1.6232683333333335,2.17389,5.397065,1.681646,5.666596,0.6581715384615384,3.2044200000000003,4.39043,7.54903,2.6449866666666666,2.7051866666666666,2.7051866666666666,4.418725,4.13892,3.501815,3.41131,4.680595,5.1479,2.63161,3.122253333333333,4.285945,1.2894716666666668,2.3638266666666667,4.360985,3.68063,2.59465,2.1315833333333334,3.706505,3.343325,5.888553333333333,6.1979775,0.63909,3.776225,3.33816,3.7413333333333334,4.321165,3.88079,3.91621,1.273398,4.9427,2.42835,2.805095,4.20221,4.27805,4.49097,0.8831298571428572,2.54176,8.903883333333335,1.4877566666666666,2.1319498701298705,2.3470225,3.94937,3.51951,3.31382,0.6687972727272727,2.244995,1.72373,2.1980275,4.13019,5.223067333333334,2.788964,8.642065,2.2886133333333336,2.681093333333333,0.995795,4.195325,5.06115,2.160085,5.384656666666666,2.71418,3.252775,5.3236,4.152755,4.65329,2.22301,1.6567675,1.6567675,2.809035,3.143235,4.673568333333334,1.618435,5.945583333333333,1.4297199999999999,3.55813,1.2188916666666667,8.827722166666668,4.347665,2.790325,4.008465,3.911295,3.82211,1.16417,1.9279225,3.4294333333333333,3.1095966666666666,3.352133333333333,3.6911,3.955905,2.855545,3.17395,3.33913,1.58648,2.6411266666666666,1.98145,2.96097,1.9990966666666665,5.0949116666666665,3.1580600000000003,1.8821433333333333,2.6874466666666668,3.366135,3.12868,6.2929,5.9307,3.082225,3.67729,2.7111,3.080255,2.895505,1.3721266666666667,0.904594,6.334965,2.94949,5.86165,4.68221,6.31275,2.907615,2.721883333333333,6.46385,2.441435,0.37365333333333334,5.83815,3.030735,3.75042,3.4313000000000002,1.2920214285714287,3.783575,1.0804399999999998,4.574015,0.90116125,1.2259499999999999,2.885816666666667,2.395706666666667,2.8038857142857143,3.52605,4.41826,6.208266666666667,6.208266666666667,5.436225,5.436225,4.610955,2.7753099999999997,4.391075,0.96378125,5.89655,3.407185,3.528233333333333,3.84139,3.93741,4.64526,1.8612025,4.93789,3.2211000000000003,2.882775,4.2231,2.477565,4.765995,5.1197,3.64158,3.40512,5.16955,3.899515,5.93625,2.8113,2.6614533333333332,5.6509,4.028295,2.908856666666667,6.312791666666667,1.6116566666666667,2.1611125,4.526475,4.221695,4.93376,3.82029,2.0877255,2.0877255,12.49504011904762,11.7148,4.52536,3.236675,2.933287435897436,4.162575,4.55808,2.5666333333333333,3.295533333333333,2.980165,3.9364666666666666,3.7109,4.92386,2.22266,8.473213333333334,2.40442,2.049655,5.9636,2.365405,4.870785,4.372445,4.620235,0.7480833333333333,3.385405,3.574565,0.898044,3.05255,4.1058225,1.487482,1.8298166666666666,2.848053333333333,2.66132,2.20613,3.0026233333333336,2.1545166666666664,0.4252157142857143,2.42979,2.7121933333333335,2.7640433333333334,3.14311,1.461056,2.9459400000000002,7.074873333333333,4.18967,2.2932833333333336,1.9961833333333334,2.6678800000000003,3.763275,2.37243,3.5339165,18.141905,5.63825,3.3399929999999998,4.31704,3.749215,5.660571666666667,1.7615866666666669,5.9788,1.46035,4.809145,4.54785,5.56255,5.0141,0.9953789473684211,6.51725,2.560695,4.71194,2.715875,4.241745,3.349725,2.897535,2.07033,1.485272,1.90449,4.093065,4.52438,2.40619,1.9051,2.9916466666666666,4.0122383333333325,2.841416666666667,6.33845,1.772335,3.39544,4.47374,4.48113,3.91527,2.608455,3.8359,4.64662,3.861985,2.6077133333333333,2.6077133333333333,5.463065555555556,2.0507133333333334,2.4866633333333334,3.762415,1.804532,7.788214999999999,3.60451,4.042136666666666,4.257000000000001,3.9866,1.7653159999999999,4.15464,5.5406,3.86516,2.051915,3.66391,3.340105,1.16149,1.22999,1.31477,0.7356416666666666,1.6300166666666664,0.9191233333333333,4.672385,0.8765355555555555,2.4760133333333334,1.65407,1.72899,1.0058033333333334,1.95246,2.16809,1.432535,2.93509,2.7101566666666668,4.5267566666666665,1.4584533333333332,2.627475,3.01074,2.75168,2.27346,4.440054166666666,4.598835,4.8650416666666665,19.09590425,2.6910966666666667,2.2351925,0.6356,0.634779,3.9461683333333335,1.997942,4.1085,4.46553,6.530340833333332,3.57836,3.46388,4.2469,3.01782,3.1956366666666667,3.065573333333333,3.927633333333333,3.1443966666666667,6.43515,3.71184,0.926609,1.11291625,5.2674,3.1443366666666663,2.4185966666666667,2.14176,2.19406,5.46545,4.77537,2.4639175,1.1535566666666666,3.08889,4.412385,8.194853333333334,4.792228333333333,4.12826,3.87867,5.20815,4.696155,4.040095,4.761325,3.808075,4.911875,2.143815,5.52005,1.520842857142857,4.94145,0.7325933333333333,4.63306,5.28445,6.08965,6.1221,4.49206,5.7698,5.5863,6.103215,1.7601166666666668,1.523,5.4297,3.103905,5.790945000000001,5.0824,5.588921666666667,5.0886,6.364,1.2612957142857142,4.356215,5.12105,4.116733333333333,4.516235,4.86606,2.5414,4.093155,2.862805,3.959265,1.004975,1.5778466666666666,1.402836,4.64849,4.21096,3.26538,1.9853833333333333,2.9066500000000004,1.6604700000000001,2.2973399999999997,0.39892833333333333,3.4824333333333333,1.550722,2.30786,2.7898066666666668,2.4697666666666667,3.1483566666666665,2.65815,2.426125,10.131942666666667,3.7671666666666668,1.8111994871794872,3.493255,0.9108272727272727,4.47934625,1.1008725,1.723045,1.931935,1.049915,5.559540999999999,1.1662808333333334,1.1662808333333334,1.1662808333333334,2.7818766666666668,1.969332,4.984395,2.97865,1.42125,1.59167,2.190645,1.3534125,1.94422,5.070427500000001,0.7704588888888888,4.086525,4.165305,2.945396666666667,0.9846085714285715,2.257422,1.7418475,1.7418475,1.4327766666666666,3.6516450000000003,4.269155,5.269,5.6795,4.213625,5.2802,2.802963333333333,2.04129,2.73434,5.12465,3.13132,3.7359,1.077955,3.9916625,5.4752,1.8874025,3.852535,3.1500233333333334,4.690525,4.4942,2.499985,6.9221,6.36825,3.46315,4.343345,4.26446,3.168625,7.94478,4.07674,4.9427433333333335,3.466935,2.839226666666667,5.2598,2.6586633333333336,5.6014,4.238985,2.7098066666666667,3.42827,3.91536,1.52281,10.416765,3.71351,3.19914,15.053871825396826,4.243675,1.8072666666666668,2.7152133333333333,2.08339,2.347855,3.088805,2.5770745138888893,3.401585,2.905365,3.0808,4.317085,6.271129999999999,1.2390966666666667,1.835905,4.329865,4.23165,4.95518,2.2619175,0.5800219999999999,4.385675,4.289775,1.986625,1.3374683333333335,4.61693,4.21062,0.8094322222222222,3.767805,12.258935833333332,1.2639514285714286,0.3994614285714286,3.4074666666666666,4.464663333333333,1.0754122222222222,3.47605,4.123525,6.148048333333334,1.2333133333333333,3.217135,3.909015,3.392515,4.268915,4.1763,4.51019,9.183910000000001,3.20819,4.07553,5.16405,16.12123,3.5128174999999997,2.81575,1.20388,1.9717325,1.3758275,2.2934975,1.2696225,2.0570125,1.662945,1.989475,2.3449675,2.2919875,2.179445,5.48635,4.265285,5.74365,3.229485,5.526671666666667,2.7265266666666665,5.0923,3.4653333333333336,1.2750375,3.738195,2.0762675,2.980999333333333,4.426225,4.564095,4.72327,4.363445,3.4017999999999997,3.731733333333333,2.50448,2.97692,3.85618,2.45114,1.83982,3.4234000000000004,3.890715,3.242725,2.396246666666667,12.46961,0.71528,2.752855,4.461475,2.420147,1.0927339999999999,2.75602,7.278771666666667,7.118378333333334,4.22314,3.711685,4.02952,1.97012,2.09218,2.7738750000000003,2.03269,3.5962933333333336,5.28565,4.15221,0.44569133333333333,6.07085,3.249943333333333,3.267053333333333,3.5561333333333334,6.00695,8.507189499999999,4.282762,0.9546375,2.1594225,2.301875,3.711385,2.636295,4.24867,4.48182,3.4718999999999998,2.722913333333333,4.013,4.071915,3.876125,4.197933333333333,1.81963,3.172395,5.23195,5.5288,2.941876666666667,1.72543,2.414286666666667,15.238710229603731,0.5752618181818182,1.58887,1.58887,2.158376666666667,5.081073333333334,3.637535,4.41059,2.935155,2.895715,4.6918,3.113443333333333,4.288875,3.113443333333333,3.5791,1.8579033333333335,1.6326766666666668,5.86955,2.634975,4.82561,3.316735,2.74317,6.272256666666667,2.0558633333333334,4.479585,5.1468,3.58336,3.34635,4.810195,1.989948,5.124,3.3318775,7.148666666666666,5.2911399999999995,2.8569,3.77873,4.874395,2.19391,2.21272,3.3416333333333337,0.45309642857142857,3.0421933333333335,10.062593333333334,4.03228,3.48053,4.860345,3.2616991666666664,3.1706,1.3266428571428572,3.884375,5.4146,3.31275,2.1189,3.824915,3.28562,4.21021,4.30619,2.798525,2.798525,4.211955,2.84518,2.4578879545454546,2.075195,4.813855,4.19933,0.9433100000000001,3.58466,4.87298,2.7231633333333334,6.8244125,8.0196,1.4806139999999999,4.236955,4.816835,6.764984999999999,0.6653990000000001,7.671050000000001,3.3694274999999996,0.6057609090909091,4.99105,5.0947,4.65113,4.11541,4.716655,4.16919,4.985885,3.73314,3.62609,4.105275,5.1269,4.60541,4.493115,4.05451,2.548605,3.6106,3.78382,1.0046300000000001,4.39648,2.47092,1.849365,4.24071,4.178485,5.68925,1.05109,4.952093333333334,2.93865,2.75424,1.844335,1.3017433333333333,11.3383625,2.1897466666666667,3.010343333333333,1.86169,3.8551933333333332,5.5349,6.07108,2.6560266666666665,1.9273966666666666,2.0590800000000002,2.0590800000000002,2.0590800000000002,1.3522233333333336,4.10124,3.94494,3.289635,4.597145,8.26858,3.933135,1.236756,2.426245,3.311415,2.286585,1.762014,4.205605,2.747955,1.4602533333333334,3.0547866666666668,4.967173571428571,5.9223125,3.98803,4.090585,3.0362833333333334,4.84738,4.530635,5.309398333333333,1.880985,1.880985,3.932815,3.790945,2.6114990000000002,2.6114990000000002,3.96821,1.2111314285714285,4.80977,3.21401,4.320375,3.618835,3.842195,3.2902299999999998,1.0009942857142857,4.21547,4.9634,4.03909,4.41832,4.79808,4.8506,4.379525,1.9317925,1.5042875,3.56749,3.816875,3.39473,4.470365,2.114485,2.72028,5.3458,2.85516,4.49579,7.0984750000000005,2.30383125,2.84776,4.2370214285714285,5.231444166666667,1.6255875,2.067472380952381,1.0392166666666667,2.067472380952381,2.038136666666667,2.038136666666667,1.5718999999999999,4.823515,3.345215,3.71864,2.458465,3.99181,1.536925,5.34275,3.17149,1.8269325,3.0808766666666667,3.13933,3.413265,6.793761,4.57289,1.239118,0.8899900000000001,3.53756,6.882921666666666,2.39933,3.61222,4.0116,4.0116,2.39472,3.492145,3.46331,1.381969220779221,3.0035166666666666,3.27824,2.499835,4.217185,3.8837375000000005,1.60776,3.35061,4.356505,4.314375,5.043,4.34938,1.5986125,2.33967,1.38952,2.0846,3.43064,1.8307075,4.339965,3.1774066666666667,3.381615,4.12398,4.963845,2.13202,0.945756,1.8934333333333333,1.454545,1.2077333333333333,4.95502,4.029625,1.048058,0.23061608695652175,0.23061608695652175,0.23061608695652175,3.97706,5.718943333333333,4.31933,5.2995,4.79541,5.6361,4.351595,4.615425,2.836645,3.452055,1.6392625,4.55668,3.97021,3.886275,4.10672,4.164485,0.6937981818181819,0.6937981818181819,0.6937981818181819,0.6937981818181819,1.1690340000000001,1.1690340000000001,3.995445,3.71919,3.44342,2.839025,2.63055,5.9026,4.851075,5.40945,4.377235,2.9645499999999996,2.551013333333333,9.87136,1.593296,1.593296,3.861985,5.30985,3.2948799999999996,0.448435625,0.448435625,0.448435625,0.448435625,0.448435625,0.448435625,4.5603533333333335,4.881415,3.17127,4.47447,2.809085,2.809085,2.66653,3.220945,2.41179,2.59268,3.206535,6.874304333333333,1.416996,4.406475,3.46859,3.80233,8.550675,2.1819833333333336,2.66005,1.01075,2.13506,4.98088,2.81165,0.85283375,2.7775499999999997,3.739035,5.3577,2.5978,4.58414,0.8385833333333333,1.9870033333333332,4.68732,4.822525,2.802148,2.4560366666666664,1.9553033333333334,1.3342749999999999,6.414845,3.196816666666667,1.9591433333333335,3.27734,2.672093333333333,3.28445,3.652705,2.716253333333333,3.068513333333333,5.71245,1.4253816666666665,4.18389,5.2209,3.252785,3.964625,1.9466999999999999,3.045385,3.82675,4.119975,3.04012,4.90111,4.57834,2.706376666666667,1.9839325,2.8381133333333337,2.8741633333333336,2.8579000000000003,0.7995145454545455,2.167025,8.320945,0.46818125,2.958716666666667,1.7238966666666666,2.587223333333333,3.2858933333333336,2.6932466666666666,1.2611666666666668,1.7589020000000002,2.72057,2.206635,3.677885,2.0106200000000003,2.569783333333333,1.5425000000000002,3.051578,1.9255575,1.1409385714285716,2.7360100000000003,1.94217,2.4494233333333333,2.64279,3.0632366666666666,3.003643333333333,3.3702,3.053456666666667,2.815,3.2682300000000004,2.6520266666666665,2.6891,1.6439333333333332,2.37307,2.4341766666666667,1.6959466666666667,2.963036666666667,3.831051904761905,2.839366666666667,2.270166666666667,2.8613133333333334,3.5079333333333333,4.562119166666666,2.9180966666666666,1.8449585714285712,1.8449585714285712,2.4394,1.175675,2.4547275,3.3787233333333333,4.547458333333333,2.769075,1.9569825,2.0265025,2.1256125,3.884395,3.090465,4.02539,3.21429,1.812545,2.1086633333333333,4.192845,1.146884,1.146884,2.04853,0.6379507692307692,2.3675053846153844,1.6561675,1.6561675,2.6531033333333336,2.4683566666666668,2.983283333333333,2.606275,1.8228775,5.653103333333333,3.9828475,3.9828475,3.807655,3.198625,2.36074,3.07182,2.55207,2.897555,5.2782475,0.4815608333333334,0.674379,4.220395,2.26673,2.8494,6.425940000000001,3.58801,1.6528580000000002,5.008256666666666,4.583075,4.027825,4.25082,5.39735,4.749045,13.555959999999999,3.358975,1.7235033333333334,2.97262,4.059095,4.6646,2.79449,3.945245,3.906685,3.60881,4.222765,2.8354700000000004,2.870825,2.6298866666666667,2.4267266666666667,2.4267266666666667,4.09171,2.92189,3.350165,3.650545,2.470705,2.4824,2.17832,1.8620025,1.9854775,2.07352,1.6916675,3.2997255,3.357915,2.637295,6.5656675,3.43224,2.31626,1.9036566666666666,3.452725,4.03347,3.85097,3.092834166666667,3.351565,3.29266,4.36031,3.673155,3.916745,4.004555,3.5530099999999996,3.636095,0.6252066666666667,0.6252066666666667,0.6252066666666667,3.67898,2.370605,5.6877,2.43924,3.77915,6.701430185185186,2.7231,0.32397038461538463,5.342,0.777044,4.324662380952381,1.934805,3.69555,2.059945,3.773735,5.254485000000001,4.14904,3.96961,2.7139066666666665,2.64681,1.4509666666666667,2.638856666666667,0.3890721052631579,0.5269735294117648,2.62303,1.4165133333333333,1.887105,4.01059,2.73409,4.908935,2.817603333333333,3.0407416666666665,3.35242,5.33995,1.60467,0.90703,2.37978,3.70613,1.1680513636363639,4.8768,4.006745,3.723985,2.7287466666666664,4.206265,2.5840833333333335,2.44957,2.3082866666666666,2.432275,2.240953333333333,2.30727,3.21874,2.33334,5.5287473333333335,2.1191125,2.0438199999999997,2.11977,5.008163333333333,3.40916,3.40916,2.47311,3.90184,2.3779,3.021115,2.917555,0.5585533333333333,4.293605,1.7683425,11.519895555555555,7.50971,2.924515,3.428885,3.44832,5.17055,3.086085,3.41593,0.2828173333333333,1.926915,3.2900233333333335,0.7902691666666667,3.922015,1.2747642857142856,4.625025,3.427795,2.793695,3.23061,3.307295,2.240565,4.49215,3.83379,3.407295,6.61742,3.955925,2.8204766666666665,3.0312333333333332,1.546958,1.936905,4.097695,3.412675,3.6977525,2.871065,3.20545,1.358324,3.061665,3.48188,3.30959,10.326165,3.615805,5.442399999999999,3.98131,4.202745,0.9905055555555555,4.79281,4.5146,2.600233333333333,2.5143866666666668,2.500786666666667,3.5749,2.4844633333333332,1.76807,1.93281,3.870815,1.498362,2.66481,5.038290666666667,2.64282,1.10086,1.10086,3.816415,2.88143,2.88143,2.857583333333333,2.8729333333333336,3.1760641025641028,3.891966666666667,3.4351333333333334,2.765693333333333,2.3667466666666668,2.499643333333333,3.17319,2.2997575,2.4448,1.6445599999999998,5.897675,8.547763,0.4444607692307692,0.4444607692307692,0.4444607692307692,0.5326112237762237,0.5326112237762237,0.4444607692307692,2.9044600000000003,2.96872,4.176193333333333,1.3814466666666665,1.84202,3.317794,2.4778933333333333,3.1342166666666667,2.30218,2.80041,3.24919,6.5596033333333335,3.12053,2.551813333333333,2.847236666666667,4.68513,2.2343100000000002,3.222386666666667,5.88778,2.446126666666667,3.401566666666667,1.4064699999999999,1.4064699999999999,2.8525500000000004,0.5171052631578947,2.235043333333333,2.68983,2.8237900000000002,3.1583966666666665,2.37504,1.3628099999999999,2.4592233333333335,2.75912,2.423573333333333,4.341035,2.4048403333333335,3.465295,2.605925,3.150535,0.47849700000000006,7.248598333333334,2.956118,2.956118,7.6750533333333335,1.8232333333333333,1.8266900000000001,2.9280266666666663,4.74902,2.4826166666666665,1.9602433333333333,2.63972,1.424495,3.4705999999999997,1.88157,3.055365,1.3698725,0.28079363636363636,0.28079363636363636,4.75915,3.97786,3.28919,2.6541866666666665,2.656265,3.32967,1.46106,5.07115,3.7988,3.016005,1.8319325,1.0517066666666668,2.37443,2.9280266666666663,2.646185,2.180385,5.799935,3.78133,4.34322,3.89604,2.29872,0.7041216666666666,7.276825,2.02907,1.53353,3.603335,4.515735,2.445465,1.69755,4.50995,3.927635,2.9354933333333335,2.9171300000000002,4.16378,4.1974,3.5698000000000003,2.39406,2.39406,3.83931,4.676725,5.2935,5.852623333333334,2.526386666666667,3.670015,1.5183,2.55075,5.440660666666667,4.016855,1.897794,5.1524,3.6117675,3.380755,2.18508,4.1841,4.520695,4.51195,4.555115,2.45903,2.5632,3.7227333333333337,2.0938033333333332,2.60255,2.4419233333333334,2.5862366666666667,0.675331,2.17535,2.7880533333333335,1.747321,4.46999,4.464875,4.45953,3.856855,3.27729,4.8296475,11.999500000000001,4.54561,3.867465,4.51171,3.93305,4.614325,2.12285,3.037938666666667,3.4632666666666663,1.19607375,2.85815,3.026745,4.56497,5.47845,4.395425,3.5284,3.0753,2.255873333333333,4.248566666666666,4.04502,3.6860666666666666,4.04502,2.2191975,2.3274133333333333,2.4224566666666667,2.0211175,2.5085333333333333,1.9803366666666669,0.7871800000000001,1.3809016666666667,1.9443833333333334,1.9412466666666666,1.7766133333333334,1.4001700000000001,1.7282866666666665,2.7548366666666664,1.5377319999999999,2.9109866666666666,1.4004466666666666,1.7929466666666667,2.709965,4.155366666666667,2.4353333333333333,2.220126666666667,2.3803966666666665,3.295875,2.23731,2.733226666666667,3.2188033333333332,2.51083,3.0826100000000003,3.1024575,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,0.1473158064516129,5.1595,2.869315,1.025227142857143,3.1428133333333332,2.71381,2.875106666666667,3.444755,3.2673433333333333,4.711645,3.246249333333333,1.468622,3.058673333333333,1.70855,0.97977875,0.9665950000000001,1.5964066666666668,0.8966766666666667,0.7558824999999999,1.3287179999999998,3.259595,1.53841,1.5643366666666667,1.8744144444444446,2.3123483333333334,1.5400533333333335,1.22585,1.504645,0.9365483333333334,1.293995,0.7663000000000001,0.9961399999999999,3.441745,3.63742,4.053615,4.58219,3.93319,3.11895,4.706875,3.4013333333333335,1.971615,3.337365,1.9341075,3.61338,1.9050433333333334,0.8064490909090908,4.2736,4.821375,2.09191,1.309625,3.145745,3.3857,3.6516450000000003,3.0315133333333333,2.68019,0.8853975,2.219445,4.849327499999999,3.69396,2.476435,1.53832,3.912895,1.8321775,0.579760909090909,4.38596,4.00418,4.171905,2.30642,1.444464,3.14911,4.447185,2.6928666666666667,2.6037833333333333,2.50867,2.721413333333333,2.77459,2.8837533333333334,2.9926433333333335,1.2457275,2.4927275,2.5031,5.157,4.235875,3.867485,4.67155,15.939420387626264,4.15866,4.428649333333333,2.906625,4.122305,4.911775,1.5669359999999999,1.839345,2.2549966666666665,5.481475,3.669915,3.23487,6.3151,2.2549966666666665,3.862115,2.156035,2.0691866666666665,2.8911466666666663,2.6848766666666664,1.23194,4.17967,3.430515,2.60205,4.26347,2.51269,3.0485333333333333,3.622375,3.40021,4.328915,3.799185,2.8073,3.627245,2.69132,2.6608266666666665,1.230894,1.230894,3.476566666666667,2.480986666666667,0.38814642857142856,4.849937,0.9667540000000001,2.728315,3.68529,0.5829274999999999,4.381785,8.023768333333333,1.8804525,3.791325,3.58545,2.6756966666666666,3.45786,2.566725,3.05468,3.61933,4.3783,3.16036,3.9095,0.9836166666666667,11.667365,2.689485,2.97752,5.8812,2.696675,3.92258,7.35924,4.11719,3.70973,3.64997,4.27786,5.4992825,1.5214925,2.662506666666667,4.58278,3.814166666666667,1.9047360000000002,3.933635,3.59388,3.70997,4.006,3.811755,3.791015,2.506213333333333,4.300345,3.739615,5.09945,3.26092,2.13779,2.3279433333333333,2.073706666666667,3.1192966666666666,1.3753633333333333,3.698366666666667,0.8629154545454546,3.1702600000000003,3.0901633333333334,2.696736666666667,1.6125616666666664,4.2405,3.805005,4.272805,1.9734325,4.48589,3.83589,0.7751458974358975,0.3458992307692308,4.30871,5.3111,0.9249925,0.3458992307692308,4.72817,0.7751458974358975,0.7751458974358975,0.3458992307692308,5.866226666666666,2.6534366666666664,2.4314266666666664,5.3779,2.996195,3.56672,0.8336311111111111,3.26326,3.85792,4.655905,5.72995,2.1456625,0.6856376923076923,4.174219166666667,2.0288733333333333,1.196026,1.7850725,0.9841128571428571,2.1458833333333334,2.2518133333333332,3.34609,4.937875,2.43395,2.8297633333333336,2.7806466666666663,2.302843333333333,2.936375,4.5184375,1.70159,1.996435,3.950405,4.940875,2.0747915277777778,5.25185,2.337685,4.131565,4.361845,2.983245,1.2871175,3.418905,6.6427,3.765575,3.544595,5.2879,6.2385,2.373775,3.34449,4.58275,3.21987,3.580715,8.64826,3.88348,4.59283,2.46285,1.137825,2.5259266666666664,1.87776,2.111235,1.829475,3.7019,0.6152157142857143,3.202285,3.94556,1.9378833333333334,2.9267533333333335,5.1957,3.23188,2.9219,4.161625,4.962525,8.979045,2.6869066666666668,2.2890866666666665,1.72505,1.39475,1.2013566666666666,1.3906466666666668,2.422753333333333,2.6396966666666666,2.839816666666667,4.43949326923077,1.6739425,2.1817166666666665,5.01255,5.13065,3.66866,3.506355,3.08692,2.57988,2.15897,2.298045,2.0243100000000003,1.928045,3.02908,3.667625,4.891015,5.2652,3.657725,5.22833125,3.274475,2.587295,6.316892916666667,2.95634,8.691585,4.978323333333334,4.978323333333334,5.554449999999999,1.6936033333333331,1.4082,1.4300566666666665,0.715424,4.90693,3.7531,3.3629824999999998,3.3629824999999998,2.3389800000000003,4.226515,4.339155,4.221965,3.698045,2.882763333333333,2.709615,3.337515,3.0059,5.221053333333334,3.48836,0.7479272727272727,4.950555,4.961785,3.87232,4.880945,3.813295,6.25175,4.012615,0.8216769230769232,5.3918,7.02858,3.194985,5.9411,5.864,3.588885,2.695495,3.744735,6.09205,2.0922575,5.86285,1.899915,4.437345,2.5416433333333335,2.0918875,0.9124399999999999,2.854175,5.9312,3.5794,3.54257,2.0952800000000003,5.2106,7.936170000000001,3.41592,4.26476,2.679675,2.48252,0.8502919999999999,4.616815,1.4514366666666667,3.2742958333333334,3.2742958333333334,3.65477,2.3101033333333336,2.99565,3.68438,1.6618675,2.7874166666666667,3.31536,3.313266666666667,2.827995,4.198485,2.937145,1.8137725,3.1831566666666666,2.09774,2.98014,2.119753333333333,2.98836,3.0008533333333336,1.4006342857142857,1.6808833333333333,0.4339233333333334,1.323295,0.4339233333333334,0.4339233333333334,1.6808833333333333,0.4339233333333334,3.419233333333333,2.3174919999999997,2.3174919999999997,2.6432166666666665,3.99814,3.811545,4.112115,5.3053,5.60605,3.606335,3.82748,3.804365,1.90007,2.2568898333333336,2.30773,0.8070509090909092,5.3694,2.9166933333333334,3.0667166666666668,5.63505,3.85681,5.0466,3.52412,2.6192366666666667,3.123615,3.50241,2.7326333333333337,2.929156666666667,2.0878200000000002,5.3282,0.8358477777777779,3.59537,1.1285057142857142,3.69625,3.2888633333333335,2.8332333333333337,3.97021,4.204695,3.61161,4.349105,3.980215,3.535955,4.08489,4.29463,2.4774625,2.69535,3.21899,4.30094,2.846585,3.0509,2.830305,3.115735,3.2562333333333338,3.44279,4.8883,4.596455,4.06915,68.15705741913642,2.8050175,3.71323,15.70637,4.167445,3.08103,2.0612366666666664,1.9094300000000002,2.8142266666666664,4.2365200000000005,2.972573333333333,3.8277191666666663,5.3016,3.45396,7.516918333333333,5.32365,2.576055,3.46615,3.63428,3.421465,1.908756,1.08986,4.80795,2.69778,6.138505,3.7067,2.078186666666667,3.659525,3.243515,4.49095,3.100255,5.96762,4.32806,3.297665,3.02705,2.538,2.89325,5.9815,3.034315,3.618255,4.324043333333333,1.2440016666666667,2.444195,5.270745,3.028425,3.043935,3.640655,3.04739,3.914115,3.232755,2.877115,2.766545,4.630035,2.86512,2.90613,4.469935,10.051505,3.253766666666667,4.265785,5.85816,3.20438,1.7936,4.27910375,2.1354333333333333,3.05662,2.8867599999999998,3.670835,3.243315,3.12359,2.888105,3.453635,4.058815,3.935035,4.18917,3.564675,2.925115,3.53346,2.6352416666666665,2.6352416666666665,7.026976666666666,1.58473,3.16521,3.24873,2.37911,4.616735,4.20703,2.94949,3.303385,5.34555,5.7370625,0.6535772727272727,4.10266,2.503995,2.90831,2.571023333333333,5.1404,2.67548,2.0632075,1.1234675,2.0258001515151514,4.32409,5.16375,4.290965,6.01185,5.42655,5.6487,2.542285,1.9163533333333334,3.738085,2.435485,2.8332633333333335,2.0025233333333334,1.2805266666666666,2.8479033333333335,3.246173333333333,1.466498,2.32099,2.3030765714285715,3.3583566208791207,2.82503,4.95032,3.35711,1.3894975,2.532685,3.47462,5.58275,4.770205,5.66155,4.68215,2.0926033333333334,1.4745799999999998,0.6464542857142856,1.5637133333333333,3.51923,2.539905,3.600835,1.3686800000000001,2.44388,2.38208,3.44331,3.66972,3.96954,4.08412,1.6794225,1.470895,1.9444825,2.0657175,1.5020725,2.59275,6.6779719166666665,4.826605,3.097605,2.93265,6.531005,4.495195,3.31064,3.119535,3.42397,2.742335,3.84841,2.355,7.45272,0.9323616666666666,3.13773,6.74125,4.11215,4.52526,5.95155,1.5785766666666667,2.97113,2.93596,2.7262299999999997,1.4429225,4.126635,8.89565,3.176445,4.87427,4.06419,2.98713,4.768235,0.91037,2.8299233333333333,5.29635,6.086596666666667,5.2192,5.76105,3.079535,3.677,2.50172,4.89794,4.78795,3.9423006904761904,3.9423006904761904,0.6617228571428572,3.3854,0.823882,0.8369633333333333,1.713215,3.6895333333333333,4.19907,5.706927142857142,3.02378,3.318467142857143,3.273470476190476,2.60288,3.0949733333333334,4.617533333333333,3.661246666666667,1.91408,1.91408,3.863575,3.145713333333333,2.7097866666666666,3.41275,3.30097,0.5467866666666666,3.222466666666667,2.7003733333333333,2.5122133333333334,2.589183333333333,2.528975,2.3322833333333333,2.99887,2.5930833333333334,0.791496,2.6923933333333334,6.245600761904762,1.996234,7.3507995,1.642012,1.642012,3.365085166666667,3.3619333333333334,3.2255000000000003,2.67037,1.688788,1.2717685714285716,3.2705933333333337,3.29428,1.42218,1.5372571428571429,2.8028666666666666,2.674028,2.5637933333333334,1.791155,1.8353975,2.671335,2.031585,2.88276,3.286525,1.711395,3.72278,3.346305,6.809349,3.447665,1.6568625,2.944665,2.68347,2.13467,4.103195,2.4680833333333334,2.719355,6.7620450000000005,0.8525538461538461,0.764885,4.463995,1.422622,1.422622,3.773645,2.385895,4.02188,3.25991,1.3058533333333333,2.393758666666667,2.8747066666666665,2.429302,4.947755,4.797035,2.5150166666666665,2.01886,1.34555,1.34555,1.8299833333333335,4.06806,3.9433666666666665,5.48885,3.0727533333333334,4.667915,4.208805,6.6465,4.156455,2.490555,2.84189,2.65413,2.7482,0.7191733333333333,0.7191733333333333,0.7191733333333333,3.431205,4.206795,3.22302,0.9576475,0.9576475,5.00965,5.8759,6.22273,21.645375166666668,11.2543,7.67443,2.7279,5.63895,2.2806325,3.889455,2.568356666666667,3.1809366666666663,3.9839,5.3425693333333335,2.263725,2.54697,6.05438,1.959426,1.959426,6.29595,3.22838,4.36463,2.32046,4.6175215000000005,4.29859,2.32645,4.205415,3.23487,1.2768633333333332,5.7421,8.64633,1.2768633333333332,2.32046,2.21178,0.694582,0.694582,1.6786079999999999,2.3211833333333334,1.6786079999999999,3.944475,5.44875,5.8745,8.57908,2.32046,11.380061333333334,5.79335,5.48835,2.2806325,3.234595,4.365455,8.38268,3.0921491666666667,3.678255,5.63485,3.26452,4.646925,5.82175,4.143935,4.971865,4.566335,2.548625,5.18085,3.22944,4.364395,4.371555,0.83258375,1.547298,2.90433,5.57085,4.58651,2.64282,2.023115,4.0676,4.698695,5.645,5.43675,5.3064,4.542505,3.452225,4.38204,3.80689,2.2299875,5.0569475,2.225655,2.634985,3.50329,1.5765766666666667,3.988395,3.92483,3.833305,3.73191,2.91595,6.314563333333334,0.8996,3.527595,2.085265,1.1987657142857144,4.90493,1.3588366666666667,1.4493666666666665,2.5284,2.786352,2.7708600000000003,2.8229666666666664,1.5187,0.7341627272727272,2.1945133333333335,2.701425,3.49372,0.6498876923076923,5.690923333333333,1.6380633333333332,1.13598,3.1867900000000002,1.13598,3.96582,0.9485272727272727,4.592805,3.14095,2.35389,4.303131,4.344251,4.344251,4.715225,2.4194175,2.9839366666666667,2.7928266666666666,1.461056,3.74722,3.59524,2.2762,0.6836725,6.722789358974358,2.793355,4.01448,4.29982,7.55227,2.0587575,4.163525,3.904465,3.25999,3.647315,5.4664,6.4488449999999995,4.485095,4.655415,5.161,2.882766666666667,4.988455,4.205205,4.51847,1.055341111111111,0.48346785714285717,3.20731,3.3697,2.77826,5.3,3.819775,4.251295,4.066825,5.2133,4.57128,4.07969,1.17271,2.214995,7.838204166666666,2.1638966666666666,1.96692,3.6980180952380954,11.021123293650794,1.5761075,4.743085,6.39925,5.07065,3.460233333333333,2.110133333333333,3.26298,3.8589,1.1256716666666666,2.7124900000000003,3.20079,0.31479473684210524,2.0878466666666666,4.31143,4.163895,2.407535,4.054485,2.919635,5.18197,1.4245933333333334,0.5589954545454545,3.7573766666666666,1.070787142857143,0.98705125,0.98705125,0.98705125,0.98705125,1.5589966666666666,2.6373,1.90285,3.4088333333333334,5.15685,3.5581,5.27435,3.688265,4.195335,3.56374,4.021855,1.4378333333333335,6.784365,2.67366,4.388155,5.330736666666667,5.12575,5.061914166666667,2.41629,2.5338600000000002,2.65802,3.30115,1.2866633333333333,4.591428333333334,2.7084233333333336,4.92774,2.7746999999999997,2.41071,3.82166,3.508005,3.0509,2.5652866666666667,2.682173333333333,1.5705975,0.4285088888888889,4.07755,3.16255,4.23629,3.436065,3.91271,5.68245,4.18606,0.5520907692307693,3.007728,6.655493333333333,1.9425833333333333,1.705182,5.27402,5.44195,2.66677,4.485025,4.83403,4.046905,3.71046,3.978365,5.2788,5.5851,5.07505,3.588165,5.0198979999999995,1.429194,1.5404900000000001,4.079125,4.0014,3.66505,3.26534,5.26125,4.459025,3.81053,3.430905,15.033627224419153,1.2639628477795612,1.0797125,1.7514625000000001,0.49407,0.45124600000000004,1.34915,0.3104705882352941,1.3167339999999998,3.0807566666666664,1.590008,0.9013333333333334,1.0727279166666668,0.4185641666666667,1.0727279166666668,1.0727279166666668,0.4185641666666667,0.8216,0.5384714285714286,2.780145,2.6181233333333336,4.68332,3.54449,2.85314,2.761375,4.021535,4.36836,4.87192,2.72548,4.01643,0.6828042857142858,2.387954666666667,8.33611,4.096485,6.513798333333334,2.813315,4.26936,2.3936,5.0208,5.4616,3.62513,4.463365,2.935095,1.0917016666666666,4.291245,4.51731,1.174718,1.33982,1.5032616666666667,2.4612066666666665,1.85766,5.3722,5.3873,2.3115375,2.3115375,3.6640294444444446,6.56687,2.1472266666666666,0.6708327272727272,0.7500814285714286,2.56982,3.3356,0.9361328571428571,0.9361328571428571,0.9361328571428571,0.3826130769230769,1.065222857142857,2.833125,5.8686,3.6550999999999996,3.9592549999999997,5.12135,0.9770009999999999,3.494666666666667,3.0497366666666665,3.8281666666666667,5.85205,2.4454433333333334,7.171706666666667,4.63855,1.0289811111111111,3.6889000000000003,1.917196,2.533015,2.36374,6.580579999999999,3.1873799999999997,4.418725,2.26175,4.30047,4.415115,4.827095,0.5171994444444444,2.4855199999999997,1.4682866666666667,2.58099,4.045548,2.15507,2.8056533333333333,2.4191966666666667,2.5736166666666667,2.6604666666666668,3.018166666666667,2.9459400000000002,2.9024699999999997,1.445168,2.3287133333333334,1.9218033333333333,2.968386666666667,2.5078533333333333,2.1304225,1.80865,1.8680166666666667,1.649415,3.339795,2.2111633333333334,2.146596666666667,2.1356733333333335,2.4431533333333335,2.487436666666667,0.7826377777777778,0.7826377777777778,0.7826377777777778,2.4534866666666666,2.06741,3.0759399999999997,2.3451933333333335,2.5866466666666668,2.0022333333333333,3.81182,3.4797949999999997,1.318505,2.5321433333333334,2.8156866666666667,3.8033200000000003,1.5034857142857143,7.301968333333333,4.580035,3.299695,4.27961,3.487515,1.30557,0.8558857142857142,3.28891,3.864145,3.8033200000000003,3.684805,4.15282,4.271115,2.8091166666666667,3.91657,4.27177,0.9350210000000001,2.729435,3.421185,5.075021666666666,4.678905,3.59109,3.178175,2.645665,1.9357433333333331,2.4794300000000002,0.6506966666666667,5.082600833333333,2.720725,3.92349,2.747036666666667,3.8415866666666663,3.30404,2.4457299999999997,2.882052333333333,2.882052333333333,2.56302,2.22937,2.6956933333333333,2.0436133333333335,4.31368,1.459332,2.649095,3.77145,4.065065,3.925125,5.4259,3.303015,2.3814825,2.186295,3.434475,2.96936,2.7051,5.19575,2.60464,0.7946085714285714,0.7946085714285714,4.685945,4.075321,1.034616,4.19078,1.034616,3.843265,4.808615,4.687965,2.94197,3.29121,6.412005000000001,4.240584166666667,5.8869,0.8655071428571429,0.8655071428571429,2.0214600000000003,4.4606916666666665,1.5183916666666668,2.9423,3.30895,1.1198542857142857,3.63814,3.828605,5.5104500000000005,5.5104500000000005,1.0599716666666665,5.54945,5.3051,4.81781,5.9846,2.00323,2.00323,6.9883,0.9245363636363636,7.1437,2.0194775,6.3862225,2.849375,2.51815,3.44239,2.37332,2.3012966666666665,2.2723733333333334,3.0152966666666665,2.349510476190476,6.346324000000001,1.718776,4.975395,2.83529,2.42396,2.09741,2.189405,3.437355,3.642375,3.599305,2.89838,2.55442,2.157015,2.739195,1.1404299999999998,3.44702,2.856835,3.25728,2.183422,2.183422,3.21363,2.197906666666667,3.860305,3.29289,4.90523,7.171081666666666,4.14484,3.52814,6.3667175,2.0438566666666667,3.173318888888889,2.0981366666666665,1.4287714285714286,1.7311875,3.97964,1.5880983333333332,0.502141875,0.6803316666666667,4.124695,4.585615,2.90063,0.9264766666666667,2.77825,2.89404,4.809155,1.65653,1.752935,1.0547577777777777,4.510005,2.453205,4.119775,0.7288319999999999,4.09750625,3.695705,3.53982,4.387915,3.581945,3.846695,2.57544,5.403,3.568945,1.7224633333333335,2.7176500000000003,5.928461666666666,6.27877,0.99407,3.61662,4.649095,5.13475,3.7865,3.8394999999999997,2.583475,3.1537433333333333,3.7594666666666665,6.1579925,2.674028,2.7147205,3.985545,2.911935,2.415535,2.597625,8.485223333333334,4.66083,1.8827,4.95632,4.7081,1.831186,3.83899,1.18085,1.5792857142857142,4.39952,4.055365,4.53562,2.4151700000000003,2.785895,2.808235,4.076065,3.7188,3.560075,3.053545,3.39174,3.810235,3.5685025,1.1301676153846154,1.1301676153846154,7.3446,0.87884,2.0162291071428573,0.87884,0.6989533333333333,0.35705,2.7151824404761906,2.670295,0.4964728571428571,2.0162291071428573,1.761935,3.135365,2.2187095833333332,3.63831,4.436735,6.976905,1.93781,2.062175,1.988595,3.854935,5.6945,1.961725,1.748035,1.0971375,2.8451725000000003,4.08867,2.790955,4.049705,6.388204999999999,0.4236888888888889,3.75986,0.696971,2.7199166666666668,2.23523,3.518025,1.19821,4.05852,4.536372500000001,3.96797,2.72847,3.587615,5.1634275,1.7785525,3.23942,0.5678138461538461,2.350825,2.403815,1.136638,2.8114066666666666,2.5239766666666665,2.5784233333333333,3.617645,8.202,2.9860975757575754,3.751655,3.432825,6.964345,5.224475833333333,3.0632133333333336,4.302395,3.75604,5.95985,3.91771,5.00895,4.39389,4.14073,4.612735,3.5193,1.5034225,2.022553333333333,2.1781900000000003,3.966585,2.48572,0.19714297297297298,0.19714297297297298,0.19714297297297298,29.415028404761905,0.19714297297297298,3.120092972972973,0.19714297297297298,0.19714297297297298,0.19714297297297298,3.167672972972973,4.105815,0.19714297297297298,0.19714297297297298,0.19714297297297298,0.19714297297297298,0.19714297297297298,2.88535,5.5566,3.04328,0.19843923076923078,0.19843923076923078,4.217468,3.9070885416666665,3.7955018750000002,3.1003382083333335,3.884892380952381,7.933166666666667,11.347810930458431,6.349355,7.929976666666667,7.892528267857143,2.8525500000000004,6.065460952380953,4.336211666666666,4.385484198717948,0.19843923076923078,7.807317333333334,6.324547523809524,7.082661666666667,2.80095,8.651849767857142,14.090083482142857,18.278584553571427,56.46791367729819,116.71449215267005,1.4064699999999999,3.401566666666667,3.3809,3.861778438867439,0.19843923076923078,1.5881896153846156,8.966750416666665,14.690321642857143,19.55386083333333,46.5602100553467,13.367747434523809,3.212375,0.23274999999999998,0.23274999999999998,4.70564,2.8234966666666668,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,0.23274999999999998,5.56496,0.23274999999999998,0.23274999999999998,0.23274999999999998,2.68839,1.8430866666666665,3.84996,3.87095,4.094423333333333,4.98211,1.99197,4.188485,4.22862,3.157025,1.5490733333333333,3.781925,1.05894,2.36326,1.7593566666666665,4.69789,5.811633333333333,2.78504,5.458692722222223,0.5157661111111111,0.44182933333333335,2.4771466666666666,2.63171,3.110095,3.8579,3.3879,7.453235,3.688885,4.13081,3.5729,4.057245,2.87223,3.30284,5.65485,1.980285,0.4503276923076923,0.8510518181818182,4.1199325,1.7918225,3.64809,3.88348,4.612205,3.5379,2.3231225,2.69502,0.6221973333333334,0.711884,4.311445,2.7139233333333332,5.7985,3.46399,3.7377633333333335,2.49479,3.07284,5.82185,3.537315,3.21448,0.8207654545454546,2.98256,4.180755,2.246505,1.04692,1.5440633333333331,3.90224,6.2424,1.96552,3.113895,3.61744,5.43565,2.552195,2.4246366666666668,2.41816,4.563375,2.39911,4.344285,0.7086471428571429,2.1896533333333332,3.324345,1.88383,5.753165,2.982995,3.75218,4.307405,2.93912,1.98521,0.5018390909090908,4.25298,5.18115,6.6012,3.048635,3.97124,4.23486,2.85844,2.043985,1.167007142857143,4.819825,2.01824,2.72325,9.14773,3.92446,4.902615,3.483795,0.6550333333333334,3.29366,1.23664,3.30046,6.0138,4.7463,5.0216,3.62985,5.0504,4.457945,1.6751175,1.6666066666666666,5.0096,3.11544,3.227513333333333,2.4478425,5.29745,4.34663,1.4366916666666667,3.4911999999999996,2.879735,2.72724,4.04847,9.20392,4.688895,1.773495,4.74922,6.24516,4.319475000000001,3.98959,3.621805,3.79108,4.53518,7.877700000000001,2.3332266666666666,3.341815,3.38071,4.248535,2.666245,3.122075,4.635655,4.20805,3.49683,3.9038053333333336,18.404365666666667,2.8359566666666667,2.5616,3.2745866666666665,5.602192333333333,1.094435,3.98321,2.2156124999999998,5.0996,1.241085,4.0341,4.32278,3.40065,0.99908125,4.421855,4.559645,1.713735,4.699832575757576,3.955325,1.0451257142857142,3.60174,1.97777,2.62577,1.551455,4.284915,3.888835,3.70543,3.663355,2.9574933333333333,4.146015,7.934240000000001,4.09855,4.258975,4.639935,3.0431666666666666,3.754505,4.633975,6.3819669999999995,1.082022,1.082022,4.539465,4.69395,2.02162,1.2943516666666668,7.073745000000001,3.836235,3.596445,3.50911,4.588555,4.369525,3.58377,3.97326,6.468271,3.7668566666666665,4.42525,4.77819,1.3463585714285713,2.4945475,4.16247,4.31986,3.2586725,0.20113722222222222,1.4789025,2.0216375,2.43248,2.270703333333333,0.9582255555555554,1.427245,1.5196225,2.2422733333333333,0.6256988888888889,1.0389771428571428,1.8790725,4.013245,3.951866666666667,1.9853733333333334,2.53426,2.79484,2.829883333333333,0.703176,0.9668,3.00402,4.485455,4.260635,2.825505,4.595765,4.29394,4.34051,2.0839600000000003,4.25029,4.84616,4.332135,6.22102,3.69507,0.49925352941176476,5.2751,4.566965,3.60376,4.58749,3.457925,1.88753,3.77416,4.14467,2.885155,5.2629391666666665,4.477285,1.366515,5.2629391666666665,3.84739,6.8283025,3.638915,1.1635111111111112,3.76683,4.904285,4.30548,2.792873333333333,4.548435,1.5324625,2.067805,3.07509,3.465,0.8192444444444444,4.83771,4.87142,3.226985,3.903825,3.404833333333333,2.9676533333333333,1.745014,1.553755,3.22641,3.492075,3.35,2.42083,2.1164825,1.9785103333333334,3.723385,1.3098642857142857,0.8523366666666666,5.52473,3.88467,1.41075,2.4498933333333333,2.1928966666666665,2.835296666666667,5.890466666666667,2.202177777777778,0.766515,2.682885,4.32699,2.06745,3.904355,4.981745,5.2607,4.169935,4.20631,5.06375,2.1338866666666667,2.31659,1.71735,2.1920800000000003,1.887205,2.2174466666666666,2.23474,1.523655,2.80491,3.13057,3.682455,6.4741,4.235625,3.92724,4.366285,4.01004,3.720955,5.12245,0.86718125,2.92217,4.470845,1.251492,0.606278,5.0107,3.45667,2.4998400000000003,3.4716362500000004,6.1649725,5.2808,0.8776189999999999,1.1620742857142858,0.7300211111111111,4.262245,2.392793333333333,2.7999666666666667,1.1429671428571428,2.64078,2.6333966666666666,5.47295,4.458825,4.252275,5.16425,4.223545,1.2617033333333334,3.66129,1.6692066666666667,3.569735,3.528655,3.161545,2.307583333333333,3.20154,2.6721800000000004,3.189695,4.141355,2.952425,2.36533,8.726825,10.0909875,3.90681,1.313772857142857,5.54365,3.87814,4.78547,4.505705,3.798635,3.87957,3.52908,4.28166,3.5235009374999997,3.86377,3.79624,3.65802,4.6864,1.77653,4.749395,5.7521,4.797225,3.305125,3.35947,7.247575,0.7788083333333334,2.57114,2.81655,2.37305,4.995795,3.287555,1.1891583333333333,4.02482,3.2302166666666667,3.664945,4.45974,4.0601575,6.439845,3.0650766666666667,2.8736866666666665,3.0682833333333335,2.7108933333333334,3.916165,1.9442233333333334,2.1805833333333333,3.017243333333333,4.13247,3.68418,1.97995,1.5780375,3.0357032142857143,3.2224484999999996,0.9040655555555556,2.5371433333333333,2.5371433333333333,1.29955,5.72765,3.17294,3.44378,3.553445,3.15224,3.630515,3.466665,3.100005,3.29427,2.4111966666666667,0.5170306666666666,3.28737,5.682975,3.118555,4.004505,3.410715,4.10411,3.98817,3.159765,2.661715,3.69488,3.694065,3.459665,2.886085,3.347535,2.7197766666666667,4.294925,3.86652,8.95283,3.372515,3.773325,3.06558,4.05759,4.14911,3.68887,2.44668,3.726205,2.665455,2.86973,3.095785,3.29147,3.712295,1.8257266666666665,1.8257266666666665,2.30032,3.045145,3.42951,1.592666,2.43819,3.58781,1.7615020000000001,2.818205,1.592666,4.028585,3.10268,3.8690545,3.05412,3.46292,2.580665,3.220325,3.96826,3.96216,3.37772,4.460925,3.878525,4.301575,3.731555,3.26657,3.20802,3.180445,3.87749,2.708016666666667,3.672115,5.2148,4.16201,3.780865,0.29013826086956523,3.64821,0.43956666666666666,3.673915,3.664685,2.938915,3.526055,3.846995,6.091828333333334,3.355485,2.6360566666666667,2.42775,2.9071866666666666,0.646096,6.668448333333333,3.10907,3.49071,3.67741,2.022125,2.599885,3.29573,3.49509,6.880574999999999,4.61129,4.779875,4.416515,4.201965,4.09553,3.674405,1.4438000000000002,1.635298,3.73056,4.344465,5.57429,2.3075466666666666,4.850205,1.94821,3.466466666666667,4.15484,1.832699761904762,4.127975,4.73061,3.445133333333333,3.6892666666666667,2.55414,4.49543,4.355995,3.377466666666667,4.248835,4.16481,4.729765,4.18474,4.467845,3.875005,3.08329,4.011285,2.4695875,3.3155066666666664,3.3155066666666664,4.279205,2.5950633333333335,3.70375,2.221276666666667,4.331275,3.2201766666666667,3.730905,1.983765,1.8927699999999998,1.1826233333333334,1.1826233333333334,1.506012,3.2777700000000003,1.6731800000000001,2.7015933333333333,3.891515,5.0013505,3.252463333333333,3.935605,6.2182,3.313905,2.976525,2.940906666666667,1.5793833333333334,4.21801,3.759385,6.1702224999999995,1.6257533333333332,5.1266,5.45595,3.2705333333333333,3.227425,4.27623,7.08988,1.9328433333333335,2.30456,3.915295,0.4570171428571429,3.413775,4.11026,3.99087,4.256225,2.86951,1.207622,1.518964,4.005755,2.863325,2.44921,3.827565,4.81018,5.18405,0.96256875,3.00009,4.7089,3.68854,4.480855,2.3857166666666667,5.262671666666667,3.860885,1.609394,3.47014,1.1714416666666667,2.819053333333333,6.74444,3.370145,0.6228018181818181,3.04478,3.810525,3.77312,1.7319175,1.7319175,5.107053333333333,5.51435,3.03355,0.49667000000000006,1.9555475,4.423326666666666,4.00851,4.3358,1.7981539999999998,2.935076666666667,3.1432,1.3083674342105263,1.3083674342105263,1.3083674342105263,0.9571520175438596,1.5586836842105263,0.6015316666666667,1.3083674342105263,0.9571520175438596,0.3514936842105263,0.953025350877193,0.3514936842105263,0.6056583333333333,0.6056583333333333,0.6056583333333333,0.6056583333333333,1.1167423333333333,1.01268375,2.41655,2.3972266666666666,1.091,6.373316666666667,2.7017866666666666,5.289776666666667,2.1043566666666664,3.458895,2.918145,3.5196,2.7287166666666667,4.450625,2.8423233333333333,4.037265,4.16951,4.421525,2.051585,3.836025,4.487075,4.09491,3.337335,4.717175,3.487785,4.48128,5.3407,4.98559,6.23305,5.22435,0.97752125,4.641755,3.84513,2.786645,15.350725,4.38066,5.0639,2.6524,7.74468,4.082855,4.18289,4.761295,3.18805,1.0591375,2.568085,3.77284,4.296495,3.28583,3.56929,4.14469,2.9183766666666666,4.41762,4.586735,4.169175,6.542313333333334,6.670163333333333,1.2800142857142858,3.64298,3.97427,4.107565,3.574835,3.564215,7.43197,2.845445,2.849255,2.641795,4.177735,3.783285,4.545375,2.6036,1.823475,0.9098979999999999,4.227345,3.28148,3.591905,3.81664,3.38685,4.910545,4.019455,6.02535,5.99975,5.04235,6.4325,3.71974,3.347155,3.253235,3.489265,1.87146,4.413345,4.751485,5.74345,5.308405,5.308405,2.376945,1.87146,1.924575,2.905655,0.6935983333333334,1.5242608333333334,0.8306625,1.368675,2.497535,0.36506,2.745545,4.283315,1.368675,2.9233985,11.006405,6.4319925,2.1487593333333335,0.985604,1.9771833333333333,4.32237,4.423325,5.524842666666666,1.9925125,2.25694,3.410835,3.14239,4.31638,1.8772466666666665,5.0479,3.5001333333333338,2.985095,4.96709,7.036490000000001,3.783745,2.38515,2.8046333333333333,1.6509333333333334,3.69064,5.11048,1.743184,5.6419,4.56042,5.937765,0.48751533333333336,4.220883333333333,3.997715,4.34399,2.37338,2.862365,7.25545,7.579833333333333,6.3628,1.9479333333333333,1.9479333333333333,1.9479333333333333,4.670525,4.78823,6.1963,3.279935,2.893335,2.6831186842105264,4.0244,4.93495,2.713038,1.85952,2.713038,7.4870980000000005,4.7867033333333335,4.65161119047619,6.64546,4.65161119047619,4.65161119047619,3.3651628571428573,7.21005,5.770108,2.996208,2.996208,2.549785,7.0289,3.00755,3.494175,5.346525,5.346525,5.346525,8.716225,3.7120675,3.451575,3.7502575,3.58988,0.825575,7.426306666666667,2.639603333333333,6.68965,3.499485,12.800938666666667,4.857915,5.548705,7.2027,2.6142683333333334,3.61355,1.1766616666666667,5.548705,3.37952,1.7639375,1.7639375,2.936525,5.4522208333333335,1.7820325,4.975361666666666,0.9053869999999999,1.4648283333333334,0.9053869999999999,1.9416875,2.6874195,5.831877,3.66633,1.4648283333333334,3.260605,5.0783925,1.0650675,3.61895,4.54326,2.018335,4.237903333333334,2.610565,3.419025,2.287285,0.8383839999999999,3.954685,2.768275,2.24731,1.62701,3.10813,3.614595,2.836625,3.90781,1.4529244444444445,1.4529244444444445,1.4529244444444445,4.10626,2.9330366666666667,2.9330366666666667,3.676495,3.989655,2.4504533333333334,1.36296,1.36296,3.43909,4.399145,0.798865,1.4990066666666666,2.9299,1.267075,2.7660816666666665,0.8383839999999999,0.8383839999999999,2.0658891666666666,0.8383839999999999,3.4366908333333335,0.5617433333333334,3.4366908333333335,5.893347500000001,3.49879,2.53851,1.8086063888888888,0.6440549999999999,2.4526613888888886,3.57385,2.4526613888888886,1.0214388888888888,3.483665,4.161645,3.72187,3.693155,2.634145,3.71724,2.0761333333333334,1.012654861111111,0.57782375,1.012654861111111,0.4348311111111111,1.012654861111111,1.012654861111111,4.35306,4.429295,4.5748,3.57214,4.151165,4.06495,5.0956,3.464275,3.864125,1.3488442857142857,2.4916833333333335,4.163562499999999,4.04487,1.43534,2.6165966666666667,3.70643,3.84377,4.056415,3.135155,3.910165,3.3146,3.1701,4.22371,2.0588233333333332,6.06415,3.724475,4.020475,4.60427,1.107214,2.12327,3.185925,5.90262,3.704925,3.166135,3.0361700000000003,3.961625,6.976699999999999,2.910633333333333,3.96523,2.59071,3.76845,4.103825,5.6235,5.39825,3.90591,3.09301,5.10815,4.69185,3.5089666666666663,7.62622,3.2505333333333333,2.24899,2.3383133333333332,4.79752,6.33285,4.663015,4.685935,3.96289,4.6615,5.45315,0.47147076923076925,7.17471,4.20562,3.228015,3.517205,4.407025,3.9177,2.9085466666666666,2.503775,1.32646,0.5846376923076924,1.712006,3.12148,3.15459,3.36851,3.785175,4.03168,11.269353333333335,3.756955,4.03477,2.954395,0.683445,5.469636666666666,3.7013,1.5832300000000001,5.28453,6.28583,2.58453,9.49532,4.50709,2.481426,2.481426,2.481426,4.281975,9.16591,3.46617,2.1428775,2.1428775,3.37476,10.2177,0.9876875,4.665245,4.267305,3.97459,2.8515566666666667,2.3184,4.41965,3.961115,6.3416,6.145630000000001,4.129665,3.057495,3.93605,4.14836,3.1763525,1.12297375,2.57164,6.40925,3.1829925,4.9117,0.89808625,3.5497333333333336,2.1967333333333334,2.6893999999999996,1.76285,1.83964,2.1224833333333333,5.11485,2.05285,4.58898,5.38605,1.718776,4.768905,3.79856,4.78242,3.2510766666666666,2.31138,2.79851,3.7134,4.077876666666667,4.077876666666667,1.225475,1.5730266666666666,2.7548766666666666,4.430213333333334,2.198854545454546,4.7891113333333335,1.787398,2.636136666666667,2.184886666666667,1.6220225,1.6220225,4.586115,7.3471166666666665,1.8524399999999999,2.8291299999999997,2.1375225,4.470075,3.25711,0.956386,2.907835,0.956386,2.76877,3.20486,5.4635,5.44345,3.785665,4.675014166666667,5.6167,2.45456,1.8637133333333333,2.9258,2.2074700000000003,6.15605,4.714285,2.59569,3.65772,2.946765,4.28965,1.10919875,1.1018700000000001,1.8468333333333333,1.3075866666666667,2.4960033333333334,2.74141,2.3301866666666666,3.2816166666666664,2.68102,4.537875,2.571283333333333,2.44802,2.87017,2.4826200000000003,2.9173299999999998,2.6883233333333334,1.9756466666666668,2.5422266666666666,3.592375,3.721135,3.15806,2.756335,2.8276566666666665,2.0950775,1.75047,1.20403,0.304334,0.13972847826086957,2.2165766666666666,1.78777,0.13972847826086957,3.7893709782608695,1.992585,0.13972847826086957,5.667765555555555,2.2596350000000003,6.35338,3.4075,3.0322099999999996,2.56367,2.8421233333333333,2.180865,4.49461,2.9254200000000004,3.1758633333333335,0.38559,4.086165,2.637856666666667,3.18897,1.80289,2.46938,4.301225,2.46824,7.80016,5.1341,3.17794,3.7207,6.89905,6.46617,1.9241966666666668,4.244623333333333,2.13608,1.920345,6.28239,7.66718,1.3443100000000001,2.0407625,3.875635,2.574865,2.968115,3.095015,2.907045,4.368505,2.446315,3.196465,3.34856,3.305335,7.49949,1.23145,2.130745,2.912955,3.28859,1.95723,3.47211,1.59379,3.77431,3.519085,6.49598,3.52388,9.4488625,3.481995,1.5040499999999999,1.7126299999999999,2.93078,6.19322,1.6190525,1.6555333333333333,5.93334,3.44739,4.145925,2.72857,2.0552266666666665,3.04554,10.775855,4.71937,6.40518,3.47167,2.128935,2.2086,2.57963,2.88555,3.15011,1.5813166666666667,1.6137566666666665,2.6302066666666666,3.584155,1.84202,3.43762,2.808995,3.5615,3.83937,3.469885,1.223045,2.88581,1.2482733333333333,1.331956,1.560885,3.26521,3.54282,3.884735,2.39559,3.87287,4.00001,2.84782,1.479884,3.474675,3.6117675,3.082775,1.73587,3.286235,3.56659,1.550135,3.37022,1.6179866666666667,4.22939,3.66729,4.56671,2.68515,3.89397,1.73917,3.19326,5.5481,1.80834,1.1016914285714285,3.3691666666666666,2.879345,4.03523,4.22705,3.043305,4.59736,4.936765,2.3705133333333333,5.0955,5.4832275,6.5696,4.025285,5.6475349999999995,4.08148,1.67505,2.93711,4.69916,4.744905,2.4789766666666666,7.254494,1.167,3.2837899999999998,2.27039,1.787368,2.39506,2.9205166666666664,0.391955,2.683073333333333,3.8017,3.54481,2.56033,3.2705800000000003,2.4418866666666665,2.5124033333333333,2.1152725,9.013919999999999,4.89151,1.9829979999999998,5.16945,2.525302543478261,0.7751458974358975,2.5599266666666667,7.189605333333333,1.591498,4.51689875,6.106108333333333,1.660925,1.647625,1.4378075,3.47954,3.29485,4.35063,3.80733,2.4437366666666667,3.67744,0.996628,2.8141613333333333,4.23009,4.093655,4.59757,3.100455,5.04295,4.46411,4.045875,4.773055,5.63915,5.06175,4.035555,5.34785,1.6641359999999998,1.8874025,2.84139,3.501135,1.0992322222222224,3.644295,2.28023,3.3770000000000002,4.28877,3.1028599999999997,2.4476733333333334,1.5126066666666667,2.8053733333333333,2.8789002777777775,2.5371866666666665,2.9095833333333334,2.03377,2.184305,2.382425,3.700285,4.305975,3.67457,4.55109,3.75359,2.29523,2.8978,5.0215,3.8882333333333334,4.69197,3.23224,2.30319,4.632361666666666,1.7756966666666667,4.126515,4.700340833333334,5.8446379761904765,3.620335,4.12395,5.33415,3.04719,3.8332949999999997,4.33567,3.56923,3.7810525,3.4862,1.4242725,3.25721,1.80209,2.243565,4.69223,5.166399999999999,3.7810525,4.048735,3.50051,1.5183916666666668,3.67083,2.127025,2.4680833333333334,2.216875,2.759025,1.4706925757575757,1.4706925757575757,1.4706925757575757,0.4849009090909091,0.7401088888888889,1.9867455555555555,1.091615,3.702715,1.3885333333333334,3.65829,5.08775,4.263185,3.25522,4.12383,3.401645,4.93455,1.4848525,3.202855,2.818595,3.299685,5.945428,4.08411,5.17295,4.04242,1.03352,2.371135,1.2573566666666667,3.949645,4.077045,4.20276,4.98687,4.46168,3.561305,4.257125,3.69764,1.808445,1.0863416666666665,5.126663333333333,1.0357822222222222,1.2965433333333334,2.7815366666666668,8.002615,3.061965,3.921885,2.6621,5.6025525,1.7382525,1.0167933333333334,1.549665,3.144015,3.60768,3.88717,3.78691,1.9074925,6.332795,2.8871333333333333,0.96424875,4.25157,2.86983,2.56252,2.39385,3.5407666666666664,5.6282966666666665,2.5915466666666664,3.200806666666667,3.4253,2.13029,2.5829066666666667,2.9464333333333332,2.73646,2.122715,4.68732,4.62994,4.806435,0.9782944444444445,0.720647,3.771333333333333,2.7699433333333334,1.012465,2.670263333333333,3.442645,4.171875,6.951285,4.706355,3.3960666666666666,1.8272279999999999,3.68806,3.84847,2.6256766666666667,2.4687837142857143,3.599695,2.7367333333333335,4.7601580000000006,0.8297333333333333,2.49731,1.731852,3.74603,4.1067,2.02741,1.1053725,3.115575,0.445507,3.0603,6.5662,5.24815,2.7346019999999998,1.492516,3.7937333333333334,0.7952611111111111,2.7200900000000003,0.7952611111111111,4.20656,4.416585,1.35394,1.67491,4.996268333333333,1.8040133333333335,3.477345,2.428095,3.402735,1.27909,1.6816700000000002,4.014735,4.85762,5.27365,2.8867599999999998,2.881675,3.216175,1.6436375,2.07914,1.84781,1.9285175,4.27723,1.5255999999999998,1.5255999999999998,3.183905,4.338968666666667,8.303436666666666,4.516586666666667,7.347325,2.088415,3.768105,4.165425,1.5756983333333334,3.4595075,3.72147,3.055555,4.899525,2.948685,2.75666,2.800936666666667,3.59782,1.0450125,4.06664,4.385895,1.171775,8.001859999999999,2.66186,3.301165,3.533723333333333,5.18655,4.848595,3.284673333333333,2.4706733333333335,2.88115,1.9891733333333335,3.6466666666666665,2.2037725,2.1643225,7.042012,3.2047066666666666,2.801296666666667,4.417295,21.692245888278386,0.6874199999999999,2.865195,4.50444,4.58492,8.72422,4.647765,4.73722,4.490655,7.049488333333333,3.707335,1.6452266666666666,4.911011666666667,3.435675,1.168688,1.168688,1.168688,2.39626625,1.73122,3.304915,1.60204,3.161685,1.5785766666666667,2.683215,2.613995,2.835005,1.60204,3.500645,2.724245,4.187093333333333,5.061303333333333,4.952375,0.7588775,3.315095,2.920905,4.672195,3.496175,2.926175,2.327945,1.719475,2.271495,1.475328,3.473785,1.672775,4.548565,10.776653000000001,2.6470033333333336,2.470585,4.449845833333333,4.7056,4.4393666666666665,6.0585,2.252266666666667,5.224475833333333,4.282315,1.129055,1.2011685714285714,6.461188,4.28704,2.4297,3.585795,1.9834675,3.36966,4.45712,4.579745,3.970895,1.2665857142857142,4.104485,4.63345,4.672335,6.290485,3.32333,5.3715,4.31321,4.584255,5.0258,3.5635333333333334,4.96112,1.71641,3.449485,3.107895,3.17331,4.12228,6.13295,4.67876,2.7640999999999996,3.585266666666667,8.75499,4.810935,3.2636633333333336,3.46632,3.08101,4.446245,4.39926,4.663815,6.375325,3.59698,2.6813833333333332,3.930113333333334,2.366935,3.850585,2.22913,6.30662,1.6110499999999999,4.388955,4.628685,11.329065,0.4840642857142857,4.357125,4.830965,0.6400514285714286,3.688705,3.847255,3.883285,0.9253899999999999,4.73013,4.996216666666667,2.7061533333333334,9.809608333333333,3.1984933333333334,1.88574,2.259255,3.39932,5.95945,0.558075,3.91383,2.022385,5.4745,0.6941415384615385,4.308495,5.6585,6.0619,3.566155,6.4456500000000005,4.554,3.37864,2.6133333333333333,2.8512566666666666,4.22453,4.23104,4.841225,4.89499,5.38355,3.00658,6.508935,2.7704,3.2761774999999997,1.8185475,4.18731,2.1833199999999997,1.6163066666666666,3.1842400000000004,2.82897,3.2377233333333333,3.2754600000000003,3.3912666666666667,2.99032,2.5350800000000002,5.5624,3.21902,3.78829,4.78623,2.4836266666666664,1.1386333333333334,2.9322666666666666,2.88407,3.831155,2.75965,3.1445566666666664,4.828175,2.18838,1.72935,3.24112,3.81362,4.319005,1.1019675,4.090015,3.311985,3.8824,2.822976666666667,4.831317,4.078105,3.36891,3.88917,1.827785,3.978255,0.6182525,4.734065,4.982045,16.72393,3.0453766666666664,1.179275,4.094655,0.6217750000000001,2.66345,4.4141,1.83095,1.1408228571428571,3.546775,4.50514,2.9669899999999996,0.7356066666666666,2.79295,7.83632,3.875255,5.32155,4.99306,5.2152,3.3946666666666663,3.6385,3.157446666666667,7.039281666666666,3.897035,4.95675,1.996165,0.43708166666666665,2.210665,3.131895,2.24111,4.28036,3.68485,2.8223000000000003,4.529495,0.6670816666666667,4.511345,3.54835,3.33392,1.1940866666666667,2.68041,2.01331,4.84297,3.980525,2.081455,1.5873000000000002,3.339405,4.235215,4.09927,6.0388649999999995,2.1277399999999997,4.63479,4.303085,3.673955,1.8383639999999999,3.621135,5.68852,4.609995,2.46828,4.86845,2.585995,2.606465,3.76985,3.857225,1.3911766666666667,4.583545,1.9943766666666667,2.65523,5.157215000000001,5.157215000000001,5.13385,1.440862,4.78489,0.88982125,1.7661120000000001,5.0468,2.6547066666666668,1.4895399999999999,3.2078233333333332,0.898044,4.3082666666666665,4.692655,2.889465,4.903765,3.764665,3.512375,5.37443,3.47745,3.530333333333333,2.7619399999999996,2.2612099999999997,2.533,2.8379266666666667,4.472245,1.6445281318681317,2.8111599999999997,4.372325,4.57141,2.1279666666666666,4.307005,4.44829,4.845516666666667,3.3596333333333335,5.031,4.872335,5.1952,4.94694,3.42923,3.65264,3.66178,4.30202,5.45925,4.43874,4.859445,4.583675,4.531885,0.6790666666666666,4.847955,4.38958,4.021605,7.2321824999999995,3.986815,3.704465,4.48985,4.720405,3.478315,3.5538,2.06696,4.5003125,1.7878425,1.3159928571428572,3.757025,2.1156900000000003,2.5245466666666667,3.5686833333333334,3.3106833333333334,2.975405,1.2221533333333332,1.9227475,4.42869,3.534815,1.8796175,1.8796175,3.257755,1.601354,3.2334300000000002,4.32136,3.62964,3.7866,1.4908366666666666,2.27116,3.4656775,2.014915,4.183645,4.305615,4.72287,3.97031,6.18843,2.5984,3.622875,4.332615,4.353275,3.3419666666666665,3.90074,3.80346,4.09454,2.291715,2.293156666666667,4.276445,3.843735,3.771215,3.652,1.73087,3.671405,4.28247,4.637455,4.229615,3.8871425000000004,3.8871425000000004,2.9749625,4.025885,4.10245,3.511255,1.559144,7.33797,3.89231,4.91337,4.408385,4.210655,4.004845,4.68145,2.995255,3.192885,2.848175,4.86375,1.844504,4.17045,5.242992222222222,5.00765,0.739668,4.885014166666666,1.15017,4.87437,4.533245,4.41444,4.153475,5.05455,3.7188,3.7188,0.7976409999999999,2.30727,4.87286,3.70168,3.88313,4.82271,5.6074,3.38448,4.054265,1.3779866666666667,2.742595,1.6645975,1.2692375,4.176242666666667,0.8531449999999999,2.30891,3.0812033333333333,1.2461533333333332,2.1102,2.6996033333333336,1.2166683333333335,6.42247,1.969395,2.7293299999999996,5.55385,1.8958975,2.7675933333333336,2.570965,4.55797,3.6094666666666666,3.5043333333333333,4.123866666666667,1.69222,2.1803325,4.19766,0.6482707142857143,2.0340266666666666,2.243851666666667,3.0414933333333334,2.8232466666666665,1.1515457142857142,0.833215,2.55105,4.129465,1.1866171428571428,2.12105,1.2349825,5.3537525,2.2609725,5.0115,4.435305,4.078935,5.2599,5.34315,3.994245,4.12293,1.3477233333333334,3.9566666666666666,1.688494,2.400986666666667,1.2188571428571429,4.30625,2.05266,7.13676,3.98577,3.765485,1.454242,6.9317675,3.37577,1.4901433333333334,4.125795,3.219645,3.733155,3.08301,2.04619,2.04619,3.2078233333333332,1.3809016666666667,1.3809016666666667,1.8383639999999999,2.7482166666666665,2.1304225,1.318505,3.5201333333333333,1.0655525,3.10862,2.325915,1.95943,1.5105616666666668,2.2351925,1.90244,0.2993105882352941,2.3601825,1.2007233333333334,2.3652666666666664,2.184886666666667,2.3814825,1.0380222222222222,1.1404299999999998,3.846166666666667,3.1011666666666664,2.04619,1.7918225,2.0022533333333334,2.6212066666666667,2.4466733333333335,1.885014,3.4408333333333334,1.08134,3.21899,2.64935,2.6015566666666667,1.56007,0.914648,2.4607125,0.914648,2.4607125,0.63653375,0.63653375,0.48353,2.129735,2.2976733333333335,0.63653375,2.210865,2.28986,2.379555,1.649415,0.7826377777777778,0.63653375,0.63653375,1.6420559999999997,1.6420559999999997,2.069575,1.7918225,0.63653375,2.2485600000000003,0.47758,2.8340833333333335,2.01654,2.4591600000000002,2.5210833333333333,2.5210833333333333,0.3729225,0.3729225,1.8383639999999999,1.955394,2.14576,1.99265,0.3729225,3.5208333333333335,2.56795,1.54702,0.623883125,1.54702,0.623883125,7.07757,2.6449866666666666,3.9901,2.6756966666666666,2.8610866666666666,3.1500233333333334,2.64265,3.5264333333333333,2.538,1.7316075,2.4502266666666666,2.910633333333333,2.381816666666667,1.6420559999999997,2.5453714285714284,2.5453714285714284,2.80733,2.1383525,4.36354,2.31626,3.11472,2.734446666666667,1.420882,2.34168,2.194805,0.7995145454545455,1.7032825,3.482375,1.6179700000000001,3.0517766666666666,2.56319,2.620475,3.821066666666667,1.5451266666666665,3.32534,2.9975633333333334,4.1978,1.2625439999999999,0.23274999999999998,1.2722485714285714,1.2722485714285714,0.9732322222222223,2.8799433333333333,3.8281666666666667,2.522,2.16791,2.16791,2.1182525,1.6179866666666667,0.944422,1.8209433333333334,1.8209433333333334,0.63653375,1.8383639999999999,2.91093,3.087476666666667,2.325915,2.18854,2.18854,2.18854,1.0863144444444446,1.4287714285714286,1.4287714285714286,2.3789575,2.58306,2.4952225694444445,3.498685,2.5729633333333335,2.2575866666666666,3.604475,3.85661,6.3032725,3.54524,4.236895,4.000366666666666,13.212769999999999,4.87366,3.603165,0.94439,3.86954,3.2094,2.50097,3.788075,5.04765,6.279727333333334,5.9661,0.44304529411764704,3.664525,3.055905,3.75297,2.468275,4.23171,4.37406,4.01761,8.4768,3.5752,3.933745,4.11682,3.2810454545454544,7.9952821025641025,3.2440766666666665,2.728486666666667,3.59547,3.935655,4.929005,3.614525,6.758303,3.62417,1.409362,2.75616,0.8991825,4.67638,2.67506,2.66891,4.008645,3.08298,2.56646,4.81298,3.954055,7.689080000000001,4.061615,4.525961,2.3890733333333336,5.29607,3.11889,0.7648775,0.7648775,3.60221,3.926455,2.4058,2.26853,4.172235,3.01284,3.452125,2.05866,1.9780125,2.9759,2.4724533333333336,1.11556625,3.18265,4.776805,8.36525,1.498392,2.80884,3.07849,3.159275,2.7482066666666665,8.52139,4.09736,3.3956999999999997,2.81672,3.834235,3.2638866666666666,2.7811166666666662,2.9691566666666667,3.79409,3.80227,4.411375,3.66744,0.4242026666666667,1.6193333333333333,2.4025333333333334,1.825295,4.315645,3.483735,2.520086666666667,2.226825,4.355825,3.56779625,1.99969,2.502595,0.85674,1.9533325,2.5263566666666666,2.5263566666666666,5.05085,1.90864,2.7367966666666668,2.3049500000000003,2.0893200000000003,1.8388133333333334,2.949135,3.669225,4.73347,4.210125,5.24215,4.55223,2.88624,2.791983333333333,2.11326,4.53953,5.53675,1.8814399999999998,2.939223333333333,2.098285,2.1230466666666667,3.7040949999999997,2.277883333333333,5.095,3.931665,3.554185,4.190465,2.963556666666667,3.73702,3.96648,2.30544,2.4507533333333336,0.4145042857142857,3.8051,2.6263900000000002,3.11684,6.25505,4.794805,5.675738333333333,1.87049,1.5608883333333334,3.192135,5.146,6.38275,5.92465,2.783103333333333,2.3002466666666668,3.45304,2.0995433333333335,4.60601,2.1910766666666666,2.255315,5.5084,4.920325,4.18123,1.815665,1.924135,1.1360480000000002,1.1360480000000002,1.23717,0.9748,0.798744,1.918264,4.17392,9.750533333333333,3.819835,4.072585,4.08288,5.7917175,2.72011,1.6901966666666668,3.337934166666667,2.941655,5.00113,2.2247600000000003,2.5541933333333335,2.8734699999999997,3.213926666666667,2.215123333333333,3.0849466666666667,3.2999266666666665,2.9779400000000003,3.4143666666666665,3.3647666666666667,2.8566366666666667,2.77136,2.9697033333333334,2.1500533333333336,3.070123333333333,2.99527,2.83323,3.277283333333333,2.07762,5.404487428571429,3.0778033333333332,4.173540666666667,3.1469133333333335,3.041513333333333,3.6461666666666663,2.7973466666666664,2.695953333333333,3.0034333333333336,3.1559899999999996,3.3916,3.067323333333333,1.882855,2.7668966666666663,2.7653766666666666,2.83725,2.83725,3.2374666666666667,2.761506666666667,2.4985833333333334,2.8865,3.0051,4.107366666666667,2.885643333333333,2.720825,2.7849133333333334,2.844446666666667,4.214470833333333,4.874005,1.5768983333333333,3.3032,3.7003,3.31778,3.2148766666666666,3.6130999999999998,3.4379000000000004,2.8054566666666667,3.430168,1.9496479999999998,2.8089589999999998,3.377333333333333,3.090613333333333,2.5138266666666667,2.291186666666667,3.825466666666667,2.77401,2.9908433333333337,2.2392975,1.1203833333333333,3.2216466666666665,2.634393333333333,1.88032,2.4763075,3.0186166666666665,3.0199933333333333,1.972038,5.560694,2.3764133333333333,0.871691,4.321375,1.8254683333333332,1.5517016666666665,4.150125,4.05776,3.385225,2.33765,1.36482,3.576165,2.710445,3.509605,0.3953645,2.09013,0.3953645,2.307915,1.36482,2.772385,3.628895,2.2067525,3.218395,3.39094,0.4705746666666667,2.8406566666666664,0.9539825,0.42384,3.71088,3.98852,4.94592,2.485645,5.3494,4.062685,3.920415,2.284545,3.8193333333333332,1.673906,5.06975,2.29361,4.27919,4.19265,2.91957,1.9166800000000002,2.0325166666666665,1.3134983333333332,1.916225,0.8129625,0.8129625,4.569105,2.3244700000000003,6.18065,2.412635,2.140905,2.11825,2.277577,2.489815,6.42615,4.72937,2.239555,2.4170933333333333,2.277577,2.4927,4.2141895,2.4333175000000002,6.008538333333334,2.412635,3.4671475000000003,3.496065,2.9546533333333334,5.4181,4.59042,1.8298525,1.977915,2.411675,2.329935,4.721175,5.382,1.9077375,3.710165,1.5793833333333334,1.49643,5.131,9.813231666666667,2.03016,2.0001433333333334,2.403653333333333,4.13625,4.03818,1.88109,4.744495,4.52014,2.364905,38.790621071428575,2.86614,3.0695266666666665,0.4225888888888889,4.766414166666667,2.045523333333333,0.908818888888889,3.489175,3.64744,1.8077975,1.833245,2.4339766666666667,3.593525,1.338627142857143,3.220945,3.608745,4.454305,0.9108890000000001,4.66128,4.9033,4.717485,2.8285033333333334,1.558875,3.799125,4.501455,3.589015,3.51234,3.71989,3.79467,11.491356565656567,2.60318,3.115575,3.73033,2.44929,4.266085,3.12594,3.16837,2.93486,6.1958,4.180925,5.0979,5.12125,2.4594,3.675175,4.18147,3.661045,4.630445,4.40938,0.12764347826086955,2.25672,5.3855,2.89499,1.6650083333333334,1.1422666666666668,1.1422666666666668,2.348145,2.815465,2.670545,1.786046,2.842223333333333,4.38245,2.72781,4.590175,0.5744514285714286,4.58519,3.42346,4.726325,4.575735,4.514375,1.14430625,0.96477875,4.290166666666667,2.94621,3.0411366666666666,3.747306,3.62167,6.016730000000001,5.45995,4.034055,3.697515,2.06364,1.4456633333333333,4.35684,0.3167986666666666,3.4609,3.82196,4.177675,13.82179,2.0780225,3.05759,0.790905,4.608205,8.40742,3.26933,1.7103033333333333,5.6624,3.1893333333333334,1.0815755555555555,4.87588,2.91786,3.131375,4.728545,3.4806762777777775,0.95954875,6.492523333333334,0.7520325,5.0231,3.2953497777777776,1.45041,2.1464109444444444,3.3145625,3.3145625,3.82544,4.4204118333333335,1.2873625,2.499435,2.77353,3.56942,3.085175,2.54769,3.42763,3.394535,6.853685333333333,6.3952,4.049685,3.22951,4.439855,4.65877,3.593035,3.417785,3.650895,3.79843,4.16406,2.5590066666666664,2.612906666666667,1.6139150000000002,2.3564966666666667,2.1893825,1.5649325,2.75013,3.5802666666666667,3.4129666666666663,3.1110366666666667,2.4992366666666666,1.5490733333333333,1.6444033333333332,0.47725909090909097,2.36191,1.5850285714285715,1.86874,3.4105666666666665,2.5215,2.5974333333333335,0.9311925,2.191825,2.668525,2.902375,3.613185,5.13,4.010585,3.03568,2.285553333333333,3.43849,4.32677,2.43198,3.4006,2.062575,3.86347,2.786235,4.1279,1.3925633333333334,0.614236,2.2719725,3.28431,3.19827,3.95672,4.69304,8.887675,3.1654366666666665,2.1114966666666666,1.7901300000000002,1.713524,1.713524,2.8842233333333334,2.4937,4.817655,4.267455,3.33911,4.983475,3.978035,4.067725,3.1752416666666665,4.412075,7.68976,2.5047,0.502141875,3.229643333333333,1.3566200000000002,1.02544,2.03307,0.75068,2.0853325,5.22785,4.88381,5.743075,0.924575,7.76086,1.9498640000000003,1.5394816666666669,2.6037933333333334,3.828515,3.2627433333333333,2.2886575,3.286905,3.0735033333333335,4.2609,2.84891,2.68562,3.0008933333333334,6.2294350000000005,2.535815,4.020385,3.8197416666666664,3.6624175,1.61046,1.161085,4.293275,2.7148333333333334,3.052906666666667,5.2814675,2.81147,2.18565,2.406415,3.124025,3.7266333333333335,2.0768766666666667,3.9128616666666662,2.891016666666667,5.5249,2.486454166666667,1.953595,4.74539,5.2751,4.27605,3.82555,1.66573,2.243735,1.9708925,3.278125,1.7107833333333333,1.0706916666666666,2.9109866666666666,2.04889,1.88219,4.36749,0.678395,5.4275275,1.4161825,0.7840481818181818,3.4062333333333332,3.791415,0.65561,2.8888265,3.18807625,0.833215,4.30564,0.168895,0.168895,0.168895,0.168895,0.168895,0.168895,1.917072,3.79878,1.917072,1.917072,1.8374166666666667,0.168895,0.168895,3.3309166666666665,2.50303,3.400775,3.319275,2.361825,3.63615,1.3247885714285714,1.542954,3.1763525,1.3362120000000002,2.6468233333333333,2.6152206666666666,5.582649999999999,4.113615,3.89912,6.6214,4.405305,4.799595,3.47329,3.77112,7.1971066666666665,3.8627000000000002,3.6204666666666667,2.19394,5.2713133333333335,2.59052,2.0985625,1.6911833333333333,4.54996,5.1131,5.0586,5.03305,5.48755,4.22999,4.522125,0.6744190909090909,0.68575,0.68575,4.649925,2.4093133333333334,3.935835,1.0692842857142857,4.406715,1.464942857142857,2.2886166666666665,2.44078,4.438466666666667,4.438466666666667,6.68175,4.177065,1.281115,9.467811666666666,2.7835133333333335,1.210222222222222,5.0547,5.10775,3.5168,3.11532,2.76522,4.245033333333333,0.8001933333333333,3.2561433333333336,3.33085,3.8059,3.2252166666666664,1.50683,1.4738433333333332,4.743448333333333,3.14925,3.10702,3.4485333333333332,5.4192,3.4925975,0.8135899999999999,1.5503766666666667,3.8361,2.2258666666666667,3.8580666666666663,3.4636,3.0705066666666667,3.4347666666666665,3.0022599999999997,2.43865,1.0512366666666666,3.146603333333333,2.4524500000000002,3.398045,2.962775,3.72331,2.6266700000000003,3.250453333333333,2.786925,1.567498,2.1906033333333332,2.6281873809523812,3.5316333333333336,1.8148440000000001,3.2158533333333335,1.8113666666666666,3.6430333333333333,5.378430833333334,4.953239333333332,2.42538,2.53395,2.7052,2.45924,1.5498285714285716,2.345975,3.328570357142857,2.4398875,3.5220333333333333,2.88636,3.7283636666666666,3.04603,1.2986222222222221,1.3325425,1.8347425,2.18322,2.927986666666667,3.5124,5.0772,7.6042025,2.613655,5.1136,3.604115,14.820300666666666,0.47972200000000004,11.4252775,0.8125022222222222,3.34881,2.5871566666666665,1.9103933333333334,2.934965,1.60872,1.479884,2.3334066666666664,1.22538,2.9064200000000002,2.03408,2.8173433333333335,2.0764666666666667,2.6580633333333332,1.6458566666666667,0.6247966666666667,2.9641699999999997,2.575886666666667,2.8909266666666666,1.0863144444444446,3.4638000000000004,0.7061166666666666,0.3634307692307692,1.9412233333333333,4.450685,4.288975,4.17737,0.725099090909091,4.01598,4.7815,1.1770725,2.3939175,5.2263166666666665,3.461775,3.722615,4.056805,4.038225,1.9597725,3.982605,2.67548,2.868685,3.72282,2.91715,2.79359,3.852215,3.253175,3.505335,2.172535,3.427795,4.244195,1.2771066666666666,4.48676,2.276345,4.06145,5.0823,1.9870825,2.6179900000000003,2.9794699999999996,5.757348333333333,2.500356666666667,3.26658,4.9136,3.9901,4.104485,1.9990233333333334,2.67495,4.35457,3.5821,3.7679,3.6462,2.9205133333333335,2.8790899999999997,3.8412666666666664,3.1684699999999997,2.6529633333333336,2.71217,0.44213777777777774,2.3384125,2.0794225,4.574625,4.74081,2.994173333333333,2.6040766666666664,3.1749333333333336,8.832405,3.476783125,4.087105,2.5573900000000003,4.09213,3.131915,3.592674166666667,2.7890366666666666,2.250605,2.638403333333333,6.3819,4.64742,2.2006,3.28941,3.134715,2.8032166666666662,4.370440666666667,1.7357140000000002,6.102543333333333,4.02705,4.76477,4.53326,6.49375,3.774235,6.77534,3.595475,3.2945,0.6388214285714285,2.1932275,1.56246,2.79121,2.77992125,4.06789,3.877665,5.2564,2.65464,4.492355,3.7005666666666666,3.8470666666666666,3.191603333333333,4.307735,4.488325,4.276995,2.8114666666666666,6.002395,4.520195,1.401345,5.14385,3.686555,2.813875,2.230005,2.22572,4.209136666666666,1.2730885714285713,2.498676666666667,2.00979,3.86685,4.37984,2.3891833333333334,3.306293333333333,3.0193133333333337,2.3130533333333334,3.55052,1.374846,2.2946133333333334,2.4265933333333334,2.9315266666666666,2.545436666666667,2.597906666666667,2.75302,4.06142,2.9658366666666667,2.81066,4.02006,2.374575,3.692185,3.64509,1.2572733333333332,1.2572733333333332,4.56594,2.828086666666667,1.81335,1.3472575,1.9847225,1.914745,1.29925,1.4958166666666666,0.657832,1.6264333333333332,1.5028166666666667,3.009916666666667,2.2419,1.8174299999999999,2.0308566666666668,2.3243766666666668,1.5129233333333334,1.8375266666666665,1.7769599999999999,2.386075,4.023245,2.92787,2.7581100000000003,2.6262,5.45745,2.83125,4.291695,4.01537625,2.08248,4.006335,3.04179,1.927725,3.65371,1.6146875,3.0626,3.67805,1.85826,4.325065,3.599185,4.257395,3.2817133333333337,0.8166888888888889,4.714265,3.804855,3.44107,3.92862,2.2572366666666666,4.36424,4.439315,4.4831825,9.158275,3.361005,4.44524,2.8124966666666666,3.57207,4.272035,2.259245,2.881775,3.71653,1.9341075,5.76538,1.8609380000000002,2.78281,5.540186666666666,2.802046666666667,4.103698,1.1869542857142859,4.26514,4.258295,2.987883333333333,4.71215,4.655155,5.907541999999999,15.277918273809524,0.6033470588235295,1.0380222222222222,2.8124000000000002,3.77596,3.496215,2.1545075,3.292565,4.07597,4.808575,2.4635,4.33164,1.6861333333333333,1.6861333333333333,5.20315,0.7617418181818182,1.67003,2.921945,3.96937,0.3826130769230769,1.9876966666666667,3.9987293333333334,1.1859866666666667,3.1476133333333336,2.8383766666666665,2.96982,8.12478,2.62771,3.6508333333333334,2.0277133333333333,2.2732733333333335,3.6573525,3.706785,3.33674,6.923511333333334,1.94155,2.899675,4.57789,6.60933,1.8976,2.4040466666666664,2.6237966666666668,1.4377033333333333,2.57073,1.6024237499999998,3.922335,3.91562,1.5725875,1.8635313333333334,1.8635313333333334,2.6708700000000003,5.3611,4.110783333333333,3.984745,4.288535,4.160385,3.221945,3.806265,4.29977,3.43322,4.707578333333333,3.8186425,4.446375,0.896666,0.361211875,5.4051,3.946645,2.48459,8.00061,1.5452333333333332,4.665533333333333,4.019985,0.3500775,2.009933333333333,1.4337900000000001,1.9393,2.0721166666666666,5.183307,2.96036,3.29009,4.992465,4.979425,4.620045,0.5869053846153846,1.993705,0.621891,5.87659,1.380808,4.825265,1.9815975,3.2141325,3.244445,4.1203,4.08342,5.1725,0.8258027272727273,3.272365,3.94875,1.926915,1.70957,3.72623,3.063225,3.843975,3.93940875,5.354495238095239,4.56893,5.6575,2.74113,0.5400233333333334,3.2455233333333333,3.607315,0.5193223076923077,3.77098,3.75566,4.06245,3.67743,2.6296633333333332,4.783655,3.16965,3.01215,2.178005,3.984355,1.6225580000000002,3.13541,3.922025,0.5520346153846154,3.461805,3.868825,3.18338,3.77706,4.47122,2.75718,3.965055,0.636143,2.8909933333333337,3.634901111111111,4.38439,3.4656333333333333,2.54525,3.391766666666667,2.54525,4.789265,2.98013,2.9490133333333333,1.4728516666666664,2.888833333333333,1.7813125,4.218035,2.6968833333333335,4.851213333333334,2.996923333333333,2.728953333333333,2.86265,2.421005357142857,2.421005357142857,2.421005357142857,2.12039,1.0794949999999999,4.518195,2.34585,1.6959799999999998,3.9916666666666667,2.2013000000000003,2.908326666666667,3.93593,5.39995,3.233805,1.74812,1.16847,4.20776,1.973074,2.20358,2.85052,3.50659,2.08705,3.490795,2.713155,1.6443180000000002,4.93481,4.24552,4.25721,3.767535,0.7604344444444444,2.43967,4.3197,7.65238,3.724675,3.11511,3.150305,3.52238,3.827515,1.63228,2.336365,4.419415,1.98982,4.45594,3.35447,5.36655,8.31044,4.0344,3.27799,2.932155,4.865425,3.844175,3.1359775,3.1359775,3.80887,3.87765,4.150425,4.18184,4.24496,4.499845,3.99876,1.1078775,4.337475,4.3512,5.1278,8.175464999999999,5.0324,3.751558,1.91633,1.3145783333333334,2.340955,5.13145,3.96937,5.14111,2.1291333333333333,4.270195,5.05165,5.1025,4.825515,2.9427966666666667,3.306385,3.83321,4.843065,4.25086,3.741465,6.524573333333333,4.76246,2.339933333333333,5.01265,3.895795,3.91515,3.54912,4.22256,0.7550654545454546,3.870415,4.203115,1.167007142857143,1.2132720000000001,4.78598,4.496865,8.5991575,4.937635,4.223155,6.04415,3.049535,2.3912633333333333,4.79217,1.8987475,1.8987475,2.62488,1.6608833333333333,3.0390208333333333,3.2179133333333336,2.009675,4.107171363636363,1.4296133333333334,2.22606,5.3569724999999995,3.3396233333333334,3.676695,3.11614,3.93775,4.166735,3.0250966666666668,1.0265822222222223,4.08271,3.0596599999999996,3.884315,4.251975,3.7109216666666667,5.6165,4.50521,4.54639,3.581325,5.2181,6.3823,4.71615,3.41667,3.17498,2.212035,2.212035,3.88207,3.77989,2.6185566666666666,2.8015933333333334,1.9505354545454545,2.38116,1.4531933333333333,1.4531933333333333,4.24468,3.51407,2.15035,3.56257,2.74962,2.00334,1.1572425,1.0328911111111112,2.678565,0.4232415789473684,0.8314488888888889,2.804605,3.58092,0.43434727272727275,3.81369,1.8807420000000001,5.3424,3.45886,7.1756899999999995,4.352215,5.330736666666667,4.610125,5.18195,4.110325,1.90402,1.760098,3.908455,3.050155,3.71513,1.2991533333333334,3.20516,4.219185,2.806705,2.684635,2.46112,4.09643,3.383745,3.134455,3.89165,3.666675,3.478935,3.249675,1.065222857142857,1.71272,2.30962,2.72305,4.41451,7.74359,0.9514440000000001,1.5168933333333332,1.5168933333333332,1.7747319999999998,3.90792,2.84278,3.196265,5.262825,2.9516833333333334,1.15738,1.15738,1.15738,3.055815,2.9233985,5.5154,3.3605,4.34429,3.430965,3.72531,3.001915,3.2085725,3.761275,4.1602525,2.7277500000000003,1.29925,2.772255,2.7277500000000003,3.52941,1.3615433333333333,2.01042,1.90452,5.5663599999999995,2.80273,5.89911,5.5663599999999995,3.09638,1.75894,1.75894,2.74195,5.43606,1.75894,2.223315,6.05496,2.238235,2.981495,4.97633,3.717065,4.11316,1.9162433333333333,3.346005,3.9046,1.9826766666666666,2.48839,4.27185,1.9162433333333333,2.72346,2.0047,5.98962,2.550315,1.14981,2.572455,3.3778,3.1298838333333334,1.921835,1.8756305,4.39841,1.8208313333333335,1.72772,3.37886,2.142675,3.362885,3.97371,2.3869666666666665,3.039385,2.47087,7.06338,2.36078,3.12077,3.23172,3.23172,8.845986666666667,1.0290766666666666,3.069755,2.572835,3.519635,2.30713,1.2142466666666667,1.2142466666666667,3.1461,2.176295,7.33679,2.25573,3.37571,3.321525,6.20705,2.812375,2.41974,6.14925,6.14925,2.563225,1.5319625,1.2787325,1.2787325,1.5319625,2.09629,1.4973966666666667,1.1953099999999999,1.6472499999999999,2.1417966666666666,3.780615,1.870965,3.22081,3.08379,2.74333,2.954045,2.975235,2.692205,3.4362608333333333,3.4362608333333333,6.57076,2.35116,3.012075,3.229585,3.51478,2.34584,2.806765,2.360195,5.5660025,1.7692225,1.6196343333333334,1.3762510000000001,2.3397793333333334,5.24994,3.9534793333333336,3.2973733333333333,3.45874,1.8148825,1.8148825,1.8148825,4.82251,2.406175,1.1953099999999999,3.2727,3.5377,1.362545,5.2845625,3.2681575,6.46585,4.15234,1.899065,3.427345,2.23808,2.181305,3.52815,5.2122,3.88825,1.820665,2.40024,3.60083,3.311075,5.54384,2.031075,3.557515,2.75752,6.45375,4.3086,2.04199,2.48385,5.40468,5.27385,5.15681,6.71706,1.095,1.095,4.168561,4.168561,0.868356,4.88248,3.59342,5.58581,4.19688,4.70701,2.396395,4.614138333333333,4.614138333333333,2.831465,3.4341,3.82862,1.13598,4.62511,3.146475,3.03656,2.78299,4.85322,2.541175,2.460615,3.50497,2.668465,3.21527,5.49484,2.45149,1.659005,3.858575,6.18573,5.38335,4.71125,2.630275,3.35648,2.76218,5.09746,2.991125,3.66581,2.525265,6.46308,4.72753,2.206875,2.629155,2.507335,5.41639,2.447615,2.73321,2.7564,7.42844,5.35436,3.552535,2.01117,2.285925,6.73103,3.31874,2.95547,5.36131,3.344065,3.101045,2.571635,3.02187,1.9837733333333334,1.84309,2.1281133333333333,1.8256466666666666,1.7661499999999999,2.0715866666666667,1.560885,2.2029733333333334,1.942655,1.9837733333333334,3.95793,4.37793,2.16661,1.655385,1.655385,4.08938,4.08938,2.823123333333333,2.823123333333333,2.83697,1.924115,1.834865,3.34669,2.2325075,2.2325075,2.37286,2.37286,2.97224,1.901655,5.08229,2.37693,3.048655,2.1259633333333334,2.1259633333333334,1.87633,4.0588,6.38031,1.3615433333333333,4.75511,2.3869666666666665,2.53966,4.57457,3.117685,1.95383,2.2988,7.50699,2.31236,6.38081,3.408845,3.497425,3.197725,2.52992,6.39196,3.00292,2.609905,2.576841153846154,2.819115,6.14087,3.52442,1.548466,1.548466,3.56683,4.63095,5.30882,5.50836,2.721755,2.887445,1.651235,3.156735,1.59281,2.601155,1.71344,0.7849039999999999,0.7849039999999999,0.7849039999999999,2.1505658333333333,5.1722133333333336,2.1505658333333333,2.22571,3.571505,1.737635,2.218245,4.32594,3.47839,5.79603,1.6524166666666666,5.38943,1.6524166666666666,1.6524166666666666,2.23141,2.244395,2.312755,6.09856,2.312755,2.51891,4.35899,2.391475,1.567835,2.84128,2.992103333333333,3.2572441666666667,3.15409,3.429915,1.26949,3.79626,0.7035781818181818,4.03214,4.289350000000001,2.8126175,2.8126175,0.66418,3.9924,2.6173333333333333,5.62415,4.980015,4.095395,5.43455,3.84265,4.113805,5.1288,4.213075,4.221735,3.523595,3.95555,4.803085,4.88778,3.26246,3.417605,3.79827,2.3116733333333332,1.207428,4.48929,3.30841,3.014335,1.1492314285714287,3.987345,3.958405,6.4517775,1.2457275,5.3233,3.90023,1.961,1.91697,3.320915,3.60245,1.74897,1.548466,3.75141,4.691625,2.729225,4.72094,2.999645,1.14191,3.07076,1.168692857142857,3.098176666666667,1.9369399999999999,3.0173466666666666,1.9009125,2.6055066666666664,3.99111,3.00601,4.59671,3.24754,2.1980275,4.90215,4.15612,3.17767,5.41045,4.03493,2.6887600000000003,5.9256,4.69169,3.2031433333333332,2.674166666666667,3.039555,2.882623333333333,3.040713333333333,2.66748,4.967805,4.45137,3.679415,2.50401,2.6995533333333337,2.47627,2.3882499999999998,2.20956,2.36414,2.2517,2.1621125,1.35254,2.9581796666666667,1.172225,1.72312,1.66856,2.6875,1.65393,1.8351,3.787575,3.68152,1.97679,4.151975,3.608785,6.52366,2.0666533333333335,1.588634,6.81675,3.3113,4.57047,4.13883,3.881905,2.04749,3.645965,2.4073025,3.05074,4.1713,0.7237933333333334,3.87134,2.23868,0.73129,4.794585,4.665545,4.024615,1.7684135714285714,4.693455,5.6582,2.693766666666667,2.8932366666666667,2.4865633333333332,2.1574233333333335,0.6168549999999999,3.0677466666666664,3.0364,4.88678,2.43441,2.071785,3.42852,1.0885875,1.9100283333333334,1.9100283333333334,2.84439,1.9100283333333334,3.929535,2.713345,4.054495,4.423515,5.74205,13.312568333333333,3.0178133333333332,4.651865,2.815385,4.7368,3.13855,6.5020175,2.66267,4.89213,4.684635,3.847265,1.1674116666666667,4.609745,3.0635366666666664,2.5026333333333333,0.9537277777777778,2.1883125,3.34835,6.915795,4.08057,2.7482166666666665,4.579765,3.2078233333333332,4.15221,4.33467,4.722245,2.818695,2.899696666666667,4.02616,5.49385,2.646075,4.101595,1.850275,1.850275,3.187645,4.806465,1.21458375,3.9142919999999997,2.22334,4.755565,2.619403333333333,2.58238,3.2033400000000003,2.46379,0.7144071428571428,3.50924,2.83498,5.2381,4.325165,0.234365,4.881415,4.451575,3.786415,6.665955,2.902343333333333,2.86557,2.11675,2.8586733333333334,2.5398733333333334,1.2987033333333333,2.7609266666666668,2.5651033333333335,1.3014383333333333,3.2517266666666664,2.8545533333333335,2.40002,2.8293666666666666,1.23642,4.172865,2.641115,5.06875,3.87455,3.59428,1.6584966666666665,2.5033433333333335,1.3559,2.03683,1.3559,4.891405,3.309646666666667,1.462454,2.37954,4.438625,3.872695,3.11593,3.893605,0.3512305,1.3581108333333334,3.963995,4.29972,6.3195,1.8692225,2.6608033333333334,3.0608566666666666,2.14731,2.90183,3.736325,4.463775,2.562725,1.9270100000000001,2.8349766666666665,2.57395,2.67615,4.27165,2.375465,4.52883,3.7184683333333335,6.07735,7.6496200000000005,0.7753233333333333,0.8173400000000001,4.06023,6.407855,2.04,3.5468,1.65811,1.65811,3.522275,0.45104,3.571,3.489225,2.75347,3.71495,3.341805,2.58465,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,0.24304333333333333,2.77926,2.84976,3.8358016666666668,3.080906666666667,4.28559,5.727070416666667,2.79969,2.0991133333333334,0.9691766666666667,3.28891,0.73229875,5.3788108333333335,3.2796975,2.116935,0.73229875,2.572275,2.69548,0.91598,3.90492875,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,0.15710533333333335,4.26585,1.6265,4.39325,4.37985,1.7293220000000002,4.617445,4.151335,5.304,4.369641666666666,3.4254800000000003,3.42443,4.2873,1.88182,5.575965,4.04073,0.7416,1.3886,1.2929114285714287,3.098903333333333,3.098903333333333,2.800831666666667,3.707215,3.978455,3.532715,3.71552,2.9372733333333336,2.038536666666667,0.5392857142857143,4.263835,3.066935,2.68562,4.453645,3.351955,3.0486924999999996,4.789415,4.35667,6.3799,4.254105,4.700215,5.65525,4.28783,1.22607,3.074835,5.2738933333333335,32.929666191919196,1.205805,4.04369,2.87319,4.654885,3.94355,5.1787,5.1663,0.42884333333333335,5.1597,4.38206,1.98687,2.23361,3.563835,1.6190525,2.545005,2.419475,1.7392375,2.807205,2.4466733333333335,2.928775,2.68009,0.5928276923076923,3.21358,3.860635,0.3656036842105263,2.4369733333333334,2.78642,3.33622,3.96878,1.786265,4.22394,4.0014,3.347775,3.464035,3.06837,3.996785,3.018195,3.8975,2.16373,5.2738933333333335,3.517795,3.225635,2.9011,1.723132,3.718175,3.571215,6.870398333333334,3.57855,4.70962,6.3477475000000005,5.352636,2.324365,4.422915,5.57876,7.61848,2.4893199999999998,2.57128,4.61102,5.70343,4.132135,3.25471,5.347395,2.7247,1.70836,2.250885,60.26819726178191,5.16605,4.093275,2.57235,0.844832,2.78117,2.8590633333333333,3.27528,0.7393122222222223,4.300515,0.78725,7.589364999999999,1.973074,3.2750533333333336,1.7597,2.818165,2.62794,3.0869866666666668,2.48998,2.3154333333333335,3.3261966666666667,1.6423033333333334,5.083215833333333,3.8086333333333333,1.2745825,2.6670166666666666,1.4351366666666667,1.49025,7.51394,6.0171,3.366725,3.650195,5.21261,1.420157142857143,3.429066666666667,3.43166,1.69184,5.4011,3.65121,3.7844,1.553755,2.8762616666666667,3.4844000000000004,4.14593,5.7853,4.379035,4.43197,2.4232825,3.88483,4.422266666666666,2.9972366666666663,1.377676,4.151375,3.268823333333333,4.27153,5.0445,4.061395,3.714245,4.495165,4.39744,4.296945,4.39475,3.88006,3.1778399999999998,3.7354,4.13943,3.171935,4.12205,3.79444,1.5213125,1.5213125,4.18049,4.929975,4.88299,3.70941,4.656945,3.329493333333333,2.796475,4.603925,5.31345,0.7300636363636364,5.53905,6.4535,5.5483,5.60725,1.005,2.983135,0.977955,0.977955,0.977955,3.75591,3.3316933333333334,2.40132,3.4859000000000004,1.01485,5.0434,5.55345,3.00489,1.6048175,1.97012,3.89024,3.807715,3.759645,3.3303700000000003,6.6956,3.707375,2.59828,4.795875,6.7928,2.55279,4.21204,3.717625,3.27906,5.21025,3.95014,4.96728,5.763,3.11471,3.38728,1.8857466666666667,1.8857466666666667,0.7280954545454545,8.57962,2.14489,5.672,5.5474,4.12947,5.3774,3.88955,2.9812600000000002,4.42654,7.6460275,5.576073333333333,2.4891099999999997,4.354865,0.9407080000000001,3.856115,1.93912,0.8968044444444444,1.2293800000000001,2.532646666666667,2.891106666666667,2.902286666666667,1.027972857142857,2.57218,3.0367466666666663,0.8738566666666666,2.6269466666666665,3.0637000000000003,1.6945720000000002,1.7545600000000001,2.854886666666667,2.94829,2.8053966666666668,2.3969633333333333,1.718686,5.22395,3.958695,3.75957,4.222075,5.15775,3.39193,4.268635,6.5194,5.1257,4.19508,3.83932,9.771045,8.579495000000001,2.9630566666666667,3.61608,1.8170566666666668,3.88253,3.299135,4.69614,1.0356750000000001,3.616365,3.17473,1.5983716666666667,3.805785,2.84776,4.30143,2.893535,3.99256,6.586,7.52949,3.698865,1.4905683333333333,1.4905683333333333,1.4905683333333333,4.619905,1.204235,1.4347375,0.4443433333333333,4.2170075,3.009653333333333,3.53787,0.9787229999999999,1.13897125,2.909485,4.339815,3.806065,16.384856202380952,4.23382,4.62104,5.7543175,2.61361,3.377435,2.81349,0.9245677777777777,1.3320925,3.598815,3.57592,4.25003,4.51916,4.468255,3.7469,2.749798444444445,3.44837,5.29345,0.54719,4.492645,2.3212725,3.68154,4.56046,3.4617,2.2312600000000002,3.9236033333333333,1.7248599999999998,3.62881,5.98625,3.0191466666666664,3.49291,4.1703,3.983805,4.36015,3.90994,3.18199,4.27209,4.694415,4.879495,3.544655,4.25179,3.812775,1.0791328571428571,1.4536075,5.799322166666666,6.09705,3.96961,5.04175,2.43133,2.77164,2.9739799999999996,5.718906666666667,1.8268425,2.259775,2.8658533333333334,2.856783333333333,3.3281066666666668,4.51341,3.05918,4.959325,1.1611675,4.758615,0.9594333333333332,4.223095,3.485225,1.78762,4.38507,0.9578566666666668,4.86093,5.55605,4.823105,3.884095,3.8288133333333336,3.84708,3.0050866666666667,4.861965,5.89245,2.8314635,4.172305,2.50901,2.577495,2.06252,2.745835,3.29171,4.79975,1.0655525,4.728210000000001,1.521605,3.411175,1.64501,1.0655525,0.19714297297297298,3.54545,3.08704,2.30383125,2.03255,2.756235,1.10385,3.988675,3.56104,4.888335,2.664146666666667,6.22095,6.68957,2.7004866666666665,3.2886966666666666,2.66323,0.788817,2.440053333333333,5.9453,4.23998,5.51075,4.73223,2.1237566666666665,1.3921166666666667,3.898645,1.66284,2.1611475,1.675935,2.89655,1.7916275,1.9961575,2.10186,1.998205,1.7292575,1.313772857142857,1.4064225,1.9528425,1.8062875,2.1174925,2.27434,0.527848,1.063258,2.69241,3.1820633333333332,1.969395,1.7939,1.6677,3.24974,2.33174,2.852055,3.486235,6.2463,3.911415,2.89404,4.2138,1.587138970588235,3.6147950000000004,23.39503,4.59189,5.75425,4.126995,2.0460333333333334,3.736665,4.75291,2.21172,5.1586,3.2500633333333333,0.78492625,3.668095,4.39677,3.798145,4.129515,1.5715199999999998,1.9682266666666666,2.303523333333333,2.13126,1.4652142857142858,3.25395,5.0761,4.31095,3.258425,3.911725,4.79337,3.32101,4.613455,1.2039225,3.05751,4.10862,4.746575,1.7998239999999999,3.2583633333333335,1.7675525,1.7675525,3.626665,4.77217,2.9990066666666664,2.93899,3.793585,3.958305,6.534705000000001,4.70645,2.32764,1.3320925,2.74372,4.436355,3.10862,2.5453714285714284,2.5453714285714284,3.16803,5.01535,3.640195,5.055578888888889,2.4735,3.4138735555555555,0.5997122222222222,0.5997122222222222,0.5997122222222222,3.164915,3.849615,3.7897375,5.7342,2.184305,4.529985,4.32898,5.03905,3.130605,5.61015,2.46379,1.3154114285714285,4.047165,3.92872,0.46864,4.266266666666667,4.82541,1.4087416666666668,5.06175,5.02895,4.69551,4.44192,3.813355,2.961085,4.4066,1.712052,4.55969,1.4430249999999998,4.32824,5.8886,1.14322,3.05844,6.863785,3.53115,3.07856,2.1098575,3.612205,5.63735,2.9618,7.34984,4.111175,2.2822666666666667,3.0502966666666667,2.73175,2.3339133333333333,2.75454,1.93464,4.363425,0.57186,2.02772,2.02772,3.17077,3.68351,2.302635,2.888325,4.072395,5.26445,4.224535,1.4602533333333334,4.511444494047619,4.24269,4.6117,3.426885,3.6649683333333334,3.2643969999999998,0.40057133333333333,2.8038857142857143,0.998625,0.40057133333333333,4.347925,0.86956,3.893705,3.962715,6.5068470000000005,2.18494,1.118505,1.123594,2.28441,2.98888,1.5445866666666666,2.526266666666667,3.28923,3.550095,2.18534,2.22236,4.1601,2.87133,4.16535,5.8596,3.478455,5.1786,6.636838333333333,4.75242,3.648355,4.529435,3.84266,4.12708,4.985305,5.27015,5.3642,2.34329,0.9292166666666666,3.51088,3.89107,4.22884,4.146315,4.21552,5.12485,2.5223,2.48167,2.9933333333333336,2.144476666666667,1.9915166666666666,2.9518866666666668,3.0191733333333333,2.252936666666667,3.557975,4.267795,4.147755,5.29525,2.4194366666666665,3.4598999999999998,2.909975,0.7283785714285714,3.886015,3.16173,4.450415,3.0818433333333335,5.14178,3.047545,4.36277,3.82711,0.5534476923076923,0.537035,4.304475,2.786352,3.12664,4.224935,3.70231,1.74196,5.2414,4.037375,2.4505033333333333,2.6231066666666667,2.1729475,2.0834154166666665,3.4684666666666666,2.9854066666666665,3.0184166666666665,3.0083466666666667,3.568,2.7048,2.970413333333333,3.4802,4.3278075000000005,0.546311875,0.546311875,0.546311875,3.1003382083333335,3.5088333333333335,3.723133333333333,2.5720066666666668,2.8232433333333335,1.1078775,2.8530866666666665,2.91901,1.6339,2.699123333333333,2.4631933333333333,0.9761211111111111,2.809753333333333,4.7722,9.817946833333334,1.4685138333333334,0.6173029999999999,3.79242,0.6173029999999999,0.6173029999999999,0.6173029999999999,0.6173029999999999,2.1960375,3.913392,3.98687,5.0,5.9063,2.8373233333333334,2.6920266666666666,3.041765,3.2366200000000003,4.609635,1.00357,2.2158333333333333,3.0870533333333334,2.5013033333333334,2.8967899999999998,3.31855,2.2170033333333334,2.646045,1.1828444444444444,5.3673,2.436235,3.194485,0.8967875,0.662748,0.662748,0.9657670434782609,1.8625545434782609,0.9657670434782609,0.9657670434782609,0.35070304347826087,0.35070304347826087,0.9657670434782609,1.47016,2.40489,3.04222,2.9073966666666666,2.66469,2.6286166666666664,3.1848266666666665,2.8414300000000003,4.523805,3.637545,1.913945,2.3057233333333333,1.7587775,0.1838657768777614,0.1838657768777614,0.1838657768777614,0.1838657768777614,2.5545266666666664,2.47578,0.914504,5.23545,0.7394618181818182,1.688418,4.630790833333333,5.0959,4.12019,3.016555,4.398135,3.26272,1.79791,1.2234125,3.907055,4.5586,6.58045,2.329475,1.4226766666666668,2.0112799999999997,2.903786666666667,1.48888,2.7385333333333333,2.811776666666667,3.1655800000000003,4.33207,3.756465,3.0545,4.726685,2.3934466666666667,3.985765,5.06285,3.61744,4.173905,4.738935,5.329806666666666,4.548415833333333,2.883391714285714,4.89271,4.17317,6.5135,4.432035,4.537,2.20056,3.143715,4.22332,4.86548,4.53769,3.970735,3.8429,4.03845,3.91248,2.4930166666666667,5.27025,3.66486,7.6589925,6.0641,5.79325,4.840445,1.4228757142857142,0.916654,0.6144192307692308,1.747392,4.815785,5.44765,4.013885,1.550722,3.774985,3.202075,4.91276,5.14695,6.158685,4.099995,3.284145,1.591138,5.4576325,4.099445,3.195965,1.7576725,0.97861875,3.880515,3.373515,3.7908325,3.72549,2.10515,4.340245,1.7458233333333333,3.01435,2.533105,4.32678,5.7143,4.817745,2.26175,1.542285,5.6441,2.9487566666666667,8.77004,2.8573,5.22515,5.9673,4.5939,5.26925,3.54643,4.93888,2.02853,3.792765,4.869013,2.4244475,4.24935,4.508005,7.1065249999999995,4.93579,2.9857266666666664,3.97675,4.026835,2.87133,3.527175,5.19125,5.5848,2.385895,2.8731666666666666,3.2284666666666664,2.385455,2.535215,4.370665,5.848,5.0404,4.56343,4.7276,4.046495,4.57624,0.6356,3.060373333333333,1.150167142857143,30.566932733954452,2.78654,4.514875,3.348925,4.35466,1.548824,2.5023166666666667,3.121300238095238,1.5786902380952381,1.5786902380952381,1.5786902380952381,1.5786902380952381,1.54261,3.61004,0.32063444444444444,7.741546111111111,0.32063444444444444,4.21874,4.84164,2.1266625,5.2842,2.839075,4.0603126666666665,2.371986666666667,2.5300233333333333,2.77509,2.2955200000000002,0.6163023076923076,2.65939,0.7245316666666667,3.280056666666667,2.081726666666667,2.448972,1.2191716666666668,2.448972,6.087,7.95076,4.56581,4.428855,5.74345,6.20405,7.367841666666667,3.02644,1.4429225,1.4429225,2.3486433333333334,4.96811,3.65362,4.384105,6.071645,3.825695,2.604035,3.85052,3.547345,3.5693,2.30264,0.736792,2.2661,3.53728,4.118945,5.233342222222222,2.0659275,3.62279,1.12639,3.25633,1.2187839999999999,3.2705333333333333,2.94169,3.363766666666667,3.2807633333333333,2.807916666666667,4.946625,0.6911715384615384,3.54939,3.628,2.6893466666666668,2.428706666666667,4.1528075,3.377133333333333,2.02034,4.44750625,3.65664,5.13905,3.955955,3.73383,5.62155,4.954195,2.117316666666667,5.6489,2.373015333333333,1.7434566666666667,3.1295,2.3289233333333335,2.6466333333333334,2.535235,1.8624466666666668,3.3591075,4.159,3.184495,2.377819666666667,2.377819666666667,2.56969,3.894415,4.21315,0.5833481818181818,3.370295,3.17213,8.95128,0.8218818181818182,4.495715,3.06641,5.33355,3.441855,3.852395,2.33053,3.773915,3.03864,5.2497,2.6330358333333335,1.091275,3.84014,2.678433333333333,3.83182,2.56429,3.696725,3.83158,4.02266,5.015187,3.318805,2.05409,5.3035,2.55902,4.43231,4.813625,4.48835,4.5052,3.994835,2.987935,2.1829300000000003,2.6921666666666666,2.545733333333333,2.71025,3.10448,2.689437619047619,4.701228333333333,2.7223900000000003,2.30803,6.479020833333333,4.84398625,3.6977525,3.0546233333333332,3.6578,4.13503,3.598325,1.93095,3.5402,4.707795,4.702475,1.3277066666666666,3.776285,2.6531033333333336,6.647119999999999,4.783355,8.21524,4.187835,4.20061,2.134315,4.226565,5.713005000000001,8.11709,3.41183,5.25858,3.56818,3.43317,4.015435,1.7357140000000002,4.214222,1.403265,3.58744,4.756485,3.4019666666666666,0.8220000000000001,9.009177333333334,1.1384777777777777,1.92564,2.5100433333333334,1.87171,3.3618333333333332,1.3894316666666666,3.6875,3.59477,2.3263833333333332,4.314805,1.1217233333333332,3.598585,1.4097566666666665,2.7715593333333333,3.956615,5.0129,1.5715375,5.890964583333334,2.236772666666667,8.18991,4.522315,2.743995,4.092055,3.33655,1.1737866666666665,7.70682,3.06851,3.4929,2.522525,4.18921,2.14221,3.017585,2.229155,4.158805,1.349415,5.87865,2.789385,4.253525,0.8266730000000001,2.037017333333333,3.946415,4.92577,5.0987975,1.242154,1.242154,5.92325,3.653155,6.16115,3.898345,3.574355,8.825965,4.391285,5.4929,4.07787,2.46938,2.1802723888888886,0.3986635,0.20034,0.7192022222222222,1.0624066666666665,0.6168699999999999,0.20034,1.432491,0.5188622222222222,1.4610701666666666,2.1516932222222223,1.91438,2.2232225,2.233636666666667,4.94852,6.2913533333333325,4.480805,4.901865,4.222775,4.988185,1.3128566666666666,4.92058,3.98072,5.58625,4.920355,4.7739,5.64405,5.5379,5.48985,1.1679950000000001,1.1657771428571428,1.827908,5.934958,1.279398,5.16485,4.60412,6.646326666666667,4.85813,5.3355,4.43479,4.622225,2.417565,5.12535,5.1553,6.44092,4.88314,5.8560324999999995,5.69175,3.66522625,4.264145,3.626666666666667,0.9821,3.5452666666666666,4.337,1.0848975,3.672266666666667,4.61617,4.56362,4.92672,2.439175,3.236275,2.8279599999999996,4.42494,2.07982,3.90139,1.2845199999999999,3.09739,3.76661,3.66908,4.496015,3.3585425000000004,0.5507425,5.9908,1.00222875,3.647195,2.7318533333333335,3.8355,2.03793,3.80829,3.7905746153846156,3.0903566666666666,4.40428,15.496762761904762,5.224766666666667,2.1044725,8.49244,1.5756725,3.898305,2.90673,2.93407,1.8153766666666666,0.2134804347826087,2.841283333333333,4.52508,1.7350619999999999,2.2660833333333334,3.2178233333333335,1.9109575,2.2945966666666666,1.4951857142857143,3.422005,4.732945,4.763075,2.98794,0.4570171428571429,2.48305,4.520365,2.82416,3.69675,4.29693,4.18418,5.5997,0.47080058823529414,2.54238,2.54238,5.1424,4.973445,4.856235,2.630275,3.311913333333333,2.8396500000000002,5.36675,3.55137,5.444685555555555,4.588335,4.369055,4.61211,2.5544,1.813984,4.36969,3.85213,3.991965,3.877005,1.78945,4.759895,4.41468,3.908365,4.457605,3.88496,3.847875,0.6132906666666667,2.90378,0.5419233333333333,3.0515566666666665,3.109015,4.041495,17.304200476190477,3.37667,3.90599,2.23808,0.91887,2.134376666666667,2.6015566666666667,1.56007,2.42468,2.533635,4.55419,2.29858,3.930875,3.51197,2.1036075,3.99333,2.863466666666667,4.595635,4.904375,5.4696,1.65292,1.798665,2.28495,5.1787,4.832555,1.0998444444444444,5.08055,3.54309,5.54325,4.539325,1.8423100000000001,4.550265,3.46187,3.335065,3.25565,3.86647,3.0446000000000004,0.66953375,7.552848333333333,1.430678,0.20113722222222222,0.20113722222222222,0.20113722222222222,4.77111,3.847365,2.7583933333333337,4.218885,3.058575,4.367735,4.33415,3.8304733333333334,8.302493333333333,4.21813,6.675908333333333,0.84553,0.733615,2.2810975,4.376205,4.23412,2.32586,5.35295,5.30855,3.481585,3.54515,4.25207,2.13532,5.0335,4.4616685,2.3652666666666664,2.784993333333333,3.069126666666667,2.761305,6.02805,3.88206,0.6265957142857143,3.55883,3.2158,4.138375,4.89231,4.989315,2.81115,5.37015,3.53431,13.515934999999999,4.50708,6.837077083333333,2.448446666666667,6.323043999999999,4.059465,3.739375,1.90244,2.3117183333333333,9.53538,2.272623333333333,4.202166666666667,4.1607666666666665,3.7806333333333337,3.3548666666666667,2.814026666666667,2.10544,2.2156,2.956103333333333,1.77653,3.8242666666666665,2.3795533333333334,2.66684,3.22139,3.4124,2.47612,2.47612,2.467346666666667,3.4901666666666666,3.24902,2.1125233333333333,3.1105466666666666,4.2177999999999995,2.6755133333333334,2.79589,3.7868,2.17315,1.983815,3.8569,2.8248766666666665,1.504956,3.826866666666667,2.200196666666667,2.4074866666666668,2.8895766666666667,2.17975,3.3580666666666663,5.802691666666667,2.38224,3.7033666666666663,1.8933666666666669,10.473037,1.9795666666666667,1.97535,2.10272,0.9732322222222223,1.622412,4.44919,2.816774,2.816774,1.607336,1.487205,3.472986666666667,3.6186516666666666,2.205506666666667,1.42913,1.69222,4.5691706666666665,3.6587,4.0446333333333335,8.30893,2.9425071428571425,2.583763333333333,3.2932101863354033,4.181966666666667,1.983815,3.2391799999999997,2.68566,3.4906,3.3440691666666664,0.9220225,3.2581895,2.72273,2.917256666666667,3.987685,3.108696666666667,0.6787981818181819,1.832699761904762,5.01345,2.4235344999999997,3.3287833333333334,1.5420083333333334,1.5420083333333334,2.0914675,3.878781666666667,0.904917,2.2541875,4.47397,4.47397,0.6295952380952381,5.497242,3.324765,3.769345,4.61861,1.210942857142857,3.295806666666667,3.5288,4.978118333333333,5.480251333333333,2.29226,0.628094,2.4861933333333335,2.5634833333333336,2.983696,2.2274266666666667,2.347933333333333,2.7696066666666668,2.3460525,2.5204133333333334,0.7457427272727273,4.697685,4.816494571428572,1.3160833333333333,1.7750285714285714,5.38075,2.12342,1.69956,3.952265,1.451708,3.490925,2.592125,3.4910333333333337,8.988825,3.9674791666666667,4.43172,4.95622,2.3946569090909087,0.786151,1.8106380000000002,6.967516666666667,1.8567166666666666,4.204085,3.8783,3.49547,21.033926583333333,3.2100666666666666,1.3917599999999999,1.01797125,3.115553333333333,1.4458666666666666,4.103698,5.0808,3.419274,3.363933333333333,1.7334566666666669,1.4369183333333335,2.7476299999999996,0.564435,3.473966666666667,3.733966666666667,3.1012299999999997,2.5298833333333333,2.4440566666666665,2.8234333333333335,1.9578233333333335,2.7324300000000004,1.498362,3.759133333333333,1.4103933333333334,3.902425,3.902215,2.70186,5.29495,3.225905,4.03302,4.833095,4.329785,3.0716866666666665,2.65945,2.302636666666667,1.0337242857142857,1.0337242857142857,1.0337242857142857,2.3038375,3.4593000000000003,2.55822,2.4719966666666666,2.2154599999999998,1.96638,3.884825,4.84249,3.766225,6.799185,3.049315,2.385545,1.9461525,0.9284416666666666,2.46975,3.946645,2.5242299999999998,2.7757566666666666,2.4690166666666666,2.452033333333333,2.6350233333333333,2.7528566666666667,2.6569966666666667,2.62786,2.2415866666666666,3.3590666666666666,2.104223333333333,2.1763775,1.65038,1.5828475,3.0197633333333336,3.023953333333333,1.978605,4.01667,4.937335,2.842693333333333,2.4100526923076924,5.1514516666666665,3.892605,4.499545,5.54825,4.224155,4.419375,5.98712,1.2421225,4.220975,2.77592,5.1444,4.97543,4.028895,3.269555,2.12733,7.62578,1.98248,0.8094741666666666,7.37066,5.75624,5.352294523809523,4.17122,2.8277865,1.7037225,4.91075,3.98785,4.164045,4.93621,2.46532,3.851595,4.138925,1.7587775,3.668325,2.876575,1.3309283333333333,4.52255,0.5886411764705882,4.086946666666666,3.171845,4.61256,3.17349,1.69367,3.227665,1.991195,1.4486,2.766996666666667,3.24063,3.1750833333333333,7.057063717948718,1.3620325,6.333317916666667,9.17352,5.97149,3.003765,1.3488442857142857,2.9644833333333334,1.3488442857142857,2.9375699999999996,2.0988633333333335,0.3383264705882353,1.1906577205882352,0.3383264705882353,0.3383264705882353,0.3383264705882353,1.1906577205882352,1.1906577205882352,0.3383264705882353,0.85233125,3.843695,3.60828,3.298935,3.43333,3.530315,4.18043,2.6409993333333333,1.68584,6.5596033333333335,3.0641499999999997,4.08067,2.5494600000000003,1.052190909090909,1.1487,4.435925,3.56242,1.138677777777778,1.432504,0.7129881818181818,2.8764115670995674,4.207295,4.944085,3.338366666666667,5.359875833333334,0.5337638461538462,3.94483,2.54758875,2.8312833333333334,2.4833666666666665,3.4467666666666665,2.52947,2.788733333333333,2.66701,3.054375,3.6935,4.647225,4.557,2.0949999999999998,4.904625,4.207765,2.8836,3.96728,3.393365,0.35003266666666666,4.86372,3.566465,3.00522,2.804806,4.465525,3.896295,1.93954,3.324415,3.948475,8.555765000000001,5.00235,5.38085,4.739865,4.00807,0.97835,2.19016,2.212205,1.481445,1.8374166666666667,4.275805,5.3689,4.141895,4.77625,3.3303700000000003,2.606275,0.9469433333333334,4.04813,1.2612400000000001,1.1836533333333332,3.408895,3.735385,4.60457,1.282325,2.5831500000000003,8.575073333333334,3.247716666666667,2.9618358333333337,0.8690825,3.54022,11.8382,3.527435,4.1566,3.314735,2.838905,4.61664,5.0863,2.03912,4.087505,0.5246715384615385,4.69897,2.210865,1.65856,1.65856,3.5353999999999997,3.98473,1.46796,3.768805,1.213037142857143,3.508985,2.7550325,3.3825333333333334,4.98065,3.73777,3.9711626666666664,2.602975,2.930482666666667,2.930482666666667,10.623,0.681454,2.973315,2.94666,2.1433075,1.99543,0.8968371428571429,1.4933675,1.0179314285714285,2.13809,4.393255,2.501945,4.2321575,1.9830833333333333,4.33899,3.823315,1.7413999999999998,2.0762675,1.0988499999999999,6.172338833333334,1.983375,2.1746,1.673906,1.743184,1.01797125,2.2499112500000003,3.547275,2.018686666666667,3.1174133333333334,2.5978933333333334,2.7126366666666666,1.8747,3.1026233333333333,2.584416666666667,1.7087700000000001,1.8440466666666666,2.493203333333333,2.4725800000000002,2.3931066666666667,1.1682733333333333,2.53807,2.0424933333333333,2.0838566666666667,0.3230942105263158,0.42395166666666667,2.39065,2.21008,3.108065,3.0715433333333335,2.847435,4.763455,5.47655,4.48537,4.63773,4.28213,3.988985,2.85545,3.85999,0.71641,0.07328386363636363,6.94205,0.07328386363636363,3.690405,3.03006,5.2568,3.690625,6.23865,4.51876,2.0211033333333335,2.4659066666666667,1.0073466666666666,5.0533,6.39015,3.0580166666666666,5.35255,1.82225,3.343935,1.9386480434782607,3.0143566666666666,3.1723933333333334,4.07979,4.976683333333334,3.37495,2.293833333333333,2.293833333333333,4.13069,7.71537,3.59979,2.102673333333333,2.3875433333333334,4.01084,2.92558,4.93204,3.282145,0.9257544444444444,4.181605,2.24378,2.55289,4.302085,1.0930366666666667,2.4200166666666667,3.99907,3.229035,4.43956,3.010675,2.791715,3.84934,3.94635,4.171825,4.906815,4.112185,3.2125619444444444,3.780505,2.8025233333333333,2.4390300000000003,2.34964,3.9471000000000003,4.261375,2.8805,4.860955833333334,3.96421,3.644715,5.21465,4.328685,3.412855,1.4906380000000001,1.4006025,4.204115,3.3834999999999997,1.5983166666666666,2.8087766666666667,3.34755,2.9619999999999997,4.091247777777777,2.9055366666666664,2.3726691666666664,12.67467825,2.02643,1.7747579999999998,4.46255,0.99651,3.1806633333333334,3.561125,4.683715,3.03271,1.2229,2.2453499999999997,2.664146666666667,1.47597,4.29737,0.959525,0.959525,3.7107566666666667,1.6322133333333333,2.078543333333333,1.77134,3.085075,5.63085,2.11416,2.587195,3.3560499999999998,2.7509866666666665,2.800876666666667,2.03138,6.38175,5.55025,3.76081,0.6518692307692308,3.711635,3.44189,1.0518272727272728,5.50965,3.2863966666666666,8.436596666666667,4.837045,4.58573,3.67993,1.471875,3.347165,4.707165,4.256145,3.88788,3.47833,4.281575,3.289075,3.5201333333333333,3.5201333333333333,4.155165,2.7467508333333335,3.82941,1.631885,5.365221666666667,5.064281666666666,1.4087416666666668,4.56948,1.01355,5.6115,3.968565,5.01835,4.64222,3.84042,2.63594,2.506825,4.37811,4.18203,5.01235,3.86377,1.8993275,1.431274,4.330735,2.2033066666666667,5.3245,3.3406,3.65081,6.813615,3.83269,4.18633,5.0042,3.69941,4.52125,8.15249,4.02963,2.93785,8.55933,3.62369,0.5708814285714287,2.058561343101343,4.29129,0.5995240000000001,4.68639,4.040205,4.696155,4.42507,3.306105,3.611775,4.510675,4.67843,2.589125,0.6913628571428572,4.54562,4.344025,4.446065,4.268085,2.7945966666666666,4.3237,3.59102,0.613624,3.352905,3.92692,2.5158,3.206246666666667,3.87331,2.1193616666666664,5.58855,5.31255,3.64725,0.86195,3.1511266666666664,5.538296666666667,5.538296666666667,8.370466666666667,2.11394,0.91808,0.91808,23.207643333333333,2.577925,7.534295,0.3500775,1.4337900000000001,2.8902533333333333,0.9175090000000001,3.805505,3.811115,1.9115825,1.9115825,3.74962,4.92306,3.503555,2.879115833333333,2.879115833333333,3.63475,4.08415,3.926455,3.4949999999999997,2.0562866666666664,2.617495833333334,3.949719,2.02698,3.63975,2.769683333333333,2.775835714285714,2.775835714285714,3.24536,0.8625355555555555,2.5651533333333334,1.59225,3.2214166666666664,2.8313166666666665,2.64207,2.31001,4.27791,2.46327,2.76397,5.000163,1.248846,2.257915,3.148355,2.6206333333333336,4.20272,5.739970603174604,1.2878333333333334,3.6367,2.40245,5.1696,6.77341,1.512085,4.84503,4.853573333333333,2.9101808571428567,4.5684,1.0282557142857143,1.7998239999999999,3.03779,3.9154076190476195,1.2660883333333333,2.354165,1.74363,1.761748,2.407355,3.589676,5.1944935,1.129055,1.3018814285714286,2.83323,12.467685,4.413978333333333,2.7408,0.9689571428571429,2.455390238095238,0.9164885714285714,3.1469133333333335,4.357146666666666,5.20435,3.4662,5.79295,1.35588,3.6461666666666663,4.01445,2.7973466666666664,3.7941455555555557,1.8020433333333334,1.0981922222222222,2.5389500000000003,2.5503066666666667,6.603403333333333,2.714166,2.4243633333333334,0.741468,4.665533333333333,3.5856666666666666,1.18679,5.717380833333333,1.9388475,2.235043333333333,5.30275,1.2159555555555555,2.7954633333333336,0.9774,2.9342400000000004,4.384395,2.8880266666666667,2.84531,2.279053333333333,2.3218166666666664,4.32372,4.64626,5.03715,1.7477625,4.59457,3.82571,4.202353333333333,3.31778,2.652623333333333,3.9747286666666666,0.9966419999999999,2.732412857142857,4.440855,2.69535,4.007132916666667,1.3534125,2.8054566666666667,1.943336,1.943336,6.932548333333333,3.0861133333333335,5.401838333333333,3.3047933333333335,1.7069466666666668,2.595255238095238,4.40676,5.6715333333333335,8.252908333333334,4.527417333333333,2.66856275,1.4546566666666667,1.8526836666666666,4.1511733333333325,3.678145,1.475402,1.98658,2.363371785714286,1.211735,3.0199933333333333,18.471939,2.8752166666666668,2.8419366666666668,2.667783333333333,2.91703,2.2392333333333334,1.9432366666666667,2.9466866666666665,3.5752,2.4184266666666665,2.6427566666666666,5.560694,2.3764133333333333,4.929811714285714,2.8517397142857144,2.862991714285714,1.4453666666666667,3.6455911111111106,2.1079425,3.98736,4.969115,3.78821,3.001101666666667,3.1859066666666664,2.2089633333333336,3.320883333333333,3.523766666666667,3.5439666666666665,3.2624099999999996,0.82681,5.2423,2.417635,3.0011033333333335,2.7447355555555553,1.8515425,2.0975691666666667,2.0975691666666667,3.2245874999999997,1.8709258333333332,4.647765,4.096645,3.35158,4.14195,4.389515,4.479365,4.479365,3.8102,2.88219,4.19502,2.770255,1.667182,2.2683566666666666,4.420255,3.910505,2.67625,3.25379,5.3994,3.533333333333333,6.296745797619048,3.163755,0.76334,0.76334,3.1617,4.789855,3.885465,3.430168,2.4503033333333333,1.9284966666666667,1.5673966666666665,2.8540166666666664,5.757477,1.3834166666666665,4.025195,3.6879666666666666,4.07579,5.12655,4.93944,4.711093791666666,3.1721066666666666,2.2759775,4.049005,3.944135,2.0922575,1.1108959999999999,3.78556,2.756225,6.052791666666667,3.2965666666666666,2.737545,3.361775,3.73933,3.61571,4.474045,2.88798,4.60082,3.711515,4.33643,3.789945,3.570195,3.80715,3.93319,2.8532333333333333,4.14988,3.0462,5.08055,0.6273244444444445,2.37354,1.7323375,1.937385,1.86957,2.6977100000000003,2.6374666666666666,1.6728033333333334,4.40332,6.0743,1.8926933333333331,3.789785,4.35391,2.4022875,5.9275850000000005,4.1008708333333335,4.17878,4.905415,7.153238333333333,2.0604366666666665,2.72297,1.7612666666666668,2.624006666666667,1.850105,1.823185,4.06229,3.72137,5.45755,0.9920277777777778,3.086865,4.11379,2.2502875,5.05385,3.725145,2.59383,3.7701333333333333,3.29415,2.067945,1.8272274999999998,2.630925,3.212375,3.3809,2.0540275,2.4892457142857145,2.4892457142857145,3.5313,3.461075,20.082436607142856,1.00522,5.29246,1.74286,1.9412,3.460615,3.88621,1.7724425,3.793255,4.64973,1.3168783333333334,1.3168783333333334,1.3223166666666668,1.76915,2.247123333333333,3.1793266666666664,4.494941666666666,3.031775,3.4628666666666668,0.45970578947368423,3.343545789473684,2.11587,2.362645,4.6588125,3.43114,3.98313,3.7334,4.43212,4.388865,2.108935,3.436865,5.70343,2.3463,3.64379,5.1594,2.432795,4.845335,6.02385,1.3515957142857142,2.049,3.3897333333333335,0.6824328571428572,3.1000833333333335,3.154995,4.771005,5.05375,2.8789002777777775,7.637333333333333,2.907633333333333,2.6125433333333334,0.42384,4.43379,5.244920952380952,2.957575238095238,5.57455,3.86779,2.538159777777778,1.723914,5.17946875,4.264045,4.091355,2.790475,1.923405,3.351945,4.164499999999999,2.9419166666666663,1.968575,4.067421666666667,5.809705,2.784855,4.00477,3.62126,4.00295,1.4898285714285715,1.4898285714285715,3.1795033333333333,2.845053333333333,4.419735,4.66853,6.4955,3.34033,2.751075,2.1795375,1.4267466666666666,1.309637142857143,4.779655,5.378415,4.9661,6.0927,4.26336,6.659615,3.39319,2.806563333333333,3.8529220000000004,2.0587666666666666,3.03576125,1.5732620000000002,4.44568,2.381816666666667,3.827535,4.989825,4.17983,2.7430033333333337,2.9487566666666667,1.3247885714285714,2.353175,3.6689666666666665,1.7851675,0.576415625,3.0720533333333333,2.5485866666666666,2.252936666666667,2.0143366666666664,1.8077075,1.506012,0.6705154545454546,0.6705154545454546,3.5001333333333338,1.5187,2.4639175,3.089315,5.18785,4.28975,5.81765,4.119455,4.231585,2.1452356666666663,1.28602,2.625695,4.965815,0.99188,3.21556,2.955335,2.99798,2.37057,4.05535,2.715965,2.05742,1.0389771428571428,2.90046,9.216705000000001,3.162765,1.472186607142857,4.07557,2.973305,2.74649,3.68074,3.029995,1.8289433333333334,1.0998275,3.878625,2.580680833333333,2.26316,1.7141633333333333,2.384,2.28312,2.484793333333333,2.83885375,1.3228333333333333,1.86639,1.084905,6.17484,5.6649,5.73175,4.07814,4.25437,2.954413333333333,1.6325751282051284,4.66119,5.0533,2.832005,5.04495,2.133605,4.608285,0.9516922222222222,4.092115,3.79115,1.9182325,8.03095,3.675445,1.87957,1.9030025,1.8223125,2.5083,3.2891,1.1680513636363639,2.6329866666666666,5.73355,3.321485,3.984555,5.69955,5.363,5.5227,0.82993875,4.07008,4.367125,4.16574,4.78341,4.079141666666667,4.54447,4.71319,2.821245,1.6650083333333334,1.6650083333333334,4.98809,5.349748333333333,2.734805,2.632426666666667,3.902455,4.4425,1.4938179999999999,4.26615,5.07535,3.553185,4.04541,2.9743666666666666,2.786986666666667,4.954435,2.3323956249999998,10.453010968820395,1.98196,0.78392625,2.6119566666666665,1.71558,2.55075,2.09979,1.835228,2.6362366666666666,4.80609,5.38585,2.82357,1.5634566666666665,6.0741716666666665,1.5183,2.89744,0.5088809523809524,4.087983333333334,5.5536,3.324175,4.429265,11.493385,5.1213,2.9205366666666666,3.3358333333333334,4.213095,2.9998233333333335,4.468145,0.80572125,1.0264416666666667,0.7881218181818181,5.6642,4.120925,1.72535,4.641379333333333,4.399635,6.6475,4.85679,4.786265,4.48046,6.11305,4.041065,5.17685,2.892085,1.193806,3.69995,5.49255,2.899125,4.099815,2.74554,2.15766,1.2519475,5.06855,4.00204,1.2513625,3.404033333333333,2.8117733333333335,2.6401066666666666,2.5164233333333335,2.4795133333333332,3.1788366666666668,0.7207972727272728,2.378406666666667,2.710983333333333,2.65629,1.9822866666666668,2.9159,2.25313,1.4269733333333334,2.263885,1.88657,2.0537775,3.3328333333333333,2.56644,0.598649,2.8535266666666668,3.16706,4.599565,2.3736866666666665,3.57272,5.19125,5.0836,3.48431,3.80657,1.2929114285714287,3.30833,2.4626683333333332,4.263866666666667,2.63610625,4.153395,5.156,4.698565,4.14076,4.1285,1.127672,1.127672,2.2208886538461536,1.6104125,4.090105,2.6685765,2.6685765,4.90683,6.17085,3.053525,1.2007233333333334,1.5675142857142856,5.75195,3.656475,2.2372566666666667,3.282695,2.923205,3.4838,2.2372566666666667,4.586955,3.10004,2.882785833333333,3.062395,2.007935,3.201925,6.51585,3.13329,3.278055,4.217605,6.4652,6.53805,6.210925,6.210925,5.1913,4.76601,0.51033,4.815845,4.12884,3.015945,2.77228,8.048975,2.6495666666666664,3.708645,3.82541,2.3607400000000003,4.491325,2.12651,3.4924275000000002,3.131213333333333,3.4133999999999998,2.5385966666666664,1.3505420000000001,1.3505420000000001,3.74714,3.77291,4.695385,1.63715,1.558742,46.72539196969697,2.5797266666666667,0.8020636363636363,2.9805966666666666,1.7180625,3.1267766666666668,2.6763933333333334,3.0555800000000004,3.209515,2.6385666666666667,1.98751,0.9882625,4.232415,3.35079,3.601965,3.901725,5.13655,4.96079,5.0439,5.25305,5.12845,4.69102,5.40585,6.213875,4.89706,5.3066,2.115685,3.749075,6.6219,5.07165,3.052765,4.06209,3.42529,2.52273,3.8909,4.46052,2.938556666666667,3.8498666666666668,1.666554,4.212195,1.374846,3.39935,3.95861,3.73222,6.37985,4.012275,1.9150175,3.84788,3.867275,4.166245,0.8892625,2.93419,2.800355,4.466897619047619,1.1928525,4.472775,1.308405,5.64975,0.7063511111111112,3.806662666666667,9.783925,4.350335,3.373715,3.126235,1.8877666666666666,4.154275,5.348,3.0317066666666665,4.421255,9.023611666666667,3.5166,1.9440266666666668,2.8432366666666664,2.7246433333333333,2.7398066666666665,2.7724090833333332,2.7047566666666665,2.6015833333333336,3.01888,2.6977533333333334,3.04822,3.53048,2.3525133333333335,1.6647299999999998,4.831884666666667,4.053933333333333,2.59636,4.8968066666666665,2.7264233333333334,0.9727075,2.04485,2.9367066666666664,5.174472857142858,2.9422,1.9867455555555555,1.9867455555555555,1.6235425,1.442025,2.21744,1.9591699999999999,5.5684325,4.414045,2.0290425,3.0414366666666663,3.6098666666666666,2.076875,0.6386733333333333,2.6078633333333334,1.9637275,0.5490376923076923,4.03967,2.51495,2.531,3.72319,3.567133833333333,2.445396666666667,1.6406599999999998,1.132125,2.196995,3.61404,3.783565,4.12821,2.850186666666667,3.974515,3.766115,1.1427727272727273,9.13617,2.901295,3.374515,1.2852125,2.8803133333333335,2.39626,2.39626,2.39626,5.00155,5.2953,1.575795,4.9223,1.4511720000000001,5.225216666666666,1.457986,3.939865,4.336975,4.15427,4.95594,4.282515,1.955615,8.415564999999999,3.596715,4.849345,3.623835,4.2268,3.2757199999999997,3.0976433333333335,3.849975,2.5163866666666665,4.534772142857143,4.399101666666667,1.6083025,4.039615,1.6083025,3.48146,4.523868333333334,5.02225,4.523868333333334,1.9046566666666667,5.56905,4.48339,4.284695,2.5599266666666667,2.744956666666667,4.10458,3.251925,5.16345,0.49463785714285713,2.9076233333333334,2.952446666666667,4.7677175,4.58501,2.31476,4.7505,6.14256,3.302875,2.63736,2.857895,2.16192,3.761355,3.91912,4.582415,2.58815,3.793545,0.8613709999999999,5.69235,3.217975,4.16207,2.2241666666666666,3.1251833333333336,2.2906733333333333,2.78077,2.8266333333333336,2.7977399999999997,2.768005,2.56795,2.56795,4.214470833333333,2.836015,4.72045,11.3903475,0.9406844444444444,4.23292,2.50318,2.43358,2.6817666666666664,1.4347375,7.4274268333333335,3.3873333333333338,3.551205,3.5684775,2.2314233333333333,3.8287333333333335,4.022339583333333,1.81627,0.43055166666666667,1.42671,1.5113375,4.649465,3.022425,3.390495,3.7493775000000005,3.4552300000000002,2.2533000000000003,5.21435,4.4435,3.910955,4.659305,2.196465,3.64924,2.6212066666666667,5.469636666666666,3.30692,5.1168,4.066175,4.05582,4.25825,2.12601,3.92297,3.58625,3.1313066666666667,3.495005,2.910505,3.28383,3.608055,4.44468,2.58801,4.328085,1.3536299999999999,3.658915,2.927585,4.08185,4.193705,3.77653,4.897615,2.581015,4.1501,5.1521,4.145075,3.1904466666666664,2.177995,3.048165,2.53088,0.929075,4.45268,2.089195,3.5802,2.856275,4.09399,3.49079,2.96159,3.039475,4.00189,4.600328666666667,3.946655,2.95242,1.67954,3.412935,2.410275,0.8321244444444444,3.83456,8.803485,3.502425,3.68882,3.695595,4.901955,3.786725,2.300535,4.136895,3.968195,3.299245,3.40522,3.802855,0.66651625,1.2581414285714287,6.3690500000000005,1.782605,2.749265,4.762316,2.439175,2.317435,2.75724,7.27008,2.72688,3.92679,3.871815,0.7998933333333333,3.51664,2.65451,3.904365,3.59252,6.189558333333333,0.684832,3.41066,9.91294,3.29724,1.0815755555555555,4.953690416666667,4.69065,5.17375,3.98996,4.45703,3.272885,2.56319,7.08278,0.778879,3.566865,4.052885,3.395595,3.986425,2.32737,4.26416,1.7039666666666669,3.94368,3.82516,3.993735,1.681255,4.50399,4.546685,2.31303,2.241165,1.97085,1.18679,4.17982,3.419274,1.266194,7.630800000000001,5.88405,4.49716,3.90335,3.551655,4.38085,1.4419428571428572,4.173875,4.02426,5.18075,3.863615,2.5387866666666667,6.4474235042735035,0.9172125,0.9172125,2.6069333333333335,0.9557542857142857,4.250775,3.18004,1.034175,1.7888666666666666,0.417025,6.179857500000001,1.03352,2.763965,3.620855,4.055105,3.628035,4.15501,5.42995,5.7474225,3.16057,3.272255,2.689195,3.709895,4.232665,4.226255,4.072095,3.602435,5.94765,4.31207,4.373755,5.889138,3.72068,3.2374725,2.264195,3.2374725,7.048826,40.62847141125541,3.77415,3.618895,2.94557,4.02175,4.339455,3.450435,3.585735,3.777305,4.48073,4.056335,1.5786683333333331,4.409155,2.7229,4.510225,5.16365,4.720335,2.49524,4.41676,3.995355,3.272085,1.445566,0.6392692307692307,1.7188919999999999,3.6039999999999996,2.840726666666667,1.2922875,2.8189266666666666,2.6224366666666667,2.5979366666666666,3.7416666666666667,2.944013333333333,1.340128,2.67145,3.7531666666666665,1.8800867245817248,2.86405,3.2211000000000003,2.752876666666667,2.6208466666666665,3.4384,1.1875333333333333,3.611435,4.120485,1.2717333333333334,1.2717333333333334,1.2717333333333334,1.2717333333333334,2.914647575757576,2.150916666666667,2.567725,3.273185,5.0501,4.82484,3.877485,4.285075,5.4769,4.588385,2.388535,5.9188,3.923565,3.078075,3.595285,2.90497,4.051915,4.022655,0.6888692307692307,1.489342857142857,1.6210433333333334,4.181255,3.622565,4.660905,3.988065,6.0563400000000005,2.2613666666666665,4.221055,1.476815,3.526445,5.1027,1.66589,4.93334,0.7346841666666667,4.06912,1.090568,1.1349025,3.691755,3.904635,4.928815,4.80389,6.0162,4.113905,1.490332,3.89015,1.5438225,3.509505,2.937615,2.538159777777778,2.0076975,3.44965,1.24254,3.47211,4.85651,3.023843333333333,5.7585,118.30549660894661,0.49547444444444444,4.68572,2.33823,4.790935,4.134735,4.045885,1.5654375,0.30026714285714284,2.86564,3.844395,5.0434,3.395225,3.80256,4.35154,4.33285,4.202565,8.056243333333333,0.7247733333333334,2.657485,0.9820175,10.305857999999999,3.07702,3.62846,0.8918900000000001,2.28516,2.698525,2.11883,3.24066,3.206996666666667,2.4380266666666666,4.4303525,2.9067966666666667,2.29704,2.3419833333333333,4.35603,3.168805,3.04982,3.73208,3.963655,3.402925,2.3944933333333336,4.00409,4.14254,3.176025,0.8944455555555556,2.62186,4.4303525,4.683585,5.3058,4.170005,3.234525,1.857385,11.05357,3.48667,2.776385,4.224615,4.85853,0.5370713333333333,0.5370713333333333,3.8996125,3.8996125,3.171795,3.7036333333333338,1.8241088636363636,0.5665533333333334,2.98919,4.30394,4.018935,3.67486,4.020215,5.46896,4.555955,2.085385,4.6498,2.1367975,2.869275,3.966895833333333,1.870795,2.147965,0.5032599999999999,1.237466,1.237466,1.89576,4.44377,4.69411,4.72942,6.528336,2.73482,3.00067,1.905545,2.10429,3.953293333333333,3.560875,4.549003333333333,2.246055,4.549003333333333,4.185385,3.624745,5.8679,4.15068,2.4553166666666666,2.01654,2.4591600000000002,1.4063525,1.41063,1.5241575,1.7288375,1.6274025,1.8809,3.860666666666667,4.425825,2.356815,6.6931,2.7492633333333334,4.298615,3.3458,4.178085,3.0165900000000003,2.7907666666666664,6.0882000000000005,3.375633333333333,4.578439333333333,2.96063,1.3996075,2.52831,2.578253333333333,2.2520266666666666,6.2029,4.29082,4.42874,12.071441625988047,0.7514991666666666,1.97442925,2.10389,1.476094,1.2323542857142857,2.4626175,2.331815,2.4246525,2.382,0.7321646153846154,1.90685,0.5280736842105264,4.46069,1.905765,3.541745,4.104935,2.4607125,5.4366775,3.7093,6.41664,4.042645,2.808225,3.10912,4.54323,4.93295,2.5953599047619047,4.37693,2.0317425,2.0317425,4.72974,3.6232,3.972115,4.17884,3.1774066666666667,4.108895,4.70718,5.4378,4.589325,4.648185,4.608615,4.308895,2.50872,4.832445,1.223045,4.562815,4.642815,2.5542866666666666,2.1078233333333336,4.061115,1.5033016666666665,5.0932,1.84835,5.775283876811594,3.807495,3.79773,1.5476,3.3880841666666663,3.3880841666666663,12.362155000000001,4.23108,3.82928,1.11070875,4.233923,2.1686925,1.5154825,2.2546175,1.6771275,1.9670925,1.67003,3.14402,5.58235,1.825245,4.773305,4.5548425,5.40335,2.0787175,2.729145,3.121475,4.27668,5.4151,3.96748,7.0124216666666666,2.9934999999999996,2.4728033333333332,0.35590777777777777,3.76458,4.54321,3.284466666666667,5.9916366666666665,2.5422566666666664,2.9682766666666667,1.2446183333333334,1.4736833333333335,0.576415625,1.42671,2.948625,1.4657566666666666,1.3977783333333333,0.6182525,1.307104,4.61507,2.3950975,0.5682738461538461,1.5256016666666667,1.6831875,1.518014,1.2333133333333333,1.9707225,1.4736833333333335,2.4244475,1.307104,1.307104,0.5682738461538461,1.520842857142857,2.4935400000000003,1.2660883333333333,2.4945475,0.5682738461538461,2.5414,2.4935400000000003,1.1891583333333333,1.1891583333333333,1.1891583333333333,1.82213,1.21243625,0.5682738461538461,1.1404299999999998,1.0722775,0.9732322222222223,1.7584019999999998,2.66345,0.8220000000000001,1.9341075,1.523,0.5682738461538461,1.804532,1.4736833333333335,1.9768833333333333,1.7601166666666668,0.86449,1.9768833333333333,1.0380222222222222,2.31303,2.406415,2.4073025,1.0722775,2.07762,1.24254,1.24254,0.87397,0.87397,0.87397,1.2446183333333334,1.4736833333333335,1.523,1.5256016666666667,0.8714614285714285,1.7601166666666668,1.598144,1.504956,2.01248,1.2446183333333334,2.7408,12.4138325,0.6182525,2.64012,1.6911833333333333,2.3162,0.9164885714285714,0.9164885714285714,0.5682738461538461,1.0328911111111112,1.506012,1.523,1.8906420000000002,1.7601166666666668,1.0998444444444444,1.0998444444444444,1.688418,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,2.8124000000000002,1.0380222222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.20113722222222222,0.3718427272727273,52.93202622655123,1.50495,1.4514366666666667,1.523,1.6911833333333333,0.8714614285714285,0.6033470588235295,0.741468,0.741468,0.741468,0.741468,4.257000000000001,15.714677083333333,3.3099600000000002,0.579760909090909,1.469552,1.469552,1.469552,0.579760909090909,2.948625,0.5682738461538461,1.804532,1.3977783333333333,2.45132,1.0380222222222222,2.31476,1.0380222222222222,1.389338,1.389338,2.099483333333333,2.099483333333333,0.5682738461538461,1.9745439999999999,1.9745439999999999,0.9245363636363636,0.20113722222222222,2.948625,1.3187366666666667,2.40245,0.579760909090909,0.579760909090909,0.579760909090909,0.579760909090909,0.579760909090909,1.6911833333333333,0.3718427272727273,1.0380222222222222,2.015745,2.015745,2.506825,2.7318533333333335,0.6295952380952381,0.6295952380952381,3.3608666666666664,4.116733333333333,1.210942857142857,3.303796666666667,0.948211,2.584975,2.11394,1.0930366666666667,2.8118366666666668,1.860285,3.1511266666666664,5.1203,2.276125,1.1607777777777777,4.279895,4.201935,2.57847,1.7105679999999999,2.2704532307692307,4.65649,1.8535422222222222,2.6691000000000003,3.0719966666666667,3.0215,2.578185,6.102543333333333,3.970925,0.20113722222222222,2.9781766666666667,4.76755,3.41242,4.60702,4.337215,4.24204,2.69729,1.813864,4.144945,4.62151,4.53834,4.63633,5.0482,3.12839,0.7201841666666667,6.8749199999999995,1.5801133333333333,2.8552020000000002,4.495565,2.621446666666667,2.621446666666667,0.853330909090909,2.0076975,4.39587,3.083195,5.01245,3.97093,4.58624,5.0533,1.0755385714285715,4.81702,5.57705,6.433236249999999,2.316943333333333,4.48026,3.756455,4.03452,3.70348,3.677975,4.334225,6.1111474999999995,5.2782,4.241956666666667,3.659595,4.493336666666667,7.025387,1.8822475,2.3104912820512817,2.89005,1.80489,2.7191266666666665,1.8533,5.43055,2.98179,6.03105,1.8235299999999999,4.74337,4.0596,3.69091,4.41925,3.889755,2.4794899999999997,2.7767700000000004,2.7202333333333333,2.595266666666667,2.57429,1.6939166666666667,2.82955,2.824643333333333,2.2657800000000003,2.2657800000000003,4.573755,2.9429700000000003,1.9931166666666666,2.9526233333333334,2.0367333333333333,2.493043333333333,3.06444,2.76323,3.2176333333333336,5.29095,3.67115,3.636405,3.1941699999999997,3.1941699999999997,3.974815,3.1573666666666664,3.65648,4.67818,3.922465,3.88467,3.405035,7.44823,1.9472625,2.11546,3.635945,3.00239,1.4679633333333333,1.4679633333333333,3.64683,1.90947,4.161159333333333,3.794675,3.63711,2.270433,2.0429048333333335,0.5890650000000001,3.22667,3.910315,1.80913,2.51166,4.14605,1.5296233333333333,4.34288,1.25118,0.39952928571428575,0.5446525,21.065430445436508,0.5446525,0.39952928571428575,0.6897757142857143,8.883055,2.6010833333333334,3.41573,4.000165,3.50598,2.6948,3.951545714285714,2.379725,2.38662,3.623605,3.30167,4.05254,4.31096,3.81789,2.37366,3.148095,3.363165,3.887105,3.10864,1.198728,1.198728,1.198728,1.198728,3.46142,2.949865,3.38169,1.9574999999999998,1.15041,2.42941,3.653605,3.79729,2.88643,3.01348,2.73058,2.7550325,3.998055,4.000395,1.1061783333333333,2.4437633333333335,1.1063,2.65843,1.6190033333333333,3.846,4.86266,2.5099066666666667,3.53769,3.89269,0.812416746031746,0.20473785714285714,0.20473785714285714,0.6076788888888889,0.20473785714285714,0.20473785714285714,0.20473785714285714,0.6076788888888889,4.4773,7.339536666666666,3.799895,0.5396025,3.718905,8.146855,3.460235,3.01226,1.1859866666666667,4.32297,5.0171,4.247715,4.80568,1.6702780000000002,4.564645,2.0688299999999997,2.4077313333333334,3.474405,5.2529,0.8100828571428572,0.8100828571428572,3.50212,2.8937566666666665,2.129285,3.91763,2.696285,6.6075,3.91515,6.42885,6.04375,5.6571,2.951175,1.81718,4.008945,3.477565,2.428175,3.8724,2.884545,1.8486125,1.223005,4.088445,3.62002,4.89231,6.10286,1.4456633333333333,4.19867,1.20293,2.575736666666667,3.32508,3.81279,0.3961742857142857,3.346995,4.06041,0.935678,2.507843333333333,7.571693333333334,3.363745,2.279515,5.568781,4.49079,3.77327,1.3506383333333334,5.56861,2.54137,3.06903,3.5884666666666667,2.21019,2.21019,5.863275,5.863275,3.654585714285714,3.654585714285714,9.1843,3.654585714285714,3.654585714285714,4.329052380952381,6.69025,3.29177,3.3694274999999996,3.108976666666667,4.39699,3.504335,3.176016666666667,3.1853866666666666,4.632665,3.2169899999999996,2.7507133333333336,3.3345333333333333,2.3914433333333336,2.74475,4.764035,7.39981,6.383895000000001,4.86147,3.80083,4.07205,6.827432,5.35165,4.365195,3.725875,4.33087,2.2478833333333332,2.01846,2.279255,5.2354,5.4996,4.6302275,4.17661,2.355163333333333,2.36633,6.72417,1.82213,2.5909033333333333,3.460266666666667,3.460266666666667,3.33079,5.18905,0.761835,3.5264333333333333,3.69121,2.80002,10.093775,4.01411,2.9482366666666664,2.3775366666666664,4.286315,5.8044,3.05713,5.2241,2.682646666666667,4.61107,2.9800328571428567,4.222555,5.21005,4.545015,0.9690383333333333,3.4003,0.9381875,2.5327366666666666,4.9571635441176465,8.548873333333333,2.4693833333333335,3.3458666666666663,6.496348333333334,1.591498,4.552165,5.3707,3.49806,3.8415,2.24811,4.479215,2.2919775,0.46174000000000004,4.93383,3.00681,3.32534,4.23113,4.67212,5.2457,6.4720125,4.389275,5.53595,7.277432500000001,55.043330000000005,4.481515,3.831975,4.8986,5.8253,4.156265,5.00155,4.02658,4.66263,1.9654725,3.768635,3.7336,4.63228,2.53987,5.02135,3.89395,1.6806640000000002,5.33415,6.1803,7.0911316666666675,5.44355,3.360055,4.33786,3.291545,3.282155,3.593465,4.50392,3.8979,6.95491,2.725225,1.117227142857143,2.48967625,0.61122,0.61122,3.146545,0.61122,2.5741728214285713,2.5741728214285713,3.2682348214285715,4.74230425,5.164886571428571,2.48967625,4.763178333333333,2.626380833333333,1.3816433333333331,5.5842,2.130225,6.647267333333334,5.453033333333334,10.525767992424242,2.9723633333333335,2.51859,0.21242757575757576,1.99974,1.9614233333333333,0.86122375,1.1996183333333332,2.6978566666666666,2.46596,2.42751,0.596222,26.906271666666665,1.9136425,0.7913538461538461,2.396993333333333,2.396993333333333,0.3865922222222222,1.622765,3.25467,1.331935,1.5035225,1.67479,4.03882,2.924125,2.0281733333333336,2.37223,1.1746683333333332,1.7795,1.43692,5.212877166666667,3.28622,6.706801666666666,2.39628,3.332183333333333,0.9070633333333333,2.57351,5.17005,6.215434999999999,3.0784966666666667,2.1533666666666664,5.224981666666666,1.880815,2.2627333333333333,4.1199325,1.0646366666666667,3.5257,2.3427466666666668,4.83677,4.469585,5.89835,2.92722,3.914575,3.914575,5.1288,2.00965,5.3441,2.7842533333333335,1.6392625,2.96268,2.98603,5.233869166666667,3.53173,2.7895833333333333,3.1856899999999997,3.3039,0.9304957142857143,5.38605,0.90254625,5.607096666666667,4.28269,7.474906,4.35525,4.40308,4.10541,8.281953333333334,4.13654,4.282615,1.1661199999999998,0.6990707142857142,4.41607,4.02863,2.11687,3.29107,3.262255,4.353425,2.136515,4.92395,2.4373366666666665,5.2926,4.900665,5.52635,4.2027,4.82745,2.76035,6.3683595,3.587695,4.48626,3.4005,4.396675,5.3136567857142865,0.5867935714285714,3.530366666666667,1.8082233333333333,0.5467866666666666,3.720125,2.2952,0.96720875,2.032705,5.62341,3.73648,2.36945,2.6875733333333334,2.7561966666666664,4.93046,3.99556,1.6305885714285715,4.020505,2.2201566666666666,3.6394333333333333,4.062905,5.14415,3.363783333333333,3.666,3.7611333333333334,1.998106,7.55641,4.70941,4.012955,5.2482,2.07308,4.242415,4.59814,3.697735,3.986375,10.90862,3.179865,4.6658816666666665,4.637475,4.541665,2.30456,4.28906,4.144915,4.622,3.3549666666666664,3.948135,1.4183375,2.99182,3.449375,3.71469,4.85491,1.8638400000000002,3.9792,3.2134733333333334,5.4297,3.2863466666666667,1.97811,4.170105,4.711125,1.06726125,3.008445,2.6344333333333334,4.397509333333334,1.663986,1.7754833333333335,1.2120675,3.228745,5.0522,5.64799,3.7775,2.829115,2.42579,1.996035,2.07256,1.6718866666666665,5.8771,2.91026,1.88173,0.8653461538461538,19.490972384615386,3.03329,3.1725849999999998,4.170958333333333,3.9825307692307694,1.3446266666666666,2.6730726666666667,2.9481338636363636,1.37985,1.9049866666666666,4.47484,4.45924,3.447048333333333,2.9511,5.4557,4.62413,6.831595,4.4757425,4.453275,3.682035,2.60988,4.33685,3.922525,3.6560333333333332,3.858925,1.74657,4.7362,8.36188,3.29908,2.715725,3.91989,0.54150625,3.0517766666666666,2.0841066666666666,2.2230075,4.412705,3.1027,5.0057,3.62922,2.988265,2.226825,1.78872,0.747744,1.4746233333333334,1.2443633333333333,3.866805,3.823235,4.504025,4.5573,7.57455,2.28438,1.4272880000000001,2.432186666666667,7.549675000000001,3.20614,2.899675,3.01877,4.09737,3.139195,3.57787,1.46583,4.694905,4.929225,4.25679,4.07052,3.434975,4.094555,4.32834,3.975705,4.33129,4.3496,2.251725,3.1467033333333334,3.444065,5.27925,2.89365,4.1663885,2.830955,2.95093,2.219543333333333,2.2149199999999998,2.12902,2.5156433333333332,2.5156433333333332,1.8730466666666665,2.8485300000000002,2.43517,2.3480266666666667,2.0356799999999997,4.21358,2.46049,2.7106266666666667,3.13885,1.7590199999999998,4.51399,2.720325,4.12354,2.4836833333333335,5.17105,4.996755,4.786993333333333,2.376425,2.283205,2.977895,2.202175,2.23908,2.79731,1.86953,2.505275,2.61425,7.038728,4.4021075,3.698385,0.6183025,4.30041,3.817935,3.963605,3.27255,3.973015,3.749348333333333,6.32465,4.38196,3.016435,2.7792657142857142,2.060947333333333,2.51096,1.573996,1.678798,1.521988,2.02948,1.5711625,1.1667416666666666,4.219939714285714,0.5682738461538461,0.5378033333333333,1.85858,1.5105616666666668,1.4059620000000002,1.409235,2.23887303030303,1.39858,1.708924,0.63777125,164.47856434597549,0.47757666666666665,2.10122,1.1781000000000001,1.1719875,2.11629,1.5986325,1.98213,2.28438,1.71972,6.5754,3.099675,3.306262380952381,1.5434466666666669,3.248225,1.2978166666666666,1.2978166666666666,5.5431525,0.48353,2.0105375,3.157016666666667,3.0040600000000004,0.8076763636363636,0.5266352941176471,1.1198206153846155,0.9735909090909091,2.1598575,3.84767,1.897515,2.141885,2.163726666666667,4.916270166666666,0.9697911111111112,4.19485,3.48557,3.61339,7.1105,1.6925533333333334,3.259675,2.574275,3.4410469999999997,2.31307,3.03763,2.08494,3.367155,4.56859,3.159325,7.88794,2.074845,2.77557,3.425485,1.560255,2.44623,2.40019,3.051925,1.68259,1.516645,2.331535,4.14059,5.052991666666666,2.687835,3.031205,1.56154,3.99351,3.792566666666667,3.9552666666666667,2.919095,24.636168887057384,2.672502,2.6113466666666665,3.0425833333333334,3.5379666666666663,3.16868,5.671506666666666,3.2039333333333335,2.309633333333333,3.3691999999999998,3.4605333333333337,2.2092733333333334,3.1938166666666667,3.3679333333333332,3.0309899999999996,1.7514833333333335,1.5663200000000002,0.567045,2.37629,1.9050525,0.2052575,2.1206133333333335,2.44954,0.2052575,0.2052575,2.1028575,0.2052575,0.2052575,0.2052575,0.2052575,2.7208466666666666,2.4672199999999997,0.570056923076923,3.0586496428571426,1.47419,1.904936,5.54995,4.3278075000000005,6.038305,1.987615,4.93588,1.990615,2.76868,1.2498414285714285,5.729963333333334,2.90048,5.9068000000000005,0.8211258333333333,1.328685,4.60985,4.651035,34.47566484074259,1.535798,1.3682266666666667,2.296866666666667,2.2306125,0.87397,2.3859033333333333,2.2913099999999997,2.7316800000000003,2.0770933333333335,2.50176,1.6969166666666666,2.59763,2.4333566666666666,2.2786666666666666,2.7642133333333336,2.49075,3.90069,3.4179666666666666,1.0677914285714285,3.86851,3.96729,19.80809888888889,2.7443166666666667,3.1384366666666668,2.5937766666666664,0.911054,3.184596,1.6745995555555555,3.184596,2.3897233333333334,2.47732,2.8145066666666665,1.60533,1.90943,3.91397,4.13701,4.849435,4.355715,1.6323940000000001,4.9047,1.648205,4.86868,4.02965519047619,4.143095,0.7401145454545456,2.0178275,2.1156475,2.788964,3.45292,1.04587375,3.534055,1.86347,1.8963,1.08547,1.08547,3.7802000000000002,2.553033333333333,4.20411,28.357255000000002,6.397935,1.8883999999999999,3.6543900000000002,0.39459933333333336,5.59811,5.74545,2.74353,3.4613,5.3895475,3.60105,1.10527625,4.49904,1.343906,2.62542,4.34668,4.28226,2.180695,3.21576,4.46239,2.604685,2.744513,4.18292,1.2967666666666666,2.419678333333333,3.701315,5.13565,2.4517533333333335,3.1130333333333335,2.8098533333333333,3.92631,4.06631,4.022245,4.1978,1.817015,6.02191,2.597445,1.772814,4.15408,6.15042,4.097495,3.261145,0.72861625,2.87952,3.62982,2.095615,4.748732333333333,2.897355,4.08786,2.8641433333333333,3.3678333333333335,2.629685,3.1730633333333333,2.882626666666667,3.06968,4.2069,5.4211,3.40686,1.894025,3.81018,4.242655,1.96891,2.203525,1.72797,3.8283833333333335,4.44571,4.952966666666667,4.111235,3.3087,3.727835,3.1315899999999997,1.3697533333333334,3.10799,2.962415,2.95543,4.58545,4.488285,3.98464,2.875055,1.9176,1.631105,1.499455,3.70735,2.513345,2.27489,3.48537,4.87545,1.61506,5.12985,1.3975585714285714,1.8916425,3.35852,2.87516,3.15369,3.82059,3.27019,1.656765,0.9953789473684211,3.166025,4.522623333333334,4.30073,8.673321666666666,2.7988233333333334,3.0248166666666667,1.6544166666666669,2.827453333333333,2.60473,1.09941,2.81125,2.5722133333333335,2.9896266666666667,3.8989,2.9375666666666667,6.80308,2.97053,0.7569463636363636,1.6948433333333333,3.49962,3.30634,3.43468,3.405333333333333,2.407699,3.121415,2.73025,1.9956342857142855,3.866145,2.500553888888889,3.456285,2.087223333333333,4.65539,4.63041,4.480885,3.263105,3.65285,0.8499966666666666,4.5384,2.57229,2.6214366666666664,4.196855,2.7626833333333334,2.5942066666666665,0.42505857142857145,0.42505857142857145,4.08646,3.821945,6.90815,3.136605,4.505,3.768775,3.24405,4.660125,3.93371,1.07684,3.70532,2.62873,3.9871991666666666,2.8761566666666667,3.0921491666666667,1.7830533333333334,3.1337235714285714,2.3221233333333333,2.8627800000000003,2.544966666666667,2.8134099999999997,1.9282233333333334,22.41921737549407,3.942065,3.836065,3.936835,3.35815,4.290855,3.64864,4.4898,3.937855,3.816945,3.37816,3.94777,2.3900266666666665,2.7244466666666667,2.76258,2.9839366666666667,2.693073333333333,4.243975,3.63214,4.992465,4.893925,3.896725,1.3276059999999998,1.413054,1.413054,4.601725,3.41657,2.6046733333333334,2.1619266666666666,2.7952600000000003,3.1712,3.463615,7.351196666666667,3.0819566666666667,3.4226666666666667,3.0114633333333334,5.2752,1.5766966666666666,5.6519925,2.451353333333333,2.914876666666667,1.755315,3.362775,2.79126,6.10604,3.48424,2.751725,4.24874,4.5198599999999995,1.5181725,2.54697,1.65219,7.1303365,4.064885,6.345079999999999,2.2175925,3.740595,3.81059,3.692855,5.009,3.4935666666666667,3.4935666666666667,2.12748,4.276875,4.988445,2.171615,6.598688571428571,1.54783,5.64465,8.183359,3.5521,3.9552580000000006,2.368326666666667,2.05699,0.4998625,4.446095,2.4784575,2.66245,3.5509315,2.264965,2.439973333333333,3.54978,5.70145,5.21335,5.4459,4.719625,4.19175,2.2596475,1.0203909090909091,2.91641,3.47779,2.8515566666666667,5.2704,4.04008,3.11959,2.58949,2.049,4.102085,1.03260375,5.19895,0.9780722222222222,5.4862,3.524905,4.532485,4.7763925,3.091645,3.31105,2.9299233333333334,2.28986,3.971425,2.882785,2.331835,3.503835,4.757055,5.585718333333333,4.4438,1.68695,3.552725,2.88197,5.595805,1.898435,1.898435,2.96562,2.2813433333333335,2.36115,2.6167833333333332,0.860121,6.4061,3.092165,2.049655,2.408265,2.785355,3.81473,2.74853,3.881385,5.061,5.11965,4.85262,6.05835,5.7617,1.3194625,3.625185,1.117875,2.4877075,4.3799,2.572955,3.134185,3.3186,4.786345,3.115705,0.4465073684210526,4.16728,4.21341,4.85488,3.407645,5.0966,5.4352,4.292145,4.227285,1.874815,4.494385,2.08463,4.372766666666666,4.372766666666666,6.5903,5.77385,5.5281,4.79687,2.692345,1.5766966666666666,3.99076,1.9374966666666669,1.6505166666666666,1.91105,4.149285,4.083485,4.2156,8.41774,1.5143483333333334,5.0645,1.2712116666666666,3.40322,6.0401,1.939325,4.64722,2.5048833333333334,4.604625,3.50238,4.84157,3.0580166666666666,4.20938,4.206685,5.721,4.216955,3.995095,3.83548,6.06335,3.99309,4.52698,3.739395,4.197885,7.008115,3.54769,7.24124,3.27301,5.64135,5.959154318181818,4.098815,3.60534,1.6620175,5.7295,3.894275,0.88399,8.28988,6.00125,5.0048,3.0644108333333335,4.898525,2.838665,1.72807,4.022345,1.1061783333333333,6.0689,2.629515,4.63964,5.44025,4.427645,3.86859,2.2127166666666667,4.562,5.0221,1.382285,6.828368333333334,3.04946,3.51254,5.0519,4.333965,2.25936,4.491855,3.713345,3.808855,2.6989466666666666,4.125645,3.80938,5.36725,4.62356,3.39627,1.91632,1.91632,7.532343333333333,1.41592,5.0258,4.33937,5.16165,3.198585,3.628995,5.05155,3.93484,0.9510299999999999,0.9510299999999999,0.9510299999999999,3.61194,3.34427,3.99845,4.517345777777778,2.750295,1.4415233333333333,4.025515,2.2079475,2.767005,3.982005,4.329555,2.1071375,2.1479600000000003,5.5211,3.70137,3.18038,4.462115,1.672775,2.009675,3.2268000000000003,2.62215,5.2259,1.440688,1.5563420000000001,0.99119375,3.76401,3.72311,2.6480333333333332,2.8610866666666666,5.27605,1.7589020000000002,2.06805,3.06865,1.6529,3.211345,3.660275,2.42457,5.504,5.47835,2.78426,4.17477,3.45054,3.517655,3.379785,3.84321,3.58562,6.8754,5.0685,2.0243100000000003,1.8058833333333333,3.614555,4.791105,4.18086,3.461755,2.8536033333333335,4.036245,5.98045,4.95323,2.734446666666667,5.2834,4.004585,3.275995,7.905222500000001,3.73,0.7135609090909091,3.84278,4.117153333333333,2.37762,4.10934,3.9586333333333332,5.80325,3.967095,3.359835,3.827425,4.357335,4.47254,4.57522,2.786315,3.80424,4.88471,3.795515,2.39511,3.010865,6.69757,5.1973,2.0091200000000002,3.20854,4.094423333333333,4.092115,4.93611,4.26087,2.5950633333333335,0.9108655555555555,4.635187272727273,6.0774824999999995,3.64322,4.789595,3.638835,6.392906666666667,3.641335,3.8452,2.824316666666667,3.849295,1.956775,3.424955,4.386555,2.5513605000000004,4.05541,5.7898,1.49109,4.607915,0.6152157142857143,5.96765,6.15315,5.80115,5.5682,1.5501533333333333,1.6555233333333332,4.50658,2.01954,5.50595,0.5211225,5.93895,3.2468,1.538688,6.325912499999999,6.52885,0.74603,1.440612,1.2164199999999998,1.2164199999999998,1.2164199999999998,2.2172066666666668,4.73237,3.706245,3.23422,3.87087,5.07395,3.650165,1.9659859999999998,4.169655,4.922945,0.29743170731707314,3.41116,4.740375,3.641415,38.19849461363636,6.100512500000001,4.933565,10.585551333333333,2.776225,4.11047,7.274828333333334,3.466465,4.990975,3.75277,3.809915,9.32009,3.79597,2.7547266666666665,2.56804,4.43286,4.29072,3.612575,4.28852,2.094585,4.484,3.90121,6.5999490000000005,3.978555,4.908895,2.311265,4.34241,0.51281625,1.4687733333333333,3.28171,5.9349,2.97667,1.2667116666666667,1.2667116666666667,2.994445,3.91046,3.95106,2.600285,1.67885,3.658465,4.32256,1.7112175,3.2682533333333335,1.502698,1.84453,4.15348,4.468225,1.9754225,4.546475,2.243095,2.14985,3.662855,3.711545,4.184925,3.91738,6.095455333333334,2.4048403333333335,3.798005,0.7181381818181818,0.68379,3.5574,2.38496,8.48059,3.3099600000000002,4.825045,1.6980975,4.343665,1.5012866666666669,3.78142,4.226305,2.5359766666666665,3.61514,4.57364,0.4164605,0.4164605,3.7594,3.19516,2.8279566666666667,3.551825,3.77042,5.49515,1.035,9.731580000000001,10.8905,1.9707225,4.71176,4.546525,4.72842,3.57368,2.42541,2.0106200000000003,2.0659275,10.13429,2.1152725,2.700086666666667,3.569824,4.341555,3.569824,2.02002,2.7541700000000002,2.6522866666666665,0.7053409090909091,5.359875833333334,2.754443333333333,2.592703333333333,3.98076,8.43861,10.20199,4.128875,4.00814,4.012085,6.44627,1.95887,1.3803,25.970685,3.89131,3.680665,0.9734069999999999,4.354875,4.18383,5.2737,4.440535,5.3868,5.5533866666666665,2.9977066666666663,2.202856666666667,0.6308470588235293,0.72646,4.603765,5.18185,1.3503100000000001,4.324593333333333,0.9253333333333332,3.6191666666666666,1.37378,4.21299,5.93545,1.98027,2.41852,2.003085,3.79512,2.90713,0.4102,3.57486,3.631815,2.5961666666666665,3.312385,4.86121,2.7257533333333335,4.225265,3.219465,5.1533,8.017206666666667,4.86786,8.56203,2.73585,2.556693333333333,4.531255,4.491185,4.32618,4.631915,3.800655,4.55135,1.14887875,3.2562929166666668,3.2624919285714284,0.657498,1.413054,1.413054,4.09853,6.871033333333333,0.8182692307692307,4.77773,0.87152,2.8275966666666665,2.238723333333333,2.481653863636364,6.1112544444444445,2.4123066666666664,1.1337777777777778,2.34748,1.23630125,1.9456566666666666,3.0698566666666665,3.08323,3.1897366666666667,2.4562,0.87152,4.43394,4.4562,5.4425,2.76522,3.86804,2.07488,5.9668,4.67123,4.18707,2.80617,3.049375,2.2157725,1.5391075,3.857195,2.623975,4.26261,5.60625,1.6656300000000002,4.58126,2.83344,6.295473333333334,3.697995,2.322695,0.87152,2.47747,3.08332,7.394096833333333,2.32657,1.649836,2.32657,0.414295,1.32329,4.223355,2.41864,1.700015,3.70948,3.987062,0.691477,0.691477,0.691477,8.39767,1.599256,0.7341627272727272,2.105645,38.30387157142857,1.8882526666666668,0.6744666666666667,3.0280175,0.6744666666666667,3.777415,2.121685,2.57573,2.432986666666667,5.28065,4.05874,4.34955,2.4038933333333334,0.9256685714285714,4.36183,3.3036833333333333,4.93997,1.0552942857142857,2.964125,2.964125,3.80827,4.47174,3.35375,4.215572692307693,3.18548,4.505695,5.268,1.7992460000000001,1.03252875,5.17445,6.5632,3.855115,0.685909,4.266825,4.025251666666667,0.92965125,4.40926,2.56203,3.831955,4.268665,1.8656344444444444,1.8656344444444444,3.964715,3.398045,0.9080044444444445,3.11134,3.0025733333333338,3.26971,4.10599,4.401865,0.6055757142857142,0.3268788235294118,0.3268788235294118,0.3268788235294118,0.932454537815126,0.5396776923076924,0.745794,0.3268788235294118,0.3268788235294118,6.22337,0.3268788235294118,0.932454537815126,3.55203,1.3430925,4.604345,1.1953099999999999,0.5678138461538461,0.92965125,2.7496,2.5978,3.971225,3.049945,0.3268788235294118,0.3268788235294118,4.360135,3.945115,4.08609,2.662525,3.94725,1.438682,3.871205,0.745794,0.745794,4.80447,3.157225,2.76138,2.791325,3.6677066666666667,1.04412,0.896876923076923,10.088945,1.2113625,3.593315,4.55132,5.2423,2.08598,0.36701999999999996,0.86109,2.666043333333333,3.261015,3.06796,4.213165,1.3309,5.755,3.360775,4.87237,3.913275,3.01233,2.8471966666666666,6.361793333333333,2.4786,4.59054,4.180015,3.89269,6.019755,0.5284106666666667,4.34903,3.4821000000000004,1.9178533333333334,0.6943077777777779,3.98428,4.46929,2.71242,2.551225,2.10199,5.0353,2.85477,2.86023,1.031498,0.47758,3.958875,0.36483600000000005,0.7831236363636364,4.01041,3.001335,3.742435,2.80017,5.5071,4.49209,5.847048666666666,3.61182,3.324025,4.32169,1.612695,5.35199,1.649048,3.853285,2.461465,5.8595266666666666,2.461485,1.0303900000000001,4.43862,6.960459999999999,6.495992916666667,3.3506666666666667,0.8013558333333334,2.9278166666666667,4.280625,3.8291,4.572975,4.37384,4.048915,4.936465,3.103185,4.18072,1.8882333333333332,2.329335,1.5000566666666666,4.09016,8.84317,2.68574,3.798205,5.9393,2.790995,4.09055,2.5055466666666666,2.8384169999999997,3.368035,3.21692,3.39203,3.11645,3.610055,5.337,5.8903,4.06203,4.752395,4.96723,3.78948,2.768695,5.3083,7.6018,0.9151444444444444,3.95048,3.885075,4.707245,5.7478,5.01935,2.22719,7.845485,2.4463033333333333,3.487695,6.08935,3.748135,4.36871,2.19042,1.64042,3.0305400000000002,2.10898,2.1559266666666668,2.7479333333333336,4.18849,4.60879,4.148595,3.32624,4.885331666666667,3.42904,3.14846,4.075635,5.8049,2.93865,5.335057166666666,3.85096,3.690705,3.508305,7.23739,3.63769,3.82798,3.998265,4.947335,2.948495,10.6593,1.2869833333333334,2.39622,3.3717,2.7750566666666665,2.7750566666666665,2.043095,7.5228633333333335,0.8684922222222222,3.06686,0.8991825,2.06805,4.353805,4.75039,3.68592,4.04567,2.707656666666667,3.118685,3.701135,3.85998,4.105445,2.780725,2.417806666666667,3.908435,4.449845833333333,3.13167,4.17066,1.61422,1.6420559999999997,2.681926666666667,5.7351,2.250605,1.7659900000000002,1.9789325,4.041945,4.68494,3.04853,2.767615,0.5373966666666666,2.317585,7.264704999999999,3.276695,1.4475266666666666,0.85233125,1.1934133333333332,2.02398,2.143405,0.7939949999999999,2.1319766666666666,4.484639,3.929025,4.66463,2.44182,1.956445,6.50033,2.9116,2.259733333333333,2.259733333333333,2.259733333333333,6.496746666666667,2.281613333333333,3.600005,2.532565,0.46450800000000003,1.175408,2.324105,5.85975,0.43708166666666665,3.947275,3.95247,5.7612,2.9831583333333334,0.43708166666666665,2.9831583333333334,0.88756,1.17758,5.59775,3.859045,6.654299999999999,3.930285,4.465425,3.45122,4.183,5.0091,5.3069,5.90015,3.85854,3.521585,4.95935,4.52229,4.2773,4.43068,4.35518,1.34659,2.46644,1.20198875,1.98982,3.142205972222222,1.5905043055555557,7.0440875,5.595805,2.6256666666666666,4.227975,2.860375,4.669815,2.938585,4.096495,4.67002,9.266735833333334,5.06005,4.305965,2.4009275,2.9502,2.0278,0.54150625,2.160992222222222,6.06695,5.21705,4.908215,4.394335,0.5186313333333333,2.0375675,1.44598,4.24664,0.7029484615384616,6.401422500000001,2.0836975,1.14867,1.14867,3.95928,1.989948,2.967976666666667,2.722855,4.63108,3.4411625,3.4411625,4.491005,5.557073333333333,2.755456666666667,2.4759466666666667,3.139063333333333,4.84236,1.83959,2.8320600000000002,5.59175,4.946065,4.473735,4.04875,3.9097616666666664,4.20141,3.5495841666666665,3.0861466666666666,2.3779,4.299735,5.1599,3.28728,4.98637,5.42065,2.06189,2.4340466666666667,6.286,6.9296,1.2326700000000002,2.614975,2.3673325,2.747363333333333,2.315735,2.528275,2.350184,1.0343200000000001,1.961575,2.669925,2.212405,2.4867383333333333,2.4867383333333333,2.9230514999999997,2.935325,2.181193269230769,2.59255,2.28945,1.9152879999999999,1.5180106666666666,5.148300000000001,14.563262333333334,2.8895999999999997,3.1422733333333333,1.843768,1.843768,1.6346366666666665,1.6346366666666665,2.7854733333333335,3.558,2.7339066666666665,1.9022425,1.9022425,3.8656333333333333,2.4704433333333333,1.1217766666666666,1.420157142857143,3.083576666666667,2.886863333333333,3.5422999999999996,2.4831588095238097,3.320133333333333,3.050053333333333,0.671866,2.584325,3.6183083333333337,7.074873333333333,4.633615,5.3631,4.310885,3.38195,5.0407,4.56319,2.7058199999999997,3.992835,1.3342749999999999,3.1197866666666667,5.68375,5.25725,2.766145,1.12284,3.031385,2.2652533333333333,2.8867266666666667,1.4654416666666668,0.6518864285714285,2.91446,4.4573833333333335,4.806275,4.09943,4.70067,2.9981566666666666,2.248553333333333,3.2878133333333333,2.4538466666666667,3.1898700000000004,3.1270733333333336,3.0957733333333333,2.5823300000000002,2.3656333333333333,3.6683333333333334,2.8106766666666663,5.07545,4.655355,5.266703333333334,5.266703333333334,3.48737,4.21813,3.805085,3.793055,2.86039,3.959255,3.527455,3.06847,6.1132,0.7313000000000001,5.0157,4.74941,2.5954366666666666,5.080783333333333,3.5205,1.8065,1.2112128571428573,2.0561233333333333,0.980396,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.2976096428571428,0.5604571428571429,0.5604571428571429,1.241745,0.863947361111111,1.74434625,1.0242957142857143,1.0242957142857143,1.2839351388888889,0.4604111111111111,0.4212988888888889,1.2943275,1.5364125,2.7473166666666664,2.29035,6.4116,3.044003333333333,3.68597,3.3451066666666667,4.816494571428572,1.3160833333333333,4.784515,3.87347,5.06525,3.006485,1.534284,4.408918076923077,3.881205,4.42725,4.31221,2.765185,4.822455,4.79076,4.69331,1.291818,3.88394,4.6604,3.243005,2.425413333333333,3.425815,2.501235,3.307895,4.600685,3.1141400000000004,4.825735,8.86092,3.38644,4.760965,3.98675,4.344806666666667,2.5055733333333334,4.74056,0.9815957142857143,4.599215,3.522685,2.1403,1.150445,3.016675,1.3539833333333335,0.49662133333333336,3.4227000000000003,4.24114,5.206926666666667,3.6893666666666665,2.4635825,2.514715,4.811485,3.8869666666666665,4.50219,2.64425,2.3002466666666668,4.052425,3.80678,3.88791,5.003,4.29667,3.778645,4.475835,3.11532,4.142865,2.1292404166666667,4.28326,5.2169,3.40381,4.51044,2.554325,3.809385,5.4566,3.7455,4.999455,4.836995,4.739215,2.24883,4.629765,4.95299,4.62014,2.1080275,1.11224375,4.00768,4.557505,3.84257,4.59105,1.7261,3.62311,2.511695,4.75736,4.43723,4.502345,2.18893,4.161825,4.33253,4.10453,2.3626633333333333,4.593025,4.52156,5.09715,3.547325,2.1080275,2.422295,2.677435,5.0858,3.920275,3.97045,3.44352,4.747,2.295345,6.77614,4.89942,4.57421,5.319176416666667,5.16306,5.0619,3.3395325000000002,2.36765,2.36765,3.647585,3.39774,4.64894,2.0036225,2.8589262499999997,0.98163625,2.4108899999999998,2.9253766666666667,2.1901033333333335,2.9537099999999996,4.191755,2.6921133333333334,5.04135,2.4365566666666667,4.30424,5.0628275,2.01733,4.18811,1.8172966666666666,2.5008266666666668,3.91164,0.912291,4.91791,4.33567,5.4441125,4.585295,5.57215,1.2316942857142856,4.50726,6.5369,8.35974,3.17882,3.2267733333333335,1.8664280000000002,0.791496,3.825195,1.0444042857142857,5.00435,4.51881,5.77485,3.182345,3.60199,1.09292,3.419515,3.63865,4.417025,3.932185,2.89603,2.707025,2.37468,4.23659,4.62892,5.54605,4.47469,3.461755,0.35475888888888885,0.35475888888888885,0.35475888888888885,0.35475888888888885,5.8213,2.665175,6.1541,2.995563333333333,4.758805,4.696455,3.72504,2.190895,2.5758966666666665,1.4625766666666669,5.0043,2.64265,4.347775,3.981795,3.52928,1.527675,1.14912625,4.23502,2.40268,5.898723333333333,3.946305,4.469815,2.307415,1.4850966666666665,0.8876544444444444,3.354965,4.218595,3.4186,2.14221,8.00561,4.60236,3.419725,2.2485600000000003,0.46124200000000004,3.414975,2.72168,2.15782,1.96717,2.723905,2.72382,2.377465,2.91532,2.899135,3.63533,4.30386,3.41458,3.93382,2.864565,5.6241699999999994,0.6132906666666667,4.52803,5.8475,4.86915,4.6387,3.1674433333333334,5.18415,4.35264,4.05186,5.274771666666666,5.15025,4.56946,4.603555,3.651825,4.968935,2.947185,9.1393,4.91179,4.11088,4.636555,4.99464,5.61205,3.4038,1.1224666666666667,5.844191666666667,3.127085,4.521405,1.3060833333333333,4.359445,3.438895,6.263498333333333,4.569955,3.301095,1.83246,4.82795,2.20298,0.92828125,4.33175,6.05285,2.0013666666666667,2.3674133333333334,2.9402166666666667,3.010085,3.708845,3.827125,5.08045,1.8245066666666665,4.194125,3.9136995,3.44086,3.8554999999999997,3.728595,2.852575,2.72454,1.90452,2.4659166666666668,2.74513,4.50921,0.5890650000000001,2.68129,3.952105,3.0308,3.4027666666666665,4.24939,4.916735,3.78659,16.866791303030304,2.7271533333333333,4.164133333333333,1.475402,0.9299636363636363,0.9299636363636363,0.9299636363636363,0.9299636363636363,0.9299636363636363,4.194615,4.54729,4.603065,8.798114,2.3995575,2.3995575,4.504035,4.593845833333333,1.2932525,1.9876966666666667,3.651,2.4238475,2.3231525,2.1289725,3.10452,3.9068500000000004,1.6257225,3.5368,0.835442857142857,2.83742,2.5727733333333336,3.0556666666666668,1.45306,3.0902700000000003,2.118116666666667,0.94310875,2.7357933333333335,2.6804666666666663,1.2717333333333334,2.3714666666666666,2.4740933333333333,2.2092899999999998,4.368050666666667,1.8096933333333334,2.7309,2.0407625,2.6147,1.081448888888889,2.6510933333333333,4.6787806666666665,3.630266666666667,1.01264375,2.84863,1.3666225,2.451236666666667,2.30335,4.639798333333333,2.9318733333333333,2.315866666666667,4.577574,2.67811,2.166595,2.705553333333333,2.299863333333333,1.62289,2.7207133333333338,2.9656033333333336,2.7683066666666662,2.342616666666667,3.0513833333333333,2.59002,2.3789575,3.7236145,3.7236145,3.0242733333333334,1.9971733333333335,1.9801833333333334,2.5483266666666666,5.522333333333333,2.821593333333333,2.1159433333333335,1.7383675,2.97132,4.383295,2.40864,1.071528,2.791031333333333,1.5244099999999998,3.2497833333333332,2.244056666666667,2.5017466666666666,2.1943366666666666,3.039593333333333,1.2663959999999999,1.7350366666666668,1.44878,4.352068333333333,2.76078,3.92218,1.0238377777777776,4.183865,1.9521666666666666,1.9131,1.7468139999999999,1.5451266666666665,3.2789300000000003,22.678957642857142,7.327266666666667,2.690996666666667,3.403849166666667,2.875313333333333,10.227266666666665,3.0018333333333334,0.982115,2.46812,2.34245,2.0701933333333336,2.99002,2.4443,2.56027,0.9361459999999999,3.217503333333333,2.6353666666666666,3.0452066666666666,2.78675,2.5100000000000002,2.10073,2.2097433333333334,2.8988033333333334,2.6876366666666667,2.09102,1.565326,4.9537,4.56528,2.060075,2.987975,2.2955833333333335,2.4549600000000003,8.185031666666667,2.0352566666666667,4.95661,2.3508175,1.83197,7.97449,2.84932,2.714143333333333,2.4712,1.885014,1.4800961538461541,3.0836733333333335,3.002026666666667,3.963595,1.561405,3.6710999999999996,1.7950175,1.7950175,4.39519,4.14484,2.8746342857142855,2.8746342857142855,5.754336666666667,3.583355,0.45507600000000004,12.124993247863248,1.3377299999999999,0.9517800000000001,3.9249558333333336,1.4876799145299144,1.8717575,5.882626666666667,3.67814,0.7327154545454545,2.23694,5.042292242424242,2.3884803333333333,3.66039,1.2723885714285714,5.2755,4.907485,4.271795,3.1189470000000004,1.88753,2.21311,2.55113,2.2320866666666666,2.1597,5.114723333333334,4.18931,3.858415,1.8993275,4.6187,4.130655,3.3373666666666666,2.11615,4.80408,2.4856433333333334,8.81207,6.19221,1.8422225,2.57894,1.807018,4.6108,4.6108,2.8622533333333333,2.753213333333333,3.1559600000000003,4.84349,9.7026775,4.37496,2.4959425,5.56025,4.382735,5.08975,2.07946,0.8415425,1.343565,4.549425,4.64486,3.660133333333333,2.6076099999999998,3.741633333333333,2.22864,3.823755,4.80651,3.35075,5.447,3.088343333333333,3.426475333333333,3.2464166666666667,3.2529966666666668,3.3654666666666664,6.28145,3.0364,5.47775,4.560175,3.436895,3.3419,3.3419,5.505799166666667,11.8020975,3.493933333333333,6.118275000000001,7.283037222222222,3.705195,2.4778266666666666,3.996085,1.3361066666666668,3.85389,2.3451525,2.95302,2.92258,3.250033333333333,1.8966699999999999,2.4336966666666666,2.6621966666666665,2.464373333333333,2.820586666666667,3.1782133333333333,3.753195,2.5459533333333333,2.9066899999999998,3.78248,2.5799766666666666,2.271873333333333,1.12883,2.1142025,2.7125566666666665,2.302513333333333,2.5317333333333334,2.51965,3.5186333333333333,2.37636,2.351503333333333,2.5273866666666667,3.02449,2.5930633333333333,2.7824866666666668,2.4135166666666668,3.038906666666667,2.8545933333333333,3.344326,2.6247766666666665,2.41314,2.274106666666667,2.6402733333333335,2.6465466666666666,3.5050666666666666,3.258763333333333,2.613585,1.93215,1.93215,0.8578566666666667,1.46583,3.872885,3.182295,2.650046666666667,1.8966699999999999,2.9749866666666667,1.1713857142857143,2.56861,0.5494646666666667,3.3416333333333337,3.0480133333333335,3.367695,2.9535933333333335,2.4194233333333335,2.307636666666667,2.8552466666666665,2.691523333333333,3.1728733333333334,4.136723333333333,1.490878,2.7078966666666666,2.391183333333333,1.7752033333333335,2.1136399999999997,2.68112,2.6259166666666665,1.5802720000000001,2.4884333333333335,2.665716666666667,2.5272566666666667,2.61969,2.66116,2.8887766666666668,3.1786333333333334,1.3579125,2.8196766666666666,2.3913100000000003,3.7198333333333333,3.8168333333333333,1.7697425,2.10402,3.1524733333333335,2.369943333333333,3.3732333333333333,2.7143800000000002,2.6008533333333332,5.282475,3.2012433333333337,2.0508833333333336,1.530692,3.303546666666667,6.099896666666666,3.070536666666667,3.5488666666666666,2.8734366666666666,2.9085633333333334,4.6263586666666665,1.6337119999999998,1.1488888888888888,2.04859,1.7269908333333333,4.52958,2.4418133333333336,2.9608266666666663,3.0879933333333334,3.1730666666666667,2.1938833333333334,3.4680999999999997,2.63105,1.54702,2.6370733333333334,3.56389,3.7149275,3.26237,3.619875,1.59465,2.82852,3.541905,3.402545,2.3544133333333335,3.8257,3.8813,3.8035333333333337,1.27981,5.540335,3.26471,1.400735,3.11956,3.137905,2.925005,3.4629,1.8112860000000002,1.8112860000000002,3.218453333333333,3.0185666666666666,2.72963,4.984185,4.344365,4.251565333333334,1.340922,3.13984,2.4139933333333334,4.248115,3.208403333333333,4.729783333333334,2.58675,2.34986,2.5059066666666667,3.789255,3.97568,1.6528580000000002,3.045553333333333,2.78215,2.3578325,4.32992,1.2899100000000001,3.19798,4.205885,2.78583,3.66034,4.10777,1.69184,1.6116566666666667,2.3698,1.1023033333333332,2.0676019047619048,1.879435,0.4444571428571429,3.77192,2.37475,4.704705,4.078335,3.011815,4.6986349999999995,3.3624333333333336,3.100766666666667,3.4209333333333336,2.3994866666666668,3.14602,2.65484,3.033326666666667,2.106663333333333,0.6598615384615385,2.403496666666667,0.61173,1.97757,2.543763333333333,3.1366866666666664,3.10298,1.4258033333333333,1.2915575,4.27187,4.40996,3.0182,3.69157,3.155765,1.72543,3.796615,6.550095555555555,3.500885,5.190645,1.6195275,3.862575,1.97808,4.418155,3.607475,2.085425,3.70087,3.17125,3.75313,3.771365,2.02183,3.895285,5.642805,4.85961,3.60215,3.020625,1.6831875,2.041225,3.735195,3.13715,3.34105,3.642025,3.492455,3.369235,1.57094,3.474065,3.22916,1.6483375,4.0336075,1.0611416666666666,3.13371,1.69273,3.562895,4.663806666666667,3.588265,3.008415,3.550155,3.342215,1.8330475,2.269415,3.821066666666667,2.986055,5.92152,4.18817,4.518155,2.4508,2.54121,4.37991,4.52779,2.245692,2.245692,5.7810950000000005,3.75273,2.64637,2.90247,1.9938200000000001,2.733635,3.339655,3.6848166666666664,2.702395,3.11449,0.9873419999999999,3.72368,2.828145,3.933875,2.683945,1.4519775,1.4102875,2.707025,5.877851,5.695074999999999,3.65385,1.514055,4.24384,3.75857,0.8311733333333334,2.7934,1.457068,5.1276425,1.4176066666666667,3.72463,1.882445,1.4258033333333333,3.014245,2.53035,4.653855,6.76222,3.935455,4.598490833333333,2.61063,2.74685,4.011085,3.61961,4.147585,4.330685,1.19583,1.5663200000000002,0.999275,2.55372,2.269775,5.044,0.999275,4.12055,2.098215,1.4232775,1.4232775,1.6483375,3.770495,4.06267,3.61307,1.499516,1.499516,0.99872,3.11846,2.08262,5.999615,4.113185,3.69705,2.9113633333333335,0.9958014285714285,3.520265,2.774125,4.123045,3.518645,3.791465,3.791465,3.321325,4.107615,1.74426,2.754715,0.9440322222222223,1.93297,3.38628,2.5620366666666667,2.953898333333333,2.953898333333333,2.752475,4.51719,4.350475,3.68054,3.425405,3.88803,2.6002300000000003,4.2945225,2.701075,3.773935,8.26115,5.01985,2.73653,3.351565,2.958695,4.4494,3.051578,7.3799874999999995,4.445203,4.649815,3.309555,3.7667,3.647625,4.33357,4.78839,2.68721,4.54934,5.9612,2.755265,2.1232617777777776,3.237385,3.26694,3.6558,5.7615,2.24811,2.3902433333333333,2.92921,3.0275175,3.1224900000000004,7.195970666666667,1.496365,4.975630000000001,4.975630000000001,3.114675,3.8900233333333336,3.24419,2.5221433333333336,5.25551,4.520085,2.1421166666666664,3.913785,3.884125,3.4576941666666663,2.833985,2.749025,5.765248333333334,3.430565,5.17865,3.08908,4.7564,4.07884,3.78159,3.0185666666666666,1.9797233333333333,3.111395,3.71983,2.92984,3.236266666666667,2.97188,6.299379999999999,2.46551,1.8045075,3.250820833333333,2.3078766666666666,3.765165,2.755555,0.8311733333333334,3.58966,4.07602,4.0701,6.091944999999999,3.01497,3.039695,3.0074133333333335,3.0074133333333335,3.8925875000000003,3.90097,3.665695,2.0463,5.4833275,2.16492,4.541125,3.61872,7.97137,2.8333033333333333,1.2771066666666666,3.24831,4.603675,0.6221625,3.92678,3.236545,2.864875,3.219485,4.024185,2.2529166666666667,2.437255,9.32399,3.465325,2.87181,1.4176066666666667,3.650715,2.614735,2.41190125,4.103315,5.3985075,1.5931875,1.15401,1.0485766666666667,4.301825,4.19975,3.652485,3.27936,3.27936,1.57094,2.37885,3.0784305555555553,0.9017455555555556,3.052335,1.10286,1.59465,3.42317,3.2749,2.73147,2.63242,2.5075666666666665,4.52111,3.651765,3.21741,3.32151,2.977825,4.181915,6.960715,3.95904,0.92276125,2.5667150000000003,8.89099,4.620475,3.969095,1.1071475,4.449048333333334,1.3930016666666667,3.5018225000000003,3.5018225000000003,3.78161,8.163786666666667,0.7917799999999999,4.55286,4.294325,2.37314,4.244623333333333,3.64468,2.1245225,9.65032,1.8661675,2.4244666666666665,3.213365,1.79714,4.187597500000001,2.903455,3.199775,3.365856,2.86177,3.01696,1.0827616666666666,7.36233,3.724665,3.904175,3.81224,1.9306725,3.008415,3.9036166666666667,3.746915,0.5952384615384616,3.59246,4.03162,4.42958,2.0591625,1.369876,4.012145,4.118645,8.36129,0.6948061538461539,0.77156,0.77156,1.7923533333333335,1.4703666666666668,1.444464,1.82467,4.670115,1.3055133333333333,0.9006242857142857,3.98988,3.575405,1.221515,3.353155,4.76215,3.45182,0.714564,2.12421,9.167655,3.3868066666666667,3.29254,3.097655,1.7137575,2.44236,2.598695,4.4271,4.12972,3.687335,0.8830871428571428,1.372176,0.888428,4.128115,4.39723,4.175465,0.9017455555555556,1.6617840000000001,3.762235,2.2509671428571427,5.2477100000000005,1.11122,4.76762,0.5286266666666667,0.5286266666666667,0.5286266666666667,9.711915,3.98754,1.10286,3.85773,4.82415,2.815405,3.28371,4.85845,2.536345,1.8407311111111109,2.0121933333333333,0.714564,1.5457373333333333,0.5435311111111111,0.8458816666666666,1.39605,4.04615,3.65512,1.9840575,7.252186666666667,4.952345833333333,0.5966177777777778,6.18765,4.981093333333334,3.348575,4.42988,7.804131,3.732933571428571,4.952345833333333,4.4906085000000004,2.2867666666666664,4.095605,3.85386,6.99501,3.571095,0.46124200000000004,1.526644,4.003075,1.77942,1.15401,4.020955,2.3483266666666665,1.72311,3.18634,1.71229,4.55477,4.35963,3.94164,4.79587,6.31933,2.56253,3.818305,1.457068,2.368595,3.462065,3.19271,2.1421166666666664,3.985505,2.57744,4.94167,2.80323,2.44357,3.366016666666667,1.6270700000000002,3.46978,0.9017455555555556,2.3123285,1.0485766666666667,1.779535,3.543915,1.496365,1.39605,1.8895825,3.303185,7.35009,0.8830871428571428,1.1071475,1.268078,3.58142,3.533605,1.268078,4.014765,2.368595,0.6221625,0.9017455555555556,1.7923533333333335,1.457068,0.4444571428571429,1.6806640000000002,4.2161566666666666,2.37314,1.2751533333333334,2.91582,1.27981,1.8661675,2.6049883333333335,2.0121933333333333,4.74675,2.6049883333333335,0.8311733333333334,3.071969,2.082875,0.08815045454545455,0.08815045454545455,0.08815045454545455,0.08815045454545455,0.08815045454545455,3.3373333333333335,2.7466000000000004,2.6461099999999997,2.7529566666666665,4.648905,4.455545,1.7468139999999999,3.76562,3.706225,2.24876,5.0072375000000005,2.80042,2.579175,2.57921,2.832005,4.42586,7.609206666666667,2.129735,1.8824333333333334,3.032995357142857,0.8943728571428571,1.4423700000000002,2.4383033333333333,1.99885,1.47294,2.862,2.1943766666666664,2.8081666666666667,2.5224166666666665,2.6676800000000003,3.61723,3.38,2.54744,1.246458,3.685305,3.62375,1.5916,1.268912,1.268912,1.268912,3.44398,2.6254033333333333,1.1557899999999999,2.13518,1.3463485714285715,4.319245,1.5385433333333334,6.214370000000001,3.1829925,2.55492,3.188472,3.188472,5.335806666666667,3.167315,4.220365,4.680085,2.084395,2.9434966666666664 +GSM1946785,1.0,1.9960775,1.9960775,1.5787633333333335,4.879335,5.9207,2.475477105263158,1.6544566666666667,8.03341431372549,4.540245,3.2003833333333334,2.930355,3.2536,3.376595,4.37675,1.83796,1.5260960000000001,5.0256,2.5803933333333333,2.271655,4.74607,5.390981666666667,3.940675,2.830655,1.903632,4.26022,4.760355,4.469115,0.7035191666666667,1.5531127777777778,1.9119244444444445,2.289995,1.942415,1.1798671428571428,0.6787491666666666,3.158644642857143,1.5320075,1.807545,1.19592,2.11652,1.18511,1.0823775,1.076552,1.498082,0.9547800000000001,0.9363720000000001,0.749652,1.2134800000000001,1.675842,1.8560500000000002,1.5011839999999999,2.09018,1.7149539999999999,18.330783166666667,0.3843493333333334,0.8250080000000001,1.148158,1.7067799999999997,1.5047380000000001,1.707214,1.0811300000000001,1.0811300000000001,1.0811300000000001,1.1582116666666666,1.0116,4.914820000000001,1.228715,2.50225,2.085865,2.593975,1.00061,2.300855,2.32029,2.1717925,1.4101975,2.079545,1.558335,1.6749525,2.47449,3.85789,4.75736,4.939435,1.6974099999999999,4.701725,4.491441666666667,4.0668,4.15735,1.09644375,7.74192,0.59814875,0.59814875,2.256305,1.1420171428571428,16.43956,4.90697,5.43055,5.67585,4.288,4.2325,5.3508,0.5080688888888889,2.2259654166666665,1.5880675,2.3491625,4.703085,3.97037,1.4736,3.062063333333333,3.1344999999999996,2.856,3.6363333333333334,3.356205,5.20525,2.79278,4.573325,3.09718,0.728129090909091,1.724702,2.502775,4.911865,4.28732,0.555546875,3.812215,3.738035,0.8884575,4.52172,1.7176038961038962,2.39537,2.797725,2.0465625,3.67255,5.6173,3.40134,2.7181466666666663,3.229886666666667,2.96278,3.89674,3.03589,5.7079,3.40981,4.54543,3.27837,2.75775,3.602485,2.499045,6.944598333333333,3.53714,3.665465,5.1909,3.26123,5.0248,0.7557333333333333,9.594729761904762,3.601965,2.230703333333333,2.1141316666666667,3.365133333333333,2.525725,4.69032,5.57475,2.1516975,5.138586666666667,2.81954,4.733975,2.1516975,2.708413333333333,4.557105,5.194665,4.438905,8.887666666666668,3.327935,4.86174,2.982175,5.2956,4.67237,1.7642666666666666,8.26239,4.32348,3.957725,3.992415,3.57273,3.34436,2.342725,6.38685,2.365865,3.905305,3.954585,5.2271,5.0882,3.92346,1.4936016666666667,2.728605,2.998325,1.643275,1.643275,6.132047523809524,3.10509,1.9419633333333335,4.211215,4.482785,2.887785,1.4686283333333332,1.034181111111111,6.8471,2.88694,6.76445,3.97731,4.317465,3.733265,3.08116,3.793505,3.541675,3.91797,4.16586,5.8676,2.78147,3.62506,9.059736666666666,4.67142,3.5911333333333335,3.083553333333333,2.899343333333333,3.986333333333333,4.3010825,1.8083725,2.66061,2.304796666666667,1.7777100000000001,1.78479,2.5689100000000002,1.74087,2.1801925,3.056696666666667,2.8162000000000003,2.4147666666666665,2.8805,4.491441666666667,3.54844,3.425665,3.456155,4.620005,1.4233183333333335,2.43502,2.8706197142857146,2.0903,2.6118566666666667,2.2732966666666665,3.393266666666667,1.8546779999999998,1.3663266666666667,2.91126,0.663842,1.6309233333333333,0.5503344444444445,0.5503344444444445,1.6365866666666669,2.9868433333333333,2.8588,1.3992066666666665,1.5410966666666666,0.3257969230769231,2.7139966666666666,0.663842,1.1708,0.2555954054054054,1.44027,2.0822275,3.6056333333333335,2.9341833333333334,2.3365966666666664,2.54041,2.45874,2.44366,2.54632,2.54122,2.16904,2.6319033333333333,1.9960833333333332,3.07896,4.234465,0.6881483333333334,1.8867399999999999,2.6199566666666665,1.9879166666666668,3.5165800000000003,1.522446,2.56995,2.39819,4.38926,2.1941366666666666,6.987759523809524,1.6405428571428573,2.8157333333333336,2.0305225,2.1496325,3.6117000000000004,2.0448025,1.973865,4.159865,2.6555866666666668,2.2271525,3.843895,4.26892,4.23973,3.88388,2.243525,3.338045,4.727409333333333,3.87489,3.859675,4.215475,4.548095,3.097515,4.349555,3.48301,0.8803625,4.85058,1.3340433333333335,4.914795,3.796125,5.9129629999999995,4.13141,4.221865,0.96332875,2.237435,3.469285,4.092635,0.8796299999999999,1.2641002991452992,2.052665238095238,3.7906714285714282,5.5898975,5.5637039999999995,2.3584225,3.30401,5.2656,0.33613,3.612375,2.38369,0.9829675,4.760855,2.03989,12.250685,1.3491125,1.57626,2.5312266666666665,2.46575,2.0847919736842107,5.03713197368421,0.3423794736842105,1.65184,3.132123333333333,1.0009625,3.5667000000000004,0.9563957142857143,5.46155,3.849315,1.97252,6.20645,5.54115,2.4938175,1.1483685714285714,4.43756,4.97355,4.33138,0.8940363636363636,8.072420000000001,2.8705200000000004,4.53791,2.6583099999999997,2.59061,4.56012,2.452786666666667,2.82531,2.4242,2.4437533333333334,3.094925,3.02443,0.34831125,4.02631,3.712915,3.81463,3.940925,4.371725,6.115864999999999,4.050755,1.639485,5.49755,4.6413,4.2954,4.46854,1.1385533333333333,2.85969,3.2802133333333336,2.7182033333333333,15.62361,3.14236,3.75485,4.33947,5.60785,2.650425,5.168334861111111,1.8011225,0.7824722222222222,2.701375,3.49249,3.91907,4.168515,6.427471666666667,2.972236666666667,2.110905,2.128165,3.3955333333333333,4.936125,2.352625,0.3730545386904762,2.7110383695652174,1.9394675,1.14722625,0.4816649734730849,0.5902754082556936,0.3730545386904762,0.3730545386904762,0.3730545386904762,1.107825,1.30769,0.98491,1.47844,4.356625,0.21748588235294117,11.48556882034632,3.239796666666667,2.8368633333333335,4.275395,4.075045,3.90446,2.155665,4.819525,4.114122999999999,4.374895,3.863605,0.71124,3.3356,4.325089743589744,0.5893757142857143,3.51019,3.0301566666666666,4.766895,0.5318472727272727,1.759955,4.37491,4.51441,1.96908,1.7285266666666665,1.6189866666666666,3.4837333333333333,3.890895,2.971955,2.89288,5.296,5.6579,4.91733,3.063696666666667,3.254849,6.30955,3.6245999999999996,5.29475,0.4152166666666667,3.22466,3.9508866666666673,1.9994433333333335,2.63141,2.9112816666666665,5.224021666666666,0.6626791666666666,2.601525,4.371075,4.06535,1.0324685714285715,4.594685,3.879645,5.10265,3.2123933333333334,4.305905,3.419035,4.354765,1.1653416666666667,3.55956,2.64837,4.654935,4.334195,4.64797,5.6615,4.39554,2.629345,5.26711,2.41298,3.09433,3.0589866666666663,2.772733333333333,2.6905966666666665,2.4488133333333333,1.784524,1.5553100000000002,1.9920766666666667,0.83004,1.76176,2.224206666666667,2.0733533333333334,3.0635833333333333,3.17566,2.94426,0.9879555555555556,5.13935,3.516833333333333,5.577389166666666,2.8052925,3.11547,3.213983333333333,1.8264166666666668,1.8264166666666668,2.416547922077922,2.416547922077922,3.215778279220779,0.49283714285714286,1.7739466666666666,2.486006666666667,3.5850666666666666,2.2086538095238097,2.2086538095238097,2.2086538095238097,7.4131487499999995,4.371816666666667,0.9584909090909091,3.82353,4.822230833333333,2.3086475,4.725895,3.21782,2.310345,5.0478,3.114993333333333,3.2446933333333337,0.83590875,1.96739,3.512166666666667,2.727743333333333,2.539966666666667,5.8867,3.8360333333333334,3.7434666666666665,5.036390000000001,1.9476166666666668,2.5753233333333334,3.0444766666666667,1.0483377777777778,2.1510266666666666,4.678006,7.804955,1.489305,2.86855,4.53016,1.8901800000000002,1.8731875,1.8731875,1.06801375,4.8943,7.54847,4.38875,5.491625,4.68479,1.7874166666666669,4.03195,3.39655,5.03145,5.1776599999999995,0.3627368421052632,2.90155,3.48085,3.983745,4.08154,1.7831959999999998,1.9281025,2.56885,4.456315,3.916015,3.01693,2.475065,1.577278,6.8707,4.81705,4.904105,3.547415,4.70273,4.530245,5.26975,4.065225,3.7611425,1.9235875,1.1329571428571428,3.00939,4.03667,3.904625,5.68473,6.0118925,2.3384375,1.8144600000000002,2.71149,2.7809233333333334,2.9144733333333335,0.6741400000000001,2.079435,3.60269,1.1148975,5.05475,3.255325,6.1020425000000005,1.244835909090909,1.244835909090909,3.905535,3.777725,3.71492,5.4374,2.7990333333333335,2.29434,3.85767,3.710825,2.076245,3.3863333333333334,2.6281033333333332,4.10366,3.411915,3.63734,4.5791,1.0712644444444444,2.77297,4.316,4.532595,3.28228,2.4864,5.8805,0.7469122222222222,0.7469122222222222,0.7469122222222222,0.7469122222222222,1.5394255555555556,3.83025,3.83025,1.8184566666666668,7.055076666666666,3.24865,4.452825,3.1957866666666668,2.7217,4.81291,4.21769,4.811105,5.23945,1.782275,4.116775,3.84476,2.67174,4.532705,3.31964,2.475565,5.11545,1.87626,4.467615,1.659685,3.4581375,3.22511,1.740875,1.1781949999999999,2.968595,4.381345,1.348188,0.84586,3.84156,1.2934675,5.000465999999999,4.622845,1.2939814285714284,3.634305,0.7702088888888888,2.60316,2.5706,2.46013,2.76298,4.135525,2.839859166666667,4.65936,5.4913,4.28994,4.499455,2.26676,1.2765885714285716,3.92122,4.99976,1.357795,1.357795,4.078765,0.248634,2.2037733333333334,0.248634,0.248634,0.248634,0.248634,5.1465,2.6693833333333337,2.936095,3.53745,3.13252,4.588395,2.6809733333333337,0.97437,0.97437,0.9860016666666667,0.9860016666666667,3.78932,1.83347,4.4743,1.6818805357142856,1.6818805357142856,5.00373,0.6088478571428572,2.319035,7.509738333333333,4.883975,3.24979,3.755345,0.9598325,2.23408,2.0025775,4.79326,4.49687,4.376085,3.79732,1.2698642857142857,2.5438,2.029115,7.65115,1.780115,4.32934,4.797695,2.80589,3.938805,5.89219,7.7973,3.971155,4.861095,5.03965,2.433805,3.32124,2.299435,2.399325,1.895215,3.807375,4.858715,5.634611666666666,6.79194,4.29002,1.0872666666666666,1.911225,4.087155,4.10874,2.172935,4.803505,4.1306,4.650266666666666,1.7241099999999998,3.9534333333333334,1.5295533333333333,6.505633333333333,2.8978699999999997,2.4006,2.2392766666666666,2.452345,3.6029999999999998,3.5027666666666666,3.6807,3.15297,3.3256866666666665,2.3618200000000003,3.785805,3.123495,3.20032,0.3847615,3.09474,4.32007,2.5958,5.50645,4.917615,4.45479,6.75283,4.871605,2.2021566666666668,4.37256,5.152,1.572745,5.2086,5.88925,5.24655,4.79812,3.209555,5.62585,5.0542,4.0426,5.44698,7.6086525,4.024005,1.2640433333333332,1.476735,2.543,1.8607600000000002,4.51842,3.999845,5.3747975,2.52563,2.5230133333333336,2.7558133333333337,2.4806733333333333,2.4554033333333334,1.08677,0.5049358823529412,3.977335,3.97343,4.1081666666666665,4.23258,2.898485,3.33187,5.401318333333333,3.0358366666666665,0.5940470588235295,3.447795,5.70915,2.0386675,1.737512,3.806185,3.6595,2.50829,3.9505,4.39278,2.7058199999999997,2.20879,2.33513,2.4586333333333332,2.657765,4.177393333333334,5.078105833333333,7.127148916666667,1.6152819999999999,4.950055,3.515892916666667,5.508618916666667,2.897256666666667,3.05665,2.31845,2.3629666666666664,1.4487425,1.4487425,2.68833,2.4214433333333334,2.7608599999999996,4.05591,1.761344,2.20429,2.04014,0.62700625,3.88813,0.632335,1.01438875,3.49479,4.60356,4.11333,1.6600225,4.69824,2.97047,0.8716642857142858,4.35323,3.8863595238095234,3.2028833333333337,2.452035,5.0375,0.2771906896551724,2.3076136666666667,3.214695,1.4536925,3.6848,6.7125,2.3595,1.38814,3.942095,3.80262,2.81643,2.81643,3.53663,3.89473,4.720415,5.426023333333333,5.01165,0.976061111111111,2.8874,2.5885599999999998,4.39416,5.2223,5.29835,5.0047,4.3895333333333335,3.871166666666667,3.8252333333333333,3.6255666666666664,4.0174666666666665,3.0962666666666667,3.09428,0.636615,2.3988075,2.4210475,3.78481,3.165673333333333,3.10472,0.7629366666666666,3.33389,3.922202,4.34723,5.6812,4.7611,2.037985,2.037985,0.8194570000000001,3.19985,4.50244,4.177295,4.562810714285714,3.31305,4.886445,0.5940500000000001,3.4111,3.87317,4.25977,3.7203066666666667,0.8981899999999999,3.728045,3.970035,5.51515,3.843295,5.0002,2.75605,4.24795,1.6590675,0.9929028571428571,2.7214066666666668,5.2287,4.14105,3.144145,1.4510616666666667,4.03536,2.5331,2.78515,2.760884222222222,3.001673333333333,4.386013333333333,3.0268866666666665,1.819868,3.4890666666666665,1.4583067857142857,2.8496799999999998,2.59614,2.288325,2.8590633333333333,3.0261433333333336,2.42831,2.7186766666666666,3.76895,3.0231066666666666,3.549856666666667,2.47872,1.956945,4.12971,2.89962,2.53171,3.549856666666667,2.33718,0.795660909090909,2.4024925,1.0234711111111112,2.1675075,1.6603275,0.9459,1.7238275,1.88404,2.644229,2.66955,4.630465,1.4919425,4.58539,3.16506,1.562508,2.2385433333333333,2.6335133333333336,1.89842,2.814033333333333,2.83338,2.325305,1.789285,1.8372039999999998,3.624233333333333,2.3823433333333335,2.9160044444444444,3.23578,2.999033333333333,3.8945666666666665,2.17158,4.306566666666667,3.507633333333333,3.9408,3.11823,3.5467999999999997,3.7678333333333334,1.9822366666666669,9.770755000000001,4.36178,4.42096,3.442415,2.8755,1.93449,3.992805,1.68548,4.053545,4.55137,1.4982,2.6583799999999997,1.1967683333333332,2.651733333333333,1.7229733333333332,2.3824166666666664,5.015723333333334,3.19435,3.61423,4.89595,0.817085,1.56269,0.979306,3.92853,10.606783333333333,3.731833333333333,6.74435,1.99098,5.2653,4.4378,2.4525525,5.21975,0.29011176470588235,0.8408457142857142,5.28195,4.61076,7.086755,2.015205,4.343735,5.81685,4.55333,4.689755,3.911215,4.75507,3.610765,5.652116666666666,3.837545,3.48904,3.401555,2.2491066666666666,1.9296766666666667,1.4388893125,2.43994,4.06146,4.85658,1.563504,9.04525,2.3549266666666666,2.9556633333333333,1.0200799999999999,1.0200799999999999,7.456742083333333,3.033265,2.4373575,2.152025,2.7453000000000003,2.1953866666666664,1.07488,3.4675658333333335,2.6222133333333333,0.6117228571428572,1.6422666666666668,3.2883579999999997,3.2883579999999997,1.1679666666666666,2.516653333333333,2.2650033333333335,2.7985966666666666,1.3104075,1.78456,4.834586,2.75979,2.67445,1.3741675,1.3741675,4.34667,5.477,4.785365,3.262815,3.79288,5.59902,4.5408,3.1490633333333338,3.1541200000000003,4.05576,1.146965,3.2792966666666667,2.5742,3.677015,2.20515,4.77838,3.48654,4.31661,3.484615,5.530131,1.0420922222222222,2.137675,1.847145,3.586315,4.199545,3.69027,3.902115,3.97025,3.18096,1.858595,4.347375,3.412845,3.418405,2.41598,0.84533,3.354325,4.35198,4.82367,1.2074266666666666,2.965003333333333,2.78525,1.96344,1.7390836274509804,1.7390836274509804,1.1686783333333333,2.4016466666666667,1.10848,1.377376,4.543915,4.397205,0.5101047619047618,3.48779,3.3784333333333336,4.449555,5.5799,0.41398900000000005,8.7808,5.4899,3.452625,3.943985,4.66204,5.4123535714285715,4.93778,6.704915,0.7060081818181818,2.76566,5.3399,2.9267333333333334,1.9023225,2.02614,4.720565,5.26640375,2.463655,3.10526,3.3440999999999996,2.0349425,4.58517,10.801300000000001,8.383880416666667,3.8504666666666663,4.72946,3.1331875,3.14886,3.88136,1.850048,3.0175466666666666,3.752975,5.02105,4.956035,5.00548,6.670726666666666,2.4934933333333333,4.841385,4.588115,4.97582,4.970455,8.223776666666666,4.265005,6.0619,3.368085,2.965465,2.910725,6.00605,3.72477,5.3082,2.180545,3.153176666666667,3.3253,6.1061,4.21127,4.10799,1.451288,0.89786375,2.47728,0.6387933333333333,4.19675,3.601805,3.50955,2.925125,2.1286666666666667,2.9288,2.5884,2.993126,1.8281420000000002,3.04980125,2.8886,2.1970575,2.639325,3.739034,1.3158483333333333,2.8162458333333333,5.23985,3.8553333333333337,1.3629225,2.9225499999999998,3.8094399999999995,3.529598,1.552075,5.7268,5.6984,2.1018133333333333,2.9564533333333336,31.342019307476836,3.417566666666667,1.7314999999999998,4.007666666666666,1.5899133333333333,2.62884,2.97494,3.4966000000000004,1.965075,2.843825,2.1120625,3.909365,3.2976233333333336,2.49476,1.4999875,2.25624,2.921775,0.3911163636363636,1.075375,2.8270733333333333,1.6828800000000002,3.382905,1.552075,2.05719,25.75259627777778,5.0948,4.33253,3.581305,2.62689,2.551675,2.65386,2.298435,3.983795,5.329924,5.44365,1.5841939999999999,1.8452940000000002,3.358075,2.491531666666667,3.862335833333333,5.3476,4.72568,4.49812,0.1882327659574468,4.97119,4.670820833333334,3.79171,9.51781,1.053725,1.053725,3.0131200000000002,3.185805,5.6311,2.032357777777778,1.0530933333333334,4.93556,1.924625,4.1356,4.01227,3.43721,4.13784,3.994355,4.977975,2.939015,0.7335644444444445,3.12567,2.139225,4.320155,8.268725,4.39036,2.343933333333333,2.343933333333333,6.8590125,4.79306,4.24885,5.9714,2.2977066666666666,5.443439166666666,1.5386233333333335,1.5190866666666667,2.88878,2.45264,3.30428,2.7377066666666665,3.86812,4.3454375,4.307215,5.4442,2.33369,2.735,1.8535825,2.70725,2.3185575,2.29331,2.06618,4.7164166666666665,1.8458025,3.5760523809523805,2.5347666666666666,3.16762,2.6587366666666665,1.7600033333333334,1.457157142857143,0.9897159999999999,2.6792866666666666,3.949533333333333,0.786948,4.53646,1.80573,6.1019595833333335,1.9562725,1.551785,1.492995,1.5481766666666665,5.6910388888888885,1.876986,3.0742700000000003,3.668066666666667,1.24625375,1.822495,4.888837333333333,3.1788433333333335,2.7598233333333333,3.550333333333333,2.8319666666666667,2.907016666666667,1.245765357142857,0.25192833333333337,0.25192833333333337,0.25192833333333337,0.25192833333333337,0.25192833333333337,3.48765,2.6036733333333335,2.4154075,3.32553,1.4106433333333335,2.6377466666666667,3.2811733333333333,3.5078,3.74005,3.05102,1.7006433333333335,2.95058,3.1970899999999998,2.353975,1.9859275,3.69116,2.870903333333333,3.6364,5.32625,2.803053333333333,2.6157333333333335,2.5512166666666665,11.035946666666668,4.805015,4.59938,4.8942,4.357615,2.8805300000000003,5.1292,3.969805,4.14577,5.62291,4.002435,3.22342,2.13262,3.49462,5.129437,3.718665,18.416048297619046,1.15190625,4.756835,0.8564422222222222,1.271,2.95595,4.681555,4.17217,4.79495,1.5819349999999999,2.377635,4.222945,2.705833333333333,4.3266,3.256170357142857,2.6232666666666664,0.6402283333333333,2.96395,4.692225,2.381175,2.4620575,2.143945,20.1722525,1.748742,1.3412125,2.64704,0.30996730769230774,1.85363,2.8178366666666665,2.01342,2.90673,2.691875,7.458293333333333,1.9181275,2.581025,2.2305225,2.100605,1.5747333333333333,3.3908,3.35354,3.76956,3.132623333333333,1.95502,2.509383333333333,3.118860833333333,4.90002,0.4094275,3.6147666666666667,3.05669,3.151675,2.07651,3.6305625000000004,3.460005,1.6425633333333334,2.3106933333333335,2.24882,1.6995266666666666,1.98199,3.59996,3.27092,1.1396283333333332,3.07567,5.2002,4.18273,2.521178,2.521178,3.1133,4.662495,3.03606,3.377295,2.3067325,0.9992818181818183,4.38572,3.550345,6.0784,4.15584,2.41287,2.41287,1.7492025,3.675675,5.08965,4.045525,4.19175,3.2006766666666664,2.2774300000000003,4.443155,3.540145,4.142125,3.0990300000000004,2.63369,4.378047333333333,3.07981,2.695736666666667,1.9651566666666669,3.581485,2.658125,1.61897,3.68517,3.988155,4.36119,3.509066666666667,4.597475,4.345495,6.730998750000001,3.907895,2.15408,4.670305,2.97579,7.527125,2.65692,1.2828933333333332,4.451255,3.4123,4.760555,0.5403478571428572,0.84245,3.82338,3.72407,2.134544090909091,4.392325,2.92404,2.829365,10.575337999999999,1.9130179999999999,1.185402,3.906345,3.91813,3.710385,4.917935,7.084875,3.1438550000000003,2.1069566666666666,3.131736666666667,1.8754066666666667,3.5450666666666666,8.55468145320197,0.9229138095238096,1.051575,4.693965,0.469568,1.6371325,2.175435,2.897375,3.0302,2.764725,4.22177,2.3715575,13.193475,5.004462500000001,2.4913275,2.4913275,4.245845,0.83379,5.081783333333333,3.99413,4.0555,6.130006666666667,3.450565,5.51525,1.4368016666666668,2.85935,2.864415,2.650325,3.068655,2.74807,3.076995,3.522175,3.702315,3.188685,2.94023,4.883735,4.40225,4.5228,2.9547966666666667,3.2783866666666666,4.916024166666666,4.365895,18.812238333333333,12.218965357142856,3.2644921428571427,0.68405,1.4961285714285713,4.45692,3.733035,3.0302517307692307,2.224045,0.8734711111111111,0.6710275,0.9073614285714287,1.987255,1.622438,5.237516666666667,3.4498333333333338,0.7225636363636364,3.326175,2.379115,1.96711,1.808434,6.37494,1.560616,4.44948,2.9836,2.9642700000000004,2.32408,2.718636666666667,2.54249,0.7505372727272728,3.202065,2.9903166666666667,3.9043593333333333,3.0488,7.518687916666666,3.57368,3.269445,2.3496425,3.54773,7.719225,2.0480825,2.4559625,2.565675,1.6390425,2.5164,2.296555,2.59375,0.913761,1.423785,1.02367,2.934485,4.352755,6.35475,5.76535,2.680925,2.360855,2.914575,3.5034666666666667,7.863313333333333,1.22224,0.399745625,3.01532,2.12588,1.586144,3.623154,1.301566,1.9853093333333334,4.303593333333334,3.1561593333333335,1.1921083333333333,1.9120366666666666,3.8051966666666663,3.527275,4.60431,4.48423,2.13368,5.32385,3.89149,0.7878923076923077,4.907695,4.047945,4.64826375,3.3246800000000003,2.367825,1.2551640000000002,1.1926375,3.561885,2.74454,3.275205,4.21149,2.636715,2.7076,3.33298,3.769035,4.616045,2.500025,2.71671,4.22482,5.8814,0.55140875,4.46944,1.7833675,3.467665,4.0659,1.8635375,3.085125,2.205155,1.993945,2.587965,2.442864166666667,1.74909,5.2269,3.7471,1.2734914285714287,7.0454,0.9984533333333333,3.54535,1.6649933333333333,4.55233,4.15915,3.4929333333333332,3.236125,4.034135,8.70616,2.9577,3.634465,3.81688,3.685025,1.687655,8.08703,3.54942,4.199935,1.506535,4.220735,3.017475,1.088615,2.17742,4.15949,2.14517,4.168335,4.8817225,4.0953975,4.57062,2.217995,5.19945,3.901865,3.2645033333333333,2.4869033333333332,1.773442,4.904495,6.19105,5.1402,4.594,3.00214,2.225315,4.746055,3.447675,1.1762269230769231,4.08786,4.841585833333333,3.97124,2.535605,3.59358,0.5107014285714285,0.5107014285714285,5.1108,4.12371,4.909715,2.368475,3.667875,5.9871,0.838968,4.21182,4.921095,4.74287,4.654035,4.633905,1.808635,3.116725,2.1742325,4.30744,0.69490625,4.16532,4.32882,2.8727,2.8413466666666665,4.36354,2.20769,3.312475,60.65711042207792,3.40671,2.60974,1.675905,3.267385,3.95814,0.8008225,0.98143625,2.140495,2.140495,1.336172,3.1358,2.45884,3.7315125,7.54436,2.8643366666666665,1.2535900000000002,1.417415,2.753826666666667,4.063599166666667,0.896397,1.867095,1.3352359999999999,1.9595775,4.21565,4.149275,2.967285,21.32248673160173,4.309065,3.888805,3.21584,2.188336666666667,3.018605,3.23579,2.508025,5.29693,1.6217320000000002,4.060815,3.315294488095238,6.050909722222222,2.05903,2.59866,1.810245,4.888325,2.34388,2.1888175,2.14516,3.6822083333333335,3.778285,3.524805,4.1553,4.54936,2.5912,2.914715,3.168985,2.799865,2.9185283333333336,2.136625,2.002655,3.383775,1.1558,4.332785,4.532905,2.603205,5.20975,4.92654,5.000138333333334,2.0292933333333334,2.370525,2.69477,2.763155,4.08782,3.453625,4.665025,0.72093,4.094072000000001,2.905985,3.831635,2.3865825,1.7848859999999998,4.188163333333334,1.2075888888888888,2.973865,4.365515,1.1591960000000001,3.584205,3.526865,4.694895,6.260199999999999,2.057025,2.822685,2.63129,3.768266666666667,2.9785766666666667,2.695489333333333,3.4938000000000002,2.4480299999999997,2.4350133333333335,1.3552333333333333,2.1788375,2.1788375,1.9129266666666667,2.06122,2.20499,2.63558,3.809665,5.5855,4.36814,1.632785,4.379485,3.72302,3.510935,4.269005,1.986105,1.821085,4.621735,1.76392,4.678981666666667,4.27529,3.57552,2.4739400000000002,3.6383075000000002,3.19726,3.0427,3.554775,0.1458669387755102,2.6346333333333334,7.732665,1.526464,3.45314,3.672665,0.9949542857142858,1.19694,1.90165,3.86259,2.97178,7.049379999999999,3.433425,3.663035,2.93317,2.691225,3.572415,3.51502,4.020785,3.47091,2.82799,5.5102,4.17114,4.307705,2.874503333333333,1.9757225,3.39851,4.618105,2.74251,3.21116,2.09746,2.576505,3.69353,3.787635,2.628765,4.512925,5.1071,2.729115,4.10604,4.5518,3.49045,4.55515,3.48438,3.2599,6.34803,4.55915,5.6506,5.28325,4.32049,5.354795,4.56344,3.897435,1.303504,6.6885,2.4043,5.0067,4.17019,4.060535,3.1107600000000004,1.9649733333333332,2.2960366666666667,2.391573333333333,0.994454,3.435166666666667,3.7845,3.0503066666666663,2.2190966666666667,3.73311,4.28399,2.5220766666666665,0.5434783333333334,4.57496,4.54485,4.895525,5.05065,3.876655,4.574095,5.0728,4.819075,1.4101,0.9618384615384615,2.80074,5.0691,5.7982,0.492970625,2.825555,2.4934366666666667,3.56502,4.42073,3.964733333333333,1.94756,5.3256,3.47762,4.58894,2.9919,6.2799,5.18975,6.9337425,0.5610208333333333,4.001275,0.802088,2.334435,4.181466666666666,3.3498,1.2599733333333334,2.3291,4.236215,3.574215,4.23826,2.110866666666667,2.1577075,3.045415,4.54475,4.14386,3.9092,1.656164,1.2248907142857144,5.9089,2.2973425,7.5729925,4.33564,3.61987,2.234275,1.5705225,4.236485,4.474885,1.7035,2.505685,2.5297,2.6346333333333334,6.665523333333334,3.0628666666666664,2.7718900000000004,4.268574166666667,3.86505,1.9240533333333334,3.204825,7.152,4.8271,5.43155,0.5378245454545455,3.784345,4.451885,4.730236428571429,4.06804,4.373495,3.01886,2.76119,3.18579,2.95803,3.632285,1.8371819999999999,5.545222,4.68797,5.0258,3.847715,3.38569,3.139518333333333,2.208075,1.3134125,0.98395,2.782805,2.48119,1.087435,2.6394100000000003,5.4732,4.9485,3.549115,4.134245,16.751285595238095,4.29077,4.485095,3.899645,0.7117,5.1222,4.450755,4.44332,4.81186,5.27805,2.481385,3.54015,3.344775,1.5083119999999999,3.12156,4.852705,3.24484,1.6041899999999998,3.871665,5.1034,3.886235,5.19395,4.82948,5.7033,4.110675,2.715786666666667,4.13549,4.279415,2.604765,3.040013333333333,2.9882733333333333,1.7529375,5.016,2.6833553571428572,2.0099233333333335,3.948415,2.164985,4.416375,4.12971,2.18283,2.615035,4.42118,3.74331,4.5527,4.463015,4.821295,4.7153860000000005,3.14888,5.2738,2.7721216666666666,3.811165,4.14221,1.541204,4.58664,1.01828,4.470325,3.281785,1.0516457142857143,3.76715,2.01966,6.3935949999999995,2.375834095238095,2.375834095238095,2.375834095238095,0.614355,1.1421966666666667,1.904965,3.451945,5.72983,3.5533627777777776,1.902475,2.21061,1.7127433333333333,3.712735,2.426095,0.4033253846153846,1.653105,2.19225,3.112625,1.83162,2.603125,2.352005,2.101295,3.82852,3.015836666666667,3.199605,2.95629,1.99744,6.56012,2.14269,4.30381,3.913555,6.530065,1.6017566666666667,3.495005,3.83313,3.78596,4.45123,2.96284,1.99328,3.82208,6.2349188333333325,1.953165,3.637395,3.136845,2.0171225,4.704425,4.77675,2.6404733333333334,2.164935,3.7421699999999998,5.839262142857143,5.82125,3.18119,2.39059,2.62842,2.99816,3.30311,3.989665,1.296275,2.819255,4.623565,0.839685,3.803645,3.910625,3.832805,3.395995,2.42478,3.46901,2.03162,4.53675,7.937403333333333,4.354765,3.48521,3.67166,0.9873375,4.549165,2.328925,4.213755,5.669922499999999,4.137765,4.153265,10.74899,4.6932,3.86167,1.51653,0.6987583333333333,2.802675,3.77094,3.40419,3.73597,2.1765233333333334,2.55844,2.17023,1.1607966666666667,1.1607966666666667,1.93288,2.4409199999999998,3.7200333333333333,2.27154,3.665366666666667,3.2789033333333335,2.4806266666666668,3.02138,1.4261133333333333,2.400866666666667,2.1296733333333333,1.8558133333333335,1.51546,2.5083266666666666,0.8179599999999999,10.003534583333334,0.8179599999999999,3.348266666666667,2.0459133333333335,1.9844833333333334,4.487705,4.261145,4.64965,4.912415,2.2125966666666668,2.89953,3.5216206666666667,2.21305,3.5010999999999997,3.2478700000000003,2.5972466666666665,3.0115,1.6807266666666667,5.59395,6.128255904761905,3.1130866666666663,3.538133333333333,3.2250666666666667,2.82654,2.6760800000000002,1.1798671428571428,3.6148333333333333,3.4322666666666666,3.999655,6.06925,4.335825,2.855783333333333,3.4829333333333334,3.0974,4.1523055555555555,4.28367,2.62933,3.85954,3.2598800000000003,3.115543333333333,4.631535,3.22682,4.14869,6.3271299999999995,2.4331466666666666,2.5427833333333334,1.7814133333333333,1.5267733333333335,5.07146,3.6960083333333333,2.6712000000000002,2.1232,2.1546,4.51362,3.820995,2.720075,3.31127,3.390166666666667,3.5629333333333335,3.595133333333333,3.6878333333333333,3.21059,0.56930125,3.8577333333333335,2.5418499999999997,2.7555099999999997,3.55045,4.53587,4.793045,5.4725,2.507775,4.085826666666667,1.1239266666666667,2.79902,2.79902,4.858315,3.380255,3.86172,3.85965,1.58132,3.23472,3.762245,1.1650257142857143,4.011454333333333,3.535626857142857,2.1590939999999996,0.374204,4.11779,3.340705,6.793205,3.157675,6.1495,3.28412,3.893845,4.001205,1.86352,3.455485,4.62586,3.41636,3.4122,3.078796666666667,5.859567500000001,2.1701575,0.99031,1.9342366666666668,1.7180933333333333,5.36495,2.44311,2.4174233333333333,2.0052275,4.53636,3.97898,4.152515,0.634528,4.38964,3.98778,2.9003833333333335,2.701696666666667,3.079053333333333,3.4009336111111113,4.138393333333333,1.6119966666666665,0.6621157894736842,0.8176071428571429,3.6963666666666666,4.633275,6.131201666666667,4.82436,5.1841,5.63705,1.4270571428571428,4.0659,2.1782166666666667,1.0049,5.40235,5.9459,4.26416,4.84225,4.268315,6.77259,4.224,7.019286666666667,3.74292,2.712813472222222,6.0716,10.518979756410257,2.8019133333333333,0.727705,3.64092,4.267435,2.252965,6.3579,4.34622,3.93891,2.866346666666667,2.866346666666667,5.7559,3.438445,3.91599,5.0708,3.9381660952380955,2.480658857142857,1.13939125,5.3726,2.635475,5.49816375,3.711035,4.581275,2.927725,2.20851,4.63199,4.84335,3.5055666666666667,4.05149,4.57125,28.297968095238094,2.1970525,2.530075,2.3068625,1.6891833333333333,2.61177,1.3923514285714287,2.856196666666667,2.99942,3.497033333333333,3.2872333333333335,0.6919923076923078,3.2557833333333335,4.44526,3.16776,3.3093766666666666,3.87096,5.942374999999999,4.788345,4.33703,3.97715,4.097535833333334,4.05423,3.4971666666666668,1.7047825,0.9812249999999999,1.3950466666666665,2.72854,1.5040533333333332,3.2069533333333333,2.4258866666666665,2.35886,1.75812,2.631815,2.019545,2.05411,2.991995,4.17047,3.638765,4.12571,1.5052720000000002,3.9354333333333336,2.5292499999999998,3.889895,2.3213033333333333,2.61963,2.36501,1.4722133333333334,3.90507,6.542278333333334,2.76579,3.747375,4.02211,2.60995,3.268371666666667,3.6070666666666664,4.151815,4.536095,0.3270613127413128,0.3270613127413128,4.990095,5.18705,3.877985,2.94931,5.35345,4.46448,0.6656192307692308,4.806205,4.75879,3.81893,6.5721,4.65516,7.71693,14.260608333333334,13.087578461538463,4.34277,4.242785,2.58346,0.6099284615384616,2.510666666666667,4.8592,1.3383983333333334,4.61257,3.500033333333333,2.9951233333333334,2.1302566666666665,2.0120333333333336,5.0189900000000005,4.60442,9.300078690476191,5.20015,4.09682,7.364474848484848,3.4543,3.33296,1.39646,5.432806666666667,1.99004,2.473666666666667,2.7023333333333333,0.2784378125,2.98156,3.80805,4.594636666666667,0.9213319999999999,1.307295,3.967725,0.54652,0.54652,3.5456312500000005,3.379633333333333,3.4284666666666666,5.548,4.333985,5.6578,3.753435,4.142335,2.90713,3.15822,2.66005,0.9151583333333333,2.8071800000000002,2.858825,3.137215,7.0319199999999995,2.83095,9.505825,3.073325,6.55885,2.943825,2.2146675,2.569475,2.750125,1.751585,2.4309675,2.07218,3.72043,2.427135,3.95571,2.92827,4.022358333333333,4.022358333333333,2.7788633333333332,2.7788633333333332,8.838217166666666,2.6102633333333336,0.8020910000000001,2.5945266666666664,2.5043333333333333,2.5394133333333335,3.95571,1.906114,1.917404,1.51983,3.71491,4.535245,1.7552475,4.36717,4.065025,6.0020677777777784,6.549323333333334,2.2110433333333335,4.244245,6.80271,4.388855,3.242925,2.5451,3.981085,3.5103284848484853,4.32703,5.41738,7.732102666666666,3.5674512500000004,3.449705,1.2248933333333334,4.25763,4.401255333333333,4.320035,3.7518208333333334,4.494185,2.636035,2.751253333333333,6.750135,3.368995,1.546702,5.87321,3.721015,2.99639,5.1296,2.99639,3.084475,3.783095,5.07145,1.06497,4.0937166666666664,4.604665,3.813065,1.4056716666666667,1.8084325,4.306365,4.06842,2.73957,6.894341666666667,4.041545,4.042695,4.197545,4.62681,1.4026625,3.98977,2.64149,3.78591,4.060615,4.066815,5.03215,3.05276,4.084965,5.2351,2.069458,1.8384125,3.508366666666667,3.8156666666666665,3.474266666666667,2.8905966666666667,3.6618,3.1470233333333333,5.33965,3.318585,3.499505,2.71758,1.8105333333333335,3.7311333333333336,2.1808033333333334,3.1363,3.101515,2.81178,0.69490625,2.13825,1.7311266666666667,3.444345,1.9613140000000002,3.671444,3.96355,1.326114,3.1743775000000003,4.634905,0.8389,1.4135366666666667,3.480195,3.78177,3.24075,2.14003,1.8682666666666667,3.48885,2.5657233333333336,1.6667733333333334,2.886825,1.97693,1.203052,1.4039975,6.3791899999999995,3.252115,2.260015,2.458655,2.3706025,3.9076,0.8751425,0.36693642857142855,0.7991857142857143,5.02225,1.9549107142857143,4.6782,2.05005,2.249096,3.601117142857143,1.352021142857143,1.105328,0.720808,0.5724071428571429,2.9979891666666667,6.60355,3.060235,4.270985,0.35356642857142856,3.64787,17.95031966666667,3.200485,7.3723985804195795,1.1359375,1.1359375,1.1359375,1.1359375,5.947858333333333,4.13686,3.91136,2.1610566666666666,3.16381,3.71502,5.4193,3.75173,3.33957,4.396095,4.252145,3.96795,3.676244,4.24255,4.97277,4.11216,4.87926,3.48695,4.21508,2.5925866666666666,3.678295,3.331785,3.883485,3.88558,4.2447,3.17062,2.4532325,2.4584733333333335,4.195465,1.2529821428571428,3.81125,2.760313333333333,3.374664666666667,4.0953975,4.35173,3.105155,2.967025,4.975515,4.304445,3.156835,5.34375,4.91761,3.338575,3.671745,1.716106,1.716106,2.122785,4.650615,3.903625,5.662125,5.1056,3.631373333333334,6.49345,4.86635,2.1402275,9.248255,5.4274,6.82867,4.424895,2.8546933333333335,3.88074,0.25609862068965517,0.8157725,4.233516,3.51726,5.0745,3.2082033333333335,5.942866666666666,5.02445,0.5695607142857143,2.700525,0.44199599999999994,1.7273585714285713,3.348085,2.426915,4.345445,3.69427,3.168815,3.431855,3.46827,3.63376,3.365365,3.60363,3.963015,3.086635,1.7273585714285713,3.38398,2.1227,3.758835,2.21341,3.7513,3.556685,1.687655,4.405745,2.94688,1.3732466666666667,5.7951,4.7873,4.21255,2.8902300000000003,2.9910366666666666,4.29557,1.9620600000000001,1.421436,2.3757533333333334,2.5891533333333334,2.5685866666666666,2.20468,5.21185,3.500955,5.055751666666667,3.8983914285714283,4.982575,4.17995,1.698734,5.299,4.434085,5.4042,4.212955,7.0222,1.7413825,4.85845,4.083685,3.132515,1.87043,1.71106,3.893505,4.38188,2.31254,2.6724129166666666,3.477875,3.477875,2.7962666666666665,3.128436666666667,3.42877,3.93309,3.58421,0.801376923076923,3.148665,4.35385,5.105319444444444,3.26833,3.09396,1.764265,2.839505,3.37269,2.15772,4.47468,3.71053,4.63905,2.0828533333333334,1.0086545454545455,6.10603,3.67776,3.5192333333333337,3.3241933333333336,1.7623919999999997,30.334065928571427,4.234715,3.320355,5.61535,4.41463,0.8546083333333333,7.227454999999999,2.04857,5.80705,1.493145,4.41258,5.397978333333333,3.66758,3.275015,2.29737,3.9134333333333333,4.92185,2.11511,2.7148299999999996,3.665385,3.222185,2.577245,6.2601,2.505275,6.2544,1.1984625,4.30653,3.577895,3.915725,5.30515,3.186545,2.448983333333333,4.14432,4.68228,3.7056175,3.7056175,6.2576,1.6406425,4.29184,7.027688333333334,3.4106,4.104565,3.389325,5.63755,3.485275,4.18064,1.3932625,2.55447,4.40781,4.347835,5.5537,4.42488,2.227045,9.5488,3.189995,3.69304,1.7354,3.489955,2.2541433333333334,2.7188433333333335,2.2139041666666666,1.28335,2.6305366666666665,0.9128985714285714,1.0700028571428573,1.0700028571428573,1.0700028571428573,1.9501133333333334,0.5594475,3.864355,1.2575266666666667,2.7827866666666665,0.97144,1.83415,2.6553333333333335,2.28537,0.76825,1.9442066666666669,1.7896533333333335,2.4239533333333334,1.6559259999999998,1.6559259999999998,1.6311600000000002,1.8796099999999998,1.393886,1.9858366666666667,1.51499,1.19286,2.43646,2.381245,5.939,2.1243225,5.55285,17.875650166666667,7.05631,3.721755,3.662025,3.3976333333333333,2.80125,2.865936666666667,3.0680033333333334,0.7307483333333334,0.991214,0.991214,0.64125,2.4419133333333334,3.747065,3.685385,1.568322,5.1835,3.937905,2.40987,3.973565,5.0297,3.905545,4.29976,3.472566666666667,3.10253,3.42722,5.65785,3.412433333333333,5.09365,0.525918,0.525918,2.39747,3.245,4.926405,4.33221,4.242805,4.679005,7.5410580000000005,7.6795,3.41331,2.47454,4.48023,3.93069,2.5113233333333334,2.294985,3.1556,1.3784333333333334,3.6312,2.28826,1.7874225,3.4558999999999997,3.86111,2.1393525,5.41738,1.580385,3.5214,3.676995,1.1347514285714286,3.7498666666666662,2.9216033333333336,4.816195,1.1353733333333333,1.72687,2.4175825,2.0878225,1.6775825,2.63385,2.042085,2.07643,4.54023,4.47242,2.52175,1.772055,1.4361833333333334,3.6841666666666666,1.9680033333333335,2.72325,4.67506,7.27645,2.679409166666667,3.0907,3.43528,3.555565,2.40024,5.1206,4.451025,3.226115,1.4255625,4.46388,2.268945,3.240576666666667,2.551095,3.674475,5.0933,5.57155,2.131603333333333,2.7551,2.9482033333333333,3.4751333333333334,1.9581166666666665,1.5689,5.5997,3.4856,2.208307090909091,3.1853833333333337,3.1244266666666665,2.45586,3.3227666666666664,3.3012099999999998,3.689766666666667,5.31125,4.22764,3.073586666666667,5.29875,3.29324,2.55106,3.64821,3.839275,3.97478,6.1422625,1.8961459999999999,3.85948,2.581785,3.91082,3.835605,0.59029625,2.311625,2.24888,3.37904,2.776675,2.207765,2.758975,0.612376,2.789846666666667,4.746245,2.5117,4.250735,2.51748,3.979695,1.93729,4.520525,4.28544,2.0235399999999997,3.38789,6.871897499999999,4.09721,4.45338,4.72233,7.1184857954545455,4.461055,4.36647,2.16031,4.546075,3.10387,1.89672,1.918765,3.0498499999999997,1.0093142857142856,2.2812666666666668,2.5006,2.615133333333333,3.397933333333333,1.771596,3.28794,1.9445066666666666,5.02485,6.1632275,1.02589875,1.8226533333333332,2.54704,2.8488066666666665,1.9546066666666666,1.09595,5.519241666666668,2.151965,2.7072066666666665,2.964976666666667,2.8836366666666664,3.164376666666667,3.245665,2.238306666666667,2.840066666666667,2.2368333333333332,4.149745,3.82409,3.974335,3.1439066666666666,3.111916666666667,0.833586,1.85287,2.162415,2.0300766666666665,2.551416666666667,1.1180216666666667,2.7548266666666668,3.02176,3.669375,1.9396033333333333,3.346085,3.455235,5.17195,3.27741,0.5962325,2.10156,2.908716666666667,3.5182333333333333,0.7771990909090909,2.86172,3.390428,3.5563000000000002,3.016856666666667,3.25204,3.82494,3.7654333333333336,3.02975,2.018265,5.70055,5.1963,5.21585,5.4315,5.7932,1.8107933333333335,3.52097,3.7353,3.394966666666667,2.99897,2.7446066666666664,3.8518333333333334,3.5257,3.0520300000000002,13.962186666666668,4.36619,1.09764,2.85401,1.6646260000000002,3.368933333333333,3.32737,2.3329233333333335,5.782865,6.421106833333333,2.3060133333333335,0.846487,4.165005,3.3838000000000004,2.939085,4.884655,5.12875,5.6004,5.0092,3.573595,1.90368,6.527975,1.2248933333333334,6.5369175,4.66844,2.57186,4.030375,6.936775000000001,5.9412,2.29049,1.5024716666666666,2.0305225,7.1396733333333335,1.552075,2.97968,2.590545,4.262010833333334,5.69435,4.3111,6.4681,3.82818,5.1143,3.650895,8.6318,5.0856,5.90235,2.349595,2.594225,11.429314999999999,3.440575,2.68793,2.46704,1.6297066666666666,2.363183333333333,3.2155299999999998,0.696665,1.06191,1.0861042857142857,3.49906,7.029203333333333,2.97999,1.4580266666666668,4.94225,4.78775,0.572901,4.53922,3.94569,5.03175,4.10119,3.61322,2.6775566666666664,4.195575,9.940065,1.8057875,3.9412625,4.813015,4.30867,3.76542,0.8478249999999999,3.579966666666667,3.8849666666666667,1.7289199999999998,2.547216666666667,2.364196666666667,2.540826666666667,2.36969,2.2331666666666665,2.32148,6.0352500000000004,5.1297,3.894945,4.7935316666666665,1.6620866666666665,2.351665,4.947595,4.58825,4.679015,4.406245,4.57576,4.657045,1.716106,3.880125,7.896706666666667,1.3267316666666666,1.80169,2.63679,2.6696899999999997,2.7588266666666663,4.7503736666666665,0.8176071428571429,2.449355,3.360855,5.8009,4.539775,2.1939533333333334,2.87373,1.998,0.55456875,2.1258375,2.92509,7.6773050000000005,4.28624,4.59231,0.9037409999999999,4.5963,9.316300583333334,10.698261666666667,3.353665,1.2313,3.689395,3.513385,2.6853266666666666,5.33355,4.939495,3.891845,2.0228225,3.7832000000000003,2.21835,2.58303,0.7969227272727273,0.3967586666666667,2.556385,3.364405,2.0079676666666666,3.36714,3.2497066666666665,4.023465,5.1576,1.55908,3.1777333333333337,2.1690899999999997,2.1690899999999997,2.2753,3.066345,5.99235,2.6938833333333334,2.6644366666666666,3.3631666666666664,3.4769,4.20799,4.371535,4.37088,4.105985,4.17727,4.258995,7.0102,7.924018333333334,1.99269,2.2909533333333334,3.0458966666666663,0.9034633333333333,0.674335,4.126615,2.313745,5.275,2.90089,3.0241366666666667,1.841152,1.50219,3.887565,4.138735,4.327615,2.145166666666667,1.28393,2.6826399999999997,1.8733000000000002,2.5907966666666664,1.10508,1.10508,2.7162166666666665,4.699265,3.013275,3.214535,3.258095,2.221725,20.0951766969697,3.70823,5.4889775,4.18638,4.51373,4.194195,3.4496,5.5476,6.1292,0.9008283333333332,0.9008283333333332,0.9008283333333332,2.757616666666667,1.7704428571428572,3.456933333333333,4.369045,4.19731,3.243745,4.806805,4.28561,0.8609800000000001,2.38931,2.6134633333333332,5.9800805,3.3550905,4.081298,4.85702,1.8635375,1.97156,2.4268899999999998,0.51963,0.763584,1.84227,1.999,2.905195,13.252333333333334,2.5961933333333334,5.31295,0.7489357142857143,9.674545,5.6654,3.765995,4.436135,2.73285,5.4871,2.73285,2.835146,3.357825,3.79167,3.387745,3.964245,4.522915,3.474105,5.82225,6.883818,1.8398533333333333,3.490266,2.821785,27.184263312741315,1.627092,6.3598,5.117358,3.78005,4.51758,4.67515,2.689815,2.56839,2.245925,6.5865,7.05845,4.7361,4.695845,4.361685,2.011815,1.84486,4.320615,0.36417692307692306,0.36417692307692306,0.36417692307692306,0.36417692307692306,4.178635,3.2761416666666667,1.0242366666666667,1.80453,1.1637444444444442,4.43589,2.478,2.40329,7.289015,3.188696666666667,0.16975586206896554,20.676311833333333,4.733781666666666,1.790472,1.3508771428571429,2.1807,1.9662739999999999,2.3567775,4.57268,3.043405,3.996165,4.306815,2.3822933333333336,7.628385000000001,2.744025,2.042235,4.03291,5.9785,8.682353333333333,4.32671,0.29757804878048777,3.55502,4.177715,3.0422666666666665,2.1528825,3.1045133333333332,1.633805,1.633805,4.07083,5.63858,11.465805,9.204525,0.6600555555555556,2.56154,3.9994,3.167235,4.91701,4.684495,1.6921220000000001,1.6921220000000001,3.774345,4.559215,2.99828,3.668855,4.95122,5.3317,6.079295,2.16536,4.656685,4.322665,2.68866,2.912046666666667,3.1646,5.026,4.28247,5.6071,4.16768,4.46762,3.830065,4.36208,4.27213,5.4591,2.68068,3.254443333333333,1.146744,4.369225,4.189565,3.849385,1.7169519999999998,1.9943733333333336,3.7678333333333334,2.8691333333333335,2.6467233333333335,4.454453333333333,1.8011,2.852725,3.6072,3.5639000000000003,2.36026,3.7218666666666667,4.4157,3.4218333333333333,4.0713333333333335,4.633088333333333,2.1667,2.630733333333333,2.5867999999999998,5.1063,3.1766733333333335,40.96661275,2.354905636363636,2.354905636363636,2.5815433333333333,3.3796999999999997,2.2660733333333334,1.7406466666666667,2.9491033333333334,1.63939,0.8072923076923076,5.01315,7.04451,4.19444,4.144155,5.61005,1.9147,4.44699,1.814406,5.26395,4.82242,5.68925,4.21207,1.7047825,4.114245,5.30165,4.75273,5.33055,5.34725,4.141155,2.891905,3.378766666666667,2.9961300000000004,2.192175,1.81667,4.633455,2.39918,3.8329575,3.8329575,2.2402466666666667,1.5475266666666665,2.1934299999999998,2.44654,2.2575533333333335,5.15782,2.8351866666666665,1.178085,1.178085,3.085516666666667,2.3899966666666668,2.5330866666666667,2.6244333333333336,2.7136933333333335,2.504773333333333,2.3678733333333333,2.2310677500000002,3.0270506071428573,1.5556366071428571,0.7959828571428572,62.23649474107143,2.373682,3.4690666666666665,2.339792,0.9124700000000001,3.7825153333333335,1.597994,1.597994,3.2384866666666667,2.905416666666667,0.75965375,3.1052,5.317663333333334,3.4586666666666663,2.71911,2.8573866666666667,2.1507533333333333,2.6364566666666667,0.282554375,2.6043133333333333,0.7908999999999999,2.488723333333333,1.190002,1.190002,3.3003433333333336,1.79492,2.5946700000000003,1.5553973333333335,3.4494666666666665,1.5553973333333335,2.130453333333333,2.5363233333333333,3.2221933333333332,1.322346,1.322346,2.9292,1.42323,3.1673733333333334,2.2139666666666664,4.799745,4.12641,13.290621833333333,7.0405025,3.48341,2.55714,3.94075,5.2487,5.52525,2.746525,4.25149,3.85854,2.2085966666666668,4.455425,3.4947666666666666,2.74517,4.714705,2.2672833333333333,1.0846457142857144,4.01298125,2.9206,3.06821,0.7944042857142858,2.67097,3.479155,4.23205,4.40551,6.7114,2.705833333333333,1.907894,3.935045,4.431695,2.3259425,2.5657625,1.96769,2.1201233333333334,0.9018499999999999,5.4135,4.442205,3.9393,3.728405,3.1433366666666664,5.0894,5.2325,2.879466666666667,1.7616500000000002,0.5382586666666668,14.317603166666666,0.5069136363636364,0.5069136363636364,0.5069136363636364,3.05692,3.9526,0.5069136363636364,6.990668333333333,4.384033333333333,0.727063,0.727063,3.4266,3.253245,2.98426,4.39549,4.807,4.273065,2.58265,4.825258666666667,3.567265,3.62409880952381,4.68658,2.897349,2.36529,2.3364875,2.707375,1.6016725,3.3827808333333333,2.994123333333333,2.325425,2.133745,1.931985,1.8973666666666666,1.5723475,2.548925,1.0855044444444444,2.536575,0.6119242857142858,4.96659,1.7136625,0.7304541666666666,2.4174575,8.01044,2.604065,2.1802734999999998,3.1190350000000002,7.40389,2.56819,4.62387,3.169065,6.66661,3.664135,3.97196,3.99584,4.80453,3.09128,4.339646666666667,1.18036,4.13805,2.4238433333333336,2.450276666666667,2.63066,2.287935,2.1303,1.2602625,5.53045,0.9459,4.93402,5.5577,5.2557,5.5929,3.8663333333333334,2.35897,1.938122,2.9923266666666666,2.9642999999999997,2.63873,3.8036,2.723675,4.4048,1.814996,40.21810206349206,4.548045,2.3778966666666665,2.8572133333333336,2.969203333333333,1.5905666666666667,6.006805,4.15407,2.52651,3.1490733333333334,2.49626,1.6676225,5.48455,0.8040571428571429,5.38049,1.3331628571428573,3.4072999999999998,3.4306,2.8339766666666666,1.3836375,4.8909,1.70965,1.70965,2.5147233333333334,2.8739816666666664,3.5337,3.4723666666666664,1.4353966666666667,2.8756566666666665,2.6783,6.4037448333333336,2.8764299999999996,3.6797066666666667,1.0204316666666666,1.4397966666666668,3.0119866666666666,0.881954,5.375436666666667,3.4830666666666663,2.85453,3.673033333333333,2.9022166666666664,2.7437799999999997,3.328943333333333,1.7459466666666668,2.3706025,2.5554366666666666,3.445133333333333,2.5351733333333333,3.7043666666666666,2.969186666666667,0.611608,9.72608717948718,2.7368666666666663,5.3473,5.08975,2.7153533333333333,3.019546666666667,1.3251325,2.1323433333333335,2.137265,1.3251325,4.64715,0.468681875,0.468681875,1.0802175,1.0802175,0.859855,0.859855,2.52305,3.02173,2.333205,1.382555,1.99063,3.69938,3.113825,4.746025,4.99816,2.0549600000000003,4.358225,2.40102,4.735835811965813,1.6968225,1.6968225,2.26519,1.8169879999999998,3.7963775,2.0237275,4.711185,1.5819349999999999,2.59875,0.5778453846153846,1.1695357142857143,2.1126375,2.1703975,2.0199325,1.4511825,4.52972,4.330775,2.68019,2.7074433333333334,1.3546066666666665,0.6980866666666666,2.31961,3.861175,2.73686,4.643885,5.23255,5.19905,4.09877,6.46368,1.6235183333333334,6.081655,2.108505,4.674585,4.74737,5.8433720000000005,3.6626999999999996,2.218145,1.74024,1.977566,1.977566,2.505875,2.505875,4.41202,5.70675,0.9137359999999999,4.12388,3.332135,3.517535,2.531476666666667,1.413005,2.7727533333333336,4.242785,3.9858,1.79658,6.546,5.1682,1.7371299999999998,1.32935,3.988575,4.272843333333333,3.565035,3.572315,4.0014,0.6432492857142857,3.6302,3.2826766666666667,2.681093333333333,2.8851633333333333,2.2783433333333334,3.6140333333333334,1.511642857142857,1.511642857142857,1.511642857142857,3.1810066666666668,3.1375433333333334,3.292213333333333,3.407158130952381,2.40615,1.2665514285714286,3.2725033333333333,3.2147633333333334,1.4276628571428571,2.9200766666666667,2.697783333333333,1.2680028571428572,2.9545866666666663,2.9285666666666668,2.9240033333333333,2.8777566666666665,2.67479,2.09436,3.21096,4.947855333333333,4.19658,0.970978,1.420912,0.6336820000000001,3.600633333333333,8.736615,2.9925266666666666,3.334715,3.3574,4.243810833333333,1.8911175,7.528896666666667,6.666666666666666,2.69678,2.4237277142857145,4.147005,4.90664,1.553094,1.308174,1.35415,2.001295,10.659563333333333,2.57086,3.0069199999999996,3.0049356666666664,3.911825,2.2574633333333334,1.159525,5.77995,1.06857,3.9941092307692307,4.995395,3.27011,3.27294,3.246595,4.997095,1.1597183333333334,2.1051675,2.0544206666666667,2.0544206666666667,3.854985,5.6312,9.0604175,4.44368,3.4058,4.91929,1.8135675,2.2966925,4.7061,4.103075,3.92051,1.537795,2.829916666666667,3.54468,3.944745,2.4570175,4.165255,4.113325,4.381035,4.18917,4.393445,3.895845,5.27625,3.26576,2.3848833333333332,4.40836,2.95707,3.811755,2.17727,2.6328,2.541695,5.8001,2.65527,3.3003203409090904,1.701535,2.42884,3.400055,2.0797475,2.06047,0.8584466666666667,0.8584466666666667,1.770795,3.69104696969697,4.027675,2.6832999999999996,4.439755,3.268114166666667,2.4736077142857145,1.02400875,3.524525,1.6575075,4.205575,4.13762,0.9136341666666667,1.844685,3.833975,2.9773125,1.620395,1.6688833333333333,5.024602857142858,1.0954066666666666,2.791215,3.242605,2.795945,2.463005,2.6886330000000003,2.079805,0.9814675,2.913315,2.99033,3.34858,1.5557033333333334,1.6610500000000001,1.823455,4.596205,2.10829,4.66009,4.54897,4.5058,5.92945,5.57025,4.217255,6.17788,4.097369047619048,0.8012127272727273,2.89551,4.537695,3.83931,0.48962727272727274,0.8842019999999999,2.942825,4.34687,4.94474,4.8258,3.333919642857143,2.825455,4.69456,1.8016400000000001,2.400935,4.59375,4.16235,3.4273,2.90218,3.7236,4.819615,2.98304,5.2888875,0.9612170000000001,3.367695,2.85309,4.65246,4.29034,4.397605,2.15706,2.63286,2.87278,2.1856166666666668,5.02515,3.437515,1.4427285714285714,2.74403,4.06734,1.438978,5.725295,1.831944,2.6834066666666665,13.77707971839856,2.964323333333333,1.50499,1.6153449999999998,2.3726233333333333,5.48984,1.656164,5.774119,0.6759338461538462,3.3294099999999998,4.103045,7.521482499999999,2.4337233333333335,2.845833333333333,2.845833333333333,4.82998,4.395635,3.554,3.28758,4.882395,5.1643,2.471915,3.26375,4.777,1.2492416666666666,3.1403233333333334,4.51875,4.03358,3.40775,2.4629499999999998,3.53968,3.97509,6.36945,6.0555,0.745889,3.944395,3.29329,3.6230666666666664,4.291485,3.994955,3.902385,1.650158,4.942605,2.56615,2.927295,4.14516,4.30407,4.62692,0.9173757857142857,2.748063333333333,8.733133,1.5230666666666668,2.158516363636364,2.4014325,3.871845,3.502745,3.36578,0.6700745454545455,2.3443175,1.6937425,2.23633,4.36997,5.4956700000000005,2.79119,8.931215,2.2584566666666666,2.7410333333333337,1.0666499999999999,4.4847,5.07895,2.05254,5.62291,2.95043,3.1451,5.3572,4.398935,4.76386,2.12451,1.6978275,1.6978275,2.72455,3.27222,4.5618083333333335,1.549095,5.70963,1.4609133333333333,3.838555,1.39003,8.830110333333334,4.82783,2.6781,4.93718,4.410555,3.862905,1.119195,1.938935,3.659133333333333,3.1602933333333336,3.5201666666666664,3.6778333333333335,3.817145,2.735605,3.247805,3.3206,1.59211,2.5358899999999998,1.86822,2.86607,2.0565533333333335,5.117860833333333,3.2713666666666668,1.8131766666666669,2.992513333333333,3.41017,4.79608,6.3766,6.0669,3.03717,3.595775,3.124725,3.06029,2.95192,1.2278499999999999,0.965508,6.83555,3.373365,5.87585,5.0911,6.40905,4.99106,2.97814,6.49485,2.4023,0.4392622222222222,5.68405,3.201385,3.782905,3.4072999999999998,1.40959,4.819305,1.14581,4.70832,0.9154275,1.2152566666666667,2.966226666666667,2.4234233333333335,2.601662,3.836485,5.20795,6.302191666666667,6.302191666666667,5.51375,5.51375,4.75479,2.929126666666667,4.3236,1.04238125,6.2281,4.340865,3.6547,4.324505,3.702395,5.10475,1.956625,5.05065,3.29665,2.995905,4.189865,2.67007,4.774765,5.1643,3.569495,3.368785,5.00965,4.09648,5.72055,2.790425,3.092563333333333,5.9692,4.06155,2.9067633333333336,6.330181666666666,1.60002,2.152935,4.66344,4.257805,5.1978,3.94714,2.055657,2.055657,13.472708694444444,12.1716,4.87316,3.51585,2.9571305128205125,4.59194,4.667515,2.665646666666667,3.4160333333333335,3.14489,4.204400000000001,3.6499666666666664,4.95938,2.121515,8.524619999999999,2.29756,2.0639975,5.9547,2.3326,5.0079,4.39645,4.62566,0.8167044444444445,3.4429,3.70898,0.971512,3.034605,3.798305833333333,1.461344,2.048433333333333,2.9363499999999996,2.6499366666666666,2.5917266666666667,3.1376066666666667,2.5530066666666666,0.5058207142857143,2.8443799999999997,2.887723333333333,2.800193333333333,3.2656899999999998,1.6488600000000002,3.0361933333333333,7.196703333333334,4.462925,2.2702666666666667,2.0542433333333334,2.62196,3.863595,2.40862,3.671382,18.561635000000003,5.4332,3.417395,5.1933,3.72634,5.330145,1.54509,5.8058,1.663095,4.668115,4.51783,5.40795,4.989715,0.9687283684210527,6.2645,2.4926,4.957985,2.71487,4.228235,4.334785,2.84177,2.2441666666666666,1.716056,2.0869975,4.38673,4.56012,2.421545,1.624775,3.23439,4.138386666666666,3.1657333333333333,6.3249,2.3775375,4.17034,4.431785,3.911765,4.316195,3.30396,4.20944,4.663495,3.9213,2.703386666666667,2.703386666666667,5.432886666666667,2.01421,2.7022266666666668,3.92241,1.7642019999999998,7.37906,3.545825,4.553406666666667,4.3049,4.183415,1.8901800000000002,4.38158,5.25245,3.81955,1.9656775,3.57038,3.302625,1.1323575,1.565005,1.2911533333333334,0.7177783333333334,1.6904966666666665,1.0196966666666667,4.586395,1.2077333333333333,2.7829833333333336,1.5859500000000002,1.86264,1.1109166666666666,2.4294725,2.3259525,1.59557,3.1051933333333337,2.64652,4.659601666666667,1.537865,2.5148,3.2067566666666667,3.098926666666667,2.3757699999999997,4.477805833333333,4.55441,5.104074166666667,20.522073833333334,2.608,2.1983625,0.6393215384615385,0.632489,4.255816666666667,1.9093820000000001,4.056095,4.734405,7.3192485000000005,4.01914,3.60221,4.07197,3.1611366666666663,3.2276966666666667,3.1330500000000003,3.7692333333333337,3.2172933333333336,6.46455,3.9368,0.925098,1.12962875,5.42575,3.172166666666667,2.6058,2.1264233333333333,2.29236,5.6675,4.848825,2.614225,1.09468,3.44608,4.872655,8.786693333333334,5.500286041666667,4.428895,4.17334,5.4319,4.71045,4.450945,4.805155,4.002615,5.29825,1.70087,5.77025,1.5771857142857144,5.102,0.7304266666666667,4.74517,5.30365,6.0126,6.29865,4.679275,5.66265,5.61995,6.286785,1.9232833333333332,1.5885285714285715,5.5787,3.16188,6.696518333333334,5.18085,5.371520833333333,4.993225,6.27405,1.2939814285714284,4.415235,5.3052,4.1906,4.798105,5.4714,2.635475,3.953785,3.51523,4.522175,1.0042333333333333,1.6507500000000002,1.366244,4.844795,4.1524,3.437845,2.4775033333333334,2.9915566666666664,1.7019399999999998,2.1567333333333334,0.3931825,3.5631,1.67819,2.32955,2.9687666666666668,3.294503333333333,3.1936533333333332,2.628125,2.537675,10.464786666666665,3.775933333333333,1.760773076923077,3.951615,0.8887363636363635,4.71831875,1.3916125,1.9079425,1.9371025,1.0368425,5.782576666666667,1.1815781944444443,1.1815781944444443,1.1815781944444443,3.005326666666667,1.89136,5.11315,3.053875,1.67694,1.55554,2.4380625,1.41335,2.08826,5.389679166666666,0.8775766666666667,4.30574,4.225225,3.2227,1.0264657142857143,2.2142445,2.1176525,2.1176525,1.5848566666666668,3.8287899999999997,4.597615,5.3148,5.6426,4.3287,5.4566,2.876886666666667,2.0632325,3.034745,5.12795,3.46498,4.286845,1.05662375,3.9256335416666666,5.5088,1.836815,4.20321,3.0494833333333333,4.61853,4.882005,2.360705,6.8952,6.33725,4.67426,4.711775,4.249265,3.28994,8.21806,3.93088,6.131706666666666,3.32728,3.2074533333333335,5.2669,2.6373166666666665,5.2249,4.744705,2.79456,3.202735,3.92593,1.62667,10.7677,4.515155,3.144805,15.728821130952381,4.231185,1.7517833333333332,2.845693333333333,2.15849,2.987245,4.085395,2.6192929166666667,3.47312,3.454025,3.15415,4.13535,6.38157,1.2491999999999999,2.286995,4.13775,4.59281,5.0369,2.1932875,0.5911053333333334,4.90831,4.294005,2.0696275,1.290955,4.69242,4.58164,0.9561144444444444,3.86812,12.624667500000001,1.2831954285714287,0.3953064285714286,3.6585,4.506553333333333,1.0754666666666666,4.13362,4.085055,6.080283333333334,1.3047833333333334,3.70832,4.361725,3.36175,4.40326,4.6294,5.20465,8.795960000000001,3.416395,4.25301,5.3956,16.09919,3.4611075,2.8801,1.1576425,2.35443,1.1922875,1.92891,1.3253375,2.015515,1.70392,2.0622925,2.402235,2.44532,2.1202825,5.36865,3.98741,5.95685,3.25191,5.717356666666666,2.8002766666666665,5.08165,3.4064,1.235465,3.74175,2.0190725,2.7871819999999996,4.857835,4.80227,4.67865,4.2716,3.1910633333333336,3.5688666666666666,2.465613333333333,4.3671,3.738035,2.183905,1.95365,3.5809333333333337,4.605695,3.92095,2.3774366666666666,12.211373333333334,0.70312,2.62867,4.92926,2.5426729999999997,1.184974,2.86809,7.388808333333333,7.036128333333334,4.705545,3.942145,3.984525,2.0758,2.512345,2.8829396666666667,2.0875966666666668,3.792975,5.62765,4.315285,0.47606066666666663,6.1315,3.3378333333333337,3.4266,3.595966666666667,6.26115,9.14933375,4.36055,1.06283375,2.1589775,2.22692,3.71806,2.55974,4.22801,4.83252,3.6182,2.75863,4.070435,4.168725,3.728635,4.2026666666666666,2.47123,4.04031,5.2724,5.6704,3.4164333333333334,2.0296825,2.2832233333333334,15.010850206876457,0.5312172727272727,1.45721,1.45721,2.2983033333333336,4.695876666666667,3.834985,4.58178,3.161385,3.206355,4.39037,3.0293200000000002,4.166285,3.0293200000000002,3.60359,1.9098766666666667,1.6974099999999999,5.87355,2.538125,4.760865,3.253385,2.68675,6.380605,2.1618999999999997,4.819355,5.17045,4.16686,3.427365,4.894505,2.08172,4.9396,3.411915,7.40686,5.50465,2.83495,4.028935,4.125095,2.117945,2.885073333333333,3.6797,0.4449564285714286,3.2444,9.97681,4.44519,5.07385,5.28795,3.4688775,3.22245,1.3391771428571428,4.140065,5.36875,3.275105,2.63887,4.90674,3.831035,4.17782,4.319905,2.62715,2.62715,4.08085,2.85566,2.666070681818182,2.032275,4.75496,4.014005,1.1645171428571428,3.696595,4.993945,2.93505,7.141430000000001,7.63943,1.4659879999999998,4.335405,4.936275,6.86501,0.8106180000000001,7.57001,3.5686799999999996,0.63115,5.2418,5.36095,4.99745,4.328495,4.815165,4.40336,4.84555,3.8294,4.046265,4.71635,4.905805,4.84765,4.853055,3.82398,3.35333,4.3064,3.455575,0.9647560000000001,4.40944,2.397475,1.68952,4.28826,4.603695,5.6692,1.06313,4.923206666666667,2.9883,2.6210299999999997,2.120465,1.2408599999999999,11.863511666666668,2.97624,3.2338566666666666,2.460573333333333,3.7009609523809526,6.051453333333334,6.300586666666666,2.6376666666666666,2.0472333333333332,2.14378,2.14378,2.14378,1.4020599999999999,3.77258,3.971465,3.481785,4.589585,8.174415,4.16707,1.159572,2.30147,3.167255,4.46269,1.784524,3.9988,2.757085,1.3696599999999999,3.0066699999999997,5.96527,6.9991900000000005,4.30701,4.117665,3.1468133333333337,5.19705,4.57268,5.468548333333334,1.8531625,1.8531625,4.455515,3.87031,2.5996259999999998,2.5996259999999998,3.71264,1.1690728571428572,4.750505,3.50886,4.138,4.348455,4.640065,3.3768,1.032797142857143,4.485565,5.05,4.360125,4.92007,4.94835,4.798015,4.46325,1.93177,1.4616175,3.403695,3.67632,3.246755,4.312615,2.179655,3.3343075,5.57825,2.759425,5.0272,7.6818550000000005,2.36188625,2.8390883333333337,4.432338571428572,5.138586666666667,1.7167,1.9960271428571428,0.98561,1.9960271428571428,1.6249033333333334,1.6249033333333334,1.523186,4.87463,3.25894,4.10856,2.333415,3.888485,1.5316533333333335,5.38775,3.163765,1.6947775,2.7440366666666667,4.269165,4.031975,6.325127,4.781795,1.342272,0.87549,3.511735,6.906598333333333,2.3711466666666667,3.602705,3.5283,3.5283,2.39481,3.42221,3.13676,1.4065332467532468,3.0765466666666668,3.47835,2.96893,4.3687,3.7905599999999997,1.4780425,3.7596,4.64223,4.419835,5.07055,4.358025,1.86184,2.371865,1.26122,2.3164825,3.4429,1.9098175,4.31263,3.218726666666667,3.438525,4.130095,5.0154,2.97623,0.977294,1.74707,1.4669725,1.1897222222222221,4.97213,4.077415,1.146744,0.21722086956521738,0.21722086956521738,0.21722086956521738,3.65529,6.183775,4.430285,5.18385,4.48784,5.2782,4.896875,4.363405,2.849665,3.60199,1.661115,4.87763,4.169195,3.88505,4.17408,4.26197,0.7867963636363636,0.7867963636363636,0.7867963636363636,0.7867963636363636,1.076968,1.076968,3.969615,3.988095,3.84437,2.74609,2.52824,5.91695,4.88388,5.63545,4.321545,2.921226666666667,2.5418833333333333,9.56278,1.51968,1.51968,4.219185,5.47065,3.3678000000000003,0.468681875,0.468681875,0.468681875,0.468681875,0.468681875,0.468681875,4.9331933333333335,5.1068,3.6005,4.444245,2.82619,2.82619,2.928275,3.0811673333333336,2.5798900000000002,3.257895,3.596755,6.96339,1.406066,4.64575,3.65049,3.96146,9.969809999999999,2.6025899999999997,2.84833,1.023642857142857,2.30704,4.947635,3.293335,0.96518125,2.89419,4.261935,5.4491,2.705425,4.867159444444445,1.034181111111111,2.0927166666666666,4.74108,4.80799,3.1240365,2.67718,2.285083333333333,1.3849583333333333,7.988148333333333,3.21672,2.1498766666666667,3.163905,2.770036666666667,3.93952,4.055165,2.66757,3.2050933333333336,5.92625,1.4799716666666667,4.939,5.19085,3.798505,3.873535,2.2756233333333333,4.29208,3.765715,4.146955,2.928575,4.78132,4.685225,2.7268233333333334,2.17051625,2.86252,2.795693333333333,2.846016666666667,0.7951736363636364,2.17265,8.27084,0.503518125,3.064743333333333,1.64735,2.5915866666666667,3.2880333333333334,2.8968066666666665,1.2841111111111112,1.747966,2.759923333333333,2.11822,3.66509,2.0801,2.8505033333333336,1.46868,3.2507520000000003,1.976715,1.1272771428571429,2.881936666666667,2.1639825,2.3661233333333334,2.693243333333333,3.0740366666666668,3.3349333333333333,3.365866666666667,3.3113433333333333,2.8562433333333335,3.0510099999999998,2.8016533333333338,2.6301,1.7011633333333334,2.43669,2.613096666666667,1.6421466666666669,3.10404,3.858927142857143,2.872306666666667,2.8480233333333334,3.0449366666666666,3.7028,4.846245833333334,3.02758,1.843562857142857,1.843562857142857,2.44383,1.1434725,2.501325,3.3259716666666668,4.5175366666666665,2.740775,2.0853,2.1496625,2.092495,3.673955,3.13019,3.8315,4.820765,1.7768,2.3913066666666665,4.277535,1.328918,1.328918,2.694175,0.6539792307692308,3.0211646153846154,2.08527,2.08527,2.8844833333333333,2.4412,3.2642433333333334,2.629525,2.161955,5.687373333333333,3.879415,3.879415,3.58727,3.185125,2.300475,3.12391,2.49048,3.01494,5.2143049999999995,0.48424833333333334,0.6642870000000001,4.139235,5.4612,2.942425,6.577291666666667,3.6839,1.633086,5.1776599999999995,4.57148,4.118105,4.25716,5.4464,4.87011,14.3905775,3.48243,1.5471933333333334,2.98743,3.84814,5.329,3.483855,4.14704,4.37992,3.644795,4.87628,2.80273,3.11922,2.816736666666667,2.37749,2.37749,3.99626,3.424235,3.28256,3.524115,2.342465,2.5849,2.1692575,1.89691,1.9910075,1.967375,1.9286675,3.6666185,3.613255,2.62845,6.56032,3.57954,2.3106966666666664,1.7992766666666666,3.420265,3.955255,4.620165,3.1432579166666668,3.54215,3.134675,4.46073,3.74922,4.3354,3.9724,3.73444,3.50085,0.6498766666666667,0.6498766666666667,0.6498766666666667,3.839575,2.581295,5.48695,2.572205,3.78684,7.477443518518518,2.8437133333333335,0.3501588461538461,5.429,0.759838,4.242995714285714,1.81281,3.788195,1.910175,4.44796,5.763561666666667,4.43811,4.270305,2.744476666666667,2.8809733333333334,1.4971766666666666,2.65091,0.4711636842105263,0.5558982352941176,2.7017233333333333,1.3994833333333334,1.9403175,3.86493,3.41075,4.98531,2.889666666666667,3.0588583333333332,3.474595,5.45873,1.8557025,0.9409257142857143,2.317815,3.619722,1.3420966233766234,4.878955,3.772075,3.495965,2.726383333333333,4.35377,3.0264333333333333,2.7319866666666663,2.7421399999999996,2.3086475,2.639746666666667,2.281895,3.23234,2.4279033333333335,5.560316,2.2476425,1.93753,2.4521933333333332,4.9488053333333335,3.340024,3.340024,2.42038,4.00932,2.3282925,3.349505,2.913365,0.5811646666666667,4.30704,1.9288125,11.614127777777778,7.02917,2.879265,3.253635,3.30996,5.09132,2.91414,3.44409,0.248634,2.04985,3.8094333333333332,0.8472583333333333,3.88792,1.3700700000000001,4.82075,3.400555,3.7806,4.085745,3.605805,2.198275,4.542255,3.772425,3.90723,6.22279,4.729905,2.919373333333333,3.021506666666667,1.6201560000000002,2.1146,4.30676,4.24452,3.9584574999999997,3.01826,3.324325,1.527648,2.96894,2.47469,4.019475,11.028251666666668,3.68377,7.189085,3.739765,4.409385,1.0135888888888889,5.169936000000001,4.66555,2.51902,2.8289899999999997,3.459,3.249086666666667,2.34003,1.71709,1.9314733333333332,3.698655,1.6336780000000002,2.8222199999999997,5.071367333333333,2.6733666666666664,0.9590003571428571,0.9590003571428571,3.531605,3.128082,3.128082,3.4804,2.860723333333333,3.2812176923076923,3.7421,3.3853000000000004,2.7337900000000004,2.33516,2.3791366666666667,3.129993333333333,2.22747,2.6638566666666668,1.623484,5.783389,9.471258166666667,0.6047246153846154,0.6047246153846154,0.6047246153846154,0.6873643881118882,0.6873643881118882,0.6047246153846154,3.144136666666667,2.9036299999999997,4.241855,1.4474850000000001,1.714265,3.323752,2.332543333333333,3.0715466666666664,2.4089466666666666,2.8753833333333336,3.454,6.540136666666666,3.0891133333333336,2.45147,3.3988666666666667,4.463515,2.5515933333333334,3.2636299999999996,6.07137,2.37682,3.4156666666666666,1.3569866666666668,1.3569866666666668,2.7862033333333334,0.5306842105263158,2.321826666666667,2.82365,2.87881,3.2390166666666667,2.3462833333333335,1.5366366666666667,2.68993,2.9589666666666665,2.43439,4.42205,2.419237,3.75459,2.986265,4.33649,0.521405,8.456446666666666,2.980308,2.980308,7.810819722222222,1.7601866666666668,1.99516,3.118653333333333,4.51956,2.3284266666666666,2.03279,2.6902666666666666,1.39909,3.4087333333333336,1.88025,3.0065435000000003,1.4377425,0.2685027272727273,0.2685027272727273,4.961005,3.933115,3.32463,2.9621566666666665,2.78544,3.368585,1.2568566666666667,5.61435,3.755655,3.01164,1.88519,1.1472125,2.150555,3.118653333333333,2.593625,2.123805,6.1670750000000005,4.32171,4.436825,3.92965,2.24103,0.6839283333333334,6.9837675,1.9867725,1.437905,3.521775,4.212065,2.273135,1.7349166666666667,4.72218,4.171095,3.3518000000000003,3.18195,4.650255,4.55114,3.6945,2.5252,2.5252,4.02844,4.965965,5.71845,6.53375,2.7952966666666668,3.721245,1.4686428571428571,2.584425,5.188728666666667,3.79434,1.839762,4.93809,3.5231425,3.9736,2.19488,4.322075,4.76622,5.00745,4.660345,2.447296666666667,2.6436933333333332,3.7502,2.058003333333333,2.677625,2.828393333333333,2.426886666666667,0.89268,2.10533,2.7619666666666665,2.396351666666667,4.596415,4.57565,4.68626,3.90875,4.06788,5.4726824999999995,12.49132,5.07975,4.046515,4.455885,3.929175,4.663845,3.1018666666666665,3.1648726666666667,3.6557,1.24652875,2.689095,2.84541,4.69435,5.44485,4.398345,3.5654,2.8206166666666665,2.41335,4.3018,4.2869399999999995,3.6908,4.2869399999999995,2.41205725,2.2649466666666664,2.4176233333333332,2.246155,2.6146566666666664,1.79821,0.8503683333333334,1.3384183333333333,2.0905133333333334,2.0153166666666666,1.6237833333333331,1.3084733333333334,1.7089766666666666,2.6676633333333335,1.532932,3.062836666666667,1.3551166666666665,1.6347933333333333,3.0723,3.974933333333333,2.77756,2.33508,2.4274066666666667,3.396255,2.21857,2.9803933333333332,3.0835866666666667,2.53601,3.0771333333333337,3.0427999999999997,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,0.15215935483870968,5.0941,3.40706,1.0438699999999999,3.1132833333333334,2.6510000000000002,2.8511366666666667,3.765245,3.13504,4.605585,3.485414,1.679854,3.1153033333333333,1.8184166666666668,1.00668125,0.9867319999999999,1.5901516666666666,0.8791433333333334,0.8142166666666667,1.310054,3.381285,1.651272,1.7020166666666665,1.9911966666666667,2.4371272222222222,1.6028666666666667,1.43729,1.6284666666666665,0.99744,1.2514283333333334,0.7226483333333333,0.9186920000000001,3.333875,3.57436,4.373155,4.479355,4.06686,3.0244700000000004,4.595035,3.6806,1.94756,3.51322,2.0025775,3.564805,2.291653333333333,0.8186145454545454,4.253935,4.74243,2.1255333333333333,1.265745,2.923445,3.298,3.8287899999999997,2.9869133333333333,2.675725,0.884925,2.193615,5.021622499999999,3.641155,2.603615,1.4955100000000001,3.75331,2.0449375,0.6308618181818182,4.33094,4.29326,4.20088,2.632345,1.371838,4.30356,4.374705,2.59579,2.570856666666667,2.5306333333333333,2.6709599999999996,2.733366666666667,2.849546666666667,3.0635,1.2623625,2.63545,2.5448166666666667,5.12045,4.251965,3.634385,4.569445,16.036863888888888,4.3793500000000005,4.545572,2.60521,4.30466,4.967,1.586096,2.511875,2.6340533333333336,6.920635,4.592375,4.07517,6.2108,2.6340533333333336,3.994705,2.05259,2.59562,2.9120633333333337,2.84327,1.30837,4.20235,3.65354,2.499995,4.242835,2.670833333333333,3.0007333333333333,3.70982,3.19175,4.660475,4.10307,2.82875,3.49336,2.66684,2.728733333333333,1.4237600000000001,1.4237600000000001,3.2983933333333333,2.734693333333333,0.37035714285714283,5.167652,0.9325100000000001,3.58278,3.8291,0.5664216666666667,4.83535,8.347296666666667,1.8384125,3.736215,3.738515,2.5834633333333334,3.277935,2.31431,3.034965,3.534285,4.235795,3.10795,3.9493666666666667,0.9921083333333334,11.766089000000001,2.9334,3.21369,5.6902,2.61991,4.032715,7.725873333333333,4.225905,3.98843,3.801695,4.230875,5.8219075,1.7589475,2.8829999999999996,4.747685,3.832933333333333,1.859232,3.791395,3.69574,3.643295,4.010855,4.32651,4.13099,2.4925216666666667,4.03172,3.864835,5.4141,3.622555,2.28713,2.29936,2.2495533333333335,3.03158,1.2797566666666667,3.7324333333333333,0.8507063636363636,3.2422799999999996,3.107226666666667,2.678663333333333,1.6267433333333334,4.371645,4.34604,4.1813,1.9048675,4.572315,4.028155,0.7574948461538462,0.35499884615384614,4.4324,5.09985,0.9981075,0.35499884615384614,4.098245,0.7574948461538462,0.7574948461538462,0.35499884615384614,5.687458333333334,2.5394433333333333,2.4246066666666666,5.5877,3.224865,3.145785,0.7978166666666666,3.290655,3.78413,4.620505,5.6408,2.14184,0.7206930769230768,4.3633425,2.3144566666666666,1.512184,1.9961925,1.0629571428571427,2.4690066666666666,2.237556666666667,3.65701,5.1217,2.8562833333333333,3.2136899999999997,2.9194633333333333,2.3593699999999997,2.913995,4.4274675000000006,1.772245,1.95379,3.99251,5.0822,2.1563425,5.82345,2.72326,4.09074,4.17138,3.05559,1.2268375,3.284875,6.76955,3.811195,3.639345,5.23875,6.45485,2.497925,3.82666,4.565325,3.10502,3.072535,8.29204,3.752895,4.7198424999999995,2.39302,1.11086,2.5780433333333335,2.177965,2.167705,1.773755,4.30289,0.6776064285714286,3.39958,4.1924,1.9286566666666667,3.0760533333333338,5.13525,3.628145,2.78449,4.433105,5.10705,9.638685666666667,2.6376233333333334,2.7261933333333332,1.660118,1.7702666666666669,1.1881533333333334,1.4019199999999998,3.22091,2.4965733333333335,2.9994566666666667,4.394859358974359,1.562275,2.5409666666666664,5.00385,5.5746,3.895295,3.41425,3.00202,2.529645,2.159435,2.130665,1.9053733333333334,2.250045,3.93718,3.70545,5.04185,5.1588,4.209795,5.458444999999999,3.30608,2.511375,6.61691625,3.60878,8.536985,4.9821375,4.9821375,5.733253333333334,1.6063866666666666,1.3770925,1.4895133333333332,0.724243,4.90542,3.9461999999999997,3.353145,3.353145,2.13478,4.5923,4.30174,4.51588,4.38609,2.846883333333333,2.57715,3.81774,3.0850933333333335,5.192268333333333,3.943135,0.7709436363636364,5.34955,5.1451,4.627245,5.0535,3.348815,6.1662,4.505825,0.8654,5.4918,7.444646666666666,3.099785,5.6878,5.7578,3.40966,2.666325,3.79161,6.2633,2.0989975,5.8022,1.89854,4.68465,2.6891166666666666,2.0549375,0.9612170000000001,3.20263,5.9209,3.487815,4.101565,1.9888933333333334,5.0227,8.130756666666667,3.47853,4.175795,2.624735,2.59479,0.869584,4.8533,1.5603749999999998,3.4758500000000003,3.4758500000000003,3.858495,2.2767399999999998,3.0706066666666665,3.982055,1.88194,3.010173333333333,3.3086066666666665,3.320073333333333,2.78297,3.91062,3.35053,1.7994425,3.515833333333333,2.141945,2.9688933333333334,1.9848666666666668,3.0350033333333335,3.14324,1.4166942857142857,1.9485466666666669,0.37249333333333334,1.3012949999999999,0.37249333333333334,0.37249333333333334,1.9485466666666669,0.37249333333333334,3.4858666666666664,2.129908,2.129908,2.8295166666666667,4.849185,4.754705,4.398635,5.40385,5.32405,3.62516,4.291245,4.15426,2.0121075,2.5501161666666663,2.6759066666666667,0.8079945454545455,5.6203,3.079406666666667,3.1588133333333333,5.60705,3.88912,5.38825,3.524175,2.60071,2.96247,3.370215,2.63822,2.8236600000000003,2.0391733333333333,5.4318,0.8568788888888889,3.960135,1.1803542857142857,3.352065,3.1219066666666664,3.0030366666666666,4.090855,4.164045,3.86706,4.58883,4.03033,3.75377,4.30459,4.190025,2.531225,2.761275,3.276346666666667,4.22626,3.112375,4.28232,2.68675,3.22018,3.313546666666667,3.52005,4.53096,4.789075,3.979965,68.94759201205738,2.6639266666666668,3.612715,16.228551333333332,4.057595,3.090106666666667,2.2237533333333332,1.9280466666666667,2.800103333333333,4.649765,3.073726666666667,4.494243333333333,6.1784,3.34885,7.748548333333333,5.22885,2.643365,2.928235,3.853265,3.393825,1.898844,1.249975,4.64389,2.974565,6.051629999999999,3.762005,2.13573,3.38894,3.484865,4.421005,2.87797,5.6241,4.442965,3.516,3.569005,2.47879,3.07509,6.36325,3.190555,3.967095,4.35290875,1.1760833333333334,2.75699,5.4378625,3.92496,3.194035,3.658225,2.894965,4.234265,3.074675,3.47027,3.21834,4.408615,3.11374,2.965245,4.39006,9.374075,3.1389933333333335,4.14324,5.54368,3.23378,2.468705,4.015690625,2.6023633333333334,2.9397533333333334,3.183056,3.41981,3.15804,3.1554,3.126375,3.33351,4.044845,3.88631,4.15704,3.86149,3.434245,4.012075,2.7985966666666666,2.7985966666666666,6.878826666666667,1.706025,3.430965,3.388215,2.497925,4.879855,4.07231,3.209545,3.428405,5.64625,6.949535,0.6433536363636363,4.814925,2.38848,2.8858433333333333,2.630473333333333,5.1646,2.7519299999999998,2.0084725,1.1984625,2.086822727272727,4.11901,4.831965,4.12758,5.8724,5.58165,5.89125,2.58253,1.7711233333333334,4.53362,3.087045,3.0934233333333334,1.9738166666666668,1.368915,2.945273333333333,3.347433333333333,1.605208,2.269956666666667,2.385208,3.468758791208791,2.717725,5.05635,3.390485,1.374865,3.804425,3.361185,5.5528,4.709875,5.62265,4.62958,2.0406366666666664,1.45605,0.6013085714285714,1.5417566666666669,3.48217,2.49635,3.623778333333333,1.3959133333333333,2.5637,2.442255,3.41183,3.628185,3.838785,3.975601666666667,1.641005,1.455915,1.9169,2.053565,1.401755,2.618475,7.02080525,4.86861,4.140495,2.935455,7.26162,4.52584,3.151585,3.04786,3.377435,2.57833,3.934475,2.3119533333333333,7.34914,0.9092133333333333,3.25934,6.58005,3.92671,4.768465,5.6242,1.4626666666666666,3.2248300000000003,2.8755933333333332,2.8556066666666666,1.5786275,4.12309,8.55478,3.463635,4.998905,4.097335,4.026135,4.598665,0.9010266666666666,2.7917400000000003,5.34335,6.362293333333334,5.1345,5.6203,2.977025,3.8127999999999997,2.6063,5.03595,4.698945,3.5521710238095237,3.5521710238095237,0.6193228571428572,3.5059,0.908084,0.5762116666666667,1.8620425,3.7874666666666665,4.249891999999999,5.727049142857142,3.0901899999999998,3.3247091428571425,3.175380476190476,2.9554233333333335,3.0759899999999996,4.5713,3.579985833333333,1.9293875,1.9293875,3.79025,3.0814133333333333,2.7182433333333336,3.935225,3.407766666666667,0.6379733333333334,3.420866666666667,2.719663333333333,2.6671600000000004,2.83329,2.543875,2.5564833333333334,3.1585933333333336,2.9683499999999996,0.834852,2.9609633333333334,6.567472761904762,2.1134,7.810375166666667,1.548298,1.548298,3.43958625,3.313966666666667,3.3762000000000003,2.9886766666666666,1.751254,1.37309,3.3411000000000004,3.32856,1.5494883333333334,1.5222142857142857,2.785963333333333,2.7213279999999997,2.7373233333333338,1.944895,2.0470875,3.023995,2.1062,2.90874,3.37442,1.67958,3.60911,3.377515,6.906284,3.96075,1.6692675,3.381035,2.838295,2.061645,4.096855,2.7227433333333333,2.77775,7.272475,0.8481153846153846,0.7403666666666666,4.691745,1.4396499999999999,1.4396499999999999,3.90855,2.50665,4.65509,3.46648,1.3767366666666667,2.3355306666666666,2.978676666666667,2.4057606666666667,5.013,3.893595,2.62428,2.4360866666666667,1.4947064285714287,1.4947064285714287,2.4195466666666667,3.93806,3.948166666666667,6.06915,3.2465733333333335,5.0139,4.506,6.82435,4.470385,2.53044,2.7850300000000003,2.64398,2.6396833333333336,0.72973,0.72973,0.72973,3.214945,4.40058,4.043365,0.9977175,0.9977175,5.38925,6.2343,6.75523,22.431198666666667,12.1191,8.35198,3.15931,5.9218,2.47446,4.60421,2.5715166666666667,3.3845666666666667,4.2912,5.430125333333333,1.989295,2.12346,7.02928,2.15536,2.15536,6.61955,3.23577,4.56858,2.068395,5.007009666666667,4.649095,4.31128,5.1834,3.75859,1.5801699999999999,5.92365,9.40138,1.5801699999999999,2.068395,2.0672633333333335,0.8946859999999999,0.8946859999999999,1.8089780000000002,2.29452,1.8089780000000002,4.94876,5.97725,6.40155,8.90855,2.068395,11.708981333333334,6.437,6.0989,2.47446,3.364105,4.56797,9.01348,3.063505833333333,4.229575,6.10925,3.35081,4.898825,6.3273,4.54113,5.0664,5.2843,2.69387,5.39715,3.662685,4.454945,4.299735,0.79922625,1.5657159999999999,3.10164,5.6227,4.579905,2.6733666666666664,2.2031275,4.201365,4.8908,5.76255,5.284,5.36305,4.453065,3.95183,4.131085,3.804695,2.129485,5.25877,2.085815,2.60517,3.47505,1.7674899999999998,3.882,4.346045,3.740495,3.62437,3.04033,6.627495,0.9325333333333332,3.484415,3.90788,1.2449914285714285,5.277105,1.5751483333333332,1.6393566666666668,2.57741,2.9221130000000004,2.77,2.8198733333333332,1.8895475,0.7257981818181819,2.22053,2.638115,3.97901,0.7083446153846154,5.647998333333334,1.7065933333333334,1.190522,3.4247,1.190522,3.87449,0.9395545454545455,4.47566,3.3711,1.894605,4.503979,4.313889,4.313889,5.01555,2.5137,3.0659733333333334,2.733233333333333,1.6488600000000002,3.93599,3.53729,2.0730666666666666,0.7491249999999999,7.192521282051283,2.721335,3.8797,4.135125,7.53993,2.551675,4.20472,3.77189,3.124645,3.85001,5.74755,6.3010874999999995,4.31666,5.0448,5.25705,2.9061066666666666,4.60951,4.211545,4.541095,1.1065344444444445,0.5217471428571429,3.06541,3.5117,2.7720266666666666,5.52505,3.82041,4.27213,4.66481,5.20235,4.335295,4.18689,1.1915499999999999,2.509295,8.708175833333334,2.2675300000000003,1.8960633333333332,3.946626666666667,11.779209543650794,1.4953075,4.930235,6.38225,5.01895,3.4082333333333334,2.25021,3.2703399999999996,4.160905,1.0739566666666667,3.4431333333333334,3.583325,0.3955831578947368,2.21887,4.596095,4.28481,2.15382,4.024515,3.18961,5.018858333333333,1.2758566666666666,0.5445263636363636,3.743001666666667,1.1288457142857142,1.0218025,1.0218025,1.0218025,1.0218025,1.5924616666666667,2.834346666666667,2.2599033333333334,3.6788666666666665,5.42445,3.5916333333333337,5.1065,3.588335,4.37198,3.55675,3.969335,1.3576033333333333,7.1783150000000004,2.41561,5.10555,5.2985,5.1585,5.15002,2.7921133333333334,2.545593333333333,2.62758,3.346695,1.2841933333333333,4.965958333333333,2.6181933333333336,4.91389,2.9299233333333334,2.4218366666666666,3.7854,3.3764,2.954875,2.58766,2.6080900000000002,1.47573,0.38642444444444446,4.25616,3.498145,4.0582,3.537905,3.859155,5.8067,4.46958,0.5405607692307692,3.424758,7.339383333333333,1.9705133333333331,1.944112,5.766496666666667,4.80214,2.7594733333333337,4.924705,4.971905,4.333865,4.254135,4.20691,5.3246,5.43495,5.08125,3.66199,5.2800125,1.5485,1.6152,4.326625,3.816145,4.314255,3.19562,5.1902,4.69422,3.80733,3.370045,15.519124277181932,1.3132665262172285,1.2998625,2.1366906818181817,0.549930625,0.4874413333333333,1.5198,0.3437294117647059,1.300716,3.5582666666666665,1.7102540000000002,1.0215833333333333,1.1104733333333334,0.46861083333333337,1.1104733333333334,1.1104733333333334,0.46861083333333337,0.8781230769230769,0.6283799999999999,2.830085,2.6547066666666668,4.37843,4.33842,2.7835,2.760175,4.12761,4.607465,5.19315,3.331925,4.31309,0.6900221428571429,2.452770666666667,8.316447499999999,4.806975,6.834396666666667,2.71618,4.194165,2.3167,5.3006,5.5728,3.142045,4.367545,3.25226,1.033705,4.57935,4.962475,1.122644,1.244952,1.5672,2.4021733333333333,2.3554999999999997,5.56755,5.49615,2.30641,2.30641,3.586928611111111,6.79154,2.0744833333333332,0.6620627272727272,0.7651557142857143,2.2007766666666666,3.419333333333333,0.8970185714285714,0.8970185714285714,0.8970185714285714,0.3730476923076923,1.0846457142857144,3.03435,6.1371,3.8369,4.2068183333333335,5.31045,1.04154,3.6290999999999998,3.29204,3.9278666666666666,5.76965,2.7192966666666667,7.408616666666666,5.0855,1.1068855555555557,3.759,1.915466,2.758545,2.286653333333333,6.857296666666667,3.28956,4.444995,2.2333325,4.521905,4.299565,4.86167,0.5167461111111111,2.70098,1.4549766666666668,2.54019,4.054369333333333,1.9752966666666667,2.7400266666666666,2.47866,2.5412066666666666,2.5373066666666664,2.9088999999999996,2.7898,2.8678899999999996,1.500376,2.2900466666666666,2.1004766666666668,2.8887666666666667,2.4628133333333335,2.07172,1.7515833333333333,1.9234,1.7461125,3.21436,2.620433333333333,2.2045533333333336,2.2209499999999998,2.3798933333333334,2.6130299999999997,0.7997933333333334,0.7997933333333334,0.7997933333333334,2.423286666666667,2.2624133333333334,2.9766966666666668,2.6394100000000003,2.6268766666666665,2.1708833333333333,4.066105,3.5014466666666664,1.3415100000000002,2.5147766666666667,2.7495666666666665,3.4765333333333333,1.5866142857142855,7.3873999999999995,4.590205,3.178335,4.223075,3.40795,1.4731825,0.8271642857142857,2.962485,3.871565,3.4765333333333333,4.14623,4.279765,4.778985,2.93512,3.939545,4.25663,0.961042,2.79047,3.25383,4.926504166666667,4.75411,3.60066,3.20433,2.464505,2.3563899999999998,2.4062766666666664,0.6413233333333334,5.263556250000001,2.66125,4.112725,2.712536666666667,3.9068666666666667,3.4880666666666666,2.4086966666666667,3.1827613333333336,3.1827613333333336,2.53829,2.0846833333333334,2.5168833333333334,2.0530566666666665,4.335485,1.4454980000000002,2.7751,3.839565,4.092445,4.03274,5.39915,4.059825,2.499045,2.151565,3.34514,3.22285,3.07611,5.2694,2.830185,0.90791,0.90791,4.46473,3.8149629999999997,0.892228,4.334235,0.892228,4.042385,4.674655,4.83661,3.41515,3.38982,6.165045,4.280946666666667,5.9974,0.8964357142857143,0.8964357142857143,2.0903,4.688571666666666,1.5550716666666666,3.1335,3.49304,1.1185357142857142,4.584085,3.990555,5.749375000000001,5.749375000000001,1.1075783333333333,5.0476,5.37595,5.3745,6.1636,2.061965,2.061965,7.0775,0.9683181818181819,7.1835,1.9781425,6.199037499999999,2.628255,2.4472533333333333,3.418935,2.3859000000000004,2.1904533333333336,2.4270033333333334,3.04745,2.4656347619047616,6.483217,1.8095400000000001,5.3246,3.0747233333333335,2.7190133333333333,2.78171,2.95105,3.252905,3.50514,3.56297,2.74117,2.302765,2.276845,2.508625,1.092898,3.742565,2.495835,3.054425,2.1150405,2.1150405,3.02298,2.0321366666666667,3.779135,3.48171,5.09745,7.454368333333333,4.244185,3.472265,6.507895833333333,2.42343,3.3848522222222224,2.26113,1.4810285714285716,1.762635,4.038175,1.5971816666666667,0.49005625,0.6711999999999999,4.59262,4.790635,3.136915,0.9372977777777778,3.01015,2.7384500000000003,5.05395,1.8546779999999998,1.92128,1.1652,4.785305,3.08291,4.503605,0.7245969999999999,4.321571666666666,5.0001,4.307335,4.395845,3.51128,3.812695,2.822713333333333,5.5204,3.620545,2.367573333333333,2.6833633333333338,6.111055,6.78436,0.66131,4.29295,4.731835,5.32115,3.8154,3.7743,3.005325,3.2580666666666667,3.7296666666666667,6.359255,2.7213279999999997,2.5833390000000005,3.92891,3.865175,2.36193,2.64635,8.313813333333334,4.73077,1.8718666666666666,5.25,4.715045,1.8616879999999998,3.857905,1.392475,1.8447,4.40317,4.095935,5.5123,2.8588966666666664,4.487485,4.80155,6.3098,4.526845,4.973095,3.493915,5.01445,4.454625,4.1820450000000005,1.1305436153846156,1.1305436153846156,7.33577,0.76105,1.9762042658730157,0.76105,0.7072283333333332,0.34739444444444445,2.6834325992063492,2.308965,0.5926385714285713,1.9762042658730157,1.90505,2.8925,2.0907940277777777,3.612075,4.61526,7.507693333333334,2.16187,2.155085,2.25941,4.93643,5.7811,1.882525,1.741375,0.82123,2.562605,4.306055,2.833115,4.417455,6.400740000000001,0.460275,3.84466,0.71776,2.8892900000000004,2.47535,3.96534,1.2446733333333333,4.180935,4.638485,4.215455,2.94799,4.184135,5.396795,1.78105,3.42954,0.633373076923077,2.69023,2.677345,1.204876,3.0273966666666667,2.49757,2.54955,3.797705,9.262475,3.1093157575757577,3.67779,3.982735,7.39612,5.703895833333334,3.30294,4.084965,3.455595,5.7754,4.66138,5.66485,5.22875,4.599425,6.2522,3.6187666666666662,1.4835525,1.9713200000000002,2.23962,4.0042,2.414613333333333,0.2555954054054054,0.2555954054054054,0.2555954054054054,30.535438,0.2555954054054054,2.9405454054054054,0.2555954054054054,0.2555954054054054,0.2555954054054054,3.362902072072072,4.139065,0.2555954054054054,0.2555954054054054,0.2555954054054054,0.2555954054054054,0.2555954054054054,3.21805,5.21508,3.09562,0.33334615384615385,0.33334615384615385,4.448266666666667,4.017045958333334,4.021090625,3.2040286250000003,4.037197142857143,8.075733333333334,11.566871394716395,6.497215333333333,8.0668,8.068848232142857,2.7862033333333334,6.339658095238095,4.376401666666667,4.661028493589743,0.33334615384615385,7.734694999999999,6.592959714285715,6.935205,3.000875,8.453850232142857,15.089193779761905,18.677880107600732,57.041856485168424,118.86742088580945,1.3569866666666668,3.4156666666666666,3.387525,3.92443355984556,0.33334615384615385,1.6810397435897435,8.65798625,14.748122857142857,19.984271666666668,48.80481983437761,13.32756406547619,3.17445,0.2715493103448276,0.2715493103448276,4.5138766666666665,2.7007,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,0.2715493103448276,7.6458,0.2715493103448276,0.2715493103448276,0.2715493103448276,2.80317,1.8962333333333332,3.564715,3.737015,4.367301666666667,5.32205,2.54775,4.234995,4.531135,3.354595,1.48689,3.61075,0.9868933333333333,2.295095,2.2388266666666667,5.32045,6.24403,2.74437,5.748548555555555,0.5117711111111112,0.5140893333333333,2.5709933333333335,2.7797033333333334,3.231135,4.26783,3.4187333333333334,7.51391375,3.768155,3.467705,3.41878,4.012405,3.36719,3.24609,5.64235,2.768695,0.45915000000000006,0.8550927272727272,4.417095,1.7335025,3.63979,3.73382,4.55928,3.50695,2.427135,3.035005,0.6183493333333333,0.749626,4.307625,2.597253333333333,5.58285,3.709285,4.061123333333334,2.52518,4.60154,6.2254,5.2052,3.355235,0.8795063636363636,3.3965333333333336,4.5637,2.26858,1.0189275,1.5358533333333335,3.927215,6.26465,1.77019,3.18565,3.976365,5.6588,2.36792,2.5426466666666667,2.411355,4.621975,2.85734,4.8195,0.6828971428571429,2.1734633333333333,3.41074,1.976205,6.036831666666666,4.83913,4.239835,4.834595,2.8562,2.15477,0.5572127272727273,5.12355,4.571105,6.67865,3.29672,5.61955,4.900905,3.194215,1.89465,1.2313100000000001,5.1973,1.99865,2.740295,8.585215,4.04205,5.2802,3.46158,0.9697688888888888,3.012345,1.2380457142857144,3.278405,6.2608,5.01415,4.999425,3.76465,5.21395,4.532085,1.7276575,1.7633466666666668,5.1551,3.0685966666666666,3.3770333333333333,2.38676,5.09845,4.504655,1.4400583333333332,3.5539666666666663,2.665055,2.737625,4.612075,9.39237,4.639375,1.8103875,4.579805,6.17287,4.3260275,4.043115,3.95136,4.068575,4.638695,7.980255,2.367993333333333,3.274015,4.150595,4.161765,2.76538,3.237075,4.89231,4.148735,3.49146,4.156172,18.726233333333333,2.8262666666666667,2.655886666666667,3.30728,5.645225,1.1561,4.33333,2.0864483333333332,5.1148,1.4046116666666668,4.28325,4.358725,3.820675,0.999975,4.59581,4.5191,1.685065,4.794380757575757,4.411675,1.1743385714285715,3.589945,2.02776,2.397925,1.53035,4.246025,3.85225,4.05136,3.65262,3.007733333333333,4.493685,8.014755,4.445075,4.453085,4.96846,3.2868766666666667,4.046845,4.968695,6.688654,0.9773479999999999,0.9773479999999999,4.525105,4.777205,2.1660366666666664,1.4962600000000001,7.290035,4.029935,3.891855,3.879645,4.617395,4.51274,3.488405,4.11158,6.3499,4.025073333333333,4.508825,4.769985,1.4421428571428572,2.695125,4.30121,4.99004,3.5674512500000004,0.21030000000000001,1.93158,2.233285,2.412,2.1252233333333335,0.9665911111111112,1.3503025,1.42012,2.3831533333333335,0.6038122222222222,1.2062214285714286,2.11615,3.84874,3.9369666666666667,2.39003,2.7197066666666667,2.89927,2.824056666666667,0.71846,0.95649375,2.905855,4.67684,4.418575,3.492475,4.497825,4.71262,4.948185,2.17088,4.307835,5.03095,4.478345,6.324775,3.94301,0.49418235294117646,5.461,4.71519,4.0872,5.19715,3.273475,1.96116,4.273915,4.07693,3.12343,5.289104166666666,4.4525,1.3682916666666667,5.289104166666666,3.882045,6.8440224999999995,3.6563,1.2075888888888888,4.01274,5.12675,4.205235,2.6889833333333333,5.0465,1.4982025,2.00845,3.888655,3.53649,0.806661111111111,4.844955,4.86795,3.693025,4.00315,3.3531999999999997,3.13194,1.7651160000000001,1.87603,3.1837,3.576905,3.563133333333333,2.4158833333333334,2.3470875,2.069458,4.50813,1.5490285714285714,0.8361255555555556,6.06435,4.21687,1.48524,2.681063333333333,2.358546666666667,3.6483333333333334,6.4262016666666675,2.328444444444444,0.827952,2.63119,4.80545,2.490553333333333,4.277265,5.53725,5.52745,5.10515,4.31017,5.49315,2.1639133333333334,2.2308,1.6893966666666669,2.1490533333333333,1.8998425,2.4060533333333334,2.20072,1.7122975,2.710135,3.025665,3.62923,6.59735,5.2973,3.997875,4.42761,4.00001,3.85141,4.864925,0.9071625,2.8405166666666664,5.0322,1.157982,0.7087666666666668,5.08985,3.724975,2.556756666666667,3.6039425000000005,6.2504,5.4994,1.03108,1.2416728571428572,0.7322377777777778,4.1925875,2.27757,2.8047299999999997,1.1461157142857143,2.766453333333333,2.66554,5.40095,4.569215,4.349085,5.42415,4.265535,1.31758,3.555175,1.6592200000000001,3.54161,4.20957,3.46617,2.6533533333333335,3.2827300000000004,2.6968433333333333,6.00925,3.992295,3.405135,2.5653,8.521655,10.27149,4.18931,1.2943085714285714,5.5072,4.179995,5.047,4.506445,3.932605,3.859425,3.49329,4.160965,3.610282708333333,5.43353,3.74988,3.747255,4.638225,1.8712579999999999,5.07625,5.7944,4.694995,3.2893,3.1190350000000002,7.32826,0.7556066666666666,2.58763,2.7391799999999997,2.331706666666667,4.990005,3.58169,1.3017833333333333,4.287425,3.3744666666666667,3.745185,4.625475,4.147461666666667,6.5410699999999995,3.15094,2.8859666666666666,3.1418933333333334,2.82507,4.152045,2.08025,2.15434,3.065906666666667,3.96935,3.731640416666667,1.9258775,1.528915,3.4699682142857142,3.373432,0.9280944444444444,2.6254633333333333,2.6254633333333333,1.3600875,5.75135,3.031315,3.118955,3.561935,3.423355,3.430315,3.4189,3.23587,3.1038,2.173016666666667,0.5452426666666667,3.269805,5.81927,3.218015,3.65536,3.21836,4.074465,4.022015,3.385905,2.76839,3.839545,3.800035,3.20407,2.88967,3.45875,2.5670100000000002,4.158505,3.90624,8.94331,3.27296,3.61694,3.086035,4.08615,4.085895,3.675475,2.384875,3.71286,2.6488325,2.947835,2.88951,3.15778,3.550325,1.6611233333333333,1.6611233333333333,2.317935,3.09406,3.30693,1.574392,2.480615,3.48365,1.811196,2.916415,1.574392,4.25414,2.99411,3.87598125,2.855635,3.239525,2.31557,3.44104,3.87442,4.14956,3.51148,4.43747,3.770235,4.275065,3.677345,3.27596,3.30875,2.963285,3.73577,2.6394100000000003,3.548495,5.25415,4.069815,3.81596,0.39057608695652174,3.76742,0.4243308333333333,4.44139,3.55581,2.94386,3.744495,4.005165,6.2413,3.48082,2.5850066666666667,2.359106666666667,2.7432833333333337,0.639861,6.119773333333333,3.07711,3.41649,4.119685,2.364785,2.630045,3.411465,3.18712,6.690135,4.61108,5.01975,4.326985,4.33915,4.3014,3.83448,1.4738583333333333,1.6754280000000001,3.871785,4.544715,5.668945000000001,2.4575333333333336,4.91321,2.08254,3.5221,3.68369,1.9102064285714286,4.081335,4.7923725,3.5777,3.906,2.9730000000000003,4.49811,4.93797,3.4128333333333334,4.384465,4.34011,4.84504,4.57776,4.422035,3.916885,3.176095,4.35883,2.594225,3.3263133333333332,3.3263133333333332,4.475215,2.6457966666666666,3.97842,2.4701033333333333,4.751205,3.2769266666666668,3.55194,1.82807,1.8807866666666666,1.1558,1.1558,1.673064,3.4683666666666664,1.7096366666666667,2.8782300000000003,4.258455,5.117078,3.293146666666667,4.766105,5.87844,2.805995,2.75922,3.006873333333333,1.6394166666666665,4.319475,4.00648,6.5088475,1.72116,5.55385,5.6185,3.3053066666666666,3.3709,4.30792,6.81556,2.245623333333333,2.4367375,4.024615,0.4579457142857143,4.165865,4.08161,4.387575,4.410365,3.6925,1.456202,1.595288,3.904685,3.775,2.41344,4.44177,4.7742,5.09755,1.12708875,3.54971,4.48858,3.682785,4.775775,2.85394,5.386933333333333,3.786095,1.536978,3.55693,1.218735,2.82396,7.514528333333333,3.427985,0.7364418181818183,3.56155,4.179055,4.359735,2.0785325,2.0785325,5.111315,5.8045,3.28136,0.49382888888888893,1.9875725,4.604495,4.454015,4.56699,1.75349,2.967116666666667,3.376505,1.1662961184210525,1.1662961184210525,1.1662961184210525,0.759995701754386,1.3468973684210526,0.5869016666666667,1.1662961184210525,0.759995701754386,0.24148736842105264,0.8283890350877193,0.24148736842105264,0.5185083333333333,0.5185083333333333,0.5185083333333333,0.5185083333333333,1.1167556666666667,1.10142125,2.372446666666667,2.343716666666667,1.1006500000000001,6.292926666666666,2.625976666666667,6.574111666666667,2.639596666666667,3.52765,3.02222,3.318575,2.719705,4.621565,2.7405033333333333,4.096915,4.057345,4.723635,2.2640325,4.128005,4.75168,4.057485,3.09716,4.79269,3.291235,4.46449,5.39775,5.03845,6.0772,5.22555,1.1704975,4.30181,3.77201,2.81623,16.318355,4.399965,5.26635,2.7059366666666667,7.51142,3.97742,4.191205,4.794155,3.25542,1.053725,2.54975,4.111845,4.344455,3.73283,3.37265,4.1405,3.06003,4.53638,4.70886,4.21426,6.714251666666666,8.855471666666666,1.4260428571428572,3.80138,3.97036,3.95636,3.61449,3.540025,7.27347,2.703285,2.8252,2.60258,3.93729,3.86517,4.523055,2.43309,1.7594025,0.869002,4.586175,4.385145,3.96458,4.082325,3.832335,4.843365,4.307485,6.67035,5.95255,5.3645,6.5701,4.82995,3.41427,3.230865,3.457245,1.8732575,5.23105,6.2931,6.6234,6.087861666666667,6.087861666666667,2.3195,1.8732575,2.09176,3.121215,0.708405,1.586075,0.87767,1.50823,2.47942,0.35025300000000004,2.797175,4.126685,1.50823,3.288795,10.905135,6.5016825,2.1933003333333336,1.0354100000000002,1.8398966666666665,4.52127,4.314715,5.994152714285714,1.978015,2.100355,3.80078,3.894215,4.61128,2.0874133333333336,5.19715,3.5195333333333334,3.410725,5.2026,7.107284,3.92238,2.42026,2.7781033333333336,1.7060333333333333,3.98973,5.459792500000001,1.736344,5.6427,4.527215,5.996779999999999,0.5309833333333334,4.94916,4.978185,6.4519,2.466925,2.692955,7.24005,9.275516666666666,6.1447,2.2265166666666665,2.2265166666666665,2.2265166666666665,5.8353,4.484715,6.0761,3.47525,2.68471,2.510564736842105,5.3171,5.7325,2.6044644999999997,1.83306,2.6044644999999997,7.4012945,4.65594,5.228036904761905,6.81135,5.228036904761905,5.228036904761905,3.880478571428571,7.02003,5.9619,3.05586,3.05586,2.99485,6.9363,2.960205,3.51255,5.89819875,5.89819875,5.89819875,8.27408,3.708075,3.49199,3.69918,3.53404,1.22849875,7.417476666666667,2.7615366666666668,6.48215,3.47101,13.339147333333333,4.986915,5.7992925,7.20906,2.7155716666666665,4.86028,1.2079183333333334,5.7992925,3.414585,1.874195,1.874195,3.201755,5.265535833333333,1.74843,4.76833,0.863918,1.3952966666666666,0.863918,1.8925025,2.612348,5.179448,3.71263,1.3952966666666666,4.372495,4.9978025,1.0617325,3.507585,4.574525,2.951105,5.4656,2.36804,3.37881,2.808185,0.98263,4.63598,3.60515,2.06601,1.85119,3.3956299999999997,4.386005,2.7506,3.760295,1.7053666666666665,1.7053666666666665,1.7053666666666665,3.752715,3.0476833333333335,3.0476833333333335,3.12293,4.12671,2.39577,1.3879375,1.3879375,3.31425,4.9215775,1.1860575,1.6194966666666666,3.125235,1.4755783333333334,3.095075,0.98263,0.98263,1.805721666666667,0.98263,3.0911383333333333,0.9290516666666666,3.0911383333333333,6.0857270833333335,3.161075,2.379376666666667,1.8381804166666664,0.6221583333333334,2.46033875,3.538905,2.46033875,1.0095366666666665,3.409125,4.205325,3.812505,3.525005,3.263165,3.785155,1.8319433333333333,1.2767552777777778,0.4443075,1.2767552777777778,0.8324477777777778,1.2767552777777778,1.2767552777777778,4.529445,4.502645,6.48525,3.416555,4.4328,4.404055,5.1995,3.38072,3.76625,1.4205314285714288,3.0701633333333334,4.5373850000000004,3.89471,1.36916,2.6946766666666666,3.82779,3.83225,4.184645,3.864285,4.28766,3.53057,3.201945,4.398275,2.23721,5.98355,3.71526,4.08907,4.948102857142858,1.0000218571428572,2.180475,3.358575,6.66123,4.561065,3.795245,2.97634,4.782265,7.613641666666666,3.3132566666666663,3.194895,3.1522066666666664,5.5022,4.089605,5.636,5.50665,5.2274,4.2717,5.19735,4.70409,3.5847333333333338,7.683135,3.340066666666667,2.37043,2.3653233333333334,4.979105,6.6317,5.6727,5.56505,4.42282,5.083,5.6926,0.5191576923076924,7.524825,4.36834,4.494415,3.86876,4.73116,4.020535,3.0330933333333334,2.56605,1.360715,0.5841469230769231,1.824896,3.0715500000000002,3.68791,4.085965,4.27926,3.65801,11.330936666666666,3.752585,3.778545,3.274285,0.684965,5.623900000000001,2.99621,1.7967533333333332,4.792963333333333,6.826295,3.830085,9.24678,5.7867,4.5673200000000005,4.5673200000000005,4.5673200000000005,5.4462,9.24858,5.11705,3.18395,3.18395,3.406395,9.68913,1.02634125,5.0424,4.530395,4.21376,2.9257266666666664,2.2281666666666666,4.280305,3.939905,6.60995,6.002446666666667,3.85443,2.837245,3.867515,4.22755,3.5176119999999997,1.3143,3.1244566666666667,6.04511,3.33861,4.932965,0.999935,3.6636666666666664,2.3548433333333336,2.58891,1.7820625,1.8004833333333332,2.1479166666666667,5.64375,2.03717,4.36679,5.43905,1.8095400000000001,4.519095,3.882335,4.79584,3.2868333333333335,2.201435,2.75856,5.3115,3.9753183333333335,3.9753183333333335,1.1713425,1.7488533333333331,2.9249166666666664,4.401529666666667,2.208307090909091,4.791026666666667,1.7546,2.7037,2.058246666666667,1.7695025,1.7695025,5.04715,7.385258333333334,1.9268599999999998,2.91879,2.1460825,5.6766,3.20105,0.8390700000000001,2.92539,0.8390700000000001,2.68392,3.559395,5.1686,5.758,3.70894,4.646969166666667,6.09785,2.4901,1.9500966666666668,2.621426666666667,2.2229433333333333,6.17975,4.944195,3.37885,4.04623,2.654685,4.31745,1.1359375,1.1134359999999999,1.8866800000000001,1.4669383333333332,2.6020166666666666,2.731313333333333,2.2776366666666665,2.9580866666666665,2.713155,4.35047,2.5635066666666666,2.5075566666666664,2.76043,2.3655566666666665,2.86366,2.682166666666667,2.0445433333333334,2.4435866666666666,3.74041,3.824945,3.21381,3.720375,2.8701899999999996,2.2242225,1.9141725,1.241365,0.297309,0.14161782608695653,2.0856033333333333,1.9457166666666668,0.14161782608695653,4.02385865942029,2.080675,0.14161782608695653,5.944846458333334,2.3395633333333334,6.27025,3.479485,3.3548666666666667,2.486,2.9067900000000004,2.3409275,4.350765,3.2014,3.2811766666666666,0.46988052631578947,3.9307833333333333,2.714597192982456,2.93749,1.89501,2.4991525,4.38942,2.553065,7.9164,5.33725,3.543275,3.72181,6.41628,6.00378,1.7504799999999998,4.114528333333333,2.167625,1.85845,6.18435,7.63616,1.2435333333333334,2.0788225,3.821975,2.569875,2.80174,3.2354,2.894925,4.197735,2.363435,3.13103,3.31639,3.113815,7.42425,1.3000800000000001,2.052735,2.953015,3.35283,1.67298,3.406945,1.50286,3.74804,3.365795,6.48881,3.53604,8.9951175,3.788355,1.562556,1.8280399999999999,3.009215,6.15823,1.79625,1.57366,5.93232,3.461855,4.083995,2.681145,2.030823333333333,3.22599,10.30616,5.13521,6.37272,3.475955,2.42793,2.23409,2.59482,2.81053,3.227455,1.7688,1.6768466666666668,2.5741466666666666,3.476685,1.714265,3.279695,2.936455,4.148865,3.674,3.15306,1.2628616666666665,2.7193,1.1964066666666666,1.363156,1.684245,3.088055,3.29358,3.6251,2.82438,3.8331,4.032875,2.754545,1.47662,3.60154,3.5231425,3.142665,1.787825,3.173505,3.474565,1.4917025,3.250115,1.6204266666666667,4.089665,3.976385,4.9044,2.656915,3.93141,1.74754,3.86392,5.39875,1.63878,1.0889842857142857,3.9686,2.75193,4.3355,4.15337,3.016355,4.571475,4.766385,2.3294333333333332,5.5177,5.4305225,6.5454,4.268865,6.756028333333333,4.06296,1.7669333333333332,2.7659066666666665,4.63608,4.866115,2.7581433333333334,7.184478,1.2586928571428573,3.4748666666666668,2.09021,1.7408899999999998,2.31724,2.838903333333333,0.37031285714285717,2.84329,3.8045333333333335,3.406255,2.522825,3.3381000000000003,2.3201966666666665,2.40952,2.2635625,8.928505,5.05315,1.850396,5.15575,2.4415300869565217,0.7574948461538462,2.8296433333333333,7.623230666666667,1.7774819999999998,4.5876825,6.117801666666666,1.7456925,1.6695325,1.426125,5.22375,3.226725,4.53883,4.4803225,2.4952733333333335,3.742715,1.035118,2.9037646666666665,4.070385,4.12669,4.90011,2.917885,4.86139,4.68778,4.689025,5.19515,5.8155,4.80695,4.446665,5.11305,1.6592759999999998,1.836815,3.046555,3.47574,1.1095211111111112,4.366365,2.266,3.3699,4.30624,3.2452733333333335,2.6681233333333334,1.6085733333333332,3.0970333333333335,2.8013844444444445,2.6293633333333335,2.902293333333333,1.9186233333333333,2.3390875,2.46852,3.95671,4.317375,3.966645,4.562315,3.51293,2.33603,3.010285,4.818125,3.848133333333333,4.67228,4.11266,2.26977,4.478468333333333,1.7334133333333333,4.17531,4.8643125000000005,5.9693925,4.45196,4.519785,5.5678,3.3345000000000002,3.9584124999999997,4.67853,3.16512,3.7814059999999996,4.867875,1.3313825,3.12652,1.738685,2.3043,4.67138,5.3389325,3.7814059999999996,4.100355,3.54344,1.5550716666666666,3.593275,2.11619,2.7227433333333333,2.336105,2.78296,1.4924033333333333,1.4924033333333333,1.4924033333333333,0.5360199999999999,0.8097711111111111,2.192057777777778,1.1152675,3.48813,1.3106866666666666,4.198535,5.22105,4.65436,3.31489,4.087375,3.25529,5.0519,1.97001,2.98082,2.56552,4.068415,5.8398,4.351825,5.40245,4.068775,0.9894275,2.257165,1.26437,3.810615,4.024995,4.32454,5.288,5.00375,4.67175,5.13285,3.941055,1.76915,1.2717816666666668,5.403766666666667,1.0508111111111111,1.4383366666666666,2.733743333333333,8.219225000000002,5.05625,3.755375,3.29168,5.64485,1.682515,1.0028866666666667,1.684185,3.175495,3.52203,3.7925,3.644635,1.90165,6.284145,2.9657933333333335,1.12366375,4.82261,2.94363,2.8937733333333333,2.245546666666667,3.6892333333333336,5.8832725,2.87129,3.3257833333333333,3.5322,2.72097,3.08684,3.02129,2.63924,2.03415,4.556455,4.875195,4.769765,1.0238977777777778,0.744467,3.9095666666666666,2.68042,1.04616125,2.6724129166666666,4.27884,4.321405,7.080439999999999,4.639695,3.501,1.738816,3.802235,3.74629,2.8463499999999997,2.5157225714285714,4.17656,2.8644533333333335,5.024922666666667,0.8919144444444443,4.770995,1.710032,4.22048,4.263785,2.591165,1.1671925,3.1409,0.420392,3.236615,6.6313,5.752,2.835146,1.482502,3.9496333333333333,0.8321277777777778,2.524896666666667,0.8321277777777778,4.088235,4.23472,1.3661775,2.0052275,5.182763333333334,1.8072733333333335,3.48516,3.624395,3.85929,1.216712,1.6083733333333334,4.124735,5.21485,5.1437,3.183056,2.628875,3.22785,1.5954675,2.4903375,1.9873825,2.07697,4.629695,1.3853111111111112,1.3853111111111112,3.47712,4.612765333333334,8.219638333333332,4.579903333333333,7.80248,2.19455,3.835945,4.21655,1.7393833333333333,3.6588025,4.22639,3.18513,6.2352,3.03886,2.64307,3.0215533333333333,4.169515,1.09692,4.015355,4.63097,1.1541233333333334,7.96879,2.914545,3.144645,3.5382016666666667,5.1738,4.91828,3.8454825,2.47384,2.7685733333333338,1.9846833333333331,3.6945,2.32956,2.16449,7.729237333333333,3.358233333333333,3.2028366666666668,4.353825,22.757884098901098,0.7115066666666666,2.734745,4.37559,4.64921,8.36128,4.594715,4.523605,4.513455,6.881141666666666,3.59721,1.9081933333333332,4.941838333333333,3.251755,1.169822,1.169822,1.169822,2.34231875,1.67939,3.29848,1.519465,3.038495,1.4626666666666666,2.658385,2.63669,2.886665,1.519465,3.21344,2.690015,4.180641666666666,4.776891666666667,5.0995,0.8006233333333334,3.359085,2.76266,4.859515,3.77762,2.86534,2.3555875,1.6713025,2.173315,1.4418659999999999,3.999815,1.60578,4.69128,11.491635333333335,2.780113333333333,2.64028,5.027338333333333,4.690733333333333,4.488666666666666,6.1922,2.2447166666666667,5.703895833333334,4.62001,1.4045133333333333,1.1742742857142858,6.466271,4.159545,2.3321075,3.75837,1.9104025,4.575115,5.04215,4.60172,3.98426,1.4039157142857144,4.406605,4.8821,4.758605,6.2049009999999996,3.78028,5.37435,4.72811,4.336845,5.24875,3.592333333333333,4.742285,1.6749625,3.420225,3.217365,3.808915,4.349585,6.18295,4.507445,3.1051033333333335,3.474066666666667,9.00896,4.86974,3.30912,3.63435,3.369605,4.372705,4.392585,4.765675,6.992416666666667,3.62365,2.612206666666667,4.308235,2.43928,4.39447,2.6306333333333334,6.6351175,1.6491533333333335,4.720455,4.647495,11.862985,0.4792528571428571,4.62178,4.74727,0.6597071428571429,3.68197,4.03284,4.2994,0.9669719999999999,4.911,4.915963333333334,2.66216,10.080203333333333,3.335733333333333,1.90294,2.90834,3.530095,5.98115,0.6098,3.898015,2.0036675,5.40095,0.7260246153846153,4.19647,5.67225,5.82475,3.742245,6.5686325,4.46976,3.6047725,2.5683666666666665,2.8584933333333336,4.177215,4.6299,5.0146,5.0888,5.40285,3.2708600000000003,6.97212,2.88615,3.6148125,2.113845,3.60696,2.5981033333333334,1.4366899999999998,2.950583333333333,3.289626666666667,3.2522466666666667,3.569266666666667,3.5754333333333332,3.1103466666666666,2.6714566666666664,5.70365,3.271876666666667,3.65827,4.98551,2.6886666666666668,1.144011111111111,3.04081,2.92432,4.00932,3.14622,3.1142133333333333,4.795923333333333,2.050943333333333,1.6724375,3.04482,3.735545,4.575705,1.11821625,4.542235,3.27853,4.106366666666667,3.09707,4.934101,3.923285,3.22349,4.082235,1.72896,3.92369,0.65201875,4.65307,4.8832,16.358552727272727,3.2606466666666667,1.1760516666666667,4.59947,0.64589,2.64155,4.48803,1.940935,1.3396171428571428,3.79663,4.57427,3.146986666666667,0.7963233333333334,2.70706,7.5363,3.802635,5.62695,5.32415,5.0304,3.25379,3.7955,3.2358233333333337,7.0143233333333335,4.1718,5.15285,2.17594,0.4619183333333333,2.053125,3.204035,2.029945,3.1814,4.507205,2.93784,4.696255,0.6798175,4.74884,3.603865,2.971745,1.1683999999999999,2.63432,2.02562,4.94131,3.93838,2.23832,1.6405428571428573,3.83064,4.88492,4.735585,6.156055,2.11862,4.99305,4.68184,4.27275,2.0927,4.47884,6.192921666666667,4.93955,2.43495,4.870885,3.208475,3.129,4.125675,4.010595,1.3557433333333335,4.716465,2.3964666666666665,2.8444533333333335,5.386921666666666,5.386921666666666,5.16295,1.8835540000000002,4.868555,0.93824375,1.7978619999999998,5.22045,2.58507,1.44642,3.4031333333333333,0.971512,4.332866666666667,4.82476,3.061625,5.2067,4.026365,3.77401,5.3693275,3.511065,3.5821666666666663,3.0134166666666666,2.4653666666666667,2.6944,2.92993,4.399515,1.6121660439560437,2.9663033333333337,4.470105,4.84783,2.3138229166666666,4.3306,4.652505,4.907918333333333,3.5351666666666666,5.31145,5.1931,5.14895,4.81026,3.815555,3.60025,3.69526,4.661515,5.52315,4.81547,4.97719,4.588095,4.5405,0.674335,4.85672,4.586245,4.05285,7.4254625,4.297825,3.75574,4.36174,4.8893,3.490705,3.63711,2.1286325,4.4580874999999995,1.9343175,1.29271,3.76834,2.111143333333333,2.526386666666667,3.9648393333333334,3.2160466666666667,3.25973,1.0906233333333333,2.0171225,4.53669,3.52416,1.92194,1.92194,3.78651,1.658046,3.0829866666666668,4.45683,3.64882,3.739595,1.5031033333333335,2.066795,3.5477608333333333,1.9327,4.08461,4.577955,4.475315,4.16151,7.629858333333333,2.72435,3.67018,4.777745,4.328845,3.1825799999999997,4.08129,4.31157,4.435045,2.061235,2.5302966666666666,4.417725,3.900195,3.887135,3.84945,1.6676225,3.87336,4.272695,4.53334,4.226915,3.891185,3.891185,3.1245183333333335,4.3379,4.26877,4.05641,1.670958,8.04255,3.975395,5.11645,4.42406,4.27708,4.522355,4.985185,3.322855,3.936545,3.299705,5.26795,1.9908100000000002,4.67073,5.698226666666667,5.1566,0.724522,4.841585833333333,1.15956,5.0233,4.83701,4.6735,4.277715,5.4911,3.8401,3.8401,0.887791,2.281895,4.819215,3.54725,4.21354,4.80393,5.69985,3.24711,4.355,1.4207783333333335,2.722485,1.65448,1.2509375,4.326681333333333,0.8596220000000001,2.65566,3.12079,1.3072066666666666,2.4083125,2.6591,1.4595133333333334,6.24163,1.939005,2.472663333333333,5.2898,2.02448,2.8777833333333334,3.697985,4.63076,3.745033333333333,3.2880299999999996,4.169866666666667,1.697138,2.152545,4.41941,0.6444335714285714,2.3563966666666665,2.62698,3.1691266666666666,2.772933333333333,1.2829,0.8308833333333333,2.54645,4.23201,1.2270957142857142,2.2745975,1.23173,5.666951666666667,2.305685,4.79958,4.395495,4.33985,4.96125,5.23985,4.356115,4.2671,1.5190066666666666,3.9614,1.725922,2.5972766666666667,1.1922957142857142,4.37436,2.05005,7.137600000000001,3.915665,3.96646,1.558432,6.800805,4.564455,1.5607366666666669,4.103365,3.200055,3.966815,3.19984,1.9826075,1.9826075,3.370433333333333,1.3384183333333333,1.3384183333333333,2.0927,2.8462933333333336,2.07172,1.3415100000000002,3.5055666666666667,1.043795,3.0914300000000003,2.351665,1.8911175,1.5192966666666667,2.1983625,2.1222125,0.29011176470588235,2.4279175,1.18727,2.3589766666666665,2.058246666666667,2.499045,1.0810166666666667,1.092898,3.8553333333333337,3.0738266666666667,1.9826075,1.7335025,1.9197866666666668,2.543883333333333,2.4211666666666667,1.829508,3.4929333333333332,1.09764,3.276346666666667,2.85401,2.4953499999999997,1.517782,1.034724,2.51015,1.034724,2.51015,0.6691275,0.6691275,0.49471611111111113,2.3419725,2.448983333333333,0.6691275,2.2055125,2.35125,2.3259425,1.7461125,0.7997933333333334,0.6691275,0.6691275,1.6201139999999998,1.6201139999999998,2.0822275,1.7335025,0.6691275,2.3404,0.4695853846153846,3.015836666666667,2.057373333333333,2.651666666666667,2.5391733333333333,2.5391733333333333,0.3847615,0.3847615,2.0927,1.9662739999999999,2.1807,2.00982,0.3847615,3.500033333333333,2.598725,1.62897,0.6377,1.62897,0.6377,8.87514,2.4337233333333335,4.020766666666667,2.5834633333333334,3.075396666666667,3.0494833333333333,2.9296100000000003,3.4530666666666665,2.47879,1.6539625,2.7095066666666665,3.3132566666666663,2.350956666666667,1.6201139999999998,2.4662831746031744,2.4662831746031744,2.7990333333333335,2.151965,4.32475,2.3106966666666664,3.2792966666666667,2.6696933333333335,1.6217320000000002,2.3984325,2.40615,0.7951736363636364,1.69475,3.50987,1.8169879999999998,3.066073333333333,2.5541966666666664,2.66955,3.828333333333333,1.7083166666666667,3.518266666666667,3.1433366666666664,4.185033333333333,1.280796,0.2715493103448276,1.2698642857142857,1.2698642857142857,1.0530933333333334,3.2082033333333335,3.9278666666666666,2.7182033333333333,2.125113333333333,2.125113333333333,2.162415,1.6204266666666667,1.00061,1.78473,1.78473,0.6691275,2.0927,2.82799,3.397933333333333,2.351665,2.15706,2.15706,2.15706,1.0728433333333334,1.4810285714285716,1.4810285714285716,2.531675,2.8923466666666666,2.672879835858586,3.951395,2.52869,2.60142,3.74995,3.88775,7.0539974999999995,3.834505,4.59001,3.7404333333333333,13.142822500000001,4.83917,3.586,0.9355025,4.083745,3.357355,1.98362,3.73275,5.4632,7.622765333333333,6.05115,0.4893558823529412,3.74873,3.372975,4.03726,2.457835,4.349915,5.13795,3.96481,8.034915,3.32968,3.91437,3.981285,3.3072636363636367,8.105704307692308,3.293476666666667,2.6399033333333333,3.683565,4.147355,4.884035,3.805875,7.014702,5.14855,1.371382,3.99222,0.8709775,4.913035,5.547,4.46916,4.301335,6.0185,4.57125,5.1527,3.964665,8.018205,3.94326,4.757317,3.0481,5.2777,3.012415,0.87303,0.87303,3.586145,3.97757,2.24449,2.16876,4.040175,4.842395,4.152785,2.677925,2.7683,3.318575,2.4408133333333333,1.12737625,3.8464,4.92669,8.47057,1.606094,3.19475,3.459725,3.74232,2.729506666666667,8.29776,4.15577,3.6718666666666664,2.8984199999999998,3.985975,3.3224133333333334,3.0954266666666665,3.190443333333333,4.07636,3.86774,4.519165,4.272455,0.395596,1.4738466666666667,2.3627966666666667,1.74024,4.641985,3.53369,2.5619666666666667,2.2597725,4.535415,3.8331665,2.2183525,2.489775,0.926448,2.2722025,2.5256433333333335,2.5256433333333335,5.24735,1.86606,3.0318466666666666,2.322503333333333,2.25928,1.69683,3.143315,3.80633,4.71359,4.322505,5.0501,4.80349,2.82614,3.2822600000000004,2.0278199999999997,4.86834,5.5523533333333335,2.26786,2.97396,2.19912,2.39993,3.932633333333333,2.692826666666667,4.895985,3.70066,3.49611,4.39652,2.95527,3.63009,4.13033,2.24093,2.3164966666666666,0.40350285714285716,3.779833333333333,2.6094066666666667,4.18691,6.1665,4.674125,5.9476933333333335,1.997985,1.6013083333333331,3.14884,5.30835,6.4445,5.8036,3.0098833333333332,2.2485833333333334,3.614965,2.44549,4.692715,2.277293333333333,2.31107,5.4524,5.0587,4.571235,1.7688425,1.87666,1.072506,1.072506,1.218768,0.9137085714285714,0.8735160000000001,1.8105205714285715,4.23029,10.530703333333333,3.932445,4.365645,4.07227,5.6897375,2.68342,1.6503466666666666,3.556445,3.00262,3.97518,2.53802,2.6510000000000002,2.9705966666666668,3.2763899999999997,2.3434866666666667,3.2998433333333335,3.3737666666666666,3.0287333333333333,3.4304,3.4998666666666662,3.02678,2.8058333333333336,3.1264299999999996,2.47317,3.06558,3.128823333333333,2.9657666666666667,3.4055999999999997,2.26142,5.600063619047619,3.2813666666666665,4.332452666666667,3.1453366666666667,3.18026,3.7673666666666663,2.8305933333333333,2.88862,3.080083333333333,3.1896299999999997,3.4722333333333335,3.25749,1.99328,2.79101,2.9394899999999997,2.95575,2.95575,3.3265766666666665,3.0744633333333335,2.58695,2.7155799999999997,3.2233133333333335,4.2497,2.8160066666666665,2.77725,2.712733333333333,2.8250733333333335,4.6499425,5.02125,1.6754166666666668,3.406,3.7354333333333334,3.4319119999999996,3.299886666666667,3.826366666666667,3.5743666666666667,2.798033333333333,3.4759780000000005,1.9946560000000002,2.79278,3.4338333333333337,3.253553333333333,2.5641166666666666,2.4604466666666664,3.831466666666667,2.8653833333333334,3.078673333333333,2.3998925,1.2327516666666667,3.3942333333333337,2.6845766666666666,2.3810933333333333,2.49977,3.20373,3.156473333333333,2.03582,5.659655333333333,2.4851733333333335,0.904519,4.58721,1.8571225,1.597425,4.438885,3.80793,3.238095,2.26023,1.457835,3.334485,2.696635,2.910695,0.42503349999999995,2.038665,0.42503349999999995,2.09353,1.457835,2.799875,3.795325,2.589625,3.47262,3.78902,0.5363566666666666,3.0712566666666667,0.941995,0.44140411764705884,4.206435,4.110625,4.891235,2.5297,5.64585,4.252965,3.938505,2.500895,4.0068,1.688872,5.90105,2.802105,4.25383,4.806005,2.998283333333333,2.0922300000000003,2.0638833333333335,1.2579033333333334,1.801335,0.91482,0.91482,4.470645,3.3109800000000003,7.049015000000001,2.2193775,2.12592,1.957625,2.34072375,2.166285,5.00345,4.282365,2.11608,2.2248966666666665,2.34072375,2.67498,4.37043625,2.69034625,5.826371666666667,2.2193775,3.1691375,3.26042,3.056013333333333,5.50045,4.746355,1.99004,1.9419725,2.3129225,2.75831,4.83807,5.38425,2.0262025,3.89477,1.6394166666666665,1.580385,5.418,10.462498333333334,2.1606833333333335,2.2782133333333334,2.371966666666667,4.560785,4.26775,1.9081575,4.834495,4.68946,2.93804,39.74113155952381,2.93866,3.1165866666666666,0.4777427777777778,5.1259225,2.6978166666666668,0.971698888888889,4.28517,3.621865,1.971175,1.8787325,2.368046666666667,3.87207,1.3846900000000002,3.0811673333333336,3.803605,4.68424,0.921028,4.943295,4.881995,5.0275,2.9827966666666668,1.5354325,3.8340725000000004,4.514405,4.09442,3.763865,3.584335,4.04982,11.952445303030302,2.7474900000000004,3.1409,4.18599,2.709325,4.44662,3.277085,2.555645,3.1519,6.25484375,4.873335,5.1653,5.00875,2.437955,3.75089,4.25776,3.64479,4.67476,4.63131,0.12323043478260869,2.39938,5.4957,2.680535,1.54463,1.144625,1.144625,2.4866975,2.795255,5.0134,1.388496,2.8764066666666666,4.41704,2.534815,4.412949166666667,0.5757007142857143,4.61825,4.10718,4.699775,4.635505,4.663345,1.3849375,1.316425,4.152633333333333,2.913266666666667,3.0074733333333334,4.197151696969697,4.093525,6.29884,5.36805,4.58139,3.51046,2.3881633333333334,1.4835216666666666,5.0262,0.31146799999999997,3.40218,3.74393,4.040985,14.040786666666666,1.992095,3.1429899999999997,0.7652575,4.51715,9.10199,3.202795,1.8337333333333332,5.9021,3.3318366666666663,1.25616,4.53594,2.754145,3.12272,4.827755,3.363512777777778,1.108035,6.871081666666667,0.726705,5.1175,3.1993372777777775,1.4152075,2.053400777777778,3.1709875,3.1709875,3.903635,4.304702499999999,1.37305,2.27261,2.66129,3.609265,3.0205,2.582625,3.181205,3.42344,6.836510666666667,6.6327,4.231425,3.21488,4.996,4.90398,3.760365,3.362535,3.550565,4.13044,4.920995,2.5159533333333335,2.5417633333333334,1.5542033333333334,2.31504,2.2773925,1.5534325,3.3523666666666667,3.592233333333333,3.4581999999999997,3.2200233333333332,2.6585533333333333,1.48689,1.9130466666666666,0.49168,2.8870466666666665,1.5629142857142857,1.8705675,3.4782333333333333,2.5660166666666666,2.5702700000000003,0.93780125,2.229085,2.470995,3.08546,3.558855,5.37145,3.711835,2.931555,2.27724,3.38191,4.19501,2.45979,3.62781,2.011735,3.65238,2.798295,3.851255,1.5097066666666665,0.61741,2.38673,3.28925,3.072005,3.90648,4.70188,8.65014,3.23089,2.5107566666666665,1.9189866666666668,1.786584,1.786584,2.766553333333333,2.6217833333333336,4.96782,4.714385,3.44948,4.98414,4.386135,4.4125,3.3893066666666667,4.489425,7.8820125,2.510575,0.49005625,3.238493333333333,1.30541,1.0076314285714285,1.8957633333333332,0.819881,2.1308525,5.4692,5.3175,6.1523175000000005,1.0761675,7.24536,1.9805319999999997,1.5473516666666667,2.8237900000000002,4.208245,3.2618733333333334,2.4318375,3.809765,3.1381333333333337,4.2388,2.8519,2.77016,2.9243633333333334,6.586705,2.498315,3.977145,3.7861949999999998,3.6921275000000002,1.55508,1.1530975,4.29359,2.6151466666666665,3.227586666666667,6.21159,2.545385,2.049975,2.4354125,3.48241,3.6738999999999997,2.3339366666666668,4.241371666666667,3.11256,5.3221,2.4173896666666668,1.83126,4.95745,5.66405,4.69278,4.425735,1.68856,2.2418,1.9830225,3.34065,1.4969733333333333,0.8878366666666667,2.6105441666666667,2.061455,1.998395,4.27674,0.8018891666666667,6.2433475000000005,1.5185975,0.7816372727272728,3.6804666666666663,4.168775,0.7311585714285714,3.2926465,3.1609475000000002,0.8308833333333333,4.683055,0.182515,0.182515,0.182515,0.182515,0.182515,0.182515,1.91589,3.89778,1.91589,1.91589,1.8177466666666666,0.182515,0.182515,3.3376,2.66436,3.738865,3.33014,2.33244,3.5309,1.4977,1.679824,3.5176119999999997,1.576406,3.06714,2.6606562222222223,6.0241299999999995,4.355295,4.25248,6.4648,4.4938,4.947425,4.209865,4.114045,7.415731666666667,3.9255999999999998,3.749,2.6283333333333334,5.123659999999999,2.6170466666666665,2.0892925,1.8666666666666665,4.821175,5.2252,4.86473,5.1925,5.61275,4.5363,4.60519,0.7832190909090909,0.7120571428571428,0.7120571428571428,4.686815,2.2013833333333332,3.85969,1.027847142857143,5.14685,1.5061,2.3131666666666666,2.5571,4.4969,4.4969,6.8422,4.40845,1.4864766666666667,11.325411666666666,3.0763766666666665,1.2579333333333333,5.21275,5.1837,3.88976,3.24751,2.806125,4.2208,0.8062933333333333,3.227453333333333,3.269493333333333,3.7999333333333336,3.2927700000000004,1.44531,1.45706,4.750663333333334,3.2221833333333336,3.17586,3.5444,5.2831,3.4016633333333335,0.843398,1.8771333333333333,3.3907333333333334,2.3625533333333335,3.8547666666666665,3.4451,3.2545266666666666,3.645433333333333,3.1268733333333336,2.5402733333333334,1.2238866666666668,3.091763333333333,2.6360633333333334,3.631835,3.22547,4.02598,2.7147,3.22911,2.7642,1.613756,2.1995033333333334,2.848595238095238,3.655466666666667,1.897032,3.1973933333333338,1.8673833333333334,3.723433333333333,5.41238,5.085886666666666,2.524275,2.60765,2.7384,2.6001,1.6000857142857143,2.4000575,3.2800682142857145,2.424625,3.5078333333333336,2.825915,3.8065966666666666,3.26854,1.2942111111111112,1.27348,1.7696525,2.1952025,3.11533,3.5922,5.08995,7.403689999999999,3.195735,5.1143,4.23467,15.782685666666666,0.5182,11.1613225,1.0754877777777778,3.32752,3.2002433333333333,1.8457166666666665,2.983425,1.574376,1.47662,2.7017100000000003,1.290342,2.7111893333333335,2.14413,3.0711633333333332,2.229546666666667,2.8738200000000003,1.54683,0.6862858333333333,3.3394,2.4816333333333334,3.0751933333333334,1.0728433333333334,3.508266666666667,0.7455058333333334,0.36503153846153846,2.964503333333333,4.51335,4.711255,5.08615,0.8407436363636364,3.99661,4.75238,1.183245,2.501925,5.509685833333333,3.45973,3.916875,4.05239,3.930165,1.965975,3.87729,2.7519299999999998,3.02176,3.530285,2.657455,2.726505,3.82875,3.165305,3.65037,2.325145,3.351445,4.79501,1.3152133333333333,4.643565,2.2860275,4.058725,4.9745800000000004,2.0213075,2.7572266666666665,2.9916966666666664,5.831731666666666,2.5004399999999998,3.33493,5.42675,4.020766666666667,4.33666,2.6555933333333335,2.54325,4.807955,3.5505333333333335,4.26795,3.4794,3.276066666666667,3.054983333333333,3.8305000000000002,3.200343333333333,2.69421,2.882543333333333,0.43571499999999996,2.4405775,2.107785,4.604025,4.92067,3.0541433333333337,2.812606666666667,3.3205500000000003,7.935425,3.6208,4.03253,2.7993633333333334,3.75065,3.127305,3.8672899999999997,2.818853333333333,2.35405,2.82452,6.3642,4.573325,2.1617366666666666,3.348325,3.21967,2.6022266666666667,4.727,1.72077,6.232049999999999,3.855655,4.77347,4.67062,6.18225,3.670945,6.714824999999999,4.5049,3.47341,0.6919342857142857,2.3068325,1.5478525,2.9069599999999998,3.4127925,4.10054,3.84542,5.3905,2.6940866666666667,4.815695,3.6623666666666668,3.7512666666666665,3.2772166666666664,4.731495,4.659155,4.82421,2.9252800000000003,5.99828,4.42542,1.4709750000000001,5.44845,3.5478,2.73387,2.16302,2.2474000000000003,4.632699333333333,1.2407214285714285,2.49347,2.12573,3.83863,4.568735,2.524923333333333,3.3078833333333333,3.003519333333333,2.5296833333333333,3.914215,1.35904,2.2678566666666664,2.334913333333333,2.89866,2.51285,2.6042566666666667,2.6341033333333335,3.927895,2.89607,2.7950966666666663,4.049395,2.37655,3.794655,3.606315,1.3453065151515151,1.3453065151515151,4.697925,2.9283699999999997,1.79968,1.346055,2.1620725,2.014545,1.22997,1.4163833333333333,0.6403179999999999,1.63884,1.5626233333333335,3.00793,2.3353966666666666,1.8082366666666667,1.8664266666666667,2.2518933333333333,1.56457,1.7419666666666667,1.8129333333333333,2.3507675,4.165465,2.9409,3.010033333333333,2.81595,5.661075,2.845125,4.267685,3.953006666666666,2.43146,3.97359,3.107915,1.87259,3.42261,2.027395,2.98946,3.659215,2.0530025,4.491295,3.416735,4.123615,3.419233333333333,0.8326988888888889,4.66577,3.769965,3.30293,3.70124,2.650776666666667,4.776315,4.70781,5.089768749999999,9.195166666666667,3.812055,4.40737,3.11023,3.635705,4.434705,2.45001,2.968865,4.252985,2.2361825,5.67223,1.8342680000000002,2.626185,6.67542,2.9312233333333335,4.220167999999999,1.2871542857142857,4.597245,4.655595,3.3295833333333333,4.80429,4.914555,6.203761999999999,16.087978154761903,0.6101235294117647,1.0810166666666667,3.189163333333333,3.922895,3.481315,2.1742325,3.58742,4.057295,4.824055,2.3984,4.45441,1.7221833333333334,1.7221833333333334,5.13195,0.7566427272727272,1.7645579999999998,2.91459,3.97778,0.3730476923076923,1.93043,4.191172249999999,1.1368500000000001,3.0167,2.7615766666666666,3.03356,7.92152,2.508356666666667,3.4625,2.01796,2.1832533333333335,3.982005,3.434845,3.339815,6.935501666666666,1.792965,2.95725,4.49255,6.68121,1.9181666666666668,2.3020133333333335,2.58174,1.3656566666666665,2.67254,1.8029937500000002,3.95506,3.678955,1.46046,1.898901,1.898901,2.9899466666666665,5.5858,4.35049,3.83006,4.564585,4.83274,3.049375,3.7148,4.00505,3.494845,4.638108333333333,3.7549525,4.48114,0.908929,0.362289375,5.2754,3.839285,2.5050166666666667,8.07777,1.55244,4.6494,4.035155,0.43248166666666665,1.9700566666666666,1.2419666666666667,1.81818,1.9138166666666667,5.16863,2.979895,3.262165,4.5954875,4.98596,4.643715,0.6055761538461538,2.110255,0.578075,5.739971666666667,1.532476,4.92735,2.09525,3.20757,3.24936,4.104665,4.25343,5.01575,0.8572663636363637,3.085015,4.07697,2.04985,1.7593325,3.708005,3.13097,3.59707,3.8026662499999997,5.598409523809524,4.61081,5.57475,2.7576699999999996,0.7826077777777778,3.4884,3.62592,0.6793761538461538,3.956105,4.013305,3.961605,3.03366,2.6752533333333335,5.22905,3.296995,3.61743,2.19578,3.858345,1.77667,3.593,3.806375,0.641916923076923,4.968135,4.126355,3.06589,4.06645,4.2352,2.62333,3.830325,0.616435,3.0647066666666665,3.80412,4.522865,3.5017333333333336,2.53815,3.4995999999999996,2.53815,5.1783,3.08134,3.2239733333333334,1.5133333333333334,3.0001700000000002,1.9209025,4.33656,2.9176566666666663,5.306783333333334,3.2965999999999998,2.864716666666667,2.9553666666666665,2.356998571428571,2.356998571428571,2.356998571428571,2.3292366666666666,1.1021833333333333,4.558055,2.3989066666666665,1.69127,4.047266666666666,2.6590666666666665,3.105923333333333,4.181845,5.35115,3.607045,2.04857,1.666208,4.096395,1.9205539999999999,2.391576666666667,2.89621,3.347525,2.0745775,3.57168,2.729125,1.7152560000000001,4.671945,4.18575,4.08921,3.66899,0.75886,2.434536666666667,4.51341,7.556100000000001,4.18016,3.022965,3.93399,3.42697,3.70965,1.98536,2.3718025,4.932185,2.245565,4.390105,3.573585,5.07665,8.769486666666666,4.004165,3.723245,3.27109,4.803865,4.2343,3.4727275,3.4727275,4.144065,4.087705,4.14604,4.210105,4.31916,4.488615,4.216765,1.14227375,4.281675,4.314085,5.2295,7.840339999999999,5.08315,3.8522193333333337,1.8985433333333335,1.4740066666666667,2.5754925,4.8543,4.04618,5.0991,2.6453166666666665,4.36134,5.1137,5.06765,4.83832,2.9803466666666663,3.975205,4.217355,5.2856,5.0021,3.94219,6.88974,4.55301,2.25467,4.97199,4.189665,4.32779,3.9134,4.607825,0.7641463636363636,4.394215,4.559195,1.2313100000000001,1.4261659999999998,4.984045,4.716005,8.9038325,5.3299,4.799765,6.22095,2.913965,2.6327666666666665,5.00995,1.7048975,1.7048975,2.708675,1.62518,2.9367925,3.4619999999999997,1.8967,4.225109090909091,1.4465433333333333,2.203245,5.9746025,3.4984883333333334,3.50477,3.19895,4.15415,4.06768,3.03626,1.0480766666666665,4.057985,3.07412,3.97487,4.226295,3.632816666666667,5.7609,5.5326,5.09825,4.036925,5.29825,6.5003,4.778295,3.365705,3.519045,2.018705,2.018705,3.80117,4.260525,2.55074,2.784823333333333,2.248369696969697,2.8052466666666667,1.5797966666666667,1.5797966666666667,4.408885,3.495285,2.229765,3.560035,2.89544,4.80942,2.334135,1.192611111111111,2.701765,0.47058947368421056,0.9250966666666667,2.81169,4.071655,0.42591818181818186,4.02311,1.8958179999999998,5.45305,3.616455,7.117185,4.372585,5.2985,4.778565,5.0974,4.151665,1.95158,1.8082,4.23225,3.01429,3.92131,1.3127933333333333,3.42984,4.427075,2.656655,2.70647,2.741175,4.39564,3.586655,3.57128,3.908125,3.60789,3.36056,3.36764,1.0846457142857144,2.0221,2.258445,2.98592,4.32416,7.67379,0.881954,1.5288599999999999,1.5288599999999999,1.9079920000000001,3.951935,2.767595,3.089655,5.2989225,2.8591833333333336,1.157805,1.157805,1.157805,2.94987,3.288795,4.75941,3.24022,4.19202,3.29356,3.65993,2.906965,3.2148083333333335,3.59396,4.22708,2.84875,1.22997,3.248275,2.84875,3.52118,1.3489566666666668,1.9389733333333332,1.972605,5.658082666666667,2.807875,6.008241,5.658082666666667,3.200366,1.6778466666666667,1.6778466666666667,2.93579,6.81069,1.6778466666666667,2.353595,5.39676,2.219985,2.65249,5.01046,3.53293,4.45614,2.0012866666666667,3.39723,4.17446,2.0702333333333334,2.300535,3.78527,2.0012866666666667,2.42953,2.02079,6.12439,2.51049,1.1571580000000001,2.477,3.254145,3.3377805,1.88422,2.1648705,3.75005,1.8551480000000002,1.70613,3.235185,2.31701,3.351765,3.29295,2.0089866666666665,2.8652,2.249895,6.32144,2.36868,3.45687,3.12796,3.12796,8.928113333333334,0.9296433333333334,2.676355,2.40234,2.98769,2.29035,1.28987,1.28987,3.47386,2.132005,7.041729999999999,2.31812,3.741075,3.30492,6.17667,2.742625,2.44007,5.967625,5.967625,2.5242,1.5490125,1.1974775,1.1974775,1.5490125,1.95809,1.1780366666666666,1.1565916666666667,1.6042066666666666,2.01647,3.72665,1.679305,3.245,2.542665,2.942125,2.744905,2.85341,2.416605,3.3465849999999997,3.3465849999999997,5.92583,2.23921,2.873535,2.375575,3.495135,2.388465,2.864895,2.514015,5.0277875,1.9433575,1.4283869999999999,1.1846303333333332,2.0473453333333334,5.10002,3.829992,3.26432,3.24364,1.60233,1.60233,1.60233,4.78536,2.326295,1.1565916666666667,3.15955,3.47455,1.31808,5.17174,3.0561,6.14386,3.72698,1.879075,3.496035,2.7368133333333335,2.15626,3.40729,4.59135,3.57492,1.72944,2.68033,3.10719,2.888265,5.4219,1.99824,3.321775,2.641645,5.66966,3.94802,2.17923,2.034475,5.52978,5.22315,5.51645,5.48112,1.019502,1.019502,3.983167,3.983167,0.878242,5.1139,3.46964,5.20572,4.0621,5.42043,2.171465,4.177825,4.177825,2.24057,3.213075,3.55766,1.190522,5.07065,3.12294,3.230835,2.849755,4.66678,2.406175,2.42631,3.262665,2.94875,2.77353,4.69234,2.55307,1.74606,3.686945,6.63186,6.047,4.1388,2.608105,3.39931,3.029475,5.68419,2.54768,3.47628,1.76064,6.86118,4.23233,2.19651,2.019105,2.86821,4.68634,2.39846,2.761265,2.70475,7.23913,4.96187,3.202875,2.15918,2.601845,6.53081,3.418475,3.15524,5.07585,2.923175,2.98978,2.426715,3.173565,1.8609166666666666,2.00356,1.8663633333333334,1.8184566666666668,1.7371299999999998,2.0652133333333333,1.684245,2.0204133333333334,1.709975,1.8609166666666666,3.66789,4.1884,2.043595,1.6251925,1.6251925,3.8168266666666666,3.8168266666666666,2.9200133333333333,2.9200133333333333,2.855155,2.17222,1.677545,3.57296,2.221105,2.221105,2.412595,2.412595,3.08651,1.965635,4.87492,2.29854,3.166615,2.2208733333333335,2.2208733333333335,1.530425,4.05279,5.1769,1.3489566666666668,4.75618,2.0089866666666665,1.742,3.80266,3.14059,1.890045,2.294415,6.11101,2.16103,6.05027,3.07776,3.27087,3.043,2.522405,6.15647,3.02561,2.50997,2.6540011538461536,2.729795,5.33816,3.5053,1.533756,1.533756,4.03507,4.76753,4.98923,5.22578,3.00758,2.694715,1.72925,3.09637,1.699,2.86639,2.02577,0.759052,0.759052,0.759052,2.072020833333333,5.020813333333334,2.072020833333333,2.11229,3.57743,1.552695,2.026125,4.25551,3.53548,5.26399,1.7901,4.84194,1.7901,1.7901,2.18405,1.922525,2.142765,6.3745,2.142765,2.36949,3.7888,2.01289,2.01256,2.884805,3.024713333333333,3.4029908333333334,3.071623333333333,3.741865,1.4270466666666666,4.367845,0.78996,4.4228,4.4985275,2.6084625,2.6084625,0.7414945454545454,3.917666666666667,2.8162366666666667,5.69395,5.0127,4.196835,5.27165,4.375095,4.238295,5.14945,4.49227,4.23398,3.88174,3.993445,4.97744,5.242,3.37404,3.53308,3.953565,2.452856666666667,1.348188,4.509825,3.8539,3.4371,1.424127142857143,3.828005,4.056055,6.326595,1.165195,5.21035,4.450185,1.995825,2.015665,3.23787,3.5361,1.647905,1.533756,4.06185,4.731985,2.69699,4.604035,2.96959,1.1489699999999998,3.031136666666667,1.2590957142857142,3.0668966666666666,2.107423333333333,3.1447966666666667,1.874555,2.57442,4.302875,3.518635,4.477765,3.26316,2.23633,4.93221,4.16837,3.044115,5.40505,4.33258,2.6762599999999996,5.97655,4.7316,3.1438550000000003,2.600956666666667,2.76616,3.0954800000000002,3.088696666666667,2.77857,4.888905,4.29606,3.75391,2.45763,2.60553,2.4025933333333334,2.642673333333333,2.3114466666666664,2.367906666666667,2.305893333333333,2.1681725,1.393385,2.9498870000000004,1.2166675,2.1405475,1.70802,2.649025,1.622465,1.994805,4.112475,4.015765,1.9778125,4.119785,4.147735,6.47072,2.043633333333333,1.570976,6.7875,3.383885,4.87768,4.23422,4.005995,1.979525,3.598055,2.5498,2.986385,4.394275,0.7117,4.18233,2.2577333333333334,0.8443245454545455,4.880925,4.65975,3.86064,1.83883625,4.59729,5.2986,2.707216666666667,2.7381266666666666,2.4882966666666664,2.14392,0.5816250000000001,3.0970033333333333,3.083925,4.96296,2.4936525,2.074665,3.961085,1.0438075,1.8072983333333332,1.8072983333333332,2.84606,1.8072983333333332,4.20293,2.76575,4.660555,4.32055,5.9581,13.687145833333332,3.299023333333333,4.99597,3.10558,4.641185,3.146965,6.565025,2.981723333333333,4.851985,4.90518,3.893135,1.31103,4.77802,3.08512,2.6618166666666667,1.0444744444444445,2.192355,3.52253,7.2710316666666674,4.275345,2.8462933333333336,4.470015,3.370433333333333,4.20979,4.96578,4.499545,2.761985,2.837423333333333,4.016835,5.68765,2.377315,4.71854,2.1271075,2.1271075,3.09748,5.0543,1.385775,4.2362313333333335,2.2550325,4.476745,2.54599,2.3190033333333333,2.8492866666666665,2.2868833333333334,0.7086742857142857,3.48769,2.7964933333333337,5.2291,4.509055,0.2464640625,5.33185,4.6239,5.5441,6.968795,3.2109166666666664,2.87863,2.20791,3.2920200000000004,3.27354,1.4335066666666665,2.8314166666666662,2.653563333333333,1.3846800000000001,3.286896666666667,3.1056933333333334,2.7665733333333336,3.439633333333333,1.346983888888889,4.235925,2.46031,5.1048,4.308475,3.95037,1.6358066666666666,2.547006666666667,1.218065,2.03546,1.218065,4.906575,3.521933333333333,1.613486,2.4636275,3.961645,3.795915,3.36016,3.831935,0.3646975,1.5254804166666667,3.793905,4.047005,6.1071,1.8429,2.8278199999999996,3.1087733333333336,2.590786666666667,2.886045,3.33821,4.69622,2.5371,2.328466666666667,2.9182666666666663,2.6419866666666665,2.7675666666666667,4.33665,2.057245,4.381225,3.8177225,6.05955,7.7036625,0.7523477777777778,0.8309279999999999,3.99736,6.854017499999999,1.993318,3.470995,1.5501283333333333,1.5501283333333333,3.467945,0.4468788888888889,3.69629,4.43002,2.65038,4.094225,3.163465,2.624035,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,0.24175000000000002,2.506575,3.35089,3.6301233333333336,3.6711733333333334,4.444285,6.527172083333333,2.85617,2.3608766666666665,0.9075283333333334,3.334725,0.70580375,6.016136666666666,3.65526,2.310905,0.70580375,3.357425,2.87681,1.11736,4.11949875,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,0.15581133333333333,4.342125,1.639685,4.55534,4.606535,1.7623919999999997,4.850095,4.39386,5.3143,4.655752499999999,3.5488678571428576,3.39393,4.39753,2.312795,5.37315,4.36233,0.7578571428571428,1.4145257142857144,1.3790957142857143,3.4089333333333336,3.4089333333333336,3.0456216666666664,3.750065,4.54816,3.735175,4.15685,3.074396666666667,2.1199266666666667,0.5107014285714285,3.98249,3.06912,2.727315,4.269285,3.352915,3.12507875,4.736195,4.480015,6.75672,4.29549,4.79141,5.8054,4.301695,1.2806757142857141,3.287925,5.365863333333333,34.123197494949494,1.2829966666666668,4.347215,3.74071,4.556035,4.168195,5.0735,5.18145,0.4152166666666667,5.20885,4.41718,2.0632375,1.94648,3.629325,1.79625,2.448755,2.28979,1.6909925,2.883105,2.4211666666666667,2.81086,2.870745,0.6035592307692308,3.760415,3.76738,0.3938684210526316,2.6110866666666666,3.70293,2.644055,3.868415,1.87106,4.5549,3.915175,3.124425,3.75857,3.18231,4.34191,2.850745,3.8817,2.16031,5.365863333333333,3.60786,3.795915,3.03893,1.769326,4.22723,3.57569,6.949165000000001,3.458065,4.82431,6.7015025,5.218072,2.208075,4.91765,6.217945,7.89034,2.65984,2.54646,4.78612,5.649563333333334,4.382515,3.421065,5.6436150000000005,2.65245,1.7559725,2.3102325,60.784929040370535,5.4071,4.196725,2.554575,1.00019,2.9357666666666664,2.903923333333333,3.4494333333333334,0.8293955555555556,4.40268,0.8001066666666667,7.7150478571428565,1.9205539999999999,3.306243333333333,1.807514,2.67054,2.59683,3.1460899999999996,2.417726666666667,2.2203633333333332,3.363,1.60681,5.567269166666668,4.267166666666667,1.3001025,2.6526366666666665,1.3539766666666668,1.5174625,7.19937,5.71735,3.436325,5.0793,5.45413,1.4695714285714288,3.4970666666666665,5.30555,1.6557125,5.3194,3.765645,3.901535,1.87603,2.948008333333333,3.4966333333333335,3.74807,5.6008,4.103765,4.5244,2.292405,3.95763,4.5210333333333335,3.19952,1.481118,4.386925,3.285773333333333,4.220545,5.14385,3.976035,3.84146,4.77799,4.330905,4.311395,4.62776,4.163505,3.2297366666666663,3.916065,4.333105,3.08104,4.13022,3.859655,1.4603125000000001,1.4603125000000001,4.331705,4.87134,5.1307,4.05613,4.70409,3.5313,2.74244,4.911285,4.97717,0.6975863636363636,5.2875,6.9196,5.31825,5.7801,1.2336,2.829005,0.9495683333333332,0.9495683333333332,0.9495683333333332,3.52074,3.4438333333333335,2.728343333333333,3.5342333333333333,0.966958,4.959215,5.08215,3.10122,1.6729775,2.0758,3.878295,4.387395,3.7771,3.714546,6.64455,3.715585,2.5523599999999997,4.71416,6.82805,2.181825,4.10255,3.65119,3.116125,5.30815,4.480845,4.774575,6.06715,3.667295,3.7224188888888885,1.9025400000000001,1.9025400000000001,0.7225636363636364,8.781002,2.19031,5.8559,5.60715,4.4009,5.2594,3.766895,3.0025916666666665,4.808455,7.68496,5.749553333333333,2.15664,4.453585,1.01394,3.775445,2.01941,0.9095933333333333,1.2896128571428573,2.902753333333333,3.1034666666666664,2.81334,1.1805114285714284,2.6959466666666665,3.0989400000000002,0.9110744444444444,2.798023333333333,3.1941366666666666,1.699628,1.74218,3.0321466666666663,3.1500233333333334,2.8544733333333334,2.485106666666667,1.7500440000000002,5.16965,4.536085,3.945185,4.250315,5.01405,3.192775,4.43793,6.3076,4.96673,4.21027,3.97984,10.578216666666666,8.38829,3.0016533333333335,3.656385,2.0666033333333336,3.817355,3.127515,4.48394,1.2473233333333333,4.0336,3.525175,1.49707,3.749585,2.8390883333333337,4.17831,2.949875,3.83815,7.02665,7.399653333333333,4.096715,1.5186966666666668,1.5186966666666668,1.5186966666666668,4.76845,1.1650166666666666,1.429375,0.4813444444444444,4.40999375,3.059136666666667,3.58669,1.02427,1.1705075,3.326715,4.310075,3.804735,16.795208976190477,4.43106,4.539175,6.3378475000000005,2.8250499999999996,3.59426,3.347945,0.949858888888889,1.4382125,4.12944,3.53486,4.460665,4.507255,4.423465,3.86005,2.7506199999999996,3.318515,5.2725,0.565465,4.735525,2.3145325,4.115445,5.10085,3.6085666666666665,2.3072666666666666,3.957641666666667,1.8172233333333334,3.949475,6.0626,2.912623333333333,3.142875,4.489435,4.496485,4.855895,4.030505,3.88302,4.26978,4.82993,4.76827,3.998125,4.876965,3.88368,1.2795971428571427,1.592455,6.2325289999999995,5.8264,4.58644,5.1968,2.484495,2.6973333333333334,2.7569133333333333,5.5607500000000005,1.9029675,2.046845,2.94101,3.0527599999999997,3.356833333333333,4.51507,3.318455,5.337535,1.32023,4.633425,0.8981316666666667,4.041375,3.708325,1.6566049999999999,4.334385,0.94885,4.911245,5.5716,5.09375,4.30222,3.731315,3.88529,2.9467,5.05515,5.8444,3.0541695,4.08133,2.49324,2.54712,1.8974,2.53474,3.57568,5.2508,1.043795,4.4094475,1.3632475,3.33322,1.61191,1.043795,0.2555954054054054,4.023855,2.949995,2.36188625,1.9611466666666668,2.66677,1.0755325,4.087715,3.40104,4.868365,2.5593933333333334,6.34925,6.8216675,2.8029499999999996,3.4031000000000002,2.6534166666666668,0.8193699999999999,2.39336,6.0453,4.60595,5.32975,4.96179,2.179386666666667,1.4553166666666666,3.803955,1.6386975,2.18842,1.69603,1.6781175,1.705555,1.97876,2.106895,2.188845,1.987395,1.2943085714285714,1.47343,2.148315,2.3470875,2.20505,2.1533,0.5342800000000001,1.8406099999999999,2.7318599999999997,3.2359000000000004,1.939005,1.8962633333333334,1.552505,4.011025,2.322976666666667,2.685235,3.15387,6.3383,3.956345,2.7384500000000003,4.404835,1.7252361764705881,4.3091550000000005,24.8649935,4.54067,5.87125,4.513205,2.536313333333333,3.832845,4.73838,2.6224,5.0307,3.2467133333333336,0.7598275,3.58941,4.731665,4.00571,4.04955,1.5759033333333334,2.0549566666666665,2.391506666666667,2.23201,1.444942857142857,3.4021000000000003,5.2031,4.211065,3.253645,3.910875,4.710775,4.38681,4.99494,1.268125,3.60265,4.162125,4.745955,1.7226299999999999,3.1318866666666665,1.813345,1.813345,3.671045,4.93052,2.8958,3.0297300000000003,4.11766,4.068225,6.47315,4.506005,2.229495,1.4382125,2.718015,4.31166,3.0914300000000003,2.4662831746031744,2.4662831746031744,3.3419333333333334,4.758205,4.011255,5.228865,2.403105,3.527701333333334,0.6239366666666667,0.6239366666666667,0.6239366666666667,3.532165,3.76183,4.091513333333333,5.6759,2.3390875,5.16825,5.0641,4.783805,3.829545,4.96586,2.63611,1.4556428571428572,4.711895,4.381085,0.47135714285714286,4.303766666666667,4.865655,1.5712366666666666,5.1576,5.25025,4.768445,4.307325,3.673885,2.9477,4.50576,1.6751359999999997,4.311245,1.6663366666666668,4.357695,5.90285,1.25235,3.12498,7.04566,3.830205,3.3147800000000003,2.321675,3.924005,5.7314,3.3560666666666665,7.14709,4.177355,2.213713333333333,3.0766500000000003,2.720746666666667,2.78078,2.9197433333333334,1.8362800000000001,5.20455,0.5870449999999999,1.899775,1.899775,3.306605,4.781055,2.3067325,2.97952,4.461865,4.68951,4.37566,1.3696599999999999,5.401459553571429,4.43989,4.944615,3.70077,4.003277333333333,3.586496,0.41678133333333334,2.601662,1.01900375,0.41678133333333334,4.333915,0.8499255555555556,4.22816,4.05442,6.744212,2.12159,1.0733275,1.09586,2.22735,2.95128,1.6310766666666667,2.44732,3.38556,3.4314,2.267866666666667,2.395376666666667,4.420985,3.24184875,4.06078,6.0242,3.73176,4.94518,7.064986666666666,4.716855,3.618535,4.465745,3.730165,4.64023,5.1203,5.9522425000000005,5.31815,2.4554966666666664,1.0230822222222222,3.893855,3.994875,4.191795,4.815335,4.242255,5.53805,2.736936666666667,2.52053,3.0704700000000003,2.4911033333333332,2.1927066666666666,3.0256266666666662,3.2150499999999997,2.5784333333333334,4.074015,4.682835,4.324655,5.3346,2.70513,3.3439333333333336,2.92045,0.7222928571428572,4.35979,3.552545,4.591285,3.197843333333333,5.780099999999999,3.249415,4.675855,3.9474,0.5970615384615384,0.5560935714285714,4.28818,2.9221130000000004,3.41104,4.55621,4.238465,1.805772,5.16,4.24688,2.7012633333333333,2.648093333333333,2.30935,2.076155,3.4836666666666667,3.336,3.0665366666666665,3.18118,3.567066666666667,2.691625,3.2371700000000003,3.8133666666666666,4.4077325,0.567090625,0.567090625,0.567090625,3.2040286250000003,3.595833333333333,3.7367000000000004,2.71575,2.845606666666667,1.14227375,2.963276666666667,3.0433733333333333,1.884655,2.62568,2.3230733333333333,1.00769,2.949775,4.700115,9.614563583333332,1.4709438333333331,0.6493909999999999,3.659615,0.6493909999999999,0.6493909999999999,0.6493909999999999,0.6493909999999999,2.1444425,4.0539594999999995,4.027375,5.2948,6.0567,2.8974933333333333,2.8840166666666662,3.0029025,3.5588583333333332,5.37085,1.2998733333333334,2.3211999999999997,3.1762866666666665,2.6307666666666667,3.0318633333333334,4.17952,2.29049,3.052845,1.1918333333333333,5.11365,3.73399,3.837295,0.916695,0.614715,0.614715,0.9101200869565218,1.8268150869565218,0.9101200869565218,0.9101200869565218,0.30462608695652177,0.30462608695652177,0.9101200869565218,1.4961333333333335,2.5310833333333336,2.983315,3.077693333333333,2.5939133333333335,2.6287166666666666,3.141916666666667,2.918813333333333,4.511265,3.523555,1.90784,2.2648566666666667,1.8076575,0.17928542157584684,0.17928542157584684,0.17928542157584684,0.17928542157584684,2.46984,2.5693533333333334,0.8336220000000001,5.13935,0.7800245454545455,1.675982,4.594636666666667,5.19085,4.24145,3.303355,4.28268,3.77592,2.21449,1.2324825,3.857175,4.758165,6.2729,2.358475,1.3476133333333333,1.9023933333333334,3.1773133333333337,1.5071633333333334,2.7292566666666667,2.997896666666667,3.087896666666667,4.511185,4.15383,3.08765,4.85373,2.6349,4.25778,5.52645,4.04894,4.38946,4.939575,5.4445033333333335,5.076718333333334,3.1320931428571432,4.909833333333333,4.555735,6.2311,4.43178,4.76029,2.2715625,3.180715,4.154845,4.917165,4.36407,3.86537,3.89256,3.952195,3.907485,2.4177166666666667,5.40755,3.63575,7.4909225,6.12065,5.9413,4.939205,1.475442857142857,0.977347,0.6131776923076923,1.774314,4.724375,5.18725,3.88935,1.67819,4.455245,2.987715,4.95456,5.3914,6.149857000000001,4.114185,3.13131,1.715964,5.4369075,3.95683,3.122325,1.7079175,1.01344125,3.872955,3.24474,3.5057575,3.57384,1.99306,4.475995,1.6608066666666668,2.93971,2.339145,4.453585,5.76135,4.909345,2.2333325,1.56921,5.66325,3.0160033333333334,8.85505,2.9765,5.18505,5.91325,4.68367,5.28645,3.661575,5.0957,2.20444,3.982075,5.185522,2.455625,4.431895,4.403575,7.459985,5.04805,3.3139133333333333,4.27585,3.87939,3.24184875,3.574335,5.2982,5.6479,2.50665,3.0412133333333333,3.4077,2.34833,2.76999,4.467175,5.93585,5.1998,4.60561,4.94212,4.353745,5.3964,0.6393215384615385,3.1578700000000004,1.2487471428571428,31.825042396588163,2.74131,4.627415,2.976005,4.43997,1.6976559999999998,2.52333,3.412245238095238,1.5288752380952382,1.5288752380952382,1.5288752380952382,1.5288752380952382,1.88337,3.578895,0.31558444444444445,7.872208888888889,0.31558444444444445,4.75462,4.956855,2.192175,5.4399,2.8018,3.9153553333333333,2.34594,2.4198033333333333,2.7237899999999997,2.1588,0.6166423076923077,2.5903666666666667,0.7668858333333333,3.2826833333333334,2.283776666666667,2.384028,1.2006116666666666,2.384028,6.20545,7.932449999999999,4.854925,4.40921,5.6764,6.21455,7.567589999999999,3.22658,1.5786275,1.5786275,2.3699166666666667,5.087,3.721615,4.70788,6.292768333333333,4.190635,2.81284,3.986545,3.37784,3.57153,2.22901,0.89456,1.766105,4.137305,4.13873,5.279347777777778,2.090755,4.07998,1.44388,3.25758,1.373972,3.3053066666666666,3.2049566666666665,2.6709633333333334,3.220876666666667,3.0207266666666666,4.983325,0.7575123076923076,3.50652,3.6551666666666667,2.6995766666666667,2.3599,4.3247743750000005,3.4281666666666664,2.5082133333333334,5.1427125,3.8181,5.09485,3.86362,3.772755,5.51045,5.11285,2.31269,5.7409,2.370382,2.1511133333333334,3.158246666666667,2.8035599999999996,2.91198,2.64476,1.8912466666666665,3.480290378787879,4.440745,3.32892375,2.384398,2.384398,2.51038,3.73884,4.179325,0.7285627272727272,3.310435,3.19986,8.70611,0.8940363636363636,4.42632,3.658995,5.4124,3.71352,3.89761,2.352985,4.112015,2.8574,5.9863,2.734776666666667,1.0517475,3.8697,2.66929,3.96756,2.496773333333333,3.62895,3.621125,4.31254,5.185947,3.24912,1.941225,5.31165,2.47287,4.525715,5.1155,4.69517,4.46211,4.046305,3.064985,2.1538766666666667,2.94948,2.6845866666666667,2.7753,3.2232800000000004,2.7786269047619045,5.028688333333333,2.9506433333333333,2.4690433333333335,6.87148,5.30867875,3.9584574999999997,3.082003333333333,3.8124333333333333,4.00919,3.4372,2.1903025,4.0045625000000005,5.10465,4.6362,1.4491666666666667,4.49292,2.8844833333333333,6.6993675,4.838025,8.592685,4.22906,3.59934,2.334035,4.081125,5.7869575,7.80881,3.48812,5.7894,4.001545,3.18974,3.87405,1.72077,4.67887,1.4510616666666667,3.930745,4.573775,3.5149000000000004,0.8531333333333334,9.212251666666667,1.2181444444444445,1.933615,2.4834533333333333,2.0307133333333334,3.5549666666666666,1.3330133333333334,3.648795,3.529875,3.1296199999999996,4.33807,1.1918183333333334,4.086445,1.3956600000000001,2.9008643333333333,3.91578,5.35935,2.0885475,5.911125,2.398456,7.88201,4.38114,2.693815,3.97283,3.289455,1.3145541666666667,7.32531,2.95679,3.39695,2.32734,4.094585,2.162835,3.1743775000000003,2.32607,3.896005,1.3679325,5.5637,3.52721,4.155725,0.8700720000000001,2.0108103333333336,3.856265,5.138,5.087562500000001,1.45434,1.45434,6.02045,4.50496,5.6625,3.749205,3.41451,8.67541,4.356525,5.57135,4.10771,2.4991525,2.0700021884280595,0.378358,0.19816387096774193,0.6532127598566309,1.0384314285714287,0.6399252995391705,0.19816387096774193,1.248658,0.4550488888888889,1.4167894285714286,1.901870759856631,2.1160125,2.25393,2.1279566666666665,5.2484,6.6410583333333335,5.02805,5.4485,4.774365,5.24805,1.2015866666666668,5.214,4.096925,5.99195,5.4062,5.39655,5.95445,5.72815,5.73345,1.4041433333333335,1.5192999999999999,1.9514019999999999,6.221162,1.414342,5.4904,4.797515,7.074559166666667,5.0866,5.60905,4.729505,4.805035,2.69585,5.42395,5.51415,6.466271666666667,5.0455,5.862695,5.65005,3.77721,4.301505,3.861133333333333,1.0415699999999999,3.6674333333333333,4.531165,1.2550625,3.6789,4.772275,4.62681,5.05215,2.5376,3.065275,2.790483333333333,4.57142,2.24927,3.84202,1.289105,3.21654,3.76302,4.341845,4.90851,3.4020333333333332,0.6454166666666666,6.07085,0.98033125,3.694615,3.0977633333333334,3.84144,2.087286666666667,3.787785,3.682018205128205,3.4304,4.46922,15.424825214285715,5.34191,2.225315,8.44682,1.4937075,3.748785,2.962203333333333,2.8983033333333332,2.17511,0.20139434782608695,3.2398399999999996,4.871905,1.778782,2.2863,3.4904666666666664,1.8094575,2.3040333333333334,1.4464285714285714,3.475625,4.724465,4.639515,3.986415,0.4579457142857143,2.3876399999999998,4.607825,2.93743,4.532305,4.626905,4.20034,5.2844,0.5287847058823529,2.5184166666666665,2.5184166666666665,5.3886,4.441155,4.920245,2.734325,3.7840333333333334,3.0685033333333336,5.2109,3.721325,5.469829444444445,4.701055,4.53684,4.967815,2.80605,2.00478,4.416275,4.15411,3.852665,3.67839,1.7858059999999998,4.791615,4.31354,3.76454,4.75318,3.920245,4.335045,0.623886,3.212985,0.717025,3.166036666666667,3.24037,4.54655,18.094882857142856,3.718865,3.88853,2.7368133333333335,1.0914125,2.5619833333333335,2.4953499999999997,1.517782,2.416505,2.50527,4.873335,2.2171866666666666,4.406265,4.547295,2.13825,4.52199,3.0046933333333334,4.850425,5.24995,5.50795,1.446425,2.197275,2.83826,5.2901,4.882915,1.1577444444444445,5.37075,3.9098,5.50975,4.724525,1.7845266666666666,4.511475,3.674695,3.6941,4.02817,4.120105,3.08088,0.721415,7.78534,1.443104,0.21030000000000001,0.21030000000000001,0.21030000000000001,4.99483,3.939255,2.6801999999999997,4.28501,2.952145,4.36872,4.369250714285714,4.03533,8.611883333333333,4.222525,6.916528333333334,0.84991,0.97288125,2.523825,4.511125,4.264625,2.2034,5.1925,5.42305,3.50185,3.83105,4.354935,2.33676,4.741575,4.7943295,2.3589766666666665,2.9077966666666666,2.987636666666667,2.809585,5.9965,3.77256,0.68218,3.944075,4.266755,4.209025,4.988883333333333,4.92876,3.6847,5.39115,3.52349,13.668902916666667,4.67564,6.808943416666667,2.6358200000000003,6.472530000000001,4.425645,3.917325,2.1222125,2.3109166666666665,9.56562,2.2633266666666665,4.2823,4.170533333333333,3.7291000000000003,3.1724,2.896176666666667,2.0739575,2.2081075,2.953803333333333,1.8712579999999999,3.9023,2.4432966666666665,2.6148966666666666,3.4115333333333333,3.6085999999999996,2.44148,2.44148,2.5627299999999997,3.598433333333333,3.4506333333333337,2.6522099999999997,3.2617133333333332,4.278866666666667,2.727403333333333,2.8806366666666663,3.8313333333333333,2.3512733333333333,2.045805,3.9140333333333337,2.9418066666666665,1.617392,4.188366666666666,2.6608199999999997,2.5096433333333334,3.0147666666666666,2.40277,3.401033333333333,5.928448333333333,2.3829066666666665,3.8013666666666666,1.9633266666666669,11.375225,2.07631,1.7933166666666667,2.07036,1.0530933333333334,1.6118700000000001,5.446653333333333,2.809222,2.809222,1.663664,1.4871683333333332,3.6033466666666665,3.8953133333333336,2.2371233333333334,1.5307266666666666,1.697138,4.552088666666666,3.6273,4.0759,8.360373333333333,2.8737285714285714,2.43146,3.1783546583850932,4.291966666666666,2.045805,3.29093,2.88851,3.4965333333333333,3.4778266666666666,0.93087,3.3405379999999996,2.990763333333333,2.85196,4.13523,3.1812199999999997,0.7031445454545454,1.9102064285714286,5.0092,2.564351,3.3064966666666664,1.6396633333333333,1.6396633333333333,2.101295,3.7178950000000004,1.02426,2.2668675,4.59818,4.59818,0.6420285714285714,6.034084,3.49524,4.175455,4.92423,1.2614442857142856,3.3363666666666667,3.535266666666667,5.1152725,6.356918666666667,2.8103700000000003,0.649277,2.8050766666666664,2.62837,3.072172,2.4598766666666667,2.5757733333333332,2.9055933333333335,2.3789925,2.4741233333333335,0.7910072727272727,4.570225,4.927828857142857,1.3520883333333333,1.792142857142857,5.35925,2.076235,1.73339,4.174005,1.848186,3.680175,2.598275,3.6229333333333336,8.97609,4.3336925,4.63126,5.13305,2.439359636363636,0.778554,1.8896799999999998,6.974693333333333,1.7897933333333331,4.314915,4.042145,3.47464,21.186440249999997,3.1916499999999997,1.3523233333333333,1.13282125,3.14067,1.38465,4.220167999999999,5.2811,3.3529910000000003,3.4393999999999996,1.5623633333333335,1.36553,2.9002033333333332,0.58102,3.4007666666666663,3.6869333333333336,3.0976966666666663,2.4362333333333335,2.60887,2.8328366666666667,2.0795566666666665,2.820843333333333,1.6336780000000002,3.6309666666666662,1.4892533333333333,3.88138,4.042735,2.6994633333333335,5.1477,3.33913,4.07867,5.2279,4.708145,3.27291,2.8419000000000003,2.4038633333333332,1.0935785714285715,1.0935785714285715,1.0935785714285715,2.3710775,3.376666666666667,2.5960733333333335,2.4993166666666666,2.3170966666666666,1.99451,4.15194,4.66215,3.656305,6.703335,3.275975,2.54195,1.92102,1.0334316666666667,2.4841433333333334,3.8343,2.446286666666667,2.64505,2.38536,2.5101400000000003,2.51749,2.798246666666667,3.199203333333333,2.9179999999999997,2.5502933333333333,3.321566666666667,2.21773,2.1005825,1.8252275,1.6619425,3.044003333333333,3.0934500000000003,1.9927125,3.89707,5.1668,2.8995200000000003,2.5060503846153845,5.533636666666666,4.2759,4.722665,5.6103,4.768295,4.19878,6.413684999999999,1.22740375,4.26884,2.685215,5.0925,4.9333,3.851235,3.87078,2.1917475,7.554920000000001,2.563855,0.8478249999999999,7.63349,4.93082,5.712290476190477,4.52776,2.897349,1.7925,5.18255,4.28925,4.49945,5.1324,2.92336,4.149795,4.463575,1.8076575,3.952065,2.88825,1.353985,4.848555,0.6208588235294118,4.309083333333334,3.59208,4.60352,2.85438,1.74396,3.485385,2.093365,1.444025,2.9348533333333333,3.452,3.2273099999999997,7.131071538461538,1.7487275,6.660175833333333,9.753975,6.7160125,3.56401,1.4205314285714288,2.99412,1.4205314285714288,2.8114133333333338,2.1519,0.3413341176470588,1.1983978676470588,0.3413341176470588,0.3413341176470588,0.3413341176470588,1.1983978676470588,1.1983978676470588,0.3413341176470588,0.85706375,5.3695,3.49935,3.199155,3.44624,3.73751,4.02725,3.0575263333333336,1.6446619999999998,6.540136666666666,2.933756666666667,4.166885,2.6545533333333333,1.0379727272727273,1.251375,4.578595,3.9091,1.1584444444444444,1.5007920000000001,0.7411636363636362,3.011445199134199,4.18878,5.32765,3.689766666666667,5.432770833333333,0.599566923076923,4.15207,3.60077875,3.3667,2.56691,3.518133333333333,2.53405,2.9136100000000003,2.65082,3.09639,3.63176,5.7852,4.90845,2.1784600000000003,4.747835,4.38965,3.277185,3.68948,3.52044,0.3631686666666667,4.9628,3.642055,3.173505,3.125062,4.363785,3.88165,1.95639,3.1711,3.95517,9.01907,4.95264,5.6352,4.464365,3.8674074999999997,0.7663125,2.147895,2.18829,1.420695,1.8177466666666666,4.840915,5.31435,4.36935,4.89271,3.714546,2.629525,0.9288033333333333,4.088385,1.186675,1.147225,3.30137,3.79003,4.806005,1.2944,2.48724,8.725223333333332,3.2547433333333333,3.0884708333333335,0.8947975,3.82043,12.145893333333333,3.447885,4.121015,3.347205,3.180345,4.66488,5.05595,2.09818,4.327105,0.5875969230769231,4.734835,2.2055125,1.682195,1.682195,3.6313999999999997,4.4725,1.63638,4.36968,1.4746571428571429,4.02849,2.6934008333333335,3.286846666666667,4.88425,3.5123,3.8390413333333333,2.5958,2.769706333333333,2.769706333333333,11.04052,0.775146,3.181295,3.198036666666667,2.10795,1.9851975,0.9666285714285714,1.44894,1.2298799999999999,1.97315,4.645495,2.47778,4.3265150000000006,2.0335466666666666,4.046085,4.312325,1.67255,2.0190725,1.0400449999999999,5.857105166666667,2.018265,2.182335,1.688872,1.736344,1.13282125,2.44119125,3.571225,2.57428,3.0532299999999997,2.4458266666666666,2.7090866666666664,1.9037966666666666,3.0294833333333333,2.8434733333333333,1.4323833333333333,1.9126333333333332,2.7468533333333336,3.2652466666666666,2.4676566666666666,1.1485266666666667,2.5825733333333334,2.2477133333333335,2.757123333333333,0.3227057894736842,0.399635,2.3468133333333334,2.1888466666666666,3.05154,3.0881833333333333,2.711495,5.06265,5.7282,4.44635,4.55954,4.3816,4.031645,2.9845466666666667,3.81852,0.7142745454545455,0.06788704545454545,6.9236,0.06788704545454545,3.686435,3.27465,5.3326,3.54694,6.2735,4.790675,2.2702466666666665,2.60617,1.3213883333333334,5.2327,6.28615,2.8241566666666666,5.2958,2.014055,3.964855,1.9876385869565218,3.1119966666666667,3.1820733333333333,4.32732,4.854091666666667,3.28303,2.103336666666667,2.103336666666667,4.072495,8.01807,3.842555,2.1698866666666667,2.6010466666666665,4.25555,2.876245,5.06825,3.919705,1.0388566666666668,4.04858,2.721913333333333,2.954553333333333,4.274045,1.14086,2.3539566666666665,3.92947,3.78883,4.943055,2.884715,2.927285,3.905975,3.872545,4.115275,4.95602,4.66351,3.2852230555555555,3.738405,2.81793,2.768216666666667,2.6831266666666664,3.7016666666666667,4.326305,3.0046866666666667,5.093319999999999,4.46133,3.576095,5.22735,4.297175,3.68501,1.461974,1.3932625,4.06869,3.3658333333333332,1.57606,2.7876499999999997,3.347905,3.1373233333333332,4.0937166666666664,3.1406466666666666,2.172855833333333,12.695952694444443,2.1642466666666667,1.83078,4.48394,1.0589359999999999,3.2193066666666668,3.911265,4.923195,3.243385,1.1761,2.2754,2.5593933333333334,1.5260960000000001,4.909285,0.969655,0.969655,3.854983333333333,1.6799233333333332,2.1750599999999998,1.782275,3.4057,5.6757,1.990805,2.77646,3.4582049999999995,2.924383333333333,2.94018,2.0576,6.38925,5.69775,3.9223,0.686503076923077,4.174155,3.80686,1.0591,5.378,3.4809,8.7044,4.934805,4.743815,3.556825,1.46007,3.11513,4.8158,4.73752,4.08195,3.69852,4.35629,3.247475,3.5651333333333333,3.5651333333333333,4.157085,2.8830425,4.419825,1.754385,5.500370833333333,5.452076666666667,1.5712366666666666,4.602235,1.0683799999999999,5.59295,3.96208,5.25335,4.81804,4.26356,2.593945,2.674875,4.672275,4.309645,5.00665,4.36666,1.95438,1.3762180000000002,4.43173,2.11505,5.4198,3.771725,3.669305,7.2589500000000005,3.903225,4.56866,5.261,4.011365,4.506215,8.091574999999999,3.87406,2.994845,9.412395,3.78935,0.6035014285714286,2.087755702075702,4.59184,0.6204186666666666,4.63431,4.211645,4.846015,4.51452,3.314235,3.826485,4.63443,4.65942,2.535275,0.7001114285714286,4.63451,4.561785,4.717635,4.37407,2.784323333333333,4.426545,3.544675,0.670286,3.93714,4.23595,2.4557725,3.2216166666666664,4.034495,2.223606666666667,5.55305,5.1714,3.8716150000000003,0.87494375,3.2661033333333336,5.8901625,5.8901625,8.687446666666666,2.05476,0.8751425,0.8751425,24.919115,2.681175,7.820495,0.43248166666666665,1.2419666666666667,3.1644966666666665,0.958077,3.72787,3.93173,2.209115,2.209115,4.34088,4.757295,3.506845,2.732736666666667,2.732736666666667,3.500515,3.78407,4.01943,3.2983499999999997,2.034726666666667,2.5535070833333333,4.073827,1.9311,3.58915,2.9053566666666666,2.8718307142857142,2.8718307142857142,3.4359333333333333,0.90989,2.5293666666666668,1.68137,3.491766666666667,2.8467966666666666,2.932933333333333,2.690516666666667,4.750035,2.317,3.0744566666666664,5.770394,1.41709,2.178035,3.02999,2.706516666666667,4.17416,6.038539634920634,1.3717033333333333,3.6954,2.4517025,5.03413,6.54543,1.6132975,4.766956666666667,5.430986,3.1625597142857145,4.575866666666667,1.010417142857143,1.7226299999999999,2.885635,3.866488095238095,1.3108216666666668,2.377635,1.6520675,1.768338,2.32561,3.580494,5.2534715,1.4045133333333333,1.4427285714285714,2.9657666666666667,13.048565,4.6254566666666665,2.7374199999999997,1.06469,2.591070476190476,0.9503871428571429,3.1453366666666667,4.3313266666666665,5.142,3.474066666666667,5.6711,1.560895,3.7673666666666663,4.25391,2.8305933333333333,3.9598844444444445,2.762563333333333,1.0712644444444444,2.50765,2.2354499999999997,7.055891666666667,3.0603427142857145,2.6442633333333334,0.727063,4.6494,3.5374666666666665,1.284332,5.689419166666667,1.9086525,2.321826666666667,5.822,1.2885666666666666,2.9363433333333333,1.0099636363636364,2.97061,4.448745,3.09887,3.0656866666666667,2.22466,2.5040666666666667,4.844645,4.74245,4.994775,1.6785275,4.491925,3.645715,4.399,3.4319119999999996,2.4403900000000003,4.323344,0.9683439999999999,2.8395190476190475,5.02775,2.761275,4.141136666666666,1.41335,2.798033333333333,1.9469699999999999,1.9469699999999999,7.513303333333333,3.2543466666666667,5.6202775,3.377796666666667,1.7467933333333334,2.674609523809524,4.576756666666666,5.750166666666667,8.257081666666666,4.723628,2.63892425,1.8977700000000002,2.1145758333333333,3.9084133333333333,3.77527,1.49467,2.0874025,2.5118323214285714,1.432485,3.156473333333333,19.419703333333334,3.2701166666666666,2.9515766666666665,2.9945766666666667,2.98104,2.4876533333333333,2.1694366666666665,3.1665433333333333,3.6057666666666663,2.7062033333333333,2.5602066666666667,5.659655333333333,2.4851733333333335,4.802983714285714,2.826561714285714,2.7014237142857143,1.5216133333333335,3.8401566666666667,2.156275,4.121335,4.899025,3.813035,3.05524,3.256546666666667,2.3474733333333333,3.421466666666667,3.4377666666666666,3.535766666666667,3.29021,0.8227927272727272,5.1637,2.401945,3.2593633333333334,2.9439822222222225,1.95296,2.19875375,2.19875375,3.50604875,2.04909375,4.62862,4.348865,3.828415,4.31152,4.87573,4.5720849999999995,4.5720849999999995,3.9593,2.9943066666666667,4.486305,2.74727,1.6516600000000001,3.2896933333333336,4.58255,4.03378,2.771425,3.761405,5.7042125,3.680566666666667,6.396428892857143,2.941765,0.871768,0.871768,3.21312,4.73147,3.871985,3.4759780000000005,2.3904566666666667,1.8692766666666667,1.6657733333333333,2.965946666666667,6.154982,1.484815,4.159675,3.7669333333333337,3.90171,5.3985,5.33985,4.7871873958333335,3.2554766666666666,2.3125175,4.372505,4.099595,2.0989975,1.146236,4.34275,2.742825,6.172591666666667,3.429766666666667,2.63467,3.312805,3.709755,3.65594,4.689655,2.9808,4.59629,3.63732,4.27338,3.60117,3.50888,3.5091,4.243255,2.65149,4.48135,3.46805,5.0087,0.6495233333333333,2.3652525,1.84745,2.040835,1.8492025,2.506396666666667,2.62001,1.68213,4.782815,5.01715,1.8446533333333335,4.698335,4.58294,2.40602,5.3561466666666675,4.1142975,4.91834,5.11955,6.98571,2.0615833333333335,2.8933400000000002,1.9318266666666668,2.9522933333333334,1.89765,1.7278,4.04414,3.69173,5.2745,1.025218888888889,3.00682,4.407495,2.2915175,5.3766,3.6853,2.56951,3.679266666666667,3.3569,2.1311075,1.952308,2.665625,3.17445,3.387525,1.9298025,3.3533357142857145,3.3533357142857145,3.57735,3.475575,20.766772857142858,1.01735,5.695320833333334,1.9576875,1.9447433333333333,3.88503,3.799915,1.8703675,3.930665,4.60663,1.404235,1.404235,1.2124833333333334,1.8497000000000001,2.3679333333333332,3.1648,4.686018333333333,3.608555,3.5652333333333335,0.502251052631579,3.4718243859649123,1.95606,2.16676,4.6610125,3.40336,4.073855,3.9909,4.57696,4.341555,2.06042,3.74286,5.649563333333334,2.268335,3.6336,5.03575,2.155355,4.61883,6.2629,1.5105428571428572,2.06188,3.6138666666666666,0.8015485714285714,3.1398433333333333,3.690725,4.839085,4.94107,2.8013844444444445,7.9304033333333335,2.997863333333333,2.768053333333333,0.44140411764705884,4.340335,5.340334761904762,3.129602857142857,5.4998,3.804965,2.5290555555555554,1.8016400000000001,5.4613385,4.351685,4.242825,2.69965,1.980755,4.047055,4.1636999999999995,2.97104,2.145355,4.119795833333333,6.6199025,2.694685,3.80068,3.535875,4.084915,1.4971714285714286,1.4971714285714286,3.1626833333333333,2.9192933333333335,4.607795,4.8708,6.57585,3.28842,2.8897,2.193865,1.5102233333333333,1.3256914285714285,4.94455,5.7494250000000005,5.2604,5.9218,4.455975,6.7424175,3.593515,2.811453333333333,3.864148666666667,2.350893333333333,3.0185472499999997,1.59702,4.692575,2.350956666666667,4.089585,5.3869,4.144705,2.7422466666666665,3.0160033333333334,1.4977,2.4532325,3.8442333333333334,1.96766,0.581481875,3.17062,2.7312766666666666,2.5784333333333334,2.3993266666666666,2.018265,1.673064,0.7060081818181818,0.7060081818181818,3.5195333333333334,1.8895475,2.614225,3.713525,5.5842,4.401645,5.83275,4.374875,4.421075,2.651828,1.2487133333333333,2.73262,4.03805,0.91788,3.349195,3.021505,2.899525,2.190675,4.13938,2.589815,2.03764,1.2062214285714286,3.5815,7.92137,3.71273,1.7880326785714287,4.519505,3.44578,3.00943,3.326205,2.82024,1.7853166666666667,1.04883,3.77518,2.458483333333333,2.2405,1.70124,2.4970933333333334,2.248256666666667,2.464116666666667,2.8291424999999997,1.3045966666666666,1.8952866666666666,1.0701075,6.415585,5.4614,5.24945,3.977895,3.98148,3.001136666666667,1.7346991452991452,4.910605,5.0063,2.723295,5.2232,1.982625,4.502455,1.1183444444444444,4.077545,4.105615,1.8499575,7.47519,3.458155,1.8740525,1.9047025,2.034575,2.56715,3.4154999999999998,1.3420966233766234,3.11204,5.70395,4.455175,4.04757,5.59115,5.42775,5.45485,0.92171375,4.346425,4.65763,4.31398,4.94345,4.058375,4.79108,5.07295,2.956725,1.54463,1.54463,5.21365,5.846626666666666,3.11385,2.7687666666666666,4.01692,4.605515,1.544136,4.431655,5.2891,3.637025,4.07839,2.97615,3.01705,5.1278,2.364677875,10.74942251172357,1.8966266666666665,0.81480625,2.5353499999999998,1.69288,2.584425,2.26555,1.9536760000000002,3.005603333333333,5.1802,5.50195,3.0054166666666666,1.65766,6.406288095238095,1.4686428571428571,3.1157,0.527047619047619,4.112246666666667,5.84175,3.780995,4.90722,12.864345,5.587,3.2149933333333336,3.2515733333333334,4.929085,3.128023333333333,4.835355,1.20407125,1.8134333333333332,0.7883890909090909,5.96375,4.186,1.822074,4.867096666666667,4.90293,6.5068,4.79827,5.2358,4.76616,6.30805,3.8749,5.292,3.80237,1.351302,4.438185,5.73415,3.38425,4.147025,4.3297,3.402755,1.3399975,5.057,3.883085,1.2287375,3.481533333333333,3.0770700000000004,2.53246,2.54363,2.46503,2.907173333333333,0.7060181818181819,2.55947,2.712123333333333,2.615746666666667,2.10577,3.0760166666666664,1.85651,1.5258166666666666,2.499395,2.124525,2.1696575,3.3725,2.9983566666666666,0.659506,2.66316,3.563935,4.73528,2.4368266666666667,3.870365,5.36115,5.4931,3.387075,3.740495,1.3790957142857143,3.49447,2.5288600000000003,4.17685,2.88365,4.63818,5.1264,4.986915,4.248975,4.319833333333333,1.1376519999999999,1.1376519999999999,2.227693076923077,1.65419,4.069105,2.4862435,2.4862435,5.1797,6.05075,3.098175,1.18727,1.6087714285714285,5.99925,3.55206,3.0009533333333334,3.246165,2.94641,3.12931,3.0009533333333334,6.055837499999999,3.052305,2.9966725,2.82846,2.22645,3.090025,6.6278,3.174295,3.544795,4.25598,6.67205,6.444,6.525375,6.525375,5.42025,4.72089,0.6744815384615385,5.22915,4.821985,2.96368,2.753495,8.818078333333332,3.18552,4.362475,3.72669,3.2248966666666665,5.51135,2.765225,3.3869525,3.1387033333333334,3.260123333333333,2.56032,1.576614,1.576614,3.677995,3.851425,4.588235,1.89025,1.624332,48.324525,2.608546666666667,0.83385,3.146216666666667,1.77161,3.312443333333333,2.7757733333333334,3.3438,3.367045,2.7778899999999997,2.02018,1.01891,4.512725,3.233155,4.17274,4.059085,5.17135,5.06075,5.0789,5.541,5.5263,4.787325,5.419,6.247465,5.09165,5.53575,2.0709375,3.72471,6.7349,5.38845,3.46072,3.99145,3.227155,2.324495,4.14839,4.589405,3.2606866666666665,3.9799,1.666026,3.931555,1.35904,3.20005,3.858925,3.62983,6.59606,4.251895,2.0675725,4.08106,4.053255,3.9272,1.093125,2.7855,4.39138,4.60638630952381,1.13703,4.664115,1.3479775,6.15935,0.7191233333333333,4.094072000000001,10.344095,4.705355,3.830605,3.67389,1.9025999999999998,4.164045,5.59015,2.998343333333333,4.292945,9.042960555555556,3.4641333333333333,2.13881,2.8175133333333338,2.74976,2.8882966666666667,2.7897029166666667,2.76965,2.64828,2.9247666666666667,2.7236233333333337,3.074173333333333,3.42323,2.23905,1.6549133333333332,4.8325439999999995,3.9581,2.6398800000000002,4.975970666666666,2.7704466666666665,1.08461625,2.1083725,2.902696666666667,5.238707142857143,2.818,2.192057777777778,2.192057777777778,1.6090775,1.66543,2.12892,1.911486,6.07951,4.1851400000000005,2.475325,3.12175,3.6002666666666667,2.120605,0.5828725,2.590856666666667,1.9204925,0.5668723076923077,3.89573,2.5406,2.549425,3.610225,3.744185,2.54499,1.6714733333333334,1.2209866666666667,2.08876,3.662675,3.734335,4.255665,2.96102,5.01815,4.00873,1.157218181818182,9.177565,2.75668,3.333645,1.275625,2.8573566666666665,2.39645,2.39645,2.39645,4.8791,5.56815,1.63406,5.1321,1.4282819999999998,5.389456666666667,1.5753840000000001,4.24762,4.20727,4.281025,4.75407,4.507685,1.917185,8.82944,3.916545,4.961485,3.44935,4.47341,3.2765733333333333,3.026733333333333,3.864245,2.68409,4.3631,4.63001,1.609815,4.00392,1.609815,3.330285,4.590391666666667,5.03165,4.590391666666667,1.87988,5.68015,4.700805,4.26942,2.8296433333333333,3.1058233333333334,4.30877,3.027235,4.984785,0.5230671428571428,3.0777300000000003,2.9837133333333337,4.941929166666666,4.64424,2.4832175,4.701915,7.242161666666666,3.45294,2.58537,2.885765,2.3262266666666664,4.137815,4.15144,4.5958,2.375795,3.86231,0.865604,5.3536,3.36388,4.26017,2.285773333333333,3.048553333333333,2.18935,2.8688566666666664,2.7395,2.7002400000000004,3.485225,2.598725,2.598725,4.6499425,3.16797,4.61046,11.490275,0.9565633333333332,4.59303,2.535226666666667,2.3172366666666666,3.0558833333333335,1.429375,7.556111666666666,3.6353000000000004,3.881625,3.8550866666666668,2.5732866666666667,3.9186666666666667,4.579553166666667,2.3575833333333334,0.485565,1.731678,1.511315,5.003,3.00936,3.33078,3.8057225,3.4763675000000003,2.4692175,5.2338,4.53088,3.861755,4.952105,2.214115,4.2349,2.543883333333333,5.623900000000001,3.151555,4.968845,4.53872,4.44234,4.311015,1.9629,3.82207,3.65706,3.115013333333333,4.04926,2.67126,3.13252,4.51622,3.87363,2.7902466666666665,4.620485,1.7959166666666666,4.155225,2.96222,4.21569,3.85834,4.295585,4.783595,3.1722,4.26231,4.73416,4.108165,3.0826266666666666,2.177715,2.985625,2.28317,0.881255,4.614385,2.090355,3.44291,2.65558,4.19886,3.36974,3.03849,3.78342,4.322515,4.609386,4.325745,3.112835,1.5670733333333333,3.854435,2.679375,0.9510077777777778,4.61546,8.904,3.33755,3.68551,4.333465,5.1183,3.733285,2.131565,4.02956,3.932295,3.237345,3.12172,3.79652,0.64043625,1.27584,6.09734,1.71168,2.668295,4.932549,2.5376,2.324215,2.73101,7.8299,2.66571,3.99167,3.78106,0.7698722222222222,3.499515,2.624575,3.812895,4.06422,5.992100000000001,0.6778109999999999,3.286675,9.1454,3.254435,1.25616,5.196149583333334,4.77632,5.44345,4.42933,4.77925,3.25381,2.5541966666666664,7.44958,0.860678,3.650075,4.119575,3.09916,4.10779,2.245415,4.276005,1.6397716666666666,4.45536,4.106265,4.01001,1.6728375,4.75527,4.298965,2.3669375,2.00006,2.2760225,1.284332,4.07757,3.3529910000000003,1.63718,8.170665,5.7808,4.719655,4.407805,3.50096,4.32932,1.4320714285714284,4.43223,3.948885,5.45505,3.69161,2.43839,6.623121538461539,0.87186,0.87186,2.54973,0.9240457142857144,4.15751,2.6376466666666665,1.0086625,1.74437,0.41157333333333335,6.2561800000000005,0.9894275,2.82246,4.058365,3.99,3.980945,4.18042,5.44745,5.607,3.18932,3.216845,2.511995,4.31433,4.735905,4.33277,4.164695,3.876975,6.2341,4.315845,4.357253888888889,6.013408,3.941775,3.6983825,2.284675,3.6983825,6.981636,41.34572833549784,3.757975,3.46974,2.9989233333333334,4.537755,4.460555,3.447535,3.45829,3.85932,4.37773,4.503085,1.7562666666666666,5.1342,2.738275,4.88917,5.2319,5.44575,2.5315266666666667,4.809375,3.911365,4.24827,1.6154540000000002,0.6632876923076924,1.778916,3.6940333333333335,3.154056666666667,1.3697375,3.1831866666666664,2.803803333333333,2.9053633333333333,3.5718333333333336,3.002613333333333,1.59351,2.782026666666667,3.7475,1.9491711325611325,2.8817533333333336,3.29665,3.03064,2.698586666666667,3.5493666666666663,1.170777777777778,4.89925,3.981805,1.28358,1.28358,1.28358,1.28358,2.823174848484849,2.006416666666667,2.377355,3.466795,4.879935,5.18845,4.54195,4.424555,5.856,4.66266,2.34891,6.15505,3.98818,3.077085,3.922335,3.233,4.311115,4.47866,0.7498,1.4423285714285714,1.5796999999999999,4.36501,4.627675,4.84406,4.13553,6.128475,2.2806633333333335,5.08435,1.62471,4.438265,5.219,1.5947533333333332,5.52965,0.864375,4.59385,1.404164,1.23226875,3.75688,4.233725,5.3183,5.3574,6.00145,4.276175,1.571672,4.885585,1.4426275,3.46778,3.22405,2.5290555555555554,1.9029075,3.70713,1.2700133333333332,3.486725,4.82178,3.0974766666666667,5.8045,122.78828226334777,0.4927011111111111,4.747625,2.3482266666666667,4.84785,4.28658,2.96776,1.4966225,0.3682638095238095,3.055085,3.699575,5.29645,3.352925,3.702125,4.50444,4.494325,5.01515,8.368773333333333,0.6992522222222222,2.838755,0.9672275,11.689229999999998,3.033245,3.57276,0.9897655555555556,2.27205,2.820935,2.1837775,3.122733333333333,3.2640333333333333,2.3084533333333335,4.2559425,3.0021566666666666,2.2929933333333334,2.25861,5.7749,3.968815,3.040995,3.59639,3.758455,3.37839,2.4070233333333335,3.857725,3.64283,3.00632,1.0310777777777778,2.5596133333333335,4.2559425,4.77171,5.30115,4.13212,4.5924,1.91588,10.5357,3.7417,3.11508,4.0368,5.37595,0.5381859999999999,0.5381859999999999,4.308135,4.308135,4.0597,3.8234666666666666,1.8402706818181818,0.6222216666666667,3.031235,4.35638,4.289665,3.881495,4.319725,5.3548575,4.770805,2.171735,4.50321,2.164885,2.710725,4.4790775,1.799195,2.324045,0.4941271428571428,1.2014591428571428,1.2014591428571428,1.924485,5.1938,4.200755,4.93706,6.236153,2.898045,3.515455,1.987935,2.00549,4.31726,3.877485,5.342313333333333,2.537735,5.342313333333333,4.88182,3.5104,6.00665,3.91273,2.43391,2.057373333333333,2.651666666666667,1.449035,1.410325,1.504755,1.8914775,1.581885,2.0153625,3.8516666666666666,4.71723,2.45727,6.92895,2.920193333333333,4.51932,3.14155,4.18884,2.929323333333333,3.18566,6.241996666666667,3.3716333333333335,4.747510666666667,3.2574733333333334,1.32049,2.6750900000000004,2.8540733333333335,2.50897,6.00965,4.3454375,4.868965,12.75171156622325,0.7246275,2.0039795,2.3969925,1.746564,1.2873228571428572,2.582975,2.4574975,2.48589,2.46658,0.7358815384615384,1.9306475,0.5448947368421052,4.67163,2.064525,4.215975,4.70462,2.51015,5.731855,4.217715,7.99275,4.129735,2.7209,2.961535,4.683375,4.89102,2.656808857142857,4.563625,2.075515,2.075515,4.997985,3.863645,4.30757,4.11725,3.218726666666667,3.96276,5.0471,5.32865,4.719665,4.49365,4.48694,4.443395,2.591255,4.94079,1.2628616666666665,4.901405,4.712375,2.5313966666666667,2.25925,4.163055,1.4531766666666668,5.0676,1.9484825,5.769530253623189,4.515785,4.359985,1.53894,3.1111633333333337,3.1111633333333337,12.294744999999999,3.93381,4.34425,1.1267275,4.335687999999999,2.5332,1.4239525,2.4607875,1.69361,2.019175,1.7645579999999998,3.237745,5.96135,1.78524,4.959915,4.8375475,5.2441,2.179895,2.35402,3.42716,4.40449,5.377,4.00669,6.7470066666666675,3.10594,3.1087666666666665,0.39120444444444447,3.75316,4.14992,3.3119033333333334,6.240263333333333,2.6134766666666667,3.172636666666667,1.2323083333333333,1.5763333333333334,0.581481875,1.731678,2.96025,1.5232433333333333,1.6370966666666666,0.65201875,1.236072,4.634575,2.385175,0.59565,1.6624100000000002,1.7052,1.7169519999999998,1.3047833333333334,2.13336,1.5763333333333334,2.455625,1.236072,1.236072,0.59565,1.5771857142857144,2.56534,1.3108216666666668,2.695125,0.59565,2.635475,2.56534,1.3017833333333333,1.3017833333333333,1.3017833333333333,1.88845,1.22681375,0.59565,1.092898,1.159525,1.0530933333333334,1.83796,2.64155,0.8531333333333334,2.2361825,1.5885285714285715,0.59565,1.7642019999999998,1.5763333333333334,1.9581166666666665,1.9232833333333332,0.887889,1.9581166666666665,1.0810166666666667,2.3669375,2.4354125,2.5498,1.159525,2.26142,1.2700133333333332,1.2700133333333332,0.9115909090909091,0.9115909090909091,0.9115909090909091,1.2323083333333333,1.5763333333333334,1.5885285714285715,1.6624100000000002,0.9460057142857143,1.9232833333333332,1.510242,1.617392,2.0235399999999997,1.2323083333333333,2.7374199999999997,12.5048675,0.65201875,2.62884,1.8666666666666665,2.47728,0.9503871428571429,0.9503871428571429,0.59565,1.192611111111111,1.673064,1.5885285714285715,1.8263539999999998,1.9232833333333332,1.1577444444444445,1.1577444444444445,1.675982,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,3.189163333333333,1.0810166666666667,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.21030000000000001,0.3911163636363636,54.9175767987013,1.544465,1.5603749999999998,1.5885285714285715,1.8666666666666665,0.9460057142857143,0.6101235294117647,0.727063,0.727063,0.727063,0.727063,4.3049,16.588940416666667,3.3535,0.6308618181818182,1.622356,1.622356,1.622356,0.6308618181818182,2.96025,0.59565,1.7642019999999998,1.6370966666666666,2.5044,1.0810166666666667,2.4832175,1.0810166666666667,1.585374,1.585374,2.1286666666666667,2.1286666666666667,0.59565,2.01656,2.01656,0.9683181818181819,0.21030000000000001,2.96025,1.493145,2.4517025,0.6308618181818182,0.6308618181818182,0.6308618181818182,0.6308618181818182,0.6308618181818182,1.8666666666666665,0.3911163636363636,1.0810166666666667,2.217995,2.217995,2.674875,3.0977633333333334,0.6420285714285714,0.6420285714285714,3.3863333333333334,4.1906,1.2614442857142856,3.2832233333333334,1.0106199999999999,2.6628,2.05476,1.14086,3.2766466666666667,2.0865025,3.2661033333333336,5.30515,2.57221,1.2086333333333334,4.53942,4.66622,2.7664033333333333,1.7588180000000002,2.340392846153846,4.592085,1.78473,2.705486666666667,2.97106,3.0972933333333335,2.402255,6.232049999999999,4.218935,0.21030000000000001,3.0053300000000003,4.909595,4.006,4.53187,4.366845,4.56423,2.8546266666666664,1.8372039999999998,4.15317,4.481625,4.44569,4.764365,5.3152,3.28459,0.71148,6.697765,1.555105,3.119032,4.64213,2.5017066666666667,2.5017066666666667,0.8193881818181818,1.9029075,4.01197,3.09207,4.87155,4.39291,4.656755,5.2776,1.1027914285714286,4.615525,5.6289,7.115620763888889,2.259133333333333,4.25567,4.34182,3.951985,4.12627,4.08246,4.50799,6.0330125,5.23995,4.567323333333333,3.637375,4.422453333333333,7.215186,1.93442,2.2391466666666666,2.8217033333333332,1.77309,2.7820066666666663,1.8465266666666666,5.21755,3.04545,5.99405,1.9690159999999999,4.84437,4.170995,4.23517,4.307,3.834005,2.57788,2.8193566666666663,2.7166033333333335,2.608026666666667,2.6582666666666666,1.6494866666666665,2.72807,2.847996666666667,2.19038,2.19038,4.51162,2.8680333333333334,1.9582,3.096966666666667,2.1125666666666665,2.3864433333333332,3.022536666666667,2.68259,3.14833,5.2722,4.43227,4.351075,3.5169793333333335,3.5169793333333335,3.9975,3.29785,4.14172,4.59064,4.10007,3.55951,3.287985,7.54427,2.1205625,1.955185,3.34962,3.26547,1.3209566666666668,1.3209566666666668,3.611565,1.905725,4.079614,3.652855,3.618385,2.132486,2.153798,0.5871491666666667,3.60678,3.92902,2.0658225,2.498865,4.242895,1.2811033333333333,4.73757,1.14863,0.3757907142857143,0.5282642857142857,21.783952326388892,0.5282642857142857,0.3757907142857143,0.6807378571428572,10.619646666666666,3.055153333333333,3.76314,4.383475,3.5938225,2.78322,4.192711428571428,2.13765,2.69227,3.76527,3.063335,4.09201,4.487655,3.451495,2.244515,3.163255,3.63806,3.98522,3.07077,1.1100729999999999,1.1100729999999999,1.1100729999999999,1.1100729999999999,3.390245,2.858165,3.0855,1.7390033333333335,1.1804866666666667,2.441165,3.692535,3.965715,2.875885,3.3138,2.633265,2.6934008333333335,3.94068,3.996455,1.1073066666666667,2.9284499999999998,1.11942,2.6595766666666667,2.288673333333333,3.9136,5.2697,2.40185,4.46701,4.300543333333334,0.7993869047619047,0.22381357142857142,0.22381357142857142,0.5755733333333333,0.22381357142857142,0.22381357142857142,0.22381357142857142,0.5755733333333333,4.6073,7.55963,3.604265,0.58969875,3.755745,7.669840000000001,3.37838,3.1362466666666666,1.1368500000000001,4.414545,5.37265,4.28399,4.792545,1.682592,4.7753,2.1794266666666666,2.349067333333333,3.848825,5.50835,0.8259442857142857,0.8259442857142857,3.420915,2.8950666666666667,2.17943,3.86618,2.77242,6.58485,4.647265,6.4947,5.85805,5.6639,2.87877,1.71774,4.426815,3.45025,2.45653,3.35946,3.26053,1.9705375,1.1566316666666667,4.01108,3.61844,4.988883333333333,6.3252749999999995,1.4835216666666666,3.96201,1.0886633333333333,2.52601,3.33512,4.89591,0.3897014285714286,3.55974,4.328505,0.9568619999999999,2.8446266666666666,7.713966666666666,4.985055,2.08757,5.628603999999999,4.55201,3.78552,1.4205683333333334,5.365336666666666,2.95173,3.1788966666666667,3.7415333333333334,2.0532166666666667,2.0532166666666667,6.3378,6.3378,3.757560714285714,3.757560714285714,10.3119,3.757560714285714,3.757560714285714,4.403437380952381,6.7759,3.75548,3.5686799999999996,2.8705033333333336,4.78855,4.43092,3.1916166666666665,3.1453233333333332,4.68916,3.1023300000000003,2.67169,3.1929200000000004,2.4465233333333334,2.653385,4.906725,7.79618,6.883967500000001,4.836235,3.74557,3.96464,6.9220619999999995,5.26445,4.485955,3.993195,4.239545,2.293816666666667,2.271565,2.089955,5.67135,5.48155,4.55738,4.26673,2.2847433333333336,2.607013333333333,7.134028333333333,1.88845,2.5357066666666666,3.28994,3.28994,3.139145,5.3076,0.7612408333333334,3.4530666666666665,3.905155,2.94319,10.35145,4.327365,2.88363,2.3449966666666664,5.43785,6.048,2.969355,5.6489,2.6245966666666667,4.38582,3.019697142857143,4.44839,5.34425,5.06575,1.0954066666666666,3.5977333333333337,1.064125,2.506463333333333,5.078151455882353,8.120416666666667,2.763643333333333,3.0954800000000002,6.6156266666666665,1.7774819999999998,4.524625,5.41175,3.466075,3.72584,2.2429033333333335,4.64046,2.4717812500000003,0.50549,5.3531,3.10941,3.518266666666667,5.0467,4.87215,5.17165,6.716817499999999,4.793005,5.6309,7.1121575,54.670118333333335,4.738365,3.88802,4.873135,6.06055,4.67071,4.986505,4.579125,4.62809,1.9171675,3.95401,4.034215,4.56962,2.587205,5.0402,3.92259,1.6504280000000002,5.6697,6.4794,7.333116666666667,5.6781,3.29158,4.741085,3.275795,3.265365,3.72733,4.273705,3.82423,6.40145,2.7584,1.0995128571428572,2.42320375,0.6133339999999999,0.6133339999999999,3.553295,0.6133339999999999,2.4033403214285713,2.4033403214285713,3.1941623214285713,4.421916749999999,4.779331571428571,2.42320375,5.106491666666667,2.941606666666667,1.4354366666666667,5.59385,2.168965,8.152388666666667,6.403646666666667,11.325032106060606,3.07408,2.7309,0.2131472727272727,1.8644706666666666,2.5127166666666665,0.9297175,1.5811966666666668,2.96396,2.3566675,2.67465,0.613544,28.21074625,1.986885,0.7664438461538462,2.7045,2.7045,0.4170022222222222,1.79395,3.18926,1.3006675,1.829115,1.632975,4.1923,2.88645,1.9933233333333333,2.4078399999999998,1.1215616666666668,2.0889675,1.5779500000000002,5.480026499999999,3.85897,6.8432216666666665,2.4920925,3.315236666666667,0.98731,2.45037,5.13525,6.093125,3.147323333333333,2.26593,5.627785833333333,2.2437525,2.5911166666666667,4.417095,1.0998566666666667,3.7005,2.35913,6.03475,5.10825,6.28095,3.307795,4.120105,4.120105,5.0935,5.29305,5.51755,2.79035,1.661115,3.9658,3.633445,5.8897379999999995,4.33502,2.76536,3.7350999999999996,3.117335,1.1906828571428572,5.1312,1.0031725,5.631946666666667,4.839725,7.669735999999999,4.267925,4.494845,4.111885,8.46361,4.8124,5.0452,1.1461999999999999,0.7127100000000001,4.67821,4.429415,2.170775,3.321885,3.311915,4.25094,2.305455,4.946005,2.5797433333333335,5.4697,5.35215,5.3414,4.49735,4.707465,3.14409,6.7965865,3.44866,4.44465,3.38753,4.284035,5.716927380952381,0.5864814285714285,3.6565,1.7016733333333331,0.6379733333333334,3.93376,2.90432,1.04071125,1.94681,5.86845,4.03798,2.666045,2.7758266666666667,2.692156666666667,5.04285,4.004775,1.6103376190476189,4.1653,2.42962,3.620233333333333,4.581305,5.0975,3.3916208333333335,3.7994,3.8958333333333335,1.9755859999999998,7.28623,4.748975,4.35901,5.2794,2.229545,4.21621,4.784455,4.291745,3.864935,10.609155,3.60117,4.300938333333333,4.652925,4.543735,2.4367375,4.53856,4.04446,4.833805,3.2492366666666666,4.42879,1.5804225,3.1582966666666668,3.49182,3.711655,4.93736,1.8905,4.243635,3.193426666666667,5.49435,3.2338633333333333,2.12499,4.45127,4.750345,1.062015,3.202395,2.6835733333333334,4.445743333333333,1.7406400000000002,1.68218,1.178385,4.31224,4.924755,5.7966725,3.7986875,4.054015,2.385285,2.8181,3.76011,1.5923266666666667,5.89875,3.07955,1.8954925,0.8997384615384616,20.3284763974359,2.998335,3.100365833333333,4.4166083333333335,4.005418461538461,1.3525033333333332,2.665387,3.003275681818182,1.188288,1.9069066666666667,4.28355,4.843275,3.6229499999999994,3.21632,5.58165,4.749325,7.226274999999999,4.7017291666666665,4.865015,3.712035,2.8533899999999996,4.215085,3.92944,3.6583,4.052715,1.9585675,5.11945,8.59635,4.099645,2.8436,4.52388,0.6065025,3.066073333333333,2.0662366666666667,2.33475,4.31292,3.39278,5.15445,3.705745,2.93067,2.2597725,1.644665,0.793738,1.6016766666666669,1.1620566666666667,4.08261,4.07198,4.65964,4.678265,7.23994,2.43638,1.44789,2.3775866666666667,7.890476666666666,3.56334,2.95725,3.03882,4.294495,3.5115724999999998,3.545075,1.569338,4.494915,5.1036,4.213115,3.97643,3.587855,4.211465,4.359725,3.86129,4.430135,3.87552,2.14419,3.2667466666666667,3.551075,5.53615,2.798985,4.273065,3.88143,2.92627,2.6918399999999996,2.3136466666666666,2.1514366666666667,2.7908713333333335,2.7908713333333335,1.9337233333333332,2.8084966666666666,2.3927333333333336,2.31976,1.9514333333333334,4.041205,2.398433333333333,2.752126666666667,2.85805,1.72133,4.375615,2.847965,3.909685,2.4335366666666665,5.26145,5.30205,4.887796388888889,2.416655,2.270645,2.90188,2.408975,2.09702,2.764095,1.917005,2.592725,2.5917,6.832005,4.3672875,3.564915,0.609238125,4.422015,4.105035,4.12451,3.05051,3.884515,3.67815,6.3146,4.379505,3.384325,2.846467142857143,2.098841111111111,2.49798,1.72801,1.730782,1.725494,2.03994,1.733255,1.2970599999999999,4.132181714285714,0.59565,0.5263811111111111,1.988646,1.5192966666666667,1.5153240000000001,1.4781366666666667,2.331594090909091,1.4521366666666669,1.7762280000000001,0.593695,172.44525634098335,0.5209406666666667,2.043,1.116166,1.2117975,2.105135,1.5283975,2.0185225,2.5314200000000002,1.920515,6.77735,3.37818,3.5456261904761908,1.91936,3.20515,1.327985,1.327985,5.9874125,0.49471611111111113,2.41501,3.3287066666666667,3.0411466666666667,0.8071454545454546,0.6526117647058823,1.2373044102564101,1.0778181818181818,2.3580125,4.16708,2.1087,2.1939025,2.4846633333333332,4.843830666666666,1.0782633333333334,4.292275,3.653385,3.425845,6.67561,2.0388933333333332,3.12663,2.88687,4.137065,2.272665,3.610765,3.33535,3.375675,4.370195,2.97177,6.10405,2.22722,2.38994,3.006185,1.362765,2.667945,2.99981,2.822995,1.682075,1.443815,2.669775,4.445865,5.417188333333334,2.768725,3.01702,1.591185,4.272115,3.711,3.9191333333333334,2.917105,25.273893102716723,2.4635746666666662,2.7718366666666667,3.0890633333333333,3.6133333333333333,3.2280933333333333,5.958786666666667,3.141296666666667,2.617313333333333,3.4588666666666668,3.4281,2.1310066666666665,3.2304133333333334,3.2767766666666667,3.2364266666666666,1.7314999999999998,1.6526200000000002,0.54652,2.3285066666666667,2.1198725,0.225625625,2.36654,2.946805,0.225625625,0.225625625,2.1437922916666667,0.225625625,0.225625625,0.225625625,0.225625625,2.7685366666666664,2.5967733333333336,0.5633392307692308,3.294645,1.46359,1.90914,5.44275,4.4077325,6.1586225,2.1164725,5.0275,2.1860225,2.93304,1.3353942857142855,5.846873333333334,2.7696533333333337,5.8118775,0.8948666666666667,1.3163325,4.72079,4.594055,35.766046582972585,1.6628779999999999,1.4552866666666666,2.285606666666667,2.3357525,0.9115909090909091,2.3241333333333336,2.3073099999999998,2.7889666666666666,2.0675399999999997,2.4823566666666665,1.7170283333333334,2.8450366666666667,2.3455166666666667,2.3974966666666666,2.5731066666666664,2.4518233333333335,4.217255,3.5561333333333334,1.12198,4.088935,4.13421,20.04911511111111,2.7532366666666666,3.112883333333333,2.6059033333333335,0.819674,3.3019800000000004,1.5867051111111112,3.3019800000000004,2.4303466666666664,2.57304,3.237206666666667,1.68502,1.9945975,4.26726,4.24103,5.07045,4.31312,1.6929500000000002,5.01495,1.6552575,4.83123,4.145015047619047,4.635025,0.7663590909090909,2.06518,2.18249,2.79119,3.336415,1.0940825,3.674055,1.9723960000000003,1.9306966666666667,1.060946,1.060946,3.3945333333333334,2.882006666666667,4.376085,29.73639125,6.486135,1.8622166666666666,3.5590333333333333,0.383156,6.210205,5.546,2.7778066666666668,3.355315,5.9468499999999995,4.161145,1.21587625,4.85303,1.21408,3.18606,4.6172,4.91601,2.113565,2.96018,4.430225,2.926295,3.5134475,4.360805,1.2902799999999999,2.5594804166666667,3.940395,5.106475,2.7511033333333335,3.08858,2.8418033333333335,3.8497,4.02924,4.06606,4.185033333333333,1.681325,6.2415,2.61951,1.72041,4.14451,5.50062,4.056435,3.476465,0.7669275,2.89824,3.45525,2.14128,4.644284,2.7837,3.88955,2.88331,3.3409666666666666,2.660385,3.301296666666667,3.1452333333333335,3.171726666666667,4.55512,5.43535,4.78065,1.690265,3.97913,4.136545,1.931335,1.994525,1.74087,3.979905,4.492305,5.307858333333333,3.986405,3.7128,3.76653,3.1741200000000003,1.3908616666666667,3.09893,3.096375,3.356975,4.630475,4.5255,4.436995,3.005395,2.06491,1.53593,1.4557425,3.666465,2.39995,2.203925,3.349765,4.77108,1.66115,5.38135,1.4121828571428572,1.8571125,3.21277,3.19548,2.996295,3.68338,3.01964,1.65016,0.9687283684210527,3.3499,4.083006666666667,4.740815,8.61312,2.3313333333333333,3.1572066666666667,1.6335133333333334,2.7011866666666666,2.7372566666666667,1.1468116666666666,3.06364,2.899043333333333,3.04001,4.016266666666667,3.320323333333333,6.969571666666667,3.1073066666666667,0.7519354545454546,2.06264,3.469565,3.355085,3.4609,3.6435666666666666,2.6271639999999996,3.439095,3.127005,2.0339565714285714,3.781995,2.937476111111111,3.38015,2.2097366666666667,5.62875,4.95638,4.56761,4.498605,3.86712,1.2176888888888888,5.138,3.1269033333333334,2.411566666666667,4.48249,2.8590933333333335,3.031663333333333,0.4308042857142857,0.4308042857142857,4.02776,4.82728,6.81755,3.117755,4.811765,3.936825,3.478315,5.0639,4.360575,1.0207275,4.05498,2.6764833333333335,4.744736666666666,2.87631,3.063505833333333,1.9375600000000002,3.333919642857143,2.766923333333333,2.9151433333333334,2.6412466666666665,2.8277300000000003,1.9752233333333333,22.83150500395257,4.95887,4.125655,3.951785,3.304475,4.4226325,4.135975,4.587025,4.399,3.99387,3.53231,4.0406,2.653913333333333,2.92089,3.0691733333333335,3.0659733333333334,2.88945,4.30108,3.44546,4.5954875,4.976345,4.22379,1.24102,1.6936399999999998,1.6936399999999998,4.474885,3.835785,2.732746666666667,2.2511966666666665,3.0039200000000004,4.261425,3.38024,8.063043333333333,3.2634733333333332,3.445066666666667,3.1565450000000004,5.03415,1.6582383333333333,6.1551325,2.461396666666667,3.1534133333333334,1.7136625,4.034165,3.035725,7.12619,3.49844,2.688,4.14744,3.8825986666666665,1.5193575,2.67117,1.7878866666666668,7.908239,4.43564,6.544005,2.2923675,4.36478,3.81179,4.18417,5.1802,3.730033333333333,3.730033333333333,2.15071,4.339025,5.1785,2.39125,6.534871428571429,1.545435,5.90315,9.11514,3.680266666666667,4.378916666666666,2.257896666666667,1.933505,0.5980075,4.263705,2.5449,2.652725,3.928974,2.4096375,2.403913333333333,3.767,5.6849,5.15465,4.98311,5.1519,4.23513,2.236115,1.0151454545454546,2.996785,3.116765,2.9257266666666664,5.3735,3.981405,3.84946,2.766575,2.06188,4.332265,1.0056775,5.2165,1.047331111111111,5.393,3.2983,4.91682,5.257225,3.144115,3.49975,3.0983666666666667,2.35125,4.362555,3.294645,2.53082,4.422145,5.14135,6.372456666666666,4.59917,1.9423625,3.598185,3.256615,5.4702883333333325,1.8868925,1.8868925,2.8979433333333335,2.4169633333333334,2.5498366666666668,2.7865866666666665,0.889917,6.4034,4.10745,2.0639975,2.2552,2.584605,3.732865,2.850095,3.725755,5.1643,5.40295,5.10705,6.1934,6.02005,1.3250125,3.823895,1.125975,2.524925,4.422433333333333,2.514295,3.04694,3.17413,4.30219,3.931555,0.45509578947368423,4.3845,4.165425,4.96962,3.264695,4.906765,5.66695,4.53189,4.14613,1.80892,4.456495,2.0681825,4.323833333333334,4.323833333333334,6.605,5.5827,5.7402,5.3261,2.802985,1.6582383333333333,4.37437,2.4629166666666666,1.61141,1.93769,4.27456,4.141335,4.544465,8.22342,1.7071333333333334,5.44645,1.2966216666666666,4.5084,5.9408,1.9966525,4.761575,2.5369633333333335,4.885955,3.5993,4.601025,2.8241566666666666,4.21682,4.0007,6.04845,4.36488,4.00828,4.071045,5.88745,4.084485,4.44918,3.66181,4.200135,7.453666666666667,3.52941,7.14936,3.274555,5.4204,6.245502272727273,4.63591,3.52468,1.837045,5.4651,3.963115,0.8765044444444444,8.57127,6.0085,5.2849,3.219151666666667,5.1518,2.847795,1.755904,4.058555,1.1073066666666667,6.1277,3.16314,4.578375,5.37345,4.331915,4.1298,2.24386,4.389425,5.3698,2.057945,7.201978333333333,3.09553,3.82216,5.04805,4.366365,2.21766,4.490065,4.47689,4.589255,2.8643366666666665,3.949085,3.66466,5.4923,4.6581,3.427755,1.881135,1.881135,7.316066666666666,1.5202428571428572,5.32345,4.47088,5.53885,3.60911,3.682955,5.2201,3.78121,0.8762383333333333,0.8762383333333333,0.8762383333333333,3.728405,3.186295,3.81768,4.535815555555555,3.38134,1.44956,4.4997,2.21061,2.69709,4.016735,4.93346,2.383165,2.1478,5.49876,3.80039,3.06077,4.50413,1.60578,1.8967,3.314026666666667,2.7536,5.4252,1.421436,1.6054939999999998,1.12661125,4.059195,3.66525,2.9023533333333336,3.075396666666667,5.5084,1.747966,2.02005,3.076105,1.6517142857142857,3.69939,3.6463,2.42869,5.59,5.5752,2.85373,4.363245,4.196295,3.718985,3.71989,4.281525,3.534685,6.76619,5.5617,1.9053733333333334,1.8973666666666666,3.500975,4.47961,4.16189,4.175185,3.1932666666666667,4.251295,5.90005,5.1936,2.6696933333333335,5.3851,3.95856,5.62045,8.211234999999999,4.332205,0.7425427272727273,4.10737,4.1998,2.478055,4.30712,4.059,5.9395,3.925155,4.115155,3.804195,4.654205,4.785775,4.494315,3.221205,4.029005,5.2013,4.0973,2.786885,2.92637,6.34468,5.2949,1.9337140000000002,3.19352,4.367301666666667,3.93685,5.0746,4.659255,2.6457966666666666,0.8700422222222222,4.66256696969697,6.4941925,3.73744,4.64166,3.610505,7.226795000000001,4.15368,3.7869333333333333,2.9752333333333336,3.826815,2.09181,3.37407,4.268285,2.514002,4.108695,5.73015,1.410935,5.1442,0.6776064285714286,6.4076,6.10755,6.3412,6.0405,1.8142333333333334,1.7941099999999999,4.610335,1.984635,5.49175,0.5945983333333333,5.68285,3.179025,1.530996,6.2905525,6.6561,1.348455,2.2431409999999996,1.283602,1.283602,1.283602,2.09828,4.97639,3.51,4.38581,4.088765,5.43255,3.89523,1.937224,4.259295,5.1363,0.29757804878048777,4.05297,4.629835,5.05845,40.69692556060606,6.010291666666666,5.0731,12.151783333333332,4.471955,4.23076,7.556346666666666,3.35634,4.7574,4.005575,4.611135,9.393655,3.99203,2.7966200000000003,3.989105,5.288,4.230165,3.745215,4.36593,2.38274,4.429325,4.63774,6.884436000000001,4.336975,5.25585,2.317205,4.11907,0.524378125,1.4341916666666668,4.45267,6.34365,3.084765,1.3024016666666667,1.3024016666666667,3.50537,3.848295,4.047625,2.872055,1.6707833333333333,3.751425,4.273965,1.8320375,3.2414799999999997,1.68343,2.3625933333333333,4.080875,4.39314,2.127245,4.547055,2.3084175,2.04364,3.568565,3.627705,3.989405,3.756995,6.094957,2.419237,3.975095,0.6907727272727272,0.6521933333333333,3.69867,2.09027,8.85992,3.3535,5.05535,1.6344525,4.517255,1.5181483333333334,4.02434,4.28915,2.54166,4.232965,5.131,0.41398900000000005,0.41398900000000005,3.6615333333333333,3.15924,3.02843,3.739055,3.70155,5.39025,1.0099090909090909,10.5695,9.99824,2.13336,4.610799999999999,4.86222,4.936695,3.50769,2.6262366666666668,2.0801,2.090755,10.0487275,2.2635625,2.716616666666667,3.830508,4.41552,3.830508,2.49893,3.05712,2.8192,0.720389090909091,5.432770833333333,3.2783466666666663,2.6876366666666667,4.452825,8.42765,10.43705,4.521555,3.951925,4.411955,6.897740000000001,1.9613825,1.3797375,26.65757,3.822475,3.98482,0.9778460000000001,4.300105,4.133655,4.947475,4.52461,5.3412,5.824746666666667,3.103946666666667,2.086273333333333,0.670335294117647,0.7272008333333333,4.844795,5.03005,1.39495,4.482728333333334,0.9006500000000001,3.5736333333333334,1.4572333333333332,4.28313,6.022,1.986835,2.430535,2.598165,3.9255,3.14439,0.46248777777777783,4.114625,3.57697,2.91354,3.236445,5.05515,2.9002866666666667,4.067885,2.965255,5.09675,8.516546666666667,5.0188,7.836535,2.719575,2.660766666666667,4.409895,4.596365,4.318095,4.291975,3.770385,5.05605,1.193845,3.6502437500000005,3.2286977142857145,0.632902,1.6936399999999998,1.6936399999999998,4.76552,7.52099,0.8688153846153847,4.77823,0.9320616666666667,2.8454599999999997,2.3935166666666667,2.606040227272727,6.404064444444444,2.6393066666666667,1.152677777777778,2.3927733333333334,1.2594625,2.137523333333333,3.0716699999999997,3.0628666666666664,3.3200333333333334,2.4327666666666667,0.9320616666666667,4.50135,4.392195,5.6429,2.70238,4.56067,2.09394,5.9567,4.811465,4.492765,2.953996666666667,3.391295,2.262075,1.55129,4.01582,2.822775,4.496455,5.51,1.6385660000000002,4.86981,2.958826666666667,6.472533333333334,3.55467,2.634885,0.9320616666666667,2.483565,3.46932,7.305227333333334,2.4858166666666666,1.709046,2.4858166666666666,0.4434108333333333,1.2223739999999998,3.58003,3.421895,1.7901625,3.56373,3.721087,0.6253070000000001,0.6253070000000001,0.6253070000000001,7.6373299999999995,1.5841939999999999,0.7257981818181819,2.853525,40.19302542207792,1.8162806666666667,0.6458766666666667,3.0275499999999997,0.6458766666666667,3.71636,2.09751,2.55606,2.6687666666666665,5.40975,4.59565,4.34526,2.4272666666666667,0.8712442857142857,4.32192,3.2189433333333333,5.1066,1.014292857142857,2.917625,2.917625,3.88151,4.7033,4.025825,5.519185,3.309325,4.72138,5.3804,1.8100660000000002,1.1090675,5.3373,6.4672,3.82489,0.6775800000000001,4.51053,4.14956,0.9801675,4.373335,2.726795,4.183695,4.526725,1.9019525252525253,1.9019525252525253,4.168895,3.359055,0.9010411111111112,2.89967,3.0447866666666665,3.34833,3.941105,4.483175,0.4493742857142857,0.31040529411764706,0.31040529411764706,0.31040529411764706,0.7597795798319328,0.62193,0.687071,0.31040529411764706,0.31040529411764706,6.762499999999999,0.31040529411764706,0.7597795798319328,3.613565,1.25886,4.59029,1.1565916666666667,0.633373076923077,0.9801675,2.599395,2.705425,3.98162,2.985525,0.31040529411764706,0.31040529411764706,4.38408,3.714465,4.21362,2.69274,3.973765,1.5689,3.893765,0.687071,0.687071,4.82915,3.10636,2.66581,2.849715,4.0544633333333335,1.00645,0.8531307692307692,10.620655,1.3070375,4.261995,4.554025,5.1868,2.10188,0.3882930434782609,0.90359625,2.7163566666666665,3.41999,3.12184,4.572335,1.481946,6.1422,3.61048,5.2478225,4.288255,3.0439833333333333,2.8930666666666665,6.402976666666666,2.645563333333333,4.870545,4.17896,4.300543333333334,6.16939,0.5526946666666667,4.273975,3.311193333333333,2.13052,0.75628,4.24701,6.78197,3.316915,2.62498,2.27746,5.1079,2.75644,2.806075,0.9976139999999999,0.4695853846153846,3.995605,0.35771800000000004,0.7812118181818182,3.9752,3.208275,4.195515,2.7234,5.2313,4.3377,6.077098666666667,3.6975,3.625675,4.576735,1.520425,5.100035,1.8240379999999998,4.10544,2.541925,5.937049999999999,2.675575,1.007674,4.51589,6.9182975,6.66225,3.385,0.7852100000000001,2.8405833333333335,4.577955,4.034735,4.55643,4.487405,4.15528,4.92289,3.18466,4.152705,1.8107933333333335,2.28323,1.4403133333333333,4.12105,9.471815,3.226015,3.62964,5.9859,2.83108,4.44301,2.4931,3.0049356666666664,3.32322,3.945645,3.412595,3.720085,3.6887,5.3215,5.89295,4.930045,4.70953,5.01725,4.12291,3.605245,5.75495,7.975125,0.930818888888889,4.67211,4.250315,5.00285,5.7216,4.53813,2.46832,8.29015,2.4984800000000003,3.44689,5.85205,3.74586,4.325565,2.17698,1.8635875,2.907806666666667,2.13344,2.1082233333333336,2.9321466666666667,4.22844,4.632045,4.038875,3.443725,4.7096350000000005,3.271385,3.18253,3.96112,5.72405,2.9883,5.558771999999999,4.002685,3.929815,3.576985,8.00312,3.911315,3.73925,4.23182,4.92025,3.58367,10.4182,1.3456883333333334,2.24845,3.798605,2.7542500000000003,2.7542500000000003,1.93071,7.754871666666667,0.8861844444444444,3.35741,0.8709775,2.02005,4.307485,4.90908,3.99998,4.43101,2.9248266666666667,3.309265,3.909705,3.80571,4.41265,3.05597,2.69335,4.286165,5.027338333333333,3.927575,4.53953,1.6147960000000001,1.6201139999999998,2.6623033333333335,5.5798,2.35405,1.6968166666666666,1.99098,4.39854,4.815925,3.11567,3.67149,0.5488366666666668,2.293875,7.5466750000000005,3.362655,1.50451,0.85706375,1.2009966666666667,2.0969333333333333,2.06885,0.7779066666666666,2.08141,4.3756390000000005,3.94887,5.02425,2.4399166666666665,2.2397925,7.3238925,3.057075,2.3102383333333334,2.3102383333333334,2.3102383333333334,6.72219,2.35529,3.563895,2.59638,0.485352,1.164984,2.49724,6.625715,0.4619183333333333,3.74077,3.8814816666666667,5.58745,3.004155,0.4619183333333333,3.004155,1.01629,1.277574,5.843,4.241955,6.860844999999999,4.21834,4.60551,3.635845,4.16214,5.11165,5.06895,6.1262,3.717275,3.43694,5.0234,4.711605,4.165615,4.59866,5.28295,1.3623516666666668,2.7600533333333335,1.2157075,2.245565,3.191005138888889,1.593580138888889,7.3163725,5.4702883333333325,2.746126666666667,5.3749,2.86965,4.887405,2.778755,4.343785,4.88697,9.51028,5.61245,4.624565,2.4042125,2.97069,2.15408,0.6065025,2.197055333333333,5.9501,5.30375,5.1858,4.61526,0.5866386666666668,2.0320225,1.401545,4.466725,0.801376923076923,7.1110275000000005,2.0719275,1.1240775,1.1240775,3.9730799999999995,2.08172,3.482366666666667,2.971535,4.571395,3.5137375000000004,3.5137375000000004,4.858275,5.8875183333333325,2.8117866666666664,2.522326666666667,3.3533333333333335,4.6949,1.907,2.7786766666666662,5.61275,5.31685,4.970795,4.578785,3.9352816666666666,4.820745,3.5989158333333338,3.2195766666666668,2.3282925,4.21188,5.3312,3.191735,4.954245,5.60855,2.1091166666666665,2.7106766666666666,6.35935,6.8908,1.376576,2.6934,2.42793,2.76618,2.364395,2.620825,2.596775,1.07796,1.95344,2.683525,2.3230675,2.5839800000000004,2.5839800000000004,3.3679715,2.99445,2.2395034615384617,2.671575,2.41513,2.03932,1.5942319999999999,5.1167425,15.1725675,3.004016666666667,3.5771333333333337,1.8106459999999998,1.8106459999999998,1.69135,1.69135,2.872,3.744666666666667,3.029116666666667,2.016365,2.016365,3.851233333333333,2.9127433333333332,1.11611,1.4695714285714288,3.122116666666667,2.960623333333333,3.666233333333333,2.6084490476190476,3.3331199999999996,3.3125166666666668,0.699084,2.620175,3.6814249999999995,7.196703333333334,4.78991,5.19315,4.38058,3.406665,4.829815,4.694405,2.8800866666666667,4.264655,1.3849583333333333,3.25282,5.82255,5.4034,2.763275,1.3201266666666667,2.965685,2.684556666666667,3.0674200000000003,1.5751966666666668,0.7014235714285714,2.9998966666666664,4.721714166666667,4.699205,4.40323,4.73815,3.0422766666666665,2.1129599999999997,3.3406858333333336,2.608283333333333,3.5307,3.13509,3.3894,2.7293633333333336,3.8180333333333336,3.686,2.93381,5.21905,5.02935,5.164603333333334,5.164603333333334,3.37088,3.927975,3.756465,3.816335,3.01947,4.86863,3.377235,3.12364,6.26685,0.6278725,4.90586,4.93841,2.5522933333333335,5.104538333333333,3.5792333333333333,1.7425166666666667,1.4163171428571428,2.2434433333333335,1.01436,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.26239535714285717,0.5502271428571428,0.5502271428571428,1.2006875,0.8528291666666667,1.6929263383838384,1.0221785714285714,1.0221785714285714,1.2511696717171716,0.4417566666666667,0.39394444444444443,1.20482,1.7314575,2.8006766666666665,2.570125,7.0361199999999995,3.0583533333333333,3.79126,4.249538333333333,4.927828857142857,1.3520883333333333,4.74365,4.31472,4.877265,3.307905,1.513034,4.234425,3.713195,4.837115,4.490205,3.2538,4.725995,4.73018,4.735485,1.204334,4.214235,4.653575,3.29303,2.2943966666666666,3.305725,2.436615,3.324235,4.49142,3.1008266666666664,5.05005,8.762965,3.254995,4.75615,4.193585,4.4791083333333335,2.8035366666666666,4.331195,0.94946,4.09427,3.419425,1.986462,1.10905375,2.87489,1.2025733333333333,0.5047033333333333,3.5698666666666665,4.206455,5.261126666666667,3.728666666666667,2.45231,2.392155,4.864825,4.0065333333333335,4.454095,2.6847,2.2485833333333334,4.195025,4.140675,4.059805,5.3318,4.62044,3.58028,4.72186,3.1632700000000002,4.416935,2.222201666666667,4.702305,5.2383,3.289345,4.2543,2.494205,3.772885,5.53295,4.48471,5.18305,4.9853,4.799845,2.46226,5.09955,4.91307,4.86141,2.3392075,1.09889375,4.116425,4.67532,4.284915,4.98454,1.833005,4.18056,2.15476,5.0582,4.48399,4.856585,2.318835,4.444435,4.92135,4.2769,2.6788366666666668,5.04165,4.883,5.14425,3.753955,2.3392075,2.51106,3.10548,5.08365,3.98696,4.262835,3.520785,4.82354,2.31903,6.90949,5.20055,4.64151,5.258141201388888,5.023540000000001,5.1652,3.43492875,2.430555,2.430555,4.03179,3.8999,4.50255,2.2337575,2.9971662500000003,1.06801375,2.7132666666666663,3.0145433333333336,2.525326666666667,3.0094066666666666,4.545385,2.808896666666667,5.32165,2.7162733333333335,4.596935,5.00226,2.15085,4.140495,1.6496233333333334,2.9179866666666663,4.037795,0.954701,4.925235,4.568205,6.1555575000000005,4.741005,5.6374,1.3137014285714286,4.87211,6.6281,8.72177,3.1931433333333334,3.276073333333333,1.9238600000000001,0.834852,3.93287,1.0648,4.68237,4.462785,5.50515,3.2405,3.819235,1.2060857142857144,3.58631,3.568125,4.33206,4.230745,4.322575,3.802185,2.3867475,4.350995,4.7661,5.7447,4.41975,3.50723,0.4180744444444444,0.4180744444444444,0.4180744444444444,0.4180744444444444,5.45685,2.775885,6.22415,3.0709999999999997,5.09945,4.620015,3.83411,2.284435,2.558263333333333,1.54403,5.1584,2.9296100000000003,4.11202,4.103655,3.422115,1.598235,1.19553375,4.503495,2.432785,6.046796666666667,3.88107,5.2465,2.185995,1.5034049999999999,0.8830366666666667,3.256235,4.401935,3.45088,2.162835,8.130289999999999,4.650985,3.49533,2.3404,0.438354,3.435305,2.482475,2.056255,1.832945,3.648975,3.26354,2.5518,3.0614166666666667,3.01823,3.305595,4.41893,3.731845,3.9095,3.68707,5.648865,0.623886,4.509745,5.68285,5.14955,4.670475,3.280196666666667,5.1705,4.65033,4.353935,5.46774,5.4373,4.749735,4.703815,3.659345,4.859155,2.71191,9.04116,5.01605,4.38186,4.919145,4.898355,5.6331,3.661525,1.1179777777777777,5.8471150000000005,3.586,4.875825,1.4161266666666668,4.474385,3.97632,7.354569999999999,4.594705,3.23987,2.104766666666667,4.54302,2.0328600000000003,1.0140925,4.406455,6.2187,2.011836666666667,2.29934,2.8680866666666667,3.30364,3.568255,3.74927,5.24995,1.8103366666666665,4.266855,3.922202,3.37277,3.698733333333333,4.11199,2.80108,2.58093,1.972605,2.3773233333333335,2.663816666666667,4.456805,0.5871491666666667,2.62704,4.14435,2.926115,3.5050000000000003,4.59585,5.48125,4.08179,17.28324272727273,2.6296433333333336,4.018766666666667,1.49467,0.8630727272727273,0.8630727272727273,0.8630727272727273,0.8630727272727273,0.8630727272727273,4.563715,4.850405,4.927225,9.574864999999999,2.526375,2.526375,4.57648,4.6082141666666665,1.3192675,2.0523866666666666,4.028645,2.575175,2.29616,2.243145,3.03603,3.8059760000000002,1.88793,3.833855,0.8438071428571429,3.0078566666666666,2.9601966666666666,3.04265,1.4278566666666668,3.21013,2.4692333333333334,0.9564175,2.7888966666666666,2.700616666666667,1.2524,2.4681833333333336,2.7834299999999996,2.2240533333333334,4.511149333333334,2.0270699999999997,3.0327633333333335,2.0788225,2.63602,1.0870011111111113,2.7973466666666664,4.807422666666667,3.6083,1.06162625,2.9814866666666666,1.4092575,2.6348733333333336,2.5647533333333334,4.738178333333333,2.96485,2.4530166666666666,4.672122666666667,2.7356466666666663,2.131725,2.9212166666666666,2.59292,1.6088066666666665,2.87979,3.1771,3.2094400000000003,2.6743133333333335,3.3090166666666665,2.6587666666666667,2.531675,3.74012,3.74012,2.9728833333333333,2.11375,1.8488,2.60324,5.52015,3.06338,1.9734833333333333,1.6926525,3.1203333333333334,4.46217,2.4948133333333335,1.005942,2.696402,1.5168100000000002,3.650866666666667,2.1254733333333333,2.6444,2.188616666666667,3.7752,1.295502,1.7682200000000001,1.4398733333333331,4.196671666666667,2.62398,4.168425,1.0068922222222223,4.186035,2.2764,2.450835,1.84193,1.7083166666666667,3.379633333333333,23.70379081818182,6.980343333333334,2.67196,3.6356200000000003,2.35739,10.265395333333334,3.3246966666666666,1.1087875,2.5367533333333334,2.3662466666666666,2.0626166666666665,2.824756666666667,2.6146033333333336,2.538933333333333,0.917152,3.6036333333333332,2.541236666666667,2.9541766666666667,3.0932933333333335,2.7055833333333332,2.0685566666666664,2.199666666666667,2.77238,2.5915399999999997,2.1539825,1.63007,5.493611666666666,4.68658,2.3531025,2.981825,2.27397,2.3631366666666667,8.1782525,1.92204,5.044,2.3298075,2.0202675,7.18453,3.0631233333333334,2.69807,2.510675,1.829508,1.4791134615384616,3.117316666666667,3.3703000000000003,4.211465,1.501345,3.8399,1.705,1.705,4.14346,4.65104,2.917608571428571,2.917608571428571,6.237486666666667,3.43991,0.419186,12.093585463980464,1.2294066666666665,0.9259528571428571,3.8885866666666664,1.4842542735042734,1.986315,6.096676666666667,3.75492,0.7610727272727273,2.169776666666667,4.989714727272727,2.5449466666666667,4.01779,1.3611228571428573,5.5366,5.18275,5.13905,3.65369925,1.96116,2.70114,2.574073333333333,2.5161866666666666,2.2921199999999997,5.088830000000001,4.7688,4.411785,1.95438,4.722355,4.162225,3.2045033333333333,2.221235,5.1419,2.63117,8.831596666666666,6.9241425,1.94275,2.340035,1.764106,4.533166666666667,4.533166666666667,3.2187133333333335,2.966396666666667,3.432812333333333,5.01675,9.7032025,4.57249,2.4486425,5.6024,4.506535,5.3481,2.05302,0.79762,1.32198,4.466305,4.64531,3.8289333333333335,2.7182766666666667,3.8210333333333337,2.3706766666666668,3.81719,4.762575,3.23648,5.65175,3.2852266666666665,3.7704686666666665,3.4459666666666666,3.3397666666666663,3.4194666666666667,6.28555,3.083925,5.4818,5.13195,3.240975,3.383375,3.383375,5.7758416666666665,12.046754166666666,3.5661666666666663,6.449059999999999,7.439024444444445,3.577365,2.461396666666667,3.88088,1.3351166666666667,3.922455,2.17449,2.92624,3.048583333333333,3.3760666666666665,2.1068000000000002,2.4277,2.76786,2.5677566666666665,3.0136566666666664,3.1300866666666667,3.926995,2.56082,2.8728533333333335,3.998595,2.94319,2.431646666666667,1.1158475,2.05486,2.8032033333333337,2.5459166666666664,2.49859,2.4861333333333335,3.5787999999999998,2.31676,2.2840766666666665,2.906446666666667,2.98863,2.81508,2.99105,2.5071233333333334,3.2721533333333332,2.8381399999999997,3.3145860000000003,2.5648033333333333,2.37317,2.4146233333333336,2.62725,2.7477433333333336,3.4098333333333333,3.2764333333333333,2.36011,1.9819975,1.9819975,0.7138100000000001,1.569338,4.231445,3.23348,2.6906966666666663,2.1068000000000002,3.4359333333333333,1.307197142857143,2.68739,0.5766866666666667,3.4807666666666663,3.0907966666666664,3.107535,2.9319166666666665,2.5728433333333336,2.771236666666667,3.08094,2.7105366666666666,3.4264666666666668,4.94666,1.556588,2.74001,2.4521133333333336,1.8228733333333331,2.1623,2.7943266666666666,2.796476666666667,1.701622,2.5548100000000002,2.6426766666666666,2.6413699999999998,2.5873033333333333,2.85833,2.933203333333333,3.216366666666667,1.3245,2.9386200000000002,2.2821766666666665,3.7108666666666665,3.827833333333333,1.8783625,1.89244,3.3906333333333336,2.70849,3.444366666666667,2.5969,2.669826666666667,5.2288475000000005,3.31692,2.0019833333333334,1.6294499999999998,3.3796,6.210426666666667,3.2408633333333334,3.5038,3.067083333333333,3.05719,4.732479333333334,1.648066,1.1510777777777779,2.462213333333333,1.8248141666666666,4.595965,2.7305966666666666,3.2599400000000003,3.1003600000000002,3.257626666666667,2.4971133333333335,3.3780666666666668,2.551675,1.62897,2.8233599999999996,3.528325,3.6299175000000004,3.369005,3.756395,1.5891025,2.687895,3.450805,3.398885,2.3789166666666666,3.5666333333333333,3.863766666666667,3.779833333333333,1.3347125,5.527258,3.17235125,1.5029066666666668,3.328105,3.48861,2.921335,3.74035,1.8961459999999999,1.8961459999999999,3.22368,2.9445033333333335,2.76953,5.26945,4.31519,4.32705,1.21725,3.0236866666666664,2.6662500000000002,4.16235,3.1208066666666667,4.98986,2.73841,2.398213333333333,2.63418,3.737705,4.59976,1.633086,3.00643,3.365705,2.3865825,4.407035,1.3127183333333334,3.78064,4.35561,2.66548,3.481745,4.129275,1.6557125,1.60002,2.34588,1.03961,2.0223714285714287,1.9569275,0.4592778571428572,4.17048,2.273255,4.64813,4.29062,3.06716,4.621735,3.2713566666666662,3.189436666666667,3.6981,2.6625833333333335,3.2891,2.7884433333333334,3.355033333333333,2.159873333333333,0.6945723076923076,2.3855833333333334,0.6324007142857143,1.9790633333333334,2.466816666666667,3.216953333333333,3.019163333333333,1.5334166666666667,1.3183575,4.17631,4.51417,3.22895,3.6606825,3.17111,2.0296825,3.93989,6.762983333333334,3.865265,5.7037075,1.59017,3.814905,1.9571625,4.18761,3.846945,2.07984,4.02936,3.18953,4.00683,4.00021,2.1428475,4.11394,6.3656825,5.29795,3.43981,3.14353,1.7052,1.9922925,3.75369,3.3612,3.221155,3.761715,3.55726,3.60871,1.66343,3.607775,3.45046,1.7720125,4.2399275,1.0333666666666665,3.58813,1.6296525,3.878235,4.74925,3.684825,2.858635,3.763405,3.33494,1.968365,2.2581425,3.828333333333333,2.993145,5.9149625,4.179505,4.49167,2.49588,2.74318,4.662955,4.581285,2.662622,2.662622,6.049312666666667,4.1253735,2.9209275000000003,2.99558,2.1597766666666667,2.80744,3.361275,3.6014524999999997,2.7995435000000004,3.40161,0.915188,3.829425,3.13411,4.1172,2.53893,1.5470475,1.50137,3.20132,5.977492,5.5669875,3.574695,1.623895,4.02511,3.717415,0.8301433333333333,3.045875,1.411544,5.4542325,1.4208083333333335,3.97028,2.0510025,1.5334166666666667,3.507695,2.984425,4.52326,6.96762,4.183825,4.7722983333333335,2.446925,2.946495,4.37104,3.89044,4.462815,4.34239,1.0822175,1.6526200000000002,1.1061,2.599665,2.38551,4.694095,1.1061,4.448,2.28622,1.63249,1.63249,1.7720125,3.968105,4.21963,4.012515,1.53966,1.53966,1.0403566666666666,2.954665,2.0707675,6.0192575,4.365475,3.716485,3.01134,0.9963214285714285,3.47746,2.76346,4.188255,3.70854,3.9849525000000003,3.9849525000000003,3.344955,4.02549,1.86185,2.587875,0.9426577777777777,2.0504666666666664,3.57832,2.531356666666667,3.3155391666666665,3.3155391666666665,2.75657,4.635115,4.549695,3.52913,3.47368,4.09197,2.6084366666666665,4.486621666666666,3.258815,3.927045,8.425685,5.1393,2.840355,3.29376,3.013885,4.679205,3.2507520000000003,8.0346475,4.663003,4.5409,3.530165,3.812725,3.73385,4.349935,4.704505,2.544365,4.535755,6.570047499999999,2.523015,2.194368888888889,3.14665,3.301105,3.564955,5.73855,2.2429033333333335,2.1418399999999997,2.82011,3.0630550000000003,2.8619233333333334,7.300363333333333,1.5476025,4.859151666666667,4.859151666666667,3.157805,4.089536666666667,2.98287,2.6025066666666667,5.02509,4.29248,2.1010933333333335,4.11922,3.946735,3.517271666666667,3.020395,2.99903,6.438633333333334,3.274655,5.36635,3.337915,4.741945,3.952625,3.674775,2.9445033333333335,2.0218133333333332,2.849955,4.029525,2.78675,3.1793183333333332,3.180355,6.388493333333333,3.123815,1.8212175,3.284250833333333,2.3572933333333332,3.86046,2.83982,0.8301433333333333,3.193855,4.16702,3.928285,5.9282,3.070285,2.84989,2.9667066666666666,2.9667066666666666,3.690585833333333,4.275005,3.80673,2.147205,6.1017075,2.13376,4.537355,3.665015,8.05054,2.7894900000000002,1.3152133333333333,3.49829,4.490145,0.6591525,3.907045,3.330245,3.108505,3.21757,4.432795,2.1179866666666665,2.93769,8.990965,3.487355,3.54444,1.4208083333333335,3.76733,2.679135,2.53735,4.199495,5.372925,1.66784,1.2006683333333334,1.1190766666666667,4.14824,3.92121,3.35766,3.4389975,3.4389975,1.66343,2.334665,3.1949508333333334,0.8431533333333333,2.875155,1.085225,1.5891025,3.473945,3.43854,2.73065,2.61582,2.7952399999999997,4.305695,3.65175,3.08082,3.12381,2.53838,4.21583,6.764455,4.114945,0.91929625,2.478096,8.63865,4.55239,4.030395,1.0843625,5.010438333333333,1.4086933333333331,3.7138375,3.7138375,3.8437,8.8897925,0.8492655555555556,4.730775,4.6398,2.2957199999999998,4.114528333333333,4.01221,2.1767975,9.570632666666667,1.8811075,2.4502433333333333,3.214665,1.8225333333333333,4.177605166666667,3.206305,3.34736,3.4041726666666667,2.929795,3.48118,1.0978033333333335,7.42921,4.05335,4.04434,3.958395,1.9569825,2.858635,4.129928333333333,3.854965,0.6520515384615385,4.022495,4.22294,4.94061,2.0986275,1.383766,4.07435,4.15693,8.64149,0.718343846153846,0.6445425,0.6445425,1.69937,1.54233,1.371838,1.7735566666666667,4.8343,1.2564666666666666,0.8961742857142857,4.076280000000001,3.569955,1.3426225,3.33155,4.749885,3.450335,0.675632,1.90374,9.105125000000001,3.621078333333333,3.54568,3.09158,1.5504425,2.47376,2.664775,4.47402,4.22116,3.827995,0.9045628571428572,1.462942,0.9013629999999999,4.5908425,4.26508,4.04711,0.8431533333333333,1.688176,3.921275,2.3915928571428573,4.939244166666667,1.1909825,4.637235,0.6059566666666667,0.6059566666666667,0.6059566666666667,9.787600000000001,3.983715,1.085225,3.87179,4.714175,2.962425,3.490835,4.606620833333333,2.684955,1.9119244444444445,2.0815933333333336,0.675632,1.5057753333333332,0.5231877777777778,0.8067133333333333,1.3346883333333333,3.66701,3.71583,2.03606,7.3510816666666665,4.880801666666667,0.6852788888888889,6.0363,5.200913333333332,3.44975,4.501685,8.093977666666667,3.8441493452380953,4.880801666666667,4.631575166666667,2.3606766666666665,4.19019,3.947245,7.12885,3.451175,0.438354,1.50909,4.024885,1.74567,1.2006683333333334,3.991495,2.35494,1.593185,3.11331,1.6667840000000003,4.430245,4.33573,4.010105,4.73348,6.36957,2.702695,3.81768,1.411544,2.3282675,3.610685,3.16368,2.1010933333333335,4.01589,2.486165,5.0042,2.93207,2.43441,3.3454333333333333,1.605066,3.64258,0.8431533333333333,2.2722685,1.1190766666666667,1.72065,3.60917,1.5476025,1.3346883333333333,2.1988925,3.26962,7.80049,0.9045628571428572,1.0843625,1.3648339999999999,3.60995,4.053255,1.3648339999999999,3.989055,2.3282675,0.6591525,0.8431533333333333,1.69937,1.411544,0.4592778571428572,1.6504280000000002,4.147913333333333,2.2957199999999998,1.3417016666666666,2.918855,1.3347125,1.8811075,2.818623333333333,2.0815933333333336,4.80293,2.818623333333333,0.8301433333333333,2.8023670000000003,2.3307,0.08263977272727273,0.08263977272727273,0.08263977272727273,0.08263977272727273,0.08263977272727273,3.338533333333333,2.751746666666667,2.8453166666666667,2.89911,4.94045,4.22362,1.84193,3.69692,3.57566,2.219895,4.92007,2.92584,2.47223,2.37537,2.7182,4.59404,7.915446666666666,2.3419725,2.09072,3.104049642857143,0.9824371428571429,1.4117916666666668,2.387563333333333,2.0853733333333335,1.48228,2.77083,2.262166666666667,2.6504833333333333,2.67452,2.5560133333333335,3.795685,3.648135,2.61671,1.358718,3.83979,3.730205,1.5362266666666666,1.3440239999999999,1.3440239999999999,1.3440239999999999,3.553475,2.6705733333333335,1.0751666666666666,2.239736666666667,1.33334,4.317885,1.6447399999999999,6.736666666666667,3.33861,2.843336666666667,3.145004,3.145004,5.424456666666666,3.141235,4.5512,4.98032,2.158915,3.202663333333333 diff --git a/output/preprocess/Esophageal_Cancer/clinical_data/GSE107754.csv b/output/preprocess/Esophageal_Cancer/clinical_data/GSE107754.csv index 47d977ce491b5c161f0e99ce6176f11a9563cc71..5bfc191b11e43c7ef270601d2b6d60e24749dc51 100644 --- a/output/preprocess/Esophageal_Cancer/clinical_data/GSE107754.csv +++ b/output/preprocess/Esophageal_Cancer/clinical_data/GSE107754.csv @@ -1,3 +1,3 @@ ,GSM2878070,GSM2878071,GSM2878072,GSM2878073,GSM2878074,GSM2878075,GSM2878076,GSM2878077,GSM2878078,GSM2878079,GSM2878080,GSM2878081,GSM2878082,GSM2891194,GSM2891195,GSM2891196,GSM2891197,GSM2891198,GSM2891199,GSM2891200,GSM2891201,GSM2891202,GSM2891203,GSM2891204,GSM2891205,GSM2891206,GSM2891207,GSM2891208,GSM2891209,GSM2891210,GSM2891211,GSM2891212,GSM2891213,GSM2891214,GSM2891215,GSM2891216,GSM2891217,GSM2891218,GSM2891219,GSM2891220,GSM2891221,GSM2891222,GSM2891223,GSM2891224,GSM2891225,GSM2891226,GSM2891227,GSM2891228,GSM2891229,GSM2891230,GSM2891231,GSM2891232,GSM2891233,GSM2891234,GSM2891235,GSM2891236,GSM2891237,GSM2891238,GSM2891239,GSM2891240,GSM2891241,GSM2891242,GSM2891243,GSM2891244,GSM2891245,GSM2891246,GSM2891247,GSM2891248,GSM2891249,GSM2891250,GSM2891251,GSM2891252,GSM2891253,GSM2891254,GSM2891255,GSM2891256,GSM2891257,GSM2891258,GSM2891259,GSM2891260,GSM2891261,GSM2891262,GSM2891263,GSM2891264 -Esophageal_Cancer,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Esophageal_Cancer,,,,,,,,,,,,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 Gender,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0 diff --git a/output/preprocess/Esophageal_Cancer/code/GSE100843.py b/output/preprocess/Esophageal_Cancer/code/GSE100843.py new file mode 100644 index 0000000000000000000000000000000000000000..4df2d7035bd090193cab6e15e4fd34ab0b13f577 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE100843.py @@ -0,0 +1,221 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE100843" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE100843" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE100843.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE100843.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE100843.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re + +# 1) Gene expression data availability (from background: microarrays for global gene expression) +is_gene_available = True + +# 2) Variable availability assessment based on the provided Sample Characteristics Dictionary +# Sample Characteristics Dictionary (from previous step output) +sample_char_dict = { + 0: ["tissue: Barrett's esophagus segment", "tissue: Normal esophageal squamous mucosa"], + 1: ["arm: Arm B", "arm: Arm A"], + 2: ["timepoint (t0=before, t1=after): T0", "timepoint (t0=before, t1=after): T1"], +} + +# Trait is Esophageal_Cancer; this dataset contains Barrett's esophagus and normal squamous tissue, +# with vitamin D intervention timepoints and arms. There is no explicit or inferable esophageal cancer status. +trait_row = None + +# No age or gender fields exist in the sample characteristics dictionary. +age_row = None +gender_row = None + +# 2.2 Conversion functions +def _after_colon(value: str) -> str: + if value is None: + return "" + if isinstance(value, (int, float)): + return str(value) + parts = str(value).split(":", 1) + val = parts[1] if len(parts) == 2 else parts[0] + return val.strip() + +def convert_trait(value): + # Binary mapping for Esophageal_Cancer if ever present: cancer=1, non-cancer/control=0; else None + v = _after_colon(value).lower() + if not v: + return None + # Positive indicators + pos_markers = ["esophageal cancer", "esophageal carcinoma", "escc", "eac", "adenocarcinoma", "squamous cell carcinoma"] + if any(m in v for m in pos_markers): + return 1 + # Negative indicators + neg_markers = ["control", "normal", "healthy", "no cancer", "benign"] + if any(m in v for m in neg_markers): + return 0 + return None + +def convert_age(value): + v = _after_colon(value) + if not v: + return None + # extract first number (years) if present + m = re.search(r"[-+]?\d*\.?\d+", v) + if not m: + return None + try: + return float(m.group(0)) + except Exception: + return None + +def convert_gender(value): + v = _after_colon(value).lower() + if not v: + return None + if v in ["female", "f", "woman", "women"]: + return 0 + if v in ["male", "m", "man", "men"]: + return 1 + # handle common encodings + if v.startswith("fem"): + return 0 + if v.startswith("mal"): + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (skip because trait_row is None -> clinical variable not available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df, n=5) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file, index=True) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Determine appropriate columns for probe IDs and gene symbols from gene_annotation +probe_col = 'ID' +gene_symbol_col = 'gene_assignment' if 'gene_assignment' in gene_annotation.columns else ( + 'mrna_assignment' if 'mrna_assignment' in gene_annotation.columns else None +) + +if gene_symbol_col is None: + raise ValueError("Could not find a suitable gene symbol column in gene annotation.") + +# 2. Get mapping dataframe: probe ID -> gene symbols (embedded text to be parsed by helper) +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_symbol_col) + +# 3. Apply mapping to convert probe-level measurements to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1. Normalize gene symbols and save gene data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2-6. Link and downstream steps only if clinical data exists +if 'selected_clinical_data' in locals() and isinstance(selected_clinical_data, pd.DataFrame): + # 2. Link clinical and genetic data + linked_data = geo_link_clinical_genetic_data(selected_clinical_data, normalized_gene_data) + + # 3. Handle missing values + linked_data = handle_missing_values(linked_data, trait) + + # 4. Bias check and remove biased demographic features + is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + + # 5. Final quality validation and save metadata + note = "INFO: Clinical traits available and linked; bias assessed and demographics filtered if biased." + is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note + ) + + # 6. Save linked data if usable + if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) +else: + # Clinical/trait data unavailable; skip linking and record initial filtering status without triggering final validation + print("Skipping linking and downstream steps: trait/clinical data unavailable. Gene expression data was processed and saved.") + _ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=False + ) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE104958.py b/output/preprocess/Esophageal_Cancer/code/GSE104958.py new file mode 100644 index 0000000000000000000000000000000000000000..06d84c283e8ec7fe8b7dda6e6fa4e558f4c5c7e5 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE104958.py @@ -0,0 +1,196 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE104958" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE104958" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE104958.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE104958.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE104958.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import pandas as pd + +# 1) Gene expression availability (based on DNA microarray description in background) +is_gene_available = True + +# 2) Variable availability and converters +# From the Sample Characteristics Dictionary, trait (Esophageal_Cancer) can be inferred from 'tissue: cancer tissue' vs 'tissue: normal tissue' at key 1 +trait_row = 1 +age_row = None +gender_row = None + +def convert_trait(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower() + if s in {'', 'na', 'n/a', 'nan', 'unknown', 'none'}: + return None + # Map normal to 0 + if 'normal' in s and 'abnormal' not in s: + return 0 + # Map cancer/tumor-related terms to 1 + cancer_terms = ['cancer', 'tumor', 'tumour', 'carcinoma', 'malignan'] + if any(term in s for term in cancer_terms): + return 1 + return None + +def convert_age(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower().replace('years', '').replace('year', '').replace('yrs', '').replace('yr', '').replace('y/o', '').replace('yo', '').replace('y', '') + s = s.replace('~', '').replace('about', '').replace('approximately', '').strip() + # Keep only digits, decimal point, and minus sign + filtered = ''.join(ch for ch in s if (ch.isdigit() or ch in {'.', '-'})) + try: + val = float(filtered) + if 0 < val < 120: + return val + return None + except Exception: + return None + +def convert_gender(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower() + if s in {'', 'na', 'n/a', 'nan', 'unknown', 'none'}: + return None + if s in {'female', 'f', 'woman', 'women', 'girl'}: + return 0 + if s in {'male', 'm', 'man', 'men', 'boy'}: + return 1 + # Heuristics + if 'female' in s: + return 0 + if 'male' in s: + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (only if trait_row is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age if age_row is not None else None, + gender_row=gender_row, + convert_gender=convert_gender if gender_row is not None else None + ) + clinical_preview = preview_df(selected_clinical_df) + print(clinical_preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify columns for probe IDs and gene symbols based on the annotation preview +probe_col = 'ID' +gene_col = 'GENE_SYMBOL' + +# Build probe-to-gene mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_col) + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(gene_data, mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link the clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias check and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +is_usable = validate_and_save_cohort_info( + True, + cohort, + json_path, + True, + True, + is_trait_biased, + unbiased_linked_data, + note="INFO: Age and Gender not available; trait derived from tissue field." +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE107754.py b/output/preprocess/Esophageal_Cancer/code/GSE107754.py new file mode 100644 index 0000000000000000000000000000000000000000..31690a762325dba3dc35c972e0a4b1c3d68996a9 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE107754.py @@ -0,0 +1,195 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE107754" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE107754" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE107754.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE107754.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE107754.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import pandas as pd + +# 1) Gene expression data availability +is_gene_available = True # Whole human genome gene expression microarrays per series description. + +# 2) Variable availability and converters + +# Determine rows from the Sample Characteristics Dictionary +trait_row = 2 # 'tissue: Esophagus cancer' present among diverse tissues +age_row = None # No age information found +gender_row = 0 # 'gender: Female' / 'gender: Male' + +# Converters +def convert_trait(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + parts = s.split(":", 1) + header = parts[0].strip().lower() if len(parts) > 1 else "" + value = parts[1].strip().lower() if len(parts) > 1 else s.strip().lower() + # Heuristic mapping: + # - Positive (1): any 'tissue' entry mentioning esoph (covers esophagus/esophageal) + # - Negative (0): other 'tissue' entries + # - Unknown (None): entries that are not about tissue (e.g., biopsy location) + if header == "tissue": + if "esoph" in value: + return 1 + # Any other tissue is considered non-esophageal cancer + return 0 + # Not a tissue field -> cannot infer trait confidently + return None + +def convert_gender(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + parts = s.split(":", 1) + value = parts[1].strip().lower() if len(parts) > 1 else s.strip().lower() + if value in ["male", "m"]: + return 1 + if value in ["female", "f"]: + return 0 + return None + +def convert_age(x): + # Not used because age_row is None; included for completeness. + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + parts = s.split(":", 1) + value = parts[1].strip() if len(parts) > 1 else s.strip() + # Extract leading numeric + try: + # Remove common non-numeric trailing characters + value_clean = "".join(ch for ch in value if (ch.isdigit() or ch == "." or ch == "-")) + return float(value_clean) if value_clean not in ["", "-", "."] else None + except Exception: + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait data is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + # Preview + preview = preview_df(selected_clinical_df, n=5) + print(preview) + + # Ensure output directory exists and save + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify the appropriate columns for mapping: probe ID ('ID') and gene symbol ('GENE_SYMBOL') +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='GENE_SYMBOL') + +# Preserve the original probe-level data and apply mapping to obtain gene-level expression +probe_level_data = gene_data +gene_data = apply_gene_mapping(probe_level_data, mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data (fix variable name) +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias check and remove biased covariates +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +covariate_cols = [trait, 'Age', 'Gender'] +gene_cols = [c for c in unbiased_linked_data.columns if c not in covariate_cols] +is_gene_available_final = (len(unbiased_linked_data) > 0) and (len(gene_cols) > 0) +is_trait_available_final = (trait in unbiased_linked_data.columns) and (len(unbiased_linked_data) > 0) + +note = ("INFO: Trait inferred as esophageal cancer (1) vs. other tissues (0) from 'tissue' field within a heterogeneous " + "metastatic cohort; age unavailable; gender present. Gene symbols normalized via NCBI synonyms.") + +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available_final, + is_trait_available=is_trait_available_final, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked dataset if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE131027.py b/output/preprocess/Esophageal_Cancer/code/GSE131027.py new file mode 100644 index 0000000000000000000000000000000000000000..c80eb9ac962d95a55ebc94e5db3beb500eccbf1c --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE131027.py @@ -0,0 +1,162 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE131027" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE131027" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE131027.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE131027.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE131027.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os + +# 1) Gene expression availability +is_gene_available = True # Overall design mentions "expression features", suggesting mRNA expression data. + +# 2) Variable availability and converters + +# Trait: use cancer type to define Esophageal_Cancer (binary: esophageal vs others) +trait_row = 1 # 'cancer: ...' +age_row = None +gender_row = None + +def convert_trait(x): + if x is None: + return None + s = str(x).strip() + # Extract value after the first colon if present + if ':' in s: + _, val = s.split(':', 1) + else: + val = s + v = val.strip().lower() + if v in {'', 'na', 'n/a', 'none', 'unknown'}: + return None + # Positive if esophageal/oesophageal cancer + if ('oesoph' in v) or ('esoph' in v): + return 1 + return 0 + +# Age and Gender not available +convert_age = None +convert_gender = None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview_selected_clinical = preview_df(selected_clinical_df) + + # Save clinical data + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify the relevant columns for mapping +id_col = 'ID' # Probe IDs in annotation match probe IDs in expression data +gene_symbol_col = 'Gene Symbol' # Column containing gene symbols + +# Build the mapping dataframe (probe -> gene symbol) +mapping_df = get_gene_mapping(gene_annotation, prob_col=id_col, gene_col=gene_symbol_col) + +# Apply mapping to convert probe-level data to gene-level data +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Assess bias and remove biased covariates +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: Probe-to-gene mapping via platform annotation; gene symbols normalized using NCBI synonyms." +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE156915.py b/output/preprocess/Esophageal_Cancer/code/GSE156915.py new file mode 100644 index 0000000000000000000000000000000000000000..e0acd5c4cc30d84404c89c72dc042fc11554bcc9 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE156915.py @@ -0,0 +1,215 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE156915" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE156915" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE156915.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE156915.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE156915.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import re + +# 1) Gene expression data availability +is_gene_available = True # Whole transcriptome mentioned in background info + +# 2) Variable availability and conversion functions + +# Since this cohort is colorectal cancer and contains no explicit esophageal cancer status, +# no usable trait/age/gender fields are present in the sample characteristics dictionary. +trait_row = None +age_row = None +gender_row = None + +def _extract_value(x): + if x is None: + return None + if isinstance(x, str): + parts = x.split(":", 1) + val = parts[1] if len(parts) > 1 else parts[0] + return val.strip() + return x + +def convert_trait(x): + """ + Map esophageal cancer presence to binary: 1 for esophageal/oesophageal cancer, 0 for others. + Unknown/ambiguous -> None. + """ + val = _extract_value(x) + if val is None or val == "": + return None + s = str(val).lower() + # Positive indicators for esophageal cancer + if any(k in s for k in ["esophageal", "oesophageal", "esophagus", "oesophagus"]): + # Exclude explicit normal controls if present + if any(k in s for k in ["normal", "control", "healthy", "adjacent normal"]): + return 0 + return 1 + # If explicitly other cancers or non-esophageal tissues + if any(k in s for k in ["colorectal", "crc", "colon", "rectal", "stomach", "gastric", "breast", "lung", "liver", "kidney"]): + return 0 + # Generic normal/control indications + if any(k in s for k in ["normal", "control", "healthy", "adjacent normal"]): + return 0 + return None + +def convert_age(x): + """ + Convert age to continuous float in years. + Extract numbers from strings; return None if missing or invalid. + """ + val = _extract_value(x) + if val is None or val == "": + return None + s = str(val).lower() + # Find first number (int or float) + m = re.search(r"[-+]?\d*\.?\d+", s) + if not m: + return None + try: + age = float(m.group()) + # Simple sanity check for human age + if 0 <= age <= 120: + return age + return None + except Exception: + return None + +def convert_gender(x): + """ + Map gender to binary: female -> 0, male -> 1. Unknown -> None. + """ + val = _extract_value(x) + if val is None or val == "": + return None + s = str(val).strip().lower() + if s in ["male", "m"]: + return 1 + if s in ["female", "f"]: + return 0 + # Handle common encodings + if "male" in s: + return 1 + if "female" in s: + return 0 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (skip if trait_row is None) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + selected_clinical_df.to_csv(out_clinical_data_file, index=True) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = False") + +# Step 5: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +normalized_gene_data.to_csv(out_gene_data_file) + +# Guard based on trait availability from Step 2 +if 'trait_row' in globals() and trait_row is None: + # No clinical/trait data available: skip linking and downstream steps + linked_data = None # For safety, define the variable + note = ("WARNING: Trait clinical data is unavailable for this cohort; " + "skipping linking, missing-value handling, and bias assessment. " + "Only normalized gene expression was saved.") + # Final metadata validation (dataset not usable due to missing trait) + _ = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=False, + is_biased=False, # Placeholder; trait not available + df=normalized_gene_data.T, # Use samples as rows for validation shape + note=note + ) +else: + # 2. Link clinical and genetic data + if 'selected_clinical_df' not in globals(): + # Try to load if it was saved in Step 2 + if os.path.exists(out_clinical_data_file): + selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) + else: + raise RuntimeError("Clinical data not found for linking despite trait_row not being None.") + linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + + # 3. Handle missing values + linked_data = handle_missing_values(linked_data, trait) + + # 4. Bias assessment and removal of biased demographic features + is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + + # 5. Final validation and cohort info saving + is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: Linked data generated and quality-checked." + ) + + # 6. Save usable linked dataset + if is_usable: + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE218109.py b/output/preprocess/Esophageal_Cancer/code/GSE218109.py new file mode 100644 index 0000000000000000000000000000000000000000..e9914b48504f962eb0512f8a2aa0aca3315c2dfa --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE218109.py @@ -0,0 +1,187 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE218109" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE218109" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE218109.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE218109.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE218109.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +# 1) Gene expression data availability +is_gene_available = True # Transcriptional profiling of ESCC tumors implies gene expression data + +# 2) Variable availability +trait_row = None # All samples are ESCC tumors; no case-control variation for Esophageal_Cancer +age_row = 1 # 'age: ' +gender_row = 0 # 'Sex: M' / 'Sex: F' + +# 2.2) Conversion functions +def _after_colon(x): + if x is None: + return None + # Extract substring after the first colon + parts = str(x).split(":", 1) + return parts[1].strip() if len(parts) == 2 else str(x).strip() + +def convert_trait(x): + # Not used because trait_row is None, but provide a safe stub returning None + return None + +def convert_age(x): + v = _after_colon(x) + if v is None or v == "" or v.lower() in {"na", "n/a", "none", "nan"}: + return None + try: + return int(float(v)) + except Exception: + return None + +def convert_gender(x): + v = _after_colon(x) + if not v: + return None + v_low = v.strip().lower() + if v_low in {"f", "female", "woman", "women"}: + return 0 + if v_low in {"m", "male", "man", "men"}: + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction +# Skipped because trait_row is None (no usable trait variation for Esophageal_Cancer in this cohort) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Decide mapping columns based on observed identifiers +probe_col = 'ID' # Matches the numeric probe IDs seen in gene_data index +gene_symbol_col = 'GENE_SYMBOL' # Gene symbols column in annotation + +# Build mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_symbol_col) + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(gene_data, mapping_df) + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1. Normalize the obtained gene data and save +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link the clinical and genetic data if clinical trait data exists +linked_data = None +selected_clinical = None + +# Try to use in-memory clinical data if present +if 'selected_clinical_data' in globals(): + selected_clinical = globals()['selected_clinical_data'] + +# If not in memory, try to load from file +if selected_clinical is None and os.path.exists(out_clinical_data_file): + try: + selected_clinical = pd.read_csv(out_clinical_data_file, index_col=0) + except Exception: + selected_clinical = None + +# Only link if trait row exists in clinical data +if isinstance(selected_clinical, pd.DataFrame) and (trait in selected_clinical.index): + linked_data = geo_link_clinical_genetic_data(selected_clinical, normalized_gene_data) + +# 3-6. Handle two workflows depending on clinical trait availability +if linked_data is not None: + # 3. Missing value handling + linked_data = handle_missing_values(linked_data, trait) + + # 4. Bias checks + is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + + # 5. Final validation and save cohort info + is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: Clinical trait, age, and gender were linked successfully." + ) + + # 6. Save linked data only if usable + if is_usable: + unbiased_linked_data.to_csv(out_data_file) + +else: + # Trait data unavailable (no usable trait row). Record metadata and skip linking/analysis. + # Provide a non-empty df (gene-only) to avoid 'abnormality' override. + df_for_record = normalized_gene_data.T # samples x genes + + is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=False, + is_biased=False, + df=df_for_record, + note="INFO: Trait (Esophageal_Cancer) is unavailable/constant in this cohort (all ESCC tumors; NS+ vs NS- design). Clinical extraction for trait was skipped." + ) + # Do not save out_data_file when unusable \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE55857.py b/output/preprocess/Esophageal_Cancer/code/GSE55857.py new file mode 100644 index 0000000000000000000000000000000000000000..788e9477752e93a8eaad69874c593414ce31cfb4 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE55857.py @@ -0,0 +1,117 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE55857" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE55857" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE55857.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE55857.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE55857.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re + +# 1) Gene expression data availability (SuperSeries of small non-coding RNAs -> not suitable mRNA expression) +is_gene_available = False + +# 2) Variable availability and conversion functions + +# Trait (Esophageal_Cancer): inferred from 'tissue: ESCC normal' vs 'tissue: ESCC tumor' +trait_row = 1 # available +age_row = None # not available +gender_row = None # not available + +def _after_colon(x): + if x is None: + return None + s = str(x) + parts = s.split(":", 1) + return parts[1].strip() if len(parts) == 2 else s.strip() + +def convert_trait(x): + v = _after_colon(x) + if v is None or v == '': + return None + vl = v.lower() + # ESCC tumor -> 1, ESCC normal/control -> 0 + if any(k in vl for k in ["tumor", "cancer", "carcinoma", "malignant"]): + # guard against phrases like "non-tumor" + if "non-tumor" in vl or "non tumor" in vl or "benign" in vl or "normal" in vl or "control" in vl: + return 0 + return 1 + if any(k in vl for k in ["normal", "control", "adjacent normal", "healthy", "non-tumor", "non tumor", "benign"]): + return 0 + return None + +def convert_age(x): + v = _after_colon(x) + if v is None or v == '': + return None + m = re.search(r"(\d+(\.\d+)?)", v) + return float(m.group(1)) if m else None + +def convert_gender(x): + v = _after_colon(x) + if v is None or v == '': + return None + vl = v.lower() + if vl in ["m", "male"]: + return 1 + if vl in ["f", "female", "woman", "women"]: + return 0 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print(preview) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE66258.py b/output/preprocess/Esophageal_Cancer/code/GSE66258.py new file mode 100644 index 0000000000000000000000000000000000000000..e18636d6e7620d2a7722e33e181cf6f0bfe54758 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE66258.py @@ -0,0 +1,123 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE66258" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE66258" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE66258.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE66258.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE66258.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import re +import pandas as pd + +# 1) Gene expression availability (sncRNA-only => not suitable) +is_gene_available = False + +# 2) Variable availability +# From the provided sample characteristics: +# 0 -> tissue: esophageal squamous cell carcinoma (constant) +# 1 -> sample id: 1..30 (identifier, not a phenotype) +trait_row = None +age_row = None +gender_row = None + +# 2.2 Converters +def _after_colon(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x).strip() + if ':' in s: + s = s.split(':', 1)[1].strip() + return s if s != '' else None + +def convert_trait(x): + v = _after_colon(x) + if v is None: + return None + s = v.lower() + # Map tumor/cancer/ESCC to case=1; normal/control to 0 + if any(k in s for k in ['esophageal squamous cell carcinoma', 'escc', 'tumor', 'cancer', 'carcinoma']): + return 1 + if any(k in s for k in ['normal', 'control', 'adjacent', 'non-tumor', 'non tumor', 'healthy']): + return 0 + return None + +def convert_age(x): + v = _after_colon(x) + if v is None: + return None + s = v.lower() + # Extract the first number (handles formats like "65", "65 years", "60-70") + m = re.search(r'(\d+(\.\d+)?)', s) + if not m: + return None + try: + val = float(m.group(1)) + return int(val) if val.is_integer() else val + except Exception: + return None + +def convert_gender(x): + v = _after_colon(x) + if v is None: + return None + s = v.strip().lower() + if s in ['male', 'm', 'man', 'boy']: + return 1 + if s in ['female', 'f', 'woman', 'girl']: + return 0 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (skip because trait_row is None) +# If trait_row were available: +# selected_clinical_df = geo_select_clinical_features( +# clinical_df=clinical_data, +# trait=trait, +# trait_row=trait_row, +# convert_trait=convert_trait, +# age_row=age_row, +# convert_age=convert_age, +# gender_row=gender_row, +# convert_gender=convert_gender +# ) +# preview = preview_df(selected_clinical_df) +# selected_clinical_df.to_csv(out_clinical_data_file, index=True) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE75241.py b/output/preprocess/Esophageal_Cancer/code/GSE75241.py new file mode 100644 index 0000000000000000000000000000000000000000..90905a6d1f7693058623341fdc141e4fc78cb4ce --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE75241.py @@ -0,0 +1,207 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE75241" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE75241" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE75241.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE75241.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE75241.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression data availability +is_gene_available = True # Based on series title/summary indicating gene expression profiling (ESCC vs mucosa) + +# 2) Variable availability and conversion functions +# From the sample characteristics, tissue status (tumor vs nonmalignant mucosa) is available at key 1 +trait_row = 1 +age_row = None +gender_row = None + +def convert_trait(x): + if pd.isna(x): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower() + # Check normal first to avoid substring confounding (e.g., "non-tumor" contains "tumor") + normal_markers = ['nonmalignant', 'non-malignant', 'non tumor', 'non-tumor', 'normal', 'adjacent normal', 'surrounding mucosa'] + if any(m in s for m in normal_markers): + return 0 + cancer_markers = ['tumor', 'carcinoma', 'cancer', 'escc', 'scc'] + if any(m in s for m in cancer_markers): + return 1 + return None + +def convert_age(x): + if pd.isna(x): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower() + m = re.search(r'(\d+(\.\d+)?)', s) + if m: + try: + return float(m.group(1)) + except Exception: + return None + return None + +def convert_gender(x): + if pd.isna(x): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower() + if s in ['male', 'm', 'man', 'boy']: + return 1 + if s in ['female', 'f', 'woman', 'girl']: + return 0 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (since trait_row is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print(preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +import pandas as pd + +# Decide columns: probe IDs are in 'ID'; gene symbols are embedded in 'gene_assignment' or 'mrna_assignment' +ann = gene_annotation.copy() +# Ensure columns exist +if 'gene_assignment' not in ann.columns: + ann['gene_assignment'] = pd.NA +if 'mrna_assignment' not in ann.columns: + ann['mrna_assignment'] = pd.NA + +# Replace placeholder '---' with NA and prioritize gene_assignment, then fallback to mrna_assignment +ann['gene_assignment'] = ann['gene_assignment'].replace('---', pd.NA) +ann['mrna_assignment'] = ann['mrna_assignment'].replace('---', pd.NA) +ann['GENE_TEXT'] = ann['gene_assignment'].combine_first(ann['mrna_assignment']) + +# 2) Build mapping dataframe (probe ID -> gene symbol text) +mapping_df = get_gene_mapping(ann, prob_col='ID', gene_col='GENE_TEXT') + +# 3) Apply mapping to convert probe-level to gene-level data +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1) Normalize gene symbols and save gene-level data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2) Ensure clinical features are available in this session +if 'selected_clinical_df' not in globals(): + selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) + +# Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# Derive availability flags and cast to native Python bool +is_gene_available_final = bool((normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0)) +is_trait_available_final = bool((trait in linked_data.columns) and bool(linked_data[trait].notna().any())) + +# 3) Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4) Bias check and remove biased demographic features if needed +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) +is_trait_biased = bool(is_trait_biased) + +# 5) Final validation and save cohort info +note = "INFO: Paired ESCC tumor vs adjacent mucosa; Age/Gender not provided; Genes normalized via NCBI synonyms." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available_final, + is_trait_available=is_trait_available_final, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6) Save linked dataset if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/GSE77790.py b/output/preprocess/Esophageal_Cancer/code/GSE77790.py new file mode 100644 index 0000000000000000000000000000000000000000..de40f0d1c56372fde6ab43c74cb165b7ec32cb5e --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/GSE77790.py @@ -0,0 +1,183 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" +cohort = "GSE77790" + +# Input paths +in_trait_dir = "../DATA/GEO/Esophageal_Cancer" +in_cohort_dir = "../DATA/GEO/Esophageal_Cancer/GSE77790" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/GSE77790.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/GSE77790.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/GSE77790.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os + +# 1) Gene expression data availability +is_gene_available = True # Agilent whole genome microarrays -> mRNA gene expression + +# 2) Variable availability and conversion functions +# From the sample characteristics dictionary, esophageal cancer status can be inferred from key 1 ("cell type: ...") +trait_row = 1 +age_row = None +gender_row = None + +def _extract_value(x): + if x is None: + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + return s.strip() + +def convert_trait(x): + val = _extract_value(x) + if not val: + return None + s = val.lower() + if s in {'na', 'n/a', 'unknown', 'nan'}: + return None + # Esophageal cancer vs. others + if 'esoph' in s: + return 1 + # Map any other known cell types to 0 + return 0 + +def convert_age(x): + # Not used (age_row is None), but define for interface completeness + val = _extract_value(x) + if not val: + return None + s = val.lower().replace('years', '').replace('year', '').strip() + try: + return float(s) + except Exception: + return None + +def convert_gender(x): + # Not used (gender_row is None), but define for interface completeness + val = _extract_value(x) + if not val: + return None + s = val.lower() + if s in {'female', 'f', 'woman', 'women'}: + return 0 + if s in {'male', 'm', 'man', 'men'}: + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print(preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# 1-2. Identify columns for mapping and create mapping dataframe +# Expression data row identifiers are numeric strings matching the 'ID' column in the annotation. +# Gene symbols are stored in the 'GENE_SYMBOL' column. +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='GENE_SYMBOL') + +# 3. Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias assessment and removal of biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and cohort info saving +note = ("INFO: Cell line microarray dataset; trait indicates esophageal cancer cell type inferred from 'cell type'. " + "Trait distribution appears imbalanced based on preview.") +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/code/TCGA.py b/output/preprocess/Esophageal_Cancer/code/TCGA.py new file mode 100644 index 0000000000000000000000000000000000000000..02987342ceb78696c15e6259023029771f63cdd9 --- /dev/null +++ b/output/preprocess/Esophageal_Cancer/code/TCGA.py @@ -0,0 +1,336 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Esophageal_Cancer" + +# Input paths +tcga_root_dir = "../DATA/TCGA" + +# Output paths +out_data_file = "./output/z3/preprocess/Esophageal_Cancer/TCGA.csv" +out_gene_data_file = "./output/z3/preprocess/Esophageal_Cancer/gene_data/TCGA.csv" +out_clinical_data_file = "./output/z3/preprocess/Esophageal_Cancer/clinical_data/TCGA.csv" +json_path = "./output/z3/preprocess/Esophageal_Cancer/cohort_info.json" + + +# Step 1: Initial Data Loading +import os +import pandas as pd + +# 1) Select the most relevant TCGA cohort directory for the current trait +subdirs = [d for d in os.listdir(tcga_root_dir) if os.path.isdir(os.path.join(tcga_root_dir, d))] +trait_terms = ["esophageal", "esophagus", "esca"] + +def score_dir(name: str) -> int: + n = name.lower() + score = 0 + if "esophageal" in n or "esophagus" in n: + score += 10 + if "esca" in n: + score += 5 + if "tcga" in n: + score += 1 + return score + +scored = sorted([(score_dir(d), d) for d in subdirs], reverse=True) +best_dir = scored[0][1] if scored and scored[0][0] > 0 else None + +if best_dir is None: + # No suitable directory found: record and stop early + _ = validate_and_save_cohort_info( + is_final=False, + cohort="TCGA", + info_path=json_path, + is_gene_available=False, + is_trait_available=False + ) +else: + cohort_dir = os.path.join(tcga_root_dir, best_dir) + + # 2) Identify clinical and genetic file paths + clinical_file_path, genetic_file_path = tcga_get_relevant_filepaths(cohort_dir) + + # 3) Load files + clinical_df = pd.read_csv(clinical_file_path, sep='\t', index_col=0, low_memory=False, compression='infer') + genetic_df = pd.read_csv(genetic_file_path, sep='\t', index_col=0, low_memory=False, compression='infer') + + # 4) Print clinical column names + print(list(clinical_df.columns)) + +# Step 2: Find Candidate Demographic Features +import os +import re +import pandas as pd + +# Helper functions to identify candidate columns +def _tokenize_col(name: str): + return [t for t in re.split(r'[^a-z0-9]+', name.lower()) if t] + +def _is_age_col(name: str) -> bool: + # Consider columns with explicit 'age' token, or specific birth-derived numeric proxies + nl = name.lower() + tokens = _tokenize_col(name) + if 'age' in tokens: + return True + birth_proxies = ['days_to_birth', 'date_of_birth', 'year_of_birth', 'birth_year', 'dob'] + return any(p in nl for p in birth_proxies) + +def _is_gender_col(name: str) -> bool: + tokens = _tokenize_col(name) + return ('gender' in tokens) or ('sex' in tokens) + +# Locate ESCA cohort directory +cohort_dir = None +if os.path.isdir(tcga_root_dir): + subdirs = [d for d in os.listdir(tcga_root_dir) + if os.path.isdir(os.path.join(tcga_root_dir, d))] + priority = [] + for d in subdirs: + dl = d.lower() + if dl == 'esca' or dl == 'tcga_esca': + priority.append(d) + if not priority: + priority = [d for d in subdirs if ('esca' in d.lower() or 'esophageal' in d.lower())] + if priority: + cohort_dir = os.path.join(tcga_root_dir, priority[0]) + +# Get clinical file path +clinical_df = None +if cohort_dir is not None: + try: + clinical_file_path, _ = tcga_get_relevant_filepaths(cohort_dir) + try: + clinical_df = pd.read_csv(clinical_file_path, sep='\t', header=0, index_col=0, dtype=str, low_memory=False) + except Exception: + clinical_df = pd.read_csv(clinical_file_path, sep=',', header=0, index_col=0, dtype=str, low_memory=False) + except Exception: + clinical_df = None + +# Derive candidate columns from available columns +candidate_age_cols = [] +candidate_gender_cols = [] +if clinical_df is not None: + cols = clinical_df.columns.tolist() + for c in cols: + if _is_age_col(c): + candidate_age_cols.append(c) + if _is_gender_col(c): + candidate_gender_cols.append(c) +else: + # Fallback to the provided list from previous step if file loading failed + provided_cols = ['CDE_ID_3226963', '_INTEGRATION', '_PATIENT', '_cohort', '_primary_disease', '_primary_site', 'additional_pharmaceutical_therapy', 'additional_radiation_therapy', 'additional_treatment_completion_success_outcome', 'age_at_initial_pathologic_diagnosis', 'age_began_smoking_in_years', 'alcohol_history_documented', 'amount_of_alcohol_consumption_per_day', 'antireflux_treatment_type', 'barretts_esophagus', 'bcr_followup_barcode', 'bcr_patient_barcode', 'bcr_sample_barcode', 'city_of_procurement', 'clinical_M', 'clinical_N', 'clinical_T', 'clinical_stage', 'columnar_metaplasia_present', 'columnar_mucosa_dysplasia', 'columnar_mucosa_goblet_cell_present', 'country_of_birth', 'country_of_procurement', 'days_to_birth', 'days_to_collection', 'days_to_death', 'days_to_initial_pathologic_diagnosis', 'days_to_last_followup', 'days_to_new_tumor_event_additional_surgery_procedure', 'days_to_new_tumor_event_after_initial_treatment', 'eastern_cancer_oncology_group', 'esophageal_tumor_cental_location', 'esophageal_tumor_involvement_site', 'form_completion_date', 'frequency_of_alcohol_consumption', 'gender', 'goblet_cells_present', 'h_pylori_infection', 'height', 'histological_type', 'history_of_esophageal_cancer', 'history_of_neoadjuvant_treatment', 'icd_10', 'icd_o_3_histology', 'icd_o_3_site', 'informed_consent_verified', 'init_pathology_dx_method_other', 'initial_diagnosis_by', 'initial_pathologic_diagnosis_method', 'initial_weight', 'is_ffpe', 'karnofsky_performance_score', 'lost_follow_up', 'lymph_node_examined_count', 'lymph_node_metastasis_radiographic_evidence', 'neoplasm_histologic_grade', 'new_neoplasm_event_occurrence_anatomic_site', 'new_neoplasm_event_type', 'new_neoplasm_occurrence_anatomic_site_text', 'new_tumor_event_additional_surgery_procedure', 'new_tumor_event_after_initial_treatment', 'number_of_lymphnodes_positive_by_he', 'number_of_lymphnodes_positive_by_ihc', 'number_of_relatives_diagnosed', 'number_pack_years_smoked', 'oct_embedded', 'other_dx', 'pathologic_M', 'pathologic_N', 'pathologic_T', 'pathologic_stage', 'pathology_report_file_name', 'patient_id', 'person_neoplasm_cancer_status', 'planned_surgery_status', 'postoperative_rx_tx', 'primary_lymph_node_presentation_assessment', 'primary_therapy_outcome_success', 'progression_determined_by', 'radiation_therapy', 'reflux_history', 'residual_tumor', 'sample_type', 'sample_type_id', 'state_province_of_procurement', 'stopped_smoking_year', 'system_version', 'tissue_prospective_collection_indicator', 'tissue_retrospective_collection_indicator', 'tissue_source_site', 'tobacco_smoking_history', 'treatment_prior_to_surgery', 'tumor_tissue_site', 'vial_number', 'vital_status', 'weight', 'year_of_initial_pathologic_diagnosis', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2_percentile', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2_PANCAN', '_GENOMIC_ID_TCGA_ESCA_mutation_bcm_gene', '_GENOMIC_ID_data/public/TCGA/ESCA/miRNA_HiSeq_gene', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeq_exon', '_GENOMIC_ID_TCGA_ESCA_PDMRNAseq', '_GENOMIC_ID_TCGA_ESCA_hMethyl450', '_GENOMIC_ID_TCGA_ESCA_RPPA', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeq', '_GENOMIC_ID_TCGA_ESCA_miRNA_HiSeq', '_GENOMIC_ID_TCGA_ESCA_mutation_ucsc_maf_gene', '_GENOMIC_ID_TCGA_ESCA_gistic2', '_GENOMIC_ID_TCGA_ESCA_gistic2thd', '_GENOMIC_ID_TCGA_ESCA_mutation_broad_gene', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2_exon', '_GENOMIC_ID_TCGA_ESCA_mutation_bcgsc_gene', '_GENOMIC_ID_TCGA_ESCA_PDMRNAseqCNV'] + for c in provided_cols: + if _is_age_col(c): + candidate_age_cols.append(c) + if _is_gender_col(c): + candidate_gender_cols.append(c) + +# Print candidate lists in the required format +print(f"candidate_age_cols = {candidate_age_cols}") +print(f"candidate_gender_cols = {candidate_gender_cols}") + +# Extract and preview candidate columns if clinical data is available +if clinical_df is not None: + if candidate_age_cols: + try: + age_preview = preview_df(clinical_df[[c for c in candidate_age_cols if c in clinical_df.columns]], n=5) + print(age_preview) + except Exception: + pass + if candidate_gender_cols: + try: + gender_preview = preview_df(clinical_df[[c for c in candidate_gender_cols if c in clinical_df.columns]], n=5) + print(gender_preview) + except Exception: + pass + +# Step 3: Select Demographic Features +import pandas as pd +import numpy as np + +# Default to None +age_col = None +gender_col = None + +def select_age_col(clinical_df: pd.DataFrame, candidates: list) -> str: + best_col = None + best_score = -1 + for col in candidates: + if col not in clinical_df.columns: + continue + s = clinical_df[col] + non_null_ratio = s.notna().mean() + if non_null_ratio < 0.3: # too sparse + continue + + # Try to interpret as numeric (preserve sign for 'days_to_birth') + s_num = pd.to_numeric(s, errors='coerce') + s_valid = s_num.dropna() + if len(s_valid) == 0: + continue + + # Proportion that looks like a direct age (0-120 years) + pct_age_range = ((s_valid >= 0) & (s_valid <= 120)).mean() + + # Proportion that looks like days to birth (large negative) + pct_days_to_birth = (s_valid <= -3650).mean() + + # Score prioritizes plausible age range and penalizes "days_to_birth"-like distributions + score = (pct_age_range - 0.3 * pct_days_to_birth) * non_null_ratio + + # Small heuristic boost if column name contains 'age' and not 'began_smoking' + name_lower = col.lower() + if 'age' in name_lower and 'began_smoking' not in name_lower: + score *= 1.1 + + if score > best_score: + best_score = score + best_col = col + return best_col + +def select_gender_col(clinical_df: pd.DataFrame, candidates: list) -> str: + best_col = None + best_score = -1 + valid_tokens = {'male', 'female', 'm', 'f'} + for col in candidates: + if col not in clinical_df.columns: + continue + s = clinical_df[col].astype(str).str.strip().str.lower() + non_null_ratio = (~s.isin(['', 'nan', 'none'])).mean() + if non_null_ratio < 0.3: + continue + s_valid = s[~s.isin(['', 'nan', 'none'])] + if len(s_valid) == 0: + continue + pct_valid_gender = s_valid.isin(valid_tokens).mean() + score = pct_valid_gender * non_null_ratio + if score > best_score: + best_score = score + best_col = col + return best_col + +try: + # Use clinical_df and candidate lists if available + if 'clinical_df' in globals(): + # Fallback if candidate lists are not defined + candidate_age_cols = candidate_age_cols if 'candidate_age_cols' in globals() else [] + candidate_gender_cols = candidate_gender_cols if 'candidate_gender_cols' in globals() else [] + + chosen_age = select_age_col(clinical_df, candidate_age_cols) if candidate_age_cols else None + chosen_gender = select_gender_col(clinical_df, candidate_gender_cols) if candidate_gender_cols else None + + age_col = chosen_age if chosen_age else None + gender_col = chosen_gender if chosen_gender else None + + # Print out selected columns and their info + print("Selected age_col:", age_col) + if age_col: + col_series = clinical_df[age_col] + print("age_col non-null ratio:", round(col_series.notna().mean(), 4)) + print("age_col first5:", col_series.head(5).tolist()) + + print("Selected gender_col:", gender_col) + if gender_col: + col_series = clinical_df[gender_col] + print("gender_col non-null ratio:", round(col_series.notna().mean(), 4)) + print("gender_col first5:", col_series.head(5).tolist()) + else: + # Fallback selection purely based on provided candidate names and typical TCGA patterns + # Given previews: choose age_at_initial_pathologic_diagnosis for age; gender for gender + age_col = 'age_at_initial_pathologic_diagnosis' if 'age_at_initial_pathologic_diagnosis' in (candidate_age_cols if 'candidate_age_cols' in globals() else []) else None + gender_col = 'gender' if 'gender' in (candidate_gender_cols if 'candidate_gender_cols' in globals() else []) else None + + print("Selected age_col:", age_col) + print("Selected gender_col:", gender_col) +except Exception as e: + # On any unexpected issue, fall back to known-good choices from the preview + age_col = 'age_at_initial_pathologic_diagnosis' + gender_col = 'gender' + print("Selected age_col:", age_col) + print("Selected gender_col:", gender_col) + print("Note: Fallback due to error:", str(e)) + +# Step 4: Feature Engineering and Validation +import os +import pandas as pd + +# 1) Extract and standardize clinical features (trait, Age, Gender) +# Fallbacks in case variables not defined in prior steps +try: + _ = age_col +except NameError: + age_col = None +try: + _ = gender_col +except NameError: + gender_col = None + +selected_clinical_df = tcga_select_clinical_features( + clinical_df=clinical_df, + trait=trait, + age_col=age_col, + gender_col=gender_col +) + +# Optionally save clinical data (useful for inspection) +os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) +selected_clinical_df.to_csv(out_clinical_data_file) + +# 2) Normalize gene symbols in genetic data (ensure genes are in index) +def _looks_like_tcga(series_like) -> float: + try: + s = pd.Index(series_like).astype(str) + except Exception: + s = pd.Index([str(x) for x in series_like]) + return s.str.upper().str.startswith("TCGA-").mean() + +# Ensure rows are genes, columns are samples +rows_tcga_frac = _looks_like_tcga(genetic_df.index) +cols_tcga_frac = _looks_like_tcga(genetic_df.columns) +gene_df = genetic_df.copy() + +if rows_tcga_frac > cols_tcga_frac: + # Rows look like samples -> transpose to genes x samples + gene_df = gene_df.T + +# Normalize gene symbols and drop unrecognized +gene_df_norm = normalize_gene_symbols_in_index(gene_df) + +# Save normalized gene expression +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +gene_df_norm.to_csv(out_gene_data_file) + +# 3) Link clinical and genetic data on sample IDs +# Clinical index: samples; gene_df_norm columns: samples; transpose gene_df_norm to samples x genes +gene_df_samples = gene_df_norm.T +linked_data = selected_clinical_df.join(gene_df_samples, how='inner') + +# 4) Handle missing values +linked_data = handle_missing_values(linked_data, trait_col=trait) + +# 5) Determine bias and remove biased demographic features +trait_biased, linked_data = judge_and_remove_biased_features(linked_data, trait=trait) + +# 6) Final validation and save cohort info +# Ensure pure Python booleans for JSON serialization +is_gene_available = bool(gene_df_norm.shape[0] > 0 and gene_df_norm.shape[1] > 0) +is_trait_available = bool((trait in selected_clinical_df.columns) and (selected_clinical_df[trait].notna().sum() > 0)) +trait_biased = bool(trait_biased) + +note = "INFO: Trait derived from TCGA sample barcode (01-09 tumor=1, 10-19 normal=0). Gene symbols normalized to HGNC using NCBI synonym mapping." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort="TCGA", + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=trait_biased, + df=linked_data, + note=note +) + +# 7) Save linked data only if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/cohort_info.json b/output/preprocess/Esophageal_Cancer/cohort_info.json index f729965c5382d9c4a83e20dba06fd27294bbed4c..a9337012623f435445ec0edb131b847073dde8c1 100644 --- a/output/preprocess/Esophageal_Cancer/cohort_info.json +++ b/output/preprocess/Esophageal_Cancer/cohort_info.json @@ -1,112 +1 @@ -{ - "GSE77790": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 32 - }, - "GSE75241": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 30 - }, - "GSE66258": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 108 - }, - "GSE55857": { - "is_usable": false, - "is_gene_available": false, - "is_trait_available": false, - "is_available": false, - "is_biased": null, - "has_age": null, - "has_gender": null, - "sample_size": null - }, - "GSE218109": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 36 - }, - "GSE156915": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 361 - }, - "GSE131027": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 92 - }, - "GSE107754": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": true, - "sample_size": 84 - }, - "GSE104958": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 46 - }, - "GSE100843": { - "is_usable": false, - "is_gene_available": false, - "is_trait_available": false, - "is_available": false, - "is_biased": null, - "has_age": null, - "has_gender": null, - "sample_size": null - }, - "TCGA": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 196 - } -} \ No newline at end of file +{"GSE77790": {"is_usable": false, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": true, "has_age": false, "has_gender": false, "sample_size": 32, "note": "INFO: Cell line microarray dataset; trait indicates esophageal cancer cell type inferred from 'cell type'. Trait distribution appears imbalanced based on preview."}, "GSE75241": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 30, "note": "INFO: Paired ESCC tumor vs adjacent mucosa; Age/Gender not provided; Genes normalized via NCBI synonyms."}, "GSE66258": {"is_usable": false, "is_gene_available": false, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE55857": {"is_usable": false, "is_gene_available": false, "is_trait_available": true, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE218109": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": "INFO: Trait (Esophageal_Cancer) is unavailable/constant in this cohort (all ESCC tumors; NS+ vs NS- design). Clinical extraction for trait was skipped."}, "GSE156915": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": "WARNING: Trait clinical data is unavailable for this cohort; skipping linking, missing-value handling, and bias assessment. Only normalized gene expression was saved."}, "GSE131027": {"is_usable": false, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": true, "has_age": false, "has_gender": false, "sample_size": 92, "note": "INFO: Probe-to-gene mapping via platform annotation; gene symbols normalized using NCBI synonyms."}, "GSE107754": {"is_usable": false, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": true, "has_age": false, "has_gender": true, "sample_size": 71, "note": "INFO: Trait inferred as esophageal cancer (1) vs. other tissues (0) from 'tissue' field within a heterogeneous metastatic cohort; age unavailable; gender present. Gene symbols normalized via NCBI synonyms."}, "GSE104958": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 46, "note": "INFO: Age and Gender not available; trait derived from tissue field."}, "GSE100843": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "TCGA": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": true, "has_gender": true, "sample_size": 196, "note": "INFO: Trait derived from TCGA sample barcode (01-09 tumor=1, 10-19 normal=0). Gene symbols normalized to HGNC using NCBI synonym mapping."}} \ No newline at end of file diff --git a/output/preprocess/Esophageal_Cancer/gene_data/GSE75241.csv b/output/preprocess/Esophageal_Cancer/gene_data/GSE75241.csv index cc5901fcf136b118ea8f8d78edefacf6dd33b7a2..c4f8558a15df525d1b1313cb3e46fe09cc2634f2 100644 --- a/output/preprocess/Esophageal_Cancer/gene_data/GSE75241.csv +++ b/output/preprocess/Esophageal_Cancer/gene_data/GSE75241.csv @@ -461,7 +461,7 @@ AHCY,5.11305,5.55395,5.7752,5.52295,5.672,5.3523,5.7326,5.22685,5.3963,5.5001,5. AHCYL1,5.7803,5.4641,5.4835,5.51,5.5091,5.62625,5.4519,5.6326,5.8471,5.6502,5.6218,5.6228,5.7352,5.7495,5.47605,5.6094,5.77815,5.8317,5.58645,5.5269,5.4081,5.7052,5.45775,5.4246,5.56175,5.47435,5.61815,5.65105,5.4739,5.6579 AHCYL2,4.834515,4.56766,4.98435,4.748085,4.920295,4.69793,4.81372,4.64787,4.95798,4.6921,4.799905,4.635465,4.71589,5.44615,4.72228,4.420855,4.89727,4.728305,4.920145,4.86875,4.629525,5.35515,4.762875,3.909205,4.83494,4.83391,5.1508,4.73828,4.751845,4.91733 AHDC1,3.3509333333333333,3.2579166666666666,3.4340333333333333,3.1352499999999996,3.352233333333333,3.036096666666667,3.3379999999999996,3.1534600000000004,3.3633666666666664,3.0688,3.2693266666666667,3.118736666666667,3.4543666666666666,3.2220133333333334,3.347933333333333,3.20064,3.5132333333333334,3.25544,3.286326666666667,3.0949733333333334,3.410966666666667,3.0397133333333333,3.2950733333333333,2.9617233333333335,3.4095666666666666,3.107666666666667,3.3535,3.304733333333333,3.2702333333333335,3.063696666666667 -AHI1,3.489535,3.83622,3.56085,3.340875,3.430825,3.82901,3.383395,3.542845,3.729475,3.89125,3.21757,3.58518,3.44321,3.745895,3.175235,3.95892,3.52074,3.523765,3.44234,3.51387,3.26185,3.602235,3.163505,3.240045,3.48989,3.864455,3.66389,4.171685,3.27594,3.84305 +AHI1,3.0446125,3.229635,3.132086,3.0412485,3.0088615,3.1162039999999998,3.1444384999999997,3.0579035,3.1334655,3.293788,3.083642,3.14917,3.1024000000000003,3.1925464999999997,2.9320125,3.291507,3.052683,3.1795195,3.069928,3.084971,3.228033,2.9965905,2.8156705,2.9638945000000003,3.146721,3.5031185000000002,3.1475920000000004,3.3712875,3.094125,3.254849 AHNAK,6.812474999999999,6.735266666666667,6.734958333333333,6.490225000000001,6.8867416666666665,6.0604,6.640733333333333,6.509075,6.607258333333333,5.565366666666667,6.772016666666666,6.253208333333333,6.656125,5.804129166666667,6.502583333333334,6.256408333333333,6.778091666666667,6.566583333333333,6.788600000000001,5.8367483333333325,6.573766666666667,5.931665000000001,6.772966666666667,6.164483333333333,6.444333333333333,6.360025,6.817475,6.216575000000001,6.636383333333333,6.30955 AHNAK2,3.8966999999999996,3.978566666666667,3.8694333333333333,3.7386,3.9383666666666666,3.4644,3.6924333333333332,3.6844,3.7202333333333333,3.0408666666666666,3.8016666666666663,3.4946333333333333,3.7804,3.3636666666666666,3.5906333333333333,3.6087333333333333,3.8716666666666666,3.945733333333333,3.7918000000000003,3.289073333333333,3.6444666666666667,3.32504,3.8195666666666668,3.5352333333333337,3.6872333333333334,3.8979,3.8527,3.6704000000000003,3.713433333333333,3.6245999999999996 AHR,5.07085,5.9695,4.895925,5.2576,4.994915,5.8921,4.79774,5.1719,5.23745,5.21055,4.962915,5.02945,4.929345,5.4035,4.74796,5.8616,5.0655,5.3356,4.939455,5.83575,4.77985,5.8285,4.60302,5.1215,4.952175,5.82015,5.21785,5.7226,4.48685,5.29475 @@ -1414,7 +1414,7 @@ BBS2,2.2709275,2.49221,2.2977475,2.070675,2.275315,2.2863325,2.205035,2.11802,2. BBS4,3.32717,3.595865,3.51107,3.55417,3.21578,3.585475,3.277595,3.65976,3.826785,3.57884,3.387885,3.5749,3.30977,3.960085,3.33246,4.173595,3.76894,3.77128,3.39844,4.182245,3.263815,3.69268,3.45609,3.85815,3.293395,3.624645,3.797855,3.52018,3.23481,3.49462 BBS5,4.984033999999999,4.949167428571428,5.073238714285714,5.008300428571429,4.956804571428572,5.019393,4.791174428571429,4.739202857142857,5.3838919999999995,5.113818,4.903515571428571,5.0120641428571435,4.856042,5.245343714285714,4.921110285714286,5.024544000000001,5.189010857142857,5.170905714285714,5.069401571428571,5.487235714285714,4.752165142857143,5.052059,4.915073714285715,5.087361714285715,5.079292571428572,4.643571142857143,5.291227428571428,5.413462714285714,4.744874428571428,5.129437 BBS7,3.50519,3.868515,3.50823,3.696555,3.374355,3.691015,3.32986,3.15787,3.827245,3.56065,3.2406,3.37779,3.562255,3.87161,3.199585,3.97327,3.630395,3.560795,3.330825,3.87197,3.233955,3.557765,3.21287,3.54692,3.475565,3.84934,3.66938,3.778075,3.10369,3.718665 -BBS9,16.792078714285715,17.76517055952381,16.98169588095238,17.245168678571428,16.94271769047619,17.83174645238095,16.951241928571427,17.490183559523807,17.447577190476192,18.165604369047617,16.94419792857143,17.10207557142857,16.931825714285715,17.34837938095238,16.85932641666667,17.54836542857143,16.988097595238095,17.65260682142857,17.06096419047619,17.827139773809524,16.724563226190476,17.921165714285713,16.90923694047619,17.313414273809524,16.773351845238096,17.597809023809525,17.423263357142858,18.118864523809524,16.672707,17.63016629761905 +BBS9,17.544880714285714,18.51793555952381,17.75282488095238,18.021905678571425,17.67402869047619,18.510610452380952,17.795486928571428,18.28704655952381,18.17051719047619,18.947874369047618,17.768321928571428,17.91387757142857,17.747563714285715,18.088645380952382,17.613282416666667,18.275403428571426,17.755614595238093,18.480790821428574,17.83373619047619,18.530436773809523,17.563243226190476,18.554026714285712,17.63495794047619,18.086139273809522,17.575120845238096,18.510641023809523,18.155350357142854,18.860063523809526,17.51114,18.416048297619046 BBX,1.116385,1.24652375,1.1067475,1.199545,1.0762725,1.283,1.05016875,1.04952125,1.19734625,1.24470875,1.095505,1.1514075,1.1166875,1.16623125,1.063555,1.18081625,1.15012875,1.18698,1.113605,1.2383475,1.02787875,1.17839875,1.0328975,1.254675,1.114255,1.2381925,1.19389,1.3546,1.03745375,1.15190625 BCAM,4.2788,4.689985,4.2484,4.351565,4.13221,4.944435,4.17768,4.477085,4.22285,4.336655,4.25352,4.484815,4.36575,5.19935,4.437825,4.880675,4.443545,4.518035,4.30309,5.6972,4.32711,4.709505,4.34973,4.97559,4.23464,5.0092,4.251115,4.99019,4.322355,4.756835 BCAN,0.8579411111111112,0.8518444444444444,0.854991111111111,0.87356,0.8787977777777778,0.8390866666666666,0.8694144444444444,0.883,0.8387344444444444,0.8401377777777778,0.8695422222222222,0.8533133333333334,0.8637844444444445,0.8492455555555556,0.8708911111111112,0.8294477777777778,0.8399222222222222,0.8469655555555556,0.8533822222222223,0.8406211111111112,0.8740955555555555,0.8632611111111111,0.8659466666666666,0.8622011111111111,0.8492177777777778,0.8276044444444444,0.8521344444444444,0.81511,0.8756133333333334,0.8564422222222222 @@ -1625,7 +1625,7 @@ BRWD1-AS2,2.629825,2.60693,3.38893,2.953515,2.81253,3.00479,3.15815,3.101405,2.8 BRWD3,3.1284500000000004,2.8499533333333336,3.09305,2.70602,3.069706666666667,3.0040999999999998,2.8734033333333335,2.7077233333333335,3.1881233333333334,2.91365,3.0444766666666667,2.9611466666666666,3.1290533333333332,2.9044166666666666,2.91637,2.7490433333333333,3.215116666666667,2.9766399999999997,2.96939,2.67559,2.94994,1.9592566666666666,3.1125966666666667,2.77167,3.0121866666666666,2.9153300000000004,3.15126,3.0911000000000004,2.9665733333333333,2.9903166666666667 BSCL2,3.9172200000000004,3.7453779999999997,4.036259333333334,3.982861333333333,3.919623333333333,3.909112,4.032792,3.98991,3.9299773333333334,4.007014,3.9688713333333334,3.763038,3.9251813333333336,3.9225906666666672,3.932444,3.977926666666667,4.010820666666667,3.8172613333333336,3.8275346666666668,3.9044706666666666,3.9113246666666672,4.11712,3.9288213333333335,3.4755986666666665,3.7162919999999997,3.4380006666666665,3.8451113333333335,3.6916219999999997,4.012476,3.9043593333333333 BSDC1,2.96415,2.945456666666667,3.0747533333333332,3.026313333333333,3.0412966666666663,3.02122,3.01676,2.990873333333333,3.0748433333333334,3.0321266666666666,2.9581666666666666,2.8737366666666664,3.08817,3.1934466666666665,2.96754,3.074666666666667,3.08388,3.1108100000000003,2.9865399999999998,3.00255,2.9730399999999997,3.0751633333333337,2.9412933333333338,2.9326133333333337,2.9419299999999997,3.012003333333333,3.05801,3.106203333333333,2.92911,3.0488 -BSG,4.714964999999999,4.741125,4.726476666666667,4.865263333333333,4.639186666666666,4.957018333333333,4.749925,4.879748333333334,4.767448333333333,4.782288333333334,4.650650000000001,4.7376016666666665,4.832425000000001,4.99549,4.9541450000000005,4.844026666666666,4.786051666666667,4.8873066666666665,4.80642,4.815848333333333,4.737421666666666,4.934833333333334,4.808933333333334,4.970218333333333,4.736478333333333,4.909511666666667,4.858635,4.754658333333333,4.912136666666667,4.745346666666666 +BSG,7.432639166666666,7.557567083333334,7.4658958333333345,7.579637916666666,7.385345833333333,8.004683333333332,7.596375416666667,7.732619166666666,7.4963879166666665,7.628069166666666,7.4366325,7.476268750000001,7.6177858333333335,7.889622083333334,7.410945,7.63733125,7.533872499999999,7.697964166666667,7.677428333333333,7.914161666666667,7.262655833333333,8.019309166666666,7.491910833333334,7.8370854166666675,7.573845416666667,7.654476666666666,7.793173333333334,7.626831666666667,7.52603375,7.518687916666666 BSN,3.653715,3.598245,3.65109,3.68642,3.721585,3.510115,3.78692,3.71179,3.57014,3.633765,3.72618,3.55043,3.715945,3.625585,3.691475,3.516675,3.586485,3.6195,3.610225,3.54045,3.675675,3.679385,3.632055,3.596155,3.757765,3.582405,3.539515,3.51473,3.693535,3.57368 BSND,3.479645,3.219265,3.296145,3.487925,3.4001,3.359655,3.38245,3.36531,3.36321,3.34917,3.506745,3.3181,3.416765,3.36694,3.280885,3.239815,3.19796,3.494055,3.248375,3.229385,3.330095,3.35064,3.344825,3.33927,3.49841,3.307295,3.281425,3.02741,3.29774,3.269445 BSPRY,2.43489,1.87736,2.4616325,2.23845,2.44376,2.15274,2.503125,2.368235,2.44908,2.009945,2.4974825,2.3087425,2.57415,2.129455,2.4353075,2.2209875,2.39957,2.2205275,2.4324525,1.930535,2.4735575,2.21442,2.37176,1.9095325,2.389595,2.20436,2.39842,2.146575,2.4406625,2.3496425 @@ -3594,6 +3594,7 @@ CYBC1,4.68584,4.837275,4.493225,4.74002,4.355435,4.744895,4.51927,4.78106,4.6285 CYBRD1,4.897655,5.51395,4.45326,3.941125,4.57498,4.98926,4.692635,5.04635,5.0692,4.83144,4.499475,4.78217,4.35944,5.27175,4.725235,5.321,5.02195,5.56595,5.23945,5.59675,4.891965,5.2684,4.754805,5.39505,4.633835,5.20365,5.03285,5.7331,4.618985,5.33055 CYC1,5.34005,5.65415,5.26015,5.36045,5.19715,5.4586,5.3079,5.4236,5.40105,5.5241,5.34485,5.27965,5.31105,5.5457,5.3599,5.52115,5.3984,5.43315,5.433,5.61565,5.34355,5.81565,5.2017,5.6586,5.31885,5.5002,5.54435,5.2774,5.30865,5.34725 CYCS,4.01404,4.03255,3.912695,4.073705,3.907845,3.964345,3.75909,4.04073,4.057485,4.195315,3.87324,3.944935,4.003415,4.020345,4.16122,4.418765,3.851355,3.95142,4.08878,4.336555,4.067065,4.199775,3.485285,4.1855,3.860285,4.02134,4.049285,4.092315,3.97505,4.141155 +CYCSP52,3.148945,2.85705,2.707335,3.075595,3.05974,2.92649,2.30245,3.14858,3.03571,3.078325,3.043825,2.983845,2.958015,2.880095,2.55918,3.129075,3.06067,3.279345,2.95068,3.138465,2.8442,2.677395,2.89648,2.93885,2.645745,3.06603,2.72648,3.20864,2.86307,2.891905 CYFIP1,3.4356333333333335,3.5414333333333334,3.635666666666667,3.4992,3.4629666666666665,3.284413333333333,3.4364000000000003,3.3299533333333335,3.4506666666666668,3.2689866666666667,3.462666666666667,3.3548333333333336,3.4319666666666664,3.3187166666666665,3.287186666666667,3.28197,3.5436333333333336,3.5038666666666667,3.3560666666666665,3.3502333333333336,3.311436666666667,3.1293133333333336,3.3491,3.3843,3.3541666666666665,3.3229366666666666,3.4373666666666662,3.3108833333333334,3.4244,3.378766666666667 CYFIP2,2.8339266666666667,2.7094,2.65188,2.7581233333333333,2.61891,2.91708,2.65203,2.8133666666666666,2.9671299999999996,2.865083333333333,2.7042266666666666,2.8234766666666666,2.7633799999999997,3.1820500000000003,2.6724266666666665,2.6044033333333334,2.8333399999999997,2.90817,2.6280566666666667,2.8404433333333334,2.6325066666666666,2.53592,2.5602266666666664,2.54352,2.6939266666666666,2.8914500000000003,2.863566666666667,3.1500033333333337,2.60264,2.9961300000000004 CYGB,2.0191475,2.114405,2.0006025,2.055275,1.96757,2.3244925,1.9925825,2.1050125,1.9658875,2.1190575,1.9923225,2.179615,2.033375,2.235445,1.9954275,2.235705,2.0409775,2.283165,2.01737,2.31124,1.9768525,2.1454425,2.034625,2.2294375,2.062185,2.3913975,1.907445,2.2325025,2.1266625,2.192175 @@ -4137,7 +4138,7 @@ DND1,1.63889,1.5280316666666665,1.6293383333333333,1.5301466666666668,1.63318333 DNER,2.10804,2.411,2.0889666666666664,2.6368966666666664,2.15504,2.0738266666666667,2.1473833333333334,2.0815433333333333,2.0647733333333336,2.1259566666666667,2.0978333333333334,2.05769,2.0921,2.1280033333333335,2.2512466666666664,2.0978666666666665,2.0585566666666666,2.104976666666667,2.1917066666666667,2.1304333333333334,2.128366666666667,2.1435866666666668,2.1237533333333336,2.268686666666667,2.18123,2.44495,2.1095466666666667,2.046933333333333,2.17389,2.3726233333333333 DNHD1,5.570978333333334,5.535575,5.553979999999999,5.575073333333333,5.492495,5.620923333333334,5.441355,5.6564483333333335,5.514191666666667,5.5251850000000005,5.536851666666667,5.497156666666666,5.449526666666666,5.531408333333333,5.500123333333333,5.611378333333333,5.530173333333333,5.500476666666667,5.525116666666667,5.486513333333333,5.464585,5.424015,5.5963683333333325,5.571213333333333,5.580348333333333,5.4513766666666665,5.541948333333333,5.744845,5.397065,5.48984 DNLZ,1.6621479999999997,1.632732,1.6876460000000002,1.6960760000000001,1.65018,1.661028,1.701076,1.7024260000000002,1.6589099999999999,1.6129419999999999,1.659046,1.684206,1.661456,1.6542439999999998,1.68983,1.6532240000000002,1.6402899999999998,1.623836,1.6439039999999998,1.6262260000000002,1.6570799999999999,1.6404900000000002,1.6180879999999997,1.695138,1.626624,1.6095479999999998,1.681608,1.6110900000000001,1.681646,1.656164 -DNM1,4.172434666666667,4.123441333333333,4.080342333333333,3.974428333333333,3.9980523333333338,3.916848,3.8313673333333336,3.8744300000000003,4.191863666666666,4.1875746666666664,4.047683666666666,3.9064216666666667,4.080940666666667,4.250824333333333,4.095099666666666,4.4581436666666665,3.9859706666666663,3.700438666666667,3.7704766666666663,4.5872,4.1309819999999995,4.372436666666667,4.131192666666667,4.217841666666667,4.162935,4.057150666666667,4.167028,4.341360666666667,3.9490510000000003,4.105449 +DNM1,5.861057166666667,5.903271333333333,5.855562333333333,5.7141658333333325,5.717154833333334,5.5957555,5.496977333333334,5.61415,5.873973666666666,5.917597166666667,5.771636166666666,5.622061666666667,5.797648166666667,5.9161918333333325,5.851554666666667,6.256483666666667,5.635920666666666,5.411623666666666,5.613731666666666,6.3452649999999995,5.9832695,6.087736666666667,5.913207666666667,6.112576666666667,5.8813525,5.773553166666667,5.883448,6.0216631666666665,5.666596,5.774119 DNM1L,0.6679215384615385,0.7541076923076923,0.6320538461538461,0.7465723076923076,0.6787500000000001,0.6979330769230769,0.6637523076923078,0.7001953846153846,0.6794507692307692,0.7263130769230769,0.6718969230769231,0.70969,0.6338576923076923,0.7211469230769231,0.6804146153846153,0.6912492307692308,0.6760346153846153,0.6889069230769231,0.6829430769230769,0.7020846153846154,0.61044,0.6867346153846154,0.6704492307692308,0.766573076923077,0.6579569230769231,0.7489584615384615,0.678703076923077,0.7329353846153845,0.6581715384615384,0.6759338461538462 DNM1P41,3.389666666666667,3.146183333333333,3.3215833333333333,3.177633333333333,3.2541733333333336,3.12899,3.0933433333333333,3.0225500000000003,3.4400666666666666,3.426266666666667,3.2731866666666662,3.1017266666666665,3.278586666666667,3.3456333333333332,3.3095966666666663,3.523066666666667,3.2143466666666662,2.8676066666666666,3.0103266666666664,3.5757,3.3629,3.424466666666667,3.3683666666666667,3.422166666666667,3.3722,3.1752266666666666,3.3897999999999997,3.3790666666666667,3.2044200000000003,3.3294099999999998 DNM1P46,4.21738,4.116615,3.732755,4.09715,4.17362,4.08201,4.27354,4.308365,3.78931,4.063585,4.338365,4.419035,4.205545,4.143045,4.195095,3.997925,4.11724,4.15216,4.168615,4.02523,4.03649,4.02994,4.13443,4.0906,3.70615,3.767535,4.055475,3.841615,4.39043,4.103045 @@ -4762,7 +4763,8 @@ ERP44,5.71175,5.53765,5.55505,5.4819,5.53865,5.75065,5.37,5.5197,5.7226,5.49335, ERRFI1,3.21997,3.9414,3.230613333333333,3.6514666666666664,3.2191466666666666,3.4639333333333333,3.308483333333333,3.1311,3.2834800000000004,3.5465999999999998,3.151813333333333,3.28258,3.4747,3.3795333333333333,2.9230033333333334,3.541533333333333,3.309673333333333,3.4534000000000002,3.0025633333333333,3.1454166666666663,2.95658,3.294373333333333,3.0256900000000004,3.751633333333333,3.2678766666666665,3.5280666666666662,2.9771033333333334,3.3281166666666664,2.941876666666667,3.4164333333333334 ERV3-1,1.834745,1.189485,2.2313625,1.592175,2.3740575,2.0343825,2.1710075,1.8701775,2.30142,1.98083,2.02568,1.959055,2.2669475,1.7238175,1.5167,1.590945,2.3758,1.94907,1.47412,1.8637675,1.79506,1.621145,1.93144,1.2623,2.0122775,1.743645,2.0350425,2.0951525,1.72543,2.0296825 ERVFRD-1,2.24756,2.2367666666666666,2.2195833333333335,2.2368799999999998,2.26351,2.1113066666666667,2.2502299999999997,2.210923333333333,2.20668,2.2583333333333333,2.2772966666666665,2.2175266666666666,2.2409399999999997,2.1907466666666666,2.313353333333333,2.1815166666666665,2.192126666666667,2.1716866666666665,2.2811566666666665,2.13813,2.326566666666667,2.3955766666666665,2.2228233333333334,2.2726866666666665,2.25315,2.1400166666666665,2.2119866666666668,2.18044,2.414286666666667,2.2832233333333334 -ERVK-19,29.77545878205128,28.570624564102566,29.989854794871793,29.439200871794874,29.61401817948718,29.187183038461537,29.91226982051282,29.414046833333334,29.890135333333333,29.093314743589744,29.59013033333333,28.908401871794872,29.724688756410256,28.844655410256408,29.862971038461538,28.895862525641025,29.643025512820515,29.001926666666666,29.54569473076923,28.57976958974359,29.939995269230767,28.826176115384616,29.82346235897436,29.153023948717948,29.615591782051283,28.60794423076923,28.938867000000002,28.42647314102564,29.902158641025643,29.490483141025642 +ERVK-19,15.16721348193473,14.545330463869465,15.268846033799532,14.99033270862471,15.09722818065268,14.85666561013986,15.2603640011655,14.978768416666666,15.202911757575757,14.8142000990676,15.08641062121212,14.729088663170163,15.138608469114219,14.691103614219113,15.207032337412587,14.71784808100233,15.096986847319348,14.758084696969696,15.028029183566433,14.556600703962705,15.247940816433566,14.672685330419581,15.196711634032635,14.853242883449884,15.086429072843822,14.58916166083916,14.7271035,14.492618388694638,15.238710229603731,15.010850206876457 +ERVK3-2,0.5589681818181819,0.5200363636363636,0.5478372727272727,0.5414645454545455,0.5804381818181819,0.5261481818181818,0.6084581818181818,0.54349,0.5156881818181819,0.5350854545454545,0.5826909090909091,0.5497754545454545,0.5525281818181819,0.5375518181818182,0.5510936363636364,0.5398336363636363,0.5509481818181818,0.5142427272727272,0.5103636363636364,0.5334318181818182,0.5558863636363637,0.5191945454545455,0.5699609090909091,0.5534618181818182,0.5572663636363636,0.5703790909090909,0.51534,0.5587636363636364,0.5752618181818182,0.5312172727272727 ERVV-1,1.4874975,1.38932,1.504555,1.40679,1.4435375,1.339385,1.4647875,1.41628,1.4109075,1.438055,1.4653025,1.5287675,1.49097,1.4754775,1.54617,1.426835,1.4562425,1.4993325,1.478935,1.4669175,1.532845,1.3857775,1.44605,1.4765725,1.490165,1.5586825,1.4300125,1.4774375,1.58887,1.45721 ERVV-2,1.4874975,1.38932,1.504555,1.40679,1.4435375,1.339385,1.4647875,1.41628,1.4109075,1.438055,1.4653025,1.5287675,1.49097,1.4754775,1.54617,1.426835,1.4562425,1.4993325,1.478935,1.4669175,1.532845,1.3857775,1.44605,1.4765725,1.490165,1.5586825,1.4300125,1.4774375,1.58887,1.45721 ERVW-1,2.227463333333333,2.300336666666667,2.4706333333333332,2.4082433333333335,2.23655,2.3384733333333334,2.5807466666666667,2.5172866666666667,2.1962766666666664,2.3356566666666665,2.1763,2.258836666666667,2.29454,2.1774033333333334,2.3862900000000002,2.2960133333333332,2.236083333333333,2.2945766666666665,2.4003033333333335,2.1838966666666666,2.4738233333333333,2.31894,2.449456666666667,2.56629,2.34659,2.0910233333333332,2.36776,2.01064,2.158376666666667,2.2983033333333336 @@ -6461,7 +6463,7 @@ HAPLN1,1.5484766666666667,2.0770766666666667,1.6101999999999999,1.67391666666666 HAPLN2,3.984675,3.902995,3.95642,3.969685,4.06917,3.835045,3.93578,4.121455,3.847995,3.897565,3.96294,3.913235,3.97794,3.842625,4.013205,3.871235,3.909585,3.86149,3.94661,3.901685,3.8821,3.89445,4.042825,3.98535,4.05901,3.646235,3.83155,3.735965,3.988395,3.882 HAPLN3,3.967675,4.607485,4.01918,4.21342,3.729535,4.58968,3.91905,4.409685,4.315145,4.611685,3.824325,4.34593,4.003005,4.32873,4.162395,4.439265,4.07326,4.57758,3.990445,4.291825,3.922845,4.34859,3.9206,4.48322,3.8291,4.486125,3.972535,4.39096,3.92483,4.346045 HAPLN4,3.63379,3.567715,3.66801,3.681345,3.516105,3.564175,3.72192,3.82176,3.509235,3.555525,3.71153,3.827665,3.66598,3.74619,3.81266,3.52459,3.61496,3.72077,3.64732,3.60376,3.840865,3.48749,3.65513,3.791755,3.61243,3.541205,3.654035,3.5229,3.833305,3.740495 -HAPSTR1,5.31835,5.1454,5.33895,5.18065,5.4319,5.21295,5.2237,5.05665,5.2889,5.06755,5.32425,5.1458,5.3081,5.04065,5.24475,5.45235,5.39315,5.0271,5.16335,5.2759,5.19225,5.1845,5.3576,5.31425,5.203,5.44025,5.19695,4.89534,5.33115,5.2751 +HAPSTR1,3.703878333333333,3.6241950000000003,3.7939799999999995,3.6317,3.773105,3.574021666666667,3.6352616666666666,3.6136383333333333,3.715186666666667,3.5526383333333333,3.7311283333333334,3.617375,3.6971799999999995,3.4964233333333334,3.6144966666666667,3.7897616666666667,3.8280683333333334,3.510063333333333,3.542381666666667,3.6030366666666667,3.6787633333333334,3.6063366666666665,3.6825166666666664,3.674458333333334,3.6370233333333335,3.69413,3.6325900000000004,3.4622416666666664,3.73191,3.62437 HARBI1,3.016955,2.85915,2.94949,2.958665,2.98286,2.89801,2.737645,2.906695,3.140055,3.011655,2.88258,3.05399,3.02705,3.10198,2.88814,3.611945,3.071305,2.922255,2.72926,2.951775,2.823615,3.085875,2.943755,2.98849,2.87564,2.935325,2.997765,2.95209,2.91595,3.04033 HARS1,6.67939,6.137496666666666,6.675038333333333,6.716796666666667,6.6871833333333335,6.549863333333333,6.659208333333333,6.521541666666667,6.779381666666667,6.7517933333333335,6.599295000000001,6.56529,7.015408333333333,6.843859999999999,6.479655,6.492715,6.7732616666666665,6.621121666666666,6.517195,6.421331666666666,6.470631666666667,6.556625,6.448195,6.601371666666667,6.686495000000001,6.585628333333333,6.540291666666667,6.740715000000001,6.314563333333334,6.627495 HARS2,0.9687255555555555,0.922478888888889,0.9265988888888889,0.9317722222222221,0.9426788888888888,0.931861111111111,0.8952933333333333,0.9156355555555555,0.9880222222222224,0.9667944444444445,0.9201377777777778,0.9221833333333334,0.9766455555555554,0.9635666666666667,0.91658,0.9944999999999999,0.9787522222222224,0.9261111111111112,0.9434333333333333,0.9497444444444445,0.9183455555555555,0.975098888888889,0.9139166666666667,0.971588888888889,0.933008888888889,0.9581066666666668,0.9730455555555556,0.9984422222222222,0.8996,0.9325333333333332 @@ -7098,7 +7100,7 @@ IGKV2D-23,9.109843964285714,9.210389625,9.087270196428571,8.365920642857143,9.24 IGKV2D-24,14.722038273809524,15.315149196428571,14.613988958333334,15.163242738095239,13.744427142857143,15.486634464285714,14.002069851190477,15.201741220238095,15.151141398809523,15.442024434523809,13.993539047619048,14.777754940476191,14.419504732142858,15.755719226190477,14.357854970238096,15.404221875000001,14.952970059523809,15.498324821428572,14.38007017857143,15.91608255952381,13.915143392857143,15.98186357142857,14.268703065476192,13.36704,13.646610922619047,15.71681380952381,13.896736904761905,15.071466845238096,14.090083482142857,15.089193779761905 IGKV2D-26,18.01595277930403,18.904609228479853,18.052527928113552,17.857075476190477,18.22978262820513,18.99035798992674,17.990785391483517,18.436011879578754,18.685276206501833,17.53089480540293,17.9893139514652,18.418988424908424,18.124419608516483,18.609788887362637,18.184111852106227,19.12265982371795,18.359868598901098,18.291439935897436,18.589773965201466,18.522849372710624,18.09483026098901,19.179408456959706,18.23308294642857,18.56471333791209,17.972331169871794,18.85368065018315,18.9073623489011,19.120090064102563,18.278584553571427,18.677880107600732 IGKV2D-28,56.423606657243084,57.01123372244259,56.5921096285316,56.61477414593413,55.81336293772894,57.88267270228138,57.067527104273175,57.669530038743936,56.964288053151094,56.363744591806885,56.03402073119528,56.42538545533878,57.507733422570894,56.78877527618786,56.66039116713679,57.79297207803634,57.335481568216096,57.76283981179931,55.86875727215758,55.634223060704,56.4446580613243,57.61757529820832,56.457490609222475,56.062184280064706,55.864117279805164,58.13738415247498,56.70039487313504,56.36126718741553,56.46791367729819,57.041856485168424 -IGKV2D-30,116.50930268262049,118.13621947395497,116.1020132964609,115.88461415670115,114.99839893635531,117.55047064827983,114.21793705532212,115.44669136308626,117.71961424830317,118.00060133774151,115.54797644335811,115.33690163743447,115.24503031813366,118.4005884442559,115.01270112932737,118.90844701698629,117.49012047307512,119.98989331822344,115.81800060365941,117.51327990183509,114.10565298911872,119.02337602664656,115.26204628515765,115.22105012370717,114.7874747649034,118.25548399839295,118.28556210885765,120.35905465381025,115.53495548600337,117.66399088580945 +IGKV2D-30,117.66381268262049,119.33714947395497,117.21099996312756,117.12753415670115,116.20673893635531,118.62258731494649,115.45514038865547,116.66595469641959,118.71352091496983,119.03719800440817,116.99243977669144,116.40947163743446,116.53062031813366,119.44368177758925,116.19804112932736,120.01796368365295,118.52832047307513,121.14043331822344,116.91275727032608,118.61948323516843,115.30688298911872,120.38627269331322,116.40933628515765,116.50271345704051,116.0187747649034,119.37755066505962,119.46921877552431,121.6570413204769,116.71449215267005,118.86742088580945 IGKV2D-38,1.3340249999999998,1.3701283333333334,1.3747966666666667,1.3875466666666665,1.4525249999999998,1.3374366666666668,1.4176283333333333,1.4103416666666666,1.3510866666666665,1.36588,1.4105433333333333,1.3895233333333332,1.3721683333333334,1.3574233333333332,1.3640316666666665,1.3732616666666668,1.4086716666666668,1.40113,1.3922566666666667,1.3458433333333335,1.40831,1.3866100000000001,1.3713616666666668,1.373195,1.3830433333333334,1.4012916666666666,1.3499333333333334,1.32533,1.4064699999999999,1.3569866666666668 IGKV2D-40,3.3846666666666665,3.472633333333333,3.365766666666667,3.3877333333333333,3.3425,3.328583333333333,3.4003333333333337,3.4069333333333334,3.320653333333333,3.3521,3.3856,3.3836666666666666,3.3291,3.3539999999999996,3.4418666666666664,3.3982666666666668,3.2950233333333334,3.4111,3.429866666666667,3.4073666666666664,3.4923,3.4012333333333333,3.391966666666667,3.4448333333333334,3.385066666666667,3.3283233333333335,3.3679666666666663,3.3711333333333333,3.401566666666667,3.4156666666666666 IGKV3-31,3.338325,3.085225,3.395575,3.347675,3.39685,3.184375,3.374525,3.281325,3.36625,3.169,3.370725,3.2428,3.446775,3.164525,3.33835,3.0891,3.41565,3.2103,3.3358,2.8796,3.369625,3.17185,3.3312,3.05995,3.373875,3.234675,3.3312,3.029275,3.3809,3.387525 @@ -7231,7 +7233,7 @@ IL36B,3.348505,2.67184,3.53748,3.381775,3.58226,2.576175,3.533965,3.17809,3.9854 IL36G,5.1504,6.0705,4.108475,6.49085,3.90576,5.158,4.014105,5.20165,4.63144,4.62208,3.67051,4.49816,5.0613,5.95995,3.645265,6.11115,3.961415,5.395,4.22429,4.754825,3.175765,4.64737,3.755655,3.524995,3.85884,6.13185,3.318245,5.0641,3.97124,5.61955 IL36RN,5.22165,3.88119,5.07445,5.3154,4.978885,4.16197,4.718075,4.778065,5.0368,3.749765,4.35618,4.041775,4.94825,3.778015,4.456115,5.1267,5.2698,4.931035,4.58029,3.89843,4.74447,3.63124,4.396555,3.55998,4.98824,5.075,3.924585,3.254545,4.23486,4.900905 IL37,2.867265,2.92217,2.818085,2.883955,2.849185,2.82075,2.851885,2.83184,2.74706,2.86168,2.857865,3.004525,2.79051,2.821445,3.083915,2.80623,2.7031,2.93893,2.89583,2.80542,2.940765,2.770855,2.971135,2.93769,3.06386,2.856535,2.79099,2.76016,2.85844,3.194215 -IL4,2.86335,2.777375,2.77486,2.73145,2.857695,2.761565,2.86721,2.7689,2.6382,2.88241,2.69148,2.744825,2.690135,2.71184,2.85891,2.694395,2.88331,2.82586,2.84564,2.643825,2.88504,2.76286,2.73672,2.66846,2.79612,2.775485,2.833575,2.76883,2.89041,2.71439 +IL4,1.9154866666666668,2.0055075,2.0228333333333333,1.9524,1.9222958333333333,1.9348958333333335,1.922425,2.0422883333333335,2.08885,2.027356666666667,1.9235116666666667,1.9930308333333335,2.0128441666666665,1.90242,1.9350266666666665,1.9170725000000002,2.098071666666667,1.9456600000000002,2.012295,1.9603058333333334,1.99082,1.9060783333333333,1.83054,1.8963116666666666,1.9706200000000003,2.3339058333333336,1.8458275000000002,2.0449766666666664,2.043985,1.89465 IL4I1,1.2112414285714286,1.2768057142857143,1.21153,1.276882857142857,1.164794285714286,1.3199514285714287,1.1567642857142857,1.2412114285714286,1.2236157142857143,1.3337357142857142,1.1935185714285714,1.267737142857143,1.1821985714285714,1.2790942857142855,1.1672228571428571,1.2913142857142856,1.2230785714285715,1.2866771428571429,1.2060057142857143,1.3140657142857144,1.1986085714285715,1.2729300000000001,1.2154214285714284,1.2953314285714286,1.2049414285714286,1.2987471428571429,1.22623,1.3165342857142857,1.167007142857143,1.2313100000000001 IL4R,5.1853,4.783665,5.02745,5.65665,4.8593,5.3474,4.79963,5.15155,5.323,4.96761,4.922295,5.2822,5.16285,5.084,4.917595,5.32945,5.32445,5.18445,5.053,4.594265,4.793165,5.3861,5.01045,5.25135,4.991415,5.7015,4.95942,4.72733,4.819825,5.1973 IL5,1.949425,1.988185,1.920625,2.069825,2.01393,1.94271,2.154285,1.945005,2.08751,1.9607,2.15071,1.92599,2.020225,1.929365,2.326275,1.90434,1.882785,1.996155,2.06041,2.070255,1.9398,1.921815,2.045285,1.963645,2.04781,1.75254,2.07655,1.924845,2.01824,1.99865 @@ -8109,7 +8111,7 @@ LAMP5,3.070405,3.456465,2.89437,2.988865,2.905325,3.136235,3.099655,3.101655,3.1 LAMTOR1,5.09645,5.7105,5.55605,5.6366,5.313,4.99163,5.42355,5.60145,5.4766,5.38505,5.285,5.0528,5.3961,5.405,5.2429,5.10365,5.55495,5.2384,5.1122,5.1518,5.1449,6.00045,5.15195,5.27815,5.1321,5.41115,5.21155,4.90922,5.10815,5.19735 LAMTOR2,4.639435,4.92323,4.667985,4.74046,4.62721,4.73338,4.62199,4.88179,4.768325,4.642805,4.71434,4.69951,4.650865,4.596755,4.767785,4.91994,4.703075,4.642785,4.801,4.79632,4.669765,4.964805,4.65787,4.688785,4.555775,4.56245,4.86076,4.861365,4.69185,4.70409 LAMTOR3,3.471766666666667,3.2214233333333335,3.4834333333333336,3.456466666666667,3.4931666666666668,3.3953,3.4675999999999996,3.3094433333333337,3.6234333333333333,3.4748,3.5751000000000004,3.4105333333333334,3.6435333333333335,3.32324,3.5565333333333338,3.502166666666667,3.579833333333333,3.252963333333333,3.5927666666666664,3.4799333333333333,3.5210333333333335,3.3260133333333335,3.427766666666667,3.319036666666667,3.5292333333333334,3.4039333333333333,3.6424333333333334,3.3588,3.5089666666666663,3.5847333333333338 -LAMTOR5,4.029165,3.945395,4.217785,4.21158,4.197135,4.196465,4.238615,4.139985,4.375755,4.450455,4.14357,4.14821,4.27163,4.290545,3.86033,3.95549,4.248645,4.12057,3.755905,3.90191,4.017775,4.259185,3.9008,4.06092,3.920065,3.884635,4.17194,4.003675,3.9474,4.208515 +LAMTOR5,7.451205,7.5100549999999995,8.01025,7.907375,8.059075,7.747665,7.938715,7.48837,8.20568,8.185545,7.92005,7.723955,7.93139,7.983219999999999,7.12895,7.486835,8.03498,7.84089,7.58567,7.70808,7.63804,8.0005,7.4349799999999995,6.958805,7.3144,7.1405650000000005,7.62853,7.657705,7.62622,7.683135 LANCL1,3.3115133333333335,3.3841,3.27136,3.079003333333333,3.30369,3.1078033333333335,3.1923133333333333,3.0545233333333335,3.4483,3.3273966666666666,3.186246666666667,3.1006666666666667,3.1623933333333336,3.4150666666666667,3.281776666666667,2.9423366666666664,3.3646,3.383766666666667,3.3906333333333336,3.5236,3.264746666666667,3.22319,3.274763333333333,3.198423333333333,3.2062866666666667,3.0686633333333333,3.5723000000000003,3.4995333333333334,3.2505333333333333,3.340066666666667 LANCL2,2.29679,2.7659,2.2864625,2.2163425,2.285395,2.3476475,2.253825,2.272695,2.4033,2.59745,2.2740725,2.21402,2.1752325,2.47103,2.252115,2.3925075,2.4000425,2.31769,2.3317575,2.906075,2.2152375,2.2635675,2.228515,2.31922,2.20778,2.2355225,2.4245575,2.22695,2.24899,2.37043 LANCL3,2.4270033333333334,2.1132433333333336,2.44548,2.1275133333333334,2.3693766666666667,2.0833833333333334,2.3348733333333334,2.30077,2.45052,2.471006666666667,2.27753,2.1658166666666667,2.4725966666666666,2.114196666666667,2.26476,2.1973433333333334,2.4605966666666665,2.4160666666666666,2.390006666666667,1.9730033333333334,2.4316866666666668,2.18313,2.3650100000000003,1.98543,2.2893,1.9517166666666668,2.412436666666667,2.272276666666667,2.3383133333333332,2.3653233333333334 @@ -9702,7 +9704,7 @@ MTREX,4.358685,4.41093,4.373165,4.411255,4.33363,4.18411,4.21,4.4094,4.456845,4. MTRF1,3.2557,3.706535,3.513975,3.234175,3.238895,3.518825,3.304645,3.439015,3.578935,3.288375,3.35669,3.266805,3.11451,3.37193,3.065695,4.065825,3.488985,3.34429,3.316325,3.5402,2.93725,3.65723,3.34466,3.603915,3.2465,2.627635,3.65513,3.430245,3.12594,3.277085 MTRF1L,2.28187,2.688325,2.335495,2.853945,2.710215,3.031195,2.975095,2.902585,2.848085,2.825045,2.75306,2.33674,3.046855,2.81124,2.881705,3.417,2.54335,3.08959,2.2354,2.47136,2.69147,2.58094,3.098435,2.690355,2.09346,2.845495,2.629455,2.285555,3.16837,2.555645 MTRFR,2.95488,3.047005,3.204825,3.05527,2.92902,3.229695,3.05907,3.14685,3.214025,3.369475,3.09699,3.1388,2.820195,3.25952,3.13079,3.114435,3.19608,3.067365,2.920055,3.305105,2.97541,3.29587,3.03742,3.231155,3.027545,3.26233,3.27136,3.512735,2.93486,3.1519 -MTRNR2L1,5.27105,5.07905,5.52375,5.4277,5.27975,5.4263,5.3686,5.3676,5.4697,5.38995,5.26625,5.32,5.5067,5.0712,5.2825,5.3421,5.4141,5.2586,5.26815,5.2233,5.34085,5.85785,5.4637,5.53515,5.2238,5.43385,5.2999,5.5535,5.33385,5.3799 +MTRNR2L1,6.153662499999999,5.96301875,6.40795,6.2994125,6.17168125,6.3165625,6.257043749999999,6.242475000000001,6.352531249999999,6.2654499999999995,6.15181875,6.2145,6.386262500000001,5.9508937500000005,6.15841875,6.22151875,6.30014375,6.134356250000001,6.14375625,6.1114375,6.213025,6.73950625,6.3446,6.398524999999999,6.10029375,6.309774999999999,6.188075,6.449681249999999,6.1958,6.25484375 MTRR,4.81617,5.21735,4.64337,4.746625,4.5668,5.26085,4.47405,4.79783,4.824375,4.990715,4.444455,4.53585,4.62706,5.1682,4.42552,5.33385,4.764345,4.98803,4.439415,5.22085,4.35671,5.50485,4.28188,5.15775,4.57144,5.3393,4.76132,5.3239,4.180925,4.873335 MTSS1,5.36515,5.3617,5.20035,5.66275,5.042,5.13705,4.952565,4.880005,5.2237,4.55868,4.97439,4.95872,5.07205,4.93417,4.93856,5.70535,5.25805,5.23925,5.2046,4.58625,4.854275,5.2451,5.31305,4.64638,5.14145,5.3503,5.1898,4.61646,5.0979,5.1653 MTSS2,4.94426,4.854695,5.19905,4.99131,4.99295,5.02135,5.0226,4.71386,4.922545,4.957325,4.93171,5.0372,5.0326,5.023,5.0591,5.1395,5.00555,4.946715,5.0975,5.0519,5.1327,5.2819,5.03565,5.3197,5.0839,5.06025,5.2725,4.893615,5.12125,5.00875 @@ -12322,6 +12324,7 @@ PRMT9,4.10997,3.72164,3.909945,3.65143,3.925335,3.98714,3.69155,3.448535,4.26978 PRND,2.833075,2.806425,2.987085,2.94591,2.785455,2.926555,2.9559,2.86961,2.839135,2.892775,3.0509,2.807595,2.694785,2.80559,2.369865,2.786345,2.845885,2.86661,2.92976,2.809505,3.00231,2.9962,2.845865,2.8636,2.73659,2.646745,2.82908,2.84196,3.03864,2.8574 PRNP,5.70115,6.28965,5.44875,6.2552,5.30385,6.27095,5.3554,5.898,5.708,6.05265,5.4432,5.9071,5.6681,6.1265,5.3928,6.51095,5.60415,5.87885,5.67195,6.245,5.4517,5.89815,5.6491,6.057,5.564,6.5905,5.5929,6.2388,5.2497,5.9863 PRNT,2.748241666666667,2.6606475,2.65001,2.721645,2.6289783333333334,2.75652,2.5486208333333336,2.486190833333333,2.664225,2.637364166666667,2.7004908333333333,2.6442533333333333,2.6385183333333333,2.6325700000000003,2.6164658333333333,2.7248550000000002,2.7273083333333332,2.6555341666666665,2.5965941666666668,2.7724458333333333,2.5306141666666666,2.80441,2.6504691666666664,2.6839158333333337,2.6083516666666666,2.9271416666666665,2.6769225,2.8106999999999998,2.6330358333333335,2.734776666666667 +PRO2268,0.9578225,0.9405925,0.9798425,1.003645,1.0209525,1.0332825,0.943695,1.0793925,1.0324875,1.02562,1.00124,0.981675,0.9854375,0.98007,1.0706525,1.0469725,1.05949,1.0211825,0.960305,1.01928,1.0320925,1.0761725,1.01361,0.9905425,1.1247175,1.1083425,0.9916275,0.97462,1.091275,1.0517475 PROC,3.87129,3.99069,3.83711,4.032095,3.82191,4.025855,3.79461,3.980375,3.777005,3.70971,3.877065,3.831435,3.817035,3.91623,4.04786,4.06978,3.65936,3.687085,3.927815,4.03748,3.92853,3.995075,3.844315,4.096365,3.944305,3.93808,3.853125,3.927735,3.84014,3.8697 PROCA1,2.7414366666666665,2.55062,2.7596166666666666,2.6500833333333333,2.7005466666666664,2.6311466666666665,2.7049466666666664,2.7412266666666665,2.6441133333333333,2.6675866666666668,2.674046666666667,2.7241199999999997,2.6880966666666666,2.6087700000000003,2.75141,2.5991666666666666,2.65028,2.764863333333333,2.6629,2.55886,2.660346666666667,2.5843766666666665,2.689853333333333,2.6486566666666667,2.69562,2.5969366666666667,2.6147933333333335,2.5334266666666667,2.678433333333333,2.66929 PROCR,3.731865,4.639915,3.649725,4.021675,3.721635,4.44978,3.738925,4.023985,3.75335,4.02499,3.690335,3.98801,3.783225,3.80314,3.77596,4.481515,3.7671,4.81553,3.77158,3.884265,3.87238,4.05682,3.76569,4.52104,3.793275,3.95547,3.83402,4.09108,3.83182,3.96756 @@ -12484,7 +12487,7 @@ PSMD13,4.677635,4.675165,4.59675,4.689005,4.49449,4.72128,4.445675,4.503955,4.74 PSMD14,2.6025,2.53265,2.45484,2.60415,2.4292025,2.518275,2.41406,2.42522,2.603925,2.611125,2.4755375,2.527975,2.565275,2.648375,2.47614,2.90105,2.55535,2.578925,2.563,2.700675,2.4539075,2.72785,2.4451075,2.7182,2.546375,2.712575,2.58335,2.83685,2.417565,2.69585 PSMD2,5.41505,5.49355,5.2464,5.81375,5.29135,5.6356,5.27995,5.41345,5.40115,5.24695,5.3999,5.60255,5.6351,6.01055,5.259,5.85325,5.4292,5.45805,5.3315,5.64455,5.16245,5.8526,5.201,5.82025,5.2386,5.7743,5.2829,6.09965,5.12535,5.42395 PSMD3,5.3699,5.61325,5.3778,5.5129,5.25115,5.83385,5.23595,5.48615,5.41595,5.58735,5.28175,5.5291,5.43355,6.00345,5.19755,5.6062,5.4686,5.4797,5.30165,5.5451,5.25065,5.96645,5.3925,5.59595,5.2618,5.46245,5.35005,5.8307,5.1553,5.51415 -PSMD4,4.381766666666667,4.26361,4.437966666666666,4.633956666666666,4.580751666666666,4.450168333333333,4.5281899999999995,4.723531666666666,4.377868333333334,4.537165,4.42061,4.574381666666667,4.451286666666666,4.435741666666667,4.713045,4.401231666666667,4.458218333333334,4.43265,4.499886666666667,4.374043333333334,4.496685,4.538458333333333,4.600548333333333,4.776206666666667,4.393115,4.591613333333333,4.455655,4.453645,4.619186666666667,4.4718583333333335 +PSMD4,6.28121,6.366743333333334,6.553036666666666,6.75568,6.420025,6.7029716666666666,6.536666666666667,6.915031666666667,6.330735000000001,6.573131666666667,6.39204,6.627808333333333,6.50977,6.667398333333333,6.586991666666666,6.450265,6.652868333333333,6.592463333333333,6.3960566666666665,6.363203333333333,6.209585000000001,6.621831666666667,6.428731666666667,6.924953333333333,6.442828333333333,6.487559999999999,6.198075,6.591754999999999,6.44092,6.466271666666667 PSMD5,5.1785,5.09185,5.05305,4.75573,4.915675,5.14965,4.76725,4.99373,5.24875,4.783075,4.984985,4.99692,4.946465,4.859675,4.789185,5.23965,5.196,5.24805,4.873955,5.206,4.726545,5.00325,4.988145,5.2107,4.98832,5.31375,5.13195,5.0186,4.88314,5.0455 PSMD6,6.159159166666667,5.518034166666666,5.871605833333334,5.670170000000001,5.951785833333334,5.624180833333334,5.918584166666667,5.85717,6.3373525,5.9850683333333325,5.950537499999999,5.558449166666667,5.8221475,5.763065,5.745119166666667,6.067354999999999,6.011796666666667,5.940345833333334,6.074183333333333,6.046335,6.1519525,5.91067,5.9027875000000005,5.7187141666666665,5.866265833333333,5.6454450000000005,6.156757499999999,6.03685,5.8560324999999995,5.862695 PSMD7,5.6707,5.6595,5.46335,5.50465,5.50575,5.739,5.42395,5.5453,5.631,5.94275,5.63245,5.62565,5.4703,5.51095,5.6707,6.2133,5.6303,5.53595,5.75565,5.8265,5.70195,6.2368,5.7629,5.8538,5.53615,5.95655,5.7897,5.5148,5.69175,5.65005 @@ -13324,6 +13327,7 @@ RNPC3,2.2161408333333337,2.1387525000000003,2.2425499999999996,2.165739166666666 RNPEP,5.46495,5.2897,5.7568,5.2487,5.59085,5.48115,5.5612,5.55715,5.62235,5.3868,5.48095,5.2704,5.5141,5.44465,5.37385,5.45805,5.65025,5.33265,5.3837,5.2162,5.416,5.407,5.43815,5.14445,5.3992,5.145,5.5913,5.42845,5.58855,5.55305 RNPEPL1,5.14355,4.85278,5.27705,5.1429,5.26825,5.0267,5.265,5.04905,5.2311,4.9659,5.2011,4.957555,5.22425,4.905405,5.2141,4.83557,5.2887,5.1311,5.18625,5.27035,5.26585,5.148,5.1283,5.07955,5.2592,4.89874,5.23335,5.04245,5.31255,5.1714 RNPS1,3.8609299999999998,3.9606624999999998,3.9908825,4.066262500000001,3.8293600000000003,4.260384999999999,3.718705,3.8919675,4.1816475,4.3862725,3.792735,3.9483675000000003,3.703175,3.999905,3.6230824999999998,4.265969999999999,4.0546875,4.0846975,3.997175,4.441905,3.3966575,4.110469999999999,3.6841725000000003,4.00983,3.6910175,4.0593,3.8792524999999998,4.08198,3.64725,3.8716150000000003 +RNR2,0.8826125,0.88396875,0.8842,0.8717125,0.89193125,0.8902625,0.88844375,0.874875,0.88283125,0.8755,0.88556875,0.8945,0.8795625,0.87969375,0.87591875,0.87941875,0.88604375,0.87575625,0.87560625,0.8881375,0.872175,0.88165625,0.8809,0.863375,0.87649375,0.875925,0.888175,0.89618125,0.86195,0.87494375 RNU1-1,3.2092533333333333,3.294363333333333,3.2016899999999997,3.2579533333333335,3.171193333333333,3.29754,3.15817,3.2431666666666668,3.1548133333333332,3.302046666666667,3.1729000000000003,3.3505000000000003,3.1603733333333337,3.31652,3.1988233333333334,3.3920666666666666,3.1856033333333333,3.238023333333333,3.259593333333333,3.4431,3.19313,3.306236666666667,3.174656666666667,3.3517333333333332,3.2276433333333334,3.2128366666666666,3.31053,3.3645333333333336,3.1511266666666664,3.2661033333333336 RNU11,5.678605833333334,5.709906666666667,5.5954775,5.59758,5.406257500000001,5.63757,5.386194166666667,5.704666666666666,5.7729025,6.011525000000001,5.663470833333333,5.781365,5.545636666666667,5.724796666666666,5.2993175,5.900318333333333,5.614860833333333,5.4559125,5.453860833333334,6.092619999999999,5.326714166666666,5.890065,5.520930833333334,5.7041458333333335,5.171871666666666,5.713425833333334,5.765091666666667,5.877646666666667,5.538296666666667,5.8901625 RNU12-2P,5.678605833333334,5.709906666666667,5.5954775,5.59758,5.406257500000001,5.63757,5.386194166666667,5.704666666666666,5.7729025,6.011525000000001,5.663470833333333,5.781365,5.545636666666667,5.724796666666666,5.2993175,5.900318333333333,5.614860833333333,5.4559125,5.453860833333334,6.092619999999999,5.326714166666666,5.890065,5.520930833333334,5.7041458333333335,5.171871666666666,5.713425833333334,5.765091666666667,5.877646666666667,5.538296666666667,5.8901625 @@ -13462,7 +13466,7 @@ RPS18,1.952102,1.957958,1.964806,1.996686,1.96889,1.9271280000000002,1.909298000 RPS18P9,1.952102,1.957958,1.964806,1.996686,1.96889,1.9271280000000002,1.9092980000000002,1.973638,1.985592,1.917192,1.956314,1.9146640000000001,1.938476,1.9460000000000002,1.9656600000000002,1.9142219999999999,1.98366,1.9760300000000002,1.973742,1.9566880000000002,1.9514479999999998,1.9545480000000002,1.9061800000000002,1.999428,1.9467780000000001,1.9175280000000001,2.0442799999999997,1.9619039999999999,1.943336,1.9469699999999999 RPS19,7.6636050000000004,7.121848333333333,7.45002,7.455326666666667,7.527995,6.886003333333333,7.23215,7.584043333333333,7.40456,7.428331666666667,7.33474,7.327398333333333,6.796925,7.31665,7.575388333333334,7.48085,7.298246666666667,7.064361666666667,7.362451666666667,7.010556666666666,7.78312,7.467141666666667,7.042423333333334,7.3226466666666665,7.114958333333334,6.933776666666667,6.993195,7.1071599999999995,6.932548333333333,7.513303333333333 RPS19BP1,3.1480633333333334,3.2070333333333334,3.099906666666667,3.266306666666667,3.0851433333333333,3.13116,3.1171966666666666,3.184893333333333,3.152003333333333,3.18037,3.172093333333333,3.130186666666667,3.13487,3.322896666666667,3.1962333333333333,3.2940466666666666,3.182096666666667,3.0885599999999998,3.21259,3.1380966666666663,3.157383333333333,3.4116999999999997,3.2759466666666666,3.14795,3.0599333333333334,3.0741300000000003,3.159243333333333,3.12918,3.0861133333333335,3.2543466666666667 -RPS2,5.20079,5.199498333333334,5.219925833333333,5.51417,4.910652499999999,5.202842499999999,4.880106666666666,5.129601666666667,5.288308333333333,5.457140833333333,5.4209233333333335,5.503940833333333,5.235551666666667,5.42136,5.196298333333333,5.196889166666667,5.3413675,5.3401974999999995,5.214483333333334,5.292241666666667,5.194811666666666,5.3381083333333335,5.276043333333334,5.672923333333333,5.3500525,5.62621,5.369488333333333,5.088369166666666,5.053340833333333,5.266961666666667 +RPS2,5.551650833333333,5.557618333333334,5.5643775,5.8704350000000005,5.2663891666666665,5.538391666666667,5.244485,5.473650833333333,5.630546666666667,5.8230025,5.762930000000001,5.86832,5.580004166666667,5.7764375,5.539001666666667,5.5637475,5.673395833333333,5.669225,5.556971666666667,5.667051666666667,5.557654166666667,5.6822325,5.637264166666666,6.040538333333333,5.729008333333334,5.983394166666667,5.713539999999999,5.415473333333333,5.401838333333333,5.6202775 RPS20,3.4009850000000004,3.5628516666666665,3.428773333333333,3.5341966666666664,3.3115500000000004,3.544391666666667,3.4127433333333332,3.3836549999999996,3.429108333333333,3.496478333333333,3.4559450000000003,3.47807,3.34598,3.5534383333333337,3.4600633333333333,3.4904116666666667,3.406185,3.4157800000000003,3.4644049999999997,3.5622233333333333,3.357945,3.4937683333333336,3.42367,3.5794266666666665,3.4046133333333333,3.3455883333333336,3.4706550000000003,3.321405,3.3047933333333335,3.377796666666667 RPS20P27,1.7389299999999999,1.8287833333333332,1.7727466666666667,1.8689133333333334,1.70454,1.8065033333333333,1.7496866666666666,1.69715,1.7841766666666665,1.9173166666666666,1.8069300000000001,1.7617,1.75636,1.8801166666666667,1.8001666666666667,1.8151433333333333,1.78585,1.83716,1.88849,1.9381266666666666,1.78745,1.8449766666666667,1.70854,1.9184133333333333,1.8190266666666668,1.8082166666666666,1.88863,1.7908099999999998,1.7069466666666668,1.7467933333333334 RPS21,2.7497390476190477,2.8643076190476187,2.805715238095238,2.7427238095238096,2.6993252380952377,2.678315238095238,2.6666535714285713,2.7358657142857146,2.783404285714286,2.8426414285714285,2.6871823809523807,2.7554847619047624,2.7498142857142858,2.874892380952381,2.59254,2.834674761904762,2.8054066666666664,2.761729523809524,2.8632995238095242,2.8638209523809524,2.581925,2.7521257142857145,2.55206,2.7827776190476188,2.6178933333333334,2.921690952380952,2.7152904761904764,2.8030914285714283,2.595255238095238,2.674609523809524 @@ -16615,7 +16619,8 @@ TREML5P,0.617092,0.650766,0.633196,0.6207779999999999,0.619531,0.531487,0.645695 TRERF1,8.155345,7.645054999999999,7.710139999999999,7.535119999999999,8.42146,8.34437,8.165715,7.896625,8.558495,8.582995,8.299745000000001,7.865460000000001,7.66084,7.041,8.360330000000001,7.9605250000000005,8.524415000000001,7.872345000000001,8.85366,8.556035,8.177655,8.623194999999999,8.253615,8.759905,8.497135,7.775895,9.031965,8.807485,8.39767,7.6373299999999995 TREX1,1.564654,1.600524,1.589142,1.612724,1.596918,1.592274,1.585382,1.597574,1.617298,1.597642,1.543366,1.4993159999999999,1.56549,1.588288,1.612066,1.647898,1.59299,1.601228,1.60883,1.6101400000000001,1.574706,1.60655,1.5916679999999999,1.6163440000000002,1.586208,1.583832,1.6185199999999997,1.6006360000000002,1.599256,1.5841939999999999 TREX2,0.7308981818181818,0.7445209090909092,0.7402527272727273,0.7929245454545455,0.70843,0.7964936363636365,0.7268609090909091,0.7509690909090909,0.7436309090909091,0.7582336363636363,0.7305472727272728,0.7487881818181819,0.7332418181818181,0.7475272727272727,0.725239090909091,0.78067,0.7474445454545454,0.7711372727272727,0.7294927272727272,0.7367818181818181,0.7169972727272728,0.7420763636363635,0.7286845454545454,0.7978181818181818,0.7363672727272728,0.7564927272727272,0.7261772727272727,0.7295336363636363,0.7341627272727272,0.7257981818181819 -TRGC1,36.001412106060606,36.09426269264069,35.333344045454545,36.02081857142857,35.119083714285715,36.90848450649351,34.81548331818182,35.862167943722945,36.58132206709956,37.2929936038961,34.66253919264069,35.96194977922078,34.758525023809526,35.72994374675324,34.83395291991342,37.598956502164505,35.67056092640693,37.763205251082255,34.994695316017314,36.437298982683984,34.57424210822511,37.59046835714285,35.23902065584416,37.04599165800866,34.78034597186147,36.75341585930736,35.65127388961039,37.494807162337665,34.43665157142857,36.03999542207792 +TRG,2.614895,3.19042,2.68513,2.62316,2.50776,2.9909,2.60276,2.6319,2.746065,2.868645,2.62211,3.077545,2.427945,2.591535,2.520115,3.08587,2.171235,2.82236,2.880905,3.358445,2.36361,2.8538,2.223225,2.639265,2.62613,2.911425,2.50687,3.204925,2.105645,2.853525 +TRGC1,39.93169210606061,40.07110269264069,39.17631904545455,40.149258571428575,39.067863714285714,40.94984950649351,38.72941831818182,39.92454294372294,40.441822067099565,41.0679386038961,38.49300919264069,39.82630977922078,38.530145023809524,39.77799874675325,38.76785791991342,41.560991502164505,39.462190926406926,41.744935251082254,38.96554531601732,40.403968982683985,38.728407108225106,41.68626835714286,39.01083065584415,40.999371658008656,38.71685097186147,40.62643585930736,39.26385388961039,41.50589216233766,38.30387157142857,40.19302542207792 TRGC2,1.902695111111111,1.7552217777777779,1.942818888888889,1.7632564444444445,1.9178051111111112,1.7416153333333333,1.812846,1.9418562222222224,1.8862306666666666,1.7682408888888888,1.8869551111111111,1.819424,1.802813111111111,1.8095577777777776,1.9154504444444447,1.781872888888889,1.871788,1.8392591111111112,1.783244888888889,1.758105111111111,1.8690204444444443,1.8372928888888889,1.8236451111111112,1.8163355555555554,1.8572884444444444,2.036791555555556,1.93415,1.7417951111111112,1.8882526666666668,1.8162806666666667 TRGV11,0.6978711111111111,0.6540277777777779,0.6695888888888889,0.6653044444444444,0.6869211111111111,0.6349233333333334,0.64247,0.7014922222222223,0.6555566666666667,0.6403288888888888,0.6908911111111111,0.65253,0.6509411111111111,0.6751777777777778,0.6922544444444445,0.6413588888888889,0.65986,0.6623511111111111,0.6571988888888889,0.5998411111111112,0.6647744444444444,0.6707988888888888,0.6618111111111111,0.6705055555555556,0.6719644444444444,0.7353155555555556,0.66828,0.6028911111111112,0.6744666666666667,0.6458766666666667 TRGV3,3.14869,2.8815925,2.946225,2.7639924999999996,2.96983,3.041735,2.9285975,3.099065,3.200115,3.2084775,3.1533925,2.87775,2.6973525,2.6892475,2.9450475,3.003815,3.041725,3.0449675000000003,2.9394575,3.1838825,2.8718125,2.9619275,2.97898,2.6886225,3.0569775,2.90825,3.0624425,2.72688,3.0280175,3.0275499999999997 @@ -17633,7 +17638,7 @@ YBX3,4.558333333333334,4.4910000000000005,4.650066666666667,4.732366666666667,4. YBX3P1,4.558333333333334,4.4910000000000005,4.650066666666667,4.732366666666667,4.5402,4.468966666666667,4.578366666666667,4.563733333333333,4.621066666666667,4.7215,4.606466666666667,4.5244333333333335,4.609566666666667,4.673,4.5748,4.469433333333334,4.648433333333333,4.573933333333334,4.5517666666666665,4.492366666666666,4.471633333333333,4.498833333333333,4.5774333333333335,4.707933333333333,4.4831666666666665,4.570566666666667,4.5214,4.308466666666667,4.6108,4.533166666666667 YEATS2,3.086016666666667,3.5121333333333333,3.082076666666667,3.5239333333333334,2.9792666666666663,3.3706,3.0034733333333334,3.0218133333333337,3.1379900000000003,3.1764666666666668,3.0112400000000004,3.3369666666666666,3.1932266666666664,3.8335000000000004,2.9514899999999997,3.5213,3.1585300000000003,3.4347666666666665,3.028723333333333,3.560033333333333,2.9543633333333332,3.389466666666667,3.023903333333333,3.490133333333333,3.1231166666666668,3.5056,3.11895,3.690633333333333,2.8622533333333333,3.2187133333333335 YEATS4,2.810636666666667,3.1374999999999997,2.82465,2.7925133333333334,2.7023266666666665,3.0602966666666664,2.53832,2.7831333333333332,3.0812633333333337,3.183733333333333,2.743126666666667,2.9571066666666668,2.53236,2.989036666666667,2.85551,3.082686666666667,2.8530033333333336,2.88205,2.8681300000000003,3.2291233333333333,2.71381,3.245433333333333,2.7841466666666665,3.14061,2.73175,2.9105600000000003,2.9547933333333334,3.24842,2.753213333333333,2.966396666666667 -YES1,3.024589166666667,2.997335,2.9684133333333333,3.0153458333333334,2.880844166666667,3.1370649999999998,2.8558616666666667,2.9562150000000003,3.0882166666666664,3.2844900000000004,2.9487491666666665,3.0334616666666667,2.9690683333333334,3.1243408333333336,2.7664524999999998,3.0823058333333333,3.050289166666667,3.1122425,2.865915833333333,3.145211666666667,2.8877858333333335,3.0373783333333333,2.947095,3.1187275,2.9086233333333333,3.1489374999999997,3.0357525,3.3574733333333335,2.83178,3.116083333333333 +YES1,3.3493431666666664,3.310661,3.3050213333333334,3.3494018333333333,3.214196166666667,3.4611029999999996,3.195133666666667,3.289517,3.4737166666666663,3.6099930000000002,3.2388461666666664,3.3602796666666666,3.3257513333333333,3.4455918333333337,3.1067845,3.4088928333333333,3.394214166666667,3.3812794999999998,3.1668998333333334,3.435532666666667,3.1747268333333336,3.3493353333333333,3.208249,3.4329565,3.4094773333333332,3.5298165,3.3599645000000002,3.7233473333333333,3.1559600000000003,3.432812333333333 YIF1A,4.91462,5.07335,4.905475,5.6345,4.70928,4.924405,4.828665,5.1725,4.964025,5.21535,4.72085,5.125,4.82797,4.98524,4.86551,5.1702,4.92208,4.90122,4.939525,4.87221,4.847695,5.28955,4.94891,5.30585,4.97468,5.35095,5.04455,4.91716,4.84349,5.01675 YIF1B,9.7531,9.85324,9.783395,10.1130475,9.545815,9.46011,9.7991025,9.915992500000002,9.715285000000002,9.04843,9.732420000000001,9.7422675,9.8725875,9.3496225,9.795277500000001,9.4989225,9.79166,9.8309675,9.52915,9.498625,9.7150675,9.691815,9.839329999999999,9.5650725,9.5406975,9.7698325,9.677335,9.331822500000001,9.7026775,9.7032025 YIPF1,4.240655,4.04969,4.2606,4.246555,4.356325,4.35324,4.132145,4.175075,4.555835,4.36505,4.22527,4.0106,4.3851,4.119965,4.25452,4.60271,4.49865,4.312545,4.219365,4.317215,4.170155,4.535835,4.22816,4.309205,4.13395,4.050955,4.438495,4.333365,4.37496,4.57249 diff --git a/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE103237.csv b/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE103237.csv index 7fdcfc8acbfb763655d55fe222531d2da8e86a7b..0ac53aa582e483d1b4bdd9793f1786ba5dbfd506 100644 --- a/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE103237.csv +++ b/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE103237.csv @@ -1,3 +1,3 @@ ,GSM2758679,GSM2758680,GSM2758681,GSM2758682,GSM2758683,GSM2758684,GSM2758685,GSM2758686,GSM2758687,GSM2758688,GSM2758689,GSM2758690,GSM2758691,GSM2758692,GSM2758693,GSM2758694,GSM2758695,GSM2758696,GSM2758697,GSM2758698,GSM2758699,GSM2758700,GSM2758701,GSM2758702,GSM2758703,GSM2758704,GSM2758705,GSM2758706,GSM2758707,GSM2758708,GSM2758709,GSM2758710,GSM2758711,GSM2758712,GSM2758713,GSM2758714,GSM2758715,GSM2758716,GSM2758717,GSM2758718,GSM2758719,GSM2758720,GSM2758721,GSM2758722,GSM2758723,GSM2758724,GSM2758725,GSM2758726,GSM2758727,GSM2758728,GSM2758729,GSM2758730,GSM2758731,GSM2758732,GSM2758733,GSM2758734,GSM2758735,GSM2758736,GSM2758737,GSM2758738,GSM2758739,GSM2758740,GSM2758741,GSM2758742,GSM2758743 -Essential_Thrombocythemia,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Essential_Thrombocythemia,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 Gender,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,,,,,,,,,,,,,,, diff --git a/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE159514.csv b/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE159514.csv index 26cc9f182c33235e64ea7e13670e5a38b6c4bec6..5da70a47acbe0c5b178f21d91c10e4de04d7bb2f 100644 --- a/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE159514.csv +++ b/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE159514.csv @@ -1,4 +1,2 @@ -"" -Essential_Thrombocythemia -Age -Gender +,GSM4831515,GSM4831516,GSM4831517,GSM4831518,GSM4831519,GSM4831520,GSM4831521,GSM4831522,GSM4831523,GSM4831524,GSM4831525,GSM4831526,GSM4831527,GSM4831528,GSM4831529,GSM4831530,GSM4831531,GSM4831532,GSM4831533,GSM4831534,GSM4831535,GSM4831536,GSM4831537,GSM4831538,GSM4831539,GSM4831540,GSM4831541,GSM4831542,GSM4831543,GSM4831544,GSM4831545,GSM4831546,GSM4831547,GSM4831548,GSM4831549,GSM4831550,GSM4831551,GSM4831552,GSM4831553,GSM4831554,GSM4831555,GSM4831556,GSM4831557,GSM4831558,GSM4831559,GSM4831560,GSM4831561,GSM4831562,GSM4831563,GSM4831564,GSM4831565,GSM4831566,GSM4831567,GSM4831568,GSM4831569,GSM4831570,GSM4831571,GSM4831572,GSM4831573,GSM4831574,GSM4831575,GSM4831576,GSM4831577,GSM4831578,GSM4831579,GSM4831580,GSM4831581,GSM4831582,GSM4831583,GSM4831584,GSM4831585,GSM4831586,GSM4831587,GSM4831588,GSM4831589,GSM4831590,GSM4831591,GSM4831592,GSM4831593,GSM4831594,GSM4831595,GSM4831596,GSM4831597,GSM4831598,GSM4831599,GSM4831600,GSM4831601,GSM4831602,GSM4831603,GSM4831604,GSM4831605,GSM4831606,GSM4831607,GSM4831608,GSM4831609,GSM4831610,GSM4831611,GSM4831612,GSM4831613,GSM4831614,GSM4831615,GSM4831616,GSM4831617,GSM4831618,GSM4831619,GSM4831620,GSM4831621,GSM4831622,GSM4831623,GSM4831624,GSM4831625,GSM4831626,GSM4831627,GSM4831628 +Essential_Thrombocythemia,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE61629.csv b/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE61629.csv index 14849177973d7fb2c274759be3f9db5b4ca9b354..c205e2b3e8d47b7c11b2fe3134e478c1a8ae5347 100644 --- a/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE61629.csv +++ b/output/preprocess/Essential_Thrombocythemia/clinical_data/GSE61629.csv @@ -1,2 +1,2 @@ ,GSM1388566,GSM1388567,GSM1388568,GSM1388569,GSM1388570,GSM1388571,GSM1388577,GSM1388579,GSM1388582,GSM1388584,GSM1388585,GSM1388587,GSM1388590,GSM1388591,GSM1388592,GSM1388593,GSM1388594,GSM1388595,GSM1388596,GSM1388598,GSM1388599,GSM1388600,GSM1388601,GSM1388603,GSM1388604,GSM1388605,GSM1388606,GSM1388607,GSM1388608,GSM1388614,GSM1388616,GSM1388623,GSM1388624,GSM1509517,GSM1509518,GSM1509519,GSM1509520,GSM1509521,GSM1509522,GSM1509523,GSM1509524,GSM1509525,GSM1509526,GSM1509527,GSM1509528,GSM1509529,GSM1509530,GSM1509531,GSM1509532,GSM1509533,GSM1509534,GSM1509535,GSM1509536,GSM1509537 -Essential_Thrombocythemia,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Essential_Thrombocythemia,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE103176.py b/output/preprocess/Essential_Thrombocythemia/code/GSE103176.py new file mode 100644 index 0000000000000000000000000000000000000000..b42a58debbb472bcff93967442a8ecf76084f434 --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE103176.py @@ -0,0 +1,364 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE103176" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE103176" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE103176.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE103176.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE103176.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression availability +is_gene_available = True # Title indicates both gene and miRNA expression; gene expression likely available. + +# 2) Variable availability +trait_row = 3 # disease: PV / ET / healthy control +age_row = None # No age field found in provided characteristics +gender_row = 1 # Sex: M / F / not provided + +# 2) Conversion functions +def _after_colon(x): + if x is None: + return None + s = str(x) + parts = s.split(":", 1) + val = parts[1] if len(parts) > 1 else parts[0] + return val.strip() + +def convert_trait(x): + v = _after_colon(x) + if v is None: + return None + v_low = v.strip().lower() + # Positive (Essential Thrombocythemia) + if v_low in {"et", "essential thrombocythemia"}: + return 1 + # Negative: other diseases or controls + if v_low in {"pv", "polycythemia vera", "healthy control", "control", "ctr", "normal", "healthy"}: + return 0 + # Heuristic: if the word 'thrombocythemia' appears, consider ET + if "thrombocythemia" in v_low: + return 1 + # Otherwise treat as non-ET if explicitly non-ET MPN (e.g., pv) + if "polycythemia" in v_low or "vera" in v_low: + return 0 + return None + +def convert_age(x): + # Not used (age_row is None), but provided for completeness + v = _after_colon(x) + if v is None: + return None + v_low = v.lower() + if any(tok in v_low for tok in ["not provided", "na", "n/a", "unknown"]): + return None + # extract first number (years) + m = re.search(r"(\d+(\.\d+)?)", v_low) + if m: + try: + val = float(m.group(1)) + return val + except: + return None + return None + +def convert_gender(x): + v = _after_colon(x) + if v is None: + return None + v_low = v.strip().lower() + if v_low in {"m", "male"}: + return 1 + if v_low in {"f", "female"}: + return 0 + if "not provided" in v_low or v_low in {"na", "n/a", "unknown"}: + return None + # Heuristic: start with 'm' or 'f' + if v_low.startswith("m"): + return 1 + if v_low.startswith("f"): + return 0 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (if available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + clinical_preview = preview_df(selected_clinical_df) + + # Save clinical data + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# Based on the observed identifiers like '14qI-1_st' and suffixes '_st'/'_x_st', +# these are probe/set identifiers (e.g., Affymetrix-style), not human gene symbols. +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +import os +import pandas as pd + +# Helper to evaluate candidate ID and symbol columns for a given annotation dataframe +def choose_id_and_symbol_cols(annotation_df: pd.DataFrame, expr_index: pd.Index): + expr_ids = pd.Index(expr_index.astype(str)) + obj_cols = [c for c in annotation_df.columns if annotation_df[c].dtype == 'object'] + + # Candidate gene symbol columns in order of preference + symbol_candidates = [ + 'Gene Symbol', 'Gene symbol', 'GeneSymbol', 'Gene Symbols', 'Symbol', 'SYMBOL', + 'HGNC symbol', 'Approved Symbol', 'gene_assignment' + ] + gene_symbol_col = None + for c in symbol_candidates: + if c in annotation_df.columns: + gene_symbol_col = c + break + if gene_symbol_col is None and obj_cols: + gene_symbol_col = obj_cols[0] + + # Identify best ID column by overlap with expression IDs, with tie-break on ST-like suffix rate + best = {'col': None, 'overlap': -1, 'st_rate': -1.0} + for col in obj_cols: + col_vals = annotation_df[col].astype(str).str.strip() + overlap = col_vals.isin(expr_ids).sum() + st_rate = (col_vals.str.endswith('_st') | col_vals.str.endswith('_x_st') | col_vals.str.endswith('_s_st')).mean() + # Prefer higher overlap; if tie, prefer higher st_rate + if (overlap > best['overlap']) or (overlap == best['overlap'] and st_rate > best['st_rate']): + best = {'col': col, 'overlap': overlap, 'st_rate': float(st_rate)} + + return best['col'], gene_symbol_col, best['overlap'], best['st_rate'] + + +# Iterate over all SOFT files in the cohort directory and pick the best-matching annotation +soft_files = [os.path.join(in_cohort_dir, f) for f in os.listdir(in_cohort_dir) if 'soft' in f.lower()] + +best_choice = { + 'file': None, 'id_col': None, 'sym_col': None, + 'matched_ann': 0, 'total_ann': 0, 'matched_expr': 0, 'total_expr': len(gene_data.index), 'st_rate': -1.0, + 'mapping_df': None +} + +for sf in soft_files: + try: + ann_df = get_gene_annotation(sf) + if ann_df is None or len(ann_df) == 0: + continue + + id_col, sym_col, raw_overlap, st_rate = choose_id_and_symbol_cols(ann_df, gene_data.index) + if id_col is None or sym_col is None: + continue + + # Build mapping and compute precise overlaps + candidate_mapping = get_gene_mapping(ann_df, prob_col=id_col, gene_col=sym_col) + if candidate_mapping is None or len(candidate_mapping) == 0: + continue + + # Normalize ID column to string/stripped + candidate_mapping['ID'] = candidate_mapping['ID'].astype(str).str.strip() + expr_ids = pd.Index(gene_data.index.astype(str)) + matched_ann = candidate_mapping['ID'].isin(expr_ids).sum() + total_ann = len(candidate_mapping) + matched_expr = expr_ids.isin(set(candidate_mapping['ID'])).sum() + total_expr = len(expr_ids) + + # Diagnostics for this SOFT file + ann_rate = matched_ann / total_ann if total_ann > 0 else 0.0 + expr_rate = matched_expr / total_expr if total_expr > 0 else 0.0 + print(f"[Annotation scan] File: {os.path.basename(sf)}") + print(f" Chosen ID column: {id_col} | Gene Symbol column: {sym_col}") + print(f" ST-like ID rate in chosen column: {st_rate:.2%}") + print(f" Matched annotation IDs: {matched_ann} / {total_ann} ({ann_rate:.2%})") + print(f" Matched expression IDs: {matched_expr} / {total_expr} ({expr_rate:.2%})") + + # Update best choice: prioritize matched_ann, then matched_expr, then st_rate + better = False + if matched_ann > best_choice['matched_ann']: + better = True + elif matched_ann == best_choice['matched_ann']: + if matched_expr > best_choice['matched_expr']: + better = True + elif matched_expr == best_choice['matched_expr'] and st_rate > best_choice['st_rate']: + better = True + + if better: + best_choice.update({ + 'file': sf, 'id_col': id_col, 'sym_col': sym_col, + 'matched_ann': matched_ann, 'total_ann': total_ann, + 'matched_expr': matched_expr, 'total_expr': total_expr, + 'st_rate': st_rate, 'mapping_df': candidate_mapping + }) + + except Exception as e: + print(f"[Annotation scan] Skipped {os.path.basename(sf)} due to error: {e}") + continue + +# Apply the best mapping if overlap is non-zero; else warn and keep original gene_data unchanged +if best_choice['mapping_df'] is not None and best_choice['matched_ann'] > 0: + print("\n[Mapping selection]") + print(f"Selected annotation file: {os.path.basename(best_choice['file'])}") + ann_rate = best_choice['matched_ann'] / best_choice['total_ann'] if best_choice['total_ann'] > 0 else 0.0 + expr_rate = best_choice['matched_expr'] / best_choice['total_expr'] if best_choice['total_expr'] > 0 else 0.0 + print(f" Using ID column: {best_choice['id_col']} | Gene Symbol column: {best_choice['sym_col']}") + print(f" Matched annotation IDs: {best_choice['matched_ann']} / {best_choice['total_ann']} ({ann_rate:.2%})") + print(f" Matched expression IDs: {best_choice['matched_expr']} / {best_choice['total_expr']} ({expr_rate:.2%})") + + # Restrict mapping to IDs present in expression to speed up apply + mapping_df = best_choice['mapping_df'] + mapping_df = mapping_df[mapping_df['ID'].isin(gene_data.index.astype(str))].copy() + + # Apply mapping to convert probe-level expression to gene-level expression + mapped_gene_data = apply_gene_mapping(gene_data, mapping_df) + + # Guard against accidental empty result + if mapped_gene_data is not None and mapped_gene_data.shape[0] > 0 and mapped_gene_data.shape[1] > 0: + gene_data = mapped_gene_data + print(f"[Mapping] Gene-level data shape: {gene_data.shape[0]} genes x {gene_data.shape[1]} samples") + else: + print("[Warning] Mapping produced empty gene-level data. Keeping original probe-level data.") +else: + print("\n[Warning] No usable annotation mapping found (zero overlap). Keeping original probe-level data without mapping.") + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1. Normalize gene symbols +# Guard: gene_data should exist from previous steps +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) + +# Ensure output directory exists and save normalized gene data (may be empty if mapping failed) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# Ensure clinical features are available (load from CSV if variable not in scope) +try: + selected_clinical_df +except NameError: + selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) + +# 2. Link clinical and genetic data +is_gene_available = normalized_gene_data.shape[0] > 0 +is_trait_available = trait in selected_clinical_df.index + +if is_gene_available: + linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) +else: + # Fallback linking with clinical-only data to allow downstream processing/validation + linked_data = selected_clinical_df.T.copy() + +# 3. Handle missing values +covariate_cols = [trait, 'Age', 'Gender'] +gene_cols_present = [c for c in linked_data.columns if c not in covariate_cols] + +if len(gene_cols_present) > 0: + processed_linked = handle_missing_values(linked_data, trait_col=trait) +else: + # No gene features present: perform covariate-only missing handling + df = linked_data.copy() + # Drop samples with missing trait + df = df.dropna(subset=[trait]) + # Impute Age with mean if present + if 'Age' in df.columns: + df['Age'] = pd.to_numeric(df['Age'], errors='coerce') + df['Age'] = df['Age'].fillna(df['Age'].mean()) + # Impute Gender with mode if present + if 'Gender' in df.columns: + mode_result = df['Gender'].mode() + if len(mode_result) > 0: + df['Gender'] = df['Gender'].fillna(mode_result[0]) + else: + df = df.drop(columns=['Gender']) + processed_linked = df + +# 4. Bias check and removal of biased demographics +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(processed_linked, trait) + +# 5. Final validation and cohort info saving +if is_gene_available: + note = "INFO: Gene-level data normalization completed." +else: + note = ("ERROR: Gene identifier mapping/normalization failed. Probe/set IDs (e.g., '14qI-*_st') " + "did not map to human gene symbols in the available SOFT annotation; normalization removed all gene rows. " + "Gene expression unavailable for analysis.") + +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data only if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE103237.py b/output/preprocess/Essential_Thrombocythemia/code/GSE103237.py new file mode 100644 index 0000000000000000000000000000000000000000..44b66dd67bd071ff11e8a7b28b6c5b1b2c681152 --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE103237.py @@ -0,0 +1,219 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE103237" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE103237" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE103237.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE103237.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE103237.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import pandas as pd +import re + +# 1) Gene Expression Data Availability +# Series states: "This series includes only the GEP samples." -> gene expression available +is_gene_available = True + +# 2) Variable Availability and Data Type Conversion + +# 2.1 Data Availability +# Trait (Essential Thrombocythemia) can be derived from disease field +trait_row = 3 # 'disease: PV', 'disease: ET', 'disease: healthy control' + +# No explicit age field in the sample characteristics dictionary +age_row = None + +# Gender field present +gender_row = 1 # 'Sex: M', 'Sex: F', 'Sex: not provided' + +# 2.2 Data Type Conversion +def _after_colon(val): + if val is None: + return None + if not isinstance(val, str): + return str(val) + parts = val.split(":", 1) + return parts[1].strip() if len(parts) == 2 else val.strip() + +def convert_trait(x): + """ + Map ET to 1, others (PV, healthy/control) to 0. Unknown -> None. + """ + v = _after_colon(x) + if v is None: + return None + v_norm = v.strip().lower() + # Normalize common forms + if v_norm in {"et", "essential thrombocythemia", "essential thrombocythaemia"}: + return 1 + if v_norm in {"pv", "polycythemia vera", "polycythaemia vera", "healthy control", "control", "ctr", "healthy"}: + return 0 + # Heuristics + if "thrombocythem" in v_norm and "essential" in v_norm: + return 1 + if "polycythem" in v_norm or "healthy" in v_norm or "control" in v_norm: + return 0 + return None + +def convert_age(x): + """ + Return age as float if available, else None. + """ + v = _after_colon(x) + if v is None: + return None + v = v.strip() + # Remove common units or text + v = re.sub(r"[^\d\.]", " ", v) + v = re.sub(r"\s+", " ", v).strip() + try: + return float(v) + except: + return None + +def convert_gender(x): + """ + Female -> 0, Male -> 1, Unknown/Not provided -> None. + """ + v = _after_colon(x) + if v is None: + return None + v_norm = v.strip().lower() + if v_norm in {"m", "male"}: + return 1 + if v_norm in {"f", "female"}: + return 0 + if "not provided" in v_norm or v_norm in {"na", "n/a", "unknown", ""}: + return None + # Heuristic + if v_norm.startswith("m"): + return 1 + if v_norm.startswith("f"): + return 0 + return None + +# 3) Save Metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if clinical data is available) +if trait_row is not None: + # Extract clinical features + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age if age_row is not None else None, + gender_row=gender_row, + convert_gender=convert_gender + ) + + # Preview and save + preview = preview_df(selected_clinical_df) + print(preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Map probe IDs to gene symbols using annotation columns 'ID' and 'Gene Symbol' +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='Gene Symbol') + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# Optional sanity check +print(f"Normalized gene data shape: {normalized_gene_data.shape}") + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) +print(f"Linked data shape (before missing handling): {linked_data.shape}") + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) +print(f"Linked data shape (after missing handling): {linked_data.shape}") + +# 4. Bias check and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +note = "INFO: Gene symbols normalized via NCBI synonyms; probe-to-gene mapped with equal-split; missing values handled per protocol." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE12295.py b/output/preprocess/Essential_Thrombocythemia/code/GSE12295.py new file mode 100644 index 0000000000000000000000000000000000000000..ee5a3f01000aa6e2cb4a7b564c7ed5565a3fcbbb --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE12295.py @@ -0,0 +1,211 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE12295" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE12295" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE12295.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE12295.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE12295.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression data availability +is_gene_available = True # Platelet-focused spotted oligonucleotide arrays -> mRNA expression + +# 2) Variable availability and conversion functions + +# Keys in the sample characteristics dictionary +trait_row = 0 +age_row = None +gender_row = None + +def _extract_value(x): + if x is None: + return None + s = str(x).strip() + parts = s.split(":", 1) + return parts[1].strip() if len(parts) == 2 else s + +def convert_trait(x): + v = _extract_value(x) + if v is None: + return None + v_low = v.lower().strip() + # Normalize + v_clean = re.sub(r'[^a-z\s]', ' ', v_low) + v_clean = re.sub(r'\s+', ' ', v_clean).strip() + + # Binary: ET = 1, others (Normal/RT) = 0 + if 'essential thromb' in v_clean: + return 1 + if 'reactive thrombocytosis' in v_clean or 'reactive thrombocythaemia' in v_clean or v_clean == 'rt': + return 0 + if 'normal' in v_clean or 'control' in v_clean: + return 0 + return None + +def convert_age(x): + # Not available in this cohort; robust converter provided for completeness + v = _extract_value(x) + if v is None: + return None + # Extract first number that looks like age + m = re.search(r'(\d+(\.\d+)?)', str(v)) + if not m: + return None + try: + age = float(m.group(1)) + # Filter out impossible ages + if 0 < age < 120: + return age + except Exception: + pass + return None + +def convert_gender(x): + # Not available in this cohort; robust converter provided for completeness + v = _extract_value(x) + if v is None: + return None + v_low = v.lower().strip() + # Handle common encodings + if v_low in {'male', 'm', 'man', 'boy'}: + return 1 + if v_low in {'female', 'f', 'woman', 'girl'}: + return 0 + # Token-based fallback + if 'male' in v_low and 'female' not in v_low: + return 1 + if 'female' in v_low and 'male' not in v_low: + return 0 + return None + +# 3) Save metadata: initial filtering +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction, preview, and save +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print("Selected clinical features preview:", preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Decide the columns: probe IDs match 'ID' in annotation; gene symbols in 'Gene Symbol' +id_col, gene_col = 'ID', 'Gene Symbol' +assert id_col in gene_annotation.columns and gene_col in gene_annotation.columns + +# Build mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=id_col, gene_col=gene_col) + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(gene_data, mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Assess bias and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +# Ensure native Python bools to avoid JSON serialization issues +is_gene_available = bool((normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0)) +trait_col_exists = bool(trait in unbiased_linked_data.columns) +trait_has_non_na = bool(unbiased_linked_data[trait].notna().any()) if trait_col_exists else False +is_trait_available = bool(trait_col_exists and trait_has_non_na) +is_trait_biased_bool = bool(is_trait_biased) + +note = "INFO: Age and Gender not available; cohort mixes ET, RT, and normal controls; trait binarized as ET vs others." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=is_trait_biased_bool, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE159514.py b/output/preprocess/Essential_Thrombocythemia/code/GSE159514.py new file mode 100644 index 0000000000000000000000000000000000000000..c3ef4bdd269a7ad13d4ac46cc4be93f9f1b48ecb --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE159514.py @@ -0,0 +1,215 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE159514" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE159514" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE159514.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE159514.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE159514.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression data availability (Affymetrix GEP per background) +is_gene_available = True + +# 2) Variable availability and converters +# From the sample characteristics: +# 0: disease: Overt-PMF, Pre-PMF, PET, PPV +# 1: driver mutation: ... +trait_row = 0 # disease info available; we will infer ET trait from 'PET' (post-ET MF) +age_row = None +gender_row = None + +def _extract_after_colon(x: str) -> str: + if x is None: + return "" + if not isinstance(x, str): + try: + x = str(x) + except Exception: + return "" + parts = x.split(":", 1) + val = parts[1] if len(parts) > 1 else parts[0] + return val.strip() + +def convert_trait(x): + """ + Map disease to ET-related (1) if post-ET myelofibrosis (PET), else 0. + Unknown -> None. + """ + val = _extract_after_colon(x).lower() + if not val: + return None + # direct known labels + if val in {"pet"}: + return 1 + if val in {"ppv", "overt-pmf", "pre-pmf"}: + return 0 + # heuristic fallbacks + if "post-et" in val or "post essential thrombocythemia" in val or "post et" in val: + return 1 + if "post pv" in val or "pmf" in val: + return 0 + return None + +def convert_age(x): + """ + Convert age to continuous float if present; else None. + Not used here since age_row is None. + """ + val = _extract_after_colon(x) + if not val: + return None + # remove non-digit except dot + m = re.findall(r"[\d.]+", val) + if not m: + return None + try: + return float(m[0]) + except Exception: + return None + +def convert_gender(x): + """ + Convert gender to binary: female->0, male->1; else None. + Not used here since gender_row is None. + """ + val = _extract_after_colon(x).lower() + if not val: + return None + if val in {"f", "female", "woman", "women"}: + return 0 + if val in {"m", "male", "man", "men"}: + return 1 + return None + +# 3) Initial filtering and metadata saving +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (only if clinical trait data available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + clinical_preview = preview_df(selected_clinical_df) + print({"clinical_preview": clinical_preview}) + + # Ensure output directory exists and save + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file, index=True) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# Affymetrix probe set IDs detected (e.g., '11715100_at'); mapping to human gene symbols is required. +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# 1) Identify the appropriate columns for probe IDs and gene symbols in the annotation +probe_col = 'ID' +gene_symbol_col = 'Gene Symbol' + +# 2) Build the probe-to-gene mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_symbol_col) + +# 3) Apply the mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene matrix +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +# Use in-memory clinical df if available; otherwise load from saved file +try: + clinical_df_to_use = selected_clinical_df +except NameError: + clinical_df_to_use = pd.read_csv(out_clinical_data_file, index_col=0) + +linked_data = geo_link_clinical_genetic_data(clinical_df_to_use, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias checks and removal of biased covariates +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and metadata saving +note = "INFO: Trait defined as PET (post-ET MF) vs other MF subtypes. Age and Gender not available in series matrix." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE174060.py b/output/preprocess/Essential_Thrombocythemia/code/GSE174060.py new file mode 100644 index 0000000000000000000000000000000000000000..6682211f80d6951e38a4a17694174544d406f0e2 --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE174060.py @@ -0,0 +1,199 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE174060" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE174060" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE174060.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE174060.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE174060.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import pandas as pd + +# 1) Gene expression availability (based on series description) +is_gene_available = True + +# 2) Variable availability +trait_row = 4 # diagnosis +age_row = 2 # age +gender_row = 3 # Sex + +def _after_colon(value): + if value is None: + return None + s = str(value) + parts = s.split(":", 1) + v = parts[1] if len(parts) > 1 else parts[0] + return v.strip() + +# 2.2 Converters +def convert_trait(x): + v = _after_colon(x) + if v is None or v == "": + return None + v_low = v.lower().strip() + # Positive ET definitions + et_pos = {"et", "essential thrombocythemia", "essential thrombocythaemia"} + # Explicit negatives seen in this dataset and common variants + negatives = { + "healthy control", "control", + "pv", "polycythemia vera", + "pmf", "primary myelofibrosis", + "ppv-mf", "pet-mf", "smf", "secondary mf", + "post-pv-mf", "post-et-mf" + } + if v_low in et_pos: + return 1 + if v_low in negatives: + return 0 + # Heuristics: avoid mapping post-ET-MF (contains et but is not ET) + if v_low.startswith("post-et") or "post-et" in v_low or "p et" in v_low or "pet-mf" in v_low: + return 0 + # If it contains 'polycythemia' or 'myelofibrosis' it is not ET + if "polycythemia" in v_low or "myelofibrosis" in v_low: + return 0 + # Unknown diagnosis -> None + return None + +def convert_age(x): + v = _after_colon(x) + if v is None or v == "": + return None + v = v.strip() + if v.lower() in {"na", "n/a", "unknown"}: + return None + try: + return float(v) + except Exception: + return None + +def convert_gender(x): + v = _after_colon(x) + if v is None or v == "": + return None + v_low = v.lower().strip() + if v_low in {"f", "female"}: + return 0 + if v_low in {"m", "male"}: + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (only if trait_row available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print(preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify the appropriate columns for mapping: +# - Probe/ID column matches the expression data index: 'ID' +# - Gene symbol information is embedded in 'gene_assignment' +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='gene_assignment') + +# Apply mapping to convert probe-level data to gene-level data +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias checking and removal of biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +note = "INFO: Affymetrix transcript-cluster IDs mapped via 'gene_assignment'; trait is ET vs others; included Age and Gender." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE55976.py b/output/preprocess/Essential_Thrombocythemia/code/GSE55976.py new file mode 100644 index 0000000000000000000000000000000000000000..0b6a60ed267463045d850e7e2c3b4f5269e4a125 --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE55976.py @@ -0,0 +1,194 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE55976" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE55976" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE55976.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE55976.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE55976.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re + +# 1) Gene Expression Data Availability +is_gene_available = True # cDNA microarray gene expression profiling per series summary + +# 2) Variable Availability and Converters +# From the sample characteristics dictionary: +# 0: subject condition (contains ET and non-ET labels) +# 1: cell type (not needed for this step) +trait_row = 0 +age_row = None +gender_row = None + +def convert_trait(x): + if x is None: + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + val = s.strip().lower() + # Map ET (both JAK2+/-) to 1, other conditions (including healthy) to 0 + if ('essential thrombocythemia' in val) or ('essential thrombocytosis' in val) or re.search(r'\bet\b', val): + return 1 + known_non_et_terms = [ + 'healthy', 'polycythemia vera', 'pv', 'primary myelofibrosis', 'pmf', + 'chronic myelogenous leukemia', 'cml' + ] + if any(k in val for k in known_non_et_terms): + return 0 + return None + +def convert_age(x): + if x is None: + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip() + m = re.search(r'[-+]?\d*\.?\d+', s) + return float(m.group()) if m else None + +def convert_gender(x): + if x is None: + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + val = s.strip().lower() + if val in ['female', 'f', 'woman', 'women', 'girl']: + return 0 + if val in ['male', 'm', 'man', 'men', 'boy']: + return 1 + return None + +# 3) Save Metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait_row is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print("Selected clinical features preview:", preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# The provided identifiers are numeric strings (e.g., '6590728'), not standard human gene symbols. +requires_gene_mapping = True +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Map probe IDs to gene symbols based on annotation preview: +# Probe identifier column: 'ID' (matches numeric strings like '6590728') +# Gene symbol column: 'GENE SYMBOL' +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='GENE SYMBOL') + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(gene_data, mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1) Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2) Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3) Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4) Assess bias and drop biased demographics +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5) Final validation and metadata saving +# Ensure native Python types for JSON serialization +is_gene_available = bool((normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0)) +is_trait_available = bool((trait in linked_data.columns) and (linked_data[trait].notna().sum() > 0)) +is_trait_biased = bool(is_trait_biased) +note = str("INFO: Trait derived from 'subject condition' (ET vs non-ET). " + "No age/gender fields available in annotations. " + "Samples include mixed cell types (CD34+ and granulocytes).") + +# Ensure the metadata directory exists (file creation is handled inside the function) +os.makedirs(os.path.dirname(json_path), exist_ok=True) + +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6) Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE57793.py b/output/preprocess/Essential_Thrombocythemia/code/GSE57793.py new file mode 100644 index 0000000000000000000000000000000000000000..87c81f0e445e746e73e33edec606ffa72a408162 --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE57793.py @@ -0,0 +1,201 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE57793" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE57793" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE57793.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE57793.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE57793.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression availability (based on series description: microarray gene expression) +is_gene_available = True + +# 2) Variable availability and conversion functions + +# Trait (Essential Thrombocythemia) is determined from "disease state" at row 0 +trait_row = 0 + +# Age and Gender are not present in the sample characteristics dictionary +age_row = None +gender_row = None + +def _extract_value(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + if not isinstance(x, str): + x = str(x) + parts = x.split(":", 1) + val = parts[1] if len(parts) > 1 else parts[0] + return val.strip() if val is not None else None + +def convert_trait(x): + val = _extract_value(x) + if val is None: + return None + v = val.strip().lower() + # Normalize common spellings + v = v.replace('thrombocythaemia', 'thrombocythemia') + # Map ET to 1, others (PV, PMF) to 0 + if re.search(r'\bet\b', v) or 'essential thrombocythemia' in v: + return 1 + if re.search(r'\bpv\b', v) or 'polycythemia vera' in v: + return 0 + if re.search(r'\bpmf\b', v) or 'primary myelofibrosis' in v or 'myelofibrosis' in v: + return 0 + return None + +def convert_age(x): + val = _extract_value(x) + if val is None: + return None + # Extract first number as age + m = re.search(r'(\d+(\.\d+)?)', val) + if m: + try: + return float(m.group(1)) + except Exception: + return None + return None + +def convert_gender(x): + val = _extract_value(x) + if val is None: + return None + v = val.strip().lower() + if v in ['male', 'm', 'man']: + return 1 + if v in ['female', 'f', 'woman']: + return 0 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=None, + gender_row=gender_row, + convert_gender=None + ) + clinical_preview = preview_df(selected_clinical_df) + print("Clinical data preview:", clinical_preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify the appropriate columns for probe IDs and gene symbols based on the annotation preview +probe_id_col = 'ID' +gene_symbol_col = 'Gene Symbol' + +# 2. Build the mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_id_col, gene_col=gene_symbol_col) + +# 3. Apply mapping to convert probe-level data to gene-level data +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1. Normalize gene symbols and save +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +# Ensure clinical data is available in the current session; if not, reload it +try: + selected_clinical_df +except NameError: + selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) + +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias check and remove biased demographic features if necessary +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: ET vs non-ET across MPN subtypes; no age/gender available." +) + +# 6. Conditionally save linked data +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE61629.py b/output/preprocess/Essential_Thrombocythemia/code/GSE61629.py new file mode 100644 index 0000000000000000000000000000000000000000..31802af7c2c07cfc6a7f35551892fc524d2d699f --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE61629.py @@ -0,0 +1,200 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE61629" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE61629" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE61629.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE61629.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE61629.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re + +# 1) Gene expression data availability +is_gene_available = True # Microarray gene expression per background info + +# 2) Variable availability and data type conversion + +# From Sample Characteristics Dictionary: +# {0: ['disease state: control', 'disease state: PV', 'disease state: ET', 'disease state: PMF'], +# 1: ['treatment: untreated', 'tissue: blood'], +# 2: ['tissue: Whole blood']} + +# Availability +trait_row = 0 +age_row = None +gender_row = None + +# Converters +def convert_trait(x): + if x is None: + return None + if isinstance(x, str): + part = x.split(":", 1)[-1].strip().lower() if ":" in x else x.strip().lower() + # Map ET vs control; PV/PMF treated as not our target (None) + if part in ["et", "essential thrombocythemia", "essential thrombocythaemia"]: + return 1 + if part in ["control", "healthy", "normal"]: + return 0 + if part in ["pv", "polycythemia vera", "polycythaemia vera", "pmf", "primary myelofibrosis"]: + return None + # Token-based fallback + tokens = re.split(r"[^\w]+", part) + if "et" in tokens: + return 1 + if "control" in tokens or "healthy" in tokens or "normal" in tokens: + return 0 + return None + +def convert_age(x): + if x is None: + return None + if isinstance(x, str): + part = x.split(":", 1)[-1] if ":" in x else x + nums = re.findall(r"\d+\.?\d*", part) + if nums: + try: + return float(nums[0]) + except: + return None + if isinstance(x, (int, float)): + return float(x) + return None + +def convert_gender(x): + if x is None: + return None + if isinstance(x, str): + part = x.split(":", 1)[-1].strip().lower() if ":" in x else x.strip().lower() + if part in ["male", "m", "man"]: + return 1 + if part in ["female", "f", "woman", "women"]: + return 0 + return None + +# 3) Save Metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if trait data available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age if age_row is not None else None, + gender_row=gender_row, + convert_gender=convert_gender if gender_row is not None else None + ) + + # Preview and save + preview = preview_df(selected_clinical_df) + print("Clinical features preview:", preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify columns for mapping: probe IDs in gene_data index match 'ID' in annotation; gene symbols are in 'Gene Symbol' +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='Gene Symbol') + +# Apply mapping: convert probe-level data to gene-level data +probe_level_data = gene_data +gene_data = apply_gene_mapping(expression_df=probe_level_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save gene-level data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link the clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Determine bias and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# Prepare flags for final validation (ensure pure Python bools for JSON serialization) +is_gene_available_final = bool((normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0)) +is_trait_available_final = bool((trait in selected_clinical_df.index) and bool(selected_clinical_df.loc[trait].notna().any())) +is_trait_biased_flag = bool(is_trait_biased) + +note = "INFO: Non-ET disease states (PV/PMF) were treated as missing trait and excluded during linking/cleanup." + +# 5. Final validation and save cohort info +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available_final, + is_trait_available=is_trait_available_final, + is_biased=is_trait_biased_flag, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/GSE65161.py b/output/preprocess/Essential_Thrombocythemia/code/GSE65161.py new file mode 100644 index 0000000000000000000000000000000000000000..bd5a52c9ea085f64d35778bec6a6d03d53778417 --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/GSE65161.py @@ -0,0 +1,119 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" +cohort = "GSE65161" + +# Input paths +in_trait_dir = "../DATA/GEO/Essential_Thrombocythemia" +in_cohort_dir = "../DATA/GEO/Essential_Thrombocythemia/GSE65161" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/GSE65161.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/GSE65161.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/GSE65161.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +# Determine data availability based on provided sample characteristics and background info +# Given cell lines (AML/CML) and treatments, there is no Essential Thrombocythemia phenotype variation in this dataset. + +# 1) Gene expression data availability (non-miRNA/methylation, likely expression profiling given the study focus) +is_gene_available = True + +# 2) Variable availability +trait_row = None # No ET-related trait variation present in sample characteristics (all AML/CML cell lines) +age_row = None # No age information for cell lines +gender_row = None # No gender information for cell lines + +# 2.2) Conversion functions +def _after_colon(val): + if val is None: + return None + if isinstance(val, (int, float)): + return val + s = str(val) + parts = s.split(":", 1) + s = parts[1] if len(parts) == 2 else parts[0] + return s.strip() + +def convert_trait(x): + # Binary: 1 = Essential Thrombocythemia, 0 = Non-ET; unknown -> None + v = _after_colon(x) + if v is None: + return None + v_low = v.lower() + # Positive mappings + if any(k in v_low for k in ["essential thrombocythemia", "essential-thrombocythemia", "et (essential thrombocythemia)"]): + return 1 + # Negative mappings (common myeloid malignancies distinct from ET) + if any(k in v_low for k in ["aml", "acute myeloid", "cml", "chronic myelogenous", "ml-l af9", "mll-af9", "mll-af4"]): + return 0 + # If explicitly says control/healthy and the trait is ET, treat as 0 + if any(k in v_low for k in ["control", "healthy", "normal"]): + return 0 + return None + +def convert_age(x): + # Continuous age in years; extract numeric value if present, else None + v = _after_colon(x) + if v is None: + return None + import re + nums = re.findall(r"[0-9]+\.?[0-9]*", str(v)) + if not nums: + return None + try: + return float(nums[0]) + except Exception: + return None + +def convert_gender(x): + # Binary: female=0, male=1; unknown -> None + v = _after_colon(x) + if v is None: + return None + v_low = str(v).strip().lower() + if v_low in ["male", "m", "man", "boy"]: + return 1 + if v_low in ["female", "f", "woman", "girl"]: + return 0 + # Sometimes values like '1'/'0' are used + if v_low == "1": + return 1 + if v_low == "0": + return 0 + return None + +# 3) Initial filtering and save metadata +is_trait_available = trait_row is not None +validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction is skipped because trait_row is None (no clinical trait data available for ET). \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/code/TCGA.py b/output/preprocess/Essential_Thrombocythemia/code/TCGA.py new file mode 100644 index 0000000000000000000000000000000000000000..f79ee2f551466b1b15b52bb045df7ef94e52b26d --- /dev/null +++ b/output/preprocess/Essential_Thrombocythemia/code/TCGA.py @@ -0,0 +1,68 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Essential_Thrombocythemia" + +# Input paths +tcga_root_dir = "../DATA/TCGA" + +# Output paths +out_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/TCGA.csv" +out_gene_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/gene_data/TCGA.csv" +out_clinical_data_file = "./output/z3/preprocess/Essential_Thrombocythemia/clinical_data/TCGA.csv" +json_path = "./output/z3/preprocess/Essential_Thrombocythemia/cohort_info.json" + + +# Step 1: Initial Data Loading +import os +import pandas as pd + +# Step 1: Review subdirectories and select the best match for Essential Thrombocythemia (ET) +provided_subdirs = [ + 'TCGA_lower_grade_glioma_and_glioblastoma_(GBMLGG)', 'TCGA_Uterine_Carcinosarcoma_(UCS)', + 'TCGA_Thyroid_Cancer_(THCA)', 'TCGA_Thymoma_(THYM)', 'TCGA_Testicular_Cancer_(TGCT)', + 'TCGA_Stomach_Cancer_(STAD)', 'TCGA_Sarcoma_(SARC)', 'TCGA_Rectal_Cancer_(READ)', + 'TCGA_Prostate_Cancer_(PRAD)', 'TCGA_Pheochromocytoma_Paraganglioma_(PCPG)', + 'TCGA_Pancreatic_Cancer_(PAAD)', 'TCGA_Ovarian_Cancer_(OV)', 'TCGA_Ocular_melanomas_(UVM)', + 'TCGA_Mesothelioma_(MESO)', 'TCGA_Melanoma_(SKCM)', 'TCGA_Lung_Squamous_Cell_Carcinoma_(LUSC)', + 'TCGA_Lung_Cancer_(LUNG)', 'TCGA_Lung_Adenocarcinoma_(LUAD)', 'TCGA_Lower_Grade_Glioma_(LGG)', + 'TCGA_Liver_Cancer_(LIHC)', 'TCGA_Large_Bcell_Lymphoma_(DLBC)', 'TCGA_Kidney_Papillary_Cell_Carcinoma_(KIRP)', + 'TCGA_Kidney_Clear_Cell_Carcinoma_(KIRC)', 'TCGA_Kidney_Chromophobe_(KICH)', + 'TCGA_Head_and_Neck_Cancer_(HNSC)', 'TCGA_Glioblastoma_(GBM)', 'TCGA_Esophageal_Cancer_(ESCA)', + 'TCGA_Endometrioid_Cancer_(UCEC)', 'TCGA_Colon_and_Rectal_Cancer_(COADREAD)', + 'TCGA_Colon_Cancer_(COAD)', 'TCGA_Cervical_Cancer_(CESC)', 'TCGA_Breast_Cancer_(BRCA)', + 'TCGA_Bladder_Cancer_(BLCA)', 'TCGA_Bile_Duct_Cancer_(CHOL)', 'TCGA_Adrenocortical_Cancer_(ACC)', + 'TCGA_Acute_Myeloid_Leukemia_(LAML)' +] + +# Define trait-related keywords for ET; avoid broad terms that could incorrectly match unrelated cohorts +keywords = ['essential thrombocythemia', 'thrombocythemia', 'myeloproliferative', 'mpn', 'polycythemia', 'myelofibrosis'] + +selected_subdirs = [d for d in provided_subdirs if any(k in d.lower() for k in keywords)] +selected_subdir = selected_subdirs[0] if selected_subdirs else None + +clinical_df = None +genetic_df = None + +if selected_subdir is None: + # No suitable TCGA cohort for Essential Thrombocythemia; record skip and finish + _ = validate_and_save_cohort_info( + is_final=False, + cohort="TCGA", + info_path=json_path, + is_gene_available=False, + is_trait_available=False + ) + print("No suitable TCGA cohort found for Essential Thrombocythemia. Skipping.") +else: + # Step 2: Identify clinical and genetic file paths + cohort_dir = os.path.join(tcga_root_dir, selected_subdir) + clinical_file_path, genetic_file_path = tcga_get_relevant_filepaths(cohort_dir) + + # Step 3: Load both files as DataFrames + clinical_df = pd.read_csv(clinical_file_path, sep='\t', index_col=0, low_memory=False) + genetic_df = pd.read_csv(genetic_file_path, sep='\t', index_col=0, low_memory=False) + + # Step 4: Print clinical columns + print(clinical_df.columns.tolist()) \ No newline at end of file diff --git a/output/preprocess/Essential_Thrombocythemia/cohort_info.json b/output/preprocess/Essential_Thrombocythemia/cohort_info.json index ca80ce4740a6eb0f95b11ff23f2701878d90afc6..22d7e068cee1bf8ace21667a1ca105071465366b 100644 --- a/output/preprocess/Essential_Thrombocythemia/cohort_info.json +++ b/output/preprocess/Essential_Thrombocythemia/cohort_info.json @@ -1,102 +1 @@ -{ - "GSE65161": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 24 - }, - "GSE61629": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 54 - }, - "GSE57793": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 66 - }, - "GSE55976": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 39 - }, - "GSE174060": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 36 - }, - "GSE159514": { - "is_usable": false, - "is_gene_available": false, - "is_trait_available": false, - "is_available": false, - "is_biased": null, - "has_age": null, - "has_gender": null, - "sample_size": null - }, - "GSE12295": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 95 - }, - "GSE103237": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": true, - "sample_size": 39 - }, - "GSE103176": { - "is_usable": false, - "is_gene_available": false, - "is_trait_available": false, - "is_available": false, - "is_biased": null, - "has_age": null, - "has_gender": null, - "sample_size": null - }, - "TCGA": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": true, - "has_gender": true, - "sample_size": 79 - } -} \ No newline at end of file +{"GSE65161": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE61629": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 29, "note": "INFO: Non-ET disease states (PV/PMF) were treated as missing trait and excluded during linking/cleanup."}, "GSE57793": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 66, "note": "INFO: ET vs non-ET across MPN subtypes; no age/gender available."}, "GSE55976": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 39, "note": "INFO: Trait derived from 'subject condition' (ET vs non-ET). No age/gender fields available in annotations. Samples include mixed cell types (CD34+ and granulocytes)."}, "GSE174060": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": true, "has_gender": true, "sample_size": 36, "note": "INFO: Affymetrix transcript-cluster IDs mapped via 'gene_assignment'; trait is ET vs others; included Age and Gender."}, "GSE159514": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 114, "note": "INFO: Trait defined as PET (post-ET MF) vs other MF subtypes. Age and Gender not available in series matrix."}, "GSE12295": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": false, "sample_size": 95, "note": "INFO: Age and Gender not available; cohort mixes ET, RT, and normal controls; trait binarized as ET vs others."}, "GSE103237": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": true, "sample_size": 65, "note": "INFO: Gene symbols normalized via NCBI synonyms; probe-to-gene mapped with equal-split; missing values handled per protocol."}, "GSE103176": {"is_usable": false, "is_gene_available": false, "is_trait_available": true, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": "ERROR: Gene identifier mapping/normalization failed. Probe/set IDs (e.g., '14qI-*_st') did not map to human gene symbols in the available SOFT annotation; normalization removed all gene rows. Gene expression unavailable for analysis."}, "TCGA": {"is_usable": false, "is_gene_available": false, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}} \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE43580.csv b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE43580.csv index 5fb41a4f57eebea1f5097d0e32cb27e14f7f85bb..9a3ff629fcbb8d0662b3b767b3a21af23ac1e69b 100644 --- a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE43580.csv +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE43580.csv @@ -1,4 +1,4 @@ -GSM1065725,GSM1065726,GSM1065727,GSM1065728,GSM1065729,GSM1065730,GSM1065731,GSM1065732,GSM1065733,GSM1065734,GSM1065735,GSM1065736,GSM1065737,GSM1065738,GSM1065739,GSM1065740,GSM1065741,GSM1065742,GSM1065743,GSM1065744,GSM1065745,GSM1065746,GSM1065747,GSM1065748,GSM1065749,GSM1065750,GSM1065751,GSM1065752,GSM1065753,GSM1065754,GSM1065755,GSM1065756,GSM1065757,GSM1065758,GSM1065759,GSM1065760,GSM1065761,GSM1065762,GSM1065763,GSM1065764,GSM1065765,GSM1065766,GSM1065767,GSM1065768,GSM1065769,GSM1065770,GSM1065771,GSM1065772,GSM1065773,GSM1065774,GSM1065775,GSM1065776,GSM1065777,GSM1065778,GSM1065779,GSM1065780,GSM1065781,GSM1065782,GSM1065783,GSM1065784,GSM1065785,GSM1065786,GSM1065787,GSM1065788,GSM1065789,GSM1065790,GSM1065791,GSM1065792,GSM1065793,GSM1065794,GSM1065795,GSM1065796,GSM1065797,GSM1065798,GSM1065799,GSM1065800,GSM1065801,GSM1065802,GSM1065803,GSM1065804,GSM1065805,GSM1065806,GSM1065807,GSM1065808,GSM1065809,GSM1065810,GSM1065811,GSM1065812,GSM1065813,GSM1065814,GSM1065815,GSM1065816,GSM1065817,GSM1065818,GSM1065819,GSM1065820,GSM1065821,GSM1065822,GSM1065823,GSM1065824,GSM1065825,GSM1065826,GSM1065827,GSM1065828,GSM1065829,GSM1065830,GSM1065831,GSM1065832,GSM1065833,GSM1065834,GSM1065835,GSM1065836,GSM1065837,GSM1065838,GSM1065839,GSM1065840,GSM1065841,GSM1065842,GSM1065843,GSM1065844,GSM1065845,GSM1065846,GSM1065847,GSM1065848,GSM1065849,GSM1065850,GSM1065851,GSM1065852,GSM1065853,GSM1065854,GSM1065855,GSM1065856,GSM1065857,GSM1065858,GSM1065859,GSM1065860,GSM1065861,GSM1065862,GSM1065863,GSM1065864,GSM1065865,GSM1065866,GSM1065867,GSM1065868,GSM1065869,GSM1065870,GSM1065871,GSM1065872,GSM1065873,GSM1065874 -0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -65.0,61.0,43.0,44.0,60.0,58.0,67.0,52.0,43.0,66.0,47.0,56.0,62.0,69.0,60.0,47.0,69.0,49.0,68.0,65.0,52.0,67.0,70.0,60.0,46.0,52.0,66.0,63.0,57.0,56.0,39.0,63.0,68.0,55.0,71.0,55.0,54.0,72.0,74.0,59.0,73.0,55.0,52.0,62.0,46.0,70.0,54.0,67.0,52.0,56.0,52.0,77.0,52.0,57.0,69.0,55.0,71.0,71.0,61.0,53.0,49.0,51.0,65.0,58.0,55.0,59.0,53.0,42.0,57.0,55.0,49.0,49.0,52.0,52.0,70.0,55.0,61.0,42.0,57.0,81.0,49.0,62.0,72.0,46.0,64.0,61.0,79.0,56.0,,79.0,54.0,57.0,54.0,42.0,71.0,76.0,60.0,53.0,48.0,73.0,48.0,69.0,64.0,58.0,55.0,56.0,54.0,73.0,77.0,51.0,55.0,59.0,58.0,65.0,66.0,55.0,68.0,64.0,70.0,64.0,52.0,62.0,63.0,62.0,58.0,58.0,56.0,55.0,68.0,69.0,62.0,64.0,70.0,,77.0,65.0,71.0,54.0,69.0,72.0,80.0,57.0,69.0,53.0,53.0,64.0,58.0,64.0,46.0,56.0 -1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 +,GSM1065725,GSM1065726,GSM1065727,GSM1065728,GSM1065729,GSM1065730,GSM1065731,GSM1065732,GSM1065733,GSM1065734,GSM1065735,GSM1065736,GSM1065737,GSM1065738,GSM1065739,GSM1065740,GSM1065741,GSM1065742,GSM1065743,GSM1065744,GSM1065745,GSM1065746,GSM1065747,GSM1065748,GSM1065749,GSM1065750,GSM1065751,GSM1065752,GSM1065753,GSM1065754,GSM1065755,GSM1065756,GSM1065757,GSM1065758,GSM1065759,GSM1065760,GSM1065761,GSM1065762,GSM1065763,GSM1065764,GSM1065765,GSM1065766,GSM1065767,GSM1065768,GSM1065769,GSM1065770,GSM1065771,GSM1065772,GSM1065773,GSM1065774,GSM1065775,GSM1065776,GSM1065777,GSM1065778,GSM1065779,GSM1065780,GSM1065781,GSM1065782,GSM1065783,GSM1065784,GSM1065785,GSM1065786,GSM1065787,GSM1065788,GSM1065789,GSM1065790,GSM1065791,GSM1065792,GSM1065793,GSM1065794,GSM1065795,GSM1065796,GSM1065797,GSM1065798,GSM1065799,GSM1065800,GSM1065801,GSM1065802,GSM1065803,GSM1065804,GSM1065805,GSM1065806,GSM1065807,GSM1065808,GSM1065809,GSM1065810,GSM1065811,GSM1065812,GSM1065813,GSM1065814,GSM1065815,GSM1065816,GSM1065817,GSM1065818,GSM1065819,GSM1065820,GSM1065821,GSM1065822,GSM1065823,GSM1065824,GSM1065825,GSM1065826,GSM1065827,GSM1065828,GSM1065829,GSM1065830,GSM1065831,GSM1065832,GSM1065833,GSM1065834,GSM1065835,GSM1065836,GSM1065837,GSM1065838,GSM1065839,GSM1065840,GSM1065841,GSM1065842,GSM1065843,GSM1065844,GSM1065845,GSM1065846,GSM1065847,GSM1065848,GSM1065849,GSM1065850,GSM1065851,GSM1065852,GSM1065853,GSM1065854,GSM1065855,GSM1065856,GSM1065857,GSM1065858,GSM1065859,GSM1065860,GSM1065861,GSM1065862,GSM1065863,GSM1065864,GSM1065865,GSM1065866,GSM1065867,GSM1065868,GSM1065869,GSM1065870,GSM1065871,GSM1065872,GSM1065873,GSM1065874 +Gastroesophageal_reflux_disease_(GERD),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Age,65.0,61.0,43.0,44.0,60.0,58.0,67.0,52.0,43.0,66.0,47.0,56.0,62.0,69.0,60.0,47.0,69.0,49.0,68.0,65.0,52.0,67.0,70.0,60.0,46.0,52.0,66.0,63.0,57.0,56.0,39.0,63.0,68.0,55.0,71.0,55.0,54.0,72.0,74.0,59.0,73.0,55.0,52.0,62.0,46.0,70.0,54.0,67.0,52.0,56.0,52.0,77.0,52.0,57.0,69.0,55.0,71.0,71.0,61.0,53.0,49.0,51.0,65.0,58.0,55.0,59.0,53.0,42.0,57.0,55.0,49.0,49.0,52.0,52.0,70.0,55.0,61.0,42.0,57.0,81.0,49.0,62.0,72.0,46.0,64.0,61.0,79.0,56.0,,79.0,54.0,57.0,54.0,42.0,71.0,76.0,60.0,53.0,48.0,73.0,48.0,69.0,64.0,58.0,55.0,56.0,54.0,73.0,77.0,51.0,55.0,59.0,58.0,65.0,66.0,55.0,68.0,64.0,70.0,64.0,52.0,62.0,63.0,62.0,58.0,58.0,56.0,55.0,68.0,69.0,62.0,64.0,70.0,,77.0,65.0,71.0,54.0,69.0,72.0,80.0,57.0,69.0,53.0,53.0,64.0,58.0,64.0,46.0,56.0 +Gender,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0 diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE77563.csv b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE77563.csv index 8a15ea384a884c670cee4a2793f0b19d2f7d6d41..be7050147e0b4026596851d87e0fcdca7171a211 100644 --- a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE77563.csv +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE77563.csv @@ -1,4 +1,4 @@ -,GSM2054504,GSM2054505,GSM2054506,GSM2054507,GSM2054508,GSM2054509,GSM2054510,GSM2054511,GSM2054512,GSM2054513,GSM2054514,GSM2054515,GSM2054516,GSM2054517,GSM2054518,GSM2054519,GSM2054520,GSM2054521,GSM2054522,GSM2054523,GSM2054524,GSM2054525,GSM2054526,GSM2054527,GSM2054528,GSM2054529,GSM2054530,GSM2054531,GSM2054532,GSM2054533,GSM2054534,GSM2054535,GSM2054536,GSM2054537,GSM2054538,GSM2054539,GSM2054540,GSM2054541,GSM2054542,GSM2054543 -Gastroesophageal_reflux_disease_(GERD),1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 -Age,56.0,53.0,62.0,62.0,56.0,63.0,79.0,75.0,71.0,54.0,59.0,54.0,60.0,64.0,77.0,64.0,61.0,52.0,62.0,50.0,63.0,50.0,58.0,50.0,60.0,60.0,59.0,51.0,54.0,53.0,53.0,53.0,59.0,83.0,61.0,71.0,77.0,84.0,45.0,81.0 -Gender,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 +GSM2054504,GSM2054505,GSM2054506,GSM2054507,GSM2054508,GSM2054509,GSM2054510,GSM2054511,GSM2054512,GSM2054513,GSM2054514,GSM2054515,GSM2054516,GSM2054517,GSM2054518,GSM2054519,GSM2054520,GSM2054521,GSM2054522,GSM2054523,GSM2054524,GSM2054525,GSM2054526,GSM2054527,GSM2054528,GSM2054529,GSM2054530,GSM2054531,GSM2054532,GSM2054533,GSM2054534,GSM2054535,GSM2054536,GSM2054537,GSM2054538,GSM2054539,GSM2054540,GSM2054541,GSM2054542,GSM2054543 +1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0 +56.0,53.0,62.0,62.0,56.0,63.0,79.0,75.0,71.0,54.0,59.0,54.0,60.0,64.0,77.0,64.0,61.0,52.0,62.0,50.0,63.0,50.0,58.0,50.0,60.0,60.0,59.0,51.0,54.0,53.0,53.0,53.0,59.0,83.0,61.0,71.0,77.0,84.0,45.0,81.0 +0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0 diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE28302.py b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE28302.py new file mode 100644 index 0000000000000000000000000000000000000000..927c99c82cb021d81dbefc79818ae4ca32700c43 --- /dev/null +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE28302.py @@ -0,0 +1,355 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gastroesophageal_reflux_disease_(GERD)" +cohort = "GSE28302" + +# Input paths +in_trait_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)" +in_cohort_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)/GSE28302" + +# Output paths +out_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/GSE28302.csv" +out_gene_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE28302.csv" +out_clinical_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE28302.csv" +json_path = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import re + +# 1) Gene Expression Data Availability +is_gene_available = True # Illumina whole-genome expression profiling on total RNA (gene expression microarray) + +# 2) Variable Availability and Data Type Conversion + +# Trait (GERD) is not explicitly available; tissue type (row 0) does not reliably indicate GERD status. +trait_row = None + +def convert_trait(x): + # Trait not available for this cohort + return None + +# Age +age_row = 4 +def convert_age(x): + if x is None: + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip() + m = re.search(r'[-+]?\d+(\.\d+)?', s) + if not m: + return None + try: + val = float(m.group(0)) + return val + except Exception: + return None + +# Gender +gender_row = 3 +def convert_gender(x): + if x is None: + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + s = s.strip().lower() + if s in ['female', 'f']: + return 0 + if s in ['male', 'm']: + return 1 + return None + +# 3) Save Metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (skip because trait_row is None) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + _ = preview_df(selected_clinical_df) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file, index=True) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +print("requires_gene_mapping = True") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Heuristic selection of identifier and gene columns with robust fallback to RefSeq accessions when symbols are unavailable. + +import re + +# Preserve original expression data +expr_df = gene_data.copy() + +# 1) Decide identifier column by maximal overlap with probe IDs in expr_df +id_overlap_counts = {} +for col in gene_annotation.columns: + try: + overlap = gene_annotation[col].astype(str).isin(expr_df.index).sum() + except Exception: + overlap = 0 + id_overlap_counts[col] = overlap + +id_col = max(id_overlap_counts, key=id_overlap_counts.get) + +# 2) Decide gene symbol column by maximizing the proportion of cells from which human gene symbols can be extracted +candidate_gene_cols = [c for c in gene_annotation.columns if c != id_col] + +def column_symbol_coverage(series, sample_n=2000): + s = series.astype(str) + if len(s) > sample_n: + s = s.sample(sample_n, random_state=1) + parsed = s.map(lambda x: len(extract_human_gene_symbols(x)) > 0) + return float(parsed.mean()) + +coverage_scores = {} +for col in candidate_gene_cols: + try: + coverage_scores[col] = column_symbol_coverage(gene_annotation[col]) + except Exception: + coverage_scores[col] = 0.0 + +preferred_order = sorted(coverage_scores.items(), key=lambda x: x[1], reverse=True) +gene_col = preferred_order[0][0] if preferred_order else None + +# If symbol coverage is very low, prefer explicit gene symbol-like column names; else we'll likely fallback later +if gene_col is None or coverage_scores.get(gene_col, 0.0) < 0.05: + for cand in ['Gene Symbol', 'Symbol', 'SYMBOL', 'GeneSymbol', 'GENE_SYMBOL', 'Gene Symbols', 'GENE_SYMBOLS', 'Gene']: + if cand in candidate_gene_cols: + gene_col = cand + break +# If still not found, default to GB_ACC (RefSeq accessions) as a fallback gene identifier +if gene_col is None and 'GB_ACC' in candidate_gene_cols: + gene_col = 'GB_ACC' +elif gene_col is None and candidate_gene_cols: + gene_col = candidate_gene_cols[0] +elif gene_col is None: + gene_col = id_col # extreme fallback + +print(f"Selected id_col: {id_col}") +print(f"Selected gene_col (initial): {gene_col}") + +# 3) Build mapping +mapping_df = get_gene_mapping(gene_annotation, prob_col=id_col, gene_col=gene_col) +print(f"Initial mapping_df rows: {len(mapping_df)}") + +# 4) Try mapping to HGNC symbols first +gene_data_symbol = None +try: + gene_data_symbol = apply_gene_mapping(expression_df=expr_df, mapping_df=mapping_df) +except Exception as e: + print(f"WARNING: Symbol mapping failed with error: {e}") + gene_data_symbol = None + +# 5) If symbol mapping is empty or failed, fallback to RefSeq accession mapping (using GB_ACC) +def build_refseq_expression_from_gbacc(annotation_df, prob_col, gbacc_col, expression_df): + # Parse GB_ACC into list of base RefSeq accessions (version-stripped), allow multiple per probe + def parse_refseqs(val: str): + if val is None: + return [] + s = str(val) + # Normalize common delimiters + s = s.replace('///', ';').replace(',', ';') + parts = re.split(r'[;\s]+', s) + parts = [p for p in parts if p] # remove empty + # Keep plausible RefSeq-like tokens and strip version + keep = [] + for p in parts: + # Accept common RefSeq prefixes + if re.match(r'^(?:N[MRP]|X[MR])_\d+(\.\d+)?$', p): + p_base = p.split('.', 1)[0] + keep.append(p_base) + # Deduplicate + return list(dict.fromkeys(keep)) + + ref_map = annotation_df.loc[:, [prob_col, gbacc_col]].dropna() + if ref_map.empty: + return pd.DataFrame() + + ref_map = ref_map.rename(columns={prob_col: 'ID', gbacc_col: 'RefSeq'}) + ref_map['ID'] = ref_map['ID'].astype(str).str.strip() + ref_map = ref_map[ref_map['ID'].isin(expression_df.index)] + if ref_map.empty: + return pd.DataFrame() + + ref_map['RefSeq'] = ref_map['RefSeq'].map(parse_refseqs) + ref_map['num_genes'] = ref_map['RefSeq'].map(lambda x: len(x) if isinstance(x, list) else 0) + ref_map = ref_map[ref_map['num_genes'] > 0] + if ref_map.empty: + return pd.DataFrame() + + ref_map = ref_map.explode('RefSeq').dropna(subset=['RefSeq']) + ref_map.set_index('ID', inplace=True) + + merged = ref_map.join(expression_df, how='inner') + if merged.empty: + return pd.DataFrame() + + expr_cols = [c for c in merged.columns if c not in ['RefSeq', 'num_genes']] + merged[expr_cols] = merged[expr_cols].div(merged['num_genes'].replace(0, 1), axis=0) + refseq_expr = merged.groupby('RefSeq')[expr_cols].sum() + return refseq_expr + +use_symbol_mapping = False +if gene_data_symbol is not None and len(gene_data_symbol) > 0: + gene_data = gene_data_symbol + use_symbol_mapping = True +else: + # Fallback to GB_ACC-based features + if 'GB_ACC' in gene_annotation.columns: + gene_data_refseq = build_refseq_expression_from_gbacc( + annotation_df=gene_annotation, + prob_col=id_col, + gbacc_col='GB_ACC', + expression_df=expr_df + ) + if len(gene_data_refseq) > 0: + gene_data = gene_data_refseq + print("WARNING: Symbol mapping unavailable; using RefSeq (GB_ACC, version-stripped) as features.") + else: + # Last resort: keep probe-level features + gene_data = expr_df + print("WARNING: Mapping to symbols and RefSeq failed; using probe IDs as features.") + else: + gene_data = expr_df + print("WARNING: No GB_ACC column; using probe IDs as features.") + +print(f"Final gene_data shape: {gene_data.shape} | Mapped to symbols: {use_symbol_mapping}") + +# Step 7: Data Normalization and Linking +# Step 7: Data Normalization and Linking with correct metadata handling for missing trait + +import os +import re + +# 1) Normalize only if we truly have HGNC symbols; otherwise keep RefSeq/probe features +def _is_refseq_index(idx) -> bool: + arr = list(idx[:1000]) if len(idx) > 1000 else list(idx) + if len(arr) == 0: + return False + ref_count = 0 + for s in arr: + s = str(s) + if re.match(r'^(?:N[MRP]|X[MR])_\d+(\.\d+)?$', s): + ref_count += 1 + return (ref_count / len(arr)) >= 0.5 + +use_symbol_mapping_inferred = False +try: + use_symbol_mapping_inferred = bool(use_symbol_mapping) +except NameError: + use_symbol_mapping_inferred = not _is_refseq_index(gene_data.index) + +if use_symbol_mapping_inferred: + normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +else: + normalized_gene_data = gene_data.copy() + +# Ensure output directory exists and save gene matrix +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2-6) Proceed only if trait is available; otherwise, record initial metadata and skip linking +if 'trait_row' in globals() and trait_row is not None: + # Prepare clinical features if not already done + if 'selected_clinical_data' not in globals(): + selected_clinical_data = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row if 'age_row' in globals() else None, + convert_age=convert_age if 'convert_age' in globals() else None, + gender_row=gender_row if 'gender_row' in globals() else None, + convert_gender=convert_gender if 'convert_gender' in globals() else None + ) + + linked_data = geo_link_clinical_genetic_data(selected_clinical_data, normalized_gene_data) + + # Handle missing values + linked_data = handle_missing_values(linked_data, trait) + + # Bias assessment + is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + + # Final validation and metadata + note = f"INFO: Trait available; mapped_to_symbols={use_symbol_mapping_inferred}; genes={normalized_gene_data.shape[0]}" + is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note + ) + + if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) + +else: + # Trait unavailable: record initial filtering outcome; do not trigger final validation on empty df + print("INFO: Trait variable unavailable; linking skipped. Saved gene matrix only.") + _ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=False + ) \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE43580.py b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE43580.py new file mode 100644 index 0000000000000000000000000000000000000000..9ba483fc9d071b9a38df165f78442e89af1ba9d6 --- /dev/null +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE43580.py @@ -0,0 +1,330 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gastroesophageal_reflux_disease_(GERD)" +cohort = "GSE43580" + +# Input paths +in_trait_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)" +in_cohort_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)/GSE43580" + +# Output paths +out_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/GSE43580.csv" +out_gene_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE43580.csv" +out_clinical_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE43580.csv" +json_path = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json" + + +# Step 1: Initial Data Loading +import os +import pandas as pd +from tools.preprocess import * + +# 1. Identify the paths to the SOFT file and the matrix file, prioritizing files containing the cohort accession +files = os.listdir(in_cohort_dir) +soft_candidates = [f for f in files if ('soft' in f.lower()) and (cohort in f)] +matrix_candidates = [f for f in files if ('matrix' in f.lower()) and (cohort in f)] + +if not soft_candidates: + soft_candidates = [f for f in files if 'soft' in f.lower()] +if not matrix_candidates: + matrix_candidates = [f for f in files if 'matrix' in f.lower()] + +assert len(soft_candidates) > 0 and len(matrix_candidates) > 0 +soft_file = os.path.join(in_cohort_dir, soft_candidates[0]) +matrix_file = os.path.join(in_cohort_dir, matrix_candidates[0]) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Create an informative clinical features dictionary with feature names as keys +clinical_df = clinical_data.copy() + +# Keep only characteristics rows and drop the identifier column +if '!Sample_geo_accession' in clinical_df.columns: + characteristics_mask = clinical_df['!Sample_geo_accession'].astype(str).str.contains('!Sample_characteristics_ch1', na=False) + clinical_df = clinical_df[characteristics_mask].copy() + clinical_df = clinical_df.drop(columns=['!Sample_geo_accession'], errors='ignore') + +# Derive feature names from the text before the colon in the first non-null value per row +new_index = [] +seen = {} +for i, row in clinical_df.iterrows(): + vals = [v for v in row.tolist() if pd.notnull(v)] + label = None + for v in vals: + if isinstance(v, str) and (':' in v): + label = v.split(':', 1)[0].strip() + break + if label is None: + label = f"feature_{i}" + count = seen.get(label, 0) + final_label = f"{label}#{count+1}" if count > 0 else label + seen[label] = count + 1 + new_index.append(final_label) + +clinical_df.index = new_index + +# Limit number of unique values per feature explicitly +sample_characteristics_dict = get_unique_values_by_row(clinical_df, max_len=30) + +# 4. Print background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import pandas as pd +import numpy as np + +# 1) Determine gene expression availability from background info +is_gene_available = True # Series explicitly states "Gene Expression Profiles" + +# Helper: extract header (text before colon) in a cell +def _extract_header_from_cell(x: str) -> str: + if not isinstance(x, str): + return None + if ':' in x: + return x.split(':', 1)[0].strip().lower() + return None + +# Build a map from row index to header (by inspecting the first valid cell in each row) +row_header_map = {} +for ridx, row in clinical_data.iterrows(): + header = None + for v in row.values: + header = _extract_header_from_cell(v) + if header: + break + row_header_map[ridx] = header + +# Utility: find row by exact header or by predicate +def find_row_by_header(targets_exact=None, contains_any=None): + targets_exact = [t.lower() for t in (targets_exact or [])] + contains_any = [t.lower() for t in (contains_any or [])] + # exact match first + for ridx, header in row_header_map.items(): + if header and header in targets_exact: + return ridx + # then contains_any + for ridx, header in row_header_map.items(): + if header and any(tok in header for tok in contains_any): + return ridx + return None + +# 2) Identify rows for trait (GERD), age, gender + +# Trait row: look for 'clinical diagnosis patient' or similar, then ensure GERD is representable +trait_row = find_row_by_header( + targets_exact=['clinical diagnosis patient'], + contains_any=['diagnosis', 'diagnoses'] +) + +# Age row: prioritize 'age at excision (years)', otherwise fall back to typical age headers +age_row = None +preferred_age_headers = [ + 'age at excision (years)', 'age at diagnosis (years)', 'age at collection (years)', + 'age (years)', 'age' +] +age_row = find_row_by_header(targets_exact=preferred_age_headers, contains_any=['age']) + +# Gender row: look for 'gender' or 'sex' +gender_row = find_row_by_header(targets_exact=['gender', 'sex'], contains_any=['gender', 'sex']) + +# 2.2 Converters + +def _after_colon(value): + if not isinstance(value, str): + return None + if ':' in value: + return value.split(':', 1)[1].strip() + return value.strip() if value.strip() else None + +def convert_trait(x): + val = _after_colon(x) + if val is None: + return None + s = val.lower() + # Treat explicit unknowns as None + if s in {'na', 'n/a', 'not available', 'unknown', ''}: + return None + # Positive if GERD explicitly present + if ('gastroesophageal reflux disease' in s) or ('gastro-oesophageal reflux disease' in s) or ('gerd' in s): + return 1 + # Otherwise negative (no GERD mentioned among diagnoses) + return 0 + +def convert_age(x): + val = _after_colon(x) + if val is None: + return None + s = val.lower() + if s in {'na', 'n/a', 'not available', 'unknown', ''}: + return None + try: + f = float(val) + # filter out implausible placeholders + if f <= 0 or f > 120: + return None + return f + except Exception: + return None + +def convert_gender(x): + val = _after_colon(x) + if val is None: + return None + s = val.lower() + if s in {'female', 'f'}: + return 0 + if s in {'male', 'm'}: + return 1 + if s in {'na', 'n/a', 'unknown', 'not available', ''}: + return None + return None + +# 2.1 Validate availability by checking variation (constant features are useless) +def check_variation(row_idx, convert_fn): + if row_idx is None: + return None, set() + series = clinical_data.loc[row_idx] + converted = [convert_fn(v) for v in series.values] + uniq = {v for v in converted if v is not None} + if len(uniq) <= 1: + return None, uniq # treat as unavailable if constant or all None + return row_idx, uniq + +# If trait_row candidate exists, ensure GERD signal is present (some 1s) +if trait_row is not None: + # Ensure at least one positive exists; else treat as unavailable + converted_vals = [convert_trait(v) for v in clinical_data.loc[trait_row].values] + uniq_trait = {v for v in converted_vals if v is not None} + if uniq_trait == {0} or len(uniq_trait) <= 1: + trait_row = None # no variation or no positives + +age_row, uniq_age = check_variation(age_row, convert_age) +gender_row, uniq_gender = check_variation(gender_row, convert_gender) + +# 3) Initial filtering metadata +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (only if trait is available) +if trait_row is not None: + # Extract and save + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age if age_row is not None else None, + gender_row=gender_row, + convert_gender=convert_gender if gender_row is not None else None + ) + + # Preview and save + preview = preview_df(selected_clinical_df, n=5) + print("Preview of selected clinical features:", preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) +else: + print("Trait data not available; skipping clinical feature extraction.") + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify mapping columns from annotation: +# - Probe/ID column matches expression row IDs: 'ID' +# - Gene symbol column: 'Gene Symbol' +probe_col = 'ID' +gene_symbol_col = 'Gene Symbol' + +# Build mapping dataframe +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_symbol_col) + +# Apply mapping: convert probe-level data to gene-level data +probe_level_df = gene_data # keep original probe-level data +gene_data = apply_gene_mapping(probe_level_df, mapping_df) + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1. Normalize gene symbols and save gene-level data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) + +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Ensure clinical dataframe is available; load from disk if not in memory +try: + selected_clinical_df +except NameError: + if os.path.exists(out_clinical_data_file): + selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) + else: + raise FileNotFoundError("Clinical data not found in memory or on disk.") + +# Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias check and removal of biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# Derive availability flags from actual data; cast to built-in bool to avoid numpy.bool_ in JSON +is_gene_available = bool((normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0)) +is_trait_available = bool((trait in linked_data.columns) and bool(linked_data[trait].notna().any())) +is_trait_biased = bool(is_trait_biased) + +# 5. Final validation and save cohort info +note = ("INFO: Dataset is a lung cancer cohort; GERD appears as a comorbidity in a small subset. " + "Trait may be imbalanced after filtering/imputation.") +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) +is_usable = bool(is_usable) + +# 6. Save linked data only if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE68698.py b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE68698.py new file mode 100644 index 0000000000000000000000000000000000000000..669b3f0a4737fcfe04b18fa6141949d086c2a32e --- /dev/null +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE68698.py @@ -0,0 +1,125 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gastroesophageal_reflux_disease_(GERD)" +cohort = "GSE68698" + +# Input paths +in_trait_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)" +in_cohort_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)/GSE68698" + +# Output paths +out_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/GSE68698.csv" +out_gene_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE68698.csv" +out_clinical_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE68698.csv" +json_path = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import re +import pandas as pd + +# 1) Gene expression availability +is_gene_available = True # Series summary explicitly states "Gene expression was measured" + +# 2) Variable availability and conversion functions +# From the provided Sample Characteristics Dictionary: +# 0: case/control (for SSc, not GERD), 1: tissue (constant), 2: biopsy site, 3: batch, 4: SSc subtype, 5: patient/control id +# No GERD status, no age, no gender available. +trait_row = None +age_row = None +gender_row = None + +def _after_colon(x: str) -> str: + if x is None: + return "" + parts = str(x).split(":", 1) + return parts[1].strip() if len(parts) == 2 else str(x).strip() + +def convert_trait(x): + # Binary: 1 = GERD present, 0 = GERD absent + # Conservative mapping for GERD; do NOT map generic "case" because in this dataset "case" = SSc, not GERD. + val = _after_colon(x).lower() + if val in {"na", "nan", "", "unknown", "undetermined"}: + return None + positives = [ + "gerd", "gastroesophageal reflux", "gastro-oesophageal reflux", "reflux disease", + "gastroesophageal reflux disease", "gastro-oesophageal reflux disease", "ger" + ] + negatives = ["control", "healthy", "no gerd", "none", "no"] + if any(p in val for p in positives): + return 1 + if any(n == val for n in negatives): + return 0 + return None + +def convert_age(x): + # Continuous: extract numeric age in years + val = _after_colon(x) + if val.lower() in {"na", "nan", "", "unknown"}: + return None + m = re.search(r"(\d+(\.\d+)?)", val) + if m: + try: + return float(m.group(1)) + except Exception: + return None + return None + +def convert_gender(x): + # Binary: female=0, male=1 + val = _after_colon(x).lower() + if val in {"na", "nan", "", "unknown"}: + return None + if val in {"male", "m"}: + return 1 + if val in {"female", "f"}: + return 0 + return None + +# 3) Initial filtering and save metadata +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (skip because trait data not available) +# If trait_row were available: +if trait_row is not None: + selected = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected, n=5) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected.to_csv(out_clinical_data_file, index=True) \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE77563.py b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE77563.py new file mode 100644 index 0000000000000000000000000000000000000000..c2d63d389cfc31c791f98ba04d557e39fed44063 --- /dev/null +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/GSE77563.py @@ -0,0 +1,235 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gastroesophageal_reflux_disease_(GERD)" +cohort = "GSE77563" + +# Input paths +in_trait_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)" +in_cohort_dir = "../DATA/GEO/Gastroesophageal_reflux_disease_(GERD)/GSE77563" + +# Output paths +out_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/GSE77563.csv" +out_gene_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE77563.csv" +out_clinical_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/GSE77563.csv" +json_path = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression availability (Affymetrix Human Gene 2.1 ST arrays => gene expression microarray) +is_gene_available = True + +# 2) Variable availability +trait_row = 5 # 'gastroesophageal reflux disease (gerd) status: GERD' / 'No GERD' +age_row = 1 # 'age (yr): ' +gender_row = 2 # 'gender: male' / 'gender: female' + +# 2.2) Converters +def _after_colon(x): + if x is None: + return None + try: + s = str(x) + # Take the substring after the last colon to be safe + if ':' in s: + s = s.split(':', 1)[1] + return s.strip() + except Exception: + return None + +def convert_trait(x): + v = _after_colon(x) + if v is None or v == '': + return None + v_lower = v.lower() + # Map GERD presence to 1, absence to 0 + if any(tok in v_lower for tok in ['unknown', 'na', 'n/a']): + return None + # Explicit negatives + if 'no gerd' in v_lower or v_lower in ['no', 'none', 'control']: + return 0 + # Positives + if 'gerd' in v_lower or v_lower in ['yes', 'case']: + # Guard against explicit "no gerd" handled above + return 1 + return None + +def convert_age(x): + v = _after_colon(x) + if v is None or v == '': + return None + # Extract numeric age + m = re.search(r'[-+]?\d*\.?\d+', v) + if m: + try: + return float(m.group()) + except Exception: + return None + return None + +def convert_gender(x): + v = _after_colon(x) + if v is None or v == '': + return None + v_lower = v.lower() + if any(tok in v_lower for tok in ['unknown', 'na', 'n/a']): + return None + # Female -> 0, Male -> 1 + if v_lower in ['female', 'f', 'woman', 'women']: + return 0 + if v_lower in ['male', 'm', 'man', 'men']: + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (only if trait data available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + clinical_preview = preview_df(selected_clinical_df, n=5) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file, index=False) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# The observed identifiers are numeric probe IDs (e.g., Illumina ProbeID), not human gene symbols. +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Determine the appropriate columns for mapping +probe_col = 'ID' # Matches the probe IDs in the expression data +gene_col = 'gene_assignment' # Contains gene information including symbols + +# Build mapping dataframe (Probe ID -> Gene annotation text) +mapping_df = get_gene_mapping(gene_annotation, prob_col=probe_col, gene_col=gene_col) + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os +import pandas as pd + +# 1) Normalize gene symbols and save normalized gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2) Ensure clinical features are available in this scope; reconstruct robustly +if 'selected_clinical_df' not in globals(): + rebuilt = False + try: + # Prefer reconstructing directly from clinical_data if available + if 'clinical_data' in globals(): + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + rebuilt = True + except Exception: + rebuilt = False + + if not rebuilt: + # Fallback: load from CSV saved in step 2 and assign expected index + selected_clinical_df = pd.read_csv(out_clinical_data_file) + # Assign the expected feature index in the correct order + expected_idx = [trait, 'Age', 'Gender'] + selected_clinical_df.index = expected_idx[: len(selected_clinical_df)] + +# 3) Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 4) Handle missing values systematically +linked_data = handle_missing_values(linked_data, trait) + +# 5) Assess bias and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 6) Determine availability flags using native Python bool +is_gene_available = bool((normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0)) +trait_in_index = bool(trait in selected_clinical_df.index) +trait_has_data = False +if trait_in_index: + # Ensure Python bool, not numpy.bool_ + trait_has_data = bool(selected_clinical_df.loc[trait].notna().any()) +is_trait_available = bool(trait_in_index and trait_has_data) + +# 7) Final validation and save cohort info +note = "INFO: Affymetrix probe IDs mapped to gene symbols; symbols normalized via NCBI synonym list." +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=bool(is_gene_available), + is_trait_available=bool(is_trait_available), + is_biased=bool(is_trait_biased), + df=unbiased_linked_data, + note=note +) + +# 8) Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/TCGA.py b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/TCGA.py new file mode 100644 index 0000000000000000000000000000000000000000..27b7d1565a8e3b7799fa4a99536e2d6b03ee7543 --- /dev/null +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/code/TCGA.py @@ -0,0 +1,346 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gastroesophageal_reflux_disease_(GERD)" + +# Input paths +tcga_root_dir = "../DATA/TCGA" + +# Output paths +out_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/TCGA.csv" +out_gene_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/TCGA.csv" +out_clinical_data_file = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/clinical_data/TCGA.csv" +json_path = "./output/z3/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json" + + +# Step 1: Initial Data Loading +import os +import pandas as pd + +# 1) Select the most relevant TCGA cohort directory for GERD (organ/phenotype overlap) +subdirs = [d for d in os.listdir(tcga_root_dir) if os.path.isdir(os.path.join(tcga_root_dir, d))] +lower_map = {d: d.lower() for d in subdirs} + +# Define matching keywords with simple weighting to prefer esophageal-related cohorts +high_priority = ['gastroesophageal', 'gerd', 'reflux', 'esophag', 'esophageal'] +secondary = ['stomach', 'gastric'] + +scores = {} +for d, name in lower_map.items(): + score = 0 + score += sum(2 for k in high_priority if k in name) + score += sum(1 for k in secondary if k in name) + scores[d] = score + +# Pick the best match (expect ESCA to be selected) +selected_dir_name = max(scores, key=lambda k: scores[k]) if scores else None +if selected_dir_name is None or scores[selected_dir_name] == 0: + # No suitable TCGA cohort found; mark as skipped for this trait + validate_and_save_cohort_info( + is_final=False, + cohort="TCGA", + info_path=json_path, + is_gene_available=False, + is_trait_available=False + ) + # Print an empty list for columns to adhere to the instruction + print([]) +else: + cohort_dir = os.path.join(tcga_root_dir, selected_dir_name) + + # 2) Identify clinical and genetic file paths + clinical_file_path, genetic_file_path = tcga_get_relevant_filepaths(cohort_dir) + + # 3) Load both files + clinical_df = pd.read_csv(clinical_file_path, sep='\t', index_col=0, low_memory=False, compression='infer') + genetic_df = pd.read_csv(genetic_file_path, sep='\t', index_col=0, low_memory=False, compression='infer') + + # 4) Print clinical column names + print(list(clinical_df.columns)) + +# Step 2: Find Candidate Demographic Features +import re + +# Column names from the previous step +columns = ['CDE_ID_3226963', '_INTEGRATION', '_PATIENT', '_cohort', '_primary_disease', '_primary_site', 'additional_pharmaceutical_therapy', 'additional_radiation_therapy', 'additional_treatment_completion_success_outcome', 'age_at_initial_pathologic_diagnosis', 'age_began_smoking_in_years', 'alcohol_history_documented', 'amount_of_alcohol_consumption_per_day', 'antireflux_treatment_type', 'barretts_esophagus', 'bcr_followup_barcode', 'bcr_patient_barcode', 'bcr_sample_barcode', 'city_of_procurement', 'clinical_M', 'clinical_N', 'clinical_T', 'clinical_stage', 'columnar_metaplasia_present', 'columnar_mucosa_dysplasia', 'columnar_mucosa_goblet_cell_present', 'country_of_birth', 'country_of_procurement', 'days_to_birth', 'days_to_collection', 'days_to_death', 'days_to_initial_pathologic_diagnosis', 'days_to_last_followup', 'days_to_new_tumor_event_additional_surgery_procedure', 'days_to_new_tumor_event_after_initial_treatment', 'eastern_cancer_oncology_group', 'esophageal_tumor_cental_location', 'esophageal_tumor_involvement_site', 'form_completion_date', 'frequency_of_alcohol_consumption', 'gender', 'goblet_cells_present', 'h_pylori_infection', 'height', 'histological_type', 'history_of_esophageal_cancer', 'history_of_neoadjuvant_treatment', 'icd_10', 'icd_o_3_histology', 'icd_o_3_site', 'informed_consent_verified', 'init_pathology_dx_method_other', 'initial_diagnosis_by', 'initial_pathologic_diagnosis_method', 'initial_weight', 'is_ffpe', 'karnofsky_performance_score', 'lost_follow_up', 'lymph_node_examined_count', 'lymph_node_metastasis_radiographic_evidence', 'neoplasm_histologic_grade', 'new_neoplasm_event_occurrence_anatomic_site', 'new_neoplasm_event_type', 'new_neoplasm_occurrence_anatomic_site_text', 'new_tumor_event_additional_surgery_procedure', 'new_tumor_event_after_initial_treatment', 'number_of_lymphnodes_positive_by_he', 'number_of_lymphnodes_positive_by_ihc', 'number_of_relatives_diagnosed', 'number_pack_years_smoked', 'oct_embedded', 'other_dx', 'pathologic_M', 'pathologic_N', 'pathologic_T', 'pathologic_stage', 'pathology_report_file_name', 'patient_id', 'person_neoplasm_cancer_status', 'planned_surgery_status', 'postoperative_rx_tx', 'primary_lymph_node_presentation_assessment', 'primary_therapy_outcome_success', 'progression_determined_by', 'radiation_therapy', 'reflux_history', 'residual_tumor', 'sample_type', 'sample_type_id', 'state_province_of_procurement', 'stopped_smoking_year', 'system_version', 'tissue_prospective_collection_indicator', 'tissue_retrospective_collection_indicator', 'tissue_source_site', 'tobacco_smoking_history', 'treatment_prior_to_surgery', 'tumor_tissue_site', 'vial_number', 'vital_status', 'weight', 'year_of_initial_pathologic_diagnosis', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2_percentile', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2_PANCAN', '_GENOMIC_ID_TCGA_ESCA_mutation_bcm_gene', '_GENOMIC_ID_data/public/TCGA/ESCA/miRNA_HiSeq_gene', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeq_exon', '_GENOMIC_ID_TCGA_ESCA_PDMRNAseq', '_GENOMIC_ID_TCGA_ESCA_hMethyl450', '_GENOMIC_ID_TCGA_ESCA_RPPA', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeq', '_GENOMIC_ID_TCGA_ESCA_miRNA_HiSeq', '_GENOMIC_ID_TCGA_ESCA_mutation_ucsc_maf_gene', '_GENOMIC_ID_TCGA_ESCA_gistic2', '_GENOMIC_ID_TCGA_ESCA_gistic2thd', '_GENOMIC_ID_TCGA_ESCA_mutation_broad_gene', '_GENOMIC_ID_TCGA_ESCA_exp_HiSeqV2_exon', '_GENOMIC_ID_TCGA_ESCA_mutation_bcgsc_gene', '_GENOMIC_ID_TCGA_ESCA_PDMRNAseqCNV'] + +def find_candidate_age_cols(cols): + res = [] + for c in cols: + l = c.lower() + if ( + 'days_to_birth' in l or + l.startswith('age') or + 'age_' in l or + l.endswith('_age') or + l == 'age' + ): + res.append(c) + return res + +def find_candidate_gender_cols(cols): + res = [] + for c in cols: + l = c.lower() + if ('gender' in l) or re.search(r'(^|[_\W])sex([_\W]|$)', l): + res.append(c) + return res + +candidate_age_cols = find_candidate_age_cols(columns) +candidate_gender_cols = find_candidate_gender_cols(columns) + +print(f"candidate_age_cols = {candidate_age_cols}") +print(f"candidate_gender_cols = {candidate_gender_cols}") + +# Preview extracted data if clinical_df exists and columns are present +try: + _ = clinical_df # check existence + age_cols_present = [c for c in candidate_age_cols if c in clinical_df.columns] + gender_cols_present = [c for c in candidate_gender_cols if c in clinical_df.columns] + + if age_cols_present: + age_preview = preview_df(clinical_df[age_cols_present]) + print(age_preview) + if gender_cols_present: + gender_preview = preview_df(clinical_df[gender_cols_present]) + print(gender_preview) +except NameError: + pass + +# Step 3: Select Demographic Features +import math + +# Use previously created preview dicts if they exist; otherwise, set to None +try: + age_preview = age_preview_dict if isinstance(age_preview_dict, dict) else None +except NameError: + age_preview = None + +try: + gender_preview = gender_preview_dict if isinstance(gender_preview_dict, dict) else None +except NameError: + gender_preview = None + +def is_missing(val): + if val is None: + return True + if isinstance(val, float): + try: + return math.isnan(val) + except Exception: + return False + if isinstance(val, str) and val.strip() == "": + return True + return False + +def fraction_missing(samples): + if not samples: + return 1.0 + missing = sum(1 for v in samples if is_missing(v)) + return missing / len(samples) + +# Determine if previews are usable (non-empty and contain at least one sample list with items) +def preview_available(preview_dict): + if not isinstance(preview_dict, dict): + return False + for v in preview_dict.values(): + if isinstance(v, list) and len(v) > 0: + return True + return False + +age_col = None +gender_col = None + +# AGE: Prefer 'age_at_initial_pathologic_diagnosis' over 'days_to_birth' if both present +preferred_age_cols = [c for c in ['age_at_initial_pathologic_diagnosis', 'days_to_birth'] if c in candidate_age_cols] + +if preview_available(age_preview): + # Evaluate preferred candidates with simple plausibility checks + for col in preferred_age_cols: + samples = age_preview.get(col, []) + miss_frac = fraction_missing(samples) + + if col == 'age_at_initial_pathologic_diagnosis': + valid_vals = [] + for v in samples: + if is_missing(v): + continue + try: + fv = float(v) + valid_vals.append(fv) + except Exception: + pass + plaus_count = sum(1 for fv in valid_vals if 0 <= fv <= 120) + if miss_frac < 0.6 and plaus_count >= max(1, len(samples) // 2): + age_col = col + break + + elif col == 'days_to_birth': + valid_vals = [] + for v in samples: + if is_missing(v): + continue + try: + fv = float(v) + valid_vals.append(fv) + except Exception: + pass + # Typical days_to_birth are negative with magnitude of years in days + plaus_count = sum(1 for fv in valid_vals if fv <= -3650) # at least ~10 years in magnitude + if miss_frac < 0.6 and plaus_count >= max(1, len(samples) // 2): + age_col = col + break + + # If still None, try any other candidate that looks like a plausible age (0-120) + if age_col is None: + for col in candidate_age_cols: + if col in preferred_age_cols: + continue + samples = age_preview.get(col, []) + miss_frac = fraction_missing(samples) + valid_vals = [] + for v in samples: + if is_missing(v): + continue + try: + fv = float(v) + valid_vals.append(fv) + except Exception: + pass + plaus_count = sum(1 for fv in valid_vals if 0 <= fv <= 120) + if miss_frac < 0.6 and plaus_count >= max(1, len(samples) // 2): + age_col = col + break +else: + # Robust fallback when previews are unavailable + if 'age_at_initial_pathologic_diagnosis' in candidate_age_cols: + age_col = 'age_at_initial_pathologic_diagnosis' + elif 'days_to_birth' in candidate_age_cols: + age_col = 'days_to_birth' + else: + age_col = None + +# GENDER: Prefer 'gender' +if preview_available(gender_preview): + # Validate 'gender' if present; otherwise, scan other candidates + scan_cols = ['gender'] if 'gender' in candidate_gender_cols else list(candidate_gender_cols) + for col in scan_cols: + samples = gender_preview.get(col, []) + miss_frac = fraction_missing(samples) + if miss_frac >= 0.6: + continue + valid_mapped = 0 + for v in samples: + mapped = tcga_convert_gender(v) + if mapped in (0, 1): + valid_mapped += 1 + if valid_mapped >= max(1, len(samples) // 2): + gender_col = col + break +else: + # Robust fallback when previews are unavailable + if 'gender' in candidate_gender_cols: + gender_col = 'gender' + else: + gender_col = None + +print(f"Selected age_col: {age_col}, samples: {age_preview.get(age_col) if (age_col and preview_available(age_preview)) else None}") +print(f"Selected gender_col: {gender_col}, samples: {gender_preview.get(gender_col) if (gender_col and preview_available(gender_preview)) else None}") + +# Step 4: Feature Engineering and Validation +import os +import pandas as pd + +# 1) Extract and standardize clinical features (trait, Age, Gender) +# Fall back if previous step variables are not in scope or invalid +try: + _ = age_col +except NameError: + age_col = None +try: + _ = gender_col +except NameError: + gender_col = None + +if age_col not in clinical_df.columns: + age_col = None +if gender_col not in clinical_df.columns: + gender_col = None + +selected_clinical_df = tcga_select_clinical_features( + clinical_df=clinical_df, + trait=trait, + age_col=age_col, + gender_col=gender_col +) + +# 2) Normalize gene symbols in gene expression data and save +gene_expr = genetic_df.copy() + +def frac_startswith_tcga(x): + if len(x) == 0: + return 0.0 + return sum(1 for v in x if isinstance(v, str) and v.startswith("TCGA-")) / len(x) + +# Ensure orientation: rows=genes, cols=samples +cols_tcga_frac = frac_startswith_tcga(gene_expr.columns) +idx_tcga_frac = frac_startswith_tcga(gene_expr.index) + +if idx_tcga_frac > cols_tcga_frac: + # Likely samples are in index and genes in columns; transpose + gene_expr = gene_expr.T + +# Now, rows are genes, columns are TCGA sample barcodes +# Make sure values are numeric where possible +gene_expr = gene_expr.apply(pd.to_numeric, errors='coerce') + +# Normalize gene symbols and aggregate duplicates +gene_expr_norm = normalize_gene_symbols_in_index(gene_expr) + +# Save normalized gene expression (genes x samples) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +gene_expr_norm.to_csv(out_gene_data_file) + +# 3) Link clinical and gene data on sample IDs +common_samples = selected_clinical_df.index.intersection(gene_expr_norm.columns) +linked_data = pd.concat( + [ + selected_clinical_df.loc[common_samples], + gene_expr_norm.T.loc[common_samples] + ], + axis=1 +) + +# 4) Handle missing values systematically +processed_df = handle_missing_values(linked_data, trait_col=trait) + +# 5) Determine bias and remove biased demographic features if needed +trait_biased, processed_df = judge_and_remove_biased_features(processed_df, trait) +trait_biased = bool(trait_biased) # ensure native bool + +# 6) Final validation and save cohort info +is_gene_available = bool((gene_expr_norm.shape[0] > 0) and (gene_expr_norm.shape[1] > 0)) +is_trait_available = bool((trait in selected_clinical_df.columns) and bool(selected_clinical_df[trait].notna().any())) + +note = ( + "INFO: Cohort selected is TCGA ESCA. Trait encoded as tumor(1)/normal(0) via TCGA sample type. " + f"Age source: {age_col if age_col else 'None'}, Gender source: {gender_col if gender_col else 'None'}. " + "Gene symbols normalized using NCBI synonyms; duplicates aggregated by mean." +) + +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort="TCGA", + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=trait_biased, + df=processed_df, + note=note +) + +# 7) Save linked data only if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + processed_df.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json index eded881d8d087d61ff044e64d36efe9c9d4e813f..c32551a62f09c9a1c8580c2f5256bff796a360bd 100644 --- a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/cohort_info.json @@ -1,42 +1 @@ -{ - "GSE77563": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 40 - }, - "GSE68698": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": false, - "has_gender": false, - "sample_size": 46 - }, - "GSE43580": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 150 - }, - "TCGA": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 450 - } -} \ No newline at end of file +{"GSE77563": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": true, "has_gender": true, "sample_size": 40, "note": "INFO: Affymetrix probe IDs mapped to gene symbols; symbols normalized via NCBI synonym list."}, "GSE68698": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE43580": {"is_usable": false, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": true, "has_age": true, "has_gender": true, "sample_size": 149, "note": "INFO: Dataset is a lung cancer cohort; GERD appears as a comorbidity in a small subset. Trait may be imbalanced after filtering/imputation."}, "GSE28302": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "TCGA": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": true, "has_gender": true, "sample_size": 196, "note": "INFO: Cohort selected is TCGA ESCA. Trait encoded as tumor(1)/normal(0) via TCGA sample type. Age source: age_at_initial_pathologic_diagnosis, Gender source: gender. Gene symbols normalized using NCBI synonyms; duplicates aggregated by mean."}} \ No newline at end of file diff --git a/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE28302.csv b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE28302.csv new file mode 100644 index 0000000000000000000000000000000000000000..2f21d39c05b9113888958a1a3d5e9b1b422e2c47 --- /dev/null +++ b/output/preprocess/Gastroesophageal_reflux_disease_(GERD)/gene_data/GSE28302.csv @@ -0,0 +1,19810 @@ +RefSeq,GSM700266,GSM700267,GSM700268,GSM700269,GSM700270,GSM700271,GSM700272,GSM700273,GSM700274,GSM700275,GSM700276,GSM700277,GSM700278,GSM700279,GSM700280,GSM700281,GSM700282,GSM700283,GSM700284,GSM700285,GSM700286,GSM700287,GSM700288,GSM700289,GSM700290,GSM700291,GSM700292,GSM700293,GSM700294,GSM700295,GSM700296,GSM700297,GSM700298,GSM700299,GSM700300,GSM700301,GSM700302,GSM700303,GSM700304,GSM700305,GSM700306,GSM700307,GSM700308,GSM700309,GSM700310,GSM700311,GSM700312,GSM700313,GSM700314,GSM700315,GSM700316,GSM700317,GSM700318,GSM700319 +NM_000015,0.882,1.757,0.908,1.084,0.898,3.533,1.113,0.847,0.774,1.074,4.526,1.007,0.889,0.87,3.273,11.0,0.877,0.849,0.877,3.976,1.027,1.13,2.22,0.938,0.788,0.913,0.873,0.839,0.795,1.164,1.022,0.856,0.997,1.12,0.839,1.015,4.953,0.837,1.66,1.167,0.901,3.594,2.389,0.743,0.926,5.027,1.506,0.91,7.519,1.032,2.935,0.998,0.944,0.949 +NM_000016,0.994,1.03,1.597,0.767,1.598,1.361,0.577,1.529,2.902,0.561,1.02,1.745,1.516,1.69,1.427,1.507,2.08,0.988,1.655,1.127,0.451,1.402,0.549,1.515,0.622,1.853,0.972,1.82,0.312,1.206,2.346,0.682,1.259,1.201,3.013,0.209,1.107,1.033,0.791,0.318,1.553,1.009,0.738,0.356,1.244,0.828,1.535,1.718,0.608,1.006,0.82,0.641,0.824,1.411 +NM_000017,0.609,1.12,0.729,1.0,0.638,1.709,1.016,0.597,0.693,0.611,2.009,0.568,0.672,0.546,1.267,4.06,0.622,1.086,0.762,1.745,0.55,0.685,1.226,0.548,1.53,0.712,0.614,0.624,0.709,1.49,0.598,0.8,0.905,2.031,0.497,0.96,2.08,0.666,1.58,1.009,0.622,2.121,1.89,0.811,0.633,2.167,1.024,0.758,1.005,0.607,1.64,0.745,0.635,1.0 +NM_000018,0.924,0.679,1.325,0.861,1.274,1.242,0.621,0.707,1.803,1.323,1.184,1.202,0.675,0.729,1.081,1.735,0.894,1.138,1.735,1.166,0.432,1.013,0.979,1.264,0.625,1.019,1.197,1.247,0.401,1.363,1.308,0.86,0.771,1.218,0.614,0.711,1.311,1.018,0.647,0.655,1.191,1.213,0.82,0.428,1.195,1.072,1.019,0.712,0.942,0.85,1.256,0.523,1.036,0.926 +NM_000019,0.856,1.678,1.074,0.827,0.999,1.104,0.668,0.622,1.384,1.082,1.002,0.988,0.687,0.672,1.026,1.075,0.477,0.857,1.095,0.877,0.477,1.112,1.148,0.973,1.603,0.916,1.019,0.88,0.325,1.062,1.001,0.857,1.154,1.632,0.143,1.095,1.429,1.167,1.197,0.304,0.904,1.544,0.709,0.442,0.975,1.012,0.756,0.863,0.871,0.705,1.246,0.633,0.702,1.2 +NM_000020,0.844,1.04,0.907,0.851,0.764,0.812,1.302,0.877,0.935,0.888,0.93,0.889,0.869,0.955,0.874,1.369,1.003,0.936,0.767,1.033,0.876,1.037,1.111,0.854,0.93,0.863,1.02,0.997,0.906,1.325,0.944,1.356,1.115,1.328,0.966,0.923,0.941,1.04,1.361,1.82,0.967,1.249,0.925,0.779,0.931,0.935,1.243,0.777,1.237,1.126,1.02,1.132,0.967,0.991 +NM_000021,1.158,0.991,1.307,1.013,1.277,1.034,0.832,1.176,1.255,1.288,0.94,1.395,1.203,1.028,0.862,0.973,1.176,1.327,1.744,0.898,1.202,1.147,0.809,1.243,0.892,1.315,1.137,1.357,0.731,0.934,1.201,0.812,1.071,0.958,0.931,1.03,0.948,1.651,0.801,0.866,1.308,0.866,0.843,0.925,1.131,0.852,1.167,1.426,0.927,1.385,0.972,0.95,1.072,1.003 +NM_000022,0.8,1.973,1.684,0.804,0.995,0.73,0.967,0.658,0.796,1.176,0.784,0.988,0.844,0.815,0.764,0.953,2.007,0.843,1.11,0.664,0.993,0.764,1.11,1.498,3.963,0.871,3.002,0.82,0.655,1.023,0.969,1.308,1.862,1.465,0.561,0.771,2.912,0.814,1.635,1.249,0.943,1.054,0.661,0.999,1.094,0.74,0.883,0.976,0.801,1.168,0.824,1.436,1.726,2.782 +NM_000023,1.111,1.042,0.86,1.029,0.912,0.932,1.072,1.005,1.171,1.031,1.1,1.075,0.999,0.922,0.782,0.985,0.958,1.014,0.878,0.975,0.972,0.956,1.038,0.968,1.015,0.85,1.059,0.976,1.156,0.95,1.063,1.103,0.948,1.302,1.153,0.973,1.077,1.186,1.024,0.903,1.017,1.043,1.232,0.996,1.063,1.034,0.833,0.919,0.846,0.879,1.029,1.064,1.013,1.141 +NM_000024,0.859,1.145,1.323,0.863,1.076,1.262,1.375,1.045,1.228,0.914,0.596,1.104,1.057,0.895,0.773,0.756,1.077,1.171,1.363,0.895,0.734,1.176,0.683,1.217,1.06,1.23,1.476,1.189,1.452,1.186,1.188,1.084,0.954,1.78,0.642,0.629,0.861,1.12,0.915,0.609,1.383,0.987,0.707,0.601,1.11,0.636,0.943,0.935,0.62,1.11,0.757,0.987,1.099,0.909 +NM_000026,0.625,1.065,1.104,0.657,0.8,0.892,0.552,0.456,1.132,1.135,1.063,0.922,0.733,0.588,0.869,1.501,0.846,0.925,1.196,0.951,0.573,0.888,1.254,1.24,0.499,0.765,1.078,0.87,0.462,0.94,0.792,1.172,2.096,1.127,0.141,1.47,1.103,1.031,1.339,0.657,1.276,1.092,0.668,0.989,0.961,0.993,1.15,0.701,1.166,0.634,0.962,1.194,0.975,2.52 +NM_000027,1.146,1.142,1.675,0.736,1.524,1.08,0.617,1.833,2.131,1.695,0.719,1.414,0.886,1.043,1.123,1.434,1.033,1.308,1.328,0.74,0.786,1.595,0.671,1.606,0.518,1.398,1.389,1.601,0.531,0.978,1.728,1.123,1.205,1.185,0.938,0.487,0.801,2.102,0.625,0.457,1.848,0.969,0.396,0.827,1.469,0.841,1.346,1.34,0.761,1.373,0.846,0.631,0.882,0.727 +NM_000028,1.054,0.925,0.906,1.102,0.923,1.059,1.004,1.087,1.148,1.2,0.967,0.955,1.082,0.908,1.011,1.031,0.932,1.122,0.976,1.0,1.122,0.974,1.014,1.161,0.935,1.125,0.93,1.103,1.004,1.046,1.014,1.003,1.146,0.965,0.966,1.21,0.909,0.92,1.047,1.019,0.967,1.085,1.062,0.981,0.983,0.956,0.887,1.049,1.014,1.118,0.964,1.066,0.996,1.13 +NM_000029,0.82,1.002,0.787,0.847,0.849,0.95,1.12,0.894,0.829,0.818,1.213,0.825,0.9,0.754,0.924,1.089,0.792,0.782,0.947,0.885,0.876,0.908,2.796,0.893,0.95,0.836,0.797,0.874,1.309,1.558,0.942,1.607,1.808,1.293,0.873,1.221,1.244,0.7,4.222,1.537,0.81,1.095,1.152,1.438,0.817,1.717,1.174,0.889,0.785,0.768,1.236,1.588,0.767,2.37 +NM_000030,0.893,0.969,1.002,0.849,0.846,1.076,0.856,1.045,1.178,0.788,1.248,1.041,0.989,0.963,1.013,1.096,1.043,0.855,0.939,1.132,0.945,1.019,1.313,0.944,0.88,1.079,0.901,0.94,0.852,1.076,0.863,1.029,1.092,0.948,0.975,0.928,1.007,1.035,0.871,1.116,0.963,0.874,1.415,0.888,0.857,1.192,0.991,0.944,1.268,0.985,1.241,0.872,1.092,1.212 +NM_000031,0.917,1.057,0.915,1.114,0.892,0.912,1.054,1.009,1.05,1.083,0.903,1.01,1.0,1.065,0.951,1.048,0.985,1.029,1.082,1.029,0.926,1.026,0.905,0.998,0.936,0.889,1.06,0.996,1.083,0.992,1.084,1.0,0.95,1.051,0.984,1.223,0.975,0.866,1.092,1.119,0.999,0.911,1.182,0.926,0.982,0.991,0.889,0.945,1.209,1.046,0.965,0.929,1.078,0.874 +NM_000032,0.909,0.982,1.012,1.379,1.056,0.946,1.0,1.242,0.997,0.775,0.866,0.977,1.015,0.878,1.031,0.864,0.901,0.942,1.044,1.267,0.986,0.933,0.851,1.096,1.015,1.086,0.922,1.047,1.0,1.098,1.055,1.174,0.978,1.166,0.971,1.006,0.976,0.899,1.022,1.057,0.99,0.992,1.06,0.876,1.034,1.035,1.139,0.896,0.951,0.986,1.294,1.604,0.913,0.841 +NM_000033,0.986,1.063,0.871,1.007,0.933,1.052,1.009,0.938,1.019,0.882,0.976,0.849,0.938,0.977,0.895,1.441,0.972,0.884,0.934,1.062,0.737,0.934,1.083,0.812,0.901,1.035,1.036,0.823,0.889,0.955,1.035,1.377,1.034,1.009,1.102,1.383,0.795,1.031,1.438,1.314,1.038,0.81,0.918,0.992,0.944,1.041,1.006,0.973,1.014,0.965,0.939,1.168,0.92,1.252 +NM_000034,0.817,0.959,0.931,1.003,1.07,0.887,0.917,0.846,0.937,0.858,1.034,1.011,1.067,1.199,0.967,1.105,1.03,0.913,1.008,0.89,1.027,0.937,0.964,0.939,1.07,1.151,1.108,1.044,0.965,1.026,0.984,1.03,0.928,1.029,0.975,0.8,1.041,1.133,1.032,0.988,1.084,1.027,0.795,1.034,0.986,0.907,1.004,1.081,0.956,1.034,0.998,0.85,1.022,0.921 +NM_000035,0.403,2.426,0.362,5.431,0.375,6.266,0.708,0.408,0.362,0.403,16.15,0.427,0.45,0.423,21.17,55.71,0.372,0.671,0.405,10.9,0.443,0.385,11.7,0.497,6.413,1.332,0.415,0.572,0.628,3.823,0.421,1.12,0.8,2.544,0.365,0.656,63.24,0.374,1.097,0.486,0.366,13.96,28.91,0.413,0.385,19.13,8.407,0.42,22.87,0.392,12.15,1.762,0.671,1.062 +NM_000036,1.015,1.239,0.84,1.025,0.92,1.106,1.229,0.906,1.098,0.947,1.009,0.962,0.986,0.951,1.195,0.967,1.015,1.105,0.88,1.187,0.953,1.016,1.044,0.932,0.973,0.987,1.017,0.899,0.806,1.104,0.918,0.889,0.95,1.801,1.137,0.873,1.682,1.028,1.334,0.987,0.953,2.047,0.846,0.857,0.891,1.111,0.96,0.958,1.052,0.919,1.49,0.95,0.914,0.982 +NM_000038,0.957,1.059,1.115,0.938,1.188,0.972,0.957,0.883,0.99,1.084,1.162,0.876,1.036,1.022,0.982,0.972,0.935,0.984,0.96,0.915,0.946,1.05,1.083,1.103,0.905,0.904,0.99,1.139,1.061,0.969,1.214,1.058,1.022,0.99,0.879,0.868,1.008,0.812,1.048,0.843,1.087,0.994,0.844,0.922,1.097,1.066,1.126,1.046,1.113,1.063,1.04,0.919,1.012,0.869 +NM_000039,0.968,1.197,0.843,1.828,0.924,0.999,0.939,1.052,0.949,0.82,1.304,1.024,0.877,0.908,4.182,4.768,0.833,0.86,0.968,1.133,0.835,0.902,1.044,0.868,1.232,1.052,0.768,1.066,0.722,2.343,1.059,1.38,1.076,2.037,0.941,1.028,51.84,0.89,0.922,0.855,0.818,5.238,7.355,0.997,1.012,1.298,5.34,0.775,0.873,1.001,1.688,0.95,0.882,0.889 +NM_000040,0.941,0.854,0.943,1.333,0.942,0.98,0.785,0.999,1.048,0.898,1.044,0.915,0.876,0.862,1.646,1.507,0.938,1.047,0.89,1.013,0.883,0.969,0.948,0.882,1.025,1.08,0.988,1.006,0.958,1.048,1.041,1.114,1.056,1.026,0.879,1.074,14.23,0.944,0.952,1.012,1.097,1.326,3.037,0.867,1.007,1.198,1.06,0.892,0.993,0.873,1.262,0.987,0.827,1.062 +NM_000041,0.828,1.282,0.797,0.991,0.941,1.174,1.369,0.723,0.858,0.721,0.792,0.775,0.848,0.717,0.894,0.955,0.691,0.853,0.721,0.949,0.722,0.69,1.751,0.712,1.666,0.704,0.939,0.782,0.662,1.819,0.749,12.4,2.128,1.956,0.839,0.872,0.777,0.797,2.759,6.04,0.661,2.449,0.77,1.821,0.74,0.838,0.971,0.682,0.722,0.712,0.879,2.769,1.282,7.202 +NM_000042,0.918,1.018,0.952,1.012,0.794,1.132,1.086,0.864,0.886,0.903,1.15,1.053,0.996,0.87,0.97,1.005,0.992,1.117,0.864,1.002,0.889,0.829,0.955,0.916,1.139,0.868,0.943,1.119,0.904,1.0,0.933,0.934,1.204,1.386,1.159,1.023,1.1,0.832,0.841,0.921,0.97,1.225,0.831,1.375,1.013,1.101,1.014,0.903,0.847,0.861,1.026,0.871,0.921,0.91 +NM_000044,1.27,1.092,1.024,0.958,1.077,0.992,0.798,1.094,0.922,1.053,0.892,0.98,1.129,0.819,0.937,1.095,0.981,1.019,1.019,1.131,1.1,1.099,1.034,0.978,1.114,1.061,0.886,1.173,1.209,0.889,1.037,1.179,0.939,1.013,0.901,0.968,0.945,1.052,0.946,0.843,1.129,1.073,1.084,0.789,0.987,1.005,0.835,0.974,0.956,1.091,0.973,0.928,1.045,1.072 +NM_000045,1.489,1.019,0.966,0.954,1.485,0.905,0.86,2.096,1.396,1.058,1.067,1.388,1.465,0.959,1.25,1.008,1.103,0.837,1.129,0.822,1.132,1.723,0.839,1.372,0.901,1.035,1.027,2.608,0.94,1.056,1.368,1.13,1.05,0.854,1.452,1.029,1.054,2.011,1.019,0.95,1.292,0.938,0.793,0.946,1.313,0.865,0.949,1.655,0.885,1.157,1.126,0.937,0.93,0.832 +NM_000047,0.736,1.047,0.925,1.225,0.855,0.993,0.881,0.789,0.917,0.737,1.255,0.826,0.83,0.73,1.018,1.357,0.856,1.012,0.855,1.26,0.911,0.897,1.59,0.902,0.865,0.784,1.041,0.772,0.889,0.904,0.849,1.088,1.888,1.161,0.881,1.119,0.913,0.898,1.31,0.926,0.882,1.289,1.305,1.241,0.921,1.232,1.207,0.787,1.25,0.86,1.118,1.07,0.821,1.017 +NM_000048,0.556,0.984,0.544,1.137,0.437,1.503,0.665,0.295,0.671,0.513,1.987,0.388,0.382,0.317,1.092,2.45,0.511,1.233,0.858,1.379,0.323,0.573,2.853,0.599,0.928,0.735,0.484,0.475,0.869,2.137,0.479,1.152,1.1,1.752,0.286,1.148,1.929,0.499,2.508,1.004,0.551,1.925,1.037,1.96,0.683,1.617,1.17,0.624,1.099,0.642,1.704,0.855,0.513,0.752 +NM_000049,1.044,1.137,0.965,1.052,0.901,1.225,1.136,0.995,0.786,0.875,1.19,0.861,0.88,0.748,0.91,1.023,0.882,1.01,0.988,1.419,0.997,0.89,1.057,0.989,1.051,0.919,0.866,0.897,0.797,1.302,0.987,0.984,0.86,1.723,0.898,1.018,1.349,1.097,0.914,0.971,0.96,1.334,1.014,0.87,1.055,0.991,1.027,0.894,0.928,0.986,1.237,0.771,1.053,1.0 +NM_000050,0.447,2.099,0.714,1.006,0.302,1.064,0.525,0.182,0.249,0.718,1.206,0.497,0.414,0.194,0.966,1.386,0.845,1.205,0.774,1.551,0.234,0.281,1.695,0.554,0.272,0.93,0.842,0.24,0.195,1.476,0.273,1.522,0.793,0.921,0.112,1.648,1.431,0.358,2.146,0.696,0.478,1.732,1.077,2.506,0.777,1.15,1.512,0.538,2.05,0.659,1.985,2.813,0.483,3.903 +NM_000051,0.857,0.92,0.92,1.142,1.062,0.897,0.862,0.993,0.987,1.011,0.883,1.07,1.035,1.126,0.862,1.19,0.917,1.016,0.783,0.935,1.069,0.91,1.069,0.819,1.075,0.964,0.802,1.149,1.204,0.973,0.942,1.006,1.045,1.009,0.92,1.084,0.965,0.928,1.029,1.041,1.109,0.901,0.936,1.076,0.978,0.985,0.88,1.079,0.98,1.014,0.987,0.962,1.078,0.922 +NM_000055,0.963,1.0,0.828,0.982,0.911,1.098,0.921,0.791,0.953,0.921,0.909,1.024,1.054,0.971,0.857,0.967,1.148,1.025,1.153,1.006,1.152,0.9,1.066,1.009,0.961,0.902,1.015,1.274,1.007,1.068,0.973,1.175,1.013,1.447,1.027,0.997,0.934,1.16,0.953,0.84,1.407,1.554,0.937,1.049,1.09,0.952,0.961,0.956,0.914,0.932,0.899,0.943,0.917,0.836 +NM_000056,0.679,1.444,1.02,0.879,0.76,1.797,0.721,0.548,1.297,1.024,1.689,0.627,0.735,0.853,1.547,1.915,0.713,0.969,1.113,1.182,0.537,0.746,1.34,0.868,0.743,0.825,0.939,0.896,0.625,1.867,1.046,0.832,1.048,1.957,0.355,0.978,1.654,0.84,1.2,0.551,0.965,1.591,1.321,1.091,0.827,1.494,0.949,0.649,0.862,0.716,1.28,0.487,0.917,2.043 +NM_000057,0.952,1.006,0.89,0.911,0.859,1.109,0.887,0.922,1.088,0.994,0.889,0.946,0.915,0.925,0.969,1.027,1.027,1.033,1.034,0.987,0.897,0.971,1.5,1.007,0.869,0.96,1.34,0.937,0.92,0.952,0.899,1.128,1.857,1.028,0.883,1.563,1.099,1.024,1.545,1.14,0.935,0.948,0.893,1.087,0.982,0.996,1.102,0.831,1.152,0.917,0.955,0.971,1.091,1.42 +NM_000059,0.956,1.218,1.004,0.878,1.069,1.162,0.974,1.134,0.98,1.044,0.854,1.094,1.121,0.891,1.197,0.989,1.026,0.9,1.074,1.086,0.927,0.972,1.077,1.114,0.947,0.932,0.927,0.933,0.733,1.015,1.036,1.105,1.21,0.911,1.014,1.087,1.041,1.05,0.935,1.093,0.928,1.004,0.865,0.964,1.119,0.953,0.868,1.101,0.885,0.909,1.027,1.09,1.105,1.177 +NM_000060,0.685,1.53,0.986,0.801,0.727,1.592,1.01,0.606,0.748,0.731,1.35,0.665,0.701,0.58,1.092,2.396,0.721,1.086,0.914,1.385,0.673,0.642,1.519,0.744,1.104,0.802,1.049,0.759,0.826,1.932,0.771,0.84,1.034,2.37,0.582,0.799,1.693,0.784,1.458,0.705,0.735,1.943,1.081,0.931,0.698,1.519,0.854,0.684,0.977,0.741,1.263,0.807,0.852,1.283 +NM_000062,0.791,1.354,1.027,0.805,0.736,1.097,0.91,0.759,0.741,0.787,0.846,0.824,0.673,0.552,1.072,1.04,0.77,0.684,0.772,0.994,0.79,0.662,1.606,0.84,1.023,0.773,0.888,0.792,0.623,1.592,0.775,9.059,2.128,2.397,0.524,0.719,0.851,1.006,2.258,1.863,0.969,2.269,0.86,1.335,0.802,0.703,0.811,0.735,0.73,0.799,0.962,1.026,1.595,4.848 +NM_000063,0.648,1.006,0.705,0.985,0.645,0.919,1.367,0.708,0.751,0.719,0.876,0.692,0.632,0.694,0.843,1.418,0.633,0.665,0.472,0.856,0.695,0.639,1.636,0.734,1.081,0.748,0.633,0.576,0.812,2.533,0.625,1.729,3.821,1.36,0.72,1.54,1.001,0.694,1.782,3.579,0.683,1.696,1.106,1.53,0.643,1.119,1.913,0.671,2.015,0.732,1.333,1.222,0.828,2.062 +NM_000065,0.914,1.426,1.007,1.312,0.807,1.134,0.997,0.941,0.89,0.996,1.096,0.889,0.945,0.764,1.2,0.946,0.758,1.266,0.889,1.367,0.989,0.772,1.016,0.905,1.12,1.042,1.003,0.915,1.14,1.013,0.829,1.055,0.966,3.369,0.974,1.011,1.115,1.045,1.157,0.898,0.988,0.942,0.966,1.019,0.915,0.935,0.976,1.009,0.891,0.913,1.994,0.911,0.837,0.986 +NM_000066,0.976,0.975,1.033,1.025,1.087,0.965,1.064,1.026,0.941,1.1,0.891,0.992,0.956,0.937,0.894,0.896,1.02,0.944,0.866,0.938,0.856,0.999,0.965,0.984,0.984,1.031,1.043,0.981,1.045,1.023,0.802,1.19,0.832,0.939,1.104,0.965,0.966,0.996,0.988,1.005,1.153,0.953,1.11,1.001,1.016,0.914,1.075,1.05,1.081,1.015,0.979,0.963,0.866,0.977 +NM_000067,0.126,4.183,0.37,2.228,0.283,6.684,2.53,0.105,0.213,0.559,3.224,0.199,0.098,0.111,1.905,4.303,0.259,3.714,0.581,2.448,0.222,0.15,2.216,0.613,3.375,0.159,0.845,0.153,2.703,4.978,0.292,1.448,0.519,8.578,0.169,0.102,4.921,0.167,3.759,0.0897,0.352,4.323,1.531,0.366,0.341,3.866,0.55,0.164,1.857,0.294,2.156,0.506,0.597,0.281 +NM_000068,1.026,0.969,0.986,0.986,1.078,1.027,1.139,0.998,1.083,0.971,0.902,1.016,1.055,0.954,0.968,1.11,0.949,1.067,1.045,0.976,0.929,1.057,1.03,0.971,0.972,0.946,0.907,0.856,1.377,1.059,0.934,0.963,0.902,1.055,1.024,0.932,0.961,1.028,1.017,1.005,0.981,0.856,1.211,1.01,0.946,0.983,1.064,1.091,1.042,0.981,0.972,1.063,1.061,1.09 +NM_000069,1.046,1.038,0.912,1.078,1.083,0.988,1.002,1.114,1.009,0.919,0.988,1.046,0.941,1.132,1.039,0.925,0.99,1.021,1.104,0.933,1.108,1.01,0.945,0.824,1.178,1.001,1.018,0.941,1.183,1.027,0.982,1.106,0.997,1.128,1.144,0.986,1.101,1.084,0.96,0.948,1.006,1.045,1.03,0.979,0.976,1.05,1.108,1.01,1.029,1.004,1.008,1.288,0.92,0.925 +NM_000073,0.876,1.086,1.55,0.947,0.965,1.122,1.009,0.832,1.094,0.956,0.901,1.026,1.062,0.888,0.932,0.781,1.058,0.94,0.922,0.963,0.848,0.974,0.913,1.089,1.274,0.901,1.449,1.02,0.761,1.231,0.871,1.205,1.004,1.006,0.779,0.847,0.892,1.04,1.092,0.886,1.19,1.118,0.859,0.82,1.079,0.936,1.006,0.929,0.993,1.04,0.976,1.015,1.36,1.559 +NM_000075,0.952,0.895,0.82,1.034,0.638,1.199,0.44,0.46,1.133,1.001,0.879,1.006,0.97,0.804,0.904,1.186,0.992,0.759,1.24,0.657,0.79,0.61,1.361,1.308,0.841,0.901,1.505,0.631,0.548,1.182,0.812,2.02,2.605,1.383,0.302,1.064,0.908,0.939,1.836,1.395,1.147,1.211,0.787,2.556,0.99,0.885,1.268,0.744,0.931,0.95,0.889,0.785,1.167,2.429 +NM_000076,0.607,1.635,0.803,0.772,0.781,1.252,0.915,0.572,0.764,0.636,1.161,0.726,0.654,0.596,0.95,0.896,0.7,0.666,0.705,1.257,0.621,0.661,1.35,0.702,1.02,0.702,0.65,0.808,0.606,1.876,0.722,3.701,1.607,2.329,0.831,1.188,1.318,0.754,1.118,2.051,0.748,2.629,1.255,1.894,0.697,1.205,1.243,0.797,1.353,0.65,1.254,0.791,0.764,1.141 +NM_000078,1.018,1.025,1.07,1.086,1.04,0.826,1.14,0.942,0.99,0.98,0.956,0.991,1.049,0.776,0.743,1.025,0.932,1.026,0.954,0.983,0.795,0.844,0.95,0.971,0.911,1.042,1.077,0.995,0.93,1.032,0.914,1.439,0.951,0.919,1.035,0.963,1.039,0.944,1.086,1.433,0.862,1.015,1.003,0.874,0.955,1.16,1.074,1.085,0.965,1.154,0.945,1.277,1.13,0.945 +NM_000079,1.048,0.918,1.061,1.166,1.032,0.872,1.089,0.766,0.835,0.913,0.84,0.921,0.947,1.273,1.286,0.912,0.994,1.138,1.047,1.007,0.912,0.912,0.918,0.98,1.042,1.158,0.839,1.061,0.936,0.972,1.097,1.015,0.967,0.873,1.031,1.126,0.846,1.033,1.104,1.09,1.052,0.943,0.945,1.149,0.863,1.032,0.912,1.105,1.028,0.818,1.171,1.161,1.157,1.075 +NM_000080,1.111,1.24,1.102,1.044,1.088,1.037,0.98,0.943,0.855,1.143,1.16,0.987,1.17,0.928,1.0,1.248,1.029,0.939,1.102,0.998,0.923,0.908,1.104,0.965,0.874,0.972,1.114,0.878,1.127,0.875,1.222,1.255,1.112,0.904,0.928,1.125,1.18,0.822,0.96,1.103,1.089,0.993,1.095,1.029,0.983,0.993,1.04,1.013,0.934,1.236,0.812,1.084,1.379,1.067 +NM_000081,0.876,0.97,1.13,0.914,0.923,1.193,0.865,0.819,1.188,0.878,1.11,0.901,0.756,0.974,1.038,0.872,0.789,0.98,0.99,1.007,0.961,0.77,0.991,0.895,0.893,0.781,0.962,0.932,0.692,1.036,0.97,1.049,0.986,1.267,0.694,0.848,1.061,0.885,1.219,1.161,0.963,1.075,0.812,0.856,0.936,1.023,0.829,0.781,0.802,0.996,1.123,0.935,0.792,1.432 +NM_000083,1.044,0.847,0.976,0.994,1.028,0.915,1.042,0.954,1.047,0.938,1.095,0.981,0.99,1.174,1.022,0.937,0.992,0.936,1.013,1.006,0.971,0.989,1.085,1.071,0.987,0.881,0.945,0.841,0.95,0.919,1.05,1.03,0.918,0.971,0.944,1.221,0.899,1.137,0.923,0.981,1.079,1.105,0.781,0.974,1.011,0.935,1.041,1.016,0.956,1.088,1.037,0.918,1.094,0.918 +NM_000084,0.864,0.81,1.01,0.87,0.943,1.057,0.961,0.851,0.976,0.87,0.97,0.946,1.03,0.876,1.0,1.003,0.933,0.969,1.019,1.041,1.081,1.038,0.996,0.893,1.038,1.093,1.081,1.001,1.12,1.034,0.966,0.926,1.035,1.051,1.054,0.914,0.85,0.922,1.031,0.995,1.0,0.97,1.005,0.99,0.947,0.865,1.057,0.903,0.983,0.855,0.962,1.033,1.085,1.004 +NM_000085,0.959,1.061,1.044,1.005,0.9,1.073,0.776,1.255,0.939,1.023,0.966,0.995,0.971,1.012,0.989,1.138,0.862,0.954,1.091,1.105,0.964,0.973,1.009,1.015,1.095,1.013,0.989,1.141,0.954,1.088,1.064,0.896,1.143,0.902,0.932,0.984,1.037,0.938,1.11,1.039,1.039,1.022,1.442,0.902,1.101,1.007,1.074,1.08,0.95,1.102,1.041,0.897,1.035,0.991 +NM_000086,0.73,1.379,0.819,1.107,0.735,1.798,0.705,0.5,0.762,0.734,1.658,0.582,0.663,0.666,0.987,1.971,0.823,1.186,1.165,1.088,0.679,0.974,1.438,0.738,0.987,0.937,0.978,0.511,0.836,1.503,0.624,1.403,1.4,1.325,0.375,0.615,1.752,0.968,2.915,0.931,0.736,1.852,1.008,1.704,0.714,1.143,0.789,0.777,1.436,0.865,1.369,0.612,0.74,2.928 +NM_000089,0.411,1.465,0.548,0.592,0.402,1.196,0.941,0.385,0.382,0.53,1.088,0.429,0.419,0.409,1.534,1.297,0.475,0.555,0.478,0.854,0.53,0.418,3.52,0.37,0.625,0.489,0.608,0.546,0.405,3.477,0.446,41.51,5.539,2.339,0.477,1.226,1.278,0.622,2.935,7.907,0.747,2.087,0.91,0.685,0.732,2.135,0.847,0.397,1.056,0.565,1.99,4.925,0.63,2.065 +NM_000092,1.0,0.912,1.011,0.987,0.917,1.068,1.162,1.004,1.108,1.029,1.034,0.887,0.993,1.106,0.934,1.046,1.156,0.987,1.004,1.115,0.971,0.963,0.924,0.862,0.995,0.989,0.995,0.88,1.028,1.0,1.031,1.186,1.137,0.916,0.906,1.139,0.958,0.982,0.98,1.203,1.106,1.067,1.095,0.921,1.048,0.873,1.016,0.901,0.948,0.934,1.023,1.113,1.171,1.204 +NM_000093,0.543,1.158,0.719,0.72,0.577,0.994,1.078,0.9,0.535,0.497,0.875,0.58,0.629,0.532,1.265,0.808,0.607,0.625,0.607,0.922,0.725,0.57,1.89,0.595,0.906,0.591,0.667,0.656,0.706,3.317,0.673,23.58,2.013,2.117,0.486,0.986,1.154,0.738,1.575,3.967,0.808,1.604,1.107,0.621,0.776,1.905,0.875,0.6,0.743,0.537,1.402,2.08,0.713,1.256 +NM_000094,1.059,0.761,1.624,0.937,1.094,0.879,0.698,0.753,1.223,1.236,0.821,0.978,0.887,1.317,1.245,1.033,1.217,1.0,1.288,0.836,1.141,1.025,0.91,1.339,0.753,0.929,1.683,0.855,0.806,0.859,1.237,3.479,1.811,0.932,0.703,0.959,0.762,1.131,1.296,7.625,1.041,0.863,0.728,0.822,1.423,0.96,1.297,0.997,0.767,1.291,0.823,2.277,1.392,1.112 +NM_000095,1.057,1.131,0.986,0.746,1.048,0.897,0.87,0.844,0.895,1.043,0.965,0.938,0.947,0.886,0.847,0.997,0.987,0.928,0.889,1.045,1.121,0.925,0.967,1.003,0.967,1.085,1.0,1.013,0.53,1.035,0.885,4.762,1.086,1.554,0.868,0.897,0.951,1.161,1.193,1.063,1.033,0.938,1.0,1.852,0.966,0.996,1.215,0.993,0.827,0.962,1.279,0.926,0.907,0.777 +NM_000096,0.898,1.098,1.016,1.109,0.924,1.11,1.058,1.076,0.852,0.942,0.941,0.91,1.002,0.865,0.809,0.897,0.851,0.935,1.005,1.326,1.013,0.742,0.943,0.978,0.797,0.793,0.703,0.991,1.018,1.051,0.988,4.15,0.968,1.14,1.088,1.017,0.939,0.884,1.257,1.778,0.951,2.724,0.92,1.645,0.857,1.048,0.863,0.964,0.849,0.98,1.447,1.019,0.888,1.506 +NM_000098,0.762,0.96,1.138,0.947,0.749,1.643,0.966,0.399,1.169,0.865,1.584,0.647,0.479,0.676,1.142,1.983,1.005,1.22,1.113,1.4,0.491,0.643,1.313,0.774,0.936,0.913,1.198,0.595,0.636,1.972,0.767,1.336,1.06,1.897,0.227,0.502,1.778,0.714,1.34,0.504,0.675,1.384,0.852,0.683,0.982,1.457,0.815,0.686,1.385,0.752,1.586,0.643,0.924,1.306 +NM_000099,0.781,1.106,0.993,0.875,0.546,1.488,0.445,0.663,0.682,0.505,1.216,0.359,0.879,0.437,0.909,1.477,0.955,0.71,1.086,1.16,0.786,0.862,1.339,0.626,1.378,1.317,0.846,0.358,0.568,1.829,0.673,1.048,1.238,2.321,0.548,0.999,0.69,1.014,1.282,0.899,0.882,1.557,0.499,1.192,0.686,0.722,0.844,1.132,0.454,1.144,0.941,0.623,0.915,0.913 +NM_000100,1.764,0.332,2.391,1.064,3.075,0.483,0.313,1.447,2.252,2.843,0.241,2.511,2.1,0.891,1.163,1.457,2.346,2.375,1.522,0.475,0.987,2.317,0.397,2.079,0.117,2.338,1.632,2.861,0.192,0.494,2.206,0.259,1.062,0.314,2.268,0.186,0.355,2.695,0.615,0.328,2.141,0.323,0.181,0.256,2.628,0.343,2.019,3.024,0.63,2.045,1.303,1.013,1.364,0.705 +NM_000102,1.045,0.914,0.905,0.868,0.945,0.976,0.83,0.963,1.093,1.056,1.084,1.02,0.972,1.041,1.018,0.976,1.061,0.87,0.951,0.936,1.082,0.888,0.935,1.004,1.044,1.08,0.932,0.962,1.062,1.065,1.048,1.084,0.869,0.932,0.924,1.07,0.978,0.946,0.948,1.175,0.92,0.973,0.935,0.894,0.969,0.897,0.947,0.874,1.005,0.954,1.11,0.981,1.085,0.969 +NM_000103,1.037,1.007,0.947,1.187,0.989,0.936,1.039,1.011,1.087,1.095,1.026,0.969,0.983,1.195,1.49,0.958,0.975,1.067,1.042,1.017,0.977,1.226,1.033,0.934,1.069,0.981,0.849,0.936,0.962,0.9,1.018,1.011,0.972,1.08,1.018,0.984,0.959,1.019,0.968,1.031,1.036,0.981,0.93,0.941,1.066,1.143,0.996,1.014,1.061,0.959,1.019,0.945,0.941,0.921 +NM_000106,1.088,0.943,1.037,1.105,0.971,1.144,1.02,1.2,1.135,0.821,1.259,0.94,0.902,0.859,0.943,1.28,0.949,0.786,1.064,1.04,0.983,0.932,0.799,0.964,1.188,0.968,0.921,0.958,0.739,1.049,1.069,0.901,0.939,1.081,1.019,0.962,1.295,1.028,1.073,1.162,1.022,1.137,0.997,0.954,0.967,1.107,0.927,0.949,0.985,0.905,1.023,0.994,0.875,0.911 +NM_000107,0.998,1.055,1.117,1.12,1.074,0.989,0.78,0.861,1.016,1.052,0.944,0.971,0.951,1.046,0.974,1.006,1.018,0.971,1.072,0.813,1.056,1.166,1.175,1.073,0.842,1.07,1.154,1.023,1.211,1.249,0.825,0.958,0.786,1.103,0.759,0.956,0.904,1.032,1.002,0.894,0.965,1.366,0.801,0.864,0.945,0.965,0.959,1.12,0.915,0.957,1.042,0.941,0.978,0.924 +NM_000108,0.516,0.906,1.364,0.674,0.954,1.153,0.618,0.39,1.574,1.085,1.114,0.443,0.461,0.655,1.28,2.637,0.793,0.841,1.087,0.938,0.548,0.572,1.843,0.996,0.512,0.571,1.654,0.902,0.446,1.455,1.171,1.086,3.119,1.292,0.219,0.557,1.229,0.902,1.28,0.609,1.26,1.002,0.764,0.836,0.907,1.461,1.243,0.532,1.375,0.683,1.182,0.638,0.811,1.752 +NM_000109,1.043,1.023,0.888,0.876,1.074,1.108,0.996,1.173,0.86,0.928,1.078,0.898,1.097,1.026,0.861,0.939,0.933,0.944,1.061,1.078,1.011,0.903,0.985,1.145,1.12,1.227,0.988,0.98,0.805,1.027,1.036,0.953,0.959,1.236,1.062,1.018,1.032,0.96,1.094,1.076,0.944,1.0,0.873,1.025,0.979,1.042,0.991,0.913,1.093,1.006,0.971,0.962,0.884,1.033 +NM_000110,1.222,0.759,2.395,0.758,1.205,0.865,0.821,0.936,1.431,1.199,0.697,1.167,1.065,1.039,1.121,1.035,1.417,1.0,1.949,0.926,0.807,1.056,0.83,1.294,0.928,0.885,3.618,1.119,0.807,0.838,1.123,1.026,1.575,0.959,0.905,0.705,0.961,0.944,0.976,0.799,1.625,1.205,1.01,0.7,2.006,0.762,0.864,0.94,0.923,1.721,0.984,1.1,1.277,1.621 +NM_000111,0.952,0.988,0.803,2.7,1.007,9.114,1.105,0.818,0.905,0.906,9.261,0.983,0.814,0.918,21.1,43.58,0.761,0.861,0.889,19.02,0.88,0.938,9.51,0.792,0.957,0.829,0.818,0.936,0.703,3.162,0.76,0.777,0.993,2.161,1.026,0.97,30.7,0.818,5.045,1.2,0.727,17.79,14.78,0.966,0.798,50.23,7.896,0.947,8.942,0.806,25.3,1.014,1.193,1.417 +NM_000112,1.224,0.754,1.505,0.862,0.963,0.94,0.642,0.865,1.607,0.929,0.905,0.893,1.129,1.554,0.993,1.232,0.924,0.953,1.772,0.937,0.905,1.412,0.911,0.933,0.783,1.204,1.448,1.345,0.74,1.131,1.608,1.269,1.58,1.163,0.672,0.742,1.457,0.922,0.999,1.062,1.878,2.492,0.907,0.927,1.052,0.91,0.955,0.925,0.821,0.813,1.191,0.904,1.06,1.131 +NM_000113,0.744,1.129,0.934,0.932,0.962,1.367,0.972,0.786,1.072,0.811,0.873,0.879,0.916,0.724,1.019,1.401,0.995,0.938,1.123,0.93,0.81,0.942,1.125,1.083,0.876,0.817,1.082,0.883,0.813,1.002,0.979,1.81,1.59,1.198,0.713,0.717,0.89,0.825,1.343,1.063,0.928,1.155,0.99,1.275,1.059,1.071,1.045,0.916,0.972,0.978,1.014,0.916,0.878,1.578 +NM_000114,1.186,0.793,0.975,0.898,1.024,1.136,0.946,0.898,1.04,0.909,1.34,1.0,0.936,1.412,1.259,2.314,0.762,0.967,0.932,1.45,0.979,1.024,1.768,0.857,0.942,1.075,0.916,0.828,1.425,0.863,1.027,0.853,0.903,1.104,0.847,1.065,1.635,1.04,1.159,0.813,1.11,1.911,1.866,0.868,0.92,1.506,1.173,0.924,1.696,0.933,1.38,0.916,0.806,0.977 +NM_000115,1.958,1.9749999999999999,1.916,2.222,1.835,1.955,2.3339999999999996,2.034,1.714,1.904,2.161,1.797,1.939,1.9809999999999999,1.755,2.011,1.759,1.805,1.725,1.9700000000000002,2.181,1.839,2.3810000000000002,1.759,1.979,1.657,1.6520000000000001,2.0869999999999997,2.3609999999999998,2.723,1.851,1.93,2.117,2.185,1.9819999999999998,1.846,1.927,1.734,2.699,1.879,1.865,2.102,2.13,2.222,1.8559999999999999,2.4379999999999997,1.855,2.004,1.84,1.74,1.9809999999999999,2.0300000000000002,1.9829999999999999,2.283 +NM_000117,0.782,0.875,1.189,0.662,0.961,1.033,0.51,0.686,1.358,1.294,0.672,1.302,0.711,0.625,0.846,1.31,0.918,0.843,1.451,0.784,0.478,0.829,1.264,1.559,0.627,0.99,1.137,1.284,0.335,1.003,1.133,1.514,1.863,1.065,0.509,1.115,0.773,1.12,1.48,0.814,1.291,0.996,0.633,1.923,1.38,0.681,1.277,0.929,0.86,1.036,0.949,1.143,1.182,1.357 +NM_000118,0.819,1.002,0.795,0.749,0.749,0.961,0.751,0.63,0.787,0.884,0.774,0.839,0.704,0.815,0.742,0.998,0.789,0.894,0.812,0.849,1.008,0.932,1.148,0.749,1.21,0.872,1.071,0.726,0.627,1.476,0.747,3.66,1.437,1.357,0.615,1.147,0.976,1.072,3.038,2.718,0.929,1.627,0.751,1.723,1.041,1.029,0.945,0.731,0.931,1.003,1.158,2.218,0.915,1.177 +NM_000119,1.021,1.104,0.985,1.402,0.849,0.999,0.926,1.244,1.134,1.155,0.926,0.914,1.052,1.071,0.942,0.936,1.02,1.032,0.992,1.001,1.067,0.958,0.942,0.954,1.192,0.905,0.898,1.024,1.282,1.066,0.92,0.936,0.998,1.071,0.978,0.887,1.046,0.812,1.126,0.992,1.023,1.022,1.376,0.926,1.187,1.119,0.937,1.029,0.94,0.891,1.004,0.9,1.281,1.008 +NM_000120,1.685,0.845,1.341,1.162,0.978,0.844,0.617,1.119,1.236,1.067,0.959,0.746,1.359,1.171,1.168,1.382,1.155,0.945,2.238,0.768,1.969,1.055,0.848,0.994,1.02,2.068,1.198,0.863,0.558,1.088,1.576,1.203,6.719,1.38,0.572,0.525,0.838,1.274,1.334,0.514,0.966,1.098,0.516,1.597,1.142,0.681,0.628,1.474,0.517,1.595,0.75,0.696,1.683,0.819 +NM_000121,0.915,1.054,0.966,0.923,0.82,1.017,0.775,0.979,1.014,0.923,0.922,1.001,0.922,0.831,1.26,0.888,0.954,0.766,0.985,0.939,1.166,0.896,1.064,0.941,0.962,0.939,0.977,0.949,0.875,1.107,0.855,1.167,0.95,1.037,1.009,1.083,1.07,0.942,1.114,1.311,0.988,1.17,1.105,1.075,0.96,1.021,0.899,0.914,0.928,0.936,1.047,1.056,0.82,1.179 +NM_000122,0.8,1.084,1.106,0.968,0.813,1.021,0.778,0.688,1.053,0.935,0.827,0.919,0.733,0.83,0.805,1.016,1.126,0.952,0.837,0.994,0.814,0.862,1.104,0.917,0.769,0.981,1.09,0.762,0.537,1.08,0.914,2.109,1.601,1.293,0.515,1.093,0.82,0.893,1.496,1.303,1.08,1.072,0.675,1.659,1.086,0.943,0.852,0.83,0.855,0.934,0.97,1.015,1.178,2.179 +NM_000123,0.84,1.035,1.197,0.919,0.807,1.395,0.751,0.427,0.994,0.778,1.357,0.544,0.597,0.665,0.98,1.667,0.931,0.918,0.837,1.321,0.535,0.779,1.17,0.757,0.946,0.885,1.25,0.711,0.652,1.986,0.788,1.324,0.915,1.515,0.434,0.896,1.333,0.935,1.335,0.794,0.97,1.517,0.914,1.279,0.742,1.449,0.972,0.697,0.991,0.866,1.367,0.692,0.903,0.989 +NM_000124,1.07,0.927,1.044,0.834,1.159,1.036,0.786,0.916,1.055,0.962,0.898,1.0,0.873,0.992,0.947,0.923,1.127,0.92,1.096,0.902,1.021,0.983,1.008,0.946,0.862,1.01,0.984,1.026,0.775,1.072,0.988,1.066,1.051,0.934,1.113,1.032,1.062,1.155,0.913,0.88,0.909,0.862,1.127,0.962,1.025,0.942,1.048,0.94,0.94,0.923,0.949,1.067,1.019,1.087 +NM_000125,1.086,1.033,1.174,0.846,1.096,0.944,0.897,1.031,0.832,1.074,0.979,1.022,0.96,1.336,1.124,1.194,1.045,1.193,1.13,0.889,0.98,0.879,1.01,1.129,0.934,0.941,1.243,0.985,0.904,0.985,0.996,1.226,0.99,0.999,0.998,0.958,0.896,1.118,0.939,0.901,1.06,1.009,1.046,0.862,0.984,1.043,0.977,1.046,0.886,0.973,0.946,0.966,1.092,1.092 +NM_000126,0.514,1.146,1.094,0.805,1.0,1.7,0.705,0.339,1.436,0.886,2.032,0.455,0.429,0.53,1.268,2.937,0.617,1.096,1.726,1.115,0.452,0.76,2.329,0.937,0.495,0.587,1.301,0.816,0.489,1.964,0.977,0.753,1.458,1.663,0.241,0.892,1.882,0.903,1.986,0.55,1.279,1.24,1.13,0.628,0.92,1.918,1.284,0.495,1.74,0.735,1.469,0.557,0.974,1.163 +NM_000127,0.44,0.908,0.766,0.635,0.571,1.714,0.702,0.347,0.662,0.56,1.134,0.613,0.456,0.454,0.971,1.779,0.592,0.796,0.409,1.146,0.422,0.478,1.676,0.742,0.621,0.461,1.434,0.589,0.549,1.92,0.442,1.819,0.966,1.577,0.164,0.928,1.609,0.779,1.639,2.167,0.703,1.482,1.588,1.392,0.668,2.544,1.072,0.379,2.468,0.506,1.336,1.213,0.724,1.104 +NM_000128,1.02,1.223,1.05,0.979,1.037,1.014,1.077,1.19,0.968,1.034,0.866,0.958,1.09,0.932,1.107,1.066,1.241,0.949,0.815,1.1,0.969,1.109,0.992,0.941,1.184,0.986,1.041,1.019,1.367,0.957,1.155,0.983,1.041,0.975,1.003,1.01,1.096,0.985,0.9,1.009,0.963,0.982,1.211,0.882,0.978,1.027,0.995,1.0,0.992,1.086,0.947,0.843,1.034,1.064 +NM_000129,0.793,1.517,0.769,1.097,0.799,1.555,1.492,0.916,0.874,0.979,0.889,0.809,0.924,0.683,1.003,1.09,0.871,0.767,0.957,0.995,0.925,0.718,1.382,0.861,1.387,0.849,1.005,1.025,1.089,2.832,0.744,1.272,1.067,3.039,0.768,0.932,1.303,0.786,1.1,0.978,1.054,3.031,1.019,0.864,0.818,1.12,0.785,0.869,0.826,0.838,1.371,1.017,0.969,0.9 +NM_000130,0.865,1.354,0.72,0.91,0.838,1.801,0.965,0.79,0.715,0.821,2.052,0.776,0.745,0.707,1.145,1.006,0.803,0.816,0.757,2.418,0.712,0.74,2.716,0.755,1.029,0.872,0.772,0.851,0.937,2.402,0.715,0.76,0.842,1.779,0.795,1.135,1.411,0.734,2.017,0.854,0.694,2.963,1.006,3.612,0.787,1.485,1.692,0.744,0.814,0.82,2.384,0.79,0.828,0.737 +NM_000131,0.919,1.073,0.977,0.897,1.016,1.0,0.832,1.047,0.861,0.953,0.904,1.048,0.848,0.961,0.9,0.863,0.987,0.985,0.964,0.971,1.046,1.1,1.179,0.85,0.934,1.135,1.108,1.027,0.966,1.165,1.03,1.037,0.866,0.983,0.968,1.113,1.018,0.842,1.044,1.071,1.036,1.037,0.936,1.072,0.926,1.014,1.002,1.041,0.895,0.986,1.086,0.873,0.93,0.871 +NM_000132,0.937,0.985,0.983,0.885,1.064,1.017,1.022,1.29,0.937,0.83,1.1,1.134,0.893,0.969,1.098,0.982,0.859,0.932,0.924,0.965,1.023,1.115,0.823,1.092,0.927,0.978,1.077,0.962,1.132,0.997,1.111,0.863,0.968,1.084,0.966,1.204,1.001,0.971,0.888,0.955,0.946,1.037,1.281,0.915,1.143,1.17,0.933,1.044,1.011,0.977,1.001,0.98,0.952,1.132 +NM_000133,1.091,0.899,1.043,0.989,0.99,1.003,1.235,1.059,1.014,1.006,0.955,1.1,1.059,1.012,1.099,1.011,0.884,1.053,0.959,0.948,1.063,0.985,0.951,1.079,1.069,1.039,0.983,0.886,0.952,0.961,0.995,0.877,0.905,0.964,0.947,0.917,1.086,0.887,0.903,1.027,0.968,0.929,1.217,0.896,1.046,0.936,0.861,1.042,0.981,1.101,1.043,0.932,0.951,1.106 +NM_000135,0.872,1.049,0.917,1.063,1.151,1.02,0.918,0.767,0.963,1.014,0.971,0.865,1.04,0.939,0.799,0.999,1.001,0.866,1.036,0.943,0.91,0.929,1.079,0.933,0.978,0.915,1.062,0.932,0.683,1.124,0.937,1.08,1.037,0.965,1.046,1.127,0.924,1.092,1.113,0.924,1.083,1.013,0.852,1.202,1.028,1.13,0.938,1.18,0.92,0.998,0.908,0.984,1.051,0.983 +NM_000137,0.973,1.791,1.14,0.773,0.897,0.683,0.633,0.569,1.194,0.994,1.018,1.159,0.821,0.78,0.955,1.203,0.91,0.935,1.179,0.773,0.768,1.09,1.455,1.231,0.825,1.37,1.083,1.042,0.484,0.953,0.918,1.215,1.193,0.782,0.449,1.173,0.833,1.111,1.16,0.926,1.139,1.082,0.666,1.119,1.34,0.614,0.969,1.065,0.887,0.998,0.767,0.98,1.316,1.219 +NM_000138,0.644,1.235,0.759,0.82,0.704,1.194,0.902,0.795,0.658,0.764,1.163,0.802,0.765,0.785,0.916,0.997,0.778,0.816,0.695,1.303,0.962,0.696,1.645,0.855,1.003,0.702,0.698,0.873,0.717,1.913,0.681,12.8,1.555,1.796,0.815,1.055,0.956,0.955,2.022,3.039,0.859,1.623,1.032,0.917,0.804,1.295,0.913,0.763,0.923,0.76,1.526,1.464,0.831,1.47 +NM_000139,0.899,1.225,0.955,1.167,0.956,1.003,1.159,0.932,1.078,0.809,1.176,0.928,0.975,0.896,1.007,0.981,0.887,1.092,0.868,0.931,0.951,0.848,0.937,0.815,1.309,0.941,0.999,0.913,0.72,1.156,1.052,1.173,0.794,1.759,0.982,0.876,0.965,1.223,1.274,0.896,0.865,1.685,0.798,0.879,0.995,1.128,0.948,0.992,0.857,0.951,1.087,0.869,1.151,1.333 +NM_000140,1.017,0.779,1.059,0.935,0.949,1.003,0.697,0.712,1.229,1.155,0.958,0.891,0.78,1.108,1.017,1.173,1.037,0.894,1.193,0.863,0.844,0.872,0.863,1.0,0.716,1.022,1.249,1.066,0.663,1.343,1.237,1.134,1.097,1.105,0.585,0.763,0.935,1.142,1.209,0.667,1.168,1.021,0.833,1.241,0.945,1.016,0.806,1.024,0.924,0.807,0.9,0.89,0.983,0.966 +NM_000142,1.109,1.029,0.979,0.881,1.15,1.003,1.224,1.085,0.88,0.893,0.879,1.005,0.888,1.246,0.956,1.073,0.968,1.125,0.992,1.157,0.906,1.0,0.978,0.921,1.031,1.078,0.928,0.898,1.239,0.979,0.984,1.092,1.067,0.958,0.997,0.937,1.01,1.178,1.085,0.902,0.979,1.12,1.021,0.903,1.041,1.055,1.037,1.003,1.146,1.041,0.935,1.037,0.991,0.904 +NM_000143,0.729,0.859,1.145,0.898,0.813,0.845,0.638,0.491,1.414,1.152,1.238,0.637,0.516,0.722,0.967,1.999,0.703,0.818,1.375,0.928,0.594,0.453,1.293,0.884,0.752,0.755,1.308,0.93,0.337,0.999,1.013,1.221,3.169,1.385,0.423,1.321,1.178,0.715,1.225,0.687,1.301,0.914,0.914,0.908,1.021,1.219,1.077,0.559,1.446,0.869,1.244,0.721,1.07,2.275 +NM_000145,1.158,1.131,1.035,0.931,1.052,0.992,0.974,1.08,0.925,1.061,0.989,0.921,1.117,0.896,1.175,0.979,0.867,0.965,1.037,0.983,1.043,0.986,0.947,1.079,0.936,0.999,1.05,0.783,0.911,1.017,1.071,1.026,1.016,1.147,0.929,1.083,0.977,0.961,0.982,0.931,0.963,0.964,0.845,0.924,1.03,0.979,0.944,1.023,0.831,0.937,0.945,1.0,0.901,0.971 +NM_000146,0.474,1.772,0.579,0.503,0.445,1.344,0.791,0.446,0.733,0.405,1.272,0.572,0.501,0.303,0.823,1.969,0.34,0.759,0.715,1.301,0.387,0.472,1.804,0.557,0.845,0.666,0.614,0.761,0.437,1.463,0.657,1.656,1.684,1.768,1.053,1.235,1.707,0.559,1.983,1.63,0.637,1.487,0.601,1.447,0.687,0.98,1.53,0.561,1.151,0.34,1.003,1.131,0.519,2.35 +NM_000147,0.271,1.737,0.371,1.017,0.268,3.17,1.112,0.234,0.465,0.286,4.111,0.25,0.259,0.355,1.243,2.607,0.401,1.163,0.464,1.9,0.223,0.184,2.243,0.348,1.074,0.317,0.453,0.279,0.593,3.534,0.378,0.971,0.681,3.592,0.227,0.623,2.631,0.26,1.61,0.571,0.408,2.525,1.022,0.711,0.321,1.715,0.778,0.21,0.983,0.251,1.79,0.765,0.466,1.282 +NM_000148,0.898,1.4,1.341,0.878,0.884,0.863,0.943,0.851,1.038,1.134,0.72,1.11,0.925,0.817,0.882,0.809,1.153,0.769,1.294,0.773,0.924,0.99,0.829,1.003,1.565,0.885,1.152,0.845,0.637,0.989,0.888,1.182,2.483,1.4,0.605,1.175,1.102,1.05,0.886,1.277,1.096,0.761,0.776,1.027,1.24,0.675,0.959,0.906,0.715,1.343,0.825,0.916,1.441,0.988 +NM_000149,1.283,0.467,0.942,0.841,1.215,1.103,0.393,1.358,1.755,0.694,1.002,0.747,1.164,0.732,1.141,1.83,1.603,0.999,1.724,0.693,0.732,1.753,0.991,1.436,0.223,1.483,1.125,0.971,0.401,0.774,1.593,0.307,1.023,0.668,3.073,0.663,0.962,1.518,1.495,0.492,1.157,0.775,0.627,0.813,1.159,0.797,1.068,2.179,1.154,1.091,1.016,0.533,0.893,0.361 +NM_000152,0.832,1.385,0.941,1.13,0.857,1.267,0.908,0.781,1.046,0.93,0.846,0.843,0.962,0.789,0.966,0.921,1.085,0.969,0.882,1.062,1.091,1.037,1.281,1.08,1.048,0.798,0.918,0.828,0.948,0.963,0.876,2.83,1.008,1.526,0.71,0.769,0.999,0.776,1.152,1.148,0.733,1.281,0.727,1.302,0.915,0.898,0.868,0.888,0.855,0.945,1.038,1.097,1.252,1.374 +NM_000154,0.708,0.578,1.62,0.487,0.978,1.296,0.511,0.545,1.427,0.932,1.201,1.006,0.708,0.534,0.963,1.827,1.017,0.953,1.393,1.447,0.426,0.87,2.241,0.974,0.341,0.902,1.319,1.009,0.296,1.091,0.842,1.103,0.668,0.693,0.221,1.143,1.591,1.078,0.732,1.07,1.344,1.497,1.537,0.994,1.299,2.001,1.404,0.699,1.079,1.136,1.337,0.9,0.896,0.622 +NM_000155,1.369,1.887,2.166,1.4220000000000002,1.703,3.263,1.581,1.315,1.83,1.752,1.883,1.471,1.418,1.515,2.654,3.822,1.6400000000000001,2.062,2.0359999999999996,2.2,1.3980000000000001,1.811,2.4210000000000003,1.944,1.6720000000000002,1.5939999999999999,2.157,1.729,1.3969999999999998,2.504,1.673,3.208,2.221,2.773,1.022,1.782,2.469,1.682,2.225,1.6840000000000002,1.74,2.623,1.811,2.0140000000000002,1.4849999999999999,2.102,1.813,1.51,1.827,1.411,2.259,1.705,1.912,4.245 +NM_000156,1.447,1.113,1.817,1.053,1.167,0.561,0.79,0.897,1.516,1.785,0.509,1.685,1.212,1.134,1.082,0.793,1.374,1.194,2.038,0.686,1.198,1.074,0.648,1.607,1.663,1.835,1.4,1.289,0.527,0.614,1.336,1.859,0.797,1.486,0.608,0.5,0.7,2.196,0.774,0.738,1.352,0.981,0.549,0.599,1.431,0.51,1.142,1.397,0.505,1.124,0.682,0.696,1.653,0.767 +NM_000158,1.027,0.805,1.912,0.845,1.352,0.734,0.661,0.67,1.4,1.277,0.797,0.808,0.71,0.839,1.15,1.185,1.187,0.827,1.563,0.928,0.938,0.864,0.891,1.091,0.771,1.141,1.572,1.391,0.554,0.785,1.134,1.004,1.502,1.006,0.564,0.787,0.93,1.122,0.971,0.725,1.451,0.836,0.648,0.838,1.288,0.882,0.938,0.843,1.0,1.497,1.103,0.824,1.519,1.253 +NM_000159,0.856,1.055,1.219,0.732,0.926,0.874,0.756,0.736,1.103,1.104,0.744,0.918,0.77,0.713,1.054,1.03,0.959,1.018,1.167,0.818,0.732,0.978,1.286,1.095,0.869,1.018,1.111,0.968,0.711,1.081,1.029,1.113,1.035,1.037,0.627,0.911,0.958,1.0,1.18,0.855,1.139,0.939,0.947,1.19,1.175,0.924,1.115,0.909,1.136,0.879,0.934,1.068,0.973,1.265 +NM_000160,1.102,0.966,0.932,0.959,0.981,0.958,1.118,0.878,0.949,1.031,1.103,1.024,1.082,1.115,1.017,0.997,0.87,0.967,0.952,1.094,0.924,0.963,0.971,1.008,1.067,1.017,0.97,1.061,1.133,1.014,1.052,0.871,1.176,0.952,1.07,1.062,0.967,1.033,0.978,0.905,1.1,1.021,0.982,1.092,0.914,0.845,1.106,1.025,1.173,0.833,0.918,1.016,0.986,0.991 +NM_000161,0.832,0.846,1.218,0.826,0.879,1.058,0.917,0.756,1.062,1.01,1.233,0.856,0.794,0.947,1.244,1.163,0.946,1.035,1.114,1.213,0.743,0.687,1.093,0.906,0.772,0.812,1.097,0.886,0.715,0.904,1.112,0.842,1.114,1.026,0.852,0.962,1.06,0.764,0.984,0.821,1.054,0.942,1.332,1.167,0.867,1.408,0.921,0.769,1.203,0.822,1.115,0.974,1.334,1.48 +NM_000162,1.042,1.055,1.073,0.953,1.085,1.06,1.208,0.999,0.947,0.958,1.15,0.951,1.066,1.173,0.858,1.196,0.923,0.966,0.971,1.012,0.851,0.933,1.06,0.96,1.023,0.913,0.957,0.99,1.416,1.011,0.914,0.851,1.041,1.163,1.044,1.092,1.076,0.988,0.93,0.977,0.99,0.987,0.805,1.105,1.054,1.113,1.071,0.968,0.963,1.01,1.041,1.057,1.091,0.956 +NM_000163,1.009,1.231,1.277,0.919,1.164,1.12,0.845,0.966,1.139,1.219,0.92,1.585,1.19,1.141,1.413,0.769,1.345,0.858,1.081,0.871,0.801,1.086,0.877,1.21,1.018,0.997,1.291,1.177,0.92,1.095,1.523,1.699,1.05,1.287,0.753,1.064,0.867,1.46,0.954,0.825,1.144,0.978,0.915,0.865,0.985,0.936,1.05,1.016,0.823,1.152,1.045,0.752,1.073,0.896 +NM_000165,1.372,0.503,3.722,0.655,2.374,0.654,0.524,1.355,2.572,1.913,0.496,1.905,1.069,1.403,1.948,1.939,1.548,1.745,1.66,0.589,0.706,2.897,0.771,2.345,0.48,1.002,2.234,1.966,0.311,0.734,2.935,1.978,2.65,0.809,0.402,0.409,0.645,2.876,0.998,1.145,1.824,0.675,0.528,0.397,2.357,0.543,1.357,2.239,1.024,1.661,0.968,1.141,0.979,0.895 +NM_000166,0.38,1.202,0.377,0.865,0.383,1.486,0.602,0.377,0.403,0.357,2.276,0.374,0.396,0.393,1.0,2.306,0.375,1.232,0.343,1.442,0.282,0.364,1.703,0.34,1.0,0.354,0.361,0.364,1.052,1.927,0.361,1.185,2.101,2.36,0.357,1.948,1.055,0.388,1.638,0.66,0.355,1.044,0.95,1.335,0.383,1.125,1.326,0.377,1.352,0.377,1.128,0.743,0.401,0.945 +NM_000167,0.889,0.595,0.975,0.805,0.891,0.969,0.497,0.808,1.117,1.117,0.922,0.876,0.806,0.711,1.297,2.146,1.252,0.773,1.344,0.851,0.833,0.811,0.78,1.384,0.621,0.705,1.774,0.996,0.391,0.825,0.903,0.899,1.23,0.721,0.579,0.849,1.732,0.781,1.095,2.864,1.432,0.783,1.543,0.826,1.403,1.004,2.414,0.776,1.575,1.223,0.926,1.355,1.478,0.95 +NM_000168,1.139,0.857,1.325,0.949,1.042,0.861,1.003,0.951,1.006,1.252,0.855,0.941,0.874,1.018,0.834,0.9,1.019,0.682,1.19,0.931,1.308,0.956,0.873,1.134,0.813,1.201,1.534,0.949,0.567,1.053,1.073,2.563,1.092,1.424,0.784,0.84,0.74,1.241,1.155,0.803,1.084,1.138,1.007,0.812,1.356,0.862,0.897,0.989,0.741,1.28,0.975,0.992,1.294,0.875 +NM_000169,0.701,1.022,0.948,0.792,0.855,0.781,0.872,0.441,1.089,1.164,1.0,0.711,0.683,0.58,0.813,1.857,0.612,1.0,1.278,0.898,0.531,0.626,1.637,0.971,0.682,0.715,1.343,0.767,0.52,1.066,0.779,2.117,3.324,1.067,0.344,2.495,1.937,0.763,1.857,2.274,0.997,0.978,0.831,1.493,1.057,1.019,1.024,0.584,1.274,0.924,1.289,2.152,0.912,2.111 +NM_000170,1.057,0.886,1.862,0.902,1.252,0.784,1.0,0.923,1.122,1.007,0.887,1.273,0.945,1.052,1.237,0.962,1.08,1.541,1.176,0.869,0.904,0.869,0.903,1.566,0.911,1.032,6.779,0.897,0.939,0.991,0.888,0.831,1.961,1.033,0.864,0.834,1.034,0.916,0.832,0.893,0.913,1.084,1.095,0.866,0.891,0.844,1.433,1.117,0.82,1.573,1.234,0.783,1.305,1.086 +NM_000171,0.896,1.044,1.078,1.074,0.825,0.899,0.987,1.011,1.114,0.986,1.101,1.085,1.188,1.062,1.033,1.01,0.985,1.075,1.151,1.058,0.944,0.889,0.898,0.942,0.851,1.011,0.972,0.912,1.22,0.945,1.12,1.133,1.045,0.908,1.251,0.879,0.978,0.996,0.921,1.147,1.09,1.015,1.151,0.908,1.115,0.983,0.907,1.04,0.911,0.904,0.971,1.004,1.089,0.952 +NM_000172,1.0,1.009,1.075,0.872,0.967,0.918,1.122,0.958,0.991,0.996,1.025,1.021,1.035,1.149,0.898,0.87,0.998,1.078,0.986,1.055,1.095,1.0,1.006,0.904,0.973,1.083,0.992,1.005,1.038,0.951,1.068,1.05,0.921,1.061,1.006,0.917,0.915,1.097,1.121,1.153,0.941,0.945,0.845,0.913,1.118,1.017,0.991,0.988,0.942,1.047,1.115,0.887,1.08,1.018 +NM_000173,1.174,0.973,0.978,0.875,1.075,0.94,1.075,0.973,0.968,0.95,1.178,0.902,0.95,1.063,0.843,1.04,0.959,1.166,1.087,0.928,1.111,0.981,1.115,0.849,1.036,0.993,0.995,1.132,0.98,0.913,1.08,1.037,0.935,0.977,1.105,0.985,1.036,1.029,1.077,0.894,0.928,0.954,1.142,1.136,0.96,1.054,1.037,1.036,1.034,0.972,0.939,0.966,0.895,0.922 +NM_000174,0.978,0.908,0.995,1.145,0.962,1.044,1.131,1.093,1.029,1.041,0.935,0.911,0.878,0.795,0.794,1.04,0.918,1.031,0.892,1.122,0.915,1.087,1.142,0.989,1.039,0.903,0.949,0.898,1.277,1.101,1.067,1.435,1.007,0.984,1.107,1.228,0.982,0.919,1.143,1.016,1.03,0.957,0.966,0.922,1.098,1.217,1.091,0.963,0.988,0.932,0.924,1.128,1.014,0.911 +NM_000175,0.787,1.026,1.225,0.735,0.762,0.821,0.72,0.375,1.195,1.217,0.813,0.958,0.49,0.515,0.822,1.546,0.759,1.124,1.304,1.175,0.398,0.671,1.851,1.137,0.642,0.874,1.475,0.84,0.585,1.011,0.911,0.938,3.013,0.906,0.231,1.301,1.214,0.831,1.684,1.215,0.989,0.989,0.973,1.217,1.279,0.827,1.356,0.698,1.659,1.027,1.451,1.088,0.86,1.473 +NM_000176,1.034,0.968,1.303,1.058,1.004,0.968,0.804,0.847,1.273,0.96,0.948,0.988,0.971,0.974,0.851,0.802,1.175,1.061,1.358,0.878,0.831,0.942,0.913,1.081,0.781,0.963,1.016,1.099,0.532,0.959,1.144,1.105,1.271,1.101,1.161,0.647,0.905,1.317,1.06,0.925,1.097,1.043,0.928,1.038,1.133,0.827,0.962,1.127,0.78,1.043,0.955,1.156,1.07,1.119 +NM_000177,1.006,1.005,1.04,0.959,0.896,0.906,0.85,1.156,0.967,0.91,1.025,1.034,0.891,0.985,1.004,0.963,0.893,0.965,1.198,1.041,1.158,0.942,0.899,0.99,0.947,0.987,1.154,0.914,0.885,0.833,0.904,0.935,0.885,1.054,0.98,0.919,1.029,0.984,0.983,0.95,1.02,1.007,0.716,1.033,0.945,0.983,1.027,0.899,0.975,0.964,1.048,1.161,1.175,0.996 +NM_000178,0.613,0.865,1.188,0.551,0.853,1.163,0.463,0.471,1.093,1.19,1.092,0.96,0.525,0.647,0.908,1.874,0.959,0.922,1.552,0.758,0.469,0.829,1.636,1.009,0.478,0.824,1.257,0.825,0.486,1.097,0.82,0.904,1.484,1.224,0.134,0.988,1.091,1.105,1.173,0.986,1.106,0.957,0.872,1.557,0.916,1.133,1.466,0.738,1.167,0.692,0.991,0.952,1.18,1.157 +NM_000179,0.524,1.403,1.231,0.467,0.985,0.971,0.664,0.575,1.48,1.261,0.601,1.166,0.71,0.685,0.916,1.07,0.813,0.956,1.2,0.778,0.53,1.153,1.671,1.216,0.463,0.608,2.132,0.788,0.553,1.234,1.166,1.505,5.438,1.072,0.317,0.774,0.87,1.263,1.331,1.266,1.254,1.149,0.538,0.983,1.087,0.827,0.942,0.706,1.191,0.777,1.101,1.037,0.669,2.564 +NM_000180,1.437,0.949,2.156,1.145,1.776,0.798,1.035,1.049,1.459,1.223,0.894,1.693,1.256,1.51,1.153,0.91,1.479,1.187,2.399,0.811,1.477,1.538,0.944,1.44,0.971,2.019,1.921,1.603,0.864,0.951,1.69,0.975,0.898,0.859,0.873,0.862,0.874,1.679,0.909,0.991,1.768,0.843,0.806,0.938,1.755,0.825,1.084,1.702,0.819,1.361,0.945,0.893,1.696,1.042 +NM_000182,0.695,0.89,1.192,0.727,0.994,0.953,0.78,0.568,1.022,0.96,1.131,0.847,0.623,0.726,1.127,1.811,0.752,1.156,1.219,1.206,0.569,0.774,1.634,0.856,0.686,0.908,1.001,0.897,0.606,1.226,0.921,1.113,1.139,1.194,0.639,1.181,1.513,0.855,1.105,1.072,0.905,1.602,0.972,1.139,0.973,1.399,0.998,0.808,1.19,0.857,1.296,0.896,0.862,1.095 +NM_000183,0.534,0.68,1.495,0.39,1.379,1.288,0.536,0.889,1.874,1.175,0.564,1.003,0.674,0.727,1.412,2.689,1.016,1.066,0.723,1.223,0.3,1.382,1.148,1.514,0.37,0.433,1.76,1.076,0.337,1.021,1.948,0.868,2.321,1.029,1.265,0.259,1.127,1.233,1.06,0.647,1.01,1.204,0.609,0.347,1.109,1.089,1.388,0.987,1.209,0.709,1.13,0.553,0.434,1.29 +NM_000184,0.962,0.948,0.91,10.8,1.033,1.61,0.887,4.219,0.95,1.027,0.935,1.244,0.978,0.839,0.96,0.953,1.019,0.98,0.932,1.033,0.912,0.89,0.898,0.928,1.021,0.872,1.005,1.004,0.944,1.272,0.841,1.046,0.998,1.002,0.896,1.006,1.595,0.874,0.98,1.458,1.431,1.648,1.369,0.845,1.055,0.875,1.81,1.009,0.911,0.888,1.129,1.159,1.108,0.995 +NM_000185,0.941,1.022,0.969,1.098,1.135,0.958,1.14,1.023,1.106,1.009,0.999,0.967,0.963,0.982,0.886,1.052,1.039,1.162,0.993,1.091,0.981,0.969,1.237,0.976,0.985,0.907,0.898,0.989,1.035,0.988,0.951,1.009,1.026,1.036,0.882,1.181,1.053,0.941,1.045,0.942,0.902,0.943,1.031,0.942,1.11,1.013,1.023,1.001,0.988,1.017,0.986,0.984,0.99,1.204 +NM_000186,0.771,1.036,1.227,0.979,0.884,1.063,0.853,0.897,0.871,0.719,0.818,0.821,0.762,1.019,1.169,0.929,1.067,0.814,0.895,1.306,0.89,0.841,1.119,0.893,0.881,0.867,1.257,0.906,0.903,1.17,0.779,1.675,1.413,1.561,1.007,0.98,0.772,0.816,1.004,0.767,1.028,1.424,0.993,1.037,0.876,1.003,0.82,0.939,0.831,0.741,0.852,0.948,1.462,1.6 +NM_000187,0.341,2.466,0.37,1.487,0.376,2.719,0.94,0.428,0.378,0.372,4.255,0.383,0.373,0.427,1.146,4.671,0.351,0.998,0.341,3.182,0.401,0.37,2.364,0.421,1.235,0.415,0.36,0.409,0.866,3.897,0.35,0.862,0.424,2.84,0.406,0.901,2.116,0.361,3.746,0.618,0.366,2.221,1.799,1.335,0.397,3.071,0.699,0.379,1.453,0.37,2.696,0.726,0.436,1.22 +NM_000188,2.2169999999999996,1.66,2.7560000000000002,1.823,2.573,2.044,1.504,1.9660000000000002,2.853,2.647,1.5750000000000002,2.2140000000000004,1.638,1.91,2.019,2.0469999999999997,2.187,2.58,3.415,1.7069999999999999,1.928,2.511,1.875,2.668,1.672,2.6879999999999997,2.83,2.25,1.812,2.1639999999999997,2.7249999999999996,1.726,1.583,2.347,1.321,1.515,1.8820000000000001,2.9459999999999997,2.229,1.557,2.52,1.958,1.597,1.605,2.8609999999999998,1.666,1.6230000000000002,2.338,1.4380000000000002,2.322,2.067,1.7650000000000001,2.314,2.207 +NM_000189,0.958,0.993,1.047,1.145,0.915,0.962,0.728,0.944,0.961,0.929,1.004,0.98,1.007,0.872,0.98,0.955,0.944,1.262,0.968,1.031,0.993,0.946,1.086,0.83,0.925,0.938,0.899,1.218,0.808,0.909,1.005,0.893,1.173,0.926,1.066,0.967,0.947,0.946,1.087,0.921,1.023,0.937,1.358,0.932,1.108,0.999,1.192,0.978,1.688,1.128,0.967,0.978,1.037,1.082 +NM_000190,0.879,0.9,0.853,0.873,0.855,0.995,0.796,0.639,0.882,0.998,1.167,1.106,0.898,0.862,0.865,1.464,0.896,1.182,1.107,0.855,0.687,1.006,1.372,1.09,0.887,1.022,0.971,0.76,0.706,1.179,0.967,1.445,1.215,0.885,0.685,1.704,1.029,1.072,1.813,0.957,1.032,0.956,0.773,1.501,1.019,0.901,0.993,1.006,1.17,0.963,0.974,1.008,0.954,1.366 +NM_000191,0.654,1.305,1.102,0.839,0.941,1.942,1.181,0.774,1.124,0.855,1.109,0.689,0.704,0.62,1.373,1.813,0.957,1.379,0.84,1.681,0.519,0.953,1.242,0.895,0.911,0.67,1.065,0.779,0.896,1.51,0.957,1.031,0.874,1.838,0.782,0.704,1.259,0.779,1.594,0.839,0.865,1.305,0.741,0.897,0.739,1.321,1.21,0.825,1.358,0.695,1.258,0.638,0.553,1.167 +NM_000193,0.922,1.104,1.035,1.078,1.128,1.078,0.963,1.085,0.976,1.015,1.072,0.918,0.985,0.963,1.128,1.007,0.964,1.087,0.972,0.926,1.035,1.059,1.068,0.972,1.062,1.158,0.94,1.023,0.958,1.037,1.008,0.935,0.979,0.961,0.927,1.001,1.069,0.996,1.283,1.068,0.957,0.99,0.967,0.936,0.899,1.007,0.969,1.061,1.103,0.907,1.007,0.922,1.163,1.097 +NM_000194,0.672,1.319,0.941,0.762,0.757,1.057,0.724,0.449,1.144,0.942,1.381,0.695,0.577,0.704,0.994,1.905,0.656,0.727,1.275,0.876,0.565,0.658,1.478,1.042,0.851,0.815,1.546,0.9,0.571,1.232,0.922,1.064,3.466,1.452,0.338,1.171,1.119,0.788,1.178,0.596,0.993,0.872,0.763,1.769,0.85,1.047,1.075,0.592,1.293,0.758,1.241,1.006,0.915,1.401 +NM_000196,0.757,0.97,0.772,1.051,0.716,3.289,0.823,0.603,0.697,0.737,3.206,0.818,0.749,0.682,2.414,6.104,0.601,0.962,0.805,2.621,0.725,0.75,4.653,0.721,0.791,0.945,0.704,0.543,1.009,1.413,0.714,0.771,4.238,1.691,0.604,1.554,2.584,0.75,1.438,0.808,0.735,5.09,3.313,2.196,0.721,1.648,1.279,0.701,3.434,0.78,2.061,0.808,0.633,0.888 +NM_000197,0.848,0.914,0.985,0.861,0.853,1.021,0.959,0.893,1.116,1.127,0.996,0.875,1.024,1.016,0.902,0.983,0.89,0.951,0.845,0.973,1.159,0.949,0.886,1.086,0.986,1.134,0.984,0.933,0.673,0.94,1.183,1.021,1.014,0.898,0.956,1.046,0.929,1.003,1.002,1.105,0.952,0.949,0.9,1.026,0.939,1.045,1.031,0.906,1.035,1.023,1.034,0.981,1.011,1.08 +NM_000198,1.052,0.899,1.111,1.177,0.921,0.921,1.09,0.903,0.935,1.074,1.012,1.06,1.001,1.101,1.208,1.063,1.126,1.091,0.997,1.027,0.895,0.917,0.908,1.12,1.034,0.956,0.961,1.003,1.102,0.942,1.019,0.988,0.878,0.891,1.045,0.885,1.023,1.013,0.994,0.909,1.007,1.012,1.028,0.941,1.012,1.076,0.866,0.965,1.172,1.069,0.887,1.212,1.193,0.98 +NM_000199,0.801,1.181,0.825,0.807,0.649,1.001,0.563,0.434,0.689,0.661,0.96,0.485,0.574,0.605,0.833,1.271,0.844,1.027,0.918,0.946,0.835,1.135,1.179,0.695,1.59,0.999,1.179,0.495,1.247,1.593,0.627,1.599,0.72,1.812,0.399,0.557,0.857,1.108,1.608,1.279,0.688,1.701,0.707,1.962,0.797,0.835,0.804,0.824,0.66,0.923,0.833,0.691,1.109,1.271 +NM_000200,0.998,0.996,0.959,0.949,1.044,0.837,1.184,1.196,1.002,1.036,1.014,1.017,1.085,1.15,1.034,1.132,1.007,1.019,0.818,1.064,0.906,1.032,1.204,1.012,0.972,1.006,1.082,1.028,1.115,0.956,0.978,0.985,1.035,1.034,0.933,0.997,0.993,0.911,1.109,0.946,1.005,1.134,0.924,0.948,1.154,1.113,0.98,1.011,1.089,1.1,1.038,1.074,0.929,0.924 +NM_000201,0.834,0.935,1.01,0.909,0.926,1.041,0.967,1.297,0.991,0.983,0.992,0.948,0.979,1.074,0.836,1.037,1.001,0.805,0.959,1.021,1.044,1.044,0.967,1.058,0.938,1.048,0.923,0.998,1.266,0.922,0.822,1.052,1.098,0.925,1.014,0.826,1.066,1.091,1.209,1.266,0.988,0.977,0.946,1.046,0.85,0.876,0.952,0.949,0.892,1.154,0.9,1.079,0.85,1.423 +NM_000202,1.488,0.676,1.477,0.726,1.766,0.788,0.637,1.628,1.937,1.004,0.938,1.43,1.28,1.168,1.329,1.076,1.385,1.05,1.404,0.833,0.808,1.704,0.79,1.144,0.493,1.498,1.155,1.734,0.486,0.911,2.117,1.365,1.568,0.89,3.692,0.822,0.742,1.839,1.613,1.056,1.83,0.948,0.489,1.375,1.218,0.859,1.8,2.078,0.832,0.919,0.794,0.908,0.944,0.894 +NM_000203,0.883,1.881,0.933,1.134,0.821,1.084,0.806,0.807,0.875,0.815,1.323,0.917,0.863,0.637,0.819,1.001,0.796,1.021,1.019,1.148,0.768,0.991,1.392,0.846,1.589,0.903,0.999,0.768,1.123,1.494,0.7,1.665,1.245,1.893,0.603,0.79,1.033,0.992,1.558,1.046,0.842,1.477,0.854,1.92,0.994,0.979,0.902,1.028,0.817,0.895,1.034,1.013,0.855,0.864 +NM_000204,0.412,0.743,1.717,0.937,0.512,1.925,0.929,0.435,0.403,0.436,2.52,0.432,0.377,0.449,1.087,4.5,0.727,0.866,0.865,2.366,0.384,0.44,1.315,0.729,0.448,0.393,1.407,0.462,0.279,2.237,0.46,2.913,1.346,1.632,0.493,1.518,2.299,0.521,1.737,0.715,1.206,3.353,1.489,1.184,0.862,2.655,0.997,0.479,3.175,0.736,2.531,0.767,1.004,0.809 +NM_000206,0.716,0.82,0.909,0.856,0.589,1.382,1.167,0.71,0.841,0.516,3.201,0.675,1.032,0.683,1.826,3.469,0.771,0.836,0.925,1.589,0.576,0.681,0.922,0.674,1.064,0.592,0.992,0.66,0.489,0.864,0.878,0.977,4.077,1.693,0.907,1.008,1.89,0.621,4.203,2.013,0.698,2.251,0.94,0.639,0.837,1.466,2.084,0.583,0.796,0.805,1.377,1.646,1.119,1.676 +NM_000208,0.974,1.133,0.894,1.006,0.87,0.992,1.0,0.774,1.048,0.838,0.913,0.906,0.793,0.906,0.914,0.965,0.98,0.958,0.735,1.114,0.755,0.807,1.052,0.856,0.891,1.01,0.872,1.053,0.765,1.053,0.906,1.192,0.9,1.074,0.823,0.997,1.158,0.983,1.382,1.081,0.944,1.425,0.931,1.6,0.852,1.042,0.954,0.945,1.136,0.838,1.033,0.912,0.795,0.917 +NM_000209,0.918,0.976,1.122,0.84,0.922,0.939,0.862,1.048,0.87,0.843,1.041,0.983,0.882,0.946,1.171,0.917,0.966,1.073,0.966,0.958,0.806,0.95,1.079,1.011,0.93,0.99,1.132,0.931,1.573,1.011,1.082,1.115,0.94,1.0,0.981,0.944,1.023,0.876,1.125,0.999,1.122,0.956,1.053,1.044,0.837,1.028,0.932,0.972,0.934,1.022,0.937,0.953,0.88,0.992 +NM_000211,0.915,0.947,1.118,1.026,0.996,0.847,0.792,0.718,0.919,0.921,0.693,0.809,0.909,0.805,0.726,0.744,1.071,0.773,1.031,0.861,0.771,0.931,1.128,1.096,0.835,0.859,1.626,0.873,1.017,1.198,0.84,1.85,1.023,0.995,0.629,0.655,0.812,1.015,1.967,2.356,1.029,1.33,0.672,1.099,1.036,0.901,0.869,0.824,0.652,1.086,0.764,1.735,1.111,1.353 +NM_000212,1.037,1.105,1.001,1.101,0.824,0.955,0.919,0.888,1.058,0.88,0.933,0.946,1.135,1.049,1.062,1.033,0.879,0.948,0.992,0.974,0.886,1.017,1.033,0.987,0.999,0.915,1.105,0.891,0.7,1.032,0.939,1.075,0.895,1.101,0.962,1.134,0.95,0.915,0.987,1.272,1.191,0.988,0.855,0.989,1.088,1.06,0.986,0.793,1.01,0.986,0.997,0.976,1.189,0.998 +NM_000213,0.622,1.171,0.659,1.346,0.377,1.588,0.65,0.337,0.41,0.493,1.217,0.383,0.383,0.411,0.805,1.54,0.881,0.919,0.744,1.435,0.774,0.543,1.515,0.474,0.989,0.655,0.596,0.326,1.031,1.266,0.468,1.203,1.605,1.557,0.681,1.938,1.336,0.517,4.316,0.745,0.428,1.384,0.821,4.551,0.388,0.945,0.804,0.56,1.3,0.856,1.307,0.887,0.8,2.288 +NM_000215,0.877,0.982,1.056,0.976,1.027,1.028,1.02,0.985,0.937,0.856,1.025,1.185,1.073,0.942,1.002,1.049,0.917,1.049,0.98,1.049,0.984,1.002,0.935,1.025,0.821,0.957,1.079,0.969,1.196,0.92,0.938,1.004,0.977,1.055,0.948,1.077,1.036,0.976,1.089,0.906,1.06,0.976,0.807,1.023,0.953,1.006,0.892,1.041,0.96,0.906,1.035,0.998,1.032,0.881 +NM_000216,1.06,1.131,1.311,0.892,1.003,0.944,1.11,0.904,0.918,1.079,0.841,1.08,0.934,1.029,1.019,0.944,0.959,0.952,1.136,1.095,0.964,1.134,0.825,0.888,1.169,1.03,0.932,0.797,1.282,0.965,1.047,3.37,1.106,1.012,0.954,0.978,0.844,1.002,0.902,0.967,0.979,1.144,0.942,0.866,1.079,0.988,0.956,0.928,0.836,1.01,1.041,0.99,1.09,0.989 +NM_000217,0.883,0.891,0.932,0.91,0.998,0.904,1.033,1.038,0.993,0.915,0.987,1.009,1.076,0.867,1.277,0.841,0.968,0.886,0.957,1.049,1.184,0.887,1.003,0.899,1.043,1.005,1.032,1.031,0.802,0.986,0.946,1.057,1.014,1.02,0.968,1.037,1.077,1.043,1.035,1.019,1.179,0.83,0.947,0.937,0.942,0.99,0.88,0.938,1.135,0.984,1.077,0.981,0.901,0.837 +NM_000219,0.948,0.998,1.046,1.002,0.91,0.957,0.99,0.92,0.838,1.012,0.947,0.926,1.073,0.893,1.138,1.033,0.917,1.074,0.954,0.992,1.071,0.964,0.961,0.942,1.026,1.043,0.963,0.946,1.013,1.075,1.126,1.103,0.908,0.962,1.097,0.96,0.956,1.11,0.953,1.052,1.075,1.104,0.838,0.991,1.027,0.971,1.056,1.069,1.03,0.942,0.966,0.897,0.902,0.869 +NM_000220,1.959,2.018,2.263,1.9340000000000002,1.9769999999999999,1.9009999999999998,1.863,2.013,1.859,1.832,2.157,2.237,1.845,2.442,2.0860000000000003,1.9609999999999999,1.9289999999999998,2.373,2.173,2.242,2.066,2.12,1.935,2.209,2.097,2.1109999999999998,2.0309999999999997,2.096,2.184,1.9809999999999999,1.889,2.231,1.711,2.2039999999999997,2.157,1.827,1.973,2.154,2.053,2.0309999999999997,2.253,1.903,2.08,1.9089999999999998,2.065,1.911,1.775,1.8860000000000001,1.726,1.858,1.714,2.0300000000000002,1.883,2.1849999999999996 +NM_000221,1.928,1.9969999999999999,1.8250000000000002,2.109,2.151,1.8679999999999999,2.1740000000000004,1.92,1.934,1.78,1.9060000000000001,1.899,1.948,2.051,1.809,3.445,2.2119999999999997,1.7469999999999999,1.972,2.2489999999999997,1.813,2.1710000000000003,2.13,1.912,2.08,2.001,1.9809999999999999,1.916,1.819,1.961,2.1740000000000004,1.971,2.7439999999999998,2.077,1.94,2.1559999999999997,2.431,1.801,2.066,1.947,1.764,2.261,2.115,2.09,1.996,1.948,2.1109999999999998,1.959,1.85,1.95,2.018,1.847,2.113,1.867 +NM_000222,0.823,1.516,0.975,1.064,0.921,1.076,1.432,0.86,0.92,0.848,1.05,0.811,0.793,0.79,1.065,0.941,0.933,1.055,0.974,0.956,0.92,0.828,1.048,0.85,1.52,0.837,1.122,0.944,0.787,2.082,0.919,1.142,0.967,3.106,0.853,0.87,1.054,0.948,1.404,0.835,1.151,2.025,0.988,0.845,0.987,1.452,0.862,0.961,1.041,0.79,1.057,0.871,1.113,1.149 +NM_000223,1.015,1.05,1.032,0.878,0.951,1.216,1.012,0.965,0.811,0.924,0.939,1.027,1.016,0.816,0.853,1.163,1.028,0.965,1.11,0.933,1.045,1.036,1.051,0.945,0.945,0.936,0.953,1.062,0.972,0.92,0.851,0.966,0.924,1.048,1.096,1.142,1.049,0.969,0.942,0.882,1.058,0.958,1.102,1.048,0.907,1.152,0.96,0.886,1.082,1.06,1.052,0.996,1.171,0.911 +NM_000227,1.131,3.491,1.6109999999999998,1.612,1.483,2.396,2.326,1.306,1.2369999999999999,1.1360000000000001,2.403,1.3699999999999999,1.362,1.576,1.545,2.127,1.264,1.8780000000000001,1.363,2.1029999999999998,1.312,1.306,2.7279999999999998,1.322,1.99,1.2389999999999999,1.266,1.378,2.63,2.177,1.2469999999999999,1.366,2.349,2.4829999999999997,1.198,3.7169999999999996,2.309,1.496,4.8759999999999994,2.1079999999999997,1.3980000000000001,2.393,2.419,2.19,1.265,2.8920000000000003,1.854,1.2189999999999999,1.9649999999999999,1.238,2.518,2.074,1.636,7.804 +NM_000228,0.361,1.035,1.069,0.664,0.52,0.992,0.689,0.135,0.309,0.638,0.91,0.294,0.203,0.296,0.519,0.736,0.622,0.939,0.485,1.354,0.314,0.313,0.766,0.427,0.665,0.389,0.863,0.365,0.68,1.241,0.329,1.947,1.396,1.408,0.0819,1.872,1.049,0.661,3.325,1.362,0.598,1.288,1.187,1.108,0.603,1.362,1.139,0.371,0.659,0.556,1.222,1.419,0.737,2.082 +NM_000229,1.014,0.888,0.984,1.06,1.05,0.956,1.193,1.023,0.924,1.154,0.938,1.147,1.024,0.992,1.143,1.015,0.98,0.998,0.882,1.01,0.968,1.014,0.993,1.018,1.137,1.074,0.883,1.001,0.994,1.044,0.844,1.287,0.992,1.013,0.9,0.961,1.031,1.066,0.98,1.143,0.967,0.984,1.171,0.938,1.21,0.93,1.042,1.062,1.085,1.131,1.005,0.992,1.245,0.951 +NM_000230,1.012,0.845,1.078,0.989,1.056,0.95,0.829,0.952,0.897,1.012,0.935,0.977,0.982,1.018,1.079,0.894,0.999,0.884,1.018,0.913,0.979,1.039,0.855,0.893,1.04,1.015,1.213,1.006,0.749,1.19,1.036,1.041,0.899,1.16,0.947,0.933,0.991,0.995,1.097,1.212,0.926,1.033,0.857,0.937,1.074,0.913,1.019,1.063,1.039,1.029,1.038,0.929,1.16,0.98 +NM_000231,1.114,1.183,1.016,1.016,0.89,1.067,1.08,1.049,1.027,0.859,1.092,1.05,0.998,0.961,0.923,1.128,0.861,1.026,1.072,1.282,1.014,0.966,0.963,0.962,0.994,1.149,1.076,1.213,0.915,1.052,0.838,1.065,1.031,1.007,0.946,0.909,1.003,1.087,1.07,1.148,0.92,0.956,1.004,0.989,0.969,0.886,0.945,1.087,1.136,0.993,0.965,1.002,0.886,0.977 +NM_000232,0.551,1.148,0.648,0.837,0.579,1.653,1.033,0.497,0.595,0.715,1.343,0.719,0.637,0.549,0.895,2.024,0.533,0.795,0.575,1.272,0.583,0.546,1.597,0.793,0.746,0.535,0.983,0.524,0.583,2.068,0.65,2.184,1.85,1.798,0.405,0.88,1.221,0.624,1.68,0.7,0.739,1.27,0.82,2.156,0.674,1.382,1.102,0.527,0.996,0.529,1.481,0.986,0.688,0.78 +NM_000233,1.01,0.876,1.007,0.844,0.999,1.088,0.992,1.206,0.812,1.048,0.855,0.929,0.93,1.11,1.059,1.052,0.994,1.052,0.958,1.047,0.97,0.938,1.046,1.116,0.895,0.879,0.935,0.945,1.137,0.96,0.927,0.988,1.041,1.075,1.084,0.927,1.0,1.116,0.865,0.905,1.032,0.967,1.064,0.953,1.009,0.825,1.07,1.002,1.066,1.008,1.003,1.051,1.039,0.951 +NM_000234,0.812,1.023,0.857,0.892,0.752,0.919,0.615,0.633,1.015,1.086,0.799,0.883,0.856,0.732,0.88,1.057,0.879,0.873,1.12,0.913,0.858,1.161,1.484,1.225,0.811,1.032,1.515,0.79,0.949,0.789,0.755,0.954,2.661,1.005,0.706,1.072,0.952,1.103,1.655,1.063,0.938,0.925,0.92,2.006,0.895,0.861,1.123,0.96,0.979,1.045,0.948,0.938,1.002,1.38 +NM_000235,0.48,1.468,0.929,0.665,0.608,1.464,0.698,0.47,0.83,0.787,1.347,0.583,0.528,0.545,1.015,1.759,0.564,0.663,1.204,0.984,0.606,0.447,1.721,0.508,0.525,0.556,1.339,0.604,0.411,1.895,0.73,2.179,2.258,1.592,0.252,0.615,1.731,0.577,1.472,0.483,0.792,1.117,0.532,1.318,0.71,1.063,1.116,0.45,0.572,0.633,1.202,0.991,1.096,2.451 +NM_000236,0.916,1.104,0.967,1.128,1.102,1.085,0.933,1.015,0.973,0.984,0.987,1.047,0.98,0.96,0.916,0.93,0.811,1.147,1.076,1.054,0.923,0.915,1.046,0.784,0.834,0.999,0.977,1.145,0.789,0.951,1.019,0.876,1.019,0.894,0.966,1.009,1.046,1.169,0.989,0.908,0.961,1.027,0.842,1.001,0.944,1.043,1.011,0.962,0.93,0.954,1.047,1.042,0.997,1.311 +NM_000237,0.969,1.034,1.003,1.156,0.95,0.888,1.158,0.912,1.066,1.063,0.925,0.942,0.971,1.084,0.942,1.041,0.963,0.984,0.92,0.94,1.009,0.832,1.075,0.927,0.916,0.893,0.977,1.01,1.192,1.116,0.891,1.417,0.882,1.166,0.966,0.984,1.077,1.02,1.004,0.971,1.022,1.048,1.067,1.067,1.035,0.993,1.214,0.885,0.889,0.845,1.041,1.211,0.959,0.978 +NM_000239,0.0931,3.526,0.283,2.318,0.131,3.854,1.772,0.0677,0.162,0.0887,1.988,0.0531,0.124,0.0624,1.075,1.873,0.105,1.637,0.0915,1.954,0.0869,0.0568,3.168,0.119,0.474,0.059,0.369,0.0975,0.163,2.491,0.0583,0.834,2.597,8.482,0.0516,0.6,4.094,0.0671,2.167,0.53,0.172,4.3,2.252,1.759,0.169,1.391,0.175,0.0552,1.079,0.178,1.921,0.684,0.593,0.388 +NM_000240,0.644,1.267,1.618,0.658,0.721,1.634,0.464,0.351,0.939,0.73,1.117,0.53,0.551,0.754,1.484,3.941,0.978,1.086,1.265,2.281,0.441,0.815,1.776,0.87,0.605,0.891,1.778,0.751,0.614,1.433,0.884,0.637,0.588,1.585,0.0812,0.325,2.486,0.805,1.034,0.198,0.981,1.915,2.319,0.285,0.593,1.924,1.299,0.687,1.241,0.774,1.248,0.45,0.598,0.591 +NM_000243,0.948,0.87,1.129,1.0,1.186,0.926,0.805,1.005,1.08,0.986,1.066,0.923,1.018,0.99,0.947,1.132,0.993,1.155,0.959,0.953,1.018,0.943,1.061,0.945,0.906,0.907,0.849,0.881,0.864,1.016,0.89,0.972,1.001,1.051,1.0,0.859,1.005,1.089,1.019,1.091,0.833,0.915,1.165,1.079,0.927,0.885,1.073,0.992,0.85,0.883,1.044,1.014,1.127,1.006 +NM_000245,0.923,1.18,1.024,0.99,1.07,1.06,1.001,0.975,1.054,0.939,1.099,1.133,1.002,0.867,1.015,1.25,0.887,0.936,1.019,0.909,0.999,0.905,0.967,0.924,1.075,0.921,0.862,0.872,0.827,1.032,1.017,0.975,0.926,0.959,1.007,1.169,0.988,0.9,1.112,0.945,1.03,1.02,1.164,0.924,0.919,0.99,0.924,1.048,1.134,0.95,1.077,0.994,1.025,0.963 +NM_000249,0.646,0.996,1.124,0.945,0.79,1.066,0.785,0.594,1.094,0.99,0.905,0.772,0.561,0.805,1.038,1.231,0.947,0.822,0.923,0.944,0.647,0.705,1.476,0.875,0.935,0.802,1.263,0.734,0.496,1.386,0.831,1.308,1.321,1.465,0.337,0.969,1.024,0.722,1.538,0.81,1.017,1.156,0.695,1.129,1.004,1.197,0.873,0.579,1.095,0.721,1.262,0.824,1.08,1.97 +NM_000250,0.963,0.896,1.223,0.892,1.324,0.995,0.785,0.902,1.089,1.291,0.9,1.113,0.958,1.166,0.985,1.099,0.988,1.147,1.258,1.094,1.015,1.106,0.955,1.131,0.72,1.017,1.104,1.16,0.656,1.063,1.077,1.031,1.033,1.138,1.102,0.955,0.818,1.303,0.983,0.717,1.147,1.066,0.815,1.038,1.233,0.764,1.488,1.122,0.843,1.273,0.97,1.042,0.924,1.206 +NM_000251,0.866,0.988,1.249,0.745,0.87,1.01,0.883,1.067,1.167,0.989,0.874,1.011,0.9,0.809,1.159,1.258,1.024,1.108,0.919,0.985,0.796,1.172,1.065,1.068,0.858,0.763,1.391,0.962,0.745,0.99,1.067,1.076,3.723,1.004,0.776,0.817,1.0,1.326,1.435,1.098,0.983,1.032,0.831,0.946,1.101,0.943,0.956,0.97,1.023,1.141,1.112,0.98,0.811,1.724 +NM_000252,0.782,0.989,1.089,1.059,0.859,1.093,0.726,0.68,1.115,0.982,1.123,0.755,0.703,0.677,1.357,1.556,0.817,0.91,0.934,1.349,0.817,0.715,1.218,0.742,0.809,0.814,1.038,0.87,0.719,0.916,1.045,1.249,1.185,1.006,0.96,1.012,1.253,0.805,1.349,0.875,0.943,1.049,0.859,0.962,0.939,1.333,1.051,0.748,1.252,0.995,1.283,0.936,1.136,1.108 +NM_000253,0.902,0.984,0.988,1.622,0.902,1.06,1.011,1.09,0.905,0.915,1.05,1.078,1.008,1.262,7.916,6.74,0.941,0.949,0.936,1.256,1.192,0.869,1.149,0.97,1.103,0.876,1.033,0.953,0.787,1.129,1.004,0.973,0.872,1.073,1.04,0.92,19.73,0.907,0.876,0.942,0.923,1.873,2.333,0.942,0.981,3.1,6.582,0.924,4.918,1.061,2.764,1.006,0.971,0.938 +NM_000255,0.829,1.025,1.077,0.931,0.989,1.355,0.689,0.564,1.193,0.936,1.48,0.695,0.646,0.893,1.303,1.683,0.854,0.871,1.218,1.297,0.605,0.717,1.318,0.945,0.893,0.824,1.048,0.802,0.419,1.348,1.195,1.153,1.679,1.635,0.643,0.614,1.586,0.83,1.126,0.46,0.971,1.365,0.994,0.922,0.948,1.884,0.811,0.664,1.059,0.686,1.137,0.66,1.039,1.155 +NM_000256,0.98,1.302,0.859,1.182,0.909,1.094,0.804,0.933,0.928,1.001,1.045,0.937,1.047,1.154,0.93,1.018,0.924,0.899,0.909,0.907,0.909,1.04,0.975,0.914,1.118,0.839,0.823,1.026,1.058,1.277,0.86,1.199,1.1,1.014,0.977,0.963,0.992,0.944,1.049,0.956,0.961,1.019,0.785,0.991,0.927,1.282,0.888,1.015,0.992,0.992,0.922,0.939,1.006,0.954 +NM_000257,0.984,0.931,0.999,1.13,1.044,0.924,1.191,0.917,1.073,0.987,1.005,1.149,1.138,1.001,0.943,1.114,0.977,1.052,0.967,1.112,1.06,0.902,1.046,1.075,1.03,0.904,1.061,0.996,1.321,1.086,1.022,0.915,1.046,0.948,0.969,1.24,1.052,0.874,0.918,1.041,0.955,0.98,0.938,0.887,1.022,0.9,1.082,0.938,0.905,0.916,0.978,1.126,1.073,1.046 +NM_000258,0.961,1.113,0.961,1.09,0.958,0.915,0.966,1.046,0.982,1.136,1.039,0.999,0.955,1.06,1.048,1.082,0.916,1.016,1.012,0.958,1.046,0.926,0.846,1.045,1.062,0.953,0.838,0.93,0.879,1.08,1.001,1.1,1.166,1.067,1.062,1.034,1.059,0.924,1.006,1.05,0.868,0.938,1.008,1.009,1.046,0.983,1.036,0.846,0.969,0.833,0.941,1.08,0.949,0.951 +NM_000259,0.829,0.971,1.712,0.895,1.122,0.849,0.9,0.911,0.776,1.382,0.754,1.108,0.87,0.831,0.804,1.099,1.232,0.982,1.258,0.817,0.781,0.887,1.201,1.476,0.863,0.921,1.941,0.916,0.59,1.018,1.059,1.626,1.745,1.101,0.787,0.88,0.887,1.143,1.055,1.267,1.004,1.067,0.763,0.923,1.273,0.856,1.422,0.939,0.807,1.278,0.96,1.261,1.336,2.085 +NM_000260,0.967,1.116,1.064,1.024,0.983,1.045,0.797,0.994,0.961,1.09,1.093,0.968,0.958,1.029,1.07,0.903,1.028,1.036,0.991,0.877,1.005,0.95,0.968,0.83,1.099,0.904,0.925,0.963,0.957,0.927,1.023,1.119,1.014,0.984,0.923,1.094,0.895,1.046,1.151,1.105,0.846,0.938,1.072,1.237,1.032,0.984,0.993,0.968,0.921,0.96,1.108,0.986,0.86,1.128 +NM_000261,0.967,1.084,0.978,1.168,1.342,1.079,0.919,1.0,1.012,1.088,1.058,1.233,1.102,1.088,1.032,0.996,1.119,0.965,1.0,0.989,1.156,1.049,0.983,0.893,1.097,0.978,0.959,0.91,1.042,1.018,0.973,0.969,0.95,1.224,1.092,0.951,1.0,0.982,1.021,0.945,0.969,1.274,0.859,1.089,0.923,0.944,0.979,1.081,1.068,0.988,0.912,1.023,0.97,0.993 +NM_000262,0.735,0.97,0.925,0.847,0.843,1.221,0.758,0.651,1.157,0.796,0.945,0.781,0.83,0.677,0.925,1.061,0.886,0.942,1.01,1.004,0.817,0.83,1.43,0.929,0.673,1.009,1.351,0.821,0.615,1.411,0.824,1.528,1.196,1.185,0.588,0.944,1.033,0.916,1.327,1.057,0.934,1.107,0.882,1.049,0.817,1.024,0.837,0.754,0.991,0.736,1.081,0.968,0.747,1.23 +NM_000263,0.725,1.12,0.656,0.92,0.611,1.487,0.728,0.475,0.644,0.581,1.164,0.678,0.64,0.577,0.802,1.721,0.65,1.274,0.803,1.113,0.443,0.848,1.372,0.772,1.385,0.829,0.827,0.598,1.017,1.695,0.66,2.365,1.033,1.921,0.395,0.689,1.143,0.7,1.93,0.991,0.656,1.453,0.691,1.93,0.718,1.006,1.042,0.763,0.899,0.74,1.428,0.744,0.619,0.875 +NM_000264,0.917,1.056,1.028,0.823,0.853,1.165,0.997,0.867,0.891,0.906,1.019,0.915,0.898,0.775,0.833,0.908,0.892,0.891,0.942,0.787,0.933,0.972,1.226,0.958,1.225,0.935,0.884,0.935,0.928,1.239,0.935,1.421,0.971,1.49,0.712,0.988,1.122,1.09,1.066,1.239,0.916,1.435,0.796,1.095,1.023,1.018,1.026,0.895,0.854,0.839,1.056,1.068,0.837,0.823 +NM_000265,0.844,1.071,1.617,1.837,0.873,0.704,1.516,0.636,1.022,0.934,0.563,0.714,0.78,0.527,0.651,0.571,1.126,0.843,0.708,0.711,0.66,0.528,1.137,1.157,0.757,0.754,2.383,0.874,0.342,1.891,0.635,1.969,0.638,1.065,0.468,0.588,0.928,0.749,2.05,5.99,1.667,1.597,0.843,0.919,1.191,0.676,1.107,0.673,0.503,0.956,0.876,2.085,1.338,2.547 +NM_000266,0.895,0.948,0.928,0.93,1.0,1.024,1.047,0.981,0.908,0.884,1.083,0.91,0.969,0.933,0.899,0.917,0.941,0.798,0.856,0.825,1.078,0.892,1.009,0.858,1.154,1.123,0.896,0.874,0.873,0.961,1.087,0.947,1.079,1.103,1.131,1.094,0.94,0.921,0.93,1.301,0.807,1.243,1.136,1.073,0.933,0.942,1.015,0.896,0.889,1.066,0.882,1.3,1.073,1.032 +NM_000267,1.023,0.913,0.984,0.943,0.975,1.036,1.11,0.919,0.886,0.905,0.972,0.945,0.938,0.9,0.909,1.054,1.078,0.937,0.889,0.951,1.113,0.932,0.96,0.976,1.05,0.999,1.08,0.938,1.083,1.052,1.106,1.074,0.971,0.97,0.913,0.941,1.487,0.966,1.01,1.222,0.995,0.994,0.953,1.013,1.064,0.884,0.995,0.933,0.947,1.051,1.007,0.986,0.955,1.123 +NM_000269,0.739,0.854,1.05,0.698,0.921,0.912,0.56,0.5,1.13,1.258,1.036,1.31,0.671,0.616,0.802,1.7,0.824,1.007,1.489,0.52,0.761,0.978,1.393,1.503,0.43,0.844,1.328,0.854,0.333,0.895,0.76,1.178,2.864,1.078,0.089,1.259,0.844,0.965,1.588,0.655,1.198,0.886,0.5,2.604,1.143,0.893,1.224,0.691,1.346,0.869,1.047,1.592,1.26,1.51 +NM_000270,0.615,0.661,1.033,0.91,0.872,1.239,0.66,0.511,1.502,1.177,1.368,0.964,0.792,0.627,1.097,2.319,1.275,0.865,1.145,0.816,0.61,0.605,1.315,1.115,0.488,0.921,1.059,0.851,0.37,1.092,1.072,0.665,0.976,1.075,0.399,1.04,1.685,0.767,1.154,0.957,1.367,1.058,1.314,0.789,1.366,1.313,1.141,0.598,1.6,1.355,1.449,0.684,1.427,0.956 +NM_000271,0.696,1.469,1.185,0.622,1.02,0.762,0.616,0.632,1.44,1.079,0.716,0.621,0.549,1.101,0.899,1.012,1.18,0.878,1.417,0.795,0.754,1.033,1.15,0.952,0.561,0.653,1.823,0.849,0.609,1.306,1.623,1.274,1.886,0.911,1.107,0.652,0.844,1.029,1.217,1.925,1.168,0.786,1.062,1.363,1.021,0.92,1.271,0.883,0.822,1.058,1.035,1.349,1.066,5.553 +NM_000273,1.196,0.873,1.055,0.874,1.051,0.88,0.946,1.009,1.351,0.983,0.831,0.821,1.065,1.079,0.992,0.939,1.115,1.006,1.18,0.994,1.097,1.115,0.914,1.173,0.933,1.162,1.465,0.981,1.042,0.851,0.891,2.385,1.333,0.94,0.958,0.837,0.853,0.972,0.974,1.346,1.367,0.884,0.902,0.885,1.269,0.879,1.142,1.123,0.922,1.197,0.967,0.962,1.386,0.951 +NM_000274,0.786,0.867,1.531,0.815,1.057,1.362,0.654,0.433,1.586,1.43,1.431,0.93,0.734,0.888,1.503,1.643,0.71,1.189,1.935,1.313,0.591,0.779,1.357,1.239,0.553,0.896,1.515,1.199,0.37,1.138,1.191,1.069,1.077,1.196,0.131,0.713,2.653,0.992,0.761,0.327,1.177,1.201,1.684,0.562,1.096,1.729,0.999,0.586,0.621,0.779,1.453,0.499,1.319,1.004 +NM_000275,1.172,0.859,1.144,1.065,1.09,0.899,0.804,1.084,1.248,1.076,0.874,1.083,1.033,1.332,1.254,0.966,0.961,1.096,0.956,0.792,1.005,1.193,0.954,1.044,1.02,1.123,1.075,1.182,1.164,0.894,1.353,0.966,1.047,1.0,0.869,1.05,0.953,1.407,0.835,0.842,1.402,1.039,0.946,1.033,1.142,0.96,0.843,1.273,0.958,1.061,1.018,1.038,0.916,1.116 +NM_000277,0.929,1.06,1.071,1.06,0.917,1.063,0.932,1.089,0.984,1.002,0.989,1.001,0.916,1.064,0.887,0.992,0.919,0.999,0.795,1.076,1.01,1.108,0.977,1.133,0.988,0.987,0.971,0.992,1.064,0.957,0.934,0.91,0.969,1.108,0.98,1.062,1.005,0.899,0.954,1.042,0.925,1.03,1.149,1.157,0.961,1.123,0.967,1.049,1.011,1.158,1.181,0.995,1.028,0.934 +NM_000280,1.055,0.924,0.858,0.991,0.716,1.313,1.104,0.908,0.853,0.798,1.165,0.854,0.924,1.136,1.341,1.161,0.901,0.957,1.029,1.187,1.109,0.975,1.292,0.894,0.873,0.919,0.892,0.841,1.11,0.778,1.082,0.98,0.906,1.251,0.903,2.098,1.294,0.897,0.791,0.904,0.805,1.039,1.022,1.055,0.996,1.123,0.894,0.884,1.049,1.051,1.284,0.895,1.042,1.735 +NM_000281,0.776,1.119,0.815,1.099,0.556,1.203,0.851,0.614,0.772,0.607,1.634,0.797,0.932,0.584,0.73,1.466,0.779,0.613,1.044,1.103,0.653,0.563,1.499,0.742,1.018,1.025,0.895,0.572,0.606,1.167,0.816,0.893,4.149,1.729,0.359,1.254,1.02,0.637,1.79,0.669,0.864,1.206,0.779,1.839,0.707,1.082,0.821,0.664,1.167,0.619,1.038,0.825,0.802,2.438 +NM_000282,0.709,0.994,1.264,0.681,1.0,1.39,0.726,0.674,1.268,0.954,1.146,0.843,0.673,0.935,1.432,3.089,1.108,0.75,1.369,1.228,0.635,0.858,1.032,1.01,0.785,0.687,1.365,0.773,0.486,1.649,0.928,1.237,1.0,1.328,0.465,0.65,1.145,0.985,0.777,0.861,1.072,1.226,0.823,0.904,1.11,1.085,1.008,0.698,1.233,0.813,1.454,0.553,0.786,1.231 +NM_000283,0.885,1.395,1.061,1.139,1.07,0.898,0.874,1.038,1.074,1.04,1.044,1.109,1.04,1.135,0.894,0.974,1.07,0.956,1.148,0.949,0.904,1.159,0.891,0.959,0.947,0.926,1.137,1.143,0.933,0.947,0.995,1.168,0.85,0.938,0.895,0.886,0.956,1.02,0.995,1.536,0.981,1.054,0.933,0.903,1.08,0.873,0.999,0.903,0.931,1.039,0.889,1.026,1.118,0.938 +NM_000284,0.634,0.852,0.973,0.861,0.76,1.08,0.559,0.309,1.013,0.79,1.218,0.647,0.561,0.537,0.932,1.872,0.718,0.93,1.239,0.818,0.361,0.622,1.161,1.046,0.961,0.699,1.528,0.658,0.311,1.047,0.786,1.121,2.224,1.189,0.118,0.799,1.401,0.691,1.392,0.663,0.934,0.986,1.033,0.734,0.987,1.115,1.089,0.687,1.612,0.731,1.141,1.308,0.886,1.698 +NM_000285,1.213,0.763,1.133,0.678,0.87,1.058,0.524,0.56,1.208,1.389,1.162,0.849,0.827,0.647,1.329,5.152,0.795,1.001,1.166,1.592,0.511,0.926,1.477,0.924,0.382,1.223,1.023,0.743,0.281,1.472,0.922,1.049,1.682,0.83,0.159,0.911,1.895,1.184,1.735,0.602,0.824,2.964,1.999,1.277,0.779,1.135,1.585,1.205,0.793,0.937,1.054,0.626,0.998,1.431 +NM_000286,1.013,1.208,1.053,1.022,1.053,1.064,0.841,0.93,1.036,0.853,0.993,0.928,0.933,0.864,0.912,1.101,1.001,1.005,1.082,0.926,1.051,0.987,0.905,1.051,0.95,0.947,0.907,1.16,0.704,1.045,0.991,1.172,1.127,1.116,0.918,0.905,1.009,0.991,1.01,0.883,0.979,1.176,0.866,1.012,1.066,1.05,0.978,1.061,0.955,1.001,1.066,0.843,0.936,1.005 +NM_000287,0.845,1.391,1.11,1.186,0.532,1.003,0.83,0.653,1.201,0.649,1.008,1.085,1.065,0.746,1.077,1.353,0.619,1.509,0.922,0.865,0.925,1.612,1.361,1.002,0.771,1.391,1.03,1.05,0.672,0.985,0.936,1.33,0.558,1.153,0.616,1.047,1.274,1.232,0.721,0.717,0.934,1.111,0.722,1.488,1.088,0.819,1.112,0.734,0.941,1.003,1.316,0.78,0.72,0.782 +NM_000288,0.628,1.466,0.908,0.948,0.856,1.541,0.811,0.702,1.071,0.811,1.431,0.793,0.837,0.643,0.999,1.723,0.773,1.001,1.138,1.194,0.677,0.848,1.373,0.87,1.227,0.87,0.884,0.956,0.848,1.3,0.986,0.95,0.975,2.063,0.571,0.83,1.265,0.987,1.22,0.801,0.931,1.385,0.81,1.215,0.996,1.304,0.941,0.764,1.046,0.776,1.269,0.805,0.856,1.084 +NM_000289,1.018,1.143,1.124,0.714,0.886,0.82,0.699,0.692,1.161,1.088,0.918,0.94,0.774,0.844,0.755,1.177,0.992,1.036,1.154,0.755,0.946,0.917,1.201,1.023,0.866,1.082,1.219,0.973,0.501,0.919,1.117,1.748,1.618,0.999,0.615,1.027,0.958,1.188,1.405,1.159,1.045,1.031,0.711,2.01,1.001,0.842,1.162,0.792,0.819,0.943,0.825,1.079,1.373,1.721 +NM_000290,0.981,0.856,1.268,0.887,0.921,0.905,0.843,1.145,0.914,1.091,1.021,0.999,1.094,0.893,0.821,0.946,1.164,0.923,1.221,0.859,1.05,0.943,0.854,1.039,0.935,0.959,1.487,0.976,0.736,0.886,1.065,0.969,1.105,1.262,1.748,0.949,1.112,0.956,0.925,1.056,1.105,0.933,0.73,0.883,0.98,0.913,1.155,1.334,0.955,1.068,0.928,0.947,1.123,0.797 +NM_000292,0.823,1.215,1.001,0.774,0.906,0.941,0.748,0.826,1.002,1.02,0.929,0.89,0.841,0.892,0.958,1.062,0.866,1.022,0.917,1.047,0.785,0.946,1.032,1.059,0.953,0.907,1.366,0.82,0.494,1.123,0.96,1.345,1.202,1.179,0.616,0.969,1.247,1.013,0.899,1.109,0.879,1.165,0.873,0.804,0.909,0.926,0.913,0.773,0.918,0.819,0.999,1.132,0.855,1.177 +NM_000294,0.853,1.091,0.967,0.967,0.885,1.252,0.917,0.844,0.904,1.002,0.975,0.823,0.876,0.675,0.947,0.993,0.934,0.97,1.004,0.988,0.779,1.0,1.109,1.04,1.078,1.062,1.075,0.681,1.012,1.178,0.812,1.239,1.235,1.308,0.763,0.867,0.998,1.058,1.372,1.176,0.983,0.933,0.992,1.289,0.978,0.887,0.877,1.004,0.841,0.997,1.047,0.809,1.076,1.412 +NM_000295,0.245,0.704,0.309,1.247,0.263,1.722,0.689,0.226,0.263,0.222,2.505,0.236,0.259,0.22,1.312,1.156,0.23,0.556,0.239,2.32,0.222,0.213,1.156,0.236,0.547,0.204,0.377,0.244,0.286,0.705,0.238,2.308,1.427,0.873,0.212,0.861,3.04,0.216,3.093,8.528,0.25,3.219,2.763,34.93,0.388,2.129,2.129,0.235,7.101,0.297,3.845,1.783,0.284,0.623 +NM_000296,0.91,1.028,0.974,1.17,0.952,0.963,1.038,1.194,0.931,0.809,1.029,0.851,0.835,0.958,0.949,0.982,0.985,0.877,0.92,0.988,1.157,1.088,0.979,1.033,1.0,0.912,1.025,0.853,1.022,1.096,1.031,1.569,1.373,1.071,0.812,0.933,0.902,1.216,1.057,1.145,0.87,1.14,1.041,0.857,0.911,1.0,0.835,1.023,0.976,0.861,1.086,0.981,0.885,0.949 +NM_000297,0.841,1.159,1.106,0.77,0.904,1.036,0.766,0.743,1.249,0.901,0.941,0.897,1.047,0.908,0.945,1.039,0.783,0.957,1.039,1.052,0.836,1.066,1.197,1.162,0.877,0.883,1.482,0.958,0.701,1.321,1.0,3.056,1.807,1.352,0.695,0.86,0.892,0.841,1.339,1.157,1.137,1.538,0.705,1.049,0.836,0.934,0.851,0.776,0.79,0.842,1.018,0.969,0.863,1.106 +NM_000298,0.829,1.014,0.928,1.148,1.004,0.922,1.022,1.174,0.882,1.102,1.102,0.99,0.983,1.1,1.119,0.987,1.091,1.147,1.045,1.115,0.958,1.041,1.079,1.058,0.949,1.074,0.894,0.972,0.722,0.985,1.046,1.163,1.098,0.999,1.187,0.866,1.035,0.907,1.063,0.948,0.858,1.035,0.901,0.934,1.061,1.24,1.164,0.881,0.915,1.112,1.006,0.969,1.015,0.994 +NM_000299,1.702,0.542,3.625,0.886,3.26,0.546,0.522,1.196,2.659,4.547,0.709,1.968,0.964,1.778,1.364,1.262,2.087,2.064,4.032,0.607,4.25,2.944,0.615,2.869,0.575,2.506,2.614,2.104,0.594,0.574,2.057,0.577,1.52,0.528,3.079,0.632,0.625,3.501,0.617,0.572,2.777,0.526,0.626,0.466,4.248,0.55,2.6,3.425,0.615,3.455,0.892,1.215,4.382,0.738 +NM_000300,0.965,1.394,0.854,1.148,0.851,1.7,0.763,0.926,1.101,0.919,1.119,0.914,1.023,0.899,1.982,4.555,1.021,0.946,0.997,1.924,0.925,0.891,1.544,0.939,0.869,0.943,0.873,0.897,0.878,1.048,1.062,1.1,14.82,0.877,0.819,3.858,1.755,0.903,1.323,1.966,0.787,1.048,10.38,1.628,0.966,1.314,2.59,1.003,26.86,0.887,3.48,0.926,1.078,1.181 +NM_000301,1.018,1.068,1.005,1.24,1.157,0.996,1.221,1.092,0.883,0.984,0.996,0.947,0.924,1.027,0.768,0.991,0.839,1.048,1.03,1.023,1.054,0.816,0.983,1.151,1.017,0.967,0.873,1.008,1.236,0.988,1.127,1.042,1.12,1.126,1.181,0.96,0.921,0.987,0.918,0.95,1.173,1.007,0.893,0.988,1.094,1.06,0.996,1.017,1.101,0.93,1.016,0.998,0.851,0.992 +NM_000302,0.422,2.258,0.89,0.782,0.749,0.842,1.016,0.257,0.612,0.816,1.219,0.494,0.344,0.341,0.604,1.288,0.49,0.932,0.683,1.471,0.377,0.511,1.813,0.561,0.888,0.524,0.96,0.6,0.673,2.121,0.466,3.014,0.984,1.246,0.167,0.872,1.333,0.612,1.677,1.984,0.894,1.359,0.731,1.382,0.7,1.726,1.593,0.497,1.123,0.668,1.593,1.766,0.663,1.525 +NM_000303,0.717,0.64,1.101,1.0,0.764,1.019,0.599,0.529,0.978,0.95,1.026,0.737,0.656,0.774,1.178,1.918,0.986,0.769,1.414,0.803,0.692,0.771,1.415,1.09,0.658,0.853,1.071,0.67,0.466,1.052,0.857,0.961,2.233,1.0,0.271,1.283,1.075,0.544,1.45,0.872,0.93,0.983,0.974,1.229,1.153,1.254,1.472,0.684,0.834,0.959,1.118,1.285,1.359,1.413 +NM_000304,0.903,1.001,0.984,1.045,1.192,0.836,1.199,1.019,0.842,1.045,0.901,1.138,1.028,0.866,1.336,0.784,0.95,1.058,1.017,1.026,1.07,0.782,1.177,1.071,1.068,1.036,0.981,0.875,0.936,0.888,1.057,1.186,0.919,0.933,0.99,1.267,0.977,0.88,1.101,1.0,1.05,1.008,0.917,1.073,0.929,0.998,1.034,0.969,1.069,1.089,0.954,0.965,0.893,1.067 +NM_000305,0.423,0.881,0.925,0.542,0.531,1.463,0.521,0.331,0.669,0.522,2.141,0.543,0.313,0.42,1.354,3.395,0.785,0.596,1.163,1.307,0.401,0.528,2.708,0.854,0.277,0.414,0.98,0.484,0.272,1.321,0.603,3.431,5.397,0.976,0.153,1.475,1.533,0.526,1.255,1.072,0.774,1.495,0.945,2.673,0.893,2.716,1.686,0.36,1.884,0.537,1.424,2.381,0.952,1.915 +NM_000306,1.149,0.807,1.003,0.969,1.101,0.999,0.872,0.99,1.155,1.005,1.029,1.016,0.968,1.125,0.985,0.885,1.011,0.992,1.082,1.071,1.074,0.997,0.863,1.045,1.108,0.949,1.226,1.017,0.973,1.058,1.004,1.069,0.997,0.923,0.966,0.986,1.086,0.914,1.012,0.993,0.931,0.92,1.24,1.137,1.094,1.091,0.982,0.941,1.016,1.073,1.202,0.979,0.971,0.895 +NM_000307,0.988,1.074,1.062,1.062,0.986,1.067,1.023,0.946,0.956,0.887,1.031,0.963,0.882,0.966,1.025,1.037,1.044,1.143,0.817,1.065,1.138,1.086,0.995,1.031,0.918,1.001,1.011,1.069,1.107,1.039,1.043,1.134,0.856,1.037,0.996,0.96,1.097,1.024,1.087,1.115,0.882,0.97,1.0,0.994,1.029,0.916,1.013,1.015,1.124,1.085,0.981,0.926,0.802,0.871 +NM_000308,0.501,1.201,0.874,0.457,1.076,1.284,0.505,0.424,0.842,0.896,0.968,0.593,0.346,0.424,0.902,2.268,0.641,0.995,0.911,1.62,0.41,0.649,2.18,0.667,0.279,0.482,0.981,0.698,0.341,2.265,0.682,2.069,1.288,1.333,0.684,1.014,1.212,0.862,1.365,1.575,0.984,1.472,1.069,1.898,0.895,1.455,1.646,0.604,1.164,0.697,1.306,1.524,0.844,2.885 +NM_000309,0.876,1.052,1.487,0.735,1.184,0.931,1.019,1.057,1.153,1.204,0.961,0.933,0.879,1.097,0.991,1.072,1.082,1.0,1.12,0.941,0.937,1.057,0.955,1.195,0.859,0.944,1.293,1.014,0.849,1.015,1.212,1.585,1.792,1.042,0.712,0.986,0.998,1.291,0.924,1.062,1.243,1.043,1.093,0.958,0.946,0.856,0.991,1.079,0.77,0.769,0.948,0.757,1.2,1.385 +NM_000310,0.465,1.705,1.448,0.508,1.03,1.098,0.83,0.698,1.036,0.907,0.673,1.122,0.732,0.46,0.83,1.285,0.839,0.754,0.796,1.011,0.436,0.967,1.436,1.393,0.497,0.466,1.699,0.808,0.402,1.493,0.877,3.695,4.55,1.757,0.238,0.644,0.816,1.011,1.827,1.752,1.188,1.318,0.414,1.741,0.957,0.76,1.059,0.598,0.702,0.672,0.87,1.195,0.645,3.673 +NM_000313,0.893,0.745,1.958,0.495,1.061,0.671,0.434,0.655,1.269,1.062,1.008,0.706,0.751,1.09,1.267,0.87,1.119,0.764,1.736,0.646,0.62,0.924,2.232,0.949,0.373,0.888,1.603,1.16,0.239,0.956,1.089,2.128,0.951,0.997,0.298,0.786,0.844,1.437,0.671,1.09,1.496,1.209,0.662,1.91,1.075,0.812,1.079,0.934,1.383,1.13,0.804,1.429,1.132,0.481 +NM_000314,0.649,1.073,1.328,0.642,0.914,1.187,0.702,0.791,1.317,0.874,1.304,0.919,0.715,0.988,0.96,1.406,0.902,0.842,1.329,1.206,0.617,0.807,1.417,1.006,0.576,0.76,1.172,0.957,0.657,1.326,0.834,1.17,0.752,1.366,0.685,0.897,1.086,1.08,1.125,0.745,1.019,1.195,0.724,1.132,0.918,1.059,0.889,0.838,0.948,0.965,1.06,0.627,0.97,1.268 +NM_000315,1.088,1.042,0.941,1.03,0.842,0.941,0.997,0.923,1.027,0.911,0.97,1.051,1.123,0.914,0.985,1.085,0.941,0.966,1.011,1.185,1.008,1.052,1.076,0.985,1.015,0.928,1.024,1.077,1.133,1.051,0.993,0.936,1.015,0.987,1.115,1.006,0.998,0.932,0.918,0.99,1.101,1.143,0.756,1.01,1.092,0.849,1.07,1.008,1.003,0.926,0.933,0.908,1.111,1.05 +NM_000316,0.953,1.039,0.909,0.96,1.09,1.052,1.009,0.856,0.844,0.993,1.162,0.953,1.006,0.875,1.039,1.003,0.903,0.959,0.926,0.905,0.927,1.017,1.105,0.878,0.997,1.18,0.869,1.009,0.819,1.448,0.97,1.661,0.892,1.152,1.08,0.908,0.955,0.919,1.091,1.011,1.011,1.234,0.962,1.037,0.992,1.069,0.946,1.014,0.911,0.923,1.004,0.838,0.943,0.991 +NM_000317,0.56,1.093,0.975,0.794,0.875,1.307,0.669,0.953,1.4,1.025,1.061,1.39,1.033,0.573,0.974,1.648,0.914,1.006,1.421,0.967,0.465,0.912,0.853,1.422,0.439,0.723,1.334,0.939,0.48,1.193,1.051,1.188,1.136,1.442,0.357,1.035,1.127,1.025,1.329,0.564,1.219,0.788,0.631,0.605,1.08,1.006,1.096,1.007,0.961,0.65,0.994,0.863,0.857,1.059 +NM_000318,0.6,1.356,1.231,0.744,0.799,1.632,0.503,0.712,1.017,0.589,2.143,0.876,0.96,0.603,0.953,1.777,0.681,1.122,1.159,1.345,0.393,0.739,1.086,0.843,0.794,0.629,1.086,0.811,0.588,1.357,0.679,1.177,1.209,1.647,0.285,1.281,1.403,0.678,1.252,0.939,0.979,0.996,0.709,1.518,0.738,1.742,0.922,0.754,1.351,0.606,0.994,0.705,0.7,1.433 +NM_000319,0.632,1.181,1.258,0.634,0.981,1.171,0.641,0.488,1.291,0.94,0.866,0.733,0.563,0.8,0.919,1.26,0.883,0.882,0.835,1.294,0.533,0.817,1.348,1.001,0.489,0.838,1.34,0.81,0.48,1.423,0.999,1.494,3.084,1.497,0.242,1.087,1.052,1.009,1.185,1.075,1.144,1.419,0.579,1.045,1.068,0.843,0.994,0.664,1.041,0.738,1.007,0.951,0.632,1.323 +NM_000321,0.809,1.005,1.036,0.865,0.885,1.043,0.784,0.813,1.047,1.056,1.048,0.83,0.87,0.864,1.032,1.355,0.824,0.757,0.968,0.988,0.846,0.651,1.07,1.018,0.784,0.857,1.009,0.962,0.74,0.979,1.016,1.084,1.119,1.1,0.789,0.99,1.058,0.82,1.073,0.783,1.024,0.993,1.058,1.205,0.944,1.093,1.139,0.717,1.093,0.94,1.118,0.96,1.05,1.361 +NM_000322,1.133,1.193,0.973,0.99,0.973,0.967,0.961,1.187,0.998,1.001,1.026,0.94,1.008,1.039,1.014,1.117,0.959,0.985,0.994,0.905,1.0,1.044,0.991,0.948,0.992,1.05,1.091,1.055,0.914,1.079,1.019,1.234,0.98,0.9,0.912,0.984,1.091,1.086,0.912,1.051,0.841,0.878,0.869,1.01,1.031,1.071,0.952,0.953,1.01,0.872,0.922,1.109,0.911,0.891 +NM_000324,1.013,0.976,0.982,1.07,1.052,0.968,1.041,0.905,1.175,0.988,0.999,1.082,1.054,0.96,1.099,1.024,0.966,0.938,0.924,0.981,0.879,1.083,0.997,1.026,1.005,1.032,1.023,1.109,0.918,0.917,1.071,1.119,0.934,0.935,0.915,0.927,1.125,0.991,0.95,1.006,1.046,0.915,1.066,0.858,1.072,0.926,0.898,1.002,0.969,0.926,1.022,0.951,1.038,0.995 +NM_000325,0.952,1.056,1.159,1.029,1.156,1.002,1.111,0.911,1.052,1.027,1.103,0.97,1.067,1.15,1.04,1.196,1.014,1.093,0.876,1.128,0.96,0.995,1.014,0.959,1.009,0.979,0.886,1.06,1.262,0.981,1.072,0.98,1.069,0.943,1.048,0.869,1.003,0.906,0.968,0.975,0.98,0.873,0.839,0.998,0.999,0.887,1.158,1.021,0.967,0.953,0.867,0.889,0.94,0.934 +NM_000326,0.987,1.015,1.0,1.016,0.993,1.053,0.855,0.868,0.993,1.018,0.953,0.95,0.9,0.973,0.97,1.069,0.996,1.057,0.91,1.037,1.08,0.891,1.041,0.932,0.991,1.007,1.084,1.004,1.098,1.053,0.923,1.014,1.195,1.064,0.943,1.064,1.044,0.925,0.937,0.894,1.058,1.004,1.231,1.03,0.878,1.03,1.0,0.986,0.971,1.082,1.056,0.923,0.972,1.14 +NM_000327,1.139,1.032,1.06,0.908,0.879,0.905,0.86,1.024,0.958,1.037,0.942,1.017,1.072,0.924,1.14,0.905,1.075,0.964,1.278,0.827,0.959,1.058,0.964,1.03,0.848,1.052,1.034,1.039,0.829,0.906,1.161,1.041,0.961,1.181,1.149,1.081,0.924,1.061,1.102,0.997,1.015,0.933,0.695,0.989,1.003,0.809,1.036,1.181,0.864,1.048,0.903,0.816,1.017,0.988 +NM_000328,0.89,0.906,1.004,0.926,0.996,1.1,0.789,0.94,0.957,0.877,0.928,0.881,0.953,0.783,1.043,1.229,0.815,0.95,0.897,1.204,0.933,0.93,1.166,1.12,0.872,0.907,1.075,0.828,0.785,1.017,0.812,1.044,1.788,1.041,0.739,1.041,0.992,1.037,1.285,1.053,1.039,0.972,0.781,0.848,0.994,1.136,1.023,0.86,1.161,0.826,1.101,1.029,0.989,1.201 +NM_000329,0.795,1.0,0.908,0.955,0.948,1.067,1.156,1.092,0.953,0.963,1.05,1.013,0.869,0.921,1.082,0.934,0.795,0.896,1.05,1.009,0.914,1.404,1.107,1.039,0.942,1.05,0.968,1.093,1.4,1.028,0.931,1.064,1.085,1.014,1.002,1.136,1.02,1.109,1.135,1.003,0.935,0.937,0.839,0.853,1.079,1.167,1.113,0.949,0.942,1.078,0.968,1.001,0.967,0.819 +NM_000331,1.07,1.11,2.192,1.072,1.043,0.83,1.604,0.632,0.663,0.682,0.663,1.006,0.728,0.781,0.971,1.005,1.602,0.738,1.065,1.711,0.702,0.637,0.662,1.084,0.624,0.697,4.377,0.639,0.674,1.034,0.789,8.999,5.927,0.657,0.683,6.939,0.691,0.769,9.025,1.686,0.867,10.41,0.607,0.807,0.723,0.998,1.861,0.595,0.684,1.958,0.757,7.058,6.227,19.76 +NM_000332,0.833,1.085,1.341,0.784,0.955,1.08,0.893,0.703,1.013,1.062,0.957,0.814,0.807,0.887,1.019,1.063,0.782,0.901,0.984,1.341,0.764,0.909,0.928,0.724,0.777,0.876,1.086,1.073,0.588,1.07,1.149,2.094,1.499,1.224,0.567,0.622,1.022,1.151,1.054,0.892,1.049,1.057,0.643,0.811,0.795,0.923,0.89,0.708,0.665,0.946,1.135,0.749,0.838,1.009 +NM_000333,0.934,0.92,0.894,0.898,1.192,1.003,0.974,1.03,1.01,1.086,0.902,1.099,0.858,1.125,1.352,1.045,1.054,0.957,0.903,1.108,1.082,1.009,1.354,0.917,1.104,0.971,1.049,0.942,1.266,0.909,0.904,1.088,1.097,1.031,1.025,1.02,1.069,1.087,0.98,1.107,0.976,0.962,1.128,0.995,1.224,0.907,1.004,0.853,0.786,0.957,1.006,0.92,1.073,1.021 +NM_000334,1.143,0.971,0.905,0.978,1.134,1.028,0.799,0.997,1.136,0.958,1.101,1.041,0.973,1.004,0.895,1.016,1.049,0.902,1.019,1.041,0.939,0.928,0.963,0.963,0.91,1.018,0.999,1.043,0.876,0.978,1.029,1.002,0.869,1.014,1.056,0.903,1.026,1.02,1.114,0.912,0.925,0.98,1.059,0.922,1.001,1.079,1.096,0.953,1.032,0.979,1.015,0.872,1.153,1.15 +NM_000335,0.972,1.181,0.939,0.978,0.823,0.927,0.793,1.025,1.009,0.877,0.97,1.156,0.998,0.775,1.196,0.967,1.057,0.909,0.902,0.994,1.132,1.054,0.967,0.965,0.923,1.11,1.051,1.026,1.225,0.947,1.005,0.926,1.058,0.947,1.171,1.053,1.042,1.07,0.952,1.037,0.949,1.01,0.916,0.94,1.079,0.885,0.978,1.086,0.909,1.035,0.946,1.018,0.955,0.855 +NM_000336,2.102,0.659,1.763,0.931,2.387,1.34,0.677,2.946,2.414,1.242,0.308,1.691,1.525,1.547,1.367,0.649,1.633,1.517,3.057,0.441,1.706,3.51,0.326,1.631,1.162,2.911,1.076,1.856,1.602,0.762,1.665,0.337,0.73,1.091,6.525,0.334,1.01,3.785,0.391,0.351,1.589,0.794,0.399,0.354,1.333,0.343,0.971,4.889,0.398,2.535,0.551,0.427,1.102,0.394 +NM_000337,1.02,0.894,0.993,1.104,0.997,1.059,0.843,0.87,0.915,0.993,0.97,1.059,1.001,1.015,1.307,1.003,1.053,0.962,1.073,0.858,0.994,0.887,1.123,0.883,1.267,0.999,0.856,0.968,1.189,1.03,1.01,1.621,1.105,1.08,1.123,0.869,1.116,0.983,1.148,1.019,1.18,0.982,0.939,0.981,1.102,1.238,1.019,1.008,0.861,0.954,0.967,0.964,0.891,0.96 +NM_000338,1.009,1.025,0.996,0.984,1.066,1.0,0.978,0.91,0.885,1.157,0.964,0.909,0.985,1.029,0.948,1.152,1.075,0.882,0.838,1.001,0.991,1.056,1.051,0.954,0.967,0.876,1.138,1.276,1.014,0.98,1.078,0.898,1.029,1.148,1.069,1.185,1.135,0.918,0.958,1.026,0.818,0.949,0.952,1.138,0.972,0.82,0.934,1.101,0.961,0.946,1.013,1.129,1.103,0.983 +NM_000339,1.022,0.974,1.048,1.006,1.071,1.006,0.882,1.014,1.082,0.827,1.021,0.951,1.084,1.165,0.919,1.137,0.896,0.906,1.189,1.062,1.01,0.989,1.132,0.999,0.992,0.992,0.949,1.073,0.915,1.013,0.899,0.972,1.025,0.918,0.97,0.973,0.939,0.892,0.959,0.996,1.135,1.039,1.039,1.068,1.06,0.825,0.975,1.062,1.132,1.039,1.02,1.179,1.082,0.988 +NM_000340,1.201,0.917,0.996,0.879,0.89,1.007,0.881,1.07,0.972,0.979,1.049,0.932,0.883,0.999,0.937,1.199,0.97,0.872,1.108,1.062,1.164,1.062,0.981,1.069,0.933,0.968,1.145,1.015,0.675,0.926,0.973,0.914,0.837,1.006,1.017,0.972,2.587,1.013,0.967,1.0,1.061,0.947,1.6,1.082,1.027,1.041,1.155,1.091,1.133,1.047,1.096,0.961,1.058,0.943 +NM_000341,0.837,1.152,0.843,1.38,0.84,2.249,1.018,0.902,0.836,0.991,4.377,0.966,0.926,0.961,2.66,6.413,0.799,0.95,0.995,3.616,0.87,0.888,3.314,0.818,0.965,0.968,0.905,0.922,0.922,1.196,0.798,0.881,0.936,1.316,0.961,0.884,5.692,0.98,1.398,1.049,0.818,6.212,2.858,1.001,0.942,2.717,2.498,0.894,1.781,0.884,3.658,0.874,0.822,1.159 +NM_000343,0.595,1.549,1.543,0.721,0.889,0.68,0.394,0.849,1.054,1.385,0.988,0.883,0.522,0.46,1.361,4.453,1.108,0.942,1.544,1.393,0.452,0.982,1.316,1.045,0.341,0.516,1.298,0.656,0.256,0.648,0.687,0.496,1.888,0.918,0.473,0.995,5.29,0.772,1.291,0.561,0.834,2.043,2.171,1.044,1.073,1.045,2.582,0.891,1.28,1.241,2.113,1.31,0.965,0.596 +NM_000345,0.852,0.899,1.05,1.056,0.862,0.914,0.879,1.047,0.921,1.032,0.978,1.035,1.019,0.918,1.159,1.074,0.924,1.11,1.005,0.98,1.016,0.949,1.042,1.114,0.947,0.877,1.257,1.012,0.877,0.994,1.26,1.051,1.106,0.923,1.113,1.014,0.789,1.198,1.018,1.102,1.02,1.359,1.0,0.849,1.001,0.892,1.253,0.865,0.956,0.952,0.964,1.156,1.293,0.904 +NM_000346,0.326,1.882,0.987,0.89,0.48,0.773,0.665,0.294,0.723,0.563,1.162,0.483,0.285,0.456,0.708,1.271,0.509,0.636,0.452,1.73,0.301,0.472,2.012,0.433,0.702,0.451,0.714,0.462,0.395,1.517,0.525,1.67,2.587,1.501,0.329,1.172,0.84,0.409,1.912,1.376,0.351,1.696,1.006,2.855,0.453,1.532,0.769,0.411,1.092,0.64,1.542,1.328,0.497,1.663 +NM_000347,0.877,0.825,0.899,1.025,1.02,0.979,1.005,0.898,1.022,0.924,1.17,1.007,1.028,0.859,0.783,1.022,1.054,0.968,1.003,0.894,0.934,1.0,0.95,0.931,0.943,0.798,1.038,0.89,1.19,1.05,1.067,1.018,1.187,1.0,1.031,0.936,0.908,0.958,1.129,0.991,1.025,0.96,0.917,1.154,0.91,1.133,0.989,1.075,1.104,0.961,0.937,0.898,1.044,1.665 +NM_000348,0.845,1.03,0.99,0.873,1.1,1.033,0.82,1.018,0.961,0.952,0.827,0.978,1.014,0.8,1.033,0.89,1.193,0.999,0.936,0.952,0.996,0.949,1.022,1.016,0.948,0.997,1.01,1.053,0.85,0.983,0.919,0.896,0.854,1.071,0.995,1.119,1.109,1.053,1.032,1.007,1.066,0.97,0.855,1.01,1.118,0.916,1.059,1.168,1.078,0.986,0.975,0.935,0.791,0.926 +NM_000349,1.269,0.827,1.212,1.027,1.12,0.901,0.857,0.969,1.112,1.264,1.032,1.218,1.145,1.181,0.975,1.033,1.086,1.026,1.24,0.825,1.212,1.169,0.849,1.222,1.04,1.252,1.342,1.073,0.923,0.858,1.156,0.936,0.926,0.9,0.968,0.884,1.017,1.419,0.906,0.994,1.193,0.904,0.908,0.919,1.082,1.02,0.941,1.079,0.974,1.081,0.989,0.797,1.251,0.965 +NM_000350,0.936,1.054,1.005,1.188,0.979,1.042,1.086,0.939,0.887,0.928,1.037,0.969,0.881,0.978,1.142,1.135,1.017,0.985,1.035,0.954,1.06,0.94,1.057,1.037,0.971,1.084,0.968,1.051,1.129,0.933,1.036,1.067,1.099,0.879,1.1,0.919,1.198,1.003,0.969,1.077,0.946,1.159,1.087,0.936,0.991,1.012,0.989,0.93,2.11,0.81,1.157,1.086,0.881,0.941 +NM_000351,0.465,2.841,0.602,1.771,0.617,2.721,2.339,0.562,0.521,0.504,1.273,0.638,0.492,0.486,0.85,1.107,0.579,1.724,0.653,3.477,0.559,0.601,1.718,0.64,1.299,0.497,0.644,0.527,2.58,3.24,0.566,1.949,0.97,2.944,0.49,1.305,1.641,0.593,1.657,1.004,0.638,1.644,0.957,0.663,0.602,1.236,0.601,0.594,1.476,0.616,1.592,0.871,0.677,0.96 +NM_000352,0.826,1.631,0.894,1.141,0.804,0.933,1.322,1.004,0.89,1.02,1.223,1.003,1.016,0.894,0.921,1.095,0.902,1.125,0.881,1.814,0.937,0.937,1.422,0.835,1.104,0.911,0.911,0.978,1.069,0.911,0.901,0.87,1.014,2.416,1.023,1.324,1.425,0.896,0.918,0.867,0.915,1.005,1.271,0.896,0.998,1.222,0.993,0.878,1.013,1.019,1.286,0.745,0.976,0.836 +NM_000353,0.961,0.961,1.054,1.266,1.018,0.988,1.148,0.994,0.949,1.0,1.149,1.085,1.091,0.812,0.861,1.045,0.992,1.15,0.982,0.912,1.132,0.991,1.07,1.042,0.974,0.992,1.01,0.931,1.072,1.221,0.996,0.931,1.113,0.934,1.005,1.087,1.121,1.024,1.083,0.864,0.94,0.828,1.045,1.056,1.079,0.934,1.088,1.075,1.049,0.927,0.979,1.045,1.021,1.059 +NM_000354,0.915,0.966,1.094,0.951,1.0,0.878,0.888,1.055,1.048,1.12,0.99,1.031,0.941,0.877,0.989,0.987,1.137,1.043,1.005,1.038,0.973,1.037,0.888,1.011,1.091,0.947,1.075,0.953,1.266,1.013,0.943,1.078,1.043,0.991,0.962,0.966,1.001,1.0,1.048,0.846,0.819,1.011,1.11,0.884,1.013,0.918,1.053,1.019,1.025,0.959,0.921,1.165,1.001,1.09 +NM_000355,0.436,1.411,0.565,0.704,0.494,1.95,1.012,0.444,0.47,0.578,1.31,0.499,0.518,0.424,1.199,1.198,0.5,0.988,0.519,1.468,0.47,0.553,0.972,0.522,1.325,0.499,0.497,0.521,1.141,1.615,0.496,1.288,1.013,2.898,0.505,0.778,1.111,0.557,1.086,0.963,0.539,2.643,0.696,0.839,0.63,0.842,1.089,0.466,0.571,0.469,1.025,0.824,0.561,1.51 +NM_000356,0.892,0.872,1.247,0.976,0.866,0.841,0.88,0.83,1.013,1.22,0.772,0.978,0.75,0.794,0.92,1.005,0.967,0.847,1.104,0.932,0.982,1.012,1.279,1.054,0.911,0.874,1.328,0.821,0.657,0.801,1.018,1.416,5.918,1.018,0.522,1.045,0.91,0.868,1.822,1.309,0.989,0.992,0.729,1.674,1.245,0.918,0.851,0.842,1.084,1.058,1.102,1.389,1.115,2.338 +NM_000358,0.366,0.939,1.173,0.567,0.562,0.785,0.971,0.396,0.531,0.518,0.922,0.285,0.417,0.383,0.933,1.119,0.419,0.54,0.556,0.709,0.408,0.343,1.754,0.559,0.572,0.461,1.14,0.554,0.267,2.873,0.34,5.688,8.519,1.918,0.229,1.526,0.924,0.601,2.344,7.494,0.931,1.13,0.569,0.792,0.86,1.259,1.541,0.412,0.615,0.404,1.533,6.435,1.016,2.681 +NM_000359,2.765,0.0443,3.796,0.587,4.475,0.0399,0.0434,2.173,5.266,5.869,0.0309,3.604,2.017,1.337,1.869,1.54,2.822,2.47,3.819,0.0484,1.716,3.389,0.0421,5.1,0.0411,3.241,3.851,3.558,0.05,0.0511,4.795,0.0595,1.93,0.0405,1.004,0.0416,0.049,4.06,0.0681,0.042,4.561,0.0471,0.0348,0.0397,6.485,0.0369,3.962,4.048,0.299,4.928,0.996,1.44,2.903,0.577 +NM_000360,1.096,0.884,0.989,1.145,1.031,1.046,1.043,0.995,0.879,1.07,1.069,0.895,1.04,0.988,0.935,0.999,1.011,0.999,0.962,1.039,1.078,1.127,0.968,1.052,1.057,1.137,1.049,0.995,0.938,1.016,1.061,0.933,1.061,1.051,1.097,1.135,0.982,0.866,1.021,1.097,0.931,1.006,1.194,1.059,1.033,1.055,0.993,1.034,0.933,0.946,0.994,0.937,0.987,0.935 +NM_000361,0.955,0.596,2.033,0.599,1.726,0.484,0.634,0.645,2.157,1.961,0.368,1.174,0.883,1.006,0.933,0.783,1.451,0.977,2.029,0.46,0.893,1.601,0.622,1.703,0.471,1.386,2.572,1.309,0.537,1.908,1.341,1.335,2.185,1.719,0.227,0.62,0.801,1.903,1.369,3.257,1.693,0.815,0.697,0.383,1.868,0.371,1.337,1.199,0.435,1.732,0.805,2.16,2.131,0.994 +NM_000362,0.506,1.79,0.869,0.669,0.528,1.487,0.663,0.584,0.567,0.9,1.26,0.578,0.529,0.505,1.562,2.613,0.526,0.515,0.661,1.55,0.864,0.497,6.698,0.722,1.506,0.616,0.587,1.652,0.369,2.129,0.496,21.01,3.118,4.66,0.457,0.739,0.999,1.629,1.106,2.88,1.817,8.959,1.143,0.58,0.682,1.467,0.732,0.502,0.651,0.615,2.201,1.569,0.873,1.531 +NM_000363,0.849,1.07,1.099,1.026,1.033,1.01,1.2,1.175,0.916,0.987,1.203,1.128,0.899,1.104,1.054,1.168,0.901,1.028,0.927,0.859,0.966,0.945,1.044,1.033,0.858,0.996,0.911,1.035,1.16,1.021,0.957,1.127,1.138,1.073,0.972,0.992,0.993,0.941,1.43,1.455,0.911,1.015,0.983,1.037,1.009,0.896,1.028,1.009,1.047,0.945,0.98,1.02,0.97,1.07 +NM_000364,1.152,0.903,0.93,0.973,1.114,0.825,0.924,0.971,1.118,1.207,0.891,1.05,0.942,0.869,0.989,0.892,1.157,1.077,1.147,1.032,1.142,1.249,0.915,1.228,1.022,1.248,1.066,1.108,0.804,1.049,1.231,1.029,0.957,1.023,1.178,0.895,0.998,1.258,0.998,1.054,1.046,0.957,1.384,1.001,0.965,0.996,1.252,1.209,1.116,0.952,0.999,1.095,1.059,0.976 +NM_000365,1.308,0.569,1.168,0.904,1.181,0.744,0.278,0.388,1.383,1.148,0.93,0.638,0.669,0.628,0.882,1.706,1.009,1.331,2.109,0.459,0.634,0.777,1.002,1.316,0.498,1.498,1.334,1.055,0.241,0.716,0.961,0.607,1.97,0.833,0.66,0.76,1.016,1.296,1.763,0.851,1.373,0.83,0.548,1.469,1.199,0.749,1.517,1.09,1.086,1.472,0.915,0.763,1.106,0.887 +NM_000366,0.795,1.325,0.741,0.98,0.785,1.203,1.005,0.747,0.774,0.779,1.132,0.803,0.769,0.698,1.058,1.396,0.693,1.036,0.757,1.505,0.659,0.811,1.213,0.726,1.19,0.883,0.785,0.978,0.924,1.281,0.777,1.763,0.866,1.539,0.79,0.85,1.257,0.85,1.915,1.046,1.082,1.435,1.102,0.824,0.781,1.468,1.332,0.831,1.402,0.678,1.545,1.227,0.78,0.868 +NM_000367,0.908,0.997,0.934,0.843,0.898,1.647,0.848,0.944,0.932,0.809,1.757,0.884,0.831,0.778,0.995,2.599,0.951,0.874,0.921,1.117,0.895,0.815,1.468,0.896,0.975,0.948,0.946,0.917,1.118,1.181,0.893,1.045,1.032,1.068,0.659,0.9,1.555,0.969,1.097,1.122,0.885,1.369,1.193,1.073,0.919,1.528,1.072,0.843,1.6,0.933,1.424,0.976,1.051,1.338 +NM_000368,1.013,0.905,1.126,0.875,0.908,0.889,0.769,0.671,0.992,0.961,0.87,0.722,0.817,0.978,1.158,0.931,0.98,0.993,0.983,0.979,0.805,0.901,1.022,1.2,0.983,0.891,1.215,0.95,1.028,1.052,0.923,1.314,1.363,1.407,0.81,0.845,0.926,0.918,1.108,1.055,1.017,1.076,0.904,1.011,1.005,1.227,0.863,0.819,0.751,1.085,1.068,0.838,0.873,1.663 +NM_000369,1.109,0.985,0.888,1.003,0.902,0.987,1.047,0.841,0.888,1.184,0.866,1.012,1.007,1.116,0.981,1.148,0.919,0.905,0.855,1.021,0.955,0.944,0.952,1.109,1.005,1.165,0.877,0.769,0.825,1.01,0.98,0.997,1.07,1.059,1.252,1.003,1.112,1.154,1.023,0.911,0.976,1.108,1.147,1.023,0.955,0.868,1.201,1.076,1.044,1.066,1.023,1.009,1.059,0.986 +NM_000370,0.977,0.988,0.982,1.101,0.856,0.962,0.831,1.059,0.99,1.009,0.86,1.215,0.939,0.935,1.162,1.003,0.943,0.957,0.966,1.047,0.93,1.037,0.864,1.026,1.028,1.094,1.122,0.996,0.859,0.975,1.03,1.01,1.14,0.987,0.934,1.011,0.921,0.989,1.005,1.05,1.265,0.917,0.728,0.884,1.132,1.001,0.927,0.997,1.031,1.015,0.998,0.876,1.139,0.976 +NM_000371,0.875,2.67,0.762,2.189,0.997,2.012,4.592,0.769,0.768,0.897,10.14,0.812,0.736,0.779,1.178,1.087,0.859,1.078,0.836,5.136,0.722,0.741,1.445,0.911,2.572,0.82,0.658,0.947,1.401,1.003,0.726,0.851,1.123,25.86,0.89,0.879,9.046,0.874,1.126,0.904,0.832,1.404,1.752,1.087,0.802,1.592,1.558,0.814,1.015,0.85,1.481,0.812,0.707,0.692 +NM_000372,1.071,1.06,0.872,1.094,1.14,0.922,1.007,0.896,1.066,1.019,1.048,1.127,1.116,0.832,0.979,0.957,0.937,1.041,1.115,1.026,1.043,0.952,0.947,0.977,1.022,1.001,1.073,0.894,1.003,1.089,0.955,1.038,1.019,0.937,0.978,0.923,0.96,1.103,0.881,0.978,1.07,0.951,0.919,1.087,1.095,1.025,1.093,0.981,0.983,1.024,1.024,0.965,1.48,0.863 +NM_000373,1.219,0.863,1.216,1.207,0.958,0.977,0.78,1.069,1.026,0.832,1.044,1.044,1.301,0.923,1.025,1.195,0.964,0.753,1.13,0.998,1.028,0.915,0.857,0.968,0.943,1.112,1.062,0.736,0.888,0.86,0.973,0.777,1.289,1.06,1.349,1.168,0.92,0.975,1.154,0.997,1.004,1.173,1.219,0.843,0.959,0.854,1.144,1.02,1.149,0.982,1.038,0.985,0.953,0.95 +NM_000374,0.668,1.003,1.205,0.748,0.7,1.242,0.488,0.433,1.048,0.784,1.313,0.649,0.578,0.677,1.049,1.866,0.782,0.907,1.355,0.973,0.544,0.695,1.307,0.957,0.562,0.827,1.28,0.735,0.376,1.147,0.83,1.992,1.817,1.713,0.159,0.669,1.017,0.846,1.406,0.636,1.003,1.287,0.489,1.513,0.93,1.021,0.896,0.61,0.703,0.751,1.049,0.696,1.093,1.459 +NM_000375,0.576,1.943,1.179,0.576,0.805,1.142,0.568,0.494,1.282,0.995,0.941,1.313,0.552,0.528,0.931,1.322,0.999,0.834,0.955,1.059,0.43,0.62,1.351,1.179,0.697,0.788,1.37,0.921,0.43,1.294,0.676,2.176,1.29,1.276,0.196,1.771,0.955,0.902,1.387,0.675,1.198,1.184,0.774,1.59,1.001,0.854,1.179,0.598,1.088,0.531,1.266,0.889,0.984,1.544 +NM_000376,0.767,0.731,1.072,0.946,0.837,1.018,0.905,0.765,0.811,0.997,1.289,0.728,0.781,0.921,1.107,1.71,1.034,0.886,1.04,1.006,0.893,0.826,1.113,0.91,0.765,0.854,1.211,0.856,0.846,1.356,1.029,1.067,1.082,1.098,0.899,0.908,1.4,0.817,1.169,0.932,0.988,1.08,1.084,1.068,0.911,1.316,1.145,0.784,1.373,1.083,1.015,0.885,0.95,0.963 +NM_000377,0.747,0.914,1.294,0.948,0.811,1.045,1.005,0.732,0.985,0.811,0.8,0.834,0.727,0.76,1.152,0.806,1.075,0.731,0.955,0.839,1.071,0.745,0.942,1.056,0.816,0.729,1.783,0.846,0.714,1.408,0.904,1.719,1.267,1.247,0.621,0.858,0.968,0.788,1.338,3.218,1.24,1.428,0.973,0.746,0.983,0.819,0.9,0.696,0.833,0.731,0.964,1.697,1.69,1.738 +NM_000378,0.972,1.109,1.027,0.975,1.147,0.951,0.845,1.112,0.782,1.09,1.054,0.928,0.951,0.901,0.974,1.188,0.95,0.921,1.001,0.993,0.974,1.083,1.053,0.898,0.987,0.985,0.926,0.978,0.806,0.986,1.007,0.928,1.046,0.846,1.081,0.996,1.011,0.954,1.21,1.107,1.103,0.991,1.092,1.032,1.012,1.222,1.031,1.206,0.948,0.978,0.894,0.998,1.021,1.046 +NM_000379,0.756,0.659,2.292,0.695,0.701,1.016,0.67,0.55,0.93,0.732,1.309,0.719,0.741,0.708,1.136,1.879,3.225,0.665,1.638,1.085,0.902,0.639,1.128,0.824,0.65,0.765,2.028,0.656,0.496,0.924,0.752,0.613,1.454,0.895,1.368,0.924,1.405,0.627,0.932,0.774,1.267,1.069,1.772,0.647,1.129,1.585,1.394,0.777,1.682,1.707,1.183,1.309,2.167,1.177 +NM_000380,0.775,1.285,1.183,0.798,1.111,1.076,0.6,0.769,1.504,1.064,0.852,0.924,0.815,0.955,0.911,1.276,0.818,0.743,1.241,0.904,0.706,0.716,1.007,1.058,0.954,0.93,1.581,1.103,0.67,1.328,1.111,1.487,1.955,1.348,0.438,0.656,0.82,1.181,1.068,0.657,1.465,0.948,0.819,0.585,1.123,0.801,0.794,1.045,0.757,0.849,0.941,0.778,0.922,1.419 +NM_000384,1.099,0.976,0.96,1.243,0.924,1.251,0.999,0.835,1.054,0.972,1.499,0.88,1.044,0.853,5.643,5.839,0.851,0.913,1.06,2.809,0.942,1.064,1.311,0.927,0.987,0.993,0.828,0.929,1.302,0.918,0.862,1.057,0.908,1.027,0.926,1.184,17.41,0.914,0.889,1.02,0.945,2.126,4.678,1.059,1.016,1.825,2.91,0.831,2.059,0.984,2.939,1.146,0.991,0.907 +NM_000385,0.865,0.886,0.912,0.795,0.971,0.866,1.0,0.999,0.993,0.964,1.052,0.962,0.941,0.858,0.976,1.15,0.789,0.885,0.999,1.033,1.055,1.005,1.539,0.995,1.045,0.928,0.946,1.037,1.464,1.084,0.896,1.119,0.946,0.882,0.861,0.927,1.075,1.141,1.043,0.93,1.076,1.395,1.203,0.949,0.955,1.0,0.927,0.928,0.981,1.021,1.072,1.425,0.962,1.951 +NM_000386,0.959,0.612,1.685,0.582,1.494,0.657,0.4,0.766,2.051,1.79,0.554,1.197,0.841,1.137,1.076,1.119,1.147,1.004,1.788,0.661,0.905,1.533,1.244,1.573,0.479,1.15,1.899,1.239,0.314,0.75,1.865,1.526,1.9,0.851,0.247,0.821,0.867,1.578,0.815,0.978,1.511,0.805,0.794,0.86,1.246,0.847,1.28,0.994,0.924,0.936,0.966,1.126,1.328,1.497 +NM_000387,0.756,1.006,0.919,1.343,0.821,1.709,0.969,0.551,1.026,0.845,2.077,0.777,0.698,0.741,1.598,3.029,0.903,0.994,0.863,1.731,0.721,0.625,1.736,0.851,1.007,0.772,0.887,0.745,0.77,1.452,0.762,1.193,0.83,1.799,0.652,0.826,1.545,0.669,1.656,0.983,0.852,1.847,1.478,0.956,0.887,1.89,1.246,0.528,2.109,0.832,1.568,0.925,0.822,1.332 +NM_000390,0.969,0.886,0.942,1.185,1.004,1.027,0.782,0.981,1.047,1.114,1.102,0.993,0.966,0.888,0.838,1.056,0.993,0.966,1.106,1.035,0.987,1.124,1.058,1.053,1.015,0.937,0.833,1.078,0.97,0.924,1.019,1.171,0.964,0.964,0.935,1.056,1.011,1.059,0.876,1.031,0.979,0.909,1.046,1.116,0.826,0.9,1.017,1.09,0.892,0.998,0.981,1.038,1.011,0.956 +NM_000392,1.133,0.945,1.007,1.012,1.147,1.049,0.976,1.087,1.0,1.099,1.055,0.961,1.024,0.954,1.055,1.323,0.871,1.02,0.967,0.96,0.786,0.994,1.05,1.083,1.004,0.843,1.077,0.953,1.087,0.984,1.0,0.864,1.072,0.979,0.949,0.993,1.209,0.889,0.951,1.187,0.963,1.018,0.936,0.977,0.991,0.982,1.128,0.87,1.07,0.908,0.813,1.016,0.833,1.052 +NM_000393,0.583,1.467,0.871,0.65,0.615,1.266,1.186,0.473,0.518,0.683,1.177,0.563,0.491,0.527,1.015,1.178,0.582,0.665,0.57,0.987,0.628,0.535,2.65,0.581,0.849,0.471,0.985,0.59,0.509,2.962,0.52,24.57,3.247,2.324,0.552,1.106,1.115,0.69,2.222,6.428,0.712,2.029,0.999,0.731,0.685,1.894,0.96,0.562,0.798,0.614,1.727,3.969,0.728,1.845 +NM_000394,1.021,0.908,0.89,0.929,1.051,1.122,0.985,0.936,1.195,0.88,1.248,1.034,0.92,0.794,0.995,1.188,1.041,0.796,0.997,0.938,1.087,1.057,1.143,1.033,1.102,1.006,1.048,1.054,0.779,1.122,1.098,1.025,0.77,1.047,1.154,1.048,0.998,1.145,1.031,0.947,1.016,0.877,1.052,0.978,1.112,1.215,1.029,1.024,0.965,1.002,0.885,1.052,1.191,0.907 +NM_000395,0.988,1.02,0.85,1.04,0.944,0.977,1.071,0.97,0.964,0.938,1.005,0.936,1.014,1.173,0.944,0.934,0.982,0.926,1.089,0.875,1.036,1.041,1.011,0.928,1.026,0.891,1.062,1.087,1.083,1.089,1.033,0.953,1.08,0.952,1.017,0.963,1.036,1.08,0.971,1.059,0.886,1.076,1.207,1.031,0.965,1.036,1.112,0.979,1.081,1.11,1.104,0.997,1.131,0.819 +NM_000396,0.602,1.408,0.593,0.734,0.712,1.171,1.03,0.571,0.6,0.816,1.046,0.55,0.594,0.834,1.129,1.056,0.563,0.6,0.465,0.892,0.708,0.538,1.741,0.69,0.831,0.662,0.599,0.75,0.761,1.896,0.526,17.78,2.091,2.088,0.581,1.176,1.008,0.849,3.39,2.729,0.758,2.215,0.881,0.869,0.642,1.128,1.002,0.497,0.724,0.731,1.179,2.888,0.739,2.768 +NM_000398,0.878,0.795,0.811,0.909,0.772,1.201,0.571,0.714,0.912,0.802,1.118,0.574,0.851,0.637,1.158,2.149,0.79,0.757,1.144,0.987,0.751,0.932,1.193,0.928,1.013,1.074,1.104,0.763,0.512,1.1,0.984,1.528,1.67,1.496,0.632,0.935,1.017,0.937,2.064,0.881,0.779,1.075,0.64,1.185,0.911,0.922,0.794,0.852,0.867,0.923,1.197,0.805,1.141,1.095 +NM_000400,0.809,1.371,0.992,1.034,0.818,1.13,0.774,0.771,1.091,0.886,0.927,0.882,0.886,0.726,0.878,1.221,0.938,0.899,0.913,1.032,0.802,0.812,1.344,0.799,1.186,0.843,0.991,0.866,0.953,1.224,0.811,1.306,2.181,1.27,0.739,0.998,1.162,0.931,1.701,1.102,0.946,1.274,0.913,2.383,0.975,0.958,0.941,0.852,0.808,0.83,0.983,0.821,0.995,1.413 +NM_000402,1.392,0.726,1.274,1.043,1.092,1.052,0.796,0.956,1.131,1.26,0.603,1.135,1.061,0.945,1.342,1.287,1.049,1.254,2.252,0.713,1.686,1.834,0.911,1.237,0.71,1.979,1.447,0.91,0.944,0.856,1.146,0.858,1.071,0.903,0.944,0.686,0.979,1.351,2.37,0.838,1.076,0.742,0.738,2.341,1.289,0.721,1.05,1.734,0.701,1.516,0.805,0.856,1.305,0.645 +NM_000404,0.407,1.873,0.656,0.726,0.445,1.616,0.769,0.312,0.506,0.521,1.823,0.388,0.337,0.375,0.951,2.162,0.548,0.967,0.568,1.669,0.337,0.421,2.02,0.484,0.808,0.444,0.885,0.328,0.716,2.004,0.43,1.569,1.508,2.164,0.198,0.777,1.89,0.475,2.338,1.04,0.504,1.885,0.819,1.147,0.478,1.601,0.869,0.393,0.959,0.468,2.115,0.886,0.562,1.708 +NM_000405,1.464,0.925,1.921,1.045,2.38,0.85,0.454,1.095,1.528,2.21,0.76,1.579,1.093,1.216,1.084,1.0,1.283,1.114,1.878,0.695,0.942,0.658,0.748,1.601,0.746,1.663,2.162,1.173,0.385,0.943,1.439,0.962,1.3,1.0,1.688,0.659,0.669,1.07,0.907,0.823,1.702,0.768,0.662,0.758,1.289,0.771,1.374,0.895,0.748,1.645,0.886,1.034,1.884,1.963 +NM_000406,1.114,1.059,1.031,1.081,1.116,1.012,0.994,0.947,1.062,1.058,0.983,0.984,1.126,0.96,0.793,0.902,0.975,1.06,0.949,1.179,1.068,1.005,1.013,0.877,1.049,1.002,0.848,0.98,0.93,0.953,0.907,0.873,0.998,1.105,1.073,0.946,1.02,1.176,0.972,1.01,1.127,1.033,0.959,1.094,0.949,0.987,1.05,0.964,0.987,1.042,1.027,0.893,0.996,0.842 +NM_000407,2.433,0.587,3.733,1.333,2.965,0.506,0.425,1.862,3.302,2.735,0.566,3.164,1.216,2.579,1.573,0.849,3.594,1.747,3.763,0.569,1.194,4.187,0.505,3.765,0.55,3.116,2.029,2.915,0.41,0.631,3.102,2.062,1.143,0.801,0.583,0.83,0.491,3.675,0.631,0.669,3.546,0.631,0.701,0.396,2.737,0.555,2.318,2.539,0.473,3.611,0.995,1.034,2.709,0.739 +NM_000408,0.826,0.698,1.583,0.752,1.046,0.944,0.747,0.613,1.235,0.901,0.996,0.695,0.718,0.858,1.0,1.248,1.073,1.054,1.536,0.764,0.892,1.052,1.117,0.991,0.585,0.97,1.41,1.102,0.634,0.894,1.188,0.652,1.143,0.988,1.253,0.781,1.17,0.968,1.347,0.604,1.277,0.906,0.823,1.269,1.113,1.311,1.047,1.038,1.254,1.008,1.098,0.844,1.141,0.628 +NM_000409,1.015,0.944,1.073,0.982,1.072,0.926,0.996,0.983,0.987,1.167,1.072,0.89,1.124,0.871,1.226,1.024,0.937,1.018,1.038,1.084,1.036,0.852,0.884,0.972,1.067,1.027,0.889,1.034,1.124,1.006,1.142,1.083,1.12,0.93,1.052,1.0,0.988,1.07,0.889,0.972,1.095,1.082,0.776,0.976,1.165,0.939,0.965,0.958,1.021,0.982,1.077,1.004,1.263,0.939 +NM_000410,0.868,0.99,0.967,0.974,0.993,1.157,0.907,0.925,0.902,1.06,1.124,0.949,0.989,1.118,0.859,1.006,0.94,1.189,0.979,1.053,1.035,1.183,1.001,1.044,1.02,1.171,0.877,1.036,1.184,0.975,0.975,0.99,0.989,0.962,1.112,1.168,1.028,1.009,0.908,1.077,0.895,0.951,1.116,0.962,0.991,1.051,1.0,0.981,0.976,1.038,0.914,0.89,1.164,0.967 +NM_000411,1.077,1.013,0.806,1.056,0.868,0.904,0.841,1.001,1.143,0.909,0.979,1.025,0.961,0.903,0.936,1.058,0.969,0.986,1.039,1.089,0.931,0.918,1.218,1.11,1.126,0.935,0.96,0.956,0.918,1.135,1.015,1.073,0.919,1.027,0.771,0.933,0.951,0.951,0.937,1.19,0.915,1.003,0.828,1.057,1.043,0.913,0.824,0.945,0.873,0.929,1.026,1.024,0.981,1.036 +NM_000412,0.882,1.017,1.097,1.045,0.968,1.028,1.003,0.827,1.046,0.971,1.041,0.948,0.977,0.997,1.348,1.057,0.985,0.998,0.941,1.06,1.062,1.16,1.088,1.086,1.108,1.0,0.96,0.94,1.139,1.073,0.945,0.909,1.177,0.981,1.16,1.009,1.105,1.01,0.928,0.901,0.977,0.885,0.942,0.962,1.05,1.23,0.934,0.964,0.884,1.117,1.047,0.85,1.136,1.09 +NM_000414,0.502,1.045,1.46,0.67,1.09,1.755,0.841,0.591,1.646,1.124,0.8,0.72,0.57,0.638,1.245,2.369,1.231,0.975,1.274,1.273,0.562,0.812,1.316,1.334,0.488,0.588,1.415,0.981,0.481,1.738,1.577,0.857,1.867,1.657,0.377,0.443,1.264,0.965,1.219,0.43,1.514,1.467,0.774,0.529,1.243,1.085,1.138,0.707,1.578,0.943,1.283,0.63,0.795,1.117 +NM_000415,1.033,0.93,0.981,1.005,1.119,1.08,0.936,0.986,0.987,1.038,0.976,1.136,0.947,1.072,0.843,0.999,1.005,0.968,0.917,1.092,0.98,1.057,0.939,1.013,1.037,1.008,0.952,1.082,0.836,0.891,1.153,0.975,1.098,1.139,0.915,1.097,1.083,0.859,0.903,1.038,0.962,1.001,1.248,0.843,0.928,1.147,1.136,1.024,1.055,1.079,0.919,1.118,1.076,1.015 +NM_000417,0.955,0.949,1.05,1.023,1.132,0.993,0.789,1.109,1.047,0.911,0.975,0.929,1.042,0.898,1.047,1.061,1.07,0.897,1.035,0.939,1.139,0.969,1.066,1.033,0.916,0.983,0.88,1.012,0.76,1.003,0.984,1.07,0.993,0.989,1.0,0.888,1.006,0.982,0.92,0.903,0.95,1.075,0.924,0.91,1.059,1.07,1.016,1.027,1.017,1.018,0.971,0.952,1.063,1.028 +NM_000418,0.726,0.768,2.615,0.709,1.102,0.978,0.585,0.392,1.395,1.69,0.802,0.72,0.579,0.63,0.778,0.89,2.595,0.888,1.744,1.001,0.529,0.9,0.923,1.172,0.406,0.853,2.83,0.896,0.407,1.373,0.955,1.977,1.171,1.054,0.232,0.759,0.66,0.898,1.416,2.38,2.031,0.924,0.69,1.112,1.742,0.915,1.612,0.796,0.613,1.759,1.042,1.367,1.693,3.412 +NM_000419,0.986,1.006,1.0,1.269,0.906,0.975,0.939,1.15,1.31,1.124,0.963,0.874,1.19,0.888,0.77,0.813,1.097,1.057,0.897,0.91,0.806,1.014,1.175,1.078,0.97,1.075,1.15,1.237,0.976,1.106,0.979,1.718,0.878,1.088,1.017,1.392,0.953,0.979,1.139,1.049,1.039,1.069,1.013,1.003,1.106,1.172,1.074,1.005,1.072,0.956,0.98,1.219,1.056,0.966 +NM_000420,1.128,0.947,1.207,1.065,1.053,1.029,1.087,1.03,1.28,1.127,0.891,1.015,1.232,1.129,1.165,0.999,1.016,1.028,0.943,1.029,0.989,1.166,1.088,1.128,0.868,1.195,0.88,1.323,0.921,0.925,1.204,0.931,0.948,0.804,0.943,0.916,0.962,0.915,0.998,0.864,1.048,1.006,1.073,0.922,1.103,1.054,0.948,1.138,1.006,1.063,0.888,1.023,1.021,0.995 +NM_000422,1.28,0.0761,1.484,0.614,1.528,0.0799,0.0995,0.999,1.397,5.691,0.134,1.363,0.617,0.576,0.726,4.021,1.257,2.71,2.086,0.246,1.244,0.296,0.0752,3.439,0.067,1.188,4.899,0.696,0.0618,0.148,1.454,0.971,7.154,0.0702,5.074,0.141,0.117,1.85,1.612,0.104,1.449,0.278,0.518,1.021,1.412,0.135,8.151,1.301,0.761,7.554,1.005,7.411,5.507,6.507 +NM_000423,1.194,1.033,0.9,0.906,2.419,0.985,1.026,1.077,1.251,4.896,0.834,2.245,0.844,1.102,1.1,1.165,0.954,0.99,1.288,1.016,1.315,1.355,0.977,0.977,0.925,1.223,0.857,1.278,1.227,0.943,1.8,0.958,0.81,1.101,1.029,0.936,1.034,1.293,0.892,0.985,0.972,1.061,0.949,0.966,1.048,1.055,1.083,1.504,0.997,1.139,0.981,1.014,1.129,0.746 +NM_000424,3.506,0.0193,5.468,1.848,2.533,0.0241,0.0256,1.547,2.883,4.579,0.021,4.057,2.47,1.301,1.16,0.88,4.043,2.48,3.284,0.366,2.073,3.04,0.0197,2.683,0.0208,4.371,2.841,2.361,0.0244,0.0473,2.336,0.0223,2.122,0.0215,0.0722,0.0201,0.0205,4.435,0.0498,0.0202,3.094,0.0796,0.0185,0.0213,5.059,0.0213,1.872,2.697,0.0425,5.263,0.749,1.765,4.36,1.003 +NM_000426,0.793,1.615,0.874,0.935,0.818,1.19,1.123,0.926,0.947,0.967,0.908,0.87,0.817,0.907,0.94,1.088,0.82,0.738,0.739,1.061,0.943,0.909,1.046,0.848,1.367,0.883,0.867,0.881,0.974,1.312,0.936,3.489,1.537,1.567,0.896,1.061,1.07,0.928,1.248,1.101,0.91,1.366,0.906,0.996,1.018,0.903,0.978,0.846,0.879,0.924,1.214,1.287,1.118,1.42 +NM_000427,1.036,0.824,0.996,0.964,1.158,0.922,1.063,1.038,1.062,1.058,0.997,1.818,1.037,0.973,1.077,1.093,1.077,0.993,0.968,0.905,0.991,0.984,0.961,1.021,1.047,1.125,1.123,1.223,0.976,1.054,1.093,0.917,0.924,0.863,1.003,1.035,1.23,1.128,0.99,0.954,0.949,1.005,1.061,0.944,0.912,0.94,0.945,0.979,1.107,1.048,1.264,1.022,0.96,0.929 +NM_000428,1.043,0.936,1.333,0.768,0.896,0.928,0.738,0.862,0.852,1.017,0.806,1.102,0.832,0.99,0.865,0.904,0.971,0.834,1.095,0.84,0.916,1.064,1.215,0.955,0.899,0.961,1.354,0.952,0.55,1.127,1.055,7.418,1.978,1.282,0.734,0.771,0.829,1.338,1.305,1.295,1.051,1.158,0.877,0.769,0.99,0.837,1.035,0.964,0.804,1.096,1.068,1.749,1.149,1.517 +NM_000429,1.126,0.937,1.102,1.048,1.136,0.891,0.958,1.236,1.279,0.689,1.135,0.861,1.123,1.247,0.881,1.16,0.89,1.044,0.917,0.965,0.925,0.949,0.866,0.949,0.947,1.115,1.039,1.093,1.139,1.053,0.855,1.021,1.019,0.906,0.949,0.93,0.981,1.013,0.932,0.945,1.053,0.932,0.947,0.975,1.01,1.039,0.943,1.019,1.079,0.945,1.056,0.906,0.992,0.87 +NM_000430,0.883,0.749,1.536,0.946,0.84,0.996,0.742,0.424,1.152,0.911,1.203,0.583,0.623,0.754,1.08,1.708,0.752,0.917,1.074,1.192,0.592,0.669,1.277,0.753,0.961,0.91,1.063,0.946,0.519,1.495,1.21,1.304,0.904,1.758,0.297,0.704,1.398,0.867,0.817,0.55,1.087,1.301,0.731,0.841,1.053,0.976,0.814,0.68,0.913,0.965,1.192,0.873,1.125,1.309 +NM_000431,1.221,0.766,1.108,1.08,1.131,0.945,0.791,0.977,1.367,0.977,1.035,1.114,1.071,0.985,1.018,1.41,1.057,1.222,1.949,0.866,1.008,1.727,1.187,1.207,0.942,1.552,1.246,1.02,0.85,0.739,1.124,0.796,1.243,0.925,0.894,0.866,0.961,1.249,1.164,0.879,1.012,0.973,0.776,0.912,1.313,1.003,1.05,1.827,0.863,1.639,0.912,0.771,1.345,0.99 +NM_000432,1.064,0.921,0.949,1.132,0.98,0.986,1.223,0.963,1.095,1.031,0.992,0.974,0.917,0.99,1.026,1.104,0.994,0.927,1.107,0.973,1.21,1.08,0.954,1.132,1.042,0.933,0.874,1.335,1.191,1.053,0.893,0.996,0.913,1.152,1.065,1.159,1.218,1.04,1.041,0.901,1.065,1.071,0.937,0.972,1.081,0.93,0.972,0.852,1.054,0.861,0.953,0.96,1.078,1.0 +NM_000434,0.709,2.363,1.092,0.647,1.048,1.006,0.432,0.501,1.066,0.833,1.357,0.633,0.571,0.723,0.648,1.077,0.999,1.179,1.039,1.068,0.437,0.757,2.486,1.141,1.155,0.775,1.704,0.764,0.544,2.43,1.065,4.321,1.918,1.654,1.086,0.227,0.492,0.848,0.599,5.068,0.866,1.014,0.474,2.965,0.857,0.44,2.403,0.784,0.506,0.719,0.542,1.543,0.916,0.755 +NM_000435,1.451,0.822,1.774,0.909,1.288,0.754,0.772,0.999,1.316,1.241,0.733,1.096,1.049,1.359,0.935,0.933,1.365,1.257,1.912,0.834,1.534,1.844,0.822,1.385,0.727,1.79,1.857,1.238,1.017,0.81,1.467,1.21,1.102,0.832,0.824,0.771,0.837,1.908,0.944,1.311,1.266,0.931,0.77,0.784,1.634,0.807,0.99,1.583,0.72,1.875,0.996,1.05,1.447,0.906 +NM_000436,0.979,1.162,1.263,0.925,1.088,1.088,0.783,0.785,1.556,1.425,0.852,1.124,0.86,0.865,1.153,1.323,0.834,1.021,1.553,0.905,0.933,0.86,1.041,1.224,0.949,1.188,1.048,1.111,0.533,1.186,1.367,0.958,2.782,1.412,0.542,0.898,0.872,1.151,0.873,0.663,1.353,0.821,0.842,1.281,1.169,1.067,0.883,0.85,0.733,0.997,1.047,0.749,1.101,0.984 +NM_000438,1.006,1.057,1.177,0.933,1.129,0.98,0.902,1.01,0.986,1.105,0.897,1.13,0.976,1.018,0.943,0.83,1.264,0.988,0.984,0.933,0.843,0.929,0.879,0.933,0.951,1.041,0.967,1.017,0.921,0.955,1.024,0.914,0.893,0.995,0.923,0.952,0.901,1.026,0.876,1.054,0.944,1.055,1.193,0.969,1.083,1.041,0.981,1.038,1.17,1.069,0.985,1.006,0.925,0.982 +NM_000439,0.947,1.091,1.011,0.923,0.912,0.969,1.049,0.908,1.028,1.045,0.956,1.01,0.994,0.947,1.024,0.937,1.006,1.061,1.017,1.041,0.954,0.894,1.486,1.021,0.974,0.985,1.136,0.992,1.085,0.902,1.04,0.889,1.038,1.402,0.847,0.89,1.07,0.968,1.045,1.103,1.02,0.958,1.446,1.07,1.216,1.289,1.03,1.074,1.342,0.878,1.103,1.024,0.976,0.867 +NM_000444,0.974,1.018,1.04,1.066,1.109,1.219,0.848,1.015,0.911,0.885,1.065,1.006,1.088,0.905,0.962,1.193,0.953,1.056,0.974,1.01,1.149,1.077,0.874,0.99,0.835,0.971,0.945,0.933,1.233,1.035,1.053,0.886,0.973,0.898,1.091,1.176,1.009,0.904,1.08,0.913,0.857,1.023,1.008,1.038,1.027,0.98,0.989,0.827,0.99,0.923,0.959,1.022,1.117,1.224 +NM_000445,0.61,1.102,0.996,0.551,0.918,0.93,0.754,0.454,0.938,0.861,1.004,0.698,0.384,0.498,1.064,0.961,0.792,1.004,0.777,1.246,0.508,0.673,1.222,0.74,0.49,0.566,1.021,0.596,0.754,1.56,0.757,1.989,1.309,0.945,0.59,1.888,1.239,1.348,1.678,2.085,0.905,1.097,1.38,1.295,0.863,1.79,1.395,0.668,2.283,0.581,1.213,1.127,0.858,1.017 +NM_000446,1.021,1.005,0.973,0.908,1.053,1.025,0.951,0.854,0.975,1.035,1.043,0.921,0.91,1.042,0.891,0.995,1.037,0.992,1.077,1.009,1.115,1.011,0.944,0.911,1.049,1.129,1.006,1.155,0.977,1.012,1.015,1.045,1.051,0.954,0.968,1.014,0.85,0.957,0.995,1.086,0.959,0.828,0.978,1.06,0.999,1.017,1.061,0.95,1.112,0.927,1.069,1.195,0.939,0.958 +NM_000448,1.003,1.109,0.955,0.889,1.114,0.929,1.012,0.948,1.201,1.024,1.16,0.907,1.04,0.929,1.079,0.989,1.05,0.939,1.006,0.904,0.928,1.067,0.977,1.005,1.018,0.906,0.719,0.972,0.805,1.117,1.067,0.941,1.213,0.985,0.959,0.958,1.167,0.878,1.295,1.123,0.997,1.0,0.949,0.939,1.104,1.012,0.956,0.965,1.09,0.924,0.995,1.001,1.091,1.517 +NM_000449,0.61,1.488,1.206,0.747,0.619,1.19,0.687,0.58,0.943,0.685,1.431,0.674,0.659,0.772,1.126,1.486,0.999,0.74,1.237,0.912,0.771,0.578,1.246,0.712,0.646,0.615,1.257,0.638,0.505,1.335,0.823,2.518,1.192,1.383,0.365,1.149,1.279,0.69,1.304,0.701,0.936,1.214,0.701,1.086,0.631,1.107,0.719,0.584,0.914,0.629,1.123,1.069,1.384,3.615 +NM_000453,0.919,1.036,0.979,1.09,0.848,1.074,1.014,1.058,0.974,1.02,0.981,0.886,0.898,0.856,0.982,0.908,0.977,0.991,0.924,0.86,0.968,1.049,1.008,0.934,1.011,1.014,1.001,0.939,0.995,1.071,0.987,0.9,0.959,0.908,1.026,0.988,1.119,1.059,1.022,1.036,1.04,1.131,1.014,0.859,0.861,0.858,0.912,1.016,1.051,1.169,1.07,0.91,0.927,0.923 +NM_000454,0.468,1.636,0.788,0.712,0.676,1.283,0.641,0.398,0.93,0.884,1.441,0.517,0.422,0.459,1.03,2.789,0.582,0.755,1.067,1.122,0.555,0.709,1.504,0.876,0.531,0.717,1.115,0.75,0.409,1.401,0.861,1.222,2.233,1.471,0.0698,0.657,1.758,0.874,1.593,0.542,0.939,1.341,1.09,1.001,0.621,1.722,0.914,0.62,1.518,0.437,1.214,0.685,0.698,1.191 +NM_000455,0.994,1.125,1.106,0.936,1.082,1.139,0.786,0.756,0.918,0.953,1.1,0.89,0.98,0.763,0.829,1.172,1.033,1.072,1.201,0.895,0.931,1.147,1.134,0.938,0.986,0.839,1.056,0.833,0.769,1.399,0.901,1.142,0.833,1.11,0.571,0.943,1.093,1.282,1.345,0.814,1.08,1.167,0.894,1.162,0.9,1.045,0.962,1.099,1.047,0.909,0.985,0.871,1.023,1.318 +NM_000456,0.969,0.884,1.207,0.783,1.014,1.281,0.885,0.921,1.318,1.002,0.991,0.889,0.945,0.947,0.987,1.16,1.084,1.15,1.132,0.989,0.923,0.93,1.063,0.94,0.907,0.903,0.935,1.039,0.923,1.074,1.02,1.244,1.119,1.038,0.881,0.916,0.961,1.013,1.078,0.857,1.115,0.947,1.089,1.1,1.259,0.919,1.16,0.904,0.955,0.998,0.947,0.714,1.117,1.028 +NM_000458,1.4969999999999999,2.5220000000000002,1.597,1.797,1.65,2.174,1.955,1.495,1.4969999999999999,1.487,2.225,1.6789999999999998,1.3780000000000001,1.567,1.8690000000000002,2.433,1.534,1.7810000000000001,1.401,2.38,1.6300000000000001,1.579,2.564,1.604,2.117,1.51,1.667,1.813,1.823,2.3209999999999997,1.554,2.749,2.1799999999999997,2.888,1.563,2.0540000000000003,2.319,1.5190000000000001,2.918,1.9180000000000001,1.416,2.145,1.561,2.868,1.5070000000000001,1.8050000000000002,1.6909999999999998,1.5459999999999998,1.885,1.483,2.449,1.9529999999999998,1.428,2.536 +NM_000460,0.951,1.121,1.089,1.086,0.911,1.009,1.173,1.105,0.914,0.921,0.983,0.981,0.912,0.979,1.097,0.997,1.079,0.933,1.125,0.914,0.934,1.047,1.159,1.046,1.158,0.922,1.066,0.842,1.077,0.928,1.002,0.984,0.979,0.99,0.846,0.985,1.144,0.961,0.97,1.113,1.033,0.935,1.065,1.076,0.869,1.052,1.016,1.079,1.084,0.962,0.875,0.883,1.009,1.061 +NM_000461,0.949,1.08,0.983,0.962,0.984,1.002,0.981,0.984,1.047,0.96,0.973,0.988,1.032,0.937,0.932,0.947,0.983,0.987,0.919,0.999,1.061,0.948,1.048,0.998,0.97,1.039,1.011,1.079,0.934,1.0,0.996,0.91,1.063,0.935,1.017,0.99,1.017,1.006,1.006,1.057,1.021,1.038,1.059,1.005,1.016,1.0,1.029,1.019,1.039,1.015,0.987,0.979,1.005,0.976 +NM_000463,0.994,0.922,0.968,0.962,0.935,1.195,1.106,0.894,1.065,0.858,1.655,0.983,0.946,0.856,1.118,1.69,0.855,1.216,0.815,1.239,1.094,0.87,1.196,0.846,0.871,1.066,0.946,0.935,1.252,1.241,1.152,1.082,0.919,1.058,1.088,1.02,1.959,0.929,1.609,0.925,0.805,1.042,1.754,0.87,1.003,1.726,1.047,0.918,1.321,0.904,1.128,1.065,0.951,1.932 +NM_000465,0.82,0.855,1.489,0.761,0.997,0.783,0.894,0.834,1.149,1.0,0.623,1.067,0.866,0.813,0.893,0.939,0.964,1.13,1.753,1.025,0.933,1.207,1.268,1.195,0.678,0.796,1.647,0.909,0.642,0.87,1.36,1.087,2.508,0.882,0.765,1.198,0.849,1.144,1.276,1.151,1.156,0.902,0.629,1.65,0.99,0.702,1.041,0.786,0.888,0.78,0.93,0.907,1.44,2.395 +NM_000466,0.808,0.965,1.094,0.804,0.94,0.945,0.916,0.698,1.111,1.094,1.136,0.778,0.9,0.867,1.047,1.184,0.975,0.839,0.91,1.184,0.79,0.855,1.448,0.906,0.83,0.881,0.975,1.034,0.574,1.152,1.049,1.041,1.713,1.132,0.735,0.781,0.943,0.835,1.052,0.991,1.019,0.945,0.859,1.099,0.92,1.044,1.022,0.733,1.177,0.851,1.03,0.994,0.979,1.257 +NM_000474,0.853,0.995,0.95,0.838,1.039,1.124,0.971,0.853,0.932,0.756,1.156,0.829,0.833,0.879,0.89,0.971,0.931,1.064,0.967,0.784,1.008,0.962,1.193,0.878,0.906,0.891,0.817,1.224,0.742,1.244,0.764,3.964,1.209,1.057,1.147,1.078,0.942,1.053,1.296,1.39,1.206,1.936,1.454,0.893,0.855,0.945,1.125,0.924,1.033,1.007,1.225,1.278,0.914,1.171 +NM_000475,1.007,0.983,1.016,0.861,1.026,0.997,1.131,0.923,0.993,0.949,1.093,1.054,0.921,0.954,1.11,0.914,1.083,0.967,1.031,0.956,1.111,1.025,0.986,0.915,0.94,1.156,0.89,1.021,0.945,1.076,0.839,1.05,1.147,0.836,1.074,0.89,1.129,1.017,0.967,0.855,0.958,0.903,0.962,0.83,0.986,0.931,0.962,1.061,1.199,0.997,1.07,0.973,1.103,0.765 +NM_000477,0.967,1.245,0.982,0.932,1.051,0.956,1.115,0.959,1.05,0.918,0.857,0.951,0.965,1.043,1.0,0.967,0.957,0.854,0.934,1.029,0.864,1.235,1.007,0.985,1.827,0.834,1.058,0.967,1.712,1.111,1.082,1.936,0.96,1.948,0.896,0.831,1.592,0.972,0.908,0.918,1.063,1.004,0.998,0.89,1.046,1.141,1.139,0.957,1.115,0.945,0.969,1.0,1.089,0.94 +NM_000478,0.83,1.109,0.75,1.51,0.823,0.832,1.157,1.086,0.737,0.758,0.917,0.791,0.681,0.842,0.829,0.979,0.802,0.942,0.873,1.397,0.856,0.814,1.375,0.777,1.009,0.68,0.942,0.742,0.744,1.164,0.76,4.914,0.892,1.157,0.671,1.186,0.848,1.041,3.503,4.572,1.046,1.387,0.907,1.111,1.101,0.934,1.051,0.807,0.837,0.983,1.149,2.274,1.224,1.616 +NM_000480,1.054,0.886,1.688,0.898,1.469,0.835,0.861,0.758,1.747,0.815,0.812,1.09,1.183,0.788,1.129,0.897,1.782,0.806,1.527,0.833,1.086,0.713,1.082,0.829,0.667,0.673,1.731,0.998,0.596,0.866,1.535,1.298,1.391,0.826,1.906,1.293,0.799,1.797,0.911,1.334,1.267,0.977,0.891,0.876,1.155,0.894,1.333,0.983,0.925,2.276,1.022,1.007,1.582,1.239 +NM_000481,0.94,1.278,0.869,1.216,0.897,1.203,1.069,0.957,0.935,0.888,1.169,0.854,1.016,0.975,1.101,1.265,0.926,1.159,0.847,1.004,0.766,0.826,1.114,0.87,1.186,0.992,0.896,0.92,0.79,0.913,0.906,0.949,1.597,1.735,0.765,1.266,1.078,0.906,0.859,1.01,0.826,1.275,0.975,1.003,1.018,1.076,0.832,0.872,1.42,0.801,1.087,0.926,0.784,1.003 +NM_000482,0.963,0.959,0.95,1.639,0.93,0.899,0.958,0.842,1.139,0.846,1.045,0.93,0.952,1.146,3.113,1.702,0.962,1.046,0.923,0.908,0.953,1.046,0.919,1.121,1.187,1.339,1.007,0.909,0.841,1.177,0.922,1.061,1.058,0.818,1.035,0.997,28.03,1.003,0.911,0.928,0.836,1.636,7.436,0.923,0.929,0.86,1.567,1.01,0.949,0.945,1.908,0.949,0.929,1.041 +NM_000483,1.104,1.068,0.952,0.924,0.853,0.931,1.027,0.968,0.942,0.939,1.033,0.992,0.951,1.01,1.097,1.084,1.008,0.929,0.943,1.014,0.88,1.001,0.98,0.923,0.995,0.9,1.268,0.958,0.731,0.99,1.0,3.039,1.049,0.945,0.936,0.895,1.096,0.961,1.021,1.317,0.962,0.978,0.934,1.11,0.949,1.02,1.762,0.966,0.945,0.97,0.937,1.089,1.214,1.525 +NM_000484,0.307,2.336,0.755,0.485,0.491,1.113,0.916,0.199,0.285,0.536,1.935,0.305,0.21,0.241,0.884,1.779,0.586,1.005,0.317,1.922,0.333,0.282,2.813,0.439,0.6,0.314,0.89,0.361,0.85,1.96,0.291,1.842,0.462,1.4,0.242,0.461,2.086,0.822,2.228,1.707,0.511,2.723,1.342,0.954,0.543,2.674,1.111,0.343,0.995,0.479,2.094,0.978,0.503,0.768 +NM_000485,0.965,1.009,1.141,0.774,0.849,0.954,0.422,0.469,1.226,1.085,1.278,0.991,0.87,0.477,1.03,1.932,1.101,0.879,1.948,1.039,0.822,0.831,1.124,1.228,0.57,1.354,1.193,0.818,0.318,0.733,0.896,1.049,2.525,1.102,0.178,0.832,0.759,1.18,1.944,0.62,1.136,0.979,0.688,1.512,1.13,0.97,0.984,0.903,0.885,0.908,1.042,0.671,1.098,1.376 +NM_000487,1.009,1.195,0.854,1.012,0.814,1.047,0.698,0.821,0.866,0.802,1.401,0.716,0.852,0.753,0.998,1.181,1.224,1.04,1.11,1.204,0.715,1.084,0.981,1.067,1.048,0.588,0.906,0.512,0.908,1.441,0.742,0.889,0.867,1.381,1.077,0.707,1.075,1.001,1.765,0.784,0.806,1.697,0.825,0.938,0.854,1.17,0.97,1.312,0.712,1.043,1.136,0.787,0.85,0.675 +NM_000488,0.989,1.052,1.051,0.919,0.929,0.857,1.008,0.887,1.006,1.027,0.925,1.091,0.969,0.773,0.909,0.985,1.076,1.063,0.866,0.936,0.871,0.942,0.914,1.015,0.903,0.995,1.24,1.117,0.717,1.028,0.926,1.139,1.008,1.099,1.011,1.025,0.878,1.034,1.047,0.963,0.974,0.884,0.936,0.881,1.094,0.87,1.069,1.084,1.042,1.119,1.035,0.945,0.936,0.951 +NM_000493,0.968,1.031,1.22,1.076,1.128,0.93,0.973,0.852,0.894,1.085,1.144,1.015,1.115,0.997,0.874,1.005,0.951,0.921,0.925,1.157,0.967,0.962,1.076,0.885,0.878,0.958,0.899,0.942,1.202,0.9,1.08,13.59,1.063,1.014,0.896,1.05,1.086,0.893,0.938,1.598,1.088,1.072,1.075,0.813,1.006,0.999,0.872,1.095,1.09,0.884,1.07,1.127,0.836,1.036 +NM_000494,1.011,0.529,1.231,0.934,1.07,0.977,0.492,0.315,0.764,1.574,1.932,0.675,0.528,0.557,1.17,2.319,1.062,1.212,0.784,1.563,0.951,0.543,1.345,0.836,0.504,1.017,0.813,0.714,0.595,1.117,0.59,0.369,0.783,1.039,0.348,1.496,1.156,1.271,1.448,0.296,1.064,1.052,0.916,1.05,1.341,1.974,1.345,0.744,1.551,1.297,1.189,0.942,1.281,0.619 +NM_000495,0.642,1.077,1.135,0.787,0.882,1.106,0.913,0.626,0.864,0.827,1.08,0.776,0.618,0.817,1.066,0.937,0.687,0.844,0.716,1.067,0.647,0.762,1.931,0.7,0.973,0.646,1.654,0.656,0.723,3.312,0.713,2.423,1.131,1.639,0.595,0.699,1.211,0.884,1.413,0.525,0.801,1.951,1.136,1.43,0.683,1.737,0.919,0.661,0.687,0.873,1.271,1.753,1.097,1.033 +NM_000496,1.237,1.235,1.454,1.008,1.059,1.026,0.997,1.31,1.466,0.81,0.891,1.82,0.844,0.975,1.0,1.088,1.054,1.077,1.261,0.864,0.937,0.864,0.902,1.554,1.323,0.889,0.756,1.062,1.294,0.909,1.484,0.995,0.868,1.003,1.023,1.221,0.917,0.953,0.997,0.87,0.776,1.054,0.845,0.908,0.906,1.369,0.918,1.226,1.103,1.1,1.054,1.008,1.025,1.092 +NM_000497,1.001,0.871,0.968,1.078,1.039,1.08,1.072,0.981,1.011,0.897,0.958,1.041,1.07,0.92,1.096,1.004,1.015,0.984,1.065,0.924,0.998,0.966,1.024,1.032,1.003,0.949,0.945,1.025,0.82,1.015,0.943,1.023,0.99,0.986,0.994,1.132,0.981,0.97,0.937,0.933,1.088,0.963,1.401,1.166,1.064,0.976,1.021,1.0,0.948,1.214,1.143,0.903,0.933,0.947 +NM_000498,0.946,0.916,1.047,1.013,0.992,1.024,0.954,0.919,0.902,1.019,1.101,0.97,1.0,0.943,0.951,1.097,0.875,0.925,1.152,1.121,1.049,0.878,1.072,0.911,1.0,1.025,0.89,0.965,0.845,1.106,0.812,0.922,0.777,0.969,1.12,0.931,0.924,0.863,1.015,1.025,0.924,1.075,1.441,1.041,1.031,1.009,0.824,0.836,0.998,0.988,1.083,0.996,0.999,1.011 +NM_000500,1.192,0.983,0.95,1.046,1.012,0.937,0.973,1.034,0.971,1.224,1.204,0.87,1.113,1.053,1.218,0.868,0.907,1.154,0.9,1.083,0.943,1.002,1.071,0.992,1.217,0.983,0.958,1.074,1.407,1.063,0.839,0.938,1.06,1.046,0.924,1.023,1.082,1.016,0.902,0.937,1.075,0.953,1.183,1.004,1.069,0.992,0.942,1.079,1.019,0.963,0.929,0.871,0.992,1.042 +NM_000501,0.953,0.985,1.118,0.945,0.922,1.016,0.913,1.039,1.01,1.051,1.039,1.057,1.081,1.059,0.941,0.988,1.131,1.07,1.038,1.045,0.998,0.915,1.02,0.941,0.966,1.068,0.914,1.048,1.11,0.859,1.009,1.049,0.877,0.964,1.013,1.02,0.975,0.887,0.984,0.97,1.038,0.995,0.897,0.916,1.049,1.034,0.971,1.0,0.943,1.061,1.005,0.86,1.116,0.871 +NM_000502,1.042,1.033,0.975,0.904,0.999,0.978,0.969,0.99,1.005,0.926,0.962,1.062,0.901,1.2,1.128,0.975,1.003,0.916,0.988,0.966,1.02,1.019,0.996,1.206,1.07,1.034,0.861,1.018,1.293,0.972,1.006,0.842,1.123,1.048,1.082,0.999,0.898,1.053,1.05,1.06,1.002,1.005,1.019,0.781,1.08,0.994,0.907,0.932,1.096,0.901,0.927,1.016,1.133,0.992 +NM_000503,0.88,1.007,1.084,1.081,1.071,0.927,0.99,0.882,1.076,0.937,1.184,1.044,1.058,0.788,1.092,0.974,1.044,1.066,0.968,1.012,1.039,1.146,0.887,1.008,0.949,0.928,1.024,0.859,1.002,0.968,0.993,0.928,1.058,0.992,0.988,0.942,0.955,0.861,1.177,0.958,0.911,0.991,0.948,0.928,1.001,1.007,0.967,1.051,1.012,1.077,1.05,0.886,0.917,0.978 +NM_000504,0.936,0.941,0.899,0.883,0.936,1.025,0.863,0.99,0.937,0.864,1.21,0.909,0.935,0.812,0.877,1.003,0.917,0.925,0.815,1.0,0.998,0.996,1.008,0.912,1.001,0.844,0.903,0.849,0.759,1.141,1.0,1.701,1.078,1.714,0.856,0.971,1.13,0.984,1.056,1.202,0.987,1.197,0.993,1.101,1.019,1.121,1.197,0.849,0.865,0.833,1.176,0.881,0.93,0.869 +NM_000505,0.919,0.635,1.907,0.585,1.552,0.552,0.45,0.902,1.371,2.105,0.693,1.462,1.037,0.835,0.982,1.457,1.287,1.229,1.791,0.611,0.974,1.118,1.16,1.708,0.281,1.437,1.681,1.148,0.416,0.679,1.356,0.619,1.707,0.529,0.272,0.565,0.787,1.96,1.271,1.314,1.863,0.705,0.672,0.937,1.81,0.678,2.024,1.238,0.968,1.296,0.888,0.661,1.716,1.589 +NM_000506,0.993,0.972,1.018,1.048,0.934,0.892,1.133,1.032,0.908,1.014,1.025,0.79,0.877,1.037,0.958,0.984,0.97,1.164,0.79,1.057,1.09,0.982,1.066,0.945,1.015,0.84,0.822,0.95,1.393,0.857,0.941,1.018,0.994,1.011,0.979,0.892,1.107,0.932,1.055,1.034,0.771,1.096,0.96,0.936,1.047,0.843,1.074,1.002,1.066,1.032,1.067,1.065,1.041,1.136 +NM_000507,0.109,1.474,0.124,0.886,0.105,2.718,1.094,0.0816,0.143,0.0922,2.568,0.0876,0.113,0.191,1.044,2.35,0.167,0.887,0.0913,2.796,0.104,0.0802,3.299,0.118,1.034,0.149,0.14,0.19,0.859,3.301,0.259,2.388,0.55,3.288,0.122,1.18,4.004,0.106,1.081,0.459,0.132,2.018,2.081,1.192,0.11,2.858,0.632,0.11,1.939,0.0937,1.447,1.007,0.127,0.993 +NM_000508,1.067,0.979,0.935,0.914,0.99,1.184,1.133,1.138,0.939,0.903,1.031,0.959,1.086,0.887,0.947,1.028,1.022,0.876,1.055,0.915,1.1,0.961,0.969,0.951,1.211,1.06,1.03,1.005,0.812,0.948,1.283,0.831,0.985,1.102,0.992,1.053,1.257,1.094,1.03,1.061,1.124,0.942,1.038,0.921,0.934,0.982,0.972,0.989,1.023,0.947,1.002,0.989,0.953,0.944 +NM_000509,2.186,3.4610000000000003,1.8290000000000002,1.9100000000000001,1.936,2.142,1.964,1.9900000000000002,2.199,2.1399999999999997,1.956,2.058,1.875,1.9979999999999998,1.956,1.9929999999999999,1.964,1.8980000000000001,2.07,2.084,1.862,1.943,2.138,2.044,3.0949999999999998,2.118,1.859,2.02,1.888,2.309,1.8889999999999998,2.061,1.99,3.893,2.042,2.082,2.054,1.9289999999999998,1.8860000000000001,2.004,2.0069999999999997,2.049,2.521,2.0549999999999997,2.0220000000000002,2.0869999999999997,2.028,1.948,1.9849999999999999,1.9289999999999998,1.9369999999999998,1.8820000000000001,1.9629999999999999,1.907 +NM_000510,1.023,0.944,1.047,0.921,1.075,1.102,0.796,1.023,1.063,1.056,0.946,1.064,1.004,1.034,1.005,1.008,1.034,1.025,0.953,0.914,1.031,1.117,1.012,0.956,1.092,0.942,0.956,1.066,0.845,0.972,1.064,1.036,1.028,0.945,0.969,1.018,0.989,0.941,1.043,0.908,1.117,1.063,0.915,1.049,1.192,1.025,1.222,1.018,0.879,1.009,0.91,0.985,1.004,0.935 +NM_000511,0.947,0.957,1.198,0.975,1.018,1.419,0.762,0.783,0.86,0.718,1.064,0.685,0.742,0.934,0.929,1.299,1.423,1.197,1.11,0.875,0.872,0.927,1.286,0.911,1.103,1.012,0.972,0.814,0.841,1.464,0.734,0.918,0.87,1.367,0.94,0.9,1.055,1.012,1.267,0.699,1.278,1.296,0.895,1.022,1.003,1.109,0.984,0.759,1.086,0.966,0.999,0.812,0.928,1.099 +NM_000513,0.924,0.861,1.118,1.131,0.939,0.908,0.875,1.062,1.173,0.947,1.059,0.882,0.914,1.246,1.012,1.271,1.021,0.982,0.925,1.074,1.05,0.965,1.026,0.942,0.826,1.054,1.016,1.115,0.872,1.017,0.958,1.019,0.978,1.001,1.115,1.152,0.978,1.014,0.706,0.857,0.98,0.866,0.902,0.87,1.001,0.942,1.07,1.286,1.094,1.05,1.035,1.01,1.014,1.068 +NM_000514,0.977,0.956,0.975,0.962,1.08,0.952,1.133,1.088,0.989,0.888,0.865,1.072,0.907,0.859,1.024,1.001,0.969,0.852,0.987,1.083,1.016,1.01,0.968,1.09,0.965,1.199,1.102,1.09,0.86,1.168,1.027,1.091,1.01,0.973,0.994,1.016,0.986,0.931,0.96,1.094,1.028,0.927,1.397,1.032,1.053,1.155,0.967,0.963,1.126,1.013,0.948,0.981,0.973,0.986 +NM_000517,0.429,0.468,0.258,9.686,2.691,2.54,0.647,10.96,1.25,0.14,0.533,1.731,0.512,0.391,1.166,1.91,0.209,0.445,0.532,1.852,0.566,0.43,0.513,0.368,1.009,0.815,0.356,1.743,0.227,1.865,1.944,3.477,0.901,3.054,0.859,0.743,4.485,0.54,3.574,3.652,1.247,1.086,0.799,0.773,0.586,0.439,3.284,0.845,0.406,0.611,3.018,9.953,0.592,0.269 +NM_000518,0.33,0.434,0.246,4.439,2.961,2.777,0.782,6.243,1.096,0.105,0.393,1.674,0.386,0.369,0.961,1.498,0.125,0.594,0.651,2.042,0.386,0.489,0.59,0.436,0.884,0.625,0.468,1.896,0.275,2.468,1.571,3.368,0.407,2.834,0.674,0.828,3.496,0.606,3.337,3.466,1.195,1.599,0.974,0.36,0.459,0.647,3.643,0.709,0.979,0.481,3.612,5.494,0.443,0.111 +NM_000519,0.505,0.567,0.597,4.395,2.801,3.641,1.257,11.78,1.045,0.402,0.487,1.712,0.79,0.453,1.015,1.869,0.447,0.797,0.407,1.996,0.467,0.949,0.706,0.712,0.928,0.467,0.714,1.32,0.69,2.002,1.93,4.502,0.715,1.921,0.693,0.424,2.79,0.987,5.731,3.878,1.03,1.441,0.9,0.413,0.775,0.67,3.809,0.909,1.18,0.766,4.163,5.84,0.42,0.433 +NM_000520,0.938,0.966,1.136,0.974,0.962,1.071,0.922,0.936,1.352,1.19,1.034,1.074,0.904,0.889,1.212,0.937,1.139,1.237,0.803,0.877,1.055,0.852,1.0,1.045,0.899,1.04,0.989,1.019,1.229,1.166,1.1,0.974,1.168,0.921,1.004,1.022,0.905,0.89,1.075,0.939,0.983,1.193,1.066,0.978,1.174,0.865,1.179,0.863,1.208,1.005,0.895,0.896,0.892,0.944 +NM_000521,0.257,1.237,0.582,0.718,0.382,1.766,0.667,0.196,0.503,0.395,2.15,0.331,0.263,0.291,1.09,2.737,0.372,0.905,0.613,1.58,0.256,0.328,1.982,0.485,0.578,0.306,0.754,0.371,0.549,2.72,0.422,1.603,1.394,2.431,0.136,0.744,2.249,0.467,1.869,0.65,0.538,2.032,0.894,0.964,0.432,1.876,0.956,0.276,1.256,0.349,1.65,0.768,0.623,1.511 +NM_000522,0.982,1.157,0.871,0.905,0.97,2.08,0.713,0.937,0.858,0.847,3.124,0.985,0.915,0.793,1.751,2.57,1.011,0.891,0.901,2.19,0.889,0.958,5.278,0.9,0.901,0.861,0.969,0.837,0.881,1.159,0.889,0.929,2.142,0.918,0.889,1.608,2.194,0.965,1.461,1.374,0.824,2.543,1.666,2.033,0.922,3.603,1.718,0.892,2.756,0.869,2.716,1.436,0.957,1.71 +NM_000523,0.901,1.072,1.052,1.068,1.057,1.033,1.08,1.141,0.886,1.043,0.992,1.025,1.005,1.105,0.91,1.071,1.028,1.01,0.942,1.086,1.13,0.896,0.895,1.033,0.98,0.942,0.983,0.932,1.022,0.984,0.84,0.979,0.97,0.857,1.017,1.08,1.035,0.969,1.108,1.075,1.016,0.838,1.133,0.911,1.029,0.951,0.848,0.922,1.043,1.068,1.029,0.934,1.109,1.039 +NM_000524,0.994,1.013,0.904,1.061,1.109,1.018,1.086,0.872,1.065,0.891,0.927,1.083,1.024,1.141,1.113,1.105,0.894,0.965,1.137,0.897,0.795,1.105,0.99,1.169,1.087,1.055,0.808,0.974,0.88,0.914,0.96,1.175,1.153,1.08,0.854,0.916,1.033,0.962,0.945,0.969,1.047,1.026,1.053,0.976,1.115,1.072,1.116,0.884,0.952,0.926,1.094,0.908,0.907,0.928 +NM_000525,0.985,1.078,1.135,0.955,0.988,0.94,0.763,1.104,0.995,0.936,0.881,1.013,0.963,0.895,0.886,0.94,1.02,1.003,0.931,0.96,1.145,1.064,0.88,1.018,1.052,1.027,0.924,0.994,1.212,1.03,1.033,1.013,1.018,0.93,0.924,0.989,1.009,1.012,0.946,1.088,0.955,1.134,0.997,0.882,1.025,0.868,0.992,0.963,0.856,0.993,1.0,0.862,1.13,0.862 +NM_000526,1.277,0.197,10.18,1.3,5.167,0.168,0.171,1.119,1.015,15.52,0.159,7.434,1.107,0.632,0.963,4.809,6.13,8.025,3.327,0.18,4.063,0.749,0.166,7.486,0.158,0.985,13.5,1.396,0.218,0.316,1.507,0.165,11.59,0.17,0.961,0.202,0.162,5.543,0.31,0.182,3.561,0.724,0.177,0.192,7.754,0.163,10.87,2.547,0.54,14.86,3.021,11.88,18.78,5.064 +NM_000527,0.53,1.349,1.006,1.064,0.964,0.996,0.986,0.289,0.759,1.042,0.805,0.516,0.267,0.612,0.582,1.227,0.59,1.582,0.822,1.613,0.246,0.912,2.205,0.52,0.735,0.614,1.004,0.551,0.602,2.131,0.614,1.149,1.451,1.829,0.525,1.635,1.55,0.578,1.777,1.118,0.63,1.004,1.678,1.429,0.673,3.043,1.064,0.837,1.403,0.538,1.894,1.306,1.358,2.228 +NM_000528,0.861,1.297,0.96,0.87,0.861,1.296,0.783,0.856,0.881,1.024,1.002,0.906,0.897,0.666,0.807,1.226,0.92,0.877,0.899,1.145,0.777,0.879,1.419,0.924,1.032,0.928,1.015,0.869,0.963,1.123,0.821,1.331,0.869,1.3,0.745,0.954,0.93,0.944,1.442,1.333,0.928,1.383,0.712,0.993,0.954,0.981,0.788,1.121,0.808,1.006,1.005,0.919,0.971,1.102 +NM_000529,1.161,1.248,1.13,0.972,0.984,1.008,1.012,0.848,0.973,0.949,0.908,0.896,0.917,0.883,0.99,1.18,1.102,1.097,1.257,0.99,0.917,1.105,0.945,1.015,1.055,1.029,0.939,1.076,1.017,1.02,0.968,0.945,1.042,0.845,1.074,1.011,1.001,0.95,1.01,1.02,1.061,1.009,1.026,0.999,0.888,1.013,1.037,0.998,0.967,1.063,0.884,1.096,0.92,0.914 +NM_000530,1.053,1.133,1.005,0.767,1.18,0.958,0.816,0.806,1.066,1.018,0.89,1.095,1.158,0.88,0.951,0.89,0.985,0.916,1.014,1.088,0.973,0.933,1.125,1.061,0.763,1.106,1.026,1.085,1.05,1.058,0.977,0.845,0.974,1.063,1.095,1.027,0.88,1.127,1.026,0.933,0.972,0.955,0.772,1.018,1.085,0.998,1.04,1.123,0.951,1.153,0.909,1.007,0.989,0.968 +NM_000531,0.986,0.922,0.843,2.123,0.918,5.841,1.028,0.873,0.847,0.843,11.41,0.822,0.841,0.962,2.939,24.92,0.813,1.006,0.977,4.343,1.049,0.995,4.479,0.924,0.914,0.864,0.904,0.869,1.099,1.753,0.849,0.794,0.882,1.378,0.973,0.887,17.76,1.087,1.274,0.85,0.859,7.272,13.61,0.822,0.9,5.609,3.226,0.832,4.518,0.941,8.565,1.004,0.898,0.903 +NM_000532,0.733,1.008,0.94,0.729,0.916,1.277,0.698,0.376,1.108,1.036,1.307,0.83,0.657,0.587,0.906,1.685,0.791,0.968,1.523,1.003,0.451,0.946,1.321,1.128,0.681,1.022,1.132,0.759,0.467,1.474,0.686,0.93,1.397,1.194,0.155,0.623,1.332,0.707,1.466,0.311,1.108,1.145,1.03,1.659,1.032,1.34,0.911,0.722,1.242,0.863,1.229,0.587,1.143,1.55 +NM_000533,1.071,1.061,1.006,1.062,1.014,1.098,0.886,1.025,1.067,0.959,1.01,1.068,0.923,1.044,1.047,1.272,0.932,1.077,0.863,1.035,0.941,1.021,1.428,0.983,1.129,0.975,0.943,0.988,0.68,1.509,1.046,1.0,1.039,1.49,0.991,1.078,1.056,0.885,0.865,0.989,1.113,1.204,0.92,0.838,0.892,1.123,0.94,0.927,1.114,0.973,0.919,1.014,0.966,1.041 +NM_000534,0.937,1.08,1.068,0.921,0.944,1.006,0.871,0.91,1.155,1.01,0.915,1.037,0.91,0.928,0.929,1.15,0.969,0.988,1.226,1.048,0.778,1.017,1.25,0.996,0.973,0.972,1.126,1.038,0.883,1.017,0.976,1.046,1.726,0.969,0.815,0.825,0.936,0.879,1.185,1.013,0.939,1.224,0.814,1.374,0.94,0.909,1.034,0.954,0.968,0.865,0.981,0.905,0.943,1.849 +NM_000535,0.973,0.941,1.009,0.936,1.12,0.968,1.041,1.037,1.166,0.934,0.984,0.953,0.839,0.932,1.046,1.01,0.971,0.923,1.143,1.12,0.801,0.913,1.161,0.955,0.792,0.849,1.108,0.938,1.431,1.191,1.038,1.11,1.475,0.909,0.749,0.955,0.895,0.985,1.136,0.97,0.96,0.929,0.817,1.319,0.862,0.921,0.968,0.823,0.739,0.93,0.852,0.92,0.924,1.344 +NM_000536,1.119,1.062,1.001,1.073,1.067,0.942,1.303,0.931,0.832,1.017,1.057,1.015,1.103,1.12,1.269,1.046,0.952,1.052,0.962,0.988,0.981,0.929,0.894,1.041,1.043,0.947,0.802,1.165,1.39,1.075,0.959,0.944,1.054,0.838,0.948,1.144,0.946,0.922,0.921,0.925,0.983,0.812,0.997,0.99,0.918,1.039,1.262,1.001,1.09,1.08,1.05,1.087,0.95,0.969 +NM_000537,1.033,0.956,1.003,1.13,1.225,1.034,0.923,0.925,1.086,1.033,0.975,0.991,0.945,0.917,0.946,1.019,0.982,0.866,1.111,0.954,1.234,0.822,0.893,0.909,0.969,1.042,0.935,0.977,1.1,0.978,0.991,1.032,1.022,1.01,0.919,0.855,1.036,1.036,1.06,1.251,0.971,0.94,0.887,0.931,1.046,1.042,1.034,1.036,1.052,0.946,0.972,0.911,0.855,1.019 +NM_000538,1.156,1.05,1.031,1.168,1.191,0.991,1.103,1.025,0.969,1.081,1.059,0.92,1.048,0.978,1.0,1.244,1.087,0.97,1.034,1.141,1.04,1.133,0.891,1.088,0.954,1.096,1.004,1.023,1.113,1.004,1.081,0.939,1.071,0.845,0.959,0.992,1.0,0.825,0.956,0.993,0.945,0.916,1.005,1.003,1.03,0.988,0.913,1.012,1.016,1.001,0.946,0.997,1.08,1.094 +NM_000539,1.005,0.912,1.043,1.035,0.93,0.995,0.906,0.95,0.96,0.92,0.978,1.14,0.874,1.277,0.904,0.955,1.069,1.095,1.024,1.032,1.1,0.973,1.018,0.987,0.907,0.92,1.108,1.16,1.184,1.04,0.951,1.068,0.978,0.999,1.108,1.037,0.966,0.871,0.983,1.101,1.097,1.0,1.111,1.042,1.136,0.992,0.952,1.197,0.94,1.143,1.0,1.071,1.073,1.015 +NM_000540,1.211,0.955,1.246,1.115,1.156,0.834,1.081,1.078,1.19,1.249,0.945,1.111,1.125,1.005,0.82,1.025,1.01,1.151,1.073,0.933,1.012,0.995,0.707,1.229,0.804,1.142,0.999,1.156,0.826,0.855,1.375,1.066,1.371,0.883,1.084,0.959,0.797,1.068,0.977,0.823,1.06,0.967,1.154,0.863,1.391,0.769,1.005,1.305,0.899,1.054,0.868,1.117,1.141,0.948 +NM_000541,1.072,1.315,0.915,0.926,0.994,0.963,1.023,0.951,0.978,1.04,0.85,0.87,1.0,0.839,1.033,1.131,0.886,0.868,0.917,1.038,0.931,1.021,1.094,1.023,1.122,1.012,0.893,0.955,0.887,1.048,0.89,0.966,1.121,0.935,0.942,1.096,1.131,1.153,0.963,0.982,0.906,0.944,1.144,1.041,0.913,1.06,0.921,1.023,1.073,1.064,1.021,0.999,1.117,0.944 +NM_000542,0.975,0.926,0.914,1.085,0.95,1.013,1.162,1.165,0.876,0.983,1.021,1.002,0.932,1.043,0.975,0.909,0.938,1.014,1.062,1.142,1.002,0.979,1.031,1.034,1.012,0.848,0.91,0.989,1.312,1.069,1.054,3.78,1.026,2.014,0.912,0.948,1.004,0.988,0.931,0.889,1.011,1.052,1.163,1.036,1.052,1.017,0.955,0.976,1.009,1.042,1.008,0.936,0.919,1.025 +NM_000543,1.133,0.82,1.057,0.966,1.07,1.036,0.91,0.792,1.421,1.005,1.044,0.61,0.734,0.696,1.124,1.365,0.978,1.083,1.35,0.826,0.862,1.151,1.097,0.865,0.795,1.15,1.049,0.874,0.825,1.093,1.306,1.454,0.77,1.144,1.295,0.656,0.977,1.255,1.564,0.885,1.094,1.486,0.929,0.767,1.086,0.996,0.84,1.066,1.006,1.26,0.924,0.659,0.763,0.84 +NM_000545,0.693,0.923,0.676,1.042,0.711,1.11,0.796,0.716,0.723,0.76,1.283,0.758,0.75,0.57,1.079,1.605,0.81,0.798,0.672,1.103,0.787,0.728,1.395,0.839,1.003,0.616,0.764,0.787,0.808,0.974,0.777,0.856,1.721,1.282,0.748,1.392,1.225,0.782,1.426,1.336,0.653,1.135,0.77,1.583,0.84,1.07,0.977,0.744,1.152,0.578,1.066,0.843,0.814,1.225 +NM_000548,1.1,1.162,1.006,1.013,1.022,1.071,0.998,0.832,1.048,0.974,1.028,0.986,0.987,1.122,1.176,1.258,0.939,1.01,0.933,0.952,1.183,1.108,0.942,1.094,1.051,1.063,1.021,0.94,1.306,0.928,0.891,0.994,1.084,0.935,1.069,0.948,0.965,0.996,0.956,1.142,0.994,1.119,1.16,1.034,1.108,0.955,0.896,1.019,1.095,1.016,1.049,0.86,0.965,1.02 +NM_000550,0.937,1.113,1.072,1.156,0.923,1.294,1.021,0.958,1.018,0.839,1.916,0.844,0.831,1.21,1.268,1.248,0.812,0.969,0.913,1.119,1.087,0.926,2.003,0.777,0.867,0.925,0.793,0.965,0.841,1.613,0.837,1.218,1.094,2.393,0.915,1.017,0.744,1.238,1.128,0.962,1.128,1.844,1.061,0.836,0.844,0.823,0.885,0.732,0.868,0.915,1.835,1.065,2.69,0.912 +NM_000551,1.083,0.938,1.0,1.046,1.138,0.843,1.059,1.071,0.94,0.921,1.096,0.957,0.964,0.988,0.909,0.943,1.037,1.032,1.014,0.966,1.025,0.971,1.035,0.976,0.982,0.927,1.028,0.977,0.914,0.98,1.075,0.905,0.973,0.987,0.972,1.013,1.149,0.998,1.048,1.078,0.992,1.105,1.2,0.946,1.012,0.995,0.915,1.019,0.95,1.259,1.01,0.989,0.988,1.065 +NM_000553,0.816,0.946,1.019,0.952,0.847,0.951,0.903,0.766,1.249,0.913,0.978,0.883,0.767,0.801,1.097,0.911,0.875,0.931,0.862,1.038,0.665,0.891,1.29,1.076,0.924,0.794,1.073,0.885,0.932,1.103,0.862,1.105,1.629,1.175,0.652,0.884,1.121,0.868,1.141,0.727,0.968,1.011,0.932,1.035,1.039,1.499,0.855,0.785,1.129,0.879,1.067,0.861,0.964,2.084 +NM_000554,1.059,1.046,0.961,1.066,1.005,1.145,1.071,0.773,0.957,0.873,1.078,1.097,0.968,1.222,1.107,1.061,0.988,0.917,0.929,0.962,0.883,0.974,0.918,1.072,1.086,0.927,0.947,1.136,1.084,0.912,1.051,0.957,1.057,0.957,1.054,0.937,0.992,0.938,1.121,0.998,1.056,0.976,0.849,0.867,0.972,0.967,0.939,0.954,0.931,1.052,1.009,1.075,1.027,1.181 +NM_000555,0.984,1.158,0.993,1.085,0.953,0.944,1.058,0.938,0.95,0.897,0.868,1.055,1.13,1.13,1.111,1.007,0.959,0.858,1.068,1.038,1.111,0.844,0.878,1.035,1.184,1.026,0.865,1.117,0.936,1.096,0.943,1.086,1.076,1.058,0.939,1.029,1.017,0.952,1.001,1.037,0.933,1.051,1.044,0.981,1.116,0.963,0.907,0.953,1.09,0.915,0.907,0.965,1.052,0.904 +NM_000557,1.101,0.955,0.929,1.103,1.188,0.912,0.946,0.909,1.005,0.932,0.819,0.972,0.979,1.135,1.0,0.855,1.099,1.119,1.041,0.986,1.053,0.999,1.054,0.998,1.078,0.981,1.121,1.129,1.9,0.938,0.948,1.241,0.863,0.938,0.906,1.043,0.957,1.026,1.224,1.081,1.03,0.984,0.987,1.207,0.908,1.066,1.081,1.102,0.888,0.932,0.976,1.024,1.151,0.823 +NM_000558,0.505,0.411,0.346,11.46,2.212,3.039,0.707,16.56,1.132,0.221,0.611,1.528,0.465,0.469,1.448,1.801,0.244,0.459,0.902,1.814,0.853,0.456,0.594,0.459,1.067,0.731,0.389,1.286,0.294,2.172,2.571,3.115,1.095,3.466,0.754,0.788,3.193,0.574,4.834,3.569,1.157,1.157,0.818,0.732,0.519,0.431,2.614,0.888,0.698,0.564,3.274,11.04,0.786,0.291 +NM_000559,1.031,1.027,0.934,10.22,0.989,1.355,1.102,4.095,0.853,0.657,0.963,1.031,1.038,1.116,1.019,1.032,0.927,0.996,1.008,0.845,0.862,1.009,0.912,0.992,0.885,0.81,0.865,0.934,1.004,1.309,1.184,0.944,0.7,0.938,1.093,1.176,1.49,0.786,0.956,1.127,1.193,1.474,0.756,0.827,1.072,1.012,1.599,0.719,0.735,0.848,1.046,1.069,1.152,0.915 +NM_000560,0.716,1.035,1.383,1.351,0.828,0.901,1.446,0.588,0.932,0.832,0.734,0.765,0.914,0.677,0.933,0.684,0.885,0.851,0.82,0.721,0.694,0.779,1.103,0.854,0.92,0.715,1.737,0.889,0.498,1.332,0.627,2.081,1.025,1.136,0.52,0.68,1.162,0.686,1.98,4.65,1.007,1.858,0.715,1.108,1.118,0.75,0.807,0.627,0.652,0.878,0.958,2.475,1.427,2.782 +NM_000561,1.695,0.717,1.69,1.577,0.834,1.073,0.907,0.913,1.466,0.788,1.189,0.89,0.767,1.032,1.453,1.631,0.707,2.194,3.412,0.745,4.397,0.797,1.013,1.86,0.781,0.915,0.714,0.715,0.86,0.858,1.408,0.734,2.013,1.072,0.642,0.774,0.987,0.843,0.957,0.635,0.826,0.902,1.089,1.488,0.698,1.125,1.058,0.64,1.04,0.792,0.721,0.847,1.232,1.258 +NM_000562,1.154,0.894,1.059,0.959,0.851,0.941,0.882,0.992,1.063,1.087,1.109,1.041,1.023,1.037,0.777,0.823,1.079,0.945,0.864,0.973,1.129,0.974,1.149,1.139,1.055,0.847,1.0,0.957,1.034,0.918,1.093,0.929,1.059,0.991,1.337,0.964,0.872,1.16,1.033,1.05,1.113,1.141,1.005,0.967,0.948,1.043,1.176,1.022,0.873,1.097,0.957,0.999,0.882,0.974 +NM_000565,0.931,1.014,1.007,1.087,1.144,0.908,0.861,1.101,0.869,1.061,0.9,1.034,1.058,1.042,1.02,1.03,0.994,1.073,1.021,0.943,0.832,0.997,0.822,0.961,0.894,0.988,0.973,0.954,1.725,0.959,0.965,0.916,1.011,1.018,1.06,0.927,1.137,1.044,1.124,1.0,0.912,0.976,0.903,1.001,0.918,0.982,0.896,1.025,1.01,0.876,1.029,0.86,0.972,0.88 +NM_000566,0.998,1.059,1.15,1.143,0.849,1.153,1.112,1.111,0.947,0.945,1.008,0.913,0.944,1.29,1.087,0.885,0.946,1.002,0.988,1.214,0.835,1.081,0.934,1.083,1.099,1.028,1.227,0.967,1.117,1.098,1.059,0.934,0.87,1.319,0.958,0.703,0.958,1.039,0.969,1.044,0.975,1.006,1.026,0.826,0.974,1.266,1.063,1.0,1.012,1.0,1.179,0.84,1.013,1.082 +NM_000567,1.157,0.837,0.995,0.909,0.942,0.916,0.831,0.995,1.008,0.913,0.955,1.23,1.009,1.009,0.95,1.075,1.107,0.974,1.053,0.929,1.035,0.934,0.898,1.054,0.999,1.169,1.114,1.134,1.112,0.856,1.005,1.05,0.952,0.951,1.036,0.903,0.96,0.958,1.099,0.986,0.956,0.91,1.057,0.95,1.051,0.9,1.028,0.95,0.934,0.908,1.104,1.023,1.271,0.922 +NM_000569,0.48,1.23,0.836,1.724,0.701,1.031,0.889,0.608,0.67,0.624,1.027,0.572,0.547,0.568,0.725,1.255,0.535,0.505,0.55,0.736,0.519,0.583,1.976,0.709,0.675,0.587,1.204,0.703,0.409,1.184,0.527,5.438,2.133,1.021,0.623,0.787,0.763,0.551,3.34,15.73,0.537,2.929,0.94,1.68,1.026,1.008,1.291,0.582,1.067,0.624,1.141,6.338,0.992,6.061 +NM_000570,0.967,0.984,0.975,1.011,0.992,0.927,0.959,0.897,1.034,0.937,0.849,0.992,0.823,0.9,0.856,0.933,0.984,1.056,1.105,0.984,1.037,1.074,1.084,0.979,0.942,0.936,1.043,0.961,0.806,0.915,1.127,1.131,0.882,0.993,1.038,0.947,1.001,1.014,1.211,2.516,0.975,1.155,1.044,1.037,0.976,1.049,1.008,0.964,1.022,1.009,0.999,1.301,0.929,1.184 +NM_000572,0.987,1.038,0.988,1.102,1.091,1.147,1.031,1.178,0.982,0.983,1.061,1.031,0.991,0.937,0.889,1.048,0.95,1.098,0.971,0.957,0.803,1.07,0.852,1.113,0.976,0.982,0.881,0.871,0.976,0.951,1.047,1.065,1.009,1.1,1.07,1.007,0.822,0.848,1.121,1.046,1.08,1.086,1.097,1.03,1.08,0.97,1.104,1.028,1.062,1.155,0.984,1.084,0.938,1.197 +NM_000574,0.446,0.811,1.033,0.731,0.567,0.805,0.382,0.906,0.818,0.442,0.721,0.519,0.536,0.534,2.104,2.334,1.067,0.383,0.998,1.007,0.352,0.749,1.222,0.799,0.308,0.486,1.27,0.484,0.253,0.579,0.958,6.02,2.2,0.701,0.324,2.523,0.449,0.657,2.084,1.361,0.8,1.002,4.617,2.24,0.601,4.789,2.279,0.649,4.076,1.41,0.859,2.997,1.018,3.795 +NM_000575,3.376,0.601,0.851,1.28,6.391,0.626,0.616,7.859,8.656,3.331,0.527,1.786,3.53,1.572,1.349,0.999,1.951,1.033,1.984,0.649,0.837,6.156,0.656,1.008,0.661,2.983,2.04,1.895,0.383,0.554,16.43,0.676,3.731,0.628,12.14,0.573,0.729,2.772,1.234,3.282,1.152,0.599,0.575,0.605,1.959,0.713,3.185,6.603,0.613,1.428,0.715,2.86,1.149,0.741 +NM_000576,0.586,1.334,0.767,4.005,0.633,1.652,0.978,0.59,0.681,1.183,0.613,0.817,0.603,0.529,0.818,0.704,0.663,0.732,0.681,0.565,0.671,0.622,0.776,0.713,0.812,0.502,0.915,0.618,0.779,1.374,0.581,3.151,4.045,1.297,0.646,0.612,1.257,0.622,12.23,63.86,0.894,3.422,4.429,2.281,3.848,3.459,2.057,0.577,1.572,1.022,0.833,12.89,1.765,1.737 +NM_000578,1.058,1.133,1.004,0.983,0.853,1.229,1.187,0.984,1.024,0.965,1.024,1.055,1.004,1.067,1.068,0.997,0.961,1.017,0.822,0.964,0.982,0.808,1.076,0.976,0.928,0.838,1.065,0.859,1.596,0.976,0.868,1.039,0.757,0.961,0.952,0.912,0.837,1.096,0.989,1.076,1.077,0.952,0.955,0.974,1.052,1.011,0.963,1.012,0.956,0.966,1.0,1.007,1.238,0.895 +NM_000579,0.811,0.989,1.652,0.877,0.898,1.074,1.013,0.875,0.964,0.919,0.873,0.849,0.829,1.0,0.926,0.959,1.144,0.783,0.955,0.883,0.786,1.012,1.061,1.011,0.952,0.695,1.662,0.745,0.834,1.341,0.958,1.303,0.907,1.308,0.864,0.692,1.127,0.885,1.017,0.893,1.067,1.261,0.744,0.825,0.944,0.82,0.891,0.782,0.955,0.878,0.925,1.128,1.295,1.974 +NM_000582,0.984,1.029,1.026,0.977,0.899,0.834,0.872,0.953,0.878,1.003,0.989,0.946,0.836,1.298,1.096,1.099,0.932,1.098,0.869,1.098,0.917,0.873,1.22,1.063,0.942,0.971,0.835,0.804,0.881,1.003,0.992,24.11,2.461,0.889,1.067,1.116,0.974,0.939,0.899,17.05,0.865,1.175,1.076,0.964,0.995,0.882,1.774,0.97,0.901,1.048,1.025,7.198,0.948,1.242 +NM_000583,0.909,5.216,0.814,1.49,0.993,1.228,2.08,0.923,0.941,0.791,1.104,0.846,0.936,0.863,1.181,0.965,0.918,0.918,0.97,2.18,1.007,0.992,0.973,0.882,5.025,0.923,1.078,0.854,1.303,1.047,0.908,1.166,0.807,15.06,1.001,1.028,3.596,0.97,0.979,0.899,0.88,1.236,2.155,0.84,0.989,1.001,0.999,0.962,1.154,0.962,1.131,0.87,0.999,1.063 +NM_000584,0.651,2.839,0.966,4.901,0.81,0.809,0.733,0.768,0.645,1.025,0.61,1.284,0.715,0.596,0.629,0.918,0.837,0.89,1.541,0.829,0.518,1.506,0.624,0.611,0.559,0.533,7.954,0.844,0.535,0.799,0.565,16.94,13.11,0.975,0.935,1.663,1.922,0.489,13.03,135.7,0.588,4.347,1.555,6.964,15.88,1.049,15.6,0.567,1.35,1.88,2.142,32.6,1.596,5.083 +NM_000585,0.776,1.069,0.874,1.045,0.918,1.447,1.135,0.762,0.99,0.759,1.478,0.86,0.836,0.946,1.325,1.089,0.893,0.919,0.789,1.255,1.007,0.935,1.265,0.826,1.022,0.801,0.809,0.961,0.717,1.163,0.721,1.032,1.261,1.184,0.766,0.959,1.322,0.905,1.301,1.048,0.813,1.164,0.945,1.01,0.768,1.537,0.969,0.792,1.257,0.934,1.386,0.855,0.86,1.089 +NM_000586,1.085,1.02,1.231,1.092,0.932,0.978,1.186,1.002,0.94,1.053,0.957,1.083,0.959,0.95,1.026,1.044,1.037,1.027,1.014,1.102,1.172,0.882,0.952,1.024,1.093,0.858,0.998,0.929,1.137,1.098,0.99,1.048,1.057,0.918,1.139,0.82,1.091,1.117,0.94,0.901,0.956,0.988,0.944,1.117,0.923,1.113,0.89,0.945,0.864,0.927,0.99,1.125,1.077,0.96 +NM_000587,0.911,1.3,0.967,1.296,0.916,0.94,1.402,1.037,0.923,0.898,0.876,1.069,1.007,0.836,0.883,1.203,0.941,1.047,0.73,1.054,1.275,0.909,1.142,1.106,1.002,0.895,0.82,1.492,1.057,1.125,0.87,1.28,1.262,2.499,0.927,0.834,0.965,1.557,0.993,0.947,2.032,7.001,1.287,1.002,0.878,0.996,0.83,0.91,0.92,1.091,0.835,0.822,0.997,0.944 +NM_000588,1.0,0.958,0.907,1.05,0.949,1.02,1.047,1.005,0.908,1.225,1.036,1.067,1.041,1.047,0.937,0.934,0.979,0.962,1.024,0.91,1.003,0.936,0.969,1.037,1.01,1.009,1.111,1.118,0.813,1.101,1.014,0.861,1.017,0.993,1.066,1.05,0.952,0.974,0.95,0.847,1.057,0.824,0.872,0.898,1.048,0.9,1.01,1.025,1.066,1.189,1.02,0.943,1.089,0.884 +NM_000590,1.09,0.995,0.948,0.913,0.944,1.097,1.035,0.932,0.828,0.949,0.891,0.859,1.107,1.168,0.973,0.931,1.158,1.156,0.907,0.851,0.968,0.994,0.875,0.926,0.892,0.984,1.041,1.017,1.586,0.985,1.084,0.881,1.143,1.01,1.084,0.934,1.1,0.811,0.904,1.038,0.877,1.149,1.058,0.952,1.003,1.044,1.006,1.037,0.906,0.998,0.972,1.03,1.027,1.037 +NM_000591,0.763,1.185,0.944,1.165,0.818,0.924,0.76,0.57,0.827,0.853,0.871,0.596,0.664,0.685,0.785,0.897,0.882,0.733,0.877,0.701,0.672,0.63,1.205,0.895,0.993,0.736,1.172,0.63,0.548,1.38,0.689,2.654,1.319,1.595,0.594,0.721,0.788,0.902,2.36,3.619,1.022,1.549,0.821,1.386,0.746,0.768,0.893,0.61,0.645,0.909,1.037,2.608,1.101,2.077 +NM_000592,0.986,0.976,0.867,0.866,1.037,1.082,0.985,1.003,0.985,0.926,0.896,1.036,0.895,0.933,1.182,0.878,0.83,1.049,0.981,1.106,1.031,0.858,0.999,0.964,0.811,1.058,1.032,0.988,1.156,0.999,0.998,1.215,1.117,1.043,0.937,0.829,1.169,0.865,1.041,1.02,0.973,0.96,1.234,0.903,0.93,0.997,0.967,1.047,1.065,0.852,1.082,0.918,0.82,1.112 +NM_000593,0.463,0.927,1.411,0.534,0.422,1.904,1.779,0.235,0.547,0.541,1.037,0.375,0.349,0.252,1.188,1.878,0.634,0.947,0.658,0.837,0.427,0.422,1.763,0.766,0.646,0.345,1.134,0.501,0.398,0.867,0.424,1.461,1.925,1.032,0.109,0.981,1.454,0.387,2.087,1.427,0.787,1.319,0.692,2.256,0.766,0.985,0.906,0.416,1.872,0.768,1.484,1.225,1.698,5.518 +NM_000594,0.872,1.019,1.203,1.051,1.231,0.931,1.096,1.14,0.919,1.08,0.968,1.013,0.852,0.85,0.942,0.93,1.03,0.862,1.126,0.933,0.815,0.92,0.897,1.087,0.988,0.889,0.953,0.945,0.702,0.934,1.009,1.226,1.074,0.959,0.977,0.869,0.92,1.037,1.278,2.233,1.212,0.974,0.988,0.975,0.989,1.066,1.212,0.868,1.114,1.084,0.877,1.294,0.95,1.206 +NM_000595,1.002,1.096,1.172,0.984,1.03,0.936,0.957,0.913,1.048,1.128,0.983,1.057,0.927,0.88,0.845,0.878,1.136,1.046,0.936,0.881,0.874,0.998,1.011,0.978,0.848,0.914,1.025,0.959,1.071,1.09,0.916,1.196,0.979,1.02,0.979,0.921,0.971,0.937,1.07,1.021,1.252,1.07,0.821,0.894,1.024,0.954,0.993,0.986,1.027,1.076,0.783,1.011,0.829,1.29 +NM_000596,0.828,0.898,0.943,0.943,0.85,1.004,0.997,1.093,0.838,0.953,1.052,0.96,1.029,0.942,0.896,0.925,1.105,1.036,0.91,0.976,1.129,0.906,0.839,0.981,1.059,0.893,1.041,0.832,0.76,1.031,0.973,1.431,1.182,0.995,0.982,1.423,0.978,1.095,1.038,2.22,0.834,1.116,1.051,1.867,0.991,0.904,0.932,0.999,0.87,1.029,0.908,1.055,0.916,2.757 +NM_000597,0.967,1.385,0.691,1.638,0.766,1.465,0.557,1.06,0.787,0.769,1.301,0.999,1.349,0.609,0.592,1.381,0.588,1.255,1.78,0.62,0.883,2.017,0.669,1.155,3.239,2.262,0.764,0.699,1.361,2.641,0.719,1.65,0.498,2.582,0.149,0.846,1.482,2.466,2.917,0.262,0.843,0.753,0.432,0.128,0.591,0.773,1.029,2.195,0.87,0.693,0.736,0.723,0.868,0.274 +NM_000598,0.247,1.015,1.861,0.47,0.45,0.939,1.173,0.17,0.191,0.421,0.615,0.24,0.159,0.138,0.83,0.614,0.646,0.308,0.407,2.399,0.304,0.277,0.789,0.653,1.467,0.171,1.0,0.314,0.241,2.691,0.182,16.95,2.246,3.076,0.149,2.547,0.865,0.49,1.946,2.393,1.435,1.595,0.492,2.964,1.244,0.495,0.536,0.306,0.315,0.808,1.579,4.859,0.696,6.38 +NM_000599,1.022,1.074,0.988,1.063,0.995,1.029,0.896,1.052,1.06,1.031,0.989,0.866,0.837,1.044,1.189,1.057,1.141,1.083,1.13,0.994,1.148,0.922,1.008,0.995,1.148,1.076,0.984,0.996,1.039,1.055,1.043,1.215,1.182,1.254,0.949,0.959,0.965,0.996,1.487,1.461,0.972,1.106,0.876,0.989,0.833,1.07,0.89,0.999,0.908,1.008,1.176,0.949,0.945,1.038 +NM_000600,0.975,1.001,0.978,0.856,0.975,0.904,1.006,1.082,1.009,1.046,1.107,1.019,0.876,0.885,1.079,1.035,0.856,0.961,1.044,0.949,0.941,0.926,0.96,0.925,0.943,1.006,0.997,1.01,1.026,1.083,0.964,1.665,1.534,1.029,0.86,0.947,0.939,1.07,1.409,12.61,0.855,0.858,1.187,0.97,0.982,0.846,1.066,1.119,0.783,0.945,0.972,1.958,1.116,1.048 +NM_000601,0.901,1.037,1.042,1.118,0.979,0.999,1.162,1.03,1.001,1.047,0.839,1.035,0.908,0.949,0.999,0.973,1.027,0.897,1.061,0.936,1.01,0.977,0.985,1.018,0.956,0.935,1.002,1.05,1.182,1.078,1.03,1.018,1.055,0.902,1.039,0.989,0.901,1.067,1.081,1.008,1.041,1.111,0.742,1.005,0.962,0.838,1.012,1.022,0.963,0.954,1.036,1.076,0.914,1.009 +NM_000602,1.105,0.91,1.086,1.152,0.921,1.263,0.839,0.919,0.902,0.812,0.869,1.009,0.875,1.254,0.801,0.894,0.925,0.801,1.256,1.063,0.904,0.891,1.103,0.943,1.021,0.912,0.926,1.093,0.807,0.864,1.144,1.86,1.252,0.895,0.975,0.947,1.097,0.892,1.208,3.595,1.051,0.971,0.991,1.163,1.003,1.204,1.185,1.019,1.136,0.899,1.037,1.811,0.947,1.227 +NM_000603,0.96,1.075,0.931,0.897,0.975,0.824,1.407,0.777,0.997,1.08,1.071,0.94,0.782,0.915,1.449,1.094,1.0,0.99,0.785,1.047,0.983,0.948,1.084,0.886,1.052,0.92,0.861,0.921,1.161,1.293,0.969,1.018,1.044,1.144,0.926,1.001,1.205,0.873,1.621,0.953,0.871,1.073,1.113,0.94,1.041,0.945,0.989,0.818,0.961,1.002,1.023,1.115,1.004,1.311 +NM_000605,0.953,0.916,0.947,0.949,0.976,0.95,0.903,0.981,1.021,1.011,0.996,1.022,0.997,0.811,0.888,1.046,1.051,0.872,0.817,1.034,0.911,0.989,0.967,0.907,0.99,1.057,0.979,1.027,1.322,1.05,0.98,0.979,1.179,1.061,1.024,1.024,0.927,0.893,1.181,0.915,1.032,1.095,1.192,0.956,0.974,1.131,1.011,1.117,0.934,0.946,1.035,1.171,0.954,0.991 +NM_000606,1.105,0.921,0.902,1.281,0.982,1.359,1.008,0.895,0.859,0.979,2.214,0.829,1.018,1.064,3.002,1.694,0.866,0.998,0.949,1.251,0.895,1.002,0.947,0.936,0.935,1.089,0.866,0.934,1.506,1.05,0.887,0.975,1.095,1.003,0.851,1.078,2.701,0.906,1.113,0.974,0.879,1.673,2.399,1.123,0.938,2.405,1.36,0.961,1.103,0.932,1.397,1.026,0.95,1.027 +NM_000607,1.001,1.492,0.938,1.03,0.999,1.001,1.767,1.035,0.901,1.052,1.883,0.882,0.894,0.953,1.024,0.785,0.96,0.896,1.008,1.055,0.74,0.95,0.783,0.973,7.601,0.964,0.867,0.793,6.859,1.208,0.837,5.096,0.956,1.487,0.952,0.954,1.09,0.828,1.398,84.25,0.972,0.947,1.014,0.952,1.133,0.98,1.115,1.027,0.991,0.873,1.022,1.101,0.966,0.872 +NM_000608,0.935,2.877,0.966,1.558,0.932,1.522,2.331,0.795,0.875,1.037,1.162,0.875,0.871,0.814,0.85,0.906,0.862,1.219,0.834,1.175,0.9,0.927,1.009,0.883,3.356,0.88,1.033,0.834,2.417,1.848,0.938,10.04,0.893,3.35,0.886,0.949,1.569,0.906,3.029,3.424,0.937,1.08,0.882,0.927,0.925,1.011,0.915,0.899,1.009,0.98,0.972,1.031,0.915,0.924 +NM_000609,0.814,1.093,0.928,0.9,1.0,1.082,1.2,1.094,0.994,0.999,1.021,0.917,0.931,0.9,0.916,1.199,0.95,0.947,1.039,0.931,0.976,0.911,1.34,0.988,1.065,0.94,1.002,1.023,1.309,1.133,0.99,1.312,1.085,1.043,0.907,0.843,0.984,1.035,1.325,1.076,1.07,1.479,1.06,0.962,0.974,1.036,0.864,0.806,1.023,0.939,1.046,1.055,0.966,1.043 +NM_000610,1.548,1.106,2.185,0.605,1.194,0.619,0.502,0.627,1.261,1.472,0.757,1.219,0.849,1.229,0.871,0.95,1.687,0.803,2.009,0.612,0.918,1.056,1.257,1.545,0.512,1.131,2.319,0.937,0.194,0.728,1.345,0.901,1.855,0.939,0.538,1.021,0.714,1.738,1.317,1.86,1.459,1.174,0.519,1.662,1.855,0.66,0.836,0.963,0.764,1.877,1.0,3.161,1.92,2.347 +NM_000611,0.662,1.507,1.142,0.859,0.74,1.821,0.942,0.791,0.968,0.768,1.174,0.828,0.686,0.591,0.866,0.994,0.954,0.858,1.118,0.959,0.442,0.891,0.611,1.0,1.147,0.792,1.079,0.947,0.665,2.611,0.968,0.975,1.04,2.476,1.424,0.874,1.066,0.841,1.529,0.769,1.107,1.549,0.52,0.957,0.897,0.839,1.0,1.119,0.43,0.713,1.191,1.195,0.95,1.356 +NM_000612,0.837,1.014,1.027,1.047,0.999,0.901,1.01,1.018,0.881,0.861,0.948,1.007,0.92,0.943,1.114,1.037,0.934,0.773,0.842,0.901,1.001,0.937,0.997,0.899,0.967,1.057,0.882,0.943,1.323,1.063,1.111,8.905,1.738,1.222,0.994,0.948,0.948,0.921,1.012,1.28,0.96,1.16,1.146,0.854,0.995,0.948,0.936,0.841,1.064,0.942,1.064,1.129,1.041,1.166 +NM_000613,1.065,0.993,1.047,1.089,0.809,0.953,0.825,0.874,0.987,1.1,1.142,0.81,1.176,0.841,0.95,0.786,0.939,1.003,1.048,0.989,0.808,0.857,1.225,0.931,1.011,0.952,1.166,1.154,0.804,0.907,0.931,0.949,0.99,0.904,1.166,0.997,1.028,0.999,0.927,1.117,1.051,1.107,0.886,1.088,0.867,1.092,1.229,0.973,1.18,0.967,1.062,1.105,1.079,0.989 +NM_000614,1.125,0.96,0.931,1.063,1.073,1.105,0.923,1.119,0.988,1.002,1.054,1.047,1.114,0.931,0.806,1.031,0.983,0.906,1.012,0.951,1.072,0.891,1.016,0.97,0.953,1.043,0.924,0.958,0.82,0.924,1.076,1.016,1.066,0.976,1.115,1.063,1.068,1.022,1.001,0.941,0.989,1.005,1.07,1.041,0.937,1.022,1.017,0.81,1.042,1.205,0.918,0.883,0.967,0.978 +NM_000615,0.917,1.001,1.154,0.892,1.031,1.064,1.03,0.951,0.954,1.076,0.984,0.975,1.099,0.935,0.784,0.959,0.936,1.177,0.992,0.804,0.924,0.933,1.017,0.974,1.059,0.871,1.116,1.114,1.728,1.009,0.974,1.078,1.174,0.986,0.948,0.981,1.042,0.89,1.142,0.909,0.963,1.073,0.939,0.919,0.937,1.035,1.065,0.911,1.075,0.888,1.052,0.959,0.96,0.964 +NM_000616,0.931,1.001,1.112,0.917,0.911,1.024,1.079,0.848,0.973,0.883,0.934,0.818,0.939,0.86,1.029,0.795,1.029,0.827,0.957,1.005,0.97,0.862,0.986,0.892,0.863,0.964,1.331,0.929,0.816,1.233,0.878,1.302,1.065,1.237,0.792,0.879,0.946,0.918,1.148,1.188,0.867,1.186,0.942,0.929,1.048,0.816,1.009,0.891,0.909,0.972,0.975,1.032,1.299,1.127 +NM_000617,1.22,0.856,2.054,0.639,2.841,0.804,0.453,1.554,1.688,1.355,0.553,1.463,1.197,0.934,0.872,1.163,1.806,1.568,2.848,0.838,0.653,1.531,0.882,1.747,0.555,1.341,2.495,1.41,0.395,0.848,1.701,0.551,1.997,0.928,1.251,0.655,1.739,1.427,0.66,0.867,1.801,1.181,0.353,0.659,1.621,0.684,1.649,1.684,0.643,1.725,1.084,0.999,1.536,1.384 +NM_000618,0.824,1.106,1.011,0.962,0.947,1.151,1.184,0.941,0.863,1.019,1.032,0.78,0.971,1.074,0.888,0.939,0.997,0.884,0.85,0.962,0.973,1.054,1.163,1.076,0.934,0.894,0.754,1.001,0.893,1.044,0.851,2.865,0.947,1.202,0.889,1.015,1.089,0.983,1.002,1.051,1.183,1.463,0.943,0.937,1.321,0.962,0.941,0.98,1.032,1.072,1.027,0.952,1.01,0.621 +NM_000619,1.045,1.027,1.071,1.042,0.91,0.987,1.104,0.876,1.031,1.011,0.906,1.024,1.089,0.951,1.19,0.872,1.112,1.029,0.97,1.055,1.044,0.864,0.914,0.871,0.969,1.026,0.854,1.038,0.788,1.036,0.957,1.033,1.075,0.876,1.05,0.901,1.032,0.968,0.952,0.993,1.045,0.902,0.889,1.068,1.041,0.904,0.809,0.99,1.067,1.096,0.986,1.063,1.042,1.624 +NM_000620,0.888,0.867,1.111,0.936,0.967,1.002,1.211,1.029,1.014,1.03,1.029,1.099,1.049,0.938,1.157,1.0,0.942,0.889,0.888,1.032,0.974,0.867,0.898,0.912,0.96,0.907,1.152,1.005,0.889,1.037,1.018,0.933,0.841,1.008,1.009,0.922,1.125,0.901,0.974,0.995,1.035,0.98,0.82,1.023,0.959,1.119,1.0,0.981,0.999,1.089,1.204,0.942,1.017,0.966 +NM_000623,1.23,0.991,1.351,0.865,1.42,0.913,0.748,0.88,1.439,1.393,0.73,1.02,0.985,1.243,0.898,0.887,1.247,1.04,1.299,0.961,1.168,1.189,1.042,1.466,0.905,1.283,1.248,0.974,0.833,0.864,1.137,1.027,1.212,0.884,0.862,0.852,0.788,1.175,1.048,0.931,1.145,0.921,0.889,0.819,1.313,0.976,1.186,1.287,0.808,1.276,1.129,1.028,1.097,0.867 +NM_000624,0.978,3.915,0.872,1.395,0.76,1.068,1.395,0.953,0.984,0.918,0.838,0.927,0.815,0.811,0.974,1.039,0.859,0.998,0.846,1.182,0.953,0.813,1.016,0.982,2.953,0.907,0.787,1.05,1.147,2.005,1.012,4.656,0.825,3.073,0.85,1.122,1.354,0.869,1.799,1.644,0.804,1.143,1.066,1.106,0.844,0.788,1.173,0.79,0.795,0.794,0.941,1.698,0.98,0.792 +NM_000625,1.063,1.144,1.015,0.925,0.92,1.134,0.928,0.935,1.104,1.103,0.973,1.018,0.991,0.892,0.819,0.924,1.052,1.011,0.774,0.937,0.915,1.006,0.914,0.888,0.969,1.002,1.075,1.035,0.703,1.244,0.938,1.206,0.972,1.168,0.898,0.901,0.967,0.934,1.108,1.234,0.96,1.002,1.27,0.894,0.917,1.025,1.047,1.046,0.912,0.943,1.042,1.073,1.003,1.031 +NM_000626,1.022,0.858,1.121,0.868,1.277,0.929,1.152,0.859,1.076,1.016,0.818,0.971,1.098,0.954,1.072,1.168,0.956,1.272,0.963,0.884,0.833,0.902,0.92,0.933,0.994,0.911,0.713,0.968,0.976,0.914,1.117,0.994,0.867,1.061,0.871,1.059,1.061,0.938,1.165,1.048,0.874,1.11,0.781,0.973,1.252,1.273,1.118,1.258,0.955,1.152,0.879,1.054,1.027,1.147 +NM_000627,0.507,1.294,0.922,0.821,0.638,1.467,0.964,0.387,0.483,0.75,1.371,0.715,0.473,0.525,0.868,1.128,0.638,0.775,0.657,1.228,0.626,0.485,1.537,0.57,1.071,0.47,1.108,0.61,0.611,2.733,0.535,5.276,3.366,2.312,0.501,0.556,1.067,0.611,2.032,1.352,0.681,2.452,0.669,0.698,0.519,0.879,0.937,0.527,0.622,0.604,1.599,1.474,0.884,1.045 +NM_000628,0.576,0.786,1.302,0.661,1.156,1.865,1.034,0.863,1.172,0.788,1.375,0.722,0.825,0.381,0.968,1.778,0.911,1.392,0.959,1.561,0.333,0.607,1.262,0.954,0.532,0.667,1.012,0.999,0.654,1.494,0.938,1.038,0.797,1.747,0.917,0.442,1.261,0.596,1.601,1.077,0.923,1.328,0.659,0.761,1.112,1.058,1.005,1.026,0.75,0.85,1.462,0.625,0.499,0.823 +NM_000629,0.948,1.043,1.054,0.912,0.999,1.113,0.825,0.918,0.967,0.831,0.916,0.857,0.908,0.941,0.962,1.107,1.087,0.961,0.973,0.989,0.798,0.871,0.975,0.925,0.961,0.911,0.976,0.911,0.822,1.07,0.953,1.042,1.039,1.172,0.922,0.859,0.982,1.056,1.175,1.046,0.969,1.004,0.788,1.011,0.88,1.028,0.922,0.898,0.816,1.039,1.133,0.863,0.794,1.083 +NM_000631,1.737,1.861,3.169,2.5860000000000003,1.847,1.9340000000000002,2.572,1.5059999999999998,2.5220000000000002,1.658,1.609,1.812,2.041,1.1760000000000002,1.561,1.612,2.4290000000000003,2.12,1.846,1.553,1.498,1.6139999999999999,2.085,2.178,1.464,1.532,3.827,1.6219999999999999,1.083,3.352,1.831,3.257,1.641,2.294,1.322,3.1029999999999998,2.201,1.685,3.117,6.476,2.464,2.8840000000000003,1.641,1.5899999999999999,2.08,1.7,1.625,1.565,1.593,1.678,2.279,3.073,2.008,3.315 +NM_000633,1.041,1.046,1.048,0.949,1.045,0.925,1.303,0.797,1.027,0.994,0.872,0.905,1.012,0.782,1.081,1.255,0.993,0.996,0.872,1.012,0.829,0.85,1.026,1.099,1.051,0.863,1.039,1.083,0.944,1.067,0.966,1.126,1.264,1.283,0.961,1.001,0.934,0.856,0.911,1.014,1.033,1.069,0.991,0.973,0.984,1.098,0.958,0.961,0.964,0.806,1.102,0.928,1.077,1.366 +NM_000636,0.874,0.977,3.041,0.967,1.005,0.488,0.362,0.515,1.056,0.918,0.566,0.918,1.106,0.838,0.855,1.077,3.493,0.725,4.889,0.381,0.875,1.106,0.523,1.819,0.274,1.095,4.369,1.05,0.46,0.494,1.197,1.107,2.171,0.515,0.358,0.89,0.69,0.651,1.892,5.916,2.414,0.572,0.605,1.899,1.944,0.522,1.898,0.807,0.765,3.477,0.58,2.457,3.916,2.602 +NM_000637,0.675,0.71,0.859,0.676,0.769,1.033,0.726,0.567,1.203,1.201,1.58,0.607,0.511,1.198,1.06,1.618,0.764,1.031,1.163,0.834,0.73,0.722,1.11,1.306,0.681,0.992,1.334,0.897,0.632,1.158,1.07,0.744,0.971,1.464,0.824,0.474,1.325,0.766,1.627,0.395,0.903,1.076,0.911,0.679,0.57,1.471,1.15,0.856,1.481,0.734,1.277,0.655,1.086,2.169 +NM_000638,0.992,1.01,0.949,0.933,0.877,0.903,0.959,0.963,0.93,0.931,1.005,1.01,0.91,1.028,0.838,0.96,0.914,0.864,0.995,1.116,1.011,1.038,1.013,0.95,1.099,0.98,0.889,0.9,0.765,1.0,0.998,1.006,1.072,1.814,1.005,0.931,0.904,0.881,1.019,1.004,0.867,0.88,1.042,1.141,0.946,0.869,0.989,1.02,0.907,0.859,1.117,1.009,0.952,1.102 +NM_000639,0.986,1.038,1.146,1.069,0.986,1.043,0.965,1.146,0.955,1.011,1.091,1.013,1.037,0.971,1.031,0.999,0.896,0.95,0.922,0.852,1.054,0.958,0.939,1.051,1.065,0.966,1.085,1.204,1.293,1.0,1.025,0.928,1.075,1.08,0.906,1.145,0.928,0.902,1.136,0.957,0.913,1.09,0.679,0.872,0.994,1.011,1.065,0.9,1.1,1.012,0.96,0.816,0.866,1.291 +NM_000640,0.87,0.922,1.019,1.101,0.989,1.063,0.893,0.946,0.87,1.018,1.063,0.836,1.106,0.929,1.185,0.924,1.03,0.976,0.9,0.89,0.915,0.959,0.986,0.969,0.948,1.023,1.011,1.117,1.115,1.056,0.912,1.521,2.568,0.953,1.04,1.373,1.075,0.989,2.785,6.297,0.953,0.917,0.945,1.116,1.031,0.976,1.211,0.917,1.176,0.947,0.982,3.636,0.963,2.186 +NM_000642,0.882,0.829,1.11,0.921,0.966,1.079,0.878,1.056,1.04,0.909,1.196,0.846,1.041,0.924,0.946,0.909,0.976,0.992,0.841,1.111,0.946,1.098,1.184,1.02,0.94,1.091,1.088,1.136,0.696,0.961,1.108,1.039,0.921,0.884,0.972,1.027,1.042,0.993,1.028,0.936,0.902,0.95,1.268,1.178,1.011,0.969,1.059,1.017,1.162,0.848,1.211,0.905,0.915,1.017 +NM_000644,0.808,1.081,1.411,0.728,0.982,1.427,0.856,0.824,1.254,0.77,1.363,0.895,0.853,0.884,1.176,1.594,0.921,1.026,0.907,1.185,0.652,1.127,1.232,0.92,0.939,0.779,1.161,1.105,0.837,0.992,1.152,0.789,1.455,1.005,0.816,0.693,1.494,0.931,1.553,0.614,1.129,1.409,1.115,0.709,0.849,1.482,0.983,0.79,2.262,0.997,1.391,0.863,0.621,1.074 +NM_000647,0.943,1.126,1.146,0.92,0.966,1.268,1.147,1.094,0.899,0.927,0.763,0.973,0.926,1.016,0.911,0.87,0.892,0.847,0.868,0.906,1.018,0.908,1.018,0.855,1.041,0.965,1.185,0.953,0.672,1.56,0.874,1.198,0.883,1.406,0.815,0.887,1.126,1.163,1.126,1.044,0.884,1.496,0.931,0.851,0.964,0.901,0.991,0.818,1.024,0.843,1.273,0.949,0.97,1.296 +NM_000648,2.081,1.9789999999999999,2.118,1.809,1.681,1.9889999999999999,1.886,2.077,1.908,2.154,1.994,2.1109999999999998,1.9060000000000001,2.027,2.258,1.758,1.938,2.041,2.0460000000000003,1.884,2.001,1.9749999999999999,1.874,1.974,2.063,2.034,2.0629999999999997,1.955,2.4379999999999997,1.916,1.9699999999999998,1.98,2.079,2.001,2.113,2.162,2.0220000000000002,1.774,1.896,1.9609999999999999,1.911,1.9449999999999998,2.449,1.912,2.04,2.0789999999999997,1.826,2.033,1.7970000000000002,2.048,2.067,2.061,1.873,1.9289999999999998 +NM_000655,0.926,1.092,0.895,1.38,0.974,1.016,1.154,0.866,1.019,0.772,0.802,1.091,0.998,0.874,1.048,0.822,0.97,1.025,0.844,0.907,0.955,0.849,0.897,0.966,0.777,1.138,1.048,1.204,0.742,0.841,0.967,1.375,0.96,1.006,0.949,1.099,0.874,0.946,1.608,3.601,0.893,1.368,1.01,1.318,1.242,1.04,1.046,0.97,0.907,1.059,0.945,1.5,1.154,1.347 +NM_000659,0.906,0.95,1.126,0.934,0.992,1.015,1.058,1.302,0.892,0.938,1.111,1.074,1.079,0.981,1.204,0.928,1.061,0.993,1.015,0.99,1.194,0.975,1.16,1.001,0.977,0.946,1.061,1.039,0.821,1.078,0.948,0.858,0.946,0.958,0.952,0.929,0.915,1.003,1.135,0.991,1.048,0.982,1.117,0.884,1.027,1.037,1.116,1.087,1.051,1.09,0.928,1.014,0.909,1.015 +NM_000661,0.467,0.749,2.073,0.399,0.913,2.21,0.928,2.556,1.539,0.722,0.763,2.197,1.901,0.527,1.423,3.299,0.895,1.09,0.8,1.192,0.203,1.75,1.196,2.133,0.461,0.25,2.578,0.266,0.501,1.195,2.085,1.581,2.315,1.443,0.267,0.245,1.123,2.384,1.767,0.709,1.089,1.236,0.302,0.229,1.029,0.633,1.22,0.91,1.372,0.839,1.234,0.548,0.274,1.587 +NM_000663,0.984,0.93,0.888,1.039,0.933,1.01,0.9,1.056,1.528,1.102,0.996,0.902,0.982,1.374,1.045,1.13,1.012,1.015,1.104,0.889,0.92,1.131,0.827,1.226,0.87,1.215,1.197,1.187,0.751,0.975,1.382,0.898,0.986,1.198,1.317,0.763,1.148,1.005,1.071,1.049,0.997,0.95,0.755,0.877,0.951,0.966,1.088,1.178,1.13,1.107,0.97,0.889,1.055,0.73 +NM_000664,0.834,0.821,1.609,0.67,1.034,0.835,0.42,0.513,1.265,1.062,0.766,0.94,0.592,0.814,0.996,1.379,0.937,0.985,1.52,1.089,0.768,0.899,1.238,1.207,0.582,0.903,1.767,0.868,0.445,1.109,1.125,1.608,2.703,1.122,0.397,1.13,1.054,1.07,1.15,0.676,1.167,0.767,0.486,1.131,1.017,1.01,0.866,0.839,0.713,1.088,1.092,0.812,1.221,1.124 +NM_000666,0.601,1.004,0.519,1.611,0.467,4.344,0.849,0.377,0.637,0.583,3.716,0.542,0.523,0.43,2.516,8.592,0.593,0.967,0.627,1.995,0.47,0.475,1.888,0.645,0.917,0.524,0.603,0.417,0.764,2.507,0.466,0.866,1.511,2.336,0.275,2.106,3.883,0.446,4.234,0.996,0.534,3.153,1.977,1.355,0.544,3.8,1.167,0.386,2.403,0.518,2.286,0.603,0.679,2.872 +NM_000667,0.279,7.052,0.341,2.907,0.234,11.02,3.007,0.272,0.351,0.261,7.532,0.247,0.286,0.261,3.035,12.53,0.298,3.686,0.249,8.626,0.274,0.274,7.149,0.26,3.461,0.235,0.343,0.386,2.911,13.23,0.328,11.09,0.789,13.05,0.257,0.254,8.334,0.324,6.21,0.249,0.581,14.19,6.076,0.477,0.272,7.043,0.947,0.295,0.957,0.301,3.728,0.713,0.298,3.506 +NM_000668,0.878,2.582,0.8,1.005,0.742,3.505,2.149,0.902,0.756,0.81,1.855,0.775,0.908,0.84,1.552,1.719,0.838,1.105,0.867,2.011,0.933,0.794,1.081,0.93,2.155,0.828,0.77,1.075,0.78,3.832,0.713,0.946,0.812,9.071,0.691,0.777,2.252,1.201,1.12,0.74,1.385,7.902,0.977,0.87,0.733,1.949,0.951,0.76,0.896,0.746,1.525,0.839,0.723,1.311 +NM_000669,0.213,5.865,0.235,3.22,0.139,8.762,2.263,0.151,0.287,0.153,11.25,0.162,0.219,0.17,2.699,12.38,0.176,2.893,0.173,5.972,0.155,0.193,6.332,0.17,3.368,0.213,0.197,0.226,2.296,11.1,0.207,8.646,0.672,13.82,0.159,0.19,9.415,0.201,4.379,0.15,0.346,12.26,5.619,0.71,0.153,6.476,0.708,0.197,0.672,0.184,2.86,0.603,0.199,3.427 +NM_000672,0.961,1.124,1.033,0.995,0.816,2.596,0.957,1.011,0.956,0.991,2.946,1.013,0.992,0.952,1.758,6.284,0.916,0.954,0.79,2.249,1.031,1.002,2.371,0.957,1.06,0.972,0.812,0.768,0.723,1.294,0.908,1.058,1.173,1.041,0.961,0.957,2.279,0.869,1.568,1.096,0.846,2.548,1.276,0.869,0.871,2.255,1.122,0.862,1.482,0.901,2.795,0.871,0.849,1.127 +NM_000673,3.696,0.59,5.404,1.752,5.653,0.689,0.476,1.226,8.235,4.349,0.472,1.756,2.393,4.28,3.644,1.212,2.358,2.95,6.646,0.716,2.372,3.394,0.325,4.305,0.988,3.7,3.284,5.14,0.598,0.492,6.615,0.311,1.181,1.563,0.498,0.312,0.603,4.514,0.332,0.271,6.287,0.476,0.377,0.314,3.791,0.314,1.276,2.554,0.25,2.273,0.836,0.638,2.242,0.528 +NM_000674,1.0,1.124,0.865,0.877,1.041,1.005,0.867,0.913,0.886,0.898,0.976,0.913,0.854,1.031,1.007,0.887,0.951,0.894,1.038,1.055,1.058,1.029,1.321,0.979,1.0,0.872,1.055,0.897,0.669,1.083,0.835,1.777,0.8,1.279,0.929,1.045,1.096,0.877,1.03,1.341,0.857,1.255,1.088,1.005,0.953,0.901,0.912,0.95,0.889,1.012,1.114,1.224,0.862,0.978 +NM_000676,0.933,0.634,1.145,0.956,1.133,0.897,0.673,0.79,1.053,1.632,0.911,1.15,1.143,0.779,0.964,1.409,1.194,1.012,1.242,0.751,1.004,0.851,0.901,1.373,0.588,1.068,1.592,0.885,0.742,0.689,0.969,0.935,1.839,0.719,0.584,1.237,0.906,1.121,1.266,0.853,1.21,0.664,1.236,2.456,1.284,0.726,1.18,0.858,0.797,1.091,1.146,0.909,1.642,1.406 +NM_000678,0.97,0.943,0.984,1.013,1.227,0.938,0.965,0.972,0.941,0.954,0.956,0.864,0.877,0.999,0.921,1.108,0.963,1.048,0.976,0.96,1.051,0.966,1.003,1.057,0.972,0.962,0.958,0.967,0.858,1.007,1.034,1.089,1.02,1.014,1.242,1.093,1.052,0.985,1.112,0.961,1.109,1.015,1.007,0.987,0.891,1.098,1.02,1.011,0.992,1.002,1.102,1.034,1.018,1.085 +NM_000679,0.936,1.094,1.075,1.0,1.017,0.966,1.018,0.965,0.904,0.935,0.958,1.012,0.968,1.061,0.913,0.986,1.149,1.054,0.917,0.976,0.914,1.011,0.977,0.982,0.992,1.001,1.05,0.986,0.836,1.071,1.157,0.897,1.1,1.072,1.042,1.195,0.961,1.001,1.019,1.0,0.985,0.853,0.869,0.96,1.125,1.034,0.975,1.016,1.092,1.055,1.115,0.977,1.042,0.931 +NM_000680,1.152,1.044,0.928,0.936,1.008,0.964,1.309,0.983,0.95,1.025,0.993,1.057,0.965,1.018,1.162,1.129,0.853,1.127,1.087,1.166,0.933,0.925,1.156,0.977,0.887,1.042,1.054,1.041,1.037,1.126,0.777,0.973,1.031,0.982,1.073,0.982,1.033,0.964,1.031,1.079,0.917,1.057,1.058,1.087,1.028,1.18,0.829,1.039,1.148,1.03,0.984,1.081,0.923,0.896 +NM_000681,0.652,2.751,0.791,0.901,0.763,1.472,1.228,0.613,0.767,0.633,1.147,0.663,0.652,0.655,1.254,1.98,0.626,0.646,0.646,1.196,0.752,0.619,2.757,0.728,0.708,0.649,0.58,0.802,0.921,2.039,0.696,1.386,1.864,2.018,0.659,2.353,1.882,0.728,2.183,0.531,0.752,2.023,1.145,1.173,0.777,1.512,0.806,0.748,1.111,0.708,2.997,1.137,0.722,1.511 +NM_000682,0.951,1.123,0.943,0.959,0.892,0.976,0.827,0.944,0.882,0.89,1.086,1.022,0.916,0.849,0.841,0.994,1.07,0.909,0.988,0.886,1.039,0.892,0.957,1.027,1.161,2.548,1.075,0.999,0.798,1.142,0.948,1.187,1.123,1.103,0.843,1.176,1.023,0.974,0.99,1.249,1.057,1.03,1.279,1.029,0.989,0.994,0.896,1.177,0.962,0.981,1.077,0.985,0.961,1.756 +NM_000683,1.039,0.997,0.849,0.837,0.782,1.059,0.993,1.05,0.851,0.844,1.065,1.043,1.086,0.699,0.909,0.817,0.841,1.011,1.116,1.073,1.016,0.923,0.812,0.931,1.004,0.929,1.073,0.973,0.929,1.014,1.007,1.217,1.263,0.985,0.873,1.119,0.896,1.009,1.075,1.043,0.962,0.954,0.942,0.987,0.929,0.821,1.029,1.067,0.965,1.015,1.003,0.945,0.937,1.353 +NM_000684,1.072,0.888,1.124,0.885,0.942,1.04,0.897,1.063,0.981,0.909,1.355,0.979,1.006,0.73,0.989,0.925,0.899,1.122,1.141,0.941,1.021,0.932,0.963,1.01,1.019,0.937,0.984,0.927,0.938,1.007,1.19,0.971,0.982,0.908,1.11,1.187,1.109,0.961,0.955,0.984,1.136,0.99,0.845,1.164,0.939,1.095,1.133,1.034,1.104,0.975,0.937,1.034,1.019,0.956 +NM_000686,0.933,0.957,1.022,0.96,0.895,1.008,1.115,1.03,0.95,0.922,0.91,1.101,1.102,0.819,0.909,0.951,1.032,1.116,1.064,0.975,1.001,1.023,0.943,1.142,0.984,1.066,1.077,1.011,1.781,0.909,0.912,0.882,0.909,0.947,0.87,1.003,0.993,0.967,1.098,1.025,0.8,1.124,1.143,1.051,1.082,1.0,1.029,1.107,1.008,1.121,1.019,0.909,0.89,0.987 +NM_000687,1.166,1.087,0.862,0.707,1.004,0.874,0.43,0.708,1.594,0.926,1.191,0.683,0.94,0.829,1.189,1.77,0.595,0.841,1.428,0.636,0.514,1.241,2.318,1.026,0.399,1.463,0.91,1.376,0.296,1.074,1.63,0.85,2.441,1.362,2.001,0.7,0.88,1.087,1.629,0.633,1.044,1.108,0.421,1.277,0.945,0.82,1.056,1.54,1.103,0.902,0.927,0.682,0.89,1.724 +NM_000688,0.61,0.983,0.935,0.882,0.731,1.958,0.913,0.51,1.124,0.772,0.999,0.549,0.655,0.657,1.083,1.773,0.875,1.096,1.018,1.001,0.601,1.105,1.284,0.724,0.714,0.816,0.935,0.66,0.73,2.286,0.968,1.051,1.5,1.735,0.795,0.842,1.504,0.801,2.532,0.758,0.663,1.211,0.935,1.016,0.735,1.353,0.851,0.802,1.968,0.807,1.022,0.852,0.663,2.019 +NM_000689,0.354,4.632,0.459,1.28,0.144,3.833,1.827,0.114,0.498,0.154,2.728,0.15,0.555,0.191,1.348,1.818,0.125,1.319,0.17,1.238,0.181,0.214,1.212,0.15,3.065,0.141,0.313,0.314,0.95,5.996,0.343,2.725,0.245,3.93,0.122,0.924,2.754,0.265,4.441,0.275,0.307,1.798,0.996,1.414,0.21,1.763,0.531,0.196,1.021,0.121,1.743,0.699,0.185,1.004 +NM_000690,0.611,1.569,1.025,1.165,0.718,2.343,1.154,0.241,0.95,0.762,1.911,0.471,0.355,0.596,1.008,1.681,0.621,1.602,1.21,1.333,0.664,0.513,1.445,0.712,0.992,0.66,0.9,0.58,0.928,2.581,0.705,1.317,0.56,2.649,0.133,0.767,1.846,1.101,1.654,0.47,0.681,1.917,1.061,0.585,0.602,2.039,0.596,0.449,1.103,0.58,1.319,0.564,0.798,0.888 +NM_000691,1.543,0.889,2.163,1.415,1.836,1.259,1.062,1.282,1.332,2.642,0.286,1.16,0.993,1.688,0.875,0.326,2.087,1.884,2.384,0.593,1.522,1.543,0.106,1.264,1.138,2.248,0.747,1.733,0.824,2.914,1.688,0.141,0.151,2.336,0.728,0.306,1.023,2.529,1.148,0.0278,1.839,0.533,0.122,0.433,1.554,0.125,0.619,2.077,0.0884,1.525,0.246,0.188,1.33,0.0743 +NM_000693,2.224,0.699,3.152,1.002,3.094,0.497,0.513,1.457,4.742,1.055,0.459,0.572,2.49,1.178,1.485,0.685,4.829,1.311,2.375,0.776,1.379,1.192,0.636,0.915,0.5,1.745,4.393,2.456,0.395,0.794,3.977,4.235,2.332,1.139,9.567,0.401,0.481,2.252,0.87,0.425,4.851,1.087,0.458,0.6,2.035,0.463,2.67,2.115,0.669,2.193,0.858,2.237,1.611,2.757 +NM_000696,1.144,0.708,2.008,0.754,1.834,0.911,0.443,1.174,2.051,1.45,0.788,1.553,0.984,1.391,1.282,1.243,1.455,1.336,2.059,0.767,0.664,1.94,0.868,1.56,0.458,2.142,2.03,1.528,0.301,1.03,1.595,0.901,1.096,1.037,0.732,1.133,1.049,2.002,0.675,0.339,1.671,1.01,0.547,0.715,1.707,0.725,1.149,1.741,0.663,1.213,0.989,0.52,1.356,0.878 +NM_000699,1.041,1.116,0.976,9.607,1.049,1.006,1.028,1.011,0.94,0.972,1.067,1.124,0.878,1.028,1.363,0.908,0.944,1.063,0.918,1.111,0.943,1.003,0.99,0.993,0.959,1.108,0.938,1.034,1.286,1.017,0.995,1.231,1.028,0.961,1.023,1.132,0.901,1.152,1.068,0.969,1.113,1.071,1.093,0.853,1.039,0.946,1.007,1.035,0.966,1.09,1.0,0.874,1.022,0.981 +NM_000700,1.668,0.21,2.851,0.975,3.272,0.447,0.198,2.247,3.328,2.349,0.364,1.891,1.84,1.155,1.929,2.076,2.091,2.061,2.182,0.294,1.761,2.77,0.18,3.046,0.0742,2.051,2.542,2.971,0.276,0.326,3.474,0.163,2.178,0.235,2.199,0.069,0.158,3.06,0.51,0.103,2.616,0.227,0.0999,0.131,2.357,0.332,2.066,2.645,0.501,1.898,1.166,1.059,1.556,0.966 +NM_000701,0.677,0.805,1.164,0.507,0.728,1.078,0.544,0.231,0.795,0.723,1.888,0.54,0.453,0.5,1.26,3.619,0.683,1.0,0.655,2.798,0.343,0.695,2.722,0.808,0.563,0.771,1.375,0.581,0.324,1.188,0.943,0.821,1.694,0.863,0.0756,0.787,2.367,0.632,1.79,1.653,0.625,2.298,1.346,1.035,0.769,1.504,1.543,0.615,1.908,0.856,2.298,0.946,0.627,1.079 +NM_000702,0.908,1.046,1.038,0.87,1.099,0.93,1.015,0.936,1.067,1.055,0.989,0.872,1.06,0.887,1.033,1.117,0.892,1.11,1.037,0.981,0.969,0.945,1.084,0.989,1.011,0.925,0.86,0.979,0.72,0.984,0.948,1.067,0.971,1.015,1.017,1.038,0.987,1.16,0.977,0.988,1.176,1.212,0.892,1.072,0.931,0.9,0.954,1.025,1.012,0.964,0.903,1.211,0.972,1.003 +NM_000704,0.921,56.42,1.201,1.407,0.899,3.18,17.41,0.716,1.169,0.797,0.97,1.005,0.911,0.976,0.918,0.906,0.905,1.086,0.952,1.238,0.858,0.998,1.093,0.954,117.0,1.032,1.162,1.074,7.769,10.79,1.019,0.978,0.987,36.12,0.765,0.95,13.84,0.801,0.931,0.993,0.913,0.834,1.002,0.946,0.958,0.814,0.949,0.935,0.994,1.004,0.996,0.857,0.85,1.099 +NM_000705,1.083,34.76,1.007,1.587,1.0,3.359,16.32,0.954,0.847,1.004,0.928,0.923,1.022,1.076,1.085,0.99,0.99,1.097,0.958,1.158,0.884,0.847,0.916,1.007,86.64,1.077,1.072,0.954,7.298,6.094,0.947,1.0,0.856,41.26,1.006,0.958,9.636,0.992,0.857,0.91,1.076,0.897,0.903,0.948,0.975,0.872,0.904,0.891,0.893,1.052,1.094,1.048,0.929,1.13 +NM_000706,0.917,1.044,1.042,1.096,0.982,1.032,1.455,0.951,0.884,0.919,0.986,1.126,1.015,1.224,0.939,1.044,1.03,1.044,0.896,0.947,1.016,1.061,1.166,0.953,1.009,1.098,1.051,0.991,1.246,0.978,1.295,0.896,0.968,1.017,0.95,0.919,0.868,0.864,1.167,0.921,1.199,0.96,1.151,1.0,0.995,0.909,0.916,1.05,0.795,0.962,0.972,1.13,0.923,1.16 +NM_000707,0.966,0.875,0.995,0.872,0.883,0.925,1.0,0.902,1.129,0.914,0.971,0.986,1.037,0.824,1.013,1.088,0.889,0.91,1.045,1.203,0.835,1.015,1.064,0.873,0.987,0.942,1.042,0.95,1.136,0.953,0.985,1.004,0.943,1.087,1.007,1.05,1.07,1.132,1.128,1.115,0.907,1.071,1.113,0.842,1.106,1.04,0.912,0.976,1.158,1.024,1.018,1.018,1.047,0.938 +NM_000709,2.164,0.793,1.554,1.015,1.363,0.726,0.38,1.166,1.598,1.299,0.545,1.162,1.413,1.105,1.124,0.709,1.667,1.389,2.411,0.666,1.161,2.044,0.755,1.555,1.183,2.707,1.905,1.477,0.349,0.794,1.455,0.873,1.898,1.059,2.186,0.416,0.502,1.427,1.284,0.6,1.266,0.629,0.351,0.922,1.537,0.494,0.851,2.433,0.333,2.136,0.671,0.651,1.375,0.797 +NM_000710,1.258,0.784,1.681,0.898,1.721,0.741,1.046,1.66,1.407,2.39,0.694,1.328,1.271,1.119,1.747,1.105,1.078,1.359,1.888,0.728,1.129,1.452,0.884,1.91,0.667,1.68,1.375,1.645,1.201,0.821,1.414,0.916,1.372,0.655,1.928,0.732,0.807,1.538,0.83,1.089,1.219,0.789,0.838,0.79,1.529,0.792,1.165,1.928,0.724,1.624,0.829,1.184,1.358,1.016 +NM_000712,0.837,0.677,2.561,0.577,1.898,0.961,0.416,2.034,2.425,1.679,0.348,1.168,0.989,1.853,1.693,1.5,1.684,1.095,2.016,0.574,0.555,2.086,0.813,2.096,0.344,2.089,1.595,3.249,0.199,1.115,2.944,1.62,1.776,0.777,2.607,0.73,0.629,3.655,0.744,0.429,2.333,0.79,0.283,0.837,1.528,0.411,1.313,2.327,0.386,1.023,1.057,0.989,1.015,1.168 +NM_000713,1.172,1.015,1.103,1.006,1.739,1.226,0.907,1.581,1.793,1.336,0.711,1.174,0.984,0.709,1.114,1.239,0.988,1.89,1.239,0.745,0.455,1.509,0.894,1.252,0.905,1.828,0.938,1.948,0.808,1.32,1.58,0.668,0.692,1.514,3.266,0.557,0.892,1.814,1.773,0.284,1.155,0.664,0.509,0.553,1.107,0.674,1.259,2.066,0.595,0.957,0.81,0.494,0.68,0.951 +NM_000714,1.675,0.749,1.446,1.434,1.188,0.833,0.392,0.565,1.704,1.052,1.16,0.514,0.993,1.075,1.031,1.555,1.563,1.432,2.212,0.731,0.836,0.991,0.789,0.99,0.742,2.337,1.061,0.809,0.504,1.118,1.174,0.671,0.742,1.863,0.403,0.526,0.907,1.629,2.231,0.311,1.415,0.997,0.502,1.027,1.183,0.633,0.804,1.948,0.687,1.428,0.931,0.423,1.261,0.606 +NM_000715,0.927,0.87,0.839,0.971,0.924,1.038,0.979,0.885,0.865,1.075,1.068,0.812,0.791,1.046,1.07,1.075,0.795,1.346,0.911,1.203,0.851,0.982,0.961,0.924,0.853,0.941,0.999,1.001,0.833,1.115,0.939,2.546,1.213,1.034,0.941,2.462,0.983,0.906,0.978,8.652,0.954,0.971,1.054,1.18,1.074,1.042,1.39,0.993,1.278,0.937,1.115,13.63,0.959,0.956 +NM_000716,0.486,0.807,0.521,1.146,0.517,1.604,0.829,0.503,0.505,0.465,2.199,0.532,0.509,0.503,2.704,3.496,0.534,0.739,0.543,2.134,0.484,0.49,2.425,0.461,0.947,0.486,0.436,0.544,0.87,1.393,0.461,1.58,3.852,1.372,0.626,5.856,1.849,0.542,2.937,0.995,0.498,1.295,2.125,3.424,0.532,2.056,1.168,0.573,4.272,0.479,2.316,4.409,0.526,1.22 +NM_000717,0.856,1.435,0.745,1.104,0.794,0.965,1.568,0.967,0.804,0.774,1.103,0.872,0.877,0.865,2.055,0.921,0.781,1.359,0.769,0.991,0.732,0.852,1.066,0.736,1.355,0.824,0.826,0.822,1.185,2.501,0.859,0.791,0.792,2.144,1.071,10.02,1.726,0.749,1.183,1.36,0.766,1.399,1.182,0.793,0.822,0.872,1.58,0.955,1.05,0.705,1.077,0.998,0.849,0.881 +NM_000718,1.043,1.044,1.202,1.271,1.091,0.938,0.786,0.732,1.159,1.153,1.129,1.021,1.001,0.936,1.258,0.886,1.132,0.889,1.001,0.943,1.029,0.955,0.945,0.973,1.059,0.985,1.124,1.044,0.918,0.907,1.001,1.052,1.139,1.227,0.996,0.899,1.005,0.977,1.121,1.005,0.866,0.819,1.498,0.883,1.065,1.021,1.046,1.027,1.113,0.813,0.987,1.045,0.841,0.794 +NM_000719,0.991,0.971,0.971,1.087,0.943,1.034,0.831,0.968,1.031,1.075,0.903,0.909,1.071,1.092,0.934,0.941,0.965,0.93,1.009,0.883,1.161,1.038,1.197,0.952,0.996,0.962,0.832,1.027,0.837,1.075,0.957,1.135,1.196,1.017,1.248,1.33,0.974,1.08,1.178,0.949,1.031,1.082,0.98,0.982,0.995,1.178,0.942,0.922,0.929,1.014,0.993,1.062,1.074,0.911 +NM_000720,1.003,0.868,0.972,1.121,1.089,1.022,0.992,1.103,1.001,1.114,0.961,0.929,1.011,0.987,0.997,0.974,1.103,0.997,0.989,1.168,0.924,0.945,0.932,1.109,0.999,0.974,1.003,1.097,1.171,0.999,1.253,1.1,1.044,1.067,1.022,0.994,1.08,1.13,1.024,1.022,0.957,1.019,0.992,0.965,1.096,0.896,1.188,1.105,0.941,0.908,1.142,0.976,0.996,1.079 +NM_000721,1.017,1.04,1.089,1.026,1.023,1.136,0.967,0.869,1.15,1.111,1.116,1.062,0.943,1.104,0.937,1.089,1.084,0.981,0.856,0.916,1.07,0.895,0.994,1.035,1.022,0.949,0.887,0.878,0.976,1.023,1.317,1.139,0.926,0.95,1.036,1.113,1.024,0.849,0.895,0.97,1.033,0.97,0.984,0.991,0.994,0.959,0.872,1.006,0.977,0.999,1.073,1.049,1.148,1.019 +NM_000722,1.017,1.058,0.953,1.042,1.02,0.963,0.971,0.892,0.94,0.969,1.091,1.139,1.063,1.049,0.869,1.075,1.075,1.111,1.093,1.056,1.043,1.186,0.968,0.977,0.928,1.031,0.965,1.086,1.191,0.981,1.058,1.011,1.002,1.007,1.055,0.938,0.978,0.984,0.931,0.993,0.942,0.998,1.129,0.87,1.018,0.97,1.117,0.949,0.842,0.956,0.995,0.914,0.889,1.084 +NM_000723,0.914,1.113,1.091,0.996,1.118,1.017,0.908,1.021,0.94,0.999,1.063,0.907,0.995,0.996,0.865,0.999,0.954,1.075,0.753,1.045,1.016,1.052,1.012,1.048,0.952,0.937,0.929,1.165,1.03,0.897,0.989,0.968,1.059,0.956,0.968,0.978,1.049,0.912,0.869,1.094,0.978,1.025,0.931,1.001,1.067,1.052,0.964,1.095,0.956,1.035,1.064,1.172,0.974,1.016 +NM_000724,0.929,0.912,1.125,1.027,0.881,1.07,0.972,0.926,0.958,0.771,0.966,1.018,1.015,0.982,0.917,0.99,0.909,1.111,1.041,1.148,0.95,1.042,1.042,1.014,1.19,0.879,1.106,1.137,1.06,0.975,0.941,1.012,0.929,1.052,1.035,0.953,1.025,0.992,0.899,0.992,1.025,1.119,1.016,1.211,0.961,1.115,0.966,1.022,1.16,0.992,0.904,1.118,1.009,0.876 +NM_000725,1.057,0.822,0.919,0.967,1.037,0.93,1.079,1.039,1.063,1.002,1.066,0.999,0.996,1.082,1.106,0.855,1.037,0.824,0.886,0.967,0.91,0.882,0.893,1.14,1.111,0.994,1.034,1.01,0.733,1.028,0.982,1.152,0.94,1.055,0.885,0.967,0.984,1.126,1.15,1.043,0.949,0.976,0.887,1.067,0.977,1.027,1.089,1.052,0.921,1.026,0.929,0.937,0.825,1.063 +NM_000726,1.03,1.146,1.014,0.985,1.057,1.003,1.082,0.974,1.01,1.006,0.96,1.031,0.994,0.945,0.906,0.855,1.001,1.077,1.013,0.981,0.809,0.913,1.044,0.994,0.921,1.062,1.168,1.037,0.808,1.085,1.029,1.1,1.034,0.99,0.854,0.918,0.924,0.936,0.976,0.968,0.999,1.087,0.925,0.9,1.009,0.869,1.011,1.078,0.982,1.05,0.962,0.794,0.923,1.963 +NM_000727,0.927,0.952,0.96,0.894,1.116,0.994,0.853,0.983,0.898,0.964,0.897,1.078,1.06,1.181,0.938,1.029,1.012,1.057,0.939,1.079,1.01,1.019,0.929,0.991,1.042,1.062,1.172,0.974,0.916,1.037,1.02,0.994,0.927,1.05,0.975,1.017,1.076,1.076,0.942,1.146,1.006,1.06,0.946,0.987,1.154,0.854,0.916,1.032,1.043,1.038,1.026,0.934,1.001,0.958 +NM_000728,0.87,0.911,0.988,0.867,1.17,0.995,1.003,1.063,0.945,0.858,0.964,1.011,0.919,1.117,1.019,0.926,1.044,1.003,1.055,0.939,0.996,0.862,0.997,1.013,0.947,1.047,1.067,1.058,0.744,1.049,1.116,0.945,1.02,0.936,0.944,1.05,1.091,0.949,1.053,1.039,1.071,0.9,1.0,0.982,1.063,0.845,1.031,0.934,0.968,1.018,1.038,1.031,1.03,0.952 +NM_000729,0.931,1.19,0.883,1.865,0.84,1.56,2.076,1.19,0.839,0.95,1.099,0.908,0.984,1.06,1.136,0.846,0.958,0.977,0.886,1.193,0.909,0.813,1.031,0.961,1.126,0.874,1.035,0.865,1.456,1.342,0.964,1.742,1.424,2.174,0.927,1.003,0.981,1.027,5.218,0.996,0.812,0.957,0.879,8.41,0.941,0.859,1.015,0.961,0.995,0.926,0.98,1.229,1.088,0.896 +NM_000730,0.897,0.879,0.922,0.917,0.945,1.169,1.014,1.14,1.063,1.066,1.04,1.075,1.035,1.037,1.057,0.942,1.004,1.097,0.975,0.965,1.052,1.019,0.89,1.012,0.983,0.921,1.068,0.856,1.014,0.953,0.889,1.001,0.956,1.052,0.938,1.112,1.021,1.06,1.008,1.006,0.923,1.032,0.97,0.965,0.928,0.888,0.906,0.914,0.977,0.941,1.167,0.935,1.039,0.949 +NM_000732,0.578,1.151,2.759,0.721,0.892,1.186,1.302,0.791,0.969,0.832,0.722,0.8,1.285,0.667,0.807,0.781,1.448,0.998,1.157,1.201,0.839,0.763,0.968,0.921,1.362,0.634,2.607,0.93,0.567,1.82,0.815,1.745,1.002,1.588,0.515,0.565,1.507,0.745,1.448,0.868,1.567,1.478,0.584,0.858,1.336,0.714,0.786,0.734,0.934,0.989,0.807,0.872,2.072,4.06 +NM_000734,0.847,1.097,1.732,0.8,0.971,1.052,1.066,0.688,0.91,0.853,0.766,0.822,0.954,0.615,0.953,0.882,1.094,1.048,0.914,1.052,0.881,0.795,1.034,0.931,0.933,0.746,1.638,1.114,0.961,1.138,0.816,1.521,0.848,1.253,0.684,0.742,0.945,0.866,1.508,0.916,1.374,2.192,0.666,0.842,1.101,0.834,1.368,0.797,0.922,0.914,0.867,0.868,1.075,1.93 +NM_000735,1.113,0.894,0.894,0.994,0.955,1.039,1.639,0.966,0.996,0.898,1.133,0.991,1.005,1.046,1.106,0.989,0.907,1.017,0.85,1.152,1.121,0.972,0.954,1.05,1.171,0.936,0.864,0.937,1.016,0.956,0.979,0.766,1.114,1.149,0.93,0.804,1.015,1.04,0.932,0.891,1.014,0.776,1.228,0.999,1.05,0.885,1.075,1.259,1.113,0.934,1.069,0.926,0.818,1.051 +NM_000737,0.919,1.081,0.931,0.925,0.969,0.958,1.104,0.781,0.895,0.961,0.928,0.996,0.999,1.095,0.867,0.978,1.083,1.017,0.959,0.974,0.939,0.979,1.081,0.905,0.997,1.105,1.029,1.055,0.944,0.919,1.051,1.176,0.945,0.923,1.008,1.106,0.97,1.054,1.015,1.046,0.998,1.049,0.973,0.943,0.899,0.989,1.105,1.123,0.976,1.037,1.033,1.069,0.849,0.893 +NM_000738,0.896,1.132,1.003,1.191,0.942,0.992,1.038,1.052,0.861,1.226,0.944,1.027,0.964,0.938,0.94,0.949,0.906,1.103,1.093,1.013,1.039,0.919,0.928,1.027,1.139,1.008,0.98,0.967,1.167,0.961,0.942,1.001,1.019,1.264,0.918,0.954,0.959,1.061,0.976,1.059,0.904,1.516,0.942,1.04,1.064,0.914,0.89,0.966,0.935,1.068,1.007,1.001,0.937,0.969 +NM_000739,1.025,1.123,0.988,1.034,1.035,1.017,0.906,0.922,1.117,1.055,1.132,0.939,0.95,1.007,1.15,1.064,0.826,0.989,1.0,1.024,0.95,0.902,1.0,1.009,1.031,0.99,0.904,1.05,0.8,1.026,1.004,0.979,0.946,0.904,1.047,1.074,0.887,0.949,1.074,0.999,0.981,1.138,1.034,1.103,0.944,0.957,1.097,1.079,1.023,0.94,0.983,0.989,0.971,1.005 +NM_000740,0.901,1.062,1.075,0.935,0.944,0.955,1.01,0.891,0.861,1.001,0.999,0.959,0.951,1.257,0.885,1.002,0.849,0.934,0.8,0.928,0.878,1.03,1.264,0.83,1.4,0.854,0.843,0.791,0.832,1.044,1.031,1.408,1.946,1.371,0.932,1.287,1.274,0.915,1.387,1.93,1.106,1.416,0.743,1.204,1.11,0.895,1.021,0.95,1.066,0.978,1.064,0.953,0.996,1.342 +NM_000741,1.109,0.931,0.879,1.228,0.955,0.982,0.964,1.145,1.032,1.002,1.005,1.11,1.048,1.064,0.983,1.143,0.925,1.042,1.098,0.977,1.011,1.05,1.082,0.956,1.035,0.94,0.947,0.929,0.979,0.896,1.038,1.08,1.099,1.009,0.979,0.976,1.024,0.986,1.03,0.966,0.885,0.931,0.914,0.943,0.941,1.017,0.924,1.118,1.182,1.055,1.022,0.941,0.957,0.957 +NM_000742,0.937,1.032,1.069,1.057,1.158,1.034,0.895,0.992,1.157,0.993,0.991,0.994,1.007,1.023,1.331,0.959,0.972,1.03,0.93,0.832,1.088,1.153,0.95,1.213,0.978,0.843,0.87,0.982,1.195,1.014,1.024,1.016,1.103,1.037,1.127,1.076,0.914,1.101,1.071,1.026,0.905,0.9,0.828,0.978,1.005,1.004,0.946,0.982,1.035,1.175,1.018,1.13,0.936,1.118 +NM_000744,1.137,1.072,1.066,1.12,0.942,0.973,1.06,1.024,1.062,0.939,0.93,1.011,1.038,0.973,0.903,1.052,0.957,1.13,0.938,1.11,1.013,0.943,1.072,1.016,1.013,0.964,0.917,0.913,1.004,0.917,0.926,1.09,1.059,1.051,1.0,1.007,0.933,0.905,1.008,0.996,0.918,0.974,1.031,1.038,1.009,0.983,0.935,1.0,1.056,1.029,0.998,1.084,1.006,0.916 +NM_000746,1.058,0.894,1.053,1.09,0.831,1.134,1.262,0.807,0.924,0.92,1.091,0.92,0.95,0.896,1.137,1.306,0.937,0.977,1.042,1.408,0.846,0.951,1.155,1.006,1.138,0.829,0.95,1.083,1.159,1.07,0.858,0.844,1.132,1.104,0.881,1.206,1.093,1.024,0.947,0.915,1.027,1.162,1.303,0.964,0.91,0.947,0.934,0.977,1.265,0.958,1.047,1.009,1.081,0.99 +NM_000747,0.955,1.03,1.104,1.149,1.087,1.066,0.917,1.021,1.184,0.984,0.959,0.881,0.897,0.905,1.106,0.998,0.879,0.882,0.853,1.097,1.093,0.961,0.924,0.957,0.955,0.995,1.091,1.001,1.129,0.898,1.115,1.344,1.11,1.149,0.915,0.887,0.978,0.901,1.011,1.076,1.052,1.104,0.947,0.88,0.944,1.003,1.098,0.87,0.846,0.924,0.897,0.953,1.055,1.199 +NM_000748,0.994,1.174,0.947,1.023,0.965,0.957,1.135,1.0,0.967,1.006,1.102,1.003,1.225,0.865,0.856,1.123,1.017,0.984,0.94,0.933,0.951,0.949,1.025,1.013,0.967,0.941,0.966,1.013,0.838,1.034,1.017,1.06,1.0,0.891,1.049,0.886,1.016,1.006,0.993,0.988,1.035,0.933,0.986,1.086,1.051,0.931,0.915,1.143,0.975,1.059,0.893,0.913,1.041,1.056 +NM_000749,0.921,1.123,0.907,0.941,0.982,1.037,1.213,0.818,0.886,0.927,1.05,1.056,1.097,0.874,1.06,1.084,1.042,0.986,0.941,1.182,0.92,0.938,0.98,1.038,0.912,1.009,1.059,0.926,1.122,1.031,1.037,1.006,1.515,1.002,1.112,1.018,1.113,0.884,0.885,1.053,0.98,1.255,2.792,1.139,1.226,1.154,0.957,1.141,0.932,0.868,1.079,0.89,1.03,0.866 +NM_000751,0.958,0.927,1.028,0.925,1.098,1.058,1.002,0.983,0.946,1.106,0.922,0.976,1.033,1.189,0.958,0.966,1.076,1.123,0.996,0.864,1.13,1.019,1.097,1.098,1.03,1.102,0.935,1.044,1.145,1.027,1.054,1.026,0.949,1.099,1.048,0.966,1.005,0.932,1.074,0.871,0.986,0.829,1.15,0.971,0.895,0.943,0.968,1.09,0.947,1.041,1.047,1.043,1.027,0.899 +NM_000756,1.126,0.944,0.997,1.061,0.963,0.99,0.985,1.022,0.897,0.79,1.032,0.937,0.963,0.921,0.868,0.93,1.004,0.984,0.936,0.946,0.966,0.942,0.973,0.996,0.985,1.009,1.02,0.98,0.947,1.051,1.024,1.0,0.957,1.015,0.887,1.042,0.935,1.004,0.994,0.956,0.905,0.975,0.98,1.006,1.03,1.045,1.053,1.128,1.068,0.935,1.078,1.0,1.071,0.863 +NM_000758,1.053,1.141,0.977,0.822,0.941,0.988,0.928,1.2,0.913,1.029,1.038,0.967,1.03,0.897,1.003,0.98,0.957,0.929,0.981,1.141,1.095,0.894,0.988,1.032,0.972,1.047,0.989,0.93,1.05,0.978,1.045,1.069,1.16,1.115,1.098,1.098,1.015,0.947,1.033,4.467,0.902,0.835,0.959,0.786,1.073,0.974,0.875,0.977,0.983,0.87,1.075,1.223,1.115,1.035 +NM_000762,1.048,1.018,1.113,1.252,1.01,0.882,0.983,1.164,0.894,0.904,0.853,0.934,1.084,0.988,0.963,0.963,1.095,0.949,1.026,1.089,0.947,1.004,0.823,1.135,0.966,0.936,0.873,0.994,1.009,1.033,0.925,1.073,0.953,1.053,1.024,1.152,1.124,1.131,0.992,0.758,0.886,1.06,0.93,1.144,0.888,0.996,1.015,1.085,1.122,0.917,1.047,1.111,0.966,1.029 +NM_000765,1.012,1.013,0.969,1.062,1.065,1.152,0.864,0.977,1.0,0.96,1.118,1.048,1.055,0.814,1.023,1.067,0.966,1.087,0.917,1.106,0.946,0.923,0.95,1.003,1.002,0.883,0.959,0.873,1.012,1.071,0.989,0.863,0.938,1.087,1.02,0.973,0.889,1.034,1.075,1.035,0.946,1.072,1.078,1.091,0.95,0.957,1.005,1.013,1.058,1.14,0.961,1.108,0.974,0.924 +NM_000766,1.105,1.074,0.94,1.128,0.941,0.991,1.051,1.059,1.018,0.981,1.071,1.023,1.136,0.912,1.164,0.81,0.985,1.106,1.09,1.004,0.935,0.973,0.97,0.991,1.037,0.992,0.901,0.899,0.881,0.974,0.975,0.982,0.925,0.96,1.035,0.992,0.963,1.024,0.987,1.028,1.024,1.08,1.212,0.92,1.044,1.088,1.08,1.03,0.907,1.145,0.988,0.922,1.063,0.977 +NM_000769,1.104,0.946,0.979,1.08,0.98,1.112,1.188,0.912,1.026,1.045,0.909,0.974,0.945,1.013,1.046,1.177,1.012,0.894,0.969,1.041,1.059,0.87,0.971,0.92,1.009,0.948,0.999,1.101,0.968,1.011,0.86,1.043,0.809,1.034,0.982,1.017,1.071,1.059,0.97,1.153,1.089,0.907,1.065,0.91,1.118,0.819,0.9,1.001,0.974,0.915,1.092,0.86,0.999,0.985 +NM_000770,1.075,1.191,0.954,0.949,0.912,0.98,0.852,1.016,1.017,0.768,1.084,1.049,1.071,0.855,0.783,1.035,1.037,0.946,1.041,1.001,1.085,1.079,0.885,0.98,1.178,0.952,0.996,0.934,0.836,1.026,1.052,1.037,1.023,1.201,0.724,0.86,1.158,0.956,0.884,1.017,0.988,0.934,0.861,0.924,0.872,1.077,1.095,0.973,0.934,0.846,0.982,1.015,1.073,0.903 +NM_000773,3.506,0.933,2.422,1.167,3.183,0.389,0.331,1.804,2.605,3.422,0.419,1.36,2.091,1.951,1.411,1.699,1.654,1.915,6.961,0.389,0.824,2.446,0.296,4.157,0.508,4.229,3.401,2.024,0.329,0.438,2.902,1.083,1.598,0.495,2.453,0.387,0.313,2.618,1.067,0.352,2.456,0.336,0.325,0.416,2.124,0.334,1.83,6.236,0.46,2.349,0.921,0.753,1.169,19.61 +NM_000774,0.98,0.97,0.986,0.999,1.096,0.898,1.094,0.905,0.87,0.929,1.155,0.926,0.96,1.228,0.978,0.959,1.011,0.966,1.153,0.938,1.09,1.009,0.993,1.071,0.983,1.048,0.937,0.909,0.928,1.097,0.886,0.722,1.018,0.918,1.102,1.0,1.088,1.021,1.052,1.068,1.041,1.021,0.956,0.942,0.975,1.079,0.985,0.96,1.102,0.961,0.995,1.023,1.157,1.029 +NM_000775,1.096,0.723,1.233,0.779,1.184,0.815,0.513,1.057,2.283,1.228,1.138,0.713,0.842,1.217,1.585,3.06,0.887,0.668,1.811,0.887,0.713,1.401,1.579,1.035,0.422,1.276,1.38,1.315,0.329,1.409,2.038,1.076,1.655,1.102,0.925,0.54,1.605,1.21,0.729,0.484,1.332,1.339,0.759,0.733,1.48,0.866,0.939,1.598,1.156,1.112,0.996,0.483,1.008,1.681 +NM_000777,0.407,1.179,0.475,1.216,0.426,1.845,1.074,0.379,0.457,1.413,1.337,0.388,0.444,0.888,1.257,1.822,0.507,2.933,0.522,1.737,0.449,0.499,1.521,0.546,1.305,0.415,0.935,0.397,1.025,8.454,0.574,0.803,1.947,2.727,0.429,1.046,1.349,0.364,1.428,0.609,1.555,1.371,0.889,1.653,1.028,3.705,2.078,0.378,1.052,0.421,1.144,0.607,0.462,0.872 +NM_000779,1.69,0.682,7.347,0.922,3.882,0.538,0.653,2.696,4.87,4.429,0.828,2.522,2.436,3.46,2.757,1.431,4.5,2.159,8.424,4.218,2.008,4.406,0.571,3.786,0.6,1.721,5.717,2.278,0.607,0.869,5.598,0.72,1.586,1.239,0.652,0.568,0.634,2.319,0.602,0.446,4.838,0.839,0.591,0.495,2.858,0.641,1.057,3.364,0.628,1.969,1.087,1.016,1.653,0.873 +NM_000780,0.988,0.89,0.983,1.056,0.909,0.955,1.101,0.981,1.032,1.168,0.99,0.914,1.061,1.122,0.914,1.086,0.976,0.891,0.931,1.029,0.952,1.028,0.918,1.213,1.028,1.018,0.997,0.964,1.019,0.886,1.067,0.911,1.071,0.934,1.013,0.937,0.91,0.948,0.926,0.903,0.918,0.843,1.085,0.966,0.93,1.114,1.015,1.003,0.978,0.88,1.009,0.934,1.1,0.941 +NM_000781,1.465,0.942,1.257,1.094,1.611,0.982,0.918,1.345,1.831,1.546,0.962,1.169,1.722,1.965,1.499,1.198,1.26,1.066,2.027,0.795,1.348,2.228,1.009,1.969,0.912,1.87,2.383,1.811,1.049,1.02,1.836,0.9,0.899,0.912,0.989,1.06,0.795,1.098,1.057,0.852,1.699,1.077,0.95,0.981,1.239,0.884,0.929,1.83,0.891,1.255,0.995,0.982,1.576,0.987 +NM_000783,2.332,2.039,1.978,2.122,2.054,1.9049999999999998,1.8609999999999998,1.9220000000000002,1.9849999999999999,2.344,1.795,2.069,2.036,1.8609999999999998,1.966,2.64,1.9980000000000002,2.2110000000000003,1.932,2.2350000000000003,2.355,1.9220000000000002,1.9329999999999998,1.959,2.13,2.015,2.1550000000000002,2.088,1.7930000000000001,1.991,2.02,2.315,1.879,1.915,2.006,2.02,2.036,1.9889999999999999,2.019,2.309,2.104,1.906,1.823,1.897,2.001,1.847,2.3520000000000003,2.0,1.968,1.9209999999999998,2.258,1.9849999999999999,1.9609999999999999,2.0100000000000002 +NM_000784,0.692,1.115,0.873,1.093,0.756,0.891,0.873,0.647,0.851,0.685,1.027,0.848,0.745,0.809,1.832,4.268,0.709,0.783,0.722,1.362,0.78,0.798,1.663,0.674,0.924,0.85,0.786,0.747,0.534,1.057,0.723,1.998,0.936,1.735,0.743,1.858,2.797,0.894,1.017,2.935,0.719,1.516,1.444,3.517,0.836,1.278,1.406,0.729,1.038,0.685,1.186,0.991,0.883,1.436 +NM_000785,0.941,1.163,0.987,0.918,0.994,0.975,0.838,0.874,0.971,0.924,0.904,1.044,0.852,0.887,0.837,1.175,1.0,0.852,0.98,0.987,0.907,0.792,1.196,0.937,0.981,0.927,0.97,0.912,1.003,1.039,0.946,0.923,1.155,0.895,0.912,1.267,0.983,0.955,1.246,1.661,0.936,1.004,1.052,1.594,0.957,1.169,1.23,0.811,0.969,1.049,1.049,1.231,1.052,1.573 +NM_000788,0.758,1.051,1.043,0.979,1.13,1.035,0.897,0.701,0.939,0.91,1.267,0.769,0.804,0.769,1.137,1.486,0.715,1.016,0.886,1.09,0.764,0.722,1.228,0.795,0.78,0.784,1.123,0.849,0.643,1.027,0.95,1.21,1.369,1.133,0.679,0.909,1.096,0.879,1.306,0.836,0.917,1.021,0.986,1.248,0.814,1.165,0.884,0.652,1.113,0.821,1.061,0.979,0.998,1.279 +NM_000789,1.0,0.959,0.93,0.98,0.995,1.049,0.845,0.897,0.883,0.959,0.999,0.966,0.949,0.798,0.788,0.885,1.048,1.224,1.07,1.111,1.007,1.082,0.97,1.118,1.08,1.039,0.679,0.905,1.4,1.185,1.093,1.202,0.864,1.094,1.009,1.036,0.989,0.983,1.071,1.066,0.983,0.837,0.948,0.867,1.03,0.861,1.09,1.282,1.091,0.971,1.031,1.152,1.144,1.0 +NM_000792,1.122,0.957,0.949,0.869,1.028,1.088,1.009,1.043,1.036,0.967,0.94,1.029,0.939,1.142,0.99,1.22,1.064,1.056,1.1,0.926,1.193,0.995,1.023,0.958,0.947,0.966,0.979,0.962,0.905,1.015,1.125,0.979,0.941,0.901,0.997,1.053,1.112,1.011,0.872,0.923,0.874,0.898,1.112,1.07,0.935,1.069,0.875,1.02,0.992,1.139,0.946,0.953,1.122,0.884 +NM_000794,0.95,1.097,0.932,1.026,1.144,0.934,1.129,1.023,1.04,1.006,0.936,1.176,1.059,1.016,0.956,0.983,0.951,1.044,0.965,0.958,1.212,1.037,0.965,1.013,0.955,0.985,0.855,1.148,0.828,0.983,1.162,1.139,1.511,0.963,1.266,1.004,0.951,1.038,1.0,0.997,1.081,1.069,0.996,1.098,1.098,1.146,0.989,0.985,0.979,1.15,0.962,0.898,1.049,1.045 +NM_000795,1.069,1.137,1.027,0.962,1.04,1.004,0.989,1.018,1.047,0.852,1.07,1.079,0.96,0.884,0.824,1.014,1.135,0.938,0.954,1.015,1.033,0.957,1.07,0.967,0.969,0.847,0.916,0.93,1.121,1.049,0.82,0.924,0.992,1.014,1.217,1.042,0.855,0.963,1.097,1.017,0.998,0.968,0.897,0.955,1.093,0.864,0.972,0.929,1.084,0.967,0.987,1.174,1.056,0.969 +NM_000797,1.015,1.0,0.92,0.968,0.821,1.097,1.054,1.125,0.873,0.987,1.05,0.877,0.902,1.102,0.903,1.24,0.965,0.88,0.814,1.067,1.064,1.063,1.135,1.154,1.135,0.872,0.99,1.0,0.983,1.119,0.949,1.002,1.451,1.021,1.018,0.952,1.068,0.99,0.923,0.924,1.069,1.134,0.986,1.037,1.086,0.999,0.984,0.841,1.002,0.987,1.036,0.938,1.142,1.037 +NM_000798,1.023,2.582,0.969,0.964,0.978,1.018,1.26,1.145,1.078,0.938,0.972,0.951,0.972,1.259,1.018,0.967,0.908,1.041,0.936,1.128,1.209,1.119,1.013,0.992,4.655,1.185,1.025,0.979,1.43,1.046,0.983,0.975,0.938,1.343,0.931,0.963,1.284,1.073,0.912,0.958,0.894,0.967,0.998,0.936,1.032,0.973,0.951,1.019,0.988,0.996,1.027,0.97,0.957,1.04 +NM_000800,0.93,0.887,1.078,0.986,1.125,1.027,0.907,0.83,0.956,0.927,0.998,1.038,1.015,0.768,1.06,1.031,1.051,1.094,0.807,1.07,0.922,0.916,0.904,0.935,1.073,1.004,1.139,1.01,0.789,0.972,1.025,1.131,1.009,1.075,1.128,0.96,0.986,1.001,1.172,1.026,0.982,1.051,0.943,1.064,1.023,0.979,0.949,1.059,1.185,0.978,0.996,0.963,0.9,1.118 +NM_000801,1.712,0.631,1.314,1.384,1.037,0.739,0.724,0.774,0.834,1.28,0.624,1.105,1.222,0.566,0.663,1.254,1.0,1.38,1.27,0.77,0.445,1.083,1.057,0.915,1.411,1.711,0.943,0.771,0.704,1.434,0.73,1.167,1.585,1.208,0.429,0.751,0.922,0.953,2.468,2.33,0.883,0.972,0.662,2.168,1.596,0.54,0.794,2.114,0.667,2.091,0.811,1.547,1.255,1.502 +NM_000803,0.569,2.253,0.596,1.003,0.681,1.783,1.889,0.511,0.569,0.657,1.286,0.517,0.59,0.582,0.997,1.168,0.554,0.615,0.565,1.171,0.692,0.48,2.418,0.654,1.801,0.587,0.664,0.704,0.658,3.354,0.523,1.805,0.856,3.987,0.523,0.777,1.391,0.763,1.325,0.598,0.702,3.609,1.116,0.751,0.562,0.931,0.679,0.59,0.687,0.541,1.856,1.181,0.822,2.482 +NM_000804,0.955,0.993,1.093,1.112,1.124,0.89,1.11,1.146,0.88,1.105,0.845,1.119,0.845,0.899,0.964,0.897,0.946,0.969,0.943,1.15,0.988,1.142,1.069,1.028,0.912,1.007,1.055,0.916,0.89,1.041,0.883,0.963,1.155,0.954,0.989,1.075,0.935,1.07,0.89,1.491,0.983,1.035,0.938,0.952,1.061,1.02,0.909,0.904,1.019,0.854,0.896,1.218,1.0,0.916 +NM_000805,1.109,0.944,0.857,0.998,0.844,0.966,1.098,1.108,1.201,0.786,1.046,1.202,0.956,1.14,0.938,0.896,1.004,0.962,1.059,0.867,0.91,0.864,1.169,1.081,1.01,1.046,0.782,0.979,0.66,1.039,1.0,0.912,2.378,0.867,0.995,2.065,1.054,0.969,1.133,1.111,1.036,1.049,0.864,1.111,0.947,1.196,0.944,0.933,0.86,0.918,1.054,1.019,0.978,0.985 +NM_000806,1.044,1.098,0.911,1.155,1.0,0.952,1.126,0.822,1.028,0.863,0.928,1.212,1.074,1.109,0.952,1.177,0.912,1.031,1.037,1.104,0.935,1.039,1.095,1.112,1.055,1.069,1.08,1.03,0.655,0.94,0.979,1.002,0.976,1.036,1.223,1.038,0.931,1.107,0.982,1.01,0.905,1.105,0.861,1.011,1.031,0.892,1.01,1.049,1.064,1.015,0.946,1.016,0.986,0.859 +NM_000807,1.297,1.116,0.988,0.871,0.965,1.104,1.003,0.885,0.903,0.865,1.064,0.955,0.927,0.857,0.897,1.029,1.164,0.975,1.065,1.057,1.015,0.923,1.21,0.996,1.178,0.992,0.941,1.097,0.977,1.079,0.975,0.874,1.136,1.1,1.0,1.013,0.952,0.986,0.91,0.949,0.818,1.104,1.111,0.938,0.906,1.194,1.156,0.971,1.042,0.91,1.013,1.117,1.065,0.847 +NM_000808,0.968,0.89,1.092,0.901,0.95,0.896,0.841,0.861,0.887,1.018,1.023,1.053,0.911,1.053,0.99,1.015,0.976,1.019,0.969,1.061,1.166,0.966,0.905,0.984,1.034,0.937,1.149,1.025,0.52,1.057,0.961,0.913,0.995,0.91,1.033,1.066,0.986,1.093,1.155,1.004,1.0,0.976,0.767,1.107,1.0,1.003,1.137,0.96,1.134,1.112,0.997,0.944,1.049,0.917 +NM_000809,0.949,0.869,0.894,0.936,0.898,1.093,1.027,0.969,1.209,1.018,0.983,0.941,0.867,0.841,0.908,1.028,0.923,1.117,0.966,0.993,1.077,0.995,0.83,1.055,0.984,1.071,0.956,0.929,0.826,0.995,1.094,0.977,0.985,1.044,0.994,1.021,0.973,1.18,0.946,0.866,1.064,1.061,0.962,0.914,0.862,0.846,1.012,1.001,1.047,1.104,1.025,0.882,0.894,0.856 +NM_000810,0.893,0.969,1.003,0.925,1.168,0.913,1.037,0.994,1.037,0.991,1.017,1.004,1.016,1.112,0.946,1.062,0.971,1.093,1.003,1.014,1.107,0.962,0.998,1.082,0.903,1.048,1.083,1.164,0.721,1.013,1.213,0.923,1.095,0.95,1.053,0.931,0.903,0.992,0.984,0.914,1.159,0.96,1.077,0.949,1.103,0.894,1.004,1.084,0.973,1.104,0.948,1.037,1.136,1.01 +NM_000812,0.961,1.06,0.87,1.059,1.085,1.005,1.08,0.978,1.036,1.148,0.936,1.002,0.989,1.065,0.999,0.97,1.124,0.96,1.052,1.134,1.153,0.983,1.058,0.946,0.975,1.021,1.021,0.902,0.967,0.946,0.952,0.887,1.022,1.044,0.937,1.176,1.042,0.915,0.872,0.971,1.046,1.159,1.008,1.208,0.888,1.089,0.995,0.989,1.128,0.922,0.869,0.937,1.094,0.928 +NM_000813,1.127,1.205,1.151,1.218,1.006,0.992,1.2,0.887,1.17,0.975,1.112,0.977,1.045,1.052,0.927,0.933,0.972,0.874,1.101,1.156,1.042,0.973,0.974,0.914,1.064,0.964,0.897,0.983,1.151,0.944,0.966,0.886,0.865,1.321,1.013,1.08,1.118,0.916,0.954,1.031,0.918,1.227,0.926,1.042,1.099,1.131,0.802,1.144,0.941,1.004,1.009,0.98,0.82,0.893 +NM_000814,0.89,1.12,1.057,1.0,0.939,0.974,1.084,0.872,1.028,0.95,1.214,0.985,1.021,0.925,0.854,1.066,0.931,1.14,0.941,1.074,0.934,1.014,1.149,1.018,0.92,0.95,1.099,1.047,1.181,1.014,1.023,0.993,0.987,0.985,1.059,1.069,0.989,1.044,1.199,0.982,1.119,1.05,1.009,0.972,0.865,1.012,1.013,1.043,0.988,1.189,0.988,0.962,0.937,0.994 +NM_000815,0.978,1.074,1.02,0.972,1.004,0.947,0.854,0.851,1.042,1.015,0.798,1.027,1.086,1.133,0.944,1.026,0.974,1.153,1.21,1.015,0.943,1.01,1.052,0.892,1.086,0.889,1.152,0.819,0.832,0.889,1.096,0.893,1.195,1.175,0.967,1.015,0.891,0.857,0.828,1.046,0.985,1.018,0.91,1.156,1.216,0.955,0.897,1.097,0.948,0.924,0.94,1.01,0.998,0.986 +NM_000816,1.063,0.912,1.036,0.845,1.026,1.038,0.878,0.791,0.973,0.961,0.703,1.083,1.02,1.339,0.99,1.036,1.0,0.96,1.042,1.034,0.976,0.966,1.21,1.005,0.935,0.964,0.792,0.79,1.095,1.013,1.044,1.121,0.876,0.986,1.154,0.985,1.119,0.938,1.023,1.054,1.149,1.059,1.195,1.021,1.012,1.323,1.028,0.839,1.036,0.808,0.939,0.986,1.012,1.017 +NM_000817,1.127,0.958,1.08,0.946,0.923,1.096,1.049,1.101,0.984,1.075,0.964,0.932,0.986,1.239,0.799,1.02,0.955,0.968,0.945,0.992,1.101,1.036,0.992,1.109,1.172,1.015,0.928,1.036,0.982,0.94,1.131,1.104,1.285,1.04,0.968,0.919,1.009,0.931,0.988,1.509,1.081,0.988,0.977,0.923,1.0,0.986,1.066,0.865,0.938,0.969,0.973,1.018,0.853,1.161 +NM_000819,0.843,1.124,1.142,0.75,0.789,0.877,0.574,0.466,1.255,1.322,0.87,0.966,0.558,0.657,0.936,1.356,0.874,0.783,1.168,0.847,0.71,0.813,1.349,1.222,0.691,0.833,1.274,0.808,0.488,0.996,0.972,0.812,3.623,0.932,0.282,1.28,1.103,0.805,1.977,1.311,1.063,0.903,0.732,1.831,1.34,0.935,0.986,0.775,0.764,0.964,1.138,1.019,1.145,2.015 +NM_000820,0.782,1.151,0.877,0.91,0.789,1.02,0.589,0.517,0.727,0.753,1.046,0.898,0.735,0.678,0.976,2.347,0.727,0.649,0.959,1.057,0.816,0.906,1.319,0.918,1.363,1.237,0.87,0.848,0.35,1.345,0.81,2.836,1.456,1.917,0.259,0.86,1.035,0.984,0.807,0.667,1.016,1.712,0.934,1.379,0.756,0.906,1.001,0.925,0.734,0.876,1.11,0.745,0.833,1.51 +NM_000823,1.006,0.9,1.23,1.12,1.072,0.873,0.968,1.015,0.969,0.888,0.976,1.179,1.046,0.93,0.993,0.96,1.052,0.968,0.84,1.061,1.026,0.904,0.979,0.768,1.09,0.953,0.868,0.873,1.137,1.004,0.988,1.088,0.89,0.932,1.107,1.036,1.077,0.915,0.968,0.922,1.103,1.001,0.837,1.084,0.958,0.822,0.957,1.108,1.045,1.161,0.98,1.01,1.411,1.16 +NM_000824,0.953,0.905,0.93,1.097,0.984,0.952,1.117,1.007,1.113,1.079,0.854,0.805,1.056,0.925,0.935,0.992,1.04,0.995,0.994,1.051,0.913,0.919,1.043,1.015,0.94,0.838,0.966,0.955,0.959,0.92,0.874,1.583,1.052,1.02,1.034,1.0,1.013,1.05,1.031,1.009,0.924,1.14,0.977,1.254,0.81,1.137,1.007,1.016,0.943,0.953,0.95,1.037,0.944,1.131 +NM_000826,0.924,0.819,0.965,0.951,0.864,1.182,1.003,0.864,1.016,1.144,1.012,1.068,0.963,0.908,1.036,0.908,1.118,0.911,1.057,1.078,1.031,1.086,0.802,0.926,1.078,1.073,1.031,0.956,1.295,0.84,0.956,1.094,1.061,1.047,1.022,1.124,0.991,1.344,1.091,0.967,1.148,1.24,0.822,0.99,1.141,1.127,1.238,1.186,0.997,0.979,1.058,1.11,1.271,1.001 +NM_000827,0.936,1.075,0.999,1.002,1.2,1.048,0.977,1.002,1.0,0.981,1.005,1.002,0.927,0.94,0.913,0.83,1.123,0.931,1.054,0.92,0.856,0.92,1.068,0.852,1.024,0.958,1.16,1.148,0.87,0.998,0.931,1.111,1.033,1.008,0.992,1.048,1.01,0.876,0.827,1.014,1.012,0.891,0.953,0.927,1.116,1.184,0.988,1.055,0.979,1.058,0.935,1.015,0.885,1.073 +NM_000829,1.011,1.035,1.014,1.026,0.913,0.966,0.914,1.216,0.762,0.956,1.039,0.929,1.056,0.91,0.85,0.979,1.028,0.99,0.924,0.902,1.076,1.094,0.907,0.902,1.027,0.761,1.082,1.117,1.044,1.081,1.13,1.128,0.996,0.887,1.013,1.115,1.158,1.135,1.04,0.995,1.011,0.912,1.142,1.09,1.223,0.904,0.959,0.891,0.882,0.946,0.973,0.931,1.116,0.941 +NM_000830,2.0919999999999996,1.9449999999999998,1.95,2.11,2.1149999999999998,1.8279999999999998,2.189,2.3040000000000003,2.029,2.0250000000000004,1.771,2.032,1.871,2.133,2.3689999999999998,1.898,1.8940000000000001,2.189,1.87,1.979,1.869,2.069,2.145,2.248,1.879,2.303,1.952,2.122,2.2,1.891,2.237,2.061,1.7890000000000001,1.9169999999999998,2.1079999999999997,1.911,1.968,2.076,2.267,2.048,1.887,1.884,2.082,1.9729999999999999,2.1630000000000003,1.9380000000000002,1.988,1.8639999999999999,2.0300000000000002,2.008,2.0469999999999997,1.839,2.138,1.9449999999999998 +NM_000831,1.138,1.075,0.869,1.176,1.081,1.087,0.931,0.995,1.076,0.968,1.042,0.958,1.118,0.915,1.134,0.998,1.004,0.99,1.122,0.963,0.878,1.084,1.084,1.013,1.106,1.242,1.077,0.985,1.149,0.898,1.073,0.918,0.911,0.959,1.012,0.941,1.001,0.889,0.904,0.988,0.924,0.787,0.982,1.109,0.966,0.894,1.056,0.902,1.051,1.089,1.051,0.91,0.885,1.122 +NM_000832,1.092,1.061,1.006,1.103,1.125,1.053,0.816,0.875,0.868,0.99,1.114,0.996,1.062,0.894,0.912,1.195,1.116,0.94,1.057,0.994,1.017,1.053,0.894,1.083,0.926,0.986,0.99,0.946,0.943,1.082,0.899,0.903,1.0,1.019,1.144,1.29,0.907,1.205,0.98,1.491,1.034,1.057,1.0,1.113,0.926,0.977,0.975,1.128,1.041,1.091,1.026,0.962,1.002,1.107 +NM_000834,1.027,1.08,0.885,0.961,0.84,0.94,0.83,0.935,1.0,1.095,0.812,0.982,0.968,0.94,1.028,1.013,1.054,0.966,0.996,0.897,1.004,1.08,0.898,0.942,1.019,1.048,1.003,1.186,0.935,0.96,0.983,1.078,0.825,1.103,0.994,0.914,1.029,1.064,1.083,1.069,1.019,0.995,1.132,1.0,0.93,0.979,1.025,0.991,1.022,0.994,0.93,1.031,1.01,0.956 +NM_000835,0.873,1.069,0.867,1.169,0.98,1.13,1.025,1.003,0.965,0.865,1.013,0.928,1.009,1.082,0.842,1.021,0.948,1.029,1.133,1.116,1.1,0.983,0.93,1.017,1.044,1.113,1.046,0.963,0.868,0.947,0.976,0.977,1.052,0.97,1.123,0.993,1.14,1.074,0.896,1.024,0.951,0.996,0.977,1.083,1.053,0.953,1.16,1.084,0.978,0.966,1.025,1.092,0.984,1.1 +NM_000836,0.977,0.956,1.043,1.072,0.959,0.938,0.971,0.939,0.925,1.187,0.978,0.877,1.061,1.141,1.29,0.985,1.044,0.968,0.947,1.12,0.864,1.111,1.036,0.972,0.961,0.97,1.13,1.144,0.836,1.135,1.037,1.134,1.069,0.919,1.067,1.08,0.971,0.952,1.154,0.943,0.901,0.922,0.827,0.95,1.058,0.952,1.03,1.087,1.046,0.989,0.852,0.97,1.007,0.931 +NM_000838,1.061,0.941,1.014,0.986,1.06,0.971,1.053,1.107,1.001,1.048,0.959,0.858,0.948,1.041,1.219,1.028,1.042,0.946,1.006,0.978,0.995,1.03,1.108,0.842,1.165,0.905,1.117,1.063,1.124,0.997,1.09,1.025,0.993,0.992,1.131,1.166,1.048,0.915,0.93,1.062,0.999,1.065,1.126,1.086,1.027,1.187,0.935,1.074,0.936,0.856,1.031,0.857,0.966,0.948 +NM_000839,1.028,1.051,1.087,1.081,0.934,0.877,1.205,0.839,1.019,0.934,0.99,1.153,1.0,1.108,1.048,0.909,1.06,0.968,1.024,0.935,1.018,0.984,1.008,0.856,0.934,0.992,1.025,0.958,0.933,1.008,0.944,0.888,0.902,1.011,1.077,0.985,0.913,0.999,1.07,1.009,1.06,1.069,1.01,1.041,0.868,0.888,0.917,1.111,1.084,0.921,0.972,1.001,0.902,0.952 +NM_000840,1.016,0.921,0.95,0.987,1.065,1.073,0.989,0.945,0.989,1.048,0.918,1.072,1.114,1.181,0.999,1.031,0.9,0.939,0.941,0.874,1.041,0.947,1.067,1.023,0.959,1.018,0.971,0.955,1.028,1.056,1.023,0.953,1.023,0.994,1.179,0.98,1.014,1.132,1.016,1.043,1.011,1.053,1.018,0.935,0.937,0.956,0.991,0.906,0.995,1.16,0.924,1.067,0.938,0.814 +NM_000841,0.904,0.846,0.933,1.045,0.972,0.894,1.08,0.892,1.11,0.973,0.882,0.906,1.085,0.867,0.893,1.053,0.926,1.125,1.024,1.016,0.987,0.993,1.12,0.998,0.944,0.961,1.041,0.907,1.238,0.985,1.024,0.978,0.903,0.89,1.011,1.041,1.012,0.92,1.026,1.091,1.121,1.066,1.181,1.077,1.017,1.031,1.014,1.025,0.969,1.091,1.019,1.1,1.054,0.977 +NM_000842,1.025,0.873,1.082,0.981,0.971,0.832,1.132,1.019,1.019,0.857,1.0,0.965,1.145,1.649,0.924,1.019,0.927,1.0,1.017,1.003,1.04,0.988,1.163,0.969,0.952,1.071,0.952,0.877,1.195,0.92,0.887,1.048,1.063,1.055,1.085,1.076,0.976,1.096,1.06,0.922,1.063,1.053,0.898,1.067,0.86,1.016,1.005,0.998,1.01,1.017,1.021,1.003,0.859,0.988 +NM_000845,0.951,1.019,1.002,1.121,1.142,1.043,0.979,0.956,0.978,0.958,1.069,1.097,0.89,0.948,1.086,0.906,0.973,1.004,0.973,0.884,0.954,1.067,1.057,0.942,1.013,1.01,0.892,1.095,0.957,1.014,0.924,1.062,1.201,1.132,0.984,0.991,1.063,0.954,0.997,0.912,0.971,0.954,1.008,0.972,1.089,0.907,0.982,1.07,0.848,0.919,1.05,0.963,1.062,1.101 +NM_000847,0.583,9.109,0.421,5.319,0.337,1.423,0.604,0.321,0.504,0.412,5.648,0.326,0.383,0.479,1.62,17.34,0.328,3.02,0.73,1.37,0.317,0.968,1.747,0.623,4.796,0.413,0.426,0.38,5.206,2.239,0.344,0.74,0.54,14.47,0.327,0.316,11.83,0.368,3.413,0.302,0.376,7.54,5.393,0.48,0.387,2.178,3.875,1.169,0.431,0.353,2.687,0.365,0.354,0.345 +NM_000848,1.286,0.88,1.405,1.162,0.88,1.06,1.0,1.225,1.131,0.903,0.818,0.956,0.931,1.12,1.341,1.329,1.004,1.13,1.231,0.979,1.311,0.91,0.888,1.236,1.353,1.244,1.073,0.935,0.561,0.95,1.228,1.21,1.513,1.149,0.682,0.965,1.061,1.08,0.962,0.975,1.057,0.846,1.02,0.932,1.099,0.918,0.802,0.922,0.963,0.944,1.082,0.906,0.947,1.091 +NM_000849,1.011,1.263,1.203,0.879,1.059,1.184,1.292,0.874,0.979,0.934,0.832,0.823,1.078,1.005,0.963,1.067,0.881,1.079,1.476,1.028,1.072,1.141,1.079,1.224,1.131,0.929,0.839,0.92,1.069,1.214,0.89,1.209,0.991,1.628,0.903,0.855,0.943,1.109,1.215,0.805,1.077,1.259,1.0,0.844,0.85,0.885,0.925,1.154,0.722,0.96,0.878,0.84,0.939,2.699 +NM_000851,1.086,1.031,1.047,0.9,1.002,1.027,1.053,0.941,1.083,0.988,0.996,0.992,0.968,0.986,0.998,1.089,1.017,0.891,0.916,1.043,0.829,0.95,1.007,1.013,0.881,1.057,0.884,1.037,1.241,1.015,0.977,1.159,1.014,1.178,1.008,0.97,0.969,1.038,1.041,1.084,1.065,1.236,1.236,0.947,1.103,0.923,0.882,0.935,0.922,1.039,1.072,1.034,0.969,0.971 +NM_000852,0.98,0.721,1.235,1.007,0.99,1.065,0.456,0.769,1.363,1.18,0.851,1.029,1.032,0.672,0.892,1.214,1.03,1.294,1.778,0.691,0.75,0.955,1.001,1.306,0.425,1.762,1.095,0.863,0.4,1.353,1.16,0.703,1.336,1.683,0.27,0.857,0.883,1.115,1.295,0.464,1.135,0.838,0.302,1.105,1.197,0.724,0.835,1.177,0.553,1.172,0.954,0.627,1.123,0.584 +NM_000853,0.675,0.181,0.842,1.859,0.623,0.185,0.66,0.167,0.866,1.048,1.516,0.644,0.724,0.656,1.61,0.178,1.123,0.751,0.964,1.382,0.515,0.738,1.249,0.775,2.021,0.938,0.828,0.691,0.423,2.494,1.374,1.458,1.213,0.171,0.534,1.075,1.221,0.86,0.173,0.237,1.218,1.454,1.477,0.161,0.701,1.049,0.766,0.171,0.738,0.69,1.193,0.318,1.141,1.341 +NM_000854,1.037,0.848,0.9,0.912,1.09,0.968,0.998,0.956,0.992,1.027,1.135,0.984,1.019,0.951,1.027,0.942,1.075,1.051,1.014,0.942,0.928,1.053,0.937,0.886,0.935,1.125,1.049,1.088,0.764,0.983,1.038,1.022,0.917,1.158,1.098,0.975,1.034,0.963,1.015,1.066,1.076,1.017,0.845,1.057,0.889,1.072,1.031,1.236,0.902,0.993,0.957,1.043,0.926,0.962 +NM_000855,0.88,0.983,0.924,0.911,0.955,0.964,1.089,1.277,0.981,0.917,1.132,0.931,1.07,0.91,1.319,1.04,0.824,0.824,0.937,0.937,0.931,1.107,1.071,0.979,0.949,1.011,0.942,0.99,1.225,0.962,1.068,1.024,1.137,1.145,1.036,0.938,1.063,1.038,0.874,1.038,0.981,1.0,0.962,0.95,1.182,1.003,0.891,1.009,1.11,0.862,1.0,1.171,0.941,0.929 +NM_000856,0.893,1.371,0.84,0.771,0.803,1.168,1.051,0.82,0.794,1.001,1.5,0.73,0.792,0.854,0.984,1.466,0.757,0.899,0.802,0.724,0.911,0.739,1.694,1.019,1.199,0.816,0.883,1.184,0.562,1.456,0.751,8.599,1.17,1.732,0.816,1.074,1.069,1.127,1.443,1.978,0.947,2.428,0.861,0.849,0.997,1.06,0.905,0.725,0.812,0.79,1.326,1.801,0.843,1.178 +NM_000857,1.063,0.956,0.867,0.84,0.879,1.116,0.921,1.02,1.209,0.884,1.064,0.987,1.038,0.841,1.005,0.986,0.791,0.998,0.985,0.858,1.132,0.848,0.998,0.777,0.985,0.987,0.99,1.083,1.685,1.158,0.959,2.13,0.881,0.987,1.047,1.076,1.247,1.19,1.03,1.027,0.989,0.981,0.86,0.948,1.005,1.175,1.048,0.894,0.928,1.028,1.021,1.001,0.999,1.062 +NM_000858,0.962,0.682,1.115,0.757,1.079,1.192,0.39,0.793,1.187,1.013,1.073,1.106,1.229,0.5,0.894,1.849,0.756,0.957,2.01,0.687,0.668,1.262,0.85,1.16,0.576,1.568,0.98,1.038,0.327,0.94,1.007,1.305,1.501,1.143,0.371,0.591,0.906,1.237,1.468,0.569,1.158,0.972,0.532,1.35,1.141,0.818,1.075,1.52,0.83,1.18,0.92,0.683,1.097,1.14 +NM_000859,0.779,0.747,1.207,0.743,1.448,1.263,0.838,0.495,1.43,1.433,1.473,0.803,0.478,0.793,0.907,2.159,0.76,1.519,1.247,1.959,0.631,0.943,2.311,0.926,0.692,0.704,1.735,1.18,0.59,1.535,1.239,0.749,1.411,1.453,0.227,0.726,1.855,1.258,1.007,0.44,1.156,1.199,0.949,0.554,0.995,2.219,1.074,0.763,1.224,0.865,2.667,0.504,0.898,0.692 +NM_000860,0.568,1.988,0.331,1.0,0.893,5.544,1.583,1.412,0.927,0.316,2.022,0.613,0.932,0.939,2.139,5.207,0.357,2.589,0.424,3.089,0.146,1.042,1.41,1.575,0.768,0.846,0.557,1.071,1.625,2.703,1.226,0.253,0.405,4.52,2.049,0.193,4.181,0.56,1.433,0.166,0.478,2.289,1.198,0.121,0.289,2.13,0.81,1.096,1.571,0.256,1.551,0.278,0.15,0.201 +NM_000861,0.849,0.998,1.49,0.888,0.886,1.118,0.814,0.861,0.777,0.926,0.956,0.955,0.801,0.726,0.929,1.191,1.281,1.027,0.991,1.0,0.908,0.886,1.235,0.885,0.93,0.869,1.54,0.714,0.803,0.885,0.853,1.095,1.31,1.0,0.91,0.877,1.163,0.84,1.508,1.301,0.836,1.082,0.966,1.028,1.108,1.151,0.93,0.824,0.986,0.995,1.079,1.14,1.161,1.378 +NM_000862,0.799,1.019,0.954,0.898,0.997,1.122,1.025,1.124,0.98,0.976,1.06,1.016,0.956,1.1,1.188,1.016,1.048,0.935,1.232,1.013,0.98,0.956,0.85,1.136,0.995,1.043,1.072,1.122,1.065,0.935,0.987,0.998,1.019,1.212,1.07,0.98,1.077,0.976,1.017,0.984,0.997,1.041,1.068,1.002,1.02,0.99,0.898,1.003,1.1,1.08,1.032,1.031,1.14,0.976 +NM_000863,1.049,1.121,0.925,0.863,1.05,0.971,0.877,0.856,1.188,1.089,1.074,1.101,1.061,0.931,0.966,1.049,1.167,1.074,0.974,1.022,0.899,0.977,0.841,1.032,1.04,0.919,0.951,0.909,0.842,1.022,1.018,1.019,0.86,1.007,1.013,1.076,1.026,1.126,0.976,0.867,1.044,0.997,0.877,0.972,1.089,0.995,1.146,1.118,0.997,1.085,1.072,1.077,0.894,0.969 +NM_000864,1.029,0.903,0.921,1.004,0.921,1.863,0.908,0.878,0.99,0.899,1.611,0.918,0.885,0.905,1.316,3.206,1.019,1.171,0.869,1.531,0.956,0.904,1.299,0.86,0.944,0.972,0.868,0.971,0.86,1.154,0.814,0.933,1.049,1.089,0.966,1.098,1.535,0.897,1.071,0.972,0.933,1.218,1.528,1.673,1.08,2.018,1.797,1.026,1.239,0.892,2.216,0.917,0.964,1.009 +NM_000865,0.905,1.216,0.917,1.111,1.206,0.956,1.187,1.116,0.927,0.984,1.098,0.966,1.066,0.927,0.961,0.973,0.9,0.973,0.914,1.123,0.896,1.016,1.203,1.006,1.248,1.055,1.027,1.157,1.123,1.023,1.025,1.023,1.018,1.15,0.865,1.016,1.03,0.916,0.915,0.95,1.03,1.013,0.754,0.978,0.917,0.984,1.052,0.998,0.85,0.949,0.966,0.995,1.006,1.016 +NM_000866,1.086,0.938,1.01,1.064,1.029,1.021,1.062,0.931,0.898,0.957,0.997,1.049,0.837,1.019,0.751,0.955,1.119,0.944,1.067,1.139,1.049,1.179,0.913,0.956,0.963,1.31,1.059,0.996,0.945,1.106,0.982,0.931,1.008,0.939,1.031,0.969,1.104,1.035,0.975,0.927,1.138,1.031,0.891,0.844,0.947,0.993,1.05,0.903,0.852,0.957,0.934,0.785,0.935,1.042 +NM_000867,0.919,2.195,0.832,1.341,0.859,1.63,1.13,0.964,0.919,0.809,1.432,0.872,0.957,1.024,0.942,1.022,0.904,1.214,0.885,2.241,0.964,0.875,1.83,0.907,1.016,0.959,0.784,0.738,0.873,1.225,0.962,1.161,0.948,1.459,0.984,1.063,1.372,0.982,1.167,0.874,0.912,1.428,0.965,0.977,0.901,1.43,1.094,0.846,0.844,0.959,2.861,1.032,0.779,0.959 +NM_000868,1.0,1.04,1.0,1.02,0.908,1.195,1.056,0.976,0.831,1.002,1.014,0.974,1.046,1.256,0.815,0.902,0.926,0.838,0.947,0.96,1.021,1.027,1.063,0.946,1.002,1.087,1.021,1.066,0.869,1.194,1.079,0.89,0.977,0.883,0.87,0.98,0.96,1.056,1.115,1.002,1.022,1.029,1.08,0.937,1.07,0.943,1.007,0.91,1.011,0.885,0.985,1.008,0.977,0.967 +NM_000869,1.245,0.856,1.239,1.016,1.049,1.115,0.746,1.212,0.96,1.014,1.132,0.808,1.353,1.016,1.254,0.925,0.925,0.915,1.077,1.052,1.101,1.273,0.917,1.089,0.736,1.04,0.811,0.898,1.07,1.059,1.107,0.815,1.126,0.883,1.248,1.575,0.957,0.854,1.252,0.993,1.034,1.076,1.016,0.957,1.217,0.978,0.946,1.068,1.039,1.024,0.968,0.9,0.844,1.02 +NM_000870,1.013,1.021,1.133,0.999,1.028,1.01,0.995,0.858,1.015,1.022,1.002,0.998,0.912,1.293,1.018,1.142,0.914,1.017,0.896,1.154,1.154,1.05,0.852,1.063,0.967,0.949,1.001,0.871,1.202,0.803,0.924,1.041,1.089,0.932,0.949,1.029,1.087,1.013,0.963,1.065,1.039,0.979,1.213,1.078,1.123,0.955,1.129,1.064,0.968,0.833,1.087,0.963,0.953,0.922 +NM_000871,1.1,0.967,0.946,0.995,1.069,0.855,0.847,1.116,1.077,1.083,0.874,1.052,0.93,1.108,0.745,1.093,1.019,0.978,0.948,0.922,0.75,1.019,1.02,1.039,1.047,1.405,1.129,0.877,1.07,1.021,1.035,1.227,0.779,0.897,0.959,1.149,0.93,1.222,1.136,0.971,0.994,0.883,1.304,1.058,0.87,0.772,0.978,1.004,1.032,0.969,1.029,1.042,1.013,0.952 +NM_000872,0.989,1.027,1.114,0.909,1.005,0.916,1.054,1.036,1.12,1.041,0.951,0.952,1.128,0.899,0.839,0.894,1.121,1.358,1.043,0.976,0.984,0.899,0.991,1.066,0.953,1.037,1.041,1.049,1.184,1.039,1.028,0.938,0.981,1.08,0.957,0.891,0.934,1.012,1.083,0.827,0.945,1.005,1.013,1.043,1.065,0.845,1.108,0.961,0.868,1.116,0.845,1.024,0.998,0.972 +NM_000873,0.477,2.746,0.588,0.914,0.552,1.022,1.869,0.561,0.535,0.558,0.991,0.431,0.587,0.58,0.571,1.455,0.483,1.139,0.493,0.731,0.527,0.488,1.453,0.589,0.898,0.454,0.544,0.519,0.59,3.698,0.518,2.304,1.158,3.581,0.552,3.101,1.126,0.653,2.735,2.479,0.613,2.829,0.889,2.727,0.704,0.935,1.211,0.513,0.579,0.448,1.708,2.564,0.675,1.995 +NM_000874,1.232,1.061,1.031,1.077,1.158,0.893,0.776,1.039,1.002,0.925,0.913,0.853,0.966,0.907,1.151,1.285,0.995,0.889,0.864,0.914,1.082,1.032,1.027,0.877,1.0,1.066,1.148,1.202,1.049,0.933,1.021,0.936,1.012,0.881,1.037,0.899,0.916,1.03,1.0,0.952,1.23,0.951,1.077,1.07,1.148,0.978,1.047,1.27,0.897,0.903,0.871,1.012,0.889,1.173 +NM_000875,0.979,1.043,1.035,1.096,1.057,0.984,0.965,0.916,1.132,1.127,0.844,1.134,1.155,0.941,0.956,0.769,1.103,0.924,1.008,0.879,0.861,0.88,1.037,1.082,1.038,0.912,1.106,1.015,0.927,0.914,1.024,1.072,1.078,0.958,1.048,0.926,0.964,0.919,0.971,1.101,1.005,0.956,0.921,1.004,0.964,0.927,0.966,0.883,0.925,1.175,0.818,1.024,0.966,1.133 +NM_000876,0.895,1.043,1.404,0.739,0.902,0.874,1.071,0.662,1.017,0.818,0.996,0.726,0.688,0.712,1.004,1.145,0.803,1.029,0.869,1.133,0.642,0.918,1.341,0.733,0.8,0.844,1.034,0.73,0.692,1.063,0.857,1.356,1.103,1.238,0.568,0.755,1.209,0.867,1.532,1.491,0.916,1.337,0.747,1.087,0.934,1.063,0.962,0.804,0.996,0.775,1.077,1.218,0.818,0.983 +NM_000877,0.765,1.049,1.293,0.722,1.043,0.955,1.025,0.68,1.227,0.795,0.8,0.723,0.783,0.617,0.96,0.968,0.874,0.716,0.946,0.838,0.751,0.8,1.131,1.1,0.826,0.66,1.243,1.028,0.638,2.017,1.078,4.785,1.253,1.82,0.609,0.691,0.82,0.782,1.944,1.003,1.202,1.887,0.883,0.656,0.778,0.865,0.807,0.81,0.761,0.977,0.993,0.999,0.763,1.648 +NM_000879,1.089,1.127,0.849,0.966,1.055,0.962,0.692,0.992,0.939,0.992,1.024,1.098,0.953,0.966,1.049,0.96,1.138,1.013,0.951,0.982,0.981,0.872,0.868,0.887,1.114,1.038,1.312,0.957,0.702,1.088,0.997,1.018,0.906,1.08,1.005,1.047,1.05,1.069,1.132,1.001,1.009,0.91,1.102,0.906,0.991,0.982,1.121,1.12,0.96,1.023,1.157,1.025,0.907,0.911 +NM_000880,0.904,1.062,0.947,0.852,0.936,1.301,0.822,0.986,0.844,0.952,1.296,0.964,0.983,0.935,0.896,1.172,0.971,1.062,0.776,1.187,0.857,0.887,0.913,1.018,1.039,0.884,1.029,0.935,0.496,1.042,1.093,0.977,0.9,1.131,0.756,1.009,1.109,0.849,1.102,0.93,1.045,0.979,0.972,1.032,0.9,1.46,1.151,0.861,1.189,0.765,1.1,0.881,0.841,0.933 +NM_000882,1.73,0.963,1.324,1.093,1.324,0.831,0.916,1.471,1.785,1.103,1.01,1.074,1.466,1.52,1.399,0.95,0.958,1.232,1.565,0.991,0.905,1.466,0.868,1.383,0.903,1.305,1.004,1.746,0.741,0.93,1.584,1.084,1.152,0.875,1.844,0.937,0.854,1.187,0.743,0.886,1.78,0.91,0.901,0.949,1.244,0.973,0.947,1.494,1.016,0.96,1.041,1.032,0.974,1.145 +NM_000883,0.876,1.012,1.047,1.176,0.928,0.942,0.994,1.294,0.987,1.077,0.88,1.037,1.001,1.04,0.928,1.088,1.089,0.845,1.011,1.025,1.032,0.876,0.926,1.047,0.956,0.871,0.916,1.125,0.895,0.982,1.022,1.055,0.978,1.122,1.093,1.066,1.009,1.284,1.076,1.113,1.068,0.93,0.984,0.971,1.044,0.96,0.934,1.028,0.958,0.998,0.928,0.993,1.088,0.851 +NM_000884,0.833,1.39,1.195,0.623,1.127,0.86,0.394,0.46,1.219,1.394,0.714,1.53,0.881,0.676,0.733,0.898,0.996,0.809,1.362,1.085,0.55,0.944,1.793,1.89,0.465,1.133,1.825,1.008,0.215,1.108,0.95,0.898,1.021,0.98,0.0588,1.685,0.793,1.432,1.337,0.565,1.492,1.301,0.559,1.035,1.238,0.888,0.971,0.795,1.347,0.985,1.073,0.976,1.172,1.341 +NM_000885,1.034,0.865,0.856,1.037,1.029,1.015,0.89,1.02,0.903,0.821,0.941,0.953,1.02,0.856,0.9,0.985,0.953,0.939,0.918,0.943,1.04,0.799,1.06,0.849,1.027,0.88,0.905,0.845,1.062,0.909,1.019,1.011,0.944,1.094,1.095,1.012,0.977,0.998,1.004,0.994,0.783,0.908,1.067,0.853,1.157,1.074,0.82,0.987,0.948,0.958,1.08,1.097,1.055,1.073 +NM_000887,0.966,0.962,1.114,1.281,0.978,0.934,0.997,0.859,0.882,0.904,0.935,0.93,0.928,0.971,0.898,0.998,1.242,1.096,0.97,0.911,0.953,0.934,1.01,1.039,1.001,0.964,1.231,0.959,0.649,0.952,0.904,2.127,0.993,1.0,0.968,0.926,0.946,0.988,1.543,4.354,0.904,1.099,0.769,1.109,1.051,0.91,1.035,0.957,1.019,1.195,0.913,1.904,1.172,1.513 +NM_000888,0.915,1.025,0.977,1.128,0.877,1.078,0.875,0.9,0.861,0.913,1.126,1.011,0.819,0.86,0.938,1.002,0.982,1.026,0.952,1.073,0.972,0.917,0.901,0.788,0.939,0.97,0.993,0.95,1.521,1.09,0.904,1.064,1.059,1.057,0.928,0.984,1.088,0.966,1.343,0.806,1.023,1.029,1.004,0.971,0.866,1.262,1.116,1.032,1.084,0.949,1.004,1.052,0.912,1.073 +NM_000889,0.966,0.948,1.126,0.889,1.161,0.825,1.015,0.89,1.093,0.778,0.78,0.862,1.028,0.998,1.143,0.962,1.126,1.084,1.022,0.851,0.938,1.176,0.826,1.11,1.061,1.052,1.146,0.844,0.708,0.977,1.053,0.885,1.017,1.011,1.062,1.684,1.004,0.974,1.002,0.863,1.026,1.041,0.792,1.008,1.095,0.939,1.045,1.261,0.918,1.038,0.953,0.905,1.192,1.325 +NM_000890,1.025,1.066,0.98,0.952,1.107,0.988,1.085,0.976,0.929,0.895,1.036,1.115,0.934,1.137,0.935,0.949,0.881,1.019,0.975,0.958,0.897,1.036,1.001,0.913,0.971,1.016,0.826,1.027,1.344,0.881,1.061,0.967,0.977,0.9,0.975,0.856,0.927,0.911,1.082,0.942,0.889,1.086,0.813,1.133,0.919,1.012,0.926,1.079,1.126,1.012,1.031,0.955,0.9,1.107 +NM_000891,1.211,0.695,3.512,1.019,1.398,0.578,0.726,0.921,1.715,1.006,0.801,2.022,1.196,1.253,1.464,0.858,1.561,0.786,1.95,0.864,1.184,1.602,1.08,1.665,0.652,1.202,7.251,1.537,0.56,0.766,1.246,0.781,1.214,0.702,0.519,0.767,0.947,2.064,0.981,2.105,1.975,0.856,0.815,0.619,1.525,0.85,0.84,0.851,0.839,2.229,0.789,2.817,1.483,1.03 +NM_000894,1.095,1.044,1.148,1.116,1.031,0.944,0.981,0.935,1.127,0.936,1.074,0.975,1.108,1.317,1.294,0.981,0.782,0.882,0.854,1.14,1.055,1.055,1.038,0.844,1.044,1.002,0.826,0.981,0.974,1.055,1.227,0.978,0.898,1.081,0.882,0.958,0.901,0.942,1.062,1.113,1.191,1.063,0.977,1.106,1.095,0.976,1.037,0.88,1.135,0.992,0.913,0.931,1.308,0.937 +NM_000895,1.081,0.586,2.455,0.574,1.377,0.77,0.282,0.896,2.703,1.707,0.534,1.25,0.916,0.915,1.216,1.301,1.39,1.338,3.043,0.818,0.768,1.441,0.904,1.982,0.332,1.108,3.93,1.712,0.156,0.804,1.796,0.938,1.77,0.837,0.637,0.645,0.868,1.572,0.701,0.503,1.668,0.933,0.496,0.392,1.454,0.766,1.477,1.106,0.663,1.178,1.106,1.059,1.702,1.243 +NM_000897,1.03,1.09,1.09,1.01,1.088,1.052,1.081,1.036,0.977,0.85,0.882,1.006,0.993,1.09,0.803,0.947,0.96,1.028,1.165,0.921,0.964,1.043,0.968,1.048,1.026,0.943,0.956,0.963,0.993,1.115,0.922,0.997,0.949,1.089,0.903,0.864,0.906,1.095,0.977,0.992,0.87,1.008,0.942,1.061,0.969,1.003,0.932,0.945,1.031,1.004,1.014,1.029,1.063,1.124 +NM_000898,0.732,1.319,0.903,0.752,1.152,1.709,0.81,0.448,0.724,1.418,3.02,0.824,0.407,0.713,1.053,2.863,0.69,0.681,1.698,1.059,0.625,0.663,1.023,1.346,0.681,0.842,1.691,1.494,0.704,1.523,1.095,0.637,1.119,2.403,0.312,0.933,1.91,1.383,1.359,0.306,1.205,2.06,1.153,1.719,0.888,1.301,1.206,0.55,1.191,0.754,2.126,0.523,0.622,0.504 +NM_000899,0.854,0.992,1.034,0.958,0.935,1.053,1.096,1.152,1.161,0.895,0.93,1.064,1.066,0.883,1.27,1.025,0.905,0.944,1.086,1.035,1.036,0.951,1.078,1.119,1.057,0.957,0.879,1.087,1.296,1.055,1.023,1.051,1.056,0.955,1.0,0.969,0.942,1.106,1.105,0.987,1.093,0.94,1.17,1.029,0.985,0.887,0.906,1.013,1.038,1.03,1.041,1.164,0.852,0.996 +NM_000900,0.39,1.342,0.566,0.672,0.542,1.472,1.026,0.484,0.479,0.732,1.131,0.408,0.509,0.456,0.862,1.475,0.414,0.465,0.441,0.758,0.935,0.477,1.92,0.638,1.197,0.479,0.603,1.494,0.423,1.456,0.398,20.57,3.758,4.818,0.441,1.893,0.643,1.387,3.354,3.392,1.409,6.219,0.919,0.93,0.522,0.851,0.881,0.454,0.846,0.466,1.189,4.234,1.013,1.95 +NM_000901,0.641,1.62,0.714,0.945,0.604,2.59,1.385,0.61,0.633,0.641,2.082,0.657,0.606,0.706,1.842,3.25,0.555,1.58,0.613,2.533,0.626,0.674,2.194,0.557,1.026,0.637,0.625,0.73,1.232,1.909,0.673,1.308,0.683,2.787,0.664,0.737,2.174,0.697,1.398,0.679,0.637,2.396,1.165,0.684,0.626,2.684,1.299,0.548,2.45,0.699,1.964,0.706,0.596,0.787 +NM_000902,1.014,0.953,0.931,0.962,0.933,1.074,1.071,1.271,1.032,0.916,1.017,1.044,0.938,0.958,0.916,1.098,0.825,1.175,1.008,1.158,1.19,0.959,1.054,0.857,0.958,1.066,1.166,0.949,0.915,0.981,0.999,0.998,1.072,0.935,0.879,1.103,1.089,1.084,0.975,1.052,1.02,0.938,0.77,0.9,0.976,0.95,0.955,0.988,1.011,0.962,0.973,0.871,1.148,1.084 +NM_000904,0.687,1.066,1.394,0.678,0.873,1.27,0.667,0.474,1.281,1.256,1.195,0.689,0.645,0.75,1.025,1.888,1.087,0.959,1.315,0.642,1.117,1.099,0.69,1.557,0.501,0.665,1.102,0.768,0.53,0.961,1.07,1.313,2.171,0.653,0.337,0.892,1.052,1.049,1.282,0.754,0.997,0.888,0.606,2.055,1.052,0.696,1.236,0.918,1.048,1.296,1.35,1.165,1.036,1.091 +NM_000905,0.981,1.051,0.942,1.092,0.769,1.535,1.177,1.189,0.999,0.812,0.957,1.084,0.9,0.768,1.253,0.727,0.795,0.906,0.947,0.953,0.99,0.848,1.335,1.068,1.064,1.26,1.001,0.915,1.049,1.494,0.827,0.737,9.402,1.11,0.898,0.885,1.092,0.923,1.143,0.85,0.91,1.071,1.262,0.953,0.902,0.788,0.834,0.922,0.879,0.921,1.126,0.855,1.072,0.877 +NM_000906,0.99,1.012,0.897,1.106,1.129,1.044,0.785,0.96,1.039,1.024,1.012,0.932,0.836,1.153,0.886,1.009,0.985,0.927,0.868,1.022,0.844,0.991,0.997,0.956,1.092,0.966,1.075,0.906,1.009,1.176,0.979,1.305,1.156,0.901,0.988,0.898,0.958,1.004,1.116,0.97,1.132,1.131,1.044,0.857,0.909,1.013,1.002,0.987,0.902,0.986,0.982,1.027,0.913,1.17 +NM_000907,0.955,1.004,0.937,0.873,0.995,0.882,0.968,0.941,0.894,0.888,0.943,1.031,0.895,0.968,0.882,1.101,1.161,0.976,1.002,1.026,1.07,0.977,1.065,1.108,1.03,1.019,1.163,1.108,1.009,0.952,0.914,0.834,1.038,0.91,0.914,0.999,0.866,0.932,1.084,0.987,0.96,1.003,0.972,0.941,1.144,0.979,1.135,1.086,1.089,1.024,1.078,0.776,1.032,1.211 +NM_000908,1.108,0.948,1.29,0.999,1.152,0.836,0.945,0.962,1.352,1.515,0.943,1.105,1.04,1.032,0.9,0.905,1.04,1.108,1.341,1.028,1.062,0.918,0.999,1.21,0.953,1.084,1.139,1.261,1.378,0.885,0.992,0.917,1.08,0.94,1.098,0.965,0.819,1.207,1.047,0.977,1.257,1.103,1.04,0.898,1.2,0.943,0.956,1.205,0.947,1.193,0.826,0.946,1.269,0.977 +NM_000910,1.04,0.992,1.094,0.985,0.835,0.956,1.093,1.053,1.076,0.965,0.93,1.113,1.061,1.081,0.887,1.174,1.009,0.966,1.04,0.957,0.963,1.036,0.897,0.938,1.063,1.19,1.025,0.921,1.05,0.961,1.011,0.988,0.924,0.967,0.882,1.001,1.058,1.075,0.969,0.951,1.051,1.042,0.885,1.088,0.772,0.892,1.162,0.944,0.963,0.997,0.978,0.969,1.135,0.837 +NM_000911,1.032,1.024,0.999,1.032,0.985,0.988,0.868,0.91,1.093,0.934,0.991,0.92,0.989,1.071,0.745,1.033,1.071,0.99,1.182,1.011,0.951,1.005,1.002,1.01,1.051,1.062,0.858,0.992,0.996,0.97,1.032,0.914,0.914,1.008,1.045,0.963,0.94,1.002,1.097,0.931,0.934,1.125,1.037,1.065,0.94,1.078,1.063,1.084,1.111,0.936,0.994,1.001,1.061,1.103 +NM_000912,1.033,1.0,0.927,0.964,1.039,1.421,1.002,0.995,1.058,1.179,0.885,1.001,1.066,0.932,0.934,1.016,1.025,0.96,1.054,0.943,0.999,0.992,1.006,0.9,0.994,1.003,1.072,1.173,0.951,1.078,0.936,0.966,1.038,1.003,1.094,1.043,0.899,1.136,1.059,0.965,1.021,1.172,0.91,0.921,0.878,0.997,0.991,1.031,1.006,1.089,1.02,0.915,0.924,1.068 +NM_000913,0.916,1.046,1.024,0.957,1.084,1.018,0.849,0.974,1.055,1.13,0.991,0.998,0.919,0.809,0.949,0.918,1.045,1.016,0.959,0.922,0.831,0.949,0.845,1.041,0.98,1.049,0.919,0.906,1.104,0.986,0.991,1.299,0.971,0.991,1.03,0.993,0.935,0.955,1.134,1.349,0.981,1.134,0.982,1.214,1.046,1.012,0.902,1.007,0.887,1.059,1.038,0.972,1.014,1.428 +NM_000914,1.037,1.122,0.855,0.796,1.038,1.117,0.859,0.892,0.922,0.916,1.126,1.05,1.105,0.947,1.013,1.101,1.109,1.055,0.949,1.237,1.14,1.046,1.105,0.948,1.036,1.061,0.951,0.997,0.82,0.972,1.249,1.0,0.85,0.932,1.11,1.019,0.867,1.127,0.998,1.045,1.214,1.178,1.139,0.977,1.047,0.962,1.04,1.181,0.95,0.943,1.024,0.88,0.998,1.073 +NM_000915,1.006,0.959,0.989,1.0,0.791,0.841,0.99,1.081,0.995,0.972,1.055,0.93,0.866,1.031,0.975,0.951,1.076,1.214,1.184,1.097,1.023,0.938,1.065,0.762,1.041,0.855,0.826,0.847,0.972,1.216,0.877,1.162,1.132,0.97,1.138,1.299,0.975,1.147,1.101,0.973,0.936,1.024,0.925,0.887,1.095,1.067,0.837,0.87,0.967,0.976,0.727,0.888,1.078,1.527 +NM_000917,0.519,1.355,0.827,0.67,0.673,1.703,1.235,0.494,0.632,0.507,1.363,0.62,0.522,0.479,0.775,1.747,0.526,0.985,0.506,1.421,0.374,0.658,1.363,0.838,1.104,0.472,0.708,0.741,0.804,1.727,0.502,1.843,1.813,1.418,0.491,0.901,1.371,0.714,1.994,2.411,0.621,1.492,0.581,0.97,0.554,1.708,1.176,0.587,1.136,0.681,1.706,1.562,0.376,1.229 +NM_000918,0.858,0.926,0.925,0.963,0.987,1.238,0.477,0.559,0.962,0.709,1.124,0.568,0.604,0.543,0.875,1.497,1.138,1.22,1.425,0.7,0.617,1.079,1.179,0.94,0.766,1.21,1.109,0.725,0.537,1.511,0.709,0.901,0.643,1.405,0.585,0.668,1.474,1.056,1.741,0.45,1.026,1.164,0.584,1.366,1.087,1.195,0.968,1.04,1.095,1.129,1.21,0.497,0.835,0.709 +NM_000920,1.021,1.01,1.088,0.936,0.954,1.026,0.928,0.886,0.959,0.962,1.046,1.01,1.023,1.132,0.9,1.084,1.034,0.997,1.011,0.941,1.157,1.092,0.921,1.039,0.998,0.87,1.015,1.084,0.922,1.033,0.914,1.004,1.01,0.913,0.96,0.977,1.139,0.987,1.014,0.928,1.063,1.023,0.953,0.961,0.987,0.944,1.057,1.053,0.971,1.039,0.881,1.032,1.02,1.092 +NM_000922,1.025,1.077,0.876,0.956,0.985,1.055,1.123,1.06,0.978,1.105,1.073,1.154,0.879,0.959,1.053,1.059,0.986,1.072,1.147,0.982,0.931,0.995,0.949,0.854,0.95,0.985,0.991,0.95,1.202,0.952,1.159,0.975,1.056,1.066,0.991,1.077,1.063,0.883,0.998,1.026,0.923,1.039,0.931,0.985,0.997,1.11,0.96,0.985,1.063,0.909,1.088,0.838,1.12,1.294 +NM_000924,1.006,1.047,0.947,1.034,0.826,0.989,0.946,0.982,1.074,0.955,1.022,0.926,1.138,1.023,1.081,0.805,1.149,1.116,1.05,0.829,1.059,1.121,1.106,1.078,0.918,0.994,0.936,0.925,1.33,0.99,0.899,1.039,1.183,0.969,0.907,0.87,0.982,1.054,1.063,0.863,1.074,1.014,1.032,0.994,0.929,0.997,0.851,1.025,0.941,0.998,1.003,1.077,0.954,0.868 +NM_000925,0.871,1.099,1.233,0.732,1.028,1.061,0.516,0.462,1.338,1.094,1.044,1.157,0.648,0.812,0.928,1.235,1.026,0.876,1.239,0.888,0.518,0.911,1.06,1.139,0.999,0.933,1.662,1.149,0.347,1.039,0.917,1.184,0.948,1.226,0.161,0.862,1.195,0.869,1.15,0.665,1.266,0.88,0.679,0.555,1.131,0.96,0.973,0.784,0.823,0.769,1.241,0.738,1.074,1.465 +NM_000927,1.024,1.045,1.058,0.944,0.991,0.96,1.046,0.974,0.891,0.973,0.918,0.985,1.018,0.908,0.935,0.957,0.939,0.968,0.95,0.847,1.053,0.889,1.142,0.961,0.96,0.832,0.941,0.915,0.897,1.077,0.961,2.715,1.619,1.161,0.976,1.033,1.312,1.052,1.035,0.974,0.927,1.264,0.859,0.909,1.106,0.91,0.95,0.913,1.45,1.11,1.045,1.28,1.26,1.112 +NM_000928,0.96,1.02,1.014,89.15,0.883,0.891,1.16,0.872,0.858,1.062,1.183,0.949,1.016,1.066,0.924,1.146,0.984,0.869,0.893,0.95,1.023,0.998,0.971,0.922,1.384,0.886,0.965,0.99,0.703,1.063,0.975,0.944,1.075,1.415,1.154,0.832,1.189,1.002,0.92,0.972,1.031,0.905,1.01,1.011,0.851,0.99,1.007,1.019,1.024,0.833,0.978,1.098,0.949,0.952 +NM_000929,0.987,1.09,1.069,0.901,1.108,1.087,0.882,1.068,0.988,0.914,0.933,1.094,0.842,1.024,1.118,1.155,0.907,1.097,0.844,1.093,1.105,0.918,1.103,0.96,1.052,0.959,0.983,0.994,1.258,1.203,0.976,1.556,0.98,0.855,0.944,1.026,1.014,0.961,1.017,1.002,1.304,1.024,1.185,0.988,0.899,1.165,0.853,0.998,0.906,0.966,1.049,1.017,0.941,1.028 +NM_000931,0.437,0.708,2.528,0.637,0.442,0.685,0.701,0.503,0.451,0.71,0.608,0.505,0.708,0.407,0.729,0.893,6.638,0.481,1.436,0.616,1.047,0.422,1.108,0.519,0.766,0.486,5.61,0.486,0.382,2.01,0.469,5.508,2.348,1.347,0.464,0.537,0.981,0.59,1.199,1.004,1.451,1.219,0.707,0.623,1.473,1.018,1.406,0.463,0.667,11.73,0.782,4.253,4.065,1.724 +NM_000932,0.889,0.939,0.874,1.018,0.876,1.52,0.946,0.834,1.184,0.905,1.193,0.77,0.78,0.83,1.257,1.878,1.142,0.896,1.032,0.931,0.832,0.827,1.286,1.003,0.748,0.886,0.974,1.003,0.87,1.315,0.954,1.017,1.073,1.108,0.689,0.932,1.531,1.09,1.656,0.763,0.979,1.239,1.038,1.135,0.796,1.181,1.105,0.82,1.277,0.979,1.099,0.758,0.762,0.882 +NM_000934,1.191,0.939,1.082,1.112,1.095,0.743,0.803,1.008,0.896,1.032,0.842,1.163,1.086,0.952,1.068,1.066,0.996,1.083,1.027,1.045,0.999,1.013,1.0,1.015,0.854,1.042,1.171,0.834,1.423,0.919,0.993,0.9,1.017,0.896,1.058,2.371,0.864,1.108,0.968,2.383,0.967,1.088,0.835,0.994,0.912,0.785,1.069,0.842,0.947,1.132,0.828,1.014,1.262,1.0 +NM_000935,0.771,0.889,1.16,0.763,0.858,1.409,0.623,0.727,0.936,0.874,1.55,0.895,0.779,0.786,1.505,1.085,0.732,0.946,1.622,1.067,0.665,0.862,0.662,0.854,0.862,0.783,1.488,1.004,0.571,1.14,0.796,3.439,1.263,1.239,0.481,0.608,2.131,1.021,1.321,2.733,0.973,1.314,0.385,1.457,1.155,0.769,0.996,0.783,1.122,0.981,1.34,1.071,0.838,1.056 +NM_000936,1.126,1.07,1.011,152.7,0.932,0.91,0.999,1.085,1.138,0.996,1.053,0.879,1.135,0.932,1.004,1.053,0.977,0.959,1.053,1.027,0.979,1.003,0.918,0.873,1.007,0.999,0.975,1.04,1.036,1.063,0.999,0.885,0.922,1.041,0.959,0.978,1.031,1.0,1.0,0.979,1.079,1.028,1.114,0.967,0.881,1.028,0.959,1.12,0.88,1.096,0.936,0.93,0.996,0.942 +NM_000937,1.301,0.671,2.197,0.683,1.096,0.79,0.484,0.721,1.191,0.976,0.817,0.858,0.595,1.062,1.321,1.185,1.377,0.957,1.956,0.795,0.885,1.669,0.753,0.873,0.65,1.201,2.027,0.733,0.601,0.909,1.315,1.045,3.248,1.076,1.134,0.767,0.945,1.613,1.543,1.132,1.145,1.131,0.643,0.868,1.2,0.703,0.797,1.457,0.661,1.702,0.978,0.682,1.268,1.545 +NM_000938,0.477,1.258,1.169,0.608,0.866,1.087,0.689,0.406,1.344,1.048,0.836,0.545,0.519,0.685,1.12,1.665,0.813,0.976,1.204,1.046,0.774,0.811,1.554,0.997,0.549,0.646,1.398,0.679,0.641,1.045,1.05,1.225,2.314,1.459,0.357,0.601,0.859,0.953,1.4,1.083,1.009,1.207,0.65,1.09,0.925,0.804,0.978,0.523,1.07,0.746,0.926,0.67,0.898,1.445 +NM_000939,1.076,0.79,0.963,1.023,1.26,0.849,1.073,1.162,1.407,1.0,0.943,1.102,1.053,1.182,0.963,1.037,1.001,1.019,1.183,0.98,1.023,0.951,0.93,0.999,1.064,1.132,0.774,0.879,0.657,0.938,1.135,1.356,0.875,1.026,1.067,0.887,1.134,1.108,0.952,0.902,1.117,1.123,0.847,0.898,1.095,1.13,1.06,1.221,0.962,1.121,1.006,1.07,1.105,1.026 +NM_000940,0.995,1.169,0.927,0.985,0.834,1.162,0.867,0.796,0.811,0.963,1.352,0.828,0.823,0.699,1.0,1.064,1.164,0.797,0.948,1.059,0.896,0.794,3.283,0.903,0.936,0.867,0.855,0.86,0.759,1.259,0.854,2.002,1.374,1.088,0.862,0.878,0.972,0.848,1.013,1.073,0.864,1.188,0.851,5.545,1.015,0.849,1.648,0.805,1.13,0.887,1.386,7.024,1.094,1.578 +NM_000941,1.046,0.728,0.823,0.948,0.781,1.281,0.603,0.755,1.051,0.735,0.848,0.669,0.712,0.677,0.765,1.369,1.247,1.01,1.579,0.761,0.888,1.172,1.12,0.899,0.738,1.351,1.187,0.559,0.976,1.125,0.744,0.997,1.596,1.165,1.192,0.572,1.257,0.969,2.162,0.901,0.853,1.104,0.886,2.845,0.925,0.808,0.984,1.363,0.827,1.178,0.798,1.075,0.941,0.974 +NM_000942,0.413,1.5,0.717,0.734,0.573,1.839,1.102,0.451,0.67,0.661,1.103,0.871,0.674,0.228,0.727,2.197,0.493,1.036,0.932,1.318,0.403,0.656,2.569,0.791,0.749,0.592,0.734,0.586,0.551,1.499,0.489,1.747,1.193,2.123,0.0816,1.565,1.383,0.567,2.69,0.891,0.727,1.634,0.642,1.183,0.834,1.033,1.015,0.615,1.727,0.68,1.659,0.861,0.708,2.083 +NM_000943,0.715,0.611,1.26,0.65,1.158,1.22,0.586,0.59,1.19,0.91,1.829,0.512,0.568,0.781,1.123,2.266,0.923,1.017,1.6,0.986,0.683,0.659,1.364,0.997,0.315,0.782,0.611,0.947,0.407,1.577,1.048,1.486,1.008,1.067,0.109,0.646,1.144,0.862,1.231,0.403,1.461,1.012,0.617,0.862,1.273,1.222,0.697,0.652,1.055,1.023,1.341,1.022,1.274,1.504 +NM_000944,0.838,1.472,0.961,0.91,0.836,1.043,0.931,0.729,0.88,0.939,1.126,0.786,0.663,0.787,0.891,1.062,0.871,0.965,0.962,1.088,0.701,0.679,1.014,0.768,1.053,0.892,1.023,0.858,0.805,1.061,0.97,1.149,1.043,1.115,0.635,0.99,1.097,0.974,1.389,0.934,0.946,1.359,0.851,1.308,0.881,1.111,1.016,0.853,1.105,0.992,1.086,0.986,0.912,1.028 +NM_000945,0.766,0.792,1.449,0.663,0.912,0.927,0.583,0.427,0.991,1.028,1.044,0.774,0.568,0.775,0.897,1.316,0.865,1.069,1.213,0.664,0.667,0.723,1.149,1.02,0.625,0.862,1.311,0.897,0.448,1.163,0.765,0.964,1.307,1.28,0.246,0.825,1.139,0.993,1.443,1.439,1.199,1.036,0.774,1.149,1.033,1.093,0.932,0.716,1.163,1.072,0.982,0.898,0.994,1.059 +NM_000946,0.868,0.952,0.987,0.811,0.857,1.217,0.731,0.687,0.919,1.125,0.951,1.081,0.983,0.873,0.716,0.961,0.818,1.043,1.099,0.81,0.974,0.758,1.136,1.102,0.919,0.786,1.445,0.85,0.66,1.215,0.974,0.88,2.035,1.185,0.689,1.388,1.062,1.059,1.521,0.996,0.937,1.024,0.805,1.653,0.859,0.935,1.06,0.859,1.018,0.906,1.112,0.992,1.013,2.284 +NM_000948,0.905,1.171,1.028,0.988,1.103,0.884,1.305,1.046,0.832,0.994,0.885,1.001,0.944,1.058,0.949,0.964,0.917,1.136,1.016,0.966,0.952,0.933,1.043,0.892,0.907,0.932,1.034,0.994,1.203,1.051,1.2,1.065,0.997,1.059,0.94,1.026,1.102,1.127,1.019,0.985,1.04,1.049,1.032,1.021,0.944,1.01,1.065,0.978,0.819,1.095,0.946,0.976,1.021,1.191 +NM_000949,0.927,1.05,0.867,0.926,0.977,1.135,1.015,0.842,0.94,0.805,1.197,0.885,0.974,1.017,1.181,1.104,0.932,0.919,1.092,1.168,0.949,0.974,1.006,0.794,1.023,0.849,0.794,0.921,1.128,1.268,0.746,0.841,0.957,1.292,1.047,0.902,1.155,1.071,0.94,0.841,1.008,1.12,1.09,0.92,0.894,1.153,0.956,0.823,0.993,1.012,0.907,0.806,0.745,0.93 +NM_000950,0.813,1.051,1.167,0.793,0.831,1.207,0.912,0.746,1.005,0.896,0.816,0.994,0.821,0.942,0.861,1.381,1.12,0.911,1.283,0.948,0.729,0.881,1.194,0.917,0.765,0.631,0.991,1.05,0.826,1.15,0.912,1.267,1.653,0.904,0.753,1.37,1.056,0.911,1.225,1.14,0.858,0.761,1.284,0.868,0.98,1.062,1.037,0.812,1.153,1.11,1.001,1.371,0.985,0.945 +NM_000951,0.696,1.372,1.209,0.654,0.996,1.587,0.71,0.552,1.359,1.035,1.241,0.679,0.794,0.659,0.94,0.995,0.989,1.071,0.904,1.288,0.325,0.863,1.353,1.035,0.662,0.854,1.077,1.013,0.545,1.779,0.778,1.255,0.808,1.067,0.76,0.899,1.26,0.929,1.122,1.104,1.095,1.181,0.874,1.059,1.068,1.144,1.647,1.027,0.849,0.761,0.973,0.877,0.799,1.212 +NM_000952,0.866,1.068,1.08,1.148,1.083,1.007,0.861,0.789,0.791,0.895,0.955,0.826,0.908,0.812,0.916,0.988,1.405,1.155,0.851,0.68,0.854,0.883,0.873,0.931,0.685,0.863,1.396,0.927,0.773,1.563,1.339,1.066,0.822,0.936,1.085,1.016,0.944,1.087,1.779,1.647,0.873,0.993,0.826,1.245,0.896,0.899,0.898,1.171,0.703,0.799,0.95,1.268,1.074,1.186 +NM_000953,0.901,0.871,1.003,1.015,0.928,0.981,1.078,1.079,0.857,1.168,0.91,1.025,1.114,0.935,0.976,0.958,0.997,1.025,1.02,1.088,1.239,1.011,0.914,0.986,0.991,1.017,0.989,0.995,1.023,0.943,0.902,1.089,0.992,0.945,0.958,0.946,1.019,0.956,0.967,0.997,0.916,1.219,0.955,0.978,1.014,1.076,0.992,0.891,0.977,0.906,1.009,1.069,0.92,1.157 +NM_000955,0.916,1.261,0.965,0.88,0.929,0.981,1.22,0.89,1.058,0.956,1.013,1.047,0.84,0.799,1.127,1.124,0.947,1.135,0.98,0.824,0.868,1.019,1.22,0.904,0.995,0.812,0.964,0.91,0.802,1.024,1.011,3.972,1.043,1.903,0.995,0.866,1.038,1.135,0.993,2.208,1.061,1.121,0.93,1.082,1.256,1.05,0.977,0.817,0.842,0.973,1.034,1.025,0.836,0.943 +NM_000956,0.922,1.994,0.895,1.097,0.799,1.732,1.265,0.789,0.853,0.819,1.278,0.953,0.766,0.896,1.002,1.268,0.899,0.904,0.608,1.126,0.845,0.785,1.455,0.956,1.131,0.873,0.837,0.798,0.993,1.827,0.792,1.649,1.008,1.622,0.827,1.146,1.485,0.777,1.968,0.915,0.767,1.418,1.024,1.319,0.896,0.998,0.981,0.846,0.844,0.8,1.395,0.842,0.864,0.853 +NM_000958,0.93,1.068,1.074,0.959,1.019,0.955,0.782,1.032,0.926,0.996,0.934,0.918,1.0,0.909,1.079,1.039,0.94,1.033,0.966,0.999,0.95,1.022,1.158,0.875,0.946,0.931,1.033,0.988,1.104,0.912,0.925,0.991,1.166,1.092,0.988,0.99,0.991,0.774,1.122,1.029,0.883,0.944,1.001,1.124,0.814,1.12,1.039,0.917,1.131,0.858,1.001,0.888,0.903,1.317 +NM_000959,0.968,0.932,0.993,0.871,0.994,1.085,1.092,0.878,0.862,1.047,0.925,1.029,0.879,0.912,1.07,0.843,0.935,1.016,0.938,0.938,0.92,1.02,1.086,1.054,0.882,0.949,0.974,0.859,1.402,1.074,0.898,1.171,1.045,1.174,0.932,0.967,1.045,1.031,1.053,1.015,0.843,0.955,0.999,0.94,1.029,0.917,1.058,1.028,0.858,1.01,0.954,1.134,0.841,1.036 +NM_000960,1.057,0.959,1.138,1.05,1.058,0.881,1.021,1.22,1.022,0.722,0.845,0.962,0.948,1.196,0.989,1.048,1.029,1.085,0.945,1.04,0.895,0.972,0.884,1.057,0.908,0.954,0.816,0.847,1.646,0.983,1.259,0.869,0.864,1.175,1.184,1.087,0.977,1.237,0.967,1.017,1.034,0.956,1.128,0.917,1.082,1.046,0.824,1.072,1.037,1.004,0.998,0.995,0.814,0.884 +NM_000962,1.127,1.042,1.018,0.911,1.137,0.898,1.014,0.974,1.063,1.116,0.922,0.987,0.877,0.934,1.11,1.088,0.985,0.957,1.221,0.943,1.035,0.866,0.932,1.043,1.051,1.165,1.104,1.111,0.937,0.988,1.195,0.977,0.962,0.929,1.236,1.095,0.99,1.096,1.046,1.052,1.262,0.972,0.868,0.914,1.152,0.922,1.063,1.0,0.979,1.064,1.01,0.976,1.013,0.936 +NM_000963,0.929,1.16,0.925,1.064,1.037,0.942,0.844,0.97,0.875,1.059,0.986,0.934,0.941,0.857,0.944,0.918,0.875,1.041,0.862,1.004,0.827,1.001,1.334,0.962,0.971,0.946,1.029,0.953,0.692,0.957,0.841,1.533,3.7,1.02,0.901,1.136,0.925,0.949,3.731,28.45,1.005,1.321,1.132,1.605,1.678,1.017,0.959,0.877,0.997,0.902,0.962,4.077,0.933,3.638 +NM_000964,0.652,1.036,0.663,0.774,0.546,1.451,0.889,0.522,0.558,0.638,1.229,0.576,0.547,0.575,1.105,2.177,0.603,0.983,0.626,0.981,0.603,0.565,1.131,0.614,0.944,0.564,0.596,0.631,0.965,1.64,0.655,1.948,1.18,1.704,0.45,0.835,1.278,0.627,1.785,1.345,0.626,1.151,1.067,1.299,0.628,1.222,0.928,0.585,0.851,0.496,0.924,0.815,0.74,0.873 +NM_000965,0.984,1.144,0.866,0.949,0.873,1.206,1.001,1.021,1.02,1.061,0.935,0.944,0.997,0.914,1.128,1.046,0.934,0.936,0.962,1.012,1.113,0.982,0.944,1.019,1.048,1.021,0.985,1.137,1.564,0.99,1.003,1.06,0.964,1.058,1.037,0.977,1.025,1.011,0.96,1.148,1.042,0.946,1.174,0.945,0.797,0.925,0.973,1.0,1.041,0.932,1.059,0.945,1.015,1.1 +NM_000966,2.668,0.552,2.631,1.21,1.638,0.525,0.401,2.068,2.316,1.877,0.48,1.952,1.674,2.109,1.453,0.827,1.875,1.213,3.837,0.423,2.304,2.259,0.41,2.247,0.56,3.38,2.09,1.734,0.492,0.785,2.531,1.147,2.284,0.866,1.345,0.389,0.462,1.86,0.915,0.672,1.991,0.522,0.371,1.36,2.543,0.369,1.204,2.97,0.328,2.543,0.65,0.979,2.352,0.879 +NM_000967,0.86,1.046,1.188,0.746,1.01,0.895,0.432,0.589,1.169,1.068,1.105,1.086,1.115,0.572,0.84,1.302,0.74,0.975,1.474,0.867,0.722,1.073,1.316,1.347,0.861,1.428,1.184,1.151,0.26,0.822,1.065,0.851,0.879,1.33,0.373,0.874,0.795,1.19,0.99,0.561,1.117,1.302,0.454,0.782,1.182,0.628,0.686,1.126,0.801,1.244,0.899,0.546,1.121,0.956 +NM_000969,0.797,1.071,1.301,0.697,1.01,0.986,0.385,0.477,1.332,1.145,0.648,0.866,0.896,0.559,0.957,1.5,0.829,0.92,1.505,0.94,0.623,1.095,1.25,1.262,0.668,1.128,1.5,1.14,0.208,0.89,1.074,1.0,2.077,1.303,0.151,0.808,1.0,1.493,1.313,0.558,1.319,1.389,0.549,0.722,1.082,0.784,1.002,0.984,0.992,0.977,1.054,0.688,0.88,1.33 +NM_000970,0.835,0.766,1.41,0.596,1.124,0.993,0.378,0.789,1.415,1.146,0.903,1.295,1.057,0.606,0.977,1.479,0.85,0.787,1.326,0.874,0.608,0.98,1.26,1.275,0.62,1.083,1.419,1.128,0.159,0.739,1.205,0.969,1.529,1.15,0.311,1.118,0.737,1.273,0.979,0.643,1.241,1.219,0.46,0.69,1.167,0.706,0.917,0.869,0.96,1.133,0.961,0.749,1.042,1.323 +NM_000971,0.425,0.936,2.075,0.338,1.015,1.49,0.544,1.078,1.468,0.955,0.664,1.106,0.976,0.437,1.214,2.26,1.039,0.899,0.63,1.069,0.199,1.264,1.256,1.95,0.341,0.237,2.2,1.081,0.202,1.019,1.786,1.305,2.855,1.181,0.168,0.26,0.766,2.026,1.294,0.998,1.309,1.144,0.381,0.247,1.077,0.841,1.144,0.725,1.84,0.871,1.219,0.468,0.244,1.43 +NM_000973,0.627,1.295,1.17,0.496,1.174,0.901,0.43,0.548,1.311,1.001,0.609,0.859,1.144,0.437,0.799,1.579,0.996,1.146,1.1,0.816,0.463,1.018,1.498,1.29,0.469,0.783,1.504,0.748,0.316,0.857,1.015,1.262,1.906,1.251,0.342,0.866,0.715,1.647,1.47,1.041,1.037,1.13,0.363,1.437,1.063,0.766,1.083,0.906,1.624,1.037,0.84,0.537,0.571,1.073 +NM_000975,0.919,0.99,1.373,0.883,1.175,0.916,0.426,0.636,1.307,1.235,1.114,0.878,0.893,0.72,0.924,1.272,0.941,1.167,1.544,0.855,0.529,1.086,1.111,1.186,0.687,1.177,1.398,1.021,0.34,1.075,1.086,1.038,0.926,1.097,0.256,0.92,0.94,1.592,1.229,0.586,1.283,1.166,0.555,1.01,0.995,0.723,1.044,1.264,0.922,1.045,0.97,0.751,0.904,1.278 +NM_000976,0.836,1.166,1.612,0.837,0.995,0.925,0.369,0.484,1.213,1.045,1.126,0.851,1.106,0.758,0.969,1.093,0.925,0.795,1.219,1.015,0.439,0.562,1.372,1.136,0.568,1.04,1.186,1.22,0.181,0.881,1.151,1.481,1.459,1.173,0.416,1.048,0.869,1.142,1.298,0.592,1.168,1.19,0.578,1.301,0.987,0.764,0.895,0.722,0.99,0.913,0.881,0.86,1.011,1.413 +NM_000977,0.981,1.431,0.764,0.883,0.848,0.942,0.489,0.63,1.163,0.846,1.526,1.376,1.004,0.661,0.681,1.26,0.636,0.989,1.296,0.925,0.512,1.009,1.279,1.357,0.954,1.46,1.07,1.0,0.265,0.915,1.105,1.363,0.981,1.477,0.212,1.274,1.001,1.026,1.0,0.486,0.889,1.561,0.587,0.972,0.848,0.781,1.186,0.93,0.964,0.717,1.108,0.739,0.971,0.728 +NM_000980,0.814,1.304,1.344,0.787,0.894,1.041,0.517,0.507,1.226,0.929,1.133,0.842,1.052,0.608,0.74,1.109,1.025,1.04,1.425,0.801,0.599,0.758,1.538,1.097,0.622,1.082,1.117,0.942,0.393,1.204,0.866,0.889,0.675,1.271,0.286,0.854,0.979,1.144,1.046,0.634,1.113,1.232,0.584,1.131,1.027,0.704,0.915,1.037,0.991,0.992,0.871,0.872,0.953,0.884 +NM_000981,0.666,0.981,1.34,0.585,0.959,1.221,0.487,0.769,1.226,1.017,0.861,1.076,0.947,0.544,0.937,1.413,0.921,0.872,1.248,1.001,0.681,1.063,1.273,1.415,0.644,0.742,1.426,0.986,0.264,1.045,1.17,1.448,1.585,1.294,0.278,0.617,0.874,1.417,1.303,0.629,1.128,1.224,0.449,0.928,1.029,0.765,0.94,0.859,1.028,0.967,1.123,0.676,0.767,1.184 +NM_000982,0.543,0.742,1.627,0.39,1.005,1.351,0.708,1.232,1.245,0.947,0.569,1.541,1.291,0.379,0.927,1.655,1.058,0.934,0.613,1.143,0.191,1.444,1.149,1.503,0.485,0.358,1.604,1.05,0.28,1.168,1.427,1.415,1.478,1.137,0.17,0.352,0.631,1.624,1.592,1.198,0.996,1.124,0.357,0.279,1.214,0.571,1.205,1.012,1.211,0.856,1.102,0.634,0.3,1.276 +NM_000983,0.954,1.17,1.58,0.61,1.747,0.751,0.381,0.975,1.762,1.477,0.982,1.383,0.817,0.941,1.227,1.588,0.93,0.975,2.281,0.634,0.873,1.149,1.148,1.515,0.526,1.167,1.494,1.579,0.226,0.882,1.585,0.908,2.286,1.098,0.613,0.82,0.846,2.113,0.716,0.661,1.735,1.047,0.555,0.773,1.225,0.785,1.101,1.103,1.091,1.051,0.876,0.773,1.282,0.932 +NM_000984,0.881,1.002,1.329,0.759,0.857,1.017,0.492,0.647,1.065,0.899,1.218,0.959,0.942,0.65,0.871,1.188,0.779,0.838,1.33,0.958,0.623,0.764,1.213,1.062,0.667,1.116,1.147,0.959,0.237,1.099,0.964,1.156,1.678,1.297,0.327,1.211,1.019,1.055,1.025,0.529,0.978,1.236,0.561,1.207,1.049,0.832,1.047,0.837,0.864,0.854,0.964,0.75,1.098,1.087 +NM_000985,0.678,0.874,1.318,0.697,1.104,0.77,0.441,0.499,1.548,1.444,1.456,0.524,0.553,1.041,0.969,1.51,1.148,1.093,1.642,0.648,0.815,0.946,1.243,1.195,0.547,1.004,1.461,1.114,0.3,1.712,1.114,0.974,0.953,1.244,0.361,0.681,0.885,1.585,0.96,0.532,1.865,1.338,0.771,1.482,0.842,0.744,1.405,0.816,1.036,0.727,0.875,0.845,1.365,0.7 +NM_000986,0.791,1.016,1.283,0.644,1.105,1.09,0.578,0.903,1.1,1.042,0.918,1.371,1.031,0.53,0.89,1.262,0.867,0.946,1.209,0.974,0.595,1.08,1.138,1.277,0.601,0.763,0.982,1.068,0.345,1.143,1.038,1.14,1.459,1.138,0.465,0.836,1.078,1.21,0.925,0.823,1.141,1.15,0.654,0.92,1.034,0.89,0.954,1.012,1.099,0.735,1.055,0.868,0.823,1.213 +NM_000988,0.734,0.962,1.113,0.539,1.082,0.995,0.617,1.038,1.204,1.005,1.096,1.577,1.252,0.459,0.773,1.513,0.759,1.216,1.137,0.981,0.475,1.067,1.156,1.187,0.49,0.816,1.093,1.144,0.28,0.834,0.923,1.179,1.426,1.085,0.215,1.22,1.074,1.352,1.173,0.725,1.032,1.061,0.491,0.936,1.108,0.706,1.122,0.987,0.987,0.815,0.843,1.046,0.812,1.097 +NM_000989,0.766,1.037,1.158,0.6,0.968,1.0,0.393,0.815,1.136,0.961,1.455,0.834,0.881,0.831,1.007,1.348,0.842,0.92,1.8,0.824,0.771,1.014,1.116,1.192,0.56,0.986,1.359,0.949,0.303,0.976,0.969,1.179,1.455,1.356,0.171,1.281,1.155,1.382,0.996,0.981,1.145,1.164,0.561,1.227,0.81,0.978,1.0,0.866,1.015,0.71,0.926,0.843,1.008,1.353 +NM_000990,0.588,0.925,1.375,0.551,1.115,1.095,0.439,0.749,1.511,1.15,1.078,0.988,0.688,0.667,1.195,1.373,0.946,1.153,1.549,0.945,0.725,0.494,1.358,1.26,0.485,0.892,1.465,1.144,0.18,1.325,1.184,1.106,1.08,1.075,0.252,1.058,1.013,0.971,0.684,0.729,1.24,1.146,0.512,0.573,0.967,0.827,1.198,0.849,0.988,0.849,1.134,0.775,0.857,1.097 +NM_000991,0.822,0.995,1.058,0.781,1.045,1.108,0.892,0.817,1.107,1.032,0.917,1.06,0.86,0.889,1.183,1.192,0.911,0.959,1.201,1.006,0.958,0.933,1.482,1.192,0.869,1.024,1.189,0.972,0.639,0.995,0.985,1.231,1.592,1.238,0.652,0.897,0.966,1.057,1.188,1.159,0.991,1.211,0.759,0.89,0.925,1.009,0.888,0.864,1.753,0.988,1.003,1.033,0.945,1.158 +NM_000992,0.866,1.065,1.307,0.804,0.997,1.028,0.561,0.809,1.159,1.111,1.029,1.488,1.286,0.618,0.755,1.21,0.906,1.129,1.298,1.003,0.656,0.778,1.394,1.115,0.617,1.351,1.204,1.049,0.26,1.01,0.955,0.809,0.921,1.224,0.473,1.081,0.991,1.227,1.237,0.568,0.971,1.219,0.489,0.766,1.272,0.689,0.774,1.281,0.85,1.137,0.937,0.798,1.04,1.221 +NM_000993,0.785,1.105,1.167,0.562,1.0,1.242,0.482,1.253,1.194,0.894,1.091,1.357,1.067,0.673,0.934,1.579,0.815,0.982,1.419,1.078,0.728,0.973,1.22,1.333,0.674,0.92,1.298,1.064,0.309,1.092,1.149,1.169,1.334,1.256,0.35,1.019,1.223,1.387,0.918,0.68,1.056,1.133,0.553,0.775,0.888,0.784,1.027,0.931,0.859,0.755,1.07,0.809,0.874,1.275 +NM_000994,0.557,1.041,1.507,0.396,1.287,1.1,0.606,0.896,1.254,1.052,0.547,1.461,0.946,0.448,0.86,1.396,0.925,1.1,0.999,1.135,0.399,1.126,1.303,1.295,0.442,0.81,1.341,1.233,0.281,1.158,1.205,1.016,0.964,1.174,0.321,0.817,0.802,1.436,1.246,0.722,1.094,1.266,0.34,0.584,1.412,0.668,1.136,1.052,1.047,0.879,1.025,0.711,0.688,1.333 +NM_000996,0.713,0.927,1.304,0.646,0.974,1.001,0.498,0.803,1.158,0.976,0.988,1.089,0.95,0.69,0.929,1.408,0.775,0.926,1.611,0.92,0.768,0.985,1.148,1.267,0.588,0.972,1.34,1.097,0.268,1.064,1.025,1.175,1.791,1.315,0.298,0.999,1.037,1.088,0.953,0.577,1.042,1.226,0.583,1.097,1.008,0.777,0.786,0.989,0.894,0.806,0.979,0.845,1.208,1.715 +NM_000998,0.647,0.949,1.463,0.566,1.177,0.92,0.45,0.775,1.364,1.278,0.86,1.138,0.743,0.731,1.048,1.322,0.948,0.87,1.51,0.849,0.7,0.864,1.229,1.416,0.425,1.087,1.363,1.261,0.16,0.891,1.175,1.413,1.385,1.082,0.354,1.051,0.955,1.01,0.827,0.925,1.158,1.07,0.587,0.935,1.242,0.763,0.99,1.024,0.869,0.897,1.029,0.794,1.106,1.674 +NM_000999,0.688,0.844,1.228,0.537,0.911,1.018,0.462,0.737,1.136,0.926,1.112,0.975,0.876,0.67,0.98,1.485,0.979,0.995,1.818,0.772,0.689,1.033,1.114,1.248,0.484,0.91,1.331,0.916,0.317,0.915,1.04,1.131,1.249,1.318,0.228,1.042,1.238,1.415,1.014,0.706,1.068,1.241,0.442,1.037,0.927,0.664,0.952,0.862,0.802,0.775,0.94,0.908,1.034,1.237 +NM_001000,0.691,0.916,1.41,0.523,1.043,1.289,0.667,1.202,1.19,1.002,0.789,1.421,1.253,0.502,0.895,1.494,0.877,1.093,0.854,0.964,0.544,1.046,1.23,1.359,0.636,0.681,1.296,1.137,0.384,1.033,1.269,1.16,1.259,1.308,0.476,0.673,0.883,1.405,1.069,0.677,1.122,1.215,0.448,0.749,0.964,0.766,1.166,1.239,1.045,0.841,1.115,0.753,0.612,1.312 +NM_001001,0.347,1.308,1.246,0.493,0.978,1.191,0.671,0.417,1.345,1.04,1.494,0.544,0.269,0.731,1.107,2.016,0.953,1.127,1.208,1.156,0.662,0.547,1.152,1.02,0.41,0.571,1.28,1.029,0.368,1.576,1.004,0.941,0.926,1.664,0.438,0.903,1.518,1.327,0.817,0.681,1.316,1.828,0.836,0.77,0.953,1.118,1.459,0.514,1.173,0.502,1.51,0.575,0.808,0.912 +NM_001002,0.88,0.72,1.355,0.76,1.186,0.828,0.385,0.553,1.299,1.212,1.008,0.822,1.378,0.567,0.775,1.229,1.05,1.352,1.948,0.652,0.65,1.089,1.785,1.338,0.53,1.728,1.238,1.223,0.288,0.795,0.922,0.834,0.807,0.937,0.49,1.183,0.954,1.466,1.345,0.464,1.397,1.059,0.448,1.033,1.371,0.656,1.113,1.39,0.98,1.247,0.752,0.725,1.043,0.997 +NM_001003,0.99,0.821,1.177,0.709,1.086,0.76,0.348,0.829,1.37,1.068,1.027,1.046,1.107,0.747,0.755,1.182,1.032,0.929,1.747,0.792,0.769,1.205,1.539,1.218,0.717,1.48,1.224,1.146,0.294,0.807,1.134,0.899,0.878,1.058,0.387,1.164,0.76,1.516,1.246,0.5,1.235,0.96,0.439,0.818,1.092,0.58,0.943,1.273,0.755,1.038,0.773,0.661,1.0,1.004 +NM_001004,0.949,0.932,1.046,0.656,0.873,0.926,0.456,0.784,1.242,1.068,1.09,1.094,1.425,0.55,0.794,1.293,0.952,1.007,1.666,0.924,0.68,1.165,1.565,1.209,0.553,1.289,1.056,0.931,0.382,1.201,1.033,0.928,0.827,1.265,0.345,1.338,1.031,1.416,1.081,0.79,1.127,1.288,0.485,1.157,1.295,0.621,1.186,1.586,0.844,1.129,0.805,0.616,0.863,0.936 +NM_001006,0.57,1.091,1.417,0.486,1.189,1.219,0.597,1.123,1.275,0.964,0.735,1.485,1.138,0.45,0.855,1.556,0.828,1.04,1.051,1.252,0.421,1.19,1.268,1.352,0.609,0.792,1.03,1.257,0.321,1.006,1.284,1.218,1.098,1.14,0.295,0.738,0.844,1.456,0.994,0.72,1.134,1.151,0.416,0.684,1.019,0.758,1.086,0.982,1.096,0.766,1.074,0.555,0.631,1.08 +NM_001007,0.74,1.325,1.317,0.738,1.333,0.94,0.635,0.85,1.269,0.999,0.854,1.425,0.989,0.533,0.889,1.185,0.891,0.889,1.517,1.25,0.701,1.222,1.162,1.478,0.603,0.879,1.119,1.396,0.361,1.114,0.964,1.12,0.968,1.075,0.29,1.001,0.932,1.321,0.864,0.607,1.173,1.119,0.723,0.817,1.032,0.925,0.988,0.85,0.931,0.894,1.02,0.904,1.055,0.964 +NM_001008,0.848,0.0897,2.51,0.0607,0.0663,2.391,0.0818,0.0819,2.407,2.141,1.179,0.0709,0.0728,0.6,1.539,1.711,1.615,2.064,0.0816,0.06,0.0827,0.0777,2.649,0.0809,0.89,0.988,2.694,0.0873,0.0886,1.92,2.282,1.411,0.874,2.106,0.318,0.155,1.603,2.808,1.119,0.414,2.234,2.197,0.071,0.114,1.981,0.786,1.656,1.362,1.77,1.374,1.668,0.699,0.0814,0.75 +NM_001009,0.91,1.004,1.106,0.647,1.109,0.84,0.639,0.89,1.261,1.146,0.874,1.454,1.392,0.638,0.671,1.331,0.878,1.259,1.102,1.067,0.495,1.032,1.646,1.301,0.532,1.088,1.036,1.42,0.331,0.905,0.817,0.774,1.236,0.955,0.424,1.298,1.02,1.264,0.99,0.717,1.191,1.073,0.654,1.015,1.251,0.652,1.265,1.05,1.095,0.885,0.907,0.974,0.882,1.053 +NM_001010,0.966,1.002,1.172,0.767,1.128,1.169,0.429,0.731,1.241,1.033,1.129,1.125,1.001,0.715,0.894,1.052,0.738,0.964,1.329,0.971,0.648,0.964,1.321,1.28,0.771,1.142,1.495,1.234,0.361,1.016,1.065,0.911,0.677,1.288,0.222,0.805,1.194,1.364,0.793,0.384,1.211,1.135,0.606,0.982,1.005,0.888,0.907,0.829,0.867,0.952,0.968,0.873,0.988,1.156 +NM_001011,0.804,0.804,1.2,0.655,0.87,0.973,0.414,1.103,1.292,0.838,1.203,1.336,1.278,0.628,0.962,1.772,0.681,0.883,1.904,0.794,0.656,0.997,1.336,1.247,0.577,1.125,1.317,1.087,0.206,0.684,1.088,0.823,2.058,1.019,0.405,1.199,1.174,1.317,0.899,0.771,1.129,1.153,0.433,1.044,1.003,0.709,0.921,1.008,0.92,0.902,0.849,0.841,0.993,1.445 +NM_001012,0.914,0.978,1.469,0.698,1.276,0.768,0.37,0.691,1.552,1.07,0.943,1.011,1.215,0.513,0.891,1.222,0.825,0.97,1.51,0.864,0.625,1.038,1.19,1.139,0.526,1.333,1.313,1.247,0.202,0.764,1.134,1.066,1.258,1.024,0.582,0.808,0.885,1.294,1.157,0.411,1.279,1.002,0.507,1.24,1.176,0.627,1.04,1.344,0.925,1.26,0.902,0.582,0.926,1.165 +NM_001014,0.732,1.051,1.108,0.543,1.019,0.999,0.508,0.766,1.024,1.035,1.03,1.304,1.001,0.544,0.763,1.326,0.636,1.117,1.479,0.921,0.628,0.985,1.222,1.164,0.561,0.973,1.119,1.024,0.299,0.993,0.807,1.151,1.21,1.078,0.223,1.344,1.04,1.318,1.03,0.783,1.143,1.08,0.532,0.9,0.945,0.658,0.971,1.186,0.909,0.798,1.003,0.871,1.039,1.324 +NM_001015,0.89,0.734,1.177,0.8,0.937,0.666,0.628,0.431,1.075,1.389,0.935,0.699,0.624,0.786,0.904,1.738,0.99,1.128,1.644,0.736,0.828,0.853,1.548,1.255,0.497,1.034,1.346,1.038,0.429,0.778,0.911,0.882,4.031,1.012,0.446,1.156,0.87,1.099,1.338,1.05,1.223,0.79,0.67,0.911,1.553,0.878,1.416,0.912,1.19,1.17,1.003,1.311,1.439,1.874 +NM_001018,0.832,0.684,1.329,0.679,0.997,0.689,0.494,0.386,1.461,1.666,1.003,0.668,0.531,0.613,1.119,2.106,1.143,1.395,2.513,0.524,0.681,0.606,1.499,1.414,0.312,0.97,1.556,0.791,0.254,0.579,0.887,0.532,5.257,0.88,0.155,1.373,1.012,1.129,1.481,1.314,1.299,0.882,0.491,1.012,1.387,0.788,1.407,0.791,1.465,1.237,1.228,1.134,1.215,1.981 +NM_001019,0.715,0.874,1.102,0.696,0.934,0.863,0.481,0.621,1.331,1.005,1.184,0.8,0.874,0.606,0.82,1.683,0.682,1.074,1.117,0.856,0.493,1.068,1.236,1.506,0.496,0.91,1.554,0.838,0.495,0.905,0.541,1.487,1.8,1.043,0.177,0.904,0.838,1.225,1.28,1.134,1.135,1.291,0.564,1.264,0.92,0.851,1.336,0.954,1.074,0.789,0.978,0.989,0.705,1.026 +NM_001020,0.542,1.15,1.347,0.6,1.249,0.627,0.396,0.368,1.132,1.068,1.055,0.787,0.686,0.472,1.012,1.189,0.996,0.979,1.789,0.832,0.561,0.605,2.159,1.176,0.375,1.186,1.395,0.935,0.196,1.174,0.687,1.089,1.769,1.062,0.141,1.176,1.171,1.135,0.96,0.66,1.511,1.227,0.667,0.995,1.083,0.665,1.363,0.765,1.004,0.992,0.877,0.847,1.144,1.005 +NM_001022,0.976,0.841,1.378,0.637,1.073,0.788,0.492,0.826,1.142,1.089,0.872,1.098,1.211,0.554,0.905,1.228,1.091,0.837,1.14,0.822,0.69,1.24,1.621,1.298,0.356,1.226,1.191,1.036,0.225,0.856,1.185,1.006,1.768,0.905,0.27,1.275,0.812,1.402,1.016,0.9,1.125,1.032,0.46,1.161,1.243,0.652,1.151,1.232,0.946,1.009,0.854,0.89,1.0,1.203 +NM_001023,0.564,1.122,1.563,0.566,1.101,0.874,0.532,0.655,1.215,1.144,0.79,0.889,0.804,0.573,0.843,1.339,0.822,1.003,1.292,0.925,0.456,0.558,1.369,1.165,0.497,0.844,1.529,1.164,0.152,1.078,1.07,1.597,1.518,1.171,0.255,1.079,0.857,0.956,1.09,1.066,1.194,1.261,0.464,1.018,1.148,0.799,1.017,0.958,1.137,0.861,0.997,0.828,0.806,1.43 +NM_001024,0.872,0.967,1.118,0.692,1.034,0.866,0.553,1.03,1.062,1.025,0.924,1.405,1.261,0.529,0.704,1.058,0.809,1.105,1.253,1.116,0.561,0.945,1.394,1.106,0.645,1.014,1.064,1.1,0.301,1.025,0.792,0.793,1.233,1.052,0.202,1.301,1.021,1.256,1.038,0.934,0.976,1.049,0.582,1.032,1.121,0.71,1.144,1.128,1.004,0.961,0.923,1.221,0.79,1.255 +NM_001025,0.934,0.831,1.256,0.736,1.189,0.945,0.441,0.738,1.314,1.093,1.12,1.025,1.077,0.647,0.906,1.485,0.816,1.078,1.542,0.953,0.629,0.94,1.346,1.403,0.713,1.033,1.452,1.13,0.27,0.981,1.09,0.985,1.179,1.268,0.221,0.745,1.015,1.375,0.984,0.574,1.249,1.272,0.575,0.779,1.226,0.813,0.993,1.12,0.99,1.036,1.013,0.747,1.013,0.901 +NM_001028,0.593,1.221,1.483,0.645,1.204,0.957,0.552,0.544,1.228,1.156,0.88,0.921,0.686,0.659,0.901,1.199,0.855,1.012,1.08,0.992,0.654,0.691,1.384,1.219,0.512,0.947,1.333,1.203,0.224,1.347,1.034,1.215,1.001,1.084,0.261,1.24,0.999,1.1,0.647,0.709,1.258,1.273,0.593,0.484,1.21,0.794,1.135,0.671,0.922,0.945,1.004,0.783,0.959,0.99 +NM_001029,0.669,1.03,1.461,0.518,0.902,1.263,0.61,1.462,1.59,0.705,0.876,1.528,1.217,0.454,1.336,3.004,0.587,0.79,1.733,1.175,0.7,1.287,1.08,1.21,0.294,0.932,1.032,0.688,0.301,0.699,1.916,0.589,1.719,1.795,0.523,0.619,1.136,0.861,1.41,0.697,0.775,1.402,0.372,0.939,0.993,0.787,1.515,0.757,1.04,0.671,0.827,0.82,0.83,2.163 +NM_001031,0.706,1.048,1.267,0.593,0.988,1.001,0.508,0.747,1.305,1.26,0.847,1.509,0.974,0.5,0.749,1.24,0.856,1.036,1.494,1.248,0.687,0.913,1.847,1.306,0.549,1.269,1.178,1.302,0.244,0.92,1.033,0.783,0.914,1.243,0.327,1.368,0.775,1.315,0.996,0.796,1.141,1.145,0.487,1.004,1.193,0.664,0.914,1.094,1.016,1.094,0.932,0.585,1.086,0.95 +NM_001032,0.419,0.968,1.413,0.433,1.02,1.32,0.649,0.999,1.292,1.15,0.66,1.382,0.977,0.498,0.945,1.771,0.813,1.231,1.474,1.122,0.597,0.941,1.52,1.419,0.331,0.727,1.243,1.027,0.25,0.893,1.114,0.818,1.597,1.121,0.153,1.264,1.125,1.06,0.853,0.633,1.098,1.343,0.468,1.001,1.034,0.648,1.037,0.918,1.211,0.802,1.052,0.643,0.84,1.459 +NM_001033,0.516,0.941,1.674,0.56,1.049,0.921,0.556,0.415,1.163,1.39,0.849,1.019,0.521,0.65,0.842,1.516,0.813,1.044,1.567,0.745,0.759,0.768,1.634,1.217,0.451,0.687,2.023,0.84,0.431,1.208,0.819,0.918,2.285,1.165,0.229,1.758,0.927,1.05,1.122,1.034,1.088,0.877,0.675,1.109,0.999,0.995,0.986,0.545,1.178,0.948,1.224,0.915,1.233,1.44 +NM_001034,0.842,1.023,0.912,1.123,0.847,0.895,0.84,0.985,1.108,1.099,0.877,0.802,0.837,0.805,0.992,1.009,0.795,1.066,1.119,0.929,0.954,0.837,1.416,1.011,0.841,0.906,1.441,0.914,0.834,0.942,0.889,0.952,1.35,0.91,0.7,1.135,1.051,0.81,1.482,1.156,1.02,0.847,1.504,1.456,1.046,1.154,1.164,0.837,1.443,0.949,1.073,0.948,1.083,2.311 +NM_001035,1.108,0.952,0.903,0.945,0.95,1.009,0.947,1.094,0.911,1.016,1.037,1.018,1.025,1.007,0.744,1.021,0.948,0.987,0.971,0.963,1.287,0.901,0.827,0.933,1.109,1.035,0.815,1.026,1.082,1.146,0.983,0.967,0.924,0.921,0.956,1.005,1.003,1.125,1.147,1.026,1.224,1.172,0.894,1.036,1.078,0.922,1.051,1.027,1.068,0.802,0.999,1.195,1.181,0.923 +NM_001036,1.241,0.949,0.961,1.04,1.069,1.136,0.933,1.106,0.975,1.067,1.026,0.964,1.01,0.782,0.96,0.905,1.121,0.983,0.957,0.868,0.929,0.967,0.928,1.0,1.037,1.019,1.07,1.082,1.191,0.993,0.991,0.95,0.78,0.893,0.981,1.057,1.018,1.039,1.08,1.022,0.998,1.008,0.985,1.1,1.0,1.04,0.982,0.955,1.011,1.026,0.992,0.966,0.945,0.962 +NM_001040,1.036,0.97,0.937,0.866,1.006,0.921,1.062,0.996,0.964,1.114,0.979,1.171,0.985,0.904,0.834,1.065,0.964,1.063,1.036,0.838,0.921,0.945,1.16,1.017,0.997,0.979,1.0,0.908,0.839,0.962,0.922,1.104,1.131,1.028,1.091,1.017,1.232,0.941,0.819,1.068,0.915,1.028,1.026,0.79,1.028,1.223,1.255,1.0,0.984,0.952,0.967,1.085,1.073,1.005 +NM_001041,0.771,1.239,0.714,1.697,0.854,2.031,0.907,0.874,0.797,1.072,6.514,0.877,0.875,0.802,9.498,38.41,0.75,0.769,0.791,13.02,0.939,0.967,5.915,0.996,0.908,0.915,0.986,1.022,0.861,1.422,0.859,1.0,1.126,1.237,0.949,1.105,21.05,0.981,1.134,0.81,0.915,3.248,9.554,0.86,0.924,8.982,10.57,0.906,9.144,0.929,6.452,0.831,0.926,0.901 +NM_001042,0.946,1.066,1.097,0.914,1.057,1.09,0.968,0.792,1.074,1.047,1.026,1.089,0.938,1.102,0.951,1.022,0.998,0.93,0.904,0.989,0.896,1.079,0.922,1.066,1.0,0.955,0.978,1.191,1.025,1.04,0.944,1.09,0.97,0.994,1.072,1.162,0.949,0.952,1.065,0.934,1.044,1.069,1.037,0.927,1.132,0.843,0.99,1.018,0.932,1.049,1.003,1.031,1.093,1.031 +NM_001043,0.966,0.956,1.208,0.972,1.172,0.901,1.093,1.161,0.855,0.941,1.143,1.169,1.061,1.037,1.155,0.918,1.039,0.98,1.026,0.984,1.206,1.046,0.965,0.928,1.002,0.919,1.032,1.032,1.346,1.207,0.898,0.991,1.037,0.973,1.043,1.094,1.135,1.089,0.982,1.006,0.95,0.942,1.173,1.345,0.951,1.316,1.184,0.98,0.99,0.968,0.937,1.162,1.068,1.227 +NM_001045,1.176,1.119,1.031,1.136,1.262,1.022,0.894,0.982,1.18,1.025,0.927,1.144,1.078,1.633,1.123,0.966,0.997,1.127,1.102,0.962,1.277,1.298,0.915,1.076,1.027,1.1,1.015,1.349,0.715,0.934,1.309,0.956,0.866,0.954,0.911,0.881,1.607,1.452,0.975,0.838,1.188,0.985,1.121,0.887,1.009,1.075,0.943,1.301,0.866,0.959,0.996,0.974,1.209,0.954 +NM_001046,0.379,1.763,0.413,0.849,0.435,1.504,0.954,0.373,0.438,0.425,1.028,0.441,0.407,0.371,1.105,1.446,0.413,0.838,0.409,1.323,0.451,0.423,2.082,0.406,1.45,0.407,0.466,0.421,0.579,1.39,0.384,0.568,8.609,2.428,0.424,1.813,1.76,0.396,2.743,1.123,0.431,1.916,1.465,2.03,0.522,1.602,0.598,0.402,1.02,0.441,1.387,0.576,0.551,3.08 +NM_001047,1.223,0.779,2.023,0.709,1.499,1.026,0.568,0.843,1.884,1.699,0.8,1.305,1.45,1.092,1.22,1.159,1.257,1.334,2.168,0.967,0.934,1.11,0.915,1.359,0.504,1.207,2.825,1.305,0.539,1.15,2.149,1.124,3.297,1.121,0.336,0.594,0.826,1.512,0.919,0.885,1.504,0.777,0.607,1.429,1.895,0.75,1.033,1.15,0.629,1.198,0.819,0.989,1.637,0.863 +NM_001048,0.873,3.951,0.888,3.173,0.764,2.068,3.739,0.826,0.778,0.745,11.91,0.902,0.808,0.837,1.654,2.455,0.897,1.367,0.778,41.34,0.815,0.999,27.65,0.772,15.29,0.765,0.711,0.747,1.047,3.742,0.86,0.944,1.193,22.2,0.854,3.799,11.35,0.761,7.631,0.801,0.813,4.126,3.378,1.706,0.818,21.31,0.84,0.994,2.513,0.82,15.08,0.782,0.915,0.937 +NM_001049,0.895,1.65,0.919,1.356,0.88,1.523,1.373,0.836,0.932,0.784,1.555,0.822,0.905,0.831,0.985,2.338,0.894,1.007,0.885,1.705,0.913,0.882,1.374,0.826,1.296,0.934,0.878,0.843,0.827,1.323,0.907,1.015,0.843,2.101,0.817,0.958,1.592,0.935,1.357,0.875,0.919,1.984,1.656,1.007,0.906,1.606,0.959,0.829,1.248,0.904,1.797,0.904,0.926,0.911 +NM_001050,0.989,0.874,0.876,1.072,0.914,1.053,1.146,1.191,0.998,0.941,1.207,0.834,0.904,1.097,0.842,0.961,0.936,0.858,0.91,0.981,1.073,0.982,1.117,1.016,1.094,1.077,0.786,0.904,1.123,1.063,0.837,0.914,1.21,1.068,1.007,1.021,1.184,1.011,0.951,1.033,0.886,1.011,1.073,0.917,0.954,1.041,0.928,1.0,0.98,0.983,0.935,0.906,0.946,1.107 +NM_001051,1.101,0.91,0.939,1.017,1.017,1.009,0.995,1.036,0.987,0.962,1.092,1.041,0.898,1.082,0.871,0.903,0.97,1.035,1.011,1.077,1.001,0.964,1.058,1.02,1.002,0.904,0.873,1.006,0.954,1.117,1.007,1.015,0.823,0.856,1.036,1.06,1.116,0.999,0.952,0.937,1.04,0.94,0.924,0.995,0.975,0.899,0.93,1.079,1.003,1.007,1.071,0.935,1.128,0.98 +NM_001053,0.903,1.045,0.967,1.001,1.219,1.02,0.82,0.78,0.933,0.876,1.005,0.999,1.026,0.948,1.154,0.779,1.073,1.004,0.899,0.967,0.916,1.009,1.133,1.009,0.991,0.868,1.039,1.001,1.087,0.879,1.027,1.036,1.126,1.004,1.161,0.91,0.942,0.87,1.004,0.809,0.999,1.04,0.78,1.051,1.01,1.032,1.029,1.023,1.029,0.965,1.03,0.974,0.997,1.17 +NM_001054,0.517,1.324,0.618,1.219,0.475,3.945,0.852,0.59,0.535,0.587,4.53,0.607,0.6,0.502,3.875,14.51,0.531,0.959,0.536,3.314,0.539,0.544,3.595,0.564,0.885,0.545,0.605,0.561,1.007,1.757,0.69,1.806,0.604,1.42,0.591,0.636,10.89,0.56,1.86,1.815,0.662,5.645,5.663,0.778,0.562,7.198,7.096,0.539,10.23,0.522,2.517,0.617,0.583,0.773 +NM_001056,1.286,2.5519999999999996,1.175,3.923,1.34,8.241999999999999,3.232,1.178,1.207,1.151,5.9,1.219,1.295,1.196,2.044,6.008,1.22,4.192,1.168,3.824,1.153,1.303,3.471,1.302,2.423,1.291,1.036,1.345,2.336,3.742,1.1840000000000002,1.205,2.268,6.609,1.383,1.888,6.422,1.142,5.214,1.347,1.286,5.76,3.436,1.2999999999999998,1.147,4.271,1.43,1.205,1.826,1.3199999999999998,5.022,1.528,1.235,4.33 +NM_001057,0.919,1.044,0.928,0.933,1.206,1.046,1.238,0.945,1.076,0.963,0.955,1.14,0.955,1.068,0.941,1.159,0.883,0.929,0.923,1.138,1.047,0.998,1.091,1.176,0.982,0.921,0.88,1.039,1.145,1.153,0.994,0.888,0.958,1.058,0.95,1.039,1.081,1.029,0.94,0.88,1.272,1.081,0.979,0.998,0.762,1.109,0.945,1.034,1.061,0.957,1.035,1.085,0.95,0.971 +NM_001058,1.047,0.97,0.991,1.036,0.875,0.944,0.945,0.977,0.983,1.039,0.955,1.045,0.903,0.859,1.057,1.091,1.122,1.171,0.974,0.841,1.055,1.031,0.975,0.918,0.995,1.103,1.03,0.897,0.798,1.114,1.014,0.972,1.043,0.898,0.972,1.041,0.961,1.034,1.133,0.93,0.976,0.936,0.99,0.974,1.059,1.029,1.105,1.029,0.961,1.035,1.071,1.001,0.893,1.179 +NM_001059,1.118,0.981,1.027,1.051,0.932,0.945,0.993,1.007,1.103,0.994,0.928,1.057,0.952,1.183,1.034,0.98,1.128,1.057,0.966,1.067,0.863,1.097,0.906,0.925,1.033,1.054,1.065,0.997,0.882,1.021,1.013,0.992,1.021,0.985,0.986,0.903,1.003,1.142,0.977,0.993,1.065,1.048,1.135,0.965,0.993,1.076,1.002,1.011,1.045,1.112,0.876,0.969,1.165,1.1 +NM_001060,0.943,0.902,1.03,1.042,1.092,0.974,0.848,0.952,1.019,1.129,0.981,1.019,1.032,1.063,0.918,1.027,1.005,0.894,1.094,0.89,0.991,0.895,0.946,0.939,1.011,0.954,1.034,1.021,1.13,0.993,1.054,1.049,0.917,1.012,1.028,1.067,0.996,1.039,0.929,0.888,0.874,1.075,0.904,0.965,0.955,1.0,1.083,1.014,1.035,1.016,1.043,0.785,1.038,1.046 +NM_001061,0.78,0.841,0.919,1.094,0.775,0.941,0.816,0.629,0.842,0.683,0.849,0.713,0.736,0.669,0.939,1.134,0.788,0.747,0.874,0.869,0.832,0.72,1.468,0.843,0.944,0.808,0.902,0.716,0.696,1.457,0.738,1.337,1.046,1.355,0.683,1.405,0.931,0.861,1.427,1.663,0.755,1.32,0.99,1.787,0.789,0.933,1.046,0.7,0.977,0.724,1.144,1.556,1.024,1.135 +NM_001063,2.756,0.865,10.14,1.117,8.564,0.847,0.664,0.978,5.13,4.868,0.707,1.088,1.055,2.864,1.757,1.096,4.255,2.22,3.394,0.728,2.625,3.32,0.659,8.742,0.837,4.09,6.698,6.451,1.571,0.773,3.383,0.945,1.523,0.69,0.804,1.823,0.778,3.338,0.688,0.763,1.511,2.074,0.745,0.857,0.856,0.855,1.122,6.719,0.743,4.291,1.181,0.812,6.721,1.035 +NM_001064,1.003,1.133,1.249,0.882,0.985,0.822,0.53,0.403,1.111,1.388,0.745,1.007,0.751,0.509,0.678,1.366,0.981,1.363,1.811,0.531,1.093,1.442,1.295,1.058,0.535,1.621,1.219,0.723,0.531,0.901,0.713,0.619,2.117,0.856,0.132,1.287,0.94,1.674,2.212,0.879,1.213,0.839,0.445,1.271,1.104,0.835,0.953,1.475,1.208,1.273,0.83,0.958,1.028,0.815 +NM_001065,0.507,0.871,1.412,0.685,0.831,1.108,0.583,0.433,0.847,1.051,0.796,0.778,0.522,0.438,0.8,0.984,1.224,0.936,1.007,1.171,0.365,0.743,0.943,0.89,0.47,0.626,1.344,0.619,0.406,1.168,0.67,1.54,0.92,1.028,0.404,0.742,1.033,0.732,1.423,1.018,0.99,1.175,1.392,1.06,0.989,1.173,1.365,0.683,1.316,1.079,0.967,1.295,0.927,1.205 +NM_001066,0.33,1.164,0.592,0.542,0.449,1.432,1.259,0.305,0.388,0.469,1.23,0.295,0.335,0.28,1.148,2.26,0.416,0.646,0.425,0.911,0.393,0.335,1.243,0.428,0.54,0.308,0.791,0.414,0.777,1.914,0.348,1.726,0.91,1.246,0.297,0.684,1.235,0.381,2.065,4.314,0.532,1.68,0.942,1.505,0.519,1.176,1.212,0.345,1.886,0.395,1.09,1.602,0.7,2.089 +NM_001067,0.768,1.114,1.516,1.022,0.947,0.831,0.715,0.511,0.984,0.997,0.928,0.864,0.824,0.744,0.837,1.241,0.813,1.106,1.239,0.748,0.798,0.911,1.994,0.896,0.554,0.793,2.574,0.674,0.52,0.915,0.874,1.521,6.56,0.841,0.287,2.48,1.004,0.858,2.26,1.948,1.066,0.662,0.871,3.051,0.822,0.743,1.009,0.782,1.161,1.025,1.345,1.645,1.021,3.011 +NM_001068,0.823,1.226,1.368,0.828,1.071,0.898,0.663,0.37,1.387,1.235,0.828,0.741,0.561,0.829,1.018,1.224,0.872,0.779,1.258,1.158,0.629,0.74,1.412,0.884,0.782,0.792,1.08,1.035,0.378,1.133,1.018,1.152,1.668,1.347,0.184,1.031,0.968,0.744,1.129,0.867,1.031,1.237,0.76,0.796,0.972,1.097,0.85,0.66,0.743,0.793,1.083,0.726,1.072,1.638 +NM_001070,0.715,0.961,0.892,0.746,1.029,1.257,0.611,0.418,1.122,1.488,0.746,1.184,0.559,0.551,0.788,1.499,0.758,0.911,1.167,0.972,0.534,0.709,1.428,1.287,0.585,0.8,1.217,0.947,0.415,1.138,0.921,1.259,2.039,0.992,0.236,1.246,0.869,0.814,1.737,0.875,1.008,0.768,0.759,2.031,1.394,0.941,1.204,0.685,1.03,0.983,1.183,0.987,1.32,1.521 +NM_001072,0.979,1.147,1.02,1.223,0.958,1.151,0.919,1.124,1.05,0.949,0.998,0.971,0.919,1.097,0.9,1.069,0.933,1.011,0.931,0.921,1.087,0.976,0.944,0.858,0.989,1.111,0.845,0.988,1.312,1.052,1.039,1.036,0.901,1.007,1.013,1.04,1.068,0.898,1.085,0.959,0.997,0.998,0.898,1.182,0.954,0.878,0.913,1.143,1.084,0.954,1.054,0.978,0.977,0.947 +NM_001073,0.493,3.789,0.528,2.204,0.579,3.244,1.547,0.513,0.534,0.478,2.905,0.557,0.457,0.458,4.772,3.046,0.53,2.616,0.533,10.73,0.512,0.487,1.547,0.504,2.08,0.552,0.501,0.532,0.568,2.578,0.61,0.763,0.566,12.22,0.563,0.683,6.718,0.535,1.327,0.536,0.469,4.369,2.393,0.584,0.544,2.802,2.345,0.52,2.374,0.475,1.674,0.532,0.497,1.25 +NM_001074,0.746,1.034,0.706,1.5,0.825,1.553,0.889,0.781,0.811,0.793,3.849,0.713,0.74,0.663,6.779,3.738,0.764,1.104,0.735,8.611,0.754,0.796,2.666,0.816,1.032,0.783,0.743,0.691,0.8,1.77,0.85,0.809,0.907,1.408,0.694,0.855,9.86,0.796,1.761,0.808,0.689,2.999,3.703,0.718,0.86,5.594,4.937,0.667,4.488,0.732,1.725,0.829,0.743,2.292 +NM_001075,0.758,1.04,0.961,1.161,0.752,1.478,1.251,0.828,0.962,0.881,2.806,0.858,0.857,0.936,2.305,3.42,0.808,1.049,0.957,3.134,0.784,0.852,1.973,0.825,0.931,0.781,0.845,0.922,0.868,1.65,0.873,0.978,0.997,1.519,0.832,0.981,5.924,0.952,1.49,1.056,0.903,2.397,1.936,1.03,0.787,4.545,3.882,0.903,3.24,0.889,1.227,0.785,0.901,2.179 +NM_001077,1.07,0.964,0.943,1.124,0.878,0.996,0.924,1.06,0.89,0.873,0.783,0.984,0.996,0.839,4.19,1.042,0.953,0.828,1.042,4.291,0.967,0.89,1.013,0.961,1.11,0.953,0.929,1.068,0.783,1.198,1.093,0.941,0.893,0.939,0.92,1.085,1.863,1.038,1.026,1.192,0.977,1.089,2.133,1.169,1.048,1.076,1.619,0.891,2.028,1.014,1.385,1.045,0.922,0.887 +NM_001078,1.049,1.132,1.083,1.006,1.124,1.021,0.924,0.87,1.084,1.068,0.932,0.908,0.992,0.953,0.986,1.204,0.974,1.186,1.117,0.895,0.948,1.135,1.026,0.95,0.899,0.913,1.106,1.132,0.91,1.065,1.317,1.071,1.055,0.875,1.004,0.923,1.061,1.029,0.902,0.959,0.865,0.924,0.928,1.079,0.892,1.071,1.005,0.996,0.968,0.984,1.001,0.971,0.899,1.012 +NM_001079,1.112,0.963,1.159,0.947,1.043,1.015,0.981,1.017,0.976,1.054,0.826,1.025,0.96,0.945,0.874,0.976,0.924,1.137,1.197,1.068,0.97,1.056,0.957,1.195,1.054,1.055,1.074,1.015,0.958,1.047,1.009,0.963,0.949,0.892,1.0,0.966,1.046,0.939,1.004,0.95,0.963,0.921,0.871,0.893,1.19,0.841,0.921,0.943,1.013,0.998,1.042,1.029,1.246,1.175 +NM_001080,1.126,1.413,0.886,0.882,1.009,0.936,0.944,0.587,1.272,1.071,0.82,0.922,0.788,0.998,1.05,1.081,0.889,0.955,0.917,1.339,0.8,0.865,1.114,1.081,0.845,0.909,1.048,0.911,0.695,0.823,0.804,1.007,2.184,1.389,0.809,0.963,1.087,1.068,0.855,0.97,0.89,1.15,0.893,0.906,0.823,1.014,1.011,0.85,1.061,0.952,0.981,0.854,0.947,1.749 +NM_001081,0.996,1.09,0.937,0.876,0.923,0.923,1.042,1.019,0.884,0.99,0.943,0.863,1.082,1.044,0.927,1.061,0.998,0.921,0.981,1.018,0.945,1.116,1.121,1.0,1.08,0.858,0.916,1.041,0.982,1.006,1.027,1.11,0.967,1.013,0.975,0.952,1.133,1.006,0.843,1.029,0.973,0.916,0.93,0.891,1.048,0.913,0.951,0.929,1.007,1.128,1.008,1.185,0.936,1.03 +NM_001084,0.38,0.893,0.377,0.992,0.378,1.213,0.861,0.337,0.363,0.393,1.702,0.317,0.354,0.34,0.936,2.183,0.397,0.664,0.392,1.008,0.427,0.338,2.297,0.471,0.905,0.365,0.44,0.324,0.921,0.948,0.346,2.625,2.793,1.615,0.325,0.957,1.162,0.334,4.362,2.909,0.35,1.609,0.862,4.163,0.468,1.192,1.374,0.335,1.455,0.383,1.4,2.292,0.463,1.232 +NM_001085,0.509,5.426,0.924,3.951,0.653,0.931,1.458,0.518,0.497,0.544,0.604,0.538,0.566,0.459,0.668,0.723,1.852,1.046,5.095,0.694,0.518,0.49,0.781,0.567,0.617,0.668,0.948,0.605,0.603,1.093,0.542,66.73,2.444,2.077,0.639,1.944,1.789,0.624,9.482,13.86,1.03,3.631,0.984,74.11,0.686,0.574,2.173,0.445,1.753,3.171,1.106,14.17,1.016,5.253 +NM_001086,1.006,2.764,0.905,3.549,0.929,4.96,3.947,0.716,0.804,0.84,1.528,0.758,0.963,0.572,1.557,4.257,0.776,1.823,0.773,1.433,0.762,0.845,1.38,0.862,2.347,0.755,0.764,0.809,2.847,5.17,0.883,1.133,0.891,3.993,0.723,0.734,5.401,0.996,3.871,0.762,0.846,3.102,2.47,0.797,0.891,1.727,0.843,0.978,2.94,0.711,1.85,0.733,0.716,0.964 +NM_001087,0.782,0.957,0.919,0.888,0.81,1.413,0.853,0.602,0.882,0.85,0.977,0.869,0.727,0.785,0.895,1.428,0.84,1.062,0.926,0.746,0.839,0.838,1.278,0.972,0.996,1.101,0.917,0.703,0.719,1.271,0.856,1.23,2.358,1.768,0.574,0.84,1.037,0.989,1.626,0.939,0.868,1.401,0.686,1.817,0.977,0.727,0.914,0.86,1.116,0.985,0.881,0.792,1.131,1.952 +NM_001088,1.036,1.048,0.801,1.074,1.183,1.022,1.071,1.063,0.961,1.05,0.84,1.054,1.02,0.812,1.025,0.974,1.016,1.12,1.068,0.946,0.97,0.933,0.978,0.994,1.074,1.017,0.963,0.876,1.216,1.072,1.016,1.0,0.898,0.942,1.136,1.02,0.964,0.845,0.955,0.956,1.063,1.099,1.034,0.926,0.974,1.031,1.103,0.999,1.056,0.991,0.961,0.82,0.983,0.972 +NM_001089,0.888,1.069,1.1,0.892,0.92,0.876,0.855,0.841,1.029,0.914,0.949,0.917,0.814,0.9,0.823,0.917,0.887,0.887,0.843,1.163,0.923,1.055,1.269,0.969,1.107,0.974,0.834,1.075,0.954,1.176,0.997,1.641,1.085,1.257,0.931,1.131,0.925,1.149,1.028,1.035,0.951,1.269,0.942,0.991,0.87,0.834,1.127,0.978,0.865,0.98,0.994,0.797,0.929,1.145 +NM_001090,0.521,1.327,1.123,0.606,0.92,0.817,0.615,0.336,1.006,1.273,0.7,0.721,0.424,0.552,0.641,0.905,0.866,0.854,0.851,0.921,0.501,0.744,1.348,0.994,0.587,0.842,1.268,0.757,0.641,1.074,0.831,1.829,2.206,0.996,0.31,1.533,0.891,0.924,2.138,1.639,1.047,1.018,0.888,1.629,1.021,0.911,1.092,0.701,1.123,0.802,1.128,0.992,1.03,2.006 +NM_001091,0.214,1.154,0.264,1.018,0.232,3.248,0.561,0.199,0.182,0.264,4.421,0.218,0.212,0.196,1.969,5.881,0.252,1.319,0.236,3.2,0.237,0.191,3.919,0.333,0.518,0.396,0.232,0.199,0.77,5.406,0.23,1.239,0.828,2.553,0.397,1.179,3.157,0.253,2.986,0.982,0.199,5.19,1.691,2.984,0.248,3.153,1.578,0.219,2.309,0.28,3.111,0.526,0.275,1.032 +NM_001092,1.952,1.553,2.814,1.536,2.536,1.9449999999999998,1.507,1.3809999999999998,2.5380000000000003,2.162,1.996,1.6139999999999999,1.4329999999999998,1.771,1.915,2.213,2.1069999999999998,1.9729999999999999,2.6029999999999998,2.017,1.678,1.791,2.45,1.93,1.292,2.06,2.717,2.206,1.298,2.294,1.9929999999999999,1.929,1.98,2.375,1.3370000000000002,1.849,2.168,1.9220000000000002,1.8780000000000001,1.6019999999999999,2.657,2.102,1.592,1.712,2.552,2.085,1.9409999999999998,1.8649999999999998,2.174,2.433,2.153,1.467,2.463,2.6500000000000004 +NM_001093,1.142,0.952,1.057,1.002,1.062,0.965,1.066,0.973,0.948,0.975,0.945,0.978,0.959,1.082,1.051,1.027,1.105,1.086,0.961,0.979,0.948,0.965,0.919,1.038,1.144,1.086,1.014,1.061,0.828,1.081,0.986,1.106,0.965,1.0,1.055,0.887,1.01,1.021,0.999,1.059,1.018,1.101,0.818,0.991,0.98,1.084,1.106,0.992,1.099,1.088,0.939,0.913,0.931,0.927 +NM_001094,2.036,1.903,2.137,2.0380000000000003,1.91,2.009,2.299,1.895,1.983,2.029,1.9929999999999999,2.07,2.0789999999999997,1.9300000000000002,1.9699999999999998,1.891,2.061,1.9180000000000001,2.0549999999999997,1.932,2.274,1.9169999999999998,2.159,1.888,2.0460000000000003,2.0060000000000002,2.0309999999999997,2.006,1.834,2.123,1.8639999999999999,2.0060000000000002,2.113,2.187,2.121,2.251,2.1020000000000003,1.895,1.876,2.1849999999999996,2.067,1.816,1.58,2.03,1.988,2.0759999999999996,2.121,1.982,2.301,1.881,2.1740000000000004,2.193,1.9849999999999999,1.9529999999999998 +NM_001095,0.883,1.264,0.965,0.945,1.009,0.959,1.052,0.938,0.871,1.037,1.018,1.01,0.817,0.907,0.894,1.104,0.908,0.978,1.066,1.004,0.991,1.082,1.434,0.976,1.008,0.918,1.055,0.93,0.868,1.301,1.063,1.411,1.124,1.121,0.945,0.984,0.887,0.974,0.997,0.927,1.121,1.308,1.041,1.016,0.957,1.106,0.844,0.973,0.931,0.839,0.994,0.873,0.908,1.246 +NM_001096,0.599,1.1,0.912,0.915,0.655,1.076,0.63,0.283,0.802,0.96,0.934,0.648,0.341,0.505,0.873,1.725,0.68,0.916,0.944,1.004,0.408,0.507,1.532,0.724,0.835,0.593,1.285,0.456,0.457,1.156,0.683,1.877,3.249,1.551,0.204,0.822,1.411,0.685,2.097,1.231,0.666,1.426,0.975,2.059,0.849,1.525,0.875,0.522,1.162,0.914,1.591,1.03,0.921,1.278 +NM_001097,0.885,1.066,0.972,1.058,1.043,1.034,0.87,0.876,1.139,0.934,0.895,1.031,0.901,0.966,1.222,1.122,1.0,1.068,1.021,0.98,1.007,1.0,0.901,1.077,1.05,1.007,0.932,1.021,0.819,1.069,1.158,1.001,1.461,0.987,1.18,1.02,0.985,1.087,0.791,1.503,1.116,0.959,1.125,1.343,1.129,1.488,1.097,0.942,0.996,0.803,0.889,1.009,1.0,2.125 +NM_001100,1.125,1.019,0.988,0.945,1.162,1.129,1.044,0.866,0.968,1.064,1.054,0.993,1.039,0.962,1.022,1.045,1.028,1.034,0.879,1.0,0.932,1.097,1.021,0.957,1.074,1.037,1.024,1.035,1.279,1.079,0.975,1.12,0.888,0.92,1.024,0.954,0.978,1.076,1.041,0.956,1.112,0.982,1.198,1.058,0.873,0.942,0.931,1.051,1.057,1.151,0.969,1.072,0.989,1.026 +NM_001102,0.456,0.982,1.536,0.505,0.625,0.736,0.696,0.313,0.816,1.323,0.812,0.829,0.302,0.391,0.573,0.938,1.03,0.881,1.239,0.905,0.567,0.425,1.289,0.963,0.347,0.402,1.416,0.759,0.265,1.184,0.651,2.764,1.78,1.188,0.136,1.509,0.885,0.773,1.137,2.772,1.573,1.445,0.686,2.898,1.529,0.738,1.353,0.343,1.115,0.947,1.396,1.936,1.761,0.804 +NM_001103,1.075,1.176,0.993,1.035,1.12,0.963,1.019,1.044,1.046,0.956,0.93,0.964,1.121,0.911,0.927,0.998,1.009,1.044,0.927,0.799,0.992,1.103,0.869,0.968,1.036,0.952,0.963,1.196,0.949,1.107,1.008,0.942,0.982,1.048,1.024,0.938,0.936,0.889,0.965,1.011,1.048,0.886,1.272,0.874,0.949,0.961,1.095,0.885,1.045,1.082,1.165,0.989,1.043,1.002 +NM_001104,1.07,0.931,1.055,0.961,1.012,1.058,0.918,1.046,0.835,1.156,0.925,0.959,0.873,0.916,1.017,0.977,0.93,0.903,1.048,1.155,1.217,1.178,0.932,1.048,1.062,1.052,1.007,0.963,1.105,0.961,0.994,1.075,0.985,0.981,1.094,0.995,1.045,1.043,0.939,0.95,0.921,1.022,1.396,0.991,0.96,1.14,0.964,0.973,0.937,1.009,0.932,0.979,1.086,1.072 +NM_001105,0.372,1.101,1.051,0.607,0.587,1.582,0.874,0.385,0.671,0.549,0.931,0.59,0.481,0.441,0.888,1.324,0.556,0.973,0.501,1.422,0.372,0.544,1.476,0.784,0.609,0.456,0.878,0.566,0.674,1.599,0.59,2.648,1.289,1.719,0.307,0.783,1.076,0.832,1.891,1.465,0.712,1.536,0.587,1.074,0.698,1.039,0.785,0.516,0.702,0.717,1.283,1.076,0.52,1.54 +NM_001106,0.69,0.99,1.147,0.789,0.874,0.972,1.004,0.902,0.897,0.93,0.952,0.805,0.849,1.033,0.888,0.912,0.847,0.841,1.042,1.224,0.8,0.789,1.113,0.974,0.994,0.852,0.884,0.865,0.828,1.009,0.879,1.222,1.146,1.087,0.66,1.233,1.068,0.878,0.948,1.615,0.889,1.142,0.977,0.952,0.798,0.913,1.093,0.746,1.023,0.817,1.069,1.177,0.875,1.204 +NM_001109,0.771,1.452,0.964,1.153,0.747,1.29,1.112,0.702,0.821,0.851,1.084,0.881,0.801,0.74,0.937,0.852,0.825,0.969,0.741,1.065,0.92,0.835,0.758,0.846,0.962,0.864,1.047,0.8,0.8,1.911,0.84,2.069,1.31,1.426,0.759,1.21,1.068,0.661,3.48,3.249,0.936,0.974,0.828,1.619,0.87,0.826,0.972,0.852,0.737,0.877,0.928,1.273,0.824,1.029 +NM_001110,0.807,1.335,1.079,0.749,0.998,1.13,0.845,0.758,0.971,0.956,0.99,0.812,0.729,1.005,0.986,1.513,0.94,1.032,0.998,1.082,0.714,0.911,1.621,0.988,0.749,0.781,1.081,0.91,0.81,1.063,1.021,1.128,1.148,1.088,1.203,1.187,1.15,0.931,1.555,0.963,0.958,1.071,0.797,1.094,0.893,1.076,1.164,1.031,1.191,0.866,1.007,0.969,0.943,2.274 +NM_001111,1.044,1.178,0.985,1.1,1.081,1.195,0.807,0.836,0.934,1.03,1.097,0.917,0.962,0.877,0.803,0.872,0.979,1.095,0.889,0.933,0.937,0.994,1.003,0.98,1.065,0.988,1.024,0.91,0.759,1.064,1.056,1.145,0.916,1.071,0.952,0.909,0.953,1.024,0.958,0.931,1.065,1.031,0.783,1.1,1.075,1.178,0.941,0.849,1.002,1.026,1.103,1.022,0.928,0.911 +NM_001114,1.188,0.895,1.35,1.022,1.009,0.926,0.821,0.844,1.349,0.978,0.874,1.066,1.036,1.048,0.908,0.984,1.06,0.938,0.974,0.973,0.896,0.992,0.809,1.0,0.905,1.078,1.214,1.209,0.679,0.881,1.105,1.259,1.218,1.081,0.884,0.921,0.852,1.06,0.971,0.962,1.124,0.942,1.104,0.913,1.027,1.041,1.261,1.0,0.914,1.204,1.031,0.982,1.061,1.404 +NM_001115,0.976,1.056,0.859,0.987,0.966,0.914,0.853,0.966,0.977,0.916,0.992,0.915,0.948,1.003,0.895,1.013,1.02,1.073,1.123,0.982,0.996,0.936,1.203,0.995,1.129,0.923,1.075,1.012,0.96,0.939,0.971,0.905,1.255,0.988,0.86,1.068,1.018,1.052,1.141,1.224,0.943,1.096,1.159,1.179,0.878,0.958,1.065,1.13,1.019,0.907,0.928,1.021,0.911,1.054 +NM_001118,0.969,0.905,0.855,0.992,0.983,1.016,0.873,0.878,0.952,1.094,1.015,1.076,0.912,0.909,0.91,1.02,1.147,0.978,0.986,0.965,1.13,0.888,0.936,1.064,1.011,1.076,1.08,1.016,1.072,1.09,0.95,0.996,1.045,1.034,0.959,1.071,0.984,1.018,1.048,0.938,1.06,0.89,0.881,1.069,1.123,0.997,1.037,1.053,0.939,1.007,0.987,0.943,1.155,0.944 +NM_001119,0.728,0.834,1.241,0.853,0.824,1.106,0.725,0.356,0.96,0.985,1.22,0.513,0.489,0.666,0.995,1.461,0.939,0.918,0.978,1.245,0.53,0.632,1.267,0.772,0.706,0.938,1.111,0.813,0.409,1.101,0.896,1.756,1.335,1.532,0.376,0.572,1.102,0.665,1.646,1.01,0.847,1.516,0.772,1.416,1.173,0.901,0.888,0.803,1.011,0.943,1.223,0.814,1.261,1.359 +NM_001120,0.344,1.484,0.947,0.616,0.655,1.043,0.642,0.31,0.747,0.645,0.833,0.6,0.28,0.389,0.721,1.259,0.657,0.739,0.771,1.389,0.326,0.455,1.353,0.79,0.46,0.47,1.096,0.529,0.478,1.823,0.514,1.952,1.952,1.193,0.126,1.192,1.254,0.509,2.038,1.765,0.691,1.092,0.837,1.402,0.612,1.132,1.563,0.337,1.344,0.477,1.183,1.167,0.745,1.276 +NM_001122,0.8,0.959,0.47,0.835,0.854,1.1,0.701,0.479,1.203,0.911,1.852,0.427,0.498,0.542,1.284,0.304,1.389,0.695,0.806,0.833,0.418,0.327,1.281,0.679,0.789,0.436,0.345,0.909,0.525,1.078,0.502,1.909,1.78,1.429,0.317,0.766,1.987,0.624,1.606,5.974,0.628,1.722,0.449,1.135,1.088,0.866,1.562,0.588,0.434,0.741,1.323,1.024,0.944,2.644 +NM_001123,0.945,0.953,1.103,0.847,1.199,1.0,1.014,0.911,1.29,1.275,0.974,0.92,0.814,0.968,1.14,1.108,1.0,1.113,1.179,0.947,1.04,0.909,1.058,1.067,0.859,1.078,1.224,1.052,0.723,0.942,1.347,0.902,1.454,1.017,1.151,1.025,0.785,1.009,0.863,0.853,1.073,0.896,1.016,0.916,1.145,1.048,1.208,0.868,1.078,1.041,0.998,0.964,1.079,1.132 +NM_001124,2.897,0.55,1.055,0.996,3.211,0.973,0.492,4.128,4.367,0.756,0.738,0.739,2.204,0.921,2.208,0.839,1.556,0.856,1.029,0.814,0.834,2.086,0.598,0.652,0.712,2.757,0.847,1.744,0.359,1.095,1.811,1.087,1.013,0.84,15.06,0.567,0.789,4.839,1.026,3.409,1.041,0.726,0.595,0.574,0.743,0.593,1.767,3.45,1.004,1.439,0.965,1.444,1.73,0.815 +NM_001125,0.989,1.009,1.025,0.937,1.124,0.913,0.984,1.044,0.906,0.966,1.074,1.101,0.954,0.916,1.03,0.925,0.982,0.998,1.022,0.947,0.882,0.995,1.086,0.924,0.982,1.045,0.999,1.042,0.898,0.918,0.936,0.993,0.909,0.948,1.309,1.15,0.927,1.11,0.883,0.968,0.892,1.058,1.061,0.955,1.001,1.197,1.034,1.005,0.974,1.043,1.067,0.823,1.091,0.986 +NM_001126,0.944,1.062,0.871,0.959,0.997,0.959,0.763,0.886,1.125,1.03,1.162,0.942,0.896,0.856,1.027,1.129,0.825,1.015,0.988,1.032,0.819,0.996,0.956,1.003,0.853,1.0,0.889,0.892,0.915,1.009,0.975,1.077,1.066,1.0,0.839,1.26,0.932,1.113,1.127,1.112,0.98,0.87,0.821,1.058,0.819,1.209,1.006,1.073,0.936,0.905,0.976,0.885,0.89,1.321 +NM_001128,0.72,0.998,1.291,0.734,0.941,1.129,0.843,0.545,1.403,0.927,1.095,0.739,0.531,0.86,1.268,1.494,0.851,0.876,1.078,1.056,0.717,0.582,1.229,0.866,0.733,0.664,0.996,0.941,0.58,1.236,1.109,1.041,1.332,1.378,0.599,0.847,1.02,0.845,1.22,0.647,1.084,1.317,0.79,0.946,0.907,1.275,0.955,0.515,1.309,0.71,1.223,0.833,1.016,1.132 +NM_001129,0.679,0.922,0.727,0.883,0.671,1.089,0.974,0.657,0.708,0.768,1.117,0.724,0.627,0.756,0.754,1.039,0.798,0.716,0.728,1.044,1.159,0.669,1.933,0.758,1.061,0.747,0.738,0.953,0.991,1.834,0.737,22.69,2.942,2.752,0.74,0.939,0.934,1.021,1.815,3.959,1.112,2.887,0.861,0.991,0.792,0.974,0.876,0.737,0.746,0.826,1.046,1.779,0.966,1.72 +NM_001130,0.949,1.015,0.832,1.087,0.693,1.993,0.554,0.739,0.844,0.661,1.087,0.948,1.198,0.767,0.886,1.097,1.015,0.931,1.206,0.963,1.218,1.344,1.059,0.92,1.192,1.455,1.074,0.622,0.834,0.903,0.822,0.951,1.497,1.753,0.721,0.515,1.05,1.021,1.887,0.724,0.692,1.234,0.734,1.725,0.737,0.809,0.582,1.229,0.714,0.834,0.878,0.518,0.807,0.95 +NM_001131,1.125,0.806,1.131,1.074,0.958,1.063,0.795,1.088,1.0,0.962,0.926,0.871,0.899,0.936,1.07,0.96,1.02,1.151,0.889,1.06,0.991,1.016,0.902,0.936,1.093,1.059,1.017,0.916,0.581,0.905,0.837,0.84,1.079,0.938,1.043,1.065,1.014,0.851,0.949,0.969,0.85,1.019,0.735,1.067,0.988,1.017,0.892,1.004,1.096,1.069,0.823,0.998,1.006,0.989 +NM_001133,0.965,1.026,0.993,0.998,1.038,0.92,0.797,0.94,1.028,0.931,1.056,1.05,0.918,1.045,0.912,1.074,0.931,1.02,0.975,1.118,0.843,1.049,0.862,0.88,1.084,0.902,1.04,1.029,1.007,1.086,0.91,1.131,1.03,1.187,0.985,1.169,1.19,0.912,1.195,0.982,0.833,0.865,1.189,0.892,1.012,0.936,1.043,0.962,0.928,1.035,1.041,0.993,1.015,1.036 +NM_001134,1.108,1.162,1.083,0.907,0.932,0.976,0.981,0.97,1.109,0.96,1.097,1.04,1.04,0.989,0.895,0.974,1.002,1.114,1.048,1.073,1.001,1.041,0.892,0.774,1.055,0.964,0.997,0.984,0.997,1.131,0.95,0.991,0.999,1.14,1.001,0.988,1.059,0.849,1.017,0.956,1.044,0.923,1.389,1.064,0.912,1.138,1.014,1.081,1.094,0.972,1.131,0.95,0.964,0.961 +NM_001135,1.107,0.753,0.941,0.982,1.031,0.951,1.132,0.962,1.05,1.17,0.894,1.027,1.122,0.932,0.981,1.062,0.975,0.998,0.979,0.924,1.09,1.001,0.999,1.024,0.897,0.944,0.923,0.937,1.233,0.961,1.059,1.689,1.075,1.028,1.0,1.023,0.989,1.106,0.963,2.003,0.956,1.06,1.271,0.958,1.045,0.954,0.933,0.903,0.885,0.979,1.03,1.212,0.952,0.945 +NM_001136,1.081,1.126,0.961,1.094,1.061,1.036,0.986,0.859,1.008,1.132,0.924,1.007,0.907,1.074,1.003,0.903,0.998,0.941,0.947,1.039,1.023,1.096,0.999,0.964,0.968,1.177,1.064,1.013,1.143,0.987,1.165,1.134,0.896,0.958,1.002,0.957,0.983,0.932,0.951,1.099,0.979,1.035,0.942,0.957,1.047,0.941,1.086,0.846,1.105,0.836,0.981,0.825,0.854,0.991 +NM_001138,1.041,1.267,0.964,0.877,1.117,1.304,1.085,1.017,1.075,1.026,1.154,0.962,1.054,0.896,0.946,0.974,0.98,0.855,1.02,0.971,1.03,0.934,0.93,1.056,1.106,0.921,0.963,0.97,0.895,1.044,0.941,0.953,1.006,0.913,1.029,1.1,1.068,1.115,0.968,1.003,0.964,1.163,1.096,0.914,1.029,1.021,0.795,1.003,0.962,0.957,0.936,1.122,1.19,1.011 +NM_001139,2.009,0.965,1.611,0.86,1.426,0.911,0.814,1.021,0.984,4.265,0.756,2.176,1.12,1.033,1.104,1.547,1.387,1.595,2.183,1.032,1.13,1.048,0.881,4.008,0.908,1.009,4.283,0.971,0.803,0.852,0.963,0.856,2.676,0.822,0.966,0.888,0.844,0.996,0.888,1.041,4.192,0.706,0.835,0.828,3.869,0.793,2.823,1.24,0.929,2.63,1.329,1.335,3.553,0.87 +NM_001140,1.121,1.095,0.999,0.926,0.821,1.003,1.093,1.248,1.03,0.991,0.984,1.052,1.034,0.996,1.076,0.891,1.07,1.09,0.956,0.948,1.034,0.953,0.939,1.095,0.986,1.057,1.043,1.085,1.026,0.977,1.118,0.816,1.093,0.886,1.045,1.134,0.94,0.894,1.117,1.035,0.86,0.838,1.103,0.926,0.91,0.995,1.052,1.126,0.953,0.942,1.031,1.047,1.069,0.963 +NM_001141,2.894,0.803,1.96,0.993,2.159,0.841,0.845,0.921,2.155,3.186,0.846,2.318,1.833,2.046,1.88,0.907,5.513,1.28,5.959,0.949,2.226,2.035,0.738,3.209,0.796,2.999,8.042,1.967,1.003,0.726,2.112,0.83,1.202,0.809,0.882,0.823,0.678,1.889,0.711,0.654,2.816,0.81,0.693,0.598,3.279,0.771,1.69,1.865,0.672,4.544,0.817,1.466,3.824,0.826 +NM_001143,0.952,1.0,1.044,0.932,0.947,1.112,0.971,1.041,1.046,0.873,1.169,1.04,0.976,1.201,1.04,1.051,0.888,1.061,0.91,0.979,0.915,0.75,1.084,0.917,1.063,1.002,1.141,1.011,1.219,1.084,1.005,0.963,0.914,0.967,0.965,0.989,1.061,1.042,0.958,0.839,0.921,1.155,1.006,1.037,0.956,1.018,0.998,1.025,0.832,1.025,0.88,0.881,1.084,0.979 +NM_001144,1.097,0.939,1.112,0.865,1.32,1.066,0.77,0.973,1.459,0.973,1.015,0.792,0.935,1.111,1.131,1.073,0.89,1.056,1.241,0.993,1.003,0.93,0.965,1.195,0.771,1.208,1.174,1.283,0.773,0.887,1.214,1.123,1.15,0.985,1.557,1.022,0.985,1.157,0.987,0.775,1.167,0.992,1.012,0.814,0.893,1.145,1.23,0.999,1.009,1.189,0.993,0.825,0.943,1.05 +NM_001145,0.117,1.679,0.221,1.782,0.21,2.505,2.17,0.134,0.17,0.168,2.376,0.171,0.165,0.157,0.873,1.65,0.117,1.97,0.192,2.984,0.0921,0.152,2.538,0.132,1.957,0.142,0.164,0.197,1.438,3.138,0.161,0.707,0.404,4.016,0.091,2.04,2.218,0.167,1.861,0.563,0.205,2.743,1.251,1.16,0.152,1.916,0.95,0.136,1.154,0.146,2.494,0.522,0.137,0.287 +NM_001146,1.048,1.136,0.902,1.005,1.119,0.901,1.011,0.938,0.826,0.844,0.949,1.163,0.997,1.006,0.855,0.975,0.964,1.03,0.807,0.89,1.027,1.093,1.136,1.013,1.136,1.009,0.959,1.102,0.961,1.051,1.032,1.178,1.62,1.082,0.976,0.896,0.971,0.919,0.983,0.909,1.101,0.952,0.959,0.84,1.06,1.028,0.934,0.889,1.018,0.975,1.029,1.066,0.872,0.86 +NM_001147,0.915,1.137,0.958,1.042,0.957,0.933,1.049,0.927,0.942,0.916,1.049,1.116,0.928,0.943,0.914,1.1,0.952,0.998,0.841,0.939,1.022,1.001,0.954,1.017,0.86,0.958,0.853,0.937,0.88,1.03,0.79,1.656,1.118,1.105,0.968,1.22,0.952,1.049,1.145,2.647,1.035,1.083,0.931,1.066,1.082,0.94,0.963,0.929,0.901,1.04,1.12,2.372,0.979,1.18 +NM_001148,0.977,1.136,0.964,1.018,0.955,0.898,0.835,0.883,0.921,1.12,0.987,1.14,1.061,0.827,0.838,1.078,1.074,1.035,1.196,1.01,0.942,1.08,0.953,1.072,1.014,0.927,0.907,1.061,1.17,1.014,0.928,0.991,1.022,1.038,1.117,0.991,0.876,1.023,1.046,0.862,1.021,1.165,0.857,0.946,1.061,0.912,1.028,0.996,0.941,1.019,1.017,1.18,0.943,0.967 +NM_001149,1.6800000000000002,1.665,2.488,1.678,1.783,2.947,1.408,1.513,2.238,1.863,4.564,1.388,1.513,1.643,2.4299999999999997,2.819,1.8199999999999998,1.9539999999999997,1.885,4.372,1.479,1.475,3.285,1.4969999999999999,1.6059999999999999,1.534,2.117,1.596,1.126,2.3200000000000003,1.988,1.617,2.4139999999999997,2.351,1.437,2.138,2.949,1.627,2.422,1.376,1.932,4.229,2.257,3.349,1.8780000000000001,5.244,1.565,1.444,2.016,1.851,4.457,1.634,1.853,2.2699999999999996 +NM_001150,0.606,1.264,0.737,3.089,0.661,17.71,0.714,0.672,0.668,0.631,16.72,0.636,0.571,0.58,38.9,89.32,0.661,0.679,0.639,14.27,0.649,0.651,15.76,0.679,0.609,0.772,0.753,0.699,0.757,2.222,0.659,1.207,1.189,2.494,0.732,1.205,29.44,0.68,5.996,3.168,0.558,44.57,17.87,0.65,0.762,8.316,11.53,0.692,26.88,0.738,18.18,0.892,0.836,1.687 +NM_001151,0.66,1.905,0.887,0.974,0.76,1.245,0.774,0.503,1.065,0.752,1.239,0.566,0.693,0.625,0.833,1.531,0.626,1.025,1.157,1.081,0.683,0.773,1.051,1.009,2.342,1.112,1.002,0.904,0.455,1.024,0.885,1.428,3.024,1.948,0.198,0.83,1.228,0.92,1.233,0.447,1.159,1.463,0.781,0.876,0.85,1.109,0.61,0.591,0.822,0.782,0.998,0.509,0.921,1.635 +NM_001153,0.199,1.292,0.65,0.796,0.336,2.677,0.808,0.201,0.441,0.374,1.173,0.304,0.206,0.24,1.371,5.076,0.415,1.162,0.547,2.14,0.21,0.334,2.592,0.421,0.379,0.212,0.744,0.232,0.409,2.125,0.462,1.77,4.478,2.604,0.0814,1.708,2.403,0.349,2.951,1.496,0.449,2.139,1.004,1.457,0.395,2.293,1.728,0.229,2.317,0.331,2.777,0.707,0.346,2.064 +NM_001154,0.51,1.738,0.867,1.089,0.527,1.22,0.864,0.213,0.583,0.745,1.531,0.524,0.491,0.412,0.631,1.192,0.456,0.843,0.917,1.487,0.472,0.463,1.195,0.489,0.916,0.683,0.909,0.513,0.217,1.241,0.436,2.532,0.957,1.353,0.121,1.334,1.065,0.513,1.89,1.194,0.639,1.606,0.66,2.866,0.68,0.983,0.879,0.454,0.759,0.568,1.673,1.057,0.896,0.773 +NM_001156,0.651,1.091,1.027,0.73,0.9,1.228,0.583,0.446,1.097,0.916,1.231,0.996,0.558,0.711,1.01,1.369,0.536,0.926,1.283,0.99,0.444,0.581,1.121,0.849,0.551,0.707,1.054,0.854,0.325,1.372,0.873,1.062,1.827,1.501,0.121,1.401,1.288,0.859,1.176,0.599,1.129,1.116,0.728,1.322,1.013,1.066,0.994,0.638,0.732,0.829,1.228,1.16,1.069,2.468 +NM_001157,0.933,0.915,1.403,0.559,1.226,1.12,0.554,0.785,1.482,0.786,0.692,0.764,0.757,0.805,0.859,1.212,1.658,0.877,0.989,1.079,0.555,0.868,0.963,1.01,0.374,1.342,1.076,1.297,0.497,1.169,1.759,1.286,1.059,1.093,2.155,0.917,0.896,1.033,1.197,0.48,1.476,0.948,0.65,1.054,1.04,0.732,1.468,1.114,1.213,0.947,1.018,0.61,0.894,1.023 +NM_001158,1.037,0.951,1.145,0.998,1.017,0.936,1.041,1.037,1.062,1.095,0.979,0.99,1.03,1.082,0.96,0.968,0.976,1.001,1.129,0.995,1.083,1.197,1.097,1.008,1.032,1.019,0.878,1.04,0.958,0.921,0.998,0.873,1.055,0.952,1.054,1.053,0.944,1.016,1.011,0.967,1.005,1.015,0.896,0.888,1.039,1.238,1.009,1.01,1.013,1.105,0.889,0.938,0.977,0.896 +NM_001159,1.001,0.991,0.989,0.875,1.172,1.077,1.06,1.067,1.12,1.057,1.142,0.99,0.919,0.8,0.826,1.032,0.966,1.093,1.206,0.963,0.93,1.134,1.045,1.071,0.896,0.926,0.971,0.869,1.088,0.843,0.852,1.153,1.094,1.317,0.987,0.975,0.975,1.005,0.898,1.155,1.139,1.04,1.059,0.872,0.981,1.144,1.046,1.003,0.976,1.224,1.11,1.019,1.128,1.112 +NM_001161,0.963,1.045,0.941,0.969,0.911,1.068,0.987,0.982,0.95,0.949,0.945,1.112,1.165,1.122,0.768,0.942,1.164,1.02,0.937,0.908,0.969,0.918,1.127,0.957,1.062,0.949,1.057,0.978,0.802,1.018,1.013,1.06,0.945,0.939,1.24,1.061,0.973,0.923,0.977,0.991,0.907,0.897,1.025,1.075,0.81,1.048,0.903,0.964,0.969,0.987,1.015,1.095,1.093,1.122 +NM_001163,1.009,1.058,0.933,0.971,0.892,0.979,1.016,0.978,0.906,0.988,1.017,1.005,0.987,1.152,1.026,1.031,1.061,0.938,0.965,1.012,1.069,0.963,0.883,0.862,1.01,0.977,0.986,0.877,1.015,0.971,0.982,1.031,0.861,0.956,0.931,0.916,0.968,1.112,1.071,0.951,0.813,0.961,1.374,1.015,1.044,1.047,1.057,1.14,1.023,0.98,0.988,1.061,0.977,1.002 +NM_001164,1.041,0.922,1.093,0.955,1.139,1.058,1.116,1.059,0.941,1.004,1.17,1.022,1.052,0.96,0.866,1.028,0.917,0.938,1.045,0.969,1.025,0.963,1.118,1.134,1.058,0.946,0.931,1.037,0.787,0.927,0.897,0.959,1.111,0.901,0.916,1.077,0.858,0.961,1.111,0.903,0.959,1.074,0.898,1.162,0.965,1.041,1.074,0.99,0.99,0.952,0.98,1.124,0.949,1.036 +NM_001165,0.254,1.963,0.438,1.113,0.256,3.053,2.869,0.671,0.314,0.216,0.551,0.669,0.415,0.228,1.119,1.255,0.37,2.257,0.293,1.303,0.215,0.267,0.507,0.434,1.058,0.163,0.571,0.365,0.652,1.032,0.503,1.799,4.68,2.129,0.331,4.067,3.08,0.414,3.657,3.782,0.355,1.097,0.718,0.863,0.289,0.64,1.412,0.189,4.32,0.341,1.411,3.197,0.535,5.638 +NM_001166,0.489,1.119,1.357,0.507,0.776,1.657,0.835,0.776,0.961,0.748,0.878,1.002,0.684,0.514,1.158,1.742,0.858,1.033,0.899,1.649,0.436,0.88,1.06,1.0,0.52,0.485,1.486,0.791,0.712,1.138,0.923,1.554,2.827,1.36,0.419,0.853,1.041,0.921,1.393,1.326,0.884,1.141,0.674,0.604,0.736,0.982,1.028,0.666,1.14,0.65,1.05,0.684,0.641,1.731 +NM_001168,0.695,0.797,1.171,1.178,0.743,1.005,0.663,0.562,0.943,0.983,0.802,1.212,0.911,0.544,0.783,1.287,0.901,1.058,1.17,0.71,0.681,0.777,1.677,1.329,0.628,0.694,1.778,0.703,0.762,0.884,0.77,1.369,2.747,0.666,0.374,1.97,0.982,0.764,1.841,1.248,1.219,0.566,0.679,2.233,1.024,1.075,1.26,0.767,1.276,0.892,1.17,1.553,1.021,2.557 +NM_001169,1.019,1.019,1.043,3.107,1.035,1.127,1.046,1.127,0.945,0.886,0.979,0.979,0.968,1.146,1.035,2.234,1.083,0.921,0.858,0.922,1.041,0.883,0.852,1.051,0.911,0.959,1.19,0.927,0.942,0.954,0.928,0.99,0.976,0.998,1.031,0.976,0.963,0.971,1.001,1.024,1.045,1.015,1.275,1.018,0.965,0.878,0.967,1.151,1.162,1.012,1.127,1.0,0.973,0.851 +NM_001170,1.06,0.918,0.995,0.838,0.986,1.064,0.796,0.935,1.159,0.924,1.053,0.975,0.99,1.003,1.218,1.218,1.056,0.999,1.065,1.076,0.934,0.97,0.897,1.105,0.943,1.236,1.093,0.979,1.743,0.881,1.27,0.94,1.11,1.163,1.208,0.999,1.096,0.958,1.045,0.958,1.104,1.097,1.043,1.017,1.058,0.978,1.101,1.491,0.908,1.07,0.962,0.945,0.964,0.964 +NM_001171,0.991,0.982,1.064,0.972,1.017,0.971,1.011,0.993,0.895,1.074,1.129,0.956,1.004,1.03,1.168,1.089,0.982,1.024,0.971,0.96,0.917,0.978,0.967,0.953,0.976,0.955,0.999,0.995,0.928,1.078,1.029,1.103,0.953,1.238,0.932,0.961,1.125,1.008,1.026,0.992,0.885,1.042,1.084,1.059,0.875,1.004,1.011,0.929,0.925,1.012,1.024,1.117,0.987,0.829 +NM_001174,1.144,0.995,0.973,0.927,1.002,1.154,0.981,1.023,1.002,1.128,0.943,1.07,0.909,1.136,0.966,1.051,1.025,0.777,1.124,0.972,1.054,1.029,1.033,1.001,1.143,1.108,1.051,0.937,0.798,1.069,1.064,0.855,1.036,1.099,1.006,1.01,0.944,1.094,0.883,0.978,1.023,0.994,0.889,1.074,0.967,0.905,0.95,0.968,0.944,0.962,1.184,0.997,0.881,0.99 +NM_001175,0.451,0.929,1.812,0.669,1.038,0.811,0.844,0.526,0.883,0.668,0.734,0.731,0.746,0.634,0.609,0.612,1.978,0.563,0.827,1.064,0.463,0.633,1.529,0.72,0.406,0.585,1.917,0.866,0.147,1.477,1.024,1.796,1.7,1.256,0.725,0.815,0.825,0.571,1.225,2.492,1.696,1.518,0.476,0.417,1.145,0.73,0.864,0.796,1.039,0.925,0.792,1.951,1.842,1.797 +NM_001177,0.626,1.058,0.85,0.901,0.834,1.565,0.712,0.532,1.299,0.753,1.383,0.691,0.687,0.582,1.163,1.767,0.674,1.154,1.207,1.246,0.484,0.946,1.433,1.03,0.843,0.781,0.918,0.87,0.63,1.676,0.952,1.138,1.104,1.921,0.23,0.801,1.607,0.956,1.086,0.571,1.051,1.828,0.69,0.647,0.799,1.837,0.637,0.754,1.075,0.642,1.431,0.665,0.693,1.219 +NM_001178,0.831,0.885,1.421,0.817,1.296,1.454,0.863,0.874,0.765,1.064,0.857,0.728,0.71,1.392,1.449,1.316,1.228,0.986,1.078,0.976,0.649,0.85,0.99,1.569,0.933,0.739,1.286,1.397,0.759,1.903,1.09,1.39,1.078,0.948,0.758,0.768,1.009,0.95,0.987,1.198,1.572,0.904,1.098,1.149,0.763,0.875,1.155,0.847,1.162,0.682,1.278,0.781,1.475,0.964 +NM_001179,1.056,0.981,0.97,1.082,1.101,1.064,0.839,0.908,1.009,1.048,1.017,1.061,0.987,0.894,0.932,1.125,1.087,0.996,0.984,1.154,0.881,1.008,1.273,1.037,0.895,0.995,1.05,1.014,0.949,0.992,0.855,0.945,0.943,1.158,1.153,0.996,1.003,0.99,1.051,0.952,0.916,1.237,1.053,1.055,0.985,0.964,1.065,0.98,1.0,1.039,1.149,0.927,0.918,0.862 +NM_001182,1.193,0.972,2.468,0.719,1.278,0.925,0.246,0.576,1.509,1.902,1.16,1.328,0.636,0.957,1.022,1.004,1.949,0.891,2.279,0.881,0.864,1.205,1.412,1.424,0.552,1.473,2.727,1.015,0.4,0.84,1.07,1.001,1.655,0.771,0.216,0.331,0.627,1.488,0.852,0.389,1.607,0.767,0.929,0.552,1.647,1.006,1.147,1.025,0.858,1.678,0.761,0.766,2.279,0.978 +NM_001183,0.928,1.151,0.882,0.582,1.123,0.975,0.379,0.52,1.264,1.091,0.853,0.481,0.425,0.934,0.696,1.083,1.148,0.914,1.955,0.643,0.966,1.564,0.954,1.091,0.649,1.492,1.048,0.684,0.79,1.295,0.893,1.683,1.035,1.373,0.552,0.534,1.0,1.908,1.409,0.735,1.085,1.11,0.502,1.72,0.853,0.764,1.014,1.286,0.586,0.864,0.819,0.702,0.989,0.945 +NM_001184,0.774,1.046,1.178,0.961,0.932,1.06,0.872,0.877,1.056,1.118,0.984,1.089,1.066,0.759,0.929,1.369,1.049,0.973,0.904,1.11,0.827,1.154,1.249,1.208,0.902,0.845,1.34,0.932,0.765,1.005,1.153,1.311,2.289,1.03,1.032,1.045,0.999,1.17,1.168,1.144,1.056,1.056,0.741,0.978,0.958,0.853,0.983,0.915,1.114,0.927,1.139,0.916,1.091,1.317 +NM_001185,0.385,0.811,0.435,1.493,0.36,1.713,0.933,0.323,0.419,0.317,1.804,0.404,0.691,0.407,0.917,2.845,0.37,1.057,0.397,1.253,0.402,0.328,1.367,0.367,2.431,0.459,0.506,0.399,0.961,1.601,0.368,0.494,0.996,2.644,0.449,0.867,1.057,0.467,1.24,1.029,0.374,10.33,0.721,2.659,0.46,1.129,1.479,0.414,0.645,0.423,1.251,1.437,0.427,0.527 +NM_001186,0.732,0.808,2.311,0.619,1.319,1.207,0.781,1.369,1.266,1.068,0.892,1.04,0.895,0.728,1.017,1.277,1.573,1.303,1.182,0.746,0.494,1.463,0.91,1.172,0.452,0.491,2.161,1.13,0.471,1.051,1.499,0.921,1.898,1.009,0.632,0.433,0.988,1.436,1.18,1.379,1.283,0.91,0.605,0.497,1.405,0.703,1.149,1.027,0.621,1.249,0.873,0.934,0.629,1.318 +NM_001188,0.622,0.945,0.798,0.985,0.529,2.561,0.909,0.417,0.577,0.732,1.617,0.712,0.723,0.448,0.985,2.277,0.786,1.193,1.013,1.038,0.681,0.915,1.303,0.867,0.72,0.633,1.017,0.456,1.064,1.684,0.509,1.08,1.239,1.413,0.374,0.86,1.83,0.691,2.927,0.999,0.787,1.217,1.292,1.425,0.636,1.158,1.341,0.868,2.053,0.763,1.241,0.984,0.636,1.898 +NM_001189,1.044,0.93,0.913,0.986,1.087,0.892,0.957,1.064,1.134,1.007,0.943,0.993,1.197,1.095,1.125,0.941,0.964,1.024,0.991,1.016,1.03,1.09,0.993,0.943,0.996,1.032,1.11,1.088,1.195,0.89,0.936,3.163,0.994,1.017,0.915,1.001,1.024,1.098,1.04,1.104,1.039,1.007,1.094,1.024,1.018,0.988,1.061,1.034,0.896,0.882,0.911,1.05,0.98,1.025 +NM_001190,0.853,1.45,1.169,1.027,0.749,1.047,0.674,0.505,1.07,0.938,0.86,0.825,0.803,0.674,0.856,1.01,0.882,0.9,1.334,1.245,0.595,0.79,1.529,0.846,1.155,1.09,1.269,0.664,0.715,1.478,0.847,1.052,2.009,1.585,0.232,1.098,1.186,0.693,1.354,0.727,0.886,1.073,0.539,1.898,0.897,0.994,0.894,0.645,0.789,0.895,0.973,0.723,1.003,0.714 +NM_001191,0.744,0.821,0.857,0.624,0.704,1.282,0.449,0.948,0.829,0.62,1.222,0.69,1.053,0.597,1.031,1.745,1.157,0.722,1.953,0.59,0.72,0.555,1.187,0.669,0.522,0.946,0.769,0.522,0.273,1.063,1.051,1.097,3.829,1.308,1.982,0.864,0.713,0.769,1.562,1.015,0.764,0.986,0.469,2.713,0.898,0.618,1.037,1.175,0.672,1.122,0.853,0.796,1.142,3.152 +NM_001192,0.85,2.474,0.923,1.874,0.779,2.112,6.289,0.877,0.896,0.88,0.974,0.827,0.774,0.795,1.019,0.96,0.857,1.48,0.902,1.508,0.981,0.843,1.435,0.969,1.673,0.86,0.786,0.855,0.954,2.569,0.745,0.818,0.89,4.626,0.87,0.994,3.879,1.006,2.759,0.891,0.925,7.06,1.135,0.795,0.897,1.202,0.849,0.878,0.871,0.993,3.475,1.115,0.998,2.21 +NM_001194,0.987,1.018,0.885,1.007,0.98,1.193,0.979,0.922,0.935,0.789,0.866,0.965,1.156,0.901,0.996,1.205,1.0,0.94,1.01,0.943,1.08,1.042,0.963,1.052,1.077,1.091,1.005,0.959,1.013,1.041,1.03,0.971,1.017,1.025,1.034,1.045,1.155,1.097,1.045,1.156,1.029,1.11,0.943,1.021,1.109,1.023,0.953,1.001,0.952,1.02,0.982,0.965,1.201,1.106 +NM_001195,1.085,1.007,0.934,0.989,0.963,0.892,0.969,1.071,1.075,1.031,1.012,0.875,0.951,0.858,0.821,1.022,1.231,0.921,0.88,0.973,0.938,1.008,0.972,1.004,0.977,1.056,0.98,1.077,0.647,1.106,0.885,1.235,1.213,0.981,0.914,1.037,1.131,1.095,1.089,1.053,0.935,1.002,0.879,1.296,0.933,0.854,0.895,0.979,0.902,0.918,1.028,0.964,0.974,1.082 +NM_001197,0.349,1.521,0.823,1.158,0.367,1.52,0.871,0.484,0.356,0.339,1.348,0.544,0.397,0.414,0.736,1.505,0.547,1.139,0.944,1.023,0.31,0.408,1.571,0.47,0.63,0.497,0.719,0.38,0.701,1.441,0.313,1.417,2.154,1.87,0.294,2.757,1.158,0.471,2.137,2.174,0.45,1.152,0.668,1.885,0.516,0.987,0.525,0.594,0.804,0.598,1.388,1.013,1.039,3.177 +NM_001198,1.194,1.024,1.1,0.845,1.228,0.884,1.041,1.052,1.163,1.104,0.994,0.851,1.074,0.902,1.012,0.951,0.978,1.078,1.184,0.895,1.098,0.898,0.72,0.989,0.971,1.068,1.191,1.227,0.762,0.946,1.229,1.063,0.86,0.972,2.382,0.877,1.074,1.001,0.963,0.89,1.052,0.892,1.096,0.87,1.101,1.051,1.151,1.162,0.997,0.984,0.851,1.039,1.279,0.882 +NM_001200,0.684,1.223,0.799,0.706,0.775,2.642,1.671,0.774,0.613,0.746,1.073,0.818,0.589,0.681,0.912,1.183,0.756,1.381,0.734,1.289,0.581,0.686,1.833,0.73,0.928,0.757,0.987,0.671,1.072,2.177,0.644,1.233,0.917,2.127,0.712,0.846,1.201,0.977,4.208,1.381,0.594,1.476,0.74,0.873,0.689,0.989,1.226,0.685,1.464,0.803,1.346,1.432,0.809,1.968 +NM_001201,1.02,1.13,0.915,1.118,1.105,0.951,0.994,0.931,1.045,0.938,1.061,0.906,0.972,0.963,1.03,0.921,0.95,0.791,1.058,1.079,0.898,0.998,0.929,0.937,0.973,1.032,1.014,0.987,1.021,0.945,0.907,1.044,1.042,1.072,0.908,1.104,1.021,1.098,1.027,0.983,0.986,1.19,1.045,1.1,0.963,1.052,1.14,1.177,1.09,1.026,0.974,1.094,0.942,1.047 +NM_001202,0.983,0.964,0.975,0.988,1.075,1.121,1.171,1.19,0.968,0.982,0.962,0.936,1.086,0.883,1.076,0.942,0.946,1.155,0.925,1.026,0.929,0.872,1.161,0.897,0.996,0.98,1.211,0.955,1.294,1.102,0.922,1.236,1.186,1.002,0.972,1.117,0.96,1.111,1.038,0.995,1.039,0.916,1.356,1.425,0.984,0.972,1.004,0.852,1.102,0.934,0.947,1.094,0.929,1.055 +NM_001203,1.052,0.892,1.034,0.995,1.053,1.168,0.945,0.967,0.942,1.151,0.88,0.998,1.156,1.001,0.839,1.035,1.121,0.853,1.064,1.075,1.003,0.85,1.207,0.982,1.069,1.147,1.044,0.878,0.924,0.964,1.059,1.001,1.043,0.978,1.212,1.092,1.164,0.945,0.87,0.976,0.965,0.974,0.902,1.348,0.945,0.895,1.05,0.965,1.033,1.11,1.194,1.086,1.125,1.08 +NM_001204,0.678,1.223,1.255,0.711,0.792,1.07,0.87,0.606,0.873,0.81,1.015,0.595,0.662,0.612,0.65,0.983,0.827,0.981,0.913,1.115,0.705,0.833,1.518,0.841,0.884,0.703,1.095,0.84,0.752,1.209,0.754,1.566,1.628,1.153,0.7,0.902,0.886,0.717,1.799,1.314,1.281,1.45,0.847,1.757,0.856,1.423,1.414,0.757,0.891,0.903,1.197,1.171,0.834,1.26 +NM_001206,0.398,1.836,0.599,0.843,0.362,1.972,1.028,0.432,0.563,0.451,1.988,0.523,0.449,0.619,1.066,2.149,0.52,1.152,0.501,1.855,0.392,0.413,1.631,0.501,1.163,0.613,0.528,0.542,0.848,2.123,0.55,1.982,0.842,2.374,0.526,0.519,1.843,0.639,1.943,1.454,0.564,2.103,1.455,0.654,0.451,2.137,0.637,0.492,1.235,0.548,1.354,0.92,0.961,0.868 +NM_001207,0.689,0.941,1.399,0.641,1.339,1.155,0.617,0.749,1.277,1.153,0.706,1.451,1.064,0.517,0.887,1.386,1.002,1.197,1.195,1.314,0.49,0.987,1.233,1.345,0.557,1.014,1.451,1.206,0.386,0.924,1.164,0.866,1.029,1.127,0.686,0.859,0.962,1.18,1.342,0.425,1.182,1.166,0.504,0.777,1.334,0.778,0.998,1.269,0.991,1.17,1.048,0.665,0.9,1.019 +NM_001211,0.911,0.914,1.134,1.034,0.959,0.943,0.929,0.769,1.024,1.018,0.768,0.926,0.94,0.872,0.85,1.073,0.876,0.993,1.314,0.793,0.791,0.879,1.843,1.117,0.633,0.87,1.629,0.844,0.69,0.945,0.879,1.098,2.267,0.895,0.736,1.443,1.103,0.96,1.806,1.162,0.995,0.977,0.702,1.395,1.011,1.135,1.065,0.82,1.113,0.873,1.202,1.009,0.884,2.222 +NM_001212,0.451,0.702,1.484,0.438,1.077,1.404,0.636,0.839,1.41,1.223,0.614,1.156,0.871,0.427,1.025,2.628,1.156,1.121,1.193,0.761,0.562,1.07,1.682,1.88,0.353,0.543,2.13,0.903,0.384,0.74,1.396,0.806,2.58,1.008,0.164,0.49,0.856,1.413,1.393,0.484,1.498,0.992,0.512,0.457,1.257,0.783,1.407,0.658,1.887,0.951,1.243,0.495,0.578,2.199 +NM_001213,1.076,1.054,0.982,0.86,0.988,1.018,0.946,1.173,1.07,1.124,0.778,0.888,0.936,0.942,0.899,1.099,1.015,1.104,0.903,1.0,1.092,1.176,0.978,1.006,0.9,1.077,0.959,1.082,1.36,0.924,1.106,0.963,1.04,0.968,1.087,1.036,0.97,1.086,0.959,1.221,0.965,0.971,1.271,1.004,0.931,1.123,1.013,0.945,1.052,0.875,0.962,0.872,0.951,1.009 +NM_001216,0.45,6.237,0.499,2.028,0.619,2.661,3.385,0.486,0.571,0.514,1.588,0.465,0.497,0.502,0.564,0.832,0.497,2.435,0.5,1.613,0.475,0.461,1.189,0.531,14.67,0.607,0.559,0.497,7.2,5.4,0.491,3.615,0.573,5.925,0.555,1.437,2.618,0.527,8.793,0.639,0.553,1.125,1.485,0.798,0.56,1.067,0.733,0.505,0.867,0.518,3.961,3.343,0.484,0.554 +NM_001217,0.871,0.964,1.002,0.966,1.012,0.896,1.064,1.052,1.079,1.034,1.262,0.989,1.015,1.13,0.938,0.967,1.001,1.011,1.024,1.076,1.078,0.995,1.123,0.949,1.026,0.993,1.001,0.997,1.141,1.231,0.937,1.519,0.952,1.21,0.968,0.808,0.954,1.035,1.198,1.156,1.045,1.054,0.837,0.973,0.973,0.902,1.04,0.977,0.84,0.851,0.859,0.905,1.256,0.975 +NM_001218,1.882,0.522,2.556,1.002,2.41,0.234,0.42,1.044,2.309,2.609,0.279,1.557,1.818,1.694,2.115,0.897,2.294,1.518,3.406,0.977,1.311,2.628,0.576,2.885,0.214,2.735,3.634,1.656,0.253,0.536,2.523,0.826,0.915,0.699,0.198,0.196,0.322,2.795,0.643,1.782,2.416,0.926,0.395,0.247,2.303,0.388,1.364,2.199,0.275,1.802,0.745,1.227,3.102,1.482 +NM_001219,0.403,1.27,0.69,0.708,0.543,1.083,0.812,0.318,0.666,0.716,0.983,0.513,0.415,0.359,0.745,1.191,0.409,0.984,0.654,0.987,0.367,0.598,2.567,0.724,0.705,0.528,0.846,0.529,0.472,1.827,0.574,5.14,1.878,1.587,0.162,1.104,1.109,0.546,2.269,1.885,0.731,1.648,0.531,1.723,0.775,1.091,1.056,0.507,0.873,0.58,1.508,1.685,0.71,2.2 +NM_001220,0.975,0.984,1.167,1.085,0.943,1.048,1.08,0.966,1.072,0.947,1.05,0.963,1.105,1.134,0.839,1.076,0.934,0.944,0.849,1.021,1.027,1.032,1.036,1.109,1.048,1.171,0.937,1.06,0.989,1.069,0.986,0.944,0.953,1.1,0.996,0.957,0.977,1.095,0.951,0.962,0.954,1.023,1.033,1.106,0.983,1.109,1.076,1.051,1.031,1.044,0.998,1.045,0.984,1.099 +NM_001221,1.913,1.819,1.992,1.7009999999999998,1.9929999999999999,2.1870000000000003,2.012,1.95,2.418,2.263,1.8889999999999998,1.976,1.839,1.9699999999999998,2.306,2.435,1.972,2.443,2.567,1.814,1.794,1.979,2.217,2.32,1.907,1.638,2.1710000000000003,2.1870000000000003,2.149,1.9979999999999998,2.074,1.8729999999999998,1.9699999999999998,2.253,2.077,1.669,1.897,2.14,2.271,1.539,2.1109999999999998,2.025,2.052,2.143,1.827,1.993,2.504,1.901,2.254,1.871,2.135,1.677,2.179,1.7770000000000001 +NM_001222,0.767,0.814,1.182,0.814,0.976,0.952,0.696,0.831,1.119,0.738,1.067,0.726,0.822,1.102,0.92,1.178,0.971,0.968,0.856,1.213,0.683,0.996,1.024,0.801,0.757,1.052,0.913,1.157,0.71,1.067,0.929,1.129,1.405,1.09,1.338,1.091,1.013,0.929,1.034,0.908,1.104,1.094,0.877,1.016,0.847,0.856,1.056,1.199,0.917,0.861,1.219,1.133,0.69,1.912 +NM_001224,1.019,1.029,1.004,0.925,1.048,1.007,1.055,0.993,0.867,0.868,1.04,1.024,1.121,1.151,1.301,1.032,1.082,1.028,1.062,0.987,0.924,0.927,1.037,0.957,1.026,1.023,0.894,0.973,1.46,0.929,0.886,0.987,0.921,1.037,1.041,1.02,1.03,1.184,0.905,1.062,0.955,1.068,1.166,0.981,0.942,1.057,1.0,1.0,0.932,1.122,0.941,1.075,0.967,0.827 +NM_001225,0.554,0.797,1.98,0.599,1.038,1.408,0.732,0.751,1.327,1.043,0.771,1.112,0.82,0.571,0.91,1.105,1.667,0.921,1.489,1.167,0.616,0.965,0.981,1.268,0.37,0.699,1.687,1.013,0.419,0.97,1.011,1.068,1.235,1.239,0.636,1.004,0.944,0.806,1.177,0.769,1.522,0.911,0.512,0.584,1.172,0.958,1.446,0.699,0.902,1.168,0.922,0.883,1.261,1.966 +NM_001226,0.877,1.164,0.999,1.038,0.959,1.278,0.78,0.762,0.872,0.883,1.31,0.832,0.777,0.886,1.009,1.421,0.898,0.896,0.86,1.196,0.713,0.829,1.238,0.889,0.864,0.789,0.811,0.918,0.911,1.108,0.862,1.116,1.118,1.08,0.826,0.993,1.001,0.958,1.126,1.024,0.946,1.005,1.15,1.186,0.803,1.37,1.201,0.833,1.436,0.811,1.183,0.89,0.732,1.004 +NM_001228,1.043,1.034,1.072,1.085,0.985,1.156,1.024,0.972,1.083,1.158,0.926,1.004,1.077,0.877,1.034,0.95,1.148,1.29,1.116,1.06,1.091,0.891,0.97,0.998,1.312,1.013,0.982,0.94,0.909,1.055,1.068,0.971,1.064,1.105,1.178,0.964,0.883,0.935,1.017,0.989,0.96,1.042,0.967,1.1,1.022,0.937,1.145,1.063,0.966,0.923,1.14,0.979,1.056,0.972 +NM_001229,1.114,1.041,1.199,0.893,1.071,1.101,0.957,1.135,1.017,0.845,1.014,1.084,0.897,0.838,0.947,1.085,1.099,1.161,0.979,0.914,0.953,0.84,0.943,1.034,0.907,0.968,0.929,0.968,0.871,0.997,1.14,0.982,0.965,1.112,1.057,1.001,1.239,0.889,1.048,1.012,1.071,0.933,1.236,1.116,0.874,1.216,1.101,0.83,1.151,0.977,1.012,0.907,1.012,0.951 +NM_001231,1.002,0.86,0.974,1.041,0.982,0.96,0.933,0.994,1.117,0.936,1.077,0.999,0.974,0.955,0.928,1.012,0.9,0.992,0.895,1.133,1.028,0.984,0.911,1.01,0.957,0.993,1.001,1.05,1.095,0.983,0.926,1.194,1.104,1.027,0.942,1.047,0.898,1.002,1.072,0.969,1.072,0.916,1.044,0.942,1.005,1.013,0.975,1.035,1.082,1.049,1.02,0.946,1.093,1.015 +NM_001232,0.996,0.889,0.981,1.035,0.814,0.978,1.029,1.015,0.926,1.063,0.983,0.886,0.89,1.008,0.853,1.218,0.891,0.964,1.067,0.935,1.221,0.849,0.975,1.007,0.998,1.034,0.969,1.231,0.837,1.094,0.98,1.125,1.12,1.212,0.839,0.923,0.915,1.102,1.024,0.998,1.591,1.245,1.047,0.934,0.996,0.889,0.95,0.997,0.868,0.924,1.087,0.949,1.256,0.991 +NM_001233,1.002,0.923,1.189,0.992,1.12,0.951,0.77,1.042,1.022,1.181,0.916,1.089,0.894,0.846,0.739,0.868,0.955,0.994,1.214,0.804,1.068,0.791,1.106,1.012,0.896,1.053,1.129,1.17,0.626,0.929,0.974,1.208,1.427,0.927,0.722,0.868,0.905,0.983,1.088,1.0,1.171,0.873,0.894,1.032,1.064,0.873,1.13,0.77,0.898,1.129,0.948,1.24,1.399,2.3 +NM_001234,0.946,0.947,1.101,1.154,1.025,0.964,0.896,0.941,1.029,1.007,1.033,0.915,1.036,1.017,1.053,0.935,1.013,0.963,0.938,0.999,0.955,0.912,0.908,1.088,1.105,0.946,1.06,0.906,0.989,1.024,1.008,1.04,0.924,1.084,0.924,0.978,1.072,1.05,1.11,0.925,1.078,0.908,1.145,0.855,0.987,0.921,0.993,1.046,0.955,0.986,1.071,0.884,0.918,1.013 +NM_001235,0.669,1.253,0.583,0.813,0.436,1.051,1.198,0.422,0.614,0.673,1.001,0.55,0.563,0.438,0.722,0.84,0.578,0.727,0.546,0.85,1.137,0.636,1.438,0.677,0.771,0.668,0.867,0.483,0.894,2.409,0.654,7.749,2.323,1.086,0.474,1.352,0.975,0.784,2.854,3.897,0.724,1.378,0.857,1.707,0.621,1.12,1.015,0.553,1.036,0.639,1.121,1.731,0.67,2.22 +NM_001236,1.881,0.451,3.27,1.263,2.777,0.456,0.372,2.042,2.274,2.708,0.418,2.933,2.177,2.039,1.783,1.674,3.079,2.329,6.396,0.414,2.041,3.219,0.545,2.671,0.372,2.449,2.231,2.181,0.252,0.467,2.579,0.726,1.374,0.537,0.46,0.555,0.452,2.743,0.496,0.525,3.558,0.941,0.352,0.674,3.292,0.28,1.556,2.28,0.437,4.773,0.683,0.553,4.055,0.82 +NM_001237,0.768,1.017,1.209,1.118,0.913,0.962,0.749,0.665,1.21,1.155,0.963,0.888,0.804,0.617,0.848,1.419,0.821,1.067,1.107,0.769,0.812,0.827,1.279,1.193,0.722,0.76,2.011,0.819,0.598,1.038,0.92,1.175,2.51,0.827,0.663,1.181,1.058,0.923,1.876,1.0,1.371,0.618,0.757,1.947,0.979,1.122,1.311,0.755,1.57,1.003,1.179,0.979,0.868,1.578 +NM_001238,0.986,1.122,0.901,1.047,0.94,1.085,0.926,0.971,0.951,1.051,0.875,1.025,1.056,0.812,1.046,0.918,0.989,1.102,0.96,1.01,0.974,1.109,1.049,1.175,0.973,1.05,0.943,1.05,0.805,0.956,1.054,0.849,1.125,0.928,0.971,1.016,1.002,0.919,1.013,0.903,1.024,0.86,0.869,0.952,1.017,0.871,1.001,0.836,1.178,0.956,1.127,0.92,1.041,0.986 +NM_001239,0.551,1.018,1.192,0.572,1.016,1.443,0.939,1.076,1.173,0.907,0.751,1.052,0.798,0.774,1.057,2.061,1.092,0.896,0.677,1.052,0.475,1.176,1.165,1.322,0.49,0.484,1.382,0.846,0.936,1.153,1.219,1.27,1.723,1.168,0.476,0.606,0.97,1.196,1.177,1.011,1.188,1.107,0.809,0.609,1.09,1.075,0.998,0.729,1.48,0.7,1.05,0.641,0.582,1.738 +NM_001240,1.003,0.948,0.969,1.024,0.946,0.97,1.073,0.904,0.945,0.92,1.038,0.891,1.096,0.844,0.988,1.125,0.995,1.015,1.016,1.149,1.027,1.081,1.172,1.028,0.988,0.923,1.013,1.105,0.691,1.041,1.124,1.098,1.105,0.884,0.95,1.263,0.978,0.923,0.937,1.329,0.932,0.961,0.922,1.077,1.006,0.951,0.984,0.908,0.95,0.966,0.922,1.174,1.012,1.025 +NM_001241,0.849,0.929,1.086,1.001,0.978,0.973,0.981,0.98,1.213,0.855,1.092,0.729,0.805,0.992,1.142,1.114,1.011,0.897,1.175,0.999,0.951,0.811,0.942,1.083,0.944,0.967,1.248,0.964,0.746,1.061,1.01,1.163,1.326,1.175,0.818,0.873,0.977,0.937,1.052,0.951,0.983,0.959,1.153,1.089,0.949,1.002,0.939,0.87,1.061,0.895,0.942,0.847,0.947,1.172 +NM_001242,0.656,1.669,1.153,1.119,0.9,2.415,3.23,0.861,0.89,0.647,0.565,0.569,0.854,0.594,0.983,0.773,0.68,0.869,0.733,1.302,0.541,0.578,1.158,1.017,1.359,0.492,1.052,0.745,0.684,2.588,0.675,1.485,0.743,3.597,0.429,0.562,2.118,0.799,2.362,0.591,0.868,6.455,0.756,0.768,0.854,0.953,0.848,0.585,0.523,0.587,3.084,0.914,0.844,4.782 +NM_001243,1.023,1.032,0.954,0.989,0.945,1.029,0.957,1.025,0.882,1.075,0.897,1.089,0.906,0.827,1.046,0.901,1.053,0.948,1.091,0.902,1.112,0.969,0.952,1.057,1.039,0.991,1.092,1.005,0.734,0.964,1.02,1.011,1.2,1.045,0.907,0.908,0.978,1.131,0.901,1.038,1.014,0.792,0.972,0.942,0.938,1.005,0.967,1.003,1.043,0.883,1.083,0.991,1.099,0.91 +NM_001245,1.07,0.94,0.981,0.966,0.938,0.999,0.757,1.048,0.981,1.175,1.001,0.986,0.881,1.285,1.054,1.16,0.93,0.886,0.879,0.955,1.076,1.064,1.017,0.993,1.143,1.123,1.064,1.022,0.652,1.005,1.061,1.05,0.926,0.992,1.03,1.077,0.953,1.114,1.132,1.033,1.172,0.965,0.887,0.967,1.15,1.248,0.912,1.189,1.186,0.949,1.032,0.916,0.997,0.981 +NM_001246,0.993,1.106,0.994,1.108,0.926,0.991,1.176,0.933,1.13,0.869,0.835,0.9,1.006,1.21,0.943,0.951,1.032,1.172,0.822,1.114,1.121,0.943,1.266,1.012,0.976,0.873,1.067,1.029,0.991,0.974,1.045,0.937,0.931,1.126,0.871,1.222,1.098,1.041,0.925,0.959,0.973,0.955,1.038,1.142,1.021,1.167,1.019,0.941,0.931,0.966,1.0,0.955,0.999,0.892 +NM_001247,0.45,0.954,0.469,0.933,0.631,1.944,0.798,0.408,0.645,0.539,1.513,0.451,0.492,0.614,1.15,2.171,0.591,1.042,0.615,1.24,0.55,0.622,1.897,0.629,0.589,0.725,0.584,0.434,0.916,2.187,0.564,1.262,1.967,1.701,0.368,0.825,1.168,0.545,1.921,1.319,0.56,2.019,1.012,2.111,0.494,1.085,1.2,0.66,1.43,0.477,1.17,0.93,0.495,4.293 +NM_001248,0.905,1.381,1.017,1.034,0.814,1.828,0.937,0.688,0.941,1.054,1.157,0.809,0.857,1.105,0.865,0.82,0.828,1.475,1.101,1.109,0.882,0.721,0.853,0.839,0.902,0.997,0.931,0.89,1.022,2.129,1.014,0.666,0.876,2.124,0.679,0.72,1.116,1.085,1.184,0.626,0.803,1.486,0.636,1.037,1.006,1.003,0.737,0.772,0.947,0.884,1.118,0.866,0.936,0.75 +NM_001249,0.788,1.804,0.985,0.975,0.804,2.333,1.71,0.896,0.892,0.814,3.515,0.917,0.737,0.772,1.996,3.495,0.891,1.972,1.166,1.901,0.933,0.82,1.904,0.912,1.157,0.767,0.899,0.854,1.364,2.455,0.842,0.747,0.964,4.007,0.684,0.678,2.611,0.861,1.813,0.737,0.911,2.954,1.053,0.872,0.821,1.632,1.0,0.78,0.938,0.9,2.002,0.682,0.971,0.938 +NM_001252,1.015,0.914,0.985,0.883,1.021,1.081,1.015,0.901,1.007,1.007,0.904,0.894,0.968,0.846,0.908,0.974,1.03,1.024,1.1,1.063,0.893,0.953,1.05,1.011,0.986,0.935,1.085,0.97,0.959,0.973,0.941,0.963,0.853,0.879,0.963,1.134,1.041,0.959,0.996,0.954,0.985,1.05,1.011,0.94,0.979,0.977,0.983,1.067,0.985,0.939,1.063,0.999,1.189,1.039 +NM_001253,0.517,1.082,1.307,0.648,0.874,1.001,0.667,0.37,1.212,1.028,0.908,0.571,0.528,0.658,0.767,1.168,0.773,0.745,1.038,0.982,0.655,0.537,1.17,0.962,0.56,0.61,1.422,0.903,0.502,1.241,0.999,1.332,2.909,1.222,0.397,1.056,0.809,0.746,1.423,0.803,1.162,1.078,0.665,1.08,0.825,1.292,1.092,0.511,1.287,0.851,1.016,0.736,0.795,1.608 +NM_001255,0.504,0.77,1.139,1.021,0.902,0.908,0.76,0.229,1.043,1.321,0.567,0.948,0.618,0.422,0.588,1.079,0.843,1.149,1.146,0.633,0.424,0.646,2.154,1.29,0.364,0.459,1.897,0.595,0.366,1.053,0.579,1.193,4.014,0.478,0.0768,3.532,1.059,0.69,2.015,1.28,1.31,0.525,0.728,3.171,1.058,0.939,1.867,0.57,1.776,0.723,1.593,1.51,0.799,2.93 +NM_001256,0.8,0.947,1.273,0.821,0.962,1.014,0.761,0.615,1.027,1.096,1.032,0.749,0.703,0.886,0.872,1.4,0.908,0.896,1.166,0.847,0.706,0.786,1.116,0.97,0.711,0.846,1.35,0.792,0.734,1.06,0.922,1.127,1.58,0.991,0.597,0.821,1.157,0.844,1.512,0.818,1.017,1.004,0.79,1.47,0.929,1.21,0.952,0.864,1.227,1.018,1.067,0.944,1.093,1.446 +NM_001257,1.113,0.942,1.05,1.183,1.269,0.886,0.912,1.038,1.016,1.091,1.05,0.996,0.943,0.956,0.746,1.049,1.004,0.833,0.917,0.989,1.013,0.992,1.0,0.95,1.002,0.854,1.064,0.935,1.039,0.97,1.027,1.174,1.238,0.861,1.12,0.993,1.0,1.055,0.859,1.135,1.093,1.066,0.927,0.92,1.075,0.989,0.956,0.931,0.988,1.021,0.931,1.057,0.861,1.158 +NM_001258,0.974,1.094,0.906,1.23,0.835,0.985,0.855,0.982,1.14,1.054,1.098,1.068,0.926,1.118,0.997,0.994,0.884,1.048,0.998,1.031,1.005,0.932,1.012,0.989,1.054,1.075,1.018,1.031,1.296,1.085,1.001,0.991,0.974,1.016,0.942,1.011,1.059,1.11,0.969,0.965,1.019,1.032,1.293,1.124,1.037,0.947,0.905,0.754,1.004,0.853,0.962,0.993,1.026,0.953 +NM_001259,1.044,0.918,1.053,0.944,1.095,0.995,0.967,1.114,0.925,0.978,0.944,0.961,0.943,1.291,0.987,0.953,0.937,1.069,1.058,1.013,0.939,0.882,0.89,1.019,0.978,0.954,0.897,0.927,1.183,0.979,0.92,1.03,1.246,1.004,1.081,1.103,1.006,0.961,1.279,0.964,1.033,1.069,1.132,1.117,1.08,0.853,0.987,0.984,0.956,0.865,1.143,0.978,1.03,0.898 +NM_001260,0.803,1.11,1.243,0.942,1.029,1.006,0.859,0.723,1.193,0.982,0.855,0.734,0.722,0.92,1.074,1.648,0.89,0.974,1.185,0.953,0.991,0.783,1.05,0.982,0.757,0.883,1.345,1.023,0.907,1.091,1.096,1.122,1.841,0.921,0.836,1.204,1.018,1.104,0.985,1.212,1.164,0.924,0.854,0.92,1.058,0.953,1.4,0.719,1.201,0.889,0.856,0.87,0.947,1.325 +NM_001262,0.937,0.998,1.006,1.073,0.874,0.917,0.969,0.892,1.081,1.004,1.007,0.925,0.965,0.901,1.008,1.064,0.997,1.038,1.034,0.924,1.127,0.937,1.167,0.91,0.92,0.871,1.015,1.081,0.754,0.958,0.977,1.066,1.162,0.9,1.172,1.131,1.051,1.085,1.158,0.873,1.079,0.739,1.002,1.175,0.905,1.017,0.89,1.054,1.04,0.98,1.033,0.905,1.141,1.048 +NM_001263,0.785,0.942,1.12,0.735,1.113,2.09,1.026,1.169,1.087,0.731,2.047,1.254,0.855,0.734,1.265,2.232,0.754,1.701,1.146,1.353,0.39,1.103,1.404,1.131,0.739,0.763,0.847,1.09,0.891,1.734,0.964,0.555,0.739,1.489,1.355,0.497,2.26,1.128,1.479,0.477,0.984,1.592,0.894,0.541,0.897,1.681,1.068,0.847,1.652,0.739,1.435,0.628,0.655,0.48 +NM_001264,1.07,1.078,0.922,1.099,0.931,1.082,1.119,1.09,0.959,1.03,0.889,1.028,0.933,0.951,1.015,1.001,0.969,1.106,0.908,0.948,0.893,0.93,0.901,0.982,1.036,1.035,0.862,1.006,0.975,1.017,0.905,1.083,0.989,1.05,1.233,0.909,0.955,1.051,1.043,0.999,0.948,1.017,1.073,0.911,0.882,0.807,0.954,1.11,1.03,1.114,0.948,0.985,0.941,1.097 +NM_001265,0.872,1.522,0.697,1.13,0.765,4.561,1.013,1.007,0.878,0.645,4.888,0.709,0.666,0.686,3.658,7.707,0.814,0.812,0.75,2.447,1.067,0.854,4.618,0.652,0.685,0.769,0.732,0.916,0.956,2.54,0.848,0.708,4.188,0.961,0.777,3.217,4.981,0.751,2.418,9.821,0.8,4.809,2.304,3.847,0.811,2.992,2.407,0.85,5.191,0.704,3.493,1.286,0.786,5.407 +NM_001266,1.547,0.97,0.981,1.37,1.078,0.939,0.786,1.108,2.816,1.085,0.896,1.008,1.567,1.132,1.503,0.942,1.002,0.986,0.981,0.977,0.947,2.435,1.004,0.967,0.966,2.03,1.036,1.705,0.838,1.025,2.038,1.303,0.88,0.889,1.008,0.894,1.014,1.101,1.02,1.042,1.068,0.981,0.823,0.805,0.946,0.788,0.846,1.151,0.957,0.962,1.056,0.877,0.838,0.949 +NM_001269,0.996,1.262,0.993,0.982,0.833,0.881,0.513,0.515,0.965,1.03,0.987,0.947,0.968,1.019,0.785,1.17,1.095,0.975,1.298,0.644,0.92,1.125,1.4,1.301,0.662,1.341,1.336,0.767,0.48,0.902,0.814,0.893,1.243,0.928,0.595,0.966,1.101,1.134,2.138,0.854,1.164,0.837,0.74,2.007,1.004,0.724,1.126,1.058,1.23,0.98,1.009,0.944,0.867,1.175 +NM_001270,0.663,0.748,1.101,0.702,0.717,1.072,0.92,0.839,0.934,0.934,1.421,0.864,0.76,0.764,1.141,1.088,0.775,0.884,0.853,1.169,0.665,0.711,1.543,0.928,0.66,0.723,1.056,0.952,0.51,1.062,0.887,1.099,1.651,0.825,0.634,0.871,1.024,0.706,1.12,1.449,0.872,1.196,1.185,1.013,0.924,1.302,0.73,0.577,1.529,0.823,1.193,1.127,1.307,1.359 +NM_001273,0.826,0.929,1.071,0.73,1.015,0.906,0.796,0.679,1.05,1.132,0.823,0.924,0.751,0.722,1.094,1.033,0.877,0.964,1.021,1.04,0.761,0.854,1.189,0.845,0.846,0.918,1.217,0.813,0.797,1.014,1.172,1.317,1.552,0.945,0.791,1.074,0.895,0.963,1.584,1.478,0.879,0.99,0.806,1.433,1.01,0.799,0.935,0.843,1.082,0.96,1.016,1.019,0.949,1.043 +NM_001274,0.865,0.937,1.013,0.84,0.924,0.999,0.893,1.047,1.311,1.082,0.914,1.243,1.001,0.822,1.017,1.085,0.786,0.864,1.304,0.938,0.921,0.785,1.151,1.031,0.82,0.776,1.255,0.979,1.045,1.122,0.874,0.991,3.087,0.906,0.861,1.172,1.028,0.949,1.299,0.87,0.907,0.822,1.055,1.261,0.901,1.108,1.054,1.028,1.127,0.858,0.951,0.979,0.856,1.863 +NM_001275,0.231,5.574,0.257,7.289,0.238,2.477,7.66,0.248,0.235,0.253,13.11,0.266,0.279,0.234,2.13,0.317,0.24,1.607,0.305,26.73,0.337,0.251,7.774,0.242,14.74,0.328,0.228,0.263,1.669,1.204,0.361,0.242,0.341,18.02,0.287,1.513,10.39,0.247,1.024,0.247,0.287,1.56,2.417,0.385,0.283,9.629,4.794,0.248,15.05,0.268,13.7,0.303,0.339,0.496 +NM_001278,0.753,1.066,0.842,0.871,0.863,1.236,0.9,0.707,1.018,0.931,1.195,0.725,0.67,0.733,1.037,1.414,0.98,0.9,0.922,1.001,0.735,0.796,1.304,1.026,0.924,0.692,1.047,0.669,0.773,1.197,0.791,1.398,1.785,1.33,0.574,1.087,1.32,0.885,1.477,0.883,0.989,1.159,0.75,0.975,0.809,1.275,1.151,0.725,1.376,0.857,1.129,0.963,0.865,1.524 +NM_001279,2.57,0.863,1.403,1.033,3.275,0.886,0.899,1.625,4.788,1.404,0.826,4.407,2.034,3.289,2.439,1.559,0.901,2.205,1.365,0.855,1.962,1.481,0.911,2.716,0.906,5.969,0.921,8.64,0.984,0.881,5.194,0.955,1.152,0.727,2.182,0.77,0.944,14.97,0.854,0.956,2.051,0.656,1.154,0.894,1.806,0.872,1.339,6.078,0.853,0.965,1.383,0.869,1.721,0.723 +NM_001280,0.756,1.706,1.118,0.747,0.751,1.058,0.502,0.391,1.084,0.839,0.743,0.747,0.702,0.645,1.029,1.288,0.823,0.686,0.769,0.999,0.408,0.63,1.269,1.107,0.924,1.032,1.153,1.076,0.278,1.215,0.796,1.864,1.114,1.954,0.695,1.072,0.703,1.248,1.086,0.751,1.131,1.654,0.653,1.257,1.054,0.908,0.722,0.808,0.648,1.028,0.782,0.479,0.856,0.743 +NM_001281,0.846,0.851,1.036,0.961,0.803,1.142,0.426,0.615,1.073,0.967,0.902,0.81,0.865,0.614,0.956,1.354,0.954,0.875,1.654,0.726,0.744,0.837,1.152,1.152,0.602,1.046,1.123,0.632,0.441,1.301,0.829,1.485,3.031,1.602,0.358,0.727,0.84,1.07,1.631,1.234,1.158,1.057,0.519,1.715,0.92,0.731,1.248,0.923,0.67,1.007,0.811,0.894,1.245,1.336 +NM_001282,0.51,1.619,0.528,1.062,0.482,1.339,0.849,0.4,0.493,0.564,1.078,0.447,0.494,0.448,0.67,1.315,0.555,1.434,0.494,0.92,0.473,0.54,1.971,0.523,0.914,0.517,0.663,0.382,0.926,1.489,0.514,1.523,1.681,1.444,0.388,1.005,1.388,0.609,4.369,0.911,0.481,1.461,0.812,2.645,0.564,1.081,0.827,0.546,1.245,0.464,1.538,1.158,0.487,1.048 +NM_001283,1.549,1.7690000000000001,1.6,2.199,1.539,2.3209999999999997,1.104,1.094,1.708,1.3780000000000001,3.65,1.225,1.3900000000000001,1.2850000000000001,2.354,4.689,1.816,2.395,2.615,1.499,1.431,1.108,2.956,1.439,1.585,1.746,2.039,1.199,1.491,3.073,1.3479999999999999,2.161,1.522,3.13,0.958,1.18,2.908,1.96,5.057,2.335,1.8609999999999998,2.5010000000000003,2.02,4.812,1.181,2.8390000000000004,3.378,1.5299999999999998,2.8040000000000003,1.5539999999999998,1.8519999999999999,1.9849999999999999,1.337,1.6 +NM_001284,1.014,0.652,1.324,0.862,1.247,1.349,0.468,0.838,1.251,0.818,1.609,1.068,0.852,0.936,1.259,1.953,0.863,1.026,1.728,0.871,0.652,0.999,0.926,1.161,0.535,1.076,0.995,1.203,0.352,1.157,1.149,0.727,1.189,1.363,1.05,0.556,1.364,1.108,1.026,0.311,1.041,1.112,0.598,0.482,0.979,1.033,1.167,1.304,0.905,1.038,1.042,0.625,1.17,0.97 +NM_001285,0.843,8.968,0.967,5.71,0.868,1.322,1.018,0.719,0.815,0.982,15.16,0.851,0.896,1.005,1.679,40.36,0.869,0.889,0.936,18.97,0.831,0.886,1.597,0.946,0.856,1.028,0.781,0.982,0.918,2.635,0.892,0.845,12.5,1.273,0.991,0.835,68.97,0.753,2.519,0.821,0.828,32.14,6.256,0.951,0.789,7.49,2.048,0.942,119.1,0.829,3.904,0.791,0.89,1.036 +NM_001286,0.964,0.989,0.935,0.886,0.927,1.01,0.941,0.894,1.098,1.045,1.089,1.075,0.942,1.037,0.931,1.014,1.034,1.138,1.028,1.076,0.846,0.968,0.953,0.906,1.019,1.072,0.94,0.933,0.907,1.025,1.071,1.0,0.939,1.011,1.062,0.94,0.988,0.956,1.01,1.083,0.939,0.997,1.262,1.101,0.943,0.983,1.026,1.165,0.955,0.86,0.939,1.069,1.033,0.945 +NM_001287,0.639,1.16,1.122,0.565,0.726,1.021,0.668,0.239,1.045,0.911,0.829,0.552,0.348,0.491,0.709,0.997,0.914,0.944,0.838,1.003,0.286,0.621,1.419,0.824,0.613,0.588,1.368,0.53,0.638,1.897,0.589,2.651,1.672,1.292,0.183,1.054,1.017,0.846,1.436,1.512,0.836,1.411,0.907,1.825,0.904,1.151,1.456,0.538,0.816,0.676,1.036,1.273,0.701,1.616 +NM_001288,0.504,1.175,0.786,0.781,0.647,1.738,0.634,0.435,0.866,0.825,1.226,0.762,0.681,0.37,0.774,1.92,0.675,1.178,0.982,0.858,0.399,1.058,1.45,1.033,0.566,0.778,0.949,0.602,0.654,1.312,0.711,1.32,2.151,1.49,0.113,1.004,1.37,0.793,2.077,1.069,0.822,1.048,0.483,1.432,0.835,0.891,1.092,0.813,1.137,0.655,1.104,0.78,0.702,1.555 +NM_001289,0.962,1.024,1.082,0.829,0.974,0.961,1.341,0.865,0.975,0.856,0.912,0.883,0.88,0.739,1.12,1.122,1.236,0.84,1.035,0.936,0.81,0.801,1.097,1.037,0.786,0.936,1.146,1.178,0.957,1.045,1.214,1.306,1.143,1.204,1.094,0.827,0.907,0.868,1.268,0.912,1.295,1.117,0.692,0.857,1.072,0.935,1.125,0.967,0.828,1.021,0.919,1.027,1.013,1.115 +NM_001290,0.937,1.322,0.862,0.978,0.825,1.143,1.159,0.887,0.683,0.958,1.039,0.926,1.046,0.805,1.081,0.993,0.884,0.842,1.04,0.903,0.929,0.884,1.191,0.837,1.171,0.842,0.86,0.964,1.393,1.304,0.801,1.967,1.111,1.63,0.851,1.098,1.084,0.882,1.388,0.927,0.957,1.642,0.956,0.896,0.841,1.065,1.073,0.818,0.931,0.974,1.103,1.193,0.886,0.899 +NM_001291,0.839,1.0,1.158,0.934,1.015,1.134,0.831,0.801,1.201,0.964,0.851,0.988,0.839,0.971,1.123,1.164,0.939,0.944,0.937,1.073,0.793,0.974,1.015,1.118,0.939,1.042,1.206,0.836,1.04,1.088,1.087,1.452,1.765,1.108,0.752,1.233,1.014,0.984,1.063,1.488,1.025,1.112,0.906,0.942,1.023,0.965,0.899,0.981,0.936,0.82,0.945,0.777,0.912,1.574 +NM_001292,0.754,0.997,1.287,0.712,1.21,0.95,0.635,1.167,1.352,0.841,0.691,0.836,0.666,0.734,0.892,0.975,1.067,0.979,1.215,1.117,0.669,1.078,1.14,1.21,0.626,1.041,0.98,1.386,0.43,1.064,0.939,1.051,0.846,1.011,1.494,0.944,0.828,1.202,1.079,1.113,1.418,0.96,0.974,0.684,1.003,1.091,1.329,1.087,1.153,0.784,0.918,0.753,1.059,1.139 +NM_001293,0.853,1.135,1.25,0.848,0.921,1.054,0.469,0.603,1.172,1.254,1.195,1.175,0.84,0.707,0.897,1.43,0.842,1.026,1.557,0.892,0.61,0.967,1.103,1.396,0.695,0.964,2.105,0.851,0.372,1.058,0.88,1.344,3.615,1.332,0.141,1.524,1.059,0.987,1.074,0.753,1.156,1.024,0.576,0.835,1.163,0.739,1.042,0.893,0.723,0.919,0.9,0.821,1.121,1.383 +NM_001294,1.227,0.842,0.84,0.963,0.657,1.131,0.581,0.796,0.785,0.719,1.047,0.761,0.712,0.776,0.832,1.628,0.96,0.913,1.519,0.695,1.31,0.886,1.238,0.811,1.122,1.509,1.133,0.612,0.585,1.05,0.865,0.881,2.383,1.524,0.865,0.85,1.073,0.927,2.68,0.933,0.705,1.016,0.582,1.586,0.862,0.707,0.761,1.062,0.825,1.206,0.999,0.8,1.341,1.001 +NM_001295,0.742,1.001,1.06,1.082,0.806,1.178,0.992,0.638,0.784,0.707,1.27,0.751,0.725,0.686,0.95,1.266,0.852,0.935,0.746,0.915,0.637,0.621,1.08,0.867,0.876,0.629,1.13,0.683,0.612,1.218,0.624,2.222,2.136,1.361,0.662,1.077,1.051,0.667,2.052,7.996,0.722,1.512,1.081,0.872,0.931,0.978,1.121,0.593,0.905,0.733,0.991,4.677,1.039,3.186 +NM_001297,1.152,0.963,0.946,1.0,0.977,0.936,0.808,1.196,1.059,0.977,1.041,1.084,0.984,0.981,1.219,1.091,1.047,0.94,1.001,1.041,1.002,0.985,0.943,0.952,1.013,1.161,1.177,1.067,0.547,0.992,1.118,1.008,0.897,1.038,1.449,0.92,1.079,1.215,1.009,1.006,1.094,1.003,0.728,0.98,1.106,0.992,1.107,1.16,0.98,0.96,0.896,0.789,0.884,0.984 +NM_001298,1.06,0.924,1.016,0.95,0.922,1.094,1.321,1.036,0.927,1.035,1.032,0.979,1.181,1.124,1.0,1.099,0.998,0.966,1.33,0.942,0.954,0.962,0.928,0.944,0.958,0.952,0.788,1.004,1.125,1.061,0.94,0.947,0.741,1.026,0.971,1.072,1.031,1.027,0.866,0.884,1.0,0.824,0.812,1.026,0.927,0.958,1.152,1.073,0.915,1.236,1.025,1.145,1.104,0.791 +NM_001299,0.821,0.814,0.791,1.025,0.943,1.218,1.105,0.982,0.85,0.836,1.505,0.842,1.013,0.974,1.189,1.246,0.903,0.925,1.029,0.98,1.532,0.87,2.032,0.815,1.022,0.849,0.88,1.544,0.851,1.559,0.859,2.201,1.249,3.008,0.98,1.028,0.889,1.263,1.479,0.921,3.443,2.683,0.948,0.865,0.893,0.909,0.879,0.963,0.894,0.833,1.647,0.968,0.996,1.061 +NM_001300,1.022,0.568,1.29,0.784,0.923,0.967,0.524,0.698,1.305,0.842,0.701,0.632,0.787,0.933,1.001,1.142,0.952,1.023,1.249,0.94,0.654,1.14,1.081,0.999,0.65,1.132,0.878,1.1,0.482,0.767,1.356,1.151,0.941,0.985,0.646,0.483,0.97,1.263,1.86,1.026,1.05,1.009,1.471,0.592,1.037,1.614,0.952,1.419,1.058,1.138,0.714,0.831,1.248,1.431 +NM_001302,1.087,0.953,0.862,0.968,0.972,0.96,0.954,0.992,0.932,0.975,0.963,1.249,0.884,0.924,0.897,1.075,1.039,1.015,1.136,0.952,1.018,0.902,1.112,1.112,1.02,1.075,0.991,0.964,0.733,0.992,1.057,0.942,1.082,1.079,0.906,0.861,0.993,1.006,1.04,1.004,1.242,0.976,1.291,0.948,0.96,0.973,1.198,0.968,1.043,0.989,1.016,0.862,0.906,1.018 +NM_001303,0.911,0.848,0.762,0.861,0.786,0.969,0.642,0.717,0.796,0.915,1.229,0.849,0.873,0.932,1.15,1.594,0.785,0.919,1.032,0.976,0.853,0.894,1.189,1.039,1.08,1.05,1.044,0.863,0.65,1.087,0.874,1.053,1.382,1.294,0.555,1.039,1.382,0.779,1.09,0.846,0.872,1.142,1.482,1.06,0.941,1.161,0.792,0.853,1.004,0.782,1.057,0.734,0.874,1.68 +NM_001304,0.271,2.031,0.68,0.771,0.39,2.276,1.153,0.305,0.503,0.398,2.65,0.336,0.275,0.305,0.825,2.599,0.36,1.742,0.466,3.14,0.247,0.33,3.025,0.376,1.011,0.264,0.68,0.392,0.839,2.824,0.382,0.979,0.74,2.87,0.168,0.683,3.445,0.39,1.689,0.75,0.48,2.719,1.008,1.277,0.389,2.357,1.013,0.297,1.367,0.393,2.147,0.815,0.416,0.807 +NM_001305,0.827,0.468,0.694,0.658,0.929,0.842,0.422,1.009,1.155,1.152,1.506,0.571,0.787,0.978,1.261,1.826,0.689,0.726,1.412,0.922,0.919,0.757,1.671,0.778,0.376,1.041,0.894,0.697,0.403,0.588,1.13,0.635,1.927,0.44,0.793,0.812,0.852,0.997,1.367,1.099,0.835,0.953,1.456,1.895,0.895,2.246,1.653,1.085,1.423,0.862,0.901,1.37,1.282,1.687 +NM_001306,0.497,1.968,0.423,1.423,0.427,2.286,0.527,0.404,0.451,0.342,6.486,0.462,0.448,0.474,8.963,23.4,0.474,0.551,0.492,8.793,0.526,0.518,17.22,0.484,0.472,0.463,0.464,0.422,0.362,0.882,0.463,5.634,17.96,0.893,0.56,11.42,5.398,0.43,7.117,16.48,0.425,5.093,9.148,23.2,0.825,14.3,11.85,0.423,15.18,0.506,5.768,10.44,0.544,24.12 +NM_001307,1.055,0.297,0.922,0.663,0.772,0.906,0.15,0.657,1.221,0.792,1.555,0.345,1.129,0.616,1.369,2.381,1.217,1.064,1.664,0.984,0.46,0.937,1.389,0.883,0.0447,1.569,0.879,0.96,0.0641,0.402,0.906,0.445,0.613,0.299,1.095,0.95,1.519,1.233,1.208,0.402,1.267,1.465,1.057,0.942,1.139,1.514,1.143,1.672,1.838,1.176,1.529,0.929,1.059,0.888 +NM_001308,0.937,1.21,0.987,1.123,1.087,1.269,1.393,1.138,1.102,1.199,0.903,1.091,0.962,0.982,0.784,1.152,1.047,1.11,0.988,0.977,1.1,0.968,0.949,0.963,0.801,1.019,0.888,1.152,1.085,0.924,1.094,0.69,1.022,1.022,0.939,1.016,0.911,1.045,0.974,0.908,1.016,1.042,0.993,0.978,0.964,1.077,0.96,0.891,0.931,0.894,0.832,0.985,1.046,1.079 +NM_001311,0.102,1.578,2.475,0.967,0.664,1.711,0.786,0.659,0.227,0.278,0.757,0.661,0.174,0.195,1.231,1.925,0.166,1.049,0.268,2.551,0.201,0.343,1.795,1.014,0.436,0.363,0.582,0.652,0.639,1.995,0.195,1.372,1.003,1.709,0.128,1.814,1.528,0.997,2.013,0.853,0.409,0.953,1.375,1.395,0.486,2.417,0.357,1.193,1.072,0.169,2.585,0.801,0.208,1.232 +NM_001312,1.689,0.692,2.204,1.444,1.429,0.945,0.452,1.318,1.462,1.133,0.399,1.138,1.004,0.996,0.887,1.023,0.935,0.946,2.211,0.864,1.019,1.152,0.481,2.01,0.596,2.564,1.094,1.522,0.355,1.129,1.553,1.944,2.053,1.37,0.975,0.491,0.396,1.843,2.94,0.64,0.963,0.727,0.341,1.006,1.314,0.456,0.683,1.628,0.283,1.358,1.207,0.924,1.679,0.683 +NM_001313,0.786,0.919,0.903,1.062,0.92,1.079,0.82,0.887,0.894,1.269,0.985,0.994,0.961,0.827,0.91,1.023,1.044,0.977,1.043,0.936,1.377,0.8,1.003,1.381,0.923,0.901,1.066,0.997,1.012,0.916,1.076,1.727,1.316,1.046,0.911,1.018,0.926,1.587,1.115,1.035,0.871,1.005,0.71,0.757,1.35,0.917,1.156,0.971,0.902,0.861,1.1,1.045,1.512,0.89 +NM_001315,0.969,0.971,1.084,0.825,1.038,1.047,0.938,0.987,1.117,1.023,0.964,0.942,0.987,1.081,1.105,1.097,1.05,0.883,1.071,1.011,1.031,1.016,0.932,1.011,0.95,1.073,0.997,0.992,0.754,0.98,1.036,0.993,0.985,1.005,1.223,0.974,1.094,1.072,0.964,0.923,1.097,1.073,0.912,0.923,1.027,0.987,1.011,0.981,1.065,0.984,1.01,1.096,1.127,1.004 +NM_001316,0.728,0.821,1.302,0.587,0.95,0.821,0.528,0.52,1.638,1.384,0.566,1.084,0.656,0.652,0.926,1.141,0.744,0.87,1.517,0.679,0.725,1.076,1.911,1.511,0.557,0.816,1.674,0.843,0.371,0.961,1.105,1.489,4.136,0.917,0.243,1.234,0.728,1.128,2.098,1.283,1.136,0.783,0.424,1.441,1.193,0.655,0.969,0.785,0.996,0.998,0.904,1.258,1.152,2.588 +NM_001319,0.996,0.908,1.032,0.892,0.874,0.992,0.759,0.788,0.965,0.989,1.033,0.878,0.932,0.813,0.799,1.277,1.098,0.981,1.002,0.779,0.931,1.059,1.171,1.053,0.781,0.927,1.14,0.807,0.654,1.069,0.82,1.385,1.789,1.089,0.775,0.811,0.934,1.054,1.296,1.212,0.845,1.108,0.827,1.275,1.189,0.943,0.918,1.134,0.75,1.134,1.003,0.86,1.143,1.082 +NM_001320,0.844,0.884,0.978,0.761,0.795,1.265,0.459,0.79,1.013,0.934,0.759,1.003,0.848,0.614,0.95,1.362,0.822,0.771,1.203,0.807,0.605,0.975,0.955,1.111,0.589,1.237,1.149,0.858,0.458,0.953,1.003,1.347,2.806,1.316,0.744,0.621,0.804,1.164,1.723,1.014,0.869,1.011,0.532,1.308,1.187,0.685,0.731,1.049,0.752,1.052,0.793,0.782,1.04,1.832 +NM_001321,1.311,0.532,4.452,0.626,2.647,0.437,0.535,1.632,2.433,2.373,0.584,5.164,1.979,2.77,2.767,1.032,2.738,1.328,4.596,0.387,2.03,3.02,0.694,3.059,0.544,1.747,4.249,3.516,0.279,0.66,2.727,1.962,1.701,1.082,0.2,0.381,0.29,2.414,0.664,0.507,4.661,1.215,0.27,0.324,1.631,0.266,1.176,1.701,0.267,2.316,0.718,0.83,2.731,0.686 +NM_001322,0.908,0.987,1.061,1.115,0.998,0.99,0.927,0.938,0.97,0.971,1.035,0.928,0.984,0.935,1.151,0.898,1.073,0.993,1.106,1.014,0.996,0.971,0.989,1.015,1.029,0.976,1.091,0.937,0.914,1.044,1.072,2.202,1.077,0.928,1.12,1.021,0.989,1.079,1.072,0.866,0.922,1.08,0.945,0.969,1.015,1.158,0.987,0.99,0.978,0.952,0.911,1.059,1.112,0.997 +NM_001323,2.842,0.259,3.0,0.917,4.803,0.272,0.223,2.928,3.88,2.728,0.419,2.935,2.177,2.56,1.847,1.393,2.125,2.792,3.914,0.257,1.543,3.09,0.234,2.616,0.242,4.699,1.866,5.588,0.277,0.248,4.129,0.324,2.373,0.227,6.583,0.225,0.266,3.93,0.381,0.556,3.752,0.252,0.187,0.594,3.664,0.221,2.591,5.33,0.334,3.171,0.805,1.724,3.033,0.965 +NM_001324,0.891,1.097,1.078,0.86,0.98,1.1,0.829,0.695,0.986,1.158,0.953,0.862,0.768,0.818,0.992,1.126,0.924,0.98,1.084,1.121,0.84,0.744,1.428,0.917,0.791,0.978,1.212,0.885,0.65,1.239,0.936,1.253,1.909,1.196,0.626,1.142,0.838,0.787,1.164,1.269,1.09,1.055,0.85,1.39,1.072,0.839,0.913,0.849,0.863,0.955,1.096,1.043,0.896,1.77 +NM_001325,0.819,0.595,1.593,0.609,1.281,0.88,0.461,1.332,1.821,1.186,0.891,1.401,0.912,1.142,1.188,1.561,1.396,1.037,2.263,0.833,0.96,1.253,0.905,2.106,0.41,0.966,1.648,1.365,0.382,0.774,1.416,0.669,2.742,0.982,0.594,1.124,0.915,1.329,0.868,0.457,1.608,0.684,0.496,0.951,1.125,0.833,1.249,1.048,1.212,0.766,0.803,0.912,1.295,1.637 +NM_001326,0.801,1.153,1.406,0.752,0.885,0.862,0.703,0.743,1.006,0.966,0.908,0.83,0.786,0.789,0.982,1.513,1.21,0.938,1.219,0.916,0.947,0.872,1.496,0.764,0.799,0.791,1.62,0.825,0.703,0.895,0.949,1.797,1.481,1.007,0.634,1.117,1.166,0.784,1.166,1.138,0.943,1.076,1.066,1.075,1.028,0.892,1.258,0.713,1.11,1.253,1.322,1.033,1.096,1.258 +NM_001329,1.374,2.11,1.7639999999999998,1.85,1.478,2.456,1.502,1.51,2.0460000000000003,1.786,2.8360000000000003,1.556,1.5779999999999998,1.473,2.357,2.676,1.617,1.6560000000000001,1.822,2.316,1.405,1.6520000000000001,2.229,1.7429999999999999,1.781,1.471,1.879,1.523,1.5070000000000001,2.488,1.509,2.251,3.843,2.298,1.139,2.626,2.487,1.416,2.989,1.952,1.536,2.2359999999999998,2.1630000000000003,3.5540000000000003,1.626,2.593,2.295,1.516,2.616,1.597,2.239,2.146,1.8010000000000002,2.569 +NM_001330,1.075,1.203,1.066,0.842,1.153,1.04,1.03,0.892,1.039,0.949,0.931,1.108,1.077,1.0,1.111,0.937,0.902,0.943,0.985,1.078,1.012,1.071,0.926,1.066,0.916,1.052,1.148,1.016,1.186,0.922,0.972,1.062,0.964,1.052,1.024,0.903,0.9,1.081,0.984,1.153,0.964,1.084,0.97,1.017,0.991,1.036,0.928,1.05,1.037,0.994,1.013,0.824,1.071,1.116 +NM_001331,0.76,0.91,1.391,0.586,1.02,1.334,0.64,0.705,1.609,0.997,0.879,0.664,0.672,0.961,1.339,1.736,0.795,1.231,1.474,0.99,0.426,1.275,1.314,1.131,0.527,0.981,1.273,1.075,0.753,1.699,1.493,0.711,0.675,1.548,0.582,0.796,1.448,1.002,1.453,0.374,1.032,1.467,0.568,0.439,1.161,1.165,0.592,0.998,1.162,0.887,1.176,0.69,0.782,1.048 +NM_001332,1.074,0.971,1.05,0.976,1.061,0.806,1.164,1.075,1.048,0.954,1.104,1.048,0.889,1.437,1.012,0.909,0.93,1.094,0.954,0.956,1.083,1.129,0.953,0.97,1.028,1.027,1.064,0.949,1.887,0.97,1.156,0.971,0.806,0.965,1.024,0.934,0.877,1.07,1.068,0.895,0.945,1.025,1.034,1.0,0.986,1.072,0.914,0.918,1.076,0.892,1.12,1.029,0.849,1.147 +NM_001333,1.206,0.44,1.628,0.966,1.309,2.85,0.318,0.99,2.285,0.681,3.581,0.889,0.981,0.788,0.93,0.957,0.701,0.949,1.194,2.909,0.892,0.653,2.205,0.565,0.243,0.814,0.926,1.654,0.332,1.079,0.857,0.555,1.024,0.614,1.915,0.351,0.786,1.99,1.42,0.508,1.345,2.53,0.443,0.95,0.534,1.621,2.65,1.276,0.597,0.998,1.845,0.843,0.526,3.869 +NM_001334,0.655,1.437,0.817,0.688,0.625,1.295,0.794,0.483,0.614,0.519,1.42,0.541,0.637,0.503,1.008,1.447,0.642,0.801,0.573,1.684,0.447,0.562,0.946,0.585,0.944,0.511,0.767,0.636,0.835,1.414,0.456,3.692,0.749,2.052,0.414,0.564,1.627,0.634,1.341,0.82,0.709,2.358,1.319,1.325,0.649,1.554,0.994,0.453,1.169,0.591,1.373,0.7,0.842,1.109 +NM_001337,1.104,0.932,0.889,1.117,1.128,1.003,0.855,1.017,0.951,1.115,1.096,0.972,0.907,0.942,0.996,0.843,0.981,0.93,0.896,1.211,0.997,0.916,0.911,0.952,0.855,1.036,1.043,1.045,0.976,0.915,0.892,0.954,0.886,0.895,1.032,0.993,1.04,1.044,1.092,0.913,1.235,0.958,0.979,1.064,1.095,1.133,0.903,1.07,0.927,0.838,1.078,0.824,0.905,1.125 +NM_001338,0.696,1.262,1.406,0.614,0.724,1.402,0.802,0.248,0.689,0.421,1.365,0.483,0.685,0.516,0.739,1.169,1.128,1.113,1.285,1.119,0.485,0.82,0.979,0.603,0.974,0.592,2.062,0.605,0.74,1.832,0.733,0.413,1.011,1.795,0.43,0.517,1.544,0.735,1.499,0.5,0.799,1.198,0.59,0.892,0.807,1.186,0.65,0.575,0.469,1.381,1.209,0.492,1.089,0.93 +NM_001343,0.481,0.954,0.578,0.812,0.533,1.008,0.94,0.389,0.468,0.49,1.547,0.404,0.409,0.381,0.992,1.161,0.46,0.646,0.361,1.129,0.456,0.425,1.641,0.532,0.898,0.443,0.639,0.463,0.55,1.635,0.402,3.49,1.069,1.879,0.413,1.862,0.847,0.597,1.284,2.479,0.595,2.115,0.813,1.533,0.555,1.357,0.935,0.447,1.017,0.426,1.607,1.632,0.646,1.043 +NM_001344,0.495,1.008,0.967,0.89,0.759,1.375,0.737,0.475,1.224,0.924,1.838,0.676,0.485,0.568,1.048,2.092,0.731,0.956,1.685,1.103,0.498,0.438,1.292,0.97,0.669,0.697,0.864,1.029,0.392,1.685,0.944,1.291,2.512,2.128,0.171,1.127,1.223,0.726,1.049,0.609,1.183,1.194,0.692,1.49,0.841,1.416,1.17,0.419,1.096,0.594,1.247,0.796,1.152,1.289 +NM_001345,1.396,0.549,1.981,1.096,1.401,1.16,0.557,1.31,1.889,1.471,0.997,1.051,1.311,1.324,1.498,1.574,2.216,0.994,1.779,0.737,0.913,1.608,0.713,1.7,0.508,1.871,1.649,1.186,0.494,0.775,1.945,0.689,1.11,0.668,2.396,0.688,0.649,1.394,1.253,0.603,1.558,0.814,0.69,0.755,1.309,0.779,0.95,1.439,0.706,1.397,0.983,0.664,1.419,0.866 +NM_001346,1.024,1.045,0.962,1.043,0.98,0.808,1.126,0.996,1.032,0.949,1.106,0.86,0.915,0.965,0.937,1.035,0.936,0.929,1.243,1.009,0.798,0.884,1.0,0.926,0.971,0.822,1.113,0.929,1.009,0.988,0.935,0.873,0.992,1.007,1.0,1.128,1.021,0.915,1.047,0.884,0.953,1.043,1.011,1.143,0.974,1.098,0.926,1.043,1.051,0.959,0.984,0.912,1.019,0.922 +NM_001347,0.961,1.041,1.109,0.952,1.31,0.97,0.925,1.044,1.134,0.966,1.042,1.203,1.063,0.875,0.828,1.015,0.988,1.148,1.069,0.904,1.107,0.946,1.1,0.98,0.993,0.973,1.042,0.998,1.065,0.993,1.105,0.939,0.965,0.962,1.003,1.085,1.012,0.968,0.984,0.953,0.977,1.12,1.053,1.053,0.94,1.066,0.992,1.068,0.884,1.082,0.959,0.996,1.159,1.022 +NM_001348,0.837,0.807,0.998,0.916,0.743,1.271,0.868,0.77,0.83,1.038,1.051,0.683,0.746,0.704,0.997,1.153,0.791,1.037,0.98,0.893,0.949,0.819,1.146,0.792,0.693,1.063,1.042,0.679,0.961,1.394,0.798,1.408,0.892,1.109,0.704,1.028,0.948,1.15,1.786,1.81,0.877,1.263,0.846,1.223,0.811,1.004,0.906,1.065,0.959,0.899,0.952,0.975,1.319,0.892 +NM_001349,0.874,0.802,1.465,0.651,1.05,0.916,0.509,0.774,1.688,0.963,0.951,1.236,0.737,0.995,1.025,1.26,0.923,0.836,2.09,0.656,0.793,1.079,1.141,1.618,0.607,0.939,1.592,1.12,0.482,0.984,1.205,1.423,2.979,1.316,0.351,0.901,0.943,1.288,1.115,1.516,1.346,1.12,0.433,1.22,1.239,0.667,0.832,0.666,0.767,0.868,0.933,0.93,1.349,1.483 +NM_001350,0.887,0.945,0.96,1.334,0.646,1.075,0.769,0.682,0.866,0.747,0.975,0.84,0.809,0.757,0.928,1.208,0.884,0.857,1.08,1.058,0.943,0.714,0.971,0.915,0.936,1.0,1.032,0.736,0.604,1.082,0.912,1.409,2.484,1.426,0.58,1.001,0.876,0.796,1.533,1.225,0.83,1.034,0.767,1.477,1.007,0.846,0.712,0.769,0.764,1.037,1.0,0.774,1.055,1.748 +NM_001351,0.984,0.917,1.01,0.954,0.935,1.014,0.987,0.931,1.258,1.125,1.19,1.072,0.835,0.973,1.503,1.112,1.108,1.128,0.875,1.046,1.048,0.946,1.047,0.996,0.997,0.986,1.001,1.07,0.815,1.024,0.985,0.982,0.976,1.13,1.157,1.011,1.109,1.016,1.177,0.961,0.979,0.917,1.082,0.896,1.027,1.18,1.04,1.008,0.983,0.902,0.97,0.987,1.012,1.018 +NM_001352,0.915,1.077,1.063,0.797,0.86,1.1,0.79,1.148,1.857,0.805,0.805,0.991,1.25,1.134,0.948,0.887,1.008,1.095,1.514,0.874,1.123,1.287,0.94,0.898,1.015,1.531,1.328,0.952,0.853,1.21,1.337,1.445,1.42,1.415,2.012,0.671,1.098,1.316,1.0,0.773,1.06,1.183,0.642,0.93,1.077,0.73,0.996,1.11,0.683,1.705,0.745,0.763,0.665,1.208 +NM_001353,0.472,2.685,0.813,1.395,0.646,3.056,1.527,0.103,0.474,1.209,2.502,0.4,0.364,0.344,0.825,3.872,0.567,1.923,1.334,1.784,0.454,0.415,1.674,0.57,2.136,0.529,1.104,0.515,1.534,2.902,0.544,0.598,0.363,2.558,0.0513,0.182,3.133,0.476,2.645,0.18,0.73,2.677,1.664,0.397,0.62,1.625,1.546,0.531,1.541,0.816,0.962,0.75,0.527,0.209 +NM_001354,0.9,3.193,1.487,1.486,1.295,4.395,2.319,0.218,1.383,2.312,2.045,1.808,0.921,0.47,0.94,1.329,0.952,1.778,2.001,0.872,0.801,1.014,0.257,1.294,1.448,0.728,1.725,1.541,1.658,6.511,1.189,0.106,0.293,3.761,0.0539,0.109,2.99,0.986,1.832,0.0543,1.886,2.134,1.129,0.0556,1.04,0.592,0.461,0.777,0.733,1.208,0.352,0.91,0.962,0.107 +NM_001355,0.485,1.441,0.625,0.721,0.622,1.833,0.848,0.486,0.687,0.851,2.303,0.908,0.713,0.403,0.862,2.694,0.448,1.045,1.064,1.128,0.639,0.626,1.502,0.837,0.897,0.847,0.518,0.65,0.663,1.555,0.571,0.836,1.07,2.02,0.468,0.798,2.034,0.799,1.468,0.757,0.591,1.86,1.126,0.728,0.677,1.226,0.588,0.816,1.106,0.63,1.209,0.694,0.809,0.87 +NM_001356,0.678,0.878,1.369,0.838,0.943,1.064,0.623,0.413,1.276,1.114,1.079,0.625,0.502,0.682,0.993,1.181,0.909,0.647,1.15,1.019,0.793,0.843,1.156,1.38,0.558,0.747,1.056,1.046,0.4,1.004,1.035,0.996,2.129,1.129,0.257,0.865,0.919,0.889,1.216,0.863,1.357,0.921,0.982,0.682,1.035,1.09,0.909,0.621,0.966,1.051,0.805,0.939,1.194,1.448 +NM_001358,0.579,0.85,1.158,0.889,0.774,1.005,0.657,0.386,1.526,1.157,0.995,0.561,0.458,0.792,1.05,1.514,0.76,0.773,1.077,1.076,0.72,0.486,1.395,0.952,0.553,0.668,1.475,0.867,0.305,1.074,1.055,0.975,3.75,1.381,0.326,0.936,0.984,0.693,1.494,1.022,1.113,1.04,0.846,1.183,1.015,1.095,1.036,0.464,1.376,0.721,1.156,0.983,1.059,1.51 +NM_001361,0.929,1.061,1.022,1.045,1.035,1.069,0.831,0.776,0.996,1.05,0.943,0.92,0.941,0.849,0.933,1.129,1.103,0.874,1.079,0.908,0.774,0.959,1.14,1.108,0.96,0.936,1.075,0.88,0.779,1.082,0.868,1.071,2.369,1.28,0.835,0.962,0.985,1.017,1.3,0.862,0.926,1.122,0.823,1.249,1.009,1.051,0.98,0.907,0.969,1.073,0.993,0.985,1.019,1.255 +NM_001362,0.997,0.892,0.985,1.085,1.011,1.027,0.945,1.045,1.068,1.144,1.04,0.943,1.117,0.953,0.952,0.994,0.951,1.097,0.876,0.906,0.938,1.099,0.89,1.021,0.899,1.01,1.054,0.915,1.171,0.888,0.908,1.115,1.007,0.993,0.927,1.185,0.881,0.936,0.979,1.213,0.829,0.985,0.833,1.039,0.862,0.982,1.112,1.047,1.055,1.145,1.054,1.061,1.125,0.948 +NM_001363,0.8,0.888,0.956,0.632,0.811,0.786,0.456,0.387,1.375,1.369,0.783,0.953,0.652,0.737,0.999,1.182,0.781,0.611,1.148,0.714,0.762,0.79,1.377,1.603,0.605,0.775,1.46,0.707,0.413,0.848,1.093,1.035,3.858,0.961,0.176,1.482,0.993,0.828,1.577,0.894,1.341,0.976,0.612,2.672,1.255,0.79,1.073,0.673,1.074,0.813,0.991,1.329,1.073,2.077 +NM_001364,0.982,0.916,1.093,1.113,1.205,1.11,1.041,1.088,0.959,1.106,0.906,1.0,0.982,0.878,0.994,0.914,0.984,0.969,1.044,1.004,1.085,1.099,1.121,1.082,1.01,0.943,0.852,1.044,1.189,0.895,0.987,1.016,0.908,1.086,1.055,0.972,0.973,0.939,1.021,0.907,0.973,1.163,1.061,1.078,0.915,1.019,1.097,1.062,1.015,0.845,1.027,1.04,0.957,1.0 +NM_001369,1.057,1.129,0.924,0.922,1.102,0.953,1.002,0.917,1.0,0.942,1.05,1.108,0.956,0.89,0.845,1.066,0.991,0.842,0.962,0.865,1.02,0.998,0.868,1.129,1.006,1.049,0.942,0.934,0.903,1.087,0.937,0.952,1.133,1.209,1.063,1.103,0.981,0.905,0.946,0.991,0.97,0.97,0.854,0.977,0.942,0.922,1.023,0.899,0.987,1.064,0.925,1.086,0.917,0.933 +NM_001371,1.046,0.954,0.96,0.996,1.14,0.973,0.878,1.062,0.922,0.858,0.886,1.0,1.056,1.138,0.87,1.037,0.963,1.036,0.912,0.949,1.034,0.911,1.238,1.033,1.047,1.033,0.904,0.998,1.502,0.946,1.033,1.039,0.904,0.991,0.861,1.049,0.903,0.977,1.052,1.073,0.914,0.981,0.892,0.973,1.137,1.054,0.923,1.068,1.175,1.003,1.125,0.946,1.042,1.023 +NM_001372,1.068,1.098,0.926,0.882,0.955,1.08,1.015,1.132,1.239,1.012,0.921,0.936,0.996,1.162,0.992,1.016,0.974,1.122,1.03,1.129,1.003,1.031,1.135,1.064,1.012,0.93,0.992,0.932,1.138,1.068,1.037,0.969,0.988,1.06,1.084,0.956,1.044,1.086,0.942,0.915,0.935,0.834,0.943,1.018,1.095,0.905,0.935,0.912,0.984,1.036,1.045,1.11,1.108,0.981 +NM_001374,1.023,0.978,1.077,1.119,0.931,1.032,0.941,0.977,0.922,1.129,0.965,1.106,1.023,1.172,0.904,1.211,1.069,0.998,0.914,1.146,1.067,0.915,1.037,0.987,0.958,1.031,1.062,1.04,1.039,0.93,0.91,0.993,0.883,1.036,1.059,1.05,1.061,0.977,0.929,1.062,1.125,0.958,0.888,1.002,1.179,0.981,1.045,1.131,1.085,0.907,0.947,0.997,1.147,1.028 +NM_001376,0.591,1.218,1.474,0.462,0.957,0.836,0.482,0.263,0.759,0.777,0.848,0.907,0.278,0.446,0.715,0.914,0.743,0.83,0.977,1.134,0.445,0.699,1.271,0.751,0.687,0.597,1.306,0.589,0.543,1.418,0.626,1.742,1.443,1.065,0.0851,0.897,1.068,1.175,1.77,1.397,1.021,1.137,0.639,0.881,0.91,0.919,1.217,0.705,1.142,1.019,1.178,0.891,0.834,1.433 +NM_001378,0.678,0.895,1.3,0.62,1.033,1.153,0.442,0.532,1.452,1.016,1.03,0.751,0.466,0.819,1.129,1.82,0.968,0.822,1.523,0.833,0.688,0.883,1.274,1.194,0.468,0.864,1.279,0.971,0.382,0.984,1.186,1.167,1.399,1.161,0.397,0.614,1.097,1.099,1.217,0.818,1.177,1.049,0.527,0.79,0.993,1.12,0.856,0.793,0.925,0.839,1.054,0.683,1.043,1.582 +NM_001379,0.749,1.028,1.481,0.778,0.915,0.707,0.585,0.318,1.442,1.209,0.608,0.938,0.55,0.672,0.879,0.825,1.096,0.925,0.941,1.012,0.616,0.756,2.092,1.299,0.597,0.735,2.325,0.792,0.467,1.127,0.899,1.74,2.541,0.955,0.223,1.708,0.973,0.933,2.187,1.605,1.25,0.896,0.94,2.09,1.35,1.019,0.921,0.644,1.162,1.07,1.239,1.756,1.118,3.264 +NM_001380,0.977,1.046,1.123,0.923,1.074,1.038,0.59,0.815,0.997,1.059,0.995,0.86,0.828,0.793,0.983,1.16,0.868,0.863,1.019,0.929,0.937,0.665,1.337,0.826,0.801,0.949,0.929,0.947,0.654,0.96,0.86,1.836,1.4,1.088,0.676,1.0,0.823,0.946,1.056,1.156,0.985,1.295,1.03,1.301,0.913,0.845,1.038,0.853,0.933,0.906,1.029,0.993,0.969,1.208 +NM_001381,0.462,1.273,0.574,1.054,0.462,1.377,1.097,0.477,0.441,0.404,1.542,0.475,0.54,0.433,0.873,1.718,0.53,0.809,0.58,1.003,0.48,0.467,1.487,0.482,1.238,0.485,0.661,0.42,0.914,1.844,0.464,2.109,2.277,2.622,0.45,1.08,1.22,0.528,2.161,1.81,0.498,1.603,0.878,2.382,0.498,0.966,0.765,0.523,0.853,0.58,1.04,0.934,0.639,1.663 +NM_001382,0.585,1.48,1.223,0.582,0.924,0.682,0.66,0.362,0.918,1.035,0.644,0.773,0.453,0.585,0.855,1.718,0.911,0.778,1.616,0.872,0.709,0.736,1.605,1.065,0.584,0.732,1.302,0.69,0.3,1.42,0.754,1.757,1.354,0.96,0.185,2.505,0.948,0.782,1.444,1.537,1.092,1.156,0.816,1.355,0.94,1.088,1.28,0.578,1.52,0.815,1.147,1.095,1.323,1.315 +NM_001383,1.045,1.007,1.055,0.922,1.03,0.97,0.879,0.948,1.022,0.908,0.875,1.088,1.019,1.049,1.218,1.063,1.066,0.916,0.882,1.21,0.956,0.993,1.091,1.139,1.002,0.941,1.104,0.852,0.898,0.934,0.999,0.993,1.001,1.113,0.938,0.98,1.056,0.885,1.154,0.95,0.964,1.006,0.752,1.025,1.053,0.888,1.02,0.922,0.988,0.971,0.966,0.904,1.207,0.984 +NM_001385,1.094,0.967,0.957,0.967,1.079,0.971,1.073,1.08,0.934,0.945,0.964,0.994,1.156,0.884,1.161,1.119,0.967,0.941,0.976,1.032,1.077,0.903,0.978,0.986,1.141,1.1,1.106,0.905,0.802,1.044,0.899,1.011,1.012,0.866,1.005,0.945,1.072,1.105,0.95,1.097,0.912,0.896,0.997,0.965,1.055,1.116,1.053,1.057,0.922,1.011,0.917,1.047,0.9,0.871 +NM_001386,0.381,1.466,0.528,0.604,0.476,1.162,0.8,0.307,0.373,0.464,1.012,0.292,0.336,0.319,0.831,1.348,0.327,0.675,0.374,1.243,0.373,0.344,2.159,0.47,0.872,0.343,0.765,0.513,0.274,2.393,0.383,3.045,2.618,2.194,0.245,0.843,1.089,0.55,2.697,1.422,0.539,1.757,0.765,1.475,0.418,1.507,0.613,0.376,0.691,0.465,1.89,1.547,0.552,1.555 +NM_001387,0.579,1.147,1.845,0.581,0.673,1.067,0.744,0.619,0.476,0.536,1.129,0.575,0.646,0.424,0.975,1.252,0.451,0.493,0.562,1.155,0.891,0.589,1.853,0.672,0.82,0.565,0.939,1.331,0.593,2.12,0.428,12.14,3.733,3.101,0.381,1.037,0.801,2.295,1.277,1.599,2.839,3.249,0.656,1.394,0.479,0.728,0.808,0.797,0.673,0.475,1.615,1.803,1.035,1.423 +NM_001388,0.843,0.862,1.079,1.001,0.769,1.11,0.984,0.788,1.068,0.856,1.066,0.784,0.83,0.705,0.961,1.343,1.025,0.813,1.08,0.952,1.052,1.032,0.988,1.065,0.986,0.945,0.831,0.874,0.882,1.096,0.738,1.169,1.508,1.202,0.675,0.858,0.917,0.746,1.088,0.839,0.765,1.055,1.044,1.863,1.132,1.111,0.844,0.992,0.992,1.028,0.949,0.874,1.223,1.147 +NM_001389,1.006,1.045,0.926,0.955,1.062,1.096,1.061,1.081,1.059,1.005,1.076,1.099,0.976,1.031,1.255,0.987,0.953,1.064,0.89,0.977,0.945,0.862,1.004,1.064,0.89,1.011,0.925,1.039,1.53,0.949,0.953,1.021,1.056,1.041,1.028,1.214,0.998,0.849,1.071,1.099,0.957,1.066,1.023,0.901,1.07,1.003,0.867,0.977,1.001,0.966,0.919,1.031,0.926,0.976 +NM_001391,0.962,0.929,0.917,0.988,1.099,1.016,1.125,1.168,0.922,1.034,0.937,1.057,1.075,1.043,0.955,0.869,1.081,1.087,0.838,1.275,1.038,1.048,0.969,0.968,1.062,1.125,0.867,0.824,1.235,1.042,1.03,1.075,0.999,0.97,1.101,0.937,0.887,1.071,1.131,1.055,1.004,0.966,1.069,0.833,0.957,0.949,1.07,0.941,0.909,1.004,1.051,0.962,1.092,0.817 +NM_001392,1.994,2.135,1.883,2.2039999999999997,2.036,2.076,1.7570000000000001,1.986,1.922,1.971,1.855,1.827,1.899,2.136,1.93,2.064,2.028,2.045,2.1020000000000003,1.9889999999999999,2.052,1.92,2.2910000000000004,2.0460000000000003,2.022,1.95,1.911,2.027,1.6429999999999998,2.097,2.0090000000000003,2.287,2.154,2.183,2.0620000000000003,1.943,1.962,1.833,2.434,2.032,2.141,1.976,2.037,2.021,1.7,2.116,2.264,1.938,2.015,2.093,1.908,2.042,2.033,2.001 +NM_001393,0.792,1.064,1.077,0.939,0.926,0.996,1.123,1.103,0.971,0.943,1.105,0.946,1.021,0.72,1.164,1.169,0.978,1.04,0.892,0.964,1.125,0.939,1.104,0.9,0.872,0.84,0.876,0.858,1.697,1.079,0.922,1.334,1.206,1.086,0.944,1.059,0.905,0.983,1.205,1.031,0.908,1.029,1.068,1.02,0.907,1.011,1.033,0.899,1.164,0.839,0.892,0.869,0.873,1.085 +NM_001394,1.159,3.323,1.311,2.025,1.278,3.036,2.001,1.327,1.293,1.1760000000000002,2.076,1.4969999999999999,1.414,1.246,1.437,1.804,1.5470000000000002,3.183,1.3399999999999999,2.234,1.2229999999999999,1.224,2.64,1.184,2.846,1.299,1.394,1.2690000000000001,2.197,2.936,1.26,1.617,1.4849999999999999,3.215,1.587,3.3480000000000003,2.524,1.363,3.981,1.9689999999999999,1.678,1.698,1.983,2.92,1.279,4.474,1.412,1.4140000000000001,2.801,1.423,1.969,4.318,1.5110000000000001,1.8900000000000001 +NM_001395,1.009,1.062,0.954,1.032,1.008,0.927,0.767,0.863,1.028,1.019,0.992,0.948,0.859,0.876,0.745,0.827,1.107,0.976,0.969,1.084,0.86,0.798,0.949,0.916,0.871,1.17,1.03,1.041,1.002,0.983,0.955,1.123,1.024,0.944,1.032,0.996,0.894,1.144,1.216,0.966,0.996,0.907,0.99,1.071,0.992,0.922,1.016,1.077,1.025,1.069,0.839,1.084,1.046,1.411 +NM_001397,0.891,1.071,0.905,0.942,0.97,1.117,0.959,0.91,0.893,0.941,1.036,0.969,0.915,0.804,0.956,1.114,1.09,0.912,1.018,0.987,1.075,0.987,0.992,0.875,1.102,1.038,0.923,0.863,0.829,0.969,0.868,1.006,1.088,1.069,0.888,0.948,1.166,0.896,1.441,1.039,0.881,1.089,1.097,1.399,0.914,1.107,1.056,0.949,1.001,0.971,0.938,0.948,0.897,0.968 +NM_001398,0.65,1.26,1.114,1.063,0.681,1.798,0.727,0.296,0.912,0.881,1.592,0.556,0.507,0.498,0.735,1.308,0.83,0.992,1.187,1.536,0.576,0.605,2.424,0.643,0.938,0.994,0.985,0.659,0.431,1.82,0.682,1.034,2.434,2.121,0.219,1.153,1.604,0.607,2.051,0.21,0.843,1.476,0.833,1.539,0.859,1.046,0.805,0.625,1.047,0.809,1.551,0.63,1.089,1.237 +NM_001404,0.928,1.047,1.285,0.667,1.097,0.872,0.455,0.772,1.152,1.075,1.03,1.337,1.21,0.639,0.707,1.145,0.778,1.015,1.535,0.952,0.611,0.775,1.053,1.305,0.626,1.286,1.007,1.042,0.287,0.961,0.87,1.141,1.135,0.953,0.441,1.642,1.02,1.075,0.859,0.64,1.118,1.044,0.626,0.938,1.087,0.732,1.017,1.154,0.891,1.012,0.827,0.696,0.993,0.728 +NM_001405,1.072,0.957,0.967,1.167,0.996,1.022,1.206,1.122,1.005,0.996,1.054,1.054,0.936,1.06,1.088,1.222,1.018,1.169,1.114,0.943,0.866,1.031,0.948,0.94,1.162,1.119,0.862,0.927,0.95,1.09,0.961,0.942,0.965,1.027,1.043,0.96,0.982,1.02,1.054,1.033,0.971,0.899,0.954,0.94,1.114,0.952,0.872,0.963,1.101,0.872,0.94,1.016,1.019,0.991 +NM_001406,1.005,0.887,1.42,0.799,1.1,0.932,0.969,0.903,1.187,1.324,0.883,1.253,1.208,0.893,0.978,0.979,1.067,1.129,1.135,1.004,1.041,1.164,1.022,1.386,0.808,1.075,1.462,1.025,0.743,1.04,1.265,2.0,0.857,1.064,0.891,0.863,0.931,1.403,0.873,1.137,1.112,0.98,0.869,0.757,1.113,0.82,1.175,0.945,0.923,0.964,0.978,1.036,1.345,1.0 +NM_001407,0.939,1.433,0.961,0.808,0.906,1.468,0.776,0.775,0.89,0.761,1.172,0.972,0.958,0.804,1.088,1.652,0.851,0.981,0.971,1.678,0.867,0.893,2.004,0.882,0.868,0.812,0.9,0.941,0.743,1.302,0.843,1.418,1.042,1.145,1.063,1.979,1.277,0.752,2.504,1.61,0.839,1.594,1.163,1.814,0.924,1.372,0.979,0.897,0.946,0.853,1.729,1.44,0.892,3.394 +NM_001408,1.634,0.77,3.564,0.905,1.635,0.733,0.543,0.877,2.37,2.015,0.633,1.055,1.084,1.223,1.427,0.978,1.458,1.373,2.009,0.867,1.304,1.523,0.828,1.663,0.657,1.629,2.734,1.949,0.458,0.785,2.266,0.855,2.124,0.689,0.764,0.621,0.645,2.368,0.836,0.796,1.758,0.798,0.659,0.713,2.771,0.708,1.263,1.408,0.642,1.871,0.87,1.11,1.729,1.45 +NM_001414,0.995,0.755,1.291,0.978,1.13,0.841,0.689,0.479,1.235,1.212,0.889,0.986,0.796,0.746,0.929,1.14,1.024,1.015,1.311,0.966,0.913,0.847,1.017,1.09,0.802,1.229,1.189,0.924,0.531,0.777,0.855,1.146,1.237,1.198,0.397,1.192,0.942,0.994,1.686,0.781,1.316,1.078,0.726,0.959,1.321,0.781,1.111,0.999,0.784,1.02,0.97,0.823,1.386,1.25 +NM_001415,0.637,1.358,1.146,0.77,0.961,0.977,0.661,0.559,0.927,0.851,1.002,0.974,0.705,0.535,0.909,1.325,0.827,0.957,1.517,0.921,0.562,0.798,1.333,1.278,0.612,0.78,1.23,1.017,0.388,1.178,0.964,1.399,1.981,1.208,0.224,1.065,1.031,1.036,1.276,0.777,1.038,1.485,0.592,0.771,1.056,0.864,0.894,0.661,0.872,0.842,1.029,1.287,1.212,1.509 +NM_001416,0.742,0.613,1.546,0.606,1.042,0.902,0.444,0.52,1.606,1.363,0.616,1.051,0.582,0.614,1.033,1.753,1.074,1.056,1.617,0.518,0.777,1.115,1.273,1.574,0.374,0.881,1.848,1.02,0.311,0.847,1.305,0.865,2.538,1.08,0.473,0.652,0.866,1.289,1.074,0.745,1.454,0.905,0.61,0.914,1.371,0.801,1.176,0.822,1.223,1.171,1.113,0.758,1.443,1.441 +NM_001418,0.917,0.754,1.251,0.706,1.103,1.058,0.422,0.811,1.72,1.091,1.002,0.896,0.775,0.829,0.958,1.494,0.967,1.002,1.539,0.796,0.676,1.135,1.0,1.357,0.408,1.08,1.331,1.294,0.325,1.232,1.461,0.727,1.146,1.105,1.174,1.023,1.142,1.372,0.992,0.483,1.214,0.784,0.557,0.792,1.068,0.953,0.911,1.171,0.763,0.941,1.005,0.757,0.976,1.171 +NM_001419,0.908,0.912,1.092,1.008,0.982,1.0,0.764,0.835,0.995,0.999,0.993,0.905,0.878,0.901,0.982,1.004,1.034,1.011,0.935,1.059,0.954,1.0,1.095,1.024,0.994,1.031,1.11,0.865,0.977,1.003,0.86,1.036,0.892,0.991,0.914,1.051,1.001,0.99,1.059,1.179,1.021,1.006,0.852,0.888,0.986,0.93,0.91,0.961,1.021,0.997,1.058,0.921,0.974,1.103 +NM_001420,1.022,1.073,1.121,0.946,1.113,1.012,0.867,0.807,1.103,1.109,0.981,1.011,0.93,0.97,0.772,0.852,1.061,1.109,1.058,0.913,0.962,0.898,0.947,0.968,1.055,1.048,1.04,1.013,0.993,1.049,1.025,1.057,0.831,0.954,0.913,1.024,1.015,0.998,1.018,1.003,1.095,0.986,0.771,0.97,1.107,1.173,1.166,1.076,0.994,1.145,0.99,1.009,1.025,0.961 +NM_001421,0.517,1.07,0.709,0.852,0.627,1.791,1.091,0.483,0.747,0.889,1.142,0.524,0.454,0.627,1.012,1.435,0.547,1.009,0.634,1.062,0.525,0.583,1.085,0.711,0.846,0.62,0.845,0.6,1.016,1.415,0.746,1.342,1.7,2.202,0.677,0.9,1.205,0.627,1.531,0.959,0.636,1.21,0.991,1.697,0.639,0.965,0.863,0.596,0.876,0.653,1.034,0.737,0.777,1.401 +NM_001422,2.165,1.922,2.009,2.0989999999999998,2.197,1.942,2.355,2.0119999999999996,2.664,1.968,1.956,1.9900000000000002,2.003,1.717,2.2199999999999998,1.956,2.015,2.099,2.061,1.984,1.854,2.291,2.032,2.022,1.979,2.096,2.154,2.316,2.121,1.954,2.082,1.9409999999999998,1.911,1.736,2.4979999999999998,1.834,2.1229999999999998,1.697,1.932,2.002,1.933,2.391,2.153,2.141,1.787,1.782,1.756,2.041,1.978,1.811,2.012,2.011,1.79,1.853 +NM_001423,2.609,0.131,5.023,1.19,5.096,0.391,0.222,4.835,5.427,2.997,0.153,3.615,3.885,1.411,3.408,2.81,3.759,3.221,2.754,0.21,1.034,5.698,0.571,4.554,0.0828,2.034,3.85,4.395,0.117,0.234,6.618,0.471,2.959,0.182,4.211,0.128,0.277,5.863,0.726,0.343,3.92,0.204,0.473,0.156,4.3,0.198,2.95,5.371,1.117,2.588,1.904,0.761,1.085,0.989 +NM_001424,2.03,0.755,3.004,0.849,2.139,0.646,0.368,0.812,2.573,2.592,0.596,1.081,1.027,1.66,1.068,0.95,2.694,1.443,2.939,0.656,1.556,2.283,0.661,1.831,0.489,2.545,3.194,1.826,0.442,1.054,1.594,0.825,2.15,0.992,0.336,0.742,0.65,2.43,1.073,0.529,2.226,0.726,0.453,0.797,2.34,0.67,1.08,1.866,0.753,2.207,0.948,0.848,2.213,0.585 +NM_001425,0.658,1.165,1.004,1.161,0.695,1.021,1.03,0.657,0.727,0.768,0.774,0.61,0.814,0.609,0.632,0.841,0.725,0.766,0.769,0.753,0.848,0.691,1.267,0.812,1.145,0.792,0.989,0.734,0.585,1.538,0.598,4.316,1.098,1.758,0.516,1.068,0.883,0.787,2.27,3.039,0.985,1.939,0.723,1.459,0.837,0.762,0.923,0.785,0.662,0.821,1.133,1.94,1.022,1.492 +NM_001426,0.994,1.097,1.096,1.081,0.915,1.068,1.011,1.1,1.088,0.852,0.985,0.922,1.064,1.001,1.35,0.924,1.036,1.05,0.933,1.029,1.057,1.039,0.897,0.943,0.934,0.983,0.959,0.877,1.106,0.912,1.022,0.95,0.871,0.921,0.985,0.96,0.995,1.087,0.994,1.078,0.783,0.999,1.033,0.809,1.149,1.139,0.939,1.043,0.928,1.002,1.089,0.961,1.074,1.012 +NM_001427,0.84,1.046,0.927,0.975,1.015,1.011,1.028,1.053,1.044,1.061,1.068,1.009,0.861,0.887,1.08,0.965,1.043,0.944,1.149,1.039,0.968,1.096,1.162,0.837,0.935,1.01,1.003,0.79,1.441,1.014,0.925,0.878,1.308,0.874,1.022,1.123,0.879,1.025,1.027,0.954,0.886,0.886,1.078,1.091,0.815,1.218,1.047,0.989,0.869,0.968,0.938,0.932,1.006,0.993 +NM_001428,0.918,0.639,1.392,0.801,0.974,0.724,0.432,0.459,1.345,1.382,0.695,1.024,0.725,0.664,0.862,1.28,0.963,1.11,1.597,0.603,0.781,0.894,0.916,1.237,0.346,1.205,1.438,1.009,0.247,0.614,1.025,0.717,1.309,0.732,0.246,1.149,0.883,1.062,1.65,1.465,1.162,0.751,0.488,1.425,1.519,0.739,0.988,0.803,1.478,1.452,1.009,1.132,1.384,1.421 +NM_001430,0.944,1.035,1.058,1.01,0.836,1.006,1.119,1.047,0.971,0.849,0.962,1.056,0.965,0.762,0.803,1.057,0.883,0.874,0.998,0.934,1.108,1.003,1.001,1.015,1.044,1.016,0.907,0.972,1.208,1.007,1.007,0.927,0.916,1.034,1.096,0.976,1.005,1.054,1.153,1.09,0.929,0.918,1.081,1.098,0.968,0.935,1.015,1.031,0.914,1.032,1.003,0.949,0.957,0.975 +NM_001431,0.897,1.191,0.747,0.96,0.774,1.142,0.906,0.694,1.01,0.881,0.982,0.682,0.692,0.722,1.425,2.005,0.761,0.871,0.828,0.903,0.849,0.779,1.049,0.786,0.798,0.698,0.889,0.727,0.792,1.387,0.79,2.054,1.61,1.26,0.695,1.162,1.079,0.787,1.951,1.58,0.849,1.265,0.934,1.641,0.746,1.151,1.003,0.779,1.869,0.72,1.223,0.927,0.898,1.729 +NM_001433,1.046,1.118,1.011,0.977,0.946,0.866,0.89,0.856,1.026,1.136,0.869,0.998,0.845,1.011,0.818,1.013,1.028,1.028,1.045,0.984,0.929,0.886,0.901,0.93,1.038,1.002,1.152,1.109,0.716,1.015,0.835,0.995,0.895,1.038,0.957,1.002,0.998,1.037,1.014,1.018,1.009,0.939,1.201,1.034,0.868,0.931,1.057,1.036,0.878,1.027,1.02,0.991,0.947,1.045 +NM_001436,0.629,0.903,1.266,0.552,0.925,0.921,0.5,0.835,1.254,1.132,0.699,1.316,1.125,0.534,1.125,1.803,0.836,0.907,1.847,0.762,0.6,1.14,2.237,1.733,0.421,0.827,1.824,0.979,0.272,0.781,1.395,0.969,6.196,1.254,0.126,0.657,0.723,1.378,1.727,0.994,1.258,1.209,0.307,1.147,1.442,0.516,1.081,1.151,1.069,1.105,0.852,0.717,0.804,1.855 +NM_001437,1.041,1.046,1.148,1.078,1.129,0.975,0.929,1.008,1.11,0.959,0.92,0.946,0.932,0.911,1.07,1.165,1.151,1.1,0.954,0.903,0.973,0.837,0.789,0.9,0.995,0.773,0.707,0.908,0.918,0.916,0.834,0.848,0.845,0.767,1.022,0.999,1.132,0.972,1.038,1.039,0.878,1.159,0.866,0.963,0.966,0.72,1.0,0.915,1.057,1.067,0.877,1.035,0.86,0.864 +NM_001438,0.907,4.295,0.942,1.115,0.891,1.82,2.459,1.156,1.022,0.952,1.397,0.85,0.9,0.993,0.877,2.184,0.901,1.278,0.99,1.248,0.957,1.023,0.933,0.835,7.898,0.88,0.989,1.11,1.419,1.937,0.954,0.953,1.049,3.644,0.917,0.893,2.449,0.787,0.912,0.934,1.078,1.382,0.93,0.99,0.969,1.068,1.027,0.978,0.897,0.824,1.279,0.876,0.91,1.087 +NM_001439,0.987,1.217,0.861,0.917,0.99,1.183,1.047,0.781,0.966,0.982,1.128,1.059,1.066,0.941,0.858,0.992,0.802,0.956,0.948,1.161,0.802,0.894,1.052,0.934,1.027,0.846,1.003,0.968,0.962,1.216,0.974,1.584,1.521,1.241,0.816,0.764,0.956,0.963,0.987,1.046,0.819,1.039,0.806,1.141,0.804,1.094,0.942,0.894,0.917,0.781,1.136,0.865,0.936,1.21 +NM_001440,0.861,0.878,0.903,0.898,0.943,0.9,0.686,0.807,0.816,0.994,0.972,0.907,0.872,0.797,0.866,0.999,0.849,0.919,0.955,0.791,1.086,1.044,1.091,1.042,0.882,0.871,1.16,0.896,0.614,1.104,0.782,1.432,1.073,1.051,0.839,0.89,0.856,1.012,1.621,1.138,0.912,1.136,0.776,1.083,0.883,1.073,1.004,1.22,0.88,1.063,0.99,1.324,1.119,1.059 +NM_001441,0.778,1.074,0.721,1.082,0.657,1.411,0.844,0.676,0.759,0.799,1.05,0.686,0.858,0.729,0.677,1.857,0.613,0.854,0.669,1.061,0.678,0.742,1.009,0.79,1.216,1.099,0.805,0.654,0.893,1.787,0.656,1.26,2.511,1.614,0.575,0.905,1.114,0.643,1.662,0.847,0.634,1.49,1.09,1.456,0.789,0.945,0.941,0.75,0.819,0.676,1.118,0.846,0.657,1.32 +NM_001442,0.795,1.57,0.944,0.824,0.87,1.647,1.452,0.776,0.838,0.795,1.132,2.492,0.746,0.789,1.368,1.769,0.931,1.039,1.042,0.787,0.787,0.697,0.999,0.844,1.177,0.748,1.233,1.001,1.188,1.467,0.926,1.531,0.854,1.772,0.896,0.945,0.81,1.087,1.058,0.878,1.017,3.377,1.218,0.752,0.84,0.991,2.733,0.664,0.863,0.821,1.024,1.18,1.09,0.686 +NM_001443,0.736,1.168,0.63,28.52,0.597,36.48,1.03,0.793,0.858,0.793,102.1,0.785,0.603,0.551,106.1,197.5,0.846,0.662,0.649,55.01,0.554,0.717,24.32,0.717,0.753,1.155,0.706,0.985,0.697,38.57,0.764,0.691,1.699,5.672,0.878,13.01,141.4,0.877,8.34,16.82,0.703,62.63,65.65,0.833,0.765,130.0,39.29,0.723,156.8,0.682,32.64,1.015,1.275,1.92 +NM_001444,1.659,0.436,3.309,0.7,2.841,0.668,0.405,2.412,2.931,2.565,0.505,3.572,1.716,0.929,2.114,2.817,2.429,2.076,2.25,0.383,1.301,2.444,0.522,3.177,0.394,1.479,3.084,2.604,0.406,0.798,3.277,0.397,2.684,0.916,0.133,0.202,0.678,3.369,0.665,0.184,2.753,0.276,0.325,0.159,2.851,0.537,2.216,2.21,0.549,2.562,1.571,0.871,1.553,1.136 +NM_001445,0.89,3.265,1.104,0.808,0.979,1.101,0.682,0.726,0.938,1.163,1.823,1.097,0.947,0.764,2.936,1.169,0.975,0.818,0.975,1.341,0.896,0.901,4.987,0.895,0.798,0.902,1.566,0.937,0.608,0.87,0.833,0.684,4.668,0.714,0.63,1.429,1.117,0.794,1.305,1.271,0.862,1.478,0.853,0.948,1.114,1.01,1.558,0.816,1.126,0.827,1.14,0.743,1.02,5.182 +NM_001446,0.983,0.953,1.004,1.064,0.984,1.076,0.932,0.98,0.95,1.027,0.956,1.093,1.026,1.206,0.917,1.074,1.031,0.955,0.906,0.891,1.094,0.974,0.994,1.016,1.026,0.947,1.041,1.011,0.786,1.034,1.066,1.028,0.817,0.991,0.896,1.001,0.971,1.033,0.992,1.033,0.854,1.297,0.996,0.912,1.055,0.983,0.901,0.93,0.979,1.005,0.91,0.78,1.196,0.838 +NM_001447,1.093,0.89,2.75,0.932,1.72,0.794,0.903,1.065,1.31,1.218,0.875,1.478,1.115,1.431,1.332,0.93,1.369,1.219,1.591,0.907,1.217,1.607,0.895,1.633,0.798,1.295,2.39,1.399,0.949,0.886,1.837,0.914,1.211,0.776,0.895,0.814,0.791,1.733,1.011,0.899,1.817,1.074,0.749,0.794,1.588,0.85,1.058,1.347,0.891,1.378,0.986,1.014,0.999,0.988 +NM_001448,0.75,1.217,0.743,0.849,0.74,0.853,1.079,0.632,0.715,0.684,1.084,0.748,0.744,0.795,0.927,1.511,0.698,0.858,0.697,1.227,0.656,0.603,1.651,0.738,1.165,0.743,0.857,0.764,0.799,1.089,0.657,1.472,2.254,1.491,0.722,0.919,1.317,0.797,1.177,0.943,0.816,1.372,0.98,1.441,0.714,1.087,0.822,0.665,1.528,0.765,1.319,0.964,0.8,3.624 +NM_001449,0.608,1.598,0.655,0.95,0.623,1.884,1.242,0.779,0.749,0.729,1.677,0.645,0.65,0.67,1.475,1.759,0.626,0.762,0.595,1.228,1.004,0.62,2.328,0.81,1.501,0.668,0.733,1.441,1.111,2.909,0.62,2.506,1.408,5.424,0.582,0.706,1.16,1.433,1.952,0.764,2.65,4.427,0.971,0.566,0.617,1.051,0.831,0.675,0.743,0.59,2.126,0.979,0.886,1.128 +NM_001450,0.264,1.155,0.563,0.888,0.374,3.169,1.323,0.283,0.318,0.592,1.452,0.364,0.283,0.324,1.086,1.89,0.355,0.984,0.399,1.196,0.276,0.314,2.424,0.463,0.427,0.301,0.418,0.332,0.676,1.947,0.38,1.939,2.928,3.039,0.243,0.878,1.439,0.395,2.582,1.967,0.394,2.194,1.72,1.601,0.331,1.838,0.906,0.263,1.752,0.364,1.794,0.516,1.014,2.445 +NM_001451,0.712,1.102,0.621,0.991,0.695,1.221,1.148,0.843,0.746,0.697,0.949,0.787,0.747,0.601,1.009,1.061,0.701,0.834,0.798,1.042,0.83,0.659,1.589,0.712,1.026,0.712,0.642,0.941,0.824,2.53,0.764,5.726,1.238,2.147,0.775,0.903,1.014,0.78,1.68,1.161,1.041,1.677,0.91,0.894,0.709,1.564,0.82,0.708,0.923,0.735,1.289,1.084,0.779,1.432 +NM_001452,0.528,1.37,0.584,0.782,0.631,1.593,1.213,0.499,0.448,0.628,1.276,0.523,0.596,0.496,1.146,1.171,0.583,0.716,0.635,0.995,0.738,0.531,1.9,0.623,1.151,0.615,0.528,0.85,0.878,2.849,0.573,5.834,1.746,3.122,0.557,0.761,1.008,0.779,2.603,1.064,1.162,2.652,0.806,0.697,0.689,1.325,0.768,0.552,0.717,0.606,1.752,1.283,0.705,1.66 +NM_001453,1.145,0.67,1.809,1.102,0.772,0.814,0.668,0.846,0.993,1.026,0.644,0.782,0.957,0.962,0.657,1.234,2.572,0.789,2.696,0.822,0.756,0.795,0.771,1.174,0.624,0.883,1.185,0.783,0.485,0.74,1.007,2.215,4.455,0.886,1.726,0.712,0.693,0.69,0.917,1.488,1.053,1.528,0.707,1.889,1.526,0.965,1.044,0.931,0.635,1.879,1.067,1.735,1.767,4.34 +NM_001454,0.868,1.573,1.074,0.907,1.062,0.765,0.786,0.972,1.039,0.793,1.046,1.052,0.873,0.885,0.944,1.13,0.992,0.97,0.801,1.188,0.871,0.95,0.819,0.897,0.911,0.993,0.862,0.916,0.626,1.034,1.022,3.012,4.003,0.943,0.88,1.646,0.942,0.86,1.123,0.983,0.868,1.379,0.865,3.954,0.923,1.062,1.106,0.957,1.114,0.95,1.244,1.775,0.891,3.794 +NM_001455,0.898,0.933,1.055,0.799,1.249,0.835,0.776,0.526,1.258,1.075,0.946,0.844,0.797,0.848,0.957,0.973,0.938,1.113,1.138,0.844,0.945,0.84,1.047,0.988,0.781,1.027,0.983,1.063,0.618,1.195,1.221,1.062,0.988,0.994,1.796,0.748,0.95,0.997,1.191,0.937,1.371,1.037,0.899,1.06,1.053,0.981,1.312,0.972,0.9,0.852,1.006,0.879,1.078,1.313 +NM_001456,0.689,0.802,1.64,0.368,0.893,0.505,0.401,0.221,0.959,1.582,1.171,1.084,0.266,0.39,0.828,0.816,0.732,0.8,0.945,0.502,0.752,0.517,2.006,1.384,0.51,0.721,1.978,1.574,0.0828,1.941,0.635,5.389,2.496,2.1,0.0775,1.033,0.446,1.903,1.162,2.791,3.013,2.75,0.551,1.132,1.648,0.571,1.174,0.496,0.215,1.165,1.59,1.835,1.885,1.29 +NM_001460,3.102,0.486,9.377,0.748,3.369,0.43,0.472,3.02,5.645,2.403,0.557,3.026,2.783,1.769,2.463,1.355,7.59,1.263,3.861,0.489,1.894,2.517,0.501,3.165,0.428,1.526,4.038,3.838,0.384,0.507,4.795,0.744,2.345,0.511,6.294,0.425,0.478,4.477,0.455,0.445,7.54,0.726,0.372,0.468,6.346,0.534,2.58,0.948,0.747,3.132,1.064,1.378,4.385,1.052 +NM_001462,1.015,0.897,0.893,0.985,0.97,0.824,1.042,0.962,1.002,0.913,1.173,1.039,0.998,1.173,1.086,1.195,0.969,0.973,0.908,0.906,0.833,1.045,1.006,1.038,0.917,0.912,1.017,0.857,1.193,1.068,0.924,0.956,0.988,0.802,0.913,0.837,0.965,1.048,1.185,1.676,1.018,1.085,0.993,0.948,1.097,1.073,0.877,0.933,0.953,0.946,1.125,1.084,1.065,1.216 +NM_001463,0.807,1.935,0.788,0.908,0.906,1.393,1.23,0.9,0.708,0.79,1.216,0.763,0.806,0.749,0.83,1.548,0.886,0.909,0.863,1.026,0.874,0.746,2.501,0.968,0.944,0.775,0.873,1.015,0.519,2.091,0.811,4.923,1.128,1.512,0.799,0.954,1.272,0.988,1.55,0.948,0.85,2.003,1.144,0.771,0.834,1.064,0.873,0.825,0.937,0.737,1.097,1.297,0.781,1.287 +NM_001464,0.988,0.962,0.962,0.933,0.978,0.898,0.913,1.266,0.94,1.115,0.955,0.943,1.039,0.928,1.09,1.005,1.029,0.971,0.853,0.966,1.068,1.088,0.875,1.017,1.001,1.011,0.963,0.946,1.348,0.967,1.101,0.978,0.833,1.048,0.868,0.901,1.008,1.06,1.071,1.04,0.912,1.015,1.374,0.884,1.04,0.942,1.072,0.979,0.971,0.948,1.133,0.928,1.05,0.919 +NM_001465,0.899,1.101,1.461,0.879,1.097,1.03,0.788,0.8,0.98,1.0,0.98,0.889,0.975,1.005,0.755,0.878,1.022,0.894,1.08,0.927,0.945,1.019,1.073,0.969,1.036,0.984,1.164,1.059,1.03,1.049,0.88,1.059,1.105,0.922,1.007,0.83,0.952,1.118,1.081,1.128,1.04,1.064,0.752,1.012,0.865,1.018,0.982,0.996,0.879,1.07,0.879,1.027,0.988,1.189 +NM_001466,0.877,1.73,0.952,0.767,0.827,1.061,0.962,0.779,0.827,0.749,1.329,0.919,0.853,0.998,0.964,1.025,0.933,0.914,0.849,0.942,0.975,0.798,1.226,0.765,0.838,0.675,1.241,0.737,0.6,1.482,0.868,6.232,3.447,1.149,0.715,0.983,0.88,0.889,2.183,1.644,0.983,1.552,0.817,1.808,0.903,1.015,1.01,0.776,0.733,0.889,1.204,1.44,1.069,2.69 +NM_001467,0.74,1.119,0.687,0.849,0.645,1.003,0.635,0.57,0.71,0.578,1.095,0.579,0.635,0.71,1.136,2.563,0.68,0.872,0.928,1.076,0.567,0.791,1.404,0.676,1.226,0.749,0.865,0.607,1.019,1.1,0.669,1.323,1.953,1.573,0.432,1.324,2.072,0.642,1.37,1.214,0.709,1.646,1.278,0.903,0.703,1.022,1.069,0.692,1.029,0.786,1.063,0.724,0.772,1.088 +NM_001468,0.952,0.892,0.903,0.98,1.055,1.049,0.951,1.0,0.922,0.85,0.988,0.977,1.01,1.16,1.081,1.225,1.03,1.112,1.033,0.938,1.068,1.13,0.993,1.103,1.002,0.934,1.093,0.93,1.169,0.884,0.959,0.965,0.947,0.947,1.145,1.065,0.986,1.179,0.996,0.925,0.935,1.108,0.895,0.977,1.025,0.857,1.114,0.888,0.957,1.048,1.006,1.092,0.853,1.026 +NM_001469,0.681,0.9,1.217,0.64,1.06,0.893,0.539,0.338,1.191,1.421,0.66,0.949,0.552,0.546,0.832,1.476,0.911,0.991,1.138,0.959,0.445,0.717,1.265,1.163,0.508,1.111,1.365,0.925,0.327,0.926,0.979,1.064,1.35,1.174,0.184,0.96,0.835,1.139,1.769,1.0,1.051,0.981,0.569,1.042,1.346,0.77,0.795,0.918,1.091,1.084,1.082,0.81,1.029,1.817 +NM_001472,0.936,0.846,0.945,0.892,0.992,1.055,0.876,1.084,1.152,1.088,0.998,1.073,1.058,0.864,0.995,0.923,0.938,1.055,0.942,0.953,0.997,0.986,0.995,1.032,0.835,0.951,1.068,1.119,0.832,1.003,1.108,1.16,0.955,1.051,1.144,20.26,0.829,1.091,1.345,0.989,1.092,0.864,0.883,0.947,1.029,0.943,1.09,1.203,0.885,1.168,1.07,0.997,1.184,0.841 +NM_001474,0.932,1.018,0.988,0.89,0.876,1.238,1.168,0.99,1.12,0.802,1.126,0.942,0.905,0.794,0.95,0.93,1.106,0.862,1.099,1.19,1.015,1.009,1.039,1.065,0.969,1.055,0.977,1.093,1.227,0.942,1.068,0.936,0.849,0.869,1.08,20.65,1.001,1.045,1.54,0.937,1.044,0.917,0.953,1.158,0.999,1.173,0.97,1.039,0.925,1.128,1.021,1.001,0.891,0.886 +NM_001477,0.895,1.143,0.911,0.904,0.954,1.026,1.101,0.954,1.079,1.173,1.096,1.005,1.078,1.097,0.888,0.896,0.923,1.151,1.027,1.099,1.025,0.95,1.039,0.924,0.89,0.928,1.019,1.015,1.232,0.981,0.919,0.874,0.913,0.931,1.178,27.36,0.901,0.869,1.687,1.083,1.032,0.885,0.807,0.849,0.908,0.81,0.934,1.03,0.903,1.029,0.966,1.124,0.788,0.943 +NM_001478,0.946,0.977,0.887,0.856,0.992,0.901,1.016,0.881,1.084,1.007,0.866,0.94,0.919,0.786,0.976,0.876,1.027,0.986,0.906,0.945,0.834,1.136,1.067,1.035,1.109,0.973,0.929,1.009,0.882,1.151,0.883,1.311,0.912,1.098,1.035,1.047,1.015,1.009,1.132,1.235,0.935,1.034,0.966,0.879,0.993,1.031,1.073,1.019,0.831,1.034,1.054,0.981,0.982,2.05 +NM_001480,0.939,0.95,1.108,1.049,0.988,0.974,0.906,1.153,1.009,1.03,1.077,1.063,0.858,0.993,0.738,1.062,0.94,0.915,1.0,0.982,1.03,1.082,1.024,1.041,1.108,0.961,1.003,1.014,0.994,0.958,1.021,1.02,0.926,1.097,0.821,0.888,0.954,0.971,0.938,1.009,1.031,0.987,0.872,1.061,1.092,0.925,0.902,0.924,0.993,0.937,1.086,1.041,0.817,0.987 +NM_001481,1.01,0.928,1.015,0.911,0.852,1.152,0.875,0.783,1.167,0.803,0.962,0.899,0.915,0.891,1.244,1.238,1.008,0.826,1.032,1.049,0.859,1.054,1.039,1.013,0.717,0.975,0.975,0.954,0.608,1.006,0.992,1.398,2.774,1.24,0.717,0.889,0.879,0.994,1.036,1.08,1.016,0.932,0.987,0.984,0.971,0.792,0.867,0.902,0.77,0.954,0.95,0.694,1.016,1.508 +NM_001482,0.617,1.368,1.122,1.473,1.063,1.975,0.851,0.406,0.982,0.751,2.153,0.572,0.57,0.609,1.215,2.647,0.548,1.002,0.837,1.666,0.531,0.479,3.585,0.621,0.78,0.682,0.468,0.971,0.503,2.254,0.814,0.625,1.56,2.36,0.466,0.668,2.654,0.69,1.141,0.343,0.818,2.022,1.952,1.404,0.835,1.171,1.151,0.541,1.399,0.837,1.502,0.529,0.632,0.95 +NM_001483,0.632,1.3,1.231,0.827,0.673,1.579,0.825,0.825,0.881,0.774,1.421,0.832,0.953,0.742,1.308,2.029,0.657,0.906,1.038,1.001,0.545,0.719,1.461,0.952,1.137,0.666,1.275,0.713,0.599,1.395,0.874,1.53,3.518,2.205,0.376,0.874,1.27,0.945,0.969,0.938,0.908,1.53,1.013,1.075,0.702,1.064,0.889,0.657,0.935,0.655,1.231,0.999,0.914,2.55 +NM_001485,1.06,0.816,0.985,0.926,0.846,0.958,0.923,1.117,1.05,1.166,0.936,1.018,0.961,0.897,0.93,1.0,1.002,0.931,0.977,0.975,1.142,0.979,0.993,1.025,0.947,1.006,0.898,0.958,1.225,1.01,1.064,0.935,0.95,1.126,0.978,1.047,0.932,1.18,1.04,0.907,0.959,1.082,0.939,0.97,1.081,1.013,0.794,0.965,1.155,1.062,0.962,1.075,1.147,1.048 +NM_001486,0.998,1.405,0.777,1.266,1.014,1.019,1.291,0.96,0.957,0.974,1.137,1.019,0.958,0.784,0.896,1.123,1.09,1.002,0.926,0.97,0.917,0.951,0.96,0.887,1.2,0.95,0.95,1.121,1.09,1.131,1.236,0.99,0.836,1.149,1.561,1.014,1.037,1.037,1.402,0.891,1.013,0.989,0.997,0.997,1.073,0.985,0.953,1.149,0.867,0.997,1.09,0.995,0.925,0.967 +NM_001487,0.92,0.781,0.658,0.917,0.77,1.974,0.662,1.238,0.996,0.686,1.702,0.958,1.129,0.642,1.191,2.311,0.408,1.07,1.664,1.171,0.776,1.102,1.056,0.991,0.998,1.244,0.488,0.946,0.759,1.114,1.092,0.842,1.144,2.31,0.798,0.797,1.341,1.002,1.698,0.556,0.925,1.326,0.663,1.258,0.627,0.91,0.749,1.535,0.826,0.571,1.042,0.413,0.753,0.829 +NM_001488,0.894,0.883,1.101,0.984,0.906,0.993,1.037,0.927,0.936,1.172,0.931,1.005,0.868,1.332,0.864,1.064,1.11,0.96,0.916,0.88,0.861,0.83,0.999,1.114,0.857,0.959,1.276,1.041,0.801,1.074,1.113,1.156,1.837,0.911,0.934,0.955,0.869,0.98,1.181,0.964,1.012,0.932,0.991,0.961,1.119,0.963,0.994,1.033,1.018,0.9,1.133,0.983,0.887,1.121 +NM_001490,0.398,4.079,0.435,1.395,0.447,3.254,1.734,0.456,0.533,0.474,1.965,0.436,0.381,0.384,1.379,4.161,0.387,1.652,0.494,3.723,0.402,0.467,2.531,0.472,2.544,0.462,0.456,0.497,1.457,4.275,0.493,0.68,1.092,3.215,0.458,0.685,3.719,0.396,1.655,0.469,0.473,1.144,1.473,0.683,0.397,2.865,0.652,0.436,2.475,0.398,2.734,0.624,0.42,1.126 +NM_001491,0.885,1.071,0.963,0.89,1.054,0.816,1.503,1.008,0.979,1.173,0.809,0.981,1.083,0.961,1.143,1.111,1.053,0.989,1.175,1.021,0.831,0.952,1.001,0.926,1.136,0.94,1.056,0.999,1.183,0.934,0.891,1.135,0.907,0.979,0.941,0.959,0.979,1.066,1.092,0.993,1.162,1.066,1.25,1.043,0.998,1.173,0.91,0.944,0.953,1.299,1.085,1.235,0.867,0.839 +NM_001494,0.528,1.064,1.106,0.484,0.911,1.467,0.571,0.706,1.181,0.893,0.744,1.034,0.761,0.341,1.052,2.14,0.877,1.033,0.834,0.94,0.293,0.899,1.296,1.357,0.491,0.463,1.41,0.844,0.356,1.058,0.973,1.206,2.233,1.197,0.422,0.286,1.251,1.222,1.731,0.605,1.062,1.204,0.543,0.638,1.009,1.009,1.099,0.829,1.528,0.698,1.153,0.598,0.351,1.115 +NM_001495,0.879,1.25,1.026,0.897,1.148,1.156,0.961,0.799,1.079,0.841,1.017,0.939,0.942,0.832,0.843,1.002,0.932,1.011,0.882,0.91,0.755,0.908,1.131,1.077,1.049,0.946,1.172,0.964,0.786,1.616,0.882,1.136,0.877,1.269,0.908,0.715,1.12,0.997,1.137,0.9,1.008,1.178,1.114,0.899,0.902,1.001,0.911,0.922,1.004,0.807,1.086,0.96,0.858,0.974 +NM_001496,0.949,1.035,0.96,0.831,1.016,0.951,1.155,1.068,0.938,1.0,0.981,1.061,1.071,0.895,1.1,0.825,1.009,0.944,0.97,1.153,0.923,0.959,0.953,1.134,0.87,1.331,0.975,1.078,0.898,1.21,0.821,0.918,0.827,1.1,1.047,0.988,1.122,0.993,1.018,1.007,0.941,1.105,1.04,1.048,1.003,1.057,0.998,1.049,0.982,0.985,0.911,0.983,0.914,1.013 +NM_001498,0.692,1.368,0.999,0.905,0.746,1.108,1.084,0.719,1.304,1.082,1.327,0.864,0.703,0.972,1.0,1.344,0.551,1.042,1.58,0.969,0.95,0.724,0.762,1.228,0.89,0.826,1.246,0.845,0.633,1.921,0.962,1.144,1.567,1.915,0.508,1.191,1.428,0.868,1.72,0.517,1.001,0.892,0.908,1.523,0.856,1.042,1.188,0.695,0.807,0.639,0.752,0.846,1.075,1.655 +NM_001499,0.971,1.122,0.947,1.061,0.916,1.076,0.777,1.049,1.185,0.794,0.958,0.924,0.882,0.863,0.925,1.261,1.007,1.059,1.107,0.887,0.904,1.061,1.107,0.939,0.951,1.038,1.008,1.091,1.069,0.985,0.751,0.99,1.25,1.231,1.247,1.02,1.029,0.915,1.037,1.005,0.979,0.845,0.976,1.081,1.079,0.947,0.975,1.046,1.047,0.953,1.014,0.887,1.092,1.102 +NM_001500,0.644,1.745,0.258,1.109,0.524,2.182,0.893,0.363,0.766,0.195,1.798,0.348,0.522,0.251,0.903,2.177,0.645,1.266,0.352,2.043,0.164,0.437,1.956,0.365,0.839,0.698,0.205,0.62,0.728,1.93,0.669,0.275,1.273,1.885,0.754,0.974,2.189,0.426,2.478,0.396,0.743,2.07,1.25,1.371,0.505,1.675,0.975,0.707,1.932,0.327,2.193,0.518,0.323,0.664 +NM_001502,1.018,1.468,0.851,2.506,0.905,1.659,0.867,0.708,1.052,0.854,1.256,0.868,0.876,0.904,0.912,1.96,0.933,0.931,0.759,1.744,0.839,0.947,3.032,0.804,1.845,0.764,0.755,0.944,0.817,1.246,0.859,0.832,0.998,1.334,0.823,1.026,1.873,0.749,0.989,0.923,0.801,6.913,2.681,0.881,0.906,0.989,1.029,0.906,1.39,0.778,5.327,0.896,1.025,0.84 +NM_001503,1.036,0.891,0.953,1.001,0.999,0.922,0.96,1.075,1.069,1.192,1.003,1.111,0.914,1.114,1.083,0.946,0.914,1.036,1.009,1.064,1.088,1.107,1.026,0.998,0.986,1.055,0.956,1.074,0.811,1.044,0.948,0.94,1.018,1.006,0.974,1.001,0.989,0.976,0.927,1.015,0.844,0.946,0.781,0.917,1.107,0.974,1.044,0.993,1.022,1.062,0.985,0.99,0.99,1.032 +NM_001504,0.877,0.907,1.121,0.928,1.054,0.915,0.97,0.94,0.928,0.916,1.041,1.062,0.847,1.275,1.221,0.925,0.919,0.971,0.957,1.084,0.902,0.927,1.118,0.859,0.928,0.95,1.076,0.938,0.732,1.208,1.011,0.949,1.049,1.003,0.999,1.043,1.016,0.839,1.045,0.929,0.765,0.994,0.953,1.038,0.949,1.061,1.101,0.88,1.097,1.047,1.111,0.968,1.006,1.446 +NM_001505,0.789,2.366,1.037,1.067,0.832,6.691,1.64,0.88,0.757,0.93,3.039,0.865,0.829,0.907,2.189,0.969,0.759,1.247,0.978,3.87,1.012,0.755,0.977,0.925,4.779,0.712,0.923,0.935,2.076,4.617,0.879,1.0,0.828,3.383,0.825,0.927,2.758,0.958,2.243,0.811,1.117,4.808,1.109,1.159,0.876,1.825,0.886,0.846,0.916,0.818,3.543,0.738,0.83,0.791 +NM_001506,1.094,1.002,1.032,1.139,0.991,1.019,0.924,0.967,0.967,1.073,0.966,0.888,0.93,1.025,0.759,0.917,1.006,0.969,0.979,0.979,1.029,1.026,1.062,0.942,0.969,1.02,0.925,1.196,0.934,1.081,1.033,0.977,0.957,1.115,1.092,1.018,0.995,1.095,0.92,0.902,1.039,1.008,0.889,1.027,1.101,1.11,0.96,1.091,0.942,1.048,0.994,1.143,1.192,0.985 +NM_001507,0.952,1.144,0.979,0.87,1.088,1.138,1.025,1.048,0.972,0.873,1.058,0.982,0.995,1.029,0.873,1.078,0.907,1.063,1.054,1.083,1.155,0.774,0.908,1.086,1.023,0.982,0.867,1.034,1.14,0.822,0.936,1.122,0.859,0.997,1.015,0.924,0.949,1.102,0.909,0.925,0.9,1.061,1.021,0.932,1.134,0.985,1.054,0.869,1.041,1.009,0.902,0.934,1.06,0.983 +NM_001508,0.897,0.879,0.95,1.156,0.885,1.038,1.064,0.884,0.89,0.974,1.144,1.053,0.879,1.054,1.112,1.048,0.88,0.945,1.064,1.052,0.906,0.893,1.02,0.917,0.979,0.981,0.951,0.907,1.435,1.132,0.921,1.178,1.015,1.008,0.917,0.892,1.17,0.909,1.098,1.062,0.867,1.118,1.025,1.143,0.9,0.974,1.006,0.947,0.951,0.852,1.05,0.997,0.865,1.139 +NM_001509,1.088,0.858,0.917,0.99,0.92,0.871,1.077,0.979,1.034,1.016,1.022,1.056,1.035,1.066,1.037,1.001,0.964,0.874,0.942,1.054,1.04,0.998,0.996,1.025,1.08,0.994,1.084,1.059,0.963,0.974,0.933,1.189,1.054,1.007,1.126,0.978,1.081,1.132,0.898,0.969,0.986,1.028,1.229,1.128,0.949,0.945,0.986,1.088,0.836,1.041,0.978,0.992,0.955,0.926 +NM_001510,1.056,0.926,0.876,0.931,1.042,1.142,1.02,1.016,0.923,1.102,0.834,1.047,1.027,1.133,0.863,1.074,0.932,1.004,0.967,1.0,0.86,0.976,0.911,1.028,0.927,1.075,1.13,1.071,0.796,0.961,1.144,0.876,1.045,0.972,1.075,0.885,1.001,0.928,1.043,0.95,0.874,1.042,0.811,0.797,0.951,0.971,1.047,0.987,0.794,1.039,1.073,0.87,1.013,0.941 +NM_001512,0.904,1.113,2.175,0.795,1.825,1.326,0.524,1.202,1.762,2.585,0.907,1.96,1.1,1.084,1.447,1.745,1.677,1.515,2.551,0.796,0.753,1.554,0.66,1.882,0.857,0.95,1.969,1.368,0.51,1.601,2.029,1.001,0.79,0.961,0.372,0.393,0.737,1.75,0.682,0.592,1.563,0.819,0.532,0.584,2.082,0.636,0.971,1.52,0.898,1.618,0.8,0.393,1.729,0.589 +NM_001513,0.964,0.913,0.978,0.947,1.031,1.132,1.278,1.097,1.12,1.004,1.058,0.999,1.058,1.099,0.983,0.907,1.005,1.102,0.798,0.988,0.949,0.961,0.936,0.989,0.94,1.021,1.189,0.948,1.009,0.933,0.97,0.888,0.872,0.992,0.893,1.09,1.117,1.011,1.047,1.187,0.978,1.036,1.155,0.892,0.987,0.953,1.136,1.044,1.001,0.956,1.096,0.955,0.924,1.048 +NM_001514,0.676,0.832,0.933,0.934,1.041,0.979,0.907,0.854,1.455,1.019,0.905,0.702,0.727,0.896,1.131,1.342,0.703,0.867,0.963,1.181,0.706,0.628,1.134,0.915,0.663,0.793,0.98,1.102,0.737,1.082,1.276,0.887,2.013,1.137,1.741,1.065,0.954,0.825,1.204,0.654,1.193,1.209,0.718,0.977,0.908,0.92,0.944,0.746,1.158,0.808,1.074,0.819,0.945,1.878 +NM_001515,0.687,0.931,0.843,0.859,0.833,1.098,0.552,0.645,1.051,0.882,1.181,0.829,0.663,0.902,1.135,1.309,0.801,0.829,1.13,1.163,0.74,0.66,1.277,0.904,0.781,0.796,1.044,0.799,0.513,1.195,0.735,1.445,1.887,0.961,0.515,0.895,1.467,0.713,1.323,0.917,1.033,1.061,0.82,1.172,0.991,1.116,1.091,0.666,1.254,0.789,0.889,0.806,1.023,2.062 +NM_001516,0.99,0.99,1.069,0.963,1.008,1.068,0.912,1.053,1.224,1.176,1.006,0.99,0.841,0.794,0.967,1.03,0.916,0.871,1.078,0.99,0.82,0.793,1.093,1.235,0.748,0.887,1.225,1.018,0.758,0.814,1.039,0.967,1.676,0.965,0.704,1.062,0.919,0.917,1.191,0.826,1.162,0.907,0.992,1.01,1.039,1.027,1.1,0.909,1.002,0.88,0.992,1.146,0.935,1.519 +NM_001517,0.928,1.185,0.999,0.808,0.802,1.126,0.71,0.575,0.887,1.03,1.014,0.96,0.791,0.719,0.726,1.047,0.992,1.015,0.891,0.823,0.732,1.138,1.103,1.093,0.889,1.192,1.178,0.771,0.528,1.095,0.835,1.708,1.411,0.962,0.506,0.85,0.916,1.047,1.465,1.383,0.994,0.933,0.771,1.747,0.997,0.769,0.923,1.132,0.85,1.03,0.943,0.848,0.946,1.127 +NM_001519,1.013,1.011,0.934,0.984,1.039,1.085,1.068,1.169,1.09,1.12,0.955,1.032,0.915,0.986,1.012,1.115,1.045,1.055,0.953,0.873,0.971,0.942,0.902,0.948,1.034,0.916,1.073,0.817,1.055,1.009,1.062,0.97,1.04,0.835,1.002,0.897,1.033,0.979,1.113,1.079,0.97,0.942,0.979,0.996,0.886,1.024,1.125,0.895,1.1,1.063,1.026,0.948,0.972,0.944 +NM_001520,1.768,0.813,1.42,0.918,1.133,0.756,0.715,0.722,1.333,1.15,0.677,0.955,0.86,1.277,0.895,0.86,1.291,1.135,1.793,0.685,1.712,2.098,0.678,1.156,0.922,2.343,1.285,0.814,0.743,0.681,1.036,1.046,1.369,0.86,1.256,0.689,0.798,1.482,1.581,0.876,1.099,0.753,0.627,1.189,1.189,0.724,0.988,2.29,0.734,1.507,0.799,0.773,1.371,2.53 +NM_001521,0.777,0.732,1.294,0.612,0.98,1.092,0.485,0.58,1.192,0.979,1.051,0.836,0.582,0.95,1.152,1.659,0.862,0.824,1.655,0.766,0.714,1.12,1.386,1.347,0.524,0.795,1.38,0.777,0.435,0.981,1.127,1.049,2.548,1.35,0.281,0.899,1.011,0.952,0.985,0.966,1.258,1.066,0.609,1.3,1.092,0.989,0.883,0.839,0.969,0.88,1.055,0.768,1.207,1.942 +NM_001522,0.912,1.094,1.069,0.862,0.906,1.084,1.198,0.885,1.112,1.044,0.889,0.95,1.06,0.943,0.905,1.19,0.968,1.027,1.06,0.974,1.056,0.938,0.844,0.898,1.142,0.975,1.017,0.933,0.88,1.003,1.052,1.081,1.056,0.884,0.941,0.984,1.13,1.195,0.987,0.987,1.001,0.936,0.875,1.111,1.048,1.009,0.848,1.057,0.992,0.907,0.96,1.113,1.105,0.891 +NM_001524,0.926,0.994,0.995,1.0,0.995,0.948,0.893,1.001,1.043,0.935,1.007,1.053,1.231,0.829,0.898,1.058,0.935,1.156,0.981,0.968,1.036,1.017,0.95,1.1,0.935,0.834,0.883,1.073,0.998,1.037,0.969,1.307,0.968,1.117,1.047,0.93,0.965,1.082,1.236,0.92,1.114,0.969,1.102,1.157,0.998,0.999,1.072,1.115,1.028,0.965,0.922,1.14,0.813,0.983 +NM_001526,0.97,1.076,1.238,0.862,1.081,1.068,0.997,1.06,0.93,1.015,0.927,1.227,0.926,0.957,1.112,0.943,0.941,1.107,0.919,0.981,0.946,0.871,1.053,0.912,1.019,1.06,0.965,0.98,0.728,0.959,1.048,0.977,0.919,1.052,0.98,0.958,1.053,1.066,1.077,0.888,0.953,0.908,0.841,1.02,0.992,1.037,1.053,0.926,1.097,1.018,1.023,1.011,0.994,1.026 +NM_001527,0.521,1.169,1.365,0.549,0.925,1.569,0.732,0.672,1.476,1.199,0.847,1.104,0.712,0.574,1.0,2.136,0.774,0.875,1.076,0.986,0.504,0.81,1.309,1.479,0.55,0.414,1.79,0.832,0.416,0.99,1.215,1.199,4.28,1.417,0.258,0.507,0.907,0.76,1.655,1.255,1.115,0.971,0.73,1.0,1.245,0.981,1.115,0.529,1.249,0.799,1.11,0.683,0.686,3.364 +NM_001528,1.021,0.866,1.109,1.216,0.993,1.113,0.829,0.998,1.034,0.834,1.173,0.928,1.001,0.947,0.756,1.077,1.002,0.871,1.005,1.001,1.119,0.966,0.997,0.955,1.053,0.975,0.859,0.949,1.181,1.003,0.943,0.989,1.0,0.995,1.124,0.915,1.053,0.928,0.941,1.025,0.968,1.03,1.182,0.997,0.943,0.989,0.918,1.02,0.985,1.023,0.977,1.177,1.076,0.96 +NM_001530,0.972,0.848,1.272,0.836,1.258,0.712,0.73,0.809,1.136,1.192,0.712,0.717,0.847,0.93,1.076,1.461,0.995,0.896,1.046,0.887,0.791,0.726,1.013,1.072,0.801,0.832,1.275,1.262,0.741,0.965,1.106,1.163,1.612,0.986,0.699,0.775,0.814,0.909,1.147,1.223,1.196,0.872,0.896,1.065,1.05,1.168,1.038,0.796,1.733,0.919,0.997,1.109,1.178,1.325 +NM_001531,0.948,0.847,1.436,0.784,0.968,0.962,0.751,0.743,1.04,1.015,1.358,0.755,0.711,0.866,0.851,1.044,0.962,0.958,1.106,0.96,0.886,0.769,1.131,1.049,0.765,1.18,1.043,1.001,0.541,1.215,0.999,1.572,0.82,1.256,0.496,0.944,0.802,0.806,0.994,0.942,1.33,0.954,0.707,1.38,1.044,0.947,0.955,0.742,0.635,1.065,0.92,0.771,1.257,1.104 +NM_001533,0.79,0.971,1.092,0.823,0.677,1.503,0.655,0.48,1.158,0.967,1.134,0.806,0.62,0.595,0.816,1.363,0.797,0.926,1.22,0.716,0.799,0.682,1.177,1.029,0.701,0.85,1.519,0.712,0.3,1.139,0.815,1.133,1.832,1.071,0.366,0.906,0.892,0.792,1.725,0.944,0.788,1.031,0.777,1.863,1.013,0.6,1.071,0.552,1.183,0.992,1.032,0.855,1.056,1.38 +NM_001534,2.0,1.8399999999999999,1.8649999999999998,1.9689999999999999,2.136,2.025,1.807,2.107,1.94,2.151,2.004,1.9220000000000002,2.1109999999999998,1.876,2.193,2.098,1.851,1.951,2.146,2.037,1.9369999999999998,1.845,1.9969999999999999,2.061,1.744,1.9220000000000002,2.1109999999999998,1.9649999999999999,2.106,2.253,2.153,2.088,2.044,2.086,2.114,1.9829999999999999,2.004,2.043,2.1799999999999997,1.9129999999999998,2.023,2.093,1.715,1.967,1.928,1.904,1.858,1.92,1.971,1.901,1.9209999999999998,1.877,1.962,1.978 +NM_001537,0.736,0.759,2.147,0.671,1.322,0.687,0.435,0.599,1.481,1.431,0.763,0.571,0.815,0.696,0.791,1.482,1.585,1.308,1.749,0.867,0.692,1.144,0.811,1.235,0.362,1.366,1.73,1.297,0.42,0.737,1.236,1.025,2.097,0.917,0.508,0.7,0.804,1.581,1.25,0.44,1.882,0.75,0.507,1.302,1.371,0.706,1.417,1.581,1.077,1.195,0.851,0.876,1.232,1.198 +NM_001538,0.837,1.011,1.065,1.0,0.808,1.054,1.088,0.823,1.206,1.093,1.098,1.008,0.91,1.107,1.121,0.946,1.023,0.912,1.036,1.329,0.976,1.0,1.028,1.114,0.996,0.943,0.967,0.867,0.842,0.946,0.996,1.623,1.256,0.986,0.826,1.165,0.959,0.959,1.031,1.218,0.895,1.016,0.922,0.902,0.995,0.938,0.954,0.84,0.991,0.834,0.944,0.837,0.984,1.457 +NM_001541,1.014,0.986,0.88,0.923,1.003,1.126,1.05,1.123,1.084,0.952,1.041,1.126,0.847,0.871,0.925,1.187,0.891,1.004,0.949,0.899,1.175,1.019,1.126,1.103,0.98,0.993,0.941,1.064,1.194,1.306,0.819,1.912,1.218,1.431,0.973,0.865,0.955,0.917,1.04,1.175,0.824,1.136,0.953,1.019,1.094,0.932,0.927,1.003,0.906,0.899,0.977,1.111,0.774,0.991 +NM_001542,1.055,0.985,1.088,0.936,1.172,1.1,0.964,1.097,1.179,1.007,1.014,0.95,1.06,0.845,1.004,1.189,1.037,0.905,1.3,0.944,0.999,0.976,1.036,1.17,0.972,0.914,1.275,0.886,0.796,0.966,1.004,0.9,0.968,0.929,0.768,1.106,0.891,1.062,0.937,1.039,0.965,0.916,1.029,1.127,1.006,1.014,0.915,0.957,0.744,1.054,1.059,1.032,1.014,0.869 +NM_001543,1.072,0.987,0.911,1.076,0.86,1.021,0.914,0.952,0.951,0.957,0.983,0.967,1.031,0.719,1.002,0.827,1.003,1.017,0.928,0.931,0.767,1.047,0.97,0.968,0.947,1.022,1.128,1.194,1.323,0.991,0.888,0.993,0.872,1.002,1.009,0.98,1.024,1.064,1.115,0.983,0.836,1.089,0.937,1.016,1.102,1.018,0.968,0.997,0.923,0.945,0.934,1.0,1.007,0.901 +NM_001544,1.019,1.061,0.924,1.014,0.976,0.93,0.956,0.807,1.05,0.972,1.027,0.897,0.941,0.856,1.113,0.993,1.076,0.967,0.931,0.993,0.821,0.905,0.988,0.893,1.115,1.036,0.874,1.029,0.806,0.896,1.0,1.096,1.062,1.012,1.027,1.043,0.991,0.993,1.273,1.147,0.97,1.022,0.891,1.046,0.991,0.999,0.997,1.067,0.976,1.04,1.13,0.992,0.908,1.097 +NM_001545,0.554,0.899,1.193,0.616,0.85,1.124,0.646,0.649,0.967,1.137,0.92,1.31,0.687,0.684,0.836,1.49,0.934,1.018,1.531,0.874,0.745,1.032,1.185,1.391,0.595,0.788,1.291,0.767,0.497,0.976,0.904,1.194,3.331,1.087,0.262,1.187,0.956,0.951,1.438,0.581,1.18,0.904,0.828,1.754,0.905,0.883,1.1,0.664,1.092,0.723,0.887,0.99,0.885,1.798 +NM_001546,1.184,0.992,1.183,0.976,1.091,0.919,0.923,1.45,1.208,1.257,0.893,0.958,1.13,1.292,1.232,0.904,0.958,1.212,1.0,1.071,0.753,1.203,0.829,1.406,0.908,1.034,0.93,1.85,0.783,1.0,1.362,1.034,1.038,1.349,0.851,0.861,1.018,1.442,1.039,0.862,1.427,1.352,0.974,0.94,1.214,0.928,0.99,1.501,0.848,0.938,0.968,0.768,0.886,1.086 +NM_001547,0.921,0.963,1.249,0.719,0.552,2.009,2.018,0.485,0.665,0.431,1.276,0.53,0.515,0.53,1.313,1.089,0.763,1.109,0.552,1.404,0.53,0.63,1.076,0.604,0.659,0.66,1.005,0.674,0.681,1.478,0.62,1.16,3.29,1.314,0.389,1.04,1.404,0.614,1.98,1.637,0.728,1.279,0.454,1.986,0.587,0.762,0.882,0.544,0.648,0.561,1.423,2.434,0.609,5.489 +NM_001548,0.979,1.175,1.707,0.817,0.752,1.695,3.374,0.869,0.76,0.746,1.668,0.636,0.805,0.778,1.149,0.995,1.622,1.249,0.829,0.785,0.798,0.779,1.151,0.728,0.816,0.712,1.056,0.75,0.658,1.005,0.788,1.28,11.93,2.426,0.728,0.928,1.833,0.728,2.033,1.073,0.785,1.213,0.64,3.368,0.731,0.817,1.145,0.672,0.684,0.889,1.027,2.087,0.877,12.99 +NM_001549,1.032,1.11,1.281,0.822,0.614,1.514,1.891,0.706,0.803,0.664,1.194,0.63,0.65,0.584,0.973,0.86,1.51,1.331,0.57,0.806,0.733,0.582,1.217,0.662,1.007,0.65,0.973,0.652,0.704,1.122,0.63,1.157,2.693,1.323,0.585,0.897,1.194,0.67,2.419,1.323,0.807,1.124,0.645,2.785,0.781,0.84,0.948,0.669,1.011,0.915,0.983,2.274,0.991,5.056 +NM_001550,1.117,0.63,1.025,1.003,1.428,1.098,0.68,1.144,1.708,0.988,0.773,0.915,0.772,0.872,1.994,0.892,0.987,0.826,0.869,1.24,0.831,0.811,1.07,1.309,0.656,0.793,1.05,1.362,0.741,1.073,1.652,1.391,2.231,1.205,3.25,0.896,0.926,1.187,1.068,1.541,1.482,0.854,0.962,1.208,0.789,0.994,1.374,0.973,0.782,0.914,0.768,1.079,0.898,1.981 +NM_001552,0.242,0.739,0.463,0.723,0.259,1.85,0.934,0.268,0.352,0.354,1.941,0.331,0.35,0.238,0.973,2.649,0.265,1.091,0.416,0.842,0.398,0.231,1.569,0.469,1.063,0.266,0.595,0.314,0.878,2.127,0.314,3.576,2.319,3.69,0.0827,0.858,1.2,0.413,2.455,1.84,0.625,2.235,0.458,1.692,0.389,0.699,0.921,0.244,0.339,0.315,1.301,1.246,0.626,1.559 +NM_001553,0.336,1.37,0.435,0.703,0.385,0.872,1.017,0.414,0.339,0.466,1.575,0.302,0.362,0.246,0.55,1.306,0.297,0.574,0.36,0.751,0.633,0.374,2.564,0.455,1.498,0.446,0.529,0.582,0.41,2.087,0.307,12.2,3.579,2.753,0.31,2.413,0.742,0.648,3.06,4.196,0.68,2.39,0.567,1.513,0.409,1.112,0.996,0.435,0.71,0.504,1.198,4.694,0.682,3.183 +NM_001554,1.052,1.11,1.065,1.037,1.025,1.012,0.935,0.942,0.862,0.997,1.017,0.978,1.009,1.002,0.898,1.063,0.997,1.025,0.939,0.943,1.064,0.931,1.03,0.985,0.977,0.937,0.903,1.025,1.044,1.16,1.035,1.265,0.959,1.0,1.041,0.93,1.045,1.018,0.968,1.256,1.0,1.053,0.836,1.024,0.979,1.076,1.005,0.977,0.973,1.115,0.939,0.996,1.005,0.98 +NM_001555,1.03,1.141,0.935,0.976,1.099,1.042,0.914,1.031,1.004,0.944,0.926,1.044,0.989,1.24,1.461,1.088,0.943,0.94,1.002,0.914,0.825,0.977,1.215,1.066,1.121,1.052,0.873,1.104,0.901,0.979,0.964,0.94,1.392,0.92,1.03,1.044,1.072,0.992,1.111,1.029,1.066,1.096,0.995,1.015,1.165,0.958,0.955,1.063,1.034,0.987,0.811,0.998,1.027,0.946 +NM_001556,0.921,0.953,1.614,0.938,1.027,0.98,0.715,0.781,1.313,1.283,0.82,1.018,0.887,0.868,0.915,0.733,1.533,0.853,0.983,1.057,0.693,0.936,0.817,1.153,0.833,0.984,1.58,1.04,0.655,1.072,0.991,1.443,1.444,0.991,0.714,0.76,0.788,0.997,1.051,0.901,1.533,0.886,0.81,0.879,1.311,0.959,1.157,0.837,1.002,1.143,0.961,0.91,1.137,1.348 +NM_001557,2.248,0.408,4.092,1.163,3.635,0.414,0.358,2.092,3.888,2.733,0.352,2.63,1.66,1.547,1.758,0.909,3.008,1.918,2.126,0.42,0.819,4.087,0.37,3.812,0.371,1.398,2.953,3.63,0.33,0.371,3.651,0.612,1.177,0.372,0.612,0.358,0.354,3.273,2.869,6.52,3.911,1.002,0.392,0.416,4.132,0.372,2.099,3.199,0.547,2.821,0.825,1.849,0.892,0.708 +NM_001558,0.986,0.963,1.068,1.027,0.815,1.088,1.153,1.04,1.041,0.857,0.942,0.96,0.979,1.004,0.986,0.853,0.928,0.843,1.084,1.031,0.916,0.915,0.882,1.071,0.989,0.826,1.026,0.911,0.939,1.073,0.874,1.186,0.925,1.116,0.959,0.839,0.983,0.88,1.122,1.116,0.983,0.933,1.029,0.895,1.032,0.923,0.905,1.049,0.993,0.856,0.891,1.061,1.202,1.288 +NM_001560,0.816,0.688,1.926,0.6,0.94,0.997,0.515,0.603,1.402,0.798,1.042,0.682,0.714,0.837,1.075,1.524,1.053,0.711,1.648,1.127,0.433,0.814,1.257,1.004,0.513,1.036,1.142,1.15,0.311,1.072,1.259,1.708,1.334,1.466,0.486,0.576,0.959,0.901,1.215,0.81,1.241,1.333,0.668,0.966,1.141,1.08,0.905,0.878,0.887,1.198,1.016,0.893,1.003,0.864 +NM_001561,1.021,0.939,1.082,1.022,0.918,0.938,0.977,1.166,1.022,0.894,0.905,1.074,1.166,0.987,1.081,0.823,0.944,0.924,0.895,0.811,0.893,1.001,0.883,1.007,0.96,1.084,1.094,1.053,1.27,1.157,1.058,1.045,1.1,0.915,1.174,1.03,1.006,1.007,1.002,0.931,0.914,1.129,0.799,0.836,1.065,0.867,0.881,0.914,0.963,0.955,1.052,0.94,0.918,1.105 +NM_001563,1.02,0.872,1.024,1.207,0.873,1.093,0.95,1.016,0.987,1.041,0.99,1.031,1.064,0.871,1.036,0.895,1.059,1.092,1.005,0.996,1.052,1.139,0.996,1.03,0.918,1.078,1.042,0.95,1.054,0.903,1.006,0.964,1.047,1.007,1.202,0.929,1.03,0.882,0.999,0.942,1.012,1.023,0.782,0.944,0.988,0.95,0.858,0.992,1.071,1.041,1.019,0.943,1.059,0.886 +NM_001564,0.746,1.007,1.416,0.965,1.1,1.032,0.679,0.707,1.444,1.014,0.801,0.731,0.837,0.723,0.91,1.103,0.929,0.825,0.949,1.297,0.729,0.966,0.7,1.12,0.876,0.845,1.236,1.247,0.906,1.148,0.994,1.254,1.442,1.232,1.293,0.641,1.129,1.005,1.363,0.814,1.659,1.072,0.878,1.105,0.917,1.056,1.103,0.84,0.812,0.915,1.023,0.623,1.347,1.392 +NM_001565,1.409,1.127,1.929,0.653,0.674,3.5,1.108,0.528,1.158,0.873,1.045,0.788,0.995,1.093,6.396,0.803,0.759,0.766,0.578,0.777,0.825,0.549,1.126,1.115,0.928,0.806,0.92,0.872,0.609,0.756,0.71,1.019,2.957,0.922,0.788,0.67,2.562,0.611,0.954,0.827,1.139,1.005,0.913,1.206,1.22,0.782,0.772,0.95,0.963,1.24,1.318,2.745,7.561,8.122 +NM_001567,0.719,1.402,0.761,0.93,0.819,1.046,1.026,0.647,1.088,0.738,1.048,0.573,0.76,0.793,0.884,1.194,0.851,1.067,0.703,1.003,0.603,0.862,1.448,0.897,0.92,0.913,0.847,0.712,0.853,1.739,0.786,3.571,1.335,1.152,1.059,1.299,0.967,0.767,1.473,1.328,0.816,1.084,0.997,1.483,0.779,0.888,0.738,0.761,0.966,0.695,1.062,0.954,0.726,1.303 +NM_001568,0.807,1.045,1.344,0.695,0.94,1.027,0.456,0.596,1.372,1.019,1.111,0.861,0.936,0.756,0.994,1.599,0.634,0.759,1.529,0.855,0.58,0.953,1.254,1.061,0.569,0.91,1.237,1.103,0.24,1.006,1.125,0.941,3.015,1.338,0.473,0.935,0.861,1.171,1.129,0.871,1.128,1.427,0.546,1.08,0.955,1.136,0.771,0.703,1.131,0.748,0.881,0.654,1.093,1.207 +NM_001569,0.448,1.119,0.706,0.632,0.518,1.671,0.64,0.291,0.576,0.628,1.661,0.574,0.536,0.283,0.643,1.874,0.522,0.636,1.055,1.04,0.598,0.497,1.692,0.682,0.65,0.583,0.909,0.532,0.659,1.595,0.487,1.959,4.075,1.761,0.203,1.142,1.006,0.579,2.501,0.925,0.674,1.292,0.597,4.159,1.088,0.914,0.994,0.644,1.317,1.144,0.991,1.148,0.948,2.184 +NM_001570,1.016,0.874,1.103,0.962,1.036,1.15,1.007,1.067,0.938,0.956,1.05,1.072,1.164,1.084,0.788,0.954,1.053,0.999,1.001,0.905,1.191,0.959,0.985,0.842,0.977,1.037,1.36,1.019,1.204,1.045,0.986,1.051,0.94,0.85,1.162,1.04,0.942,0.969,1.191,1.051,0.951,1.072,1.17,0.965,1.033,0.942,1.025,0.926,0.986,0.972,0.954,0.943,1.039,1.051 +NM_001571,1.002,0.801,0.858,1.107,0.659,1.147,0.744,0.747,0.827,0.888,1.101,0.826,0.847,0.852,0.822,1.108,0.95,0.964,1.176,0.777,1.005,1.092,1.131,0.918,0.858,0.984,0.991,0.652,0.823,1.015,0.69,1.133,2.218,1.014,0.542,1.184,1.107,0.782,2.276,1.17,0.785,1.014,0.867,2.736,0.796,0.762,0.988,0.991,0.904,0.845,0.865,1.025,1.086,1.316 +NM_001584,1.147,0.92,1.277,1.161,1.114,0.814,1.054,0.972,0.933,1.104,0.916,1.022,0.956,1.123,0.892,1.06,0.936,1.346,1.139,1.038,1.028,1.059,0.82,1.174,0.925,1.305,1.078,1.068,0.732,1.001,1.063,1.066,1.241,0.956,0.929,0.961,0.937,0.968,1.095,0.782,0.961,1.156,0.999,0.883,0.898,0.948,1.043,1.368,0.862,0.984,1.036,0.98,1.109,1.337 +NM_001586,0.959,1.043,1.021,1.005,1.006,1.049,1.201,1.212,1.02,1.058,0.989,1.041,1.088,0.951,0.969,1.111,1.074,0.882,1.038,0.968,1.063,1.057,0.977,0.932,0.93,0.919,0.978,1.145,1.001,1.017,0.979,1.046,0.91,1.068,1.156,1.082,0.992,1.078,0.966,1.069,0.955,1.007,0.992,0.889,1.061,0.867,0.898,1.032,1.132,0.995,0.963,1.065,1.01,1.154 +NM_001587,0.719,1.352,1.015,0.766,0.74,1.459,0.836,0.516,0.906,0.757,1.347,0.583,0.54,0.62,0.95,1.459,0.94,0.899,1.138,1.204,0.608,0.861,1.603,0.883,0.771,0.789,1.179,0.697,0.945,1.587,0.812,1.285,1.487,1.634,0.518,0.707,1.353,0.903,1.292,0.527,0.949,1.426,0.85,1.239,0.837,1.113,0.925,0.783,1.01,0.83,1.135,0.831,0.83,1.355 +NM_001605,0.446,1.11,0.774,0.557,0.469,1.407,0.765,0.186,0.797,0.822,0.973,0.53,0.206,0.319,0.621,0.955,0.503,0.754,0.602,1.041,0.42,0.485,1.218,1.049,0.881,0.432,0.845,0.489,0.42,1.482,0.566,1.833,3.117,1.498,0.133,1.857,1.275,0.591,1.723,0.967,0.839,1.48,0.685,2.483,0.712,1.543,1.335,0.386,1.25,0.567,1.29,1.004,0.659,1.905 +NM_001606,0.969,1.038,0.919,0.94,0.9,1.003,1.098,0.919,0.913,0.742,1.044,0.956,0.956,1.007,1.059,0.638,0.867,1.146,1.008,1.008,0.978,0.862,1.112,0.817,1.238,1.067,0.952,0.925,1.082,0.993,0.847,1.309,1.0,1.139,0.958,0.891,1.006,1.035,1.101,1.089,1.021,1.088,0.93,1.356,0.85,0.917,0.879,1.027,0.85,0.955,1.01,0.958,1.029,0.901 +NM_001608,1.083,1.057,0.968,0.947,0.981,0.981,1.165,0.908,1.099,0.928,1.0,0.928,1.064,0.897,0.949,0.999,0.938,1.15,0.918,1.0,0.971,1.007,1.116,1.105,1.1,0.879,1.011,0.935,0.775,0.924,1.066,0.919,1.102,1.117,0.967,1.073,1.137,0.948,0.902,1.022,0.899,1.089,0.969,0.77,1.081,0.896,1.081,0.92,1.042,0.956,1.023,1.023,1.192,0.894 +NM_001609,0.861,1.328,0.932,0.911,0.968,1.381,0.988,0.976,1.002,0.778,1.015,0.887,0.851,0.834,1.112,1.793,0.889,0.842,0.876,1.612,0.938,1.041,1.235,0.843,1.2,0.856,1.099,0.918,0.859,1.039,0.949,1.283,1.153,1.066,0.923,0.941,0.997,1.059,0.993,0.942,1.057,1.385,1.002,1.017,0.895,0.953,0.989,0.939,1.01,0.841,0.925,0.833,0.76,1.381 +NM_001611,0.736,1.232,1.697,0.534,1.398,0.623,0.915,0.773,1.117,1.165,0.464,1.221,0.617,0.485,0.76,0.518,0.917,1.095,1.173,0.441,0.537,0.787,1.209,0.815,0.556,0.932,1.448,1.231,0.212,1.523,0.824,1.391,0.415,1.085,0.351,0.647,0.707,1.212,1.132,2.823,1.091,1.001,0.347,0.823,1.591,0.794,1.349,0.998,0.534,1.456,0.811,2.678,1.697,1.101 +NM_001613,0.101,1.187,0.258,0.591,0.158,1.604,0.953,0.0992,0.129,0.216,2.303,0.122,0.133,0.112,1.308,1.749,0.137,0.216,0.119,0.918,1.186,0.0969,3.643,0.174,1.201,0.109,0.254,2.547,0.128,3.831,0.108,11.24,1.636,5.954,0.0962,0.507,0.764,1.387,1.899,1.426,4.592,5.277,0.905,0.25,0.161,1.064,0.517,0.0987,0.382,0.129,3.253,1.67,0.594,0.636 +NM_001614,0.878,0.949,1.072,0.926,0.969,0.923,0.433,0.466,1.65,1.569,0.599,0.465,0.76,0.659,0.928,1.24,1.111,0.997,1.419,0.489,0.897,0.955,0.824,1.526,0.691,1.181,0.981,0.97,0.526,0.976,1.333,1.082,1.148,1.211,1.757,0.6,1.084,1.332,1.781,0.702,1.542,0.932,0.63,0.907,1.196,0.886,0.987,1.2,0.94,0.753,0.899,0.681,1.306,1.305 +NM_001615,0.182,1.722,0.216,0.749,0.226,2.14,1.562,0.225,0.204,0.211,4.321,0.194,0.227,0.171,2.117,2.465,0.195,0.332,0.206,1.14,3.47,0.217,6.659,0.231,1.2,0.213,0.228,7.094,0.297,6.373,0.226,8.646,1.317,9.897,0.211,0.698,1.204,3.116,2.048,0.67,19.6,8.199,1.401,0.304,0.22,1.816,0.625,0.199,0.524,0.217,8.893,0.924,0.956,0.449 +NM_001616,0.805,0.971,1.089,0.749,0.974,1.332,0.753,0.672,1.14,0.821,1.1,0.704,0.771,0.848,1.248,1.602,0.843,0.884,1.002,0.968,0.771,0.99,0.922,1.249,0.725,0.774,1.0,1.072,0.64,1.144,1.011,0.794,1.37,1.316,0.695,0.711,1.178,0.98,1.265,0.936,0.942,1.134,0.682,0.856,0.855,1.142,0.949,0.823,1.007,0.874,1.004,0.674,0.633,1.076 +NM_001619,1.085,1.075,0.86,0.962,1.003,0.909,1.098,0.973,0.974,1.061,0.981,1.051,0.932,1.035,1.24,0.941,1.025,0.981,1.084,0.985,1.033,1.0,0.918,0.945,1.033,1.139,0.947,0.918,1.026,0.894,1.069,0.854,1.015,0.982,1.08,1.076,0.926,0.939,0.934,0.974,0.937,1.096,0.99,1.006,0.935,1.07,0.965,1.036,1.187,1.062,1.044,1.001,1.0,1.034 +NM_001622,1.14,1.028,0.978,1.187,0.924,0.922,0.875,0.958,1.125,1.057,0.943,1.108,0.93,1.01,0.898,0.903,0.986,1.006,0.823,1.077,0.9,1.093,1.059,0.87,0.934,0.944,0.858,1.096,0.855,0.992,1.021,0.869,0.986,1.046,1.028,1.0,0.988,1.047,0.973,1.052,1.091,1.005,0.983,1.097,1.052,0.913,0.964,1.012,0.922,0.976,0.95,0.988,1.077,0.9 +NM_001623,0.942,1.27,1.432,1.142,1.062,0.852,0.774,0.639,1.054,0.891,0.93,0.656,0.924,0.644,0.757,0.915,1.078,0.686,0.887,0.76,0.854,0.73,1.034,0.949,1.059,0.803,1.571,0.858,0.406,1.698,0.966,1.965,0.92,1.504,0.653,0.69,1.02,0.813,1.597,2.971,1.138,1.424,0.855,0.985,0.954,0.933,0.928,0.778,0.636,0.941,1.01,1.855,1.387,2.027 +NM_001625,0.614,1.005,1.085,0.66,0.791,1.204,0.724,0.469,1.018,0.835,1.059,0.866,0.646,0.485,0.875,1.848,0.989,0.938,0.896,1.102,0.363,0.843,1.182,1.287,0.696,0.673,1.2,1.056,0.486,1.273,0.779,0.804,2.276,1.394,0.154,0.733,1.143,0.807,1.165,0.532,1.289,1.105,0.713,1.1,1.033,0.96,1.618,0.709,1.059,0.683,1.079,0.805,0.889,1.445 +NM_001627,0.859,0.966,0.926,0.901,0.849,1.033,1.036,0.894,0.778,0.857,1.168,0.81,0.883,0.924,0.885,1.047,0.924,0.927,0.817,1.152,1.049,0.802,0.998,0.936,1.086,0.907,1.015,0.901,0.765,1.12,0.939,1.119,0.825,1.316,1.001,0.904,1.138,0.816,1.181,0.995,0.943,1.208,0.849,1.258,0.878,1.046,1.012,0.887,0.872,0.892,1.114,1.037,1.062,0.833 +NM_001628,0.534,1.324,1.016,0.82,0.615,1.392,0.865,0.431,0.845,1.003,1.211,0.964,0.716,0.472,0.586,1.041,0.689,0.763,1.06,0.597,0.757,0.508,1.672,0.945,1.232,0.748,1.786,0.482,0.812,1.963,0.677,2.247,1.181,2.043,0.307,0.931,0.684,0.958,1.745,1.774,0.658,1.199,0.519,0.357,0.714,0.753,1.057,0.579,0.415,0.862,1.049,1.895,1.232,2.508 +NM_001629,0.688,1.135,2.986,0.799,1.393,0.789,0.895,0.583,1.484,0.923,0.614,1.002,1.124,0.556,0.67,0.665,1.793,0.953,1.08,0.836,0.632,0.896,0.67,1.679,0.601,0.842,3.44,1.004,0.147,1.834,0.803,3.634,0.967,1.109,0.202,0.493,0.998,0.786,1.032,3.74,2.651,1.802,0.698,0.528,1.554,0.932,0.972,0.629,0.705,1.187,0.72,1.809,2.543,2.525 +NM_001630,2.749,0.0442,5.511,1.37,4.449,0.0433,0.0571,1.504,4.631,4.97,0.0419,3.512,1.779,2.285,1.705,0.781,2.687,2.274,5.36,0.817,1.293,4.841,0.0423,4.536,0.0398,4.818,5.265,5.278,0.0547,0.0761,3.331,0.388,1.133,0.0441,0.121,0.151,0.0372,4.56,0.115,0.0419,5.455,0.1,0.0429,0.145,4.866,0.0365,1.912,3.72,0.0824,3.326,0.867,2.118,2.768,0.768 +NM_001631,1.015,0.775,1.141,0.953,1.224,0.963,1.016,0.919,1.043,1.137,0.917,0.962,1.01,1.121,1.276,1.36,1.078,1.107,0.797,0.951,0.903,1.127,1.134,1.026,1.061,1.049,0.997,0.977,0.959,0.926,1.051,0.856,1.058,0.839,0.824,1.296,1.586,1.132,0.952,0.812,0.933,1.084,1.539,0.861,1.078,1.161,1.234,1.038,0.952,1.078,1.155,0.959,0.877,0.97 +NM_001633,0.963,1.034,0.977,1.179,0.826,0.98,0.973,0.78,0.935,0.928,1.001,0.931,0.857,0.984,1.009,1.147,0.96,1.104,0.935,1.104,0.905,1.001,0.994,0.936,1.232,0.872,0.91,0.848,1.145,0.971,0.965,0.876,0.912,1.115,1.055,1.136,0.898,0.837,1.234,1.057,0.899,1.348,1.094,0.988,1.047,1.09,1.095,1.035,1.048,0.948,1.136,0.955,0.865,0.973 +NM_001635,0.991,1.047,0.963,1.068,1.084,1.031,1.011,1.134,1.179,1.021,0.986,0.972,0.881,0.868,0.915,0.987,0.978,1.07,1.071,0.983,0.904,0.945,1.048,0.968,1.026,1.004,1.139,0.955,1.304,1.015,1.04,1.142,0.861,0.963,1.107,1.036,1.049,1.113,1.04,0.99,0.992,1.075,1.08,0.939,0.987,1.006,0.952,1.046,0.912,0.969,1.038,1.084,1.076,0.955 +NM_001636,0.681,1.449,1.367,0.63,0.849,1.112,0.487,0.6,0.963,0.757,1.443,1.128,0.996,0.766,0.896,2.142,0.774,0.801,1.297,1.004,0.377,0.728,1.429,1.355,0.816,0.953,1.64,0.826,0.313,1.098,0.858,1.272,1.124,1.354,0.125,0.773,1.193,1.196,0.917,0.392,1.085,1.564,0.763,0.422,1.017,1.197,0.86,0.864,1.197,0.808,1.057,0.646,0.922,0.679 +NM_001637,1.174,1.116,1.002,1.006,1.083,1.035,0.891,0.683,0.932,1.106,0.879,0.883,0.827,1.122,0.887,1.052,1.018,0.804,1.04,0.954,0.991,0.704,1.153,0.966,0.753,0.936,1.17,0.968,0.668,1.097,0.962,0.991,1.04,0.894,1.085,0.919,1.097,0.962,1.191,1.245,1.082,1.132,0.783,1.031,1.186,0.875,0.977,0.881,0.875,0.93,0.992,0.956,1.23,1.408 +NM_001639,0.926,0.981,0.922,1.079,1.174,1.159,1.059,1.15,1.213,1.023,1.119,0.938,1.068,1.011,0.893,0.933,0.969,0.968,0.992,1.081,0.988,1.096,1.133,1.013,1.045,1.096,1.005,1.05,0.764,0.954,1.062,0.971,1.055,1.098,1.123,1.002,1.036,1.072,0.934,0.97,0.823,0.977,1.025,0.918,1.046,0.899,0.983,0.986,1.038,1.098,0.984,1.001,0.938,0.952 +NM_001640,0.885,1.09,0.885,1.064,0.67,1.217,0.677,0.309,0.823,1.019,1.267,0.64,0.591,0.526,1.032,2.014,0.76,1.166,1.189,1.074,0.502,1.036,1.405,0.828,1.003,0.865,1.105,0.647,0.686,1.814,0.708,0.739,1.716,1.434,0.179,0.956,1.533,0.934,2.086,0.696,0.807,1.445,0.905,0.997,0.988,1.323,0.803,0.879,1.084,0.864,1.346,0.851,0.93,1.355 +NM_001641,0.937,1.17,1.125,0.905,0.912,0.987,0.829,0.863,0.991,1.098,0.89,0.827,0.874,0.868,1.155,1.259,0.855,0.954,0.96,1.086,0.885,0.796,1.329,0.902,0.884,0.904,1.014,0.986,1.41,0.989,0.929,1.368,1.345,1.031,0.75,1.007,0.914,0.989,0.983,0.983,1.131,1.127,1.299,1.571,0.971,0.877,1.013,0.924,1.191,0.917,1.012,0.895,1.001,1.463 +NM_001642,0.444,1.223,0.818,0.651,0.547,1.575,0.49,0.394,0.649,0.576,1.55,0.384,0.401,0.438,1.227,2.004,0.707,0.781,0.768,1.644,0.468,0.594,1.578,0.607,0.711,0.665,0.762,0.537,0.405,2.198,0.701,1.787,1.163,1.677,0.461,1.12,1.688,0.525,1.811,1.158,0.718,2.025,0.657,0.76,0.668,1.543,0.949,0.607,1.018,0.74,1.373,0.789,0.703,1.247 +NM_001643,1.005,1.049,0.905,0.973,0.952,0.994,0.855,1.056,0.841,0.995,1.113,1.022,0.93,1.083,0.975,1.117,1.066,0.971,0.984,0.905,1.015,0.903,0.881,0.95,0.95,1.017,1.044,1.035,1.378,1.028,0.994,0.837,0.964,0.961,0.884,1.101,1.014,0.957,0.806,3.62,0.87,1.067,1.069,1.013,1.028,1.03,0.992,1.073,0.993,0.916,0.97,0.986,1.032,0.977 +NM_001645,0.75,2.353,0.962,0.799,0.991,1.484,1.023,0.715,0.975,0.845,1.081,0.934,0.938,0.782,0.818,0.857,0.782,0.99,0.901,0.953,0.781,0.824,1.302,0.904,0.94,0.8,1.069,0.846,0.885,1.303,0.723,10.8,2.056,1.326,0.761,0.761,1.082,0.877,1.885,2.312,0.745,1.213,0.667,0.953,0.74,0.898,1.278,0.749,0.74,0.818,0.77,1.642,0.871,5.839 +NM_001646,0.923,1.012,1.078,0.976,1.07,1.008,1.019,1.088,1.078,1.031,1.143,1.066,1.125,0.983,1.064,1.165,0.854,0.987,0.87,1.009,0.935,1.022,0.974,1.033,0.844,1.012,1.018,1.044,0.859,0.978,1.122,0.959,1.147,0.966,0.903,0.93,0.862,0.876,1.064,0.892,1.224,0.937,1.386,1.028,1.179,0.988,1.017,1.026,0.925,0.892,0.949,0.937,0.857,0.997 +NM_001647,0.663,1.266,0.893,0.993,0.89,0.946,0.833,0.891,0.796,0.89,0.988,0.774,0.892,0.769,0.932,0.991,0.817,0.898,1.06,1.041,1.223,0.693,1.048,0.863,1.404,0.823,0.875,1.013,0.726,1.403,0.734,1.874,1.78,3.475,0.931,2.639,0.888,0.843,0.743,0.661,1.428,5.191,1.021,0.767,0.895,0.802,0.91,0.771,0.756,1.065,1.596,1.499,1.483,2.578 +NM_001648,0.972,0.985,0.966,0.998,1.154,0.988,0.915,0.957,0.872,0.896,1.176,1.062,1.097,0.992,1.148,1.106,1.051,1.084,0.974,0.965,0.941,1.051,1.047,1.012,1.007,1.128,0.978,1.035,1.006,0.95,0.936,1.137,0.926,1.01,0.973,0.93,0.953,0.955,0.983,1.054,1.043,0.948,0.991,0.938,0.994,1.052,1.25,0.946,1.049,1.08,1.085,0.977,1.04,0.93 +NM_001649,1.343,0.797,1.866,0.944,1.242,0.847,0.969,0.869,1.724,1.242,0.753,1.063,1.084,1.397,0.912,0.723,1.55,1.279,1.648,0.831,1.216,1.299,0.834,1.265,0.866,1.421,2.257,1.148,0.714,1.0,1.527,1.555,1.235,0.996,0.981,0.835,0.911,1.458,0.823,0.972,1.722,0.88,0.761,0.978,1.347,0.805,1.265,1.314,0.973,1.553,0.984,1.14,1.255,0.894 +NM_001650,2.003,2.557,1.859,2.2359999999999998,2.2110000000000003,1.9489999999999998,1.8940000000000001,1.959,2.081,2.075,2.159,1.943,1.894,1.811,1.737,1.816,1.928,1.989,1.8679999999999999,2.08,1.77,1.889,2.026,2.013,2.3810000000000002,2.024,1.927,2.264,1.93,2.06,2.248,2.279,1.766,2.037,2.0330000000000004,1.972,1.9,2.222,2.043,2.035,1.9969999999999999,1.818,1.949,2.034,1.844,1.905,2.0300000000000002,2.123,2.064,1.99,2.009,1.969,1.856,2.169 +NM_001651,0.748,2.142,0.805,1.62,0.712,1.521,0.99,0.633,0.658,0.77,1.001,0.748,1.346,0.691,0.702,0.979,0.853,1.198,0.878,0.999,0.684,0.623,1.286,0.756,1.527,0.795,0.623,0.662,0.78,1.745,0.721,1.796,3.58,2.885,0.753,0.739,1.32,0.748,1.841,0.904,0.732,4.678,0.768,4.187,0.82,0.822,0.805,0.86,0.711,0.775,1.131,1.233,0.758,1.23 +NM_001652,1.105,0.9,0.971,0.964,0.938,0.913,1.011,0.972,1.041,0.812,1.123,1.072,0.953,1.067,0.822,1.008,0.98,1.039,0.907,0.988,1.005,1.045,0.785,1.092,0.946,1.001,0.911,0.832,1.242,0.903,1.012,1.107,1.013,0.959,0.982,0.93,1.134,0.98,1.087,1.019,0.97,1.007,1.014,1.131,0.893,0.974,0.885,0.962,1.008,1.046,0.983,1.09,1.195,0.921 +NM_001654,0.988,0.873,0.93,1.112,0.768,1.231,0.763,0.7,0.743,0.749,1.046,0.813,1.056,0.592,0.9,1.206,0.817,0.858,0.878,1.051,0.782,0.815,1.137,0.927,1.347,1.074,0.94,0.719,0.945,1.123,0.746,1.306,1.436,1.471,0.594,1.0,0.958,0.776,2.07,0.819,0.776,1.142,0.764,1.187,0.908,0.898,0.837,0.923,0.826,0.944,1.082,0.818,0.818,1.12 +NM_001655,0.598,1.003,0.887,0.95,0.669,1.153,0.727,0.341,0.916,0.826,1.724,0.521,0.414,0.486,0.923,1.922,0.525,0.864,1.07,1.448,0.564,0.312,1.491,0.675,0.891,0.67,0.782,0.667,0.333,1.679,0.778,1.399,1.755,1.791,0.269,1.894,1.469,0.479,1.574,0.875,0.774,1.404,0.862,0.807,0.78,1.52,0.782,0.412,1.381,0.658,1.401,0.896,0.921,1.763 +NM_001656,0.871,1.019,1.357,0.929,1.098,1.032,0.949,1.09,1.18,1.099,0.864,1.078,0.998,0.845,1.072,1.257,0.956,1.21,1.14,0.913,0.749,1.109,0.908,1.008,0.854,0.854,1.422,1.029,1.05,1.013,1.127,1.181,1.244,1.137,0.988,0.818,0.926,1.098,0.993,0.923,1.0,1.126,0.999,0.862,1.013,1.068,0.986,0.955,0.881,1.175,0.971,0.864,1.014,1.168 +NM_001657,0.707,0.368,1.046,0.679,1.347,1.913,0.451,2.101,1.734,1.667,0.826,0.878,0.705,1.082,0.989,1.253,0.968,0.902,1.245,0.88,0.584,1.33,0.633,1.225,0.303,0.838,0.739,1.871,0.468,0.498,1.697,0.542,1.811,0.995,1.512,0.523,0.879,0.966,1.747,2.257,1.321,0.636,1.917,0.871,0.859,4.037,2.703,1.386,1.667,0.614,0.841,1.085,1.523,0.845 +NM_001658,0.627,0.989,0.901,0.809,0.952,1.32,0.7,0.611,1.043,0.893,1.141,0.715,0.524,0.558,0.889,1.816,0.677,1.052,1.117,1.015,0.412,0.526,1.309,0.937,0.682,1.015,0.759,0.914,0.367,1.261,0.91,1.325,1.15,1.51,0.673,1.028,1.281,0.735,1.38,0.964,0.993,1.151,0.741,1.432,0.91,1.171,0.985,0.694,1.227,0.708,1.263,0.787,0.982,1.56 +NM_001659,0.595,0.774,1.355,0.563,1.02,1.059,0.614,0.553,0.911,1.311,0.661,0.699,0.519,0.535,0.904,1.698,1.154,1.003,1.229,1.002,0.582,0.66,1.04,1.122,0.568,0.761,1.238,0.805,0.425,1.091,1.172,1.311,1.133,1.24,0.382,0.786,0.838,1.074,1.262,1.208,1.091,1.068,0.54,1.454,1.167,0.809,1.002,0.578,1.084,1.05,0.97,0.648,1.079,1.199 +NM_001660,0.453,1.445,0.879,0.881,0.694,2.281,0.905,0.547,0.924,0.733,1.696,0.721,0.658,0.45,1.103,2.564,0.602,1.189,0.772,1.137,0.344,0.973,1.77,1.007,0.702,0.5,0.993,0.652,0.668,1.789,0.947,1.21,2.153,1.872,0.234,0.627,1.682,0.794,2.048,0.676,0.921,1.771,0.799,0.586,0.867,1.68,1.008,0.807,1.498,0.69,1.568,1.16,0.53,1.927 +NM_001661,2.34,0.556,3.696,0.844,2.44,0.503,0.467,1.636,3.264,3.184,0.493,3.38,2.147,2.261,1.697,0.949,4.057,1.661,4.148,0.728,2.487,3.049,0.544,4.814,0.461,2.547,4.033,2.738,0.643,0.641,2.313,0.92,1.703,0.614,0.547,0.5,0.409,2.952,0.474,0.513,4.411,0.753,0.544,0.84,3.268,0.491,3.073,3.056,0.413,4.168,0.794,1.458,6.808,1.089 +NM_001662,1.083,0.802,1.308,0.664,1.54,1.159,0.453,1.295,1.437,1.187,0.772,1.674,1.353,0.684,0.976,1.53,1.325,1.184,2.358,0.541,1.129,2.521,0.912,1.742,0.523,1.813,1.466,1.016,0.756,1.049,1.119,0.702,0.98,1.06,0.41,0.514,0.898,2.51,1.113,0.477,1.416,0.816,0.603,0.741,1.119,0.735,1.253,2.162,0.775,1.18,0.636,0.572,1.253,0.746 +NM_001664,0.926,0.948,1.058,1.056,0.941,1.599,0.541,0.692,1.09,1.1,1.43,0.928,0.727,0.72,0.971,1.815,0.754,1.339,1.491,0.94,0.415,0.767,1.287,1.009,0.755,1.392,0.999,0.929,0.427,1.76,1.053,1.044,0.923,1.712,0.468,0.698,1.461,1.013,1.694,0.709,0.989,1.326,0.732,0.726,1.055,1.274,0.802,1.077,0.889,0.978,1.352,0.883,1.048,1.217 +NM_001665,1.177,0.487,1.397,1.068,0.879,1.025,0.519,1.134,1.142,1.091,0.773,1.106,1.047,0.834,1.02,1.675,1.084,0.761,2.188,0.611,1.292,0.992,0.828,1.267,0.509,1.335,1.252,0.825,0.346,0.933,1.251,0.726,1.27,1.155,1.739,1.205,0.846,0.914,1.207,0.966,1.006,0.849,0.648,0.865,1.225,0.633,0.772,1.256,0.899,1.729,0.743,0.708,1.968,1.103 +NM_001666,0.788,1.707,1.139,1.079,0.873,0.968,1.064,0.606,1.104,0.788,0.749,0.755,0.842,0.753,0.85,3.63,0.974,0.863,0.704,0.999,0.755,0.876,1.111,0.998,0.766,0.771,1.4,0.908,0.575,1.406,0.783,4.626,2.659,1.222,0.675,6.388,0.95,0.887,1.15,3.161,0.926,1.629,0.827,3.059,0.82,1.001,1.121,0.771,0.815,0.743,0.876,1.353,1.099,6.73 +NM_001667,0.556,1.753,1.229,0.576,1.225,1.025,0.757,0.454,1.227,1.275,0.58,1.369,0.673,0.475,0.773,1.018,0.841,0.864,0.758,1.402,0.362,0.644,1.258,1.36,0.494,0.671,1.311,1.125,0.463,1.865,0.762,2.468,1.743,1.369,0.16,1.531,0.901,1.199,1.155,1.249,1.392,1.282,1.028,0.906,1.06,0.998,1.687,0.627,1.097,0.598,1.03,0.914,0.728,1.172 +NM_001669,1.798,2.237,2.206,1.9689999999999999,1.959,2.0460000000000003,1.803,2.193,2.042,2.098,2.0549999999999997,2.0300000000000002,1.991,1.876,2.106,2.365,2.107,1.818,2.154,1.9100000000000001,1.8519999999999999,1.885,1.987,2.066,1.9289999999999998,1.9729999999999999,2.019,2.04,1.833,1.888,1.919,1.898,2.075,2.036,2.1109999999999998,2.082,1.966,1.92,1.9889999999999999,1.9939999999999998,1.968,1.956,1.75,2.2489999999999997,2.034,2.222,2.141,1.869,2.084,1.8330000000000002,1.95,2.099,1.826,2.335 +NM_001670,1.063,1.058,0.946,1.136,1.012,0.917,0.972,0.953,1.124,1.117,1.033,0.892,0.963,0.835,1.179,0.952,1.064,0.994,0.983,0.909,0.84,0.938,1.063,1.125,1.018,1.074,0.908,1.014,0.956,1.057,0.854,0.981,0.996,0.994,1.088,0.921,0.951,1.075,1.128,1.052,1.002,1.107,1.009,0.958,0.998,1.102,0.974,1.06,0.912,1.088,1.023,0.992,0.998,1.065 +NM_001671,0.994,0.915,1.008,0.998,1.039,0.934,0.727,0.799,1.299,1.155,0.927,1.397,0.932,0.81,0.992,0.845,0.903,0.873,1.032,0.917,0.927,1.158,1.078,1.11,0.778,0.875,1.014,1.564,0.567,1.026,1.087,1.291,0.95,1.368,0.796,0.961,1.192,1.167,1.039,2.177,1.079,0.948,1.17,0.821,1.434,1.263,1.467,0.918,0.848,0.98,1.108,0.994,0.84,1.115 +NM_001672,0.976,0.98,0.919,0.873,0.969,1.156,1.068,1.079,1.079,0.979,1.022,0.862,0.931,1.047,1.021,1.088,1.011,0.864,1.049,0.982,0.976,1.052,1.105,1.032,0.85,1.0,1.147,1.093,0.719,1.059,1.22,1.109,1.076,0.926,1.044,0.96,0.94,0.948,0.99,1.006,1.097,1.002,0.847,0.896,0.953,1.103,0.942,1.161,0.928,1.074,1.03,0.934,1.339,1.119 +NM_001673,0.749,0.977,0.818,1.12,0.639,1.391,1.126,0.524,0.981,0.995,2.509,0.676,0.558,0.586,0.814,1.202,0.79,0.815,1.002,0.899,0.724,0.652,1.568,1.288,1.472,1.382,0.922,0.771,0.806,0.861,0.705,1.782,5.514,1.314,0.595,1.017,0.952,0.716,2.108,1.304,1.14,1.152,0.79,3.632,0.923,1.304,1.313,0.552,1.044,0.81,1.174,1.482,0.979,2.42 +NM_001675,1.22,1.124,0.889,0.944,1.157,1.007,1.145,1.02,0.894,0.957,0.941,1.038,0.945,1.045,1.196,1.061,1.068,1.046,0.951,0.979,0.953,0.879,1.135,0.913,0.928,1.096,1.005,1.187,0.995,0.933,1.07,1.058,0.925,1.113,1.079,0.958,1.062,0.984,0.92,0.974,1.024,1.163,1.119,1.063,0.919,1.022,0.998,1.078,1.044,1.054,1.098,0.895,0.952,1.07 +NM_001676,3.346,0.963,1.878,1.167,1.876,0.96,0.998,2.164,3.31,1.021,1.051,1.066,3.665,1.815,1.31,1.056,1.77,0.852,4.09,1.387,1.233,1.998,0.874,1.097,0.801,1.27,5.046,1.002,1.221,0.923,3.13,1.023,0.822,0.772,3.228,0.852,0.902,1.186,0.938,0.859,1.455,0.89,0.899,0.907,4.24,0.923,0.932,2.569,0.95,1.644,1.004,1.011,1.694,1.231 +NM_001677,0.459,1.096,0.653,0.571,0.778,1.725,0.783,0.671,1.378,0.608,1.912,0.34,0.388,0.429,1.228,2.422,0.408,0.726,0.959,1.248,0.467,0.685,1.736,0.831,0.698,0.655,0.978,1.012,0.446,1.054,1.071,1.531,1.161,1.733,0.246,1.433,1.886,0.683,1.436,1.091,0.853,1.375,0.926,1.416,0.815,1.838,0.995,0.544,1.359,0.432,1.948,0.806,0.904,1.254 +NM_001678,1.014,0.919,0.888,0.883,0.946,1.001,1.176,1.259,0.863,0.942,0.981,0.947,1.0,0.918,1.011,1.011,0.967,0.914,1.042,1.003,1.046,0.978,0.833,1.067,1.132,1.171,1.124,1.141,0.716,1.063,1.002,0.934,0.95,1.157,1.063,1.077,1.195,0.983,1.045,0.996,0.921,1.001,0.991,1.043,1.092,0.888,1.012,1.057,0.959,0.994,1.071,0.87,1.013,1.028 +NM_001679,0.842,0.795,1.86,0.568,1.563,0.759,0.279,0.597,1.467,1.85,0.78,0.787,0.732,0.592,0.58,2.851,1.349,1.313,1.782,0.582,0.631,0.854,1.452,1.703,0.172,0.752,2.103,1.256,0.138,0.493,1.548,0.703,3.7,0.383,0.101,0.657,1.407,1.841,0.791,1.1,1.266,1.001,0.756,0.722,1.358,0.651,1.19,0.599,1.491,0.978,1.216,1.182,1.548,0.983 +NM_001680,1.041,1.054,1.011,0.977,0.949,0.956,1.023,0.993,0.943,1.029,1.12,1.087,1.074,1.0,1.097,0.965,1.005,0.968,1.047,0.956,0.964,0.86,1.293,0.905,1.015,0.943,1.055,0.92,1.064,0.911,1.023,0.996,1.003,1.114,1.058,0.921,0.893,0.912,0.957,2.631,1.0,0.891,0.851,1.078,1.069,1.169,0.973,0.875,0.984,0.967,1.106,1.044,0.967,1.105 +NM_001681,1.681,1.226,3.029,1.496,1.6640000000000001,1.698,1.1480000000000001,0.887,1.9649999999999999,1.941,2.187,1.095,1.098,1.6179999999999999,1.834,2.7729999999999997,1.8079999999999998,1.6030000000000002,2.677,1.9100000000000001,1.584,1.258,2.5949999999999998,1.506,1.409,1.6669999999999998,2.673,1.5979999999999999,0.806,2.178,2.158,2.8979999999999997,3.128,2.4139999999999997,0.7390000000000001,1.8679999999999999,2.377,1.604,2.334,1.326,2.561,2.708,1.399,1.9969999999999999,2.238,2.162,1.4140000000000001,1.2610000000000001,2.146,2.426,2.566,1.791,2.651,3.398 +NM_001682,0.658,0.999,0.879,0.597,0.84,1.442,0.908,0.835,0.811,0.835,1.288,0.789,0.675,0.654,1.296,2.505,0.621,0.984,0.745,1.614,0.661,0.772,2.212,0.976,0.805,0.661,1.041,0.752,0.883,1.237,0.922,1.329,1.201,1.429,0.588,0.854,1.642,0.803,1.968,1.388,0.749,1.813,1.096,0.894,0.94,1.571,1.133,0.687,1.686,0.644,1.815,1.085,0.741,1.166 +NM_001683,1.031,1.195,1.107,1.233,1.042,0.944,0.887,0.945,1.055,1.025,1.135,0.869,0.86,0.948,0.884,0.875,1.067,1.041,0.93,0.989,1.079,0.943,1.047,0.987,0.942,0.891,0.985,1.036,0.921,1.038,1.063,1.161,0.909,0.975,1.069,1.018,0.814,0.935,1.117,0.897,1.08,0.927,1.105,1.029,0.964,1.123,1.244,0.945,1.023,1.149,0.92,1.014,1.115,0.972 +NM_001684,1.091,1.067,1.001,1.061,1.107,1.163,0.961,0.93,1.05,1.113,0.903,1.093,0.97,1.015,1.004,1.026,0.936,0.981,1.206,1.012,0.908,1.065,0.978,1.04,1.0,1.175,1.13,1.014,1.006,0.921,0.962,0.985,0.957,0.903,1.058,0.99,1.057,0.981,0.951,0.998,1.067,0.952,0.914,0.986,1.066,1.013,1.072,1.13,1.003,0.962,1.084,0.882,1.131,1.001 +NM_001685,0.645,0.962,1.14,0.645,0.876,1.779,0.651,0.848,1.192,0.924,1.731,1.199,0.851,0.609,1.202,3.214,0.915,1.151,1.921,0.845,0.712,1.116,1.223,1.312,0.719,0.77,1.495,0.94,0.511,1.128,1.092,0.719,1.367,1.763,0.123,0.552,1.792,1.311,1.27,0.447,1.227,1.271,0.667,0.506,0.947,1.165,0.999,0.994,0.718,0.786,1.215,0.629,0.858,1.537 +NM_001686,0.73,0.725,1.061,0.842,0.804,1.283,0.67,0.486,1.101,0.948,1.539,0.888,0.683,0.637,1.085,1.898,0.765,0.979,1.521,0.748,0.559,0.879,1.203,1.151,0.89,0.83,1.398,0.817,0.384,1.17,0.909,0.751,1.185,1.272,0.382,0.949,1.428,0.915,1.328,0.537,0.995,1.088,0.864,1.273,1.046,1.125,0.953,0.807,1.271,0.804,1.184,0.791,1.045,1.507 +NM_001687,1.03,0.851,0.759,1.073,0.745,1.298,0.648,0.348,0.817,0.927,1.654,0.676,0.708,0.527,1.005,2.794,0.734,1.21,1.639,0.916,0.78,0.82,1.859,1.037,1.169,1.348,1.015,0.595,0.657,1.304,0.741,0.617,1.188,1.655,0.141,1.013,1.666,0.929,1.676,0.651,0.868,1.28,0.786,1.508,0.955,1.045,0.822,1.08,1.141,1.095,1.035,0.541,0.995,0.925 +NM_001688,0.737,0.917,1.131,0.735,0.973,1.227,0.572,0.567,1.154,1.049,1.427,1.206,0.78,0.62,1.059,1.903,0.824,1.156,1.245,1.092,0.377,0.844,1.209,1.283,0.747,0.863,1.329,1.035,0.368,1.109,0.908,0.685,1.505,1.273,0.186,0.77,1.67,1.061,1.224,0.643,1.106,1.123,0.88,0.528,1.028,1.278,1.122,0.755,1.283,0.758,1.311,0.808,0.853,1.605 +NM_001689,0.764,0.982,0.842,0.995,0.786,1.392,0.716,0.324,1.123,0.877,1.949,0.653,0.651,0.515,0.932,2.55,0.569,1.301,1.075,0.945,0.418,0.919,1.634,1.126,0.965,0.964,1.222,0.827,0.515,1.21,0.739,0.841,1.093,1.452,0.0996,1.135,2.009,0.774,1.682,0.767,1.022,1.303,1.187,1.148,0.906,1.537,0.835,0.825,1.677,0.676,1.486,0.84,0.555,2.135 +NM_001690,0.656,0.87,1.443,0.637,1.111,1.094,0.63,0.516,1.099,1.125,0.933,0.821,0.548,0.57,0.745,1.41,0.903,1.062,1.327,0.9,0.461,1.032,0.923,1.003,0.539,0.787,1.482,0.851,0.576,1.122,1.169,1.086,1.327,1.126,0.847,0.517,1.144,1.075,1.251,0.867,0.934,0.949,0.454,1.011,1.086,1.003,0.798,1.132,0.809,1.058,0.957,0.771,1.098,0.978 +NM_001692,0.932,0.956,0.879,1.013,0.852,0.953,0.728,1.032,1.008,1.038,0.927,0.944,0.861,0.877,0.927,1.408,1.119,1.026,1.078,0.989,1.141,1.054,1.343,0.988,0.96,0.972,1.0,0.879,0.729,0.948,0.941,2.02,1.123,0.869,0.994,1.637,0.99,0.843,0.876,1.034,0.979,2.027,1.094,1.05,1.033,1.172,1.168,0.875,0.924,1.067,0.996,1.062,1.003,1.146 +NM_001693,0.73,0.488,1.589,0.755,0.987,0.928,0.477,0.389,1.431,1.126,1.037,0.902,0.463,1.131,1.026,1.565,1.006,0.795,1.546,0.678,0.583,0.616,1.025,0.948,0.4,0.846,1.872,0.894,0.249,0.985,1.225,1.33,1.286,1.27,0.595,0.437,0.916,0.883,0.954,1.006,1.138,1.02,0.653,0.604,1.144,1.274,0.822,0.581,1.33,1.066,0.992,0.893,1.427,1.612 +NM_001695,0.853,1.023,1.042,0.874,0.72,1.167,0.791,0.722,1.205,0.889,1.127,0.807,0.731,0.704,0.872,1.188,0.888,0.815,1.079,1.01,0.753,0.702,0.971,1.009,0.799,0.828,1.567,0.742,0.531,1.204,0.93,1.532,1.821,1.174,0.55,0.953,1.072,0.676,1.385,1.743,0.94,0.796,0.722,1.608,0.944,1.178,1.064,0.675,1.141,0.74,1.083,0.866,0.931,3.633 +NM_001696,0.828,0.957,1.334,0.964,1.265,0.945,0.563,0.688,1.671,1.004,1.03,0.957,0.736,0.833,0.963,1.141,1.201,0.982,1.245,0.84,0.81,0.881,1.025,0.953,0.637,1.343,1.17,1.348,0.418,1.036,1.34,1.047,0.751,1.211,1.846,1.055,0.798,1.064,1.303,0.879,1.363,0.959,0.646,1.018,1.395,0.996,1.113,1.079,0.81,0.981,0.885,0.884,1.44,2.114 +NM_001697,0.685,1.128,1.046,0.75,1.04,1.419,0.769,0.661,1.061,0.991,1.414,1.2,0.809,0.58,0.887,1.701,0.795,1.174,1.174,1.164,0.464,0.907,1.131,1.246,0.881,0.935,1.187,1.028,0.511,1.473,0.845,0.788,1.345,1.593,0.212,0.753,1.406,1.006,1.312,0.603,1.102,1.249,0.753,0.692,0.97,1.175,0.91,0.932,0.639,0.827,1.242,0.648,0.851,1.254 +NM_001698,0.705,1.61,1.033,0.936,0.814,1.563,0.809,0.634,0.864,0.754,1.304,0.824,0.776,0.794,1.172,1.539,0.744,0.96,1.089,1.21,0.676,0.727,1.372,0.822,1.211,0.791,0.998,0.776,0.539,1.653,0.864,1.519,1.821,1.767,0.61,0.782,1.374,0.67,1.109,0.729,0.778,1.17,0.991,1.033,0.711,1.414,0.888,0.614,0.87,0.706,1.143,0.736,0.813,1.67 +NM_001699,0.888,0.973,1.313,0.648,1.07,0.756,0.905,0.694,0.829,0.967,0.724,0.796,0.844,0.793,0.909,0.78,1.063,0.734,0.798,0.952,0.85,0.909,1.018,0.992,0.768,1.175,1.452,0.989,0.671,1.496,0.949,5.226,1.111,1.532,0.596,0.787,0.932,1.328,1.305,2.099,1.061,1.558,0.707,1.014,1.108,0.832,0.74,0.828,0.529,0.766,0.894,1.766,1.432,1.821 +NM_001700,1.098,1.005,1.163,1.11,0.98,0.907,0.883,1.037,0.982,1.06,0.903,1.009,0.947,1.087,1.089,0.944,1.046,1.011,0.886,0.856,1.086,1.08,0.937,0.993,0.973,1.013,0.964,0.999,0.982,1.073,0.915,0.988,1.184,0.987,1.128,0.929,1.059,0.984,0.947,1.024,0.982,1.027,1.017,0.948,1.019,0.974,0.921,1.092,0.994,1.026,1.0,0.917,0.917,0.928 +NM_001701,1.095,1.026,0.849,0.881,1.04,1.029,1.0,0.986,1.042,0.982,0.964,1.027,0.938,0.948,1.166,0.956,0.946,0.948,0.996,1.027,0.953,0.934,1.88,0.972,1.114,1.045,0.996,0.941,1.034,0.908,1.026,0.93,1.131,1.069,0.968,0.967,1.063,0.863,1.374,0.977,0.972,1.024,1.254,0.91,1.026,1.066,0.984,0.944,0.888,0.916,1.013,0.926,0.914,2.894 +NM_001702,1.027,0.922,0.855,1.082,1.002,1.115,0.837,1.068,0.98,1.151,0.968,0.806,0.933,0.79,0.806,0.988,1.129,0.99,1.28,0.969,1.071,1.123,1.146,1.082,1.17,0.999,1.064,1.164,0.731,0.974,0.969,0.995,1.091,0.958,1.122,0.908,1.044,0.899,1.007,1.001,0.858,1.079,1.401,1.011,0.822,0.972,0.92,0.93,0.883,1.021,0.986,0.977,1.022,1.078 +NM_001703,1.01,0.97,1.001,0.895,1.002,0.89,0.851,1.081,0.965,0.922,1.086,1.095,0.878,1.022,1.017,0.956,0.893,1.011,0.756,1.045,0.949,0.952,1.143,0.82,0.959,1.012,1.117,0.796,1.307,1.073,0.948,1.169,1.212,0.877,1.015,0.979,1.091,1.083,1.088,1.047,1.038,0.944,0.863,0.851,0.995,1.103,1.052,1.069,0.887,0.931,0.993,1.018,0.906,1.256 +NM_001704,1.031,0.872,0.952,0.935,0.955,0.978,1.033,1.163,0.961,0.904,0.883,0.965,0.897,0.943,0.973,1.021,1.033,1.024,1.077,1.118,1.02,0.98,0.877,0.863,1.105,0.962,0.998,1.044,0.657,0.965,0.934,1.106,0.903,1.119,1.023,1.099,0.958,1.122,1.066,0.956,1.019,0.993,0.85,0.891,1.337,1.085,1.04,1.047,0.914,0.978,1.075,0.894,0.904,0.919 +NM_001706,1.89,1.806,4.189,1.797,2.2169999999999996,1.716,1.385,1.8849999999999998,2.19,2.12,1.499,1.9809999999999999,1.831,1.966,2.083,1.717,3.0469999999999997,1.837,2.572,1.888,1.8439999999999999,1.927,1.52,2.443,1.592,2.01,4.093,2.1069999999999998,1.388,1.812,2.548,3.019,2.4859999999999998,1.819,2.779,1.516,1.581,2.1719999999999997,2.088,3.4509999999999996,2.607,2.433,1.407,2.184,2.763,1.5710000000000002,2.1189999999999998,2.2560000000000002,1.8399999999999999,3.333,1.671,2.115,2.7720000000000002,2.509 +NM_001707,0.886,0.869,0.91,1.035,0.831,1.018,0.685,0.791,1.056,1.018,0.94,0.797,0.895,0.873,0.982,1.274,1.002,0.964,1.077,0.812,0.912,0.867,1.085,0.924,1.129,1.202,0.98,0.862,0.937,1.011,0.808,1.07,1.149,1.192,0.726,0.771,0.973,0.887,1.695,1.024,0.954,0.921,0.91,1.435,0.909,0.951,1.017,1.028,0.937,1.057,0.819,0.911,0.961,1.207 +NM_001708,1.05,0.993,0.904,0.987,1.064,1.077,0.875,1.024,0.895,0.894,0.962,1.039,0.902,1.165,0.915,0.95,0.806,0.95,1.097,0.989,1.077,1.008,0.969,0.841,1.083,1.13,1.146,0.905,0.661,0.942,0.892,0.992,0.984,0.875,0.883,1.098,1.015,1.027,1.259,1.03,1.083,0.826,0.781,1.046,1.005,0.893,1.049,0.986,1.1,0.928,1.0,0.768,1.078,1.055 +NM_001709,0.932,1.021,1.008,1.063,0.907,1.125,1.081,1.046,0.997,0.898,0.966,1.07,1.083,0.94,0.997,1.103,0.893,0.846,0.917,0.778,1.038,0.892,1.051,1.082,1.027,0.867,1.197,1.057,0.802,1.06,1.021,0.995,0.977,1.075,0.99,0.812,1.044,1.038,1.169,1.102,0.968,0.935,0.849,0.992,1.027,0.925,1.002,0.867,1.035,0.97,0.919,0.854,1.069,0.94 +NM_001710,0.209,1.855,0.477,0.653,0.148,1.32,0.978,0.0786,0.15,0.161,0.852,0.145,0.136,0.126,0.623,1.211,0.358,1.074,0.284,1.456,0.183,0.14,0.62,0.196,0.696,0.131,0.804,0.12,0.431,1.519,0.128,3.363,4.475,1.465,0.108,0.887,1.339,0.166,2.429,1.27,0.322,2.956,1.028,3.368,0.299,0.868,0.966,0.144,1.194,0.475,1.192,2.55,0.577,3.503 +NM_001711,0.429,0.571,1.649,1.003,0.763,0.718,0.72,0.535,0.573,2.078,0.751,1.361,0.671,0.829,0.475,1.684,1.082,0.434,2.544,0.612,2.73,0.743,1.715,1.727,0.72,1.228,1.018,0.975,0.499,1.245,0.606,33.79,0.475,0.377,0.528,1.066,0.571,2.621,0.42,9.62,1.085,1.94,0.481,0.914,1.771,0.462,1.314,0.464,0.487,1.331,0.889,3.743,2.002,1.317 +NM_001712,0.656,0.269,2.237,0.548,0.806,0.907,0.472,0.741,1.557,1.49,0.733,0.634,0.691,0.939,1.113,1.17,2.488,0.927,1.125,0.919,0.585,0.79,1.324,1.567,0.201,0.72,2.582,0.928,0.344,0.691,1.012,0.267,1.144,0.497,0.73,0.978,1.381,0.811,0.909,2.048,2.103,1.005,0.995,0.912,1.718,1.172,2.351,0.853,3.23,1.931,1.095,1.377,1.766,1.104 +NM_001713,1.024,1.422,0.976,0.984,0.97,1.089,1.156,0.961,0.962,1.093,0.844,0.892,0.933,0.898,0.84,1.121,0.905,1.079,0.931,1.177,1.058,0.993,0.95,0.916,1.663,0.986,0.973,0.955,0.982,1.019,1.085,1.001,0.859,1.546,0.891,1.08,1.098,0.918,1.561,1.011,1.024,0.964,1.157,1.024,1.074,0.935,1.1,0.982,0.901,0.875,0.94,1.094,0.875,0.95 +NM_001714,0.945,1.038,0.937,0.967,0.768,1.137,0.842,0.826,1.008,0.935,0.867,1.041,1.041,0.795,1.038,0.976,0.991,1.124,0.87,1.025,0.968,0.896,1.101,1.049,0.756,0.948,0.964,0.953,0.915,0.955,0.891,1.309,1.829,1.041,1.065,1.279,1.003,0.999,1.043,1.341,1.017,1.178,0.869,1.525,0.919,0.981,0.887,0.967,1.081,0.884,1.026,1.181,0.944,1.017 +NM_001716,1.887,1.899,2.262,2.08,1.942,1.936,1.928,1.9809999999999999,2.206,1.998,1.8050000000000002,2.024,2.208,2.083,1.982,2.011,2.053,2.047,2.01,2.041,1.896,1.885,1.887,2.12,1.9940000000000002,2.07,1.5979999999999999,2.1189999999999998,1.953,2.005,1.8809999999999998,2.0789999999999997,2.072,1.9409999999999998,2.122,2.067,2.016,1.8820000000000001,2.005,2.008,1.9609999999999999,1.8809999999999998,2.018,1.9849999999999999,2.123,2.151,1.814,2.077,1.821,2.089,2.024,1.95,1.903,2.032 +NM_001717,1.166,0.968,1.62,1.027,1.161,0.94,0.889,0.843,1.33,1.359,0.869,1.142,1.168,1.157,0.929,1.065,1.336,0.975,1.274,1.064,1.049,0.965,0.865,1.245,0.957,1.118,1.505,1.195,0.844,0.931,1.274,0.891,1.209,0.968,0.896,0.964,0.876,1.098,0.956,0.906,1.174,0.864,0.714,1.036,1.19,1.089,1.17,1.09,0.919,1.266,0.894,1.206,2.089,1.083 +NM_001718,0.828,1.188,0.822,0.867,0.916,1.046,1.329,0.772,0.918,1.014,1.075,0.942,0.896,0.762,1.133,1.028,0.816,0.662,0.783,1.068,0.797,0.843,1.107,0.947,0.939,0.878,0.864,1.013,0.86,1.563,0.974,1.247,1.076,1.609,0.799,0.959,1.104,1.062,1.167,1.668,0.929,1.689,0.825,0.994,0.902,0.978,0.97,0.793,0.857,0.84,1.068,1.06,0.748,1.04 +NM_001719,1.174,1.276,2.299,1.028,1.675,0.763,0.845,0.899,1.29,1.341,0.755,1.491,1.448,1.125,0.88,0.788,1.76,1.249,0.98,0.964,0.957,1.353,0.857,1.443,0.755,1.465,1.456,1.894,0.813,1.252,1.126,0.741,1.805,0.844,0.767,0.748,0.703,2.245,1.025,1.018,2.309,0.776,0.616,1.779,1.383,0.901,0.948,1.269,0.766,1.147,0.913,0.936,1.009,0.713 +NM_001720,0.947,0.943,1.031,0.942,1.006,1.048,0.904,0.92,0.919,1.196,0.979,0.968,0.969,1.016,0.872,1.148,0.962,0.873,1.026,1.082,0.962,0.972,0.906,1.078,1.047,0.885,1.156,1.046,1.151,1.044,0.847,1.006,1.12,0.822,1.055,1.003,1.02,0.826,1.066,1.07,0.915,0.909,0.928,1.152,0.954,0.969,0.996,1.034,1.004,1.055,1.006,1.055,1.001,1.086 +NM_001721,1.063,1.092,0.878,1.043,0.867,1.0,0.979,1.092,0.897,0.879,0.856,0.98,1.045,0.883,0.918,0.958,1.019,0.895,0.999,0.988,0.827,1.005,0.985,0.99,1.143,0.994,0.983,1.027,0.682,0.924,0.924,1.16,0.994,1.011,0.822,1.057,1.08,1.048,1.112,1.034,0.869,0.976,0.984,0.837,1.0,0.889,1.014,0.831,1.114,0.905,1.097,1.109,0.895,0.969 +NM_001723,2.41,1.714,4.683,1.732,3.1029999999999998,2.083,1.6,2.138,2.491,4.15,1.804,2.364,1.9980000000000002,2.063,2.06,1.8359999999999999,3.3550000000000004,2.2030000000000003,2.401,2.399,2.147,2.437,1.6480000000000001,2.993,1.841,1.808,4.443,2.6310000000000002,1.448,1.976,2.8040000000000003,1.766,3.715,1.627,1.827,1.912,1.746,3.703,2.459,1.9779999999999998,3.55,1.863,1.5379999999999998,1.734,2.938,2.293,2.871,2.194,2.184,2.55,2.206,2.158,2.977,2.269 +NM_001724,1.282,0.85,1.094,1.004,1.582,0.914,0.728,0.855,1.615,0.952,0.869,1.033,0.897,1.316,1.485,1.052,1.199,0.799,1.208,1.036,0.776,0.635,1.045,1.095,0.782,1.111,1.984,1.305,0.642,1.062,2.343,1.306,2.187,1.111,1.288,0.712,0.811,1.334,1.05,0.798,1.609,0.817,0.711,0.9,1.115,0.951,1.23,1.095,0.755,1.074,0.994,1.236,1.374,1.528 +NM_001725,1.112,0.929,0.911,1.104,0.81,1.022,1.108,1.106,0.977,1.0,0.976,1.004,1.071,0.928,0.867,0.988,0.948,0.912,0.975,0.952,1.042,1.033,0.966,0.911,1.137,0.932,0.975,1.013,1.218,0.966,0.898,0.951,1.057,0.942,1.048,0.889,0.967,0.939,0.972,1.095,0.965,0.973,1.07,1.033,0.983,0.925,1.005,1.046,0.883,0.877,1.023,1.038,1.013,1.099 +NM_001726,1.0,0.949,0.929,0.898,0.916,1.174,0.805,0.958,1.061,1.117,1.017,1.066,1.005,1.094,0.925,1.066,0.969,1.1,1.016,0.961,0.954,0.971,1.109,0.931,1.011,1.03,0.883,1.0,1.016,1.027,1.025,1.015,0.861,0.953,1.128,0.934,0.898,0.943,1.031,0.973,1.071,1.049,0.978,1.065,0.996,0.895,1.057,1.057,1.055,1.02,0.918,0.937,0.931,0.954 +NM_001727,0.959,0.951,1.037,0.97,0.932,0.959,0.832,1.086,1.184,0.961,0.884,1.034,0.957,1.01,0.902,0.982,0.936,1.076,0.962,1.008,0.901,0.957,1.229,1.098,1.054,1.083,1.085,1.099,1.141,0.863,0.999,0.992,1.018,0.831,0.959,1.164,0.841,0.971,1.164,1.041,0.925,1.09,1.22,1.015,0.962,1.038,1.004,1.051,1.079,0.952,0.983,1.022,1.079,0.943 +NM_001728,0.99,0.884,1.013,1.057,0.818,1.002,1.067,1.18,0.882,1.009,0.881,1.021,0.914,1.013,0.981,1.029,0.959,1.05,1.162,0.93,1.083,1.022,0.978,0.994,0.872,0.941,1.078,1.045,0.665,0.983,1.041,0.981,0.9,1.022,0.935,1.066,1.217,0.897,0.988,0.965,0.972,0.99,0.942,1.093,0.906,0.984,1.053,0.941,0.981,0.917,1.057,1.139,0.962,0.961 +NM_001730,0.762,0.659,1.864,0.487,1.158,1.186,0.498,0.652,2.084,1.307,0.648,0.578,0.708,0.844,1.238,2.424,1.091,1.224,1.314,1.0,0.368,1.396,1.226,1.579,0.245,0.617,1.739,1.229,0.329,1.02,2.103,0.658,2.077,1.025,0.519,0.257,0.896,1.196,1.122,0.535,1.298,0.832,0.557,0.718,1.321,0.961,1.142,1.199,1.002,1.245,0.953,0.595,0.562,1.128 +NM_001731,0.426,0.979,1.774,0.535,0.618,1.717,0.736,0.604,0.718,0.355,1.674,0.944,0.515,0.442,1.16,2.212,0.829,0.962,1.089,2.108,0.402,0.46,1.517,1.046,0.725,0.447,1.426,0.862,0.49,0.819,0.631,0.887,0.789,1.663,0.558,0.718,1.703,0.786,1.274,1.753,1.091,1.543,0.764,0.51,0.781,1.435,0.733,0.438,0.85,1.308,1.537,0.675,0.839,1.615 +NM_001732,0.938,0.787,1.141,1.216,1.054,0.966,1.138,0.979,1.024,1.061,1.016,0.921,0.964,1.038,0.939,1.07,0.946,1.035,1.057,0.959,1.072,0.902,0.952,1.015,1.153,1.036,0.886,0.994,1.128,0.952,1.082,0.918,0.932,0.893,1.137,0.96,1.115,1.02,0.997,1.098,0.894,1.067,1.073,1.029,0.927,0.997,0.894,0.901,1.064,0.978,1.053,1.184,1.028,1.006 +NM_001733,0.932,1.035,1.172,1.048,0.771,0.818,1.235,0.818,0.869,0.976,0.821,0.798,0.754,1.149,1.068,0.977,1.029,0.817,0.972,0.878,0.8,0.812,1.226,0.925,1.048,0.961,1.335,0.985,1.149,1.02,0.904,4.683,1.164,1.324,0.764,0.809,0.908,0.949,1.597,1.378,1.093,1.464,0.905,1.026,1.173,0.959,0.818,0.923,0.908,1.133,0.913,1.343,1.078,1.355 +NM_001734,0.426,1.358,0.885,0.523,0.526,1.35,1.084,0.459,0.461,0.623,0.92,0.441,0.412,0.378,1.278,1.298,0.584,0.537,0.74,0.84,0.667,0.414,2.073,0.746,0.951,0.402,2.095,0.583,0.636,2.627,0.458,15.77,2.203,3.374,0.309,0.626,1.013,0.753,2.51,1.925,0.876,3.354,0.838,0.759,0.526,1.186,0.681,0.385,0.501,0.693,1.362,2.565,1.414,2.641 +NM_001735,0.926,1.653,1.233,0.821,0.961,1.042,0.833,0.857,1.213,1.147,1.277,1.099,0.863,0.916,0.859,1.106,0.93,0.83,1.029,0.831,0.825,1.049,0.977,1.162,1.505,0.966,1.375,1.016,0.524,2.382,0.988,1.606,1.333,0.936,0.638,0.827,1.033,1.078,1.1,0.799,1.061,1.004,0.857,1.006,1.027,0.877,0.887,0.837,0.739,0.794,0.948,0.754,0.923,1.126 +NM_001737,1.194,1.131,1.053,0.936,1.064,0.941,1.012,1.076,0.962,0.929,1.05,1.097,0.996,1.171,0.995,1.062,0.85,0.881,1.151,1.034,1.099,0.994,0.981,1.061,1.088,1.161,0.95,0.988,1.124,1.01,1.053,0.867,0.897,1.035,1.108,1.13,1.003,1.008,1.027,1.227,0.948,0.809,1.299,0.987,0.858,1.138,0.975,1.065,0.962,0.844,1.045,1.092,0.903,0.956 +NM_001738,0.863,1.094,0.99,5.666,1.05,5.819,0.917,1.129,0.881,0.949,3.815,0.88,0.919,0.83,59.86,16.76,0.879,1.067,0.897,20.16,1.037,0.969,19.88,0.847,1.041,0.979,0.74,0.876,1.005,8.137,0.952,0.954,0.97,1.148,0.854,1.179,28.76,0.949,1.135,0.857,0.987,7.833,31.19,0.877,0.946,6.0,1.338,1.004,8.492,0.892,4.639,0.98,1.187,0.853 +NM_001739,0.977,1.006,0.987,0.86,0.951,1.055,0.978,1.511,0.859,0.957,0.908,1.062,0.942,1.171,1.346,1.027,0.987,0.96,1.092,0.882,1.119,0.918,0.911,0.983,0.922,1.171,1.151,1.0,0.596,1.03,0.994,1.064,0.915,0.973,1.086,0.892,1.062,0.938,0.942,1.111,1.047,1.113,0.926,1.03,1.051,0.871,1.094,0.966,1.011,0.869,1.003,0.935,0.973,1.008 +NM_001741,0.95,0.964,1.003,0.888,0.974,0.813,1.088,1.157,1.026,0.934,1.042,1.075,0.903,1.113,0.884,0.992,1.054,1.081,0.958,0.941,1.057,0.969,1.182,0.996,0.891,0.917,0.856,0.991,1.133,0.81,0.948,0.971,0.927,0.984,1.06,1.57,0.887,0.961,1.036,1.154,1.0,0.973,0.993,1.053,1.063,0.991,1.045,1.0,0.959,1.037,0.92,0.977,1.022,0.93 +NM_001742,0.987,0.985,1.016,1.048,1.168,1.065,0.966,1.048,0.948,1.046,1.125,1.126,1.011,0.972,0.856,0.9,1.042,1.065,0.981,0.864,1.046,1.004,0.98,1.016,1.143,0.944,1.048,0.956,0.905,0.949,0.99,1.03,1.106,0.956,1.114,1.003,0.943,0.859,0.915,0.976,0.832,1.035,0.9,1.027,1.099,0.915,0.961,1.066,0.813,1.085,1.012,0.996,1.138,1.029 +NM_001743,0.388,1.287,0.926,0.714,0.658,2.135,0.847,0.55,0.886,0.684,1.442,0.862,0.59,0.435,1.247,2.951,0.518,1.054,0.724,1.327,0.303,0.677,1.74,0.957,0.489,0.378,1.01,0.742,0.575,1.488,0.809,1.266,2.559,1.981,0.103,0.677,1.9,0.714,1.467,0.99,0.906,1.446,0.816,0.912,0.682,1.394,1.327,0.483,1.506,0.455,1.653,0.814,0.446,1.455 +NM_001744,0.902,1.006,1.06,1.119,1.009,1.013,0.867,1.057,0.994,1.058,0.848,1.002,1.06,0.855,0.865,1.253,0.963,0.994,0.932,0.854,0.781,0.89,0.813,1.118,1.004,1.154,0.997,0.976,1.186,1.01,1.128,0.922,1.017,1.181,0.899,0.853,1.125,0.874,0.92,1.027,0.991,0.793,0.904,0.972,1.214,1.26,1.084,0.961,0.984,1.002,1.036,0.936,0.956,1.13 +NM_001745,0.607,1.477,1.415,0.565,1.256,1.062,0.559,0.705,1.186,1.054,1.202,1.372,0.701,0.679,0.933,1.496,0.832,1.019,1.125,1.201,0.369,0.908,1.242,1.032,0.485,0.701,1.29,0.98,0.395,1.364,0.857,1.764,1.272,1.491,0.324,0.909,1.228,1.324,0.956,0.775,1.127,1.52,0.751,0.855,0.82,1.017,1.178,0.764,0.642,0.602,0.977,1.25,0.84,1.244 +NM_001746,0.428,0.902,0.994,0.646,0.766,1.276,0.703,0.419,0.842,0.729,1.02,0.717,0.459,0.459,0.811,1.861,0.635,0.884,0.851,1.166,0.449,0.726,1.357,0.772,0.735,0.667,1.121,0.678,0.459,1.384,0.611,1.469,3.02,1.56,0.11,1.059,1.38,0.762,1.527,0.905,0.813,1.461,0.7,0.772,0.734,1.233,1.006,0.509,1.518,0.689,1.29,1.067,0.724,1.858 +NM_001747,1.069,0.603,1.181,1.174,0.857,1.053,0.408,0.733,1.153,1.043,0.895,0.968,1.108,0.659,0.794,1.495,0.883,1.215,1.683,1.023,0.427,1.239,0.927,1.152,0.665,1.469,1.042,0.925,0.702,1.156,1.199,0.86,1.494,1.738,0.39,1.203,0.764,1.138,1.67,0.829,1.19,0.875,0.242,1.307,0.906,0.995,0.956,1.502,0.545,1.359,0.692,0.619,1.002,1.114 +NM_001748,0.746,0.96,1.242,0.855,0.875,1.283,0.584,0.791,1.025,0.742,1.053,0.776,0.767,0.701,0.784,1.244,0.989,0.998,1.036,1.15,0.457,0.937,0.971,0.966,0.613,0.915,1.238,1.002,0.494,1.159,1.19,1.057,1.238,1.517,1.17,0.945,1.265,1.133,1.173,0.523,0.984,1.245,0.631,0.871,1.045,1.147,0.827,1.02,0.8,0.681,1.396,0.756,0.896,1.132 +NM_001749,0.997,0.768,1.116,0.98,1.063,1.652,0.466,1.012,1.382,0.864,1.099,0.795,1.105,0.787,1.078,1.98,1.082,0.853,1.65,0.917,0.786,1.084,1.161,1.205,0.646,1.532,1.049,0.903,0.353,1.164,1.249,0.648,1.705,1.766,0.963,0.491,0.899,1.1,1.734,0.552,1.055,1.135,0.478,0.948,1.04,0.796,0.792,1.039,0.784,1.105,1.124,0.461,0.907,0.905 +NM_001750,0.948,0.936,0.843,1.036,1.345,1.274,0.921,0.776,1.787,0.868,0.998,1.051,0.933,0.764,0.662,0.732,1.043,0.808,0.758,1.252,0.76,0.941,0.952,1.252,1.019,0.831,1.059,1.802,0.915,1.317,0.815,3.649,1.84,1.004,1.0,0.872,0.829,1.225,1.608,1.005,1.501,1.099,1.127,0.882,0.852,1.209,1.412,0.823,1.074,1.034,1.084,0.905,0.995,1.198 +NM_001751,0.546,0.799,2.377,0.93,0.767,1.399,0.811,0.449,0.894,0.945,1.127,0.677,0.478,0.637,1.108,1.565,0.842,0.885,1.126,1.193,0.669,0.648,1.237,1.185,0.598,0.782,0.943,0.564,0.594,1.363,0.825,1.12,1.426,1.54,0.497,1.728,1.084,1.673,1.25,0.954,0.885,1.04,0.843,1.166,0.774,1.163,0.894,0.69,0.966,0.75,1.131,0.781,1.085,2.133 +NM_001752,0.498,1.617,0.819,1.129,0.655,1.407,0.827,0.346,0.86,0.71,2.164,0.598,0.523,0.575,1.188,2.328,0.548,0.893,0.761,2.413,0.534,0.497,1.773,0.522,1.182,0.718,0.714,0.617,0.432,3.07,0.691,0.984,1.561,2.026,0.232,0.874,1.546,0.732,2.046,0.625,0.654,2.456,1.416,0.798,0.529,1.736,0.859,0.444,1.568,0.57,1.821,0.844,0.572,0.884 +NM_001753,0.828,0.886,1.266,0.923,1.134,0.853,1.128,0.814,0.908,1.241,0.83,0.951,0.855,0.951,0.872,1.07,0.925,1.008,0.822,1.055,0.82,0.78,1.186,0.946,0.958,0.802,1.079,1.02,0.911,1.175,0.936,1.36,1.146,1.343,0.813,0.862,0.931,0.933,1.084,1.025,1.008,1.318,1.012,0.864,1.119,0.842,1.122,0.82,0.885,0.817,1.034,1.186,0.988,1.73 +NM_001754,0.603,1.878,0.863,0.885,0.718,1.25,1.006,0.587,0.753,0.757,0.765,0.545,0.592,0.679,0.67,0.833,0.854,1.104,0.726,1.982,0.549,0.695,1.154,0.768,1.235,0.817,0.757,0.808,0.911,1.802,0.656,4.494,1.184,1.398,0.431,0.932,1.07,0.765,1.622,2.675,0.878,1.395,0.592,0.528,0.741,1.116,0.804,0.568,0.592,0.636,1.161,1.129,0.873,0.931 +NM_001756,0.996,0.967,1.046,0.91,0.917,0.991,0.927,1.156,0.942,1.07,1.337,0.96,1.117,1.162,1.044,1.001,0.909,1.107,0.964,1.594,1.057,0.91,0.968,0.878,0.895,0.997,0.96,0.911,0.824,0.933,1.101,1.143,0.927,1.046,0.978,0.892,1.06,1.03,0.932,1.044,0.967,0.923,1.059,1.015,1.035,1.018,0.869,0.894,1.134,0.885,1.01,0.948,0.798,1.01 +NM_001757,0.636,1.17,1.237,0.931,1.255,1.003,0.948,0.649,1.088,1.322,1.03,1.096,0.825,0.626,0.887,3.104,0.848,1.393,1.341,1.064,0.908,0.914,1.209,0.916,0.794,1.014,1.032,1.104,0.988,1.147,1.149,0.696,1.051,1.842,0.333,0.533,1.583,0.862,0.887,0.444,1.242,0.972,0.774,0.825,1.199,0.935,1.125,0.8,0.696,1.08,0.935,0.618,1.295,0.73 +NM_001759,0.692,0.638,1.25,0.486,1.01,0.46,0.436,0.402,0.83,2.039,2.113,0.617,0.534,0.503,2.376,5.382,0.995,0.728,0.942,0.86,1.005,0.632,4.96,1.211,0.465,0.755,1.232,0.698,0.198,1.246,0.613,3.626,8.203,1.569,0.148,1.14,1.911,0.91,1.395,1.432,1.026,1.362,1.733,0.238,1.338,4.343,2.716,0.788,4.074,1.429,1.802,1.532,2.624,1.397 +NM_001760,0.843,0.872,0.651,0.887,0.625,1.482,0.647,0.358,0.794,0.675,1.305,0.684,0.574,0.522,0.983,1.901,1.067,0.825,0.984,0.799,0.603,0.636,1.21,0.774,0.735,0.858,1.009,0.504,0.712,1.307,0.646,1.856,2.261,1.222,0.512,0.893,1.3,0.769,2.021,1.293,0.687,1.177,0.847,1.467,0.716,1.1,1.0,0.593,1.301,1.08,1.168,1.536,0.821,1.04 +NM_001761,0.861,1.011,1.107,0.941,1.021,0.891,0.866,0.845,0.964,0.927,0.951,0.846,0.941,0.867,0.828,1.039,1.017,0.951,1.384,0.804,1.121,1.054,1.222,1.161,0.882,0.986,1.555,0.893,0.706,1.06,1.008,1.047,2.389,1.013,0.782,1.198,0.982,0.891,1.449,1.118,1.038,0.806,0.913,1.253,1.009,1.048,1.234,0.916,1.118,1.018,0.981,0.938,0.973,1.193 +NM_001762,0.575,0.948,1.256,0.516,0.851,1.089,0.609,0.649,1.147,1.306,0.584,1.082,0.705,0.507,0.93,1.56,0.932,0.72,1.03,0.9,0.575,1.112,1.649,1.383,0.447,0.65,1.557,0.953,0.441,1.249,1.218,1.337,4.289,0.999,0.272,0.71,0.816,1.315,1.225,1.555,1.209,1.008,0.471,1.093,1.14,0.764,1.051,0.774,1.204,0.976,1.041,0.9,0.722,2.246 +NM_001764,0.95,1.0,1.133,0.908,0.979,0.94,1.054,1.038,1.021,1.172,0.863,0.982,0.993,1.041,1.18,0.98,0.994,1.039,1.15,0.922,0.991,0.942,0.995,1.07,1.072,0.985,1.204,1.024,0.982,1.029,0.943,0.895,0.918,0.935,0.996,0.936,1.029,0.993,0.921,0.941,0.969,0.978,1.107,1.038,0.971,1.104,1.003,1.006,0.918,1.018,1.107,1.072,1.179,1.1 +NM_001765,1.073,0.791,1.15,0.938,0.985,0.886,1.174,1.219,1.135,1.033,0.897,1.07,1.136,0.975,1.281,0.91,1.217,1.047,1.168,0.938,0.879,1.358,1.017,1.136,0.957,1.018,1.106,1.131,0.855,1.106,1.168,0.852,0.891,1.121,0.832,1.005,1.017,1.26,0.998,0.9,1.019,1.073,1.181,0.783,1.089,0.879,0.856,0.902,0.95,0.981,0.918,0.907,1.071,0.882 +NM_001767,0.713,1.091,2.628,0.774,0.957,1.15,1.01,0.813,1.092,0.872,0.772,0.838,1.303,0.83,0.795,0.701,1.366,0.79,0.985,1.002,0.797,1.038,0.926,0.985,1.084,0.722,2.286,0.995,0.728,1.458,1.01,2.009,1.036,1.28,0.655,0.624,1.078,0.811,1.454,0.775,1.441,1.443,0.685,0.697,1.246,0.712,0.721,0.705,0.792,1.054,0.879,0.813,1.572,3.014 +NM_001768,0.872,0.972,0.957,1.03,1.066,1.07,0.966,0.826,0.885,1.116,1.115,0.858,1.09,1.161,1.125,0.767,0.969,0.996,1.041,0.924,0.968,0.941,1.035,0.921,1.179,1.034,1.007,1.039,1.169,1.177,0.941,0.968,1.153,1.013,1.026,1.068,1.111,1.203,0.915,0.831,0.898,1.059,0.855,0.829,0.938,1.05,0.97,1.147,0.857,0.937,0.859,1.071,0.942,1.056 +NM_001769,1.159,0.397,2.861,0.748,1.337,0.767,0.213,0.939,2.271,1.341,0.594,0.89,1.258,0.986,1.09,1.699,1.527,1.279,1.778,0.895,0.944,1.437,1.29,1.647,0.148,1.493,2.568,1.678,0.179,0.856,1.777,0.679,2.262,0.602,0.635,1.095,0.725,2.164,0.937,0.659,2.091,0.772,0.421,1.129,1.721,0.903,1.306,1.511,0.79,1.446,1.123,0.861,1.266,1.4 +NM_001770,0.869,1.031,1.113,0.924,1.075,1.104,1.591,1.147,0.935,1.248,0.845,0.91,0.927,0.95,1.102,0.951,0.862,1.083,1.092,0.92,0.964,1.039,0.786,0.892,0.931,0.963,0.852,1.018,1.148,0.861,1.066,0.908,1.243,1.034,0.904,1.149,1.105,0.993,0.982,1.144,0.873,1.63,0.917,1.006,0.972,1.36,0.913,0.821,1.012,0.952,1.119,1.1,1.075,1.151 +NM_001771,0.941,0.999,0.992,1.078,0.891,0.945,1.255,0.882,1.036,0.869,1.034,0.933,1.033,1.071,0.946,0.876,0.944,1.136,0.811,0.912,1.018,0.93,1.074,0.891,0.959,0.915,1.069,0.944,0.841,1.171,0.942,1.2,0.886,1.313,0.91,0.867,0.857,1.089,1.15,0.963,0.998,1.302,0.812,0.984,0.931,1.162,0.924,0.89,0.921,0.928,0.958,1.007,1.082,1.023 +NM_001773,0.767,1.324,0.928,0.704,0.796,1.003,1.058,0.81,0.769,0.934,0.812,0.76,0.78,0.698,0.815,1.063,0.659,0.867,1.036,0.925,1.266,0.983,1.158,0.814,1.167,0.841,0.826,0.933,1.119,1.387,0.755,2.952,1.898,1.751,0.721,1.055,0.846,1.09,1.861,1.628,0.969,1.869,0.814,0.877,0.941,0.879,1.001,0.808,0.809,0.825,0.948,1.612,1.074,1.159 +NM_001774,0.839,0.902,1.348,1.298,0.852,0.986,1.113,0.918,0.998,0.781,0.845,0.759,1.091,0.828,0.96,0.815,1.076,0.893,0.858,0.918,1.033,0.858,0.926,0.885,1.089,0.883,1.203,0.809,0.805,1.219,0.925,1.511,0.905,1.231,0.802,0.67,0.816,0.837,1.498,2.076,0.974,1.502,0.935,0.946,1.009,0.852,0.856,0.837,0.893,0.921,0.864,1.262,1.471,1.866 +NM_001775,0.907,0.933,1.177,0.982,1.117,0.999,2.082,1.017,1.036,0.888,0.914,1.047,0.918,0.899,0.981,0.777,0.975,0.832,1.04,0.817,0.84,0.906,0.913,1.109,0.938,0.937,0.992,0.925,0.94,0.998,0.869,1.268,0.708,1.444,0.8,0.655,1.359,0.908,1.354,0.812,0.982,1.871,0.742,0.898,1.0,1.018,0.987,0.794,0.815,0.884,1.407,1.147,0.993,3.716 +NM_001776,0.825,1.16,1.046,0.909,0.808,0.986,1.117,0.854,0.873,0.858,1.005,0.87,0.847,0.82,0.923,0.886,0.867,1.115,0.739,0.96,0.976,0.698,1.27,0.955,0.867,0.773,1.284,0.813,0.57,1.155,0.832,3.686,1.328,1.328,0.912,1.043,0.956,0.986,1.467,1.978,0.902,1.331,0.801,0.846,0.904,0.863,1.163,0.797,0.902,0.933,1.183,1.556,1.041,2.598 +NM_001778,0.648,1.136,2.057,1.012,0.744,1.132,1.575,0.898,0.915,0.602,0.623,0.812,1.544,0.526,0.699,0.714,1.081,0.93,0.944,0.696,0.776,0.782,0.97,0.815,1.024,0.581,1.569,0.854,0.455,1.37,0.779,1.304,0.905,1.457,0.451,0.589,1.513,0.837,1.51,2.276,1.385,1.65,0.714,0.785,1.235,0.722,0.866,0.643,0.7,0.824,0.704,1.962,1.66,2.419 +NM_001779,0.617,0.681,1.051,0.762,0.898,1.529,0.606,0.998,1.401,0.988,1.507,0.88,0.792,0.881,1.217,2.654,0.642,0.989,1.096,1.221,0.558,1.174,1.044,1.367,0.423,0.703,1.442,0.875,0.615,1.146,1.204,0.781,2.499,1.12,0.345,0.746,1.443,0.821,1.44,0.752,1.191,0.982,0.631,0.78,0.964,1.106,1.025,0.788,1.146,0.643,1.104,0.822,0.634,1.282 +NM_001780,0.296,1.153,0.347,0.986,0.281,1.532,0.925,0.186,0.469,0.308,1.487,0.258,0.372,0.214,0.579,1.807,0.277,1.345,0.383,1.665,0.238,0.442,1.382,0.417,0.967,0.58,0.372,0.371,0.64,1.915,0.359,1.786,0.624,1.753,0.313,1.107,1.342,0.383,2.311,1.324,0.379,2.056,0.629,1.72,0.362,1.251,0.784,0.492,0.767,0.34,1.452,1.041,0.334,0.894 +NM_001781,1.04,0.93,1.043,0.968,0.947,1.027,1.061,0.845,1.09,0.99,1.023,1.032,0.96,0.967,0.942,1.054,1.017,1.0,1.08,1.039,0.943,1.089,1.095,1.042,0.884,0.974,0.964,0.942,0.914,1.014,1.051,1.087,1.268,1.0,1.034,1.004,0.985,1.054,1.192,1.156,0.934,0.874,1.026,0.923,0.941,1.085,1.037,0.961,1.078,0.86,0.889,1.031,0.855,1.256 +NM_001782,0.992,1.152,0.989,0.967,0.762,0.914,0.885,0.868,0.892,0.929,1.002,0.737,1.007,0.823,1.133,0.972,0.815,1.062,1.114,0.954,1.019,0.949,1.065,0.985,1.052,0.964,0.991,0.888,1.887,1.051,1.185,1.389,0.967,1.096,0.889,0.959,0.949,1.0,1.016,1.047,1.076,1.057,0.721,1.036,1.017,1.028,0.974,0.874,0.79,0.852,0.909,1.031,1.002,1.16 +NM_001783,0.914,1.0,0.914,1.021,0.906,0.998,1.174,1.001,0.917,1.133,1.098,0.893,0.917,1.061,1.021,1.042,0.924,1.087,0.922,1.037,0.899,0.948,0.997,0.935,1.047,0.845,0.736,1.005,1.533,1.03,1.184,0.886,1.074,1.097,1.129,1.014,0.999,1.009,1.007,0.92,0.957,1.332,0.837,0.884,0.981,0.937,1.118,0.999,0.975,1.006,0.982,0.998,1.055,0.955 +NM_001784,0.185,1.107,0.504,0.712,0.295,0.888,0.675,0.201,0.229,0.231,1.236,0.163,0.211,0.221,0.991,2.113,0.265,0.5,0.241,1.343,0.205,0.22,3.283,0.248,0.589,0.217,0.576,0.227,0.414,1.452,0.262,1.704,1.664,1.565,0.247,1.604,1.664,0.314,3.245,2.803,0.285,1.622,1.872,1.715,0.279,1.402,0.704,0.228,1.487,0.221,2.267,1.927,0.476,3.586 +NM_001785,1.227,0.081,2.675,0.642,3.076,0.188,0.073,2.276,2.513,3.113,0.351,3.143,0.763,1.546,1.885,2.537,1.469,2.187,4.071,0.533,0.897,1.803,0.564,2.183,0.063,1.598,0.578,2.971,0.0689,0.102,1.983,0.194,1.126,0.083,0.947,1.326,0.801,3.278,0.331,0.661,1.569,0.111,0.326,0.135,2.494,0.785,3.42,2.403,0.835,1.463,1.08,1.406,2.368,0.389 +NM_001786,0.887,1.05,1.294,1.108,1.065,1.058,0.923,0.836,1.175,1.017,0.871,0.869,0.844,0.809,0.941,1.311,0.903,1.065,0.924,0.933,0.77,0.888,1.276,1.206,0.816,0.791,1.686,0.911,0.716,0.914,1.049,1.074,3.36,0.96,0.785,0.929,0.917,0.9,1.56,0.949,1.086,0.875,0.893,1.85,0.892,1.184,1.221,0.85,1.396,0.995,1.108,1.16,0.791,3.207 +NM_001788,0.821,0.818,1.426,0.788,1.184,1.686,0.965,1.828,1.039,0.911,0.8,1.097,1.146,0.961,1.142,1.655,1.176,0.993,0.855,0.997,0.718,1.481,0.936,1.565,0.911,0.664,1.163,1.015,0.969,1.272,1.493,1.712,2.362,0.985,0.785,0.684,0.947,1.394,1.285,1.122,0.957,0.886,0.748,0.748,1.007,0.841,1.156,0.968,1.215,0.852,1.351,0.815,0.729,1.259 +NM_001789,0.966,1.089,0.992,1.106,0.993,0.813,1.174,0.965,1.018,1.171,1.035,1.025,1.13,0.911,0.89,0.948,0.949,1.038,1.018,1.079,0.975,1.013,1.058,0.996,0.945,0.991,0.959,0.995,0.973,1.042,1.074,1.012,0.961,0.934,1.051,0.99,0.986,0.817,1.072,0.974,1.027,1.043,1.071,0.958,0.957,1.023,1.076,0.834,0.914,1.045,0.977,1.109,1.104,0.983 +NM_001790,0.79,0.891,1.12,1.133,0.807,1.082,1.025,0.98,1.211,0.824,0.891,1.049,0.977,1.195,0.994,1.116,0.93,0.928,1.085,1.026,1.0,0.887,1.317,0.965,1.016,0.88,1.071,0.812,0.719,1.068,0.839,1.186,2.198,1.046,0.817,1.104,1.084,1.028,1.129,0.861,1.065,0.851,1.112,1.052,0.895,1.152,1.079,0.814,1.195,0.992,1.059,1.048,1.014,1.254 +NM_001791,0.512,1.024,0.999,0.552,0.983,1.364,0.643,0.833,1.078,0.773,1.235,0.858,0.568,0.506,0.95,2.326,0.746,1.123,1.538,1.118,0.698,0.848,1.208,1.061,0.501,0.824,1.145,1.001,0.508,1.056,1.031,0.811,2.169,1.552,0.405,1.035,1.299,0.939,1.155,0.68,1.023,1.102,0.653,0.819,0.901,1.025,1.173,0.689,1.059,0.657,1.065,0.646,1.063,1.251 +NM_001792,1.175,1.565,1.059,0.781,0.885,0.951,1.224,0.802,0.836,1.001,0.824,1.082,0.858,1.076,0.947,1.049,1.001,0.813,0.952,1.153,0.706,0.822,1.086,1.048,2.996,0.835,0.942,0.999,1.478,1.335,0.88,2.795,1.056,1.661,0.952,1.011,0.974,1.173,0.962,1.359,1.164,1.042,0.876,0.956,0.865,1.001,1.07,1.205,0.907,1.187,0.977,1.008,1.144,0.998 +NM_001793,0.746,0.674,3.336,0.517,0.715,0.527,0.368,0.447,0.735,1.675,0.886,0.631,0.62,0.55,0.62,1.209,2.588,0.681,1.166,0.85,1.107,0.506,1.235,1.035,0.314,0.769,4.847,0.517,0.246,0.472,0.802,0.881,4.0,0.381,0.318,0.767,0.745,0.723,1.885,2.139,1.158,0.744,0.548,2.042,2.228,0.914,1.549,0.531,0.81,5.26,1.083,3.121,4.758,2.72 +NM_001794,0.983,1.057,1.204,0.989,1.029,1.02,0.99,1.156,0.963,1.116,0.977,1.06,0.963,1.078,1.038,0.895,0.988,1.064,0.848,0.951,1.049,0.993,1.09,1.046,0.936,1.0,0.909,1.063,0.965,1.1,1.085,0.972,0.946,0.989,1.112,0.934,1.027,0.961,0.912,0.96,1.061,0.95,0.976,1.14,0.963,1.164,1.067,1.098,1.2,0.941,0.989,0.998,1.157,0.999 +NM_001795,0.934,0.968,0.878,0.943,0.955,1.062,1.1,1.003,1.058,0.833,1.058,1.042,0.912,0.992,0.837,1.018,0.958,0.941,1.089,0.939,0.775,0.893,1.101,0.809,1.111,1.016,1.145,1.065,0.851,1.305,0.896,1.462,1.314,0.991,0.96,0.853,0.979,0.983,1.565,1.469,1.116,1.221,1.322,0.974,0.984,0.948,0.861,0.834,1.012,0.943,0.955,1.387,1.159,1.13 +NM_001796,1.063,0.937,0.952,0.962,0.794,1.07,1.076,1.133,1.02,0.921,0.93,1.069,1.228,1.053,0.666,1.284,0.987,0.917,1.36,1.086,1.155,0.976,0.909,0.879,1.094,0.888,0.868,1.126,0.87,1.017,0.985,0.847,0.945,0.81,0.982,1.184,0.949,1.295,0.945,0.892,1.101,0.971,1.075,0.887,0.993,1.198,1.243,0.85,1.136,1.081,0.823,0.888,1.06,1.136 +NM_001797,0.936,0.905,0.835,1.003,0.897,0.956,1.105,0.89,0.831,0.804,0.951,0.956,0.978,0.971,1.0,1.015,0.838,0.936,1.036,1.132,0.95,1.02,1.206,0.91,0.901,0.886,1.066,0.926,0.933,1.245,0.889,7.182,1.539,1.303,0.978,0.992,1.142,0.97,1.448,1.181,0.904,1.04,0.888,1.046,0.984,1.053,1.008,0.983,1.185,0.857,1.028,1.091,0.756,1.372 +NM_001798,1.023,0.997,0.868,0.879,0.869,0.862,0.911,0.971,0.845,1.005,0.915,1.025,0.991,1.141,0.92,0.765,1.102,1.004,1.092,0.873,1.088,0.98,0.951,0.792,1.034,0.949,0.981,1.049,0.638,1.136,1.289,0.997,0.899,1.113,1.081,0.988,1.123,1.176,0.985,1.2,1.004,1.071,1.178,0.996,1.153,1.128,1.094,0.93,0.817,1.048,1.03,0.925,1.065,1.151 +NM_001799,1.335,0.902,1.49,0.891,1.885,0.938,0.683,1.068,2.086,1.591,0.986,1.448,1.063,1.05,1.243,1.092,1.04,1.189,1.48,0.988,0.609,1.535,1.0,1.471,0.446,1.026,1.47,2.094,0.475,1.067,1.74,0.815,1.106,1.177,2.709,0.742,0.851,1.525,0.885,0.407,1.503,0.845,0.473,0.717,1.294,1.0,1.319,1.447,0.661,0.881,0.935,0.79,1.088,1.134 +NM_001800,0.97,0.871,0.998,0.895,1.004,1.0,0.886,1.094,0.976,0.998,0.97,1.109,0.928,0.971,0.895,0.874,1.156,1.166,0.958,0.997,1.101,0.957,1.012,1.081,1.0,1.18,1.02,1.013,0.963,1.078,0.964,1.035,0.935,0.966,0.957,1.004,0.998,1.012,0.951,1.075,0.89,0.997,0.911,1.098,1.013,0.986,1.086,0.967,1.095,0.991,0.937,1.05,0.854,0.85 +NM_001801,0.901,1.004,0.987,1.136,1.266,0.978,0.974,1.21,0.951,1.076,1.101,0.918,0.985,1.235,0.986,0.996,0.997,1.007,0.933,1.27,1.026,0.886,0.983,0.768,1.04,0.918,1.116,0.957,1.077,0.774,0.938,1.274,1.31,1.061,1.106,0.983,0.935,1.01,0.917,0.962,0.856,1.454,1.272,0.941,1.061,0.933,0.955,1.043,0.932,1.042,0.955,0.97,1.051,0.926 +NM_001803,0.681,1.444,2.114,0.934,0.791,1.329,1.094,0.925,0.926,0.85,0.74,0.95,1.375,0.702,0.737,0.682,1.203,0.93,1.0,1.061,1.053,1.024,0.942,0.915,1.25,0.66,2.025,0.919,0.394,1.541,0.861,2.021,0.863,1.628,0.445,0.531,1.102,0.845,1.364,0.863,1.496,1.524,0.532,0.659,1.155,0.764,0.851,0.675,0.679,0.909,0.715,0.969,1.868,2.197 +NM_001804,0.777,1.338,0.779,2.461,0.812,7.065,0.887,0.939,0.816,0.85,18.57,0.84,0.772,0.73,10.76,38.05,0.783,0.827,0.686,14.95,0.8,0.989,25.66,0.788,0.839,0.895,0.895,0.889,0.58,3.63,0.789,0.94,19.64,1.311,0.843,23.02,20.48,0.841,3.449,6.382,0.718,7.997,9.735,0.885,1.024,23.96,15.18,0.862,32.31,0.917,8.072,4.144,0.923,1.73 +NM_001805,0.896,1.067,1.011,0.838,1.142,0.907,0.97,1.083,1.119,0.988,0.872,0.888,0.982,0.942,1.136,1.096,0.951,0.894,0.99,1.003,0.998,1.037,0.957,0.976,0.825,0.939,1.18,0.973,1.227,1.043,1.073,1.015,0.935,1.045,1.12,0.993,1.005,1.007,1.032,1.013,0.923,1.155,0.943,0.888,1.045,0.937,1.158,1.025,0.98,1.026,1.075,0.884,0.958,0.955 +NM_001806,0.747,0.852,1.186,0.754,0.739,1.709,0.795,0.757,1.08,0.857,1.44,0.822,0.748,0.612,1.531,2.56,0.725,0.919,0.909,1.317,0.499,0.881,1.987,1.006,0.652,0.573,0.772,0.815,0.711,1.235,0.881,0.943,2.136,1.244,0.516,0.955,1.5,0.793,1.681,1.041,0.894,1.248,0.933,0.907,0.877,1.441,0.943,0.843,1.836,0.913,1.288,0.728,0.763,1.582 +NM_001807,1.022,0.927,0.942,17.75,0.92,0.984,0.824,1.123,0.96,0.959,0.902,1.004,0.99,1.124,0.964,0.974,1.064,0.923,1.147,1.05,0.999,1.035,0.932,0.962,0.995,1.14,1.188,1.001,1.154,1.03,0.937,0.915,0.974,1.0,1.0,1.022,1.129,0.892,1.0,1.667,1.03,0.961,1.191,0.985,1.022,1.195,0.942,0.936,0.935,1.056,0.906,0.84,1.0,0.942 +NM_001809,0.751,0.783,1.222,0.901,0.843,1.168,0.835,0.72,1.047,1.001,0.955,0.882,0.908,0.734,1.014,1.384,0.929,1.145,1.201,0.815,0.751,0.857,1.81,1.133,0.795,0.8,1.763,0.949,0.62,0.985,0.996,0.916,4.314,0.869,0.674,1.778,1.029,0.841,1.358,1.515,1.058,0.751,0.688,1.597,1.009,1.095,1.249,0.848,1.355,0.827,1.219,0.998,0.875,2.534 +NM_001810,1.101,0.669,0.905,1.042,0.664,1.004,0.747,0.784,0.72,0.78,1.175,0.826,1.1,0.598,0.774,1.429,0.8,0.907,1.295,0.793,1.175,0.66,1.188,0.751,1.243,1.352,0.891,0.71,0.64,0.983,0.879,1.187,2.114,1.381,0.531,1.082,0.972,0.876,2.633,1.605,0.792,0.996,0.694,2.961,1.048,0.693,0.73,1.235,0.765,1.285,0.809,1.087,1.087,1.614 +NM_001812,0.795,1.115,1.559,0.979,0.983,1.042,0.937,0.809,1.256,1.239,1.007,0.915,0.925,0.891,1.332,1.133,0.908,1.027,1.301,1.124,0.808,1.308,1.062,0.97,0.856,0.98,1.779,1.04,0.696,1.11,1.122,1.07,1.409,1.092,0.817,0.857,1.009,0.912,1.033,1.003,1.04,0.919,0.723,0.944,1.04,0.896,0.973,1.026,0.893,0.996,0.997,0.834,1.11,1.109 +NM_001813,0.859,0.904,1.146,0.947,1.056,1.081,1.099,0.788,0.976,0.938,0.994,0.833,0.988,0.809,0.85,1.194,0.858,0.992,0.978,1.026,0.94,0.857,1.343,1.133,0.884,0.926,1.354,1.066,0.834,0.965,0.914,1.405,1.707,0.927,0.625,1.259,0.858,0.896,1.388,1.016,1.1,1.026,0.755,1.198,1.106,0.979,1.099,0.967,1.407,0.838,1.176,0.822,0.983,1.486 +NM_001814,0.52,1.314,1.195,0.587,0.824,0.89,0.725,0.305,0.915,0.892,2.044,0.461,0.466,0.444,0.77,2.778,0.781,0.694,0.875,1.363,0.637,0.423,2.588,0.693,0.454,0.423,3.734,0.58,0.287,1.375,0.502,1.682,1.718,1.293,0.231,0.914,2.043,0.793,1.753,0.599,0.979,1.997,0.901,1.001,0.823,1.376,1.121,0.403,1.454,0.67,1.821,0.999,1.467,1.79 +NM_001815,1.0,0.97,0.934,1.007,0.932,0.933,1.002,0.986,0.953,0.953,0.909,0.983,1.008,0.867,1.202,1.037,1.097,1.046,0.904,1.089,0.962,0.908,1.163,0.816,0.975,0.972,1.089,1.031,0.882,0.826,0.966,0.988,1.027,0.972,1.085,1.031,1.011,0.822,1.034,1.636,0.996,1.042,1.075,0.922,0.867,0.857,0.844,0.977,1.022,1.016,1.019,1.126,1.052,1.099 +NM_001817,1.08,0.941,1.029,0.955,0.909,0.974,0.881,0.912,0.893,0.864,1.034,1.062,0.889,1.19,1.131,0.926,0.966,0.967,0.996,1.081,1.042,0.879,1.069,0.989,0.986,1.09,1.458,0.957,1.159,0.97,0.997,1.09,0.905,0.871,1.283,0.953,0.935,0.947,1.127,1.539,1.042,1.061,1.061,1.001,1.07,0.858,1.077,1.012,0.903,1.022,0.956,1.001,1.101,1.027 +NM_001818,0.359,2.768,0.764,1.093,0.419,4.522,1.804,0.254,0.421,0.567,2.077,0.687,0.474,0.32,1.52,6.735,0.603,2.12,0.372,2.833,0.251,0.598,1.822,0.682,1.192,0.231,1.092,0.451,1.489,2.615,0.69,1.642,1.111,3.168,0.227,0.238,3.419,0.818,3.463,0.578,0.465,3.093,1.144,0.368,0.494,1.779,2.636,0.495,2.897,0.495,1.463,0.759,0.234,0.284 +NM_001819,0.969,1.148,0.942,1.074,0.893,0.97,1.363,0.845,0.968,1.046,0.789,1.137,1.019,0.894,0.986,1.023,1.05,0.835,0.971,1.064,1.067,0.93,0.999,0.915,1.025,0.975,0.814,1.016,1.238,0.885,0.96,0.84,0.876,2.639,0.967,1.058,1.245,0.987,0.998,1.036,0.996,1.06,1.061,0.969,0.838,1.396,1.482,0.849,0.997,0.85,0.868,1.04,0.89,0.975 +NM_001821,1.04,0.895,0.883,1.224,0.981,0.913,0.947,1.015,0.963,0.974,0.94,1.069,1.059,1.109,0.954,1.004,1.022,1.116,1.001,0.914,1.238,0.894,1.058,1.061,1.118,0.79,0.947,0.925,0.954,1.059,0.966,0.979,1.17,0.955,1.062,0.978,0.949,0.77,0.98,0.963,0.845,1.255,0.925,1.033,0.98,1.067,0.953,0.949,1.081,1.067,0.896,1.026,1.231,1.054 +NM_001822,0.946,1.005,0.935,0.79,0.877,0.971,0.905,0.954,0.9,0.909,1.008,0.875,0.96,0.955,0.952,1.0,0.901,0.846,1.005,0.947,0.964,0.947,1.109,0.921,1.036,0.857,1.061,1.107,0.769,0.993,0.879,4.395,1.921,1.138,1.034,1.26,0.859,1.163,1.187,1.64,1.047,1.098,0.896,1.254,1.027,0.813,0.953,0.94,0.854,0.839,1.042,1.653,1.297,1.483 +NM_001823,0.386,3.484,0.961,0.757,0.441,0.918,1.286,0.225,0.83,0.66,0.81,0.333,0.342,0.503,0.591,0.551,0.918,1.216,0.869,1.767,0.269,0.334,1.036,0.558,5.956,0.438,0.761,1.074,0.471,1.629,1.094,2.603,1.045,3.276,2.029,0.242,1.225,0.614,2.36,2.716,1.117,1.731,0.448,2.655,0.923,0.383,0.875,0.501,0.193,0.597,0.859,0.692,0.481,1.501 +NM_001824,1.076,1.143,1.015,0.898,1.094,1.007,0.95,0.969,1.009,0.956,1.127,0.935,0.925,0.872,0.979,0.946,0.932,0.955,0.993,1.017,0.92,0.92,1.028,1.043,3.7,0.929,0.965,0.962,0.966,1.06,1.087,1.082,0.901,2.041,0.858,1.046,1.038,1.198,0.924,1.066,1.046,0.92,1.158,0.907,1.155,1.02,0.947,1.004,0.984,0.917,1.065,0.926,0.956,0.978 +NM_001825,0.908,2.168,1.003,1.148,1.039,1.268,1.384,0.862,1.017,0.897,1.06,0.974,0.866,1.053,0.901,1.012,0.974,1.213,0.943,0.976,0.826,0.89,0.919,0.923,2.972,1.01,1.063,0.932,1.425,1.524,0.905,1.04,0.985,3.143,0.946,1.221,1.203,0.897,1.355,0.866,0.989,0.969,0.777,1.109,0.966,0.948,0.902,1.066,0.914,1.01,0.953,0.843,0.995,0.969 +NM_001827,0.605,0.863,0.999,1.297,0.78,0.925,0.812,0.445,0.995,1.253,1.154,0.702,0.839,0.629,0.803,2.007,0.91,1.522,1.199,0.911,0.607,0.917,2.132,0.969,0.489,0.76,2.149,0.665,0.517,0.987,0.741,1.366,1.941,0.791,0.299,1.309,1.676,0.932,1.853,1.045,1.01,0.681,0.818,2.114,0.984,1.278,1.432,0.82,1.98,0.801,1.472,1.38,0.773,2.986 +NM_001829,0.634,0.932,1.494,0.473,1.432,1.407,0.492,0.993,1.34,1.144,1.007,0.966,0.697,0.584,1.22,2.532,0.922,1.292,1.222,1.307,0.459,1.205,1.544,1.527,0.402,0.762,1.318,1.352,0.435,1.025,1.321,0.942,1.398,0.956,0.845,0.402,0.914,1.052,1.569,0.656,1.176,1.146,0.584,0.855,1.465,1.202,1.49,1.148,1.324,1.093,1.168,0.579,0.748,0.981 +NM_001831,0.39,3.734,0.463,1.642,0.343,2.456,2.021,0.225,0.235,0.207,1.723,0.239,0.385,0.276,0.499,1.33,0.511,0.986,0.231,1.841,1.116,0.256,0.571,0.354,2.095,0.32,1.652,0.455,2.079,3.682,0.233,2.501,1.339,7.663,0.182,0.273,1.221,1.114,2.894,0.236,0.936,4.399,0.492,3.242,0.409,0.71,0.492,0.268,0.864,0.589,1.014,0.406,0.631,2.262 +NM_001832,1.024,0.998,0.899,66.2,0.906,0.987,1.171,0.936,0.929,0.964,0.93,1.05,0.964,0.872,1.098,1.09,1.06,1.078,1.154,0.938,0.917,1.064,1.103,0.919,0.962,1.014,1.004,1.036,1.02,0.94,1.088,0.813,1.108,0.916,1.001,1.078,1.006,0.952,1.09,0.872,1.11,0.887,1.281,0.89,0.986,1.052,0.911,0.99,1.035,1.107,0.896,0.963,0.999,0.961 +NM_001833,0.758,0.521,1.075,0.949,0.952,1.362,0.534,0.609,1.147,0.967,1.254,0.911,0.778,0.669,1.03,1.347,1.106,1.03,1.048,0.934,0.565,0.87,1.25,1.15,0.632,1.042,1.254,0.898,0.44,1.005,0.974,0.771,1.32,1.273,0.982,0.897,0.931,0.992,1.003,0.808,1.02,1.1,0.547,1.828,1.072,0.886,0.838,0.788,0.969,0.86,1.054,1.315,0.997,2.273 +NM_001834,1.642,0.358,1.123,1.032,1.173,1.611,0.489,1.36,1.157,1.372,0.884,1.532,1.54,0.876,0.902,1.257,1.173,1.259,2.569,0.542,1.304,1.739,0.724,1.222,0.547,2.446,0.993,0.883,0.611,0.743,1.102,0.539,1.301,1.29,1.103,0.539,0.615,1.414,1.281,0.321,1.359,0.712,0.384,0.676,1.404,0.704,0.818,2.512,0.577,2.07,0.713,0.532,1.409,0.645 +NM_001835,0.88,1.051,0.987,0.989,1.066,1.07,1.086,0.862,1.035,1.045,0.925,1.088,1.014,0.833,0.955,0.859,1.051,0.988,1.108,0.919,0.999,1.055,0.908,0.901,0.916,0.995,0.985,1.047,1.437,1.032,0.898,1.456,0.974,1.076,0.897,0.887,1.025,1.021,1.359,1.062,0.997,1.027,0.885,0.889,1.007,0.994,1.048,1.073,0.998,0.83,1.008,1.196,0.923,0.958 +NM_001836,0.99,0.989,1.023,1.152,1.077,0.969,1.229,0.83,0.892,0.981,0.987,1.011,1.112,0.805,1.006,1.096,0.919,0.887,1.269,0.921,1.076,0.926,1.045,1.075,1.033,1.007,0.943,1.071,1.521,1.053,1.073,0.91,0.894,1.347,1.163,0.999,0.984,0.969,0.9,0.878,1.02,1.0,0.791,0.901,0.909,0.946,1.097,0.826,1.049,1.01,1.026,1.079,1.127,0.832 +NM_001837,1.073,1.049,0.957,1.083,0.96,1.014,1.022,1.063,1.072,0.957,1.075,1.136,0.976,0.826,0.799,0.941,0.852,0.935,0.998,0.973,0.984,0.95,0.883,0.958,0.984,1.097,1.014,1.031,0.88,1.07,1.046,0.95,0.899,0.936,0.936,1.052,0.986,1.022,0.96,0.963,0.955,1.053,0.925,1.05,1.041,0.917,0.924,0.888,0.854,1.086,0.955,1.016,1.035,1.05 +NM_001838,1.014,0.915,0.962,1.002,0.974,0.913,0.862,0.842,0.945,1.101,0.863,0.875,0.898,0.859,1.199,0.927,0.998,1.026,1.011,0.973,0.764,0.973,0.905,0.991,0.961,0.972,0.93,1.051,0.954,1.087,1.032,1.047,1.042,0.983,1.076,0.966,0.869,0.869,1.124,1.757,0.872,1.161,0.94,0.954,0.962,0.932,0.963,1.045,1.034,1.03,1.004,1.045,1.351,1.252 +NM_001839,1.916,0.614,2.136,0.99,1.986,0.716,0.489,1.506,3.951,1.556,0.532,1.301,1.663,1.941,1.887,1.609,1.154,1.049,3.005,0.535,1.089,1.442,0.827,2.367,0.573,2.074,2.212,3.155,0.249,0.958,2.955,1.822,2.195,0.9,1.84,0.398,1.041,1.916,0.551,0.607,2.469,0.973,0.813,0.597,2.136,0.64,1.389,1.72,0.839,1.701,0.901,0.833,2.071,1.607 +NM_001842,1.073,1.033,0.925,1.06,1.009,0.85,1.031,0.832,0.974,0.895,1.083,0.942,0.94,1.041,1.231,2.097,1.028,0.8,1.093,1.019,0.994,0.879,0.919,0.971,1.094,0.949,0.906,0.999,1.411,0.982,0.973,1.087,2.044,1.177,1.008,0.845,0.993,0.988,0.972,0.973,0.999,1.096,1.375,0.983,0.926,0.875,0.99,1.001,0.975,0.956,0.999,1.001,0.873,0.999 +NM_001844,0.989,0.997,1.129,1.039,1.132,1.08,0.962,0.991,0.974,1.134,0.978,1.001,0.892,0.811,1.062,0.996,0.985,1.029,1.182,0.992,1.153,0.966,0.949,1.048,0.917,0.905,1.072,0.941,1.499,0.948,0.983,0.99,1.024,1.013,1.009,1.059,0.948,0.949,0.996,0.999,1.038,0.979,1.158,1.245,1.145,1.012,0.909,1.033,1.044,0.966,1.1,0.909,1.205,1.177 +NM_001845,0.384,1.113,0.592,0.402,0.454,0.678,1.019,0.362,0.419,0.66,0.843,0.501,0.344,0.363,0.789,0.928,0.358,0.567,0.707,0.508,0.662,0.505,2.058,0.446,0.795,0.422,0.825,0.664,0.474,2.34,0.361,13.13,5.248,1.796,0.372,3.236,1.133,0.743,3.945,17.4,0.869,2.285,0.836,1.374,0.904,1.512,0.997,0.448,0.995,0.837,1.711,12.63,0.898,2.729 +NM_001846,0.301,0.704,0.34,0.59,0.309,1.35,0.725,0.305,0.294,0.339,1.191,0.297,0.288,0.351,0.791,1.867,0.293,0.491,0.418,0.752,0.483,0.308,1.465,0.322,0.833,0.325,0.474,0.399,0.492,1.503,0.298,4.692,2.371,1.791,0.227,1.333,1.099,0.459,3.614,5.493,0.526,1.724,0.624,1.2,0.419,1.33,0.698,0.322,1.058,0.439,1.653,3.213,0.437,1.373 +NM_001847,1.8900000000000001,1.8980000000000001,1.9740000000000002,2.091,2.062,2.098,1.835,1.976,2.004,2.061,2.275,2.128,2.1529999999999996,1.7879999999999998,2.149,2.222,1.867,1.908,1.7109999999999999,2.192,1.798,1.895,2.3499999999999996,2.024,2.137,2.0460000000000003,1.879,2.057,1.787,2.37,1.8639999999999999,2.018,2.1719999999999997,1.928,2.192,2.031,1.883,1.97,1.839,1.9249999999999998,1.815,2.151,1.6070000000000002,1.897,2.08,1.996,1.9260000000000002,2.092,1.952,1.986,2.059,1.9629999999999999,2.0,2.2190000000000003 +NM_001848,0.495,1.989,0.644,0.731,0.591,1.232,1.167,0.542,0.512,0.552,0.832,0.575,0.523,0.455,0.847,0.834,0.535,0.581,0.578,0.92,0.932,0.591,2.567,0.575,1.037,0.53,0.669,0.624,0.663,2.829,0.492,9.634,1.865,2.513,0.448,3.226,0.914,0.804,4.173,5.72,0.668,1.923,0.918,0.889,0.669,2.359,0.724,0.56,0.634,0.702,1.924,1.897,0.711,1.688 +NM_001850,0.97,1.151,0.834,0.928,0.943,0.999,1.154,1.073,0.988,1.078,0.94,0.869,0.923,1.06,0.789,0.881,1.119,1.086,0.922,1.021,1.097,1.103,1.077,0.861,1.108,0.962,0.898,0.999,0.973,1.007,0.859,1.185,0.958,0.909,1.11,0.876,1.017,1.04,1.02,0.912,1.002,1.015,0.901,1.027,1.009,1.127,1.107,1.044,0.994,0.95,1.028,1.014,0.905,0.987 +NM_001851,1.874,1.9369999999999998,1.979,2.298,2.0220000000000002,2.186,1.9889999999999999,1.927,1.968,2.1189999999999998,2.314,1.936,1.817,2.244,1.903,2.132,1.865,1.784,1.8599999999999999,2.694,1.8639999999999999,1.867,2.247,1.9809999999999999,1.968,1.685,1.983,1.916,1.972,1.9820000000000002,2.01,35.967999999999996,2.367,2.455,1.92,2.04,2.07,1.8900000000000001,1.955,1.89,1.756,2.112,2.133,1.866,1.75,2.434,1.873,2.005,2.342,2.1900000000000004,2.479,1.679,1.887,1.974 +NM_001852,0.769,1.123,0.931,1.24,1.025,0.981,1.292,0.965,0.934,0.935,1.0,0.899,1.0,0.967,0.985,1.126,0.896,1.096,0.896,1.154,0.972,0.896,0.85,0.903,1.116,0.843,0.894,0.941,0.887,0.99,0.879,1.101,0.951,1.251,0.969,1.236,1.165,0.977,1.235,1.142,1.022,1.041,0.985,1.373,0.893,0.973,1.0,0.928,0.981,0.838,0.783,0.925,0.995,0.942 +NM_001853,1.062,1.252,0.982,1.03,0.884,0.984,0.957,0.996,0.898,1.112,1.073,0.871,0.867,0.986,1.279,0.981,0.968,0.917,1.412,1.009,0.923,0.837,1.214,0.987,0.998,0.974,0.925,0.935,1.108,1.022,0.932,0.832,0.873,0.984,0.934,1.261,1.046,0.93,1.221,3.515,0.983,1.002,1.102,2.59,0.874,1.018,1.068,0.939,0.939,0.934,1.17,1.169,1.049,3.389 +NM_001854,1.048,1.103,1.213,1.177,0.903,1.016,0.999,1.004,0.983,1.02,0.88,1.157,0.951,0.808,0.787,1.03,1.003,1.027,0.956,1.011,0.964,1.015,0.903,1.095,1.022,1.011,0.965,1.128,0.763,0.931,1.054,0.862,1.168,1.004,0.918,0.864,0.949,1.135,0.983,1.04,1.042,0.896,0.919,0.879,0.982,0.865,1.033,1.038,0.909,1.083,1.074,1.177,1.04,1.098 +NM_001855,0.647,1.099,0.721,0.728,0.713,0.826,0.928,0.642,0.757,0.891,0.827,0.649,0.746,0.71,0.896,0.999,0.589,0.795,0.653,0.878,0.834,0.696,1.786,0.718,1.18,0.67,0.949,0.775,0.541,1.98,0.634,5.785,2.14,1.998,0.651,1.477,1.045,0.85,2.952,7.049,0.972,1.984,0.79,1.075,0.873,1.143,1.001,0.774,0.854,0.856,1.223,4.311,0.834,1.338 +NM_001856,0.778,1.759,0.827,0.749,1.156,0.761,0.822,0.641,1.301,1.045,0.854,0.717,0.695,0.797,0.896,1.001,0.804,0.868,0.799,0.914,0.681,0.764,1.444,0.897,0.792,0.773,1.106,0.992,0.807,1.097,0.921,5.216,1.375,1.101,0.651,2.951,0.876,0.964,1.808,2.42,0.991,1.425,1.455,1.418,1.22,0.966,1.855,0.874,0.889,0.765,1.126,2.672,1.109,2.486 +NM_001858,0.994,0.888,0.9,0.959,0.92,1.1,1.053,1.063,1.178,1.044,1.028,1.202,0.94,1.068,0.888,1.122,0.724,0.947,1.118,0.878,1.041,0.853,1.032,0.936,1.152,0.967,0.996,1.072,1.132,1.0,1.07,1.091,1.086,0.905,1.034,1.0,1.035,1.108,1.011,1.058,0.985,0.889,0.802,0.92,0.894,1.16,1.054,0.936,0.913,0.953,0.904,1.116,1.115,1.009 +NM_001859,0.54,1.064,1.059,0.55,1.119,1.919,0.968,0.763,0.957,0.789,1.465,1.0,0.647,0.523,1.234,2.569,1.002,1.053,0.631,1.364,0.308,0.857,1.39,1.287,0.594,0.47,1.31,0.951,0.517,1.863,1.0,1.588,2.288,1.069,0.514,0.437,1.525,1.025,1.428,0.795,0.994,1.442,0.725,0.622,0.953,1.554,1.179,0.705,1.364,0.709,1.644,0.889,0.459,1.498 +NM_001860,0.817,0.772,1.121,0.817,1.179,1.002,0.75,1.09,1.221,1.009,1.025,0.98,0.78,0.958,1.155,1.454,0.847,0.839,1.006,1.106,0.701,0.781,0.753,0.878,0.664,0.81,1.168,0.96,0.645,1.019,1.98,1.163,1.386,1.077,1.112,0.723,0.936,0.836,0.873,0.915,0.924,1.177,0.655,0.716,1.072,1.299,1.111,0.96,0.802,0.918,1.027,1.189,1.529,1.47 +NM_001861,0.464,1.135,1.004,0.552,0.748,1.566,0.614,0.615,1.007,0.749,1.246,0.996,0.734,0.428,1.007,2.372,0.69,1.105,1.446,1.194,0.511,0.804,1.348,1.106,0.699,0.728,1.203,0.881,0.448,1.119,0.911,0.936,1.743,1.768,0.231,0.953,1.467,0.946,1.211,0.628,0.961,1.208,0.643,0.827,0.809,1.023,1.091,0.731,1.137,0.708,1.122,0.656,0.85,1.398 +NM_001862,0.601,0.942,0.907,0.737,0.84,1.213,0.673,0.519,1.107,1.005,1.078,0.899,0.992,0.417,0.795,2.164,0.845,1.252,1.495,1.266,0.501,0.847,1.474,1.022,0.745,1.026,0.961,0.906,0.459,0.984,0.813,1.201,1.824,1.481,0.297,1.215,1.294,0.848,1.344,0.735,0.995,1.22,0.684,1.267,1.109,0.881,1.046,0.916,1.264,0.886,1.058,0.672,0.846,1.895 +NM_001863,0.93,0.918,0.972,0.804,1.035,1.171,0.494,0.557,1.183,1.079,1.48,0.786,0.856,0.552,0.938,1.667,1.054,1.322,1.525,0.987,0.505,0.912,1.596,1.117,0.758,1.291,1.359,1.037,0.487,1.045,0.979,0.67,1.223,1.314,0.38,1.025,1.527,1.234,1.306,0.616,1.221,0.929,0.648,0.928,0.955,0.983,1.254,1.025,1.065,0.865,1.098,0.692,0.918,1.22 +NM_001864,0.896,1.052,0.598,0.831,2.279,1.205,0.98,2.722,2.123,0.849,1.33,0.584,0.656,0.644,1.586,1.311,0.591,0.786,0.672,0.965,2.375,0.584,1.728,0.72,1.039,0.482,0.678,4.082,0.575,1.484,1.45,3.691,1.263,2.654,0.673,0.914,0.872,1.146,1.51,1.65,1.805,3.472,0.847,0.782,0.849,0.948,0.862,0.681,0.745,0.676,1.441,1.604,0.835,0.929 +NM_001865,0.698,0.889,1.094,0.886,0.91,1.243,0.74,0.47,1.172,0.913,1.271,0.768,0.756,0.579,0.953,1.727,0.989,1.25,1.379,0.909,0.447,0.928,1.09,1.236,0.905,0.992,1.347,0.925,0.533,1.081,0.75,0.774,0.82,1.493,0.314,1.128,1.472,1.008,1.708,0.636,1.132,1.142,0.765,0.954,0.928,1.009,1.148,1.06,1.134,0.847,1.246,0.648,0.804,1.681 +NM_001866,0.915,0.695,1.1,0.992,1.065,1.387,0.632,0.727,1.41,0.983,1.817,0.956,1.2,0.716,1.169,2.175,0.987,1.303,1.553,0.895,0.472,1.388,0.967,1.198,0.873,0.978,1.45,0.951,0.622,1.137,0.963,0.718,1.397,1.286,0.397,1.003,1.81,1.164,1.347,0.319,1.131,0.929,0.941,0.982,1.041,1.137,1.143,1.207,1.098,0.803,1.163,0.953,0.941,1.222 +NM_001867,0.459,1.029,1.219,0.491,1.035,1.634,0.739,1.12,1.216,0.944,0.774,1.441,0.982,0.454,1.09,1.801,0.858,1.129,0.915,1.356,0.356,1.073,1.228,1.239,0.64,0.524,1.256,1.016,0.444,1.171,1.175,1.012,1.267,1.404,0.226,0.414,1.17,1.079,1.343,0.61,1.053,1.215,0.581,0.456,1.035,0.966,1.079,0.911,1.359,0.758,1.309,0.558,0.488,1.404 +NM_001868,0.922,1.117,1.013,155.8,1.025,1.02,0.985,1.001,0.976,0.999,1.018,0.959,1.077,0.913,0.904,0.965,0.886,0.882,0.962,0.963,0.902,0.989,1.064,1.04,1.012,1.11,1.076,1.14,0.831,0.958,0.882,1.022,1.167,1.032,1.041,0.987,1.096,0.936,0.886,1.138,0.911,0.919,0.882,0.974,1.129,1.125,1.046,0.971,1.128,1.046,1.059,1.164,0.987,0.99 +NM_001870,0.565,2.314,0.99,0.929,0.573,1.296,1.526,0.586,1.315,0.692,1.816,0.771,0.761,0.464,0.975,1.088,0.618,1.128,0.759,0.953,0.867,0.49,1.193,0.613,1.597,0.51,1.308,0.668,0.481,1.945,0.585,1.567,1.413,4.614,0.497,0.574,0.95,0.844,2.971,0.63,0.689,3.139,0.937,0.804,0.886,2.952,0.673,0.637,0.919,0.65,1.149,1.454,0.897,2.369 +NM_001871,0.959,1.158,0.99,79.09,1.141,0.967,0.958,1.027,0.789,0.899,1.353,1.028,1.021,1.032,1.149,0.896,0.931,0.845,0.878,1.131,0.849,1.103,1.238,0.875,1.315,0.946,0.77,1.024,0.997,0.935,1.063,0.911,1.052,1.058,0.913,0.933,1.041,1.187,1.027,0.969,0.974,1.257,1.148,0.937,1.034,2.358,1.054,1.078,0.921,1.081,0.974,0.971,0.915,0.947 +NM_001872,0.972,0.925,0.979,0.969,1.043,0.953,1.032,0.969,1.06,0.99,1.079,1.044,1.03,1.004,1.08,1.135,1.058,1.221,1.021,1.0,1.004,0.909,1.048,1.142,1.004,0.916,0.978,1.011,1.221,0.99,1.0,0.919,1.053,0.947,1.064,1.017,1.016,1.014,0.869,0.939,0.908,1.018,1.214,0.95,1.051,0.924,0.972,1.069,1.0,1.086,0.908,0.869,0.93,1.051 +NM_001873,0.914,1.207,0.95,0.876,0.731,0.975,1.347,1.002,0.875,0.953,1.205,0.733,0.833,0.529,1.344,1.466,1.051,0.894,0.857,1.719,1.066,0.793,0.975,1.181,1.136,0.686,1.375,0.968,0.669,1.828,0.923,2.25,1.215,5.404,0.749,0.641,1.715,1.186,0.987,0.852,1.301,5.594,0.803,0.695,1.094,0.983,1.083,0.755,1.095,0.921,1.278,1.04,0.872,1.141 +NM_001875,0.796,0.997,0.984,1.485,0.958,1.813,0.729,0.799,0.896,1.251,11.84,1.106,0.841,0.927,3.687,20.39,1.019,0.776,0.902,7.299,0.745,0.828,26.88,0.93,0.674,1.003,1.064,0.948,0.737,1.943,0.993,0.899,0.758,2.845,0.71,0.683,12.63,1.139,0.92,0.764,0.929,12.61,8.373,0.711,0.91,21.97,0.879,0.88,16.35,0.894,7.822,4.68,1.021,1.152 +NM_001876,0.943,1.062,0.944,0.886,1.196,1.041,1.114,1.002,0.961,0.982,0.979,1.103,1.054,1.047,0.833,1.302,1.146,1.095,0.987,0.907,0.969,0.937,0.902,1.041,1.089,0.954,0.927,0.969,1.158,1.055,0.926,1.076,0.938,0.978,1.231,1.016,0.992,0.904,1.289,1.05,0.881,0.966,1.11,1.239,0.95,0.938,0.955,1.14,1.122,1.013,0.997,0.998,0.918,1.146 +NM_001877,1.07,0.956,1.017,0.884,1.011,0.934,1.125,1.273,0.963,0.924,0.927,0.987,1.021,0.998,1.002,1.065,0.995,1.061,0.81,1.032,0.953,1.1,1.026,0.917,1.142,0.954,1.065,0.94,1.449,1.007,0.941,0.947,0.955,0.95,1.007,1.008,1.008,0.991,1.053,0.98,0.951,1.013,1.104,0.98,0.955,0.853,1.092,1.005,0.92,1.055,1.013,1.143,1.154,0.933 +NM_001878,2.778,0.127,5.367,0.976,4.632,0.0947,0.0837,2.105,6.642,6.31,0.102,5.598,2.998,1.952,2.345,1.451,2.25,2.549,6.153,0.156,1.659,3.84,0.105,4.998,0.0872,2.941,3.584,3.462,0.0899,0.127,4.312,0.285,1.871,0.0921,0.161,0.103,0.0915,6.449,0.127,0.183,3.793,0.0995,0.076,0.293,4.446,0.104,1.764,2.239,0.11,2.697,0.588,1.145,3.764,0.488 +NM_001879,1.024,0.938,0.85,1.001,1.107,0.984,0.946,0.893,0.907,1.105,0.995,1.077,1.081,1.011,0.991,0.999,1.002,0.892,0.953,1.039,1.045,1.157,1.015,0.959,0.971,1.071,1.01,1.151,0.941,0.964,0.939,1.171,1.054,1.05,1.119,1.14,1.017,1.06,1.047,0.959,0.996,0.923,1.135,0.982,0.928,0.979,1.022,0.948,0.893,1.111,0.957,1.049,1.183,1.085 +NM_001880,0.929,1.024,1.048,0.94,1.02,1.062,0.942,0.834,0.835,1.039,0.8,0.937,0.892,0.741,0.896,0.983,1.051,1.036,0.932,1.194,1.101,0.997,1.185,0.936,1.031,0.907,0.974,0.913,0.732,0.93,0.907,1.183,1.116,1.155,0.869,1.041,1.002,0.86,1.181,1.068,0.989,1.037,0.859,1.43,0.953,1.137,0.907,0.86,1.036,0.993,0.969,0.857,0.949,1.577 +NM_001881,0.916,1.07,1.044,0.954,1.002,1.088,0.895,1.016,0.894,0.974,0.982,0.951,1.026,1.008,1.08,1.068,1.1,0.982,0.985,1.031,0.932,1.036,0.924,1.058,0.998,0.938,1.035,1.055,1.083,0.96,1.151,1.105,1.17,0.972,0.874,0.984,1.137,1.105,1.099,1.109,0.883,1.107,0.946,0.835,0.913,0.977,1.046,0.886,1.045,0.971,1.133,1.034,0.925,0.994 +NM_001882,0.927,1.017,1.004,1.161,1.001,1.003,0.842,0.803,0.964,0.913,1.027,1.009,0.942,0.95,0.822,0.899,0.981,0.972,1.018,0.96,0.97,0.985,1.078,1.008,1.124,0.983,0.912,0.918,1.578,1.045,1.065,1.068,0.926,1.062,0.902,1.067,1.152,1.031,0.919,1.076,0.942,1.084,1.224,1.003,0.937,1.069,1.009,1.175,0.964,0.938,1.049,1.028,1.354,1.083 +NM_001883,0.914,0.996,1.005,0.916,0.964,0.983,1.004,0.926,0.991,1.06,1.022,1.068,0.86,1.054,1.028,1.015,1.052,1.137,0.929,1.054,1.025,1.152,1.13,0.997,1.027,1.145,0.832,0.959,0.869,0.933,1.023,0.958,0.984,1.039,1.165,1.114,1.058,0.91,1.101,0.787,0.98,0.913,0.886,1.01,0.999,1.018,0.916,0.949,0.879,1.133,0.939,0.905,1.283,0.905 +NM_001884,0.938,1.099,0.936,0.973,0.899,1.2,0.941,0.894,0.956,0.867,1.142,0.85,1.006,0.933,0.779,1.201,0.935,0.981,0.839,1.078,0.966,0.989,1.188,0.954,1.155,0.982,0.827,0.9,0.869,1.39,0.854,1.252,1.069,1.365,0.971,0.884,1.068,0.928,1.39,0.912,1.03,1.411,0.885,0.911,0.984,1.065,1.028,0.895,0.915,0.893,1.16,1.078,0.909,1.068 +NM_001885,5.814,0.278,1.293,0.916,4.453,0.263,0.453,3.408,3.891,3.884,0.594,2.651,1.399,1.062,1.586,2.185,0.878,1.225,2.292,0.236,6.059,3.859,0.429,2.357,0.369,6.163,0.75,4.433,0.247,0.564,3.259,0.711,5.081,0.759,4.106,0.201,0.206,7.158,0.345,0.376,5.638,0.803,0.229,0.487,4.044,0.194,1.469,4.945,0.274,2.819,1.43,1.609,1.125,1.114 +NM_001886,0.953,0.878,0.917,1.042,0.965,0.987,0.924,0.875,1.118,1.056,0.951,1.052,1.128,0.891,1.172,0.955,0.983,1.069,1.09,0.882,1.024,1.117,1.074,1.033,0.94,1.132,0.879,1.002,1.006,0.953,0.932,1.049,1.156,0.829,1.172,0.987,0.958,0.937,1.019,0.947,0.913,1.116,1.122,0.953,0.99,0.998,0.983,0.995,1.072,1.12,0.96,1.059,0.953,0.983 +NM_001887,0.979,0.994,1.044,1.015,0.972,0.876,1.077,0.992,0.991,1.152,0.875,1.149,0.884,0.933,0.927,0.871,0.981,1.066,0.942,1.052,0.999,0.876,0.963,0.927,0.906,1.037,1.012,0.928,1.062,1.049,0.957,1.092,1.085,0.961,0.883,0.941,1.024,1.073,0.986,1.02,1.044,1.154,1.215,0.967,0.993,1.055,1.012,1.153,1.003,0.987,1.007,0.945,0.807,1.043 +NM_001889,0.669,1.184,0.744,0.851,0.828,1.415,0.848,0.55,0.975,0.675,1.827,0.574,0.552,0.644,1.461,3.237,0.606,0.996,1.0,1.824,0.707,0.673,1.667,0.696,1.009,0.559,1.006,0.7,0.552,1.686,0.775,1.109,2.184,1.906,0.486,0.902,1.953,0.712,1.46,0.699,0.926,1.273,1.066,1.09,0.847,2.11,0.846,0.553,1.196,0.53,1.843,1.03,1.082,1.773 +NM_001890,0.895,0.83,1.008,0.939,1.012,0.892,1.127,0.907,1.132,0.846,0.985,1.134,0.913,1.164,1.25,1.094,1.023,0.972,0.96,0.965,0.996,1.253,0.855,0.999,0.76,1.144,0.913,0.924,0.869,1.029,1.118,1.025,0.938,1.215,1.196,1.102,0.791,0.931,0.871,0.958,1.007,1.093,1.296,0.804,1.031,1.029,1.045,1.062,1.014,0.889,0.848,0.862,1.408,1.01 +NM_001891,1.094,0.882,0.989,0.986,0.999,1.011,1.314,1.031,1.065,1.063,1.095,1.01,1.123,1.03,1.048,1.02,0.983,1.0,0.973,0.983,0.896,0.885,0.902,1.047,0.981,0.97,1.2,1.082,1.061,1.016,1.154,0.85,1.064,0.85,1.008,1.059,0.97,0.933,0.885,1.11,0.903,0.913,0.887,0.814,1.126,1.219,1.32,0.98,1.052,1.043,0.864,1.155,0.997,0.98 +NM_001892,0.557,0.833,2.138,0.472,1.675,1.515,0.701,1.235,1.854,1.62,0.589,1.497,0.905,0.638,1.107,1.854,1.258,1.136,1.118,0.97,0.353,1.3,1.001,1.762,0.304,0.433,2.504,1.328,0.406,0.999,1.633,1.247,4.031,1.155,0.713,0.349,0.898,1.422,1.318,0.795,1.411,0.886,0.632,0.529,1.573,0.808,1.73,1.028,1.116,0.966,1.071,0.812,0.574,2.04 +NM_001893,0.879,0.859,1.449,0.837,1.111,0.915,0.811,0.624,1.458,1.212,0.688,0.767,0.777,0.789,1.05,1.099,1.235,0.984,0.977,1.019,0.365,0.906,0.868,0.953,0.498,1.12,0.993,1.212,0.516,1.36,1.264,1.615,0.783,0.87,1.908,0.768,1.083,0.974,1.595,1.102,1.047,0.811,1.149,1.767,1.038,1.211,1.354,1.022,1.442,0.823,1.09,0.949,0.858,1.354 +NM_001894,2.059,2.035,2.718,1.542,2.779,1.7919999999999998,1.509,2.517,2.836,1.9780000000000002,1.56,1.9300000000000002,2.01,1.746,1.984,1.834,2.573,1.9859999999999998,2.162,1.9580000000000002,1.367,2.466,1.906,2.0860000000000003,1.4849999999999999,2.057,2.041,2.705,1.219,2.117,2.333,2.773,2.116,1.858,5.1739999999999995,1.931,1.6099999999999999,3.0060000000000002,1.9609999999999999,2.451,2.6500000000000004,1.9649999999999999,1.6749999999999998,1.872,2.23,1.737,2.259,2.7889999999999997,1.5310000000000001,2.005,1.858,2.057,2.033,2.379 +NM_001897,1.064,1.041,0.882,0.905,0.944,0.911,1.18,1.279,0.586,0.837,0.98,0.811,0.978,0.73,1.486,1.053,0.726,1.148,0.742,0.903,1.104,1.101,1.005,0.933,1.179,0.927,1.159,1.001,1.366,1.074,1.006,0.952,0.818,1.101,1.018,0.717,0.858,1.059,1.346,1.639,0.924,1.335,1.321,0.841,1.019,0.846,0.815,1.149,0.924,0.97,1.024,1.029,0.775,1.027 +NM_001898,0.968,1.033,1.033,0.902,1.071,0.985,1.122,1.043,1.067,0.757,0.989,0.954,0.944,0.848,1.05,1.081,1.013,1.074,1.026,1.056,0.947,1.117,0.876,1.031,1.049,0.909,0.871,0.977,1.047,1.024,0.869,7.032,2.047,1.017,1.085,0.996,0.901,0.94,0.947,1.234,1.035,1.043,0.835,1.391,0.924,0.936,0.787,0.995,0.869,0.896,0.967,1.329,0.903,1.547 +NM_001899,0.919,1.131,0.991,0.996,0.844,0.965,0.923,0.898,0.951,0.795,1.001,0.916,0.933,1.039,1.178,0.794,0.932,1.037,1.049,0.988,1.013,0.91,0.976,1.016,1.023,1.121,1.071,1.086,0.894,1.027,0.889,1.093,0.86,0.992,1.025,1.037,1.061,0.964,1.11,0.984,1.024,1.062,0.895,1.021,1.092,1.027,1.065,0.962,0.991,0.928,0.904,1.023,1.018,0.914 +NM_001900,1.036,1.134,1.045,0.983,0.884,1.012,1.149,1.024,0.991,0.968,1.034,1.105,0.953,0.974,0.912,1.033,1.0,1.067,1.085,1.109,0.951,0.949,1.064,0.927,1.072,1.101,0.965,1.082,0.933,0.906,0.935,1.211,1.112,1.05,1.072,0.978,0.947,1.039,1.001,0.982,0.829,1.077,1.12,0.919,1.006,1.035,0.882,0.973,1.022,1.149,1.071,0.943,0.93,1.074 +NM_001901,0.556,0.942,0.257,0.68,2.057,0.595,0.639,0.585,0.666,0.349,0.786,0.293,0.97,0.51,0.674,0.599,0.583,0.922,0.432,1.307,0.437,0.325,2.87,0.477,0.5,0.651,0.581,0.571,0.28,1.789,0.602,9.053,1.988,1.731,1.225,0.49,0.9,0.89,1.981,5.056,1.801,2.069,1.053,1.85,0.329,1.98,3.678,0.749,0.738,0.625,1.27,2.283,1.03,1.464 +NM_001902,0.964,1.037,0.969,0.968,1.148,1.038,0.882,0.983,0.921,0.925,0.927,0.922,1.006,1.026,1.146,1.077,1.045,0.912,1.005,0.972,0.958,0.992,0.978,1.021,1.009,0.983,0.977,1.034,0.706,1.02,1.046,0.96,0.951,1.162,1.308,0.995,1.021,1.082,1.002,1.017,0.955,1.013,0.999,1.051,1.039,1.14,1.015,0.988,1.082,0.934,1.015,0.988,0.821,1.157 +NM_001904,0.866,0.918,1.109,0.894,0.927,0.98,0.992,0.633,1.193,1.031,1.221,0.772,0.789,0.731,1.088,1.302,0.862,1.191,0.898,1.077,1.044,0.68,1.206,0.935,0.744,0.84,0.963,1.024,0.613,0.997,0.943,0.917,1.04,1.021,0.68,0.862,1.24,0.893,1.41,0.845,0.944,1.297,1.235,0.956,1.033,1.194,1.119,0.841,1.179,0.765,1.143,1.163,0.971,0.938 +NM_001906,1.043,0.953,1.088,130.5,0.986,1.018,1.062,0.922,1.009,0.912,1.0,0.97,0.961,1.043,1.011,1.074,1.06,1.098,1.035,0.919,0.98,0.859,1.178,1.14,1.012,1.043,0.98,0.99,1.052,0.984,0.979,0.919,0.959,1.055,0.976,0.947,1.038,0.95,0.981,1.023,0.889,0.977,1.04,1.082,1.162,0.956,0.965,0.987,1.038,1.04,0.937,0.916,0.864,0.874 +NM_001907,1.03,0.991,1.025,1.107,1.112,1.095,0.914,0.934,1.013,1.041,0.934,1.003,0.919,1.236,1.033,1.146,1.005,0.999,0.908,0.884,1.109,0.981,1.005,1.067,0.996,0.995,0.935,0.961,1.157,0.849,1.045,0.894,0.985,1.03,1.011,0.887,0.86,1.07,0.984,1.003,0.964,0.85,0.911,0.962,0.902,0.978,0.865,1.038,1.042,0.864,1.055,0.991,0.918,1.046 +NM_001908,1.289,0.591,1.526,0.709,0.955,0.724,0.456,0.65,1.025,1.377,0.739,0.597,0.777,0.789,0.881,0.912,1.542,1.026,2.099,0.756,1.102,1.244,0.933,1.236,0.349,1.74,1.204,1.221,0.255,1.12,0.923,1.517,1.543,1.015,0.98,0.517,0.882,0.936,1.16,1.231,1.267,1.036,0.405,0.969,1.642,0.884,0.985,1.286,0.738,1.625,0.789,2.038,1.415,1.679 +NM_001909,0.53,1.08,0.901,0.871,0.582,0.976,0.927,0.336,0.634,0.676,1.26,0.325,0.448,0.362,0.841,2.196,0.624,0.972,1.776,1.187,0.594,0.439,0.986,0.506,0.74,0.819,1.095,0.418,0.742,1.992,0.569,1.524,1.2,2.117,0.335,0.871,1.408,0.487,1.631,1.073,0.839,1.685,0.609,2.288,0.929,0.951,0.685,0.621,0.631,1.218,1.093,1.204,1.224,1.371 +NM_001910,0.661,3.482,0.598,1.649,0.723,2.653,1.363,0.693,0.623,0.629,4.066,0.605,0.643,0.593,1.382,3.196,0.721,1.871,0.697,1.921,0.591,0.654,1.131,0.651,1.639,0.615,0.637,0.64,0.847,4.587,0.634,1.265,2.141,4.131,0.625,1.274,2.253,0.66,2.642,0.686,0.684,2.993,1.017,1.823,0.633,1.438,0.716,0.687,0.983,0.625,2.398,0.632,0.542,0.88 +NM_001911,0.772,2.563,0.872,1.09,0.764,0.833,1.752,0.816,1.149,0.97,0.952,0.78,1.152,0.738,0.847,1.468,0.807,0.764,1.096,1.008,1.216,0.828,0.843,1.068,1.453,0.735,2.55,1.347,0.792,1.733,0.842,1.821,0.963,5.067,0.813,0.814,1.102,1.288,1.098,0.719,1.11,1.868,0.931,0.874,0.997,1.204,0.935,0.793,0.872,1.135,1.06,0.95,1.054,1.256 +NM_001912,0.928,1.179,1.038,1.021,0.948,1.146,0.83,0.916,1.041,0.973,1.029,0.988,0.989,0.925,0.815,0.873,1.005,1.221,0.991,0.911,1.099,0.869,1.118,0.919,1.028,0.947,1.016,0.964,0.788,0.919,0.928,1.034,1.042,0.982,1.092,1.103,0.964,0.87,0.991,0.94,0.999,1.035,1.015,0.881,0.898,1.025,0.908,1.073,0.965,0.896,0.97,0.93,1.113,1.09 +NM_001914,0.405,1.405,0.785,0.639,0.662,2.452,0.743,0.473,0.818,0.737,1.793,0.706,0.393,0.496,1.156,3.66,0.637,0.987,1.152,1.852,0.485,0.541,1.262,0.936,0.885,0.613,0.917,0.685,0.677,3.422,0.743,1.405,0.869,2.814,0.114,0.491,2.647,0.84,1.306,0.553,1.013,1.881,1.226,1.043,0.726,1.241,1.509,0.394,1.272,0.557,1.377,0.584,0.721,0.946 +NM_001915,0.93,0.861,0.843,0.926,0.852,1.55,0.743,0.653,0.976,0.822,0.985,0.836,0.795,0.742,0.774,1.06,0.885,1.216,1.115,1.153,0.805,1.325,1.194,1.071,1.605,0.991,0.865,0.802,0.978,1.983,0.765,1.197,0.872,1.465,0.407,0.661,1.195,1.254,1.452,0.742,0.833,1.802,0.695,2.177,0.939,0.893,1.044,0.857,0.899,0.976,1.077,0.863,0.936,1.168 +NM_001916,0.737,0.772,0.817,1.055,0.68,1.252,0.576,0.516,0.966,0.829,1.252,0.943,0.999,0.606,1.145,2.309,0.726,1.19,1.721,0.675,0.513,0.843,1.359,1.103,0.783,0.894,1.221,0.71,0.448,0.872,0.807,0.832,3.094,1.59,0.11,1.161,1.611,0.688,1.69,0.883,0.862,1.094,0.985,1.571,1.066,1.465,0.989,0.893,2.277,0.853,1.003,0.744,0.886,1.917 +NM_001917,0.949,1.118,0.947,0.968,0.965,1.028,1.096,1.079,0.981,0.998,0.971,0.948,0.992,0.889,1.21,1.044,0.936,0.887,1.076,0.996,0.988,1.081,0.958,0.872,0.952,0.959,0.986,1.042,1.348,1.038,1.09,0.876,0.927,0.957,1.134,1.013,0.977,0.855,1.058,1.012,0.991,1.104,0.934,0.91,0.957,0.888,1.077,0.973,0.947,0.983,1.045,1.037,1.174,1.127 +NM_001919,0.354,1.264,1.144,0.505,0.849,1.548,0.778,0.555,1.033,0.899,0.925,0.8,0.726,0.398,0.84,1.842,0.848,1.107,0.954,1.8,0.338,0.746,1.526,0.996,0.517,0.584,1.217,0.962,0.505,1.256,0.876,1.7,4.101,1.641,0.405,1.128,1.149,0.992,1.815,0.467,1.045,1.562,0.799,0.991,0.732,1.042,1.578,0.756,1.198,0.568,1.126,0.599,0.601,1.525 +NM_001920,0.946,1.124,1.029,1.032,0.93,0.967,0.956,0.991,0.974,0.749,1.017,1.093,0.876,1.128,1.001,0.959,0.784,0.993,0.894,1.173,0.901,0.837,1.353,0.992,1.088,0.853,0.886,0.916,0.832,1.654,0.948,7.44,1.287,2.176,0.695,0.951,0.911,1.027,0.944,1.267,1.007,1.469,1.062,0.783,0.944,1.052,0.892,0.787,0.799,0.99,1.013,0.968,0.964,1.211 +NM_001921,1.17,1.002,1.129,0.812,0.744,1.214,0.629,0.555,1.2,0.843,0.917,0.738,1.04,0.634,0.871,1.373,1.046,0.852,0.949,0.913,0.718,0.884,0.869,1.066,1.002,0.844,1.286,0.826,0.627,0.983,1.147,1.409,1.399,1.656,0.371,0.659,0.796,0.768,1.483,0.799,0.974,1.167,0.66,1.49,1.318,0.754,0.765,0.82,0.614,0.878,1.064,0.681,0.936,1.644 +NM_001922,1.129,0.857,1.005,0.991,1.029,0.941,0.919,0.959,1.004,1.12,0.916,1.087,0.872,1.148,0.797,0.864,0.877,1.064,0.879,1.021,0.98,1.079,1.048,0.979,1.013,1.083,1.048,0.891,0.651,1.081,0.964,0.973,0.959,1.043,0.984,0.9,1.053,0.991,1.023,1.031,0.977,0.958,0.912,1.034,1.023,1.024,0.992,0.95,1.065,1.015,1.132,0.939,1.39,0.86 +NM_001923,0.722,0.925,1.206,0.754,0.844,0.864,0.672,0.422,0.901,0.918,0.689,0.682,0.49,0.611,0.838,1.311,0.809,1.181,1.36,0.804,0.711,0.916,1.344,0.839,0.748,1.016,1.123,0.643,0.546,0.895,0.903,1.39,3.478,1.023,0.261,1.024,1.051,1.171,1.889,1.115,0.923,1.293,0.677,1.422,0.938,1.023,0.941,0.893,1.137,0.978,1.055,0.925,0.896,1.003 +NM_001924,0.49,0.993,0.902,0.59,1.321,2.734,0.759,0.861,1.82,0.63,1.339,0.428,0.57,0.704,1.187,1.587,0.707,0.708,0.772,1.162,0.48,0.678,1.352,0.653,0.642,0.488,0.79,1.11,0.717,1.726,1.233,0.774,1.181,1.601,1.206,0.467,0.952,1.038,1.352,0.567,1.069,1.578,1.358,0.781,0.606,1.52,1.437,1.068,0.753,0.51,1.104,0.601,0.834,1.461 +NM_001925,1.175,1.142,0.989,1.101,0.925,1.036,1.23,1.169,0.961,1.049,0.977,1.11,1.078,1.075,0.858,1.038,0.977,1.056,0.892,0.897,1.055,0.962,0.984,0.861,0.935,0.947,1.133,1.059,1.132,0.941,0.93,1.0,1.207,0.967,1.26,0.787,1.065,0.927,0.979,1.1,0.848,1.01,1.158,1.05,1.174,0.93,0.968,0.998,1.173,1.064,0.954,0.949,1.147,1.177 +NM_001926,0.974,2.068,0.935,3.237,0.985,0.991,0.96,0.996,0.825,0.877,2.539,1.035,0.991,0.889,4.083,19.37,0.969,1.025,0.838,3.783,0.937,0.87,1.007,0.932,1.074,0.965,0.895,0.952,0.91,3.69,0.994,0.869,0.917,0.833,1.049,1.025,17.55,0.956,1.015,0.975,0.943,1.419,7.073,0.864,0.984,0.969,10.94,0.946,111.4,1.002,10.88,0.939,0.886,1.22 +NM_001927,0.713,1.252,0.843,0.98,0.904,1.509,1.121,0.759,0.865,0.792,2.579,0.781,0.842,0.721,1.655,2.376,0.825,0.828,0.862,0.954,2.773,0.922,3.711,0.828,0.884,0.775,0.826,3.056,0.841,2.165,0.735,1.57,1.106,4.856,0.837,0.904,1.002,2.692,1.574,1.322,6.823,5.298,1.237,0.813,0.81,1.039,0.838,0.882,0.952,0.858,2.046,1.244,1.176,0.912 +NM_001929,0.486,1.084,0.99,0.777,0.691,1.224,0.679,0.431,0.863,0.75,1.0,0.727,0.577,0.4,0.737,1.295,0.608,0.901,0.582,1.565,0.368,0.708,1.559,0.778,0.684,0.633,0.898,0.804,0.525,1.576,0.624,1.742,2.684,1.504,0.199,1.318,1.103,0.709,1.383,1.601,0.987,1.21,0.805,1.471,0.825,1.337,1.224,0.622,0.955,0.58,1.125,0.939,0.688,1.408 +NM_001930,0.905,0.944,0.92,0.912,0.753,1.223,0.613,0.614,0.974,0.874,1.072,0.736,0.722,0.707,0.945,1.264,1.037,0.931,1.186,0.874,0.815,0.759,1.523,1.121,0.899,0.629,1.149,0.757,0.561,1.304,0.862,1.202,1.422,1.521,0.451,0.992,1.243,0.907,1.267,1.206,0.985,1.223,0.678,1.313,0.892,0.994,0.898,0.667,0.897,0.762,0.92,1.006,1.051,1.0 +NM_001931,0.972,0.944,1.038,0.852,0.943,1.133,0.631,0.593,1.333,1.079,1.258,0.909,0.815,0.89,0.991,1.787,0.782,0.952,1.195,0.902,0.592,0.915,1.26,1.142,0.823,0.882,1.26,0.865,0.475,1.287,1.008,0.999,1.333,1.211,0.413,1.078,1.349,0.926,1.322,0.761,1.092,0.916,0.951,0.781,0.97,1.167,1.006,1.036,1.405,0.826,1.144,0.872,0.82,1.537 +NM_001932,1.017,0.93,0.941,1.0,1.003,1.052,1.039,1.123,1.085,0.912,1.145,1.062,0.987,1.068,1.375,1.028,1.089,0.963,0.927,0.993,1.03,0.967,1.086,0.905,0.952,0.914,1.106,0.983,0.867,0.945,0.975,1.052,1.094,0.92,0.923,1.015,0.987,0.949,0.911,1.07,0.964,1.035,1.138,0.958,1.101,0.965,1.072,1.034,0.962,1.013,0.992,1.07,1.048,0.971 +NM_001933,1.006,0.913,0.919,0.933,0.8,1.078,0.777,0.722,1.001,1.002,0.977,0.823,0.696,0.834,0.908,1.082,1.018,1.149,1.154,0.813,0.919,0.91,1.186,1.013,0.957,1.138,1.285,0.831,0.528,1.059,0.953,0.903,0.708,1.091,0.727,0.808,1.088,1.046,1.544,0.897,1.023,1.075,0.921,1.713,0.95,0.983,1.091,0.92,1.265,0.965,1.001,0.887,0.933,0.923 +NM_001934,1.05,1.083,0.914,1.079,1.019,0.917,0.786,1.013,0.862,0.99,0.928,1.008,0.966,1.021,0.985,0.889,0.926,0.885,1.004,0.831,1.033,1.054,0.991,0.982,0.912,0.973,1.236,1.121,0.86,1.122,0.935,0.818,0.81,0.905,1.025,0.871,1.077,1.056,1.047,1.074,1.071,1.044,1.147,1.11,1.116,1.062,0.943,0.903,0.939,0.951,1.09,0.831,0.945,1.032 +NM_001935,0.54,1.298,0.556,0.93,0.54,1.747,0.656,0.49,0.578,0.517,3.212,0.53,0.547,0.519,3.417,9.183,0.523,0.643,0.518,5.163,0.47,0.564,5.612,0.5,0.596,0.446,0.721,0.565,0.372,0.982,0.548,0.75,0.852,1.362,0.606,2.318,4.507,0.546,1.328,4.176,0.557,2.127,2.573,3.069,0.555,4.512,2.835,0.509,3.167,0.542,3.492,1.018,0.62,1.925 +NM_001936,1.889,1.853,1.865,1.9620000000000002,2.075,2.083,1.653,2.205,2.004,1.936,1.8170000000000002,1.9889999999999999,1.87,2.0100000000000002,2.007,1.96,1.891,1.927,1.8719999999999999,1.963,1.924,1.896,2.099,1.939,2.105,2.122,2.082,1.869,2.2279999999999998,2.207,2.117,2.096,1.763,2.115,2.165,2.184,1.958,2.201,1.942,2.0220000000000002,2.067,1.9819999999999998,1.759,1.877,1.835,1.782,1.9060000000000001,2.077,2.008,2.017,1.9929999999999999,2.015,2.1929999999999996,2.463 +NM_001937,0.703,2.922,0.724,1.348,0.676,3.662,1.575,0.857,0.812,0.727,1.38,0.773,0.701,0.644,1.563,1.43,0.607,0.709,0.596,3.461,0.839,0.662,2.354,0.77,2.326,0.717,0.583,1.303,0.991,7.905,0.705,2.698,1.009,9.057,0.68,0.719,1.814,1.631,1.288,0.722,1.204,5.128,1.414,0.627,0.613,0.772,0.818,0.725,0.704,0.644,1.649,0.644,0.962,0.977 +NM_001938,0.754,0.957,1.162,0.843,1.035,1.738,0.797,0.672,1.028,1.259,1.421,0.897,0.704,0.671,0.916,1.575,0.953,1.168,1.363,0.923,0.655,0.889,0.853,1.206,0.591,0.982,1.132,0.911,0.618,1.049,0.831,0.664,1.779,1.253,0.577,0.65,1.432,0.944,1.953,0.731,0.998,0.942,0.833,1.526,1.325,0.945,1.156,0.94,0.914,1.001,1.252,0.691,1.029,1.39 +NM_001939,0.923,1.016,1.086,1.206,1.102,1.284,1.014,0.931,0.964,0.919,0.916,1.01,0.98,0.935,0.9,1.032,1.02,1.177,1.103,0.909,1.003,0.907,1.004,0.973,1.249,1.051,0.761,1.16,0.75,0.954,1.083,0.985,1.181,0.943,1.108,0.856,1.0,0.954,0.939,0.987,0.96,0.835,0.966,0.976,1.01,1.051,1.069,1.001,1.023,1.173,0.902,0.894,1.118,0.919 +NM_001940,0.918,0.949,1.183,0.898,0.886,1.171,0.999,0.848,1.117,0.921,0.925,0.755,0.738,0.807,0.85,1.384,1.021,1.077,1.064,0.994,0.905,0.938,0.986,0.89,0.851,0.924,1.004,0.856,0.885,1.09,0.961,1.294,2.161,1.207,0.789,0.887,0.894,1.094,1.723,1.059,0.862,1.279,0.905,1.238,0.827,0.989,0.861,1.049,0.969,1.152,1.018,0.894,0.99,1.148 +NM_001942,2.24,0.934,4.019,1.053,6.16,0.828,0.793,1.34,2.612,4.45,0.796,3.012,1.113,2.027,1.832,1.55,0.999,2.457,3.407,0.91,1.84,1.576,0.902,1.963,0.957,2.204,0.781,3.441,1.027,0.732,2.782,0.92,1.086,0.801,0.822,0.762,0.843,4.252,0.901,0.74,1.345,0.846,0.973,0.858,2.471,0.957,2.389,1.694,0.786,2.391,1.128,1.125,1.933,0.868 +NM_001943,0.648,0.8,0.709,0.969,0.673,1.225,1.05,0.588,0.708,0.755,1.433,0.738,0.64,0.662,0.973,2.289,0.618,0.971,0.728,1.228,0.699,0.701,1.394,0.629,0.933,0.763,0.632,0.558,0.658,1.552,0.745,0.8,1.273,1.508,0.7,1.085,1.268,0.633,1.456,0.793,0.673,1.031,1.116,1.866,0.794,1.461,1.012,0.732,1.469,0.611,1.242,0.944,0.596,3.744 +NM_001944,4.487,0.158,6.992,0.946,4.868,0.21,0.205,1.135,6.124,7.819,0.229,1.934,1.461,2.589,2.855,1.769,3.181,2.995,7.613,0.262,3.176,2.285,0.384,4.616,0.185,3.521,6.225,3.266,0.193,0.194,5.464,0.185,2.132,0.166,0.285,0.289,0.23,4.084,0.266,0.173,6.382,0.18,0.172,0.237,5.834,0.221,2.967,3.054,0.745,7.225,0.981,1.749,5.544,0.76 +NM_001945,0.975,1.052,1.022,0.84,0.93,0.774,0.636,0.873,1.118,1.431,0.856,0.827,0.971,0.841,0.844,1.058,1.237,0.805,1.717,0.713,1.053,1.436,0.725,1.11,1.086,0.97,0.903,0.831,0.651,1.149,1.046,0.808,1.834,0.916,0.584,0.892,0.698,0.797,1.557,2.399,1.197,0.794,1.183,0.834,0.732,2.648,1.196,1.03,1.288,0.822,0.706,1.415,1.629,1.193 +NM_001946,1.091,0.956,0.914,0.861,1.053,0.823,1.054,0.923,1.063,0.946,1.008,0.854,1.082,0.932,0.969,1.203,0.956,0.964,1.071,0.844,1.13,0.887,0.93,0.944,0.875,0.909,1.034,0.972,1.113,1.098,0.924,1.167,1.154,1.177,1.057,1.033,1.026,1.047,0.989,0.892,0.947,1.075,1.172,1.193,0.892,1.148,0.979,0.856,1.364,0.867,0.956,0.87,1.099,0.931 +NM_001947,1.124,0.91,1.045,1.062,1.09,1.065,1.003,1.082,1.071,1.212,1.019,1.044,1.032,0.921,0.839,0.951,1.111,1.113,1.028,0.991,1.099,0.952,0.879,1.214,0.968,1.086,1.253,0.902,1.167,0.933,1.019,0.954,1.139,0.97,0.923,1.02,0.93,1.095,0.987,0.976,1.084,0.883,1.058,0.997,1.138,0.975,1.048,1.051,1.027,1.186,0.95,1.091,1.393,1.094 +NM_001948,0.855,1.665,1.025,0.973,1.086,1.12,0.899,0.902,1.169,1.185,0.957,1.341,0.999,0.815,0.801,1.264,0.812,1.287,1.253,0.921,0.711,1.065,1.633,1.431,0.825,0.902,1.558,0.974,0.612,1.164,0.81,1.176,1.151,1.088,0.58,0.897,1.202,0.976,1.178,0.7,1.29,1.078,0.731,0.787,0.94,0.815,1.05,0.916,1.117,0.977,1.294,0.826,1.011,1.871 +NM_001949,0.614,1.078,1.048,0.582,0.819,0.991,0.561,0.505,1.23,1.183,0.724,0.722,0.573,0.655,1.002,1.36,0.844,0.712,0.815,0.802,0.561,0.872,1.643,1.377,0.505,0.579,1.691,0.735,0.64,0.998,1.112,1.938,3.641,0.89,0.371,1.028,0.941,0.85,1.291,3.183,0.943,1.175,0.892,1.434,1.057,1.073,1.134,0.58,1.351,0.709,1.046,1.215,1.059,3.109 +NM_001950,1.066,1.079,1.001,1.179,0.897,1.048,1.16,0.86,0.984,0.911,1.057,0.852,1.108,0.974,1.09,1.064,1.089,1.025,1.036,0.88,1.01,0.851,0.806,1.18,1.08,1.147,0.992,0.827,0.953,0.992,0.851,0.986,1.38,0.889,0.966,0.866,0.886,0.88,1.23,0.818,0.917,1.142,1.006,1.527,0.95,0.919,0.956,0.95,0.96,0.954,0.854,0.835,0.909,1.106 +NM_001951,0.719,1.424,0.895,0.771,0.778,1.111,0.956,0.65,0.964,0.852,1.407,0.902,0.775,0.639,0.805,1.362,0.735,0.837,0.817,1.13,0.582,0.755,1.707,1.031,0.699,0.701,0.85,0.766,0.591,0.985,0.755,1.686,2.321,1.109,0.513,1.216,1.365,0.76,1.018,0.977,0.792,1.264,1.074,1.616,0.889,1.638,1.099,0.607,1.438,0.698,1.315,1.114,0.922,2.29 +NM_001953,1.285,0.636,3.462,0.683,1.094,0.703,1.082,0.369,0.902,1.747,0.334,0.754,0.44,0.367,1.049,1.133,1.664,1.199,1.439,0.44,0.794,0.552,0.473,1.504,0.413,0.727,2.345,0.578,0.211,0.412,0.819,1.458,2.904,0.757,0.119,0.645,0.946,0.654,1.575,1.823,1.763,0.56,0.425,1.38,2.81,0.604,1.317,0.903,0.677,1.993,0.695,2.216,2.904,3.646 +NM_001954,2.0709999999999997,1.706,1.839,1.83,1.671,2.189,1.795,1.375,1.665,1.756,2.4349999999999996,1.376,1.7550000000000001,1.682,1.7,2.298,1.908,2.192,2.225,1.8359999999999999,2.004,2.2359999999999998,2.0460000000000003,1.751,1.697,2.3810000000000002,2.152,1.478,2.013,2.1529999999999996,1.486,2.46,2.15,2.266,1.315,1.738,1.799,2.1999999999999997,3.04,1.63,1.718,2.3920000000000003,1.636,2.875,1.5750000000000002,1.732,1.887,2.293,1.3940000000000001,2.127,1.7959999999999998,1.623,1.866,2.124 +NM_001955,0.672,1.929,0.712,0.715,0.627,1.38,0.742,0.701,0.644,0.563,1.321,0.603,0.681,0.633,1.065,1.447,0.615,0.773,0.585,1.717,0.717,0.651,2.835,0.598,0.838,0.638,0.687,0.691,0.609,1.521,0.656,1.176,2.296,1.734,0.652,0.698,1.654,0.879,1.047,1.361,0.747,2.597,0.717,1.167,0.664,1.704,1.126,0.674,1.227,0.644,1.036,1.59,0.911,2.871 +NM_001956,1.523,0.88,1.085,1.107,1.808,1.026,0.881,1.959,2.235,0.939,1.036,1.294,1.666,0.904,1.597,1.363,0.934,1.118,1.383,0.846,1.023,1.866,0.9,0.86,0.994,1.624,1.074,1.987,1.373,1.065,1.287,1.082,1.208,0.945,10.39,0.884,1.088,2.719,1.054,0.929,0.904,1.028,1.178,0.787,0.938,0.861,1.564,2.343,0.757,0.85,0.998,0.944,1.154,1.002 +NM_001957,0.928,1.001,0.812,0.708,0.922,0.986,0.771,0.891,0.954,1.08,0.896,0.961,0.978,1.125,1.2,1.115,0.883,0.869,0.943,0.99,0.959,0.933,1.065,1.08,0.889,0.858,1.145,0.873,1.3,1.15,0.944,3.331,1.164,1.482,0.931,0.944,0.849,1.081,1.265,1.555,1.059,1.321,0.846,0.904,0.951,0.916,0.847,0.914,0.815,1.0,1.149,1.144,1.066,1.219 +NM_001958,1.039,6.653,0.956,1.139,1.62,0.682,2.177,1.583,4.843,0.818,0.565,1.177,1.082,1.629,1.268,0.739,1.232,2.471,0.902,0.738,0.849,1.236,0.715,0.928,4.101,1.429,0.847,1.958,5.539,1.251,3.174,6.94,0.988,3.094,7.286,0.704,0.985,0.944,17.16,10.0,1.126,0.719,0.762,16.9,1.477,0.647,1.141,1.983,0.74,1.598,0.611,0.629,0.661,0.955 +NM_001959,0.835,1.135,1.358,0.75,1.101,0.723,0.674,0.61,1.309,1.391,1.315,0.763,0.776,0.677,0.907,1.813,0.842,1.184,1.39,0.964,0.585,0.666,1.293,1.278,0.694,0.957,1.161,1.291,0.427,0.88,1.209,1.304,1.973,1.042,0.412,1.052,0.964,1.088,0.896,0.707,1.442,1.075,0.739,1.155,1.228,0.965,1.206,0.866,1.216,0.934,1.069,0.854,0.875,1.785 +NM_001961,0.826,1.232,1.104,0.654,0.72,1.112,0.353,0.54,0.966,0.848,1.419,0.766,0.868,0.647,1.052,1.835,0.652,0.817,1.676,0.823,0.727,0.669,1.974,1.068,0.728,1.207,1.305,0.672,0.296,1.07,0.849,1.006,1.034,1.646,0.345,1.036,0.987,1.351,1.273,0.741,0.864,1.501,0.524,1.315,0.903,0.784,0.681,0.853,0.935,1.059,0.994,0.521,1.106,0.948 +NM_001962,0.871,0.984,1.007,1.131,0.976,0.984,1.168,1.242,0.998,1.06,1.099,1.02,0.917,0.841,1.058,0.949,0.933,1.082,0.871,1.018,1.236,0.916,0.979,0.923,0.85,0.88,1.126,0.935,1.192,0.888,1.255,0.951,1.296,1.011,1.176,1.02,1.064,1.126,0.915,0.913,0.975,1.139,1.172,1.071,1.117,0.942,0.979,0.993,1.187,0.908,1.088,0.916,1.195,0.923 +NM_001963,1.06,0.982,0.824,0.854,1.102,0.947,0.824,0.987,1.036,0.93,0.885,1.047,1.038,0.832,0.99,0.936,0.937,0.934,1.027,1.064,0.956,1.121,0.986,1.007,1.04,0.98,0.997,1.089,1.101,0.96,1.003,1.11,1.095,0.933,1.006,1.013,1.134,1.06,0.909,1.062,0.984,1.165,1.18,0.985,1.098,0.922,0.921,1.008,1.007,0.925,1.026,0.989,0.99,0.914 +NM_001964,0.875,0.741,0.938,0.744,0.718,0.624,0.601,0.59,0.781,0.736,1.054,3.2,0.614,1.032,1.131,0.75,1.689,0.699,0.816,0.737,0.779,1.11,1.024,1.704,0.55,0.667,0.892,0.644,0.363,0.885,1.307,2.42,1.868,0.728,0.682,0.655,0.658,0.805,2.141,4.69,0.898,1.273,1.311,1.802,0.802,2.98,1.729,0.719,1.124,0.952,0.83,1.881,1.704,1.773 +NM_001967,0.867,1.677,1.017,1.001,0.739,1.185,0.687,0.374,1.746,0.51,1.028,0.529,0.735,0.671,1.086,1.226,0.769,0.741,0.734,1.461,0.452,0.898,1.323,0.725,0.799,0.671,1.032,1.186,0.456,1.921,1.115,1.165,0.738,1.855,1.153,0.618,0.914,0.959,1.7,0.438,0.983,1.39,0.378,0.958,0.58,0.946,0.417,0.795,0.504,0.39,1.119,0.276,0.54,2.07 +NM_001968,0.667,0.841,1.325,0.727,1.26,1.39,0.94,1.053,1.716,1.17,0.875,1.036,0.916,0.674,1.369,2.367,0.947,1.252,1.046,1.123,0.48,0.843,1.268,1.459,0.521,0.602,1.219,1.361,0.453,0.986,1.726,1.046,1.85,1.235,1.059,0.45,1.155,1.324,1.627,0.727,1.468,0.984,0.582,0.626,1.356,1.117,1.187,0.866,1.628,0.923,1.176,0.801,0.704,1.189 +NM_001969,0.856,0.927,1.859,0.784,1.003,0.777,0.604,0.426,1.656,1.205,1.047,0.439,0.469,0.836,1.101,1.526,0.918,1.059,0.874,1.387,0.603,0.406,1.418,0.797,0.716,0.814,0.728,1.361,0.323,0.943,1.447,1.403,1.503,1.45,0.698,0.735,0.993,0.748,1.031,0.634,1.245,1.024,0.668,1.664,1.235,1.198,0.999,0.49,1.102,0.826,1.203,0.72,1.267,1.586 +NM_001970,1.949,0.479,1.32,1.531,1.003,0.967,0.485,0.758,1.558,1.172,0.914,1.092,1.611,0.781,1.12,1.413,1.053,1.194,2.674,0.526,1.317,0.601,1.08,1.172,0.865,2.396,0.993,0.698,0.37,0.752,0.609,0.752,1.307,0.934,0.393,0.551,0.945,0.95,1.688,0.573,1.327,0.885,0.859,1.392,1.048,0.668,1.188,1.09,1.145,1.926,0.997,0.701,1.325,0.647 +NM_001971,0.924,1.074,1.096,1.169,1.042,1.068,0.95,0.998,0.941,0.828,0.911,1.0,0.996,1.002,1.027,1.042,1.069,0.929,0.941,0.942,0.954,0.897,0.832,0.927,0.936,0.918,1.097,1.01,1.008,1.011,0.909,1.043,0.876,1.104,1.041,0.988,1.051,0.967,0.914,1.104,1.098,0.968,0.993,0.924,0.907,1.032,0.882,1.017,1.0,0.997,1.143,1.019,1.149,1.017 +NM_001972,0.898,1.002,0.889,0.901,0.958,1.119,1.49,1.015,0.978,1.004,0.909,0.893,0.991,0.944,0.941,1.073,0.981,0.983,1.028,1.115,0.963,0.983,0.88,1.043,1.111,0.863,1.061,0.926,1.208,0.988,1.055,1.08,0.952,1.196,1.029,0.973,1.051,1.069,1.097,1.067,0.888,1.171,1.104,0.936,0.955,0.971,0.9,0.924,0.962,1.291,1.158,0.91,0.862,1.045 +NM_001973,1.9649999999999999,1.877,2.059,1.837,1.936,2.012,1.7269999999999999,2.011,2.0180000000000002,2.248,1.967,1.838,2.02,1.998,2.1399999999999997,2.018,2.008,2.077,2.0999999999999996,1.901,1.9889999999999999,1.815,2.0919999999999996,2.01,2.184,1.8239999999999998,1.859,1.9129999999999998,1.968,1.8929999999999998,2.0629999999999997,1.984,2.309,1.709,2.034,2.096,2.058,1.847,2.001,2.009,2.0140000000000002,2.123,2.351,1.991,1.89,1.968,2.1740000000000004,1.9009999999999998,2.088,1.957,2.0679999999999996,1.9489999999999998,2.293,1.919 +NM_001974,1.013,1.01,0.914,0.848,1.046,0.828,0.92,0.93,1.012,0.931,0.916,0.877,1.009,1.067,0.952,0.971,0.942,0.878,0.981,1.197,0.951,0.938,0.81,0.886,0.9,0.956,0.878,1.001,1.001,1.16,1.091,1.063,1.255,0.825,0.972,1.007,0.932,0.846,1.214,1.19,0.966,1.076,1.22,1.021,0.97,1.133,0.945,1.063,0.86,1.052,0.987,1.117,0.973,1.03 +NM_001975,0.868,1.044,0.971,0.928,0.839,0.833,0.814,0.934,0.867,0.863,0.886,0.927,0.879,0.797,0.82,0.95,0.874,0.937,0.745,0.936,0.818,0.986,0.936,1.001,0.942,0.974,1.077,1.053,0.835,1.121,1.047,2.087,2.507,1.34,0.908,1.541,0.974,1.161,1.551,3.481,0.937,1.118,0.835,1.364,1.0,0.797,0.926,0.943,0.903,0.948,1.111,1.218,0.897,1.15 +NM_001977,1.004,1.04,0.99,1.016,0.884,1.116,1.092,0.909,1.16,0.905,1.039,1.084,0.886,0.844,0.939,0.986,1.012,0.962,0.828,0.956,1.144,0.9,0.864,0.969,0.979,0.907,0.989,0.99,0.785,0.991,0.986,1.39,1.432,0.97,0.976,1.033,1.175,1.089,1.17,1.188,1.133,0.921,0.951,0.952,0.929,0.932,0.928,1.016,0.911,0.912,1.05,1.027,0.879,0.886 +NM_001978,0.75,0.964,1.035,1.152,0.834,1.077,0.918,0.831,0.956,0.724,1.189,0.83,0.919,0.813,0.821,1.343,0.851,0.957,0.943,1.015,0.817,1.016,1.086,0.897,1.254,1.148,0.902,0.958,0.839,1.108,0.906,1.139,1.506,1.194,0.823,0.926,0.934,0.882,1.43,1.009,0.803,0.996,0.938,1.04,0.884,1.157,0.794,1.061,0.855,0.998,1.065,1.042,1.012,1.392 +NM_001979,1.01,0.789,1.23,0.762,0.94,1.617,0.423,0.564,1.615,0.878,2.211,0.78,0.799,0.944,1.62,3.249,0.848,0.833,1.236,2.441,0.574,1.215,1.479,1.183,0.615,0.932,1.206,1.526,0.497,1.269,1.226,0.543,0.673,1.28,0.3,0.449,2.45,1.28,0.861,0.262,1.086,1.735,1.686,0.449,0.865,3.563,0.996,0.866,1.489,0.796,1.41,0.489,0.849,0.774 +NM_001980,0.942,1.082,0.905,0.968,0.85,0.95,0.954,0.775,1.001,0.869,0.987,0.929,0.842,0.748,1.067,1.031,0.932,0.859,0.824,0.919,0.799,0.881,1.143,0.923,1.044,0.905,0.951,0.982,0.888,1.022,0.922,1.994,1.158,1.145,0.944,1.046,0.857,0.979,1.132,1.13,0.926,1.138,0.937,1.004,0.991,1.078,1.019,0.906,0.896,0.854,1.045,1.001,0.96,1.091 +NM_001981,0.746,1.011,1.282,0.633,1.246,1.183,0.811,0.942,1.721,1.168,0.821,1.005,0.749,0.811,1.279,1.57,0.955,1.099,1.024,0.992,0.498,1.318,1.398,1.432,0.676,0.638,1.32,1.169,0.715,0.964,1.603,1.156,1.58,1.049,1.093,0.581,0.939,1.023,1.324,0.799,1.05,1.0,0.726,0.648,1.303,0.93,0.889,1.049,1.193,0.846,1.138,0.763,0.706,1.324 +NM_001982,0.857,1.179,1.063,0.783,0.702,1.177,0.473,0.362,1.135,0.661,0.991,0.382,0.479,0.9,1.015,1.014,0.945,1.131,1.259,0.953,0.666,1.125,1.018,0.885,0.739,0.959,1.149,0.678,0.878,1.361,0.826,1.056,0.995,1.42,0.77,0.618,1.147,1.041,1.597,0.707,0.924,1.28,0.616,1.772,0.742,0.81,1.026,1.023,0.676,0.987,0.9,0.505,0.551,0.805 +NM_001983,0.889,1.061,1.022,0.697,0.842,1.163,0.479,0.611,0.835,0.852,1.076,0.855,0.938,0.649,0.704,1.34,0.936,0.807,1.334,0.896,0.905,1.082,1.28,1.202,1.048,0.983,1.197,0.782,0.536,0.875,0.895,0.99,2.73,1.308,0.582,0.811,0.868,1.356,1.208,0.847,1.008,1.225,0.708,1.601,1.121,0.635,1.013,1.016,0.652,0.631,0.836,0.646,1.133,1.121 +NM_001984,0.729,0.885,1.259,0.701,0.852,0.936,0.469,0.432,1.34,1.041,1.077,0.771,0.682,0.643,0.982,2.009,0.754,0.729,1.456,0.936,0.648,0.672,1.55,1.257,0.523,0.876,1.365,1.068,0.255,1.333,0.909,1.473,2.535,1.509,0.128,1.44,1.111,1.03,1.373,0.418,1.221,1.333,0.575,1.685,1.05,1.009,1.05,0.522,1.054,0.737,1.026,0.962,1.072,1.759 +NM_001985,0.536,1.42,1.022,0.607,1.091,1.408,0.732,0.535,1.196,1.403,0.958,1.101,0.666,0.381,0.787,1.68,0.985,1.584,1.058,1.549,0.376,0.906,1.669,1.152,0.479,0.913,0.951,0.973,0.529,1.463,0.933,0.9,1.426,1.271,0.322,1.067,1.328,1.063,1.695,0.578,0.897,1.183,0.759,1.116,0.921,1.261,1.679,0.931,1.604,0.646,1.565,0.777,0.692,0.922 +NM_001986,1.139,0.955,0.973,0.865,1.058,0.888,0.687,0.98,1.188,1.275,0.95,1.061,1.047,0.81,0.857,0.969,1.112,0.876,0.991,0.803,0.923,1.092,0.952,1.234,0.868,0.999,1.092,0.939,0.858,0.844,1.082,1.362,2.075,0.839,1.228,2.014,0.872,1.131,1.627,2.55,0.992,0.895,0.689,3.585,1.038,0.801,1.48,1.339,0.919,0.955,0.982,1.248,1.112,0.938 +NM_001987,0.615,0.922,1.295,0.638,0.705,1.509,0.947,0.496,0.899,0.806,0.921,0.789,0.665,0.687,0.742,0.956,0.908,0.938,0.841,1.098,0.591,0.652,1.547,0.884,0.644,0.531,0.993,0.929,0.822,1.298,0.755,1.284,1.9,1.124,0.488,1.213,1.098,0.768,1.569,1.609,1.127,1.539,0.82,1.601,0.737,1.095,1.505,0.56,1.316,0.789,1.239,0.76,1.007,1.07 +NM_001988,3.62,0.363,4.929,1.041,6.436,0.368,0.239,2.328,6.425,4.689,0.334,3.122,1.447,3.521,2.351,1.026,3.633,2.274,4.442,0.587,2.516,4.364,0.48,3.091,0.222,5.133,3.609,4.064,0.218,0.454,5.128,0.474,1.438,0.319,4.217,0.39,0.372,5.225,0.459,0.356,4.872,0.435,0.329,0.526,3.956,0.329,2.256,6.143,0.361,4.081,1.142,1.103,4.052,1.052 +NM_001989,0.972,0.901,0.924,0.926,0.978,0.991,1.097,0.927,1.017,1.037,1.177,0.832,1.011,1.151,1.229,1.031,1.009,1.055,1.192,1.167,0.984,1.031,0.919,1.012,1.122,0.924,1.021,1.111,1.081,1.06,0.921,0.877,1.123,0.921,0.942,1.113,0.918,0.916,0.929,1.134,1.087,0.916,1.053,0.948,1.02,1.0,1.066,1.003,1.02,0.884,0.989,1.181,0.857,0.965 +NM_001990,0.987,0.983,1.007,0.966,1.029,1.009,1.016,1.299,0.779,0.994,0.806,1.003,1.012,0.817,0.858,1.176,1.051,1.206,1.004,1.111,0.905,0.961,1.221,0.965,0.997,1.048,0.937,1.132,0.962,0.903,1.194,1.132,0.93,1.139,1.158,1.035,0.971,0.976,1.039,0.792,0.916,0.963,1.248,1.089,1.079,0.96,0.978,1.208,0.988,0.875,0.933,0.948,0.959,1.031 +NM_001991,0.987,0.964,1.058,1.056,0.872,1.057,0.971,1.057,1.072,0.906,0.944,0.916,0.821,1.097,1.137,0.963,1.018,0.938,1.065,1.011,0.809,1.125,1.051,0.956,0.976,1.049,1.049,0.904,1.0,1.078,1.059,1.205,1.044,1.309,1.042,0.867,0.947,1.035,0.973,0.952,1.0,1.178,1.051,1.084,0.949,0.862,0.812,1.123,0.83,0.998,0.971,0.907,0.915,1.059 +NM_001994,0.924,1.033,0.943,1.151,0.876,1.079,0.919,1.15,0.864,0.911,1.035,0.828,1.07,0.945,0.995,0.996,1.097,1.041,0.984,1.083,1.054,1.013,0.881,0.994,1.133,1.002,0.858,0.942,2.152,0.949,0.927,1.027,1.047,0.962,1.106,1.34,1.056,0.99,0.984,0.929,0.971,0.893,1.114,1.015,1.007,1.132,1.187,1.118,1.136,1.005,0.84,1.16,1.148,0.897 +NM_001996,1.495,2.051,2.716,1.726,1.682,2.199,1.342,1.058,1.79,2.255,1.2650000000000001,1.1440000000000001,1.4,1.5390000000000001,2.25,1.851,2.33,1.728,2.074,2.536,2.008,1.3719999999999999,2.436,2.056,2.027,1.501,2.701,1.454,0.733,3.606,1.4180000000000001,18.95,2.6719999999999997,5.537,0.805,0.969,1.266,2.219,1.107,1.687,2.238,5.9079999999999995,1.414,0.817,1.758,1.9769999999999999,1.504,1.278,0.802,1.706,2.195,1.94,1.9129999999999998,2.184 +NM_001997,0.594,1.087,1.156,0.535,0.897,1.264,0.635,0.791,1.094,0.963,0.733,1.105,0.949,0.415,0.816,1.608,0.893,1.159,1.146,1.102,0.589,0.96,1.231,1.268,0.529,0.789,1.295,1.002,0.452,1.275,0.96,1.36,1.659,1.343,0.322,0.99,0.953,1.149,1.34,0.813,1.136,1.107,0.472,1.063,1.034,0.789,1.127,0.955,0.991,0.923,1.036,0.737,0.716,1.17 +NM_001999,0.839,1.07,0.923,0.918,0.914,1.0,1.11,0.803,0.824,0.898,1.174,0.914,0.968,1.063,0.979,0.922,0.931,0.986,0.942,1.055,0.811,1.003,1.273,0.861,0.995,0.785,0.82,1.08,0.963,1.322,0.847,2.347,1.121,1.158,1.023,0.9,1.062,0.914,0.986,1.14,0.951,1.367,1.064,0.908,0.8,1.417,0.898,0.994,1.046,0.866,1.058,0.934,1.024,1.13 +NM_002001,1.439,0.891,1.699,1.019,2.741,0.844,1.09,1.422,2.598,1.274,0.999,1.407,2.167,1.725,1.781,0.777,2.139,1.141,1.63,0.941,1.273,2.025,0.789,2.236,0.839,1.988,2.015,2.137,0.684,2.324,2.045,0.675,1.219,1.801,0.725,0.647,0.861,2.175,0.74,0.744,2.717,0.994,0.888,0.745,1.737,0.779,0.755,1.001,0.747,1.322,0.828,0.78,1.608,0.762 +NM_002002,1.03,0.908,0.909,0.958,1.032,0.855,1.018,0.783,0.951,1.132,1.05,0.874,1.158,1.143,0.955,0.856,1.056,1.03,0.945,1.033,1.077,1.024,0.993,1.006,0.793,0.911,0.985,1.083,0.996,1.109,0.966,0.896,0.914,1.177,1.003,0.934,1.058,1.068,1.014,0.951,1.056,1.123,0.897,0.875,0.949,0.944,1.077,1.002,1.077,0.915,0.942,0.901,1.118,0.936 +NM_002003,0.703,1.259,0.946,1.871,0.811,1.003,1.118,1.167,0.829,0.877,0.897,0.874,0.763,0.899,1.136,1.004,0.773,0.741,0.793,0.783,0.89,0.869,0.988,0.956,0.839,0.81,1.071,0.791,0.676,1.528,0.791,1.777,1.272,0.976,0.737,1.037,1.017,0.804,4.319,12.46,0.824,1.762,1.622,1.5,0.859,0.871,2.034,0.823,1.044,0.825,0.927,3.862,1.106,1.695 +NM_002004,0.493,0.877,1.181,0.924,0.914,1.588,0.72,0.573,1.222,1.2,1.184,1.186,0.605,0.326,0.879,2.505,0.856,1.495,1.148,1.372,0.313,0.731,1.991,1.729,0.487,0.682,1.939,0.704,0.464,1.196,0.778,2.02,1.699,1.104,0.21,1.01,1.405,0.837,1.349,1.065,0.922,0.836,0.566,1.11,1.18,1.544,1.309,0.732,0.81,1.064,1.769,0.798,0.716,1.105 +NM_002005,0.829,1.038,0.968,0.927,0.906,1.045,0.988,0.913,0.927,0.719,1.017,1.004,0.985,0.89,0.663,1.012,0.845,0.791,0.822,1.001,1.117,0.985,1.041,0.884,1.083,0.856,0.998,0.814,0.768,1.091,0.955,1.445,0.815,0.997,1.002,0.904,0.881,0.916,1.165,1.443,1.157,1.064,0.795,0.962,1.018,0.953,0.965,0.795,0.916,0.92,0.987,1.021,1.043,1.444 +NM_002006,0.975,0.907,0.97,1.107,0.927,0.996,0.86,1.001,0.993,1.174,0.988,1.171,1.033,1.315,1.047,1.001,0.976,1.165,0.929,1.056,1.097,0.939,0.97,1.114,1.02,1.001,1.026,1.018,0.967,0.958,1.129,0.933,1.019,1.181,1.001,0.957,0.97,0.936,1.19,0.97,1.014,0.969,1.035,1.077,0.887,0.994,1.082,1.077,1.05,0.986,0.943,1.024,0.97,1.046 +NM_002007,1.084,1.021,0.925,0.986,1.038,1.001,1.06,1.38,1.104,0.917,1.108,1.099,0.939,1.049,0.85,1.263,1.008,1.121,1.11,0.951,1.089,0.835,0.883,1.128,0.961,0.843,1.172,0.886,0.843,0.882,1.019,1.008,0.729,0.762,0.967,0.932,1.256,1.077,0.882,1.031,1.061,0.753,0.938,0.958,0.907,0.922,1.001,1.051,0.933,1.0,1.135,1.053,1.019,0.861 +NM_002010,1.078,1.033,1.08,0.99,1.064,1.032,1.087,0.899,0.754,0.819,1.029,0.96,0.83,1.135,1.073,1.131,0.858,0.966,0.847,0.972,0.977,1.064,1.159,0.896,0.963,0.969,0.987,0.939,0.692,1.193,0.967,1.159,0.988,1.244,0.919,1.0,1.147,1.028,0.883,0.901,0.907,1.169,0.965,0.904,0.991,1.034,0.843,0.973,1.023,0.883,1.025,0.954,0.914,1.048 +NM_002011,0.979,0.951,0.905,1.019,1.171,0.929,1.027,0.971,0.928,0.935,1.243,0.991,0.994,1.077,0.895,0.998,0.976,1.128,1.267,0.962,1.001,0.998,0.984,1.014,1.123,0.897,0.701,1.243,1.293,0.948,1.062,0.956,1.106,0.956,1.188,1.03,0.969,0.972,1.056,1.111,1.062,1.054,1.0,1.033,0.87,0.901,1.062,1.007,1.071,0.978,1.0,1.01,1.276,0.904 +NM_002013,0.652,0.958,1.58,0.54,1.307,1.34,0.557,0.938,1.707,1.159,1.015,1.156,0.796,0.638,1.201,2.464,1.124,0.959,1.401,0.984,0.411,1.274,1.117,1.892,0.413,0.62,1.951,1.304,0.344,1.001,1.525,1.028,1.955,1.179,0.217,0.482,0.999,1.565,1.164,0.482,1.413,0.825,0.562,0.688,1.177,1.014,1.481,0.915,1.063,0.823,1.169,0.666,0.677,1.281 +NM_002014,1.163,0.877,1.234,0.568,1.097,0.56,2.265,0.556,1.338,1.609,0.964,1.201,0.641,0.693,0.847,1.087,1.335,0.734,1.428,0.884,1.532,1.026,0.83,1.383,0.959,1.203,1.395,1.005,1.586,1.02,1.296,0.687,3.114,0.63,0.327,0.821,0.85,1.589,1.753,0.776,2.296,0.886,0.653,0.991,1.295,0.843,1.023,0.935,1.355,1.014,1.026,0.972,0.971,1.006 +NM_002015,0.601,1.064,1.113,0.574,0.865,0.919,0.908,0.535,0.927,0.889,0.655,0.854,0.555,0.667,0.806,0.849,0.704,1.113,0.772,1.198,0.6,0.691,0.898,0.884,1.118,0.796,0.973,0.838,0.888,1.221,0.869,2.695,1.27,1.523,0.47,1.105,0.958,1.033,1.331,3.833,0.989,1.219,1.376,0.814,0.811,0.822,1.167,0.738,0.962,0.709,0.937,1.756,0.934,4.097 +NM_002017,0.801,1.086,1.216,0.875,0.951,1.302,1.288,0.904,1.032,0.925,0.971,0.838,0.92,0.791,0.865,1.067,0.971,1.012,0.831,1.025,0.783,0.871,1.056,1.05,0.967,0.788,1.273,1.12,1.087,1.375,1.02,1.843,1.067,1.231,0.838,0.796,0.997,0.99,1.367,1.476,1.003,1.642,0.897,0.79,0.957,0.936,0.972,0.887,0.876,0.934,0.975,1.241,0.788,1.553 +NM_002018,1.147,0.686,1.392,0.722,1.293,0.931,0.541,0.726,1.662,1.032,0.597,0.993,0.708,0.888,1.087,0.95,0.975,1.034,1.422,0.939,0.717,1.502,1.001,1.216,0.613,1.618,1.222,1.348,0.463,0.898,1.348,1.014,0.835,1.187,1.252,0.685,0.999,1.427,1.165,0.879,1.074,0.925,0.553,1.093,1.386,0.832,0.66,1.466,0.499,0.931,1.147,0.639,0.948,1.325 +NM_002019,0.885,0.969,1.035,0.927,0.872,0.886,0.892,1.288,0.971,0.802,0.926,1.144,1.095,0.844,0.944,1.303,0.989,0.973,1.106,0.934,0.967,0.961,1.16,0.848,0.925,1.065,1.151,0.954,0.757,0.813,1.135,1.069,1.065,0.896,0.896,1.045,1.089,0.899,1.143,0.768,0.792,1.065,0.878,1.014,1.19,1.22,1.061,1.03,0.915,1.013,1.063,0.92,0.997,0.995 +NM_002020,0.996,0.979,0.88,0.955,0.969,0.964,0.787,0.837,1.177,0.904,0.993,1.017,1.01,0.91,1.032,1.086,0.992,1.085,0.972,0.928,1.112,0.93,1.015,0.968,1.146,1.078,1.039,1.023,0.707,1.108,1.051,0.946,1.096,1.091,0.864,0.968,1.026,0.979,1.068,1.034,0.99,0.986,0.74,1.06,0.943,1.0,0.938,0.971,0.919,0.887,1.055,1.078,0.927,0.982 +NM_002021,1.05,0.885,1.796,0.886,1.01,0.9,0.785,0.954,1.319,1.189,0.941,0.957,0.99,1.022,0.941,0.97,1.955,0.968,1.246,0.95,1.113,0.983,0.987,1.02,0.934,1.017,1.392,0.955,0.824,0.991,1.152,1.978,0.997,0.906,0.992,1.202,0.997,0.923,0.857,1.034,0.988,0.889,0.875,1.152,1.127,1.189,1.161,0.98,0.977,1.37,0.968,1.098,1.12,1.449 +NM_002023,0.479,2.093,0.496,2.251,0.446,1.826,1.124,0.495,0.51,0.614,1.937,0.511,0.56,0.474,0.999,1.301,0.48,0.795,0.515,1.323,0.461,0.54,5.75,0.594,6.005,0.545,0.62,0.583,1.044,5.483,0.48,3.46,4.907,4.989,0.45,0.876,2.925,0.686,0.966,0.86,0.58,7.585,1.056,1.49,0.457,0.605,0.628,0.465,0.913,0.497,2.084,0.638,0.453,1.011 +NM_002024,0.707,1.07,1.36,0.769,1.032,1.323,0.862,0.71,1.405,1.033,0.842,0.799,0.823,0.929,0.866,1.265,0.998,1.105,1.007,1.189,0.548,0.986,0.993,1.354,0.67,0.647,1.396,1.002,0.535,1.278,1.174,1.181,2.242,1.323,0.651,0.657,1.132,0.977,1.307,0.741,1.14,1.116,0.619,1.004,1.118,0.927,0.978,0.886,0.894,0.827,1.106,0.876,0.613,1.569 +NM_002025,1.104,0.992,1.027,1.085,0.992,0.981,0.997,1.08,1.07,0.804,0.959,0.934,1.071,0.989,0.98,0.988,0.951,1.087,0.909,1.06,1.078,1.064,0.949,1.04,1.109,1.079,0.885,1.015,1.075,1.099,1.055,1.004,0.948,0.93,0.937,1.029,1.003,0.96,0.979,1.122,0.946,0.881,1.045,1.012,1.005,1.134,0.944,1.087,0.988,0.996,1.015,0.938,0.804,0.971 +NM_002026,0.574,1.43,0.613,1.058,0.623,1.12,1.001,0.486,0.542,0.732,1.107,0.57,0.614,0.512,1.05,1.146,0.621,0.539,0.574,1.458,1.576,0.533,3.577,0.619,1.925,0.554,0.541,1.443,0.643,2.08,0.508,37.45,2.678,3.872,0.554,0.736,0.817,1.216,1.189,15.09,2.954,2.814,0.934,0.722,0.764,0.94,0.703,0.61,0.619,0.569,2.079,3.021,0.827,0.831 +NM_002027,1.051,0.971,1.84,0.742,1.09,0.958,0.512,0.681,1.402,1.069,1.029,1.229,0.897,1.085,1.309,1.152,1.035,0.862,1.737,0.89,0.659,1.437,1.075,1.277,0.607,1.073,1.589,1.132,0.421,0.977,1.238,0.995,1.834,1.416,0.233,0.625,0.952,1.246,0.987,0.583,1.382,1.05,0.561,0.983,1.318,0.918,0.994,1.004,1.109,0.964,0.977,0.82,0.996,2.207 +NM_002028,1.053,0.859,1.549,0.76,1.539,0.779,0.574,0.899,1.668,1.548,0.826,1.134,0.844,0.868,0.971,0.965,1.019,1.202,1.143,0.792,0.947,1.224,1.157,1.541,0.661,1.034,1.493,1.295,0.617,0.928,1.188,1.357,1.305,0.916,0.584,0.957,0.918,1.333,0.949,0.901,1.581,0.932,0.709,1.636,1.308,0.931,1.184,1.274,1.005,0.869,1.103,0.825,1.106,1.285 +NM_002029,0.855,1.063,0.841,2.248,0.887,1.052,0.85,0.868,0.982,1.032,0.916,1.084,1.008,0.671,0.85,0.869,1.055,0.935,0.902,0.936,0.813,0.934,0.965,0.925,0.867,0.86,1.11,0.918,0.985,0.865,0.825,2.173,1.158,0.937,1.038,1.135,0.919,0.877,3.752,20.21,0.963,2.083,1.7,1.678,1.398,1.054,1.303,1.001,1.193,1.112,0.978,4.715,1.311,2.165 +NM_002030,0.75,1.214,1.304,0.837,0.925,1.202,1.167,0.773,0.968,1.027,0.789,0.747,0.756,0.676,1.185,1.061,0.859,0.934,0.836,0.925,0.789,0.713,1.629,1.091,0.92,0.836,1.45,0.915,0.611,1.307,0.781,2.301,1.368,1.279,0.777,0.961,0.971,1.004,1.333,1.604,0.923,1.469,0.97,0.859,0.924,1.038,0.87,0.681,0.818,0.894,0.908,2.245,1.202,2.838 +NM_002031,0.855,1.199,1.116,0.879,1.057,1.42,1.219,0.852,0.92,0.764,1.006,0.906,1.061,0.783,1.029,1.435,1.103,1.094,0.897,1.146,0.662,1.068,1.049,1.205,0.864,0.804,1.005,0.961,1.144,1.209,1.195,1.018,1.175,1.073,1.03,0.769,1.017,0.953,1.325,0.785,1.0,0.887,1.032,0.827,0.987,1.281,1.037,1.005,1.223,0.991,1.28,0.826,0.677,1.166 +NM_002033,0.533,1.117,0.496,0.922,0.547,1.426,1.003,0.549,0.49,0.515,1.931,0.429,0.554,0.401,1.173,1.856,0.477,0.947,0.535,1.017,0.521,0.496,1.777,0.492,0.897,0.446,0.416,0.427,0.72,1.391,0.521,0.989,1.792,1.395,0.577,2.148,1.358,0.57,1.596,0.868,0.632,1.336,1.189,1.421,0.477,1.692,0.901,0.448,1.782,0.559,1.562,1.01,0.507,2.005 +NM_002035,0.885,1.008,1.12,0.855,0.92,0.991,0.678,0.744,1.119,1.034,0.939,0.927,1.004,0.92,0.988,1.416,0.939,0.896,1.568,0.991,0.817,1.122,0.992,1.057,0.654,1.0,1.168,1.0,0.639,1.166,1.114,1.221,1.299,1.07,1.074,1.253,0.895,1.331,0.941,1.097,1.116,1.124,0.9,1.264,1.038,0.907,0.907,0.892,0.841,0.917,0.822,1.12,1.235,1.019 +NM_002036,0.687,1.246,0.756,0.859,0.711,1.135,0.922,0.818,0.862,0.934,1.173,0.835,0.704,1.048,0.949,1.373,0.742,0.948,0.739,0.725,0.958,0.846,1.515,0.925,1.168,0.863,0.866,0.954,0.835,1.346,0.744,1.493,1.16,2.104,0.69,1.448,1.036,0.814,2.304,1.534,1.166,3.472,0.806,1.062,0.805,0.864,1.068,0.738,0.885,0.959,1.395,1.154,0.987,1.268 +NM_002037,0.93,1.003,0.914,1.134,0.96,1.074,0.953,0.999,0.869,0.948,1.036,0.91,0.98,0.891,1.192,0.933,0.954,1.029,0.942,1.013,1.176,0.916,1.013,1.033,1.045,0.934,1.133,1.091,0.991,1.171,0.921,1.017,1.14,1.22,0.948,1.056,1.037,1.056,0.992,1.305,0.962,0.927,0.919,1.187,1.078,1.044,0.936,0.802,1.035,0.941,0.933,0.857,0.912,1.131 +NM_002039,1.181,0.995,1.109,0.931,1.2,0.93,0.939,1.047,1.217,1.053,1.107,1.171,0.995,1.099,0.925,0.999,1.082,0.974,1.348,0.97,1.048,1.008,1.123,1.052,0.904,1.094,1.053,1.097,0.846,0.864,1.186,0.917,0.861,0.876,1.105,0.968,0.994,1.014,1.018,0.944,1.361,0.913,1.128,1.118,0.97,0.855,1.068,0.979,1.022,1.029,1.043,0.961,1.028,0.97 +NM_002040,0.975,1.094,1.126,0.888,0.833,1.078,0.636,0.784,1.056,0.977,1.059,0.865,0.77,1.03,0.892,1.253,0.848,0.998,1.096,1.004,0.826,0.802,1.042,0.92,0.928,0.685,1.004,0.987,0.677,1.074,1.083,0.943,1.049,1.136,0.728,0.995,1.12,0.849,1.185,0.847,1.002,1.1,0.952,1.022,0.967,1.304,0.996,0.803,0.846,0.932,1.136,0.979,0.875,1.099 +NM_002042,0.955,0.863,1.295,1.008,1.057,1.024,1.013,1.069,0.978,1.121,0.901,1.101,1.03,0.906,0.817,1.042,1.037,0.974,1.094,0.893,0.801,0.899,0.976,1.03,1.101,1.001,1.222,1.067,1.16,0.975,1.041,1.204,0.957,0.951,0.879,1.166,1.024,0.853,1.143,1.032,1.069,1.014,0.983,1.021,1.008,0.984,1.086,0.96,1.162,1.099,1.165,1.049,0.948,1.147 +NM_002043,1.059,0.964,1.002,1.133,0.896,1.124,0.968,1.026,1.022,0.876,1.074,1.155,0.897,1.025,0.979,1.008,1.014,1.111,1.082,0.969,1.004,0.952,1.03,0.85,0.899,1.007,1.049,1.004,1.014,0.997,1.002,0.98,0.958,1.038,1.209,1.175,0.952,0.925,1.057,0.949,1.022,1.072,0.976,1.017,0.965,0.948,1.006,0.902,0.851,0.992,0.93,1.132,1.097,0.962 +NM_002045,1.011,0.969,1.009,0.941,0.906,1.011,0.885,0.979,1.055,0.95,0.943,1.056,1.092,1.095,0.818,1.045,1.046,0.855,1.083,1.005,1.009,0.974,1.022,1.02,0.981,1.081,0.932,1.213,0.836,0.976,0.97,1.122,1.001,1.044,0.922,1.075,0.905,1.205,0.897,0.978,0.929,1.086,1.102,0.992,1.039,0.818,1.038,0.994,1.141,0.894,1.042,0.878,1.037,1.001 +NM_002047,0.792,0.531,1.071,0.624,0.838,1.036,0.623,0.485,1.102,1.312,1.101,1.2,0.436,0.569,0.727,1.061,0.68,1.025,1.381,0.782,0.452,0.826,1.371,1.783,0.7,0.927,1.048,0.757,0.39,1.124,0.761,0.966,1.56,0.845,0.152,1.828,0.998,0.863,1.442,1.044,1.126,0.875,0.621,1.699,1.354,1.155,1.247,1.032,0.93,1.074,0.991,1.176,1.042,1.607 +NM_002048,1.003,0.992,1.007,0.949,0.979,0.965,0.891,1.032,1.003,0.993,0.932,0.97,0.985,1.022,0.986,1.058,0.962,1.034,0.94,0.901,0.985,1.039,0.993,1.004,1.112,1.061,1.127,1.025,1.211,0.981,1.0,2.093,0.955,0.91,1.114,1.068,0.988,0.949,1.055,1.07,0.984,1.045,1.357,0.868,0.892,0.907,0.931,1.159,0.935,1.086,1.027,1.001,1.028,1.254 +NM_002049,1.123,1.093,1.175,1.037,1.042,1.053,1.125,1.168,1.139,0.984,0.964,0.906,1.068,0.847,1.345,0.852,0.99,1.013,0.925,0.879,1.088,1.068,1.015,1.113,1.035,1.25,1.085,1.084,0.875,0.992,0.908,0.842,1.135,0.829,1.099,0.854,0.967,1.077,1.143,0.963,1.002,1.014,0.902,0.915,1.138,0.965,0.914,1.139,0.797,1.142,1.141,1.097,0.996,1.21 +NM_002052,0.92,1.205,0.814,1.191,0.89,1.987,1.293,0.734,0.867,0.863,2.463,0.868,0.978,0.778,0.966,2.186,0.78,0.888,0.852,1.727,0.916,0.791,1.968,0.84,1.858,0.884,0.797,0.811,1.073,1.661,0.919,1.433,2.062,0.881,0.969,1.224,2.163,0.814,2.971,0.959,0.866,1.769,1.352,0.784,0.903,2.299,0.995,0.883,1.802,0.871,1.602,2.132,0.89,3.326 +NM_002053,0.85,0.91,1.433,0.829,0.817,1.872,2.265,0.721,0.709,0.97,1.03,0.617,0.739,0.593,1.295,1.149,0.979,1.085,0.589,0.931,0.616,0.737,1.298,0.824,1.146,0.638,1.216,0.712,0.836,0.792,0.691,1.329,2.728,1.075,0.622,0.7,1.425,0.755,1.375,1.023,1.14,1.101,0.86,0.819,0.887,1.177,0.829,0.645,1.968,0.703,1.355,1.141,1.342,3.798 +NM_002054,0.836,2.644,0.959,1.331,0.818,0.733,1.104,1.022,0.82,0.876,3.467,0.997,0.99,1.029,3.409,1.036,0.949,0.932,1.028,16.14,1.021,0.935,1.412,0.793,0.96,0.942,0.842,0.981,1.016,0.915,0.929,0.892,1.062,2.051,1.105,1.064,3.187,0.847,0.872,0.893,0.893,0.853,5.964,1.06,0.891,19.19,4.345,0.931,7.523,0.916,1.137,0.988,0.924,0.886 +NM_002056,0.41,1.109,0.598,1.085,0.532,1.029,0.799,0.294,0.605,0.715,1.545,0.465,0.347,0.377,0.912,1.841,0.571,0.969,0.656,1.342,0.388,0.38,2.681,0.64,0.839,0.463,0.681,0.488,0.462,1.418,0.47,1.356,2.197,1.487,0.358,1.43,1.649,0.398,2.059,1.149,0.669,1.32,1.521,1.534,0.694,2.139,1.482,0.432,2.438,0.643,1.732,0.724,0.791,1.274 +NM_002060,0.895,0.917,0.912,0.876,0.891,0.961,0.877,0.953,0.902,0.958,1.048,0.897,1.005,0.967,0.923,1.165,0.87,0.86,1.118,0.941,0.92,0.914,1.42,0.96,1.0,0.824,0.873,0.892,0.894,1.04,0.896,2.766,1.645,1.12,0.836,1.259,0.949,1.103,1.661,1.195,0.923,1.454,0.917,0.94,0.993,1.267,1.007,1.015,0.956,0.965,1.118,1.356,0.908,1.402 +NM_002061,1.023,1.103,0.984,1.016,0.828,0.79,0.792,0.611,1.155,0.877,0.934,0.679,1.116,0.917,1.149,1.712,0.883,1.108,1.391,0.876,0.768,0.877,0.907,0.924,0.687,0.935,1.816,0.756,0.71,0.936,1.113,1.022,1.644,1.02,0.624,1.288,1.417,1.094,1.3,0.748,0.997,0.836,0.77,1.238,0.923,1.098,1.119,1.066,1.455,0.921,0.836,1.001,1.263,1.76 +NM_002062,1.123,0.912,0.908,0.884,1.02,0.983,0.888,0.972,0.909,0.957,0.786,0.914,0.96,0.845,0.896,1.029,0.951,1.127,1.023,0.933,0.979,0.915,1.002,1.108,1.052,0.961,1.037,1.152,0.709,1.11,1.074,0.993,0.803,1.094,1.058,1.068,1.095,1.052,1.059,1.163,0.967,1.086,0.871,1.04,0.95,0.827,1.117,0.983,1.043,0.997,0.992,0.998,1.055,1.005 +NM_002063,0.962,1.035,1.017,0.809,0.897,0.941,1.205,1.114,1.026,0.98,0.983,1.028,0.991,1.17,0.888,0.916,0.795,0.927,0.969,0.975,0.998,0.968,0.839,1.018,0.99,1.053,0.963,0.94,1.244,1.028,0.883,1.056,0.993,1.088,0.936,0.916,0.99,1.134,0.958,0.969,1.077,0.982,1.049,0.909,1.177,1.046,1.079,0.97,1.082,0.974,0.959,0.978,1.063,1.152 +NM_002065,1.31,1.313,1.651,0.625,2.773,0.993,0.885,0.77,2.237,0.842,0.469,1.286,1.981,0.455,0.596,0.428,2.295,1.557,1.478,1.148,0.887,0.537,0.409,0.958,1.676,0.615,2.265,1.007,0.661,1.581,1.648,0.895,1.146,1.555,1.943,0.614,0.852,1.244,0.601,0.756,3.194,0.92,0.35,0.664,1.769,0.355,1.459,0.959,0.565,1.758,0.64,1.062,1.772,0.967 +NM_002066,1.137,1.027,0.928,1.02,1.091,1.034,1.024,1.028,1.139,0.991,0.963,0.967,0.967,1.037,1.06,0.95,1.027,1.014,1.019,0.967,1.051,0.96,0.907,1.1,0.983,0.882,1.001,1.173,1.307,0.943,0.819,0.966,1.052,0.978,1.082,1.015,0.987,1.178,1.06,1.092,0.874,0.999,1.026,0.916,0.969,1.017,0.933,0.985,0.937,1.101,0.909,0.911,1.031,1.021 +NM_002067,0.365,1.312,0.605,0.759,0.395,2.094,0.874,0.218,0.498,0.499,2.298,0.466,0.358,0.323,1.267,2.746,0.467,1.061,0.461,1.349,0.196,0.508,2.067,0.596,0.918,0.448,0.713,0.458,1.14,2.078,0.387,1.355,0.967,1.575,0.119,0.895,3.093,0.577,2.013,1.043,0.566,1.875,2.058,1.095,0.388,2.086,1.089,0.304,3.192,0.379,2.013,0.721,0.42,1.325 +NM_002069,1.011,0.948,1.219,0.904,1.063,1.015,0.793,1.093,1.055,1.076,1.22,1.037,0.963,1.009,1.301,1.028,0.969,1.022,1.046,0.923,0.92,1.166,0.902,1.197,0.973,0.883,1.166,1.081,1.037,0.967,1.2,1.125,1.208,0.918,0.824,1.014,0.819,0.843,1.04,0.888,1.179,1.043,0.915,1.085,1.038,0.919,1.027,0.993,0.825,1.043,1.078,1.03,1.013,1.037 +NM_002070,0.419,0.91,1.781,0.357,1.12,1.121,0.81,1.283,0.98,1.016,0.57,0.685,0.749,0.608,0.862,1.949,1.339,0.986,1.077,0.893,0.51,0.725,1.322,1.007,0.285,0.412,1.507,0.835,0.295,1.418,1.453,1.881,0.874,1.365,1.395,0.959,0.848,1.146,1.859,1.841,1.026,1.158,0.462,0.814,1.229,0.713,1.254,0.501,0.513,0.622,1.012,1.315,1.133,1.322 +NM_002071,1.022,0.969,1.058,0.854,0.906,1.009,0.908,0.86,1.142,0.91,0.95,1.039,1.072,0.933,1.161,1.034,1.041,0.96,1.018,0.964,1.07,1.012,1.003,1.198,1.031,0.991,1.109,1.003,0.979,1.118,1.061,1.041,0.996,1.109,1.067,1.059,0.914,1.024,1.065,1.058,0.906,1.139,0.897,1.038,0.934,0.926,0.995,0.91,0.981,1.011,0.954,0.963,0.936,0.8 +NM_002072,1.024,0.925,1.176,1.062,1.164,0.965,1.09,1.063,1.069,1.047,1.024,1.059,0.968,0.957,1.007,1.055,1.025,1.037,0.992,0.993,1.031,0.946,0.84,0.922,0.989,0.837,1.023,0.988,0.894,1.076,1.051,0.889,0.947,0.99,1.157,0.9,1.09,0.987,1.087,0.983,0.949,0.974,0.784,1.043,0.83,0.866,1.095,0.929,1.018,1.031,1.063,1.001,0.879,0.96 +NM_002073,0.966,1.499,0.823,0.975,1.001,1.003,0.864,0.853,1.021,0.874,0.978,0.894,0.84,0.889,1.007,0.969,0.868,1.071,0.787,1.243,0.76,0.881,0.99,0.879,1.208,0.885,0.821,0.865,1.027,1.013,0.9,1.289,1.226,1.575,1.021,1.65,1.032,0.982,1.114,0.983,1.08,1.207,1.34,0.996,0.847,0.986,1.001,0.94,0.97,0.969,1.011,0.926,0.784,0.933 +NM_002074,0.549,1.074,0.963,0.688,0.583,1.395,0.511,0.467,0.922,0.596,1.443,0.633,0.535,0.597,0.999,2.039,0.58,0.83,1.001,1.13,0.462,0.875,1.131,0.756,0.686,0.773,0.907,0.596,0.596,1.351,0.811,1.506,1.718,1.38,0.292,1.037,1.521,0.936,1.295,1.39,0.722,1.355,0.872,1.162,0.666,1.33,0.904,0.706,1.078,0.512,1.185,0.969,0.83,1.217 +NM_002075,1.095,0.996,0.794,1.059,0.952,0.935,1.137,1.106,0.912,1.019,1.082,0.951,0.969,0.994,0.957,1.022,0.942,1.037,1.093,1.075,0.901,0.947,1.002,0.884,0.904,0.996,0.913,1.068,0.979,0.989,1.004,1.316,1.063,0.925,0.965,1.071,0.989,1.042,1.071,1.105,0.928,0.952,1.053,1.154,1.028,1.001,0.965,0.917,0.902,0.911,0.91,1.115,0.892,0.999 +NM_002076,0.901,1.025,0.858,0.928,0.891,0.893,0.913,0.963,0.942,0.893,1.06,0.945,0.973,0.943,1.028,1.091,1.019,0.951,1.012,1.169,0.934,0.867,1.001,0.887,0.998,0.899,0.972,0.922,0.893,1.072,0.916,1.07,1.089,1.034,0.936,0.974,1.131,0.892,1.001,1.043,0.81,1.03,0.987,1.325,0.896,0.89,0.869,0.951,0.976,1.038,1.061,1.001,1.023,1.077 +NM_002077,0.854,1.0,1.09,1.008,0.856,1.084,0.751,0.667,0.998,0.892,1.035,0.888,0.746,0.952,1.221,1.263,0.914,0.877,1.098,1.034,0.824,0.856,1.149,0.979,0.854,0.888,1.111,0.917,0.625,1.108,0.961,1.336,1.607,1.221,0.613,0.756,1.089,0.887,1.192,0.769,0.994,1.203,0.844,0.953,0.987,1.073,0.939,0.766,1.167,0.882,1.05,0.886,0.83,1.653 +NM_002078,0.696,0.859,1.258,0.729,1.046,0.995,0.615,0.503,1.851,1.105,1.266,0.877,0.497,0.787,1.281,1.511,0.811,0.547,1.005,1.596,0.662,0.512,1.538,1.032,0.76,0.625,0.966,1.264,0.361,1.512,1.218,0.992,1.673,1.376,0.568,0.899,0.772,0.643,0.935,0.649,1.332,1.239,0.946,0.604,0.797,1.768,0.842,0.542,1.284,0.888,1.385,0.643,1.087,1.977 +NM_002079,0.728,0.769,1.097,0.77,1.009,1.078,0.649,0.508,1.253,0.908,1.284,1.006,0.6,0.727,0.999,2.158,1.053,0.812,1.436,0.682,0.475,0.863,1.141,1.456,0.922,0.741,1.578,0.763,0.497,0.94,0.945,1.184,1.745,1.016,0.194,0.996,1.344,0.862,1.505,0.5,1.258,0.978,0.96,1.116,1.001,1.502,1.034,0.833,1.612,0.804,1.145,0.691,0.865,1.486 +NM_002080,1.03,0.86,1.353,0.983,0.852,0.734,0.521,0.375,1.151,1.389,0.766,1.014,0.652,0.621,0.81,1.136,1.303,1.058,1.523,0.667,0.673,0.66,0.938,1.17,0.94,1.186,1.435,0.715,0.328,0.846,0.948,0.934,1.556,1.047,0.187,0.967,1.012,0.823,1.62,0.807,1.169,1.068,0.664,1.356,1.588,0.884,0.839,0.844,0.885,1.347,0.952,1.058,1.617,2.654 +NM_002081,1.459,0.864,1.444,0.951,1.139,0.566,0.691,1.054,1.679,1.751,0.796,1.481,1.602,0.925,1.071,0.79,1.485,0.989,1.884,0.745,1.893,2.029,0.792,2.062,0.627,1.799,2.097,1.163,0.533,0.892,1.593,2.493,4.632,0.691,0.751,1.074,0.665,2.019,0.926,0.773,1.477,0.741,0.645,1.357,2.05,0.712,1.011,1.843,0.648,1.884,0.836,1.057,1.845,2.642 +NM_002083,0.192,2.047,0.411,1.657,0.2,1.788,1.539,0.133,0.141,0.379,1.684,0.325,0.352,0.159,0.746,1.428,0.238,1.162,0.389,0.925,0.363,0.212,1.174,0.311,1.467,0.32,0.206,0.128,1.251,2.105,0.254,0.828,0.983,2.918,0.0705,2.098,1.539,0.36,3.61,1.421,0.421,1.321,0.572,4.603,0.367,0.956,1.23,0.243,1.895,0.396,0.999,0.46,0.236,0.239 +NM_002084,1.686,1.369,1.337,0.817,1.644,3.906,0.649,2.702,2.112,1.124,0.376,1.518,1.159,0.928,0.882,1.22,1.799,1.393,2.395,0.319,0.871,3.084,0.242,1.236,0.896,1.495,1.42,1.334,1.183,1.271,2.06,0.387,1.116,2.953,2.616,0.129,0.73,3.113,0.264,0.254,1.813,0.456,0.116,0.287,2.125,0.316,1.838,4.097,0.187,2.578,0.474,0.808,1.417,0.377 +NM_002085,0.674,1.75,1.128,0.644,0.868,1.301,0.424,0.642,1.099,0.968,1.0,1.036,1.288,0.596,0.813,1.161,0.766,0.881,1.0,0.818,0.621,1.088,1.842,1.078,0.712,1.189,1.546,0.838,0.515,1.554,0.906,1.923,3.532,1.192,0.556,1.253,0.877,1.482,1.441,2.113,1.028,1.333,0.431,1.675,0.967,0.76,0.836,1.04,0.469,0.694,0.67,0.738,0.678,2.86 +NM_002086,0.61,0.981,1.089,0.844,0.852,1.189,0.89,0.377,0.908,0.769,1.0,0.51,0.525,0.543,0.927,1.283,0.825,0.996,0.859,1.17,0.405,0.569,1.381,0.749,0.707,0.777,0.9,0.814,0.496,1.252,0.767,1.547,0.8,1.23,0.386,0.974,1.197,0.611,1.528,1.272,0.881,1.248,1.015,1.923,0.97,1.118,0.844,0.637,1.077,0.67,1.157,0.918,0.865,1.494 +NM_002087,1.136,0.772,2.053,0.533,1.577,0.69,0.348,0.489,1.641,1.759,0.65,0.499,0.474,0.942,0.957,1.165,1.715,1.22,2.064,0.91,0.537,1.341,0.985,1.134,0.25,1.473,1.839,1.127,0.287,1.134,1.495,1.345,1.182,0.871,0.314,0.452,0.633,1.437,1.049,0.65,1.308,0.851,0.323,1.107,1.83,0.603,0.888,1.289,0.472,1.398,1.001,1.031,1.465,1.174 +NM_002088,0.976,1.043,0.875,0.937,1.012,0.962,1.053,1.074,0.908,0.991,1.051,1.055,1.121,0.983,0.943,0.989,1.056,1.018,0.924,1.001,0.976,1.041,1.033,0.998,0.987,0.936,0.984,0.818,1.136,0.968,1.039,1.078,1.141,0.972,1.079,0.981,0.941,1.022,0.926,0.95,0.959,1.041,0.882,1.09,1.042,1.056,1.064,0.968,0.99,1.176,1.006,1.032,0.92,1.077 +NM_002091,0.891,1.035,1.216,0.954,1.02,1.041,0.994,0.926,1.285,1.111,1.043,0.967,0.849,0.973,1.199,1.13,0.952,0.948,1.067,1.179,1.036,0.976,0.902,1.044,0.877,0.895,0.822,1.09,0.918,0.956,1.144,3.085,0.85,1.323,0.914,0.923,1.062,0.951,1.037,0.94,1.107,0.968,0.99,1.095,0.943,1.057,0.996,1.115,1.052,0.978,0.989,1.032,1.205,1.149 +NM_002092,0.611,1.298,1.031,0.822,0.695,1.623,0.687,0.419,0.957,0.813,1.547,0.715,0.573,0.706,0.918,1.716,0.63,0.94,1.005,1.192,0.502,0.727,1.611,0.89,0.784,0.651,1.185,0.743,0.642,1.903,0.796,1.258,1.512,1.634,0.243,1.02,1.702,0.757,1.195,1.023,1.002,1.376,0.996,1.135,0.867,1.425,0.901,0.614,1.55,0.591,1.276,0.852,0.763,0.807 +NM_002093,0.618,0.885,1.27,0.677,0.953,1.591,0.74,0.757,1.003,0.915,1.117,0.796,0.786,0.672,1.154,2.259,0.825,0.952,1.285,0.896,0.697,0.913,1.448,1.136,0.519,0.727,0.768,0.816,0.524,1.246,1.205,0.984,1.795,1.479,0.855,0.997,1.344,0.927,1.575,1.204,0.945,1.481,0.791,1.181,1.045,1.211,1.132,0.818,1.281,0.847,1.456,0.922,0.932,1.12 +NM_002095,0.516,0.793,0.97,0.79,0.806,1.501,0.879,0.366,1.021,0.906,1.573,0.891,0.501,0.64,1.075,1.629,0.735,0.984,0.982,1.213,0.476,0.546,1.155,1.233,0.641,0.685,1.202,0.798,0.515,1.089,0.819,0.985,1.295,1.297,0.3,0.721,1.249,0.717,1.586,0.567,0.94,1.07,0.987,0.939,0.826,1.913,1.065,0.502,1.799,0.601,1.206,0.856,1.011,1.803 +NM_002097,0.451,0.892,1.118,0.624,0.743,1.31,0.476,0.938,1.053,0.686,1.366,1.507,0.859,0.565,0.724,2.258,0.579,0.755,1.725,0.675,0.57,0.885,1.283,1.191,0.573,0.726,0.838,0.832,0.374,1.263,0.767,1.149,1.712,1.503,0.188,1.661,1.023,1.16,1.062,2.151,1.14,1.004,0.434,0.996,0.695,0.93,1.317,0.682,1.19,0.604,0.98,0.918,0.931,2.534 +NM_002098,1.015,1.079,1.112,1.126,0.985,1.136,1.097,0.96,1.05,0.838,0.936,1.095,0.85,1.653,0.917,0.926,1.002,0.999,1.149,1.256,0.939,1.001,0.965,0.924,0.82,1.117,0.934,0.914,0.827,0.971,1.065,1.048,1.125,1.001,1.244,1.024,1.125,0.99,1.102,0.856,0.979,0.973,1.421,0.958,0.908,1.198,0.896,0.964,1.207,0.992,0.85,1.068,1.205,0.976 +NM_002102,1.171,1.003,1.005,1.071,0.982,0.928,1.002,1.089,0.935,0.904,1.017,1.089,1.031,0.964,0.915,1.159,1.046,0.97,1.035,0.929,0.988,0.969,0.963,0.98,0.961,1.074,1.038,1.012,1.818,0.971,1.085,1.073,0.856,1.061,1.03,1.041,0.992,1.031,0.907,0.927,0.973,0.944,1.208,1.059,1.072,0.944,1.072,1.034,0.904,0.916,1.065,1.149,0.994,0.99 +NM_002103,1.286,0.738,1.063,0.92,1.001,1.046,0.6,0.617,0.987,0.954,0.82,0.957,0.867,0.814,0.912,1.401,1.243,1.092,2.001,0.828,1.29,1.621,1.206,1.106,0.87,1.478,1.518,0.722,0.85,0.885,0.882,0.8,1.418,0.924,0.568,0.594,0.9,1.423,1.557,1.062,1.126,0.924,0.748,1.137,1.144,0.711,0.951,1.499,0.871,2.004,0.789,0.779,1.268,0.807 +NM_002104,0.759,1.309,1.347,0.911,0.944,1.007,1.643,0.954,0.856,1.012,1.068,1.029,1.023,0.936,0.881,0.941,0.809,0.776,1.0,1.045,0.998,0.741,1.116,1.111,1.022,0.944,0.813,1.308,0.98,0.828,0.868,0.963,1.235,1.072,0.926,0.956,1.065,1.017,0.811,0.779,0.848,1.597,1.064,0.806,1.063,1.032,0.946,0.874,0.742,0.983,1.042,0.809,0.972,1.717 +NM_002105,0.668,0.91,1.149,0.8,0.838,1.034,0.558,0.401,1.196,1.364,0.64,1.058,0.812,0.66,0.744,1.13,0.819,0.935,1.406,0.556,0.487,0.673,1.532,1.559,0.45,0.692,2.288,0.655,0.334,1.607,0.764,1.588,1.269,0.894,0.0828,2.458,1.03,0.679,1.457,1.129,1.272,0.614,0.539,1.436,1.221,0.672,1.344,0.661,1.338,0.778,1.293,0.934,0.97,1.889 +NM_002106,0.602,1.01,1.103,1.033,0.833,0.892,0.625,0.218,1.097,1.569,0.874,0.508,0.572,0.539,0.75,1.467,0.779,1.377,1.377,0.743,0.534,0.319,1.572,1.326,0.555,0.713,1.777,0.816,0.192,0.82,0.797,1.406,2.061,1.014,0.19,1.189,1.075,0.707,1.829,0.903,1.296,0.786,0.8,2.41,1.124,0.906,1.504,0.563,1.205,0.99,1.401,1.083,1.183,1.182 +NM_002107,0.799,0.976,1.492,0.77,1.074,0.859,0.255,0.49,1.294,1.048,1.035,0.427,0.493,0.698,0.96,1.218,1.265,1.372,1.308,1.042,0.832,0.714,1.016,0.779,0.652,1.067,1.119,1.128,0.305,0.956,1.188,1.352,1.321,1.077,1.028,0.945,0.81,0.878,0.946,1.542,1.144,0.722,0.745,1.679,1.186,1.046,1.036,0.851,0.842,0.902,0.788,0.788,1.082,1.018 +NM_002108,1.135,0.857,0.999,0.889,1.201,0.991,0.858,1.477,1.21,0.959,0.931,1.078,0.84,0.897,1.707,1.02,1.097,0.894,2.154,1.027,1.125,1.013,0.83,0.942,0.884,1.156,1.175,1.163,1.103,0.984,1.932,0.826,0.99,0.85,1.288,1.018,0.804,1.158,0.839,1.112,1.465,0.987,0.937,0.888,0.987,0.956,0.917,1.618,1.081,1.502,0.964,0.984,1.502,0.905 +NM_002109,0.862,0.789,1.179,0.722,1.126,0.871,0.706,0.598,1.293,1.549,0.735,1.004,0.643,0.689,0.843,1.202,1.111,1.068,1.288,1.007,0.764,0.802,1.18,1.315,0.644,1.038,1.042,0.921,0.435,1.02,1.014,0.954,2.033,1.123,0.235,0.828,0.959,1.044,1.448,0.808,1.414,1.17,0.711,0.723,1.512,0.8,1.111,0.943,0.975,0.923,1.083,1.099,1.488,1.157 +NM_002111,0.835,1.077,1.0,0.932,0.867,0.976,0.848,0.849,0.895,1.021,0.95,0.888,0.869,0.986,0.767,1.034,0.903,1.088,0.932,1.127,1.035,1.005,0.988,1.004,0.987,1.123,0.957,1.014,0.82,1.161,0.951,1.079,1.098,1.231,0.724,0.969,0.921,1.056,1.11,1.129,0.891,1.146,0.878,1.127,0.935,1.0,1.0,0.908,0.887,0.996,1.06,0.899,0.871,1.082 +NM_002112,1.133,1.037,0.906,0.967,1.075,1.213,0.906,0.867,0.881,0.89,0.923,1.006,1.05,0.835,1.081,0.837,1.092,0.931,1.229,1.078,1.124,1.049,0.993,0.956,1.248,1.021,0.91,1.142,0.92,0.925,1.034,0.828,0.925,1.185,1.042,1.018,0.904,0.867,0.982,0.956,1.007,1.144,0.85,1.053,0.853,1.194,0.958,0.832,1.064,0.9,1.2,1.064,0.846,1.06 +NM_002114,0.997,0.854,1.111,1.017,1.08,1.017,0.803,0.797,1.127,1.163,0.934,0.904,0.981,1.03,0.981,0.99,0.804,1.008,1.183,0.967,0.947,0.964,1.113,1.087,1.046,1.048,1.102,1.223,0.797,0.916,1.304,0.985,1.543,0.929,0.873,0.887,0.903,0.9,1.052,1.171,1.168,1.025,0.901,1.093,1.261,1.013,0.877,1.005,0.975,1.002,0.943,0.998,0.996,1.343 +NM_002115,0.982,0.801,1.006,1.039,0.979,0.845,1.006,1.103,0.991,0.988,0.876,0.974,0.918,0.92,1.07,1.036,0.944,1.04,1.017,1.14,0.913,1.031,0.986,0.939,0.982,0.989,0.879,0.867,1.171,0.989,0.975,1.192,0.907,0.959,1.027,1.057,0.996,0.955,1.232,1.293,0.918,0.94,1.268,1.086,1.002,0.958,0.995,0.946,0.948,1.008,1.022,1.037,0.975,1.057 +NM_002117,0.329,1.196,0.753,0.405,0.298,1.65,1.23,0.148,0.464,0.323,1.784,0.209,0.215,0.183,1.13,1.97,0.402,0.784,0.469,1.361,0.19,0.256,1.157,0.467,1.019,0.225,0.461,0.303,0.283,1.706,0.392,1.235,1.126,2.051,0.0796,0.673,1.512,0.37,2.299,1.264,0.759,2.008,1.299,2.057,0.667,0.947,0.753,0.289,1.072,0.514,1.414,0.798,1.419,2.975 +NM_002118,0.586,2.717,1.013,0.58,0.721,1.193,1.799,0.384,0.723,0.649,0.692,0.54,0.696,0.38,0.915,0.84,0.662,0.723,0.503,0.882,0.375,0.594,1.18,0.826,0.742,0.446,1.468,0.582,0.218,1.72,0.428,3.943,0.732,1.417,0.206,0.481,2.004,0.547,1.771,1.318,0.94,2.274,0.694,1.619,0.779,0.626,0.622,0.406,1.346,0.522,0.964,2.915,1.904,3.51 +NM_002119,1.193,0.872,0.916,0.949,0.963,0.912,0.969,1.013,1.061,0.935,0.967,0.992,1.038,0.899,0.845,1.003,1.0,0.837,0.876,1.171,0.997,0.988,1.246,1.056,1.038,0.951,0.969,1.082,0.872,0.899,1.19,1.138,0.992,1.016,1.057,0.898,0.925,0.956,0.94,1.05,0.924,1.029,1.115,0.986,0.957,0.985,1.052,1.03,1.036,1.005,1.109,0.946,1.043,1.065 +NM_002120,0.887,1.612,1.001,1.037,1.055,1.089,1.331,0.796,1.031,0.977,0.901,1.216,0.971,0.935,0.925,0.96,0.93,0.973,0.938,0.924,0.909,0.953,0.9,0.985,0.918,0.859,1.074,0.893,1.251,0.944,0.94,1.547,1.029,1.147,0.935,0.904,1.235,0.927,1.125,1.055,0.932,2.342,1.008,0.957,0.974,0.957,0.905,0.964,0.904,0.971,1.198,0.921,1.093,1.384 +NM_002121,0.818,2.972,1.494,0.554,0.902,1.335,1.673,0.594,1.146,0.93,0.483,0.875,0.861,0.514,1.024,0.642,0.985,0.458,0.785,0.576,0.649,0.883,1.195,1.206,0.672,0.679,1.927,0.914,0.19,1.835,0.872,3.184,0.873,1.821,0.0722,0.257,1.013,1.0,1.219,0.546,1.141,2.304,0.523,1.08,0.97,0.676,0.524,0.507,0.642,0.491,0.803,1.635,1.917,2.527 +NM_002122,0.2,2.809,2.828,0.81,0.253,1.823,2.865,0.232,1.79,1.608,1.003,1.1,1.117,0.917,1.809,1.097,0.268,1.507,1.401,0.926,0.856,0.259,0.229,0.226,0.247,0.885,5.926,1.343,0.373,0.252,0.232,5.307,0.23,2.567,0.275,0.215,0.19,0.271,2.261,1.028,0.257,2.81,0.198,0.876,1.503,0.236,1.34,0.86,0.674,1.281,0.228,0.238,0.245,0.233 +NM_002123,0.707,2.458,1.152,0.983,0.592,1.372,1.092,0.416,1.087,0.796,0.834,0.79,1.275,0.663,1.087,1.083,0.78,1.08,0.562,0.503,0.57,1.058,0.896,0.862,0.884,1.133,1.303,0.65,0.657,0.987,0.609,3.649,0.687,1.052,0.347,0.409,0.596,0.763,3.211,0.98,0.735,2.497,0.413,1.412,1.297,0.436,0.465,0.854,0.672,1.101,0.614,1.103,1.176,1.853 +NM_002125,0.129,2.663,2.546,0.121,0.14,1.779,2.384,0.273,1.666,0.138,0.628,0.53,1.007,0.582,1.579,0.158,1.832,1.033,0.227,0.979,0.224,0.759,0.946,1.149,0.472,0.981,0.211,1.037,0.288,3.902,0.993,6.247,0.517,1.387,0.175,0.29,2.053,1.573,0.15,2.282,1.947,5.59,0.138,0.156,2.713,0.409,0.145,0.134,1.454,0.875,0.123,4.708,0.132,5.245 +NM_002126,1.049,0.773,1.842,0.87,1.213,0.852,0.779,1.111,1.452,1.268,0.921,1.237,1.338,1.263,0.89,0.876,1.154,1.057,1.549,0.88,1.004,1.093,1.12,1.208,0.921,0.998,2.804,1.419,0.841,0.887,1.575,0.931,0.952,1.047,0.861,0.814,0.882,1.63,0.915,0.894,1.318,1.319,1.157,0.93,1.402,0.822,0.978,1.147,0.806,1.453,0.946,0.857,1.05,1.264 +NM_002127,0.999,1.105,1.045,0.988,0.9,2.056,1.262,1.002,0.84,0.763,1.276,0.829,0.95,0.876,1.055,1.517,0.896,0.956,0.857,1.194,0.841,0.93,0.987,0.926,1.002,0.797,0.987,0.848,1.133,1.001,0.883,2.474,0.966,1.157,0.722,1.276,1.026,0.855,1.916,1.325,0.876,1.084,1.29,0.985,0.965,1.042,0.954,0.851,1.19,0.831,1.507,0.809,0.856,1.596 +NM_002128,0.519,0.837,1.731,0.538,0.974,1.784,0.734,0.797,1.259,0.943,0.779,0.915,0.911,0.475,1.018,2.793,0.787,1.112,0.466,1.2,0.249,1.515,1.44,1.552,0.441,0.306,2.18,1.114,0.627,1.475,1.166,1.364,1.833,1.069,0.226,0.339,1.172,1.326,1.853,1.638,1.017,1.11,0.638,0.393,0.969,1.031,1.073,0.742,1.192,0.673,1.394,0.698,0.333,1.637 +NM_002130,0.95,0.725,1.196,1.148,1.25,0.812,0.769,0.863,1.221,1.568,0.867,0.991,0.783,1.121,1.145,1.225,1.064,1.537,1.589,1.011,0.819,0.906,1.082,1.308,0.794,1.193,1.212,1.045,0.907,0.924,1.117,1.023,1.048,0.832,0.809,0.784,0.897,1.206,1.12,0.752,1.37,0.797,0.879,0.838,1.161,1.013,1.129,1.142,0.746,1.397,1.167,0.833,1.332,0.794 +NM_002133,2.692,0.45,0.679,0.562,2.666,0.939,0.442,2.461,1.846,1.022,0.903,1.001,1.763,0.744,1.398,1.65,1.836,1.131,2.497,0.457,0.851,1.253,0.792,0.799,0.272,1.406,1.389,0.913,0.337,1.179,1.965,1.106,0.468,0.491,7.479,0.307,1.981,5.402,0.659,1.299,2.703,0.905,0.269,0.37,1.548,0.514,1.891,4.216,1.057,1.113,0.879,1.794,1.167,0.48 +NM_002134,1.108,0.874,0.907,1.009,1.019,1.044,0.908,1.041,1.243,0.933,0.904,0.918,1.013,0.914,0.897,1.042,0.906,0.998,1.099,0.951,1.043,1.036,0.953,1.021,1.078,1.102,0.96,0.997,0.946,0.882,1.108,1.045,1.002,1.025,1.172,0.859,1.023,1.032,1.07,0.985,1.021,0.936,0.908,0.896,1.007,0.868,0.928,1.13,1.087,1.01,1.069,0.861,1.088,0.914 +NM_002135,1.095,0.96,1.025,1.041,1.035,1.025,1.007,1.009,1.111,1.071,1.032,0.893,1.031,1.108,1.266,0.882,0.948,0.946,1.078,1.069,1.118,0.89,1.16,0.95,1.121,0.87,0.851,0.904,1.002,0.899,0.876,0.88,0.99,0.852,1.122,1.187,0.988,0.974,0.883,1.021,0.873,1.099,1.584,0.996,0.943,1.088,0.709,0.962,0.839,0.826,1.066,1.019,0.965,0.938 +NM_002136,0.56,0.77,1.1,0.529,0.803,1.058,0.418,0.408,1.326,1.132,0.817,1.012,0.603,0.655,0.928,1.387,0.65,0.737,1.273,1.012,0.683,0.543,1.563,1.185,0.459,0.918,1.341,0.987,0.153,0.988,1.023,1.319,1.85,1.189,0.123,1.317,0.902,0.868,1.088,0.959,1.081,1.026,0.754,1.122,0.938,0.87,0.816,0.49,1.061,0.774,1.152,0.738,1.216,1.445 +NM_002137,0.43,0.941,1.146,0.651,0.916,0.905,0.517,0.235,1.191,1.004,1.145,0.44,0.376,0.567,1.056,2.21,0.649,0.905,1.215,0.786,0.612,0.363,1.706,0.774,0.433,0.549,1.557,0.744,0.23,1.109,0.941,1.162,2.779,1.451,0.15,1.036,1.063,0.666,1.608,0.853,1.058,1.198,0.751,1.537,0.852,1.195,1.215,0.424,1.491,0.716,1.208,0.874,0.996,1.674 +NM_002138,0.481,1.057,1.173,0.578,0.753,1.34,0.688,0.44,1.392,1.152,0.679,0.982,0.638,0.415,0.926,1.73,0.794,0.875,0.892,0.901,0.403,0.839,1.54,1.276,0.474,0.507,1.476,0.73,0.479,1.068,1.056,1.654,2.379,1.224,0.116,0.693,0.931,0.852,1.763,1.33,1.059,1.068,0.616,1.26,1.168,0.738,1.037,0.787,1.471,0.806,1.208,0.74,0.768,1.498 +NM_002139,0.687,1.18,1.112,0.787,0.704,1.245,0.581,0.483,0.918,0.784,1.372,0.981,0.972,0.663,0.911,1.507,0.639,0.828,1.45,0.759,0.567,0.898,1.577,1.139,0.601,0.817,1.405,0.65,0.469,1.141,0.731,1.148,2.887,1.636,0.129,1.061,1.394,0.958,1.572,0.78,1.005,1.352,0.919,1.705,0.964,0.899,0.953,0.706,0.926,0.771,1.125,0.86,0.958,1.51 +NM_002141,1.094,0.892,1.242,0.994,1.17,0.788,0.736,1.062,1.133,0.871,0.916,1.127,1.087,1.157,0.933,1.034,1.185,0.938,1.228,1.105,0.993,1.224,0.81,1.184,0.884,1.325,1.227,1.257,0.757,0.959,1.044,1.634,1.155,1.062,0.794,0.908,0.812,1.13,0.986,0.976,1.284,1.194,0.784,0.822,1.078,1.059,1.049,1.094,0.795,1.07,0.966,0.939,1.142,0.907 +NM_002142,1.004,0.833,1.325,0.829,1.275,0.901,1.057,0.868,1.057,0.939,0.864,1.242,0.984,0.904,1.01,1.087,0.882,1.173,1.293,1.016,1.026,0.81,1.339,1.103,0.941,0.854,0.873,0.939,1.095,0.926,1.043,0.904,1.212,0.905,0.871,1.035,0.832,1.573,0.787,2.585,0.946,0.971,0.98,0.913,0.781,1.093,0.979,0.927,2.438,0.855,1.081,1.117,0.858,3.601 +NM_002143,0.924,1.006,0.955,0.901,0.92,0.943,0.838,0.932,1.02,0.979,1.004,0.869,1.001,1.284,1.188,1.259,1.062,1.096,0.956,1.035,0.984,1.075,1.148,1.039,1.0,1.051,0.867,1.005,0.748,1.006,0.908,0.954,1.036,0.973,1.045,1.049,0.907,1.111,0.983,1.098,0.87,0.901,0.943,1.171,1.018,0.967,1.01,0.821,1.016,1.03,0.942,0.903,0.908,1.012 +NM_002144,1.034,0.951,0.928,0.996,0.775,0.895,0.986,0.854,0.809,1.344,1.071,1.144,1.164,1.019,0.764,1.19,1.051,1.13,1.101,1.002,1.02,0.957,1.048,0.828,1.136,1.126,1.18,1.075,0.884,1.106,1.019,0.97,0.968,1.082,0.968,1.012,1.104,1.057,1.085,0.98,1.039,1.027,1.512,0.897,0.828,1.084,0.982,0.946,1.087,1.0,0.941,1.019,1.222,0.939 +NM_002145,0.816,2.043,0.565,0.711,0.881,0.922,0.789,0.547,0.658,0.744,1.303,1.067,1.117,1.098,0.852,1.548,0.748,1.285,1.942,2.165,0.982,0.967,1.375,1.074,0.551,1.135,0.518,0.598,0.571,1.167,1.271,2.236,1.232,1.451,0.598,0.677,0.969,0.818,3.224,0.486,1.309,2.311,0.685,2.751,0.859,1.718,0.542,0.524,0.398,0.978,1.642,0.834,0.837,1.249 +NM_002146,1.083,1.013,0.763,0.823,0.895,0.998,0.893,0.726,0.892,1.035,1.087,0.898,0.987,0.906,0.938,0.977,0.953,0.811,1.0,1.213,0.908,0.807,1.016,0.967,0.937,1.067,0.989,0.845,0.807,1.099,0.921,1.166,1.042,1.086,0.934,0.942,0.992,1.036,1.08,0.945,1.07,1.015,0.718,1.004,1.092,1.095,1.0,0.903,0.96,0.962,0.95,1.051,1.078,0.862 +NM_002147,0.898,1.57,0.849,0.82,0.814,1.442,1.037,0.755,0.989,0.791,1.35,0.78,0.89,0.686,1.318,1.394,1.006,0.97,0.944,1.985,0.775,0.842,1.497,0.848,0.923,0.937,0.776,0.986,0.774,1.201,1.055,2.284,1.61,1.5,0.741,1.258,0.934,0.899,2.226,1.196,0.728,1.572,0.841,2.036,0.909,1.516,0.935,0.81,0.849,0.883,1.468,0.875,0.798,1.502 +NM_002148,0.998,0.981,1.039,0.914,0.889,0.965,0.912,1.012,0.899,1.012,0.985,1.064,0.942,0.977,0.833,1.032,0.897,0.906,1.194,0.915,1.056,1.002,0.914,0.977,1.009,0.865,0.95,0.948,1.108,0.911,1.069,1.175,1.183,0.958,1.086,0.888,0.999,1.014,1.035,2.759,1.028,1.073,0.791,0.9,1.051,0.809,0.958,0.962,0.967,0.995,1.093,1.068,1.09,0.832 +NM_002149,1.248,2.59,1.3599999999999999,1.6789999999999998,1.3,2.8440000000000003,1.674,1.138,1.303,1.57,2.5060000000000002,1.345,1.266,1.246,1.87,3.213,1.4609999999999999,1.794,1.284,2.541,1.264,1.245,2.589,1.377,2.066,1.026,1.463,1.262,1.57,2.789,1.207,1.996,2.153,3.873,1.1920000000000002,2.52,2.44,1.257,1.859,2.694,1.385,2.817,2.787,1.968,1.402,3.407,1.87,1.226,2.3289999999999997,1.203,2.134,1.528,1.501,1.784 +NM_002150,0.946,1.064,1.151,0.953,0.785,0.891,0.924,0.944,0.954,0.99,0.931,1.122,1.086,1.006,0.936,1.039,0.946,0.972,0.844,1.007,1.0,1.0,0.947,0.996,0.968,1.089,1.002,0.925,0.656,1.012,0.933,0.933,0.908,1.051,1.008,1.005,0.969,0.901,1.146,1.006,1.082,0.897,1.083,1.075,0.883,0.982,1.084,1.005,0.925,1.11,0.871,0.999,0.825,1.043 +NM_002151,0.957,1.972,0.933,1.052,0.872,0.98,1.058,1.155,0.866,0.965,1.002,0.998,0.856,0.962,1.02,1.037,0.943,1.041,0.948,1.107,1.106,0.85,1.018,0.922,2.397,1.014,0.925,0.92,1.029,1.18,0.871,1.993,0.935,1.597,0.966,0.869,1.035,1.017,1.023,1.465,0.885,0.881,0.951,1.109,1.116,0.954,0.861,0.938,0.927,0.971,1.04,0.95,1.086,0.842 +NM_002152,1.199,1.088,0.979,1.089,0.985,1.013,1.059,1.034,1.031,1.002,1.013,1.051,1.105,0.914,0.858,1.052,1.049,1.101,1.282,1.07,0.926,1.107,0.988,0.895,1.017,1.0,1.16,0.918,1.171,0.994,0.869,1.0,1.063,0.927,0.902,1.065,0.953,0.953,0.902,0.893,0.972,1.017,0.901,0.896,0.848,0.929,1.225,0.984,1.013,1.014,1.082,1.02,0.984,0.987 +NM_002153,0.18,1.312,0.225,1.065,0.149,3.086,1.092,0.207,0.149,0.142,6.607,0.174,0.182,0.128,3.461,10.65,0.214,1.167,0.227,5.271,0.187,0.163,6.545,0.185,0.721,0.176,0.3,0.176,1.029,2.061,0.166,0.615,0.394,2.43,0.157,0.634,6.824,0.14,2.989,0.177,0.227,7.264,2.389,0.62,0.209,3.68,2.347,0.133,3.213,0.195,3.738,0.907,0.203,0.604 +NM_002154,1.16,0.694,1.843,0.652,2.152,1.307,1.011,1.232,1.952,1.562,0.647,1.398,1.203,0.791,1.183,1.645,1.754,1.359,0.747,0.863,0.392,2.386,0.996,2.727,0.513,0.569,2.344,1.207,0.617,1.053,2.547,0.92,2.749,0.771,0.884,0.446,0.965,2.854,1.935,0.913,1.723,0.813,0.555,0.556,1.836,1.006,1.854,1.605,1.36,1.076,1.307,0.922,0.514,1.499 +NM_002155,1.876,0.885,2.099,1.246,0.912,0.921,0.78,0.824,1.121,1.471,0.805,0.912,0.923,0.952,0.923,0.882,2.662,0.848,1.188,0.775,1.534,0.853,0.8,1.019,0.839,1.207,1.655,1.002,0.998,0.99,1.244,1.524,1.583,0.877,1.354,0.931,0.696,1.005,1.289,4.21,2.447,1.041,0.824,0.835,1.991,1.631,0.998,1.18,0.821,2.51,0.82,1.252,1.535,1.392 +NM_002156,0.435,1.646,0.829,0.585,0.656,1.033,2.86,0.312,1.005,0.846,2.99,0.75,0.405,0.392,1.014,1.956,0.639,0.596,1.067,0.727,1.216,0.652,1.863,1.257,0.783,0.397,1.448,0.607,1.4,1.288,0.888,1.2,5.705,1.108,0.0905,0.831,1.082,0.862,1.745,1.416,1.466,1.064,0.646,1.381,0.883,1.035,0.935,0.388,2.587,0.564,1.166,1.055,0.7,4.505 +NM_002158,0.903,1.027,0.934,0.999,0.951,1.043,1.307,0.762,0.964,1.022,0.98,1.128,0.99,1.2,0.624,0.791,1.009,1.085,0.858,0.861,0.769,1.105,1.171,1.017,1.171,0.79,0.887,1.057,0.956,0.991,0.898,0.959,1.097,0.858,0.995,1.156,0.912,0.841,1.074,1.127,1.019,1.026,1.119,0.954,0.766,1.196,1.254,0.816,1.155,0.906,0.97,1.106,1.112,1.073 +NM_002159,1.0,0.866,1.11,1.067,0.971,0.971,1.071,0.836,1.14,1.173,1.086,1.016,1.067,0.922,0.891,1.072,1.105,0.99,1.255,0.988,1.032,1.064,0.997,1.038,1.039,1.153,0.873,0.905,0.924,0.982,0.901,1.019,0.887,0.893,1.093,0.939,0.911,0.936,0.969,0.974,1.214,0.933,1.144,1.164,0.858,1.002,1.069,1.06,0.96,1.105,1.028,1.248,1.096,0.973 +NM_002160,1.068,0.939,1.097,0.855,0.923,0.581,0.971,0.796,1.259,1.53,0.753,1.25,1.03,0.93,0.914,0.991,0.767,1.145,0.912,0.987,1.694,0.747,1.249,1.115,0.775,1.178,1.315,0.988,0.825,0.817,1.005,2.658,2.16,1.012,0.789,1.027,0.808,2.042,2.057,3.933,1.36,0.995,1.023,0.769,1.326,0.809,1.087,0.794,0.694,1.357,1.068,2.421,3.993,0.933 +NM_002161,0.648,1.35,1.312,0.532,0.921,1.073,0.598,0.423,1.478,1.224,0.795,0.985,0.474,0.535,0.849,1.298,0.858,0.944,1.136,0.811,0.476,0.954,1.549,1.502,0.599,0.723,1.55,1.039,0.42,1.005,0.913,1.951,2.882,1.084,0.195,0.805,0.947,1.103,1.894,0.774,1.35,1.183,0.484,1.408,1.191,1.081,1.172,0.717,1.301,0.821,1.217,0.846,0.84,2.032 +NM_002162,0.601,1.219,0.758,1.032,0.708,1.157,0.94,0.492,0.771,0.693,1.296,0.798,0.85,0.616,0.635,3.162,0.7,0.932,1.197,0.951,0.579,0.932,1.716,0.819,0.92,0.973,0.73,0.681,0.625,1.396,0.591,1.019,0.648,1.34,0.358,0.847,1.191,0.786,2.505,2.263,0.859,1.939,0.768,1.597,0.722,1.287,0.827,1.001,0.831,0.735,1.072,1.175,0.655,1.428 +NM_002163,0.966,1.196,0.834,0.974,0.944,0.977,0.992,1.098,0.829,0.845,1.317,0.773,0.953,0.917,1.269,1.205,1.011,0.868,0.819,1.066,0.856,0.923,1.336,1.032,0.948,0.937,0.939,0.88,1.096,0.999,0.737,1.252,1.169,1.07,1.11,1.031,0.943,0.869,1.141,1.018,0.896,1.083,1.746,1.015,0.914,1.121,0.975,1.008,1.24,0.96,1.062,0.931,0.994,1.409 +NM_002164,1.158,1.055,1.156,0.927,0.788,1.15,1.11,0.768,0.895,0.872,0.772,0.889,0.877,0.773,1.281,0.742,0.989,0.89,0.896,0.865,0.781,0.834,0.879,0.937,0.816,0.967,1.037,1.007,0.733,1.029,0.931,1.202,1.497,1.09,0.855,0.875,1.26,0.858,1.137,1.449,0.903,1.027,0.749,1.001,0.959,0.904,0.914,0.905,1.369,1.016,1.213,3.223,1.787,14.87 +NM_002165,0.491,1.108,1.234,1.695,0.481,1.718,0.933,0.482,0.585,0.974,1.562,0.55,0.517,0.311,0.809,1.281,1.356,1.581,1.425,1.036,0.484,0.484,1.732,0.699,0.657,0.7,0.556,0.466,0.782,1.281,0.547,1.02,0.689,1.751,0.243,0.472,0.971,0.543,1.905,0.508,0.755,1.375,0.684,3.718,0.923,0.746,1.1,0.676,1.623,0.996,0.715,0.987,1.381,2.029 +NM_002166,0.338,1.052,0.85,0.737,0.607,3.189,1.505,0.494,0.552,0.454,2.235,0.402,0.464,0.268,1.208,3.498,0.626,1.586,0.28,3.883,0.263,0.431,4.076,0.597,0.561,0.294,0.836,0.56,0.682,1.169,0.522,2.232,3.23,1.986,0.325,0.448,1.201,0.616,1.888,1.369,0.636,2.712,0.97,0.883,0.552,1.249,1.091,0.33,1.731,0.405,2.491,0.96,0.324,2.398 +NM_002167,0.345,2.247,0.476,2.578,0.35,2.198,1.123,0.257,0.389,0.488,1.761,0.36,0.358,0.285,0.836,1.195,0.399,1.977,0.435,1.644,0.347,0.43,1.642,0.446,1.551,0.417,0.828,0.37,1.724,1.809,0.316,3.498,1.005,3.196,0.207,0.389,1.09,0.515,2.54,0.577,0.385,2.145,0.61,3.269,0.373,0.727,0.773,0.392,0.823,0.424,0.897,0.955,0.537,1.837 +NM_002168,0.883,1.075,1.028,0.608,0.793,0.845,0.542,0.696,1.146,0.75,0.79,1.071,0.884,0.784,0.848,1.584,0.677,0.709,1.593,0.982,0.466,0.75,2.834,0.861,1.186,1.044,1.309,1.537,0.262,0.839,0.937,0.602,0.927,0.713,0.518,1.249,1.437,1.036,0.84,0.995,0.992,0.871,0.911,0.675,1.12,1.602,1.411,0.754,2.827,1.48,1.232,0.65,0.93,1.612 +NM_002169,1.183,1.098,1.014,1.023,1.033,0.942,1.131,0.838,0.927,0.96,1.0,1.0,0.812,1.355,0.948,1.079,1.018,1.032,0.984,0.895,0.991,0.998,0.849,0.993,1.017,0.788,1.083,0.994,0.886,0.982,1.118,1.036,1.062,1.099,0.86,1.132,0.942,0.9,1.095,0.927,0.984,1.082,0.963,0.909,1.051,1.029,1.027,1.079,0.849,1.069,1.029,1.0,0.975,0.947 +NM_002171,0.943,1.135,1.009,1.115,1.05,0.994,0.963,0.869,0.996,0.997,0.914,0.961,1.024,1.177,0.982,0.983,0.948,0.837,1.137,0.987,1.036,0.925,0.977,1.066,1.045,0.947,0.956,0.952,0.918,0.98,1.032,1.054,1.006,0.985,1.134,0.93,0.974,1.111,1.003,1.0,1.029,0.903,0.915,1.031,0.957,1.159,0.957,1.01,1.077,0.95,1.044,1.06,1.193,1.052 +NM_002172,1.418,0.987,0.974,0.817,0.947,1.259,0.803,1.183,1.189,1.053,1.017,1.201,1.023,1.044,0.644,0.839,1.106,0.967,1.195,1.155,0.904,1.017,1.031,1.072,1.251,1.167,0.944,1.002,1.204,0.867,1.18,0.996,0.974,1.152,0.945,1.083,1.045,0.906,0.864,0.784,0.87,1.015,1.034,0.888,1.066,1.168,1.043,1.165,1.14,0.944,0.92,0.933,1.065,1.016 +NM_002173,1.073,0.99,1.036,1.11,0.914,0.963,1.202,0.83,1.133,0.928,1.035,0.922,1.093,0.878,1.35,1.06,1.156,1.083,0.994,1.063,1.209,0.861,1.134,1.051,1.129,1.133,1.092,1.016,1.394,1.081,0.876,1.1,1.109,1.139,0.943,1.014,0.903,0.857,0.965,0.854,0.844,0.892,1.088,1.092,1.089,0.98,1.038,0.867,1.007,0.812,0.948,0.996,1.057,1.033 +NM_002175,1.062,1.019,1.009,0.9,1.017,0.912,0.923,0.95,0.941,0.975,1.012,1.019,0.91,0.914,0.989,0.972,1.039,1.008,1.023,0.935,0.9,1.025,0.881,0.98,1.184,1.147,1.109,1.035,1.068,1.031,0.979,0.972,0.798,1.102,1.018,0.894,0.868,1.127,0.89,0.993,0.924,0.887,1.265,0.855,0.999,0.814,1.119,1.002,1.04,0.931,0.975,1.008,0.797,1.022 +NM_002177,1.076,0.964,1.05,0.881,1.041,0.925,1.21,0.946,1.141,0.84,0.966,0.957,0.964,1.018,0.946,0.932,1.043,0.967,0.956,1.077,1.083,0.978,0.941,0.916,1.045,0.993,0.946,1.053,1.01,0.939,0.949,0.997,0.904,1.182,1.004,0.968,1.046,0.896,1.106,0.954,0.912,1.036,1.056,1.019,1.133,0.994,1.042,1.035,1.201,1.003,0.958,1.034,1.021,1.017 +NM_002178,0.423,0.775,2.485,2.09,1.411,0.756,0.657,0.632,0.387,1.629,0.594,1.303,0.451,0.378,0.428,1.388,1.091,5.632,1.874,1.444,0.92,0.588,1.048,3.587,0.621,0.642,3.049,0.525,0.49,1.235,0.33,3.852,2.011,1.516,0.323,1.555,0.478,2.979,1.304,0.533,0.881,0.997,0.419,1.053,0.688,0.541,3.167,1.886,0.454,1.486,2.02,4.299,1.865,2.268 +NM_002180,0.817,1.141,1.194,0.903,1.131,0.86,0.899,0.74,1.08,1.036,0.852,0.802,0.678,0.767,0.766,0.858,1.146,0.918,0.901,1.214,0.707,0.854,1.017,1.054,0.836,0.951,1.113,0.946,0.623,1.466,0.908,1.479,1.246,1.104,0.714,1.418,0.854,0.934,1.289,1.135,1.132,1.003,0.872,1.459,1.126,1.12,1.063,0.86,1.076,0.769,0.986,0.787,0.993,1.256 +NM_002182,1.068,0.867,1.561,0.859,1.261,0.866,1.052,1.034,1.79,1.494,0.999,1.086,1.069,1.19,0.938,0.934,1.174,1.127,1.606,1.142,0.946,0.909,0.842,1.263,0.787,0.962,1.474,1.228,1.13,0.966,1.417,1.547,1.626,0.874,0.812,0.798,0.746,0.988,0.869,1.276,1.492,0.831,0.776,0.811,1.404,0.683,1.06,1.111,0.945,1.343,0.962,1.196,1.864,1.059 +NM_002183,0.888,1.002,0.843,0.933,0.933,0.898,1.01,0.988,0.801,0.949,0.993,0.938,0.918,0.913,0.761,0.874,0.905,0.927,0.933,0.885,0.931,1.044,1.158,0.95,1.046,0.926,1.056,1.054,0.858,1.225,0.987,1.327,0.998,1.044,0.832,1.268,0.965,0.924,1.707,1.859,0.89,1.091,1.035,0.962,1.095,0.96,1.044,1.046,0.885,1.02,1.054,1.47,0.948,1.175 +NM_002184,0.878,1.0,1.107,0.918,1.047,0.967,0.908,0.897,1.183,0.967,0.915,1.05,0.9,0.717,0.909,1.069,0.917,1.049,0.925,1.058,0.991,0.955,0.965,0.995,0.963,0.929,1.041,1.107,0.853,1.009,0.955,1.091,1.095,1.082,1.229,1.061,1.202,0.983,1.15,0.836,1.073,1.063,0.868,0.871,1.048,1.172,1.174,1.131,1.021,1.021,1.025,0.899,0.906,0.938 +NM_002185,0.869,1.196,1.424,0.946,0.899,0.879,1.17,0.936,1.025,0.928,1.14,0.774,1.196,0.928,0.85,0.959,1.074,1.001,0.89,0.88,0.916,0.837,1.131,1.122,0.918,0.825,1.238,0.902,0.559,1.407,0.975,1.512,1.363,1.235,0.889,1.116,1.267,0.885,1.65,2.135,0.963,1.267,0.955,1.191,0.998,0.813,1.029,0.96,1.063,0.844,1.03,2.486,1.993,1.142 +NM_002186,2.006,2.004,1.849,1.945,1.724,1.939,2.0,1.982,1.968,1.8820000000000001,1.885,2.0789999999999997,1.888,2.016,2.268,2.0780000000000003,1.9209999999999998,1.8639999999999999,1.829,2.215,2.34,2.051,1.8980000000000001,2.096,1.9249999999999998,2.178,1.8980000000000001,2.035,2.344,2.044,2.1870000000000003,1.9929999999999999,2.063,2.2039999999999997,2.203,1.9140000000000001,2.096,2.185,1.9260000000000002,1.967,2.137,1.9129999999999998,2.1929999999999996,1.9129999999999998,2.138,2.275,1.9249999999999998,1.796,1.9849999999999999,1.8719999999999999,2.025,1.9289999999999998,1.996,2.025 +NM_002187,1.053,1.132,0.885,0.989,0.86,1.026,1.094,0.922,1.012,1.083,1.017,0.883,0.993,0.962,0.898,1.047,1.03,1.05,0.886,1.075,0.865,1.009,0.999,1.049,1.068,0.993,0.851,1.005,0.848,0.935,1.027,1.007,0.924,0.97,1.139,0.898,0.877,1.049,0.882,1.024,1.138,0.989,0.974,0.814,1.007,0.934,0.957,1.023,1.022,0.969,1.044,0.909,1.03,1.013 +NM_002188,0.957,1.069,1.056,0.955,0.977,0.88,0.938,1.04,0.906,0.94,1.002,1.041,1.083,1.091,0.927,0.979,1.021,0.933,1.036,0.87,0.927,0.977,0.936,0.936,1.029,1.11,1.116,1.019,0.711,0.989,1.165,1.008,0.916,0.984,0.983,1.071,0.964,1.07,1.092,1.076,1.108,1.194,0.979,0.894,0.851,0.883,1.088,1.127,1.052,1.011,0.93,0.931,0.949,0.9 +NM_002189,1.908,2.039,1.952,1.984,2.047,2.0469999999999997,1.958,1.847,1.891,1.669,1.971,1.837,1.793,1.9409999999999998,1.9369999999999998,1.9649999999999999,1.896,1.876,1.744,1.937,1.885,1.749,2.1630000000000003,1.865,1.951,1.8729999999999998,2.218,1.951,1.8719999999999999,2.08,1.712,2.344,2.315,2.186,1.9,2.089,2.067,2.07,2.311,2.051,1.851,1.927,2.146,2.071,1.904,1.968,1.8780000000000001,1.8820000000000001,2.0,1.9949999999999999,1.9769999999999999,1.903,1.758,2.769 +NM_002190,1.081,1.103,1.017,0.968,0.929,1.055,0.955,0.986,0.977,1.003,1.055,0.984,1.103,1.036,0.967,0.973,1.024,0.88,0.925,0.959,0.918,0.988,1.208,1.012,1.066,0.847,0.985,1.107,0.824,0.85,0.941,0.919,0.957,1.012,1.199,1.186,0.974,0.981,1.05,1.031,1.016,1.027,0.912,1.057,1.041,1.011,0.825,1.039,0.98,1.151,0.908,1.134,0.886,0.892 +NM_002191,0.803,0.953,1.059,1.099,1.019,1.059,0.929,1.308,1.035,1.066,1.057,1.009,1.148,0.931,0.824,1.075,0.976,0.912,0.928,1.065,0.946,1.141,1.073,1.052,0.949,0.948,0.923,0.977,1.207,1.025,0.985,1.018,1.072,0.983,1.138,1.046,0.942,0.955,1.078,1.171,0.89,0.902,1.071,1.103,1.136,0.931,0.878,1.011,1.016,1.157,0.892,0.984,0.919,0.892 +NM_002192,0.942,0.998,0.957,0.908,0.888,0.945,0.881,0.943,0.925,0.936,0.823,1.008,0.927,1.006,1.01,0.973,0.958,1.03,0.915,0.914,0.856,0.985,1.138,0.952,0.832,0.896,0.802,0.94,0.894,1.071,0.926,12.44,2.418,1.111,0.964,1.062,0.843,1.024,2.244,12.51,0.991,1.087,0.895,1.002,0.969,0.984,1.198,1.097,1.041,1.071,0.893,2.503,0.894,1.174 +NM_002193,0.911,1.033,0.9,0.973,0.882,0.942,0.941,0.935,0.856,0.854,1.058,0.897,1.0,0.865,0.91,1.027,0.96,0.923,0.85,0.96,0.922,0.862,1.284,0.922,0.995,1.003,0.981,0.972,0.848,1.104,0.885,3.491,3.165,1.113,0.944,1.399,1.009,0.93,1.134,2.292,0.894,1.835,0.865,2.985,0.899,0.862,1.017,0.845,0.89,0.967,1.051,1.361,1.032,1.303 +NM_002194,0.832,0.456,1.81,0.554,1.493,1.044,0.452,0.884,2.058,1.52,0.884,0.862,0.709,0.854,1.266,2.177,1.181,0.832,2.046,0.852,0.674,1.78,1.301,1.398,0.293,1.243,1.796,1.218,0.45,0.782,1.683,0.731,1.026,0.843,0.23,0.609,0.719,1.119,1.231,0.699,1.663,0.709,1.101,1.179,1.456,0.751,0.914,1.106,1.169,0.977,0.998,0.508,1.254,2.02 +NM_002195,0.972,1.077,1.002,0.902,1.002,0.993,1.107,0.908,0.973,1.055,0.906,0.971,1.056,0.977,0.811,1.002,0.959,0.968,1.02,0.998,0.934,1.027,0.934,0.927,1.004,1.036,0.949,0.983,0.892,1.094,0.967,1.064,0.82,1.02,0.994,0.902,0.974,0.89,0.888,1.007,1.098,0.869,1.043,1.096,0.976,1.066,1.169,1.036,0.959,1.02,1.101,0.991,0.973,0.858 +NM_002196,0.972,1.013,1.07,0.974,0.911,1.185,0.884,0.842,0.87,0.814,2.273,0.936,0.799,0.682,1.02,0.868,0.931,1.005,0.838,2.18,0.973,0.866,2.824,0.859,1.188,0.827,0.885,0.786,0.796,0.971,0.892,0.916,1.182,2.102,0.95,1.23,1.91,0.806,0.911,0.972,0.89,1.227,2.086,1.484,0.843,2.816,1.594,0.946,1.978,0.935,1.972,0.77,0.999,1.232 +NM_002197,0.524,1.469,0.736,0.965,0.542,1.942,1.023,0.315,0.806,0.655,2.021,0.581,0.371,0.482,1.309,2.598,0.576,0.973,0.767,1.288,0.295,0.739,2.383,0.692,1.688,0.551,0.896,0.485,1.04,2.643,0.539,1.299,0.99,2.518,0.252,0.505,3.099,0.634,1.59,0.808,0.647,2.391,1.046,0.622,0.706,1.657,0.755,0.545,1.327,0.598,1.523,1.121,0.544,1.536 +NM_002198,0.292,0.884,1.213,0.84,0.324,1.925,1.659,0.249,0.493,0.346,0.971,0.269,0.312,0.36,1.286,1.201,0.796,0.942,0.371,1.004,0.176,0.245,1.227,0.348,0.803,0.327,1.043,0.455,0.418,1.306,0.533,1.07,0.998,1.133,0.347,0.527,2.141,0.327,1.514,1.1,0.784,1.428,0.611,0.903,0.497,1.187,1.012,0.251,2.637,0.526,1.502,1.214,0.875,3.618 +NM_002199,1.06,0.739,0.923,1.24,0.947,1.104,0.897,0.963,0.905,0.904,1.184,0.866,1.096,0.817,0.974,1.29,0.894,0.688,0.877,1.126,1.325,0.699,1.02,1.004,1.261,1.039,1.037,0.888,0.846,1.076,0.839,1.099,0.971,1.132,0.768,0.882,1.005,0.764,1.574,0.888,0.838,1.088,0.947,1.338,0.87,0.966,0.937,0.794,0.932,1.193,0.939,0.793,0.792,1.116 +NM_002200,1.081,0.929,1.107,0.829,1.026,0.987,0.818,1.004,1.095,1.043,1.1,0.846,1.001,0.898,1.03,1.061,0.96,0.93,0.87,0.988,1.087,0.969,0.979,0.962,0.909,1.1,1.002,1.005,0.834,1.044,1.094,0.966,0.957,1.085,0.984,1.014,1.167,1.179,1.068,1.025,0.954,0.987,0.972,1.117,1.07,1.037,0.997,1.001,1.07,0.994,1.167,0.963,1.03,0.925 +NM_002201,0.361,1.082,0.531,0.994,0.408,2.041,1.803,0.404,0.532,0.501,1.463,0.378,0.303,0.244,0.86,1.66,0.4,1.969,0.312,1.787,0.249,0.562,1.396,0.467,0.777,0.463,0.327,0.539,1.059,2.116,0.363,0.995,0.618,1.819,0.166,3.426,1.714,0.48,2.68,1.005,0.579,1.256,1.262,0.757,0.598,1.574,1.188,0.544,1.564,0.365,1.668,0.917,0.452,1.885 +NM_002202,0.649,1.352,0.66,1.021,0.583,1.734,1.456,0.607,0.651,0.579,1.692,0.623,0.639,0.695,1.059,2.193,0.592,0.887,0.622,2.969,0.668,0.573,1.583,0.7,2.283,0.601,0.653,0.637,0.979,1.527,0.622,3.268,3.018,3.039,0.522,1.341,2.519,0.753,1.251,0.687,0.556,1.058,1.035,2.604,0.716,1.29,1.351,0.581,1.21,0.621,2.326,0.567,0.664,0.674 +NM_002204,1.144,1.003,0.92,1.041,0.969,0.962,0.928,1.043,0.993,1.148,0.908,1.021,1.022,0.942,1.036,1.086,0.947,0.952,0.963,0.95,1.083,0.912,0.908,1.106,0.926,0.971,1.067,0.876,0.722,1.004,1.076,0.996,1.06,1.096,1.085,1.018,0.93,0.918,1.169,1.071,0.946,1.03,0.874,1.216,0.975,1.098,1.226,1.103,0.938,1.073,1.067,0.814,0.902,1.055 +NM_002205,0.977,1.016,0.828,0.995,0.97,0.922,0.958,0.918,0.942,0.969,0.89,0.942,0.955,0.91,0.926,0.929,0.878,1.003,0.928,0.92,0.867,0.981,0.985,0.888,1.004,0.997,0.913,1.001,0.73,1.01,0.927,1.99,1.298,1.058,0.861,1.146,1.01,0.966,1.791,3.232,0.936,1.112,0.756,1.251,0.999,1.072,1.11,1.046,0.988,0.962,0.997,1.301,0.875,1.058 +NM_002206,1.082,1.005,0.968,0.96,0.999,0.913,0.837,0.957,1.183,0.879,0.884,1.091,1.042,0.858,0.937,1.108,1.064,1.058,0.955,1.109,0.891,1.028,0.883,0.939,0.973,1.11,0.968,1.103,0.962,1.053,1.012,0.969,1.069,1.05,0.984,0.966,1.159,1.014,1.136,1.145,0.991,1.02,0.926,1.005,0.919,0.985,1.116,1.14,1.038,0.989,0.933,1.033,0.929,0.86 +NM_002207,0.974,0.994,1.086,1.057,0.956,0.953,0.963,0.984,0.89,0.81,0.883,1.068,1.006,0.96,1.106,0.994,0.966,0.976,0.893,0.989,1.152,0.938,1.079,1.002,1.114,1.027,0.958,1.053,0.89,0.938,1.009,1.51,1.179,1.163,0.994,1.081,0.983,0.868,1.102,1.05,0.996,0.985,1.083,1.091,1.041,0.957,0.842,1.005,0.828,0.857,1.063,0.96,1.064,1.203 +NM_002208,0.878,0.71,1.855,0.839,1.106,0.947,0.497,0.821,1.34,1.249,1.032,1.242,1.017,0.958,1.044,1.416,1.06,1.045,1.807,0.791,0.761,1.015,1.031,1.117,0.715,1.0,1.728,1.002,0.409,1.026,1.09,0.924,1.561,1.281,0.256,0.85,0.928,1.161,0.957,0.842,1.315,0.864,0.577,0.707,1.208,0.717,0.921,1.039,0.695,0.952,0.904,0.773,1.136,1.649 +NM_002210,0.936,1.115,1.056,0.916,0.835,0.99,1.113,0.901,1.028,1.041,1.126,0.891,0.924,0.846,0.928,1.077,1.007,1.151,0.939,0.933,0.986,0.854,1.183,0.894,0.936,0.929,1.058,0.96,0.829,1.003,0.907,1.253,1.265,1.105,0.89,1.092,1.113,0.942,1.274,1.12,0.963,1.058,0.938,1.27,0.971,1.143,0.969,1.076,1.004,0.934,1.048,1.072,0.971,1.052 +NM_002211,0.296,1.031,0.671,0.506,0.452,1.324,0.694,0.359,0.674,0.583,1.2,0.348,0.375,0.345,0.801,1.991,0.498,0.89,0.442,1.392,0.237,0.481,1.316,0.641,0.473,0.332,0.845,0.569,0.461,1.422,0.709,2.964,2.066,1.6,0.543,0.787,1.331,0.482,2.084,1.666,0.683,1.203,0.633,1.654,0.58,1.302,1.222,0.505,1.075,0.331,1.306,1.288,0.466,1.554 +NM_002214,1.237,0.841,1.036,1.084,1.087,0.802,0.791,1.136,1.773,0.877,1.058,0.994,0.934,1.712,1.071,1.013,1.012,1.236,0.938,0.955,1.042,1.164,0.905,1.023,0.919,1.175,1.205,2.067,0.76,0.989,1.287,0.826,1.375,0.943,1.713,0.92,0.985,1.036,0.894,0.923,0.979,0.821,1.039,0.78,0.915,0.887,1.674,0.998,1.033,1.002,1.026,1.154,1.143,1.308 +NM_002215,0.994,1.019,1.025,0.955,1.133,0.995,0.919,0.898,0.98,1.041,1.039,1.001,1.013,1.01,1.063,0.944,0.87,1.017,0.858,1.036,0.917,1.116,1.085,0.951,0.906,1.053,0.983,0.996,0.903,1.01,0.923,0.973,1.107,0.979,1.042,0.938,0.992,1.038,1.05,1.052,0.957,0.991,1.042,1.041,0.959,0.936,1.191,0.95,1.012,1.011,0.93,1.009,0.899,0.882 +NM_002216,1.093,0.995,1.052,0.956,1.006,0.974,0.87,1.199,1.045,0.836,0.939,0.928,0.975,0.967,1.042,1.093,1.004,0.946,0.907,1.149,0.933,0.996,0.905,0.987,1.088,1.101,0.962,1.031,0.811,1.055,0.995,1.055,0.981,0.941,0.944,1.07,1.084,0.923,0.946,1.055,1.141,0.997,0.818,0.921,1.131,0.878,1.155,0.932,0.851,0.998,1.001,1.032,0.85,1.098 +NM_002217,0.978,1.066,1.032,0.833,1.026,0.894,1.013,1.044,0.969,1.083,0.865,0.967,0.919,1.063,0.871,1.017,1.072,0.964,0.955,0.941,1.013,0.965,0.995,0.98,1.0,1.016,1.034,1.09,0.908,1.077,0.978,1.262,0.841,1.123,0.915,1.023,0.901,1.03,1.118,1.13,1.082,0.948,0.993,0.951,1.086,1.023,1.045,0.946,1.013,0.863,0.999,0.884,1.029,0.983 +NM_002218,0.937,1.095,0.923,1.077,1.091,1.0,1.06,0.903,1.046,0.905,1.049,1.008,0.864,1.011,0.811,1.024,1.016,1.046,1.014,0.881,0.865,0.934,1.035,1.005,0.939,0.957,0.912,1.045,1.191,0.96,0.935,1.447,0.875,1.062,0.933,0.885,0.886,0.969,1.058,0.939,0.988,0.925,0.926,0.944,0.911,0.915,0.949,1.031,1.02,1.019,0.986,1.389,0.853,1.157 +NM_002220,0.22,1.596,0.215,1.164,0.209,3.081,2.167,0.181,0.24,0.221,2.625,0.236,0.229,0.212,0.88,2.072,0.22,1.665,0.196,2.001,0.232,0.196,1.056,0.25,2.17,0.196,0.229,0.197,2.71,3.562,0.238,0.643,0.353,4.263,0.231,1.709,2.479,0.221,2.788,0.793,0.203,1.42,1.711,1.213,0.223,1.843,1.28,0.233,1.259,0.215,1.481,0.442,0.207,0.596 +NM_002221,0.845,0.984,1.056,0.823,0.913,1.08,0.615,0.797,1.029,0.76,0.674,0.906,0.81,0.821,0.794,0.874,1.17,0.92,1.132,0.905,1.062,1.126,1.048,0.873,0.913,1.203,1.247,1.14,0.567,1.035,0.993,1.463,1.084,1.356,0.707,0.781,0.777,1.237,1.019,1.175,1.167,1.145,0.675,1.037,0.931,0.74,0.937,1.002,0.818,0.987,1.053,0.827,1.03,1.413 +NM_002223,1.172,0.942,1.883,0.865,1.766,0.868,0.806,0.839,1.491,1.415,0.775,1.033,0.872,1.376,1.183,1.21,0.991,1.01,1.724,0.957,0.984,1.09,1.046,1.127,0.811,1.135,1.089,1.107,0.872,0.934,1.235,0.867,1.132,0.926,0.72,0.883,0.962,1.6,0.748,0.964,1.149,0.925,1.226,2.64,1.152,0.968,1.025,0.995,0.888,1.349,1.015,0.973,1.179,0.807 +NM_002224,0.293,1.128,0.607,0.943,0.374,1.656,0.988,0.179,0.461,0.459,1.121,0.313,0.164,0.249,0.778,1.135,0.404,1.198,0.338,1.469,0.143,0.268,1.232,0.467,0.736,0.262,0.803,0.334,0.823,2.142,0.348,1.589,1.491,1.79,0.325,1.58,1.179,0.465,2.594,1.613,0.465,1.487,0.949,1.512,0.564,1.443,0.749,0.292,1.095,0.373,1.753,0.849,0.327,1.846 +NM_002225,0.842,1.472,0.628,1.003,0.784,1.324,0.843,0.802,1.126,0.941,1.299,0.779,0.871,0.748,0.828,1.146,0.671,0.868,0.941,1.2,0.652,0.864,1.541,0.921,1.309,0.966,0.977,0.841,1.109,1.425,0.768,1.293,1.406,1.252,0.58,0.797,1.303,1.1,1.464,0.716,0.879,0.973,1.433,1.158,0.812,1.135,1.085,0.803,1.113,0.746,1.268,1.087,0.895,1.473 +NM_002226,1.033,1.098,0.841,0.957,1.092,1.011,0.802,1.047,0.912,0.927,1.001,0.745,0.952,0.913,1.046,0.976,1.09,0.999,1.179,1.196,0.988,1.025,0.963,1.016,1.144,0.911,0.892,1.008,1.244,0.999,0.979,0.898,1.101,0.971,1.3,1.002,1.053,0.95,1.082,0.982,1.103,1.147,0.712,1.113,0.937,1.146,0.973,1.067,0.827,0.964,1.046,1.108,0.832,0.879 +NM_002227,0.863,1.029,1.036,1.18,0.779,1.055,0.81,0.841,1.086,1.05,1.144,0.913,0.845,1.031,0.86,1.119,0.806,0.743,0.807,1.07,0.881,0.791,1.033,0.915,0.777,0.766,0.873,0.952,0.822,1.221,1.004,1.295,2.349,1.361,0.982,1.023,0.841,0.7,1.025,0.838,0.956,1.047,1.032,1.461,0.908,1.212,0.809,0.728,1.106,0.959,0.977,0.94,1.13,2.066 +NM_002228,0.827,1.121,0.894,0.842,1.049,1.241,0.788,0.764,0.903,0.804,1.038,1.031,0.809,0.994,0.973,1.069,0.715,1.032,0.866,1.212,0.698,1.05,1.019,0.97,0.799,0.953,0.719,0.953,0.814,1.367,0.919,1.255,1.515,1.357,0.685,0.866,1.053,0.991,1.151,1.336,0.939,1.18,1.154,0.918,0.815,1.181,0.92,0.896,0.852,0.638,1.135,0.89,1.111,1.34 +NM_002229,1.092,0.99,1.032,0.926,1.07,1.067,0.891,1.654,1.048,1.113,0.896,1.006,1.193,0.996,1.041,0.976,1.113,0.837,1.142,0.945,1.185,1.028,0.837,0.922,0.919,1.154,0.994,1.039,0.934,0.99,1.101,1.029,0.95,0.909,1.395,1.022,0.798,1.031,0.998,1.203,0.95,1.001,1.054,0.964,0.951,0.888,0.854,1.102,0.936,1.15,0.978,1.092,0.989,0.982 +NM_002230,2.786,0.745,1.288,1.464,1.416,0.744,0.633,0.608,1.59,2.084,0.75,0.845,0.933,1.3,0.968,0.945,1.437,1.454,3.045,0.683,2.913,0.832,0.765,1.218,0.68,5.197,1.588,0.825,0.652,0.726,1.034,0.81,1.123,0.722,0.929,0.746,0.788,1.962,2.269,0.603,1.362,0.841,0.827,2.347,1.445,0.843,1.173,3.075,0.903,3.186,0.81,0.821,1.363,0.785 +NM_002231,1.389,0.799,1.063,0.822,1.034,0.992,0.611,0.543,1.148,1.168,0.926,0.715,1.084,0.918,0.735,1.085,1.297,1.226,1.971,0.807,1.097,1.353,0.844,1.129,0.769,1.754,1.605,0.793,0.889,1.51,0.813,0.89,0.698,0.973,0.563,0.798,0.942,1.43,1.797,0.617,1.296,1.028,0.954,1.257,0.94,0.781,1.104,1.268,0.741,1.413,0.847,0.851,0.954,0.911 +NM_002232,0.957,0.956,1.011,0.951,1.031,0.89,1.012,1.06,0.97,1.091,0.917,0.946,1.113,1.006,0.958,0.92,1.063,0.983,1.006,0.826,1.054,1.053,0.896,1.008,1.048,0.756,0.898,0.925,0.737,1.059,1.019,1.022,0.94,0.941,0.908,0.993,1.087,0.997,1.021,1.013,0.926,1.018,1.068,0.983,1.063,1.061,0.841,1.103,1.028,0.91,0.967,0.95,1.192,0.97 +NM_002233,0.961,1.083,0.964,1.071,1.125,0.89,0.967,1.256,0.947,1.063,0.993,1.265,1.067,0.976,0.805,1.021,0.973,0.965,1.0,1.034,0.926,1.002,1.024,0.97,0.989,1.085,0.978,1.099,0.852,1.0,1.038,0.958,1.043,0.995,1.067,1.065,1.12,1.003,0.99,0.969,1.205,0.935,0.868,1.05,0.915,0.993,1.029,1.061,1.096,1.015,1.004,0.877,0.87,0.986 +NM_002234,1.022,1.0,0.972,0.872,0.956,1.028,0.992,0.884,0.902,0.954,1.068,0.986,0.96,1.155,0.864,1.046,0.886,1.009,1.016,1.271,1.103,0.978,1.005,0.965,1.088,1.05,0.913,1.068,1.125,0.996,1.056,1.186,1.098,1.03,0.971,1.005,0.967,0.934,0.833,0.905,1.012,1.07,0.974,0.975,1.013,1.188,0.814,1.024,1.036,0.707,0.849,1.24,0.937,0.908 +NM_002236,0.937,0.897,0.903,0.936,0.966,1.0,0.909,1.089,0.988,0.864,1.089,0.881,0.893,1.01,0.937,1.073,0.92,1.002,0.842,1.151,1.001,0.898,2.27,1.0,0.806,0.87,0.854,0.886,0.864,0.998,1.002,0.947,1.259,1.053,0.957,1.133,1.198,0.863,1.119,1.424,0.995,1.062,1.369,1.788,0.883,1.337,1.925,0.834,1.227,0.869,1.469,0.943,0.911,2.127 +NM_002237,2.0940000000000003,1.901,1.911,1.9860000000000002,1.9289999999999998,2.0380000000000003,2.2119999999999997,1.8290000000000002,2.034,1.941,2.195,2.06,2.241,2.159,1.944,1.958,2.028,2.108,2.215,1.791,1.867,2.109,1.9060000000000001,2.088,1.9049999999999998,2.2110000000000003,1.9980000000000002,1.9739999999999998,2.006,1.991,2.12,2.0,2.0549999999999997,1.966,1.9889999999999999,2.0149999999999997,1.83,1.9589999999999999,2.024,1.891,2.1639999999999997,1.996,2.34,1.97,1.779,1.788,1.8210000000000002,2.206,2.107,1.968,2.017,1.9049999999999998,1.917,1.858 +NM_002238,0.925,0.926,1.017,1.022,1.036,1.008,0.899,1.044,1.009,0.996,1.033,1.121,1.103,1.105,0.782,1.024,1.089,0.781,0.984,0.943,0.994,0.973,1.091,1.117,0.883,0.92,0.83,0.984,1.225,1.158,0.891,0.927,1.259,0.888,0.974,0.903,1.023,0.933,0.995,0.881,0.931,1.068,0.933,1.121,0.98,0.856,0.973,1.113,1.108,1.069,0.95,0.948,1.003,0.909 +NM_002239,1.151,1.063,0.893,0.967,0.994,1.017,0.99,0.986,1.031,1.094,0.975,0.897,1.052,1.011,1.033,1.097,1.073,1.198,0.842,1.186,1.041,1.002,1.141,0.994,1.068,1.058,0.952,1.085,0.945,0.954,0.998,0.982,0.919,1.115,1.08,0.963,1.04,1.063,0.884,0.982,1.079,0.948,1.329,0.998,1.051,0.945,1.023,0.935,1.1,0.908,1.115,0.995,1.18,1.06 +NM_002240,1.084,1.067,0.999,1.061,1.056,0.941,0.897,1.0,0.946,0.913,0.969,1.017,1.073,0.964,0.866,0.868,1.061,0.982,0.92,0.974,0.974,1.088,1.044,1.051,1.087,1.007,0.978,0.975,0.686,1.026,0.942,1.061,0.821,0.957,1.002,0.996,0.967,1.054,1.006,1.014,1.088,0.963,0.938,1.01,0.973,1.054,0.969,1.024,1.001,1.049,0.96,0.982,1.004,0.992 +NM_002242,1.028,1.205,0.938,0.858,0.93,0.993,0.885,1.115,1.002,1.004,0.996,0.968,0.904,0.944,0.908,1.133,0.954,1.105,1.065,0.998,1.012,0.909,1.084,0.951,1.239,0.929,0.891,0.86,1.065,0.948,0.992,1.12,1.095,1.25,0.993,0.961,0.996,0.98,0.974,0.874,0.948,1.012,0.951,1.046,0.998,0.895,1.004,1.043,0.937,1.059,1.041,0.948,1.158,1.067 +NM_002245,0.52,0.693,0.858,0.694,0.937,2.05,1.137,1.136,1.102,0.646,0.537,0.635,0.615,0.515,1.316,2.188,0.723,1.451,1.171,1.179,0.509,0.858,1.195,0.968,0.525,0.461,0.997,0.753,0.993,1.251,1.247,1.513,1.591,1.772,0.9,1.003,1.884,0.925,1.49,1.056,0.81,0.707,1.072,0.806,0.836,1.037,1.288,0.652,1.458,0.672,1.073,0.725,0.817,1.376 +NM_002247,0.793,0.975,0.908,1.047,0.916,1.145,0.839,0.719,0.883,0.909,1.328,1.057,0.75,0.928,0.877,1.019,0.784,0.721,0.859,1.501,0.841,0.73,1.81,0.967,1.132,0.995,0.854,1.341,0.931,1.545,0.775,1.449,0.91,2.685,0.798,0.86,1.046,1.061,1.156,0.899,1.841,2.423,0.835,0.786,0.792,0.978,0.897,1.068,1.138,0.956,1.409,1.196,1.312,1.147 +NM_002248,0.979,1.1,0.896,1.106,1.094,1.046,1.056,1.026,0.932,0.992,1.173,1.227,1.033,0.913,0.971,0.871,1.081,1.02,0.881,0.946,0.993,0.969,0.903,0.98,0.926,0.986,1.037,0.983,0.61,0.986,1.042,0.987,1.074,0.955,0.949,1.017,1.046,1.141,1.043,1.164,0.956,1.067,0.765,1.034,0.961,0.999,0.97,1.066,1.16,1.011,1.098,0.995,0.975,1.02 +NM_002249,1.025,0.905,0.964,0.976,1.026,1.016,1.221,0.95,1.006,0.98,1.009,0.962,0.974,1.294,1.161,1.041,0.969,0.984,0.975,0.945,1.045,1.023,1.01,1.076,0.977,0.939,0.968,0.972,0.989,0.971,0.908,0.88,1.017,1.112,0.931,0.954,1.051,1.031,0.929,0.978,0.95,0.926,0.892,0.957,0.937,1.282,1.0,1.102,1.102,1.021,1.089,0.779,1.24,0.867 +NM_002250,0.378,1.649,0.427,0.851,0.387,1.324,1.429,0.431,0.336,0.51,1.031,0.467,0.419,0.445,0.718,1.5,0.4,1.024,0.395,1.424,0.442,0.329,2.757,0.466,0.955,0.398,0.433,0.352,0.863,2.331,0.372,1.349,2.029,2.62,0.382,1.378,1.217,0.396,2.057,1.126,0.401,2.053,0.961,1.592,0.427,0.944,0.913,0.405,0.862,0.456,1.054,1.193,0.354,0.754 +NM_002251,1.011,1.459,0.933,0.987,0.93,1.001,0.947,1.064,1.385,0.879,1.131,1.119,0.999,0.977,1.227,1.092,0.976,1.068,1.092,1.176,0.995,0.948,1.126,1.028,0.822,1.022,0.992,0.84,0.926,0.998,0.966,1.154,0.869,0.985,1.116,1.32,0.941,0.817,1.194,1.01,1.021,1.104,1.115,0.899,1.254,0.987,0.972,0.973,0.846,1.011,1.15,3.042,1.092,1.239 +NM_002252,0.847,1.732,1.351,1.352,0.903,1.534,0.808,0.9,0.905,1.001,0.901,0.932,0.843,0.758,0.872,0.88,0.854,1.422,0.849,1.045,0.926,0.908,1.139,0.873,0.962,0.886,1.505,0.962,1.196,1.4,1.022,2.317,2.006,1.347,0.842,1.586,1.041,1.028,1.472,1.757,0.946,0.999,0.797,1.531,0.865,0.983,1.007,0.894,0.784,1.362,0.863,0.862,1.101,0.945 +NM_002253,0.921,1.104,0.969,1.079,0.963,0.989,0.873,1.178,1.022,1.0,0.937,1.004,1.102,0.909,0.969,1.053,0.948,0.968,1.056,0.878,0.941,1.048,0.945,0.988,1.065,1.006,0.853,1.077,0.955,1.049,1.056,0.993,0.975,0.962,0.918,0.961,1.118,0.926,1.002,1.075,0.948,1.012,1.057,1.091,1.175,1.016,0.997,1.022,1.045,1.08,0.976,1.214,1.168,1.067 +NM_002254,1.015,1.062,1.085,1.028,0.914,1.06,0.917,0.991,1.125,1.104,0.983,0.882,0.952,1.082,0.976,0.961,0.926,0.967,0.927,1.078,1.118,1.036,1.044,0.839,1.063,0.876,1.044,0.821,1.226,1.043,0.861,1.395,1.031,0.94,0.995,0.987,1.077,0.997,0.986,1.26,0.974,1.097,0.911,0.924,0.966,0.977,1.04,0.834,0.946,1.041,0.985,1.008,0.96,1.006 +NM_002256,1.1,1.166,0.848,1.131,1.122,0.956,1.044,0.998,1.027,1.002,0.904,0.961,1.035,0.957,1.02,1.022,0.988,1.028,0.976,0.976,0.85,0.9,1.195,0.859,1.022,1.119,0.887,1.06,0.992,0.949,0.863,1.097,0.975,1.268,1.007,1.049,0.905,0.991,1.035,1.099,0.839,1.006,1.049,1.042,1.002,1.053,1.078,1.077,0.949,1.016,0.872,0.995,1.032,1.071 +NM_002257,0.543,0.853,0.819,1.488,1.089,2.543,0.822,0.674,0.978,1.259,5.879,0.891,0.734,0.612,5.926,8.854,0.471,1.07,0.79,6.763,0.67,0.809,4.71,1.226,0.695,0.613,0.694,0.611,0.908,0.901,1.14,0.465,5.433,0.797,0.435,26.34,2.64,0.998,1.821,3.008,0.738,5.166,3.623,2.26,1.028,7.673,3.126,0.691,6.199,0.616,4.479,0.726,0.762,1.002 +NM_002258,0.657,1.615,3.488,0.766,0.87,1.17,1.812,0.877,0.909,0.97,0.982,0.931,1.547,0.715,0.68,0.84,1.967,1.091,1.367,1.173,0.721,0.706,1.011,0.93,1.016,0.589,3.123,1.069,0.619,1.948,0.791,1.169,0.638,1.86,0.504,0.652,1.623,0.699,1.551,0.582,3.157,2.024,0.685,0.658,1.831,0.691,0.857,0.677,0.875,0.941,0.86,0.747,1.772,1.176 +NM_002265,0.712,0.917,1.182,0.537,1.102,0.948,0.57,0.444,1.569,1.546,0.606,1.032,0.524,0.673,0.829,1.022,1.045,0.832,0.98,0.912,0.454,0.991,1.364,1.417,0.442,0.676,1.692,1.169,0.384,1.008,1.142,1.289,1.472,0.937,0.795,0.913,0.903,1.234,1.322,0.952,1.48,0.927,0.637,1.225,1.499,1.001,1.228,0.85,1.412,0.83,1.179,0.805,0.86,1.671 +NM_002266,0.588,0.84,1.005,0.943,0.765,0.727,0.532,0.195,1.158,1.235,0.927,0.364,0.386,0.474,0.837,1.693,0.802,0.847,1.131,0.55,0.653,0.477,2.064,1.086,0.383,0.484,2.362,0.635,0.29,0.995,0.754,1.189,2.808,0.811,0.175,1.873,1.151,0.689,2.315,0.867,1.077,0.66,0.843,1.549,1.016,1.095,1.287,0.466,1.381,0.671,1.602,1.25,1.134,2.127 +NM_002267,0.635,0.886,1.31,0.599,1.05,1.294,0.641,0.734,1.411,1.227,1.066,1.209,0.707,0.745,0.96,2.284,0.883,0.989,1.287,0.821,0.567,0.992,1.323,1.3,0.538,0.626,1.363,1.12,0.637,1.344,1.225,1.06,2.467,1.177,0.323,0.684,1.139,1.342,1.135,0.729,1.163,0.958,0.558,0.854,1.222,0.923,1.1,0.837,1.143,0.939,0.992,1.063,0.715,1.543 +NM_002268,0.944,0.792,1.141,0.597,1.114,1.103,0.629,0.743,1.527,1.291,0.929,0.971,0.686,0.855,1.025,1.319,0.849,0.899,1.436,0.751,0.581,0.91,1.254,1.411,0.553,1.163,1.216,1.275,0.419,1.056,1.295,0.975,2.17,1.057,0.606,0.867,1.057,1.05,1.046,0.871,1.272,0.86,0.693,1.283,1.357,0.85,0.763,1.049,1.01,0.808,1.103,0.95,1.15,1.693 +NM_002269,1.208,1.054,1.081,0.999,0.919,0.942,1.009,0.959,0.898,0.988,1.032,0.994,0.952,1.028,0.891,1.077,0.907,0.81,1.277,1.066,1.239,1.171,0.9,0.983,1.03,0.877,1.039,0.954,0.837,1.025,0.879,1.016,1.134,1.12,0.933,1.169,0.996,0.797,0.969,0.93,0.879,1.168,1.002,1.351,1.055,0.963,1.076,0.968,1.054,1.015,1.043,0.887,1.088,1.26 +NM_002270,1.132,0.942,1.014,1.119,0.998,1.095,1.247,0.853,1.042,0.949,1.104,1.009,0.937,1.247,0.984,0.854,1.016,0.98,1.195,0.95,1.071,0.908,1.102,1.013,0.972,0.989,0.77,1.044,1.096,1.037,0.824,0.952,1.053,0.831,1.217,1.025,1.073,1.121,0.904,0.97,1.03,0.957,0.842,0.949,0.954,1.007,1.002,0.958,0.899,1.104,1.059,1.02,1.063,1.195 +NM_002271,0.886,1.129,1.004,0.807,0.917,1.146,0.729,0.806,1.016,1.006,0.925,0.966,0.919,0.648,1.012,1.51,0.903,0.863,0.846,1.117,0.629,0.812,1.518,1.254,0.838,0.65,1.262,0.907,0.752,1.238,1.093,1.521,1.731,1.094,0.539,0.876,0.917,1.104,1.114,0.958,1.138,1.248,0.777,0.969,1.094,0.855,0.991,0.83,1.283,0.859,1.094,0.903,0.8,1.395 +NM_002272,11.33,0.0435,6.995,5.163,13.02,0.0391,0.0462,10.75,14.99,10.89,0.0449,8.271,8.734,6.737,7.618,4.923,6.031,9.897,12.87,0.227,8.137,15.9,0.0437,14.41,0.0478,17.52,3.243,11.81,0.048,0.053,13.84,0.0478,2.452,0.0438,9.405,0.0498,0.0604,15.29,0.164,0.0412,10.07,0.0709,0.0378,0.0456,5.507,0.044,3.74,16.67,0.309,4.716,3.462,1.028,2.683,0.588 +NM_002273,0.0266,0.849,0.0202,1.279,0.0231,2.322,0.907,0.0164,0.0434,0.035,1.93,0.0448,0.0502,0.0199,1.026,2.613,0.0196,1.01,0.0282,1.139,0.0444,0.0754,1.869,0.0463,1.413,0.0549,0.0331,0.0205,1.245,1.724,0.02,0.412,0.888,1.667,0.0333,2.019,2.088,0.0347,3.376,1.115,0.0243,1.557,1.216,3.114,0.0471,1.51,1.137,0.032,2.251,0.0195,1.826,0.683,0.0466,1.207 +NM_002274,1.709,0.0,2.035,1.342,2.378,0.0,0.0107,1.422,2.032,2.074,0.0,1.713,1.67,0.988,1.373,1.511,1.744,1.769,1.86,0.212,1.745,1.841,0.0,1.902,0.0,1.896,1.308,1.806,0.0,0.0232,1.874,0.0,1.276,0.0,1.847,0.0,0.03,2.035,0.115,0.0,1.956,0.0297,0.0,0.0,1.992,0.0,1.487,2.504,0.334,1.767,1.273,0.896,1.549,0.665 +NM_002275,3.226,0.0406,7.557,1.692,5.306,0.0517,0.0398,2.014,4.492,7.312,0.0694,4.653,2.828,2.466,2.61,0.967,7.03,4.228,4.278,1.152,2.041,2.989,0.0565,6.538,0.045,4.534,4.255,5.488,0.0401,0.0858,4.199,0.0583,0.818,0.0513,3.214,0.103,0.0606,3.658,0.0676,0.063,5.07,0.206,0.0619,0.073,5.596,0.0545,2.938,4.273,0.0833,3.963,1.146,0.731,3.66,0.336 +NM_002276,0.609,0.823,0.63,1.022,0.713,1.37,0.839,0.572,1.17,0.489,1.31,0.385,0.515,0.449,0.939,1.57,0.731,1.242,0.545,1.563,0.253,0.689,1.626,0.362,0.7,0.974,0.418,0.89,0.628,1.395,0.983,0.592,0.692,1.214,1.607,1.535,1.352,0.848,1.722,0.558,0.705,1.225,1.006,1.556,0.431,1.316,1.221,1.114,1.756,0.276,1.678,0.917,0.325,1.14 +NM_002277,1.393,0.997,2.011,1.127,2.741,0.908,1.08,1.092,1.538,3.888,0.844,2.201,1.29,1.156,1.581,0.961,2.629,1.33,6.817,0.861,5.917,1.836,1.0,3.244,0.908,4.851,1.35,2.577,0.993,0.863,2.577,0.847,1.193,0.832,1.06,0.902,0.786,1.941,1.073,0.916,1.606,0.776,0.885,0.879,2.801,0.788,1.691,3.721,0.841,1.519,0.961,0.94,4.779,0.897 +NM_002278,1.725,0.838,1.546,1.071,1.44,0.916,0.854,1.146,1.763,1.518,0.875,1.507,1.368,0.846,1.245,1.076,1.278,1.201,1.439,0.844,1.248,1.574,1.0,1.451,0.888,1.382,0.956,1.293,0.897,0.941,1.877,1.004,1.018,1.056,0.811,1.0,1.032,1.407,0.909,1.018,1.825,0.799,1.009,0.814,1.685,0.905,0.958,1.299,0.792,1.466,0.883,0.74,1.134,0.908 +NM_002279,0.905,0.971,1.027,0.843,0.92,0.925,0.948,1.054,1.063,1.04,1.137,1.064,1.008,0.911,0.995,1.201,0.992,1.052,0.997,0.934,0.99,1.099,0.861,1.096,0.942,0.957,1.177,0.995,0.866,1.032,0.97,1.08,1.04,1.077,0.936,1.013,1.013,1.151,0.986,1.086,0.959,1.067,0.863,1.003,1.089,0.918,1.155,1.086,1.093,1.103,0.935,0.91,0.946,0.984 +NM_002281,1.009,0.988,0.869,1.031,1.034,0.988,0.964,1.015,0.973,1.113,1.11,1.024,1.002,0.929,0.97,0.876,0.959,0.979,0.959,0.999,0.892,0.886,0.909,0.83,0.993,1.033,1.0,0.918,1.064,0.978,0.913,0.974,1.048,1.169,0.994,0.892,1.065,0.918,1.074,0.967,1.044,0.972,1.305,0.922,1.018,1.091,1.175,0.929,0.987,1.011,1.01,0.878,1.033,1.15 +NM_002283,0.929,1.029,1.064,1.244,1.179,0.948,1.027,0.939,0.975,1.051,1.034,1.002,1.036,1.106,0.87,0.988,0.947,0.869,0.914,1.065,1.021,1.018,0.966,0.976,1.036,0.99,1.025,0.921,0.9,0.975,0.983,0.932,1.018,1.018,1.21,0.957,1.049,1.143,1.078,0.847,1.072,1.022,0.825,0.985,1.022,1.033,1.054,1.166,1.014,1.076,0.98,1.045,1.021,0.848 +NM_002284,0.965,1.027,0.945,0.876,1.003,1.026,0.851,1.012,0.851,0.845,0.873,1.141,1.013,1.085,0.831,0.977,1.129,0.977,0.916,1.218,0.997,0.922,1.009,0.907,0.915,1.039,1.017,0.913,0.995,1.046,0.879,2.64,1.846,0.98,1.017,0.992,0.973,0.925,1.103,1.131,1.056,1.399,0.893,1.137,0.982,0.882,0.971,1.107,0.757,1.193,1.024,1.017,0.996,2.276 +NM_002285,0.9,0.879,0.971,0.871,0.935,0.953,0.894,1.078,0.925,0.964,1.083,0.939,0.922,0.818,1.084,1.023,0.976,0.954,0.949,1.043,1.032,1.012,0.924,0.955,0.866,1.119,1.022,0.992,1.048,1.054,1.13,1.031,0.802,0.886,0.986,0.965,0.95,1.109,1.019,1.018,0.867,0.942,0.866,1.057,0.868,0.925,0.982,1.084,1.008,0.974,0.978,1.045,0.989,1.045 +NM_002289,1.016,0.884,0.963,1.077,0.91,0.893,1.029,1.114,0.909,0.925,0.961,0.897,1.023,0.947,0.878,0.984,0.999,1.081,0.896,1.138,0.938,1.058,1.001,1.05,0.916,1.057,0.863,0.962,1.063,0.957,1.028,0.956,0.879,1.147,0.908,1.093,0.862,0.796,1.039,0.907,1.138,0.91,1.153,1.104,0.908,1.032,0.891,1.01,1.079,0.935,1.001,0.952,0.959,1.078 +NM_002290,0.752,0.989,0.888,0.821,0.875,1.025,1.064,0.757,0.811,0.883,1.012,0.746,0.768,0.776,0.983,1.044,0.839,0.902,0.9,0.807,0.917,0.71,1.252,0.71,0.87,0.844,1.075,1.076,0.775,1.566,0.776,4.951,1.496,1.612,0.822,1.172,0.958,1.005,1.393,2.317,0.952,1.42,1.032,0.877,0.885,1.147,0.87,0.839,0.975,0.808,1.129,1.363,0.901,1.124 +NM_002291,0.467,0.884,0.708,0.608,0.666,1.012,0.664,0.481,0.731,0.646,1.303,0.464,0.486,0.602,0.932,1.297,0.466,0.724,0.728,1.288,0.542,0.634,2.709,0.632,0.834,0.538,1.01,0.48,0.618,2.203,0.597,3.323,2.079,1.104,0.461,0.777,1.003,0.701,1.561,1.431,0.644,1.412,1.005,1.823,0.523,2.001,0.926,0.478,1.499,0.53,1.614,1.367,0.608,1.584 +NM_002292,0.704,1.268,1.051,0.724,0.849,0.887,0.852,0.737,0.964,0.937,0.826,0.816,0.797,0.707,0.989,1.078,0.824,1.019,0.936,1.144,0.975,1.013,1.201,0.839,1.149,0.849,0.86,0.79,0.789,1.332,0.885,2.639,1.071,1.212,0.793,1.667,0.926,1.086,2.246,1.703,0.885,1.323,0.871,0.858,0.986,0.897,0.831,0.929,0.769,0.98,1.281,1.283,0.933,1.143 +NM_002294,1.6960000000000002,2.395,2.805,1.1749999999999998,2.0069999999999997,2.241,0.99,1.4769999999999999,2.856,1.786,2.335,1.23,1.4020000000000001,1.7189999999999999,2.0629999999999997,2.5860000000000003,1.556,2.253,3.108,1.893,1.425,1.686,2.03,2.497,1.2959999999999998,1.8609999999999998,2.23,1.8900000000000001,1.109,2.508,2.5949999999999998,2.1310000000000002,3.263,3.0309999999999997,1.5470000000000002,1.016,1.948,2.9450000000000003,1.649,1.038,2.745,2.981,1.0270000000000001,1.9300000000000002,1.9449999999999998,2.029,2.1790000000000003,1.7309999999999999,1.0670000000000002,2.026,1.694,1.521,2.537,1.782 +NM_002295,0.886,0.976,1.326,0.797,1.006,1.047,0.462,0.905,1.14,1.111,1.247,1.35,1.067,0.681,0.875,1.417,0.867,1.019,1.59,0.914,0.579,0.944,1.274,1.185,0.624,1.238,1.187,0.947,0.281,1.132,0.961,0.809,1.144,1.183,0.194,1.168,0.986,1.173,1.247,0.672,1.073,0.971,0.541,0.904,1.029,0.797,0.899,1.106,0.975,1.012,0.994,0.936,1.104,1.288 +NM_002296,1.062,0.81,0.996,0.973,0.962,1.083,1.037,0.903,0.847,1.13,1.131,0.992,0.87,1.222,0.991,0.9,0.911,1.041,0.943,1.097,1.039,1.05,0.947,1.061,0.998,0.753,0.921,0.86,1.129,0.997,0.831,0.827,1.075,1.012,0.932,1.32,1.111,1.008,1.134,0.93,0.951,0.888,1.056,1.16,1.015,1.048,1.194,0.878,1.105,1.045,0.877,0.933,1.126,1.284 +NM_002297,1.041,1.051,1.033,0.878,1.006,0.993,1.089,1.049,0.855,0.885,1.037,1.025,1.062,1.071,0.919,0.9,0.98,1.051,1.059,1.001,1.028,1.127,0.938,1.05,1.003,1.079,1.0,1.166,0.974,0.99,0.915,0.938,0.978,0.968,0.978,0.997,0.982,0.948,1.003,0.917,1.042,1.113,0.953,1.055,1.097,1.056,0.983,1.003,1.049,1.04,0.998,0.98,1.139,0.929 +NM_002298,0.679,1.068,1.728,0.993,1.021,0.831,1.122,0.55,1.105,0.943,0.455,0.864,0.702,0.631,0.797,0.58,1.071,0.81,1.042,0.761,0.97,1.032,1.035,0.917,0.679,0.653,2.138,0.909,0.491,1.247,0.867,1.427,1.006,1.178,0.517,0.547,0.877,0.896,1.655,3.623,1.302,1.715,0.643,0.82,1.164,0.694,0.782,0.711,0.582,0.941,0.756,1.807,2.321,2.72 +NM_002299,0.985,1.029,0.956,1.016,0.934,1.043,0.786,0.977,0.965,0.842,0.897,1.056,1.211,0.942,0.981,1.087,0.813,1.036,1.062,0.901,1.09,0.978,1.01,1.121,1.053,0.912,0.847,0.865,1.061,0.947,1.098,1.085,1.001,1.0,0.978,1.203,1.308,1.016,0.874,1.046,0.949,1.11,1.09,1.034,0.919,0.9,0.982,0.898,1.095,1.01,0.935,0.824,1.233,0.993 +NM_002300,0.531,1.378,1.283,0.618,0.825,0.85,1.085,0.652,1.316,1.329,0.76,1.259,0.917,0.557,0.904,0.99,0.719,1.025,1.436,0.443,0.534,1.002,1.657,2.032,1.134,0.635,2.19,0.861,0.501,1.181,1.176,1.117,7.391,1.7,0.275,0.148,0.844,1.276,2.366,1.013,1.11,0.967,0.103,0.141,0.992,0.74,1.305,0.767,1.092,0.815,0.592,0.944,0.997,3.048 +NM_002302,0.952,0.97,1.082,1.051,0.907,1.123,0.955,1.065,0.906,0.993,1.049,0.923,0.956,0.993,1.446,0.837,0.981,1.038,1.241,1.206,1.069,1.049,1.247,1.074,1.187,0.925,1.07,0.907,0.926,0.919,1.054,1.067,1.273,0.849,0.892,1.0,1.004,0.968,0.982,1.283,1.059,0.967,1.13,1.106,1.018,0.844,1.013,0.976,1.165,1.162,0.993,0.977,1.038,0.976 +NM_002303,0.99,1.043,1.023,1.08,0.894,1.014,0.778,1.053,0.957,1.109,0.847,0.907,1.087,0.911,0.945,1.071,1.059,1.165,1.109,1.023,1.053,1.042,0.979,0.857,0.931,0.968,0.992,1.041,0.801,1.035,0.961,0.926,1.188,0.853,0.902,1.002,0.825,0.918,0.938,1.127,0.95,1.178,0.926,0.998,1.034,1.117,0.958,0.983,1.083,1.104,0.878,0.948,1.131,0.93 +NM_002305,0.29,1.348,0.592,0.703,0.366,1.587,1.152,0.302,0.344,0.454,1.073,0.604,0.419,0.277,0.775,1.233,0.37,0.614,0.448,0.77,0.737,0.475,2.067,0.57,0.891,0.369,0.721,0.639,0.345,3.064,0.328,14.98,2.053,3.448,0.213,2.016,0.928,0.891,2.785,4.55,0.926,2.849,0.524,0.913,0.454,0.93,1.126,0.351,0.418,0.344,1.423,4.02,0.878,1.622 +NM_002307,4.429,0.0333,5.202,1.549,4.26,0.0299,0.0291,2.047,4.487,4.661,0.027,4.584,3.8,1.598,2.089,1.083,2.245,4.693,7.016,0.122,2.638,2.259,0.0315,3.55,0.0289,4.086,2.201,4.04,0.0245,0.0399,3.245,0.038,2.091,0.0313,0.135,0.0353,0.0293,7.19,0.0475,0.0479,3.772,0.033,0.0314,0.0361,4.082,0.0328,2.014,6.171,0.0484,4.431,0.806,1.417,3.068,0.442 +NM_002308,0.84,0.963,0.88,1.183,0.845,1.436,1.045,0.877,0.766,0.875,1.11,0.809,1.013,0.754,0.872,1.404,1.163,1.241,1.104,1.088,0.845,0.816,0.965,0.901,1.52,0.854,0.918,0.91,1.424,1.005,0.703,1.032,1.433,1.421,0.837,0.932,1.063,0.941,2.04,0.87,0.874,0.994,0.877,1.038,0.976,0.826,0.745,0.869,1.102,1.022,1.042,0.842,1.036,1.014 +NM_002309,1.118,1.158,0.952,0.814,0.815,1.079,1.142,1.044,0.88,0.792,0.952,0.924,1.075,1.195,0.904,1.041,0.835,1.109,1.021,0.997,0.933,0.979,1.121,1.002,0.905,0.792,0.893,0.85,0.8,1.001,0.941,1.248,1.374,0.972,0.799,1.144,0.882,1.053,1.099,2.09,0.868,0.883,1.134,1.151,0.93,0.894,0.834,0.915,1.125,0.91,1.048,0.999,1.023,1.586 +NM_002311,2.0140000000000002,1.984,2.239,1.838,2.046,2.023,2.333,2.1340000000000003,2.0,1.879,1.914,1.9849999999999999,1.962,2.162,1.751,2.51,2.175,1.851,1.889,2.202,2.0620000000000003,1.838,2.136,2.164,1.7349999999999999,1.885,1.876,2.05,2.007,1.9409999999999998,2.061,2.053,2.5540000000000003,1.8159999999999998,2.032,2.057,1.925,2.1180000000000003,2.068,2.004,2.076,1.9649999999999999,1.792,2.2430000000000003,1.926,2.08,2.069,1.99,2.044,2.0949999999999998,2.001,1.913,2.333,2.056 +NM_002312,0.817,1.029,1.085,0.943,0.901,0.972,0.946,0.815,1.027,1.091,1.165,0.91,0.815,0.897,1.027,1.6,0.917,0.941,0.909,0.913,0.946,0.805,0.977,0.932,0.854,0.831,0.93,0.962,1.004,1.068,0.851,1.023,1.125,0.978,0.893,1.002,1.196,0.943,1.062,0.974,0.972,0.993,1.032,0.914,0.983,1.234,1.0,0.818,1.205,0.938,0.995,0.919,1.259,1.201 +NM_002313,1.205,0.92,1.137,0.955,1.121,1.206,0.761,0.991,1.124,0.916,0.997,1.052,1.108,0.793,1.031,1.044,0.98,1.038,0.956,0.943,1.205,1.44,0.95,1.008,1.039,1.079,1.083,1.149,0.976,0.941,1.253,1.051,0.971,1.008,1.637,1.0,1.083,0.967,0.837,0.779,1.133,1.041,1.387,0.831,0.981,1.086,1.021,1.013,1.091,1.019,0.988,0.994,1.07,1.095 +NM_002314,0.952,0.904,1.056,0.923,0.904,0.926,0.925,1.069,1.032,0.893,0.983,1.013,1.082,1.018,1.021,1.184,0.994,0.924,0.956,1.066,1.099,0.986,1.093,0.987,1.094,1.008,0.84,0.878,0.995,1.086,0.985,0.963,1.151,1.053,1.085,1.012,0.941,1.057,1.01,1.1,1.015,0.883,1.06,0.923,1.096,1.122,1.045,1.113,1.061,1.046,0.949,0.999,1.071,1.0 +NM_002315,0.874,0.931,1.07,0.948,1.006,0.916,0.904,1.327,1.042,1.049,1.182,1.059,0.917,1.11,1.331,0.926,0.948,0.998,0.844,0.939,1.083,0.834,1.088,0.922,0.944,0.852,0.967,0.87,1.248,0.844,1.064,0.997,0.979,1.0,1.112,1.057,1.076,1.042,1.057,0.967,0.821,0.952,0.991,1.181,1.154,1.087,0.845,1.03,0.936,0.982,1.12,1.017,0.982,0.977 +NM_002316,1.076,0.928,1.017,1.036,0.888,1.016,0.938,0.931,0.838,0.945,0.937,0.966,1.137,1.055,1.105,0.933,0.967,1.005,0.973,0.888,1.035,0.992,1.058,0.922,0.89,0.929,1.018,0.966,1.24,0.957,1.059,1.045,0.92,1.067,0.909,1.046,0.87,1.009,1.009,1.305,0.888,1.054,1.062,1.158,0.969,1.182,1.057,1.015,0.999,0.878,0.866,0.969,1.029,0.984 +NM_002317,0.922,0.893,1.51,0.979,1.098,0.893,0.763,0.818,1.072,1.057,0.943,0.973,0.84,0.889,0.79,1.194,1.271,1.038,2.132,1.023,0.927,0.876,1.103,0.881,0.869,0.845,3.258,0.931,1.081,1.0,1.05,1.681,1.404,1.147,0.891,0.918,0.998,1.06,0.916,1.251,1.01,1.023,0.805,0.892,1.178,0.731,1.115,0.99,0.816,1.501,1.053,1.162,1.853,0.839 +NM_002318,0.551,1.214,0.563,0.675,0.533,1.054,0.954,0.519,0.537,0.607,1.229,0.546,0.587,0.472,1.056,1.073,0.44,0.734,0.602,0.947,0.739,0.584,2.183,0.605,0.616,0.587,0.722,0.6,0.591,3.279,0.545,14.94,3.744,1.811,0.524,1.66,1.108,0.655,2.72,10.68,0.565,1.519,0.99,0.964,0.663,1.467,0.932,0.514,0.971,0.624,1.375,4.673,0.623,1.664 +NM_002319,1.046,0.855,0.985,1.065,1.008,0.872,0.923,0.866,1.025,1.011,1.079,0.872,0.993,0.991,0.878,1.042,0.822,0.942,0.84,1.228,0.892,0.834,0.977,0.927,0.865,0.938,1.062,1.01,1.207,1.0,0.984,1.148,1.006,1.032,1.062,1.102,0.931,1.055,1.008,1.694,0.89,0.886,0.948,0.941,1.35,1.013,0.86,1.005,0.98,0.902,0.934,0.976,0.956,1.286 +NM_002332,1.009,0.948,0.974,0.848,0.862,1.436,0.575,0.54,0.786,0.755,1.325,0.768,0.636,0.769,0.905,1.188,0.743,1.01,0.99,0.997,1.057,1.816,1.153,0.895,0.904,1.205,0.849,0.666,0.966,1.726,0.726,2.95,0.799,1.318,0.42,0.782,1.254,1.514,2.146,1.753,0.8,1.629,0.763,1.577,0.773,0.878,0.834,1.296,0.996,0.734,0.888,0.733,0.795,0.678 +NM_002333,0.8,1.735,0.684,0.856,0.774,1.249,0.869,0.572,1.029,0.805,1.138,0.928,0.881,0.613,0.607,0.724,0.676,0.803,0.864,1.264,0.689,0.781,2.558,1.019,1.25,0.88,0.956,1.118,0.595,1.522,0.813,3.584,2.714,1.958,0.557,0.764,1.121,0.952,1.226,1.639,0.991,1.911,0.707,0.625,0.917,0.931,1.001,0.739,0.95,0.884,1.036,1.038,0.882,2.581 +NM_002335,0.485,1.512,0.622,0.823,0.482,1.219,0.911,0.451,0.562,0.472,1.459,0.485,0.426,0.407,0.967,1.312,0.494,0.879,0.608,1.202,0.477,0.639,1.443,0.477,0.809,0.499,0.562,0.476,0.83,2.699,0.55,2.032,0.969,1.728,0.354,1.697,1.293,0.462,1.691,1.62,0.592,1.835,0.983,2.049,0.453,1.114,0.889,0.47,1.567,0.499,1.191,0.651,0.421,0.774 +NM_002336,1.165,1.101,0.881,1.137,0.893,0.961,1.117,1.158,1.069,0.965,0.908,0.94,0.94,1.046,0.93,1.033,0.997,0.915,1.025,1.101,0.996,1.023,1.02,1.109,1.172,1.015,0.881,0.963,1.066,0.93,1.042,0.988,1.057,1.001,1.043,1.043,0.926,1.0,1.011,1.003,0.978,1.203,1.153,1.023,1.14,1.027,0.932,0.875,0.985,0.913,0.981,0.909,0.845,1.115 +NM_002337,0.698,0.894,0.748,0.835,0.701,1.584,0.803,0.454,0.712,0.739,1.481,0.666,0.78,0.428,0.614,1.516,0.741,1.131,0.883,1.289,0.565,0.72,2.062,0.709,0.693,0.998,0.835,0.541,0.779,1.361,0.528,1.654,1.825,1.491,0.305,0.853,0.919,0.731,2.879,0.996,0.669,1.664,0.794,2.367,0.907,1.159,1.002,1.006,0.897,0.818,1.185,0.935,0.96,1.882 +NM_002338,0.959,0.939,0.869,0.997,1.028,0.913,0.884,0.96,0.818,0.943,1.037,0.881,0.942,1.118,0.756,0.979,0.927,0.945,0.788,1.034,0.866,1.091,1.182,1.069,1.036,0.988,0.898,1.057,1.183,1.033,0.981,3.894,1.022,1.182,1.021,1.05,0.839,0.946,1.37,1.129,0.853,1.043,0.941,1.112,0.957,0.961,1.238,0.922,1.042,1.052,1.091,0.92,0.97,1.131 +NM_002339,0.923,0.979,0.984,1.184,1.076,0.974,0.952,0.903,0.912,0.901,0.833,0.893,1.055,0.873,0.751,1.001,1.188,1.014,0.865,0.752,1.137,1.0,0.942,0.871,1.031,1.267,1.063,0.934,0.881,1.17,0.959,1.197,1.027,1.397,0.763,0.872,0.848,1.025,1.716,1.528,1.186,1.282,0.939,0.861,1.066,0.828,0.863,1.095,0.782,1.0,0.842,0.986,1.105,1.312 +NM_002340,1.129,0.779,1.511,1.226,0.913,1.087,0.713,0.539,1.194,1.352,0.979,1.03,0.669,0.688,1.127,2.587,0.822,1.504,1.611,1.356,0.798,1.31,2.033,1.195,0.755,1.73,1.757,0.721,0.54,1.226,0.973,1.152,1.546,1.206,0.38,0.664,1.413,1.056,1.351,0.666,0.91,0.788,0.571,0.659,1.249,1.786,0.812,1.063,0.48,2.156,1.327,0.65,1.323,0.647 +NM_002342,1.207,0.693,0.964,0.862,0.693,0.888,0.555,0.6,0.999,0.884,0.841,0.673,0.745,0.635,0.801,1.611,1.155,0.756,1.331,0.568,1.086,1.224,0.884,1.099,0.892,1.012,1.483,0.578,0.512,1.074,0.822,1.554,2.622,1.27,0.619,0.774,0.711,0.823,2.102,1.105,0.961,0.849,0.581,1.729,1.21,0.712,1.133,1.209,1.119,1.56,0.833,0.906,1.043,1.343 +NM_002343,0.914,15.62,0.497,8.141,2.246,2.852,13.31,0.554,0.88,0.527,0.734,0.768,0.606,0.676,0.731,0.59,1.827,10.32,0.552,2.341,0.507,0.511,0.571,0.532,2.992,0.515,10.1,0.554,0.686,3.853,0.559,0.684,0.523,4.559,0.523,0.66,5.705,0.532,3.35,0.705,1.059,15.22,0.845,0.558,0.608,3.025,0.614,0.576,0.653,2.622,0.879,27.41,4.505,0.641 +NM_002344,0.892,1.237,0.808,1.089,0.8,1.62,1.09,0.858,0.776,0.876,1.387,0.823,0.785,0.754,1.276,1.271,0.918,0.975,0.751,1.234,0.799,0.776,0.898,0.958,0.998,0.814,0.823,0.839,0.773,1.291,0.807,0.849,0.881,2.24,0.899,1.159,1.193,0.876,1.098,1.087,0.849,1.282,0.768,1.03,0.854,1.314,0.933,0.896,0.944,0.775,1.037,0.909,0.884,2.651 +NM_002345,0.173,1.749,0.322,0.863,0.213,2.11,1.138,0.189,0.187,0.229,1.137,0.183,0.193,0.174,1.098,1.278,0.212,0.349,0.21,1.281,0.3,0.173,2.802,0.234,0.732,0.174,0.272,0.297,0.29,5.134,0.166,17.19,3.171,3.411,0.185,0.858,1.025,0.338,3.052,1.74,0.359,2.629,0.848,0.547,0.238,1.415,0.615,0.182,0.542,0.221,1.506,2.319,0.287,1.604 +NM_002346,1.098,1.42,1.046,1.039,0.531,0.777,0.803,0.637,1.094,0.796,0.676,0.598,1.154,0.517,0.739,0.349,1.43,1.018,1.306,0.461,1.682,0.997,0.564,1.074,0.513,1.634,1.016,0.516,0.267,1.15,0.722,2.729,2.995,1.237,0.459,0.868,0.519,0.907,3.989,3.709,0.706,0.641,0.218,6.712,1.036,0.186,0.624,1.361,0.209,1.222,0.74,2.045,1.319,3.279 +NM_002347,1.014,1.054,0.868,1.272,0.976,0.94,1.222,0.777,0.917,0.938,0.956,0.887,0.898,0.8,1.046,1.254,0.978,1.018,0.886,1.18,0.973,0.875,1.046,0.932,2.003,0.922,0.824,0.94,0.686,0.926,0.915,1.306,0.999,3.622,1.149,1.302,1.501,0.928,0.985,1.493,0.867,1.007,1.074,0.911,1.023,1.363,0.958,0.964,1.095,0.944,1.211,0.916,0.966,0.988 +NM_002348,0.95,0.9,1.186,0.884,1.001,0.945,1.208,1.022,0.934,0.939,1.022,0.942,1.216,1.099,0.917,0.988,1.018,1.115,0.666,0.919,0.927,0.903,1.12,0.988,1.067,0.945,0.819,1.021,0.902,0.987,0.926,1.119,0.904,1.011,0.95,0.849,0.949,1.066,1.083,0.958,1.084,1.092,1.211,0.887,1.025,0.928,0.889,0.972,1.097,1.134,0.992,1.009,0.999,1.171 +NM_002350,0.256,0.857,1.279,0.718,0.319,1.498,0.646,0.223,0.302,0.261,1.629,0.31,0.489,0.287,0.73,2.202,1.103,0.729,1.1,1.211,0.274,0.263,1.311,0.364,0.372,0.305,1.049,0.193,0.441,1.03,0.317,1.163,1.555,0.93,0.42,1.397,1.602,0.272,2.171,1.871,0.592,1.865,1.295,1.683,0.615,1.207,0.8,0.241,1.831,0.713,1.666,1.334,0.822,1.062 +NM_002351,0.99,0.949,1.427,0.753,0.951,1.009,1.149,0.929,1.096,0.953,0.849,1.023,1.07,0.888,0.954,0.894,1.001,0.868,0.906,1.026,1.031,0.85,1.007,0.95,1.068,0.854,1.193,0.985,0.776,1.114,0.932,1.02,0.917,1.17,0.918,0.966,0.982,0.792,0.972,0.898,1.032,1.067,0.864,1.002,1.064,0.754,0.853,1.012,0.926,0.896,0.933,0.899,1.114,1.791 +NM_002355,0.681,1.307,0.914,0.78,0.764,1.174,0.768,0.335,0.839,1.063,0.945,0.73,0.691,0.482,0.709,1.208,0.84,0.988,0.767,0.841,0.514,0.751,1.378,1.26,0.726,0.724,1.259,0.696,0.593,1.303,0.671,1.434,2.675,1.511,0.161,1.144,1.293,0.811,1.764,0.962,1.106,1.449,0.539,1.724,1.061,0.825,1.007,0.696,0.83,0.787,0.973,1.267,0.777,1.863 +NM_002356,0.816,0.904,1.124,0.847,1.011,0.957,0.952,1.167,1.274,1.083,0.891,0.824,0.926,0.887,1.055,1.271,0.935,0.929,1.094,1.218,0.864,0.781,1.417,0.956,0.853,0.725,1.062,1.032,0.579,1.081,1.23,1.22,1.073,1.127,1.148,0.759,1.06,0.916,1.126,1.248,1.186,1.004,0.862,0.991,1.073,0.837,1.02,0.713,1.115,0.871,1.066,0.903,1.026,0.797 +NM_002357,2.418,0.535,1.639,1.147,3.053,0.805,0.546,3.459,3.052,1.508,0.621,1.481,2.011,1.561,2.254,1.421,1.55,1.621,2.149,0.689,1.221,2.67,0.763,1.418,0.687,2.814,1.317,3.63,0.593,0.798,2.265,0.763,1.21,0.816,9.096,0.647,0.728,2.975,0.787,0.94,2.1,0.858,1.034,0.817,1.705,0.711,1.3,4.176,0.947,1.472,0.868,0.956,1.951,0.843 +NM_002358,0.724,0.967,1.265,1.012,0.928,1.22,0.892,0.676,1.1,0.965,1.133,0.899,0.942,0.641,1.01,2.326,0.748,1.001,1.079,0.828,0.677,0.915,1.272,1.262,0.608,0.736,1.962,0.94,0.7,0.896,0.905,1.206,3.889,0.948,0.602,0.987,1.073,0.951,1.871,0.923,0.994,0.804,0.653,1.519,0.889,1.044,1.367,0.744,1.472,0.935,1.122,0.897,0.769,1.803 +NM_002359,0.836,0.828,1.116,0.795,0.835,0.878,0.864,0.659,1.328,0.859,0.816,0.594,0.638,1.196,1.001,1.101,1.14,1.016,1.443,0.53,0.584,1.019,0.755,1.152,0.694,0.892,1.157,1.176,0.642,1.234,1.442,1.823,0.866,1.096,1.349,0.894,1.015,1.069,1.249,1.095,1.362,0.793,0.856,1.626,0.977,1.027,1.27,0.87,1.093,0.831,0.706,0.674,0.977,1.396 +NM_002360,1.027,1.114,0.985,0.937,1.028,1.052,1.211,0.954,1.0,0.975,0.846,1.009,1.023,1.095,1.004,1.189,0.999,0.908,1.067,0.859,1.061,1.011,0.958,0.956,1.055,1.11,0.945,0.982,1.216,0.915,0.907,1.127,1.039,0.95,0.915,0.894,1.033,1.045,0.908,0.958,1.031,0.94,1.125,1.004,1.073,1.003,0.986,1.065,1.015,0.935,1.035,0.914,0.956,0.874 +NM_002361,1.031,0.871,1.033,0.871,1.158,1.077,0.963,1.215,1.219,1.22,1.013,1.109,1.097,1.253,0.91,1.153,1.082,1.073,0.998,0.993,0.957,1.011,0.936,1.3,0.967,0.934,1.474,0.943,1.316,0.937,1.192,0.931,0.972,0.943,1.035,1.012,1.002,1.058,0.797,0.929,1.138,1.015,1.049,0.94,1.535,1.065,1.283,1.177,1.067,1.242,0.92,1.032,0.975,1.087 +NM_002362,0.911,0.959,1.063,1.078,0.878,1.026,1.85,1.001,1.034,0.986,0.975,1.001,1.022,0.914,1.008,1.016,1.083,0.921,0.815,0.963,1.011,0.89,0.978,1.046,0.923,0.926,1.099,1.061,0.913,1.121,0.902,1.04,0.832,1.145,1.053,1.007,1.054,0.971,0.938,0.945,0.946,0.988,0.99,1.119,0.955,0.993,0.954,1.105,0.961,1.008,0.925,0.995,1.072,0.916 +NM_002364,0.954,1.099,1.004,1.04,1.043,1.071,0.993,0.867,0.955,1.069,0.95,1.184,0.969,0.836,0.878,1.082,0.992,1.166,0.798,0.962,0.917,1.034,1.024,1.153,1.012,0.92,0.746,1.324,1.302,0.905,1.064,1.12,0.893,1.124,1.1,1.06,0.981,0.949,1.083,1.097,1.04,1.005,0.966,1.152,1.216,1.073,1.036,0.959,0.981,0.945,0.972,0.921,1.094,0.977 +NM_002365,1.016,0.999,0.835,1.105,0.959,0.97,0.905,0.828,1.125,1.126,1.159,1.053,1.116,1.034,0.837,1.188,1.101,1.146,0.784,0.985,1.059,0.82,1.055,1.007,1.113,0.982,0.96,0.97,1.153,1.079,1.091,0.95,1.077,0.785,1.036,0.973,0.996,0.977,0.888,1.185,0.781,0.946,1.085,1.048,1.118,1.123,1.183,1.149,0.933,0.879,1.034,1.294,0.921,0.908 +NM_002367,1.026,1.03,1.024,1.051,1.089,1.063,0.977,1.166,1.02,1.067,0.971,0.938,0.967,0.883,0.945,0.898,0.989,0.875,1.014,0.99,1.123,1.105,0.968,1.13,0.993,1.026,1.053,1.096,0.911,1.141,0.956,0.936,0.935,1.024,0.976,1.043,1.002,1.008,0.932,0.93,0.953,0.953,1.02,0.86,0.948,0.857,0.964,1.004,1.003,1.066,0.837,0.962,1.044,1.099 +NM_002370,0.624,1.396,1.125,0.813,0.911,0.656,0.487,0.28,1.169,1.053,1.121,0.427,0.472,0.68,0.777,1.256,0.877,0.928,1.165,0.854,0.606,0.735,1.289,0.874,0.525,0.798,1.311,0.815,0.418,1.166,0.757,1.781,2.22,1.28,0.2,0.797,1.083,0.767,1.552,0.75,1.363,1.097,1.003,1.147,0.897,0.985,1.091,0.761,1.036,0.667,0.876,1.152,1.002,1.786 +NM_002372,0.523,1.241,1.287,0.489,0.851,1.299,0.793,0.474,0.842,0.868,1.419,0.488,0.406,0.527,1.024,2.532,0.749,1.066,1.186,1.548,0.47,0.591,1.601,0.907,0.559,0.504,1.305,0.631,0.596,1.656,0.785,1.444,1.573,1.613,0.357,0.482,1.882,0.959,1.666,0.412,0.86,1.811,0.807,0.672,0.873,1.436,1.27,0.517,1.441,0.817,1.507,0.744,0.744,1.338 +NM_002373,1.125,1.032,0.952,1.063,1.048,0.986,0.958,1.084,1.062,0.915,1.132,0.991,0.939,0.999,0.921,1.009,0.93,0.881,0.808,0.972,1.001,0.963,1.001,0.947,1.163,0.836,0.932,1.086,0.972,1.089,0.963,1.953,0.907,1.336,0.925,1.011,0.999,1.087,1.155,1.264,0.963,1.035,0.988,1.006,1.008,0.924,0.963,1.07,1.051,0.907,0.966,0.963,0.899,1.147 +NM_002375,1.062,1.12,0.954,0.98,1.019,0.882,0.94,0.787,1.014,0.95,1.07,0.895,0.872,0.816,0.962,1.118,1.111,1.114,1.095,1.122,1.242,1.105,0.963,1.025,0.927,0.878,0.955,1.027,0.851,1.071,1.146,0.968,0.862,1.033,0.956,0.969,0.922,1.053,0.999,0.963,0.948,1.073,0.832,1.045,1.033,0.895,1.064,1.008,1.047,1.036,0.882,0.947,1.056,1.055 +NM_002376,0.737,0.876,1.455,0.732,0.984,1.077,0.699,0.576,1.314,1.02,0.572,0.929,0.748,0.812,1.131,1.408,1.127,0.799,0.985,1.062,0.614,0.961,1.172,1.208,0.577,0.866,1.347,0.956,0.582,1.059,1.17,1.743,1.38,1.082,0.562,0.761,0.868,1.035,1.243,0.98,1.172,0.995,0.818,1.184,1.002,0.851,0.893,0.895,0.993,0.927,1.075,0.777,0.887,1.221 +NM_002377,0.94,0.981,1.017,0.989,0.935,1.118,0.978,1.109,1.114,1.089,0.926,1.083,1.09,1.055,0.756,0.98,1.082,1.102,0.8,0.984,1.022,1.199,0.918,1.025,1.047,0.994,0.963,0.954,1.138,0.981,1.04,1.03,0.972,0.977,1.142,0.9,0.849,0.998,0.98,1.027,0.986,1.042,0.97,0.936,0.993,1.089,0.971,1.062,1.21,1.182,0.989,0.982,0.976,0.947 +NM_002379,0.961,1.131,1.001,1.057,0.91,0.972,0.979,1.053,1.095,0.987,0.967,0.989,0.979,0.935,1.161,1.078,0.842,1.028,0.972,0.925,1.045,0.913,1.013,1.124,0.987,0.943,0.975,1.297,1.152,0.963,1.12,0.965,1.182,1.041,1.093,1.001,0.924,1.092,0.931,0.838,0.982,0.977,1.556,1.018,1.061,0.892,0.987,1.182,0.904,1.027,1.095,0.879,0.857,1.168 +NM_002380,0.916,1.039,1.007,1.004,0.876,1.22,1.119,0.823,0.917,0.973,1.288,0.883,0.899,1.02,1.385,1.738,0.916,0.885,0.893,1.179,0.897,0.841,1.517,0.85,1.027,0.917,1.058,0.869,1.064,1.333,0.941,1.795,0.924,1.362,0.815,0.802,1.196,0.914,1.336,0.976,0.933,1.508,1.599,0.913,0.911,1.591,1.058,0.893,1.216,0.923,1.367,0.996,0.718,1.009 +NM_002383,0.994,0.948,1.066,1.002,1.108,0.997,0.817,1.002,1.092,0.993,0.934,1.029,1.049,1.038,1.128,1.016,0.998,1.184,1.119,0.839,1.056,0.972,1.284,0.934,1.044,0.883,1.015,0.978,0.706,1.017,0.912,0.994,1.174,0.98,1.159,0.974,0.864,0.984,1.168,0.962,1.081,0.96,0.877,1.02,1.027,0.885,1.034,1.177,1.032,0.894,1.024,0.969,0.987,1.084 +NM_002385,0.935,0.845,0.992,1.078,1.161,1.006,1.04,1.216,0.894,1.067,0.947,0.866,1.156,0.876,1.15,1.012,0.952,0.969,0.979,0.929,1.04,0.97,1.046,0.913,0.98,1.04,0.949,0.934,0.797,0.965,1.001,0.92,0.941,0.96,0.984,0.854,0.912,1.128,0.785,0.965,1.089,1.001,1.016,0.822,0.999,1.095,1.247,1.008,1.035,0.936,0.967,1.047,0.914,0.899 +NM_002386,0.891,0.966,1.053,0.759,0.896,0.983,1.128,0.929,1.0,0.87,0.943,0.887,0.749,0.806,0.857,1.147,1.043,0.946,0.831,0.994,0.816,0.961,0.899,1.015,0.817,0.812,0.923,0.927,1.272,1.135,0.871,3.249,1.252,1.285,0.896,1.08,0.97,0.89,1.173,4.505,0.998,1.129,1.036,1.22,0.862,0.976,1.21,0.866,0.902,0.842,1.044,1.044,0.896,1.679 +NM_002387,0.945,0.917,1.191,0.871,1.134,0.949,0.84,1.029,1.073,1.115,0.933,1.076,1.0,0.999,0.96,0.91,1.166,1.0,1.02,0.958,1.125,1.09,0.874,1.272,0.983,1.194,1.232,1.198,0.914,0.996,1.189,0.959,1.041,1.009,1.049,0.949,0.85,1.102,1.036,0.852,1.22,0.835,0.908,0.933,1.126,0.891,1.077,1.055,0.921,1.212,1.017,0.916,1.026,1.008 +NM_002388,0.621,1.239,0.963,0.791,0.766,1.046,0.608,0.349,1.096,0.993,0.722,0.948,0.516,0.615,0.838,1.145,0.652,0.825,1.156,0.766,0.654,0.841,1.527,1.097,0.615,0.748,1.83,0.642,0.492,1.309,0.724,1.422,4.184,1.501,0.101,1.588,1.08,0.952,2.244,1.092,0.974,1.096,0.537,2.404,1.002,0.84,0.871,0.65,1.153,0.886,1.234,1.022,0.998,3.564 +NM_002390,0.971,1.047,0.847,1.144,0.953,1.066,1.026,1.116,0.971,0.925,1.158,0.978,1.0,0.98,1.193,0.932,1.062,1.058,1.061,0.979,1.061,0.895,0.996,0.937,1.001,1.009,0.906,1.048,0.921,1.052,0.92,1.035,0.988,1.073,1.025,0.997,0.965,1.005,0.955,1.036,0.995,1.021,0.935,1.121,0.953,1.034,0.918,1.077,0.947,1.07,1.142,0.927,1.03,0.89 +NM_002391,0.27,0.816,0.257,0.631,0.158,3.899,0.949,0.194,0.297,0.174,2.68,0.187,0.249,0.24,1.104,3.674,0.34,0.522,0.287,1.678,0.2,0.204,1.045,0.316,0.836,0.429,0.29,0.178,0.65,3.15,0.327,1.834,0.783,3.094,0.384,1.096,1.273,0.245,4.59,1.356,0.282,2.416,1.538,3.141,0.24,2.226,1.965,0.399,1.272,0.215,1.464,0.684,0.466,1.835 +NM_002392,0.993,1.021,0.949,1.048,1.098,1.024,1.005,1.025,0.833,0.86,1.124,1.068,1.002,1.056,1.003,0.966,1.069,0.99,0.939,1.074,1.009,1.047,1.116,0.999,1.038,0.935,0.94,1.136,1.053,1.193,1.135,0.984,1.032,0.919,1.04,1.047,1.047,0.997,1.015,0.918,1.071,0.974,1.198,0.969,0.929,1.363,0.89,1.009,1.017,1.066,0.897,0.993,0.817,0.995 +NM_002394,0.815,0.737,1.185,0.729,0.76,0.909,0.553,0.484,0.945,1.567,0.764,0.698,0.572,0.626,0.753,1.107,1.242,1.083,1.464,0.532,0.961,0.789,0.8,1.541,0.685,1.325,1.382,0.573,0.446,1.071,0.9,1.281,3.217,1.4,0.335,1.484,0.928,1.2,2.108,1.274,1.078,0.997,0.764,2.225,1.347,0.696,1.216,0.773,0.616,1.315,0.828,1.161,1.361,1.506 +NM_002395,0.875,0.93,1.218,0.74,1.934,1.848,1.167,1.443,1.907,1.372,1.175,1.513,0.73,0.893,1.744,2.673,0.748,1.481,1.52,0.722,0.534,1.543,1.153,1.83,0.564,0.684,1.232,1.533,0.942,1.458,1.945,0.485,0.918,1.674,1.072,0.477,1.164,2.003,1.527,0.446,1.167,0.724,0.731,0.494,1.266,1.141,1.688,1.055,1.291,1.167,0.999,0.545,0.634,0.475 +NM_002396,0.664,1.053,0.843,1.076,0.767,1.451,1.164,0.55,0.85,0.793,1.528,0.808,0.687,0.648,1.333,3.243,0.67,0.793,0.855,1.165,0.77,0.66,1.276,0.703,1.158,0.633,0.82,0.867,0.601,1.858,0.796,1.078,2.155,1.828,0.731,0.935,1.252,0.66,1.27,0.902,0.917,1.276,1.406,1.385,0.777,1.587,0.873,0.666,1.661,0.777,1.271,0.956,0.848,1.197 +NM_002397,0.736,1.297,0.888,0.946,0.601,1.197,1.95,0.834,0.912,0.828,1.157,0.731,0.672,0.724,0.883,0.938,0.669,0.794,0.764,0.981,0.784,0.741,1.419,0.864,1.192,0.669,0.852,0.934,0.619,2.054,0.62,3.47,1.039,2.015,0.539,1.006,1.159,0.876,1.662,1.438,0.864,2.813,0.731,0.781,0.726,0.938,0.724,0.815,0.651,0.709,1.485,1.699,0.988,1.459 +NM_002398,1.277,1.193,2.399,0.985,1.34,0.792,0.682,0.908,1.972,0.888,0.48,1.286,1.016,1.312,1.233,0.629,1.408,1.46,1.851,1.288,0.874,1.432,0.631,1.709,0.503,1.318,2.856,1.729,0.375,1.029,1.548,2.509,1.34,1.25,0.583,0.447,0.539,1.292,0.996,0.722,2.005,1.495,0.397,0.932,1.45,0.419,0.899,1.305,0.388,1.604,1.578,0.765,0.881,0.857 +NM_002399,1.111,1.076,1.136,1.085,0.872,1.066,0.928,1.25,0.916,0.954,0.936,1.04,0.952,1.175,0.882,1.163,1.117,0.987,1.001,1.118,1.034,0.925,0.934,0.98,1.065,0.924,1.0,1.132,0.794,1.075,0.979,1.12,0.907,0.89,1.088,0.974,0.903,1.258,0.998,0.967,1.147,1.026,0.871,1.015,1.132,0.976,1.06,1.058,0.846,0.961,0.939,1.087,1.014,0.965 +NM_002401,1.25,0.928,1.202,0.986,0.79,0.999,0.798,0.998,0.91,1.117,0.854,0.948,1.17,0.795,0.889,0.938,0.966,0.76,1.265,0.764,1.06,1.113,0.985,1.113,1.015,1.276,1.117,0.857,0.778,0.997,0.951,1.65,1.062,1.035,0.903,0.87,0.852,0.972,1.183,1.185,0.926,1.106,0.863,1.068,1.119,0.799,0.841,1.113,0.812,1.399,0.918,0.916,1.2,1.067 +NM_002402,1.028,1.01,0.997,1.128,1.072,0.938,0.893,0.908,1.159,0.975,0.965,1.128,1.05,1.087,1.027,0.813,0.911,1.027,1.002,0.935,0.989,0.949,1.018,0.94,1.237,0.974,0.929,0.904,0.732,1.102,0.941,0.916,0.973,0.993,1.021,1.191,0.944,0.965,0.916,0.898,1.151,0.863,1.079,1.095,1.007,1.114,0.999,1.116,1.177,1.149,0.944,1.034,1.196,0.952 +NM_002403,0.856,1.156,0.887,0.929,0.914,0.956,0.922,0.761,0.842,0.874,0.995,0.744,0.966,0.997,0.905,0.918,0.884,0.799,0.852,0.977,0.885,0.894,1.324,0.893,0.884,0.783,0.889,0.854,0.602,1.538,0.861,43.08,3.121,1.288,0.869,1.317,0.975,0.917,2.309,7.284,0.938,1.223,0.906,2.822,0.863,1.192,1.517,0.909,0.803,0.806,1.123,3.05,1.211,3.36 +NM_002404,0.421,2.469,0.442,0.958,0.47,2.481,1.724,0.354,0.395,0.536,1.219,0.38,0.417,0.348,1.45,0.983,0.388,0.505,0.331,2.127,0.65,0.357,3.281,0.441,1.655,0.415,0.429,1.025,0.396,7.135,0.37,17.15,1.266,5.497,0.392,0.662,0.974,0.933,2.461,0.636,1.039,6.098,1.556,0.579,0.476,1.92,0.684,0.378,0.546,0.383,3.013,0.799,0.532,1.173 +NM_002406,1.55,0.784,1.071,0.932,1.058,1.0,0.602,1.0,1.842,0.775,0.782,0.62,1.386,0.99,1.144,1.446,1.097,0.895,1.603,0.614,0.964,1.727,0.985,1.201,0.784,1.996,0.997,0.895,0.689,1.177,1.452,1.457,1.826,1.012,2.806,0.551,0.954,1.337,1.273,0.983,0.978,0.989,0.717,1.098,1.215,0.644,1.033,2.113,0.731,0.957,0.818,0.908,0.962,1.654 +NM_002407,0.538,11.08,0.609,3.819,0.635,10.58,6.089,0.715,0.567,0.62,3.629,0.621,1.452,0.55,0.843,1.867,0.594,7.461,0.629,6.468,0.606,0.653,1.192,0.58,6.425,0.676,0.583,0.706,8.24,14.41,0.605,0.975,1.099,39.96,0.601,1.195,12.12,0.565,2.069,0.511,0.581,11.37,1.507,0.53,0.585,1.136,0.636,0.866,1.167,0.608,1.775,0.597,0.494,0.598 +NM_002410,0.903,1.002,1.017,1.05,1.059,0.951,1.062,1.072,0.855,1.033,1.087,1.031,1.021,0.873,0.77,0.974,1.013,0.891,1.167,1.188,1.059,1.105,0.79,1.155,1.032,0.896,0.866,0.991,1.081,0.99,1.108,1.115,1.111,0.964,1.158,0.9,1.017,0.779,0.727,0.905,0.975,1.076,1.208,0.961,0.88,1.034,0.857,0.942,1.08,1.223,1.004,1.089,1.076,1.227 +NM_002411,1.05,0.999,1.103,1.063,0.95,0.975,0.99,1.11,1.168,1.08,1.157,1.009,8.468,1.118,1.086,1.056,1.091,0.972,1.082,0.945,0.987,0.945,0.863,1.062,1.014,1.085,1.072,1.147,1.086,1.023,0.982,1.003,0.994,1.033,1.147,1.049,1.009,1.121,1.063,0.929,1.009,11.11,0.954,0.962,0.982,0.876,0.935,0.931,0.975,1.04,0.852,1.042,0.843,0.926 +NM_002412,0.75,1.619,1.281,0.829,0.939,0.952,0.777,0.42,1.064,1.138,0.611,0.686,0.684,0.541,0.936,1.037,0.964,1.081,1.116,1.53,0.5,0.716,1.957,0.915,0.886,1.145,0.705,0.794,0.568,1.012,0.778,2.478,1.193,2.234,0.247,1.228,0.929,1.018,1.109,0.664,0.691,0.859,0.209,1.383,0.718,1.341,1.329,0.638,1.141,0.752,1.187,1.195,0.673,1.487 +NM_002413,0.911,1.128,1.052,0.98,0.89,1.372,0.573,0.655,1.223,1.052,1.592,0.943,0.857,0.843,1.052,2.304,0.857,1.04,1.511,1.149,0.536,1.028,1.405,0.948,0.405,1.249,0.939,1.122,0.371,1.158,1.028,0.424,1.006,1.412,0.277,0.573,1.477,0.872,1.235,0.451,1.08,1.353,0.79,1.022,0.965,0.971,0.937,0.917,1.102,0.705,1.143,0.537,0.991,0.519 +NM_002414,0.922,0.743,1.6,0.732,1.398,1.373,0.519,1.46,1.476,1.002,0.759,0.916,1.124,0.706,1.031,2.745,1.123,1.045,1.352,0.716,0.302,1.918,1.166,1.589,0.493,1.425,1.329,1.316,0.304,1.161,1.823,2.385,1.691,1.542,0.939,0.443,1.224,1.751,1.568,0.843,1.03,1.38,0.406,0.539,0.953,0.813,0.975,2.128,0.851,0.847,1.704,0.784,0.588,0.951 +NM_002415,0.858,0.894,1.423,0.485,1.506,0.846,0.499,1.263,1.244,1.535,0.723,1.329,1.577,0.585,1.144,1.498,0.908,1.258,1.476,0.613,0.61,1.785,1.149,1.876,0.346,1.605,1.355,1.726,0.21,0.489,1.187,0.842,1.257,0.969,0.775,0.535,0.762,1.334,1.407,0.923,1.006,0.932,0.316,0.751,1.462,0.624,1.039,1.791,0.833,1.151,1.026,0.858,0.853,1.009 +NM_002416,1.296,1.247,1.349,0.796,0.845,1.492,1.244,0.972,0.942,0.963,0.832,0.911,1.006,0.77,4.013,0.997,0.762,1.015,0.887,0.941,0.989,0.863,0.9,1.041,0.93,0.969,1.002,1.058,0.595,0.949,0.955,1.257,1.694,1.218,0.751,0.846,1.167,1.031,0.95,1.076,1.054,1.272,0.736,0.985,1.079,0.735,0.924,1.048,0.893,1.036,0.978,1.279,3.71,5.991 +NM_002417,0.876,1.001,1.023,1.001,1.006,0.986,1.025,0.765,1.01,1.088,0.764,0.972,0.889,1.04,1.091,1.053,0.951,0.96,1.024,0.897,0.925,0.816,1.466,0.966,0.916,1.072,1.141,0.885,0.821,0.946,0.824,0.999,3.318,1.156,0.721,1.259,1.123,1.045,1.671,0.894,0.84,0.898,0.928,1.046,0.791,0.918,1.058,0.629,1.349,0.907,1.175,1.208,0.884,1.727 +NM_002418,0.883,0.972,0.866,1.24,0.906,2.44,0.925,0.998,0.823,0.889,8.062,0.967,0.977,0.85,1.936,1.082,0.948,1.053,0.89,1.954,0.875,0.941,2.214,0.847,0.945,0.881,0.881,1.011,0.885,0.884,0.913,0.963,1.099,1.343,0.858,0.939,4.494,0.94,1.826,1.002,1.032,1.916,2.483,0.961,0.92,21.4,10.99,0.894,2.934,0.925,3.441,1.048,1.011,1.018 +NM_002419,0.773,0.816,0.899,1.05,0.684,1.205,0.814,0.654,0.621,0.845,1.196,0.8,0.836,0.667,0.812,1.498,0.841,0.83,0.937,0.829,1.003,0.947,1.084,0.902,1.031,0.918,0.867,0.712,0.778,1.036,0.699,1.297,1.58,1.08,0.732,1.176,1.122,0.854,2.106,1.248,0.752,1.133,0.944,1.682,0.803,0.997,0.866,0.88,1.068,1.079,0.854,0.804,0.917,1.131 +NM_002420,1.036,1.021,0.912,1.047,1.051,1.022,1.073,0.936,0.932,1.017,1.11,1.108,0.961,0.823,0.949,1.062,0.965,1.096,1.083,0.972,0.917,0.946,0.9,1.059,0.96,0.973,0.866,1.042,0.924,1.085,1.12,0.942,0.978,1.012,0.999,1.126,1.045,1.02,1.145,0.831,1.041,0.981,0.86,1.0,1.04,0.859,0.972,1.057,1.06,0.932,0.96,1.06,0.953,1.016 +NM_002421,0.368,7.947,0.466,1.28,0.424,0.72,1.818,0.399,0.414,0.409,0.612,0.817,0.478,0.402,1.074,1.118,0.448,0.539,0.451,0.567,0.399,0.467,1.614,0.474,1.936,0.446,0.516,0.409,1.217,2.402,0.447,25.79,4.255,2.25,0.473,18.39,5.984,0.394,8.948,72.32,0.347,0.653,7.656,16.59,1.542,1.224,26.85,0.407,2.251,0.415,0.969,22.28,0.493,4.938 +NM_002422,0.94,1.826,0.965,1.307,0.758,0.81,1.049,0.87,0.852,0.84,0.802,0.85,0.734,0.665,0.916,1.123,0.843,0.97,0.793,0.833,0.791,0.879,1.273,0.795,0.973,0.878,0.839,0.816,1.315,1.108,0.85,23.66,24.37,1.614,0.777,5.05,1.238,0.819,25.05,81.18,0.734,1.016,1.531,2.266,2.004,0.818,1.994,0.797,2.187,0.813,1.113,43.27,0.874,3.565 +NM_002423,0.649,1.421,0.568,0.849,0.766,0.993,1.026,0.535,0.674,0.633,1.193,0.618,0.636,1.435,0.689,0.742,0.575,0.541,0.517,1.207,0.718,0.562,2.05,0.67,0.654,0.549,0.628,0.616,0.574,1.329,0.556,10.66,53.92,1.45,0.63,16.15,0.856,0.543,5.591,1.007,1.049,4.638,1.14,17.65,0.551,1.321,1.693,0.633,0.669,0.658,1.845,3.874,0.579,2.597 +NM_002425,1.035,1.041,0.963,0.976,1.198,0.905,0.991,0.959,1.019,1.095,0.985,0.978,1.046,0.94,0.959,0.94,0.895,0.925,0.931,0.907,0.971,0.835,1.069,0.985,0.955,0.94,1.063,0.966,0.947,0.99,0.887,1.71,4.35,1.001,0.999,1.461,0.84,1.012,2.868,5.389,0.978,0.98,1.016,2.141,0.948,0.957,4.343,0.974,1.217,0.862,0.986,5.054,0.999,1.357 +NM_002426,0.728,1.161,0.994,0.834,0.689,0.731,0.808,0.856,0.694,0.852,0.717,0.768,0.607,0.63,1.285,1.022,0.929,0.732,0.897,0.735,0.642,0.66,2.148,1.136,0.767,0.684,1.777,0.765,0.661,1.179,0.656,2.111,3.176,0.834,0.656,1.68,1.291,0.621,2.227,11.2,0.83,0.769,0.792,1.35,1.018,1.381,1.626,0.718,1.133,1.103,0.978,9.606,1.322,5.022 +NM_002427,0.956,0.928,0.9,1.035,0.845,1.003,1.142,1.023,1.011,1.229,0.928,0.955,0.981,1.164,0.835,0.849,0.962,1.019,0.897,0.878,0.867,0.937,0.964,0.986,0.972,1.062,1.034,0.928,1.057,1.034,0.977,1.654,0.974,1.083,1.103,1.119,1.058,0.958,1.05,1.047,0.851,0.968,1.0,0.989,1.02,1.111,0.976,0.95,1.087,0.953,1.108,1.024,0.909,1.012 +NM_002428,0.592,1.168,0.588,0.958,0.633,1.576,1.265,0.675,0.656,0.571,1.432,0.665,0.594,0.517,1.074,2.308,0.662,0.918,0.591,1.117,0.501,0.59,1.51,0.53,0.997,0.59,0.698,0.658,1.171,1.852,0.545,1.753,0.811,1.59,0.583,0.766,1.594,0.665,2.087,0.915,0.683,1.337,1.434,1.147,0.575,1.442,1.168,0.623,1.759,0.621,1.603,1.026,0.558,1.682 +NM_002430,1.247,0.993,1.079,0.927,1.047,0.9,0.816,1.019,1.215,1.068,0.878,0.934,0.947,0.993,1.178,0.858,1.058,0.995,1.18,0.89,1.053,1.084,0.996,0.875,0.926,1.075,1.008,1.342,0.894,0.943,1.03,1.492,1.2,1.012,0.922,0.996,0.885,1.27,0.976,1.052,1.156,1.121,0.919,1.069,1.085,1.056,0.953,1.112,0.81,1.006,0.957,1.092,0.951,1.194 +NM_002431,0.941,1.047,1.52,0.954,1.002,1.205,0.83,0.64,1.147,1.065,0.804,0.934,0.85,0.893,0.88,1.073,0.862,0.956,1.17,1.172,0.745,0.89,1.016,1.1,0.744,0.937,1.334,0.846,0.712,1.088,1.171,1.063,1.681,1.228,0.547,1.021,0.881,1.021,1.482,0.849,1.223,0.854,0.942,1.557,0.969,0.912,0.968,0.694,0.913,0.971,1.1,0.833,1.007,1.73 +NM_002432,0.842,0.998,1.299,2.37,1.051,0.884,0.799,0.902,1.102,0.844,0.875,0.873,0.807,0.722,1.092,0.913,0.79,0.658,0.932,0.819,0.829,1.016,1.121,1.002,0.728,0.855,1.88,1.108,0.579,1.08,0.863,2.222,1.385,1.037,0.723,0.902,0.886,0.89,4.411,16.48,0.91,2.282,1.114,1.363,1.243,0.802,1.275,0.824,0.94,0.893,0.932,4.917,1.259,2.923 +NM_002433,1.04,1.146,0.821,1.093,0.973,1.086,0.973,0.877,0.961,1.107,1.001,1.04,0.979,0.995,0.942,1.0,0.955,1.048,0.896,0.815,1.03,1.106,0.886,0.93,1.076,1.088,0.994,1.109,1.113,1.085,1.222,0.86,0.918,0.892,1.02,0.979,0.975,0.955,0.881,0.96,0.981,0.857,1.021,1.002,1.085,0.997,1.024,0.917,1.012,1.167,0.949,1.055,0.892,0.929 +NM_002434,0.683,1.026,0.987,0.958,0.747,1.441,0.733,0.638,0.848,0.805,1.28,0.896,0.802,0.598,0.739,1.352,0.804,1.028,1.168,1.013,0.814,0.781,1.262,0.848,0.882,0.837,0.986,0.718,0.836,1.281,0.702,1.686,1.172,1.616,0.495,1.203,1.041,0.934,1.535,0.975,0.851,1.256,0.67,1.356,0.897,1.058,1.102,0.816,0.919,0.774,1.062,0.97,0.734,0.913 +NM_002435,0.858,1.099,0.97,0.916,0.979,1.685,0.949,0.905,1.001,0.861,1.301,0.676,0.814,0.792,1.065,1.591,1.114,1.001,1.395,0.861,0.851,1.083,1.129,0.944,0.893,1.086,0.905,0.843,0.694,1.299,0.842,0.762,1.038,1.389,1.064,1.18,1.229,0.963,1.265,0.698,0.863,1.286,0.863,0.769,0.82,1.131,0.809,1.071,1.286,1.031,1.116,0.623,1.187,0.915 +NM_002436,0.879,1.012,1.064,1.123,1.074,0.793,0.684,0.882,1.192,1.054,0.749,1.045,0.887,0.998,1.187,1.775,0.791,0.777,1.144,0.825,0.93,0.905,0.917,0.922,0.908,1.001,0.996,0.911,0.547,0.916,0.96,1.555,1.034,1.186,0.715,0.619,2.04,1.12,1.033,1.701,1.015,1.101,1.018,0.797,0.956,0.873,1.424,0.972,1.183,0.965,0.895,1.351,0.973,1.453 +NM_002437,0.826,0.898,1.028,0.846,0.921,1.26,0.618,0.63,1.098,1.011,1.001,0.857,0.835,0.78,1.015,1.332,0.999,0.88,1.431,0.805,0.734,0.706,1.309,1.051,0.712,0.997,1.157,0.763,0.432,1.049,0.931,1.359,2.002,1.35,0.313,0.799,0.875,0.79,1.203,1.045,0.893,1.03,0.585,1.6,0.88,0.812,0.874,0.669,0.878,0.91,0.945,0.769,1.098,1.408 +NM_002438,0.761,1.144,1.013,0.953,0.858,0.929,1.102,0.907,0.792,0.971,1.053,0.97,0.844,0.964,0.849,0.968,0.827,1.022,0.902,1.125,1.116,0.906,1.141,0.847,1.143,1.016,0.881,0.917,0.963,1.264,0.839,1.087,0.93,1.143,0.833,0.851,0.947,0.867,0.944,0.939,0.941,1.314,1.644,0.812,0.932,1.011,0.869,0.847,0.942,0.994,1.021,1.145,1.005,1.464 +NM_002440,1.07,1.103,0.911,1.097,1.073,0.895,0.856,0.876,1.037,1.0,1.029,1.139,0.924,0.975,0.927,0.991,1.028,1.092,0.911,1.034,0.729,0.976,0.963,1.003,1.077,0.956,1.027,0.98,0.857,0.984,0.891,0.991,0.803,0.945,0.907,0.925,0.895,1.074,1.167,1.053,1.047,0.875,0.784,1.003,1.019,1.095,1.001,1.045,0.897,1.023,0.951,0.968,0.78,1.028 +NM_002441,0.991,0.993,0.997,1.142,0.995,0.985,0.904,0.93,1.034,1.216,0.965,1.044,1.056,0.895,0.751,1.002,0.921,1.019,1.067,1.176,1.06,1.004,1.186,1.168,0.998,1.068,0.836,1.014,0.892,0.938,0.981,0.949,0.884,1.106,0.853,0.866,0.939,1.011,1.007,1.214,1.027,0.935,0.991,0.931,1.0,1.112,1.057,0.896,0.995,1.013,1.034,1.068,0.98,1.057 +NM_002442,0.826,1.195,0.866,0.99,0.879,1.182,0.965,0.912,1.004,0.779,1.123,0.915,0.916,0.955,0.947,1.602,0.82,0.904,0.835,1.139,0.86,0.914,1.111,1.017,1.429,0.869,1.155,0.831,0.801,1.756,0.876,1.411,0.897,1.337,0.772,0.934,1.644,1.077,0.785,1.545,0.843,1.121,0.936,0.726,0.964,1.476,1.014,0.721,2.324,0.817,1.338,0.942,1.131,1.28 +NM_002443,0.694,38.64,0.819,1.379,0.704,33.72,9.003,0.605,0.728,0.733,0.745,0.658,0.835,0.804,0.678,7.463,0.812,7.808,0.814,13.52,0.692,0.905,2.823,0.77,7.326,0.856,0.78,0.753,19.67,25.13,0.818,5.392,1.87,48.06,0.797,0.737,7.14,0.588,0.803,0.773,0.833,28.8,2.369,0.913,1.173,2.889,0.779,0.763,0.853,0.853,0.757,1.311,0.843,0.851 +NM_002444,0.859,0.85,2.214,0.78,1.114,0.606,0.831,0.48,0.892,1.941,0.526,1.098,0.619,0.653,0.621,0.781,1.415,1.076,1.935,0.542,1.054,0.65,0.912,1.647,0.7,0.728,2.25,0.675,0.408,1.058,0.767,3.002,2.168,1.15,0.331,0.812,0.55,1.342,1.508,2.269,1.276,1.225,0.516,1.996,1.575,0.496,1.092,0.645,0.62,2.037,0.839,3.267,2.07,1.208 +NM_002445,1.023,0.978,0.982,0.976,0.988,0.981,1.019,0.963,0.909,1.03,0.944,0.937,0.948,0.933,0.982,0.955,0.983,0.873,0.829,0.998,0.936,0.954,1.0,1.0,1.096,1.119,0.932,1.039,0.909,0.971,0.945,0.963,0.912,0.944,1.105,0.897,0.888,1.016,0.949,1.038,0.962,1.028,1.185,0.977,1.013,0.931,0.945,1.002,0.873,1.05,0.876,1.088,1.157,0.973 +NM_002446,1.054,0.905,0.953,1.012,1.042,1.022,0.831,1.033,0.951,0.925,1.107,1.087,0.922,0.987,0.959,1.142,1.001,1.049,0.937,0.983,0.977,0.955,0.983,1.104,1.197,1.058,1.131,1.136,0.793,0.94,0.962,1.008,0.833,0.92,0.992,0.896,1.086,0.98,0.981,1.017,1.034,1.058,1.008,1.063,1.092,0.945,1.079,1.05,0.938,1.092,1.012,1.172,1.033,0.952 +NM_002447,0.526,0.99,0.59,1.31,0.655,1.475,1.037,0.523,0.747,0.752,1.27,0.606,0.642,0.619,0.989,1.71,0.642,1.109,0.645,1.419,0.692,0.662,1.615,0.744,0.958,0.72,0.686,0.635,1.037,1.633,0.677,0.981,1.037,1.557,0.591,1.334,1.281,0.673,2.859,0.87,0.714,1.345,1.064,1.64,0.726,1.224,0.841,0.64,0.996,0.58,1.419,0.873,0.761,1.577 +NM_002449,0.99,1.182,0.833,1.083,1.076,1.261,0.995,0.791,0.859,0.968,1.025,0.968,0.933,0.741,0.763,1.044,0.899,1.007,0.869,1.032,0.882,0.945,1.166,0.886,0.937,0.935,1.056,0.99,0.884,1.54,0.789,1.671,2.75,1.116,0.978,0.838,0.999,0.94,1.292,1.088,1.082,1.124,0.916,1.214,1.037,1.107,1.127,1.022,1.103,0.783,0.935,0.875,0.854,1.135 +NM_002452,0.986,0.567,1.179,0.678,0.955,0.717,0.489,0.652,1.087,1.242,0.7,1.269,1.002,0.625,0.866,1.555,0.961,1.026,2.038,0.526,0.875,1.04,1.561,1.433,0.511,1.244,1.85,0.792,0.374,0.614,0.766,1.282,2.847,0.822,0.253,1.647,0.787,1.129,1.454,1.088,1.07,0.636,0.675,2.073,1.235,0.593,1.242,1.097,0.964,1.12,0.901,1.229,1.318,0.927 +NM_002453,0.625,1.14,1.239,0.732,0.876,1.549,0.692,0.653,1.261,0.844,1.05,0.858,0.681,0.585,1.106,1.817,0.962,0.787,0.883,1.285,0.534,0.989,1.586,1.149,0.704,0.558,1.784,0.775,0.554,1.337,0.994,0.919,3.388,1.167,0.4,0.705,1.042,0.891,1.571,0.828,1.057,1.091,0.713,1.006,0.836,1.337,1.067,0.662,1.568,0.679,1.104,0.674,0.582,2.704 +NM_002454,1.4580000000000002,2.213,2.132,1.643,1.936,2.341,1.6480000000000001,1.549,2.424,2.1790000000000003,2.435,2.098,1.659,1.6199999999999999,1.996,2.45,1.929,2.1029999999999998,2.005,2.0060000000000002,1.571,1.9929999999999999,2.4699999999999998,1.976,1.512,1.524,1.884,1.685,1.723,2.0700000000000003,1.954,2.6660000000000004,4.058999999999999,2.661,1.546,1.642,1.9529999999999998,1.884,2.216,2.683,2.0010000000000003,2.1929999999999996,1.6179999999999999,1.609,2.19,2.236,1.8439999999999999,1.787,2.099,1.4969999999999999,2.231,2.007,1.542,2.5309999999999997 +NM_002455,0.797,0.946,0.891,0.894,0.888,0.961,0.556,0.721,1.199,0.83,0.779,0.765,0.785,0.65,0.873,1.545,0.933,0.929,1.272,0.962,0.775,0.816,1.13,1.001,0.82,1.105,1.009,0.696,0.634,0.976,1.0,1.807,1.642,1.147,0.785,1.954,0.994,0.828,1.772,1.242,0.882,1.098,0.594,1.778,1.004,0.827,1.002,1.017,1.112,1.036,0.921,0.981,1.073,2.552 +NM_002456,0.493,2.178,0.417,1.4,0.209,2.388,1.072,0.2,0.643,0.195,1.232,0.158,0.389,0.437,0.353,0.916,1.403,2.347,0.424,1.399,0.192,0.561,0.838,0.195,1.741,0.55,0.399,0.347,2.468,4.578,0.389,2.276,0.546,2.912,2.246,0.974,2.136,0.406,3.391,0.248,0.606,2.601,0.638,0.823,0.539,0.627,0.698,0.756,1.191,0.42,1.926,1.041,0.444,1.402 +NM_002457,0.869,1.114,0.873,2.485,0.967,2.802,0.825,0.975,0.935,0.808,9.164,0.841,0.771,0.93,18.16,31.29,1.0,0.926,0.871,24.08,0.767,0.885,24.29,0.869,0.914,0.949,0.803,0.922,1.04,0.912,0.928,1.009,1.732,1.137,0.845,4.419,5.55,0.952,4.992,0.903,0.794,14.24,6.146,0.855,1.582,9.919,6.421,0.856,32.4,0.986,13.24,2.104,1.0,1.87 +NM_002460,1.013,0.948,0.917,1.003,0.891,1.089,1.923,0.965,1.022,0.865,0.979,0.832,1.032,0.803,1.015,1.012,0.972,1.107,1.063,1.059,0.832,0.974,1.053,0.889,0.943,0.993,1.097,1.099,1.152,0.985,0.935,1.0,1.079,1.145,0.963,0.944,1.01,0.977,1.144,1.143,0.969,2.034,1.016,0.877,0.858,1.025,0.885,0.996,0.986,0.904,1.205,0.857,1.114,1.502 +NM_002462,1.464,1.164,2.487,0.75,0.606,1.325,2.118,0.344,0.831,0.658,1.308,0.555,0.398,0.628,1.351,0.721,2.847,1.198,1.032,0.711,0.889,0.559,1.19,0.671,0.413,0.766,1.08,0.707,0.599,0.933,0.743,0.798,4.322,1.89,0.114,0.534,2.238,0.747,2.003,1.052,1.099,1.002,0.376,4.187,0.934,0.893,0.63,0.694,0.421,1.395,0.799,1.868,1.859,4.763 +NM_002463,1.062,1.477,1.152,1.114,0.697,1.932,3.334,0.594,0.763,0.646,0.853,0.733,0.554,0.63,1.141,0.65,1.096,0.933,0.999,0.602,0.811,0.625,0.985,0.76,0.937,0.764,0.865,0.656,1.419,1.274,0.677,1.192,5.034,2.727,0.472,1.228,1.633,0.688,1.945,1.631,0.744,1.307,0.565,3.437,0.856,0.677,0.785,0.718,0.529,0.885,0.875,1.652,0.906,3.09 +NM_002465,0.789,4.238,0.91,3.053,0.817,1.724,1.337,0.766,0.876,0.839,1.003,0.887,0.951,0.908,1.692,0.89,0.994,1.575,1.164,1.498,0.947,0.931,1.148,0.91,1.037,0.837,0.941,0.82,1.091,1.797,0.801,0.881,0.906,7.164,0.947,0.969,1.433,0.83,3.387,0.934,0.923,1.852,1.069,0.915,0.83,0.98,1.351,1.081,0.874,0.938,1.033,0.822,1.011,1.024 +NM_002466,0.863,1.166,0.899,1.229,0.748,1.101,0.803,0.587,0.867,0.997,0.898,0.78,0.897,0.624,0.81,1.232,0.62,1.003,1.358,0.763,0.712,0.78,1.992,1.086,0.798,0.867,1.455,0.767,0.651,1.141,0.816,2.358,5.988,0.955,0.51,2.735,0.897,0.768,3.5,2.29,0.79,0.811,0.762,6.825,1.181,0.899,1.457,0.932,1.715,1.153,1.03,2.324,0.959,5.152 +NM_002467,0.946,1.728,1.83,0.662,1.216,0.787,0.528,0.46,1.473,1.209,0.625,0.987,0.656,1.0,1.109,0.802,1.182,0.716,0.945,0.612,0.591,0.879,1.469,1.266,0.348,0.756,1.623,1.137,0.23,0.569,1.476,0.898,3.537,0.885,0.199,0.903,0.75,1.216,1.012,1.002,1.229,1.005,0.873,1.015,0.996,0.657,1.165,0.529,1.133,0.922,1.012,1.242,1.572,2.868 +NM_002468,0.888,0.805,0.945,0.94,0.892,1.605,1.045,0.785,1.16,1.129,1.078,0.841,0.928,0.638,0.921,1.362,1.054,1.224,1.081,0.757,0.834,0.938,1.043,1.051,0.631,1.029,1.145,0.733,0.857,1.589,0.899,0.773,1.093,1.388,1.427,0.745,1.296,0.925,1.652,0.695,1.004,1.023,0.767,0.975,1.074,0.816,0.878,1.179,1.006,1.096,0.93,0.881,0.976,1.406 +NM_002469,0.98,0.999,1.032,1.024,0.934,0.949,0.997,0.963,0.947,1.298,1.064,1.024,1.05,0.958,0.941,1.063,0.864,1.017,1.003,0.883,0.83,1.061,0.939,1.027,1.018,0.904,1.096,1.038,0.925,1.013,1.031,1.042,1.012,0.96,0.99,0.989,0.997,0.869,1.051,0.899,0.974,0.978,0.755,1.109,0.962,1.309,1.004,0.816,1.047,1.046,1.05,0.97,1.054,1.114 +NM_002470,0.919,0.939,1.238,0.946,1.074,0.951,0.99,0.968,1.024,1.081,0.945,1.123,1.046,1.22,1.062,1.008,0.895,1.001,1.041,1.034,0.905,1.032,1.142,1.108,0.997,1.036,0.892,0.876,1.007,1.022,1.125,1.033,1.104,0.901,1.005,0.975,1.116,0.972,1.098,1.018,0.963,0.929,0.963,1.182,0.958,0.935,0.863,0.978,0.889,0.983,0.998,0.977,0.995,0.985 +NM_002471,0.927,1.041,1.141,0.963,0.978,0.915,0.799,1.06,1.054,0.853,0.904,1.002,0.996,0.989,0.993,0.992,0.991,0.846,1.067,1.057,1.159,1.001,0.948,0.985,0.977,1.02,1.002,0.986,0.961,1.016,0.974,1.028,1.016,1.07,1.156,1.056,0.973,0.985,0.934,1.123,1.049,0.845,0.853,0.876,0.991,1.101,1.011,0.994,1.053,0.908,0.99,0.917,0.991,0.997 +NM_002472,1.073,1.093,1.098,1.101,0.899,0.942,0.896,1.046,1.017,0.87,1.008,1.013,0.988,0.824,1.124,0.911,0.954,0.907,1.028,0.862,1.049,0.919,1.012,0.977,1.075,1.04,1.032,1.03,0.721,0.792,0.994,0.969,0.885,1.177,1.006,1.097,1.155,1.07,0.838,1.043,0.926,0.988,0.795,0.968,0.988,1.007,1.018,1.261,0.933,0.954,1.071,0.993,0.841,0.955 +NM_002473,0.589,1.104,1.331,0.551,0.746,0.872,0.573,0.198,0.806,1.0,1.128,0.631,0.267,0.471,0.777,0.966,0.818,0.97,0.932,1.017,0.551,0.494,1.174,0.58,0.56,0.644,1.043,0.541,0.465,1.217,0.61,1.869,1.513,1.149,0.0961,0.751,1.178,0.907,1.981,1.28,0.847,1.201,0.931,0.959,1.116,1.045,0.807,0.558,1.12,1.001,1.202,1.182,1.38,1.238 +NM_002474,0.128,2.325,0.136,0.671,0.144,2.304,1.31,0.14,0.151,0.24,7.248,0.14,0.218,0.146,2.231,2.881,0.141,0.324,0.164,1.328,3.13,0.159,6.01,0.21,2.044,0.143,0.157,8.232,0.21,6.881,0.146,6.127,0.939,10.47,0.144,0.423,1.172,3.846,2.062,0.544,12.85,12.21,1.893,0.258,0.149,1.352,0.712,0.152,0.342,0.145,5.636,1.637,1.473,0.444 +NM_002475,0.998,0.734,1.766,0.683,1.32,0.802,0.518,0.84,1.247,1.415,0.72,1.691,1.382,0.863,0.851,1.009,0.95,1.072,1.737,0.716,0.602,1.143,1.037,1.723,0.567,1.184,1.647,1.266,0.277,0.837,1.147,1.912,1.087,1.272,0.28,0.798,0.626,1.308,0.882,1.506,1.349,1.04,0.365,1.593,1.397,0.626,1.065,1.572,0.592,1.066,0.745,0.749,1.348,1.65 +NM_002476,0.928,0.956,0.815,0.967,1.231,0.999,0.988,1.004,1.019,0.947,1.041,1.019,0.876,1.246,1.344,1.374,0.886,1.029,0.941,1.217,0.88,0.94,1.022,0.919,1.007,0.974,0.989,0.882,1.299,1.105,0.996,1.075,0.935,1.074,1.101,0.872,1.515,0.948,1.09,0.916,1.068,1.188,1.43,0.934,0.911,1.153,0.898,1.011,0.864,0.885,1.046,1.134,1.096,0.939 +NM_002477,0.987,1.023,1.394,0.809,1.187,1.014,0.593,1.172,1.227,1.163,1.167,1.328,1.369,1.035,1.172,1.339,1.171,1.016,1.824,0.822,1.137,1.451,0.846,1.636,0.756,1.364,1.129,1.262,0.566,0.835,1.147,0.779,1.856,1.156,0.61,0.666,0.818,1.911,0.791,0.795,1.572,0.855,0.694,0.789,1.347,1.016,0.952,1.346,0.838,0.991,0.841,0.782,1.211,1.776 +NM_002478,0.962,0.941,0.92,0.933,1.088,1.016,0.933,1.252,0.943,0.927,1.096,0.93,0.959,1.017,1.025,0.866,0.889,0.913,0.942,0.859,1.003,0.938,0.994,1.063,1.228,0.9,1.043,0.993,1.464,1.032,1.011,0.967,0.968,0.978,1.103,1.04,1.021,1.051,0.892,1.163,0.994,1.033,1.194,0.989,0.978,0.99,0.967,0.956,0.999,0.985,1.009,0.954,1.015,1.063 +NM_002479,0.97,1.028,0.906,0.93,1.123,0.947,1.153,1.144,1.057,1.109,0.839,1.05,1.024,0.976,1.021,0.996,1.07,0.975,0.916,1.155,0.84,0.888,0.903,1.003,1.118,0.887,1.153,1.117,0.916,1.052,1.008,1.063,1.089,1.039,0.929,0.989,1.142,1.071,1.082,1.005,1.036,0.943,1.097,0.843,1.006,0.994,1.061,0.965,1.019,0.932,0.986,0.963,1.035,1.05 +NM_002480,0.777,0.922,1.233,0.849,0.906,1.001,0.891,0.776,1.193,0.81,1.028,0.92,0.819,0.809,0.84,1.203,0.999,1.035,0.958,1.043,0.801,0.901,1.133,1.103,0.854,0.74,1.003,1.133,0.752,1.132,1.128,1.119,1.221,1.264,0.742,0.983,1.184,0.844,1.071,0.944,1.182,1.18,0.899,0.85,1.078,1.172,0.964,0.833,1.083,0.974,1.163,1.034,0.91,1.364 +NM_002484,0.679,1.038,0.987,0.902,0.65,0.96,0.615,0.426,0.917,0.946,1.107,0.843,0.676,0.592,0.787,1.207,0.756,0.823,1.073,1.011,0.599,0.717,1.229,0.926,0.997,0.823,1.062,0.668,0.532,1.101,0.604,1.027,1.936,1.528,0.241,1.128,1.019,0.633,1.552,0.631,0.965,1.248,0.756,1.024,0.889,1.097,0.951,0.691,0.948,0.794,1.095,1.223,1.073,1.266 +NM_002485,0.674,0.868,1.067,0.883,0.734,1.241,0.796,0.795,1.164,0.995,1.185,0.937,0.748,0.789,0.999,1.431,0.802,0.767,0.995,1.036,0.646,0.666,1.456,0.903,0.749,0.839,1.107,0.856,0.46,0.92,1.051,1.103,2.888,1.35,0.551,1.158,0.952,0.735,1.245,0.962,0.938,1.077,0.75,1.493,0.94,1.425,0.765,0.683,1.689,0.768,1.188,0.827,1.134,2.133 +NM_002486,0.65,0.899,1.021,0.733,0.762,1.183,0.638,0.517,1.01,0.987,1.156,1.029,0.535,0.602,1.009,2.015,0.755,0.935,1.211,0.733,0.568,0.707,1.504,0.911,0.567,0.572,1.136,0.701,0.669,1.225,0.798,1.105,2.468,1.089,0.28,0.884,1.265,0.691,1.351,1.044,0.942,1.062,0.739,1.598,0.947,1.306,1.068,0.713,1.208,0.699,1.06,0.903,0.88,1.752 +NM_002487,1.244,0.734,1.984,0.53,1.531,0.689,0.717,0.833,1.479,1.269,0.481,1.336,1.039,1.006,0.917,0.818,1.559,0.701,1.268,0.654,0.829,1.395,0.874,1.68,0.78,1.26,2.305,1.445,0.458,1.222,1.259,3.868,1.419,1.826,0.348,0.489,0.591,2.148,0.882,0.968,1.951,1.44,0.482,0.356,1.765,0.627,1.027,1.034,0.426,1.486,0.7,0.907,1.971,0.699 +NM_002488,0.566,1.178,1.179,0.669,0.842,1.492,0.655,0.683,1.313,0.851,1.23,1.032,0.732,0.693,1.06,2.044,0.762,1.124,1.142,1.26,0.542,0.651,1.31,1.154,0.665,0.847,0.845,1.021,0.421,1.137,1.038,1.103,3.886,1.851,0.506,0.684,1.51,0.866,1.212,0.457,1.093,1.49,0.874,0.66,0.909,1.086,1.058,0.739,0.928,0.673,1.082,0.811,0.915,1.422 +NM_002489,0.433,1.06,1.105,0.536,0.917,1.699,0.753,0.901,1.215,0.848,1.195,1.138,0.787,0.492,1.039,2.036,0.762,1.079,1.052,1.042,0.338,0.879,1.358,1.11,0.707,0.445,1.335,0.783,0.519,1.601,0.849,1.291,1.89,1.685,0.0993,0.788,1.419,1.038,1.102,0.839,0.905,1.046,0.669,0.861,0.826,1.123,1.281,0.664,1.13,0.607,1.308,0.915,0.616,1.581 +NM_002490,0.574,1.018,0.906,0.658,0.775,1.931,0.567,0.61,1.212,0.834,1.552,1.0,0.7,0.595,1.084,2.007,0.574,0.766,1.167,1.111,0.514,0.886,1.386,0.996,0.708,0.888,1.0,0.925,0.364,1.195,0.916,1.121,1.149,1.527,0.257,0.921,1.248,0.793,1.468,0.481,1.067,1.28,0.649,0.71,0.786,1.163,0.716,0.65,1.167,0.597,1.184,0.762,0.731,2.146 +NM_002492,0.517,1.296,1.098,0.588,0.889,1.307,0.664,0.469,1.072,0.977,1.564,1.054,0.698,0.506,0.837,1.922,0.828,1.092,1.201,1.032,0.364,0.778,1.35,1.091,0.561,0.726,1.511,1.073,0.407,1.503,0.894,1.177,1.463,1.393,0.216,0.857,1.708,0.848,1.153,0.539,1.044,1.204,0.791,1.011,0.958,1.172,0.827,0.542,1.21,0.613,1.246,0.786,0.852,2.228 +NM_002494,0.598,0.945,1.405,0.672,0.916,1.274,0.675,0.658,1.201,0.977,1.353,0.945,0.653,0.593,1.127,2.445,0.883,1.064,1.736,1.008,0.736,0.79,1.181,1.097,0.611,0.737,1.114,0.984,0.393,0.861,0.979,1.267,2.158,1.687,0.251,0.618,1.26,0.884,1.169,0.513,1.137,1.137,0.751,0.807,1.05,1.133,1.177,0.756,1.141,0.915,1.331,0.708,0.995,1.528 +NM_002495,0.558,0.849,0.98,0.738,0.981,1.449,0.632,0.579,1.485,0.932,1.991,0.668,0.737,0.679,1.222,2.132,0.729,0.986,1.331,1.188,0.657,0.841,1.212,1.211,0.67,0.92,1.579,0.963,0.281,1.162,0.98,1.465,3.913,1.943,0.295,0.614,1.825,0.697,1.14,0.392,1.085,1.219,0.891,0.834,0.836,1.256,1.068,0.668,1.301,0.714,1.282,0.669,0.991,1.131 +NM_002496,0.628,1.107,0.888,0.684,0.769,1.311,0.632,0.569,1.079,0.952,1.218,1.169,0.733,0.496,0.914,1.809,0.783,1.084,1.363,1.064,0.427,0.724,1.43,1.082,0.871,0.734,1.104,0.87,0.423,1.672,0.839,1.376,3.116,1.418,0.0843,1.625,1.138,0.719,1.369,0.702,1.003,1.131,0.719,1.19,0.961,1.013,1.067,0.724,1.165,0.701,1.08,0.889,0.977,1.536 +NM_002497,0.881,0.972,0.992,1.026,0.99,1.143,0.845,0.91,1.002,0.929,0.853,0.874,0.878,0.777,0.931,1.247,1.031,0.998,1.068,0.907,1.035,0.964,1.401,1.012,0.848,0.895,1.194,0.852,0.555,0.965,0.974,1.076,3.041,0.952,0.852,1.393,0.981,0.966,1.216,1.249,0.96,0.836,0.859,1.23,1.061,1.003,1.118,0.912,1.12,1.069,1.143,1.027,1.024,1.459 +NM_002498,0.948,0.815,0.903,0.988,1.232,0.933,1.095,1.17,0.933,0.984,1.142,0.944,0.912,1.19,1.118,0.938,0.987,0.982,1.063,1.024,0.971,1.021,0.886,1.194,0.936,0.945,0.997,1.062,1.255,0.996,0.992,1.002,1.095,1.055,1.01,1.036,0.974,1.069,0.988,1.008,1.048,0.969,1.059,0.829,1.043,0.959,0.915,1.006,1.057,0.966,1.029,0.972,0.957,1.065 +NM_002499,0.757,0.949,1.055,0.727,0.817,0.767,0.665,0.602,0.71,0.751,0.782,0.708,0.603,0.831,1.089,1.463,0.787,0.784,0.93,1.31,0.826,0.707,1.61,0.67,0.861,0.861,1.106,0.689,0.589,1.061,0.789,1.541,1.37,1.264,0.534,0.932,0.907,0.801,1.437,0.912,0.812,1.149,0.899,0.62,0.793,1.408,1.157,0.861,1.224,0.948,1.205,1.164,0.881,1.359 +NM_002500,0.974,0.91,0.974,1.066,1.149,1.075,0.722,0.986,0.824,1.024,0.937,0.941,0.927,0.937,1.115,0.849,1.024,0.824,0.995,1.019,1.222,0.981,1.13,0.931,0.942,1.09,1.288,0.955,1.036,0.995,0.893,1.079,0.814,1.103,0.874,1.02,0.988,0.983,1.114,0.911,0.873,1.099,1.134,1.075,1.071,0.991,1.014,0.834,0.964,1.064,1.01,1.095,1.031,0.964 +NM_002501,1.725,1.318,0.777,0.816,1.753,0.998,0.675,0.756,2.581,1.789,0.673,1.282,1.386,0.656,0.623,0.71,1.267,0.65,0.687,1.021,0.746,1.532,0.721,1.516,1.36,1.002,1.73,2.12,0.65,1.553,0.661,1.766,1.14,0.677,0.734,0.936,0.693,2.142,1.099,0.658,2.678,0.67,1.211,1.768,0.656,1.134,1.585,0.806,1.034,1.438,0.765,0.616,0.762,0.802 +NM_002503,0.598,0.847,1.087,0.72,0.871,1.421,0.831,0.744,1.086,0.927,1.11,0.862,0.73,0.81,1.086,2.137,0.917,0.893,1.042,1.003,0.597,0.819,1.395,1.098,0.623,0.76,1.033,0.896,0.636,1.291,1.209,0.882,6.511,1.536,0.944,1.268,1.041,0.851,2.043,1.414,0.964,0.952,0.784,1.439,0.973,0.927,1.462,0.839,1.088,0.869,0.976,0.932,0.879,1.709 +NM_002504,0.826,0.804,1.251,0.726,0.944,1.171,0.83,0.689,1.24,1.172,0.943,0.847,0.793,0.788,1.277,1.166,0.919,0.843,1.204,1.047,0.813,0.893,1.035,1.006,0.873,0.878,0.927,0.837,0.868,1.212,0.955,1.059,1.698,1.099,0.491,0.858,0.846,0.872,1.001,0.745,0.999,1.058,0.864,1.257,1.126,0.782,0.772,0.739,0.874,0.877,1.062,1.048,1.077,2.265 +NM_002505,0.925,0.928,0.955,0.9,0.907,1.048,0.922,0.997,0.94,1.137,1.0,0.936,0.993,1.227,1.176,1.04,0.939,1.019,1.067,1.008,1.055,0.86,0.995,1.022,0.928,0.885,1.004,1.121,1.146,1.091,0.969,1.054,0.854,0.912,1.058,0.901,1.066,0.758,1.169,1.136,1.168,1.06,1.096,0.883,0.993,1.04,1.168,1.012,1.055,1.142,1.141,0.904,0.997,1.077 +NM_002506,0.887,0.879,1.081,1.112,0.999,1.002,0.845,1.019,1.021,0.97,1.004,1.009,1.023,0.766,0.952,0.955,1.05,0.731,1.05,0.923,1.022,0.752,1.036,1.006,0.93,1.079,1.105,1.001,0.752,0.962,0.968,1.142,0.99,0.97,0.934,0.933,1.087,0.96,0.937,1.047,0.875,0.959,1.071,1.059,0.976,0.95,0.989,1.06,0.962,1.149,1.065,1.052,0.888,0.907 +NM_002507,0.925,1.004,0.974,1.026,0.908,0.982,0.915,0.914,1.225,1.132,0.971,1.033,0.961,0.891,0.85,0.93,1.066,1.069,1.129,0.939,1.032,0.996,0.882,1.287,0.917,1.026,1.138,1.093,1.39,1.038,0.966,0.966,1.292,1.138,1.134,0.942,0.822,1.385,0.961,0.957,1.124,0.953,0.9,1.08,1.185,1.042,1.177,1.051,0.994,1.223,1.098,1.085,1.07,1.168 +NM_002508,1.039,1.116,0.917,1.068,0.995,1.046,1.255,1.031,0.84,1.012,0.918,0.936,0.867,1.039,1.034,0.988,0.946,0.934,0.815,1.009,1.061,0.927,0.988,0.931,0.98,0.945,0.801,0.921,1.158,1.172,0.971,1.319,1.28,1.204,0.896,0.976,0.972,0.972,1.069,1.532,1.049,1.201,1.018,0.893,0.92,1.066,1.098,0.934,0.926,0.991,1.033,0.998,0.982,1.127 +NM_002509,1.027,0.935,0.972,0.928,1.058,0.958,1.067,1.237,0.924,0.951,1.035,0.954,0.76,0.981,0.971,0.88,0.937,1.018,1.023,1.326,0.977,1.018,0.914,0.902,1.178,0.962,1.003,1.012,1.057,1.083,0.983,0.891,0.869,2.808,0.974,0.927,1.228,1.065,0.938,0.958,0.929,0.887,1.064,0.962,0.978,0.984,0.792,1.013,0.924,0.933,1.049,0.934,0.856,1.046 +NM_002510,1.242,0.612,3.413,0.554,2.011,0.688,0.544,0.794,1.819,2.567,0.418,1.059,1.213,1.063,1.291,0.903,1.512,1.324,2.575,0.598,1.423,1.407,1.11,2.218,0.409,1.265,3.375,1.409,0.692,0.722,2.253,3.832,1.472,0.87,0.356,0.501,0.46,2.519,0.719,0.92,1.766,1.011,0.4,0.435,2.007,0.464,0.849,1.29,0.376,1.818,0.707,1.121,2.749,1.593 +NM_002511,1.044,1.144,0.961,0.992,0.945,0.966,1.016,0.891,1.001,0.947,1.022,1.062,0.942,0.946,1.109,1.152,1.03,0.966,0.949,0.939,0.962,0.962,0.899,1.042,1.019,0.975,1.105,1.048,0.682,0.987,0.975,0.975,0.971,1.068,1.134,0.876,0.991,1.14,0.899,1.086,0.862,0.866,0.99,0.965,0.996,0.927,0.987,1.003,1.218,0.946,1.144,1.059,0.91,0.852 +NM_002512,0.586,1.233,1.303,0.81,0.897,1.104,0.615,0.53,1.112,1.176,1.018,0.997,0.998,0.373,0.921,1.981,0.791,1.162,1.182,1.212,0.475,0.914,1.758,1.423,0.53,0.899,1.374,0.909,0.336,0.929,0.903,1.699,1.432,1.53,0.0968,0.964,0.973,1.179,1.921,0.622,1.087,1.475,0.441,1.9,0.926,0.971,0.933,0.839,1.247,0.991,1.16,1.002,0.577,1.293 +NM_002513,0.636,1.23,0.923,0.808,0.785,1.376,0.559,0.609,0.812,0.821,1.242,0.819,0.817,0.541,1.0,1.578,0.829,0.887,1.095,1.163,0.616,0.791,1.439,0.864,0.834,0.77,0.968,0.592,0.497,1.514,0.686,2.245,1.401,1.68,0.299,1.557,1.149,0.762,1.802,1.009,0.833,1.441,0.728,1.707,0.778,0.943,1.033,0.887,0.836,0.597,0.984,0.841,0.865,0.808 +NM_002516,0.961,0.942,1.006,0.973,1.02,0.955,0.933,0.968,0.828,1.034,0.792,1.142,1.029,0.968,0.843,0.849,0.968,0.979,0.999,0.821,0.902,1.009,0.822,1.03,1.097,0.936,1.069,1.027,1.473,1.022,0.886,1.004,1.36,1.09,0.853,0.999,0.97,1.14,1.008,0.97,0.947,1.092,1.11,1.107,1.017,0.972,1.114,1.1,0.959,0.997,1.029,1.114,0.896,1.061 +NM_002517,0.896,1.497,1.07,1.036,0.807,1.679,1.582,0.78,0.953,0.861,1.126,0.974,0.953,1.03,0.973,1.001,0.869,1.269,0.998,1.5,0.802,0.874,0.941,0.88,1.29,0.928,1.027,0.982,1.423,1.484,0.996,0.862,0.783,2.09,0.959,0.98,1.121,0.784,1.476,0.822,0.911,1.367,1.025,0.999,0.882,1.422,1.07,0.981,0.748,0.954,1.279,0.714,0.959,0.871 +NM_002518,1.138,1.011,0.986,0.887,0.943,0.842,1.039,0.901,1.123,0.941,1.178,1.021,0.963,1.099,0.98,0.999,0.935,1.074,1.139,1.031,0.938,1.03,0.99,1.038,0.92,0.974,1.047,1.093,1.069,1.054,1.098,1.0,1.0,1.148,1.119,1.111,0.996,1.169,1.034,0.912,1.062,0.998,0.994,0.936,0.919,1.008,0.972,1.044,0.877,0.898,0.962,0.959,0.975,1.007 +NM_002519,0.711,1.135,1.16,0.841,0.926,1.279,0.799,0.684,1.178,0.904,1.047,0.975,0.746,0.814,1.018,1.268,0.734,0.883,0.992,1.199,0.86,0.92,1.205,0.88,0.832,0.701,1.449,0.77,0.717,1.536,1.001,1.079,1.621,1.287,0.644,1.108,1.096,0.824,1.037,0.958,0.91,1.205,0.691,0.899,0.937,0.994,0.775,0.742,0.83,0.81,1.122,0.962,0.757,1.504 +NM_002520,0.671,1.065,1.209,0.703,0.947,0.791,0.38,0.28,1.423,1.294,1.207,0.423,0.454,0.838,0.893,1.557,0.595,0.802,1.765,0.923,0.722,0.386,1.401,0.999,0.398,0.723,1.506,1.15,0.16,0.989,1.07,1.151,4.917,1.437,0.127,0.87,0.914,0.869,1.47,0.406,1.495,1.068,0.667,0.953,1.05,1.001,1.125,0.416,1.272,0.744,1.235,0.695,1.562,2.496 +NM_002521,0.976,0.991,0.998,0.984,1.091,0.981,0.847,0.966,1.018,1.022,0.927,1.035,1.108,1.0,1.03,0.9,1.032,0.905,0.995,0.942,1.04,0.993,0.935,1.064,0.934,1.033,0.926,0.954,1.013,1.035,1.058,0.93,1.065,0.954,1.021,1.056,1.025,1.0,1.054,1.101,0.909,0.93,1.1,0.958,0.874,0.993,0.942,1.04,1.138,0.94,0.966,1.031,0.945,1.09 +NM_002522,0.943,1.337,0.988,0.885,0.858,1.021,1.02,0.992,1.16,1.05,0.921,0.956,0.96,1.064,0.825,1.008,1.025,1.023,0.994,1.095,0.893,1.004,0.997,0.996,1.045,0.929,0.955,1.094,0.92,1.149,0.85,1.042,0.957,1.052,1.08,0.893,0.969,1.01,2.103,0.998,1.065,1.075,0.879,1.01,1.002,0.83,0.96,0.946,1.033,0.894,1.15,0.945,0.934,0.986 +NM_002523,0.93,1.146,0.749,1.009,0.991,0.931,1.004,1.094,0.923,0.954,1.054,0.857,1.209,0.951,1.096,1.078,0.944,1.146,0.912,1.052,0.854,1.054,1.188,0.997,1.046,0.899,0.92,0.935,1.362,1.039,0.848,1.143,0.873,0.931,0.936,0.897,0.981,0.9,0.867,1.157,1.084,1.045,0.994,1.034,0.927,0.904,0.885,1.061,0.979,1.052,1.025,1.398,1.172,1.125 +NM_002524,0.763,0.845,1.042,0.834,1.139,1.157,0.903,1.068,1.276,1.0,1.594,1.163,0.883,0.892,1.037,1.531,0.69,1.025,1.267,0.962,0.594,0.742,1.001,1.235,0.601,0.821,1.082,0.99,0.736,1.044,1.184,0.816,2.008,1.319,0.978,0.87,1.397,0.797,1.383,1.05,0.938,1.0,0.768,0.922,0.933,1.266,1.479,0.911,1.056,0.736,1.041,1.005,0.944,2.091 +NM_002525,0.895,0.988,1.391,0.752,0.897,0.895,0.556,0.462,1.384,1.221,0.918,0.831,0.562,0.743,0.822,1.149,1.037,1.032,1.627,0.662,0.753,1.06,1.22,1.16,0.66,1.033,1.422,0.787,0.452,1.062,1.019,1.329,2.926,1.104,0.348,0.823,0.946,1.223,1.404,0.846,1.234,1.05,0.667,0.958,1.038,0.827,0.862,0.893,0.906,1.114,0.881,1.0,1.146,1.621 +NM_002526,0.605,0.961,0.582,0.847,0.519,2.014,0.801,0.627,0.578,0.563,3.659,0.561,0.545,0.633,2.053,5.548,0.619,0.88,0.645,2.757,0.617,0.52,3.559,0.574,0.775,0.575,0.736,0.618,0.601,1.501,0.668,0.976,1.86,1.504,0.609,4.732,2.615,0.484,1.592,1.124,0.654,2.443,1.617,2.661,0.564,3.21,2.102,0.591,1.368,0.652,1.701,0.977,0.569,3.708 +NM_002527,0.992,1.009,0.918,0.893,0.935,1.009,1.114,1.011,1.125,0.818,0.934,0.922,1.013,0.995,1.106,1.299,0.863,1.075,1.108,0.985,1.033,1.001,1.0,1.17,0.885,1.126,1.082,1.102,0.969,1.158,1.0,1.521,1.582,1.309,0.998,0.872,0.942,1.037,0.955,0.966,1.202,1.143,1.018,0.925,0.996,0.994,0.879,0.882,1.259,0.937,1.055,0.815,1.147,0.918 +NM_002528,0.64,0.916,0.865,0.75,0.958,1.478,0.938,0.931,0.908,0.697,0.987,0.806,0.852,0.709,0.802,1.364,1.033,1.177,0.971,1.054,0.677,0.908,1.04,0.871,0.836,0.779,1.061,0.834,0.974,1.558,0.982,1.799,2.417,1.424,1.062,3.241,0.829,0.979,2.276,1.103,0.927,1.084,0.575,1.479,0.946,0.91,1.263,0.979,0.796,0.861,0.957,0.888,0.782,1.115 +NM_002529,0.979,1.162,0.83,1.249,1.013,1.017,0.892,1.008,1.077,0.897,0.951,1.001,1.169,1.134,1.172,0.931,0.882,0.986,0.771,1.112,0.913,1.241,1.018,0.937,0.884,1.284,0.948,1.011,0.897,1.101,1.122,0.85,1.253,1.047,0.984,0.928,1.078,0.956,0.924,1.018,0.851,1.311,0.883,0.88,0.874,1.036,0.872,1.095,0.991,0.943,1.187,1.018,1.12,1.198 +NM_002530,1.06,1.086,1.079,1.039,1.05,0.893,0.992,1.054,1.042,1.07,0.931,1.045,0.864,0.991,0.889,1.09,1.066,1.059,1.029,1.001,0.838,0.933,1.149,0.93,0.839,1.184,0.894,1.025,1.072,1.01,0.811,1.017,1.031,0.92,0.927,1.066,1.027,1.099,0.982,1.048,0.958,1.063,1.036,0.779,0.878,1.089,0.949,0.987,1.11,0.957,0.932,1.029,0.906,0.84 +NM_002532,0.566,0.753,1.211,0.714,0.78,1.446,0.765,0.483,1.017,1.045,1.197,0.813,0.58,0.637,0.975,1.538,0.818,0.999,1.473,0.855,0.481,0.887,1.385,1.152,0.697,0.59,0.837,0.635,0.599,1.245,0.843,0.912,1.905,1.4,0.227,0.923,1.595,0.804,1.128,0.72,0.922,0.983,0.956,0.722,1.031,1.116,1.064,0.693,1.201,0.711,1.298,0.771,1.001,2.864 +NM_002533,0.79,0.97,0.991,0.875,1.139,1.067,0.879,0.96,1.034,0.991,1.033,0.995,0.93,1.083,1.386,0.902,0.949,0.905,0.933,1.102,0.926,0.893,1.124,1.003,0.91,0.958,1.108,0.977,1.126,0.935,1.001,1.176,1.684,0.953,0.777,0.933,1.085,0.958,1.019,0.836,1.113,0.951,0.987,0.843,1.112,0.994,0.981,0.877,1.001,0.926,0.972,0.95,0.985,1.21 +NM_002534,2.118,1.1099999999999999,3.105,1.467,1.3239999999999998,4.945,4.44,1.177,1.643,1.988,2.839,0.956,1.2759999999999998,1.208,2.194,2.034,3.919,3.447,2.636,2.5140000000000002,1.8479999999999999,1.186,3.311,1.357,1.577,1.509,0.9910000000000001,2.29,1.021,2.521,1.923,0.783,2.5060000000000002,2.929,1.127,1.279,3.638,1.369,3.213,0.948,1.787,2.811,2.13,2.449,1.7970000000000002,3.376,1.981,1.538,3.7940000000000005,2.0020000000000002,3.247,1.545,2.372,3.164 +NM_002537,0.998,1.252,1.242,0.941,1.229,0.584,0.73,0.501,1.163,1.221,0.794,0.852,1.179,0.76,1.069,0.765,0.86,1.303,1.442,0.734,0.655,1.035,1.093,0.963,0.867,1.898,0.822,1.422,0.525,1.012,0.862,1.321,0.589,1.136,0.478,0.816,1.341,1.312,1.754,1.3,1.099,1.001,0.539,1.277,1.303,0.727,0.999,1.765,0.643,1.404,0.656,1.035,1.119,0.946 +NM_002538,0.539,1.055,0.915,0.812,0.801,1.743,0.875,0.731,1.286,0.933,1.64,0.569,0.55,0.971,1.255,1.955,0.733,0.909,0.986,1.695,0.713,0.544,1.357,0.778,0.603,0.634,0.831,0.848,0.432,1.432,1.304,1.018,1.948,1.814,0.769,0.81,1.571,0.615,1.478,0.664,0.883,1.414,0.93,0.821,0.858,1.504,1.124,0.599,1.377,0.679,1.419,0.697,0.731,1.443 +NM_002539,0.375,0.803,0.358,0.867,0.371,1.115,0.666,0.316,0.818,0.904,1.269,0.388,0.408,0.361,0.971,2.97,0.45,0.546,0.517,0.842,0.553,0.478,1.906,1.385,0.552,0.614,0.531,0.442,0.331,1.014,0.584,0.869,7.273,1.121,0.238,2.334,1.283,0.443,1.599,1.044,0.716,1.193,3.656,2.108,0.739,1.931,1.46,0.315,2.028,0.306,1.284,1.559,0.659,2.812 +NM_002540,0.767,0.963,1.118,0.957,0.757,1.025,0.721,0.612,0.976,1.057,0.913,0.817,0.751,0.705,1.005,1.192,0.901,0.887,1.053,0.906,0.81,0.825,1.515,0.976,0.861,0.867,1.269,0.724,0.634,0.975,0.872,1.466,3.705,1.171,0.457,1.34,0.951,0.892,1.573,1.159,0.883,1.162,0.866,1.466,0.952,0.973,0.806,0.802,1.02,0.789,1.19,1.011,1.051,1.996 +NM_002541,0.751,0.808,0.863,0.791,0.779,1.36,0.585,0.677,0.979,0.828,1.033,0.852,0.77,0.559,1.214,2.142,1.029,0.842,1.208,0.696,1.168,1.089,1.152,1.061,0.685,0.87,1.171,0.612,0.632,1.323,0.753,1.122,1.528,1.185,0.488,0.918,1.063,0.976,2.142,0.788,1.001,1.183,0.853,1.691,0.949,0.847,1.311,0.917,1.331,0.89,0.965,1.126,0.968,1.062 +NM_002544,1.031,0.957,0.94,1.185,0.925,1.008,1.113,1.02,1.159,1.024,0.873,0.974,0.977,1.033,0.905,1.057,1.059,0.995,1.066,1.065,1.028,1.001,0.953,1.04,0.977,1.062,0.884,1.017,1.167,0.968,0.923,1.144,1.029,1.007,0.988,1.094,0.891,0.981,1.087,0.995,0.917,1.038,1.15,0.892,1.041,1.062,0.962,1.044,1.026,1.03,0.906,0.983,0.959,0.964 +NM_002545,0.943,0.961,0.954,0.885,1.052,0.956,0.866,0.915,1.091,0.996,0.966,1.031,0.985,1.126,1.132,0.877,0.95,1.021,1.175,1.062,1.065,0.937,1.039,0.944,1.001,0.979,0.867,0.896,0.938,0.918,0.995,0.951,1.085,0.993,0.994,0.963,0.944,1.09,1.149,0.999,1.074,1.169,0.794,1.035,1.057,1.129,1.172,0.979,0.898,1.03,1.042,1.039,1.074,1.034 +NM_002546,0.828,0.822,0.842,0.999,0.783,1.073,1.025,0.803,0.876,0.796,1.119,0.867,0.842,0.966,1.389,1.395,0.802,0.979,0.874,1.416,0.954,0.855,1.181,0.885,0.809,0.892,0.975,0.809,1.007,0.935,0.766,0.853,2.532,0.916,0.844,3.705,1.114,0.81,1.885,2.968,0.826,1.074,1.033,1.813,0.893,1.701,1.765,0.825,2.026,0.906,1.528,2.276,0.801,1.199 +NM_002547,0.965,1.073,1.053,1.113,1.042,1.04,1.077,0.99,0.824,0.95,1.076,1.095,0.987,0.938,1.102,0.838,1.041,1.058,0.996,1.04,1.012,0.841,0.926,1.122,0.988,0.955,0.833,0.998,1.049,1.064,1.048,0.953,1.032,1.166,1.076,0.874,1.081,0.893,0.884,0.974,1.075,0.905,0.991,0.905,1.046,0.955,1.116,1.008,1.078,0.955,0.949,0.966,0.95,1.273 +NM_002548,0.977,0.92,0.992,1.262,0.989,1.016,0.858,0.887,0.96,1.317,0.873,0.882,0.957,1.059,0.846,1.1,1.059,1.13,0.922,0.981,0.838,1.088,1.128,0.949,0.866,1.097,1.075,0.904,0.95,1.031,1.0,1.017,1.067,0.811,1.173,0.963,1.061,1.05,1.032,1.346,1.037,0.909,0.952,1.022,1.041,1.028,1.066,1.083,0.98,1.12,1.018,0.947,0.943,1.113 +NM_002550,1.066,0.997,0.983,1.142,0.86,0.988,0.863,1.103,1.076,0.901,0.937,0.963,1.196,0.976,1.037,1.163,1.119,0.904,0.779,0.981,1.138,0.835,1.043,0.912,1.011,0.983,1.164,0.929,0.87,1.067,1.006,1.015,1.205,0.961,1.001,1.137,1.159,0.991,1.177,1.054,1.038,0.904,0.941,1.014,0.949,0.961,1.094,0.972,1.04,1.079,1.023,1.024,1.034,0.906 +NM_002551,1.0,1.004,0.883,1.485,0.929,1.061,0.862,0.956,1.126,1.023,0.931,1.007,1.074,0.881,1.36,0.8,1.22,0.948,1.103,1.097,1.163,0.913,0.961,0.976,1.044,0.942,1.317,0.82,1.375,1.013,0.916,0.943,0.858,1.088,0.99,1.183,0.969,1.215,0.858,1.036,0.953,0.871,0.823,0.904,0.983,0.972,0.989,1.007,0.896,0.878,0.94,1.084,1.01,0.946 +NM_002553,0.67,0.969,1.094,0.691,0.88,1.198,0.611,0.497,1.066,1.02,0.983,1.055,0.626,0.657,0.911,1.34,0.895,0.9,1.407,0.993,0.747,0.833,1.755,1.136,0.635,0.967,1.27,0.87,0.604,1.566,0.951,1.314,1.385,1.34,0.242,1.167,1.053,0.819,1.415,0.831,1.195,1.039,0.691,1.378,0.947,0.95,1.075,0.645,0.928,0.805,0.949,0.8,0.972,1.508 +NM_002555,0.296,1.128,0.645,1.208,0.653,3.932,1.711,0.157,0.819,0.604,3.435,0.481,0.292,0.32,1.945,5.242,0.429,1.704,0.702,3.348,0.212,0.481,2.811,0.875,0.705,0.407,0.525,0.559,1.383,4.532,0.443,0.945,0.513,2.615,0.172,2.065,4.058,0.523,1.97,1.035,0.598,1.754,2.794,1.202,0.544,4.299,2.707,0.312,3.389,0.233,3.297,0.294,0.34,0.854 +NM_002556,0.639,1.099,0.969,0.687,0.73,1.333,0.656,0.497,1.092,0.701,1.229,0.706,0.512,0.617,1.15,1.664,0.796,0.826,0.796,1.32,0.514,0.792,1.695,0.844,0.958,0.516,1.177,0.767,0.614,1.557,0.914,1.748,1.208,1.317,0.302,1.333,1.708,1.014,1.463,0.77,0.688,1.214,0.748,1.324,0.705,0.999,0.908,0.48,1.211,0.807,1.755,0.826,0.787,1.328 +NM_002557,0.82,1.156,0.856,1.017,0.861,1.135,0.873,0.769,0.909,0.92,1.331,0.902,0.771,0.85,1.277,1.618,0.842,0.964,0.858,1.688,0.863,0.742,1.317,0.876,0.87,0.843,1.08,0.806,1.107,1.223,0.752,0.996,1.886,1.204,0.762,1.201,1.205,0.854,1.126,1.798,0.9,1.216,0.861,1.195,0.816,1.214,1.17,0.792,1.001,0.9,1.131,0.849,0.661,0.838 +NM_002558,1.01,0.965,1.048,0.973,0.957,1.042,1.1,1.086,1.063,1.049,0.997,0.953,0.968,1.018,0.974,0.926,1.046,0.847,1.161,0.982,1.067,1.054,1.07,0.9,1.119,1.0,0.998,1.026,1.0,1.038,0.967,0.95,0.899,1.143,0.951,0.982,1.023,1.191,1.01,1.114,1.172,1.144,0.982,0.936,1.008,0.929,0.978,0.984,1.049,1.069,1.027,1.012,0.976,1.016 +NM_002559,0.929,1.089,0.917,1.032,1.082,0.932,1.103,1.084,1.106,1.212,1.023,0.797,0.947,0.968,1.084,1.134,0.999,0.891,1.012,0.991,1.042,0.883,0.933,1.078,1.12,1.07,1.189,0.955,1.02,1.021,1.106,0.988,0.992,0.973,0.926,1.03,1.031,0.996,0.896,1.186,1.088,1.089,1.027,0.911,1.084,1.061,1.027,1.076,1.027,0.922,0.948,1.069,1.087,1.078 +NM_002562,1.151,1.053,1.001,0.949,1.096,1.087,1.093,1.012,1.006,0.935,1.098,0.866,1.001,0.965,0.869,0.933,1.099,1.016,0.984,0.909,1.129,0.985,1.096,1.093,1.056,0.927,0.875,1.012,0.948,1.062,1.07,0.936,1.001,1.096,0.994,0.883,1.002,0.892,1.065,1.018,0.959,0.985,1.081,0.999,0.888,1.102,0.985,1.015,1.015,0.964,0.962,1.052,0.975,1.078 +NM_002563,1.135,0.825,1.219,0.953,1.284,0.813,0.844,1.058,1.546,1.433,0.845,1.206,1.183,1.105,1.109,0.932,1.117,1.012,1.163,1.0,1.061,1.166,0.894,1.582,0.933,1.083,1.607,1.216,1.136,0.817,1.102,0.899,1.258,0.899,0.909,1.006,0.962,1.146,0.955,0.854,1.22,0.873,1.049,0.854,1.11,0.991,1.012,1.107,0.882,1.069,1.076,0.795,1.309,1.0 +NM_002564,1.085,0.909,1.261,1.082,1.149,0.897,0.845,1.045,1.065,1.034,0.982,1.086,1.022,0.87,1.078,0.964,1.164,1.062,1.425,0.819,1.267,1.163,0.877,1.255,1.001,1.19,1.124,1.091,0.738,0.926,1.099,0.994,0.948,0.827,0.912,1.195,0.987,1.144,0.978,0.9,1.095,0.911,0.972,0.948,1.393,0.974,1.165,1.085,1.057,1.238,1.013,1.005,1.391,0.914 +NM_002565,0.907,1.044,0.977,0.957,0.918,1.013,0.971,1.241,1.03,1.009,0.871,1.02,1.024,1.07,0.896,1.09,1.012,0.988,1.017,0.967,0.962,0.983,1.017,1.034,0.871,0.926,1.03,1.075,0.719,0.871,1.018,0.868,1.059,1.097,0.917,0.883,1.025,1.15,1.073,0.966,1.043,0.876,1.042,1.045,0.992,1.025,1.155,0.863,1.042,0.949,1.088,1.054,0.969,0.976 +NM_002566,1.037,0.996,0.963,1.003,0.875,0.966,1.051,0.797,1.078,1.003,0.928,0.948,0.963,0.951,0.816,0.919,0.941,0.994,1.026,0.97,0.999,0.887,1.242,0.892,0.908,0.999,1.065,0.889,0.807,0.962,1.036,1.18,0.892,1.024,0.902,0.834,1.017,0.959,1.229,1.148,1.028,1.082,1.034,1.154,0.977,0.896,0.995,0.993,0.912,0.976,0.981,0.859,0.959,1.454 +NM_002567,1.387,0.893,1.241,0.89,1.15,1.183,0.51,0.907,1.754,1.106,0.74,0.929,0.91,0.83,1.096,1.772,0.688,0.924,1.741,0.979,0.868,1.344,1.211,0.933,0.869,1.677,1.11,1.347,0.385,1.456,1.529,1.089,0.867,1.481,1.536,0.543,1.582,1.732,0.795,0.347,1.391,1.274,0.879,0.643,1.103,0.861,0.975,1.918,1.004,1.026,1.181,0.514,0.891,0.852 +NM_002568,1.447,0.888,1.534,0.712,1.727,0.837,0.318,1.065,2.204,1.066,0.828,0.973,1.16,1.13,0.993,0.849,1.593,0.834,1.236,0.812,0.834,1.355,1.327,1.316,0.424,1.307,1.354,2.048,0.233,0.95,1.557,0.857,2.181,1.025,2.608,0.936,0.657,1.368,0.999,1.081,1.566,0.976,0.508,0.925,1.214,0.94,1.052,1.162,1.085,1.198,0.896,0.532,1.04,1.633 +NM_002569,0.985,0.915,0.946,0.969,0.645,1.554,0.699,0.649,0.846,0.81,1.253,0.573,0.648,0.667,0.786,1.708,0.953,0.657,1.013,0.866,0.765,0.738,1.158,0.802,0.845,0.91,1.114,0.602,0.961,1.153,0.95,1.14,1.483,1.735,1.045,0.765,1.132,0.811,2.543,1.364,0.818,1.268,0.948,0.907,0.937,0.791,0.877,0.837,0.824,1.045,0.868,0.924,1.094,1.345 +NM_002571,1.093,1.056,1.037,1.081,0.853,1.129,0.947,1.067,0.958,1.016,1.003,0.901,1.006,1.11,0.905,0.875,0.981,1.059,1.052,1.068,0.865,1.283,0.974,1.126,0.903,0.964,1.018,0.84,0.78,0.926,1.034,0.936,0.977,1.016,1.061,1.149,1.078,0.949,0.947,1.007,0.891,1.026,1.113,0.926,0.981,0.831,0.934,1.03,1.095,1.208,0.986,1.08,1.228,0.974 +NM_002572,1.109,1.118,1.171,0.991,1.007,0.968,0.93,0.949,1.077,1.124,1.008,1.078,0.865,0.931,0.914,1.148,1.045,1.014,1.052,0.937,0.969,1.062,0.866,1.136,0.895,0.951,0.94,1.114,0.935,1.072,1.155,1.02,1.13,1.087,1.103,0.972,0.981,1.128,1.222,1.071,1.013,0.957,0.911,0.797,0.999,1.164,1.038,1.015,1.008,1.126,0.868,0.918,0.923,1.094 +NM_002573,0.545,1.031,0.898,0.938,0.677,1.465,0.728,0.467,1.08,1.052,0.684,1.005,0.849,0.66,0.62,0.99,0.966,0.952,1.065,1.726,0.624,1.22,1.704,1.14,0.653,0.864,1.226,0.766,1.038,1.524,0.623,1.38,3.294,1.243,0.321,1.546,0.733,0.832,1.707,1.632,0.85,0.722,0.919,1.828,0.875,0.915,1.103,0.858,0.956,0.631,0.806,0.732,1.072,2.65 +NM_002575,2.6,0.23,2.069,0.829,5.177,0.322,0.282,2.649,4.399,3.77,0.291,1.816,3.488,2.533,2.18,1.106,1.807,2.586,4.585,0.458,1.903,2.677,0.284,4.628,0.299,4.964,4.315,4.545,0.233,0.313,6.855,0.297,2.419,0.314,4.071,0.29,0.339,3.073,0.487,0.99,4.079,0.283,0.286,1.108,3.095,0.312,2.506,3.265,0.491,1.654,0.813,1.693,3.846,1.087 +NM_002576,0.518,0.969,0.741,0.942,0.549,2.377,0.978,0.393,0.658,0.604,1.872,0.574,0.33,0.445,1.207,2.021,0.532,0.913,0.717,1.29,0.441,0.499,1.303,0.751,0.717,0.433,0.846,0.462,0.617,1.191,0.587,0.827,1.587,1.732,0.301,1.022,1.626,0.425,1.783,1.23,0.599,1.354,1.074,0.845,0.711,1.569,1.215,0.491,1.546,0.547,1.531,0.587,0.837,1.008 +NM_002577,0.876,1.227,1.426,0.762,0.823,0.925,0.775,0.72,1.159,1.1,0.785,1.006,0.776,0.856,0.919,1.057,0.921,1.05,1.33,0.861,0.841,0.765,1.0,1.059,0.691,1.11,1.618,0.825,0.747,0.967,1.004,1.717,2.576,0.888,0.773,1.327,0.869,1.082,1.413,1.226,0.929,0.797,0.82,1.996,0.807,0.93,1.141,0.926,1.141,0.967,0.981,1.284,0.967,1.792 +NM_002578,1.0,0.966,1.07,0.964,0.966,1.089,0.996,0.995,0.922,0.878,1.051,0.909,1.16,1.056,0.917,1.026,1.001,1.198,0.938,0.949,1.045,0.941,0.932,1.001,0.936,0.953,0.881,1.006,0.994,1.162,1.043,1.315,1.051,1.072,1.068,1.005,1.087,1.034,1.025,0.906,1.008,0.981,0.955,0.978,1.049,0.923,1.083,0.887,1.137,1.125,1.01,0.847,0.852,1.025 +NM_002579,0.708,1.049,0.719,0.9,0.666,0.967,0.889,0.837,0.774,0.853,1.104,0.7,1.127,0.775,1.247,1.324,0.74,0.999,0.751,1.155,0.852,0.784,1.137,0.983,1.277,1.222,0.796,1.147,0.751,1.244,1.077,4.748,1.098,1.746,0.812,1.161,1.18,1.244,1.145,1.909,0.959,1.804,0.939,0.649,0.761,0.858,1.29,1.001,0.761,0.821,1.095,0.929,1.149,1.964 +NM_002581,0.924,0.992,0.972,0.936,1.014,0.914,0.902,0.75,1.028,1.117,1.05,0.954,0.864,0.962,0.733,0.957,0.949,0.975,0.762,0.816,0.68,0.877,1.0,1.007,0.784,0.944,1.268,0.871,0.742,1.306,0.884,1.628,1.628,1.248,1.002,0.83,0.877,1.026,1.746,1.432,0.875,1.089,0.903,1.042,1.099,1.356,1.08,1.0,1.0,0.949,1.105,1.888,1.043,1.382 +NM_002583,0.813,0.63,1.449,0.766,1.682,1.11,0.712,1.252,1.892,1.187,0.961,1.094,0.944,1.085,1.232,1.199,1.184,0.951,1.368,0.894,0.688,1.326,0.94,1.406,0.511,0.977,1.195,1.518,0.624,0.788,1.85,0.726,1.86,0.873,2.036,0.997,0.9,1.168,1.149,0.785,1.341,0.721,0.721,0.826,1.098,1.123,1.228,1.34,1.129,0.908,0.897,0.725,0.943,1.465 +NM_002587,1.957,1.5230000000000001,2.064,1.311,1.9260000000000002,2.576,1.299,1.325,2.301,2.108,2.093,1.242,1.081,1.612,1.734,2.261,2.41,2.061,3.459,1.321,1.6920000000000002,2.467,1.5499999999999998,2.325,1.182,2.402,2.564,1.455,1.819,2.709,1.71,1.499,4.929,2.4589999999999996,1.117,1.1989999999999998,1.983,2.67,5.061,1.241,2.811,2.1029999999999998,1.48,3.129,1.9289999999999998,1.625,2.2569999999999997,2.404,2.053,2.299,1.738,1.731,1.462,1.86 +NM_002589,1.833,1.635,3.59,2.239,1.853,2.501,2.354,1.756,1.942,2.81,1.931,1.7810000000000001,1.488,1.788,1.634,1.601,2.315,1.8450000000000002,2.3040000000000003,1.891,1.734,2.0229999999999997,1.824,2.104,1.8330000000000002,2.072,3.276,2.13,1.563,3.956,1.833,6.5489999999999995,2.282,2.498,1.733,1.6059999999999999,2.354,1.931,3.1740000000000004,1.6589999999999998,2.542,1.786,1.735,2.9939999999999998,2.357,1.731,1.9489999999999998,1.7269999999999999,1.882,2.4139999999999997,2.291,3.053,3.126,3.976 +NM_002590,1.025,0.862,0.907,1.008,0.89,0.974,0.932,0.976,1.036,0.901,1.005,1.004,0.872,0.975,0.927,0.996,1.038,0.927,1.054,0.977,1.095,0.887,1.048,1.155,1.124,0.982,1.082,1.105,0.731,1.054,1.072,1.091,0.949,1.064,0.919,1.1,1.014,0.975,1.033,1.03,0.956,0.913,0.812,0.977,1.061,1.092,0.991,0.927,0.876,1.068,1.113,0.937,0.943,0.889 +NM_002591,0.902,0.963,0.97,1.129,0.951,1.384,0.877,0.997,0.997,0.878,1.83,0.93,1.001,0.945,3.246,3.066,0.943,0.928,0.934,3.052,0.951,0.928,1.695,0.888,0.95,0.968,0.953,0.87,0.875,1.126,1.003,0.828,1.047,1.004,1.126,1.019,5.19,0.936,1.209,0.891,1.124,2.068,4.847,0.93,1.09,3.22,3.942,0.86,1.211,0.899,1.126,0.874,0.995,1.354 +NM_002592,1.026,0.848,0.927,0.966,0.909,1.185,0.983,0.987,0.991,0.814,1.087,0.957,0.928,0.909,0.97,1.095,0.956,1.152,0.919,1.002,0.885,0.938,1.069,0.947,0.923,0.934,0.974,1.067,1.138,0.999,0.913,0.846,1.025,1.04,0.911,0.968,1.079,0.936,0.994,1.069,0.906,0.968,1.038,1.021,0.98,1.085,1.093,1.024,1.027,0.789,1.054,1.01,1.0,1.218 +NM_002593,0.565,1.515,0.741,0.725,0.645,1.106,1.243,0.647,0.533,0.662,0.744,0.561,0.549,0.5,0.768,0.749,0.523,0.778,0.557,0.996,0.623,0.592,2.213,0.575,0.866,0.539,0.559,0.745,0.504,3.224,0.552,28.72,1.982,2.009,0.554,0.988,1.12,0.647,2.229,3.936,0.915,2.165,0.905,0.891,0.85,1.647,1.004,0.636,0.735,0.689,1.66,2.151,0.595,2.414 +NM_002594,0.963,1.014,0.983,1.002,1.024,0.952,0.863,1.074,0.85,0.873,1.064,0.989,1.038,0.963,0.954,0.831,1.032,0.993,1.095,0.893,1.022,0.892,1.026,0.979,0.981,1.112,1.026,1.116,0.741,1.091,1.009,1.015,1.018,1.125,0.972,0.971,1.134,1.055,0.986,0.975,0.892,0.942,0.887,0.889,1.012,1.146,0.955,1.108,0.886,0.961,0.998,1.088,1.027,0.818 +NM_002595,0.961,0.992,1.406,0.789,1.101,1.222,1.049,0.889,1.112,0.908,0.752,1.006,0.889,0.735,0.98,1.023,0.95,1.023,0.721,1.066,0.685,1.238,1.011,1.132,0.85,0.834,1.41,0.88,1.039,1.081,1.174,1.081,1.448,1.11,0.664,0.683,1.089,1.206,1.157,1.22,1.021,1.055,0.932,0.765,1.281,0.926,0.99,0.967,1.175,0.799,1.136,0.935,0.737,1.157 +NM_002596,0.899,1.085,0.858,0.928,0.771,1.198,0.849,0.929,0.915,0.955,1.144,0.815,0.842,0.805,1.1,1.604,0.783,1.049,0.857,1.12,0.827,0.918,1.371,0.868,1.31,0.884,1.084,0.78,0.947,1.155,0.856,1.422,1.286,1.671,0.754,1.269,1.065,0.937,1.273,1.37,0.781,1.328,1.026,1.391,1.001,0.962,0.92,0.758,0.979,0.794,0.956,0.946,0.87,0.905 +NM_002598,1.658,2.317,2.183,1.548,1.676,1.943,1.572,1.3,1.794,1.819,2.688,1.701,1.629,1.33,1.686,2.463,1.62,1.782,2.447,1.772,1.526,1.373,2.3099999999999996,1.735,1.7309999999999999,1.682,2.004,1.7679999999999998,1.482,2.067,1.6800000000000002,1.906,2.439,2.496,1.232,1.995,2.3049999999999997,1.778,2.627,1.862,1.992,2.431,1.699,3.023,1.877,1.799,2.002,1.52,2.245,1.665,1.98,2.0780000000000003,1.892,2.6100000000000003 +NM_002600,0.842,1.004,0.882,0.978,1.034,0.926,0.991,1.138,1.019,1.01,0.873,0.882,0.933,1.086,1.152,1.033,0.943,0.786,1.007,1.002,1.129,0.947,0.843,0.89,1.149,1.016,0.819,1.127,0.898,0.958,0.969,0.901,0.962,1.008,0.916,0.932,0.875,0.95,1.039,2.076,0.953,0.995,1.052,0.919,0.923,1.065,0.893,0.899,1.13,0.972,0.973,1.173,0.98,1.206 +NM_002602,1.001,1.177,1.092,1.072,1.017,0.842,1.111,0.899,0.942,1.08,0.89,0.969,1.03,0.766,1.052,0.897,0.941,0.826,0.72,1.05,0.976,0.917,0.815,0.963,0.887,0.922,1.032,1.293,1.048,1.07,0.916,1.072,0.937,1.082,0.99,0.875,1.015,0.916,1.173,1.147,1.035,1.067,0.796,1.006,1.003,0.933,1.151,1.021,0.959,0.987,0.891,0.79,0.786,1.173 +NM_002603,2.043,1.912,2.149,2.112,1.849,2.209,1.9689999999999999,2.016,2.04,1.796,1.818,2.001,2.005,1.907,1.676,1.966,2.195,2.066,2.141,1.96,1.967,1.938,2.065,1.9969999999999999,2.097,2.051,2.037,2.059,2.036,1.8519999999999999,1.936,1.966,2.329,2.168,1.962,1.935,2.0629999999999997,2.094,1.91,2.2030000000000003,1.994,1.92,2.0010000000000003,2.06,1.9849999999999999,2.2009999999999996,1.8119999999999998,1.889,1.952,1.7690000000000001,1.8719999999999999,1.9540000000000002,1.876,1.94 +NM_002605,0.967,0.949,0.95,0.953,1.083,1.055,0.749,1.038,1.079,0.923,1.162,0.924,0.838,0.788,1.019,1.206,0.885,1.014,0.943,1.103,0.939,0.837,1.13,0.87,0.84,0.918,0.952,1.0,0.714,1.029,0.93,1.106,0.974,1.191,0.836,0.941,1.074,1.025,1.158,1.059,0.929,0.979,0.871,1.082,0.923,0.861,0.892,1.029,1.054,0.93,1.036,0.9,0.883,1.258 +NM_002606,0.859,1.075,0.915,0.88,0.88,0.843,0.886,0.868,1.133,0.824,0.978,0.923,0.931,0.925,1.038,0.96,0.914,1.01,0.837,0.977,1.002,0.895,0.942,0.996,1.168,0.973,0.903,0.834,0.908,0.97,1.0,2.204,2.341,1.576,0.948,0.804,1.011,1.067,0.937,3.439,0.898,1.509,2.034,1.116,0.815,0.844,1.611,0.922,0.906,0.831,0.866,1.158,1.091,1.369 +NM_002608,1.003,1.048,0.955,0.939,0.899,1.031,0.972,0.979,0.921,1.02,1.04,1.109,1.214,0.999,0.956,0.906,0.956,0.978,1.031,0.903,1.014,0.999,1.025,1.105,1.126,0.921,1.0,1.003,1.082,0.969,0.921,0.962,0.918,0.822,1.045,1.084,1.095,0.884,0.955,1.049,0.933,1.035,1.042,0.928,1.086,0.998,1.038,1.005,0.99,1.211,0.932,1.15,1.201,0.843 +NM_002609,0.568,1.091,0.705,0.688,0.619,1.128,0.918,0.615,0.576,0.851,1.062,0.57,0.573,0.661,0.893,1.111,0.64,0.621,0.649,0.796,0.888,0.646,1.649,0.689,0.939,0.613,0.646,0.659,0.497,1.885,0.587,16.48,3.209,2.223,0.59,1.102,0.771,0.983,3.105,5.357,0.778,2.348,0.843,0.934,0.851,1.004,0.98,0.64,0.678,0.691,1.27,3.295,0.832,2.274 +NM_002610,0.927,1.122,0.914,0.925,1.146,1.071,0.975,0.86,0.963,1.166,1.127,0.95,1.114,0.903,1.082,1.063,0.91,1.02,0.996,0.96,0.866,0.98,0.97,1.167,0.961,1.019,1.154,0.974,1.088,1.156,1.131,1.063,0.817,0.831,1.119,0.824,1.092,1.044,1.07,1.302,0.883,1.087,0.804,0.975,0.946,0.827,1.13,0.964,1.012,0.993,1.111,0.986,0.974,1.212 +NM_002611,0.933,1.006,1.059,1.178,1.072,1.284,1.069,1.061,0.933,1.097,1.017,0.932,0.997,0.841,0.88,1.14,0.869,0.993,1.265,0.902,0.969,0.977,1.097,1.218,1.041,0.807,0.893,0.863,1.189,1.186,0.93,1.109,1.195,1.063,0.754,0.897,0.978,1.207,1.091,0.911,0.851,0.889,1.029,0.993,0.91,0.851,0.907,1.009,0.98,0.961,0.967,0.907,1.088,1.266 +NM_002612,0.627,2.001,0.467,0.871,0.62,2.132,1.459,0.539,0.558,0.567,1.388,0.527,0.596,0.528,1.221,1.953,0.449,0.878,0.507,2.795,0.676,0.585,1.631,0.571,1.207,0.479,0.499,0.676,0.886,3.202,0.534,1.258,0.882,2.542,0.56,0.545,1.479,0.707,1.609,0.732,0.575,3.465,3.081,0.972,0.486,1.489,1.716,0.464,1.503,0.56,1.49,3.79,0.77,0.811 +NM_002613,0.655,0.853,1.192,0.619,0.932,1.32,0.886,0.591,1.105,0.763,0.796,0.665,0.573,0.63,1.153,1.471,0.9,1.082,1.139,1.184,0.64,1.066,1.335,1.031,0.733,0.596,1.099,0.882,0.727,1.309,0.995,1.81,1.294,1.417,0.63,0.675,1.188,0.933,1.301,1.075,0.92,1.167,0.568,0.935,0.925,1.087,1.198,0.615,1.032,0.693,1.206,0.692,0.747,1.125 +NM_002614,1.017,0.788,0.906,1.239,0.985,1.455,0.995,0.811,0.878,0.733,5.194,0.843,1.113,0.76,1.404,1.733,0.895,0.802,0.848,2.785,0.936,0.889,2.504,1.126,0.865,0.815,0.899,0.774,0.887,0.89,0.787,0.927,0.795,1.051,0.885,2.386,2.803,0.838,0.981,0.846,1.2,1.78,1.415,0.909,1.044,3.109,1.065,0.876,1.05,0.761,2.454,1.008,1.094,1.458 +NM_002615,0.936,1.051,1.085,0.938,0.962,0.984,1.047,0.812,0.84,0.871,0.926,0.897,0.917,0.74,0.944,1.168,1.06,0.95,0.881,1.004,0.888,1.03,1.189,1.065,0.971,0.85,1.296,0.986,0.666,1.727,0.881,5.852,1.109,1.458,0.817,0.857,1.035,1.007,1.492,1.201,1.059,1.447,1.065,0.861,0.923,1.038,0.955,0.878,0.84,0.811,1.075,1.139,0.8,1.239 +NM_002616,1.494,0.899,0.891,0.904,1.12,0.837,0.81,0.974,2.226,0.885,0.813,1.15,1.194,1.414,0.937,0.993,0.901,0.914,1.487,0.983,1.023,1.19,0.897,1.102,0.902,2.547,0.903,0.856,0.764,0.833,2.136,1.382,1.363,0.931,2.442,0.725,1.012,2.014,1.399,1.064,0.787,1.054,1.18,1.018,0.933,1.077,1.086,1.679,0.714,2.182,0.866,0.799,2.173,0.922 +NM_002617,1.07,0.873,0.989,1.007,0.952,1.022,0.695,0.685,1.02,0.988,1.025,1.002,1.07,0.872,0.846,0.949,1.203,0.838,1.353,0.963,0.887,0.937,1.016,1.234,0.958,1.157,1.235,0.893,0.501,1.13,0.86,1.222,2.05,1.076,0.624,0.911,0.778,1.03,1.305,0.83,1.061,0.886,0.713,1.746,1.098,0.708,0.915,0.869,0.941,1.11,0.873,0.852,1.169,1.591 +NM_002618,0.761,0.869,1.285,0.893,1.029,1.091,0.828,0.789,1.183,1.098,1.179,0.794,0.809,0.871,1.074,1.328,0.966,0.971,1.272,0.888,0.868,0.83,1.048,1.127,0.691,0.93,1.335,1.088,0.552,0.992,1.124,0.979,1.465,1.047,1.139,0.881,0.971,0.862,1.177,0.949,1.204,0.972,1.029,1.113,1.118,0.972,1.096,0.959,0.932,1.065,0.944,0.899,1.138,1.377 +NM_002619,0.977,1.087,0.783,2.599,0.79,1.105,0.789,0.785,0.95,0.786,0.966,0.871,0.919,1.04,0.836,1.316,0.771,0.868,0.882,1.192,0.881,0.867,1.389,0.753,1.044,0.807,0.917,0.862,0.803,1.119,0.921,1.769,2.576,1.148,0.82,2.274,0.967,0.81,1.609,1.018,0.997,1.462,1.255,1.248,0.855,0.906,1.381,0.816,1.037,0.828,0.928,1.703,0.78,0.981 +NM_002620,1.028,1.012,0.907,0.959,1.068,0.959,0.881,0.934,0.885,1.029,0.989,1.026,1.058,1.379,0.795,0.989,1.035,0.961,0.933,0.989,1.095,1.002,0.857,0.984,0.899,1.07,0.998,0.938,1.099,0.895,1.151,1.056,0.86,0.968,1.074,1.089,1.058,1.033,0.949,1.02,0.877,1.02,1.132,0.819,1.015,1.077,0.899,0.911,1.083,1.007,1.119,1.066,0.934,1.028 +NM_002621,0.907,1.023,1.04,1.028,0.995,0.979,1.018,0.984,0.994,1.149,1.072,0.973,0.981,1.025,0.986,1.019,1.14,1.059,0.911,0.961,0.941,1.046,0.917,1.048,1.027,1.043,1.087,0.996,0.882,1.018,1.047,1.089,0.953,1.02,0.948,0.985,0.931,1.073,1.174,1.487,1.06,0.923,0.887,0.91,1.144,0.849,1.0,1.038,1.052,1.095,1.134,1.062,1.099,0.938 +NM_002622,1.0,0.659,1.072,0.797,0.883,0.988,0.431,0.746,1.186,0.89,0.948,1.005,0.987,0.787,1.222,1.397,1.256,0.732,1.397,0.782,0.875,0.897,0.855,1.109,0.679,1.238,1.389,0.826,0.436,0.917,0.901,1.04,2.155,0.839,0.496,0.603,0.871,0.924,1.249,0.809,1.195,1.014,1.411,1.122,1.101,0.979,1.15,1.028,0.901,1.026,0.898,0.915,1.212,1.508 +NM_002623,0.925,1.124,1.058,0.973,0.941,1.089,0.867,1.194,1.062,0.794,1.004,1.115,0.948,1.002,1.001,1.073,1.023,0.964,0.977,0.958,0.927,1.056,0.946,0.954,0.99,0.832,1.211,0.963,0.755,0.995,0.992,1.177,1.223,1.102,0.99,0.828,0.953,1.068,1.077,1.218,0.997,0.953,0.894,0.904,0.997,1.049,0.9,0.973,0.987,1.024,0.961,1.116,1.16,1.375 +NM_002625,1.134,0.947,1.032,1.007,1.13,1.077,1.043,1.142,0.925,0.942,1.013,0.979,0.921,1.031,1.038,1.057,0.947,0.93,0.914,1.075,0.927,0.881,1.039,0.908,0.932,1.0,1.112,0.965,1.242,1.001,1.056,0.995,1.078,0.996,1.07,1.054,0.963,0.953,1.021,0.996,1.032,1.111,0.901,0.9,1.029,1.168,0.972,1.035,0.976,1.097,1.034,1.206,1.109,1.098 +NM_002626,0.79,1.487,0.971,0.767,1.153,1.157,0.578,0.395,1.21,1.224,0.778,0.984,0.425,0.433,0.812,1.126,0.931,1.246,1.096,1.373,0.331,0.828,1.175,1.226,0.653,0.994,1.094,1.163,0.521,1.594,0.7,1.054,0.884,1.334,0.484,0.64,1.371,1.151,1.345,0.81,0.946,1.237,1.028,0.785,0.98,1.278,1.121,1.037,0.555,0.672,1.119,0.386,0.733,0.769 +NM_002627,0.694,0.645,0.933,0.907,0.722,1.351,0.624,0.534,1.216,0.957,1.037,0.71,0.394,0.51,1.061,1.843,0.632,0.795,1.196,0.754,0.498,0.983,1.188,1.098,0.496,1.145,0.922,0.99,0.663,0.597,0.951,1.345,1.042,1.077,0.984,0.85,1.277,1.01,2.442,0.767,0.518,1.036,0.879,2.167,1.231,0.987,1.148,1.092,1.941,0.876,1.231,0.781,0.988,1.114 +NM_002628,0.652,1.008,0.859,0.806,0.995,0.858,0.608,0.762,1.079,1.104,1.202,1.172,1.074,0.865,1.055,2.282,0.748,0.744,1.513,0.964,0.964,0.564,1.43,1.666,0.748,0.725,1.625,0.903,0.665,2.26,1.281,3.201,2.541,1.492,0.723,1.032,0.806,0.955,0.916,0.701,1.218,1.072,0.769,2.122,0.726,1.739,1.566,0.657,0.85,0.725,0.776,0.822,1.429,3.641 +NM_002629,1.322,0.521,1.476,0.801,1.512,0.82,0.35,0.691,1.959,1.566,0.695,1.152,0.884,0.883,0.996,1.735,1.257,1.41,2.737,0.488,0.983,0.963,0.987,1.603,0.362,2.078,1.357,1.607,0.293,0.665,1.255,0.687,1.304,0.74,0.416,0.886,0.977,1.437,1.173,0.608,1.725,0.779,0.551,1.507,1.844,0.772,1.307,1.3,1.0,1.994,0.9,0.839,1.884,0.933 +NM_002630,0.47,255.3,0.662,51.32,0.51,39.52,58.7,0.508,1.141,0.852,1.83,0.576,0.503,0.593,0.872,0.565,0.71,24.25,0.544,29.86,0.597,0.893,0.708,1.108,187.1,0.603,0.634,0.518,11.56,144.6,0.535,48.66,0.752,205.2,0.678,1.171,132.1,0.572,7.677,0.703,0.55,48.43,4.456,1.414,0.618,0.535,1.031,0.542,1.206,0.64,1.404,2.793,0.587,0.668 +NM_002631,2.393,0.724,3.217,1.826,2.602,0.827,0.432,0.945,4.097,3.585,0.431,1.274,1.474,2.185,1.747,1.432,3.196,1.985,4.463,0.579,1.692,1.371,0.663,3.203,0.495,3.556,2.611,2.201,0.345,0.888,3.155,0.583,1.065,0.745,2.147,0.514,0.552,2.538,1.414,0.523,3.276,0.531,0.426,1.129,2.574,0.603,1.462,1.629,0.534,2.47,0.859,0.601,2.462,0.689 +NM_002632,1.056,1.136,0.967,0.866,1.197,1.086,1.062,1.028,0.866,0.944,1.096,0.915,1.023,0.764,0.83,1.108,0.854,1.106,0.84,0.959,1.016,0.915,0.97,0.987,0.878,1.0,0.988,0.821,1.541,1.105,0.879,1.184,0.93,1.202,0.956,0.951,0.844,1.037,1.276,1.767,1.058,0.969,1.195,1.044,1.067,1.066,0.871,1.206,0.934,1.125,0.903,1.072,1.014,1.203 +NM_002633,0.896,0.892,1.038,1.021,0.708,1.275,0.502,0.414,1.143,0.906,1.598,0.832,0.641,0.929,1.03,1.733,0.777,0.877,1.087,0.772,0.391,0.781,1.488,1.095,0.784,1.067,1.013,0.909,0.344,1.417,0.896,1.351,1.608,1.768,0.199,0.53,1.739,0.725,1.204,0.432,0.833,1.743,0.817,1.304,1.009,1.035,0.658,0.591,0.889,0.761,1.293,0.681,1.086,1.467 +NM_002635,0.554,0.538,1.514,1.007,0.944,0.65,0.413,0.289,1.57,1.254,1.585,0.34,0.43,0.723,1.173,2.168,0.671,0.757,0.984,1.321,0.464,0.195,1.834,0.636,0.415,0.761,1.135,1.163,0.154,0.931,1.287,1.348,1.962,1.382,0.375,1.27,0.97,0.549,1.035,0.555,1.513,0.98,0.787,1.057,0.978,1.323,0.825,0.357,1.696,0.881,1.335,0.727,1.376,2.553 +NM_002636,0.941,1.103,0.912,0.988,0.915,1.301,0.82,0.88,0.89,1.005,0.796,0.932,0.954,1.069,1.071,0.995,0.96,0.977,0.903,1.024,1.079,1.14,0.816,0.949,1.085,1.094,0.922,0.744,1.02,1.096,0.865,1.579,1.149,1.234,1.254,0.812,1.041,0.981,1.473,0.959,0.893,1.145,1.246,1.263,1.107,0.936,1.048,1.194,0.948,0.946,0.918,0.859,0.956,1.404 +NM_002637,0.976,0.96,1.307,0.941,0.987,0.906,0.793,0.892,1.114,1.168,1.022,0.986,0.961,0.876,0.971,1.006,1.116,0.993,1.092,0.9,0.939,0.846,0.938,1.156,1.012,1.015,1.0,1.017,0.849,0.993,1.003,0.947,1.063,0.944,0.879,0.885,0.885,0.997,1.153,0.766,1.02,1.164,0.75,1.706,1.122,0.856,0.908,0.952,0.783,1.138,0.966,1.032,0.971,1.294 +NM_002638,1.779,0.0592,1.884,0.623,3.906,0.0325,0.0413,1.206,3.034,3.754,0.0374,2.401,1.062,0.993,0.753,1.818,2.398,2.299,3.334,0.223,1.022,1.197,0.14,3.431,0.0122,0.636,3.473,1.007,0.0137,0.198,2.527,0.155,1.661,0.0364,1.7,1.751,0.0363,0.794,0.281,0.124,2.774,0.0839,0.0717,0.157,3.609,0.139,2.902,2.097,0.249,2.972,0.874,2.84,2.862,1.263 +NM_002641,1.159,0.921,1.083,0.932,1.113,0.988,0.911,0.902,1.159,1.019,1.123,1.057,0.957,0.837,1.043,0.843,0.976,0.995,0.971,0.879,0.968,0.864,1.067,0.967,1.027,1.024,0.824,0.934,1.027,0.931,0.986,1.04,0.88,0.891,1.045,1.002,0.969,1.083,0.998,1.012,1.039,0.915,0.868,0.993,1.032,0.998,1.242,1.041,1.066,1.074,0.947,0.892,1.03,1.038 +NM_002643,0.779,1.291,1.048,1.039,0.795,1.337,0.696,0.573,1.026,0.796,1.223,0.768,0.747,0.583,0.929,2.005,0.781,1.002,1.116,1.106,0.484,0.788,1.274,1.019,0.745,0.844,1.26,0.754,0.69,1.243,0.804,0.786,2.079,1.5,0.276,1.016,1.408,0.782,1.873,0.827,0.762,1.067,0.773,1.533,0.808,1.212,0.961,0.849,1.033,0.772,1.128,0.68,0.659,1.082 +NM_002644,0.0167,3.122,0.0202,2.174,0.02,1.928,1.638,0.0196,0.0207,0.0188,2.603,0.0202,0.0387,0.0296,1.655,4.161,0.0231,1.883,0.0198,4.346,0.0255,0.0209,3.358,0.0228,1.07,0.0494,0.0186,0.0186,0.451,2.258,0.0164,0.961,0.0325,3.013,0.0245,1.239,4.265,0.0146,3.425,0.0357,0.024,4.378,2.749,0.114,0.0191,2.935,0.458,0.0204,2.972,0.0174,3.336,0.565,0.0571,0.218 +NM_002645,0.996,1.021,0.926,1.197,0.916,0.974,0.939,0.916,1.027,1.047,1.19,0.905,0.901,0.95,0.997,1.006,0.977,0.846,1.05,0.987,0.956,1.028,1.099,0.919,1.196,0.978,1.026,0.948,1.044,0.869,1.003,0.974,1.166,0.976,0.98,0.975,1.148,0.847,0.956,0.999,1.051,1.001,0.914,1.009,1.024,1.04,1.017,0.978,1.05,0.842,1.043,0.999,1.062,1.126 +NM_002646,1.004,1.154,1.024,0.906,0.805,1.198,1.157,0.905,0.955,1.082,1.041,0.899,0.987,1.018,0.998,0.927,0.976,1.169,0.72,0.982,0.862,0.885,1.038,0.92,1.016,0.98,0.924,0.921,0.948,1.115,0.9,0.89,1.039,1.011,0.933,1.155,1.069,1.053,1.077,0.936,0.927,0.996,1.045,1.031,0.976,1.023,1.01,0.904,0.938,0.921,0.912,0.897,0.985,0.921 +NM_002647,0.668,0.69,1.127,0.857,0.897,1.02,0.893,0.614,1.507,0.808,1.01,0.73,0.688,0.677,1.042,1.551,0.874,0.93,1.444,1.076,0.712,0.91,0.983,0.981,0.712,0.988,1.245,0.785,0.645,1.441,1.062,1.046,1.186,1.315,0.473,0.684,1.004,0.996,1.392,0.62,0.981,1.208,0.723,1.199,0.905,1.063,0.889,0.834,0.992,0.896,1.043,0.772,1.064,1.156 +NM_002648,2.33,0.465,3.186,1.025,2.97,0.501,0.54,2.727,3.316,2.235,0.462,1.803,1.541,2.006,1.95,1.015,2.611,1.45,2.677,0.543,1.371,2.597,0.509,2.655,0.476,2.271,1.901,3.106,0.465,0.612,3.476,0.664,0.94,0.627,3.358,0.458,0.57,1.938,0.609,0.9,3.134,0.595,0.634,0.463,3.683,0.537,1.686,2.774,0.717,2.657,0.768,0.656,3.201,1.097 +NM_002650,1.451,2.133,1.8539999999999999,1.7570000000000001,1.851,2.23,1.4540000000000002,1.463,2.3289999999999997,1.813,2.014,1.728,1.3940000000000001,1.676,1.81,2.268,1.8559999999999999,2.056,1.7469999999999999,2.257,1.4589999999999999,1.658,2.116,1.972,1.674,1.499,2.0869999999999997,1.6749999999999998,1.2349999999999999,2.542,1.811,2.585,2.408,2.662,1.677,1.949,2.2889999999999997,1.813,2.276,2.362,1.943,2.508,1.895,1.669,1.792,2.3,1.802,1.56,1.9649999999999999,1.4500000000000002,2.314,1.767,1.795,2.441 +NM_002651,0.996,0.874,0.991,0.817,0.994,1.147,0.917,0.794,1.133,0.999,1.223,0.87,0.759,0.976,0.988,1.093,0.887,0.825,1.116,0.97,0.82,0.805,1.02,1.072,0.811,1.067,1.134,0.952,0.714,0.952,1.061,1.701,1.555,1.261,0.954,0.931,0.889,0.929,1.312,0.89,1.077,1.018,0.926,1.107,1.034,0.831,0.91,1.001,0.964,0.865,1.036,0.862,1.292,1.5 +NM_002652,1.042,0.915,1.094,1.225,1.064,1.058,1.022,0.965,0.971,1.028,1.061,1.078,1.089,0.878,1.191,1.183,1.016,1.019,1.038,1.367,1.023,1.027,0.979,1.017,0.932,0.995,0.971,0.979,1.145,0.988,1.004,1.018,1.012,0.926,0.995,0.936,1.05,0.972,0.981,1.065,1.135,3.17,0.84,0.898,0.95,1.073,1.089,1.123,1.039,0.893,1.041,1.141,1.014,0.992 +NM_002653,3.522,0.503,3.629,1.51,3.395,0.624,0.568,3.207,3.689,3.024,0.705,2.796,3.448,1.631,2.251,1.622,2.642,2.333,4.146,0.815,2.218,4.145,0.64,3.723,0.572,3.822,2.545,3.04,0.428,0.615,4.851,0.683,1.729,0.813,5.631,0.602,0.537,3.581,0.859,0.458,2.773,0.597,0.513,0.668,4.011,0.525,1.577,7.039,0.551,3.603,0.807,0.924,2.55,0.798 +NM_002654,2.8899999999999997,1.325,2.577,2.6020000000000003,1.714,1.686,1.119,1.422,1.674,2.281,1.6280000000000001,2.007,1.615,1.3900000000000001,1.545,3.515,1.851,1.95,3.283,1.483,2.9859999999999998,1.775,2.332,1.9169999999999998,1.585,2.779,2.622,1.545,0.9059999999999999,1.46,1.6829999999999998,1.6829999999999998,4.5,1.562,1.058,2.527,1.5070000000000001,2.351,5.571,2.221,2.232,1.374,1.076,4.413,2.705,1.4100000000000001,1.745,2.2270000000000003,2.121,3.9450000000000003,2.011,2.0940000000000003,2.707,2.053 +NM_002655,0.975,0.89,0.994,1.033,1.208,0.877,1.251,1.035,1.074,0.923,0.796,1.089,1.042,0.804,0.924,0.999,1.071,0.979,1.025,0.9,0.954,1.034,0.899,0.907,1.069,1.001,1.109,1.106,0.829,0.848,1.159,0.889,1.242,0.891,1.021,1.082,0.993,0.921,1.028,1.498,0.93,0.852,0.844,0.917,0.976,1.042,1.002,0.978,1.065,1.107,0.977,1.081,0.928,0.842 +NM_002656,1.08,0.911,1.26,0.886,1.124,0.908,0.75,1.274,1.372,1.089,1.0,1.191,1.095,0.935,1.04,0.953,1.195,0.882,0.929,0.827,1.014,1.281,0.854,1.212,0.956,0.942,1.457,1.12,0.568,1.074,1.443,1.042,1.007,1.032,0.977,1.021,0.856,1.09,0.997,0.942,1.139,0.971,0.992,1.062,1.251,0.94,1.12,1.062,0.973,1.117,1.071,1.023,0.845,0.949 +NM_002657,1.047,0.831,1.34,0.766,0.849,1.026,0.663,0.788,1.45,0.933,0.885,0.69,0.788,0.957,0.912,1.265,0.778,0.832,1.415,0.81,0.754,1.049,1.321,0.916,0.735,1.222,1.289,0.9,0.579,1.042,1.223,0.905,2.677,0.932,0.687,0.807,1.042,1.077,1.224,1.591,0.951,1.19,0.674,1.409,1.176,0.793,1.001,1.067,0.767,1.525,0.966,0.828,1.162,3.241 +NM_002658,0.78,0.812,2.348,0.936,1.245,0.664,0.573,0.526,0.907,0.88,0.507,0.714,0.604,0.84,0.905,0.669,1.31,0.65,1.126,1.124,0.683,0.993,1.294,0.792,0.492,0.768,2.134,0.835,0.291,2.17,0.72,14.17,2.783,1.138,0.549,0.979,0.624,0.959,3.461,8.872,1.32,0.886,1.001,0.817,0.826,1.048,1.439,0.785,0.694,0.685,0.985,5.638,1.089,13.87 +NM_002661,0.883,1.547,1.152,0.854,0.973,0.899,0.917,0.693,0.921,0.933,0.996,0.85,0.635,0.937,0.879,1.155,1.003,0.999,1.255,0.901,0.823,0.91,1.303,0.989,0.875,0.829,1.214,0.654,0.789,0.961,0.75,1.068,0.966,1.193,0.687,1.04,1.042,1.052,1.309,1.131,0.838,1.62,0.929,1.472,0.813,0.857,0.874,0.751,0.855,0.759,1.035,0.959,1.099,1.402 +NM_002662,1.142,0.888,1.754,0.705,1.725,0.777,0.554,1.474,1.742,1.516,0.998,1.397,0.884,1.487,1.489,1.842,1.151,0.991,2.547,0.985,0.969,1.621,1.019,1.356,0.467,1.54,1.819,1.694,0.746,0.707,1.558,0.583,0.887,0.722,0.919,0.669,1.347,1.736,0.712,0.848,1.408,1.008,0.948,0.5,1.307,1.115,1.235,1.086,0.948,1.191,1.002,0.579,1.335,0.843 +NM_002663,1.701,0.758,1.883,1.087,1.392,0.9,0.89,1.088,1.514,1.338,0.955,1.265,1.305,1.342,1.122,1.045,1.45,1.247,2.128,0.929,1.101,1.563,0.933,1.445,0.787,1.526,1.695,1.037,1.052,0.843,1.237,0.975,1.397,0.822,1.541,0.662,0.802,1.288,0.888,0.803,1.363,0.977,0.78,0.991,1.614,0.734,0.911,1.683,0.777,2.085,0.93,0.991,1.803,0.809 +NM_002664,0.798,1.097,1.141,1.597,0.865,0.943,1.189,0.719,0.943,0.82,0.704,0.842,0.851,0.64,1.013,0.758,0.993,0.975,0.805,0.737,0.682,0.831,1.062,0.898,1.017,0.718,1.256,0.83,0.639,1.111,0.757,1.896,0.972,1.271,0.533,0.644,1.095,0.842,2.526,11.73,0.981,1.757,0.798,0.927,1.294,0.861,0.987,0.807,0.697,0.934,1.174,3.203,1.046,2.665 +NM_002666,0.941,1.135,0.999,1.237,1.033,0.967,0.905,0.99,1.002,0.999,0.982,0.953,1.067,1.111,1.001,1.006,0.965,1.001,0.954,1.055,0.938,0.967,1.058,1.114,0.994,1.142,1.034,0.846,1.158,1.086,1.125,0.853,0.953,0.904,1.08,0.936,1.148,0.95,1.001,1.033,0.859,1.161,1.476,0.965,1.16,1.109,0.952,0.997,1.087,1.015,0.966,1.199,1.188,0.903 +NM_002668,1.379,0.419,1.672,0.995,1.359,0.601,0.328,0.903,1.307,1.583,0.437,1.464,1.3,0.897,0.854,1.097,1.501,1.172,2.525,0.422,1.086,1.401,0.668,1.53,0.433,1.817,1.429,1.065,0.425,0.69,1.029,0.647,1.601,0.895,0.262,1.801,0.639,1.934,1.018,0.577,1.599,0.481,0.33,0.659,1.628,0.576,0.809,1.659,0.655,1.714,0.673,0.931,1.734,0.862 +NM_002669,0.67,0.9,1.765,0.655,0.915,1.051,0.776,0.493,1.6,1.319,0.946,0.853,0.636,0.615,0.909,1.466,1.0,0.986,1.6,0.872,0.784,0.79,1.049,1.377,0.55,0.737,2.132,0.896,0.415,1.108,0.942,1.315,1.489,1.329,0.244,0.58,0.896,0.833,1.238,0.783,1.639,1.068,0.713,1.191,1.481,1.014,1.032,0.668,1.028,0.834,0.935,0.892,1.56,1.385 +NM_002670,0.518,1.182,0.389,0.995,0.593,2.267,1.002,0.564,0.555,0.269,2.04,0.367,0.332,0.306,1.877,4.082,0.5,1.22,0.346,1.7,0.185,0.498,2.159,0.322,0.477,0.402,0.389,0.438,0.889,1.639,0.731,1.243,1.543,1.792,0.514,0.603,3.576,0.353,1.933,0.407,0.385,1.67,1.729,1.46,0.313,2.766,0.92,0.555,3.12,0.44,2.165,0.547,0.314,1.203 +NM_002673,1.031,0.851,0.906,0.946,0.987,0.935,0.825,0.727,1.276,1.059,0.708,0.901,1.083,1.098,0.835,0.975,1.271,0.937,1.185,0.876,0.972,1.139,0.934,1.17,0.848,1.138,1.032,0.936,1.22,0.842,0.963,1.192,1.066,1.047,0.929,0.799,1.091,0.997,1.184,1.172,0.964,0.999,0.723,1.203,0.771,0.972,0.89,1.14,0.95,1.138,0.973,1.074,1.345,1.262 +NM_002676,1.861,1.0,1.026,0.983,1.71,1.05,0.621,1.852,2.798,1.383,0.73,1.348,1.561,1.587,1.628,1.294,0.802,1.424,1.58,0.94,1.009,2.658,0.741,1.755,0.887,2.826,0.7,1.791,0.725,1.248,1.828,1.01,0.638,1.053,3.115,0.512,0.841,2.093,0.696,0.597,1.609,0.953,0.566,0.6,1.2,0.716,0.928,3.079,0.681,0.893,0.704,0.661,0.718,0.796 +NM_002677,0.903,1.18,0.972,0.938,0.832,1.045,1.103,1.11,0.891,1.011,0.968,1.052,0.931,0.84,1.475,1.074,0.913,1.03,0.873,1.056,1.021,1.155,1.007,0.885,1.024,0.993,1.003,0.958,0.868,1.528,1.047,0.965,1.039,1.388,0.901,1.045,0.892,1.003,0.864,0.957,0.884,1.075,1.111,1.034,0.876,1.006,0.959,0.961,1.158,1.091,1.103,1.025,2.151,0.943 +NM_002685,0.64,1.163,1.142,0.669,0.849,0.912,0.577,0.368,1.127,0.952,0.861,0.837,0.489,0.572,0.999,1.032,0.793,0.911,1.074,1.125,0.507,0.811,1.433,0.927,0.643,0.783,1.202,0.781,0.489,1.046,0.746,1.075,1.402,1.071,0.188,1.474,0.97,0.904,1.8,1.168,1.07,1.016,0.581,1.218,1.086,1.001,0.967,0.708,1.086,0.734,1.048,0.976,0.893,1.991 +NM_002686,0.953,1.068,0.992,0.848,0.824,1.105,1.019,0.883,1.018,1.013,1.086,1.128,0.964,1.043,0.76,1.221,0.891,1.099,1.051,1.028,0.948,0.964,1.15,0.961,0.956,0.875,0.947,0.934,0.853,1.028,1.117,1.077,0.961,1.094,0.925,0.945,1.031,0.942,1.005,1.025,0.798,1.05,0.926,1.08,0.886,0.894,0.96,0.986,1.01,0.994,1.005,0.859,0.894,1.001 +NM_002687,0.92,0.931,1.214,0.907,1.197,0.894,0.984,0.802,1.151,0.959,1.075,0.955,0.76,0.903,1.04,1.154,0.975,0.87,0.863,1.0,0.883,1.077,1.034,1.048,0.829,0.87,1.125,0.97,1.124,1.112,1.118,1.107,1.6,1.052,0.986,1.063,0.948,1.041,1.111,1.108,1.159,0.915,1.015,0.892,0.99,0.937,0.719,0.906,0.985,1.03,1.008,1.0,0.893,0.976 +NM_002688,2.609,0.451,4.765,1.027,3.109,0.352,0.314,2.377,4.497,3.943,0.507,3.1,1.668,2.673,1.572,1.101,3.083,1.923,4.253,0.47,1.499,3.525,0.42,3.853,0.782,2.876,2.853,2.972,0.438,0.413,4.01,1.26,1.597,0.61,1.016,0.335,0.41,3.085,0.486,0.543,3.908,0.477,0.396,0.384,3.365,0.438,2.606,3.391,0.459,3.87,0.76,0.832,3.584,0.722 +NM_002689,0.769,1.046,1.001,0.912,0.809,1.033,0.695,0.488,1.092,1.064,0.648,0.981,0.731,0.587,0.813,1.297,0.769,0.923,1.048,0.891,0.631,0.891,1.543,1.179,0.722,0.743,1.547,0.714,0.528,1.556,0.756,1.168,1.947,0.98,0.321,2.307,1.131,0.864,2.0,1.556,1.087,1.055,0.701,1.662,1.185,1.01,0.996,0.771,1.262,0.934,1.261,1.001,1.056,1.202 +NM_002690,0.865,1.015,1.242,0.859,1.42,0.846,0.693,0.811,1.102,0.861,0.976,1.116,1.109,0.839,0.823,0.966,2.584,0.865,1.448,0.934,0.727,1.236,0.897,1.049,0.788,1.017,1.665,1.223,0.603,0.88,0.9,0.979,2.289,1.076,2.008,0.925,0.931,1.387,1.19,0.749,1.274,0.754,0.884,1.198,2.149,0.954,1.152,1.012,1.008,1.54,0.824,1.219,1.201,1.866 +NM_002691,0.523,1.615,0.52,1.651,0.485,1.926,1.393,0.388,0.556,0.549,1.305,0.541,0.459,0.382,1.004,1.585,0.467,2.195,0.578,2.025,0.511,0.544,1.911,0.581,1.877,0.566,0.915,0.421,0.996,1.898,0.465,0.758,1.867,1.899,0.312,0.915,1.534,0.544,2.719,0.71,0.561,1.813,0.808,1.363,0.601,1.458,0.71,0.58,0.66,0.651,1.572,0.629,0.598,0.733 +NM_002692,0.929,0.903,0.953,0.859,0.899,1.034,0.783,0.796,1.246,1.1,0.997,1.026,0.967,0.84,1.216,1.156,0.836,1.005,1.379,0.886,0.744,0.876,1.34,1.083,0.73,0.793,1.197,0.79,0.714,0.94,0.85,0.77,2.234,1.084,0.623,1.156,1.041,0.893,1.576,0.923,1.007,0.957,1.275,1.688,0.906,1.118,1.163,0.802,1.248,0.93,1.015,1.02,1.144,1.913 +NM_002693,0.718,0.964,1.253,0.732,0.861,1.036,0.717,0.461,1.222,0.944,0.917,0.975,0.6,0.734,1.099,1.343,0.983,0.851,1.159,1.163,0.604,1.002,1.764,1.261,0.659,0.877,1.573,0.755,0.516,1.071,0.932,1.283,1.644,1.17,0.378,0.969,0.957,0.902,1.515,0.917,0.998,1.288,0.774,0.725,1.146,1.073,0.797,0.841,0.845,0.858,1.226,0.725,0.915,1.181 +NM_002694,0.756,1.181,1.139,0.741,0.797,0.934,0.746,0.441,0.998,1.019,1.16,0.835,0.713,0.709,0.858,1.226,0.865,0.996,0.873,0.981,0.512,0.853,1.165,1.064,0.748,0.825,1.198,0.728,0.543,1.206,0.759,1.389,2.387,1.355,0.247,1.181,1.276,0.891,1.338,0.865,1.073,1.13,0.821,1.746,1.071,0.96,1.097,0.796,0.895,0.68,0.935,1.022,0.936,2.976 +NM_002696,0.663,0.996,1.248,0.68,0.89,1.127,0.393,0.487,1.277,1.031,0.98,0.817,0.647,0.708,0.96,1.67,0.867,0.837,1.654,0.889,0.577,0.86,1.183,1.306,0.551,0.988,1.616,0.899,0.424,1.371,0.997,1.853,2.711,1.718,0.151,1.357,0.881,0.92,0.965,0.905,1.29,0.991,0.694,1.698,0.94,0.862,1.031,0.628,0.757,0.821,1.037,0.941,1.23,1.722 +NM_002697,0.699,0.895,1.354,0.474,0.776,0.96,0.68,0.713,0.874,0.759,0.857,0.595,0.443,0.718,0.813,1.047,0.83,0.919,1.201,0.869,0.569,0.765,1.474,0.964,0.618,0.641,1.312,0.77,0.5,1.253,0.961,1.253,1.668,1.32,0.491,1.407,1.0,0.879,1.159,2.272,0.921,1.347,0.646,1.267,0.935,0.888,1.017,0.55,0.851,0.704,1.262,1.272,0.864,1.903 +NM_002700,0.952,0.859,1.058,1.09,1.069,1.054,0.827,0.983,1.106,0.999,0.948,0.924,1.222,0.897,1.068,0.909,1.019,0.978,1.236,1.096,0.902,1.082,1.0,0.864,0.877,1.239,1.023,0.965,1.065,0.923,0.968,0.959,1.011,0.968,0.945,1.001,1.081,1.065,0.886,0.925,1.174,0.981,0.881,0.887,1.004,1.049,1.101,1.098,0.964,0.915,1.052,0.996,1.052,1.07 +NM_002701,0.998,1.079,1.002,0.96,0.977,0.896,0.934,0.847,0.87,1.129,1.104,1.029,0.977,0.992,1.055,0.844,0.966,1.027,1.106,1.049,1.125,0.938,1.006,0.894,1.017,1.013,0.95,0.971,1.3,1.101,1.108,0.836,1.15,1.035,0.783,0.896,0.969,0.943,0.936,1.013,0.958,0.995,0.76,1.074,1.068,1.078,1.058,1.113,0.997,1.059,1.039,0.925,1.059,1.09 +NM_002703,0.79,1.297,1.152,0.871,0.818,0.952,1.028,0.771,0.938,1.243,0.951,0.967,0.88,0.768,0.855,1.118,0.814,0.91,0.967,0.988,0.778,0.761,1.509,0.977,0.8,0.843,1.231,0.784,0.534,0.863,0.991,1.243,2.666,1.023,0.646,0.971,1.058,0.888,1.967,1.435,0.927,1.202,0.85,2.196,1.096,0.943,0.944,0.784,1.113,0.946,1.132,0.998,1.02,1.833 +NM_002705,4.26,0.196,4.707,1.287,6.574,0.141,0.0976,4.722,8.076,4.34,0.0988,2.837,2.79,2.88,3.627,1.579,5.081,3.014,6.051,0.217,3.405,6.148,0.114,4.077,0.0806,5.269,4.329,5.358,0.101,0.159,6.943,0.333,2.597,0.193,10.41,0.129,0.144,8.508,0.327,0.162,4.683,0.192,0.0987,0.266,4.735,0.096,2.804,7.142,0.367,4.288,0.981,0.841,3.408,0.55 +NM_002707,0.861,0.778,0.848,0.687,1.021,0.962,0.555,0.612,1.044,1.22,0.707,1.019,0.627,0.743,0.823,1.133,1.021,0.896,0.907,0.881,0.429,0.762,1.543,1.316,0.655,0.907,1.002,0.968,0.401,1.128,0.921,1.008,1.677,0.973,1.087,1.092,1.104,0.878,1.236,1.469,1.187,1.064,0.901,1.654,1.215,0.914,1.268,1.047,1.071,0.75,1.167,1.019,0.868,1.5 +NM_002708,0.935,0.756,0.962,1.058,0.783,1.333,0.557,0.546,0.997,0.962,0.971,0.85,0.867,0.52,0.862,1.591,0.962,1.142,1.298,0.831,0.592,1.072,1.088,1.019,0.89,1.459,1.008,0.681,0.659,1.441,0.902,1.014,2.194,1.356,0.561,1.028,1.068,0.903,1.891,0.834,0.819,0.972,0.603,1.675,0.977,0.792,0.896,1.288,0.999,1.142,0.999,0.669,0.964,0.892 +NM_002709,0.841,0.71,1.864,0.618,1.619,1.493,0.804,1.833,1.833,1.049,0.936,1.8,1.536,0.923,1.223,2.009,1.299,1.534,1.096,1.045,0.243,1.756,0.985,1.883,0.509,0.465,1.621,1.594,0.537,1.019,1.737,0.652,1.503,0.997,1.089,0.225,1.318,1.652,0.971,0.814,1.256,1.029,0.592,0.295,1.408,0.962,1.199,1.431,1.003,1.326,1.102,0.763,0.414,0.879 +NM_002710,0.503,1.006,1.301,0.616,0.994,1.651,0.693,0.691,1.16,0.871,1.502,0.904,0.736,0.588,0.982,2.097,0.934,1.216,0.912,1.421,0.32,0.664,1.62,0.957,0.491,0.521,1.363,1.056,0.327,1.488,0.732,1.239,1.105,1.482,0.57,0.744,1.731,0.926,0.979,0.651,1.166,1.455,0.962,0.557,1.069,1.494,1.043,0.767,1.524,0.751,1.442,0.846,0.646,1.43 +NM_002711,1.084,0.951,0.955,0.97,1.138,1.022,1.008,1.053,1.001,0.959,1.214,0.945,1.121,1.017,1.237,0.94,0.857,1.055,1.014,1.045,1.062,0.917,0.954,0.986,1.062,0.981,0.916,0.945,1.034,1.019,1.103,0.757,0.878,0.903,0.962,1.087,1.01,1.023,0.938,0.909,1.029,0.997,0.826,1.019,0.994,0.983,1.002,1.083,0.88,0.943,0.971,1.03,1.008,0.964 +NM_002712,0.771,0.951,1.167,0.896,0.939,1.466,0.693,0.641,1.114,1.15,1.054,1.049,0.699,0.527,0.716,1.493,1.09,0.965,1.299,0.968,0.574,0.725,1.199,0.893,0.636,1.083,0.996,0.897,0.544,1.145,0.878,1.2,1.536,1.718,0.464,0.875,0.808,0.768,1.282,0.922,1.023,1.004,0.501,1.731,0.94,0.825,0.805,0.934,0.801,0.932,0.899,0.63,1.069,1.69 +NM_002713,1.129,1.019,0.91,1.014,0.964,1.021,0.979,1.137,0.933,0.933,1.054,1.124,0.998,1.21,1.033,0.961,1.085,1.057,1.023,1.006,1.089,1.099,0.99,1.0,1.026,0.997,0.987,0.965,0.808,0.938,1.025,0.985,0.855,1.023,0.902,0.888,1.147,1.041,1.065,0.989,0.911,1.0,0.935,0.953,1.137,1.204,1.001,0.969,1.075,1.015,1.172,0.996,1.157,0.98 +NM_002714,0.872,1.037,1.015,0.793,0.816,1.13,0.542,0.583,1.059,0.826,0.745,0.861,0.67,0.604,0.886,1.038,1.102,0.856,0.979,0.917,0.768,1.065,1.114,1.09,0.838,0.922,1.303,0.705,0.598,1.004,0.906,1.553,1.469,1.101,0.428,0.777,0.981,1.16,1.601,1.22,1.048,1.057,0.852,1.045,0.96,0.785,0.916,0.849,1.04,1.204,0.92,0.812,0.755,1.298 +NM_002715,0.765,0.753,1.279,0.565,1.297,1.288,0.55,1.051,1.296,1.175,0.886,1.113,0.868,0.669,1.084,1.681,1.012,1.0,1.294,0.858,0.454,0.998,0.957,1.449,0.387,0.741,1.627,1.165,0.335,1.063,1.305,0.863,1.432,0.985,1.08,0.546,1.122,1.255,1.159,0.712,1.435,0.856,0.693,0.663,1.294,0.98,1.321,1.081,1.035,0.939,0.988,0.905,0.981,1.282 +NM_002716,0.992,0.899,1.131,1.048,0.947,1.004,1.034,1.068,0.98,0.974,0.938,1.012,1.005,0.842,1.079,1.132,0.989,1.092,1.132,0.891,1.055,0.906,1.102,0.991,1.007,0.914,0.978,0.987,0.794,1.044,0.982,0.908,1.024,1.003,1.056,1.028,1.103,1.009,1.135,1.214,1.02,0.935,1.035,1.035,0.96,0.955,0.915,0.982,0.947,0.875,1.03,0.964,1.025,1.037 +NM_002717,1.311,0.477,1.561,0.83,1.423,0.85,0.442,0.928,2.492,1.907,0.827,1.278,1.169,1.207,1.168,1.217,1.247,1.143,1.905,0.584,1.015,1.008,0.848,1.751,0.469,1.472,1.794,1.674,0.363,0.757,1.708,0.579,1.43,0.826,1.088,0.575,0.779,1.345,1.15,0.629,2.0,0.78,0.779,0.866,1.68,1.213,1.393,1.076,1.302,1.247,0.825,0.738,1.813,1.235 +NM_002718,1.066,0.939,0.954,1.024,1.006,0.896,1.036,1.12,1.128,1.029,1.151,1.163,0.937,1.262,0.976,1.381,1.066,1.075,1.01,1.013,1.111,0.925,0.943,0.97,1.053,1.0,1.14,1.062,1.327,0.861,1.05,0.865,0.982,1.021,0.876,1.006,1.014,1.12,0.951,0.978,1.065,0.95,1.174,0.937,1.026,1.117,0.959,0.87,0.788,1.076,0.958,0.845,1.149,0.891 +NM_002719,1.102,1.07,1.073,1.041,1.092,1.11,0.863,0.957,1.016,1.044,1.007,0.931,0.948,1.045,1.043,1.087,0.975,0.93,0.997,1.037,1.007,0.984,1.017,0.984,1.082,0.941,1.099,0.932,0.975,1.03,1.006,0.937,1.031,1.056,1.0,0.989,1.015,0.894,0.901,1.029,1.063,1.054,0.924,0.929,0.95,0.916,1.025,0.988,1.031,0.914,0.92,0.981,0.998,0.931 +NM_002720,1.088,0.823,1.098,1.154,0.905,0.991,0.568,0.741,1.237,0.915,0.874,0.825,1.085,0.799,0.971,1.592,0.987,0.902,1.444,0.583,0.733,0.892,0.847,1.009,0.596,1.319,1.196,0.745,0.454,0.843,0.975,0.882,2.096,1.174,1.111,0.505,1.013,0.915,1.874,0.818,0.981,1.009,0.68,1.881,1.174,0.741,1.079,1.243,0.87,0.883,0.849,0.573,1.173,1.579 +NM_002721,0.698,0.966,1.254,0.634,1.164,1.263,0.533,0.913,1.346,1.001,1.151,1.315,0.829,0.702,1.173,1.545,0.944,0.926,1.466,0.817,0.532,1.103,0.993,1.371,0.445,0.986,1.189,1.232,0.45,1.089,1.168,1.072,1.551,1.063,1.087,0.611,1.126,1.163,1.162,0.868,1.228,0.922,0.614,0.785,1.099,0.966,0.891,1.12,0.829,0.908,0.895,0.709,0.918,1.308 +NM_002722,0.954,1.972,1.056,1.446,1.018,1.008,3.252,1.056,1.05,0.963,1.241,0.936,1.043,0.887,0.964,0.931,0.997,0.946,0.954,7.935,0.935,0.972,0.938,0.971,1.289,1.037,0.947,0.944,1.113,0.956,1.039,0.906,1.008,16.51,0.89,0.997,1.177,0.998,1.039,0.854,0.875,0.926,3.965,1.104,1.03,1.165,1.242,1.015,0.953,1.03,0.99,0.979,1.137,0.975 +NM_002723,0.925,0.967,1.033,0.925,0.807,1.011,1.122,0.928,0.945,1.07,0.935,1.092,1.044,1.005,1.041,1.008,1.004,1.109,1.144,1.033,0.88,0.985,0.908,1.056,0.968,0.975,0.867,1.017,0.819,1.04,1.065,1.071,0.879,1.077,1.144,0.945,0.973,0.919,0.996,1.073,0.86,0.937,0.929,0.981,1.024,1.039,1.053,1.138,0.968,0.988,1.029,0.964,0.996,0.981 +NM_002725,0.996,1.042,0.971,0.998,1.083,0.995,0.967,0.935,0.941,0.903,1.024,0.892,1.009,0.983,0.864,1.019,1.05,1.087,0.891,0.993,1.197,0.864,1.362,1.005,1.007,0.9,0.898,1.551,0.959,1.238,0.798,4.457,1.379,1.685,0.918,0.835,1.089,1.243,0.969,0.85,1.451,2.449,1.008,0.904,0.929,1.089,0.874,0.965,0.937,0.856,1.036,1.128,1.125,0.972 +NM_002726,0.622,1.296,0.978,0.682,0.837,1.305,0.624,0.354,0.889,0.846,1.089,0.646,0.433,0.481,1.112,2.282,0.707,0.756,0.88,1.375,0.402,0.778,1.833,0.847,0.543,0.682,0.924,0.698,0.533,1.216,0.709,1.029,1.636,1.242,0.286,0.997,1.258,0.769,1.852,0.951,0.831,1.661,1.198,1.269,1.026,1.419,1.124,0.632,2.072,0.838,1.38,0.682,0.782,1.71 +NM_002728,1.033,1.06,1.037,1.001,1.053,0.904,0.844,0.979,1.19,1.066,1.008,0.932,0.891,0.948,1.07,1.208,0.973,0.961,0.999,0.909,1.044,1.109,1.013,0.998,1.016,1.016,0.992,0.928,0.964,1.086,0.906,0.865,0.876,1.033,1.021,1.033,1.002,0.883,0.991,1.263,1.021,0.879,0.821,0.969,1.048,0.96,0.961,1.049,0.8,1.01,0.913,1.05,1.146,1.144 +NM_002729,0.895,1.122,1.051,0.931,1.03,1.223,0.922,0.945,0.979,0.976,0.97,0.908,1.066,0.996,0.847,1.061,0.823,0.899,0.851,1.027,0.893,0.94,1.108,0.989,0.946,0.867,1.206,0.898,0.986,1.06,0.954,1.497,1.369,1.07,0.999,0.928,0.958,1.065,1.5,1.217,1.317,1.139,0.976,1.103,0.921,1.021,1.115,0.886,1.018,1.029,1.072,1.304,0.763,1.492 +NM_002730,0.972,1.044,0.925,0.915,0.993,1.071,0.816,0.982,1.032,1.039,1.134,0.929,1.068,0.814,0.835,1.234,0.976,0.918,1.043,0.874,0.946,0.949,0.98,1.104,0.93,1.044,1.011,0.922,1.049,1.002,0.82,1.052,1.362,0.964,0.937,0.898,0.927,1.032,1.163,1.155,0.994,1.013,0.791,0.962,0.945,0.882,0.982,1.069,0.872,0.917,1.036,0.9,0.99,0.974 +NM_002731,1.7970000000000002,1.932,2.003,1.9049999999999998,1.886,2.482,2.257,2.0839999999999996,1.9209999999999998,1.6400000000000001,3.355,1.758,1.781,2.27,2.234,3.2569999999999997,1.945,2.2590000000000003,2.2199999999999998,2.715,1.866,1.706,2.6639999999999997,1.77,1.958,1.776,1.807,1.838,1.648,2.002,1.886,1.8,2.1879999999999997,2.636,2.166,1.842,2.349,1.7959999999999998,2.2729999999999997,1.658,2.151,2.3040000000000003,2.0300000000000002,1.634,1.845,2.7969999999999997,2.105,2.137,2.357,1.73,2.6109999999999998,1.8760000000000001,1.8479999999999999,2.642 +NM_002732,1.043,1.168,0.973,1.013,0.948,0.9,0.919,1.108,1.055,0.869,1.038,0.992,1.044,1.047,1.107,0.935,0.957,1.192,0.929,1.061,1.089,0.995,1.019,0.967,0.971,1.129,0.956,1.065,1.078,0.955,0.964,1.0,1.041,0.894,1.058,0.976,0.892,1.009,1.022,1.018,1.035,1.024,0.949,1.015,1.039,0.971,1.052,1.0,0.833,1.144,0.923,1.123,1.148,0.917 +NM_002733,0.997,1.045,1.075,0.902,0.943,1.003,0.572,0.548,1.003,1.019,1.124,0.853,0.839,0.71,0.774,1.155,1.06,1.139,1.639,0.663,0.805,1.371,1.021,1.104,0.841,1.347,1.117,0.758,0.865,1.147,0.758,0.85,0.847,1.146,0.358,0.979,1.123,1.233,1.738,0.55,1.121,1.204,0.708,1.717,0.974,0.949,0.956,1.453,0.802,1.027,0.84,0.799,0.987,0.831 +NM_002734,0.707,0.988,1.504,0.566,1.018,0.751,0.739,0.446,1.438,1.065,0.864,0.532,0.421,0.898,0.809,0.982,0.887,0.855,1.447,0.631,0.623,0.762,1.054,1.083,0.524,0.745,1.509,0.985,0.476,1.077,1.008,1.336,1.092,1.312,0.322,0.629,1.011,0.868,1.211,1.016,1.286,1.083,0.66,1.25,1.084,0.883,0.75,0.657,0.591,0.78,0.894,1.143,1.171,1.165 +NM_002735,0.997,1.166,0.925,1.112,0.933,1.146,1.086,0.922,0.945,0.939,0.962,1.018,0.99,1.076,1.04,1.163,0.911,1.038,0.989,0.981,0.909,1.034,1.045,0.985,1.008,1.029,0.884,0.999,1.308,1.026,0.846,0.888,1.109,0.936,1.027,0.934,0.928,0.918,1.112,0.994,1.067,0.89,1.426,1.292,0.996,1.086,0.938,0.855,0.899,0.931,1.093,1.088,0.808,1.048 +NM_002736,0.875,1.238,0.882,0.923,0.892,1.494,1.092,0.854,0.807,0.861,1.387,0.899,0.905,0.857,1.382,1.3,0.864,0.941,0.918,0.993,0.909,0.906,1.278,0.954,1.034,0.925,0.955,1.034,0.845,1.25,0.82,1.577,1.023,2.006,0.752,1.027,1.022,0.851,1.689,0.791,0.933,1.893,0.867,0.862,0.867,1.178,0.949,0.759,0.838,0.941,1.472,1.182,1.055,1.171 +NM_002737,0.963,1.01,0.976,0.976,1.085,1.029,0.899,1.087,0.967,0.934,0.969,1.032,0.984,1.013,1.024,0.94,0.932,1.057,0.976,1.019,1.008,1.033,0.936,0.997,1.027,0.885,1.116,0.958,0.688,0.91,1.059,1.113,1.096,1.008,1.118,0.892,0.947,1.162,1.065,1.065,0.865,1.059,0.868,1.059,0.996,0.957,0.999,0.874,1.0,1.042,1.011,1.004,1.002,0.802 +NM_002738,0.841,1.007,1.206,1.06,0.864,0.886,1.195,0.829,0.954,0.922,0.884,0.97,0.997,0.829,0.864,0.917,0.931,0.87,0.983,1.037,0.795,1.028,1.002,0.959,0.859,0.94,1.197,1.013,0.781,1.226,1.136,1.335,0.99,1.23,0.832,0.856,0.96,1.046,1.333,2.6,1.092,1.519,0.982,0.907,0.956,0.865,0.986,0.948,0.865,0.838,0.892,1.433,1.174,1.697 +NM_002739,1.003,1.054,1.042,0.968,0.987,1.029,1.05,1.019,1.115,1.005,0.96,1.047,1.097,0.914,1.448,0.988,0.926,1.03,1.102,1.065,0.819,0.976,0.904,0.979,0.989,0.886,1.114,1.048,1.201,0.971,1.022,0.984,1.115,1.006,0.904,0.97,0.942,0.954,0.926,0.963,0.897,0.983,1.048,1.023,0.9,1.025,0.898,0.963,0.991,1.007,1.126,0.888,1.01,0.947 +NM_002741,0.871,1.264,0.756,1.01,0.868,1.651,0.94,0.858,0.795,0.818,0.885,0.87,0.956,0.723,0.879,0.965,0.724,1.19,0.784,1.042,0.941,0.81,1.094,0.854,1.134,0.873,0.824,0.846,1.151,1.206,0.761,1.91,1.813,2.16,0.89,1.038,0.908,0.948,2.321,1.724,0.909,1.238,0.804,1.157,0.845,0.856,0.785,0.798,0.817,0.845,0.959,0.998,0.73,1.311 +NM_002742,0.924,0.919,0.919,0.944,0.885,1.003,0.808,1.088,0.963,1.007,1.132,1.05,1.015,0.954,0.993,1.023,0.955,0.983,0.941,1.064,0.929,0.971,1.112,1.012,1.105,1.131,0.938,0.972,0.843,1.005,0.899,1.906,0.985,1.141,0.929,1.126,0.954,0.852,0.961,1.073,1.027,1.088,1.01,0.989,1.065,0.966,0.982,0.892,0.999,0.985,1.104,0.953,0.984,0.899 +NM_002743,0.755,0.912,0.908,0.959,0.685,1.083,0.646,0.653,0.705,0.724,1.001,0.507,0.71,0.663,0.775,1.585,0.851,0.62,1.191,0.945,0.963,0.755,1.48,0.724,0.996,0.912,1.0,0.548,0.649,1.096,0.661,1.373,3.434,1.351,0.528,1.295,0.844,0.676,2.401,1.416,0.672,1.314,0.713,2.121,0.803,0.713,0.718,1.004,0.851,1.038,0.972,1.13,0.992,1.66 +NM_002745,0.847,0.767,1.45,0.547,1.597,1.002,0.516,1.086,1.62,1.327,0.815,1.015,0.703,0.917,1.097,1.459,1.235,1.196,1.811,0.638,0.61,1.303,0.831,1.629,0.436,1.149,1.985,1.353,0.497,0.98,1.545,0.824,1.451,1.016,1.03,0.498,1.031,1.847,1.061,0.54,1.472,0.722,0.516,0.625,1.309,0.803,1.201,1.356,0.643,1.069,0.998,0.773,1.057,0.899 +NM_002746,0.897,0.649,0.857,0.82,1.192,1.537,0.704,0.866,1.158,1.005,1.418,0.774,0.755,0.755,1.085,1.908,0.695,1.276,1.313,1.197,0.429,1.086,1.188,1.065,0.583,1.228,0.726,1.186,0.483,1.143,1.062,0.831,0.814,1.553,1.246,0.856,1.307,1.202,1.325,0.628,1.01,1.194,0.666,0.632,0.935,1.318,1.242,1.63,1.263,0.846,1.194,0.34,0.764,0.346 +NM_002748,0.842,0.824,1.662,0.658,1.071,1.235,0.577,0.962,1.013,1.086,1.259,0.912,0.779,0.627,0.978,1.734,1.06,1.406,1.64,0.762,0.492,0.904,1.34,1.225,0.407,0.915,1.786,1.186,0.476,0.745,1.062,0.563,1.036,0.976,1.193,0.49,1.289,1.162,1.581,0.489,1.23,0.737,0.704,0.642,1.205,1.186,1.051,0.98,1.261,1.293,1.217,0.729,1.18,1.027 +NM_002749,1.033,1.087,0.878,0.97,1.06,0.971,1.047,1.323,1.112,1.013,0.9,1.188,0.916,1.111,0.897,1.159,1.132,0.828,0.928,1.068,1.067,0.985,0.976,1.064,1.123,0.866,1.123,1.24,1.792,1.049,1.009,1.065,0.899,0.999,0.945,1.277,0.928,1.023,0.952,0.998,0.972,1.014,1.066,0.836,0.912,0.846,1.065,1.037,0.951,0.94,1.102,1.149,0.823,0.997 +NM_002751,1.063,1.054,1.089,0.885,0.842,0.954,1.077,0.929,1.038,1.049,0.903,0.933,1.008,0.999,0.821,0.815,1.052,0.932,1.055,1.047,0.932,0.881,1.078,1.075,1.062,0.961,1.022,0.993,1.039,1.006,1.001,1.139,1.012,1.108,0.939,0.984,0.906,1.004,1.076,1.078,0.834,0.988,1.132,1.04,1.028,0.962,1.014,0.969,0.937,1.039,0.943,1.082,0.942,0.909 +NM_002755,1.095,0.647,1.568,0.715,1.266,0.968,0.441,1.343,1.891,0.858,0.728,0.916,1.025,1.61,1.418,1.41,1.503,1.031,1.883,0.608,0.748,1.175,1.05,1.188,0.422,1.575,1.522,1.713,0.42,0.847,2.501,0.836,1.625,1.075,3.965,0.663,0.889,1.714,1.365,0.741,1.828,0.893,0.505,0.703,1.392,0.749,0.906,1.712,0.776,1.281,0.935,0.756,1.337,1.315 +NM_002758,1.284,1.091,1.038,0.968,0.977,0.994,0.918,0.816,1.029,1.081,1.153,1.187,0.898,1.107,1.18,1.209,1.116,1.047,0.979,1.108,0.885,0.721,0.927,0.868,0.966,0.999,1.015,0.896,0.962,0.93,0.972,1.232,1.186,1.056,1.09,0.942,0.999,0.776,1.129,0.899,1.068,1.119,0.962,1.119,0.959,0.888,0.813,0.922,1.083,1.063,0.972,1.171,0.941,1.136 +NM_002759,0.993,0.966,1.113,0.898,0.998,1.059,1.198,0.973,0.906,0.89,1.03,1.119,0.999,0.981,0.9,1.096,0.965,1.14,0.956,0.884,1.15,1.011,1.103,0.983,0.976,0.971,1.011,0.93,0.63,1.001,0.926,1.089,1.097,0.953,0.957,0.985,0.926,0.925,1.021,1.099,0.938,0.917,0.831,0.99,1.13,0.933,0.929,0.871,1.012,1.057,1.019,0.94,1.085,0.961 +NM_002760,1.193,0.934,1.607,0.916,1.556,0.824,0.639,1.016,1.522,1.068,0.684,1.457,1.155,0.971,1.239,1.01,1.152,0.863,2.03,0.779,1.622,1.509,0.991,1.407,0.686,1.166,1.759,1.356,0.35,0.901,1.184,1.107,1.129,0.904,0.693,0.83,0.801,1.356,0.852,1.025,1.436,0.947,0.807,0.745,1.055,0.784,0.889,1.001,0.953,1.029,0.999,0.734,1.652,1.209 +NM_002761,0.984,1.014,0.906,0.951,1.073,0.991,0.975,0.938,0.952,1.06,0.987,1.188,1.036,0.939,1.021,0.959,0.903,0.986,0.938,1.144,0.932,0.966,1.051,0.932,0.902,1.032,0.944,1.01,0.716,1.004,1.047,1.011,0.892,1.105,1.092,1.146,0.909,1.014,1.018,0.937,1.035,0.958,0.765,1.147,1.022,1.026,1.217,1.056,0.932,1.051,1.034,0.845,0.93,0.969 +NM_002762,0.958,0.948,1.011,1.053,0.919,0.89,1.098,1.152,1.014,1.145,1.114,0.974,0.974,1.014,1.059,1.079,0.924,0.945,0.854,0.875,0.87,0.999,1.032,0.868,0.985,1.081,1.088,0.917,0.982,0.862,0.947,1.056,1.003,0.914,0.875,0.958,1.053,1.068,1.071,0.905,0.947,1.05,1.033,0.994,1.038,1.055,1.024,0.997,1.052,0.911,0.935,0.855,0.762,1.036 +NM_002763,0.941,0.981,0.971,0.753,0.802,1.17,0.911,1.212,0.913,0.819,0.838,0.966,0.922,1.009,0.925,1.059,0.88,0.909,0.934,1.007,1.003,0.995,1.052,0.878,0.956,0.94,1.036,0.933,0.771,0.959,1.087,0.946,1.013,1.259,0.716,1.176,1.272,0.957,1.09,2.642,0.913,1.079,1.472,1.616,0.95,1.217,1.072,0.924,1.264,0.828,1.288,0.871,0.948,0.873 +NM_002764,0.663,1.749,1.14,0.782,0.822,1.273,0.92,0.651,1.103,0.945,0.836,0.8,0.795,0.681,0.943,1.159,0.905,0.917,0.851,0.94,0.765,0.872,1.27,1.148,0.789,0.672,1.488,0.821,0.612,1.225,0.894,1.988,4.072,1.433,0.631,1.06,1.086,1.091,1.573,0.866,1.067,1.298,0.705,1.471,0.966,0.823,1.16,0.704,1.033,0.878,1.102,1.217,0.912,2.218 +NM_002765,0.592,1.604,1.211,0.743,0.814,1.445,0.903,0.637,1.023,0.83,0.945,1.032,0.753,0.512,0.837,1.332,0.705,1.164,0.897,0.926,0.474,0.857,1.39,1.233,0.843,0.628,1.389,0.798,0.778,1.522,1.013,1.408,2.2,1.538,0.325,0.669,1.247,0.973,1.439,0.856,1.044,1.421,0.646,0.861,1.024,0.817,0.959,0.766,1.155,0.826,1.207,1.002,0.715,1.649 +NM_002766,1.033,0.867,1.336,0.609,1.503,0.985,0.516,1.092,1.58,1.024,0.83,0.801,0.639,1.002,0.974,1.127,1.239,1.066,1.579,0.868,0.748,1.001,0.986,0.865,0.449,1.131,1.371,1.595,0.425,1.214,1.165,1.402,1.035,1.152,0.623,0.687,0.796,1.169,0.91,0.628,1.524,0.909,0.648,0.984,1.074,0.845,1.16,1.094,0.744,1.002,0.799,0.622,1.187,1.276 +NM_002767,0.771,0.929,1.334,0.834,0.966,1.334,0.554,0.67,1.176,0.984,1.304,0.935,0.686,0.733,1.018,1.599,0.833,0.9,1.315,1.043,0.714,0.864,1.182,1.151,0.697,0.842,1.358,0.918,0.417,1.124,0.945,1.036,1.357,1.273,0.369,0.759,1.246,0.988,0.855,0.752,1.08,1.018,0.872,1.186,0.994,1.083,0.972,0.725,0.912,0.829,1.166,0.64,0.996,1.365 +NM_002768,0.798,0.745,0.783,0.835,0.706,2.041,0.686,0.749,0.831,0.728,1.687,0.998,0.851,0.604,0.952,2.05,0.91,1.002,1.542,0.869,1.003,1.2,0.916,1.179,0.704,1.058,1.028,0.623,1.158,1.256,0.809,0.948,2.274,1.157,0.463,0.793,1.499,0.95,1.664,0.79,0.771,0.99,0.895,1.303,0.821,1.147,1.133,1.133,1.284,0.76,0.864,0.744,0.996,1.095 +NM_002769,0.959,1.882,0.947,47.26,1.038,1.18,0.911,1.045,0.984,0.852,1.045,0.91,1.04,0.678,0.96,1.272,0.996,1.077,0.785,1.063,0.695,1.164,1.022,1.043,0.776,0.794,1.093,0.944,0.992,0.799,1.075,0.779,0.843,0.892,1.317,1.16,0.901,1.198,1.586,0.779,0.929,1.075,0.87,1.094,1.142,0.853,1.078,1.3,1.22,1.136,1.065,0.869,0.659,0.868 +NM_002770,0.89,2.648,0.831,42.65,0.913,1.359,0.671,0.972,1.084,0.873,1.274,0.759,0.922,0.423,2.944,2.831,0.932,1.011,1.031,1.11,0.409,1.197,1.391,0.858,0.473,0.674,0.902,1.048,0.66,0.77,1.067,0.495,0.636,0.833,1.544,1.986,1.102,1.319,1.92,1.275,0.868,1.093,0.876,1.836,1.076,1.244,1.338,1.591,4.541,1.178,1.741,0.843,0.495,0.922 +NM_002771,0.972,0.515,0.759,6.166,0.996,1.491,0.449,0.983,1.378,0.845,1.851,0.684,0.935,0.489,1.426,2.055,0.944,1.231,1.727,0.971,0.433,1.131,1.526,0.871,0.332,0.952,1.011,1.109,0.545,0.809,1.082,0.23,0.549,0.9,2.36,0.95,0.807,1.112,1.602,0.586,0.987,1.053,0.912,3.037,1.164,1.319,1.388,2.091,1.917,1.632,1.125,1.139,0.829,1.025 +NM_002772,0.964,0.893,0.999,1.204,1.018,1.405,0.997,1.002,0.969,0.974,2.491,1.04,0.916,0.926,1.106,3.391,0.983,0.937,0.93,5.017,0.899,0.903,3.282,0.868,1.13,0.979,1.189,0.995,0.704,0.965,0.946,0.956,1.038,0.875,1.056,0.938,8.146,1.001,1.065,0.954,0.941,6.155,1.025,1.04,1.043,9.476,1.126,0.909,1.888,1.041,1.549,1.11,1.065,1.05 +NM_002773,0.543,1.298,0.591,0.703,0.756,1.593,0.955,0.665,0.955,0.368,0.934,0.525,0.492,0.448,0.866,1.402,0.442,1.118,0.564,1.404,0.15,0.81,1.595,0.292,0.674,1.138,0.487,0.959,0.676,1.769,0.788,1.424,0.412,1.276,1.564,0.624,1.48,1.486,1.508,1.081,0.841,1.436,0.918,0.969,0.489,1.153,1.565,1.09,1.1,0.41,1.36,0.633,0.309,1.227 +NM_002775,0.592,1.312,0.715,0.611,0.913,0.998,0.837,0.6,0.631,0.799,0.866,0.734,0.688,0.525,0.881,1.335,0.682,0.747,0.838,0.849,0.672,0.697,1.576,0.924,0.771,0.692,1.095,0.739,0.676,1.884,0.77,12.16,5.014,2.259,0.556,1.162,0.892,1.231,2.213,2.089,0.963,1.979,0.791,0.882,0.905,0.818,1.249,0.659,1.817,0.756,1.036,2.142,1.01,4.226 +NM_002776,1.051,0.943,0.949,0.97,1.218,0.971,0.844,1.091,0.956,1.178,1.058,0.975,1.075,0.824,1.05,1.093,0.996,1.045,0.955,0.989,0.991,0.901,1.02,0.937,1.004,1.109,0.943,1.082,0.778,0.922,1.154,0.945,0.937,1.008,0.946,0.948,0.933,1.21,0.953,1.18,1.04,1.131,0.93,1.009,1.034,1.075,0.977,0.933,0.972,0.841,0.985,0.975,1.032,0.938 +NM_002777,0.979,0.896,0.892,1.104,1.165,1.139,0.957,0.847,1.094,1.022,1.0,0.943,1.092,0.866,0.871,1.151,1.048,1.144,1.468,1.042,0.902,1.039,0.943,1.189,1.0,1.149,0.856,0.926,0.86,0.908,1.137,1.051,1.047,1.01,1.101,1.085,1.078,1.008,1.137,1.035,0.988,0.935,0.918,1.102,0.89,1.074,0.955,1.08,1.012,0.996,1.002,1.109,1.082,0.921 +NM_002778,0.62,1.521,0.798,0.703,0.573,0.939,0.518,0.187,0.616,0.653,1.327,0.231,0.271,0.476,0.627,1.331,0.863,1.064,0.989,1.092,0.493,0.368,1.244,0.534,0.957,0.982,0.706,0.399,0.507,1.669,0.539,2.002,1.002,1.813,0.413,0.801,0.989,0.815,1.97,1.555,0.673,1.828,0.636,1.324,0.61,0.806,0.982,0.767,0.637,0.792,0.848,1.419,0.826,2.143 +NM_002779,1.074,0.865,0.952,1.024,0.969,0.858,1.05,1.002,1.009,1.006,0.781,0.988,1.092,0.891,1.076,0.997,0.865,1.004,0.955,0.968,0.984,0.96,0.867,0.897,1.058,0.972,0.916,1.037,0.863,1.064,0.907,1.023,0.81,1.143,1.174,1.152,0.977,1.027,1.129,1.003,1.095,1.089,1.038,0.974,1.037,1.004,1.004,0.82,1.122,1.006,1.026,0.933,1.02,0.909 +NM_002780,1.085,1.006,1.086,1.007,1.025,1.027,0.799,0.962,0.936,1.02,0.875,1.137,1.0,0.917,1.083,0.968,0.984,1.037,0.914,1.176,1.099,1.064,0.933,1.083,1.076,0.973,0.97,1.146,0.738,0.97,1.088,0.929,1.045,1.177,0.993,1.057,0.913,1.117,1.005,1.0,0.823,1.103,0.823,1.021,1.111,0.93,0.936,1.121,0.917,1.03,1.038,1.065,0.986,1.146 +NM_002781,0.925,0.957,0.887,1.069,1.186,1.063,1.087,0.981,1.086,1.017,0.962,1.155,1.038,0.995,0.906,1.024,0.998,0.904,1.039,1.014,1.081,1.094,1.007,0.956,0.926,0.906,0.942,0.959,1.183,0.977,0.938,0.947,0.887,1.032,1.025,1.056,0.956,1.057,0.897,0.886,0.983,0.86,0.867,0.93,0.976,1.049,1.048,1.13,1.101,0.992,1.033,0.951,1.04,1.005 +NM_002785,1.032,1.15,1.0,0.957,0.935,0.973,1.114,0.976,1.199,0.832,0.907,1.072,1.053,1.13,1.089,1.005,1.081,1.262,0.975,0.98,1.008,0.864,1.09,1.141,1.019,0.954,0.935,0.947,1.485,0.927,0.942,0.964,0.955,1.049,1.154,1.058,0.978,1.025,0.894,0.945,0.921,0.996,1.07,0.916,1.069,0.991,1.123,1.0,0.989,1.121,1.116,0.888,1.18,1.122 +NM_002786,0.848,0.997,0.992,0.808,1.002,0.881,0.82,0.804,1.26,1.164,1.007,0.637,0.722,0.906,0.867,1.344,1.008,0.904,0.89,0.882,0.891,0.683,1.271,1.06,0.793,0.866,1.311,0.955,0.429,1.07,1.126,1.261,1.681,1.335,0.618,1.863,1.015,0.825,1.098,0.924,1.203,1.09,0.851,1.112,0.952,1.109,1.253,0.654,1.361,0.896,1.073,0.959,1.092,1.963 +NM_002787,0.57,0.728,1.054,0.709,0.644,1.002,0.464,0.404,1.155,0.998,1.137,0.485,0.556,0.582,0.945,2.015,0.598,0.953,1.494,0.814,0.589,0.438,1.712,1.04,0.708,0.786,1.335,0.753,0.262,1.209,0.866,1.078,2.98,1.346,0.163,1.414,1.222,0.678,1.485,0.478,1.089,0.992,0.585,2.129,0.834,1.042,1.476,0.606,1.203,0.731,0.936,1.094,1.155,2.711 +NM_002789,0.413,1.194,1.037,0.565,0.728,1.34,0.797,0.432,0.989,0.955,1.406,0.52,0.449,0.456,1.011,2.212,0.593,0.878,1.129,1.113,0.582,0.518,1.784,1.015,0.489,0.453,0.944,0.829,0.37,1.086,0.806,1.045,2.044,1.207,0.154,1.432,1.161,0.613,1.564,0.744,1.112,1.159,0.759,0.865,0.867,1.159,1.122,0.4,1.579,0.492,1.169,0.954,0.961,1.739 +NM_002791,0.455,0.939,1.616,0.423,0.971,2.078,1.026,1.201,1.303,0.791,0.865,1.422,0.985,0.424,1.111,2.785,0.939,1.352,0.78,0.921,0.24,1.172,1.291,1.702,0.397,0.296,1.821,0.932,0.582,1.061,1.145,0.943,2.503,1.291,0.251,0.356,1.294,1.241,2.035,1.0,1.226,1.117,0.52,0.618,1.015,0.895,1.751,0.802,1.984,0.8,1.122,0.683,0.316,2.152 +NM_002792,0.616,0.838,1.266,0.583,0.906,1.07,0.557,0.513,1.205,1.021,0.849,0.939,0.588,0.505,0.92,1.555,0.902,0.994,1.44,0.821,0.439,0.82,1.469,1.175,0.422,0.685,1.284,1.005,0.363,1.307,0.925,0.985,2.173,1.201,0.161,1.135,1.039,1.041,1.104,1.266,1.171,0.864,0.561,1.176,1.126,0.98,1.357,0.566,1.104,0.677,1.13,1.349,0.985,1.995 +NM_002793,0.645,1.052,1.007,0.699,0.837,0.979,0.635,0.413,1.053,1.036,0.895,0.694,0.729,0.436,0.869,2.049,0.779,1.24,1.31,0.876,0.448,0.761,1.246,1.095,0.617,0.77,1.469,0.72,0.402,0.918,0.795,1.299,1.417,1.206,0.181,0.949,1.195,0.925,1.731,1.182,1.122,0.915,0.536,1.284,1.167,0.764,1.316,0.829,1.117,0.874,1.055,0.954,0.796,1.72 +NM_002794,0.609,1.001,0.94,0.87,0.625,1.32,0.753,0.31,0.671,0.964,1.098,0.722,0.436,0.39,0.696,1.362,0.775,0.825,0.956,0.888,0.611,0.521,1.496,0.988,0.604,0.779,1.221,0.606,0.405,1.155,0.496,1.588,3.94,1.128,0.153,1.801,1.153,0.598,2.178,1.043,0.827,1.017,0.836,3.536,0.942,1.09,1.225,0.503,1.642,0.787,1.083,1.267,1.109,2.283 +NM_002795,0.582,0.948,1.006,0.824,0.775,1.062,0.789,0.332,0.994,0.966,1.086,0.938,0.603,0.406,0.827,1.458,0.797,0.959,1.098,0.948,0.453,0.725,1.374,0.862,0.541,0.804,1.163,0.747,0.596,1.242,0.635,1.497,2.565,1.334,0.136,1.49,1.201,0.798,1.635,1.125,0.941,1.199,0.663,1.964,0.962,0.912,1.164,0.66,1.223,0.769,1.142,1.453,0.972,1.925 +NM_002796,0.502,1.074,0.991,0.673,0.677,1.078,0.587,0.435,1.034,0.815,0.988,0.842,0.65,0.444,0.905,1.612,0.748,0.961,1.365,0.896,0.502,0.733,1.301,1.009,0.584,0.729,1.083,0.742,0.426,0.985,0.647,2.045,2.466,1.444,0.162,2.29,1.058,0.809,1.472,1.081,0.973,1.133,0.562,1.884,0.941,0.832,1.219,0.655,1.198,0.675,0.927,1.127,0.981,2.799 +NM_002797,0.695,0.877,1.019,0.71,0.988,1.011,0.474,0.47,1.139,1.025,1.049,0.996,0.656,0.453,0.791,1.554,0.924,0.923,1.782,0.698,0.718,0.957,1.32,1.34,0.514,0.955,1.481,0.703,0.429,1.067,0.825,0.853,1.471,1.126,0.173,1.328,1.004,0.955,1.155,0.553,1.238,0.998,0.61,1.959,0.95,0.801,1.291,0.797,0.908,1.076,0.802,0.714,1.2,1.918 +NM_002798,0.781,0.661,1.251,0.782,1.047,0.938,0.605,0.594,1.382,1.333,0.974,1.285,0.702,0.652,0.9,1.493,1.009,1.197,1.685,0.946,0.552,0.844,1.117,1.289,0.543,1.193,1.182,1.16,0.367,1.132,0.961,0.877,1.316,1.218,0.215,1.209,0.966,1.073,0.904,0.823,1.313,0.938,0.616,1.113,1.36,0.897,1.384,0.979,1.076,1.022,1.001,0.977,1.409,1.868 +NM_002799,0.627,0.873,0.877,0.676,0.909,0.939,0.47,0.369,0.926,0.994,1.163,1.167,0.696,0.372,0.671,1.076,0.67,0.96,0.985,1.063,0.558,0.839,1.177,0.994,0.383,1.065,1.102,0.899,0.422,1.094,0.541,1.379,1.206,0.845,0.268,1.456,0.958,0.815,1.685,1.145,1.017,0.944,0.769,1.39,1.045,1.11,1.175,0.995,1.127,0.755,0.851,1.335,0.91,2.265 +NM_002801,0.225,1.164,0.704,0.708,0.258,1.33,1.039,0.138,0.36,0.423,1.266,0.244,0.194,0.128,0.718,1.491,0.419,1.138,0.347,1.419,0.204,0.226,1.336,0.383,0.861,0.258,0.711,0.323,0.58,0.832,0.212,1.119,0.965,1.333,0.0491,0.876,1.725,0.255,1.723,0.552,0.671,1.58,1.235,1.155,0.446,1.375,1.215,0.227,2.108,0.29,1.498,0.854,0.755,1.93 +NM_002802,0.791,0.82,1.19,0.863,0.977,0.877,0.665,0.569,1.284,1.161,0.882,1.075,0.811,0.573,0.814,1.287,0.828,1.019,0.977,0.894,0.509,0.966,1.005,1.168,0.718,0.963,1.166,1.0,0.426,1.003,0.863,1.379,1.281,1.109,0.335,1.503,0.965,0.918,1.508,1.036,1.165,0.964,0.75,1.965,1.29,0.949,1.404,1.172,1.123,0.874,0.957,0.96,1.058,1.044 +NM_002803,0.456,0.775,1.002,0.592,0.816,1.941,0.844,0.654,1.372,0.952,1.196,0.957,0.66,0.506,0.973,2.505,0.819,1.05,1.131,0.955,0.348,0.998,1.59,1.352,0.481,0.459,1.277,0.868,0.544,1.702,0.989,1.293,2.207,1.799,0.148,0.601,1.367,0.954,1.517,0.801,1.187,0.985,0.52,0.822,1.017,0.989,1.327,0.679,1.182,0.616,1.069,0.767,0.58,2.066 +NM_002804,0.524,1.009,1.098,0.59,1.061,1.139,0.709,0.477,1.252,1.193,0.663,0.967,0.581,0.405,0.676,1.445,0.926,1.126,1.143,1.07,0.408,0.742,1.468,1.152,0.507,0.687,1.375,0.877,0.412,1.575,0.809,1.198,2.488,1.118,0.192,2.338,0.939,0.985,1.653,0.991,1.301,1.086,0.601,1.446,1.086,0.952,1.494,0.718,1.301,0.825,1.125,0.903,0.903,1.691 +NM_002806,1.096,0.762,1.461,0.759,1.509,0.763,0.429,0.591,2.102,0.916,0.99,0.565,0.838,0.768,1.082,1.491,1.186,1.1,2.408,0.608,0.606,1.27,0.877,1.206,0.43,0.943,1.892,1.64,0.291,0.871,1.745,0.641,1.645,1.098,2.904,0.983,1.01,1.495,1.124,0.423,1.866,0.685,0.554,1.225,1.131,0.855,1.479,1.317,0.973,1.316,0.829,0.593,1.123,1.657 +NM_002807,0.547,0.992,0.973,0.626,0.933,1.454,0.586,0.317,1.016,1.09,1.305,0.496,0.356,0.506,1.047,2.63,0.606,0.823,1.444,0.995,0.579,0.619,1.558,0.825,0.516,0.733,0.943,0.753,0.433,1.386,0.842,1.046,2.036,1.25,0.362,1.666,1.413,0.785,1.542,0.68,0.957,1.245,0.775,2.123,0.961,1.315,0.858,0.621,1.771,0.833,1.249,0.844,1.187,2.818 +NM_002808,0.805,0.946,0.899,0.788,0.851,0.908,0.582,0.493,1.247,1.396,0.67,0.642,0.542,0.686,0.878,1.273,0.912,1.07,1.342,0.73,0.682,0.87,1.113,1.158,0.614,1.146,1.127,0.963,0.508,1.015,0.939,1.667,2.179,1.124,0.509,0.981,0.788,1.131,1.843,0.753,1.075,1.041,0.562,1.824,1.29,0.879,1.201,1.11,0.953,1.103,0.951,0.838,0.95,1.918 +NM_002809,0.983,0.903,0.821,0.959,0.922,1.113,0.649,0.687,0.907,1.141,0.834,0.986,1.031,0.83,0.879,1.185,1.027,0.923,1.093,0.77,0.891,1.187,1.015,1.223,0.967,1.148,1.182,0.779,0.672,0.916,0.927,1.183,2.027,0.911,0.67,1.012,0.961,1.09,1.826,0.946,0.993,0.916,0.791,2.146,0.919,0.85,1.053,1.234,1.122,1.11,0.805,0.908,1.015,1.497 +NM_002810,0.786,1.043,1.157,0.966,1.033,0.486,0.567,0.329,1.125,1.061,1.067,0.397,0.407,0.72,0.672,1.115,0.778,1.004,1.114,0.758,0.605,0.416,1.192,0.661,0.536,0.989,0.902,0.899,0.339,1.043,0.867,1.806,1.9,1.198,0.592,2.364,0.819,0.752,1.614,1.051,1.193,1.141,0.689,2.117,0.965,0.884,1.265,0.684,0.945,0.777,0.837,1.035,0.935,2.359 +NM_002811,1.174,0.786,1.292,1.036,1.024,0.905,0.535,0.403,1.364,1.141,1.069,0.809,0.701,0.703,0.991,1.506,0.818,0.888,1.579,0.681,0.63,0.917,1.023,1.214,0.669,1.336,1.229,1.009,0.334,0.935,1.021,1.093,1.689,0.891,0.291,1.115,1.041,0.857,1.404,0.73,1.22,0.894,0.712,1.682,1.215,1.068,1.139,0.982,0.947,0.955,0.936,0.82,1.162,1.243 +NM_002812,0.818,1.012,1.351,0.743,1.069,0.82,0.661,0.515,1.369,1.431,0.638,1.291,0.839,0.564,0.819,1.326,0.896,1.086,1.16,1.126,0.476,1.112,1.461,1.303,0.574,1.141,1.221,1.21,0.406,1.021,0.814,0.936,1.628,0.878,0.324,0.975,1.093,1.202,1.232,0.92,1.392,1.055,0.752,1.089,1.397,1.087,1.454,1.131,1.35,0.808,1.139,1.035,0.939,1.583 +NM_002813,0.971,0.859,1.123,1.085,0.949,1.136,0.839,0.937,0.95,1.114,0.907,0.894,1.145,0.997,1.108,1.15,1.017,1.012,1.255,0.917,1.116,1.022,0.785,1.08,0.887,1.001,1.038,0.918,0.864,0.909,0.999,1.203,1.098,0.938,0.774,1.134,0.93,1.122,0.845,0.907,1.058,0.869,0.831,0.883,0.931,0.875,1.022,0.905,0.976,1.026,0.904,1.156,1.093,1.097 +NM_002814,1.055,0.957,0.989,0.832,0.966,1.035,1.018,0.884,0.994,1.092,1.033,1.035,0.973,1.204,0.828,1.101,0.987,1.007,0.98,0.765,0.981,0.98,0.985,1.097,1.072,0.861,1.038,0.981,1.003,1.173,1.171,0.991,1.261,1.008,0.889,0.764,0.983,1.023,1.047,0.999,1.042,1.159,1.128,0.873,0.785,0.935,0.957,0.917,1.135,1.092,1.026,0.929,0.871,1.166 +NM_002815,0.756,0.909,1.337,0.579,1.263,0.859,0.536,0.484,1.307,1.351,0.89,1.104,0.567,0.789,0.902,1.372,0.948,0.928,1.664,0.681,0.596,0.845,1.002,1.478,0.416,1.097,1.393,1.13,0.376,0.919,1.098,1.334,2.008,0.994,0.257,1.42,0.925,1.097,1.37,0.944,1.215,0.889,0.632,1.555,1.478,0.898,1.348,0.966,1.125,1.089,0.934,1.085,1.313,1.78 +NM_002817,0.699,0.767,1.024,0.757,0.841,1.057,0.622,0.429,1.039,0.997,0.934,0.855,0.628,0.525,0.84,1.479,0.829,1.053,1.177,0.926,0.418,0.679,1.278,1.132,0.649,0.913,1.142,0.754,0.454,1.44,0.704,1.076,1.312,1.129,0.263,2.929,1.232,0.665,1.295,1.452,1.059,1.203,0.78,1.998,1.082,0.968,1.409,0.894,1.262,0.806,1.055,0.944,0.988,1.932 +NM_002818,0.487,0.847,1.034,0.901,0.478,0.991,1.009,0.173,0.989,0.782,1.756,0.217,0.266,0.359,1.223,2.428,0.641,0.758,0.825,1.014,0.407,0.232,1.878,0.563,0.494,0.453,0.93,0.581,0.222,1.377,0.604,0.965,1.909,1.343,0.141,0.479,2.12,0.441,1.069,0.51,1.111,1.339,1.232,2.065,0.743,1.361,1.409,0.28,2.63,0.502,1.529,1.037,1.642,3.374 +NM_002820,1.096,0.998,1.122,0.874,0.987,1.079,0.983,1.196,0.974,0.952,0.905,1.068,1.019,1.176,0.894,1.141,0.999,1.009,0.932,0.857,0.968,0.968,0.957,1.006,1.016,0.976,1.076,0.945,0.912,1.065,1.055,1.075,0.926,0.998,0.989,0.98,1.072,1.032,1.019,1.017,1.028,0.905,1.267,0.94,1.009,0.929,1.05,1.013,1.024,0.784,0.976,0.873,1.067,1.037 +NM_002822,0.613,0.665,1.928,0.471,1.129,1.851,0.556,1.499,1.49,0.895,0.835,1.368,1.091,0.729,1.392,2.858,1.135,1.214,1.273,0.872,0.318,1.274,1.066,1.693,0.287,0.476,1.666,1.045,0.427,0.974,1.716,0.733,1.944,1.081,0.584,0.361,1.362,1.323,1.267,0.461,1.258,0.822,0.518,0.467,1.308,0.862,1.29,0.937,1.505,1.088,1.188,0.61,0.488,1.301 +NM_002823,0.685,0.741,1.13,0.815,0.737,1.02,0.597,0.329,1.092,0.862,1.096,0.837,0.812,0.453,0.714,1.342,0.657,0.843,0.995,0.931,0.428,0.339,1.649,0.892,0.65,0.595,1.105,0.914,0.218,0.988,0.752,1.345,2.029,1.347,0.0656,1.168,1.042,0.644,1.573,0.825,1.033,1.137,0.947,2.24,0.902,1.193,1.129,0.415,1.08,0.771,1.26,0.888,0.882,2.714 +NM_002824,1.73,0.785,1.033,1.215,0.763,0.938,0.755,0.95,0.801,1.023,1.164,0.856,1.489,0.772,0.818,1.4,0.777,0.819,1.91,0.872,2.618,0.936,0.863,0.953,0.938,1.617,1.137,0.87,0.563,0.897,1.211,1.275,3.96,1.279,0.529,1.033,0.758,0.875,1.432,1.573,1.0,1.192,0.64,1.867,1.242,0.829,0.945,1.273,0.582,1.255,0.75,0.849,1.709,1.009 +NM_002825,4.888,0.6,5.81,1.276,4.697,0.466,0.733,2.551,8.04,4.711,0.341,3.384,3.917,4.436,5.966,1.088,3.467,1.539,4.433,0.466,3.281,7.093,0.615,4.202,0.633,4.476,2.588,7.53,0.253,0.752,6.128,2.349,1.344,1.221,0.228,0.323,0.56,5.136,0.821,0.259,7.948,1.013,0.324,0.298,3.353,0.285,1.011,2.429,0.331,1.708,0.615,0.349,3.027,0.358 +NM_002826,0.833,1.183,0.452,1.159,0.942,2.232,0.961,1.13,0.709,0.353,1.736,0.366,0.41,0.524,1.517,1.471,0.256,1.154,0.589,1.385,0.191,0.742,1.322,0.45,1.055,1.112,0.329,0.675,1.01,3.006,0.955,0.933,0.461,2.726,4.572,0.607,1.895,1.309,2.325,0.762,0.654,2.141,0.717,0.854,0.494,1.614,0.626,2.114,0.976,0.538,2.087,0.439,0.426,0.45 +NM_002827,0.801,0.796,1.327,0.617,0.985,1.122,0.526,0.466,1.137,1.106,0.829,0.746,0.502,0.743,0.961,0.861,1.052,0.625,1.244,0.635,0.668,0.784,1.371,1.061,0.603,0.899,1.499,0.934,0.398,1.259,0.72,3.126,1.518,1.152,0.253,0.638,0.871,0.763,1.503,1.37,1.041,0.998,0.86,1.181,0.975,0.827,0.856,0.578,0.943,1.028,1.05,1.006,1.088,2.124 +NM_002828,0.924,1.366,1.172,0.919,0.974,1.066,0.906,0.822,1.089,0.912,1.092,1.227,0.981,0.75,1.043,1.156,0.936,0.98,1.25,1.03,0.732,0.999,1.321,1.182,0.678,0.914,1.673,0.978,0.859,1.046,1.001,1.218,1.01,0.849,0.82,0.9,1.023,0.853,1.327,0.952,1.01,0.92,0.891,1.177,1.223,0.976,0.971,0.834,1.009,1.131,1.091,1.063,1.179,1.601 +NM_002829,0.955,0.889,0.758,1.034,0.849,1.21,0.672,0.566,1.349,0.834,1.071,0.761,0.841,1.112,1.228,1.055,1.107,0.903,0.831,1.177,0.646,0.697,1.098,0.747,0.799,1.159,1.053,0.814,0.707,1.224,1.557,1.084,1.102,1.015,1.77,0.795,0.927,0.895,1.328,0.936,1.081,0.983,0.774,1.057,0.943,1.157,0.795,0.93,0.879,0.898,1.02,0.726,0.77,1.365 +NM_002830,0.74,0.919,1.137,0.723,0.818,1.196,0.826,0.762,1.199,0.849,1.132,0.926,0.828,0.922,0.848,1.062,0.85,0.986,0.854,1.011,0.72,0.778,1.253,1.021,1.137,0.787,1.299,0.902,0.806,1.21,0.992,1.221,1.739,1.238,0.688,1.716,1.036,1.036,0.899,1.11,0.895,1.369,0.729,0.992,0.995,0.966,1.057,0.716,0.846,0.723,1.005,1.163,0.815,1.699 +NM_002833,0.892,0.971,0.91,1.024,1.005,0.99,0.94,0.939,1.01,0.961,1.037,1.019,0.966,0.985,0.919,0.986,1.059,0.988,0.899,1.065,1.022,1.069,1.023,1.011,0.974,0.958,0.989,0.915,1.047,1.022,1.003,1.029,1.183,0.927,0.866,1.12,1.037,1.001,1.034,0.929,0.881,1.08,0.967,0.975,1.068,1.08,1.026,0.965,0.996,1.032,1.041,0.945,1.095,1.021 +NM_002834,0.695,0.878,1.0,0.718,1.003,0.902,0.621,0.516,1.084,1.0,0.946,0.618,0.616,0.588,0.909,1.135,0.725,0.779,0.924,1.066,0.595,0.482,1.24,1.0,0.689,0.727,1.055,0.9,0.407,1.04,0.927,1.415,1.872,1.253,0.466,1.633,0.949,0.81,1.292,1.118,1.09,1.09,0.719,0.994,0.977,1.009,0.848,0.487,0.918,0.822,1.037,0.966,1.05,2.25 +NM_002835,0.775,0.738,1.424,0.65,1.268,1.114,0.529,0.795,1.678,1.389,0.733,0.82,0.645,0.841,1.101,1.194,0.999,0.822,1.212,0.811,0.675,0.898,1.259,1.56,0.616,0.779,1.4,1.279,0.502,0.829,1.535,1.659,3.361,1.002,0.625,0.6,0.72,1.162,1.083,1.401,1.292,0.822,0.652,1.158,1.121,0.879,1.152,0.776,0.84,0.903,0.897,1.06,1.01,1.876 +NM_002837,0.897,1.018,0.991,0.893,0.949,0.977,0.835,1.054,0.897,0.783,1.362,1.016,0.99,0.736,1.113,1.11,0.906,0.939,0.873,1.309,0.89,0.811,1.113,0.938,0.988,0.93,0.958,1.039,0.643,1.121,0.827,1.342,0.961,1.14,0.867,1.005,1.219,0.925,1.146,1.102,0.934,1.079,0.947,1.002,0.904,1.392,0.923,0.914,1.004,0.917,1.334,0.85,0.952,1.135 +NM_002838,1.051,0.916,0.819,1.061,0.995,1.084,0.89,0.955,0.849,0.952,0.837,0.909,1.112,1.085,0.802,0.977,0.909,0.932,1.15,0.929,0.885,1.01,0.97,1.066,1.057,1.056,0.936,0.816,0.703,0.815,1.08,0.964,0.946,1.0,1.164,1.131,1.074,1.057,1.089,1.144,0.877,0.958,0.874,0.946,1.037,1.149,0.827,1.016,1.026,1.011,0.888,0.896,0.868,0.848 +NM_002841,0.992,1.157,0.91,0.893,0.897,1.105,0.82,0.903,0.789,0.83,1.086,0.942,0.808,0.889,1.006,1.159,0.759,0.933,0.79,1.08,0.957,0.875,1.085,0.949,0.811,0.886,1.194,0.974,0.755,1.03,0.904,1.394,1.817,1.072,0.996,0.927,0.878,0.842,1.594,1.164,0.848,1.25,1.102,1.172,0.836,1.104,1.065,0.889,0.956,0.939,1.197,1.13,0.902,1.508 +NM_002842,0.242,0.992,0.334,1.001,0.24,2.102,1.153,0.212,0.22,0.261,1.677,0.241,0.254,0.203,1.522,2.04,0.404,0.849,0.281,1.436,0.232,0.239,1.37,0.264,0.999,0.292,0.376,0.292,0.814,1.753,0.244,1.046,0.637,2.132,0.26,1.09,1.845,0.223,2.877,0.763,0.297,1.546,1.318,1.118,0.273,1.301,1.164,0.261,1.644,0.322,1.855,0.515,0.333,1.398 +NM_002843,0.985,0.872,1.022,1.065,0.976,0.958,0.875,0.922,0.853,0.99,1.013,1.082,1.04,0.832,0.94,1.27,0.887,1.015,1.128,0.925,1.018,0.872,0.972,0.974,1.095,0.98,0.885,0.933,1.314,0.985,0.887,0.987,0.925,0.908,1.014,1.229,1.016,1.124,1.193,1.02,0.9,1.107,0.966,1.032,0.94,0.954,1.009,0.926,0.863,1.137,1.049,0.991,1.001,1.058 +NM_002844,0.485,1.837,0.669,0.803,0.523,1.418,0.786,0.349,0.565,0.441,1.339,0.461,0.505,0.497,1.003,2.107,0.499,0.752,0.504,1.888,0.48,0.399,1.755,0.472,0.96,0.481,0.787,0.428,0.57,1.574,0.493,1.585,2.496,2.172,0.355,0.681,1.362,0.548,1.768,0.809,0.568,1.719,0.975,1.232,0.471,1.533,0.838,0.464,1.24,0.459,1.749,0.999,0.531,2.928 +NM_002846,0.99,0.949,0.955,1.258,1.115,0.992,1.634,0.872,0.868,1.013,1.023,0.93,1.015,1.044,0.934,0.945,0.966,1.022,0.71,1.125,0.92,0.824,0.85,0.862,1.793,1.123,0.949,0.889,1.054,0.887,0.869,3.142,1.104,4.177,1.038,1.015,1.307,0.901,1.053,3.224,0.834,1.105,1.035,0.903,0.944,0.883,0.76,0.89,0.942,0.917,0.969,1.096,1.009,0.879 +NM_002849,1.056,1.072,0.94,0.954,1.075,1.101,0.938,1.091,0.922,0.962,0.996,0.975,1.167,1.123,1.053,1.049,0.888,1.019,0.812,1.208,1.122,0.981,0.962,0.966,0.977,0.999,0.925,0.912,1.152,1.009,1.077,0.874,1.041,0.944,0.962,0.892,1.088,1.162,1.087,1.001,1.036,0.885,1.137,1.031,1.055,1.015,1.066,1.043,1.04,0.994,1.018,0.999,1.073,1.154 +NM_002851,1.034,1.023,1.206,0.976,1.259,0.863,0.792,0.862,1.188,1.39,0.935,1.042,0.904,0.929,1.134,1.046,1.072,1.061,1.259,0.935,0.945,0.872,0.97,1.486,0.999,1.032,1.198,0.874,0.559,0.928,1.273,1.134,1.3,1.061,0.852,0.975,0.901,0.942,0.823,0.803,1.419,0.995,0.773,1.059,1.488,0.887,1.32,0.915,0.84,1.024,1.015,0.947,1.936,0.896 +NM_002852,1.059,0.878,1.036,0.875,0.855,0.942,0.966,0.922,0.858,0.927,1.065,1.027,0.988,1.005,0.913,1.036,0.993,1.069,0.897,1.178,0.864,1.063,1.092,1.105,1.013,1.009,0.981,1.218,0.898,1.129,0.96,1.032,0.946,0.85,1.057,0.799,0.995,1.107,1.162,1.093,1.048,0.96,1.076,0.902,0.951,1.179,0.912,1.082,1.105,0.996,1.004,1.007,1.046,0.926 +NM_002854,0.918,1.25,1.117,0.947,0.967,0.981,1.214,0.982,0.937,0.902,0.944,0.983,0.985,0.867,1.065,1.055,1.036,1.025,0.961,1.014,1.031,0.973,1.075,0.946,0.841,1.263,1.047,0.948,1.032,1.091,0.951,1.0,0.917,0.96,0.888,0.876,0.926,1.038,1.092,1.121,0.937,1.018,1.004,0.867,0.95,0.969,0.857,0.906,1.041,0.944,0.959,1.048,1.229,0.967 +NM_002855,1.193,1.038,0.987,0.937,1.247,0.955,0.823,0.939,1.251,0.972,1.106,1.093,0.831,1.145,0.858,1.001,1.092,1.055,0.975,1.118,1.006,1.177,1.106,1.075,1.167,1.101,1.025,0.926,1.107,0.985,0.843,1.023,1.023,0.929,1.107,1.089,0.993,1.047,1.356,0.877,1.014,0.929,1.061,0.98,1.028,0.93,1.023,1.094,0.882,1.102,0.946,0.835,0.984,0.976 +NM_002856,0.631,1.178,0.704,0.874,0.573,1.347,0.615,0.613,0.806,0.763,1.015,0.539,0.77,0.631,0.89,1.133,0.878,0.836,0.914,0.866,0.861,0.913,1.039,0.781,0.91,1.067,0.704,0.62,0.751,1.249,0.738,1.654,1.396,1.33,1.416,1.143,1.02,0.578,2.012,2.029,0.882,1.171,1.035,2.656,0.907,0.837,1.02,1.097,0.995,0.864,0.942,0.963,1.258,1.163 +NM_002858,0.813,1.216,1.005,0.941,0.924,1.665,0.79,0.461,1.382,0.884,1.891,0.568,0.661,0.743,1.068,2.265,0.805,1.367,1.154,1.349,0.493,0.75,1.299,1.109,0.853,0.787,1.164,1.001,0.81,1.036,0.919,0.617,1.511,1.761,0.377,0.5,1.881,0.873,1.472,0.414,0.7,1.454,0.88,0.646,0.787,1.667,0.991,0.747,1.201,0.923,1.435,0.566,0.67,0.997 +NM_002861,0.657,1.833,0.934,0.763,0.987,1.491,1.169,0.585,1.007,0.846,1.097,0.994,0.613,0.681,0.972,1.833,0.881,1.154,0.985,1.235,0.481,0.707,1.412,0.914,0.672,0.674,0.876,0.961,1.001,1.659,0.808,1.709,1.292,1.264,0.587,1.054,1.262,0.881,1.663,0.973,1.075,0.999,1.093,1.654,0.884,1.329,1.486,0.616,1.594,0.635,1.179,0.78,0.71,1.114 +NM_002862,0.541,1.001,0.704,0.767,0.604,2.053,0.755,0.336,0.647,0.651,1.952,0.474,0.343,0.513,1.074,2.39,0.513,0.999,0.689,1.506,0.375,0.55,3.074,0.537,0.756,0.799,0.526,0.443,0.726,1.889,0.605,0.953,2.612,1.997,0.723,0.845,1.231,0.897,2.301,0.579,0.6,2.077,0.812,4.736,0.64,1.399,1.517,0.888,1.009,0.468,1.824,1.73,0.543,9.527 +NM_002863,0.948,0.373,5.436,0.789,1.825,0.36,0.318,1.299,2.307,1.746,0.281,1.572,1.21,1.398,1.097,0.735,3.181,1.343,2.092,0.508,1.143,1.826,0.351,2.71,0.295,1.598,3.25,1.499,0.357,0.428,1.743,1.062,2.198,0.42,2.345,0.812,0.323,2.331,0.481,1.007,2.811,0.412,0.205,0.422,3.436,0.281,1.894,2.259,0.302,2.32,0.603,1.342,1.808,2.847 +NM_002864,0.969,0.879,1.248,1.034,1.125,1.027,0.992,0.904,1.056,1.142,1.213,0.939,0.937,1.001,0.812,0.871,0.945,0.876,1.035,0.874,0.97,1.047,0.917,1.078,1.01,0.993,1.046,0.927,1.032,1.064,1.106,1.012,0.99,1.064,0.965,1.099,1.041,1.015,0.99,0.97,0.916,0.944,1.283,0.866,1.041,0.896,0.992,0.983,1.074,0.934,0.911,0.882,0.936,0.998 +NM_002865,0.783,0.856,1.302,0.687,1.206,1.002,0.651,1.437,1.293,0.848,0.907,1.521,0.985,0.611,1.063,1.349,1.124,0.879,1.183,0.895,0.505,0.94,0.972,1.005,0.516,0.971,0.954,1.504,0.554,0.938,1.33,1.031,1.74,1.067,1.113,0.819,0.964,1.25,1.281,1.157,1.286,0.86,0.635,0.758,1.166,1.481,1.174,1.337,1.149,0.976,1.032,0.697,0.863,1.146 +NM_002866,0.852,1.271,1.108,0.727,0.917,1.192,0.925,0.899,1.067,0.756,1.214,1.015,0.81,1.233,0.959,1.404,0.864,0.946,1.477,0.908,1.081,0.821,1.264,1.071,1.073,0.763,1.073,1.001,0.603,1.38,0.931,1.177,1.941,1.48,0.594,0.727,1.07,1.01,0.914,0.999,1.087,1.314,0.659,0.934,0.845,1.074,0.739,0.885,0.91,0.755,0.891,1.149,0.86,1.282 +NM_002867,0.949,1.042,1.022,1.224,0.954,1.284,1.164,1.1,1.136,0.994,1.104,0.959,0.932,0.912,0.886,1.229,0.99,1.074,1.0,1.147,0.942,1.015,1.225,0.943,0.95,0.889,0.746,0.833,1.265,1.051,0.898,0.956,0.965,1.058,0.976,1.0,1.063,0.901,1.26,0.959,0.93,1.272,1.037,1.118,1.05,1.456,0.937,0.998,1.223,0.969,1.531,0.92,0.956,0.909 +NM_002868,1.151,0.886,1.365,0.989,1.163,1.1,0.645,0.933,1.518,0.952,0.848,0.898,0.928,1.175,0.984,1.269,1.164,0.993,1.251,0.913,0.72,0.877,0.699,1.128,0.842,1.775,1.158,1.252,0.432,1.039,1.557,0.932,0.998,1.583,2.228,0.59,0.93,0.924,1.116,0.672,1.002,0.82,0.502,0.857,1.236,0.704,0.743,1.331,0.578,1.095,0.893,0.482,1.256,1.094 +NM_002869,0.698,0.916,1.743,0.531,1.409,1.12,0.597,0.813,1.916,1.357,0.883,0.841,0.847,0.752,1.249,1.861,0.934,1.173,1.172,1.01,0.486,0.87,1.2,1.561,0.533,0.628,1.634,1.299,0.57,1.078,1.605,1.211,2.083,1.047,0.643,0.707,1.108,1.425,1.228,0.775,1.682,0.909,0.601,0.517,1.423,1.134,1.33,0.903,1.348,0.917,1.098,0.758,0.702,1.136 +NM_002870,0.637,1.464,1.493,0.483,0.984,1.004,0.827,0.556,1.202,0.838,0.951,0.713,0.746,0.511,0.711,0.927,0.692,1.057,1.076,1.074,0.48,0.792,1.546,0.753,0.569,0.651,1.042,1.137,0.494,1.557,0.995,2.629,0.833,1.599,0.497,1.213,0.685,1.098,1.392,1.673,1.156,1.493,0.489,1.134,0.894,1.309,1.014,0.527,0.741,0.677,1.164,1.11,0.872,0.768 +NM_002871,1.0,1.004,1.101,0.746,1.007,1.002,1.067,1.087,1.009,1.0,0.97,1.059,1.115,0.822,1.059,1.276,0.93,1.156,0.989,1.06,0.937,1.116,1.08,1.101,0.788,0.897,1.103,1.03,1.328,0.846,1.043,0.927,1.14,1.002,0.864,0.897,1.047,1.136,1.298,0.943,0.873,0.944,0.847,1.035,0.853,0.832,0.898,0.93,1.009,0.927,1.14,1.005,0.86,0.816 +NM_002873,1.016,0.907,0.906,0.93,0.933,1.058,0.959,0.886,0.995,0.898,1.046,0.98,1.004,1.001,0.993,0.951,0.958,0.965,0.988,0.993,0.964,0.983,0.949,1.065,0.994,1.025,1.07,1.0,0.851,1.039,1.0,0.952,1.053,0.941,0.852,0.922,0.962,1.019,0.972,0.976,1.035,1.031,1.341,0.89,0.981,0.874,1.046,1.057,0.972,1.055,0.994,0.83,1.035,1.045 +NM_002874,1.005,0.956,1.699,0.828,1.205,0.974,0.675,0.67,1.445,1.337,0.797,0.969,0.821,0.53,1.15,1.391,0.99,0.936,1.637,0.961,0.602,0.925,1.147,1.246,0.689,1.142,1.126,1.246,0.383,0.957,1.006,1.18,2.182,1.17,0.551,0.606,0.98,1.083,0.886,1.042,1.264,0.781,0.63,1.332,1.454,0.922,0.912,0.597,1.079,1.143,1.143,0.64,0.953,1.458 +NM_002875,0.924,0.953,0.979,0.939,0.904,0.977,1.011,0.999,0.993,1.061,1.063,0.979,0.85,0.86,0.863,0.98,0.969,1.069,0.936,0.977,1.09,0.812,1.12,1.019,1.012,0.967,1.145,0.872,0.579,1.069,0.906,0.916,1.412,1.043,0.839,1.1,1.005,0.958,1.108,1.143,1.077,1.022,0.91,1.013,1.155,1.018,1.058,0.849,0.897,0.865,1.11,0.927,0.987,1.348 +NM_002876,1.712,2.128,1.932,1.836,1.7229999999999999,2.094,1.9140000000000001,1.9210000000000003,2.025,1.83,1.8860000000000001,1.8649999999999998,1.8279999999999998,1.776,1.953,2.526,1.842,1.946,1.866,1.904,1.6840000000000002,1.838,2.297,1.9569999999999999,1.979,1.939,2.325,1.835,1.589,2.128,1.9779999999999998,2.5,3.263,2.45,1.518,1.976,2.2119999999999997,1.9569999999999999,2.513,1.744,1.962,1.826,1.892,2.059,1.994,1.882,1.97,1.8399999999999999,2.1550000000000002,1.583,2.177,1.908,2.016,2.613 +NM_002881,0.958,0.956,1.032,0.85,1.25,1.052,1.108,0.862,1.2,0.944,1.031,1.013,0.922,0.958,1.04,1.102,0.889,0.978,0.87,1.097,1.071,1.035,1.014,1.067,0.913,1.038,0.841,1.019,1.097,0.934,1.012,0.947,0.954,0.917,0.891,0.813,1.014,0.945,0.989,1.103,1.031,0.872,1.072,0.814,1.034,1.076,1.254,0.973,1.558,0.948,0.945,1.034,0.887,0.971 +NM_002883,0.92,0.848,1.38,0.747,1.269,0.638,0.669,0.438,1.667,1.592,0.563,0.985,0.67,0.863,0.906,1.293,0.945,0.991,1.625,0.727,0.681,0.808,1.186,1.335,0.514,1.0,1.73,0.912,0.377,1.131,1.4,1.074,1.413,0.849,0.169,1.153,0.776,1.174,1.688,0.986,1.583,0.73,0.514,1.069,1.788,0.6,1.02,1.01,0.759,1.113,1.018,1.0,1.445,1.401 +NM_002884,0.427,1.07,1.076,0.598,1.092,1.858,0.716,0.569,1.348,0.77,1.679,0.561,0.599,0.573,1.175,2.302,0.67,0.998,0.971,1.836,0.341,0.492,1.287,0.847,0.488,0.446,0.932,1.202,0.337,1.633,1.289,0.866,2.131,2.025,0.816,0.405,1.481,0.886,1.119,0.598,1.167,1.545,0.845,0.432,0.691,1.702,1.242,0.578,1.216,0.572,1.171,0.598,0.537,1.143 +NM_002885,0.501,2.113,0.374,0.692,0.827,1.221,1.01,0.702,1.078,0.652,1.203,0.547,0.304,0.452,1.375,1.572,0.378,0.841,0.63,1.609,0.319,0.671,1.375,0.661,2.758,0.566,0.533,0.838,0.537,1.557,0.6,2.303,0.882,2.336,0.615,1.676,1.198,0.963,1.849,0.427,0.44,1.729,1.438,1.453,0.589,1.49,1.244,0.671,1.813,0.346,1.433,0.442,0.424,0.788 +NM_002886,1.191,0.885,0.966,0.92,1.015,1.156,1.21,0.955,0.922,1.062,0.794,0.874,1.061,0.939,0.955,0.958,0.977,0.981,1.332,1.097,0.979,0.886,0.876,0.878,0.968,0.873,0.88,1.06,0.939,1.055,0.967,1.076,0.942,1.025,1.029,0.852,0.932,0.941,1.041,0.934,1.199,1.077,1.105,1.026,0.96,1.041,1.022,1.0,1.063,1.142,1.101,0.932,1.057,0.954 +NM_002887,0.658,0.902,1.125,0.619,0.822,1.2,0.54,0.457,1.213,1.128,1.175,0.981,0.469,0.662,1.003,1.869,0.806,0.791,1.565,0.789,0.641,0.953,1.389,1.291,0.478,0.744,1.255,0.81,0.443,1.26,0.977,0.973,1.681,1.174,0.0961,0.788,1.466,1.16,1.337,0.576,1.208,1.087,0.645,0.825,1.102,1.073,1.033,0.763,1.322,0.708,1.174,0.84,1.187,1.886 +NM_002888,0.713,1.663,0.766,0.812,0.816,1.24,0.662,0.793,0.617,0.989,2.451,0.803,0.784,0.856,2.543,5.257,0.701,0.689,0.676,4.287,0.786,0.734,3.22,0.736,0.784,0.731,0.676,0.777,0.673,1.011,0.7,5.915,1.368,0.897,0.731,1.44,2.394,0.754,1.277,1.225,0.816,1.989,2.851,5.572,0.878,3.876,4.169,0.702,6.821,0.711,1.991,2.225,0.8,2.11 +NM_002890,0.961,1.016,1.088,0.976,0.912,0.983,0.963,1.064,1.185,1.078,1.113,0.961,1.155,1.051,0.867,0.911,1.081,1.08,1.063,1.087,1.025,1.03,0.956,0.931,0.933,0.991,1.037,0.973,0.882,1.038,1.017,1.053,1.132,0.872,1.011,1.143,0.916,0.983,1.006,0.953,0.9,0.932,1.019,0.869,0.983,0.928,0.91,0.964,0.996,1.023,0.908,0.997,0.97,0.912 +NM_002891,1.155,1.023,1.065,1.121,0.977,0.963,0.909,0.972,1.075,0.9,1.054,1.247,0.992,0.926,0.952,0.896,0.966,0.966,1.178,1.004,0.976,1.024,1.192,0.999,1.053,1.154,0.968,1.149,0.918,1.04,1.138,1.059,1.001,1.053,1.051,1.091,1.265,0.992,1.136,0.958,1.043,0.972,1.156,1.093,1.045,1.025,0.914,0.953,0.767,1.028,0.97,0.991,0.835,0.931 +NM_002892,1.006,1.001,1.061,1.017,1.205,1.17,0.998,0.912,1.243,0.916,0.969,1.0,1.043,0.93,1.337,0.89,0.984,1.174,0.873,0.872,0.9,1.142,0.889,1.032,0.995,0.881,0.971,1.002,1.0,1.26,1.1,1.02,1.071,0.844,0.84,1.054,0.938,0.989,1.162,0.941,1.003,0.864,1.055,1.078,0.97,1.183,1.052,1.005,1.05,1.087,0.991,1.032,1.035,0.981 +NM_002893,0.564,1.009,1.145,0.628,0.924,1.489,0.565,0.638,1.608,0.851,0.802,0.795,0.654,0.653,1.021,2.217,0.741,0.976,1.104,0.914,0.406,1.053,1.288,1.399,0.616,0.599,1.359,0.794,0.523,1.164,1.292,1.359,4.192,1.553,0.226,0.588,1.125,1.534,1.593,0.423,0.968,1.187,0.532,0.516,0.845,0.961,0.987,1.082,1.187,0.794,1.274,0.835,0.606,1.712 +NM_002894,0.67,1.272,1.131,0.673,0.711,1.382,0.522,0.466,0.943,1.192,1.325,0.83,0.521,0.893,1.098,1.607,0.754,0.742,1.109,1.105,0.566,0.701,1.146,1.366,0.53,0.653,1.332,0.797,0.437,1.372,0.824,0.703,1.894,1.134,0.288,1.07,1.01,0.89,1.22,0.549,1.02,1.026,0.776,1.655,0.965,0.978,0.975,0.515,0.758,0.61,1.168,1.118,1.724,3.847 +NM_002895,0.897,1.03,0.944,1.058,0.934,0.798,0.923,0.844,0.874,0.894,1.024,0.966,0.974,0.96,0.7,0.802,1.088,0.927,1.144,0.953,0.946,1.023,0.948,1.067,1.086,1.027,1.145,1.035,0.9,1.079,0.999,1.079,1.052,0.889,0.932,1.061,0.854,1.112,1.106,0.934,0.98,1.076,0.908,1.099,1.05,0.864,0.959,0.925,1.015,0.893,1.06,1.204,0.951,1.165 +NM_002896,0.617,1.26,1.083,0.608,1.074,1.094,0.721,0.576,0.994,1.092,0.849,1.077,0.597,0.489,0.651,1.123,0.956,1.002,1.058,1.236,0.599,0.668,1.105,0.937,0.615,0.907,1.025,1.005,0.435,1.311,0.99,1.286,1.502,1.246,0.758,1.25,0.969,0.838,1.088,1.232,1.037,1.005,0.758,1.247,1.058,0.819,0.913,0.747,0.979,0.787,1.065,0.761,0.767,1.227 +NM_002898,1.11,1.017,0.94,1.029,1.386,0.944,0.919,0.835,1.11,0.869,0.943,0.915,0.999,1.011,1.15,1.001,1.103,1.094,0.947,0.954,0.89,1.01,1.072,0.956,0.869,0.956,0.96,1.416,0.914,0.949,1.159,1.04,1.415,0.937,2.392,0.985,0.889,1.363,1.154,1.043,1.075,0.976,0.947,1.193,1.106,0.912,1.15,1.188,0.811,1.009,0.979,1.109,1.209,1.385 +NM_002899,0.975,0.544,2.962,0.651,2.179,0.419,0.359,0.64,1.282,2.187,0.52,2.111,1.325,1.368,1.035,1.081,2.266,2.794,4.691,0.425,1.266,1.403,0.47,2.91,0.484,1.347,5.104,0.9,0.248,0.74,0.785,2.039,2.27,1.244,0.694,0.35,0.507,2.061,0.528,0.54,1.091,0.681,0.323,2.476,1.236,0.528,1.724,0.89,0.346,2.16,0.511,2.283,5.503,0.831 +NM_002900,1.055,0.987,1.14,0.914,0.935,1.023,0.801,1.236,1.104,1.096,0.926,1.033,1.056,0.759,0.812,0.818,1.147,0.994,1.134,0.929,1.174,0.858,0.943,0.96,0.968,0.948,0.975,0.99,0.894,1.039,1.061,1.025,0.967,0.92,0.945,1.103,0.982,0.866,0.92,1.068,0.74,1.21,0.868,1.115,1.154,0.966,1.053,1.04,0.825,1.148,1.135,1.032,1.163,1.211 +NM_002901,0.489,1.158,0.734,0.603,0.501,1.04,0.595,0.299,0.795,0.636,1.052,0.391,0.439,0.417,0.872,1.312,0.59,0.638,0.587,0.986,0.5,0.43,1.569,0.77,0.588,0.492,0.935,0.559,0.376,1.591,0.625,2.109,0.714,1.587,0.3,0.829,1.099,0.506,2.593,1.063,0.896,1.738,0.854,2.01,0.636,1.412,1.142,0.45,1.76,0.433,1.091,1.131,0.78,2.923 +NM_002902,0.817,1.348,1.302,0.843,0.957,0.994,0.504,0.615,1.519,1.022,1.014,0.731,0.829,0.822,0.997,1.687,0.724,0.958,1.165,0.786,0.583,0.932,1.685,1.208,0.54,0.728,1.524,0.955,0.456,1.09,1.094,1.833,2.188,1.01,0.231,1.235,1.008,0.987,1.659,0.754,1.152,0.875,0.604,0.705,1.012,0.83,0.855,0.643,0.89,0.74,0.955,1.003,1.046,1.909 +NM_002903,0.994,1.114,0.911,0.981,1.113,1.069,0.911,0.814,0.986,1.062,1.005,0.974,1.053,1.131,0.964,1.223,1.007,1.196,1.161,0.925,1.037,0.991,0.894,1.01,0.969,0.944,0.886,1.001,1.395,0.999,0.966,0.904,0.934,0.979,0.999,1.038,0.923,1.045,1.07,0.883,1.231,0.946,0.996,0.911,1.028,0.927,1.075,0.876,0.947,0.977,0.996,1.105,1.022,0.874 +NM_002904,0.544,0.858,1.209,0.579,0.949,1.149,0.715,0.586,1.228,1.097,0.791,1.016,0.748,0.466,0.846,1.3,0.915,1.084,1.109,1.008,0.49,0.858,1.143,1.316,0.527,0.784,1.069,1.079,0.492,1.076,1.0,1.687,2.507,1.25,0.368,0.863,0.953,0.978,1.44,0.889,1.283,0.954,0.502,1.196,1.262,0.879,0.99,0.861,1.031,0.702,0.948,0.878,0.908,2.516 +NM_002906,0.906,0.842,1.504,0.773,1.411,0.759,0.739,1.058,1.736,1.326,0.731,1.035,1.003,1.261,0.927,0.985,1.158,1.106,1.533,0.763,1.07,1.275,0.906,1.512,0.918,1.019,1.841,1.284,0.846,0.94,1.452,1.301,1.369,1.085,0.743,0.732,0.858,1.541,0.884,1.301,1.429,1.022,0.604,0.671,1.094,0.659,1.163,0.995,0.717,0.984,0.861,0.998,1.041,1.73 +NM_002908,0.856,0.971,2.825,0.726,0.986,0.902,0.64,0.772,1.221,1.108,0.857,0.637,0.823,1.064,0.91,1.241,2.306,0.853,1.771,0.795,1.014,0.906,0.984,1.036,0.632,0.929,2.32,0.844,0.855,0.863,1.088,0.957,1.709,0.889,0.736,0.661,0.966,1.027,1.079,1.099,1.456,0.968,1.037,0.896,1.53,1.071,1.054,0.904,0.975,2.028,0.791,0.942,1.351,1.266 +NM_002910,0.95,1.072,1.03,0.881,0.89,0.963,0.896,1.03,0.864,0.966,0.997,0.952,0.992,0.811,0.956,0.983,0.968,0.859,0.819,0.892,0.849,0.941,0.932,0.959,1.004,1.02,1.131,1.015,0.922,1.116,0.854,1.148,0.841,1.178,1.027,0.952,0.963,1.023,1.479,1.183,0.946,1.061,0.916,1.22,0.959,0.867,1.073,0.902,1.002,0.842,1.033,1.004,1.202,1.106 +NM_002911,0.662,0.887,0.918,0.828,0.708,1.17,0.756,0.446,0.904,0.757,0.97,0.64,0.57,0.701,0.924,1.083,0.929,0.786,0.794,1.189,0.863,0.744,1.514,0.731,0.932,0.882,1.058,0.648,0.59,1.366,0.869,1.262,1.403,1.461,0.673,1.056,0.996,0.696,1.831,1.368,0.76,1.226,0.923,1.747,0.978,0.949,0.722,0.616,0.885,0.909,1.187,0.918,0.839,1.355 +NM_002912,0.937,1.03,1.138,0.91,1.037,1.219,1.003,0.894,1.073,0.897,0.944,1.118,1.03,0.9,1.019,1.109,0.96,0.828,0.859,1.09,0.854,0.79,1.218,0.976,1.004,0.885,1.233,1.052,0.877,1.053,1.02,1.343,1.419,1.146,0.944,0.91,0.964,0.874,1.239,1.001,1.061,1.043,0.888,0.938,1.186,0.907,1.009,0.932,0.9,0.815,1.052,0.936,0.773,1.984 +NM_002913,0.962,1.024,1.272,0.87,0.881,0.998,0.856,0.648,0.961,1.022,1.023,1.0,0.782,0.861,0.783,0.939,1.0,0.932,0.754,0.843,0.866,0.799,1.033,1.076,0.974,0.979,1.171,0.864,0.842,1.154,0.858,1.392,1.69,1.211,0.783,0.85,0.991,1.095,1.2,1.206,0.845,1.174,0.886,1.271,1.142,1.038,0.9,0.931,0.988,0.91,1.059,0.862,1.039,1.15 +NM_002914,0.905,0.823,0.999,0.819,1.155,0.909,0.855,1.119,1.0,1.051,0.84,1.162,1.078,0.898,0.946,0.968,0.971,0.962,0.831,0.862,0.919,0.939,1.007,1.192,0.998,1.064,1.331,1.152,0.478,1.2,1.069,1.082,1.305,0.957,0.763,1.036,0.836,1.097,1.01,1.175,0.957,0.961,0.828,1.015,1.101,0.794,1.078,1.001,1.039,0.88,0.971,0.905,0.874,1.142 +NM_002918,0.965,0.956,1.064,0.997,0.811,0.961,0.782,0.791,1.059,0.817,0.973,0.778,0.903,0.995,1.025,1.161,0.92,0.762,1.348,1.001,0.762,0.817,1.139,0.902,0.817,0.869,1.01,0.904,0.776,1.157,1.034,1.469,1.478,1.335,0.948,0.875,0.858,0.88,1.338,0.984,0.885,1.1,0.999,1.101,0.984,0.931,0.713,0.972,0.8,1.014,0.932,0.77,1.271,1.473 +NM_002919,0.946,1.068,0.984,0.905,1.216,0.965,0.924,0.906,1.103,1.081,0.972,1.004,1.085,0.878,0.901,0.938,1.019,0.994,0.889,0.929,0.928,1.012,0.999,0.959,0.855,1.052,0.986,0.986,0.937,1.036,0.933,1.079,0.904,1.097,1.134,0.98,0.852,1.007,1.159,1.079,1.118,0.946,0.709,1.072,1.005,0.861,1.053,1.037,0.973,1.054,0.942,0.862,0.952,1.028 +NM_002920,0.988,1.009,1.11,1.0,1.033,0.983,1.006,0.884,0.974,1.064,0.965,1.164,1.013,1.11,1.178,1.018,0.974,0.917,0.967,0.975,1.237,1.068,0.977,1.096,1.073,1.003,0.924,1.17,1.475,1.037,0.896,0.919,1.086,0.954,0.98,1.018,1.097,1.03,1.022,0.929,0.882,1.0,1.275,1.048,0.905,1.083,0.919,1.193,0.905,0.967,0.969,0.99,1.203,1.015 +NM_002922,0.961,1.065,1.137,0.895,0.899,0.998,0.92,0.879,1.098,1.056,0.838,1.112,0.855,0.89,1.186,0.861,1.115,0.897,0.898,0.976,0.808,0.845,0.844,1.02,0.784,0.934,1.598,0.916,0.994,0.99,0.767,1.449,1.077,0.966,0.966,0.917,1.015,0.907,1.206,2.392,1.088,1.0,1.13,0.898,1.03,1.445,0.873,1.03,0.972,0.925,0.852,1.373,2.987,2.714 +NM_002923,0.564,0.93,0.702,1.146,0.62,5.051,0.609,0.516,0.53,0.68,5.503,0.606,0.526,0.637,5.321,17.05,0.758,0.583,0.626,8.671,0.605,0.556,5.523,0.72,0.723,0.583,0.806,0.746,0.467,1.954,0.689,1.092,1.479,1.553,0.434,1.366,4.845,0.827,2.653,7.929,0.973,5.999,2.699,0.994,0.701,7.181,1.714,0.617,4.299,0.716,4.297,1.457,0.726,1.369 +NM_002924,0.967,1.085,1.037,1.001,0.997,1.016,1.098,0.858,0.975,1.062,0.974,0.999,1.049,1.193,1.014,1.004,1.071,1.134,0.892,1.025,0.873,1.13,1.069,0.853,1.155,0.969,1.008,0.982,1.038,1.116,0.973,1.01,0.954,1.022,1.06,0.903,0.983,0.97,0.977,0.946,0.959,0.839,1.314,1.096,0.838,1.18,1.048,0.944,1.037,0.892,1.044,0.862,0.947,1.05 +NM_002925,1.227,1.042,1.406,0.843,1.582,0.825,0.718,0.927,1.782,1.388,0.769,1.255,1.274,0.883,0.942,0.876,0.971,0.948,1.205,0.837,0.705,1.32,1.031,1.467,0.568,1.291,1.022,1.962,0.341,1.327,1.175,1.654,1.081,1.083,1.425,0.898,0.593,1.478,0.995,0.659,1.143,1.225,0.489,0.746,1.307,0.751,1.315,1.393,0.569,0.839,0.969,0.955,1.11,1.113 +NM_002926,2.054,0.588,2.361,0.814,2.108,0.631,0.346,0.825,2.872,2.452,0.747,1.887,1.304,1.528,1.29,1.009,1.935,1.196,2.907,0.774,0.862,2.024,0.647,2.423,0.401,2.123,3.259,1.769,0.393,1.105,1.889,0.725,1.318,0.496,0.321,0.366,0.424,1.788,0.673,0.812,2.353,0.868,0.791,0.607,2.224,0.674,1.174,1.906,0.558,1.889,0.966,0.802,2.128,0.92 +NM_002928,0.769,1.116,0.997,0.896,0.861,1.355,1.299,0.737,0.829,0.944,0.903,0.993,0.794,0.809,0.819,1.345,0.924,0.916,0.777,0.917,0.734,0.817,1.083,0.837,0.983,0.716,0.954,0.917,0.796,1.11,0.779,2.378,2.209,1.278,0.735,1.493,1.067,0.762,1.131,1.697,0.875,1.091,1.381,0.816,0.94,3.068,1.217,0.805,2.391,0.802,1.003,1.281,0.776,1.634 +NM_002930,1.133,1.169,0.961,0.944,0.914,1.026,0.845,1.059,0.997,1.05,0.972,1.093,1.0,1.178,0.866,0.961,1.014,0.987,0.887,0.904,1.014,0.874,1.323,1.122,1.013,1.077,0.988,0.957,0.902,1.056,0.907,0.837,0.933,0.98,1.136,1.025,1.019,0.99,1.003,0.911,1.099,1.07,0.898,1.014,0.888,1.124,0.926,1.05,0.844,1.051,1.015,0.91,1.069,0.902 +NM_002931,0.653,1.045,1.218,0.709,0.747,1.252,0.682,0.46,1.073,1.002,1.073,0.806,0.658,0.652,0.992,1.162,0.866,1.001,0.976,1.095,0.531,0.641,1.124,1.059,0.654,0.719,1.059,0.834,0.449,1.376,0.833,1.64,1.603,1.584,0.218,1.121,0.969,0.784,1.302,0.745,1.132,1.213,0.721,1.505,0.902,0.847,0.842,0.691,0.766,0.756,0.86,0.884,1.016,1.557 +NM_002933,0.135,6.648,0.206,3.133,0.148,10.47,5.634,0.166,0.262,0.19,1.263,0.171,0.154,0.193,1.032,1.157,0.168,3.623,0.181,2.791,0.259,0.166,1.159,0.184,6.679,0.182,0.201,0.233,5.571,11.77,0.164,1.726,1.135,8.65,0.156,0.74,4.145,0.234,1.976,0.684,0.268,3.821,0.621,1.583,0.163,0.445,0.41,0.178,1.08,0.166,1.992,0.466,0.231,0.906 +NM_002934,0.98,0.861,1.233,0.892,0.977,0.962,1.223,0.975,0.86,0.974,0.881,1.031,0.863,0.763,0.964,0.957,0.914,0.847,1.1,1.122,0.976,0.932,1.015,1.152,0.975,0.956,1.33,1.042,0.672,0.967,0.994,1.458,1.043,1.111,0.978,0.892,1.127,0.968,1.095,1.082,0.987,1.097,1.141,0.991,1.119,0.969,1.099,1.028,1.026,0.891,1.0,1.332,0.991,1.349 +NM_002935,1.139,1.059,0.954,1.027,0.923,0.865,0.825,1.012,1.225,1.083,0.938,1.023,0.982,1.057,0.777,0.84,1.038,1.138,0.909,0.964,1.031,0.93,0.935,0.982,1.051,1.273,1.044,1.062,0.862,1.023,0.99,1.13,0.814,1.029,1.033,1.033,0.917,1.003,1.013,1.037,0.906,0.983,0.87,0.929,1.051,0.846,1.14,1.041,0.847,1.03,1.055,0.999,0.969,0.913 +NM_002936,0.566,0.786,1.036,0.617,0.865,1.024,0.605,0.48,1.082,1.118,0.987,0.916,0.591,0.619,0.79,1.393,0.922,0.814,1.279,0.828,0.609,0.788,1.43,1.468,0.553,0.649,1.378,0.745,0.524,1.054,0.823,1.036,4.128,1.094,0.341,1.431,1.127,0.945,1.081,1.117,1.256,0.953,0.897,1.558,1.104,1.113,1.29,0.569,1.176,0.701,0.968,1.004,1.11,2.245 +NM_002938,0.835,1.138,1.081,0.807,0.941,1.203,0.829,0.787,1.044,1.045,0.841,0.741,0.919,0.661,0.775,1.185,1.059,0.996,0.787,1.087,0.577,0.983,1.157,0.946,0.72,0.827,1.047,0.904,0.758,1.16,1.103,1.033,1.717,1.108,0.915,0.689,1.043,1.108,1.646,0.98,0.984,1.154,0.661,1.242,1.027,0.928,0.843,0.879,0.997,0.977,1.134,0.75,0.739,1.435 +NM_002939,0.824,0.625,1.219,0.66,1.27,0.974,0.496,1.03,1.582,1.087,0.733,1.165,0.958,0.624,1.14,1.506,1.055,0.954,1.926,0.791,1.123,1.851,1.038,1.574,0.537,1.347,1.418,1.332,0.346,1.018,1.489,0.991,2.524,1.018,0.628,1.06,0.69,1.68,0.986,0.639,1.354,0.929,0.525,1.195,1.394,0.78,0.983,1.467,0.845,1.233,0.799,0.611,1.256,1.225 +NM_002940,0.656,0.982,1.258,0.717,1.005,0.994,0.679,0.72,1.695,1.284,0.786,0.93,0.776,0.712,1.002,1.379,0.828,0.663,1.124,0.855,0.733,0.725,1.585,1.27,0.656,0.7,1.438,0.929,0.592,0.917,1.067,1.28,2.713,0.964,0.51,0.859,1.023,0.878,1.379,0.902,1.121,1.055,0.716,1.25,1.251,1.064,0.931,0.744,1.331,0.766,1.139,1.003,1.11,2.077 +NM_002941,2.195,1.967,2.6900000000000004,2.0940000000000003,2.3179999999999996,2.032,1.835,2.0380000000000003,2.036,2.138,1.863,2.3129999999999997,2.017,1.896,1.9089999999999998,1.748,2.365,2.1029999999999998,1.734,2.278,1.843,2.042,1.9329999999999998,2.3920000000000003,1.8820000000000001,1.931,3.037,2.097,1.4489999999999998,2.226,2.2889999999999997,2.781,2.008,1.863,1.819,1.957,2.088,2.572,2.175,2.289,2.06,1.6949999999999998,1.806,1.9699999999999998,2.103,1.928,1.9740000000000002,2.023,2.017,2.027,2.152,2.035,1.855,1.885 +NM_002943,0.999,0.966,0.917,1.149,0.887,1.058,1.012,1.214,0.934,1.027,0.949,1.127,0.968,1.077,0.909,1.108,1.03,0.953,1.287,0.889,1.001,1.104,0.937,1.055,1.05,1.104,0.972,0.953,1.24,0.942,1.029,0.977,1.085,0.993,1.009,1.158,0.96,0.903,1.021,0.983,0.974,1.073,0.927,0.835,0.918,1.019,0.907,1.04,0.938,0.928,1.015,0.927,0.972,1.01 +NM_002944,0.753,0.931,0.97,1.006,0.791,0.983,1.079,0.88,1.033,0.921,1.075,1.029,1.03,0.827,0.964,0.965,1.054,0.922,0.897,0.93,0.916,0.956,0.904,1.061,0.975,1.013,1.118,0.916,0.994,1.005,0.791,1.076,0.944,0.87,0.938,1.007,1.001,0.773,0.997,1.135,1.02,1.079,1.445,0.976,0.904,0.805,0.925,0.923,1.194,1.118,1.028,1.068,1.001,0.838 +NM_002946,0.677,1.298,1.518,0.533,0.979,0.833,0.549,0.794,1.168,1.049,0.767,1.162,0.873,0.717,1.131,1.636,1.121,0.643,1.907,0.914,0.896,1.05,1.415,1.358,0.531,0.868,2.012,0.935,0.359,1.059,1.349,1.599,3.027,1.112,0.429,0.927,0.708,1.329,1.558,0.854,1.597,0.991,0.459,1.298,1.083,0.723,1.114,1.141,0.9,0.986,0.762,0.715,0.874,2.624 +NM_002947,0.481,0.81,1.0,0.778,0.729,1.11,0.776,0.46,0.866,0.995,1.28,0.579,0.56,0.563,0.812,1.33,0.858,1.106,1.063,1.194,0.625,0.581,1.687,0.835,0.523,0.636,1.113,0.641,0.62,1.329,0.815,1.282,3.446,1.416,0.4,1.532,1.187,0.618,1.152,0.869,1.01,1.074,0.73,1.751,0.81,1.036,1.238,0.616,1.095,0.655,0.98,1.448,1.134,1.848 +NM_002948,0.799,1.384,1.213,0.778,0.82,1.362,0.442,0.814,1.235,0.844,1.924,1.074,1.173,0.787,1.194,1.889,0.666,0.752,1.545,1.026,0.522,0.71,1.357,1.267,0.973,0.839,1.477,1.037,0.2,1.625,1.024,1.26,1.413,1.782,0.185,0.76,1.272,1.169,0.997,0.455,1.144,1.7,0.625,0.659,0.816,0.99,0.763,0.636,0.811,0.683,1.112,0.73,0.904,0.99 +NM_002949,0.552,0.922,1.19,0.584,0.983,1.031,0.737,0.469,1.09,1.086,1.014,1.282,0.832,0.364,0.854,1.768,0.831,1.05,0.992,0.833,0.278,0.727,1.697,1.278,0.498,0.646,1.377,1.008,0.397,0.891,0.814,1.029,1.038,1.043,0.0587,1.1,1.149,0.837,1.603,0.844,1.446,1.018,0.808,1.435,1.405,1.053,1.278,0.828,1.506,0.735,1.103,0.75,0.621,1.753 +NM_002950,0.377,1.047,0.787,0.804,0.582,1.126,0.88,0.216,0.672,0.719,1.036,0.492,0.453,0.25,0.681,1.613,0.597,1.029,0.775,1.018,0.304,0.521,1.583,0.774,0.412,0.65,0.834,0.558,0.423,1.704,0.47,1.375,1.474,1.463,0.0855,1.472,1.275,0.459,2.18,1.022,0.654,1.556,0.629,2.089,0.854,1.13,0.828,0.526,1.293,0.753,1.46,0.974,0.842,1.314 +NM_002951,0.424,1.016,0.99,0.625,0.576,0.994,0.874,0.205,0.673,0.666,1.312,0.389,0.259,0.347,0.754,1.331,0.599,1.055,0.85,1.084,0.375,0.538,2.166,0.593,0.593,0.405,0.861,0.579,0.474,1.924,0.555,1.758,1.257,1.388,0.087,0.92,1.354,0.57,1.536,1.621,0.711,1.316,0.737,1.562,0.827,1.559,1.248,0.336,1.131,0.543,1.781,1.675,0.868,1.618 +NM_002952,1.076,0.866,1.188,0.749,0.985,0.963,0.453,0.729,1.087,1.16,1.126,1.116,0.832,0.642,0.886,1.154,1.017,1.059,1.493,0.84,0.665,0.859,1.339,1.247,0.693,1.361,1.283,0.926,0.243,0.919,1.086,1.049,1.209,0.991,0.19,0.905,0.89,1.255,1.31,0.572,1.097,1.111,0.466,1.032,1.229,0.697,1.011,1.005,0.869,1.09,0.938,0.789,1.123,0.805 +NM_002953,0.427,1.0,0.608,0.875,0.573,2.395,1.136,0.507,0.586,0.669,1.449,0.636,0.522,0.597,1.025,3.447,0.584,0.929,0.722,1.553,0.587,0.59,2.011,0.645,0.812,0.619,0.656,0.494,0.953,1.447,0.569,0.953,1.389,1.617,0.485,1.159,1.807,0.598,3.246,1.254,0.672,1.647,1.362,2.195,0.623,1.624,1.25,0.573,2.068,0.662,1.395,0.832,0.627,1.556 +NM_002955,1.117,0.877,1.047,0.976,0.922,1.017,0.89,1.003,0.929,1.028,0.891,1.001,1.06,0.955,1.148,1.106,1.02,0.893,1.159,0.98,1.031,1.025,1.05,1.006,0.926,1.084,0.892,0.935,0.919,1.011,1.0,0.901,1.149,0.934,0.979,1.007,0.993,0.993,0.983,1.0,0.952,1.009,1.043,0.887,1.047,0.877,0.918,0.941,0.991,1.103,0.924,0.958,1.135,0.915 +NM_002956,1.098,0.968,1.093,0.901,1.168,0.938,0.861,1.042,1.142,1.123,1.081,0.991,0.956,0.951,1.113,1.114,1.049,0.997,1.077,1.021,0.992,0.959,0.964,0.981,1.001,0.955,0.994,0.945,0.922,0.972,1.005,1.054,1.101,1.012,1.064,0.917,1.053,0.815,1.022,1.066,1.052,0.974,0.963,1.022,1.055,1.172,0.951,0.922,0.97,0.844,0.999,0.954,1.055,1.047 +NM_002957,1.009,0.727,1.783,0.519,1.243,0.917,0.537,0.733,1.711,1.16,0.917,0.923,0.593,0.877,1.316,1.259,1.349,1.07,2.121,1.071,0.622,1.958,0.735,1.412,0.446,1.017,1.6,1.274,0.507,1.188,1.599,1.704,0.891,1.173,0.394,1.036,0.772,1.609,0.93,0.534,1.562,1.156,0.398,0.626,1.28,0.693,1.227,1.347,0.573,1.266,1.009,0.557,0.689,1.042 +NM_002958,0.707,1.213,1.603,0.639,1.051,0.942,0.577,0.643,1.573,1.199,1.015,1.252,0.91,0.721,1.003,1.639,0.868,0.874,1.115,1.137,0.496,0.939,1.071,1.301,0.452,0.753,1.249,1.29,0.444,1.157,1.074,1.833,2.216,1.205,0.222,0.727,0.9,1.065,0.914,0.76,1.242,1.011,0.604,1.174,1.057,0.898,0.903,0.886,0.866,0.659,0.856,0.791,0.976,1.58 +NM_002959,1.07,1.018,0.931,0.969,1.134,0.914,0.89,0.911,1.167,1.014,0.972,1.079,1.031,0.896,0.981,1.073,1.065,1.116,0.908,0.862,0.908,1.098,1.132,0.997,0.961,1.025,0.955,1.008,0.633,1.043,0.991,1.0,1.009,0.905,1.154,0.958,0.939,1.07,1.1,1.0,1.017,1.002,0.864,0.945,1.04,0.882,1.143,1.111,0.99,0.994,0.92,0.772,0.888,0.956 +NM_002960,1.076,0.994,0.957,0.98,0.915,0.848,0.699,1.013,1.157,1.126,0.904,1.057,1.203,1.194,1.009,0.993,0.94,1.251,1.188,0.821,1.179,1.212,0.913,1.03,0.798,1.166,0.92,0.88,1.054,0.96,0.968,1.094,1.324,1.002,0.933,2.21,0.931,0.913,1.105,1.747,0.786,0.968,0.754,1.223,1.259,0.929,0.895,0.991,0.934,1.064,0.965,1.309,1.121,1.214 +NM_002961,0.37,1.285,1.631,0.845,0.618,1.004,0.523,0.432,0.951,0.717,1.152,0.319,0.476,0.738,0.85,0.925,1.035,0.7,0.704,1.0,0.542,0.412,2.075,0.54,0.558,0.629,1.542,0.714,0.244,2.662,0.638,3.805,1.908,2.212,0.434,17.9,0.749,0.714,1.449,4.175,1.151,1.729,0.487,0.368,1.054,0.521,0.782,0.416,0.373,0.656,1.474,1.958,1.094,9.671 +NM_002962,0.928,0.937,0.765,0.887,0.879,1.177,0.737,0.948,0.888,0.953,1.065,1.062,0.894,0.77,0.993,1.165,1.021,0.95,0.982,0.854,0.892,0.918,1.066,1.022,0.957,1.05,1.042,1.002,0.666,1.386,0.876,1.039,0.963,1.153,0.933,1.355,1.032,0.922,1.125,1.025,0.91,0.945,0.805,1.074,1.078,1.134,0.984,0.947,0.887,0.961,1.071,1.005,0.886,1.136 +NM_002963,9.288,0.214,73.81,1.705,27.36,0.247,0.195,0.609,2.595,27.16,0.264,26.19,5.874,0.969,0.347,10.64,75.41,20.12,28.85,0.258,15.81,0.687,0.231,19.8,0.232,0.372,46.1,1.097,0.219,0.739,1.031,0.287,30.02,0.233,2.544,0.22,0.273,0.864,1.121,0.765,36.38,0.314,0.358,0.197,69.74,0.205,37.43,1.206,9.453,62.1,4.323,26.19,34.37,33.92 +NM_002964,1.16,0.023,2.1,0.754,1.864,0.0192,0.0154,1.326,1.8,1.658,0.0,1.749,1.514,0.639,1.172,1.538,1.743,1.59,1.481,0.0911,1.086,1.846,0.0126,1.652,0.0119,1.408,1.581,1.801,0.0107,0.0801,1.694,0.0649,1.419,0.0116,1.408,0.0198,0.0745,1.609,0.222,0.519,1.545,0.0808,0.0502,0.0367,2.028,0.0,1.445,1.956,0.629,1.581,1.209,0.816,1.159,1.324 +NM_002965,1.909,0.0254,3.169,0.928,3.055,0.0187,0.0244,2.15,2.767,2.229,0.0202,3.043,2.16,1.299,1.68,1.436,2.8,1.795,3.104,0.0724,1.775,2.349,0.019,2.706,0.0186,2.262,2.43,2.836,0.0195,0.0372,2.911,0.0385,1.738,0.0168,2.367,0.0229,0.0381,2.533,0.105,0.362,2.766,0.0399,0.04,0.0327,2.544,0.0179,2.235,2.743,0.324,2.395,0.859,1.187,2.319,0.995 +NM_002967,0.893,1.0,1.012,1.103,0.907,0.998,0.908,0.941,1.012,0.995,0.913,0.826,1.0,1.159,0.936,1.038,1.084,1.149,1.01,0.941,1.155,1.073,1.033,1.099,0.911,0.883,1.059,0.974,0.812,0.951,0.956,1.012,1.213,1.032,0.944,0.91,0.912,0.974,1.399,1.018,1.017,1.107,1.056,0.993,0.913,0.981,0.949,0.978,1.094,0.979,1.041,0.834,1.042,1.049 +NM_002968,1.079,1.139,0.852,1.016,1.021,1.048,1.167,0.99,0.976,1.04,0.946,0.951,0.719,1.153,0.904,0.947,0.891,0.938,0.929,0.946,0.978,0.948,1.091,1.068,0.956,0.933,0.903,1.179,1.547,1.004,1.043,0.836,0.956,1.127,1.1,1.054,1.103,0.844,1.085,0.835,0.879,1.224,0.991,0.836,1.072,1.037,0.983,0.888,0.939,0.944,1.002,0.961,0.955,1.066 +NM_002969,1.019,0.837,1.018,0.931,1.029,1.035,1.3,1.079,0.976,0.882,0.998,0.913,0.952,0.797,1.022,1.049,1.0,1.179,0.949,0.917,1.038,1.071,0.971,1.035,1.194,1.093,1.183,1.085,0.877,0.926,0.959,1.148,1.092,1.035,1.033,1.076,1.018,0.993,1.03,0.997,0.994,0.997,1.06,0.91,1.049,1.074,1.066,0.911,0.977,0.926,0.959,1.202,1.126,0.951 +NM_002970,0.415,1.199,1.52,0.629,0.999,1.662,0.616,0.919,1.263,0.425,0.516,0.754,0.753,0.785,0.821,1.288,1.321,1.124,1.685,1.293,0.548,0.805,1.143,1.226,0.388,0.799,2.183,1.211,0.362,1.283,1.574,1.011,1.604,1.497,1.57,0.322,1.414,0.89,0.67,2.072,1.492,0.946,0.552,0.293,0.722,0.768,0.973,0.66,0.465,0.8,0.793,1.205,1.483,1.646 +NM_002971,0.804,0.817,1.591,0.624,0.676,1.061,0.687,0.768,0.891,0.939,1.13,0.874,0.841,0.967,1.263,1.291,1.003,0.841,0.954,1.365,0.802,0.934,1.32,0.87,0.958,0.753,1.48,0.87,0.523,1.417,1.132,2.04,1.128,1.121,0.666,0.933,1.056,0.957,0.818,1.313,1.073,1.306,0.878,1.005,0.985,0.886,0.924,0.732,1.079,1.017,0.953,1.045,0.977,1.054 +NM_002972,0.885,0.903,1.49,0.582,1.421,1.031,0.616,0.742,2.027,1.761,0.643,1.11,0.503,0.695,0.841,1.252,1.164,1.201,1.115,1.005,0.477,1.374,0.863,1.64,0.322,1.021,1.315,1.725,0.537,1.085,1.117,1.258,1.06,0.87,0.637,0.7,0.989,1.98,1.197,0.889,1.464,0.861,0.564,0.913,1.536,0.843,1.243,1.226,1.032,0.951,1.016,0.737,0.696,1.14 +NM_002973,0.661,0.78,1.159,0.667,0.876,1.03,0.695,0.512,1.158,0.868,1.023,0.77,0.517,0.77,0.915,1.089,1.004,0.827,0.88,1.15,0.574,0.825,1.281,0.961,0.788,0.697,1.21,0.825,0.647,1.25,0.954,1.84,1.035,1.212,0.867,1.167,1.121,0.907,1.051,1.665,0.948,1.382,0.668,0.787,0.943,1.123,0.797,0.71,1.01,0.786,1.066,1.145,0.852,1.922 +NM_002974,3.12,0.447,9.497,1.053,9.116,0.307,0.39,1.484,2.927,9.124,0.492,6.274,1.19,1.491,2.009,2.038,7.446,4.568,8.28,0.461,0.837,1.47,0.337,2.075,0.334,1.58,18.26,3.404,0.322,0.36,2.069,0.371,1.96,0.337,1.3,0.403,0.365,5.03,0.437,0.368,2.049,0.325,0.407,0.403,5.471,0.39,3.183,1.498,0.398,8.13,0.993,2.093,13.21,1.096 +NM_002975,1.12,1.215,1.302,0.848,1.227,0.84,0.866,0.998,1.167,1.239,0.694,1.295,1.102,0.888,1.051,0.849,0.995,0.963,1.057,0.89,0.854,1.01,1.022,1.155,0.838,0.831,1.009,1.096,0.928,1.513,0.976,6.435,1.696,1.118,0.725,0.9,0.829,1.269,1.14,2.166,1.175,1.148,0.835,0.641,1.28,1.118,0.884,1.002,0.867,0.955,0.874,1.069,0.798,1.01 +NM_002976,0.904,0.866,1.178,0.963,1.081,1.139,0.881,1.209,0.928,1.092,0.912,1.17,0.97,0.969,1.005,1.046,0.944,0.978,0.922,0.938,0.971,1.123,0.872,1.102,1.05,0.945,1.079,0.964,0.883,1.039,0.937,0.957,0.952,1.107,0.907,0.949,1.062,1.036,0.907,0.989,1.017,1.046,1.352,1.126,0.894,0.905,1.076,1.0,1.02,1.094,0.961,0.871,0.868,1.013 +NM_002977,0.913,1.124,0.93,0.945,0.957,0.9,0.924,1.061,0.924,0.87,0.969,0.934,1.028,0.963,1.066,1.061,1.055,0.853,1.087,0.917,0.886,0.925,0.923,1.049,0.85,0.994,1.034,1.055,0.678,1.014,1.044,1.134,0.905,1.107,0.876,1.073,0.926,1.028,1.047,0.979,0.932,1.038,1.057,0.967,1.056,1.045,0.973,1.037,1.148,0.929,1.006,0.782,1.014,0.812 +NM_002978,0.828,0.755,1.632,0.856,1.171,0.754,0.752,3.27,0.843,0.958,1.09,0.772,0.97,0.863,1.008,1.363,1.231,0.869,1.265,0.829,0.833,0.76,0.85,0.86,0.653,0.856,1.463,0.82,0.825,0.825,0.835,0.965,1.156,0.755,1.779,0.708,1.026,1.568,2.005,0.866,1.019,0.911,1.271,1.138,1.012,1.181,1.989,1.886,0.929,2.154,1.171,1.15,1.146,1.003 +NM_002979,0.555,1.117,1.193,0.788,0.908,1.941,0.732,0.555,1.11,0.714,1.87,0.527,0.582,0.573,1.266,2.698,0.703,1.06,1.153,1.582,0.383,0.536,1.576,0.696,0.569,0.616,0.913,0.878,0.56,1.711,1.047,0.921,1.537,2.222,0.698,0.408,2.093,0.807,1.619,0.287,0.963,1.525,0.863,0.535,0.811,1.774,0.711,0.564,1.389,0.727,1.529,0.445,0.647,1.094 +NM_002980,1.02,1.172,0.899,0.978,1.042,1.005,1.411,0.909,0.857,0.917,1.044,0.972,0.936,0.906,0.965,1.096,0.9,1.035,0.945,0.975,0.933,0.964,0.894,0.988,1.614,0.98,0.929,0.95,1.111,1.116,0.957,21.23,1.198,2.09,0.903,0.961,1.124,1.026,1.141,0.994,0.799,1.138,1.197,0.944,0.923,1.03,0.951,0.943,0.993,0.979,0.922,0.873,0.828,0.944 +NM_002981,0.962,0.936,0.897,1.011,0.868,1.012,0.942,0.948,0.969,1.086,1.031,0.992,0.992,1.196,1.223,1.07,1.093,0.979,0.921,1.001,0.987,1.076,0.966,1.15,1.056,0.977,1.037,1.033,0.94,1.004,0.998,0.85,1.02,1.11,1.026,1.03,1.01,1.035,0.973,0.914,0.989,0.984,0.983,0.951,0.983,1.003,0.945,0.993,1.013,1.036,0.994,1.116,0.978,0.878 +NM_002982,0.839,1.58,0.746,1.514,0.696,1.387,1.135,0.883,0.691,0.806,0.921,0.81,0.753,0.925,0.857,1.305,0.684,0.701,0.615,0.843,0.752,0.693,1.439,0.772,1.145,0.734,0.855,0.742,0.852,1.894,0.741,4.332,2.649,2.405,0.704,0.849,1.135,0.73,2.276,2.579,0.981,1.275,0.992,0.716,0.861,1.233,0.854,0.649,0.7,0.887,0.882,2.653,0.929,3.427 +NM_002984,0.712,1.224,1.072,2.16,0.821,0.96,0.935,0.915,0.822,0.841,0.873,0.785,0.802,0.758,0.925,0.928,0.727,0.771,0.637,0.998,0.702,0.745,1.691,0.979,0.767,0.655,0.846,0.853,0.684,0.83,0.776,2.669,2.302,1.137,0.596,0.865,0.965,0.698,2.665,22.74,0.663,1.7,0.949,1.243,1.002,1.293,1.246,0.705,1.141,0.73,1.035,5.816,1.083,5.955 +NM_002985,0.431,1.897,2.843,0.589,1.124,1.282,1.659,0.621,1.306,0.779,0.458,0.697,1.071,0.717,0.592,0.297,0.681,0.931,0.421,1.84,0.417,0.766,1.308,1.092,1.96,0.48,1.46,0.991,0.295,2.366,0.768,2.068,1.098,1.495,0.235,0.408,1.579,0.666,0.963,1.319,0.945,1.857,0.366,0.708,0.844,0.553,0.856,0.558,0.413,0.514,0.859,1.051,0.747,4.681 +NM_002986,0.99,1.565,0.946,1.11,0.777,1.204,1.368,0.794,0.626,0.95,1.038,0.801,0.939,0.766,1.218,0.904,0.845,0.929,0.9,1.1,1.034,0.801,1.535,0.956,1.625,0.894,0.756,0.846,0.912,1.531,0.7,3.038,1.057,1.265,0.871,0.687,1.303,0.891,1.173,1.47,0.96,1.789,0.931,0.84,0.806,1.083,0.999,0.768,0.758,1.011,0.951,1.463,0.996,1.818 +NM_002987,1.064,0.934,0.954,0.987,1.057,0.893,0.951,1.186,1.286,0.957,0.983,1.072,1.167,0.968,0.98,0.852,1.212,1.047,1.135,0.989,1.05,1.037,1.06,1.099,1.024,1.151,0.967,1.152,0.902,0.935,1.121,0.782,1.018,0.905,1.247,1.016,1.019,0.955,0.824,0.844,1.108,0.845,0.887,1.146,1.0,0.899,0.933,1.037,0.966,1.119,0.928,1.069,0.902,1.237 +NM_002988,0.475,3.342,0.465,0.805,0.49,1.156,1.346,0.435,0.466,0.572,0.602,0.445,0.507,0.517,0.846,3.005,0.465,0.467,0.473,1.028,0.482,0.417,3.177,0.474,0.561,0.471,0.53,0.48,0.681,0.814,0.563,1.874,3.42,3.096,0.556,1.224,0.992,0.46,3.651,1.467,0.543,2.034,0.979,1.93,0.562,2.349,0.912,0.428,0.767,0.448,3.5,7.702,0.767,6.375 +NM_002989,0.904,1.083,0.987,1.154,1.172,1.514,1.162,0.834,0.854,0.916,0.954,0.951,1.086,0.918,1.667,0.9,0.799,0.974,0.868,1.648,1.356,0.92,0.945,0.946,1.255,0.945,0.951,1.028,0.936,1.464,0.831,1.119,0.822,1.916,0.901,0.923,0.999,1.179,1.209,1.258,0.999,2.166,1.025,0.814,0.932,0.879,0.881,0.931,0.875,0.945,1.09,0.925,1.177,0.792 +NM_002990,1.261,0.903,1.088,0.68,1.093,0.717,0.693,1.322,1.402,1.339,0.629,1.252,1.012,0.786,1.184,0.838,1.203,1.313,1.7,0.794,0.787,1.3,0.799,1.301,0.679,1.168,1.653,1.149,0.53,0.965,1.032,0.923,1.272,0.883,0.767,0.764,0.794,0.92,1.561,2.343,1.014,0.926,0.837,0.816,1.128,0.774,1.055,0.967,0.677,1.957,0.868,1.256,1.482,2.101 +NM_002991,1.113,0.866,0.893,1.031,0.961,1.026,0.874,1.049,0.885,0.903,1.107,0.892,0.954,0.961,1.219,1.28,0.896,1.078,0.901,0.878,0.906,0.84,1.14,1.013,0.962,0.968,0.843,0.893,0.834,1.001,1.137,0.783,1.132,0.965,1.1,1.074,1.106,1.054,1.138,0.944,0.877,1.037,0.967,0.929,0.909,1.249,1.012,1.001,1.269,1.073,1.103,1.105,1.077,1.147 +NM_002993,1.181,1.182,2.247,1.098,0.889,0.861,0.852,0.926,0.758,0.947,0.886,0.836,0.959,0.84,0.907,0.996,1.615,0.975,4.147,1.034,0.921,0.989,0.943,0.926,0.868,0.801,12.09,0.976,0.855,0.934,0.977,1.868,2.993,0.942,1.05,0.932,0.903,0.762,2.633,3.324,1.148,0.865,0.951,1.344,1.004,1.14,1.363,0.875,1.176,3.249,0.989,7.265,3.006,5.278 +NM_002995,0.84,1.339,1.05,0.784,1.028,0.929,1.558,1.106,0.966,0.9,0.871,0.868,0.892,0.866,0.999,0.799,1.007,1.063,1.017,0.975,0.86,0.889,0.898,0.968,0.957,0.876,1.065,0.834,1.077,1.335,0.972,1.212,0.897,1.018,0.851,1.174,1.095,1.019,0.842,1.455,0.991,1.253,1.103,0.99,0.9,1.038,1.036,1.268,1.192,1.224,0.916,0.92,0.794,1.232 +NM_002997,0.999,0.557,1.646,0.648,1.466,1.033,0.402,0.59,1.963,1.609,1.075,0.819,0.716,0.933,0.915,1.426,1.128,1.191,1.802,0.948,0.876,1.223,1.018,1.766,0.491,1.506,1.185,1.343,0.334,1.282,1.459,0.906,0.831,1.097,0.245,0.429,0.999,1.517,0.852,0.341,1.778,0.907,0.498,0.859,1.714,1.001,1.314,1.133,0.666,1.177,0.933,0.967,1.308,1.378 +NM_002999,0.582,2.069,0.823,0.816,0.571,1.333,0.719,0.56,0.806,0.708,1.007,0.391,0.53,0.621,0.663,1.168,0.707,1.155,0.819,1.327,0.423,0.666,1.461,0.645,0.784,0.817,0.556,0.554,0.637,1.782,0.927,2.119,1.293,2.069,0.425,0.818,1.06,0.728,2.894,2.745,0.785,1.286,0.872,1.919,0.516,0.739,0.906,0.682,0.486,0.642,0.917,1.903,0.913,2.943 +NM_003000,0.495,0.933,0.997,0.607,0.759,1.682,0.6,0.57,1.194,0.887,0.82,0.784,0.616,0.531,1.226,3.024,0.805,0.968,1.22,1.061,0.506,0.642,1.367,1.076,0.573,0.564,1.475,0.736,0.505,0.968,1.108,1.033,1.99,1.522,0.295,0.713,1.339,0.833,1.755,0.567,1.153,1.053,0.952,0.866,0.808,1.173,1.218,0.563,1.739,0.632,1.028,0.616,0.66,2.877 +NM_003001,0.714,0.882,1.122,0.678,1.049,1.103,0.628,0.624,1.027,0.918,1.036,0.909,0.879,0.529,0.848,1.906,0.967,1.256,1.604,0.847,0.488,0.871,1.08,1.128,0.583,0.973,1.038,0.902,0.437,1.063,1.037,1.117,1.361,1.354,0.499,0.772,1.332,1.059,1.263,0.708,1.016,0.973,0.678,1.114,1.078,1.015,1.046,1.078,0.956,0.98,1.005,0.702,1.013,1.52 +NM_003002,0.68,0.906,0.987,0.697,1.143,1.576,0.502,0.846,1.686,0.785,1.591,0.777,0.861,0.884,1.435,2.719,0.721,1.091,1.787,0.872,0.651,0.918,1.082,1.169,0.474,0.994,1.361,1.117,0.343,1.32,1.588,0.896,1.561,1.558,1.155,1.118,1.841,0.907,1.063,0.449,1.128,1.169,0.77,0.595,0.885,1.208,0.976,0.866,1.379,0.626,0.921,0.498,0.963,1.512 +NM_003003,1.139,0.841,1.108,1.019,1.214,0.997,0.858,1.032,1.246,0.96,0.923,1.009,1.14,0.782,1.073,1.194,1.266,1.037,0.893,0.955,0.867,0.903,0.91,0.998,0.992,0.913,0.734,0.892,0.62,1.108,1.116,1.402,1.062,1.087,2.61,0.84,0.857,1.524,1.121,0.89,0.915,0.973,0.828,0.999,1.107,0.926,1.098,1.138,0.794,1.184,1.009,0.974,1.138,1.038 +NM_003004,0.978,1.002,0.938,0.941,0.963,1.121,0.851,1.049,1.024,0.849,0.877,0.964,0.895,0.94,1.044,0.987,1.152,0.951,0.961,0.957,0.921,0.911,0.951,0.969,1.057,1.005,1.128,1.022,0.645,1.177,0.956,1.054,0.847,1.045,0.816,0.811,1.168,0.984,1.06,1.107,1.0,0.992,0.883,0.969,1.041,0.82,1.013,1.007,1.108,0.847,1.152,0.906,0.928,1.046 +NM_003005,0.85,1.509,0.797,0.866,0.863,0.948,0.978,0.79,0.747,0.805,0.974,0.734,0.73,0.687,0.824,0.988,0.78,0.876,0.779,0.768,0.833,0.692,1.646,0.853,0.836,0.76,1.051,0.967,0.742,1.49,0.698,1.499,1.034,1.167,0.755,2.129,0.988,1.084,3.465,1.834,1.105,2.03,1.023,0.975,0.844,1.123,1.527,0.851,1.146,0.778,1.321,1.868,0.86,1.629 +NM_003006,0.847,1.244,1.102,1.014,0.858,1.072,0.863,0.835,0.884,0.894,0.778,0.867,1.084,0.803,0.8,0.881,0.903,0.967,0.922,0.943,0.912,1.026,1.017,0.752,1.129,0.962,1.171,0.871,0.841,1.25,0.818,1.517,1.002,1.478,0.994,1.036,0.861,0.868,1.695,1.902,0.939,1.442,0.872,0.982,0.941,0.665,0.858,0.925,0.846,0.698,0.95,1.013,1.256,1.62 +NM_003008,1.021,0.874,1.138,0.982,1.0,1.066,1.117,1.052,1.02,0.973,1.045,0.827,1.051,1.048,0.915,1.171,1.04,0.997,0.964,1.008,1.074,0.946,0.944,1.092,1.02,0.949,1.059,1.03,0.896,0.866,0.864,0.915,1.247,0.929,1.014,0.949,0.958,1.0,0.921,1.054,0.911,0.892,0.712,0.898,1.115,0.858,1.063,0.874,0.933,0.937,1.089,1.1,0.917,0.985 +NM_003009,0.686,1.478,1.194,1.156,0.716,1.518,0.403,0.415,0.648,0.56,1.485,0.71,0.743,0.274,0.878,1.574,0.856,0.954,0.93,1.403,0.597,0.447,1.712,0.699,1.031,0.966,1.129,0.479,0.508,1.604,0.417,1.391,1.551,1.846,0.154,0.511,1.224,0.914,2.449,0.498,1.041,1.309,0.79,0.997,0.739,1.387,0.94,0.975,0.537,0.761,1.374,0.665,0.702,0.86 +NM_003010,0.998,0.729,1.346,0.854,1.31,1.049,0.632,0.877,1.971,1.542,1.174,0.894,0.884,1.002,1.082,1.26,0.897,0.944,1.584,0.96,0.802,0.885,0.925,1.349,0.735,1.025,1.114,1.309,0.538,1.015,1.437,0.937,1.328,1.197,0.816,0.631,1.09,0.957,0.722,0.749,1.253,0.841,0.71,0.789,1.391,1.092,1.011,0.861,1.046,1.03,0.942,0.805,1.397,1.285 +NM_003011,0.497,1.098,1.139,0.465,0.756,1.029,0.479,0.477,1.214,0.995,1.031,0.793,0.636,0.607,0.946,1.651,0.676,0.778,1.509,0.725,0.615,0.854,1.465,1.252,0.432,0.718,1.376,0.841,0.324,1.072,0.977,1.432,2.567,1.475,0.112,1.135,1.112,1.111,1.01,0.871,1.136,1.186,0.515,1.13,0.939,0.858,0.833,0.576,0.929,0.573,1.038,0.916,1.054,1.894 +NM_003012,1.413,0.945,2.01,1.161,1.131,0.969,1.065,0.949,1.375,1.118,0.941,1.541,1.754,1.226,1.354,1.334,1.14,0.957,1.435,0.854,1.168,1.274,0.768,1.838,0.938,1.969,4.562,0.883,1.026,1.003,1.32,0.938,1.011,1.203,0.995,0.791,0.778,1.347,0.754,0.896,1.464,3.556,0.664,0.803,1.093,0.891,1.147,1.1,0.746,1.309,0.964,0.997,2.363,0.738 +NM_003015,0.932,1.117,0.909,1.044,1.038,1.174,0.994,1.006,0.978,1.032,1.192,0.911,0.99,0.813,0.902,1.057,0.975,0.968,1.0,0.912,1.072,0.842,0.951,1.011,1.001,1.016,0.877,1.0,0.709,1.023,0.914,2.312,1.092,1.026,1.124,1.043,1.018,0.925,0.877,0.968,0.966,0.967,0.905,1.047,0.941,0.979,0.855,1.04,1.142,0.983,1.001,1.026,1.037,1.115 +NM_003016,0.91,0.701,1.166,0.967,0.928,0.952,0.537,0.387,1.667,1.327,0.837,0.882,0.609,0.639,1.003,1.333,0.85,0.865,1.377,0.715,0.636,0.683,1.46,1.408,0.613,0.947,1.624,1.002,0.447,0.852,1.065,1.258,2.231,1.053,0.185,0.956,1.141,0.88,1.474,0.898,1.083,0.932,0.965,1.534,1.408,0.927,0.825,0.775,1.246,0.861,1.082,0.792,1.135,1.792 +NM_003017,0.771,0.941,0.879,0.888,0.809,1.324,0.826,0.493,1.409,1.107,1.351,0.842,0.927,0.749,0.923,1.725,0.804,0.88,1.218,0.815,0.756,1.02,1.401,1.18,0.863,0.695,1.275,0.833,0.673,1.209,1.192,0.955,2.218,1.459,0.333,0.885,1.498,0.968,1.19,0.774,1.075,0.992,0.666,1.117,1.029,1.008,0.857,0.705,1.225,0.816,1.035,0.785,0.867,1.406 +NM_003019,1.11,0.987,1.746,0.966,1.533,0.798,0.864,1.005,1.252,1.213,0.866,1.093,1.092,1.324,0.882,0.94,1.234,0.986,1.386,0.892,1.091,1.237,0.882,1.347,1.023,1.184,1.242,1.258,0.822,0.843,1.311,2.361,1.051,1.206,0.815,0.999,0.991,1.165,0.903,0.83,1.518,0.84,1.031,0.802,1.364,0.77,1.088,1.225,0.818,1.258,0.896,0.765,1.19,0.985 +NM_003020,0.574,2.267,0.703,1.242,0.623,2.351,1.223,0.756,0.645,0.629,5.044,0.668,0.691,0.799,1.287,1.243,0.763,0.691,0.754,2.256,0.752,0.667,2.149,0.615,1.207,0.735,0.68,0.676,0.759,1.271,0.706,2.505,1.695,5.409,0.622,0.722,2.665,0.702,1.205,2.032,0.633,0.953,1.115,4.507,0.601,4.592,1.535,0.649,1.504,0.763,3.484,0.975,0.635,0.97 +NM_003021,1.109,0.662,0.829,0.725,0.91,0.923,0.539,0.687,1.336,0.927,1.158,0.664,0.924,0.863,1.283,1.527,0.925,0.742,1.36,0.65,0.629,0.953,1.644,0.949,0.487,1.65,0.972,1.375,0.383,0.798,1.27,1.128,2.213,1.041,0.887,0.947,0.959,0.808,1.871,1.033,1.089,1.105,0.718,1.469,0.97,0.834,0.881,1.956,0.975,0.981,0.925,0.74,1.124,1.657 +NM_003022,0.516,1.564,1.526,0.769,0.953,1.853,0.757,0.854,1.067,0.915,1.063,0.994,0.726,0.671,1.183,2.068,0.793,0.766,0.952,1.602,0.504,0.755,1.179,0.943,0.783,0.538,1.351,1.077,0.511,1.749,1.011,2.168,1.983,2.665,0.357,0.564,1.298,1.001,1.182,0.695,1.038,1.975,0.482,0.948,0.88,1.216,0.822,0.672,0.846,0.684,1.206,0.817,0.805,1.599 +NM_003026,0.965,2.011,1.001,0.969,0.925,0.991,1.237,0.915,1.109,1.047,0.855,0.946,1.039,0.852,0.907,0.986,0.923,1.07,0.842,0.94,1.081,1.104,1.136,0.994,4.026,0.935,1.186,0.859,1.238,1.036,0.858,1.065,1.428,1.84,1.062,0.978,1.335,0.968,0.959,1.048,0.903,1.119,0.771,1.027,1.036,1.059,0.97,0.87,0.989,1.09,0.946,1.031,0.926,1.008 +NM_003027,1.971,0.775,1.659,1.184,1.663,0.846,0.753,1.62,2.896,2.794,0.843,2.769,1.869,1.427,2.851,1.33,1.533,1.157,2.917,0.852,1.643,2.181,0.88,2.336,0.864,2.971,1.436,1.622,0.86,0.773,2.664,0.841,1.084,0.861,2.912,0.826,0.775,4.148,0.861,0.811,1.935,0.862,0.644,0.826,1.584,0.793,1.134,2.005,0.876,2.322,1.038,0.866,1.812,0.946 +NM_003029,1.6629999999999998,1.8780000000000001,1.733,1.969,1.573,2.347,1.677,1.272,1.6480000000000001,1.795,2.129,1.5619999999999998,1.558,1.258,1.7850000000000001,2.457,1.748,1.899,2.166,1.822,1.511,1.771,2.1879999999999997,1.912,1.9140000000000001,1.777,2.3390000000000004,1.417,1.75,2.291,1.499,2.971,3.1630000000000003,2.383,1.4569999999999999,2.033,2.1630000000000003,1.952,2.8129999999999997,2.835,1.721,2.2569999999999997,1.729,2.893,1.6749999999999998,2.0060000000000002,2.0279999999999996,1.808,2.038,1.935,1.9540000000000002,2.308,1.798,2.564 +NM_003030,2.013,1.995,1.7850000000000001,2.291,2.028,1.947,2.068,2.182,1.856,2.234,2.129,1.891,2.068,2.832,1.9689999999999999,1.908,1.8399999999999999,1.987,1.737,2.06,1.944,1.889,2.0549999999999997,1.96,1.881,1.778,2.1799999999999997,1.926,2.3600000000000003,2.161,1.797,2.182,2.122,2.056,1.8900000000000001,1.876,2.0389999999999997,1.9809999999999999,1.9609999999999999,1.905,2.046,1.918,2.253,2.2910000000000004,1.971,2.151,2.082,2.086,2.027,1.9020000000000001,1.881,2.351,1.982,1.811 +NM_003031,0.752,1.127,1.087,0.869,0.826,1.286,0.802,0.792,1.001,0.942,1.041,0.958,0.776,0.635,0.877,1.218,0.642,1.143,0.945,1.318,0.563,0.891,1.167,0.924,0.817,0.775,0.999,1.046,0.778,1.167,0.862,1.498,1.473,1.246,0.592,1.021,1.209,0.828,1.246,0.966,0.938,1.34,0.947,1.014,0.836,0.879,1.036,0.799,0.989,0.729,0.986,0.89,0.86,2.063 +NM_003033,1.025,0.958,1.051,0.998,0.998,1.081,1.211,0.909,1.032,1.055,0.996,0.981,0.964,1.031,0.938,0.88,1.037,1.099,1.156,0.984,1.071,0.865,0.973,0.78,1.085,0.875,0.968,0.963,0.959,1.062,1.142,0.977,0.93,0.959,0.98,0.992,1.103,1.233,1.01,0.953,1.045,0.883,0.966,0.891,0.835,0.957,1.145,1.129,1.064,0.953,1.029,1.119,0.851,1.002 +NM_003034,0.944,0.965,1.124,0.913,0.862,1.165,1.075,0.955,0.935,1.062,1.018,0.959,1.01,0.946,1.111,0.999,1.009,1.016,0.864,0.984,0.913,1.058,1.056,0.976,1.073,0.918,1.002,0.88,1.213,1.017,1.014,0.946,0.938,1.019,1.138,1.111,1.025,0.949,1.049,1.101,0.838,0.852,1.35,0.792,1.046,1.0,0.93,0.79,1.016,0.988,0.983,0.883,0.848,0.974 +NM_003036,1.023,0.95,0.923,1.032,1.024,0.949,1.064,1.002,0.972,0.999,0.906,1.001,1.063,1.026,1.077,0.977,0.968,0.852,0.994,0.964,0.972,1.003,0.9,1.159,1.08,0.899,1.196,1.094,1.093,1.058,1.047,1.207,1.031,0.909,1.003,1.003,0.908,0.92,1.047,0.992,0.956,1.132,1.14,0.966,0.923,1.044,0.85,1.06,0.965,0.936,0.924,0.994,0.945,1.004 +NM_003038,0.974,1.021,1.392,0.875,1.048,0.913,0.987,0.926,1.002,0.996,0.804,0.998,0.804,0.797,0.816,0.936,0.961,0.854,0.949,0.872,0.992,0.945,1.265,1.146,1.217,0.958,1.302,1.007,0.73,0.956,1.227,1.64,2.627,0.908,0.645,1.239,0.881,1.173,1.101,0.873,1.213,1.239,0.821,1.049,1.274,0.883,0.825,0.823,0.943,1.091,1.115,0.806,1.248,1.622 +NM_003039,1.112,0.839,1.271,0.872,0.982,0.851,0.742,0.962,1.047,1.246,0.949,1.012,0.994,1.037,0.957,1.805,1.131,1.072,1.085,1.027,0.97,0.908,1.056,1.018,0.791,1.091,1.553,0.915,0.855,0.869,0.898,1.414,0.886,0.852,0.933,0.747,3.797,1.064,0.876,1.063,1.074,1.194,1.491,0.739,1.071,1.299,0.951,0.937,1.314,1.085,0.943,0.881,1.481,0.991 +NM_003040,0.74,1.34,0.708,0.828,0.669,1.185,0.728,0.661,0.776,0.699,0.871,0.744,0.664,0.667,0.887,1.455,0.748,0.999,1.205,0.805,0.791,0.879,1.443,0.831,2.071,0.872,0.995,0.516,0.725,1.474,0.665,1.547,1.964,1.624,0.643,1.087,1.071,0.829,3.61,1.563,0.734,0.937,0.808,2.209,0.677,0.793,1.034,0.886,0.905,0.951,0.833,0.916,0.997,1.299 +NM_003041,0.886,0.891,1.095,1.041,0.978,1.126,0.955,1.381,1.123,1.028,0.869,0.943,1.028,1.008,0.859,0.992,0.997,0.899,0.959,0.87,1.189,1.114,1.101,0.838,1.162,0.998,1.046,1.232,1.147,0.9,1.228,1.062,1.371,1.01,0.961,1.134,0.96,1.155,0.902,0.863,0.962,0.957,1.139,0.871,1.302,1.316,0.84,0.971,0.994,1.088,0.829,0.856,0.899,1.243 +NM_003045,1.1,0.858,1.044,1.185,0.885,1.034,1.126,0.88,0.936,1.115,1.071,0.952,1.096,1.085,1.123,0.904,1.042,1.347,1.076,0.929,1.077,0.993,1.023,1.082,0.955,1.168,0.785,0.979,0.903,0.928,0.996,0.937,1.076,0.888,1.08,1.047,0.997,0.898,0.809,0.922,1.066,0.852,1.11,1.138,0.905,0.909,1.056,1.227,1.114,1.17,1.125,1.134,1.109,0.894 +NM_003046,1.087,0.92,0.842,1.127,0.968,1.153,1.038,1.183,1.067,1.077,1.016,1.028,1.115,1.072,0.984,0.974,1.023,1.162,0.96,0.997,1.088,0.904,0.921,1.035,0.991,0.982,0.973,0.903,1.133,1.037,0.953,1.025,0.951,0.972,0.943,1.117,1.002,1.164,1.117,1.162,0.931,0.992,0.805,1.087,1.033,1.008,0.91,1.064,0.907,0.921,1.063,0.966,1.027,1.057 +NM_003047,0.213,3.366,0.54,1.175,0.374,3.793,2.384,0.284,0.387,0.522,1.414,0.266,0.188,0.223,0.984,2.153,0.38,2.41,0.35,3.899,0.288,0.259,2.248,0.398,1.208,0.263,0.528,0.297,2.223,4.017,0.324,1.456,0.529,4.204,0.409,1.444,2.543,0.47,3.921,0.612,0.392,2.91,1.409,1.321,0.426,2.796,0.961,0.327,1.724,0.384,2.617,0.737,0.439,0.92 +NM_003048,0.821,2.439,0.758,1.129,0.894,2.609,1.971,0.798,0.738,0.863,1.851,0.764,0.901,0.607,0.867,1.22,0.727,1.17,0.741,2.163,0.809,0.858,1.888,0.727,1.8,0.781,0.761,0.776,1.845,2.595,0.796,0.835,0.936,2.075,0.8,1.095,1.657,0.649,2.858,0.608,0.715,2.082,1.44,1.979,0.715,2.124,1.038,0.783,1.273,0.742,1.596,0.793,0.941,0.87 +NM_003049,0.979,0.931,0.943,0.912,1.147,0.986,0.898,1.098,0.956,0.967,1.055,1.042,1.103,1.068,0.939,0.933,0.931,1.026,1.08,1.157,0.943,0.971,0.986,1.204,1.024,1.028,1.102,1.044,1.029,0.991,1.009,0.894,1.007,0.946,0.966,1.131,0.961,1.055,0.898,0.999,0.868,0.925,1.022,0.981,0.992,1.027,0.874,1.041,1.053,1.04,0.905,1.038,1.007,0.958 +NM_003051,0.961,1.018,1.011,1.163,1.211,1.016,1.041,0.919,1.006,0.927,0.99,0.973,0.966,0.953,0.976,0.976,1.247,1.113,0.905,0.933,1.0,1.103,0.99,1.008,0.999,1.239,1.073,0.811,0.959,1.208,0.875,0.961,1.069,0.891,0.999,1.112,1.006,1.122,0.997,0.976,1.073,0.962,0.914,1.095,0.955,1.037,1.023,0.938,0.957,0.978,1.013,0.951,0.869,1.015 +NM_003052,0.978,1.033,1.011,0.979,0.93,0.91,0.986,0.913,1.067,1.142,0.725,1.043,0.931,0.822,0.879,1.144,0.963,0.99,0.916,0.972,1.069,1.064,0.95,0.997,0.942,1.039,0.91,1.032,0.906,0.949,0.987,1.001,1.121,0.915,1.021,0.964,1.008,1.103,0.968,0.986,0.978,1.063,1.071,0.91,0.991,0.938,1.053,1.104,0.989,1.056,0.949,1.062,1.003,1.038 +NM_003053,0.819,0.953,0.987,1.058,0.935,0.957,1.037,0.889,1.043,0.861,1.14,0.942,1.002,0.897,1.12,1.376,1.011,1.009,0.946,1.025,0.972,0.994,1.083,0.832,0.919,0.861,1.044,0.888,1.469,0.967,1.02,0.821,0.837,1.001,0.896,0.78,1.024,0.924,0.906,0.846,0.812,1.0,1.64,0.891,1.03,1.626,0.987,0.933,1.301,1.058,1.112,0.789,1.087,0.816 +NM_003054,1.059,1.04,0.839,1.14,0.914,1.002,1.171,0.842,0.751,0.844,1.106,0.986,1.163,0.832,0.937,0.914,0.836,0.98,1.1,1.019,0.985,0.84,1.274,0.925,1.064,1.039,0.882,0.859,1.391,1.205,1.022,0.9,0.892,1.006,1.21,1.244,1.036,1.101,0.973,0.96,0.985,1.027,0.886,0.871,1.026,1.084,1.081,0.991,1.066,0.769,1.05,1.194,0.841,0.938 +NM_003055,0.988,1.102,0.956,1.058,0.959,1.025,0.887,0.942,0.979,0.846,0.997,1.219,1.035,0.996,0.887,0.999,0.967,1.162,1.13,0.998,1.031,1.123,0.959,0.946,1.05,1.179,0.986,0.984,1.256,0.931,1.142,1.109,1.021,1.227,1.014,0.967,1.077,1.101,0.888,0.999,0.995,0.903,1.098,1.08,1.024,0.976,1.093,1.018,0.991,0.974,0.93,0.928,0.922,0.906 +NM_003057,1.044,0.891,1.022,1.125,1.059,0.848,1.112,0.945,0.871,0.832,1.049,1.067,0.951,0.999,1.048,1.309,0.955,1.064,0.852,0.917,1.037,0.972,0.8,0.975,0.956,1.018,1.109,0.998,1.38,0.906,1.179,1.01,1.057,0.828,0.982,1.019,1.026,0.986,1.047,1.072,1.168,1.034,0.996,0.964,0.976,0.938,0.98,0.873,0.97,0.964,0.945,0.916,0.982,1.02 +NM_003058,0.91,0.87,0.971,1.082,0.994,0.999,1.25,1.017,0.978,0.864,1.118,0.987,1.134,1.18,1.939,0.947,1.001,1.06,1.012,1.043,1.078,1.098,0.989,1.075,0.862,0.932,0.98,1.298,1.751,1.016,1.012,1.068,0.98,0.972,0.989,0.933,1.05,0.998,1.03,1.069,0.953,0.984,1.348,0.915,0.911,1.117,0.909,0.98,1.029,1.05,0.977,1.015,1.137,0.955 +NM_003059,0.991,1.015,1.059,1.016,0.878,0.951,0.982,0.836,0.843,0.918,0.859,0.961,1.036,0.85,1.15,1.217,0.941,0.999,0.949,0.893,0.963,0.981,1.008,1.046,0.828,0.876,0.987,0.905,0.801,1.127,0.987,1.195,1.003,0.956,1.063,0.942,1.546,1.033,0.977,1.63,1.101,1.15,1.212,0.917,0.996,0.995,1.168,0.993,1.001,0.916,0.913,1.154,1.076,1.052 +NM_003060,0.824,1.213,0.827,0.96,0.731,1.25,0.869,0.767,0.91,0.856,1.039,0.758,0.765,0.837,1.146,1.708,0.802,1.086,0.855,1.336,0.723,0.655,1.65,0.814,1.002,0.705,0.866,0.81,0.849,1.468,0.816,0.906,0.873,1.424,0.699,0.868,1.654,0.839,1.156,0.803,0.835,1.613,1.04,0.943,0.76,1.272,0.839,0.685,1.182,0.772,1.116,1.107,0.878,1.044 +NM_003062,0.931,1.022,1.051,0.864,0.894,1.08,1.129,1.052,0.94,0.899,0.808,1.048,1.069,0.988,0.891,1.097,0.939,0.997,0.925,0.937,1.069,0.911,1.048,0.964,1.0,1.123,0.952,1.041,0.968,1.055,0.99,1.322,0.904,1.292,0.895,1.017,1.12,1.16,1.169,1.038,1.01,1.422,0.921,1.003,0.985,1.006,0.908,0.97,1.031,0.936,0.989,1.099,0.955,1.046 +NM_003063,0.977,0.927,0.956,1.012,1.154,1.025,0.977,0.952,1.106,1.045,1.123,0.966,0.977,0.9,1.265,0.944,1.164,0.981,1.048,0.987,1.001,1.041,1.054,0.981,0.952,1.149,0.954,0.945,1.104,0.935,0.973,1.012,0.963,1.134,0.977,1.036,1.057,1.065,1.179,1.55,1.078,1.029,0.92,1.012,0.944,1.081,0.991,0.983,0.865,0.985,0.986,1.265,0.999,1.115 +NM_003068,1.043,0.865,2.111,0.851,1.081,1.226,0.875,0.977,1.292,1.062,0.757,1.491,0.97,0.905,1.006,0.851,1.239,0.909,1.4,0.835,1.103,1.108,0.901,1.703,0.672,1.074,2.745,1.263,0.67,1.543,1.573,2.38,1.277,1.379,0.607,0.85,0.793,1.271,0.909,0.964,1.393,1.171,0.622,0.756,1.235,0.795,0.997,0.96,0.677,1.317,0.892,1.069,1.592,0.957 +NM_003070,1.027,0.699,1.003,0.954,0.887,0.859,1.085,1.128,1.084,0.892,0.987,0.912,1.136,0.848,0.854,1.033,0.869,1.09,1.138,0.847,0.945,0.971,1.021,0.995,0.906,1.096,1.07,1.042,0.872,1.138,1.202,0.951,0.931,1.019,1.101,0.925,0.918,0.999,1.015,1.177,1.032,1.058,1.001,0.963,0.9,1.028,1.124,0.992,1.05,0.958,0.922,1.01,0.897,1.066 +NM_003071,0.802,0.971,1.054,1.037,0.87,0.979,1.112,0.861,0.987,0.962,0.838,0.913,1.217,0.817,1.051,0.991,0.951,1.008,0.922,0.886,0.927,0.875,1.055,0.851,0.999,0.9,0.944,0.907,0.922,1.21,1.099,1.063,1.605,1.054,0.787,1.001,1.033,0.969,1.145,1.095,1.011,0.968,0.843,1.034,0.908,0.825,0.992,1.069,0.823,0.933,1.148,0.819,0.901,1.248 +NM_003072,1.101,0.831,1.492,0.625,1.232,0.801,0.498,0.687,1.697,1.104,0.785,0.875,0.595,0.95,1.116,1.253,1.004,0.996,1.256,0.852,0.519,1.375,1.653,1.159,0.519,1.122,1.27,1.082,0.409,0.878,1.334,0.928,1.629,0.925,0.816,0.652,0.859,1.351,1.242,1.223,1.209,1.018,0.657,1.21,1.136,0.817,0.874,1.442,1.045,0.892,1.21,0.946,1.033,1.381 +NM_003073,1.121,0.87,0.966,1.169,0.749,1.085,0.651,0.819,0.952,0.987,0.988,0.888,0.942,0.729,1.012,1.268,0.869,0.799,1.451,0.864,1.138,0.84,1.15,1.13,0.957,1.329,1.103,0.736,0.539,0.857,0.934,1.13,1.624,1.354,0.512,0.759,0.922,0.761,1.624,0.861,0.872,1.167,0.75,1.384,1.029,0.809,0.737,1.002,0.727,1.076,1.107,0.82,1.251,1.056 +NM_003074,0.705,1.111,1.44,0.554,0.918,0.826,0.601,0.435,1.224,1.142,0.886,0.72,0.52,0.748,0.801,1.294,0.809,0.975,1.452,0.9,0.658,0.832,1.694,1.051,0.602,0.937,1.3,0.791,0.483,1.001,1.03,0.866,2.881,1.225,0.313,0.798,1.08,1.354,1.591,0.988,1.085,1.269,0.723,1.056,1.137,0.931,0.817,1.02,1.12,1.143,1.025,0.849,0.971,1.857 +NM_003075,1.079,0.983,0.993,0.996,0.858,1.086,1.003,0.961,1.134,1.112,1.135,0.86,0.851,0.955,0.785,0.889,1.035,0.851,1.184,0.989,1.243,0.909,0.917,0.98,1.015,1.038,0.917,1.002,0.889,1.012,1.037,0.991,1.123,0.859,0.795,1.045,0.979,0.942,1.455,0.996,0.971,0.824,1.1,1.481,0.884,0.828,0.961,1.123,0.923,0.979,1.016,0.715,0.919,1.011 +NM_003076,1.009,1.258,1.051,0.896,1.019,1.052,1.113,1.049,1.013,0.971,1.032,0.974,1.025,0.995,0.966,1.096,1.012,1.157,1.02,0.924,0.911,0.911,0.894,1.035,1.015,0.954,0.901,0.923,1.396,0.905,0.895,1.004,1.111,0.965,0.983,1.001,1.06,0.999,1.043,1.169,0.89,1.136,1.014,1.063,1.181,0.936,1.129,1.009,0.925,0.993,1.032,0.997,1.021,1.023 +NM_003077,0.799,1.063,1.115,0.677,0.91,0.932,0.481,0.504,1.066,0.962,1.048,0.766,0.807,0.712,0.776,1.528,0.871,1.04,1.742,0.733,0.701,0.915,1.269,0.886,0.614,1.419,1.192,0.778,0.512,1.125,0.858,1.095,0.769,1.15,0.387,1.292,0.955,1.057,1.46,0.845,1.061,1.059,0.565,1.905,0.753,0.836,0.952,1.085,1.011,0.927,0.935,0.674,0.882,0.842 +NM_003078,0.957,1.33,0.839,0.978,0.812,1.089,1.041,0.766,0.905,0.813,0.999,1.117,0.979,0.913,1.033,0.928,0.89,0.955,0.79,0.873,0.778,0.782,1.003,1.195,1.457,1.04,0.91,1.148,0.822,1.447,0.896,3.319,1.146,1.408,0.797,0.948,1.024,1.025,1.456,1.245,1.214,1.222,1.035,0.804,0.88,1.157,1.098,0.909,0.859,0.913,0.912,1.222,1.235,1.075 +NM_003079,0.534,0.995,1.501,0.64,1.02,0.976,0.535,0.431,1.246,1.214,0.823,1.012,0.666,0.52,0.814,1.152,1.024,0.854,1.006,1.099,0.547,0.942,1.343,1.215,0.488,0.831,1.438,1.0,0.447,1.0,0.883,1.37,2.889,0.838,0.27,1.587,0.862,0.922,1.165,0.983,1.237,1.037,0.922,1.655,0.992,1.101,1.1,0.698,1.247,0.867,0.896,1.188,1.111,2.023 +NM_003080,0.838,0.826,1.112,0.833,0.949,1.275,0.753,0.916,1.095,1.1,1.278,1.035,0.951,0.735,1.211,1.527,0.818,0.97,1.326,1.207,0.78,1.227,1.229,1.315,0.766,1.515,0.774,0.931,0.624,0.999,0.989,0.818,1.141,1.105,0.492,0.929,1.1,1.283,1.049,0.846,0.821,0.979,0.688,1.002,1.025,1.131,0.834,0.883,1.025,1.035,1.02,0.814,0.785,1.105 +NM_003083,0.958,1.001,0.848,1.144,0.872,1.199,0.909,0.794,0.879,0.991,0.991,0.918,0.984,0.893,0.982,1.3,0.895,0.94,0.889,0.961,0.905,0.789,1.295,1.036,1.034,1.291,0.97,1.045,0.777,1.371,0.871,1.341,1.103,1.24,0.76,1.063,0.955,0.915,1.37,1.262,0.882,1.056,0.755,1.427,0.932,1.071,0.801,0.985,0.86,0.986,1.043,0.915,0.969,0.959 +NM_003084,1.011,0.685,1.393,0.793,1.224,1.124,0.685,0.864,1.198,0.878,1.018,1.118,0.702,0.788,1.188,1.18,1.054,1.083,1.289,0.924,0.665,1.128,1.09,1.256,0.747,0.903,1.293,1.156,0.515,1.088,0.95,1.073,0.947,1.0,0.645,0.773,1.109,1.027,1.004,0.622,1.023,1.112,0.787,1.151,1.188,1.024,1.021,1.026,0.904,0.973,1.045,1.082,0.856,2.302 +NM_003085,0.851,0.91,1.006,1.038,1.069,1.15,1.027,1.072,0.987,1.086,1.05,1.052,0.905,0.874,0.905,1.131,0.971,0.945,0.993,1.004,1.013,1.071,1.038,1.017,1.105,0.949,0.854,0.881,0.885,1.046,1.03,0.999,0.875,1.067,1.023,1.093,0.863,1.111,1.022,0.859,0.934,0.925,0.837,1.003,0.985,1.106,1.128,0.961,1.001,1.106,0.918,0.957,1.235,0.938 +NM_003086,0.749,1.262,1.194,0.735,0.782,0.918,0.623,0.546,1.205,0.834,0.948,0.717,0.531,0.776,0.874,0.857,1.093,0.837,0.954,1.282,0.713,0.781,1.042,0.967,0.74,0.704,1.457,0.842,0.532,1.118,0.825,1.949,1.651,1.085,0.466,3.39,0.934,0.957,0.961,1.821,1.205,1.009,0.91,1.275,0.83,0.971,0.897,0.628,0.964,0.731,1.086,1.186,0.805,1.966 +NM_003087,1.718,1.005,1.129,1.351,1.818,0.845,0.861,2.89,1.733,1.063,0.859,1.46,1.558,1.341,1.674,1.203,1.131,1.187,1.307,0.989,1.341,1.156,0.904,1.071,0.989,2.536,0.986,2.482,0.656,0.875,2.523,0.784,1.011,1.008,11.21,0.981,0.86,1.707,0.921,0.888,0.974,0.981,0.818,0.906,1.179,0.87,1.176,2.957,0.841,1.046,0.905,0.974,1.129,1.039 +NM_003088,1.137,0.828,0.926,1.153,0.874,0.944,0.99,0.845,1.074,1.086,0.839,0.939,0.916,0.984,1.086,1.108,1.237,1.256,0.917,0.991,1.329,0.97,1.021,1.091,1.125,1.122,1.371,1.011,1.191,0.824,1.261,1.275,0.919,0.825,0.965,0.886,1.145,1.174,1.102,1.219,1.154,0.874,1.112,2.155,0.998,1.195,1.05,1.134,0.901,1.092,0.999,0.954,0.993,1.175 +NM_003089,0.616,1.034,1.074,0.679,0.814,0.903,0.69,0.493,1.036,1.152,0.808,0.858,0.644,0.554,0.878,1.605,0.76,0.82,1.455,1.077,0.98,0.835,1.506,0.992,0.593,0.833,1.128,0.679,0.615,0.775,0.763,1.276,2.809,1.146,0.363,1.509,0.9,0.696,1.89,1.328,0.945,1.058,0.824,2.145,1.334,0.872,0.867,0.826,1.299,0.802,0.992,1.001,1.251,1.945 +NM_003090,0.72,1.184,0.831,0.881,0.721,1.093,0.499,0.51,1.222,0.865,0.874,0.887,0.615,0.715,0.982,1.701,0.739,0.832,1.111,0.773,0.855,0.832,1.235,1.05,0.627,0.99,1.326,0.783,0.599,0.969,0.75,1.128,2.045,0.957,0.259,1.254,1.01,0.986,2.448,1.25,1.016,0.827,0.725,1.453,0.751,1.183,1.768,0.799,1.113,0.747,1.147,0.828,0.96,1.541 +NM_003091,0.742,0.458,0.983,0.869,0.795,1.149,0.494,0.535,1.265,1.042,0.882,0.867,0.699,0.575,1.003,1.662,0.795,0.887,1.658,0.83,0.97,0.885,1.625,1.055,0.556,1.127,1.49,0.815,0.417,1.04,0.997,0.923,4.747,1.334,0.269,1.805,0.808,0.718,1.638,1.476,0.988,0.886,0.594,2.441,1.229,0.747,0.813,0.694,0.992,0.935,0.85,1.192,1.504,2.957 +NM_003092,0.739,0.904,1.067,0.759,0.825,0.873,0.928,0.509,0.979,1.077,0.96,0.626,0.631,0.717,0.778,1.196,0.886,0.917,0.842,1.012,0.645,0.733,1.924,0.998,0.767,0.676,1.19,0.805,0.752,1.323,0.82,1.002,1.977,1.267,0.482,0.941,0.809,0.716,1.249,1.496,0.996,1.206,1.22,1.856,1.074,0.974,0.897,0.595,1.136,0.548,1.128,1.333,0.95,2.015 +NM_003093,0.666,1.0,1.006,0.835,0.733,1.237,0.692,0.626,0.923,0.842,0.9,0.765,0.758,0.629,0.811,1.547,0.889,0.891,1.343,1.042,0.784,0.742,1.371,1.002,0.721,0.906,1.185,0.701,0.472,1.02,0.899,1.347,4.255,1.308,0.361,1.584,0.917,0.696,1.886,0.759,0.877,0.961,0.618,2.169,0.971,0.796,0.995,0.732,1.082,0.759,1.034,0.91,1.087,2.27 +NM_003094,0.425,1.064,1.119,0.54,0.758,1.254,0.562,0.638,1.167,0.993,0.908,0.836,0.667,0.558,0.985,2.333,0.902,0.811,1.202,0.866,0.557,0.783,1.446,1.303,0.365,0.558,1.504,0.838,0.355,1.052,0.921,1.514,4.97,1.457,0.0989,0.867,1.008,0.912,1.379,1.237,1.28,1.194,0.569,1.033,0.853,1.004,1.136,0.727,1.367,0.555,1.034,0.776,0.719,1.905 +NM_003095,0.771,0.627,1.147,0.809,0.8,0.826,0.533,0.406,1.14,1.202,1.009,1.023,0.676,0.43,0.845,1.472,0.841,0.95,1.037,1.002,0.491,0.776,1.547,1.249,0.473,0.705,1.338,1.107,0.312,1.067,0.837,0.874,2.062,0.991,0.0646,1.434,0.938,0.885,1.47,0.846,1.319,0.972,0.739,1.121,1.174,0.988,0.998,0.671,1.322,0.802,1.111,1.249,0.859,1.999 +NM_003096,0.548,0.79,1.051,0.685,0.823,0.986,0.717,0.535,1.135,1.019,1.099,0.687,0.663,0.568,0.963,1.961,0.717,1.192,1.689,0.882,0.785,0.755,1.695,1.171,0.489,0.768,1.32,0.852,0.498,0.873,0.805,1.447,3.843,1.305,0.273,1.383,1.0,0.85,1.404,1.079,1.218,1.068,0.672,1.453,0.988,0.825,1.211,0.73,1.212,0.675,1.044,1.005,0.948,1.944 +NM_003097,0.946,1.693,1.562,1.052,1.089,0.796,0.931,0.824,1.303,1.143,0.902,0.78,0.888,1.025,1.098,0.873,1.269,1.188,1.372,0.985,1.033,0.891,0.869,1.156,1.432,0.9,1.508,1.035,0.714,1.104,1.289,1.993,1.019,2.198,0.696,0.66,0.972,1.375,0.977,0.831,1.528,1.46,0.766,0.734,1.231,0.886,1.103,0.781,0.721,0.994,0.845,0.973,1.242,1.047 +NM_003098,0.96,1.969,1.176,0.848,0.996,1.268,0.89,0.841,1.363,1.263,0.683,1.142,0.954,0.971,0.818,0.697,0.838,1.3,1.245,1.13,0.667,0.811,1.023,1.113,1.283,1.178,0.913,1.178,1.194,1.64,0.952,2.247,0.957,1.823,0.611,0.563,0.877,1.442,0.855,0.775,1.3,1.273,0.589,0.945,1.25,0.697,0.884,0.746,0.544,1.008,0.814,0.937,0.962,1.756 +NM_003100,0.634,1.294,1.195,0.69,1.016,1.885,0.751,0.601,1.153,0.781,1.243,0.815,0.577,0.849,0.907,1.486,0.855,1.077,1.153,0.908,0.462,1.006,1.096,1.093,0.765,0.828,1.317,0.824,0.767,1.619,1.127,1.113,1.233,1.958,0.619,0.641,1.448,0.918,1.271,0.4,1.011,1.097,0.619,0.612,0.797,0.906,1.055,0.882,0.962,0.695,0.904,0.832,1.026,1.382 +NM_003102,0.356,2.974,0.364,0.558,0.404,2.687,0.913,0.382,0.401,0.456,2.305,0.357,0.378,0.344,1.715,1.128,0.363,0.387,0.349,8.216,0.542,0.354,3.961,0.466,0.851,0.356,0.368,0.832,0.347,2.455,0.349,3.925,1.329,3.682,0.33,0.982,1.592,0.85,1.098,2.199,0.974,5.679,2.222,2.62,0.409,1.91,0.642,0.38,0.473,0.339,5.153,1.468,0.468,1.866 +NM_003104,0.978,2.337,1.147,0.552,1.117,0.881,0.695,0.587,1.43,1.121,0.45,1.07,0.757,0.684,0.766,0.972,0.796,0.916,1.3,0.718,0.536,1.203,1.066,1.174,0.852,0.784,1.433,1.085,0.693,1.185,1.168,0.621,1.455,1.364,0.459,2.392,1.0,0.964,1.328,1.247,1.221,0.89,0.646,1.127,1.081,0.53,1.032,1.328,1.512,0.912,0.841,0.713,0.829,2.355 +NM_003105,0.809,1.142,0.833,0.852,0.815,1.043,0.66,0.642,0.87,0.759,1.257,0.687,0.69,0.846,0.919,1.022,0.766,1.035,0.793,1.45,0.646,1.001,1.462,0.68,0.843,0.943,0.848,0.762,0.645,1.631,0.784,1.025,0.971,1.323,0.649,1.424,1.461,0.904,1.564,2.96,0.812,1.783,1.01,0.992,0.719,1.16,1.226,0.762,0.881,0.774,1.134,1.359,0.728,0.729 +NM_003106,0.924,1.002,0.883,0.996,1.026,0.962,1.408,0.877,0.89,0.942,1.009,1.044,1.107,0.904,0.904,0.747,1.024,1.078,0.928,0.933,0.971,0.932,1.039,0.934,1.106,1.035,1.285,1.016,0.869,1.02,0.959,1.125,1.045,1.041,1.032,0.868,0.917,1.042,1.029,0.817,1.071,0.996,1.119,1.161,1.005,0.928,1.1,1.074,0.888,1.227,0.919,0.971,1.048,0.943 +NM_003107,0.44,1.216,1.06,0.492,0.527,1.536,0.568,0.42,0.676,0.548,1.406,0.697,0.769,0.357,0.747,1.982,0.709,0.944,1.0,1.531,0.464,0.471,1.884,0.498,0.69,0.456,0.735,0.514,0.497,1.0,0.536,2.456,3.331,1.37,0.656,0.623,1.142,0.915,1.491,3.366,0.64,1.671,1.12,1.53,0.704,1.319,1.016,0.553,1.118,0.877,1.473,0.859,0.639,3.286 +NM_003108,1.047,1.008,0.974,0.912,1.256,0.951,0.918,0.986,0.997,1.008,1.282,1.028,0.944,0.962,0.879,0.948,1.092,1.0,0.841,0.904,0.849,0.965,0.864,0.908,0.964,1.09,1.049,1.029,0.737,1.014,0.93,1.255,0.743,1.062,1.034,0.909,0.87,1.016,1.051,1.082,0.986,1.011,1.233,1.013,0.99,0.933,1.085,0.967,1.025,0.963,0.994,0.962,0.884,0.862 +NM_003110,0.905,0.881,1.109,0.991,0.932,0.968,0.752,0.724,0.983,0.929,1.106,0.737,0.684,0.858,1.027,0.972,0.973,0.866,1.118,0.887,0.781,0.929,1.174,1.02,0.875,1.108,1.123,0.85,0.667,1.124,0.889,0.96,1.518,1.242,0.802,1.022,0.947,0.902,1.539,0.87,1.034,1.146,0.96,1.4,1.002,1.134,0.78,0.928,0.975,0.977,1.064,0.851,1.173,1.191 +NM_003111,0.829,1.111,1.459,0.741,0.905,1.489,0.7,0.946,1.086,0.814,0.934,1.034,0.95,0.951,1.131,1.522,0.762,1.046,0.934,1.037,0.514,1.135,1.095,1.389,0.77,0.67,1.73,0.989,0.543,1.103,1.28,1.326,2.012,1.299,0.467,0.558,1.249,1.001,1.442,1.124,1.047,1.172,0.643,0.807,1.087,0.943,0.836,0.843,0.981,0.894,1.17,0.786,0.59,1.818 +NM_003112,0.878,0.997,1.082,1.094,1.0,1.032,0.975,1.332,1.087,1.074,1.06,1.076,0.966,1.24,0.941,0.949,0.942,1.062,1.029,0.991,1.049,1.065,0.97,1.088,1.018,0.981,1.045,0.943,0.996,0.99,1.023,0.885,0.993,0.981,1.023,1.031,1.021,0.96,1.0,0.954,1.025,1.068,0.873,1.089,0.99,1.023,0.943,0.995,1.058,0.989,1.123,0.883,0.963,1.024 +NM_003113,0.563,0.752,1.245,0.643,0.809,1.24,0.513,0.552,1.208,0.81,1.217,0.986,0.799,0.565,0.926,2.05,0.557,0.888,1.41,0.888,0.488,0.745,1.351,1.247,0.572,0.602,1.422,0.815,0.313,1.237,0.875,1.307,1.702,1.259,0.116,1.222,1.174,0.796,1.675,1.707,0.988,1.005,0.697,1.042,0.853,0.982,1.158,0.566,1.048,0.634,1.105,1.045,0.781,1.686 +NM_003114,1.108,1.072,0.938,0.848,1.087,0.921,1.145,0.924,0.93,0.947,0.841,0.955,1.016,1.109,1.035,1.051,0.989,0.841,0.864,1.067,0.958,0.951,0.989,0.978,1.063,1.064,1.066,0.977,1.008,1.045,0.987,1.229,0.921,0.969,0.931,0.909,0.982,0.89,0.878,0.956,0.919,0.962,1.106,0.894,0.955,1.011,0.99,0.988,0.991,0.961,0.989,1.02,0.978,1.019 +NM_003115,0.41,1.223,1.205,0.677,0.68,2.222,1.194,0.707,0.981,0.815,1.235,0.772,0.597,0.625,1.037,1.983,0.892,1.205,0.569,1.716,0.206,1.053,1.271,1.205,0.738,0.369,1.263,0.787,0.995,1.842,1.098,1.134,1.629,1.76,0.406,0.503,1.553,0.776,1.329,0.528,0.837,1.526,0.845,0.517,0.752,1.404,1.145,0.735,1.392,0.752,1.378,0.535,0.326,1.041 +NM_003116,0.874,1.115,0.684,0.986,0.837,1.464,1.524,0.802,0.771,0.666,1.267,0.902,0.695,0.698,0.842,0.745,0.679,0.988,1.034,0.917,0.827,0.712,1.115,0.759,0.916,0.843,0.771,0.901,0.762,2.061,0.833,1.279,0.614,1.695,1.263,0.718,1.295,0.821,1.416,3.128,0.654,2.48,0.811,1.372,0.708,1.044,1.103,1.12,0.652,0.94,1.245,1.069,0.643,1.457 +NM_003117,1.107,1.02,0.95,1.125,0.915,0.993,0.988,0.934,0.934,1.002,0.963,0.986,1.134,1.065,0.851,0.871,1.078,0.917,0.906,0.915,0.991,0.976,0.996,0.941,1.004,1.015,1.099,0.932,0.741,0.919,0.978,0.992,1.056,0.916,1.075,1.023,0.913,0.998,0.913,1.0,0.971,1.007,0.891,1.036,0.994,1.062,1.016,1.158,1.114,1.165,1.083,1.029,1.04,1.04 +NM_003118,0.211,1.497,0.483,0.402,0.295,0.941,1.017,0.225,0.222,0.601,1.185,0.271,0.186,0.171,0.737,1.139,0.197,0.504,0.468,0.612,0.442,0.263,2.29,0.314,0.801,0.274,0.502,0.442,0.258,3.942,0.22,17.47,3.214,2.851,0.0742,1.677,1.037,0.711,2.404,6.236,0.634,1.772,0.785,0.709,0.643,1.392,1.225,0.291,0.807,0.52,1.292,5.553,0.801,1.566 +NM_003119,0.711,1.591,1.08,0.858,0.948,1.09,0.781,0.377,1.277,0.964,0.77,0.843,0.543,0.692,0.815,0.729,0.865,1.108,0.784,1.253,0.572,0.889,1.476,0.848,0.84,0.863,1.174,0.998,0.571,1.452,0.775,2.061,1.069,1.138,0.302,0.996,0.961,0.822,1.172,1.195,1.055,1.203,0.852,1.133,0.927,1.069,1.278,0.732,1.114,0.536,1.027,0.946,0.734,1.1 +NM_003120,0.999,1.0,1.194,1.11,0.901,0.946,1.005,0.938,0.959,0.843,0.789,0.927,0.937,1.02,1.002,1.088,1.035,0.936,0.865,0.85,0.807,1.014,1.022,0.976,0.881,0.991,1.195,0.853,1.091,1.072,1.027,1.318,1.137,1.036,0.966,1.012,0.983,0.924,1.756,3.448,0.948,1.098,0.953,0.94,1.097,0.912,0.955,0.952,0.791,1.044,0.866,1.682,1.262,1.604 +NM_003121,0.767,0.903,0.993,1.096,1.053,1.21,1.086,0.906,0.705,1.027,1.165,0.969,0.905,1.025,1.086,1.441,0.884,0.856,0.843,1.196,0.955,0.935,1.034,1.013,1.046,0.86,0.832,1.007,1.083,0.986,0.968,1.0,0.998,1.034,0.875,0.83,1.551,1.0,1.004,0.91,0.96,1.704,3.655,0.896,0.961,0.984,1.051,0.851,0.991,0.949,0.957,1.007,1.062,0.903 +NM_003122,0.0337,5.659,0.0328,4.28,0.0338,5.862,3.083,0.032,0.0518,0.0365,4.023,0.0538,0.0353,0.0361,0.275,1.659,0.039,4.251,0.0339,2.619,0.0355,0.0496,0.777,0.0507,2.773,0.0472,0.0417,0.0382,3.084,2.515,0.0377,2.111,5.018,9.107,0.0648,1.165,6.571,0.0352,5.22,3.648,0.0334,5.701,2.139,0.847,0.124,1.622,1.645,0.0396,2.616,0.0357,2.06,0.962,0.0498,4.401 +NM_003123,0.966,1.058,1.237,0.976,0.936,1.021,1.13,0.854,1.087,0.965,1.001,0.937,0.996,0.787,0.846,0.955,1.279,1.084,0.925,1.162,0.866,0.927,1.076,0.879,1.025,0.995,1.22,0.946,0.86,1.042,0.954,1.098,0.928,1.224,0.909,0.943,1.02,0.977,1.012,0.893,0.88,1.282,1.116,1.076,1.074,0.948,1.0,1.083,1.037,0.881,1.005,1.102,1.113,1.4 +NM_003124,0.471,1.664,0.775,0.666,0.551,1.831,0.817,0.431,0.55,0.58,1.401,0.635,0.539,0.431,0.792,2.419,0.669,0.781,0.715,1.267,0.653,0.612,2.062,0.728,0.884,0.513,0.999,0.402,1.228,1.976,0.497,1.66,2.06,1.815,0.28,1.103,1.124,0.68,2.048,0.925,0.751,1.495,0.724,1.242,0.494,1.262,1.285,0.553,1.335,0.556,1.268,0.669,0.564,2.019 +NM_003125,3.521,0.0237,4.156,1.068,4.871,0.0233,0.0239,3.113,2.874,4.204,0.0217,3.999,3.634,0.72,1.281,1.613,5.225,2.77,5.021,0.0262,3.16,1.857,0.0234,2.522,0.0216,1.555,3.737,2.36,0.016,0.0269,2.743,0.023,2.318,0.0203,6.471,0.232,0.0323,3.503,0.148,0.0293,3.485,0.0306,0.0335,0.0232,5.634,0.0193,4.143,3.191,0.502,5.776,0.853,2.065,5.048,0.739 +NM_003127,0.876,0.805,1.184,0.863,0.946,1.166,0.663,0.654,0.814,0.815,0.864,0.612,0.669,0.918,1.026,1.358,0.802,0.925,1.088,1.061,0.924,0.808,1.67,0.698,0.818,0.983,1.076,0.754,0.58,1.166,1.022,1.443,2.407,1.445,1.612,1.228,0.895,0.674,2.427,1.48,0.84,1.303,0.864,2.076,0.888,0.786,0.745,1.006,0.972,1.262,0.997,0.856,1.15,2.004 +NM_003128,1.012,0.93,0.987,0.947,1.111,0.933,1.031,0.959,1.116,1.046,0.986,1.095,1.024,1.149,0.895,1.018,1.072,0.92,0.99,0.908,1.03,0.941,1.146,1.067,0.926,0.959,0.878,0.955,0.984,1.083,1.119,0.962,1.006,0.978,1.115,1.08,0.896,0.921,0.975,0.965,1.005,1.148,0.837,1.049,1.036,1.062,1.054,1.06,0.876,0.998,0.911,0.912,0.909,1.009 +NM_003129,1.011,0.735,1.396,0.87,1.317,0.704,0.517,0.39,1.59,1.675,1.101,0.649,0.389,1.015,0.875,1.823,0.933,1.219,1.786,1.166,0.585,0.759,1.623,1.206,0.635,1.073,1.907,0.966,0.313,0.687,1.082,1.325,2.257,0.763,0.251,0.945,0.984,0.837,0.862,1.231,1.015,0.614,0.673,1.045,1.224,2.473,1.351,0.91,0.674,1.372,1.975,0.662,1.559,0.557 +NM_003130,0.389,1.077,0.823,0.863,0.619,2.072,0.578,0.502,0.685,0.563,2.788,0.673,0.427,0.45,1.972,2.85,0.47,1.189,0.947,2.323,0.345,0.428,2.593,0.829,0.402,0.436,0.928,0.484,0.457,2.039,0.956,1.69,2.014,1.857,0.334,0.604,2.371,0.63,1.47,0.883,0.676,1.557,1.179,0.848,0.687,2.214,1.517,0.41,2.174,0.46,1.62,1.309,0.705,1.69 +NM_003132,0.721,1.017,0.932,0.561,0.759,0.712,0.508,0.367,1.309,1.792,0.637,1.36,0.492,0.512,0.655,1.04,1.008,0.634,1.504,0.637,0.735,0.552,1.767,1.796,0.715,0.891,1.415,0.888,0.22,0.782,0.83,1.726,1.519,1.054,0.0928,1.375,0.826,0.745,1.75,1.426,1.304,1.17,0.597,1.446,1.82,0.68,1.089,0.547,1.112,0.844,1.098,1.466,1.802,2.6 +NM_003133,0.617,1.165,1.023,0.638,0.819,1.528,0.5,0.696,1.276,0.778,1.561,0.965,0.691,0.756,1.0,2.397,0.656,1.058,1.665,0.941,0.494,0.797,1.269,0.986,0.588,0.79,1.364,0.863,0.431,1.226,1.01,0.989,3.548,1.488,0.256,1.145,1.823,0.798,1.032,0.904,1.0,1.014,0.699,0.973,0.861,1.242,0.789,0.666,0.932,0.619,1.264,0.76,0.912,1.635 +NM_003134,0.832,0.961,1.112,0.767,0.929,1.258,0.519,0.785,1.102,0.846,1.256,0.931,0.879,0.567,0.943,1.56,0.781,0.977,1.184,1.045,0.43,0.824,1.283,1.112,0.786,1.076,1.352,0.963,0.361,1.152,1.035,1.118,1.322,1.48,0.394,0.928,1.128,0.958,1.13,0.735,1.145,1.131,0.792,0.871,0.932,1.181,1.006,0.968,1.03,0.878,1.053,0.927,0.984,1.629 +NM_003135,0.526,0.856,1.116,0.71,0.746,1.193,0.658,0.631,1.232,0.983,1.112,0.779,0.62,0.684,1.061,1.679,0.789,0.837,1.202,0.982,0.845,0.745,1.157,1.202,0.551,0.651,1.309,0.817,0.476,0.957,1.081,0.947,1.837,1.347,0.353,0.848,1.188,0.798,1.293,0.595,1.051,1.103,0.636,0.86,1.051,1.024,1.127,0.593,1.205,0.644,1.135,0.912,1.182,2.02 +NM_003136,0.479,0.975,1.163,0.761,0.859,1.421,0.673,0.441,1.08,0.864,0.984,0.752,0.453,0.67,1.08,1.802,0.891,0.928,1.1,0.992,0.504,0.808,1.143,0.984,0.652,0.664,1.334,0.744,0.479,1.183,0.927,0.923,1.568,1.125,0.267,0.69,1.155,0.781,1.353,0.793,1.021,1.166,0.625,1.303,0.997,1.29,1.045,0.606,1.334,0.714,1.228,0.649,0.861,1.193 +NM_003137,0.529,1.018,0.774,0.608,0.918,1.421,0.664,0.694,1.263,0.863,1.073,1.233,0.582,0.578,0.904,1.795,0.64,0.837,1.23,0.988,0.545,1.004,1.422,1.43,0.397,0.757,1.02,1.081,0.52,1.144,0.958,1.014,3.09,1.182,0.176,1.256,1.283,1.046,1.192,0.849,1.125,0.879,0.689,0.983,0.91,1.18,0.996,0.679,1.249,0.511,1.081,0.757,0.77,2.082 +NM_003139,0.859,1.161,0.976,1.097,0.847,0.891,0.941,0.459,0.904,0.961,0.999,0.618,0.637,0.679,0.815,1.084,0.882,0.897,0.985,0.94,0.825,0.653,1.164,0.817,1.707,1.043,0.77,0.766,0.57,1.524,0.831,1.778,1.18,1.481,0.472,1.692,0.939,0.745,1.788,0.903,0.992,1.615,0.727,1.326,1.031,0.993,0.799,0.703,0.837,0.98,1.175,1.05,1.201,1.355 +NM_003140,1.116,1.067,1.152,1.141,0.952,0.974,0.966,0.95,1.036,0.987,1.014,0.902,0.82,1.261,0.789,0.989,0.948,1.077,0.968,1.03,1.004,0.884,1.058,1.108,0.94,1.095,1.085,1.022,0.846,1.05,1.095,1.009,0.88,1.043,1.001,0.936,0.891,0.95,1.111,1.058,0.999,0.864,1.028,0.861,1.067,0.978,1.065,0.901,0.983,0.988,0.984,1.04,1.055,0.947 +NM_003141,0.738,0.898,1.062,1.001,0.575,1.493,1.098,0.641,0.777,0.713,1.349,0.601,0.7,0.639,1.187,1.948,0.829,0.904,0.852,0.914,0.881,0.738,1.071,0.687,0.913,0.745,0.904,0.628,0.843,1.274,0.687,1.034,1.923,1.566,0.498,1.444,1.091,0.723,1.517,0.908,0.851,1.246,0.955,0.888,0.894,1.08,0.952,0.686,1.257,0.795,1.123,0.877,1.107,1.757 +NM_003142,0.591,1.149,1.428,0.563,0.897,1.399,0.948,0.622,1.077,0.951,0.538,1.0,0.86,0.535,0.845,1.57,1.159,0.832,0.378,1.17,0.254,1.23,1.289,1.328,0.536,0.363,1.492,0.842,0.408,1.222,1.102,1.989,2.116,0.957,0.266,0.392,0.822,1.239,1.792,1.475,1.067,1.102,0.565,0.497,1.185,1.0,1.001,0.782,1.163,0.672,1.227,0.636,0.356,1.934 +NM_003143,0.45,0.737,1.353,0.543,0.899,1.318,0.643,0.621,1.48,0.877,1.237,0.817,0.611,0.558,1.401,2.914,0.778,0.867,1.482,0.889,0.501,0.788,1.646,1.418,0.417,0.566,1.385,0.97,0.317,1.613,1.373,0.926,3.28,1.889,0.149,0.456,1.066,1.09,1.171,0.49,1.277,1.036,0.452,0.673,1.113,1.034,1.25,0.668,1.09,0.706,1.134,0.756,0.705,2.092 +NM_003144,0.737,0.97,1.312,0.923,0.803,1.121,0.839,0.402,0.919,0.888,1.347,0.57,0.561,0.629,0.935,1.539,0.69,0.92,1.324,0.952,0.512,0.516,1.44,0.803,0.905,0.709,1.435,0.755,0.347,1.378,0.691,0.78,2.026,1.299,0.161,0.689,1.377,0.652,1.358,0.776,0.987,1.388,0.784,1.252,1.143,1.165,0.725,0.567,1.193,0.929,1.244,1.033,1.013,1.511 +NM_003145,0.441,1.136,0.753,1.019,0.433,1.58,0.886,0.356,0.616,0.549,1.355,0.528,0.691,0.326,0.817,1.821,0.486,0.944,0.898,1.043,0.378,0.523,1.532,0.719,1.177,0.558,0.791,0.428,0.712,1.75,0.488,1.985,1.869,1.915,0.138,1.582,1.441,0.577,1.737,0.924,0.672,1.515,0.715,1.715,0.734,1.003,0.997,0.551,1.053,0.564,1.303,0.865,0.643,1.573 +NM_003146,0.946,0.875,0.998,0.847,0.704,1.11,0.432,0.327,1.186,1.002,0.799,0.956,0.694,0.646,0.887,1.016,0.887,0.787,1.395,0.721,0.884,1.155,1.267,1.335,0.632,1.09,1.548,0.64,0.564,1.53,0.663,1.332,2.084,1.109,0.163,1.614,0.888,1.146,2.034,1.176,1.03,1.056,0.782,2.174,0.876,0.818,0.984,0.932,1.221,0.946,0.974,0.796,0.924,1.295 +NM_003149,0.96,1.038,0.999,1.017,1.045,0.923,0.904,1.073,0.948,1.113,1.068,0.913,0.935,1.035,0.869,1.026,1.019,1.036,0.896,0.929,1.001,1.017,0.966,0.862,0.925,1.164,0.859,0.896,1.034,0.918,1.051,1.126,0.979,0.891,1.09,0.943,1.145,1.346,0.952,0.995,0.858,0.972,1.03,1.017,1.127,0.919,1.134,1.018,1.11,1.033,1.01,0.89,0.977,1.01 +NM_003150,0.816,0.676,2.574,0.585,0.822,0.816,0.478,0.397,1.061,1.098,0.581,0.592,0.785,0.55,0.937,1.014,3.225,1.043,2.284,0.64,0.574,1.17,0.85,1.331,0.57,0.805,3.81,0.668,0.498,0.949,0.896,1.659,1.957,0.688,0.558,0.439,1.019,1.26,2.097,0.884,1.722,1.012,0.666,1.223,1.697,0.75,1.115,1.13,1.351,2.949,0.885,1.088,1.377,1.873 +NM_003151,0.92,1.037,1.282,0.858,1.016,1.068,0.942,0.973,1.018,1.035,0.89,1.099,0.926,0.847,0.801,0.993,0.876,1.115,1.034,1.08,0.84,0.969,1.199,0.939,0.847,1.062,1.105,1.195,0.719,1.059,1.003,1.105,1.09,1.103,0.77,0.998,0.907,0.925,1.053,0.953,1.12,1.056,0.798,0.89,1.043,0.904,1.034,1.085,1.1,0.84,0.902,1.11,1.13,1.132 +NM_003152,0.571,1.051,1.002,0.839,0.748,1.08,0.712,0.482,0.854,0.703,1.095,0.583,0.627,0.629,0.818,1.136,1.088,0.788,0.805,0.872,0.737,0.789,1.491,0.749,0.743,0.659,1.364,0.72,0.778,1.422,0.758,1.817,1.645,1.379,0.397,0.922,1.024,0.88,1.846,1.444,0.892,1.508,0.946,1.791,0.662,0.953,0.987,0.599,1.214,0.852,1.07,1.339,0.9,2.327 +NM_003153,0.758,0.963,1.264,0.765,0.726,1.045,0.764,0.646,0.93,1.101,0.905,0.75,0.594,0.749,0.898,1.32,0.891,0.992,1.107,0.943,0.577,0.809,1.279,1.176,0.758,0.72,1.286,0.851,0.788,1.301,0.873,1.295,1.186,1.357,0.349,1.318,1.066,1.07,1.417,0.989,0.965,1.181,1.078,1.348,1.213,0.761,1.066,0.762,0.983,0.711,1.071,0.793,1.289,1.426 +NM_003154,0.999,0.928,0.875,0.958,1.052,1.125,1.013,0.988,1.143,1.02,0.983,1.074,1.071,0.954,1.004,1.01,1.039,1.025,0.922,1.147,1.013,0.921,1.039,0.991,1.117,1.082,0.996,1.008,1.143,0.951,0.952,1.089,1.029,0.918,1.093,0.914,0.887,0.841,0.961,1.169,0.857,1.117,0.802,1.084,0.903,0.881,1.063,1.006,1.063,0.991,0.925,1.069,1.086,1.234 +NM_003155,0.893,1.171,0.851,0.947,0.915,0.889,1.004,0.84,0.885,0.928,0.945,1.011,0.968,0.873,0.832,0.846,0.917,0.944,0.887,0.961,0.845,0.81,0.875,0.894,1.425,0.969,1.205,1.041,0.775,1.189,0.851,1.462,1.966,1.278,0.866,1.098,0.935,0.912,2.555,4.504,1.005,1.095,1.133,0.991,0.871,0.896,0.997,0.933,0.885,0.922,0.969,1.773,1.096,1.227 +NM_003156,0.932,0.909,1.366,0.834,1.077,1.124,0.58,0.951,1.158,1.132,0.856,1.037,0.982,0.85,1.041,1.123,1.072,1.129,1.589,0.843,1.041,1.372,0.859,1.04,0.738,1.382,1.322,0.944,0.913,1.163,1.008,0.918,1.05,1.099,0.552,0.865,0.766,1.544,1.205,0.748,0.976,0.943,0.675,0.676,1.213,0.752,0.848,1.193,0.777,1.165,0.834,0.734,1.189,0.93 +NM_003157,1.014,1.205,1.078,0.978,0.928,1.027,0.802,0.956,1.097,0.978,1.011,0.999,1.022,0.868,0.773,1.13,1.132,0.937,0.98,0.88,0.986,0.751,0.975,1.011,1.008,0.988,0.996,1.243,1.152,0.996,0.999,1.003,1.245,1.066,1.083,0.995,0.998,1.052,1.143,1.052,1.089,1.064,0.912,1.041,1.007,1.002,0.903,0.99,0.988,1.001,1.013,0.915,1.054,1.016 +NM_003159,1.028,1.016,0.91,1.117,1.047,1.033,0.884,1.015,0.961,1.006,1.002,1.106,1.06,1.066,1.0,0.978,0.945,1.008,1.138,0.966,0.936,0.965,1.013,0.945,1.078,1.176,0.992,1.092,1.063,1.139,1.097,1.153,1.009,1.045,1.006,0.991,1.021,1.081,0.885,0.946,0.911,0.861,0.866,1.155,1.027,1.051,1.01,0.933,1.004,0.994,0.906,1.091,0.867,0.93 +NM_003160,0.979,1.0,1.01,0.845,0.99,1.043,0.874,1.032,1.203,0.981,0.996,1.042,1.043,1.312,0.902,0.916,1.032,0.989,0.939,0.934,0.908,1.067,1.058,1.124,0.843,1.184,0.979,1.149,0.784,1.033,1.022,0.915,1.021,0.887,0.99,1.007,1.0,0.989,0.988,1.045,0.913,1.073,1.144,0.986,1.018,0.913,1.042,0.958,0.894,0.965,1.108,0.92,0.95,1.062 +NM_003162,1.07,1.015,0.967,0.891,1.171,0.934,1.025,0.844,1.06,1.014,1.035,0.964,1.036,1.041,1.0,1.097,0.972,1.103,0.91,0.904,0.902,0.992,1.048,1.012,1.019,1.31,0.965,1.158,1.175,0.953,1.061,0.934,1.046,0.981,1.297,1.032,0.896,0.87,0.935,1.068,1.002,0.848,0.938,0.969,1.054,0.929,1.045,1.039,1.037,0.943,0.955,1.0,0.966,0.941 +NM_003164,1.019,0.916,1.0,1.024,0.798,1.152,0.66,0.942,0.869,0.799,1.063,0.896,0.953,0.907,0.857,1.236,0.775,0.976,1.486,0.922,0.693,0.943,0.876,0.906,1.264,1.553,0.817,0.824,0.551,0.989,1.178,1.321,2.314,1.381,1.497,1.535,1.021,0.7,1.539,0.967,0.802,1.167,0.568,1.484,1.0,0.632,0.761,1.349,0.691,1.222,0.928,0.781,1.158,1.054 +NM_003165,0.932,0.996,1.106,0.847,1.248,0.875,0.825,0.989,0.921,0.81,0.945,0.823,0.868,0.972,1.037,1.114,1.026,0.987,1.091,0.975,0.968,1.055,1.119,1.04,1.014,0.879,1.105,0.962,0.849,0.956,1.22,1.678,1.498,1.033,1.392,1.0,0.918,1.045,0.998,1.168,0.988,0.959,0.913,1.207,0.885,1.039,1.105,1.107,1.0,1.031,1.087,1.05,1.081,1.119 +NM_003167,1.015,2.478,1.063,0.906,1.02,1.046,1.031,0.959,0.904,0.933,0.924,0.999,1.04,1.102,0.926,1.04,0.938,0.941,1.04,0.872,1.021,1.07,1.152,0.936,1.59,0.983,1.005,0.887,0.725,0.931,1.016,0.981,0.984,2.074,1.172,0.908,1.22,0.903,0.949,0.875,0.912,0.863,1.107,0.959,0.946,0.857,0.978,1.037,0.939,1.079,0.916,0.895,1.064,1.008 +NM_003168,0.829,0.998,0.914,0.818,0.861,1.068,0.73,0.798,1.061,0.93,1.107,0.904,0.864,0.93,0.979,1.226,0.9,0.935,1.111,0.993,0.816,0.826,0.969,1.029,0.704,0.911,1.203,1.066,0.749,1.137,1.078,1.389,1.482,1.396,0.924,0.884,0.907,1.062,1.071,0.899,1.149,1.086,0.808,1.611,0.961,0.802,0.855,0.791,0.884,0.872,0.848,0.914,1.066,1.36 +NM_003169,0.71,0.879,0.94,0.735,0.714,0.993,0.651,0.438,0.803,0.913,0.836,0.683,0.603,0.613,0.728,1.212,0.742,0.873,1.025,0.87,0.953,0.871,1.422,0.913,0.796,1.093,1.083,0.619,0.548,1.098,0.881,1.084,3.022,1.243,0.618,1.155,1.022,0.929,1.545,1.243,0.844,1.19,0.677,1.506,1.039,0.818,0.818,0.949,0.84,1.116,1.002,1.034,1.119,1.626 +NM_003170,0.917,0.884,1.013,0.938,0.854,1.015,0.827,0.802,0.825,1.063,0.814,0.893,0.784,0.811,0.861,0.957,0.971,0.969,0.868,0.879,1.129,1.138,1.023,0.996,0.975,1.029,1.227,0.831,0.892,0.921,0.963,1.292,1.914,1.023,0.762,0.927,0.928,1.211,1.545,1.074,0.943,0.999,0.76,1.441,0.976,0.851,0.978,1.102,0.935,1.026,0.975,1.001,0.948,1.103 +NM_003171,0.633,1.197,1.041,0.716,0.809,0.958,0.91,0.821,0.952,0.892,0.998,0.968,0.751,0.72,0.945,1.125,0.803,0.996,1.114,1.084,0.836,0.878,1.366,0.968,0.954,0.967,1.066,0.818,0.699,1.077,0.851,1.068,1.302,1.489,0.659,1.45,0.886,1.043,1.386,0.773,0.922,1.163,0.886,1.681,0.982,0.991,0.932,0.796,1.286,0.798,1.074,1.004,0.837,3.203 +NM_003172,0.692,1.23,0.645,0.81,0.766,1.637,0.687,0.54,0.918,0.686,1.428,0.765,0.948,0.548,1.199,1.74,0.791,0.941,1.52,1.129,0.669,0.817,1.322,0.891,1.07,1.191,0.89,0.744,0.676,1.46,0.702,1.388,1.694,1.931,0.321,1.422,1.137,0.728,1.709,0.647,1.069,0.85,0.756,1.472,0.696,1.173,1.005,0.802,0.969,0.717,0.9,0.922,0.776,1.587 +NM_003173,0.9,1.025,1.058,0.911,0.89,0.943,1.12,0.828,1.014,0.96,0.951,0.969,0.939,1.101,1.309,1.135,1.005,0.864,1.201,0.798,0.906,0.87,1.144,0.944,0.868,1.12,1.176,0.98,1.248,0.92,0.887,0.993,1.857,1.103,0.695,1.347,1.003,0.764,0.998,1.015,0.999,0.874,0.951,1.107,0.92,1.151,0.895,0.964,0.948,1.023,1.035,1.011,0.979,1.186 +NM_003174,1.9739999999999998,1.355,3.463,1.517,2.534,1.714,1.2730000000000001,1.7890000000000001,3.279,2.02,1.741,2.061,1.881,1.9020000000000001,1.759,2.027,2.233,1.771,2.562,1.426,2.386,2.034,1.991,2.63,1.162,1.665,3.2510000000000003,3.0380000000000003,1.166,1.726,2.237,2.798,2.877,2.2889999999999997,1.315,1.337,1.692,2.6470000000000002,1.889,2.803,3.561,2.864,1.606,2.1399999999999997,2.516,1.7890000000000001,2.4690000000000003,1.521,1.703,2.3600000000000003,2.083,2.047,2.7670000000000003,2.09 +NM_003175,0.942,1.133,1.334,0.799,1.163,1.024,1.153,0.937,1.044,1.116,0.879,0.9,1.127,0.837,0.926,0.936,0.968,1.06,0.965,1.062,0.96,0.991,1.078,0.942,1.103,0.735,1.177,0.966,0.867,1.235,0.901,0.986,1.036,1.006,0.798,0.909,1.085,0.842,1.104,1.391,1.186,1.443,0.911,1.007,1.063,0.864,1.14,0.985,0.866,0.97,0.894,0.94,1.052,1.758 +NM_003176,1.006,1.214,0.988,1.068,1.031,0.946,1.023,0.971,1.03,0.929,0.973,0.893,1.036,0.891,1.095,1.173,0.975,1.052,0.805,0.966,0.935,0.88,1.173,0.892,0.969,1.071,1.278,1.101,0.98,0.928,0.953,0.892,0.942,0.895,1.045,0.927,1.044,0.984,0.877,0.974,0.829,1.067,1.021,1.097,1.03,1.004,1.073,1.008,1.182,1.114,1.011,1.0,0.99,1.136 +NM_003177,0.58,1.003,1.619,0.591,0.832,1.384,1.15,0.471,1.646,1.351,0.617,1.008,0.676,0.46,0.8,1.124,1.366,1.199,1.264,1.036,0.576,0.945,1.255,1.901,0.498,0.702,1.516,0.824,0.746,1.459,0.993,1.439,1.746,1.378,0.262,0.792,0.923,1.213,1.308,1.036,1.56,0.938,0.518,1.172,1.331,0.919,1.053,0.661,0.934,0.847,1.054,0.63,1.053,1.116 +NM_003178,1.111,0.979,1.082,0.922,1.003,0.841,0.907,1.144,1.07,1.139,1.005,0.99,1.084,1.157,1.095,1.027,0.902,0.916,1.064,0.964,0.992,1.031,0.966,0.937,1.028,0.973,1.06,0.973,0.912,1.081,0.962,0.924,0.962,0.984,0.941,0.976,0.963,1.095,0.993,1.092,1.045,0.993,1.402,1.131,1.028,0.961,0.979,0.99,1.017,0.824,0.997,1.069,0.904,0.987 +NM_003179,1.108,0.999,0.872,1.102,1.259,0.924,1.063,0.941,1.083,0.978,0.915,0.919,1.14,0.976,1.043,1.197,1.069,0.986,1.067,1.022,0.876,0.97,0.979,0.913,0.931,1.062,0.993,0.952,1.048,0.87,0.902,1.36,1.114,0.945,1.051,1.061,0.941,0.868,1.006,0.97,0.769,1.119,1.094,1.142,1.01,0.804,0.891,0.809,1.29,0.886,0.908,1.012,0.953,1.05 +NM_003180,0.897,0.902,0.94,1.102,0.943,1.04,1.002,1.182,1.243,1.03,1.022,0.93,1.079,0.932,0.93,1.033,1.017,0.927,0.992,0.926,1.048,1.036,1.16,1.021,0.884,1.089,1.053,1.048,0.769,1.013,0.901,0.898,1.081,1.042,1.158,1.013,0.992,1.015,1.147,1.072,1.025,0.947,0.967,0.933,0.99,1.1,0.992,1.084,1.019,0.968,0.995,1.002,0.984,0.901 +NM_003181,0.999,0.979,1.101,0.902,1.126,0.919,0.996,0.883,1.216,0.866,0.983,1.023,0.994,0.947,0.955,0.973,0.92,0.915,1.107,1.029,1.032,0.961,0.958,0.952,1.021,1.073,0.862,0.912,1.435,0.968,0.978,1.099,1.009,1.086,0.962,0.895,1.058,1.063,0.98,1.026,0.939,0.959,1.414,1.136,0.915,1.073,0.98,1.156,1.183,0.958,1.105,1.118,1.094,0.958 +NM_003184,0.829,0.968,1.105,0.878,0.976,0.874,0.894,0.583,1.175,1.009,1.024,0.829,0.692,0.999,0.91,0.959,0.928,0.896,1.052,1.222,0.773,0.716,1.123,1.023,0.728,0.803,1.02,0.92,0.548,0.927,1.133,1.342,2.057,1.052,0.633,0.962,1.051,0.954,1.047,1.115,0.939,0.942,0.948,1.53,1.2,1.294,0.842,0.775,1.27,1.023,0.964,1.095,1.11,1.471 +NM_003185,0.75,1.111,1.12,0.809,0.813,1.033,0.666,0.625,1.249,0.925,1.029,0.746,0.637,0.763,1.031,1.127,0.872,0.811,0.891,0.982,0.668,0.781,1.588,0.932,0.683,0.753,1.198,0.913,0.56,1.087,1.019,1.09,1.939,1.154,0.469,0.856,0.974,0.745,1.17,1.368,1.0,1.1,0.614,1.008,1.025,0.983,0.922,0.755,0.944,0.759,1.176,1.104,0.782,2.211 +NM_003186,0.474,1.237,0.396,1.006,0.537,1.386,0.819,0.4,0.517,0.5,2.03,0.454,0.467,0.436,1.09,1.629,0.43,0.503,0.504,0.696,2.486,0.414,2.997,0.56,1.607,0.505,0.56,2.032,0.427,2.564,0.453,14.04,2.424,5.823,0.433,0.623,0.72,1.633,2.731,1.716,4.354,4.13,0.915,0.661,0.52,0.934,0.757,0.458,0.572,0.51,1.911,1.356,0.826,0.864 +NM_003187,0.757,1.017,1.036,0.869,0.955,1.229,0.651,0.531,1.162,0.995,1.487,0.725,0.723,0.739,0.994,1.533,0.857,0.963,1.279,0.772,0.697,0.752,1.427,1.302,0.648,0.799,1.383,0.985,0.481,1.271,0.917,0.856,1.412,1.286,0.27,0.736,1.391,0.979,1.515,0.499,1.285,1.119,0.928,0.892,0.974,1.214,1.03,0.634,1.504,0.672,1.153,0.849,1.014,1.622 +NM_003189,0.919,0.936,0.859,1.05,0.982,1.031,0.989,0.877,1.034,1.103,1.006,0.965,1.03,0.836,0.897,1.06,0.919,1.122,1.029,0.92,1.028,0.959,1.019,0.916,0.935,0.95,1.152,1.155,1.025,1.003,1.022,0.964,1.11,0.967,0.977,0.992,1.005,0.963,1.072,0.857,0.918,1.009,0.882,0.917,0.897,1.178,0.921,0.922,1.049,1.081,1.021,1.064,1.02,0.843 +NM_003190,0.217,0.998,1.403,0.479,0.533,0.857,0.802,0.178,0.646,0.64,0.541,0.393,0.33,0.244,0.65,1.059,0.792,0.976,0.618,1.353,0.205,0.398,1.203,0.675,0.565,0.499,1.115,0.518,0.399,1.326,0.419,2.101,1.207,1.236,0.0693,1.091,1.095,0.664,1.63,1.48,0.894,1.216,0.612,1.217,0.943,0.849,1.068,0.462,1.115,0.719,1.163,1.136,1.094,1.611 +NM_003192,0.886,0.984,1.234,0.807,0.778,0.944,0.801,0.583,1.221,1.031,0.976,0.808,0.752,0.814,0.902,1.016,0.907,0.961,1.156,0.974,0.755,0.783,1.207,1.036,0.687,0.89,0.999,0.936,0.482,1.159,1.066,1.626,1.639,1.328,0.943,0.995,1.045,0.809,1.177,0.83,1.078,1.204,0.715,1.275,1.065,0.938,1.037,0.761,0.862,1.01,0.92,0.896,0.957,2.231 +NM_003193,0.744,0.897,1.001,0.792,0.943,0.936,0.566,0.542,1.431,1.012,1.094,0.777,0.561,0.841,1.033,1.51,0.839,0.837,1.703,0.792,0.745,0.915,1.142,1.075,0.714,0.86,1.568,0.944,0.425,1.045,1.075,1.176,2.682,1.267,0.307,1.56,1.123,0.869,1.331,0.939,1.13,0.872,0.698,1.138,1.074,1.052,0.957,0.75,0.975,0.757,0.983,0.675,1.079,2.102 +NM_003194,0.737,0.889,1.127,0.908,0.827,0.935,0.829,0.644,0.987,0.858,0.856,0.872,0.818,0.976,0.857,1.078,1.064,0.836,1.02,0.993,0.788,0.736,1.073,1.045,0.727,0.846,1.137,0.831,0.57,0.944,0.884,1.224,1.503,1.183,0.619,0.877,1.006,0.935,1.33,1.11,1.007,1.113,0.735,1.248,0.978,0.929,0.987,0.87,1.022,0.993,0.932,1.006,0.866,1.546 +NM_003195,0.828,1.359,1.169,0.998,0.998,0.838,1.178,0.735,1.262,1.219,0.805,0.967,0.888,0.976,0.906,0.738,1.006,0.834,0.955,1.114,0.936,0.882,1.087,1.051,1.022,1.024,0.884,1.019,0.758,1.263,1.138,3.289,0.972,2.136,0.7,0.756,0.873,1.14,1.175,1.543,1.25,1.503,0.726,1.099,0.972,0.735,0.759,0.897,0.67,0.795,0.797,1.057,1.337,0.979 +NM_003198,1.024,1.046,1.537,0.826,1.486,0.945,0.778,0.721,1.217,1.726,0.672,1.152,0.855,0.773,0.874,0.837,1.4,1.146,1.239,0.908,0.772,1.08,1.027,1.287,0.847,1.105,1.38,1.049,0.597,0.816,1.151,0.948,0.817,0.796,0.783,1.024,0.861,0.997,1.243,0.969,1.241,0.835,0.735,1.396,1.571,0.935,1.094,1.233,0.789,1.225,0.911,0.904,1.247,1.315 +NM_003199,1.024,0.936,1.117,0.74,0.925,0.987,1.118,0.771,0.962,0.872,0.831,0.819,1.035,0.733,0.773,0.98,0.886,0.869,0.863,0.956,0.972,1.07,1.254,0.829,1.088,0.92,1.155,1.045,0.649,1.548,0.87,5.545,1.487,1.506,0.638,0.836,0.903,1.252,1.755,1.702,0.989,1.785,0.751,0.843,0.97,0.917,1.001,0.818,0.617,0.947,1.133,1.667,1.131,1.085 +NM_003200,0.865,1.23,0.862,0.896,0.718,0.951,0.642,0.651,0.872,0.704,1.087,0.734,0.8,0.675,0.811,1.464,0.769,0.838,1.062,0.881,0.927,0.744,1.972,0.851,0.821,1.048,1.152,0.712,0.425,1.119,0.995,1.35,4.759,1.367,0.56,1.483,0.91,0.906,1.946,0.859,0.837,1.161,0.708,4.059,0.871,0.964,0.872,0.815,0.775,0.939,1.1,0.887,1.038,3.741 +NM_003203,0.943,0.893,1.081,0.736,0.853,1.027,0.647,0.683,1.224,1.142,1.315,1.07,0.878,0.859,1.034,1.05,0.986,0.814,0.978,0.92,0.705,0.981,1.213,1.149,0.946,0.86,0.75,1.167,0.684,1.049,0.928,1.209,2.291,1.253,0.529,1.089,0.932,1.201,1.212,0.732,1.279,1.024,0.832,1.418,1.009,0.992,1.018,1.027,0.876,0.898,0.96,0.889,1.251,1.673 +NM_003204,0.584,1.271,1.0,0.784,0.651,1.101,0.75,0.406,0.64,0.613,0.868,0.49,0.555,0.573,0.86,1.359,0.795,0.942,0.842,1.233,0.671,0.717,1.128,0.619,0.957,0.748,1.058,0.682,0.738,1.143,0.641,1.672,1.001,1.325,0.372,0.79,1.192,0.766,1.563,1.078,0.762,1.54,0.919,1.306,0.728,0.936,0.877,0.696,0.918,0.855,1.079,0.932,0.758,1.43 +NM_003205,0.673,1.119,1.175,0.883,0.893,1.283,0.779,0.617,0.999,0.911,1.952,0.757,0.607,0.782,1.144,1.58,0.736,0.698,0.847,1.746,0.665,0.633,2.721,0.847,0.616,0.554,0.894,0.849,0.544,1.26,0.974,1.521,2.192,1.26,0.573,0.914,1.42,0.666,1.027,0.922,1.001,1.259,0.95,0.749,0.845,2.058,0.941,0.674,1.115,0.792,1.478,0.914,0.741,1.949 +NM_003206,2.0060000000000002,2.237,1.795,2.029,1.6829999999999998,2.366,2.364,1.839,1.944,1.78,2.148,1.472,1.827,1.884,1.9929999999999999,2.175,1.6560000000000001,1.752,1.871,1.905,1.804,1.775,2.286,1.9,2.482,1.667,1.974,1.6840000000000002,2.1109999999999998,2.9290000000000003,1.793,5.989999999999999,2.019,3.011,1.763,1.617,2.0789999999999997,1.893,2.5620000000000003,1.8780000000000001,2.021,3.136,2.1029999999999998,1.859,1.771,2.249,1.9409999999999998,1.806,1.9129999999999998,1.75,2.175,2.061,1.915,2.0170000000000003 +NM_003211,0.594,0.551,1.257,0.831,0.868,0.921,0.625,0.403,1.225,1.229,1.0,0.859,0.473,0.646,0.855,1.274,0.929,0.769,1.272,0.889,0.481,0.686,1.081,1.122,0.522,0.661,1.325,0.804,0.45,0.94,1.04,1.036,1.409,0.967,0.208,1.024,0.787,0.549,1.187,1.569,1.008,0.743,1.1,0.846,1.155,1.297,0.814,0.695,1.284,0.82,0.966,1.122,1.513,1.974 +NM_003212,0.912,1.27,0.949,1.131,0.916,1.433,1.313,1.002,0.943,0.883,1.23,0.982,0.911,0.817,0.78,1.242,0.914,0.927,0.864,0.949,0.882,1.004,1.273,0.981,1.245,0.92,1.015,0.767,0.884,2.246,0.992,1.041,1.199,2.302,0.909,0.961,1.484,0.819,1.001,1.36,0.888,1.256,1.061,1.197,0.902,1.478,0.935,0.844,0.899,0.927,1.033,0.983,0.903,0.842 +NM_003213,0.621,1.173,0.996,0.73,0.724,0.839,0.606,0.632,1.057,1.541,0.654,1.143,0.755,0.627,0.773,0.921,0.938,0.747,0.956,0.704,0.632,0.735,1.77,1.575,0.563,0.75,1.715,0.589,0.308,0.9,0.774,2.719,7.257,0.842,0.321,3.32,1.102,0.899,2.805,3.611,1.131,0.874,1.004,3.292,1.493,0.889,2.57,0.707,1.903,1.36,1.175,1.977,1.03,2.54 +NM_003214,0.829,0.801,1.782,0.645,1.162,0.999,0.683,1.201,1.269,1.137,0.856,1.001,0.939,0.888,1.182,1.183,1.793,0.825,0.817,0.987,0.677,1.328,0.957,1.718,0.575,0.857,1.549,1.228,0.579,0.989,1.53,2.224,1.788,0.918,0.993,0.743,0.79,1.501,1.127,0.934,1.444,0.99,0.645,0.801,1.287,0.98,1.225,1.08,1.129,1.277,1.037,0.806,0.851,1.46 +NM_003215,1.054,0.982,1.124,0.946,1.042,1.132,0.935,1.007,1.065,1.044,0.89,1.173,0.991,0.878,0.903,0.996,0.95,1.069,1.013,0.939,0.895,1.027,1.114,1.158,0.943,1.054,0.918,1.129,1.029,1.001,1.012,0.97,1.047,1.037,1.055,1.001,0.904,0.94,1.041,0.978,1.052,0.925,1.072,1.151,1.08,0.898,0.889,1.101,1.062,0.949,0.974,0.941,0.897,0.999 +NM_003216,0.56,1.661,1.278,0.847,0.558,1.13,0.79,0.342,1.548,0.841,1.427,0.972,0.848,0.459,0.532,1.516,0.378,1.494,1.144,1.208,0.483,0.681,1.443,0.471,0.996,1.126,1.165,0.534,0.89,1.795,1.092,2.56,1.225,2.711,0.355,0.543,2.06,0.758,1.454,0.565,0.75,2.499,0.383,0.856,1.563,1.615,0.852,0.837,0.539,1.483,0.692,0.625,0.544,0.606 +NM_003217,0.584,1.327,0.839,0.75,0.802,1.393,0.743,0.666,0.808,0.637,1.467,0.605,0.603,0.507,0.884,1.892,0.5,1.155,1.396,1.328,0.439,0.529,1.292,0.78,1.093,0.949,0.867,0.734,0.396,1.715,0.86,1.019,1.173,1.871,0.609,1.332,1.712,0.719,1.61,1.062,0.787,1.409,0.822,1.396,0.806,1.236,1.003,0.698,0.98,0.692,1.209,0.973,0.914,1.295 +NM_003220,1.027,0.868,1.164,0.953,0.962,1.057,0.942,0.915,0.995,1.001,0.911,0.97,1.113,0.872,1.006,0.931,1.059,0.962,0.981,0.876,0.983,1.058,1.108,0.924,1.005,0.969,1.101,1.076,1.166,0.921,1.136,1.083,1.115,1.063,0.989,0.893,0.956,0.988,1.216,0.927,1.085,0.892,0.923,0.941,1.107,0.872,0.915,1.023,1.025,0.905,0.915,0.946,0.961,1.13 +NM_003221,1.289,0.957,1.301,0.981,1.304,0.92,0.951,1.068,1.788,1.161,0.972,1.348,1.305,1.274,0.897,0.99,0.971,1.004,1.024,1.168,1.15,1.324,0.851,1.17,0.965,1.133,1.04,1.249,0.681,0.966,1.388,1.023,0.962,0.858,1.096,0.825,0.918,1.618,1.137,0.983,1.233,0.892,0.909,0.938,1.164,0.99,0.99,0.967,1.054,1.126,1.035,0.861,1.2,0.909 +NM_003222,1.581,0.737,3.036,1.155,1.472,0.669,0.614,0.988,1.739,1.392,0.829,1.494,1.145,1.394,1.692,0.831,1.686,1.382,2.074,0.753,1.24,1.149,0.744,1.534,0.667,1.816,1.849,1.782,0.642,0.692,1.969,0.841,1.43,0.767,1.014,0.892,0.67,1.465,0.808,1.387,1.908,0.813,0.577,0.61,2.12,0.807,1.07,1.437,0.681,1.933,0.862,1.129,2.045,0.806 +NM_003223,0.967,1.091,1.087,0.886,0.983,0.956,0.986,0.879,0.878,1.076,1.049,0.94,0.992,0.928,0.885,1.001,1.01,0.766,1.036,1.031,0.85,0.96,0.947,1.047,1.034,0.895,1.019,1.156,1.051,1.066,0.968,1.038,1.133,1.022,1.01,0.995,0.994,1.083,1.062,0.942,0.978,0.916,1.319,1.036,0.91,0.947,1.012,0.977,1.119,0.956,0.992,0.999,0.871,1.024 +NM_003224,0.687,0.941,1.351,0.68,0.899,0.994,0.632,0.448,1.119,1.061,0.852,0.9,0.639,0.522,1.07,1.968,1.046,0.925,1.384,0.975,0.609,0.895,1.4,1.059,0.568,1.002,1.369,0.998,0.446,1.517,0.899,1.328,1.07,1.251,0.221,0.819,0.905,0.951,1.141,1.32,1.341,0.888,0.716,0.977,1.225,0.951,1.104,0.901,1.046,1.082,0.967,0.855,0.872,1.197 +NM_003225,0.0119,4.915,0.0119,4.777,0.0162,6.473,4.101,0.0129,0.0273,0.036,5.338,0.0407,0.0163,0.0147,1.875,3.292,0.0209,5.988,0.0149,5.88,0.0194,0.0455,4.232,0.0386,5.36,0.0275,0.025,0.0199,2.732,6.5,0.0198,0.479,0.124,7.205,0.0132,0.928,5.153,0.0135,5.055,0.333,0.012,4.897,2.437,1.679,0.0649,4.488,1.072,0.0174,0.659,0.0366,5.729,0.451,0.0508,0.0477 +NM_003227,1.056,1.155,0.965,1.123,1.113,0.891,1.312,1.133,1.038,1.018,1.096,1.126,0.909,0.995,0.823,0.995,0.934,0.957,0.884,0.997,0.925,1.045,1.063,1.017,1.099,0.97,1.023,0.971,1.055,1.118,0.998,1.128,1.088,0.914,0.934,1.101,1.0,0.963,1.071,0.987,0.967,0.92,0.997,1.076,1.021,0.916,0.958,1.045,1.05,1.054,0.961,0.995,0.918,0.923 +NM_003234,0.447,1.454,0.691,0.867,0.629,1.336,0.446,0.186,0.807,0.566,0.972,0.36,0.262,0.337,0.881,2.896,0.438,0.845,1.522,0.794,0.394,0.596,1.764,1.252,0.441,1.168,0.849,0.441,0.47,1.025,0.442,1.253,2.596,1.497,0.16,1.266,2.089,0.418,1.442,1.211,0.79,1.673,0.802,1.769,0.835,2.102,0.612,0.439,2.29,0.987,1.524,1.0,0.639,4.284 +NM_003235,1.167,0.92,0.941,1.07,0.989,0.937,1.023,0.947,0.927,0.89,1.041,1.02,1.031,0.948,1.086,0.936,1.088,0.976,0.941,1.089,1.05,1.112,1.034,0.947,0.941,1.02,0.944,1.026,0.791,1.095,1.145,1.03,1.159,0.993,0.961,1.023,1.04,0.904,0.979,2.042,0.827,0.949,0.823,0.968,0.983,0.955,1.006,1.035,1.019,1.039,1.052,0.933,1.019,1.051 +NM_003236,1.003,0.725,2.038,0.835,1.408,1.009,0.611,1.258,1.404,1.019,0.876,1.016,1.351,0.764,1.168,1.133,3.179,1.045,2.996,0.946,0.903,0.708,0.782,1.079,0.541,0.883,3.176,1.018,0.446,0.767,1.475,0.819,1.376,1.006,1.715,0.808,0.903,1.133,1.057,0.83,1.618,0.806,0.535,1.003,1.676,0.781,1.791,0.886,0.83,1.99,0.919,1.142,1.952,1.36 +NM_003238,0.944,1.04,1.084,0.947,1.023,1.005,0.903,1.04,0.969,0.932,1.044,0.883,0.897,1.039,0.854,1.029,1.1,0.851,0.966,0.884,1.019,0.947,0.875,1.044,1.252,0.885,0.919,1.048,0.972,0.957,0.901,0.991,1.172,1.166,0.957,1.096,0.952,0.887,1.08,0.887,0.994,1.086,0.942,1.108,0.953,1.014,0.976,0.962,1.057,1.106,1.1,1.089,1.062,1.06 +NM_003240,0.946,0.846,0.855,0.923,1.032,1.054,1.068,1.108,0.859,0.91,1.023,0.907,0.831,1.126,0.995,0.906,1.005,1.024,0.82,0.9,1.088,0.872,1.071,0.99,0.954,0.924,1.046,1.121,0.916,0.938,1.079,1.238,1.071,0.932,1.206,0.915,1.061,0.992,0.919,1.007,1.014,0.871,1.136,0.871,0.983,1.15,0.981,0.954,1.265,1.102,1.071,1.01,1.038,0.833 +NM_003241,1.042,1.007,1.143,1.242,1.128,0.926,1.247,0.935,1.011,1.001,1.04,1.135,1.005,1.106,0.91,0.985,0.986,1.0,0.924,1.058,1.132,0.955,0.9,0.897,0.966,1.042,1.015,0.935,1.095,0.894,1.018,0.894,1.03,0.905,0.907,0.998,1.034,0.897,0.882,1.102,0.895,1.042,0.981,1.082,1.143,1.052,1.001,0.996,0.972,0.887,1.0,0.932,1.103,0.998 +NM_003242,0.997,0.893,1.042,0.84,0.916,1.11,0.862,1.092,1.087,0.882,1.063,1.04,0.933,0.962,0.97,0.939,0.91,1.028,0.947,1.02,1.121,1.053,1.034,1.058,1.075,0.977,1.083,0.959,0.709,0.991,0.949,1.02,0.859,1.072,0.918,0.954,1.021,1.017,0.826,1.063,0.99,1.131,1.003,0.975,1.09,0.89,1.019,0.88,1.083,1.06,1.008,0.951,1.003,0.892 +NM_003244,1.022,0.891,0.982,1.123,1.023,0.966,0.987,0.988,1.013,1.208,1.108,1.049,1.107,1.102,1.071,0.959,0.828,0.807,1.038,0.94,1.044,1.089,1.085,1.003,1.03,0.99,0.907,0.957,1.043,0.974,1.072,1.072,0.927,1.046,1.03,1.115,0.967,1.046,0.964,0.974,1.056,1.117,1.487,1.047,0.866,0.968,0.848,0.958,0.928,0.975,1.069,0.923,1.045,1.256 +NM_003245,4.319,0.0236,4.138,1.633,5.863,0.0226,0.0305,4.434,7.557,6.192,0.0232,4.605,2.59,3.156,3.49,2.03,4.633,3.676,5.932,0.0627,2.735,5.528,0.0288,4.038,0.0286,5.331,2.898,6.267,0.023,0.0225,6.052,0.0215,1.204,0.0248,6.537,0.0301,0.0506,5.926,0.0947,0.0298,5.142,0.0283,0.03,0.0258,6.014,0.0323,2.705,6.545,0.712,5.356,1.038,0.962,4.327,0.194 +NM_003246,0.679,1.019,0.799,0.926,0.732,0.902,0.953,0.717,0.682,0.922,0.763,0.706,0.612,0.709,0.724,0.877,0.744,1.06,0.817,1.161,0.808,0.68,1.479,0.728,0.677,0.722,1.143,0.891,0.717,1.323,0.819,9.707,2.39,1.43,0.702,1.107,0.907,1.018,2.114,7.074,0.913,2.087,2.36,1.017,1.011,1.223,1.102,0.669,0.952,0.758,1.102,4.378,1.435,1.297 +NM_003247,0.903,0.834,1.166,0.578,0.959,0.845,0.802,0.85,0.787,1.297,1.126,1.199,0.728,0.916,1.206,1.418,0.918,0.883,0.972,1.062,1.3,0.729,1.393,1.295,0.619,0.767,1.147,0.938,0.736,1.117,0.881,20.81,1.909,1.043,0.748,1.104,0.822,1.35,1.36,6.723,1.135,1.539,1.36,1.371,1.326,0.883,1.477,0.951,1.339,1.783,1.168,2.762,3.25,1.27 +NM_003248,0.831,1.027,0.958,0.89,0.993,1.138,1.015,0.961,0.967,0.91,0.965,1.032,0.912,0.895,0.984,0.906,0.895,1.199,0.89,0.904,1.011,0.916,0.938,1.055,1.041,0.95,1.339,0.955,1.545,1.033,1.003,1.935,0.975,1.049,1.161,1.105,0.88,0.973,0.968,1.097,0.907,1.126,1.029,1.11,0.904,0.968,0.857,0.966,1.052,0.983,1.033,0.985,0.962,1.122 +NM_003249,0.815,0.714,0.713,0.747,0.854,0.816,0.609,0.622,1.131,0.895,1.853,0.882,0.827,0.66,1.702,5.11,0.813,0.794,1.17,1.265,0.863,1.008,1.421,0.968,0.587,1.13,1.06,1.091,0.622,0.683,0.899,0.857,3.306,0.786,0.663,1.441,1.375,0.85,1.479,1.674,0.914,0.876,1.676,1.203,0.921,3.146,1.082,1.108,2.261,0.888,1.194,0.917,1.037,1.51 +NM_003251,0.99,0.899,0.918,1.192,0.792,0.991,0.842,1.033,0.902,0.948,0.951,0.999,1.011,1.149,0.755,1.107,0.93,1.106,0.898,1.073,1.096,0.991,1.038,0.984,1.103,0.894,1.164,0.935,1.113,0.966,0.997,1.016,1.047,0.895,0.981,0.988,0.968,1.106,0.96,1.072,0.955,1.055,0.845,1.101,1.063,1.034,0.992,0.923,0.972,0.89,1.04,1.154,1.024,1.098 +NM_003252,0.841,0.957,1.255,0.772,1.075,1.002,0.702,0.802,1.475,1.253,0.798,1.244,0.757,0.852,1.021,1.137,0.942,0.932,1.225,0.976,0.77,0.854,0.969,1.294,0.717,0.966,1.274,1.054,0.562,1.025,1.077,1.227,1.411,1.103,0.784,1.284,0.838,0.961,1.294,0.717,1.151,0.821,0.791,1.545,1.206,0.95,1.049,0.854,0.997,0.928,0.981,0.849,1.23,1.287 +NM_003253,1.096,0.957,1.162,1.029,1.048,1.007,1.16,1.224,0.992,1.107,1.064,0.997,1.08,1.124,0.997,0.938,0.95,1.034,1.014,1.077,1.006,1.173,0.852,1.065,0.991,1.073,1.087,1.224,0.838,0.958,1.132,0.771,1.067,0.928,0.973,1.085,0.972,0.952,1.018,1.013,0.963,0.984,1.072,1.001,1.071,0.891,0.974,1.109,0.877,0.893,0.93,1.058,1.321,0.908 +NM_003255,1.992,0.571,0.965,0.824,1.54,1.354,0.496,1.922,2.254,0.493,1.099,0.665,2.148,1.077,1.413,0.711,1.407,0.867,1.78,0.823,0.847,1.495,0.415,0.446,0.38,2.032,0.767,2.497,0.415,0.828,3.068,1.642,0.962,1.061,7.232,0.389,0.614,1.125,1.58,1.01,1.609,0.911,0.312,1.697,1.159,0.99,1.213,2.264,0.379,1.172,0.833,0.706,0.789,1.492 +NM_003256,0.863,0.968,0.88,0.938,0.945,1.148,0.77,1.087,0.888,0.934,1.501,0.836,0.788,1.038,0.936,1.767,0.989,0.881,0.885,1.06,0.863,0.827,1.643,1.01,1.025,0.886,0.974,0.957,1.049,0.943,0.734,0.893,1.085,1.024,0.937,1.234,1.058,0.953,1.15,1.105,0.81,1.119,0.95,1.244,0.879,1.098,1.335,1.057,0.958,0.898,1.112,1.089,0.85,0.984 +NM_003257,1.103,1.091,0.859,0.961,1.157,1.059,0.944,1.007,0.99,1.127,1.012,1.1,1.163,1.12,1.192,0.947,1.045,1.017,1.062,0.964,0.949,1.105,0.957,1.083,0.996,1.068,1.013,1.103,0.832,0.897,1.152,1.0,0.961,1.078,1.011,1.0,1.055,1.002,0.958,1.122,0.984,1.023,1.071,0.906,1.143,1.074,0.918,0.974,0.876,1.054,1.063,1.105,1.161,0.902 +NM_003258,0.451,1.118,0.97,0.904,0.699,1.139,0.755,0.314,0.936,1.046,0.586,0.835,0.547,0.404,0.659,1.098,0.551,1.191,1.091,0.797,0.383,0.573,1.892,1.1,0.365,0.51,1.798,0.567,0.357,1.411,0.564,1.752,2.236,0.971,0.123,1.9,1.079,0.661,1.963,0.987,0.95,0.587,1.084,2.667,0.781,1.145,1.125,0.45,1.43,0.694,1.68,1.266,0.736,1.94 +NM_003260,0.84,1.582,0.961,1.062,0.64,1.26,0.84,0.605,1.241,0.93,0.861,0.852,1.058,0.97,1.017,1.673,0.63,1.261,1.07,1.183,0.673,0.84,1.451,1.408,1.004,0.887,0.803,0.645,0.726,1.692,1.1,2.09,1.103,2.809,0.552,0.408,1.055,0.906,1.244,1.457,0.955,1.707,1.131,0.824,0.773,1.479,0.719,0.999,0.639,0.628,0.774,0.657,0.972,2.674 +NM_003262,0.448,1.52,0.851,0.695,0.701,1.7,0.894,0.47,0.831,0.749,1.181,0.614,0.552,0.38,0.865,1.573,0.63,0.978,0.639,1.11,0.424,0.568,1.48,0.746,1.07,0.457,1.127,0.681,0.502,2.009,0.665,1.719,2.474,1.995,0.455,0.802,1.328,0.651,1.416,0.84,0.803,1.528,0.845,1.08,0.637,1.124,1.381,0.572,1.031,0.529,1.236,0.804,0.592,2.931 +NM_003263,0.983,1.017,1.052,1.094,1.082,1.051,0.853,1.131,0.903,1.063,1.044,0.962,1.073,0.928,0.983,0.976,1.02,1.032,1.068,1.055,0.983,0.943,0.966,0.921,0.952,0.896,1.012,0.977,1.301,0.977,1.112,1.053,0.958,0.975,0.954,1.046,1.022,0.99,1.128,1.115,1.002,1.103,0.97,1.102,1.112,1.044,0.983,0.978,0.908,1.067,1.054,1.071,0.878,1.067 +NM_003264,0.746,1.264,1.835,0.828,1.002,0.894,0.822,0.791,1.163,0.871,0.761,0.775,0.771,0.874,0.931,0.809,1.388,0.837,0.922,0.82,0.808,0.81,1.106,0.844,0.815,0.764,3.007,0.768,0.531,1.093,0.938,3.782,1.22,1.133,0.589,0.747,0.847,0.998,1.695,5.271,1.044,1.262,0.998,1.098,1.088,0.765,0.938,0.755,0.796,1.871,0.983,2.776,1.906,2.779 +NM_003265,0.978,1.131,1.647,0.971,0.931,2.259,1.98,0.943,0.952,0.901,1.479,0.843,0.756,0.948,1.303,1.554,0.887,1.488,0.818,1.873,0.836,0.927,1.028,1.042,0.879,0.698,1.465,0.998,0.885,1.479,1.003,0.808,1.488,1.604,0.956,0.745,1.544,1.015,1.397,0.661,0.996,1.266,0.872,0.907,0.944,1.194,0.736,0.747,1.395,0.833,1.261,0.782,0.818,1.199 +NM_003269,0.978,1.112,1.016,1.09,1.108,0.964,0.892,0.944,1.043,1.061,0.851,1.045,0.918,1.013,0.921,0.929,1.094,0.976,1.094,0.87,0.988,0.954,0.924,0.986,0.994,0.976,0.921,1.02,0.983,0.955,0.95,1.039,0.883,0.973,1.09,0.827,0.837,1.028,1.059,1.08,1.152,1.214,0.919,0.934,1.098,0.837,1.022,1.045,0.937,1.152,0.984,0.91,0.85,1.011 +NM_003270,1.296,0.699,2.042,0.721,1.649,0.557,0.341,1.632,2.062,1.041,0.615,0.802,1.461,1.957,1.615,1.205,2.292,1.032,2.893,0.72,0.816,1.547,0.656,1.781,0.469,1.821,1.244,1.907,0.268,0.566,2.467,1.085,2.302,0.937,2.99,0.402,0.67,1.779,0.457,0.688,2.009,1.002,0.4,0.704,1.726,0.474,1.262,1.918,0.555,1.434,0.707,0.673,2.082,0.998 +NM_003271,0.631,1.253,0.858,0.754,0.973,0.997,1.058,0.545,0.757,1.104,0.905,0.787,0.656,0.533,0.744,1.001,0.752,0.977,0.723,0.959,0.664,0.649,1.495,0.897,0.868,0.723,0.984,0.743,0.635,1.693,0.672,7.847,1.386,1.999,0.445,0.926,0.923,0.834,1.922,2.215,1.005,2.051,0.757,1.597,0.897,0.949,1.157,0.739,0.614,0.75,1.234,2.254,0.75,1.763 +NM_003272,0.739,1.861,1.306,0.583,0.952,1.247,0.846,0.489,0.989,0.791,1.319,0.798,0.766,0.6,0.907,1.016,1.21,0.76,0.851,1.227,0.468,0.489,0.752,0.894,0.774,0.698,1.525,0.554,0.875,1.079,0.851,2.566,1.207,1.511,0.797,0.799,1.411,0.588,1.518,1.379,0.884,1.195,0.737,1.085,1.031,1.245,1.001,0.802,0.577,0.903,1.167,1.459,0.96,1.718 +NM_003273,1.213,0.965,2.6,0.629,2.079,0.742,0.34,1.363,3.273,2.545,0.689,1.85,1.374,1.599,1.47,1.314,2.137,1.902,3.359,0.572,0.697,1.942,0.933,2.366,0.778,2.201,2.757,1.733,0.217,0.745,1.708,0.623,1.021,0.549,0.79,0.439,0.532,1.97,0.467,0.799,2.267,0.427,0.298,0.541,1.929,0.756,2.075,1.858,0.29,2.567,1.062,0.658,1.686,0.381 +NM_003275,1.069,1.169,0.949,1.085,0.969,0.91,1.003,0.878,0.906,0.901,1.055,1.111,0.96,1.115,0.899,1.109,0.95,0.908,1.014,0.948,1.112,1.044,0.898,0.974,0.959,0.881,0.935,0.964,0.783,0.928,0.982,1.114,1.009,1.003,0.917,1.077,1.153,1.149,0.939,1.104,1.037,1.01,1.031,0.892,0.969,1.044,1.072,0.972,0.996,1.058,0.999,1.043,1.085,1.082 +NM_003276,0.97,1.008,0.914,1.125,1.098,1.027,0.956,0.848,1.016,1.033,1.05,0.902,0.951,0.915,0.918,1.037,0.841,0.945,0.943,1.02,0.76,0.807,1.151,1.036,0.892,0.957,1.002,0.897,0.936,1.033,1.02,1.069,2.026,0.975,0.911,1.226,1.019,0.812,1.2,0.931,0.876,0.88,1.096,1.053,0.97,0.998,1.117,0.884,1.125,0.976,0.901,0.938,1.004,1.654 +NM_003277,0.585,2.71,0.544,0.768,0.709,1.179,1.692,0.593,0.614,0.692,1.199,0.557,0.727,0.574,0.699,0.935,0.616,1.083,0.633,1.274,0.763,0.619,1.415,0.83,1.098,0.61,0.703,1.093,0.354,4.231,0.498,2.923,0.669,2.645,0.583,1.592,1.917,1.371,2.631,2.306,1.292,3.782,0.949,0.776,0.865,1.218,1.975,0.639,0.926,0.692,1.88,1.898,0.933,0.991 +NM_003278,0.795,1.545,0.75,1.032,0.917,1.28,1.483,0.876,0.973,0.758,1.1,0.721,0.823,0.724,1.084,1.164,0.671,0.97,0.874,1.14,0.914,1.078,1.492,0.829,1.669,0.911,0.574,1.177,0.876,2.37,0.799,1.498,0.993,4.043,0.735,1.229,1.116,1.065,2.718,0.918,1.084,1.993,0.889,0.797,0.765,0.981,0.997,0.971,0.921,0.782,1.409,0.969,0.822,0.892 +NM_003279,0.876,1.027,0.871,1.001,0.926,0.968,1.0,0.925,0.993,0.974,0.956,1.048,0.924,0.973,0.907,1.451,0.856,0.943,0.899,1.201,0.995,0.945,0.989,0.962,0.868,0.791,1.121,0.879,1.153,1.228,0.957,0.999,1.064,1.167,0.871,0.956,1.285,0.959,1.0,1.381,0.949,0.944,1.036,1.833,0.975,1.278,1.122,0.945,1.052,0.98,1.054,1.24,0.98,1.139 +NM_003280,0.937,1.399,1.043,0.83,0.847,1.194,0.892,0.923,0.979,0.851,1.561,0.976,0.944,0.871,0.842,1.12,1.008,0.888,1.091,0.96,0.77,0.833,0.896,0.896,0.928,0.861,0.879,0.889,1.168,1.054,0.825,1.678,2.013,0.946,1.036,1.007,0.924,0.787,1.072,1.463,0.866,1.173,0.723,0.886,0.839,1.303,1.005,0.945,0.995,0.839,1.041,1.517,0.777,9.186 +NM_003283,1.343,0.608,1.41,0.994,1.849,0.67,0.842,1.89,1.71,1.991,0.685,1.976,1.506,1.238,1.262,0.852,1.319,1.466,2.205,0.785,1.522,1.568,0.641,2.445,0.598,1.532,0.993,1.523,0.655,0.718,1.748,0.707,0.801,0.859,0.796,0.829,0.627,3.621,2.438,1.532,1.664,0.597,0.685,1.243,1.29,0.73,2.025,1.56,0.933,1.404,0.789,0.983,1.948,0.949 +NM_003284,1.123,0.986,0.986,1.28,0.996,0.981,0.978,0.922,1.064,1.015,0.945,1.051,1.081,1.2,0.941,0.956,1.047,0.933,0.987,0.955,1.107,1.006,1.053,1.189,1.05,0.927,0.965,0.938,1.166,1.064,0.775,0.894,0.88,0.983,1.088,1.013,1.007,0.932,0.924,1.002,0.95,1.011,1.038,0.974,1.03,0.989,1.175,0.925,0.963,0.882,1.016,0.842,1.213,1.044 +NM_003285,1.099,0.995,1.136,0.904,0.928,1.147,0.989,1.173,1.09,0.977,0.885,1.056,1.078,1.048,1.0,0.974,0.952,0.975,1.011,1.007,0.973,1.004,1.049,0.931,1.066,1.002,1.076,0.97,1.302,0.964,0.902,0.909,0.977,0.902,1.006,1.004,0.994,1.06,0.939,0.887,0.992,0.986,1.048,0.991,0.925,0.88,0.922,0.951,0.915,0.916,1.011,0.933,1.079,0.983 +NM_003286,0.711,0.613,1.136,0.653,0.684,0.733,0.624,0.577,1.146,1.009,1.262,0.561,0.524,0.588,0.933,1.505,0.647,0.739,0.975,0.813,0.655,0.407,1.551,0.696,0.472,0.513,1.211,0.738,0.282,0.991,0.889,0.964,1.789,1.058,1.235,0.83,1.139,0.698,0.892,1.712,1.426,1.198,1.099,1.043,1.056,1.246,1.097,0.52,1.54,0.755,1.132,1.094,1.028,1.934 +NM_003287,2.25,0.65,3.59,1.215,2.849,0.658,0.338,1.657,2.952,2.601,0.611,2.52,2.553,1.849,1.36,1.288,2.639,1.834,3.843,0.504,1.572,1.404,0.417,2.495,0.848,3.254,2.338,2.909,0.248,0.425,2.732,0.446,1.745,0.566,2.204,0.621,0.403,2.268,0.36,0.302,2.858,0.665,0.383,0.835,2.733,0.344,1.553,2.219,0.428,2.538,0.711,0.927,2.088,1.42 +NM_003288,1.217,0.657,1.654,0.729,1.1,0.553,0.454,1.003,1.343,1.049,0.609,0.845,1.187,0.872,0.945,1.178,2.003,0.75,1.867,0.417,0.965,1.549,1.016,1.497,0.436,1.356,1.316,0.928,0.367,0.835,1.57,1.233,1.966,0.768,1.544,0.763,0.801,1.628,0.863,1.25,1.48,0.692,0.415,1.593,1.405,0.469,1.292,1.701,0.659,1.377,0.7,1.485,1.227,2.195 +NM_003289,0.467,1.089,0.488,0.625,0.514,1.082,0.742,0.438,0.419,0.682,2.091,0.625,0.443,0.445,0.944,1.373,0.49,0.649,0.62,0.709,1.552,0.499,1.985,0.756,0.773,0.521,0.56,2.112,0.468,2.162,0.432,11.4,1.261,4.072,0.506,1.007,0.825,1.46,1.84,1.911,4.969,4.998,0.862,2.437,0.554,0.812,0.879,0.524,1.108,0.42,1.561,2.151,0.739,2.166 +NM_003290,0.839,0.323,1.009,0.869,0.445,1.577,0.435,0.838,0.997,0.721,1.62,0.339,0.6,0.914,1.477,2.458,0.621,0.598,2.151,0.683,1.193,0.356,1.285,0.899,0.46,0.936,1.255,0.581,0.307,1.066,1.521,1.35,3.289,2.441,0.648,0.806,0.893,0.467,1.688,0.674,0.917,1.083,0.493,1.239,0.922,0.797,0.584,0.791,0.598,1.003,1.148,0.872,2.111,1.509 +NM_003291,0.837,0.994,1.118,0.985,1.197,1.347,1.017,0.915,1.092,1.087,0.868,0.928,0.888,0.882,0.967,1.428,0.994,1.025,0.869,1.094,0.814,1.058,1.245,0.981,0.845,0.796,1.259,0.937,0.884,1.086,1.072,1.249,1.337,1.128,0.852,0.995,0.962,1.14,1.131,0.948,0.989,0.918,0.895,0.838,1.09,0.949,1.073,0.953,1.122,1.063,1.08,0.792,0.712,1.166 +NM_003292,0.874,1.259,1.519,0.791,0.921,0.837,0.613,0.476,1.074,1.027,0.77,0.843,0.603,0.787,0.933,0.843,0.904,0.925,1.147,1.021,0.897,1.08,1.238,0.951,0.816,0.936,1.488,0.746,0.61,1.005,0.865,1.465,2.007,1.125,0.49,1.476,0.796,1.019,1.477,1.453,1.02,1.12,0.709,1.481,1.034,0.902,0.714,0.804,0.816,0.939,0.999,0.926,1.104,1.717 +NM_003294,0.218,2.934,0.511,1.367,0.18,1.129,0.865,0.192,0.748,0.425,2.579,0.722,0.423,0.257,0.587,1.126,0.8,0.883,0.684,1.117,0.945,0.184,1.255,0.274,1.923,0.177,1.116,0.366,0.135,2.838,0.329,1.114,1.695,6.666,0.102,0.184,0.889,0.861,3.709,0.381,0.436,3.316,0.673,0.659,0.624,2.157,0.353,0.47,0.64,0.224,1.271,1.189,1.13,1.986 +NM_003295,0.917,0.975,1.216,0.802,1.088,0.93,0.452,0.787,1.161,0.888,1.295,0.854,1.065,0.657,0.864,1.444,0.906,1.012,1.506,0.894,0.702,0.562,1.044,1.043,0.753,1.188,1.028,1.15,0.254,1.235,0.995,1.029,0.584,1.285,0.947,0.972,1.113,1.137,1.049,1.087,1.219,1.237,0.655,1.115,0.966,0.926,1.216,1.034,0.848,0.987,0.947,0.769,1.002,0.691 +NM_003296,1.141,1.009,1.105,1.029,0.985,0.91,1.03,1.037,1.175,0.984,0.988,0.97,0.998,0.955,0.966,0.968,1.049,0.865,1.15,0.928,1.227,0.957,0.952,1.129,1.045,0.982,0.962,1.005,1.066,1.083,1.077,1.205,0.903,1.087,1.019,0.941,1.086,1.01,0.918,0.921,1.046,1.225,1.083,1.037,0.989,0.932,0.982,1.072,0.991,0.998,0.985,0.88,1.017,1.002 +NM_003297,0.82,1.055,1.053,0.92,1.005,1.622,1.082,0.774,0.983,0.932,0.969,0.845,0.807,0.693,1.174,1.657,0.721,0.939,0.951,1.348,0.861,0.925,1.516,0.965,0.804,0.808,0.903,0.98,1.186,0.923,0.819,1.119,1.435,1.263,0.795,1.024,1.229,0.9,1.601,1.026,0.96,1.321,0.857,0.839,0.955,1.271,0.897,0.903,1.082,0.911,1.311,0.883,0.883,1.803 +NM_003298,0.85,0.954,1.044,0.961,1.131,1.123,0.782,1.035,1.531,1.038,0.829,0.927,0.883,0.821,0.979,0.855,1.148,1.03,1.06,1.043,0.831,0.996,0.943,1.309,0.847,0.878,1.531,1.19,0.632,1.167,1.012,1.146,1.615,0.728,1.171,1.12,0.863,1.063,1.322,0.897,1.012,0.933,1.107,1.002,0.946,1.333,1.12,0.954,1.063,1.029,0.917,1.026,0.951,1.539 +NM_003299,0.411,1.132,0.879,0.793,0.594,1.298,1.105,0.213,0.797,0.627,1.334,0.33,0.283,0.305,0.925,2.56,0.637,0.821,0.558,1.422,0.272,0.43,1.965,0.737,1.016,0.23,1.074,0.57,0.327,1.795,0.788,1.791,2.366,1.997,0.114,0.983,1.433,0.512,1.877,1.046,0.901,1.813,1.096,0.664,0.692,1.811,0.905,0.332,3.164,0.471,2.469,0.856,0.397,2.475 +NM_003300,0.969,0.93,0.974,1.059,1.064,1.052,1.025,0.974,0.95,0.995,0.974,1.015,1.019,0.995,0.863,1.127,0.909,0.958,1.046,1.059,0.944,0.961,1.154,0.89,0.883,0.97,1.165,0.962,0.711,0.845,0.968,1.122,0.993,0.988,0.922,0.828,0.975,0.963,1.17,1.054,0.876,1.007,1.113,1.08,1.031,1.067,1.118,1.01,1.139,0.957,1.088,0.954,1.013,1.153 +NM_003301,1.122,1.168,0.934,0.91,0.871,0.975,0.943,1.129,0.824,0.842,1.166,0.998,1.038,1.305,1.0,0.891,1.03,1.03,0.977,0.908,1.151,0.969,1.158,0.944,1.032,1.178,0.83,0.936,0.832,1.026,0.965,0.859,0.998,1.077,0.994,1.0,1.029,0.948,0.965,0.995,0.936,0.812,1.142,1.035,0.841,0.966,1.021,1.03,1.071,1.246,0.954,1.086,1.013,0.95 +NM_003302,0.714,0.959,1.278,0.719,0.814,1.181,0.501,0.756,1.048,1.21,0.416,1.004,0.673,0.811,0.818,0.911,1.15,0.846,1.923,0.742,0.976,0.895,1.669,1.23,0.323,1.179,1.376,0.789,0.317,1.047,1.125,1.997,0.915,1.143,0.611,0.672,0.9,1.104,1.922,1.539,1.181,0.753,0.329,2.07,1.368,0.421,0.911,1.21,0.838,1.063,0.773,0.931,1.201,2.043 +NM_003304,0.986,1.152,1.085,0.864,0.952,1.107,0.874,1.004,0.96,0.796,1.051,1.003,0.943,1.099,1.216,1.019,0.983,0.866,1.094,1.18,1.125,1.029,1.003,0.976,1.118,0.941,1.03,0.786,0.788,0.993,0.996,1.37,1.169,1.157,1.093,0.985,1.02,0.822,1.0,0.91,1.202,1.114,0.836,1.134,0.968,1.137,1.143,1.071,0.994,1.164,0.919,0.923,0.97,0.947 +NM_003307,1.039,1.018,0.977,1.294,0.91,1.052,1.207,0.981,1.167,0.97,1.112,0.894,0.849,1.015,1.193,1.162,1.042,0.998,0.829,1.212,0.893,1.127,1.026,1.005,0.928,0.747,0.936,1.026,1.266,0.899,1.072,1.009,1.259,1.0,1.035,1.0,0.99,0.869,1.03,1.062,0.985,1.148,1.011,1.136,0.907,0.955,1.096,1.018,0.981,0.996,1.03,1.125,1.417,0.965 +NM_003308,1.039,0.979,0.984,1.142,0.97,1.111,1.0,1.036,0.955,1.097,0.97,1.017,1.05,1.057,1.043,1.186,1.015,1.153,1.068,0.859,1.073,1.012,0.919,0.931,0.922,0.934,0.756,1.037,0.994,1.0,1.122,0.975,1.092,0.991,1.087,0.938,1.016,0.993,1.131,0.987,0.76,1.173,0.976,1.112,1.04,1.01,1.163,1.059,1.119,0.751,0.946,0.953,1.267,1.218 +NM_003310,0.859,0.877,0.872,0.864,0.713,1.473,0.606,0.657,1.166,0.791,1.066,0.747,0.709,0.711,1.326,2.25,0.857,0.797,1.024,0.927,0.619,0.88,1.351,0.956,0.721,0.972,1.017,0.775,0.437,1.204,0.865,0.847,1.758,1.735,0.374,1.452,0.992,0.625,1.451,1.116,1.062,1.086,0.766,1.784,0.816,1.174,0.953,0.866,1.256,0.826,1.356,0.721,0.953,1.653 +NM_003311,0.416,0.8,0.847,0.849,1.005,1.199,0.594,0.444,0.961,1.541,1.053,1.156,0.496,0.325,0.864,1.88,0.783,0.786,0.528,1.417,0.32,0.639,1.781,0.999,0.264,0.468,0.848,0.79,0.467,1.116,0.715,1.467,1.077,0.724,0.341,3.377,0.743,0.823,2.753,1.681,0.735,0.798,3.731,2.17,1.285,4.322,2.305,0.537,2.506,0.509,1.675,1.147,1.319,2.189 +NM_003312,0.599,0.963,0.798,1.07,0.652,2.255,1.244,0.539,1.078,0.671,2.599,0.604,0.653,0.637,1.31,2.72,0.757,1.259,1.127,1.833,0.333,0.683,1.56,1.093,0.975,0.752,0.705,0.864,0.85,1.921,0.935,0.78,0.65,2.507,0.737,0.781,1.927,0.524,1.767,0.28,0.885,1.774,1.025,0.669,0.87,1.701,1.027,0.826,1.322,0.629,1.656,0.554,0.629,0.899 +NM_003313,0.541,0.971,0.926,1.137,0.446,1.781,0.693,0.437,0.616,0.683,1.336,0.768,0.751,0.305,1.022,2.513,1.131,1.082,1.634,1.076,0.651,0.525,1.193,0.732,0.691,0.724,0.955,0.428,0.676,1.279,0.615,0.808,2.125,1.854,0.28,1.113,1.137,0.556,3.067,0.8,0.82,1.325,0.734,1.361,1.003,1.467,0.776,0.656,1.484,1.154,1.326,0.581,0.947,1.072 +NM_003314,0.703,0.927,1.289,0.706,0.899,1.223,0.732,0.685,0.997,1.014,0.803,1.019,0.769,0.502,0.835,1.173,1.043,0.973,1.279,0.884,0.688,0.924,1.168,1.061,0.807,0.981,1.241,0.924,0.637,1.174,0.958,1.177,3.189,1.377,0.382,0.873,0.965,0.99,1.517,0.831,1.212,1.152,0.653,1.212,1.087,0.828,0.99,0.848,0.95,0.876,0.995,0.604,1.126,1.894 +NM_003315,0.746,0.95,1.222,0.764,1.087,0.978,0.654,0.597,1.234,1.168,0.831,1.1,0.639,0.694,0.748,1.282,0.89,0.872,1.377,0.477,0.684,0.971,0.979,1.218,0.584,1.032,1.182,0.954,0.472,1.166,0.907,1.38,1.453,1.157,0.335,0.774,0.983,1.131,1.315,0.922,1.387,0.903,0.835,1.414,1.059,0.95,1.189,1.016,1.266,0.872,0.798,1.175,1.142,0.991 +NM_003316,0.57,1.488,0.999,0.742,0.724,1.528,0.423,0.458,0.819,0.606,1.536,0.628,0.522,0.684,1.37,1.868,0.554,0.75,1.136,1.36,0.534,0.854,1.665,0.864,1.181,0.578,1.001,0.619,0.483,1.668,0.779,1.757,2.455,2.14,0.187,0.448,1.172,0.874,1.137,0.775,0.808,1.618,0.748,0.662,0.548,1.325,0.615,0.605,0.446,0.577,1.349,0.497,0.815,1.235 +NM_003317,0.957,1.02,0.947,1.052,0.96,1.158,1.055,1.125,0.977,1.038,1.066,1.061,1.039,0.921,1.091,0.911,1.104,1.012,0.857,1.128,1.001,1.144,1.02,1.048,1.03,0.939,1.054,0.959,1.107,0.945,1.05,2.852,0.993,0.859,1.159,0.95,1.177,0.969,0.99,1.003,1.055,0.966,0.928,1.002,0.963,0.907,0.999,1.074,1.098,0.986,1.11,0.917,0.905,1.028 +NM_003318,0.769,1.205,1.378,0.831,0.98,1.09,0.92,0.962,1.035,1.171,0.804,1.084,0.824,0.886,0.982,1.319,0.754,1.108,0.917,1.023,0.686,0.778,1.586,1.241,0.704,0.739,1.693,0.812,0.595,1.057,1.033,0.894,3.095,1.025,0.634,1.736,0.977,0.845,1.596,1.462,1.233,0.867,0.787,1.316,0.999,1.049,1.231,0.695,1.389,0.818,1.399,1.098,1.001,2.881 +NM_003320,0.999,1.126,1.0,1.083,1.096,0.959,0.955,1.086,0.996,1.21,1.041,1.144,0.934,1.023,0.989,1.077,1.133,0.966,1.01,0.728,0.957,0.932,1.173,1.025,1.056,0.949,1.023,0.984,0.962,0.991,0.951,0.98,0.919,1.101,1.184,1.204,0.986,1.048,1.0,0.792,0.876,0.861,1.194,0.832,0.966,1.037,1.016,0.945,1.096,0.987,1.089,1.024,1.083,0.92 +NM_003321,0.859,1.011,0.871,0.914,0.709,1.01,0.584,0.427,0.882,0.847,1.507,0.843,0.818,0.598,0.973,2.302,0.776,1.081,1.666,0.826,0.431,0.753,1.371,0.925,0.803,1.065,1.179,0.625,0.508,1.012,0.805,1.058,2.229,1.4,0.105,0.888,1.336,0.89,1.934,0.82,0.815,1.24,0.755,1.484,0.999,0.859,1.197,0.952,1.316,0.923,1.058,0.908,0.982,4.158 +NM_003322,0.855,0.977,0.916,0.989,0.954,0.988,0.902,0.917,0.905,1.123,1.014,1.056,0.927,1.031,0.865,1.006,0.948,0.874,1.246,0.933,1.007,0.956,0.896,1.054,0.997,1.183,1.063,1.014,0.62,1.14,0.968,1.012,0.978,1.07,0.828,0.926,1.02,0.886,1.022,1.011,0.94,1.091,0.96,1.069,1.122,0.989,1.052,0.978,1.099,1.001,1.068,1.088,0.854,1.073 +NM_003323,0.968,0.884,1.028,0.94,0.975,0.942,0.915,1.173,0.828,0.879,0.896,1.064,0.91,0.782,1.229,0.999,1.135,0.918,1.139,0.891,1.069,1.031,1.004,0.931,1.09,1.048,1.198,1.098,0.738,1.09,1.091,0.979,0.977,0.9,0.948,1.044,1.127,0.997,1.044,0.961,1.061,0.925,1.141,0.931,0.974,0.94,1.169,1.022,1.121,1.097,0.949,0.929,0.987,0.976 +NM_003324,0.911,0.843,1.051,1.142,0.986,0.899,0.989,0.883,1.026,1.127,1.007,1.168,0.926,0.979,1.039,0.968,0.876,0.966,0.938,0.947,1.025,1.062,0.923,1.006,0.868,0.92,0.931,1.129,0.951,0.997,0.905,1.006,0.991,1.035,0.933,1.07,1.152,0.928,0.969,0.968,0.952,1.036,1.018,1.007,1.131,1.031,0.985,0.996,1.016,1.164,1.061,0.972,1.132,0.98 +NM_003325,0.898,1.043,0.892,0.862,1.001,1.191,1.023,0.916,0.993,0.939,0.911,0.941,0.821,0.825,0.984,1.289,0.865,0.895,0.969,0.946,0.726,0.837,1.111,0.968,0.844,1.031,1.082,0.965,1.509,1.116,0.954,1.163,1.097,1.159,0.655,0.853,0.932,1.02,1.251,1.092,0.996,1.036,0.777,0.859,1.028,0.979,1.189,0.925,1.088,0.798,1.061,0.883,0.834,1.086 +NM_003326,0.943,0.917,0.915,0.961,1.099,1.06,0.93,0.963,0.877,0.91,1.027,0.897,1.017,0.877,1.053,1.124,0.846,0.81,0.798,0.86,1.176,1.04,1.103,0.966,1.027,1.05,1.048,1.038,0.907,1.119,0.985,2.586,1.116,0.927,0.972,0.996,1.086,0.933,0.982,0.988,0.984,0.929,1.037,0.997,0.964,1.08,1.019,1.002,0.86,0.851,0.988,1.078,1.117,1.309 +NM_003327,0.831,1.167,1.002,1.017,0.849,0.977,1.373,0.916,1.005,0.961,0.843,0.929,0.826,0.835,1.092,0.845,0.916,0.953,0.959,0.88,0.846,0.892,1.032,0.954,0.914,0.806,1.137,0.931,1.213,1.206,0.871,2.185,1.217,1.103,0.876,1.078,1.045,0.923,1.517,3.073,0.891,1.429,0.996,0.997,0.972,0.892,0.978,0.985,0.824,1.13,0.961,1.512,1.108,2.441 +NM_003328,1.12,0.889,0.985,1.166,0.895,1.017,1.372,1.024,1.028,1.058,1.044,1.109,0.854,1.283,0.896,1.139,1.015,1.15,0.81,0.952,0.949,0.905,1.01,1.031,0.895,0.909,1.056,0.994,1.239,1.053,1.006,0.9,0.861,1.405,0.958,0.992,1.106,1.012,0.907,0.91,0.9,1.053,0.851,1.12,0.969,0.912,0.887,0.962,0.98,0.914,0.922,1.127,0.934,1.124 +NM_003331,0.768,1.267,0.87,1.144,0.679,1.471,0.659,0.56,0.854,0.765,1.013,0.707,0.713,0.769,0.997,1.148,0.988,0.752,0.931,1.001,0.85,0.919,1.405,1.159,1.102,0.878,1.18,0.595,0.837,1.497,0.721,1.342,1.341,1.252,0.491,0.989,1.037,0.772,2.126,1.184,0.728,1.274,0.921,1.788,0.713,0.921,0.726,0.722,0.915,0.91,1.12,0.982,0.879,1.253 +NM_003333,0.702,0.786,0.577,0.676,1.266,2.222,0.443,0.844,0.566,1.27,1.232,2.408,0.478,0.389,0.718,2.007,0.923,1.124,0.438,2.225,0.234,1.03,2.623,0.668,0.743,0.412,1.145,1.271,0.573,0.619,1.284,0.567,0.779,0.851,0.691,2.018,0.51,1.405,1.563,0.527,0.592,2.076,0.724,0.675,0.702,0.478,0.505,1.174,2.024,0.433,1.648,1.363,0.837,1.807 +NM_003338,0.973,0.962,1.19,1.11,0.817,1.051,0.962,1.121,1.137,0.964,1.096,1.148,1.007,0.899,1.11,1.205,1.094,0.985,0.903,1.094,0.997,0.95,1.001,1.078,0.899,0.879,0.965,0.994,0.723,1.039,0.845,1.013,1.226,1.012,0.876,0.998,0.984,0.916,1.035,0.905,0.991,1.005,0.802,0.967,0.956,1.11,0.811,0.964,1.051,0.966,0.945,1.03,1.023,0.983 +NM_003339,1.0,0.993,1.147,0.735,0.955,1.241,0.692,0.864,0.947,0.956,1.564,1.329,0.75,0.985,1.03,1.575,0.779,0.945,1.202,1.129,0.795,0.715,0.908,1.247,0.765,0.866,1.136,0.981,0.646,1.465,0.901,1.0,2.07,1.368,0.438,0.644,1.287,1.19,1.015,0.664,1.195,1.254,0.853,0.571,1.107,1.204,0.931,0.829,1.045,0.643,1.044,0.945,1.005,0.833 +NM_003342,1.649,0.623,1.944,0.988,2.844,0.698,0.528,1.369,4.021,1.876,0.811,0.85,1.386,1.571,1.867,1.415,1.424,1.265,1.856,0.705,1.023,1.22,0.773,1.483,0.539,1.736,1.472,3.176,0.394,0.849,3.271,0.727,1.703,0.966,6.042,0.642,0.788,2.097,0.8,0.659,2.611,0.942,0.626,0.732,1.864,0.8,1.535,2.069,0.897,1.493,0.926,0.724,1.668,1.391 +NM_003343,0.686,1.269,1.145,0.794,0.855,0.961,0.693,0.544,1.075,1.01,0.718,0.765,0.705,0.698,0.967,1.329,0.791,0.797,1.185,0.876,0.929,0.83,1.39,0.999,0.763,0.949,0.987,0.797,0.828,1.042,0.847,1.415,2.494,1.458,0.34,0.885,1.016,0.853,1.462,1.122,1.001,1.12,0.865,1.188,0.955,0.691,0.834,0.797,0.561,0.774,0.841,0.734,1.413,2.555 +NM_003347,0.827,1.215,1.092,0.76,0.807,1.164,0.709,0.584,0.793,0.965,0.982,0.821,0.555,0.669,0.794,1.635,0.787,0.998,0.898,1.218,0.566,0.849,1.243,0.9,0.901,0.787,1.347,0.771,0.637,1.442,0.847,1.775,1.332,1.537,0.311,0.783,1.026,0.923,1.519,0.791,1.002,1.209,0.614,0.799,0.898,0.989,0.708,0.727,1.095,0.729,1.187,0.818,0.813,1.007 +NM_003348,0.971,0.906,0.932,0.814,0.803,1.405,0.837,0.695,1.155,0.748,1.229,0.832,0.955,0.682,0.995,1.774,0.753,0.926,1.225,0.864,0.636,0.862,1.281,1.0,0.778,1.094,1.092,0.957,0.575,0.737,0.906,0.75,1.078,1.535,0.537,0.732,1.491,0.84,1.332,0.926,1.007,1.156,0.841,0.817,0.937,1.047,0.712,1.001,1.148,0.761,1.07,0.89,0.885,1.413 +NM_003349,1.182,0.814,1.008,1.149,0.999,0.92,0.681,0.878,1.117,0.974,1.095,0.772,0.961,1.203,0.977,1.059,1.2,0.993,1.375,0.725,1.001,0.912,0.996,1.026,0.797,1.381,1.302,0.969,0.74,1.099,0.979,1.542,0.777,0.995,1.923,0.79,0.978,1.22,1.337,1.201,1.008,0.889,0.91,1.482,0.848,0.81,1.152,1.303,0.867,1.028,0.861,0.838,1.061,0.997 +NM_003350,0.9,0.757,1.49,0.796,1.135,0.798,0.403,0.511,1.866,1.332,0.976,0.53,0.635,1.09,1.186,1.332,0.852,1.024,1.512,0.725,0.649,0.772,0.956,0.971,0.459,1.183,1.428,1.099,0.305,0.927,1.332,0.846,2.56,1.061,0.384,1.061,1.0,1.01,1.19,0.449,1.486,0.724,0.706,1.122,1.083,1.489,1.141,0.738,1.319,0.906,0.779,0.846,1.258,1.688 +NM_003352,0.783,0.905,1.463,0.727,1.008,2.127,1.101,1.263,0.978,0.903,0.982,1.171,1.042,0.855,1.036,1.823,1.283,0.983,0.748,1.115,0.834,1.456,0.888,1.424,0.845,0.708,1.584,0.845,0.839,1.195,1.243,1.591,3.016,1.045,0.798,0.802,1.042,1.632,1.351,1.049,0.986,0.919,0.776,0.714,0.996,1.004,0.989,0.895,1.009,0.776,1.506,0.727,0.761,1.863 +NM_003353,0.985,0.992,1.001,1.045,1.016,0.99,0.928,1.027,0.898,0.919,0.898,0.893,0.91,0.956,1.081,1.184,1.083,0.939,0.949,1.142,0.942,0.956,0.971,1.074,1.001,1.047,0.978,0.947,0.91,0.991,0.978,1.075,1.037,1.048,1.059,1.131,0.98,0.997,1.168,0.934,0.936,0.977,1.048,1.066,1.103,0.993,0.846,0.897,0.945,1.142,1.02,1.065,1.009,0.956 +NM_003355,0.446,1.804,0.591,0.789,0.412,2.808,0.939,0.411,0.553,0.681,1.305,0.49,0.475,0.436,0.792,1.285,0.461,0.896,0.633,1.502,0.68,0.389,1.366,0.524,0.648,0.423,1.169,0.435,1.214,4.063,0.485,1.753,3.907,2.877,0.36,1.823,1.125,0.493,1.479,0.859,0.497,1.137,0.777,0.928,0.547,1.066,0.556,0.393,0.935,0.53,1.176,0.676,0.991,1.23 +NM_003356,1.002,1.032,1.004,0.954,1.044,0.976,0.957,1.007,0.931,1.005,0.891,1.092,1.037,0.868,0.899,1.001,0.999,0.922,0.891,0.913,1.022,0.864,0.937,0.988,0.931,0.96,0.945,0.893,0.997,0.886,1.098,1.075,1.164,0.887,1.144,0.982,1.015,1.041,1.064,0.977,0.994,0.892,1.009,0.939,1.008,0.985,1.12,1.045,0.931,0.998,1.143,0.918,0.941,1.094 +NM_003357,2.619,0.838,1.058,8.815,2.554,0.753,1.44,3.218,5.465,1.83,0.737,1.53,2.35,1.78,1.68,0.995,0.953,7.399,3.088,16.69,0.908,2.466,0.873,8.061,0.93,3.494,0.91,3.081,0.926,0.855,2.112,0.668,1.143,5.137,2.141,0.834,0.746,0.893,0.77,0.728,1.172,0.808,0.643,1.034,1.036,0.751,1.086,3.011,0.606,0.942,1.348,1.885,0.919,1.146 +NM_003358,0.826,0.963,1.058,0.544,1.677,1.335,1.036,1.365,2.009,1.286,0.997,0.868,0.758,0.968,0.956,0.88,0.989,1.787,1.227,0.631,0.77,0.962,0.713,1.549,0.736,0.545,1.595,1.22,0.626,1.179,1.724,0.678,0.549,1.43,1.385,0.368,1.661,1.08,1.153,1.104,1.525,1.18,0.836,0.591,1.379,0.818,1.387,0.765,0.866,0.891,0.856,1.542,1.058,0.879 +NM_003359,0.519,1.519,0.748,1.169,0.632,2.764,1.168,0.754,1.027,0.439,1.521,0.794,0.766,0.733,1.161,2.237,0.443,1.221,0.578,1.395,0.344,1.479,1.946,0.702,0.722,0.731,0.79,1.103,0.803,2.491,0.89,0.845,0.984,2.496,0.174,0.734,2.087,1.234,2.623,0.675,0.918,2.33,0.968,0.54,0.494,1.146,0.764,0.673,2.48,0.616,1.547,0.523,0.4,1.113 +NM_003360,0.632,1.084,0.652,1.029,0.56,1.427,1.103,0.663,0.683,0.535,1.594,0.594,0.576,0.649,1.159,1.798,0.487,0.929,0.572,1.207,0.596,0.635,1.923,0.644,0.839,0.579,0.597,0.585,0.719,1.994,0.601,0.797,1.522,1.607,0.552,1.27,1.702,0.657,1.877,1.156,0.581,1.216,0.939,1.924,0.625,1.26,1.288,0.564,1.484,0.661,1.468,0.676,0.52,0.738 +NM_003361,0.827,0.933,0.934,1.002,0.922,0.92,1.234,1.079,0.998,0.945,0.953,1.04,1.181,1.077,1.13,0.931,0.967,1.059,0.968,1.06,0.868,1.104,1.078,1.057,0.935,0.941,1.013,1.218,1.316,1.046,1.101,0.948,0.974,0.936,1.014,1.029,0.917,1.024,1.1,0.998,0.819,1.061,1.204,1.041,0.962,0.911,1.068,0.974,0.948,0.886,1.041,0.848,1.048,0.986 +NM_003362,1.093,0.947,0.951,0.999,0.862,1.002,0.889,1.293,1.001,0.947,0.989,1.075,0.986,0.797,1.132,1.053,1.142,0.849,0.935,1.013,0.872,0.973,0.944,0.963,0.883,1.09,0.922,1.073,0.793,1.15,1.079,1.025,1.034,0.919,0.984,1.126,0.965,1.096,0.94,0.997,1.062,1.006,0.975,0.818,1.051,0.923,0.994,1.06,0.915,0.972,1.046,0.875,1.006,0.844 +NM_003363,0.927,0.941,1.301,0.641,0.985,1.089,0.811,0.557,1.23,1.21,0.788,0.979,0.722,0.804,0.912,0.991,1.096,1.132,1.26,0.933,0.772,1.204,1.218,1.261,0.753,0.988,1.26,1.005,0.704,1.52,1.144,0.97,0.75,1.146,0.634,1.006,0.974,1.04,1.337,1.182,1.191,1.103,0.694,1.016,1.207,0.809,0.999,0.817,0.916,0.784,1.041,0.862,0.985,1.445 +NM_003364,2.883,1.257,2.467,1.595,8.067,1.2690000000000001,1.12,4.23,2.992,4.011,1.4689999999999999,2.524,2.4349999999999996,1.764,2.731,2.719,2.322,3.1289999999999996,2.841,1.646,1.827,3.05,1.915,3.442,1.108,2.83,2.271,6.265,0.988,1.439,3.6289999999999996,1.541,1.462,1.239,11.534,1.843,1.7469999999999999,5.375,2.1029999999999998,2.324,3.394,1.432,1.517,1.8050000000000002,3.8979999999999997,1.615,3.712,5.1610000000000005,1.895,2.999,1.762,2.248,1.951,1.858 +NM_003366,0.623,0.924,0.928,0.89,0.753,1.337,0.63,0.316,1.07,0.844,1.792,0.581,0.591,0.474,1.101,2.473,0.787,1.057,1.335,1.004,0.437,0.649,1.311,0.941,0.793,0.823,1.292,0.759,0.43,1.351,0.757,0.81,2.004,1.463,0.196,0.681,1.909,0.755,1.477,0.506,1.056,1.28,1.092,0.869,0.891,1.51,0.918,0.569,1.272,0.749,1.223,0.602,0.886,1.108 +NM_003367,1.095,1.073,1.054,0.793,0.998,1.117,0.719,0.823,0.923,0.942,0.842,1.038,1.101,0.966,0.939,0.899,1.218,0.93,1.202,0.827,0.999,1.193,1.033,1.214,0.948,1.167,1.219,0.887,1.052,0.968,1.012,1.064,1.151,1.05,0.892,0.833,1.025,1.29,1.277,1.029,0.927,1.015,0.918,1.121,0.964,0.834,0.996,1.323,0.86,0.995,0.828,0.841,0.859,0.943 +NM_003368,0.548,1.103,1.295,0.587,0.875,1.367,0.858,0.934,1.238,1.002,0.704,1.196,0.849,0.583,0.911,1.572,0.838,0.992,0.731,0.975,0.471,1.126,1.195,1.329,0.616,0.56,1.619,0.821,0.684,1.011,1.024,1.401,4.564,1.35,0.422,0.628,0.899,1.022,1.502,0.948,1.032,1.118,0.701,1.022,1.136,0.754,0.891,0.756,1.204,0.801,1.13,0.82,0.604,2.825 +NM_003369,0.87,1.027,0.995,0.938,0.92,1.16,0.944,0.722,0.848,0.89,1.137,0.835,0.858,0.755,1.04,1.156,0.84,0.983,0.917,1.067,0.772,0.826,1.039,0.878,0.965,0.867,1.075,0.946,0.947,1.433,0.976,2.024,1.686,1.247,0.851,1.038,1.047,0.936,1.345,1.026,0.927,1.096,0.828,0.89,0.943,1.043,1.015,0.782,0.882,0.995,1.088,0.875,0.899,1.246 +NM_003370,0.212,1.052,0.513,0.788,0.287,1.829,0.987,0.185,0.452,0.506,1.513,0.405,0.281,0.248,0.884,1.534,0.389,0.988,0.405,1.402,0.168,0.311,1.846,0.506,0.672,0.307,0.57,0.309,0.659,1.789,0.374,0.963,1.538,1.474,0.15,1.401,1.538,0.316,1.61,1.387,0.463,1.506,1.298,1.536,0.46,1.412,1.196,0.303,1.438,0.343,1.459,1.14,0.482,1.328 +NM_003371,1.099,1.224,1.006,1.172,0.83,0.95,1.223,0.863,1.003,1.15,1.04,0.792,0.991,1.033,0.964,1.052,1.046,1.01,0.897,1.016,1.015,0.948,0.95,1.117,0.95,1.033,0.992,1.036,0.728,0.984,0.999,0.949,0.863,0.984,1.116,1.048,0.949,1.019,1.105,0.922,0.982,0.957,1.126,1.017,0.86,1.054,1.097,1.001,0.934,1.022,1.076,0.967,0.896,0.932 +NM_003372,0.676,0.979,1.146,0.739,0.906,1.247,0.665,0.771,1.14,0.837,1.18,1.147,0.885,0.67,0.99,1.956,0.756,0.864,1.488,0.834,0.564,0.97,1.152,1.266,0.54,0.758,1.458,0.893,0.425,1.158,0.929,1.212,3.442,1.463,0.154,1.123,1.169,0.887,1.445,0.546,1.145,1.047,0.551,1.751,1.008,1.16,1.194,0.882,1.214,0.766,0.96,0.933,0.897,2.117 +NM_003373,0.588,0.959,1.212,0.812,0.928,1.12,0.744,0.448,1.293,1.035,1.052,0.524,0.486,0.782,0.962,1.371,0.872,0.881,0.878,0.957,0.717,0.546,1.399,0.93,0.602,0.677,1.263,0.826,0.436,1.46,1.089,2.163,2.924,1.371,0.672,1.164,0.948,0.918,1.443,0.832,1.223,1.138,0.796,1.107,1.044,1.088,0.777,0.587,0.808,0.732,1.411,1.205,1.265,3.254 +NM_003374,0.597,0.818,0.958,0.808,0.663,1.848,0.738,0.543,1.55,0.883,2.388,0.779,0.487,0.635,1.202,3.101,0.525,0.608,1.142,1.34,0.555,0.324,1.663,1.045,0.727,0.594,0.782,0.879,0.203,1.63,1.187,0.686,2.304,1.893,0.401,0.952,1.575,0.544,1.549,0.568,0.918,1.125,0.925,0.956,0.771,1.684,0.995,0.357,1.764,0.588,1.376,0.868,0.863,2.25 +NM_003375,1.055,0.641,1.245,0.839,1.368,0.92,0.535,0.875,1.609,1.372,1.12,1.125,0.818,0.716,1.066,1.217,0.879,1.096,1.482,0.644,0.676,1.266,0.886,1.595,0.435,1.442,1.109,1.575,0.384,0.712,1.247,0.52,1.186,0.805,1.288,1.241,1.061,1.606,1.314,0.487,1.355,0.766,0.788,0.871,1.537,1.102,1.106,1.135,1.213,1.035,0.939,1.092,1.192,1.406 +NM_003376,1.05,1.029,1.079,1.066,0.938,0.985,0.998,0.953,1.013,0.974,0.839,0.917,0.942,0.895,1.076,0.98,1.004,0.967,0.93,1.015,0.962,0.908,1.043,1.04,0.993,1.082,1.092,1.052,0.824,1.05,0.935,1.03,0.924,0.99,1.002,0.93,0.951,1.022,1.134,0.975,0.947,0.973,0.985,0.837,0.963,0.845,0.984,1.007,1.099,0.971,1.106,0.876,1.023,0.968 +NM_003377,0.762,0.95,1.147,0.838,1.141,1.166,0.741,0.938,1.144,1.151,0.555,1.286,0.955,0.838,0.766,0.81,0.868,0.889,1.562,0.722,1.209,1.403,0.831,1.254,0.9,1.07,1.194,1.231,0.941,1.357,1.066,2.79,1.811,1.249,0.69,0.784,0.66,1.623,1.097,1.247,1.199,0.998,0.548,0.873,1.062,0.574,0.974,1.138,0.543,1.052,0.63,0.801,0.85,1.406 +NM_003378,1.028,1.084,0.956,0.999,0.908,1.056,0.999,1.077,1.111,0.974,1.008,1.031,0.983,1.092,1.086,1.053,0.967,0.922,1.084,1.128,1.031,0.97,0.93,0.946,1.007,0.974,0.998,0.979,0.783,1.044,1.032,1.007,0.956,0.986,0.917,0.935,1.048,0.992,1.087,1.001,0.947,1.08,1.423,0.971,1.021,0.858,0.956,1.019,1.003,0.899,1.074,0.905,0.914,0.967 +NM_003379,0.695,0.97,0.832,0.709,0.895,1.293,0.654,0.451,1.343,1.111,1.191,0.885,0.39,0.551,0.911,1.493,0.575,1.028,0.775,1.38,0.539,0.841,1.273,0.899,0.894,0.783,0.739,1.056,0.558,1.121,1.02,0.854,0.736,1.088,0.313,0.954,1.223,0.677,1.994,0.545,0.905,1.002,1.57,0.874,1.072,1.363,1.202,0.718,1.472,0.581,1.473,1.155,0.867,1.586 +NM_003380,0.301,1.456,0.962,0.537,0.439,1.694,0.945,0.245,0.505,0.641,0.788,0.258,0.331,0.278,0.816,1.297,0.537,0.376,0.383,1.045,0.456,0.258,2.495,0.472,0.894,0.274,1.162,0.925,0.163,3.301,0.484,7.884,2.312,3.76,0.157,0.712,0.601,0.765,2.526,3.376,1.095,3.371,0.558,0.5,0.578,0.958,0.699,0.213,0.576,0.389,1.829,1.765,0.785,4.085 +NM_003382,0.965,0.892,0.961,0.918,1.026,1.017,1.099,0.962,0.906,0.991,0.845,1.252,0.921,1.118,0.898,0.901,1.004,0.965,0.953,0.96,1.081,0.809,1.057,1.051,1.023,1.067,0.92,1.094,1.92,1.116,1.077,1.083,0.917,1.169,0.969,1.066,0.971,0.862,1.098,1.031,0.972,1.193,1.084,0.829,1.003,0.905,0.943,1.274,0.983,0.96,1.081,0.894,1.0,1.105 +NM_003383,1.205,0.765,2.698,0.744,1.76,1.026,0.741,0.88,1.894,1.26,0.854,1.243,0.881,1.354,1.305,0.843,1.705,1.318,2.372,0.841,1.0,1.264,0.752,1.839,0.803,0.948,2.263,1.846,0.7,0.793,1.515,1.102,1.346,1.351,1.169,0.619,0.821,1.684,0.798,0.714,1.876,0.907,0.558,0.951,1.474,0.671,1.289,1.104,0.506,1.56,1.0,0.864,1.291,0.934 +NM_003384,0.798,1.128,1.045,0.82,0.943,1.065,0.904,1.067,1.117,1.052,0.863,1.003,0.772,0.981,0.968,1.73,0.947,0.95,1.136,0.974,0.794,0.921,1.155,1.247,0.79,0.784,0.88,0.896,0.843,0.987,1.052,1.096,2.031,1.067,0.766,1.077,0.939,0.883,1.494,0.951,0.853,0.925,0.724,0.911,0.966,0.97,1.048,0.797,1.203,0.864,0.99,0.855,1.021,1.805 +NM_003385,1.219,0.653,3.462,0.853,2.266,0.739,0.599,2.237,2.815,1.979,0.711,3.082,2.13,1.328,1.802,1.286,1.745,1.367,2.774,0.724,1.133,2.372,0.889,2.797,0.564,1.093,2.999,2.074,0.825,0.633,2.816,0.651,7.108,0.625,0.512,0.926,0.521,3.067,0.629,0.585,2.717,0.785,0.969,0.678,2.078,0.587,1.748,1.712,0.559,1.752,0.859,1.129,1.48,0.818 +NM_003387,0.83,1.076,1.602,0.885,0.798,1.277,1.575,0.836,0.961,0.791,0.912,0.821,0.882,0.978,1.076,1.134,0.88,1.022,0.74,1.243,0.68,0.912,1.313,1.05,1.012,0.728,1.394,0.895,0.661,1.554,0.803,4.168,1.245,1.345,0.652,0.709,1.045,0.912,1.61,2.73,1.027,1.748,0.719,0.644,1.077,0.903,0.888,0.719,0.735,0.769,1.159,1.346,0.78,2.058 +NM_003388,1.139,1.089,1.109,1.149,0.856,0.972,1.026,0.915,1.109,1.044,1.111,0.968,0.922,0.894,0.927,1.045,0.95,0.866,0.921,0.968,0.925,0.97,1.045,1.054,1.05,0.969,1.225,1.157,1.013,1.074,0.979,0.949,1.018,1.036,0.957,0.981,1.057,1.035,1.084,0.971,1.005,0.761,0.945,0.956,0.904,1.004,1.173,0.986,0.975,0.978,1.041,0.872,1.015,0.83 +NM_003389,0.912,1.079,0.973,1.236,0.938,1.001,0.858,1.077,1.127,1.01,1.014,0.812,1.017,1.001,0.97,0.936,1.015,0.955,0.935,0.996,1.179,0.921,0.855,0.974,0.99,1.011,0.985,1.097,0.833,0.922,1.068,1.049,1.041,0.865,1.003,1.001,1.016,0.956,1.07,0.961,0.841,1.017,1.003,1.109,1.062,0.986,0.971,1.053,1.013,0.959,0.975,1.005,0.828,0.875 +NM_003390,0.827,1.086,1.508,0.758,1.034,0.895,0.628,0.898,1.185,1.097,0.707,0.864,0.787,1.007,1.047,1.069,0.948,0.899,1.203,0.905,0.954,0.809,1.178,1.206,0.735,0.874,1.445,1.162,0.664,0.984,1.323,0.901,1.821,1.034,0.75,1.075,0.794,1.016,1.044,1.119,1.215,0.911,1.774,0.891,1.13,0.986,0.973,1.039,0.876,0.87,1.026,0.833,1.858,1.951 +NM_003391,1.148,0.997,0.974,1.035,1.008,1.047,1.037,0.844,0.966,1.017,0.934,1.107,1.029,0.952,1.075,0.795,0.983,0.975,0.917,0.879,1.056,0.909,1.004,0.839,1.038,1.044,1.026,1.032,0.836,1.055,1.002,3.855,1.021,0.968,1.126,1.005,1.045,0.994,0.998,1.065,1.023,0.893,0.967,1.09,0.982,0.977,0.986,1.052,0.935,0.922,0.956,1.156,0.982,1.054 +NM_003393,0.972,1.009,1.038,1.056,1.13,0.898,1.056,1.013,1.013,0.949,1.011,1.049,0.986,0.85,1.016,0.879,0.92,1.077,0.852,0.912,1.059,1.066,1.118,1.054,0.907,1.001,0.991,1.042,0.997,1.032,0.975,0.965,0.965,1.045,1.016,0.953,1.139,1.169,1.06,1.143,0.989,0.93,1.031,0.963,1.012,0.889,1.227,0.968,0.994,0.968,0.955,1.079,1.093,0.962 +NM_003394,1.168,0.916,0.929,1.056,0.909,1.063,0.844,1.116,0.956,1.0,0.907,1.133,0.965,1.174,1.086,0.943,1.073,0.963,1.123,1.03,1.023,0.956,1.027,1.071,0.985,1.201,0.973,1.05,1.058,0.887,1.141,1.071,1.009,1.066,0.986,0.952,1.065,1.127,1.023,1.142,0.982,0.899,1.05,1.031,1.108,0.978,0.982,1.003,1.0,0.961,0.881,0.973,0.912,0.943 +NM_003395,1.006,0.966,0.96,1.055,1.139,0.99,1.022,1.235,0.865,0.937,0.773,1.071,1.053,1.14,1.118,0.994,1.028,1.001,0.896,1.051,1.025,1.191,1.098,0.994,0.995,1.007,0.999,0.989,0.976,0.899,0.911,1.004,1.067,1.021,1.046,1.26,1.052,0.975,0.999,0.981,0.945,0.943,0.838,1.103,1.065,0.988,1.055,0.899,1.004,1.096,0.861,0.985,0.946,1.034 +NM_003396,0.921,1.026,1.147,1.074,1.006,0.896,0.865,1.0,0.862,0.929,0.881,0.909,1.024,0.896,1.049,0.849,1.019,0.932,0.965,1.107,0.943,0.979,0.977,0.964,1.015,1.037,0.923,1.033,1.06,1.01,0.887,0.947,1.001,0.91,1.187,0.989,0.937,1.011,0.972,0.912,1.061,1.145,0.78,0.911,1.058,1.137,1.0,1.077,1.069,1.002,1.078,0.852,0.984,1.016 +NM_003400,0.776,0.916,1.374,0.784,0.878,0.975,0.552,0.539,1.178,0.754,0.822,0.955,0.733,0.766,1.197,1.605,0.885,0.841,1.53,0.891,0.559,1.106,1.378,1.171,0.485,0.889,1.669,0.862,0.499,1.026,1.065,1.43,3.212,1.262,0.235,0.893,0.944,0.995,1.507,1.197,1.068,0.955,0.623,1.452,0.963,1.005,0.936,0.849,0.975,0.973,1.074,1.048,0.994,2.256 +NM_003403,0.598,0.941,1.149,0.482,0.778,1.112,0.585,0.641,1.094,0.899,0.944,0.903,0.578,0.709,1.025,1.329,0.758,1.1,1.357,1.005,0.392,0.972,1.305,1.121,0.539,0.518,1.022,0.924,0.516,1.187,0.867,1.32,1.215,1.309,0.488,0.946,1.302,1.016,1.267,1.232,0.91,1.212,0.582,1.402,0.819,1.122,1.274,0.424,0.899,0.562,1.007,0.826,0.788,1.079 +NM_003404,0.745,1.063,0.926,0.956,0.886,0.831,0.971,0.667,0.999,0.905,1.026,0.559,0.784,0.812,1.156,1.461,0.796,1.024,1.154,1.141,0.874,0.765,1.383,0.795,0.837,1.054,0.936,0.919,1.009,1.059,0.977,1.094,1.516,1.408,0.781,0.861,0.987,0.851,1.427,1.015,1.004,1.002,0.823,1.426,0.816,1.056,0.981,0.834,0.94,0.946,1.113,0.892,0.899,1.69 +NM_003405,0.27,1.569,0.785,0.967,0.373,1.96,1.093,0.213,0.465,0.42,1.296,0.446,0.331,0.316,0.775,1.564,0.481,1.36,0.592,1.182,0.347,0.37,1.441,0.519,0.997,0.366,0.876,0.364,1.075,1.745,0.365,1.187,1.168,2.437,0.0864,0.904,2.057,0.403,1.879,0.742,0.615,1.285,0.818,0.588,0.532,1.225,0.628,0.316,0.965,0.52,1.574,0.736,0.683,1.146 +NM_003406,0.976,1.19,1.131,0.795,1.12,1.06,0.834,0.89,0.918,1.072,1.107,1.024,1.004,1.025,0.916,1.217,0.944,1.131,1.038,1.182,0.957,0.83,1.174,0.961,0.873,0.96,0.788,1.05,0.753,1.012,1.019,0.946,1.085,1.069,0.93,0.938,0.962,0.821,1.036,1.009,0.98,0.884,0.944,1.109,0.979,1.127,1.052,0.938,1.263,1.021,0.948,1.031,1.115,0.996 +NM_003407,2.176,0.401,2.161,1.051,2.621,0.664,0.378,4.963,2.684,1.272,0.565,1.525,2.025,0.923,1.622,1.088,2.662,1.041,2.32,0.693,0.769,2.339,0.854,1.61,0.206,1.444,1.607,1.588,0.214,0.631,3.153,0.578,1.207,0.525,5.267,0.498,0.531,3.759,1.127,3.789,2.521,0.817,0.676,0.51,2.172,0.763,1.764,2.061,1.026,1.577,0.802,0.724,1.935,0.996 +NM_003409,0.832,1.3,1.279,0.916,0.879,1.013,0.798,0.703,1.126,0.83,1.081,0.796,0.813,0.787,0.854,1.207,0.954,0.945,0.921,1.222,0.728,0.729,1.311,0.873,0.832,0.917,1.136,0.998,0.649,1.275,0.86,1.656,1.103,1.345,0.645,0.934,0.961,0.906,1.057,0.945,1.102,1.102,0.668,1.233,1.012,1.025,0.969,0.741,0.873,0.964,1.118,1.002,0.887,1.231 +NM_003410,1.028,1.01,1.057,0.957,1.002,0.906,1.039,1.008,1.088,1.005,1.088,0.91,0.988,0.978,1.079,0.994,1.03,1.057,1.039,0.787,0.93,1.015,0.989,1.005,0.981,1.002,1.081,0.907,0.936,1.069,0.965,1.047,0.824,1.104,0.993,0.989,0.968,1.001,0.941,0.915,1.152,0.994,1.036,1.125,0.974,0.769,0.988,1.041,0.956,0.98,0.999,1.164,1.045,0.975 +NM_003411,1.149,0.964,1.09,0.869,1.08,1.006,0.851,0.972,1.143,1.041,0.951,1.041,1.002,0.987,1.046,1.118,0.911,1.195,1.034,1.056,1.038,1.016,1.0,0.958,1.003,1.01,1.035,1.044,0.975,0.959,1.043,1.014,1.16,0.997,0.903,1.027,1.044,0.98,0.884,0.953,0.949,1.012,1.005,0.992,1.0,0.94,0.972,1.048,0.943,0.932,1.041,0.945,1.161,1.016 +NM_003412,0.859,0.92,1.083,1.109,0.88,0.999,0.776,1.037,0.973,1.02,0.992,0.889,1.06,1.154,0.907,0.901,0.905,1.015,1.176,1.001,1.133,1.01,0.964,1.175,1.117,0.811,1.029,1.025,1.014,0.991,0.943,1.495,1.096,0.889,0.916,0.919,1.186,1.147,1.122,0.949,0.872,1.027,0.818,1.004,1.039,1.017,1.005,1.06,1.019,0.832,0.882,0.965,0.971,1.192 +NM_003413,0.934,1.007,0.998,0.999,0.97,0.975,0.964,0.934,0.892,1.235,1.025,1.016,1.03,0.921,0.905,0.9,1.092,1.071,0.946,1.032,1.001,1.025,1.084,0.996,0.892,1.089,0.955,1.083,1.196,1.089,0.996,0.847,0.994,0.876,1.009,0.941,0.973,1.023,1.048,0.935,0.991,0.964,1.142,1.024,0.963,1.001,1.107,1.198,1.006,1.041,0.903,1.156,0.892,1.076 +NM_003414,0.82,0.918,1.148,0.939,0.941,1.002,0.863,0.888,0.951,0.965,1.044,0.88,0.828,0.92,0.994,1.007,0.819,0.85,1.042,1.115,0.852,0.77,1.05,1.004,0.813,0.824,1.098,1.033,0.734,0.94,1.049,1.13,1.975,1.05,0.946,1.069,0.931,0.902,1.222,1.171,1.161,0.835,0.762,0.844,0.919,1.058,0.879,0.713,1.017,0.732,1.057,0.757,0.878,1.884 +NM_003416,0.916,1.138,1.158,0.862,0.88,1.053,0.865,0.767,1.132,0.874,1.092,0.92,0.917,0.866,1.257,1.148,0.859,0.965,1.073,1.057,0.814,0.99,1.035,0.999,0.813,0.906,1.2,0.955,0.592,1.027,1.001,1.31,1.622,1.198,0.78,1.033,0.971,1.003,0.927,1.268,0.997,1.059,0.943,1.098,0.906,0.936,0.945,0.978,1.099,0.891,0.825,0.856,1.049,1.474 +NM_003417,0.978,1.107,1.252,0.753,1.108,1.099,0.794,0.938,1.069,1.158,1.045,0.987,0.841,0.791,1.015,1.033,0.95,0.88,1.227,1.095,0.758,0.976,1.243,1.206,0.765,0.878,1.17,1.022,0.812,1.148,1.121,1.258,1.851,1.157,0.694,0.83,0.97,0.991,1.056,1.14,1.181,1.119,0.739,0.938,0.956,0.948,0.938,0.911,0.988,0.815,0.959,0.922,0.907,1.268 +NM_003418,0.758,1.093,1.368,0.692,1.005,0.893,0.568,0.479,1.248,0.944,1.039,0.469,0.62,0.717,1.131,1.323,0.867,0.995,1.18,0.806,0.58,0.511,1.236,0.815,0.662,0.782,1.079,1.138,0.345,1.237,1.136,1.245,1.81,1.289,0.523,0.741,1.031,1.125,1.477,0.751,1.312,1.061,0.812,1.399,0.953,0.976,0.914,0.66,1.092,0.782,0.965,0.643,0.857,1.532 +NM_003420,0.847,0.827,1.089,0.783,0.991,1.058,0.685,0.749,1.194,1.264,0.973,1.078,0.856,0.871,0.986,1.322,1.067,0.683,1.147,0.83,0.755,1.17,1.188,1.267,0.639,1.022,1.047,1.014,0.642,1.14,0.938,0.992,1.646,0.972,0.54,0.942,0.987,1.037,1.223,0.864,1.12,1.013,1.082,0.896,1.06,1.03,0.887,0.967,0.881,0.94,0.953,1.095,1.014,1.902 +NM_003423,0.884,0.875,0.994,1.017,1.025,0.992,0.669,0.93,1.026,0.944,0.98,0.985,1.045,0.882,0.88,1.079,0.945,0.976,0.817,1.001,1.139,0.951,0.892,1.077,1.043,1.106,1.03,0.833,1.284,0.945,1.049,0.972,1.159,1.003,0.988,0.972,1.045,1.045,1.07,0.915,1.146,1.201,1.132,1.13,1.003,0.977,0.988,0.977,0.904,0.923,1.129,1.073,1.114,1.086 +NM_003426,1.047,1.04,0.907,1.004,0.911,0.999,1.015,1.048,1.095,0.929,0.99,1.033,1.029,0.856,0.826,1.039,1.075,0.955,1.07,1.068,1.208,1.136,1.064,0.856,1.005,0.954,0.983,1.029,1.661,1.097,0.908,1.025,1.217,0.985,0.955,0.919,1.017,1.013,1.045,0.997,0.93,0.933,0.829,1.066,1.008,0.956,1.037,1.06,0.993,0.934,0.847,1.059,1.09,1.0 +NM_003427,0.555,1.231,1.22,0.523,0.902,1.256,0.602,0.638,1.188,0.864,0.787,0.896,0.708,0.676,0.899,1.241,1.198,0.868,1.029,1.237,0.497,0.77,1.099,1.065,0.574,0.737,1.142,0.838,0.538,1.043,0.867,2.408,1.705,1.02,0.42,0.954,0.849,0.906,1.315,0.904,1.067,1.185,0.694,1.081,0.993,1.065,1.162,0.729,1.108,0.723,1.136,0.632,0.779,2.029 +NM_003429,1.036,1.039,1.232,1.093,1.035,0.914,0.88,1.074,0.961,1.001,1.062,1.022,1.001,0.969,0.786,1.018,1.079,0.949,0.82,0.846,1.16,0.92,1.089,0.924,1.018,0.98,1.038,1.163,0.773,0.937,1.1,0.94,1.057,0.994,1.044,0.92,0.986,1.089,0.953,1.007,1.035,1.041,0.823,1.09,1.158,0.953,0.91,0.912,1.033,1.001,1.013,0.967,0.894,0.875 +NM_003431,0.889,1.09,1.115,1.047,0.875,1.151,0.907,0.942,0.874,0.892,1.096,1.032,0.965,1.108,1.127,1.24,1.076,0.96,0.991,0.859,1.0,1.057,1.09,1.036,0.929,0.997,0.937,1.023,0.988,0.867,1.0,0.939,1.304,1.058,0.957,0.961,1.085,1.024,0.989,1.023,0.946,1.112,0.739,1.031,0.942,1.007,1.016,1.003,1.291,0.977,1.101,0.996,1.043,0.979 +NM_003433,0.966,1.071,1.048,1.108,1.224,0.977,1.012,1.04,1.119,1.108,1.015,0.855,1.068,1.07,1.061,0.836,0.966,0.964,1.159,0.987,0.989,0.751,0.943,1.115,0.928,1.076,1.067,1.114,0.996,1.157,1.202,0.947,0.964,1.289,0.992,0.915,0.955,1.06,1.121,1.01,1.289,0.803,0.824,0.981,0.976,1.152,0.978,1.169,0.846,0.92,0.993,1.124,0.979,1.129 +NM_003434,0.989,0.97,1.148,0.794,0.971,0.97,0.897,1.007,1.184,0.898,0.834,0.876,0.796,0.878,0.88,0.929,0.997,0.866,0.996,1.163,0.842,0.98,1.419,1.071,0.943,0.923,1.113,0.958,0.705,1.175,0.904,1.455,1.422,1.098,0.711,0.95,0.858,1.268,1.039,1.132,1.246,0.986,1.172,1.2,1.123,0.914,0.743,0.963,0.806,0.994,0.995,0.913,1.055,1.935 +NM_003436,1.024,1.062,0.976,0.855,0.966,0.886,1.072,1.063,1.195,1.108,0.894,1.018,0.978,1.164,1.306,1.078,1.032,0.961,1.109,0.957,1.105,1.004,0.921,1.031,0.957,1.011,0.908,0.979,1.431,1.111,0.923,1.417,0.981,1.026,1.03,0.892,0.965,0.874,0.961,1.07,1.319,1.104,1.204,0.967,0.99,0.892,0.924,1.01,1.0,0.982,1.038,0.9,0.848,1.091 +NM_003440,0.767,1.057,1.015,0.777,1.063,1.323,0.886,1.202,1.144,0.994,0.801,1.002,0.917,0.788,1.096,1.513,0.984,0.961,0.822,0.951,0.732,0.933,1.055,1.117,0.838,0.79,1.069,1.061,0.881,1.045,1.117,1.036,1.245,1.263,0.736,0.851,0.859,1.026,1.028,0.913,1.005,1.133,0.907,0.796,0.857,1.004,0.889,0.927,1.042,0.836,1.002,0.892,0.751,1.283 +NM_003441,0.94,1.032,1.001,1.044,1.162,0.915,0.988,1.019,0.989,1.064,0.92,0.985,1.08,0.924,1.034,1.128,0.894,0.999,1.049,0.976,1.017,1.021,0.851,1.072,0.937,1.053,0.938,1.041,0.924,1.028,0.947,0.959,1.001,0.958,1.144,1.109,1.067,0.92,1.065,1.087,0.904,0.829,0.937,0.98,1.125,1.03,1.149,1.258,0.989,1.078,1.196,0.954,0.966,1.03 +NM_003442,0.742,0.84,1.116,0.878,0.937,1.17,0.744,0.911,1.26,0.913,1.065,0.901,0.731,1.009,1.078,1.12,0.895,0.904,1.173,0.887,1.019,0.935,1.103,0.967,0.782,0.843,1.226,0.967,0.669,1.165,1.079,0.874,1.463,1.126,0.913,1.011,0.935,0.927,1.066,1.013,1.104,0.912,0.992,0.797,0.82,0.871,1.071,0.933,0.873,0.845,0.979,0.84,0.966,1.383 +NM_003443,1.094,0.892,1.007,1.016,0.84,0.907,0.777,0.549,1.024,0.961,0.928,0.835,0.77,0.734,1.017,1.095,1.074,0.804,1.078,0.929,0.813,1.003,0.997,1.144,0.968,1.213,1.258,0.841,0.87,1.052,0.915,1.226,1.258,1.281,0.936,0.881,0.827,0.915,1.638,1.249,0.979,1.004,0.997,1.39,1.122,0.838,0.848,1.114,0.742,1.107,0.789,0.815,1.09,1.63 +NM_003445,1.002,0.989,1.027,0.945,0.896,0.969,1.071,1.019,0.936,1.014,1.036,1.171,1.016,1.006,0.885,0.997,0.948,0.982,1.037,0.988,1.099,1.004,0.93,0.853,0.958,1.09,1.045,1.006,0.68,0.913,0.972,0.948,0.959,0.919,0.92,0.895,1.19,0.903,1.026,1.015,0.931,1.032,0.813,1.014,0.882,1.017,1.097,1.022,1.028,0.982,0.979,0.918,0.982,0.877 +NM_003446,1.05,0.951,0.942,1.035,1.006,1.004,0.899,0.875,0.895,1.12,0.967,1.081,0.875,0.782,0.882,1.049,0.886,0.898,1.0,0.993,0.897,1.013,0.943,0.996,1.013,0.931,1.047,1.034,0.702,0.927,0.883,1.076,0.855,1.073,1.131,1.09,0.956,1.323,1.055,1.009,1.094,0.913,0.873,0.943,0.903,0.975,1.013,1.068,1.083,0.976,1.076,1.073,0.819,1.179 +NM_003447,0.787,1.278,1.059,0.786,0.957,1.237,0.767,1.01,1.098,0.913,0.831,0.83,0.671,0.626,1.049,0.949,0.861,0.819,1.029,0.981,0.672,1.138,1.08,0.943,0.681,0.78,1.135,1.012,0.727,0.888,0.765,0.846,1.782,1.056,0.969,1.169,1.036,1.079,1.126,0.954,1.083,1.037,1.776,0.958,0.914,1.616,1.15,0.773,1.359,0.844,1.025,0.93,0.813,2.77 +NM_003449,0.913,0.846,0.948,0.973,0.883,1.172,0.807,0.734,0.869,0.962,1.016,0.864,0.852,0.844,0.758,1.206,1.028,0.923,1.107,0.935,1.139,0.859,0.996,0.851,1.06,1.082,0.809,0.89,0.627,1.19,0.825,1.314,1.669,1.141,0.695,1.172,0.995,0.902,1.41,0.919,0.833,1.032,0.884,1.565,1.021,0.995,0.653,0.783,1.028,0.865,0.954,0.697,1.16,1.496 +NM_003450,1.057,1.074,0.976,0.829,0.789,0.971,0.73,1.023,0.998,1.096,1.012,0.952,0.935,0.899,0.81,0.979,0.999,0.956,0.993,0.933,1.08,0.951,0.976,1.02,0.96,1.09,1.14,1.172,0.696,0.971,1.004,1.169,1.212,1.109,0.911,1.055,0.951,1.096,1.041,1.012,0.949,1.13,0.881,0.945,0.935,0.872,0.918,0.867,0.926,1.026,0.943,0.923,1.159,1.035 +NM_003451,0.908,0.958,1.082,1.059,0.982,1.032,0.798,0.868,0.882,1.0,0.993,0.888,0.989,1.347,0.879,1.053,0.944,1.017,0.984,1.16,1.063,0.798,0.92,0.96,1.067,0.892,0.86,0.928,0.909,1.162,0.899,1.078,1.146,1.116,1.075,1.025,1.125,1.078,1.053,0.957,1.062,1.091,1.161,1.15,0.897,0.972,0.92,1.048,0.926,0.908,1.025,0.957,0.868,1.129 +NM_003452,0.611,1.018,1.079,0.825,0.64,1.638,0.767,0.616,0.858,0.671,1.494,0.661,0.63,0.85,1.07,1.443,0.692,0.898,0.822,1.137,0.658,0.637,1.329,0.805,0.774,0.707,0.986,0.753,0.649,1.379,0.755,2.123,1.856,1.797,0.526,0.733,1.352,0.692,1.174,1.044,0.826,1.475,0.8,1.005,0.738,1.135,0.746,0.671,0.936,0.701,1.229,1.078,0.873,1.859 +NM_003454,1.033,1.018,1.007,1.143,1.155,0.92,0.937,1.036,1.055,0.834,0.995,1.095,1.076,0.954,0.801,0.988,0.96,1.037,1.209,0.967,1.041,1.143,1.131,1.018,1.019,0.954,1.081,1.178,1.175,1.049,0.938,1.062,1.029,0.986,0.893,0.912,1.021,1.018,1.053,0.957,1.045,0.893,0.925,1.045,0.983,1.174,1.07,0.979,1.111,0.977,0.956,0.98,0.913,0.884 +NM_003456,0.954,1.063,0.893,1.002,0.94,1.033,0.929,0.916,0.908,1.042,0.867,0.918,1.048,1.078,1.19,1.101,0.991,1.024,1.168,1.028,0.794,0.982,1.264,0.985,0.901,0.899,0.848,0.817,0.99,0.942,0.98,1.232,1.441,1.172,0.848,0.983,0.928,0.864,1.144,1.193,0.873,1.185,0.796,1.116,0.894,0.739,1.014,0.971,1.016,1.102,0.878,0.942,0.922,1.033 +NM_003457,0.651,0.768,1.204,0.674,0.955,1.062,0.542,0.625,1.305,0.978,0.992,1.044,0.699,0.754,1.051,1.407,0.839,0.835,1.241,0.907,0.481,0.916,1.222,0.994,0.508,0.868,1.762,0.892,0.395,1.02,1.001,1.215,1.699,1.112,0.284,1.259,0.999,0.865,1.08,0.713,1.056,0.987,0.532,1.266,1.014,1.028,1.085,0.844,0.993,0.643,1.103,0.813,1.096,1.564 +NM_003460,0.885,0.971,0.97,0.847,1.132,0.979,0.887,1.135,0.871,1.153,1.041,1.106,0.859,0.934,0.905,1.108,1.009,1.149,0.934,1.011,1.029,0.863,1.037,0.973,0.916,0.956,1.041,1.082,0.751,1.106,1.049,1.035,0.934,0.883,0.879,0.988,1.014,1.004,1.272,1.011,0.953,1.041,1.313,0.926,1.018,0.98,1.003,0.928,1.021,0.925,1.157,0.883,0.785,1.079 +NM_003461,0.603,0.762,1.169,0.784,0.763,1.047,0.768,0.427,0.924,1.894,0.996,0.637,0.393,0.618,0.902,1.244,0.999,0.824,0.761,1.056,0.418,0.504,1.655,1.093,0.46,0.474,0.989,0.638,0.474,1.45,0.82,1.965,1.195,1.06,0.439,0.529,1.203,0.608,1.823,1.784,1.011,1.509,1.488,1.087,1.294,1.042,0.946,0.637,0.813,0.681,1.471,1.452,1.464,1.485 +NM_003462,0.798,1.418,0.896,0.933,0.809,1.42,1.065,0.915,0.85,0.767,1.081,0.956,0.86,0.803,0.796,1.004,0.817,1.173,0.723,1.418,0.845,0.754,1.099,0.752,1.221,0.819,0.9,0.854,0.894,1.588,0.816,5.014,1.723,1.967,0.817,0.93,1.014,0.838,1.059,0.984,0.868,1.405,0.979,1.45,0.925,0.996,0.893,0.913,0.892,0.785,1.468,1.074,0.765,0.915 +NM_003463,0.586,1.106,1.102,0.744,0.669,1.326,0.739,0.538,0.652,0.686,2.258,0.616,0.519,0.507,1.34,2.919,0.842,0.776,1.222,1.083,0.585,0.552,1.567,1.027,0.711,0.66,1.041,0.702,0.583,1.203,0.626,1.174,0.89,1.82,0.33,0.821,1.266,0.562,1.019,1.004,1.073,1.502,1.264,0.937,0.761,1.329,0.896,0.461,1.579,0.896,1.154,1.012,1.276,1.086 +NM_003466,1.195,0.955,0.915,0.881,0.938,1.009,0.884,0.939,1.119,0.902,0.987,0.924,0.914,0.9,0.916,1.014,1.064,1.022,1.393,1.183,1.021,0.923,1.241,1.051,1.166,1.042,1.042,0.895,1.041,0.912,1.085,1.242,1.061,1.0,1.056,0.887,0.878,1.077,0.901,0.942,1.125,0.974,0.764,0.906,0.884,0.986,0.966,0.907,0.901,0.91,1.096,0.943,1.321,1.196 +NM_003467,0.465,1.111,0.764,1.257,0.481,0.999,1.187,0.459,0.55,0.443,0.815,0.412,0.584,0.698,0.765,0.823,0.531,0.878,0.486,0.905,0.458,0.461,2.011,0.539,0.864,0.549,1.066,0.499,0.341,2.239,0.528,3.153,0.829,2.079,0.401,0.776,1.052,0.518,1.809,4.558,0.515,1.565,0.919,5.115,0.588,0.781,1.001,0.42,0.558,0.551,1.58,1.427,2.323,1.685 +NM_003468,0.528,1.23,0.554,0.87,0.52,1.368,1.113,0.493,0.536,0.528,1.475,0.489,0.412,0.488,0.732,1.848,0.496,0.586,0.56,1.306,0.453,0.46,1.633,0.477,0.901,0.554,0.509,0.452,1.008,1.25,0.46,1.528,1.237,1.382,0.429,1.321,1.266,0.431,2.16,1.508,0.488,1.199,1.283,3.04,0.401,1.557,0.945,0.506,1.507,0.578,1.331,0.829,0.548,2.473 +NM_003469,0.996,0.958,0.799,0.984,0.952,1.04,1.07,0.792,0.99,0.882,2.092,0.839,0.86,0.952,1.312,1.492,0.944,1.005,0.87,2.265,0.902,0.849,1.199,0.939,0.975,0.83,0.949,0.786,0.883,1.004,0.889,1.044,0.977,1.34,0.82,0.826,1.446,0.968,0.932,1.019,0.928,0.974,4.351,1.178,1.024,2.709,1.599,0.958,1.87,0.896,1.07,0.782,0.913,1.08 +NM_003470,0.944,0.932,1.385,0.797,1.042,0.861,0.765,0.704,1.088,1.171,0.751,0.894,0.741,0.686,0.718,0.851,0.897,1.066,1.235,0.993,0.905,0.763,1.304,0.948,0.9,1.158,1.065,0.969,0.508,0.986,0.998,1.003,1.018,1.208,0.588,1.049,0.959,0.943,1.444,1.049,1.185,1.105,0.77,1.247,1.286,0.88,1.011,0.969,0.857,1.002,0.843,0.96,1.027,0.901 +NM_003471,0.965,1.003,0.98,0.899,0.953,1.059,0.734,1.01,0.91,0.953,0.999,1.077,0.934,0.949,1.101,1.064,1.101,0.892,1.017,0.93,1.087,0.945,1.017,0.854,1.115,1.041,1.116,0.927,0.712,1.01,0.927,0.915,0.777,1.019,0.875,0.949,1.007,1.082,0.926,1.03,1.004,0.983,0.989,0.894,0.97,0.994,1.029,0.923,0.884,0.815,1.113,0.863,0.951,0.864 +NM_003472,0.561,1.105,1.157,0.61,0.884,1.412,0.566,0.527,1.087,0.968,1.012,0.959,0.636,0.649,1.035,1.912,0.704,0.969,1.081,1.148,0.423,0.812,1.413,1.063,0.57,0.678,1.733,0.853,0.452,1.239,0.793,1.131,3.076,1.197,0.173,0.904,1.339,0.865,1.116,1.242,1.119,1.111,0.733,1.278,0.889,1.152,0.982,0.658,1.124,0.716,1.243,0.821,0.688,2.241 +NM_003473,0.705,1.254,1.109,0.893,0.966,0.995,0.751,0.664,1.173,1.183,0.899,0.714,0.749,0.826,1.042,1.22,0.873,0.89,1.062,0.77,0.716,0.87,1.014,0.966,0.931,0.861,1.239,0.831,0.689,1.236,1.042,1.326,2.128,1.194,0.574,0.638,1.102,0.826,1.288,0.808,0.866,0.972,0.838,1.439,1.076,1.037,0.966,0.814,0.827,1.029,1.028,0.866,1.219,1.297 +NM_003474,1.122,1.01,1.092,1.059,0.908,1.126,1.124,0.945,0.932,1.032,1.13,1.001,0.909,0.848,0.871,1.034,1.039,1.006,0.931,0.979,1.042,1.052,0.882,0.999,1.016,1.031,1.151,0.912,1.097,0.924,0.962,0.997,0.996,1.048,1.002,0.996,0.916,1.115,1.096,1.053,0.978,0.91,0.882,1.01,1.001,0.977,1.109,0.962,1.006,1.057,1.016,0.938,1.127,0.772 +NM_003475,0.635,0.968,0.744,1.471,0.52,1.401,0.826,0.436,0.81,0.495,1.461,0.501,0.514,0.558,0.813,1.362,0.56,0.949,0.92,1.752,0.335,0.428,1.388,0.582,1.046,1.006,0.669,0.578,0.552,2.385,0.68,1.161,1.164,1.984,1.264,2.649,1.079,0.473,1.635,0.968,0.61,1.161,0.619,2.088,0.653,1.199,0.846,1.056,0.957,0.644,1.207,0.735,0.678,1.742 +NM_003476,0.971,1.009,1.089,1.068,1.142,1.002,0.995,1.058,1.033,1.097,1.043,0.965,1.0,0.918,0.946,1.095,0.841,1.0,1.044,0.984,0.948,0.971,0.977,1.162,0.956,0.943,0.964,1.028,1.25,1.03,1.015,1.015,0.971,0.968,1.078,0.919,1.01,1.121,1.059,0.983,1.061,1.0,1.029,0.936,1.069,1.149,0.85,1.069,1.054,1.046,1.06,0.993,0.91,0.957 +NM_003477,0.631,1.166,0.98,0.689,0.764,1.43,0.819,0.59,1.092,0.825,1.213,0.786,0.619,0.628,1.146,2.043,0.865,0.979,1.081,0.781,0.545,0.941,1.246,1.031,0.93,0.649,1.32,0.799,0.47,1.591,0.925,0.859,1.288,1.484,0.344,0.917,1.538,0.81,1.473,0.907,0.839,1.102,0.787,0.974,0.941,1.344,0.952,0.667,1.323,0.745,1.163,1.655,0.756,2.058 +NM_003478,0.982,1.006,1.082,1.125,1.178,0.958,1.083,1.044,1.005,1.093,0.947,1.064,0.946,1.097,0.942,0.934,0.9,0.994,1.013,0.945,0.984,1.064,0.985,1.081,0.952,0.997,1.013,0.921,1.099,0.955,1.009,0.937,1.022,1.093,1.041,1.011,0.955,0.943,1.009,0.995,1.173,0.91,1.037,1.03,0.947,0.96,1.168,1.065,1.249,0.95,1.095,0.995,1.063,0.915 +NM_003479,0.427,1.665,0.609,0.881,0.471,1.617,0.485,0.353,0.733,0.625,1.367,0.416,0.528,0.554,0.916,1.614,0.533,0.756,0.704,0.988,0.517,0.33,1.352,0.604,1.029,0.548,0.811,0.439,0.426,1.979,0.557,1.626,2.781,2.149,0.312,1.284,1.54,0.464,2.08,0.633,0.727,1.45,0.992,1.356,0.498,1.557,0.877,0.425,1.471,0.527,1.19,0.85,0.668,2.633 +NM_003480,0.99,1.301,0.946,0.934,0.875,1.024,1.388,0.979,0.885,0.955,0.96,0.913,0.999,0.891,0.976,1.089,0.833,0.802,1.043,1.076,1.004,0.846,1.082,0.84,1.571,0.821,0.976,1.001,1.434,1.3,1.11,5.42,1.076,2.569,0.84,0.841,1.042,1.147,1.151,0.971,1.071,1.31,1.108,0.887,0.753,0.853,1.384,1.009,0.85,0.902,1.138,2.406,1.163,1.1 +NM_003481,1.092,1.084,1.0,0.967,1.034,1.142,1.031,1.045,1.046,1.142,0.944,1.005,0.969,0.913,0.864,0.99,1.018,1.013,1.048,0.97,0.885,1.068,0.959,1.006,0.946,1.133,0.785,0.972,1.073,1.012,0.898,1.045,1.022,1.037,1.024,0.98,0.949,1.011,1.144,1.128,1.004,0.956,0.846,0.973,1.089,1.09,0.99,1.088,0.958,0.896,0.912,0.932,0.972,0.862 +NM_003482,0.935,0.929,0.915,0.907,0.983,1.026,0.87,1.091,0.957,0.974,0.955,1.142,1.061,0.992,1.011,1.142,0.958,0.961,1.047,1.047,0.978,1.153,1.052,1.015,0.956,1.09,0.966,0.992,0.903,1.147,1.025,0.959,1.098,0.946,1.124,1.174,1.064,0.958,0.904,0.983,0.874,1.111,0.964,0.862,1.077,0.96,1.183,0.986,1.013,0.914,1.034,1.165,1.035,0.937 +NM_003483,0.917,0.917,0.978,0.999,0.955,0.875,0.945,0.799,0.901,0.904,1.003,1.019,0.895,1.038,0.925,1.061,0.885,1.161,1.066,1.195,0.857,1.021,1.2,1.012,0.947,0.798,1.057,0.914,1.006,1.025,0.93,1.089,1.246,0.998,0.776,1.106,0.991,0.877,1.162,2.345,0.938,1.003,1.225,1.599,0.935,1.043,0.988,1.034,0.929,0.993,0.985,0.95,0.992,1.23 +NM_003485,1.121,1.076,1.023,1.031,0.904,0.986,1.054,0.997,0.982,0.937,1.036,1.016,1.076,1.099,1.114,1.079,1.118,1.009,0.964,0.882,0.994,0.992,0.922,0.946,1.08,0.937,0.985,1.028,1.316,1.078,1.022,0.942,1.112,1.044,0.973,0.974,0.974,1.032,1.029,1.013,1.056,1.217,1.096,1.021,1.006,0.945,1.077,1.048,0.997,1.166,0.907,0.958,1.026,0.962 +NM_003486,1.156,0.46,2.564,0.518,1.806,0.363,0.511,0.74,1.261,3.041,0.407,1.42,0.825,0.998,0.795,0.722,2.456,2.213,2.676,0.297,1.58,1.102,0.529,2.363,0.499,2.211,2.169,0.949,0.502,0.361,1.525,1.689,2.486,0.414,0.422,0.62,0.349,1.79,1.303,1.437,1.932,0.474,0.525,2.127,2.586,0.406,2.108,1.562,0.631,2.079,0.531,1.646,2.633,1.242 +NM_003488,0.813,1.111,0.908,0.887,0.883,1.146,0.892,0.705,0.792,0.762,1.086,0.762,0.895,0.723,0.997,1.37,0.933,0.883,0.781,1.247,0.742,0.71,1.468,0.858,0.869,0.844,0.894,0.803,0.824,1.003,0.841,1.102,1.205,1.201,0.707,1.176,1.083,0.848,1.453,0.912,0.74,1.324,1.014,1.23,1.036,1.151,0.996,0.906,1.232,0.82,1.256,0.889,0.822,1.158 +NM_003491,0.977,1.167,1.152,1.003,0.803,0.997,0.714,0.582,0.964,1.091,1.208,1.106,0.894,0.662,0.821,1.275,0.885,0.922,1.001,1.112,0.582,0.743,1.35,1.131,0.808,0.979,1.225,0.901,0.442,1.066,0.875,1.156,1.842,1.043,0.272,1.072,1.028,0.847,1.639,0.649,1.022,1.03,0.71,1.892,1.184,0.982,1.025,0.909,0.858,0.95,1.096,1.402,0.969,1.367 +NM_003492,0.786,1.434,1.272,0.889,0.823,1.031,0.852,0.545,0.828,0.76,1.287,0.712,0.768,0.858,0.906,1.211,0.888,1.134,1.109,1.0,0.636,0.85,1.019,0.784,0.932,0.932,1.083,0.877,0.574,1.333,0.727,1.222,1.071,1.417,0.538,0.987,0.949,0.971,1.187,0.853,0.926,1.338,0.806,1.307,0.879,1.328,1.082,0.79,0.846,0.944,1.229,1.046,0.841,1.088 +NM_003493,1.099,0.971,0.959,0.984,0.999,0.863,0.805,0.86,0.809,1.07,0.897,0.911,0.985,1.192,0.803,0.979,1.084,1.0,0.964,0.92,1.073,1.021,0.91,0.784,1.053,0.938,0.906,1.045,1.26,1.101,1.002,1.007,1.095,1.047,1.099,1.088,0.982,1.157,0.969,0.958,1.066,1.084,0.962,0.903,1.094,1.0,1.009,1.114,0.983,1.023,0.939,1.078,1.038,0.874 +NM_003494,0.924,1.005,0.982,1.158,0.858,0.831,1.157,0.825,0.903,0.944,1.046,1.037,0.937,0.781,0.864,0.977,0.915,1.009,0.847,1.102,1.181,1.052,0.98,0.941,0.963,0.943,0.93,0.9,0.919,1.02,0.886,1.519,1.255,1.129,0.948,0.984,0.917,0.941,1.602,2.095,0.972,1.219,1.134,1.12,0.978,1.018,0.892,0.873,0.779,0.921,0.98,1.487,0.91,1.084 +NM_003495,1.089,1.01,0.94,0.97,1.12,1.001,0.996,1.08,0.984,0.921,1.015,0.979,0.938,1.109,1.056,0.991,1.069,1.018,0.988,0.968,0.987,0.938,1.055,1.037,1.096,1.149,0.967,0.988,0.948,0.893,0.979,1.086,1.131,0.968,0.999,1.005,0.932,0.895,0.957,1.033,0.984,0.879,0.907,0.855,1.087,0.911,1.156,0.967,1.019,1.168,0.938,1.077,0.944,0.981 +NM_003496,0.718,0.853,1.408,0.717,0.793,0.898,0.713,0.475,1.003,0.75,0.867,0.725,0.471,0.778,0.873,0.984,0.774,0.845,0.65,1.203,0.58,0.728,2.043,0.814,0.678,0.676,1.14,0.662,0.509,1.317,0.747,2.044,2.48,1.074,0.395,0.907,1.058,0.785,1.971,2.809,0.868,1.329,1.106,2.163,1.047,1.091,1.088,0.654,1.18,0.829,1.267,2.049,0.9,2.055 +NM_003498,1.03,0.876,1.565,0.814,1.059,0.985,0.776,0.939,1.296,0.922,0.823,0.954,0.962,0.881,0.936,0.767,1.0,1.14,1.277,0.836,0.901,1.1,0.94,1.168,0.802,0.941,1.406,1.272,1.042,1.115,1.198,1.402,1.332,1.02,0.784,0.831,0.896,1.482,0.948,1.374,1.447,0.876,0.88,0.983,1.324,0.863,1.146,0.994,0.771,1.132,0.822,1.057,1.218,1.225 +NM_003500,0.874,1.23,0.781,0.869,0.822,1.29,0.68,0.592,1.26,1.03,1.393,1.38,1.084,1.189,1.269,2.912,0.787,0.857,0.835,1.139,0.794,1.245,0.86,1.192,0.795,0.896,1.09,1.334,0.673,2.315,1.049,1.462,0.655,1.446,0.594,0.606,1.608,1.035,0.81,1.028,1.049,2.033,1.408,0.598,0.861,1.434,1.566,0.864,1.029,0.695,1.366,0.662,1.61,0.843 +NM_003501,1.152,0.903,1.76,0.919,1.142,1.204,0.793,0.665,1.643,1.817,0.998,0.815,0.715,1.199,1.093,1.253,1.471,1.319,1.781,0.974,0.902,0.973,0.954,1.242,0.816,1.343,1.099,1.238,0.663,1.549,1.355,0.717,1.518,1.181,0.526,0.594,1.232,1.183,0.868,0.784,1.767,1.193,0.952,0.888,1.344,1.002,0.959,0.942,0.876,1.586,1.112,0.646,1.549,0.816 +NM_003502,1.202,0.978,1.02,1.001,0.97,1.001,1.054,0.932,0.985,0.886,0.998,0.989,1.043,0.991,1.181,1.013,0.942,0.999,1.046,0.884,0.907,1.077,1.001,0.932,0.945,1.02,0.838,1.074,1.028,0.997,1.006,1.043,0.942,1.001,1.099,0.992,0.975,1.091,0.971,1.114,0.958,0.878,0.859,1.041,0.929,0.906,1.019,0.963,0.941,0.903,0.931,0.935,0.854,1.034 +NM_003503,0.831,1.026,1.133,0.836,0.952,1.083,0.918,0.967,1.066,1.085,0.84,1.121,0.842,0.99,0.99,1.038,0.968,0.946,0.961,0.844,0.862,0.948,1.357,1.329,0.826,0.963,1.591,0.959,0.704,0.941,0.92,1.049,2.0,1.181,0.705,0.807,0.928,0.836,1.649,0.869,1.03,0.833,0.926,0.877,0.986,0.923,1.059,0.904,1.409,0.898,1.205,1.075,0.911,2.384 +NM_003504,0.693,1.362,1.041,0.737,0.95,1.065,0.721,0.573,1.119,1.052,0.719,1.248,0.772,0.577,1.016,1.108,0.733,0.982,0.945,0.844,0.793,0.838,1.73,1.463,0.599,0.75,1.807,0.919,0.481,0.929,0.707,1.104,3.381,0.952,0.522,1.683,0.867,0.982,2.098,1.047,0.988,0.781,1.032,1.783,1.138,1.404,1.331,0.778,1.343,0.989,1.175,1.454,0.91,2.602 +NM_003505,0.808,0.873,1.394,0.692,1.048,0.922,0.832,0.731,1.035,0.924,0.771,0.904,0.862,0.722,0.952,1.311,0.891,1.12,0.972,1.147,0.668,1.081,1.365,1.277,0.696,0.771,1.153,1.035,0.531,1.242,1.023,3.075,1.769,1.549,0.503,0.615,0.715,1.292,1.118,0.674,1.103,1.28,0.571,1.006,1.247,0.981,0.999,0.937,0.694,1.132,1.048,0.847,0.756,1.161 +NM_003507,0.897,1.052,1.045,0.944,0.957,0.98,0.958,0.747,1.238,0.925,0.926,0.927,0.862,1.022,1.01,1.116,1.067,0.992,1.068,0.954,0.931,0.992,0.916,1.162,0.887,0.875,1.141,1.103,0.961,1.001,1.088,1.582,2.901,1.168,0.895,1.064,1.009,1.214,0.854,1.0,0.984,1.174,1.015,1.281,0.941,1.052,0.895,1.046,0.989,0.905,0.919,0.967,0.994,1.642 +NM_003508,0.967,0.952,0.999,0.869,0.99,0.855,0.974,1.105,1.019,1.078,0.955,0.997,1.054,0.962,1.083,0.81,1.058,0.923,1.013,0.82,0.93,1.049,1.094,1.212,0.931,1.033,1.041,1.145,0.738,0.982,1.05,1.091,1.065,0.897,0.777,0.888,1.055,0.981,0.853,1.004,1.118,1.034,1.099,1.069,1.319,1.014,1.074,0.942,1.652,0.978,0.831,0.875,1.022,0.852 +NM_003509,0.893,0.986,0.996,0.966,0.915,0.982,0.989,1.107,1.069,0.978,1.063,1.057,0.806,1.165,1.062,1.097,1.074,0.994,1.102,0.927,0.995,1.117,1.226,1.008,1.027,1.011,1.075,0.888,0.846,0.903,0.941,0.918,1.018,0.838,0.956,1.189,0.893,0.88,1.041,1.022,0.895,0.999,0.957,1.036,0.995,0.925,1.093,1.023,1.08,0.927,0.989,1.13,1.004,1.153 +NM_003510,0.946,0.945,1.005,1.001,1.085,0.879,1.011,1.082,0.999,1.154,0.945,0.975,0.938,0.956,1.039,1.001,1.051,1.02,0.963,1.028,0.997,1.07,1.049,1.02,1.019,0.948,1.022,1.058,0.96,0.949,1.01,0.873,0.982,1.046,0.99,0.936,1.009,0.976,1.181,0.956,0.932,0.856,1.235,0.933,1.084,1.028,1.034,1.048,0.921,0.984,0.969,0.893,0.919,0.926 +NM_003511,1.115,1.324,0.862,1.045,1.143,0.876,1.23,1.015,0.999,0.86,0.985,1.042,1.156,1.045,0.763,1.604,0.746,1.233,1.117,1.131,0.854,0.796,1.064,0.904,1.025,0.822,0.873,1.053,1.563,0.954,1.054,0.892,1.253,1.028,0.932,0.956,0.953,1.166,0.995,1.132,0.862,0.995,1.498,1.147,0.847,1.109,1.109,0.984,0.7,1.033,1.2,1.077,0.936,1.142 +NM_003512,1.057,1.209,2.204,0.819,1.708,0.863,0.59,0.934,2.577,1.36,0.695,0.673,1.072,1.147,1.136,1.315,2.0,1.379,1.449,0.912,0.824,0.998,0.804,0.927,0.49,1.292,1.367,1.707,0.76,0.866,2.013,0.887,2.039,0.922,3.558,0.544,0.804,1.443,1.1,0.743,1.663,0.833,0.498,0.836,1.53,0.808,1.764,1.791,0.83,1.635,0.966,0.616,1.097,1.087 +NM_003513,1.257,1.407,1.124,1.012,1.055,1.009,0.829,0.738,0.955,1.252,1.086,0.835,0.991,1.164,0.642,1.039,1.052,1.071,1.039,1.117,1.041,0.975,0.993,0.964,0.814,0.668,0.977,1.069,0.585,0.874,1.131,1.021,1.095,1.002,1.032,0.824,1.045,0.927,0.994,1.051,1.115,1.018,1.037,1.022,0.691,1.024,0.864,1.083,1.075,0.928,0.969,1.003,0.9,0.947 +NM_003514,0.965,1.265,1.026,0.914,1.016,0.932,0.907,0.896,1.03,0.942,0.89,0.836,1.0,1.094,0.926,0.984,1.067,1.056,1.0,0.984,0.83,0.912,1.026,1.023,0.924,0.873,0.863,0.905,1.341,0.974,0.881,1.037,1.081,1.013,1.046,0.92,1.003,0.965,1.013,1.037,0.915,0.98,0.832,1.098,1.031,0.946,1.039,1.023,1.082,0.927,1.033,1.011,0.874,1.072 +NM_003516,0.785,3.873,1.865,0.613,1.173,0.584,0.666,0.575,1.3,1.024,0.926,0.48,0.475,0.758,1.377,1.522,1.346,1.213,1.46,0.809,0.742,0.551,0.7,0.999,0.438,0.888,1.199,0.988,0.361,0.809,1.211,3.013,1.346,0.89,0.522,1.876,0.969,1.087,1.592,1.442,1.382,0.73,0.478,1.025,0.947,0.973,2.492,0.874,0.555,0.777,1.443,1.004,0.907,3.277 +NM_003517,0.799,4.462,1.59,0.65,1.193,0.504,0.55,0.453,1.318,1.027,0.762,0.45,0.496,0.68,1.105,1.317,1.408,1.13,1.561,0.853,0.937,0.681,0.701,0.862,0.415,1.109,1.026,0.911,0.345,0.789,0.88,2.906,1.254,0.804,0.484,2.278,0.831,1.178,1.796,1.47,1.438,0.718,0.481,1.441,0.767,0.919,2.791,0.935,0.67,0.703,1.202,0.818,0.815,2.98 +NM_003518,1.333,1.283,1.192,0.867,2.033,0.879,0.771,1.714,3.06,0.958,0.889,1.366,1.501,2.052,1.48,1.01,1.843,1.277,1.242,0.843,0.883,1.353,0.727,1.077,0.578,1.527,1.048,2.539,0.886,0.673,2.646,0.944,1.104,0.837,7.837,0.93,0.743,1.846,1.106,0.841,1.727,0.779,0.752,0.796,1.525,0.85,3.731,2.587,0.749,1.298,0.967,0.942,1.34,1.22 +NM_003519,0.906,0.899,0.866,1.071,0.935,1.046,1.037,0.985,1.05,0.766,0.832,0.976,0.97,1.086,1.237,0.988,0.922,1.039,1.063,0.967,1.035,0.884,0.908,1.024,0.992,0.96,1.067,1.116,0.978,0.962,0.983,0.928,0.972,0.806,1.006,0.962,0.967,0.947,0.947,0.954,0.979,0.868,0.894,0.987,1.012,1.022,1.166,0.936,1.135,1.051,0.864,1.154,0.909,1.057 +NM_003520,1.089,0.951,0.965,0.903,0.943,1.066,0.881,1.095,1.008,0.962,0.902,1.093,0.841,0.997,0.853,1.069,0.94,1.063,1.081,1.035,1.021,1.024,0.888,0.97,0.997,1.012,1.058,1.081,1.009,1.159,1.148,1.015,1.083,1.149,1.124,0.989,0.945,0.942,1.039,0.962,0.901,0.864,1.144,1.001,1.068,1.071,0.977,1.124,1.141,0.968,0.912,0.969,1.041,1.041 +NM_003521,1.008,1.003,1.059,0.934,1.08,0.94,1.036,0.911,1.0,1.138,0.894,1.096,1.046,1.193,1.093,1.187,0.999,1.135,1.122,1.006,0.936,0.923,1.132,1.054,1.037,0.812,0.876,0.914,1.162,0.916,0.89,1.021,1.263,0.792,1.068,0.97,0.927,1.009,1.035,1.061,0.941,1.054,0.745,0.892,1.103,1.03,0.974,1.036,0.9,1.067,0.957,1.003,0.935,1.009 +NM_003522,1.053,0.991,0.996,0.976,1.093,0.884,0.845,0.952,1.07,0.96,0.859,0.961,0.995,0.942,1.009,0.979,1.092,0.875,1.088,1.021,1.191,1.004,0.852,0.946,0.877,0.941,1.077,1.038,0.854,0.96,1.076,0.907,1.079,0.884,1.675,0.97,0.859,1.062,0.885,0.937,0.977,0.956,1.125,1.076,1.042,1.15,1.089,1.045,0.978,0.933,1.126,1.008,0.902,0.928 +NM_003523,0.638,2.574,1.197,0.781,0.922,1.275,0.844,0.82,1.34,0.998,0.9,0.674,0.695,0.671,0.93,1.612,1.241,1.02,1.062,1.512,0.655,0.5,1.002,0.919,0.544,0.829,0.82,0.964,0.612,0.862,1.279,1.518,1.679,1.292,1.672,1.238,0.77,0.843,1.214,0.631,1.13,1.08,0.55,1.381,0.964,0.713,1.659,0.731,0.504,0.813,1.287,0.636,0.947,2.216 +NM_003524,0.707,2.59,1.301,0.785,1.249,1.099,0.697,0.627,1.123,1.064,0.847,0.642,0.58,0.678,0.984,1.56,0.952,0.91,0.999,1.237,0.706,0.441,0.992,0.819,0.537,0.991,0.687,1.134,0.354,0.899,1.206,1.543,1.444,1.209,1.735,1.146,0.896,0.687,1.119,1.224,1.186,0.877,0.523,1.652,0.951,0.701,1.599,0.633,0.583,0.804,1.035,0.734,1.182,2.783 +NM_003525,0.929,1.022,0.841,1.239,1.001,0.989,0.885,1.1,0.866,0.929,0.839,1.141,1.047,0.796,0.778,0.934,0.982,1.034,0.876,1.103,0.944,0.912,1.104,1.1,0.955,0.983,0.794,1.002,1.004,0.971,1.05,0.969,1.078,0.923,0.958,1.019,0.962,0.919,0.98,0.973,1.02,0.969,0.807,1.015,1.072,1.005,0.915,1.082,1.033,1.025,1.029,1.028,1.022,0.974 +NM_003526,1.102,1.066,1.357,0.865,1.453,1.044,0.772,1.617,1.685,0.931,0.799,1.3,1.13,1.156,1.345,1.23,1.829,1.248,1.027,0.942,0.666,1.095,0.684,0.969,0.713,0.894,0.967,1.266,0.84,0.769,2.042,0.909,1.292,0.924,2.638,0.684,0.832,1.605,1.24,1.007,1.261,0.799,0.789,0.886,1.216,0.96,2.525,1.156,0.882,1.234,1.023,0.821,0.894,1.56 +NM_003527,0.967,1.118,1.105,1.103,1.068,0.958,1.155,1.132,0.947,0.905,0.993,1.021,0.86,1.022,0.999,1.208,0.904,0.98,0.923,0.846,1.129,1.007,1.0,0.984,0.909,1.152,0.942,0.901,1.038,0.923,1.047,1.027,0.951,1.085,0.966,0.968,0.989,0.964,1.01,1.13,1.17,0.934,1.166,0.82,1.078,0.996,1.153,1.125,1.026,1.02,1.014,0.863,0.871,1.052 +NM_003528,0.861,2.674,1.528,0.625,1.798,0.99,0.724,1.584,1.874,0.874,0.623,1.151,0.832,1.003,1.108,0.913,1.067,0.814,0.998,1.232,0.559,0.993,0.584,1.453,0.688,1.14,1.213,1.512,0.56,0.85,1.552,5.763,0.999,1.203,1.63,1.108,0.751,1.382,1.094,0.974,1.303,0.735,0.518,0.814,1.032,0.833,1.626,1.072,0.476,0.803,1.189,0.603,1.025,2.264 +NM_003529,1.02,1.091,1.057,0.97,1.082,1.01,0.856,1.191,1.066,1.017,0.999,1.024,1.009,0.936,1.017,1.09,1.089,0.968,0.903,0.816,1.111,0.943,0.826,0.918,0.893,1.124,1.057,0.998,0.827,1.129,1.03,1.071,0.99,0.961,0.916,0.871,0.932,0.984,0.944,1.125,0.786,0.926,0.805,1.022,0.908,0.993,0.905,1.019,0.953,1.152,1.035,0.908,1.001,1.068 +NM_003530,1.431,1.164,1.485,0.952,2.178,0.955,0.851,1.584,2.699,1.009,0.906,1.153,1.514,1.776,1.355,0.98,3.13,1.5,1.363,0.721,0.784,1.611,0.606,2.397,0.633,2.057,1.696,2.481,0.378,0.648,2.272,1.088,1.122,0.706,5.538,0.853,0.753,1.315,1.138,0.635,1.965,0.745,0.514,0.796,1.59,0.811,2.364,2.752,0.665,1.567,0.989,0.855,1.197,1.336 +NM_003531,0.991,1.337,0.879,0.983,0.895,0.889,0.928,0.988,0.981,0.963,0.974,1.108,0.934,0.888,1.005,1.006,0.957,1.021,0.948,0.779,0.829,0.985,0.999,0.973,0.921,0.996,1.036,1.006,0.95,1.108,1.02,0.974,1.061,1.045,1.017,1.044,0.971,1.292,1.121,1.137,0.883,1.021,1.161,0.982,0.962,1.05,1.063,1.004,1.032,1.028,1.106,1.015,0.946,0.837 +NM_003532,0.936,0.912,0.99,0.95,1.33,0.967,0.873,1.021,1.068,0.862,0.956,0.966,0.945,0.997,1.129,1.25,1.169,1.204,0.97,0.948,0.83,1.028,0.996,1.043,1.052,1.043,0.933,1.222,0.9,0.846,1.162,0.931,0.969,1.072,1.334,0.947,1.195,0.957,1.095,0.98,1.128,1.043,0.941,1.031,1.057,0.979,1.05,1.117,1.069,0.985,1.001,0.913,0.995,0.975 +NM_003533,1.027,1.012,0.982,0.917,0.958,0.955,0.972,1.064,0.799,0.926,1.141,0.996,1.011,0.956,0.965,0.949,0.976,0.921,0.94,1.064,1.011,0.893,0.961,1.103,0.995,1.018,0.971,0.993,0.901,1.044,0.929,0.922,1.023,0.956,1.192,0.888,1.032,1.049,1.073,0.994,1.014,0.981,1.069,1.011,1.058,1.017,0.976,1.085,0.938,0.915,1.067,1.13,1.031,0.979 +NM_003534,0.947,2.179,1.041,1.066,0.845,0.962,1.006,0.809,0.851,0.904,1.026,0.932,0.858,1.449,0.792,0.884,1.015,1.08,0.932,1.036,0.952,0.967,1.241,1.106,0.903,0.833,1.054,0.786,1.606,0.965,1.008,0.812,1.006,0.974,0.786,1.496,1.062,0.807,1.244,0.726,0.855,0.894,1.096,1.0,1.062,0.829,0.912,0.907,1.055,0.846,1.062,1.128,0.912,1.269 +NM_003535,1.007,1.031,0.938,0.934,0.949,1.069,0.98,1.084,0.913,1.137,0.964,0.968,0.988,1.139,0.774,0.975,0.982,0.995,1.072,1.034,1.011,0.99,1.104,0.954,0.957,1.09,0.901,0.952,0.611,1.002,0.999,1.056,1.093,1.056,1.078,0.96,1.146,0.946,1.038,1.149,0.964,0.872,1.006,0.978,1.047,1.061,1.193,1.017,1.188,0.939,1.012,1.04,0.863,1.202 +NM_003536,0.974,1.151,1.015,0.844,1.218,1.017,0.835,0.923,1.02,0.847,1.054,0.983,1.03,0.895,1.007,1.169,1.067,0.786,1.218,1.104,1.043,1.06,0.983,1.052,0.898,0.933,0.924,0.895,0.968,0.998,0.943,0.976,0.997,1.031,0.942,0.951,0.988,0.904,1.039,0.87,0.84,0.871,0.879,1.023,0.913,0.905,1.226,0.967,0.944,0.992,1.002,0.948,0.925,1.24 +NM_003537,1.0,0.829,1.049,0.96,0.987,1.08,1.122,1.152,0.998,1.038,0.98,1.156,0.981,1.024,1.025,1.048,1.033,1.081,0.94,1.005,1.076,0.983,1.018,0.935,0.924,1.049,0.942,0.956,1.269,1.121,0.945,0.928,1.255,0.973,0.918,1.004,1.012,1.029,0.973,1.097,0.946,0.953,1.001,0.959,0.933,0.998,0.92,0.989,0.997,1.061,0.977,0.78,0.912,0.976 +NM_003538,1.066,1.125,1.017,0.912,1.026,1.072,1.183,1.005,0.988,0.942,1.061,0.931,0.953,1.151,0.982,0.947,0.959,1.004,1.113,0.898,1.053,1.097,0.923,0.977,1.033,0.933,1.035,1.029,1.48,1.069,0.929,1.0,0.92,0.945,1.032,0.941,1.08,0.998,1.047,0.885,1.044,0.946,1.118,1.079,0.919,0.919,0.927,1.162,0.878,1.038,0.939,1.019,1.089,0.98 +NM_003539,0.651,0.715,1.272,0.833,0.995,1.261,0.883,1.082,0.888,0.874,1.167,1.197,1.393,0.629,0.843,1.823,1.0,1.469,0.845,1.026,0.78,1.536,0.924,1.372,0.878,0.809,1.273,0.914,0.55,1.113,1.166,1.084,1.976,0.831,0.753,0.854,1.157,1.162,1.23,0.929,0.863,1.051,0.777,0.843,1.138,0.917,1.236,1.009,1.133,1.105,1.15,0.835,0.843,1.183 +NM_003540,0.907,0.982,1.034,0.903,0.901,1.131,1.216,0.884,1.093,0.979,0.898,0.88,0.967,1.38,1.102,1.044,0.956,0.97,1.08,1.035,1.092,1.052,1.156,1.026,0.873,1.179,0.967,0.966,1.523,0.906,1.1,0.841,1.332,1.025,0.988,1.069,1.013,0.965,1.026,0.97,0.882,0.972,0.804,1.013,0.913,1.173,0.958,0.933,1.117,1.087,1.003,1.122,1.093,0.916 +NM_003541,1.075,1.249,1.044,0.916,1.179,1.062,0.992,1.102,1.068,1.216,0.976,1.094,0.99,0.95,0.976,1.045,0.99,1.01,0.921,1.057,1.087,1.053,1.028,1.05,0.982,0.976,0.994,0.901,0.742,0.972,1.041,1.051,1.966,0.922,1.056,1.16,0.942,0.842,0.959,1.018,0.984,1.082,1.077,0.901,0.896,0.96,0.828,0.97,1.094,0.982,1.032,1.051,0.969,0.948 +NM_003542,0.546,0.512,0.949,0.594,0.822,1.121,0.789,0.92,0.908,1.061,1.189,1.314,1.303,0.426,0.607,1.887,0.554,1.246,1.265,0.946,0.454,1.032,1.466,1.39,0.689,0.742,1.41,0.877,0.594,1.132,0.674,0.844,1.709,1.099,0.0272,1.503,1.191,1.21,1.271,0.836,1.026,1.079,0.597,1.361,0.809,0.771,1.18,0.945,1.097,0.857,1.076,0.9,0.59,1.282 +NM_003543,1.018,2.323,0.937,0.908,1.266,1.135,1.011,1.029,1.458,0.833,1.247,0.804,0.861,1.228,1.185,1.283,0.995,0.862,1.002,1.097,0.885,0.838,0.815,0.961,0.824,0.909,0.774,1.271,0.691,0.998,1.568,1.237,1.049,1.023,1.966,0.986,0.925,0.777,0.927,0.731,1.004,0.81,1.014,0.984,0.86,1.013,1.204,0.903,0.875,0.815,0.948,0.914,1.01,1.094 +NM_003544,1.114,0.994,0.938,0.945,0.974,1.036,0.945,1.044,0.974,0.908,0.88,0.984,0.943,1.022,0.969,1.083,1.012,0.953,1.192,1.068,0.99,0.94,1.094,1.087,0.968,1.013,0.921,0.868,1.037,0.972,1.049,0.87,0.973,0.945,1.037,1.041,0.906,0.998,1.01,1.047,0.91,0.948,1.064,0.992,0.959,1.065,0.918,1.035,1.098,0.835,1.138,0.979,0.825,1.002 +NM_003545,1.131,1.003,0.957,0.998,1.174,0.968,0.978,1.266,1.308,1.067,1.072,0.926,0.828,1.211,1.339,1.214,1.181,1.122,1.06,0.911,0.979,0.961,0.996,1.017,1.042,1.091,0.882,1.029,1.493,0.972,1.247,1.145,1.145,0.979,1.178,0.927,1.107,0.995,1.05,0.979,0.963,0.998,0.878,1.125,1.04,0.883,1.205,1.122,1.03,1.059,0.966,0.917,1.026,1.222 +NM_003546,1.003,1.155,1.171,0.928,0.996,0.996,0.926,1.175,0.991,0.942,1.021,1.05,1.242,0.959,1.09,1.175,0.991,0.97,0.982,1.117,1.088,0.862,0.861,0.991,1.024,0.987,1.05,0.858,1.421,0.926,1.164,0.925,1.153,1.107,0.934,1.464,1.326,0.973,1.238,1.023,0.986,0.853,0.995,1.056,0.78,1.068,1.005,0.981,1.234,1.081,1.06,1.184,1.14,0.911 +NM_003547,1.148,0.974,0.981,1.119,1.073,0.911,1.229,1.041,0.971,0.933,1.074,0.815,1.093,1.14,0.986,1.076,1.05,1.229,1.017,0.89,1.017,1.0,0.917,0.95,1.032,0.986,1.019,0.875,1.076,0.918,0.93,1.063,1.0,0.957,0.973,0.947,0.954,1.034,0.825,1.009,0.984,0.896,1.008,1.075,0.916,0.925,1.015,0.999,1.12,1.155,0.963,1.132,1.057,0.914 +NM_003548,0.854,1.781,1.36,0.897,0.974,1.014,0.878,0.607,0.989,0.892,1.222,0.914,0.755,0.929,1.022,1.368,0.951,1.106,1.054,1.075,0.859,0.8,0.939,0.854,0.716,0.935,1.293,0.859,0.503,1.073,0.858,2.072,0.998,1.017,0.763,2.329,1.167,0.704,1.185,1.051,1.053,1.002,0.739,1.326,0.815,0.918,1.626,0.714,0.854,0.871,1.14,0.964,0.852,1.603 +NM_003549,0.993,0.972,0.983,1.04,0.983,0.993,1.283,1.131,0.966,0.958,0.924,0.967,1.046,0.872,0.981,1.196,0.918,0.964,1.215,0.88,0.969,1.027,0.93,1.158,1.005,0.937,0.847,0.961,0.959,1.096,0.86,0.974,1.073,0.939,0.97,0.998,0.884,1.163,1.007,1.032,0.999,1.019,1.001,1.055,0.835,1.138,0.983,0.985,0.786,0.948,1.046,0.938,0.839,1.056 +NM_003550,0.886,1.314,0.843,0.844,0.783,1.127,0.722,0.726,1.169,0.914,0.945,0.744,0.732,0.711,0.866,1.104,1.06,0.922,0.888,0.761,0.872,0.877,1.163,0.939,1.144,0.992,0.983,0.679,0.601,1.147,0.9,4.587,1.378,1.266,0.77,1.396,0.897,0.918,1.842,0.911,0.958,0.98,0.951,1.845,0.85,0.928,1.12,0.9,0.874,0.884,1.001,0.895,0.976,1.07 +NM_003553,1.059,1.05,0.932,0.994,1.033,1.072,0.813,1.053,1.098,0.999,1.026,1.108,0.988,0.815,0.908,1.012,1.047,1.167,1.086,1.038,0.972,1.069,1.178,0.955,1.007,0.918,0.894,1.107,0.846,1.008,0.892,1.056,0.973,1.05,1.016,1.017,1.027,1.033,1.03,1.002,0.922,0.911,1.132,1.239,0.933,1.063,0.957,1.206,1.015,1.004,0.936,0.765,0.997,1.009 +NM_003554,0.822,0.976,1.115,1.155,1.014,0.869,1.029,1.131,1.0,1.079,1.014,1.044,1.023,0.998,0.821,1.061,0.992,0.98,0.844,1.208,0.975,1.01,1.141,1.06,0.827,0.921,0.997,0.92,1.382,0.874,0.945,0.957,1.014,0.958,1.007,0.982,0.881,1.012,1.053,1.004,1.019,0.868,1.083,0.986,1.042,1.001,1.147,0.947,0.983,1.0,1.005,0.885,0.969,0.78 +NM_003555,1.063,0.994,0.963,1.067,0.993,0.968,0.969,1.02,1.053,0.82,1.107,1.033,1.087,0.864,0.943,0.982,0.927,0.929,0.998,0.944,0.922,1.132,0.994,0.875,0.955,1.125,0.987,0.888,1.187,1.107,0.858,1.145,0.982,1.08,1.049,1.062,1.097,0.96,1.047,1.081,0.981,0.997,0.935,0.9,1.019,1.006,0.89,0.939,1.131,1.146,1.026,0.887,1.202,0.927 +NM_003557,0.979,1.003,1.038,0.828,1.127,0.937,0.573,0.775,1.584,0.917,0.859,0.773,0.736,1.198,1.039,0.968,1.077,0.936,1.122,0.575,0.912,0.914,0.825,1.208,0.744,1.067,1.368,0.895,0.512,1.006,1.078,1.606,1.129,0.852,1.173,0.806,1.107,1.355,1.175,1.247,1.326,0.961,0.812,1.301,1.09,0.952,1.138,1.01,1.004,0.949,0.818,0.918,1.072,1.237 +NM_003558,0.396,1.154,0.424,1.063,0.38,1.969,0.878,0.476,0.478,0.423,1.588,0.395,0.368,0.36,1.106,1.844,0.405,0.999,0.352,1.269,0.353,0.416,1.393,0.414,0.801,0.443,0.407,0.502,0.521,1.837,0.388,0.672,1.084,1.766,0.487,1.203,1.478,0.384,1.528,0.524,0.355,1.436,1.105,1.051,0.387,1.856,0.731,0.413,1.59,0.444,1.396,1.015,0.416,1.337 +NM_003559,0.868,0.984,1.106,0.879,1.043,0.971,0.853,0.923,0.954,1.083,0.981,0.892,0.927,0.845,1.094,0.917,1.101,0.943,0.898,1.073,0.938,0.968,0.959,0.945,0.838,1.108,1.041,1.001,0.719,1.032,0.904,1.527,1.449,0.847,0.68,1.091,1.057,0.968,1.181,1.129,1.074,1.048,0.877,1.277,0.959,0.987,1.005,0.847,0.903,0.913,1.071,1.159,1.007,1.54 +NM_003560,0.945,0.969,0.954,0.963,1.013,1.305,0.737,0.852,1.027,1.055,1.184,0.967,0.809,0.914,1.076,1.874,0.987,1.087,0.961,0.999,0.943,1.056,1.345,0.99,0.973,0.95,1.028,0.908,1.849,1.184,0.962,1.101,0.989,0.865,0.89,1.023,1.171,0.963,1.112,0.981,0.851,1.234,1.345,0.935,1.078,1.28,1.128,0.853,1.307,0.892,1.418,0.88,1.232,1.112 +NM_003561,0.0478,2.979,0.0561,1.253,0.0538,3.436,1.761,0.0494,0.0556,0.0597,4.367,0.0599,0.0439,0.0522,1.128,2.717,0.0514,1.708,0.0582,3.818,0.0536,0.0543,2.35,0.0597,1.269,0.0572,0.0571,0.0493,1.71,4.607,0.052,1.039,0.194,4.477,0.0531,0.704,3.106,0.0466,2.728,0.133,0.0573,3.38,1.168,0.63,0.0514,3.128,0.972,0.0453,1.862,0.0482,2.371,0.283,0.0584,0.145 +NM_003562,0.894,0.677,0.734,0.924,0.769,1.326,0.552,0.607,1.018,0.818,0.949,1.196,0.951,0.692,0.694,1.315,0.906,1.042,1.493,0.743,0.913,1.323,0.991,1.149,0.663,1.273,1.145,0.745,0.835,1.012,0.743,0.898,1.327,1.068,0.311,0.893,1.112,1.213,1.221,0.78,1.056,1.163,0.954,1.105,0.943,0.929,0.964,1.199,1.104,0.865,0.827,0.75,0.873,1.435 +NM_003563,0.599,1.23,1.192,0.599,0.795,1.139,0.805,0.37,0.824,0.675,1.218,0.72,0.547,0.523,0.712,1.174,0.778,0.965,0.907,1.253,0.541,0.687,1.251,0.907,0.807,0.683,0.931,0.928,0.557,1.371,0.698,1.548,0.882,1.518,0.439,1.08,1.282,0.862,1.399,0.966,1.075,1.617,0.568,1.471,0.768,0.984,0.938,0.493,0.856,0.638,1.063,0.778,0.671,1.0 +NM_003564,0.637,1.921,0.715,1.069,0.597,1.791,0.68,0.482,0.569,0.632,0.6,0.997,0.716,0.323,0.488,1.048,0.682,1.469,1.28,0.608,1.032,1.094,0.727,0.899,1.343,1.097,0.98,0.424,1.756,1.698,0.391,2.005,1.078,2.566,0.0698,1.119,1.398,1.353,3.513,1.069,0.747,0.88,0.556,1.434,0.655,0.511,0.754,1.003,0.793,0.986,0.84,0.836,0.78,0.623 +NM_003565,0.816,0.97,1.784,0.768,1.741,0.785,0.617,1.026,1.562,1.076,0.637,1.011,0.532,0.917,1.032,0.814,1.051,1.048,1.053,1.5,0.559,1.452,0.809,0.834,0.705,1.553,1.19,1.972,0.351,1.163,1.396,1.798,0.861,0.926,2.048,0.976,0.657,2.162,0.85,1.606,1.238,1.031,0.897,0.637,0.815,0.974,1.216,1.351,0.525,1.187,0.836,0.678,0.696,1.218 +NM_003566,0.985,0.965,1.015,1.055,1.016,1.059,0.978,1.009,1.136,1.284,1.048,1.182,0.969,1.134,0.947,1.051,0.98,1.189,0.943,0.991,1.035,0.962,0.965,1.026,0.956,0.93,1.003,1.09,0.746,0.89,0.948,0.965,1.137,0.945,1.24,1.028,1.096,1.059,0.859,1.084,1.039,1.053,1.012,1.034,1.146,1.026,0.936,0.945,0.98,0.974,1.018,0.88,0.998,0.952 +NM_003567,0.927,1.054,0.727,0.89,0.867,2.147,0.938,0.77,1.001,0.645,2.745,0.469,0.801,0.952,1.827,1.954,0.862,1.05,0.906,1.265,0.484,0.759,1.387,0.548,0.732,0.754,0.682,0.999,0.857,1.591,1.083,0.665,1.126,2.246,1.591,0.521,1.686,0.985,1.531,0.44,0.915,1.867,0.631,0.639,0.606,1.953,0.895,0.807,1.314,0.448,1.71,0.894,0.829,1.33 +NM_003568,5.954,0.684,1.586,0.876,6.781,0.563,0.366,2.506,10.49,3.252,0.578,0.983,4.361,4.95,2.018,0.839,2.248,1.704,2.517,0.541,1.129,6.236,0.562,4.663,0.393,4.247,2.255,3.666,0.352,0.527,7.715,0.787,2.949,0.496,8.307,0.592,0.407,2.5,0.544,0.666,4.085,0.533,0.462,1.028,3.097,0.522,1.634,7.846,0.448,1.366,1.06,1.664,1.919,1.899 +NM_003571,1.031,1.114,1.015,0.933,0.957,1.181,1.519,0.945,1.004,1.01,0.992,0.923,0.971,0.754,0.996,1.125,0.939,0.984,0.964,0.977,1.138,0.919,0.914,0.999,1.152,1.052,1.012,0.908,1.01,1.4,1.07,1.0,0.987,1.43,0.827,1.0,1.29,0.884,1.08,0.934,0.886,1.143,0.971,0.882,1.109,0.991,1.141,0.944,1.022,0.953,1.029,1.261,0.979,1.378 +NM_003573,0.705,1.101,0.92,1.094,0.728,1.012,0.805,0.464,0.735,0.823,0.876,0.708,0.645,0.658,0.942,1.03,0.58,0.789,1.073,1.899,0.698,0.81,2.242,0.768,1.122,0.954,0.927,0.67,0.418,2.084,0.912,4.026,1.479,3.194,0.467,1.44,0.831,0.828,1.921,1.029,0.738,2.425,0.588,1.947,0.987,0.959,0.749,0.809,0.491,0.902,1.376,0.834,1.052,1.323 +NM_003574,0.87,1.003,1.086,1.013,1.101,1.185,0.926,0.924,1.164,1.001,0.994,0.95,0.962,1.111,1.095,1.273,0.906,1.122,1.01,1.041,0.926,0.755,1.119,0.956,0.823,1.066,0.934,0.963,0.915,1.051,0.986,0.852,0.962,1.022,0.892,0.83,0.937,0.907,0.985,0.979,1.239,0.997,0.889,0.847,0.989,1.024,1.006,0.835,1.223,1.029,0.998,0.979,1.231,1.026 +NM_003575,0.968,0.897,1.036,1.03,1.056,1.042,0.777,1.021,0.933,0.974,0.885,0.977,0.888,0.702,0.83,1.004,0.996,0.942,1.044,1.077,0.885,0.987,1.172,0.879,0.852,0.987,1.15,0.925,0.691,1.081,1.048,1.016,1.241,1.086,1.276,0.881,0.891,0.89,1.327,1.098,0.929,0.932,0.694,1.135,0.906,0.853,0.963,1.191,0.898,1.097,1.059,0.871,1.071,1.162 +NM_003576,1.124,0.723,1.14,0.658,1.235,1.542,0.679,1.136,1.489,0.966,1.009,1.056,0.707,0.915,1.149,1.538,1.262,1.031,1.5,0.979,0.678,0.859,0.871,1.291,0.467,1.15,1.275,1.12,0.492,1.525,1.629,0.9,0.966,1.465,1.69,0.571,0.994,1.349,0.859,0.467,1.563,0.912,0.542,0.997,1.04,0.896,1.227,1.244,0.95,0.915,0.95,0.628,1.107,0.762 +NM_003579,0.951,1.026,1.052,0.96,0.934,1.008,0.893,0.868,1.132,0.939,0.765,1.096,0.923,0.902,0.974,1.01,0.964,0.907,0.835,0.922,0.89,0.868,1.355,1.158,0.84,0.959,1.386,1.06,0.611,1.008,1.087,1.282,2.515,0.801,0.817,1.095,0.909,0.994,1.341,1.185,0.935,0.771,0.816,1.654,1.043,0.865,0.961,0.88,1.091,1.075,1.084,1.215,1.058,2.165 +NM_003580,0.779,0.906,1.179,0.706,0.96,0.987,0.699,0.744,1.181,0.996,0.947,1.027,0.845,0.852,1.048,1.214,0.786,0.856,0.983,1.008,0.601,0.79,1.234,1.107,0.696,0.897,1.207,0.927,0.625,1.195,1.013,1.378,1.463,1.306,0.569,1.03,0.964,0.987,1.095,1.344,1.127,1.075,0.618,1.08,1.079,1.046,1.004,0.834,1.086,0.783,0.991,0.887,0.959,1.728 +NM_003581,1.164,1.045,0.992,0.88,0.948,0.923,0.996,0.998,1.167,0.924,1.062,0.918,1.103,0.961,1.075,1.071,0.995,1.037,1.197,0.868,1.008,0.848,1.001,0.905,1.01,1.152,1.092,1.066,0.709,0.983,1.041,0.948,0.951,0.945,1.166,1.035,0.918,0.926,0.908,0.936,1.098,0.886,0.933,1.038,1.118,0.947,0.926,1.074,1.035,1.188,0.9,0.934,0.97,0.984 +NM_003582,0.883,1.027,1.39,1.038,0.9,0.927,1.007,0.78,0.864,0.922,0.971,0.942,0.888,0.91,0.993,1.034,1.12,0.857,1.258,0.958,0.942,0.839,1.055,1.006,0.976,0.933,1.194,0.825,0.798,1.001,1.029,1.504,1.803,1.108,0.819,1.234,0.91,0.928,1.124,1.147,0.848,1.074,0.968,1.273,0.914,0.947,0.926,0.89,0.873,1.082,0.987,1.123,1.269,1.161 +NM_003583,0.405,0.873,0.984,0.545,0.544,2.194,1.481,0.579,0.707,0.483,2.292,0.67,0.471,0.499,1.195,2.555,0.397,1.634,0.716,1.453,0.419,0.661,2.399,0.742,0.798,0.347,0.61,0.602,0.763,1.663,0.624,1.22,0.732,1.716,0.262,1.235,2.265,0.481,1.222,1.604,0.722,2.594,1.119,1.782,0.656,1.257,0.861,0.345,1.56,0.362,2.026,1.425,0.53,0.951 +NM_003584,1.036,0.742,1.799,0.828,1.373,0.794,0.443,0.859,1.898,1.399,0.836,1.07,0.871,0.947,1.267,1.367,1.123,0.984,2.402,0.809,0.653,1.206,0.993,1.649,0.439,1.11,1.748,1.122,0.407,0.816,1.668,0.916,1.923,0.889,0.763,0.749,0.88,1.12,0.928,0.681,1.481,0.757,0.65,1.007,1.397,0.801,1.109,1.11,0.751,1.146,0.921,0.826,1.24,1.403 +NM_003587,0.788,0.858,1.083,0.896,0.74,1.007,0.69,0.463,1.039,0.919,0.799,0.745,0.56,0.703,0.904,1.147,0.95,0.885,1.363,0.792,0.758,1.018,0.993,0.95,0.824,0.949,1.285,0.667,0.669,1.021,0.913,1.762,2.356,1.378,0.373,1.091,0.945,0.893,1.949,1.06,0.911,0.911,0.591,1.646,1.067,0.83,0.807,0.77,0.961,0.906,0.918,0.932,0.956,1.809 +NM_003588,1.464,0.752,1.883,0.928,2.428,0.864,0.576,3.096,2.812,1.319,0.875,2.376,1.468,1.855,1.621,1.373,1.39,1.231,2.461,0.741,0.85,2.096,0.772,1.763,0.588,2.074,1.748,2.301,0.535,0.856,2.648,0.678,1.919,0.897,7.181,0.761,0.824,2.318,0.899,0.79,1.613,0.8,0.555,0.845,1.683,0.833,1.432,3.123,0.674,1.371,0.803,0.814,1.583,1.179 +NM_003589,0.653,0.933,1.139,0.672,0.853,0.957,0.582,0.471,1.188,0.873,0.988,0.769,0.519,0.659,0.946,1.857,0.733,0.795,1.261,0.919,0.574,0.743,1.368,1.142,0.646,0.75,1.093,0.819,0.476,1.408,0.897,1.46,1.748,1.332,0.209,1.334,1.134,0.93,1.115,0.878,1.188,1.093,0.729,1.932,0.865,1.012,1.255,0.748,1.023,0.828,1.095,0.82,0.894,1.672 +NM_003590,0.915,0.947,1.077,1.118,1.002,0.998,1.198,0.891,0.828,1.035,0.987,0.91,0.956,1.092,0.766,0.793,0.905,0.98,1.116,1.0,1.091,1.062,0.9,1.056,1.126,1.008,0.979,1.032,1.286,0.979,0.996,1.089,0.965,1.097,0.854,0.916,1.033,1.027,0.838,1.058,0.908,1.074,1.0,0.831,1.051,0.859,1.059,0.885,1.142,0.998,1.004,0.909,1.062,0.87 +NM_003591,0.622,0.993,1.203,0.686,0.947,1.041,0.847,0.553,1.134,0.993,1.104,0.927,0.615,0.829,0.885,1.252,0.803,0.807,1.344,1.015,0.725,0.766,1.334,0.934,0.589,0.784,1.132,0.953,0.744,1.071,0.984,1.306,2.224,1.229,0.362,0.894,1.082,0.844,1.21,1.029,1.115,0.971,0.744,1.469,1.112,1.0,1.105,0.603,1.019,0.771,1.0,1.082,1.259,1.571 +NM_003592,0.7,1.036,1.463,0.531,1.024,0.922,0.674,0.466,1.471,1.523,0.616,0.829,0.597,0.66,0.876,0.963,0.963,0.869,1.106,0.926,0.523,0.992,1.864,1.281,0.634,0.782,1.491,0.96,0.54,1.306,1.043,1.531,1.431,1.013,0.473,0.698,1.034,1.122,1.488,0.921,1.404,1.181,0.659,0.898,1.419,0.811,1.272,0.865,1.102,0.933,1.096,0.973,1.175,1.857 +NM_003593,1.035,0.898,0.949,0.953,1.198,1.141,1.0,0.961,1.161,1.016,1.05,1.021,0.977,0.95,0.987,0.996,1.058,1.044,1.137,0.974,1.072,0.926,0.775,0.987,0.926,1.019,1.058,1.028,1.006,0.925,0.982,0.969,0.995,1.037,0.945,1.103,1.0,1.113,0.923,1.061,1.024,0.97,1.099,1.043,0.999,0.88,1.081,1.028,0.999,0.894,0.951,0.995,1.056,1.049 +NM_003596,0.927,1.029,1.135,0.976,1.228,1.33,0.774,0.764,1.253,0.854,1.066,0.752,0.79,0.809,0.987,0.732,0.957,0.967,1.163,0.848,0.85,1.175,0.837,1.127,0.898,1.138,0.989,1.16,0.554,1.534,1.042,2.574,1.84,1.422,1.017,0.784,0.989,0.95,1.006,0.898,1.328,1.061,0.68,1.53,0.907,0.718,1.01,1.022,0.603,0.905,0.833,1.546,0.825,1.465 +NM_003597,1.059,0.941,1.011,1.057,1.16,0.929,0.879,0.957,0.957,0.958,1.091,1.126,0.964,0.747,1.006,0.968,1.028,1.086,0.873,0.958,0.901,0.868,0.927,0.994,1.034,0.958,1.037,0.982,0.855,1.062,1.008,1.192,1.002,0.958,1.305,1.04,0.881,0.959,1.113,0.948,0.929,0.967,1.007,0.934,0.88,1.016,0.99,1.045,0.848,0.985,0.924,0.862,0.984,0.993 +NM_003598,0.524,1.641,0.95,0.741,0.621,1.007,0.842,0.46,0.654,0.944,0.949,0.673,0.705,0.636,0.713,1.041,0.526,0.887,0.825,0.819,0.64,0.581,1.309,0.635,1.474,0.654,0.896,0.666,0.497,1.43,0.585,4.022,3.276,1.933,0.403,0.84,1.037,0.704,1.643,4.554,0.888,1.279,1.249,2.532,0.663,1.151,0.802,0.529,0.753,0.777,0.991,2.39,1.27,1.759 +NM_003599,0.838,1.25,1.084,0.738,0.792,0.83,0.824,0.919,0.847,0.895,0.88,0.938,0.962,0.81,0.908,0.938,1.048,0.952,1.024,0.92,0.925,1.015,1.047,1.073,0.776,1.0,1.15,1.107,1.0,0.848,0.903,1.4,2.854,1.022,0.915,1.001,1.081,0.976,1.068,1.138,1.19,1.041,0.781,1.166,0.877,0.808,1.005,0.882,0.839,1.003,0.896,0.849,1.046,1.646 +NM_003601,0.595,1.003,1.269,0.598,0.972,1.346,0.758,0.815,1.198,0.956,0.916,1.058,0.664,0.672,1.023,1.963,0.935,0.871,0.717,1.046,0.493,1.093,0.834,1.463,0.588,0.576,1.408,0.818,0.638,1.21,1.161,1.688,4.002,1.271,0.378,0.477,1.106,1.109,1.597,1.117,1.024,1.082,0.508,0.893,1.011,0.967,1.201,0.769,1.247,0.772,1.167,0.862,0.626,2.035 +NM_003602,0.993,0.992,1.016,0.946,0.969,0.993,0.83,1.099,0.978,0.866,0.997,1.042,1.055,1.007,0.996,0.848,0.83,1.023,0.958,0.985,0.883,0.935,1.0,0.96,0.945,1.02,0.961,0.927,0.837,1.014,0.99,0.934,1.028,1.007,1.004,0.986,1.077,1.05,1.055,1.139,0.868,0.932,0.9,1.049,1.039,1.0,0.894,0.913,0.922,1.016,1.189,1.062,1.016,1.002 +NM_003603,2.192,2.0300000000000002,2.108,2.098,1.908,2.143,1.713,1.984,2.4859999999999998,1.722,1.883,1.8210000000000002,2.315,1.736,1.646,1.944,3.332,1.962,2.137,2.071,2.044,2.447,1.9289999999999998,2.163,2.1630000000000003,2.604,2.287,2.2479999999999998,1.765,2.088,1.9700000000000002,3.339,2.0860000000000003,2.443,2.201,1.693,1.891,1.754,2.1500000000000004,1.571,2.241,2.318,1.6219999999999999,1.974,1.986,1.585,1.853,2.0309999999999997,1.573,2.02,1.87,1.768,2.253,2.11 +NM_003604,1.11,1.166,0.929,1.026,1.022,0.97,1.064,1.068,1.082,0.755,1.17,0.946,1.051,0.743,0.886,1.142,0.971,1.211,0.935,0.955,0.946,1.036,0.977,1.02,0.976,0.942,1.035,0.826,1.205,0.998,0.973,1.091,0.891,0.894,1.092,0.911,0.914,0.961,1.032,1.006,0.945,1.125,1.254,0.99,1.041,1.033,1.043,1.145,0.919,0.991,0.909,0.945,0.919,0.981 +NM_003605,0.971,0.969,0.984,1.028,1.014,1.162,1.072,1.049,1.055,1.043,1.081,1.013,0.946,0.783,0.984,1.142,1.059,1.105,0.933,1.061,1.001,0.885,0.958,1.01,1.026,0.912,0.846,1.151,1.427,1.013,0.84,0.972,0.971,0.917,0.962,1.022,0.937,1.088,0.815,0.803,0.974,0.957,0.821,1.074,0.963,1.141,0.955,0.98,0.993,1.001,0.999,1.09,0.954,0.877 +NM_003607,1.048,1.039,0.963,0.988,0.927,1.398,0.913,0.882,0.968,1.0,1.098,0.84,0.919,0.996,1.135,1.099,0.815,1.0,1.07,1.097,0.865,1.099,1.033,0.991,1.232,0.961,0.853,1.017,1.298,1.133,0.914,0.967,1.1,1.114,0.933,1.038,0.851,0.909,1.394,0.844,0.973,1.077,0.981,1.295,0.798,1.566,0.989,0.989,1.199,0.87,1.134,0.988,0.884,1.272 +NM_003608,0.936,1.001,1.285,0.959,0.821,0.891,0.988,0.88,0.877,0.853,1.021,1.024,0.823,0.885,0.922,0.825,0.855,0.915,1.015,0.61,0.827,0.921,0.988,0.884,1.03,0.878,0.991,0.946,0.793,1.096,0.845,1.252,0.903,1.271,0.853,0.915,1.014,0.962,0.993,2.714,0.958,1.243,0.883,0.988,0.988,1.04,0.92,1.019,0.999,0.913,0.913,1.322,1.036,1.415 +NM_003609,0.84,0.888,1.192,0.839,1.002,0.919,0.861,0.969,0.987,0.995,0.727,0.848,0.884,0.91,0.998,1.183,0.953,0.956,1.316,1.095,0.877,0.901,1.024,1.035,0.964,1.096,1.202,0.886,1.119,1.041,0.932,1.532,2.749,1.112,0.78,0.983,1.015,0.712,1.385,0.803,1.033,1.085,0.82,0.98,1.127,0.895,1.044,0.973,0.9,0.887,1.125,1.054,0.915,1.308 +NM_003610,0.605,0.891,1.459,0.661,1.125,0.838,0.519,0.529,1.269,1.366,0.525,1.0,0.61,0.713,0.893,1.164,1.14,0.6,1.343,0.851,0.586,0.852,1.598,1.324,0.415,0.983,1.582,0.963,0.386,1.072,1.056,0.855,1.592,0.966,0.219,1.078,0.66,1.104,1.217,1.549,1.305,0.874,0.486,1.551,1.301,0.888,1.134,0.799,0.99,0.979,0.928,1.303,1.038,2.746 +NM_003613,0.866,0.978,1.045,0.955,0.985,1.104,1.131,0.968,1.109,1.027,0.943,0.944,1.003,1.039,1.006,1.025,0.833,0.909,0.94,1.058,1.128,0.875,1.246,1.023,0.99,1.042,0.957,1.039,0.932,1.315,0.908,1.224,0.86,1.237,0.797,0.903,1.015,0.962,0.972,0.988,1.14,1.624,0.884,0.98,0.897,1.115,0.953,0.974,0.981,1.019,1.081,0.873,0.834,0.949 +NM_003614,1.018,0.981,1.004,0.94,0.781,0.889,0.921,1.017,1.02,0.897,0.96,0.976,1.018,0.831,0.87,0.838,1.044,1.009,0.891,1.026,0.996,1.034,1.014,1.041,1.029,0.901,0.999,0.974,1.036,0.976,0.993,0.969,0.996,1.004,1.03,0.869,1.064,1.01,1.04,1.033,0.926,1.002,1.24,0.968,0.955,1.166,0.982,0.965,0.955,0.987,0.86,1.001,1.007,0.919 +NM_003615,0.734,1.03,1.244,0.836,0.909,1.325,0.781,0.827,0.964,1.347,2.181,0.895,0.664,0.658,0.928,3.908,0.795,1.044,0.979,1.809,0.696,0.865,1.693,1.232,0.747,0.7,1.346,0.637,0.632,1.323,0.765,1.426,0.811,1.075,0.487,0.771,3.592,0.921,1.004,1.457,1.007,3.254,1.477,0.642,1.016,1.624,0.945,0.776,1.478,0.81,1.23,1.167,0.717,1.161 +NM_003617,0.615,2.9,0.583,1.421,0.623,1.529,2.349,0.733,0.529,0.615,1.997,0.501,0.58,0.533,0.92,1.404,0.53,0.783,0.49,0.774,0.507,0.56,2.261,0.569,1.297,0.506,0.588,0.63,1.034,5.719,0.461,2.432,1.157,3.146,0.561,0.909,1.348,0.778,4.515,1.042,0.851,3.387,0.773,1.002,0.74,1.116,0.929,0.632,0.696,0.75,1.555,1.748,0.556,1.153 +NM_003618,0.869,1.062,1.095,1.025,0.841,1.117,0.884,0.799,1.102,0.763,1.246,0.948,0.854,0.835,1.052,1.206,0.747,0.916,0.958,1.038,0.872,0.774,1.023,0.863,1.007,0.846,0.933,0.983,0.728,1.001,0.858,0.93,1.259,1.258,0.965,1.126,1.081,0.938,0.985,0.892,1.054,0.895,1.018,1.269,0.942,0.936,0.914,0.828,0.954,0.844,0.972,0.902,1.036,1.148 +NM_003619,1.066,1.091,0.91,0.999,1.011,0.945,0.883,0.967,1.225,0.974,1.207,0.862,0.952,0.848,0.834,1.033,0.882,0.811,1.091,1.049,1.062,0.804,1.035,1.028,0.991,1.058,0.851,0.899,0.75,1.061,0.908,0.993,0.97,1.032,0.909,0.968,0.92,1.036,0.841,0.828,0.974,0.954,1.109,1.001,0.954,1.018,1.077,1.027,1.02,0.923,1.025,1.163,0.821,1.091 +NM_003620,0.769,0.963,1.214,0.718,0.934,1.113,0.886,1.114,1.173,0.875,0.848,1.196,0.903,0.896,1.011,1.307,0.935,1.053,0.859,1.16,0.633,1.126,1.319,1.078,0.588,0.674,1.353,1.115,0.823,0.924,1.114,1.179,1.213,0.933,0.805,0.746,1.095,1.323,1.164,1.039,1.053,1.124,0.775,0.767,1.157,1.223,1.099,0.958,1.214,0.994,1.02,0.922,0.658,1.062 +NM_003624,0.623,1.221,1.22,0.694,1.013,0.998,0.808,0.489,1.068,0.987,0.792,0.747,0.539,0.603,0.827,0.97,0.993,0.977,0.748,1.448,0.506,0.81,1.857,0.964,0.773,0.75,1.107,0.95,0.548,1.225,0.814,1.329,1.133,1.249,0.473,1.126,0.98,0.96,1.112,1.079,1.144,1.162,0.934,1.115,1.158,1.122,1.062,0.734,1.139,0.774,1.159,0.745,0.842,1.181 +NM_003625,0.954,0.949,0.997,1.129,1.024,0.914,0.937,0.893,1.056,1.183,0.946,1.035,0.984,1.18,0.988,0.892,1.019,0.908,0.987,0.936,0.995,0.965,1.05,1.032,1.027,1.052,0.997,1.054,0.968,1.028,0.928,1.083,1.007,0.973,0.995,1.056,1.06,1.001,0.975,1.019,1.028,0.9,0.907,1.022,0.938,0.9,0.876,0.986,0.859,1.045,1.041,0.96,1.083,0.932 +NM_003626,0.585,1.016,0.937,0.71,0.761,1.438,0.734,0.43,1.058,0.805,1.273,0.772,0.48,0.593,1.056,1.153,0.68,0.741,0.856,1.338,0.627,0.591,1.324,0.922,0.616,0.637,1.041,0.684,0.402,1.52,0.806,2.055,2.83,1.337,0.371,1.598,1.061,0.595,1.047,0.95,0.888,1.237,0.763,2.665,0.86,1.283,0.964,0.578,1.125,0.61,1.233,0.859,0.771,2.364 +NM_003627,0.716,1.341,0.779,0.994,0.733,1.983,0.765,0.683,0.774,0.729,2.055,0.652,0.617,0.674,0.833,1.324,0.721,0.761,0.746,1.089,0.734,0.739,1.07,0.773,1.322,0.775,0.71,0.672,0.819,2.835,0.815,1.114,0.876,1.497,0.67,1.348,1.382,0.771,2.578,1.087,0.867,2.164,1.441,1.971,0.756,1.336,0.979,0.718,0.981,0.761,1.9,0.721,0.767,0.78 +NM_003628,0.974,0.975,1.0,1.015,1.263,0.981,0.866,0.94,1.194,1.032,0.88,0.905,0.904,0.957,1.137,0.831,0.888,0.915,0.887,0.992,1.065,0.937,1.044,1.021,0.98,1.108,0.969,0.975,0.914,0.898,1.101,1.041,1.019,1.032,1.256,1.048,0.8,0.922,1.138,0.945,0.992,1.019,0.919,1.332,0.986,1.027,1.108,0.886,1.045,1.05,0.983,0.927,1.01,1.27 +NM_003629,1.086,0.896,1.154,1.03,0.885,0.917,0.967,0.844,0.989,1.019,1.0,1.073,0.98,0.97,1.216,1.129,1.054,0.927,0.885,0.921,1.0,1.034,1.103,1.059,1.057,0.97,0.976,0.753,0.707,0.877,0.85,0.83,0.955,0.948,0.839,0.993,0.91,0.991,1.16,1.029,1.065,1.055,0.946,0.967,1.026,1.003,1.018,1.017,1.083,1.062,1.103,1.003,1.077,1.02 +NM_003630,0.981,0.845,1.418,0.998,1.242,1.002,0.794,0.756,1.48,1.381,0.869,0.985,1.063,0.903,1.207,1.301,0.941,1.069,2.094,0.827,0.941,1.087,0.889,1.433,0.756,1.031,1.563,1.36,0.95,0.936,1.256,0.87,1.974,1.215,0.822,0.834,0.965,1.364,1.081,0.742,1.153,0.811,0.727,0.852,1.331,0.798,0.929,1.113,0.765,1.176,0.807,0.808,1.51,1.737 +NM_003631,0.873,0.881,1.021,1.029,0.918,1.082,0.949,0.817,1.036,1.083,0.923,0.892,0.767,0.86,1.193,1.247,0.806,1.006,0.995,1.024,0.784,0.81,1.123,0.874,0.879,0.968,0.914,0.946,0.905,1.093,0.936,1.009,1.706,0.968,0.736,1.052,0.971,0.837,1.199,0.783,0.951,1.001,1.018,1.656,1.077,1.239,0.857,0.815,1.181,0.874,1.188,0.985,1.107,2.119 +NM_003632,0.928,1.149,0.845,1.055,0.912,0.927,1.076,1.055,0.91,0.986,0.981,0.878,0.954,0.874,1.078,0.974,0.849,0.95,0.89,1.014,0.949,0.702,1.025,0.834,1.047,1.023,0.935,0.879,0.886,1.348,0.817,2.711,1.005,1.113,0.95,1.08,1.038,0.846,1.237,1.683,1.042,1.093,0.851,1.027,0.857,1.031,0.911,0.913,0.86,0.885,0.897,1.059,0.871,0.998 +NM_003634,0.605,1.21,1.299,0.72,0.706,1.351,0.595,0.504,1.046,0.797,1.23,0.734,0.865,0.722,1.111,1.826,0.797,0.848,1.184,0.909,0.57,0.681,1.233,0.927,0.676,0.669,1.054,0.724,0.633,1.32,0.918,1.03,1.869,1.519,0.36,0.479,1.416,0.704,1.322,0.735,0.835,1.318,1.181,1.253,0.77,1.368,0.908,0.64,1.042,0.715,1.224,0.747,1.067,2.225 +NM_003635,0.946,1.203,1.251,1.003,1.013,0.84,0.8,0.696,1.406,1.248,0.889,0.892,0.788,0.843,0.93,0.93,1.103,0.961,1.054,1.132,0.79,1.094,0.992,1.067,0.902,0.923,1.425,0.881,0.627,1.204,1.025,1.46,0.941,1.217,0.651,0.831,0.916,0.969,0.996,1.025,1.27,1.111,0.758,0.891,1.118,0.883,0.973,1.048,0.765,1.058,0.997,1.05,0.992,1.367 +NM_003637,1.041,0.961,1.003,0.988,1.034,1.064,1.021,0.902,0.999,1.052,0.957,0.958,1.083,0.931,1.119,1.102,1.039,0.988,0.851,1.027,1.012,0.947,1.027,1.066,0.965,1.001,0.899,1.067,1.082,1.098,0.927,0.878,1.086,1.023,0.869,1.113,1.036,0.963,1.056,0.905,1.023,0.969,0.952,0.963,0.965,0.923,1.034,1.078,0.969,1.035,0.986,1.115,0.991,0.883 +NM_003640,0.777,1.184,0.929,0.743,0.823,1.104,0.737,0.658,1.09,0.89,0.864,0.759,0.604,0.86,1.103,1.224,0.826,0.737,1.11,1.053,0.754,0.708,1.166,1.098,0.781,0.589,1.35,0.725,0.553,1.143,0.816,1.735,3.177,1.283,0.436,0.792,0.964,0.903,1.605,1.015,1.059,1.106,0.651,1.23,0.94,0.908,0.804,0.606,1.033,0.703,1.035,0.989,0.952,2.347 +NM_003641,0.838,0.801,1.549,0.643,0.465,0.656,0.796,0.44,0.602,0.892,0.694,0.615,0.493,0.356,0.991,1.476,1.868,0.505,0.69,0.442,1.009,0.363,1.377,0.901,0.692,0.45,1.441,0.475,0.156,1.057,0.557,2.773,13.5,1.615,0.186,3.796,1.188,0.602,2.262,7.137,0.817,1.598,0.878,11.52,1.052,0.596,2.158,0.591,4.066,0.957,1.118,3.145,2.155,11.02 +NM_003642,0.616,1.035,1.239,0.604,0.908,1.601,0.713,0.81,1.099,0.938,0.806,0.997,0.909,0.591,1.042,2.438,0.902,0.87,0.675,1.023,0.369,1.143,1.257,1.308,0.594,0.458,1.892,0.831,0.612,1.183,1.14,1.486,2.597,1.209,0.327,0.447,1.059,1.123,2.166,1.212,1.056,0.912,0.582,0.696,1.067,0.911,0.952,0.932,1.249,0.771,1.144,0.738,0.434,2.593 +NM_003643,1.001,0.939,0.889,1.107,0.917,1.125,1.073,0.965,0.903,0.913,1.17,1.123,1.028,1.002,1.028,1.038,1.01,1.02,0.996,0.903,1.064,1.011,0.973,0.951,0.993,0.93,0.926,1.056,1.222,1.136,1.057,0.948,1.162,0.974,0.988,0.943,1.046,1.061,0.987,0.998,1.177,1.19,1.197,0.851,0.992,0.945,1.072,0.952,0.985,0.884,1.031,1.07,1.259,0.988 +NM_003644,2.154,2.02,2.216,2.0439999999999996,2.109,1.893,1.9809999999999999,1.9100000000000001,2.168,1.8639999999999999,1.859,1.877,2.25,1.805,1.577,1.9289999999999998,1.987,1.8719999999999999,2.431,1.984,2.0119999999999996,2.013,1.933,1.946,2.073,2.123,2.1029999999999998,2.102,1.908,2.1109999999999998,2.034,2.154,1.811,1.923,2.286,1.95,1.745,2.078,1.958,1.931,2.2830000000000004,1.733,1.871,1.831,1.8980000000000001,1.876,1.9900000000000002,2.002,1.82,2.29,1.9529999999999998,1.7850000000000001,2.2,2.0069999999999997 +NM_003645,0.77,0.935,0.84,0.79,0.636,1.743,0.733,0.72,0.939,0.72,3.55,0.661,0.782,0.652,2.378,3.891,0.87,1.065,0.826,2.356,0.677,0.823,3.143,0.637,0.779,0.709,1.394,0.768,0.58,1.086,0.95,0.621,2.651,1.147,0.473,1.332,3.266,0.7,2.282,1.206,0.985,1.769,1.43,1.384,0.843,3.666,1.609,0.612,2.859,0.711,1.991,0.958,0.594,1.889 +NM_003646,1.035,0.927,0.887,1.237,0.724,1.495,0.61,0.71,0.901,0.75,1.246,0.885,0.984,0.618,0.888,1.515,0.948,0.803,1.173,0.899,1.154,1.124,0.937,0.949,0.859,1.084,0.897,0.634,0.86,1.248,0.682,1.0,1.352,1.169,0.654,1.125,0.951,0.873,2.458,1.193,0.849,1.151,1.209,1.889,0.781,1.01,0.975,1.106,0.894,0.816,0.909,0.725,0.797,0.858 +NM_003648,1.701,2.918,1.8530000000000002,2.1430000000000002,1.7389999999999999,2.8070000000000004,2.346,1.643,1.647,1.681,2.035,1.8690000000000002,1.6309999999999998,1.5679999999999998,1.916,2.1710000000000003,1.6560000000000001,2.2009999999999996,1.739,2.431,1.5390000000000001,1.697,1.984,1.704,3.394,1.588,1.564,1.669,2.655,3.6189999999999998,1.541,2.182,2.006,3.315,1.711,1.839,2.393,1.573,2.177,1.9209999999999998,1.54,2.678,1.792,2.219,1.583,1.946,1.733,1.783,1.9859999999999998,1.69,1.96,1.916,1.585,2.748 +NM_003649,1.109,0.979,1.216,0.861,0.981,1.111,1.028,1.004,0.995,1.031,0.979,1.034,0.964,0.945,1.129,0.901,1.049,0.953,0.986,1.004,0.958,1.022,1.112,1.042,1.041,0.872,0.968,0.91,0.782,1.063,1.128,1.022,1.029,1.063,0.981,0.946,1.079,1.022,1.152,1.377,1.086,0.989,0.999,0.984,1.089,0.755,0.981,1.002,1.026,1.015,1.008,1.207,0.877,0.994 +NM_003650,0.851,0.988,1.494,1.092,0.938,0.966,1.187,1.034,0.87,0.851,0.924,0.868,1.216,1.077,0.874,0.801,0.957,1.018,0.998,1.008,0.872,0.901,0.96,0.994,1.094,0.946,1.179,0.919,0.787,1.016,0.79,0.991,0.794,1.364,0.775,0.786,0.9,0.851,1.77,1.223,1.183,1.23,1.052,1.068,1.173,0.897,0.859,0.964,0.822,0.969,0.965,1.305,1.378,1.904 +NM_003651,1.355,0.562,3.092,0.557,2.304,0.466,0.311,1.648,2.781,2.017,0.366,2.131,1.672,1.145,1.562,1.107,2.002,1.461,2.166,0.689,0.86,1.773,0.762,2.47,0.193,1.736,1.974,3.083,0.163,0.479,2.673,1.221,2.832,0.622,2.255,0.589,0.4,2.379,0.871,0.714,2.436,0.708,0.281,0.922,2.541,0.351,1.444,1.767,0.583,1.77,0.828,1.149,1.638,1.13 +NM_003652,1.102,1.136,0.881,0.917,1.072,0.927,1.094,1.075,0.884,0.895,1.05,0.934,0.932,0.93,0.917,1.1,1.058,1.108,0.999,0.9,0.954,0.969,1.12,0.989,1.028,1.154,0.975,1.084,1.017,0.863,1.083,4.653,1.015,0.997,1.06,1.006,0.967,1.043,1.039,0.963,1.056,0.89,1.064,1.02,0.985,0.976,0.915,1.059,1.01,1.017,1.008,1.039,0.879,1.177 +NM_003653,0.696,0.787,1.342,0.664,1.089,0.977,0.583,0.729,1.511,1.434,0.795,1.12,0.848,0.622,0.946,1.34,1.001,0.926,1.693,0.831,0.818,1.056,1.21,1.51,0.534,0.827,1.544,1.171,0.594,0.988,1.055,0.914,2.457,1.091,0.382,0.746,0.863,1.543,0.871,0.592,1.446,1.003,0.613,1.168,1.226,0.822,0.969,0.816,1.195,0.834,0.93,0.811,1.009,1.507 +NM_003654,1.013,0.927,1.045,0.971,0.926,1.007,1.249,1.011,0.906,0.919,0.971,1.023,0.937,0.964,1.111,1.123,1.019,0.928,0.983,0.981,1.023,1.077,0.923,1.001,1.073,0.876,0.929,0.914,0.771,1.044,0.944,1.098,1.009,0.991,0.959,0.999,0.926,1.092,1.023,1.17,0.854,0.981,0.877,1.059,0.933,0.944,0.968,0.9,0.867,1.095,0.951,0.838,1.107,1.125 +NM_003656,1.014,1.162,0.925,1.011,0.945,1.067,1.002,0.873,1.056,0.779,0.932,0.829,0.898,0.771,0.796,1.119,1.001,0.862,0.945,0.843,0.922,0.858,1.081,1.049,1.064,0.889,0.979,0.954,0.8,1.178,1.026,1.281,1.058,1.092,0.865,1.034,0.915,0.969,1.161,0.795,1.082,0.988,1.047,1.074,0.909,0.998,0.995,0.953,0.962,0.999,0.929,1.076,1.063,1.149 +NM_003657,0.183,2.504,0.348,1.909,0.294,3.151,1.811,0.226,0.313,0.189,2.87,0.106,0.283,0.248,1.009,1.081,0.455,2.108,0.195,2.658,0.116,0.161,2.813,0.166,2.049,0.32,0.207,0.204,1.829,4.781,0.336,0.443,0.219,4.938,0.341,1.102,2.121,0.174,3.057,0.186,0.394,2.821,1.472,0.678,0.245,2.507,0.407,0.278,1.119,0.313,2.261,0.536,0.263,0.966 +NM_003658,3.707,0.695,2.926,1.629,2.97,0.606,0.636,1.307,2.79,2.457,0.684,1.506,1.933,2.738,1.826,1.556,1.466,1.935,4.658,0.757,1.564,1.523,0.745,1.983,0.58,4.057,1.637,3.09,0.516,0.86,2.557,0.721,0.839,0.739,0.504,0.747,0.743,2.622,0.797,0.609,2.636,0.771,0.772,0.634,2.264,0.752,1.776,2.569,0.934,1.68,1.062,0.673,1.504,0.715 +NM_003660,1.26,0.858,0.987,0.998,0.94,0.982,0.815,0.904,0.961,1.066,1.043,1.06,1.003,0.827,1.217,1.326,0.971,0.887,1.455,0.915,0.886,1.157,1.274,1.121,0.906,1.315,1.002,0.957,0.836,0.92,1.054,0.958,1.389,0.966,0.801,0.991,0.962,0.814,1.379,1.14,1.038,0.936,0.756,1.014,1.065,0.871,1.233,1.267,0.912,1.308,1.036,0.792,0.972,0.993 +NM_003662,0.973,1.683,1.675,1.091,1.151,1.403,1.178,0.697,2.031,1.432,0.661,0.935,0.914,0.953,1.096,1.025,1.063,1.319,2.103,0.731,0.785,1.206,0.545,1.727,0.637,1.019,1.48,1.103,0.78,2.174,1.634,0.82,1.215,2.34,0.396,0.869,1.021,1.181,1.695,0.344,1.949,0.727,0.442,0.632,1.405,0.474,0.813,1.022,0.509,1.116,0.598,0.524,0.907,1.088 +NM_003663,0.848,1.073,1.202,0.813,1.066,1.031,0.679,0.756,1.154,0.933,1.126,0.819,0.767,0.864,1.061,1.366,0.952,0.916,1.145,0.987,0.719,0.745,1.216,1.079,0.839,0.757,1.565,0.961,0.591,1.152,0.978,1.282,1.36,1.349,0.565,0.883,0.995,0.908,1.087,0.907,1.184,1.149,0.873,0.853,0.89,1.174,0.807,0.774,1.092,0.855,0.932,0.879,0.888,1.367 +NM_003664,0.672,0.932,1.245,0.742,0.976,1.12,0.608,0.396,1.124,1.097,1.269,0.712,0.467,0.623,1.013,1.619,0.78,1.0,1.315,1.274,0.468,0.641,1.429,0.679,0.848,0.946,1.075,0.764,0.55,1.436,0.995,0.923,1.527,1.574,0.67,0.666,1.358,0.768,1.685,0.505,0.991,1.163,0.805,0.727,1.125,1.183,0.747,0.764,1.105,0.89,1.316,0.648,1.061,1.028 +NM_003667,1.143,1.071,0.906,0.866,1.009,0.789,0.955,1.255,0.752,0.916,0.85,0.93,1.08,1.014,0.959,1.038,0.964,0.914,1.032,0.933,0.985,0.904,1.133,1.05,0.985,0.948,1.02,1.0,1.213,1.075,0.991,0.983,1.084,0.968,1.044,0.885,1.128,1.1,1.012,1.042,0.958,1.091,0.844,0.994,1.049,0.979,1.008,0.995,0.935,0.853,0.957,1.052,0.805,0.832 +NM_003668,0.527,0.885,0.982,0.598,0.724,2.059,0.602,0.673,1.112,0.813,1.37,0.894,0.667,0.6,1.276,2.475,0.805,0.831,0.808,1.266,0.412,0.89,1.543,1.195,0.608,0.527,1.239,0.759,0.531,1.479,0.993,1.17,2.035,1.45,0.326,0.88,1.523,0.878,1.253,1.186,1.006,1.119,0.712,0.76,0.862,1.428,1.155,0.579,1.533,0.659,1.351,0.823,0.607,2.672 +NM_003669,1.045,1.003,1.161,1.074,1.13,1.111,1.011,0.982,1.002,0.957,0.951,0.99,1.027,1.0,1.245,0.889,0.891,0.779,1.013,1.02,1.015,0.948,1.033,1.135,1.086,0.943,1.117,0.992,1.242,0.949,1.111,1.015,1.336,0.928,1.076,0.91,0.979,0.985,1.122,0.973,1.03,1.032,0.961,1.073,1.111,1.359,0.937,0.996,0.887,1.014,0.873,0.838,1.081,1.111 +NM_003670,1.53,0.424,3.32,1.001,1.87,0.514,0.346,1.203,2.731,1.453,0.503,1.417,0.847,1.483,1.255,0.804,1.958,1.111,2.894,0.585,1.257,1.581,0.588,1.836,0.283,1.869,2.273,1.701,0.244,1.051,1.878,0.999,1.406,0.856,1.024,0.712,0.638,1.857,0.911,1.109,2.215,0.558,0.991,0.83,2.046,0.984,1.316,1.314,0.748,2.173,0.818,1.096,3.587,0.924 +NM_003671,0.99,0.958,0.989,0.974,0.843,1.081,0.914,1.278,1.049,1.055,0.99,1.053,0.899,0.857,0.945,1.199,1.028,1.004,0.984,1.095,0.939,0.963,1.17,1.046,0.976,0.958,1.043,0.897,1.046,0.95,1.025,1.077,1.026,1.106,1.092,1.139,1.034,0.931,1.067,0.978,1.002,1.034,1.16,0.88,0.8,0.997,1.116,0.939,1.02,0.977,0.856,0.92,0.858,1.14 +NM_003672,0.937,1.04,0.999,0.925,0.934,1.078,0.983,0.807,0.958,0.866,1.028,0.979,0.902,1.07,1.106,1.121,1.021,0.874,0.989,1.048,0.915,0.868,0.985,0.961,0.973,0.952,1.101,0.941,1.11,0.919,1.017,1.093,1.196,0.998,0.853,0.96,1.119,0.862,1.052,1.027,0.916,1.128,0.929,0.957,1.016,1.124,0.906,1.17,1.115,0.738,1.156,0.905,0.933,1.006 +NM_003673,0.996,1.003,0.938,0.94,0.937,1.056,0.77,0.885,0.873,1.01,0.96,0.986,0.995,1.209,1.063,0.998,1.051,1.029,1.133,0.977,1.046,1.198,0.973,1.111,1.051,1.014,1.062,0.956,0.901,1.011,1.012,1.014,0.933,1.134,0.995,0.917,1.012,0.882,0.921,0.972,0.94,1.053,0.993,0.978,0.905,0.856,1.022,1.095,1.017,1.022,1.025,1.184,1.066,0.999 +NM_003674,1.029,0.988,0.915,1.049,0.835,1.005,1.205,0.948,1.123,0.968,1.096,0.965,0.991,0.99,0.932,1.016,1.05,0.926,0.998,0.989,1.053,0.994,0.933,1.114,1.026,1.149,0.997,1.193,1.024,1.063,0.792,1.031,1.128,0.811,0.994,0.93,1.116,0.992,0.996,0.973,1.01,0.867,1.038,0.981,1.003,0.984,0.986,0.962,1.037,1.122,1.149,0.997,1.149,1.003 +NM_003675,0.571,1.036,1.24,0.611,0.899,1.735,0.767,0.765,1.103,0.872,1.197,0.96,0.707,0.904,1.187,2.013,1.016,1.053,0.844,1.094,0.492,0.949,1.093,1.31,0.541,0.573,1.693,0.827,0.433,1.309,1.241,1.453,2.393,1.361,0.497,0.502,1.268,1.014,1.115,0.694,0.999,1.143,0.87,0.684,0.862,1.329,1.021,0.669,1.103,0.679,1.129,0.582,0.649,1.532 +NM_003676,1.123,0.851,1.27,0.703,1.416,1.062,0.668,0.663,1.184,1.167,0.868,1.206,0.799,0.841,0.936,1.184,0.994,0.779,1.038,0.803,0.944,1.22,1.398,1.072,0.844,1.093,1.133,0.935,0.401,0.995,0.892,1.864,1.993,0.768,0.401,0.789,1.128,1.195,1.191,0.752,1.306,1.035,0.644,1.177,0.922,0.868,1.069,0.934,0.739,1.06,0.791,0.856,0.98,1.076 +NM_003677,0.846,0.789,1.335,0.7,1.277,0.95,0.551,0.591,1.362,1.399,1.116,0.747,0.717,0.824,0.993,1.336,0.847,0.889,1.486,0.854,0.638,0.649,1.215,1.293,0.538,0.783,1.391,1.067,0.345,0.809,1.161,1.062,1.992,1.342,0.313,1.266,0.941,0.9,1.1,0.979,1.425,0.985,0.67,0.858,1.351,1.007,1.176,0.892,0.955,0.946,0.876,0.924,1.139,1.983 +NM_003680,0.835,0.681,0.973,0.791,0.713,1.293,0.829,0.409,1.08,1.179,1.265,0.811,0.443,0.674,0.894,1.423,0.746,0.95,1.404,0.646,0.666,0.934,1.091,1.673,0.615,0.909,1.089,0.61,0.525,1.156,0.836,0.988,2.747,1.325,0.249,1.053,0.984,0.895,1.979,0.798,1.207,1.154,0.584,1.977,1.173,0.986,1.061,0.849,1.148,0.97,1.047,0.957,1.198,1.885 +NM_003681,0.852,0.705,1.079,0.94,0.895,1.087,0.612,0.466,1.172,1.096,1.073,0.862,0.695,0.478,0.643,1.288,0.996,1.254,1.58,0.691,0.916,1.077,1.057,1.001,0.69,1.236,1.038,0.837,0.75,0.999,0.71,0.961,1.937,1.136,0.731,0.848,0.856,0.947,1.969,1.36,1.033,0.954,0.604,1.802,1.242,0.757,1.021,1.395,0.575,1.27,0.909,0.939,1.128,2.107 +NM_003683,1.014,1.0,1.023,0.982,1.028,1.133,0.857,1.124,1.002,0.999,1.101,1.044,1.024,1.215,0.995,0.973,1.103,1.258,0.97,1.012,1.038,0.915,0.968,0.931,0.973,1.075,0.963,0.962,0.999,0.958,1.023,1.126,1.009,0.968,0.986,0.994,0.994,1.118,1.021,0.988,0.963,1.047,0.89,0.997,0.927,1.104,1.066,1.253,1.012,1.114,0.956,0.914,0.988,0.947 +NM_003684,0.945,0.942,1.027,1.043,1.0,1.156,1.002,0.801,1.142,0.918,1.172,0.828,0.913,0.952,1.031,1.121,0.998,0.866,1.119,0.86,0.793,0.923,1.082,1.013,0.898,1.05,1.235,0.743,0.687,1.017,0.828,1.54,2.008,1.154,0.629,0.847,1.0,0.923,1.512,0.985,0.844,0.955,0.792,1.403,0.955,0.926,0.891,0.944,0.93,1.067,0.841,0.889,1.228,1.588 +NM_003685,0.732,0.8,1.472,0.601,0.713,1.029,0.67,0.453,1.112,1.172,0.788,0.813,0.594,0.574,0.978,1.64,0.899,0.9,0.88,0.993,0.377,0.69,2.073,1.063,0.568,0.62,1.563,0.776,0.406,1.188,1.09,1.188,1.608,1.169,0.196,0.861,1.017,0.904,1.405,1.19,1.053,1.233,0.731,1.574,1.423,0.855,0.874,0.687,1.283,0.973,1.318,0.752,0.768,1.704 +NM_003686,0.87,1.1,1.021,0.885,0.973,0.958,0.752,0.828,0.953,1.001,0.697,0.999,0.86,0.746,0.778,0.995,0.758,0.992,1.195,0.844,0.779,0.845,1.612,1.302,0.754,0.801,2.156,0.824,0.693,0.9,0.859,1.157,3.371,0.833,0.594,2.71,1.067,0.957,1.692,1.418,1.046,0.868,0.829,2.443,1.102,1.066,1.123,0.859,1.152,0.844,1.297,1.177,1.023,3.364 +NM_003687,1.068,1.004,1.054,0.929,1.004,1.003,0.903,0.916,1.042,1.019,0.984,1.128,1.036,0.99,0.868,1.027,1.139,1.072,1.092,1.016,0.95,0.953,1.159,1.093,1.058,0.966,0.966,1.014,1.569,0.913,0.987,0.944,1.268,0.971,0.939,0.998,0.971,1.019,0.924,0.961,1.112,0.974,0.867,1.225,1.013,0.98,0.946,1.104,1.042,0.99,1.045,1.005,1.265,0.909 +NM_003688,0.848,0.985,1.183,1.027,0.864,0.921,0.776,0.58,1.006,0.863,1.084,0.695,0.678,0.791,0.954,1.456,0.773,0.759,1.016,1.054,0.776,0.692,1.537,0.814,0.817,0.759,0.915,0.793,0.696,1.096,0.773,1.376,1.695,1.001,0.604,1.082,1.137,0.768,1.193,0.712,0.929,1.125,1.174,1.041,1.015,1.448,1.16,0.637,1.484,0.998,1.134,1.486,1.109,1.232 +NM_003689,0.662,1.697,0.914,0.643,0.879,1.588,0.573,0.529,1.065,1.051,1.538,1.072,0.663,0.586,1.064,2.503,0.825,1.194,1.034,1.512,0.32,0.785,1.278,1.06,0.565,0.813,1.004,0.827,0.618,1.856,0.988,1.232,1.021,1.568,0.711,1.169,1.905,1.004,1.372,0.36,1.042,2.079,1.324,0.947,0.901,2.004,1.239,0.932,1.124,0.589,1.928,0.554,0.573,0.825 +NM_003690,0.745,1.191,1.205,0.652,0.788,1.096,0.509,0.733,1.271,0.97,1.13,0.926,0.836,0.87,0.993,1.308,0.845,0.762,1.283,0.683,0.485,0.97,1.22,1.41,0.638,0.873,1.142,0.992,0.395,1.069,1.099,1.574,2.86,1.252,0.328,0.671,1.113,1.202,1.1,0.98,1.195,1.007,0.697,1.043,1.048,0.953,0.818,0.831,0.809,0.813,1.014,0.848,0.899,2.268 +NM_003692,1.131,1.105,1.024,1.018,1.072,1.02,1.041,1.157,0.914,0.969,1.007,1.139,0.923,1.361,0.85,1.103,0.956,0.919,0.974,1.072,1.145,0.975,1.033,1.053,1.012,0.921,1.037,0.906,0.914,1.119,0.979,1.15,0.953,1.057,0.962,0.923,0.919,0.952,1.008,1.063,1.062,1.206,1.125,0.96,0.982,0.968,1.121,1.163,1.0,0.927,0.931,0.917,1.0,0.897 +NM_003695,3.056,0.181,6.559,1.056,3.894,0.165,0.142,2.453,4.257,3.362,0.142,3.68,2.69,1.419,1.776,1.624,4.706,2.187,5.689,0.427,2.03,3.403,0.182,4.865,0.164,3.209,5.331,3.114,0.138,0.171,5.991,0.177,3.059,0.144,0.187,0.189,0.16,3.943,0.203,0.195,4.416,0.148,0.163,0.174,5.977,0.154,2.553,2.275,0.195,5.826,0.944,1.153,3.849,1.375 +NM_003696,0.943,1.095,1.057,1.202,1.107,1.013,1.049,0.883,1.101,1.107,1.05,0.942,1.016,0.927,1.132,1.142,0.983,1.056,1.001,1.021,0.961,0.988,0.934,0.913,0.971,1.067,0.923,1.111,1.076,1.066,0.969,0.967,1.117,0.942,1.076,0.957,0.771,1.001,0.873,0.923,1.066,0.879,0.983,1.115,1.017,0.955,1.062,0.955,1.008,1.008,0.972,1.005,0.848,0.874 +NM_003701,0.967,1.107,1.092,1.008,0.984,0.896,0.965,1.043,0.877,0.907,0.952,0.937,1.045,1.096,0.913,0.968,0.954,1.046,0.864,1.214,1.031,0.877,0.996,0.969,1.058,1.104,0.997,0.948,1.224,0.998,0.929,1.031,1.139,1.021,1.051,1.002,0.969,1.029,0.99,0.895,1.034,1.057,0.821,1.144,0.98,1.188,1.032,0.928,0.986,1.007,0.963,0.883,0.847,0.942 +NM_003702,1.152,0.952,1.374,1.091,1.522,0.896,0.664,1.155,1.421,1.672,0.787,1.388,0.862,1.091,1.124,1.249,1.019,1.333,1.741,0.841,1.285,0.943,0.947,1.553,0.85,0.916,1.793,1.078,0.686,0.765,1.044,0.933,1.343,0.844,1.07,0.927,0.954,1.549,0.816,0.984,1.143,0.986,0.721,1.048,1.551,0.884,1.755,1.226,0.865,1.295,0.883,1.384,1.841,1.294 +NM_003704,0.897,1.025,1.14,0.875,0.848,1.174,0.964,0.824,0.95,1.07,0.984,0.814,0.88,0.921,0.971,1.2,1.113,0.852,0.963,1.056,0.858,0.879,0.944,1.01,0.795,0.952,1.197,0.842,1.034,0.998,0.944,1.353,1.49,1.006,0.869,0.763,0.852,0.984,1.151,1.15,1.06,1.065,0.894,0.897,1.008,0.866,0.922,0.836,0.853,1.002,0.948,0.884,0.867,1.352 +NM_003705,0.831,1.003,1.154,0.921,1.001,0.949,0.954,1.076,1.108,0.727,1.072,0.927,0.98,0.899,1.021,1.332,0.834,0.892,1.082,1.015,0.986,0.96,1.364,0.997,0.852,0.933,1.387,1.093,1.461,1.017,0.948,1.09,1.514,1.168,0.644,0.987,0.899,1.03,1.119,0.963,1.124,1.228,0.797,1.034,0.967,1.027,0.874,0.807,1.02,0.941,0.999,0.888,1.319,1.358 +NM_003707,0.88,1.071,0.856,0.831,0.728,0.934,0.562,0.52,1.072,1.114,0.81,1.132,0.671,0.648,0.878,1.162,1.115,0.796,1.288,0.685,1.037,0.892,1.209,1.125,0.621,0.717,1.265,0.744,0.428,1.058,0.821,1.559,5.684,1.038,0.324,1.137,1.045,0.988,1.677,0.767,1.117,0.908,0.704,2.538,0.973,0.907,1.091,0.671,1.23,0.951,0.96,1.149,1.67,2.38 +NM_003708,1.403,0.696,1.641,0.886,1.548,1.04,0.673,0.877,1.138,0.856,1.157,1.365,1.004,0.967,0.788,1.343,1.472,0.929,1.309,0.929,1.275,0.953,0.951,1.192,0.781,1.065,1.067,1.165,0.982,0.874,0.983,0.97,1.115,0.765,0.897,1.763,0.802,0.905,0.897,0.848,1.566,1.152,0.787,0.864,2.056,0.895,1.915,1.016,0.829,1.975,1.021,1.512,1.448,0.716 +NM_003709,1.03,1.007,0.939,0.921,0.963,1.111,0.868,0.867,1.127,0.912,0.835,1.109,1.011,0.827,0.937,0.775,0.878,0.995,0.906,0.848,0.925,1.091,0.966,1.007,0.862,1.042,1.069,1.098,1.035,0.909,1.021,1.038,0.899,1.015,0.955,1.075,0.944,1.39,1.163,0.97,0.993,0.904,1.341,0.909,1.013,1.227,1.015,0.917,0.914,1.027,0.833,0.869,0.99,1.093 +NM_003710,1.196,0.872,1.201,0.7,1.696,1.219,0.909,1.238,1.752,0.949,0.798,1.004,1.182,0.929,1.155,1.025,1.437,1.359,0.885,1.291,0.536,1.67,1.257,0.988,0.491,1.245,1.313,1.806,0.803,1.245,1.746,0.638,0.687,0.982,3.055,0.631,1.018,1.51,1.455,0.642,1.385,0.939,0.644,0.455,1.176,0.778,1.278,2.329,0.707,0.971,1.011,0.761,0.697,1.101 +NM_003711,1.647,2.4240000000000004,1.863,1.7389999999999999,1.912,2.805,1.75,1.8399999999999999,1.62,1.6869999999999998,2.707,1.5659999999999998,1.4300000000000002,1.367,2.2969999999999997,3.4619999999999997,1.3279999999999998,1.56,1.873,3.434,1.617,1.63,3.409,1.775,1.8780000000000001,1.595,1.6680000000000001,1.7000000000000002,2.074,2.7199999999999998,1.428,3.916,2.333,3.362,1.346,1.544,2.4850000000000003,1.7189999999999999,3.149,1.624,1.496,3.69,2.05,1.8860000000000001,1.6099999999999999,2.597,2.0540000000000003,1.686,1.901,1.68,2.555,1.882,1.912,3.09 +NM_003713,1.215,0.892,1.023,0.991,1.033,0.96,0.876,0.978,0.968,1.014,0.96,1.115,0.948,0.94,0.881,1.042,1.046,1.055,1.007,1.085,0.879,1.101,0.907,1.105,0.843,1.097,0.785,1.147,0.86,0.999,0.916,0.955,1.032,1.042,1.063,1.083,0.869,1.018,1.244,1.005,1.063,1.09,0.82,1.058,0.853,0.889,1.156,1.051,0.91,1.146,0.999,1.0,1.136,0.989 +NM_003714,0.946,0.951,1.22,1.081,0.875,0.915,1.474,1.023,1.076,1.026,1.107,0.969,0.999,1.05,0.789,0.818,1.026,0.974,0.942,0.997,1.131,1.024,0.914,1.007,0.964,0.917,1.13,1.177,1.25,0.985,1.038,0.907,0.848,0.957,1.084,0.981,1.001,1.051,1.0,1.006,0.842,1.034,0.912,1.11,1.108,1.03,0.897,1.07,1.2,0.961,1.082,0.898,1.045,0.916 +NM_003715,0.695,0.985,1.171,0.635,1.075,1.187,0.611,0.572,1.625,1.2,0.921,0.845,0.617,0.763,1.174,1.321,0.708,1.014,1.291,1.071,0.425,1.053,1.062,1.317,0.627,0.645,1.469,1.163,0.391,1.134,1.302,1.061,0.991,1.103,0.36,0.53,1.248,1.267,1.044,0.396,1.145,1.198,0.603,0.525,1.038,1.079,0.891,0.732,1.075,0.77,1.405,0.644,0.695,0.821 +NM_003716,1.125,0.889,1.055,1.073,1.075,1.088,1.256,0.97,0.967,1.042,0.985,0.981,1.085,1.073,0.807,0.953,1.073,0.967,1.021,1.192,0.935,0.979,1.12,0.987,1.165,1.07,0.914,0.997,1.011,0.924,0.978,1.04,0.915,0.993,0.909,1.11,0.958,1.065,0.964,1.007,1.097,0.972,1.108,1.049,0.855,0.918,1.029,0.962,0.991,1.1,1.133,1.11,0.797,1.076 +NM_003717,1.082,0.824,0.946,0.954,1.012,1.03,0.924,1.275,0.953,0.947,0.984,1.214,1.035,0.949,0.919,1.066,0.978,0.969,1.154,0.988,1.021,1.155,0.996,0.928,1.093,1.089,1.093,1.02,0.741,0.973,1.064,1.049,0.983,1.019,1.023,1.117,1.068,1.128,1.259,1.068,0.971,0.951,0.809,1.026,1.004,1.064,1.017,0.997,0.99,0.941,1.027,0.889,0.938,1.062 +NM_003718,1.108,0.95,0.947,1.076,0.896,0.868,0.958,1.042,1.133,1.109,1.04,1.068,0.963,1.131,0.989,1.05,0.98,1.136,0.964,0.925,0.979,1.038,0.936,1.057,1.094,0.849,0.979,1.165,0.864,0.992,0.98,0.881,1.116,0.832,0.925,1.095,0.94,0.926,1.017,1.044,1.085,0.957,0.98,1.063,0.961,0.879,0.956,0.981,1.027,0.924,1.056,0.893,0.787,1.01 +NM_003719,1.129,1.075,0.913,0.932,1.048,1.031,0.936,1.128,1.039,1.094,1.044,0.927,0.886,1.088,0.922,1.044,1.042,0.847,0.974,0.904,1.056,0.831,1.202,1.045,0.982,0.98,0.981,0.97,1.036,0.909,1.07,1.119,1.409,1.257,0.957,0.851,1.116,1.023,1.091,1.023,1.14,1.47,0.876,0.896,0.997,0.978,1.087,0.967,1.012,1.069,1.042,0.917,0.986,1.044 +NM_003720,0.91,0.887,1.738,0.855,0.771,1.298,0.456,0.615,1.531,1.008,1.615,1.037,0.964,0.759,1.049,2.372,0.936,0.845,1.556,0.492,0.495,0.706,0.986,1.388,0.562,0.642,1.458,0.999,0.363,0.888,1.314,0.999,5.134,0.943,0.209,0.797,1.329,0.842,1.141,0.818,1.38,0.862,0.716,0.875,1.498,1.244,1.001,1.021,0.52,1.209,1.316,1.079,1.136,1.421 +NM_003721,0.879,1.12,1.167,0.948,1.095,0.849,0.842,0.698,1.043,1.011,1.084,0.887,1.076,0.772,0.925,1.155,1.011,1.069,1.205,0.859,0.853,1.031,1.157,0.989,0.891,1.168,1.069,0.961,0.721,1.045,1.001,1.059,1.204,1.241,0.947,0.856,0.915,1.251,1.447,0.928,1.065,1.012,0.892,1.288,0.913,0.898,0.911,0.939,0.886,0.965,0.939,0.967,0.953,1.127 +NM_003722,1.771,0.542,4.978,1.078,2.62,0.464,0.622,1.034,2.986,3.618,0.518,2.326,1.539,1.8,1.852,1.039,2.713,1.73,2.593,0.681,1.924,1.407,0.507,2.194,0.498,1.884,4.901,2.267,0.68,0.616,2.674,0.487,2.286,0.476,0.581,0.505,0.555,2.016,0.485,0.554,3.192,0.614,0.512,0.462,3.424,0.444,1.517,1.526,0.485,2.848,1.045,1.333,4.43,0.989 +NM_003724,0.783,0.983,1.067,1.208,1.116,1.036,1.048,1.083,1.126,1.038,1.179,1.046,0.953,1.028,0.858,0.957,0.856,0.961,0.758,0.937,1.093,0.713,0.937,0.836,1.189,0.917,1.182,0.87,0.897,1.044,0.959,0.908,1.1,1.043,1.079,0.978,0.919,0.901,0.994,1.041,1.254,1.05,1.133,0.987,1.061,1.183,0.977,1.009,1.04,0.984,1.119,0.924,0.876,0.933 +NM_003725,0.912,1.228,0.807,1.029,0.839,1.15,1.015,0.923,0.869,0.979,1.26,0.902,0.979,0.844,0.981,1.254,0.911,0.823,0.911,0.925,1.062,0.864,1.346,0.938,0.94,1.174,0.979,1.0,0.869,1.361,0.865,2.212,1.423,2.184,0.853,0.964,0.92,0.906,1.105,0.911,1.15,1.936,0.8,0.895,0.918,1.184,0.874,0.807,0.947,0.871,1.251,0.945,1.096,0.871 +NM_003726,0.692,1.31,1.433,0.796,0.855,0.938,1.037,0.783,0.922,0.641,0.652,0.826,0.852,0.664,0.922,0.811,1.108,0.846,0.676,1.31,0.762,0.824,1.336,0.877,0.759,0.547,1.178,0.873,0.979,1.391,0.797,1.613,2.894,1.88,0.616,1.324,0.901,0.904,1.309,1.19,1.279,1.953,0.955,2.281,0.931,0.956,1.271,0.698,0.674,0.746,0.953,1.093,0.872,2.438 +NM_003728,0.978,1.016,1.001,0.849,0.85,1.012,1.051,0.967,0.991,0.955,1.037,0.882,1.021,1.147,0.99,1.05,0.97,1.107,0.968,0.903,1.032,0.921,0.9,0.977,1.045,0.872,0.936,0.927,0.726,0.894,1.007,0.951,1.07,1.052,0.982,1.03,0.996,1.015,0.993,0.926,0.93,1.026,0.958,0.862,1.249,0.895,1.098,1.09,0.993,0.984,0.989,1.087,1.063,0.901 +NM_003729,0.65,0.861,1.441,0.801,1.164,1.306,0.573,0.731,1.224,1.013,1.098,0.791,0.588,0.789,1.296,2.289,1.137,0.956,1.649,0.79,0.669,0.886,1.09,1.297,0.457,0.664,1.41,1.05,0.459,1.084,1.31,0.66,1.956,1.422,0.529,0.55,1.385,0.864,1.171,0.465,1.498,0.925,0.679,0.68,1.185,1.239,1.366,0.744,1.389,0.787,1.168,0.666,1.11,1.776 +NM_003730,0.22,1.989,0.424,0.887,0.403,1.823,1.119,0.138,0.317,0.312,1.051,0.353,0.19,0.204,0.487,0.948,0.263,1.336,0.293,1.41,0.154,0.31,1.535,0.4,0.927,0.264,0.436,0.305,0.776,2.54,0.194,1.14,0.701,2.503,0.0325,0.908,1.284,0.468,1.327,1.539,0.421,1.889,0.664,0.971,0.561,1.275,0.981,0.189,1.0,0.312,1.494,1.502,0.388,1.153 +NM_003731,1.066,0.688,1.107,0.812,0.86,1.104,0.552,0.746,1.078,0.941,1.032,1.283,1.063,0.718,0.825,1.177,1.039,0.995,1.7,0.821,0.898,1.102,0.97,1.437,0.639,1.177,1.111,0.886,0.627,0.902,0.956,1.145,1.362,1.199,0.45,2.288,0.823,1.1,1.359,0.87,1.164,0.881,0.588,1.175,1.113,0.806,0.878,1.251,0.752,0.953,0.798,0.803,0.934,1.184 +NM_003732,0.857,1.503,1.05,0.891,0.753,1.043,0.745,0.781,0.898,0.942,1.002,0.843,0.772,0.955,1.069,0.897,0.909,0.91,0.998,1.047,0.925,0.689,0.928,0.97,1.084,1.02,1.058,0.952,0.596,1.506,0.941,1.434,1.272,2.311,0.752,0.848,1.036,1.027,1.423,0.973,1.133,1.29,0.732,1.135,0.926,0.828,0.772,0.82,0.898,0.903,0.956,0.721,0.976,1.054 +NM_003733,0.859,0.951,0.966,1.296,0.848,1.359,1.494,0.712,0.935,0.992,1.204,0.915,0.787,0.904,0.941,0.889,0.878,0.986,0.841,0.949,0.915,0.904,1.021,0.882,1.26,0.893,0.969,0.871,0.943,1.668,0.847,0.902,1.234,1.556,0.938,0.886,1.368,0.795,1.864,1.006,0.816,1.397,0.913,1.185,0.871,1.16,0.929,0.821,1.165,0.824,1.121,0.941,0.882,1.612 +NM_003737,0.971,1.035,1.0,1.056,0.969,1.099,0.986,0.993,0.908,1.042,0.886,1.077,0.914,1.015,0.967,1.05,1.079,1.012,0.989,1.081,1.012,1.023,1.017,1.0,1.007,0.99,0.982,0.981,1.09,0.984,1.111,1.416,1.208,0.972,0.923,0.952,1.007,0.987,1.117,1.123,1.134,1.0,1.055,0.984,0.906,0.974,0.943,1.045,0.866,1.113,1.016,1.023,0.893,0.93 +NM_003738,1.108,0.996,0.903,1.005,1.069,1.013,1.266,1.378,0.988,1.08,1.06,0.991,1.172,0.822,0.847,0.988,0.976,0.969,0.911,1.016,1.211,0.915,1.097,1.02,0.986,1.154,1.148,1.123,1.295,0.883,1.007,1.091,1.006,1.047,1.134,0.982,1.129,1.219,1.003,0.922,1.009,0.899,1.066,1.0,1.008,1.056,0.891,1.074,1.168,1.002,0.946,0.96,1.005,0.97 +NM_003739,0.186,2.53,0.275,1.227,0.221,2.839,1.332,0.0574,0.224,0.347,2.51,0.326,0.184,0.179,1.086,3.817,0.253,1.64,0.385,1.972,0.112,0.249,1.702,0.361,1.388,0.136,0.452,0.286,1.151,2.195,0.27,1.155,0.558,2.819,0.0441,0.284,3.424,0.328,1.796,0.389,0.324,2.621,1.395,0.551,0.217,1.794,2.125,0.261,2.046,0.263,1.101,0.858,0.22,0.262 +NM_003740,0.387,1.532,0.356,1.196,0.393,2.22,1.411,0.378,0.386,0.418,2.536,0.369,0.33,0.336,1.018,2.364,0.373,1.397,0.399,2.344,0.333,0.381,2.275,0.397,1.122,0.423,0.433,0.374,0.998,2.22,0.431,1.002,0.874,2.841,0.353,1.014,2.205,0.372,2.178,0.536,0.417,2.326,1.224,0.792,0.393,1.45,0.771,0.392,1.161,0.405,2.024,0.568,0.368,1.022 +NM_003742,1.152,0.999,1.043,1.03,1.026,0.983,1.078,0.902,1.062,0.973,0.895,0.944,0.948,1.323,1.253,1.034,1.008,1.015,0.904,1.07,0.952,1.137,0.941,1.072,1.062,1.11,1.003,1.032,1.766,1.086,0.943,0.971,1.123,0.906,0.821,0.946,1.049,1.172,0.981,1.004,0.987,0.922,1.24,0.992,0.96,0.95,0.98,0.988,1.017,1.099,0.943,1.035,0.855,1.091 +NM_003744,0.631,1.008,1.099,0.902,0.72,1.542,0.705,0.506,1.192,0.672,1.658,0.553,0.514,0.759,1.11,1.893,0.831,0.91,0.797,1.502,0.35,0.712,1.231,0.793,0.705,0.64,1.131,0.761,0.551,1.431,0.981,1.007,0.846,1.427,0.745,0.968,1.549,0.664,1.434,1.14,0.849,1.241,0.844,1.042,0.775,1.369,1.046,0.694,1.397,0.703,1.469,0.747,0.732,1.094 +NM_003745,0.88,1.063,0.948,0.83,1.053,1.105,0.89,0.803,0.893,0.902,1.111,0.879,0.84,0.881,0.939,0.927,1.065,0.872,0.84,0.84,0.797,0.771,1.046,0.976,1.006,0.825,1.331,0.902,0.808,0.961,0.881,1.524,1.113,1.099,0.849,1.052,0.856,0.97,1.081,1.956,0.919,1.045,1.145,1.008,0.958,1.066,1.194,0.791,1.586,1.093,0.981,1.31,1.011,2.322 +NM_003746,0.903,0.538,1.406,0.575,1.567,1.369,0.478,1.339,1.771,1.274,0.795,1.694,0.982,0.696,1.099,1.758,1.106,1.147,1.981,0.939,0.808,1.378,0.973,2.026,0.369,0.965,1.322,1.504,0.382,1.057,1.64,0.834,1.863,1.219,0.488,0.627,0.826,1.72,1.024,0.42,1.564,0.81,0.298,0.573,1.403,0.806,1.237,1.221,0.651,1.05,1.132,0.584,0.998,1.348 +NM_003747,1.043,0.871,1.092,0.923,1.113,0.886,1.066,1.18,1.038,0.955,1.048,0.964,1.024,0.967,0.995,0.971,1.018,1.063,0.955,0.798,1.033,0.961,0.864,0.861,0.945,1.014,1.024,0.96,0.701,0.99,1.059,1.017,1.067,0.906,0.949,0.929,1.08,0.875,1.157,1.058,0.898,1.026,1.232,1.043,0.982,1.0,1.082,1.054,0.99,1.018,1.06,0.902,1.02,1.051 +NM_003748,1.484,1.029,1.205,1.009,1.254,0.959,0.644,0.968,1.435,1.571,0.85,1.48,1.204,0.921,1.142,0.895,1.442,1.162,2.125,0.802,1.496,2.374,0.916,1.485,1.025,1.894,1.577,0.968,0.878,0.933,1.256,0.824,0.878,0.941,0.727,0.756,0.784,2.311,1.212,1.101,1.081,0.843,0.776,1.002,1.317,0.708,1.049,1.771,0.751,1.46,0.811,0.764,1.429,0.81 +NM_003749,0.88,0.986,1.013,0.928,0.921,0.915,0.974,1.157,0.942,1.0,0.945,0.994,0.931,1.186,0.951,0.983,0.975,0.988,0.937,0.94,1.052,1.058,0.969,1.176,1.102,1.044,0.933,0.994,1.148,0.998,1.004,0.999,0.934,1.127,1.138,0.874,1.061,1.126,1.0,0.988,0.963,1.085,0.895,0.971,1.05,0.959,0.885,1.05,0.942,0.941,1.073,0.837,0.858,1.005 +NM_003750,0.599,0.957,1.57,0.508,1.118,1.043,0.806,0.568,1.239,1.145,0.492,1.234,0.648,0.553,0.93,1.428,0.956,1.049,0.644,1.458,0.291,1.285,1.439,1.315,0.483,0.458,1.584,0.982,0.591,1.213,1.303,1.292,1.603,1.133,0.767,0.545,0.92,1.274,1.684,0.832,1.022,1.202,0.605,0.575,1.262,0.902,1.048,0.865,1.499,1.019,1.35,0.785,0.403,1.401 +NM_003751,0.928,1.04,0.887,1.072,1.229,1.192,0.977,1.016,0.966,0.988,0.842,0.982,0.979,0.912,0.769,0.967,0.805,1.131,0.904,0.783,1.081,0.877,1.055,0.919,1.091,0.77,0.925,1.015,0.867,1.122,0.972,0.838,0.993,0.88,0.977,0.991,1.042,1.093,1.077,1.049,0.977,0.953,0.987,1.054,1.067,0.967,1.037,1.13,0.934,1.018,1.097,0.924,1.077,1.024 +NM_003752,0.665,0.726,0.762,0.421,0.871,1.395,0.628,0.326,1.189,1.265,0.834,0.672,0.583,0.345,0.552,1.42,0.633,1.158,1.572,1.035,0.707,0.929,0.836,1.014,0.696,1.207,1.276,0.738,0.425,1.125,0.879,1.251,2.684,1.633,0.148,0.751,0.707,1.127,1.713,1.123,0.961,1.361,0.612,2.158,1.295,0.643,0.974,0.645,1.264,0.826,0.95,1.004,0.927,3.597 +NM_003753,0.792,1.066,1.105,0.604,0.929,0.882,0.55,0.511,1.278,1.252,0.868,0.96,0.822,0.508,0.709,1.111,0.781,0.947,1.466,0.943,0.846,1.128,1.446,1.412,0.638,1.197,1.276,0.936,0.435,0.875,0.966,0.89,1.806,1.107,0.441,1.363,0.812,1.198,1.952,0.837,1.249,1.186,0.513,1.125,1.337,0.668,0.82,1.151,0.957,0.933,0.782,0.958,1.06,1.736 +NM_003754,0.859,0.977,1.296,0.723,0.949,1.118,0.537,0.644,1.154,0.989,1.452,0.999,1.002,0.772,0.97,1.58,0.83,0.818,1.584,0.98,0.624,0.826,1.343,1.277,0.679,1.112,1.418,0.873,0.335,1.36,0.953,0.931,1.401,1.611,0.307,1.385,1.29,1.113,1.011,0.568,1.129,1.323,0.599,0.714,1.098,0.936,0.796,0.847,0.889,1.05,1.001,0.812,1.248,1.563 +NM_003755,0.644,1.08,1.051,0.818,0.846,0.986,0.598,0.505,0.959,0.97,1.015,0.799,0.856,0.472,0.692,1.323,0.832,0.81,1.047,0.949,0.578,0.591,1.789,1.112,0.762,0.954,1.013,0.699,0.343,1.019,0.872,1.235,1.63,1.565,0.264,1.386,0.824,0.999,1.601,0.772,0.903,1.375,0.456,1.635,1.129,0.698,0.701,0.838,0.805,0.837,0.791,1.466,1.001,1.714 +NM_003756,0.753,0.938,1.312,0.593,1.086,0.987,0.459,0.735,1.428,1.034,0.81,1.295,0.876,0.661,0.89,1.211,0.94,0.937,1.327,0.947,0.599,1.169,1.186,1.253,0.519,1.132,1.046,1.38,0.333,0.884,1.097,1.175,2.001,1.136,0.841,0.956,0.79,1.304,1.17,1.141,1.084,1.066,0.493,1.154,1.186,0.989,0.974,0.898,1.279,0.97,0.892,0.642,0.897,1.082 +NM_003758,0.849,1.071,1.203,0.817,0.965,1.029,0.695,0.808,1.529,1.172,1.071,0.881,0.975,0.843,0.956,1.367,0.79,0.911,1.456,0.873,0.763,0.929,1.328,1.123,0.784,1.038,1.214,0.985,0.47,1.042,1.236,0.931,1.689,1.122,0.755,1.144,1.071,1.139,1.42,0.779,1.17,0.899,0.837,0.972,1.178,0.994,0.89,0.875,1.076,0.819,1.041,0.837,0.924,1.595 +NM_003759,0.777,2.134,0.799,0.953,0.701,1.874,1.051,0.793,0.829,0.773,1.894,0.652,0.856,0.738,1.328,4.144,0.775,1.607,0.916,2.73,0.794,0.815,2.823,0.707,0.925,0.801,0.693,0.759,0.939,1.921,0.799,1.067,0.993,2.795,0.837,0.726,2.911,0.766,1.904,0.658,0.745,2.232,1.562,1.007,0.752,2.468,0.832,0.754,1.673,0.743,2.161,0.835,0.675,1.565 +NM_003760,0.872,0.99,1.215,0.662,1.246,1.054,0.632,0.515,1.311,1.115,0.921,0.871,0.548,0.844,0.862,0.93,0.918,0.958,0.926,1.021,0.763,0.808,1.202,1.058,0.641,0.824,1.1,0.889,0.573,1.283,0.916,1.204,0.939,0.882,0.742,1.19,0.862,1.158,1.546,1.16,1.175,0.925,0.934,1.432,1.029,1.174,1.041,0.743,1.004,0.846,1.279,0.906,1.27,1.296 +NM_003761,0.777,1.018,1.234,0.575,1.193,1.438,0.576,0.829,1.02,0.98,1.097,1.63,0.822,0.564,0.782,1.492,1.157,1.102,1.453,1.204,0.473,0.8,0.961,1.283,0.603,1.197,1.522,1.162,0.596,1.263,0.853,0.896,0.875,1.383,0.29,0.555,1.316,1.146,0.855,0.672,1.411,0.956,0.518,0.73,1.3,1.037,1.285,0.935,0.871,0.899,1.002,0.801,1.005,0.921 +NM_003762,0.895,0.999,1.103,0.889,1.085,1.195,1.046,1.088,1.174,1.117,0.986,1.089,0.962,0.941,0.982,1.336,1.097,0.937,0.917,0.942,0.984,0.966,1.017,1.208,0.84,0.985,1.084,0.942,0.944,1.022,1.22,1.274,1.294,1.018,0.986,0.807,1.121,0.942,1.026,1.034,0.917,0.92,0.891,0.787,1.116,1.001,1.183,1.095,0.931,0.961,1.068,0.954,0.985,1.023 +NM_003763,1.002,1.055,1.108,0.949,1.032,0.903,0.86,0.832,1.096,1.075,1.0,1.047,0.802,0.945,0.927,1.015,1.013,0.92,0.883,0.881,0.823,0.803,1.014,1.172,0.829,1.07,1.185,0.89,0.838,0.991,1.011,1.179,1.022,0.996,0.846,0.806,0.801,0.914,1.205,1.156,1.125,0.944,0.876,1.073,1.0,1.126,0.896,0.892,0.945,0.836,0.958,0.846,1.012,1.3 +NM_003764,1.248,0.775,2.041,1.106,1.338,0.722,0.754,1.308,1.219,1.302,0.732,1.354,1.481,1.047,1.027,0.932,1.695,1.002,1.593,0.868,0.945,1.265,0.854,1.302,0.696,1.024,1.689,0.968,0.749,0.79,1.364,0.837,1.426,0.834,1.532,0.758,0.716,1.462,1.285,2.075,1.38,0.939,0.765,0.806,1.678,0.794,1.159,1.093,0.939,1.91,0.866,1.417,2.24,1.349 +NM_003765,0.893,1.0,0.963,1.032,0.8,1.347,0.545,0.596,1.03,0.876,1.105,0.854,0.866,0.842,0.743,1.233,1.44,0.958,1.646,0.669,0.758,1.028,1.151,1.046,0.835,1.248,1.133,0.701,0.669,1.273,0.735,1.164,1.078,1.114,0.784,0.804,1.023,1.098,1.699,0.739,0.904,0.905,0.606,1.223,0.793,0.744,0.942,1.082,0.97,1.087,0.725,0.981,1.04,0.889 +NM_003766,0.441,1.043,1.126,0.582,0.878,1.629,0.633,0.571,1.26,0.838,1.027,0.607,0.588,0.497,1.007,1.9,0.891,0.876,0.945,1.242,0.537,0.54,1.466,0.999,0.55,0.545,1.124,0.815,0.568,1.278,0.886,1.052,1.993,1.659,0.367,0.947,1.036,0.685,1.239,0.817,1.216,1.513,0.547,1.201,0.873,1.249,0.975,0.463,0.871,0.547,1.17,0.66,0.924,1.425 +NM_003768,1.177,0.602,2.27,0.479,1.438,0.493,0.392,1.273,1.719,1.125,0.494,1.355,1.32,1.0,1.0,0.725,2.094,0.671,1.862,0.473,0.681,1.337,0.686,1.696,0.34,1.738,2.613,1.901,0.242,0.955,1.606,2.511,1.535,0.99,1.61,0.718,0.426,2.032,0.762,1.516,2.1,0.824,0.35,0.607,1.77,0.396,1.146,1.406,0.308,2.227,0.602,1.302,1.703,1.314 +NM_003769,0.886,0.655,1.0,0.78,0.938,1.156,0.455,0.56,1.277,1.009,0.978,0.954,0.799,0.708,0.933,1.477,0.971,1.053,1.538,0.758,0.619,1.001,1.166,1.267,0.579,1.205,0.953,1.023,0.438,0.832,0.988,0.864,0.949,1.119,0.692,0.868,1.055,1.129,1.21,0.92,1.114,1.104,0.632,1.007,1.112,0.893,1.14,1.131,0.745,1.003,0.993,0.774,1.093,1.313 +NM_003770,0.957,0.906,1.041,0.971,1.061,1.032,0.968,1.027,0.999,0.963,1.028,1.059,1.013,1.112,1.134,0.909,1.071,0.97,0.939,1.05,1.102,0.941,0.998,0.988,1.066,0.99,0.924,0.963,1.112,1.014,1.1,0.882,0.962,1.092,1.051,1.071,1.007,0.983,1.078,0.972,1.041,1.022,1.029,1.117,0.969,0.833,0.861,0.964,1.143,1.09,0.931,1.089,1.107,0.943 +NM_003771,0.859,1.174,0.918,0.934,0.965,1.073,1.269,0.934,1.04,0.825,0.897,1.008,1.111,1.147,0.971,0.907,0.944,0.976,0.954,1.077,1.04,1.083,1.073,1.082,0.957,1.002,1.181,0.857,1.084,1.074,1.044,0.96,0.94,1.012,0.927,0.997,0.851,0.834,1.001,0.957,1.051,0.893,1.156,1.003,1.108,0.934,1.011,1.002,0.966,0.984,1.052,0.896,1.003,1.029 +NM_003772,0.975,1.057,1.031,0.869,1.057,1.167,1.079,0.87,1.085,0.941,0.912,1.041,1.016,0.985,1.014,0.993,0.931,0.994,0.995,1.1,0.869,1.104,1.088,1.034,0.923,0.94,0.923,0.992,0.788,1.012,0.998,1.002,1.379,0.98,0.92,0.955,0.877,1.126,1.158,0.884,0.99,1.07,0.978,0.899,0.933,1.097,1.009,1.017,1.004,1.05,1.004,1.099,0.879,1.068 +NM_003773,0.884,1.082,0.693,0.943,0.672,1.232,0.582,0.602,0.804,0.786,1.156,0.717,0.943,0.719,0.893,1.281,0.819,0.885,1.068,0.815,0.851,0.987,1.094,0.959,0.949,1.048,0.787,0.576,0.739,1.591,0.833,1.401,1.347,1.247,0.41,0.866,0.998,0.947,2.266,1.225,0.78,1.151,0.812,1.52,0.899,0.879,0.826,1.095,0.746,0.965,0.87,1.135,0.927,1.34 +NM_003776,0.767,1.326,1.126,0.679,0.884,1.138,0.723,0.594,1.037,1.006,0.779,0.956,0.849,0.597,0.964,1.528,1.095,1.091,1.375,0.928,0.708,0.965,1.227,1.021,0.689,0.879,1.237,0.89,0.522,0.994,1.038,1.029,1.378,1.49,0.404,0.634,0.903,1.191,1.389,0.576,1.099,1.072,0.535,0.803,1.084,0.78,1.128,0.823,0.842,0.781,1.044,0.719,0.897,1.187 +NM_003777,1.031,1.016,1.175,1.053,0.981,0.886,1.027,0.948,1.036,0.921,0.884,1.009,0.944,1.084,1.011,1.112,1.018,0.807,1.074,1.005,0.992,1.018,1.003,0.909,1.041,0.922,0.927,1.026,0.946,0.993,0.885,1.131,0.802,1.0,1.017,1.012,1.112,1.024,1.077,1.129,0.939,1.244,0.895,1.119,0.992,0.952,1.003,0.801,0.912,0.984,0.981,1.104,1.063,1.0 +NM_003778,0.69,1.284,0.804,1.101,0.68,2.11,0.693,0.411,0.873,0.594,1.331,0.556,0.486,0.602,1.021,1.467,0.613,1.15,0.969,1.58,0.452,0.594,1.586,0.85,0.677,0.825,0.798,0.579,0.586,2.301,0.961,1.458,1.006,2.125,0.548,0.64,1.333,0.665,2.206,0.785,1.037,1.896,0.734,1.282,0.68,1.077,0.93,0.658,0.881,0.657,1.63,0.616,0.598,1.426 +NM_003779,0.978,1.094,0.974,0.834,0.861,0.972,0.734,0.681,1.036,0.875,0.903,0.79,0.777,0.761,0.798,0.96,0.938,0.867,1.06,0.8,0.767,1.23,0.935,1.08,0.904,1.027,1.057,0.817,0.675,1.054,0.949,2.417,1.871,1.335,0.988,1.123,0.981,0.974,1.294,1.493,0.876,1.199,0.711,1.478,1.004,0.844,0.95,1.251,0.774,0.907,0.936,0.71,0.816,2.332 +NM_003780,0.959,0.78,0.836,0.997,0.867,0.951,0.876,0.741,1.217,1.062,1.093,1.108,1.166,0.681,0.826,1.409,0.931,1.061,1.278,0.954,0.974,0.945,1.045,1.177,0.729,1.123,1.112,0.917,0.818,1.248,0.886,2.15,1.24,0.861,0.703,1.343,0.91,1.101,1.686,0.974,0.932,0.965,0.784,1.531,1.098,0.984,1.105,1.067,0.79,1.49,0.915,1.003,0.968,1.078 +NM_003782,0.958,0.797,1.044,1.044,0.947,1.498,0.919,0.953,1.218,0.702,1.115,1.098,1.436,0.748,0.964,1.059,1.109,1.112,1.37,0.97,0.952,1.473,0.803,1.023,0.757,1.457,0.72,0.998,0.933,1.202,0.944,0.859,0.918,1.446,1.525,0.757,0.953,1.228,1.431,0.642,1.036,1.182,0.742,1.128,0.939,0.94,0.943,1.551,0.966,1.0,0.909,0.624,0.935,0.707 +NM_003783,0.855,1.054,1.12,0.869,0.871,1.144,1.087,1.026,0.989,1.051,1.103,0.918,1.037,0.889,0.939,1.197,0.967,1.018,1.004,1.016,0.97,1.069,0.868,1.014,0.834,0.995,0.903,1.075,0.704,0.977,1.056,1.001,0.895,1.182,0.99,1.001,0.939,1.094,1.166,0.968,0.937,0.881,0.899,0.819,1.003,0.949,0.965,0.988,1.042,1.094,1.149,0.973,1.035,0.92 +NM_003784,0.939,0.835,0.813,0.848,1.335,1.08,0.896,1.03,1.1,0.985,2.048,1.114,0.7,0.969,1.115,1.011,0.67,1.003,1.202,1.234,0.827,0.924,1.164,0.841,0.743,0.942,0.885,1.073,0.884,0.936,1.132,0.874,1.083,1.024,0.815,0.816,0.906,1.409,1.28,1.03,0.862,2.184,1.567,1.55,0.845,1.641,1.108,1.056,0.859,0.902,1.948,1.722,1.039,1.052 +NM_003787,1.08,0.993,0.884,1.16,0.984,0.926,0.975,0.985,1.047,0.977,1.158,0.982,1.09,0.801,0.878,0.885,0.957,1.105,1.017,1.089,1.127,0.902,1.005,1.006,0.949,1.004,1.008,1.036,0.683,1.076,1.012,0.927,0.89,1.047,0.884,1.127,1.049,1.086,1.079,0.982,0.904,0.905,0.872,0.862,1.01,0.965,0.976,0.982,0.909,1.116,1.035,0.975,1.136,0.915 +NM_003789,1.061,1.131,1.072,1.031,1.037,0.886,0.844,0.998,0.988,1.076,0.975,0.779,0.902,1.014,0.808,1.02,1.102,0.961,1.192,0.999,0.841,0.793,0.865,0.989,0.988,1.029,1.147,1.149,0.844,0.944,0.934,1.02,1.021,1.034,0.935,0.827,1.009,1.096,1.426,0.909,0.992,1.029,0.914,1.201,0.981,0.958,0.956,0.965,1.003,0.881,0.936,0.913,1.071,0.988 +NM_003791,0.663,1.794,1.223,0.814,0.75,1.112,0.594,0.5,0.949,0.929,1.272,0.527,0.589,0.65,0.984,1.548,0.801,0.853,1.202,1.06,0.611,0.931,1.2,0.845,0.89,0.721,1.194,0.705,0.647,1.361,0.781,2.285,2.372,2.074,0.174,0.749,1.091,0.938,1.539,0.723,0.92,1.443,0.68,1.238,0.734,0.892,0.909,0.729,0.818,0.741,0.952,0.778,0.803,1.289 +NM_003792,0.625,0.855,1.057,0.725,1.063,1.659,0.648,0.727,1.114,0.965,1.015,1.057,0.68,0.424,1.115,1.894,0.8,0.999,1.196,1.233,0.526,1.039,1.077,1.214,0.672,0.933,0.917,1.015,0.484,1.174,1.038,1.009,1.213,1.478,0.458,1.576,0.988,1.194,1.327,0.595,0.991,1.284,0.541,0.831,1.05,1.092,0.937,0.926,0.955,0.759,1.273,0.631,0.863,1.008 +NM_003793,0.984,2.275,1.062,1.204,0.947,0.909,1.025,0.903,0.965,0.87,1.002,0.998,0.963,0.918,0.915,0.846,0.906,0.989,0.909,1.129,0.905,0.926,1.359,0.964,1.507,1.073,0.976,1.126,1.013,1.22,0.851,4.903,1.417,2.181,0.857,0.797,0.951,1.058,1.471,0.988,1.075,2.097,1.137,0.842,0.966,0.853,1.012,1.031,0.927,0.946,0.9,0.832,0.973,0.92 +NM_003794,0.591,1.239,1.138,0.679,0.829,2.031,0.779,0.622,1.019,0.716,1.374,0.683,0.81,0.605,0.965,2.728,0.852,1.437,0.814,1.618,0.397,0.873,1.395,0.814,0.749,0.566,1.105,0.73,0.754,1.852,0.83,1.799,1.242,1.387,0.332,0.668,1.983,0.982,1.493,0.774,0.904,1.324,0.834,0.607,0.823,1.467,1.091,0.759,1.729,0.628,1.349,0.759,0.595,1.568 +NM_003797,0.585,1.199,1.184,0.665,0.893,1.189,0.748,0.517,1.171,0.998,0.881,0.964,0.635,0.588,0.839,1.417,0.857,1.007,0.999,0.938,0.555,0.986,1.184,1.169,0.509,0.738,1.421,0.818,0.709,1.448,0.824,1.351,2.491,1.193,0.407,1.807,1.096,0.826,1.249,1.001,1.15,1.058,0.688,1.092,0.96,0.928,1.097,0.72,1.089,0.793,0.979,0.963,0.771,1.529 +NM_003798,1.852,1.004,0.778,1.06,1.36,0.86,0.892,0.779,2.486,0.985,0.967,0.656,1.146,1.393,2.34,1.11,0.575,0.922,0.86,0.746,0.707,1.135,1.121,1.109,0.85,1.827,0.675,2.495,0.866,1.056,3.42,1.419,2.855,1.213,4.31,0.751,0.988,1.165,1.46,0.743,0.839,0.853,0.791,1.25,0.719,0.971,0.907,2.094,0.855,0.567,1.071,0.912,0.763,1.17 +NM_003799,0.786,1.057,1.213,0.801,1.042,1.039,0.769,0.784,1.555,0.949,1.069,0.828,0.791,0.847,0.99,1.279,0.803,0.99,1.058,0.999,0.782,0.898,1.198,1.032,0.855,0.762,1.104,1.001,0.937,1.127,1.21,1.67,1.505,1.179,0.974,1.382,0.951,0.913,1.144,1.079,1.187,0.975,0.91,1.022,0.897,1.086,1.024,0.834,0.971,0.954,1.003,0.899,0.871,1.534 +NM_003800,0.843,0.895,1.491,0.593,1.25,0.956,0.624,0.826,1.718,1.311,0.687,1.179,0.744,0.822,1.153,1.089,0.997,0.822,1.122,0.911,0.733,1.401,0.878,1.36,0.654,0.987,1.174,1.079,0.508,1.001,1.532,1.146,1.483,0.98,0.439,0.825,0.865,1.029,1.043,1.101,1.156,0.933,0.737,0.999,1.266,0.922,1.168,1.123,0.909,0.876,0.925,0.861,0.949,1.709 +NM_003801,1.028,0.863,1.002,0.988,0.806,1.027,0.47,0.616,0.998,0.85,1.169,0.838,1.061,0.796,0.873,1.366,1.068,1.032,1.784,0.833,0.949,1.245,1.015,1.187,0.89,1.487,1.23,0.719,0.757,1.141,0.731,1.514,2.939,1.018,0.45,0.918,0.771,1.035,1.813,1.412,1.006,0.81,0.739,1.739,0.902,1.028,0.905,1.109,1.126,1.305,0.687,0.843,0.981,0.875 +NM_003802,1.085,1.001,0.882,1.098,1.159,1.079,0.893,1.063,1.378,1.218,0.998,1.252,1.025,1.259,0.871,1.04,0.976,1.055,1.319,0.869,1.159,1.041,1.124,1.092,0.941,1.056,0.887,1.228,0.716,1.031,1.17,0.839,0.897,0.962,0.986,1.072,0.961,1.069,0.876,0.972,1.124,0.981,0.882,0.999,1.026,0.867,0.835,0.905,1.012,0.991,0.98,1.067,1.058,0.854 +NM_003804,1.061,0.939,1.088,1.1,0.956,1.188,0.873,0.945,1.094,1.07,0.879,0.751,0.944,0.962,1.084,1.167,0.982,0.964,0.981,0.959,0.98,0.853,0.969,1.137,0.989,0.902,1.023,0.848,1.01,0.913,0.986,1.001,1.142,0.889,0.941,1.036,0.992,0.945,1.063,0.94,0.962,1.066,1.089,1.053,0.979,1.111,1.036,0.888,0.876,1.212,0.951,0.784,1.018,1.17 +NM_003805,0.962,0.718,1.176,1.012,1.016,1.186,0.677,0.598,1.075,0.83,1.699,0.866,0.96,0.834,1.142,2.06,0.797,0.945,1.638,1.173,0.718,0.816,1.093,0.83,0.796,0.989,1.117,1.115,0.459,0.802,0.801,0.776,0.783,1.403,0.32,0.909,1.603,0.805,1.207,1.093,0.947,1.194,1.108,0.679,0.955,1.294,0.728,0.941,0.925,0.858,1.278,0.781,0.962,0.848 +NM_003806,0.866,0.847,1.132,0.901,0.872,1.047,1.063,0.848,0.928,1.065,0.829,0.97,1.061,0.77,0.976,1.056,1.178,1.043,1.102,1.075,1.033,0.996,1.018,1.022,0.978,0.972,1.112,1.0,0.791,0.988,0.912,1.034,0.939,1.0,0.97,1.159,1.029,1.107,1.031,1.027,0.968,0.935,0.802,0.98,0.965,0.977,0.986,1.015,0.946,1.046,1.05,1.021,1.254,0.958 +NM_003807,0.913,1.152,1.02,0.933,0.912,1.088,1.105,0.834,0.939,0.918,1.083,0.947,1.125,1.01,0.888,1.193,1.007,1.046,0.841,0.96,0.961,0.961,1.049,0.896,1.128,0.908,0.979,0.987,0.97,1.036,0.974,0.906,1.014,0.919,1.26,1.01,0.942,1.05,0.962,1.001,0.938,0.962,0.912,1.041,1.131,1.156,0.909,1.043,0.942,1.012,0.944,0.973,0.975,0.878 +NM_003809,0.84,1.271,1.089,0.849,0.887,1.282,0.995,0.821,0.801,0.759,1.255,0.853,0.773,0.78,0.974,1.032,0.934,0.79,0.82,0.89,1.043,0.759,1.264,0.803,0.993,0.759,1.167,0.932,0.689,1.398,0.822,3.392,1.666,2.452,0.704,0.776,0.929,1.018,1.464,1.005,1.142,1.956,0.841,0.845,0.902,0.926,0.876,0.759,0.783,0.729,0.97,0.968,0.967,2.212 +NM_003812,0.993,0.996,1.69,0.98,1.385,0.954,1.116,1.084,1.04,1.562,1.015,0.992,0.953,1.021,0.916,1.24,1.561,1.303,1.318,0.903,0.996,0.953,1.088,1.093,0.822,1.004,1.189,1.058,0.974,1.01,1.224,1.09,1.031,0.911,1.113,0.865,0.876,1.298,1.03,1.0,1.308,0.995,0.859,0.834,1.422,0.941,1.261,1.062,0.927,1.86,1.065,0.98,1.652,0.969 +NM_003813,0.959,1.203,1.049,0.836,1.003,0.949,0.916,0.912,1.038,1.044,0.952,0.876,0.903,0.944,0.817,1.039,0.89,1.035,0.896,0.852,1.039,1.203,1.024,0.979,1.033,0.967,1.173,0.909,0.682,0.945,0.988,1.052,1.01,1.085,0.958,1.056,1.012,0.968,0.96,1.084,0.96,0.949,1.134,0.925,1.017,1.002,0.975,1.079,1.076,0.899,0.986,0.939,1.007,1.05 +NM_003814,1.015,0.887,0.942,0.966,0.939,1.011,1.108,0.935,0.986,0.919,0.821,0.999,0.826,0.83,1.038,0.943,1.073,1.048,0.949,0.913,0.975,1.032,1.043,1.035,0.977,0.871,1.022,1.017,1.082,0.964,1.006,0.888,0.927,0.841,1.166,1.009,0.877,1.156,0.999,1.042,0.919,0.939,0.923,0.977,1.021,1.001,0.914,1.027,0.999,1.035,1.041,1.069,1.068,0.899 +NM_003815,1.401,0.746,0.825,0.999,0.728,1.233,0.599,0.679,0.98,0.86,1.224,0.949,1.125,0.638,0.805,1.6,0.963,0.912,1.83,0.719,0.893,1.165,0.8,1.248,0.99,1.846,0.997,0.753,0.881,1.336,0.755,1.431,1.291,1.318,0.257,1.157,0.946,1.462,2.526,0.783,0.787,0.968,0.65,1.53,1.01,0.901,0.997,1.533,0.843,1.362,0.87,1.026,0.694,0.457 +NM_003816,0.906,1.295,0.879,1.073,0.979,1.04,0.686,0.716,0.906,0.905,1.518,0.768,0.77,0.703,0.798,1.244,0.915,0.925,1.044,1.125,0.685,0.719,0.958,0.746,0.951,0.83,0.92,0.916,0.537,1.359,0.809,1.25,1.165,1.523,1.721,0.934,0.942,0.827,1.714,0.885,0.989,1.0,0.798,1.351,0.868,1.348,1.022,0.876,1.081,1.054,0.979,0.823,1.083,1.653 +NM_003817,1.064,0.973,0.93,1.111,1.055,1.096,1.078,0.956,1.083,0.904,1.027,0.985,0.986,1.02,0.967,1.059,1.081,1.014,1.03,0.998,0.968,0.95,0.958,0.897,1.021,1.129,1.017,0.961,1.186,1.051,0.94,1.146,0.994,0.901,1.0,0.963,1.061,1.052,0.986,1.098,1.007,0.843,0.991,1.011,1.0,1.177,1.18,1.148,1.017,1.006,0.977,1.068,1.014,0.824 +NM_003818,0.694,0.91,1.133,0.813,0.794,1.112,0.729,0.611,0.827,0.856,1.267,0.813,0.647,0.759,0.921,1.127,0.864,0.823,0.873,0.918,0.589,0.7,1.47,0.871,0.729,0.734,1.082,0.703,0.47,1.81,0.7,1.648,1.54,1.445,0.514,1.045,1.177,0.825,1.138,1.585,0.903,1.241,1.022,1.301,0.816,0.96,1.04,0.67,0.975,0.702,1.059,1.227,0.997,1.97 +NM_003819,0.859,1.287,1.028,1.032,0.933,0.781,0.78,0.598,1.08,0.98,0.972,0.723,0.912,0.999,0.993,0.928,0.938,0.841,1.098,0.881,0.874,0.676,1.167,0.953,0.862,1.129,1.237,0.87,0.585,1.083,0.899,1.237,1.21,1.359,0.653,0.809,0.804,0.886,1.479,0.957,1.079,1.069,0.683,1.64,0.871,0.714,0.848,0.798,0.762,1.013,0.995,0.808,0.952,1.383 +NM_003820,0.45,1.353,0.579,1.1,0.364,1.707,0.945,0.315,0.536,0.403,2.178,0.35,0.484,0.325,1.033,2.094,0.473,0.913,0.545,1.572,0.378,0.427,1.848,0.407,1.033,0.477,0.605,0.389,0.543,1.662,0.431,1.244,0.959,2.26,0.263,0.76,1.827,0.348,1.646,1.087,0.534,2.299,1.037,1.287,0.427,1.438,0.761,0.459,1.339,0.416,1.491,0.967,0.742,2.642 +NM_003821,0.863,1.081,0.944,0.81,0.806,1.118,0.955,0.733,0.946,0.862,1.017,0.783,0.745,0.745,1.022,1.251,0.766,0.922,1.163,0.999,0.777,0.765,1.306,0.851,0.783,0.783,1.018,0.785,0.73,1.108,0.728,1.394,2.37,1.024,0.71,1.245,0.926,0.759,1.295,1.819,0.859,0.865,0.837,1.651,0.815,1.016,0.868,0.77,1.267,0.847,1.049,1.092,1.249,1.984 +NM_003822,1.063,0.907,1.072,0.994,0.992,0.918,0.873,0.957,0.917,0.793,1.225,0.979,1.017,1.054,0.707,1.174,0.828,1.029,0.896,1.042,1.155,0.929,0.944,1.114,0.957,0.934,1.08,0.984,0.757,0.92,0.895,0.943,0.96,1.313,1.017,1.077,0.949,0.974,1.025,1.037,0.827,1.082,1.087,0.926,0.799,1.034,1.072,0.953,0.923,0.932,1.128,1.161,0.895,0.976 +NM_003823,1.592,3.131,4.1579999999999995,3.674,1.29,1.728,1.603,1.205,1.242,1.197,1.5270000000000001,1.236,1.888,1.085,2.5860000000000003,2.293,5.851,1.468,2.24,1.53,1.158,1.23,1.891,1.197,1.166,1.167,4.861,1.188,1.149,1.8439999999999999,1.136,5.89,2.023,1.2570000000000001,1.363,5.006,2.276,0.965,16.197,17.813000000000002,1.718,2.176,4.112,20.317999999999998,2.9589999999999996,1.9929999999999999,2.78,1.472,11.108,8.081,1.775,3.671,3.215,3.811 +NM_003824,0.828,1.012,1.038,0.88,0.869,1.128,0.959,0.929,0.899,0.839,1.033,0.806,0.815,0.72,0.962,1.316,0.848,0.84,1.207,0.794,0.98,0.905,1.151,0.997,0.828,0.94,1.125,0.809,0.69,1.169,0.828,1.261,1.295,1.186,0.667,1.329,1.111,0.94,1.383,0.919,0.978,0.936,0.888,3.14,0.917,1.001,0.983,0.819,1.037,0.876,0.828,0.819,1.043,0.991 +NM_003825,0.967,1.104,0.97,0.871,0.837,1.007,0.875,0.872,0.969,0.985,1.129,0.882,0.922,1.11,1.026,1.154,0.873,1.008,0.998,1.049,1.063,0.933,1.041,0.952,1.042,1.1,1.117,0.913,0.626,0.918,0.98,0.89,0.992,1.034,0.966,0.78,1.016,0.938,0.964,0.984,1.13,1.088,1.494,1.023,0.916,0.935,1.124,1.002,0.933,0.985,1.171,0.881,0.932,1.093 +NM_003826,0.638,1.034,1.025,0.875,1.02,1.21,0.83,0.719,0.908,0.917,1.311,0.855,0.718,0.729,0.969,1.605,0.787,0.975,1.23,1.016,0.801,0.775,1.021,1.056,0.714,0.877,1.064,0.797,0.674,1.155,0.97,0.925,1.497,1.307,0.942,1.111,0.986,0.977,1.359,1.063,1.04,1.044,1.071,1.316,0.95,1.333,1.146,0.794,1.0,0.898,0.987,0.842,1.056,1.28 +NM_003827,1.038,0.78,1.291,0.668,1.48,1.133,0.606,0.895,1.658,1.362,0.781,1.226,0.744,0.76,1.0,1.226,1.044,1.141,1.341,1.071,0.311,0.931,1.307,1.632,0.525,1.157,1.077,1.375,0.36,1.315,1.22,0.785,1.205,1.087,0.852,0.45,0.861,1.423,1.016,0.778,1.453,0.905,0.619,0.703,1.356,0.972,1.138,1.167,0.793,1.048,0.997,0.585,1.07,1.178 +NM_003828,1.061,0.866,0.929,0.967,0.977,0.891,1.001,1.084,0.981,1.236,1.047,0.998,0.996,0.963,0.857,1.29,1.124,1.232,0.933,1.158,0.876,0.896,1.028,1.056,1.216,0.998,1.058,1.11,1.212,1.164,1.006,0.968,1.147,0.922,1.067,0.914,0.764,0.952,0.991,1.085,0.994,0.904,0.892,1.049,1.098,0.921,0.956,1.042,1.118,0.923,0.944,1.014,0.985,1.006 +NM_003829,0.92,1.021,0.825,0.89,0.936,0.949,1.015,0.946,0.869,0.969,0.999,0.96,0.911,0.832,0.789,0.831,0.933,0.801,0.84,0.933,1.087,0.919,1.05,0.885,1.155,1.011,0.896,1.053,0.897,1.144,1.001,2.493,1.02,1.293,0.878,1.04,0.896,1.131,1.546,1.237,1.011,1.636,0.924,1.013,0.903,0.992,1.116,0.998,1.009,0.912,1.034,0.926,0.958,0.997 +NM_003830,1.013,1.118,0.934,1.014,1.017,0.917,0.884,0.939,0.919,0.966,1.058,1.033,0.964,0.846,0.906,0.898,1.062,0.955,0.991,0.904,0.85,0.922,0.997,1.042,1.068,1.093,1.109,1.005,0.674,1.109,0.917,1.078,0.854,0.974,0.846,0.954,1.103,1.076,1.164,1.699,1.026,0.914,1.07,1.054,1.019,1.033,0.984,0.946,0.982,0.882,1.104,1.024,0.93,0.949 +NM_003831,0.892,1.188,1.64,0.73,1.051,1.523,0.639,0.772,1.513,0.753,1.417,0.71,0.711,0.919,1.626,2.461,0.806,1.079,1.387,1.35,0.454,1.009,0.951,0.825,0.379,1.153,0.931,1.367,0.457,1.512,1.442,0.542,0.891,1.294,1.47,0.514,1.356,1.519,1.174,0.566,1.09,0.999,0.805,0.965,0.948,1.248,0.823,1.339,1.078,0.983,1.27,0.512,0.598,2.345 +NM_003833,1.086,0.827,1.024,0.825,0.93,1.032,1.041,1.014,1.02,1.095,0.926,0.992,1.008,1.002,1.508,0.994,0.913,0.841,1.117,1.018,0.891,0.863,0.888,0.952,1.284,1.212,0.997,1.03,1.495,1.174,1.116,1.035,0.976,0.867,0.998,0.962,1.033,1.008,1.024,1.036,1.109,0.951,1.077,0.908,1.105,0.9,0.859,1.373,0.953,1.076,0.908,1.055,1.075,0.7 +NM_003836,1.011,0.93,1.001,0.999,1.012,1.012,1.134,0.864,1.016,0.882,1.098,1.048,1.017,1.004,0.801,0.891,1.027,1.109,0.839,1.157,1.074,0.887,0.938,0.939,0.943,0.915,0.893,1.048,0.743,0.969,0.958,0.933,1.069,0.86,1.094,1.173,1.041,0.932,0.913,0.947,0.982,1.17,0.819,1.054,0.924,1.145,1.129,1.039,0.894,0.934,0.882,0.975,0.882,0.814 +NM_003837,0.966,1.682,0.908,1.027,0.996,1.553,1.41,0.963,0.926,0.947,1.245,0.887,0.968,0.862,1.049,0.92,1.029,0.959,0.843,1.139,0.898,0.995,1.843,0.927,2.008,0.895,0.819,0.9,1.521,3.088,0.824,0.859,1.008,3.793,0.972,0.954,1.806,1.04,1.409,0.856,0.993,1.471,1.13,1.043,0.962,0.96,1.038,0.907,0.923,0.972,1.032,0.908,0.894,0.929 +NM_003838,0.938,1.048,1.068,1.052,0.865,0.942,1.152,0.967,1.075,1.13,0.972,1.05,1.017,0.875,1.016,0.891,0.987,0.827,0.847,1.029,1.009,0.896,0.984,1.104,0.942,0.856,0.961,0.927,0.819,1.059,0.996,1.006,0.882,0.953,1.109,1.189,1.044,1.24,1.02,1.022,0.976,1.116,0.824,1.093,1.046,1.034,1.001,1.078,1.023,0.874,1.034,1.006,0.96,0.829 +NM_003839,0.999,0.982,0.923,0.962,1.068,1.019,0.894,0.939,0.995,0.861,0.979,1.0,0.903,0.935,1.144,1.44,0.995,0.989,0.809,1.045,0.872,0.998,1.476,0.972,0.948,0.971,0.907,0.862,0.99,0.989,0.864,0.933,1.17,1.034,1.036,0.931,1.007,0.747,1.187,0.95,0.94,1.057,1.048,1.216,0.966,1.003,0.959,0.942,1.087,1.0,1.216,1.008,0.965,1.017 +NM_003841,1.03,1.016,0.874,1.221,1.127,0.926,1.105,0.894,1.092,0.922,0.888,1.025,1.056,1.084,0.967,1.012,1.013,1.022,1.055,0.884,0.825,0.9,0.999,1.097,1.082,1.068,1.022,0.926,0.899,1.042,0.914,0.971,1.07,1.036,1.031,1.168,1.093,0.988,0.997,1.075,0.958,0.89,1.091,0.976,0.994,1.022,0.982,0.941,1.083,0.931,1.127,1.01,1.038,1.007 +NM_003843,3.846,0.307,5.681,1.618,6.855,0.281,0.276,4.927,11.89,3.654,0.309,1.825,2.864,4.719,4.736,1.978,4.45,2.608,7.628,0.37,2.538,7.091,0.305,4.223,0.286,5.514,3.418,6.955,0.236,0.339,10.45,0.361,1.909,0.348,14.91,0.357,0.364,8.082,0.388,0.304,5.477,0.346,0.358,0.309,3.416,0.289,3.266,6.965,0.598,3.536,1.078,0.947,3.69,0.717 +NM_003844,1.03,0.777,1.091,0.942,0.916,0.932,0.593,0.633,0.953,1.097,0.985,0.972,0.81,0.946,0.833,1.1,0.763,0.918,0.846,0.836,0.834,0.904,0.88,1.009,0.746,0.83,1.364,0.888,0.604,0.994,0.836,1.062,1.441,0.992,0.597,1.229,0.852,0.774,1.486,0.794,0.877,0.948,1.633,1.404,0.89,1.898,1.194,0.745,1.508,0.899,1.002,0.955,1.099,1.368 +NM_003845,0.785,0.889,1.013,0.785,0.77,1.22,0.62,0.702,1.09,0.864,1.161,1.203,0.969,0.905,1.059,1.674,0.879,0.816,1.128,0.987,0.64,0.989,1.266,1.024,0.721,0.811,1.111,0.778,0.452,1.124,0.767,1.202,3.814,1.359,0.446,0.896,1.066,0.931,1.317,0.543,0.961,1.38,0.754,1.117,1.215,0.967,1.026,0.9,0.974,0.832,0.966,0.845,0.944,1.07 +NM_003846,0.862,1.038,1.401,1.1,0.929,1.312,0.686,0.656,1.249,1.028,1.269,0.834,0.799,0.909,1.084,1.984,0.974,0.933,1.003,1.225,0.64,0.637,1.255,1.098,0.718,0.773,1.384,0.954,0.446,1.334,1.073,1.611,1.757,1.502,0.357,0.993,1.13,0.783,1.082,0.626,0.997,1.224,0.639,1.002,0.877,1.028,0.914,0.649,0.983,0.795,1.181,0.726,0.969,1.893 +NM_003847,0.59,0.81,1.217,0.842,0.784,2.206,0.966,0.745,1.184,0.75,2.366,0.862,0.772,0.818,1.381,2.317,0.838,1.055,1.477,1.203,0.852,0.825,1.552,0.917,0.66,0.82,1.25,0.899,0.83,1.447,0.865,0.977,1.558,1.828,0.57,0.764,1.522,0.866,1.425,0.727,0.868,1.447,0.991,0.868,0.783,1.242,1.255,0.883,1.493,0.876,1.205,0.863,0.893,1.213 +NM_003848,0.785,1.423,0.917,0.819,0.903,1.045,0.781,0.64,1.254,0.879,1.332,0.643,0.569,0.582,0.923,1.734,0.753,0.951,0.943,1.045,0.727,0.616,1.269,0.714,1.011,0.723,0.76,0.984,0.613,1.627,0.877,1.072,1.161,2.036,0.622,0.811,1.152,0.685,1.543,0.726,1.045,1.291,1.437,0.944,0.847,1.553,1.176,0.684,1.286,0.745,1.243,0.649,0.739,1.455 +NM_003849,0.748,0.75,0.889,0.697,1.13,1.148,0.608,0.607,1.171,1.024,1.159,0.942,0.804,0.553,1.08,2.485,0.761,1.174,1.05,1.23,0.364,1.172,1.472,1.051,0.639,0.8,0.95,1.171,0.448,0.88,0.999,0.896,2.065,1.1,1.193,0.909,1.302,1.065,1.518,0.637,1.002,1.126,0.854,1.055,0.865,1.287,1.317,1.159,1.805,0.737,1.131,0.519,0.732,1.249 +NM_003851,1.11,0.964,1.432,0.711,1.056,0.671,0.481,0.688,1.195,1.115,0.88,0.67,1.094,0.761,0.833,1.037,0.927,0.911,1.905,0.659,0.627,1.046,1.14,0.904,0.649,1.37,1.192,1.123,0.251,0.873,1.02,1.647,1.464,1.199,0.209,1.256,0.623,1.222,1.157,1.162,1.098,1.048,0.434,1.006,1.24,0.577,0.808,0.994,0.45,1.534,0.772,0.858,1.286,1.669 +NM_003852,0.784,1.481,1.095,0.628,1.235,0.976,0.945,0.731,1.393,1.464,0.718,0.97,0.718,0.582,0.671,1.256,0.994,0.979,1.234,1.051,0.66,1.115,1.454,1.242,0.785,0.846,1.047,1.207,0.745,1.382,1.132,1.116,1.291,1.364,0.546,0.733,1.001,1.348,0.919,0.71,1.141,1.261,0.804,0.901,1.171,0.733,0.96,0.956,1.011,0.787,0.898,0.722,0.824,1.054 +NM_003853,1.035,1.108,1.242,1.081,1.005,0.955,0.877,0.97,1.133,0.863,0.96,0.854,1.105,0.911,1.334,1.024,0.821,1.228,1.016,0.897,0.853,0.978,1.144,0.887,1.079,0.961,0.985,0.969,0.97,0.999,1.06,1.038,1.083,0.944,1.153,0.872,0.981,1.015,0.932,1.2,1.094,1.126,0.916,1.031,1.107,0.761,0.86,1.011,1.026,0.889,1.18,1.166,1.054,1.124 +NM_003854,1.131,0.826,1.055,1.03,1.058,0.95,0.938,1.035,1.262,1.133,1.091,1.039,1.039,0.922,0.953,1.044,1.075,1.063,1.437,0.965,1.218,1.105,1.112,1.216,0.93,1.161,1.231,1.007,1.022,0.935,1.006,1.015,0.836,0.915,1.048,1.083,0.894,1.185,1.03,0.98,1.258,0.992,0.874,1.042,0.895,0.914,1.018,1.053,0.998,0.976,0.945,0.92,1.064,0.958 +NM_003855,0.82,0.856,1.078,0.726,0.701,1.268,1.016,0.76,0.722,0.877,1.454,0.73,1.22,0.782,0.79,1.644,0.87,1.019,0.626,1.121,0.718,0.823,1.039,0.782,0.931,0.764,0.848,1.214,1.093,1.096,0.782,1.195,1.052,1.406,0.72,0.814,1.248,0.901,1.763,1.031,0.711,1.502,1.177,0.993,0.945,0.959,0.851,0.965,1.192,0.792,1.227,0.849,0.983,1.109 +NM_003857,1.149,0.949,1.425,0.852,1.677,0.811,0.703,0.863,1.537,1.586,1.017,1.252,0.919,0.944,0.917,0.92,1.43,1.373,1.6,0.791,0.899,0.982,0.767,1.34,0.887,1.275,2.231,1.335,0.667,0.858,1.126,0.814,0.998,0.757,0.873,0.888,0.92,1.211,0.963,1.081,1.592,0.83,0.681,0.937,1.781,0.985,1.509,1.094,1.113,1.493,1.082,1.444,1.38,0.906 +NM_003858,0.597,1.262,0.987,0.718,0.744,1.356,0.703,0.573,1.007,1.013,1.186,0.689,0.567,0.634,0.89,1.499,0.865,0.835,1.091,0.993,0.545,0.808,1.265,1.033,0.643,0.67,1.207,0.705,0.572,1.515,0.877,1.279,1.98,1.38,0.392,0.917,1.296,0.892,1.569,0.679,0.9,1.157,0.9,1.317,0.843,1.29,1.132,0.67,1.3,0.813,1.208,0.752,0.814,1.123 +NM_003859,0.716,0.958,1.12,0.872,0.544,0.869,0.594,0.456,1.243,1.042,1.131,0.597,0.718,0.727,1.017,1.78,0.691,0.943,1.508,0.854,0.52,0.739,1.428,1.072,0.622,0.825,1.216,0.766,0.326,1.174,0.986,2.246,2.494,1.301,0.378,0.896,1.04,0.776,1.278,0.799,1.119,0.64,0.659,1.42,1.06,1.056,1.032,0.836,0.883,0.989,0.98,1.191,1.127,2.937 +NM_003860,0.906,1.007,1.206,0.816,0.928,0.925,1.006,0.811,0.884,1.104,1.126,1.098,1.054,0.773,0.959,1.289,0.872,0.799,1.038,1.058,0.676,0.917,1.18,1.18,0.734,0.853,1.228,0.948,0.642,0.938,0.788,1.371,2.62,1.086,0.485,1.355,0.924,0.903,1.668,1.119,1.051,0.978,0.73,1.14,1.01,0.876,0.925,0.927,1.089,0.797,1.168,0.92,0.905,1.388 +NM_003862,0.983,1.043,0.904,1.011,1.094,0.995,1.021,0.883,1.005,1.045,1.072,1.058,0.929,0.964,0.895,1.007,1.064,1.063,1.039,0.951,0.857,0.971,0.866,1.042,0.905,1.108,0.983,1.09,1.005,0.99,0.935,1.001,0.812,0.999,1.039,0.938,0.85,0.91,1.155,0.958,0.901,1.012,0.844,1.277,1.024,0.869,0.88,1.032,0.982,0.872,0.94,0.958,1.074,1.148 +NM_003863,0.875,0.947,0.832,1.015,0.689,1.09,0.746,0.725,0.87,0.807,0.907,1.067,0.839,0.704,1.002,1.264,0.916,0.878,1.071,0.848,0.897,0.842,1.038,1.074,1.069,1.044,1.008,0.672,0.655,0.971,1.063,2.25,2.163,1.377,0.435,1.512,0.692,0.76,1.639,1.394,0.907,1.118,0.869,1.926,0.982,0.686,0.756,0.741,0.671,0.823,0.963,1.052,1.02,1.772 +NM_003864,0.561,1.252,1.164,0.569,0.847,1.249,1.135,0.699,0.96,0.803,1.703,1.114,0.783,0.602,1.212,1.647,0.766,1.033,0.872,1.403,0.516,0.95,1.615,1.177,0.576,0.653,1.412,0.894,0.799,1.065,0.865,1.639,3.153,1.912,0.434,0.706,1.852,0.979,2.503,0.895,0.998,1.251,0.758,0.701,0.833,2.651,1.143,0.618,1.821,0.763,1.2,0.725,0.594,1.457 +NM_003865,0.873,0.944,0.966,0.974,0.912,0.972,1.071,1.026,0.991,1.03,1.023,1.051,0.959,0.992,0.943,1.019,1.04,0.93,1.0,0.999,1.044,0.888,0.784,0.994,0.974,1.0,1.074,0.972,1.046,1.115,1.171,1.084,1.051,1.112,1.037,0.921,0.923,1.018,0.985,0.976,0.964,0.927,0.877,0.87,0.96,1.036,0.923,1.057,0.988,1.003,1.095,0.958,1.024,1.049 +NM_003866,0.673,1.069,1.087,0.779,1.37,1.226,0.753,1.003,0.972,0.932,1.106,0.84,0.777,0.728,0.997,1.416,1.346,0.989,1.11,1.381,0.685,1.012,1.201,1.032,0.594,0.808,1.017,0.898,0.826,0.982,1.06,1.175,2.069,0.93,0.994,0.808,1.021,0.728,1.503,0.753,0.861,1.172,0.755,1.38,0.777,1.195,1.223,0.95,1.026,0.804,1.302,1.245,0.851,1.21 +NM_003867,1.016,1.013,0.988,0.967,1.147,1.045,0.957,1.053,1.024,1.083,0.967,0.986,0.94,1.097,1.012,1.059,0.922,1.085,0.948,0.988,1.0,0.927,1.091,1.054,1.11,1.02,0.934,1.082,0.965,0.975,1.001,0.998,0.898,1.027,1.051,1.003,0.919,0.95,0.923,0.949,0.992,0.911,1.147,0.895,1.094,1.113,0.967,1.007,0.939,0.884,0.922,0.96,0.926,0.957 +NM_003868,0.943,1.037,1.071,0.989,1.052,0.881,1.088,0.998,1.022,1.087,0.921,1.002,1.05,1.122,1.512,1.08,1.071,1.005,1.007,0.913,1.056,1.009,1.059,0.889,0.936,0.9,0.976,1.116,1.283,1.061,0.965,1.114,1.005,0.991,1.096,1.034,1.081,1.06,1.068,0.964,0.949,0.989,0.888,1.024,1.034,0.913,0.981,1.01,1.111,0.923,0.88,1.047,0.923,0.911 +NM_003872,1.9809999999999999,1.772,2.093,2.123,2.06,1.88,1.8679999999999999,2.003,1.9060000000000001,1.655,1.921,1.903,2.495,2.3040000000000003,1.9789999999999999,1.759,1.9660000000000002,1.755,2.04,2.019,1.991,1.996,2.2089999999999996,1.951,1.8359999999999999,1.9300000000000002,1.754,2.184,1.935,1.963,1.963,2.418,2.287,1.7650000000000001,2.026,2.052,1.865,1.9499999999999997,2.008,1.92,2.012,2.044,2.862,2.1820000000000004,1.962,1.876,1.866,2.0060000000000002,1.978,1.907,1.99,2.129,2.284,2.1390000000000002 +NM_003873,0.941,1.072,0.977,1.069,1.124,1.086,0.946,0.796,1.105,0.924,1.188,0.865,0.914,1.025,1.231,1.081,0.962,1.013,0.929,0.988,0.935,0.984,1.113,0.95,0.99,0.848,0.925,0.965,0.793,1.132,0.986,1.092,0.985,0.971,1.05,1.015,0.947,1.033,1.073,1.057,1.001,1.116,0.991,1.103,1.063,0.947,0.941,1.03,0.83,0.944,1.072,0.9,1.035,1.164 +NM_003874,1.024,1.107,0.903,0.703,0.883,1.12,0.824,0.871,0.846,0.967,1.059,0.9,0.896,0.735,1.139,0.87,1.16,1.083,0.898,0.963,0.999,0.838,0.935,1.045,0.992,0.915,1.247,0.915,0.802,1.104,0.959,1.268,1.035,0.924,0.966,0.846,0.939,1.037,1.187,1.084,0.965,1.026,1.006,0.832,0.886,1.017,0.9,0.982,0.866,0.983,1.104,0.96,0.987,1.21 +NM_003875,0.735,1.144,1.132,0.702,0.832,1.0,0.642,0.443,1.397,1.355,0.752,0.857,0.593,0.556,0.858,1.251,0.832,0.865,1.271,0.834,0.67,0.821,1.449,1.347,0.557,0.859,1.436,0.823,0.46,1.431,1.085,1.6,6.033,1.202,0.262,1.552,0.904,0.917,1.802,1.096,1.199,1.128,0.701,2.261,1.294,0.888,0.791,0.739,0.907,0.909,0.939,1.111,1.096,2.157 +NM_003876,0.697,0.892,1.17,0.765,1.216,0.906,0.932,0.704,1.054,1.047,0.925,1.074,0.806,0.783,0.748,1.044,0.933,1.08,1.04,1.134,0.645,0.985,1.085,0.999,0.63,1.167,1.059,1.073,0.565,0.978,0.868,0.996,0.856,0.96,0.806,1.731,1.008,1.096,1.071,0.819,1.17,0.937,0.829,1.321,1.094,1.167,0.926,1.174,1.044,0.907,1.079,0.807,1.056,1.236 +NM_003877,0.806,0.835,1.085,0.844,0.677,1.678,0.968,0.991,1.402,0.685,1.284,1.039,0.981,0.651,1.028,1.807,0.786,0.806,1.002,1.212,0.534,1.022,1.487,1.161,0.738,0.714,1.02,0.862,0.619,1.194,1.101,0.773,1.037,1.45,0.529,0.607,1.425,0.892,1.189,2.167,0.962,1.322,0.824,0.634,0.744,1.346,0.7,0.706,1.189,0.993,1.097,1.209,0.558,1.204 +NM_003878,0.846,0.634,1.45,0.75,1.172,0.778,0.41,0.627,1.842,1.395,0.677,1.117,1.161,1.151,1.118,1.428,0.64,1.261,1.809,0.6,0.475,1.376,0.835,1.755,0.319,0.615,3.579,1.246,0.331,0.831,1.058,1.291,4.221,0.734,0.206,1.158,0.736,1.248,1.352,1.234,1.233,0.568,0.484,1.059,1.414,0.879,0.968,1.08,1.251,1.039,0.93,0.905,1.067,1.653 +NM_003880,1.062,1.086,1.114,0.988,1.111,0.929,0.965,0.928,1.06,0.953,1.152,0.904,0.946,1.297,0.856,1.392,1.135,0.815,0.932,1.268,1.052,0.964,1.081,1.014,1.017,1.02,0.908,1.149,0.87,0.913,1.195,1.022,1.094,0.99,0.917,0.938,0.925,1.046,0.901,0.893,0.915,1.141,0.982,1.127,0.751,1.177,0.933,1.033,1.098,0.945,0.95,0.946,0.937,1.284 +NM_003881,0.964,0.99,0.931,0.923,0.911,1.057,1.095,1.086,1.056,0.987,0.969,1.077,0.856,1.117,1.115,1.123,1.022,1.198,0.908,0.93,0.812,0.898,1.141,1.079,0.926,0.871,1.005,1.066,0.945,1.122,0.942,0.961,1.124,1.02,0.902,0.989,0.904,0.965,1.023,0.921,0.999,0.938,1.044,0.902,1.009,0.991,1.039,1.023,0.912,0.99,1.174,0.892,0.902,0.851 +NM_003883,0.834,0.715,1.201,0.734,1.098,1.109,0.472,0.707,1.362,1.134,0.873,1.136,0.957,0.845,1.03,1.326,0.951,0.972,1.551,0.863,0.756,1.0,1.232,1.462,0.516,1.249,1.276,1.026,0.454,1.011,1.052,1.096,3.92,1.159,0.784,0.703,0.913,1.114,1.176,0.864,1.149,0.905,0.715,1.25,1.302,0.714,1.167,1.115,0.719,1.045,0.902,0.828,1.172,1.646 +NM_003884,1.069,0.723,1.175,0.883,1.427,0.976,0.931,1.17,1.328,0.965,1.073,0.956,1.159,0.996,1.381,1.028,1.115,1.065,1.043,0.908,0.982,1.305,0.981,1.031,1.088,1.132,0.871,1.54,0.716,0.951,1.474,1.104,1.168,0.835,2.367,0.929,0.885,1.142,0.975,0.951,1.233,0.781,1.138,1.065,1.069,0.992,1.111,1.688,0.962,0.986,1.035,0.962,0.958,1.128 +NM_003885,1.534,0.755,1.853,0.905,1.479,0.826,0.768,0.998,1.815,1.694,0.759,1.63,1.234,1.41,1.154,1.005,1.302,1.158,1.739,0.822,1.22,1.486,0.894,1.843,0.7,1.176,1.508,1.74,0.74,0.707,1.291,0.919,1.564,0.773,0.867,0.698,0.763,1.287,0.821,0.853,2.094,0.906,0.757,0.887,1.662,0.845,1.263,1.381,0.873,1.628,0.885,1.031,1.693,0.93 +NM_003886,1.015,0.895,0.991,0.849,0.897,0.946,0.973,1.163,1.114,1.1,1.04,1.198,1.004,1.032,0.888,1.125,1.022,1.058,0.991,1.066,1.07,1.13,1.08,1.124,1.002,1.082,0.989,1.022,0.885,0.93,1.017,0.829,0.98,1.02,1.135,0.89,0.885,1.115,0.967,0.905,1.017,0.905,0.778,0.954,1.106,0.984,1.198,0.942,0.845,0.977,0.99,1.002,1.147,1.133 +NM_003887,0.48,1.163,0.494,0.858,0.516,2.493,1.196,0.443,0.517,0.509,1.534,0.361,0.346,0.414,1.11,1.505,0.342,1.347,0.448,1.793,0.375,0.499,2.026,0.521,0.743,0.45,0.442,0.469,0.75,2.448,0.615,0.788,1.313,2.149,0.591,0.854,1.718,0.544,1.748,0.812,0.604,1.62,0.747,1.227,0.387,1.5,0.842,0.556,1.439,0.336,1.376,0.836,0.457,2.591 +NM_003890,0.156,0.96,0.265,2.425,0.287,3.801,1.04,0.0388,0.116,0.073,2.106,0.16,0.146,0.112,2.227,2.737,1.208,3.663,0.672,5.157,0.049,0.221,5.401,0.077,1.483,0.105,1.283,0.114,1.805,1.834,0.211,0.225,0.592,3.725,0.034,0.398,3.781,0.106,2.093,0.0358,0.249,7.304,3.249,0.0559,0.219,2.596,0.232,0.167,3.782,0.296,4.725,0.119,0.386,0.17 +NM_003891,0.999,1.004,1.069,0.99,0.967,1.042,1.126,1.085,1.204,0.885,0.77,1.105,0.886,1.012,0.766,0.869,1.049,1.029,0.929,0.902,1.052,0.998,1.106,0.941,1.043,0.95,1.002,0.945,0.905,1.069,0.98,0.989,0.927,1.147,0.938,1.154,0.892,0.997,1.001,0.822,0.887,1.046,1.005,0.968,1.009,0.908,1.039,0.834,1.063,0.983,0.993,1.017,0.907,1.028 +NM_003893,1.089,1.1,1.018,1.044,0.947,0.968,0.935,0.986,1.0,1.103,1.086,1.128,0.945,0.964,1.13,0.903,1.0,1.031,0.847,1.041,0.886,0.915,0.934,1.066,0.972,1.112,0.983,1.041,0.705,1.12,1.111,1.096,1.053,0.863,1.033,0.859,1.024,1.031,1.085,1.035,1.01,0.936,0.974,1.086,0.971,0.856,1.137,1.123,0.981,1.076,0.937,0.885,1.004,0.955 +NM_003894,1.082,1.068,1.003,0.839,0.998,0.965,0.978,1.011,1.168,1.113,0.93,1.015,0.878,0.92,0.91,1.101,0.991,0.994,1.025,1.108,0.936,1.066,1.108,1.019,1.082,0.967,0.99,1.114,1.2,0.877,1.107,0.912,0.934,1.006,0.982,0.965,1.042,0.979,1.116,0.992,1.019,0.903,1.289,1.182,0.986,0.961,1.148,1.076,1.004,0.932,1.065,0.962,1.165,0.863 +NM_003895,0.892,0.979,1.089,1.004,1.065,0.898,1.015,1.159,0.938,1.024,0.955,0.957,0.955,0.945,1.081,1.185,0.954,1.145,1.029,1.125,0.916,1.01,1.038,1.098,1.129,0.968,1.13,0.979,1.278,0.949,1.139,0.934,0.967,1.007,1.043,0.946,1.004,1.114,1.126,0.999,1.138,0.92,0.936,0.948,1.025,0.978,0.957,1.033,0.92,1.032,0.96,1.046,0.914,0.999 +NM_003896,0.816,1.307,0.888,1.162,0.795,1.503,1.15,0.806,0.765,0.951,0.904,0.757,0.897,0.772,1.046,0.964,0.867,1.301,0.895,1.205,0.867,0.837,0.987,0.808,1.141,0.91,0.958,0.771,0.968,1.377,0.859,2.462,0.981,2.236,0.873,0.882,0.902,0.874,1.783,0.964,0.924,1.546,0.985,1.609,0.923,0.939,0.835,0.892,0.809,0.833,1.189,1.031,1.052,1.338 +NM_003897,1.095,0.859,0.706,0.867,0.877,0.512,0.512,3.943,0.894,1.328,0.672,1.197,0.753,0.92,0.74,0.593,1.145,1.149,1.275,0.348,0.853,1.658,0.802,1.391,0.466,1.044,0.62,0.743,0.488,0.962,1.177,1.307,1.484,0.813,5.028,0.713,0.691,2.257,1.618,7.183,1.403,0.735,1.111,1.581,0.684,1.254,1.342,1.6,0.886,0.747,0.541,1.198,1.214,1.353 +NM_003898,0.874,1.055,1.024,0.828,0.939,0.957,1.042,0.788,0.975,0.931,1.052,0.891,0.819,0.866,0.951,1.119,0.875,1.067,0.78,1.239,0.838,0.845,1.393,0.893,0.918,0.819,1.114,0.954,0.692,1.122,0.776,1.118,0.87,1.061,0.871,1.026,0.903,0.996,1.185,1.103,0.944,1.217,0.844,1.258,0.868,1.061,1.036,0.944,1.017,0.928,1.165,1.008,0.902,1.054 +NM_003899,1.9130000000000003,2.039,2.11,1.923,1.8769999999999998,1.9460000000000002,1.6509999999999998,1.589,2.0949999999999998,1.726,1.843,1.508,1.689,1.444,1.998,2.7190000000000003,1.9369999999999998,1.793,1.906,2.458,1.588,1.865,2.225,1.623,1.8900000000000001,1.7810000000000001,1.946,1.673,1.596,2.598,1.778,3.048,2.5890000000000004,2.358,1.546,1.847,2.13,1.918,2.502,1.842,1.774,2.246,1.7850000000000001,2.643,1.9089999999999998,2.167,1.9909999999999999,1.679,1.88,1.7879999999999998,1.981,1.7000000000000002,1.835,2.856 +NM_003900,0.537,2.003,0.838,0.639,1.059,1.195,1.39,0.785,1.624,0.46,1.355,0.753,0.614,0.872,0.748,0.998,0.793,0.817,0.454,1.247,0.463,0.864,0.689,0.651,0.649,0.877,0.857,1.003,0.975,2.455,1.422,3.077,0.611,1.483,3.425,3.345,1.141,0.607,5.339,1.679,1.002,0.706,1.134,1.05,0.708,1.037,1.628,0.951,0.738,0.635,1.136,2.243,0.552,5.215 +NM_003901,0.945,0.775,1.201,0.758,1.134,0.733,0.436,0.719,1.337,1.268,0.894,0.763,0.769,0.865,0.988,1.321,0.898,0.934,1.744,0.764,0.979,1.058,0.931,1.273,0.441,1.36,1.126,1.021,0.347,0.813,1.134,0.776,2.741,1.026,0.892,0.719,0.906,1.181,1.242,0.585,1.174,0.86,0.538,1.405,1.163,0.967,1.077,1.017,0.997,1.213,0.957,0.811,1.195,1.563 +NM_003902,0.748,0.821,1.123,0.78,0.894,0.671,0.595,0.539,1.08,1.069,1.061,0.797,0.654,0.649,0.983,1.351,0.815,0.727,1.12,0.879,0.976,0.689,1.027,1.063,0.569,0.958,1.061,0.838,0.306,0.677,0.897,1.399,3.695,0.668,0.386,1.481,0.717,0.683,1.914,1.054,0.962,0.986,1.014,2.654,1.184,1.051,1.108,0.718,1.151,0.892,1.32,1.368,1.138,2.265 +NM_003903,0.535,1.057,1.486,0.619,1.084,1.367,0.733,0.613,1.211,1.18,0.704,0.979,0.679,0.586,0.999,1.937,1.023,1.015,0.847,1.222,0.368,1.158,1.411,1.246,0.601,0.592,1.097,0.825,0.531,1.706,0.879,2.003,1.411,1.27,0.254,0.871,0.969,0.966,1.022,0.743,1.314,1.013,0.683,1.072,0.961,0.993,1.18,0.687,1.267,0.745,1.05,0.675,0.644,1.51 +NM_003905,0.842,0.967,1.147,0.728,0.85,1.216,0.506,0.522,1.498,1.054,1.362,0.961,0.688,0.918,1.227,1.739,0.767,0.73,1.141,0.982,0.621,0.763,1.457,1.195,0.65,0.881,1.155,0.882,0.41,1.089,0.972,1.102,2.966,1.164,0.227,1.192,1.412,0.913,1.258,0.626,0.973,1.054,0.964,1.047,0.957,1.386,0.961,0.8,1.028,0.651,1.027,0.97,1.156,2.64 +NM_003906,0.671,1.039,1.022,0.743,0.931,0.971,0.674,0.504,0.951,0.984,0.836,0.635,0.497,0.72,0.86,1.178,0.861,0.806,0.992,1.009,0.52,0.768,1.267,0.964,0.571,0.714,1.012,0.764,0.793,1.019,0.814,1.261,1.508,1.049,0.372,0.745,1.097,0.968,1.373,1.209,1.061,1.033,0.647,1.133,0.815,1.091,1.005,0.615,0.853,0.794,1.038,0.639,1.026,1.581 +NM_003907,0.803,0.935,1.118,1.107,0.9,0.89,0.593,0.498,1.135,1.06,0.884,0.748,0.622,0.77,0.804,1.135,0.967,0.963,1.324,0.82,0.668,0.827,1.198,0.973,0.785,1.073,1.081,0.817,0.559,1.343,0.775,1.293,1.651,1.166,0.363,0.873,1.0,0.994,1.402,0.931,1.056,1.022,0.687,1.851,1.097,0.922,0.987,0.863,1.0,0.981,0.928,0.895,1.076,1.534 +NM_003908,0.662,0.933,1.189,0.613,1.045,1.057,0.616,0.603,1.387,1.191,0.834,0.997,0.573,0.575,0.751,1.143,0.952,0.912,1.181,0.824,0.443,0.939,1.377,1.438,0.502,0.769,1.155,1.058,0.395,1.218,0.954,1.191,1.611,0.991,0.616,1.146,1.025,1.077,1.192,1.13,1.27,0.93,0.61,1.247,1.088,1.034,1.36,0.904,0.972,0.771,0.981,0.996,0.912,2.052 +NM_003909,1.294,0.786,1.785,0.802,1.334,0.843,0.366,1.386,1.938,1.212,0.903,1.136,1.131,1.363,1.34,1.361,0.975,1.204,2.694,0.625,0.787,1.597,0.903,1.45,0.495,1.931,1.52,1.495,0.281,0.838,1.899,0.841,1.637,1.071,2.155,0.648,0.854,2.103,0.996,0.589,1.441,0.925,0.41,0.589,1.436,0.995,0.903,1.979,0.803,1.517,0.948,0.729,1.309,0.984 +NM_003910,0.828,0.721,1.028,0.73,0.796,1.207,0.485,0.542,1.175,1.021,1.068,0.884,0.755,0.734,0.973,1.514,0.818,0.829,1.529,0.75,0.675,0.843,1.182,1.212,0.661,1.074,1.251,0.744,0.428,1.474,1.001,1.361,2.031,1.314,0.682,0.653,0.974,0.787,1.436,1.235,1.087,0.903,0.599,1.663,0.936,0.899,1.239,1.119,0.999,0.781,0.903,1.813,1.005,1.553 +NM_003913,0.977,0.982,1.082,1.004,0.998,0.974,1.063,0.913,1.042,1.129,0.894,1.021,1.004,1.007,1.075,0.989,1.096,1.035,0.893,1.002,0.999,1.009,0.967,1.195,1.06,0.976,1.058,1.042,0.783,0.88,0.913,0.954,1.135,0.964,1.22,0.941,1.001,0.996,0.988,0.987,1.015,0.944,0.95,1.122,0.969,1.021,0.949,0.993,1.116,1.022,1.054,1.01,0.979,0.994 +NM_003914,0.994,0.931,0.993,0.839,0.813,0.919,0.792,1.29,1.031,1.104,0.921,1.069,0.89,0.999,1.057,1.128,0.885,0.995,1.037,0.852,1.13,0.847,1.028,1.079,0.988,0.999,1.032,0.982,1.17,1.017,1.15,0.903,1.212,0.974,0.914,1.031,0.937,1.073,0.94,1.137,0.848,0.888,0.985,0.796,1.001,0.79,1.126,0.899,0.95,0.94,0.87,1.282,1.646,1.242 +NM_003916,0.826,1.12,1.102,0.835,0.877,1.14,1.001,0.999,0.868,0.776,1.034,0.999,1.034,0.76,0.967,1.217,0.761,0.803,0.839,0.98,0.746,0.99,1.201,0.996,0.973,0.771,1.005,1.158,0.975,1.329,0.812,2.711,1.145,1.696,0.602,0.893,0.903,1.037,1.203,1.747,1.191,1.615,0.842,0.804,0.849,0.811,1.048,0.797,0.81,0.823,1.004,1.67,0.905,1.369 +NM_003917,0.862,0.693,1.201,1.211,0.634,1.337,0.665,0.444,0.987,1.013,1.08,0.685,0.695,0.679,1.017,1.323,0.952,1.0,1.329,1.059,0.637,0.964,0.97,0.906,0.952,1.129,1.243,0.549,0.724,1.293,0.771,0.603,1.217,1.264,0.398,0.77,0.983,0.711,1.171,0.651,0.967,0.931,0.741,1.674,0.94,0.695,0.883,0.78,0.695,1.052,1.0,0.552,1.141,1.088 +NM_003919,0.8,1.139,0.74,0.94,0.847,1.146,0.993,0.783,0.637,0.673,1.43,0.69,0.762,0.73,0.807,1.218,0.659,0.81,0.737,1.095,0.831,0.682,1.54,0.693,1.081,0.648,0.739,0.819,0.804,2.195,0.695,5.082,1.348,2.822,0.772,0.85,1.063,0.757,1.322,1.298,0.959,2.241,1.004,2.206,0.81,1.068,0.884,0.728,0.687,0.68,1.129,2.998,0.919,0.914 +NM_003920,0.79,0.869,1.314,0.906,0.898,0.83,0.728,0.6,1.173,1.234,0.847,0.917,0.737,0.966,1.022,1.037,0.931,0.858,1.023,0.826,0.767,0.733,1.541,1.078,0.727,0.891,1.68,0.867,0.571,1.096,0.893,1.625,2.473,1.072,0.514,1.567,0.841,0.794,1.51,1.502,1.091,0.936,0.858,2.884,1.007,0.862,1.1,0.708,1.028,0.959,1.314,0.993,1.326,2.616 +NM_003922,1.012,1.132,1.203,0.861,0.916,0.961,0.827,0.591,0.959,0.92,0.75,0.805,0.824,0.761,1.138,0.98,1.038,0.971,0.956,0.875,0.878,0.837,1.301,1.002,1.032,1.05,1.377,0.933,0.686,1.084,0.936,1.134,1.158,1.2,0.659,0.855,1.029,0.996,1.342,1.065,1.0,1.111,0.805,0.889,1.011,0.991,0.858,0.83,0.88,1.081,0.992,0.774,0.974,1.323 +NM_003923,1.027,1.046,0.96,1.004,1.029,0.934,0.979,1.015,1.101,0.933,0.921,1.003,1.001,0.941,0.985,1.28,1.064,1.067,0.9,0.943,1.141,0.995,1.001,0.993,0.91,1.062,1.23,1.008,0.819,1.063,0.974,0.911,0.92,1.14,0.888,0.865,0.998,0.816,1.083,0.943,0.925,0.991,0.776,0.983,1.115,0.938,0.978,1.015,0.933,0.972,1.011,1.016,0.785,1.078 +NM_003925,0.469,1.233,1.061,0.755,0.774,1.688,1.029,0.483,0.946,0.941,1.225,0.838,0.547,0.588,0.937,1.374,0.808,0.841,0.826,1.262,0.424,0.782,1.065,0.867,0.572,0.474,1.24,0.762,0.719,2.285,0.728,2.204,2.389,1.661,0.172,0.888,1.173,0.822,1.359,0.754,0.886,1.129,0.879,1.101,0.704,1.05,0.802,0.513,1.168,0.627,1.101,0.963,0.875,1.574 +NM_003926,0.884,1.332,1.419,0.64,1.32,0.705,0.616,0.445,1.216,1.85,0.69,1.063,0.732,0.737,0.685,0.819,1.142,0.85,0.95,1.025,0.463,0.889,1.803,1.462,0.845,1.024,1.713,1.17,0.391,0.901,0.967,2.047,1.091,0.994,0.268,0.973,0.904,1.155,0.936,1.593,1.676,1.049,0.992,1.594,1.476,0.965,1.418,0.857,1.037,0.918,0.98,1.03,1.141,1.409 +NM_003927,1.188,1.041,0.746,0.918,1.26,0.908,0.999,1.141,1.076,1.02,1.01,1.158,0.955,0.846,0.883,1.004,1.027,0.981,1.035,1.094,1.016,0.957,1.093,0.928,1.063,1.077,1.021,0.982,0.568,0.975,1.019,0.988,0.972,0.982,1.035,1.0,1.043,0.966,1.127,1.077,1.019,0.988,0.954,0.916,1.029,0.947,0.936,1.011,1.062,0.916,0.973,1.083,1.059,0.972 +NM_003928,1.269,0.795,1.69,0.681,1.494,0.858,0.426,1.166,2.107,1.547,0.655,1.239,0.718,1.319,1.43,1.337,1.23,0.939,2.184,0.602,1.452,1.863,0.864,1.901,0.422,1.434,1.966,1.841,0.462,0.968,2.282,2.52,2.071,1.259,0.37,0.646,0.597,1.709,0.752,0.789,1.794,0.785,0.384,0.835,1.693,0.591,1.187,1.017,0.447,1.179,0.918,0.865,2.039,0.933 +NM_003930,0.766,0.64,1.179,0.951,1.033,1.217,0.588,0.67,1.169,0.796,1.274,0.703,0.561,0.851,0.929,1.717,0.663,1.018,1.026,1.469,0.492,0.604,1.757,0.781,0.562,1.048,0.856,0.825,0.38,1.387,1.093,0.837,1.306,1.076,0.84,1.281,1.164,0.703,1.431,1.118,0.939,1.423,1.238,2.196,0.744,1.273,1.062,0.63,0.613,0.609,1.557,0.86,0.92,1.076 +NM_003931,1.181,0.965,1.306,1.054,0.913,0.957,1.071,0.907,1.594,1.136,0.985,0.906,0.875,1.513,1.199,1.038,1.06,1.038,1.333,0.909,1.107,1.034,0.833,1.052,0.783,1.082,1.276,0.986,0.675,1.02,1.286,1.205,1.361,0.895,0.89,0.86,0.847,0.988,1.061,0.969,1.459,0.94,0.906,1.1,1.084,1.016,1.092,0.964,0.97,1.217,0.889,1.1,1.342,0.93 +NM_003932,0.582,1.253,1.411,0.511,0.948,1.369,1.177,0.941,1.19,0.909,0.86,1.07,0.788,0.663,0.967,1.835,1.001,0.885,0.795,1.036,0.41,1.213,1.196,1.391,0.534,0.49,1.911,0.951,0.794,1.604,1.392,1.394,1.484,1.557,0.477,0.32,1.043,1.869,1.583,0.877,1.145,1.377,0.49,0.364,1.07,0.879,0.772,0.849,1.271,0.816,1.096,0.725,0.441,1.688 +NM_003933,1.064,1.013,1.009,1.035,1.014,0.942,0.841,1.007,1.007,1.012,0.889,0.931,1.015,1.211,0.891,0.948,0.98,0.968,1.041,0.966,0.976,1.042,1.031,1.208,0.977,1.235,1.074,1.001,1.191,0.937,1.056,1.066,0.879,1.087,1.121,0.989,0.995,1.142,0.884,0.911,1.103,0.986,1.152,1.086,0.966,1.049,1.128,1.073,0.952,1.049,1.049,0.753,0.988,0.878 +NM_003935,0.874,1.21,1.355,0.822,1.042,0.871,0.74,0.525,1.174,0.942,0.921,0.794,0.598,0.841,1.235,0.936,1.099,0.986,1.12,1.0,0.7,0.894,1.064,0.975,0.734,0.99,1.172,0.906,0.609,1.094,0.946,1.168,1.244,1.155,0.492,1.004,0.786,0.905,1.118,0.744,1.028,1.028,0.853,1.301,1.089,1.035,0.851,0.856,0.895,0.927,1.0,0.841,1.077,1.444 +NM_003936,0.998,0.974,0.91,0.992,1.081,1.09,1.182,1.087,1.102,1.052,1.026,1.074,1.018,0.981,1.498,1.0,1.148,1.043,1.074,0.971,0.923,1.025,0.936,1.021,0.891,0.959,0.872,0.924,1.47,1.022,0.954,0.91,0.837,0.993,1.121,0.844,1.067,1.041,0.983,0.996,1.057,0.935,0.844,0.992,0.99,1.003,1.005,1.139,1.015,1.086,1.025,0.94,1.035,0.975 +NM_003937,0.604,0.52,2.527,1.187,1.322,1.797,1.005,0.648,0.906,0.958,1.376,1.263,0.558,0.854,1.02,0.913,2.646,1.025,2.764,0.896,0.392,0.537,1.482,3.412,0.47,0.444,8.015,0.631,0.48,0.856,0.819,0.769,1.071,1.449,0.533,1.104,1.126,0.55,2.165,0.955,0.677,1.062,0.445,1.198,2.194,1.474,0.777,0.552,0.414,2.4,1.438,2.021,3.288,1.475 +NM_003938,0.591,0.309,1.464,0.699,0.991,0.863,0.608,0.286,1.15,1.149,0.72,0.495,0.323,0.685,0.846,1.058,1.281,0.969,0.839,1.077,0.433,0.582,1.959,0.985,0.204,0.714,1.321,0.914,0.322,1.054,0.993,1.491,1.602,0.606,0.425,1.05,0.923,0.819,1.174,1.108,1.412,1.169,0.971,1.294,1.321,1.279,1.126,0.639,1.437,0.843,1.497,0.869,1.085,1.687 +NM_003939,0.963,1.041,1.121,0.893,0.882,0.958,0.836,0.824,1.162,0.89,0.871,0.974,0.859,1.088,1.053,1.043,1.028,1.042,1.015,1.381,0.954,0.945,1.023,1.021,0.977,0.896,1.158,0.932,0.782,1.007,0.964,1.499,1.73,1.123,0.954,0.917,0.912,0.971,1.166,0.861,1.083,1.035,1.029,1.024,1.054,0.785,0.933,0.93,0.918,1.045,1.068,0.964,0.978,1.08 +NM_003940,0.891,0.844,1.093,1.007,0.919,1.078,0.85,0.962,1.095,1.065,1.151,0.918,0.92,0.958,0.901,1.094,0.816,0.979,1.125,0.91,1.022,1.011,1.307,1.179,0.924,0.893,0.909,1.159,0.944,0.928,1.012,1.652,2.268,1.08,0.788,0.839,0.959,1.08,1.179,0.876,0.917,1.002,0.73,1.397,0.895,0.914,1.042,0.766,0.871,0.94,1.102,0.782,0.967,1.714 +NM_003941,0.878,0.712,1.123,0.76,0.94,1.635,0.792,0.912,1.27,0.714,1.435,0.697,0.722,0.766,1.332,2.052,0.785,0.994,1.427,1.169,0.589,0.691,1.499,0.642,0.706,0.891,1.267,0.717,0.454,1.662,1.312,0.889,1.104,1.454,1.639,0.469,1.684,0.82,1.129,0.378,0.953,1.018,0.802,0.542,0.829,1.484,0.94,0.91,1.263,1.032,1.246,0.618,0.96,1.305 +NM_003942,0.912,0.814,0.983,1.153,0.707,1.173,0.755,0.574,0.684,0.797,1.005,0.872,0.803,0.581,0.792,1.695,0.962,1.103,1.035,0.766,0.827,0.842,1.004,1.019,0.868,1.029,1.042,0.623,0.968,1.289,0.721,1.221,2.35,1.244,0.382,1.325,1.168,0.897,3.137,0.776,0.881,1.042,0.771,1.653,1.044,0.776,0.826,1.106,0.999,1.439,0.998,0.918,0.954,1.588 +NM_003943,0.8,1.097,0.918,0.949,0.887,1.747,1.051,0.788,0.774,0.804,1.368,0.813,0.761,0.851,1.373,1.46,0.837,1.284,0.947,1.272,0.831,0.73,1.067,0.885,0.904,0.919,0.891,0.828,1.061,1.366,0.839,1.175,1.017,1.59,0.792,0.799,1.814,0.781,1.213,0.919,0.944,1.003,0.821,1.122,0.885,1.234,0.997,0.781,1.139,0.864,1.127,0.806,0.949,0.729 +NM_003944,0.302,1.454,0.392,1.64,0.352,3.021,1.159,0.284,0.395,0.386,2.563,0.339,0.336,0.288,1.237,4.024,0.324,1.132,0.371,2.897,0.301,0.312,1.26,0.363,2.066,0.458,0.388,0.327,0.792,2.35,0.355,1.82,1.063,3.893,0.236,0.539,2.146,0.348,2.918,0.58,0.349,2.575,1.93,1.177,0.308,1.746,0.542,0.282,0.932,0.305,1.922,0.445,0.364,0.45 +NM_003945,0.756,0.885,1.223,0.619,1.033,1.439,0.549,0.784,1.215,0.944,1.237,0.874,0.797,0.685,0.882,1.425,0.922,1.216,1.432,0.829,0.597,1.204,0.99,1.099,0.542,1.111,1.074,1.038,0.66,1.313,1.05,1.264,2.026,1.416,1.092,0.572,1.22,1.392,1.073,0.763,1.075,1.095,0.497,0.79,0.89,0.88,1.17,1.263,0.721,0.78,0.986,0.758,0.911,1.56 +NM_003946,1.257,0.745,1.332,0.965,1.056,0.846,0.736,1.133,1.16,1.013,0.89,1.094,1.025,1.078,0.933,1.001,1.07,0.758,2.111,0.863,1.444,1.182,0.866,1.444,0.786,1.425,1.327,0.927,0.667,0.742,1.281,0.953,2.515,0.865,0.998,0.934,0.785,1.517,1.007,0.895,1.387,0.81,0.765,1.026,1.063,0.997,1.053,1.184,0.84,1.631,0.816,0.69,0.99,1.546 +NM_003947,1.14,1.031,1.031,1.0,1.111,0.964,0.947,0.943,1.064,1.007,1.07,0.937,0.898,0.948,1.344,1.005,0.97,1.057,1.036,0.986,1.038,0.932,1.083,0.972,1.029,1.048,1.078,0.975,1.047,0.928,0.987,1.061,0.989,0.966,0.981,1.03,1.074,1.245,0.881,0.955,0.937,0.934,0.945,1.075,0.979,0.967,0.888,0.975,1.026,1.093,1.016,0.977,0.914,1.066 +NM_003948,1.01,1.061,1.156,0.899,1.027,0.869,1.17,0.912,1.015,0.943,0.962,1.001,1.025,1.16,1.192,1.086,0.977,0.939,1.124,0.922,1.001,0.988,0.858,1.111,0.999,1.136,1.032,1.109,1.15,1.168,0.891,0.958,0.963,1.032,0.925,0.991,1.018,1.046,1.092,1.123,0.905,0.913,1.092,1.048,0.939,1.017,1.068,1.046,0.964,0.917,1.027,1.011,1.002,0.828 +NM_003949,1.007,0.986,0.943,1.045,0.919,1.018,1.122,1.038,0.87,1.134,0.999,0.933,0.972,0.964,0.867,0.97,1.067,1.133,0.941,0.959,0.973,1.044,1.071,0.996,1.03,0.991,0.997,0.97,0.828,1.006,0.873,1.164,0.838,1.007,0.941,1.156,0.961,1.015,1.083,1.103,0.985,1.029,1.017,0.94,0.958,1.092,0.951,1.105,0.836,1.06,1.164,1.1,1.038,0.93 +NM_003952,1.271,0.6,1.383,0.834,1.888,1.214,0.507,1.305,1.728,1.148,0.698,1.996,1.594,0.923,1.193,2.243,0.672,1.337,2.042,0.784,0.689,1.374,0.964,2.194,0.644,1.865,1.258,0.954,0.436,1.261,1.566,0.826,1.56,1.155,0.412,1.194,0.763,1.053,0.756,0.579,1.214,0.681,0.318,1.308,1.3,0.861,1.147,1.29,0.999,1.648,0.871,0.476,0.887,0.654 +NM_003953,0.691,0.961,1.469,0.781,0.901,1.067,0.774,0.694,1.004,1.054,1.102,0.827,0.701,0.786,0.764,1.36,1.128,0.844,1.466,0.857,0.839,0.827,0.951,1.223,0.67,0.833,1.52,0.937,0.487,0.966,0.976,1.316,2.726,0.977,0.694,1.449,1.0,0.818,0.92,1.29,1.224,0.935,0.739,1.434,1.068,0.894,1.258,0.742,0.942,0.993,1.018,0.889,1.247,1.226 +NM_003954,0.973,0.992,1.609,0.842,1.033,0.94,0.928,0.93,1.379,1.012,0.841,0.756,0.806,0.809,1.105,1.038,0.869,0.907,0.831,1.283,0.646,1.047,0.848,0.996,0.947,0.97,1.693,1.205,0.761,1.005,1.107,1.046,3.004,0.901,0.654,1.067,0.784,0.827,1.031,1.196,1.048,1.041,1.361,1.051,1.085,1.124,0.879,0.939,0.844,0.843,0.873,1.037,1.08,2.022 +NM_003955,0.988,0.877,0.964,1.013,1.191,1.095,1.011,1.209,1.003,0.96,0.974,0.979,0.88,0.891,0.986,0.868,0.928,1.041,0.877,0.972,0.833,0.933,0.947,1.042,0.982,1.195,1.151,0.987,1.249,0.99,1.093,1.019,0.885,0.993,1.189,0.873,1.0,1.196,1.109,1.091,0.973,0.938,0.962,0.991,0.96,1.015,1.078,1.0,1.05,0.913,1.037,1.112,0.958,1.075 +NM_003956,1.27,0.861,1.46,1.059,1.323,0.854,0.882,1.204,1.554,2.247,0.872,1.3,1.222,1.316,1.728,0.999,1.11,1.229,1.574,0.913,1.389,1.043,1.001,1.808,0.926,1.183,2.439,1.417,0.845,0.915,1.519,2.003,0.971,0.996,0.843,0.888,0.888,1.199,1.041,0.958,1.437,1.029,0.835,0.772,1.639,0.922,0.988,0.979,0.924,1.604,0.979,0.919,2.204,1.128 +NM_003957,0.945,1.064,1.066,1.07,0.922,0.948,1.287,1.034,1.117,1.034,0.927,0.989,0.974,0.869,0.948,0.929,0.914,1.126,1.009,0.815,0.97,0.938,1.154,1.086,1.064,0.927,0.97,0.925,1.132,0.948,0.928,1.349,0.95,0.921,1.032,1.441,1.018,0.946,1.054,1.897,1.092,0.891,1.069,1.07,0.965,1.028,1.071,1.088,0.992,1.133,0.992,1.099,0.919,1.417 +NM_003958,0.95,1.05,1.288,1.017,1.09,0.923,0.979,0.766,1.341,0.974,1.112,0.891,0.977,0.815,1.016,1.16,1.162,0.924,1.055,0.954,0.727,0.901,1.114,1.14,0.776,0.91,0.84,0.883,0.859,0.963,0.951,1.052,2.094,1.173,0.787,0.913,0.9,0.886,1.026,0.809,1.358,0.854,1.043,0.938,1.248,1.134,0.937,0.93,0.853,0.953,1.04,1.097,1.023,1.332 +NM_003960,0.865,1.014,0.882,0.993,1.125,1.083,1.028,1.071,1.035,0.895,1.003,0.966,0.968,0.87,1.085,1.484,0.887,0.991,0.862,1.082,1.048,0.864,1.077,1.145,0.965,0.915,0.862,1.0,1.245,0.907,1.019,0.978,1.001,1.15,1.046,0.889,1.001,0.881,0.865,0.989,1.013,1.168,1.174,0.885,0.853,0.907,0.894,0.987,0.948,0.967,1.037,0.877,0.839,1.198 +NM_003961,0.932,1.197,0.958,0.803,0.976,1.044,0.896,0.926,0.923,0.94,0.918,1.05,1.023,0.876,0.896,1.142,1.048,1.023,0.927,1.145,0.886,0.828,0.854,0.998,1.142,1.03,0.769,0.864,0.824,1.154,0.993,1.214,1.496,1.253,0.943,1.066,0.899,0.982,1.165,1.036,0.986,1.002,0.743,1.282,0.886,1.058,1.039,0.856,0.939,0.936,0.945,0.909,0.989,1.002 +NM_003963,0.608,1.393,0.482,1.057,0.596,3.606,1.488,0.614,0.529,0.569,1.922,0.534,0.539,0.565,1.018,2.343,0.509,1.183,0.445,2.093,0.519,0.497,1.727,0.527,0.901,0.544,0.611,0.538,1.931,3.463,0.519,0.957,0.646,3.997,0.47,1.309,2.58,0.521,1.881,0.591,0.619,2.626,0.993,0.737,0.518,2.119,1.394,0.521,0.892,0.493,1.991,0.614,0.505,0.867 +NM_003967,1.006,1.137,0.978,1.065,0.974,1.08,1.286,0.991,1.071,0.9,0.985,1.001,0.964,0.985,1.104,0.947,1.056,1.053,1.047,0.942,1.084,1.021,0.86,0.907,1.077,0.977,0.933,1.103,1.07,0.892,1.094,0.958,0.924,0.999,1.095,1.155,1.083,0.946,1.041,0.928,0.885,0.933,0.931,0.846,0.913,1.081,1.016,1.051,0.961,0.956,0.967,1.02,0.969,1.182 +NM_003969,0.932,0.66,0.92,0.77,0.851,1.125,0.51,1.202,1.001,1.004,0.829,0.953,1.104,0.613,0.94,1.852,0.89,0.976,1.746,0.601,0.774,1.06,1.16,1.387,0.788,1.348,0.999,0.876,0.52,0.756,1.251,0.942,2.775,1.276,2.002,0.755,0.854,1.209,2.148,1.143,0.975,0.882,0.545,1.716,1.197,0.687,1.021,1.713,0.854,1.034,0.835,0.845,1.159,1.443 +NM_003970,1.066,1.055,1.307,1.077,1.138,1.224,0.872,0.897,0.914,0.948,0.977,0.981,0.817,1.112,0.673,1.09,1.351,0.886,1.008,0.978,0.925,1.247,1.12,1.277,1.049,1.077,1.402,0.816,1.128,1.016,1.063,0.914,0.931,1.492,0.861,0.758,0.987,1.367,0.993,1.016,1.08,0.912,0.855,0.857,1.022,0.834,0.826,1.373,0.999,1.061,1.132,0.916,1.063,1.312 +NM_003971,0.769,0.753,1.141,0.658,0.938,0.848,0.529,0.694,1.246,1.117,0.977,0.726,0.565,0.836,0.999,1.542,0.948,0.741,1.298,0.816,0.735,0.714,1.126,0.932,0.634,0.834,1.414,1.056,0.406,0.803,1.001,1.29,1.151,0.837,0.908,1.08,0.946,0.97,1.523,1.16,1.06,0.872,1.209,1.628,1.178,0.994,1.232,0.8,1.439,1.065,1.089,0.931,1.029,1.514 +NM_003972,1.005,0.9,1.011,0.945,1.11,0.889,0.983,0.964,1.14,1.094,0.977,0.945,0.929,0.997,1.121,1.095,0.958,1.036,0.991,1.016,1.246,0.988,1.033,1.073,0.889,1.068,1.076,0.886,1.061,0.943,1.084,1.043,1.061,0.988,0.957,0.841,0.987,1.044,0.944,1.084,1.019,1.012,0.816,1.067,0.901,1.097,1.018,0.954,1.05,1.017,0.953,0.85,1.044,0.965 +NM_003973,0.461,0.578,1.096,1.363,1.536,1.193,1.205,0.65,0.881,2.027,0.622,0.862,0.429,0.924,1.774,2.265,1.124,0.646,0.852,2.485,1.038,0.34,2.526,2.571,0.675,1.62,2.449,0.721,0.237,1.962,2.12,1.122,1.553,1.959,0.308,0.547,0.632,1.787,2.178,0.639,1.954,0.925,0.437,0.965,1.943,0.673,0.807,1.257,2.817,1.261,0.95,1.594,0.639,1.338 +NM_003974,1.04,0.985,0.95,1.006,0.905,1.162,0.754,0.941,1.122,0.794,0.902,0.998,0.976,0.862,0.849,0.8,1.169,0.928,1.021,0.888,1.073,0.923,1.004,0.939,0.965,1.029,0.979,1.001,0.729,1.043,1.02,1.01,0.816,1.13,1.029,1.052,1.113,1.035,1.077,1.009,0.99,0.931,1.152,1.122,1.171,0.984,0.962,1.031,0.931,0.951,1.133,1.026,0.86,0.932 +NM_003975,0.731,1.47,1.307,0.713,0.7,1.24,0.975,0.546,0.835,0.735,0.871,0.734,0.662,0.829,0.684,0.927,0.935,0.743,0.731,0.768,0.648,0.596,1.525,0.95,0.91,0.697,1.514,0.893,0.742,1.413,0.729,1.761,3.436,1.224,0.506,3.267,1.001,0.77,2.196,1.912,1.194,1.432,0.962,1.671,0.914,1.139,1.437,0.788,1.309,0.851,1.061,1.463,1.283,5.618 +NM_003976,0.982,0.95,1.073,0.958,0.996,1.044,0.904,1.231,0.982,0.956,0.974,1.069,0.98,1.033,1.064,0.938,1.01,0.984,0.979,0.976,0.985,1.035,1.014,0.982,1.043,0.992,1.041,0.91,0.845,0.974,1.003,1.054,0.991,1.128,0.902,1.083,0.996,1.11,1.033,1.106,0.975,0.973,1.386,0.96,1.007,1.024,1.006,1.049,1.073,0.856,1.053,0.991,0.815,0.943 +NM_003977,0.803,1.154,0.939,0.902,0.825,1.041,0.849,0.974,1.006,0.761,1.053,0.854,0.907,0.747,0.911,1.177,0.902,0.985,0.912,0.922,0.808,0.817,0.97,0.93,1.025,1.023,0.951,0.819,0.685,1.219,0.837,1.877,2.434,1.345,0.743,1.269,0.841,0.832,1.733,1.426,0.77,1.075,0.708,1.681,0.951,0.818,0.921,0.967,0.796,0.891,0.826,0.894,0.981,1.071 +NM_003978,0.85,1.214,1.296,1.009,0.917,0.978,1.0,0.77,0.908,0.819,0.956,0.84,0.994,0.809,0.993,0.903,0.948,0.981,0.857,1.444,0.928,0.929,1.854,0.976,0.959,0.741,1.365,0.984,0.762,1.002,0.74,2.23,1.042,0.914,0.669,1.598,0.804,0.794,1.186,1.748,0.912,1.365,0.953,0.755,1.023,0.774,1.048,0.8,0.923,0.825,1.279,1.195,1.099,1.469 +NM_003979,0.31,0.716,1.074,0.62,0.485,1.087,0.413,1.001,0.386,0.933,1.217,0.135,0.362,1.235,1.808,2.227,1.383,0.545,1.004,0.71,0.72,0.715,1.468,0.29,0.156,0.657,0.819,0.391,0.32,0.923,0.424,2.576,4.22,0.707,2.551,2.224,1.201,0.973,3.351,0.995,1.611,1.03,1.707,3.536,0.677,2.144,2.305,0.413,2.39,0.631,1.811,1.615,0.583,3.323 +NM_003980,0.875,0.924,1.307,0.72,1.07,0.986,0.676,0.964,1.427,1.038,1.032,0.989,0.8,0.84,0.989,1.781,0.975,0.933,1.264,1.047,0.723,1.027,1.312,1.066,0.641,0.772,1.005,1.234,0.785,0.948,1.056,0.705,1.397,0.904,1.004,0.73,0.893,1.277,1.065,0.885,1.188,1.035,1.078,0.841,0.956,0.97,1.251,0.91,1.346,0.944,1.059,0.689,0.989,1.142 +NM_003981,0.586,1.034,1.433,0.97,0.948,0.999,0.616,0.564,0.999,1.055,0.854,0.921,0.659,0.99,0.878,1.261,1.026,0.872,1.776,0.598,1.001,1.022,1.811,1.351,0.478,0.732,2.616,0.764,0.484,0.861,0.906,1.383,2.806,0.922,0.379,1.944,0.881,0.909,1.98,0.906,1.413,0.555,0.824,1.365,1.005,0.939,1.033,0.592,1.295,0.868,1.324,0.983,1.485,2.363 +NM_003982,0.45,1.041,0.593,0.822,0.525,1.481,0.901,0.373,0.519,0.449,1.428,0.505,0.407,0.431,1.121,2.675,0.486,0.784,0.47,1.175,0.434,0.381,1.705,0.477,0.582,0.431,0.66,0.451,0.428,2.152,0.348,2.057,1.763,1.487,0.409,2.174,2.575,0.467,2.098,2.037,0.43,1.556,0.903,1.494,0.514,0.826,1.642,0.467,0.887,0.455,1.456,1.512,0.69,1.425 +NM_003983,0.866,0.976,0.946,0.86,1.027,0.939,0.865,0.897,1.056,1.141,0.946,0.933,0.986,0.804,1.082,1.094,0.876,0.86,1.035,0.955,0.916,0.919,1.148,0.957,0.895,0.984,1.165,1.057,0.739,0.949,1.074,1.543,2.24,0.994,0.866,1.241,0.904,1.104,1.222,1.455,0.872,0.979,1.064,1.178,1.082,1.055,0.996,0.91,0.955,0.96,1.04,1.227,0.994,2.112 +NM_003984,0.879,1.003,0.997,0.877,0.912,0.943,1.09,1.084,0.914,1.094,1.156,1.007,0.954,1.17,0.986,1.369,1.047,0.881,1.136,1.086,0.91,1.125,0.914,1.024,1.006,1.095,0.962,0.995,1.168,1.046,0.881,0.91,1.029,1.018,0.916,1.066,1.526,0.797,0.973,0.936,0.805,1.138,1.219,0.82,0.978,0.956,1.115,0.787,1.089,0.967,1.035,1.017,1.002,0.977 +NM_003986,2.975,0.663,3.537,1.53,5.054,0.648,0.579,3.172,5.649,3.184,0.548,4.506,2.619,4.651,2.677,1.518,1.847,1.912,4.708,0.907,1.513,4.395,0.648,3.391,0.588,3.113,3.061,4.226,0.407,0.689,5.087,0.648,2.568,0.681,0.704,0.653,0.607,5.685,0.604,0.683,3.525,0.654,0.574,0.684,2.273,0.697,1.746,2.573,0.585,2.132,0.915,1.032,2.152,0.812 +NM_003988,1.078,0.803,1.048,1.127,0.894,0.871,0.97,1.099,1.122,1.124,0.955,0.902,1.181,0.857,0.779,1.101,1.002,0.992,0.792,1.33,0.837,0.8,0.895,0.843,1.052,0.993,1.062,1.031,1.229,0.911,0.99,1.065,0.824,0.878,0.929,1.042,0.924,0.843,0.88,1.078,0.985,1.198,0.966,0.868,1.06,1.023,0.952,1.094,1.038,1.006,1.203,1.096,1.351,0.856 +NM_003989,0.885,0.971,1.044,1.199,0.936,0.94,1.086,0.938,1.016,0.959,0.926,1.018,0.932,1.192,1.476,1.003,0.9,0.989,1.032,0.887,1.086,1.013,0.946,0.921,0.958,0.921,0.939,0.848,0.998,0.978,1.124,1.04,0.896,0.937,0.952,1.023,0.944,0.962,0.958,1.024,1.043,0.94,1.062,0.911,1.013,0.957,0.964,1.071,0.889,1.016,0.968,1.109,1.157,0.998 +NM_003991,2.047,2.045,1.853,1.8860000000000001,1.863,1.98,1.903,1.847,1.741,1.962,2.091,1.9929999999999999,1.787,2.0309999999999997,2.6100000000000003,2.41,1.7530000000000001,2.1390000000000002,1.876,1.834,1.8900000000000001,1.845,2.348,1.7650000000000001,1.999,1.9329999999999998,1.791,2.166,1.9889999999999999,2.246,1.9969999999999999,2.3049999999999997,1.991,2.285,1.8279999999999998,1.8900000000000001,1.896,1.883,2.476,2.129,2.028,2.099,2.064,1.9739999999999998,2.097,2.2729999999999997,2.041,1.9889999999999999,1.87,2.001,2.145,2.32,2.082,1.954 +NM_003992,1.148,1.1,0.936,0.998,1.016,1.018,0.818,1.016,0.932,0.997,0.861,1.115,0.924,1.142,1.012,1.191,1.007,0.994,0.972,1.012,0.957,0.887,1.083,0.91,0.888,1.018,1.121,0.954,0.827,1.213,0.994,0.932,1.185,1.144,0.973,0.882,0.962,0.904,1.278,1.018,1.076,1.173,1.258,0.959,0.938,1.037,1.105,0.909,1.202,0.91,0.986,0.908,0.89,1.091 +NM_003993,0.952,1.094,1.04,1.188,0.981,1.171,1.069,1.066,1.053,1.056,1.104,0.927,1.047,0.836,0.899,1.044,1.041,0.972,1.0,1.183,0.943,0.995,1.102,0.87,0.915,0.997,0.991,0.976,0.696,0.947,1.097,1.049,1.156,1.037,1.023,1.04,1.126,1.0,0.966,1.188,1.088,0.993,0.92,1.034,0.964,0.974,0.959,1.011,0.989,0.965,0.917,0.945,1.054,1.004 +NM_003994,1.093,0.842,1.169,0.859,0.992,0.886,0.924,1.176,0.967,1.048,0.986,1.079,1.005,1.031,0.872,1.035,1.077,0.866,1.022,0.994,0.982,0.976,1.084,0.943,1.004,0.834,1.004,1.078,0.831,1.071,1.024,1.078,1.132,0.996,1.073,1.034,0.859,1.144,0.976,0.886,0.951,1.013,0.89,0.899,0.889,0.869,0.909,1.08,1.231,0.956,0.957,0.768,1.076,1.004 +NM_003995,1.048,0.976,1.102,0.892,0.977,1.129,0.959,0.937,0.926,1.096,1.087,0.901,0.97,0.997,0.805,0.843,0.957,0.914,0.953,0.904,1.03,0.993,0.921,0.967,1.035,0.973,1.079,0.906,1.03,1.077,0.987,1.541,1.133,1.061,0.996,0.956,0.887,1.012,1.03,0.959,0.891,1.265,0.962,0.966,0.963,0.942,1.051,0.988,1.031,0.968,1.0,1.062,1.02,1.099 +NM_003996,1.028,1.029,0.99,1.009,1.153,1.01,0.982,1.078,0.989,0.939,0.996,1.021,1.134,1.273,1.054,1.019,0.972,1.031,0.957,1.03,1.086,0.966,1.025,0.957,1.036,0.965,0.998,1.009,1.083,1.033,0.976,1.177,0.95,1.024,1.109,0.982,1.091,1.08,1.111,1.126,1.173,1.055,0.988,1.018,1.131,0.962,0.922,0.977,0.958,1.095,0.902,1.051,1.001,0.945 +NM_003998,0.731,0.965,1.662,0.661,0.793,0.815,0.541,0.283,1.025,1.145,1.012,0.701,0.459,0.532,0.763,0.917,1.068,0.792,1.021,1.059,0.469,0.638,1.269,0.961,0.582,0.761,1.851,0.723,0.39,0.936,0.704,1.54,0.918,1.095,0.21,0.565,1.097,0.828,1.123,1.27,1.081,1.184,0.931,1.179,1.072,1.129,1.108,0.59,1.084,1.042,1.106,0.996,1.123,0.985 +NM_003999,0.887,1.018,0.959,0.94,0.948,0.856,1.112,0.994,1.045,1.064,0.732,0.949,0.823,0.933,0.9,0.912,0.913,1.04,0.971,0.893,1.068,1.155,0.868,1.046,0.979,0.916,1.147,1.018,0.981,1.006,1.073,1.109,1.119,1.11,0.865,1.017,1.073,0.974,0.979,1.21,1.057,0.947,1.235,1.201,0.979,0.926,0.999,0.944,1.078,1.011,1.006,0.953,1.002,1.251 +NM_004000,1.248,0.977,1.21,1.106,0.907,0.923,1.08,0.9,0.852,0.982,1.051,1.109,1.002,1.016,0.877,0.979,1.142,1.001,0.974,1.017,0.955,1.039,0.836,0.943,0.996,0.928,3.348,0.884,1.103,0.915,0.999,1.188,1.199,0.983,1.026,1.123,0.843,0.913,1.097,1.045,0.93,1.06,0.859,0.943,1.077,0.922,1.09,0.955,1.019,1.42,0.786,1.206,2.128,1.504 +NM_004003,1.038,0.973,0.991,1.162,1.235,0.983,1.058,1.109,1.031,0.947,1.012,0.834,1.002,0.998,1.1,1.086,0.904,1.064,1.253,1.042,1.052,1.002,0.927,0.939,1.003,0.974,0.947,1.061,0.975,1.049,1.088,1.071,0.973,1.083,0.967,1.077,0.995,1.148,1.066,1.096,1.039,0.992,1.128,1.067,0.977,0.894,1.105,1.019,0.941,0.938,0.919,1.068,1.106,1.055 +NM_004006,1.0,0.829,1.002,1.084,0.749,1.04,0.785,1.236,1.067,1.098,1.058,0.963,1.086,1.009,0.963,1.012,1.045,0.907,0.922,1.076,1.074,1.141,0.833,1.134,1.009,0.874,1.131,0.87,1.234,0.919,1.07,0.895,0.825,0.929,1.09,1.021,1.031,1.174,1.013,0.986,0.927,1.099,0.856,1.076,0.92,1.02,0.897,0.965,0.817,0.986,1.042,0.812,1.007,0.978 +NM_004010,0.983,1.178,1.068,0.927,0.997,1.083,0.966,0.927,0.895,0.903,1.021,0.931,1.12,1.684,1.009,1.215,1.005,0.82,0.811,1.284,0.994,1.175,0.917,0.831,1.101,1.067,1.13,0.769,1.164,0.959,0.97,1.271,1.144,0.876,1.266,1.001,1.097,0.874,1.114,1.02,1.163,0.878,0.909,1.05,1.018,1.081,0.77,1.224,1.046,0.986,1.149,0.95,1.174,0.86 +NM_004012,0.981,0.938,1.142,1.03,1.137,0.96,1.1,0.925,1.087,1.019,1.051,1.029,1.046,1.035,0.892,1.034,1.006,0.864,1.116,1.23,0.973,0.985,1.166,1.031,1.018,0.956,0.962,0.875,1.447,1.006,0.898,0.893,0.946,1.091,0.918,1.051,1.172,0.99,1.055,0.973,1.049,1.068,1.17,1.12,1.036,1.007,1.051,1.055,0.923,0.971,1.075,1.104,1.073,0.994 +NM_004014,0.95,0.961,0.862,0.867,0.996,1.125,0.826,0.989,1.166,1.234,1.248,0.996,1.028,1.049,0.755,0.871,1.016,0.987,0.838,1.003,0.865,0.986,0.95,0.924,0.86,1.005,1.167,1.002,1.123,1.027,0.906,1.106,0.881,0.973,1.115,1.042,0.981,1.213,1.095,0.94,1.117,1.004,1.173,1.06,0.95,0.883,1.252,1.133,1.053,1.07,0.925,1.094,0.742,1.005 +NM_004019,0.897,0.839,1.088,1.081,0.904,0.94,1.087,1.214,0.916,1.02,1.016,1.091,0.882,1.036,1.002,0.923,0.998,0.915,0.949,0.91,0.934,1.068,0.914,1.004,1.186,0.989,0.921,0.999,1.224,1.105,1.168,0.911,1.109,1.034,1.07,0.938,0.973,0.923,0.904,0.959,0.913,0.986,1.156,1.037,1.024,0.996,0.947,0.963,0.953,0.867,1.019,0.905,1.084,0.945 +NM_004024,0.904,1.008,1.027,0.986,1.115,1.072,1.143,0.982,1.047,1.029,1.198,1.156,1.026,1.063,1.121,0.99,0.915,1.026,0.938,1.038,0.962,1.044,1.159,0.999,1.055,0.885,1.103,1.042,0.964,1.047,0.883,1.006,0.985,0.852,1.162,1.05,1.008,0.956,0.833,0.907,0.926,0.952,1.1,1.027,1.108,1.18,0.963,0.971,1.125,1.118,0.899,0.989,0.927,0.919 +NM_004027,1.9129999999999998,2.017,2.166,1.992,1.9,2.1109999999999998,1.9140000000000001,2.209,2.012,1.634,2.091,2.114,1.946,1.7229999999999999,2.097,2.0140000000000002,1.951,2.008,2.076,2.004,1.881,1.8980000000000001,1.857,1.892,1.854,1.8559999999999999,2.021,1.7890000000000001,2.072,2.093,1.865,2.268,2.367,1.91,1.8719999999999999,2.1029999999999998,2.002,1.9729999999999999,2.2590000000000003,2.178,1.898,1.831,1.861,2.341,1.8940000000000001,1.809,1.99,1.958,2.036,2.1340000000000003,2.0869999999999997,2.171,2.191,2.162 +NM_004030,0.626,0.959,2.3,0.677,0.87,1.268,1.328,0.598,0.912,0.968,0.812,0.617,0.475,0.526,0.99,0.762,2.048,1.375,1.071,1.002,0.626,0.525,1.183,0.855,0.379,0.499,0.963,0.768,0.352,1.267,0.614,1.185,1.911,0.934,0.716,3.11,1.524,0.808,1.296,1.454,1.08,0.881,1.116,3.03,1.057,0.815,1.551,0.604,0.993,0.898,1.108,1.286,0.84,4.692 +NM_004032,0.993,1.231,0.981,0.973,0.953,1.09,1.132,1.14,1.049,0.917,1.036,0.919,1.036,1.142,0.839,1.003,0.95,0.965,0.958,0.984,0.958,0.924,1.004,0.946,0.866,0.977,1.091,0.935,0.872,1.118,1.014,1.041,1.094,0.996,0.928,0.976,1.09,0.948,0.882,1.024,0.903,1.079,1.286,0.963,1.134,1.073,0.927,1.0,0.968,0.949,1.015,0.983,1.027,1.075 +NM_004033,0.731,1.274,0.988,0.954,0.709,0.895,0.972,0.925,0.994,0.866,0.961,0.879,0.916,1.074,0.984,0.925,0.771,0.872,0.745,1.001,0.935,0.912,1.244,0.999,1.145,0.699,0.963,0.854,0.872,1.511,0.952,3.364,2.231,1.517,0.881,1.293,1.131,1.04,1.451,1.33,0.941,1.623,0.924,1.017,1.003,0.807,0.91,0.849,0.723,0.947,1.035,1.24,0.991,1.265 +NM_004034,1.133,0.982,1.113,0.935,0.885,0.829,1.553,0.919,1.002,1.085,1.093,1.107,0.94,1.156,0.878,1.034,1.005,1.054,0.843,0.9,1.0,1.325,0.826,0.945,1.073,0.894,0.974,0.957,1.31,0.817,1.071,1.013,0.877,1.087,1.056,0.888,1.192,0.794,1.026,0.901,1.06,0.913,1.221,0.841,1.094,0.927,1.114,0.869,1.208,1.035,0.939,1.073,1.068,0.94 +NM_004035,1.054,1.088,1.125,1.039,1.078,1.042,1.147,0.973,1.002,1.032,0.989,0.966,0.869,0.997,0.875,1.052,0.901,1.039,1.055,0.963,1.175,0.925,1.045,0.995,0.964,0.942,1.245,1.052,1.248,1.128,1.046,0.87,0.97,0.94,1.135,1.042,1.038,1.001,1.094,1.065,0.855,1.01,0.904,0.952,1.118,1.058,1.002,0.935,0.989,0.988,0.874,0.942,1.008,0.927 +NM_004036,0.848,0.991,1.227,0.62,0.831,0.791,0.596,0.49,1.323,1.041,0.733,1.047,0.645,0.6,0.913,1.189,0.741,0.728,1.028,0.923,0.58,0.851,1.731,1.384,0.556,0.814,1.697,0.781,0.365,1.436,0.858,2.218,3.476,0.973,0.311,1.341,0.765,1.036,1.186,1.985,1.228,1.15,0.657,1.876,1.428,1.009,1.31,0.811,0.641,1.022,0.987,1.46,0.977,2.667 +NM_004037,0.906,0.986,1.023,0.917,1.021,0.918,0.915,0.893,0.879,1.097,0.953,1.125,1.012,0.933,0.972,1.099,0.988,0.998,1.076,1.012,1.03,0.895,0.937,1.157,1.041,1.159,1.047,0.946,0.996,1.097,1.126,0.942,0.898,1.046,1.045,0.896,0.955,1.042,1.108,0.918,1.197,1.065,1.104,0.884,1.049,1.127,1.025,1.066,1.049,1.028,1.045,1.02,0.82,0.978 +NM_004038,0.934,1.001,0.903,3.522,1.058,1.068,1.061,0.861,1.011,0.976,0.885,1.049,1.018,0.824,1.158,1.023,1.102,1.002,0.913,1.017,1.0,1.003,1.052,1.11,0.992,0.932,0.981,0.982,0.989,0.961,0.941,0.991,1.212,1.091,0.976,0.862,1.08,0.896,1.047,0.859,0.994,0.847,0.984,0.948,1.1,0.949,0.974,0.971,1.139,0.934,0.96,0.831,1.068,1.083 +NM_004040,1.056,0.903,0.863,1.016,0.949,0.957,0.832,1.029,0.956,0.999,0.921,0.927,0.971,1.049,0.795,1.017,1.025,0.926,0.996,1.088,1.097,0.94,0.956,0.922,0.982,1.072,1.078,1.05,0.758,1.032,1.18,0.977,0.896,1.015,0.951,0.937,1.029,0.989,1.021,1.131,0.889,1.038,0.986,0.939,1.044,1.154,0.958,0.963,0.984,1.052,1.032,0.961,0.925,0.946 +NM_004042,0.971,0.982,1.025,0.952,1.008,0.891,1.041,0.964,1.113,1.179,1.012,0.999,0.893,0.763,0.788,0.849,1.235,1.124,1.152,0.935,1.066,0.95,0.781,0.997,0.987,0.919,1.171,1.052,0.879,0.899,0.925,1.005,0.92,1.014,0.89,0.918,0.918,1.111,1.083,0.88,0.989,0.936,1.037,0.81,1.186,1.061,1.007,1.051,1.09,1.204,0.903,0.997,1.094,1.02 +NM_004043,1.059,1.036,1.124,1.074,0.897,0.984,0.926,0.939,0.963,1.053,1.042,0.895,0.899,1.039,1.32,1.09,1.08,1.144,0.952,1.084,1.009,0.962,0.968,1.067,0.936,0.884,0.831,0.928,1.411,1.029,1.11,1.067,1.28,0.929,0.914,1.068,1.032,1.08,0.979,0.924,1.134,1.108,1.029,1.125,0.983,1.001,1.196,1.084,1.006,0.999,0.921,0.997,0.819,1.131 +NM_004044,0.498,1.089,0.644,0.61,0.535,1.153,0.584,0.301,0.681,0.888,0.837,0.684,0.33,0.421,0.845,1.587,0.635,0.724,1.077,1.075,0.665,0.386,1.609,0.93,0.623,0.715,1.134,0.54,0.439,1.041,0.741,1.304,4.125,1.74,0.165,2.053,0.915,0.689,2.271,1.964,0.842,1.248,0.601,2.351,0.774,0.963,0.784,0.376,1.133,0.56,1.154,1.05,1.023,4.438 +NM_004045,0.907,0.74,1.005,0.663,1.248,1.255,0.595,0.711,1.372,1.126,0.908,1.01,0.809,0.584,1.134,1.249,0.961,1.188,1.634,0.873,0.638,1.223,0.863,1.199,0.573,1.1,1.215,0.998,0.615,1.253,1.014,1.548,1.937,1.41,0.735,0.423,1.189,1.393,1.128,0.822,0.941,1.013,0.668,0.638,1.133,0.704,1.157,1.327,0.682,0.915,0.854,0.845,1.162,1.511 +NM_004046,0.578,0.703,1.269,0.65,0.869,1.177,0.509,0.319,1.49,1.1,1.36,0.573,0.441,0.639,1.259,3.165,0.91,0.894,1.935,0.815,0.597,0.702,1.266,1.025,0.693,0.701,1.402,0.878,0.315,1.494,1.064,0.811,1.479,1.39,0.0722,0.445,1.462,1.022,1.177,0.259,1.288,1.205,1.021,0.872,1.003,1.342,0.81,0.5,1.203,0.795,1.3,0.545,1.033,1.035 +NM_004047,0.432,1.017,0.762,0.886,0.7,1.268,1.552,0.39,0.89,0.841,1.101,0.765,0.571,0.434,0.742,1.58,0.656,1.404,0.756,1.085,0.24,0.516,1.147,0.929,0.63,0.571,0.957,0.63,0.697,1.442,0.602,2.173,1.402,1.203,0.45,1.325,1.633,0.68,1.965,1.608,0.732,1.211,1.065,1.626,1.052,1.175,1.493,0.662,1.331,0.649,1.112,1.58,0.596,1.654 +NM_004048,0.483,1.172,1.076,0.706,0.379,1.649,0.949,0.296,0.566,0.428,1.073,0.395,0.408,0.257,1.092,1.71,0.485,1.261,0.613,1.259,0.38,0.366,1.364,0.613,0.966,0.33,0.892,0.561,0.459,1.412,0.435,1.066,1.086,1.679,0.166,0.911,1.29,0.384,1.678,0.756,0.921,1.402,0.547,0.933,0.621,1.083,0.945,0.444,1.153,0.538,1.311,0.769,0.991,1.734 +NM_004049,1.005,0.939,0.891,1.536,0.821,0.841,1.055,0.851,1.154,0.894,0.9,0.887,0.975,0.796,1.143,1.001,1.055,0.963,0.781,0.855,0.93,0.946,0.929,0.805,0.846,0.805,1.124,0.954,0.989,1.022,0.864,1.499,1.255,0.995,0.871,1.002,0.908,0.844,2.004,16.18,0.891,1.589,1.145,1.135,1.308,0.957,1.1,1.034,1.012,1.088,0.765,2.937,1.095,1.672 +NM_004050,0.831,0.829,1.851,0.813,1.314,1.245,0.82,1.475,1.84,1.206,0.781,1.17,1.025,0.839,1.429,1.235,1.138,1.044,0.974,1.034,0.701,1.047,0.99,1.478,0.663,0.729,1.27,1.33,0.443,1.103,2.167,1.438,1.286,1.512,0.787,0.482,0.81,1.621,0.971,0.837,1.512,0.954,0.584,0.57,1.636,0.785,0.867,1.054,0.95,1.018,0.987,0.624,0.708,1.543 +NM_004051,0.782,0.899,1.146,0.585,1.227,1.235,0.453,0.839,1.764,1.3,0.934,1.18,0.723,0.783,1.456,2.147,0.822,0.947,1.925,1.009,0.77,0.844,1.298,1.354,0.458,1.05,1.543,0.996,0.425,1.393,1.175,0.476,1.83,1.188,0.424,0.438,1.232,0.987,0.96,0.403,1.121,1.009,1.132,0.925,0.947,1.131,1.202,0.865,1.073,0.71,1.058,0.475,1.274,1.116 +NM_004052,2.183,0.868,1.918,0.778,3.194,0.247,0.38,5.116,3.192,1.647,0.246,3.314,1.833,1.478,1.793,1.302,1.188,2.076,3.026,0.259,0.857,2.886,0.235,1.944,0.724,1.996,1.508,4.177,0.194,0.329,3.225,1.233,1.478,0.845,4.031,0.245,0.36,3.574,0.306,1.148,1.967,0.53,0.212,0.202,2.28,0.219,2.255,3.222,0.489,2.263,0.734,0.509,1.358,0.272 +NM_004053,0.955,0.982,0.996,0.803,0.961,0.944,0.655,0.722,0.937,1.431,0.852,1.013,0.942,0.784,0.826,1.045,1.046,0.925,1.03,0.889,0.885,0.971,1.102,1.11,0.791,0.989,1.282,0.904,0.697,0.87,0.821,1.218,2.164,0.924,0.698,1.008,0.798,1.056,1.587,1.193,0.906,0.898,0.854,1.703,1.237,0.789,1.015,0.917,0.888,1.08,0.985,0.955,1.027,1.606 +NM_004054,0.887,1.014,1.091,0.957,0.982,0.96,0.956,0.734,0.964,0.954,0.866,0.92,0.782,0.844,0.85,0.869,1.045,0.845,0.958,0.914,0.86,0.969,1.345,0.917,0.943,0.873,1.05,0.907,0.868,1.247,0.944,1.484,1.094,1.159,0.788,0.963,0.969,0.785,1.198,1.657,0.981,1.107,0.92,0.859,0.92,1.045,0.879,1.042,0.859,1.009,1.028,1.568,1.114,1.632 +NM_004055,0.863,0.954,0.902,1.074,0.93,1.251,1.003,0.998,0.881,0.858,1.108,0.819,0.97,0.915,1.023,1.142,1.096,1.061,1.125,1.061,0.872,0.795,1.092,0.985,0.96,0.921,0.877,0.858,1.265,0.992,0.959,1.112,0.812,1.097,1.098,0.974,1.19,0.865,1.532,0.867,0.921,1.085,0.857,0.905,0.886,0.902,0.923,0.87,1.208,0.993,1.009,0.948,1.059,0.969 +NM_004056,0.764,2.315,0.819,1.082,0.777,1.189,1.438,0.828,0.664,0.818,1.178,0.796,0.8,0.791,0.784,1.04,0.665,1.194,0.726,1.526,0.834,0.876,1.49,0.82,1.031,0.848,0.707,0.796,0.697,1.258,0.761,1.813,0.845,2.412,0.927,0.823,1.191,0.818,1.294,0.875,0.792,1.535,0.851,1.028,0.791,1.337,1.043,0.902,1.048,0.774,1.13,0.833,0.811,1.842 +NM_004057,0.968,1.059,0.839,1.184,1.041,1.206,1.144,1.35,1.106,0.997,0.912,1.122,1.175,1.273,0.866,1.066,1.003,1.073,1.019,1.084,1.03,0.92,1.009,0.957,1.008,1.007,0.904,1.046,0.836,0.924,0.957,0.912,1.046,0.831,1.176,0.904,1.185,0.997,0.939,0.993,1.015,0.988,0.929,0.975,1.095,0.976,0.809,1.1,0.858,1.091,1.018,0.995,1.1,0.887 +NM_004058,0.875,1.137,0.913,1.243,0.942,0.999,1.01,0.883,1.036,0.993,0.976,0.774,0.856,0.948,0.813,0.83,1.031,1.028,0.792,1.027,0.945,1.029,0.909,0.919,1.36,1.029,0.856,0.834,0.804,1.408,0.887,1.173,0.889,1.263,0.956,0.885,1.076,0.907,1.723,1.203,0.961,1.15,0.955,1.65,0.87,1.084,0.992,1.215,0.806,0.911,1.021,0.764,1.037,1.9 +NM_004059,0.957,1.157,1.293,0.969,1.062,0.931,1.115,0.856,1.034,0.986,1.109,0.994,0.9,0.954,0.978,0.731,0.962,1.129,1.098,0.995,0.961,1.058,0.999,1.025,0.87,1.109,1.165,0.981,0.88,1.087,0.975,1.171,1.145,1.0,0.789,1.012,0.829,1.055,1.303,0.955,1.007,1.063,0.937,1.042,0.923,1.074,0.933,0.972,0.835,1.095,0.981,0.917,1.259,1.093 +NM_004060,0.815,1.238,1.157,0.822,1.031,1.246,0.953,0.837,1.135,0.935,1.155,0.834,0.901,0.722,1.199,1.824,0.828,1.03,0.775,1.231,0.815,0.911,1.497,0.996,0.944,0.845,1.042,0.999,1.154,1.247,1.034,1.118,3.967,1.584,0.817,0.634,1.125,0.897,1.131,0.747,0.911,1.281,0.784,0.739,0.849,0.978,1.082,0.901,1.144,0.861,1.065,0.811,0.772,1.137 +NM_004062,1.29,0.744,0.976,0.806,1.417,0.843,0.879,1.055,1.63,1.749,0.846,2.322,1.083,1.018,1.223,1.297,0.838,1.633,1.334,0.829,1.003,1.22,0.877,2.132,0.953,1.234,1.234,1.347,0.942,0.91,1.075,0.89,1.763,0.959,0.83,1.022,0.822,2.417,0.85,0.831,0.9,0.834,1.045,0.794,1.188,1.137,1.457,1.246,0.861,1.007,1.055,0.865,1.124,1.169 +NM_004063,0.406,1.171,0.394,1.46,0.417,11.01,0.376,0.357,0.428,0.334,22.89,0.431,0.324,0.31,12.63,35.15,0.503,0.479,0.377,12.93,0.41,0.366,19.02,0.374,0.339,0.453,0.411,0.356,0.328,5.532,0.379,0.662,6.917,1.124,0.454,16.22,24.58,0.371,10.44,14.95,0.357,15.48,12.3,6.398,0.876,26.9,13.62,0.294,22.08,0.435,17.8,1.521,0.531,3.083 +NM_004064,0.949,0.796,1.413,0.95,1.057,0.745,0.661,1.099,1.809,1.145,0.941,0.852,0.97,1.622,1.187,1.314,0.926,1.075,1.404,1.121,0.787,0.953,0.958,1.089,0.69,1.215,1.023,1.607,0.441,0.867,1.489,0.912,2.265,1.007,2.343,1.162,1.073,0.894,0.901,0.838,1.287,0.986,0.567,1.053,1.161,0.782,1.223,1.475,0.991,1.038,0.871,0.971,1.027,1.699 +NM_004065,0.914,0.858,0.952,0.829,0.984,1.054,1.074,0.939,0.989,1.017,1.075,1.054,1.132,1.07,1.23,1.026,0.998,1.049,0.996,0.788,0.9,0.924,1.087,0.991,0.798,0.98,0.913,1.068,0.566,1.025,1.093,0.965,0.93,0.96,1.027,1.116,0.941,0.957,0.968,1.044,1.083,1.212,0.756,1.124,1.142,0.952,1.0,1.073,0.925,1.178,1.115,0.828,1.053,0.986 +NM_004066,0.84,0.875,1.008,0.82,1.022,1.128,0.842,1.19,1.075,1.03,0.934,1.154,0.85,0.95,1.007,0.983,1.037,0.858,1.048,0.912,1.047,0.924,1.065,0.93,0.899,1.09,1.008,1.084,1.202,0.997,1.033,0.873,1.006,0.972,1.107,1.011,0.877,0.915,1.066,1.147,1.083,1.155,1.187,0.916,0.981,1.03,0.792,0.965,1.174,0.947,0.969,0.93,1.072,0.942 +NM_004067,0.877,0.867,0.971,1.089,0.998,1.22,0.917,0.871,0.969,0.966,1.23,0.894,0.921,1.056,1.016,1.42,0.817,0.955,0.89,1.08,0.983,0.997,1.043,0.98,0.966,0.98,1.003,0.931,1.114,1.167,0.873,1.038,1.054,1.095,1.118,0.977,1.311,1.024,1.095,0.989,1.092,1.194,1.338,1.159,0.815,1.024,1.021,0.789,1.212,0.886,1.163,0.959,0.881,1.051 +NM_004068,0.878,0.891,0.974,0.83,0.811,1.399,0.662,0.735,0.936,0.928,0.965,0.94,0.847,0.742,0.823,1.606,0.906,1.115,1.646,0.869,0.872,0.99,0.984,1.042,0.703,1.243,1.415,0.783,0.593,1.029,1.004,1.321,2.61,1.543,0.597,0.768,0.964,0.92,1.898,0.818,0.89,1.047,0.556,1.642,1.027,0.718,0.927,1.306,0.75,1.148,0.933,0.804,1.294,1.346 +NM_004069,1.138,0.66,1.416,0.907,1.172,0.821,0.387,0.523,1.497,1.403,0.74,0.728,0.851,0.739,0.909,1.384,1.223,1.055,1.897,0.6,0.799,0.902,1.074,1.179,0.505,1.552,1.374,1.022,0.326,0.921,1.166,0.885,1.772,1.09,0.492,0.632,0.791,1.181,1.508,0.893,1.233,0.662,0.459,1.272,1.598,0.66,1.266,1.251,0.697,1.447,0.852,0.785,1.326,0.935 +NM_004070,0.949,1.705,1.029,0.96,0.989,0.956,1.156,1.01,0.852,0.945,1.119,0.878,1.026,0.812,0.874,1.059,0.95,1.011,0.991,0.886,0.958,1.163,1.122,1.154,2.038,0.984,0.891,0.959,1.082,1.059,0.926,1.149,1.004,1.28,0.985,1.055,1.103,0.983,1.172,1.208,0.908,1.031,0.938,1.055,0.826,1.209,1.059,0.883,0.92,0.951,0.953,0.907,0.903,0.898 +NM_004071,1.123,1.063,1.307,1.348,0.977,0.905,0.685,0.739,1.836,0.756,0.963,0.715,0.758,1.221,1.499,1.087,1.116,0.752,1.244,0.958,0.988,0.877,0.838,1.74,0.762,0.94,1.798,1.044,0.451,0.92,1.323,1.552,1.501,1.218,1.099,0.83,0.957,1.072,0.899,1.466,1.419,0.988,0.883,0.714,0.957,0.864,0.987,0.862,0.834,0.899,0.881,0.723,1.15,2.798 +NM_004072,0.918,1.056,1.073,0.872,0.949,1.134,1.069,1.375,1.147,0.985,0.99,1.084,0.856,1.096,0.772,0.949,0.943,0.939,1.099,1.103,0.884,1.014,1.138,0.976,0.969,0.826,0.824,1.008,1.05,0.982,0.947,0.776,0.994,1.015,1.083,0.964,1.005,1.043,1.022,1.069,1.047,1.09,1.03,1.1,0.911,0.92,0.922,0.914,1.045,0.928,0.949,0.962,1.282,1.073 +NM_004073,1.507,0.816,1.343,1.186,2.142,0.75,0.772,3.775,1.482,1.231,0.865,1.289,1.577,0.978,1.187,0.952,1.408,0.964,1.496,0.892,0.923,1.805,0.847,0.994,0.792,1.472,1.085,0.978,0.854,0.852,1.364,1.224,1.193,0.731,5.944,0.813,0.912,2.964,0.908,1.001,1.043,0.739,1.274,0.906,1.308,1.271,1.028,2.362,0.861,0.883,0.806,0.925,1.901,1.167 +NM_004074,0.852,0.903,1.04,0.865,0.927,1.284,0.541,0.601,1.139,1.082,1.175,1.047,0.898,0.592,0.823,1.759,0.949,1.242,1.519,0.906,0.578,0.935,1.016,1.255,0.854,1.342,1.018,0.906,0.424,1.207,0.913,1.038,1.239,1.221,0.507,1.123,1.284,1.096,1.488,0.47,1.108,1.097,0.774,1.15,0.943,1.04,0.972,1.188,1.299,0.947,0.951,0.666,0.91,1.125 +NM_004075,0.877,0.973,0.85,0.766,1.413,1.141,0.7,0.858,1.039,1.141,1.084,0.735,0.691,1.074,1.197,1.291,0.999,0.841,0.892,1.051,0.811,0.806,1.09,1.026,0.958,0.931,1.016,1.176,0.547,0.951,1.275,1.316,1.417,1.272,1.272,1.251,1.061,1.115,1.155,0.994,1.356,0.963,1.312,0.816,0.769,0.981,0.891,0.909,0.884,0.673,1.175,0.713,1.199,1.625 +NM_004076,0.964,0.84,1.004,1.011,1.096,1.004,1.043,0.995,1.053,0.899,1.061,1.028,1.033,0.931,1.019,0.986,0.968,1.044,0.825,1.041,0.948,1.04,0.997,0.905,1.065,1.056,1.027,0.969,1.044,1.028,0.96,1.063,0.908,0.967,0.999,0.932,0.917,0.893,1.147,1.138,0.933,0.969,1.249,0.963,0.993,1.239,0.931,0.991,0.887,0.98,1.018,1.051,0.923,1.026 +NM_004077,1.061,0.54,1.031,0.853,0.86,0.925,0.495,0.6,1.258,1.1,0.994,0.861,0.722,0.944,0.963,1.551,0.759,0.81,1.888,0.674,1.021,0.874,1.179,1.098,0.712,1.344,1.381,0.967,0.36,0.853,1.23,0.723,1.677,1.211,0.661,0.867,1.063,1.068,1.408,0.639,1.06,0.933,0.577,1.74,1.267,0.845,0.789,1.025,1.148,1.206,0.859,0.799,1.35,1.304 +NM_004078,0.512,0.937,0.771,0.568,0.996,1.272,0.766,0.377,1.194,1.197,1.04,1.045,0.594,0.445,0.877,1.485,0.65,1.038,0.607,1.126,0.538,0.631,1.596,1.319,0.534,0.533,1.263,1.783,0.482,1.789,1.127,2.689,1.082,1.986,0.565,1.385,0.995,1.249,1.302,1.299,2.548,1.937,0.707,0.901,0.84,1.287,1.117,0.579,0.841,0.331,1.421,0.75,1.055,0.902 +NM_004080,1.07,1.07,0.889,1.08,1.141,0.875,0.98,0.977,0.872,0.906,1.032,1.05,1.07,0.91,0.998,1.028,0.934,0.978,0.948,1.169,1.033,1.02,0.933,0.97,0.846,1.041,1.149,0.9,0.796,1.128,1.032,0.953,1.042,0.852,1.025,0.991,1.161,1.089,1.047,1.013,0.938,0.979,1.324,1.173,0.934,1.054,0.863,1.223,1.061,1.044,1.08,1.009,1.12,0.922 +NM_004083,0.844,1.032,0.998,1.029,0.705,1.38,0.848,0.727,0.98,0.864,0.99,0.788,0.81,0.753,0.881,0.94,0.837,0.859,0.856,1.154,0.737,0.833,0.854,0.992,1.352,0.866,1.146,0.932,0.815,0.936,0.976,2.143,2.008,1.294,0.933,2.397,0.967,0.947,1.794,1.834,0.894,1.268,0.891,3.077,0.845,1.002,1.563,0.835,0.794,0.702,0.93,1.037,0.903,4.537 +NM_004084,0.99,1.065,1.067,1.455,1.029,1.127,0.973,1.036,0.933,0.988,1.063,0.935,0.959,1.392,0.89,1.083,0.833,0.825,0.978,1.133,0.927,0.915,0.922,1.01,0.849,1.075,0.944,0.93,0.761,0.942,1.088,1.041,1.042,0.959,0.793,0.923,1.169,0.85,1.054,3.839,0.828,1.07,0.734,1.01,0.999,1.072,1.337,1.037,0.858,0.998,1.037,1.522,0.843,0.837 +NM_004085,0.917,1.183,1.198,0.945,1.031,0.932,0.984,0.955,1.251,1.244,0.904,1.435,1.166,0.844,0.972,1.273,0.969,1.032,1.238,0.865,0.791,1.103,1.052,1.4,0.817,0.742,1.268,1.112,0.776,0.887,1.053,0.988,1.91,0.889,0.816,0.899,1.044,1.0,1.236,0.744,0.96,1.167,0.889,1.079,1.057,0.911,1.082,1.15,1.262,1.0,1.07,1.055,0.795,1.52 +NM_004086,0.995,1.148,0.881,0.946,0.909,0.967,1.044,0.815,0.969,0.951,1.04,1.022,0.895,0.873,0.871,0.818,1.004,0.876,0.889,0.949,0.975,0.875,1.288,0.951,1.054,0.896,1.073,1.059,0.706,1.066,0.945,2.652,1.491,1.175,0.823,0.996,0.88,0.848,0.998,0.999,0.989,1.107,0.789,1.029,1.09,0.889,1.258,1.077,0.978,0.955,0.947,1.049,1.048,5.698 +NM_004087,0.952,1.141,1.363,0.927,1.122,1.019,0.951,0.88,1.301,1.081,0.725,1.073,0.85,0.916,1.043,1.053,1.105,0.972,0.818,0.833,0.827,0.862,0.987,1.041,0.854,1.033,1.127,1.146,0.629,1.028,1.233,1.08,1.212,0.959,0.834,0.835,1.037,1.133,0.999,1.024,1.095,1.001,1.046,0.782,1.027,0.917,0.963,1.067,1.109,1.074,1.044,0.907,0.882,1.002 +NM_004088,0.94,0.987,0.956,0.939,0.955,0.914,0.973,1.058,0.956,0.975,1.111,1.008,0.91,0.863,0.974,0.964,0.981,1.016,0.962,1.062,0.989,0.953,0.97,1.071,1.018,1.0,1.196,0.992,1.065,1.206,1.043,1.064,0.925,1.018,1.104,0.921,0.873,1.028,0.955,0.927,0.932,0.969,0.858,1.071,0.975,1.141,0.969,0.883,0.995,0.943,1.187,1.151,1.118,1.0 +NM_004089,1.651,2.154,2.115,1.8090000000000002,1.533,2.715,1.471,1.4929999999999999,1.9220000000000002,1.426,1.67,1.705,1.688,1.9849999999999999,2.08,2.04,1.662,1.776,2.04,1.679,1.547,1.762,1.669,1.923,2.224,1.9969999999999999,2.029,1.7429999999999999,1.2389999999999999,2.737,1.913,4.5440000000000005,2.621,3.292,1.183,1.6,1.8210000000000002,2.395,2.89,2.3529999999999998,1.751,2.781,2.068,1.9529999999999998,1.646,1.763,1.6,1.875,1.237,1.604,2.054,1.741,3.205,2.205 +NM_004090,0.611,1.312,1.081,0.592,0.823,1.26,0.782,0.666,1.006,0.565,1.371,0.821,0.595,0.498,1.014,1.486,1.053,1.01,0.93,1.464,0.363,0.679,1.08,0.672,0.666,0.564,0.748,1.288,0.575,1.242,0.829,2.139,1.197,1.68,0.711,0.602,0.939,0.997,1.653,1.204,0.962,1.31,0.529,1.043,0.756,1.027,0.782,0.542,0.669,0.639,1.315,0.999,0.67,1.009 +NM_004091,0.982,0.739,1.209,0.756,1.179,0.926,0.486,0.601,1.444,1.333,0.803,1.122,0.827,0.814,1.16,1.185,0.683,1.14,1.599,1.071,0.79,1.073,1.694,1.678,0.443,1.082,1.566,1.22,0.432,0.895,0.893,0.691,0.99,0.672,0.314,2.092,0.868,0.925,1.427,0.76,1.485,1.052,0.996,1.468,1.298,1.17,1.015,0.786,1.651,0.874,0.874,0.819,0.815,1.689 +NM_004092,0.697,1.092,1.114,0.784,0.89,1.147,0.545,0.363,0.913,1.047,1.189,0.779,0.612,0.558,0.881,1.486,0.618,0.979,1.133,1.49,0.34,0.767,1.191,0.902,0.54,1.134,0.914,1.028,0.318,1.449,0.705,1.007,0.905,0.991,0.315,1.423,1.441,0.798,1.156,0.415,1.074,1.179,1.212,0.985,0.898,1.669,1.222,0.8,1.398,0.674,1.296,0.78,1.018,1.158 +NM_004093,0.347,0.75,0.53,0.914,0.591,2.165,1.005,0.335,0.499,0.618,1.777,0.395,0.317,0.324,0.897,2.102,0.341,1.106,0.509,1.853,0.273,0.438,1.443,0.635,0.589,0.312,0.395,0.499,0.745,2.252,0.444,1.021,1.024,2.466,0.236,1.73,1.3,0.415,1.222,0.935,0.438,1.253,1.588,1.86,0.468,1.64,1.335,0.365,1.325,0.372,1.394,0.646,0.497,0.675 +NM_004094,0.755,0.983,1.327,0.927,0.989,0.87,0.758,0.894,0.982,1.022,0.761,0.937,0.866,0.843,0.88,1.31,0.853,1.091,1.218,0.958,0.859,0.848,1.094,1.078,0.825,0.907,1.065,0.899,0.88,1.185,0.991,1.342,2.277,1.109,0.475,1.061,0.877,0.834,1.44,1.335,1.192,1.236,0.903,1.161,1.341,0.773,0.918,0.932,0.978,1.066,1.014,0.842,1.548,1.736 +NM_004095,1.393,0.534,1.282,0.989,1.032,0.891,0.407,1.382,1.386,1.179,0.898,1.409,1.594,1.0,1.086,1.28,0.685,0.91,2.29,0.557,0.889,1.384,0.82,1.641,0.776,2.203,1.148,1.241,0.284,0.641,1.548,0.738,1.676,0.845,0.833,0.721,0.628,1.167,1.458,0.645,1.279,0.754,0.43,1.45,1.367,0.616,0.959,1.912,0.923,1.442,0.745,0.809,1.528,1.51 +NM_004096,0.751,1.02,0.858,0.618,1.009,1.481,0.673,0.718,1.112,0.79,1.228,0.613,0.65,0.796,1.001,1.529,0.894,1.037,1.077,1.109,0.515,0.692,0.948,0.868,0.543,1.051,0.815,1.098,0.522,1.382,1.218,0.999,1.74,1.62,1.544,0.898,1.143,1.009,1.289,0.647,1.087,1.392,0.662,0.951,0.909,0.959,1.032,0.835,0.772,0.779,1.055,0.454,0.738,1.311 +NM_004097,0.995,0.906,0.874,1.391,0.918,0.989,1.211,1.184,1.072,0.785,0.915,0.917,0.848,0.819,1.257,1.56,0.893,0.97,0.992,1.152,0.797,0.936,1.167,1.167,1.26,0.958,1.132,1.039,1.806,0.706,0.949,1.001,1.456,1.007,0.98,1.316,1.035,0.763,1.074,0.816,0.977,0.944,0.869,0.916,0.891,1.49,1.096,1.026,1.006,1.002,0.949,1.399,0.8,1.496 +NM_004098,0.966,0.973,0.971,0.96,1.032,1.007,0.908,1.115,1.045,0.938,1.03,1.166,0.999,0.886,0.894,1.064,1.061,1.142,1.062,1.048,1.039,1.065,0.905,1.124,0.893,1.066,1.021,0.974,1.23,1.026,1.046,0.958,1.05,1.11,1.054,0.996,0.893,1.057,1.068,1.018,0.992,0.958,0.998,1.036,1.058,1.018,0.896,0.885,0.952,1.078,1.088,1.087,0.94,1.054 +NM_004099,0.902,0.843,1.471,0.885,0.962,0.844,0.928,0.821,0.768,0.883,0.912,0.851,0.856,1.128,1.08,1.316,0.976,0.998,0.965,0.88,0.984,0.861,0.986,0.767,0.982,0.846,1.109,0.872,0.746,1.007,0.819,1.436,1.409,0.961,1.009,0.893,0.994,0.74,1.043,1.261,1.217,0.985,1.008,1.079,0.976,1.23,1.398,0.905,1.318,1.096,1.013,1.213,1.26,1.355 +NM_004101,0.945,1.011,0.851,1.027,0.977,0.983,1.011,1.105,1.07,0.768,0.848,0.984,0.974,0.997,0.9,1.073,0.984,0.767,0.873,0.856,0.899,0.825,1.218,1.027,1.135,0.932,0.895,0.905,1.099,1.08,0.994,1.11,1.058,1.065,1.066,0.907,0.895,0.835,1.083,0.951,1.027,1.121,1.002,0.858,0.932,1.07,0.901,1.094,1.15,0.997,0.985,1.112,1.153,1.115 +NM_004104,1.039,0.956,1.254,0.759,1.31,0.693,0.411,0.386,1.4,1.575,0.53,1.789,0.339,0.656,0.721,1.098,1.1,1.362,1.641,0.843,0.395,0.821,1.378,1.234,0.531,1.067,1.781,0.889,0.346,0.867,1.068,1.733,1.243,0.78,0.345,1.531,1.019,1.382,2.126,0.753,1.216,0.642,0.613,1.636,1.295,1.064,1.079,1.357,0.957,1.779,1.061,0.414,0.956,0.766 +NM_004105,0.984,1.133,1.009,1.123,1.042,0.965,0.953,0.952,0.968,0.976,1.044,0.942,0.892,1.078,0.819,0.872,0.96,0.93,0.913,0.976,0.865,0.989,0.948,0.927,1.014,1.171,1.026,1.0,1.088,0.89,0.941,1.053,0.984,0.933,1.053,1.003,0.949,1.053,1.038,1.054,1.069,1.048,1.054,1.067,0.99,0.985,1.169,1.017,0.957,0.895,1.012,1.06,1.046,0.998 +NM_004106,0.761,1.355,1.21,0.992,0.773,1.092,0.913,0.768,0.965,0.85,0.736,0.634,0.787,0.602,0.783,1.007,0.815,0.754,0.925,0.694,0.808,0.581,1.307,1.0,1.029,0.752,1.257,0.718,0.497,1.561,0.656,3.576,1.714,1.593,0.541,0.69,0.849,0.624,2.233,4.84,0.934,1.572,0.737,0.991,0.92,0.911,0.814,0.707,0.643,0.818,0.954,3.018,1.702,3.38 +NM_004107,0.217,1.194,0.294,0.808,0.207,2.396,0.732,0.177,0.286,0.191,3.034,0.221,0.311,0.171,0.999,3.289,0.212,0.623,0.26,1.811,0.228,0.303,2.699,0.26,1.076,0.283,0.3,0.234,1.001,2.328,0.233,1.226,1.403,3.175,0.111,0.468,2.002,0.256,2.01,1.158,0.294,2.813,1.418,0.759,0.218,1.534,1.366,0.22,1.003,0.195,1.475,0.606,0.369,1.13 +NM_004111,0.637,1.064,1.001,0.818,0.822,0.919,0.699,0.552,1.022,1.168,0.654,0.939,0.708,0.487,0.801,1.256,0.729,0.856,1.077,0.717,0.67,0.817,1.622,1.168,0.652,0.825,1.554,0.767,0.472,0.911,0.776,1.587,4.032,0.91,0.374,2.548,0.939,0.832,2.701,1.377,1.005,0.753,0.593,2.217,1.199,0.917,1.002,0.949,1.295,1.029,1.123,1.028,0.951,1.973 +NM_004112,0.973,0.963,1.148,0.951,1.147,0.898,1.216,1.037,1.037,0.871,0.851,1.066,1.038,1.349,1.252,1.029,1.132,0.975,0.941,0.807,1.06,1.097,0.954,1.094,1.002,1.084,0.967,0.929,1.117,1.004,1.039,0.978,1.153,0.95,0.898,0.931,0.872,0.894,0.936,1.067,1.086,0.93,1.287,0.887,0.984,0.986,1.033,0.965,0.909,1.091,0.91,0.919,0.873,1.006 +NM_004113,0.934,1.096,0.932,1.0,0.973,1.044,0.893,0.938,1.127,0.909,0.949,0.967,0.993,0.788,0.849,0.99,1.159,1.045,0.787,1.012,1.011,1.039,0.977,0.884,1.098,1.112,0.938,1.125,1.267,0.936,0.895,0.896,1.048,0.907,1.122,1.026,1.061,1.073,1.012,0.872,1.038,0.751,1.035,1.042,1.096,1.142,1.21,1.011,1.049,1.108,1.008,0.952,0.947,1.003 +NM_004114,0.848,0.958,0.985,0.975,1.118,0.988,0.904,1.052,1.081,1.041,1.09,0.946,0.983,1.015,0.861,0.863,1.053,0.972,1.084,1.048,1.073,1.101,1.027,0.97,0.965,1.144,0.735,1.026,1.259,0.967,1.005,0.993,1.009,1.005,1.037,1.029,1.073,0.967,1.011,1.035,1.133,0.963,0.885,0.864,1.052,0.862,0.983,1.0,1.002,1.14,0.9,0.849,0.966,0.888 +NM_004115,1.921,2.064,1.8170000000000002,1.932,1.847,2.027,1.943,1.994,1.9020000000000001,1.776,1.8239999999999998,2.011,1.879,1.876,2.1689999999999996,2.184,1.9859999999999998,1.931,2.056,2.115,1.932,1.91,2.0309999999999997,2.0999999999999996,2.091,2.001,2.078,1.9829999999999999,2.219,1.8980000000000001,2.06,2.096,1.8170000000000002,2.175,2.146,1.9909999999999999,2.081,2.074,1.9089999999999998,1.9669999999999999,1.919,1.7839999999999998,1.601,1.9969999999999999,1.9909999999999999,2.1180000000000003,2.0789999999999997,2.0,1.858,2.008,1.9409999999999998,1.808,2.105,2.003 +NM_004116,0.585,0.992,0.739,1.186,0.636,3.146,0.828,0.52,0.705,0.528,2.49,0.546,0.716,0.602,1.146,4.29,0.472,1.474,0.765,2.09,0.475,0.813,1.528,0.95,1.036,0.587,0.785,0.638,0.992,2.663,0.753,0.791,0.592,2.413,0.488,1.315,2.944,0.763,1.585,1.13,0.794,2.095,1.072,2.786,0.639,1.291,1.689,0.79,0.819,0.567,1.951,0.622,0.586,0.787 +NM_004117,1.291,0.687,1.288,0.593,0.954,0.703,0.716,0.692,1.612,1.008,0.769,0.987,0.856,1.02,1.295,1.135,0.771,0.856,1.217,0.624,0.738,0.614,1.048,1.364,0.73,1.35,1.175,0.795,0.573,0.58,0.985,1.571,1.747,0.987,0.618,0.853,0.988,0.963,1.009,0.756,1.056,1.8,1.319,0.945,1.099,1.011,1.128,0.849,0.909,1.328,0.979,0.748,1.892,1.247 +NM_004118,1.021,0.977,1.115,1.001,0.983,1.072,0.85,1.015,0.996,0.939,0.991,0.933,1.003,0.895,1.073,1.071,0.869,1.109,0.882,0.963,0.978,1.058,1.099,0.948,0.942,0.995,1.154,1.069,1.004,0.921,1.162,1.356,1.06,0.978,1.092,0.979,1.022,1.216,1.094,1.153,1.117,0.997,0.944,0.998,0.811,1.203,0.967,1.098,0.938,0.891,0.843,1.047,0.951,1.022 +NM_004119,0.972,1.029,1.107,0.951,1.095,0.984,0.919,0.998,0.846,1.03,0.918,1.132,1.032,0.796,1.031,1.014,1.0,0.988,1.174,1.087,1.094,0.991,0.844,1.03,0.994,1.064,1.026,1.137,1.297,0.994,1.042,0.925,0.851,0.967,0.94,1.003,1.002,1.087,1.067,0.963,1.02,1.149,0.999,0.939,1.014,0.891,0.907,0.934,1.156,1.013,1.096,1.034,0.974,0.963 +NM_004120,0.842,0.968,1.063,0.907,0.937,1.227,0.998,0.969,0.931,0.877,0.82,0.924,0.864,0.819,0.873,1.056,0.996,0.926,0.897,1.208,0.824,1.027,1.088,0.917,0.892,0.872,1.059,0.961,1.126,1.074,0.99,1.09,1.0,1.179,0.791,0.941,1.018,1.1,1.021,1.036,1.051,0.921,0.784,0.798,0.99,0.786,0.9,0.995,0.938,1.142,1.015,0.868,1.201,1.081 +NM_004121,0.829,0.962,1.063,0.862,0.839,1.043,0.968,0.851,0.832,0.919,0.868,0.889,0.827,0.877,1.154,0.98,0.978,0.966,1.046,0.791,1.025,0.842,0.831,1.036,1.201,1.067,0.983,0.92,0.942,1.074,0.865,3.137,1.243,1.111,0.947,1.084,1.15,1.061,1.378,1.786,0.852,1.2,0.875,0.994,0.986,0.953,0.872,0.935,0.824,0.86,0.977,1.247,0.929,1.181 +NM_004122,2.036,1.8010000000000002,2.011,2.053,1.845,1.99,1.926,1.9649999999999999,2.072,1.833,2.0679999999999996,2.497,2.02,2.1,1.965,2.074,1.76,1.9969999999999999,2.093,2.301,2.065,1.853,2.36,2.3,1.984,2.147,2.035,1.86,2.5460000000000003,2.11,2.0989999999999998,1.774,1.877,2.045,2.093,1.78,2.177,1.907,1.948,2.337,1.9829999999999999,1.951,1.976,1.891,1.92,2.059,1.9529999999999998,1.997,2.339,2.001,2.2110000000000003,1.952,2.4219999999999997,2.16 +NM_004123,0.942,1.041,0.976,2.506,0.95,0.94,0.884,1.064,0.936,0.858,1.296,1.062,0.919,0.997,0.989,1.173,1.024,1.089,0.93,1.11,0.964,1.016,0.866,1.053,1.009,1.151,1.084,1.003,1.042,0.849,0.984,0.994,0.946,0.88,1.003,0.925,1.413,0.897,1.077,0.985,0.948,0.981,1.064,0.989,1.129,1.016,1.081,0.918,1.065,0.906,1.255,0.939,1.068,0.863 +NM_004124,0.512,1.09,1.03,0.664,1.014,2.257,0.849,0.61,1.103,0.765,1.129,0.961,0.723,0.47,1.297,3.513,0.664,1.189,0.676,1.479,0.308,0.717,1.786,1.274,0.554,0.452,1.806,0.747,0.815,1.467,0.927,1.259,1.831,1.417,0.304,0.584,1.783,0.93,1.749,0.998,0.913,1.101,1.012,0.684,0.879,1.676,1.201,0.593,1.881,0.67,1.456,0.717,0.47,1.868 +NM_004125,0.511,1.248,1.484,0.703,0.863,1.306,0.709,0.937,1.189,0.721,0.983,1.033,0.989,0.52,0.808,2.204,1.104,0.923,0.81,1.069,0.414,0.631,1.101,1.177,0.562,0.511,1.704,0.6,0.632,1.274,0.911,2.109,1.963,1.26,0.523,0.487,1.141,0.945,1.254,1.856,0.919,1.158,0.661,0.633,0.902,0.817,1.05,0.654,0.754,0.835,1.087,1.463,0.583,2.568 +NM_004126,0.41,1.328,0.525,0.93,0.46,1.256,1.347,0.402,0.402,0.673,1.522,0.393,0.391,0.354,0.891,1.383,0.436,0.735,0.482,0.958,0.656,0.53,1.659,0.636,1.147,0.495,0.574,0.765,0.32,2.988,0.437,4.537,1.441,2.578,0.386,1.586,1.088,0.943,2.319,2.267,0.951,2.382,0.693,0.671,0.667,0.805,1.003,0.511,0.735,0.491,1.71,3.375,0.611,1.138 +NM_004127,0.582,1.09,1.04,0.662,0.851,1.111,0.656,0.429,1.021,1.1,0.765,0.967,0.502,0.49,0.782,1.279,0.875,0.997,1.003,1.216,0.369,0.685,1.291,0.952,0.656,0.846,1.067,0.765,0.479,1.353,0.758,1.743,1.163,1.232,0.205,1.354,0.993,0.868,1.693,0.913,0.985,1.019,0.69,1.86,1.074,0.887,1.141,0.656,1.179,0.747,1.008,0.808,0.97,1.505 +NM_004128,0.713,0.818,1.131,0.64,1.017,0.905,0.454,0.729,1.469,1.157,1.02,1.241,0.726,0.793,0.924,1.754,0.778,0.783,1.125,0.934,0.532,0.984,0.927,1.631,0.441,0.729,1.387,1.065,0.362,1.17,1.001,1.251,1.502,1.006,0.356,1.145,0.829,1.028,1.433,3.485,1.482,0.807,0.761,1.594,1.173,0.865,1.316,0.781,0.852,0.699,0.925,1.163,0.999,2.174 +NM_004129,0.957,1.113,0.815,1.083,1.024,0.947,1.088,1.02,0.988,1.042,1.018,1.148,1.008,1.004,1.045,0.877,1.061,1.037,0.788,1.038,1.047,1.084,1.036,0.898,0.992,0.972,1.005,0.928,0.878,0.937,1.094,1.153,1.008,1.0,1.068,1.067,0.975,0.966,1.049,0.855,1.178,0.989,0.91,0.904,1.081,1.065,0.993,0.852,1.1,0.889,0.995,0.882,1.138,1.05 +NM_004130,0.777,0.942,1.143,0.82,0.872,1.106,0.789,0.446,1.012,1.015,1.064,0.833,0.586,0.509,0.758,1.427,1.157,0.834,1.271,0.796,0.726,0.664,1.339,1.217,0.731,0.708,1.515,0.885,0.468,1.443,0.75,1.573,2.35,1.383,0.213,0.74,1.153,0.93,1.798,1.247,1.278,1.256,0.507,1.121,1.064,0.823,0.905,0.595,0.83,0.781,1.101,0.944,1.168,1.482 +NM_004131,0.814,1.143,0.912,0.945,1.024,0.998,0.862,0.872,0.972,1.035,0.793,1.034,0.863,0.928,0.982,0.918,0.92,0.938,0.694,0.949,0.851,0.875,1.016,1.009,0.975,1.019,1.408,0.886,0.86,0.985,0.982,1.119,1.4,0.966,0.914,0.857,1.186,0.973,1.531,1.124,0.999,0.922,0.958,0.793,1.0,0.906,1.083,0.967,1.209,1.063,0.994,0.865,1.324,3.426 +NM_004132,0.914,0.919,0.955,1.309,1.058,1.179,1.008,0.929,0.85,0.998,1.334,1.002,0.968,0.851,0.952,1.57,0.896,1.157,0.938,0.988,1.006,0.953,1.245,0.941,1.019,0.897,0.926,1.088,0.855,1.186,1.09,1.091,0.882,1.302,0.871,0.943,1.184,0.977,1.233,1.029,0.985,1.156,1.01,1.142,1.053,0.988,0.982,0.868,0.969,0.936,1.089,1.005,0.852,0.873 +NM_004133,1.034,0.939,0.93,1.034,1.007,0.92,0.937,1.064,0.932,1.251,1.096,0.992,0.93,0.98,1.269,1.187,1.104,1.049,0.975,1.144,0.991,1.067,1.23,1.024,1.05,0.958,0.998,1.009,0.977,1.028,0.969,0.963,0.836,0.942,0.982,1.07,1.148,0.985,0.956,0.983,0.999,0.95,1.092,0.933,1.074,1.079,1.011,1.092,0.995,0.893,0.997,0.942,0.968,1.021 +NM_004134,0.714,0.795,0.986,0.692,1.019,0.87,0.535,0.559,1.363,1.115,0.9,1.082,0.673,0.668,0.858,1.222,0.638,0.826,1.318,0.938,0.487,0.916,1.281,1.267,0.651,0.743,1.787,0.774,0.348,1.088,0.99,0.902,3.243,1.072,0.355,1.163,1.199,0.772,1.516,0.795,1.119,1.037,0.899,1.139,1.062,1.064,1.152,0.792,1.504,0.846,1.111,1.263,1.141,2.161 +NM_004135,0.702,0.918,0.766,1.141,0.659,1.461,0.796,0.573,0.815,0.746,1.5,0.743,0.809,0.511,0.936,1.909,0.831,0.944,0.923,1.09,0.716,0.804,1.162,0.97,0.987,0.858,1.022,0.754,0.528,1.285,0.734,1.344,1.76,1.714,0.428,1.061,1.407,0.67,1.731,0.671,0.739,1.249,0.962,1.915,0.92,1.067,0.961,0.777,1.253,0.773,1.213,0.937,0.938,1.09 +NM_004136,0.918,0.966,0.99,0.889,0.915,0.946,0.832,0.919,1.094,1.053,1.034,0.963,0.863,0.885,0.921,1.132,0.936,1.065,0.966,0.927,0.887,0.857,1.23,0.984,0.909,1.047,1.079,0.967,0.655,0.996,1.003,1.038,1.167,1.025,0.82,1.314,1.052,0.893,1.33,1.119,0.98,0.847,0.936,0.98,1.103,1.016,1.054,0.981,1.062,0.849,1.055,0.925,1.095,1.002 +NM_004137,0.878,1.268,0.924,0.939,0.874,1.066,1.133,0.666,0.812,0.916,1.451,0.922,0.79,0.671,0.979,1.111,0.879,0.756,0.703,1.132,0.905,0.792,1.805,0.818,1.132,0.786,1.037,1.373,0.747,1.958,0.792,2.457,1.1,3.284,0.843,0.754,0.91,1.101,1.461,1.002,2.317,2.596,0.772,0.754,0.843,0.992,0.998,0.954,0.926,0.869,1.724,1.043,0.988,0.914 +NM_004138,1.276,1.037,1.128,1.03,1.28,0.928,0.712,1.029,1.142,0.972,0.803,1.024,1.322,0.997,1.051,1.03,1.071,1.251,1.186,0.913,1.194,1.211,0.877,0.995,0.888,1.147,1.016,1.25,0.974,0.858,1.172,1.076,1.003,0.786,1.053,0.917,0.992,1.182,0.876,0.96,1.156,0.947,0.977,0.959,1.139,1.001,0.837,1.222,0.9,1.102,1.019,0.955,0.929,1.094 +NM_004139,0.863,1.065,1.078,0.965,0.954,1.059,0.977,0.927,1.012,0.974,1.15,0.919,1.056,1.281,0.723,1.073,0.99,0.904,0.918,0.91,0.985,1.296,1.096,0.921,1.126,0.904,0.978,1.034,1.63,0.839,1.046,0.946,0.906,1.012,1.169,0.974,0.806,0.853,1.06,1.619,0.955,1.098,1.036,0.884,1.039,0.881,0.939,1.133,1.094,1.007,0.941,0.937,0.983,0.98 +NM_004140,1.171,0.896,0.995,0.965,1.06,1.071,0.89,1.002,0.902,1.092,1.001,1.068,1.041,0.91,0.842,0.751,1.158,0.895,0.939,0.949,1.144,1.017,0.968,1.019,1.062,1.206,1.03,0.857,0.7,1.061,0.971,1.102,0.882,0.926,0.88,1.124,0.921,1.138,1.0,0.983,1.039,0.97,0.788,1.124,1.029,0.789,0.922,0.861,1.016,0.927,0.91,1.007,1.0,0.825 +NM_004143,0.949,1.01,1.016,1.014,0.975,0.964,0.851,0.953,0.969,1.045,1.254,0.953,0.81,0.855,1.057,1.443,0.835,1.035,0.977,1.064,0.855,0.985,0.982,0.908,0.769,0.917,1.027,0.877,0.906,1.026,0.985,1.051,1.081,0.958,0.916,0.93,0.968,0.931,1.145,0.988,0.942,1.394,1.199,1.073,0.976,0.908,1.08,0.98,0.953,0.963,1.178,0.986,1.244,1.047 +NM_004145,0.701,0.879,0.983,0.737,0.803,1.105,0.771,0.733,0.918,0.906,0.801,0.77,0.741,0.678,0.872,0.836,0.897,0.991,1.016,1.127,0.801,1.082,1.264,1.042,0.769,0.972,1.252,0.754,0.871,1.061,0.837,1.872,1.274,1.012,0.684,1.091,0.908,0.953,1.701,1.645,0.899,1.142,0.815,1.364,1.059,0.879,0.793,0.978,0.747,0.892,0.881,0.995,0.907,1.431 +NM_004146,0.6,1.004,1.007,0.805,0.886,1.094,0.916,0.711,0.921,0.912,1.37,1.035,1.043,0.492,0.901,1.995,0.637,1.372,1.273,1.131,0.423,0.734,1.733,1.071,0.793,0.971,0.84,0.884,0.576,1.056,0.782,0.914,1.062,1.596,0.12,1.395,1.247,0.924,1.645,0.697,0.877,1.207,0.759,1.135,1.095,0.844,0.772,1.098,0.976,0.75,1.01,1.215,0.943,1.881 +NM_004147,0.68,1.064,1.104,0.71,0.854,1.1,0.618,0.443,1.065,1.042,1.109,0.848,0.775,0.591,0.811,1.562,0.753,0.838,1.407,0.8,0.724,0.835,1.279,1.194,0.758,0.918,1.395,0.843,0.44,1.148,0.949,0.853,2.304,1.214,0.308,0.95,1.138,0.998,1.505,0.591,1.143,1.149,0.625,0.908,0.957,0.97,0.954,0.725,1.095,0.811,0.942,0.996,0.879,1.411 +NM_004148,0.582,1.472,1.434,0.89,0.882,0.904,0.587,0.307,0.833,0.867,0.906,1.311,0.702,0.356,0.74,0.959,0.529,0.902,0.646,1.097,0.407,0.554,1.015,1.106,0.678,0.582,1.24,0.674,0.268,1.179,0.764,5.148,0.734,1.244,0.179,0.547,0.883,1.101,1.579,4.024,0.977,1.49,0.719,0.889,0.949,1.003,1.106,0.532,0.548,0.694,1.178,1.656,0.933,1.829 +NM_004152,0.768,0.946,1.284,0.653,1.093,0.954,0.561,0.733,1.054,1.129,1.049,1.104,0.728,0.699,0.812,1.196,1.018,1.052,1.338,0.953,0.488,0.866,1.098,1.105,0.662,0.954,1.042,1.077,0.339,0.999,0.896,0.931,1.112,1.222,1.104,1.123,1.025,1.266,1.052,1.182,1.221,0.946,0.811,1.13,1.016,1.025,1.246,0.979,1.053,0.877,0.953,0.819,0.941,1.108 +NM_004153,0.939,0.97,1.153,1.028,1.032,1.061,0.915,0.804,1.076,1.201,0.914,0.947,0.939,0.811,1.198,1.068,1.061,1.138,1.01,0.849,0.882,1.01,1.261,1.197,0.784,0.845,1.362,0.938,0.751,0.899,0.948,1.033,3.16,0.854,0.959,1.018,0.914,1.095,1.223,1.048,1.097,1.001,0.87,1.168,1.182,1.016,1.019,0.919,1.361,1.186,0.964,0.921,0.961,2.039 +NM_004154,1.125,0.843,1.056,1.166,0.959,1.053,1.128,1.014,0.864,0.966,0.839,1.009,1.065,0.873,0.933,1.077,1.001,0.974,0.923,0.902,1.062,0.979,1.079,0.978,1.006,0.963,0.937,0.892,0.954,1.086,0.947,0.992,0.86,0.98,0.871,1.022,1.029,0.988,0.995,1.005,0.871,1.001,1.045,0.953,0.936,0.98,0.939,0.856,1.085,1.435,0.855,0.981,1.241,1.022 +NM_004156,0.779,0.501,1.274,0.873,0.93,1.189,0.611,0.664,1.452,1.157,1.306,0.698,0.737,0.711,1.3,1.916,0.785,0.931,0.984,1.126,0.535,0.638,1.166,1.18,0.508,0.858,0.944,1.216,0.295,0.964,1.253,0.996,1.137,1.245,1.214,0.576,1.763,0.931,1.305,0.406,1.259,1.283,1.026,0.852,1.031,2.312,1.02,0.747,1.907,0.793,1.221,0.729,1.004,1.581 +NM_004157,1.114,0.966,1.051,0.982,0.935,0.968,0.852,0.79,1.098,0.937,1.085,1.034,0.951,0.979,0.934,1.189,1.002,1.081,1.143,0.953,1.016,0.881,1.102,1.066,0.881,1.27,0.988,1.128,0.658,0.964,1.094,0.93,1.03,1.119,0.862,1.061,1.125,1.033,1.34,0.956,1.273,1.225,0.853,0.958,1.243,1.05,1.119,0.94,1.024,1.213,0.958,1.006,1.057,0.967 +NM_004158,0.875,0.911,1.118,1.074,0.993,1.035,0.831,0.924,1.026,0.965,0.908,1.003,1.008,0.859,1.281,0.969,0.927,1.018,0.971,1.12,1.083,0.979,0.976,0.906,1.059,0.972,1.12,1.093,0.882,0.982,1.123,1.03,0.84,0.974,0.967,0.865,1.052,0.885,1.068,0.962,1.15,1.146,0.89,0.986,0.962,0.975,0.871,1.089,1.006,1.088,0.982,0.997,0.974,1.016 +NM_004159,0.866,1.058,1.209,1.101,0.871,0.973,0.728,0.932,0.889,1.047,0.948,0.984,0.981,0.827,0.872,1.214,0.941,0.979,0.91,0.856,0.948,0.786,0.953,1.051,0.949,0.858,1.05,0.967,0.67,1.011,0.87,1.533,1.0,0.915,0.832,0.913,1.071,0.886,1.325,1.152,0.915,1.101,0.822,1.162,0.912,0.984,1.078,0.821,1.196,0.969,1.02,1.0,1.005,2.353 +NM_004160,0.889,1.149,0.969,1.491,0.908,1.03,1.021,0.894,1.017,0.96,1.242,1.202,0.983,0.89,1.111,1.032,1.044,0.936,0.959,1.307,0.761,0.972,1.16,0.97,1.032,0.936,0.895,1.062,0.756,0.959,0.969,0.829,1.002,2.153,1.165,1.203,1.025,0.913,0.921,0.925,0.99,0.9,1.142,1.06,1.056,1.67,3.925,0.891,1.028,0.993,0.949,0.979,1.247,0.96 +NM_004161,0.627,0.825,1.06,0.929,0.925,1.353,0.624,0.537,1.265,0.92,1.425,0.713,0.59,0.721,1.034,1.907,0.75,0.919,1.178,0.883,0.468,0.655,1.306,1.066,0.604,0.77,1.034,0.911,0.344,1.34,0.963,1.147,1.741,1.358,0.734,0.805,1.647,0.669,1.312,0.772,1.048,1.132,0.928,0.931,1.01,1.463,1.019,0.737,1.07,0.807,1.244,0.857,1.03,1.357 +NM_004162,1.188,0.783,1.264,0.845,1.241,1.033,0.57,1.08,1.507,1.081,0.872,0.761,0.943,0.797,1.232,1.354,1.052,1.074,1.482,0.74,0.463,0.961,0.92,1.085,0.589,1.013,1.499,1.24,0.365,1.314,1.314,0.662,0.978,1.125,1.811,0.616,0.998,1.022,1.263,0.694,1.156,0.932,0.796,0.683,1.359,0.979,0.796,1.464,0.844,1.241,0.946,0.739,1.124,1.071 +NM_004163,0.821,1.023,1.08,0.875,1.076,1.29,1.086,1.272,1.016,1.098,1.032,1.015,1.089,0.736,0.886,1.246,1.031,1.106,0.895,1.111,0.938,0.975,0.948,1.032,0.839,0.866,1.129,0.932,1.001,0.951,1.011,0.886,1.038,0.988,1.014,0.827,1.054,1.096,1.251,0.831,1.014,0.94,0.991,0.818,0.908,1.027,0.978,0.958,0.99,0.933,1.002,0.999,0.925,0.96 +NM_004164,1.001,0.931,0.925,1.816,1.13,1.164,0.79,0.927,0.897,0.972,1.698,1.025,0.909,0.918,1.24,4.055,0.915,1.056,0.844,0.989,0.767,0.876,1.077,0.955,0.99,1.555,1.01,1.091,0.792,1.104,1.061,1.026,1.066,0.937,0.918,0.999,26.28,1.114,0.97,0.922,1.141,1.156,3.992,0.991,0.966,1.606,1.024,1.106,1.314,0.895,1.191,1.036,0.925,0.991 +NM_004165,1.869,0.679,1.167,0.879,2.673,0.676,0.616,1.087,3.784,4.99,0.685,2.391,1.311,1.405,1.532,1.421,0.614,2.289,1.399,0.66,1.021,1.573,0.901,4.361,0.66,1.741,1.55,1.959,0.71,0.668,2.207,1.054,2.919,0.781,0.65,0.584,0.603,3.55,0.705,0.838,1.106,0.88,0.751,0.533,1.076,0.625,2.078,2.577,0.581,1.092,0.992,0.939,5.703,2.223 +NM_004169,1.214,0.917,1.262,1.154,1.38,0.834,0.733,0.767,1.392,1.277,0.777,0.889,0.939,1.351,1.236,1.242,1.395,1.35,1.736,0.724,1.03,0.86,0.823,1.344,0.824,1.318,1.425,1.085,0.644,0.893,1.21,0.861,1.164,0.906,0.968,0.817,1.006,1.459,0.913,0.776,1.546,0.911,0.868,0.942,1.145,0.923,1.287,1.229,0.925,1.282,1.016,0.775,1.183,1.099 +NM_004170,0.782,0.984,0.798,1.008,0.702,1.771,0.836,0.654,0.896,0.798,2.845,0.703,0.667,0.735,2.601,4.845,0.785,0.92,0.982,2.604,0.752,0.836,2.277,0.766,0.968,0.79,1.376,0.847,0.728,1.368,0.793,0.922,0.931,0.813,0.726,0.847,4.295,0.863,2.433,0.88,0.899,2.663,1.73,1.512,0.939,3.984,1.32,0.724,2.786,0.93,2.182,1.63,1.046,1.902 +NM_004173,1.672,1.053,1.147,1.103,1.349,0.938,0.741,0.871,1.958,1.724,0.87,1.004,1.03,1.145,0.899,1.26,1.256,1.318,1.236,0.937,1.146,1.132,1.069,2.071,0.773,1.321,1.888,0.996,0.762,0.925,1.661,0.938,1.085,1.036,0.944,1.962,0.835,0.925,1.366,1.196,0.938,0.915,0.721,0.81,1.448,0.954,1.028,1.844,0.772,1.267,0.899,0.879,0.963,1.827 +NM_004175,0.94,1.128,0.968,0.883,1.029,1.078,0.689,0.609,1.407,1.063,0.916,0.9,0.839,0.625,0.742,0.998,0.861,0.772,0.848,1.154,0.573,0.758,1.102,1.03,0.916,0.779,0.999,1.087,0.567,1.296,0.747,1.11,1.314,1.139,0.55,0.998,0.785,0.984,1.467,0.792,1.133,1.104,1.014,1.089,0.771,1.149,1.191,0.73,1.376,0.893,1.102,0.756,0.776,0.935 +NM_004176,0.935,0.597,1.358,0.808,0.735,0.851,0.502,0.547,1.293,0.759,0.674,0.761,0.63,0.681,0.936,1.95,0.893,0.933,1.609,0.708,0.613,1.216,1.007,0.853,0.742,1.493,1.49,0.813,0.431,1.351,1.049,1.468,1.408,1.016,0.48,0.886,1.163,0.928,1.229,0.874,1.033,0.695,0.768,1.512,1.304,0.92,0.766,1.124,0.934,1.58,1.186,0.676,1.126,1.471 +NM_004177,0.428,1.207,0.526,0.864,0.532,2.624,0.979,0.391,0.712,0.531,1.755,0.465,0.39,0.392,1.157,1.925,0.382,1.373,0.548,1.777,0.308,0.519,1.588,0.591,0.745,0.472,0.459,0.589,0.899,1.865,0.65,0.913,0.705,2.073,0.649,1.975,1.783,0.55,1.522,1.048,0.518,1.649,1.051,1.428,0.519,1.682,0.963,0.546,1.334,0.4,1.351,0.607,0.432,1.076 +NM_004178,0.699,1.255,1.206,0.745,0.999,0.996,0.66,0.49,1.188,1.061,0.82,1.224,0.739,0.582,0.702,1.123,0.873,1.031,0.998,1.19,0.463,0.781,1.092,1.254,0.59,0.753,1.387,0.877,0.429,1.283,0.692,1.587,1.001,1.04,0.202,1.6,0.995,0.935,1.255,1.435,1.214,0.935,0.739,1.525,1.082,1.073,1.342,0.765,1.121,0.773,1.039,1.061,0.732,2.2 +NM_004179,1.008,0.932,0.974,0.929,0.998,1.012,0.917,1.192,0.868,0.856,0.98,1.128,1.026,1.097,1.012,0.997,0.989,0.892,1.012,0.958,0.952,0.848,0.942,0.915,0.963,0.884,1.006,0.895,0.767,1.08,1.096,1.036,1.123,1.054,0.951,0.969,1.026,0.908,1.041,1.077,1.04,0.928,0.975,0.987,0.941,0.87,0.974,0.974,0.968,0.909,1.01,0.964,0.908,0.94 +NM_004180,0.729,0.761,1.222,1.019,0.696,1.244,0.807,0.559,0.962,0.628,1.476,0.686,0.626,0.673,1.144,1.773,0.738,0.987,0.93,1.174,0.471,0.577,1.27,0.71,0.645,0.592,1.201,0.695,0.537,1.154,0.784,1.263,0.869,1.589,0.403,0.76,1.507,0.598,1.309,1.18,0.711,1.264,1.02,1.059,0.772,1.563,0.872,0.543,1.176,0.696,1.198,0.997,0.98,1.247 +NM_004181,1.036,1.068,1.036,0.915,1.082,0.946,1.039,1.108,1.174,1.001,0.936,0.802,0.945,0.983,0.815,1.088,0.916,1.18,0.968,0.926,1.077,0.982,0.993,1.176,0.957,1.053,0.888,1.077,1.042,1.112,1.003,2.206,1.841,0.919,0.989,1.09,1.216,1.085,1.307,1.428,0.92,0.983,0.956,1.086,1.066,0.966,0.957,1.174,0.854,0.948,0.957,0.985,0.995,0.979 +NM_004182,0.757,0.949,1.006,0.765,0.683,1.2,0.572,0.65,0.888,0.81,1.429,1.046,1.111,0.525,0.931,1.782,0.725,0.872,1.46,1.06,0.555,0.941,1.33,1.17,0.836,1.114,1.08,0.831,0.477,1.061,0.82,1.17,2.161,1.693,0.243,1.158,1.162,0.954,1.376,0.564,0.977,1.326,0.573,0.818,0.962,0.851,0.988,0.981,0.898,0.764,1.075,0.976,0.883,1.071 +NM_004183,0.981,1.008,1.039,1.019,0.905,0.962,0.897,0.914,0.974,1.073,1.02,0.988,1.011,0.862,1.087,0.907,0.956,1.07,0.934,1.078,0.93,0.931,1.062,1.04,0.913,1.036,0.976,0.997,0.927,0.993,1.041,1.118,0.769,1.06,1.098,0.959,0.864,0.99,1.06,1.165,1.017,1.09,0.981,0.9,1.028,1.065,1.052,0.851,1.009,1.087,0.941,1.09,0.921,1.062 +NM_004184,0.808,1.051,0.804,0.465,0.647,1.169,1.082,0.253,0.884,0.919,0.782,0.605,0.273,0.402,1.841,1.004,0.563,0.713,0.686,0.772,0.421,0.437,1.336,1.409,0.587,0.429,1.088,0.802,0.444,1.341,0.466,2.018,1.684,1.194,0.165,1.048,0.93,0.508,1.127,0.882,1.406,1.114,0.822,1.613,0.854,1.173,1.183,0.395,1.598,0.495,1.12,1.454,3.093,4.294 +NM_004185,1.124,1.104,0.875,0.879,0.917,1.02,1.122,1.328,1.196,1.026,1.307,0.958,0.976,0.972,1.201,0.965,0.997,1.101,0.915,1.015,1.037,1.035,1.051,1.301,1.071,1.003,1.005,0.895,1.567,0.951,1.0,1.079,0.961,1.078,1.098,0.954,0.94,0.912,0.99,1.091,0.913,0.824,0.81,1.025,1.07,0.944,1.131,0.951,0.986,1.091,0.942,1.058,1.004,0.915 +NM_004186,1.844,0.736,1.969,1.011,1.646,0.695,0.627,0.94,2.249,1.58,0.44,1.502,0.954,1.627,1.506,1.003,1.292,1.162,3.182,0.513,1.346,1.881,0.286,1.962,0.595,2.55,1.914,1.688,0.468,1.453,1.998,0.832,1.328,0.962,0.66,0.43,0.6,1.608,1.141,0.9,2.116,0.479,0.558,1.366,1.669,0.718,1.181,2.14,0.353,1.582,0.745,0.979,1.542,0.715 +NM_004187,0.882,0.848,1.483,0.677,1.206,0.827,0.596,0.949,1.282,1.048,0.61,0.993,0.686,0.777,1.127,1.295,1.153,0.941,1.458,0.959,0.782,1.273,0.95,1.432,0.486,0.856,1.4,1.066,0.427,0.742,1.431,1.394,1.659,0.956,0.754,0.643,0.856,1.133,1.315,1.09,1.08,0.903,0.931,0.685,1.489,0.667,1.033,1.0,0.853,1.013,1.101,0.804,1.0,1.165 +NM_004188,1.064,1.065,0.909,1.017,0.876,0.999,0.913,0.863,0.999,0.905,0.989,0.985,0.948,1.132,0.959,1.043,1.001,1.064,1.148,0.876,0.97,1.006,1.145,1.114,1.092,1.182,1.052,0.885,1.159,1.123,1.021,1.043,1.006,1.047,1.21,1.064,0.902,0.935,0.965,0.942,1.025,0.829,0.793,0.902,0.736,1.067,1.004,1.031,1.104,1.187,1.151,1.013,1.135,0.979 +NM_004189,0.9,1.064,1.055,1.018,0.942,1.046,0.92,1.161,1.036,1.059,0.978,1.026,0.912,1.159,0.849,0.94,0.841,1.22,0.91,1.08,1.179,0.86,1.119,0.909,1.06,0.933,1.083,0.981,0.885,0.912,0.915,0.896,1.034,0.918,1.001,1.069,1.114,1.086,0.994,1.026,0.994,0.971,1.074,1.076,0.983,1.091,1.207,1.07,1.405,0.959,1.015,0.943,0.816,0.988 +NM_004190,0.555,181.7,0.441,107.3,0.676,133.0,107.7,0.495,1.745,1.014,25.39,0.485,0.629,0.468,1.045,0.606,0.923,54.67,0.526,79.24,0.538,1.165,4.189,1.559,202.3,0.412,1.147,0.763,36.92,170.3,0.568,1.185,0.518,184.7,0.621,0.628,129.6,0.488,1.843,0.403,0.536,28.34,6.188,0.523,0.449,0.415,1.132,0.565,0.53,0.492,0.745,0.546,0.561,0.5 +NM_004192,0.956,1.275,0.853,0.904,1.019,1.027,0.867,0.867,1.039,0.807,1.023,0.857,1.031,0.673,0.833,1.389,0.828,0.96,0.811,0.968,0.905,1.194,1.216,1.164,1.002,1.005,1.202,0.896,0.854,1.101,0.967,1.666,1.354,1.265,0.601,0.804,1.078,1.196,1.052,0.836,0.931,1.443,0.899,1.163,1.064,0.8,0.862,0.937,0.968,0.829,0.998,0.698,0.82,0.745 +NM_004193,0.786,0.982,1.473,0.59,0.986,1.108,0.486,0.5,1.003,0.93,0.963,0.683,0.552,0.915,1.235,1.416,1.077,0.887,1.685,0.752,0.697,0.86,1.257,0.889,0.713,1.058,1.648,0.766,0.595,0.892,0.9,1.59,1.028,0.79,0.417,0.919,0.974,1.299,1.611,0.782,1.092,1.061,0.652,1.262,0.848,1.067,1.146,0.885,1.077,1.005,1.109,0.838,1.147,0.942 +NM_004196,0.864,1.129,0.894,0.964,0.947,1.097,0.733,0.921,0.974,1.058,1.165,0.933,1.004,1.273,1.091,1.165,0.81,1.128,0.818,0.903,0.895,0.853,1.107,0.967,0.937,0.934,0.998,1.011,0.806,1.027,1.062,0.802,1.151,1.117,0.955,0.997,1.0,1.068,1.079,0.873,0.998,1.178,1.098,1.03,0.914,1.171,1.103,1.02,1.165,1.068,1.05,0.891,1.033,1.044 +NM_004197,0.93,0.844,1.4,0.799,1.163,0.911,0.751,0.762,1.132,1.164,0.883,0.896,0.77,0.78,1.012,1.15,0.992,1.039,1.695,0.594,0.867,1.039,0.871,1.123,0.608,1.426,0.833,1.149,0.539,0.963,1.038,1.257,0.854,1.264,0.591,0.766,0.77,1.187,1.121,1.05,1.149,0.958,0.712,1.023,1.158,0.998,0.893,1.152,0.795,1.077,0.736,0.762,1.35,0.67 +NM_004198,0.944,0.994,0.935,0.904,0.816,0.996,0.769,1.12,1.08,0.852,0.868,0.95,1.03,1.134,0.702,0.976,0.95,0.868,0.893,0.911,1.173,1.176,0.835,1.095,1.159,0.874,0.875,0.99,0.951,0.997,1.015,0.968,1.071,0.977,0.98,0.908,1.011,0.879,1.064,0.941,0.905,1.02,0.844,0.877,1.01,1.2,0.882,0.991,0.951,1.083,1.025,0.81,1.045,0.979 +NM_004199,0.465,1.394,0.94,0.776,0.733,1.068,0.674,0.452,0.7,0.652,1.062,0.479,0.431,0.606,1.203,2.217,0.534,0.993,1.109,1.216,0.712,0.728,1.495,0.792,0.701,0.663,0.863,0.466,0.879,1.588,0.755,1.228,1.419,2.437,0.302,0.914,1.154,1.01,1.82,1.473,0.829,1.556,0.631,1.076,0.694,1.412,1.005,0.625,1.206,0.624,1.349,0.675,0.719,1.221 +NM_004200,1.114,0.905,0.952,0.872,0.941,0.989,0.889,1.17,0.937,1.104,0.971,1.052,0.994,0.883,0.928,1.016,0.903,0.958,0.984,0.952,0.807,0.962,0.997,0.988,1.033,1.091,1.027,1.047,1.062,1.133,0.987,1.099,0.92,1.114,1.086,0.949,1.012,0.955,1.025,1.311,1.001,1.02,1.222,0.982,1.151,1.176,0.971,1.014,1.161,0.961,1.041,0.912,0.95,1.033 +NM_004202,1.108,0.893,1.111,0.823,0.842,1.157,0.748,0.703,1.045,0.874,1.252,0.793,0.847,1.122,1.455,1.928,1.002,1.142,0.806,0.829,0.901,0.958,1.159,1.015,0.918,1.144,1.272,0.738,0.732,1.754,1.18,0.855,0.803,1.2,1.064,0.774,1.127,0.994,0.88,0.98,1.188,1.24,0.82,0.869,0.948,1.955,1.003,1.038,0.934,1.028,1.165,0.873,1.109,0.769 +NM_004203,0.952,1.04,0.894,0.874,1.089,1.017,0.907,1.157,0.925,0.933,0.821,0.997,0.968,1.024,0.973,0.92,0.919,1.036,0.943,1.034,1.003,0.984,1.082,1.023,0.879,1.009,1.095,1.036,0.823,0.974,1.086,0.919,2.224,1.013,0.868,1.063,1.081,0.9,1.332,0.987,0.845,1.016,0.943,1.293,1.004,1.043,1.018,1.027,0.951,1.151,1.069,0.983,1.013,1.25 +NM_004204,1.041,1.033,1.078,1.046,0.973,1.029,1.023,1.064,0.959,0.994,1.034,0.986,0.991,1.047,0.953,0.972,0.983,0.99,0.872,1.023,1.004,1.0,0.895,0.91,0.995,1.027,1.121,0.993,0.805,0.973,0.909,1.019,1.045,0.932,0.97,1.169,1.02,0.853,1.149,0.98,0.818,1.013,1.002,0.958,1.174,0.933,1.181,0.948,0.983,1.097,0.961,0.917,1.002,1.015 +NM_004205,1.01,0.8,1.128,1.005,1.313,1.072,0.895,1.572,0.901,1.016,0.897,1.018,0.883,1.086,1.303,1.017,1.008,1.0,0.952,0.927,0.885,0.914,0.956,0.986,0.924,0.912,1.109,1.028,1.0,1.116,1.037,0.959,0.944,0.803,1.668,0.841,0.958,1.405,0.944,0.992,0.895,1.057,0.987,1.075,0.931,1.036,0.964,1.076,1.14,1.019,0.998,0.919,1.122,0.908 +NM_004206,0.693,1.312,0.983,0.93,0.787,1.423,1.094,0.776,0.788,0.808,1.072,0.685,0.682,0.73,0.965,1.437,0.752,0.928,0.82,1.123,0.724,0.658,1.391,0.753,0.963,0.66,1.031,0.709,0.65,1.499,0.722,1.7,1.486,1.821,0.465,0.775,1.349,0.851,1.58,0.747,0.836,1.471,0.715,0.799,0.754,1.212,0.913,0.674,0.721,0.843,1.197,0.847,0.945,2.038 +NM_004208,0.838,1.032,0.935,0.802,0.934,1.319,0.894,0.961,0.988,1.066,0.866,0.959,0.913,0.679,0.786,0.96,0.934,1.067,0.995,1.094,0.698,0.83,1.094,0.927,0.974,0.97,0.878,1.081,0.941,1.423,0.918,1.079,1.091,0.903,0.991,1.013,0.922,1.234,1.226,1.03,1.107,1.036,1.675,1.356,0.828,1.361,1.189,0.831,1.334,1.084,0.887,0.981,0.823,1.12 +NM_004209,0.972,0.968,0.942,1.143,1.055,0.909,0.866,1.167,0.946,1.113,0.974,1.072,0.969,1.089,1.007,0.898,0.984,1.083,0.872,1.006,0.926,1.094,1.164,1.066,0.964,0.996,1.016,0.83,1.034,0.99,1.05,1.188,1.094,0.972,0.94,1.013,0.996,1.026,1.028,1.312,0.99,0.961,1.005,0.822,0.947,1.077,0.983,0.907,0.898,0.829,0.937,1.088,1.148,0.958 +NM_004210,1.08,1.016,0.999,1.085,0.874,0.96,1.051,0.966,0.987,0.986,1.157,1.032,1.017,0.939,0.946,0.927,1.014,1.075,0.911,0.887,1.049,0.882,1.033,1.013,1.001,0.857,0.914,0.952,0.826,0.918,0.929,0.923,1.177,1.059,0.908,0.759,1.054,1.018,0.956,0.926,1.011,1.089,1.075,0.969,0.9,1.067,0.954,1.013,0.999,1.11,1.008,0.964,1.125,1.033 +NM_004212,0.745,5.031,0.79,1.52,0.773,2.271,1.002,0.711,0.808,0.919,0.905,0.84,0.771,1.018,1.112,0.955,0.85,1.242,0.894,3.021,0.825,0.871,6.876,0.745,3.692,0.915,0.998,0.866,1.351,1.567,0.959,1.064,0.85,5.319,0.833,0.794,3.203,0.763,1.095,0.921,1.008,1.524,1.528,0.844,0.801,5.456,0.937,0.906,5.514,0.726,3.267,0.853,0.858,0.941 +NM_004213,1.106,0.982,1.139,1.018,1.261,1.014,0.982,1.072,1.029,0.99,1.015,0.978,0.993,1.109,1.26,1.09,0.905,1.026,0.991,0.856,1.108,0.879,1.101,0.922,1.038,0.863,1.005,0.909,0.707,1.021,0.965,1.088,0.834,0.879,1.087,0.995,1.103,0.907,0.961,1.063,0.98,1.056,1.137,1.054,0.945,0.98,1.023,1.069,0.999,0.91,1.043,1.003,1.14,0.949 +NM_004214,0.682,1.087,0.881,0.884,0.715,1.521,0.577,0.628,0.785,0.771,1.133,1.05,0.815,0.56,0.947,2.154,0.656,0.803,1.309,1.082,0.659,0.831,1.165,1.041,0.796,0.901,1.001,0.747,0.768,1.089,0.755,1.695,3.374,2.067,0.254,1.883,1.036,0.885,1.695,1.182,0.966,1.064,0.57,1.92,0.862,0.988,0.79,0.803,0.671,0.771,0.993,0.745,1.053,0.972 +NM_004215,0.944,1.036,1.063,0.954,1.064,0.969,0.868,0.966,0.92,1.032,1.068,0.818,1.298,1.002,1.055,1.049,1.046,0.798,0.92,1.079,0.929,0.969,1.046,0.978,0.954,0.93,1.243,0.925,1.113,1.246,0.896,1.143,1.26,0.97,0.916,1.023,0.856,0.99,1.077,0.948,0.917,1.081,0.943,1.249,0.937,1.101,1.257,0.817,1.074,0.921,1.014,0.937,0.932,1.046 +NM_004216,0.621,0.835,1.173,0.681,0.944,1.405,0.647,0.755,1.069,1.052,0.892,1.095,0.752,0.552,0.886,1.393,0.885,1.029,1.009,0.94,0.572,0.99,1.053,1.309,0.516,0.726,1.337,0.868,0.549,1.18,0.901,1.703,1.661,1.093,0.442,1.001,0.898,0.965,1.483,1.099,0.963,1.061,0.558,1.159,0.962,0.84,1.166,0.977,0.92,0.906,0.881,0.763,0.701,1.642 +NM_004217,0.673,0.706,1.362,0.943,0.998,0.873,0.675,0.547,1.205,1.228,0.831,0.991,0.763,0.693,0.895,1.19,0.835,1.013,1.232,0.806,0.7,0.775,1.889,1.431,0.45,0.681,2.285,0.816,0.38,1.172,0.869,0.928,3.005,0.745,0.34,2.099,0.959,0.758,1.197,1.831,1.318,0.643,0.752,1.69,1.102,0.955,1.455,0.681,1.564,0.784,1.351,1.167,1.089,2.567 +NM_004218,1.15,1.091,1.054,1.034,1.002,0.942,1.019,1.0,1.166,0.957,0.94,0.94,1.164,0.833,0.884,1.07,1.108,1.095,0.992,1.302,1.081,1.011,1.137,1.089,1.062,0.95,0.885,1.002,0.836,1.143,0.982,0.918,0.871,1.087,1.001,0.838,1.172,1.064,1.152,0.93,0.892,1.0,1.335,0.891,1.048,1.062,0.941,1.013,1.101,1.001,0.928,1.014,1.124,0.967 +NM_004219,0.567,0.611,2.259,1.023,0.925,0.746,0.609,0.608,1.579,1.522,0.748,0.915,0.713,0.894,1.345,1.482,1.176,0.871,1.504,0.591,1.038,0.653,1.462,1.096,0.38,0.778,2.629,1.184,0.293,0.762,1.176,1.242,9.232,0.699,0.284,1.44,0.727,0.911,1.298,0.806,1.882,0.559,1.001,1.185,1.176,0.749,1.272,0.521,1.371,0.894,1.191,0.812,1.654,3.504 +NM_004221,0.422,0.709,0.754,1.099,0.41,2.938,1.331,0.376,0.41,0.347,4.289,0.335,0.481,0.293,2.354,5.209,0.566,0.636,0.547,1.635,0.531,0.372,1.391,0.457,0.908,0.352,0.822,0.326,0.571,1.032,0.374,3.351,5.332,1.381,0.292,2.194,2.449,0.319,4.905,2.787,0.644,2.563,1.481,3.543,0.584,3.117,1.537,0.395,2.231,0.671,2.473,1.474,0.882,1.46 +NM_004223,1.698,2.233,2.7089999999999996,1.7690000000000001,1.518,2.8310000000000004,2.504,1.109,1.534,1.525,2.274,1.421,1.317,1.3399999999999999,2.01,2.012,1.9899999999999998,2.023,1.593,1.7040000000000002,1.855,1.213,2.105,1.626,1.893,1.498,2.103,1.44,1.327,2.271,1.529,3.045,2.6719999999999997,2.8070000000000004,1.16,1.7269999999999999,2.3970000000000002,1.4849999999999999,2.937,2.076,2.372,2.299,1.432,4.8740000000000006,1.637,1.4729999999999999,1.5179999999999998,1.499,2.335,1.758,1.809,2.396,3.8979999999999997,5.85 +NM_004224,1.047,1.072,0.908,0.836,0.955,0.973,0.993,0.977,1.295,0.963,0.908,0.913,0.898,1.155,1.275,1.07,1.024,0.943,1.142,1.107,1.107,1.268,0.964,0.945,1.0,0.926,1.01,1.05,0.939,1.107,1.008,1.093,1.222,0.994,1.117,1.055,1.026,0.96,1.062,1.056,0.955,0.921,0.917,1.086,0.838,0.869,1.022,0.996,0.813,0.971,1.108,0.89,1.178,0.972 +NM_004225,0.855,0.96,0.876,0.913,0.718,1.113,0.824,0.682,0.782,0.844,1.151,0.691,0.712,0.705,0.874,0.99,1.115,0.987,0.83,0.842,0.803,0.685,1.338,0.906,1.011,0.787,1.209,0.868,0.879,1.223,0.711,1.509,1.332,1.141,0.638,0.903,1.164,0.901,1.796,1.532,0.837,1.227,0.874,1.654,0.947,1.166,0.962,0.875,1.064,1.003,0.922,1.511,0.899,1.172 +NM_004226,0.812,1.149,1.043,0.785,0.916,1.367,0.898,0.791,1.196,0.904,1.151,0.897,0.907,0.8,0.916,1.191,0.989,0.934,0.912,0.978,0.751,0.975,1.112,0.905,1.011,0.744,0.936,0.777,0.898,1.054,0.938,0.87,1.477,0.815,0.839,1.002,1.176,0.846,1.062,1.313,1.116,1.004,1.076,1.011,0.966,1.16,0.921,0.986,1.002,1.003,1.03,1.107,0.97,1.456 +NM_004227,0.661,1.211,1.328,0.617,1.201,1.002,0.796,0.791,1.431,0.913,0.812,0.93,0.664,0.794,0.998,1.012,0.904,0.773,0.954,1.343,0.6,1.233,1.709,1.128,0.606,0.729,1.137,1.338,0.596,1.656,1.117,4.112,2.378,1.682,0.459,0.536,0.985,1.356,1.028,1.018,1.226,1.451,0.511,0.744,0.867,0.971,1.145,0.988,0.795,0.763,0.977,0.912,0.735,1.975 +NM_004228,0.947,0.721,1.222,0.986,0.961,0.848,0.501,0.777,1.037,1.089,1.001,1.006,1.095,0.791,0.904,0.999,1.384,0.814,1.314,0.888,0.7,1.147,1.09,1.011,0.647,1.426,1.102,0.822,0.448,0.834,0.847,1.171,1.344,1.042,1.343,0.9,0.749,1.199,1.187,0.927,1.004,0.834,0.892,1.374,1.236,0.978,0.975,1.456,0.825,1.174,0.784,0.77,1.21,1.302 +NM_004230,0.981,0.909,1.006,0.864,1.023,0.951,1.01,1.129,0.878,1.18,0.878,0.965,1.044,0.938,1.063,1.031,0.992,1.161,1.19,1.014,0.952,1.111,1.04,1.129,0.89,0.923,0.941,0.826,1.308,0.956,1.072,0.879,1.055,0.949,1.151,1.04,0.818,0.954,0.96,0.964,1.19,1.018,1.191,0.948,0.996,1.135,0.97,0.997,1.263,1.0,0.927,0.917,1.108,0.911 +NM_004231,0.796,0.625,1.468,0.611,1.486,0.999,0.506,1.178,1.594,1.273,0.787,1.735,0.945,0.944,1.048,1.174,1.311,1.005,2.041,0.782,1.001,1.132,1.147,1.537,0.412,1.23,1.06,1.458,0.355,1.201,1.563,1.149,1.452,1.148,0.576,0.585,0.617,1.394,0.737,0.745,1.575,0.713,0.373,0.801,1.343,0.635,1.13,0.974,0.561,0.859,0.726,0.857,1.501,1.408 +NM_004233,1.125,1.243,1.027,0.795,1.085,0.823,0.846,0.896,0.922,1.003,0.707,1.142,0.872,0.852,0.999,0.853,0.998,0.987,0.946,0.758,0.89,1.035,1.075,0.871,0.811,1.062,1.119,1.123,0.747,0.937,0.888,1.513,1.839,1.127,0.839,1.01,0.932,0.99,1.286,2.781,1.015,1.006,0.778,1.166,0.904,0.898,1.061,0.78,0.8,1.001,0.845,1.134,1.101,1.782 +NM_004234,0.985,1.07,1.051,1.018,0.966,1.11,0.874,1.007,1.024,0.927,1.072,0.992,1.093,0.995,1.009,1.098,1.018,0.985,1.22,1.153,0.855,1.085,1.199,1.03,0.872,0.943,1.004,0.877,0.929,0.999,0.985,0.972,1.268,1.041,0.907,1.152,1.058,0.963,0.857,0.964,1.186,1.044,1.007,1.014,0.933,1.006,0.975,0.944,1.017,0.904,0.863,0.845,0.913,1.25 +NM_004235,0.654,0.825,1.367,0.702,1.05,2.292,1.0,0.908,1.321,0.902,1.183,1.125,0.632,0.757,1.321,1.721,1.072,1.07,1.084,1.068,0.427,1.506,1.221,1.362,0.523,0.466,1.139,0.972,0.893,1.771,1.177,0.366,0.946,1.593,0.239,0.213,1.49,1.459,1.464,0.335,1.145,1.287,0.914,0.51,0.992,1.357,0.538,0.919,1.344,1.036,1.229,0.35,0.661,0.745 +NM_004236,0.73,1.135,1.248,0.705,1.051,1.241,0.619,0.817,1.474,1.158,0.98,1.015,0.855,0.811,1.152,1.816,0.978,0.868,1.52,0.81,0.638,0.814,1.353,1.389,0.487,0.787,1.643,1.043,0.371,1.208,1.16,0.967,1.656,1.341,0.632,0.873,1.128,1.065,1.188,0.547,1.523,1.009,0.574,0.742,1.059,1.069,1.11,0.757,0.987,0.939,0.934,0.735,0.993,1.352 +NM_004237,0.899,0.892,1.004,1.025,0.784,0.996,0.908,0.799,1.061,1.1,0.923,1.142,0.884,0.669,0.885,1.13,0.87,0.908,1.104,0.793,0.937,0.76,1.371,1.073,0.791,0.776,1.338,0.861,0.78,0.995,0.792,1.561,3.775,0.886,0.694,2.083,0.942,0.874,1.6,1.25,1.009,0.688,0.789,2.377,1.039,0.95,0.978,0.834,0.829,0.965,1.056,1.125,0.969,2.802 +NM_004238,0.767,0.872,1.462,0.733,1.071,0.764,0.638,0.353,1.464,1.31,0.838,0.542,0.45,0.766,0.824,0.904,1.235,0.839,1.131,0.851,0.702,0.577,1.177,1.002,0.614,0.834,1.633,0.982,0.374,1.011,1.082,1.258,1.838,1.081,0.723,0.805,0.866,0.939,1.354,0.852,1.378,0.896,0.712,1.714,1.204,0.943,1.03,0.743,0.964,1.007,1.119,0.945,1.141,2.495 +NM_004239,0.799,1.188,1.45,0.63,1.092,1.016,0.664,0.591,1.024,1.079,0.863,0.82,0.662,0.646,0.911,1.001,1.064,0.973,1.016,1.101,0.607,0.919,1.145,0.975,0.783,0.909,1.406,0.932,0.574,1.107,1.001,1.198,1.245,1.121,0.529,0.818,0.926,0.981,1.564,0.855,1.016,0.921,0.878,1.086,1.172,0.934,1.025,0.832,0.862,1.033,1.207,0.866,0.756,1.005 +NM_004240,2.457,0.336,2.892,1.099,3.249,0.563,0.243,2.782,3.805,1.856,0.5,1.977,1.735,1.816,2.196,1.309,2.428,1.66,2.932,0.577,0.891,2.795,0.921,2.306,0.149,2.662,1.797,3.378,0.14,0.831,2.951,0.887,1.195,0.51,4.955,0.805,0.399,2.549,0.803,0.92,2.977,0.571,0.493,0.975,2.365,0.396,1.875,3.741,0.44,1.8,0.814,1.221,1.836,1.138 +NM_004241,0.73,1.033,1.442,0.72,1.251,1.301,0.765,1.218,1.442,0.853,0.854,0.91,0.758,0.715,1.191,1.366,1.013,1.017,0.937,1.325,0.592,1.124,1.045,1.122,0.666,0.641,1.408,0.989,0.595,1.087,1.339,1.119,2.068,1.061,1.017,0.682,0.963,1.219,1.115,1.04,1.129,1.059,0.994,0.68,1.177,0.948,1.155,0.796,1.18,0.892,0.936,0.715,0.686,2.135 +NM_004244,1.067,0.965,0.945,1.304,1.104,0.916,1.183,0.988,1.005,0.9,0.886,0.994,0.847,0.973,0.993,0.968,0.999,1.028,1.088,0.928,0.936,0.878,1.051,0.975,1.096,1.018,1.045,1.022,1.112,1.019,1.035,1.021,0.956,1.087,1.148,0.952,1.122,0.967,1.062,1.055,0.914,0.916,1.3,1.09,1.083,1.033,0.893,1.061,0.97,0.929,0.936,1.072,0.928,1.072 +NM_004245,1.244,0.781,3.379,1.096,1.523,0.78,0.754,1.465,2.023,1.696,0.813,1.142,1.283,1.352,1.497,1.105,2.897,1.083,3.518,0.797,1.548,1.661,0.955,1.848,0.736,1.312,1.846,1.711,0.964,0.694,1.995,0.849,1.662,0.795,1.463,0.699,0.746,1.559,0.673,0.856,2.579,0.76,0.929,0.805,2.716,0.632,1.111,1.669,0.879,2.069,1.098,0.952,2.331,0.794 +NM_004246,1.045,0.954,0.967,1.017,1.017,0.98,1.129,1.086,0.892,0.897,1.13,0.916,0.918,1.158,0.952,0.969,0.983,1.024,0.831,1.039,1.042,1.004,0.927,0.96,0.876,0.974,1.056,0.983,1.012,0.859,0.971,0.927,0.973,1.074,1.06,0.891,1.023,1.177,0.925,1.019,0.917,0.876,0.976,0.975,1.022,0.878,1.1,0.896,1.044,1.137,0.967,0.951,1.076,1.007 +NM_004247,1.124,0.957,0.921,0.957,0.998,0.922,0.962,1.057,0.934,0.986,0.973,0.987,1.051,0.923,1.031,0.939,1.066,1.03,0.892,0.963,1.0,0.985,0.906,0.877,0.956,1.128,0.932,0.931,0.928,1.001,0.954,1.094,1.02,1.076,0.888,1.015,1.004,1.093,1.178,1.081,0.947,0.961,1.188,0.907,0.995,0.94,0.963,1.066,1.062,0.964,0.97,1.076,1.049,1.116 +NM_004248,1.101,0.893,1.038,1.014,0.944,1.018,0.929,1.069,0.956,0.948,0.94,0.947,0.986,0.876,1.225,1.122,0.957,1.14,0.992,1.037,1.091,0.995,0.958,1.065,1.091,1.035,0.977,1.035,0.873,1.087,0.924,1.073,0.887,0.931,1.086,0.99,0.95,1.145,1.07,0.923,1.103,0.983,1.103,1.019,1.005,0.856,1.007,1.048,0.855,0.999,0.974,0.929,0.925,0.946 +NM_004249,0.952,1.036,0.908,1.04,1.052,1.079,1.451,1.145,1.003,1.099,1.072,0.974,1.106,1.12,0.996,0.886,1.22,1.109,1.08,1.276,0.951,0.99,0.999,0.905,1.001,0.766,1.123,0.843,0.972,1.098,1.027,1.12,1.308,0.955,0.981,0.793,1.027,0.962,0.8,1.022,1.05,0.969,1.108,1.144,0.82,0.869,1.185,0.961,0.878,1.04,0.97,0.962,0.734,0.962 +NM_004251,1.158,0.783,1.357,0.855,1.22,1.469,0.547,0.861,1.86,0.8,0.936,0.736,0.987,1.191,1.392,1.213,1.395,0.939,1.318,0.885,0.605,1.074,0.833,0.849,0.463,0.921,1.264,1.455,0.484,1.118,1.98,0.904,1.705,1.304,3.382,0.593,1.034,1.319,0.959,0.561,1.449,1.02,0.665,0.446,0.936,1.078,1.236,1.076,0.91,0.96,0.932,0.847,0.921,1.02 +NM_004254,1.19,0.991,1.115,0.967,1.017,1.092,0.942,0.995,0.957,0.806,0.977,1.014,1.164,1.149,1.098,1.01,1.035,1.076,1.043,1.286,1.025,0.983,1.13,1.155,1.101,0.862,1.019,0.968,1.343,0.884,1.052,0.972,0.991,0.86,1.079,1.043,1.064,0.883,0.968,1.012,0.937,0.987,0.989,0.913,0.987,0.993,0.981,1.004,0.956,0.843,1.112,1.023,1.099,1.005 +NM_004256,0.975,0.973,1.064,1.0,1.019,1.035,1.05,0.869,1.006,0.929,0.973,0.95,1.037,1.14,1.09,1.011,1.025,1.015,0.931,1.003,1.063,0.977,0.911,1.08,1.009,0.974,1.057,1.062,0.707,0.976,0.963,0.959,1.048,1.047,1.0,1.111,0.926,0.881,0.981,1.134,0.969,1.108,0.964,1.084,0.932,0.992,1.059,1.032,1.035,1.02,1.004,1.025,1.038,1.035 +NM_004258,0.999,0.927,1.075,0.897,0.975,1.03,0.989,0.937,1.205,0.949,1.13,0.982,1.011,0.925,1.131,1.179,0.922,1.088,1.176,1.332,0.903,0.975,1.053,0.995,1.018,0.986,1.006,1.046,1.225,1.125,1.067,0.992,1.134,0.944,1.073,0.999,0.954,0.921,0.9,1.056,0.945,1.036,0.984,0.895,1.185,1.035,1.037,0.878,0.847,0.994,1.018,0.941,1.13,1.112 +NM_004259,1.377,0.952,1.272,0.946,1.256,0.888,0.953,1.232,1.366,1.138,0.738,1.201,1.526,1.047,1.174,0.91,1.212,0.984,1.384,1.081,1.193,1.678,0.984,1.298,1.005,1.643,1.001,1.037,0.927,0.842,1.278,0.946,1.103,1.007,1.406,0.729,0.905,1.091,1.065,0.816,1.252,0.867,0.764,0.999,1.176,0.767,0.812,1.748,0.791,1.073,0.818,0.878,0.973,0.971 +NM_004260,0.977,1.118,0.997,1.086,0.793,0.907,0.829,0.962,1.029,1.04,1.056,0.882,1.344,1.05,0.76,0.919,0.979,1.0,1.113,1.181,0.965,1.622,1.005,1.108,1.0,1.371,0.984,0.886,0.981,0.985,0.935,1.039,1.319,0.94,0.943,1.354,1.006,1.071,1.328,1.347,0.873,1.019,0.848,1.728,1.001,0.955,1.019,1.336,1.002,0.943,0.974,1.017,0.848,1.191 +NM_004261,0.409,1.463,0.97,0.794,0.571,1.732,0.756,0.415,0.786,0.605,2.276,0.654,0.556,0.44,0.995,2.15,0.494,1.112,1.03,1.262,0.315,0.518,1.543,0.821,0.666,0.419,0.977,0.641,0.464,1.693,0.546,1.251,2.026,1.781,0.139,0.957,1.907,0.553,1.344,0.548,0.766,1.344,1.019,1.045,0.668,1.526,1.132,0.388,1.02,0.439,1.339,1.133,0.696,1.961 +NM_004262,2.379,0.152,4.999,0.898,3.132,0.145,0.152,3.022,3.165,2.763,0.129,2.365,2.271,1.842,2.043,1.448,4.326,2.233,6.039,0.143,1.883,2.462,0.124,2.645,0.139,2.601,3.544,3.587,0.186,0.137,3.203,0.13,1.568,0.132,5.473,0.134,0.143,4.521,0.173,0.15,4.955,0.138,0.117,0.126,3.74,0.136,2.852,3.421,0.506,5.503,0.687,1.225,4.218,0.581 +NM_004263,0.841,1.111,0.97,0.979,0.886,0.9,0.823,0.776,1.005,0.827,0.854,0.896,0.989,0.99,0.836,0.925,0.868,0.971,1.086,0.994,1.007,0.938,1.224,0.892,0.923,0.957,0.962,0.891,0.786,1.157,1.046,1.562,1.34,1.123,0.824,1.028,0.978,1.006,1.281,1.285,0.826,1.018,0.998,1.328,0.899,1.042,1.084,0.824,0.819,0.904,0.988,1.011,0.944,1.286 +NM_004264,0.957,1.008,1.461,0.888,1.179,1.272,1.177,1.404,0.936,0.78,1.094,1.219,1.125,0.941,1.03,1.269,1.076,1.091,0.797,0.984,0.758,1.375,0.954,1.404,0.87,0.803,1.574,1.063,0.946,1.062,1.306,1.211,1.883,0.936,0.749,0.909,0.998,1.441,1.423,0.896,1.052,0.924,0.907,1.17,1.193,0.889,1.149,1.097,1.142,0.861,1.16,0.867,0.837,1.005 +NM_004265,0.839,1.008,1.054,0.861,0.797,1.119,1.193,0.716,0.909,0.849,1.948,0.893,0.834,0.723,0.927,0.831,0.934,1.052,1.114,0.977,0.908,0.791,1.309,1.123,1.124,1.071,0.961,0.938,0.967,1.34,1.071,3.614,2.669,1.111,0.764,1.091,0.947,0.826,1.01,2.96,1.009,1.142,0.802,0.81,0.95,0.843,1.564,0.92,0.77,0.808,1.028,1.083,0.821,1.245 +NM_004267,1.03,0.946,1.053,1.008,0.835,0.961,0.925,0.8,1.048,0.912,1.16,0.957,0.907,0.967,1.007,0.886,1.083,0.936,0.861,1.093,0.878,1.014,0.914,0.921,1.007,1.031,1.154,1.1,1.155,1.091,0.859,1.026,1.01,0.983,1.06,1.074,0.951,1.073,1.037,0.963,1.068,1.006,1.028,0.909,0.967,0.893,0.97,1.098,0.991,1.033,1.062,1.046,0.908,0.939 +NM_004268,0.92,0.987,1.106,1.002,0.935,1.024,0.882,0.998,0.862,0.977,1.053,0.948,1.137,1.178,1.062,0.934,0.959,0.922,0.868,1.089,0.974,0.902,1.062,0.902,0.94,0.958,0.917,0.991,0.818,1.084,0.974,1.08,1.397,1.234,0.923,0.995,0.884,1.081,1.086,0.962,1.118,0.919,0.944,1.137,0.868,0.953,0.914,0.914,0.966,0.968,1.083,0.995,0.97,1.092 +NM_004269,0.778,1.07,1.155,0.727,0.978,0.879,0.61,0.483,1.282,1.437,0.852,1.035,0.741,0.662,0.872,1.253,0.959,0.919,1.227,0.89,0.536,0.904,1.194,1.307,0.639,0.962,1.226,0.942,0.588,0.99,0.903,1.526,2.094,1.134,0.287,1.299,0.939,0.982,1.637,1.033,1.368,0.969,0.906,1.651,1.403,1.008,1.114,0.928,1.015,0.903,0.856,1.221,1.208,1.976 +NM_004270,0.812,0.971,1.213,0.919,1.002,1.023,0.678,0.685,1.275,0.994,1.206,0.769,0.71,0.793,1.051,1.346,0.814,0.968,1.354,0.971,0.708,1.084,1.038,0.879,0.778,0.923,1.058,0.871,0.733,1.031,1.059,1.014,2.446,1.28,0.862,0.893,0.996,0.841,1.121,0.7,1.01,1.001,0.636,0.687,0.872,1.031,0.876,0.999,0.998,0.86,0.99,0.866,1.19,1.499 +NM_004271,0.977,1.021,1.084,0.949,0.976,0.955,1.008,0.93,0.95,0.864,0.813,0.96,1.284,0.74,0.924,1.008,1.126,1.05,0.972,0.869,0.988,0.883,1.086,0.961,0.892,0.924,1.07,0.889,0.788,1.351,0.855,2.161,1.103,1.062,0.862,0.786,0.93,1.072,1.333,1.257,0.996,1.236,0.794,0.919,0.996,0.713,0.915,0.978,0.784,0.934,0.89,1.457,1.281,1.471 +NM_004272,0.922,0.84,1.167,0.877,1.108,0.784,0.79,0.647,1.32,1.372,0.963,1.09,1.031,0.861,0.719,0.823,1.125,0.992,1.374,0.982,0.873,1.018,1.009,1.327,0.86,1.052,1.542,1.046,0.88,0.891,1.204,1.319,1.682,1.028,0.878,0.786,0.797,1.056,1.181,0.938,1.122,0.992,0.792,1.086,1.216,0.817,0.976,0.913,0.796,1.344,0.856,1.185,1.226,1.317 +NM_004273,1.009,1.053,1.064,0.997,0.998,0.83,0.841,0.83,0.858,1.154,0.769,0.931,1.037,0.802,0.796,0.833,1.126,0.931,1.153,0.835,1.124,1.047,1.069,1.027,1.427,1.151,1.125,0.913,0.835,0.947,0.897,1.568,1.063,1.052,0.667,0.896,0.831,1.186,0.918,1.482,1.006,0.906,0.908,1.242,1.143,0.801,0.919,0.981,0.7,1.157,0.8,1.271,1.362,1.831 +NM_004275,0.778,1.058,1.222,0.765,0.852,1.095,0.675,0.464,1.007,0.83,1.052,0.932,0.75,0.797,0.906,1.153,0.959,0.948,1.007,1.193,0.527,0.847,1.203,0.951,0.704,0.768,1.542,0.801,0.469,1.348,0.986,1.424,1.376,1.308,0.48,1.162,1.206,0.797,1.249,0.992,1.071,0.964,0.608,1.312,0.992,0.997,0.939,0.763,0.917,0.819,1.043,0.752,0.712,2.044 +NM_004276,0.893,1.065,0.941,1.033,1.01,1.002,0.883,0.908,1.07,0.906,0.939,0.9,1.073,0.825,0.88,0.959,0.973,0.905,0.826,0.988,0.937,0.923,1.099,0.832,1.264,0.944,0.993,0.964,0.791,1.022,0.905,1.083,0.997,1.185,0.848,1.065,0.897,1.035,1.042,1.03,1.17,0.947,0.916,0.977,1.081,0.882,1.133,1.153,1.08,0.779,1.089,0.998,0.934,1.771 +NM_004278,0.923,1.016,0.875,0.828,0.93,0.9,0.89,0.934,0.98,1.237,1.053,0.944,0.92,1.339,0.957,1.018,0.926,1.205,0.983,1.234,0.861,0.956,1.21,0.98,0.91,0.91,0.979,0.926,0.887,0.844,0.872,0.882,0.995,0.872,1.046,1.189,1.122,1.079,1.056,1.005,1.016,1.185,1.025,1.183,1.063,0.988,0.916,0.948,1.066,0.948,0.956,1.116,1.098,1.354 +NM_004280,0.694,1.282,1.129,0.923,0.817,1.427,0.647,0.801,1.492,1.085,1.452,1.222,0.915,0.649,0.943,1.977,0.813,0.937,1.469,0.811,0.576,0.894,1.278,1.473,0.732,0.738,1.478,0.917,0.533,1.084,1.049,0.976,3.96,1.334,0.332,1.016,1.536,0.944,1.37,0.863,1.102,0.846,0.576,1.278,0.976,0.932,0.943,0.73,0.837,0.759,0.904,1.064,1.025,2.723 +NM_004282,0.888,1.33,0.886,0.911,0.791,1.078,0.892,0.845,0.784,0.836,1.053,0.813,0.834,0.813,0.994,0.91,1.039,0.935,0.802,0.91,0.936,0.752,0.995,0.807,0.977,0.784,0.8,1.017,0.978,0.958,0.806,2.118,2.964,1.349,0.811,2.446,1.077,1.013,1.298,0.905,1.076,1.324,1.011,1.802,0.9,1.065,0.885,0.764,0.929,0.891,1.144,1.012,0.802,3.56 +NM_004283,1.176,0.942,1.105,1.037,0.912,1.151,0.953,0.873,0.919,1.062,1.061,0.939,1.042,0.951,1.074,1.098,0.922,1.08,1.305,0.922,0.898,1.042,1.013,1.142,0.863,1.105,1.074,0.804,0.968,1.066,0.948,0.855,0.87,1.039,0.797,0.8,0.99,1.017,1.387,0.859,1.077,1.104,0.772,1.022,1.174,0.907,0.94,1.039,0.776,1.169,0.99,1.02,0.968,1.004 +NM_004285,0.943,1.211,1.075,1.076,1.08,1.107,0.892,1.019,0.975,0.982,0.992,0.976,0.904,1.051,0.738,0.79,0.984,0.963,1.001,1.058,0.893,0.98,0.926,1.044,1.1,0.871,0.994,1.01,0.824,1.013,1.018,1.108,0.972,1.059,0.982,0.999,0.949,0.91,1.089,0.85,1.092,1.03,1.041,1.107,1.064,1.086,1.047,0.882,1.08,1.162,1.062,0.984,1.018,0.949 +NM_004286,0.947,1.045,0.933,1.135,0.984,1.01,0.734,1.147,1.023,1.119,0.911,0.972,0.788,0.682,0.923,0.847,0.875,1.029,0.995,1.022,0.982,1.12,1.132,1.017,1.193,1.082,1.128,1.029,1.295,0.786,0.914,1.129,1.05,1.007,1.233,0.974,0.733,1.138,1.141,1.038,0.722,0.957,0.93,1.087,1.118,0.996,1.047,1.058,1.099,0.946,1.008,0.799,0.941,0.912 +NM_004287,1.693,1.756,1.9769999999999999,1.836,1.7639999999999998,2.199,2.154,1.058,1.848,2.098,2.325,1.879,1.2930000000000001,1.2770000000000001,1.6989999999999998,2.316,1.838,1.97,2.392,1.6179999999999999,1.383,1.7349999999999999,1.9620000000000002,2.582,1.712,1.694,1.95,1.658,1.528,2.2169999999999996,1.772,2.159,2.917,2.178,1.267,1.702,2.385,1.8159999999999998,2.741,1.4969999999999999,2.184,2.091,2.0549999999999997,3.0250000000000004,2.053,2.276,2.7969999999999997,1.851,2.383,1.7610000000000001,2.1,2.1849999999999996,2.0020000000000002,2.818 +NM_004288,0.555,1.574,0.885,1.332,0.683,2.248,1.754,0.6,0.577,0.576,1.33,0.621,0.687,0.494,0.735,0.787,0.651,1.128,0.6,1.596,0.655,0.639,0.993,0.695,1.788,0.574,0.927,0.629,1.271,2.165,0.698,1.083,0.697,3.238,0.472,0.583,1.887,0.624,1.779,2.604,0.775,1.364,0.655,0.667,0.722,1.683,0.678,0.551,0.69,0.575,1.447,1.107,1.007,1.445 +NM_004289,0.663,1.647,0.81,0.593,0.654,1.086,0.758,0.503,0.989,0.6,1.214,0.654,0.687,0.668,1.104,1.369,0.613,0.691,0.774,0.98,0.636,0.629,1.858,0.74,0.756,0.599,0.932,0.74,0.534,0.948,0.651,2.19,6.526,1.273,0.612,1.877,1.132,0.536,1.303,2.478,0.859,1.092,0.82,2.815,0.828,1.081,1.755,0.612,1.109,0.657,1.031,2.263,0.737,6.389 +NM_004291,0.907,0.934,0.94,1.117,0.985,1.046,0.825,1.048,1.023,0.939,1.011,0.938,0.954,1.069,1.133,1.24,1.052,1.009,0.883,1.025,1.027,0.914,1.149,1.02,1.112,1.001,1.032,0.983,0.817,0.968,1.023,0.952,0.857,1.047,0.999,1.056,1.055,0.858,0.918,1.005,1.026,1.068,0.899,0.86,1.133,0.933,0.888,0.921,1.022,1.123,1.038,0.909,1.028,1.091 +NM_004292,0.985,0.883,1.07,0.876,1.029,0.893,0.781,0.788,1.004,0.937,0.912,1.038,1.015,0.911,0.783,1.125,1.097,0.982,1.365,0.866,1.193,1.114,1.142,1.134,0.688,1.286,1.123,1.011,1.283,0.987,0.966,0.897,1.446,1.018,0.695,1.76,0.775,1.211,1.394,0.903,0.961,0.896,0.872,1.456,0.922,0.762,0.864,1.118,0.952,1.1,0.963,0.856,0.94,1.07 +NM_004293,0.881,1.021,0.892,0.993,0.846,1.381,1.074,0.904,0.92,0.957,1.26,0.869,0.799,0.829,1.649,2.328,0.843,1.035,0.792,1.369,0.829,0.827,1.159,0.865,0.858,0.835,0.868,0.894,0.8,1.275,0.944,0.872,1.212,1.167,1.069,0.93,1.55,0.785,1.43,1.061,0.855,1.157,1.273,1.252,0.803,1.41,1.205,0.831,1.617,0.781,1.223,1.11,0.818,1.079 +NM_004295,0.77,0.848,0.821,1.1,0.97,1.188,0.863,0.761,0.772,0.917,1.213,0.671,0.99,1.036,0.812,1.126,0.982,1.076,0.879,1.008,0.827,0.856,1.156,0.836,0.854,1.083,0.981,0.792,0.992,1.146,0.904,1.318,0.971,1.333,1.228,0.935,1.096,0.969,1.879,1.026,0.971,0.926,0.93,1.923,0.791,1.087,1.06,1.023,0.954,0.952,1.02,0.819,0.772,1.038 +NM_004297,1.11,0.96,0.881,0.955,0.949,0.811,0.937,0.921,1.128,0.861,1.093,0.871,0.961,0.922,1.063,1.185,1.261,0.944,0.985,1.007,0.943,0.899,1.628,0.82,0.835,0.874,0.976,1.021,1.086,1.001,0.979,1.085,1.057,0.846,0.898,1.02,1.047,1.037,1.413,1.244,0.977,0.958,0.739,1.245,1.088,1.228,0.9,1.021,1.279,0.778,1.286,1.063,1.116,0.948 +NM_004298,2.026,1.741,2.208,1.678,1.943,2.005,1.9449999999999998,1.762,2.028,1.866,1.9739999999999998,2.0,1.876,1.907,2.084,2.245,1.763,1.8849999999999998,2.088,1.989,1.634,1.939,2.168,2.064,1.737,1.87,2.4509999999999996,1.726,1.989,2.007,1.9689999999999999,2.189,5.890000000000001,1.935,1.638,1.9729999999999999,2.072,1.962,2.742,2.323,2.1,1.9129999999999998,2.045,3.431,2.059,1.746,2.107,1.9060000000000001,2.1319999999999997,1.861,1.976,2.2039999999999997,2.042,3.59 +NM_004299,0.665,1.126,1.173,0.61,0.984,1.229,0.732,0.762,1.351,1.001,1.112,0.979,0.678,0.675,0.987,1.594,0.934,0.853,0.968,1.081,0.619,0.945,1.13,1.149,0.504,0.609,1.355,1.044,0.485,1.314,0.944,1.155,2.64,1.194,0.481,0.904,1.028,1.143,0.979,0.918,1.211,1.099,0.745,0.858,0.793,1.144,1.414,0.598,1.335,0.728,0.952,0.97,0.848,1.362 +NM_004300,0.798,0.667,1.122,0.856,0.996,0.978,0.524,0.495,1.001,0.817,1.159,0.671,0.643,0.64,0.829,1.362,1.086,0.704,1.456,0.902,0.755,0.687,1.387,1.129,0.499,0.845,1.134,0.798,0.41,0.886,0.923,0.821,4.201,1.095,0.383,1.155,1.207,0.725,1.374,0.96,1.294,0.751,0.719,1.964,0.765,1.106,1.578,0.787,1.584,1.027,1.075,0.932,1.174,2.93 +NM_004302,0.62,1.006,1.46,0.623,0.753,1.185,0.74,0.416,1.032,0.716,1.292,0.445,0.521,0.833,1.09,1.455,1.047,0.804,1.032,1.665,0.462,0.59,1.685,0.618,0.785,0.751,1.016,0.715,0.492,1.734,0.991,1.105,0.928,1.649,0.42,0.744,1.305,0.626,1.002,0.998,0.887,1.519,0.584,0.955,1.052,1.192,0.877,0.577,0.815,0.908,1.255,0.753,0.794,1.026 +NM_004304,1.069,1.147,0.972,0.971,0.921,1.043,0.766,0.865,0.88,1.078,0.946,0.992,1.05,1.164,1.012,0.896,0.983,0.977,0.783,0.949,1.024,1.099,0.899,0.844,1.084,1.095,0.975,0.783,0.898,1.069,0.958,1.005,1.084,0.994,1.114,1.003,0.884,0.892,1.043,1.022,0.938,0.921,1.019,1.08,1.001,1.025,0.891,1.154,0.993,0.96,1.023,0.811,1.041,0.934 +NM_004306,0.899,1.077,0.739,0.997,0.864,1.028,0.986,1.18,0.981,0.81,3.486,0.843,0.814,0.866,2.688,14.22,0.92,0.888,0.903,3.454,0.84,0.881,6.48,0.831,0.913,0.929,0.926,0.881,0.936,0.973,0.843,0.972,2.589,0.858,0.857,15.81,3.076,0.883,2.633,1.625,0.971,1.579,2.128,1.257,0.902,14.34,2.897,0.906,2.24,0.91,4.884,1.208,0.903,1.326 +NM_004308,0.626,0.846,1.641,0.603,1.006,1.002,0.521,0.451,1.437,1.32,0.974,0.765,0.364,0.839,1.046,1.006,1.224,0.875,1.324,1.318,0.531,0.907,1.208,0.908,0.455,0.71,1.607,0.98,0.474,1.633,0.998,1.909,1.713,1.363,0.295,0.909,0.765,1.057,0.968,0.547,1.288,1.065,0.719,0.824,1.064,1.278,0.961,0.649,0.919,0.737,1.443,0.701,1.233,1.221 +NM_004309,0.7,0.642,0.904,0.871,0.666,1.521,0.832,0.78,0.73,0.848,1.112,0.643,0.781,0.455,0.995,2.416,0.899,1.198,1.294,1.083,0.684,0.954,1.335,0.907,0.783,1.044,1.005,0.615,0.697,0.969,1.082,1.052,1.677,1.558,0.701,0.923,1.038,0.794,2.619,0.931,0.677,1.231,0.505,1.489,1.117,0.859,0.765,0.976,1.168,1.11,1.164,0.599,0.994,1.05 +NM_004310,0.858,0.927,1.013,0.979,0.991,0.909,0.857,0.883,0.986,0.911,0.84,0.875,0.947,0.945,0.951,0.795,0.962,0.997,0.959,0.946,1.019,0.957,0.987,0.991,0.952,1.02,1.187,0.901,0.605,1.0,0.95,1.195,0.882,1.152,1.132,0.981,1.059,0.91,1.132,1.805,1.022,1.089,0.922,0.96,1.06,1.01,0.876,1.151,0.806,0.924,0.99,1.051,1.23,1.248 +NM_004312,0.947,1.031,0.912,1.108,0.878,1.13,1.033,1.09,1.152,0.966,1.127,1.023,1.117,0.926,0.935,0.891,1.061,1.02,1.177,0.991,0.984,0.893,1.126,1.033,0.925,0.808,0.958,0.779,1.133,1.013,0.995,0.903,1.137,0.939,1.127,0.773,0.932,0.914,1.048,1.089,1.051,1.088,1.134,0.947,1.108,0.898,1.04,0.915,0.984,1.303,0.982,0.85,1.057,1.179 +NM_004313,1.047,1.054,0.996,0.959,1.0,1.063,0.883,1.001,0.942,1.099,0.887,0.98,0.983,0.843,0.929,1.157,0.937,1.078,0.803,1.06,0.88,0.88,1.067,0.966,1.138,1.0,0.987,0.949,0.677,1.122,0.985,1.37,1.235,1.042,0.944,0.919,1.013,0.963,1.209,1.264,0.917,0.959,0.834,1.076,0.963,1.122,1.131,0.991,1.08,1.032,0.957,0.97,1.005,1.192 +NM_004314,1.056,0.96,1.048,1.012,1.108,1.077,0.965,1.077,0.802,0.945,0.926,0.865,0.976,0.914,1.018,1.008,1.002,0.964,1.072,1.072,1.062,1.123,1.118,1.06,1.068,0.897,0.86,1.074,0.928,1.084,1.099,1.028,0.809,1.001,1.009,0.989,1.003,1.009,1.01,1.104,1.034,1.116,0.917,1.03,1.023,0.915,1.154,0.924,0.829,1.139,1.06,0.968,0.987,0.981 +NM_004315,1.041,0.985,0.973,1.017,1.019,0.917,0.988,1.042,0.885,0.95,0.949,0.967,0.872,0.934,1.128,1.072,1.138,1.049,0.996,1.132,1.084,1.009,1.006,1.004,1.104,0.993,1.067,0.984,0.994,1.044,1.082,1.002,0.952,0.921,1.129,0.93,0.973,0.993,1.027,1.106,1.002,1.135,1.009,0.98,0.895,0.947,1.055,0.976,0.947,0.894,0.941,1.128,0.949,0.964 +NM_004317,1.001,0.93,1.022,1.105,0.729,1.251,0.667,1.012,0.945,0.849,1.306,0.987,1.355,0.696,0.979,1.277,0.973,1.0,1.541,0.8,0.887,0.935,1.353,0.967,0.811,1.296,1.077,0.832,0.675,0.858,0.884,1.001,1.475,1.209,0.568,0.712,0.993,0.879,1.72,0.792,0.965,0.972,0.847,1.55,1.061,0.809,0.798,1.239,0.711,1.171,0.915,1.013,1.045,1.332 +NM_004318,1.084,0.949,1.062,0.999,1.067,1.019,1.141,0.927,0.936,1.038,0.842,1.11,0.991,1.063,0.834,0.991,1.035,1.091,0.982,0.927,0.981,1.092,1.155,0.924,0.953,0.965,1.001,1.009,1.017,1.087,1.045,1.019,0.999,0.967,1.068,1.092,1.039,0.915,1.062,0.983,1.15,1.065,0.99,1.168,1.018,1.113,0.954,0.928,1.027,0.943,0.982,1.136,1.136,1.011 +NM_004321,0.969,1.069,0.881,0.92,0.97,0.907,0.841,0.864,0.952,1.018,1.014,0.914,1.078,1.022,0.97,1.071,1.017,1.038,0.97,0.92,1.058,0.995,1.114,1.088,1.126,1.104,0.997,1.071,1.106,0.936,0.999,1.123,0.974,1.099,1.003,1.075,0.99,0.943,0.966,1.014,0.956,1.102,1.129,0.907,1.158,0.94,0.917,1.028,1.013,1.037,0.95,1.205,1.11,1.076 +NM_004322,0.9,1.161,0.856,1.067,1.146,1.141,0.94,0.949,1.078,0.991,0.926,0.974,0.911,1.047,1.066,0.96,0.986,1.008,1.046,1.018,0.837,1.001,0.978,0.815,1.0,0.955,1.022,0.87,1.188,0.969,0.885,1.029,0.94,1.021,1.056,0.849,0.987,1.0,1.046,1.143,0.903,1.01,1.056,1.037,0.903,0.891,0.852,1.121,0.946,1.089,1.13,0.891,0.902,1.045 +NM_004323,0.767,0.726,1.312,0.872,0.764,1.532,0.533,0.71,1.165,0.924,1.292,0.969,0.847,0.685,1.231,1.483,0.638,0.846,0.972,1.504,0.45,0.722,1.293,1.15,1.049,0.991,0.96,0.898,0.568,1.278,1.004,1.15,0.963,1.514,0.939,0.682,0.943,1.069,1.0,0.536,1.155,1.163,0.838,1.143,1.0,1.114,0.755,0.78,0.654,0.795,1.046,1.108,0.838,3.245 +NM_004324,1.068,1.065,1.037,0.872,0.881,1.054,0.826,1.073,1.013,0.877,0.795,0.915,0.892,0.864,1.191,0.823,1.048,1.075,1.115,0.954,1.061,1.057,1.14,0.973,1.186,0.867,0.979,0.908,1.032,0.889,0.798,0.916,0.901,0.977,0.932,1.096,1.056,0.804,1.115,0.819,1.225,1.088,1.122,1.211,1.001,1.098,1.026,0.94,1.03,1.124,0.962,0.947,1.008,0.745 +NM_004327,0.969,1.17,0.996,0.95,1.037,0.985,0.879,0.986,1.242,1.081,0.961,0.939,0.916,0.935,1.047,1.028,1.075,1.147,1.361,0.991,0.956,0.818,0.885,0.995,0.895,0.984,0.978,1.045,0.892,0.985,1.068,1.109,1.122,1.036,0.924,0.819,0.986,1.048,1.223,1.035,0.976,1.206,0.899,0.973,0.988,0.971,0.97,0.961,1.038,0.91,0.948,1.121,0.958,0.946 +NM_004328,0.958,0.903,0.937,1.041,0.916,0.988,0.769,0.689,1.169,1.017,0.962,1.105,0.902,0.93,0.843,1.028,1.025,0.893,1.133,0.935,1.004,0.922,1.199,1.229,0.845,0.913,1.21,0.869,0.691,0.981,0.935,1.333,2.351,1.14,0.648,1.046,1.005,0.936,1.293,0.953,1.109,1.018,0.825,1.435,1.091,0.964,1.047,1.015,0.944,0.839,0.861,0.791,1.058,1.898 +NM_004329,0.792,1.261,1.229,0.915,0.821,1.023,0.82,0.744,1.001,0.939,1.118,0.763,0.871,0.8,0.913,1.197,0.856,0.886,0.879,1.093,0.894,0.85,1.235,0.932,0.868,0.899,0.972,0.966,0.835,1.106,0.885,1.501,1.244,1.344,0.786,1.041,1.163,0.799,1.183,1.022,0.942,1.243,0.891,1.216,0.957,0.989,1.02,0.795,0.925,0.945,1.063,0.775,1.015,1.232 +NM_004330,0.874,0.885,1.807,0.902,1.147,0.852,0.78,0.952,1.387,1.281,0.812,1.028,0.991,0.985,1.202,0.964,1.106,0.97,1.585,0.729,0.914,1.272,0.924,1.358,0.675,1.096,2.183,1.212,0.403,0.795,1.24,1.17,1.762,1.026,0.557,0.885,0.747,1.096,0.972,1.325,1.369,0.911,0.609,1.004,1.345,0.729,0.982,1.13,0.787,1.256,0.801,1.182,1.643,2.095 +NM_004331,1.073,0.691,1.397,0.664,1.776,0.87,0.5,1.661,2.361,1.242,0.736,1.21,0.879,0.966,1.173,1.029,1.028,1.084,2.196,0.672,0.9,1.183,0.709,1.388,0.491,1.119,1.242,2.128,0.295,0.932,1.602,1.236,1.288,1.02,1.587,0.458,0.936,2.047,0.699,1.104,1.308,0.853,0.487,0.596,1.143,1.057,1.326,0.909,0.616,1.191,0.911,0.818,0.915,0.776 +NM_004332,0.824,1.081,1.002,0.756,0.941,1.609,0.804,0.594,1.041,0.874,1.415,0.733,0.811,0.832,1.083,1.532,0.748,0.937,0.988,1.156,0.641,0.935,1.074,0.865,0.787,0.775,1.076,0.796,0.832,1.435,0.868,0.886,1.829,1.529,0.489,0.7,1.569,0.901,1.003,0.756,0.954,1.401,1.084,1.13,1.058,1.394,1.232,0.689,1.0,0.788,1.161,0.852,0.776,1.003 +NM_004334,0.908,1.009,0.942,1.16,0.923,1.007,1.047,0.789,0.965,1.125,1.014,0.898,0.942,1.054,0.992,1.025,0.946,1.074,1.035,1.004,0.944,0.739,1.0,1.107,0.926,0.907,0.852,0.778,1.2,1.071,0.9,0.994,0.935,1.084,1.149,0.905,1.207,1.072,1.065,0.947,1.049,1.177,1.047,1.348,0.858,1.211,0.926,0.896,1.023,0.919,1.141,0.965,1.074,1.001 +NM_004335,0.954,0.999,1.759,0.678,0.512,1.233,2.329,0.481,0.579,0.5,1.98,0.545,0.404,0.484,1.258,1.702,1.392,1.035,0.465,0.779,1.442,0.448,2.526,1.114,0.598,0.98,0.8,0.478,0.616,1.336,0.464,1.684,3.616,1.547,0.445,0.707,1.355,0.564,1.342,2.322,0.721,1.28,1.107,2.427,1.158,2.233,0.929,0.574,0.997,0.64,0.778,3.309,1.867,3.141 +NM_004337,1.042,1.033,0.988,0.956,0.973,1.011,0.915,1.052,0.939,0.677,1.001,0.964,0.935,0.966,0.96,1.197,0.899,1.052,1.007,1.016,0.785,0.773,1.194,1.059,0.924,0.902,0.934,0.892,0.964,1.016,0.878,1.084,1.134,1.073,0.805,1.284,1.02,0.853,1.03,1.167,0.983,1.106,1.054,0.984,0.964,1.084,0.958,0.896,0.997,0.845,0.978,1.136,0.886,1.144 +NM_004338,0.666,1.399,0.856,0.833,0.805,1.022,1.015,0.891,0.873,0.746,1.282,0.714,0.907,0.871,0.862,1.698,0.847,0.914,0.77,1.203,0.727,0.829,1.11,0.77,1.001,0.704,0.921,0.922,0.665,0.999,0.762,2.666,1.702,1.333,0.718,1.281,1.037,0.864,1.034,1.157,0.988,1.135,1.285,0.955,0.835,1.123,1.03,0.803,1.011,0.716,1.122,1.066,0.839,0.92 +NM_004339,0.335,1.742,0.885,0.743,0.49,1.664,1.002,0.361,0.662,0.52,1.361,0.44,0.529,0.389,0.831,2.067,0.745,1.336,0.861,1.653,0.288,0.527,1.349,0.641,1.07,0.471,0.536,0.466,0.945,2.059,0.573,1.678,1.45,2.124,0.431,0.685,1.743,0.731,1.653,1.55,0.722,1.476,0.85,0.834,0.514,1.269,0.97,0.595,0.675,0.453,1.32,0.676,0.469,1.108 +NM_004343,0.667,0.862,0.803,0.886,0.686,1.412,1.032,0.571,0.692,0.814,1.222,0.564,0.544,0.49,0.935,2.664,0.74,1.206,1.273,1.04,0.584,1.014,2.072,0.805,0.88,0.733,1.205,0.585,0.689,1.236,0.9,1.052,1.596,1.48,0.214,1.136,1.234,0.781,1.977,1.046,0.76,1.376,0.661,1.381,0.878,0.969,0.802,0.795,1.219,0.859,1.668,0.952,0.907,1.633 +NM_004344,0.892,0.908,1.362,0.683,1.043,1.093,0.478,0.589,1.013,1.082,1.045,1.318,0.85,0.686,0.867,1.381,0.986,0.902,1.234,0.836,0.567,0.686,1.134,1.289,0.546,0.801,1.375,1.075,0.296,1.113,0.87,1.543,2.144,1.311,0.277,0.83,0.989,1.0,1.036,0.417,1.367,0.936,0.519,1.542,1.121,0.921,1.095,0.709,0.695,1.0,1.248,1.098,1.188,1.252 +NM_004345,1.117,1.093,0.941,1.172,0.928,0.884,1.07,1.151,1.054,0.953,0.997,0.982,1.023,0.959,0.874,1.02,1.058,0.95,0.939,1.075,0.954,0.873,0.795,1.002,0.966,0.948,1.058,1.108,0.714,1.006,0.914,1.02,1.06,1.07,0.966,1.05,1.055,0.926,1.127,1.49,0.905,2.612,1.086,0.989,0.988,0.805,1.128,0.974,1.011,1.125,0.964,1.381,1.027,1.03 +NM_004346,0.949,0.962,1.181,1.074,1.001,0.972,1.11,0.994,1.048,0.961,0.918,0.952,1.061,0.855,0.961,1.173,0.96,1.022,0.997,1.031,1.102,0.956,0.9,0.902,0.926,0.989,0.993,0.99,0.9,1.085,1.043,0.999,0.96,1.065,1.093,1.009,0.951,1.003,1.048,1.113,0.964,1.087,0.992,0.992,1.1,0.983,1.065,0.977,0.947,1.018,1.069,0.908,1.069,0.91 +NM_004347,0.895,1.096,0.887,1.057,1.01,1.102,0.709,0.84,0.841,1.026,1.04,0.915,0.883,1.003,1.609,1.479,1.05,0.927,0.794,0.97,0.77,0.859,0.947,0.926,0.902,0.917,0.984,1.029,0.938,1.009,0.917,0.95,0.792,1.026,0.895,1.879,1.537,0.948,1.131,1.662,0.872,1.058,1.595,0.987,0.841,1.352,1.617,0.915,2.89,1.026,0.996,1.199,0.841,0.909 +NM_004348,0.966,1.016,1.018,1.176,0.937,0.97,1.08,1.113,0.945,0.906,1.003,0.923,0.975,1.15,0.822,1.112,0.996,1.118,0.975,1.064,0.963,1.067,1.039,1.028,0.965,1.083,0.833,0.925,0.794,1.054,1.104,0.973,1.04,1.088,1.035,0.944,0.959,0.932,0.989,1.015,0.933,1.079,1.291,1.009,0.955,0.86,1.04,0.969,1.04,1.094,1.002,0.904,1.178,1.148 +NM_004349,1.031,1.017,0.936,0.987,0.997,1.07,1.009,1.154,0.969,0.892,1.112,0.965,1.032,0.916,1.453,1.129,0.919,0.999,0.98,1.106,0.978,0.895,0.918,1.064,1.103,1.135,1.077,1.079,1.179,1.062,1.069,1.021,1.024,1.085,1.044,1.108,0.979,0.927,0.964,1.0,1.026,0.863,1.151,0.931,0.972,0.821,1.038,1.051,1.078,0.958,1.157,0.897,1.0,1.079 +NM_004350,0.714,1.267,1.416,0.788,0.885,1.0,0.874,0.571,1.027,0.774,0.649,0.719,0.746,0.69,1.365,0.721,1.321,0.804,0.849,0.845,0.782,0.949,1.521,0.801,0.777,0.663,2.029,0.834,0.575,1.274,1.056,1.228,2.293,1.035,0.441,1.662,0.907,0.892,1.459,1.521,1.186,1.485,0.933,1.955,1.012,0.617,0.688,0.622,0.713,0.949,0.744,1.282,1.395,2.304 +NM_004352,1.099,1.076,1.087,0.907,0.978,1.133,1.084,1.031,0.783,1.007,0.902,0.926,1.092,1.019,1.124,1.002,1.072,0.998,1.028,0.944,1.014,1.014,1.037,0.997,0.983,0.961,1.007,0.966,0.936,0.906,0.945,0.932,1.005,1.046,1.108,0.992,1.136,1.063,0.963,0.843,1.154,0.975,1.073,0.949,0.98,0.93,0.963,0.898,1.013,0.894,1.006,0.989,1.041,0.939 +NM_004354,2.721,0.877,2.586,1.195,3.192,0.843,0.577,1.975,2.409,1.284,0.91,1.567,1.756,1.31,1.671,0.973,2.115,2.117,2.993,0.959,0.997,1.104,0.86,1.73,0.695,1.704,2.251,2.438,0.56,0.963,2.49,0.853,0.986,0.903,3.748,0.691,1.003,2.662,0.868,0.818,2.499,0.847,0.711,0.648,2.391,1.043,1.7,2.085,1.132,1.984,1.102,0.857,1.519,0.786 +NM_004355,0.852,1.33,0.971,0.837,0.471,1.108,1.281,0.295,0.586,0.49,0.591,0.337,0.649,0.307,0.749,0.713,0.655,0.45,0.566,0.717,0.778,0.616,1.007,0.665,1.003,0.841,1.138,0.443,0.16,1.357,0.529,2.459,0.939,1.87,0.0869,0.228,0.992,0.479,2.759,0.656,0.667,1.876,0.441,1.909,0.912,0.551,0.351,0.507,1.01,1.175,0.937,2.011,2.623,2.956 +NM_004356,0.688,1.688,1.076,0.621,0.858,0.765,0.66,0.28,0.889,1.156,0.644,1.087,0.454,0.423,0.604,0.88,0.861,0.857,0.999,1.27,0.438,0.537,1.617,1.037,0.811,0.905,1.62,0.635,0.325,1.86,0.615,2.52,1.554,1.692,0.131,1.251,0.778,0.956,1.015,1.587,0.924,1.824,0.626,0.668,0.993,1.053,1.343,0.63,0.734,0.814,1.166,1.422,1.078,1.629 +NM_004357,0.729,1.253,0.721,1.144,0.709,0.927,0.791,0.583,0.719,0.697,1.428,0.599,0.594,0.744,0.76,1.507,0.694,1.407,0.824,0.967,0.787,0.609,1.294,0.594,1.003,0.892,0.675,0.725,0.698,2.065,0.604,1.129,0.792,2.262,0.658,1.346,1.319,0.708,1.808,0.86,0.723,1.608,0.808,2.377,0.622,1.05,1.208,0.651,1.139,0.716,1.324,0.947,0.664,0.896 +NM_004359,0.923,0.856,0.915,0.909,1.048,1.654,0.529,0.978,1.023,0.942,0.958,1.091,1.048,0.817,1.024,1.305,1.438,0.91,1.247,0.712,0.974,1.49,0.899,1.322,0.822,1.188,1.159,0.864,0.952,1.148,1.09,0.899,1.841,1.146,1.502,0.767,0.985,1.826,1.405,1.956,1.1,0.983,0.784,1.622,0.957,0.884,1.126,1.555,0.846,0.933,0.887,0.656,0.873,1.239 +NM_004360,0.685,1.07,1.208,0.579,0.911,0.899,0.59,0.155,0.91,1.003,2.093,0.247,0.188,0.634,0.989,1.9,0.627,0.987,1.188,1.267,0.466,0.484,1.634,0.571,0.614,0.655,0.999,0.712,0.42,1.381,0.785,0.825,1.039,1.332,0.0782,0.528,1.796,0.721,1.746,0.573,0.896,1.49,0.98,0.877,1.033,1.755,1.226,0.579,1.226,1.001,1.467,0.738,0.925,1.274 +NM_004361,1.191,1.143,0.964,0.994,0.992,1.021,1.038,0.986,0.979,0.963,1.116,1.147,0.897,1.086,0.858,1.023,1.16,0.851,1.042,1.056,1.052,1.036,1.008,0.959,1.135,1.05,0.995,1.148,1.1,0.979,1.054,0.949,0.949,0.976,0.929,1.222,1.044,1.068,1.106,1.019,0.967,1.124,0.889,1.137,0.997,1.198,0.941,1.138,0.954,1.068,0.915,1.087,0.99,0.919 +NM_004362,1.032,0.98,0.986,1.041,1.0,0.983,1.037,1.248,0.924,1.032,0.938,0.931,1.044,0.951,1.122,1.122,0.997,1.021,1.078,0.852,1.08,0.89,0.968,1.054,0.993,1.103,1.044,1.187,1.053,0.858,1.064,1.138,1.467,1.182,1.197,0.951,0.988,1.397,1.149,0.967,1.108,1.055,0.869,0.952,1.122,0.873,1.095,1.038,0.945,0.903,0.954,0.921,0.871,1.183 +NM_004364,0.979,0.693,0.882,0.759,0.818,1.585,0.603,0.643,1.186,0.927,1.417,1.018,0.925,0.626,0.811,2.305,0.851,0.916,1.237,0.721,0.742,1.35,1.288,1.309,0.612,1.129,1.085,0.719,0.923,2.013,0.694,0.579,1.004,0.993,0.365,0.919,1.806,1.307,1.263,1.273,0.9,1.109,0.646,0.483,0.966,0.932,1.486,1.15,1.744,1.057,0.734,0.554,0.71,1.161 +NM_004365,0.997,0.976,1.068,0.89,1.116,1.072,0.964,1.037,1.075,0.96,1.015,1.05,0.973,0.908,0.96,1.124,1.023,1.078,0.897,1.014,0.983,0.943,0.891,1.234,0.902,1.045,1.347,1.005,0.757,0.999,0.975,1.05,1.006,0.99,0.939,0.974,1.037,1.238,0.897,1.012,1.0,0.955,1.056,0.867,1.043,0.928,1.05,1.043,0.977,0.881,1.011,0.957,0.867,0.958 +NM_004366,0.882,0.983,0.794,0.88,0.911,1.187,0.786,0.976,1.0,0.868,1.148,0.912,0.916,0.937,1.255,1.786,1.002,1.053,1.022,0.929,0.894,0.864,1.016,0.867,0.933,0.999,0.868,0.959,0.671,1.04,1.007,1.177,0.905,1.0,0.928,0.965,1.191,1.127,1.049,1.048,0.812,1.103,1.117,1.17,0.955,1.105,1.075,0.819,0.953,0.875,1.201,0.91,1.024,1.014 +NM_004370,0.948,1.002,1.036,0.972,1.049,1.097,1.087,1.076,0.955,0.973,1.079,0.91,0.966,0.926,1.027,0.893,1.022,1.072,1.043,0.995,0.96,0.984,1.109,0.975,0.932,0.968,0.999,1.001,1.173,1.021,1.042,0.974,0.937,0.937,1.074,0.997,1.111,1.112,1.119,0.983,0.954,0.955,0.943,0.93,0.985,1.018,1.049,1.024,1.059,1.055,1.027,0.998,1.006,1.037 +NM_004371,0.564,1.064,0.999,0.698,0.714,1.051,0.76,0.356,0.918,0.791,1.118,0.638,0.369,0.467,0.762,1.317,0.604,1.043,0.984,1.001,0.382,0.668,1.462,0.721,0.796,0.679,1.051,0.602,0.581,1.556,0.751,2.143,2.072,1.29,0.426,1.311,1.483,0.781,1.4,0.92,0.742,1.312,0.99,1.367,0.888,1.264,0.92,0.657,1.257,0.714,1.614,1.059,0.839,1.801 +NM_004374,0.668,0.964,0.965,0.686,0.871,1.077,0.499,0.618,1.209,0.869,1.404,0.761,0.665,0.499,0.887,1.988,0.794,1.11,1.097,1.034,0.387,0.74,1.359,0.845,0.822,0.887,1.172,0.844,0.414,1.11,0.881,1.067,1.638,1.437,0.142,1.106,1.388,0.824,1.116,1.045,1.004,0.943,0.673,1.028,0.884,1.317,1.057,0.849,1.289,0.784,1.086,0.67,0.857,2.851 +NM_004380,0.75,0.892,1.436,0.717,0.925,0.839,0.718,0.66,1.179,0.947,0.948,0.724,0.567,0.822,1.046,1.16,0.875,0.822,1.201,1.104,0.753,0.807,1.136,0.948,0.636,0.779,1.099,0.931,0.508,1.09,1.048,1.575,2.925,1.329,0.657,0.845,0.86,0.882,1.159,1.008,1.074,1.355,0.824,1.278,0.928,0.916,0.954,0.666,0.964,0.913,1.098,0.852,1.058,1.47 +NM_004381,1.054,1.214,1.432,0.967,0.962,0.946,0.624,0.501,1.088,1.119,0.873,0.622,0.745,0.747,0.878,1.035,0.873,1.195,1.33,0.831,0.812,1.164,1.054,0.77,0.69,1.244,1.501,0.766,0.75,1.005,0.84,1.332,0.952,1.061,0.505,0.644,0.777,1.235,1.478,0.972,0.923,1.038,0.643,1.597,1.143,0.946,0.994,1.119,0.857,1.227,0.915,0.643,0.995,1.017 +NM_004382,0.96,1.051,1.028,0.913,0.861,0.939,1.052,0.957,1.004,1.089,0.828,0.98,0.929,1.081,0.994,0.998,1.125,0.865,0.93,1.131,1.0,1.095,1.004,0.949,1.047,1.037,0.952,1.01,1.214,0.971,1.069,0.975,0.982,1.023,1.013,0.994,1.003,0.979,0.966,0.994,1.074,1.027,1.349,1.002,0.964,1.179,0.964,1.063,0.838,1.075,0.998,0.888,0.786,1.044 +NM_004383,1.829,0.557,1.902,1.144,1.087,0.863,0.583,0.861,1.466,1.308,0.767,0.872,1.326,1.188,1.113,1.392,2.123,1.117,2.062,0.899,0.643,2.186,1.309,1.383,0.542,2.094,1.104,1.217,0.486,0.853,1.951,0.65,0.868,0.91,0.892,0.592,0.776,1.308,2.503,0.702,1.596,0.878,0.498,0.77,1.643,0.597,0.776,2.294,0.78,1.934,0.916,0.653,1.419,0.971 +NM_004385,0.738,1.193,0.742,0.926,0.79,1.234,1.084,0.707,0.789,0.783,0.862,0.813,0.827,0.809,1.037,0.893,0.747,0.832,0.764,1.277,0.719,0.717,1.505,0.741,0.917,0.69,0.695,0.747,0.913,2.403,0.692,18.41,1.806,2.038,0.665,0.825,1.22,0.867,3.16,5.92,0.716,1.641,0.913,0.974,0.944,1.154,1.031,0.73,0.924,0.709,1.456,2.152,0.74,1.245 +NM_004386,1.03,0.938,0.834,0.928,0.994,1.177,0.925,0.941,0.947,1.015,0.988,0.985,1.013,1.286,1.098,0.882,0.937,0.988,1.006,0.977,0.903,0.973,1.056,1.09,0.901,1.085,1.001,0.952,1.117,1.145,0.905,1.196,0.896,1.117,0.923,1.221,0.916,1.136,1.04,1.021,1.044,1.064,0.988,0.943,0.906,1.09,0.855,1.091,1.026,1.024,1.014,0.983,0.939,0.967 +NM_004387,1.076,1.115,1.132,1.08,1.048,0.976,0.927,0.966,0.951,1.071,1.076,1.026,1.033,1.113,0.939,1.002,1.024,0.801,0.915,1.215,1.097,0.908,0.868,0.986,0.935,1.124,0.985,0.968,0.735,1.043,1.001,0.994,0.933,0.949,0.986,0.944,0.918,1.057,0.909,1.015,1.068,0.918,0.887,0.981,1.034,0.974,0.884,1.065,0.96,0.972,1.002,0.883,0.962,1.28 +NM_004388,0.654,1.172,1.399,0.675,0.828,1.489,0.98,0.691,1.199,0.835,1.413,0.842,0.62,0.674,0.851,1.572,0.812,1.33,1.191,1.232,0.554,0.851,1.11,0.968,0.72,0.63,1.0,1.05,0.596,1.514,0.954,1.154,0.9,1.786,0.621,0.631,1.611,1.134,1.466,0.966,1.031,1.708,0.706,0.738,0.98,1.653,1.347,0.668,1.188,0.683,1.268,0.9,0.756,1.422 +NM_004389,1.02,1.058,0.959,0.896,1.046,1.137,0.82,0.994,0.962,0.991,0.913,1.033,1.008,1.024,0.794,0.901,1.1,0.911,1.033,0.87,0.895,1.008,0.852,1.022,1.046,0.926,1.09,0.915,0.605,1.095,0.9,0.962,0.795,1.04,0.938,0.972,0.927,0.981,1.064,1.061,1.101,1.06,1.089,1.133,1.086,1.008,0.96,1.01,0.971,0.963,0.945,0.897,0.908,0.927 +NM_004391,1.084,1.067,0.983,0.945,0.814,0.969,0.997,1.337,0.899,0.963,1.038,0.957,1.017,1.091,0.927,0.894,0.967,0.9,1.037,0.933,1.067,1.003,1.028,1.0,1.111,0.976,1.072,1.063,0.984,1.022,1.034,0.933,1.093,1.191,0.839,1.018,0.996,1.14,1.038,0.954,0.876,0.901,1.036,1.076,0.954,0.946,0.99,1.062,0.909,1.011,1.079,1.0,1.172,1.007 +NM_004392,0.85,1.099,0.741,0.858,0.901,2.722,1.118,0.926,0.967,0.931,3.071,0.839,0.864,0.969,1.812,5.531,0.82,1.021,0.957,4.035,0.775,0.818,2.796,0.908,0.949,0.861,0.874,0.89,0.714,1.606,0.902,1.398,0.895,1.424,0.802,0.977,2.465,0.667,1.41,1.332,0.766,2.166,1.563,1.14,0.91,2.009,1.817,0.858,3.359,0.912,2.789,0.92,0.827,0.922 +NM_004393,0.61,1.7,0.806,0.801,0.684,0.941,0.734,0.244,0.657,0.782,1.304,0.398,0.342,0.492,0.658,1.32,0.564,1.238,0.823,1.075,0.534,0.676,1.564,0.571,0.925,0.763,0.962,0.565,0.747,2.039,0.599,1.953,1.962,1.347,0.175,1.179,1.324,0.929,2.934,0.953,0.719,1.377,0.78,1.768,0.771,0.985,0.715,0.672,1.015,0.835,1.227,1.364,0.692,1.694 +NM_004394,0.233,1.552,0.574,0.678,0.465,1.743,0.842,0.185,0.489,0.432,1.331,0.453,0.233,0.234,0.728,1.296,0.522,1.101,0.321,2.064,0.147,0.268,1.758,0.481,0.769,0.364,0.506,0.408,0.541,1.932,0.331,2.457,1.891,1.614,0.165,1.677,1.625,0.362,1.666,0.734,0.434,1.343,0.987,1.586,0.435,1.892,0.858,0.308,1.364,0.316,1.617,1.107,0.34,1.013 +NM_004395,1.9060000000000001,2.246,1.768,1.84,1.871,1.5819999999999999,1.6629999999999998,1.888,2.364,2.267,1.625,2.191,1.742,2.1639999999999997,1.9489999999999998,1.931,1.76,1.4660000000000002,2.195,1.5819999999999999,1.783,2.102,1.795,2.528,1.876,2.331,2.159,2.092,1.7,1.884,2.49,5.6370000000000005,5.076,2.0389999999999997,1.4169999999999998,2.8600000000000003,1.56,2.452,1.991,3.5149999999999997,2.274,1.9369999999999998,1.452,3.169,2.009,1.792,1.9849999999999999,2.142,1.416,1.918,1.751,2.177,2.026,3.964 +NM_004396,0.779,0.891,1.265,1.148,0.974,0.573,0.464,0.294,1.627,1.406,0.958,0.292,0.459,0.889,1.049,1.053,0.854,0.717,1.301,0.531,1.236,0.512,1.083,1.057,0.514,0.632,1.397,0.729,0.386,0.904,1.02,1.536,1.786,1.104,0.295,1.165,0.766,0.668,1.544,0.997,1.532,0.83,1.25,2.044,0.946,0.948,0.958,0.608,1.149,0.629,0.832,0.989,1.905,1.997 +NM_004398,0.79,1.04,1.003,0.739,0.912,0.753,0.599,0.62,1.074,1.145,0.887,0.777,0.655,0.72,0.769,1.065,0.86,0.795,1.178,0.891,0.775,0.957,1.253,1.06,0.804,0.96,1.319,0.853,0.544,1.001,0.871,1.34,1.831,1.003,0.396,1.568,0.959,1.02,1.491,1.147,1.03,1.006,0.714,1.161,1.106,0.803,1.009,0.834,0.991,0.786,0.976,0.957,1.02,1.406 +NM_004399,0.765,0.963,1.036,0.808,0.97,1.043,0.759,0.582,1.142,0.943,0.772,0.874,0.62,0.701,1.017,1.114,0.921,0.79,0.821,1.324,0.717,0.939,1.313,1.245,0.829,0.646,1.283,0.838,0.675,0.965,0.914,1.421,2.674,1.032,0.764,1.894,0.842,0.814,1.404,1.524,1.012,1.048,0.871,1.618,0.866,0.914,1.248,0.853,1.207,0.865,0.975,1.025,0.814,1.794 +NM_004401,0.901,1.119,1.124,0.937,0.864,0.968,0.675,0.705,1.127,1.087,0.878,0.844,0.804,0.958,0.872,0.982,1.074,0.783,1.079,0.829,0.82,0.837,0.974,1.335,0.849,0.897,1.234,0.827,0.574,1.13,0.811,1.191,1.386,1.146,0.52,0.897,0.854,0.87,1.232,1.224,1.145,1.074,0.87,1.298,1.02,0.786,1.005,0.81,0.905,0.84,0.913,0.906,1.219,2.36 +NM_004402,0.783,1.026,0.884,0.833,0.799,1.199,0.958,0.968,0.862,0.757,1.405,0.826,0.831,0.718,1.015,1.547,0.925,0.906,0.829,1.107,0.751,0.788,1.363,0.852,0.827,0.866,0.962,0.78,0.895,1.268,0.858,1.077,1.316,1.047,0.757,1.22,1.399,0.804,1.48,1.12,0.788,1.147,0.953,1.066,0.771,1.051,0.937,0.83,1.171,0.947,1.262,0.862,0.743,1.303 +NM_004403,0.838,0.955,1.327,0.925,0.998,0.872,0.806,0.791,0.953,1.379,0.802,1.094,0.911,1.061,0.9,1.023,0.961,0.893,1.077,1.051,1.18,0.832,1.065,1.603,0.811,1.019,2.062,0.917,0.889,0.978,0.905,3.6,3.585,1.352,0.714,0.894,0.956,1.287,0.952,1.807,1.068,0.969,0.812,0.85,1.231,0.833,1.479,0.957,0.941,1.033,0.91,4.702,2.218,1.756 +NM_004404,0.469,1.128,1.039,0.758,0.694,1.305,0.633,0.321,1.168,0.949,0.979,0.671,0.438,0.52,0.848,1.426,0.761,0.977,0.757,1.641,0.305,0.535,1.579,0.947,0.597,0.546,1.011,0.683,0.265,1.245,0.651,2.1,1.595,1.217,0.0875,1.078,1.227,0.641,1.073,1.503,0.912,1.294,0.784,1.66,0.772,1.205,0.952,0.53,0.985,0.525,1.139,0.931,0.716,2.833 +NM_004405,1.046,1.012,0.898,0.925,0.942,1.078,0.818,0.997,0.99,1.114,1.041,1.042,0.921,0.988,0.813,0.993,0.916,1.107,0.912,1.0,1.053,1.031,0.991,1.0,0.902,0.82,1.101,0.989,0.977,0.989,1.072,1.151,1.124,1.029,0.983,1.014,1.106,0.907,0.87,1.03,1.057,1.038,0.894,0.975,1.021,0.948,0.975,0.995,1.066,0.997,1.199,1.269,0.909,0.98 +NM_004406,0.581,10.36,0.566,4.706,0.587,1.178,1.459,0.661,0.592,0.534,5.41,0.519,0.643,0.65,3.048,44.8,0.609,0.62,0.513,3.538,0.633,0.584,3.128,0.684,0.635,0.487,0.688,0.604,0.533,4.819,0.51,46.11,5.644,0.932,0.628,41.15,37.53,0.497,3.624,1.846,0.661,20.27,36.24,0.809,0.612,0.843,18.89,0.686,100.1,0.534,3.165,15.28,1.014,10.82 +NM_004408,0.897,1.03,0.898,0.929,1.078,0.895,0.885,0.885,0.914,1.04,1.012,0.97,1.029,0.961,1.125,0.854,0.933,0.912,0.897,0.981,0.978,0.929,0.862,0.888,0.803,0.963,0.909,1.037,1.048,1.012,0.924,1.583,1.283,1.025,0.966,1.211,0.932,0.985,0.926,1.296,0.92,0.974,0.972,1.54,0.927,1.042,0.935,0.976,0.873,0.839,1.0,1.049,0.88,0.921 +NM_004409,0.996,0.948,1.063,0.814,1.099,1.004,0.865,1.333,1.033,0.924,1.146,0.952,0.881,1.088,1.367,1.276,0.916,0.846,1.374,0.975,1.099,1.404,1.234,0.994,0.874,1.221,0.884,1.222,0.688,1.018,1.577,1.049,1.442,1.423,1.548,0.817,0.929,1.187,0.973,0.87,1.323,1.207,1.15,0.897,0.897,1.012,0.829,1.355,0.704,1.024,1.015,0.836,0.868,1.212 +NM_004411,0.998,1.013,1.084,0.999,0.921,1.047,0.937,0.981,0.847,0.977,0.928,0.962,0.776,0.955,1.105,1.039,1.021,0.995,0.892,0.957,0.82,0.973,1.184,0.911,0.879,0.925,1.18,0.972,1.745,1.143,0.949,1.22,0.946,1.069,0.861,0.949,1.016,0.916,0.929,1.126,0.824,1.235,1.023,0.861,1.041,0.976,1.149,0.904,1.057,0.995,1.02,0.913,0.917,1.184 +NM_004413,0.853,0.957,0.953,1.171,0.932,0.914,0.979,1.096,0.891,0.942,0.899,0.882,0.964,0.879,1.625,2.289,0.981,0.961,1.001,0.986,0.913,0.896,1.055,1.049,0.928,0.939,0.892,0.88,1.3,0.965,1.065,0.935,1.554,0.964,0.905,7.34,2.441,0.914,0.982,6.176,0.872,0.968,1.226,1.146,1.061,2.209,1.884,0.907,1.269,0.979,2.315,2.211,1.02,0.964 +NM_004414,0.403,0.965,0.633,0.569,0.549,2.153,0.658,0.338,0.769,0.615,1.423,0.573,0.347,0.339,0.993,1.96,0.458,0.819,0.562,1.386,0.315,0.557,1.511,0.583,0.683,0.45,0.68,0.522,0.53,1.771,0.539,1.38,1.408,1.876,0.115,0.632,1.599,0.638,2.238,1.506,0.641,1.754,0.901,0.701,0.612,1.582,0.71,0.371,0.644,0.488,1.37,0.855,0.932,1.437 +NM_004415,2.742,0.742,3.405,0.931,2.902,0.726,0.779,1.529,2.047,2.319,0.679,2.556,1.489,1.283,1.361,1.016,1.906,1.798,2.066,0.929,1.282,1.865,0.839,1.848,0.851,2.036,2.692,2.096,0.794,0.88,2.103,0.705,1.145,0.731,1.596,0.701,0.933,3.721,0.827,0.81,2.144,0.836,0.783,0.68,2.796,0.782,1.409,2.168,0.898,2.907,1.179,1.1,1.466,0.902 +NM_004416,1.04,0.968,1.122,1.03,1.01,0.912,0.876,1.041,1.046,1.213,0.951,0.948,1.066,1.037,1.207,1.046,0.968,1.026,1.248,0.883,1.046,1.174,0.948,1.077,0.892,1.087,0.988,1.072,0.873,0.945,0.974,0.851,1.06,0.929,0.86,1.121,1.094,1.079,1.074,1.024,0.96,0.982,1.047,1.003,0.997,1.045,1.035,1.034,0.862,0.958,0.953,0.941,0.847,1.242 +NM_004417,1.162,0.332,1.038,0.698,1.208,0.759,0.305,1.221,1.187,1.132,0.622,1.891,1.172,1.817,1.321,0.844,3.094,0.82,1.257,0.557,0.676,1.798,0.514,2.25,0.31,1.185,1.129,1.016,0.35,0.389,1.651,1.003,1.01,0.529,2.772,0.285,0.719,1.517,1.671,4.812,2.492,0.839,0.938,0.413,1.495,0.781,1.367,1.789,0.793,1.119,0.611,0.874,2.381,1.078 +NM_004418,0.995,1.015,1.008,0.937,1.014,0.853,1.018,0.958,1.205,0.962,0.969,1.04,0.974,0.866,0.933,0.998,0.928,1.013,1.056,0.836,0.869,0.997,0.917,0.977,0.905,1.098,0.969,0.93,0.871,0.999,1.03,0.959,1.37,0.894,0.762,1.006,0.924,0.946,1.455,2.819,0.965,1.129,0.884,1.113,1.173,0.98,1.037,0.92,0.938,1.012,1.049,1.118,0.973,1.647 +NM_004419,7.885,0.234,1.355,2.199,10.0,0.216,0.252,8.882,8.569,2.098,0.161,2.638,5.356,2.69,3.598,1.885,3.129,2.306,3.185,0.282,2.477,6.368,0.152,1.976,0.207,5.942,2.919,8.519,0.169,0.187,6.626,0.372,0.986,0.265,18.98,0.468,0.317,8.064,0.386,0.946,6.096,0.246,1.106,0.757,2.301,0.267,2.733,9.294,0.679,2.291,0.614,0.72,2.383,0.504 +NM_004420,0.817,1.017,0.801,0.926,0.799,1.432,0.824,1.116,0.857,0.804,0.991,0.897,0.864,0.788,0.839,1.475,0.818,1.037,0.851,1.198,0.896,0.833,1.029,0.814,0.994,0.89,0.976,0.836,0.591,1.289,0.925,1.14,1.063,1.199,1.058,1.281,1.126,0.814,1.42,1.635,0.79,1.176,0.951,1.027,0.91,1.318,1.023,0.794,1.074,0.91,1.224,0.969,0.879,1.111 +NM_004421,1.086,0.991,0.978,1.01,1.138,0.977,0.799,0.815,0.909,0.969,0.899,0.995,0.938,1.053,1.018,0.924,1.098,0.947,0.921,0.917,1.039,1.007,0.917,0.978,1.001,1.125,1.101,1.072,1.244,0.973,0.984,1.004,0.977,1.017,1.055,0.957,0.909,0.958,1.255,0.889,1.11,1.081,0.885,1.17,0.913,0.992,0.909,1.111,1.012,1.099,0.957,0.84,0.884,0.987 +NM_004422,0.975,0.884,0.954,0.985,0.841,1.115,0.734,0.752,0.919,0.853,1.0,0.946,0.853,0.741,0.816,0.944,0.963,1.053,0.976,0.873,1.03,1.084,1.049,0.901,1.049,1.177,1.157,1.0,0.717,1.121,0.96,1.287,1.085,0.916,0.974,0.955,0.909,1.033,1.006,1.017,0.925,0.954,0.811,1.244,1.123,0.862,0.948,1.222,0.817,0.951,1.018,0.819,1.046,1.106 +NM_004424,0.783,0.799,0.907,0.895,0.822,1.106,0.712,0.877,1.06,0.765,0.948,0.887,0.802,0.904,0.988,1.1,0.957,0.887,1.146,0.978,1.008,0.986,1.109,1.0,0.942,1.001,1.019,0.849,0.897,1.095,0.962,1.266,2.652,1.075,0.686,1.085,1.007,0.934,1.501,1.308,0.81,1.022,0.723,1.2,0.964,0.909,0.926,0.95,0.948,0.976,0.924,0.835,0.907,1.136 +NM_004425,3.333,0.641,4.937,1.938,3.466,0.592,0.523,1.828,4.701,2.257,0.745,0.832,1.785,4.605,1.624,1.262,2.796,2.047,5.292,0.581,2.007,1.365,0.689,2.051,0.552,3.167,2.229,3.068,0.425,0.679,3.057,1.006,2.693,0.715,16.24,1.207,0.644,2.493,0.821,0.659,3.533,0.521,0.618,0.873,2.594,0.632,2.01,3.594,0.729,3.344,1.175,1.32,3.388,0.784 +NM_004426,1.186,0.792,1.011,0.792,1.531,0.889,0.876,1.194,1.876,1.106,0.793,1.147,1.086,1.438,1.094,0.957,1.156,0.872,1.377,1.033,0.862,1.688,0.811,1.407,0.799,1.357,1.043,1.478,0.803,1.036,1.072,1.596,1.444,1.005,0.919,0.746,0.678,1.374,0.887,0.99,1.165,1.066,0.945,0.898,1.036,0.86,0.914,1.513,0.669,1.005,0.831,0.92,1.128,1.192 +NM_004427,0.595,1.25,0.865,0.824,0.554,1.519,0.89,0.593,0.711,0.735,0.803,0.684,0.611,0.525,1.032,1.463,0.778,0.783,0.793,0.935,0.502,0.706,1.053,0.734,1.095,0.678,0.916,0.627,0.581,1.085,0.655,1.652,2.328,1.82,0.397,0.819,1.027,0.644,1.592,1.884,0.745,1.167,0.851,1.361,0.697,0.859,1.034,0.579,0.872,0.577,1.042,0.743,0.833,1.72 +NM_004428,0.89,0.923,1.024,0.989,0.821,0.951,0.709,0.619,0.975,0.794,0.909,0.568,0.85,0.87,1.072,1.045,1.06,1.016,1.129,0.885,0.752,0.635,0.873,0.818,0.857,0.92,1.177,0.785,0.848,1.361,0.795,2.157,1.223,1.028,0.602,0.755,0.854,0.816,1.104,1.65,1.134,1.406,0.685,1.511,0.915,0.864,1.418,0.647,0.796,1.037,0.832,1.288,0.924,0.974 +NM_004429,0.708,0.909,0.603,0.845,0.679,1.506,0.993,0.608,0.734,0.921,1.115,0.988,0.671,0.604,1.057,1.521,0.768,0.926,0.726,1.138,0.745,0.692,1.263,0.876,0.758,0.714,0.932,0.645,0.771,1.297,0.767,1.229,1.503,1.132,0.437,1.56,1.058,0.729,1.921,0.881,0.611,1.081,1.219,1.819,0.884,0.855,1.188,0.724,1.1,0.786,1.155,1.457,0.994,1.118 +NM_004430,1.065,0.941,1.109,1.086,0.934,0.904,0.88,0.873,0.953,1.061,1.122,0.913,1.031,0.848,0.967,1.009,0.94,1.071,1.051,0.98,1.022,0.998,1.007,0.924,1.009,1.034,1.028,1.094,0.646,0.958,1.095,0.976,0.997,0.872,1.013,0.971,1.04,0.962,1.153,1.092,1.062,1.006,1.42,1.117,1.101,1.062,0.914,1.011,0.868,1.004,1.008,1.048,0.929,0.986 +NM_004431,1.925,0.514,2.687,1.012,2.273,0.403,0.333,1.976,2.3,1.41,0.328,0.941,1.197,0.925,0.967,0.713,3.518,1.219,1.893,0.679,0.793,1.946,0.536,1.692,0.205,1.487,2.402,1.67,0.167,0.463,1.446,0.793,1.005,0.424,4.348,0.825,0.326,2.362,1.118,0.58,2.254,0.46,1.064,1.74,2.202,1.283,2.05,2.674,0.914,2.367,0.664,1.214,1.985,1.153 +NM_004432,0.973,0.856,0.908,1.054,1.152,1.182,0.863,0.924,0.981,0.998,1.026,0.909,1.033,0.977,0.915,0.921,0.972,0.857,0.939,0.838,1.014,0.699,0.932,0.889,1.043,1.151,0.888,0.951,1.022,1.044,0.884,1.074,1.147,0.995,0.995,0.862,0.92,1.127,1.157,1.071,0.997,0.898,1.056,1.034,1.213,1.09,1.05,1.158,1.08,1.008,1.024,1.131,1.051,0.93 +NM_004435,0.406,1.6,0.701,0.78,0.824,1.046,0.826,0.33,0.783,0.875,1.327,0.79,0.654,0.46,0.679,1.619,0.636,1.081,0.808,1.601,0.414,0.555,1.951,0.603,0.985,0.622,0.776,0.631,0.668,1.333,0.498,1.643,1.387,1.527,0.153,2.13,1.476,0.817,1.729,0.687,0.917,1.477,1.369,1.292,0.684,2.041,0.885,0.569,1.606,0.655,1.371,1.07,0.683,1.646 +NM_004436,0.855,0.923,1.51,0.924,1.268,0.841,0.706,0.844,1.327,1.164,1.13,0.943,1.105,0.814,1.105,1.313,1.067,1.123,1.571,0.824,0.997,0.764,0.904,1.247,0.621,1.343,1.387,1.049,0.612,0.925,1.224,0.866,0.98,1.068,0.761,1.27,0.965,0.985,1.141,0.844,1.501,1.053,0.919,0.989,1.256,0.87,1.034,1.062,0.829,1.285,1.003,0.735,1.296,1.151 +NM_004437,1.049,0.906,1.137,1.009,1.132,0.926,0.933,1.074,1.073,1.223,0.969,1.188,1.031,1.095,1.102,1.087,1.075,0.976,0.963,1.095,0.995,0.981,0.99,0.996,1.001,0.97,1.031,1.074,0.867,0.912,0.994,0.8,1.092,0.962,1.263,0.938,1.019,0.964,0.954,1.008,1.09,0.902,0.845,1.021,1.071,1.144,1.011,1.078,1.014,1.057,0.891,0.935,1.081,1.065 +NM_004438,1.038,0.96,1.194,1.02,0.981,0.899,0.961,1.072,1.0,0.902,0.982,1.015,0.868,0.975,0.962,1.084,0.976,0.938,1.17,1.004,1.039,1.041,1.045,1.139,1.111,0.929,0.975,0.938,0.835,0.997,1.024,1.091,0.977,0.859,1.025,1.105,1.103,0.798,1.012,0.939,0.983,0.915,1.06,1.164,1.001,1.057,1.067,0.97,1.256,1.022,1.003,0.87,1.027,1.044 +NM_004439,1.057,0.987,0.931,1.069,0.991,0.995,0.885,1.049,1.062,0.998,1.132,1.149,1.036,0.924,1.404,0.859,0.973,0.932,0.948,0.944,1.06,0.956,1.025,0.846,1.065,1.054,0.942,0.954,0.835,1.022,0.978,0.964,1.098,0.867,1.09,0.915,0.95,0.9,0.929,1.185,1.104,0.998,1.054,0.855,1.018,1.067,1.033,1.001,1.05,1.058,0.842,1.03,1.052,1.025 +NM_004440,1.319,1.031,1.193,0.963,1.046,0.923,0.982,1.062,0.997,0.966,0.939,1.124,1.049,1.074,0.869,0.9,0.966,0.826,0.999,0.962,0.893,0.967,0.942,1.085,1.019,1.035,1.117,1.171,1.295,0.934,1.197,0.992,1.096,1.031,1.034,1.212,0.992,0.947,0.925,0.923,0.944,0.929,0.911,0.999,0.989,1.086,1.096,0.981,1.177,1.088,0.945,0.98,1.12,0.896 +NM_004442,0.595,3.243,0.585,0.757,0.619,1.347,0.831,0.59,0.607,0.608,1.468,0.634,0.645,0.593,1.301,2.625,0.623,0.82,0.624,1.514,0.607,0.603,3.424,0.643,0.57,0.564,0.744,0.647,0.608,1.491,0.637,1.356,3.888,0.849,0.6,2.43,2.309,0.713,2.798,2.108,0.672,2.233,2.213,5.198,0.662,1.769,1.6,0.571,2.957,0.658,2.523,0.965,0.801,4.931 +NM_004443,1.227,1.034,1.134,0.926,1.046,0.779,0.602,0.961,1.21,1.202,0.853,0.955,0.808,1.03,0.794,0.895,1.142,0.962,1.457,0.802,0.996,1.316,1.199,1.173,0.982,1.158,1.438,1.004,0.577,0.801,1.254,0.955,1.514,0.978,1.183,0.744,0.867,1.445,0.825,0.608,1.292,1.08,0.68,1.527,1.218,0.793,1.078,1.604,0.708,1.364,0.95,0.66,1.322,0.763 +NM_004444,0.931,1.114,0.779,0.733,0.68,1.162,0.727,0.53,0.832,0.78,1.105,0.53,0.688,0.626,0.931,1.262,0.902,0.798,0.755,0.914,0.765,1.096,1.985,0.874,0.888,0.824,1.038,0.491,0.975,1.643,0.712,2.354,1.313,1.114,0.367,0.686,1.122,1.026,2.525,2.034,0.687,1.192,0.763,3.003,0.691,0.95,1.077,0.761,0.906,1.006,1.193,2.082,0.811,1.116 +NM_004445,1.336,0.792,1.33,0.955,1.336,0.789,0.888,1.014,1.488,1.256,0.75,1.331,1.501,1.122,1.057,0.898,0.878,1.204,1.698,0.796,1.151,1.452,0.721,1.475,1.197,1.903,1.023,1.145,0.818,0.823,1.344,1.121,1.051,1.077,0.917,0.906,0.732,1.425,0.743,0.775,1.047,1.089,0.738,0.953,1.149,0.744,0.907,1.506,0.721,1.519,0.86,0.875,1.197,0.855 +NM_004446,0.587,1.133,1.296,0.481,0.877,1.101,0.78,0.305,1.272,1.291,0.769,0.766,0.37,0.448,0.71,1.066,0.748,0.945,1.046,1.089,0.407,0.776,1.59,1.181,0.617,0.662,1.093,0.806,0.522,1.266,0.838,1.469,2.856,1.221,0.117,1.244,0.939,1.038,1.844,1.094,1.265,1.359,0.611,1.791,1.279,1.026,0.971,0.633,1.473,0.833,1.26,0.904,0.865,2.101 +NM_004447,0.573,1.126,0.664,0.75,0.635,2.931,1.196,0.593,0.77,0.477,1.43,0.614,0.612,0.672,1.378,3.666,0.523,1.063,0.603,2.186,0.541,0.633,1.611,0.67,0.671,0.488,0.761,0.604,0.718,1.539,0.717,1.348,4.942,1.93,0.539,0.864,1.475,0.688,1.809,1.113,0.715,1.732,1.25,0.772,0.534,1.704,1.362,0.629,2.309,0.64,1.708,0.854,0.623,1.804 +NM_004449,1.032,0.915,1.039,0.845,0.878,1.074,1.084,1.216,0.94,0.972,0.894,0.969,0.899,0.938,1.084,1.018,1.07,0.826,0.931,0.945,0.98,1.005,0.832,1.042,1.018,1.02,1.134,1.15,0.921,0.871,1.029,1.023,0.798,0.909,1.012,0.979,1.056,0.991,0.995,1.067,0.776,0.903,1.033,0.971,1.087,0.993,0.842,0.998,1.04,0.919,1.074,1.03,0.969,1.038 +NM_004450,0.669,1.157,0.979,0.844,0.66,1.001,0.499,0.35,0.929,0.889,1.269,0.724,0.628,0.567,0.833,1.258,0.666,0.965,0.958,0.676,0.525,0.405,1.385,0.902,0.659,0.824,1.171,0.692,0.317,1.089,0.681,0.999,1.271,1.37,0.118,1.003,1.338,0.697,1.504,1.126,1.092,1.133,0.738,2.107,0.878,1.026,1.143,0.548,1.058,0.648,1.069,0.92,0.867,1.677 +NM_004451,0.892,1.041,0.894,0.868,0.906,1.59,0.822,0.907,0.983,0.798,1.283,0.988,1.013,0.73,1.028,1.528,1.13,1.056,0.988,0.967,0.935,1.301,1.05,1.165,0.842,0.882,1.308,0.736,1.052,1.13,0.837,1.114,1.089,1.012,0.681,1.096,1.23,0.982,1.57,0.956,0.968,0.974,0.895,1.291,0.811,0.931,1.163,0.996,1.466,0.887,0.924,0.656,0.669,1.264 +NM_004452,0.903,1.032,0.957,0.967,1.188,0.867,1.477,0.952,0.987,0.992,0.925,1.063,0.901,0.773,0.869,0.829,0.944,0.889,0.94,0.783,1.005,1.124,1.029,0.92,1.02,1.002,0.988,1.061,1.01,1.071,1.019,1.081,0.896,0.977,1.013,0.998,1.136,0.909,1.122,1.067,0.856,1.028,0.743,0.964,0.913,1.071,1.124,1.16,1.066,0.8,0.968,1.043,0.987,1.111 +NM_004453,0.688,0.676,1.041,0.662,1.191,1.433,0.597,0.718,1.781,1.233,1.469,1.216,0.587,0.838,1.365,2.443,0.852,1.117,1.529,1.21,0.632,1.227,0.643,1.553,0.561,1.118,1.028,1.134,0.448,1.458,1.31,0.831,0.658,1.331,0.795,0.398,1.265,1.233,1.04,0.319,1.248,1.324,1.065,0.553,1.248,1.387,1.072,1.068,1.16,0.646,1.087,0.475,0.895,0.877 +NM_004454,0.595,1.804,0.702,0.918,0.587,1.243,1.01,0.51,0.716,0.643,0.93,0.672,0.59,0.61,0.709,1.049,0.569,0.702,0.635,1.271,0.584,0.517,1.846,0.642,1.143,0.619,0.713,0.622,0.485,1.662,0.672,2.333,2.022,2.825,0.491,1.174,1.286,0.684,1.189,0.861,0.67,1.632,0.747,1.921,0.544,0.651,0.787,0.676,0.814,0.563,1.385,1.104,1.226,1.208 +NM_004455,1.013,0.971,0.882,0.835,1.109,1.144,0.931,1.27,1.047,1.071,1.18,1.002,0.983,0.979,0.878,1.01,1.015,1.248,1.104,0.985,1.069,0.975,0.895,1.063,0.979,0.993,0.896,1.126,0.919,0.946,0.896,0.916,0.937,0.886,0.939,1.036,0.939,1.262,0.957,1.045,0.985,1.077,0.907,0.966,0.962,1.204,0.962,1.108,1.022,1.009,1.117,0.979,0.985,1.004 +NM_004456,1.041,0.904,1.239,0.832,1.099,1.001,0.806,0.877,1.229,1.012,0.941,0.838,0.936,0.814,0.934,0.99,1.086,1.061,0.867,1.023,0.822,0.893,1.019,1.144,0.98,0.995,0.921,1.002,1.004,1.018,1.047,0.86,1.366,0.856,1.15,0.86,1.023,0.999,1.269,0.849,1.043,0.979,1.029,1.161,0.958,1.179,1.12,0.878,1.041,0.999,0.951,1.03,1.117,1.122 +NM_004457,1.325,1.096,1.075,0.715,0.971,1.613,1.006,0.889,0.999,0.778,0.779,0.922,0.866,0.831,0.771,1.168,0.952,0.927,0.867,1.026,0.782,1.213,1.262,1.05,0.905,0.74,1.113,0.896,1.246,1.026,1.198,1.151,1.37,0.915,1.037,1.119,1.082,1.237,1.121,1.161,1.003,1.055,0.848,0.927,0.794,1.059,1.034,1.028,1.186,0.934,1.133,0.904,0.775,0.914 +NM_004458,0.876,1.082,0.945,0.978,0.875,0.964,1.08,0.928,0.754,0.971,1.085,0.743,0.833,0.686,0.738,1.095,0.834,1.051,0.885,1.048,0.815,0.825,1.055,0.824,0.948,0.715,1.0,0.779,0.684,1.289,0.782,1.173,1.054,0.978,0.756,1.152,1.1,0.861,1.741,1.406,0.762,1.089,1.033,1.316,0.815,1.342,1.044,0.812,0.876,0.884,1.109,1.412,1.084,1.036 +NM_004459,2.218,2.323,1.948,1.778,2.0060000000000002,2.293,2.168,1.938,1.971,2.046,2.247,1.9529999999999998,1.862,1.7479999999999998,1.87,2.069,2.114,2.033,1.625,2.133,1.9700000000000002,1.956,2.255,1.8519999999999999,1.9020000000000001,1.875,2.133,1.831,1.885,1.902,2.051,2.1639999999999997,2.274,2.067,2.01,1.856,2.239,2.036,2.095,1.992,1.98,2.177,1.82,1.798,2.025,1.8940000000000001,1.924,1.766,1.867,1.986,2.019,2.23,2.081,2.099 +NM_004460,0.877,1.249,0.88,1.004,1.018,0.978,0.915,0.938,0.842,0.916,0.992,0.822,1.057,1.164,0.827,1.156,0.961,1.033,1.002,0.941,0.992,0.795,1.184,0.924,0.955,0.849,0.904,0.969,1.082,0.982,0.871,11.64,1.774,0.929,0.963,1.196,0.96,0.999,1.343,4.034,0.978,1.137,0.891,0.962,1.104,1.206,1.114,0.829,0.927,0.916,1.118,2.034,1.035,1.331 +NM_004461,0.94,0.849,0.984,0.982,0.701,0.826,0.639,0.447,0.977,1.063,1.105,0.831,0.578,0.71,1.094,1.454,0.893,0.818,1.392,0.699,0.71,0.725,1.56,0.964,0.879,1.036,0.967,0.696,0.434,0.906,0.934,1.001,1.797,1.303,0.276,1.18,1.186,0.799,1.351,1.032,0.87,1.147,0.681,2.11,1.267,0.786,0.82,0.739,1.09,0.98,1.082,1.565,1.477,1.824 +NM_004462,0.502,0.876,1.132,0.959,0.98,1.782,0.786,0.426,1.324,1.047,1.148,0.917,0.408,0.531,0.933,2.381,0.919,1.512,1.02,2.123,0.318,0.898,2.085,1.094,0.603,0.607,1.368,0.916,0.56,1.559,0.968,1.36,2.026,1.496,0.206,0.887,1.571,0.875,1.578,0.431,0.959,1.24,0.803,0.582,0.843,2.84,1.199,0.872,1.935,0.837,2.352,1.254,0.834,0.835 +NM_004464,0.974,0.998,1.02,0.984,1.001,0.99,1.011,0.933,1.021,0.948,1.02,1.053,1.081,1.023,1.046,1.18,1.127,0.952,1.087,0.992,0.995,0.915,0.822,0.968,1.071,1.042,1.201,0.968,0.929,0.913,1.031,0.883,0.946,0.87,1.065,1.084,1.076,1.031,1.05,1.082,0.962,0.887,0.976,0.781,1.079,0.907,1.197,1.087,0.903,0.947,1.081,1.091,0.964,1.079 +NM_004465,1.004,1.006,1.011,1.001,0.959,1.03,0.904,1.029,1.058,0.989,0.968,1.009,0.921,0.93,0.982,1.019,1.033,1.16,1.029,0.874,1.068,0.951,0.873,1.08,0.986,0.999,1.088,1.103,0.82,1.059,1.046,0.969,1.122,0.952,1.093,0.994,1.295,0.934,0.972,1.005,0.918,1.141,0.882,1.062,1.146,1.021,0.986,0.981,1.005,1.098,1.043,1.056,0.954,0.909 +NM_004466,1.034,1.033,0.986,1.072,1.056,1.096,1.167,1.029,0.952,0.971,1.116,1.037,1.01,1.357,1.327,1.246,0.923,0.981,0.937,1.0,0.993,1.031,1.074,0.909,1.09,0.887,0.965,0.898,1.24,0.93,1.045,0.964,0.983,1.109,0.984,1.003,0.978,0.977,1.11,0.932,0.997,1.143,1.131,1.043,1.079,0.897,1.054,1.05,1.114,0.82,0.94,0.923,0.953,0.987 +NM_004468,1.001,0.942,1.149,0.918,0.933,0.967,0.977,0.959,0.901,0.952,0.975,1.013,1.134,1.078,1.124,0.871,0.996,0.902,1.235,0.748,1.021,1.003,0.979,1.08,0.947,1.097,0.99,0.877,0.657,1.151,0.993,2.201,1.592,1.384,0.792,0.89,0.917,1.013,1.063,1.529,1.171,1.175,0.685,1.754,0.945,0.766,0.91,0.981,0.729,1.003,0.917,1.091,1.335,1.172 +NM_004469,1.065,0.996,1.039,0.953,1.012,1.023,1.061,0.966,0.926,0.931,1.003,0.855,1.154,1.065,1.1,1.039,0.971,0.945,0.94,1.105,0.972,0.982,1.009,1.058,1.1,0.954,0.952,1.097,1.196,0.997,1.015,0.978,0.959,1.072,1.001,0.916,0.95,1.072,1.028,1.066,1.068,1.011,1.201,0.951,0.961,1.108,1.043,1.03,1.082,1.175,1.074,0.984,0.98,0.99 +NM_004470,0.92,1.058,0.881,0.972,0.869,0.908,0.904,0.76,0.937,0.999,1.117,0.783,0.699,0.754,0.816,1.187,0.891,0.977,0.993,0.96,1.048,0.848,0.943,0.846,0.944,1.017,1.046,0.951,0.79,1.011,1.061,1.106,1.236,1.14,0.795,1.556,0.974,1.014,1.454,1.408,0.964,1.038,0.958,1.446,0.994,0.887,1.116,0.974,1.001,0.941,1.059,0.934,1.157,0.812 +NM_004472,0.908,0.931,0.922,0.796,1.065,1.266,0.721,0.898,0.764,0.853,2.014,0.999,0.836,1.11,1.755,2.969,0.851,0.848,0.82,1.758,0.932,0.981,2.829,1.01,0.872,0.898,0.908,0.956,0.782,0.932,0.922,0.905,1.689,0.763,0.873,0.979,1.139,1.025,1.132,1.296,1.001,1.406,1.563,1.999,0.987,1.236,1.549,0.887,0.989,0.933,1.711,0.998,0.996,1.454 +NM_004473,1.18,0.786,1.534,0.999,1.07,0.77,1.0,1.21,1.0,1.184,0.872,0.954,1.07,1.096,1.245,1.219,1.235,1.404,1.444,1.001,1.38,1.117,0.939,1.073,0.812,1.158,1.49,1.065,1.461,0.892,1.06,0.951,1.089,0.698,0.908,0.706,0.908,1.061,0.69,0.754,1.471,0.762,0.831,0.766,1.616,0.855,1.124,0.938,0.773,1.494,1.026,1.315,1.582,0.833 +NM_004474,1.03,1.143,1.095,0.974,1.136,0.955,0.964,1.143,0.93,0.944,0.952,0.908,0.998,0.916,0.98,1.082,1.138,0.953,0.824,1.069,1.003,0.867,0.959,0.954,1.013,0.898,1.067,1.182,1.203,1.04,0.976,1.048,0.999,0.895,1.035,0.935,1.043,0.959,1.149,0.982,1.008,1.16,0.949,1.06,0.85,1.07,1.036,0.861,0.898,1.0,0.959,0.929,1.041,1.211 +NM_004475,0.549,1.332,1.778,0.571,0.832,0.841,0.501,0.36,0.799,1.156,0.615,0.689,0.535,0.66,0.702,0.918,1.621,0.939,1.511,1.094,0.386,0.763,0.88,1.053,0.507,0.839,1.899,0.645,0.41,1.26,0.689,2.003,1.352,1.311,0.113,0.762,0.849,1.089,1.114,1.026,1.343,0.947,0.634,1.136,0.97,0.735,1.119,0.622,0.595,0.899,0.807,1.053,1.293,1.141 +NM_004476,0.994,0.934,1.16,0.973,0.822,0.965,0.832,0.987,1.017,1.021,1.062,1.184,0.907,0.904,1.381,0.783,1.045,1.017,0.872,0.971,1.062,1.042,1.125,1.047,1.077,0.957,0.88,1.008,1.006,0.893,0.836,0.927,0.993,0.917,1.005,0.979,1.144,0.934,0.928,0.922,1.029,0.975,1.114,0.96,1.116,0.943,1.006,1.068,1.005,1.084,1.004,0.897,0.998,1.165 +NM_004477,0.497,1.116,1.292,0.512,1.041,1.211,0.609,0.62,1.526,1.178,0.742,1.252,0.707,0.71,0.858,1.784,0.738,0.9,1.375,0.885,0.541,0.935,0.998,1.459,0.421,0.695,1.394,1.125,0.495,1.072,1.228,1.199,2.169,1.468,0.411,0.716,1.08,1.452,1.022,0.533,1.493,1.13,0.585,0.713,1.048,1.115,0.871,0.838,1.002,0.71,0.918,0.823,0.985,1.793 +NM_004479,0.961,0.939,1.135,1.024,0.965,1.058,0.828,0.991,0.9,1.029,0.851,1.053,1.047,0.917,1.047,0.805,0.913,0.884,1.012,0.947,0.993,1.052,0.891,1.072,0.951,1.013,1.075,1.079,0.842,0.964,1.102,0.947,1.128,0.99,0.802,0.926,0.829,1.086,1.06,1.296,0.972,0.911,0.937,0.862,1.055,0.9,0.918,1.009,1.103,1.096,1.065,1.084,1.067,1.0 +NM_004480,1.074,0.939,0.991,0.965,0.93,0.921,0.917,1.07,1.042,0.933,0.985,1.149,1.005,0.937,0.794,1.094,0.922,1.074,1.018,1.077,0.927,1.041,0.9,1.197,1.227,0.909,0.977,0.944,0.935,0.931,1.02,0.998,0.906,0.859,1.019,1.197,1.101,0.911,1.101,1.095,1.093,1.002,0.83,1.082,0.891,0.937,0.983,0.963,1.012,1.144,1.019,0.994,1.069,0.912 +NM_004483,0.755,1.612,1.268,0.711,1.115,1.322,0.764,1.113,1.282,1.088,0.686,1.577,1.131,0.737,1.085,1.164,1.066,0.399,1.175,1.062,0.563,1.272,0.888,0.999,0.571,0.523,1.242,1.047,0.532,0.905,1.161,1.811,2.915,1.279,0.428,0.601,0.969,1.464,1.299,0.757,1.194,0.858,0.619,0.787,1.279,0.753,0.739,0.991,1.247,0.897,1.111,0.869,0.541,2.004 +NM_004484,0.93,0.994,1.007,1.048,1.016,1.013,1.124,1.08,1.032,0.958,1.032,0.821,0.892,0.966,1.119,1.269,0.819,1.159,0.99,1.068,0.865,1.056,0.805,0.845,1.22,0.933,0.933,0.91,1.372,0.951,0.889,1.245,1.376,1.078,1.061,0.925,0.989,0.988,0.873,0.903,0.98,0.96,1.036,0.939,1.064,0.976,1.046,0.932,1.085,1.003,1.041,1.084,1.028,1.262 +NM_004485,2.257,0.95,1.309,1.168,1.079,0.823,0.806,1.744,3.12,0.993,0.817,1.121,2.676,1.621,1.304,1.023,1.765,0.996,2.706,0.868,1.441,2.734,0.774,1.65,0.849,2.271,1.046,2.085,0.717,0.826,1.895,0.802,1.224,0.931,1.242,0.795,0.865,1.359,0.868,1.43,2.105,0.797,0.752,0.79,1.834,0.918,1.182,1.968,0.923,1.369,0.83,1.128,0.976,0.934 +NM_004487,0.483,1.408,1.457,0.571,0.892,1.282,0.778,0.491,0.981,0.923,0.975,0.709,0.369,0.516,0.957,1.141,0.934,0.888,0.894,1.635,0.575,0.735,1.534,0.656,0.704,0.619,1.191,0.829,0.594,1.226,0.921,1.741,1.801,1.43,0.728,0.973,0.959,0.927,1.225,0.888,1.155,1.47,0.686,1.087,0.91,1.012,0.889,0.682,0.975,0.81,1.214,0.659,0.801,1.532 +NM_004490,0.921,0.981,0.992,0.907,0.928,0.914,1.006,1.083,0.913,0.991,1.171,1.031,1.015,0.897,0.955,1.071,1.003,1.039,0.831,0.886,0.993,1.059,0.897,0.945,1.086,1.071,1.056,0.979,0.777,1.048,0.855,1.003,1.219,0.844,0.837,0.914,0.923,0.996,1.023,1.082,1.001,1.206,1.285,1.188,0.904,1.043,1.138,1.168,0.937,0.891,1.186,1.115,0.954,1.109 +NM_004491,0.898,1.077,0.993,0.79,1.034,1.111,0.901,0.652,1.001,0.928,0.87,0.932,0.839,0.843,0.97,0.943,0.928,0.845,0.879,1.496,0.613,0.892,1.091,1.081,0.856,0.762,0.983,0.849,0.99,1.451,0.93,1.089,1.56,1.05,0.706,0.95,1.118,1.139,1.309,1.041,1.216,1.201,1.111,1.646,0.954,1.264,1.28,0.804,1.421,0.944,1.104,0.979,0.788,0.877 +NM_004492,0.488,1.155,1.224,0.697,0.886,1.366,0.6,0.61,1.429,1.058,1.223,0.644,0.543,0.813,0.979,1.918,0.816,0.874,1.379,0.832,0.741,0.738,1.837,1.114,0.422,0.749,1.082,1.001,0.386,1.077,1.137,0.97,2.355,1.553,0.421,0.922,1.197,0.756,1.273,0.554,1.207,1.102,0.561,1.024,0.912,0.824,1.036,0.595,0.999,0.586,1.032,1.016,1.006,1.866 +NM_004493,1.029,0.749,1.26,0.598,1.143,0.811,0.462,0.551,1.5,1.623,0.86,1.265,0.843,0.625,0.938,1.58,0.89,1.062,2.064,0.594,0.6,1.087,1.258,1.37,0.408,1.385,1.239,1.174,0.279,0.941,1.301,1.011,1.79,1.024,0.102,0.743,0.892,1.209,1.274,0.399,1.189,0.854,0.391,0.751,1.488,0.793,1.173,1.067,0.769,1.016,0.992,0.906,1.18,1.323 +NM_004494,0.832,0.797,1.061,0.773,0.725,1.338,0.494,0.533,0.899,0.824,1.455,0.776,0.716,0.6,0.996,2.042,0.742,0.868,1.79,0.585,0.538,0.712,1.171,1.406,0.471,0.825,1.256,0.753,0.392,1.055,0.863,1.928,3.716,1.301,0.12,1.862,0.942,0.854,1.836,1.667,0.974,1.062,0.579,2.277,0.966,0.673,1.048,0.637,1.134,0.989,1.001,1.001,1.238,2.097 +NM_004495,1.125,1.065,0.868,1.119,1.026,0.881,0.797,0.93,1.075,1.005,1.005,1.003,1.009,1.027,0.895,0.99,0.975,0.968,1.096,0.877,1.046,0.912,1.016,1.013,1.168,1.106,1.077,0.868,1.046,0.922,1.036,1.032,1.122,0.882,0.992,0.921,0.925,0.978,1.015,0.914,0.975,1.226,0.906,0.89,1.056,1.026,0.991,1.031,1.087,0.968,1.021,0.894,1.205,0.956 +NM_004496,0.398,1.47,1.289,0.553,0.666,1.901,0.736,0.547,0.907,0.594,1.298,0.539,0.57,0.614,1.448,2.376,0.758,1.05,0.94,2.179,0.357,0.594,2.081,1.013,0.717,0.492,1.119,0.818,0.557,1.419,0.668,1.097,0.6,1.586,0.38,0.533,1.442,0.774,1.75,0.536,0.877,1.879,0.774,1.571,0.663,1.891,1.198,0.53,1.726,0.635,1.723,0.657,0.753,1.542 +NM_004497,0.306,1.777,0.301,1.272,0.281,2.432,1.861,0.261,0.258,0.298,2.284,0.274,0.272,0.236,0.652,1.323,0.23,1.843,0.289,1.276,0.277,0.284,1.55,0.283,2.015,0.269,0.292,0.306,1.92,2.533,0.282,1.13,3.321,3.77,0.303,0.861,1.346,0.298,3.375,0.589,0.292,1.932,0.977,1.168,0.269,1.373,0.626,0.277,1.023,0.282,1.347,0.53,0.334,0.442 +NM_004498,1.078,1.149,0.894,1.06,1.184,0.954,0.971,1.002,0.972,0.943,1.032,0.883,1.008,1.04,1.105,1.01,1.053,0.991,0.868,0.992,0.938,0.901,1.016,0.904,1.119,0.825,1.218,1.002,0.885,1.02,0.934,1.012,1.175,0.935,1.044,1.028,1.079,0.906,1.083,0.974,1.033,0.977,0.986,1.03,1.076,1.004,0.978,1.029,0.962,0.997,0.991,1.054,0.945,1.052 +NM_004499,0.664,0.776,0.873,0.825,0.714,1.021,0.741,0.299,1.173,1.168,1.069,0.812,0.484,0.453,0.795,1.74,0.625,0.734,0.797,1.047,0.424,0.527,1.847,0.99,0.637,0.796,0.896,0.677,0.451,1.041,0.779,1.193,2.466,1.323,0.0864,0.848,1.247,0.668,1.714,0.648,0.954,1.224,1.146,1.147,1.131,1.163,0.871,0.559,1.11,0.749,1.355,1.079,1.041,2.139 +NM_004500,0.897,1.003,1.206,1.028,0.84,0.974,0.62,0.435,0.892,1.05,0.922,0.862,0.703,0.505,0.807,1.287,1.046,0.915,1.125,0.887,0.551,0.688,1.363,1.15,0.734,0.864,1.95,0.698,0.318,1.046,0.909,1.147,1.851,1.161,0.851,1.112,1.045,0.807,1.667,1.21,1.117,1.085,0.683,1.887,1.005,0.758,0.949,0.854,0.96,0.807,1.079,0.924,1.162,1.436 +NM_004501,0.468,0.875,1.183,0.602,0.754,0.956,0.5,0.273,1.145,1.2,0.863,0.772,0.344,0.609,0.818,1.39,0.746,0.698,1.072,0.95,0.57,0.59,1.462,1.072,0.507,0.559,1.538,0.695,0.263,1.11,0.9,1.273,2.828,1.167,0.167,1.285,1.105,0.663,1.547,1.553,1.065,1.063,1.025,1.83,1.122,0.962,0.944,0.422,1.221,0.743,1.248,0.948,1.128,2.507 +NM_004502,0.476,2.615,0.475,0.697,0.566,4.425,0.771,0.631,0.45,0.52,3.015,0.53,0.516,0.469,1.573,4.221,0.461,1.377,0.543,2.853,0.503,0.424,2.874,0.63,0.5,0.42,0.515,0.478,0.516,3.236,0.472,1.718,2.603,2.794,0.506,3.147,1.37,0.729,4.08,1.767,0.485,2.772,1.198,4.12,0.588,2.849,1.405,0.478,0.872,0.541,3.264,1.257,0.507,1.732 +NM_004503,2.0300000000000002,2.158,3.115,1.998,2.101,3.0140000000000002,1.666,1.608,2.419,1.716,1.932,3.024,1.691,1.772,1.8519999999999999,1.549,1.9249999999999998,2.402,1.709,2.46,1.383,2.026,1.582,2.046,1.461,2.143,2.343,2.081,1.2570000000000001,3.751,1.9540000000000002,2.9749999999999996,2.186,2.875,1.41,4.109999999999999,2.0620000000000003,2.476,2.215,4.617,1.7890000000000001,2.904,1.526,3.285,1.802,1.233,1.7109999999999999,1.782,1.391,1.952,2.027,1.748,1.6680000000000001,3.037 +NM_004504,0.866,0.609,1.015,0.843,0.903,1.573,0.616,0.668,1.017,0.969,1.079,0.668,0.866,0.716,0.97,0.987,1.31,0.826,1.208,0.776,0.494,0.719,1.267,1.31,0.492,0.65,1.394,0.763,0.394,0.953,1.233,0.903,2.11,1.003,1.526,0.689,1.204,0.943,1.793,1.102,0.996,0.916,0.834,1.417,1.021,1.096,1.071,0.906,1.335,1.169,0.983,0.796,0.678,2.809 +NM_004505,1.063,1.061,1.071,0.916,1.014,1.031,0.989,0.921,1.009,0.975,0.983,0.919,1.027,0.99,0.964,0.978,0.993,0.99,1.046,1.064,0.811,1.13,0.858,1.067,1.178,0.944,1.186,0.992,1.23,1.139,1.219,0.908,1.065,1.125,0.817,0.991,1.096,0.931,1.104,1.023,0.996,0.905,1.451,0.9,1.02,0.807,0.971,0.868,1.141,0.97,1.262,1.035,0.831,1.004 +NM_004506,0.753,1.514,1.237,0.831,0.929,1.255,0.71,0.694,1.06,0.75,0.776,0.92,0.908,0.914,0.857,0.967,0.931,0.814,1.027,0.948,0.716,0.869,1.098,1.021,0.878,0.875,1.508,0.862,0.66,1.333,0.889,1.554,1.254,1.362,0.66,0.837,0.975,1.039,1.347,0.922,0.994,1.127,0.801,1.026,0.818,0.876,0.933,0.873,0.795,0.974,1.052,0.81,1.127,2.266 +NM_004507,0.958,1.072,0.998,0.948,0.903,1.041,1.034,0.943,1.069,1.035,1.172,0.992,0.901,1.053,1.134,0.967,0.844,1.041,0.929,0.972,1.09,0.935,1.005,0.967,0.961,0.943,0.8,1.045,1.132,0.99,0.928,1.166,0.978,0.965,1.091,1.097,1.027,1.156,1.048,0.961,1.074,0.907,1.159,1.02,0.966,1.139,0.986,0.995,1.138,0.985,0.927,1.113,1.051,1.05 +NM_004510,1.165,1.798,2.4080000000000004,1.54,1.2349999999999999,2.453,2.3979999999999997,0.837,1.473,1.3210000000000002,2.388,0.95,0.9450000000000001,0.9490000000000001,2.008,2.377,1.885,1.389,1.314,2.524,1.127,1.0670000000000002,3.12,1.073,1.358,0.9410000000000001,1.74,1.194,1.17,2.2889999999999997,1.0659999999999998,2.577,3.645,3.222,0.7949999999999999,1.8639999999999999,2.3289999999999997,1.124,2.523,1.904,1.818,2.7889999999999997,1.591,3.5780000000000003,1.4129999999999998,2.886,1.738,1.0110000000000001,2.471,1.2959999999999998,2.309,2.3739999999999997,2.1550000000000002,9.234 +NM_004512,0.937,1.101,1.035,1.365,1.047,0.973,0.941,0.901,0.976,0.88,1.109,0.981,0.945,0.836,1.052,1.097,0.957,0.966,0.949,0.981,1.033,1.168,0.975,1.134,1.084,1.03,0.949,0.919,1.435,1.263,0.901,1.42,0.899,1.272,0.874,1.17,0.921,0.942,0.914,0.901,0.958,1.236,0.936,0.955,1.002,0.968,0.976,0.988,0.764,0.989,0.994,1.041,0.953,1.117 +NM_004513,0.919,1.009,1.034,0.795,1.013,1.022,0.941,0.964,0.998,0.963,0.757,1.137,0.99,0.694,0.999,0.968,1.014,0.965,0.923,0.955,0.847,1.027,1.02,1.017,0.9,0.939,1.15,0.898,0.718,1.121,1.097,1.28,0.96,1.113,1.194,0.933,0.914,0.966,1.06,1.06,1.075,1.195,0.782,0.936,1.119,0.866,0.981,0.963,1.0,1.049,1.014,0.904,1.011,1.084 +NM_004515,0.728,0.8,1.154,0.798,0.729,1.098,0.47,0.483,1.151,1.052,1.006,1.075,0.828,0.611,0.819,1.461,0.691,0.865,1.489,0.719,0.561,0.926,1.167,1.233,0.649,0.866,1.307,0.669,0.335,1.041,0.895,1.416,3.556,1.107,0.157,1.457,1.015,0.817,1.667,1.184,1.051,0.977,0.692,1.779,1.081,0.796,0.991,0.828,0.889,0.815,0.902,0.99,1.082,2.141 +NM_004516,0.867,0.967,1.1,0.976,0.985,0.748,0.674,0.811,1.167,1.126,0.938,0.848,0.735,0.942,0.901,1.069,0.999,0.871,0.947,0.83,0.771,0.664,1.321,0.883,0.851,0.883,1.1,0.948,0.713,1.002,0.974,1.168,1.527,0.947,0.734,0.955,1.042,0.872,1.259,1.104,1.095,0.868,0.861,1.317,0.996,0.921,1.011,0.873,1.132,0.939,1.072,0.784,1.092,1.341 +NM_004518,1.11,0.934,0.973,1.0,0.862,1.066,1.175,1.149,1.021,0.919,0.852,0.938,1.017,1.182,0.986,1.053,0.941,1.001,0.95,1.018,0.925,1.013,1.013,0.976,1.126,1.08,0.993,1.004,1.008,1.046,0.926,1.107,1.094,0.992,1.104,1.177,1.111,1.059,1.216,0.997,0.965,1.094,0.893,1.0,1.021,0.995,0.921,0.965,1.011,0.909,1.025,0.96,0.934,1.085 +NM_004519,1.163,0.991,0.914,1.335,1.033,1.123,0.789,1.115,1.031,0.968,1.169,1.039,0.982,1.207,0.915,1.132,0.947,0.946,0.717,0.947,1.088,0.943,0.967,0.951,1.044,0.883,0.962,0.993,0.826,0.949,0.957,1.057,0.993,1.02,0.859,1.084,1.067,1.152,0.935,1.104,1.02,0.956,0.913,0.886,0.921,0.989,1.04,0.907,1.095,1.041,0.955,0.936,1.135,1.106 +NM_004520,0.876,0.786,1.222,0.828,0.956,0.911,0.74,0.651,1.226,1.192,0.919,0.953,0.831,0.971,1.162,1.201,0.936,0.808,1.398,0.635,0.738,0.916,1.053,1.006,0.723,0.865,1.477,0.957,0.534,1.012,1.24,1.008,2.294,0.994,1.881,0.822,1.021,0.868,1.231,0.878,1.017,0.912,0.851,1.493,1.067,1.002,0.942,0.824,1.418,1.011,0.91,0.837,1.182,1.558 +NM_004521,0.811,0.914,1.006,0.898,1.045,0.968,0.868,0.77,1.044,1.167,1.009,0.843,0.645,0.838,0.784,1.095,1.069,0.933,0.959,0.913,0.656,0.799,1.028,1.122,0.753,0.812,1.317,1.005,0.632,0.907,0.946,1.185,2.131,1.026,1.143,0.916,0.924,0.773,1.432,1.024,1.03,0.985,0.949,1.894,1.085,1.202,1.264,0.857,1.141,1.01,0.941,0.869,1.144,1.427 +NM_004524,0.677,1.299,0.97,1.16,0.595,1.499,0.723,0.271,0.96,0.736,1.173,0.478,0.414,0.497,0.965,1.328,0.75,1.072,0.88,1.184,0.218,0.613,1.396,0.746,0.701,0.858,0.813,0.575,0.673,1.636,0.542,1.796,0.977,1.708,0.312,1.107,1.248,0.677,2.283,0.615,0.675,1.144,1.072,1.776,0.89,1.175,0.863,0.765,1.108,0.756,1.52,0.771,0.545,2.019 +NM_004525,0.968,0.92,1.002,1.029,0.9,0.997,1.07,1.173,0.902,0.893,0.956,1.024,0.92,0.791,0.923,1.036,1.075,1.038,0.996,0.849,1.199,1.012,0.831,1.064,1.07,1.013,1.056,1.076,0.651,1.147,1.04,0.965,1.056,1.03,0.932,1.054,1.075,0.859,1.015,0.994,0.957,0.982,1.072,1.007,1.023,1.112,0.983,1.08,0.798,1.105,0.901,0.984,0.833,0.972 +NM_004526,0.702,1.064,1.021,0.619,0.835,0.724,0.426,0.272,1.185,1.472,0.416,1.171,0.513,0.642,0.714,0.855,0.86,0.987,1.166,0.686,0.62,0.842,1.725,1.336,0.489,0.805,2.9,0.649,0.419,1.065,0.751,1.779,4.566,0.873,0.186,2.443,1.0,0.996,2.362,1.477,1.168,0.741,0.707,3.198,1.123,0.94,1.038,0.653,1.619,0.887,1.194,1.48,1.175,2.936 +NM_004527,1.092,0.872,0.982,1.011,1.18,0.987,1.056,0.923,1.055,1.09,1.087,1.003,0.951,0.806,0.894,1.183,1.049,0.926,1.042,0.887,1.011,0.938,0.959,1.004,0.984,1.09,1.145,1.001,0.814,0.907,1.214,1.125,0.999,1.162,0.983,1.054,1.169,1.151,0.933,0.955,1.019,1.091,0.93,0.904,1.042,0.991,1.174,0.932,0.923,1.072,1.006,0.905,0.915,1.062 +NM_004528,0.36,1.531,0.527,0.877,0.498,2.267,1.032,0.317,0.616,0.547,1.376,0.684,0.327,0.293,1.09,2.544,0.435,1.159,0.604,1.702,0.205,0.564,1.764,0.5,0.769,0.517,0.532,0.523,0.646,1.812,0.555,1.177,0.995,1.876,0.0473,2.221,1.916,0.482,1.865,0.601,0.463,1.475,0.821,0.985,0.429,1.726,1.319,0.497,1.295,0.267,1.525,0.655,0.28,1.196 +NM_004529,0.618,1.193,0.91,1.011,0.634,2.11,1.53,0.596,0.768,0.588,2.459,0.681,0.715,0.623,1.056,1.308,0.625,1.267,0.88,2.152,0.53,0.793,1.628,0.762,1.122,0.687,0.854,0.796,1.21,2.047,0.686,1.344,0.73,2.107,0.488,0.465,1.752,0.789,1.425,0.964,0.815,1.907,0.902,0.89,0.595,3.143,0.864,0.568,1.102,0.613,1.466,0.968,0.719,1.038 +NM_004530,0.567,1.065,0.623,0.828,0.629,1.109,1.297,0.584,0.559,0.604,1.011,0.622,0.547,0.57,1.048,0.968,0.499,0.663,0.584,1.07,0.585,0.535,2.452,0.598,0.941,0.556,0.572,0.532,0.465,3.142,0.504,21.59,2.503,2.741,0.512,0.912,1.119,0.678,3.852,4.361,0.575,1.917,0.951,0.841,0.69,1.673,0.806,0.577,0.676,0.642,1.581,1.981,0.718,1.267 +NM_004531,1.0,1.09,1.052,0.977,1.061,1.059,1.018,0.928,0.972,0.964,0.781,0.991,1.05,0.969,1.098,1.263,0.979,0.93,0.985,1.243,0.843,1.069,1.123,1.05,1.013,1.0,1.003,1.039,0.995,1.044,1.13,1.064,1.253,0.998,0.936,1.162,1.089,0.873,1.108,0.846,1.019,1.048,0.931,0.902,0.956,0.928,0.985,0.911,1.065,0.912,1.097,0.974,1.182,1.109 +NM_004533,1.075,1.164,0.993,0.937,1.124,1.029,1.06,1.01,0.919,0.939,0.929,1.002,1.07,1.057,1.115,0.95,1.043,1.083,0.999,1.04,1.012,0.959,1.025,0.941,0.965,1.012,0.934,0.948,1.345,1.015,1.145,1.052,0.946,1.114,1.148,0.924,1.002,1.035,1.022,0.983,0.917,1.001,1.113,0.988,0.983,1.093,0.889,0.921,1.103,0.942,1.1,1.093,0.984,1.128 +NM_004535,1.057,0.934,0.945,0.953,0.868,1.095,1.092,0.95,1.3,0.951,1.018,0.871,0.95,1.324,0.919,1.175,0.846,1.018,0.852,0.938,1.202,0.968,0.93,0.899,0.932,0.872,0.875,0.832,1.942,1.184,1.141,1.092,1.171,0.979,0.946,1.014,1.176,1.145,1.095,0.913,0.863,0.969,1.0,0.939,0.971,1.125,0.737,1.081,1.0,0.964,1.25,1.142,1.144,1.121 +NM_004536,1.029,0.945,1.045,0.83,1.072,0.889,1.015,0.959,1.134,1.077,0.879,0.921,0.91,1.0,0.969,1.058,0.833,0.934,0.987,0.984,0.903,1.1,0.955,0.985,0.955,1.027,0.988,0.992,1.549,1.094,0.883,0.938,0.964,1.076,1.042,0.951,1.106,1.007,1.206,1.142,1.066,1.128,1.062,0.893,0.901,0.899,1.105,1.079,1.093,0.914,1.043,0.884,0.955,1.22 +NM_004537,0.717,0.929,1.215,0.87,0.928,0.869,0.866,0.74,1.301,1.174,0.835,0.972,1.093,0.711,1.016,1.192,0.67,0.928,1.125,0.812,0.585,0.688,1.504,1.233,0.754,0.765,1.318,1.002,0.355,1.063,1.107,1.629,1.717,1.53,0.361,1.276,0.815,0.904,1.183,0.973,1.096,1.236,0.502,0.925,1.116,0.631,0.805,0.617,0.587,1.064,1.197,1.335,1.172,1.592 +NM_004538,0.948,1.042,0.898,0.95,0.962,0.899,1.045,0.83,0.891,1.034,0.959,1.12,0.871,0.929,0.918,1.037,1.004,0.932,1.053,0.9,0.943,0.963,1.05,0.944,1.006,1.017,0.983,0.945,1.63,1.1,0.921,1.349,0.829,1.168,1.092,0.907,0.983,1.169,1.062,0.953,1.09,1.146,1.196,1.035,0.98,0.996,0.903,0.919,0.98,0.952,1.027,0.965,0.994,0.878 +NM_004539,0.692,0.859,1.007,0.679,0.887,1.581,0.645,0.337,1.137,0.984,1.189,0.862,0.43,0.504,0.834,2.468,0.741,1.001,0.788,1.334,0.316,0.832,1.479,1.352,0.92,0.637,1.304,0.762,0.568,1.836,0.822,0.899,1.337,1.28,0.108,1.197,1.733,0.797,1.836,0.531,1.077,1.521,1.251,1.404,0.899,1.492,0.913,0.725,1.873,0.783,1.505,1.168,0.669,1.193 +NM_004540,1.033,0.996,0.989,0.955,0.848,0.97,1.051,0.869,0.917,1.091,1.033,0.953,0.982,1.148,1.17,1.03,1.021,1.191,1.102,1.099,0.973,0.797,0.959,0.886,1.117,0.918,1.048,0.92,1.17,0.93,1.014,1.322,0.897,1.057,0.951,1.039,1.013,0.891,1.087,1.049,0.99,1.099,1.049,0.878,0.98,1.141,0.96,0.987,0.835,1.107,0.949,1.017,1.059,0.909 +NM_004541,0.748,1.096,0.878,0.882,0.781,1.478,0.678,0.487,1.107,0.77,1.438,0.623,0.679,0.581,0.919,1.763,0.768,1.253,1.273,1.27,0.427,0.936,1.14,0.977,0.943,0.923,1.067,0.867,0.581,1.309,0.815,0.971,1.462,1.692,0.173,1.041,1.573,1.0,1.489,0.413,0.871,1.258,0.786,0.903,0.775,1.23,0.965,0.831,1.164,0.781,1.257,0.842,0.81,1.072 +NM_004542,0.65,1.085,1.105,0.764,0.9,1.504,0.854,0.649,0.991,1.009,1.27,1.014,0.832,0.441,0.897,2.537,1.083,1.428,1.025,1.569,0.456,0.793,2.175,0.984,0.795,0.785,0.906,0.802,0.496,1.237,0.91,1.159,2.221,1.562,0.333,0.698,1.524,0.837,1.622,0.718,0.826,1.497,0.867,1.146,1.113,1.184,1.403,0.794,1.433,0.761,1.374,0.881,0.888,1.247 +NM_004543,0.887,0.858,0.931,1.019,1.032,1.164,1.209,0.902,0.837,0.859,1.253,1.277,0.837,1.086,0.973,1.088,1.038,1.307,0.848,1.361,0.877,0.868,1.715,0.917,1.074,0.999,0.953,0.825,0.719,1.011,0.832,1.143,1.194,0.992,1.0,1.031,1.107,0.819,1.675,0.922,0.873,1.005,1.228,0.992,1.081,1.345,1.06,1.084,0.959,0.942,1.379,0.914,0.839,2.874 +NM_004544,0.889,0.922,1.109,0.913,0.898,1.168,0.487,0.374,1.492,1.06,1.255,0.87,0.646,0.718,1.061,1.576,1.069,0.895,1.571,0.877,0.616,0.76,1.21,1.168,0.892,1.105,1.203,1.048,0.385,1.13,0.985,1.209,1.742,1.328,0.223,0.824,1.011,0.892,1.029,0.484,1.234,0.971,0.999,1.444,1.201,1.231,0.941,0.88,0.963,0.963,0.934,0.629,1.117,3.024 +NM_004545,0.611,0.932,1.13,0.642,0.917,1.291,0.644,0.892,1.261,1.01,1.778,1.037,0.829,0.694,1.019,1.934,1.0,1.32,1.828,1.076,0.603,1.243,1.162,1.093,0.659,0.824,1.19,0.988,0.591,1.138,0.928,1.276,1.57,1.454,0.189,1.039,1.216,1.286,1.154,0.631,1.091,1.097,0.559,1.103,0.907,0.903,1.036,1.038,0.97,0.751,1.082,0.726,0.94,0.994 +NM_004546,0.792,1.004,0.915,0.638,0.951,1.007,0.584,0.553,0.999,0.949,1.193,0.981,0.917,0.397,0.812,1.859,0.838,1.28,1.356,1.159,0.512,1.031,1.635,0.993,0.957,1.227,0.94,0.863,0.578,1.267,0.779,0.945,1.096,1.178,0.0757,0.766,1.317,1.123,1.256,0.442,1.041,1.106,0.764,1.111,1.066,0.945,1.124,1.263,0.883,0.811,1.027,0.974,0.933,1.191 +NM_004547,0.534,0.924,1.287,0.652,1.005,1.067,0.534,0.549,1.003,0.952,1.316,0.701,0.489,0.551,1.035,1.894,1.04,0.908,1.513,0.956,0.582,0.671,1.134,1.078,0.456,0.68,1.275,0.921,0.289,1.23,0.91,1.23,2.162,1.378,0.348,0.76,1.314,0.985,1.285,0.461,1.279,1.066,0.694,0.969,1.012,1.036,1.194,0.65,1.313,0.754,1.162,0.732,0.96,1.685 +NM_004548,0.439,0.995,0.987,0.537,0.868,1.758,0.593,0.565,0.957,0.91,1.134,0.885,0.713,0.477,0.933,2.635,0.919,1.207,1.185,0.968,0.559,1.024,1.178,1.135,0.759,0.607,1.335,0.698,0.686,1.33,1.005,1.625,2.501,1.798,0.201,0.669,1.279,1.292,1.741,0.67,1.044,1.291,0.611,0.708,0.811,1.029,1.299,0.909,0.98,0.763,1.095,0.576,0.66,0.92 +NM_004550,0.674,0.929,1.157,0.931,0.872,1.08,0.66,0.271,0.943,0.958,0.818,0.689,0.56,0.418,0.677,1.504,0.83,1.113,0.933,0.9,0.365,0.636,1.339,0.87,0.861,0.854,1.14,0.666,0.5,1.212,0.669,1.28,1.226,1.076,0.196,1.669,1.284,0.625,1.695,0.932,1.053,1.222,0.873,1.349,1.114,1.197,1.191,0.995,1.39,0.911,1.127,0.662,0.997,1.706 +NM_004551,0.536,0.955,0.929,0.794,0.742,1.447,0.63,0.451,1.04,0.767,1.718,0.819,0.625,0.491,1.077,2.868,0.641,1.061,1.539,0.86,0.684,0.683,1.451,0.909,0.789,0.817,1.174,0.694,0.562,1.513,0.669,0.822,1.445,1.85,0.187,1.466,1.845,0.735,1.588,0.581,0.975,1.236,0.806,1.175,0.844,1.337,1.086,0.78,1.605,0.702,1.069,0.763,1.002,1.885 +NM_004552,0.51,0.947,1.487,0.57,1.281,1.094,0.569,0.452,1.59,1.276,0.755,0.669,0.518,0.724,0.96,1.642,1.076,1.244,1.912,0.947,0.715,1.254,1.239,1.091,0.304,0.705,1.561,1.06,0.341,0.987,1.269,1.515,2.341,1.45,0.143,0.682,1.086,1.215,1.541,0.504,1.289,1.06,0.675,0.941,0.92,0.913,0.975,0.93,1.284,0.898,1.127,0.612,0.722,1.634 +NM_004553,0.637,0.924,0.915,0.718,0.84,1.035,0.601,0.496,0.968,0.955,1.135,1.096,0.718,0.433,0.724,1.553,0.764,1.157,1.096,1.009,0.388,0.746,1.167,1.097,0.613,0.844,1.009,1.016,0.437,1.138,0.769,1.21,1.968,1.199,0.0774,1.532,1.1,0.998,1.363,1.067,1.001,0.979,0.721,1.545,1.012,1.011,1.065,0.882,1.189,0.757,1.056,1.229,0.855,1.623 +NM_004555,1.006,1.029,1.057,0.899,0.942,1.002,0.833,0.963,1.023,0.896,1.04,0.962,0.769,0.937,1.023,0.907,0.945,0.85,1.14,0.954,0.892,0.963,1.033,0.953,0.974,0.895,1.132,1.017,0.672,1.028,1.171,0.985,1.034,0.959,0.832,0.919,0.979,1.121,0.895,0.969,1.024,1.103,0.968,1.089,1.046,0.906,0.883,1.011,0.993,0.988,1.061,0.842,0.998,1.055 +NM_004556,0.51,1.324,0.878,0.833,0.611,1.463,1.032,0.452,0.746,0.669,1.028,0.567,0.564,0.517,0.775,1.551,0.616,1.087,0.714,0.95,0.402,0.555,1.095,0.619,0.616,0.56,1.143,0.675,0.563,1.46,0.857,2.235,1.47,1.503,0.784,0.874,1.161,0.517,1.872,2.379,0.684,1.154,0.734,1.403,0.56,0.944,1.366,0.461,0.838,0.588,1.114,1.661,0.628,3.302 +NM_004557,1.19,0.917,0.807,0.988,0.988,0.966,1.18,0.928,1.017,0.689,1.042,0.937,1.024,0.952,1.291,1.0,1.085,0.942,0.969,0.928,0.962,1.051,0.987,0.886,1.031,0.991,0.965,0.957,1.372,0.927,1.017,1.015,1.045,0.931,0.982,0.948,0.934,1.072,1.252,1.231,0.919,1.051,0.827,0.906,0.974,1.097,0.808,0.906,0.983,1.048,1.116,1.06,1.282,1.066 +NM_004558,1.226,0.9,1.0,1.141,1.158,0.94,0.919,0.991,1.04,0.962,0.946,1.005,1.304,1.012,0.943,0.864,1.332,0.979,1.298,1.018,1.093,1.086,0.966,0.932,1.1,1.238,0.994,1.131,0.911,0.988,1.044,1.102,1.006,1.004,3.111,1.034,0.917,1.251,1.028,0.988,0.969,0.973,0.8,1.018,1.16,0.964,1.108,1.876,0.926,1.235,0.931,0.876,1.205,0.947 +NM_004560,0.754,1.46,0.751,1.472,0.758,1.726,1.396,0.787,0.803,0.823,1.326,0.758,0.773,0.827,0.782,1.056,0.776,1.292,0.901,1.301,0.835,0.762,1.364,0.687,1.459,0.697,1.073,0.754,1.479,3.301,0.816,3.756,1.883,3.447,0.821,0.959,1.126,0.819,1.034,1.493,1.096,2.276,1.169,1.01,0.783,0.892,0.673,0.769,0.779,0.876,1.654,0.878,1.031,1.287 +NM_004561,1.553,0.579,1.292,0.794,1.856,0.811,0.415,2.206,1.514,1.756,0.737,1.373,1.268,1.297,1.538,1.636,1.416,1.112,2.546,0.612,1.574,1.897,0.653,1.629,0.542,2.003,1.296,1.762,0.319,0.596,1.919,0.68,1.326,0.599,2.624,0.837,0.834,1.62,0.828,0.76,1.88,0.73,1.006,0.644,1.44,0.837,1.525,2.714,0.942,1.422,0.801,0.629,2.761,0.962 +NM_004562,1.072,0.779,0.968,1.274,1.042,0.877,1.379,1.088,0.872,1.131,0.84,1.039,1.106,1.043,0.979,0.883,1.017,0.915,0.951,0.965,0.924,1.188,1.14,1.052,0.911,1.282,1.044,1.006,0.994,1.035,0.931,1.049,0.884,1.223,1.046,0.793,0.998,0.922,1.013,1.107,0.872,0.856,1.04,0.828,1.087,1.006,0.837,1.068,1.053,0.988,0.841,0.855,0.904,1.12 +NM_004563,0.706,0.75,0.906,0.905,0.546,2.125,0.951,0.414,0.779,0.914,2.637,0.562,0.509,0.51,1.692,6.105,0.586,1.023,0.998,1.177,0.473,0.725,1.727,0.933,0.87,1.157,0.811,0.538,0.631,1.648,0.675,0.852,1.504,1.47,0.233,0.709,5.845,0.76,1.285,1.239,0.681,1.848,2.601,3.817,0.719,1.8,2.085,0.977,1.487,0.724,1.275,0.669,0.92,1.603 +NM_004565,0.883,1.008,1.043,0.803,0.843,1.104,0.891,0.78,1.123,0.863,1.118,0.875,0.865,0.99,0.962,1.702,0.919,0.905,1.503,0.99,1.166,0.934,0.945,0.954,0.882,1.034,1.069,0.911,0.867,0.991,1.037,1.049,1.568,1.406,0.678,0.869,1.004,0.87,1.364,1.031,1.136,0.92,0.729,1.26,0.926,0.804,0.896,0.958,0.882,1.124,1.02,0.873,1.283,1.282 +NM_004567,0.948,0.928,1.696,0.832,1.129,0.712,0.883,0.604,0.81,0.821,0.742,1.047,0.676,1.113,1.306,1.943,0.986,0.995,1.464,0.992,0.639,1.229,1.115,1.123,0.58,1.297,1.261,1.554,0.474,0.878,0.898,1.725,0.814,0.682,0.615,0.617,1.492,1.495,0.759,2.504,1.381,0.901,0.666,0.719,1.049,1.29,1.58,1.09,0.946,1.661,1.14,0.953,1.164,1.413 +NM_004568,0.711,1.145,0.836,0.863,0.922,2.356,0.657,0.629,1.075,0.848,2.965,0.715,0.484,0.59,1.724,4.024,0.853,0.953,0.994,2.386,0.425,0.692,1.963,0.846,0.475,0.861,0.733,0.965,0.453,1.557,0.864,0.751,1.705,1.357,1.063,1.082,2.702,0.862,2.118,0.566,0.991,2.073,1.655,1.441,0.827,2.658,1.33,0.867,2.8,0.618,2.867,0.85,0.771,1.51 +NM_004569,0.593,1.219,0.947,0.806,0.792,1.428,0.779,0.686,0.987,0.907,1.252,0.903,0.704,0.521,1.032,1.48,0.702,0.941,0.853,1.346,0.505,0.751,1.314,1.079,0.811,0.713,0.959,0.846,0.62,1.558,0.763,1.066,1.194,1.459,0.363,1.313,1.24,0.786,1.362,1.079,0.893,1.278,0.68,1.212,0.854,0.969,1.187,0.703,1.081,0.675,1.391,0.854,0.654,1.198 +NM_004570,1.021,1.197,0.934,1.099,0.943,1.256,1.073,0.806,0.899,0.859,1.237,0.885,0.937,1.046,0.949,0.787,0.918,1.098,0.841,1.377,0.896,1.006,1.55,0.854,1.113,0.913,0.811,0.931,0.825,0.967,1.005,0.925,0.832,1.84,0.999,0.791,1.38,1.101,0.928,0.854,0.948,1.173,1.319,0.852,0.924,1.775,0.95,0.875,1.066,0.884,1.305,0.963,0.845,0.784 +NM_004571,0.957,1.004,1.089,0.975,1.097,0.853,1.106,0.928,1.061,1.013,0.972,0.896,0.894,0.982,1.039,0.919,0.96,1.11,1.227,0.964,1.006,1.14,0.791,1.038,0.903,1.007,0.946,1.09,1.133,1.145,1.081,0.999,1.029,0.899,1.016,1.021,1.08,1.101,0.894,0.967,0.988,1.01,1.256,0.83,1.161,1.171,0.842,0.937,0.894,1.091,0.947,1.006,0.932,0.944 +NM_004572,0.649,1.111,0.657,1.0,0.648,1.232,0.869,0.56,0.805,0.857,1.337,0.698,0.693,0.651,1.227,1.86,0.599,0.666,0.624,1.597,0.658,0.549,2.165,0.738,0.822,0.702,0.763,0.645,0.659,1.259,0.704,0.664,3.779,1.224,0.589,1.871,1.455,0.621,1.188,1.115,0.719,1.262,2.324,1.7,0.728,1.705,1.294,0.645,2.767,0.579,1.378,1.036,0.791,2.401 +NM_004573,1.036,0.972,1.094,1.034,0.93,1.116,1.109,1.047,0.928,0.914,0.875,0.911,0.895,1.093,1.096,0.85,0.993,0.975,1.012,0.918,0.961,0.999,0.897,0.86,1.015,1.115,1.128,0.913,0.691,1.351,1.003,1.211,1.009,1.527,0.858,0.908,1.084,0.98,1.113,1.275,0.94,1.015,1.245,0.833,0.939,0.845,0.901,0.843,0.854,0.989,0.975,0.961,1.067,2.417 +NM_004576,0.999,1.14,0.874,1.041,1.011,0.976,1.19,0.982,0.931,0.902,1.014,0.971,0.928,1.044,0.869,0.949,1.044,1.034,1.018,0.951,1.024,1.187,1.08,0.944,1.059,1.031,1.001,0.983,0.807,1.024,1.166,1.176,0.989,0.982,1.082,1.03,1.025,1.123,0.939,0.985,1.022,1.103,0.967,0.934,0.943,1.035,1.062,1.056,0.948,1.136,0.994,0.93,1.049,0.879 +NM_004578,0.752,1.112,0.987,0.883,1.041,1.154,0.66,0.688,0.973,0.924,1.481,0.894,0.695,0.781,1.042,1.589,0.712,1.049,0.979,1.353,0.564,0.814,1.15,0.994,0.896,0.844,0.813,0.972,0.691,0.927,0.906,1.029,1.44,1.726,0.507,0.795,1.061,0.754,1.074,0.744,1.018,1.301,0.723,0.843,1.071,1.071,0.809,0.821,0.966,0.741,1.273,0.689,0.879,1.003 +NM_004579,0.625,1.975,1.109,0.813,1.153,2.107,0.782,0.722,1.25,1.006,0.879,0.952,0.552,0.844,0.793,0.706,0.854,1.146,0.831,1.063,0.474,0.663,0.987,0.799,1.083,0.743,1.14,0.811,0.759,3.164,0.908,3.873,2.384,1.924,1.036,2.81,1.176,0.97,2.716,2.22,0.687,1.059,0.715,1.482,0.804,0.8,0.942,0.769,0.421,0.645,0.862,0.981,0.85,2.509 +NM_004580,0.944,1.062,1.007,0.998,1.039,0.929,0.848,1.261,0.936,1.06,1.143,0.922,0.925,0.918,0.974,0.881,0.96,1.134,1.109,1.062,1.125,1.077,0.828,0.916,1.023,1.037,1.155,1.105,0.889,0.986,1.035,1.007,1.153,1.025,1.039,1.202,0.879,1.024,1.029,1.096,1.113,0.975,0.926,1.117,0.772,1.073,0.996,0.984,0.99,1.022,1.032,0.884,1.217,0.831 +NM_004581,1.157,0.948,1.006,1.008,1.019,0.892,0.938,0.972,1.23,1.023,0.983,1.024,0.88,0.992,1.094,0.957,1.074,0.996,0.986,0.95,1.027,0.965,1.018,0.938,1.006,0.935,1.044,1.066,1.127,1.094,0.96,0.963,0.926,0.988,1.001,0.979,1.022,1.091,0.94,0.973,1.072,1.06,1.01,0.973,1.082,0.925,0.938,1.01,0.839,0.969,0.977,0.931,0.96,0.934 +NM_004582,0.677,1.112,1.135,0.822,0.8,1.06,0.72,0.682,1.157,0.851,1.006,1.001,0.652,0.752,1.212,1.315,0.912,0.954,0.821,1.073,0.661,0.91,1.068,1.349,0.662,0.846,1.372,0.892,0.774,1.164,1.158,1.138,2.051,1.145,0.755,0.644,0.919,0.999,1.332,0.831,1.116,1.069,0.621,0.922,0.939,1.028,0.942,0.792,1.219,0.911,0.949,0.831,0.802,1.841 +NM_004583,0.871,1.207,0.815,0.814,0.715,1.851,0.721,0.658,0.796,0.738,0.994,0.677,0.862,0.623,0.803,1.534,1.106,1.272,0.977,0.785,0.68,1.307,0.959,0.909,1.144,1.023,1.065,0.563,1.417,1.19,0.735,1.359,0.984,1.496,0.65,0.695,1.376,1.127,2.941,0.917,0.949,1.333,0.805,1.691,0.738,0.9,0.895,1.285,1.113,0.832,0.909,0.792,0.65,0.804 +NM_004584,1.105,1.024,0.981,0.933,0.947,0.924,0.948,0.866,1.019,0.865,0.963,0.894,0.867,0.887,1.022,1.098,0.876,1.029,1.048,1.057,0.994,1.078,1.172,1.032,1.094,1.077,0.996,0.835,0.996,1.189,0.97,1.207,1.542,1.149,0.858,1.242,0.856,0.993,1.186,1.221,1.068,0.989,0.853,1.169,0.914,0.992,0.892,0.956,0.945,0.959,1.09,0.968,0.796,1.108 +NM_004585,0.282,0.7,0.628,0.972,0.202,3.064,1.938,0.169,0.226,0.208,2.091,0.184,0.232,0.187,1.178,1.955,0.352,1.252,0.217,2.126,0.267,0.187,1.331,0.263,0.983,0.238,0.409,0.239,0.706,1.759,0.185,1.45,1.371,2.261,0.139,0.474,1.708,0.18,1.884,0.16,0.328,2.484,1.017,1.785,0.301,1.159,1.245,0.221,2.022,0.228,1.946,1.518,0.663,1.722 +NM_004586,0.755,1.03,1.083,1.039,0.943,1.033,0.89,0.871,1.146,0.995,0.879,0.835,0.872,0.787,1.169,1.234,0.911,0.971,0.918,1.224,0.92,0.912,1.212,0.946,0.874,0.823,1.051,0.964,0.699,0.943,1.032,1.104,1.335,1.048,0.725,0.847,0.943,0.944,1.192,0.894,1.073,0.853,1.112,0.888,0.974,1.183,1.342,0.887,1.449,0.99,1.165,0.997,0.982,1.03 +NM_004587,0.471,0.855,0.715,0.697,0.589,1.291,0.98,0.427,1.036,0.822,0.861,0.478,0.443,0.439,0.763,1.417,0.722,0.753,0.546,1.451,0.544,0.536,1.944,0.684,0.916,0.524,0.999,0.597,0.766,1.798,0.668,1.261,1.579,1.339,0.63,2.017,0.806,0.599,1.87,1.066,0.77,1.357,0.994,1.869,0.566,1.74,1.196,0.447,2.236,0.66,1.623,0.99,0.689,1.136 +NM_004588,0.937,1.055,0.945,1.017,1.004,0.976,1.0,0.985,1.057,1.057,0.969,0.939,0.988,0.868,1.056,0.857,0.959,1.0,0.993,0.974,0.92,1.005,1.091,1.036,0.942,0.942,1.076,1.025,0.839,0.914,1.009,1.103,1.09,1.148,1.075,1.011,0.923,1.167,0.977,1.024,0.999,1.114,1.056,1.028,1.042,1.033,0.948,1.107,0.947,0.989,0.992,1.09,1.035,1.058 +NM_004589,0.778,0.832,0.901,0.904,0.784,1.038,0.743,0.492,0.997,0.926,1.28,0.686,0.563,0.707,1.124,1.834,0.732,0.752,1.011,1.142,0.578,0.651,1.295,1.003,0.626,0.744,1.137,0.611,0.612,1.395,0.726,1.076,1.523,1.323,0.323,0.914,1.204,0.6,1.147,0.815,0.934,1.158,1.048,1.138,1.024,1.317,0.979,0.65,1.463,0.626,1.1,0.805,0.925,1.723 +NM_004590,1.001,0.914,0.944,1.025,1.069,1.069,1.113,1.016,0.97,1.115,1.073,0.976,1.051,0.897,1.018,0.987,0.91,0.902,1.019,1.063,1.068,1.086,1.078,0.956,0.953,0.975,0.833,0.919,0.998,1.055,0.911,0.995,1.081,1.192,0.873,0.979,0.977,0.981,1.074,1.012,1.079,1.059,0.999,1.164,1.108,1.04,0.979,0.915,0.987,1.121,1.035,0.945,1.025,0.938 +NM_004591,0.436,2.439,0.869,3.213,0.611,1.54,0.918,0.503,0.454,0.654,0.872,0.625,0.506,0.601,0.726,1.52,0.796,0.651,0.459,0.785,0.477,0.451,1.04,0.473,0.421,0.442,0.804,0.451,0.38,1.198,0.97,1.215,1.352,4.435,0.604,1.457,1.729,0.459,3.134,16.42,0.479,1.774,0.566,3.654,0.634,0.91,1.919,0.501,3.262,1.271,1.865,2.008,0.921,10.37 +NM_004593,0.5,1.0,1.333,0.538,1.089,1.628,0.767,0.532,1.515,1.155,0.585,1.524,0.919,0.676,0.999,2.178,0.702,0.999,0.607,1.196,0.273,1.279,1.335,1.888,0.437,0.422,1.282,0.99,0.515,1.081,1.374,1.557,2.545,0.378,0.259,0.364,0.922,1.311,1.762,1.201,1.134,1.129,0.588,0.437,1.249,0.912,1.159,0.805,1.74,0.822,0.833,0.745,0.332,1.784 +NM_004594,0.947,0.89,0.999,1.063,1.065,0.943,0.967,0.881,1.017,1.093,0.98,1.036,0.936,0.954,0.89,1.001,1.066,0.926,0.874,1.115,0.881,1.085,1.09,1.017,1.084,0.979,0.925,0.905,1.007,0.911,1.015,0.966,1.059,1.004,0.902,0.954,0.922,1.004,1.046,1.213,1.007,1.028,1.055,1.116,1.175,0.919,1.093,1.055,1.046,1.018,1.029,0.906,1.133,1.215 +NM_004595,0.54,1.299,0.777,0.763,0.652,0.972,0.599,0.49,0.953,0.386,1.179,0.608,0.474,0.619,0.999,1.761,0.439,0.728,0.924,1.155,0.619,0.392,1.468,0.676,0.554,0.622,0.648,1.035,0.277,1.076,0.91,1.334,4.032,1.479,1.651,1.486,1.143,0.677,1.481,0.812,0.949,1.083,1.006,1.001,0.626,1.266,1.226,0.586,1.59,0.643,1.341,1.335,0.803,2.572 +NM_004596,0.839,0.82,1.02,0.857,0.81,0.999,0.715,0.594,1.032,0.963,0.67,0.903,0.891,0.689,0.899,1.378,0.881,0.929,1.18,0.834,0.799,0.843,1.311,1.164,0.736,0.955,1.052,0.638,0.546,1.001,0.819,1.163,2.324,1.108,0.451,1.139,0.846,0.861,1.682,1.006,0.971,0.958,0.677,1.778,1.018,0.868,0.952,0.818,1.024,0.994,1.049,0.841,0.952,1.538 +NM_004597,0.698,1.082,1.19,0.666,1.028,0.924,0.563,0.538,1.058,1.145,0.975,1.561,1.035,0.548,0.704,1.256,0.76,1.121,1.07,1.202,0.498,0.75,1.915,1.325,0.488,1.02,1.292,0.966,0.282,0.902,0.798,1.016,1.755,1.015,0.0691,1.428,0.989,1.025,1.138,1.221,1.135,0.945,0.559,1.174,1.264,0.707,1.214,0.891,1.002,0.775,0.906,1.208,1.044,1.3 +NM_004598,0.94,0.966,1.008,0.942,1.084,0.907,0.793,1.028,0.987,1.019,1.083,0.936,0.889,0.807,0.783,0.879,1.055,1.023,0.843,0.858,0.973,0.948,0.987,0.948,0.919,1.076,0.972,0.893,1.03,0.992,1.146,4.96,1.079,1.007,0.941,0.941,1.101,1.001,1.316,1.474,1.083,1.112,0.91,1.011,0.994,1.092,1.054,0.836,1.06,0.941,0.918,1.18,0.892,1.058 +NM_004599,1.173,0.965,1.21,0.851,0.928,1.17,0.44,0.693,1.105,0.889,0.95,1.092,0.845,0.873,0.946,1.303,1.407,1.049,1.841,0.691,1.127,1.904,0.943,1.553,0.703,1.473,1.949,0.676,0.659,1.138,0.792,0.858,1.338,1.245,0.4,0.657,1.027,1.59,1.181,0.756,1.209,0.868,0.576,0.695,0.954,1.018,0.869,1.748,0.639,1.327,0.923,0.571,0.983,0.729 +NM_004600,0.842,0.904,1.249,0.567,0.922,0.981,0.578,0.536,1.227,1.063,1.356,0.726,0.67,0.68,1.006,1.677,0.641,1.023,1.335,0.907,0.729,1.054,1.239,1.153,0.69,0.671,1.276,0.812,0.425,1.167,1.043,1.258,2.839,1.106,0.337,1.334,1.476,0.994,1.142,1.329,0.989,1.328,0.823,1.257,0.861,1.169,0.839,0.604,0.882,0.745,1.154,1.124,0.923,1.102 +NM_004603,0.714,1.013,0.726,1.005,0.698,1.423,1.186,0.602,0.668,0.686,1.16,0.794,0.744,0.795,0.878,1.12,0.71,0.932,0.645,1.623,0.65,0.74,1.767,0.663,0.831,0.753,0.787,0.693,0.877,1.259,0.673,1.252,0.995,1.52,0.648,1.094,1.049,0.643,1.401,2.184,0.686,1.042,1.83,1.847,0.737,1.271,1.375,0.741,0.963,0.75,1.366,0.892,0.792,1.208 +NM_004604,0.793,0.984,1.024,0.81,0.772,1.371,0.603,0.466,0.998,1.005,1.09,0.892,0.704,0.671,0.799,1.328,0.907,0.876,1.137,0.841,0.712,0.778,0.9,1.013,0.841,0.904,1.142,0.704,0.593,1.226,0.818,1.568,1.551,1.266,0.255,0.55,1.111,0.925,1.34,1.225,0.926,0.964,0.816,1.2,0.877,0.894,1.16,0.781,1.002,0.887,0.92,0.713,0.946,1.716 +NM_004606,0.947,0.975,0.993,0.863,1.005,1.101,1.237,0.999,1.03,0.948,0.958,0.982,0.94,1.297,0.889,1.15,1.017,1.139,0.955,1.017,1.056,1.212,1.012,0.988,1.007,1.096,0.9,1.107,1.47,0.943,1.082,0.862,1.034,0.959,0.909,0.895,1.045,1.077,1.154,0.794,1.054,0.902,0.873,0.923,0.928,0.925,1.047,1.085,1.099,1.01,1.025,1.031,1.041,1.018 +NM_004607,0.932,0.957,1.538,0.729,1.063,1.206,0.737,1.043,1.311,0.915,0.913,1.289,1.182,0.603,0.849,1.545,1.081,1.014,0.989,1.09,0.4,1.123,1.005,1.386,0.652,0.938,1.562,1.239,0.409,0.989,1.245,1.138,1.561,1.32,0.418,0.466,0.941,1.31,1.294,0.432,1.148,0.897,0.459,0.597,1.263,0.893,1.008,1.206,0.946,0.879,1.03,0.68,0.718,1.207 +NM_004608,1.042,0.978,0.826,0.939,0.806,1.03,1.058,0.931,1.014,1.071,0.99,1.081,1.057,1.11,1.127,1.065,1.112,1.201,1.041,0.997,0.916,1.02,1.027,1.002,1.115,1.08,0.891,1.126,0.972,1.033,1.055,0.93,1.039,0.979,1.001,1.062,1.037,1.122,1.001,0.973,0.931,0.972,1.224,0.975,0.978,0.974,0.93,1.032,1.129,0.971,0.974,1.109,1.177,1.098 +NM_004609,1.052,1.001,1.052,1.26,1.044,0.981,1.051,0.957,1.054,0.871,0.883,0.979,0.971,1.015,0.826,1.017,0.918,1.086,0.906,1.059,0.907,1.066,0.865,1.021,0.86,1.044,0.827,0.912,0.749,1.013,0.918,0.9,1.016,0.848,1.067,0.894,1.097,1.036,0.935,1.066,0.981,1.002,0.885,1.043,1.088,0.965,1.163,0.97,0.911,0.917,1.035,1.041,1.077,1.006 +NM_004610,1.067,1.104,1.096,1.085,0.903,1.006,1.051,0.937,1.066,1.034,0.982,0.923,0.989,0.923,1.018,1.095,1.011,0.903,0.933,1.069,0.917,0.951,1.122,0.937,1.024,1.039,0.861,1.041,0.765,0.945,1.043,0.954,0.969,0.908,1.069,0.986,0.978,1.111,1.102,0.919,0.868,1.082,1.213,0.928,0.888,0.975,1.068,1.004,0.94,0.975,1.096,0.896,1.023,1.008 +NM_004612,0.898,0.991,1.107,0.849,1.068,0.953,0.937,1.026,0.812,0.973,1.065,0.963,0.987,0.907,0.927,1.063,0.98,0.916,1.278,0.955,0.891,0.935,0.926,1.091,1.091,1.219,1.053,1.01,1.178,1.038,1.097,1.135,1.043,1.007,1.084,0.984,1.009,0.991,1.09,1.067,0.966,0.866,1.173,0.817,0.884,0.999,1.187,0.979,0.934,0.874,1.153,0.993,0.998,0.969 +NM_004614,0.701,1.657,1.065,0.857,0.826,1.272,0.844,0.645,0.815,0.832,1.075,1.001,0.743,0.661,0.877,1.062,0.942,1.046,1.108,1.247,0.662,1.079,1.601,0.886,0.668,0.837,1.191,0.757,0.544,1.648,0.915,1.642,0.983,1.357,0.584,0.85,1.144,1.071,1.255,0.825,1.041,1.296,0.715,0.972,0.896,1.125,0.993,0.77,0.88,0.695,1.24,0.839,0.754,1.392 +NM_004615,0.983,0.902,0.927,0.875,0.976,0.997,0.792,0.742,0.782,1.056,1.322,0.794,0.818,1.058,0.967,1.347,0.837,0.864,1.086,1.153,1.056,0.828,1.702,0.951,0.962,1.471,0.946,1.039,0.818,0.928,1.098,0.767,0.766,1.224,0.659,0.985,1.111,1.062,1.233,0.843,1.106,1.762,1.224,0.696,1.079,1.199,1.044,1.022,0.952,0.856,1.043,0.754,1.0,0.675 +NM_004616,0.0275,2.022,0.0273,0.821,0.0299,3.333,0.99,0.0277,0.0321,0.0284,1.851,0.0436,0.0336,0.0286,2.334,4.063,0.0316,0.94,0.0287,2.551,0.0286,0.0346,2.521,0.0375,0.853,0.0288,0.035,0.0328,0.838,2.309,0.028,0.923,2.189,2.428,0.0539,1.146,2.197,0.0272,2.619,0.916,0.0276,2.688,1.238,0.548,0.0493,2.209,1.204,0.0309,2.881,0.0317,2.757,0.832,0.0395,1.269 +NM_004617,0.272,5.578,0.28,3.114,0.405,9.795,0.744,0.286,0.303,0.348,16.99,0.341,0.266,0.241,11.3,41.09,0.312,4.055,0.299,15.43,0.31,0.301,8.162,0.283,0.607,0.313,0.333,0.338,0.405,3.756,0.275,8.639,0.567,3.547,0.34,24.83,18.86,0.305,17.53,0.355,0.28,7.39,11.59,0.45,0.267,27.32,4.027,0.337,8.199,0.329,12.2,0.896,0.297,0.429 +NM_004618,0.991,1.02,0.935,1.036,1.024,1.001,0.864,0.907,1.102,0.786,0.918,0.94,0.915,0.692,1.03,0.956,1.009,0.873,0.826,0.948,0.84,0.929,1.01,0.931,0.951,0.992,1.222,0.916,0.919,1.126,1.033,1.015,1.162,1.039,0.728,0.935,0.86,0.815,1.087,1.086,0.903,0.995,0.885,1.278,1.036,0.817,0.787,0.892,1.039,0.971,1.177,0.83,1.056,1.263 +NM_004620,0.814,0.837,1.099,0.926,1.087,1.055,0.779,1.019,1.073,0.971,0.922,1.076,0.861,0.983,1.206,1.191,0.93,0.95,0.995,0.826,0.838,1.031,0.94,1.082,0.859,0.906,1.196,1.068,0.623,1.096,1.028,0.913,1.142,1.207,0.81,0.938,0.974,0.923,1.045,1.046,1.01,1.072,0.864,0.818,1.034,1.103,0.968,1.005,1.022,1.031,1.06,0.874,0.953,1.203 +NM_004621,0.969,0.991,0.948,1.04,0.907,1.095,1.043,1.006,0.853,1.066,0.852,1.083,1.041,0.925,0.907,1.0,0.988,0.867,1.08,0.954,1.08,1.051,0.926,1.002,1.07,0.974,0.885,1.005,0.712,1.054,0.896,1.488,1.038,0.963,1.15,1.121,1.033,0.922,0.993,0.978,1.133,1.084,0.982,1.089,1.02,0.94,0.828,0.953,0.8,1.138,0.916,0.973,0.921,1.176 +NM_004622,0.971,1.01,1.162,0.903,1.121,1.183,0.983,0.941,1.006,0.909,0.909,1.08,0.894,0.838,0.831,1.116,1.07,1.072,0.911,1.084,0.824,1.114,1.026,1.124,0.982,0.896,1.232,0.926,0.908,0.981,1.136,1.13,1.398,0.979,0.817,0.936,1.02,1.032,1.15,1.044,0.976,0.989,1.083,0.95,1.001,1.026,0.959,0.9,1.16,0.922,1.087,1.001,0.799,1.05 +NM_004623,0.843,1.09,1.135,0.982,0.931,0.967,0.817,0.686,1.149,1.218,0.814,0.938,0.879,0.658,1.027,1.301,1.045,0.872,1.137,0.928,0.789,0.968,1.075,1.16,0.686,0.853,1.261,0.86,0.68,1.006,0.93,1.427,3.259,1.136,0.552,0.832,0.804,0.899,1.28,0.989,1.163,0.996,0.7,1.217,1.04,0.892,0.957,0.879,1.036,0.847,0.984,0.874,0.948,1.99 +NM_004624,0.802,1.27,0.849,1.039,0.818,2.296,0.89,0.71,0.791,0.767,2.625,0.766,0.717,0.736,1.32,3.048,0.828,1.104,0.813,3.559,0.702,0.843,2.77,0.882,0.816,1.023,0.728,0.777,0.949,3.159,0.837,0.62,0.973,1.557,0.546,0.841,1.651,0.988,1.011,0.862,0.871,4.044,1.997,1.278,0.894,2.135,1.141,0.683,0.836,0.846,1.553,0.77,0.8,0.838 +NM_004625,1.156,1.043,1.061,1.236,1.294,0.804,0.935,1.618,1.002,1.077,0.871,1.042,1.144,0.902,0.758,0.902,2.187,0.86,1.281,0.997,1.141,0.915,1.023,0.918,1.081,1.112,0.982,0.924,0.836,0.936,0.99,0.841,1.787,0.87,3.384,0.964,0.893,1.193,0.892,0.875,1.197,0.833,0.826,0.889,1.227,0.87,1.279,1.116,0.966,1.32,1.03,1.273,1.411,1.322 +NM_004626,1.025,0.914,1.021,0.919,0.972,1.041,0.809,1.213,1.042,0.923,0.976,1.082,0.962,0.998,0.755,0.955,0.947,1.014,1.033,0.947,0.928,0.98,0.829,0.974,1.005,1.178,0.983,0.894,1.552,0.97,1.005,1.003,1.002,1.053,0.874,0.897,1.018,1.041,0.824,1.072,1.043,0.976,0.913,0.936,1.008,0.919,1.053,1.034,0.949,0.91,1.006,0.928,0.851,1.182 +NM_004627,0.797,1.238,1.113,0.822,0.838,1.46,0.76,0.77,1.067,0.851,1.371,0.828,0.851,0.85,1.188,2.468,0.806,0.89,1.131,1.241,0.812,0.806,1.299,0.994,0.789,0.757,1.243,0.734,0.875,1.092,1.14,1.521,4.718,1.588,0.545,0.78,1.025,0.655,1.015,0.868,0.994,0.963,0.75,0.836,0.862,1.0,1.046,0.776,1.0,0.851,1.052,0.807,0.737,2.046 +NM_004628,0.571,1.13,1.421,0.658,0.867,0.928,0.709,0.568,1.025,0.826,0.781,0.868,0.616,0.757,1.008,1.224,1.241,0.84,0.845,1.362,0.577,1.005,1.464,0.977,0.616,0.736,1.389,0.811,0.496,1.439,0.946,1.816,1.016,1.101,0.391,0.964,0.809,1.233,1.08,1.2,1.163,1.538,0.72,0.717,1.004,0.887,1.379,0.529,0.925,0.665,1.244,0.889,0.796,1.162 +NM_004629,0.78,0.817,1.011,0.948,0.848,1.035,0.793,0.797,1.109,0.939,0.947,1.132,0.901,0.932,0.953,1.145,0.939,0.885,1.405,1.01,0.971,0.861,1.058,1.254,0.887,1.036,1.631,0.881,0.586,1.055,0.953,1.694,2.038,0.969,0.71,1.082,0.92,0.89,1.275,0.976,1.041,0.894,0.842,1.936,0.981,0.867,0.992,0.76,0.894,1.058,0.983,1.133,1.028,3.572 +NM_004632,0.48,0.692,0.959,0.579,0.802,1.276,0.503,0.427,1.195,0.944,1.091,0.841,0.582,0.545,0.952,1.637,0.647,0.702,1.131,0.895,0.509,0.747,1.459,1.185,0.33,0.659,1.246,0.872,0.372,1.076,0.737,2.071,2.477,1.269,0.395,2.145,1.097,0.82,1.287,1.169,1.049,1.092,0.66,1.634,0.855,1.013,1.205,0.594,1.098,0.6,1.005,0.825,0.966,2.964 +NM_004633,0.894,0.887,1.001,1.019,0.815,1.143,1.195,0.922,0.991,0.793,1.044,0.856,0.858,0.959,1.041,1.106,0.877,1.062,0.88,1.299,0.814,0.967,1.089,0.897,0.998,1.017,0.885,0.926,1.613,1.265,1.002,1.07,1.01,1.282,0.98,1.057,1.043,0.733,1.204,0.941,0.895,1.05,0.963,1.127,0.874,1.088,0.996,0.933,1.077,0.979,0.999,1.072,0.868,1.257 +NM_004634,0.884,0.9,1.06,0.756,1.017,1.018,0.855,0.707,1.053,1.104,0.75,0.842,0.795,0.807,0.946,0.905,1.011,0.906,1.025,0.977,0.996,1.037,1.221,1.086,0.826,1.03,1.034,0.779,0.798,1.187,0.976,1.232,1.35,1.124,0.718,0.775,0.916,0.853,1.464,1.042,1.049,0.9,0.887,1.098,1.036,0.809,0.968,0.842,0.87,1.109,0.984,0.906,1.049,1.478 +NM_004635,0.993,1.044,1.712,0.642,1.565,0.746,0.397,0.727,1.855,1.64,0.642,1.473,1.031,0.767,0.823,1.201,1.109,1.332,1.83,0.713,0.577,1.222,1.016,1.742,0.537,1.305,1.452,1.431,0.384,1.351,1.277,0.905,0.873,0.912,0.355,1.154,0.887,1.415,1.164,0.701,1.701,0.781,0.664,0.848,1.85,0.888,1.521,1.083,0.712,1.178,0.75,1.032,1.063,1.567 +NM_004636,0.595,1.895,0.57,0.972,0.596,1.524,1.071,0.669,0.57,0.581,1.125,0.634,0.583,0.566,0.947,1.572,0.696,1.097,0.569,1.299,0.573,0.631,1.349,0.611,1.204,0.54,0.613,0.645,0.986,2.615,0.555,2.034,0.966,2.149,0.619,1.081,1.125,0.695,3.093,0.815,0.65,1.488,1.006,1.183,0.644,1.296,0.834,0.675,0.946,0.551,1.637,1.26,0.625,0.807 +NM_004637,1.224,0.605,1.044,0.807,1.266,1.033,0.427,0.862,1.494,0.988,0.811,0.838,0.889,0.766,1.055,1.463,1.32,0.896,1.406,0.583,0.687,1.003,0.782,0.941,0.516,1.759,1.178,1.2,0.369,0.878,1.322,1.14,1.647,1.056,2.713,0.689,0.809,1.236,1.481,0.976,1.202,0.854,0.648,1.609,1.306,0.783,1.014,1.372,0.936,1.098,0.792,0.746,1.38,1.418 +NM_004638,1.041,0.887,0.971,0.942,0.657,0.849,0.515,0.715,0.927,0.934,0.878,0.865,0.869,0.763,0.883,0.881,1.038,0.959,1.09,0.701,1.331,1.261,0.927,1.047,1.008,1.403,1.392,0.679,0.578,0.838,0.946,1.407,2.548,1.079,0.59,0.846,0.775,1.057,2.311,1.469,0.741,1.034,0.576,2.367,0.947,0.721,0.71,1.21,0.848,1.326,0.914,0.894,1.269,1.732 +NM_004640,1.071,0.924,0.917,1.023,1.216,1.146,1.064,1.136,0.926,1.052,1.037,0.909,1.152,1.023,1.081,0.983,0.984,1.011,0.828,1.063,0.987,1.058,1.092,0.995,1.148,1.059,1.046,0.867,1.097,1.093,0.952,0.859,1.032,0.852,0.987,1.005,1.182,0.843,0.954,1.111,0.953,0.876,1.087,0.985,1.061,0.965,0.975,1.043,1.105,1.097,1.021,0.992,1.055,1.283 +NM_004641,1.015,0.936,1.007,1.043,1.037,1.001,1.089,1.001,1.017,1.063,0.916,0.971,1.07,1.171,0.952,0.902,0.948,0.961,0.969,1.073,0.926,1.044,0.983,1.104,1.041,1.005,1.011,1.077,1.08,1.026,1.084,0.858,1.065,0.923,1.017,1.064,0.98,0.999,0.924,0.97,0.965,0.973,0.827,1.014,1.052,1.008,1.025,0.888,0.878,0.951,0.979,0.838,0.944,1.139 +NM_004642,0.487,0.815,1.648,0.664,0.93,1.026,0.417,0.941,1.424,0.93,0.92,1.676,0.644,0.825,0.978,1.763,0.98,0.652,1.948,1.035,0.643,0.99,1.313,1.439,0.36,0.71,1.538,0.951,0.317,0.893,1.205,1.519,1.789,1.351,0.132,1.049,0.895,1.206,0.764,0.823,1.423,1.29,0.581,0.902,1.086,0.693,1.095,0.984,0.702,0.909,0.965,1.077,1.309,1.488 +NM_004643,0.82,1.173,1.241,0.901,0.979,0.962,0.687,0.572,1.183,0.943,0.885,0.747,0.61,0.715,0.97,1.316,1.017,1.087,0.931,0.893,0.649,0.592,1.337,1.061,0.713,0.793,0.998,0.982,0.403,1.123,0.918,1.26,1.13,1.08,0.48,0.818,0.977,0.947,1.243,0.894,1.248,1.008,1.06,1.343,1.109,1.126,1.342,0.651,1.429,0.941,0.98,0.743,0.93,1.131 +NM_004644,0.888,1.071,1.002,0.932,1.125,1.025,1.231,0.962,0.866,0.935,1.085,1.07,0.957,1.059,1.161,1.18,0.84,0.921,0.898,1.111,1.187,1.06,1.031,1.087,0.937,1.082,1.134,0.959,1.175,1.144,1.092,1.01,0.964,1.045,0.967,0.87,1.055,0.894,0.889,1.001,1.052,0.912,1.221,0.808,0.837,1.116,0.944,0.971,0.941,1.025,0.941,0.93,1.034,0.999 +NM_004646,0.884,0.928,1.013,0.899,0.994,0.97,1.012,0.89,0.812,1.035,0.918,1.016,0.981,1.186,0.988,1.002,1.2,1.136,0.828,1.005,1.281,0.927,0.935,1.084,0.966,0.915,0.946,0.909,1.009,1.085,0.868,1.021,1.057,0.933,1.036,0.937,1.028,1.203,1.189,0.86,1.137,1.041,1.307,0.948,1.03,0.97,0.961,1.16,1.031,0.947,1.016,0.982,0.768,0.918 +NM_004649,0.897,1.157,1.196,0.996,0.952,1.015,0.78,0.586,1.227,0.919,0.975,0.793,0.783,0.887,0.952,1.308,1.104,0.989,1.766,0.734,0.8,0.761,1.008,1.12,0.679,1.125,1.369,0.791,0.778,1.26,0.925,0.912,1.141,1.061,0.577,0.64,1.124,1.026,1.228,0.671,1.254,1.17,0.774,1.004,1.081,1.074,0.973,0.842,0.844,0.932,0.861,0.611,1.074,1.11 +NM_004650,0.939,1.22,1.062,1.045,1.125,1.098,0.948,1.089,1.035,0.956,0.918,0.992,1.041,1.148,1.112,1.311,0.964,1.046,0.974,1.067,0.967,1.117,1.351,1.032,1.034,0.826,1.107,0.964,0.864,1.063,1.01,1.209,1.009,0.922,0.856,0.721,1.023,0.956,0.971,0.866,0.989,1.137,0.887,0.935,1.005,1.057,1.146,0.886,1.006,0.954,1.088,0.848,0.953,1.208 +NM_004651,0.939,1.201,0.946,0.99,0.88,0.942,0.848,1.155,0.879,0.886,0.817,0.965,1.041,0.896,0.77,1.086,1.029,0.938,1.009,0.932,1.188,0.828,1.054,0.914,0.888,1.029,1.099,1.0,0.818,1.095,0.942,1.881,1.112,1.32,0.984,1.166,0.874,0.978,0.939,1.137,0.928,1.089,1.168,0.897,0.883,0.828,0.885,0.861,1.075,0.93,0.952,0.963,1.053,1.306 +NM_004653,1.072,0.541,1.794,0.629,0.529,1.325,0.504,0.512,1.408,1.285,1.161,0.584,0.65,1.211,1.342,2.223,1.285,1.171,0.513,0.534,0.631,0.603,1.313,0.522,1.042,1.115,1.987,0.53,0.576,1.344,1.173,1.031,0.83,1.568,0.688,0.574,1.231,1.041,0.937,0.779,1.456,1.478,0.475,0.601,1.287,1.242,0.888,0.901,0.989,1.123,1.398,0.833,0.575,0.832 +NM_004654,1.169,0.883,1.058,1.053,0.815,0.956,1.057,0.973,1.27,1.09,0.892,1.039,1.044,0.971,1.021,1.22,1.001,1.261,0.961,1.114,1.025,0.811,0.79,1.077,1.062,1.022,0.984,1.03,1.052,0.952,1.074,1.063,1.095,0.989,1.017,0.934,0.961,1.152,0.951,0.922,1.097,1.004,0.868,0.933,0.915,1.034,0.961,0.923,0.937,1.076,0.903,0.96,0.957,1.059 +NM_004656,1.021,0.866,1.184,1.04,0.781,1.089,0.575,0.747,1.067,0.764,0.815,0.98,0.968,0.964,0.857,1.059,1.288,0.996,1.266,0.826,1.025,1.144,0.981,1.148,0.746,1.329,1.29,0.752,0.596,1.004,0.81,1.169,1.11,1.121,0.555,0.735,0.901,1.198,1.402,0.774,1.061,0.914,0.774,1.083,0.967,0.691,0.831,1.134,0.729,1.063,0.769,0.81,0.918,1.806 +NM_004657,0.992,0.914,0.969,1.051,0.904,1.042,0.906,0.868,0.889,0.982,1.083,0.937,0.924,0.795,0.959,1.046,0.956,1.084,0.951,1.163,0.981,0.892,0.986,0.93,0.975,0.809,1.074,1.09,0.946,1.014,1.054,1.533,1.16,1.212,1.074,0.881,0.984,1.041,1.016,0.813,1.218,1.11,0.901,0.819,1.016,1.063,0.888,1.003,0.958,0.843,0.967,0.934,1.202,0.942 +NM_004658,1.092,0.88,3.413,0.892,1.289,1.234,0.935,0.891,1.653,1.877,0.736,0.834,0.757,0.83,0.898,0.872,4.425,1.648,2.386,0.886,0.741,0.957,1.022,1.699,0.576,1.086,2.778,0.931,0.776,1.755,1.289,1.115,1.414,1.573,0.882,0.59,0.816,1.422,1.14,0.226,2.384,0.999,0.545,0.368,2.856,0.731,1.739,0.981,0.731,2.863,0.876,0.955,2.233,0.667 +NM_004661,0.737,1.0,1.403,0.726,0.869,0.952,0.679,0.483,1.308,0.899,1.014,1.0,0.7,0.716,0.918,1.18,0.895,0.96,1.339,1.075,0.621,1.005,1.314,1.005,0.526,0.781,1.591,0.844,0.523,1.178,0.844,1.041,2.764,1.18,0.259,0.647,1.064,1.022,1.66,0.65,1.216,0.972,0.727,0.907,1.053,1.115,1.016,0.83,0.724,0.824,1.054,1.052,0.922,1.658 +NM_004662,2.065,2.011,2.178,1.81,2.206,1.9369999999999998,2.085,2.183,2.008,2.025,2.15,2.022,2.219,2.104,2.0420000000000003,2.162,1.903,2.173,2.1550000000000002,2.075,2.2720000000000002,2.039,1.888,2.096,1.969,2.088,1.929,1.911,2.098,2.027,2.065,1.746,1.859,1.888,2.081,1.82,2.009,2.0140000000000002,2.009,1.892,1.9649999999999999,1.908,2.159,1.786,1.92,2.129,1.9629999999999999,2.096,1.9549999999999998,2.1,2.035,2.098,1.755,2.014 +NM_004663,0.953,1.013,1.138,0.855,1.135,1.437,0.61,0.675,1.611,0.944,1.165,1.028,0.758,0.884,0.943,1.249,0.854,1.14,1.027,1.01,0.421,0.971,1.385,1.294,0.554,1.226,1.137,1.305,0.416,1.389,1.251,0.585,0.7,1.389,0.513,0.887,1.235,0.922,1.114,0.531,1.178,1.073,0.773,0.7,0.986,1.024,1.015,1.098,0.857,0.711,1.219,0.865,0.903,1.191 +NM_004664,1.021,1.043,1.005,1.159,0.866,0.993,1.031,0.967,1.088,0.966,0.981,1.019,0.872,1.016,0.942,0.957,0.918,0.993,0.979,0.89,1.112,0.978,0.992,0.969,0.899,1.043,0.957,0.926,0.771,0.932,0.901,1.098,1.05,0.923,1.037,0.919,0.982,0.965,1.093,0.985,0.904,1.029,1.076,1.013,0.954,1.003,0.881,1.018,0.878,0.94,0.959,1.201,0.952,0.981 +NM_004665,0.987,0.98,0.901,0.884,0.94,1.0,1.281,0.781,0.873,0.971,0.969,1.036,0.966,1.189,1.109,0.912,0.998,0.9,0.986,1.138,0.969,0.892,0.833,1.052,1.14,1.073,0.891,0.875,1.374,1.022,1.028,1.004,0.873,1.0,0.962,0.899,1.066,0.912,1.01,1.624,0.942,1.002,0.994,1.011,0.84,0.998,1.066,0.957,1.024,0.829,1.034,1.206,0.935,1.221 +NM_004666,0.688,1.278,0.8,1.178,0.637,0.978,0.708,0.576,0.58,0.685,1.997,0.71,0.763,0.698,5.043,16.86,0.721,0.863,0.648,7.427,0.697,0.784,6.004,0.742,0.685,0.648,0.871,0.824,0.596,0.851,0.681,1.037,1.033,0.761,0.75,1.224,6.748,0.541,2.58,1.37,0.756,3.033,5.287,0.859,0.648,18.95,5.912,0.653,4.008,0.787,3.197,2.31,0.657,13.76 +NM_004668,0.735,1.434,0.878,1.252,0.865,1.514,1.448,0.877,0.964,0.91,1.136,0.794,0.777,0.949,0.818,1.051,0.851,2.498,0.877,2.142,0.834,0.728,0.933,0.967,0.995,0.917,0.863,0.856,1.288,2.475,0.838,0.893,0.956,1.823,1.0,0.95,2.84,0.852,1.792,1.844,0.871,1.219,1.191,0.837,0.869,0.935,0.981,0.925,0.952,0.901,1.186,1.04,0.836,1.02 +NM_004669,3.142,0.301,4.184,1.27,4.53,0.286,0.178,5.213,5.479,3.673,0.142,3.488,3.268,1.897,2.45,1.695,2.411,3.076,6.77,0.415,1.557,4.892,0.122,4.842,0.183,4.816,2.462,4.161,0.125,0.455,5.421,0.506,1.901,0.445,5.193,0.139,0.159,4.138,0.823,0.169,3.274,0.189,0.0857,0.216,4.496,0.129,2.354,6.594,0.225,4.559,0.872,0.756,3.09,1.021 +NM_004670,0.747,1.013,0.702,0.851,0.806,1.3,0.864,0.769,0.866,0.64,1.811,0.674,0.74,0.692,1.494,2.946,0.831,0.916,0.694,1.471,0.688,0.659,2.471,0.806,1.042,0.698,1.686,0.748,0.769,1.336,1.09,1.401,1.208,1.551,1.067,1.046,2.51,0.581,1.269,1.172,0.995,1.797,1.122,1.397,0.688,1.902,1.061,0.839,2.352,0.611,1.756,0.939,0.917,1.018 +NM_004671,1.016,1.01,1.021,0.984,0.973,0.931,0.956,0.922,0.91,1.069,0.916,1.023,0.936,0.938,1.077,1.07,0.903,0.986,1.062,1.031,0.883,1.007,0.9,1.013,1.03,1.018,1.184,1.124,0.978,0.858,0.937,1.247,1.092,1.01,0.882,1.055,0.95,1.044,0.892,0.725,0.958,1.038,1.223,1.153,0.988,0.982,1.196,0.828,0.933,1.008,1.12,1.062,0.969,1.157 +NM_004672,1.414,0.631,2.839,0.918,1.276,0.803,0.53,0.66,1.554,1.518,0.603,1.046,0.884,1.158,1.119,1.043,2.015,1.004,3.192,0.685,1.236,1.243,0.923,1.617,0.65,1.655,1.678,0.946,0.511,0.748,1.356,0.941,1.707,1.035,0.7,0.967,0.697,1.694,1.249,0.789,1.542,0.903,0.661,1.206,1.763,0.679,0.877,1.2,0.966,2.963,0.837,0.969,2.267,0.95 +NM_004673,0.947,1.089,1.067,0.975,1.096,1.072,0.951,0.95,1.24,1.003,1.092,0.938,0.987,0.891,1.021,1.022,1.036,0.987,0.964,1.0,0.842,0.962,1.14,0.846,1.015,0.981,0.921,1.122,1.181,1.137,0.797,0.919,0.934,1.17,0.966,0.997,1.046,1.009,1.081,0.916,1.055,1.275,1.071,0.926,1.007,0.999,0.87,0.995,1.134,0.989,0.978,1.068,0.965,0.817 +NM_004674,0.715,1.204,1.346,0.799,0.89,1.07,0.694,0.466,1.153,0.985,1.192,0.811,0.633,0.781,1.083,1.242,0.797,0.865,1.487,0.928,0.712,0.699,1.11,1.122,0.691,0.871,1.542,1.001,0.409,1.202,1.031,1.272,1.468,1.579,0.308,0.794,0.906,0.893,1.221,0.585,1.232,1.242,0.671,0.99,1.063,1.247,0.964,0.672,1.262,0.833,0.974,0.741,1.164,2.6 +NM_004675,1.069,0.961,1.089,1.049,1.087,1.024,0.843,0.855,1.014,0.938,1.322,0.905,1.086,1.141,0.97,0.998,0.92,1.001,0.919,1.222,1.036,0.914,1.051,1.036,1.089,1.07,0.871,1.063,0.861,0.91,1.023,1.179,1.112,1.132,0.993,1.064,1.007,1.035,1.176,0.948,1.037,0.931,1.148,1.04,1.026,1.212,0.933,0.987,0.99,0.883,0.929,1.063,1.169,1.303 +NM_004676,0.989,1.038,0.859,0.815,0.795,0.918,0.861,1.147,1.009,0.971,0.875,1.076,0.956,0.996,0.933,0.982,0.986,0.991,1.003,1.065,0.821,1.114,1.011,1.076,0.822,0.946,1.153,1.17,0.948,0.95,0.967,0.965,0.994,1.005,1.025,1.065,1.082,1.401,1.022,0.954,0.881,0.992,1.432,1.122,0.965,0.983,0.869,0.999,1.045,0.985,0.966,0.86,1.141,1.277 +NM_004677,1.029,0.846,1.055,0.955,0.926,1.011,0.903,0.931,1.107,0.881,0.973,0.971,1.016,1.134,0.87,1.194,0.969,0.946,1.045,0.978,0.995,1.044,1.027,1.026,1.143,1.142,1.146,0.932,0.691,0.943,1.031,1.017,0.886,0.939,1.019,1.039,0.955,0.939,1.014,1.121,0.902,1.039,0.947,0.97,1.104,0.959,1.148,1.044,1.042,0.989,1.106,0.884,0.949,0.9 +NM_004679,1.03,0.895,1.096,1.096,0.905,0.915,1.061,1.035,0.969,0.971,0.956,0.996,0.999,0.912,0.905,1.085,0.934,0.899,0.979,1.137,0.988,1.011,0.901,1.006,1.063,1.049,1.008,1.005,1.005,0.925,1.041,1.015,0.917,0.902,1.099,1.185,1.181,0.858,1.114,1.103,0.988,0.988,1.111,1.068,0.973,0.903,1.03,0.989,1.012,1.126,0.927,0.926,1.048,0.995 +NM_004680,0.965,1.081,0.951,0.908,1.003,1.122,0.912,1.175,0.992,0.914,1.016,1.025,0.97,0.852,0.911,1.019,1.065,1.136,1.112,1.28,1.04,1.042,1.12,0.938,1.084,1.061,1.071,0.974,1.008,1.032,1.074,1.017,0.992,1.007,0.999,0.961,1.026,0.934,1.034,1.013,1.025,0.904,1.221,1.107,1.068,0.997,0.979,1.039,1.186,1.135,0.985,0.98,1.156,1.104 +NM_004681,0.838,0.257,2.065,0.316,0.245,2.488,0.29,0.32,2.125,1.509,1.748,0.281,0.306,1.183,1.589,5.69,1.521,1.453,0.26,0.265,0.354,0.315,1.684,0.327,0.959,0.938,2.377,0.271,0.253,1.947,1.722,0.817,1.149,2.162,0.416,0.338,1.987,1.957,1.115,0.766,2.055,1.667,0.319,0.296,1.603,1.861,1.198,1.088,2.272,1.009,1.786,0.793,0.289,1.048 +NM_004683,0.962,0.909,1.024,1.031,1.055,1.011,0.929,1.013,0.851,0.972,1.067,1.068,0.968,1.052,0.95,0.929,0.968,1.032,0.939,0.992,1.017,0.934,0.873,0.989,1.043,0.974,0.954,0.964,1.235,1.068,1.02,0.916,0.877,1.029,1.036,1.07,0.882,0.998,1.075,1.013,0.975,0.919,0.942,1.0,0.932,0.896,1.034,1.063,1.056,1.0,1.0,1.07,0.914,0.966 +NM_004684,0.965,1.322,0.872,0.783,0.921,0.908,1.039,0.936,1.031,0.965,0.989,0.697,0.869,0.897,0.886,1.014,0.73,0.811,0.729,0.997,0.926,1.003,1.634,0.965,1.133,0.754,1.544,1.19,0.659,1.537,0.834,3.019,0.921,1.914,0.641,1.044,0.866,1.146,2.025,1.5,1.305,2.798,0.89,0.873,0.833,0.869,0.958,0.801,0.915,0.761,1.375,1.5,0.773,1.225 +NM_004685,0.552,1.112,1.169,0.613,0.905,1.669,1.385,0.695,1.155,0.864,0.734,0.983,0.805,0.543,0.956,2.443,0.889,0.966,0.575,1.169,0.508,1.0,1.34,1.043,0.703,0.503,1.111,0.769,0.676,1.527,1.021,1.608,1.449,1.239,0.429,0.616,1.205,1.103,1.313,1.766,0.945,1.203,0.882,0.489,1.08,1.047,1.424,0.704,1.564,0.714,1.187,1.0,0.572,1.348 +NM_004687,0.64,0.953,1.15,0.661,0.81,1.14,0.653,0.513,1.161,0.797,1.143,0.943,0.511,0.683,0.876,1.44,0.75,0.958,1.01,1.487,0.471,0.746,1.436,1.003,0.83,0.687,1.216,0.816,0.519,1.331,0.795,1.278,1.359,1.196,0.199,0.619,1.552,0.825,1.273,0.641,0.977,1.486,0.794,1.076,0.912,1.004,0.844,0.555,1.002,0.651,1.097,0.742,0.826,1.523 +NM_004688,0.488,0.988,1.768,0.597,0.768,1.952,0.999,0.844,0.888,0.809,0.868,0.683,0.816,0.399,1.204,2.756,1.037,0.888,0.787,1.275,0.483,1.034,1.504,0.925,0.448,0.504,1.786,0.678,0.637,0.913,0.782,1.216,2.572,1.215,0.338,0.653,0.966,0.793,1.953,1.25,1.089,1.01,0.653,0.903,0.932,0.937,1.105,0.646,1.678,0.741,1.224,0.823,0.61,3.18 +NM_004689,0.877,1.202,1.312,0.845,1.074,1.042,0.67,0.707,1.002,0.887,0.658,1.143,0.848,0.694,0.822,1.085,0.948,0.938,1.128,0.939,0.849,1.087,1.027,1.403,0.767,1.151,1.059,1.027,0.658,1.25,0.768,1.929,1.247,1.159,0.505,0.651,0.825,1.068,1.694,0.924,0.859,1.248,0.809,1.574,0.977,0.743,0.906,1.089,0.712,0.991,0.882,0.817,0.947,0.866 +NM_004690,0.928,1.091,0.855,0.989,1.146,0.923,0.901,0.991,0.894,1.126,0.934,1.053,1.096,1.052,1.027,1.052,1.075,1.075,0.96,0.948,0.819,0.95,1.15,0.931,0.992,1.171,0.979,1.041,0.835,1.052,0.982,1.016,1.078,0.916,0.917,1.083,0.917,0.953,1.26,0.942,0.991,0.92,1.205,1.039,0.978,0.973,0.989,1.157,1.062,0.987,0.936,1.024,0.906,1.049 +NM_004691,0.762,0.674,1.017,0.889,0.823,1.361,0.664,0.458,0.835,1.019,1.218,0.837,0.563,0.615,1.071,1.913,0.977,1.131,1.316,0.827,0.614,0.704,1.177,0.916,0.629,1.256,1.042,0.752,0.686,0.722,0.968,0.964,1.521,1.359,0.997,0.712,1.158,0.773,1.63,0.67,0.839,1.036,0.749,1.178,1.127,1.147,1.047,0.98,1.146,1.174,1.068,0.744,1.307,1.233 +NM_004693,0.997,0.874,1.037,0.935,1.091,1.04,0.977,1.109,0.972,1.012,1.083,1.222,0.948,0.93,1.481,0.916,1.112,1.026,1.129,1.192,1.269,1.147,0.984,0.971,0.962,1.02,0.954,1.087,1.133,1.037,0.999,1.091,1.793,0.819,1.028,1.018,1.041,0.879,0.842,1.008,1.037,1.038,1.057,0.942,1.019,1.014,1.132,0.975,0.853,1.014,0.963,0.917,1.43,0.883 +NM_004694,1.253,1.001,1.117,0.999,1.295,0.913,0.754,1.168,1.095,1.405,0.958,1.096,1.114,1.004,1.053,1.223,1.078,1.214,1.574,0.944,1.157,1.076,0.888,1.159,0.986,1.179,1.028,1.181,0.78,1.019,1.082,0.925,0.854,0.825,0.952,1.004,0.924,1.351,0.892,0.882,1.201,0.986,0.804,1.074,1.205,0.927,1.077,1.025,0.953,1.092,0.857,1.042,1.144,0.945 +NM_004697,0.832,0.972,1.0,0.638,0.843,0.88,0.694,0.484,1.046,1.207,0.772,0.833,0.665,0.759,0.892,1.001,0.94,0.801,1.106,0.801,0.713,0.698,1.26,1.263,0.64,0.813,1.348,0.833,0.434,0.966,1.015,1.54,2.876,0.95,0.356,0.787,0.956,0.986,1.398,1.062,1.092,1.083,0.926,1.608,1.029,0.822,0.83,0.643,1.089,0.913,0.99,1.039,1.023,1.902 +NM_004698,0.822,0.831,0.955,0.996,0.758,1.181,0.653,0.662,1.271,0.981,1.041,1.013,0.656,1.004,1.118,1.286,0.735,0.882,0.877,1.108,0.765,0.876,1.144,1.188,0.819,0.937,1.311,0.891,0.521,1.187,0.952,2.409,4.775,1.255,0.496,1.583,0.889,0.771,1.292,1.8,0.868,0.966,0.778,2.025,0.789,0.883,0.841,0.725,1.178,0.791,0.968,0.943,0.868,2.996 +NM_004699,0.429,1.49,0.771,0.728,0.551,1.184,0.885,0.29,0.617,0.579,0.993,0.489,0.282,0.285,0.575,0.961,0.624,0.827,0.478,1.512,0.318,0.354,1.4,0.519,0.734,0.471,0.663,0.586,0.524,1.567,0.378,2.071,1.059,1.251,0.274,1.501,1.05,0.498,1.507,1.204,0.793,1.191,1.125,1.607,0.644,1.065,1.095,0.496,1.209,0.48,1.032,1.342,0.629,1.672 +NM_004700,0.988,1.021,0.97,1.165,1.199,1.043,0.969,0.893,1.035,1.021,1.083,1.013,1.065,1.083,0.859,0.964,1.178,1.108,1.116,1.015,0.938,0.97,1.021,1.12,1.003,1.105,0.846,1.128,1.213,1.0,0.857,1.052,0.862,1.0,0.955,0.953,0.995,1.119,1.143,0.858,1.08,1.112,1.054,1.006,1.01,1.007,0.955,0.961,0.958,1.124,0.993,0.969,1.096,0.963 +NM_004702,0.846,0.87,1.061,1.043,1.015,1.095,0.815,0.684,1.142,1.061,0.891,1.172,1.094,0.985,0.947,1.226,0.874,0.992,1.065,0.822,0.817,0.984,1.128,1.155,0.779,0.951,1.785,1.028,0.907,0.937,0.946,1.026,1.88,0.924,0.806,1.551,0.87,0.898,1.275,1.079,1.024,0.875,0.861,1.818,0.986,1.295,0.928,0.921,1.002,1.033,0.964,0.904,1.235,2.526 +NM_004703,0.713,1.071,1.268,0.666,0.928,1.301,0.823,0.741,1.255,0.976,0.895,1.068,0.679,0.664,0.96,1.586,0.73,1.14,0.844,1.488,0.621,0.893,1.196,1.283,0.699,0.683,1.268,1.101,0.614,1.219,0.995,1.677,1.811,1.267,0.412,0.499,0.928,0.791,1.175,0.685,1.061,1.879,0.52,0.985,0.831,1.075,0.728,0.895,0.795,0.817,1.223,0.889,0.756,1.18 +NM_004704,0.811,1.132,0.892,1.03,0.783,1.02,0.866,0.741,1.097,1.281,0.931,1.184,0.963,0.664,0.846,1.343,0.909,0.838,0.996,0.832,1.025,0.961,1.532,1.284,0.886,0.983,0.834,0.849,0.769,1.155,0.994,1.122,2.873,1.095,0.625,1.857,0.88,0.914,1.944,1.073,0.903,0.934,0.706,1.88,1.155,0.94,0.888,0.927,1.333,0.986,0.955,1.137,1.035,3.139 +NM_004705,0.492,1.478,0.854,0.758,0.536,1.349,0.723,0.457,0.613,0.608,1.627,0.69,0.633,0.622,0.925,1.864,0.497,0.651,0.715,1.347,0.47,0.536,1.318,0.727,0.934,0.511,1.049,0.6,0.542,1.634,0.551,1.692,4.561,1.498,0.314,1.876,1.595,0.598,1.331,1.113,0.681,1.313,0.904,0.891,0.618,1.215,1.058,0.491,1.164,0.535,1.062,0.967,0.728,1.55 +NM_004706,0.929,0.98,1.037,1.028,1.1,1.023,0.989,0.836,1.051,1.057,1.063,0.802,1.027,0.879,1.141,1.046,0.985,0.95,0.958,0.783,0.898,1.086,1.081,0.982,1.168,0.867,0.901,0.932,0.718,0.895,0.943,0.974,1.057,1.027,0.801,1.225,1.022,0.987,1.747,1.141,0.895,0.895,0.927,1.272,0.913,0.966,0.983,0.888,0.961,1.06,1.01,0.77,0.88,1.193 +NM_004708,0.919,0.947,1.057,0.725,0.853,0.75,0.476,0.703,1.409,1.161,1.048,1.061,0.906,0.739,1.017,1.295,0.856,0.858,1.524,0.885,0.967,0.885,1.407,1.086,0.556,1.002,1.066,1.098,0.466,0.809,1.054,0.922,4.212,1.049,0.247,1.482,0.821,1.092,1.541,0.731,1.282,0.827,0.526,1.421,0.993,0.946,1.422,0.922,0.876,0.878,0.922,1.124,1.186,2.15 +NM_004709,0.919,1.002,1.126,0.873,1.045,0.863,0.894,1.039,1.089,1.005,1.029,1.0,0.816,1.115,1.028,0.967,0.907,0.978,1.077,1.026,1.065,0.921,0.845,1.028,1.02,1.112,1.009,1.001,0.812,0.937,1.04,0.968,0.975,1.134,0.986,0.986,1.162,1.179,1.006,1.01,1.065,1.001,1.03,0.916,1.071,0.84,1.037,0.9,1.081,0.878,1.078,1.001,0.896,0.882 +NM_004710,0.63,1.228,1.009,0.772,0.581,1.792,0.801,0.686,0.767,0.588,1.321,0.588,0.869,0.579,0.991,2.222,0.623,1.009,0.806,0.968,0.479,0.676,1.901,0.769,0.704,0.684,1.012,0.565,0.59,1.405,0.862,2.046,1.219,1.69,0.338,0.855,1.227,0.922,2.373,0.926,0.755,1.393,0.725,1.511,0.883,1.01,0.922,0.687,1.369,0.78,1.586,1.12,0.701,2.501 +NM_004711,1.089,0.976,1.28,1.119,1.22,0.893,0.85,0.937,1.295,1.14,0.969,1.005,1.202,1.418,1.032,0.874,1.128,0.922,1.147,1.017,1.022,1.073,0.987,1.38,1.032,1.151,1.064,1.235,0.812,0.845,1.384,1.106,1.042,1.196,0.871,0.776,0.877,1.307,0.841,0.858,1.313,0.957,0.88,0.663,1.016,0.831,0.969,1.095,0.913,1.06,0.968,0.816,1.151,1.462 +NM_004712,0.796,0.966,1.484,0.715,1.244,0.772,0.587,0.474,1.568,1.351,0.695,0.982,0.483,0.705,0.872,0.764,1.374,1.003,1.135,0.907,0.648,0.863,0.958,1.124,0.543,1.07,1.375,1.021,0.526,1.284,0.961,1.526,1.003,0.993,0.501,1.218,0.92,1.269,1.294,0.921,1.485,0.968,0.871,1.593,1.213,0.941,1.197,0.938,0.96,0.92,0.904,0.788,1.167,1.272 +NM_004713,1.078,1.09,1.321,0.982,1.056,0.819,0.811,0.623,1.686,1.316,1.004,0.579,0.775,1.064,0.941,0.944,0.943,0.844,1.02,0.825,0.933,0.667,0.985,0.861,0.826,0.887,1.201,1.107,0.718,1.088,1.347,1.04,1.183,0.997,0.951,1.07,0.686,0.996,1.225,0.79,1.347,1.302,0.964,1.412,1.095,1.107,1.001,0.789,1.119,0.887,0.93,1.008,1.348,1.199 +NM_004715,1.025,0.956,0.957,1.04,0.951,1.051,0.95,0.918,1.047,1.054,1.025,1.059,0.979,1.084,1.041,1.046,0.931,1.07,0.932,1.052,0.866,0.924,0.934,0.963,1.121,1.008,1.064,1.034,1.04,0.988,1.017,0.906,1.195,0.951,1.211,0.918,0.998,1.01,1.227,0.868,0.872,0.943,1.332,0.998,1.057,1.053,1.033,1.078,1.071,1.052,0.873,1.106,1.002,1.038 +NM_004716,0.634,1.277,0.84,1.378,0.765,1.907,1.053,0.721,0.74,0.794,1.541,0.692,0.7,0.861,0.89,1.59,0.781,1.137,0.947,1.098,0.679,0.825,1.328,0.709,1.27,0.947,0.812,0.523,1.314,1.768,0.709,1.292,0.966,1.553,0.561,1.166,1.165,0.817,1.693,0.861,0.83,1.31,1.214,1.55,0.775,1.077,0.887,0.861,1.069,0.922,1.227,0.653,0.778,0.935 +NM_004717,0.945,0.785,1.189,0.78,0.97,1.105,0.802,1.057,0.937,0.936,0.904,0.994,0.842,0.985,0.94,1.475,0.996,1.137,1.039,1.134,0.981,0.907,0.97,1.001,0.801,0.909,1.232,0.972,0.777,0.983,1.048,1.187,1.417,1.191,0.833,1.16,0.868,0.93,1.226,1.055,0.883,0.97,1.102,1.008,0.893,0.999,1.094,0.953,1.01,0.92,1.033,0.847,1.106,1.261 +NM_004718,0.509,1.251,0.899,0.76,0.634,1.087,0.684,0.296,0.653,0.761,1.68,0.631,0.551,0.444,0.785,1.649,0.635,1.018,0.842,0.981,0.452,0.456,1.718,0.974,0.849,0.646,1.139,0.637,0.453,1.199,0.6,1.028,1.913,1.358,0.25,0.992,1.326,0.668,1.36,0.934,0.888,1.499,0.89,1.338,0.762,1.181,0.98,0.477,1.534,0.636,1.134,0.737,0.68,2.099 +NM_004719,0.714,1.041,1.506,0.849,1.095,1.043,0.839,0.775,1.036,1.058,0.983,0.837,0.791,0.879,1.109,1.413,1.121,0.884,0.838,1.203,0.613,0.806,1.162,1.179,0.819,0.752,1.254,1.015,0.793,1.034,1.264,1.27,1.582,1.155,0.72,0.666,0.868,1.123,1.302,1.043,1.138,1.044,0.732,0.882,1.071,1.081,1.032,0.911,1.257,0.887,1.003,0.911,0.715,1.197 +NM_004721,0.843,1.042,0.919,0.84,0.854,1.064,1.146,0.764,0.808,0.719,1.195,0.819,0.935,0.854,0.814,1.084,0.953,1.183,0.942,1.13,0.815,0.852,1.171,0.762,1.054,0.813,0.725,0.862,0.93,1.078,0.833,0.957,0.932,1.037,0.881,1.115,1.376,0.909,1.566,1.12,0.765,1.357,0.825,1.18,0.856,0.981,0.908,0.782,1.117,0.866,1.232,1.263,0.866,0.961 +NM_004722,0.86,0.826,1.066,1.039,0.765,1.207,0.731,0.751,0.848,0.94,1.15,0.894,0.805,0.741,0.855,1.182,0.976,1.097,1.132,0.85,1.015,0.98,1.398,0.952,0.941,0.908,0.982,0.729,0.781,1.233,0.732,1.206,1.075,1.122,0.773,0.844,1.066,0.962,1.707,1.058,1.006,1.09,0.782,1.371,0.778,1.14,1.039,1.023,0.944,0.942,0.897,1.241,0.929,1.18 +NM_004723,0.743,0.895,1.098,1.091,0.913,1.227,0.894,0.535,1.25,0.999,0.851,0.499,0.802,0.754,0.955,1.042,1.159,0.982,0.882,0.814,0.747,0.936,1.236,0.664,0.859,1.195,0.945,0.661,0.674,1.315,1.222,1.885,1.147,1.287,1.159,1.694,0.833,0.871,1.78,1.704,0.927,1.133,1.081,1.302,0.923,0.829,0.98,1.305,0.718,0.742,0.861,1.045,0.786,1.03 +NM_004724,0.682,1.085,1.18,0.547,1.217,0.788,0.655,0.572,1.239,1.198,0.637,1.024,0.579,0.705,0.801,1.061,0.93,1.068,1.08,0.874,0.652,0.997,1.344,1.152,0.577,0.839,1.345,1.002,0.723,1.002,0.961,1.161,1.181,0.99,0.26,1.531,0.946,1.194,1.331,0.874,1.339,1.03,0.73,0.944,1.082,0.944,1.213,0.908,1.185,0.869,1.001,0.763,0.91,1.17 +NM_004725,0.663,1.106,1.149,0.674,0.897,1.103,0.573,0.434,1.027,1.018,1.119,0.938,0.603,0.675,0.795,1.407,0.716,0.812,1.074,0.965,0.489,0.831,1.258,1.159,0.498,0.85,1.335,0.829,0.384,1.187,0.816,1.221,1.544,0.996,0.102,2.312,1.043,0.869,1.35,1.043,1.029,1.022,0.806,1.584,0.955,0.995,0.911,0.761,0.975,0.693,1.142,1.033,1.062,1.578 +NM_004726,0.855,1.266,0.837,1.107,0.753,1.92,0.913,0.85,0.663,0.768,1.574,0.774,0.788,0.787,0.814,1.18,0.892,1.135,0.761,0.948,0.865,0.693,1.366,0.753,1.083,0.787,0.778,0.825,0.611,1.647,0.773,1.193,1.124,1.673,0.741,1.073,1.168,0.806,2.221,1.123,0.753,1.287,1.054,0.97,0.791,1.296,0.88,0.858,1.131,0.876,1.268,0.88,0.64,0.972 +NM_004727,0.982,1.418,1.141,0.871,1.002,1.095,0.846,0.845,0.998,1.097,0.952,0.976,0.89,0.879,1.08,1.132,1.005,1.068,0.978,1.207,0.914,1.005,1.418,0.931,0.859,0.941,1.288,0.797,0.747,1.252,1.019,1.318,1.227,1.079,0.925,0.892,0.987,0.995,0.905,1.098,0.995,1.022,0.897,0.957,1.065,1.04,1.039,0.995,1.143,0.826,1.08,0.913,0.9,1.307 +NM_004728,0.929,1.126,1.19,0.692,0.98,0.722,0.55,0.388,1.513,2.162,0.663,0.719,0.608,0.586,0.873,1.074,0.886,0.821,1.274,0.694,0.748,0.99,1.435,1.551,0.612,1.001,1.378,0.676,0.488,0.746,1.127,0.855,1.643,0.863,0.242,1.685,1.022,0.861,2.149,0.931,1.195,1.051,1.056,2.148,1.9,0.835,0.942,0.868,1.224,1.251,0.987,1.473,1.472,3.196 +NM_004729,0.694,1.194,1.072,0.75,0.656,1.239,0.614,0.464,0.884,0.623,1.098,0.594,0.646,0.706,0.95,1.987,0.892,0.725,0.821,1.193,0.455,0.67,1.206,0.648,0.827,0.747,1.118,0.628,0.485,1.014,0.838,2.862,1.559,1.633,0.513,0.736,1.018,0.83,1.352,1.195,0.81,1.497,1.03,0.98,0.833,1.015,0.824,0.721,0.902,0.743,1.278,0.76,0.822,1.09 +NM_004730,0.909,0.917,1.19,0.756,0.958,1.025,0.671,0.523,1.713,1.237,1.089,0.705,0.787,0.938,1.019,1.761,0.704,0.858,1.612,0.814,0.81,0.794,1.112,1.196,0.578,0.964,1.175,1.096,0.434,1.073,1.294,0.88,3.851,1.017,0.611,0.519,1.04,1.03,1.346,0.836,1.359,1.039,0.825,0.837,1.199,1.205,0.864,0.785,1.067,0.829,0.871,0.94,1.147,1.299 +NM_004731,1.014,1.009,1.159,0.902,0.903,0.952,0.971,1.027,1.244,1.094,0.99,1.0,1.006,1.13,0.922,1.0,0.946,1.203,1.105,0.959,0.998,0.944,0.895,1.068,1.127,0.961,1.043,1.141,1.676,0.895,1.142,1.066,1.042,0.942,0.964,0.944,1.016,1.026,0.952,0.954,1.174,0.857,0.996,0.834,1.236,0.94,1.185,1.066,1.007,1.035,0.985,0.933,1.166,0.853 +NM_004732,1.054,0.998,0.997,0.954,0.947,1.169,1.043,0.932,1.088,0.838,1.083,1.159,1.296,1.019,0.984,0.883,0.954,0.98,1.072,1.005,0.918,0.878,1.069,0.97,0.846,1.169,0.849,1.089,1.239,0.966,0.937,1.083,1.201,1.209,1.162,1.118,1.039,1.094,0.946,1.128,1.015,1.02,1.013,0.924,0.936,1.044,0.947,0.819,1.02,0.863,1.071,0.938,1.147,1.073 +NM_004733,0.747,1.14,1.094,0.876,0.764,1.284,1.027,0.675,0.921,0.864,0.876,0.659,0.726,0.75,0.974,1.414,0.831,1.138,0.722,1.23,0.594,0.923,1.057,1.057,0.708,0.669,0.8,0.796,0.668,1.407,0.865,1.17,1.855,1.398,0.549,0.816,1.318,0.724,1.273,0.826,0.786,1.521,0.889,1.026,1.185,1.377,1.026,0.84,1.49,0.917,1.045,0.803,0.766,1.188 +NM_004734,0.989,0.868,0.948,0.966,0.922,0.947,1.163,0.768,1.03,0.94,1.101,0.967,0.968,1.087,1.233,1.09,0.992,1.01,0.959,1.158,1.115,0.919,1.164,1.0,0.927,0.944,0.918,1.031,1.743,1.277,0.939,1.434,0.981,1.341,1.09,0.998,1.022,1.028,1.0,0.917,1.02,1.437,1.106,1.015,0.973,1.007,1.018,0.88,0.821,0.954,1.046,0.903,0.944,0.862 +NM_004736,0.752,0.996,1.465,0.761,0.881,1.004,0.769,0.541,0.702,0.951,1.283,0.761,0.708,0.75,1.305,2.356,0.83,0.882,0.828,1.306,0.631,0.73,1.219,0.983,0.558,0.655,1.371,0.659,0.498,0.955,0.85,1.495,1.966,0.894,0.414,1.085,1.721,0.755,1.395,1.448,0.768,1.363,1.26,1.518,0.838,1.67,0.923,0.66,0.927,0.919,1.458,1.192,1.065,1.203 +NM_004738,0.771,0.891,0.994,0.835,0.821,1.28,0.713,0.517,0.884,0.89,1.011,0.697,0.663,0.667,0.893,1.369,0.953,0.932,0.963,0.93,0.64,1.011,1.312,1.108,0.826,0.879,0.986,0.734,0.783,1.27,0.755,0.738,1.56,1.398,0.463,0.843,1.281,0.757,1.52,1.086,0.966,1.126,0.887,1.111,0.926,1.298,0.996,0.909,1.109,0.775,0.956,1.095,0.745,1.451 +NM_004739,1.231,0.669,1.258,0.824,0.997,0.914,0.576,0.807,1.076,1.155,0.9,1.058,0.962,0.922,0.989,1.458,0.823,1.072,1.491,0.821,1.017,0.928,1.109,1.053,0.605,1.464,1.182,0.899,0.476,0.896,1.339,0.954,2.519,0.988,0.388,1.316,0.899,0.866,1.699,1.292,1.047,0.866,0.595,1.331,1.617,0.707,0.893,1.571,0.843,1.668,0.94,0.881,1.098,1.088 +NM_004740,1.4,0.8,1.199,0.809,1.012,0.928,0.747,0.84,1.11,1.079,0.875,0.835,0.747,0.946,0.792,0.983,1.219,1.084,1.471,0.928,0.93,1.314,0.92,1.162,0.992,1.577,1.063,0.878,0.816,0.988,0.99,1.202,1.33,1.035,0.89,1.503,0.909,1.205,1.953,0.879,1.09,0.868,0.672,1.728,1.244,0.887,0.969,1.715,0.892,1.679,0.954,0.815,1.106,0.882 +NM_004741,0.939,0.983,1.068,0.785,1.029,0.847,0.882,0.836,1.086,1.23,0.899,0.875,0.715,0.917,0.932,0.935,0.912,0.862,1.129,0.883,0.903,0.857,1.015,1.057,0.83,0.904,1.079,0.868,0.901,0.952,0.947,1.319,1.968,0.956,0.81,1.33,0.933,0.796,1.458,1.218,1.094,1.053,1.042,1.789,1.148,0.95,1.101,0.922,1.237,1.059,0.972,1.085,1.025,1.893 +NM_004742,0.869,1.158,0.927,0.902,0.987,1.021,0.847,1.013,0.981,0.883,0.913,0.949,0.999,1.085,1.051,0.998,1.071,0.942,1.032,0.911,0.982,1.023,0.934,0.985,1.177,1.023,0.98,0.933,0.842,0.955,1.068,1.083,1.056,0.979,1.0,1.087,1.114,1.052,0.895,1.008,1.028,0.933,0.937,0.937,1.047,1.033,0.887,0.882,0.915,0.93,0.959,0.943,0.96,1.006 +NM_004745,1.11,1.108,1.27,1.004,1.11,0.978,1.135,0.972,1.064,1.014,1.117,1.082,0.949,0.871,1.229,1.075,1.01,1.007,0.978,0.99,1.168,0.953,0.964,0.907,1.037,1.024,0.934,0.976,1.038,1.014,0.842,0.849,1.086,0.887,1.039,0.945,0.967,0.888,0.992,0.865,1.105,0.88,1.093,0.837,0.949,0.998,1.037,1.014,1.023,1.013,0.999,1.001,1.091,0.884 +NM_004746,1.057,1.075,0.94,0.836,1.071,1.09,1.025,1.067,0.914,0.937,0.89,1.024,0.975,0.933,1.002,1.17,1.105,0.937,1.111,0.909,0.942,1.1,1.309,0.938,1.073,1.094,1.074,0.974,1.219,0.947,0.819,1.04,1.079,0.971,1.084,0.973,1.024,0.925,0.868,0.917,0.968,1.052,1.05,1.065,1.077,1.029,0.857,0.951,0.975,0.913,0.984,0.791,1.025,0.937 +NM_004747,0.712,0.903,1.28,0.662,1.074,0.95,0.607,0.503,1.549,1.093,0.747,0.731,0.597,0.719,0.794,0.984,0.916,0.909,1.113,1.147,0.762,1.148,1.125,1.111,0.325,0.99,1.905,1.003,0.51,1.168,1.225,1.852,2.087,0.914,0.463,0.891,0.655,1.288,1.159,0.652,1.523,0.998,0.378,1.538,1.28,0.681,0.912,1.111,0.717,1.046,0.963,1.037,0.99,1.082 +NM_004748,1.596,3.0540000000000003,1.6560000000000001,1.813,1.65,2.719,1.934,1.7200000000000002,1.5390000000000001,1.564,2.5869999999999997,1.518,1.342,1.867,1.835,2.3890000000000002,1.692,1.862,1.591,2.273,1.4409999999999998,1.512,2.479,1.521,2.2350000000000003,1.561,1.608,1.49,1.48,2.666,1.607,2.534,2.6,3.159,1.406,2.075,2.529,1.4809999999999999,2.3449999999999998,1.835,1.413,2.7489999999999997,1.839,1.7719999999999998,1.558,2.932,1.859,1.429,2.09,1.476,2.575,1.788,1.776,2.692 +NM_004749,1.8159999999999998,1.736,1.7770000000000001,1.746,1.924,2.3289999999999997,1.526,1.443,1.972,1.819,1.8079999999999998,1.935,1.579,1.6989999999999998,2.073,3.06,2.094,2.117,2.128,1.926,1.728,2.019,2.8419999999999996,2.4299999999999997,1.772,1.945,2.202,1.603,1.7999999999999998,2.198,1.6960000000000002,2.25,4.304,1.9580000000000002,1.262,2.075,2.101,1.892,3.409,2.449,1.81,2.0229999999999997,1.916,3.801,2.072,1.863,2.363,1.934,2.557,1.695,1.873,1.96,1.713,3.2359999999999998 +NM_004750,0.939,0.797,1.053,0.923,0.854,1.148,1.015,0.873,1.001,1.051,1.006,1.207,0.792,0.795,1.098,1.219,0.884,1.18,1.32,1.031,0.907,1.02,0.917,1.126,0.836,0.886,0.966,0.989,0.823,1.161,0.902,0.973,0.961,1.871,0.797,0.914,0.925,1.112,0.967,0.968,0.921,1.218,0.958,0.907,1.015,1.058,1.112,0.877,0.799,1.094,1.22,0.825,1.321,1.002 +NM_004751,0.362,2.662,0.266,1.457,0.429,3.13,1.005,0.318,0.697,0.278,3.385,0.249,0.351,0.358,3.092,4.226,0.4,0.829,0.246,2.033,0.206,0.322,3.657,0.562,0.272,0.523,1.105,0.531,0.454,2.166,0.554,1.148,0.503,1.278,0.227,4.858,3.646,0.42,4.06,0.938,0.913,2.52,2.555,2.235,0.422,5.384,2.894,0.558,5.494,0.263,3.526,1.92,0.434,0.642 +NM_004752,0.872,1.025,1.125,0.8,0.942,0.995,0.729,0.963,1.022,0.87,1.009,1.073,1.051,0.848,0.838,0.921,0.976,1.028,0.875,0.951,1.188,0.979,0.885,0.94,1.033,1.093,1.223,1.145,0.702,1.103,0.976,1.02,0.852,1.133,0.919,0.933,1.066,0.973,1.016,1.034,1.026,0.897,0.842,0.957,1.078,0.99,0.878,0.985,0.95,0.937,1.079,0.823,1.055,1.007 +NM_004753,0.802,1.207,1.579,0.81,1.034,1.418,0.749,0.82,0.868,0.981,0.882,0.701,0.96,0.568,0.765,1.214,1.213,1.238,1.596,1.4,0.631,1.207,0.933,1.139,0.688,1.189,1.005,0.999,0.78,1.467,0.884,1.392,0.647,2.07,0.947,0.293,0.962,1.443,1.512,0.479,1.075,1.296,0.426,1.296,0.912,0.61,0.997,1.411,0.578,0.681,1.008,0.793,0.872,0.59 +NM_004755,0.777,1.006,1.478,0.795,0.967,1.404,0.76,0.696,0.656,0.725,1.235,0.892,0.929,0.6,0.859,1.03,0.954,1.0,1.003,1.076,0.698,0.748,1.263,0.957,0.92,0.849,1.316,0.765,0.798,1.192,0.729,0.762,1.082,1.092,0.641,0.816,1.487,0.876,0.947,1.049,1.032,1.447,0.75,1.073,0.956,1.026,0.967,0.76,1.338,1.255,1.05,1.0,1.183,0.994 +NM_004756,1.05,1.068,1.087,1.1,0.922,1.098,0.904,0.953,0.944,0.96,0.952,1.033,1.057,0.98,1.004,0.919,0.927,1.021,1.008,0.985,1.187,1.202,0.854,1.034,1.046,1.202,1.152,1.026,0.787,1.004,0.899,1.496,1.102,1.039,1.265,1.019,0.942,1.239,1.054,0.879,0.988,1.019,0.961,0.894,0.879,0.914,1.138,1.407,0.839,1.042,0.886,0.775,0.952,0.951 +NM_004757,0.672,1.065,1.031,0.937,0.9,0.98,0.637,0.363,1.418,1.059,1.219,0.486,0.569,0.789,0.87,1.587,0.919,0.772,1.329,0.925,0.698,0.67,1.212,1.022,0.583,0.816,1.576,1.001,0.421,1.046,1.082,0.897,2.656,1.136,0.432,1.206,1.149,0.782,1.457,0.657,1.313,1.076,0.866,1.706,1.086,0.878,1.124,0.724,1.4,0.724,1.092,1.053,1.074,1.503 +NM_004758,0.95,1.155,1.164,1.004,1.033,1.042,1.037,0.852,1.025,0.864,1.049,0.877,0.976,1.256,1.063,0.945,1.003,0.794,1.047,0.931,0.905,1.033,0.926,1.113,1.093,0.973,0.831,0.978,1.162,1.008,0.983,1.454,1.146,1.288,1.071,0.951,0.86,1.117,0.972,0.9,1.065,1.077,0.857,1.131,0.899,0.849,1.04,1.071,0.877,1.021,0.839,0.803,1.072,0.969 +NM_004759,1.048,0.849,1.195,1.122,0.982,1.093,1.108,1.14,0.958,0.976,1.028,1.087,0.926,0.926,1.276,0.988,0.97,0.993,0.807,1.047,1.039,1.037,1.032,1.095,0.948,0.838,1.083,1.035,0.995,1.013,1.071,0.998,1.077,0.991,0.943,0.915,1.011,1.009,0.97,0.938,0.993,1.091,0.973,1.004,0.955,0.845,0.98,0.905,1.039,0.985,1.018,0.995,0.999,1.161 +NM_004760,1.067,0.948,1.235,1.028,0.92,1.052,0.932,1.05,1.112,0.953,0.98,1.04,1.022,0.861,0.899,0.994,1.06,1.141,1.01,1.059,1.0,0.937,1.016,1.049,1.012,1.112,1.008,1.021,1.004,1.066,0.969,0.856,0.894,0.91,1.055,0.956,1.109,0.948,1.004,1.029,1.059,1.037,0.999,0.973,0.939,0.936,0.969,0.993,0.838,0.917,1.018,0.872,1.2,0.917 +NM_004761,1.115,0.804,1.132,0.78,1.271,1.012,0.471,1.139,1.589,1.074,0.603,1.007,1.304,1.011,1.098,1.007,1.519,1.082,1.34,0.77,0.813,1.77,0.759,1.646,0.658,1.433,1.231,1.225,0.551,1.019,1.797,1.353,1.2,1.169,2.58,0.669,0.709,1.699,1.05,1.033,1.192,0.813,0.493,0.925,1.01,0.71,0.957,1.762,0.551,1.28,0.746,0.705,0.994,1.509 +NM_004763,0.719,1.005,0.983,0.894,0.711,0.949,0.569,0.59,1.013,1.065,0.998,0.994,0.896,0.689,1.024,1.605,0.772,0.885,1.147,0.797,0.594,0.833,1.086,1.333,0.656,0.908,1.454,0.772,0.268,1.109,0.569,1.515,3.253,1.1,0.451,1.042,1.138,0.65,0.991,0.679,0.986,1.125,0.485,1.213,0.748,1.062,0.747,0.722,1.176,1.002,1.126,0.908,0.817,2.081 +NM_004764,1.013,0.962,0.855,0.982,1.083,1.008,0.886,1.119,0.884,0.875,1.245,0.898,0.908,1.202,0.913,1.104,0.964,0.866,1.015,1.226,1.018,0.872,1.122,0.974,1.224,0.983,0.844,1.007,1.223,1.042,0.938,1.093,1.016,1.169,0.983,1.159,1.12,1.042,1.0,0.999,0.848,1.004,1.153,0.894,1.045,1.256,0.989,1.039,0.924,1.037,1.248,1.007,0.861,0.959 +NM_004765,1.01,0.884,0.853,0.893,0.716,1.065,0.672,0.856,1.024,0.877,1.212,0.991,1.356,0.719,0.852,1.421,0.833,0.896,1.218,0.884,0.995,0.853,1.181,1.237,0.883,1.176,1.098,0.749,0.637,0.909,0.993,1.563,2.747,1.441,0.43,0.853,0.744,0.933,1.475,0.865,0.917,0.951,0.564,1.66,1.158,0.605,1.025,1.094,0.651,1.033,0.794,0.716,1.09,1.757 +NM_004766,0.605,1.078,0.973,0.81,0.918,1.106,0.612,0.39,1.238,0.894,1.231,0.565,0.376,0.589,1.047,1.484,0.84,1.003,1.105,0.959,0.431,0.717,1.344,0.835,0.673,0.764,1.075,0.875,0.589,1.526,0.794,1.464,2.047,1.312,0.565,0.702,1.274,0.784,1.497,0.597,1.082,1.19,0.887,1.444,0.779,1.444,0.889,0.604,1.422,0.761,1.305,1.907,0.98,1.229 +NM_004767,1.051,0.913,0.999,0.84,1.063,1.038,0.938,0.986,0.934,0.92,1.065,1.042,0.846,0.895,0.987,0.997,1.01,1.021,0.98,1.004,0.987,0.88,0.861,0.965,0.968,1.017,1.0,0.981,0.61,1.196,1.13,0.989,3.922,0.924,0.887,1.415,1.008,0.885,1.04,1.016,1.036,0.998,1.083,1.012,1.057,1.042,1.147,0.957,1.0,0.922,1.046,0.937,0.858,0.965 +NM_004768,0.602,0.954,1.223,0.468,0.792,1.268,0.749,0.372,1.578,1.108,0.894,0.887,0.56,0.458,0.768,1.265,0.767,0.864,0.819,1.257,0.541,0.998,1.283,1.238,0.673,0.394,1.293,0.855,0.51,1.124,0.869,1.791,1.861,1.02,0.232,1.16,0.942,0.727,1.379,1.272,0.938,1.194,0.657,1.473,0.814,1.119,1.043,0.352,1.119,0.587,1.208,1.079,0.827,1.44 +NM_004770,1.0,0.958,1.066,0.954,0.942,1.058,1.114,0.793,0.969,0.943,0.932,0.997,0.948,0.874,1.119,0.982,1.194,1.065,0.936,1.007,0.953,0.992,1.088,0.961,0.989,0.949,1.006,0.931,0.886,1.026,1.129,1.027,1.059,1.096,0.876,1.02,1.136,0.967,1.0,1.005,0.91,1.048,0.923,0.95,0.984,0.998,0.995,0.997,0.969,0.868,0.987,0.938,1.093,1.062 +NM_004771,1.078,1.059,1.02,1.062,0.918,1.008,0.878,1.032,1.022,1.114,1.169,0.92,0.991,0.95,0.725,1.036,0.992,0.99,1.078,0.936,0.821,1.016,0.95,1.105,0.978,0.991,1.067,1.07,0.943,0.999,1.012,1.239,0.897,0.804,1.015,1.036,0.899,0.94,0.89,0.985,0.832,0.953,0.806,0.935,1.041,0.912,1.03,1.031,0.9,1.138,1.025,0.999,0.869,1.081 +NM_004772,0.699,1.146,1.761,0.722,0.951,1.215,0.949,0.767,0.689,0.884,1.205,0.989,0.716,0.717,0.957,1.053,1.018,0.761,0.97,1.1,0.802,0.664,1.286,0.654,0.96,0.634,1.494,0.788,0.55,1.304,0.675,9.028,1.514,2.33,0.615,0.705,0.969,0.882,0.971,1.049,1.109,1.193,1.034,0.802,0.99,0.922,0.741,0.651,0.716,0.816,0.96,1.027,1.156,1.273 +NM_004773,0.691,0.995,1.253,0.781,0.939,1.053,0.592,0.657,1.187,0.92,1.213,0.981,0.841,0.777,0.944,1.172,0.877,0.986,1.258,1.023,0.503,0.721,0.984,0.939,0.554,0.952,1.224,0.81,0.356,1.073,0.92,1.757,1.665,1.343,0.252,0.87,1.063,0.947,1.375,0.602,1.116,0.933,0.616,1.444,0.988,1.001,0.967,0.847,0.823,0.872,0.805,0.864,0.892,1.821 +NM_004774,0.524,1.149,1.394,0.58,0.887,1.137,0.873,0.619,1.044,0.91,0.67,0.87,0.647,0.556,0.825,1.202,0.859,0.969,0.706,1.025,0.558,1.087,1.365,1.47,0.597,0.522,1.401,0.869,0.723,1.187,1.14,1.471,2.766,1.135,0.478,0.581,1.006,1.158,1.598,1.303,0.979,1.304,0.846,1.049,1.144,0.976,1.033,0.648,1.284,0.77,1.184,0.904,0.614,1.898 +NM_004775,0.948,0.926,1.046,0.88,1.058,0.973,1.169,0.971,1.003,0.956,0.92,1.023,1.132,1.081,0.989,1.223,1.087,1.047,0.996,1.037,1.054,0.875,1.034,1.086,0.925,0.908,0.777,1.108,1.232,0.886,1.133,1.099,0.902,1.075,0.876,1.073,0.994,1.0,1.172,0.973,1.049,0.993,1.146,0.995,0.873,1.07,1.004,1.017,0.97,1.004,0.971,1.0,1.121,1.543 +NM_004776,0.837,0.87,1.093,0.832,1.025,1.008,0.512,0.861,1.573,0.762,1.161,0.711,0.697,0.852,1.056,1.132,0.981,0.95,0.976,1.063,0.617,0.65,1.417,1.014,0.59,0.942,0.932,1.26,0.54,1.221,1.272,1.559,1.41,1.18,0.951,0.962,0.743,0.669,1.021,1.252,1.004,0.804,0.72,0.996,0.901,0.89,1.062,0.803,1.121,0.746,0.857,1.271,0.748,1.888 +NM_004778,0.827,1.339,0.996,1.174,0.952,1.236,1.261,0.891,0.94,0.925,1.365,0.953,0.949,0.814,0.966,1.135,0.95,0.984,0.836,1.017,0.967,0.851,1.382,0.89,1.144,0.899,1.007,0.917,1.262,2.641,0.898,1.111,0.818,2.3,0.878,0.993,1.327,0.986,1.224,0.895,0.813,1.378,0.816,0.891,0.973,1.273,1.005,0.942,0.94,0.926,1.403,0.794,0.999,0.855 +NM_004779,0.621,0.984,1.464,0.745,0.848,1.366,0.864,0.592,1.006,0.711,0.773,0.907,0.757,0.736,1.093,1.868,1.051,1.227,0.93,1.263,0.468,1.009,1.287,0.987,0.749,0.649,1.571,0.767,0.587,1.177,0.929,1.403,2.586,1.33,0.666,0.532,1.307,1.024,1.335,1.227,1.036,1.243,0.594,0.743,0.834,1.021,1.01,0.764,1.191,0.854,0.953,0.785,0.702,1.789 +NM_004780,0.715,1.332,1.12,0.782,0.816,0.999,0.925,0.603,0.961,0.85,1.434,0.818,0.733,0.927,1.0,1.133,0.682,0.882,0.881,1.011,0.643,0.648,1.362,0.794,0.904,0.692,0.941,1.0,0.555,1.244,0.899,2.3,2.099,2.167,0.523,0.926,1.029,0.937,0.972,0.682,1.233,1.754,0.838,1.353,0.763,1.037,1.052,0.61,0.786,0.704,1.041,0.845,1.08,1.351 +NM_004781,0.887,1.057,1.096,0.856,1.16,1.026,0.723,0.778,1.349,0.968,1.142,0.863,0.772,0.91,1.105,1.412,0.816,0.948,0.999,0.88,0.799,0.73,1.05,0.957,0.747,0.89,1.16,1.055,0.708,1.127,1.129,0.963,1.7,1.272,0.819,0.847,0.979,0.844,1.062,0.876,1.102,0.921,1.045,1.144,1.032,1.242,1.068,0.93,1.078,0.916,1.009,0.996,1.164,1.796 +NM_004782,0.924,1.099,0.99,0.865,0.953,1.625,0.892,0.908,0.866,0.776,1.192,0.962,0.673,0.947,1.293,1.181,0.986,0.906,1.105,0.802,0.732,0.971,1.081,0.9,0.928,0.969,1.161,0.926,0.979,1.301,1.405,1.057,1.727,1.487,1.288,0.754,1.162,1.049,1.242,0.724,1.028,0.982,0.901,0.778,0.885,1.12,0.852,0.965,0.923,0.945,0.895,0.699,0.847,0.686 +NM_004783,0.93,0.874,1.047,0.974,0.873,1.013,0.77,0.732,0.847,0.925,0.946,0.998,0.848,0.869,0.814,1.008,1.032,0.893,0.94,1.029,0.932,1.092,1.124,0.868,0.952,1.242,0.99,0.835,0.944,1.041,0.924,1.438,2.097,1.111,0.781,0.932,0.879,1.093,1.408,1.143,0.87,0.855,0.814,1.073,1.09,0.876,0.809,1.143,0.959,1.068,0.924,0.905,1.059,1.967 +NM_004784,1.077,0.926,0.952,0.969,0.985,1.03,1.123,1.248,1.093,0.865,0.96,0.941,1.1,0.872,1.365,0.92,1.062,0.999,1.049,0.971,1.095,1.005,1.237,0.925,1.235,0.923,1.104,1.158,0.737,0.958,0.94,1.021,0.917,1.032,1.011,1.049,1.052,0.955,1.086,1.0,0.951,0.973,1.01,0.972,1.108,0.879,1.125,1.003,1.106,1.033,0.95,0.93,1.042,0.977 +NM_004785,0.657,1.79,0.588,1.293,0.619,1.784,1.842,0.771,0.627,0.619,1.072,0.801,0.608,0.609,0.699,1.025,0.618,1.633,0.726,1.893,0.617,0.651,0.633,0.597,2.578,1.025,0.605,0.888,1.195,3.516,0.912,2.876,1.309,4.557,1.201,1.246,0.999,0.633,2.482,1.295,0.649,1.221,0.541,3.32,0.801,0.742,0.614,0.671,0.611,0.654,1.283,0.769,0.615,0.913 +NM_004786,0.658,0.784,1.706,0.742,1.306,1.841,1.034,1.333,1.366,1.011,0.84,1.103,1.056,0.778,1.094,3.122,1.205,1.143,0.715,1.068,0.469,1.969,1.089,2.088,0.563,0.469,1.466,1.055,0.669,1.601,1.818,1.114,2.681,0.947,0.743,0.451,1.092,2.071,1.692,0.598,1.219,0.867,0.646,0.576,1.195,0.887,1.275,1.007,1.409,0.816,0.849,0.681,0.496,1.101 +NM_004787,1.104,1.005,0.984,1.028,0.904,0.918,0.824,1.096,1.02,1.0,0.86,0.992,1.032,0.755,0.891,1.009,0.932,1.072,1.016,0.93,1.096,0.887,0.977,1.064,1.113,1.074,1.005,1.116,0.839,0.924,1.034,1.328,1.008,1.304,0.954,0.9,0.949,0.963,1.013,0.921,1.018,1.138,0.785,0.805,0.968,0.86,0.952,0.929,0.88,0.95,1.022,0.998,0.774,0.952 +NM_004788,0.56,1.229,1.062,0.758,0.76,1.512,0.83,0.476,0.993,0.765,1.248,0.59,0.419,0.599,0.938,1.533,0.676,1.197,0.966,1.474,0.444,0.617,1.372,0.725,0.862,0.548,1.008,0.63,0.564,2.116,0.732,1.419,1.348,1.824,0.374,1.398,1.404,0.68,1.449,0.767,0.83,1.315,0.691,0.655,0.783,1.485,0.861,0.565,1.234,0.615,1.364,0.732,0.628,1.316 +NM_004789,0.957,0.904,1.067,1.071,1.023,0.994,1.079,0.912,1.055,1.189,0.901,0.981,1.064,0.931,0.814,0.984,1.123,1.093,1.036,0.879,0.948,0.953,1.047,1.021,0.842,0.885,1.078,0.969,0.871,0.979,1.053,0.963,0.912,1.029,0.876,0.912,0.954,0.939,1.058,0.962,1.032,0.971,0.978,0.957,1.127,0.888,0.967,0.977,0.979,0.951,1.134,1.119,1.09,1.021 +NM_004791,0.948,1.104,0.918,0.919,1.118,0.971,1.039,0.934,0.974,1.076,0.892,0.879,0.971,0.909,0.952,0.967,0.925,1.051,0.973,1.059,1.114,0.933,0.909,1.089,0.959,0.957,0.985,1.136,0.925,0.946,0.964,10.47,1.075,1.168,0.943,0.929,1.073,0.911,1.663,1.022,0.954,1.027,0.97,1.114,0.824,0.921,1.044,1.062,1.177,0.927,1.02,1.103,1.092,0.927 +NM_004792,0.954,1.048,1.194,0.941,0.943,1.175,1.06,1.091,0.922,1.094,0.902,0.993,0.976,0.891,0.816,1.29,1.024,0.932,0.976,0.94,0.937,1.06,0.899,1.129,0.934,0.96,1.139,1.063,0.93,1.091,0.98,0.983,1.35,0.99,1.016,0.899,0.961,1.151,0.997,1.031,0.843,1.013,0.849,0.971,1.012,1.14,0.999,0.956,1.1,0.938,1.065,0.956,1.057,1.174 +NM_004793,0.796,1.054,0.747,1.018,0.783,0.85,0.75,0.6,0.922,0.85,0.692,0.774,0.801,0.77,0.858,0.988,0.909,0.861,1.322,0.893,0.904,0.904,1.27,1.068,1.002,1.092,1.11,0.724,0.589,1.138,0.812,0.98,1.363,1.097,0.712,1.035,0.85,0.859,1.773,0.914,0.904,0.996,0.723,1.911,1.025,0.749,0.86,1.02,0.994,1.118,0.903,0.675,0.975,1.174 +NM_004794,0.967,0.914,1.19,0.971,1.071,0.949,0.993,0.945,1.027,0.979,1.16,0.968,0.901,0.727,0.956,0.971,0.964,1.019,1.083,0.923,0.96,0.995,1.102,1.063,0.962,1.077,1.094,0.972,1.029,0.94,0.958,1.167,0.984,0.901,0.955,1.064,0.992,0.916,0.986,1.069,1.123,0.888,0.762,1.075,1.055,0.962,1.015,0.857,0.888,0.978,1.055,1.028,0.96,1.187 +NM_004796,0.914,1.116,1.044,1.015,1.028,0.953,1.295,0.92,0.941,1.069,1.0,0.965,0.973,1.233,0.738,0.971,0.927,1.102,0.973,0.984,1.185,1.304,0.984,1.027,0.986,1.015,0.943,0.925,1.174,1.074,1.097,1.061,1.05,1.06,1.005,1.043,0.975,1.097,1.005,1.067,1.121,1.059,1.148,0.941,1.058,0.964,0.935,0.932,1.05,1.007,1.076,0.993,1.012,1.029 +NM_004798,0.494,0.955,0.588,0.928,0.426,1.473,0.859,0.307,0.42,0.507,1.33,0.403,0.464,0.333,0.815,1.464,0.486,0.853,0.413,1.464,0.361,0.42,1.879,0.458,1.017,0.466,0.674,0.353,0.722,1.954,0.467,1.57,1.937,1.619,0.287,0.964,1.419,0.535,1.918,1.158,0.465,1.465,0.887,1.784,0.539,1.083,0.836,0.42,1.07,0.517,1.411,0.787,0.53,1.96 +NM_004799,0.954,1.462,1.187,0.631,1.142,1.396,0.618,0.724,1.253,1.044,1.064,0.976,0.764,0.888,1.008,1.544,0.89,1.285,1.139,0.956,0.601,1.2,1.201,1.219,0.684,0.942,1.128,1.109,0.615,1.462,1.136,1.285,1.516,1.528,0.352,0.493,1.117,1.453,0.878,0.607,1.246,1.403,0.568,0.482,1.013,0.897,0.832,1.22,0.801,0.959,0.955,0.834,0.76,0.86 +NM_004800,0.593,1.171,1.043,0.59,0.841,1.821,0.772,0.563,1.055,0.677,1.331,0.595,0.673,0.409,1.0,3.418,0.715,1.269,0.702,1.498,0.215,0.667,1.719,0.81,0.609,0.384,1.132,0.638,0.538,2.209,0.859,1.269,1.383,1.694,0.276,0.713,1.816,0.826,1.527,0.854,0.788,1.587,0.848,1.034,0.821,1.734,1.528,0.539,1.647,0.639,1.869,0.868,0.441,1.503 +NM_004801,1.053,0.911,0.922,1.113,0.918,0.983,0.928,0.904,0.944,0.906,0.945,1.043,1.069,1.047,0.909,1.124,1.027,1.101,1.077,1.094,1.025,1.203,1.035,1.208,0.831,0.957,1.056,1.092,0.909,1.002,0.915,1.026,0.915,1.03,1.074,1.125,0.973,0.99,1.035,1.172,0.851,0.982,1.27,0.925,1.006,1.04,0.913,1.057,1.011,1.071,0.943,1.014,1.085,1.053 +NM_004803,0.913,1.098,1.107,1.003,0.989,0.991,0.96,1.097,0.855,0.998,1.058,0.918,0.861,0.819,1.343,0.905,0.889,0.907,1.087,0.695,1.026,1.004,0.895,0.978,1.021,0.986,1.071,0.888,0.903,1.015,0.896,1.068,1.155,0.908,1.172,0.887,1.1,1.031,0.952,1.073,0.987,0.967,0.964,1.055,1.051,1.103,0.991,1.081,1.002,1.063,1.065,1.107,1.01,0.972 +NM_004804,0.95,0.828,1.116,0.829,0.852,0.999,0.847,0.983,0.941,1.066,1.018,0.915,0.933,0.774,0.931,1.21,0.988,0.887,1.259,0.952,0.934,0.876,1.112,1.044,0.889,1.174,0.952,0.893,0.605,1.049,0.964,1.196,2.042,1.001,1.038,1.051,0.914,0.81,1.437,1.116,1.079,0.997,0.805,1.521,1.081,0.965,1.12,0.992,1.024,0.938,0.951,0.792,1.157,1.493 +NM_004805,0.692,0.999,0.956,0.846,0.845,1.067,0.697,0.598,1.03,1.051,0.939,0.951,0.758,0.9,0.809,1.232,0.882,0.864,1.184,0.867,0.949,0.989,1.144,1.183,0.701,0.868,1.095,0.776,0.57,0.984,0.994,1.139,3.342,1.111,0.556,1.143,0.953,0.951,1.169,1.259,1.007,0.941,0.822,1.58,1.007,1.106,1.048,0.784,1.125,0.785,0.892,1.048,0.996,1.892 +NM_004809,0.596,1.076,1.202,0.769,0.698,1.33,1.147,0.462,0.787,0.778,0.91,0.737,0.578,0.49,0.924,1.804,0.919,1.158,0.885,1.332,0.394,0.642,1.835,0.891,0.883,0.658,1.121,0.771,0.829,1.857,0.657,1.433,0.854,2.048,0.259,0.817,1.306,0.804,1.845,0.866,1.002,1.244,0.683,0.626,0.947,1.213,1.133,0.537,0.888,0.727,1.188,0.728,0.661,1.213 +NM_004810,0.965,0.988,1.123,0.923,1.036,1.026,0.852,1.204,0.886,0.908,0.958,0.96,1.024,0.994,1.064,0.965,1.047,0.88,1.069,0.951,1.0,1.051,0.9,0.98,1.05,0.996,1.065,1.137,1.025,1.025,1.024,1.142,1.097,0.955,0.957,0.902,1.172,0.971,0.965,1.089,1.038,1.067,0.905,1.107,1.006,0.951,0.953,1.045,0.951,0.963,1.062,0.973,0.976,0.943 +NM_004813,0.513,1.175,1.142,0.799,0.784,1.01,0.771,0.488,0.95,0.968,1.166,0.824,0.621,0.399,0.93,1.663,0.827,1.007,0.932,1.36,0.482,0.614,1.444,0.944,0.618,0.678,0.999,0.693,0.532,1.864,0.69,0.976,1.135,1.188,0.317,2.057,1.312,0.72,1.689,0.979,1.001,1.309,1.037,1.617,0.936,1.443,1.328,0.768,1.38,0.671,1.179,0.963,0.837,1.501 +NM_004814,0.586,1.208,1.114,0.692,0.879,1.285,0.843,0.646,1.08,0.99,0.831,1.213,0.751,0.581,0.89,1.561,0.854,0.834,1.037,0.853,0.878,0.872,1.405,1.386,0.597,0.816,1.39,0.903,0.491,0.97,0.978,1.137,3.745,1.157,0.399,1.075,1.024,1.048,1.271,1.243,1.105,1.135,0.547,1.284,0.98,0.773,1.083,0.64,1.166,0.792,0.964,0.838,0.835,2.43 +NM_004815,0.945,1.023,0.904,0.999,1.074,0.925,1.125,1.079,0.989,1.068,0.88,1.087,0.997,0.885,0.914,0.832,1.038,0.954,1.033,1.249,1.061,1.059,1.035,1.019,1.068,1.221,1.154,1.112,0.972,0.96,0.866,0.848,0.896,0.97,0.868,0.907,0.954,1.038,1.054,1.063,1.036,0.963,1.154,1.098,0.949,0.889,1.075,1.038,1.053,1.054,0.958,0.972,1.168,1.294 +NM_004816,0.894,1.991,0.932,0.999,0.979,1.045,0.819,0.745,1.043,0.778,1.113,0.949,0.781,0.882,1.101,0.915,0.889,0.894,1.004,1.137,0.826,1.141,0.926,0.932,1.264,1.223,0.992,0.969,0.578,1.722,0.945,1.119,1.426,2.443,0.711,0.747,0.97,1.66,1.297,0.771,0.95,1.383,0.681,1.043,0.863,0.88,0.853,1.105,0.697,0.861,1.081,0.929,0.953,0.927 +NM_004817,0.944,0.838,0.56,0.958,1.298,0.829,0.845,0.592,1.692,1.177,0.899,0.493,0.643,0.816,1.076,1.03,0.352,0.988,0.845,1.085,0.651,0.701,1.482,0.989,0.52,1.091,0.457,1.457,0.443,1.084,1.382,0.618,1.126,1.364,1.817,0.978,0.845,0.877,1.304,1.452,0.997,1.082,0.898,1.053,0.554,1.264,0.893,1.005,1.237,0.424,1.267,0.681,0.792,1.785 +NM_004818,0.664,0.795,0.993,1.006,0.681,1.078,0.648,0.424,0.887,0.855,0.846,0.731,0.509,0.593,1.195,1.68,0.785,0.727,1.022,1.027,0.615,0.555,1.327,0.993,0.808,0.855,1.167,0.655,0.452,1.222,0.812,1.399,1.865,1.177,0.261,1.177,0.81,0.61,1.797,1.202,0.826,1.087,0.628,2.349,0.989,0.943,1.022,0.604,0.883,0.863,1.171,0.884,0.935,2.032 +NM_004819,1.156,1.109,1.033,1.001,1.041,1.121,0.753,0.866,0.93,0.933,0.966,0.951,0.982,1.12,1.205,0.727,0.993,0.939,1.185,0.982,1.036,1.013,0.97,0.996,0.981,1.021,1.061,1.016,1.089,0.888,0.952,0.99,0.96,0.98,0.873,1.076,0.809,1.025,1.287,1.033,0.943,1.061,0.909,1.27,0.954,0.821,1.014,1.095,1.307,0.906,1.075,0.873,0.941,1.08 +NM_004820,1.354,0.87,2.543,0.934,1.667,0.898,0.861,1.144,1.968,1.831,0.762,1.558,1.377,1.165,1.078,0.982,1.621,1.359,2.55,0.856,1.374,1.759,0.902,1.637,0.899,1.296,2.993,1.801,0.996,1.0,1.635,1.062,1.18,0.773,0.783,0.854,0.985,1.72,0.859,0.937,2.491,0.889,0.738,0.706,2.284,0.862,1.427,1.255,0.825,1.484,0.953,1.0,1.778,0.859 +NM_004821,1.059,1.023,0.884,1.066,0.874,1.023,1.137,0.992,1.049,0.999,0.983,0.981,1.102,0.907,0.871,0.922,1.157,0.876,0.986,0.909,0.952,1.013,1.049,0.857,1.067,0.993,0.913,0.947,1.015,1.152,0.948,0.965,1.033,1.04,1.128,1.027,1.032,0.974,0.934,0.902,1.065,1.085,0.978,0.925,1.024,0.864,1.005,0.88,1.056,1.174,1.04,1.085,1.094,1.071 +NM_004822,0.864,1.159,0.991,1.168,0.853,1.103,0.978,1.017,1.121,0.797,0.959,0.941,1.051,1.054,0.823,1.167,0.868,1.225,1.03,1.091,1.015,0.984,0.828,0.971,0.919,0.929,0.972,0.929,0.977,0.989,1.041,1.039,1.01,0.907,0.822,1.072,0.981,0.923,0.845,1.067,0.823,1.221,1.155,1.064,1.116,1.049,1.057,0.922,1.029,0.974,1.06,0.974,1.052,0.919 +NM_004824,1.118,1.043,1.107,0.985,1.042,0.962,0.866,0.962,0.915,0.992,0.908,1.037,1.04,0.855,0.923,0.968,1.094,0.884,0.899,1.103,1.052,1.014,0.876,0.923,1.045,1.111,1.069,1.073,1.168,0.976,0.891,1.028,1.071,1.093,1.082,0.799,0.974,0.93,1.146,0.926,0.946,0.94,0.906,0.91,1.168,0.937,1.074,1.026,0.971,1.055,1.108,1.0,0.997,1.053 +NM_004825,1.05,1.08,1.038,0.944,0.916,0.959,1.193,0.931,1.016,0.924,1.086,1.011,1.031,0.913,1.022,1.038,1.006,1.044,1.01,1.188,0.988,0.914,1.073,0.999,1.027,0.959,1.037,0.815,1.073,0.98,1.1,0.989,0.984,0.882,0.958,0.98,0.984,1.017,0.906,0.938,1.065,1.04,0.984,0.956,1.035,0.973,1.037,0.898,0.899,1.049,0.979,0.923,1.052,0.983 +NM_004826,0.921,0.975,1.026,0.937,0.911,0.993,0.988,0.869,1.072,0.915,0.812,0.981,1.012,0.988,1.174,1.059,0.904,1.085,1.073,0.98,1.013,1.059,0.978,1.014,0.847,0.958,0.915,1.061,1.028,1.045,0.991,1.68,3.807,1.045,1.093,1.076,1.138,0.913,0.947,2.446,0.932,0.79,1.097,1.008,1.111,1.071,1.026,0.956,1.126,0.803,0.991,1.086,1.025,1.008 +NM_004827,0.899,0.916,0.907,1.324,1.009,2.05,1.117,0.87,0.913,0.97,3.635,0.991,0.869,0.845,3.713,9.801,0.852,1.004,0.973,2.304,0.82,0.786,1.379,1.001,0.946,0.896,0.77,1.006,0.785,2.642,0.909,1.032,0.887,1.522,0.984,0.945,6.48,0.951,1.583,0.848,1.014,1.814,2.572,1.416,0.993,3.704,2.509,0.895,3.917,0.828,1.603,0.946,0.897,1.051 +NM_004828,1.035,0.937,1.038,0.949,0.868,0.985,0.906,1.187,1.069,1.02,1.006,1.029,0.981,1.125,1.345,0.925,0.897,0.903,1.029,1.021,1.056,0.98,0.955,1.116,0.96,1.135,1.183,0.998,1.171,1.013,1.112,0.933,1.033,1.108,1.1,1.135,0.963,0.956,0.935,0.966,1.042,0.894,1.274,1.0,1.148,0.906,0.888,0.98,0.88,1.0,1.034,0.903,0.927,1.032 +NM_004829,1.012,0.975,1.108,1.002,0.999,1.07,1.171,0.989,1.044,1.013,1.107,0.951,1.019,0.747,0.919,1.041,0.885,1.162,0.822,1.021,0.915,0.999,0.904,1.036,1.026,0.973,0.919,1.09,0.891,0.828,1.031,0.927,0.912,1.005,1.0,1.01,0.898,1.145,1.044,1.118,0.997,0.981,1.052,0.98,0.929,0.751,1.021,0.979,0.94,1.145,0.875,1.084,0.95,0.992 +NM_004830,1.083,0.987,1.105,1.108,0.96,0.969,1.118,0.98,1.271,1.094,1.056,1.013,0.948,0.915,0.908,0.867,1.049,1.266,1.008,0.998,1.004,0.959,0.996,1.076,1.069,1.156,0.88,0.961,1.099,0.99,1.086,1.012,0.922,0.986,0.994,1.037,1.144,0.964,0.986,0.954,0.984,1.049,0.93,1.178,0.968,0.958,0.947,1.072,1.231,1.09,0.932,0.961,1.114,0.808 +NM_004831,1.015,0.938,0.9,0.996,1.012,1.025,0.916,1.017,1.042,0.951,0.896,0.916,1.029,1.177,0.809,0.922,0.849,0.991,0.944,0.877,0.981,0.866,0.974,1.017,0.938,1.148,0.983,1.071,0.868,1.006,1.138,1.044,0.995,1.033,0.973,0.929,1.017,0.958,0.982,1.067,1.141,1.043,0.99,0.775,0.917,1.135,1.073,0.988,0.926,0.985,1.063,1.062,1.054,1.022 +NM_004832,0.337,1.124,0.936,0.534,0.654,1.56,1.234,0.588,0.841,0.318,0.793,0.734,0.676,0.273,0.682,2.421,0.506,1.587,0.727,1.201,0.333,0.613,1.852,1.016,0.523,0.429,1.106,0.702,0.938,1.27,0.717,1.387,1.409,1.641,0.164,1.873,1.458,0.74,1.5,1.225,0.937,0.947,0.696,1.215,1.035,1.039,1.388,0.496,1.403,0.5,1.104,0.939,0.582,1.558 +NM_004833,1.241,0.953,1.35,0.931,0.972,1.0,1.612,0.901,1.13,1.047,0.836,0.942,0.996,0.925,1.354,0.904,1.203,0.922,1.068,0.952,1.082,0.981,1.018,1.23,0.97,1.03,1.03,1.173,0.78,0.92,1.033,1.038,1.331,1.064,0.939,0.926,0.948,1.019,1.037,0.924,1.241,1.084,0.921,0.956,0.837,0.964,1.005,0.965,0.842,0.991,0.853,1.346,1.483,1.62 +NM_004834,0.887,0.634,1.403,0.642,1.348,0.726,0.468,0.973,1.517,1.664,0.566,1.274,0.753,0.84,0.793,1.098,1.144,1.161,2.248,0.549,0.849,1.112,0.797,1.541,0.397,1.329,1.122,1.043,0.472,0.662,1.212,1.763,2.098,0.823,1.287,0.866,0.546,1.28,1.042,1.395,1.321,0.589,0.596,2.596,1.333,0.575,1.166,1.458,0.516,1.434,0.711,1.029,1.53,1.411 +NM_004836,0.761,1.159,0.982,0.89,0.865,1.163,0.882,0.716,0.905,0.875,1.037,0.76,0.805,0.998,0.856,1.193,0.784,0.902,1.117,1.272,0.746,0.813,1.225,0.826,1.026,0.797,0.896,0.805,0.527,1.192,0.928,1.254,1.327,1.637,0.663,0.888,1.019,0.769,1.216,0.988,0.893,1.15,0.924,1.011,0.936,1.274,1.023,0.757,1.206,0.771,1.097,0.74,0.905,1.234 +NM_004837,0.617,1.203,1.03,0.76,0.905,1.249,0.486,0.63,1.058,0.815,1.015,0.897,0.68,0.711,0.837,1.893,0.602,0.788,1.491,0.914,0.566,0.819,1.053,0.996,0.742,0.705,0.873,0.953,0.68,1.262,0.853,1.351,2.775,1.61,0.379,1.493,1.163,0.867,1.357,1.048,1.004,1.108,0.649,1.429,0.798,1.034,0.869,0.86,0.793,0.754,1.03,0.63,0.834,1.486 +NM_004838,0.941,0.907,1.062,0.994,0.901,0.909,1.09,0.931,0.944,1.031,0.856,0.931,1.022,0.861,0.799,0.8,0.949,0.857,0.974,1.028,0.967,0.849,1.032,0.95,1.043,0.898,0.819,0.898,0.965,0.973,0.955,1.64,1.089,0.865,0.91,0.992,1.075,0.917,1.038,1.18,0.973,1.039,0.909,1.175,1.006,1.147,0.978,0.934,0.797,1.025,0.886,1.167,1.32,1.036 +NM_004839,1.107,0.767,1.403,0.916,1.786,0.677,0.591,1.593,1.668,1.559,0.547,2.196,1.036,1.329,1.02,0.977,0.755,1.218,2.169,0.695,0.843,0.983,0.506,2.306,0.984,1.73,1.07,1.752,0.654,0.734,1.567,1.1,1.997,1.157,0.673,0.834,0.622,1.382,0.57,0.449,1.276,0.832,0.56,0.646,1.935,0.537,1.204,1.098,0.51,1.398,0.851,0.693,1.389,0.728 +NM_004840,0.654,1.826,1.252,0.894,0.882,2.313,1.376,0.618,0.961,0.765,1.148,0.755,0.765,0.675,0.785,0.771,0.878,1.007,0.741,1.108,0.647,0.646,1.025,0.787,1.401,0.68,1.43,0.772,1.049,1.867,0.702,2.334,0.874,2.647,0.599,0.662,1.001,0.819,1.449,1.229,0.971,1.919,0.868,0.572,0.825,1.149,0.718,0.646,0.737,0.722,0.951,1.204,1.195,1.884 +NM_004841,1.518,0.812,1.181,0.89,2.003,0.899,0.765,1.901,1.845,1.171,0.776,1.387,1.209,1.115,1.458,0.995,1.254,1.441,1.623,0.797,0.93,1.506,0.983,1.378,0.854,1.637,1.306,1.995,0.616,0.936,1.705,0.829,1.352,0.783,3.806,0.909,0.935,1.767,0.859,1.043,1.627,1.057,0.752,0.937,1.577,0.96,1.238,2.033,0.896,1.149,1.004,0.898,1.338,1.141 +NM_004842,0.868,1.145,1.02,0.894,0.763,1.813,0.716,0.671,0.96,0.798,2.808,0.942,0.866,0.802,1.312,2.94,0.766,0.882,0.99,2.258,0.676,0.954,2.889,0.938,0.931,0.79,1.153,0.857,0.593,1.179,0.769,0.927,0.867,1.296,0.571,0.936,1.884,0.802,1.864,0.86,0.821,2.002,1.493,1.306,0.857,2.138,0.772,0.872,0.926,0.818,2.649,0.98,0.904,2.443 +NM_004844,1.078,1.003,1.054,1.058,1.222,0.955,1.014,0.89,1.066,0.975,0.888,1.018,0.85,1.17,0.836,0.857,0.907,0.884,0.935,0.942,1.057,0.923,0.916,1.018,1.004,0.942,1.024,0.988,1.148,1.084,1.001,0.916,0.905,1.05,0.997,0.975,0.913,1.019,0.958,1.1,1.023,1.051,0.961,1.046,1.207,1.082,0.988,1.016,0.898,0.795,0.998,1.157,0.906,1.016 +NM_004845,0.908,0.997,0.981,1.002,0.904,1.057,1.014,0.971,0.998,0.954,1.132,1.072,1.092,1.124,1.001,1.003,1.092,1.192,0.999,0.981,1.024,0.922,1.01,0.94,1.042,1.018,0.918,0.916,0.97,1.001,0.923,0.899,1.057,1.075,0.921,0.863,0.948,1.016,0.943,1.015,1.011,0.721,1.251,0.938,0.946,1.061,0.898,1.028,1.043,1.192,1.171,1.044,1.052,1.004 +NM_004846,0.642,0.604,1.051,1.04,0.721,1.244,0.782,0.495,0.978,0.878,1.044,0.987,0.732,0.443,0.805,1.838,0.756,1.187,1.125,1.053,0.541,0.68,1.62,0.963,0.609,0.97,1.183,0.719,0.55,1.221,0.843,1.001,2.313,1.112,0.267,1.145,1.208,0.799,1.551,0.931,0.954,0.949,0.698,1.874,1.243,1.048,1.095,0.928,1.43,0.847,1.118,0.879,0.953,1.765 +NM_004847,0.969,1.015,0.885,1.004,0.846,1.042,0.864,1.009,1.0,0.956,0.938,0.922,1.055,1.271,1.183,1.048,0.937,1.068,1.009,1.125,0.845,0.936,1.063,1.144,1.015,0.933,0.986,0.978,1.06,1.059,1.093,0.951,1.058,0.963,1.066,1.135,1.104,1.005,0.933,0.954,0.951,0.942,0.924,1.099,0.982,0.954,0.934,1.077,0.885,1.07,1.034,1.077,1.15,1.087 +NM_004848,0.963,0.854,1.191,1.16,0.954,1.034,0.905,1.01,0.978,0.875,0.915,0.887,0.883,1.018,0.922,0.812,1.445,0.88,1.05,0.798,0.935,0.993,0.915,0.955,0.844,0.856,1.607,0.816,0.834,1.1,0.925,1.533,1.183,0.965,1.696,0.948,0.952,1.079,1.313,2.477,0.91,1.297,0.999,1.089,0.928,0.941,1.088,1.115,0.73,1.185,1.03,1.923,1.426,1.595 +NM_004849,0.699,1.562,1.001,0.872,0.763,1.968,1.039,0.832,0.934,0.632,1.43,1.039,0.983,0.812,1.285,2.186,0.737,1.235,0.791,2.173,0.539,0.916,1.428,0.899,1.144,0.547,0.903,0.843,0.868,1.791,0.936,1.383,1.023,2.073,0.521,0.581,1.546,0.934,1.418,0.997,0.847,1.802,0.876,0.677,0.713,1.338,0.933,0.766,1.364,0.652,1.331,0.9,0.567,1.543 +NM_004850,0.582,1.067,1.211,0.64,0.789,1.72,0.888,0.5,0.801,0.793,0.985,0.594,0.547,0.585,1.372,1.987,0.873,1.023,0.788,1.259,0.553,0.738,2.119,0.849,0.71,0.601,1.029,0.721,0.939,1.34,0.737,1.386,2.983,1.112,0.535,0.748,1.271,0.929,1.905,1.332,0.92,1.719,0.878,1.209,0.778,1.566,1.191,0.614,2.04,0.813,1.543,0.866,0.547,2.273 +NM_004852,1.0,0.995,0.919,1.01,0.948,1.392,0.978,0.905,1.089,0.805,1.041,1.016,0.929,0.967,0.807,1.171,1.004,0.901,1.009,1.236,0.875,0.882,1.474,0.932,0.988,1.016,0.927,1.002,1.151,1.062,0.993,1.062,0.838,0.926,0.967,1.144,1.268,0.783,1.367,0.953,1.075,1.221,1.433,1.371,0.97,1.844,0.934,0.96,1.184,1.02,1.408,1.072,0.937,0.932 +NM_004853,0.635,0.926,1.304,0.83,0.956,1.61,0.717,0.683,1.092,0.863,1.373,1.056,0.735,0.555,0.87,2.063,0.765,1.027,1.207,1.416,0.489,0.932,1.128,0.961,0.734,0.914,0.837,0.885,0.548,1.72,0.944,1.314,1.531,2.128,0.253,0.599,1.025,1.062,0.927,0.515,1.128,1.344,0.765,0.964,0.836,1.013,1.083,0.842,0.838,0.693,1.057,0.737,1.203,0.865 +NM_004854,1.009,1.147,0.879,0.892,0.911,1.087,0.812,1.015,1.082,0.818,1.119,0.904,0.93,0.991,1.17,0.884,0.859,0.888,0.976,1.155,1.255,0.901,1.139,0.889,1.163,0.951,0.938,1.163,0.729,1.056,0.975,1.877,0.963,1.108,1.087,1.212,0.982,1.08,0.972,1.104,0.943,1.183,0.89,0.932,1.106,1.014,1.02,1.016,0.987,0.96,0.95,1.146,0.887,0.996 +NM_004855,0.72,1.351,1.324,0.718,0.811,1.677,0.794,0.581,0.954,1.042,1.307,0.65,0.632,0.68,1.219,1.89,1.001,1.111,1.066,1.367,0.576,0.789,1.432,1.045,0.806,0.637,1.074,0.743,0.631,1.34,0.832,1.161,1.044,1.446,0.427,0.784,1.491,0.854,1.666,0.727,1.02,1.126,0.943,0.807,0.929,1.562,0.955,0.73,0.972,0.798,1.353,0.858,0.865,1.714 +NM_004856,0.735,0.853,1.147,1.057,0.992,0.914,0.796,0.663,1.043,1.069,0.909,0.948,0.839,0.913,0.953,1.18,1.016,0.844,0.983,0.893,0.95,0.739,2.194,1.151,0.723,0.695,1.833,0.897,0.53,0.919,0.917,1.167,3.542,0.767,0.634,1.662,0.958,0.745,1.921,1.086,1.091,0.716,0.756,1.375,0.987,1.03,1.17,0.783,1.345,0.738,1.38,1.12,1.063,4.121 +NM_004857,1.128,0.9,1.052,1.028,0.94,1.037,1.258,1.303,1.096,0.955,0.992,0.967,1.038,1.027,0.854,1.056,0.924,0.834,1.102,0.96,1.016,1.079,0.883,1.055,0.926,1.266,1.06,1.112,0.938,0.981,1.007,0.969,0.999,1.001,1.126,1.051,1.142,1.013,0.977,1.139,0.955,0.936,0.91,0.874,0.971,0.881,0.942,0.963,1.002,1.041,0.995,0.97,1.076,0.826 +NM_004859,0.683,1.028,1.372,0.633,0.974,1.743,0.978,0.821,1.053,0.898,0.83,0.957,0.756,0.677,1.109,1.991,0.933,1.032,0.7,1.326,0.558,0.932,1.113,1.14,0.717,0.594,1.817,0.786,0.872,1.23,1.124,1.572,2.391,1.137,0.625,0.61,1.236,1.222,2.473,0.924,0.943,1.146,0.739,0.629,0.975,1.06,1.074,0.92,1.809,0.912,1.287,0.836,0.59,1.56 +NM_004860,0.907,0.775,0.986,0.936,0.848,1.06,0.893,0.674,0.981,0.936,1.112,0.755,0.885,1.015,1.041,1.152,0.89,0.924,1.239,0.923,0.792,0.9,1.134,0.984,0.722,1.188,1.178,0.832,0.844,1.082,0.923,1.24,1.516,1.34,0.826,0.875,0.893,1.105,1.201,0.968,0.967,1.087,0.698,1.157,1.071,1.003,0.959,0.951,1.036,1.046,0.99,0.886,1.116,1.132 +NM_004861,0.779,0.886,0.739,0.997,0.773,1.925,1.005,0.822,0.699,0.744,1.458,0.881,0.672,0.722,1.103,2.898,0.687,0.952,0.679,1.313,0.805,0.796,1.406,0.752,1.266,0.69,0.521,0.671,1.066,1.461,0.751,1.143,0.843,1.713,0.737,1.083,1.674,0.781,2.873,0.864,0.629,1.715,0.876,1.073,0.672,1.149,1.051,0.701,1.003,0.714,1.376,0.878,0.691,0.741 +NM_004862,0.467,1.25,0.993,0.827,0.483,1.507,0.668,0.28,0.788,0.501,1.021,0.358,0.588,0.418,0.778,0.768,0.882,1.19,0.661,0.866,0.358,0.542,0.914,0.667,0.741,0.418,1.965,0.328,0.683,1.368,0.596,1.734,1.521,1.381,0.455,0.478,1.156,0.562,2.261,3.249,0.615,1.61,0.762,1.175,0.818,0.908,0.822,0.422,0.493,0.844,1.018,1.834,1.051,1.378 +NM_004863,0.842,1.028,1.086,0.939,1.075,0.923,0.952,0.916,1.206,1.049,0.897,0.715,0.853,0.858,0.886,1.169,0.791,1.123,0.941,1.031,0.767,0.825,1.103,0.906,0.972,0.847,1.165,1.03,0.625,1.156,1.097,1.006,1.087,1.24,0.756,0.908,1.021,0.862,1.114,0.862,0.999,1.031,0.833,0.979,0.939,1.01,1.073,0.861,1.022,0.881,1.092,0.834,0.884,1.017 +NM_004864,0.371,3.278,0.388,0.817,0.361,1.536,1.279,0.348,0.364,0.378,1.918,0.399,0.335,0.397,0.953,1.032,0.493,0.655,0.375,1.341,0.327,0.38,2.777,0.354,0.752,0.439,0.39,0.393,1.005,3.26,0.412,1.821,1.009,1.504,0.603,3.627,1.669,0.387,1.905,1.808,0.315,1.669,0.959,3.116,0.551,2.955,1.208,0.398,1.304,0.345,1.539,2.409,0.34,12.69 +NM_004865,0.637,1.129,1.144,0.685,0.75,1.227,0.704,0.721,0.899,0.776,1.269,1.015,0.755,0.699,0.833,1.859,0.736,0.836,1.087,1.198,0.503,0.778,1.2,1.13,0.613,0.665,1.257,0.755,0.587,1.112,0.826,1.09,1.611,1.2,0.329,0.642,1.387,0.717,1.208,1.266,1.015,1.015,0.676,1.115,0.839,1.013,1.05,0.698,0.791,0.701,0.962,0.91,0.717,3.026 +NM_004866,0.956,1.102,0.907,1.066,0.942,0.997,0.855,0.806,1.077,0.991,0.903,0.924,0.919,0.835,0.87,0.949,0.891,0.919,0.96,1.033,1.036,0.943,0.963,1.043,0.948,0.946,0.924,0.999,0.893,1.101,1.043,0.962,1.161,0.976,0.997,0.941,1.041,0.895,1.079,0.899,1.098,1.092,1.072,1.012,1.091,1.137,1.09,0.968,1.063,1.022,1.11,1.002,1.001,1.039 +NM_004867,1.093,1.252,1.006,0.969,0.663,1.413,1.163,0.462,0.738,1.201,1.127,0.412,0.516,0.694,0.723,0.484,1.03,1.037,1.225,3.948,0.433,0.902,3.322,0.674,1.177,0.759,1.035,0.881,0.481,1.138,1.075,0.925,0.785,1.562,0.343,0.733,2.216,1.277,1.504,0.481,0.961,3.119,0.607,0.391,0.727,3.676,0.662,0.741,0.54,0.737,2.547,1.041,1.141,1.218 +NM_004868,1.445,0.601,1.933,0.824,1.879,0.68,0.424,1.547,2.077,2.05,0.613,1.586,1.43,1.098,1.021,1.409,1.601,1.604,2.809,0.646,1.576,2.577,1.04,2.058,0.332,3.171,1.409,1.862,0.322,0.691,2.086,0.554,1.923,0.946,2.053,0.817,0.558,2.126,1.094,0.881,1.725,0.888,0.292,1.199,2.076,0.369,1.21,2.658,0.561,2.159,0.702,1.008,1.881,0.671 +NM_004869,0.935,0.527,2.163,0.575,1.657,1.112,0.607,1.394,2.353,1.325,0.714,0.882,1.137,1.033,1.318,2.074,1.567,1.402,1.471,0.769,0.417,1.625,0.953,1.69,0.353,0.89,1.807,1.447,0.521,1.022,1.883,0.59,1.206,1.0,1.607,0.236,1.046,1.517,1.255,0.353,1.645,0.876,0.546,0.642,1.8,0.8,1.314,2.157,1.008,1.248,1.214,0.718,0.663,0.726 +NM_004870,0.685,1.063,0.756,1.106,0.78,1.494,0.729,0.482,0.842,0.723,1.239,0.794,0.743,0.568,0.77,1.721,0.899,1.27,1.057,0.963,0.593,0.874,1.185,0.817,1.087,1.04,0.931,0.59,0.96,1.494,0.558,0.964,1.254,1.801,0.511,1.017,1.362,0.923,1.84,1.003,0.918,1.487,0.912,0.989,0.719,1.015,0.997,1.035,1.51,0.939,1.097,0.678,0.873,1.467 +NM_004871,0.614,1.052,1.05,0.645,0.748,1.055,0.638,0.412,0.875,0.836,1.048,0.666,0.516,0.602,0.787,1.293,0.757,0.85,1.127,0.93,0.505,0.817,1.227,0.951,0.733,0.67,1.257,0.641,0.577,1.155,0.813,1.363,1.745,1.393,0.233,0.983,1.195,0.771,1.594,0.882,1.01,1.303,0.747,1.531,0.916,0.978,0.896,0.489,1.045,0.713,1.119,1.073,0.92,1.796 +NM_004872,0.707,1.354,1.048,0.846,0.793,1.94,0.755,0.876,0.95,0.578,1.592,0.679,0.839,0.752,0.948,1.558,0.621,1.287,1.029,1.651,0.395,0.86,1.09,0.793,1.038,0.896,0.721,0.858,0.756,1.885,0.898,1.318,1.229,2.226,0.906,0.503,1.708,0.96,1.188,0.562,0.846,1.982,0.714,0.584,0.746,1.298,0.617,1.107,0.832,0.721,1.368,0.647,0.656,1.171 +NM_004873,0.787,0.96,1.306,0.802,0.812,0.988,0.625,0.642,1.369,1.314,0.999,1.032,0.738,0.815,0.911,1.273,0.834,0.906,1.17,1.074,0.497,0.755,1.151,1.22,0.635,0.865,1.026,0.942,0.394,1.425,1.097,1.436,1.803,1.247,0.323,0.7,0.981,0.926,1.162,0.861,1.246,1.206,1.223,1.381,1.17,1.026,0.826,0.717,0.959,0.816,1.01,0.866,1.348,0.995 +NM_004874,0.958,1.032,1.206,0.898,0.892,1.223,0.904,0.807,1.237,0.895,1.04,0.996,0.896,0.867,0.729,1.022,0.961,0.934,1.215,0.857,0.87,1.032,1.146,1.104,0.934,0.762,1.286,0.951,0.708,1.192,0.98,1.044,1.044,0.884,0.855,0.833,0.994,1.256,1.432,0.855,0.997,1.041,0.891,1.103,0.882,1.064,1.003,0.813,1.134,0.858,0.977,1.053,0.797,1.295 +NM_004875,0.983,1.001,1.124,0.944,0.964,0.798,0.833,0.761,1.146,1.204,0.821,0.85,0.761,0.903,0.799,1.151,0.908,0.861,1.114,0.803,0.873,0.843,1.109,0.98,0.643,1.053,1.068,0.892,1.005,0.96,0.955,1.209,1.675,1.18,0.63,1.174,0.828,0.87,1.372,0.905,1.103,1.144,1.029,1.619,0.999,0.895,0.998,0.858,1.164,0.999,0.969,0.878,1.084,1.638 +NM_004876,0.979,0.999,0.982,0.843,1.336,1.004,0.717,1.679,1.111,1.026,0.965,1.271,1.032,0.919,1.029,1.118,0.983,0.785,1.33,0.981,0.938,1.394,1.146,1.044,0.895,1.065,1.142,1.646,0.803,1.051,1.149,0.893,1.27,1.203,1.532,1.098,0.909,1.552,0.772,0.982,1.003,0.91,0.768,0.823,1.14,0.853,1.114,1.243,0.941,1.0,1.023,0.861,1.122,0.977 +NM_004878,1.275,0.952,2.093,0.797,1.002,0.834,0.817,0.738,0.99,1.082,0.798,1.125,1.181,0.988,1.064,0.896,4.164,0.861,2.179,0.778,1.319,0.787,0.884,0.997,0.714,0.772,2.284,0.86,0.954,0.911,0.94,1.752,1.223,0.983,0.777,0.99,0.873,0.852,1.379,2.204,1.548,1.024,0.848,1.286,1.518,0.864,1.2,0.762,0.839,2.591,0.881,2.642,2.082,1.324 +NM_004881,1.192,1.112,0.958,0.955,1.008,0.936,1.166,1.255,0.941,0.841,1.166,0.971,1.013,0.902,1.025,0.98,1.083,0.871,0.937,1.065,0.951,0.952,1.032,0.916,1.059,1.068,1.162,0.851,1.24,0.901,1.236,0.818,1.028,0.86,0.839,1.115,0.973,0.934,0.94,1.012,1.009,0.951,0.951,0.954,1.072,1.018,0.967,0.946,1.05,0.972,1.006,1.015,1.009,0.872 +NM_004882,0.879,0.981,1.169,0.984,1.1,0.906,0.817,0.896,1.25,1.014,0.828,0.855,0.849,0.753,1.025,1.02,1.015,1.029,0.941,1.071,0.988,0.926,1.141,0.923,0.878,1.013,0.956,1.138,0.928,0.928,0.932,1.093,0.995,0.963,0.969,1.274,0.971,0.929,0.982,1.199,1.06,0.999,0.939,1.277,1.069,0.935,1.001,1.028,1.098,0.917,0.904,0.963,0.975,1.506 +NM_004884,1.072,1.02,0.94,1.07,0.999,0.973,1.08,0.921,0.968,1.012,1.099,0.977,1.084,1.205,1.169,1.047,0.985,0.939,1.063,1.062,1.072,0.925,1.074,0.993,1.054,0.962,0.857,0.964,1.031,0.918,0.987,1.211,1.148,0.999,1.125,1.04,1.001,0.946,1.02,0.939,1.11,1.055,0.911,1.094,1.014,0.887,0.962,0.904,1.049,1.048,0.909,1.012,1.184,1.167 +NM_004885,0.947,0.91,1.127,0.898,1.057,1.037,0.963,1.04,0.971,0.963,0.824,0.98,0.946,1.028,0.902,1.067,0.997,0.992,1.035,0.891,1.02,1.091,1.177,1.081,1.135,1.024,0.997,1.019,0.906,0.999,1.069,0.896,1.013,0.981,1.007,0.957,1.114,0.988,1.046,0.925,1.108,0.955,1.05,1.022,0.982,1.003,1.06,1.019,1.035,0.964,1.096,1.154,1.099,0.959 +NM_004886,0.869,1.052,1.378,0.866,0.973,1.031,1.003,0.518,0.937,1.143,1.014,0.777,0.784,0.713,0.843,0.973,0.88,0.955,0.993,0.925,0.708,0.856,1.408,0.972,0.991,0.99,1.315,0.823,0.979,1.333,0.868,1.291,1.137,1.301,0.704,0.974,0.953,0.791,1.43,1.392,0.908,1.009,0.74,1.663,0.997,0.767,0.889,0.967,0.677,1.061,1.013,0.844,0.991,1.439 +NM_004887,0.874,1.042,1.994,0.596,2.196,0.756,1.077,0.326,0.508,1.988,0.837,2.453,0.436,0.628,0.723,1.167,1.141,1.673,0.681,0.577,0.395,0.689,1.317,0.967,0.616,1.084,1.186,0.817,0.173,2.567,0.782,4.524,3.39,1.129,0.0742,0.219,0.751,3.446,0.753,0.0816,0.936,1.499,0.416,0.173,1.297,0.379,2.056,1.494,0.213,2.149,1.28,0.663,3.523,0.942 +NM_004888,0.709,1.055,1.436,0.597,1.332,1.294,0.699,1.294,1.381,0.954,0.732,1.222,0.946,0.715,0.941,1.288,1.179,1.247,1.6,1.076,0.559,1.092,0.847,1.505,0.513,0.851,1.526,1.184,0.724,1.107,1.235,1.151,1.501,1.394,0.866,0.35,0.955,1.374,0.922,0.739,1.661,0.935,0.427,0.691,1.263,0.844,1.083,1.102,0.696,1.032,0.911,0.905,0.95,1.912 +NM_004889,0.852,0.652,1.018,0.819,0.842,1.204,0.558,0.597,1.194,0.927,1.554,0.736,0.824,0.646,0.94,2.034,0.917,1.206,1.838,0.606,0.503,1.207,1.598,1.058,0.615,1.266,1.191,0.673,0.584,1.398,0.863,0.824,2.038,1.192,0.306,0.686,1.43,1.082,1.853,0.58,0.942,1.046,0.777,1.89,0.852,0.987,1.0,1.208,1.015,0.749,0.986,1.917,0.892,1.461 +NM_004890,0.848,0.927,1.111,1.086,0.775,0.897,0.623,0.693,1.038,0.964,0.928,1.001,0.866,0.86,1.009,1.205,0.848,1.201,1.476,1.102,0.857,0.81,1.27,1.131,1.133,1.27,0.895,0.913,0.545,1.118,0.816,1.132,0.992,1.744,0.4,0.884,0.849,0.838,0.998,0.846,1.135,1.178,0.615,0.732,0.99,0.972,0.843,1.145,0.683,0.916,0.9,0.685,1.307,1.121 +NM_004891,0.403,1.081,0.958,0.675,0.626,1.631,0.739,0.558,1.034,0.672,0.983,0.711,0.532,0.534,0.997,1.983,0.855,0.884,0.962,1.256,0.46,0.646,1.402,0.923,0.555,0.589,1.119,0.624,0.474,1.191,0.911,1.058,2.912,2.096,0.395,1.043,0.974,0.753,1.141,1.267,0.972,1.148,0.725,1.261,0.672,0.897,1.063,0.576,1.438,0.56,1.154,0.956,0.729,2.119 +NM_004892,0.507,1.27,0.797,0.801,0.756,2.029,0.671,0.63,0.894,0.657,1.759,0.893,0.536,0.558,1.017,1.868,0.694,0.887,1.063,1.214,0.681,0.643,1.455,0.975,1.0,0.695,0.762,0.768,0.509,1.61,0.751,1.138,2.127,1.553,0.34,0.885,1.548,0.617,1.342,0.792,0.901,1.295,0.778,1.445,0.73,1.75,0.991,0.563,1.36,0.589,1.493,0.733,0.888,1.93 +NM_004893,0.751,0.919,0.931,1.005,0.856,1.0,0.996,1.187,1.15,1.075,1.023,1.039,1.028,1.007,0.921,0.999,0.932,0.995,0.942,0.953,1.0,0.946,1.076,0.929,0.995,0.973,0.991,1.036,1.093,1.009,1.007,0.949,0.846,1.02,0.963,0.958,1.06,1.096,0.988,1.25,0.886,0.832,0.952,1.01,0.979,0.834,0.939,0.995,1.052,0.971,1.046,1.018,1.043,0.896 +NM_004894,0.681,1.017,0.878,0.849,0.868,1.354,0.744,0.794,0.739,0.919,2.087,1.239,1.05,0.507,0.955,3.045,0.823,1.262,1.207,1.099,0.645,0.847,1.496,1.2,0.755,0.705,1.102,0.827,0.615,1.116,0.72,1.226,1.281,1.388,0.381,1.028,1.924,0.783,1.269,0.632,0.976,1.074,1.109,1.108,0.786,1.33,1.217,0.783,2.047,0.698,1.24,0.759,0.806,1.052 +NM_004895,1.049,1.007,1.094,1.077,1.053,1.01,0.949,0.999,0.954,1.054,0.961,1.123,1.046,1.182,1.052,0.967,1.077,0.996,1.082,1.04,1.072,1.0,0.89,0.963,0.995,0.9,1.075,0.976,0.816,0.971,1.022,0.967,1.001,0.998,1.068,1.016,0.906,0.818,0.898,1.377,0.913,0.966,1.049,1.046,0.866,0.946,0.977,0.98,1.026,0.953,0.921,1.091,0.978,0.909 +NM_004896,0.801,0.933,1.315,0.625,1.039,1.373,0.544,0.725,1.439,1.073,1.088,1.002,0.805,0.718,0.99,1.539,0.8,1.017,1.586,0.841,0.541,1.168,1.116,1.168,0.514,0.897,1.332,1.068,0.509,1.044,1.142,0.762,0.889,1.232,0.348,1.047,1.078,1.127,1.081,0.407,1.152,0.841,0.543,0.883,1.051,0.979,0.964,1.035,0.939,0.859,0.92,0.698,0.837,1.815 +NM_004897,0.694,1.205,0.952,0.757,0.846,1.278,1.101,0.647,1.016,0.898,1.118,0.862,0.727,0.754,1.062,2.635,0.786,0.957,0.706,1.229,0.734,0.835,1.362,0.772,0.767,0.663,1.381,0.787,0.744,1.043,0.84,1.986,1.209,1.33,0.718,0.853,1.215,1.003,1.439,1.121,0.772,1.421,0.829,0.797,0.904,1.258,1.196,0.749,1.354,0.828,1.377,0.879,0.694,1.575 +NM_004898,0.827,0.997,1.412,0.68,1.083,1.342,0.756,1.018,1.236,1.092,0.778,1.24,1.064,0.804,1.058,1.367,0.909,1.062,1.114,0.99,0.853,1.52,1.128,1.668,0.705,0.795,1.029,1.103,0.739,0.98,1.436,0.846,2.196,1.158,0.54,0.743,0.955,1.22,1.575,1.031,1.095,1.062,0.558,1.101,1.107,0.769,0.79,1.07,0.992,0.88,1.165,0.76,0.89,1.001 +NM_004899,0.819,1.114,1.061,0.787,0.902,1.283,0.829,0.586,0.855,1.02,1.008,0.836,0.675,0.598,0.945,1.396,0.766,0.995,1.076,1.075,0.715,0.78,1.356,0.851,0.842,1.046,0.898,0.767,0.658,1.179,0.838,0.761,2.528,1.55,0.637,0.865,0.953,0.902,1.495,1.035,0.854,1.231,0.797,1.811,1.087,0.903,0.878,0.91,1.065,0.833,1.108,0.746,0.972,1.192 +NM_004900,0.939,1.316,1.147,0.798,0.892,0.95,0.872,0.966,0.986,0.947,0.925,0.865,0.921,0.85,1.0,0.919,1.079,0.877,1.028,0.905,1.034,0.958,1.045,0.933,0.95,1.0,1.193,0.852,0.62,1.048,0.94,1.123,2.493,1.166,0.831,1.12,1.198,0.949,1.762,1.432,1.022,0.839,0.995,1.102,0.886,0.847,1.097,0.94,0.874,0.917,0.943,0.808,0.893,2.352 +NM_004901,0.747,1.087,0.953,0.923,0.79,1.077,0.867,0.679,0.982,0.958,1.136,0.834,0.814,0.951,0.837,1.088,0.839,0.942,0.793,0.874,1.027,0.834,1.199,0.912,1.167,0.887,1.068,0.874,0.742,1.367,0.916,1.169,0.828,1.182,0.79,0.89,0.943,0.834,1.828,1.001,1.065,1.188,0.967,0.969,0.846,1.179,1.128,0.877,1.132,0.941,1.036,0.777,0.828,0.906 +NM_004902,1.054,0.915,0.98,0.946,0.988,0.97,0.935,0.902,1.016,1.148,1.099,1.047,1.031,1.119,1.011,1.106,1.065,1.015,1.12,1.012,0.982,0.965,1.129,0.995,0.982,1.129,0.924,1.033,1.036,1.031,1.083,1.093,1.255,0.978,0.976,0.957,0.959,0.794,0.984,1.109,1.065,0.995,0.918,0.962,0.935,1.006,1.146,1.025,1.079,1.044,1.02,0.886,0.924,1.235 +NM_004904,0.894,0.889,0.959,1.037,0.928,0.97,0.961,0.867,0.963,0.973,0.92,0.925,0.986,0.98,0.875,0.847,0.935,1.009,0.841,1.006,1.053,0.799,1.02,0.88,0.964,1.025,0.974,0.85,0.998,1.017,0.953,1.418,1.307,0.931,1.032,1.455,0.99,0.94,1.293,2.13,1.034,1.188,1.093,1.048,0.992,0.913,0.911,0.927,0.854,0.897,1.105,1.362,1.678,1.39 +NM_004905,0.854,1.007,1.027,0.659,1.059,1.753,0.577,1.01,1.565,0.975,1.556,0.82,0.702,0.665,1.37,2.078,0.641,1.245,1.091,1.667,0.471,1.239,1.385,0.989,0.524,1.093,1.106,1.533,0.374,1.187,1.341,1.16,1.258,1.311,0.469,1.075,1.555,1.267,0.973,0.516,1.241,1.413,0.473,0.835,0.932,1.631,0.727,1.337,0.59,0.666,1.325,0.51,0.697,0.659 +NM_004906,0.597,1.178,1.652,0.629,1.149,1.401,0.751,0.897,1.112,0.998,0.634,1.107,0.9,0.707,1.023,1.913,0.811,1.047,0.875,1.044,0.465,1.055,1.076,1.368,0.473,0.542,1.406,1.116,0.595,0.842,1.327,0.887,1.794,0.907,0.577,0.521,0.82,1.007,1.36,1.259,1.137,1.062,0.609,0.633,1.236,0.845,0.912,0.861,1.201,1.028,0.939,0.753,0.549,1.458 +NM_004909,0.948,0.954,1.002,0.91,1.047,1.128,0.944,0.966,0.819,0.967,0.835,1.135,1.028,0.838,0.988,0.951,0.918,0.933,0.967,0.853,1.112,1.039,1.022,0.961,0.971,1.029,1.021,0.915,0.82,0.942,1.015,0.927,2.485,0.907,1.101,1.029,1.081,0.897,5.915,0.914,0.964,1.012,0.884,0.938,1.028,0.833,0.99,0.953,0.946,1.008,1.062,1.108,1.252,1.649 +NM_004910,0.764,0.586,0.943,0.951,0.662,1.849,0.57,0.635,0.775,0.76,1.159,0.589,0.805,0.686,1.119,1.898,1.149,0.89,0.962,0.841,0.661,1.098,1.098,1.259,0.724,1.26,1.059,0.597,0.878,1.405,0.789,1.356,1.456,1.236,0.79,0.717,1.244,0.847,2.773,1.237,0.797,1.03,1.028,1.961,0.715,0.946,0.751,1.246,0.935,0.873,1.082,0.564,0.734,1.122 +NM_004911,0.256,1.54,0.436,0.983,0.391,1.392,1.119,0.152,0.358,0.372,1.647,0.295,0.197,0.143,0.664,1.652,0.451,1.407,0.514,1.753,0.257,0.371,3.154,0.379,0.903,0.324,0.676,0.312,0.725,2.903,0.268,1.017,0.63,1.673,0.107,1.845,1.791,0.34,1.817,0.695,0.495,1.666,1.437,1.949,0.455,2.079,1.937,0.348,2.045,0.436,2.029,0.669,0.501,1.331 +NM_004914,1.022,1.063,0.964,0.964,0.902,0.901,1.01,0.693,1.016,1.114,1.021,1.113,0.969,0.69,0.849,1.072,0.943,0.968,0.964,0.979,0.963,0.833,1.12,0.951,0.979,1.025,1.08,1.001,0.793,0.946,0.865,1.586,1.511,1.04,0.881,0.907,0.843,0.989,0.978,0.885,1.108,1.113,0.821,1.024,0.89,0.947,0.915,1.012,0.844,0.859,0.942,1.03,1.308,1.089 +NM_004918,1.003,0.849,0.953,1.024,1.024,0.945,0.692,1.0,0.992,0.797,0.867,1.113,0.978,0.84,0.8,1.139,1.056,1.066,0.928,1.023,1.098,1.131,0.956,1.004,0.97,1.007,1.049,0.878,1.075,0.858,0.872,1.169,1.016,0.949,1.0,1.062,1.281,1.011,0.945,0.946,0.938,0.928,1.083,0.942,0.907,0.886,1.167,0.911,1.15,0.981,1.115,0.876,1.152,0.944 +NM_004921,0.944,0.967,1.454,0.949,1.336,0.888,0.976,1.046,1.279,1.112,1.061,0.998,1.192,1.215,0.991,0.977,1.516,1.472,1.525,0.842,0.894,1.16,0.956,1.206,1.045,0.987,1.353,1.257,1.212,0.801,1.188,0.974,1.152,0.938,1.182,0.736,0.954,0.879,1.104,0.964,1.002,0.856,1.122,1.052,1.138,0.79,1.069,0.962,0.99,1.108,0.944,1.16,1.181,1.104 +NM_004922,1.134,1.005,0.976,0.878,0.989,0.991,0.81,0.922,0.934,1.124,1.061,1.013,1.052,0.768,1.048,1.101,1.012,0.852,0.984,0.928,0.991,0.979,1.027,0.892,0.89,1.013,1.011,1.004,0.74,1.031,0.792,1.1,1.071,1.072,1.096,0.867,0.905,1.104,1.065,1.071,1.058,0.897,0.863,0.946,1.16,0.929,1.17,1.126,1.169,0.875,0.913,0.927,0.953,0.996 +NM_004923,1.013,0.92,1.061,0.893,1.151,0.928,1.235,1.373,1.144,0.867,0.955,0.983,0.974,1.067,0.804,0.894,1.026,1.034,1.058,0.948,1.052,0.914,0.951,1.0,1.114,1.055,1.119,1.167,0.889,0.907,0.995,0.84,1.205,0.721,1.043,1.0,0.993,0.947,1.048,1.179,1.082,0.86,0.946,1.031,0.944,0.986,0.934,1.031,1.078,1.077,0.99,0.989,0.979,1.039 +NM_004924,0.85,0.588,1.095,0.764,0.975,1.242,0.445,0.689,1.271,0.858,1.165,0.71,0.422,0.778,1.095,1.846,0.833,0.852,1.437,1.037,0.736,0.827,1.463,0.989,0.538,1.15,0.935,0.814,0.466,1.149,1.13,0.889,3.06,1.218,0.936,0.491,1.077,0.995,1.554,0.966,0.998,1.077,0.71,1.139,1.046,0.965,1.096,1.12,1.287,0.839,1.242,0.833,1.177,1.772 +NM_004925,3.297,0.239,8.16,1.109,4.589,0.176,0.33,1.525,5.156,6.015,0.179,2.648,2.031,2.057,2.344,1.183,3.38,3.815,9.407,0.323,6.878,2.829,0.246,3.312,0.245,4.511,4.222,3.311,0.246,0.252,4.127,0.242,2.037,0.323,0.283,0.268,0.246,5.031,0.239,0.289,8.281,0.421,0.316,0.571,8.35,0.22,2.811,3.108,0.303,5.928,0.891,2.074,7.605,0.736 +NM_004926,0.869,0.794,1.602,0.599,0.971,1.112,0.457,0.831,1.439,0.846,1.177,1.14,0.704,1.073,1.028,1.078,0.828,0.758,1.263,1.242,0.621,1.029,0.982,1.251,0.459,0.813,1.407,1.062,0.273,1.152,1.171,1.078,1.199,1.023,0.443,0.448,0.997,1.014,0.942,2.124,1.115,1.304,0.329,1.095,1.021,0.732,0.687,0.848,0.504,0.85,1.102,0.891,1.01,0.922 +NM_004927,0.718,0.745,1.443,0.711,0.885,1.036,0.614,0.882,1.339,0.898,0.872,0.945,0.82,0.699,1.224,1.465,0.856,1.009,1.853,0.774,0.741,1.109,1.092,1.062,0.513,1.03,1.389,0.999,0.439,1.248,1.137,1.491,2.579,1.506,0.809,1.346,1.009,0.837,1.174,0.688,1.083,0.981,0.55,1.325,1.087,0.742,0.985,0.886,0.858,1.057,0.884,0.73,1.081,2.132 +NM_004928,0.961,0.996,0.975,1.102,1.007,0.949,0.841,0.981,1.017,0.924,1.07,0.988,1.043,1.263,0.935,0.96,0.961,0.923,0.9,1.0,1.0,1.122,1.033,1.117,1.072,1.036,1.02,0.884,0.837,0.923,0.85,1.073,1.1,1.04,0.973,1.095,0.891,0.972,0.934,1.133,0.985,1.224,0.977,0.996,0.894,1.346,1.094,1.033,0.969,0.986,1.039,0.913,0.852,0.972 +NM_004929,1.022,0.947,0.9,0.953,1.076,0.918,1.0,1.265,1.059,1.095,0.926,0.971,0.942,1.236,0.92,1.172,0.988,0.963,1.118,1.046,1.112,0.801,1.155,0.958,1.011,1.055,1.013,0.812,1.04,0.961,0.959,1.04,0.952,1.113,0.797,1.005,1.137,1.061,0.967,1.059,0.983,1.021,1.127,0.972,0.999,1.0,0.811,0.842,0.977,0.898,1.096,1.172,0.984,0.897 +NM_004930,0.856,0.952,0.967,0.967,0.85,1.458,0.477,0.625,1.36,0.94,1.228,0.61,0.673,0.781,0.879,1.824,0.922,0.812,2.05,0.66,1.03,0.718,0.991,0.893,0.661,1.13,1.019,0.738,0.479,1.28,0.99,1.25,1.515,1.677,0.808,0.747,0.947,0.815,1.91,0.675,1.269,0.852,0.726,1.569,0.878,0.958,1.006,0.752,1.015,1.145,0.809,0.564,1.22,1.027 +NM_004932,0.932,1.116,0.992,1.102,0.907,1.126,0.92,0.984,1.176,1.022,1.017,1.044,0.875,0.882,0.898,0.996,0.921,1.243,0.904,0.978,0.94,0.998,1.203,0.888,1.029,1.063,0.904,0.973,0.925,1.129,0.933,2.197,1.303,1.151,0.942,1.037,1.118,0.973,1.103,1.056,1.014,1.127,1.1,0.913,0.912,0.961,0.916,0.901,0.955,0.941,1.131,1.058,0.859,1.13 +NM_004933,0.898,1.128,0.864,0.975,0.961,1.0,1.129,1.241,1.402,0.986,1.235,0.932,1.016,0.954,1.117,1.361,0.864,1.103,0.977,1.204,1.095,1.0,1.133,1.015,0.863,0.933,0.967,0.993,1.049,1.007,0.923,1.498,1.139,1.029,1.1,0.901,1.073,1.001,0.907,1.086,1.141,1.033,1.084,0.829,1.008,1.057,1.188,0.886,0.904,0.846,1.161,0.926,1.056,0.967 +NM_004934,1.022,0.913,0.921,0.917,0.947,0.95,0.96,1.218,1.114,0.965,1.032,0.927,1.032,0.931,1.164,0.9,1.005,0.949,1.08,0.902,1.102,1.219,1.049,1.086,0.96,0.965,1.011,0.869,0.79,0.994,1.018,0.956,1.04,1.095,0.967,1.057,1.138,0.918,1.319,0.946,0.907,0.895,1.517,1.009,1.059,0.982,1.131,0.945,0.923,1.144,1.0,0.975,0.965,0.962 +NM_004935,0.686,1.099,1.395,0.581,1.099,1.324,0.661,0.513,0.987,1.134,0.907,1.137,0.64,0.576,0.782,1.399,1.121,0.997,1.092,1.217,0.468,0.619,1.585,0.927,0.646,0.733,1.566,0.848,0.555,1.942,0.76,1.407,1.033,1.264,0.316,0.79,1.101,0.824,1.389,1.099,1.115,0.899,0.894,1.194,0.948,1.027,1.302,0.637,0.922,0.932,1.158,0.974,1.004,1.305 +NM_004936,1.291,0.575,3.02,0.656,1.755,0.2,0.338,1.95,2.203,1.787,0.939,1.785,1.509,1.177,1.507,3.045,2.154,1.161,3.011,0.918,0.794,1.909,0.192,3.168,0.354,1.215,2.013,1.74,0.371,0.375,2.32,0.799,1.359,0.92,1.074,0.182,0.329,1.964,0.893,0.214,2.387,0.814,0.199,0.545,2.348,2.075,1.52,1.687,0.937,2.549,0.412,0.699,1.468,0.987 +NM_004937,0.856,1.181,0.946,0.926,0.838,0.862,0.944,0.872,0.885,1.115,0.975,0.949,0.838,0.856,1.007,1.155,0.782,0.993,0.999,1.03,0.838,0.707,1.139,1.025,0.858,0.894,1.075,0.894,1.004,1.087,0.892,1.55,0.952,1.079,0.69,0.931,0.954,0.968,1.079,0.963,0.81,1.252,0.769,1.246,0.781,0.995,1.059,0.762,0.84,0.91,0.855,1.003,0.832,1.48 +NM_004938,0.255,2.265,0.308,0.916,0.301,1.324,1.165,0.246,0.297,0.252,1.899,0.269,0.258,0.246,0.871,1.373,0.428,0.929,0.291,1.913,0.257,0.305,1.0,0.315,1.073,0.274,0.49,0.238,1.182,2.015,0.229,2.811,0.935,2.935,0.302,0.888,1.72,0.231,1.846,1.0,0.337,1.989,1.029,0.47,0.313,1.464,0.578,0.291,0.755,0.287,1.591,1.16,0.43,1.974 +NM_004939,0.633,0.748,1.175,0.735,0.809,0.883,0.532,0.337,1.34,1.084,0.97,0.764,0.546,0.626,0.928,1.376,0.844,0.869,1.22,0.962,0.466,0.859,1.525,1.093,0.63,0.829,1.285,0.887,0.367,1.056,0.961,1.011,1.715,1.132,0.1,1.182,1.028,1.002,1.168,0.742,1.241,0.982,0.76,1.002,1.096,1.12,0.963,0.694,1.106,0.743,1.012,0.886,0.959,1.566 +NM_004941,0.825,0.959,1.228,1.035,0.862,0.879,0.857,0.996,0.919,1.021,0.913,0.826,0.736,0.85,0.82,0.877,1.002,0.849,1.172,0.839,0.893,0.907,0.899,0.865,0.827,1.016,1.093,0.772,0.567,1.188,0.912,1.452,1.291,1.039,0.698,1.044,0.919,1.083,1.164,1.185,0.958,0.808,0.961,2.242,1.068,0.844,1.055,1.072,1.045,1.147,0.998,0.909,1.075,1.213 +NM_004942,1.456,0.585,16.93,1.12,1.796,0.639,0.901,1.618,0.61,1.49,0.507,3.365,0.701,0.542,0.66,12.14,18.25,1.12,9.624,1.418,11.12,0.594,0.46,0.893,0.527,0.494,18.14,0.617,0.58,0.611,0.499,0.559,26.43,0.797,0.724,3.285,0.812,0.949,1.61,0.561,37.82,0.817,0.552,0.568,15.02,0.592,4.391,0.74,0.817,37.94,1.362,7.993,86.25,11.05 +NM_004944,1.634,0.681,1.485,0.996,1.77,0.68,0.88,0.848,1.312,2.967,0.711,1.721,0.833,1.482,1.623,1.221,1.591,1.623,1.862,0.557,1.067,1.854,1.039,1.318,0.634,1.292,1.398,2.566,0.531,1.403,1.777,0.503,0.621,0.749,0.444,0.835,1.297,1.125,1.139,0.466,1.766,0.718,0.53,0.715,2.185,0.859,0.959,1.612,0.628,1.897,0.934,0.738,2.453,1.454 +NM_004945,0.892,1.216,0.66,1.297,0.696,2.278,0.755,0.638,0.741,0.609,1.054,0.564,0.88,0.481,0.866,1.31,1.06,1.247,0.931,0.943,0.786,1.277,1.258,0.75,1.229,1.033,0.789,0.536,1.316,1.424,0.647,0.728,0.85,1.785,1.402,0.932,1.187,0.792,2.325,0.779,0.722,1.497,0.758,1.852,0.876,0.856,0.756,1.446,1.029,0.991,1.073,0.766,0.697,0.752 +NM_004946,0.82,1.135,1.65,0.837,0.839,0.969,1.264,0.651,0.883,0.733,0.719,0.769,0.642,0.795,0.944,0.788,1.065,0.826,0.676,0.872,0.689,0.826,1.132,0.889,1.557,0.723,1.542,0.827,0.769,1.345,0.916,2.037,1.008,1.443,0.569,0.789,1.023,0.838,1.432,1.872,0.933,1.849,0.74,0.737,1.072,0.868,0.759,0.761,0.74,0.852,0.893,1.348,1.547,2.024 +NM_004947,0.97,1.01,1.002,0.9,0.872,1.186,1.164,0.937,1.232,0.923,0.857,0.949,0.901,1.075,1.037,0.906,0.939,0.853,0.881,0.878,0.969,1.075,1.258,0.995,1.011,0.961,0.946,1.076,1.118,1.015,0.907,0.856,1.056,0.95,1.168,1.063,1.059,0.964,0.967,0.998,1.008,1.02,0.979,1.133,0.95,1.015,1.05,0.98,0.908,0.892,0.985,1.098,0.948,0.987 +NM_004951,0.935,1.067,1.223,0.863,1.064,0.978,1.197,0.888,0.963,1.156,0.952,0.788,1.032,0.895,0.957,0.946,0.973,0.915,1.337,1.064,0.849,0.876,0.97,0.967,0.781,0.78,1.414,0.986,0.902,1.315,0.816,1.172,1.347,1.081,0.808,0.794,1.056,0.791,1.356,2.341,1.106,1.442,0.954,0.919,0.971,0.957,0.922,0.845,0.986,0.911,0.934,1.384,1.591,1.425 +NM_004952,1.225,0.912,0.941,0.934,1.055,1.04,1.145,0.985,1.037,0.846,1.006,0.989,1.281,0.94,1.045,0.857,0.966,1.053,0.968,1.169,0.965,1.077,1.137,1.056,0.927,1.177,0.881,0.9,1.025,0.903,1.204,1.098,0.992,0.879,0.988,0.901,1.092,0.9,1.069,0.886,0.997,0.761,1.117,0.981,1.033,1.005,0.935,1.043,1.021,1.07,1.184,1.001,0.986,1.045 +NM_004953,1.759,1.559,1.979,1.564,2.038,1.884,1.512,1.791,2.272,2.189,1.4100000000000001,2.12,1.5310000000000001,1.359,1.703,2.091,2.016,2.017,2.093,1.607,1.948,2.402,1.807,2.418,1.403,2.075,2.643,1.8090000000000002,1.907,1.752,2.321,2.313,2.955,1.8,1.49,1.689,1.792,2.385,3.308,1.858,1.9859999999999998,1.928,1.71,2.465,2.317,1.847,2.152,2.205,2.177,2.339,1.914,1.607,2.094,2.615 +NM_004954,0.901,0.617,1.582,0.553,1.016,1.054,0.573,0.601,1.551,1.342,0.751,0.711,0.681,0.796,1.064,1.232,1.263,1.051,1.376,0.845,0.384,1.308,1.004,1.396,0.415,0.968,1.549,0.954,0.555,1.38,1.039,1.035,1.01,0.919,0.286,1.058,1.07,1.327,1.465,0.919,1.399,1.013,0.873,0.931,1.149,0.864,0.963,0.98,1.189,1.057,1.084,0.71,0.982,0.972 +NM_004955,0.856,1.858,0.72,1.058,0.888,2.032,1.082,0.71,0.827,0.921,1.155,0.796,0.814,0.737,0.73,0.865,0.686,1.439,0.929,1.021,0.771,0.872,1.02,0.818,1.949,0.881,0.884,0.735,2.023,2.215,0.753,1.443,1.589,2.73,0.697,1.019,1.229,0.746,1.716,1.655,0.701,1.17,0.736,1.509,0.745,0.894,0.92,0.929,0.862,0.906,0.908,0.94,0.875,1.266 +NM_004956,1.079,1.082,0.948,1.07,1.134,1.008,0.846,0.97,1.072,0.928,0.985,0.976,1.064,0.988,0.941,0.796,1.064,1.142,0.915,0.942,0.987,1.067,0.951,0.905,1.033,1.102,1.006,0.986,0.984,1.002,0.912,1.112,0.972,1.004,1.053,0.945,0.852,1.019,1.042,0.915,1.096,1.008,1.036,0.99,1.115,0.973,0.883,1.001,1.025,1.042,1.062,0.986,0.953,1.081 +NM_004957,0.595,1.66,0.759,0.674,0.671,1.095,0.462,0.337,0.992,0.786,1.008,0.723,0.481,0.5,0.694,1.418,0.529,0.864,0.656,1.25,0.269,0.635,1.594,1.13,0.583,1.093,0.942,0.879,0.395,1.666,0.603,2.792,1.228,1.135,0.232,3.149,1.38,0.769,1.989,1.311,0.96,0.881,1.18,2.653,0.756,1.206,1.361,0.718,1.136,0.61,1.189,1.532,0.551,1.956 +NM_004958,0.916,1.404,1.116,0.77,0.94,0.984,0.719,0.496,1.317,1.055,1.014,0.819,0.631,0.968,0.992,1.183,1.005,0.838,1.01,1.081,0.792,0.871,1.401,0.957,0.803,0.879,1.199,0.812,0.617,1.04,1.017,1.008,1.52,0.954,0.602,0.833,0.969,1.127,1.896,0.953,1.016,1.109,0.836,1.109,0.906,1.016,0.971,0.891,0.995,0.941,1.119,0.832,0.994,1.562 +NM_004959,0.97,0.935,1.001,1.032,1.158,0.898,1.078,1.101,1.233,1.213,0.943,1.153,0.778,0.867,1.124,1.019,0.958,0.845,1.068,1.139,1.108,1.05,0.938,1.198,0.906,0.87,0.87,1.04,1.17,0.906,1.047,1.081,1.016,0.968,0.843,1.328,0.953,1.16,0.817,1.145,1.16,0.933,0.793,1.112,1.111,0.922,1.061,0.932,1.147,1.065,1.013,0.865,0.861,1.007 +NM_004960,0.536,0.663,1.129,0.563,0.739,1.075,0.65,0.327,1.21,0.893,0.564,0.79,0.431,0.366,0.824,1.197,1.023,0.843,1.247,0.891,0.686,0.924,1.739,1.333,0.438,0.616,1.561,0.714,0.595,0.876,0.789,1.808,3.603,1.135,0.159,1.636,0.828,0.705,1.341,2.021,0.935,1.011,0.536,1.957,1.458,0.677,1.161,0.632,1.083,0.758,1.11,0.922,1.004,2.99 +NM_004961,0.929,1.04,0.967,1.051,1.041,0.981,1.166,1.116,1.171,1.038,0.896,1.013,1.066,1.094,1.036,0.954,1.034,0.916,0.927,0.866,1.113,0.869,0.935,1.077,0.948,1.037,1.327,0.939,1.11,0.99,1.04,0.912,0.906,0.997,1.108,1.061,0.981,1.037,0.981,1.017,0.932,0.979,1.167,0.944,1.071,1.023,0.913,1.022,1.088,1.133,1.115,0.921,1.023,1.04 +NM_004962,0.937,1.111,1.042,0.932,1.145,0.992,1.166,1.035,1.037,0.982,1.026,0.967,0.963,0.89,0.94,1.068,0.895,1.092,0.88,0.954,1.112,0.967,1.012,0.901,1.014,0.97,0.9,0.979,0.948,1.001,1.016,1.193,0.993,1.111,1.141,0.952,0.986,1.036,0.923,1.035,1.069,1.093,0.971,0.906,1.006,1.259,0.968,0.999,1.057,1.07,0.976,0.961,0.917,1.006 +NM_004963,0.977,0.962,0.836,1.094,0.802,2.125,0.784,0.86,0.902,0.777,4.103,0.966,0.838,0.934,3.342,7.574,0.88,0.882,0.891,3.925,0.93,0.814,4.726,0.766,0.917,0.994,0.963,0.928,0.787,1.506,1.04,0.847,2.414,0.918,0.848,3.188,3.638,0.88,1.293,3.135,1.079,2.548,2.367,1.249,1.006,5.044,3.017,1.035,5.231,0.786,3.467,1.327,0.854,1.07 +NM_004964,0.541,1.002,0.923,0.853,0.822,1.289,0.74,0.295,1.053,1.01,1.055,0.677,0.365,0.518,0.746,1.374,0.722,0.97,0.91,1.182,0.383,0.6,1.29,0.956,0.553,0.669,1.072,0.719,0.521,1.086,0.675,0.65,1.509,1.278,0.1,1.225,1.28,0.612,1.658,0.962,0.984,1.033,0.77,1.445,0.946,1.297,1.171,0.681,1.382,0.685,1.12,0.851,0.876,2.081 +NM_004965,0.8,1.018,1.412,0.67,0.891,1.121,0.488,0.486,1.277,0.977,0.874,0.962,0.802,0.723,1.126,1.667,0.846,0.875,1.292,1.177,0.408,0.696,1.244,1.112,0.616,0.91,1.53,0.929,0.25,1.098,1.011,1.175,2.146,1.365,0.205,0.42,1.118,0.946,1.309,0.792,1.235,1.047,0.603,1.198,0.923,0.802,0.828,0.768,0.569,0.887,1.109,0.64,0.58,2.087 +NM_004966,0.683,0.985,0.795,0.749,0.854,1.289,0.976,0.712,0.812,0.878,1.403,0.762,0.751,0.685,0.992,1.461,0.772,0.941,0.896,1.087,0.846,0.745,1.425,0.735,0.914,0.742,0.911,0.79,0.657,1.148,0.883,1.054,2.469,1.551,0.679,1.391,1.252,0.827,1.129,0.774,0.767,1.175,0.899,1.443,0.948,1.168,0.931,0.716,1.347,0.73,1.159,1.078,0.999,1.968 +NM_004967,0.952,1.043,1.224,0.744,0.907,0.907,0.916,1.043,1.004,0.893,1.067,1.079,0.878,0.874,1.097,0.9,1.064,0.8,1.056,0.927,0.923,0.937,0.877,0.877,0.999,0.923,1.069,1.054,0.931,1.127,1.111,1.014,0.971,0.97,0.971,0.932,1.098,0.961,1.075,1.059,0.98,0.913,1.025,0.943,1.046,1.058,1.128,1.091,1.034,0.972,1.206,0.996,0.836,0.983 +NM_004968,0.4,1.257,0.587,0.867,0.382,1.504,0.817,0.269,0.517,0.439,1.517,0.347,0.412,0.486,0.896,1.097,0.528,0.776,0.453,1.16,0.276,0.407,1.982,0.362,1.008,0.422,0.397,0.342,0.737,1.939,0.476,1.057,1.525,1.714,0.442,1.857,1.337,0.437,2.023,1.374,0.392,1.406,0.998,2.067,0.564,1.377,0.996,0.368,1.101,0.468,1.467,0.682,0.393,1.337 +NM_004970,0.767,4.53,0.794,1.101,0.87,1.372,1.614,0.657,0.855,0.996,1.249,0.872,0.837,0.827,1.022,1.862,0.983,0.948,0.778,1.05,0.825,0.9,1.63,0.893,2.796,0.896,0.843,0.842,1.658,12.6,0.796,4.472,0.781,4.165,0.869,0.938,1.248,0.77,4.299,0.963,0.885,1.017,0.809,0.906,0.869,1.094,1.45,0.926,1.123,0.907,1.442,1.129,0.874,0.879 +NM_004972,0.824,0.976,1.382,0.996,0.995,1.167,0.914,0.967,1.266,0.944,1.001,0.946,0.889,0.715,1.027,1.175,0.743,1.032,1.154,0.965,0.751,1.097,1.121,1.142,0.767,0.85,1.145,0.969,1.285,1.273,1.044,0.915,1.069,1.034,0.637,0.55,1.008,1.009,1.275,0.67,0.976,1.061,0.937,0.728,1.128,0.911,0.598,0.878,1.082,0.974,1.048,0.981,0.81,1.425 +NM_004973,1.228,0.872,1.522,0.85,1.135,0.759,0.69,0.733,1.929,1.386,0.751,0.875,0.772,1.3,1.117,0.912,1.095,1.032,1.471,0.79,0.87,1.21,0.7,1.163,0.729,1.16,1.395,1.218,0.676,1.002,1.685,0.816,1.672,1.215,0.878,0.525,0.781,1.186,0.926,1.516,1.365,0.897,0.727,0.757,1.4,0.75,0.975,1.2,0.69,1.133,0.818,0.881,1.436,1.225 +NM_004974,0.892,1.119,0.951,1.231,0.826,1.041,1.226,0.964,0.984,0.959,1.064,0.998,1.114,0.946,1.149,1.016,1.067,0.955,1.195,0.859,0.882,0.962,1.136,1.201,0.926,1.02,0.966,1.0,1.11,1.068,1.178,1.016,1.073,1.071,0.998,1.115,0.94,1.171,1.122,1.137,0.959,0.99,1.098,0.979,1.145,0.83,1.0,1.046,1.035,1.1,1.002,1.193,0.867,0.859 +NM_004975,0.916,0.925,0.921,0.884,1.033,0.953,1.017,0.978,1.051,1.109,1.006,1.122,0.952,0.978,0.916,1.147,0.878,1.071,0.881,0.947,0.944,0.925,1.148,1.136,0.9,1.056,0.885,1.025,1.874,0.848,1.043,0.957,1.077,1.2,0.955,0.96,0.926,1.095,0.961,0.924,1.042,1.326,1.078,0.958,0.963,1.128,0.957,1.053,0.966,1.005,0.999,1.039,0.97,0.933 +NM_004976,0.938,0.966,1.062,1.096,0.965,0.908,1.006,1.087,0.898,1.131,1.036,1.089,1.023,1.058,0.908,0.906,0.944,0.952,1.05,0.944,1.036,0.975,1.059,0.873,0.937,0.967,1.083,1.034,0.785,1.015,0.977,0.948,0.93,0.948,0.913,1.089,1.037,1.091,1.003,1.021,0.939,1.079,0.875,1.03,0.954,1.055,1.054,0.974,0.936,1.079,1.022,0.881,0.86,0.96 +NM_004977,0.958,1.065,0.883,1.02,0.849,1.138,0.95,1.044,1.042,0.881,0.998,1.039,0.955,1.002,1.177,0.904,0.991,1.092,1.025,0.912,0.958,0.937,0.991,1.082,0.918,0.831,1.13,0.988,1.098,0.96,1.074,1.079,0.954,1.047,1.004,1.0,0.938,0.966,0.879,1.004,0.961,1.035,0.887,1.048,0.993,1.034,1.071,0.922,1.016,1.044,0.978,0.987,1.019,1.034 +NM_004978,1.061,1.068,1.002,1.014,0.935,0.926,0.885,1.34,0.778,1.124,1.061,1.036,1.019,0.942,1.141,0.908,1.007,1.028,0.992,0.987,1.032,1.03,1.042,0.91,1.101,1.104,1.022,1.009,1.035,1.172,1.009,0.932,0.852,1.147,1.022,1.011,1.023,0.97,1.064,1.057,0.964,0.949,1.074,0.879,1.033,1.017,0.976,0.793,1.088,0.994,1.034,0.918,0.973,1.002 +NM_004979,0.832,1.068,1.002,0.88,0.987,0.992,0.838,0.982,1.03,1.02,1.002,0.94,1.02,0.888,1.1,1.043,0.901,0.977,0.931,1.015,0.914,1.045,0.923,0.954,1.063,0.931,1.032,0.969,0.825,1.129,1.027,1.582,0.907,1.099,0.886,0.946,0.921,1.055,0.954,1.354,1.052,1.07,1.009,1.066,0.905,0.999,1.049,1.035,0.889,0.981,0.884,1.036,1.014,0.989 +NM_004980,1.06,1.098,1.051,1.025,0.992,0.91,1.02,1.226,0.954,1.042,1.235,1.017,1.041,0.903,1.377,1.146,0.899,1.042,1.001,1.036,0.98,0.958,1.033,1.034,0.941,1.06,0.812,1.06,1.504,1.057,0.86,0.849,0.899,0.891,1.078,0.907,0.957,1.031,0.974,0.998,0.999,0.942,0.93,0.942,1.139,1.056,1.056,0.971,0.945,0.986,0.995,0.996,1.246,1.063 +NM_004981,1.074,0.938,1.081,0.816,1.039,1.062,0.997,1.218,0.857,1.09,1.107,1.016,0.946,1.027,1.092,1.009,0.939,0.904,0.878,0.927,0.975,0.88,1.092,0.931,1.006,0.885,1.321,1.11,0.632,1.112,0.873,1.052,0.848,1.109,0.944,1.072,1.093,0.942,0.921,1.013,1.013,0.917,0.877,0.914,1.054,0.952,0.923,1.122,0.869,0.963,1.135,0.933,0.969,0.961 +NM_004982,0.941,0.945,0.992,1.13,1.004,0.992,0.941,0.982,0.971,1.012,1.04,0.975,0.995,0.765,1.323,1.068,0.979,0.977,1.031,0.994,1.051,0.965,1.083,0.923,1.082,0.911,0.971,1.128,1.313,1.081,0.978,1.599,1.141,1.007,0.893,1.142,0.905,0.866,1.123,1.291,1.0,0.997,1.057,0.931,0.935,0.818,0.863,0.842,0.896,0.935,0.968,1.164,1.114,1.048 +NM_004983,0.956,0.952,1.08,0.988,1.052,0.995,0.897,1.067,0.995,0.997,0.982,1.029,0.997,1.085,1.138,0.983,0.952,0.896,1.031,1.042,0.868,1.024,1.029,1.0,0.951,0.974,1.024,1.076,0.945,1.144,1.019,1.003,1.04,1.193,1.013,0.97,0.916,0.91,1.075,0.961,0.872,0.946,1.0,0.984,0.942,1.072,1.011,1.124,0.958,1.011,0.975,0.887,0.928,0.886 +NM_004984,1.047,1.029,0.963,1.049,0.947,0.964,0.938,1.135,1.093,1.0,0.91,1.003,0.885,0.844,0.734,1.063,0.936,0.819,0.974,1.166,1.058,1.081,0.928,0.873,0.96,0.881,1.042,1.0,1.439,1.089,1.025,0.958,0.945,0.917,1.12,0.961,1.151,1.061,0.956,0.931,1.069,1.121,1.072,1.064,0.969,0.94,0.912,1.12,1.025,1.054,0.991,1.031,0.966,0.977 +NM_004985,0.629,0.742,1.235,0.658,0.928,1.593,0.679,0.811,1.109,0.743,1.148,0.823,0.727,0.736,1.124,1.772,0.828,1.183,1.158,1.11,0.432,0.966,1.068,1.025,0.49,0.755,1.287,1.011,0.638,1.261,0.911,1.766,1.31,1.263,0.321,0.703,1.359,0.697,1.389,0.848,1.041,0.988,0.71,7.122,0.925,1.057,0.983,0.995,0.986,0.719,1.081,0.825,0.587,1.183 +NM_004986,0.73,0.958,2.202,0.481,1.295,1.556,0.546,0.853,1.187,1.251,0.387,1.356,0.781,0.833,1.304,1.28,1.142,0.752,1.088,1.052,0.441,1.301,1.124,1.504,0.459,0.601,2.147,0.483,0.286,1.175,1.774,0.753,2.051,1.062,0.672,0.762,0.753,1.408,1.36,1.101,1.455,0.799,0.47,1.029,1.422,0.656,1.213,0.729,1.224,0.638,1.139,0.684,0.742,1.974 +NM_004987,0.745,0.934,1.439,0.574,0.88,0.884,0.773,0.635,1.03,0.871,1.14,0.787,0.678,0.841,0.795,1.092,0.792,0.975,1.132,0.586,0.768,0.833,1.321,0.841,0.682,0.641,1.313,1.004,0.461,1.185,0.937,2.017,2.524,1.188,0.533,0.865,1.12,0.916,1.353,2.131,1.184,1.282,0.804,1.036,0.888,1.055,1.041,0.516,0.863,0.753,1.239,1.47,1.063,1.729 +NM_004988,0.905,0.939,0.944,1.065,0.923,0.817,1.1,0.826,1.002,1.033,0.94,0.917,0.883,1.386,0.706,1.009,0.997,0.907,1.127,0.979,1.161,0.952,0.972,1.083,1.045,1.017,1.101,1.078,1.241,1.037,0.903,0.966,1.123,1.023,1.07,1.207,1.015,1.021,1.033,1.058,0.854,1.048,1.287,0.904,0.93,1.122,0.978,1.05,0.944,1.109,1.131,0.948,1.111,1.038 +NM_004990,0.543,1.005,0.852,0.525,0.728,1.368,0.781,0.354,1.046,1.046,0.858,0.793,0.402,0.35,0.693,1.165,0.695,0.957,0.683,1.031,0.442,0.689,1.386,1.291,0.713,0.59,0.964,0.712,0.615,1.207,0.643,1.343,1.33,1.205,0.214,2.042,1.156,0.842,1.986,1.227,1.1,1.239,0.704,2.104,1.114,1.065,1.23,0.762,1.014,0.665,0.999,1.01,0.793,2.268 +NM_004991,1.051,1.171,1.018,0.885,0.982,0.928,0.837,0.996,1.081,0.931,1.15,0.924,0.868,0.886,1.058,1.003,0.931,0.96,0.908,1.068,0.727,0.936,1.134,0.965,1.039,1.23,1.066,0.85,0.991,0.921,0.863,1.084,0.762,0.968,1.067,1.05,1.011,1.16,1.057,0.877,0.843,0.876,1.199,1.066,1.075,0.962,1.021,1.011,1.062,1.044,0.949,0.943,1.028,0.948 +NM_004992,1.127,1.086,0.991,1.141,0.996,0.877,0.753,1.079,0.989,0.973,0.867,0.999,0.899,1.015,1.128,1.108,1.033,0.971,1.034,1.117,0.971,1.084,1.053,0.955,0.908,1.063,0.923,0.928,0.783,0.99,0.947,1.254,1.418,1.029,1.064,0.866,0.97,1.14,1.079,1.176,1.08,1.096,0.864,1.147,1.076,0.929,0.964,1.146,0.913,1.165,0.818,1.016,1.063,1.288 +NM_004993,0.988,0.937,1.075,0.89,1.082,0.878,1.231,1.318,1.148,1.07,0.915,0.955,0.918,1.061,0.737,1.184,1.131,1.133,1.034,0.924,1.121,1.043,1.11,1.069,1.0,0.924,0.962,0.993,1.061,0.955,1.161,1.08,0.947,1.029,1.169,1.115,0.922,0.904,1.172,1.019,0.985,0.955,0.984,0.968,1.155,1.019,0.984,1.021,0.875,0.965,0.827,0.896,0.86,0.907 +NM_004994,0.859,1.204,1.739,1.085,0.837,0.879,1.016,0.927,0.782,1.068,0.905,0.859,0.899,0.858,1.154,0.835,0.921,0.958,0.871,0.766,0.662,0.747,1.23,0.983,0.929,0.82,2.197,0.77,0.677,1.111,0.777,2.97,2.568,0.937,0.85,1.086,1.131,0.79,1.931,18.15,1.066,1.433,1.198,1.75,1.006,1.042,1.69,0.74,0.809,1.301,0.906,8.143,1.963,2.07 +NM_004995,0.951,0.793,1.434,0.741,0.89,0.813,0.608,0.512,0.802,0.737,0.755,0.563,0.708,0.792,0.778,0.918,1.296,1.008,1.525,0.689,0.826,0.928,0.947,0.781,0.62,1.096,1.625,0.621,0.648,1.291,0.83,4.017,0.87,1.028,0.521,0.743,0.866,1.059,1.809,3.004,1.057,1.146,0.6,1.846,0.762,0.74,1.151,0.913,0.742,1.049,0.83,1.411,1.18,1.076 +NM_004997,0.931,1.033,0.986,1.042,1.052,0.951,0.99,0.98,1.18,0.922,0.972,0.953,1.098,0.904,0.933,0.955,1.057,0.952,1.011,0.943,0.945,1.03,0.883,1.091,0.962,1.056,1.078,1.037,1.11,0.955,1.076,0.958,1.054,0.878,1.0,0.904,0.961,1.177,0.969,1.086,0.974,1.21,1.001,1.012,1.074,0.924,1.048,0.986,0.909,0.854,1.07,0.957,1.102,0.927 +NM_004999,0.879,1.031,1.357,0.69,1.159,1.164,0.623,1.019,1.837,0.768,1.108,0.841,0.885,1.085,1.284,2.01,0.908,0.911,1.029,1.138,0.397,1.001,1.245,0.811,0.477,0.809,1.298,1.061,0.545,0.934,1.511,0.8,1.205,0.999,2.723,0.543,1.244,1.262,1.577,0.936,1.172,1.115,0.822,0.58,1.158,1.266,1.206,1.181,1.377,1.064,1.311,0.594,0.607,1.377 +NM_005000,0.749,0.975,1.511,0.701,1.071,1.91,1.135,1.39,0.987,0.841,0.86,1.355,1.172,0.596,1.124,2.304,1.001,1.026,0.62,1.401,0.639,1.35,1.101,1.363,0.778,0.538,1.82,0.999,0.994,1.353,1.147,1.305,1.848,1.109,0.664,0.628,1.136,1.445,1.612,0.84,0.933,1.06,0.809,0.564,1.146,0.923,1.007,0.882,1.275,0.825,1.247,0.658,0.613,1.438 +NM_005001,0.591,1.129,1.145,0.835,0.865,1.391,0.738,0.666,1.135,0.985,0.973,1.021,0.796,0.593,0.87,1.832,0.829,1.326,1.427,0.982,0.493,0.875,2.081,1.094,0.704,0.881,1.158,0.675,0.632,1.008,0.777,0.793,1.593,1.968,0.371,0.902,1.043,0.907,1.466,0.838,0.992,1.128,0.59,1.345,1.169,1.12,0.887,0.739,1.253,0.76,1.054,0.715,0.872,1.661 +NM_005002,0.619,0.747,0.855,0.968,0.679,1.318,0.711,0.367,0.78,0.812,1.562,0.858,0.704,0.302,0.802,2.468,0.64,1.124,1.144,1.068,0.424,0.855,1.455,0.873,1.001,0.892,0.938,0.668,0.662,1.119,0.53,0.66,3.227,1.297,0.133,1.452,1.684,0.631,2.147,0.732,0.85,1.381,1.026,1.554,0.962,1.327,1.152,0.847,1.871,0.851,1.151,0.868,0.859,1.53 +NM_005003,0.618,1.005,0.979,0.872,0.717,0.909,0.647,0.266,0.966,0.938,1.465,0.454,0.473,0.558,0.912,2.243,0.882,1.145,1.161,1.049,0.581,0.531,1.511,0.821,0.798,0.761,1.258,0.858,0.394,1.007,0.834,1.338,2.547,1.445,0.11,1.047,1.691,0.728,1.864,0.671,1.139,1.111,0.996,1.219,0.961,1.241,1.444,0.591,1.605,0.685,1.242,0.956,0.886,1.421 +NM_005004,0.471,1.007,1.077,0.665,0.913,1.414,0.751,0.495,1.258,1.071,1.116,0.73,0.806,0.388,0.954,2.315,0.919,1.41,1.429,0.935,0.463,0.856,1.469,1.161,0.651,0.604,1.246,0.903,0.539,1.368,0.863,1.437,2.153,1.659,0.119,0.806,1.489,0.985,1.64,0.43,1.117,1.316,0.644,1.079,0.923,1.035,1.281,0.781,1.471,0.707,1.05,0.684,0.583,1.297 +NM_005005,0.576,1.134,0.891,0.659,0.777,1.063,0.737,0.334,0.942,1.008,1.235,1.007,0.676,0.417,0.717,1.405,0.636,1.022,0.867,1.058,0.437,0.644,1.243,0.888,0.775,0.676,0.993,0.828,0.442,1.119,0.622,1.128,1.391,1.156,0.0726,2.112,1.292,0.785,1.4,1.312,0.926,1.144,0.827,1.446,0.956,1.558,1.157,0.697,1.512,0.712,1.155,0.984,0.707,1.575 +NM_005007,0.837,1.177,0.854,0.794,0.968,1.203,0.906,0.963,0.902,0.866,1.182,1.056,1.176,0.711,0.964,1.054,0.92,1.055,0.995,1.174,0.909,1.117,1.087,1.098,0.947,0.89,1.041,0.927,0.687,1.138,0.968,1.404,1.177,1.45,0.761,0.998,0.887,1.075,1.215,0.99,0.96,1.241,0.768,1.084,0.854,0.903,0.93,1.06,1.056,0.797,0.92,0.814,0.787,1.455 +NM_005008,0.728,1.155,0.891,0.916,0.724,1.137,0.657,0.499,0.97,0.985,1.025,0.942,0.713,0.557,0.73,1.408,0.774,0.913,0.992,1.126,0.873,0.726,1.315,0.993,0.714,0.944,1.186,0.779,0.592,1.324,0.8,1.491,1.787,1.57,0.297,1.163,0.884,0.896,1.557,0.728,0.944,1.443,0.698,1.348,1.088,0.9,0.903,0.74,1.032,0.802,1.174,1.009,0.974,1.509 +NM_005009,1.043,0.962,0.757,0.966,0.673,1.349,0.804,0.984,1.137,0.846,1.025,0.847,0.971,0.92,1.025,0.966,0.891,0.967,0.971,0.77,0.951,0.876,1.21,0.879,1.378,1.344,1.043,0.814,0.787,0.982,1.108,1.852,1.463,1.303,1.213,0.818,1.102,0.844,1.75,1.006,0.881,1.033,0.7,1.527,0.809,0.853,0.803,1.029,0.787,0.966,0.89,0.924,0.96,1.177 +NM_005010,1.07,1.034,0.841,0.975,0.995,0.987,0.978,0.943,1.067,0.969,0.954,0.998,0.875,1.117,1.002,0.917,0.886,1.075,1.056,1.152,1.018,0.988,1.006,1.013,1.12,1.062,0.973,1.037,1.045,1.007,0.812,1.077,1.828,1.075,0.989,1.017,0.999,1.051,0.999,1.42,0.882,0.939,0.957,2.069,1.005,0.927,0.942,1.001,0.879,0.953,1.038,1.255,1.159,1.304 +NM_005011,0.901,0.951,1.117,0.867,0.888,1.083,0.878,1.134,1.156,1.146,1.099,1.052,1.078,1.002,0.889,1.051,0.965,1.122,1.027,0.88,0.853,0.871,1.18,1.041,0.892,0.974,0.882,1.05,0.988,0.869,1.291,0.89,1.245,0.914,0.911,1.192,0.887,0.86,1.193,0.926,0.9,0.919,1.107,1.067,1.114,1.004,1.007,0.819,0.942,1.007,0.945,1.124,1.008,1.037 +NM_005012,0.837,1.321,1.317,0.76,1.033,1.267,0.867,0.635,0.842,0.915,1.214,1.21,1.13,0.935,0.831,1.327,0.67,0.684,0.88,1.14,0.744,1.014,1.916,0.89,1.085,0.725,0.802,1.129,0.856,1.62,1.028,1.299,5.076,1.941,0.434,0.581,1.906,1.049,1.53,0.549,1.061,1.678,0.999,1.576,0.751,0.84,0.587,0.708,0.723,0.786,1.206,0.835,0.976,0.702 +NM_005013,0.97,1.017,1.59,0.729,2.362,2.258,0.73,3.109,2.781,1.43,0.795,1.64,1.625,0.953,1.463,1.698,0.91,1.402,1.879,0.811,0.439,3.287,0.747,2.379,0.785,0.799,1.181,2.152,0.644,1.071,2.873,0.662,1.486,1.71,0.332,0.37,0.841,2.375,0.981,0.296,1.865,1.439,0.294,0.29,1.529,1.026,1.108,2.313,0.985,1.16,1.495,0.402,0.477,0.809 +NM_005014,0.999,1.128,0.947,0.931,1.116,1.071,1.088,0.95,0.935,0.952,1.125,0.985,0.931,0.964,0.985,0.997,1.085,1.009,0.943,1.045,0.883,1.066,0.991,1.021,1.035,0.942,1.111,1.012,1.217,1.134,0.998,1.649,1.131,1.114,1.016,0.917,1.058,0.979,0.921,0.979,1.041,1.215,0.814,0.904,0.85,0.971,0.978,0.929,0.907,0.928,0.967,1.017,0.848,0.844 +NM_005015,0.714,0.938,1.004,1.002,0.794,1.379,0.598,0.532,0.985,1.043,1.158,0.795,0.777,0.617,0.926,1.756,0.877,0.941,1.18,0.935,0.622,0.958,1.481,1.15,0.698,0.927,1.267,0.693,0.625,1.215,0.648,1.021,1.166,1.437,0.241,0.843,1.134,1.006,1.244,0.545,0.945,1.435,0.985,1.623,0.865,0.956,0.95,0.736,1.388,0.914,1.031,0.532,0.811,1.38 +NM_005017,0.844,0.723,1.102,0.967,0.929,1.075,0.799,0.927,1.162,1.637,0.934,1.049,0.75,0.858,0.948,1.26,0.943,0.885,1.24,0.854,0.886,0.913,1.139,1.176,0.724,1.229,1.091,0.897,0.721,0.973,0.924,0.935,1.51,0.976,0.625,0.938,1.047,0.776,1.376,0.981,1.18,0.9,0.852,1.083,1.174,1.056,1.051,0.917,1.247,0.845,1.002,1.039,1.418,1.69 +NM_005018,0.904,0.888,0.967,0.985,1.17,1.049,0.9,1.038,1.042,0.883,0.987,1.055,0.923,0.893,0.945,1.023,0.906,1.02,0.902,0.98,1.098,1.016,1.063,1.007,1.041,0.961,1.243,0.952,1.044,0.97,1.002,0.97,0.994,1.004,0.936,1.009,0.895,1.047,0.99,0.915,1.118,0.966,1.037,0.844,1.073,0.959,0.994,0.951,1.042,0.935,0.998,0.984,1.03,1.102 +NM_005019,0.914,1.086,0.986,0.993,0.982,1.107,0.905,0.749,0.867,0.952,1.136,0.869,1.064,1.118,0.897,1.096,1.125,0.942,0.844,1.061,1.006,0.955,1.107,0.926,1.164,0.95,0.973,1.035,0.969,1.181,0.947,1.525,0.923,1.343,0.895,0.989,1.044,1.052,1.076,1.046,0.977,1.228,1.086,0.949,1.056,0.974,1.038,0.983,1.211,0.903,0.977,0.903,0.893,1.346 +NM_005020,0.991,0.951,0.765,0.888,1.075,0.989,1.013,1.171,0.989,1.091,0.867,0.866,0.922,1.189,0.962,0.908,0.895,1.037,1.137,0.993,0.909,0.913,1.001,1.022,0.955,1.032,1.099,1.095,0.966,0.98,0.996,0.844,1.0,1.033,0.911,1.109,1.152,0.999,0.962,1.014,0.909,1.031,0.957,0.882,0.929,1.063,0.867,1.023,1.079,1.038,1.014,0.951,1.023,1.075 +NM_005021,1.0,0.844,0.943,1.04,1.149,0.902,1.226,1.016,1.018,0.944,0.944,0.947,0.981,1.142,0.838,0.97,0.951,0.997,1.032,0.923,0.997,0.924,1.113,0.905,0.867,1.051,1.179,1.01,0.857,1.058,0.959,1.278,1.092,1.148,1.005,1.011,1.012,1.021,1.039,1.073,0.918,0.896,0.789,1.027,1.196,0.931,0.919,0.932,1.04,1.161,0.974,0.91,0.924,1.006 +NM_005022,0.61,0.734,1.027,0.821,0.89,1.55,0.768,0.479,0.894,1.007,1.091,1.054,0.6,0.349,0.943,1.835,0.647,1.112,0.956,1.43,0.293,0.782,1.414,0.978,0.635,0.758,0.948,0.78,0.549,1.409,0.721,0.973,1.261,1.323,0.0665,1.192,1.422,0.836,1.263,1.145,0.883,1.149,0.844,0.993,0.961,1.314,1.157,0.74,1.412,0.731,1.425,0.908,0.752,1.385 +NM_005023,0.91,0.857,1.222,0.802,1.114,1.221,1.089,0.937,1.076,0.979,0.936,1.027,0.959,0.94,0.978,1.407,1.175,0.88,0.764,1.053,0.783,1.041,1.092,1.214,0.838,0.932,1.185,0.969,0.909,0.943,1.022,1.003,1.002,1.071,0.743,0.808,1.112,0.92,1.24,0.99,1.052,0.908,0.991,0.746,0.973,0.979,1.023,0.912,1.281,0.989,1.16,0.761,0.76,1.238 +NM_005024,1.1,0.97,0.912,0.942,0.855,0.986,0.947,1.113,1.014,1.113,1.065,1.115,1.1,0.872,0.877,0.996,1.007,1.117,0.938,0.938,0.892,1.007,1.125,0.952,1.054,0.869,1.173,0.97,0.853,0.895,1.121,0.98,0.946,1.029,0.951,1.04,0.87,0.921,1.028,0.84,0.98,0.98,0.753,1.094,1.081,1.073,0.897,0.975,1.257,1.034,1.087,0.934,0.98,0.941 +NM_005025,0.943,1.11,0.931,1.026,0.949,1.039,1.004,0.791,0.888,0.859,0.862,1.061,1.002,1.101,0.894,0.958,0.995,0.871,0.931,1.027,0.894,0.933,0.847,0.953,1.315,0.983,0.993,1.089,0.812,0.983,0.72,1.134,0.95,1.076,0.981,0.942,1.096,0.959,1.036,0.979,0.988,0.998,0.943,1.011,0.977,0.874,1.083,0.981,0.948,0.991,1.01,1.062,0.969,1.162 +NM_005026,0.908,1.05,2.457,1.124,1.019,0.62,0.797,0.608,1.121,0.989,0.54,0.857,0.748,1.019,0.921,0.639,1.107,0.87,1.027,0.841,0.697,0.93,0.712,1.089,0.721,0.824,2.199,1.078,0.476,1.309,1.012,2.369,0.949,1.147,0.529,0.53,0.772,1.061,1.472,3.599,1.174,1.356,0.499,0.905,1.13,0.704,1.031,0.758,0.603,0.983,0.811,1.49,1.445,2.307 +NM_005027,1.116,1.081,1.081,1.095,1.063,1.129,0.985,0.859,1.067,0.867,1.035,0.949,1.065,0.922,0.785,1.068,1.14,1.161,1.028,0.916,1.111,0.99,0.968,0.994,0.983,0.981,0.941,0.925,0.954,0.891,0.968,0.89,1.007,0.83,0.963,0.933,0.975,0.985,1.101,0.907,0.877,1.186,0.988,1.005,1.134,0.874,0.871,1.064,1.066,1.02,1.031,0.984,0.955,0.961 +NM_005028,0.849,1.2,1.021,0.99,0.958,0.952,0.823,0.886,1.041,1.108,0.882,1.007,0.811,0.878,0.883,0.845,1.031,0.968,1.001,0.937,0.829,1.025,0.864,1.044,0.865,0.998,1.07,0.987,0.825,1.091,0.986,1.323,1.018,0.994,0.973,0.895,0.895,1.124,1.399,1.083,0.991,1.162,0.831,1.469,0.892,0.893,1.131,1.046,1.006,1.022,0.941,1.002,0.91,1.383 +NM_005029,0.932,0.896,1.015,1.129,1.01,1.001,1.004,0.982,0.856,1.178,0.931,0.901,1.095,0.881,0.939,1.014,1.002,0.946,0.956,1.315,1.069,0.955,1.245,0.97,1.176,1.011,1.08,1.02,1.09,1.094,1.135,0.808,1.037,0.963,1.11,1.0,0.951,1.03,1.009,0.92,1.029,0.896,1.2,1.016,1.03,0.98,0.892,0.985,0.896,1.054,1.109,0.997,0.974,0.898 +NM_005031,2.23,2.1849999999999996,1.954,1.962,1.901,2.138,1.7269999999999999,2.186,1.866,1.896,2.077,2.042,1.724,2.193,2.234,1.924,1.846,1.943,1.845,2.15,2.001,1.9649999999999999,1.968,2.02,2.289,1.988,2.007,2.2039999999999997,1.419,2.345,2.03,2.497,1.7229999999999999,3.758,2.1,1.963,2.047,2.2830000000000004,2.258,2.065,2.105,2.754,1.772,1.77,2.1310000000000002,1.668,1.9529999999999998,1.951,1.863,1.861,2.093,1.818,1.914,1.858 +NM_005032,0.642,0.573,2.07,0.399,1.879,0.92,0.403,1.799,2.189,1.429,0.667,1.712,0.708,0.845,0.984,1.483,1.183,1.24,2.62,0.755,0.744,1.589,0.726,1.561,0.248,1.141,1.735,1.789,0.297,0.833,1.768,1.153,2.257,0.857,1.059,0.477,0.612,2.071,0.705,0.495,1.806,0.619,0.316,0.549,1.4,0.723,1.393,1.383,0.636,1.135,0.779,0.783,1.16,0.956 +NM_005033,0.718,1.089,1.055,0.836,0.965,0.962,0.829,0.534,1.173,1.058,1.019,0.749,0.607,0.765,1.088,1.171,0.832,0.82,1.179,0.883,0.759,0.871,1.032,0.95,0.743,0.772,1.347,0.858,0.521,1.016,0.957,1.433,2.502,1.35,0.44,0.888,0.977,1.002,1.267,0.719,1.073,1.043,0.827,1.598,0.971,1.036,0.906,0.682,1.169,0.78,0.992,1.055,1.232,1.381 +NM_005034,0.433,1.34,0.95,0.64,0.698,1.168,0.65,0.441,1.081,0.793,1.173,0.496,0.601,0.697,0.868,1.58,0.832,0.973,0.873,1.029,0.45,0.579,1.671,0.873,0.59,0.689,1.068,0.824,0.464,1.196,0.866,1.639,2.349,1.614,0.391,1.27,1.235,0.76,1.432,1.119,1.016,1.132,0.696,1.66,0.853,1.25,1.073,0.551,1.264,0.5,0.987,0.797,0.735,4.479 +NM_005037,0.224,1.841,0.247,0.985,0.228,2.818,1.486,0.168,0.307,0.227,2.413,0.183,0.217,0.22,0.864,1.807,0.295,1.533,0.388,1.382,0.19,0.249,2.326,0.353,0.926,0.206,0.453,0.298,1.301,3.388,0.28,0.456,0.497,3.38,0.153,1.365,2.763,0.208,1.999,0.91,0.354,2.357,1.735,1.015,0.248,2.093,0.93,0.235,1.951,0.232,1.254,0.561,0.249,3.054 +NM_005038,0.765,0.903,1.561,0.788,1.025,1.042,0.836,0.536,1.131,1.018,1.014,0.808,0.642,0.664,1.044,1.595,0.952,0.897,1.053,0.898,0.716,0.8,0.748,1.12,0.621,0.641,1.19,0.863,0.581,1.09,1.027,1.605,2.118,1.19,0.465,0.68,0.921,1.03,2.172,0.982,1.338,1.175,0.587,1.008,0.876,1.063,1.171,0.833,1.266,0.815,0.994,0.686,0.726,1.636 +NM_005039,1.022,1.002,0.965,0.986,0.933,0.972,0.968,0.947,0.957,1.029,1.044,0.976,0.963,0.973,1.018,1.056,0.957,1.181,0.959,1.163,1.025,0.969,0.991,1.121,0.943,0.969,1.015,0.908,1.064,1.004,0.911,0.847,1.119,0.998,0.99,1.36,0.916,0.867,1.11,1.103,0.951,0.868,1.125,1.116,1.244,1.042,0.917,1.036,1.021,1.014,1.048,1.126,1.072,0.949 +NM_005040,1.237,0.968,2.099,0.576,1.329,0.686,0.457,0.641,1.906,1.322,0.504,0.952,1.272,1.049,0.923,0.696,1.435,1.03,2.92,0.671,0.849,1.694,0.877,1.831,0.528,1.608,2.84,1.087,0.205,1.447,1.332,1.884,2.17,1.173,0.208,0.75,0.68,1.308,1.054,0.864,1.723,1.17,0.357,0.762,1.582,0.454,0.798,1.236,0.312,1.747,0.682,1.202,1.274,1.138 +NM_005041,0.89,1.072,1.039,1.002,0.961,1.018,0.991,0.877,0.943,0.945,0.848,0.939,0.941,1.013,1.298,0.998,0.956,0.975,0.989,1.016,1.072,0.959,0.948,0.932,1.218,1.224,1.011,1.122,0.842,0.995,0.846,1.179,0.9,1.121,0.987,1.061,1.034,1.088,1.017,1.097,0.913,0.955,0.938,1.041,0.998,1.043,1.041,0.916,0.934,1.0,1.027,0.986,1.161,1.35 +NM_005042,0.938,0.997,1.02,0.981,1.031,0.948,0.939,1.03,0.805,0.98,0.999,1.054,1.077,1.167,1.186,0.952,0.927,1.094,1.212,0.931,0.949,0.904,1.104,0.96,0.903,0.847,0.977,0.94,0.944,0.938,1.028,1.001,1.038,0.893,0.935,0.941,1.068,0.93,1.016,0.917,1.028,2.805,0.911,0.98,1.021,1.149,0.881,0.983,0.872,1.015,1.015,1.085,1.062,1.002 +NM_005047,0.758,1.09,1.0,0.85,0.861,1.172,0.675,0.597,0.963,0.9,1.382,1.097,0.675,0.678,0.904,1.4,0.812,0.814,1.153,1.222,0.66,0.972,1.327,0.929,0.703,0.904,1.197,0.956,0.601,1.221,0.878,1.602,1.166,1.178,0.441,0.84,1.179,0.874,0.89,0.628,1.073,1.141,0.84,0.971,0.945,1.245,0.951,0.813,1.149,0.872,1.077,0.811,0.973,1.563 +NM_005048,0.941,0.963,1.018,1.14,0.974,0.847,0.831,0.89,0.929,1.154,0.976,0.98,0.946,1.092,1.039,0.913,1.156,1.325,0.856,1.096,0.965,0.887,1.102,0.916,1.071,1.112,1.074,0.929,1.014,0.948,0.925,1.001,0.93,0.992,1.009,1.032,0.968,0.946,1.0,1.292,1.011,0.987,0.92,0.884,0.97,0.93,0.996,0.963,0.984,1.0,1.067,1.161,0.863,0.86 +NM_005049,0.907,1.142,1.086,0.886,0.814,0.829,0.823,0.594,0.981,0.857,1.046,0.652,0.668,0.825,1.016,1.021,0.975,0.868,1.064,1.025,0.84,0.847,1.213,0.832,0.913,0.929,1.144,0.818,0.735,1.053,0.908,1.188,1.736,1.048,0.568,0.911,0.911,0.87,2.083,1.228,0.887,0.969,0.95,1.691,1.079,1.063,0.892,1.0,0.853,0.99,0.963,0.869,1.03,1.45 +NM_005051,0.836,1.04,1.466,0.763,0.941,1.106,0.392,0.632,1.254,1.119,1.545,0.953,0.776,0.768,1.026,1.634,0.945,1.096,1.459,0.948,0.489,0.95,1.578,1.142,0.592,0.963,1.386,0.891,0.424,1.528,0.975,0.815,0.986,1.308,0.439,0.806,1.479,1.177,1.214,0.539,1.075,1.334,0.791,0.615,0.988,1.159,0.84,0.92,0.92,0.94,1.168,0.687,1.19,1.293 +NM_005052,0.835,0.791,1.766,0.77,1.406,0.904,0.706,1.23,1.649,1.551,0.604,1.043,0.88,0.786,1.149,1.507,1.223,1.22,1.351,0.853,1.065,1.388,1.033,1.208,0.567,1.069,1.071,1.268,0.666,0.828,1.664,0.854,1.675,0.883,0.515,0.812,0.754,1.399,1.129,0.649,1.432,0.712,0.604,1.0,1.582,0.698,1.188,1.267,0.999,1.138,0.97,0.866,1.0,1.227 +NM_005053,0.763,1.12,0.962,0.78,0.728,1.022,0.664,0.565,0.974,0.94,0.642,0.915,0.859,0.539,0.829,1.259,0.833,0.726,1.106,0.865,0.657,0.947,1.398,1.24,0.762,0.893,1.047,0.777,0.458,0.959,0.952,1.299,2.444,1.468,0.206,1.171,0.679,0.889,1.819,1.337,1.028,1.052,0.48,2.064,1.134,0.615,0.712,0.814,0.891,1.007,0.855,1.416,0.956,1.884 +NM_005055,1.057,1.055,0.975,0.966,1.067,1.138,0.956,1.026,0.998,0.94,1.159,0.905,0.858,0.845,0.959,0.985,0.968,1.047,1.107,0.975,1.025,1.095,1.084,1.001,1.036,0.899,0.904,1.003,0.926,1.04,0.985,0.937,0.993,1.07,1.084,1.033,0.951,1.064,1.101,0.963,0.983,1.163,1.122,0.977,0.931,1.128,0.92,0.942,0.978,1.1,1.033,1.022,1.17,0.994 +NM_005056,0.553,0.712,1.835,0.462,0.963,0.779,0.766,0.467,1.237,1.126,0.842,0.829,0.409,0.689,0.872,1.056,0.917,1.038,1.146,1.127,0.65,0.708,1.15,0.81,0.466,0.614,1.299,0.914,0.388,1.149,0.893,1.017,2.483,1.142,0.432,1.42,1.02,0.887,0.99,1.457,1.054,1.054,0.69,1.062,0.999,0.954,1.239,0.574,0.766,0.736,1.059,1.156,1.046,1.246 +NM_005058,1.017,0.987,1.002,1.138,0.972,1.138,0.86,0.922,1.02,0.942,1.224,1.043,1.098,1.081,0.844,0.988,0.92,1.015,0.997,0.893,1.102,0.923,0.896,0.916,0.892,0.991,1.009,0.992,0.82,1.038,0.83,0.968,1.032,1.086,0.983,1.008,1.03,1.02,1.001,1.013,0.988,1.098,1.094,1.099,1.034,1.016,0.857,0.953,1.014,1.041,0.938,1.02,1.139,0.938 +NM_005059,1.06,1.136,1.067,1.14,0.947,0.944,0.935,1.202,0.992,0.973,0.941,0.943,0.94,0.895,1.163,1.057,0.93,1.233,0.887,0.938,1.105,1.022,1.088,0.881,1.018,1.09,1.008,1.133,0.692,1.221,0.996,1.003,1.032,0.981,0.867,0.961,1.101,0.916,0.964,1.065,0.902,0.984,1.043,1.019,1.16,1.035,1.046,0.923,0.983,0.961,0.963,1.329,0.977,1.184 +NM_005060,1.087,1.104,0.971,0.965,0.986,1.059,0.789,1.055,0.938,0.85,0.95,0.771,0.972,0.996,1.207,0.902,0.946,0.889,0.902,1.108,1.072,1.238,0.931,1.001,1.06,1.052,0.948,0.962,1.033,1.172,1.015,1.111,0.921,1.12,0.869,0.9,0.932,1.042,1.018,0.843,0.963,1.201,1.115,1.165,0.931,0.931,0.918,0.905,0.863,0.979,1.059,0.811,1.044,1.043 +NM_005061,1.033,0.981,1.056,1.049,1.056,0.924,1.132,0.918,0.936,1.167,1.007,0.965,1.044,1.234,1.022,1.252,0.948,0.88,0.948,0.992,0.932,0.909,1.099,1.192,1.002,1.033,1.243,1.026,1.813,1.043,0.934,1.025,1.07,1.134,1.036,0.968,1.018,1.046,0.991,1.017,1.058,1.01,0.956,0.792,0.912,1.092,1.066,1.009,1.05,1.015,0.916,1.148,0.997,0.926 +NM_005063,0.841,0.566,1.547,0.729,1.335,1.154,0.46,0.844,1.656,1.427,0.975,1.203,0.383,0.794,1.051,1.854,0.775,1.471,2.382,0.577,0.448,0.931,1.528,1.572,0.406,1.392,1.836,1.108,0.17,1.841,1.648,2.456,1.819,0.912,0.511,1.079,1.727,1.327,0.634,1.041,1.134,0.313,0.36,0.918,1.248,1.151,1.181,1.055,0.536,1.522,1.618,0.69,0.932,0.44 +NM_005064,0.964,1.037,1.047,0.953,1.037,1.138,1.127,1.025,0.874,0.995,0.935,1.056,0.893,0.954,1.562,0.999,1.011,1.028,0.785,0.947,0.984,1.152,0.971,0.833,0.873,1.188,1.15,0.979,1.092,1.094,1.097,0.985,0.997,0.926,0.949,1.012,1.036,0.862,1.109,1.073,1.087,1.207,1.184,0.944,1.001,1.113,0.973,1.007,0.92,1.061,1.002,1.053,0.966,0.961 +NM_005065,0.881,1.17,0.96,1.028,0.763,1.024,0.89,0.9,0.964,0.783,0.973,0.769,0.874,0.772,0.844,1.064,0.938,0.864,0.876,1.168,0.815,0.815,1.04,0.99,1.468,0.897,0.936,0.842,0.899,1.211,0.813,1.164,0.914,1.085,0.905,1.16,1.294,0.825,1.082,0.926,0.839,1.31,1.012,1.001,0.951,1.087,0.995,0.785,1.125,0.846,1.255,1.07,0.88,1.215 +NM_005066,0.657,0.787,1.486,0.618,0.997,1.342,0.869,0.711,1.298,0.981,0.661,1.075,0.85,0.602,0.989,1.693,0.94,0.967,0.99,1.003,0.567,1.183,1.3,1.316,0.549,0.686,1.791,0.842,0.662,1.096,1.246,1.292,3.745,1.093,0.428,0.664,0.978,1.091,1.775,0.894,1.035,1.194,0.661,0.766,1.316,0.915,1.013,0.839,1.38,1.005,1.29,0.874,0.637,1.656 +NM_005067,0.999,0.693,1.385,0.656,0.952,1.045,0.372,0.931,1.524,1.187,0.863,0.983,0.829,1.026,1.163,1.186,0.988,1.066,2.064,0.895,0.73,1.326,0.79,1.686,0.52,1.219,1.444,1.07,0.48,1.214,1.308,0.941,1.576,1.101,0.295,0.581,0.845,1.18,1.084,0.656,1.17,0.763,0.513,0.908,1.066,0.852,0.846,1.184,0.578,1.003,0.791,0.572,2.104,1.133 +NM_005069,0.945,1.233,1.448,0.968,0.945,1.091,0.82,0.638,1.857,1.067,1.186,0.926,0.957,1.079,1.138,1.342,1.11,0.784,1.068,1.372,0.829,0.983,1.262,0.926,0.708,1.099,0.998,1.17,1.179,1.412,1.411,0.666,0.925,1.352,0.584,0.894,1.326,0.932,1.032,0.877,1.338,1.424,0.773,0.873,0.999,0.765,0.665,0.764,0.856,0.989,1.043,0.742,1.216,0.903 +NM_005071,0.854,0.891,0.997,0.826,0.977,1.044,0.984,0.808,0.922,0.783,1.089,0.859,0.922,0.938,1.083,1.16,0.84,1.13,1.003,1.026,1.015,1.041,1.023,1.092,1.08,0.951,1.129,1.004,0.769,0.958,1.084,1.013,1.023,1.051,0.899,0.862,0.809,0.974,1.002,0.761,1.006,0.982,1.264,1.005,0.779,1.065,0.937,1.077,1.015,1.051,0.998,1.379,0.899,0.949 +NM_005072,0.921,1.306,1.031,0.91,0.931,0.924,0.984,0.666,0.852,1.18,0.989,0.772,0.739,0.955,0.967,0.861,0.965,0.918,0.881,0.962,0.749,0.866,1.299,0.89,0.895,1.086,1.072,0.772,0.827,0.926,0.75,3.297,1.355,1.443,0.656,1.047,0.935,1.004,1.645,1.484,0.96,1.187,0.875,0.953,1.18,0.961,0.99,0.812,1.037,0.996,1.046,1.547,1.14,1.829 +NM_005074,0.981,1.169,1.068,0.96,1.081,0.899,1.169,1.099,1.033,0.99,1.06,0.84,0.922,1.038,1.072,1.05,0.966,0.945,0.928,1.104,1.019,1.026,0.938,1.055,1.032,0.929,0.982,0.981,1.091,1.071,1.017,1.074,0.968,1.125,1.077,0.764,1.087,0.952,0.947,0.998,0.925,0.964,1.112,0.895,1.104,0.985,1.038,1.026,0.942,0.998,0.832,0.941,1.08,0.861 +NM_005075,0.979,1.026,1.008,0.94,0.977,0.989,0.85,1.176,1.044,1.108,1.097,1.089,0.951,1.025,1.043,1.052,0.973,0.9,0.967,0.981,1.195,1.126,0.896,0.95,1.011,1.092,0.893,1.11,1.001,1.085,0.938,1.041,0.925,0.96,1.126,1.076,0.897,1.126,1.044,0.982,1.01,0.982,1.147,0.962,1.059,0.914,1.003,0.812,1.048,0.933,0.968,1.031,1.103,1.035 +NM_005076,1.009,0.864,0.905,1.012,1.0,1.018,1.109,0.944,1.08,1.002,0.83,1.062,0.844,1.019,0.974,1.121,1.024,0.963,0.915,1.139,1.007,1.078,1.055,0.952,0.912,0.969,0.959,0.924,1.167,1.092,1.107,0.909,1.141,1.159,1.025,1.021,0.989,1.112,1.022,1.044,0.84,1.2,0.913,1.044,0.964,0.9,0.922,0.963,0.967,0.87,0.971,0.963,1.004,1.085 +NM_005077,0.754,1.097,0.927,0.793,0.718,1.145,0.876,0.584,0.932,0.703,1.22,0.699,0.632,0.776,1.071,1.228,0.756,0.774,0.924,1.104,0.609,0.688,1.81,0.9,0.876,0.681,0.954,0.835,0.79,1.348,0.794,1.874,1.643,1.475,0.558,0.818,1.145,0.795,1.273,1.095,0.77,1.256,1.29,1.235,0.738,1.254,0.874,0.727,1.365,0.773,1.299,0.968,0.706,1.55 +NM_005079,0.952,1.154,1.041,0.954,0.839,1.002,0.884,0.934,1.007,0.997,1.209,0.995,0.91,0.861,1.0,1.195,0.855,0.875,0.839,1.065,0.859,0.945,0.962,0.925,1.01,1.071,0.978,0.967,0.699,0.98,0.966,0.951,0.751,1.072,0.782,1.0,0.978,0.975,1.151,0.988,1.11,1.201,1.376,0.901,0.949,1.298,0.967,0.929,1.141,0.85,1.132,0.907,0.779,1.053 +NM_005080,0.252,1.611,0.707,0.745,0.428,1.905,1.13,0.309,0.652,0.451,1.501,0.434,0.367,0.288,0.669,1.344,0.614,0.979,0.732,1.238,0.229,0.385,1.348,0.657,0.912,0.297,0.532,0.556,0.474,1.728,0.412,0.888,1.303,1.852,0.0794,1.061,1.783,0.46,0.985,0.706,0.724,1.972,1.099,0.591,0.523,1.471,0.77,0.223,1.798,0.344,1.579,0.68,0.404,1.554 +NM_005081,0.885,0.957,1.084,0.929,1.035,0.955,0.951,0.605,0.889,1.179,0.906,0.987,0.856,0.753,0.91,0.938,0.928,0.934,1.092,0.811,0.901,0.999,1.233,1.01,0.807,1.009,1.417,0.85,0.852,1.048,0.933,1.536,2.016,1.173,0.608,1.17,0.761,0.997,1.358,1.519,0.951,1.082,0.893,1.414,1.017,0.906,0.854,0.87,0.858,1.001,1.109,0.916,1.184,2.628 +NM_005082,0.918,0.941,1.061,0.962,1.015,0.998,0.821,0.835,1.025,0.991,1.001,0.856,0.973,1.089,0.992,0.909,1.241,0.953,0.912,0.901,0.995,0.86,0.892,1.009,0.921,1.035,0.983,1.017,0.903,1.07,0.963,1.031,0.867,1.015,1.042,0.941,0.942,0.944,1.096,1.162,0.931,0.963,1.165,1.163,1.038,0.798,0.877,1.16,0.967,1.044,1.036,1.033,1.009,0.909 +NM_005083,0.998,0.993,0.919,0.912,1.228,1.07,1.067,0.929,1.052,0.954,0.945,0.978,1.078,0.947,1.263,1.117,1.031,1.002,1.054,1.121,1.176,0.975,1.171,0.759,0.991,0.802,1.342,0.979,1.366,0.978,0.979,1.232,1.026,1.007,0.805,1.175,1.231,0.937,1.091,0.92,1.065,0.978,1.2,1.162,0.994,0.888,1.05,1.057,0.889,1.16,0.983,1.018,1.045,1.128 +NM_005084,0.776,1.243,0.859,0.778,0.827,1.058,1.334,0.808,0.859,0.81,0.943,0.858,0.84,0.901,0.805,1.059,0.807,0.964,0.872,1.004,0.919,0.884,1.241,0.833,0.871,0.824,1.146,0.736,0.764,1.184,0.774,1.589,1.022,0.888,0.881,1.153,1.039,0.847,1.732,1.403,0.985,1.082,0.881,0.89,0.915,1.204,1.354,0.866,1.069,0.939,0.915,2.893,1.296,3.483 +NM_005085,1.059,0.912,0.964,0.793,1.227,0.856,0.571,0.737,1.077,0.849,0.83,0.964,0.701,0.704,0.797,0.819,0.886,0.844,1.01,0.764,0.815,1.115,0.909,1.168,0.827,1.343,1.149,0.989,0.63,1.011,0.974,1.333,2.138,1.043,1.115,1.0,0.965,1.169,1.733,1.789,1.142,1.082,0.572,1.221,1.017,0.712,0.883,1.216,0.928,0.969,0.825,1.131,0.8,1.631 +NM_005086,0.916,0.959,0.978,1.045,0.98,1.009,0.999,1.064,1.253,1.304,1.173,1.025,0.933,1.4,1.257,0.935,0.919,1.031,0.866,1.064,0.949,1.054,0.905,1.099,1.015,0.905,0.936,0.933,2.162,1.185,1.186,1.358,1.044,0.995,0.927,0.98,0.899,0.907,1.059,0.85,1.155,0.912,0.951,0.993,0.948,0.896,0.921,0.914,0.917,0.83,1.02,0.951,0.957,1.045 +NM_005087,0.688,1.184,1.346,0.618,0.956,1.057,0.487,0.605,1.198,0.902,1.102,0.934,0.693,0.859,0.994,1.206,1.035,0.741,1.324,0.877,0.695,1.01,0.98,1.115,0.643,0.734,1.589,0.806,0.375,1.32,0.974,1.899,2.642,1.255,0.363,0.788,0.949,1.185,1.21,0.793,1.154,1.227,0.529,1.175,0.76,0.924,1.125,0.701,0.792,0.774,0.912,0.849,1.062,2.22 +NM_005088,0.799,0.888,1.189,0.97,0.802,1.04,0.741,0.483,1.201,0.859,1.034,0.574,0.647,0.84,1.062,1.574,1.109,0.748,0.887,0.816,0.473,0.675,1.212,1.036,0.73,0.762,1.451,0.719,0.381,1.07,0.999,1.345,1.321,1.264,0.471,0.707,1.104,0.681,1.172,0.824,0.785,1.11,0.81,0.725,0.943,1.066,0.771,0.71,1.064,0.769,0.991,0.818,0.976,1.424 +NM_005089,0.878,0.98,1.087,0.99,1.056,0.92,0.96,1.09,0.996,1.014,0.871,1.095,0.896,0.941,0.829,1.039,1.041,1.104,0.888,1.248,0.901,1.04,1.045,1.002,0.945,0.919,0.962,0.992,0.963,1.031,1.037,1.188,1.093,1.114,1.031,1.003,0.946,1.015,1.018,1.076,1.068,0.916,0.978,0.976,1.05,0.971,0.936,0.959,0.939,0.911,0.936,0.827,0.999,1.094 +NM_005090,3.961,0.441,5.034,1.154,7.429,0.516,0.56,2.304,6.255,12.54,0.508,4.618,1.778,1.97,4.334,1.049,1.265,1.763,3.933,0.693,2.182,3.701,0.607,5.154,0.467,4.122,5.359,3.595,0.482,0.459,5.492,0.913,0.781,0.524,2.865,0.709,0.538,4.563,0.469,0.74,1.609,0.59,0.432,0.497,8.971,0.58,3.386,4.44,0.556,2.892,0.896,1.046,1.508,1.953 +NM_005091,1.028,0.833,1.069,1.053,0.942,0.905,0.954,1.022,0.972,0.887,0.985,0.905,1.068,0.819,0.746,1.076,0.953,1.082,1.111,0.963,1.055,0.92,1.008,1.05,0.998,1.021,0.904,0.994,0.954,0.87,1.012,0.922,1.026,0.878,1.006,1.063,0.929,0.891,0.994,1.385,0.959,0.882,0.867,1.074,1.066,1.079,1.003,1.004,0.93,0.878,0.975,1.247,1.019,1.034 +NM_005092,1.048,1.157,0.905,1.0,1.033,0.927,0.958,1.033,1.01,1.045,1.06,0.856,1.014,0.918,0.985,0.893,1.04,1.108,1.089,0.898,0.997,0.855,1.02,1.026,1.11,0.973,0.99,1.017,1.283,1.169,1.048,1.007,0.853,0.91,0.806,1.104,0.949,1.081,0.817,1.031,0.989,0.897,1.005,0.896,0.965,0.787,0.996,0.969,1.057,1.012,0.904,1.16,1.069,1.124 +NM_005093,0.941,0.842,1.128,0.758,0.885,0.929,0.687,0.693,1.214,0.728,0.912,0.725,0.645,0.985,1.068,0.965,0.929,0.864,0.969,1.144,0.814,0.822,1.332,1.133,0.789,0.969,1.178,0.929,0.584,0.972,0.961,1.5,1.893,0.868,0.728,0.845,0.967,0.824,1.048,1.194,1.08,1.13,0.857,1.059,0.998,0.931,1.162,0.856,0.896,0.852,1.116,0.779,1.04,1.995 +NM_005094,1.051,1.124,1.016,0.964,0.865,1.001,0.909,0.823,1.122,1.095,1.079,0.914,0.946,1.132,0.965,1.188,1.054,0.926,1.312,0.912,1.104,0.936,0.823,1.172,0.947,0.974,1.087,0.948,0.962,0.954,1.063,0.943,0.925,0.902,0.945,0.844,1.103,1.112,1.134,0.984,1.044,1.01,1.152,0.973,1.182,1.065,0.899,1.04,0.934,1.184,1.016,1.028,0.886,0.907 +NM_005095,0.916,1.205,1.132,0.866,0.821,1.351,0.839,0.835,0.947,0.932,1.169,0.788,0.896,0.701,1.026,1.459,0.834,1.044,1.05,1.083,0.831,0.974,1.295,0.971,0.85,0.763,1.091,0.906,0.98,1.284,0.882,1.58,1.982,1.508,0.729,0.819,1.336,0.914,1.103,0.878,0.942,1.336,0.83,1.213,0.858,0.972,0.936,0.857,0.927,0.84,1.115,0.867,0.885,1.512 +NM_005096,0.836,1.336,1.538,0.646,1.015,0.843,0.674,0.409,1.048,1.002,0.908,0.846,0.54,0.971,0.938,0.801,0.95,0.992,0.802,1.206,0.638,0.86,1.151,0.73,0.781,0.728,1.225,0.847,0.568,1.519,0.875,2.15,1.552,1.376,0.316,0.814,0.829,1.201,1.098,1.187,1.167,1.153,0.635,1.476,0.858,0.727,0.956,0.664,0.742,0.853,0.979,0.903,0.958,1.289 +NM_005097,1.178,1.004,0.938,0.955,0.994,1.121,0.958,0.916,0.859,0.903,1.028,1.03,0.95,0.916,1.016,1.047,0.893,0.899,1.026,1.031,0.997,1.008,1.025,0.929,0.981,1.124,0.974,1.164,0.956,0.994,0.901,0.859,1.024,1.402,0.996,1.006,1.126,0.955,0.946,0.973,1.177,1.25,1.159,1.03,1.034,0.989,0.92,1.067,1.135,0.993,1.096,1.168,0.9,0.853 +NM_005098,0.68,1.259,1.21,0.759,0.728,1.176,1.055,0.704,0.854,0.821,0.995,0.842,0.767,0.673,0.988,1.143,0.986,0.744,0.824,0.861,0.587,0.664,1.519,0.897,0.881,0.657,0.884,0.937,0.593,1.864,0.996,6.749,1.3,2.517,0.806,1.003,1.08,0.649,1.592,4.431,1.001,1.496,0.988,0.879,0.704,1.141,0.869,0.701,0.856,0.828,1.49,1.66,0.971,1.565 +NM_005100,1.011,0.902,1.075,1.177,1.059,0.978,0.951,1.058,0.982,0.99,1.163,0.951,0.962,0.93,1.025,0.968,1.001,0.902,1.084,0.981,0.946,1.026,1.062,0.987,1.056,1.007,0.984,1.047,0.772,1.171,1.117,1.203,0.994,1.024,1.112,1.08,0.986,0.938,0.966,0.993,0.934,1.129,0.942,0.966,0.953,1.053,1.009,0.891,1.063,0.976,1.015,1.023,1.137,0.999 +NM_005101,0.553,2.39,0.648,0.554,0.355,2.447,3.737,0.292,0.438,0.3,1.812,0.123,0.154,0.16,1.047,1.973,1.019,1.951,0.191,0.874,0.373,0.121,2.262,0.188,0.359,0.213,0.315,0.284,0.454,1.564,0.293,1.291,6.097,1.733,0.631,1.704,2.328,0.174,3.654,1.733,0.478,1.352,0.65,5.209,0.27,0.688,1.667,0.721,0.634,0.288,0.836,3.143,0.538,9.581 +NM_005102,0.521,0.999,0.991,0.714,0.757,1.608,0.635,0.708,0.907,0.627,1.81,0.702,0.593,0.608,1.131,2.338,0.582,0.747,1.205,1.052,0.561,0.685,1.31,0.901,0.571,0.705,1.068,0.78,0.435,1.316,0.719,1.243,2.165,1.772,0.187,0.853,1.143,0.772,1.383,1.194,0.869,1.362,0.711,1.138,0.762,1.195,0.85,0.585,0.903,0.572,1.156,0.828,1.016,2.013 +NM_005103,1.767,2.292,1.7879999999999998,2.038,1.81,2.165,1.913,1.762,1.6640000000000001,1.846,2.231,1.834,1.7930000000000001,1.613,2.0469999999999997,2.075,1.968,1.925,1.7000000000000002,1.76,2.028,1.702,2.184,1.6720000000000002,2.125,1.768,2.306,1.8940000000000001,1.389,2.7359999999999998,1.71,5.345,2.508,2.983,1.629,2.138,1.822,1.7759999999999998,2.2640000000000002,2.311,2.181,2.554,1.675,1.726,1.863,1.978,2.203,1.754,1.876,1.896,1.9649999999999999,2.831,2.782,2.592 +NM_005104,0.926,0.93,1.067,0.993,0.704,1.112,0.562,0.458,1.08,0.873,0.897,0.858,0.594,0.701,0.863,1.043,1.072,0.755,0.985,0.747,0.635,0.702,0.984,0.99,0.815,0.902,1.443,0.628,0.343,1.071,0.901,1.605,1.98,1.433,0.529,1.059,0.886,0.871,1.767,1.649,0.901,1.08,0.805,1.305,0.816,0.866,0.771,0.66,1.003,0.948,0.945,0.734,1.014,1.805 +NM_005105,1.059,0.986,0.979,0.791,1.033,1.013,0.795,1.069,1.234,0.869,1.005,0.943,0.995,0.852,0.986,1.152,0.939,0.891,1.035,0.924,0.933,0.873,0.837,1.044,0.969,1.017,0.945,0.977,0.742,0.938,1.079,0.96,1.091,1.093,0.987,1.017,1.058,0.983,1.112,1.025,1.096,1.026,0.867,1.01,0.966,0.816,0.903,1.129,0.976,0.958,0.962,0.78,1.067,1.225 +NM_005107,0.936,1.077,0.978,1.026,0.988,0.992,0.81,0.952,1.005,0.92,1.121,0.78,1.063,1.03,0.746,0.958,0.941,0.995,0.943,1.063,0.983,0.716,0.946,0.907,0.975,1.114,1.079,0.991,1.114,1.014,1.106,1.189,1.144,1.123,1.179,1.088,1.211,0.939,0.871,0.918,0.914,1.014,1.218,0.986,0.963,1.055,1.051,0.818,1.229,1.115,1.118,0.932,1.063,0.989 +NM_005110,0.973,0.769,1.027,1.005,1.092,0.825,0.925,0.975,1.108,1.81,0.8,1.221,1.034,1.0,0.981,1.073,0.896,0.94,1.037,0.946,0.949,0.919,0.891,1.178,1.0,0.878,0.974,0.975,0.897,0.94,1.072,3.174,1.761,1.015,0.961,0.92,0.808,0.865,0.978,3.531,1.104,1.073,1.059,0.717,1.249,1.079,1.019,0.957,0.812,1.116,1.081,1.289,1.148,1.01 +NM_005111,0.785,1.027,1.194,0.865,0.945,1.129,0.739,0.638,1.158,0.871,1.098,0.619,0.702,0.785,0.912,1.63,0.83,0.926,1.078,0.893,0.701,0.711,1.133,0.851,0.818,0.89,1.162,0.995,0.695,1.146,0.923,1.023,1.798,1.433,0.628,0.806,1.081,0.898,1.248,0.784,1.064,1.068,0.798,0.96,1.08,1.04,0.974,0.828,0.763,0.854,0.989,0.683,0.956,1.106 +NM_005112,0.505,0.943,0.937,0.748,0.905,1.56,0.851,0.547,1.005,0.96,1.265,0.791,0.442,0.515,1.155,2.067,0.688,1.204,0.959,1.397,0.37,0.852,1.343,1.03,0.621,0.796,0.949,0.839,0.799,1.534,0.944,1.347,1.186,1.614,0.352,0.669,1.795,0.837,1.548,0.968,0.967,1.388,0.905,0.974,0.988,1.431,1.166,0.884,1.757,0.563,1.506,0.885,1.042,0.977 +NM_005113,0.778,1.108,1.056,0.867,0.849,1.302,0.626,0.607,1.158,0.852,1.001,0.593,0.633,0.661,0.951,1.313,0.772,1.042,1.059,1.119,0.466,0.834,1.141,0.982,0.745,0.925,0.964,0.802,0.591,1.439,0.923,1.388,1.244,1.48,1.11,0.876,1.132,0.833,1.698,0.691,0.935,1.215,0.575,1.705,0.945,1.129,0.885,0.939,0.933,0.87,1.008,0.683,0.84,0.869 +NM_005114,1.233,0.973,3.745,0.915,1.77,0.689,0.586,1.089,2.162,1.753,0.671,0.532,2.028,1.013,0.823,0.729,3.573,0.829,2.122,0.927,0.853,0.995,0.648,1.792,0.5,0.772,5.255,1.272,0.307,0.652,2.285,0.697,1.825,0.841,1.476,0.694,0.73,0.879,1.671,0.807,1.925,0.747,1.589,1.281,1.531,1.176,1.766,1.005,0.819,1.74,1.112,1.785,2.55,1.343 +NM_005115,0.28,1.282,0.641,0.795,0.31,2.402,0.973,0.2,0.33,0.432,1.233,0.279,0.277,0.214,0.812,2.447,0.569,0.99,0.43,1.471,0.3,0.42,2.045,0.387,0.83,0.286,0.728,0.219,1.183,1.971,0.313,1.768,2.432,1.854,0.174,0.848,1.825,0.387,3.778,1.54,0.432,2.209,1.089,1.26,0.51,1.517,0.997,0.353,2.653,0.507,1.436,0.713,0.344,1.641 +NM_005116,1.061,1.077,0.963,0.972,1.014,0.997,0.905,1.17,1.053,1.2,0.987,0.971,0.921,0.965,0.898,1.012,1.03,0.947,0.899,0.91,1.064,0.871,1.098,0.918,1.026,1.042,1.059,0.999,0.963,1.149,0.915,1.12,1.039,1.172,0.978,0.934,1.096,0.912,1.175,0.983,1.02,0.968,0.79,0.974,0.955,0.999,1.019,1.001,0.878,1.058,0.972,0.968,0.902,0.992 +NM_005117,0.969,1.088,1.096,0.859,0.972,1.001,1.005,0.889,0.988,1.105,0.887,1.037,1.032,1.016,1.004,0.911,0.932,1.045,0.806,1.138,0.829,0.966,0.981,0.99,0.99,1.024,0.935,1.026,1.343,1.013,0.842,1.111,2.419,1.072,0.975,0.941,1.0,1.051,0.939,1.115,1.067,1.0,1.168,0.934,0.957,0.925,0.808,1.169,0.987,0.908,1.028,0.928,0.967,0.977 +NM_005119,1.009,1.08,1.14,1.082,0.959,1.03,0.78,0.92,0.999,1.117,0.932,1.012,0.909,0.979,1.264,0.906,1.11,0.969,0.756,1.0,0.969,0.996,0.899,1.184,1.079,1.14,1.032,0.968,0.83,1.051,1.001,0.933,1.024,1.006,1.128,0.958,0.987,1.051,1.003,0.989,1.133,0.943,0.866,1.083,0.975,0.885,1.141,1.272,0.989,1.094,1.097,0.917,1.0,1.065 +NM_005120,0.917,0.999,1.178,0.836,0.848,0.906,0.849,0.784,1.048,0.699,1.223,0.989,0.835,0.97,0.937,1.03,0.939,0.939,1.127,1.077,1.064,0.976,0.971,0.936,0.787,0.987,0.956,0.882,0.82,0.861,0.921,1.234,2.585,1.015,0.915,0.896,0.955,0.876,1.445,0.96,0.974,1.097,0.856,1.2,0.984,0.978,0.917,0.957,0.929,1.024,0.95,0.915,1.109,1.442 +NM_005121,1.031,0.833,1.123,0.864,1.098,0.771,0.901,0.856,1.327,1.106,0.996,0.937,0.906,0.983,1.082,0.901,1.035,1.046,1.109,0.909,0.861,0.877,0.931,1.18,0.77,0.969,1.11,1.101,0.67,0.818,1.093,1.043,1.28,0.849,1.452,0.872,1.103,1.233,1.109,0.891,0.997,1.057,1.08,1.322,0.904,1.028,1.208,0.958,0.952,1.003,0.824,0.995,1.158,1.162 +NM_005122,0.887,1.156,0.902,0.873,1.0,1.038,0.921,1.169,0.967,0.996,1.115,0.944,1.004,0.907,1.065,1.026,1.02,1.146,1.115,0.939,1.053,0.984,0.972,0.976,1.116,0.947,1.006,1.009,0.99,1.053,0.88,0.965,1.01,0.874,1.08,1.157,1.105,0.943,0.998,0.966,0.927,1.114,0.83,1.21,0.83,0.876,1.211,1.064,1.086,0.957,1.014,0.979,0.921,1.127 +NM_005123,0.908,0.96,0.815,1.14,0.755,1.162,1.029,0.846,0.926,0.887,1.255,0.922,0.888,0.868,2.67,3.708,0.913,0.815,0.987,2.142,1.027,1.009,2.494,0.97,1.054,0.938,1.008,0.941,0.86,1.04,0.947,1.312,0.842,1.088,0.894,0.797,2.777,0.875,1.13,0.914,0.881,1.749,1.631,1.052,0.864,2.052,1.101,0.911,2.811,0.781,1.159,1.305,0.887,0.949 +NM_005124,0.834,0.968,1.602,0.882,1.038,0.761,0.63,0.633,1.462,1.406,0.832,0.773,0.702,0.965,1.058,1.052,0.969,0.933,1.295,0.835,0.857,0.764,1.096,1.128,0.761,0.977,1.648,0.965,0.554,1.028,1.184,0.881,2.384,1.051,0.684,0.809,0.906,1.009,1.044,1.088,1.215,0.963,0.847,1.071,1.248,0.979,0.982,0.791,1.097,1.075,0.963,1.039,1.313,1.955 +NM_005125,0.819,1.152,1.005,1.033,0.699,1.278,0.727,0.551,0.84,0.883,1.283,0.669,0.686,0.629,0.835,1.378,0.807,0.967,1.002,1.182,0.741,0.76,1.281,0.823,0.948,1.069,0.916,0.705,0.479,1.435,0.78,1.531,2.071,1.527,0.434,1.031,1.064,0.806,1.429,0.825,0.812,1.448,0.998,1.207,0.905,0.98,0.985,0.829,0.805,0.856,0.979,0.799,1.048,1.215 +NM_005126,1.109,1.002,1.159,1.015,1.196,1.029,0.955,1.752,2.073,0.945,0.765,1.013,1.098,0.845,1.247,1.039,0.955,1.038,1.271,0.944,0.946,1.212,0.935,0.939,0.792,1.27,0.732,1.177,0.819,1.04,1.54,0.889,1.328,0.969,2.318,0.891,0.991,1.593,1.039,0.912,0.987,1.045,0.872,0.908,0.985,1.133,0.934,1.323,1.031,1.098,0.913,0.95,1.038,1.108 +NM_005128,0.862,1.098,1.172,0.856,1.056,1.303,0.821,0.804,1.212,0.771,1.202,0.646,0.639,1.155,1.18,1.063,0.928,1.225,1.245,1.184,0.675,1.007,1.198,0.967,0.865,0.774,0.891,0.954,1.139,1.451,1.186,0.727,0.745,1.372,1.122,0.545,1.312,0.927,1.35,0.655,0.995,1.197,0.765,0.713,0.806,1.257,0.824,0.853,0.739,0.945,1.104,0.539,0.811,0.672 +NM_005130,1.856,0.127,2.699,1.035,2.389,0.472,0.152,1.718,3.67,5.381,0.323,2.428,1.272,1.612,1.626,1.568,1.825,1.648,4.225,0.377,1.443,2.545,0.534,3.282,0.092,2.673,2.479,2.195,0.112,0.558,2.921,0.495,1.433,0.27,0.111,0.345,0.412,2.169,0.374,0.0982,2.769,0.197,0.377,0.454,3.239,0.565,1.602,2.3,0.332,2.115,1.138,1.277,5.12,1.08 +NM_005131,0.772,1.367,1.347,0.736,1.042,0.961,0.621,0.66,1.36,1.184,0.867,1.003,0.666,0.835,0.95,1.317,0.958,0.795,1.205,1.087,0.743,0.98,1.458,1.296,0.633,0.695,1.898,0.897,0.476,1.415,1.023,1.338,2.311,1.062,0.281,0.829,1.053,1.134,0.949,0.848,1.427,1.028,0.934,1.093,1.096,0.82,0.991,0.698,0.957,0.744,1.0,0.994,0.943,1.161 +NM_005132,0.895,0.852,1.078,1.799,0.991,0.87,2.139,0.859,1.014,0.926,0.882,0.779,1.052,1.226,0.908,0.784,0.954,1.006,0.756,1.023,1.002,0.891,1.265,0.914,2.732,0.958,0.945,0.78,1.819,0.926,0.863,1.037,0.856,1.242,0.926,0.855,0.99,0.927,0.93,1.167,0.901,0.938,1.217,0.931,0.867,0.941,1.031,0.937,0.824,1.005,0.995,0.809,1.208,2.289 +NM_005133,0.806,0.893,0.952,0.844,0.669,1.019,0.731,0.801,0.829,0.852,1.059,0.816,0.774,0.898,1.081,1.433,0.852,0.758,1.226,0.839,0.845,0.737,1.101,0.939,0.853,1.034,1.042,0.698,0.618,1.236,1.016,1.757,2.399,1.456,0.576,1.113,1.055,0.747,1.604,1.232,0.864,0.966,0.943,1.685,1.195,0.74,0.904,0.959,0.907,0.895,0.99,0.829,1.125,1.668 +NM_005134,1.229,0.822,2.144,0.678,1.575,0.917,0.334,1.788,2.169,1.281,0.601,1.479,1.174,1.135,1.471,1.795,1.601,1.086,2.701,0.6,0.7,1.541,0.564,1.9,0.292,1.096,1.924,1.294,0.308,0.848,1.735,0.92,1.607,0.854,2.385,0.296,0.713,1.452,1.006,0.487,1.889,0.573,0.605,0.576,1.663,0.69,1.293,1.931,0.708,1.545,0.774,0.81,1.451,1.111 +NM_005135,1.09,0.986,1.408,0.949,1.857,0.992,0.791,0.935,1.518,1.302,1.033,0.964,1.027,1.153,0.971,1.193,1.487,1.197,1.645,0.964,1.048,1.156,0.939,1.507,0.805,1.441,1.499,1.555,0.722,0.925,1.679,0.903,1.118,0.897,3.415,0.896,1.018,1.553,1.112,0.931,2.124,0.883,0.889,0.989,1.47,0.936,1.404,1.614,0.791,1.264,0.979,1.078,1.474,0.834 +NM_005137,0.995,1.209,0.974,0.846,0.751,1.376,0.663,0.642,0.97,0.845,0.975,0.662,0.696,0.748,0.751,1.213,1.034,1.067,1.072,1.053,0.949,1.059,1.068,1.065,0.875,1.167,1.158,0.719,0.696,1.349,0.888,1.358,1.452,1.396,0.349,0.628,0.943,1.133,1.498,0.874,0.874,1.309,0.742,0.892,0.936,0.91,0.91,1.005,0.687,0.985,1.158,0.736,0.851,1.177 +NM_005138,1.001,0.801,1.298,0.953,1.141,1.026,0.64,0.493,0.964,1.119,1.437,1.215,0.85,0.705,1.07,1.937,0.782,1.14,1.489,0.931,0.617,0.951,1.48,1.02,0.507,1.186,0.835,0.96,0.487,0.903,0.796,0.814,0.91,0.999,0.153,0.737,1.164,1.131,1.696,0.671,1.1,1.088,0.88,0.802,1.371,1.177,0.937,1.149,1.596,1.106,1.187,0.795,0.883,1.506 +NM_005139,0.447,1.298,1.051,0.649,1.201,2.42,0.978,1.1,1.422,0.945,0.631,0.545,0.655,0.538,0.908,1.936,0.715,1.635,0.656,1.592,0.218,1.146,0.99,1.629,0.453,0.6,0.552,1.116,0.621,1.116,1.434,1.797,2.157,1.788,0.313,0.36,0.854,1.19,2.759,0.76,0.739,1.017,0.367,0.575,1.042,0.823,1.168,1.056,0.793,0.384,1.467,1.023,0.336,1.214 +NM_005140,1.169,0.933,0.982,1.115,0.942,1.079,0.848,1.078,0.96,0.953,0.98,0.964,0.995,0.999,1.074,0.925,0.993,0.983,0.954,1.134,0.874,0.931,0.935,0.978,0.988,1.028,1.242,1.063,0.849,1.078,0.988,0.995,0.824,1.015,0.814,1.022,1.045,1.055,1.095,0.983,0.982,1.046,1.265,1.001,0.987,0.896,0.914,1.022,1.028,0.898,0.927,0.924,0.982,1.009 +NM_005141,0.881,1.116,0.994,1.007,0.987,1.055,0.869,1.0,1.0,0.943,0.995,1.031,0.911,1.145,0.859,1.1,1.076,0.902,0.992,0.914,1.036,0.967,0.927,0.936,1.503,1.02,1.131,1.153,0.932,1.086,0.79,1.05,1.083,0.999,0.905,1.082,0.967,0.865,1.122,8.497,0.988,0.791,0.983,0.986,1.111,0.896,3.614,0.989,1.101,0.991,0.905,0.941,1.059,0.966 +NM_005142,0.89,55.87,1.027,1.384,0.897,6.075,29.87,0.97,0.933,0.889,0.917,0.915,0.871,0.859,0.949,0.866,0.957,1.004,0.838,1.595,1.062,0.961,0.9,1.07,91.17,0.996,1.182,0.99,11.93,6.692,1.053,1.104,1.014,50.93,0.896,1.02,16.59,0.93,1.069,1.084,0.938,1.047,0.826,0.981,0.986,0.928,1.007,1.043,0.987,0.936,0.986,0.838,0.937,0.991 +NM_005143,0.935,0.941,1.291,1.076,0.814,1.18,0.952,0.888,0.814,0.962,1.006,0.838,0.853,0.964,1.034,1.243,1.716,0.76,1.063,0.889,1.003,0.806,1.257,1.152,0.894,0.805,14.78,0.967,0.708,1.083,0.975,8.306,0.858,0.909,0.848,0.845,1.252,0.924,1.025,1.224,0.933,1.49,1.096,1.142,0.917,0.877,0.918,0.918,1.213,14.62,1.036,1.162,1.118,0.971 +NM_005144,1.158,0.99,0.975,0.972,1.027,0.971,1.018,0.935,0.904,0.966,1.064,0.989,0.975,1.0,0.836,0.983,1.01,0.928,0.996,1.043,1.044,1.009,0.944,0.951,1.033,1.031,0.952,0.952,1.268,0.99,1.014,1.043,0.911,0.888,1.126,1.026,1.055,1.002,1.245,0.934,1.114,0.95,1.193,1.06,1.152,0.802,1.031,1.027,0.977,1.115,1.071,0.995,0.966,1.151 +NM_005146,0.508,1.002,0.925,0.598,0.739,1.218,0.692,0.495,1.061,0.933,0.587,0.817,0.58,0.706,0.693,0.976,0.755,0.938,0.848,1.053,0.887,1.187,1.282,1.057,0.632,0.856,1.076,0.777,0.784,1.138,0.875,1.745,2.642,1.46,0.437,1.563,0.828,1.078,1.747,1.161,0.883,1.425,0.53,1.421,0.707,0.901,0.756,0.998,1.067,0.671,0.945,0.823,0.69,1.425 +NM_005147,0.58,0.886,1.175,0.673,0.84,0.976,0.686,0.457,1.262,1.159,1.0,1.09,0.624,0.541,0.99,1.41,0.928,0.82,1.045,1.058,0.492,0.705,1.402,1.45,0.573,0.603,1.171,0.853,0.329,1.088,1.018,1.79,3.046,1.107,0.251,1.0,1.086,0.875,1.277,0.829,1.314,1.089,0.748,1.353,1.01,1.039,1.386,0.477,1.294,0.69,1.066,0.937,0.785,2.203 +NM_005148,0.667,1.254,1.141,0.592,0.929,1.36,0.839,0.688,0.964,0.841,1.0,0.917,0.708,0.713,0.824,1.071,0.978,0.777,0.985,1.165,0.55,0.727,1.221,0.836,0.757,0.846,1.584,0.839,0.79,1.661,0.873,2.284,1.079,1.09,0.972,1.258,1.24,0.995,1.034,1.544,1.064,1.241,0.851,1.119,0.918,1.223,1.276,0.786,0.802,0.939,0.873,1.137,0.983,1.785 +NM_005153,0.933,0.852,0.986,1.045,0.755,1.007,0.733,0.433,1.39,1.271,0.901,0.709,0.651,0.595,0.675,1.123,0.816,0.724,0.733,1.057,0.732,0.587,1.221,0.997,0.881,0.848,0.872,0.859,0.442,1.204,0.795,1.189,2.454,1.003,0.422,0.926,0.908,0.789,2.211,1.044,0.933,1.105,1.263,1.989,0.971,0.946,1.081,0.568,1.178,0.901,1.049,0.848,0.874,1.267 +NM_005154,0.654,1.048,1.2,0.686,0.914,1.288,0.698,0.668,1.408,0.895,1.24,0.711,0.661,0.925,1.076,1.681,0.908,0.951,1.311,0.926,0.649,0.835,1.676,1.066,0.649,0.713,1.182,0.908,0.606,1.192,1.127,0.896,1.738,1.414,0.723,0.726,1.029,0.931,1.308,0.698,1.13,1.209,0.729,0.793,0.875,1.101,1.0,0.693,1.265,0.827,1.009,0.688,0.937,1.649 +NM_005156,1.062,0.871,1.635,0.74,1.579,0.856,0.801,1.333,1.528,1.209,0.989,1.24,0.827,1.015,0.997,1.157,1.071,1.274,1.77,0.706,0.96,1.604,0.94,1.584,0.604,1.134,1.442,1.517,0.643,0.782,1.316,0.746,1.413,0.938,1.931,0.619,0.938,1.285,1.244,1.24,1.318,0.914,0.717,0.947,1.344,0.894,1.245,1.411,0.865,1.096,0.955,0.877,1.252,0.998 +NM_005157,1.02,0.971,0.938,1.014,1.024,0.955,1.139,1.082,0.773,1.033,1.019,0.973,0.844,1.101,0.855,1.139,0.955,0.983,0.993,1.069,0.771,0.968,1.137,1.087,0.879,1.076,1.012,0.979,0.883,1.095,0.941,1.014,0.911,0.94,1.037,1.189,1.001,0.871,0.913,0.987,1.095,1.073,1.095,0.977,1.0,0.744,1.051,0.976,0.986,1.012,1.012,0.954,0.99,1.158 +NM_005158,0.972,1.054,0.98,0.984,1.003,0.88,0.783,0.989,1.102,1.013,0.914,0.965,0.919,1.044,0.752,0.954,1.007,0.992,0.946,1.022,0.954,0.968,1.004,1.005,0.912,1.001,0.832,0.92,1.237,1.006,0.965,1.356,1.121,0.955,0.938,0.925,0.885,1.007,1.066,1.874,1.175,1.177,1.06,0.971,0.933,1.143,1.263,0.893,1.113,0.845,0.964,0.943,0.995,1.23 +NM_005160,0.823,1.034,0.885,0.893,0.943,1.066,0.947,0.891,0.956,0.963,0.951,1.003,0.963,1.03,0.952,1.094,1.009,1.055,0.842,1.034,0.919,0.957,1.03,0.921,1.035,0.943,1.17,1.029,0.921,1.033,1.12,1.075,1.028,0.889,1.02,0.921,0.83,0.912,1.024,1.111,1.094,0.877,1.136,0.923,0.917,0.925,1.007,0.957,0.909,1.027,1.034,1.224,1.039,1.206 +NM_005161,0.833,1.198,0.779,0.768,0.706,0.701,1.194,0.773,0.65,0.79,0.94,0.84,0.728,0.585,0.798,1.35,0.546,0.86,0.873,0.823,0.9,0.631,1.478,0.651,1.435,0.666,0.666,0.906,0.804,2.203,0.728,3.125,1.444,2.803,0.705,1.255,1.179,1.038,3.549,3.077,0.737,1.14,0.664,1.192,0.925,0.921,1.407,0.729,0.931,0.76,1.099,2.405,0.834,1.011 +NM_005165,0.821,1.047,1.613,0.7,1.246,1.211,0.837,0.719,1.853,1.27,0.825,1.161,0.562,0.873,1.044,1.244,0.816,1.192,1.265,1.166,0.764,0.847,0.675,1.37,0.833,0.977,1.261,1.442,1.159,1.41,0.886,0.735,1.461,1.767,0.799,0.679,1.069,1.1,0.48,1.276,1.398,0.702,0.579,0.976,0.971,0.73,1.58,0.736,0.345,1.111,0.777,0.557,0.986,0.292 +NM_005166,1.01,1.507,0.876,1.004,1.055,0.959,1.029,0.954,1.009,0.965,0.922,0.948,0.919,1.053,0.901,0.869,1.023,0.947,1.249,0.954,0.89,0.968,0.837,1.171,1.952,1.033,1.059,1.028,1.053,1.072,1.02,1.749,1.224,1.601,0.954,1.128,1.122,0.967,1.843,0.956,1.002,0.988,0.87,1.085,1.014,0.966,0.951,0.947,0.98,1.097,0.868,0.832,0.994,1.16 +NM_005167,0.949,1.003,0.973,1.062,0.976,1.067,0.841,0.93,1.125,1.1,0.918,1.045,0.941,0.741,0.808,0.95,1.097,1.031,1.055,1.035,1.003,0.95,1.069,1.081,0.934,1.081,0.764,0.94,0.751,0.903,1.05,0.963,1.054,0.909,1.004,1.051,0.955,1.149,1.139,1.121,1.133,0.936,0.843,1.112,1.061,0.813,0.987,0.999,0.879,1.054,1.02,0.951,1.186,1.045 +NM_005168,2.143,0.459,2.627,0.91,4.203,0.728,0.357,2.228,4.069,1.218,0.482,1.396,2.712,2.175,2.126,1.143,2.455,1.169,2.519,0.827,0.725,2.456,0.645,1.335,0.298,1.993,2.68,3.868,0.255,0.632,4.838,1.051,1.491,0.646,6.201,0.439,0.505,3.882,0.879,0.888,3.807,0.602,0.355,0.702,1.878,0.762,1.267,3.727,0.927,1.961,0.86,0.894,1.344,1.328 +NM_005170,1.085,1.148,0.867,1.001,1.106,0.89,0.814,0.829,0.937,0.938,1.111,0.885,0.958,0.852,1.049,0.822,1.096,0.965,0.949,1.013,0.723,0.978,1.04,0.906,1.019,1.04,1.025,1.012,0.777,1.133,0.816,0.88,1.122,1.021,0.883,0.939,0.886,0.952,1.038,1.104,0.968,1.059,0.801,1.536,0.901,0.898,0.965,1.12,0.936,1.039,0.956,0.907,0.938,1.146 +NM_005171,0.774,0.979,1.062,0.778,0.807,1.03,0.831,0.534,1.078,0.841,1.17,0.953,0.711,0.876,0.969,1.139,0.771,0.807,1.037,1.216,0.554,0.757,0.981,1.065,0.778,0.718,1.1,1.071,0.644,0.918,0.856,1.329,1.666,1.206,0.774,1.427,0.825,0.826,1.393,0.883,1.211,0.909,0.982,1.644,1.032,1.239,1.371,0.635,1.092,0.906,0.903,0.884,0.975,1.445 +NM_005172,0.909,1.054,1.133,1.014,1.078,1.004,0.906,0.971,0.923,0.948,1.118,0.985,0.91,1.309,1.049,1.0,0.934,1.098,1.145,1.121,0.988,1.08,1.154,1.107,1.072,0.971,1.027,1.0,1.716,0.96,0.864,0.859,0.968,1.04,1.07,0.935,0.923,1.044,1.072,0.969,1.054,1.027,1.489,0.949,0.889,1.003,1.061,0.884,1.081,0.947,0.943,1.005,0.99,0.996 +NM_005174,0.571,0.991,1.118,0.813,0.742,1.666,0.578,0.454,1.056,0.797,1.315,0.824,0.693,0.551,1.137,2.374,0.679,0.995,1.725,1.076,0.556,0.693,1.193,1.005,0.788,0.765,1.496,0.833,0.427,1.132,0.846,1.035,2.662,1.611,0.141,0.786,1.794,0.852,1.303,0.373,1.045,1.166,0.677,1.149,0.837,1.274,0.962,0.637,1.014,0.716,1.099,0.539,0.929,1.407 +NM_005175,0.648,1.163,0.833,0.727,0.862,1.317,0.745,0.471,1.176,1.059,1.231,1.421,0.863,0.429,0.822,2.276,0.725,1.279,1.314,1.012,0.427,0.825,1.468,1.182,0.84,0.985,1.025,0.804,0.461,1.03,0.711,0.952,0.933,1.002,0.0444,1.463,1.516,0.916,1.321,0.49,0.998,1.098,1.019,1.483,1.026,1.318,1.094,0.694,1.694,0.685,1.315,1.066,0.875,0.988 +NM_005177,0.595,0.901,1.312,0.573,0.926,1.037,0.687,0.26,1.076,1.25,1.256,0.576,0.331,0.645,0.978,1.392,0.819,1.095,1.111,1.363,0.389,0.626,1.24,0.738,0.375,0.762,1.402,0.672,0.411,1.336,0.867,1.686,2.19,1.118,0.193,1.122,1.168,1.102,1.876,0.866,0.99,1.232,0.96,1.009,1.163,1.574,1.287,0.609,1.17,0.948,1.206,1.005,1.072,0.973 +NM_005178,1.52,0.709,1.651,1.501,0.543,1.412,0.775,1.144,0.863,0.972,0.908,0.742,1.343,0.735,1.14,1.58,1.726,0.815,1.379,0.798,1.415,1.051,0.971,0.955,0.794,0.928,1.427,0.643,0.589,0.876,1.204,0.948,2.325,1.241,0.958,0.828,1.045,0.806,1.973,1.279,0.973,0.925,0.725,1.444,1.428,0.749,0.842,0.939,1.246,2.163,1.04,0.877,1.27,1.159 +NM_005180,0.774,1.313,0.992,0.769,0.72,1.065,0.833,0.616,0.889,0.849,1.295,0.736,0.693,0.662,0.988,1.47,0.727,0.743,0.912,0.899,0.61,0.826,1.179,1.032,0.873,0.798,1.149,0.932,0.456,1.374,0.865,1.862,3.125,1.255,0.576,0.919,1.26,0.942,2.077,0.839,1.083,1.401,0.687,2.369,0.777,0.99,1.167,0.734,1.098,0.765,1.002,0.914,0.841,3.388 +NM_005181,1.125,0.968,1.041,1.248,0.85,0.971,0.941,1.033,1.106,0.993,1.075,1.083,1.002,1.003,0.995,0.79,1.034,1.061,1.075,0.94,0.973,1.093,1.046,0.961,1.043,0.927,1.013,0.971,1.053,1.057,1.132,1.052,0.919,1.098,1.175,0.934,0.96,1.005,0.973,0.946,0.992,0.958,0.99,1.217,1.138,0.966,0.961,0.925,1.161,0.994,1.057,1.053,1.118,1.045 +NM_005182,1.022,0.989,0.854,1.104,1.096,0.973,1.039,1.011,0.972,0.85,1.14,0.943,0.995,0.839,1.596,1.134,0.983,1.026,0.792,1.129,0.97,0.981,1.035,1.016,1.004,1.052,1.098,1.031,1.221,0.954,1.066,1.093,0.904,0.989,1.044,0.979,1.071,0.903,1.046,0.865,1.053,1.186,0.849,0.957,1.024,1.119,1.039,0.986,0.864,0.92,1.091,0.929,0.907,1.027 +NM_005183,1.04,1.015,1.067,1.148,0.854,1.015,1.249,1.013,0.875,0.963,0.919,1.029,0.929,1.241,0.916,0.829,0.962,1.132,0.963,1.038,1.044,1.001,1.024,0.962,1.011,1.005,0.791,1.01,0.831,0.937,1.158,1.02,0.877,1.054,0.994,1.083,0.916,0.997,1.103,1.022,1.224,0.958,1.101,0.969,1.052,1.084,1.054,1.014,0.848,0.976,1.031,1.061,1.133,0.927 +NM_005184,0.738,1.0,0.671,1.389,0.673,1.172,0.729,0.683,0.72,0.69,1.01,0.698,0.641,0.479,0.768,1.356,0.832,1.063,0.689,0.932,1.158,0.614,1.323,0.672,1.172,0.901,0.807,0.75,0.735,1.223,0.676,1.05,1.555,1.347,0.466,0.759,1.15,0.637,1.819,0.891,0.851,1.117,0.986,1.401,0.717,1.085,1.035,0.702,1.189,0.744,1.111,0.781,0.794,1.088 +NM_005185,2.101,0.0188,4.468,0.96,4.434,0.0187,0.0208,2.989,4.04,3.483,0.0207,4.126,2.739,1.511,1.994,1.718,3.254,2.271,3.72,0.0453,1.785,3.146,0.02,3.512,0.0205,3.399,3.22,4.08,0.0171,0.0453,3.995,0.018,1.734,0.0208,0.402,0.0332,0.025,4.728,0.0464,0.0226,4.23,0.095,0.0214,0.0208,3.73,0.0209,2.945,3.514,0.101,3.184,0.984,0.942,3.096,0.577 +NM_005186,0.987,0.691,2.071,0.718,1.655,0.887,0.386,0.794,1.852,1.742,0.516,1.129,0.742,0.799,1.074,1.567,1.654,1.325,1.763,0.776,0.581,1.268,0.863,1.724,0.293,1.354,1.953,1.312,0.327,1.089,1.328,1.109,1.387,0.767,0.628,1.213,1.013,1.779,1.138,0.677,1.623,0.742,0.538,0.886,1.48,0.963,1.355,1.198,1.224,1.366,1.148,0.762,1.297,0.861 +NM_005187,0.928,0.933,1.125,1.116,1.0,0.995,1.121,1.135,0.95,0.973,1.147,1.071,0.98,1.15,0.963,1.05,0.988,1.13,0.928,1.025,0.93,0.867,0.998,0.962,0.925,1.0,0.807,0.912,1.175,0.953,1.113,0.991,1.047,0.895,1.005,1.005,0.966,1.03,1.025,0.985,1.057,0.937,0.877,0.884,1.189,1.046,1.029,1.035,0.974,1.086,1.063,0.995,0.962,1.003 +NM_005188,1.039,1.027,1.128,0.977,0.933,0.915,0.861,1.066,1.056,0.902,1.053,0.992,0.817,0.936,1.106,0.982,1.092,0.872,1.008,0.912,1.027,1.03,0.971,1.022,1.003,0.977,1.021,0.993,0.695,1.001,0.972,0.952,0.964,0.931,0.941,1.011,0.963,1.032,0.944,1.054,0.969,1.118,0.905,0.961,1.057,0.963,0.961,0.974,1.051,0.845,1.139,0.909,0.878,1.006 +NM_005190,0.798,1.165,1.119,0.644,1.282,1.286,0.725,0.909,1.57,0.843,1.183,0.626,0.893,0.764,1.197,2.027,0.807,1.185,1.404,0.886,0.516,0.821,1.131,1.071,0.639,0.76,0.928,1.355,0.572,1.211,1.523,0.541,1.216,1.288,1.305,0.626,1.321,0.998,1.293,0.648,1.337,0.932,0.7,0.73,1.058,1.037,1.054,1.06,1.137,0.739,1.044,0.608,0.649,1.823 +NM_005191,1.018,1.11,1.026,0.931,0.978,1.032,0.95,1.14,1.0,1.1,0.889,1.104,1.068,1.064,1.203,0.919,1.013,1.134,0.995,1.114,0.963,0.915,0.943,1.003,0.959,0.948,0.817,0.917,1.675,0.994,0.926,0.936,1.056,0.965,0.918,1.062,1.013,0.972,0.98,1.131,0.935,1.091,1.216,0.935,0.867,0.987,1.045,0.889,1.067,1.0,0.883,1.14,0.999,1.032 +NM_005192,0.5,0.851,1.233,0.985,0.962,1.435,0.955,0.786,0.959,1.006,1.325,0.987,0.95,0.671,0.869,2.606,0.827,1.12,1.551,0.821,0.799,0.765,1.984,1.088,0.545,0.592,1.855,0.66,0.573,0.972,0.868,0.902,5.767,1.019,0.317,2.677,1.301,0.842,1.945,0.756,0.992,0.741,0.89,2.905,0.832,0.981,1.529,0.777,1.567,0.618,1.489,0.886,0.793,2.468 +NM_005193,1.11,1.014,0.941,1.106,0.992,0.929,0.927,0.929,1.048,0.963,1.162,1.183,0.916,0.929,0.814,0.981,1.117,0.903,1.048,0.942,1.01,1.003,0.894,0.973,1.061,1.039,1.027,1.082,0.826,0.938,1.128,1.149,0.823,1.083,0.973,1.084,1.076,1.011,1.112,1.007,1.015,1.212,0.763,1.027,0.883,1.065,0.961,0.989,1.055,1.118,0.906,1.015,1.036,1.001 +NM_005194,0.897,0.927,1.38,0.911,1.02,0.684,0.424,0.49,1.441,1.688,0.789,1.117,0.737,0.561,0.855,0.823,1.048,0.808,1.201,0.655,0.552,0.854,1.158,1.377,0.456,0.841,1.683,0.91,0.318,0.837,0.969,4.136,1.59,0.915,0.251,0.892,0.618,0.698,2.323,5.546,1.226,1.025,0.842,2.84,1.711,0.962,1.325,0.846,0.713,1.849,0.859,2.897,2.144,2.441 +NM_005195,0.701,0.742,2.118,0.913,0.685,0.818,0.491,0.494,0.87,0.975,1.069,0.799,0.837,0.695,0.887,1.198,1.628,0.715,1.571,0.818,0.725,0.625,1.025,1.139,0.37,0.741,1.671,0.534,0.242,0.664,0.875,1.172,1.589,1.16,0.393,0.768,0.816,0.535,1.814,2.594,0.978,1.256,0.501,1.003,1.247,0.751,1.109,0.743,1.182,2.289,0.999,1.275,2.409,1.523 +NM_005197,0.7,2.099,1.388,0.671,0.839,1.44,0.984,0.654,0.887,0.796,1.355,0.695,0.854,0.615,0.784,1.005,0.763,0.815,0.882,1.412,0.635,0.828,1.494,0.757,1.413,0.72,1.186,0.848,1.201,2.185,0.88,2.509,0.903,2.028,0.921,0.703,1.224,0.881,1.863,1.33,0.944,2.068,1.03,1.824,0.829,0.856,0.721,0.845,0.876,0.983,0.899,0.709,0.812,0.89 +NM_005198,0.891,0.965,1.474,0.899,1.068,1.027,0.524,0.859,1.952,1.005,0.92,1.229,0.936,0.715,1.178,1.235,1.26,1.26,1.075,1.469,0.569,1.045,0.775,1.19,0.752,0.904,1.166,1.339,0.43,0.967,0.994,1.502,0.718,1.082,0.522,0.772,1.081,1.022,0.995,0.994,1.696,0.88,0.945,0.58,1.16,1.201,1.002,0.942,0.715,0.765,0.93,0.799,1.023,1.222 +NM_005199,1.211,1.099,1.052,1.005,1.008,1.015,1.171,1.117,1.05,0.909,1.007,1.107,0.964,1.258,0.96,1.041,0.917,1.066,0.966,0.95,1.019,0.944,0.924,0.994,1.044,0.89,1.163,1.153,0.992,1.01,1.017,1.033,1.138,0.976,0.971,0.977,0.885,1.116,0.854,0.949,1.146,0.896,1.043,0.952,1.074,1.128,0.879,0.911,1.053,1.177,1.031,0.821,0.998,0.936 +NM_005202,1.096,0.779,1.358,0.917,1.065,0.999,0.846,0.963,1.167,0.979,1.124,0.863,0.997,0.835,0.901,1.04,1.09,0.932,1.234,0.78,1.018,0.886,1.001,1.094,0.971,1.033,1.87,0.945,0.763,1.026,1.142,5.758,1.205,1.07,0.975,0.888,0.876,0.9,1.013,0.953,1.24,1.411,0.764,0.932,1.261,0.794,1.04,0.99,0.779,1.275,0.978,1.158,1.311,1.045 +NM_005204,0.966,0.969,1.932,1.113,0.845,1.003,0.713,0.722,1.118,0.695,0.744,0.693,0.734,1.498,0.951,1.08,1.229,0.968,1.299,0.873,0.748,1.104,0.867,1.003,0.633,0.732,1.75,1.046,0.662,0.976,1.167,1.019,1.444,0.968,0.801,0.998,0.966,0.927,1.344,1.864,1.172,1.083,0.948,1.013,1.216,0.699,1.07,1.064,0.934,1.34,0.934,0.995,1.382,2.165 +NM_005205,0.909,0.93,0.979,0.914,0.955,0.932,1.091,0.962,1.047,0.979,1.026,0.941,1.065,0.948,0.899,0.986,0.979,1.051,0.981,0.99,0.991,0.989,1.041,0.998,1.134,1.089,1.071,0.923,0.98,1.066,1.015,1.004,1.15,0.963,1.114,0.971,1.0,0.967,1.0,1.038,1.173,0.805,0.961,1.003,0.993,1.042,1.058,1.122,0.982,0.908,1.124,1.092,1.013,0.985 +NM_005206,0.765,0.866,1.114,1.02,0.963,1.167,0.669,0.763,1.173,0.947,1.342,0.767,0.751,0.952,1.091,1.518,0.98,0.851,1.064,0.911,0.722,0.606,0.964,0.878,0.72,0.714,1.009,0.878,0.436,1.419,1.085,1.398,1.188,1.45,0.633,0.757,0.964,0.712,1.037,0.891,1.144,0.996,1.094,0.947,0.853,1.15,1.061,0.747,1.343,0.86,1.036,0.774,0.926,1.567 +NM_005207,0.856,0.767,1.56,0.716,0.987,0.832,0.514,0.602,1.461,1.308,0.758,0.717,0.577,0.901,1.002,1.066,1.201,0.728,1.121,1.034,0.646,0.666,1.181,1.189,0.509,0.905,1.427,1.118,0.348,0.959,1.3,1.213,1.304,0.959,1.007,0.59,0.784,0.894,1.038,0.979,1.248,0.871,0.596,0.892,1.313,0.811,0.891,0.691,0.803,1.079,1.008,0.7,1.212,1.436 +NM_005208,0.864,1.077,1.052,0.897,0.704,0.914,0.899,0.995,1.073,1.011,0.994,0.941,0.872,1.172,1.041,0.888,0.923,1.031,1.092,0.928,0.898,0.97,0.968,1.011,1.015,1.037,0.821,0.96,0.895,0.886,1.094,1.098,0.802,1.214,1.091,1.019,1.11,0.999,0.959,0.953,1.068,1.074,0.841,1.001,1.03,0.823,0.915,1.007,1.036,1.02,0.855,1.083,1.03,0.841 +NM_005209,0.885,1.299,0.969,0.978,0.88,1.16,1.309,0.881,0.849,1.102,2.619,0.97,0.935,0.815,0.919,1.235,0.932,0.98,1.004,2.088,0.867,0.958,1.807,1.002,1.078,1.012,0.869,0.99,0.89,0.94,0.848,0.908,1.04,2.736,0.887,0.988,1.853,1.002,0.926,1.111,0.942,0.986,1.18,0.962,0.958,1.684,1.084,1.037,1.425,0.887,0.98,0.798,0.909,1.444 +NM_005211,0.692,1.248,1.983,0.526,1.156,0.954,1.371,0.402,0.914,0.758,0.684,0.557,0.553,0.676,0.939,0.82,0.739,0.622,0.792,0.801,0.625,0.901,1.14,1.005,1.016,0.746,2.111,0.889,0.53,2.38,0.977,3.119,1.018,2.016,0.359,0.476,0.816,0.955,1.351,1.555,1.269,1.631,0.535,0.639,0.893,0.716,0.733,0.603,0.485,0.716,1.1,2.002,1.548,2.525 +NM_005212,1.051,1.048,0.975,1.086,0.932,0.904,0.976,0.969,0.912,0.955,1.007,1.002,0.87,0.912,1.097,1.024,0.971,1.011,1.086,0.96,0.945,0.968,0.982,1.051,1.064,0.967,1.075,1.028,0.868,0.994,0.999,0.906,1.016,1.018,1.052,1.151,0.993,0.863,0.907,1.033,1.133,1.039,1.185,0.958,0.946,1.045,1.076,0.992,1.083,0.962,1.007,0.95,1.151,0.883 +NM_005213,1.719,0.0815,4.089,1.029,3.862,0.297,0.111,3.35,3.604,3.0,0.0902,2.731,2.505,1.212,2.493,2.695,2.524,2.758,2.318,0.242,1.097,3.368,0.0388,3.84,0.0545,1.867,2.461,2.98,0.0994,0.154,4.189,0.0372,2.447,0.237,2.532,0.0308,0.108,4.035,0.116,0.0574,2.753,0.067,0.0303,0.025,3.219,0.0456,2.144,4.052,0.368,2.747,1.745,0.887,1.279,0.887 +NM_005214,1.102,0.969,1.024,1.053,1.048,0.901,1.326,1.019,0.941,0.843,0.804,0.951,1.032,1.44,1.0,0.809,1.077,0.995,0.93,0.94,1.111,0.887,1.002,0.927,0.888,0.949,1.339,0.831,0.833,0.927,0.925,0.906,0.938,1.016,1.147,0.908,0.818,0.885,1.222,1.026,0.95,0.923,1.19,0.978,1.044,0.81,0.936,0.995,1.004,1.031,1.084,0.869,0.968,1.303 +NM_005215,1.093,1.061,0.962,0.873,0.885,0.994,1.172,0.835,1.157,1.002,1.133,0.987,0.932,0.999,1.207,1.082,1.169,1.036,1.177,0.922,0.971,0.825,1.054,0.97,0.9,0.954,1.16,1.013,1.314,0.989,0.918,0.873,1.161,0.993,0.937,0.993,1.088,0.942,1.037,0.964,0.977,1.116,1.06,1.001,0.966,0.986,1.086,1.086,1.154,1.054,1.154,0.865,1.016,1.036 +NM_005216,0.444,1.535,0.808,0.756,0.609,1.354,0.839,0.287,0.793,0.687,1.45,0.519,0.425,0.36,0.818,1.918,0.739,0.97,0.786,1.268,0.346,0.567,1.798,0.76,0.708,0.465,0.926,0.578,0.558,1.837,0.553,1.312,1.455,1.644,0.0636,1.058,1.389,0.634,1.782,0.86,0.822,1.368,0.707,1.407,0.742,1.378,1.265,0.484,1.584,0.626,1.566,0.976,0.622,1.626 +NM_005217,1.18,0.985,0.999,0.954,0.881,0.982,0.889,1.117,1.009,1.139,0.993,1.119,0.826,1.168,0.937,1.074,1.063,1.001,0.954,0.819,0.855,0.924,0.999,1.117,0.994,0.865,0.894,1.097,0.713,1.02,1.055,1.158,0.989,1.01,0.949,1.15,1.07,1.08,1.144,1.376,0.966,0.998,0.956,0.943,1.014,1.177,1.121,1.001,1.178,0.999,1.072,0.891,0.85,0.888 +NM_005218,0.585,0.344,2.608,0.569,1.782,1.956,0.261,1.191,1.313,1.161,1.211,1.064,0.867,0.78,0.815,1.178,1.354,1.026,2.53,1.007,0.975,1.162,0.918,1.235,0.305,0.771,1.617,0.889,0.403,1.436,1.409,1.911,0.945,0.862,0.126,0.241,0.419,1.705,1.175,0.123,1.737,1.73,0.216,0.128,1.354,0.884,0.889,0.826,0.197,1.265,0.889,1.901,2.405,2.428 +NM_005219,0.818,0.643,1.257,0.916,1.056,0.84,0.716,0.792,1.352,1.108,0.833,0.764,0.657,0.603,0.915,1.345,0.885,0.808,1.283,0.754,0.769,0.754,1.072,1.026,0.521,1.102,1.285,1.083,0.333,1.112,1.071,0.914,3.104,1.128,1.363,0.639,0.808,0.852,1.467,0.667,1.168,1.056,0.771,1.119,1.355,0.87,1.012,0.767,0.864,0.889,0.964,1.076,1.135,1.197 +NM_005220,1.101,0.837,1.77,0.896,1.43,0.795,0.834,1.015,1.293,1.746,0.648,1.793,1.287,0.946,0.908,1.191,1.105,1.404,1.586,0.818,1.433,1.027,0.774,1.167,0.767,1.122,1.034,1.062,0.839,0.743,1.219,0.937,1.377,0.965,0.806,0.782,0.761,1.836,0.72,1.255,1.336,0.877,0.738,0.957,1.421,0.705,1.332,1.208,0.771,1.458,0.944,1.087,1.687,0.973 +NM_005221,1.037,1.011,0.897,0.784,1.088,1.022,0.799,1.327,1.053,0.901,0.719,1.147,1.083,0.928,0.962,1.071,1.175,1.06,1.006,0.995,1.017,0.867,0.942,1.042,1.078,1.086,0.846,0.999,1.076,1.009,1.085,1.087,1.067,0.91,0.939,1.04,0.94,0.971,1.053,1.054,0.85,0.891,0.768,0.907,1.023,0.949,1.029,1.193,0.918,1.018,0.991,0.999,0.994,1.053 +NM_005223,0.983,1.106,1.108,1.389,1.006,1.091,0.827,0.952,0.9,0.974,0.818,1.072,0.979,0.857,1.015,2.338,0.824,1.163,0.973,1.05,0.957,0.864,0.863,1.001,1.508,1.002,0.944,0.835,0.728,1.307,1.009,0.916,1.21,1.541,1.108,0.979,1.885,0.972,1.398,2.818,1.082,0.999,0.993,1.023,0.98,0.931,2.241,0.921,0.837,0.961,1.216,0.756,1.022,0.825 +NM_005224,0.799,0.99,1.324,0.833,1.066,1.171,0.643,1.037,1.198,0.954,0.661,0.77,0.776,1.285,0.814,0.759,1.263,0.946,1.515,0.634,0.911,1.109,1.345,0.963,0.832,1.002,1.221,1.137,0.637,1.316,1.437,0.998,2.026,0.945,1.745,1.503,0.8,1.107,1.274,13.58,1.163,0.892,0.745,1.388,0.973,0.805,1.34,0.896,0.78,1.351,0.786,0.897,1.091,2.67 +NM_005225,0.924,1.04,0.92,0.968,0.847,1.018,1.04,1.107,0.93,0.86,0.983,1.134,1.05,0.887,0.896,0.908,1.061,0.998,0.961,0.971,0.948,0.86,1.117,0.98,0.939,1.114,1.027,1.007,1.329,1.077,0.931,0.976,1.621,1.016,1.048,0.902,1.047,0.947,1.54,0.916,0.966,0.932,0.921,1.42,1.084,0.942,1.193,1.11,1.016,1.03,0.908,1.038,1.064,1.714 +NM_005226,1.087,0.86,1.052,0.91,1.258,0.911,0.91,1.054,0.959,0.974,1.048,1.132,1.0,1.18,0.899,0.97,1.023,1.009,0.975,0.972,1.082,0.986,0.984,1.166,0.999,1.054,0.894,0.971,0.745,1.099,1.07,0.971,0.982,0.899,1.077,0.93,1.174,1.183,1.074,1.041,1.127,0.901,0.933,1.028,0.869,0.988,1.122,1.016,1.094,1.067,1.168,1.257,0.839,1.009 +NM_005227,1.035,0.973,0.866,1.09,0.939,0.982,0.754,0.872,1.026,1.002,0.737,0.995,1.101,1.002,1.053,1.12,1.107,1.001,1.204,0.815,0.822,0.982,1.091,0.993,0.934,1.077,1.115,0.935,1.063,0.961,1.163,1.18,1.315,0.98,0.895,0.894,1.086,1.111,1.182,1.007,1.085,1.109,0.802,1.131,1.053,0.74,1.103,0.986,1.076,0.999,0.862,0.974,0.975,1.187 +NM_005228,1.007,0.848,1.437,0.899,0.988,0.973,0.82,0.741,1.194,1.099,0.898,0.936,0.893,1.112,1.031,0.845,0.984,0.92,1.275,1.015,0.917,1.029,0.951,0.846,0.876,0.992,1.306,0.956,0.787,0.972,1.182,0.933,1.398,0.928,0.701,0.941,0.89,1.056,0.968,20.78,1.242,1.062,0.738,1.001,1.223,1.231,1.302,0.933,1.009,1.188,1.001,0.828,1.181,1.218 +NM_005229,0.6,1.093,1.018,0.633,0.669,1.207,0.572,0.557,1.044,0.944,0.749,1.009,0.798,0.689,0.857,1.36,0.759,0.78,0.92,0.868,0.568,0.773,1.348,1.007,0.621,0.827,1.209,0.627,0.475,1.058,0.942,2.324,2.371,1.326,0.331,0.932,0.957,0.895,1.689,1.268,0.861,1.111,0.566,1.155,0.936,0.743,1.042,0.656,0.997,0.927,1.018,1.267,1.059,2.0 +NM_005230,0.988,1.007,1.141,0.896,1.205,0.972,0.929,1.03,1.039,1.047,0.887,1.0,0.935,1.055,0.977,0.965,0.95,1.009,1.127,0.918,1.047,0.926,1.111,0.978,1.003,1.116,0.902,1.153,1.086,1.108,1.074,0.991,1.114,0.846,1.258,0.942,0.931,1.063,0.94,1.105,1.057,0.846,1.005,0.896,1.022,1.019,1.024,1.221,0.904,1.07,0.932,0.975,1.086,1.042 +NM_005231,0.993,1.057,1.074,0.845,1.054,0.96,1.148,0.967,0.978,1.058,1.011,1.166,0.905,1.073,1.045,1.225,0.949,1.045,1.085,0.981,0.992,0.909,1.153,0.937,1.143,1.065,1.074,0.96,0.899,1.017,1.004,0.907,0.872,0.946,1.031,0.918,0.971,1.171,0.972,1.076,1.173,1.115,0.978,1.416,0.857,1.094,1.245,0.996,1.018,1.167,1.082,0.915,1.119,0.918 +NM_005233,0.967,0.899,0.953,1.05,1.193,1.024,1.095,0.945,0.921,0.994,1.042,0.866,0.942,0.842,1.341,1.106,1.012,0.793,0.959,1.199,1.147,0.826,1.07,1.064,0.858,0.931,0.952,1.001,1.159,1.109,0.92,1.925,0.848,1.181,0.946,0.913,1.074,1.118,1.076,1.055,0.903,1.018,1.129,1.006,0.962,0.961,0.791,1.057,0.911,0.898,1.001,1.003,0.922,1.054 +NM_005234,0.683,1.12,0.984,1.021,0.562,1.77,0.774,0.436,0.583,0.728,1.635,0.579,0.69,0.435,0.951,1.714,0.985,1.248,1.4,1.171,0.566,0.758,1.401,0.62,0.842,1.124,0.844,0.711,0.947,1.555,0.546,0.548,0.73,2.104,0.45,0.925,1.361,0.673,2.228,0.741,0.727,1.444,0.617,1.387,0.707,1.08,0.673,1.297,0.972,0.874,1.15,0.639,0.649,1.025 +NM_005235,0.958,1.038,0.944,0.973,1.035,0.924,0.919,1.07,1.068,0.925,1.031,0.847,1.103,1.084,0.94,0.97,1.087,0.966,0.892,0.882,0.931,1.041,0.973,1.047,0.939,0.974,0.958,0.938,0.672,1.157,0.882,0.932,0.814,1.048,1.013,1.1,1.047,1.199,1.088,1.014,0.987,1.078,1.001,0.964,1.017,0.991,1.019,1.027,1.071,1.019,1.085,1.035,0.978,1.1 +NM_005236,0.929,0.942,0.96,1.04,1.006,1.022,0.868,1.048,0.969,1.156,1.128,0.873,0.977,1.093,1.554,1.058,1.017,0.913,0.986,1.079,0.983,0.955,1.097,0.982,0.998,1.0,0.814,0.944,1.344,1.0,1.011,0.932,1.194,0.999,0.981,0.923,1.046,0.827,1.057,0.927,0.978,1.009,1.103,1.049,0.936,1.209,1.014,0.997,0.985,1.005,0.991,1.049,0.863,1.086 +NM_005238,0.862,0.879,1.026,0.893,1.125,1.012,0.924,0.947,0.895,0.999,0.988,0.95,0.885,1.077,1.091,0.948,0.988,1.053,0.965,0.931,1.082,0.958,1.042,0.939,1.029,0.885,1.047,0.872,1.285,1.026,1.001,0.925,1.119,1.118,0.991,1.046,0.894,1.063,0.934,1.036,0.976,1.031,0.938,1.12,0.99,0.939,1.034,0.792,0.981,1.04,1.018,1.004,1.051,1.038 +NM_005239,0.758,0.762,1.53,0.845,0.838,1.297,0.912,0.948,0.844,1.033,0.941,0.748,0.748,0.748,1.48,1.425,1.282,0.897,0.835,0.903,0.729,1.044,1.209,0.9,0.721,0.755,1.269,0.854,0.663,0.893,1.044,1.147,3.781,0.953,0.776,0.724,1.131,1.014,1.408,1.333,0.999,1.033,2.466,0.927,1.101,2.391,1.075,0.838,1.309,1.276,1.447,0.82,0.828,1.91 +NM_005240,1.117,1.035,1.047,1.004,0.91,0.997,0.958,0.88,0.986,1.003,0.866,0.99,1.035,0.834,0.931,1.071,1.039,0.945,0.892,0.975,1.065,0.91,1.091,1.063,0.892,1.156,0.93,1.181,0.731,1.024,0.947,1.064,1.053,0.976,1.141,0.937,0.91,1.065,1.01,1.077,1.11,0.873,1.087,0.968,1.177,0.955,0.904,0.919,0.854,1.095,0.94,0.973,0.983,0.986 +NM_005241,0.531,2.605,0.86,0.717,0.509,1.631,0.949,0.36,0.632,0.414,1.838,0.34,0.409,0.632,0.701,1.324,0.557,1.11,0.987,1.19,0.318,0.724,1.348,0.759,1.604,0.596,0.773,0.526,1.013,2.868,0.632,2.185,1.045,2.623,0.589,0.862,1.835,0.486,2.101,0.314,0.603,1.502,1.169,0.783,0.483,2.139,0.669,0.399,0.952,0.393,1.131,1.35,0.415,2.668 +NM_005243,0.675,0.941,1.094,0.785,0.743,1.034,0.53,0.424,0.999,0.792,1.038,0.873,0.578,0.594,1.036,1.732,0.715,0.781,1.248,1.092,0.587,0.798,1.512,0.987,0.639,0.647,1.441,0.717,0.411,1.273,0.734,1.029,2.007,1.399,0.131,1.085,1.283,0.893,1.316,0.686,0.928,1.075,0.896,0.997,0.832,1.166,0.847,0.615,1.369,0.633,1.238,1.081,0.949,1.437 +NM_005245,0.251,1.885,0.665,0.753,0.532,1.627,0.831,0.223,0.452,0.437,1.702,0.413,0.262,0.345,1.245,2.548,0.379,1.027,0.422,2.487,0.26,0.324,2.302,0.667,0.461,0.231,0.744,0.301,0.481,1.477,0.373,2.626,4.561,1.46,0.193,0.735,2.108,0.453,2.58,1.785,0.444,1.788,1.304,1.812,0.493,2.35,0.961,0.326,2.109,0.362,1.775,1.864,0.409,2.214 +NM_005246,0.999,0.917,1.125,0.809,1.111,0.883,0.915,1.065,1.278,1.221,0.985,1.006,0.897,1.004,1.022,1.133,1.275,0.896,1.4,0.814,0.935,1.195,0.837,1.166,0.881,1.072,0.926,1.15,1.027,0.962,1.065,1.157,1.112,1.029,0.909,0.75,0.961,1.232,1.022,0.829,0.998,1.072,0.87,0.917,1.174,0.994,1.084,1.161,0.968,1.062,1.079,0.984,1.365,1.006 +NM_005247,1.037,0.966,1.116,0.876,1.093,0.999,1.268,1.146,1.073,1.041,0.971,1.024,1.045,1.12,0.942,0.973,0.916,0.927,1.045,1.043,1.126,1.024,1.059,0.896,0.913,1.086,1.001,1.117,1.166,1.045,1.202,0.964,1.142,1.015,0.91,1.029,0.922,0.972,1.021,0.937,0.986,0.968,1.093,0.946,0.927,0.921,0.973,0.933,1.023,0.942,0.999,0.973,1.121,0.948 +NM_005248,0.968,0.883,0.967,1.389,1.023,0.905,0.883,1.009,1.049,0.902,0.884,0.892,0.982,0.919,1.05,0.864,1.013,0.881,0.946,0.857,0.922,0.936,0.992,0.935,0.885,0.959,1.263,0.799,0.982,0.933,0.919,1.269,1.105,0.982,0.861,1.041,0.882,0.976,1.919,3.039,0.937,1.001,1.014,1.037,1.004,0.975,0.959,0.977,0.843,1.112,0.915,1.342,1.203,1.256 +NM_005249,1.007,0.977,0.947,1.214,0.951,0.999,1.035,0.903,1.01,0.965,0.947,1.088,1.078,1.021,0.774,0.9,1.022,0.919,0.868,0.978,0.915,0.917,1.005,0.968,1.041,1.054,0.885,1.104,0.951,0.947,1.047,0.961,1.128,1.058,0.924,0.812,1.028,1.001,0.862,1.042,0.98,0.891,0.764,1.032,0.999,0.994,1.041,1.064,0.844,1.01,1.014,1.065,1.058,0.931 +NM_005250,0.979,1.02,1.006,1.038,0.997,0.964,0.949,1.228,1.206,1.049,0.906,0.966,1.052,1.017,1.057,0.909,0.933,1.042,1.047,1.045,1.11,1.001,1.116,0.998,0.869,0.905,1.001,1.025,1.133,1.069,0.906,0.913,0.891,1.0,0.91,0.998,1.032,0.924,0.986,0.996,0.868,0.783,1.226,0.878,1.073,1.002,1.058,1.065,1.056,0.962,0.932,1.004,0.973,1.179 +NM_005251,1.045,0.958,1.046,1.052,1.038,0.965,1.0,0.905,1.128,0.925,1.079,0.95,0.929,1.095,1.009,1.017,1.053,1.186,1.055,0.953,0.907,0.977,0.973,1.008,1.005,1.034,1.072,0.881,0.818,0.905,1.008,1.198,1.091,0.926,1.002,1.034,1.069,1.026,1.0,0.94,0.934,0.979,1.125,1.032,0.903,0.978,0.984,0.973,1.036,1.067,0.895,0.974,1.075,1.122 +NM_005252,0.338,0.684,0.605,0.756,0.389,1.267,0.762,0.377,0.438,0.35,2.391,2.581,0.356,1.296,2.063,1.116,1.625,0.52,0.499,0.814,0.45,0.369,1.503,0.526,0.461,0.352,0.413,0.336,0.6,0.915,0.54,1.072,1.17,0.999,0.347,1.064,0.989,0.449,2.584,5.462,0.507,1.375,1.028,1.051,0.452,2.118,1.034,0.377,1.765,0.521,0.954,1.085,1.225,1.223 +NM_005253,1.631,0.515,1.223,0.926,1.098,1.206,0.625,2.075,1.219,0.857,0.901,1.321,1.445,1.044,1.24,1.279,1.21,0.998,2.437,0.684,0.997,1.578,0.766,1.565,0.766,2.15,1.273,1.024,0.654,0.812,1.288,0.635,1.669,1.158,3.002,0.602,0.547,1.524,0.935,1.002,1.159,0.723,0.911,0.773,1.096,0.931,0.586,2.003,0.575,1.439,0.674,0.645,1.437,0.563 +NM_005255,0.613,1.004,0.951,0.779,0.942,1.265,0.784,0.397,1.19,0.922,0.873,0.539,0.36,0.594,0.916,1.43,1.226,1.261,0.759,1.132,0.306,0.597,1.348,0.84,0.756,0.737,1.167,0.661,0.742,1.713,0.839,1.076,0.849,1.262,0.871,0.654,1.569,0.851,1.72,1.008,1.0,1.443,1.216,1.163,1.058,1.441,1.311,0.777,1.922,0.805,1.462,0.632,0.713,0.956 +NM_005256,1.12,1.079,0.968,1.0,0.901,1.125,1.221,1.067,0.986,0.972,1.058,1.048,0.848,0.69,0.851,1.19,0.942,1.034,1.081,1.192,1.02,1.083,0.906,0.995,0.948,0.967,1.037,1.043,0.762,1.011,0.995,0.963,0.899,0.993,0.997,0.997,1.093,0.939,1.008,1.057,0.9,1.175,0.901,1.034,0.986,0.876,1.082,0.946,0.938,0.858,1.192,0.917,1.05,0.924 +NM_005257,0.138,3.362,0.132,0.792,0.151,1.947,1.49,0.132,0.163,0.165,1.317,0.179,0.148,0.195,0.818,1.669,0.129,1.055,0.182,1.238,0.164,0.129,1.689,0.202,1.699,0.196,0.178,0.167,1.348,3.351,0.165,1.74,1.357,4.111,0.174,0.883,1.915,0.165,2.051,0.37,0.157,1.574,0.819,1.797,0.187,1.126,0.592,0.181,1.014,0.169,1.277,0.342,0.174,1.255 +NM_005258,2.142,0.615,2.765,0.974,1.642,0.752,0.44,1.587,3.663,1.044,0.696,0.765,3.576,2.622,1.489,1.665,4.987,1.103,3.336,0.702,0.95,1.779,1.41,0.993,0.614,3.123,1.901,2.316,0.446,0.536,4.72,0.653,1.462,0.872,5.942,0.742,1.007,1.678,0.944,0.895,2.555,0.676,0.697,0.879,1.732,0.544,1.671,4.528,0.875,1.88,0.653,0.761,1.44,1.372 +NM_005259,0.946,1.116,0.912,0.961,1.174,1.23,1.125,1.041,0.989,1.116,1.19,1.172,1.062,1.113,0.913,1.25,0.969,0.986,0.893,1.069,0.91,0.949,1.108,1.001,0.939,1.23,0.908,1.095,1.358,0.896,1.207,0.894,0.989,1.115,1.233,0.995,0.972,0.871,1.062,1.004,1.073,1.032,1.175,1.184,0.993,0.932,0.96,0.932,1.072,0.992,1.023,0.847,1.146,1.057 +NM_005260,1.078,1.224,1.075,0.952,1.011,0.984,0.899,0.948,1.055,1.114,0.956,0.963,1.103,1.015,1.038,1.063,0.956,1.009,0.968,0.982,1.058,1.069,0.987,1.001,1.017,0.989,1.126,0.992,0.859,0.933,1.091,1.093,1.018,0.893,1.02,0.892,0.981,1.092,1.24,0.992,1.09,0.969,0.947,0.89,1.072,1.133,0.975,0.946,0.974,1.039,1.095,0.974,0.936,1.081 +NM_005261,1.07,0.943,0.919,0.994,0.947,0.971,0.832,1.241,1.025,1.062,1.053,1.047,0.926,0.96,0.789,0.971,1.003,0.846,1.023,0.951,1.036,1.001,1.069,0.941,0.929,1.018,1.082,1.021,0.961,0.989,1.066,1.12,0.973,0.864,1.03,0.958,0.933,1.082,0.858,0.938,0.804,1.107,1.09,1.066,1.011,0.985,1.007,0.994,0.912,0.929,1.059,0.999,1.113,0.921 +NM_005262,0.956,0.889,1.012,0.994,1.08,0.86,1.053,1.119,0.834,0.981,0.891,1.11,0.958,0.991,0.835,1.104,1.0,0.945,0.892,0.95,0.962,0.926,0.99,1.075,1.136,1.0,1.093,1.233,0.879,1.144,1.016,1.136,0.98,0.929,1.187,1.02,1.018,1.029,1.043,1.045,1.036,1.081,0.841,0.996,1.007,0.926,0.989,1.096,0.962,0.957,0.978,1.07,0.948,0.846 +NM_005265,0.629,1.542,0.757,0.964,0.755,0.98,0.708,0.605,0.672,0.72,1.542,0.744,0.724,0.464,2.218,1.713,0.734,1.122,0.651,0.729,0.597,0.668,1.658,0.678,1.555,0.684,0.696,0.654,0.452,1.603,0.772,0.86,0.814,0.884,0.743,0.729,3.102,0.713,4.101,3.701,0.587,1.755,2.198,2.246,0.811,1.148,1.366,0.919,1.003,0.601,0.997,2.122,0.916,1.138 +NM_005266,1.041,1.04,0.979,0.965,1.017,0.916,0.843,0.983,0.857,1.046,0.918,0.906,0.932,0.923,0.837,0.99,1.009,1.124,0.954,0.925,1.023,0.967,1.026,1.002,1.0,0.981,0.963,1.04,0.898,1.064,0.885,1.09,1.103,0.94,1.067,0.865,1.02,0.889,1.071,0.954,1.147,0.811,0.904,1.011,1.033,0.996,1.0,1.007,0.838,1.118,0.896,0.967,1.02,1.027 +NM_005267,1.021,0.99,1.133,0.947,0.99,0.939,0.899,0.844,1.016,0.965,0.972,0.912,0.957,1.192,0.873,1.317,0.949,1.006,0.971,1.095,0.968,0.987,0.966,1.037,0.966,1.028,1.013,1.038,0.879,0.926,1.058,1.104,0.865,1.058,0.974,0.899,1.075,1.223,1.211,0.962,1.143,1.057,1.153,1.035,0.995,0.974,0.962,1.078,1.039,1.035,0.999,0.936,0.982,1.073 +NM_005269,1.128,1.12,0.859,0.879,1.082,0.948,1.164,0.951,0.962,0.94,0.965,0.865,1.048,0.912,1.003,1.172,0.971,1.167,1.227,1.044,0.88,1.025,0.947,1.107,1.172,0.917,1.05,1.037,1.424,1.166,0.809,1.402,0.994,0.971,1.028,0.97,1.048,0.976,0.991,0.984,0.992,1.094,1.172,0.908,0.924,0.95,0.839,0.962,0.892,1.037,1.023,1.036,1.102,0.949 +NM_005270,1.06,0.944,0.99,1.049,0.812,1.097,0.99,1.07,0.903,1.112,1.037,0.925,1.0,0.871,0.855,1.109,1.216,0.996,1.081,1.016,0.943,0.902,1.05,0.945,0.939,1.302,1.117,0.902,0.995,1.063,1.089,1.453,1.202,0.871,1.027,0.945,0.923,1.112,1.103,0.88,1.104,1.044,0.72,1.265,0.94,0.979,1.13,0.997,1.004,0.913,1.054,1.05,1.335,0.888 +NM_005271,0.937,1.055,1.324,0.968,0.869,1.132,0.659,0.502,1.046,0.965,1.104,0.979,0.857,0.689,0.859,1.259,0.657,1.055,1.205,1.235,0.546,0.892,0.933,1.053,0.809,1.109,0.827,0.948,0.495,1.12,0.929,0.951,1.062,1.394,0.276,1.101,1.15,0.962,1.427,0.699,0.966,1.151,0.641,1.615,1.092,1.024,0.919,0.929,0.948,0.904,0.999,0.792,0.833,0.919 +NM_005272,1.106,1.203,1.043,0.928,0.868,1.079,1.001,0.947,1.046,1.218,1.107,1.056,1.02,0.989,1.272,0.925,1.142,1.095,0.901,1.131,0.953,0.865,0.891,1.083,0.902,1.177,0.975,1.049,1.225,0.943,1.034,0.996,1.002,0.987,0.885,0.887,1.031,1.062,0.996,0.89,1.271,0.943,1.127,0.97,1.021,0.927,1.256,0.924,0.92,1.009,1.155,1.043,0.965,1.076 +NM_005273,0.953,0.47,1.802,0.643,1.518,0.774,0.455,0.967,1.525,1.53,0.541,1.524,0.994,0.881,0.912,0.928,1.526,1.107,1.734,0.692,0.536,1.308,1.127,1.705,0.243,1.593,1.373,1.406,0.291,0.856,1.165,1.046,0.704,0.593,1.013,0.677,0.751,1.636,1.539,1.309,1.571,0.778,0.579,1.498,1.698,0.854,1.504,1.708,1.006,1.348,0.99,1.605,1.352,0.879 +NM_005274,0.655,0.816,1.004,0.706,0.77,1.673,0.707,0.925,1.131,0.977,1.087,0.79,0.706,0.636,1.15,2.365,0.906,0.972,1.202,1.159,0.815,0.685,1.136,1.154,0.644,0.836,1.06,0.925,0.446,0.918,1.272,0.894,3.597,1.772,0.668,0.687,1.105,0.774,1.557,0.581,0.964,0.981,0.667,0.94,1.226,1.018,0.991,0.639,1.241,0.889,1.098,0.635,0.837,1.783 +NM_005275,0.903,0.985,0.97,1.127,0.885,0.996,0.937,0.937,0.845,1.104,0.887,0.909,1.018,0.865,1.128,0.878,0.996,1.039,1.077,0.947,1.054,1.071,0.934,0.962,1.035,0.938,0.928,0.952,0.776,1.039,1.055,1.261,0.965,1.03,1.009,1.193,1.083,1.036,1.29,1.084,0.898,1.145,0.846,1.14,0.958,0.991,1.068,1.03,0.975,1.005,0.944,0.881,0.788,0.996 +NM_005276,0.763,1.057,0.688,1.124,0.813,2.013,0.888,0.768,0.733,0.836,2.787,0.891,0.826,0.744,1.625,5.876,0.747,0.803,0.676,1.478,0.741,0.764,2.304,0.767,0.978,0.899,0.789,0.7,0.989,1.076,0.763,0.717,0.901,1.318,0.73,1.065,3.301,0.757,2.414,1.011,0.777,2.442,1.746,1.216,0.767,2.259,2.809,0.781,1.741,0.82,2.407,1.22,0.83,1.625 +NM_005277,1.034,0.915,1.039,1.103,1.104,0.957,1.044,0.911,0.926,1.004,0.994,0.952,0.958,0.999,0.977,0.882,0.983,0.983,0.804,0.988,0.884,0.943,1.087,0.923,0.921,0.969,0.93,1.033,1.245,1.177,1.014,1.117,0.962,1.145,0.971,0.983,0.864,1.001,1.142,1.077,1.015,1.057,1.006,1.094,0.966,0.942,0.931,0.941,1.089,0.999,1.03,0.909,1.131,1.101 +NM_005281,0.982,1.077,0.931,0.844,0.923,0.916,1.08,1.153,0.883,1.074,1.016,0.921,0.956,1.052,1.358,0.964,0.995,0.911,0.912,0.875,1.067,0.943,1.064,0.945,1.029,0.988,0.897,0.962,0.959,1.015,1.108,1.112,0.893,0.897,1.084,1.012,1.0,0.911,1.18,1.207,0.946,0.91,1.041,0.94,1.002,0.995,0.972,0.936,0.92,1.077,1.002,1.103,0.909,1.227 +NM_005283,1.098,1.066,0.872,1.055,0.92,1.255,1.116,0.961,1.005,1.13,1.003,0.951,0.963,0.993,1.083,1.373,0.968,0.967,1.03,1.066,0.897,0.962,1.023,1.013,0.99,0.925,0.976,0.809,1.496,0.913,1.231,1.034,1.174,1.03,0.87,1.181,1.02,1.034,1.028,0.982,0.929,0.929,1.71,0.941,1.044,0.991,0.946,0.896,0.938,0.964,1.029,0.774,0.892,1.054 +NM_005284,1.061,1.232,0.984,1.033,1.012,1.114,0.908,0.971,1.022,1.032,0.976,0.978,0.943,0.976,1.332,1.295,1.025,0.849,0.974,1.061,0.902,1.052,1.053,0.999,1.145,0.883,1.052,1.092,0.72,0.935,1.018,0.894,1.007,0.958,0.915,1.144,0.911,1.013,0.863,0.944,1.03,0.944,0.955,0.847,1.123,0.911,1.009,1.093,1.103,0.992,1.027,1.001,0.881,0.906 +NM_005285,0.927,1.052,1.034,0.918,0.92,1.003,0.99,0.897,1.114,1.015,0.99,0.944,1.041,1.016,1.023,1.094,1.072,1.048,0.948,0.984,0.963,1.061,1.007,1.077,1.021,0.986,1.071,1.026,0.976,0.929,1.007,1.003,0.996,0.993,1.063,0.978,1.05,1.242,1.04,1.034,0.983,1.145,0.964,1.099,1.081,0.953,1.131,0.937,0.96,1.111,0.999,0.981,1.007,0.984 +NM_005286,1.022,1.087,0.869,0.979,0.895,1.244,0.978,1.004,0.994,1.003,1.24,0.936,1.068,0.845,0.994,0.945,0.851,1.14,0.969,1.306,1.036,0.998,1.023,0.884,1.142,0.963,0.971,1.244,1.668,1.151,0.78,0.913,0.987,1.172,1.06,1.002,1.056,0.86,1.229,0.868,1.021,1.04,0.758,1.094,1.028,0.976,0.938,0.939,1.103,0.859,1.067,1.038,0.959,0.9 +NM_005288,1.021,0.899,1.093,1.074,0.882,0.96,1.14,0.919,0.958,0.952,1.141,1.059,1.1,0.949,0.919,0.926,1.013,0.992,1.094,1.096,1.002,0.988,1.034,0.934,0.915,1.029,1.134,1.061,0.784,0.978,1.052,1.031,0.973,0.952,1.129,0.972,0.942,1.09,1.072,1.003,1.009,1.12,0.888,1.026,1.026,0.922,1.017,0.88,0.93,1.115,0.956,0.933,1.099,1.003 +NM_005290,1.132,0.946,0.915,0.91,1.014,1.01,0.959,1.033,0.922,1.054,1.025,0.954,0.977,1.049,1.097,1.006,0.98,0.962,0.999,0.959,0.983,0.915,1.08,0.915,0.988,0.934,0.974,1.114,1.224,1.113,1.082,1.136,0.951,1.089,1.119,0.851,1.024,0.869,0.892,0.948,1.037,1.093,1.025,1.13,0.975,0.835,1.052,1.121,1.205,0.938,0.956,0.984,0.943,1.084 +NM_005291,1.072,0.963,0.962,0.984,0.815,0.967,0.971,0.878,1.025,0.904,1.087,1.014,1.072,1.1,0.884,1.284,1.127,0.946,1.144,1.134,1.038,1.011,1.083,0.86,0.898,1.038,1.041,1.078,0.805,0.956,0.932,1.06,0.818,0.969,1.173,1.011,1.013,1.042,1.011,0.969,0.909,0.914,0.912,0.961,1.018,1.062,1.1,0.964,0.905,1.095,1.067,0.983,1.034,1.056 +NM_005292,0.954,1.008,1.084,0.955,0.933,0.921,1.173,0.968,1.02,0.89,0.976,1.03,1.058,0.785,0.936,0.872,0.97,0.965,0.843,0.84,0.943,0.906,0.975,0.986,1.022,0.892,1.172,0.93,0.906,1.068,1.041,1.007,0.952,0.934,0.991,1.047,0.945,0.963,0.934,1.008,1.069,1.041,0.903,0.917,1.132,1.003,0.961,0.9,1.051,1.098,0.843,1.073,1.138,1.14 +NM_005293,1.063,0.947,0.98,1.139,1.052,1.006,1.183,1.206,1.067,1.008,1.069,1.046,0.847,1.044,1.232,0.816,1.007,1.091,1.083,0.982,1.057,0.894,0.981,1.132,0.824,0.936,0.948,1.077,1.543,1.03,1.191,0.932,1.008,0.979,1.019,1.0,0.937,1.146,0.927,0.959,0.899,0.935,1.159,0.825,1.011,0.889,1.061,1.032,1.124,0.857,0.865,0.883,0.87,1.057 +NM_005294,0.969,1.01,1.026,1.171,0.981,1.033,1.01,0.917,0.975,0.919,1.012,1.105,1.07,0.851,0.938,0.95,1.04,0.993,0.979,0.925,1.048,0.986,1.001,0.93,0.973,0.968,0.971,0.949,0.829,0.981,1.046,1.071,1.095,0.934,0.983,0.972,1.042,0.907,1.038,1.083,0.884,1.028,0.801,1.07,1.077,0.918,1.018,0.977,1.07,0.977,0.933,0.853,1.011,0.916 +NM_005295,1.099,1.051,0.915,1.012,1.094,1.004,0.925,0.997,0.939,1.134,1.028,0.985,0.898,1.232,1.034,1.041,1.063,1.012,1.101,1.168,1.115,0.98,0.887,1.019,1.052,0.95,0.944,0.94,0.824,1.059,1.12,0.927,0.848,0.975,0.974,0.964,1.003,0.955,0.926,0.991,1.105,1.035,1.132,1.278,1.058,1.093,1.16,0.938,1.083,0.936,0.971,1.035,0.918,0.928 +NM_005296,1.112,1.103,0.993,1.069,0.982,0.959,0.831,1.062,1.004,1.197,1.05,0.929,0.81,1.032,0.817,1.033,1.044,1.079,0.874,1.03,1.009,0.967,1.16,0.942,1.058,1.012,1.064,0.9,0.667,0.952,1.015,1.184,1.105,0.912,0.952,0.979,0.901,1.181,1.088,1.135,1.064,0.937,0.932,1.029,1.001,1.05,1.135,0.989,0.967,1.022,0.998,0.867,0.877,1.136 +NM_005297,1.025,0.978,1.194,1.063,0.987,0.934,0.988,1.002,1.075,0.9,0.932,0.96,1.054,1.039,0.813,0.923,1.07,0.94,0.803,1.03,0.944,1.011,0.914,1.091,1.113,0.972,1.324,0.94,1.264,1.165,0.892,1.067,0.847,1.091,0.992,1.051,1.044,0.955,0.967,1.336,1.079,0.89,1.076,0.977,0.988,1.013,1.005,1.043,0.999,0.972,0.972,1.057,1.218,1.241 +NM_005298,1.201,0.892,0.96,1.027,0.939,0.942,0.783,1.093,0.98,0.858,0.861,0.914,1.077,1.429,0.899,1.199,1.082,1.016,1.003,1.017,1.025,1.084,0.949,1.012,0.976,1.067,1.022,0.963,0.724,1.205,1.048,0.811,0.953,0.914,1.03,0.969,1.111,1.402,0.934,1.068,1.131,0.848,0.88,0.92,1.037,0.927,0.836,0.994,1.186,0.995,0.887,0.979,1.033,0.843 +NM_005299,0.893,1.003,0.991,1.018,0.988,0.918,0.996,1.12,1.049,0.929,0.867,1.01,1.015,1.0,0.881,1.011,0.924,0.971,0.886,0.839,1.07,0.901,0.846,0.917,0.992,0.891,1.01,0.934,1.282,0.999,0.937,0.942,1.027,1.01,0.814,1.01,0.938,0.956,1.149,0.91,1.056,1.058,0.913,0.977,0.997,0.865,0.955,1.085,0.937,0.802,1.028,1.062,0.93,0.967 +NM_005300,0.981,1.287,1.049,0.893,1.056,1.15,1.076,0.923,1.021,0.99,1.288,0.884,0.978,0.874,1.089,1.144,0.915,0.983,0.991,1.025,0.867,0.974,1.081,1.022,0.95,0.831,1.306,0.894,1.365,1.459,0.906,1.8,1.099,1.406,0.918,0.769,1.036,0.965,0.973,0.891,1.079,1.403,0.752,0.912,0.772,0.942,0.988,0.832,0.911,0.912,0.973,1.089,1.135,1.311 +NM_005301,0.609,0.859,0.772,0.706,0.742,1.107,1.013,0.702,0.712,0.545,1.377,0.663,0.687,0.649,1.027,2.432,0.832,0.988,0.572,1.494,0.641,0.603,2.266,0.641,0.608,0.645,0.559,0.66,0.668,1.207,0.73,1.046,1.523,1.328,0.697,1.237,1.085,0.631,2.01,1.689,0.661,1.462,1.422,2.971,0.612,1.321,1.043,0.721,1.634,0.665,1.523,0.785,0.686,3.527 +NM_005302,0.919,0.888,2.431,0.888,0.966,0.952,0.824,0.99,1.023,1.077,1.137,1.34,0.982,0.995,0.925,0.839,1.248,0.933,1.456,0.939,1.022,1.018,0.869,1.132,0.855,0.985,1.488,1.278,1.21,0.912,1.12,1.246,1.08,0.997,0.839,0.845,0.818,1.088,1.002,1.254,1.104,1.163,0.988,1.003,1.443,0.998,1.312,0.891,1.012,2.036,0.967,0.925,1.546,1.113 +NM_005303,1.024,0.988,0.926,0.942,1.039,0.981,1.021,0.835,1.084,1.042,0.983,0.993,0.894,0.962,1.016,0.862,1.028,0.94,1.051,0.965,0.917,0.987,1.087,0.905,0.985,0.946,1.117,0.959,0.744,1.058,0.919,1.007,1.055,1.077,0.944,1.006,1.152,1.006,1.008,1.045,0.942,1.125,0.804,1.062,0.903,1.061,1.165,1.089,0.977,1.086,1.084,0.929,1.065,0.871 +NM_005304,1.006,1.167,0.928,0.861,1.025,0.924,1.123,0.979,0.981,0.949,0.881,0.948,1.153,1.01,0.984,0.939,0.925,0.998,0.934,0.861,0.977,0.985,1.032,0.933,0.823,1.02,1.121,1.079,0.778,0.958,1.008,1.063,1.055,1.131,1.153,0.978,0.963,1.111,1.001,1.109,1.015,1.018,0.897,1.203,1.133,1.032,0.88,0.866,0.922,1.078,1.039,0.951,1.04,0.938 +NM_005305,1.102,0.981,0.844,0.981,1.01,0.968,0.877,0.933,1.036,1.083,1.083,0.944,1.149,0.936,1.079,0.966,0.979,1.044,0.895,0.964,1.059,0.974,0.91,0.921,1.123,0.993,1.108,1.128,1.151,0.982,1.094,1.028,1.184,0.961,0.922,1.085,0.97,0.977,1.116,1.02,1.104,1.017,1.292,0.986,1.036,0.988,1.01,0.972,0.985,0.8,0.979,1.047,1.002,0.941 +NM_005306,0.966,0.856,1.066,1.109,1.046,0.936,1.051,0.968,0.901,0.971,1.015,1.004,0.997,0.9,0.921,0.946,0.971,1.022,0.893,0.979,0.938,1.068,1.046,0.816,0.922,1.126,1.014,1.115,0.679,1.093,0.866,0.901,0.882,0.984,1.002,1.11,1.076,0.969,1.219,1.957,1.005,0.976,0.957,0.993,1.071,0.752,1.082,1.01,1.161,0.926,0.953,1.074,0.968,0.986 +NM_005307,1.005,1.15,0.959,1.179,1.028,0.892,1.051,0.913,1.02,0.974,0.973,1.014,0.945,0.848,1.01,0.997,1.092,0.968,0.931,1.039,0.839,1.034,1.026,0.999,0.943,1.103,0.995,1.056,0.948,1.051,0.94,0.965,0.988,0.89,1.151,0.941,0.95,1.022,1.117,0.942,0.965,1.138,1.04,1.021,1.059,0.965,1.057,1.166,1.094,1.052,0.955,0.995,0.98,0.924 +NM_005308,0.38,1.976,0.484,0.827,0.473,1.751,1.038,0.35,0.493,0.437,1.329,0.42,0.39,0.468,0.913,1.427,0.401,0.919,0.453,1.307,0.322,0.41,1.38,0.395,1.459,0.368,0.504,0.498,1.004,3.12,0.342,2.464,0.819,2.707,0.338,2.22,1.303,0.607,2.699,0.959,0.537,1.617,1.159,0.899,0.449,0.903,1.141,0.385,0.822,0.396,1.173,1.127,0.43,0.935 +NM_005309,0.735,1.359,0.558,1.741,0.67,3.745,1.494,0.71,0.757,0.513,2.843,0.626,0.73,0.685,2.239,5.781,0.655,1.647,0.715,2.247,0.732,0.81,1.34,0.796,1.433,1.071,0.684,0.673,1.991,4.654,0.656,0.844,0.614,2.524,0.675,0.634,2.699,0.687,4.744,0.699,0.668,2.875,3.459,0.63,0.648,3.344,0.917,0.671,2.912,0.679,1.872,0.79,0.59,0.748 +NM_005310,1.549,0.96,1.65,1.217,0.807,0.77,0.586,1.048,1.253,0.854,0.718,1.114,1.213,1.11,1.031,0.721,1.844,1.221,1.426,0.685,0.99,2.032,0.784,1.28,0.801,2.084,1.131,1.031,0.753,0.796,1.046,0.966,2.017,0.744,1.399,0.816,0.673,1.344,1.186,0.971,1.212,0.813,0.534,1.301,1.18,0.638,1.057,2.016,0.652,1.699,0.727,0.824,1.194,1.031 +NM_005312,1.6360000000000001,2.027,1.978,1.923,1.686,2.2569999999999997,1.9929999999999999,1.3639999999999999,1.897,1.5939999999999999,1.998,1.5739999999999998,1.349,1.504,2.021,1.999,1.879,1.9220000000000002,1.564,2.225,1.697,1.4580000000000002,2.2409999999999997,1.733,1.9459999999999997,1.657,1.94,1.491,1.8719999999999999,2.238,1.7690000000000001,3.312,1.913,2.806,1.528,1.874,1.829,1.534,2.452,2.559,2.019,2.465,1.927,2.028,1.5630000000000002,2.115,1.821,1.449,1.7309999999999999,1.714,2.027,1.91,2.012,2.667 +NM_005313,0.531,1.349,0.782,0.815,0.713,1.166,0.699,0.157,0.897,0.71,1.89,0.212,0.224,0.38,0.85,2.08,0.466,1.079,0.859,0.89,0.383,0.283,2.17,0.549,0.902,0.499,0.843,0.583,0.317,1.275,0.561,0.998,1.273,1.743,0.0666,1.237,2.018,0.496,1.894,0.653,0.862,1.494,0.99,0.878,0.708,2.12,1.334,0.352,1.703,0.664,1.795,0.888,0.719,1.152 +NM_005314,1.051,1.115,0.994,1.166,1.063,1.118,1.096,1.18,0.98,1.007,1.019,1.077,0.966,1.104,1.081,0.885,1.068,0.921,0.921,1.096,0.998,1.239,1.004,0.974,1.077,1.042,0.821,1.058,1.176,1.148,1.001,0.807,0.941,0.869,1.106,1.176,0.895,1.042,0.913,1.086,0.918,0.925,0.926,1.056,1.014,0.972,0.97,1.097,1.115,0.916,1.007,1.12,0.991,0.942 +NM_005315,1.008,0.92,0.988,0.874,1.075,1.146,0.955,0.947,1.068,1.089,1.09,0.989,1.04,0.867,0.915,1.109,0.876,0.906,0.917,1.101,1.08,1.144,1.082,1.063,1.082,0.974,0.975,1.0,1.125,0.92,1.037,0.955,0.916,0.974,0.945,1.053,1.116,1.012,0.863,1.017,1.071,1.048,0.918,0.875,0.836,1.012,0.945,0.891,1.057,1.02,0.864,0.966,0.993,1.051 +NM_005316,0.884,0.892,1.179,0.933,0.914,1.149,0.944,0.808,1.134,0.924,1.339,0.872,1.083,1.054,0.94,1.241,0.891,0.873,1.111,1.264,0.731,0.903,1.229,1.025,0.713,0.781,1.083,1.174,1.214,1.275,1.19,1.067,1.703,1.614,0.791,1.175,0.974,0.947,1.347,0.866,1.078,1.062,0.88,0.83,0.833,1.057,0.871,0.755,0.906,0.867,1.056,0.899,0.953,2.211 +NM_005317,0.853,1.025,1.035,0.873,0.958,0.995,1.162,1.178,1.034,0.978,0.894,0.978,1.089,0.971,1.066,0.997,1.012,0.802,0.895,0.978,1.012,0.945,1.019,1.113,1.3,0.856,1.126,0.979,0.861,1.047,0.967,1.065,1.031,0.938,0.91,1.08,0.931,0.941,1.152,0.997,1.044,1.052,0.827,0.854,0.93,0.974,0.935,0.963,0.955,1.021,1.208,0.886,1.003,1.196 +NM_005318,1.142,0.698,0.976,0.738,1.037,1.39,0.807,1.724,1.465,0.927,0.612,0.68,1.077,1.024,1.19,1.219,1.093,1.178,1.265,0.75,0.498,1.2,0.69,1.167,0.554,0.96,0.966,0.955,0.401,1.651,1.658,0.947,1.214,1.378,2.468,0.51,0.705,0.899,1.272,1.675,0.928,0.786,0.293,1.56,1.193,0.294,0.814,1.716,0.308,0.885,0.697,0.571,0.745,0.51 +NM_005319,0.566,3.37,1.269,0.544,2.132,1.845,0.883,0.818,2.135,0.799,0.751,0.599,0.6,0.894,1.208,1.703,2.819,2.008,0.435,2.103,0.25,0.923,1.107,1.178,0.406,0.265,0.777,0.804,0.503,1.327,1.73,0.7,1.123,1.299,3.274,1.575,1.83,1.066,1.709,0.977,0.86,1.402,0.404,1.027,0.735,0.735,1.366,1.214,0.588,0.722,1.263,0.807,0.411,2.37 +NM_005320,0.957,0.906,0.899,1.023,1.117,1.029,0.892,1.014,0.973,1.14,1.014,1.086,0.955,0.845,0.873,1.006,1.02,1.033,0.869,1.065,0.961,1.04,1.072,0.944,0.914,1.006,0.946,1.052,0.765,1.014,1.026,0.98,1.109,0.975,1.095,1.084,0.998,1.068,1.239,0.939,1.002,0.982,0.976,1.136,0.925,1.007,1.056,0.991,0.918,0.888,0.989,1.03,0.846,1.028 +NM_005321,1.028,0.946,1.0,1.043,1.141,1.078,0.776,0.834,1.116,0.961,1.061,0.993,1.116,0.951,1.039,1.109,0.903,1.01,1.056,1.013,0.817,1.0,0.975,1.03,0.984,0.787,1.032,0.942,0.739,1.086,0.938,0.755,1.157,0.886,1.011,1.078,1.041,1.172,1.184,0.988,1.057,0.707,0.947,1.16,1.068,0.982,1.031,0.924,1.228,1.0,0.965,1.102,0.81,1.182 +NM_005322,0.987,0.815,1.039,1.011,1.03,1.07,1.013,1.062,0.917,0.884,1.038,1.057,0.976,0.957,1.007,0.888,0.967,1.039,0.889,1.107,0.965,1.019,1.039,1.194,1.112,0.922,0.91,1.028,1.139,0.917,1.071,0.995,0.966,0.943,0.908,1.126,1.039,0.903,0.934,1.0,1.13,0.909,0.953,1.089,0.977,0.96,1.209,0.948,0.943,1.058,1.032,1.252,1.01,1.028 +NM_005323,1.025,0.995,0.978,1.027,1.044,0.999,0.964,1.09,1.027,0.918,1.068,0.98,1.058,1.055,1.203,0.935,0.956,0.963,0.94,0.981,0.996,0.997,0.943,0.994,1.016,0.959,1.032,0.928,0.714,0.972,0.904,0.996,1.092,1.06,1.079,0.956,1.083,1.019,0.939,1.069,0.924,1.093,1.262,0.951,0.871,1.024,1.023,1.083,1.02,1.044,1.061,0.902,1.008,1.05 +NM_005324,0.813,1.027,1.158,0.797,0.853,1.176,0.54,0.695,1.006,0.861,1.075,0.733,0.803,0.702,1.119,1.901,0.712,0.913,0.93,0.986,0.653,1.016,1.379,0.867,0.79,0.866,0.97,0.843,0.667,1.256,0.924,1.689,0.905,1.521,0.426,0.668,1.299,1.416,1.502,0.954,1.28,1.517,0.956,0.731,0.815,1.251,0.749,0.834,1.0,0.998,1.098,0.822,1.009,0.864 +NM_005325,1.143,1.068,0.963,0.917,1.063,1.051,0.817,0.916,1.156,1.179,0.909,1.353,1.254,0.814,0.947,1.012,0.883,0.848,1.046,1.017,1.046,0.9,0.859,1.117,0.97,0.868,1.025,1.274,0.914,1.052,0.968,0.925,1.05,0.904,0.927,0.94,1.034,1.221,1.198,0.898,1.164,0.975,0.776,1.393,0.886,0.966,1.361,1.036,1.664,0.995,0.952,0.853,0.953,0.992 +NM_005326,0.674,1.178,1.171,0.808,1.028,1.374,0.764,0.527,1.013,0.902,0.991,0.873,0.587,0.764,0.984,1.359,0.923,0.849,1.018,1.262,0.318,0.578,1.247,0.678,1.004,0.867,1.18,0.959,0.363,1.284,0.908,2.294,0.92,1.499,0.49,1.134,1.215,0.864,1.296,0.728,0.96,0.944,0.823,0.911,0.793,1.424,1.215,0.681,1.057,0.693,1.224,0.704,0.804,1.071 +NM_005327,0.548,1.802,1.004,0.979,0.581,1.571,0.694,0.266,0.834,0.716,1.764,0.631,0.508,0.542,1.184,2.353,0.809,0.885,0.819,1.475,0.528,0.564,1.885,0.805,1.184,0.593,1.289,0.568,0.598,1.753,0.549,1.255,1.825,1.909,0.176,0.483,2.657,0.626,1.568,0.339,0.945,1.982,1.875,1.033,0.728,1.64,1.185,0.455,1.648,0.628,1.405,0.515,0.794,0.679 +NM_005329,1.076,1.448,3.177,1.329,1.165,0.967,1.09,0.775,0.989,3.02,0.553,1.294,1.088,1.044,1.0,0.968,2.92,1.171,1.764,0.755,1.165,0.894,0.543,1.14,0.546,1.085,4.319,0.963,1.051,0.928,0.969,0.724,1.33,1.078,0.547,0.667,1.114,1.227,1.037,0.567,1.153,0.574,2.694,0.935,1.669,0.529,1.433,0.981,0.944,2.868,0.679,2.033,4.269,3.053 +NM_005330,0.999,1.035,1.081,0.998,0.943,1.118,0.995,1.168,0.953,0.981,1.021,1.096,0.925,0.952,1.03,1.165,1.056,1.073,1.014,0.975,0.963,0.981,0.998,1.007,0.91,0.964,1.058,1.024,1.012,0.972,1.036,1.075,0.991,0.976,0.809,1.04,1.062,1.001,1.055,0.967,1.071,0.998,0.983,0.94,1.028,0.911,0.944,1.066,1.129,1.038,1.007,1.044,0.956,1.064 +NM_005331,0.958,1.067,0.952,1.086,0.903,1.086,0.966,1.06,0.918,0.903,0.954,0.95,1.039,1.349,1.064,0.999,0.983,1.095,0.919,1.09,0.903,0.954,0.877,0.992,1.022,1.075,0.941,1.041,1.143,0.962,0.966,1.05,0.943,1.014,1.074,1.106,1.108,0.854,0.987,1.047,1.107,0.81,1.015,0.957,1.074,0.933,1.081,0.936,1.059,1.008,0.98,0.98,0.807,1.102 +NM_005332,0.999,1.027,1.046,1.016,1.203,0.93,0.992,1.001,0.987,0.936,1.187,1.129,1.136,1.026,0.8,1.164,0.994,0.966,1.167,0.891,1.004,1.032,0.938,0.915,0.987,0.98,1.001,0.964,0.841,1.014,0.845,0.992,1.095,1.056,1.213,0.993,1.084,0.97,1.028,1.12,0.791,0.947,0.863,0.988,0.866,1.03,0.894,0.919,1.063,0.978,1.029,0.912,1.001,0.934 +NM_005333,0.511,0.962,1.057,0.653,0.911,1.264,0.805,0.52,1.186,1.006,0.954,0.841,0.548,0.528,0.945,1.882,0.828,1.088,1.014,0.997,0.438,0.767,1.177,1.296,0.573,0.601,1.185,0.757,0.549,1.084,0.907,0.88,2.015,1.174,0.295,1.11,1.447,0.905,1.559,0.695,1.169,1.003,0.731,0.852,1.051,1.224,1.215,0.751,1.378,0.674,1.09,1.167,0.955,1.543 +NM_005334,0.966,0.999,1.29,0.921,0.807,0.783,0.703,0.679,1.067,1.129,0.783,0.898,0.705,0.714,1.06,1.052,0.992,0.962,1.114,0.943,0.872,0.941,1.284,0.977,0.952,0.899,1.049,0.74,0.612,0.988,0.9,1.237,2.75,1.005,0.573,1.001,0.908,0.838,1.644,1.289,0.896,1.113,0.696,1.724,1.099,0.94,0.935,0.889,1.058,1.106,0.97,0.876,1.131,1.833 +NM_005335,0.724,0.993,1.809,0.994,0.708,1.035,1.167,0.594,0.933,0.79,0.696,0.654,0.721,0.607,0.855,0.619,1.055,0.727,0.801,0.752,0.63,0.715,1.108,0.996,1.049,0.723,1.988,0.672,0.55,1.515,0.748,2.111,1.034,1.513,0.454,0.66,1.07,0.737,1.743,3.225,0.904,2.364,0.761,0.838,0.936,0.82,0.718,0.739,0.719,0.849,0.909,1.85,1.667,2.981 +NM_005336,0.598,1.47,1.141,0.729,0.999,1.31,0.664,0.347,1.05,0.928,0.799,1.002,0.41,0.41,0.702,0.89,0.811,1.097,0.743,1.547,0.434,0.652,1.825,0.921,1.001,0.844,0.932,0.954,0.516,1.776,0.669,1.843,1.334,1.351,0.417,1.41,1.031,0.787,1.127,1.005,0.885,1.433,0.812,1.556,1.097,1.407,0.962,0.724,1.234,0.705,1.553,0.738,0.856,2.013 +NM_005337,0.82,1.004,1.082,0.942,1.0,0.995,1.023,0.843,1.016,1.013,0.833,0.88,0.937,0.839,0.775,0.897,1.06,0.928,0.896,0.868,0.852,1.001,1.024,0.95,0.895,0.893,1.458,0.994,0.746,1.136,0.87,1.261,0.979,1.086,0.722,0.922,1.033,0.902,1.153,1.305,1.0,1.239,0.625,0.892,0.962,0.916,0.88,0.86,0.965,0.995,0.812,1.24,1.227,1.711 +NM_005338,0.857,0.839,0.888,0.989,1.057,0.922,0.969,0.934,0.936,0.894,1.08,0.876,0.973,1.005,1.14,0.998,0.934,0.807,1.008,1.23,1.019,0.98,1.156,0.976,0.925,0.953,1.057,1.02,1.249,0.979,0.88,1.532,1.355,1.001,1.151,1.07,0.956,0.833,1.013,1.207,0.945,1.093,0.89,1.471,1.01,0.888,1.023,0.905,0.974,0.977,1.051,1.209,0.879,1.204 +NM_005339,0.659,1.083,0.993,0.797,0.755,1.88,0.858,0.609,1.19,0.902,1.838,0.76,0.766,0.89,1.115,1.861,0.839,1.04,0.998,0.995,0.595,0.785,1.118,1.152,0.745,0.718,1.138,0.827,0.569,1.308,0.984,1.032,2.205,1.776,0.476,0.641,1.566,0.754,1.235,0.906,0.94,1.222,0.735,1.076,0.915,1.334,0.96,0.807,1.056,0.67,1.002,0.76,0.94,1.198 +NM_005340,0.71,0.946,1.209,0.637,0.876,1.349,0.549,0.636,1.011,1.069,1.313,1.137,0.782,0.568,0.998,2.063,0.764,1.107,1.188,1.058,0.421,0.63,1.266,1.258,0.589,0.744,1.471,0.982,0.335,0.981,0.837,0.838,1.285,1.348,0.192,0.676,1.543,1.05,1.221,0.537,1.114,1.04,0.644,0.614,0.986,1.121,1.392,0.859,1.181,0.775,1.424,1.002,0.83,1.345 +NM_005341,0.744,1.335,0.997,0.979,0.898,1.317,1.133,0.648,0.917,0.802,1.115,0.87,0.701,0.915,1.224,1.071,0.872,0.909,0.639,1.569,0.624,0.91,0.938,0.869,0.882,0.972,1.083,0.794,0.872,1.357,0.844,1.191,1.613,1.196,0.643,0.847,0.827,0.917,1.345,1.265,0.862,1.241,1.003,1.029,0.788,1.004,0.955,0.838,0.824,0.791,0.957,0.862,0.884,1.349 +NM_005342,0.807,1.001,1.06,0.851,1.032,1.095,0.747,0.651,1.175,1.04,1.012,1.008,0.741,0.896,0.948,1.261,0.926,0.827,1.14,1.148,0.741,0.776,1.423,1.113,0.637,0.735,1.427,0.921,0.687,0.932,0.924,1.286,4.083,1.03,0.589,1.523,0.883,0.806,1.08,0.726,0.984,0.967,0.871,1.969,0.837,1.204,1.191,0.728,1.345,0.786,1.011,0.985,1.069,1.546 +NM_005343,1.273,0.624,1.82,0.784,1.213,0.727,0.49,0.852,1.294,1.564,0.628,1.126,1.164,0.793,0.966,1.578,1.331,1.225,3.01,0.633,1.582,1.49,0.797,1.529,0.672,1.495,1.798,0.98,0.472,0.821,1.254,0.886,1.749,0.794,0.519,0.87,0.751,1.661,1.056,0.827,1.669,0.7,0.594,1.116,1.613,0.672,1.216,1.571,0.86,1.774,0.703,0.809,1.926,1.009 +NM_005345,1.39,0.82,1.573,1.047,0.969,0.46,0.719,0.414,1.02,1.046,0.567,0.985,0.549,0.76,0.661,0.784,0.817,0.97,1.543,0.684,2.74,1.638,0.746,0.814,0.467,1.504,1.132,0.937,0.387,1.689,2.228,1.202,2.141,1.084,0.451,0.734,0.878,1.925,2.249,1.555,3.318,0.819,0.497,1.273,1.002,1.116,0.564,1.82,0.583,1.287,0.775,0.969,0.68,1.314 +NM_005346,1.15,0.639,1.632,0.908,1.088,0.586,0.513,0.407,1.289,1.013,0.583,1.123,0.533,1.04,0.68,1.01,0.884,1.031,1.436,0.46,0.894,0.936,0.845,0.976,0.398,1.111,1.692,1.001,0.334,0.881,2.294,0.91,1.87,1.036,0.613,0.559,0.809,1.125,1.876,1.415,1.642,0.902,0.712,1.178,1.139,1.279,0.632,1.093,0.999,1.224,0.991,0.657,0.456,1.344 +NM_005347,0.706,0.925,0.74,0.836,0.68,1.076,1.395,0.4,1.076,0.683,1.078,0.699,0.381,0.675,0.898,1.401,0.548,0.982,0.772,1.226,0.461,0.699,1.664,0.585,3.142,0.625,0.824,0.785,0.679,1.848,0.725,2.076,1.241,1.525,0.27,0.823,2.129,0.707,2.162,0.986,0.857,1.844,0.991,0.884,0.885,1.486,0.918,0.613,1.379,0.658,1.5,1.191,0.695,2.448 +NM_005348,0.836,1.379,0.835,1.059,0.638,0.608,2.063,0.209,0.996,0.903,3.216,0.346,0.309,0.467,1.088,1.541,0.498,0.446,0.809,0.917,1.566,0.225,1.301,0.681,0.948,0.583,1.017,1.201,0.532,2.347,1.113,1.368,2.67,1.415,0.331,0.816,0.901,0.838,1.894,0.788,2.591,1.178,0.839,1.593,0.666,1.279,0.874,0.475,2.188,0.472,1.316,1.121,0.933,2.06 +NM_005349,0.536,1.317,1.163,0.618,0.722,1.203,0.77,0.512,0.733,0.759,1.325,0.894,0.589,0.567,0.85,1.143,0.616,0.916,0.767,1.272,0.405,0.82,1.143,1.0,0.971,0.554,1.287,0.702,0.493,1.757,0.61,1.799,2.05,1.672,0.205,0.741,1.226,0.926,1.334,2.157,0.892,1.937,0.745,1.019,0.742,0.971,1.027,0.575,0.923,0.618,1.192,1.051,0.839,1.701 +NM_005355,0.822,1.204,0.971,1.407,1.002,1.089,1.093,1.065,1.004,0.685,1.104,0.915,1.023,1.014,1.033,0.882,0.947,1.01,0.985,1.035,1.109,0.919,0.862,1.131,0.888,0.999,1.191,1.026,1.425,1.073,0.983,0.893,1.042,1.0,1.094,0.901,0.974,1.006,0.976,0.855,1.08,0.906,1.087,0.971,1.061,1.031,0.882,1.089,1.002,0.76,0.888,0.991,1.121,0.87 +NM_005357,0.935,1.064,1.466,0.687,1.077,0.903,0.727,0.797,1.022,1.1,0.946,0.8,1.015,0.976,1.034,1.345,1.287,1.063,0.977,1.002,0.753,0.804,1.689,0.925,0.739,1.181,1.417,0.984,0.839,1.253,0.991,0.82,0.985,0.889,1.705,0.745,0.991,1.108,1.479,0.982,1.483,1.103,0.89,1.244,1.543,0.994,1.359,1.004,1.037,1.577,0.816,0.904,1.32,0.843 +NM_005359,0.768,0.963,1.058,0.808,0.8,1.43,0.776,0.504,1.064,0.728,1.434,0.652,0.743,0.712,1.113,2.123,0.569,0.988,1.001,1.258,0.52,0.88,1.469,1.038,0.797,0.871,1.528,0.875,0.495,1.649,0.929,1.353,1.753,1.776,0.259,0.566,1.439,0.826,1.473,0.595,0.839,1.404,0.741,1.445,0.821,1.177,0.627,0.706,0.875,0.775,1.344,0.852,0.659,1.078 +NM_005360,1.264,0.8,2.794,0.751,1.613,0.597,0.563,0.945,3.136,1.47,0.434,1.851,1.163,1.02,1.211,0.978,1.335,1.403,1.702,0.704,0.814,1.786,0.556,1.537,0.896,2.131,1.77,2.59,0.478,0.787,1.56,1.369,0.952,0.882,0.472,0.41,1.448,3.78,0.535,0.517,2.293,0.753,0.739,0.348,2.5,0.574,1.89,1.426,0.652,2.33,0.753,0.719,1.072,0.763 +NM_005361,1.03,0.947,0.958,0.841,1.071,0.988,1.071,0.89,1.024,1.077,0.996,0.988,1.027,0.873,1.009,0.979,1.05,1.003,1.028,1.016,0.788,0.947,1.01,0.925,0.953,1.0,0.989,0.96,1.018,1.02,1.105,1.002,0.891,1.063,0.973,0.91,1.157,1.036,1.101,0.952,0.961,1.182,0.972,0.932,1.069,0.925,0.96,1.151,1.054,1.037,0.954,1.007,1.074,0.998 +NM_005362,0.899,0.876,1.089,0.946,0.967,1.238,0.897,1.048,1.046,1.022,0.946,0.982,1.101,0.829,1.149,0.927,1.065,0.938,1.049,1.074,1.125,1.01,0.94,0.965,1.05,0.983,1.248,1.001,1.161,0.977,0.888,1.049,1.831,0.934,0.801,0.919,1.036,0.884,5.416,0.976,0.938,0.767,0.937,1.225,0.998,1.004,1.257,1.102,1.017,0.988,0.914,1.116,0.877,0.967 +NM_005363,1.1,1.063,0.993,1.098,0.907,0.999,1.179,0.958,1.113,1.098,1.013,1.031,1.07,0.999,0.899,1.149,1.097,0.935,0.922,0.952,0.965,0.948,0.971,0.981,1.012,0.939,0.788,0.988,0.931,1.02,0.977,0.919,2.506,1.032,0.977,0.994,1.025,0.998,5.626,1.005,1.039,1.062,1.024,0.987,0.942,0.976,1.157,0.981,1.091,1.062,1.03,1.005,1.014,0.983 +NM_005364,0.96,0.967,1.057,0.932,1.036,1.009,1.316,1.329,0.926,1.005,1.004,1.068,1.058,1.072,0.859,0.884,1.024,0.954,0.923,0.967,0.99,0.991,1.003,1.038,0.976,1.143,1.093,1.078,1.048,1.04,1.088,0.999,0.974,1.012,1.024,0.882,0.974,1.144,1.011,1.029,1.023,0.866,0.973,0.922,1.08,1.079,0.904,0.905,1.054,0.963,1.012,0.959,0.977,0.943 +NM_005365,0.994,1.041,0.978,1.029,0.902,1.057,0.908,1.058,1.028,0.923,0.975,1.098,0.966,0.965,1.053,0.903,0.941,1.043,1.05,0.963,0.951,1.004,0.983,0.89,1.046,0.957,0.872,0.935,0.853,0.962,0.932,0.944,1.144,0.993,1.121,0.902,1.127,1.09,2.531,0.99,0.905,0.917,0.935,0.907,1.098,1.018,0.948,1.011,1.147,1.105,1.043,1.136,1.207,0.841 +NM_005366,1.044,0.964,1.03,1.015,0.687,1.026,1.182,1.117,0.914,1.057,0.952,1.034,1.223,1.207,1.44,0.962,1.002,1.014,0.897,1.03,0.999,0.959,0.794,0.983,0.868,0.9,0.886,1.147,0.93,0.954,0.97,0.959,1.212,0.913,0.858,0.991,1.1,1.017,1.045,1.06,1.129,0.99,0.96,1.047,1.047,0.982,0.955,0.989,1.141,0.982,1.005,1.052,1.129,1.102 +NM_005367,0.969,1.041,0.856,1.014,1.037,0.949,0.837,1.075,1.139,1.061,0.913,0.998,1.07,0.865,0.831,0.928,1.027,1.013,0.954,1.006,0.989,1.073,0.991,1.046,1.045,1.059,1.168,1.121,0.868,0.919,0.979,1.005,1.564,1.095,1.0,0.921,0.945,1.009,3.79,1.061,1.003,0.963,0.988,0.911,0.978,0.99,1.117,1.11,1.031,1.037,0.927,0.994,0.91,1.054 +NM_005369,1.03,1.029,0.976,0.916,0.831,1.03,1.005,1.06,1.023,0.988,0.93,1.0,0.983,0.858,0.942,0.985,0.976,0.873,0.777,1.045,1.143,1.062,1.018,1.004,0.972,1.026,1.209,0.987,0.878,0.979,0.816,1.074,0.901,0.946,1.048,0.916,0.964,1.078,0.982,0.767,0.803,1.159,1.125,0.95,0.941,1.03,1.065,1.04,0.935,0.924,1.112,0.876,0.935,0.946 +NM_005370,0.609,0.942,0.898,0.868,0.907,1.752,0.819,0.57,1.066,0.996,1.167,0.819,0.638,0.577,1.173,1.979,0.809,1.087,1.142,0.971,0.512,0.867,1.845,0.893,0.73,0.872,1.0,0.72,0.724,1.254,0.831,0.867,1.304,1.505,0.522,0.952,1.409,0.853,1.563,0.993,0.867,1.313,0.866,1.594,0.998,1.136,0.942,0.747,1.649,0.675,1.138,0.998,0.904,1.509 +NM_005372,1.027,1.018,1.021,0.932,0.937,0.901,0.803,1.114,1.02,1.05,0.861,1.124,1.039,0.868,1.057,0.957,1.035,0.984,0.964,0.895,0.965,1.135,0.975,1.011,1.014,1.055,1.036,1.029,0.979,1.078,0.965,0.927,1.13,0.952,0.929,0.941,0.945,0.969,1.144,0.995,0.946,1.128,0.849,1.184,0.955,0.999,1.027,1.115,0.928,0.894,1.0,0.835,1.11,0.899 +NM_005374,1.117,0.875,1.0,1.031,0.939,1.011,0.894,0.956,0.906,0.981,1.039,1.161,0.922,1.052,1.022,1.092,0.94,0.989,1.013,1.054,0.917,0.945,1.081,1.1,0.917,1.102,0.892,1.081,0.79,1.091,0.885,1.176,1.12,1.132,1.017,0.981,1.047,0.867,1.163,1.057,0.989,1.077,0.978,1.031,0.86,0.846,0.849,1.104,1.126,0.944,0.938,0.945,1.033,1.058 +NM_005375,0.827,0.921,1.073,0.761,0.874,1.262,0.616,0.752,1.414,0.728,0.953,0.833,0.87,0.614,1.772,2.556,0.785,0.77,0.914,2.6,0.549,0.906,4.218,1.098,0.605,0.848,1.017,0.94,0.517,0.851,0.871,0.668,1.814,0.799,0.508,1.021,1.778,0.737,1.616,1.468,1.206,1.804,0.773,1.7,0.941,1.963,1.098,0.73,3.29,1.008,1.836,1.048,0.624,6.193 +NM_005376,0.999,1.051,1.041,1.068,0.834,1.024,0.877,1.262,1.155,0.933,1.029,0.918,0.927,0.837,0.932,1.029,0.979,0.808,0.967,0.884,1.046,0.969,1.035,1.069,0.976,1.001,0.83,1.128,1.077,1.015,1.091,0.908,0.977,1.017,1.175,1.124,0.797,1.08,1.166,1.021,0.955,0.846,0.832,0.944,0.927,0.909,1.048,1.063,0.884,1.193,1.085,0.903,1.024,0.981 +NM_005378,0.77,0.902,0.776,1.04,0.81,1.69,1.028,0.624,1.247,0.667,2.628,0.674,0.792,1.005,1.221,3.492,0.6,1.022,0.782,1.507,0.698,0.652,3.189,0.675,0.936,0.776,0.888,0.811,1.012,1.547,0.723,1.058,1.594,2.026,0.66,0.699,1.392,0.671,1.172,0.791,0.808,2.118,0.936,0.661,0.775,1.156,0.789,0.814,1.082,0.749,1.953,0.881,0.796,0.746 +NM_005379,0.243,0.922,0.241,1.844,0.256,2.936,1.181,0.268,0.22,0.204,3.976,0.244,0.241,0.202,2.972,8.138,0.191,1.25,0.226,4.122,0.215,0.209,4.044,0.232,1.412,0.227,0.264,0.236,1.073,3.417,0.224,0.329,0.953,2.893,0.224,2.303,6.072,0.202,3.578,0.408,0.191,2.306,4.156,0.471,0.229,3.698,3.239,0.205,3.693,0.209,3.992,0.379,0.199,0.338 +NM_005380,0.464,1.463,0.677,0.825,0.374,2.144,0.847,0.318,0.424,0.415,2.805,0.439,0.626,0.327,1.045,3.383,0.509,0.605,1.035,1.467,0.523,0.41,1.541,0.48,0.723,0.64,0.495,0.368,0.804,1.708,0.485,4.669,1.193,2.884,0.133,1.675,1.846,0.507,3.248,0.628,0.647,1.972,1.055,1.888,0.602,1.33,0.703,0.508,2.16,0.723,1.39,0.639,0.576,1.247 +NM_005381,0.711,0.858,1.052,0.795,0.828,0.82,0.788,0.655,1.061,1.228,0.918,0.675,0.763,0.81,0.894,0.995,0.8,0.942,0.903,1.064,0.896,0.662,2.048,0.875,0.775,1.004,0.925,0.918,0.594,1.003,0.966,1.681,1.593,0.721,0.663,1.576,0.972,0.828,1.641,1.145,1.056,1.259,0.808,3.724,1.278,1.047,1.134,0.758,1.426,0.862,0.956,1.11,1.2,2.561 +NM_005382,1.264,0.898,0.908,1.075,1.23,0.931,0.917,0.766,1.185,1.225,1.082,1.29,0.939,0.828,1.329,0.952,0.983,0.926,0.819,0.974,0.836,2.075,0.951,1.114,0.986,1.032,0.887,0.875,0.922,1.086,3.406,0.957,0.794,1.036,0.945,0.918,0.906,1.055,1.016,0.9,1.079,0.942,0.906,1.032,4.074,0.897,0.975,1.138,0.913,1.592,0.944,0.957,1.051,0.914 +NM_005383,0.954,1.034,0.873,0.933,0.971,1.009,0.821,0.914,0.986,1.029,1.001,0.94,1.007,1.026,0.927,0.976,0.966,1.013,1.085,1.072,1.084,1.003,1.032,1.014,1.137,0.979,0.908,1.057,0.863,1.037,1.122,0.857,1.039,0.825,1.007,1.182,1.061,1.053,0.961,0.999,0.983,0.884,0.92,1.008,0.982,0.816,0.883,0.857,1.147,1.166,0.914,0.956,0.937,0.86 +NM_005384,0.723,0.777,1.628,0.729,0.837,1.05,0.624,0.6,0.957,0.878,1.034,0.633,0.632,1.111,1.28,1.005,1.038,0.882,1.055,0.955,0.838,0.636,0.909,1.082,0.666,0.83,1.253,0.982,0.421,1.114,0.94,1.521,1.555,0.924,1.001,0.647,0.884,0.942,0.999,2.716,1.204,1.067,0.893,0.983,0.785,1.13,1.123,0.746,0.96,0.82,1.147,1.046,1.21,1.396 +NM_005386,1.153,0.981,0.965,1.015,0.994,1.0,0.978,0.969,1.027,1.182,1.068,0.931,1.05,1.158,0.898,0.874,0.933,0.881,1.198,1.019,1.024,1.0,0.809,0.973,1.015,0.976,1.291,1.143,1.329,1.083,1.068,0.943,0.904,1.094,0.836,1.062,1.046,0.875,1.03,0.986,0.914,0.967,1.058,1.078,0.954,0.906,1.007,1.139,0.937,0.986,1.053,0.917,0.914,0.932 +NM_005389,0.576,0.832,1.24,0.613,1.038,1.133,0.588,0.545,1.549,1.134,0.784,0.913,0.627,0.583,0.915,1.565,0.822,1.11,1.185,0.824,0.408,0.987,1.13,1.285,0.397,0.657,1.462,1.106,0.353,1.153,1.165,0.965,1.544,1.001,0.28,0.696,0.965,1.175,1.369,1.051,1.345,0.919,0.653,0.85,1.12,1.188,1.314,0.73,1.216,0.761,1.041,1.023,0.858,1.258 +NM_005390,1.147,1.026,1.042,1.02,0.934,0.971,1.081,1.06,0.849,1.004,1.083,1.093,1.013,0.888,1.232,1.006,1.03,1.109,0.858,0.994,0.964,0.999,1.063,0.887,0.976,1.057,0.911,0.932,1.41,0.936,0.929,0.951,0.938,0.945,1.064,1.074,0.984,0.793,0.916,0.87,0.91,0.978,1.297,0.921,1.105,0.962,1.084,0.978,1.001,1.006,1.091,0.998,0.989,0.927 +NM_005391,0.789,0.8,0.931,0.795,1.147,1.194,0.791,0.859,1.472,0.933,1.033,1.429,0.847,0.953,1.28,1.468,0.676,0.987,1.225,1.121,0.817,1.155,1.222,1.098,0.654,0.986,1.184,1.354,0.803,0.925,1.07,0.972,1.371,0.795,0.773,0.968,1.204,0.872,1.0,1.07,0.902,1.022,1.149,0.65,0.929,1.232,1.259,0.935,1.176,1.0,0.903,1.0,1.097,1.225 +NM_005393,0.985,0.971,1.049,0.956,1.077,0.9,1.105,1.08,1.04,0.939,0.982,1.046,0.921,0.811,0.957,1.129,1.014,0.96,1.085,1.023,1.019,0.995,0.947,1.149,1.023,1.225,1.143,1.026,0.605,0.917,1.219,1.037,1.112,0.929,0.982,1.174,1.014,0.895,0.949,0.993,1.015,0.93,1.082,1.122,1.03,0.861,0.919,1.209,0.884,0.939,1.053,0.907,0.968,1.074 +NM_005395,0.93,1.001,1.017,1.012,0.89,0.928,0.811,0.641,0.948,0.805,0.926,0.911,0.884,0.872,1.117,1.527,0.936,1.025,1.003,0.904,1.005,0.996,1.156,1.014,0.988,0.943,0.962,0.943,0.697,1.057,0.942,1.097,0.964,1.061,0.977,0.84,0.996,0.824,0.97,1.138,1.068,1.047,1.1,1.354,1.025,1.039,1.033,0.852,1.156,0.915,0.999,1.388,1.002,1.576 +NM_005396,0.93,1.143,1.012,1.877,1.023,1.03,0.97,1.106,1.044,0.886,1.092,0.911,0.86,0.876,1.0,0.875,0.975,0.92,0.905,0.998,0.795,0.745,1.139,0.88,1.147,0.86,0.998,1.007,1.119,1.247,0.72,1.046,1.047,1.116,0.902,0.854,2.275,0.957,0.997,0.888,0.995,1.503,2.399,0.981,1.028,1.422,1.42,0.888,0.9,0.963,1.058,1.071,0.845,0.916 +NM_005397,0.869,1.177,0.778,0.946,0.862,0.959,0.946,0.691,0.902,0.948,1.063,0.888,0.883,0.77,0.679,1.133,0.896,0.961,0.859,1.089,0.829,0.901,1.539,0.783,0.977,0.878,1.048,0.823,0.878,1.236,0.719,1.779,2.418,1.042,0.873,1.04,0.979,1.1,1.63,1.587,0.917,1.394,0.957,1.124,0.935,1.222,0.974,0.871,1.174,0.855,1.221,1.389,0.841,2.148 +NM_005398,2.063,0.529,5.043,1.413,2.359,0.609,0.507,2.895,6.499,1.991,0.531,3.075,2.279,3.433,3.411,3.014,6.145,1.571,5.641,0.52,2.714,1.783,0.442,2.905,0.624,1.594,2.942,6.524,0.375,0.603,6.201,1.199,2.369,0.994,8.044,0.373,0.383,6.186,0.431,0.26,9.388,0.974,0.303,0.262,4.346,0.291,1.728,3.42,1.192,2.914,2.001,0.647,5.878,0.694 +NM_005399,0.949,0.916,0.976,0.96,0.948,1.001,0.957,1.113,0.995,0.802,1.044,0.899,0.861,0.998,0.909,0.988,0.939,1.012,1.001,1.096,0.948,0.856,1.141,0.969,1.154,0.971,1.119,1.043,1.278,1.148,0.948,1.024,0.934,1.073,1.099,0.961,0.96,1.089,1.059,0.989,0.893,1.057,0.826,1.203,1.094,1.176,1.073,0.92,1.017,0.875,1.0,1.02,1.001,0.99 +NM_005400,1.008,0.907,0.936,0.889,0.986,0.961,0.852,0.838,1.077,1.007,1.062,0.794,1.039,1.005,0.835,1.209,0.999,1.051,1.09,1.113,1.031,0.974,1.023,0.955,0.934,0.994,0.858,0.852,1.153,1.074,1.039,0.952,1.038,1.005,1.044,0.946,1.003,1.025,1.138,1.094,1.004,1.136,0.825,0.99,1.035,0.987,0.971,0.909,0.908,1.072,0.934,1.118,0.883,0.827 +NM_005401,0.927,1.117,1.127,0.894,1.097,1.006,1.209,0.927,1.092,0.999,1.012,1.081,0.984,0.821,0.976,1.055,0.976,1.147,0.849,1.04,0.864,1.087,0.861,1.017,0.87,0.874,1.125,1.011,0.963,0.964,1.154,1.027,1.291,0.927,1.155,0.975,0.904,1.148,0.88,1.007,0.953,0.986,0.924,1.012,1.095,0.926,1.132,0.974,1.037,0.965,1.027,0.975,1.175,1.11 +NM_005402,0.724,0.712,0.88,0.688,0.935,1.827,0.726,0.703,1.458,0.725,1.632,1.04,0.655,0.908,1.166,1.867,0.604,1.156,1.264,0.982,0.491,1.119,1.519,1.179,0.473,0.904,1.071,0.874,0.457,1.511,1.002,0.773,1.166,1.469,0.153,1.216,1.629,1.024,0.917,0.493,1.21,1.106,0.813,0.641,0.741,1.321,1.144,0.741,1.352,0.484,1.12,0.796,0.688,0.753 +NM_005406,0.879,1.1,1.043,0.79,1.021,1.108,0.944,0.84,0.963,0.734,1.288,0.913,1.046,0.929,0.814,1.221,0.936,0.954,0.978,0.852,0.941,0.869,1.408,0.986,1.017,0.776,1.062,1.008,0.689,0.968,0.958,1.253,1.01,0.994,0.954,1.022,1.16,1.385,0.937,0.996,1.071,1.242,0.955,1.004,1.012,0.903,1.003,0.854,1.2,0.883,1.212,1.07,1.094,1.169 +NM_005408,0.751,2.948,0.809,0.965,0.845,1.449,0.973,0.754,0.78,0.87,1.304,0.909,0.836,1.048,1.171,1.299,0.85,0.805,0.9,0.876,1.027,0.852,1.182,0.837,0.957,0.798,0.852,0.868,0.618,1.115,0.775,0.996,1.103,1.725,0.875,0.936,0.968,1.231,1.011,1.004,0.966,2.402,1.225,0.836,0.879,2.757,0.934,0.834,0.891,0.816,1.947,1.152,0.972,1.558 +NM_005410,0.409,1.309,2.151,0.669,0.947,2.319,0.872,0.5,0.9,1.012,2.528,0.522,0.625,0.716,2.609,3.569,0.721,0.714,0.768,3.17,0.349,0.286,1.514,0.797,0.798,0.397,1.361,0.974,0.239,1.589,0.85,0.837,1.251,1.901,0.253,0.81,2.302,0.662,0.91,1.335,1.084,1.452,1.518,0.661,0.654,1.925,1.639,0.363,2.595,0.524,1.745,0.486,0.607,1.578 +NM_005411,1.066,0.981,1.084,0.979,1.007,1.049,1.122,0.954,0.965,0.977,0.922,1.004,0.957,1.029,0.965,0.866,1.098,0.906,0.944,1.069,1.051,1.016,1.014,0.958,1.001,1.014,1.108,0.844,0.772,1.122,0.92,0.953,0.966,1.051,0.993,1.05,1.029,0.977,1.153,1.014,0.9,0.973,0.892,0.97,1.092,1.102,1.025,0.938,0.956,0.994,1.047,0.944,0.786,1.087 +NM_005412,0.752,0.66,0.907,0.807,0.749,0.923,0.535,0.405,0.795,0.999,0.954,1.055,0.636,0.496,0.746,1.124,0.631,1.008,1.292,0.635,0.474,0.672,1.041,1.411,0.911,1.028,1.575,0.649,0.316,0.937,0.707,1.007,1.718,0.932,0.125,1.46,0.854,0.917,2.03,1.286,0.872,0.9,0.7,1.976,1.012,0.687,1.302,0.751,0.85,0.949,1.175,0.833,1.028,1.281 +NM_005413,0.952,0.966,1.081,1.1,0.933,1.112,0.898,0.897,0.917,1.059,1.15,0.981,0.956,0.932,0.805,1.0,1.129,1.05,1.029,0.94,1.021,0.965,0.933,0.967,1.0,1.057,1.031,0.986,0.815,1.097,0.948,1.018,1.077,0.957,1.196,0.867,1.254,1.04,0.971,1.038,1.032,0.991,0.935,0.955,1.045,0.888,0.968,1.129,1.008,0.96,1.004,0.94,1.147,1.009 +NM_005414,0.994,1.098,1.036,0.888,1.039,1.004,0.909,0.862,1.096,1.08,0.909,0.857,0.814,1.219,1.037,1.032,1.069,0.933,1.293,0.992,0.936,0.956,0.968,0.881,0.898,0.791,0.979,0.933,1.0,1.065,1.14,1.243,1.541,0.945,1.052,1.076,0.977,0.962,1.192,1.073,1.295,0.934,1.081,1.041,0.939,0.957,1.147,0.951,1.018,0.898,0.798,0.889,1.119,1.498 +NM_005415,0.558,1.02,0.601,0.916,0.567,1.071,0.674,0.446,0.748,1.031,0.988,0.521,0.487,0.443,1.034,1.62,0.533,0.673,0.589,0.651,0.524,0.492,1.519,0.787,0.672,0.585,0.863,0.638,0.585,1.306,0.676,1.514,1.751,1.006,0.604,1.471,1.132,0.634,2.227,2.621,0.618,0.967,2.817,2.712,0.744,2.034,1.656,0.482,1.169,0.588,1.042,1.224,1.08,2.133 +NM_005416,1.501,0.0,2.734,0.957,2.66,0.013,0.0222,1.981,2.621,2.109,0.0,1.899,1.812,0.807,1.487,1.811,2.228,1.977,1.957,0.126,1.305,2.332,0.0,2.226,0.0106,1.828,2.125,2.237,0.0,0.0145,2.71,0.0101,1.558,0.0126,2.284,0.0578,0.0645,2.24,0.188,0.0171,2.104,0.0238,0.0198,0.0152,2.371,0.0,1.859,2.611,0.783,1.94,1.181,0.783,1.291,0.633 +NM_005419,0.767,0.945,1.616,0.729,0.843,0.958,1.342,0.413,1.051,0.93,0.969,0.645,0.459,0.672,1.08,0.839,0.955,0.992,0.702,1.154,0.758,1.008,1.073,0.842,0.702,0.752,1.116,0.698,0.573,1.313,0.839,2.459,1.635,1.183,0.278,0.78,1.158,0.863,1.398,0.956,1.069,1.238,0.654,1.605,0.763,0.842,0.657,0.81,0.498,0.631,0.987,1.186,1.235,3.097 +NM_005421,1.046,1.067,0.916,0.948,1.043,0.979,0.976,1.018,1.117,1.018,1.134,1.005,0.897,0.889,0.843,0.914,0.914,1.085,0.804,1.046,0.977,0.892,1.049,1.056,0.985,1.009,1.03,1.031,1.525,1.091,0.975,1.095,0.957,1.134,0.903,1.063,0.859,1.127,1.063,1.112,1.041,0.948,1.18,1.014,0.933,0.945,1.07,1.091,1.025,1.053,0.921,0.947,0.843,1.004 +NM_005422,1.056,0.987,1.049,0.845,1.015,0.955,0.891,1.177,0.89,0.989,1.008,0.951,0.848,0.925,1.075,1.033,0.973,0.99,0.919,0.995,1.098,0.948,0.966,0.949,0.993,0.921,1.185,1.096,1.448,1.081,1.067,1.062,1.004,0.971,1.041,1.021,1.01,1.078,0.934,1.089,0.907,0.979,0.986,1.005,1.085,0.808,1.058,0.97,0.903,0.958,0.971,0.997,1.212,1.095 +NM_005423,0.0374,10.38,0.0478,7.124,0.039,13.07,9.942,0.0501,0.0723,0.0532,8.168,0.129,0.0418,0.0411,0.639,1.259,0.0527,12.15,0.0461,7.406,0.0467,0.143,10.03,0.106,14.56,0.0582,0.0608,0.0764,7.377,16.76,0.0534,1.068,0.148,17.43,0.0431,0.752,12.19,0.0415,8.283,0.0462,0.0425,10.98,0.932,0.102,0.0492,2.469,1.632,0.0456,0.496,0.123,7.945,1.789,0.0529,0.136 +NM_005424,0.894,1.107,1.02,0.923,0.988,0.991,1.081,1.097,0.818,1.12,0.999,1.191,0.971,1.001,0.985,1.075,1.067,1.052,0.855,0.805,1.032,1.064,1.111,0.946,0.85,0.875,0.97,0.949,1.073,1.056,0.989,1.115,0.927,1.246,1.001,1.134,0.98,1.105,1.149,1.317,0.975,1.21,1.039,0.942,0.954,1.086,0.949,0.856,0.962,0.812,0.865,1.148,1.184,0.994 +NM_005425,0.88,1.092,0.901,1.089,0.945,0.858,1.122,1.082,0.877,0.761,0.914,1.005,1.021,1.127,1.09,1.086,0.928,1.052,1.15,1.054,1.002,0.957,0.919,1.037,1.031,1.061,1.006,1.09,1.198,0.984,1.011,0.897,0.926,0.959,1.074,1.017,0.971,0.927,1.047,1.073,1.17,1.12,1.033,0.949,0.994,0.998,1.007,1.035,1.065,1.01,0.917,1.102,1.064,1.07 +NM_005426,1.387,0.729,1.178,0.956,1.523,0.822,0.568,0.94,2.199,0.854,0.812,0.82,0.801,1.066,1.902,0.932,1.35,0.842,1.413,0.933,0.756,0.723,0.972,0.822,0.764,1.266,1.653,1.249,0.507,0.888,1.967,1.332,2.052,0.918,6.995,0.891,0.901,1.575,1.17,1.032,1.501,0.892,0.956,1.402,1.146,0.975,1.09,1.393,0.915,0.988,0.893,0.767,1.242,1.639 +NM_005427,1.006,1.053,1.087,1.061,1.092,0.926,0.995,1.111,1.092,0.883,1.035,0.981,1.05,0.898,0.862,1.0,1.078,1.017,1.004,0.991,0.983,1.022,0.94,1.052,0.933,1.017,1.0,0.909,1.096,0.941,0.935,1.113,0.977,1.002,1.142,1.039,0.952,1.082,1.172,0.894,0.994,0.957,1.192,1.064,1.094,0.824,0.902,1.003,0.989,0.964,0.941,0.908,0.938,0.845 +NM_005428,0.974,0.925,1.066,1.015,1.013,0.937,0.823,0.755,1.077,0.901,0.989,0.881,1.201,0.941,0.828,0.844,1.036,0.945,1.047,0.897,0.801,1.05,0.998,1.169,0.915,0.948,1.098,0.863,1.064,0.983,1.105,1.237,1.211,1.049,2.249,1.056,0.892,0.998,1.177,1.128,1.059,1.104,0.919,1.263,1.255,0.954,0.938,1.141,0.856,0.892,0.995,1.143,0.948,1.167 +NM_005429,0.943,1.007,0.907,1.047,0.934,0.955,0.908,1.052,1.026,1.096,1.006,1.006,1.09,1.343,0.898,0.951,0.968,0.876,0.845,0.832,1.101,0.986,1.07,1.011,0.998,0.96,0.999,1.083,0.761,0.964,0.981,1.697,1.136,1.1,0.822,0.933,0.977,1.031,1.071,1.152,1.061,1.077,0.934,0.929,0.915,0.843,0.898,0.854,1.0,1.011,1.161,1.022,1.066,1.055 +NM_005430,0.91,1.039,1.119,0.975,0.926,0.993,0.851,1.001,1.008,1.038,1.014,0.975,1.041,0.83,0.899,0.913,1.12,0.936,0.999,0.819,1.093,0.999,0.933,1.008,0.866,1.013,1.015,0.972,0.85,0.992,1.078,0.967,0.901,0.973,1.044,1.085,0.892,1.134,0.937,1.455,1.004,1.039,1.003,1.046,0.947,1.006,1.018,1.047,0.973,1.055,0.962,0.923,1.051,1.029 +NM_005432,0.994,1.023,0.914,1.012,0.952,1.064,1.273,0.835,1.134,0.872,0.977,0.96,0.843,1.166,1.046,1.057,0.881,0.887,1.045,1.183,1.041,1.054,1.178,0.936,0.871,1.029,1.0,1.013,1.169,0.97,1.107,1.058,1.571,0.971,0.815,0.967,0.979,1.019,1.229,0.95,0.886,0.838,1.071,1.375,1.109,0.985,0.849,1.012,1.041,0.963,0.942,0.862,0.97,1.363 +NM_005433,0.805,1.61,1.375,0.747,1.222,1.183,0.746,0.731,1.222,1.13,1.076,0.879,0.775,0.597,1.013,1.998,0.827,1.158,1.053,1.006,0.519,0.757,1.221,1.009,0.591,0.589,1.396,1.086,0.529,1.518,1.23,1.551,1.44,1.487,0.696,0.635,1.225,0.871,1.209,0.722,1.047,0.928,0.852,0.933,1.139,0.885,0.854,0.823,1.131,0.953,1.163,0.89,0.779,1.096 +NM_005434,1.482,0.0683,1.256,0.551,1.748,0.601,0.0829,1.416,2.231,1.38,1.018,1.002,0.911,1.239,1.472,1.941,0.973,1.003,1.506,1.036,0.696,1.439,1.309,1.617,0.0387,2.466,0.894,2.36,0.0503,0.229,2.171,0.214,0.867,0.166,2.948,0.246,1.132,1.778,0.453,0.213,1.746,0.787,0.671,0.578,1.674,1.313,1.473,1.589,1.01,1.156,1.362,0.595,1.374,0.535 +NM_005435,0.91,0.673,1.692,0.71,1.115,0.965,0.686,0.687,1.307,1.325,0.781,0.723,0.798,0.862,1.069,1.284,1.469,0.899,1.406,0.814,0.889,1.426,1.394,1.215,0.592,1.364,1.821,0.937,0.725,1.344,1.215,0.727,1.03,1.091,0.855,0.569,0.769,1.433,1.053,0.546,1.34,0.898,1.003,0.969,1.233,0.997,1.048,1.298,1.244,1.313,0.901,0.692,1.607,0.894 +NM_005436,1.142,0.767,1.838,0.721,1.628,0.883,0.611,1.553,1.837,1.303,0.839,1.265,1.217,1.379,1.368,1.383,0.972,1.022,1.511,0.868,0.767,1.125,0.886,1.291,0.548,1.116,0.993,1.877,0.698,0.708,2.115,0.663,1.996,0.955,2.953,0.632,0.886,1.38,1.01,0.409,1.362,0.696,0.522,2.129,1.271,0.848,1.008,1.782,0.803,1.175,0.818,0.627,1.115,1.375 +NM_005437,0.62,0.99,1.163,0.623,1.027,1.774,0.83,0.577,1.141,0.895,1.525,0.841,0.621,0.589,0.964,2.287,1.002,1.247,1.043,1.308,0.433,0.825,1.362,0.941,0.66,0.803,1.193,0.942,0.61,1.599,1.033,0.765,1.172,1.521,0.553,0.772,1.868,1.155,1.381,0.589,1.202,1.501,0.799,0.707,0.925,1.329,0.969,0.746,1.181,0.842,1.281,0.782,0.803,1.371 +NM_005438,0.979,0.926,0.937,1.045,0.919,0.983,0.892,0.943,0.879,1.146,0.932,1.058,1.208,0.776,1.08,1.106,1.076,1.142,0.938,0.915,1.11,0.904,0.913,0.781,0.944,1.007,1.109,0.843,0.63,1.023,1.075,0.863,1.226,0.938,0.979,1.022,1.137,0.922,1.147,0.977,0.887,0.906,0.939,1.268,0.928,0.981,0.992,1.008,0.96,0.811,1.076,0.895,1.213,1.066 +NM_005439,1.098,0.711,0.841,1.0,0.597,1.24,0.708,0.842,0.865,0.906,1.338,0.733,1.016,0.677,1.018,1.964,0.943,0.8,1.397,0.695,0.814,0.97,1.088,0.943,1.014,1.632,1.234,0.586,0.669,1.0,0.899,0.929,4.432,1.447,0.567,0.77,1.018,0.867,2.006,1.052,0.793,0.979,0.812,1.601,0.978,0.999,0.877,1.358,0.816,1.167,0.931,0.788,1.258,1.074 +NM_005440,1.083,1.004,0.988,1.181,1.082,0.892,0.793,0.997,0.88,1.032,1.061,0.946,1.015,1.024,1.127,0.908,0.921,1.109,1.053,1.035,1.049,0.92,1.086,1.11,0.991,1.045,1.079,0.993,0.958,0.996,1.055,1.193,1.0,0.944,0.959,0.953,0.855,1.032,1.117,0.969,1.04,0.911,0.878,0.849,1.065,0.972,0.978,0.998,1.092,1.081,1.023,0.943,0.857,1.021 +NM_005441,1.01,0.936,0.962,1.06,0.985,0.842,0.742,0.65,1.068,1.133,0.796,0.942,1.0,0.813,1.189,0.965,0.977,0.911,0.987,0.748,0.964,0.876,1.185,1.162,0.814,1.038,1.727,0.86,0.61,0.955,0.969,1.398,2.685,1.068,0.725,1.277,0.945,0.93,1.488,1.097,1.014,1.046,0.919,1.89,1.054,1.068,0.898,0.945,0.872,1.002,1.06,1.081,1.013,1.465 +NM_005442,1.001,0.965,1.206,0.831,0.87,1.038,1.221,1.102,0.986,0.949,0.87,1.016,0.89,0.842,0.853,0.968,0.96,0.858,0.911,1.036,1.042,0.915,0.957,1.098,1.127,0.876,0.975,1.009,0.799,0.971,0.937,1.121,1.004,1.0,0.98,1.153,1.032,0.934,0.989,1.012,0.901,1.079,0.765,1.019,1.086,0.93,0.92,1.029,1.074,0.815,0.99,0.92,0.944,1.4 +NM_005443,0.894,1.67,1.65,0.764,1.124,1.012,0.511,0.53,1.431,1.088,0.74,1.016,0.677,0.842,0.906,1.099,0.838,1.181,1.713,0.873,0.696,0.965,1.0,1.158,0.973,0.943,1.755,1.0,0.379,1.2,1.24,2.447,1.271,1.783,0.202,0.584,0.899,1.131,1.16,0.844,1.371,1.204,0.434,1.278,1.356,0.654,0.992,0.775,0.489,0.888,1.077,0.905,1.165,0.753 +NM_005444,0.976,0.825,1.064,0.955,1.051,1.011,1.131,1.224,1.041,0.933,0.894,1.042,0.98,1.003,1.446,0.91,1.035,1.041,0.996,0.965,0.94,0.902,0.999,0.989,0.877,0.98,0.944,0.965,1.436,0.91,1.076,0.958,1.236,1.017,0.88,0.961,0.928,0.884,1.16,1.119,1.134,1.012,1.072,1.22,0.999,0.957,0.982,1.032,1.214,0.984,0.942,0.94,1.097,1.331 +NM_005445,0.685,0.967,1.397,0.783,1.0,1.103,0.703,0.589,1.297,0.987,0.772,0.739,0.78,0.883,0.969,1.264,0.838,0.79,1.22,0.918,0.797,0.808,1.107,1.037,0.576,0.67,1.509,0.9,0.516,1.163,1.167,1.478,2.578,1.238,0.583,1.016,0.982,0.987,1.145,0.832,1.201,0.989,0.71,1.185,1.029,0.985,1.103,0.735,1.007,0.983,0.923,0.937,0.994,2.039 +NM_005446,1.039,1.803,1.012,1.108,0.993,0.978,1.061,1.198,1.164,1.106,1.098,0.922,1.021,0.915,1.282,0.975,0.885,1.075,0.86,0.984,1.015,0.871,0.95,0.993,2.675,1.062,0.852,0.923,0.909,1.122,0.894,1.019,1.016,1.128,0.856,0.979,1.028,0.927,1.016,0.902,1.068,1.005,0.961,0.952,1.031,1.105,0.864,0.866,0.848,1.101,0.891,0.881,1.031,0.821 +NM_005447,1.027,1.0,1.15,0.944,1.037,1.18,1.151,1.005,1.548,1.062,0.917,1.021,0.978,0.99,1.243,1.125,0.906,1.092,1.176,1.039,0.96,1.222,0.921,1.339,0.867,1.025,1.333,1.201,1.093,0.968,1.571,0.889,1.147,1.067,0.785,0.977,0.875,1.39,0.936,0.975,1.212,0.952,1.29,0.874,1.003,0.859,0.971,1.1,0.866,0.958,1.091,0.979,0.699,1.03 +NM_005448,0.979,1.197,0.98,0.897,0.975,0.945,1.125,1.095,0.869,1.044,1.041,0.944,1.012,0.967,0.927,1.022,0.97,0.874,1.048,1.01,0.969,1.04,1.003,1.086,1.053,0.981,1.031,1.114,0.856,0.82,1.004,1.04,1.116,0.924,1.011,1.05,1.032,0.985,1.114,0.94,1.026,0.979,0.985,0.983,0.959,0.989,1.089,1.105,1.161,1.055,0.913,1.023,1.037,1.019 +NM_005449,0.968,0.932,1.417,1.04,0.857,0.835,0.968,0.848,0.983,0.912,0.843,1.045,0.984,0.901,0.944,0.922,1.597,0.934,1.267,0.925,0.984,0.913,0.88,1.007,0.824,0.98,1.308,0.907,0.573,0.957,0.989,1.2,2.065,1.029,0.766,2.324,0.987,0.946,1.123,0.986,1.179,1.264,1.218,1.639,0.995,0.813,0.953,0.921,1.018,1.213,0.997,1.088,1.622,1.366 +NM_005450,0.909,0.886,0.944,1.026,1.017,1.001,0.925,1.002,0.907,1.076,1.065,1.167,1.0,1.007,1.079,0.91,0.963,1.11,0.757,1.006,0.98,0.96,0.993,1.073,0.955,0.959,0.952,0.984,1.215,0.945,0.865,0.942,0.886,0.958,1.023,1.094,1.007,0.895,1.016,0.884,1.14,0.999,0.947,1.041,1.006,1.087,0.969,1.007,0.979,1.059,1.119,1.093,0.994,0.856 +NM_005451,0.62,0.934,0.806,0.706,0.742,1.104,0.803,0.525,0.839,0.985,1.276,0.685,0.549,0.667,1.106,1.256,0.74,0.623,0.885,0.826,0.996,0.603,1.147,0.785,0.641,0.704,1.035,0.957,0.616,1.547,0.863,4.779,4.138,1.839,0.469,1.332,0.932,0.962,2.315,2.213,1.683,1.338,1.268,1.774,0.941,0.897,1.121,0.646,0.665,0.673,1.036,1.765,1.198,1.959 +NM_005452,0.904,0.912,0.801,0.964,0.767,0.925,0.692,0.64,1.102,0.95,0.904,0.764,0.904,0.81,0.86,1.037,0.984,0.803,1.077,0.916,1.029,0.878,1.252,0.998,0.805,1.285,0.931,0.766,0.778,1.045,0.914,1.548,2.319,1.184,0.628,1.179,0.971,0.979,1.696,1.18,0.934,1.055,0.7,1.815,1.067,0.877,0.843,0.918,0.968,0.923,0.916,0.91,1.082,1.576 +NM_005453,0.719,1.189,1.231,0.83,0.832,1.317,0.784,0.762,1.114,0.751,1.061,0.971,0.71,0.928,1.055,0.901,0.924,0.87,1.182,1.024,0.66,0.936,0.963,1.139,0.752,0.936,1.064,0.979,0.727,1.294,0.944,1.643,1.106,1.704,0.463,0.828,0.867,1.015,0.892,0.936,1.204,1.113,0.785,0.873,0.882,0.971,0.822,0.825,0.682,0.808,0.842,0.674,1.118,1.042 +NM_005454,0.977,0.856,1.097,0.892,1.015,1.135,0.949,1.032,0.917,1.023,0.895,0.936,0.964,1.025,0.809,1.023,1.109,0.975,0.995,1.025,0.953,1.006,1.041,1.018,1.03,0.907,0.89,0.986,0.998,1.035,1.105,0.992,1.245,0.973,0.783,1.022,1.008,0.896,0.985,1.084,1.126,1.056,0.857,0.951,1.047,1.048,0.97,1.131,1.009,0.938,1.046,1.007,1.095,1.103 +NM_005455,0.798,1.08,1.378,0.779,0.954,1.085,0.782,0.733,1.317,0.929,0.843,1.086,0.942,0.722,1.274,1.638,0.907,1.045,0.964,0.965,0.466,1.158,1.117,1.461,0.727,0.679,1.235,1.158,0.43,1.125,1.194,1.363,1.852,1.1,0.4,0.602,1.193,1.003,1.356,0.906,1.209,1.078,0.706,0.781,1.306,0.978,0.859,0.81,1.121,0.693,1.237,0.913,0.616,2.263 +NM_005456,0.884,1.18,0.821,0.926,0.896,0.997,0.948,0.881,0.879,0.885,1.113,0.902,0.852,0.939,0.92,1.264,0.835,0.824,0.938,1.003,0.984,0.962,1.08,1.024,1.094,0.917,1.057,0.923,0.619,1.194,0.871,1.247,0.948,1.257,0.865,0.935,1.139,0.911,1.138,1.316,0.88,1.253,1.116,1.106,0.889,0.977,1.094,0.89,0.865,0.903,1.105,0.97,0.94,0.835 +NM_005458,1.092,0.887,1.018,1.024,0.95,0.929,1.088,1.018,0.983,0.998,0.989,1.019,0.982,1.0,0.984,0.979,1.003,1.086,0.984,0.847,0.924,0.972,1.159,0.958,1.073,0.947,1.036,1.079,1.509,0.878,0.94,0.997,1.029,1.006,0.922,1.067,1.013,0.839,1.023,1.057,1.002,0.803,1.148,1.08,0.984,1.039,1.074,1.077,1.071,1.0,0.96,1.092,0.96,1.004 +NM_005459,1.108,1.217,0.977,1.095,0.87,1.039,0.723,0.984,0.809,1.129,1.076,0.971,1.049,1.009,1.18,0.947,0.96,0.922,1.031,0.842,0.988,1.051,0.802,1.065,1.062,0.943,1.076,0.969,0.902,0.992,1.048,1.059,0.974,0.949,0.971,0.982,1.027,1.067,0.945,0.948,0.974,0.981,0.863,0.97,0.953,1.12,0.933,1.079,1.0,0.972,1.034,1.026,0.926,0.843 +NM_005460,0.98,1.03,1.215,0.936,0.856,0.995,0.95,1.13,0.939,0.889,1.017,1.09,1.128,1.031,1.192,0.95,0.847,0.966,0.971,1.058,0.931,1.142,1.165,0.989,1.037,0.897,1.392,1.191,1.093,1.529,0.93,3.271,0.953,1.483,0.833,0.802,1.028,1.379,1.259,5.211,0.981,1.538,0.735,0.92,0.902,1.077,0.836,0.9,0.926,0.799,1.038,1.417,1.016,0.99 +NM_005461,1.305,0.549,3.305,0.668,2.967,0.448,0.454,0.91,2.638,2.883,0.471,1.959,1.028,1.529,1.61,1.211,2.071,1.25,3.703,0.714,1.499,2.046,0.843,2.733,0.385,1.788,2.067,3.119,0.26,0.62,2.02,1.968,1.404,0.794,0.282,0.742,0.525,2.318,0.519,0.612,3.197,0.573,0.584,0.43,2.533,0.471,1.395,1.641,0.565,2.212,0.842,1.004,1.761,1.098 +NM_005462,1.06,0.962,1.098,1.086,0.951,1.042,0.957,0.989,0.912,0.973,1.188,1.031,1.001,1.043,1.008,1.15,0.959,1.028,0.946,0.913,0.955,0.897,0.851,1.096,1.148,1.091,1.046,1.019,1.25,1.014,0.959,0.915,1.057,1.029,1.021,1.131,1.115,1.106,1.035,1.069,0.903,1.175,0.972,1.058,1.069,0.931,1.07,0.984,0.978,1.098,1.151,0.938,0.985,0.958 +NM_005463,1.073,0.873,1.432,1.041,0.968,0.876,0.666,0.773,1.774,1.286,0.821,1.015,0.765,1.157,1.135,0.914,1.139,1.008,1.102,1.076,0.733,0.846,0.785,1.447,0.713,1.051,1.356,1.125,0.498,0.997,1.175,1.509,0.968,0.925,1.079,0.912,0.865,1.177,1.049,0.998,1.301,0.926,0.95,0.959,1.061,1.052,1.053,0.884,0.795,0.98,1.026,0.821,1.051,0.836 +NM_005465,1.104,1.226,1.078,0.923,1.038,0.944,0.972,0.938,1.049,0.958,0.98,0.968,0.948,1.026,1.053,0.972,1.048,1.019,0.812,0.895,1.03,1.091,1.017,0.93,0.902,1.109,1.12,1.004,0.779,0.973,1.101,1.065,0.786,1.072,1.047,0.835,0.855,0.916,1.047,1.06,0.952,0.895,1.168,1.019,1.012,1.115,0.934,1.057,0.958,1.087,0.979,1.0,0.997,1.044 +NM_005466,1.062,0.941,1.091,0.951,0.941,1.025,1.007,0.997,1.175,1.11,0.992,0.962,0.881,0.918,1.105,0.997,0.829,0.947,1.103,1.279,1.028,1.07,0.968,1.036,1.04,0.835,0.985,0.941,0.99,1.038,1.017,1.06,1.481,0.941,0.973,1.066,1.001,0.873,1.013,0.922,1.071,0.928,0.994,0.948,0.968,0.956,1.06,0.977,0.91,0.959,1.019,0.896,1.078,1.485 +NM_005468,1.028,1.074,0.95,0.978,0.971,1.091,0.937,0.97,1.126,0.985,1.067,0.999,1.043,1.096,0.948,0.98,0.911,0.906,0.941,0.938,0.957,1.101,0.965,0.993,0.849,0.983,1.001,0.935,1.021,1.076,0.977,1.435,1.082,1.151,0.983,0.95,1.143,1.008,1.072,1.123,1.151,1.115,1.098,1.021,1.083,1.026,1.115,0.957,0.888,0.936,0.934,0.889,0.988,0.942 +NM_005471,0.559,0.899,1.043,0.566,0.657,1.131,0.753,0.396,0.742,0.763,1.419,0.77,0.58,0.649,1.004,1.917,0.832,0.722,1.024,1.246,0.508,0.617,1.749,0.855,0.584,0.64,1.145,0.641,0.507,1.452,0.7,1.914,2.421,1.253,0.378,1.064,1.402,0.729,1.347,1.341,0.778,1.51,0.79,1.963,0.971,0.969,1.124,0.491,0.9,0.724,1.145,1.189,0.998,2.274 +NM_005472,0.167,3.284,0.214,0.9,0.165,2.402,1.248,0.137,0.21,0.149,3.385,0.251,0.187,0.165,1.001,2.971,0.184,0.808,0.136,2.383,0.165,0.174,2.083,0.188,0.394,0.146,0.269,0.157,0.532,2.957,0.162,1.413,1.691,3.043,0.132,1.55,2.171,0.168,2.737,0.495,0.182,2.644,1.63,0.892,0.152,1.808,0.534,0.149,1.815,0.13,3.064,1.142,0.198,1.151 +NM_005474,3.386,2.051,2.5629999999999997,1.8679999999999999,2.793,1.824,2.031,1.888,3.786,2.5140000000000002,1.616,2.708,2.26,2.47,2.527,1.6720000000000002,1.883,2.4450000000000003,3.66,1.922,2.396,4.514,1.549,3.434,1.488,3.7670000000000003,2.037,2.436,1.54,2.107,2.601,2.6719999999999997,2.534,1.888,1.896,1.454,1.4500000000000002,3.233,1.915,2.348,2.4939999999999998,2.1470000000000002,1.781,2.322,2.888,1.288,1.8900000000000001,3.441,1.263,2.2670000000000003,1.48,1.363,1.846,1.7029999999999998 +NM_005475,0.804,1.056,1.11,0.892,0.809,1.073,0.945,0.799,0.856,0.823,1.0,0.805,0.838,0.847,1.001,1.087,0.847,0.96,0.904,0.993,0.796,0.837,1.198,0.852,0.978,0.783,1.022,0.819,0.963,1.08,0.837,2.075,1.68,1.211,0.852,1.117,1.186,0.806,1.358,2.017,0.95,1.228,0.949,1.287,0.781,1.003,0.985,0.757,0.965,0.81,1.132,1.518,0.956,2.101 +NM_005476,0.502,0.633,2.068,0.66,1.103,0.588,0.446,1.283,3.607,0.637,0.888,0.598,0.89,0.734,1.779,1.102,1.031,0.54,1.571,1.638,0.611,0.798,1.752,0.717,0.394,0.992,1.412,1.44,0.258,0.528,1.885,1.165,0.98,0.742,4.017,1.278,0.722,0.649,0.961,0.574,1.305,1.629,0.568,1.15,1.349,1.05,0.903,1.808,1.969,1.01,1.547,2.815,0.644,6.566 +NM_005477,1.054,0.986,0.985,1.039,1.009,1.106,1.004,1.031,0.933,0.933,1.066,1.012,0.943,0.869,0.823,0.839,1.095,1.12,0.914,0.992,1.061,1.08,0.928,0.886,1.038,1.138,0.917,1.084,0.886,1.038,1.137,1.054,0.929,0.924,0.973,0.922,0.974,1.098,0.999,1.023,0.946,0.891,1.106,1.004,0.952,0.873,0.942,0.979,1.137,1.006,1.094,0.919,1.062,0.913 +NM_005478,1.225,1.139,0.946,1.029,0.996,1.051,0.984,0.879,1.157,0.974,1.146,0.938,0.951,0.996,1.246,0.937,1.013,1.068,0.894,1.466,1.012,1.087,1.017,0.829,0.995,1.052,0.927,0.953,1.035,0.873,1.147,1.047,0.94,1.027,0.907,0.992,1.038,0.821,0.989,0.996,0.883,0.93,1.174,1.032,0.913,1.571,1.13,1.013,1.034,1.066,0.997,1.101,0.849,0.977 +NM_005479,1.001,1.059,1.004,0.807,0.879,1.544,1.059,0.823,0.834,0.844,0.967,0.871,0.817,0.969,0.935,1.207,1.025,1.194,0.999,1.253,0.892,0.975,0.958,0.898,0.917,0.917,1.017,1.021,1.094,1.187,1.096,1.149,1.053,1.276,0.929,0.837,1.079,0.979,1.369,0.896,0.883,1.378,0.92,0.916,0.912,0.936,0.931,1.033,1.051,0.922,1.014,0.863,0.855,1.097 +NM_005480,0.85,0.868,1.128,1.116,0.986,1.003,0.768,0.922,1.041,0.914,0.894,0.914,0.82,0.87,0.908,1.094,1.011,0.932,1.058,0.89,0.958,0.965,1.219,1.223,0.837,0.87,1.497,0.952,1.177,0.967,1.055,1.19,2.1,1.008,0.799,1.557,0.867,0.857,1.449,1.313,0.97,0.952,0.957,1.501,0.998,0.927,0.866,0.996,1.001,0.843,1.126,1.006,0.999,2.21 +NM_005481,0.583,0.928,1.533,0.909,0.745,1.117,0.94,0.469,0.785,0.934,0.952,0.641,0.616,0.576,1.005,1.374,1.165,1.327,1.039,0.907,0.567,0.764,1.733,0.679,0.797,1.173,1.075,0.764,0.766,1.288,0.783,1.107,1.118,1.35,0.724,0.821,1.058,0.877,1.459,2.154,0.915,1.171,0.756,1.564,1.335,0.822,0.672,1.036,1.099,1.181,1.202,0.759,0.958,0.925 +NM_005482,0.738,1.176,1.066,0.907,0.835,0.959,0.673,0.724,0.692,0.999,1.29,0.672,0.653,0.686,0.811,1.396,0.775,0.804,1.272,1.017,0.702,0.684,1.361,0.802,1.009,0.753,0.921,0.902,0.806,1.441,0.787,1.237,3.168,1.45,0.508,0.907,1.275,0.703,1.525,0.773,0.834,1.149,1.017,2.118,0.846,1.03,0.827,0.804,0.886,0.776,1.116,0.943,0.955,1.951 +NM_005484,0.866,0.967,0.938,0.941,0.753,1.246,0.735,0.632,0.973,0.796,1.027,0.924,0.837,0.816,0.93,1.094,0.935,0.818,1.082,0.909,0.758,0.92,1.143,1.087,0.992,1.041,1.33,0.81,0.597,1.234,0.802,1.457,1.406,1.188,0.523,0.733,1.24,0.997,1.37,0.888,1.048,1.003,0.706,1.555,0.974,0.801,0.933,0.853,0.878,0.898,1.202,0.891,0.962,1.303 +NM_005485,0.798,1.199,0.974,0.812,0.711,1.693,0.864,0.759,0.789,0.737,1.304,0.702,0.711,0.79,1.048,1.636,0.671,0.976,0.842,1.423,0.841,0.735,1.402,0.864,0.943,0.702,0.938,0.742,0.69,1.439,0.682,1.1,0.996,1.463,0.706,0.989,1.432,0.769,1.518,0.844,0.821,1.621,0.89,1.043,0.74,1.257,0.72,0.686,1.433,0.688,1.288,0.739,0.887,3.184 +NM_005486,0.69,1.195,1.02,1.069,0.791,1.393,0.656,0.538,0.977,0.931,1.624,0.565,0.602,0.553,1.154,1.676,0.637,1.029,0.782,1.367,0.516,0.545,1.489,0.713,0.884,0.656,0.99,0.781,0.507,1.229,0.746,1.022,0.81,1.703,0.472,0.921,1.581,0.732,1.378,0.53,0.779,1.454,1.055,1.425,0.707,1.534,0.908,0.603,1.32,0.675,1.186,0.659,0.812,1.242 +NM_005487,0.961,1.002,1.029,0.928,1.037,0.97,1.021,0.868,1.017,0.985,1.047,0.93,0.927,1.058,0.95,1.027,1.012,1.004,0.941,1.067,0.933,0.953,1.016,0.916,0.986,0.928,0.876,0.998,0.808,1.099,1.022,1.133,0.928,1.054,1.096,0.884,0.953,1.014,1.09,1.067,1.139,1.097,0.856,0.969,0.951,0.951,0.857,1.017,0.862,1.149,0.943,1.077,1.097,1.028 +NM_005488,2.222,0.55,2.174,0.811,2.065,0.702,0.315,1.503,2.723,2.261,0.459,1.338,1.309,1.319,1.531,1.327,2.057,1.729,2.332,0.915,0.625,1.788,0.607,1.86,0.348,2.586,1.813,2.205,0.345,0.797,1.979,0.92,0.879,0.574,3.063,0.546,0.805,1.831,0.936,1.003,2.332,0.802,0.715,0.564,2.483,0.736,1.542,3.346,0.954,2.014,1.013,0.98,1.761,0.705 +NM_005489,1.034,1.008,1.014,0.898,0.944,0.923,0.973,0.901,0.895,0.915,0.954,0.99,0.94,0.928,1.116,0.942,1.043,1.026,1.039,1.004,1.032,0.91,0.913,0.891,0.913,1.013,0.991,1.02,1.251,1.064,0.923,1.265,0.955,0.983,0.843,0.989,0.941,0.974,1.202,1.199,0.881,1.027,1.044,1.031,0.955,0.848,1.008,0.98,0.958,0.869,0.954,1.085,0.903,1.039 +NM_005490,1.09,0.779,0.999,0.965,1.161,1.117,0.73,1.001,1.198,0.756,0.859,1.044,1.185,0.717,1.106,0.991,1.041,0.905,1.15,0.845,0.894,1.312,1.15,1.179,0.838,1.304,0.832,1.099,1.115,0.911,0.954,0.767,0.992,1.047,2.121,1.116,0.92,1.16,1.27,0.82,1.056,0.739,0.863,1.109,0.914,0.946,0.937,1.639,0.885,1.066,0.782,0.751,0.999,1.054 +NM_005491,0.967,0.987,1.016,0.831,0.936,0.909,1.0,1.094,0.973,0.924,0.886,1.033,0.928,0.775,0.814,0.928,0.946,0.765,1.026,1.289,0.907,0.982,1.088,0.982,1.04,1.036,0.961,0.946,0.69,1.179,1.012,1.16,1.038,1.094,0.918,1.048,0.967,0.996,1.089,1.27,0.981,1.021,0.808,1.071,0.962,1.035,0.992,0.915,1.125,0.884,1.055,0.944,1.0,0.994 +NM_005492,1.099,0.996,0.874,1.015,0.997,1.025,1.195,0.985,0.989,0.953,0.889,1.024,1.028,1.105,0.942,0.932,1.035,0.985,0.858,0.891,1.081,1.028,0.979,1.004,0.939,1.122,1.059,0.979,0.59,0.913,0.976,1.036,0.937,0.968,1.081,1.2,1.136,0.87,1.013,1.028,0.998,1.042,0.975,0.984,1.07,0.843,1.005,1.034,1.026,0.917,0.959,1.061,1.007,1.059 +NM_005493,2.462,0.868,2.272,1.444,3.913,0.738,0.614,1.958,4.938,2.029,0.821,1.159,1.649,1.435,2.476,1.287,1.567,1.858,3.026,0.656,1.166,1.519,0.834,1.985,0.678,1.91,1.691,3.672,0.422,0.828,3.64,1.002,1.334,0.937,5.045,0.642,0.704,2.407,0.827,0.699,2.969,0.732,0.687,0.911,2.408,0.902,1.842,2.89,0.812,1.899,0.889,0.839,1.709,0.944 +NM_005494,1.682,1.857,4.013,1.323,2.213,1.499,0.9989999999999999,1.505,2.734,2.4770000000000003,1.582,1.63,1.853,1.7770000000000001,1.982,2.3520000000000003,2.502,1.8359999999999999,2.857,1.863,1.486,1.555,2.1790000000000003,2.0140000000000002,1.073,1.596,3.976,2.194,0.7529999999999999,1.758,2.9450000000000003,2.325,3.176,1.801,2.4370000000000003,2.042,1.71,2.073,2.016,1.7349999999999999,3.894,1.898,1.9000000000000001,1.8809999999999998,3.19,1.802,2.886,1.6989999999999998,2.146,3.0540000000000003,1.7189999999999999,2.025,3.645,2.893 +NM_005495,1.112,0.941,0.949,1.038,1.069,1.148,0.744,0.94,0.894,0.893,1.358,0.974,1.151,0.774,1.349,1.638,0.986,0.9,1.104,1.393,0.928,0.967,1.084,0.969,0.989,0.951,0.977,0.98,0.837,0.977,0.954,0.844,0.969,0.896,0.9,0.912,1.482,0.755,1.061,1.057,0.884,1.495,1.178,0.913,0.975,1.626,1.041,0.869,1.087,1.036,1.157,0.928,1.008,0.883 +NM_005497,1.003,0.997,0.891,0.951,0.93,0.911,0.971,1.129,0.941,1.008,1.016,0.972,0.995,0.934,0.903,0.989,0.953,1.107,1.07,0.837,0.923,0.993,0.999,1.088,1.127,0.981,0.84,1.099,1.133,0.976,1.014,1.089,1.057,1.046,1.058,1.038,0.938,1.077,0.999,1.008,0.965,0.935,0.871,0.935,0.932,0.968,1.02,1.023,0.937,1.005,1.021,1.063,0.868,1.034 +NM_005498,0.756,1.285,0.771,0.902,0.645,1.823,0.746,0.409,0.95,0.709,1.38,0.612,0.472,0.446,1.098,2.173,0.775,1.264,0.987,1.524,0.369,0.674,2.119,0.818,0.847,0.767,0.925,0.561,0.814,1.709,0.731,0.638,1.236,1.92,0.362,1.142,1.64,0.643,1.535,0.814,0.621,1.497,0.902,1.404,0.808,1.194,0.821,0.738,1.379,0.62,1.635,1.023,0.74,1.072 +NM_005499,0.818,1.106,0.935,0.941,0.979,0.843,0.734,0.755,1.186,1.071,0.989,0.781,0.808,0.876,1.008,1.132,0.818,0.96,0.984,1.113,0.906,0.789,1.276,0.929,0.93,0.872,1.186,0.917,0.617,0.994,0.998,1.117,2.084,1.255,0.745,1.251,0.882,0.839,1.212,0.878,1.099,0.885,0.918,1.296,0.961,0.947,1.013,0.824,1.006,0.966,1.043,0.997,1.047,1.919 +NM_005500,0.651,1.055,1.038,0.737,0.888,1.059,0.559,0.366,0.996,1.035,1.066,0.844,0.651,0.607,0.768,1.272,0.702,0.976,1.263,0.875,0.412,0.869,1.662,1.198,0.588,0.87,1.313,0.876,0.488,1.29,0.718,0.998,2.385,1.283,0.319,1.208,1.042,0.962,1.698,0.946,1.019,1.066,0.548,1.482,1.012,0.902,1.172,0.959,0.789,0.76,1.026,0.925,0.874,1.842 +NM_005502,0.726,1.918,2.239,0.617,0.964,0.865,0.703,0.615,0.879,0.99,0.742,1.059,0.698,0.943,0.999,0.837,1.552,1.013,1.096,1.12,0.663,0.819,0.777,0.962,0.632,0.609,2.192,0.818,0.993,2.036,0.849,4.417,1.273,1.471,0.58,0.489,0.899,1.151,1.293,3.046,1.406,1.587,0.575,0.681,1.229,0.699,0.733,0.662,0.663,1.747,0.795,2.635,1.225,1.82 +NM_005503,0.95,0.91,0.884,0.979,1.05,0.946,0.882,1.184,0.936,1.011,1.019,0.982,0.971,0.85,1.266,0.977,0.931,1.029,1.038,0.94,1.104,0.952,1.063,1.005,0.977,1.074,1.026,1.118,1.051,1.102,1.146,1.092,1.115,1.063,0.994,1.096,0.996,0.903,0.987,1.091,1.038,1.028,1.326,0.999,0.894,1.092,0.956,0.993,0.964,1.011,1.071,1.079,1.061,1.039 +NM_005504,0.883,1.001,1.063,1.083,0.971,1.052,1.099,0.953,0.972,1.039,0.954,0.96,1.046,0.881,1.018,1.015,1.617,0.949,1.012,1.21,0.954,1.043,0.991,0.973,1.009,0.908,0.833,1.203,1.179,1.098,1.091,2.163,1.115,1.056,0.997,1.639,0.812,0.999,0.934,1.207,0.951,1.05,0.797,1.973,0.931,0.831,1.019,0.959,1.071,1.135,0.823,1.315,1.173,1.462 +NM_005505,0.451,1.308,0.585,0.775,0.505,1.35,0.826,0.348,0.682,0.655,1.21,0.509,0.339,0.326,0.737,1.667,0.446,0.78,0.487,1.493,0.319,0.396,2.386,0.698,0.602,0.444,0.752,0.528,0.494,2.781,0.449,2.598,0.856,1.105,0.433,1.484,1.838,0.525,1.386,2.978,0.464,1.463,0.941,1.118,0.793,2.01,1.546,0.464,1.25,0.518,1.375,1.532,0.535,2.024 +NM_005506,0.404,1.297,0.908,0.553,0.615,2.027,0.921,0.341,0.864,0.598,1.476,0.511,0.39,0.496,1.121,1.891,0.532,0.885,1.021,1.557,0.341,0.613,1.768,0.683,0.757,0.459,0.97,0.596,0.571,2.187,0.664,2.318,1.245,2.209,0.0852,0.687,1.956,0.747,1.079,0.731,0.851,1.908,0.684,1.218,0.64,1.362,1.013,0.447,1.016,0.451,1.253,0.772,0.807,1.239 +NM_005507,0.896,0.62,0.616,1.591,0.457,1.727,0.346,0.263,0.557,0.593,1.513,0.294,0.523,0.336,1.0,2.703,0.447,0.776,1.107,0.645,0.784,0.203,1.249,0.416,1.006,1.186,0.753,0.33,0.335,1.017,0.539,0.773,2.158,1.813,0.334,1.104,1.585,0.39,3.9,0.781,0.621,1.081,0.817,2.549,0.63,1.218,1.0,0.629,1.193,1.177,1.164,0.533,0.919,0.692 +NM_005508,0.939,0.996,0.938,1.117,1.054,0.96,0.896,0.972,0.821,0.993,0.877,0.967,1.106,0.988,1.016,1.082,1.123,1.025,0.996,1.016,0.903,1.068,1.102,1.033,0.984,1.031,1.07,1.012,1.305,1.02,0.967,0.948,0.928,0.91,1.004,0.929,0.908,1.101,0.991,0.921,1.136,0.92,1.135,0.983,1.083,1.045,0.866,0.974,0.996,0.866,1.039,1.11,0.999,0.986 +NM_005509,0.919,0.811,1.448,1.03,0.894,1.101,0.818,1.11,1.095,1.033,0.989,1.065,1.134,0.904,0.849,1.167,0.999,0.95,0.906,1.204,0.767,1.347,0.91,1.053,0.907,0.921,1.191,0.856,1.892,1.035,1.174,0.844,1.105,0.946,0.988,0.777,0.937,1.315,1.046,0.913,1.207,1.014,0.915,0.863,1.118,1.056,1.168,0.907,1.056,0.91,0.941,0.936,0.952,1.084 +NM_005510,0.91,0.932,0.946,1.125,0.996,1.185,0.846,0.771,0.91,0.984,1.001,0.933,0.879,0.862,1.001,1.136,1.011,1.002,0.96,0.872,0.814,0.78,1.079,1.045,1.119,0.899,0.869,0.986,0.744,1.035,0.886,1.269,1.376,1.157,0.878,0.98,0.942,0.952,1.457,0.787,0.925,0.988,0.864,1.092,0.978,0.958,0.886,0.881,0.861,1.005,1.05,0.944,0.96,1.089 +NM_005511,0.834,1.117,1.026,0.863,0.932,1.073,0.984,0.964,1.168,0.929,0.917,0.977,1.061,1.088,0.911,1.041,0.899,1.068,1.224,1.069,0.982,1.082,1.066,0.999,0.978,0.946,0.915,0.896,1.199,0.866,1.069,0.961,1.163,0.831,1.079,1.105,1.026,1.011,1.067,0.961,1.156,0.894,0.894,1.038,0.982,0.977,1.093,0.871,0.975,1.104,1.125,0.993,1.381,0.961 +NM_005515,0.642,1.299,0.715,0.798,0.654,1.608,0.879,0.67,0.68,0.646,1.404,0.692,0.826,0.663,1.137,1.827,0.661,0.943,0.751,1.143,0.651,0.684,1.987,0.595,0.867,0.644,0.708,0.609,0.812,1.287,0.629,1.156,1.925,1.567,0.683,1.022,1.202,0.631,1.241,1.291,0.663,1.178,0.795,1.422,0.718,1.293,1.162,0.644,1.214,0.712,1.24,0.821,0.708,1.91 +NM_005516,0.945,0.866,1.489,0.639,0.709,1.609,0.665,0.483,0.956,0.706,0.882,0.539,0.719,0.729,0.996,0.963,1.054,0.863,1.357,0.44,0.791,0.758,0.636,1.263,0.924,0.941,1.323,0.812,0.377,1.004,0.867,0.897,1.207,1.38,1.036,0.695,1.13,0.746,1.699,0.791,1.566,1.664,0.776,1.45,1.06,0.783,0.991,0.693,0.772,1.069,1.053,0.716,1.693,2.527 +NM_005517,0.576,1.058,1.347,0.669,0.835,1.268,0.625,0.547,1.155,1.025,0.493,0.847,0.92,0.486,1.0,2.009,0.851,0.962,1.146,0.898,0.332,1.013,1.526,1.361,0.529,0.576,1.846,0.766,0.289,1.166,1.021,1.166,2.156,1.4,0.0724,0.589,0.975,0.85,1.697,0.607,1.081,1.116,0.4,1.104,0.982,0.731,1.081,0.752,1.073,0.818,1.302,0.747,0.502,1.643 +NM_005518,0.335,2.374,0.14,1.436,0.153,4.173,1.477,0.168,0.137,0.147,5.979,0.137,0.21,0.183,1.176,3.361,0.133,1.797,0.155,3.943,0.154,0.171,4.133,0.143,1.542,0.143,0.133,0.128,1.945,5.309,0.147,0.166,0.22,4.317,0.145,0.267,3.385,0.152,3.59,0.192,0.12,5.91,3.657,0.21,0.159,3.185,1.398,0.134,2.587,0.146,1.378,0.173,0.144,8.044 +NM_005520,0.792,0.689,1.312,1.146,0.956,0.754,0.769,0.507,1.413,1.075,1.037,0.756,0.628,0.775,1.179,1.43,0.829,0.832,1.457,0.968,0.832,0.482,1.16,1.18,0.661,1.049,1.28,1.118,0.393,0.936,1.032,1.145,2.734,0.992,0.36,1.066,1.062,0.755,1.086,1.413,1.184,0.894,0.835,1.022,1.13,0.784,1.039,0.59,1.125,0.75,0.889,1.013,1.112,1.868 +NM_005521,1.136,0.921,1.027,0.986,1.035,0.975,0.944,1.097,1.082,0.919,1.064,0.911,0.975,0.934,0.929,1.202,1.016,0.954,0.887,1.001,0.941,0.999,0.976,0.987,0.966,1.066,1.112,1.029,1.257,1.064,1.089,1.068,0.999,1.052,1.059,1.215,0.962,0.983,1.043,1.06,0.935,0.938,1.15,0.978,0.945,1.02,0.898,0.964,1.033,1.176,0.983,0.924,0.996,1.087 +NM_005522,1.038,0.896,1.035,0.923,1.083,0.908,0.894,1.02,0.923,0.949,0.968,0.984,1.0,1.01,1.072,0.862,0.925,1.1,1.046,0.994,1.028,1.128,0.961,1.089,1.047,1.006,1.008,0.955,0.673,1.083,1.002,1.086,0.875,1.094,1.164,0.942,1.07,0.976,1.04,0.946,1.042,0.969,0.912,1.07,0.964,1.009,0.916,1.071,0.94,0.889,0.869,0.882,0.931,0.948 +NM_005523,1.028,0.973,0.959,0.907,0.872,1.476,0.935,0.951,1.037,0.959,1.994,0.809,0.977,0.728,1.367,1.711,0.905,0.874,0.849,1.53,0.917,0.881,2.488,0.949,0.881,0.988,0.891,1.25,0.922,0.848,0.783,0.874,1.547,0.697,1.014,1.321,1.155,0.849,0.933,1.007,1.113,1.427,1.159,1.947,0.923,2.158,1.118,1.107,1.601,0.842,1.594,1.196,1.018,1.262 +NM_005524,1.182,0.808,1.332,1.055,0.834,1.279,1.031,0.812,1.063,0.841,1.218,0.769,0.938,0.798,1.029,1.166,0.966,0.955,1.235,0.986,0.746,1.021,1.212,1.194,0.94,0.901,1.199,0.977,0.911,1.112,1.194,0.871,1.83,1.362,0.475,0.584,1.138,1.05,1.563,0.568,0.987,1.164,0.64,1.053,1.035,0.829,0.72,1.023,0.745,0.882,1.16,0.731,1.257,0.834 +NM_005525,1.855,2.143,1.759,2.001,2.051,1.978,1.874,2.096,1.783,1.91,1.9180000000000001,1.829,1.9489999999999998,1.823,2.299,1.9049999999999998,1.693,2.132,1.876,1.844,1.871,1.685,1.9369999999999998,1.9020000000000001,1.833,2.0620000000000003,1.998,1.8399999999999999,2.2880000000000003,2.1689999999999996,1.927,2.726,2.233,2.316,2.167,1.943,2.154,1.95,2.266,3.5010000000000003,2.011,1.9819999999999998,2.093,1.818,1.984,1.988,1.963,1.849,2.048,1.92,1.8689999999999998,2.576,1.9180000000000001,2.276 +NM_005526,0.851,0.998,0.905,0.95,0.857,0.944,0.789,0.79,0.836,0.781,0.971,0.902,0.988,0.77,1.0,1.17,0.854,0.931,0.993,0.998,0.957,1.123,0.968,1.006,0.883,1.007,0.924,0.771,0.917,0.989,0.952,1.226,2.292,1.243,0.832,1.108,0.771,1.041,1.534,1.3,0.883,1.084,0.767,1.694,1.051,1.0,0.935,1.145,0.948,0.961,0.861,0.947,0.983,1.258 +NM_005527,0.977,0.915,1.123,0.845,1.089,0.911,0.924,1.016,0.919,1.179,0.881,0.931,1.011,0.905,1.005,0.997,0.895,1.037,0.974,1.233,1.061,0.94,0.876,1.028,0.954,0.945,0.984,1.053,0.963,1.106,0.948,1.011,1.26,1.175,1.061,0.982,1.046,1.076,0.962,1.136,1.01,1.103,0.826,0.872,0.895,1.034,0.999,0.98,1.014,1.004,1.016,1.182,1.105,0.896 +NM_005528,1.038,1.275,1.019,1.04,0.82,1.144,0.616,0.857,0.959,0.795,0.983,0.81,1.136,0.895,0.762,0.84,0.895,0.977,1.181,0.979,1.024,1.23,0.953,0.906,1.492,1.32,0.96,0.869,0.767,1.215,0.88,1.331,1.223,1.497,0.919,0.915,0.938,1.289,1.263,0.736,0.852,1.339,0.795,1.386,0.848,0.825,0.78,0.991,0.652,0.866,0.869,0.635,1.038,0.818 +NM_005529,1.048,1.099,1.01,0.876,0.888,0.998,0.915,0.826,1.011,0.969,1.012,0.946,0.875,0.818,0.902,1.017,0.982,0.96,0.911,0.951,1.074,0.946,1.058,0.954,1.101,0.987,0.988,0.818,0.988,1.032,0.932,1.127,1.192,0.909,0.968,1.059,0.948,0.984,1.553,1.086,0.942,1.241,0.939,1.196,1.026,1.058,1.013,0.809,1.047,0.792,1.035,1.036,1.04,1.027 +NM_005530,0.721,0.864,1.179,1.068,0.696,1.197,0.693,0.475,0.862,1.035,1.357,0.965,0.785,0.742,0.992,3.175,0.95,0.852,1.504,0.764,0.754,0.637,1.602,0.853,0.731,0.738,1.337,0.548,0.438,0.922,0.725,0.71,1.22,0.907,0.428,1.484,1.745,0.588,1.473,0.665,0.997,1.083,1.218,0.843,1.244,1.31,1.002,0.639,2.18,1.304,1.191,1.185,1.459,1.209 +NM_005532,0.493,1.276,0.786,0.837,0.107,2.322,1.776,0.0792,0.258,0.118,1.952,0.125,0.051,0.0209,1.174,1.577,1.505,2.186,0.11,0.737,0.555,0.065,0.91,0.685,0.657,0.287,0.391,0.237,0.973,2.019,0.0487,0.41,1.805,2.641,0.122,0.917,2.184,0.0541,2.776,0.592,0.399,1.246,0.748,4.497,0.821,1.316,0.726,0.397,0.58,0.222,1.19,1.043,1.135,1.498 +NM_005533,0.379,0.905,0.595,0.739,0.277,2.122,1.856,0.252,0.298,0.324,1.693,0.245,0.321,0.226,0.978,1.807,0.533,1.122,0.356,0.941,0.329,0.271,1.2,0.345,0.835,0.286,0.477,0.289,0.621,1.172,0.285,1.479,1.035,1.741,0.224,0.806,1.899,0.239,2.612,0.664,0.438,1.446,0.84,3.397,0.354,0.985,0.702,0.29,1.529,0.337,1.407,1.27,0.689,4.108 +NM_005534,0.549,0.983,1.053,0.846,0.945,1.745,0.649,0.544,1.078,0.786,1.595,0.83,0.74,0.506,1.097,1.274,0.917,0.812,1.143,1.604,0.354,0.716,1.287,0.89,0.374,0.608,1.573,0.979,0.583,1.601,0.873,1.134,0.64,1.684,0.593,0.623,1.499,0.94,1.122,1.76,0.985,1.54,0.785,0.831,0.87,1.032,1.12,0.689,0.646,0.493,1.272,0.735,0.934,1.564 +NM_005535,1.009,1.035,0.987,0.842,1.012,1.028,0.999,0.909,1.03,0.985,1.028,0.964,0.964,1.054,0.987,0.947,1.077,0.882,1.128,0.729,1.033,1.014,1.145,0.964,0.961,0.915,0.934,0.898,0.894,0.912,1.213,1.1,0.996,1.013,0.946,1.07,1.003,1.071,1.0,0.929,0.978,0.961,1.32,1.067,1.129,1.084,1.02,1.029,1.116,0.904,1.027,1.103,1.024,1.146 +NM_005536,0.678,1.044,1.351,0.588,0.798,1.409,0.588,0.851,1.366,1.047,0.95,0.919,0.8,0.866,0.897,1.794,1.156,1.025,0.849,1.619,0.448,1.337,1.289,1.664,0.497,0.713,1.042,1.109,0.521,0.919,1.309,1.093,1.306,0.803,0.432,0.531,1.39,1.072,1.684,0.805,1.226,0.684,0.961,0.645,1.124,2.043,0.919,1.085,3.056,0.835,1.194,0.743,0.564,2.132 +NM_005537,1.019,0.983,0.838,0.836,1.023,0.98,0.945,1.032,1.006,0.962,1.035,1.104,1.002,0.971,0.791,0.914,1.068,1.064,0.866,0.89,1.094,1.007,0.807,0.956,0.998,0.859,0.932,1.055,1.013,1.054,0.979,0.967,0.909,0.994,1.092,0.878,0.89,1.049,0.935,0.977,1.056,0.954,1.235,0.99,0.97,1.036,0.984,1.037,0.911,1.095,1.024,0.957,1.049,1.061 +NM_005538,1.023,1.009,1.091,0.942,1.112,1.041,0.875,1.057,1.215,1.04,1.134,1.135,1.0,1.248,1.358,1.062,0.945,0.967,0.818,1.116,0.969,1.078,1.07,0.915,0.904,1.042,1.035,0.879,1.143,0.985,1.0,0.9,1.086,1.084,1.214,1.037,0.889,0.983,1.075,0.998,0.907,1.264,0.996,1.033,1.13,0.967,0.924,0.996,0.918,1.002,1.025,1.061,0.767,1.043 +NM_005539,0.565,1.112,0.656,0.822,0.441,2.21,0.655,0.533,0.647,0.539,2.176,0.677,0.646,0.436,0.742,2.231,0.466,0.798,0.844,1.266,0.564,0.792,1.381,0.629,1.203,0.989,0.801,0.563,0.967,2.271,0.445,2.038,1.705,1.998,0.354,1.093,1.746,0.709,2.362,0.915,0.687,1.682,0.91,1.248,0.605,1.445,0.659,1.134,1.367,0.579,1.16,0.712,0.702,1.03 +NM_005541,0.762,0.91,0.972,0.966,0.761,0.728,1.102,0.715,0.709,0.835,1.185,0.859,0.788,0.619,0.902,1.632,1.119,0.867,0.748,1.096,0.801,0.603,1.45,0.873,0.767,0.718,1.051,0.663,0.768,1.611,0.754,1.27,0.781,1.25,0.675,1.081,0.954,0.673,1.726,1.278,0.607,1.254,0.858,0.939,0.959,0.867,0.962,0.732,0.972,0.797,1.373,1.144,0.985,1.292 +NM_005543,1.038,0.951,1.023,1.014,1.066,0.876,1.072,0.963,0.945,0.904,0.983,0.924,1.137,1.194,1.023,1.01,1.062,0.861,0.99,0.968,0.832,1.158,1.018,1.088,1.038,0.991,1.031,1.121,0.899,1.071,0.993,0.913,1.0,0.997,0.977,0.935,1.09,1.015,1.055,1.101,0.989,0.915,0.968,1.008,0.878,1.013,0.843,1.0,0.976,0.937,0.933,0.985,1.188,1.044 +NM_005544,0.998,1.171,1.147,0.848,0.748,0.964,1.045,0.795,0.754,1.316,1.058,0.778,0.821,0.783,0.984,0.942,1.13,0.934,1.042,0.864,0.743,0.747,1.128,0.84,0.896,0.767,1.353,0.709,1.243,1.079,0.787,2.48,1.419,1.238,0.833,0.703,1.057,0.852,1.193,1.147,0.831,0.93,0.93,1.835,0.905,0.882,1.387,0.74,0.952,1.002,0.943,0.976,1.286,2.139 +NM_005545,0.842,1.009,0.914,0.863,0.958,1.09,0.96,1.019,0.939,0.917,0.825,0.816,0.912,0.796,0.978,0.988,0.869,0.898,0.936,0.946,1.038,0.783,1.296,0.907,1.122,0.955,0.947,0.876,0.959,1.203,0.955,9.683,1.113,1.414,0.866,1.002,0.996,0.904,1.273,1.22,0.966,1.286,1.127,0.951,0.898,1.015,1.044,0.923,1.007,0.848,1.0,1.183,0.983,1.082 +NM_005546,0.938,1.089,1.376,0.832,0.997,0.961,0.918,0.957,1.08,0.86,1.004,1.009,0.897,0.815,0.975,0.916,1.115,0.989,1.031,1.024,0.883,0.986,1.057,1.108,1.06,0.889,1.346,0.938,1.269,1.132,1.091,0.947,0.945,0.987,0.982,0.972,0.966,0.797,0.992,0.978,1.016,1.192,1.12,0.839,1.033,0.851,0.893,1.02,0.942,0.957,0.93,0.969,1.336,1.412 +NM_005548,0.701,0.982,1.054,0.73,0.788,0.973,0.725,0.565,1.058,0.994,0.919,0.827,0.699,0.6,0.892,1.448,0.951,0.881,1.113,0.962,0.696,0.75,1.321,1.185,0.742,0.863,1.071,0.969,0.439,1.029,0.873,1.143,3.605,1.141,0.303,0.964,0.918,0.986,1.562,0.835,1.268,1.129,0.754,1.329,1.074,0.848,1.231,0.678,1.311,0.844,0.987,0.932,1.045,1.545 +NM_005549,0.975,1.027,1.03,1.006,0.98,0.968,1.073,1.228,0.984,1.086,0.919,1.112,0.983,1.113,1.029,0.954,1.061,1.086,1.048,1.023,1.068,1.009,1.136,1.035,0.964,1.038,0.891,1.004,1.224,0.995,0.89,0.977,0.959,0.949,0.996,1.022,0.998,0.979,0.887,1.09,0.957,1.049,1.379,1.102,1.064,1.001,0.985,1.023,0.981,0.969,0.933,0.983,0.959,0.961 +NM_005550,1.283,0.854,2.02,0.745,1.902,0.432,0.541,1.279,2.056,1.47,0.563,1.335,1.09,1.03,1.004,0.843,2.472,0.792,1.469,0.535,0.998,1.016,0.709,0.831,0.742,1.082,2.632,1.555,0.403,0.748,1.847,4.384,1.676,0.787,3.873,0.637,0.663,1.468,0.935,2.512,2.908,0.73,0.839,0.995,1.938,0.497,2.027,1.576,0.603,2.116,0.677,1.897,1.378,3.693 +NM_005551,1.201,1.072,0.992,1.115,1.037,0.978,1.011,1.036,1.0,0.89,0.927,1.074,1.143,0.966,0.905,0.869,0.995,1.083,0.95,1.006,1.147,0.953,0.951,1.067,1.012,0.99,0.963,0.982,0.696,0.965,0.956,1.048,0.926,1.099,1.058,0.92,0.989,0.972,0.96,0.948,1.068,1.061,0.944,0.958,1.085,0.917,1.075,0.93,0.903,1.041,1.005,0.845,0.942,1.135 +NM_005552,1.255,1.06,1.075,0.819,1.692,0.845,0.803,0.848,1.745,1.646,0.726,1.471,0.904,0.985,1.053,1.165,0.994,1.227,1.293,0.866,0.779,1.421,0.799,1.392,0.845,1.619,0.978,1.361,0.779,0.903,1.359,1.774,0.986,0.939,0.861,0.871,0.726,1.35,1.146,0.953,1.297,0.726,0.723,1.27,1.166,0.695,1.173,1.389,1.006,1.011,0.857,0.893,1.099,0.79 +NM_005553,1.039,0.915,0.968,0.831,1.091,1.003,0.994,1.191,1.039,0.943,0.95,0.982,1.006,0.914,1.03,0.948,1.007,1.078,1.005,1.029,0.919,0.913,0.884,0.977,1.052,1.03,0.852,0.962,1.251,0.928,1.126,0.997,1.097,1.084,0.952,1.089,1.021,0.968,0.863,0.993,1.098,1.087,1.116,0.835,1.071,0.99,0.903,1.012,0.974,0.937,1.108,0.894,0.965,0.885 +NM_005554,2.046,0.0188,3.716,0.847,3.168,0.0154,0.0522,1.884,1.994,4.275,0.0127,2.546,0.926,1.152,1.476,2.532,3.698,2.509,3.896,0.0397,3.283,1.234,0.0117,2.76,0.0149,1.286,3.118,1.386,0.027,0.036,1.978,0.0129,2.668,0.0137,0.977,0.014,0.0184,4.53,0.0801,0.012,3.277,0.0181,0.0166,0.0484,3.572,0.0126,2.271,2.079,0.54,3.94,1.291,1.885,3.511,0.901 +NM_005555,1.663,0.0187,3.981,0.844,3.8,0.0329,0.0286,2.347,2.885,5.038,0.0122,3.007,0.583,0.934,1.089,2.539,2.898,3.283,2.773,0.0426,1.896,1.66,0.0154,1.957,0.0132,1.505,2.5,2.437,0.0165,0.0595,2.161,0.0502,3.049,0.0138,0.732,0.0366,0.0297,4.404,0.0888,0.0319,2.841,0.022,0.0143,0.404,3.98,0.018,3.622,2.603,0.393,3.23,1.182,2.335,2.615,1.066 +NM_005556,0.315,1.069,0.401,1.212,0.234,1.171,0.574,0.3,0.432,0.234,1.588,0.198,0.535,0.697,0.682,1.907,1.605,1.252,0.462,2.481,0.275,0.3,1.777,0.283,0.352,0.983,0.297,0.317,0.338,1.865,0.362,1.555,1.017,1.149,0.9,2.43,1.508,0.277,5.45,1.228,0.261,1.544,0.751,7.614,0.342,1.882,0.542,0.313,1.33,0.712,2.853,3.226,0.326,2.494 +NM_005557,2.523,0.0891,4.672,0.872,2.899,0.114,0.106,2.381,2.456,12.77,0.0916,6.052,1.798,0.756,1.782,6.523,4.786,5.178,3.544,0.129,4.073,0.906,0.0889,3.298,0.0959,2.712,5.425,1.273,0.119,0.125,2.914,0.143,13.18,0.0808,16.47,0.177,0.106,7.985,0.324,0.12,2.458,0.0988,0.28,0.14,6.561,0.0893,8.817,4.298,0.593,16.68,1.194,5.642,15.11,2.439 +NM_005558,1.101,0.86,1.152,0.867,1.029,0.966,0.826,1.073,1.394,1.307,1.03,1.222,0.93,0.989,0.955,1.081,0.98,1.25,1.347,0.902,0.945,1.023,1.159,1.14,0.704,1.176,1.15,0.985,0.807,0.726,1.074,0.926,1.014,0.947,1.013,1.265,0.756,0.964,1.163,0.799,1.023,0.916,0.85,1.173,1.154,0.911,1.03,1.285,0.93,0.946,1.016,0.876,1.217,1.016 +NM_005559,0.888,1.048,0.847,1.075,0.953,0.947,0.883,0.995,1.125,0.79,0.931,0.972,0.905,0.911,1.303,1.269,0.929,0.932,1.064,1.201,0.945,0.92,1.217,0.947,0.966,0.993,1.505,1.038,0.711,1.002,0.959,0.893,1.376,1.124,0.888,1.447,2.032,0.948,1.057,1.007,0.9,0.85,0.927,0.933,0.998,0.864,1.459,0.951,1.348,1.033,1.044,0.937,0.963,1.011 +NM_005560,0.718,0.917,1.474,0.568,0.876,0.522,0.37,0.406,1.581,0.75,0.649,0.551,0.568,0.968,1.122,0.506,1.483,0.706,1.151,1.132,0.53,0.824,1.223,0.97,0.362,0.792,1.659,0.613,0.252,1.581,1.047,2.851,4.712,0.78,0.429,1.602,0.536,1.243,1.687,2.751,1.17,1.01,0.594,2.73,0.699,0.758,1.2,0.557,0.362,0.756,0.895,3.249,1.03,3.968 +NM_005562,0.325,0.965,0.54,0.542,0.402,1.128,0.821,0.307,0.345,0.539,1.344,0.366,0.327,0.399,0.926,1.083,0.381,1.04,0.358,1.423,0.318,0.371,1.244,0.349,0.371,0.358,0.615,0.338,0.977,1.064,0.443,1.373,1.299,0.924,0.307,2.309,0.996,0.496,2.256,2.829,0.447,0.856,1.1,2.524,0.411,1.997,1.132,0.292,1.113,0.362,1.328,2.137,0.598,4.026 +NM_005563,0.975,1.045,1.195,0.958,1.058,0.873,0.809,0.791,1.114,1.056,0.71,1.33,1.171,0.79,0.787,1.013,0.839,1.031,1.126,0.769,0.95,0.906,1.48,1.085,0.68,1.008,1.952,0.838,0.865,0.749,0.931,1.24,2.402,0.994,0.535,0.643,0.823,1.023,1.736,0.996,1.148,0.774,0.838,1.599,1.012,0.913,1.014,0.931,0.719,1.004,1.073,0.807,1.214,3.133 +NM_005565,0.808,1.058,1.576,1.133,0.94,1.017,1.03,0.872,0.947,0.898,0.779,0.857,0.915,0.849,1.012,0.793,0.983,0.879,0.883,0.884,0.871,0.811,1.144,0.929,1.073,0.816,1.326,0.971,0.664,1.097,0.99,1.576,1.215,1.226,0.866,0.776,0.976,0.857,1.68,3.298,1.046,1.256,0.826,0.871,1.043,0.914,0.909,0.851,0.897,0.874,1.009,1.56,1.165,1.815 +NM_005566,0.709,0.398,0.958,0.593,1.039,1.398,0.312,0.765,1.415,0.901,1.382,1.374,0.654,0.63,1.274,2.456,0.534,0.913,2.321,0.578,0.887,0.912,1.209,1.46,0.28,0.834,1.419,1.003,0.255,0.862,0.997,0.683,2.125,0.856,0.234,1.169,1.639,1.115,1.693,0.948,1.059,1.063,0.596,0.698,0.967,1.136,1.39,0.798,1.588,1.061,1.237,1.175,1.335,1.095 +NM_005567,0.481,1.541,0.435,1.053,0.308,2.438,0.778,0.183,0.44,0.345,1.989,0.244,0.286,0.295,0.78,1.477,0.481,1.191,0.582,1.35,0.407,0.303,1.756,0.404,0.939,0.526,0.502,0.257,0.853,2.658,0.347,1.353,1.502,2.968,0.098,0.771,1.392,0.328,2.796,0.492,0.417,1.853,0.619,3.757,0.474,1.116,0.59,0.325,0.855,0.53,1.242,0.629,0.743,1.891 +NM_005568,0.939,0.854,0.993,0.99,1.013,0.912,1.145,0.953,0.983,0.954,0.836,0.999,0.906,0.95,0.843,0.95,0.887,1.004,0.987,0.948,0.976,0.97,0.882,1.065,0.991,1.02,1.184,1.017,0.598,1.055,1.095,0.933,0.951,0.893,0.999,1.029,1.078,1.013,1.102,1.167,1.033,1.036,1.127,0.849,0.911,0.933,1.089,0.983,0.943,0.857,1.149,1.027,1.035,0.96 +NM_005569,1.748,2.2699999999999996,2.824,1.79,2.4539999999999997,1.914,1.829,1.42,2.097,2.282,1.704,2.1029999999999998,1.642,1.442,1.734,1.8159999999999998,2.019,2.222,2.327,2.082,1.627,2.0069999999999997,2.238,2.102,1.8039999999999998,2.004,2.2359999999999998,2.2169999999999996,1.603,2.548,1.9,1.899,2.052,2.254,1.125,1.612,2.106,2.065,2.219,1.8479999999999999,2.2110000000000003,2.138,1.177,1.803,2.135,1.538,2.05,1.901,1.7200000000000002,2.252,1.801,1.926,2.532,2.274 +NM_005570,1.079,1.064,1.029,0.925,1.085,0.98,0.965,0.883,1.125,1.059,0.887,0.988,1.038,1.132,1.021,1.008,1.023,0.93,0.868,0.869,0.979,0.9,0.925,0.983,1.022,0.901,1.073,1.151,0.752,1.039,0.988,0.975,0.878,1.049,1.082,0.882,0.94,0.867,1.245,0.953,1.146,0.919,0.954,0.925,1.042,1.303,1.148,0.975,1.188,0.923,1.041,0.834,0.958,1.063 +NM_005572,1.47,1.3519999999999999,2.288,1.462,1.846,1.569,1.127,0.5409999999999999,2.3419999999999996,2.985,1.4020000000000001,1.444,0.815,0.899,1.5550000000000002,2.7800000000000002,1.754,3.031,2.969,1.501,1.392,1.9809999999999999,3.326,1.746,0.9610000000000001,2.159,2.623,1.391,1.123,1.758,1.3639999999999999,2.754,3.448,1.463,0.449,6.2219999999999995,1.7069999999999999,2.333,4.0649999999999995,2.403,1.87,1.587,1.97,3.48,2.84,1.719,3.3129999999999997,1.725,3.3120000000000003,2.478,2.757,2.6870000000000003,2.3049999999999997,2.38 +NM_005573,0.904,1.187,1.265,0.906,0.874,0.849,0.798,0.63,1.137,0.959,0.855,0.751,0.793,0.674,0.976,1.132,0.881,1.067,1.196,0.83,0.832,0.675,1.843,0.846,0.728,0.826,1.612,0.807,0.69,0.918,0.818,1.027,1.686,0.982,0.66,1.19,1.202,0.911,2.26,1.742,1.16,1.013,0.869,1.449,0.866,1.166,1.327,0.757,1.71,0.926,1.277,1.088,0.977,1.411 +NM_005574,1.441,0.886,2.175,0.915,1.308,0.667,0.707,0.962,1.339,1.008,0.719,0.71,2.155,0.935,1.163,0.789,3.445,1.002,2.441,0.658,1.186,0.823,0.987,1.043,0.658,1.518,2.366,1.027,0.584,1.008,1.94,1.204,1.412,1.019,2.621,1.046,0.608,0.937,1.161,0.931,2.293,1.023,0.688,1.105,2.14,0.581,1.321,1.395,0.961,1.808,0.783,1.212,1.985,0.98 +NM_005575,0.978,0.94,1.285,0.907,1.107,1.081,0.98,0.814,1.059,1.196,0.885,0.916,0.973,0.763,1.006,1.185,1.0,1.15,1.135,1.061,0.81,0.978,1.054,1.074,0.806,0.931,1.141,0.936,0.99,0.879,0.939,1.02,1.063,0.937,0.911,0.959,1.065,0.942,1.097,0.982,1.112,1.004,0.939,0.909,1.221,1.071,1.154,0.945,1.034,1.048,1.048,1.201,0.992,1.154 +NM_005576,0.838,1.272,0.854,1.022,0.881,1.395,0.893,0.719,0.906,0.927,1.043,0.911,0.755,0.851,0.933,1.185,0.875,0.895,0.898,0.984,0.84,0.886,1.266,0.944,0.955,0.834,1.173,0.857,0.707,1.526,0.83,5.934,1.288,1.269,0.82,0.791,0.968,1.001,1.725,0.814,0.979,1.124,0.814,1.592,0.828,1.408,0.906,0.848,0.898,1.01,1.017,1.001,0.863,1.383 +NM_005577,1.049,0.902,0.948,1.1,1.035,0.944,0.865,0.816,1.047,0.962,0.951,0.873,0.984,1.001,1.003,0.863,1.085,0.972,1.021,1.126,0.935,1.144,1.046,1.074,1.01,0.945,0.844,1.027,1.023,1.079,1.074,0.922,1.039,1.082,0.989,0.974,0.953,1.081,0.761,0.958,0.772,0.894,1.306,0.886,0.987,1.102,0.858,1.034,1.03,1.021,1.003,1.136,1.082,1.205 +NM_005578,0.609,1.174,1.071,0.71,0.692,0.879,0.683,0.679,0.717,0.591,1.481,0.593,0.607,0.596,0.724,1.354,0.645,0.818,0.94,1.158,0.851,0.668,1.586,0.583,0.899,0.665,0.973,0.99,0.592,1.275,0.812,1.826,1.584,1.728,0.661,0.769,1.155,0.809,1.444,1.032,1.482,1.793,1.202,1.047,0.707,1.366,0.928,0.619,1.306,0.805,1.375,0.759,0.888,1.697 +NM_005582,1.114,0.974,0.995,0.858,1.108,1.063,0.976,1.218,0.969,0.94,1.2,1.06,0.977,0.931,0.967,1.219,1.047,0.81,0.911,1.083,1.004,0.997,1.099,1.138,0.889,0.778,0.922,0.993,1.008,1.071,0.901,0.887,1.119,0.975,0.897,0.956,1.096,0.879,1.098,1.03,1.217,1.16,0.824,0.952,0.839,0.85,1.061,1.087,1.015,1.026,1.019,0.971,1.079,1.075 +NM_005584,1.007,1.153,1.025,0.972,0.912,0.957,1.111,1.042,1.075,1.078,0.995,0.985,0.863,0.801,0.918,1.088,0.92,1.213,1.077,1.026,1.072,1.053,1.071,0.971,1.113,1.094,1.099,1.078,0.987,0.884,1.416,0.987,0.789,1.022,0.932,0.872,1.096,1.07,0.944,0.933,0.983,1.225,1.051,0.96,0.913,1.136,1.041,1.119,0.948,0.958,0.945,1.072,0.955,1.038 +NM_005587,0.9,1.0,1.018,0.933,1.225,1.245,0.818,0.796,1.069,1.018,0.873,0.889,0.98,0.75,0.885,0.879,0.985,0.96,0.853,0.878,0.841,0.852,0.954,1.081,1.123,0.849,1.206,1.083,0.904,1.179,0.77,1.177,1.079,0.847,1.011,0.877,0.86,1.124,1.71,0.833,1.182,0.917,0.911,1.164,0.846,1.051,1.213,0.908,1.014,1.159,0.867,0.826,0.876,0.959 +NM_005589,0.843,1.758,1.115,0.734,1.127,1.198,0.779,0.721,1.027,0.89,1.325,0.723,0.751,0.829,0.836,1.304,0.832,1.154,1.213,1.037,0.741,0.757,0.949,0.952,1.291,0.897,1.067,1.017,0.455,2.067,1.144,1.075,1.264,1.886,0.583,0.525,1.614,0.963,1.351,0.539,1.022,1.284,0.744,1.305,0.896,1.096,1.003,0.788,0.876,0.656,1.212,0.633,0.87,0.782 +NM_005590,1.013,1.038,0.92,0.963,1.116,0.965,1.139,1.061,0.925,0.979,1.052,0.904,1.031,1.156,1.093,1.011,0.944,0.975,0.965,0.934,0.854,1.0,0.969,0.965,0.972,1.229,1.153,1.059,0.954,1.005,0.962,1.053,1.007,1.064,0.959,0.996,0.903,1.05,1.089,1.046,1.056,0.892,1.153,0.973,1.0,1.061,0.976,1.117,0.963,0.976,0.997,1.013,0.923,1.027 +NM_005591,0.833,0.891,1.218,0.941,0.973,0.807,0.709,1.06,1.277,0.966,0.916,0.903,0.935,0.878,0.924,1.208,0.981,0.987,1.176,1.058,0.95,0.847,1.16,0.996,0.865,0.919,1.269,0.813,0.912,0.995,0.985,1.06,3.005,0.922,0.984,1.326,0.961,0.918,1.137,1.24,1.074,1.039,1.071,1.138,0.937,0.926,1.017,0.928,0.911,1.155,0.974,0.861,1.131,1.269 +NM_005592,1.014,1.058,0.938,1.16,1.149,0.982,0.947,0.96,1.034,0.885,0.896,0.988,1.121,0.885,1.076,1.104,1.04,0.97,1.173,1.021,1.13,0.899,0.874,0.981,1.074,1.022,0.959,0.958,1.045,0.938,1.134,1.032,0.974,1.036,1.1,0.986,0.907,1.064,1.205,0.947,1.001,1.019,1.227,1.093,0.999,1.055,0.891,0.872,1.077,0.944,1.079,1.225,0.938,1.012 +NM_005594,0.751,0.817,1.467,0.665,1.125,0.898,0.452,0.509,1.637,1.126,0.979,0.733,0.659,0.707,1.115,1.398,1.09,0.811,1.417,1.0,0.697,0.652,1.235,1.272,0.525,0.845,1.452,1.391,0.153,1.0,1.291,1.226,1.539,1.324,0.593,0.905,0.808,1.269,1.062,0.646,1.558,1.28,0.498,0.856,1.051,0.864,1.069,0.709,0.93,0.908,1.012,0.655,1.027,1.593 +NM_005595,1.038,1.148,1.843,0.605,1.302,0.983,0.532,0.803,1.434,1.148,0.816,1.042,1.039,0.925,1.154,1.707,0.963,1.039,1.147,1.128,0.601,1.434,1.506,1.218,0.766,0.721,1.395,1.593,0.384,0.987,1.679,1.002,3.153,1.358,0.591,0.403,1.111,1.408,0.912,0.458,1.599,1.92,0.578,0.422,1.474,0.709,0.912,0.998,0.732,0.995,1.229,0.74,0.809,0.675 +NM_005597,0.729,1.246,1.675,0.549,1.103,1.088,0.805,0.633,1.259,1.343,0.778,1.022,0.605,0.747,0.721,0.731,1.066,1.158,1.177,1.197,0.712,1.087,1.282,1.244,0.856,0.586,1.311,1.082,0.639,1.659,1.203,1.908,0.884,1.435,0.387,0.647,0.88,1.37,1.228,0.686,1.416,1.478,0.558,1.077,1.155,0.75,0.939,0.458,0.631,0.762,0.978,0.807,0.992,0.894 +NM_005598,1.145,1.231,1.07,1.161,0.944,0.991,1.136,1.005,1.063,1.053,0.993,0.91,0.897,0.842,1.167,0.897,0.887,0.996,1.047,1.141,0.947,1.132,0.991,1.037,0.995,0.909,0.994,1.11,1.213,0.903,1.041,0.823,0.925,0.888,0.961,1.073,1.029,1.138,1.011,1.007,1.002,1.009,1.086,0.932,0.984,1.016,0.881,0.87,1.077,0.989,1.011,0.988,0.969,0.984 +NM_005599,1.133,1.03,1.001,0.906,1.029,0.955,0.924,1.161,0.975,0.946,1.124,1.025,1.122,1.102,0.934,1.086,1.052,0.886,1.064,0.959,1.046,1.11,0.958,0.991,0.94,0.94,0.985,0.967,1.036,1.055,0.901,0.908,0.918,0.996,1.033,0.956,0.998,1.158,1.008,0.891,1.042,0.875,0.962,0.982,0.914,0.974,0.959,1.041,0.915,1.019,1.013,1.023,0.978,1.085 +NM_005600,0.572,0.732,1.064,0.754,0.808,1.7,0.723,0.623,1.136,0.925,1.193,0.682,0.596,0.579,1.307,2.48,1.018,0.916,1.029,1.308,0.494,0.772,1.234,1.081,0.408,0.689,0.627,0.705,0.617,1.221,0.973,1.728,1.423,1.485,0.673,1.243,1.408,0.6,1.453,1.024,1.113,1.211,0.706,0.856,0.79,1.277,1.333,0.733,1.239,0.553,1.276,0.693,0.875,1.722 +NM_005601,0.916,1.07,0.959,1.015,0.897,1.142,0.978,1.176,0.909,0.791,1.057,0.868,1.065,0.911,0.981,0.887,0.978,1.034,0.966,0.902,0.924,0.917,0.848,1.0,1.296,0.947,0.955,0.93,1.06,1.121,0.86,1.106,1.122,1.084,0.94,0.915,0.879,0.872,1.205,0.845,0.942,1.169,0.854,0.988,1.044,0.855,1.091,0.801,0.888,0.915,1.033,1.076,1.291,2.146 +NM_005602,0.803,1.879,0.915,0.847,0.8,1.502,1.51,1.1,0.786,0.814,0.998,0.831,0.77,0.814,0.936,1.524,0.716,1.015,0.865,1.442,0.897,0.752,1.013,0.859,1.037,0.876,0.771,1.014,0.664,2.174,0.844,7.76,1.148,2.454,0.743,0.746,1.102,1.048,1.351,0.845,0.837,2.004,1.112,0.739,0.975,0.837,1.026,0.833,0.951,0.792,1.544,0.741,0.848,1.048 +NM_005603,0.717,1.068,0.767,0.898,0.959,1.498,0.766,0.9,1.243,0.743,1.034,0.814,0.76,0.69,1.031,1.484,0.866,0.956,0.772,1.139,0.729,0.882,1.155,0.846,0.886,0.849,0.795,0.762,0.942,2.011,0.887,0.961,1.295,1.075,1.003,1.112,1.159,0.818,1.835,0.815,0.965,1.154,1.368,1.341,0.908,1.377,1.063,0.873,1.547,0.739,1.213,0.961,0.875,0.832 +NM_005604,0.762,1.11,1.073,1.018,1.04,1.172,0.94,1.094,1.037,0.942,1.156,0.961,0.996,0.929,1.17,0.999,1.068,1.05,1.112,0.981,0.939,1.082,1.073,0.827,1.021,1.152,1.14,1.069,1.285,1.029,1.147,0.884,0.962,0.979,1.018,1.045,0.905,1.15,1.037,0.902,0.917,1.071,1.019,0.978,0.94,0.893,1.04,1.135,0.962,1.037,0.94,0.997,0.998,1.059 +NM_005605,1.083,0.735,1.091,0.853,1.218,0.739,0.734,1.015,1.307,1.063,0.867,1.111,0.906,1.142,1.114,0.834,0.942,0.978,1.573,0.93,0.814,0.988,1.029,1.376,0.882,1.36,1.147,1.412,0.362,0.769,1.251,1.576,1.005,1.023,1.423,0.83,0.738,1.163,0.953,1.034,1.085,0.829,0.677,0.73,1.038,1.001,0.848,1.052,0.671,0.837,1.103,0.969,1.253,1.788 +NM_005606,0.597,2.58,0.889,0.635,0.98,1.682,1.144,0.659,1.234,0.959,0.484,0.483,0.502,0.404,0.705,0.807,0.697,1.571,0.774,1.461,0.31,1.019,1.368,0.92,0.767,0.781,0.885,0.982,1.029,2.886,1.046,2.59,1.042,2.575,0.962,0.548,1.228,1.088,1.998,1.506,0.941,1.474,0.391,2.216,1.091,0.656,1.258,1.385,0.485,0.963,1.111,0.906,0.544,1.279 +NM_005607,0.598,1.261,1.104,0.696,0.829,1.696,0.833,0.549,1.026,0.78,0.971,0.745,0.606,0.555,1.087,1.805,0.803,0.835,0.858,1.26,0.543,0.66,1.165,0.912,0.644,0.473,1.012,0.68,0.576,1.37,0.93,1.587,2.505,1.542,0.52,0.678,1.078,0.829,1.28,1.534,0.793,1.179,0.757,0.901,0.834,1.418,0.91,0.556,1.46,0.64,1.132,0.807,0.613,1.782 +NM_005608,0.726,1.044,1.976,1.152,0.826,1.125,1.691,0.862,0.962,0.694,0.817,0.793,1.575,0.847,0.712,0.729,1.16,1.002,0.993,0.953,1.063,0.744,0.868,0.998,1.487,0.776,1.446,0.872,0.674,1.354,0.715,1.283,0.959,1.498,0.617,0.695,1.131,0.772,1.684,0.718,1.3,1.777,0.764,0.979,1.172,0.67,0.818,0.926,0.743,1.095,0.862,0.761,1.556,2.471 +NM_005609,1.01,1.027,1.005,1.08,1.218,1.021,0.879,1.068,1.083,1.015,1.065,1.076,1.035,1.026,1.002,1.033,0.942,0.965,1.05,1.006,0.885,1.047,1.216,0.942,0.969,1.088,0.939,0.942,1.009,0.975,0.876,0.833,1.053,0.947,1.135,1.026,0.841,0.951,1.059,1.001,1.062,0.931,0.874,1.048,0.934,0.893,1.038,0.997,1.058,1.05,0.913,1.078,1.168,0.99 +NM_005610,0.674,1.422,1.428,0.652,0.853,1.364,0.723,0.526,1.172,1.055,0.779,0.65,0.599,0.735,1.063,1.702,0.837,1.037,0.789,1.04,0.493,0.647,1.368,0.984,0.804,0.563,1.543,0.828,0.437,1.356,1.07,1.289,3.799,1.303,0.359,0.56,1.107,0.91,1.916,0.866,1.118,0.819,0.618,0.902,1.029,1.045,0.938,0.567,1.33,0.792,1.258,0.733,0.452,1.91 +NM_005611,0.749,1.009,1.555,0.954,1.193,0.964,0.739,0.85,1.433,1.04,1.013,0.819,0.743,0.888,1.062,1.0,1.095,0.829,0.876,1.296,0.613,0.613,0.988,0.862,0.703,0.798,1.154,1.09,0.429,1.064,1.28,1.389,1.838,1.357,1.267,0.86,0.737,0.843,0.941,0.649,1.126,1.154,0.714,0.758,0.95,0.906,0.959,0.731,0.971,0.831,1.041,0.719,1.048,2.31 +NM_005612,1.034,0.976,1.089,1.003,1.068,0.985,0.829,0.979,0.999,1.058,0.983,1.024,1.048,0.869,0.979,1.006,1.014,1.004,0.859,1.071,0.97,0.953,0.956,1.132,0.906,1.136,1.173,1.177,1.131,1.032,1.065,0.932,1.256,1.091,0.978,0.972,1.098,1.169,0.904,0.974,1.045,1.04,1.217,0.834,0.977,0.898,1.094,0.969,0.92,0.874,1.005,0.866,1.142,1.123 +NM_005613,0.904,0.841,0.779,1.117,0.824,1.038,1.105,0.918,0.882,0.896,1.361,0.946,0.91,0.885,1.059,1.042,0.844,0.954,0.713,1.45,0.972,0.827,1.101,0.836,0.943,0.847,0.911,0.998,0.776,1.002,0.783,2.092,1.319,1.337,0.932,0.901,1.175,0.925,1.568,1.143,0.78,1.161,1.575,0.998,0.841,1.271,0.782,0.78,0.847,0.875,1.374,1.171,0.807,1.085 +NM_005614,0.64,0.834,1.129,1.048,0.719,1.159,0.558,0.582,1.147,0.96,1.146,0.762,0.805,0.636,0.944,1.645,0.712,0.997,1.176,0.856,0.466,0.763,1.318,1.162,0.594,1.049,1.192,0.825,0.347,1.082,1.053,1.531,1.738,1.257,0.568,0.81,1.081,0.877,1.552,0.918,1.124,1.06,0.604,2.009,0.795,0.883,1.124,0.818,0.781,0.673,0.985,1.036,1.022,1.766 +NM_005615,1.156,0.804,1.267,0.802,1.223,0.949,0.868,0.887,0.897,0.958,0.737,0.935,1.081,0.801,0.93,0.939,1.12,1.365,0.885,0.916,0.859,0.853,0.965,0.874,0.998,0.945,1.003,0.857,1.112,1.051,0.99,1.591,1.067,1.275,0.942,0.977,1.002,1.011,1.047,1.088,1.126,1.464,0.745,0.972,0.942,0.849,1.007,1.005,0.924,0.865,0.94,0.939,1.139,1.246 +NM_005617,0.871,1.011,1.236,0.672,1.061,0.983,0.537,0.73,1.143,1.065,0.943,1.177,0.991,0.566,0.826,1.096,0.844,1.025,0.955,1.176,0.513,0.879,1.19,1.23,0.772,1.006,1.23,1.13,0.352,1.057,0.972,1.174,1.071,1.113,0.316,0.866,1.075,1.193,1.071,0.706,1.059,1.07,0.697,0.722,1.153,0.862,1.003,1.03,1.013,0.908,1.11,0.871,0.764,1.195 +NM_005618,1.043,0.804,1.569,1.048,0.985,0.697,0.782,0.597,1.337,0.984,0.83,0.868,0.851,1.009,1.114,1.284,1.18,0.77,1.041,1.018,0.983,0.8,1.096,1.132,0.856,1.07,1.154,0.952,0.751,0.939,1.097,1.32,1.247,1.069,0.631,0.663,0.874,0.952,0.981,1.94,1.092,1.176,1.004,0.931,1.234,0.848,0.953,0.882,0.896,1.223,0.961,0.982,1.569,1.422 +NM_005619,0.916,1.349,0.917,0.981,0.778,1.203,0.961,0.957,0.896,0.875,1.014,0.866,0.976,0.949,0.868,0.947,0.898,1.054,0.938,0.965,0.894,1.036,1.126,0.859,0.998,0.967,0.905,0.894,0.947,1.012,0.956,1.43,1.027,1.066,0.896,0.95,1.113,0.952,1.751,1.427,0.992,1.155,0.981,1.319,0.876,1.011,1.069,0.846,1.007,0.926,1.125,0.815,0.997,1.205 +NM_005620,1.874,0.419,2.553,0.862,2.271,0.775,0.51,1.425,2.168,2.232,0.5,2.189,1.6,0.951,1.063,1.308,2.175,1.832,1.83,0.851,0.691,1.758,0.8,2.234,0.288,1.803,1.62,2.16,0.374,0.657,1.936,0.845,1.376,0.67,0.917,1.007,0.562,1.802,1.15,0.728,2.032,0.463,0.327,0.861,2.241,0.668,1.736,2.433,0.731,1.889,1.079,1.113,1.368,1.342 +NM_005621,2.437,0.102,4.128,0.897,4.482,0.093,0.0966,3.823,3.074,2.264,0.086,4.111,3.388,1.268,1.187,0.9,4.062,1.695,5.635,0.105,1.005,1.935,0.097,2.77,0.0974,1.754,4.462,2.302,0.102,0.105,2.351,0.193,1.486,0.0851,5.532,0.116,0.11,2.371,0.507,1.594,2.893,0.19,0.243,0.155,4.131,0.0846,2.97,3.548,0.286,4.097,0.652,3.21,3.173,0.759 +NM_005622,0.859,1.161,0.962,0.922,1.001,1.111,1.073,1.043,0.965,0.938,1.118,0.889,0.914,0.801,1.126,1.075,0.845,0.999,0.874,1.147,0.907,0.855,1.343,0.959,1.177,0.945,0.897,0.881,0.87,1.147,0.959,1.105,1.166,1.421,0.944,1.027,0.993,0.83,0.966,0.875,0.889,1.187,1.118,0.881,0.844,1.015,0.907,0.835,1.125,0.839,1.062,0.877,0.905,1.372 +NM_005623,0.926,1.121,0.829,0.939,0.947,1.126,1.165,1.074,0.867,0.958,0.845,0.926,0.854,0.993,0.947,0.896,0.849,0.971,1.144,0.969,0.936,0.953,1.045,0.972,1.098,0.959,0.9,0.907,0.761,1.076,0.857,1.336,1.429,1.043,1.004,1.017,1.246,0.848,0.993,1.464,0.956,1.08,0.87,0.935,1.034,1.023,0.958,1.0,0.981,0.811,0.986,3.933,0.856,2.038 +NM_005624,1.0,1.101,0.952,1.196,1.029,0.999,0.997,1.169,1.12,0.961,1.116,1.072,1.056,1.1,1.093,0.96,1.027,0.972,0.928,1.2,1.196,1.1,0.885,0.955,0.9,0.962,0.978,0.897,1.073,0.931,0.841,0.959,1.142,0.978,0.853,0.978,1.98,0.948,0.986,0.886,0.962,0.896,1.24,1.048,0.956,1.203,1.0,1.103,1.594,0.925,0.96,1.07,1.158,1.055 +NM_005625,0.369,1.473,0.848,0.977,0.534,2.056,0.917,0.418,0.683,0.503,1.501,0.323,0.449,0.547,1.053,2.203,0.597,1.104,0.93,0.948,0.396,0.487,1.753,0.709,0.549,0.51,0.979,0.465,0.803,1.726,0.78,1.334,2.059,2.636,0.582,0.797,1.887,0.525,2.127,1.615,0.729,1.52,0.849,1.593,0.513,1.986,1.056,0.5,2.004,0.562,1.564,0.848,0.621,1.062 +NM_005626,0.701,0.899,1.3,0.848,0.813,0.971,0.704,0.442,1.243,1.119,1.033,0.564,0.593,0.824,1.037,1.512,0.952,0.769,1.486,0.95,0.729,0.657,1.573,1.05,0.649,0.764,1.35,0.903,0.406,1.114,1.183,1.213,1.658,1.461,0.641,0.662,1.077,0.692,1.331,1.311,1.03,1.217,0.644,1.423,1.06,0.88,0.762,0.56,0.72,0.892,1.029,0.877,1.206,1.608 +NM_005627,0.905,1.047,4.507,0.784,0.852,0.835,0.605,0.434,1.892,1.079,0.605,0.767,0.873,0.891,0.918,0.811,2.754,0.947,2.56,0.516,0.879,0.822,0.489,1.589,0.78,0.878,5.303,0.995,0.964,0.953,1.258,0.915,1.246,1.214,0.215,0.254,1.038,1.249,1.298,1.086,2.179,0.64,1.901,0.615,1.853,0.788,0.771,0.732,0.524,3.192,0.621,1.343,1.542,1.177 +NM_005628,0.715,1.113,1.822,0.594,0.941,0.709,0.747,0.335,1.1,1.234,0.917,0.645,0.407,0.616,0.818,1.064,1.111,0.952,1.661,0.946,0.546,0.702,2.025,1.394,0.589,0.83,1.85,0.572,0.334,0.711,0.888,0.924,3.752,0.785,0.0947,2.468,0.824,0.771,1.86,1.783,1.505,1.024,0.463,2.511,0.955,0.815,1.731,0.678,1.018,0.961,1.139,1.958,0.842,1.886 +NM_005629,0.898,0.723,0.812,1.021,0.671,1.574,0.788,0.79,0.772,0.746,1.393,0.739,0.801,0.761,1.715,1.804,1.035,1.06,0.997,1.036,0.928,0.927,1.181,0.879,0.764,1.257,0.832,0.702,0.943,1.563,0.907,0.967,0.806,1.253,0.791,0.97,2.312,1.272,1.83,0.965,0.99,1.617,1.085,1.917,0.888,1.011,1.193,0.764,1.323,0.951,1.543,1.302,0.801,0.609 +NM_005630,0.468,1.413,0.501,0.875,0.583,3.468,2.395,0.374,0.869,0.702,2.002,0.45,0.404,0.741,1.703,1.694,0.376,1.232,0.517,0.962,0.507,0.572,1.451,0.692,1.34,0.566,0.603,0.912,1.491,3.739,0.795,1.372,1.135,3.507,0.308,0.791,2.374,0.719,2.711,0.551,0.796,2.615,0.962,0.856,0.738,0.812,0.813,0.4,1.515,0.46,1.486,0.866,0.661,1.024 +NM_005631,1.425,0.962,1.3,1.084,1.099,0.867,0.829,0.885,1.182,1.121,0.82,1.214,1.222,0.999,0.928,0.939,1.272,0.947,1.444,0.811,1.25,1.742,0.857,1.366,0.973,1.406,1.532,1.166,0.768,0.939,1.12,1.698,1.162,1.034,0.806,0.859,0.956,1.831,0.966,0.938,1.111,0.998,0.925,0.867,1.268,0.791,0.95,1.456,0.906,1.179,0.943,0.938,0.947,0.977 +NM_005633,0.914,0.966,1.004,0.933,1.056,0.934,0.877,0.93,1.036,1.035,0.911,0.932,1.002,0.834,1.014,1.02,0.989,0.821,0.944,1.029,0.972,0.95,0.922,1.031,0.851,0.88,1.034,0.992,0.743,1.021,0.955,1.072,1.16,1.072,0.866,0.951,0.979,0.933,1.049,1.112,0.966,1.047,0.983,1.095,0.921,0.953,0.952,0.776,1.097,1.052,0.835,0.96,1.132,1.162 +NM_005634,1.05,0.947,0.915,1.014,0.924,0.915,1.01,0.918,1.211,0.949,0.933,0.955,0.948,0.991,1.185,0.958,1.105,1.077,1.016,1.026,0.937,0.945,1.001,1.082,1.118,0.924,1.017,0.907,1.238,0.969,1.001,0.95,0.88,0.987,1.037,0.918,1.057,1.065,0.911,1.102,1.058,0.848,0.968,1.013,0.99,0.98,0.993,1.097,1.02,0.933,0.978,0.999,1.055,1.098 +NM_005635,1.019,1.001,0.911,0.936,0.93,0.947,0.838,1.015,1.004,0.897,1.023,1.047,0.873,0.975,1.025,0.954,0.955,1.074,1.035,1.08,0.995,1.106,0.982,1.009,1.049,0.874,0.925,0.964,0.974,1.111,1.041,1.138,1.056,0.956,1.031,1.021,1.11,0.898,2.893,1.04,1.054,1.071,1.147,1.193,1.08,0.917,0.99,1.001,0.95,0.949,1.127,1.08,0.852,1.074 +NM_005636,0.993,1.104,0.964,1.156,1.046,0.952,1.073,1.059,0.96,0.94,0.979,1.009,0.918,0.928,1.031,1.032,1.073,0.961,1.133,1.028,0.97,0.915,0.946,1.005,1.094,0.991,0.943,0.874,1.08,1.032,1.007,0.956,1.039,1.083,0.907,1.094,1.004,0.945,2.601,1.057,0.945,1.03,1.192,0.918,1.104,0.944,0.998,0.985,1.088,0.9,0.901,0.989,0.998,1.234 +NM_005637,0.706,1.023,1.444,0.907,1.008,1.078,0.634,0.716,1.361,1.056,0.89,0.744,0.701,0.904,1.243,1.114,1.225,0.822,1.268,0.937,0.84,0.693,1.0,1.182,0.643,0.849,1.721,0.887,0.602,0.951,1.136,1.568,1.349,1.185,0.548,0.657,0.737,1.008,1.125,0.883,1.351,1.054,0.823,1.069,0.928,0.977,1.0,0.812,0.911,1.001,0.834,0.746,1.039,3.321 +NM_005638,0.584,0.89,1.263,0.549,0.888,1.604,0.63,0.729,1.426,0.894,1.207,0.814,0.639,0.72,1.006,2.034,0.785,0.829,1.328,0.849,0.525,0.694,1.086,1.017,0.547,0.655,1.314,0.994,0.403,1.133,1.197,1.317,2.745,1.345,0.519,0.889,1.314,0.724,1.172,0.671,1.069,0.904,0.704,1.069,0.949,1.127,0.926,0.595,1.055,0.695,1.136,0.911,0.824,1.623 +NM_005639,0.937,0.907,1.152,0.978,1.066,0.972,0.882,0.85,0.999,0.997,0.865,1.096,0.982,0.985,0.95,0.994,0.935,1.053,0.999,0.995,0.989,0.906,0.893,0.915,1.044,0.902,0.777,0.878,1.221,0.965,0.916,1.128,1.252,1.108,1.011,1.176,0.985,0.969,1.076,0.98,1.024,0.928,0.937,1.091,0.862,1.049,0.974,0.899,0.901,0.918,1.073,0.899,0.954,1.054 +NM_005642,0.602,1.084,1.259,0.734,1.077,1.143,0.656,0.643,1.302,1.009,0.871,0.669,0.756,0.663,1.149,1.054,0.919,0.84,0.897,1.124,0.654,0.751,1.135,1.013,0.682,0.571,1.101,1.074,0.46,0.809,1.44,1.38,4.215,1.164,0.772,0.692,0.888,1.058,1.389,0.771,1.1,1.084,0.653,0.752,0.904,1.313,0.977,0.627,1.137,0.811,1.178,0.709,0.834,1.638 +NM_005643,0.751,1.002,1.216,0.936,1.091,1.066,0.652,0.632,1.21,1.01,0.948,0.878,0.813,0.875,0.864,1.19,1.019,0.974,1.281,0.832,0.764,1.016,0.951,1.158,0.611,0.856,1.452,0.785,0.616,0.987,0.992,1.744,1.836,1.013,0.521,0.9,1.089,1.105,1.504,1.012,1.278,0.91,0.861,1.362,1.0,1.014,0.929,0.794,1.039,0.899,0.921,0.903,0.844,1.887 +NM_005644,0.905,1.191,1.361,0.828,1.045,0.968,0.712,0.495,1.15,1.106,0.933,1.095,0.75,0.831,0.945,1.105,0.956,0.889,1.17,1.049,0.506,0.792,0.984,1.239,0.627,1.049,1.384,0.999,0.498,1.16,0.973,1.093,0.963,1.172,0.544,0.828,1.036,0.864,1.368,0.7,1.085,1.212,0.622,1.352,1.117,1.037,1.013,0.848,0.789,0.839,1.203,0.971,0.974,1.056 +NM_005645,0.914,1.022,1.136,0.904,0.982,0.961,0.713,1.022,1.162,1.104,0.956,1.037,0.948,0.878,0.888,1.313,1.009,1.042,1.037,0.908,1.007,1.046,1.076,1.02,0.993,0.969,1.181,0.934,0.92,1.05,1.125,1.268,1.134,0.94,1.039,1.056,1.188,0.855,1.138,1.041,1.053,1.024,1.039,0.885,1.032,0.92,1.247,0.875,0.947,0.943,1.102,1.063,0.777,0.998 +NM_005646,0.882,1.085,1.308,0.825,1.047,0.749,0.64,0.846,1.442,1.183,0.774,1.057,0.772,0.812,0.996,1.112,1.061,0.944,1.24,1.089,0.54,1.071,1.441,1.065,0.679,0.938,1.412,0.892,0.519,0.954,0.973,1.311,1.553,0.999,0.545,1.403,0.887,1.196,0.83,0.879,1.17,1.156,0.719,0.97,1.044,0.89,1.009,0.805,0.995,0.936,1.059,0.825,0.879,2.143 +NM_005647,0.999,0.922,1.371,0.628,1.291,0.835,0.673,0.642,1.177,1.325,0.541,1.187,0.832,0.782,0.717,0.522,1.026,1.156,1.514,0.952,0.858,1.147,0.743,1.267,0.712,1.265,1.155,1.11,0.767,0.641,1.11,1.33,1.623,1.19,0.506,0.474,0.541,1.337,0.943,1.136,1.452,0.984,0.488,1.046,1.402,0.511,1.001,1.201,0.364,1.263,0.811,0.939,0.975,1.13 +NM_005648,0.706,0.727,1.423,0.52,1.216,1.1,0.523,1.242,1.452,1.1,0.683,1.645,0.896,0.612,0.864,1.339,1.061,0.989,1.745,0.743,0.526,1.13,0.845,1.631,0.391,0.799,1.324,1.201,0.406,0.91,1.324,1.155,2.478,0.965,0.809,0.879,1.006,1.259,1.316,1.262,1.419,0.654,0.44,0.862,1.263,1.002,1.423,1.274,1.357,0.9,0.866,0.863,0.802,1.601 +NM_005649,0.859,0.97,0.98,0.812,1.002,1.166,0.857,0.73,1.297,1.081,0.919,0.951,1.011,0.868,0.917,1.067,0.931,0.87,0.934,1.106,0.937,0.988,1.021,0.978,1.017,0.893,1.15,1.199,0.779,1.039,0.956,1.367,1.64,1.11,0.833,0.836,0.847,0.957,1.085,1.191,1.11,1.132,0.827,0.901,1.013,0.923,1.017,0.834,1.003,0.855,1.127,0.952,0.929,1.61 +NM_005650,0.954,0.938,0.98,0.923,1.132,0.895,0.924,1.134,0.992,1.022,1.005,1.018,1.086,0.832,0.838,0.993,1.105,0.989,1.004,1.046,0.936,1.006,0.969,1.015,0.971,1.053,1.1,1.052,0.602,1.102,1.066,1.066,0.755,0.864,1.171,1.07,0.999,0.917,1.024,1.153,0.945,1.162,0.88,1.158,1.038,0.968,1.096,1.178,0.902,0.851,0.9,0.923,0.936,1.004 +NM_005651,1.127,0.945,0.907,1.146,0.934,0.873,0.809,0.837,1.097,0.955,0.855,0.874,0.92,0.985,1.066,0.938,1.007,0.79,1.067,0.987,0.816,1.047,0.986,0.827,1.004,0.948,1.037,1.196,0.891,0.906,1.129,1.145,1.094,0.99,0.788,1.01,1.179,0.896,1.084,1.235,0.947,0.864,0.991,0.978,0.847,1.233,1.1,0.902,0.838,1.039,0.988,1.638,0.878,1.537 +NM_005652,0.619,0.978,1.124,0.695,0.696,1.101,0.562,0.501,1.096,0.872,1.126,0.632,0.579,0.804,1.103,1.996,0.767,0.662,1.147,0.996,0.702,0.595,1.075,1.084,0.539,0.703,1.148,0.658,0.473,1.278,0.954,1.684,4.259,1.654,0.317,1.371,0.995,0.795,1.167,0.812,0.878,1.318,0.574,1.259,0.849,0.827,0.74,0.666,0.743,0.802,1.076,0.689,1.073,2.131 +NM_005653,0.847,1.025,1.189,0.774,1.0,1.0,0.691,0.575,0.855,0.93,1.015,0.862,0.647,0.71,0.945,1.293,0.824,0.898,0.923,1.199,0.557,0.651,1.63,1.036,0.777,0.732,0.866,0.865,0.586,1.237,0.901,1.221,1.2,0.993,0.515,0.489,1.046,0.7,1.505,1.227,0.899,1.111,0.661,1.696,0.989,1.245,1.157,0.709,1.271,0.784,1.254,1.054,0.834,1.557 +NM_005654,0.772,1.004,0.906,0.958,0.872,1.238,0.999,0.854,0.946,0.88,0.944,0.838,0.903,0.813,0.82,1.055,1.023,0.954,0.951,0.82,1.104,1.057,1.194,0.866,1.083,0.845,0.755,0.987,0.823,1.16,0.927,3.969,1.095,1.108,1.0,0.914,0.909,0.961,1.177,0.911,1.038,1.368,1.014,1.16,0.965,1.092,0.992,0.928,1.0,1.036,0.908,0.923,1.116,1.13 +NM_005655,1.097,1.074,1.096,0.939,0.863,0.969,0.993,0.783,0.903,1.224,1.002,0.886,0.844,0.8,0.895,0.972,0.879,0.793,0.94,0.974,0.904,0.871,1.0,1.001,0.939,0.965,0.961,1.006,0.959,1.002,1.081,1.368,1.214,0.899,0.84,1.106,1.004,0.946,1.019,1.288,1.011,0.976,1.147,1.148,1.056,1.163,1.062,0.793,1.142,1.016,0.941,0.974,1.473,1.237 +NM_005657,0.841,1.15,1.381,0.736,0.902,0.906,0.823,0.52,0.987,0.933,1.074,0.761,0.561,0.764,0.911,0.883,1.054,1.027,0.999,1.096,0.724,0.852,1.645,0.826,0.745,0.731,1.278,0.728,0.775,0.957,0.933,1.8,1.73,1.247,0.428,0.837,1.035,0.937,1.81,1.108,0.967,1.169,0.723,1.331,0.857,0.904,0.921,0.799,0.795,0.821,1.166,1.083,1.113,2.982 +NM_005658,0.869,0.974,1.314,0.952,0.965,0.867,1.194,0.882,0.974,1.135,1.043,0.889,1.022,0.841,1.039,0.984,1.106,0.998,1.14,0.941,0.879,1.046,1.039,0.964,0.887,0.818,1.133,0.922,1.065,0.903,1.133,1.153,1.118,0.966,0.856,0.89,0.924,0.993,1.229,2.635,0.975,1.09,0.84,0.887,0.952,0.8,0.966,0.906,0.883,1.115,0.849,1.197,0.985,1.556 +NM_005659,0.574,1.03,0.994,0.695,0.844,1.14,0.588,0.45,1.042,0.982,0.967,0.596,0.514,0.582,0.914,2.02,0.897,1.064,1.95,0.863,0.755,0.809,1.299,1.037,0.519,0.825,1.331,0.775,0.499,1.119,0.854,1.052,2.723,1.475,0.346,0.934,1.094,1.085,1.534,0.696,1.164,1.133,0.551,0.835,0.927,1.017,1.559,0.808,1.133,0.895,0.994,0.934,0.985,1.628 +NM_005660,1.073,0.99,1.088,0.964,1.202,0.979,1.022,1.06,1.082,0.927,1.047,1.079,1.12,1.017,1.218,1.06,1.075,1.055,0.989,0.875,0.991,1.08,0.973,1.051,1.042,1.071,0.917,1.154,1.162,0.92,0.978,0.893,0.97,0.866,1.269,0.949,0.924,1.129,0.957,0.995,0.986,0.938,0.968,0.951,1.011,1.028,0.88,1.179,1.065,1.037,1.064,1.018,1.126,1.128 +NM_005662,0.662,0.754,1.038,0.625,0.925,1.295,0.498,0.563,1.16,0.956,1.242,1.013,0.649,0.677,0.907,1.882,0.801,0.875,1.443,0.926,0.505,1.047,1.369,1.249,0.508,0.832,1.105,0.937,0.357,1.065,0.954,0.929,2.213,1.137,0.2,0.658,1.427,0.986,1.273,0.296,1.254,1.036,0.643,0.757,1.031,1.563,1.07,0.675,1.667,0.719,1.267,0.73,0.828,1.704 +NM_005663,1.141,0.822,1.05,0.944,1.226,0.961,0.898,0.832,1.18,1.067,0.797,1.166,0.877,0.901,0.827,0.956,1.028,0.853,1.268,0.824,0.965,1.319,0.943,1.183,0.79,1.276,1.15,0.944,1.008,1.114,1.002,0.974,1.237,1.004,0.896,0.921,0.863,1.248,1.32,0.967,1.098,1.042,0.731,1.226,0.999,0.824,1.064,1.406,0.926,1.147,0.87,0.771,0.928,1.181 +NM_005667,0.685,1.43,0.952,1.049,0.927,1.359,0.981,0.539,0.955,0.796,1.598,0.612,0.606,0.632,1.261,1.959,0.683,1.02,0.857,2.228,0.556,0.517,1.932,0.685,0.791,0.733,0.788,0.888,0.613,1.333,0.999,1.438,1.188,1.811,0.951,0.994,1.1,0.842,1.654,0.909,0.979,1.637,0.882,1.176,0.803,1.657,0.937,0.726,1.233,0.808,1.577,0.792,0.838,1.143 +NM_005668,0.882,1.077,1.023,1.057,0.991,1.001,1.099,0.946,1.005,0.928,1.023,1.063,0.949,0.879,1.214,0.96,0.935,1.083,0.813,0.94,1.05,0.817,0.896,0.966,0.999,1.035,1.008,0.988,0.847,1.105,1.048,0.952,1.113,0.901,1.061,0.984,1.031,1.001,1.051,1.308,0.958,1.046,0.943,0.92,1.044,0.992,1.018,0.965,0.932,1.024,0.978,1.127,0.975,1.053 +NM_005669,0.601,1.481,1.15,0.67,0.83,1.466,0.618,0.528,0.978,0.644,1.243,0.867,0.681,0.661,1.032,1.767,0.638,0.857,1.095,1.795,0.396,0.823,1.591,0.817,1.082,0.619,1.389,0.907,0.412,1.73,0.899,1.291,0.944,2.04,0.117,0.681,1.593,0.964,1.094,0.491,1.079,1.8,0.575,0.528,0.632,1.267,0.728,0.531,0.945,0.534,1.373,0.978,0.684,1.261 +NM_005670,0.818,1.105,0.987,0.887,0.995,0.961,0.773,0.918,0.916,1.072,0.916,0.985,0.799,1.311,0.926,0.951,1.004,0.829,0.886,1.073,0.957,0.986,1.115,0.999,0.851,0.775,0.962,1.166,0.907,0.943,0.915,1.148,1.235,1.477,0.902,0.868,0.948,0.989,1.05,0.938,1.078,1.258,0.886,0.938,1.033,0.835,0.993,0.889,0.819,0.884,1.037,0.932,1.021,0.918 +NM_005671,0.75,1.049,0.977,0.78,0.852,1.213,0.783,0.769,0.96,0.923,1.311,1.045,0.797,0.717,1.0,1.649,0.921,0.838,1.065,0.974,0.811,0.654,1.92,1.155,0.779,0.808,1.07,0.916,0.633,1.261,0.846,0.951,1.184,1.38,0.528,0.911,1.182,0.93,1.259,0.785,1.042,0.994,0.697,0.898,0.889,1.261,0.948,0.714,1.387,0.8,1.305,1.005,0.955,1.491 +NM_005674,0.965,1.343,0.845,0.931,1.01,1.089,0.933,0.927,0.919,0.942,1.053,0.903,0.935,1.195,0.941,1.014,0.991,0.993,0.929,0.931,0.99,0.806,1.254,0.908,0.863,0.888,0.777,0.78,0.837,1.015,1.084,1.178,3.869,1.071,0.814,1.068,0.933,0.901,1.282,0.965,0.9,1.033,1.046,1.608,0.831,0.922,0.967,0.995,1.129,0.807,1.019,1.171,0.839,3.814 +NM_005675,1.022,0.946,1.004,0.969,0.902,0.962,0.927,0.95,1.141,1.128,0.963,1.145,1.075,0.943,0.847,1.026,1.088,0.924,1.358,0.871,0.977,1.194,0.879,1.147,1.005,1.228,0.963,1.065,0.75,0.864,0.95,1.147,1.376,1.026,0.89,0.847,0.935,1.322,1.189,0.871,1.123,0.96,0.863,1.1,1.111,0.896,0.895,1.15,0.839,0.96,0.922,0.963,0.886,1.243 +NM_005679,1.001,0.958,1.017,0.974,0.964,0.842,0.952,0.941,0.976,1.034,0.928,0.939,0.974,0.997,0.972,1.022,1.094,1.11,1.0,1.101,1.02,0.956,1.015,1.002,0.997,1.099,1.06,1.028,0.785,0.995,1.118,0.914,1.011,0.976,1.074,0.897,0.976,0.962,1.038,1.024,1.004,1.031,1.13,1.029,1.032,1.002,1.079,0.959,1.048,0.923,1.031,0.98,1.048,0.948 +NM_005681,1.054,1.027,0.998,1.149,0.935,1.124,0.902,0.971,1.059,1.041,1.005,0.942,0.928,0.987,1.123,1.167,1.058,1.036,0.907,0.906,0.962,0.99,0.918,1.015,1.224,1.006,1.07,0.993,0.884,1.182,0.961,1.009,1.149,1.022,1.005,1.034,0.97,1.053,0.936,0.991,1.133,0.931,0.978,1.071,1.185,0.954,1.078,1.07,1.053,0.945,1.0,0.954,0.989,1.0 +NM_005683,1.158,0.97,1.533,0.94,0.948,1.019,1.063,0.972,1.024,0.991,1.0,0.86,1.032,1.035,1.277,0.949,1.091,1.163,0.918,0.836,1.069,0.892,0.931,0.966,0.957,0.864,1.334,1.018,1.107,1.053,1.12,0.887,1.174,0.911,1.027,0.986,1.017,0.947,0.92,0.977,1.314,1.103,1.046,0.969,0.959,0.961,0.907,1.018,0.914,1.123,0.988,1.127,0.936,1.041 +NM_005685,1.244,0.689,1.714,0.883,1.07,0.872,0.681,0.961,1.363,1.398,0.76,0.945,0.999,1.106,1.055,1.002,1.212,1.07,1.539,0.704,1.069,1.362,1.093,1.241,0.769,1.388,1.281,1.268,0.513,0.808,1.253,1.013,2.052,0.962,1.945,0.683,0.575,1.202,1.126,0.907,1.349,0.756,0.57,1.347,1.324,0.726,1.045,1.386,0.62,1.255,0.806,0.895,0.972,1.314 +NM_005686,0.803,0.884,1.229,0.911,0.768,1.156,0.822,0.696,1.085,0.811,1.061,0.586,0.802,0.805,1.132,1.334,0.726,0.867,0.942,1.266,0.637,0.844,1.115,0.825,0.736,0.995,0.931,0.888,0.716,1.187,0.804,0.963,1.394,1.138,0.567,1.962,1.125,0.785,1.392,0.99,0.887,1.363,0.851,2.336,0.927,1.077,0.887,0.881,1.063,0.831,1.233,0.863,0.725,0.848 +NM_005687,0.962,1.06,0.889,1.107,0.942,0.97,0.982,0.906,1.063,0.961,1.073,1.054,1.014,1.057,0.819,0.989,0.907,1.09,0.854,1.055,0.976,0.897,0.939,0.966,0.999,1.072,0.926,1.188,1.166,0.873,1.001,0.899,1.057,0.99,1.103,0.79,1.227,0.911,0.796,0.951,1.131,1.104,0.917,0.892,1.107,1.164,1.169,1.081,1.011,1.02,0.963,1.015,1.138,0.99 +NM_005688,0.934,1.255,1.189,0.854,0.795,1.248,0.905,0.653,1.303,0.704,0.696,0.753,0.715,0.9,1.044,0.683,1.162,1.186,1.002,1.147,0.683,0.878,0.839,0.947,1.273,0.914,1.853,0.713,1.146,1.247,0.93,1.551,1.251,2.124,0.685,0.813,1.04,1.118,1.342,1.0,0.958,0.942,1.409,1.084,0.831,0.793,1.075,0.936,0.735,0.957,0.737,0.786,1.157,1.767 +NM_005689,0.798,0.881,1.117,0.815,1.054,1.004,0.761,0.825,1.072,1.045,0.752,0.868,0.906,0.74,0.936,1.297,1.11,1.161,1.16,0.891,0.874,1.269,1.302,1.107,0.74,0.803,1.17,0.876,0.602,1.262,1.194,1.512,1.467,1.029,0.503,1.001,0.871,1.283,2.365,1.357,1.124,0.877,0.679,0.999,1.309,0.774,0.962,1.008,0.905,1.001,0.885,0.752,0.891,1.429 +NM_005692,1.848,1.749,2.0149999999999997,1.641,2.044,1.9769999999999999,1.866,1.7149999999999999,2.235,2.289,1.733,1.755,1.771,1.9780000000000002,1.9409999999999998,2.0149999999999997,2.39,1.759,2.46,1.8079999999999998,1.912,1.8359999999999999,2.466,2.5,1.808,1.876,2.458,1.873,1.738,2.135,1.9489999999999998,2.187,3.192,2.0090000000000003,1.685,1.7890000000000001,1.863,2.098,2.791,1.9300000000000002,2.3200000000000003,1.829,1.756,2.494,2.319,1.696,2.043,1.818,2.0389999999999997,2.101,2.124,1.775,2.141,2.637 +NM_005693,0.573,1.351,0.622,1.099,0.675,2.51,0.832,0.544,0.683,0.511,3.133,0.568,0.665,0.433,0.958,2.696,0.594,0.973,0.631,1.189,0.56,0.676,1.508,0.54,1.394,0.749,0.611,0.556,1.017,3.4,0.586,0.966,1.388,2.255,0.448,1.014,1.733,0.603,2.187,1.042,0.589,2.393,1.345,1.329,0.49,1.492,0.874,0.586,1.037,0.461,0.945,0.856,0.656,1.491 +NM_005697,0.828,1.231,0.958,0.759,1.201,1.187,0.911,0.764,1.424,1.168,0.642,0.92,0.719,0.635,0.711,1.116,1.04,1.191,1.011,1.323,0.688,0.895,1.276,1.025,0.703,0.828,0.867,1.045,0.776,1.224,0.844,1.163,0.842,1.359,1.039,1.613,0.913,0.92,1.331,0.731,1.248,1.136,0.951,0.77,0.819,1.291,1.214,0.701,1.301,0.815,1.181,0.977,0.839,0.828 +NM_005698,1.033,1.04,0.946,0.915,0.96,0.936,0.736,0.756,1.03,0.883,0.999,0.859,0.794,0.962,0.793,1.121,0.912,1.033,0.953,1.059,0.917,0.798,0.925,0.814,0.926,0.906,1.059,1.08,0.809,0.956,1.077,1.552,1.844,1.048,0.77,1.014,0.879,0.889,1.136,0.969,0.977,0.977,0.959,1.554,0.978,0.904,0.831,0.846,1.044,1.147,1.077,0.936,1.21,1.628 +NM_005699,1.03,1.023,0.891,0.937,1.108,1.081,1.079,1.05,1.089,1.052,1.0,0.89,1.034,0.926,1.052,1.077,1.005,0.991,0.936,0.961,0.896,0.987,1.181,1.038,0.968,1.088,1.052,0.979,0.871,0.998,0.901,1.078,0.962,1.053,0.941,1.104,0.892,0.866,1.053,1.12,1.112,1.004,1.112,0.968,1.019,0.96,0.928,0.99,0.972,1.079,1.06,1.019,0.914,1.078 +NM_005700,0.906,1.05,0.982,1.077,0.847,1.047,0.786,0.788,1.03,0.974,1.175,0.875,0.806,0.827,0.931,1.075,0.98,0.961,0.93,1.108,0.866,0.797,1.133,0.976,0.918,1.012,1.13,0.876,0.987,1.136,0.962,1.258,1.38,1.189,0.735,1.107,0.997,0.861,1.281,1.042,0.912,1.045,0.778,1.547,0.922,1.308,1.002,0.8,1.388,0.939,1.107,0.814,0.969,1.118 +NM_005701,0.797,1.238,1.158,1.01,0.744,1.177,0.788,0.496,0.836,0.822,1.25,0.831,0.706,0.73,0.971,1.261,0.9,0.823,1.17,0.937,0.879,0.966,1.373,0.809,0.944,0.85,1.072,0.822,0.639,1.294,0.8,1.145,1.49,1.521,0.601,1.135,0.99,0.866,1.946,0.949,0.952,1.047,0.742,1.282,0.873,0.866,0.934,0.808,0.876,0.729,0.899,0.84,1.034,1.198 +NM_005702,0.903,0.921,0.839,0.977,0.724,1.094,0.591,0.598,0.888,0.89,0.951,0.863,0.879,0.747,0.879,1.338,0.908,0.882,1.274,0.805,0.857,0.895,1.155,1.001,1.006,0.897,1.132,0.8,0.703,1.148,0.735,1.201,2.024,1.186,0.475,0.966,0.947,0.773,1.996,0.744,0.858,1.031,0.671,1.736,0.999,0.866,0.783,0.935,1.065,1.046,1.026,0.942,1.005,1.484 +NM_005706,0.713,1.242,0.607,0.685,1.117,0.827,0.601,0.535,1.059,1.32,1.073,1.012,0.578,0.628,0.684,1.03,0.481,1.041,0.994,1.174,0.521,0.931,1.218,1.28,0.597,1.013,0.755,1.154,0.717,1.478,0.702,1.396,0.796,0.969,0.243,2.934,0.941,1.077,1.047,1.369,1.158,1.054,1.266,0.997,0.727,1.191,1.069,0.897,1.255,0.448,1.086,0.747,0.677,1.518 +NM_005707,1.168,0.862,1.483,0.679,1.211,0.784,0.651,0.608,1.638,1.242,0.688,0.944,0.874,1.103,0.949,0.964,1.704,0.75,1.372,0.718,0.897,1.345,1.196,1.61,0.78,1.034,1.95,1.17,0.474,0.98,1.078,1.316,1.281,0.878,0.526,0.645,0.765,1.465,1.149,0.581,1.731,0.887,0.659,0.744,1.076,0.765,1.225,0.873,0.752,1.062,0.813,0.794,0.818,1.403 +NM_005708,0.842,1.004,0.94,0.869,1.0,1.107,1.01,0.958,0.893,0.938,0.932,0.922,0.813,1.381,1.212,1.005,0.854,0.95,0.995,1.0,0.875,0.867,0.994,0.924,1.012,0.867,0.984,0.882,1.053,1.254,1.046,2.593,0.964,1.171,0.883,0.97,0.988,0.923,1.065,1.119,1.074,1.306,0.981,1.017,0.989,1.061,1.047,0.923,0.9,0.888,0.981,0.826,0.958,1.017 +NM_005710,0.798,0.903,1.045,0.88,0.82,0.965,0.587,0.722,0.968,1.054,0.852,0.94,0.942,0.585,0.826,1.186,0.816,0.943,1.135,0.901,0.767,0.976,1.06,1.084,0.671,1.097,0.981,0.857,0.354,0.958,0.777,1.411,1.956,1.157,0.443,1.237,0.996,1.103,1.408,0.852,0.987,1.129,0.608,1.007,0.939,0.748,1.004,1.019,0.859,0.917,0.862,1.026,0.91,1.386 +NM_005711,1.114,0.847,1.043,0.951,1.126,0.955,1.164,1.069,1.102,0.89,0.966,0.988,1.127,1.24,0.831,0.976,0.917,0.944,0.818,1.278,1.136,1.003,1.158,0.892,1.061,0.894,0.828,0.886,1.003,0.973,0.938,0.989,0.889,0.998,1.046,0.89,1.011,0.665,0.868,1.06,0.895,1.221,1.133,0.972,1.061,1.071,0.982,1.073,1.034,1.121,0.897,1.25,0.77,0.906 +NM_005712,1.014,0.848,1.18,0.941,1.036,1.081,0.996,0.925,1.014,0.995,0.982,1.081,1.061,1.043,0.862,0.934,1.143,1.058,0.973,1.031,0.943,1.045,0.954,0.949,1.007,0.987,1.052,1.006,1.037,1.016,0.924,0.855,1.008,1.067,0.938,0.937,0.91,1.033,0.985,0.991,0.911,1.074,1.07,0.954,1.09,0.904,1.031,1.064,1.049,0.93,1.123,0.866,1.128,0.99 +NM_005713,1.125,1.061,1.113,1.028,1.068,0.967,1.093,0.954,1.085,1.077,0.867,1.138,0.998,0.981,1.077,0.954,1.034,0.981,1.001,0.999,1.032,0.945,0.984,1.03,0.975,0.99,1.042,1.04,1.299,1.117,1.085,0.97,1.032,1.026,0.976,0.966,0.991,0.986,1.113,1.05,1.141,1.033,1.126,0.973,0.934,0.933,1.192,0.927,1.092,0.988,1.001,0.892,0.858,0.988 +NM_005715,0.786,2.313,1.183,1.14,0.856,2.105,1.412,0.809,0.964,0.979,1.377,0.858,0.858,0.945,1.07,1.203,0.902,1.011,0.928,1.131,0.893,0.815,0.781,0.901,1.071,0.866,1.13,0.905,0.905,2.44,0.859,1.434,0.74,2.406,0.811,0.927,1.054,0.989,1.417,0.81,0.86,1.308,0.776,1.077,0.89,0.698,0.916,0.814,0.684,0.848,1.128,1.022,1.063,0.698 +NM_005717,0.469,0.727,1.487,0.478,1.17,1.605,0.645,0.849,1.184,0.866,0.779,1.242,0.901,0.484,0.988,2.245,1.096,1.037,0.69,1.239,0.201,1.149,1.105,1.503,0.282,0.425,1.802,0.958,0.386,1.095,1.089,1.356,1.411,0.847,0.371,0.604,1.128,1.491,1.48,1.285,1.248,0.999,0.474,0.521,1.108,1.034,1.348,0.849,1.276,0.788,1.384,0.69,0.402,1.244 +NM_005718,0.728,0.837,0.972,0.929,0.81,1.437,0.545,0.583,0.991,0.977,1.175,0.791,0.683,0.54,0.863,1.748,1.23,1.055,1.445,0.767,0.718,0.934,1.053,1.134,0.776,1.172,1.192,0.677,0.697,1.344,0.781,1.012,1.175,1.471,0.42,0.655,1.219,0.899,1.889,0.962,0.976,1.163,0.658,0.902,1.087,0.845,1.311,0.994,0.984,1.07,0.931,0.811,0.989,1.199 +NM_005719,0.801,0.64,1.318,0.663,1.039,1.359,0.514,0.788,1.378,0.843,1.194,1.061,0.887,0.676,0.905,1.515,1.314,0.987,1.451,1.019,0.539,1.15,0.979,1.134,0.471,1.083,1.443,1.056,0.417,1.05,1.134,0.799,0.858,1.323,0.995,0.933,1.157,1.04,0.965,0.765,1.351,0.936,0.561,0.591,0.942,1.075,1.14,1.065,0.913,0.996,1.005,0.821,1.062,1.03 +NM_005720,0.175,0.982,0.54,0.574,0.253,1.486,0.415,0.0985,0.306,0.438,1.389,0.21,0.188,0.141,0.895,2.715,0.36,0.589,0.404,1.215,0.247,0.184,1.824,0.351,0.381,0.208,0.604,0.204,0.314,1.634,0.204,2.194,1.632,1.559,0.118,1.135,1.921,0.226,2.741,1.929,0.399,1.619,0.912,3.857,0.393,1.919,1.461,0.168,1.433,0.452,1.698,1.719,0.655,1.371 +NM_005721,0.759,0.669,1.597,0.61,1.324,1.177,0.665,0.616,1.643,1.258,0.842,1.184,0.651,0.693,1.072,1.741,1.003,1.06,1.41,0.843,0.496,0.94,1.044,1.696,0.451,0.745,1.467,1.287,0.382,0.892,1.258,0.714,1.956,0.983,0.486,0.57,1.143,1.123,1.212,0.907,1.431,0.781,0.581,0.739,1.486,0.966,1.091,0.799,1.392,0.985,1.126,0.681,1.098,1.213 +NM_005722,0.683,0.613,1.265,0.723,1.196,0.848,0.723,0.63,1.56,1.196,1.2,0.657,0.704,0.806,0.868,1.405,0.984,0.93,1.278,0.815,0.745,0.603,1.282,0.979,0.515,0.883,1.088,1.071,0.459,0.97,1.337,0.973,2.664,1.015,1.045,1.004,1.027,0.742,0.991,0.843,1.451,1.079,0.814,1.188,1.173,1.173,1.414,0.826,1.076,0.989,1.106,0.753,1.167,1.567 +NM_005723,1.242,0.828,1.225,0.893,1.542,1.255,1.011,1.381,2.405,1.038,0.501,1.346,1.328,0.818,1.068,0.628,0.813,1.593,1.344,1.033,0.716,1.65,0.559,1.35,0.86,0.804,1.085,2.081,0.824,1.341,1.319,0.684,0.775,1.575,2.719,0.543,0.836,1.273,0.896,0.963,1.46,0.84,0.644,1.414,1.272,0.538,1.01,1.555,0.403,0.972,0.839,0.819,0.8,0.589 +NM_005724,0.201,1.54,0.461,0.849,0.308,2.515,0.718,0.169,0.451,0.32,2.681,0.209,0.289,0.179,1.327,4.577,0.294,1.267,0.437,3.121,0.174,0.246,3.807,0.286,0.479,0.333,0.614,0.269,0.461,1.238,0.271,0.667,1.045,1.564,0.122,1.922,2.391,0.36,3.381,0.584,0.399,2.489,1.208,1.346,0.402,2.512,1.269,0.351,2.156,0.392,2.923,0.712,0.433,1.017 +NM_005726,0.781,0.871,0.952,1.105,0.635,0.998,0.774,0.423,0.824,0.866,1.598,0.726,0.682,0.598,0.874,1.335,0.757,0.9,0.975,0.885,0.67,0.728,1.582,0.709,0.91,1.046,0.996,0.679,0.504,1.382,0.691,1.431,1.119,1.457,0.276,1.609,1.094,0.657,2.095,0.915,0.72,0.997,0.887,3.149,0.756,1.146,0.973,0.835,1.117,0.971,1.013,0.976,1.002,1.863 +NM_005727,0.0179,1.514,0.0162,1.181,0.0197,3.091,1.028,0.0172,0.0176,0.0202,2.723,0.023,0.0261,0.0233,1.492,2.947,0.0229,1.897,0.0184,2.199,0.0219,0.0206,2.373,0.0284,1.022,0.0204,0.0268,0.0178,1.055,2.319,0.0192,0.304,0.59,2.531,0.0278,1.406,2.444,0.0202,2.829,0.199,0.0228,2.515,1.346,1.627,0.0194,2.458,0.981,0.0204,1.421,0.0199,2.289,0.371,0.0375,1.019 +NM_005729,0.868,0.651,0.854,0.979,2.67,1.003,1.102,2.748,0.878,1.604,0.666,1.017,0.746,0.433,0.657,1.142,1.146,1.233,2.112,0.538,1.2,0.566,0.746,0.922,1.777,0.599,2.018,0.579,1.245,1.125,0.851,0.657,1.235,1.637,2.431,0.969,0.922,2.368,1.334,1.814,2.465,0.731,0.521,0.724,2.825,0.575,1.712,1.259,0.776,5.086,0.63,0.568,0.865,0.867 +NM_005730,0.514,0.984,1.695,0.564,0.868,1.169,0.556,0.548,1.046,1.003,0.862,0.63,0.527,0.637,1.042,1.143,1.058,0.914,1.109,1.284,0.496,0.901,0.974,0.914,0.534,0.617,1.25,0.875,0.372,1.576,0.969,2.386,1.137,1.561,0.41,0.845,0.871,0.938,0.883,0.978,1.162,1.288,0.46,1.295,0.743,0.831,1.028,0.572,0.833,0.837,0.871,0.669,0.841,1.366 +NM_005731,1.809,1.5550000000000002,2.427,1.556,2.541,2.182,1.7429999999999999,2.213,2.397,2.2720000000000002,1.8679999999999999,2.4,1.946,1.648,2.011,2.701,1.996,2.072,2.702,1.766,1.6709999999999998,2.22,1.915,2.613,1.548,2.06,2.089,2.272,1.774,1.957,2.242,2.008,2.2840000000000003,2.273,1.52,1.599,1.9849999999999999,2.4139999999999997,1.956,1.839,2.436,1.8199999999999998,1.626,1.932,2.243,1.654,2.0789999999999997,2.144,1.81,1.9769999999999999,2.037,1.811,2.13,2.16 +NM_005732,1.018,0.927,0.881,1.143,0.986,0.971,0.97,1.003,0.958,1.025,1.022,0.956,0.922,1.285,0.802,0.99,0.916,0.901,0.985,1.002,0.899,1.006,1.092,0.926,1.011,0.994,1.131,1.38,0.79,1.085,0.955,0.958,1.198,1.096,0.919,0.998,0.932,0.952,1.011,0.998,0.914,1.026,0.76,1.184,0.934,0.977,1.035,0.95,0.97,1.0,1.09,0.97,1.1,1.141 +NM_005733,0.867,0.754,1.707,1.162,0.977,0.849,0.749,0.65,1.043,1.055,0.687,0.971,0.865,0.845,0.935,1.042,0.967,1.202,1.522,0.73,0.953,0.805,1.383,1.056,0.632,0.834,2.409,0.849,0.502,0.875,0.851,1.004,6.346,0.738,0.541,1.211,0.937,0.914,1.818,1.259,1.283,0.687,0.552,1.474,1.185,0.78,1.168,0.776,1.166,0.913,1.334,1.246,1.085,2.515 +NM_005734,1.053,1.043,0.983,0.927,1.07,0.967,0.705,0.857,0.929,1.116,0.936,0.976,0.922,0.902,0.779,1.124,0.956,1.048,0.811,1.165,0.668,1.063,0.801,0.941,0.948,1.136,1.171,1.028,0.935,0.891,0.81,1.07,0.959,1.103,1.329,1.036,1.087,1.121,1.181,1.036,1.104,1.068,0.959,1.033,0.961,0.952,0.984,1.203,1.115,0.987,1.015,1.075,0.909,0.971 +NM_005735,0.874,0.995,0.923,0.867,0.751,1.178,0.608,0.685,0.96,0.746,1.28,0.85,1.095,0.726,0.887,1.832,0.79,0.996,1.074,0.986,0.74,0.861,1.109,1.002,0.988,1.099,1.252,0.789,0.615,1.227,0.723,1.263,1.875,1.734,0.422,0.926,0.988,0.947,1.626,1.018,0.882,1.201,0.877,1.07,0.993,1.07,0.826,0.906,0.605,0.914,1.101,0.564,0.893,1.117 +NM_005736,0.709,0.826,1.069,0.579,1.003,0.723,0.434,0.52,1.229,1.387,0.86,1.1,0.641,0.74,1.04,1.522,0.966,0.981,1.453,0.854,0.736,0.752,1.137,1.097,0.478,1.097,1.172,0.961,0.33,0.71,1.069,1.668,1.077,0.702,0.512,1.618,0.887,1.099,1.337,0.647,1.047,0.876,0.932,1.143,1.356,1.492,1.205,0.936,1.025,0.954,0.972,0.841,1.395,1.203 +NM_005737,1.148,1.036,1.009,0.872,1.216,1.064,0.7,1.044,1.206,0.997,0.822,0.906,1.081,1.172,0.938,0.948,1.064,1.015,1.127,0.783,1.069,1.026,0.871,0.98,0.95,1.04,1.22,1.226,0.732,0.972,1.073,1.119,1.023,1.072,1.484,0.894,0.994,1.285,1.088,1.097,1.538,0.904,0.824,1.104,0.962,0.859,1.01,0.988,0.897,1.052,1.0,0.884,1.221,1.214 +NM_005738,0.966,0.466,0.991,0.63,1.133,1.301,0.463,1.064,1.398,0.663,1.141,1.2,1.052,0.728,1.367,1.861,0.593,0.782,0.964,1.3,0.53,1.124,2.072,1.124,0.455,0.943,1.407,1.483,0.345,1.016,1.369,0.543,1.116,0.877,1.41,0.937,1.12,1.063,0.907,1.371,1.254,1.098,0.907,1.799,0.876,1.072,1.17,1.473,1.366,0.785,1.181,0.801,0.602,0.859 +NM_005739,1.15,0.98,2.829,0.952,1.198,0.904,1.182,1.248,1.424,1.242,0.795,1.222,1.329,1.107,1.132,1.013,1.947,1.035,1.11,0.928,0.977,1.296,1.049,1.433,0.967,0.954,4.514,1.451,0.899,0.927,1.428,0.898,1.305,1.021,1.132,0.74,0.972,1.381,0.932,0.84,1.473,1.058,0.877,0.913,1.691,0.901,0.947,0.99,0.951,1.953,1.116,1.115,1.109,1.16 +NM_005740,0.834,1.131,1.026,0.898,0.809,1.367,0.811,0.657,0.841,0.633,1.425,0.943,0.797,0.815,1.013,1.105,0.968,0.949,1.225,1.138,0.664,0.838,1.306,0.753,0.929,0.961,1.105,0.866,0.764,1.25,0.845,1.471,2.455,2.111,0.347,0.612,0.945,0.786,1.439,0.873,0.826,1.082,0.721,1.074,0.813,1.038,0.709,0.77,0.69,0.783,1.039,0.714,1.108,1.895 +NM_005741,0.83,0.837,1.148,1.089,0.836,1.031,0.779,0.762,0.891,0.898,1.11,0.846,0.814,0.726,0.852,1.129,0.904,0.957,0.88,1.0,0.75,0.837,1.212,0.953,1.0,0.969,0.984,0.706,0.666,1.123,0.936,1.31,1.99,1.245,0.746,1.095,0.828,0.827,1.157,0.99,0.889,1.062,0.898,1.363,0.904,0.903,1.102,0.701,0.869,0.934,0.915,0.849,1.076,1.182 +NM_005744,0.89,0.903,1.215,1.049,1.295,0.771,0.811,1.129,1.225,1.134,1.037,0.79,0.877,1.113,1.402,1.217,0.925,0.998,1.391,0.908,0.878,1.022,0.991,1.107,0.803,1.029,1.321,1.364,1.075,0.917,1.337,0.975,1.349,1.025,1.541,0.88,0.954,1.219,1.165,0.827,1.253,0.918,0.966,0.898,0.964,0.899,1.114,1.258,1.038,1.102,0.884,0.855,0.98,1.237 +NM_005745,0.891,0.867,1.016,0.698,0.923,0.889,0.416,0.415,1.06,0.973,0.939,0.734,0.681,0.635,0.728,1.309,1.08,0.97,1.3,0.693,0.643,1.101,0.924,1.076,0.626,1.357,1.018,0.858,0.5,1.239,0.858,1.338,1.721,1.005,0.439,1.011,1.114,1.245,1.556,1.126,1.059,1.002,0.597,1.798,1.047,0.977,1.288,1.021,0.851,0.974,0.903,1.322,0.951,1.0 +NM_005746,1.91,0.396,1.904,1.03,1.888,0.542,0.483,2.214,2.442,1.297,0.412,1.971,2.078,0.919,1.157,1.129,1.929,0.996,2.435,0.434,0.723,2.053,0.46,2.343,0.278,1.373,2.027,1.524,0.228,0.55,2.802,0.759,1.015,0.713,2.572,0.334,0.604,1.332,1.214,2.762,1.77,0.537,0.405,0.52,2.475,0.553,1.172,2.416,0.977,2.565,0.572,1.252,1.08,0.987 +NM_005747,0.931,1.0,0.905,55.37,0.978,0.995,0.957,1.147,0.957,0.843,1.031,0.966,0.924,0.839,1.169,1.099,0.963,1.041,0.945,0.974,0.919,0.945,1.058,1.078,1.42,1.003,1.071,0.994,1.676,0.971,1.044,0.967,0.933,0.831,0.998,1.193,1.247,1.049,0.994,1.014,0.877,0.999,1.252,0.807,1.03,1.0,1.016,0.995,1.087,0.898,1.148,0.967,0.975,1.547 +NM_005748,0.885,0.984,1.048,0.846,1.141,0.965,0.797,0.991,1.194,1.008,1.109,0.976,0.885,0.887,1.037,1.402,0.855,1.004,1.012,0.968,0.811,0.955,1.024,0.953,0.956,0.976,1.09,1.126,0.791,0.914,1.057,1.159,1.344,0.978,0.912,1.151,1.104,1.108,0.997,0.924,1.061,0.918,1.113,1.005,1.072,0.948,1.177,1.13,0.963,0.879,1.015,0.855,0.885,1.195 +NM_005749,0.981,1.094,0.973,0.673,1.045,1.028,0.586,0.578,1.252,0.693,1.526,0.767,0.628,0.612,1.094,1.437,0.576,0.918,1.047,1.169,0.718,0.729,1.587,0.833,0.707,0.773,0.584,1.114,0.429,0.911,0.91,0.681,0.933,1.079,1.046,1.257,1.132,0.701,1.239,0.572,1.14,1.302,0.816,1.864,0.983,1.391,0.969,0.62,1.122,0.661,1.107,0.941,0.922,1.037 +NM_005752,1.091,0.935,0.928,1.017,0.953,0.931,1.007,1.052,0.933,1.065,1.092,0.927,1.074,1.215,1.142,0.867,0.977,0.917,0.915,1.155,0.936,0.863,0.919,0.954,1.064,1.009,1.029,1.115,0.983,1.021,0.921,0.961,1.058,1.024,1.128,1.047,1.036,1.108,1.045,0.919,0.851,1.0,1.131,1.079,1.171,1.133,1.018,1.031,1.039,1.014,1.041,1.018,1.025,0.955 +NM_005756,0.889,1.266,1.033,1.004,0.905,1.026,0.961,0.959,0.981,0.944,1.045,0.863,0.98,0.87,0.834,0.96,0.881,1.015,0.943,1.369,0.991,0.881,1.042,0.88,1.199,0.991,0.912,0.995,1.38,0.882,0.966,1.071,0.882,1.51,0.942,0.905,1.019,0.977,1.295,0.904,0.942,1.125,0.755,0.987,0.948,1.018,0.933,1.023,0.923,0.857,1.443,1.105,1.05,0.854 +NM_005757,1.971,1.952,2.026,1.9,1.836,2.403,2.033,2.044,2.125,1.887,2.112,1.912,2.011,1.859,2.013,1.849,1.7890000000000001,1.859,1.917,2.145,1.94,1.92,1.8439999999999999,2.107,2.133,1.717,2.069,1.9629999999999999,1.7530000000000001,2.194,1.847,2.104,2.001,1.96,1.962,1.903,2.031,1.96,2.415,1.8050000000000002,1.946,1.995,1.9209999999999998,2.031,1.972,2.341,2.356,1.9769999999999999,2.061,1.988,2.0100000000000002,2.018,1.739,2.114 +NM_005760,0.571,1.11,1.087,0.566,0.928,1.14,0.634,0.586,1.124,1.045,0.908,1.182,0.803,0.575,0.803,1.283,0.878,0.664,0.731,1.112,0.363,1.151,1.218,1.343,0.546,0.477,1.634,0.844,0.539,1.29,0.833,1.183,3.385,0.86,0.253,0.782,1.045,1.216,1.119,1.126,1.066,1.02,0.849,0.85,0.823,0.938,1.09,0.706,1.266,0.596,1.083,0.829,0.433,1.902 +NM_005761,1.004,1.067,0.999,0.992,1.085,1.015,0.939,1.09,1.146,0.98,0.971,0.97,0.918,1.062,0.878,1.043,0.96,1.135,1.054,1.141,1.046,0.862,0.989,1.034,0.952,1.005,1.228,0.969,1.073,0.938,1.002,1.102,0.93,0.929,1.019,1.093,0.955,0.989,1.004,0.958,0.968,1.008,0.899,0.957,1.066,0.893,0.956,1.056,0.98,0.993,1.02,1.094,1.102,0.995 +NM_005762,1.071,0.732,0.827,1.066,0.758,0.897,0.499,0.623,0.959,0.931,0.704,0.696,0.787,0.885,0.754,1.046,1.008,0.885,1.515,0.625,1.181,1.333,1.417,1.045,0.818,1.33,1.505,0.698,0.74,0.962,0.929,0.847,2.747,1.135,1.273,1.059,0.93,1.192,2.357,0.964,0.917,1.065,0.774,2.221,0.953,0.635,0.803,1.105,0.75,1.124,0.821,0.816,1.05,1.539 +NM_005763,0.895,1.088,1.174,0.889,1.108,0.951,0.882,0.997,0.997,1.0,0.935,1.026,0.993,0.99,1.031,1.157,1.2,0.868,1.133,1.025,1.011,0.972,1.065,1.203,0.97,0.933,1.375,1.048,1.162,0.957,1.062,1.183,0.982,0.808,0.899,1.016,1.052,1.119,0.915,0.94,1.078,0.966,0.898,0.929,1.253,0.816,1.08,0.981,0.992,1.182,0.867,0.93,1.192,1.067 +NM_005764,0.914,1.026,3.28,0.76,1.181,0.522,0.332,0.868,1.274,0.705,0.343,0.959,1.509,0.456,0.627,0.887,5.092,1.079,3.257,0.623,1.461,0.773,0.301,1.031,0.227,0.433,4.04,0.609,0.175,0.746,0.604,2.451,1.722,0.609,1.088,1.726,0.556,1.023,2.03,0.863,2.951,1.053,0.444,2.059,2.245,0.513,1.713,1.271,1.212,3.441,0.549,0.991,3.021,1.221 +NM_005765,0.766,1.14,1.269,0.621,0.859,1.045,0.574,0.491,0.952,0.887,1.262,0.651,0.614,0.54,0.852,1.532,0.716,1.049,1.274,0.951,0.351,0.714,1.279,0.828,0.504,0.758,1.127,0.851,0.308,1.282,0.919,1.732,1.652,1.323,0.217,0.579,1.203,0.922,1.506,0.934,0.906,1.235,0.508,0.588,1.145,0.997,0.936,0.811,0.8,1.001,1.227,1.199,0.931,1.344 +NM_005767,1.455,0.759,2.888,0.923,1.306,0.922,0.727,1.303,2.64,1.766,0.859,2.024,1.736,1.139,1.414,0.908,2.442,1.226,2.424,0.986,1.207,1.051,0.696,2.035,0.705,1.16,2.568,1.685,0.706,0.887,1.664,1.04,1.31,1.173,0.594,0.633,0.858,1.158,0.771,0.762,2.238,0.937,0.825,0.719,1.641,0.754,1.36,1.046,0.686,2.837,0.825,0.983,1.928,1.25 +NM_005768,0.59,1.267,0.92,0.774,0.54,1.771,0.904,0.454,0.613,0.624,1.386,0.507,0.475,0.598,1.009,2.762,0.781,0.874,0.992,0.969,0.399,0.649,1.479,0.759,1.318,0.717,1.128,0.46,1.152,2.799,0.704,1.164,1.462,2.169,0.235,0.607,1.825,0.677,2.564,0.839,0.644,1.573,0.969,0.916,0.78,0.968,0.924,0.724,1.281,0.757,1.366,0.858,0.864,1.144 +NM_005769,0.964,1.889,0.942,0.74,0.984,0.891,0.994,1.218,0.838,0.851,0.907,0.924,0.744,0.855,1.202,0.946,0.896,1.02,0.792,1.332,1.0,0.859,1.079,0.862,1.0,0.719,1.172,0.932,0.968,1.004,0.91,4.176,2.313,0.908,0.975,10.68,1.128,0.789,2.028,1.181,0.822,1.275,1.366,1.263,0.902,1.086,1.174,1.063,0.861,1.081,1.1,1.579,1.046,1.394 +NM_005770,0.82,1.196,0.956,0.903,0.927,1.51,0.669,0.891,0.958,0.849,1.64,1.048,1.157,0.562,0.82,1.507,0.971,1.314,1.498,1.326,0.614,0.893,1.479,1.071,0.987,1.268,0.905,0.857,0.569,0.853,0.829,0.973,0.747,1.68,0.212,1.058,1.319,1.044,1.524,0.659,1.014,1.349,0.621,0.988,0.923,0.927,1.012,1.319,0.785,0.774,1.088,0.781,0.936,0.986 +NM_005771,1.182,0.118,1.29,0.648,2.221,0.979,0.387,1.702,1.48,0.58,1.109,0.986,1.298,0.557,1.082,0.758,2.756,0.788,1.716,1.272,0.766,0.64,0.848,0.87,0.263,1.46,2.213,1.442,0.244,0.535,1.836,0.102,0.672,0.734,2.637,1.915,0.664,1.552,1.945,0.109,2.452,1.106,0.786,1.107,2.103,1.265,1.908,1.919,1.496,1.349,1.423,1.337,1.589,0.757 +NM_005772,0.673,0.962,1.196,0.748,1.024,1.108,0.797,1.028,1.06,1.117,0.764,1.025,0.793,0.848,1.009,1.141,1.009,0.719,1.0,0.963,0.875,1.0,1.227,1.358,0.831,0.727,1.15,0.842,0.952,1.112,1.04,1.3,1.501,1.23,0.633,0.847,0.998,1.007,0.965,0.815,0.979,1.01,1.042,1.202,0.825,0.916,0.851,0.79,1.051,0.897,0.959,0.891,0.932,2.629 +NM_005773,0.949,1.246,1.098,0.784,1.14,0.8,0.906,0.979,1.327,0.959,0.718,1.016,1.11,0.957,1.025,0.94,0.999,1.044,1.154,0.946,0.869,1.219,0.761,1.175,0.843,0.961,1.442,1.124,0.96,0.927,1.062,1.32,3.265,1.216,0.82,1.07,1.063,1.003,0.735,1.088,1.003,1.259,0.819,0.786,0.937,0.917,0.845,1.069,0.82,0.879,0.904,0.83,1.047,0.911 +NM_005775,0.92,0.92,0.866,0.899,1.053,0.891,0.822,0.863,1.041,0.981,0.627,0.875,1.003,0.883,0.969,0.959,0.719,1.149,1.206,1.062,0.93,1.295,1.115,1.1,0.952,1.46,0.924,0.922,1.074,0.942,1.075,2.172,1.028,1.504,0.927,1.008,0.814,1.338,1.44,0.996,0.909,1.138,0.621,1.103,1.055,1.019,0.767,1.329,0.635,0.956,0.844,0.916,0.861,1.626 +NM_005776,0.608,1.105,0.966,0.718,0.979,1.045,0.564,0.395,1.071,1.178,1.948,0.523,0.634,0.701,1.071,2.618,0.522,0.997,1.532,1.014,0.509,0.364,1.468,1.036,0.478,0.591,1.241,0.997,0.256,0.921,0.89,0.92,2.007,1.235,0.366,1.492,1.406,0.662,1.262,0.526,1.003,1.158,0.902,1.879,0.825,1.464,1.3,0.428,1.466,0.617,1.278,0.791,1.075,1.738 +NM_005777,0.742,1.044,0.94,0.949,0.985,0.903,1.131,0.842,1.289,1.221,0.89,0.855,0.845,0.95,1.154,1.123,1.036,0.948,0.881,1.037,0.98,1.001,1.317,1.115,0.843,0.906,1.329,1.159,0.84,1.031,1.237,1.451,1.634,1.136,0.627,1.152,0.695,1.076,1.395,1.282,0.986,0.923,0.731,1.026,1.026,0.96,0.973,0.977,0.947,0.944,1.06,0.997,0.8,1.918 +NM_005778,0.721,0.807,1.431,1.04,0.9,1.028,0.569,0.563,1.392,1.006,0.952,0.713,0.586,0.895,1.279,1.211,1.197,0.723,1.121,1.194,0.69,0.741,1.027,1.252,0.662,0.842,1.437,0.771,0.388,1.412,0.994,1.594,1.178,1.099,0.526,0.974,1.074,0.764,0.995,1.257,0.908,1.067,0.932,0.905,0.869,0.922,0.766,0.605,0.918,0.798,1.159,0.814,0.81,2.847 +NM_005779,0.349,0.902,0.497,0.679,0.391,1.841,0.84,0.302,0.4,0.374,1.598,0.378,0.358,0.325,1.206,1.618,0.517,1.006,0.37,0.999,0.332,0.326,1.074,0.364,0.887,0.375,0.784,0.363,0.938,1.423,0.341,1.707,0.873,1.688,0.337,0.779,1.726,0.367,1.49,1.02,0.368,1.421,1.131,1.004,0.4,1.377,0.726,0.369,1.11,0.521,1.419,1.09,0.531,1.115 +NM_005780,0.864,1.126,0.769,0.995,0.823,1.129,1.029,0.839,0.786,0.893,0.927,0.731,0.909,0.9,1.059,1.028,0.832,0.835,0.763,1.098,0.893,0.825,1.331,0.773,0.936,0.814,0.847,1.027,0.958,1.886,0.867,3.561,1.355,1.68,0.831,1.009,0.875,0.988,1.261,1.138,1.118,1.983,0.798,1.0,0.806,1.012,0.976,0.706,0.878,0.843,1.152,1.205,0.831,1.348 +NM_005781,1.149,1.078,1.059,0.785,0.839,0.681,0.696,0.831,1.178,0.895,0.99,0.623,0.818,0.778,1.311,1.814,0.862,0.71,1.357,0.82,0.5,0.933,0.892,1.108,0.44,1.008,1.505,1.059,0.388,2.216,1.058,1.807,0.81,1.104,1.227,1.561,0.579,1.011,2.54,0.815,1.309,1.227,0.919,2.183,0.951,1.064,0.758,1.399,0.697,0.754,0.686,0.592,0.958,3.831 +NM_005782,0.492,0.783,1.091,0.546,0.726,1.241,0.662,0.479,0.991,1.107,0.71,1.109,0.769,0.37,0.726,1.912,0.862,0.994,1.207,0.743,0.634,0.819,1.714,1.291,0.369,0.565,1.558,0.735,0.468,0.883,0.715,1.554,2.49,0.926,0.205,1.077,1.088,0.855,2.002,1.263,1.006,1.027,0.6,2.578,1.207,0.855,1.285,0.719,1.635,0.972,0.986,0.82,0.66,2.408 +NM_005783,0.926,1.019,1.045,0.873,1.018,1.44,0.972,1.457,0.972,0.834,1.062,0.991,1.082,1.012,1.23,1.255,1.014,1.048,0.86,0.925,0.865,1.296,0.74,1.1,0.904,0.973,1.58,0.936,1.025,0.981,1.205,1.147,1.372,1.023,1.016,0.984,1.069,1.134,1.154,1.131,0.816,0.861,1.021,0.835,0.965,1.018,0.888,0.927,1.123,1.04,1.179,0.913,0.848,0.969 +NM_005786,0.858,0.872,1.165,0.96,0.847,1.141,0.801,0.785,1.331,0.876,1.096,0.726,0.942,0.831,1.191,1.293,0.735,0.848,1.044,1.493,0.826,0.88,1.111,0.806,0.789,0.844,1.297,1.148,0.571,1.308,0.898,1.124,1.333,1.466,0.498,0.673,1.004,0.909,0.996,0.856,1.172,1.297,0.617,1.117,0.83,0.904,0.985,0.758,0.751,0.797,1.057,0.71,0.899,0.895 +NM_005787,0.594,1.098,0.826,0.567,0.629,1.244,0.756,0.58,1.138,1.222,0.791,0.723,0.561,0.628,0.744,1.477,0.865,1.046,1.044,1.313,0.528,0.798,1.509,1.191,0.577,0.71,0.909,0.868,0.536,1.262,0.962,2.267,4.06,1.17,0.338,0.695,0.999,0.955,2.177,1.164,1.278,1.192,0.618,1.74,0.867,0.759,1.597,0.678,1.54,0.745,1.254,1.362,0.717,2.773 +NM_005788,0.951,0.875,1.122,0.889,1.016,0.918,0.814,0.871,1.078,1.2,1.088,1.007,0.865,0.972,0.954,1.062,0.948,0.962,0.974,0.81,1.037,0.975,1.058,1.013,0.88,0.868,1.028,0.96,0.718,1.011,1.058,1.104,1.186,1.065,0.834,1.139,1.004,0.983,1.154,1.038,1.093,0.859,0.84,1.025,1.148,0.976,1.051,0.926,0.906,0.958,1.071,1.157,1.125,1.281 +NM_005789,0.771,1.126,0.987,0.638,0.853,1.181,0.619,0.556,1.039,1.014,0.92,0.756,0.609,0.776,1.149,1.97,0.891,0.809,1.479,0.868,0.688,0.887,1.382,1.115,0.642,0.857,1.121,0.72,0.755,1.153,1.045,1.312,1.859,1.382,0.312,1.057,1.176,1.003,1.759,0.61,0.973,1.006,0.684,1.407,1.03,0.859,0.702,0.783,0.863,0.837,1.037,0.986,1.182,1.623 +NM_005791,0.857,0.818,1.236,0.697,1.183,0.884,0.627,0.587,1.73,1.439,0.908,0.969,0.689,0.909,0.89,1.0,0.828,0.717,1.283,0.967,0.897,0.958,1.21,1.043,0.585,0.84,1.22,1.151,0.403,1.022,1.174,1.318,2.291,1.189,0.383,1.327,0.69,1.012,1.031,1.017,1.291,0.898,0.766,1.408,1.083,1.04,1.129,0.624,0.929,0.852,0.97,0.724,1.26,1.476 +NM_005792,0.718,1.014,1.63,0.717,0.998,1.025,0.676,0.564,1.222,1.353,0.662,1.171,0.713,0.8,0.712,1.095,1.5,0.837,1.349,0.751,0.772,1.018,1.003,1.468,0.553,0.941,2.228,1.072,0.618,1.157,0.95,1.145,1.811,1.114,0.452,0.924,0.962,0.779,1.151,0.689,1.648,0.862,0.85,1.41,1.391,0.918,1.127,0.74,0.945,1.321,0.973,1.361,1.638,1.639 +NM_005793,0.899,0.929,1.022,0.932,0.927,1.082,0.692,0.697,0.995,0.955,1.153,1.017,0.794,0.704,0.871,1.141,1.064,0.927,1.011,0.82,0.773,1.038,1.123,1.217,1.004,1.093,1.135,0.897,0.689,0.952,0.855,1.074,1.232,1.175,0.583,1.046,0.933,0.976,1.492,0.964,1.11,1.1,0.92,1.302,1.085,0.854,0.939,0.861,0.984,1.001,0.96,0.967,0.957,1.593 +NM_005794,1.012,1.156,1.024,1.04,0.906,1.127,1.037,0.924,0.839,0.943,1.244,1.017,1.059,1.041,1.097,0.871,0.998,1.045,0.805,1.069,0.996,0.903,1.107,0.931,1.166,0.969,0.841,0.941,0.905,0.971,1.074,0.813,1.097,1.452,1.15,1.066,0.911,1.204,1.137,0.88,0.949,1.088,0.827,0.979,1.029,1.038,1.01,1.098,1.06,0.81,0.981,1.055,0.887,0.994 +NM_005795,0.917,0.931,1.144,0.877,1.073,0.88,0.911,1.047,0.991,0.954,0.848,1.02,0.999,0.887,0.901,0.973,1.003,1.11,1.133,0.942,0.832,0.958,0.948,1.564,0.991,1.015,1.149,1.273,0.93,1.025,0.863,1.409,1.092,1.118,0.811,1.191,0.989,1.003,1.327,1.294,0.834,0.915,0.863,0.924,0.911,0.749,1.157,0.835,0.906,1.113,0.994,1.354,0.879,0.971 +NM_005796,0.681,1.081,0.993,0.991,0.575,1.329,0.569,0.49,0.918,0.981,0.916,0.964,0.849,0.518,0.913,1.323,0.86,0.931,1.049,0.664,0.653,0.736,1.162,1.069,0.746,1.049,1.193,0.654,0.489,0.723,0.627,1.632,2.654,1.1,0.364,1.181,0.937,0.767,1.995,1.072,0.869,1.005,0.796,1.869,0.839,0.805,1.002,0.607,1.068,0.763,0.784,0.933,0.952,2.453 +NM_005797,1.394,0.563,3.919,0.881,2.182,0.688,0.397,1.594,2.621,2.208,0.565,3.274,1.581,1.227,1.363,1.011,2.521,1.324,2.877,1.118,0.989,1.905,0.667,2.741,0.31,1.401,3.365,2.056,0.205,0.852,1.965,0.601,1.389,0.747,0.113,0.403,0.62,1.836,0.585,0.61,2.585,0.669,0.383,0.143,2.637,0.488,1.441,1.741,0.478,2.787,0.916,1.288,2.128,1.527 +NM_005798,1.202,0.768,1.927,0.749,1.576,0.954,0.563,0.981,2.048,1.367,0.778,1.388,1.039,1.156,1.173,1.152,1.155,1.121,1.719,0.895,0.791,1.441,0.905,1.897,0.543,1.295,1.482,1.61,0.408,1.181,1.397,1.066,0.922,0.936,0.817,0.884,0.86,1.394,0.817,0.626,1.724,0.953,0.629,0.836,1.829,0.779,1.09,1.424,0.621,1.343,0.842,0.989,1.027,1.188 +NM_005800,0.751,0.969,1.183,0.85,0.95,1.03,0.78,0.682,1.018,0.795,0.99,0.876,0.831,0.81,0.913,1.432,0.797,0.811,0.897,0.989,0.744,0.808,1.117,0.996,0.798,0.824,1.078,0.88,0.736,1.207,0.919,1.784,1.793,1.281,0.823,0.996,1.062,0.899,1.249,1.271,1.004,1.155,0.854,0.832,0.806,1.073,1.191,0.63,0.912,0.852,0.925,1.013,0.876,1.596 +NM_005801,0.795,1.171,1.148,0.84,0.66,1.106,0.562,0.534,0.974,0.721,0.979,0.857,0.754,0.567,0.825,1.041,0.759,0.755,1.04,0.844,0.645,0.867,1.096,1.085,0.784,0.802,1.065,0.814,0.409,1.131,0.807,1.521,2.491,1.574,0.529,0.89,0.962,0.87,1.49,0.91,0.959,1.246,1.173,1.968,0.871,1.198,0.718,0.75,1.001,0.796,0.998,1.23,1.119,1.563 +NM_005802,0.775,0.864,1.289,0.797,1.101,1.008,0.891,0.691,1.291,0.982,0.971,0.821,0.863,0.842,1.176,1.12,0.95,0.995,0.91,1.09,0.717,0.907,1.094,1.005,0.796,0.815,1.053,1.134,0.738,1.09,1.214,1.032,1.334,1.074,0.831,0.778,1.044,0.928,0.917,1.105,1.155,1.131,1.1,1.027,1.118,0.98,0.929,0.898,0.968,1.008,1.122,0.949,0.789,1.648 +NM_005803,0.418,1.209,1.153,0.778,0.685,1.347,0.568,0.362,0.733,0.676,1.122,0.646,0.459,0.537,0.781,1.571,0.819,0.794,0.94,1.286,0.575,0.589,1.001,0.629,0.576,0.605,0.987,0.567,0.348,1.415,0.663,2.085,2.077,1.579,0.225,1.521,1.1,0.551,1.251,1.617,1.027,1.07,0.781,1.307,0.689,1.005,1.136,0.442,0.968,0.62,0.904,0.784,1.085,1.541 +NM_005804,0.747,0.709,1.112,1.192,0.984,0.844,0.763,0.304,1.119,1.545,0.674,1.154,0.568,0.422,0.673,1.013,0.944,1.238,1.064,0.958,0.502,0.621,2.161,1.261,0.665,0.702,1.503,0.824,0.448,0.854,0.627,0.942,2.015,0.746,0.163,2.592,0.99,0.695,1.928,1.213,1.345,0.811,0.952,1.902,1.609,1.206,1.545,0.693,1.768,0.961,1.058,1.97,1.111,2.142 +NM_005805,0.49,0.771,1.307,0.483,1.232,1.341,0.637,0.916,1.594,1.122,0.86,1.017,0.738,0.482,1.179,2.459,0.931,1.069,1.21,0.822,0.579,1.156,1.269,1.718,0.473,0.53,1.569,1.009,0.519,0.813,1.506,1.382,3.452,1.04,0.458,0.893,0.911,1.684,1.416,0.999,1.396,0.817,0.556,0.775,1.124,0.89,1.186,0.808,1.261,0.74,0.963,0.788,0.668,2.82 +NM_005806,1.091,0.931,1.02,0.894,0.984,1.012,0.977,1.14,0.937,0.96,0.966,0.866,1.141,1.087,0.748,0.869,0.984,0.955,1.003,0.942,1.157,0.988,0.853,0.977,0.958,1.024,1.022,0.966,0.834,1.061,1.114,1.072,1.017,0.942,1.048,0.963,1.045,0.949,0.879,1.35,0.965,1.0,1.028,0.97,1.044,0.941,0.925,0.965,1.0,0.967,1.033,0.897,0.979,1.031 +NM_005807,1.088,1.148,1.087,1.092,1.009,0.954,0.766,0.979,0.958,1.104,0.97,0.986,0.886,1.07,0.749,0.982,1.06,0.963,0.901,0.884,0.896,1.098,0.929,0.99,1.063,1.038,0.942,1.032,0.837,1.098,0.887,1.002,0.876,0.874,1.014,0.836,0.944,1.135,0.924,0.958,0.923,0.944,0.95,1.029,1.023,1.191,1.059,1.076,1.112,1.138,0.915,1.004,1.031,1.041 +NM_005810,1.046,1.088,1.12,0.908,0.95,0.99,1.08,0.957,1.081,1.023,0.902,1.031,1.098,0.917,0.923,1.047,0.918,1.147,0.958,1.003,0.952,0.919,1.067,0.925,1.014,1.014,0.896,0.931,1.043,1.121,0.963,1.177,0.972,1.097,0.936,0.954,1.093,0.956,1.05,0.992,0.964,0.993,1.083,1.032,1.092,0.995,1.085,0.886,0.987,0.926,1.115,0.899,1.053,1.041 +NM_005811,1.011,1.025,0.947,1.159,0.838,1.116,0.827,0.948,1.097,0.957,0.971,1.031,0.96,0.902,1.008,0.883,0.904,1.035,0.96,1.082,0.945,1.031,1.031,0.986,0.851,0.97,1.011,0.956,1.014,1.149,1.076,1.253,1.123,0.956,0.944,0.88,1.125,1.011,1.184,1.183,0.968,1.115,0.979,1.068,1.102,1.068,0.972,0.826,0.973,0.943,0.931,0.957,0.913,0.965 +NM_005814,0.9,1.185,0.81,1.492,0.918,3.544,1.293,0.764,0.922,0.786,7.665,0.654,0.867,0.644,4.922,9.95,0.701,0.928,0.914,4.251,0.879,0.754,7.5,0.805,0.872,0.919,0.839,0.855,1.092,1.785,0.787,0.794,0.939,1.231,0.915,1.942,6.862,0.93,3.769,1.001,0.821,6.548,3.734,0.999,0.895,5.624,3.63,0.764,7.349,0.834,4.455,1.043,0.906,3.429 +NM_005817,1.851,0.51,2.35,0.81,1.821,0.516,0.382,1.339,1.88,1.618,0.665,1.293,1.522,1.132,1.209,1.158,2.533,1.137,2.352,0.713,1.223,1.411,0.62,1.079,0.273,2.139,1.583,1.79,0.224,0.66,1.953,0.701,0.896,0.475,3.63,0.941,1.012,1.561,0.97,1.117,2.608,0.655,0.615,0.827,2.155,0.796,1.541,2.449,1.493,2.29,0.729,0.933,2.101,0.876 +NM_005819,1.077,0.908,1.199,0.781,0.983,0.982,0.758,0.888,1.273,1.117,0.874,1.043,1.012,0.957,0.891,0.938,0.984,1.063,1.122,1.02,1.078,0.899,0.84,1.09,0.804,1.283,1.197,1.076,0.596,1.038,1.01,1.099,1.161,0.876,0.731,0.972,0.787,0.889,0.944,1.244,1.273,0.896,0.875,1.088,1.303,0.904,1.09,0.927,0.772,1.164,0.956,1.03,1.405,1.102 +NM_005822,0.649,1.835,0.679,0.895,0.636,2.26,1.403,0.67,0.579,0.76,1.723,0.657,0.69,0.699,1.28,1.751,0.7,0.769,0.673,1.334,0.771,0.606,2.78,0.701,1.278,0.651,0.688,1.04,0.743,3.999,0.598,3.73,1.114,4.666,0.622,0.879,1.192,1.03,1.296,0.755,1.404,3.929,1.049,0.67,0.652,1.182,0.82,0.564,0.818,0.616,1.674,0.919,0.73,0.902 +NM_005824,1.011,2.421,0.9,1.092,1.052,1.014,1.236,0.959,0.983,0.9,0.849,0.874,0.92,0.912,0.818,0.943,0.869,1.072,0.985,0.902,0.991,0.966,0.925,1.022,3.801,0.953,1.022,0.968,1.052,1.342,0.838,11.2,1.074,2.826,0.876,0.874,1.577,1.134,0.852,1.222,0.922,1.148,0.991,1.01,0.917,1.002,0.859,0.841,0.921,0.846,1.006,1.018,0.862,0.961 +NM_005825,1.02,1.003,0.996,1.054,1.129,1.085,0.952,1.012,0.937,0.94,1.05,0.833,1.041,0.793,1.016,1.07,0.955,0.862,1.03,1.296,1.124,1.007,1.214,1.002,0.91,1.086,0.97,1.083,0.871,1.037,0.887,0.872,1.04,0.968,1.054,1.079,0.927,0.933,1.026,0.907,1.014,0.896,0.758,0.924,0.937,1.062,1.03,1.161,1.056,0.981,0.827,0.814,1.172,0.904 +NM_005826,0.674,0.983,1.004,0.801,0.827,1.3,0.627,0.323,1.201,0.89,1.156,0.628,0.467,0.648,0.871,1.62,0.614,0.86,1.103,1.036,0.551,0.648,1.574,0.99,0.629,0.632,1.811,0.871,0.334,1.208,0.898,1.075,3.089,1.448,0.128,1.136,1.265,0.702,1.687,0.819,1.125,1.139,0.808,1.221,1.012,1.073,0.864,0.594,1.149,0.661,1.294,0.909,0.942,1.914 +NM_005827,0.672,0.797,0.818,1.055,0.626,1.236,0.581,0.442,0.893,0.823,1.673,0.734,0.693,0.578,1.067,2.17,0.687,0.919,1.413,0.755,0.509,0.733,1.342,1.129,1.176,0.795,0.862,0.622,0.628,1.101,0.601,1.252,1.293,1.571,0.191,1.118,1.581,0.644,1.71,0.636,0.942,1.381,0.934,2.435,0.963,1.431,1.008,0.725,1.567,0.815,1.193,1.085,1.047,1.694 +NM_005828,0.601,0.863,1.146,0.779,0.814,0.999,0.682,0.57,0.954,1.137,0.922,0.733,0.686,0.77,0.948,1.268,1.096,0.953,1.291,0.784,0.67,0.852,0.963,1.013,0.576,0.89,1.264,0.725,0.583,0.834,0.793,1.414,2.079,1.038,0.512,1.49,1.089,1.024,1.652,1.569,0.993,1.015,0.875,2.615,0.989,0.909,1.099,0.806,0.908,0.983,0.965,1.058,1.231,2.452 +NM_005829,0.83,1.154,1.144,0.912,0.855,1.259,0.799,0.787,0.856,0.895,0.955,0.806,0.756,0.802,1.053,1.325,0.838,0.841,0.893,1.12,0.932,0.84,1.515,0.988,1.073,0.919,0.887,0.777,1.009,1.133,0.826,1.069,1.081,1.191,0.805,1.004,1.326,0.911,1.162,0.736,0.899,1.039,0.925,1.2,0.89,1.24,1.031,0.772,1.028,0.902,1.044,1.013,0.877,1.142 +NM_005830,0.73,0.912,1.339,0.696,1.087,0.931,0.756,0.604,1.361,1.231,0.905,1.034,0.787,0.784,0.933,1.689,0.931,1.007,1.33,0.909,0.684,0.983,1.08,0.983,0.541,0.814,1.48,1.05,0.405,1.158,1.0,1.179,1.379,1.134,0.3,1.159,1.091,1.0,1.081,2.211,1.259,1.125,0.739,1.224,1.055,0.91,1.278,0.793,1.123,0.729,0.863,1.11,0.98,1.62 +NM_005831,0.792,1.155,1.2,0.731,0.846,1.243,0.908,0.764,1.122,0.853,1.138,0.784,0.762,0.72,1.022,1.307,0.772,0.852,1.014,1.276,0.674,0.943,1.535,0.801,0.879,0.789,0.844,0.962,1.209,1.288,0.986,1.241,1.14,1.232,0.723,0.965,1.281,0.961,1.012,0.762,0.953,1.124,0.85,1.002,0.878,1.027,0.896,0.863,1.13,0.86,1.093,0.828,1.001,1.88 +NM_005832,1.034,1.05,1.043,0.91,0.931,0.963,0.907,0.949,0.867,0.857,1.136,0.969,0.918,0.916,0.914,0.897,0.954,0.877,1.087,1.015,0.999,0.92,0.844,0.955,1.034,1.092,0.876,1.028,0.729,1.017,0.899,0.991,1.021,1.173,1.034,0.967,1.08,0.928,0.948,0.947,0.999,1.03,0.891,0.96,1.09,1.035,0.883,0.985,0.917,0.958,1.075,0.876,0.99,0.957 +NM_005833,0.625,1.347,1.235,0.621,0.974,1.114,0.593,0.51,1.224,0.974,1.038,1.133,0.847,0.621,0.981,2.19,0.893,0.781,1.221,0.987,0.521,0.728,1.393,1.207,0.475,0.797,1.278,0.902,0.423,0.966,0.904,1.435,2.353,1.226,0.17,1.01,0.975,1.151,1.438,0.653,1.357,1.079,0.603,0.971,0.953,0.989,0.982,0.74,1.175,0.76,0.999,1.133,0.758,2.612 +NM_005834,0.768,1.04,0.907,0.932,0.828,1.389,0.904,0.712,0.852,0.768,0.916,0.947,0.924,0.63,0.794,1.438,0.884,1.05,0.947,1.128,0.584,0.85,1.199,0.931,1.016,0.863,0.942,0.856,0.601,1.212,0.932,1.48,2.249,1.359,0.578,0.942,0.995,0.95,1.698,0.854,0.817,0.97,0.719,1.131,1.013,0.77,0.989,1.038,1.03,0.83,1.146,1.333,0.74,1.447 +NM_005836,0.711,1.363,1.019,0.736,0.734,1.635,0.624,0.559,1.014,0.762,1.57,0.621,0.642,0.732,1.238,1.496,0.741,0.989,1.202,1.247,0.552,0.697,0.942,0.778,0.698,0.719,0.887,0.744,0.629,1.333,0.957,1.619,2.82,1.702,0.365,0.696,1.673,0.686,1.158,0.621,0.898,1.126,0.757,0.971,0.752,2.215,0.899,0.703,1.53,0.712,1.122,0.613,0.838,1.551 +NM_005837,0.748,0.751,1.102,0.822,0.869,1.058,0.527,0.586,1.16,0.961,1.122,0.945,0.742,0.869,0.917,1.272,0.924,0.919,1.465,0.733,0.615,0.782,1.789,0.956,0.51,1.043,1.093,0.911,0.453,1.299,0.915,1.485,1.547,1.416,0.351,0.93,1.001,0.908,1.54,1.161,1.005,1.037,0.592,2.197,1.051,0.871,1.026,0.872,0.855,0.861,0.995,1.55,1.062,1.614 +NM_005840,0.975,1.04,1.06,1.164,1.024,1.111,0.858,1.199,0.978,0.9,0.892,0.941,0.941,0.836,0.887,1.021,1.037,0.974,1.162,1.074,1.053,1.036,1.002,1.044,1.077,1.001,1.111,0.912,0.867,1.011,1.028,0.984,1.041,1.06,1.087,0.957,1.102,0.95,0.842,0.96,1.031,1.001,1.093,0.999,0.915,1.008,0.974,1.001,0.89,0.943,1.012,0.975,0.981,0.965 +NM_005841,1.012,1.019,1.031,1.083,1.053,1.081,1.01,1.185,1.098,0.884,0.984,0.988,0.975,0.954,0.963,1.01,1.054,0.97,1.01,1.015,0.967,1.054,1.09,0.813,1.019,0.915,0.872,0.981,1.383,1.001,1.02,1.048,1.019,1.007,0.909,1.064,0.808,0.943,1.092,0.917,0.991,0.889,0.816,0.999,0.952,1.065,1.071,1.001,0.895,1.071,1.016,0.995,1.09,1.033 +NM_005842,0.442,1.032,0.705,0.674,0.563,1.743,0.74,0.587,0.658,0.488,1.214,1.004,0.651,0.524,1.359,2.708,0.488,0.792,0.426,2.148,0.445,0.822,1.683,0.83,0.745,0.497,1.02,0.719,0.468,1.401,0.839,1.526,1.814,1.208,0.389,1.374,1.208,0.927,1.23,2.122,0.727,1.855,1.482,1.716,0.551,1.856,2.211,0.594,2.123,0.521,1.401,0.688,0.464,1.212 +NM_005844,0.939,1.235,0.92,0.941,1.042,1.045,0.85,1.047,0.969,0.933,1.04,0.978,0.866,1.019,0.989,0.973,0.944,0.896,1.032,0.977,1.124,0.982,0.981,1.07,1.055,1.022,0.949,0.944,1.099,1.192,0.943,0.876,1.102,0.815,0.897,0.984,1.105,0.835,1.036,0.912,1.016,1.251,0.93,1.027,1.001,1.119,0.954,1.061,1.189,1.116,1.03,1.263,0.897,1.273 +NM_005845,0.774,1.099,0.93,0.819,0.882,0.915,0.987,0.676,0.909,0.811,0.989,0.842,0.771,0.829,0.936,0.911,0.859,0.895,0.814,0.713,0.807,0.75,1.19,1.002,0.921,0.843,1.169,0.913,0.505,1.8,0.822,1.82,2.623,1.461,0.693,0.944,1.008,1.008,1.356,0.925,1.027,1.234,1.219,1.822,0.951,1.194,0.788,0.711,0.746,0.845,1.154,1.205,1.02,1.477 +NM_005848,0.863,1.21,1.242,0.747,1.025,1.217,0.935,0.949,0.957,0.994,0.91,0.869,0.895,1.213,0.849,1.255,0.999,1.112,0.991,1.138,0.849,0.98,1.204,1.001,0.862,0.779,1.358,1.001,0.772,1.139,0.901,1.119,1.03,1.111,0.754,0.824,0.951,0.922,1.489,1.069,0.991,1.065,0.915,0.814,0.826,0.96,0.975,0.944,0.939,0.794,1.11,0.846,0.81,1.73 +NM_005849,0.958,1.05,0.983,1.046,0.886,1.088,1.037,0.974,1.016,0.878,0.947,0.861,0.949,0.789,0.991,0.803,0.962,0.856,0.802,0.949,0.867,0.898,1.279,0.891,1.018,0.78,1.158,0.893,0.733,1.156,0.861,2.0,1.153,1.1,0.865,0.96,0.92,0.864,1.42,2.223,0.964,1.2,1.006,0.952,1.022,0.896,0.928,0.898,0.993,0.911,0.862,1.471,1.203,2.031 +NM_005850,1.032,0.7,1.059,1.143,0.685,0.864,0.833,0.833,0.851,1.001,1.045,0.737,0.826,1.22,1.087,1.337,0.847,0.741,1.318,0.788,1.013,0.78,1.064,0.982,0.924,1.055,1.117,0.66,0.608,0.812,1.132,1.269,5.567,1.378,0.616,1.156,0.865,0.736,2.048,1.112,0.737,0.967,0.802,2.38,1.106,0.715,0.703,0.892,0.732,1.105,1.023,1.069,1.267,2.097 +NM_005851,0.463,0.838,0.893,0.875,0.59,1.671,0.676,0.394,0.693,0.762,1.038,0.678,0.441,0.465,0.987,1.996,0.727,1.0,1.01,1.3,0.506,0.515,1.253,0.786,0.756,0.695,0.978,0.662,0.352,1.811,0.672,1.336,2.344,1.654,0.131,2.175,1.387,0.562,1.378,1.005,0.884,1.365,1.156,1.36,0.606,1.21,1.094,0.535,1.388,0.521,1.631,0.571,0.762,1.002 +NM_005853,1.08,0.936,1.007,0.993,1.026,1.09,1.057,1.062,1.179,0.968,1.133,0.912,0.957,0.959,0.931,1.233,1.028,1.338,1.027,0.92,0.984,0.915,1.052,0.904,1.134,1.107,0.876,0.987,0.91,1.074,1.094,0.764,0.913,1.237,0.943,0.845,1.298,0.786,1.024,0.71,0.992,1.151,0.959,0.92,0.98,1.108,0.885,0.906,0.804,0.927,1.063,0.97,0.739,0.846 +NM_005854,0.931,0.909,1.075,0.922,0.841,0.904,0.952,0.972,1.094,0.941,0.97,0.888,0.969,0.828,0.746,0.921,0.959,1.038,0.904,0.74,1.121,0.993,0.953,0.979,0.936,1.161,1.045,0.885,0.832,0.938,0.936,1.186,1.078,1.166,0.804,1.145,0.901,0.939,1.686,1.013,1.019,1.012,0.781,1.088,1.033,1.032,1.219,0.892,0.889,0.946,1.057,1.119,1.193,0.999 +NM_005855,0.582,2.801,0.616,0.701,0.523,0.945,0.584,0.468,0.613,0.655,1.209,0.69,0.539,0.468,0.995,1.325,0.584,0.544,0.518,3.05,0.539,0.426,1.5,0.645,1.459,0.63,0.788,0.599,0.272,1.414,0.505,6.367,2.827,1.663,0.448,1.118,1.57,0.6,1.544,2.649,0.9,0.971,0.876,5.75,0.715,1.448,1.776,0.528,1.012,0.535,3.079,1.443,0.748,3.109 +NM_005856,0.935,1.203,0.737,0.747,0.882,1.011,1.027,0.854,0.76,0.88,0.954,1.008,0.798,0.782,0.754,1.122,0.893,1.102,0.847,0.821,1.016,0.944,1.061,0.849,1.319,0.896,1.035,0.911,0.566,1.067,0.868,1.191,1.008,1.32,0.744,1.115,0.983,0.916,1.902,0.99,0.948,1.365,1.13,0.929,0.981,0.88,1.063,0.798,0.878,0.835,1.043,1.227,0.847,1.145 +NM_005857,0.595,1.226,1.018,0.638,0.844,1.252,0.606,0.492,0.829,0.923,1.17,0.829,0.443,0.437,0.88,1.937,0.608,1.095,1.063,1.002,0.327,0.731,1.497,0.949,0.579,0.571,1.038,0.694,0.464,1.369,0.762,1.253,2.595,1.197,0.164,0.86,1.38,0.889,1.813,1.013,0.843,1.147,0.712,1.342,0.998,1.246,1.024,0.729,1.511,0.744,1.26,1.089,0.779,1.537 +NM_005858,0.638,1.03,1.242,0.777,0.882,1.068,0.689,0.451,1.105,0.888,0.899,0.831,0.627,0.639,1.007,1.112,0.946,0.852,0.967,1.144,0.546,0.846,1.549,0.971,0.657,0.786,1.404,0.847,0.641,1.0,0.849,1.351,1.334,1.261,0.331,1.1,0.939,0.897,1.301,0.99,1.082,1.06,0.881,0.917,0.936,1.172,0.893,0.612,1.202,0.866,0.986,1.295,1.0,2.126 +NM_005860,0.975,1.092,0.935,1.0,0.888,0.856,0.838,0.879,0.962,0.879,0.951,0.877,0.904,0.895,0.974,0.967,0.961,0.934,0.994,1.026,0.949,0.939,1.007,1.003,1.064,0.941,0.942,0.838,0.86,1.043,1.087,4.844,2.596,1.114,0.878,1.746,0.923,1.043,1.561,2.32,1.015,1.055,0.851,2.495,0.924,1.033,0.976,0.977,1.003,0.884,0.937,1.328,1.14,1.748 +NM_005861,1.02,0.877,1.068,0.782,1.081,1.124,0.708,0.873,1.099,1.037,0.927,0.984,1.017,0.774,1.049,1.626,0.825,1.078,1.323,0.738,0.532,1.078,1.004,1.306,0.743,1.35,0.942,0.995,0.521,1.162,1.198,1.287,1.538,1.367,0.636,0.678,0.919,1.182,1.417,0.786,1.068,1.026,0.67,1.282,1.152,0.782,1.061,1.411,0.706,0.895,0.903,0.813,0.887,0.709 +NM_005862,0.983,0.908,0.963,0.935,1.1,0.996,1.019,0.997,1.168,1.036,0.997,0.98,0.916,0.915,1.182,0.945,0.899,0.908,1.068,0.939,0.922,0.984,1.159,0.919,0.909,1.015,1.107,0.946,0.792,1.022,1.098,1.089,1.484,1.025,0.988,1.016,1.054,0.954,1.158,0.941,0.898,1.021,0.863,1.08,0.937,0.945,1.071,0.787,1.021,1.087,0.989,1.13,0.9,1.082 +NM_005863,0.521,1.091,1.619,0.676,0.627,1.206,0.615,0.452,0.896,0.898,0.92,0.404,0.546,0.606,0.796,1.181,0.86,0.954,1.385,1.125,0.506,0.58,1.194,0.551,0.624,0.614,1.326,0.639,0.503,1.464,0.71,0.842,1.664,1.888,0.158,0.688,1.189,0.642,1.093,0.395,0.956,1.436,0.669,1.086,0.8,1.096,0.995,0.602,0.793,1.172,0.863,0.842,1.531,1.114 +NM_005864,0.953,0.961,1.112,1.107,0.977,1.021,0.728,0.959,0.99,1.05,0.955,0.997,1.169,1.032,0.923,1.004,0.923,1.128,1.22,1.093,0.987,1.095,1.082,1.19,1.052,0.922,1.038,0.998,0.833,0.98,0.937,0.855,1.11,0.983,0.997,0.936,1.042,1.0,1.034,1.017,0.829,0.945,0.926,1.019,1.059,1.088,1.003,0.932,0.836,0.875,1.112,1.051,1.145,0.891 +NM_005865,0.601,1.252,1.003,0.766,0.644,1.326,0.771,0.638,0.79,0.836,1.537,0.851,0.571,0.626,1.171,1.699,0.69,0.956,1.343,1.6,0.766,0.726,1.172,0.98,0.913,0.64,0.854,0.723,0.775,1.388,0.833,0.746,1.538,2.329,0.407,1.044,1.486,0.715,0.626,0.697,1.009,1.479,1.066,0.879,0.598,1.517,0.727,0.603,1.086,0.598,1.538,0.615,1.178,1.608 +NM_005867,0.956,1.15,0.933,1.089,1.047,0.973,0.927,0.975,0.996,0.953,0.95,1.057,0.939,0.867,0.969,0.962,1.034,1.145,1.061,1.114,1.025,0.986,1.064,1.033,0.981,1.038,0.893,1.091,0.947,0.963,1.186,1.089,0.934,0.951,1.106,0.98,1.052,1.109,0.99,0.994,1.165,0.893,1.043,0.944,0.991,0.956,1.024,1.003,1.097,0.922,0.973,1.083,0.907,0.869 +NM_005868,0.707,0.817,1.251,0.889,0.982,1.303,0.987,1.148,1.011,0.892,1.01,1.107,0.896,0.681,0.951,1.727,1.145,0.947,0.734,0.94,0.672,1.004,1.216,1.112,0.68,0.663,1.263,0.915,1.06,1.254,1.168,1.093,2.662,1.183,0.708,0.772,1.087,0.956,1.135,0.888,1.102,1.037,0.704,0.795,0.983,1.079,1.086,0.767,1.188,0.801,0.996,1.272,0.692,1.488 +NM_005869,0.76,1.044,1.165,0.667,0.889,1.036,0.635,0.628,1.325,1.075,0.76,1.084,0.722,0.618,0.744,1.159,0.835,0.821,0.917,1.415,0.505,0.951,1.235,1.278,0.681,0.726,1.409,1.13,0.449,1.098,0.899,1.08,2.15,1.426,0.396,0.775,1.012,1.012,1.402,0.655,1.194,0.999,0.762,0.954,1.056,1.028,0.978,0.793,1.105,0.736,1.118,0.875,0.804,1.467 +NM_005870,0.751,1.489,1.104,0.791,0.994,1.155,0.746,0.687,1.02,0.786,1.128,0.74,0.819,0.811,1.035,1.744,0.729,0.877,1.155,1.192,0.806,0.793,1.447,0.9,0.706,0.826,1.199,0.819,0.704,1.996,1.003,1.459,1.023,1.838,0.495,1.102,1.058,0.867,1.033,0.973,1.156,1.452,0.743,0.647,0.762,1.173,1.048,0.811,0.987,0.644,1.113,0.805,0.805,0.947 +NM_005871,0.61,1.073,1.513,0.742,1.035,1.509,0.824,0.922,1.241,1.029,0.724,1.243,0.909,0.66,0.959,1.706,1.002,0.97,0.644,1.18,0.435,1.294,1.124,1.521,0.556,0.447,1.745,0.996,0.566,1.074,1.258,1.467,2.825,1.019,0.617,0.545,0.758,1.05,1.622,0.957,1.127,1.063,0.711,0.737,1.192,0.956,1.241,0.95,1.131,1.0,0.947,0.847,0.521,1.668 +NM_005872,0.72,1.06,1.423,0.741,1.083,1.602,0.78,0.834,1.174,1.064,1.087,0.814,0.791,0.753,1.03,1.991,1.071,0.824,0.897,0.989,0.62,1.086,1.135,1.376,0.697,0.625,1.921,0.91,0.519,1.241,1.421,1.275,3.659,1.612,0.553,0.639,0.898,1.365,1.216,0.75,1.233,1.186,0.886,0.72,0.927,1.18,0.929,0.761,1.325,0.712,1.236,0.822,0.626,2.095 +NM_005874,0.732,1.33,1.032,1.156,0.756,1.057,0.987,0.733,0.859,0.803,0.963,0.75,0.722,0.733,1.049,0.892,0.817,0.72,0.747,0.91,0.73,0.595,1.391,0.792,0.736,0.771,1.269,0.694,0.766,1.255,0.681,1.761,1.249,1.089,0.734,0.935,0.972,0.797,1.646,4.378,0.881,1.211,0.985,1.066,0.76,1.062,1.078,0.779,0.863,0.779,0.962,4.444,1.16,3.052 +NM_005875,0.458,1.274,0.998,0.724,0.637,1.319,0.622,0.479,0.856,0.763,1.543,0.76,0.6,0.635,0.859,1.625,0.611,0.63,0.727,1.05,0.412,0.496,1.182,0.806,0.581,0.516,1.124,0.741,0.344,1.669,0.74,1.325,1.227,1.703,0.229,0.688,1.233,0.669,1.254,1.053,0.835,1.323,1.175,0.836,0.645,1.298,0.92,0.468,1.205,0.509,1.03,0.925,0.78,1.574 +NM_005876,0.919,0.952,0.809,0.83,0.955,0.95,1.185,0.891,0.851,0.992,1.105,1.037,0.845,1.076,0.884,1.098,0.933,0.918,0.761,1.004,1.018,0.827,1.322,0.999,1.001,1.104,0.989,1.369,0.923,1.248,0.971,1.682,1.15,1.461,0.961,0.993,0.955,1.004,0.979,2.083,1.848,1.509,0.881,1.246,0.95,0.999,0.925,1.05,0.907,0.944,1.028,1.063,0.928,1.474 +NM_005877,1.038,1.044,1.244,0.913,0.892,0.974,0.568,0.619,0.912,0.926,0.873,0.831,0.688,1.028,0.941,1.074,0.995,0.852,1.44,0.755,0.841,1.154,1.063,0.963,0.91,1.246,1.264,0.804,0.585,1.135,0.948,0.926,2.078,1.391,0.775,0.797,0.933,1.137,1.87,0.827,0.983,1.248,0.722,1.438,0.961,0.761,0.769,1.089,0.933,1.063,1.008,0.851,0.997,1.221 +NM_005879,0.991,0.977,0.946,0.913,0.923,1.128,0.828,0.835,0.968,0.921,1.083,0.899,0.965,0.995,0.853,1.016,0.953,0.953,1.17,0.858,0.927,1.09,1.092,1.106,0.904,0.954,1.246,0.817,0.622,1.074,0.844,1.061,1.661,1.096,0.747,1.412,1.061,0.923,1.442,1.038,1.003,0.981,0.855,1.281,0.939,0.915,0.918,0.929,1.078,0.918,1.017,1.051,1.012,1.916 +NM_005880,0.618,1.064,1.272,0.565,1.292,1.191,0.59,1.028,1.519,1.22,0.825,1.286,0.85,0.693,0.874,1.812,0.806,1.092,1.201,0.822,0.527,1.092,1.162,1.46,0.452,0.833,1.306,1.148,0.439,1.04,1.375,1.028,2.248,1.136,0.601,0.608,1.085,1.203,1.333,0.905,1.239,1.073,0.622,0.696,1.228,0.799,1.131,1.129,1.054,0.771,0.872,0.754,0.644,2.609 +NM_005881,0.867,0.938,0.967,0.907,0.823,1.613,0.723,0.704,0.964,1.067,0.852,0.799,0.755,0.771,0.879,1.1,0.809,0.926,1.044,0.971,0.819,0.912,0.896,1.011,1.292,1.223,0.937,0.604,0.758,1.265,0.82,1.416,1.206,1.238,0.851,0.767,0.935,0.941,1.54,1.407,0.817,1.069,0.848,1.497,1.025,0.86,0.882,1.026,0.77,1.081,0.926,0.874,1.034,1.212 +NM_005884,0.919,0.871,0.923,1.007,0.831,1.241,0.825,0.868,0.943,0.771,1.124,0.822,0.869,0.743,1.042,1.622,0.957,0.916,1.229,1.048,0.99,0.934,1.524,0.993,0.788,1.073,0.948,0.831,0.638,1.044,0.974,0.945,1.968,1.196,0.693,0.955,0.945,0.814,1.567,1.074,0.891,1.159,0.836,1.352,0.97,0.932,0.956,1.091,0.927,0.996,1.056,0.798,0.912,1.194 +NM_005885,0.525,1.129,0.879,0.622,0.755,1.13,1.222,0.637,0.648,0.649,1.271,0.77,0.685,0.495,0.807,1.576,0.508,1.213,0.713,1.493,0.61,0.637,1.247,0.693,1.553,0.553,0.73,0.567,0.668,1.412,0.733,1.673,1.663,1.343,0.497,1.378,1.339,0.842,1.273,2.144,0.714,1.776,1.1,0.873,0.763,0.953,0.713,0.55,0.935,0.57,1.033,1.932,0.874,1.499 +NM_005886,0.871,1.007,1.331,0.874,0.83,0.952,0.761,0.676,1.084,0.971,1.174,0.994,0.785,0.839,0.957,1.272,0.826,0.989,1.292,1.039,0.667,0.763,1.07,1.018,0.651,1.023,1.39,0.804,0.555,0.888,0.921,1.034,2.14,1.348,0.385,0.824,0.993,0.974,1.526,0.73,0.997,1.003,0.605,1.212,1.078,0.962,0.892,0.884,0.736,1.227,0.95,0.816,1.405,2.451 +NM_005888,1.689,1.677,2.26,1.71,1.9060000000000001,2.178,1.541,1.412,2.125,1.813,2.418,1.649,1.445,1.573,2.073,3.064,1.661,1.8519999999999999,2.614,1.919,1.8250000000000002,1.38,2.451,2.0469999999999997,1.473,1.9020000000000001,2.476,1.927,0.9219999999999999,2.17,1.9629999999999999,1.816,2.6390000000000002,2.214,1.3559999999999999,2.152,2.4299999999999997,1.812,2.34,1.67,2.2279999999999998,2.128,1.7309999999999999,1.807,1.862,2.289,1.9340000000000002,1.683,2.202,1.8689999999999998,2.2640000000000002,1.8199999999999998,2.134,2.566 +NM_005889,0.688,0.939,0.51,1.657,0.693,4.111,1.446,0.637,0.648,0.657,4.261,0.631,0.586,0.607,2.267,5.287,0.695,1.362,0.6,2.128,0.589,0.642,1.689,0.652,0.971,0.67,0.623,0.64,1.14,2.459,0.595,0.62,0.845,3.519,0.607,2.246,5.171,0.683,1.846,1.202,0.685,2.453,2.409,0.642,0.591,2.754,1.395,0.566,3.846,0.61,2.363,0.684,0.628,0.675 +NM_005890,1.429,0.715,2.458,0.913,1.816,0.715,0.694,1.089,1.928,1.89,0.785,1.43,1.094,0.959,1.035,0.994,1.541,1.043,2.309,0.761,1.195,1.92,1.06,1.18,0.8,1.02,1.806,1.446,0.656,1.264,1.511,2.063,1.281,1.166,1.189,0.785,0.741,2.143,0.907,0.733,1.799,0.99,0.809,0.712,2.036,0.728,1.189,1.343,0.662,2.479,0.925,0.797,1.567,0.818 +NM_005891,0.926,0.733,1.446,1.209,1.195,1.146,0.57,0.542,1.444,1.587,0.866,1.323,0.667,0.597,0.89,2.098,0.801,1.804,1.716,1.026,0.502,0.848,1.659,1.488,0.793,1.215,1.829,0.97,0.471,0.851,0.924,0.714,1.268,0.952,0.311,0.633,1.182,0.989,1.181,0.743,1.087,0.744,0.635,1.009,1.357,1.608,1.233,0.869,0.844,1.465,1.434,0.687,1.034,0.685 +NM_005892,0.985,0.816,1.029,1.159,0.976,0.971,0.858,0.935,1.022,0.856,1.065,1.039,1.051,1.038,0.814,0.996,0.941,0.963,1.117,0.941,1.075,0.969,0.854,1.042,1.106,0.909,0.969,1.057,0.918,0.958,0.927,1.055,1.075,0.951,1.019,1.08,0.987,0.969,1.088,1.195,1.0,1.14,1.479,0.865,1.015,0.821,0.927,1.108,1.176,1.134,1.02,1.121,1.014,1.126 +NM_005893,1.112,1.177,0.926,0.918,0.983,1.124,0.983,1.19,1.096,0.878,1.047,1.031,1.04,1.005,1.231,0.998,1.064,0.972,0.905,1.232,0.982,1.043,1.102,0.993,1.047,1.04,1.023,1.134,0.889,0.828,0.98,0.879,0.976,1.102,0.961,1.011,1.045,0.902,0.857,0.98,1.006,0.959,1.32,0.96,0.931,0.956,0.973,0.983,1.057,1.033,0.977,0.888,0.99,1.001 +NM_005894,1.05,0.899,1.133,1.084,1.036,1.056,0.877,1.032,0.925,0.883,1.031,1.019,0.854,1.054,0.798,1.035,1.149,0.905,1.098,0.995,1.179,0.896,1.016,0.92,0.846,0.845,1.0,0.851,0.814,0.961,0.946,0.962,0.947,0.778,0.995,1.095,1.089,1.111,1.059,1.026,1.173,1.076,1.107,1.055,1.146,1.067,0.893,1.28,1.087,1.139,0.906,0.994,1.047,1.04 +NM_005895,0.713,0.776,1.199,0.718,0.731,1.055,0.614,0.416,1.134,1.106,0.662,0.601,0.422,0.625,0.912,1.157,0.871,0.864,1.099,1.14,0.654,0.929,1.427,0.935,0.851,0.75,1.099,0.719,0.676,1.424,0.917,1.587,1.413,1.523,0.291,1.004,0.847,0.854,1.772,0.942,1.088,1.353,0.641,0.717,0.913,1.162,0.706,0.827,0.908,0.906,1.191,0.703,0.902,1.597 +NM_005896,0.499,0.909,1.074,1.178,0.637,1.875,0.754,0.414,0.631,0.722,1.75,0.503,0.466,0.544,0.902,2.774,0.926,1.303,1.03,1.444,0.31,0.511,2.022,0.735,0.74,1.002,0.973,0.529,0.44,1.688,0.578,1.472,1.456,1.514,0.451,0.573,1.965,0.737,1.61,0.642,0.714,1.306,0.926,1.362,0.599,1.714,0.879,0.621,1.125,0.813,1.443,0.521,0.645,1.29 +NM_005897,0.852,1.085,1.238,0.803,1.141,1.078,0.711,0.659,1.027,0.928,0.914,0.858,0.829,0.828,1.061,1.216,0.948,0.894,0.624,1.198,0.839,0.948,1.129,1.058,0.977,0.88,1.019,0.968,0.647,1.274,0.992,1.188,1.369,1.077,0.792,0.755,0.731,0.864,1.266,0.878,1.16,1.087,0.871,1.128,0.96,1.124,1.038,0.877,1.194,0.929,1.041,0.821,0.887,1.095 +NM_005898,0.621,0.99,1.342,0.765,0.925,1.001,0.668,0.438,1.189,1.06,0.857,0.497,0.488,0.634,0.897,1.801,0.658,0.773,0.915,0.977,0.585,0.489,1.553,0.809,0.574,0.663,1.425,0.818,0.317,1.388,0.999,0.928,2.058,1.107,0.453,1.208,1.089,0.771,1.468,0.934,0.98,1.121,0.805,1.277,0.952,1.114,0.884,0.546,1.506,0.717,1.186,1.046,1.108,2.22 +NM_005899,1.567,2.306,2.482,1.621,1.9260000000000002,2.581,1.612,1.385,2.09,1.6600000000000001,1.9369999999999998,1.4769999999999999,1.5150000000000001,1.6320000000000001,2.209,2.563,1.8239999999999998,1.951,1.738,2.501,1.387,1.653,2.262,1.512,1.565,1.696,2.269,1.9129999999999998,1.4220000000000002,2.566,1.859,2.3280000000000003,2.708,2.8120000000000003,1.662,1.883,2.365,1.8199999999999998,2.42,1.643,1.92,2.422,1.6199999999999999,2.295,1.657,2.168,2.05,1.7359999999999998,2.12,1.598,2.174,1.593,1.525,2.1710000000000003 +NM_005902,0.989,0.943,2.07,0.606,1.006,1.125,0.631,0.88,1.849,1.249,0.67,0.869,0.966,0.913,0.789,0.816,1.562,1.081,1.484,1.002,0.586,1.119,0.957,1.121,0.398,1.105,2.051,1.359,0.487,1.208,1.257,0.983,0.702,1.189,1.179,0.968,0.834,1.09,1.643,0.882,1.44,0.778,0.924,1.0,0.8,0.907,1.578,1.0,0.862,0.845,0.957,1.013,1.078,1.486 +NM_005903,0.786,0.846,0.863,0.746,0.945,1.495,1.106,0.961,1.35,1.024,1.609,1.54,0.858,0.681,0.74,1.732,0.689,1.01,0.937,0.885,0.674,1.027,1.481,1.423,0.834,0.548,1.736,0.948,0.514,1.473,0.952,1.156,1.987,1.074,0.493,1.091,1.008,0.769,1.27,1.292,1.11,1.371,0.879,0.726,0.877,1.138,1.184,0.59,1.054,0.661,1.381,1.612,0.84,0.854 +NM_005904,0.863,0.927,0.991,0.747,0.785,1.338,1.097,0.749,0.817,0.825,1.374,0.763,0.681,0.721,1.236,1.257,0.72,0.974,0.851,1.195,0.901,0.733,1.089,0.749,1.246,0.866,0.913,0.817,0.768,1.684,0.896,1.545,1.533,1.811,0.643,0.862,1.258,0.853,1.257,1.214,0.891,1.317,0.937,1.697,0.797,0.951,1.024,0.785,0.934,0.78,0.979,0.92,0.916,0.873 +NM_005905,0.994,0.978,0.991,0.866,0.832,1.148,1.027,0.853,0.908,1.069,0.942,1.001,0.883,0.947,0.81,0.982,0.988,0.963,1.016,1.273,0.915,0.999,0.952,0.985,1.055,0.931,1.069,0.946,1.172,1.054,0.995,1.247,1.127,1.149,0.993,0.862,1.011,0.838,1.017,1.094,1.056,1.162,0.958,1.243,0.894,0.807,0.929,1.103,1.038,0.97,1.0,0.934,0.994,0.91 +NM_005906,0.908,1.065,1.061,0.866,0.949,0.908,0.815,1.353,0.963,0.879,1.013,1.093,1.019,0.895,0.894,0.946,0.908,0.935,0.902,0.976,1.035,1.029,0.961,0.927,1.052,1.061,0.972,0.928,0.955,0.961,1.064,0.997,0.822,0.885,0.951,1.005,1.028,1.012,1.05,1.082,1.064,0.899,1.095,1.035,0.964,1.019,1.015,1.021,1.023,0.886,0.876,0.982,1.002,1.117 +NM_005908,0.636,1.707,0.806,0.752,0.877,1.194,0.879,0.524,0.735,0.743,1.313,0.568,0.572,0.566,0.813,1.26,0.693,1.224,0.832,1.541,0.599,0.629,1.844,0.595,0.862,0.676,1.044,0.621,1.045,1.59,0.713,1.821,0.782,1.668,0.507,0.655,1.094,0.82,1.798,0.96,0.694,1.553,0.777,1.492,0.709,1.038,0.914,0.622,0.869,0.675,1.343,0.754,0.636,0.897 +NM_005909,1.002,0.918,0.972,1.083,0.966,1.039,0.899,1.208,0.98,1.002,1.075,0.917,0.993,1.024,0.933,1.022,0.983,1.178,0.975,1.002,1.089,1.098,1.035,0.97,0.988,0.95,0.998,0.939,1.081,1.103,0.917,1.111,0.962,0.903,0.99,1.122,1.078,1.038,0.918,1.006,0.929,1.018,0.954,0.943,1.037,0.992,0.913,0.956,1.001,0.96,1.095,1.0,0.946,0.937 +NM_005911,1.573,0.949,1.0,0.711,1.097,0.857,0.576,0.367,1.328,1.983,0.691,0.726,0.508,0.743,0.935,0.851,0.81,0.699,0.992,0.873,0.989,0.929,1.133,1.274,0.613,0.953,0.99,0.984,0.623,0.929,0.878,1.483,1.744,1.107,0.14,1.004,1.042,0.784,1.33,1.243,0.992,1.095,0.942,0.813,1.002,0.777,0.823,1.107,0.785,0.456,0.991,0.875,1.493,1.959 +NM_005912,0.937,1.003,1.015,1.002,0.96,1.016,0.901,1.049,0.927,1.008,1.064,0.987,0.989,1.07,1.025,0.96,1.094,1.003,1.066,0.904,1.012,0.911,1.012,0.999,1.067,1.009,1.113,0.993,1.398,0.98,1.054,0.933,0.918,0.984,0.985,1.083,0.969,1.001,0.962,0.997,0.979,0.847,1.155,0.973,0.923,0.858,1.052,0.955,1.002,1.021,1.081,1.045,0.928,0.96 +NM_005913,0.914,1.157,0.933,1.171,1.008,1.05,1.05,1.296,1.116,1.038,1.018,0.907,0.954,0.976,0.852,1.095,1.17,1.003,0.998,0.998,0.944,0.911,1.012,0.972,1.018,1.076,0.94,0.899,0.993,0.818,1.08,0.916,1.02,1.074,1.098,1.028,1.013,0.951,1.021,0.908,0.961,1.07,0.957,1.125,1.166,1.072,0.873,0.986,0.958,0.948,1.054,1.02,1.046,1.012 +NM_005914,0.958,1.0,0.95,1.041,1.128,0.922,0.902,0.868,1.017,0.98,1.046,1.068,0.996,1.223,0.968,1.051,0.948,1.143,1.074,0.976,1.094,1.021,1.018,1.126,0.998,1.017,0.993,0.979,0.983,0.983,1.039,0.977,0.989,1.028,1.129,1.061,1.027,1.005,0.94,0.943,1.01,1.074,1.018,1.152,1.079,1.026,0.893,1.075,0.906,0.999,0.948,0.979,1.068,0.933 +NM_005915,0.97,0.975,1.016,0.949,0.823,0.981,0.857,1.016,1.032,0.886,0.896,0.913,0.989,0.897,1.152,1.099,1.017,0.821,1.087,0.982,0.968,0.93,1.393,1.037,0.934,1.091,1.07,0.934,0.884,1.001,0.874,1.214,1.861,1.01,0.829,1.283,1.119,0.911,1.117,1.01,1.007,0.937,0.936,1.383,0.999,0.945,0.963,0.949,1.128,0.882,1.154,1.095,1.012,1.387 +NM_005916,1.623,1.787,2.066,1.609,1.7480000000000002,1.7930000000000001,1.223,1.294,2.226,2.106,1.408,1.9569999999999999,1.577,1.678,1.6640000000000001,2.1260000000000003,1.611,1.903,2.0380000000000003,1.681,1.505,1.601,3.7399999999999998,2.257,1.446,1.694,2.883,1.5699999999999998,1.045,2.2729999999999997,1.744,2.718,3.846,1.971,1.211,2.48,2.059,1.9329999999999998,3.439,2.9699999999999998,2.018,1.923,1.899,4.133,2.064,2.0300000000000002,2.2800000000000002,1.5070000000000001,2.947,1.8479999999999999,2.347,4.038,1.995,3.661 +NM_005917,0.616,1.066,1.099,0.73,0.885,1.111,0.609,0.301,1.136,0.889,1.172,0.553,0.563,0.524,0.885,2.043,0.84,1.067,1.293,0.778,0.534,0.771,1.414,0.993,0.89,0.826,1.417,0.74,0.425,1.009,0.805,0.934,2.016,1.429,0.194,0.877,1.406,0.905,1.621,0.59,1.102,1.045,0.704,1.404,0.9,1.012,0.952,0.716,1.132,0.722,0.968,0.611,0.889,1.542 +NM_005918,0.782,0.586,1.18,0.751,0.861,0.945,0.473,0.478,1.175,1.106,0.854,1.051,0.74,0.501,0.849,1.556,0.826,1.006,1.805,0.628,0.718,1.056,1.355,1.157,0.348,1.091,1.212,0.771,0.448,1.32,0.789,0.597,2.492,1.137,0.229,0.54,1.077,1.073,1.66,0.777,1.051,0.929,0.558,1.896,1.196,0.897,1.078,1.106,1.033,1.092,0.892,0.948,1.088,1.175 +NM_005919,1.075,1.303,0.964,1.102,1.098,1.154,1.04,1.095,1.068,0.988,1.069,1.018,1.056,1.364,1.203,0.939,1.196,0.995,0.85,1.041,1.14,1.023,0.831,1.068,1.1,0.875,0.864,0.927,2.085,0.985,1.052,0.968,0.933,0.894,1.083,0.857,0.881,0.966,0.887,1.084,1.16,1.03,0.974,0.916,1.043,0.845,0.829,0.945,1.169,1.107,1.008,0.937,1.066,0.9 +NM_005920,1.18,0.834,1.138,0.803,1.22,1.087,0.968,1.354,1.303,0.924,0.768,0.831,0.872,1.059,1.27,1.039,1.314,0.834,1.108,0.812,0.803,1.088,0.851,0.909,0.713,1.493,0.892,1.211,0.681,0.85,1.586,1.134,1.124,0.935,4.05,0.918,0.808,1.749,1.36,1.416,1.255,0.812,1.037,0.761,1.167,0.98,0.963,1.447,0.918,1.006,0.988,0.812,1.089,1.454 +NM_005922,1.202,1.076,1.121,1.113,0.768,1.075,1.069,0.872,0.949,1.019,1.094,1.223,1.09,0.854,1.015,0.964,1.041,0.98,0.92,1.193,0.779,1.153,1.05,1.112,0.952,0.983,0.997,0.861,0.633,0.94,0.962,0.848,1.056,1.033,1.102,1.088,0.986,0.918,1.187,0.976,0.936,1.112,0.85,0.976,0.897,0.947,0.858,0.978,0.933,1.025,1.022,1.047,1.086,0.962 +NM_005923,0.666,1.192,1.519,0.618,0.837,1.275,0.733,0.883,0.846,0.541,2.108,0.801,0.73,0.945,1.364,2.135,1.102,0.86,1.548,1.473,0.571,0.827,1.701,0.747,0.783,0.516,1.394,0.76,0.516,1.114,1.037,0.798,0.822,1.342,1.413,0.504,1.433,0.729,0.868,1.294,0.946,1.604,1.55,0.74,0.886,2.055,1.154,0.574,1.254,0.691,1.516,0.922,1.111,0.906 +NM_005924,0.954,1.028,0.923,1.099,0.833,0.866,1.058,1.066,1.031,1.114,1.116,0.928,1.049,0.958,0.96,1.118,0.988,1.048,0.849,0.926,0.856,0.964,1.017,1.041,1.029,1.005,0.904,1.002,1.08,1.053,0.943,1.683,1.034,1.015,1.059,1.166,1.092,0.956,1.033,0.999,0.836,1.057,1.073,0.915,1.139,1.312,0.976,0.972,0.873,0.937,0.937,1.07,0.991,1.066 +NM_005925,0.98,0.859,1.077,1.29,0.942,1.178,0.814,0.939,1.015,0.815,1.93,0.908,0.906,0.826,2.25,12.37,0.879,1.009,0.975,1.564,0.94,0.932,1.288,0.953,0.887,1.066,0.963,1.121,0.759,1.251,1.0,0.937,0.994,1.014,1.007,0.89,5.82,0.859,0.891,1.009,1.027,1.56,2.986,1.032,0.994,2.121,2.026,0.951,2.157,0.947,1.41,0.895,0.953,0.81 +NM_005926,0.679,0.972,1.216,0.75,0.998,1.264,0.752,0.577,1.226,1.024,0.94,0.811,0.605,0.696,0.912,1.489,0.837,0.927,1.196,1.137,0.681,0.978,1.51,0.982,0.608,0.868,1.393,0.957,0.645,0.698,1.393,1.142,1.599,1.316,0.729,0.907,1.046,0.878,1.446,0.722,1.19,1.224,0.535,0.895,1.173,1.042,0.964,0.828,0.99,0.901,1.036,0.899,0.826,1.611 +NM_005927,0.998,0.813,1.295,0.833,1.23,0.908,0.832,0.69,1.188,1.37,0.916,1.055,1.014,0.886,0.867,1.478,1.047,1.156,1.452,0.927,0.799,0.999,0.958,1.211,0.777,1.041,1.284,1.137,0.762,0.938,1.14,1.15,1.413,0.964,0.819,0.908,1.053,0.857,1.285,0.908,1.24,0.846,0.793,0.987,1.282,1.007,0.964,1.193,1.005,1.223,0.973,1.104,1.057,1.455 +NM_005929,0.805,0.999,0.994,0.997,0.948,1.016,1.0,1.015,1.075,0.896,0.814,0.978,0.978,0.875,1.026,1.041,0.976,1.096,1.046,0.913,0.888,0.877,0.805,0.977,1.167,1.085,1.026,0.87,0.816,1.074,1.049,0.909,1.126,1.134,0.969,0.999,1.034,0.924,0.954,1.135,0.878,0.988,1.076,1.226,1.065,1.039,0.948,1.0,0.93,0.915,1.013,0.942,1.052,0.935 +NM_005930,1.097,0.819,1.013,0.94,1.114,0.91,1.151,0.97,1.388,0.951,0.912,1.03,1.043,1.03,1.116,1.032,1.047,1.023,0.914,1.067,1.007,0.893,0.979,0.975,1.174,0.995,0.874,1.098,1.389,1.016,1.02,1.021,0.97,0.994,1.04,1.032,0.993,1.057,0.944,1.136,1.066,0.877,0.988,0.96,1.225,0.941,0.903,0.946,1.062,0.956,1.1,0.969,1.002,1.021 +NM_005931,0.906,0.934,1.06,1.017,0.957,1.221,1.12,0.926,0.916,1.001,0.717,0.918,0.956,0.776,0.964,1.109,0.899,0.904,0.936,0.872,0.98,0.911,0.963,1.161,0.939,1.148,1.333,0.893,1.111,1.006,0.896,1.984,2.24,0.979,0.871,1.243,0.951,0.791,1.653,2.216,0.975,1.173,0.808,1.273,0.916,0.897,0.723,0.876,1.474,0.94,1.19,1.298,0.975,3.104 +NM_005932,0.909,0.778,1.145,0.824,0.843,0.908,0.688,0.539,1.143,1.012,0.89,0.896,0.775,0.718,1.025,1.649,0.958,0.947,1.194,0.93,0.734,0.778,1.28,0.998,0.816,0.983,1.021,0.842,0.564,1.151,0.799,1.184,1.837,1.073,0.5,0.749,1.01,0.994,1.134,1.474,1.005,1.099,0.843,0.992,0.971,1.034,1.11,0.778,1.316,0.955,1.105,1.108,1.058,1.754 +NM_005933,1.057,1.019,1.117,0.949,1.039,1.178,1.053,0.932,0.995,1.124,0.84,0.986,1.008,0.98,1.038,1.133,1.04,0.971,0.958,1.03,0.861,0.941,1.12,1.012,1.09,0.994,0.931,0.973,1.322,1.061,1.119,1.0,1.046,1.113,1.01,0.96,0.978,1.01,1.043,0.994,0.899,0.975,0.871,0.925,1.026,1.104,1.034,1.009,0.981,0.924,0.966,0.929,0.929,1.087 +NM_005934,0.998,0.937,1.028,1.026,0.926,1.035,1.367,0.987,0.954,0.944,1.03,1.096,1.059,1.062,1.356,1.151,1.028,1.009,0.961,0.935,0.893,1.03,0.962,1.124,1.039,0.991,1.046,0.98,1.952,0.997,0.999,0.981,0.981,0.982,1.085,1.013,0.994,1.023,0.955,0.931,1.096,1.112,1.891,0.941,1.009,1.071,0.995,0.996,0.98,1.064,1.075,0.829,0.894,0.931 +NM_005935,0.644,1.046,1.455,0.603,0.894,1.415,0.906,0.677,1.113,0.748,0.688,0.697,0.592,0.89,1.249,1.344,0.752,0.977,0.915,1.556,0.5,0.77,1.167,1.035,0.617,0.585,1.274,1.062,0.563,1.59,1.038,1.36,1.344,1.355,0.364,0.47,1.085,1.077,1.129,0.918,0.919,1.341,0.771,0.552,0.765,1.097,0.857,0.576,1.181,0.647,1.16,0.62,0.724,1.045 +NM_005936,1.145,0.988,1.048,0.907,1.279,0.787,1.076,0.987,1.311,1.306,0.878,1.059,0.976,1.021,1.06,0.939,1.189,0.989,1.147,0.971,0.804,1.074,0.852,1.25,0.838,1.175,1.125,1.238,0.961,0.964,1.07,1.079,0.882,0.946,1.413,0.847,0.884,1.049,1.016,0.881,1.261,1.073,1.313,0.883,1.191,0.844,1.166,1.162,0.86,1.112,0.994,0.932,1.032,1.048 +NM_005938,0.883,1.003,1.099,0.932,0.906,1.142,0.773,0.895,1.029,0.943,0.951,0.872,0.994,1.01,0.981,1.109,0.986,0.855,1.043,1.139,1.042,1.035,0.869,0.772,0.782,1.11,1.127,1.012,0.684,1.04,1.12,1.116,1.399,1.188,1.075,0.854,1.008,0.933,1.057,0.829,0.973,1.191,0.84,0.994,1.004,0.97,0.883,0.976,0.913,0.989,0.907,0.998,1.107,0.85 +NM_005940,0.87,1.257,0.926,1.026,0.842,1.059,0.994,0.71,0.815,0.831,0.916,0.728,0.771,0.763,0.895,1.167,0.73,0.864,0.757,1.177,0.826,0.77,1.647,0.779,0.968,0.936,0.755,0.762,0.712,2.084,0.679,74.85,2.84,1.351,0.688,0.86,1.113,0.771,1.041,1.704,0.792,1.288,1.212,0.951,0.821,1.348,1.33,0.714,0.812,0.76,0.971,1.805,0.931,1.509 +NM_005941,0.982,0.97,0.907,0.946,1.052,0.987,1.046,0.96,1.106,1.113,0.967,0.979,1.208,0.864,1.053,1.044,1.112,0.959,1.14,1.024,0.972,1.047,1.036,1.162,0.978,1.067,1.067,1.226,0.875,1.024,0.995,1.169,1.211,0.886,1.261,0.911,0.888,1.111,1.027,1.035,0.992,1.045,1.153,1.109,1.03,0.937,0.96,1.009,1.0,0.948,0.996,1.001,0.922,1.0 +NM_005944,0.879,0.988,0.878,0.909,1.012,0.958,0.912,0.934,0.813,0.961,0.987,0.88,0.963,1.124,0.919,1.053,0.86,0.752,0.845,1.616,0.965,0.778,1.468,0.972,1.035,0.837,0.9,0.793,1.009,0.962,0.857,1.559,1.619,1.544,0.874,1.133,0.949,0.932,1.157,1.648,0.966,1.352,0.917,0.983,0.939,0.875,0.917,0.867,1.233,0.882,1.024,1.271,0.97,1.265 +NM_005946,1.01,1.573,0.687,0.705,0.844,5.779,1.845,0.843,0.868,0.615,1.112,0.727,0.631,0.605,3.013,1.126,0.665,1.587,0.582,1.449,0.695,0.817,1.093,0.619,1.184,0.726,0.628,1.212,2.223,8.993,1.943,0.855,3.04,5.179,3.364,0.816,0.907,0.99,2.324,0.752,0.683,4.446,0.919,0.746,0.643,2.557,0.968,0.909,0.689,0.694,1.36,0.67,0.587,2.582 +NM_005947,1.062,0.945,0.861,1.099,1.123,1.036,0.783,1.041,0.907,0.909,1.002,0.998,0.997,1.056,1.336,0.971,0.966,0.966,1.056,0.966,1.038,0.956,0.947,0.974,1.03,0.939,1.111,1.057,0.878,1.006,1.058,1.039,1.003,0.945,3.405,0.9,1.172,1.136,1.065,1.043,0.943,0.951,0.826,1.009,1.007,0.972,0.918,1.166,1.121,1.016,0.877,0.913,0.992,0.903 +NM_005949,0.456,2.613,0.26,1.124,0.302,3.013,1.743,0.142,0.247,0.145,2.111,0.233,0.399,0.397,1.118,1.046,0.167,1.966,0.194,2.01,0.131,0.226,2.08,0.155,2.964,0.239,0.212,0.48,2.613,5.916,0.772,1.624,2.077,5.048,7.367,0.467,3.262,0.38,0.78,0.405,0.181,12.0,1.341,1.529,0.14,3.147,1.003,0.374,0.175,0.131,3.258,0.388,0.164,4.476 +NM_005950,1.194,1.877,0.107,0.784,0.691,2.115,1.351,0.604,1.206,0.0886,1.462,0.251,0.622,1.414,2.36,0.577,0.184,1.351,0.209,1.591,0.14,0.979,0.616,0.12,3.823,0.683,0.111,2.157,3.703,5.732,2.9,0.276,1.682,3.575,7.691,0.499,2.709,0.873,0.875,0.153,0.238,10.87,0.826,1.052,0.0928,3.884,0.67,1.085,0.156,0.0855,2.395,0.145,0.071,2.402 +NM_005951,0.946,1.689,0.701,0.725,0.953,1.885,1.464,0.991,1.113,0.507,0.663,1.3,1.281,0.398,1.729,0.798,0.675,1.956,0.497,1.497,0.216,0.96,1.027,0.649,2.332,0.595,0.799,1.301,1.936,3.883,2.504,0.848,1.416,2.264,5.21,0.318,1.425,1.349,0.951,0.286,0.848,6.833,0.496,0.984,0.467,2.101,0.616,1.236,0.217,0.717,1.853,0.357,0.185,2.78 +NM_005952,1.767,1.203,1.158,0.688,1.529,0.476,0.573,0.949,2.541,1.249,0.509,1.981,1.504,0.93,1.674,0.543,1.297,1.209,1.776,0.647,0.828,1.495,0.491,1.167,1.059,1.956,1.973,1.558,0.492,2.332,2.497,0.473,0.976,0.977,5.712,0.436,0.98,1.946,0.264,0.325,2.171,3.62,0.381,0.963,0.791,0.945,0.642,1.435,0.106,1.401,1.078,0.609,0.654,0.9 +NM_005953,1.167,1.391,0.528,0.472,1.396,0.903,1.628,1.373,1.046,0.698,0.661,0.989,0.904,0.451,1.955,0.492,0.415,1.343,0.415,1.164,0.359,0.828,0.769,0.586,1.467,0.672,0.396,1.775,1.406,2.32,2.226,1.018,1.562,1.191,6.371,0.775,1.435,1.445,0.626,1.561,0.591,4.426,0.677,1.459,0.454,1.581,0.695,1.761,0.162,0.365,1.421,1.066,0.529,2.217 +NM_005955,1.404,0.88,1.312,0.885,1.383,0.909,0.701,0.748,1.524,1.721,0.745,0.854,0.892,1.023,0.86,0.983,1.145,1.071,1.577,0.772,1.068,1.192,0.841,1.51,0.78,1.261,1.281,1.162,0.794,0.902,1.331,0.936,1.21,0.969,0.724,0.67,0.901,1.302,1.138,0.983,1.438,0.959,0.921,1.13,1.6,0.866,1.155,1.179,0.943,1.524,0.968,0.937,1.189,1.056 +NM_005956,0.847,1.043,0.986,0.99,0.801,1.01,0.766,0.652,1.228,0.992,0.762,0.876,0.883,0.672,0.786,0.968,1.004,0.996,1.076,0.793,0.808,1.083,1.111,1.054,0.95,0.951,1.29,0.888,0.859,0.967,0.884,1.109,1.926,0.99,0.617,0.887,1.032,1.073,1.784,0.988,1.015,0.866,0.982,1.766,1.082,0.952,1.009,0.942,1.181,1.041,1.219,0.953,0.87,1.293 +NM_005957,0.871,0.975,0.918,1.153,0.909,0.99,1.146,1.008,0.88,1.094,0.938,1.019,1.08,0.92,0.934,1.134,1.008,1.006,0.958,1.094,0.931,0.963,0.988,1.023,1.108,0.84,1.016,0.999,0.813,1.008,0.9,1.031,1.136,1.051,1.116,1.092,1.056,0.934,0.944,0.943,0.894,0.998,1.056,1.179,0.973,1.027,1.006,1.104,1.072,0.953,0.86,1.042,0.999,1.005 +NM_005959,1.151,0.886,1.064,1.071,1.087,1.032,0.934,0.978,0.928,1.018,0.972,1.061,0.903,0.937,0.833,0.973,1.029,1.055,0.952,0.803,1.012,1.083,0.851,0.966,1.001,1.058,1.071,0.984,0.835,1.003,0.914,1.138,0.882,0.988,1.012,0.979,0.92,0.974,0.945,1.045,1.001,1.072,1.006,0.946,0.997,0.924,0.913,1.113,1.155,0.984,0.943,0.897,0.991,0.91 +NM_005961,0.861,5.914,0.845,5.834,0.886,3.687,1.626,0.784,0.822,0.93,1.83,0.871,0.939,0.865,0.912,1.092,0.894,1.471,0.825,3.433,0.85,0.861,2.518,0.843,6.69,0.878,0.897,0.998,0.871,3.377,0.884,1.106,0.855,10.34,0.911,0.898,2.749,0.913,1.879,0.861,1.008,5.735,1.459,0.862,0.864,1.252,0.997,0.94,0.933,0.804,3.831,1.061,0.922,1.883 +NM_005962,1.078,0.946,1.063,0.932,0.948,1.001,0.904,1.003,1.027,0.898,1.022,1.05,0.878,1.226,1.023,0.981,0.987,0.993,1.134,0.893,1.134,1.105,0.931,0.959,0.92,0.929,0.959,1.202,0.951,0.908,1.035,0.963,1.06,0.953,1.085,1.051,1.017,1.057,1.118,0.883,1.016,1.064,0.841,1.023,1.043,0.782,1.074,1.013,1.295,1.053,0.945,0.997,1.036,0.979 +NM_005964,0.943,0.783,1.835,0.582,1.296,0.544,0.638,0.699,1.059,1.582,0.595,1.194,0.592,1.084,0.797,0.744,1.397,1.082,1.477,1.069,0.765,0.996,1.037,1.201,0.651,0.872,2.849,0.866,0.371,0.899,1.264,6.977,2.052,1.353,0.78,0.518,0.76,1.773,0.886,1.906,0.998,1.273,0.481,0.512,1.176,0.567,1.384,1.052,0.527,1.197,0.921,1.38,1.557,0.701 +NM_005966,0.64,0.987,1.462,0.737,0.866,1.165,0.809,0.76,0.939,0.639,1.146,1.653,0.855,0.688,0.85,0.916,0.809,1.146,1.356,1.447,0.518,1.047,0.852,1.31,0.901,0.655,1.662,0.955,1.006,1.327,0.858,1.001,1.285,1.607,0.136,0.874,0.908,1.032,1.187,1.337,1.015,0.873,0.801,0.974,0.76,0.634,0.792,0.839,0.421,0.83,0.99,1.019,0.863,1.775 +NM_005967,1.045,1.05,0.958,1.078,1.185,0.99,0.925,0.925,1.036,1.135,0.932,0.996,1.04,0.891,0.881,0.968,0.963,0.994,1.136,0.88,0.974,1.009,1.023,1.02,0.973,1.111,1.134,0.966,0.797,0.918,1.033,1.127,1.011,0.988,1.038,0.996,1.037,1.144,0.939,1.025,1.021,0.925,1.04,0.947,0.997,0.982,1.041,1.066,1.066,1.133,0.931,1.0,1.072,1.018 +NM_005968,1.018,1.037,1.081,1.037,1.148,0.957,0.911,1.176,1.026,1.201,1.06,0.907,1.009,0.83,1.346,1.05,1.022,1.103,1.023,0.983,0.845,0.947,1.055,1.053,1.103,1.0,0.95,0.991,1.105,0.909,0.936,0.974,0.862,0.975,0.991,0.914,1.01,1.063,1.021,0.966,1.036,1.024,1.193,1.084,1.057,0.839,1.041,1.032,0.845,1.094,1.039,0.876,1.049,1.0 +NM_005969,0.996,0.986,1.751,0.942,1.049,0.789,0.536,0.512,1.251,1.093,0.839,0.862,0.951,0.675,0.925,1.403,1.268,1.018,1.431,0.8,0.744,1.104,0.98,1.208,0.605,1.096,1.803,0.786,0.443,1.315,0.91,0.994,1.018,1.054,0.326,1.262,0.881,1.083,1.393,0.856,1.331,0.863,0.67,1.164,1.073,0.828,1.005,1.012,0.758,1.103,0.857,0.756,1.268,1.464 +NM_005971,0.587,1.282,1.516,0.967,0.668,2.663,1.431,0.521,0.62,0.633,3.036,0.673,0.547,0.582,1.446,1.767,0.888,1.27,0.944,2.412,0.512,0.448,2.49,0.534,0.874,0.608,0.899,0.601,0.755,2.614,0.589,0.852,1.16,2.502,0.341,1.087,1.577,0.599,1.801,0.662,0.794,1.872,1.094,0.681,0.596,1.945,1.088,0.528,1.239,0.771,1.984,0.757,0.677,0.791 +NM_005972,1.056,0.964,0.978,0.995,1.014,0.959,1.012,0.958,1.181,0.896,1.054,1.001,1.144,0.949,1.064,0.894,0.984,1.114,1.076,1.02,0.931,1.097,0.953,1.062,0.968,0.992,0.947,1.152,0.782,1.02,0.972,0.955,0.944,0.986,0.959,1.151,1.002,0.926,0.936,0.92,0.965,0.981,0.978,0.974,1.063,1.015,1.002,1.01,1.034,1.005,0.986,0.977,1.019,0.897 +NM_005973,0.89,0.979,1.357,0.954,0.989,0.951,0.849,0.615,0.872,1.168,0.844,1.112,0.808,0.63,0.841,1.215,0.904,1.002,0.942,0.947,0.431,0.875,1.267,1.102,0.797,0.968,1.229,0.862,0.42,1.198,1.004,2.067,1.509,1.108,0.378,1.497,1.024,0.886,1.648,1.591,0.968,1.21,0.829,1.748,1.345,0.933,0.892,0.991,0.985,0.996,1.116,1.078,1.074,1.963 +NM_005978,1.586,0.0173,2.981,0.794,2.227,0.02,0.0253,1.461,2.16,3.656,0.0195,3.098,1.539,0.864,1.026,1.696,2.03,3.424,3.71,0.192,1.872,1.761,0.0201,3.317,0.0166,1.918,3.283,1.92,0.0152,0.0536,1.59,0.0234,1.827,0.0195,0.162,0.0368,0.0195,2.494,0.0685,0.0346,2.999,0.0363,0.0164,0.066,2.484,0.0197,3.027,1.623,0.0666,2.36,0.974,1.825,2.792,1.599 +NM_005981,0.615,1.394,1.124,0.748,0.856,1.515,0.866,0.58,0.998,0.828,1.435,0.868,0.717,0.55,0.858,1.523,0.837,1.199,0.882,1.614,0.361,0.759,1.068,1.002,0.829,0.624,0.888,0.846,0.687,2.012,0.751,0.888,1.05,1.86,0.291,1.323,1.337,0.805,1.144,0.932,1.039,1.586,0.8,1.633,0.833,1.344,1.395,0.635,1.186,0.618,1.168,1.181,0.856,0.621 +NM_005982,1.045,1.024,1.027,0.964,1.129,1.021,0.839,1.003,0.913,0.876,0.952,1.066,1.08,1.205,0.774,0.845,0.859,0.958,1.144,1.031,1.132,1.057,1.074,0.949,1.107,1.01,1.139,1.086,0.894,0.953,0.999,1.017,1.043,1.017,1.069,1.253,0.851,0.982,1.019,0.924,0.911,1.034,0.851,1.106,0.969,1.171,0.963,0.973,1.2,0.926,0.996,0.987,1.085,1.033 +NM_005983,0.923,0.964,1.006,0.882,1.045,0.955,1.005,1.086,0.995,1.08,0.945,0.955,0.863,0.879,0.856,1.103,1.003,1.003,1.01,1.063,1.021,1.064,1.326,0.913,0.958,1.089,0.9,0.981,1.142,0.882,0.947,0.975,1.199,1.067,1.025,0.831,0.948,1.006,1.113,1.018,1.011,0.894,1.117,1.08,0.928,0.982,1.065,0.998,1.073,0.953,0.933,1.145,0.934,1.145 +NM_005984,0.853,0.84,0.84,1.221,0.64,1.982,0.57,0.705,0.856,0.783,1.244,0.856,0.669,0.658,0.957,2.036,0.905,0.957,1.239,1.074,0.737,0.727,1.203,0.957,1.091,1.119,1.292,0.56,0.705,1.181,0.752,1.139,1.343,1.905,0.447,0.626,1.359,0.879,1.825,0.773,0.733,1.377,0.828,0.983,0.83,1.052,1.229,0.735,0.891,1.002,1.283,0.581,0.897,0.814 +NM_005985,0.96,0.938,1.032,0.983,1.0,1.05,0.905,0.905,1.004,0.985,0.824,0.985,0.99,0.941,1.068,0.926,1.086,0.869,0.942,0.911,1.085,1.02,0.89,0.956,1.088,1.025,1.095,1.008,0.678,0.989,0.999,1.146,1.025,0.97,1.03,1.063,1.068,0.943,1.06,1.125,1.002,1.018,0.965,0.919,1.081,0.892,0.894,0.99,1.07,0.986,1.109,0.88,1.036,0.855 +NM_005986,0.971,0.949,0.958,0.995,0.867,0.973,0.985,1.274,1.09,1.0,0.948,1.0,0.952,1.117,1.222,1.1,0.967,1.073,1.049,0.928,1.027,1.059,0.842,1.049,1.101,0.965,0.968,0.816,1.277,1.005,1.219,0.878,0.923,1.052,0.882,1.024,1.174,1.073,1.01,0.973,1.014,0.978,0.989,1.014,0.973,0.947,0.861,0.948,0.967,0.887,0.943,1.105,1.017,1.098 +NM_005987,3.228,0.0513,5.097,1.038,4.877,0.0538,0.0547,2.899,4.206,4.239,0.0483,3.043,3.611,1.103,1.824,1.615,6.292,2.605,4.493,0.0628,1.885,1.497,0.0519,2.776,0.0542,2.227,3.101,2.977,0.0564,0.053,5.106,0.047,2.449,0.0443,8.368,0.146,0.0521,3.891,0.133,0.0529,3.991,0.0485,0.0576,0.0423,6.95,0.0483,3.6,2.814,0.418,6.886,0.625,1.241,5.258,0.573 +NM_005989,1.004,0.923,0.983,0.909,0.908,1.045,1.013,1.028,0.987,0.942,0.965,0.977,0.927,1.055,0.978,0.946,0.912,0.938,0.884,0.95,0.967,0.913,1.122,0.995,1.065,0.966,0.93,1.072,0.809,1.003,0.913,1.045,1.195,0.869,0.945,0.994,0.941,1.053,0.908,1.082,0.901,1.056,1.052,1.025,1.016,0.935,1.01,0.918,1.049,0.995,1.073,0.96,0.878,0.977 +NM_005990,0.56,1.088,1.094,1.056,1.611,0.783,1.056,0.855,0.987,0.777,0.729,0.724,0.56,0.558,0.661,0.794,1.073,0.901,0.65,1.013,0.496,0.627,1.065,0.575,0.779,0.741,1.104,0.729,0.792,1.499,0.713,2.101,1.213,1.33,1.158,0.964,0.983,0.666,1.839,1.896,0.777,1.191,1.097,1.305,0.777,0.826,1.556,1.105,1.251,0.961,1.042,1.148,0.816,1.565 +NM_005993,0.601,1.439,1.134,0.692,1.031,0.975,0.587,0.358,1.184,1.086,0.815,0.698,0.444,0.506,0.634,0.814,0.716,0.944,0.706,1.072,0.37,0.901,1.616,0.996,0.754,0.773,0.996,0.876,0.404,1.795,0.576,1.89,0.597,1.31,0.244,1.061,1.086,0.832,1.435,0.842,1.021,1.236,1.106,1.418,0.937,1.233,1.042,0.615,1.123,0.572,1.293,0.959,0.732,1.09 +NM_005994,0.806,0.97,0.841,0.84,0.764,1.294,0.975,0.935,0.673,0.693,1.384,0.83,0.845,0.928,0.995,1.168,0.86,0.885,0.881,0.903,0.935,0.783,1.396,0.828,1.219,0.842,0.797,0.879,0.735,1.899,0.993,2.807,1.456,1.769,0.825,0.896,0.973,0.977,2.223,1.966,0.849,1.87,1.143,1.042,0.98,0.983,0.861,0.85,0.986,0.886,1.23,1.387,0.962,1.24 +NM_005995,0.971,0.843,0.821,1.081,0.963,1.027,0.971,0.83,0.827,0.875,1.347,0.849,1.003,0.975,1.82,2.987,1.047,0.859,1.205,1.376,0.944,1.024,1.124,1.028,0.928,1.196,0.929,0.914,1.112,0.981,1.057,1.082,1.07,1.067,1.147,0.907,2.702,0.984,1.01,0.91,0.88,1.084,2.186,0.827,0.918,4.074,1.226,0.917,1.363,1.108,1.602,0.955,0.983,0.899 +NM_005996,1.8900000000000001,2.1029999999999998,2.1420000000000003,1.976,1.8399999999999999,1.992,1.9969999999999999,2.1609999999999996,2.064,1.927,1.9620000000000002,1.977,1.782,2.114,2.209,2.1639999999999997,1.916,2.158,1.825,1.979,2.142,1.6829999999999998,2.1470000000000002,1.854,2.056,1.948,2.034,2.012,1.8969999999999998,2.073,1.8679999999999999,2.078,2.199,1.968,1.807,1.8940000000000001,1.967,1.95,2.058,2.157,1.927,1.936,1.854,2.1799999999999997,1.9769999999999999,1.9689999999999999,1.9249999999999998,1.8599999999999999,2.0629999999999997,2.085,1.733,1.847,1.9649999999999999,2.185 +NM_005997,0.678,1.199,1.031,0.728,0.919,0.986,0.906,0.584,1.108,1.079,0.912,1.008,0.8,0.541,0.841,1.121,0.885,0.872,0.797,1.255,0.488,0.722,1.257,1.075,0.76,0.758,1.093,0.96,0.674,1.314,0.889,2.781,1.897,1.206,0.495,2.305,0.917,0.741,1.418,2.056,1.213,1.026,0.886,1.619,1.117,0.921,1.329,0.666,0.961,0.726,1.051,1.275,0.745,2.117 +NM_005998,0.564,1.001,0.914,0.563,0.818,0.963,0.555,0.451,1.12,0.973,0.797,0.899,0.516,0.442,0.931,2.067,0.704,0.801,1.489,0.787,0.878,1.045,1.394,1.36,0.452,0.81,1.247,0.63,0.427,0.895,0.999,1.608,3.947,1.135,0.19,1.636,0.855,1.204,2.344,1.189,1.021,1.326,0.499,2.087,0.918,0.884,1.013,0.764,1.404,0.779,0.959,0.695,0.912,2.762 +NM_005999,0.821,1.052,1.063,0.892,0.956,1.025,0.641,0.851,0.997,0.882,1.076,0.631,0.86,0.847,0.999,1.55,0.785,0.968,1.033,1.036,0.817,0.667,1.001,0.746,0.79,0.824,1.068,0.916,0.707,0.965,0.972,1.264,2.141,1.321,0.643,1.019,1.121,0.941,1.037,0.903,0.965,1.035,0.83,1.217,0.945,0.996,0.913,0.662,1.112,0.821,1.14,0.894,1.107,1.932 +NM_006000,1.03,0.203,1.147,0.426,1.195,0.675,0.335,0.624,1.705,1.868,0.711,1.613,0.642,0.61,1.032,1.621,0.737,1.241,2.023,0.524,0.905,1.756,1.009,1.368,0.0977,1.561,0.857,1.541,0.412,0.433,1.422,0.569,1.847,0.294,0.108,0.914,0.479,1.635,1.216,0.827,1.455,0.915,0.597,1.624,1.978,0.647,1.861,1.538,0.787,1.436,0.946,1.124,1.081,1.353 +NM_006001,1.127,0.749,1.495,0.927,1.033,1.091,0.789,0.889,1.091,1.07,0.726,1.048,1.066,0.627,1.038,1.887,1.188,1.104,0.837,0.813,0.591,1.309,1.004,1.734,0.712,0.805,1.435,0.756,0.68,0.805,1.322,1.115,2.365,0.969,0.54,0.671,0.928,2.069,2.487,0.9,1.013,0.711,0.908,0.811,1.281,0.954,1.135,1.395,1.211,1.197,1.424,0.819,0.748,1.476 +NM_006002,0.823,0.609,1.109,0.67,1.016,0.974,0.496,0.604,1.503,1.227,1.098,0.966,0.743,0.659,1.001,2.74,0.813,0.97,2.073,0.771,0.826,1.062,0.976,1.454,0.454,0.959,1.402,1.086,0.389,0.925,1.044,0.62,2.251,1.102,0.288,0.862,0.919,1.084,0.971,0.57,1.326,0.906,0.562,1.551,1.272,0.854,1.309,0.807,1.017,0.986,0.928,0.713,1.57,1.081 +NM_006003,0.789,0.824,0.872,1.011,0.733,1.113,0.6,0.366,0.951,0.952,1.66,0.762,0.736,0.583,0.946,2.285,0.736,1.188,1.506,0.956,0.433,0.767,1.844,0.966,0.917,0.896,1.055,0.744,0.418,0.938,0.866,0.548,1.605,1.31,0.273,1.041,1.673,0.717,1.55,0.52,1.006,1.144,1.013,1.144,1.139,1.239,0.926,0.77,1.565,0.919,1.191,0.898,0.994,1.519 +NM_006005,0.726,1.324,0.66,0.863,0.675,1.72,0.865,0.652,0.634,0.773,1.351,0.754,0.656,0.63,0.905,1.304,0.735,0.93,0.566,1.367,0.725,0.696,1.281,0.751,1.111,0.725,0.801,0.746,0.833,1.641,0.659,1.695,1.013,1.515,0.613,0.728,1.417,0.784,1.999,1.067,0.862,1.934,1.344,1.477,0.637,1.443,0.814,0.711,0.974,0.79,1.521,0.727,0.619,0.986 +NM_006006,1.176,1.147,0.911,0.963,1.026,0.935,1.135,1.07,1.05,0.986,0.908,1.095,0.879,1.05,0.757,1.114,0.854,1.096,0.901,1.067,0.978,0.922,1.07,1.047,1.007,0.963,1.113,1.085,0.966,1.102,1.041,1.259,0.977,1.462,1.221,0.801,1.011,1.025,0.955,0.984,0.894,2.126,1.022,0.864,0.922,0.865,1.021,0.931,1.01,1.048,1.022,0.934,1.048,1.076 +NM_006009,0.52,0.913,1.269,0.521,1.079,1.012,0.574,0.573,1.079,1.102,0.997,0.953,0.671,0.476,0.903,1.405,0.719,0.708,0.99,0.882,0.454,1.113,1.724,1.507,0.499,0.783,1.075,1.282,0.157,1.845,0.92,5.183,1.614,2.052,0.154,0.618,0.755,1.369,1.258,2.898,1.56,1.627,0.791,0.794,0.861,0.98,1.214,0.905,0.618,0.658,1.47,1.493,0.805,1.13 +NM_006010,0.553,0.87,0.994,0.905,0.632,1.169,0.844,0.535,1.109,1.01,0.584,1.109,0.697,0.448,0.718,1.35,0.706,0.937,1.225,0.758,0.422,0.823,0.952,1.176,0.953,0.774,1.177,0.782,0.401,1.558,0.757,1.258,1.171,1.321,0.0919,1.753,1.305,0.614,1.652,0.894,1.067,1.231,0.836,1.098,1.177,1.108,1.251,0.663,1.38,0.741,1.171,1.098,1.004,2.138 +NM_006011,1.015,1.122,1.058,0.926,1.183,1.176,0.968,0.93,0.969,1.04,0.898,1.152,0.976,1.086,0.923,1.084,1.166,1.067,1.011,1.077,1.001,0.963,1.128,1.108,1.074,1.001,1.078,0.988,0.917,0.903,1.15,1.062,1.123,1.079,1.14,0.981,1.018,1.085,0.986,0.963,1.136,0.973,1.138,0.867,1.076,1.063,0.967,1.066,1.054,1.07,1.05,0.939,1.041,1.176 +NM_006012,0.827,0.834,0.923,0.932,0.769,1.097,0.494,0.589,0.999,1.027,1.155,0.865,0.793,0.61,0.91,1.637,0.866,0.855,1.525,0.756,0.741,0.894,1.569,1.105,0.68,1.119,1.261,0.8,0.536,1.19,0.875,1.126,1.607,1.407,0.489,1.001,0.971,0.861,1.163,0.906,1.015,1.034,0.663,1.625,1.027,0.921,0.913,1.126,1.034,0.942,0.915,0.716,1.18,1.146 +NM_006013,1.074,0.992,1.161,0.938,1.068,1.046,0.968,1.084,1.007,1.023,0.959,1.023,0.949,0.893,1.036,0.949,0.89,0.982,1.077,1.09,0.934,0.991,1.025,0.976,1.042,1.0,0.98,1.093,0.958,0.998,0.937,1.003,1.108,1.014,1.206,0.94,1.074,0.955,1.044,0.98,1.08,0.955,1.007,0.852,0.963,1.062,1.05,1.005,0.999,0.997,0.997,1.006,0.898,1.014 +NM_006014,0.635,1.286,1.022,0.737,0.784,1.028,0.621,0.54,0.828,1.069,0.983,0.95,0.753,0.608,0.878,1.35,0.863,0.874,1.45,0.554,0.559,0.62,1.282,1.075,0.723,0.93,1.295,0.648,0.369,1.259,0.732,2.003,3.444,1.755,0.142,1.0,0.978,0.804,1.861,1.053,1.086,1.14,0.563,3.286,0.88,0.543,1.136,0.606,0.882,0.754,0.867,1.254,1.139,1.862 +NM_006015,1.185,1.049,0.88,1.021,0.919,1.032,1.061,0.961,1.124,0.992,1.113,1.127,1.016,1.013,1.145,1.033,0.996,1.06,1.036,1.012,1.008,0.944,0.935,1.112,1.096,0.969,1.001,0.911,0.656,1.056,0.957,0.905,1.119,1.03,1.088,0.846,0.995,0.994,0.951,0.934,1.117,1.097,0.92,1.075,0.95,0.914,1.181,0.962,0.834,1.058,1.063,1.103,0.93,1.035 +NM_006016,0.518,1.015,1.182,0.694,0.658,3.502,1.639,0.907,0.666,0.59,1.33,0.922,0.759,0.526,1.643,4.084,0.874,1.236,0.457,2.232,0.449,1.116,1.491,1.016,0.779,0.422,1.156,0.579,1.034,1.79,1.005,1.169,1.029,1.574,0.428,0.539,1.952,1.031,2.304,1.0,0.64,1.599,0.666,0.505,0.656,1.432,1.067,0.581,1.979,0.592,2.391,0.6,0.378,1.72 +NM_006017,0.192,2.438,0.145,0.888,0.155,2.12,0.903,0.126,0.158,0.15,3.254,0.141,0.158,0.21,1.018,3.256,0.163,0.971,0.179,3.423,0.144,0.132,4.062,0.174,0.59,0.184,0.151,0.178,0.6,2.107,0.179,2.013,7.438,2.767,0.164,3.857,2.034,0.153,1.544,2.388,0.211,2.946,1.82,2.171,0.146,1.539,0.6,0.153,1.019,0.159,1.889,1.58,0.168,0.574 +NM_006019,1.13,0.919,0.947,0.946,0.934,0.983,1.028,0.875,1.068,0.794,0.901,1.043,0.978,0.92,0.842,1.171,0.847,1.255,0.92,1.07,1.028,0.952,0.817,1.003,0.923,1.064,1.074,0.893,0.913,0.999,0.989,1.138,1.068,1.122,0.951,1.008,1.014,0.966,1.105,0.976,1.022,1.089,0.816,0.975,1.142,0.988,1.056,1.045,0.881,1.313,1.056,1.011,1.246,1.073 +NM_006020,0.772,1.008,1.033,0.839,0.875,1.066,0.792,1.019,0.99,1.017,1.148,0.771,0.96,0.997,0.985,1.021,1.0,0.884,1.041,1.06,0.873,0.784,1.05,0.956,0.898,0.832,0.949,0.925,0.784,1.048,1.072,1.133,1.38,1.148,0.938,1.004,0.909,0.853,1.002,0.964,0.902,1.096,0.995,0.942,0.897,1.011,1.109,0.738,0.991,0.896,1.022,1.01,1.089,1.329 +NM_006021,0.866,1.046,1.178,0.834,1.119,1.192,0.859,0.958,1.121,0.973,0.97,1.184,0.934,1.16,1.172,1.205,1.195,0.971,1.241,0.874,0.797,1.051,1.002,1.178,0.862,0.956,1.278,1.049,1.139,0.91,1.195,1.008,1.068,0.887,0.861,0.945,0.925,0.939,1.401,1.27,0.942,0.844,0.78,1.084,1.285,1.01,0.968,0.983,0.986,0.959,1.02,0.989,1.027,3.195 +NM_006022,1.054,1.9869999999999999,1.262,1.389,1.065,3.196,1.452,0.9430000000000001,1.149,1.092,2.8019999999999996,1.0190000000000001,1.1880000000000002,1.0979999999999999,2.126,4.587,1.007,1.634,1.286,2.441,1.005,1.029,2.29,1.194,1.8079999999999998,0.9490000000000001,1.259,1.3199999999999998,1.2810000000000001,4.509,1.1340000000000001,2.702,6.265000000000001,3.137,0.939,2.132,2.884,1.175,3.449,5.49,1.42,3.0380000000000003,2.421,3.713,1.013,2.771,2.8689999999999998,0.996,3.51,1.0939999999999999,2.147,2.202,1.504,3.476 +NM_006023,0.682,1.01,1.148,0.671,0.859,1.003,0.559,0.496,1.211,1.099,0.81,1.064,0.658,0.543,0.973,1.39,0.84,0.924,0.991,0.989,0.527,0.858,1.342,1.191,0.495,0.842,1.125,0.861,0.415,0.94,1.006,1.401,2.559,1.012,0.173,1.098,0.916,0.997,1.591,0.906,1.041,1.071,0.551,1.813,1.198,0.858,1.294,0.809,1.057,0.737,1.044,0.835,0.94,2.21 +NM_006024,1.265,0.657,1.244,0.643,1.858,0.942,0.641,1.698,2.461,1.007,1.022,1.326,1.107,1.251,1.376,1.233,1.32,1.023,1.275,0.995,0.459,1.554,1.131,1.439,0.478,1.884,0.934,2.344,0.4,1.001,2.329,0.923,1.427,0.842,2.979,0.925,0.862,1.894,0.944,0.624,1.618,0.719,0.611,1.149,1.187,0.817,1.463,1.998,0.891,0.817,0.987,0.834,0.815,1.578 +NM_006025,5.389,0.289,2.844,1.491,8.097,0.305,0.32,4.292,10.19,8.622,0.309,4.659,2.187,3.777,4.149,1.999,1.35,3.873,4.947,0.331,3.003,7.68,0.316,6.289,0.321,7.162,1.775,8.878,0.293,0.302,6.874,0.328,0.985,0.285,1.142,0.308,0.302,6.289,0.304,0.317,5.927,0.351,0.307,0.328,4.944,0.277,2.716,8.27,0.321,1.635,1.364,0.874,3.384,0.346 +NM_006026,0.856,0.798,1.64,0.797,0.989,0.942,0.652,0.753,1.202,0.835,0.732,0.991,0.891,0.793,0.845,0.937,1.265,1.203,1.548,1.115,0.429,0.764,1.002,0.974,0.717,0.858,1.498,0.86,0.348,1.249,1.137,2.114,2.26,1.286,0.672,0.996,0.654,0.763,1.349,1.725,1.233,0.915,0.444,2.697,0.846,0.583,1.039,1.084,0.394,1.225,1.098,0.887,1.256,1.108 +NM_006028,0.894,0.969,1.119,0.823,0.993,0.93,0.883,0.975,1.001,1.034,0.847,0.976,1.09,1.11,1.176,0.831,0.991,1.043,1.152,1.038,1.205,1.107,1.07,1.179,0.901,1.072,0.983,1.066,1.251,1.085,1.053,0.796,1.107,1.008,1.07,1.016,1.003,0.925,0.992,1.141,0.992,1.051,0.794,0.969,1.024,1.081,0.848,0.982,1.062,1.109,1.063,1.077,0.856,0.9 +NM_006030,0.992,1.167,0.943,0.857,0.932,0.958,1.044,0.922,1.032,1.128,1.072,1.093,0.93,0.992,0.894,1.011,0.924,0.989,0.945,0.96,0.959,0.977,1.068,1.0,1.089,0.834,0.929,0.95,1.0,1.016,0.824,1.14,0.806,1.262,1.005,0.93,1.103,1.213,0.888,0.876,0.915,1.287,1.051,0.93,0.892,1.119,0.729,1.032,0.936,0.951,1.044,0.83,0.994,1.133 +NM_006031,1.085,1.164,1.636,0.923,1.079,0.802,0.568,0.654,1.244,1.033,0.935,0.945,0.701,0.811,1.017,0.995,0.956,0.775,0.957,1.05,0.731,0.925,1.373,1.004,0.782,1.079,1.35,0.811,0.642,0.859,1.0,1.037,2.42,0.97,0.679,1.144,0.749,0.836,1.344,1.158,1.057,1.095,0.989,0.947,1.119,0.829,0.892,1.019,0.729,1.158,1.077,0.772,1.309,1.59 +NM_006032,1.02,0.887,0.927,1.009,1.11,0.909,0.976,1.002,0.919,1.044,0.949,1.016,1.018,1.019,0.81,0.854,0.906,1.06,0.977,0.966,0.989,0.937,1.079,1.003,1.093,0.912,1.063,1.077,1.744,1.035,1.022,0.959,0.872,0.957,1.14,1.09,1.117,1.059,0.955,1.076,1.006,1.238,0.821,0.94,0.874,1.041,0.927,1.057,0.853,1.11,1.139,0.867,1.208,1.008 +NM_006033,0.89,0.857,0.868,0.962,0.831,1.034,0.948,0.852,0.867,1.169,1.462,0.904,0.762,0.901,0.781,2.229,0.869,0.843,0.884,1.433,0.894,0.79,3.079,0.838,0.869,0.79,0.871,0.859,1.056,0.902,0.838,1.109,1.268,0.926,0.886,1.046,1.192,0.854,1.471,1.863,0.838,1.134,1.163,1.062,0.98,1.358,1.312,0.816,1.807,0.789,1.736,1.416,1.211,1.45 +NM_006034,1.004,0.981,0.795,1.089,0.879,1.264,1.227,0.958,0.967,0.769,1.07,0.952,1.168,0.755,0.93,0.938,0.995,1.004,0.802,1.085,0.966,0.999,0.95,0.864,1.154,0.974,0.954,0.856,1.083,1.163,0.878,1.021,1.061,1.006,1.349,0.971,0.909,0.927,1.29,1.098,0.925,0.962,0.925,1.425,0.874,0.985,0.976,0.981,1.062,0.895,1.01,1.006,0.946,1.137 +NM_006035,0.933,0.961,1.098,0.845,0.692,1.355,0.666,0.667,0.867,0.732,1.093,0.696,0.704,0.728,0.97,1.339,0.842,0.817,1.243,0.742,1.406,1.096,1.127,0.999,0.867,1.227,0.878,0.693,0.785,1.145,0.981,1.511,1.079,1.26,0.859,0.762,0.935,1.038,1.776,0.783,1.002,0.878,0.744,1.993,0.985,0.748,0.915,1.341,0.824,1.201,1.047,0.65,0.989,0.706 +NM_006037,1.011,0.783,1.676,0.665,1.045,0.674,0.514,0.59,1.427,1.322,0.835,1.242,0.739,0.763,0.843,0.912,1.231,0.876,1.443,0.783,0.845,1.035,1.203,1.258,0.556,0.978,1.731,1.034,0.411,0.899,1.156,2.056,1.809,0.984,0.374,0.74,0.804,1.1,0.929,1.203,1.757,1.051,0.708,1.225,1.616,0.7,1.148,0.942,0.718,1.433,0.843,0.863,1.017,2.606 +NM_006038,0.658,1.219,0.707,0.868,0.742,1.356,0.892,0.697,0.76,0.738,1.237,0.766,0.662,0.635,1.03,1.462,0.719,1.084,0.864,1.553,0.543,0.767,1.783,0.741,0.909,0.636,0.714,0.817,0.817,1.805,0.78,1.632,0.926,1.396,0.602,0.946,1.355,0.696,1.136,0.947,0.765,1.343,0.931,0.872,0.716,1.343,0.9,0.634,1.259,0.658,1.162,0.951,0.705,1.605 +NM_006039,1.335,0.748,1.344,0.96,1.198,0.728,0.844,0.83,1.229,1.14,0.687,1.137,0.959,1.168,0.967,0.817,0.915,0.999,1.178,0.786,1.093,1.345,0.946,1.355,0.821,2.072,1.287,1.031,0.577,1.103,1.298,4.602,1.189,1.065,0.744,0.791,0.751,1.594,1.135,1.424,1.197,1.004,0.718,0.768,1.304,0.839,0.946,1.34,0.778,1.194,0.914,0.883,1.286,0.978 +NM_006041,1.033,1.03,1.113,0.984,1.251,0.999,1.206,1.079,1.065,1.003,0.943,0.885,1.108,1.0,0.915,1.02,0.953,0.946,0.81,1.062,0.944,1.072,1.206,1.039,0.964,1.101,0.994,1.136,1.127,1.047,1.018,1.084,0.917,0.964,1.094,1.166,0.895,1.206,1.085,0.939,0.917,1.071,1.06,1.083,0.879,0.845,0.872,1.032,1.001,1.109,0.947,0.795,0.922,0.852 +NM_006043,1.061,0.922,0.902,0.884,0.947,0.901,1.056,1.311,0.957,1.085,0.986,0.981,1.035,1.031,1.057,1.036,1.036,0.927,0.97,0.951,1.075,0.992,1.061,0.884,1.094,0.869,1.067,1.09,0.797,1.047,1.05,1.113,0.987,0.94,0.983,0.979,0.982,0.948,0.965,0.896,0.963,1.065,1.113,0.955,1.047,0.995,1.033,0.922,0.972,1.016,1.185,1.084,1.017,1.092 +NM_006044,1.063,1.094,0.919,0.918,0.878,0.869,0.629,0.889,1.029,0.997,0.839,0.856,0.814,0.947,1.042,0.954,1.078,1.174,1.246,0.927,0.788,1.153,1.009,1.009,0.772,1.074,1.211,0.869,0.699,1.003,0.923,1.354,1.225,1.064,0.767,0.578,0.937,1.147,1.276,0.782,0.972,1.137,0.841,0.91,1.043,0.863,0.868,1.017,0.78,0.944,0.888,0.751,0.893,0.966 +NM_006048,0.791,1.214,1.865,0.644,1.329,0.858,0.542,0.662,1.461,1.119,0.647,1.088,0.738,0.779,1.212,1.348,0.859,1.062,1.715,1.257,0.598,1.003,1.282,1.073,0.52,0.914,1.413,1.19,0.402,0.996,1.23,1.122,1.338,1.108,0.371,0.688,0.825,1.453,1.134,0.788,1.176,1.292,0.47,0.89,1.125,1.06,0.909,0.876,0.918,1.078,1.083,0.692,0.862,1.274 +NM_006049,0.972,1.135,0.983,0.756,0.848,0.98,0.895,0.861,1.044,0.879,1.057,0.742,0.807,0.842,1.036,1.178,1.025,0.874,1.024,0.885,0.869,0.765,1.17,0.994,0.909,0.87,1.127,1.008,0.515,1.063,1.064,1.195,1.343,1.282,0.886,1.117,1.07,0.868,1.271,0.986,1.188,0.904,0.929,1.198,0.979,0.96,0.903,0.798,1.079,0.828,1.09,0.925,1.09,1.902 +NM_006052,0.785,1.007,1.152,0.839,0.805,1.5,0.882,0.705,1.144,0.801,1.281,0.843,0.725,0.767,1.445,2.151,0.867,1.034,1.132,1.29,0.779,0.802,1.56,0.942,0.836,0.893,0.902,0.97,0.643,0.983,1.035,1.126,1.828,1.556,0.62,0.718,1.192,0.859,1.24,0.91,1.021,1.341,0.786,0.935,1.008,1.209,0.818,0.744,0.877,0.917,1.175,0.701,0.928,1.234 +NM_006053,1.4340000000000002,1.916,2.002,2.075,1.564,2.511,1.732,1.341,1.55,1.5230000000000001,2.322,1.444,1.256,1.4749999999999999,2.048,3.394,1.606,2.5949999999999998,2.564,2.016,1.378,1.5230000000000001,1.875,1.7409999999999999,1.725,1.4769999999999999,2.151,1.225,2.464,2.558,1.621,2.597,2.769,2.859,1.419,2.729,2.378,1.324,3.7119999999999997,2.77,1.4849999999999999,2.346,2.259,2.208,1.895,2.334,1.6099999999999999,1.604,2.2880000000000003,1.7229999999999999,2.3,1.79,1.971,2.426 +NM_006054,0.573,1.621,1.051,0.722,0.762,1.403,0.604,0.536,0.796,0.775,0.929,0.755,0.59,0.614,0.999,1.666,0.6,0.94,0.963,1.146,0.566,0.695,1.352,0.765,0.829,0.669,1.024,0.764,0.412,2.291,0.727,1.838,1.875,1.481,0.269,1.635,1.403,0.948,1.582,1.299,0.774,1.419,0.637,1.019,0.65,1.185,0.78,0.573,1.001,0.776,1.266,0.863,0.716,1.023 +NM_006055,0.712,1.019,1.507,0.579,1.041,1.142,0.498,0.683,1.463,1.053,1.192,1.197,0.767,0.876,1.209,2.126,1.014,0.79,0.961,1.267,0.481,1.015,2.151,1.253,0.51,0.695,1.489,0.948,0.418,1.285,1.142,1.474,1.352,1.226,0.245,0.507,1.376,1.452,1.015,0.44,1.333,1.159,0.805,0.666,1.026,1.152,0.822,0.752,1.162,0.742,1.237,0.841,0.761,2.793 +NM_006058,1.266,0.621,1.055,0.74,1.239,1.211,0.634,1.276,1.462,0.643,0.791,0.883,1.402,0.746,1.176,1.442,1.223,1.005,1.401,0.806,0.482,1.515,0.823,1.047,0.553,1.131,1.179,1.209,0.588,0.851,1.655,1.29,1.591,1.283,4.17,0.529,0.726,1.77,1.83,1.044,1.062,0.957,0.415,0.703,1.009,0.657,1.145,1.957,0.762,1.229,0.912,0.984,0.737,1.564 +NM_006059,0.802,1.018,0.798,0.801,0.782,1.091,0.934,0.829,0.912,1.056,1.11,0.812,0.854,0.711,0.997,0.923,0.844,0.844,0.877,1.2,0.938,0.818,1.343,0.938,0.752,0.835,0.789,0.935,0.961,1.945,0.719,2.14,1.784,1.386,0.847,0.92,0.856,0.895,1.8,1.948,0.864,1.539,1.06,0.797,0.926,1.042,0.993,0.966,0.868,0.96,1.504,1.578,1.027,1.672 +NM_006063,1.026,1.065,0.965,1.001,0.992,1.019,1.027,0.831,1.032,1.156,0.995,0.901,0.95,1.099,1.152,1.022,1.032,1.042,0.965,1.044,1.013,0.883,1.075,0.93,1.054,1.146,0.791,1.065,0.943,1.03,1.007,0.877,1.189,0.895,0.939,1.073,1.131,1.189,1.087,0.907,1.065,1.079,0.962,1.08,0.956,1.11,1.246,1.197,0.876,1.108,1.092,0.943,1.063,0.938 +NM_006064,0.877,1.213,1.057,0.9,1.004,1.135,0.864,0.935,1.105,0.916,1.186,0.956,0.898,1.037,0.906,1.148,1.039,0.975,1.078,0.99,0.95,0.998,1.135,1.096,0.902,1.006,1.272,1.132,0.771,1.072,0.976,1.386,1.835,1.483,0.809,0.9,0.967,1.388,0.927,0.934,1.075,1.003,0.89,0.774,0.942,1.016,0.906,1.019,0.905,0.814,0.947,0.886,0.861,1.261 +NM_006066,0.911,0.912,1.055,0.884,0.961,1.14,0.861,0.899,0.815,0.953,0.997,0.887,0.926,0.839,1.106,1.302,1.086,1.045,1.051,1.127,1.0,0.901,1.127,1.03,0.88,1.016,1.038,0.845,0.849,1.06,1.0,0.922,0.99,1.139,0.899,1.053,1.147,0.954,1.144,0.908,0.974,0.98,0.837,1.124,0.917,1.045,1.065,0.875,1.028,0.912,1.04,0.949,1.015,1.119 +NM_006067,0.836,0.927,0.981,0.928,0.862,1.172,0.867,0.702,0.954,0.927,1.251,0.889,0.885,0.745,0.952,1.329,0.871,0.981,0.877,0.914,0.922,0.863,1.352,0.868,0.868,0.997,1.008,0.869,0.72,1.006,0.82,1.25,2.039,1.166,0.75,1.175,1.322,0.917,1.348,0.912,1.022,1.158,0.987,1.456,0.984,1.108,1.146,0.846,1.129,0.845,1.122,1.034,0.94,1.282 +NM_006068,0.99,1.069,0.974,0.962,0.997,1.018,0.914,1.007,1.011,1.009,0.987,1.004,1.008,0.884,0.948,0.984,0.968,0.938,1.042,1.034,1.039,0.961,0.89,1.057,0.896,0.994,1.117,0.991,1.483,1.033,0.864,0.98,0.952,1.081,1.09,0.941,1.063,0.957,1.0,1.016,0.934,0.975,0.844,0.801,1.03,1.049,0.961,0.945,0.904,0.976,1.023,0.886,0.996,1.03 +NM_006069,1.919,2.2510000000000003,1.8980000000000001,2.092,1.9700000000000002,1.916,1.826,2.059,2.032,1.8599999999999999,2.121,2.216,1.83,1.992,1.876,1.901,1.921,1.9789999999999999,2.1390000000000002,2.0,1.88,2.044,2.606,1.825,1.842,2.006,2.172,2.048,1.9899999999999998,2.564,2.046,3.9109999999999996,1.87,2.937,2.242,2.173,2.233,1.905,1.9249999999999998,1.96,2.5540000000000003,3.1710000000000003,1.751,1.955,2.025,1.906,2.019,1.9749999999999999,1.969,2.143,2.177,2.076,2.088,2.167 +NM_006070,0.742,0.801,0.962,0.937,0.799,1.124,0.553,0.354,1.072,1.003,1.275,0.505,0.479,0.66,1.024,1.616,0.971,0.938,1.011,0.897,0.56,0.55,1.432,0.843,0.627,0.893,1.207,0.646,0.41,1.216,0.805,1.271,1.813,1.204,0.433,1.046,1.569,0.836,1.428,0.619,0.997,1.186,0.812,1.46,1.017,1.338,0.856,0.686,1.135,0.909,1.259,0.843,1.177,1.331 +NM_006071,0.996,0.991,1.013,0.872,1.121,0.917,0.975,0.988,1.106,1.15,1.101,0.948,1.017,1.037,0.893,0.993,1.072,0.933,1.037,1.076,1.103,0.981,0.982,1.061,0.978,0.98,0.938,1.034,1.042,0.911,0.902,0.966,0.885,0.923,0.979,1.07,0.974,0.899,0.822,0.961,1.045,0.828,0.944,1.068,1.037,0.986,0.905,0.946,1.0,1.196,1.093,0.926,1.022,0.986 +NM_006072,1.239,1.067,0.94,1.116,1.058,1.006,1.109,1.027,1.162,0.993,0.947,1.034,0.998,1.299,1.027,1.069,0.882,1.098,1.254,0.913,1.282,0.996,0.998,0.923,1.01,1.095,1.697,1.192,1.012,1.079,1.034,1.354,1.15,0.833,0.891,1.274,0.931,1.016,1.0,0.961,1.153,0.904,0.954,2.434,1.131,1.116,0.85,1.276,1.012,0.942,0.958,1.018,0.987,1.262 +NM_006073,1.091,0.912,0.907,1.0,0.944,1.033,0.869,1.0,1.043,1.095,0.787,0.853,1.04,1.124,0.849,0.901,1.129,1.011,0.87,1.021,0.952,1.004,0.924,0.955,1.026,1.006,0.925,1.1,0.861,0.935,0.93,1.097,0.964,1.009,0.961,0.873,0.965,1.063,1.148,0.972,0.996,0.996,1.033,0.954,1.135,0.934,0.998,1.074,0.954,1.15,1.009,0.997,1.095,0.995 +NM_006074,0.706,0.909,2.353,0.778,0.747,2.197,1.715,0.646,0.961,1.025,1.332,0.708,0.731,0.687,1.566,1.702,1.854,1.084,0.818,1.237,0.699,0.682,1.085,0.905,0.704,0.521,1.672,0.697,0.729,1.831,0.887,1.68,3.374,2.167,0.502,0.559,1.246,0.771,0.843,0.749,1.075,2.216,0.733,0.679,0.975,0.812,0.72,0.658,0.932,0.818,1.08,1.226,1.389,2.961 +NM_006076,1.205,0.792,1.246,0.975,1.185,0.972,0.741,0.995,1.308,0.872,0.94,0.967,1.055,1.557,1.039,1.114,1.407,0.932,1.224,0.885,0.867,1.123,1.18,1.085,0.885,1.512,0.958,1.217,0.613,0.986,1.409,0.923,0.883,1.037,1.804,0.756,0.989,1.206,1.064,0.786,1.034,1.284,0.841,0.979,1.061,0.881,0.977,1.259,0.8,0.885,0.981,1.025,1.026,0.837 +NM_006077,0.385,1.375,0.705,0.872,0.56,2.268,0.981,0.415,0.873,0.447,1.173,0.437,0.386,0.468,1.002,1.331,0.606,0.999,0.611,1.182,0.328,0.495,1.444,0.566,0.748,0.414,0.943,0.551,0.683,2.045,0.679,1.75,1.633,2.139,0.626,1.156,1.502,0.515,1.523,0.652,0.668,1.505,0.942,1.363,0.503,1.434,0.97,0.349,1.001,0.43,1.447,1.125,0.629,2.143 +NM_006078,0.9,0.749,1.031,0.907,0.84,0.936,1.003,1.001,0.998,0.798,1.294,1.135,1.016,0.962,0.744,1.245,1.036,0.998,0.886,0.938,0.958,1.02,1.072,0.935,1.207,0.922,0.841,1.056,0.955,1.053,0.705,0.806,1.023,1.173,1.057,0.885,0.99,1.107,0.882,0.85,0.873,1.161,0.861,0.897,1.232,0.88,0.963,1.101,1.08,0.909,1.103,0.988,1.254,1.144 +NM_006079,1.021,0.695,1.795,0.576,2.561,0.998,0.645,2.875,2.67,0.769,1.105,1.115,1.463,0.929,1.798,1.655,1.943,1.012,0.719,0.933,0.474,1.7,0.556,1.517,0.509,1.414,2.233,2.406,0.596,0.734,2.35,0.936,1.21,1.101,5.222,0.468,0.707,1.486,0.874,0.82,2.193,0.916,0.523,0.544,1.933,0.568,1.179,3.623,0.748,1.73,1.051,0.64,0.637,0.819 +NM_006080,0.869,1.095,0.926,0.919,0.842,1.05,0.818,0.826,1.049,0.823,0.897,0.906,0.907,0.916,1.012,1.162,1.004,0.88,0.954,1.209,0.796,0.839,1.174,1.0,0.984,0.872,0.846,1.017,0.646,1.387,0.902,2.355,1.422,1.078,0.949,0.981,0.981,0.973,1.056,1.481,1.112,1.112,0.785,1.393,0.906,1.063,1.113,0.835,0.892,0.888,1.08,1.285,0.891,0.923 +NM_006082,0.576,0.848,1.219,0.56,0.91,1.427,0.721,0.614,1.133,1.07,0.752,1.203,0.83,0.382,0.88,1.679,0.956,1.058,0.664,1.0,0.278,0.942,1.433,1.523,0.58,0.449,1.666,0.884,0.465,1.099,1.012,1.348,1.578,1.277,0.0701,0.619,1.0,1.281,1.753,0.896,1.084,1.006,0.601,0.835,1.122,0.908,1.428,0.847,1.516,0.83,1.536,0.777,0.449,1.511 +NM_006084,0.661,1.187,1.625,0.778,0.365,1.428,1.568,0.345,0.759,0.508,1.487,0.432,0.301,0.326,1.069,0.938,0.98,0.832,0.468,0.9,0.552,0.351,1.345,0.718,0.823,0.344,0.972,0.471,0.68,1.136,0.475,1.196,1.173,1.669,0.214,0.561,1.327,0.378,1.295,0.753,0.747,1.26,0.642,2.342,0.602,1.065,0.836,0.413,1.042,0.608,1.166,0.811,0.987,2.726 +NM_006085,0.878,0.944,1.027,0.965,1.138,1.043,0.838,0.761,0.897,0.951,1.122,0.974,0.869,0.671,0.817,1.605,0.832,0.952,0.946,1.058,0.764,0.794,1.097,0.889,0.817,0.93,0.96,0.925,0.831,0.999,0.852,1.048,1.157,1.017,0.815,0.994,1.048,0.902,1.167,1.062,0.884,1.253,0.961,1.232,0.896,1.247,1.096,0.815,1.321,0.967,1.023,0.872,0.962,0.946 +NM_006086,0.918,1.053,1.182,0.837,0.835,0.935,0.879,0.881,0.851,1.087,0.951,0.857,0.784,0.815,0.962,1.017,1.081,0.912,0.855,0.936,0.814,0.74,1.175,1.032,0.701,0.806,1.771,0.869,0.846,0.993,0.805,4.387,2.486,0.934,0.736,1.827,0.882,0.792,1.473,5.472,0.856,0.944,2.04,3.366,1.194,1.355,2.591,0.891,1.414,1.299,1.206,2.072,1.57,3.1 +NM_006087,1.023,1.069,1.014,0.988,0.91,1.009,1.211,1.13,0.968,1.024,1.025,1.134,1.097,1.098,1.139,1.061,0.98,0.993,0.952,1.066,0.918,1.191,1.004,1.018,0.979,0.952,0.897,0.967,1.005,0.906,1.033,1.004,0.913,0.992,1.089,0.983,1.007,0.929,0.946,0.902,0.941,1.04,0.805,0.934,0.927,0.968,1.073,0.97,0.88,0.951,0.911,1.107,1.063,1.133 +NM_006088,0.891,0.563,0.939,0.747,0.959,0.773,0.453,0.484,1.244,1.27,0.741,0.997,0.611,0.63,1.138,1.952,0.809,0.941,1.574,0.613,0.66,1.085,1.411,1.33,0.325,1.417,1.14,1.008,0.297,0.652,1.232,0.825,1.613,0.818,0.242,3.33,0.914,0.858,1.518,1.003,0.932,0.856,0.832,1.603,1.463,0.887,1.189,1.159,1.113,1.071,1.111,0.947,1.259,1.449 +NM_006090,0.742,1.051,1.492,0.759,0.934,1.004,0.726,0.615,1.093,1.011,1.256,0.847,0.746,0.766,0.985,1.694,0.898,1.076,1.414,1.016,0.606,1.032,1.172,1.175,0.688,0.983,1.588,0.897,0.555,1.533,1.023,1.069,2.292,1.02,0.476,0.609,1.302,0.963,1.295,1.102,1.094,1.237,0.809,0.862,0.916,0.987,1.123,0.855,1.317,0.863,0.989,0.86,0.799,1.22 +NM_006092,0.951,1.017,1.018,0.909,0.899,1.0,1.013,0.788,0.953,0.969,0.983,1.038,1.012,0.9,0.902,0.938,1.026,0.841,1.079,0.934,0.919,1.064,0.964,1.144,0.858,1.0,1.041,0.939,0.682,1.001,0.945,1.562,1.228,0.933,0.832,1.008,0.95,1.052,0.95,1.457,1.136,0.993,0.953,1.28,0.84,0.886,0.91,0.921,0.892,0.887,0.922,1.037,0.942,1.238 +NM_006093,0.985,0.836,0.916,1.034,0.985,0.971,0.917,0.918,0.945,0.957,1.08,1.113,0.947,1.058,0.88,0.989,1.034,1.102,0.887,1.094,1.124,0.835,0.96,1.019,1.068,0.912,0.945,1.042,1.028,0.973,0.962,0.876,0.888,1.048,1.099,0.937,1.01,0.979,0.94,0.943,1.119,0.894,1.192,1.02,1.001,1.16,0.882,0.897,1.077,0.998,1.024,0.952,1.001,1.08 +NM_006094,0.967,0.988,0.909,0.939,0.996,0.962,0.876,0.912,0.92,1.017,0.964,0.86,1.002,0.964,0.982,1.118,1.01,1.145,1.121,1.08,1.173,1.065,1.007,0.966,0.995,0.895,0.929,1.048,0.783,0.929,0.973,0.95,1.133,0.974,0.933,1.042,0.957,1.056,0.916,0.947,1.149,0.998,1.068,0.995,1.11,1.014,1.148,1.049,0.951,0.977,1.02,1.091,0.928,0.9 +NM_006095,1.017,1.079,0.862,1.063,0.907,1.038,1.104,1.074,1.069,0.901,1.124,1.082,0.991,0.99,1.008,1.057,0.848,0.931,0.927,1.009,0.937,0.98,0.994,0.961,0.96,0.925,1.024,0.985,1.237,1.053,1.005,1.068,1.136,1.039,1.023,1.051,0.983,0.91,0.986,1.032,0.995,1.055,1.259,0.853,0.872,1.11,0.948,0.941,1.028,0.98,0.963,1.03,0.841,1.053 +NM_006096,0.67,0.755,2.041,0.566,1.009,0.907,0.568,0.543,1.255,1.574,0.789,0.831,0.381,0.795,1.043,1.345,1.007,0.999,1.86,0.941,0.833,1.268,0.852,1.02,0.684,1.051,1.357,1.044,0.711,1.338,1.281,0.764,0.746,1.195,0.303,0.363,0.987,1.359,0.659,1.599,1.521,0.995,0.64,0.373,1.314,1.074,1.083,0.816,0.954,1.16,0.938,0.826,1.932,0.48 +NM_006097,0.787,1.159,0.801,1.126,0.931,0.975,1.044,0.925,0.795,0.848,0.958,0.982,0.924,0.837,0.99,1.127,0.822,0.945,0.862,0.837,1.968,0.932,1.281,0.826,1.254,0.942,0.867,1.58,0.805,1.07,0.79,3.026,1.585,1.827,0.914,1.063,0.877,1.01,1.652,1.094,2.341,1.607,1.074,1.076,0.894,0.902,0.795,0.817,0.822,0.881,1.039,0.945,0.934,1.05 +NM_006098,0.978,0.713,1.285,0.89,0.962,0.898,0.357,0.494,1.29,1.023,1.333,0.911,1.053,0.701,0.836,1.212,0.805,1.015,1.723,0.683,0.561,0.812,1.172,1.225,0.581,1.268,1.414,0.923,0.221,1.018,1.026,1.159,2.072,1.336,0.281,0.595,1.034,1.273,1.199,0.509,1.163,1.297,0.604,0.843,1.109,0.803,0.945,0.908,0.931,1.071,0.881,0.86,1.237,1.371 +NM_006100,0.945,1.262,1.124,1.214,1.095,1.009,1.144,1.072,1.147,0.922,0.837,0.927,0.962,0.916,0.977,0.868,1.097,1.001,0.917,0.959,0.944,1.014,0.831,0.966,1.026,0.801,1.114,1.068,0.886,1.154,0.908,1.724,0.911,1.184,0.936,0.873,0.923,0.991,1.055,1.128,1.23,0.939,0.995,0.918,1.006,0.839,0.978,1.001,0.777,1.096,0.971,1.253,0.921,0.935 +NM_006101,0.74,1.574,1.269,0.921,0.908,0.989,0.817,0.561,1.061,1.046,0.876,0.727,0.854,0.724,1.038,1.513,0.76,0.944,1.319,0.71,0.788,0.934,1.607,1.126,0.71,0.742,2.255,0.708,0.629,1.282,0.994,1.436,2.512,0.979,0.535,1.466,1.064,0.891,1.482,0.86,1.129,0.845,0.678,1.503,0.851,1.027,1.041,0.742,1.375,0.756,1.275,1.026,0.829,1.579 +NM_006105,0.854,0.872,0.97,0.88,1.016,0.972,0.659,0.877,1.079,1.306,1.014,0.975,0.865,0.974,1.198,1.145,1.392,1.064,1.32,1.081,0.958,0.879,0.91,0.764,0.861,1.129,0.949,0.912,0.819,0.98,1.129,1.085,1.272,1.32,1.092,1.064,0.89,0.925,1.058,0.918,1.067,1.045,0.996,0.806,1.216,0.815,1.065,1.126,0.806,1.573,0.947,1.222,1.384,1.193 +NM_006106,0.908,1.164,1.786,0.642,1.36,0.783,0.489,0.717,1.725,1.519,0.822,0.873,0.715,0.961,1.23,1.169,1.08,1.001,1.662,1.027,0.678,0.819,0.901,1.536,0.466,0.803,1.829,1.362,0.312,1.052,1.564,1.519,3.411,1.151,0.442,0.88,0.782,1.096,0.862,1.283,1.569,1.016,0.432,0.989,1.491,0.693,1.115,0.857,0.803,1.126,1.039,0.823,1.267,1.238 +NM_006108,0.666,0.995,0.777,0.824,0.686,1.351,1.113,0.566,0.663,0.638,1.093,0.76,0.804,0.628,1.747,3.217,0.682,0.791,0.786,4.785,0.634,0.775,1.681,0.743,1.005,0.548,0.951,0.829,0.727,2.556,0.648,5.558,1.446,2.09,0.672,0.833,1.943,0.909,1.298,0.938,0.811,1.948,1.032,0.917,0.777,4.739,1.044,0.642,1.868,0.767,2.524,1.131,0.81,1.227 +NM_006109,1.112,0.714,0.967,0.747,1.264,0.835,0.523,0.941,1.597,1.009,0.881,1.071,0.817,0.934,1.227,1.184,0.774,0.891,1.479,0.642,0.769,1.114,1.007,1.148,0.577,1.675,0.977,1.252,0.444,0.808,1.489,0.812,2.131,0.943,3.003,1.511,0.919,1.246,1.333,0.676,1.077,0.933,0.529,1.89,1.078,0.688,1.045,1.686,0.848,0.816,0.901,0.759,0.989,1.469 +NM_006110,0.714,0.768,1.059,0.747,0.827,1.254,0.829,0.592,0.955,1.001,0.996,0.829,0.813,0.649,0.939,1.809,0.898,0.921,1.316,0.949,0.687,0.653,1.033,0.999,0.586,1.153,1.087,0.775,0.528,1.171,1.036,1.517,2.419,1.43,0.951,0.939,0.812,0.746,1.376,1.069,0.928,1.064,0.632,1.635,1.245,0.777,1.095,0.925,0.829,1.103,0.857,0.676,1.23,1.874 +NM_006111,0.697,0.882,0.836,0.902,0.886,2.042,0.72,0.444,0.822,0.701,2.056,0.692,0.73,0.515,1.639,6.402,0.365,1.377,0.911,1.576,0.705,0.697,3.55,0.508,0.452,0.545,0.413,0.366,0.492,1.651,0.608,1.272,2.214,2.12,0.285,1.715,2.716,1.108,2.387,1.293,0.414,3.247,1.776,2.999,0.705,1.738,1.566,0.713,3.686,0.433,2.103,0.791,0.765,1.535 +NM_006113,1.216,0.512,3.842,0.801,1.882,0.441,0.431,1.543,2.98,0.825,0.761,1.904,1.282,1.931,2.405,2.475,1.483,0.893,3.015,1.318,0.869,1.102,0.679,2.445,0.609,1.295,2.28,2.374,0.318,0.462,2.434,0.411,1.162,0.507,0.396,0.425,0.743,2.019,0.43,0.862,2.245,0.478,0.475,0.427,1.107,1.397,1.263,0.923,0.973,1.383,0.694,0.503,1.201,2.339 +NM_006114,0.874,0.723,0.736,0.838,0.687,0.895,0.42,0.526,1.048,1.101,0.692,1.041,0.958,0.705,0.881,1.688,1.077,0.805,1.273,0.573,0.993,1.135,1.403,1.593,0.777,1.263,1.216,0.572,0.501,0.718,0.88,0.84,3.826,0.89,0.265,1.058,0.885,0.806,2.839,1.1,0.988,0.862,0.555,2.181,1.075,0.863,1.083,1.083,1.588,1.072,0.713,1.004,1.026,2.533 +NM_006115,1.026,1.044,0.828,1.114,1.042,1.004,1.002,0.922,1.108,0.765,1.154,0.939,0.968,1.246,0.991,1.059,0.857,0.931,1.113,0.891,0.952,0.959,0.929,0.907,0.964,1.002,0.968,1.029,1.255,1.04,0.984,1.364,1.644,1.123,1.111,0.872,0.98,1.057,1.525,1.071,1.086,1.041,0.833,0.818,1.215,0.907,0.95,0.867,0.822,1.068,0.826,1.005,1.097,1.723 +NM_006116,0.892,1.035,1.003,0.968,0.821,0.953,0.963,0.761,1.042,0.921,1.01,0.913,0.824,0.807,0.872,1.217,0.861,0.947,1.258,0.949,0.906,0.993,1.02,0.824,1.011,1.017,0.836,0.828,0.952,1.109,0.826,0.938,1.435,1.332,0.699,1.062,1.093,1.03,1.192,0.815,0.882,1.11,0.863,0.944,0.952,0.867,0.88,1.006,0.908,0.916,1.019,0.872,0.899,1.962 +NM_006117,0.69,1.602,0.938,0.639,0.815,2.083,0.627,0.488,1.085,0.896,1.699,0.739,0.747,0.647,1.169,2.448,0.636,0.92,1.172,1.634,0.621,0.989,1.881,0.811,1.217,0.69,1.208,0.782,0.383,1.279,0.926,1.158,1.278,1.54,0.264,0.657,2.003,1.192,0.942,0.412,0.933,1.591,1.135,0.825,0.763,1.738,0.739,0.663,0.881,0.627,2.108,0.777,0.668,1.767 +NM_006118,0.74,0.942,1.088,0.886,0.801,1.161,0.745,0.585,1.0,1.047,1.181,1.386,0.787,0.572,0.775,1.352,0.826,1.195,1.335,0.935,0.599,0.71,1.227,1.403,0.887,0.863,0.995,0.877,0.455,1.115,0.829,1.923,1.926,1.486,0.127,1.833,1.196,0.803,1.37,0.946,1.108,1.184,0.662,1.803,1.174,0.837,1.196,0.708,0.945,0.79,1.049,1.221,1.193,1.824 +NM_006120,0.452,3.979,0.885,0.714,0.44,1.492,2.296,0.247,0.676,0.428,0.938,0.348,0.446,0.314,0.746,0.623,0.613,1.253,0.322,1.398,0.295,0.356,1.336,0.715,0.838,0.464,1.159,0.489,0.537,1.894,0.356,4.059,0.483,1.834,0.152,0.712,2.096,0.412,2.752,0.629,0.676,3.955,1.021,1.73,0.862,1.059,0.536,0.271,1.932,0.473,1.699,2.656,1.576,2.858 +NM_006121,12.49,0.862,11.24,1.296,59.53,0.765,0.776,1.333,3.683,40.56,0.825,26.57,1.118,5.054,3.862,1.786,2.385,4.068,22.17,0.737,6.875,2.368,0.736,4.837,0.795,1.559,3.16,5.897,0.607,0.683,7.42,0.626,0.947,0.766,0.983,0.795,0.879,18.27,0.937,0.794,1.63,0.959,0.802,0.672,8.434,0.838,1.341,7.152,0.743,22.52,1.092,5.707,4.223,0.891 +NM_006122,0.778,1.463,0.868,0.97,0.902,0.998,0.885,0.794,1.095,0.998,1.001,0.805,0.795,0.853,0.989,0.985,0.891,0.877,0.922,0.947,0.872,0.942,2.019,0.991,1.032,0.845,0.964,0.872,0.89,1.255,0.98,1.668,1.318,1.435,0.75,1.046,1.006,1.011,1.469,1.202,0.835,1.148,0.92,1.036,0.902,0.847,0.978,0.854,0.94,0.855,0.985,1.078,0.933,1.53 +NM_006123,2.276,1.678,3.1879999999999997,1.516,2.786,2.2110000000000003,1.305,2.749,3.199,1.806,1.892,2.798,2.5540000000000003,2.383,2.548,2.7430000000000003,2.775,1.94,2.622,1.584,1.294,2.7199999999999998,1.8650000000000002,2.944,1.276,2.15,2.896,2.873,0.871,2.055,3.733,2.428,2.537,1.903,3.5490000000000004,1.3319999999999999,1.766,3.725,2.367,2.097,2.818,1.914,1.304,1.916,2.5060000000000002,1.991,3.284,2.806,1.895,2.1550000000000002,1.9929999999999999,1.664,1.739,1.842 +NM_006129,0.702,0.794,1.083,0.808,1.142,0.942,0.63,0.688,1.085,1.24,0.905,0.813,0.705,0.753,1.101,0.975,0.849,0.995,0.818,1.509,0.711,0.858,1.209,1.004,0.631,1.002,0.936,0.97,0.632,0.841,1.021,3.557,1.364,0.763,0.759,0.948,0.784,0.998,1.328,1.646,1.095,0.878,0.704,1.227,1.061,1.177,1.207,1.081,0.887,0.804,1.199,1.152,0.743,1.122 +NM_006133,0.979,0.724,0.982,0.877,0.911,1.019,0.568,0.589,1.494,0.876,0.912,0.629,0.681,1.18,1.24,1.078,0.804,1.025,0.978,1.268,0.587,1.175,1.526,1.096,0.602,1.351,0.669,1.397,0.52,1.366,1.24,1.523,0.852,1.188,0.479,1.444,0.796,0.932,1.022,1.551,1.06,0.995,0.779,1.113,0.854,1.161,1.082,0.957,0.961,0.584,1.011,0.667,0.598,1.106 +NM_006134,0.626,1.435,1.048,0.681,0.905,1.274,0.978,1.007,1.081,0.972,0.82,0.866,0.879,0.664,1.483,2.327,0.872,0.995,0.846,1.285,0.603,1.018,1.34,1.395,0.711,0.649,1.17,1.012,0.621,1.336,1.002,1.374,2.783,1.419,0.593,0.641,1.341,0.922,1.586,0.691,1.057,1.445,0.871,0.785,0.774,1.369,1.113,0.77,1.049,0.786,1.565,0.762,0.642,1.702 +NM_006135,0.571,1.699,5.28,1.713,3.455,2.039,0.844,1.785,0.875,0.622,2.302,1.17,1.43,0.516,4.049,2.244,4.53,4.342,2.862,0.851,0.333,1.601,0.647,5.988,0.434,0.365,1.776,0.689,0.577,5.137,1.621,0.823,1.786,3.423,0.441,0.348,3.996,7.502,1.85,0.727,6.017,0.663,0.513,1.238,0.972,0.79,0.95,1.097,1.25,0.783,4.108,0.546,0.295,5.092 +NM_006136,0.68,1.091,1.159,0.803,0.992,1.485,0.805,0.672,1.094,0.921,1.29,0.565,0.709,0.743,1.29,2.98,0.85,1.191,0.739,1.088,0.562,0.623,1.396,0.884,0.651,0.597,1.185,0.796,1.072,1.497,1.141,1.033,1.911,1.331,0.601,0.476,1.424,0.89,1.395,0.744,1.165,1.061,0.683,0.675,0.861,1.32,1.453,0.607,1.44,0.748,1.271,0.883,0.76,1.417 +NM_006137,1.07,0.967,0.978,1.026,0.971,0.931,0.937,0.956,0.926,1.03,0.996,0.914,1.005,0.954,0.964,0.955,1.022,1.002,1.061,0.869,0.998,0.977,0.994,0.958,1.155,0.932,1.028,0.972,0.786,1.001,0.922,1.002,1.016,0.981,1.025,0.935,0.943,0.779,1.459,1.447,0.944,1.058,1.038,1.186,1.117,0.828,0.794,0.988,1.035,1.004,0.96,0.961,1.082,1.68 +NM_006138,1.243,0.962,1.165,1.088,1.071,1.029,1.049,1.073,0.859,1.014,1.123,0.895,0.863,0.976,0.898,1.244,0.919,0.97,1.011,0.88,0.985,1.002,1.222,0.816,0.995,0.969,0.816,0.965,1.431,1.081,1.093,1.243,1.119,1.157,0.953,1.081,1.118,0.994,1.036,1.011,0.992,0.983,0.883,1.009,1.044,1.04,0.947,0.956,1.076,0.976,1.013,0.909,1.052,1.11 +NM_006141,0.72,1.085,1.338,0.791,0.955,1.085,0.773,0.481,1.101,1.013,0.89,0.516,0.594,0.601,1.012,1.172,0.905,1.001,1.096,1.419,0.618,0.745,1.544,0.971,0.704,0.681,0.841,0.713,0.388,1.225,1.039,1.56,1.755,1.303,0.429,0.726,0.835,0.8,1.76,0.924,1.098,1.384,0.743,1.218,1.158,0.971,0.879,0.492,0.969,0.809,1.165,0.82,0.806,2.01 +NM_006142,3.397,0.232,3.514,0.997,2.88,0.414,0.216,2.291,3.797,5.678,0.27,3.763,2.355,1.583,1.564,1.829,2.719,1.707,8.098,0.241,7.416,3.936,0.415,4.792,0.18,4.103,3.099,2.374,0.149,0.364,3.802,0.177,3.471,0.259,0.171,0.723,0.408,2.722,1.135,0.215,4.305,0.206,0.532,0.488,4.314,0.402,2.413,3.939,0.451,4.851,0.715,1.097,5.85,0.963 +NM_006143,1.017,0.977,1.003,0.973,1.015,1.082,1.022,1.08,1.014,0.933,0.92,0.947,0.808,1.02,1.068,1.158,1.026,0.991,0.896,1.007,1.088,0.943,1.02,0.993,1.023,1.016,1.097,0.927,1.134,0.959,0.93,0.983,1.276,0.954,0.986,0.879,1.065,1.014,1.041,1.003,0.837,1.057,1.345,0.98,1.041,0.945,0.98,0.993,0.895,1.028,1.041,1.068,0.996,1.008 +NM_006144,0.629,1.209,1.663,0.829,0.705,1.629,1.496,0.61,0.747,0.79,0.831,0.643,0.72,0.858,0.721,0.676,1.068,1.487,0.826,1.167,0.718,0.682,1.094,0.799,1.448,0.519,1.747,1.018,0.452,0.987,0.603,0.972,1.028,1.761,0.523,0.492,1.42,0.62,1.714,0.917,1.219,2.832,1.277,0.682,0.917,0.987,1.502,0.7,1.445,0.965,1.288,0.671,1.528,5.436 +NM_006145,1.624,0.642,2.362,0.856,1.93,0.594,0.307,1.67,2.438,2.159,0.518,1.357,1.296,1.49,1.129,1.143,2.236,1.245,2.816,0.543,1.391,1.894,0.749,1.873,0.359,1.872,1.742,1.659,0.298,0.696,2.806,0.737,1.558,0.772,2.146,0.459,0.603,2.606,0.95,0.629,2.628,0.704,0.379,0.856,1.689,0.991,1.439,2.123,0.552,1.862,0.849,0.854,1.588,0.804 +NM_006147,1.077,0.748,1.625,0.93,1.113,0.909,0.637,0.978,1.435,1.279,0.987,1.367,0.967,1.168,0.961,1.251,1.232,0.94,1.835,0.936,0.965,1.034,0.86,1.215,0.648,1.369,1.661,1.002,0.457,0.851,1.419,0.69,1.565,0.934,1.333,0.761,0.787,1.002,1.006,0.556,1.249,0.883,0.918,1.049,1.3,1.017,0.956,1.118,0.817,1.515,0.917,0.965,1.755,0.918 +NM_006148,0.278,1.368,0.576,0.861,0.392,1.353,0.961,0.187,0.427,0.438,1.296,0.245,0.275,0.322,0.822,1.654,0.465,1.215,0.485,1.591,0.203,0.283,1.261,0.375,0.913,0.363,0.598,0.389,0.807,1.508,0.484,1.447,1.329,1.592,0.309,0.994,1.581,0.389,1.967,0.886,0.479,1.435,1.093,1.597,0.409,1.442,0.982,0.362,1.303,0.384,1.488,0.85,0.39,0.869 +NM_006149,0.0304,1.188,0.025,1.385,0.0288,4.648,1.225,0.0297,0.0307,0.0314,4.227,0.0282,0.0291,0.0262,2.969,7.113,0.0303,1.241,0.026,3.25,0.0324,0.0299,5.118,0.0294,0.751,0.0313,0.0313,0.0251,1.224,2.658,0.0286,0.255,1.571,3.06,0.0322,1.505,4.106,0.0262,3.985,0.401,0.0269,3.466,2.113,1.689,0.0421,2.567,2.121,0.0279,3.996,0.0238,3.471,0.477,0.0475,0.921 +NM_006150,1.136,0.899,1.161,0.965,1.051,0.896,0.906,0.984,1.024,1.286,0.998,1.134,1.17,0.994,0.903,0.745,1.054,0.961,1.094,1.043,1.197,0.965,1.305,1.026,0.994,1.062,0.881,0.951,0.947,0.91,1.037,0.933,0.93,0.944,1.001,1.005,0.983,1.058,1.077,1.108,1.0,0.947,0.901,1.054,1.039,0.92,1.013,1.056,0.95,1.141,1.012,1.1,1.124,0.977 +NM_006151,0.984,1.048,0.892,0.852,0.937,1.022,1.114,0.976,1.027,0.921,1.037,1.146,0.966,0.964,0.9,0.956,1.079,0.907,1.136,0.971,1.091,0.981,0.944,1.049,0.942,0.937,1.037,1.054,1.06,1.049,0.991,1.052,0.83,0.967,0.994,0.963,1.123,0.971,1.062,1.084,1.047,1.066,1.12,0.938,1.135,0.837,0.905,0.991,1.04,1.001,1.078,0.873,0.894,0.934 +NM_006152,0.998,0.936,1.17,1.369,0.788,1.767,1.557,0.853,1.039,0.826,0.951,0.786,1.478,1.643,0.821,0.769,1.764,1.015,1.671,1.859,0.732,1.227,0.806,1.387,0.775,0.885,0.902,0.81,0.69,0.98,0.851,0.97,0.999,1.91,0.849,0.873,1.001,0.706,1.298,1.225,1.449,1.31,0.69,0.762,0.881,0.744,0.927,1.507,0.708,1.01,1.056,1.155,0.955,1.553 +NM_006153,1.203,0.665,2.174,0.712,1.746,1.076,0.523,1.16,1.871,1.195,0.838,1.53,1.278,0.908,1.06,0.971,1.264,1.441,1.994,0.902,0.522,1.355,0.653,1.923,0.417,1.04,2.458,1.813,0.371,0.916,1.76,1.176,2.173,0.958,0.841,0.412,0.792,1.202,1.037,0.514,1.677,0.76,0.336,0.86,1.579,0.784,1.061,1.09,0.636,1.334,0.881,1.032,1.07,1.156 +NM_006154,2.205,2.048,2.247,2.062,2.023,1.995,2.113,1.927,1.8679999999999999,2.206,2.1239999999999997,1.9689999999999999,1.9249999999999998,1.982,2.061,1.88,1.901,1.722,1.971,2.153,1.99,1.9700000000000002,2.089,1.8570000000000002,2.06,1.843,2.157,2.013,1.788,2.002,2.1950000000000003,2.127,2.024,2.162,1.9489999999999998,1.995,1.9220000000000002,1.839,2.035,2.208,2.044,1.927,2.0,1.899,2.338,2.008,2.356,1.819,2.05,2.08,1.987,2.045,2.121,2.069 +NM_006157,0.865,1.018,0.971,1.013,0.978,0.954,0.979,1.044,0.862,0.866,1.037,0.999,0.9,1.075,0.791,1.115,1.115,0.962,1.066,0.99,0.911,0.864,1.014,0.935,0.92,0.851,0.838,1.041,1.182,1.004,0.991,1.225,1.141,0.989,0.992,1.021,1.003,0.927,0.922,0.942,0.978,1.168,0.853,0.992,0.904,1.041,1.092,1.011,0.896,0.992,0.991,0.881,0.928,1.046 +NM_006158,1.261,0.88,0.954,0.874,1.423,1.019,0.943,0.918,0.989,1.009,0.843,1.081,0.97,1.272,1.115,0.982,1.045,0.944,1.141,0.949,0.911,1.07,1.185,1.168,0.92,1.049,1.004,1.031,0.74,0.933,1.656,1.025,1.077,1.002,1.074,0.896,0.823,1.083,0.838,0.923,1.064,0.949,0.915,0.947,1.574,0.96,1.052,1.081,0.949,1.258,1.041,0.911,1.04,1.117 +NM_006159,0.998,1.049,0.987,0.872,0.977,0.924,0.978,0.967,1.049,0.888,0.81,0.93,1.099,0.96,1.104,1.352,0.965,1.065,1.065,1.255,0.873,1.102,0.798,1.193,0.937,0.964,1.079,1.158,0.684,0.989,1.059,1.105,0.805,0.968,1.085,2.161,1.345,1.235,0.913,0.873,0.892,0.968,0.876,0.898,0.966,0.771,1.227,0.985,0.963,1.033,1.045,0.855,0.874,1.278 +NM_006160,0.943,1.035,1.093,1.074,0.964,1.141,0.989,1.072,1.047,1.061,1.03,0.946,1.0,1.105,0.866,0.972,0.946,1.023,1.012,1.016,0.961,0.846,0.973,0.957,0.916,1.029,1.019,0.929,0.99,0.966,1.05,0.966,1.018,0.954,0.972,1.038,0.946,0.937,0.88,0.93,1.012,1.049,1.24,0.947,1.119,1.174,1.076,1.039,1.047,1.112,1.003,1.0,0.931,0.986 +NM_006161,1.162,0.971,0.979,1.186,1.012,1.015,0.908,0.957,1.075,0.945,1.124,1.104,1.031,0.987,0.869,1.02,0.848,0.933,0.959,1.138,0.94,0.888,1.042,1.001,1.106,0.946,0.997,0.987,0.801,0.922,1.061,0.819,1.056,0.962,1.166,1.109,1.036,0.958,0.966,0.999,1.033,1.083,0.926,1.039,1.044,0.814,0.754,0.973,0.901,1.166,1.107,0.948,1.11,1.144 +NM_006163,0.993,1.035,0.959,1.599,0.962,0.953,0.998,0.996,0.969,0.879,0.931,0.858,0.989,0.902,0.99,0.961,0.955,0.976,0.879,1.057,1.097,0.865,0.97,1.041,1.015,0.967,1.086,0.873,1.024,0.909,0.947,1.363,0.951,1.107,1.015,1.032,1.047,0.867,1.858,2.587,0.733,1.113,1.045,1.146,0.967,0.925,1.02,0.896,0.841,1.03,0.994,1.858,0.86,1.076 +NM_006164,1.069,1.13,2.469,0.681,1.749,1.056,0.596,0.76,2.489,1.258,0.558,1.079,1.064,1.234,1.384,1.214,1.239,1.108,2.643,0.581,0.824,1.718,0.699,1.765,0.706,0.922,1.975,1.541,0.567,0.874,2.36,0.698,1.845,1.899,0.359,0.24,0.839,1.813,0.707,0.527,1.747,0.673,0.327,0.636,1.475,0.578,0.862,1.057,0.604,1.283,0.71,0.573,0.704,1.271 +NM_006165,0.945,0.777,1.112,0.782,1.178,1.157,1.115,0.934,1.008,1.136,1.013,0.909,0.999,1.203,0.806,0.931,0.996,0.839,1.072,1.099,1.063,1.153,0.963,0.916,1.071,0.95,0.892,0.983,1.373,1.161,0.997,1.156,1.158,0.907,0.983,0.985,1.017,0.977,0.966,0.993,1.012,1.072,1.02,1.145,1.009,0.892,0.912,1.129,1.312,0.947,0.915,1.129,1.09,1.179 +NM_006166,0.909,0.956,1.042,1.009,1.059,0.824,0.803,0.908,1.132,1.058,1.001,0.809,0.847,1.029,0.829,1.31,1.022,1.103,1.038,1.087,0.822,0.853,0.999,0.958,0.801,0.798,1.061,0.961,0.709,1.114,1.192,1.172,1.306,1.216,0.801,0.856,1.098,0.904,1.184,0.981,1.083,0.954,1.076,0.925,0.934,0.945,0.955,0.845,1.13,0.844,1.127,1.074,0.919,1.36 +NM_006167,0.854,1.073,0.901,0.91,0.888,0.921,0.944,0.885,0.823,0.921,1.009,0.997,1.166,0.854,0.766,0.955,0.873,0.808,0.876,1.202,0.845,0.913,1.065,1.047,1.045,0.938,1.045,0.879,0.507,0.855,0.911,1.265,1.401,0.993,0.833,1.077,0.959,0.816,1.272,1.287,0.832,12.02,1.027,0.839,0.883,0.897,1.002,0.779,0.953,0.781,1.123,1.162,0.96,1.626 +NM_006168,1.128,0.994,0.909,1.04,0.995,0.986,0.965,1.054,0.959,0.972,0.996,1.084,0.975,0.998,0.879,0.971,1.125,1.187,1.175,1.166,0.851,1.014,0.927,0.864,0.953,0.933,0.997,1.01,0.889,0.97,1.179,1.053,0.788,0.899,1.023,1.125,1.027,0.982,1.004,0.927,1.034,0.892,0.882,0.95,1.021,1.027,1.06,1.093,1.006,1.134,1.01,1.077,1.176,0.901 +NM_006169,0.692,1.285,0.705,1.263,0.716,1.117,1.104,0.65,0.737,0.643,0.835,0.672,0.642,0.679,0.757,1.212,0.704,0.749,0.687,0.894,0.801,0.666,1.79,0.856,0.967,0.639,0.784,0.66,0.602,1.297,0.632,29.65,8.958,2.433,0.693,1.003,0.948,0.715,4.817,18.5,0.943,1.716,1.499,0.885,0.819,1.122,1.131,0.8,1.07,0.822,1.182,6.235,0.911,2.75 +NM_006172,0.925,0.931,0.997,1.112,1.007,0.975,1.111,1.011,1.079,0.988,1.024,0.982,1.025,1.053,0.995,0.967,0.952,1.002,0.884,1.068,1.016,0.973,0.891,1.051,1.032,1.06,1.174,0.953,1.15,1.097,1.26,0.959,0.941,0.974,1.007,1.004,0.965,1.245,1.14,0.926,0.974,0.945,1.029,0.989,1.125,1.005,0.976,1.01,0.966,1.081,0.961,1.014,0.904,0.998 +NM_006174,0.872,0.959,1.033,1.099,0.896,0.943,1.007,0.887,0.963,0.854,1.041,0.996,1.164,0.963,0.825,1.074,0.998,1.041,1.017,0.933,0.931,1.067,1.042,0.941,0.953,0.89,0.957,1.115,0.98,1.11,1.009,0.932,1.026,1.02,1.081,0.987,1.114,1.021,1.014,1.105,0.991,1.053,1.094,0.995,1.002,1.025,0.971,1.091,1.035,1.02,0.924,0.921,0.948,0.962 +NM_006175,0.936,1.024,0.876,0.874,0.919,1.061,0.883,0.976,1.016,1.134,0.953,1.017,0.94,0.915,0.957,1.233,1.026,0.893,1.157,0.947,0.957,1.03,1.064,1.08,1.01,1.084,0.958,1.032,1.054,1.048,0.928,0.946,0.934,1.083,1.064,0.981,1.096,0.995,0.988,1.083,1.099,0.843,0.995,1.035,1.007,1.038,1.035,0.935,0.995,1.107,1.075,0.923,1.056,1.13 +NM_006176,0.992,0.997,0.851,1.551,0.934,0.982,0.96,0.905,0.953,0.918,0.925,1.037,0.943,0.851,0.864,1.052,0.932,0.981,0.893,0.837,0.931,0.851,0.97,1.04,1.07,0.916,1.052,1.066,0.884,1.004,1.073,1.521,1.258,0.996,0.979,1.126,0.906,0.917,1.405,1.323,0.872,0.969,0.797,1.258,1.082,0.896,1.063,1.032,1.041,1.092,1.051,1.197,1.016,1.081 +NM_006178,0.663,1.033,0.991,0.637,0.925,1.198,0.551,0.697,1.113,0.745,1.245,0.685,0.461,0.662,0.821,1.723,1.092,0.902,1.05,1.144,0.419,0.761,1.267,0.848,0.621,0.791,1.242,0.889,0.472,1.376,1.004,1.302,1.099,1.225,0.802,0.996,1.134,0.915,1.288,0.578,1.062,1.056,0.728,1.15,0.805,1.209,1.158,0.652,1.003,0.715,1.403,0.624,0.944,1.116 +NM_006179,1.051,0.931,1.049,0.995,1.013,0.962,0.957,0.914,1.132,0.923,0.979,1.074,1.067,0.804,1.104,0.898,1.078,0.984,1.028,0.904,1.022,1.101,1.009,1.16,1.027,0.998,0.908,1.023,0.797,0.934,1.247,1.053,1.093,1.017,0.979,1.072,0.875,0.9,0.935,1.147,1.002,0.912,0.977,1.008,0.921,1.008,1.202,1.091,1.171,0.986,1.073,0.984,1.053,0.816 +NM_006180,1.119,0.945,0.952,0.899,1.011,0.941,0.937,1.0,1.09,0.859,0.976,0.901,0.922,1.322,0.778,1.005,0.933,1.014,1.047,0.986,1.137,0.914,0.818,1.064,1.098,1.028,1.052,0.951,1.023,1.044,0.974,1.018,0.922,1.013,0.998,0.928,0.986,0.952,1.076,0.954,0.893,0.997,0.96,1.025,0.911,1.0,0.931,1.097,0.938,0.87,1.07,0.843,1.042,0.978 +NM_006182,0.738,1.16,0.962,1.052,0.765,1.071,1.196,0.768,0.673,0.795,1.426,0.803,0.815,0.876,0.857,1.08,0.895,0.781,0.866,0.986,0.924,0.795,1.582,0.782,1.102,0.708,0.667,0.926,0.924,1.4,0.783,4.632,1.16,2.636,0.895,1.165,1.004,1.053,1.374,2.31,1.053,2.504,1.121,0.845,0.887,0.93,0.796,0.777,0.821,1.074,1.234,1.921,0.927,1.042 +NM_006183,1.037,0.881,0.92,0.978,1.122,1.058,0.913,0.951,1.272,1.014,1.0,0.887,1.015,1.018,1.169,1.408,1.026,2.512,1.022,1.701,0.974,2.419,0.879,0.959,1.028,1.069,0.919,1.173,0.825,0.908,1.317,0.946,0.994,1.032,0.963,3.854,1.121,1.959,0.972,0.938,0.941,0.89,0.931,0.836,2.079,1.008,0.984,1.126,0.931,0.888,0.924,0.841,1.044,1.028 +NM_006184,0.812,0.965,1.081,0.852,0.792,1.273,1.09,0.755,0.804,0.833,1.32,0.733,0.906,0.666,0.918,1.613,0.877,0.931,1.214,1.129,0.885,0.97,1.301,0.945,1.041,0.964,0.959,0.825,0.955,1.294,1.022,1.209,2.513,1.512,0.808,0.715,0.984,0.773,1.629,1.077,0.949,1.227,0.805,1.321,1.036,0.96,0.874,1.005,0.974,1.182,1.063,0.836,0.972,1.233 +NM_006185,1.067,1.091,1.064,0.931,1.002,0.956,0.93,0.986,1.026,1.044,1.013,0.879,0.846,0.994,0.973,0.949,1.262,1.033,1.055,0.852,0.989,1.092,0.893,1.076,0.938,1.235,1.088,0.994,1.0,1.086,0.825,1.203,1.079,1.055,1.076,0.855,0.921,1.516,1.512,0.919,1.032,1.12,0.891,1.174,0.964,0.912,0.933,1.213,0.967,1.118,0.91,0.862,0.964,1.023 +NM_006188,0.981,0.908,0.977,0.9,1.023,0.889,0.881,1.015,0.848,1.045,1.088,1.111,0.968,1.213,0.8,0.99,1.085,1.121,0.911,1.237,1.041,0.954,0.961,1.149,0.979,1.043,0.976,0.922,1.47,0.901,1.102,1.03,1.038,1.089,1.017,1.084,1.065,1.03,0.957,0.905,1.045,0.924,0.963,0.817,1.002,1.042,1.057,1.03,1.081,1.03,1.072,1.006,1.038,1.006 +NM_006189,1.056,0.973,0.937,0.976,0.887,1.023,1.166,1.31,1.051,1.053,1.005,0.975,1.124,1.017,1.0,0.933,1.068,0.997,0.935,0.97,0.971,1.001,1.221,0.893,0.986,0.931,1.214,0.976,1.128,0.972,0.933,0.924,0.931,1.111,0.935,0.958,1.103,0.954,0.989,0.941,1.001,1.188,1.366,1.136,0.91,1.226,1.023,0.954,0.994,0.93,1.019,1.143,0.927,1.088 +NM_006190,0.691,1.138,1.109,0.784,0.89,1.11,0.997,0.624,0.95,0.77,1.208,0.893,0.629,0.678,1.097,1.541,0.74,0.774,0.863,1.15,0.584,0.829,1.669,0.875,0.802,0.686,1.179,0.739,0.89,1.169,0.698,1.195,1.231,1.209,0.387,1.308,1.117,0.673,1.041,1.294,0.831,1.091,0.898,1.224,0.768,1.151,0.949,0.651,1.182,0.564,1.101,0.947,0.916,2.365 +NM_006191,0.86,0.576,0.957,0.62,0.794,1.009,0.446,0.588,1.487,1.354,0.965,1.24,0.559,0.755,0.999,1.627,0.774,0.806,1.93,0.769,0.689,0.856,1.184,1.805,0.431,0.913,1.351,1.001,0.382,0.853,1.098,0.828,2.318,1.056,0.123,1.773,0.899,0.917,1.559,0.94,1.285,0.821,0.629,1.896,1.174,0.748,1.226,0.732,1.129,0.82,1.016,1.022,1.546,1.675 +NM_006192,0.996,1.016,1.012,1.058,1.1,0.976,0.897,0.966,1.0,0.929,0.917,0.958,0.955,0.825,0.752,0.974,1.024,0.916,0.91,1.091,0.956,1.039,1.024,0.946,1.001,0.954,1.096,1.002,1.168,0.957,0.961,1.045,0.973,0.962,1.058,0.967,1.101,0.847,1.156,1.034,1.065,0.92,0.861,1.026,0.989,0.996,1.005,1.0,1.146,1.058,1.03,1.212,1.066,0.993 +NM_006193,0.981,0.876,0.921,0.974,1.02,0.928,0.856,0.923,1.054,1.001,1.05,0.938,1.015,1.028,1.127,1.041,1.024,0.983,0.928,0.981,1.034,0.995,1.191,0.998,1.022,0.89,1.098,1.041,0.922,0.971,0.886,0.847,1.074,0.879,1.126,0.978,0.963,0.982,1.122,0.871,1.006,1.014,1.203,1.093,0.869,1.143,0.999,1.012,1.077,0.924,1.027,1.082,0.857,0.99 +NM_006194,2.575,0.714,1.78,1.342,2.148,0.842,0.759,2.841,2.512,1.48,0.968,1.538,1.716,1.342,1.587,1.035,1.736,1.246,1.943,1.055,1.768,1.711,0.84,1.319,0.771,2.679,1.377,2.587,0.453,0.775,2.502,0.761,1.132,0.849,6.866,0.922,0.888,2.117,0.863,0.852,1.986,0.757,0.765,0.997,1.952,0.84,1.247,2.316,0.919,1.663,1.014,0.842,1.377,0.839 +NM_006195,0.908,0.91,1.247,0.913,1.092,0.906,0.797,0.861,1.429,0.987,1.006,1.004,0.907,0.931,1.033,1.15,0.963,0.786,1.238,0.878,0.853,1.067,1.016,1.239,0.946,0.894,1.186,1.441,0.827,0.942,1.272,2.685,1.645,1.503,0.756,1.038,0.92,1.111,0.957,0.813,1.237,1.072,0.765,1.439,1.16,0.988,0.971,0.904,0.793,1.062,0.931,0.992,1.036,1.651 +NM_006196,0.777,0.798,1.306,0.642,1.316,0.97,0.51,0.786,1.709,1.001,0.774,0.785,0.582,0.613,0.874,1.321,1.061,0.995,1.179,0.775,0.632,0.934,1.346,1.095,0.418,1.167,1.212,1.427,0.287,0.991,1.682,1.135,1.693,1.147,1.497,0.699,1.016,1.447,1.187,0.839,1.237,1.102,0.558,0.951,1.062,0.946,1.077,0.831,1.088,0.767,1.051,0.666,1.063,1.113 +NM_006197,0.57,0.854,1.336,0.497,1.1,1.138,0.558,0.56,1.355,1.067,1.409,0.958,0.478,0.768,1.01,1.243,0.835,0.756,1.362,1.261,0.634,1.042,1.274,1.042,0.446,0.679,1.218,1.044,0.431,1.142,1.097,1.273,1.696,1.2,0.444,0.632,1.004,1.315,0.813,0.472,1.256,1.27,0.646,0.601,0.823,1.401,0.884,0.669,1.301,0.702,1.152,0.693,0.939,2.704 +NM_006198,1.001,0.926,0.929,0.964,0.958,0.964,1.192,1.057,0.927,0.805,0.991,0.928,1.011,1.023,1.085,1.137,0.938,1.018,0.956,0.935,2.365,1.045,1.247,0.916,0.993,0.914,1.003,3.076,0.971,1.037,0.994,1.069,3.534,1.433,0.946,1.139,1.079,1.601,0.911,0.987,7.592,1.959,1.066,1.043,0.909,0.998,0.862,0.949,0.952,0.972,1.009,0.962,1.159,0.868 +NM_006200,1.615,1.38,1.483,0.606,2.489,0.605,0.51,1.682,2.617,0.975,0.719,1.297,0.983,1.017,1.637,1.362,0.793,0.97,0.921,0.677,0.681,1.915,0.812,1.18,0.45,1.293,0.801,2.26,0.365,0.933,2.375,1.71,1.152,0.723,4.258,0.7,0.936,2.152,0.979,0.729,1.821,0.876,0.816,1.991,1.609,0.73,1.643,2.075,1.407,1.186,1.03,2.154,1.123,1.292 +NM_006202,0.795,1.78,0.825,0.95,0.676,1.303,1.065,0.732,0.809,0.723,0.847,0.777,0.755,0.908,0.74,0.923,0.738,1.021,0.703,0.97,0.734,0.805,1.181,0.972,2.134,0.813,0.935,0.83,1.115,1.669,0.783,2.583,1.032,2.14,0.694,0.974,0.999,0.834,2.166,1.804,0.825,1.558,0.99,1.462,0.773,1.038,0.802,0.822,0.756,0.78,0.892,1.203,0.844,1.744 +NM_006203,0.879,1.027,0.919,0.922,1.104,1.104,0.945,0.981,1.056,1.076,0.999,0.967,0.99,0.904,1.009,0.961,0.917,1.086,0.984,0.938,1.015,0.914,0.981,1.034,1.024,1.017,1.033,0.973,1.084,1.015,0.871,0.971,0.931,1.053,1.079,1.06,1.012,0.99,1.003,1.047,1.101,0.929,1.014,0.859,1.045,1.095,0.951,0.979,0.86,0.955,0.925,0.949,1.02,1.341 +NM_006204,1.019,0.97,1.032,1.01,1.2,1.107,0.894,1.247,1.062,1.014,1.074,0.978,0.935,0.945,1.122,0.988,1.08,1.114,1.142,0.949,0.915,0.993,1.077,0.94,1.012,0.914,1.034,1.091,0.807,0.972,0.994,0.976,1.085,0.978,1.063,1.046,0.989,0.999,0.965,0.956,0.952,0.968,0.98,1.166,1.194,0.963,1.071,1.079,0.968,0.994,1.063,1.092,0.984,0.994 +NM_006205,1.02,0.959,1.003,0.954,1.052,1.039,1.208,0.951,0.874,0.991,1.225,1.067,1.104,0.875,0.852,0.988,0.974,0.981,1.029,0.923,1.121,1.165,0.926,1.102,0.993,1.036,0.965,0.984,1.163,1.0,0.989,0.958,1.137,0.967,1.143,1.277,0.861,0.884,0.867,1.134,0.98,1.113,0.798,1.016,0.932,1.115,1.137,0.949,1.074,1.113,0.923,0.974,1.14,0.961 +NM_006206,0.709,1.281,0.833,0.883,0.876,1.053,1.225,0.813,0.8,0.755,1.078,0.746,0.688,1.04,1.074,0.959,0.726,0.843,0.896,0.955,0.732,0.827,1.389,0.71,0.878,0.758,0.976,0.797,0.638,2.78,0.874,5.62,1.759,1.616,0.726,0.828,1.086,0.695,2.789,1.11,0.868,1.724,0.803,0.878,0.912,1.876,0.822,0.692,0.853,0.741,1.345,1.129,0.909,1.705 +NM_006207,0.992,0.886,0.96,0.885,0.905,1.018,1.024,0.898,0.996,0.924,1.134,0.869,0.86,0.763,0.712,0.877,0.956,0.915,1.08,1.104,0.816,0.902,1.094,1.001,0.964,0.977,1.074,1.04,0.638,1.07,1.015,2.703,1.067,1.062,0.999,0.969,1.041,0.903,0.97,1.054,0.802,1.102,0.895,1.297,0.846,1.147,0.931,0.972,0.962,0.956,1.132,1.114,1.061,1.4 +NM_006208,0.768,1.068,0.707,1.106,0.886,1.353,0.816,0.766,0.754,0.803,1.658,0.922,0.844,0.695,0.88,1.249,0.752,0.836,0.667,1.378,0.778,0.702,1.587,0.951,1.109,0.738,0.757,0.838,0.785,1.626,0.751,1.319,0.943,1.503,0.818,0.985,1.497,0.768,1.608,0.973,0.837,1.826,1.028,1.818,0.823,1.838,1.252,0.793,1.233,0.721,1.432,1.038,0.747,2.468 +NM_006209,0.588,1.446,0.712,0.688,0.645,0.717,1.07,0.562,0.707,0.736,1.009,0.536,0.512,0.529,1.116,1.952,0.724,0.783,0.631,1.966,0.684,0.652,1.596,0.674,0.851,0.682,0.905,0.648,0.417,2.402,0.561,1.219,0.688,2.041,0.502,0.759,2.392,1.054,1.978,0.673,0.731,1.662,1.164,0.821,0.637,1.118,0.995,0.583,1.104,0.66,1.863,0.935,0.947,1.282 +NM_006210,1.211,1.057,0.929,0.98,0.883,1.052,0.998,0.749,1.288,1.012,1.124,0.961,1.264,1.133,1.039,0.91,0.866,0.927,0.829,1.028,1.123,1.181,1.195,1.076,1.077,0.878,0.897,0.999,0.775,1.307,1.085,1.341,0.963,1.103,0.93,0.88,0.914,0.899,0.849,0.993,1.016,1.399,0.813,0.855,0.827,1.02,0.948,0.805,1.031,0.951,0.984,1.096,1.035,0.884 +NM_006211,1.126,1.046,0.909,0.81,0.941,1.02,1.126,1.007,0.955,1.088,1.087,0.991,0.926,1.023,0.996,1.007,0.944,1.133,1.01,0.826,1.184,1.026,0.898,0.929,0.979,0.975,0.906,0.792,1.125,1.017,1.012,1.0,2.068,1.1,0.954,1.054,0.968,0.926,1.04,0.94,0.951,1.047,0.899,4.232,1.011,1.088,1.132,1.074,1.161,1.139,1.055,1.155,0.814,1.669 +NM_006212,1.029,0.901,0.995,1.091,0.986,0.928,1.053,1.007,0.966,1.097,0.853,0.877,0.866,1.09,0.814,0.855,0.892,1.108,0.838,1.092,1.071,0.985,1.079,0.855,0.951,0.995,0.916,1.057,0.837,1.044,1.121,1.01,0.863,1.037,1.11,1.0,1.058,1.082,1.0,1.058,1.026,0.989,0.984,1.131,0.921,1.059,1.036,1.036,1.14,0.952,0.947,1.041,0.959,0.912 +NM_006213,1.103,1.045,0.978,1.058,1.049,0.943,1.067,0.876,1.005,1.007,1.001,1.091,0.848,0.979,0.882,0.984,1.079,0.958,0.918,0.982,0.999,0.97,0.944,1.075,1.054,1.028,0.927,0.86,1.357,1.042,1.076,1.022,0.909,0.904,1.066,0.879,0.986,1.024,0.875,1.111,0.944,1.01,0.766,0.871,0.973,0.94,0.96,1.167,1.066,0.981,1.144,0.938,0.859,0.953 +NM_006214,0.387,1.489,0.483,0.919,0.398,2.576,0.874,0.4,0.463,0.512,2.439,0.429,0.358,0.395,1.135,2.389,0.424,0.895,0.453,1.677,0.388,0.376,1.806,0.393,1.119,0.447,0.407,0.483,1.0,2.255,0.466,1.041,1.125,2.91,0.454,0.573,2.287,0.413,1.622,0.441,0.449,1.934,1.189,0.902,0.399,2.395,0.866,0.388,1.0,0.431,1.558,0.543,0.453,1.62 +NM_006216,0.894,0.902,1.151,0.884,0.892,0.873,0.806,0.696,1.462,1.057,0.758,0.822,1.167,1.003,1.608,1.351,0.981,0.976,0.872,0.915,1.046,0.804,0.886,1.235,0.867,0.845,1.884,0.873,0.68,0.956,1.238,3.468,2.215,1.39,0.796,0.877,1.151,1.547,1.206,3.04,1.185,1.013,0.795,0.717,0.997,0.933,2.302,0.915,0.857,0.878,1.156,1.122,2.034,0.968 +NM_006217,1.151,0.997,1.034,1.447,0.984,0.945,0.928,0.932,0.94,0.983,1.076,1.049,0.889,1.069,1.059,1.148,1.015,0.911,0.971,1.053,1.101,1.041,0.886,1.278,0.948,0.979,0.861,0.971,0.9,0.952,1.053,1.018,1.047,0.957,1.128,1.046,1.006,1.03,1.051,0.944,0.972,1.149,0.929,1.08,1.042,1.062,0.93,1.04,0.939,1.076,0.999,1.159,0.975,0.849 +NM_006218,0.927,1.144,1.418,0.919,1.047,1.142,0.921,0.961,1.27,1.146,0.885,0.883,0.902,0.759,0.934,1.379,1.06,1.105,1.059,0.982,0.913,0.951,0.917,1.054,0.759,0.75,1.505,1.133,0.753,1.089,1.117,1.34,1.506,1.073,0.72,0.83,0.923,1.003,1.009,0.853,1.039,1.066,0.762,0.918,1.16,0.928,1.059,0.838,0.953,0.854,0.9,0.97,0.984,1.369 +NM_006219,0.777,1.002,0.981,0.899,0.826,1.111,0.751,0.82,0.961,1.043,1.293,0.929,0.84,0.742,0.898,1.255,0.866,0.788,0.85,1.118,0.96,0.713,1.218,0.994,0.944,0.885,0.941,0.889,0.807,1.213,0.987,1.324,1.764,1.388,0.91,0.989,1.093,0.815,1.125,1.001,0.911,1.032,0.882,1.371,0.903,1.035,0.771,0.807,1.201,0.869,1.204,1.129,0.975,1.393 +NM_006222,1.027,0.969,1.001,1.13,1.005,1.117,0.79,0.9,1.164,1.007,0.77,1.054,0.979,1.053,1.032,1.113,0.938,0.955,0.927,0.876,1.001,0.94,1.026,0.942,0.948,0.925,1.123,1.102,0.836,0.94,0.963,0.949,0.991,0.903,1.15,1.11,0.984,0.97,1.103,1.1,0.931,0.895,1.048,0.94,0.963,0.942,1.034,0.999,0.972,1.1,1.053,1.003,1.125,0.986 +NM_006223,0.929,1.177,0.994,0.948,1.134,1.17,0.989,0.911,0.887,0.973,0.889,1.126,1.075,1.049,0.908,1.398,0.933,0.996,0.883,0.965,1.025,0.932,1.073,0.907,0.955,0.929,0.915,0.988,1.256,1.09,1.111,0.997,0.858,1.196,0.846,1.0,0.936,0.902,1.055,0.959,0.955,1.041,1.016,1.065,1.037,0.984,0.887,0.969,0.921,0.872,1.112,0.94,1.054,1.234 +NM_006224,0.849,0.76,1.497,0.896,1.021,0.965,0.625,0.698,1.316,1.292,0.833,0.817,0.983,0.775,1.116,1.514,1.265,0.917,1.094,1.025,0.789,1.01,1.033,0.936,0.633,1.014,1.003,1.142,0.601,0.974,1.151,1.158,1.125,0.939,0.703,0.855,1.021,1.195,0.844,0.735,1.224,1.135,0.679,0.853,1.14,0.998,0.98,0.936,1.094,1.182,1.021,0.735,0.863,1.09 +NM_006225,1.821,0.824,1.664,0.959,1.674,0.853,0.585,1.734,2.309,2.065,0.612,1.556,1.285,1.284,1.35,1.418,1.0,1.543,3.074,0.877,1.054,1.671,0.653,1.806,0.61,3.214,1.417,1.31,0.592,0.717,2.148,0.593,1.256,0.996,1.984,0.524,0.618,2.34,0.869,0.437,1.326,0.81,0.437,0.614,1.964,0.56,1.402,3.012,0.404,1.628,0.985,0.988,1.996,1.267 +NM_006226,1.065,0.989,0.951,0.926,1.009,1.057,0.936,1.105,0.866,0.946,1.086,0.918,1.058,0.996,1.11,0.909,0.952,1.042,1.272,0.842,1.037,1.07,0.968,0.845,1.125,0.954,0.951,0.942,1.238,0.964,0.971,1.17,1.05,1.014,1.144,0.916,0.946,1.051,1.028,0.823,0.99,1.033,1.3,1.005,0.958,0.991,1.052,0.977,0.953,1.032,0.888,1.028,0.87,1.034 +NM_006227,1.057,1.009,0.919,1.079,0.934,0.83,0.942,1.006,1.099,1.004,0.779,0.81,0.943,0.937,1.19,0.899,1.012,0.945,1.079,0.87,0.986,1.031,1.136,0.978,1.226,1.029,0.944,0.981,0.805,1.097,1.034,0.992,0.958,1.023,1.0,0.956,1.028,0.785,0.93,0.998,0.861,1.114,0.98,1.128,1.088,0.855,0.947,1.009,1.026,1.0,0.995,0.948,1.053,0.951 +NM_006228,1.062,1.06,1.08,1.012,1.027,0.841,1.157,0.855,0.987,0.912,0.875,1.074,0.958,1.361,1.229,0.924,0.862,0.931,1.042,0.873,1.003,1.099,0.963,0.97,0.96,1.077,1.032,1.147,0.847,0.943,0.817,0.84,1.079,0.998,0.674,0.857,1.089,1.071,1.113,0.976,0.963,1.471,1.063,0.815,1.042,1.235,0.925,1.042,0.994,1.128,0.967,1.002,1.394,1.3 +NM_006230,0.762,0.955,1.127,0.616,1.21,0.876,0.53,0.55,1.272,1.476,0.563,1.732,0.734,0.557,0.753,1.089,1.087,1.062,1.161,0.897,0.631,0.921,1.897,1.713,0.471,1.063,1.33,1.275,0.343,1.176,0.998,1.365,3.139,0.829,0.0936,1.56,0.695,1.49,1.269,0.795,1.58,0.915,0.567,1.629,1.271,0.782,1.397,0.887,0.833,0.896,1.127,1.065,0.921,1.539 +NM_006231,1.118,0.961,1.153,1.129,0.898,1.111,1.343,1.092,0.954,0.896,0.815,0.984,0.962,0.931,1.141,0.969,1.143,1.042,0.938,0.979,0.997,1.173,0.975,1.061,1.06,0.933,0.936,0.955,1.25,1.003,0.935,0.997,1.051,0.911,0.942,1.12,1.039,1.08,1.073,0.957,0.981,0.953,1.295,1.109,1.053,0.887,0.921,1.012,1.14,0.865,1.003,0.925,0.978,0.985 +NM_006232,0.369,1.494,0.836,0.613,0.763,1.595,0.735,0.492,0.928,0.987,1.007,0.961,0.51,0.351,0.878,1.939,0.785,0.982,0.727,1.422,0.34,0.561,1.728,1.233,0.485,0.444,1.344,0.687,0.612,1.128,0.759,1.964,2.611,1.644,0.219,1.356,1.261,0.662,1.706,1.126,0.92,1.311,0.649,1.57,1.004,1.063,1.364,0.505,1.37,0.55,1.279,0.996,0.703,2.866 +NM_006233,0.711,1.03,1.146,0.541,0.886,1.254,0.467,0.845,1.102,0.994,0.791,1.244,0.878,0.582,0.923,1.381,0.998,0.828,1.923,0.889,0.872,1.205,1.487,1.331,0.495,0.933,1.091,0.965,0.453,0.976,1.002,0.956,2.968,1.451,0.277,0.811,0.756,1.219,1.482,0.802,1.208,1.025,0.382,1.277,1.107,0.653,1.245,1.087,0.678,0.86,0.813,0.723,1.03,1.332 +NM_006234,0.667,1.062,1.065,0.71,0.899,1.1,0.592,0.611,1.145,0.918,1.039,1.047,0.717,0.541,0.843,1.376,0.853,0.854,0.926,1.421,0.452,0.691,1.433,0.921,0.652,0.898,0.988,1.003,0.446,1.425,0.787,1.295,0.657,1.527,0.413,0.911,0.987,0.735,1.73,1.103,1.027,1.036,0.724,1.888,1.133,0.802,1.102,1.072,0.888,0.706,0.959,1.772,0.898,1.079 +NM_006235,0.884,1.798,1.181,1.603,0.702,1.337,1.46,0.915,0.883,0.713,0.864,0.77,0.82,0.71,1.218,0.902,1.093,1.227,1.0,1.003,0.948,0.913,1.062,0.862,1.847,0.725,1.118,0.828,0.994,1.329,0.782,0.74,1.063,2.572,0.91,1.031,1.098,0.811,1.413,0.769,0.792,1.951,0.939,0.93,0.718,0.831,0.849,0.675,0.802,0.913,1.45,0.891,0.928,1.286 +NM_006236,0.959,0.932,1.011,1.116,0.832,0.942,0.903,0.976,0.876,1.107,1.05,1.012,0.889,0.987,0.815,1.063,0.912,1.015,1.032,1.034,0.968,1.061,0.96,1.089,1.103,0.984,0.934,1.01,1.365,1.038,1.008,1.025,0.917,0.939,1.093,1.003,1.057,0.952,1.01,0.951,1.079,1.034,1.119,1.077,1.036,0.957,1.022,0.975,1.035,0.902,0.985,1.002,1.099,1.124 +NM_006237,1.06,0.927,0.996,0.95,1.05,1.113,1.155,0.88,1.012,0.9,0.879,1.023,0.964,1.098,1.13,0.864,0.944,0.984,0.957,0.892,1.054,1.0,0.948,0.954,1.081,0.919,1.037,1.065,1.054,1.016,1.001,0.963,1.026,0.805,1.027,1.111,1.189,1.038,0.894,1.066,1.008,0.993,1.13,0.897,0.987,1.004,0.909,1.067,1.036,1.033,0.976,1.039,0.901,0.803 +NM_006238,1.202,0.794,0.967,0.961,1.028,1.364,0.904,1.519,0.948,1.194,0.853,0.965,1.151,1.007,1.157,0.826,1.145,1.073,1.208,0.739,1.348,1.434,0.893,0.955,0.724,1.458,1.084,1.038,0.954,0.849,1.12,0.97,1.4,0.878,3.151,0.798,0.886,1.42,1.632,0.836,1.195,0.791,1.045,1.209,1.162,0.719,0.984,1.431,0.777,1.306,0.992,0.686,1.043,0.798 +NM_006241,0.905,0.85,1.212,0.596,0.909,0.95,0.496,0.702,1.233,0.94,1.248,0.687,0.66,0.686,1.087,2.095,0.668,1.016,1.424,0.986,0.53,1.064,1.066,1.033,0.5,0.889,1.257,0.967,0.424,1.09,1.021,1.245,1.907,1.235,0.332,0.862,1.492,0.977,1.237,0.677,1.036,0.991,0.72,1.16,1.165,1.047,0.757,0.87,0.929,0.984,1.14,0.758,1.108,1.63 +NM_006242,0.736,0.891,2.336,0.652,1.055,0.986,0.576,0.831,1.46,1.487,0.582,1.312,1.051,0.867,0.857,0.617,1.241,1.162,1.583,0.808,0.436,1.082,0.693,1.251,0.544,1.067,1.911,1.104,0.632,1.647,1.248,0.872,1.303,1.478,0.746,0.623,0.83,1.308,0.768,0.819,1.389,0.948,0.334,0.673,1.537,0.609,0.998,1.042,0.491,1.891,0.643,0.98,1.132,1.351 +NM_006243,1.078,1.059,1.186,0.99,1.0,1.142,0.679,0.65,0.991,0.985,0.959,1.132,0.832,0.793,0.807,1.097,0.915,1.125,1.301,1.064,0.668,1.377,0.776,0.941,1.156,1.258,0.99,0.947,0.722,1.094,0.847,0.693,1.0,1.474,0.234,0.823,1.038,0.93,1.09,0.744,1.045,0.981,0.723,1.158,1.017,0.888,0.684,1.281,0.717,0.856,0.885,0.57,0.907,0.66 +NM_006244,0.973,0.987,0.914,0.866,0.918,1.04,0.842,0.839,0.93,0.856,0.901,0.916,0.806,0.829,0.765,1.015,0.998,0.921,0.969,0.985,0.884,0.917,1.047,1.037,1.029,1.001,0.982,0.854,0.705,1.055,0.903,1.732,1.409,1.058,0.788,1.075,0.987,0.98,1.495,1.189,0.888,0.993,0.873,1.479,0.897,0.974,0.983,0.948,0.953,1.151,1.003,0.982,1.109,1.055 +NM_006245,0.965,0.944,1.115,0.982,0.889,1.018,0.981,1.081,0.991,1.046,1.014,1.101,0.979,1.083,0.811,0.942,0.996,0.972,0.927,1.024,1.045,0.982,0.876,0.977,1.032,1.098,0.993,1.005,0.955,1.068,0.992,1.05,1.158,1.005,0.841,0.924,1.053,0.918,1.055,1.047,1.063,0.933,0.976,0.993,0.913,0.892,1.078,1.097,1.091,0.986,0.975,1.035,1.056,0.951 +NM_006246,0.939,0.876,1.844,0.534,1.055,0.911,0.665,0.718,1.403,1.065,0.84,1.121,0.691,0.771,0.925,1.16,0.911,0.897,1.896,0.678,0.796,1.221,1.138,1.218,0.622,0.947,1.441,1.115,0.607,0.956,1.322,0.813,1.436,1.074,0.834,0.717,0.976,1.155,1.024,0.886,1.267,1.113,0.61,1.482,1.075,0.937,1.141,0.759,0.867,0.984,1.012,0.732,1.134,1.072 +NM_006247,0.946,1.039,0.898,1.14,0.957,0.974,0.889,0.804,0.897,1.006,1.014,0.858,1.001,0.942,0.954,1.175,0.952,1.08,1.086,0.965,1.049,1.052,1.092,1.058,0.933,0.839,0.905,0.989,1.17,0.875,0.774,1.175,1.586,1.119,0.735,1.165,1.031,0.822,1.615,1.1,0.981,0.966,0.816,1.164,1.08,0.934,0.9,1.102,0.953,0.916,1.153,0.918,0.994,1.136 +NM_006249,0.995,0.856,1.01,0.912,1.049,1.095,0.969,0.824,0.972,0.959,1.066,0.937,1.116,0.861,1.077,1.036,0.95,1.044,1.078,0.946,1.008,0.94,1.032,1.0,0.966,0.958,0.897,0.97,0.867,1.003,1.021,1.247,1.095,0.971,1.041,1.118,1.057,1.249,0.957,1.016,0.984,0.992,0.915,1.193,1.073,1.137,1.116,0.937,0.843,0.903,0.858,1.059,1.067,0.966 +NM_006250,1.118,1.178,1.016,0.972,1.196,0.991,0.931,1.073,0.945,0.978,0.805,0.921,1.057,0.774,0.894,0.949,1.13,0.932,0.871,1.094,0.925,0.993,0.959,1.018,0.958,1.142,0.847,0.965,0.852,1.107,1.117,1.061,1.059,0.961,1.211,0.944,1.049,1.011,0.796,1.156,0.887,1.148,1.14,0.987,0.867,0.818,0.948,0.995,0.799,1.177,1.121,1.003,0.944,0.905 +NM_006251,0.708,1.051,0.887,0.937,0.878,1.359,0.75,0.764,0.971,0.997,1.466,0.828,0.659,0.823,1.057,1.482,0.752,0.88,0.931,1.129,0.717,0.787,1.066,1.019,0.814,0.735,1.004,0.789,0.533,1.003,0.835,1.122,2.165,1.17,0.829,1.224,1.143,0.725,1.273,1.116,0.815,1.022,0.867,1.186,0.831,1.224,1.053,0.728,1.079,0.69,1.2,1.01,1.02,1.299 +NM_006252,1.06,0.968,1.022,0.984,1.19,0.963,1.044,0.923,1.189,1.031,0.784,0.882,1.185,1.123,1.154,1.098,0.904,1.03,1.054,0.951,1.025,1.101,1.107,0.905,1.002,1.014,0.966,1.042,1.067,0.988,1.218,1.094,1.322,0.93,1.065,1.037,0.836,1.125,0.969,1.117,1.019,1.149,1.087,0.891,0.942,1.0,0.973,0.963,0.989,0.941,1.122,1.093,0.925,0.981 +NM_006253,0.808,1.065,1.085,0.882,0.898,1.022,0.588,0.689,1.145,0.841,0.865,0.822,0.852,0.709,1.074,1.147,0.883,0.924,1.192,1.436,0.713,1.312,1.599,1.097,0.932,1.108,1.474,0.821,0.873,0.98,0.809,1.665,0.798,1.213,0.882,0.698,0.899,0.841,1.161,1.66,0.905,1.175,0.695,1.214,1.348,0.893,1.095,1.033,0.867,0.818,0.953,0.897,0.917,1.098 +NM_006254,0.64,1.063,0.888,0.947,0.868,2.196,1.28,0.426,1.015,0.814,1.74,0.446,0.503,0.598,1.172,2.081,0.936,1.544,0.72,2.163,0.471,0.627,1.582,0.708,0.994,0.904,0.747,0.811,1.037,1.863,0.941,1.038,0.783,2.768,0.859,0.934,1.711,0.671,2.137,0.958,0.795,1.69,0.904,0.658,0.726,2.089,0.902,0.617,1.183,0.697,1.59,0.743,0.745,0.844 +NM_006255,1.727,0.577,2.352,0.839,2.198,0.467,0.527,1.655,3.428,1.859,0.625,1.638,1.642,1.766,1.78,1.059,1.878,1.334,3.093,0.518,1.353,1.876,0.585,2.471,0.504,2.363,2.561,2.426,0.383,0.636,2.985,0.886,1.57,0.735,3.392,0.56,0.534,2.426,0.849,0.937,2.691,0.931,0.359,1.21,2.242,0.518,1.595,2.095,0.594,1.765,0.797,0.895,1.643,1.22 +NM_006256,0.747,0.956,1.656,0.572,0.927,1.492,0.916,1.064,1.527,0.998,0.925,0.831,0.78,0.874,1.288,1.848,0.97,1.171,1.115,1.008,0.685,1.279,1.203,1.65,0.623,0.553,1.628,1.045,0.652,1.071,1.4,0.827,1.896,1.135,0.804,0.58,1.309,1.17,1.197,0.794,1.049,1.122,0.801,0.72,1.155,1.187,1.131,0.723,1.251,0.637,1.139,0.903,0.63,1.509 +NM_006257,0.927,0.936,1.137,0.944,0.938,0.948,1.018,1.014,1.159,1.0,0.868,1.061,0.927,1.06,0.843,1.1,0.889,1.122,1.125,1.019,0.865,0.889,1.103,0.969,0.9,0.981,1.182,1.017,0.991,1.011,1.048,1.032,1.137,0.977,1.156,1.111,1.001,0.949,0.918,0.867,0.966,1.13,0.894,0.977,0.803,1.01,0.889,0.878,0.983,0.992,0.87,0.931,1.126,1.261 +NM_006258,0.855,0.944,0.956,1.136,0.905,0.954,1.281,0.89,0.889,0.904,1.174,0.933,1.087,0.926,1.068,1.087,0.957,0.887,0.958,0.781,0.963,0.91,1.092,1.009,1.075,0.945,1.076,1.223,1.046,1.06,1.079,1.051,0.996,0.996,1.035,0.997,0.975,0.969,1.181,0.914,0.996,1.165,0.99,0.965,0.927,0.928,1.042,1.101,0.973,0.905,0.894,0.852,1.084,1.098 +NM_006259,0.97,1.072,1.092,1.104,0.974,1.124,1.022,0.778,0.849,1.149,0.94,1.038,0.893,0.877,0.956,1.056,0.907,1.087,0.938,1.019,0.86,0.929,0.973,0.897,1.01,1.032,1.031,0.955,0.906,1.06,1.061,1.011,0.997,1.056,0.97,1.018,0.908,0.96,1.088,1.178,0.957,0.904,1.145,1.086,1.059,0.829,1.026,0.855,1.024,1.089,1.015,0.903,1.038,1.055 +NM_006260,0.765,0.851,0.963,0.821,0.953,0.984,0.767,0.879,1.132,0.932,1.06,1.103,0.931,0.876,0.912,1.828,0.846,1.065,1.25,0.862,0.919,0.999,1.104,1.04,0.814,0.795,1.139,0.874,0.561,0.998,0.96,1.074,0.998,0.885,0.831,1.415,1.076,0.931,1.152,0.878,1.295,0.956,0.794,1.537,1.1,1.052,1.537,0.878,1.268,1.037,1.023,0.927,1.125,1.048 +NM_006261,1.186,0.941,1.022,1.136,1.019,0.962,1.152,0.831,0.988,1.012,0.919,0.947,0.933,1.166,0.901,1.096,1.08,1.228,1.1,1.008,1.041,0.844,0.847,0.989,1.05,0.913,0.943,0.907,0.895,1.084,0.866,0.998,1.086,0.873,1.108,0.979,0.985,1.064,1.141,1.035,0.962,0.943,1.434,1.069,0.946,1.052,0.899,0.89,0.981,0.99,0.997,1.111,1.236,0.937 +NM_006262,0.904,1.019,1.06,1.063,0.907,0.952,0.967,0.774,0.923,1.0,1.054,1.002,0.983,0.862,0.761,1.046,0.903,1.09,1.067,1.026,0.841,1.022,1.09,1.201,0.868,0.954,0.841,0.958,0.739,1.135,0.96,0.99,1.147,1.171,1.009,4.453,1.012,1.0,0.908,0.858,0.895,1.098,0.885,1.031,0.914,1.003,1.022,1.01,1.019,1.027,0.999,1.037,1.132,1.11 +NM_006263,0.656,0.813,1.242,0.696,0.696,1.444,0.982,0.455,0.94,0.791,1.117,0.85,0.598,0.4,1.002,1.597,0.731,0.966,0.766,1.209,0.363,0.661,1.264,0.867,0.69,0.663,1.128,0.775,0.427,1.404,0.674,0.893,0.921,1.221,0.142,0.365,1.352,0.748,1.198,0.599,1.089,1.413,0.889,1.167,0.817,1.142,1.385,0.617,1.345,0.683,1.288,0.968,1.118,1.422 +NM_006265,0.506,0.964,1.346,0.811,0.973,1.026,0.523,0.508,1.441,0.931,0.834,0.494,0.514,0.888,0.984,1.403,0.785,0.847,1.409,0.863,0.609,0.595,1.329,1.004,0.463,0.631,1.836,1.018,0.324,1.11,1.167,1.262,3.483,1.196,0.686,1.169,0.984,0.764,1.316,1.44,1.182,0.891,0.497,1.403,0.944,1.532,1.125,0.603,1.314,0.685,1.033,0.756,1.032,2.018 +NM_006266,0.996,1.019,1.197,0.932,0.851,0.907,0.698,0.941,0.952,0.801,0.731,0.907,1.012,0.934,1.096,0.952,1.175,1.003,1.07,0.967,1.002,1.112,1.037,0.968,0.978,1.235,1.285,0.868,0.926,0.999,0.928,0.95,0.853,0.976,1.03,0.77,0.914,1.254,1.149,1.043,1.001,0.867,1.132,0.955,0.999,0.996,0.857,1.077,1.072,1.165,0.864,1.002,1.157,1.068 +NM_006267,0.837,1.172,1.067,0.815,1.046,1.024,0.758,0.63,0.982,0.914,1.166,0.888,0.674,0.872,0.935,1.487,0.823,0.891,0.912,1.132,0.673,0.849,1.441,0.955,0.935,0.877,1.435,0.903,0.783,1.278,0.952,1.168,2.159,1.16,0.554,0.927,1.116,0.964,1.285,1.256,1.111,1.319,0.885,1.152,0.999,1.003,0.935,0.925,1.247,0.841,1.105,1.066,0.852,1.792 +NM_006268,0.735,0.927,1.316,0.734,0.816,1.004,0.646,0.541,1.15,1.124,0.843,0.787,0.672,0.726,0.886,1.074,0.985,0.875,1.084,0.918,0.763,0.748,1.107,1.004,0.62,0.859,1.299,0.753,0.44,1.566,0.873,1.875,2.447,1.373,0.465,1.355,0.768,0.774,1.6,1.125,1.047,1.094,0.513,1.504,1.008,0.797,0.869,0.742,0.704,0.998,0.968,0.782,1.068,1.715 +NM_006269,0.926,0.881,0.959,1.044,1.089,1.069,0.914,0.893,0.863,0.978,1.15,1.01,0.916,0.94,0.88,1.082,0.969,0.842,0.859,1.084,1.016,1.274,1.034,0.966,0.903,0.888,0.985,1.057,1.477,1.124,0.985,1.019,0.971,1.001,0.93,0.959,0.934,0.887,1.044,0.999,0.984,0.984,0.967,1.062,0.969,1.052,0.857,0.978,0.933,1.017,0.905,1.051,1.234,0.891 +NM_006270,0.362,1.189,0.735,0.813,0.795,2.351,0.936,0.405,0.774,0.456,1.435,0.43,0.561,0.438,1.002,1.895,0.461,0.91,0.567,2.012,0.489,0.756,1.87,0.602,0.706,0.481,0.808,0.784,0.573,1.48,0.613,1.708,2.197,1.693,0.534,0.911,1.099,0.533,2.569,1.32,0.668,1.869,0.453,1.316,0.726,1.448,1.411,0.648,0.81,0.482,1.418,0.849,0.729,1.409 +NM_006271,0.865,1.0,0.977,0.953,0.955,0.907,1.1,0.787,0.905,1.116,1.063,0.904,1.065,0.747,0.925,1.157,1.086,1.044,0.85,1.115,0.939,0.967,1.101,1.032,1.214,1.102,1.319,0.964,0.839,1.115,0.807,0.921,1.042,1.091,1.161,1.087,1.041,0.87,1.083,1.109,1.034,1.225,1.014,0.863,1.239,1.012,0.915,0.944,1.056,0.897,0.95,1.176,1.003,1.015 +NM_006272,1.062,1.088,0.945,0.866,1.021,1.016,0.914,1.043,0.933,1.104,0.91,1.011,1.072,1.04,0.836,1.135,0.958,1.306,1.043,0.997,1.024,0.997,1.046,1.027,0.991,0.883,0.994,1.057,0.972,1.063,1.027,0.977,1.119,1.033,1.007,1.051,0.939,1.04,0.904,1.056,1.129,0.945,1.169,0.951,0.978,1.149,0.945,0.96,1.051,0.989,0.923,1.085,0.941,1.142 +NM_006273,0.918,1.004,0.949,0.949,1.0,1.037,0.899,0.859,1.022,1.013,0.935,1.063,1.027,0.91,0.899,0.954,0.957,1.028,0.964,0.854,0.868,0.993,0.961,1.001,0.947,1.012,0.809,0.953,0.869,0.988,0.85,1.219,1.068,1.011,1.149,1.023,0.96,0.861,1.053,1.185,1.182,0.966,0.79,0.9,1.072,0.898,1.039,1.109,0.887,0.986,0.994,1.177,0.911,1.06 +NM_006274,0.926,0.977,0.932,1.047,1.068,0.946,1.042,0.991,0.906,1.296,0.859,0.943,1.02,0.689,1.032,0.895,0.819,0.766,0.862,0.9,1.103,0.926,0.965,0.912,0.933,0.816,1.033,1.118,1.098,1.051,0.922,1.196,0.964,1.104,0.954,1.001,1.057,1.05,1.004,1.084,1.126,3.172,0.881,0.92,0.909,0.949,1.14,0.761,1.067,1.066,0.999,1.101,1.311,1.66 +NM_006275,0.67,1.221,1.003,0.748,0.814,1.103,0.536,0.41,1.169,1.105,0.874,0.997,0.593,0.843,0.963,1.373,0.69,0.779,0.891,1.273,0.397,0.872,1.369,0.872,0.813,0.607,1.266,0.663,0.361,1.385,0.892,1.679,1.68,1.06,0.156,1.53,1.099,0.735,1.16,1.096,0.967,1.233,1.218,0.668,0.74,1.127,0.648,0.594,1.176,0.665,1.025,1.339,1.17,1.762 +NM_006276,0.835,1.127,0.895,0.917,0.767,1.179,0.843,0.473,1.323,0.962,1.27,0.815,0.803,0.818,1.076,1.636,0.869,0.748,0.827,1.0,0.635,0.7,1.433,1.028,0.813,0.76,1.278,0.75,0.496,1.163,1.182,1.294,1.942,1.311,0.285,0.84,1.411,0.745,1.0,1.103,1.037,1.188,0.696,1.316,0.986,0.886,0.682,0.632,1.1,0.519,1.289,0.747,0.754,1.484 +NM_006278,1.269,0.799,1.811,0.962,1.684,0.722,0.717,3.354,2.83,1.357,0.681,2.035,1.535,1.439,1.846,1.139,2.004,1.43,2.757,0.77,1.362,2.005,0.842,2.81,0.734,2.254,1.237,2.084,0.649,0.706,2.604,1.338,0.998,0.817,2.825,1.788,0.685,1.709,0.774,1.057,1.816,0.939,0.689,0.776,1.731,0.74,1.304,3.262,0.994,1.602,0.81,1.0,1.325,1.0 +NM_006280,0.456,1.446,0.713,0.719,0.627,1.302,1.097,0.404,0.754,0.606,1.092,0.542,0.7,0.249,0.663,1.562,0.784,1.126,0.878,1.238,0.321,0.725,1.442,0.661,1.171,0.688,0.713,0.628,0.54,1.539,0.558,1.146,1.041,1.883,0.203,1.177,1.314,0.73,1.627,0.54,0.772,1.993,0.471,1.938,0.856,0.911,1.143,0.835,1.016,0.601,1.287,1.171,0.492,1.08 +NM_006281,0.691,0.985,1.233,0.724,0.937,0.982,0.615,0.59,1.095,0.822,0.921,1.207,0.772,0.829,0.868,1.24,0.91,0.792,1.359,1.087,0.552,0.82,1.425,1.06,0.584,0.906,1.2,0.925,0.385,0.78,0.801,2.216,3.794,1.155,0.534,0.994,0.76,0.962,1.482,1.769,0.977,0.908,0.484,1.302,0.961,1.347,1.275,0.906,1.466,1.113,0.855,1.314,0.855,3.501 +NM_006282,0.59,0.953,1.264,0.697,0.848,0.979,0.679,0.559,1.11,1.05,0.863,0.872,0.608,0.713,0.816,1.169,0.772,0.695,1.1,1.166,0.731,0.644,1.128,1.063,0.66,0.738,1.254,0.76,0.41,1.413,0.874,1.488,1.858,1.363,0.349,1.194,0.736,0.757,1.08,2.114,0.994,0.979,0.691,1.34,0.903,0.723,0.959,0.676,0.78,0.719,0.906,1.344,1.067,2.489 +NM_006283,0.723,1.099,1.7,0.616,1.139,0.869,0.506,0.736,1.27,0.936,0.66,0.675,0.768,1.03,1.247,0.901,1.25,0.868,1.26,1.035,0.584,0.821,1.635,0.892,0.586,0.905,1.491,0.967,0.265,0.876,1.231,2.461,1.758,1.104,1.363,0.866,0.591,1.115,1.214,1.13,1.402,1.683,0.709,0.795,0.941,0.704,0.857,1.011,0.691,1.336,1.275,0.987,0.941,1.203 +NM_006284,0.796,0.982,1.101,0.791,0.818,1.314,0.633,0.692,1.488,0.832,1.623,0.988,0.87,0.657,1.037,1.882,1.0,0.866,2.209,0.932,0.557,0.687,1.162,1.063,0.758,1.184,0.814,0.857,0.532,1.255,0.905,0.931,1.789,1.721,0.655,1.626,1.039,0.714,1.408,0.949,1.059,1.176,0.593,1.215,1.1,0.983,1.006,1.063,0.927,0.926,1.012,1.0,1.101,1.185 +NM_006285,0.853,0.803,0.873,1.101,0.82,1.284,0.843,0.651,0.773,0.848,1.251,0.769,0.809,0.811,1.169,1.202,0.798,0.82,0.936,0.863,0.696,0.757,1.042,0.817,1.019,0.86,0.894,0.827,0.823,1.111,0.845,2.251,1.43,1.688,0.875,0.832,1.0,0.757,1.746,0.904,0.718,1.222,0.856,1.568,0.769,1.086,0.749,0.831,0.807,0.91,1.149,0.96,0.954,1.828 +NM_006286,0.904,1.0,1.035,0.988,1.057,0.869,1.083,0.845,0.852,1.037,1.093,0.911,1.03,1.0,1.068,0.945,1.055,0.973,1.23,1.211,0.867,0.972,1.127,0.923,0.989,1.046,0.927,0.979,1.015,1.139,0.957,1.28,1.586,0.952,0.869,1.026,0.851,0.943,0.998,0.888,0.986,1.052,0.91,1.094,1.068,0.855,1.111,0.922,1.102,1.029,0.962,0.937,0.985,1.232 +NM_006287,0.509,2.227,0.961,0.715,0.647,1.547,0.699,0.466,0.565,0.565,3.188,0.535,0.467,0.596,0.995,2.356,0.588,0.808,0.583,1.781,0.469,0.533,1.847,0.507,0.562,0.523,1.146,0.787,0.514,1.731,0.468,2.673,0.739,1.404,0.522,0.874,1.779,0.531,3.278,3.396,0.669,1.638,1.295,3.098,0.498,3.09,2.605,0.43,1.461,0.569,1.653,2.568,0.608,1.851 +NM_006288,1.068,1.059,0.907,0.984,0.94,1.186,0.939,1.136,0.898,0.93,0.953,0.919,0.972,0.924,0.971,0.856,0.948,0.847,0.905,0.906,0.938,0.9,1.373,1.0,1.02,0.929,1.112,0.859,0.904,1.191,0.852,7.353,1.409,1.156,0.878,1.076,1.025,0.918,1.377,1.478,0.909,1.012,0.943,0.94,1.0,0.919,0.873,0.941,0.873,0.923,1.06,1.269,0.931,1.207 +NM_006289,1.089,0.931,0.994,1.094,0.985,1.061,0.755,0.879,0.924,0.858,1.045,0.875,0.845,0.841,0.942,1.103,0.982,0.785,0.955,0.958,1.481,0.75,1.072,0.95,1.332,1.028,1.044,0.901,0.765,1.016,0.909,1.719,1.412,1.118,0.78,0.892,0.999,0.889,2.265,1.329,0.915,1.154,0.904,1.846,0.938,0.98,0.807,0.9,0.922,1.011,0.948,0.877,1.023,1.236 +NM_006290,0.752,0.937,1.113,1.01,1.0,1.2,0.952,0.91,0.886,0.89,0.914,0.782,0.841,0.765,0.865,0.811,0.758,0.832,0.776,1.021,0.618,0.759,1.059,0.771,0.801,0.74,1.025,1.0,0.745,0.917,1.038,1.339,1.882,1.308,0.862,0.723,0.974,0.912,1.846,4.905,0.927,1.366,1.189,1.468,1.062,1.032,1.289,0.784,0.885,0.872,0.96,2.296,1.206,2.314 +NM_006291,1.008,0.863,2.43,0.992,1.172,0.439,0.371,0.554,1.691,1.127,0.312,0.581,0.579,1.146,0.743,0.958,1.923,0.751,1.426,0.573,0.659,1.041,0.827,1.27,0.289,1.277,2.359,1.246,0.189,0.54,1.359,3.245,1.039,0.495,0.457,0.385,0.388,1.076,1.385,1.972,1.47,0.622,0.255,1.882,1.721,0.518,1.138,1.323,0.631,1.933,0.704,2.571,1.147,2.668 +NM_006292,0.847,0.749,1.039,0.781,1.038,1.253,0.528,0.905,1.276,0.836,1.218,0.859,0.681,0.873,1.044,1.488,0.892,1.042,1.242,0.767,0.683,1.008,0.845,1.111,0.573,1.189,1.071,0.972,0.467,1.46,1.186,0.739,1.092,1.232,1.003,1.107,1.217,1.148,2.064,0.6,1.178,0.868,0.581,0.642,0.899,1.002,0.912,1.106,1.146,0.821,0.948,0.61,1.003,1.09 +NM_006293,2.231,0.817,1.008,1.001,1.757,0.925,0.632,1.448,1.995,1.516,0.792,1.554,1.652,1.292,1.221,1.189,0.967,1.518,2.178,0.91,1.038,2.296,0.946,1.934,0.863,2.102,1.138,1.523,0.596,1.085,2.028,0.785,1.58,1.065,0.91,0.876,0.762,1.855,0.968,0.876,1.447,0.683,0.523,1.02,1.597,0.64,0.92,2.675,0.687,1.577,0.859,0.703,1.052,0.77 +NM_006294,0.951,1.257,0.873,0.916,1.246,1.179,0.837,0.8,0.994,1.15,0.914,0.98,0.924,0.875,0.871,1.071,0.953,1.164,0.873,1.0,0.698,1.096,1.073,1.066,0.923,0.951,1.108,1.122,0.707,1.095,0.859,1.164,1.066,0.983,1.016,1.0,0.915,1.125,1.198,1.009,1.166,1.077,0.791,0.926,0.913,1.028,1.041,0.995,1.373,0.882,0.938,0.835,0.894,1.118 +NM_006295,1.077,0.777,0.972,0.727,0.761,0.696,0.568,0.421,1.016,1.146,0.738,0.761,0.596,0.585,0.914,1.208,0.878,1.057,1.448,0.745,0.701,0.889,1.407,1.063,0.65,1.148,0.938,0.656,0.443,0.808,0.772,1.189,2.344,0.994,0.256,0.916,0.867,0.885,2.455,1.874,0.867,0.982,0.651,2.231,1.395,0.747,0.836,0.985,1.026,1.211,1.16,0.819,1.259,1.268 +NM_006296,0.897,0.981,1.58,0.845,1.265,0.82,0.83,0.967,1.63,1.417,0.9,0.966,0.856,1.037,1.11,1.237,1.402,0.996,1.356,1.058,0.933,1.234,1.076,1.907,0.746,0.882,1.585,1.154,0.936,0.995,1.436,0.959,3.017,0.974,0.867,0.748,0.899,1.373,1.226,1.024,1.596,0.862,0.888,1.066,1.461,0.832,1.139,1.091,0.812,1.241,1.011,0.881,0.923,1.43 +NM_006297,0.794,1.12,1.203,0.929,0.862,1.139,0.885,0.669,0.979,1.019,0.957,0.952,0.78,0.867,0.883,0.911,0.813,1.098,1.067,1.195,0.78,0.868,1.601,0.985,0.787,0.919,1.312,0.7,0.998,1.159,0.871,1.394,3.524,1.139,0.695,1.06,0.913,0.945,1.534,0.993,0.935,0.971,0.867,1.166,0.955,0.715,0.892,0.755,0.808,0.888,0.937,0.764,0.882,1.234 +NM_006298,0.937,0.803,0.857,1.26,1.012,1.053,0.902,0.918,0.968,0.904,1.012,1.011,0.842,1.053,1.079,1.006,1.159,1.022,1.018,0.962,0.973,1.027,1.05,1.039,0.954,0.939,1.077,1.039,1.006,1.005,1.028,0.946,0.95,0.984,1.045,0.995,1.113,1.005,1.079,0.957,0.942,0.931,0.962,0.983,0.914,0.993,0.895,0.995,0.933,1.122,0.946,0.993,0.996,0.851 +NM_006299,0.831,1.002,0.998,0.941,0.911,1.07,0.942,0.717,1.058,0.805,1.071,0.829,0.755,0.874,1.007,1.133,0.893,0.816,0.919,1.087,0.952,0.804,1.126,0.946,0.996,1.011,0.924,0.934,0.965,1.038,0.851,1.389,1.517,1.225,0.737,0.873,0.944,0.972,0.918,1.15,0.956,1.049,0.964,1.102,0.929,1.027,0.921,0.907,0.737,0.868,1.07,0.789,0.861,1.245 +NM_006301,0.983,1.045,0.881,1.121,0.905,0.863,0.955,0.932,0.931,0.987,1.023,0.949,0.827,1.035,1.161,1.005,0.874,0.945,0.861,1.125,0.972,0.832,1.19,0.856,0.878,1.0,1.137,0.98,1.143,1.113,0.884,1.467,1.008,1.052,1.05,0.903,0.775,0.981,1.15,0.987,0.899,1.037,0.95,1.002,0.922,0.918,0.965,1.102,0.888,1.049,0.951,1.0,0.9,1.156 +NM_006302,0.826,1.155,0.807,0.958,0.795,1.076,0.813,0.691,0.894,0.925,1.006,0.736,0.773,0.687,0.97,0.971,0.924,1.029,0.925,0.819,0.86,0.987,1.101,0.918,1.03,0.862,1.055,0.759,0.816,1.164,0.725,1.12,0.968,1.268,0.664,0.795,1.025,0.798,1.693,1.184,0.864,1.097,0.848,1.515,0.831,0.946,0.932,0.802,0.935,0.961,1.033,0.976,1.011,1.053 +NM_006303,0.747,0.824,0.916,0.781,0.582,0.934,0.537,0.32,0.789,0.927,1.249,0.63,0.488,0.484,0.888,2.076,0.717,0.746,1.034,0.922,0.595,0.508,1.988,0.95,0.599,0.749,0.962,0.692,0.437,1.121,0.602,1.69,3.134,1.117,0.188,1.768,1.353,0.566,2.07,1.155,1.108,1.175,1.025,3.114,0.951,1.274,0.989,0.534,1.563,0.742,1.317,1.439,1.075,2.784 +NM_006305,0.86,1.107,0.971,0.827,0.735,1.53,1.016,0.886,1.081,0.801,0.793,0.899,0.932,0.664,0.815,1.876,0.926,0.919,0.8,0.957,0.614,1.12,1.316,1.047,1.044,0.836,1.179,0.718,1.026,1.223,1.001,0.937,1.931,1.401,0.975,0.666,1.013,1.056,2.771,1.068,0.857,1.151,0.887,0.801,0.918,1.03,1.204,1.097,0.999,1.065,0.924,0.862,0.74,1.465 +NM_006306,0.894,1.059,1.029,0.917,1.011,0.914,0.909,0.821,1.033,1.009,1.203,0.851,0.898,1.048,0.979,0.897,0.922,1.006,1.029,1.147,1.088,0.995,1.06,0.98,1.076,0.924,1.093,0.88,0.925,0.963,1.026,0.997,0.913,1.144,0.935,0.966,0.967,1.043,0.911,0.947,1.05,1.075,1.013,0.87,1.118,1.042,0.955,1.014,0.955,1.046,0.955,0.946,1.188,1.04 +NM_006307,0.726,1.165,0.904,1.246,0.844,1.178,1.427,0.98,0.82,0.848,1.004,0.803,0.698,0.816,1.12,1.243,0.799,0.865,0.778,1.47,0.799,0.74,1.169,0.842,1.45,0.921,0.929,0.959,0.853,1.626,0.833,2.508,0.982,4.555,0.786,0.818,0.981,0.885,1.078,1.108,1.021,1.634,0.819,0.788,0.841,0.894,0.802,0.703,0.996,0.925,1.136,0.921,0.963,1.244 +NM_006308,0.854,1.056,0.897,1.107,0.907,1.055,0.824,1.008,1.046,0.953,1.078,1.064,0.777,0.785,1.065,1.131,0.96,0.89,1.065,0.949,0.974,1.083,0.868,1.002,0.938,0.929,0.955,1.097,0.851,1.011,0.896,0.998,1.01,0.937,1.0,0.966,1.021,0.999,0.848,0.968,1.559,1.126,1.087,1.056,1.116,0.997,0.951,0.932,0.819,1.082,0.945,1.05,1.018,0.994 +NM_006309,1.018,0.906,1.005,0.925,1.048,0.977,0.821,0.971,1.101,1.097,0.893,0.959,1.025,0.784,0.896,1.054,0.927,1.014,0.939,0.941,0.96,0.816,0.931,1.02,1.101,1.018,1.055,1.034,1.183,0.996,1.07,0.919,0.97,0.988,0.97,1.073,1.014,1.174,0.959,1.138,0.967,0.967,1.081,0.999,1.062,0.95,1.034,0.98,0.969,0.901,1.045,0.886,1.026,0.938 +NM_006310,0.96,0.807,2.136,0.7,1.745,0.907,0.496,0.75,2.086,1.512,0.743,1.287,0.684,1.0,1.154,1.317,1.404,1.01,2.973,0.71,1.074,1.244,0.903,1.378,0.445,1.125,1.483,1.672,0.461,0.785,1.518,0.915,2.049,0.849,0.752,0.556,0.995,1.242,1.09,0.584,1.796,0.836,0.485,1.128,1.771,0.677,1.206,1.104,1.249,1.495,0.906,0.809,1.268,1.077 +NM_006311,0.835,0.863,1.085,0.882,0.875,1.163,0.822,0.536,1.021,0.903,1.13,0.673,0.679,0.703,0.988,1.292,0.825,0.867,0.851,1.25,0.676,0.644,1.235,0.888,1.007,0.834,1.039,0.854,0.767,1.35,0.904,1.08,1.043,1.322,0.708,0.963,1.046,0.749,1.234,0.981,0.918,0.98,1.166,1.785,0.916,1.26,0.978,0.745,1.295,0.882,1.144,0.759,0.905,1.391 +NM_006312,0.813,0.714,0.913,0.761,0.685,1.163,0.617,0.517,0.916,0.633,0.861,0.586,0.545,0.609,0.923,1.071,0.977,0.731,0.989,0.993,0.735,0.977,1.219,0.686,0.934,0.955,1.172,0.682,0.75,1.625,0.851,2.958,2.517,1.449,1.077,1.016,0.811,1.007,1.838,1.509,0.889,1.207,0.597,1.533,0.69,0.691,0.848,1.117,0.753,0.813,0.969,1.279,0.795,1.889 +NM_006313,0.804,1.0,1.173,0.84,0.94,1.098,0.887,0.812,1.233,0.989,1.036,1.011,0.863,0.829,0.914,1.216,0.943,0.948,1.021,0.953,0.631,1.067,1.136,0.982,0.915,0.976,1.315,0.974,0.903,1.108,0.992,1.018,1.179,1.13,0.75,0.917,0.87,0.919,1.185,1.024,1.178,1.028,0.831,0.91,1.052,1.052,1.052,0.925,1.134,0.908,0.878,0.898,0.854,1.244 +NM_006314,0.634,1.192,1.405,0.678,1.227,1.14,0.61,0.852,1.86,1.179,0.85,0.852,0.459,0.899,1.154,1.383,0.802,0.831,1.153,1.15,0.503,0.79,1.08,0.754,0.527,0.846,1.379,1.199,0.552,1.214,0.867,0.834,1.367,1.028,1.003,1.13,0.914,1.037,1.119,0.621,1.138,0.851,0.939,0.667,0.83,1.289,1.294,0.903,0.894,0.702,1.146,0.693,0.989,1.32 +NM_006315,0.973,0.972,1.043,1.079,0.892,0.994,1.044,1.114,1.161,1.063,1.016,0.945,0.966,1.052,0.94,0.995,1.04,1.052,0.94,1.068,0.908,1.143,0.976,0.972,1.028,1.009,0.945,1.014,1.082,1.001,1.034,1.051,0.916,0.946,0.856,1.065,1.086,1.075,0.973,0.861,1.043,1.154,1.024,1.052,1.033,1.023,0.858,0.953,1.135,1.018,1.083,0.948,0.932,0.999 +NM_006316,0.981,1.15,1.203,1.045,0.869,0.914,1.203,0.926,0.948,1.077,1.134,1.138,1.004,1.078,1.385,0.946,0.986,0.754,0.93,0.999,1.08,0.998,1.077,1.048,1.052,1.014,0.958,0.973,0.78,0.996,1.098,1.11,0.969,0.955,1.057,0.991,1.101,1.091,0.982,0.983,1.0,1.025,1.174,0.901,1.135,0.944,0.887,1.027,0.952,1.004,0.896,0.902,1.065,1.004 +NM_006317,0.953,3.186,1.017,1.317,0.686,0.684,1.229,0.698,0.819,0.621,0.372,0.9,0.67,1.372,0.735,0.743,1.262,1.095,0.613,1.221,0.563,1.307,0.576,0.825,1.39,1.323,1.3,0.604,2.567,1.042,0.975,5.353,1.885,4.283,0.901,0.332,1.212,1.057,2.359,6.412,0.604,1.184,0.418,0.495,0.936,0.448,0.928,1.1,0.333,0.697,0.583,2.319,1.158,2.041 +NM_006319,0.783,1.315,0.871,0.761,0.688,1.36,0.75,0.694,0.657,0.784,1.294,0.796,0.698,0.667,0.786,1.382,0.796,0.755,1.379,0.911,1.151,0.838,1.016,0.713,1.093,1.0,0.92,0.674,0.715,1.428,0.689,1.977,3.821,2.016,0.466,1.041,1.111,0.931,1.408,1.604,0.808,1.313,0.684,2.261,0.676,0.862,0.947,0.894,0.704,0.816,0.906,0.871,0.996,1.556 +NM_006320,0.614,1.951,1.017,1.085,0.866,2.527,1.232,0.432,0.919,0.737,2.353,0.862,0.599,0.508,0.925,1.877,0.481,1.746,0.927,1.964,0.385,0.86,1.423,0.739,1.256,0.806,0.841,0.843,1.265,2.995,0.668,1.191,0.664,2.58,0.183,0.494,2.514,1.029,1.807,0.628,0.812,2.223,0.904,0.872,0.652,1.943,0.907,0.673,1.083,0.541,1.372,0.674,0.655,0.532 +NM_006321,0.918,1.07,1.05,0.934,0.819,0.933,0.806,0.671,1.087,0.988,1.005,0.953,0.825,0.765,0.92,1.093,0.902,1.082,0.844,1.144,0.712,0.813,1.344,1.071,0.969,1.011,0.925,0.922,0.8,1.357,0.874,1.703,0.989,1.207,0.715,1.096,1.155,0.922,1.427,0.964,0.966,1.267,0.737,0.886,0.991,0.877,0.903,0.752,0.858,0.863,1.121,1.166,1.015,1.77 +NM_006322,0.836,0.891,1.255,0.647,1.059,1.259,0.853,0.806,1.164,0.808,0.755,0.925,0.7,0.914,0.94,1.507,1.034,0.951,0.757,1.019,0.649,1.167,1.208,1.255,0.746,0.763,1.48,0.85,0.661,1.272,1.093,1.556,0.931,1.326,0.482,0.707,1.048,1.053,1.045,1.006,1.041,1.112,0.721,0.881,1.01,1.006,1.208,0.816,1.074,0.851,1.111,0.854,0.71,1.65 +NM_006323,0.674,1.002,1.464,0.686,1.059,1.146,0.717,0.744,1.647,0.968,0.963,0.724,0.645,0.779,1.156,1.6,0.932,0.838,1.246,1.028,0.552,0.8,1.202,1.072,0.586,0.628,1.775,0.948,0.564,1.156,1.238,1.281,1.469,1.221,0.86,0.557,1.215,1.11,1.03,0.77,1.08,1.093,0.675,0.78,0.946,1.068,1.024,0.961,1.186,0.921,1.04,0.781,0.827,0.987 +NM_006324,0.542,0.723,1.123,0.667,0.997,1.034,0.293,0.532,1.077,0.702,1.911,0.683,0.605,0.575,1.488,2.565,1.046,1.003,0.925,1.375,0.587,0.793,1.335,1.021,0.51,0.746,1.261,1.021,0.667,1.535,0.886,1.057,2.266,1.304,0.615,1.012,0.926,0.793,1.233,1.268,0.94,0.823,1.165,1.46,0.855,1.032,1.819,0.861,1.56,0.613,0.649,0.707,0.712,0.468 +NM_006325,0.807,0.754,1.461,0.737,1.13,0.907,0.718,0.724,1.358,1.346,0.992,1.208,0.821,0.977,1.212,1.544,0.978,0.852,1.443,0.9,0.777,0.914,1.221,1.364,0.663,0.809,1.553,1.049,0.653,0.869,1.24,1.14,1.809,1.158,0.642,1.287,0.958,0.963,0.83,0.948,1.472,1.026,0.724,0.905,1.331,1.019,1.071,0.848,1.192,0.876,1.038,1.004,1.391,1.839 +NM_006327,0.641,1.061,1.024,0.889,0.716,1.127,0.587,0.48,1.29,0.988,1.517,0.744,0.659,0.802,1.08,1.96,0.793,0.83,1.281,0.708,0.703,0.477,1.223,1.122,0.647,0.671,1.076,0.843,0.341,1.297,0.976,0.945,3.318,1.314,0.401,1.043,1.199,0.715,1.457,0.485,1.109,1.115,0.984,1.524,1.016,1.224,1.029,0.582,1.258,0.644,0.974,0.712,1.062,2.951 +NM_006328,0.81,0.898,1.053,0.763,0.71,1.003,0.644,0.271,0.951,1.02,0.819,1.023,0.471,0.583,0.791,1.075,0.844,0.949,0.875,1.132,0.412,0.617,1.536,1.037,0.661,0.837,1.364,0.71,0.538,1.212,0.691,1.305,1.925,0.954,0.215,1.438,1.198,0.706,1.488,1.518,0.952,1.081,0.683,1.807,1.312,0.965,0.897,0.638,1.36,0.937,1.417,1.144,0.76,1.891 +NM_006329,0.871,1.361,0.823,1.038,0.833,1.069,1.144,0.705,0.891,0.861,1.002,0.825,0.761,0.74,0.938,1.028,0.899,0.852,0.807,1.093,0.888,0.869,1.288,0.875,1.337,0.831,0.817,0.933,0.851,1.71,0.811,5.822,1.737,2.221,0.92,0.947,1.052,1.147,1.434,0.938,0.966,2.068,0.845,1.135,0.952,1.046,0.914,0.964,0.911,0.755,1.234,1.149,0.902,1.265 +NM_006331,0.998,1.038,1.103,1.015,0.975,1.002,1.041,0.881,0.976,1.039,0.931,1.089,0.959,1.034,0.999,1.051,0.966,1.112,1.202,1.035,1.058,0.909,1.003,1.127,0.925,0.942,0.938,1.053,1.06,0.954,1.065,0.864,1.165,0.934,0.892,1.119,0.937,0.987,1.058,1.002,1.001,0.972,0.788,0.965,0.954,0.963,1.002,1.096,1.101,1.01,1.063,1.088,1.034,1.095 +NM_006332,0.482,1.127,0.725,0.829,0.331,1.362,1.502,0.24,0.386,0.484,0.837,0.358,0.362,0.239,0.77,0.8,0.483,0.658,0.558,0.715,0.459,0.353,1.233,0.603,0.974,0.338,1.027,0.301,0.484,1.429,0.314,2.371,1.571,1.606,0.171,0.967,0.966,0.321,2.508,2.557,0.615,1.31,0.624,1.234,0.678,0.695,0.807,0.295,1.514,0.603,1.016,2.927,1.774,4.164 +NM_006334,0.811,0.987,1.057,1.07,0.789,1.208,0.953,0.754,0.827,0.783,0.922,0.868,0.88,0.849,0.963,0.91,0.828,0.926,0.914,1.01,0.951,0.763,1.067,0.981,1.128,0.858,1.264,0.944,0.725,1.476,0.739,1.617,1.041,2.208,0.914,1.007,1.056,0.861,1.387,1.209,1.233,1.96,0.68,0.848,1.03,0.996,0.842,0.871,0.884,0.933,1.074,1.152,0.879,0.878 +NM_006335,0.954,0.935,1.003,0.985,0.982,1.04,0.94,1.136,1.009,1.031,1.047,1.018,0.948,0.976,1.003,1.387,0.967,0.974,1.115,0.881,0.822,1.034,0.998,0.953,0.969,1.013,1.088,0.909,0.98,0.93,0.991,1.032,1.324,0.917,0.85,1.022,1.048,0.956,0.96,1.058,0.936,1.102,1.081,1.057,1.095,1.097,0.977,0.892,1.063,0.981,0.997,0.969,1.07,1.2 +NM_006336,0.732,1.309,1.108,0.673,0.859,1.849,0.823,0.559,1.043,0.788,1.43,0.66,0.492,0.7,1.273,1.895,0.75,0.966,0.984,1.482,0.478,0.767,1.361,0.664,0.956,0.793,1.043,0.714,0.705,1.615,0.841,2.108,1.047,1.458,0.369,0.751,1.811,0.905,1.506,0.85,0.823,1.613,1.114,1.05,0.809,1.309,0.855,0.699,1.501,0.743,1.254,0.681,0.855,1.157 +NM_006337,0.67,0.77,0.989,0.913,0.8,1.099,0.67,0.456,1.021,0.947,1.086,0.947,0.603,0.641,0.797,1.32,0.782,0.899,1.149,1.216,0.461,0.752,1.31,1.132,0.767,0.882,0.947,0.727,0.52,1.286,0.779,1.079,1.146,1.321,0.193,1.695,1.039,0.631,1.64,0.924,0.917,0.961,0.776,2.101,0.89,1.086,1.138,0.743,1.136,0.686,1.035,0.826,0.897,1.339 +NM_006338,1.241,1.118,1.026,1.003,1.308,0.87,0.968,0.953,1.052,1.052,0.898,1.055,1.034,0.973,1.024,0.881,1.05,1.044,1.129,0.914,1.008,1.35,0.958,1.288,1.0,0.961,0.998,1.008,1.156,0.948,1.083,1.048,1.141,0.968,1.006,1.029,0.92,1.014,0.978,0.959,1.261,0.922,1.041,0.746,1.046,0.879,0.951,1.195,0.842,1.016,0.964,1.031,1.045,0.86 +NM_006339,0.953,0.995,1.006,0.99,0.966,1.123,0.844,0.824,0.822,0.877,1.033,0.756,0.997,0.904,1.025,1.086,0.993,0.95,0.833,0.906,1.009,0.882,1.227,0.997,0.809,0.913,0.995,0.816,1.296,1.059,0.858,1.095,1.112,1.253,0.782,0.802,0.976,0.975,1.2,0.977,1.083,1.223,1.261,1.189,0.896,0.854,0.834,0.926,0.83,1.023,1.002,0.781,0.998,1.042 +NM_006340,4.035,1.907,2.436,2.225,2.8049999999999997,1.653,1.585,2.4850000000000003,3.549,2.303,1.208,2.586,3.569,2.126,1.825,1.548,3.266,2.7279999999999998,2.8259999999999996,1.424,3.0250000000000004,6.139,1.346,2.926,2.012,5.224,2.814,2.1870000000000003,2.239,1.798,2.9859999999999998,1.938,2.069,1.9749999999999999,4.2940000000000005,1.4889999999999999,1.214,4.517,3.2640000000000002,1.194,3.041,1.55,1.447,2.314,2.952,1.083,1.792,7.009,1.125,3.214,1.699,1.527,2.231,1.875 +NM_006341,0.624,1.188,1.28,0.771,0.657,0.954,0.62,0.561,0.893,0.951,0.852,0.889,0.914,0.819,0.967,1.229,0.862,0.739,1.319,0.684,0.808,0.773,1.175,1.02,0.806,0.797,1.537,0.603,0.538,0.929,0.725,1.882,4.408,1.254,0.442,1.589,0.801,0.892,1.796,2.095,0.983,1.014,0.978,2.741,0.913,0.768,0.924,0.701,0.764,0.996,0.919,1.662,1.209,2.465 +NM_006342,0.66,0.791,0.998,0.928,0.868,1.058,0.871,0.716,1.06,1.002,0.722,0.805,0.781,0.552,0.985,1.403,1.043,0.965,1.125,0.795,0.781,0.784,1.408,1.068,0.676,0.818,1.574,0.657,0.515,1.004,0.842,1.088,4.004,0.913,0.584,1.163,0.804,0.882,2.51,1.834,0.856,0.834,0.669,2.112,1.097,0.76,1.033,0.829,1.263,0.936,1.091,0.935,0.89,2.202 +NM_006343,1.175,0.975,0.977,0.888,0.963,1.037,1.013,0.803,0.946,0.902,1.128,0.916,0.896,0.973,1.207,1.075,0.934,0.919,1.078,0.912,0.759,0.827,0.999,0.914,1.037,1.083,0.873,0.851,0.711,1.222,0.846,1.566,0.95,0.894,1.019,0.807,1.181,0.99,0.902,1.193,0.883,1.452,0.905,1.104,0.962,1.048,0.837,0.974,0.977,1.006,1.066,1.02,1.186,1.589 +NM_006344,1.001,1.003,1.318,0.811,1.135,1.11,1.192,1.115,1.241,0.987,0.799,1.008,1.51,0.841,1.256,0.747,1.815,0.985,0.92,0.848,1.001,1.317,1.108,1.535,1.056,1.136,2.183,0.874,0.634,2.273,0.957,0.746,0.72,1.385,0.769,0.799,0.979,1.245,0.973,0.701,1.491,1.078,0.902,0.601,1.298,0.863,0.762,0.955,0.791,1.209,1.016,0.895,1.686,0.909 +NM_006345,0.601,1.183,1.011,0.633,0.897,2.171,0.737,0.889,1.188,0.691,1.462,0.988,0.863,0.541,1.324,3.139,0.935,0.962,1.43,1.566,0.414,0.944,1.707,1.082,0.729,0.571,1.042,0.99,0.531,1.444,0.999,1.327,1.884,1.999,0.482,0.635,1.442,1.074,1.387,0.747,0.98,1.517,0.767,0.61,0.89,1.842,0.996,0.847,1.311,0.734,1.468,0.573,0.792,1.217 +NM_006347,0.84,0.906,1.007,0.932,0.747,1.001,0.622,0.535,1.073,1.095,1.024,1.129,0.853,0.613,0.93,1.643,0.884,0.966,1.317,0.942,0.658,0.741,1.492,1.306,0.677,0.912,1.486,0.887,0.433,0.976,0.811,1.33,4.631,1.136,0.347,1.207,1.018,0.875,1.538,0.756,1.045,0.99,0.68,1.96,0.852,0.939,1.089,0.736,1.1,0.795,0.936,1.275,0.999,2.156 +NM_006348,0.86,1.003,1.049,0.954,1.07,0.942,0.911,1.06,1.202,1.02,0.814,0.945,0.809,1.03,0.955,1.028,0.901,0.877,1.064,1.133,1.034,0.921,1.299,1.073,1.02,1.163,0.939,1.109,1.04,1.007,1.055,1.054,1.391,1.1,1.021,1.006,0.901,0.94,1.076,1.026,1.066,1.038,1.177,0.943,0.947,0.978,1.049,0.925,1.04,0.934,0.939,0.995,0.986,1.195 +NM_006349,0.58,0.896,0.92,0.821,0.696,1.448,0.731,0.576,0.8,0.856,1.041,0.705,0.783,0.38,0.778,1.886,0.735,1.274,0.719,1.102,0.434,0.708,1.644,0.836,0.829,0.866,0.828,0.689,0.554,1.897,0.72,1.507,1.041,1.586,0.297,0.63,1.331,0.772,1.949,1.078,0.791,1.316,0.509,1.615,0.833,1.164,1.143,1.034,1.146,0.716,1.144,1.481,0.662,1.238 +NM_006350,0.977,0.86,0.935,1.098,0.941,0.996,0.845,1.061,0.807,1.158,1.019,0.93,1.173,0.974,0.882,1.035,0.938,1.078,0.924,1.036,1.182,0.969,0.907,1.019,1.078,1.086,1.069,1.081,0.967,0.976,1.033,1.042,0.995,0.961,1.046,0.998,1.006,0.992,1.019,1.018,0.833,0.906,1.106,0.782,0.858,0.905,0.98,0.865,1.032,1.287,1.017,1.472,0.934,1.028 +NM_006351,0.833,0.905,0.898,0.93,0.944,0.956,0.76,0.84,0.992,1.056,0.878,1.082,0.971,0.652,0.885,1.371,0.922,0.972,1.096,0.872,0.875,0.97,1.382,1.08,0.865,1.015,1.201,0.88,0.549,0.911,1.03,0.97,1.287,1.068,0.615,1.176,0.865,0.895,1.453,0.863,0.93,1.111,0.655,1.335,1.139,0.924,0.857,0.973,0.997,1.172,0.962,0.783,0.922,1.573 +NM_006352,0.831,1.055,0.943,0.8,0.965,1.079,1.02,0.855,0.769,0.906,0.995,0.846,0.835,0.762,0.926,0.994,0.956,0.947,0.736,1.168,0.825,0.776,1.043,0.972,1.103,0.942,1.021,0.959,0.788,1.05,1.019,1.09,1.29,1.193,0.874,0.896,1.173,0.91,1.265,0.993,0.992,0.922,0.864,0.868,0.883,1.067,0.995,0.871,0.998,0.956,0.882,0.897,0.829,1.421 +NM_006354,0.709,1.12,0.795,0.972,0.65,1.897,0.597,0.557,0.676,0.659,1.402,0.723,0.776,0.479,0.889,1.976,0.749,0.778,1.079,1.042,0.71,0.811,1.277,0.876,0.859,0.898,0.994,0.559,0.647,1.78,0.718,1.078,1.203,2.382,0.318,0.729,1.151,0.707,1.939,0.709,0.781,1.369,0.57,1.611,0.749,0.925,0.893,0.927,0.786,0.786,1.11,0.61,1.178,1.142 +NM_006355,0.877,0.854,1.413,0.755,0.893,1.279,0.869,0.729,1.267,0.919,1.137,0.76,0.799,0.672,0.94,1.002,0.879,0.747,0.955,1.206,0.642,1.094,0.92,0.989,0.793,0.776,1.524,1.1,0.642,1.185,0.877,1.179,1.459,1.096,0.476,0.758,0.951,1.039,1.061,1.073,0.943,1.093,0.832,0.983,0.741,1.043,0.98,0.606,0.998,0.815,1.046,1.067,0.972,1.763 +NM_006356,0.629,0.901,1.101,0.583,0.887,1.116,0.466,0.417,1.3,1.091,1.061,0.596,0.597,0.522,0.919,1.924,0.866,1.072,1.421,0.806,0.499,0.808,1.256,0.988,0.624,0.953,1.205,1.113,0.355,1.059,1.147,1.032,2.183,1.274,0.186,0.605,1.164,0.969,1.348,0.417,1.186,1.056,0.482,1.151,1.035,0.964,1.005,0.764,1.108,0.863,1.115,0.781,0.899,1.457 +NM_006359,0.759,0.951,1.12,0.652,0.941,1.194,0.747,0.586,1.047,1.08,1.24,0.736,0.671,0.786,0.849,1.968,0.771,1.107,1.15,1.061,0.733,0.787,1.051,1.002,0.632,0.77,1.361,0.959,0.745,1.17,0.949,1.155,1.921,1.317,0.483,0.701,1.564,0.9,1.254,0.704,0.994,0.983,0.746,0.903,1.003,1.053,0.899,0.815,0.935,0.924,1.06,0.938,0.937,1.085 +NM_006360,0.729,0.867,1.163,0.892,0.877,0.722,0.536,0.27,1.492,1.499,1.252,0.381,0.434,0.722,1.03,1.436,0.746,0.721,0.976,0.954,0.544,0.319,1.417,0.997,0.523,0.843,1.181,1.119,0.174,1.201,1.032,0.92,2.032,1.265,0.169,1.603,0.933,0.707,1.842,0.607,1.355,1.032,0.738,1.13,1.236,1.021,1.003,0.457,1.194,0.693,1.149,1.104,1.367,1.658 +NM_006362,0.878,0.881,1.563,0.969,1.071,0.821,0.633,0.587,1.495,1.374,0.736,0.844,0.662,0.885,0.969,0.92,1.118,0.894,1.096,1.007,0.606,0.933,1.143,1.312,0.641,1.041,1.588,0.999,0.594,0.928,1.198,1.814,1.78,1.079,0.502,1.557,0.766,0.943,1.187,1.633,1.107,1.079,0.806,1.099,1.244,0.832,0.884,1.005,0.883,1.181,1.001,0.836,1.384,1.363 +NM_006364,0.913,0.847,1.016,0.99,0.889,0.842,1.078,0.882,1.111,1.03,0.98,0.878,0.89,0.905,1.115,1.156,0.891,0.881,0.985,1.054,1.026,0.964,1.098,0.876,0.863,0.994,1.036,0.835,1.078,1.011,0.925,0.985,1.051,1.001,0.821,0.936,1.028,0.922,0.958,0.925,0.893,1.066,0.934,1.11,0.948,1.017,1.082,0.985,1.282,1.008,1.012,0.974,1.087,1.105 +NM_006365,0.921,0.916,0.921,0.966,0.945,1.02,1.322,1.064,1.004,0.929,0.989,0.854,0.973,0.892,0.905,1.021,1.031,0.981,1.024,0.961,1.136,0.97,1.1,0.916,0.999,1.057,1.046,0.953,0.845,0.939,0.952,0.999,0.912,0.91,0.902,6.141,1.064,1.004,1.203,1.124,0.844,1.066,0.899,1.025,0.972,1.002,1.039,1.034,0.941,1.055,1.089,0.973,1.004,0.996 +NM_006366,1.038,0.879,1.025,0.933,0.998,0.877,1.044,1.032,1.11,1.173,0.84,1.166,0.895,0.966,0.98,1.026,1.146,1.1,0.99,0.928,0.944,1.043,1.071,1.043,0.953,0.931,0.925,1.144,0.817,0.981,1.128,1.271,1.048,1.044,0.945,0.907,0.939,1.091,1.062,0.893,1.17,1.03,1.14,1.021,0.953,0.85,0.987,1.082,0.956,1.078,1.054,0.945,1.172,1.018 +NM_006367,0.863,0.761,1.107,1.094,0.838,1.294,0.597,0.367,1.056,0.915,1.182,0.558,0.538,0.609,0.947,1.535,1.031,1.12,0.93,1.039,0.399,0.663,1.085,0.865,0.644,0.895,1.266,0.735,0.541,1.188,0.893,0.965,1.456,1.17,0.978,0.859,1.413,0.838,1.658,1.195,0.944,1.115,0.807,1.34,1.114,1.272,1.111,0.736,1.565,0.956,1.337,1.055,0.954,1.439 +NM_006368,0.429,1.235,0.697,0.691,0.597,1.297,0.886,0.442,0.658,0.796,0.8,0.699,0.483,0.438,0.902,1.12,0.51,1.224,0.634,1.248,0.512,0.557,1.399,0.765,0.667,0.496,0.658,0.595,0.512,1.609,0.58,2.761,1.695,1.314,0.311,0.972,1.103,0.591,1.085,1.113,0.772,1.527,0.743,1.053,0.629,1.419,1.103,0.516,1.137,0.462,1.266,1.974,0.546,1.832 +NM_006369,0.779,0.941,1.199,0.666,0.966,1.107,0.573,0.503,1.547,1.312,0.82,0.87,0.614,0.731,0.86,1.169,0.959,0.957,1.147,0.984,0.478,0.824,1.124,1.198,0.517,1.066,1.226,0.905,0.41,1.132,1.069,1.411,1.003,0.997,0.43,0.794,0.994,1.122,1.031,0.611,1.22,1.057,0.712,0.858,1.123,0.973,1.002,0.971,0.961,0.78,0.998,0.892,1.013,1.524 +NM_006370,0.96,1.3,1.248,0.73,1.185,0.935,0.535,0.498,1.335,1.148,1.098,0.519,0.579,0.871,0.876,1.084,1.094,0.957,1.334,1.093,0.744,0.588,1.056,0.944,0.681,1.075,1.124,1.314,0.329,1.041,1.441,1.005,0.943,1.405,0.842,0.725,1.031,1.028,1.25,0.73,1.223,1.143,0.796,1.368,1.013,0.96,1.194,0.785,1.1,0.906,1.003,0.672,0.934,1.117 +NM_006371,0.744,1.432,1.059,0.779,0.94,0.957,1.05,0.752,0.903,0.937,1.163,0.917,1.022,0.803,1.172,1.18,0.895,0.76,0.995,0.961,0.78,0.793,1.321,0.997,0.931,0.858,1.244,0.908,1.016,1.261,0.812,1.731,1.071,1.402,0.553,0.725,1.043,0.929,1.003,0.939,1.009,1.648,0.863,0.87,0.954,1.085,0.928,0.932,0.821,0.894,1.206,1.154,0.819,1.269 +NM_006372,0.711,0.789,1.262,0.618,1.028,0.885,0.516,0.475,1.506,1.414,0.77,0.843,0.531,0.759,1.122,1.587,1.052,0.974,1.293,0.704,0.649,0.803,1.541,1.606,0.476,0.817,1.872,0.855,0.408,0.948,1.043,1.078,1.518,0.824,0.369,0.813,0.947,1.031,1.42,0.997,1.426,0.808,0.646,1.011,1.336,0.982,1.117,0.793,0.91,0.955,1.064,0.846,1.201,1.325 +NM_006373,1.743,0.86,1.644,0.841,2.049,0.863,0.517,2.686,2.162,1.491,0.702,2.042,2.005,1.233,1.067,0.934,1.757,1.395,2.107,0.694,1.568,3.857,0.833,2.286,0.638,2.924,1.406,1.741,0.715,0.889,2.22,1.817,1.01,0.956,2.531,0.748,0.666,2.972,1.152,1.264,1.705,0.975,0.583,1.188,1.587,0.656,1.199,3.702,0.671,1.446,0.918,0.853,1.022,0.901 +NM_006374,0.796,0.936,1.146,0.619,0.812,0.942,0.58,0.503,0.905,0.863,1.094,0.742,0.599,0.669,1.086,1.54,0.787,0.74,1.049,1.092,0.53,0.725,1.277,1.209,0.586,0.951,0.922,0.644,0.421,0.801,0.803,1.955,1.385,1.727,0.241,1.219,1.06,0.68,1.032,1.472,0.663,1.05,0.72,1.787,1.07,1.048,0.81,0.726,0.799,0.848,1.089,0.588,0.999,2.693 +NM_006375,1.019,0.996,1.067,0.98,0.925,0.939,0.906,0.991,0.926,1.006,0.991,1.007,0.963,1.053,1.087,1.187,0.971,1.087,1.011,0.982,0.963,1.055,1.027,0.909,0.892,0.917,1.078,1.018,1.444,0.965,1.114,0.935,1.175,1.093,1.041,0.983,0.93,0.943,1.009,1.013,0.919,0.954,1.032,1.219,0.987,0.966,0.979,0.972,0.906,1.037,0.941,1.054,1.066,0.981 +NM_006377,1.109,0.715,1.145,0.898,0.956,0.983,0.487,0.843,1.223,0.953,0.824,0.891,0.878,0.938,2.111,1.562,1.403,0.994,1.612,1.263,0.769,1.168,0.979,1.291,0.787,1.002,1.123,1.023,0.52,0.892,1.084,1.234,1.067,1.174,1.468,0.565,0.999,1.113,1.256,0.481,1.265,0.94,0.65,1.027,1.213,1.051,0.973,0.995,0.817,1.184,1.288,0.754,1.006,1.028 +NM_006378,0.848,0.991,2.1,0.651,1.239,0.797,0.792,0.943,1.918,0.74,0.445,0.964,0.685,1.038,1.057,0.734,1.235,0.996,1.419,0.984,0.61,1.767,0.772,1.767,0.466,0.818,1.575,1.586,0.539,1.398,1.508,1.757,1.895,1.253,0.396,0.386,0.742,1.851,0.937,1.795,1.914,1.03,0.328,0.768,1.182,0.594,1.137,1.411,0.461,1.051,0.899,0.781,0.805,2.02 +NM_006379,0.729,1.229,1.016,0.885,0.947,1.736,1.401,0.601,0.885,0.806,1.298,0.808,0.883,0.78,1.005,1.912,0.861,1.213,0.829,1.359,0.716,0.778,1.494,0.743,0.973,0.716,1.063,0.758,1.033,1.922,0.825,1.63,1.714,1.002,0.655,0.819,1.396,0.756,2.168,1.122,0.806,1.072,0.769,0.794,0.998,1.387,1.459,0.791,1.173,0.833,1.568,1.311,0.724,1.394 +NM_006380,0.931,1.233,1.112,0.859,0.986,0.808,0.929,0.833,1.208,0.963,1.09,1.032,1.015,0.783,0.932,1.302,0.992,0.863,0.946,1.148,0.848,0.942,1.25,1.116,0.766,0.82,1.011,0.999,0.737,1.419,0.969,1.273,0.98,1.166,0.846,0.935,1.009,0.994,0.914,0.789,0.997,1.107,0.8,0.96,1.071,1.069,1.167,0.908,1.125,0.935,0.999,1.137,0.813,1.379 +NM_006383,1.015,0.902,1.025,0.876,0.983,1.176,0.837,0.83,0.96,0.805,1.565,0.953,0.931,0.899,0.829,1.308,1.014,0.794,0.97,1.231,1.016,0.968,1.17,0.817,0.87,0.805,1.019,0.876,0.817,1.022,0.827,1.14,1.118,1.087,1.016,1.124,1.24,0.914,1.141,1.069,0.921,1.326,1.131,1.252,0.951,1.107,1.326,0.907,1.119,0.944,1.035,0.982,0.875,1.402 +NM_006384,0.468,1.163,1.131,0.862,0.737,1.7,0.797,0.317,0.697,0.885,1.544,0.844,0.504,0.377,1.046,1.905,0.908,1.274,0.774,2.245,0.319,0.531,2.097,0.816,0.642,0.582,0.919,0.742,0.517,1.592,0.5,0.757,0.985,1.56,0.107,1.805,1.683,0.668,1.615,0.724,1.042,1.531,1.196,0.832,0.82,1.982,1.497,0.498,1.557,0.483,1.837,1.17,0.668,1.138 +NM_006385,0.892,1.29,0.955,0.967,1.062,1.58,1.016,0.795,1.046,1.001,1.057,0.928,0.955,0.876,1.057,0.75,0.762,1.04,0.91,1.285,0.898,1.002,1.232,0.979,1.057,0.84,0.996,1.027,1.066,1.304,0.903,1.161,1.118,1.358,0.764,1.077,1.161,0.999,1.114,0.945,0.897,0.969,0.781,0.908,0.996,1.247,0.903,0.925,0.824,0.863,0.96,0.826,0.961,1.233 +NM_006386,0.95,0.884,0.89,0.915,1.021,1.092,0.799,0.893,1.372,1.124,1.024,0.96,0.97,0.99,0.756,1.081,0.916,0.947,1.024,0.898,1.106,0.856,0.928,1.175,1.059,0.914,1.095,1.032,0.936,0.98,1.127,1.019,1.153,0.928,1.114,1.109,0.998,0.94,1.077,0.995,1.299,1.161,1.121,0.86,0.989,1.247,1.379,0.795,1.312,0.975,0.919,0.815,0.977,0.981 +NM_006387,0.822,1.083,1.011,0.787,0.912,0.997,0.661,0.602,1.051,1.0,0.733,0.763,0.647,0.878,0.883,0.95,1.04,0.826,0.95,0.842,0.847,0.974,1.337,1.046,0.772,0.925,1.384,0.758,0.684,1.069,0.884,1.165,1.349,1.087,0.666,0.965,1.007,1.094,1.264,1.133,1.031,1.064,0.797,1.5,0.914,0.776,0.943,0.861,1.009,0.957,0.946,0.967,0.88,1.381 +NM_006389,0.849,1.109,0.77,1.232,0.79,1.243,0.77,0.66,0.905,0.838,1.114,0.715,0.76,0.829,0.862,1.408,0.898,0.97,1.033,0.757,0.829,0.978,1.074,0.995,1.753,0.889,1.125,0.654,1.052,1.329,0.895,1.265,1.336,1.186,0.599,1.17,1.156,0.899,2.805,0.962,0.866,1.27,1.306,1.335,0.889,0.971,0.89,0.878,1.205,0.927,1.115,0.822,0.884,1.136 +NM_006390,1.022,0.97,0.905,0.858,1.171,0.951,0.723,0.909,1.015,1.159,1.0,0.916,0.898,0.991,0.936,0.915,1.091,1.091,0.924,0.969,0.897,1.001,1.279,1.064,0.954,1.05,0.894,0.999,1.026,0.999,0.962,0.875,1.006,1.04,0.959,1.1,1.01,1.012,0.891,1.0,0.935,0.991,0.889,1.28,0.969,1.038,0.999,0.976,1.018,1.05,1.079,0.918,1.123,1.141 +NM_006391,0.735,1.095,1.411,0.814,1.025,0.934,0.808,0.708,1.293,1.265,0.827,0.974,0.847,0.803,0.949,1.352,0.873,0.878,0.851,1.125,0.704,0.713,1.41,1.144,0.731,0.716,1.363,1.016,0.731,1.233,1.237,0.995,2.342,1.14,0.759,0.947,0.85,0.977,1.159,0.977,1.325,1.106,0.877,0.911,1.03,1.182,1.128,0.672,1.374,0.971,1.148,0.997,0.82,1.824 +NM_006392,0.748,0.94,1.033,0.824,1.017,0.82,0.672,0.617,1.327,1.776,0.69,1.384,0.677,0.749,0.804,0.898,0.944,0.94,1.0,0.987,0.765,0.915,1.594,1.453,0.583,1.136,1.357,0.953,0.688,0.865,0.857,0.898,3.47,0.975,0.478,2.318,0.845,1.057,1.58,1.996,1.154,0.93,0.722,1.929,1.42,0.709,1.037,0.856,1.103,0.775,1.035,1.211,1.152,3.121 +NM_006393,1.398,1.087,2.875,0.661,2.03,0.689,0.518,1.364,2.724,1.724,0.499,1.397,1.239,1.269,1.212,0.837,1.28,1.401,2.769,1.01,1.192,1.424,0.677,1.597,0.489,1.474,1.473,1.937,0.486,0.77,1.852,0.62,2.372,1.31,0.666,0.285,0.484,2.002,0.67,0.849,2.369,0.53,0.468,1.051,1.316,0.482,1.048,1.466,0.454,1.482,0.852,0.727,1.317,0.735 +NM_006395,0.598,1.092,1.654,0.662,0.948,0.947,0.671,0.476,1.273,1.32,0.887,0.81,0.514,0.471,0.772,1.001,1.349,1.066,1.28,1.114,0.617,0.845,1.07,0.993,0.636,0.852,1.344,0.824,0.661,1.455,0.842,1.195,1.116,1.107,0.376,0.942,0.861,0.927,1.254,1.018,1.235,0.983,0.671,0.956,1.186,1.032,0.935,0.863,1.176,0.938,0.996,1.155,1.042,1.327 +NM_006396,0.696,1.189,1.107,0.865,0.789,0.996,0.866,0.585,0.878,1.271,0.942,0.983,0.779,0.506,0.885,1.16,0.944,1.081,0.982,0.998,0.81,0.701,1.124,1.097,0.9,1.044,1.081,0.874,0.741,0.924,0.837,1.393,3.045,1.451,0.428,2.434,0.856,0.696,1.797,1.147,1.094,1.155,0.797,2.071,1.427,0.909,1.094,0.897,0.82,0.983,0.92,1.2,1.456,1.737 +NM_006397,0.753,1.129,1.032,0.812,0.71,1.111,0.668,0.5,0.918,1.075,0.719,0.979,0.819,0.62,0.897,0.958,0.814,0.897,1.466,0.674,0.752,0.886,2.24,1.213,0.668,0.643,1.775,0.7,0.49,0.898,0.748,1.058,4.146,1.295,0.294,1.593,0.841,0.933,1.536,1.096,1.094,0.961,0.645,2.251,1.093,0.814,1.007,0.781,1.087,0.957,1.156,0.994,1.07,2.193 +NM_006398,0.789,1.636,0.616,0.94,0.489,2.376,1.762,0.479,0.613,0.45,0.884,0.478,0.639,0.434,1.332,0.452,0.495,1.441,0.513,1.223,0.471,0.496,0.662,0.627,0.7,0.481,1.985,0.565,0.59,0.664,0.581,1.865,9.346,1.929,0.474,0.961,1.511,0.497,2.989,6.085,0.676,3.337,0.7,3.822,0.512,0.693,1.693,0.518,0.535,0.55,1.641,2.788,0.91,8.065 +NM_006399,0.982,1.066,0.982,0.937,0.837,0.987,1.196,0.846,0.794,0.893,1.051,0.877,0.975,0.676,0.814,1.218,0.823,0.846,0.888,1.056,0.812,0.736,1.287,1.094,0.88,0.732,0.867,0.804,0.968,1.123,0.8,1.19,1.076,1.043,0.942,1.623,0.882,0.949,1.775,1.929,0.862,1.219,1.031,0.875,0.943,0.874,1.001,1.001,0.885,0.968,1.086,1.056,1.149,1.211 +NM_006400,0.875,0.613,1.29,0.792,1.034,1.312,0.412,0.82,1.448,1.145,1.0,1.206,0.798,0.784,1.038,1.562,1.032,0.883,1.801,0.803,0.707,1.325,0.774,1.416,0.512,1.263,1.367,1.028,0.41,0.95,1.174,0.906,1.596,1.34,0.546,0.584,0.799,1.372,1.265,0.563,1.204,1.028,0.598,0.853,1.196,0.981,0.929,1.12,0.777,1.031,0.874,0.598,1.203,1.05 +NM_006401,0.528,1.048,1.025,0.521,0.884,1.238,0.431,0.621,1.146,0.943,0.898,1.088,0.676,0.623,0.861,1.458,0.759,0.831,1.456,0.964,0.597,0.996,1.403,1.306,0.435,0.738,1.355,0.882,0.46,1.154,0.862,1.423,2.105,1.387,0.403,0.831,1.048,1.374,1.242,0.966,1.225,1.126,0.527,1.193,0.88,0.863,0.911,0.871,1.021,0.708,0.995,0.619,0.888,1.848 +NM_006402,0.543,0.886,1.018,0.762,0.786,2.057,0.594,0.547,1.148,0.838,1.046,0.818,0.624,0.544,1.08,2.218,0.762,1.107,1.232,1.354,0.486,0.785,1.054,1.044,0.584,0.657,1.26,0.658,0.629,1.317,0.92,1.12,2.377,1.869,0.36,0.596,1.321,0.82,1.494,0.681,0.974,0.972,0.607,1.002,0.864,1.014,1.004,0.732,0.996,0.621,1.149,0.773,0.92,1.865 +NM_006403,0.551,1.408,0.642,0.843,0.773,1.884,0.92,0.646,0.688,0.599,1.176,0.585,0.624,0.468,1.353,1.527,0.563,0.994,0.591,1.357,0.665,0.526,1.793,0.575,0.895,0.613,0.54,0.557,0.824,1.564,0.579,1.972,2.016,1.596,0.526,0.861,1.457,0.689,1.188,0.917,0.603,1.754,1.666,1.26,0.586,1.716,0.727,0.516,0.961,0.562,1.301,1.391,0.795,1.153 +NM_006404,0.721,1.005,0.788,0.747,0.82,1.393,0.95,0.754,0.767,0.995,1.146,0.905,0.858,0.798,0.902,1.931,0.832,0.886,0.837,0.805,0.73,0.826,1.583,0.965,0.799,0.82,0.97,0.79,0.854,1.202,0.752,2.558,0.956,1.254,0.87,1.454,0.958,1.035,1.666,1.566,0.932,1.153,0.818,2.29,0.729,1.065,1.45,0.829,0.949,0.888,1.147,1.739,0.801,1.608 +NM_006405,0.589,1.054,0.869,0.948,0.713,1.445,0.923,0.501,0.842,0.904,1.675,0.552,0.566,0.65,0.947,2.157,0.695,1.0,0.974,1.37,0.799,0.561,1.664,0.731,0.758,0.618,0.824,0.608,0.604,1.747,0.872,1.475,1.472,1.892,0.416,0.712,1.335,0.735,1.323,0.874,0.848,1.426,0.977,1.533,0.728,1.263,0.972,0.456,1.279,0.715,1.437,0.939,1.049,1.403 +NM_006406,0.511,1.296,0.702,0.635,0.681,1.443,0.908,0.545,0.912,0.659,1.481,0.807,0.675,0.326,0.758,2.003,0.43,1.122,1.092,1.025,0.323,0.697,1.646,1.001,1.25,0.562,0.847,0.847,0.481,1.556,0.691,1.443,2.552,1.534,0.0712,1.474,1.44,0.852,1.607,0.596,0.93,1.596,0.445,0.691,0.712,1.127,1.237,0.554,1.134,0.504,1.596,1.302,0.533,1.172 +NM_006407,0.538,1.75,1.238,0.644,0.897,2.331,0.955,0.77,0.814,0.593,1.983,0.914,0.783,0.657,1.255,3.262,0.662,1.194,0.906,1.422,0.281,0.933,1.923,0.788,0.668,0.496,1.472,0.866,0.735,1.779,0.836,1.174,0.974,1.714,0.12,0.6,2.066,0.992,1.738,0.87,0.889,1.824,0.665,0.615,0.573,1.968,1.008,0.653,1.434,0.616,1.621,1.074,0.542,1.286 +NM_006408,0.0504,2.886,0.0493,2.282,0.0612,4.694,1.938,0.0457,0.0579,0.052,3.23,0.0587,0.0692,0.0525,1.064,2.759,0.0561,2.563,0.0572,3.129,0.0634,0.0676,4.756,0.0567,1.942,0.0663,0.0585,0.0515,1.657,5.967,0.0511,0.72,0.686,4.292,0.0661,2.827,2.436,0.0564,4.022,0.159,0.0531,2.893,0.864,1.992,0.0703,2.508,2.607,0.0569,2.578,0.0575,4.001,0.677,0.063,1.483 +NM_006409,0.682,0.956,1.078,0.842,0.874,1.365,0.914,0.421,0.979,1.12,1.124,0.682,0.371,0.518,0.814,1.413,0.774,1.237,1.173,0.976,0.463,0.825,1.459,1.003,0.757,0.924,0.791,0.888,0.774,1.452,0.914,0.923,1.426,1.549,0.84,0.591,1.253,0.667,1.859,0.705,0.996,1.122,0.598,1.638,1.197,1.179,0.978,0.926,1.194,0.819,1.133,1.349,0.987,1.056 +NM_006410,0.617,1.034,1.01,0.819,0.895,1.468,0.926,0.589,0.905,0.857,1.49,0.808,0.632,0.523,0.994,1.753,0.788,1.028,0.745,1.791,0.595,0.635,1.144,0.828,0.805,0.861,0.681,0.8,0.995,1.751,0.774,1.106,0.893,1.498,0.69,1.951,1.58,0.772,1.224,0.896,0.846,1.454,1.387,0.865,0.828,1.675,1.167,0.705,1.395,0.738,1.061,0.992,0.767,1.258 +NM_006411,1.071,0.88,1.161,1.135,1.043,0.983,1.021,1.171,0.988,1.051,0.883,0.866,1.033,0.877,0.957,0.945,1.033,1.059,1.087,1.081,0.963,0.975,1.06,0.96,0.969,1.005,1.21,0.913,0.944,1.048,1.035,0.985,0.781,0.984,1.039,0.999,0.998,1.149,1.034,1.064,1.012,0.93,1.028,0.909,0.968,0.964,1.201,1.079,0.974,0.96,1.093,0.962,0.988,1.026 +NM_006412,0.5,1.255,1.07,0.713,0.75,1.3,0.557,0.395,0.793,0.814,1.057,0.702,0.418,0.316,1.389,2.489,0.801,1.135,0.809,1.486,0.297,0.562,1.692,0.949,0.357,0.694,0.73,0.664,0.606,2.016,0.49,1.37,2.142,1.012,0.183,6.47,2.112,0.749,1.94,2.181,0.885,1.154,2.238,1.581,1.0,1.847,1.84,0.632,2.778,0.592,1.485,1.18,0.694,1.999 +NM_006414,0.784,1.084,1.067,0.892,0.872,1.238,0.886,0.717,0.849,1.053,1.026,0.868,0.893,0.647,0.976,1.158,0.821,0.834,0.992,0.984,0.736,0.921,1.273,1.004,0.769,0.932,0.985,0.861,0.786,1.046,0.821,1.156,1.777,1.065,0.643,0.915,0.939,0.984,1.468,0.801,0.995,1.016,1.082,1.704,1.104,0.87,0.903,0.865,1.131,0.897,0.945,0.882,0.837,1.524 +NM_006415,0.996,0.868,1.553,0.651,1.317,0.848,0.429,1.073,1.781,1.337,0.792,0.901,1.039,0.681,1.009,1.63,1.045,1.113,1.736,0.76,0.462,1.508,1.133,1.459,0.409,1.263,1.785,1.191,0.418,1.12,1.573,0.973,2.065,1.255,1.089,0.42,0.85,1.089,1.28,0.763,1.199,0.901,0.47,1.146,1.591,0.676,0.879,1.787,0.748,1.343,0.839,0.541,0.851,1.18 +NM_006416,0.386,1.834,0.654,0.868,0.548,2.103,0.732,0.47,0.746,0.502,1.526,0.61,0.431,0.471,1.266,2.099,0.435,1.042,0.716,1.758,0.412,0.497,1.776,0.665,0.561,0.43,0.614,0.529,0.537,1.725,0.531,1.818,1.513,2.425,0.22,1.51,1.452,0.524,1.164,0.65,0.559,1.646,0.711,0.695,0.469,1.289,0.999,0.385,1.044,0.436,1.285,0.602,0.422,1.635 +NM_006417,0.794,1.192,1.634,0.911,0.675,1.452,1.87,0.515,0.619,0.598,1.915,0.658,0.576,0.567,1.121,1.161,1.337,0.99,0.62,0.842,0.889,0.612,1.06,0.677,0.72,0.585,0.805,0.605,0.684,1.139,0.543,1.136,3.657,2.111,0.619,0.694,1.818,0.486,1.605,0.605,0.806,1.076,0.779,3.245,0.699,1.017,0.742,0.512,0.6,0.706,1.354,1.423,1.129,5.611 +NM_006418,0.867,1.725,0.824,2.352,0.861,1.24,2.003,0.862,0.756,0.9,4.015,0.871,0.851,0.799,2.703,29.29,0.761,1.297,0.905,2.306,0.776,0.877,35.45,0.877,0.835,0.736,0.85,0.789,0.89,1.442,0.891,32.86,7.049,0.828,0.879,0.822,12.9,0.792,2.862,1.233,0.812,15.01,15.03,0.89,1.058,6.366,4.755,0.812,33.08,0.894,9.214,7.36,0.902,18.83 +NM_006419,0.921,0.905,0.908,1.095,0.893,1.033,0.998,0.976,1.135,1.107,0.865,0.898,1.007,0.903,1.118,0.903,1.087,1.399,0.998,0.895,1.054,0.959,0.945,0.992,1.056,0.939,1.033,1.027,0.887,1.14,0.885,0.95,1.383,0.929,0.948,1.067,0.984,0.879,1.044,1.12,1.075,1.204,0.947,1.026,0.995,0.946,1.057,1.027,0.997,0.835,0.978,1.219,1.178,3.281 +NM_006420,0.855,0.938,1.135,0.848,1.009,0.928,0.832,0.73,1.195,0.993,0.883,0.854,0.826,0.981,1.151,1.216,1.017,0.91,1.273,0.935,0.84,0.924,1.065,0.939,0.801,0.865,1.023,1.132,0.681,0.981,1.154,1.245,2.318,0.921,0.956,0.997,0.879,0.878,1.131,1.124,1.055,0.863,0.818,1.079,1.124,0.978,1.152,0.933,0.993,1.238,0.912,0.976,1.16,1.598 +NM_006421,0.624,1.019,1.206,0.792,0.873,1.14,0.551,0.351,1.006,0.855,1.171,0.475,0.425,0.573,0.994,1.244,0.677,1.041,1.025,1.236,0.458,0.686,1.208,0.817,0.68,0.731,1.132,0.742,0.57,1.208,0.803,0.989,1.423,1.502,0.316,0.859,1.208,0.799,1.31,1.143,0.876,1.089,0.647,1.186,0.953,1.986,0.904,0.696,1.497,0.809,1.378,0.684,0.67,1.144 +NM_006422,1.077,0.988,1.056,0.933,0.947,0.995,0.981,0.986,1.009,1.098,0.979,1.097,0.877,1.112,0.825,1.133,1.047,0.842,1.077,0.92,1.113,1.146,1.058,0.892,0.901,1.103,1.01,1.057,1.149,0.817,0.976,1.025,0.989,0.955,1.067,1.086,1.045,1.014,1.082,1.138,0.937,1.034,1.24,1.039,0.916,0.868,1.08,1.032,1.004,0.981,1.093,1.083,1.112,0.921 +NM_006423,0.556,1.815,0.732,1.105,0.534,1.917,0.998,0.523,0.588,0.66,1.529,0.651,0.651,0.409,0.942,1.802,0.594,1.451,0.981,1.754,0.507,0.583,3.413,0.755,1.294,0.717,0.672,0.532,0.721,2.271,0.629,1.779,2.413,2.315,0.29,1.428,1.311,0.777,2.308,1.654,0.622,2.172,0.634,0.896,0.818,1.42,1.009,0.74,1.044,0.73,1.523,0.972,0.85,0.932 +NM_006424,0.947,0.975,1.018,0.976,1.07,1.001,0.812,0.926,1.015,1.022,0.965,1.08,0.935,1.023,1.259,0.991,1.095,1.209,1.052,1.123,0.857,0.982,0.966,0.943,0.954,0.883,1.007,1.009,0.835,1.046,0.926,1.025,0.925,1.071,0.852,1.02,1.193,0.953,1.145,1.001,0.963,0.965,1.095,0.994,1.0,1.078,0.925,1.053,1.163,1.011,1.022,1.072,0.836,1.005 +NM_006425,0.907,0.852,1.295,0.806,1.022,1.159,0.624,0.889,1.461,0.928,0.842,0.878,0.743,1.174,1.129,1.001,0.906,0.723,1.244,1.035,0.754,1.062,0.92,0.999,0.751,1.142,1.159,1.251,0.645,1.229,1.603,1.126,2.523,1.277,2.133,0.728,0.839,1.074,1.007,0.817,1.259,0.931,0.561,0.724,0.859,0.884,0.949,0.911,0.702,0.849,0.859,0.641,1.02,1.907 +NM_006426,0.963,0.932,1.037,1.115,0.914,0.904,0.797,0.949,1.107,0.834,0.879,1.135,0.888,0.951,1.12,0.902,0.85,1.049,1.023,0.921,0.867,0.941,0.963,1.103,1.009,0.955,1.027,0.952,0.917,1.083,1.127,1.397,0.999,1.231,1.125,0.941,1.03,1.003,1.235,1.663,1.004,1.004,1.099,0.903,1.263,0.875,0.778,1.046,0.999,1.251,0.896,0.921,1.741,1.141 +NM_006427,0.719,1.02,0.856,1.037,0.759,0.945,0.538,0.458,0.959,0.931,1.499,0.758,0.744,0.613,0.827,1.576,0.781,1.022,1.392,0.757,0.709,0.894,1.474,0.874,0.749,1.02,1.254,0.754,0.619,1.019,0.7,1.469,1.757,1.43,0.332,1.015,1.235,1.025,1.793,0.693,0.937,1.138,0.806,2.126,0.873,0.832,1.341,0.932,0.991,0.756,0.956,0.95,0.976,1.022 +NM_006428,0.592,0.841,1.133,0.768,0.933,1.012,1.022,0.457,0.9,1.136,0.867,0.979,0.669,0.621,0.89,1.531,0.892,1.007,1.406,1.099,0.497,0.787,1.035,1.092,0.618,0.801,1.088,0.896,0.55,1.237,0.8,1.797,2.147,1.23,0.29,1.032,1.125,0.907,1.234,0.958,1.487,0.937,0.708,1.217,1.221,1.139,1.614,0.789,1.375,0.836,0.989,1.277,0.993,1.16 +NM_006429,0.75,0.914,0.907,0.692,0.649,0.895,0.493,0.3,1.103,1.005,0.986,0.811,0.562,0.562,0.884,1.469,0.795,0.78,1.286,0.67,0.579,0.75,1.275,1.256,0.582,0.983,1.187,0.762,0.342,0.963,0.836,1.271,2.742,1.2,0.105,0.995,0.933,0.903,1.739,1.168,1.126,1.047,0.536,1.345,1.121,0.84,0.984,0.752,1.039,0.859,1.026,0.935,1.081,1.836 +NM_006430,0.906,0.879,1.089,0.799,0.873,0.696,0.569,0.369,1.302,1.231,0.887,0.849,0.775,0.51,0.811,1.353,0.915,0.875,1.66,0.675,0.77,0.936,1.132,1.304,0.559,1.142,1.304,0.976,0.373,0.828,1.022,1.095,3.072,1.011,0.143,1.163,0.922,1.054,1.962,1.067,1.373,0.929,0.487,1.659,1.187,0.741,1.063,1.008,0.992,0.943,0.909,0.957,1.09,1.821 +NM_006431,0.587,0.887,1.119,0.729,0.875,0.837,0.646,0.407,1.264,1.323,0.815,0.949,0.664,0.451,0.902,1.806,0.762,0.8,1.337,0.717,0.632,0.852,1.25,1.357,0.51,0.752,1.367,0.819,0.346,0.785,0.936,1.163,2.578,1.004,0.107,1.619,0.996,0.924,1.906,1.037,1.273,0.936,0.659,1.206,1.25,0.987,0.991,0.766,1.434,0.823,1.004,1.143,1.25,2.272 +NM_006432,0.759,1.079,1.316,0.708,0.998,1.235,0.673,0.603,1.126,0.961,1.13,0.97,0.717,0.705,0.731,1.296,0.827,0.883,0.921,1.395,0.369,0.616,1.412,0.936,0.747,0.721,1.163,0.955,0.335,1.649,0.815,1.508,0.862,1.506,0.492,0.767,1.137,0.987,0.996,1.338,1.103,1.648,0.908,1.712,0.964,1.073,1.026,0.764,0.767,0.812,1.298,0.951,1.088,1.631 +NM_006433,2.599,2.04,2.3649999999999998,2.101,2.009,2.374,1.748,1.6680000000000001,1.725,1.936,1.9369999999999998,2.0090000000000003,1.812,1.8889999999999998,1.63,1.5619999999999998,1.838,2.2649999999999997,2.036,1.837,1.874,1.8519999999999999,1.8900000000000001,1.9649999999999999,1.842,1.924,1.977,2.383,1.4649999999999999,1.807,1.916,3.194,2.715,1.804,1.732,1.673,1.915,1.661,2.001,2.6719999999999997,1.978,3.763,2.5140000000000002,1.896,1.8010000000000002,1.819,2.427,1.841,1.791,2.036,1.958,2.867,2.3979999999999997,6.838 +NM_006434,1.037,1.009,0.968,1.036,0.97,1.041,1.091,0.826,1.069,0.982,0.947,1.032,1.022,0.971,1.115,1.167,1.063,1.068,1.005,1.207,1.039,1.1,0.92,0.982,0.981,1.064,0.928,1.006,1.122,0.905,1.047,0.909,1.21,0.903,1.06,1.065,0.958,0.949,1.182,1.127,1.084,0.994,0.887,0.981,0.999,0.9,0.919,0.992,0.999,1.169,0.897,0.885,1.223,0.974 +NM_006435,0.786,1.055,0.81,1.346,0.967,0.885,0.714,0.693,1.513,0.895,0.67,0.653,0.546,0.659,1.137,0.982,1.716,0.724,0.69,0.836,0.644,0.567,1.485,0.72,0.819,1.374,0.888,0.686,0.659,0.954,0.924,4.435,2.101,1.336,0.613,1.477,0.715,0.67,2.78,6.986,0.808,1.92,0.762,4.372,0.908,0.6,0.981,0.773,1.372,1.09,0.961,1.816,0.963,4.091 +NM_006437,0.898,0.972,0.957,1.112,0.998,1.106,0.951,0.799,1.045,1.083,1.041,0.886,0.969,0.832,1.021,0.957,1.468,0.933,1.048,0.959,0.927,1.195,1.013,1.034,1.078,1.031,1.02,1.005,0.942,0.95,0.996,1.066,1.055,0.91,1.148,1.203,1.051,1.187,0.928,0.966,1.071,0.899,0.835,1.111,1.166,0.92,1.01,1.099,1.071,1.042,0.859,0.861,0.915,1.071 +NM_006438,1.053,0.984,0.904,0.997,1.009,1.013,1.026,1.045,1.026,1.01,1.101,1.026,0.943,1.043,0.896,1.025,0.94,0.988,0.949,0.896,0.997,1.01,1.023,0.973,1.046,0.987,1.135,1.154,1.043,0.967,1.063,0.901,1.106,1.188,1.123,1.191,0.945,1.027,0.99,1.076,0.978,0.983,1.125,0.849,1.214,1.02,0.954,0.913,1.097,1.041,0.889,0.812,0.918,0.842 +NM_006439,0.941,1.082,0.856,0.982,1.117,0.926,0.972,1.089,1.061,1.03,1.083,1.005,1.01,1.107,0.971,0.937,0.964,0.99,0.849,0.975,1.021,0.998,1.009,0.937,1.025,0.922,0.904,0.971,0.875,1.028,1.026,0.805,1.058,0.944,1.106,1.052,1.112,0.992,0.946,0.907,1.043,0.907,1.021,0.94,0.877,0.876,1.087,1.052,0.883,0.978,1.073,0.973,1.021,0.917 +NM_006440,1.044,1.019,1.097,0.886,0.991,1.08,0.956,1.178,0.981,0.98,0.92,0.93,1.223,1.221,0.907,1.063,1.005,0.965,1.11,0.94,0.876,0.955,1.142,1.203,1.007,0.99,1.15,1.176,1.179,1.035,1.051,0.959,1.182,0.964,0.938,0.987,0.979,0.983,0.982,1.001,1.152,1.005,1.035,1.054,1.001,1.092,0.999,0.952,0.988,0.995,1.051,0.923,0.934,1.018 +NM_006441,0.529,2.139,0.812,0.907,0.606,2.354,0.913,0.519,0.783,0.651,2.211,0.578,0.652,0.52,1.054,2.308,0.548,1.031,0.795,1.215,0.547,0.513,1.45,0.708,0.805,0.587,0.826,0.609,0.773,2.384,0.615,1.111,1.345,2.513,0.426,1.341,2.331,0.67,2.019,0.979,0.671,1.91,0.96,1.068,0.716,1.393,1.265,0.519,1.407,0.504,1.484,0.761,0.682,1.468 +NM_006442,1.111,0.801,1.34,0.578,1.168,0.955,0.557,1.035,1.414,1.596,0.932,1.656,1.008,0.877,1.082,1.5,0.815,1.267,1.875,0.659,0.431,1.189,0.865,2.289,0.519,1.072,1.353,1.639,0.447,1.046,1.424,1.694,2.35,1.059,0.498,0.831,0.785,1.635,1.416,1.14,1.208,0.847,0.482,0.967,1.468,0.955,1.561,0.999,0.746,1.055,0.931,0.91,1.388,1.796 +NM_006443,0.438,1.508,0.447,0.896,0.468,1.801,0.754,0.442,0.482,0.402,2.773,0.915,0.667,0.315,0.783,2.903,0.43,0.786,0.726,1.328,0.481,0.748,1.791,0.727,0.785,0.671,0.653,0.45,0.571,1.431,0.391,1.278,2.325,1.744,0.156,1.335,2.138,0.628,1.918,0.697,0.55,1.824,1.34,1.395,0.576,1.703,0.97,0.735,1.444,0.414,1.322,0.717,0.541,1.009 +NM_006444,0.914,0.95,1.08,1.047,0.988,0.793,0.898,0.886,1.099,1.026,0.986,0.939,0.859,1.007,0.83,1.03,0.979,0.934,1.094,0.799,0.887,0.834,1.115,0.997,0.869,0.846,1.411,0.91,0.86,1.005,0.974,1.128,2.109,1.03,0.895,1.234,0.904,0.835,1.354,1.029,0.926,0.868,0.914,1.213,0.908,0.923,1.037,0.895,1.169,0.931,1.02,0.956,0.959,1.49 +NM_006445,0.842,0.649,1.169,0.682,0.764,0.936,0.521,0.413,0.95,0.772,0.763,0.936,0.589,0.567,0.824,1.196,1.134,1.019,1.556,0.947,1.074,1.057,1.256,0.806,0.762,1.115,1.399,0.545,0.76,1.096,0.858,0.972,1.833,1.28,0.244,0.875,1.117,1.071,1.402,0.975,0.901,1.36,0.605,1.117,1.045,0.702,0.83,0.901,1.068,1.383,0.954,0.752,1.174,1.342 +NM_006446,1.023,0.933,1.0,1.07,1.102,0.991,1.114,1.082,0.974,0.942,0.996,0.966,1.03,1.022,0.979,0.954,1.116,1.087,0.922,1.031,1.085,0.948,0.953,0.938,1.103,1.034,1.024,0.94,2.138,1.142,0.997,0.911,1.039,0.923,0.94,1.06,0.932,0.915,0.943,0.966,1.139,1.066,0.836,0.926,1.051,0.876,0.992,0.98,1.165,0.976,1.049,0.984,1.04,0.911 +NM_006447,0.585,1.103,1.261,0.682,1.084,1.343,0.637,0.63,1.412,0.867,0.91,0.854,0.681,0.725,1.138,1.51,0.863,0.769,1.045,0.959,0.458,0.955,1.297,1.197,0.65,0.669,1.234,0.948,0.502,1.188,1.05,0.89,2.584,1.428,0.408,0.535,0.861,0.972,1.389,0.561,1.178,1.184,0.766,0.62,1.022,1.164,0.963,0.727,0.749,0.722,0.902,0.575,0.819,1.491 +NM_006451,0.966,0.945,0.997,1.089,1.091,1.002,1.394,0.987,0.905,0.863,1.01,1.162,0.983,0.976,0.928,1.016,1.065,1.094,1.108,1.065,0.961,1.121,1.068,1.037,1.057,0.933,0.887,0.951,1.009,1.086,0.927,0.942,0.955,1.12,0.922,0.92,0.942,1.07,0.847,1.07,1.177,1.001,1.146,1.073,1.123,0.984,0.924,1.111,0.898,0.87,0.859,1.057,1.054,1.037 +NM_006452,0.666,1.248,1.134,0.749,0.781,0.966,0.501,0.526,1.219,1.169,0.714,1.072,0.643,0.638,1.048,1.257,0.857,0.697,1.113,0.808,0.694,0.741,1.577,1.485,0.579,0.752,1.655,0.762,0.269,0.784,0.999,1.054,3.353,0.954,0.231,1.093,0.856,0.829,1.844,1.05,1.141,0.938,0.597,1.614,1.01,0.922,1.001,0.568,1.436,0.797,1.255,0.998,1.146,1.654 +NM_006454,0.745,2.36,1.718,0.649,0.923,1.147,0.641,0.427,0.77,0.642,1.299,0.771,0.622,0.566,0.898,1.533,1.061,0.884,0.87,1.907,0.414,0.733,1.534,0.54,0.959,0.905,1.555,0.847,0.512,2.207,0.601,2.242,0.498,1.822,0.147,1.059,1.143,1.235,1.24,0.645,0.993,1.716,0.691,0.905,0.642,1.365,0.998,0.726,0.936,0.821,1.264,0.648,0.787,1.197 +NM_006455,0.56,1.285,0.59,0.642,0.554,1.49,0.722,0.757,0.667,0.689,1.281,0.662,0.58,0.596,0.815,1.49,0.615,0.793,0.687,1.24,0.662,0.597,1.385,0.545,0.801,0.681,0.812,0.721,0.656,2.201,0.651,3.109,2.696,1.746,0.562,1.355,0.981,0.723,1.563,1.674,0.627,1.31,0.768,1.954,0.649,1.206,0.885,0.627,0.719,0.652,1.42,0.868,0.559,1.728 +NM_006456,1.004,0.764,2.22,0.799,1.598,0.63,0.471,0.835,1.535,1.466,0.519,1.712,1.155,1.066,0.853,0.621,1.304,1.102,1.706,0.701,0.836,1.432,0.547,1.539,0.694,1.285,2.663,1.122,0.568,1.015,1.083,1.103,1.01,0.826,0.427,0.499,0.454,1.713,0.677,0.672,1.555,0.796,0.447,1.095,1.186,0.446,1.029,1.169,0.468,1.07,0.583,1.117,1.477,1.036 +NM_006458,1.041,0.901,1.048,0.911,0.955,1.074,1.225,0.865,0.941,0.985,0.906,0.918,1.028,1.061,1.186,1.069,0.895,1.01,1.161,1.123,0.919,0.86,0.941,1.014,0.961,0.989,1.143,0.956,1.295,0.996,0.943,0.972,1.069,0.915,1.007,0.976,1.078,1.066,1.058,0.98,1.114,1.05,1.271,0.952,1.045,0.976,0.947,1.115,1.06,0.993,1.052,1.021,0.841,1.128 +NM_006459,0.808,0.825,1.129,0.623,0.987,1.122,0.603,0.499,0.996,1.036,1.058,0.734,0.671,0.624,0.968,1.63,0.975,1.038,1.084,1.012,0.508,1.095,1.282,1.091,0.582,0.933,1.379,0.802,0.615,0.968,0.922,1.043,1.318,1.055,0.279,0.52,1.252,1.026,1.375,0.592,1.059,1.113,0.664,0.89,0.936,0.985,0.961,0.898,0.936,0.862,1.191,0.677,0.664,1.081 +NM_006460,0.722,0.938,1.46,0.595,0.88,1.179,0.464,0.673,1.307,1.033,1.017,0.979,0.725,0.97,1.108,1.837,0.799,1.021,1.311,1.29,0.553,1.014,1.108,0.757,0.56,0.971,1.16,1.061,0.4,0.876,1.219,1.272,1.168,0.982,1.187,0.612,1.323,1.312,1.038,1.035,1.331,1.522,0.705,0.77,1.034,0.875,0.819,0.778,0.751,1.198,1.061,0.822,0.937,0.916 +NM_006461,0.547,1.002,1.162,1.161,0.766,0.999,0.818,0.405,0.943,0.785,0.827,0.937,0.671,0.623,0.811,1.267,0.901,1.089,0.909,0.905,0.633,0.674,2.118,1.167,0.582,0.669,2.164,0.615,0.601,1.232,0.636,1.725,4.119,0.76,0.227,2.688,1.158,0.777,2.441,1.124,1.001,0.669,0.87,2.293,0.997,1.286,1.31,0.653,1.485,0.791,1.653,1.515,0.967,3.168 +NM_006463,0.716,0.879,1.161,0.748,1.13,1.31,0.643,0.91,1.2,0.91,1.092,0.997,0.719,0.674,0.821,1.452,0.798,0.943,1.143,1.344,0.415,1.007,0.937,1.157,0.557,0.939,1.024,0.991,0.453,1.298,1.073,1.162,1.51,1.124,0.991,0.701,1.007,1.094,1.197,0.765,1.327,0.998,0.642,1.079,0.919,1.266,1.135,0.924,0.999,0.592,1.019,0.663,0.731,1.082 +NM_006464,0.78,1.121,0.73,0.874,0.68,1.376,1.139,0.724,0.756,0.777,1.32,0.724,0.774,0.705,0.854,1.376,0.829,0.955,0.855,1.171,0.853,0.859,1.132,0.781,0.931,0.74,1.075,0.694,0.881,1.556,0.797,1.18,1.042,1.437,0.847,0.999,1.185,0.903,1.29,1.167,0.833,1.355,1.283,1.384,0.868,1.03,1.083,0.83,1.001,0.771,1.227,0.838,0.761,1.234 +NM_006465,0.627,1.124,1.121,0.752,0.851,1.892,0.964,0.71,0.985,0.761,1.236,0.89,0.627,0.742,1.139,1.584,0.846,0.902,1.198,1.234,0.703,1.003,1.79,0.843,0.776,0.681,1.037,0.85,0.788,1.813,0.887,0.86,0.997,1.83,0.522,0.862,1.145,0.937,1.286,1.033,0.939,1.211,1.951,0.929,0.72,1.425,1.117,0.707,0.905,0.688,0.953,0.75,0.757,1.86 +NM_006468,0.616,1.113,1.046,0.666,0.792,1.156,0.681,0.586,1.106,0.872,1.167,0.775,0.651,0.802,0.923,1.23,0.609,0.837,1.024,1.118,0.595,0.865,1.366,1.042,0.64,0.745,0.962,0.737,0.521,1.371,0.766,1.679,2.296,1.263,0.403,1.764,1.2,0.962,1.01,1.186,0.947,1.268,0.769,1.346,0.874,0.941,0.994,0.853,0.979,0.59,0.939,1.059,0.852,2.689 +NM_006469,0.601,1.435,0.999,0.636,0.733,2.087,0.665,0.56,0.849,0.724,1.536,0.66,0.542,0.753,1.535,3.097,0.588,0.664,0.699,1.583,0.476,0.649,1.592,0.999,0.914,0.506,1.373,0.53,0.551,1.448,0.88,1.098,1.331,1.559,0.322,0.646,1.357,0.637,1.038,1.273,0.89,1.688,0.896,0.682,0.645,1.411,0.689,0.592,1.048,0.452,1.532,0.686,0.718,1.059 +NM_006470,1.08,0.484,1.715,0.753,1.606,1.047,0.622,1.206,2.478,2.164,0.875,1.386,1.168,1.181,0.958,1.252,1.128,1.331,1.655,0.712,0.881,1.729,0.857,1.759,0.315,1.216,1.527,1.946,0.479,1.242,2.177,0.384,1.026,1.023,1.602,0.388,0.823,1.383,0.825,0.29,1.946,0.754,0.719,0.341,1.908,0.912,1.693,1.587,0.899,0.868,0.847,0.961,1.333,1.038 +NM_006471,0.928,1.451,0.99,0.854,1.139,1.642,0.832,0.904,1.225,0.846,1.035,0.781,0.959,0.695,0.919,1.701,0.796,1.082,0.994,1.165,0.366,1.069,0.962,0.946,0.57,1.033,0.865,1.18,0.561,1.392,1.345,1.419,1.026,1.831,1.305,0.642,1.363,1.197,1.232,0.74,1.139,1.175,0.744,0.745,0.939,1.288,1.066,1.255,0.966,0.672,1.243,0.752,0.826,0.828 +NM_006472,0.557,1.851,0.903,0.862,0.37,2.286,1.042,0.275,0.793,0.407,1.498,0.279,0.467,0.771,1.268,1.137,0.77,0.716,0.484,1.561,0.542,0.442,1.328,0.369,1.132,0.758,0.513,0.647,0.618,2.503,0.901,2.612,0.883,2.365,0.165,0.881,1.326,0.592,1.386,0.865,0.651,2.615,0.635,1.042,0.351,1.233,0.912,0.494,0.566,0.395,1.62,0.541,0.671,1.915 +NM_006473,0.785,1.194,1.106,0.772,0.947,0.807,0.79,0.651,1.076,1.067,0.899,0.975,0.739,0.785,0.947,0.878,0.982,0.873,1.024,1.155,0.657,0.853,1.178,0.997,0.774,0.856,1.047,0.872,0.635,1.047,0.873,1.534,1.418,0.923,0.658,1.566,0.931,1.013,1.203,1.359,1.048,1.136,1.021,1.237,0.93,0.887,0.936,0.778,1.068,0.87,1.054,0.89,0.909,1.058 +NM_006475,0.828,1.329,0.821,1.057,0.802,2.026,2.073,0.767,0.749,0.924,1.011,0.805,0.954,0.8,1.503,1.3,0.842,0.845,0.792,1.195,0.857,0.705,1.083,0.9,1.232,0.834,0.873,0.808,0.977,4.253,0.801,8.012,1.841,2.554,0.829,0.847,1.37,0.92,1.264,2.422,0.818,1.875,0.949,0.978,0.875,2.425,0.847,0.796,0.889,0.838,1.023,1.084,0.864,0.952 +NM_006476,0.59,1.389,0.989,0.596,1.012,1.8,0.768,0.659,1.1,0.701,1.429,1.091,0.788,0.605,0.961,2.451,0.661,1.005,1.023,1.134,0.433,0.775,1.286,1.138,0.793,0.641,1.56,0.928,0.602,1.778,0.977,1.154,1.485,1.825,0.346,1.047,1.41,0.978,1.035,0.733,1.128,1.492,0.88,0.562,0.9,1.031,0.875,0.682,1.414,0.611,1.033,0.698,0.662,1.499 +NM_006477,1.071,0.963,1.003,1.204,1.0,0.903,0.905,1.049,1.04,0.972,0.957,0.98,0.957,0.914,0.889,0.949,0.987,0.913,1.107,0.955,1.088,0.929,0.993,0.974,1.053,0.947,1.003,0.966,1.139,1.009,1.076,0.923,1.001,1.048,0.966,1.175,1.0,1.101,0.955,1.105,0.999,1.007,1.104,1.077,1.01,1.029,1.027,1.055,0.941,0.959,1.057,1.144,1.146,0.996 +NM_006479,0.738,1.053,1.036,0.905,0.758,1.149,0.945,0.739,1.115,0.859,0.96,0.869,0.842,0.868,1.039,1.925,0.679,0.987,1.106,0.877,0.707,0.767,1.576,0.991,0.714,0.729,1.682,0.734,0.849,1.043,0.763,1.127,6.288,1.018,0.588,1.928,1.39,0.783,1.693,0.933,0.966,0.891,0.863,1.789,0.801,1.146,1.053,0.65,1.288,0.794,1.49,1.109,0.847,3.108 +NM_006480,1.275,0.822,1.192,1.19,1.139,0.965,0.882,1.232,1.112,1.163,0.934,1.359,1.35,1.032,0.941,1.023,1.198,1.081,1.472,0.772,1.203,1.817,0.853,1.345,0.915,1.474,1.243,1.054,0.903,0.828,1.226,1.041,1.0,0.979,0.861,0.889,0.895,1.209,1.138,0.861,1.422,0.975,0.915,0.914,1.337,0.949,1.052,1.877,0.814,1.255,0.977,0.833,1.285,1.019 +NM_006481,1.04,0.965,0.87,0.942,0.889,1.004,0.773,1.005,0.859,0.991,1.053,0.991,0.938,0.992,0.935,1.078,0.936,0.959,0.915,0.998,0.952,0.931,0.933,0.975,1.003,1.125,0.961,1.013,0.756,1.076,0.981,1.021,0.965,0.989,0.977,0.913,1.066,1.123,0.966,1.061,0.979,0.952,0.748,1.038,0.953,1.063,1.094,0.953,1.017,0.915,0.974,0.976,1.025,0.931 +NM_006482,0.951,0.947,1.003,1.027,0.975,1.09,0.84,0.934,1.065,0.972,0.953,1.085,1.009,1.435,1.171,1.063,0.957,0.896,0.997,1.117,1.208,1.041,1.264,1.086,1.041,0.986,1.102,0.965,1.307,1.034,0.887,1.044,1.201,0.984,1.101,1.068,0.805,1.129,1.028,1.174,0.934,0.888,1.043,1.121,0.986,1.26,0.783,0.93,0.98,0.976,0.966,1.252,1.058,1.106 +NM_006483,1.028,1.006,1.061,1.075,0.787,1.042,0.836,0.914,0.889,1.014,0.996,1.098,0.972,1.039,1.159,0.977,1.139,0.843,0.936,1.173,1.094,1.179,0.977,1.034,1.005,1.067,1.078,0.835,0.933,0.906,0.742,0.981,0.99,1.046,0.936,0.959,1.001,1.049,1.161,1.04,1.017,0.987,1.606,1.144,1.014,0.982,0.903,1.145,0.866,1.057,0.929,0.99,0.933,0.888 +NM_006486,0.85,1.029,1.081,1.013,0.822,1.006,1.307,0.843,0.923,0.977,0.864,0.8,0.758,1.067,1.209,0.984,0.918,0.858,0.929,1.075,0.939,0.753,1.169,0.941,1.116,1.002,1.03,1.014,0.846,1.47,0.892,8.11,1.076,1.814,0.885,0.851,1.003,0.996,0.898,0.858,0.992,1.838,0.97,0.779,0.868,1.12,0.946,0.932,0.85,0.923,1.194,0.857,0.844,0.831 +NM_006488,0.975,0.99,0.872,1.0,1.095,0.922,0.795,0.907,1.024,1.015,0.889,0.982,0.889,0.747,0.913,1.774,1.073,1.027,0.889,0.986,0.737,0.999,0.929,1.029,0.858,1.009,1.001,0.943,0.691,1.02,0.924,0.975,1.003,1.018,1.047,0.942,1.723,1.079,1.18,0.998,1.061,0.973,1.112,0.838,1.017,1.1,1.26,1.107,1.079,1.072,0.934,0.785,0.959,0.897 +NM_006491,1.983,1.643,2.113,1.991,1.93,2.005,2.024,2.399,1.837,2.12,1.767,2.009,1.8130000000000002,2.052,2.367,2.26,1.815,1.862,2.1980000000000004,2.081,2.128,2.1109999999999998,1.998,1.874,2.058,1.896,1.8780000000000001,2.033,1.611,2.157,2.197,2.104,2.271,1.9609999999999999,2.159,2.121,2.0,1.9489999999999998,1.869,1.913,2.0020000000000002,1.885,1.958,1.893,2.0,1.775,1.927,2.0469999999999997,1.9899999999999998,1.994,1.947,1.981,1.681,1.796 +NM_006492,1.045,0.952,1.009,0.825,1.216,0.919,1.045,1.036,1.014,1.118,0.977,1.174,1.17,0.996,1.122,1.031,1.0,1.051,1.017,0.989,0.971,0.961,1.042,0.902,0.959,1.08,1.003,0.986,1.129,1.061,0.923,0.969,0.954,1.112,1.053,0.988,1.019,1.088,1.107,1.0,1.108,0.965,0.998,0.938,1.082,0.966,0.913,1.024,1.04,1.155,0.882,1.1,0.924,1.041 +NM_006494,0.894,1.018,1.081,0.861,1.032,0.907,0.975,0.926,1.038,1.118,1.089,0.935,1.016,0.88,1.092,1.013,0.989,0.994,1.022,0.997,0.974,1.039,1.016,0.995,1.026,0.962,1.015,1.008,0.858,1.104,0.966,1.272,0.891,0.97,1.055,1.068,0.949,0.98,1.182,1.214,0.882,1.067,1.291,1.073,1.171,0.918,1.046,0.996,1.0,1.041,0.993,1.026,1.029,0.915 +NM_006495,0.756,0.946,1.179,1.222,0.653,0.995,1.38,0.754,0.92,0.701,0.963,0.647,0.845,0.692,0.77,1.289,0.854,0.827,0.654,1.024,0.785,0.705,1.016,0.733,0.802,0.732,1.1,0.794,0.336,1.263,0.794,1.246,0.735,1.343,0.61,0.733,1.237,0.736,1.719,3.932,0.827,2.022,0.807,0.755,0.868,1.597,0.973,0.625,1.158,0.671,1.049,1.531,0.919,1.587 +NM_006496,0.809,0.704,1.652,0.6,1.601,1.024,0.584,1.107,1.693,1.425,0.718,1.584,0.972,0.768,1.1,1.506,1.017,1.1,1.618,0.74,0.592,1.209,0.913,1.808,0.416,1.026,1.585,1.17,0.412,0.854,1.423,0.996,2.236,0.921,0.617,0.557,0.814,1.346,1.145,0.795,1.573,0.896,0.498,0.603,1.532,0.86,1.181,1.25,1.108,1.217,0.91,0.786,1.026,1.464 +NM_006497,1.277,1.211,0.97,1.004,1.036,0.92,0.873,1.093,1.035,1.075,0.994,1.014,1.009,1.0,0.972,1.01,1.101,0.981,1.037,1.0,1.035,0.999,1.046,1.091,1.157,0.996,1.123,0.984,1.032,0.957,0.981,0.825,0.978,0.963,1.278,1.032,0.947,1.048,0.947,1.08,1.109,0.961,0.973,0.961,1.084,0.992,0.949,0.992,1.034,0.931,0.976,0.946,1.009,1.054 +NM_006498,0.655,1.117,0.946,1.214,0.708,0.719,1.107,0.668,0.611,0.793,1.199,0.714,0.742,0.579,2.469,4.263,0.903,0.775,0.868,0.854,0.657,0.613,1.111,0.709,0.857,0.648,1.114,0.789,0.57,0.796,0.571,0.976,1.904,1.037,0.563,2.49,1.875,0.722,1.216,0.77,0.608,1.599,1.95,0.673,0.773,0.961,2.1,0.601,1.5,0.843,1.219,1.211,1.445,1.753 +NM_006499,0.563,0.788,1.554,0.629,1.066,1.415,0.892,0.755,1.054,0.928,0.839,0.885,0.799,0.706,0.92,1.601,1.136,0.927,1.018,1.137,0.515,0.87,1.123,1.334,0.536,0.697,1.444,0.93,0.655,1.098,1.157,1.199,1.252,1.153,0.477,0.949,1.182,1.04,1.23,1.32,1.241,0.895,0.813,1.034,1.192,0.968,1.159,0.793,1.087,0.938,1.15,0.701,0.732,1.489 +NM_006503,0.833,0.931,0.929,1.003,0.799,0.839,0.778,0.668,1.035,0.943,1.043,0.749,0.744,0.861,0.887,1.133,0.819,0.817,1.033,1.073,0.788,0.732,1.51,0.781,0.907,0.848,1.094,0.819,0.58,1.144,0.997,1.123,4.026,1.146,0.673,1.099,1.102,0.787,1.374,0.986,1.153,0.862,0.809,2.362,0.902,0.994,1.256,0.767,1.578,0.899,1.086,0.879,1.041,3.658 +NM_006504,0.792,0.997,0.957,0.856,0.942,1.165,0.859,0.974,0.804,0.827,1.233,0.957,0.823,1.095,0.983,1.066,0.95,0.963,0.812,1.103,0.916,0.958,1.114,0.865,1.039,0.962,1.025,0.838,1.174,0.987,0.914,1.177,0.897,1.209,1.128,1.117,1.016,0.923,1.307,1.297,0.947,1.079,1.27,1.148,0.959,1.003,1.06,1.015,1.122,1.04,1.148,1.08,0.803,0.952 +NM_006505,0.664,0.801,0.746,0.782,0.759,1.411,0.934,0.566,0.826,0.948,1.042,0.865,0.602,0.778,0.856,1.273,0.88,0.844,0.868,1.291,0.66,0.734,1.801,0.811,0.696,0.686,0.828,0.627,0.941,1.092,0.867,1.307,1.786,1.206,0.581,1.228,1.087,0.753,1.922,2.244,0.774,1.093,0.835,1.432,0.795,1.06,1.133,0.685,1.21,0.728,1.063,1.158,0.805,1.376 +NM_006506,0.946,0.933,1.069,0.961,0.974,0.94,0.928,0.942,1.305,1.0,0.827,0.901,0.928,1.024,1.15,0.998,1.041,0.988,0.925,0.899,0.936,1.082,1.05,1.076,0.979,0.907,1.016,1.149,0.734,1.087,1.331,1.054,1.178,0.989,1.239,0.901,1.114,1.052,1.018,1.077,1.115,1.116,0.84,1.016,1.026,0.943,0.954,0.926,0.933,0.897,1.017,0.949,1.002,1.077 +NM_006507,0.922,0.979,0.807,9.738,1.111,0.986,0.91,0.99,0.974,1.111,1.157,1.041,0.939,0.999,1.016,1.7,1.068,1.04,0.907,0.881,1.035,0.934,0.842,1.027,1.087,0.985,0.962,0.893,0.901,0.95,1.038,0.983,8.055,1.031,1.102,1.033,1.509,0.968,1.023,39.95,1.023,0.984,2.719,0.899,5.053,0.855,2.329,1.044,28.9,1.035,0.956,1.078,0.966,1.083 +NM_006508,1.128,1.03,0.968,0.938,1.039,1.029,0.903,0.904,0.896,0.894,1.044,1.177,1.05,0.838,0.817,1.209,1.049,0.877,1.136,1.026,1.034,0.971,1.022,1.127,1.04,0.952,0.769,1.027,0.816,0.986,1.194,0.964,0.876,1.012,0.987,1.099,0.964,1.003,1.068,1.158,0.846,1.002,1.064,0.951,1.035,1.09,0.934,0.927,1.019,0.981,1.095,0.935,1.017,0.936 +NM_006509,0.851,1.146,0.931,0.876,0.735,1.299,0.889,0.725,0.784,0.939,0.919,0.673,0.976,0.749,0.949,0.979,0.916,0.969,0.865,0.999,0.75,0.903,1.158,0.914,0.911,0.748,1.509,0.8,0.75,1.066,0.931,1.559,1.977,1.217,0.906,0.958,1.054,0.968,2.226,1.944,0.852,1.047,1.056,1.562,0.853,0.9,1.017,0.872,0.919,0.974,1.001,1.232,0.943,1.76 +NM_006510,0.701,1.085,0.869,0.984,0.765,1.214,0.764,0.69,0.978,0.978,1.038,0.791,0.661,0.758,1.063,1.269,0.975,0.861,1.026,1.001,0.798,0.765,1.202,0.941,0.847,0.757,1.08,0.747,0.741,1.036,0.78,1.174,1.686,1.234,0.626,0.971,0.999,0.863,1.175,1.012,0.929,1.166,1.046,1.198,0.837,1.125,1.032,0.61,1.212,0.756,1.174,0.825,0.857,1.498 +NM_006511,0.998,0.849,1.482,0.909,1.258,0.904,1.233,1.013,1.349,1.04,0.919,1.02,0.959,1.116,1.02,0.94,1.271,1.255,1.313,1.001,0.963,0.982,0.99,1.267,0.759,1.131,1.169,1.274,0.974,0.937,1.199,0.994,1.228,0.999,1.51,0.915,0.886,0.892,0.907,0.878,1.444,0.893,0.946,1.064,1.459,0.942,1.119,1.123,1.005,1.292,0.767,0.962,1.187,1.03 +NM_006513,0.752,0.8,1.181,0.626,0.974,1.131,0.671,0.474,1.198,1.483,1.095,0.975,0.574,0.549,0.796,1.258,0.847,1.056,1.168,1.068,0.549,0.885,1.231,1.547,0.696,0.964,1.124,0.895,0.429,1.114,0.909,1.069,1.708,1.261,0.21,0.599,0.957,1.132,1.713,0.75,1.175,1.113,0.579,0.943,1.239,0.997,1.168,0.886,1.052,0.813,1.031,0.744,1.073,1.94 +NM_006514,1.209,0.935,1.006,0.881,1.027,0.891,0.937,1.005,0.92,1.024,1.075,0.932,0.977,0.971,0.938,1.008,0.926,1.099,0.868,0.809,0.834,0.902,1.07,0.955,0.938,1.1,0.998,1.05,0.878,1.041,0.92,1.026,0.851,0.917,0.907,1.026,0.999,1.221,0.995,1.056,1.011,1.07,1.254,0.909,0.984,0.998,0.932,0.94,1.124,0.925,1.007,0.992,1.089,0.811 +NM_006516,0.799,0.818,1.937,0.701,1.165,0.917,0.921,0.941,1.383,1.498,0.744,0.927,0.625,1.149,1.277,1.089,1.266,1.265,2.031,0.671,1.126,1.13,0.978,1.328,0.553,1.095,1.561,0.95,0.828,0.945,1.234,0.821,3.386,0.885,0.935,0.962,0.867,1.353,1.125,1.653,1.37,0.867,0.628,1.419,1.248,0.836,1.408,1.021,0.815,1.354,0.854,1.225,1.882,1.3 +NM_006517,0.976,1.255,0.924,0.995,0.941,1.18,0.809,0.867,1.036,1.008,1.278,0.98,0.853,0.891,0.913,1.452,0.925,1.083,0.992,1.317,0.946,0.861,1.417,1.055,0.922,0.86,1.041,1.084,0.885,0.961,0.927,1.217,1.196,0.958,1.092,0.906,1.419,0.966,1.147,0.914,1.131,1.5,1.162,0.77,0.928,1.098,0.791,0.841,0.874,0.87,1.28,1.01,1.16,1.157 +NM_006518,4.914,0.0585,7.601,0.813,9.943,0.0748,0.0703,3.643,2.131,8.497,0.0657,4.886,4.184,0.62,3.435,3.458,11.82,2.208,8.516,0.0885,4.148,1.894,0.0677,4.478,0.066,0.647,8.387,2.146,0.0653,0.0771,2.121,0.0719,3.17,0.0721,7.389,0.0683,0.0826,1.636,0.158,0.0779,8.335,0.0823,0.0862,0.0668,13.11,0.0711,6.475,2.279,1.668,9.251,1.159,2.052,9.868,0.72 +NM_006519,0.642,0.704,0.845,0.661,0.977,1.675,0.74,0.804,1.414,0.835,1.597,0.906,0.812,0.697,1.117,2.171,0.749,0.944,1.45,1.142,0.583,0.844,1.18,0.973,0.421,1.132,0.797,0.95,0.524,0.867,1.266,0.946,1.538,1.702,0.596,0.641,1.269,0.689,1.264,0.715,0.9,1.19,0.583,1.032,0.803,1.207,1.008,0.941,1.1,0.626,1.24,0.636,1.041,1.044 +NM_006520,1.406,0.59,1.889,0.821,1.54,1.294,0.398,2.233,2.132,1.44,1.001,1.42,1.312,1.194,1.609,2.191,0.966,1.114,2.974,0.748,0.869,1.313,0.636,1.628,0.398,1.421,1.458,1.69,0.315,0.839,2.255,0.826,2.018,1.279,0.552,0.486,0.7,1.735,1.036,0.599,1.764,0.642,0.393,0.513,1.584,0.921,1.131,1.689,0.631,1.387,0.981,0.652,1.783,0.959 +NM_006521,1.039,0.814,0.864,1.07,1.049,1.034,0.846,0.902,0.951,0.989,0.877,0.827,0.899,0.92,0.925,1.092,1.003,1.127,1.037,1.16,0.889,1.251,0.99,0.826,1.093,1.038,0.946,1.115,1.061,0.937,0.892,1.418,1.065,1.046,1.001,0.987,0.884,1.025,1.228,1.073,0.972,0.871,1.051,0.821,1.126,0.928,0.854,1.048,0.845,1.057,0.849,0.945,1.072,1.036 +NM_006522,1.051,1.01,0.985,1.167,0.956,1.108,0.942,1.042,0.864,1.077,1.025,1.124,1.079,1.18,1.0,0.969,0.914,0.967,0.896,0.951,0.944,1.026,0.886,1.026,1.037,0.998,1.022,1.042,0.86,1.015,1.021,1.14,0.859,0.91,1.066,0.984,1.077,0.975,1.103,1.049,1.082,0.864,1.142,0.977,0.915,0.997,0.873,1.105,0.998,0.969,1.016,0.9,0.834,1.088 +NM_006524,1.046,0.899,1.001,0.951,1.046,0.85,1.039,0.865,0.942,1.003,1.088,1.035,0.924,1.117,1.066,1.072,1.087,0.967,0.825,0.938,0.928,0.876,0.909,1.207,0.941,1.055,1.063,0.984,0.925,1.049,1.009,1.017,0.896,1.022,0.952,0.991,0.934,1.191,1.029,1.03,1.1,0.873,0.934,1.003,0.86,1.053,1.114,0.985,1.094,1.018,0.992,1.019,0.894,0.96 +NM_006526,0.57,1.02,1.6,0.657,0.893,1.156,0.821,0.591,1.35,0.833,0.791,0.584,0.705,0.734,1.067,1.209,0.962,1.0,0.822,1.144,0.602,0.729,1.364,0.914,0.659,0.556,1.391,0.906,0.669,1.446,1.37,1.711,1.256,1.207,0.729,0.533,1.0,0.698,1.388,1.415,1.108,0.992,0.537,0.783,0.82,0.775,1.113,0.673,1.224,0.964,1.087,0.88,0.675,2.558 +NM_006527,0.829,0.995,1.296,0.859,0.856,1.047,0.63,0.487,1.232,1.197,0.863,0.87,0.817,0.752,0.914,1.275,0.903,0.898,1.348,0.817,0.664,0.857,1.35,1.195,0.667,0.87,1.766,0.846,0.534,1.0,1.145,1.513,2.828,1.215,0.363,0.858,0.992,0.81,1.934,0.937,1.27,0.944,0.566,1.731,1.343,0.879,1.013,0.82,0.916,1.037,1.099,0.915,1.033,2.193 +NM_006528,0.792,0.858,0.815,0.815,0.945,1.121,0.978,0.8,0.907,0.782,0.857,0.906,1.038,0.835,1.12,1.221,0.878,0.946,1.174,1.17,0.939,0.94,1.149,1.088,0.857,0.845,0.994,0.828,0.902,1.43,0.868,0.798,1.903,1.074,0.747,1.386,0.879,0.921,1.645,1.618,1.025,1.004,0.923,1.016,1.078,1.063,0.966,0.922,1.054,0.865,3.319,2.722,1.018,1.503 +NM_006529,1.032,0.917,1.021,1.145,0.848,1.121,1.077,0.995,1.015,0.954,1.063,1.033,1.055,1.061,1.219,0.98,0.965,0.961,1.027,1.123,0.928,1.023,0.986,1.048,1.098,0.984,1.035,0.967,1.157,1.002,1.127,1.093,0.905,0.998,0.953,1.005,1.08,0.914,1.041,0.975,0.988,1.033,1.063,1.017,0.998,0.92,1.021,0.988,0.992,0.903,1.089,1.059,0.924,0.917 +NM_006530,0.797,1.089,1.184,0.758,0.762,1.658,0.721,0.738,0.994,0.811,1.505,0.957,1.092,0.94,1.121,2.078,0.793,0.918,0.909,1.065,0.719,1.054,1.177,1.141,0.7,0.692,1.455,0.939,0.577,1.107,0.924,0.966,1.608,1.325,0.481,0.864,1.152,1.024,1.36,0.942,1.01,1.137,0.614,0.719,0.95,1.087,0.812,0.78,1.06,0.917,1.03,0.932,0.833,1.78 +NM_006531,0.839,1.001,0.999,0.733,0.864,1.073,1.062,0.829,0.834,0.987,1.076,0.885,0.765,0.733,0.95,1.41,0.902,0.898,0.885,1.104,0.942,0.849,1.192,0.863,0.927,0.822,1.229,0.841,0.533,1.08,0.961,1.108,1.148,1.152,0.829,0.872,1.087,0.957,1.063,1.249,0.897,0.968,0.737,0.796,0.913,1.167,1.162,0.929,1.277,0.795,1.162,0.957,0.966,1.379 +NM_006532,1.179,0.963,1.035,0.937,0.986,1.034,0.929,1.157,0.9,1.06,0.875,1.043,1.098,1.063,1.087,1.053,0.993,0.842,1.081,1.007,1.042,1.19,1.108,0.989,0.902,0.995,1.18,0.973,1.218,1.038,1.092,0.929,0.955,0.859,1.145,0.957,0.974,1.115,0.906,0.956,1.05,1.023,1.141,0.956,0.924,1.005,0.887,0.924,1.171,1.002,0.999,0.963,1.069,1.226 +NM_006533,0.459,9.109,0.548,0.986,0.396,4.042,1.454,0.489,0.386,0.494,6.712,0.378,0.407,0.479,1.287,1.077,0.374,0.857,0.436,5.882,0.406,0.413,8.857,0.357,0.541,0.385,0.459,0.348,0.48,0.935,0.402,7.589,0.966,7.393,0.356,0.421,2.65,0.452,2.956,0.487,0.531,8.362,1.522,6.724,0.429,1.73,1.984,0.441,0.456,0.507,3.527,1.88,0.446,1.439 +NM_006534,0.737,0.935,1.746,0.77,1.087,1.075,0.81,0.566,1.267,0.975,0.943,0.692,0.607,0.992,1.067,1.069,0.927,0.973,1.582,0.996,0.767,0.65,1.273,0.988,0.597,0.816,1.689,0.953,0.743,1.711,1.256,1.717,1.366,1.621,0.515,0.724,1.029,0.83,1.058,1.032,1.049,1.145,0.597,0.99,0.934,0.941,0.898,0.747,0.842,0.835,1.051,1.154,1.16,1.638 +NM_006536,1.987,0.169,8.189,0.694,5.165,0.192,0.183,0.913,4.736,4.964,0.158,2.359,2.093,2.489,2.089,1.487,4.103,2.122,6.471,0.281,1.807,2.868,0.181,3.328,0.185,2.397,7.395,3.499,0.187,0.235,4.314,0.203,2.666,0.195,0.257,0.191,0.194,4.742,0.203,0.168,5.211,0.207,0.182,0.17,5.317,0.178,2.909,2.915,0.249,4.629,1.087,1.933,3.59,0.89 +NM_006537,0.531,1.386,0.996,0.81,0.638,1.589,0.756,0.692,1.02,0.742,1.484,0.848,0.667,0.654,1.098,1.673,0.817,1.012,1.169,1.226,0.495,0.653,1.958,0.867,0.787,0.671,0.986,0.799,0.768,1.259,0.952,0.979,1.823,1.551,0.926,0.858,1.39,0.821,1.862,0.872,0.81,1.266,1.179,0.873,0.692,1.448,1.121,0.679,1.199,0.756,1.202,0.774,0.892,2.126 +NM_006539,0.97,0.897,1.079,0.989,1.114,0.959,0.998,1.17,1.004,1.077,1.034,1.012,0.882,1.257,0.786,0.921,0.999,0.978,1.011,0.952,1.08,0.952,0.888,0.907,1.214,1.048,0.95,1.255,0.903,0.983,0.99,0.966,0.935,0.938,1.078,0.962,0.952,1.11,1.03,1.051,1.007,0.859,1.146,0.984,1.053,0.986,0.841,1.049,1.113,1.019,1.039,1.004,1.082,1.163 +NM_006541,0.972,1.036,0.965,0.962,0.993,0.939,1.076,1.045,0.94,0.924,1.044,1.131,0.963,0.99,0.968,0.909,1.038,0.945,0.878,0.974,0.939,0.983,0.978,1.003,0.957,1.004,1.136,0.966,0.885,1.067,0.949,1.06,1.002,0.911,0.904,1.099,1.015,1.058,1.052,0.927,0.889,0.992,1.034,0.946,1.073,1.058,0.955,1.031,1.052,1.086,1.044,0.931,1.214,0.941 +NM_006542,0.657,1.489,0.941,0.794,0.865,1.991,0.935,0.881,1.082,0.864,1.805,1.316,0.932,0.787,1.179,2.333,0.674,1.001,0.833,1.798,0.398,0.985,1.272,1.16,1.11,0.622,1.025,0.963,0.971,1.515,1.069,1.364,1.375,1.95,0.336,0.52,1.691,1.068,1.227,0.937,1.027,1.741,0.703,0.607,0.98,1.432,0.853,0.894,0.807,0.633,1.434,0.609,0.591,0.9 +NM_006544,1.076,0.915,1.266,0.983,0.908,1.026,0.844,0.902,1.126,1.033,0.943,0.968,0.964,1.005,1.132,1.193,0.982,1.082,1.077,0.839,0.822,0.897,1.006,1.036,1.025,1.002,1.076,1.014,0.834,1.048,1.103,0.972,0.93,0.961,0.754,0.82,1.079,1.111,0.95,0.898,1.102,1.024,0.8,1.004,1.256,1.002,1.033,0.999,0.99,1.009,1.059,0.862,1.125,1.131 +NM_006545,0.547,1.518,1.045,0.7,0.915,1.356,0.739,0.498,1.095,0.905,1.164,0.886,0.631,0.665,0.776,1.451,0.92,1.033,1.152,1.243,0.495,0.83,1.342,0.969,0.702,0.67,1.124,0.796,0.621,2.224,0.849,1.256,1.336,1.68,0.208,1.102,1.259,0.989,1.267,0.604,1.103,1.168,0.717,0.703,0.728,1.315,0.993,0.588,1.058,0.606,0.991,0.889,0.743,1.801 +NM_006547,1.339,0.766,0.946,0.845,1.451,0.792,0.757,1.716,3.069,1.134,0.833,1.319,1.646,1.072,1.185,0.804,0.815,1.357,1.413,0.773,0.881,1.266,0.81,1.595,0.834,1.081,1.031,1.36,0.662,0.864,1.897,0.839,4.235,0.708,1.131,3.027,0.864,1.159,3.892,2.502,1.87,0.789,0.636,2.75,1.723,0.821,1.351,1.793,0.797,1.185,0.991,1.705,0.936,4.252 +NM_006548,0.31,0.813,0.403,0.585,0.5,1.801,0.726,0.501,0.479,0.347,1.453,0.336,0.383,0.363,0.818,1.805,0.314,0.851,0.385,1.36,0.299,0.362,1.182,0.406,0.635,0.311,0.402,0.328,0.558,1.281,0.382,1.162,2.876,1.578,0.415,1.034,1.218,0.305,1.335,2.296,0.383,1.219,0.744,2.322,0.309,1.18,1.17,0.31,0.974,0.337,1.236,1.085,0.363,2.951 +NM_006550,1.076,1.002,0.995,0.801,1.075,0.935,0.97,0.874,1.084,1.061,1.086,1.053,1.139,0.943,0.866,1.009,0.922,1.058,0.948,0.928,0.943,1.017,1.14,1.077,1.054,1.083,1.027,1.096,0.868,1.079,0.92,0.949,1.074,1.183,0.972,0.955,0.978,1.09,1.029,1.136,1.081,1.08,0.921,1.042,1.188,0.881,0.998,1.099,0.893,0.926,1.099,0.998,1.001,1.058 +NM_006551,0.926,1.066,1.077,1.066,0.973,1.09,0.873,0.891,1.042,0.959,0.93,0.969,1.617,1.082,0.833,0.982,0.954,0.86,1.094,1.117,1.084,1.032,0.992,1.066,1.022,1.079,0.985,1.095,0.909,1.014,0.877,1.026,0.897,0.977,1.073,0.933,0.991,1.068,1.053,1.098,0.933,3.447,0.972,1.112,0.904,0.921,1.009,0.934,1.124,0.986,1.061,1.146,0.982,0.829 +NM_006552,1.04,0.902,1.015,1.017,0.948,1.01,1.193,1.166,1.063,0.984,1.031,1.054,1.056,0.93,0.875,1.192,0.895,0.978,1.017,1.025,1.003,0.927,1.008,0.946,1.01,0.926,1.027,0.886,0.883,0.945,1.029,1.005,1.168,0.95,1.045,1.028,0.97,1.163,0.979,1.068,0.948,2.898,1.015,0.894,1.07,0.975,1.03,0.932,0.934,1.017,0.982,1.073,0.81,0.963 +NM_006553,1.014,1.076,0.939,1.005,1.181,1.027,1.034,1.031,1.026,0.9,1.087,0.944,0.871,0.98,1.2,1.12,0.969,1.152,1.07,1.142,1.069,0.901,1.343,0.916,1.047,0.901,0.921,1.095,1.09,1.012,1.041,0.932,1.108,0.964,0.945,1.089,1.029,1.119,1.038,0.986,1.179,0.985,1.149,0.942,0.887,0.982,1.085,0.955,1.005,0.985,1.021,0.98,1.056,1.166 +NM_006554,0.797,0.991,1.238,0.909,1.099,1.13,0.532,0.815,1.378,0.908,1.092,1.013,0.86,0.65,1.023,1.583,1.072,1.121,1.202,0.879,0.618,1.209,1.028,1.524,0.649,0.824,1.272,0.893,0.489,0.993,1.226,1.07,1.478,1.049,0.411,0.772,0.988,0.999,1.23,1.042,1.202,0.731,0.639,1.045,1.143,1.064,1.001,0.883,1.052,0.741,1.039,0.803,0.896,1.978 +NM_006555,0.782,0.68,1.053,0.833,0.751,1.111,0.558,0.482,0.88,0.907,1.188,0.787,0.656,0.579,0.889,1.59,0.837,0.877,1.252,0.794,0.41,0.739,1.582,0.932,0.886,1.023,0.983,0.74,0.5,1.411,0.735,1.37,2.483,1.262,0.225,1.27,1.208,0.705,1.685,0.842,0.932,0.924,0.668,2.261,0.972,1.101,1.142,0.88,1.082,1.007,1.055,1.247,1.01,1.786 +NM_006556,1.013,0.766,1.239,0.866,1.316,0.926,0.619,0.779,1.308,1.287,1.016,1.22,0.999,0.632,0.809,1.283,0.955,1.133,1.782,0.825,0.915,1.543,0.877,1.417,0.628,1.646,0.797,1.201,0.733,1.136,1.103,1.072,1.054,1.31,0.249,0.869,0.768,1.52,1.274,0.417,1.289,1.046,0.514,1.023,1.276,0.688,0.912,1.743,0.614,1.032,0.801,0.643,1.098,0.908 +NM_006558,0.786,1.055,0.896,0.862,0.862,1.273,1.184,1.111,1.031,0.777,1.122,1.131,1.209,0.811,0.872,0.902,0.882,0.87,1.135,1.047,0.937,1.034,1.206,1.098,0.971,0.694,0.968,0.92,1.128,1.085,0.869,2.589,1.242,1.565,0.835,1.39,1.097,0.994,0.932,3.377,0.967,1.087,0.769,0.902,1.079,0.99,1.578,0.884,0.814,1.008,1.249,0.819,0.89,0.835 +NM_006559,0.498,0.944,1.072,0.543,0.74,1.188,0.594,0.38,1.219,0.905,1.064,0.694,0.468,0.532,0.925,1.839,0.563,0.841,1.065,1.079,0.488,0.573,1.475,0.983,0.482,0.518,1.463,0.748,0.365,1.162,0.897,1.058,2.669,1.582,0.133,1.008,1.45,0.705,1.301,0.747,0.955,1.318,0.775,1.192,1.079,0.985,0.911,0.522,1.025,0.616,1.222,0.834,0.998,1.916 +NM_006560,0.836,0.999,1.138,1.0,1.034,1.027,0.901,0.883,1.155,1.134,0.861,1.135,0.869,1.183,0.759,1.142,0.996,1.045,1.265,0.938,1.018,1.044,0.971,1.359,0.867,0.875,1.212,0.915,0.883,0.853,1.014,0.89,1.596,1.013,1.051,1.005,1.045,1.089,1.058,0.889,1.168,0.862,0.838,0.998,1.013,1.004,1.053,1.083,1.016,1.078,1.049,0.976,0.934,1.063 +NM_006561,0.874,0.887,1.052,0.94,0.795,0.855,1.001,0.784,0.851,0.858,1.015,0.901,0.895,0.975,0.966,1.321,0.832,0.893,0.867,1.053,0.93,0.888,1.563,0.858,0.999,0.996,0.829,1.012,0.992,1.251,0.944,1.128,0.987,1.493,0.755,0.852,0.965,1.014,1.005,1.094,1.036,1.382,1.078,0.74,0.927,1.155,0.867,0.933,0.946,0.856,1.099,1.068,1.366,1.149 +NM_006562,0.97,1.172,1.138,0.818,0.982,0.932,1.134,1.125,1.089,0.916,0.822,1.0,0.928,0.943,0.873,1.125,0.901,1.027,0.974,1.024,1.116,1.05,1.013,0.937,1.082,0.93,0.762,0.899,1.338,1.01,1.036,1.057,1.063,0.948,0.868,0.944,1.228,0.866,0.905,0.909,0.97,1.048,1.234,0.996,0.997,1.369,1.0,0.916,0.928,1.105,1.057,1.098,0.714,0.834 +NM_006563,1.027,0.923,0.974,1.132,0.98,0.96,0.946,0.913,0.901,1.031,1.066,0.983,0.962,0.889,1.004,0.988,1.09,0.993,1.084,0.868,0.749,1.015,0.975,0.889,0.843,1.095,1.1,1.048,0.818,0.852,0.922,0.983,0.829,0.911,1.066,1.1,0.799,1.058,1.094,0.827,1.007,0.743,1.099,1.077,0.956,0.875,0.995,1.105,1.044,1.05,0.932,0.984,1.053,1.039 +NM_006564,0.956,1.048,1.678,0.898,0.79,1.127,0.911,0.881,0.875,0.924,0.96,0.881,0.991,0.898,0.837,0.859,0.905,0.938,1.104,1.071,0.883,0.929,1.127,1.028,0.848,0.968,1.203,0.906,0.752,1.024,1.06,1.055,1.123,1.072,0.845,0.851,0.992,0.915,1.086,0.924,1.125,1.017,0.851,0.917,1.133,0.866,0.733,0.835,0.893,1.055,1.027,0.903,1.333,1.67 +NM_006565,0.619,1.01,1.44,0.675,0.887,0.983,0.675,0.485,1.103,0.996,0.987,0.724,0.583,0.706,0.946,1.388,0.909,0.886,1.208,0.811,0.625,0.828,1.368,1.001,0.552,0.653,1.344,0.847,0.522,0.965,0.937,1.297,2.243,1.458,0.377,0.678,0.911,0.888,1.406,0.928,1.068,1.375,0.644,1.128,1.007,1.078,0.939,0.869,0.996,0.918,1.141,0.766,0.826,1.984 +NM_006566,1.048,0.881,1.074,0.979,0.977,1.017,1.201,0.807,0.902,0.945,0.998,0.986,0.978,1.122,0.854,0.905,0.915,0.938,1.111,1.151,1.034,0.835,0.973,0.974,1.063,0.949,1.099,1.044,1.02,0.942,1.009,1.034,1.119,0.97,1.033,0.952,1.083,1.084,1.101,0.967,1.163,1.096,1.127,0.996,1.023,1.27,1.168,1.002,0.916,1.034,0.961,0.949,0.997,1.075 +NM_006567,0.83,1.185,1.045,0.869,0.942,0.905,0.548,0.548,1.093,1.061,0.901,0.948,0.828,0.74,0.961,1.133,0.874,0.997,1.407,1.067,0.572,0.949,1.342,1.056,0.856,0.994,1.156,0.821,0.544,1.181,0.76,0.996,1.847,1.317,0.397,0.882,1.071,0.923,1.174,0.637,1.031,1.001,0.941,1.305,0.874,0.908,0.873,0.963,1.189,0.873,0.951,0.903,1.382,1.572 +NM_006568,0.727,1.245,0.896,0.774,0.845,1.225,0.846,0.92,1.047,0.973,1.496,0.891,0.904,0.807,1.052,1.891,0.709,1.04,0.874,1.011,0.667,0.947,1.28,1.035,0.777,0.768,0.938,0.928,0.615,1.192,1.017,1.344,1.723,1.476,0.595,0.904,1.385,0.979,1.09,0.794,0.856,1.187,0.716,1.33,0.869,1.122,1.09,0.849,1.022,0.587,1.032,0.814,0.814,1.346 +NM_006569,0.922,1.363,0.928,1.243,0.782,0.991,0.858,0.867,0.904,0.94,1.092,0.997,0.893,0.999,0.943,1.086,0.816,1.09,0.928,1.145,0.91,0.968,1.193,0.991,0.971,0.931,0.924,0.986,1.158,1.028,0.982,1.034,1.903,1.287,0.962,1.069,1.03,0.893,1.234,0.979,0.92,1.206,1.048,0.847,0.825,1.291,0.938,0.96,1.01,0.953,1.128,0.836,0.872,0.812 +NM_006570,0.874,0.679,1.161,0.801,1.033,1.081,0.456,0.415,1.215,1.219,1.117,0.76,0.566,0.728,0.919,1.735,1.072,0.902,1.318,0.707,0.759,0.822,1.021,1.071,0.549,1.052,1.308,0.884,0.371,1.047,0.988,1.271,1.198,1.178,0.229,0.419,1.109,1.13,1.057,0.615,1.253,1.057,0.775,1.179,1.143,0.977,0.961,0.748,0.925,0.999,0.987,0.753,1.387,1.145 +NM_006572,0.583,0.961,1.059,0.847,0.673,1.388,0.742,0.675,0.805,0.703,1.503,0.489,0.603,0.676,1.286,2.3,0.623,0.896,1.057,1.005,0.512,0.595,1.402,0.711,0.605,0.588,0.906,0.818,0.494,1.302,0.72,1.325,1.334,1.285,0.401,0.683,1.279,0.816,1.719,0.996,0.762,1.342,1.667,1.361,0.68,1.628,0.912,0.659,1.598,0.702,1.201,0.919,0.83,1.666 +NM_006573,0.729,1.046,0.971,0.829,0.732,1.256,1.117,0.74,0.89,0.715,1.041,0.798,0.759,0.671,0.936,1.489,0.772,0.851,0.799,1.037,0.59,0.673,1.287,0.836,0.825,0.677,1.268,0.868,0.643,1.477,0.763,2.224,1.059,1.283,0.712,0.746,1.221,0.926,1.386,2.504,0.833,1.71,0.807,0.927,0.776,0.916,0.838,0.712,1.109,0.671,1.529,1.772,0.833,3.189 +NM_006574,1.044,1.148,0.974,0.999,0.948,1.045,0.907,0.975,0.992,0.953,0.973,0.989,0.973,1.037,0.865,1.001,0.952,1.075,1.044,1.02,1.023,1.073,0.898,0.961,1.049,0.929,0.973,0.978,0.971,1.018,1.093,1.008,1.128,0.907,0.87,0.894,0.97,1.111,0.976,0.946,0.943,0.994,0.848,1.079,1.041,1.021,0.918,0.969,0.927,0.986,1.071,1.049,1.021,1.426 +NM_006575,0.955,0.797,1.143,0.931,1.116,0.959,0.723,0.925,1.526,1.084,1.054,0.928,0.774,1.085,1.06,1.205,1.013,0.977,1.43,0.828,0.902,0.982,1.074,1.17,0.824,0.878,1.138,1.126,0.698,0.919,1.209,1.002,1.382,0.975,1.004,0.972,0.981,1.028,1.043,0.854,1.142,0.915,0.74,1.279,1.03,0.998,1.192,1.03,0.948,0.96,0.936,0.839,1.122,1.261 +NM_006576,0.926,1.068,0.934,1.102,0.964,1.09,1.286,0.875,0.952,0.891,0.925,0.984,1.021,1.045,1.053,1.114,0.861,0.891,0.958,1.195,1.059,0.752,1.136,0.927,0.953,1.026,0.968,0.915,0.857,0.899,1.126,1.238,0.971,0.897,0.993,1.04,0.998,0.928,0.994,0.995,0.794,1.055,0.859,0.928,1.073,0.995,1.032,0.972,1.044,1.025,0.904,0.77,1.03,1.17 +NM_006578,0.754,1.382,1.34,0.697,0.909,0.923,0.677,0.799,1.076,1.114,0.773,1.002,0.853,0.845,0.984,0.998,1.051,0.908,1.117,0.873,0.923,0.857,1.157,1.21,0.827,0.855,1.433,1.111,0.506,0.858,1.01,2.264,1.564,1.011,0.936,0.98,0.755,1.006,1.016,1.054,1.063,0.855,0.936,1.076,0.911,0.826,1.434,0.732,0.743,0.831,0.878,1.204,1.139,2.157 +NM_006579,0.618,0.796,1.275,0.733,1.101,1.246,0.719,0.667,1.149,1.298,0.723,1.23,0.82,0.507,0.933,2.345,0.869,1.693,1.209,1.153,0.447,1.408,1.617,1.451,0.546,0.8,1.612,1.064,0.677,0.932,1.126,1.15,2.933,0.923,0.604,0.941,1.037,1.226,1.247,0.954,0.98,0.782,0.603,0.675,1.358,1.15,1.35,1.266,1.028,1.363,1.206,0.813,0.681,0.898 +NM_006580,0.989,1.109,0.967,1.309,0.981,1.135,0.952,1.285,0.936,1.056,0.988,0.975,0.921,1.167,0.757,0.935,1.09,1.038,0.872,0.973,0.911,0.936,0.893,0.946,0.977,1.017,1.229,1.137,1.184,1.056,1.002,1.035,1.033,1.079,1.302,1.007,1.044,1.145,0.902,1.058,0.991,0.966,1.009,1.111,0.985,0.988,0.943,0.914,1.131,1.028,1.038,1.0,0.971,1.097 +NM_006584,0.979,1.268,1.109,1.081,0.823,1.078,0.965,0.941,1.144,0.97,0.943,1.006,0.954,1.103,1.356,1.061,0.954,0.914,1.11,0.872,0.77,0.835,0.914,0.987,1.045,0.902,0.833,1.002,0.669,1.049,0.929,0.978,1.817,1.143,0.827,1.006,0.983,1.049,1.073,0.745,1.168,1.018,0.851,1.051,1.063,0.889,1.046,1.216,1.005,0.972,0.888,0.866,0.875,0.959 +NM_006585,0.46,1.244,1.078,0.637,0.815,1.133,0.688,0.482,1.234,1.188,1.079,0.856,0.384,0.499,0.855,1.953,0.968,0.886,1.389,0.952,0.529,0.803,1.709,1.312,0.461,0.54,1.817,0.717,0.399,1.248,0.969,0.941,3.716,1.264,0.0831,0.992,1.153,0.95,1.84,0.868,1.24,1.139,0.618,0.965,1.071,1.155,0.939,0.563,0.88,0.623,1.196,0.974,1.15,1.946 +NM_006586,0.972,1.124,0.963,0.927,0.885,1.228,1.034,0.792,0.87,0.811,0.865,0.863,1.066,0.731,0.794,1.209,0.893,0.895,0.978,0.938,0.922,0.936,1.215,0.932,0.939,0.98,1.337,0.827,0.816,0.989,0.977,1.801,3.006,1.378,0.832,1.152,0.823,0.899,1.569,1.482,0.958,1.168,0.705,1.81,0.999,0.923,0.82,0.828,1.004,0.948,0.9,0.999,0.997,1.347 +NM_006587,1.059,0.953,1.05,0.932,1.035,1.165,0.99,1.01,0.875,1.161,1.192,0.986,0.966,1.158,1.051,1.076,0.867,1.141,0.869,1.063,0.976,1.023,1.073,1.069,0.914,1.066,1.002,1.074,0.939,0.945,1.029,2.234,1.001,1.326,1.192,1.016,1.084,1.091,0.925,1.012,0.972,1.071,0.834,1.009,0.939,0.982,0.993,0.983,0.987,1.058,1.411,0.949,0.938,0.997 +NM_006588,1.004,0.902,0.898,1.023,1.098,1.056,1.116,0.87,0.92,0.996,0.926,0.955,0.994,0.967,1.356,1.242,0.879,1.2,1.0,1.079,0.94,0.91,1.126,1.041,0.816,1.02,1.174,1.001,1.064,0.908,1.102,0.926,1.22,0.996,1.122,0.973,1.048,0.983,1.069,1.225,1.002,0.957,0.873,1.023,1.067,1.159,0.984,0.98,1.027,1.054,0.894,0.98,0.777,1.114 +NM_006589,0.988,0.975,0.993,1.033,0.991,1.129,0.824,0.77,0.92,0.866,0.999,0.901,1.037,1.024,1.22,1.007,1.068,1.085,1.014,0.959,1.176,1.092,1.108,0.937,0.917,0.852,1.046,0.967,1.445,1.044,1.393,1.179,0.907,1.044,1.265,0.964,1.08,0.93,1.039,0.888,1.005,1.129,1.043,1.102,0.86,0.865,0.849,0.975,0.907,1.004,0.831,0.848,1.166,0.809 +NM_006590,0.728,0.988,1.156,0.722,0.869,1.009,0.606,0.501,1.014,1.147,0.94,0.923,0.717,0.627,0.888,1.321,0.867,0.801,1.261,0.914,0.599,0.898,1.489,1.217,0.742,0.941,1.157,0.843,0.426,1.461,0.911,1.441,3.027,1.173,0.304,1.279,1.002,0.865,1.402,1.418,1.336,1.031,0.696,2.062,0.952,0.874,1.043,0.86,1.001,0.815,0.894,0.983,0.999,2.057 +NM_006591,0.468,1.267,0.783,0.841,0.559,1.49,0.866,0.443,0.784,0.642,1.32,0.735,0.526,0.633,0.853,1.639,0.669,0.976,0.804,1.259,0.449,0.703,1.753,0.876,0.572,0.548,1.14,0.63,0.506,2.094,0.634,1.223,2.928,1.813,0.322,1.152,1.205,0.642,1.588,0.8,0.767,1.295,1.364,1.024,0.687,1.132,0.705,0.531,1.346,0.645,1.385,2.029,0.691,1.515 +NM_006594,1.169,0.903,1.302,0.933,1.311,0.731,0.678,0.634,1.383,0.96,0.903,0.851,0.623,1.017,1.066,0.999,1.071,0.982,1.771,0.844,0.855,1.114,1.022,1.076,0.798,1.798,1.435,1.022,0.539,1.089,0.969,1.041,1.727,0.994,1.363,0.885,1.008,1.308,1.127,0.733,1.235,1.042,0.658,1.017,1.356,0.915,0.845,1.098,0.946,1.12,1.032,0.904,1.305,1.165 +NM_006595,0.736,0.99,1.236,0.746,0.729,1.2,0.557,0.484,1.289,0.9,0.982,0.661,0.626,0.789,1.111,1.877,0.71,0.82,1.386,0.89,0.614,0.882,1.373,1.161,0.746,0.869,1.309,0.822,0.492,1.371,0.921,0.817,1.885,1.393,0.196,1.497,1.264,0.836,1.343,0.741,1.105,1.147,0.562,1.223,0.926,0.964,0.783,0.786,1.019,0.852,1.058,0.779,1.044,1.803 +NM_006596,1.021,0.825,1.094,1.086,0.996,0.822,1.084,0.745,1.527,0.952,0.837,1.087,0.884,0.996,1.159,1.154,1.048,0.886,1.24,0.935,0.738,1.187,1.177,1.362,0.755,1.023,1.84,0.867,0.901,0.909,0.988,1.296,2.37,0.736,0.77,0.992,0.753,0.857,1.147,1.313,1.434,0.755,0.877,1.213,0.992,1.032,0.868,0.975,1.18,0.917,1.208,0.978,1.133,2.188 +NM_006597,0.567,0.917,0.961,0.575,0.85,0.655,0.335,0.272,1.413,1.529,0.553,0.498,0.368,0.522,0.877,1.487,1.031,0.75,1.319,0.773,0.577,0.588,1.11,1.368,0.318,0.607,1.35,0.669,0.151,0.828,1.126,1.329,2.169,1.262,0.157,1.005,1.227,0.939,1.465,0.593,1.025,1.166,0.598,0.66,0.979,1.351,1.131,0.479,1.395,0.78,1.172,0.728,0.674,1.826 +NM_006598,0.201,1.195,0.262,0.466,0.297,1.016,1.132,0.215,0.35,0.233,0.918,0.178,0.21,0.192,0.697,1.274,0.316,1.035,0.273,1.245,0.208,0.22,1.509,0.247,0.588,0.202,0.404,0.225,0.924,1.919,0.251,3.68,1.967,1.312,0.246,1.011,1.052,0.235,2.228,2.176,0.295,1.145,1.147,2.16,0.256,1.093,0.72,0.235,1.268,0.263,0.98,2.391,0.238,2.522 +NM_006600,0.736,1.081,0.66,1.082,0.644,1.167,1.503,0.453,0.783,0.921,0.62,1.069,0.756,0.416,0.717,1.239,0.685,0.912,0.812,0.897,0.733,0.891,1.144,1.092,1.148,0.838,0.984,0.663,0.932,1.446,0.736,1.033,1.989,1.508,0.228,1.1,1.017,1.133,3.505,0.797,1.099,1.09,0.76,2.012,0.922,0.783,0.856,0.984,1.149,0.841,0.987,0.913,0.733,1.945 +NM_006601,0.646,0.886,1.094,0.612,1.005,1.087,0.774,0.471,1.124,1.016,1.274,0.916,0.652,0.646,1.004,1.918,0.656,0.774,1.746,0.762,0.936,0.617,1.079,1.473,0.42,0.653,1.449,0.967,0.294,1.364,0.972,0.795,2.142,1.053,0.204,1.203,1.368,1.04,1.418,0.687,1.423,0.941,0.638,1.34,0.983,1.116,1.203,0.728,1.268,0.649,1.056,0.913,0.906,1.718 +NM_006602,0.967,0.999,1.147,0.82,1.178,1.13,0.626,1.004,1.07,1.054,0.754,1.129,1.01,0.917,1.019,0.969,0.926,0.83,1.09,0.768,0.979,1.126,1.192,1.181,0.831,1.019,1.337,1.132,0.605,0.932,1.156,1.273,2.119,1.259,0.704,0.894,0.95,1.101,0.862,1.191,1.094,0.962,0.874,1.051,1.011,0.732,1.004,0.772,0.627,0.955,0.835,1.46,0.997,1.477 +NM_006603,0.717,1.022,1.254,0.868,0.942,1.176,0.65,0.729,1.237,0.898,0.816,0.939,0.86,0.758,0.917,1.351,0.843,0.964,1.16,1.086,0.615,0.876,1.098,1.031,0.642,0.81,1.286,1.002,0.49,1.231,1.025,1.031,2.351,1.306,0.615,0.824,1.001,0.793,1.138,0.853,0.969,1.116,0.658,1.275,0.96,1.039,0.971,0.72,0.87,0.847,1.002,0.866,0.744,1.297 +NM_006604,0.999,0.867,1.051,1.052,0.971,0.907,0.968,1.019,1.098,1.143,1.283,1.088,0.988,1.033,1.07,0.806,1.052,0.876,0.932,1.023,0.993,1.033,1.011,0.955,0.991,1.158,0.89,1.046,0.863,0.9,1.045,1.277,1.518,0.866,1.041,0.978,1.011,0.995,0.868,0.962,1.026,0.936,0.952,0.958,0.931,1.043,1.132,1.063,1.046,1.059,1.026,0.906,0.973,1.043 +NM_006605,1.077,1.034,1.054,0.888,1.076,1.005,1.024,0.999,0.857,1.105,1.102,0.999,0.89,1.009,1.076,0.956,1.013,0.925,0.907,0.982,1.035,0.956,0.826,1.108,1.045,0.977,0.852,1.102,1.076,0.896,0.944,0.991,1.88,0.96,0.911,0.913,0.847,0.947,0.977,1.055,0.846,0.927,0.993,0.903,1.085,1.072,1.067,1.011,1.084,1.0,1.0,0.966,0.997,0.976 +NM_006606,1.036,0.935,1.037,0.936,0.933,1.057,1.101,1.068,1.098,0.904,0.95,1.114,0.908,0.844,0.955,1.083,1.0,0.948,0.973,1.023,0.933,0.946,1.112,1.049,1.062,0.882,1.055,0.929,1.046,1.08,0.941,1.161,1.422,1.04,0.877,0.983,1.085,1.005,1.007,0.987,1.015,1.056,0.989,1.023,0.914,1.003,0.914,0.91,1.018,0.975,0.985,0.914,0.867,1.071 +NM_006607,0.737,0.646,1.792,1.017,1.063,0.784,0.742,0.606,1.308,1.61,0.724,1.529,1.039,0.712,0.903,1.194,1.344,1.074,1.082,0.81,0.899,0.74,1.517,1.326,0.46,0.817,2.059,1.274,0.311,0.737,0.993,0.977,5.373,0.583,0.213,1.871,0.839,1.144,1.342,1.012,1.623,0.498,0.717,1.071,1.19,0.781,1.237,0.675,1.234,0.93,1.094,0.941,1.352,2.407 +NM_006608,0.832,1.152,0.898,0.84,0.781,1.133,0.938,0.867,0.778,0.82,0.869,0.761,0.806,0.926,0.999,1.281,0.705,0.922,0.915,1.103,0.845,0.756,1.132,0.868,0.937,0.816,0.878,0.848,0.956,1.185,0.847,1.254,1.653,1.29,0.78,1.255,1.152,0.791,1.28,1.102,0.929,1.023,0.912,0.89,0.78,0.709,0.828,0.889,0.741,0.834,1.002,0.906,1.082,2.112 +NM_006610,1.104,0.95,1.087,1.091,0.949,0.874,1.02,1.011,0.963,0.994,1.086,0.885,1.016,0.887,1.097,1.078,0.948,1.001,0.968,1.029,0.974,1.008,1.025,1.207,1.094,1.052,0.904,1.014,1.199,1.087,0.871,0.95,0.821,0.958,0.993,0.978,1.082,0.948,0.876,1.078,0.923,1.017,1.316,1.009,0.965,1.126,0.988,0.974,0.921,1.032,1.012,1.073,0.937,1.109 +NM_006612,0.792,0.66,1.313,0.694,1.27,1.441,0.728,1.363,1.481,1.043,0.907,1.191,0.965,0.749,0.971,1.79,1.079,0.953,1.546,1.095,0.84,1.863,0.984,1.449,0.609,1.184,0.951,1.27,0.536,1.189,1.883,1.038,1.587,1.501,0.875,0.466,0.631,1.808,0.941,0.557,1.083,1.101,0.438,0.764,1.15,0.872,0.824,1.535,0.803,1.3,0.953,0.499,0.957,0.977 +NM_006614,1.06,1.052,0.977,0.845,0.958,0.989,0.801,1.152,0.969,0.955,0.973,1.026,0.894,1.017,0.944,0.971,1.143,0.977,0.978,0.963,1.071,1.025,0.896,0.95,1.001,0.967,1.109,1.092,1.214,0.984,1.12,1.036,0.927,1.042,0.932,0.998,0.992,0.939,0.95,1.051,1.066,1.008,1.283,0.81,0.961,0.993,1.016,0.814,1.035,1.102,1.021,0.88,0.991,1.018 +NM_006615,0.885,2.235,0.812,1.791,0.793,2.792,2.805,0.873,0.827,0.778,3.237,0.838,0.954,0.763,1.46,1.505,0.913,3.299,0.856,3.714,0.855,0.797,2.144,0.764,2.583,0.894,0.761,0.835,3.118,2.165,0.856,0.836,1.64,3.506,0.915,1.353,2.626,0.849,1.034,0.789,0.76,2.284,1.167,0.892,0.776,2.651,0.822,0.887,1.45,0.698,1.823,0.862,0.903,0.814 +NM_006617,0.939,1.085,0.905,0.889,0.883,1.072,0.916,0.959,0.955,0.891,1.093,0.927,0.967,0.927,1.0,0.962,0.98,0.983,0.903,0.937,0.954,0.982,1.208,1.009,1.142,0.904,0.999,1.055,1.067,1.039,1.054,1.194,1.134,1.166,1.077,0.936,1.011,1.016,1.305,1.385,1.122,1.13,0.898,0.919,1.007,1.084,0.906,1.07,0.979,0.914,1.0,1.002,1.051,0.96 +NM_006618,0.905,0.878,1.997,0.656,1.314,1.135,0.643,0.677,1.385,1.147,1.01,1.002,0.484,1.014,0.992,1.116,1.099,0.991,1.272,1.136,0.676,1.06,1.305,0.994,0.542,0.864,1.454,1.022,0.435,1.277,1.542,1.438,0.951,1.25,0.644,0.698,0.948,1.084,1.064,1.178,0.893,0.998,0.745,1.191,1.216,0.936,0.896,0.962,0.661,1.028,1.253,0.908,0.959,0.886 +NM_006621,0.643,0.912,1.358,0.63,0.843,1.19,0.694,0.434,1.103,0.836,0.985,0.786,0.657,0.516,1.081,2.076,0.811,1.027,1.269,1.005,0.506,0.726,1.217,1.195,0.658,0.69,1.23,0.679,0.494,1.335,0.895,0.928,1.878,1.291,0.328,0.496,1.156,0.828,1.547,0.734,1.111,1.241,0.715,0.79,0.994,1.13,0.758,0.587,1.267,0.82,1.128,0.769,0.798,1.15 +NM_006623,1.22,0.652,1.998,1.057,2.381,0.575,0.468,0.787,1.844,2.842,0.465,2.748,1.239,1.323,1.022,0.486,0.633,1.779,2.264,0.384,0.785,1.535,0.606,2.299,0.565,1.857,1.249,1.684,0.22,0.555,1.699,2.25,2.753,0.563,0.145,0.606,0.369,1.993,1.18,0.255,1.403,1.215,0.199,1.802,1.147,0.321,0.887,1.032,0.308,0.852,0.755,0.587,1.224,3.138 +NM_006624,0.796,1.151,1.125,0.81,1.047,1.046,1.039,0.834,1.039,0.933,1.03,0.922,0.912,0.857,1.072,1.049,0.96,0.997,0.945,0.935,0.978,0.943,1.021,1.072,0.934,1.019,0.963,0.885,0.761,1.052,1.054,1.318,1.887,1.213,0.88,0.88,0.979,0.901,1.111,0.754,1.193,1.138,0.924,1.076,0.913,1.122,1.059,1.129,1.033,0.939,1.025,1.036,0.923,1.175 +NM_006625,1.432,1.99,2.167,1.639,1.513,2.263,1.56,1.093,2.307,2.059,2.356,1.536,1.447,1.4489999999999998,1.94,3.065,1.505,1.838,2.3449999999999998,2.0140000000000002,1.214,1.482,2.474,1.888,1.383,1.415,2.112,1.623,1.46,2.215,1.605,1.897,5.359999999999999,2.253,1.033,2.248,2.452,1.405,2.9219999999999997,1.605,1.994,2.026,1.612,2.283,1.5110000000000001,2.4610000000000003,2.029,1.4,2.511,1.578,2.147,1.754,1.702,3.168 +NM_006627,0.752,1.119,0.944,0.732,0.854,1.181,0.556,0.499,1.132,0.946,1.234,0.793,0.674,0.601,0.956,1.583,0.873,0.869,1.358,1.056,0.6,0.88,1.352,1.01,0.73,1.034,1.144,0.836,0.573,1.127,0.878,0.889,2.051,1.383,0.288,1.149,1.151,0.867,1.556,0.64,1.222,0.982,0.75,1.192,0.9,0.973,1.305,0.925,0.943,0.779,1.087,1.003,0.997,1.722 +NM_006628,0.908,1.077,1.196,0.922,0.778,1.107,0.651,0.685,0.81,1.071,1.052,0.732,0.896,0.78,0.825,1.324,0.876,0.981,1.493,0.9,0.662,0.763,1.408,1.019,0.912,0.987,1.518,0.847,0.554,0.956,0.852,1.095,1.308,1.224,0.478,0.897,1.162,0.879,1.818,0.835,0.971,0.99,1.059,0.99,1.114,0.953,0.793,0.701,0.825,1.282,1.019,1.054,1.04,1.521 +NM_006629,0.834,1.061,0.9,0.795,0.857,1.388,0.752,0.833,1.207,0.784,1.01,0.928,0.953,0.677,1.173,1.342,0.977,0.983,0.913,1.065,0.875,0.984,0.988,1.226,1.006,0.773,0.972,1.067,0.555,1.572,1.139,1.208,1.253,1.216,0.846,0.732,1.158,1.063,1.425,0.712,1.02,1.204,0.861,1.128,0.889,0.934,0.941,0.822,0.985,0.737,1.379,0.788,0.69,2.84 +NM_006630,0.876,1.103,1.168,0.861,1.01,0.97,0.81,0.905,1.095,0.914,1.165,0.826,0.781,1.001,1.023,0.997,0.933,0.976,0.947,1.113,0.908,1.054,1.189,1.035,0.862,0.769,1.227,0.883,0.696,1.217,1.018,1.25,1.234,1.253,0.725,0.864,0.876,0.945,1.043,1.004,0.997,1.245,0.729,0.937,0.858,1.012,0.998,0.779,0.859,0.731,1.043,0.758,0.911,1.1 +NM_006631,1.0,1.127,1.08,1.075,1.087,0.995,1.068,1.057,1.012,0.976,1.137,1.249,0.879,1.466,0.982,1.172,1.005,1.184,0.915,0.995,0.934,1.061,1.175,1.035,0.975,1.028,0.887,1.013,1.036,0.938,1.032,0.865,1.074,0.976,1.014,1.216,0.982,1.065,1.021,1.069,0.965,1.106,0.921,0.859,0.927,0.862,0.891,1.057,1.056,1.018,1.073,1.09,0.999,1.141 +NM_006633,0.382,2.098,0.395,0.885,0.417,2.969,1.586,0.358,0.39,0.395,1.926,0.436,0.394,0.433,1.313,3.89,0.406,1.46,0.393,2.36,0.336,0.357,2.967,0.359,1.158,0.323,0.443,0.378,1.133,2.059,0.29,0.925,1.398,2.915,0.285,0.735,2.228,0.43,2.583,0.492,0.347,3.228,1.933,0.99,0.387,2.139,1.058,0.392,2.841,0.421,2.292,0.593,0.412,0.817 +NM_006634,0.949,0.78,1.166,0.557,0.75,0.797,0.761,0.585,1.3,0.982,0.899,1.02,0.909,0.613,1.081,1.354,1.525,0.741,1.117,0.725,0.772,0.757,1.167,1.156,0.813,0.852,1.817,0.927,0.531,1.039,0.677,2.485,1.52,1.289,0.35,0.566,0.617,0.992,1.175,1.06,1.602,1.297,0.676,1.038,1.116,1.063,1.201,1.071,0.553,0.961,0.767,1.644,1.724,2.446 +NM_006635,1.045,0.987,1.069,1.223,1.061,0.91,0.849,1.185,0.98,1.3,1.023,1.022,0.988,0.85,0.931,1.095,1.026,1.04,1.08,0.993,0.885,1.008,0.973,1.019,0.959,1.059,1.06,1.047,0.875,0.913,1.016,0.976,0.988,1.02,1.141,1.088,0.92,0.973,1.099,0.858,0.943,0.973,0.869,1.023,0.952,1.107,0.993,1.01,1.053,1.09,1.02,1.169,0.936,0.936 +NM_006636,0.502,1.15,1.263,0.629,0.518,1.418,0.937,0.508,0.763,0.77,0.993,0.928,0.787,0.378,0.712,1.505,1.197,0.868,0.76,1.039,0.373,0.712,1.631,1.399,0.582,0.452,1.099,0.479,0.51,1.065,0.602,1.679,3.691,1.083,0.478,0.685,1.021,0.509,2.051,1.407,0.836,1.129,0.766,1.087,0.906,1.165,1.144,0.518,1.539,1.124,1.242,1.141,0.548,3.318 +NM_006637,1.103,0.935,1.1,1.132,1.003,1.06,0.856,1.175,1.01,0.868,1.036,1.025,1.036,1.027,0.969,1.09,0.855,1.09,1.034,0.903,0.917,1.002,0.872,0.942,0.952,1.048,1.076,1.062,1.123,1.148,0.919,1.078,0.877,1.025,0.963,1.071,1.133,0.941,1.15,1.032,0.888,0.965,1.0,1.052,1.012,0.903,1.052,0.953,1.017,1.085,1.093,1.14,0.936,0.931 +NM_006638,1.009,1.058,1.28,0.701,1.342,0.667,0.601,0.854,1.755,1.388,0.87,1.72,1.118,0.809,0.927,1.124,1.041,1.051,1.614,0.739,0.774,1.134,0.997,1.928,0.505,1.139,1.54,1.149,0.496,0.649,1.221,1.187,4.119,0.81,0.428,0.961,0.885,1.333,0.994,0.72,1.645,0.857,0.594,0.898,1.694,0.746,1.246,1.121,0.85,1.251,0.873,1.059,1.244,2.373 +NM_006639,1.003,0.964,0.862,0.99,1.038,0.904,1.031,1.135,1.01,0.888,1.11,0.973,0.956,0.776,0.822,0.923,1.038,0.918,1.154,0.957,1.055,1.065,0.922,0.87,1.023,1.023,1.004,1.089,0.803,1.244,1.022,1.032,0.86,1.091,0.852,0.999,0.974,0.985,1.068,1.027,1.102,1.15,0.895,0.935,0.996,1.055,0.935,0.968,0.885,1.034,1.061,1.017,0.964,1.106 +NM_006641,0.97,0.97,1.016,1.108,0.954,0.994,0.888,1.018,0.999,1.062,1.033,0.991,0.939,1.053,0.88,1.011,0.945,0.99,1.085,1.125,0.961,0.957,1.009,1.024,0.973,0.883,1.04,0.991,0.759,0.974,0.903,0.98,1.084,1.126,0.972,0.968,0.979,1.045,1.156,0.96,0.968,1.03,0.787,1.155,0.961,1.019,1.026,1.171,0.952,1.065,1.0,1.026,1.097,1.12 +NM_006642,0.972,1.151,1.082,0.964,1.003,1.142,1.028,1.0,1.007,1.213,0.992,1.051,1.022,0.944,1.076,1.007,1.026,1.079,1.177,1.179,0.903,0.944,1.034,0.992,0.913,0.822,1.172,0.998,1.027,1.101,0.928,1.071,1.304,0.942,0.846,1.047,1.025,1.132,1.008,1.063,1.037,0.966,1.006,0.999,0.82,1.031,0.843,1.125,0.897,0.88,1.01,0.908,1.154,1.298 +NM_006643,0.912,1.278,0.923,0.71,0.79,0.819,0.614,0.556,1.033,0.881,1.191,0.937,0.692,0.658,1.152,1.128,0.943,0.743,1.033,0.89,0.567,0.665,1.131,1.051,0.695,0.71,1.09,0.696,0.585,1.03,0.891,2.086,1.847,1.119,0.357,4.631,0.883,0.768,1.39,1.474,1.144,0.956,0.903,1.881,0.974,0.929,1.145,0.644,0.951,0.635,0.873,1.334,0.909,3.074 +NM_006644,0.861,0.738,1.156,0.671,0.697,0.635,1.678,0.424,1.093,1.466,1.0,1.028,0.593,0.496,0.601,1.172,0.824,0.717,1.015,0.703,1.762,0.485,0.987,1.175,0.589,0.71,2.15,0.633,0.625,1.552,1.113,2.294,1.481,0.799,0.241,0.815,1.018,1.076,1.89,2.083,2.329,0.932,0.629,0.704,1.146,1.331,1.05,0.742,1.041,0.939,1.193,1.335,1.158,2.396 +NM_006645,0.34,1.619,0.453,1.569,0.333,2.316,0.837,0.277,0.335,0.42,2.589,0.317,0.378,0.241,0.656,2.442,0.325,1.777,0.706,1.431,0.347,0.515,1.751,0.417,2.181,0.522,0.398,0.266,1.353,2.62,0.282,1.181,1.543,3.167,0.181,1.836,1.443,0.479,4.212,0.755,0.407,1.799,0.838,1.136,0.408,1.138,0.709,0.533,0.555,0.468,1.415,0.471,0.401,0.51 +NM_006646,0.911,1.288,1.068,0.906,0.915,0.999,0.918,0.829,1.03,1.008,1.005,1.062,0.942,1.006,0.987,1.03,1.058,0.901,0.991,0.958,0.853,1.092,0.994,0.908,1.424,0.915,0.901,0.901,0.717,1.074,1.069,1.475,1.293,1.442,0.918,1.252,1.016,1.019,0.925,1.007,1.161,1.189,0.751,0.883,0.951,0.958,0.996,0.936,0.94,0.986,0.926,0.984,1.103,0.991 +NM_006647,0.996,0.971,1.128,0.893,0.967,1.172,0.947,0.99,0.879,0.938,1.055,1.048,1.026,0.876,1.306,1.143,1.132,0.839,0.999,1.004,0.899,0.895,1.005,0.955,0.892,1.061,0.89,1.021,0.903,1.002,1.116,1.095,1.07,1.05,0.878,1.121,0.861,1.032,0.965,0.956,1.003,0.92,0.86,0.999,1.145,0.905,0.874,1.057,0.998,0.949,0.992,1.005,1.17,1.217 +NM_006648,0.861,1.057,0.953,0.885,0.928,0.812,0.955,1.0,0.982,0.874,1.036,0.917,0.954,0.946,1.049,1.167,0.898,0.862,1.179,1.194,0.881,0.997,1.304,0.94,0.942,0.755,0.963,0.979,0.971,0.89,0.809,1.14,1.456,1.147,1.007,1.109,1.0,1.043,0.955,0.885,0.86,1.092,1.033,1.048,0.889,1.071,0.978,0.912,1.092,1.005,1.126,0.981,0.892,0.871 +NM_006649,0.734,0.93,0.992,0.693,1.005,0.838,0.623,0.504,1.258,1.334,0.777,0.919,0.724,0.775,0.939,1.049,0.974,0.761,1.104,0.89,0.863,0.895,1.25,1.039,0.65,1.001,1.152,0.748,0.506,0.918,1.027,1.251,3.07,1.163,0.364,1.45,0.889,0.884,1.47,0.948,1.02,1.177,0.826,2.639,1.118,0.71,0.952,0.781,0.939,0.742,0.989,1.178,1.265,1.703 +NM_006650,1.096,0.903,0.99,0.828,0.909,1.135,1.047,1.083,0.958,1.032,0.979,0.943,1.048,0.974,0.991,1.089,0.927,1.061,1.007,0.989,0.892,1.079,1.027,0.999,1.012,0.899,1.05,0.994,2.05,0.978,0.976,1.142,0.873,1.087,1.017,1.06,0.952,1.007,1.123,1.077,0.939,1.088,0.956,0.946,0.968,1.128,1.122,0.947,0.973,1.088,1.151,0.984,1.004,1.298 +NM_006651,0.919,0.905,1.025,0.872,0.872,0.973,0.955,0.929,0.987,1.032,1.121,0.908,0.809,1.049,1.226,1.041,1.003,0.845,1.063,1.053,0.944,0.899,1.112,0.997,0.935,1.281,1.114,0.835,1.296,0.956,1.085,1.294,1.569,0.824,1.251,1.435,0.937,0.885,1.185,1.081,1.086,0.805,1.233,1.824,0.869,0.971,1.24,1.143,0.974,0.999,1.157,0.76,1.124,1.235 +NM_006653,0.806,1.162,1.007,1.004,1.021,1.036,0.934,0.929,1.04,0.871,0.992,0.949,1.019,1.105,0.924,1.022,0.968,0.877,0.879,0.999,0.945,0.824,0.914,1.062,0.908,0.984,0.973,0.941,0.842,1.032,0.979,1.337,1.088,1.073,0.988,1.001,0.961,0.922,0.934,1.327,0.929,1.027,0.999,0.985,0.949,0.96,1.001,1.001,0.871,0.921,1.168,0.931,0.851,1.269 +NM_006654,1.044,0.926,0.958,1.07,1.103,0.967,1.107,0.988,1.054,0.939,1.073,1.062,0.882,1.007,1.218,1.007,0.945,1.17,0.941,0.978,1.081,1.002,0.928,0.974,1.114,0.948,1.013,0.974,0.886,0.869,1.116,1.049,0.94,0.947,0.9,0.946,1.041,0.925,1.012,1.114,0.975,1.015,1.386,1.008,1.036,1.165,0.998,0.986,0.922,0.972,1.168,0.928,1.051,1.111 +NM_006657,0.986,0.94,0.992,1.008,1.019,0.929,1.339,1.223,0.937,1.043,1.006,1.023,1.009,0.93,1.04,0.979,1.254,1.036,1.081,1.046,1.029,0.882,1.054,1.057,0.98,1.037,1.009,0.955,1.113,0.936,1.171,1.006,0.937,0.877,0.91,0.872,1.087,1.015,1.008,1.026,0.821,0.949,1.236,1.006,1.04,0.981,0.914,1.09,0.984,0.872,1.173,0.912,0.931,1.069 +NM_006658,0.903,1.055,0.924,1.127,1.065,1.059,0.951,1.011,0.979,1.0,0.959,1.011,0.994,0.91,0.926,0.962,1.024,1.183,0.972,0.998,1.046,0.971,0.881,0.977,0.999,1.042,0.869,0.997,0.732,1.013,1.028,1.158,0.953,1.058,1.05,1.021,0.949,1.121,1.069,0.897,0.927,1.101,1.001,1.0,0.922,1.041,1.107,1.014,0.911,1.001,0.994,1.008,1.042,1.001 +NM_006659,0.82,0.968,0.913,0.907,0.783,1.16,0.569,0.503,0.86,0.892,0.865,0.757,0.689,0.681,0.813,1.375,0.965,0.962,1.029,0.883,0.617,0.959,1.221,0.955,0.915,1.001,1.005,0.652,0.742,1.294,0.747,1.453,1.16,1.217,0.374,1.32,1.05,0.851,1.854,0.821,0.899,1.13,0.872,0.938,0.872,1.002,0.88,0.999,0.985,0.905,1.007,0.873,0.932,1.11 +NM_006660,0.774,0.702,1.992,0.743,1.086,0.99,0.611,0.995,1.681,1.159,0.994,0.889,0.789,1.06,1.342,1.324,1.915,0.824,2.635,0.814,0.944,0.864,1.151,1.183,0.606,0.774,2.085,1.085,0.627,0.994,1.446,0.809,2.019,1.104,1.234,0.843,0.862,0.901,0.885,0.749,1.589,0.748,0.877,0.708,1.371,0.815,1.173,0.771,1.005,1.467,0.831,0.741,1.825,1.763 +NM_006661,0.97,0.977,1.202,1.073,1.123,1.16,0.888,0.898,1.012,1.029,0.987,1.079,0.914,1.156,0.806,1.039,1.049,0.845,1.06,1.001,0.899,1.024,0.988,0.959,1.013,1.293,0.956,0.834,1.726,1.12,1.072,0.957,1.023,1.203,0.953,0.957,1.244,1.037,0.928,0.993,0.798,1.116,1.167,1.048,0.902,1.029,0.985,0.951,1.064,0.935,1.015,1.044,0.964,0.832 +NM_006662,1.083,1.151,0.902,0.915,0.861,1.073,0.785,1.001,1.005,1.008,0.874,1.019,0.991,0.895,0.769,0.908,1.097,0.94,1.063,1.023,1.044,1.086,1.01,1.045,1.01,0.889,0.891,0.939,0.923,1.002,1.088,1.11,0.986,1.031,0.83,0.832,0.901,0.906,1.172,0.961,0.89,1.036,0.9,1.09,0.961,1.158,1.085,1.061,0.939,0.947,1.013,0.917,1.124,1.043 +NM_006663,3.219,0.652,3.354,1.47,2.215,0.665,0.443,2.394,2.625,2.098,0.516,2.374,1.806,2.027,1.639,0.95,2.819,1.349,3.806,0.707,2.419,3.898,0.85,2.342,0.413,4.099,2.386,1.818,0.385,0.477,2.543,0.718,2.615,0.609,3.437,0.724,0.518,2.772,1.058,0.553,2.026,0.714,0.493,1.191,2.669,0.573,1.137,4.339,0.6,3.607,0.922,0.866,2.62,1.172 +NM_006666,1.089,0.887,0.866,1.007,0.879,0.894,0.678,0.503,1.021,1.215,1.009,0.823,0.804,0.594,0.973,1.293,0.921,0.963,1.368,0.859,1.079,0.776,1.661,1.198,0.685,1.221,1.179,0.832,0.534,0.946,0.818,0.879,4.276,1.16,0.354,1.192,0.88,0.853,1.899,0.865,1.116,0.991,0.672,2.071,1.232,0.739,1.061,0.807,1.228,1.071,1.021,0.966,1.214,1.483 +NM_006667,0.579,1.165,0.803,0.762,0.625,1.706,0.76,0.629,0.937,0.643,1.723,0.594,0.68,0.608,1.02,2.459,0.513,1.084,1.067,1.005,0.554,0.674,1.463,0.845,0.722,0.667,1.027,0.621,0.684,1.316,0.734,1.302,2.908,1.815,0.354,0.952,1.641,0.801,1.216,0.625,0.816,1.339,0.66,1.076,0.869,1.169,1.064,0.659,0.901,0.735,1.228,0.762,0.751,1.334 +NM_006669,0.952,1.086,1.091,0.992,1.345,0.872,0.957,1.047,0.861,1.051,0.881,0.953,0.951,1.063,0.955,1.167,1.061,1.192,0.968,0.92,0.929,0.882,1.271,0.908,0.928,1.045,0.998,1.158,0.82,1.121,0.919,0.838,0.856,0.777,0.934,0.92,1.122,0.988,0.969,1.188,1.099,0.84,0.949,1.153,0.962,1.173,0.679,1.187,0.979,1.011,0.939,1.119,0.927,1.148 +NM_006670,0.581,1.154,1.342,0.663,0.845,1.113,0.768,0.583,0.762,1.116,1.002,0.754,0.637,0.514,0.844,1.068,0.901,1.0,1.086,1.18,0.72,0.71,1.068,1.287,0.523,0.579,1.811,0.739,0.509,1.351,0.817,3.062,1.676,1.169,0.402,1.415,0.89,0.887,1.706,2.707,1.239,1.064,0.683,1.934,0.991,0.755,1.384,0.554,0.693,1.166,1.354,1.309,1.105,2.089 +NM_006671,0.749,1.087,0.708,1.02,0.819,1.428,0.997,0.989,0.958,0.925,1.41,0.85,0.872,1.08,1.02,1.335,0.973,0.972,0.766,1.349,0.771,0.921,0.943,0.949,0.933,0.899,0.705,0.843,1.32,1.915,0.945,1.063,0.932,1.689,0.848,4.31,1.167,0.866,1.242,2.922,0.809,1.39,1.024,1.011,0.749,1.93,1.288,0.822,1.11,0.972,0.822,0.941,0.933,0.857 +NM_006672,0.965,0.919,1.003,1.025,1.085,1.03,1.073,0.965,0.822,0.989,0.9,0.986,0.841,0.901,1.089,1.099,0.995,0.936,0.917,1.091,0.964,0.963,0.996,1.144,1.041,0.923,1.07,0.992,1.219,0.916,1.044,0.921,0.929,1.098,1.105,1.049,0.997,1.051,1.013,0.87,1.034,0.89,1.148,1.033,0.99,1.165,1.089,0.992,1.087,0.995,0.992,1.011,0.987,0.849 +NM_006675,1.206,1.027,1.101,1.083,0.825,0.903,0.97,0.81,1.026,1.207,0.99,1.013,0.807,0.878,0.885,0.97,1.018,1.072,1.066,0.889,0.933,1.014,0.902,0.998,0.968,1.121,1.063,0.944,0.801,0.947,0.938,1.267,1.279,1.037,1.122,0.881,1.035,0.82,0.994,1.209,0.722,1.155,1.02,1.126,1.099,1.119,1.103,0.999,0.941,1.099,0.838,1.178,1.185,1.116 +NM_006676,1.062,0.999,1.431,1.026,0.947,0.749,1.154,0.656,0.973,1.04,0.75,0.782,0.876,0.841,0.976,0.984,1.143,0.869,1.056,0.946,0.898,1.135,0.971,1.017,0.97,1.094,1.27,0.797,0.905,0.976,1.06,1.742,1.062,1.087,0.605,0.782,0.786,0.914,1.23,1.088,1.032,1.085,0.844,1.178,1.038,0.747,0.99,0.973,0.738,1.119,0.911,0.769,0.904,1.087 +NM_006680,0.706,1.355,0.765,1.225,0.703,1.363,1.127,0.733,0.766,0.849,1.405,0.926,0.829,0.775,0.914,1.082,0.791,1.033,0.772,1.057,0.688,0.893,1.095,0.83,1.94,0.82,0.844,0.849,0.767,1.569,0.783,1.255,1.2,1.775,0.854,0.98,1.373,0.797,1.708,0.911,0.851,1.413,1.085,1.127,0.776,1.048,0.854,0.92,1.095,0.927,1.12,0.906,0.777,0.969 +NM_006681,1.777,0.548,1.398,1.065,1.746,0.537,0.14,0.962,1.849,2.065,0.819,2.08,1.161,1.31,1.053,0.906,1.121,1.48,2.335,0.603,1.129,2.112,1.004,1.882,0.158,1.791,1.448,1.902,0.0942,0.498,1.578,0.295,2.31,0.388,0.164,0.569,0.315,2.083,1.308,0.0743,1.803,0.314,0.107,1.269,1.65,1.026,1.33,1.447,0.115,1.341,1.262,0.619,1.152,0.467 +NM_006682,0.863,1.041,1.038,0.987,0.875,1.174,1.114,0.766,0.979,0.875,0.89,0.677,0.809,0.594,0.921,0.827,0.916,0.74,0.738,0.859,0.894,0.799,1.279,0.904,0.931,0.708,1.584,0.917,0.462,2.3,0.809,1.449,0.892,1.471,0.627,0.874,1.295,0.797,1.379,1.802,1.328,1.314,0.679,0.87,0.913,0.947,0.813,0.729,0.891,0.817,0.998,1.281,1.46,2.141 +NM_006683,1.098,0.903,0.952,0.912,1.109,1.077,0.912,1.173,1.049,0.922,1.045,0.993,1.0,0.964,0.908,1.023,0.955,0.988,0.838,1.006,1.054,0.955,1.075,1.045,0.984,1.091,0.939,0.993,1.105,1.043,0.984,0.881,0.941,1.071,1.138,1.049,0.876,0.959,1.029,1.086,1.018,0.922,1.16,0.908,0.952,0.993,1.071,0.964,0.962,1.005,1.035,0.962,1.001,0.945 +NM_006684,1.052,1.125,1.0,1.005,1.025,0.978,0.837,0.977,0.961,0.916,1.074,0.973,0.992,1.169,1.02,0.934,0.924,1.0,0.991,0.927,1.017,1.004,1.09,1.0,0.983,1.007,0.815,0.945,0.838,0.991,1.091,1.024,0.923,1.121,0.958,0.955,0.877,1.152,1.136,1.133,1.02,0.919,0.839,0.887,0.97,1.024,0.957,1.017,1.1,1.055,0.929,0.809,1.099,1.041 +NM_006686,1.022,0.964,1.116,1.11,1.169,0.998,0.923,0.945,1.067,0.898,0.979,1.001,1.126,0.989,0.879,1.069,0.944,1.027,0.946,0.925,1.021,1.006,1.064,1.074,1.026,1.048,1.008,1.078,1.081,1.089,0.795,1.173,0.865,1.145,1.026,0.911,0.911,0.953,1.183,1.022,1.098,1.098,1.072,0.954,1.098,1.042,1.097,1.083,1.052,1.004,1.021,0.965,0.858,1.064 +NM_006687,1.048,0.898,1.129,0.947,1.022,1.009,1.082,1.004,1.003,0.887,1.032,1.022,1.033,0.953,1.123,0.839,1.085,1.106,0.997,0.921,0.998,1.0,0.953,0.939,1.029,1.075,1.176,0.968,0.565,1.097,0.975,1.004,1.12,1.06,0.991,0.953,1.133,1.157,0.887,1.124,0.877,0.996,0.873,0.984,1.051,0.865,1.019,1.007,1.082,1.017,0.92,0.948,1.078,0.907 +NM_006688,0.879,1.025,1.193,0.966,1.005,1.035,0.931,1.169,0.989,0.997,1.02,0.951,0.95,0.753,0.937,0.951,0.928,1.01,0.887,1.19,0.914,0.975,1.02,1.044,1.11,1.204,1.175,0.874,1.047,1.099,0.952,0.97,1.007,0.909,1.081,1.036,1.017,0.987,1.001,0.917,0.929,1.052,0.955,0.978,0.952,1.053,0.926,0.97,1.052,1.051,1.001,0.851,1.141,0.918 +NM_006690,1.145,0.965,1.002,0.917,1.007,1.051,0.879,1.231,1.142,0.923,1.096,0.937,1.0,0.888,0.775,0.91,1.017,1.067,0.992,0.971,1.103,0.979,1.001,1.039,1.164,0.97,1.095,0.986,0.889,0.971,0.874,1.096,0.849,1.027,1.086,1.047,1.011,0.921,0.951,1.123,0.894,0.936,0.809,1.171,0.902,1.006,1.082,1.145,1.072,1.018,0.963,1.154,1.0,1.017 +NM_006691,0.832,1.143,0.962,1.012,0.979,1.152,0.957,1.099,1.011,0.963,0.923,1.127,0.96,0.743,1.256,1.165,0.966,0.987,1.031,1.091,0.927,0.892,0.941,0.976,1.007,0.909,1.061,0.952,0.957,1.049,1.077,1.004,0.9,1.206,0.915,0.874,1.025,1.035,0.995,1.29,1.115,1.18,0.952,0.909,0.956,0.953,1.004,0.988,1.089,0.874,1.128,0.853,0.939,1.152 +NM_006692,1.063,1.045,1.006,0.86,1.045,1.022,0.753,0.999,0.945,1.018,0.967,0.949,0.985,1.069,1.079,1.093,0.953,1.101,1.04,1.208,1.055,0.824,0.829,1.058,1.02,0.964,0.831,0.983,1.132,0.967,0.899,0.906,0.981,0.915,0.931,0.985,0.858,1.056,0.871,0.993,1.074,1.043,1.125,0.887,0.839,0.897,0.813,0.97,0.88,1.06,1.009,1.198,0.866,0.938 +NM_006693,0.77,0.942,1.189,0.624,0.987,0.999,0.565,0.631,1.402,1.032,0.996,1.135,0.746,0.912,0.92,1.167,0.903,0.847,1.364,0.91,0.779,0.898,1.648,1.502,0.573,0.981,1.264,1.124,0.464,1.323,0.983,1.391,2.996,0.943,0.456,0.917,0.934,1.136,0.982,1.362,1.341,0.925,0.673,2.058,1.056,0.738,1.347,0.873,0.802,0.784,0.812,1.915,1.001,1.477 +NM_006694,1.022,1.091,0.887,0.906,0.966,1.038,0.821,0.835,0.956,0.987,1.09,1.065,0.894,0.818,0.982,1.134,0.967,0.978,0.84,0.978,0.909,0.94,1.109,0.999,0.933,0.919,1.056,0.994,0.923,1.073,0.938,1.163,1.247,1.077,0.82,1.184,0.938,0.973,1.175,1.054,0.937,0.984,1.082,1.011,0.986,0.951,1.046,0.926,1.042,0.922,1.0,0.825,0.87,1.088 +NM_006698,0.774,0.869,1.226,0.634,1.001,1.129,0.438,0.537,1.022,0.974,0.943,1.178,0.763,0.692,0.861,1.118,1.111,0.858,1.238,0.891,0.837,1.172,1.07,1.177,0.538,0.99,1.273,0.768,0.552,1.385,0.847,1.319,1.48,0.983,0.358,0.728,0.931,1.27,0.978,1.41,1.1,0.993,0.506,1.217,1.036,0.86,1.077,0.923,0.658,0.827,0.76,1.15,1.095,1.459 +NM_006699,1.268,0.972,1.195,1.283,1.008,1.138,1.402,0.981,1.02,0.812,0.865,1.03,0.98,0.899,0.697,0.889,0.876,0.967,0.828,1.099,1.032,0.95,0.933,1.229,1.063,1.043,1.076,0.854,1.146,0.919,0.998,0.912,1.104,0.931,1.058,0.933,0.778,0.847,1.108,0.895,0.983,0.964,0.815,0.979,1.057,0.997,1.111,0.809,1.156,1.063,1.003,1.073,0.914,0.951 +NM_006700,0.968,0.697,1.711,0.866,1.027,1.114,0.661,0.438,1.041,0.963,0.905,0.831,0.66,0.881,0.901,0.81,1.152,1.34,1.736,0.711,0.963,1.037,0.761,0.995,0.63,1.355,1.916,0.861,0.566,1.211,0.788,0.932,1.195,1.005,0.402,0.66,1.002,1.432,1.423,1.168,1.129,0.857,0.558,0.738,1.034,1.016,0.945,1.07,1.11,1.323,0.8,0.909,1.232,1.3 +NM_006702,0.813,1.014,1.011,0.729,0.946,0.875,0.697,0.83,1.102,0.869,0.725,0.677,0.832,0.914,1.35,1.585,1.375,0.823,1.11,1.142,0.963,0.963,1.412,1.005,0.635,0.855,1.203,0.869,0.741,1.084,1.275,1.056,1.237,0.956,0.85,0.869,1.132,1.148,1.364,1.643,0.966,1.016,0.974,1.091,0.921,0.886,0.945,1.114,1.063,0.743,1.12,0.9,1.009,1.156 +NM_006703,0.91,0.984,1.171,0.769,0.919,0.906,0.605,0.758,1.024,1.011,0.981,1.057,1.09,0.76,0.681,0.958,1.01,0.849,1.357,0.778,0.72,1.14,0.991,1.287,0.722,1.073,1.054,1.046,0.48,0.994,1.003,1.76,2.071,1.225,0.466,0.961,0.932,1.016,1.364,1.144,1.204,1.024,0.634,1.526,1.065,0.695,0.936,1.153,0.672,0.779,0.795,0.849,1.037,1.58 +NM_006704,0.4,0.671,1.197,0.542,0.791,1.177,0.687,0.495,1.319,1.034,0.836,0.817,0.452,0.525,1.005,2.36,0.615,0.808,1.3,1.05,0.55,0.768,1.234,1.206,0.381,0.55,1.361,0.87,0.388,1.394,0.978,1.269,2.215,1.261,0.2,1.137,0.982,0.853,1.238,0.703,1.088,1.059,0.571,1.385,0.856,1.098,1.206,0.431,1.249,0.625,1.138,0.902,0.913,2.092 +NM_006706,0.661,0.81,1.376,0.73,1.03,1.202,0.871,0.717,1.35,1.103,0.651,1.088,0.733,0.708,1.002,1.531,1.135,0.925,0.537,1.182,0.422,1.226,1.216,1.646,0.59,0.654,1.714,0.875,0.667,0.956,1.232,1.544,3.521,0.914,0.491,0.616,1.037,1.216,1.636,1.195,1.141,0.947,0.782,0.657,1.179,1.053,1.077,0.834,1.507,0.969,1.274,0.998,0.537,1.901 +NM_006707,1.097,0.973,0.995,1.017,0.925,1.08,0.932,0.951,1.275,0.979,0.973,1.127,1.0,1.179,0.988,0.99,1.067,1.229,0.984,1.255,1.13,0.832,1.001,1.048,1.148,0.859,1.056,1.08,1.246,0.96,1.082,0.944,0.953,0.863,0.997,0.978,0.986,1.058,1.07,0.991,0.991,1.045,1.163,1.065,1.401,1.098,0.978,1.122,0.984,0.904,0.977,0.889,1.193,0.95 +NM_006708,0.637,1.125,1.451,0.691,0.997,1.238,0.433,0.32,0.961,1.031,1.158,0.988,0.639,0.511,0.891,1.648,0.707,0.931,1.368,1.035,0.44,0.481,1.16,1.314,0.593,0.893,1.444,0.865,0.304,1.064,0.853,1.051,3.035,1.147,0.147,1.026,1.821,0.967,1.457,0.465,1.295,1.009,0.727,0.84,1.217,1.27,1.224,0.671,0.885,0.92,1.087,0.648,0.937,2.386 +NM_006709,0.956,0.948,1.068,0.977,0.965,1.087,0.989,1.113,1.0,0.922,1.185,1.005,0.849,0.974,1.036,1.016,1.008,0.918,1.066,0.826,0.932,0.996,0.969,0.978,0.939,0.995,0.944,1.054,1.139,0.906,1.014,1.082,0.881,0.984,0.952,0.99,1.007,1.219,1.094,1.106,1.145,0.995,1.086,0.845,0.987,1.028,1.005,0.983,1.038,0.99,1.045,1.038,1.015,1.064 +NM_006711,1.049,1.016,1.045,1.043,0.983,0.956,0.919,1.093,0.915,0.93,0.874,0.974,1.084,0.859,1.01,0.973,1.039,0.932,1.031,1.02,1.044,0.798,0.894,1.008,0.993,1.063,1.171,1.028,0.905,1.19,1.055,0.936,0.979,0.99,0.981,0.999,1.073,1.03,1.049,1.108,1.09,0.986,1.328,0.887,1.086,0.984,1.18,1.004,1.023,0.972,0.955,0.976,0.898,1.091 +NM_006713,0.709,1.224,0.966,0.746,0.78,1.818,0.772,0.804,0.957,0.773,1.552,0.973,0.849,0.717,1.128,2.103,0.615,0.71,1.267,0.913,0.601,0.643,1.261,1.1,0.779,0.782,1.413,0.907,0.533,1.298,1.16,1.242,3.128,2.06,0.29,0.782,1.377,0.709,1.025,0.657,0.917,1.348,0.673,1.499,1.015,1.097,0.646,0.664,1.013,0.656,1.247,0.808,0.988,1.41 +NM_006714,0.417,1.434,1.711,0.827,0.513,2.439,1.185,0.342,0.512,0.409,2.907,0.293,0.522,0.452,2.013,3.019,1.032,1.141,1.387,2.262,0.414,0.402,1.389,0.458,0.686,0.333,1.244,0.627,0.87,2.632,0.639,0.85,0.601,2.996,0.359,0.38,2.793,0.457,1.908,0.505,1.119,2.836,0.942,0.389,0.968,1.834,0.848,0.46,1.438,1.124,1.742,0.578,0.718,0.68 +NM_006715,1.029,0.921,0.935,1.02,0.767,1.411,0.615,0.537,0.993,0.714,1.143,0.967,0.69,0.782,1.164,1.25,0.962,0.883,1.151,1.014,0.666,1.023,1.542,1.067,1.151,1.303,0.998,0.78,0.916,1.074,0.797,1.099,1.099,1.776,0.548,1.049,1.14,0.824,1.484,0.977,0.791,1.38,0.821,0.759,0.871,1.071,0.884,0.894,0.767,0.92,1.118,0.763,0.791,0.801 +NM_006717,0.929,0.996,1.035,0.736,0.893,1.043,0.854,0.754,1.311,0.896,1.022,0.971,0.798,0.679,0.933,1.016,0.91,0.887,0.959,0.884,0.804,0.704,0.973,1.16,0.844,0.799,0.898,0.994,0.837,1.12,1.017,1.573,1.301,1.321,0.734,0.699,1.004,0.859,0.969,1.095,1.163,1.349,1.086,1.059,0.973,1.223,1.047,0.686,1.18,0.908,1.107,0.906,0.914,1.198 +NM_006718,1.134,1.029,0.931,0.93,0.998,0.924,1.187,1.01,0.891,0.993,0.976,1.067,1.136,1.182,0.835,0.942,1.015,0.931,0.958,1.002,0.949,1.048,0.989,1.035,0.89,0.998,0.795,1.014,1.039,1.099,0.933,0.879,0.965,1.04,0.986,0.903,0.984,1.073,1.036,1.048,0.93,0.912,1.069,0.982,1.081,1.041,0.978,0.922,0.927,0.991,1.027,0.97,0.974,0.96 +NM_006720,2.426,1.674,2.6100000000000003,1.955,2.7670000000000003,2.208,1.443,1.8739999999999999,3.053,2.1109999999999998,1.946,1.978,1.912,1.9489999999999998,2.191,1.7919999999999998,2.44,2.409,2.989,1.7930000000000001,1.957,2.26,1.686,2.718,1.626,2.6500000000000004,2.1109999999999998,2.866,1.81,2.182,2.9299999999999997,1.159,2.141,2.428,3.291,1.451,1.7469999999999999,2.45,2.4530000000000003,1.052,3.129,1.853,1.5490000000000002,1.65,2.26,1.46,2.458,2.574,1.393,2.426,1.7610000000000001,1.48,2.167,1.238 +NM_006721,2.098,1.5870000000000002,3.477,1.77,3.474,1.445,1.2930000000000001,2.452,3.44,3.087,1.7469999999999999,3.077,2.206,2.169,2.076,2.5549999999999997,2.045,2.482,3.73,1.6500000000000001,1.6469999999999998,2.488,1.9969999999999999,2.67,1.3019999999999998,2.968,3.3280000000000003,3.054,0.931,1.444,2.811,1.577,4.62,1.3559999999999999,2.803,1.796,1.809,3.334,1.942,1.392,3.032,1.524,1.318,2.12,2.734,1.979,2.735,2.73,2.125,2.163,1.79,2.3890000000000002,2.785,2.5700000000000003 +NM_006722,0.926,1.029,0.98,1.009,1.031,1.002,0.87,0.918,1.035,0.968,0.902,0.943,1.011,1.132,1.323,1.033,0.98,1.054,0.958,0.919,1.124,0.845,0.927,0.851,1.004,0.955,0.998,1.04,0.89,0.948,1.091,0.953,0.845,1.007,1.116,1.016,0.892,0.847,0.88,1.014,0.929,0.835,1.248,1.045,1.053,1.009,0.927,0.932,1.102,1.093,0.98,1.047,1.062,0.989 +NM_006724,1.379,0.704,1.668,0.981,1.333,0.67,0.512,0.882,2.087,1.413,0.741,1.027,0.844,1.208,1.2,1.129,1.286,1.076,1.846,0.898,0.832,1.255,0.961,1.473,0.641,1.581,1.724,1.42,0.552,0.885,1.658,1.309,1.641,0.961,1.628,0.759,0.722,1.203,0.939,0.818,1.59,0.842,0.731,1.033,1.504,0.601,0.895,1.549,0.736,1.312,0.969,0.985,1.217,1.313 +NM_006725,0.809,0.882,1.334,0.971,0.961,0.913,1.008,1.063,0.908,0.908,1.02,1.067,0.934,0.971,1.044,1.083,1.204,0.961,0.917,0.933,1.024,0.963,0.976,0.966,1.0,0.94,0.924,1.0,1.035,0.962,1.031,1.099,1.044,1.207,0.952,0.944,0.924,0.998,1.025,0.926,1.023,1.006,0.834,0.954,1.001,0.735,1.087,1.09,1.067,1.168,1.034,0.907,1.14,0.959 +NM_006726,0.71,1.147,1.332,0.654,1.117,1.059,0.506,0.596,1.028,0.928,1.269,0.81,0.515,0.808,1.109,1.45,0.645,0.874,1.445,1.187,0.669,0.638,1.468,0.766,0.721,0.823,0.899,0.797,0.455,1.286,0.835,0.916,1.505,1.406,0.486,0.498,1.412,0.991,1.28,0.721,0.931,1.331,0.879,1.073,0.874,1.375,0.797,0.846,1.058,0.925,1.214,0.538,0.963,1.232 +NM_006727,0.995,1.022,0.898,0.844,1.074,0.902,1.087,1.07,0.958,0.939,1.248,0.864,0.999,0.898,1.084,0.978,0.913,1.163,0.935,1.001,0.932,0.932,0.861,0.905,1.121,0.925,0.916,0.988,1.028,0.945,1.01,0.901,0.98,1.119,1.087,0.987,0.948,1.058,1.002,1.203,1.003,0.998,1.473,0.938,1.137,0.974,0.963,0.957,1.095,1.1,0.826,0.967,1.018,1.094 +NM_006729,0.6,1.41,1.147,0.639,0.768,1.256,0.696,0.49,0.72,0.717,0.938,0.739,0.524,0.64,1.129,1.324,0.56,1.004,0.781,1.738,0.47,0.619,1.899,0.801,0.739,0.682,1.078,0.738,0.62,1.672,0.691,1.676,1.746,1.74,0.389,0.929,1.375,0.93,1.258,0.777,0.702,1.806,0.818,1.105,0.678,1.332,1.126,0.567,1.264,0.633,1.232,0.952,0.588,0.691 +NM_006730,0.801,1.192,1.018,0.882,0.795,1.41,0.61,0.609,0.992,0.776,0.876,0.646,0.657,0.714,0.782,1.103,1.131,0.991,1.36,0.855,0.665,0.727,0.999,1.257,0.653,0.812,1.153,0.681,0.499,1.468,0.76,1.577,1.502,1.435,0.46,0.586,0.96,1.058,1.421,0.718,1.065,1.523,0.553,1.023,0.742,1.383,1.191,0.604,1.334,0.818,0.988,0.655,0.679,1.184 +NM_006731,0.853,1.047,1.101,0.867,0.874,1.19,0.794,0.863,1.027,0.914,1.154,0.804,0.969,0.89,1.069,1.21,0.934,0.949,1.035,1.178,0.9,0.946,1.314,1.03,0.9,0.865,1.149,0.898,0.745,1.149,0.898,1.399,2.048,1.169,0.779,1.034,0.994,0.773,1.183,0.914,1.016,1.05,1.035,1.166,0.859,1.15,0.863,0.865,0.856,0.753,1.064,0.986,0.991,1.376 +NM_006732,0.922,0.971,1.05,0.908,0.972,0.924,0.783,2.949,0.871,0.948,0.872,4.941,0.864,1.336,1.053,0.927,2.54,0.832,0.95,0.873,0.9,0.858,0.916,0.919,0.801,1.162,1.031,1.022,1.067,0.912,0.896,1.291,1.449,0.771,0.869,0.83,0.975,1.194,1.597,4.867,1.344,0.834,7.56,0.873,1.178,6.403,1.284,0.952,0.798,0.988,0.955,1.114,2.145,1.511 +NM_006733,0.969,1.079,1.051,1.007,0.959,1.007,1.011,1.028,0.942,1.02,1.079,0.97,1.004,0.895,1.142,1.095,1.1,0.911,1.027,0.921,1.022,0.921,1.028,0.958,1.059,0.984,1.101,1.044,1.069,0.962,1.059,0.983,1.126,1.017,1.026,1.089,1.025,1.011,1.137,1.087,1.053,0.903,1.05,1.203,0.975,1.123,0.943,0.93,0.99,1.039,1.063,0.835,1.063,0.936 +NM_006734,0.908,0.867,1.038,0.952,1.067,1.019,0.859,0.991,0.977,0.976,1.008,1.067,1.125,1.009,0.834,1.015,1.032,1.058,1.022,1.044,1.011,1.044,1.088,1.106,0.869,1.074,1.24,0.974,0.807,0.986,1.059,1.096,1.242,1.128,1.289,0.881,1.013,1.279,0.906,1.07,1.061,1.069,1.152,0.99,1.031,0.993,1.05,1.05,0.933,1.058,1.055,0.888,0.874,0.995 +NM_006735,0.966,1.083,1.029,0.901,1.197,0.918,0.705,0.821,1.013,1.096,0.957,1.063,0.967,0.835,0.974,0.952,1.072,1.034,0.825,0.95,0.786,1.119,0.909,1.069,0.942,1.183,1.215,1.125,0.674,1.168,0.925,1.463,0.767,1.239,0.998,0.975,0.771,1.279,0.997,0.901,1.237,1.165,0.761,0.968,0.958,0.834,1.074,1.06,0.944,0.925,1.004,0.962,0.989,0.999 +NM_006736,0.884,0.864,0.991,0.786,0.835,1.119,0.97,0.744,0.982,0.737,1.062,0.804,0.833,0.731,0.75,1.223,0.739,0.958,1.434,1.011,1.168,1.372,1.075,1.03,0.948,1.231,0.956,0.793,0.757,1.296,0.954,1.11,1.264,1.483,0.489,0.81,0.945,1.119,1.183,1.118,0.982,1.248,0.461,0.882,0.931,0.718,0.712,1.411,0.613,1.07,0.743,0.626,0.754,1.701 +NM_006738,0.973,0.87,1.437,0.989,0.978,1.02,0.895,0.906,1.066,0.965,0.984,0.737,0.86,1.048,0.882,0.909,1.144,0.936,1.158,1.061,0.871,1.063,0.803,0.863,1.09,1.132,1.117,1.141,0.945,1.307,0.899,1.166,0.991,1.176,0.985,1.069,0.901,1.043,1.18,0.916,1.169,1.136,1.08,1.108,0.899,0.731,0.894,0.931,0.995,1.086,0.888,0.914,0.817,1.17 +NM_006739,0.801,0.856,1.054,1.037,0.788,0.953,0.66,0.523,0.997,1.087,0.665,0.986,0.855,0.688,0.793,1.089,1.052,0.941,1.295,0.785,0.784,0.827,1.408,1.206,0.733,0.804,1.887,0.749,0.536,1.049,0.828,1.118,2.432,1.182,0.503,0.969,0.874,0.825,2.471,0.944,0.894,0.988,0.744,1.737,1.158,0.839,0.836,0.85,1.003,1.399,1.125,0.89,1.232,1.851 +NM_006741,0.994,1.238,1.064,0.941,0.91,0.97,1.056,1.004,0.92,0.879,1.131,1.072,0.932,0.983,0.893,0.972,0.91,0.949,1.112,0.973,1.034,0.925,1.025,0.975,1.074,0.954,0.976,0.974,1.106,0.837,0.959,0.909,1.235,1.262,1.046,1.029,1.135,0.943,1.108,0.983,1.01,0.997,1.053,0.943,1.01,1.103,0.998,1.012,0.996,1.02,1.029,0.981,1.101,1.054 +NM_006744,0.826,0.981,0.892,0.953,0.901,1.243,0.861,0.892,0.771,0.729,1.582,0.94,0.829,0.757,1.049,1.542,0.914,0.922,0.999,2.007,0.906,0.939,1.835,0.908,0.921,0.907,0.889,0.854,1.028,1.037,0.921,5.228,1.038,1.265,0.873,2.071,1.205,0.851,1.628,1.177,0.851,1.174,1.269,5.464,0.94,1.75,2.379,0.864,1.306,0.786,1.017,4.685,1.042,1.296 +NM_006746,0.781,0.854,1.082,1.001,0.871,1.083,0.807,0.81,1.074,0.769,1.095,0.861,0.763,0.764,1.14,1.479,0.99,0.826,1.017,1.024,0.848,0.857,1.05,0.995,0.843,0.785,1.178,0.89,0.721,0.897,0.948,1.218,3.383,0.959,0.67,0.87,1.274,0.794,1.297,1.148,1.012,0.856,0.993,0.972,0.874,1.139,0.999,0.842,1.104,0.848,1.124,1.039,0.898,1.68 +NM_006747,1.078,1.171,1.036,0.799,0.807,1.204,0.662,0.821,0.991,0.849,0.815,0.871,0.828,0.925,0.767,1.064,1.138,1.087,1.095,0.867,0.926,1.184,0.961,0.908,0.954,1.169,1.063,0.847,0.95,1.046,0.988,2.084,1.179,1.131,1.126,1.072,0.903,0.964,1.758,1.674,0.932,0.878,0.685,1.803,0.781,0.723,0.939,1.393,0.77,1.25,0.847,0.921,0.942,1.247 +NM_006748,0.808,0.998,1.389,0.911,0.987,0.979,1.198,0.737,1.137,0.78,0.94,0.947,0.809,0.818,0.957,0.992,1.173,1.146,0.795,1.066,0.784,0.915,0.962,1.028,0.941,0.96,1.428,0.994,0.742,1.27,0.892,1.684,1.134,0.964,0.921,0.852,0.932,0.939,1.188,1.843,0.998,1.308,0.799,0.852,1.153,0.845,1.003,0.897,0.803,0.773,1.095,1.478,1.566,2.087 +NM_006749,0.863,0.712,1.191,0.805,0.849,0.761,0.58,0.575,1.358,1.554,1.283,0.718,0.633,1.073,1.088,1.964,0.894,0.792,1.066,0.841,0.663,0.714,0.972,0.899,0.53,1.204,1.113,0.783,0.423,0.78,1.223,1.342,1.753,0.979,1.127,0.779,1.507,0.851,1.206,0.704,0.935,1.087,0.839,1.76,1.297,1.712,1.266,0.952,1.571,0.954,0.917,1.138,2.349,1.105 +NM_006750,0.823,0.843,1.291,0.781,1.097,0.937,0.844,0.788,1.01,0.893,1.004,0.773,0.774,0.888,1.084,1.115,1.019,1.045,1.08,0.908,0.961,0.834,1.13,1.075,0.893,0.943,1.049,0.863,0.833,0.957,0.949,1.326,1.26,1.087,0.771,0.814,0.815,1.122,1.311,0.965,1.046,1.189,0.854,1.048,1.039,0.911,1.181,0.895,0.947,0.968,1.033,0.964,1.076,1.258 +NM_006751,0.779,1.003,0.906,0.973,0.831,0.955,1.124,0.989,1.05,0.897,1.204,0.814,0.852,0.924,0.894,1.154,0.747,0.932,0.927,1.323,0.908,0.765,1.138,0.793,1.017,0.982,0.957,0.999,1.22,1.189,0.893,0.918,1.149,1.295,1.033,1.319,1.1,0.95,1.09,0.946,0.885,1.024,1.171,0.951,0.906,1.108,0.823,1.013,1.093,0.948,1.012,1.022,0.891,1.295 +NM_006753,0.655,1.203,0.815,0.626,0.664,1.117,0.591,0.361,1.006,0.987,1.107,0.494,0.464,0.613,1.059,1.585,0.781,0.575,0.952,1.066,0.546,0.744,1.57,0.747,0.536,0.708,1.058,0.684,0.42,1.335,0.821,1.493,1.648,1.358,0.268,2.013,0.967,0.65,1.649,1.055,0.815,1.46,0.678,1.336,0.792,1.075,0.963,0.531,1.169,0.684,1.448,0.724,0.845,2.219 +NM_006754,0.915,1.037,0.967,0.97,0.99,0.965,1.169,1.063,0.927,0.94,1.005,1.036,1.01,1.237,1.02,1.055,0.854,1.221,1.006,1.007,0.953,0.92,1.171,1.01,1.058,0.93,1.112,0.965,1.149,0.992,1.064,0.973,0.935,1.001,0.917,0.918,1.096,0.974,1.013,1.001,1.043,1.031,0.945,1.082,1.089,1.094,1.054,1.177,0.997,1.033,1.131,0.933,1.185,1.213 +NM_006755,0.98,1.048,1.406,0.84,1.516,0.906,0.802,0.861,1.587,1.389,0.681,1.292,1.079,0.912,0.895,1.059,1.103,1.343,1.813,0.78,0.554,1.33,0.911,1.367,0.557,1.593,1.241,1.55,0.513,1.393,1.685,0.639,0.822,1.183,1.638,1.493,1.032,1.25,1.114,0.786,1.418,0.776,0.552,1.165,1.408,0.813,1.332,1.506,0.751,1.193,0.912,0.751,1.036,0.897 +NM_006756,0.499,1.345,1.194,0.606,0.705,1.596,0.666,0.922,1.484,0.789,0.994,0.913,0.744,0.654,1.249,1.548,0.622,0.989,0.943,1.182,0.468,0.593,1.309,1.081,0.607,0.559,1.275,1.028,0.297,1.365,0.925,1.167,4.328,1.565,0.43,1.347,1.077,0.763,1.314,1.498,1.105,1.315,0.454,1.461,0.913,0.926,0.938,0.6,0.915,0.546,1.2,0.577,0.629,1.808 +NM_006757,0.946,0.93,0.978,1.029,1.119,0.943,0.988,1.154,1.126,1.015,0.954,1.132,1.188,1.213,1.014,1.142,1.065,0.985,0.867,1.018,1.125,0.939,0.91,1.196,0.991,1.227,0.916,0.921,1.065,0.977,1.196,0.947,0.939,1.017,1.063,1.149,0.959,1.267,0.855,1.048,1.182,0.968,0.971,1.045,1.151,0.862,0.813,1.939,1.067,1.035,1.05,1.033,0.974,0.88 +NM_006758,0.451,1.025,1.04,0.533,0.833,1.033,0.638,0.365,1.15,1.302,0.623,0.86,0.517,0.427,0.807,1.446,0.81,0.927,0.977,0.917,0.468,0.8,1.549,1.168,0.395,0.647,1.163,0.806,0.334,1.098,0.919,1.023,1.691,1.071,0.091,0.859,0.999,0.906,1.479,1.401,1.319,1.14,0.783,1.146,1.326,0.873,1.079,0.587,0.711,0.681,1.033,0.812,0.845,0.998 +NM_006761,0.73,0.447,1.218,0.778,0.777,1.84,0.553,1.57,1.189,0.953,1.232,1.163,0.944,0.71,1.452,3.093,0.87,0.828,2.86,0.967,1.291,0.833,1.031,1.305,0.578,0.88,1.447,0.769,0.33,0.974,1.505,0.753,3.792,1.946,0.498,0.684,0.888,0.726,1.31,0.872,0.853,1.01,0.444,1.01,0.978,0.638,0.718,0.895,0.752,1.094,1.046,0.587,1.35,1.532 +NM_006762,0.781,1.065,1.255,0.952,0.932,0.942,1.179,0.711,0.878,0.706,0.873,0.715,1.04,0.985,0.884,0.894,1.023,0.849,0.781,0.836,0.74,0.758,0.964,0.866,0.836,0.922,1.452,0.773,0.57,1.383,0.78,2.406,0.974,1.212,0.69,0.819,0.836,0.861,1.681,3.204,1.004,1.294,0.822,0.891,1.083,0.914,0.838,0.89,0.706,0.944,0.949,1.927,1.308,1.705 +NM_006763,0.561,1.607,0.731,0.827,0.531,1.594,0.829,0.424,0.668,0.672,1.666,0.791,0.51,0.502,0.977,1.341,0.674,0.814,0.764,1.192,0.571,0.549,1.448,1.024,0.89,0.661,0.954,0.444,0.634,1.875,0.665,1.913,1.182,2.001,0.17,0.691,1.506,0.673,1.745,2.918,0.721,2.055,0.527,0.675,0.911,0.958,0.817,0.551,0.699,0.553,1.117,0.927,0.866,1.498 +NM_006764,0.671,1.106,0.633,1.003,0.498,1.552,0.627,0.426,0.859,0.833,1.164,0.769,0.693,0.445,0.796,1.577,0.803,1.137,1.084,0.833,0.579,0.702,1.422,1.296,1.032,0.749,1.024,0.543,0.978,1.735,0.635,0.921,1.932,1.708,0.256,1.107,1.105,0.763,2.339,0.579,0.897,1.251,0.591,1.236,0.983,0.936,0.924,0.703,0.871,0.877,0.876,0.919,0.786,1.378 +NM_006766,0.632,0.943,1.388,0.505,0.877,1.11,0.716,0.653,1.057,0.826,0.837,0.872,0.634,0.683,0.908,1.178,0.782,0.802,1.284,1.028,0.663,1.099,1.203,0.949,0.538,0.84,1.335,0.863,0.526,1.146,1.023,1.311,1.975,1.224,0.401,0.71,0.951,1.335,1.435,1.086,0.997,1.442,0.645,0.96,0.947,1.105,0.778,0.867,1.217,1.0,1.079,0.814,0.819,1.59 +NM_006767,0.736,1.046,1.065,0.804,0.75,1.114,0.686,0.43,1.016,0.788,1.125,0.655,0.519,0.731,1.118,1.728,0.931,0.89,1.364,1.057,0.622,0.683,1.419,1.081,0.655,0.836,1.224,0.639,0.512,1.406,0.864,1.928,1.451,1.684,0.441,0.655,1.014,0.724,1.284,0.963,0.96,1.271,0.753,0.775,0.936,1.036,0.684,0.686,0.764,0.781,1.074,0.7,0.894,1.286 +NM_006768,0.82,0.851,1.089,0.752,1.154,0.992,0.666,0.733,1.189,1.123,0.877,0.951,0.72,0.909,0.925,0.986,1.053,1.04,1.164,0.959,0.806,0.947,1.096,1.081,0.784,1.018,1.207,1.01,0.586,1.008,1.093,1.054,1.149,0.988,0.893,1.217,0.873,1.082,1.023,1.125,1.061,1.028,0.74,0.968,1.12,0.975,0.926,1.058,0.948,0.848,0.915,0.795,0.884,1.523 +NM_006769,0.72,1.674,0.752,0.88,0.617,1.986,0.708,0.392,1.203,0.74,2.887,0.53,0.802,0.652,1.066,1.508,0.589,1.078,0.838,2.083,0.459,0.627,2.825,0.894,1.015,0.704,1.017,0.865,0.538,1.753,0.787,1.04,1.046,1.757,0.566,0.511,1.768,0.831,1.622,0.494,1.129,2.402,0.791,1.014,0.696,1.099,0.713,0.606,0.67,0.533,1.801,1.196,0.634,1.031 +NM_006770,1.054,0.927,1.022,0.926,1.175,0.922,0.847,1.106,1.565,1.086,0.994,1.076,1.007,1.01,0.986,0.992,1.151,1.017,1.049,0.861,1.273,1.132,0.995,0.984,0.995,1.08,0.98,1.061,0.859,0.797,1.135,1.078,1.001,0.804,1.269,0.959,0.922,0.938,1.039,1.44,0.988,0.878,0.893,1.065,1.045,0.976,1.042,0.971,0.946,0.91,0.97,1.569,1.117,1.105 +NM_006773,0.587,0.776,1.029,0.708,0.633,0.884,0.681,0.381,0.835,1.029,0.924,0.788,0.582,0.538,1.055,1.197,0.643,0.719,0.948,1.106,0.523,0.484,1.847,0.86,0.704,0.661,0.868,0.627,0.394,1.061,0.763,1.538,2.846,1.462,0.265,1.233,1.13,0.585,1.733,1.178,0.803,1.371,0.893,2.215,0.907,1.14,0.75,0.508,1.193,0.617,1.077,1.105,1.099,2.442 +NM_006777,1.031,0.977,0.967,1.173,1.02,0.996,0.907,1.032,0.821,1.285,1.045,0.903,0.999,1.047,1.021,1.021,1.001,0.993,1.006,0.905,1.002,0.953,0.997,1.01,1.012,0.973,0.971,0.99,0.761,0.896,0.92,1.024,0.878,0.895,0.861,0.914,1.004,0.991,0.925,1.092,0.999,0.903,1.047,0.844,1.02,1.057,0.914,1.022,0.993,0.979,1.039,0.973,0.894,1.006 +NM_006779,0.676,1.1,1.0,1.0,0.73,0.912,0.612,0.59,0.823,0.795,0.908,0.71,0.746,0.791,0.803,1.631,1.151,0.754,0.752,0.923,0.673,0.6,1.063,0.64,0.743,0.595,1.248,0.672,0.773,1.278,0.698,1.774,1.57,0.916,0.758,1.217,1.371,0.705,1.709,2.113,0.76,1.319,1.662,2.06,0.837,1.352,1.443,0.7,1.363,1.09,1.01,1.419,0.789,1.079 +NM_006781,1.058,1.035,0.996,1.164,1.078,1.034,0.945,0.947,0.992,0.955,0.982,1.148,1.044,0.965,0.918,1.006,1.059,1.0,1.116,1.05,1.056,0.894,0.933,1.005,1.216,1.038,0.886,1.013,1.036,0.998,1.03,0.864,1.045,0.979,1.042,1.095,0.962,1.033,0.904,0.924,1.014,0.986,0.994,0.859,1.131,0.887,0.889,1.038,1.022,0.948,1.023,1.091,1.138,1.077 +NM_006782,0.682,1.159,1.049,0.71,0.945,1.046,0.708,0.481,1.105,1.076,0.86,0.809,0.579,0.577,0.903,1.077,0.942,1.041,1.047,1.228,0.504,0.742,1.12,1.027,0.608,0.875,1.082,0.945,0.636,1.526,0.724,1.273,2.039,1.105,0.365,1.706,0.907,0.917,1.262,0.768,1.225,1.003,0.997,1.149,1.091,1.148,1.115,0.794,1.04,0.762,1.12,0.773,0.739,1.134 +NM_006783,0.979,0.947,1.853,0.924,1.337,0.923,0.794,1.044,1.344,1.351,0.836,1.047,0.907,0.99,0.936,1.02,1.207,1.173,1.018,0.899,0.948,0.948,0.877,1.234,1.11,0.938,1.559,1.517,0.72,0.969,1.351,1.092,1.307,0.962,0.788,0.875,0.905,0.827,1.009,1.02,1.282,1.0,1.073,0.943,1.698,0.905,1.326,1.145,1.01,1.292,1.007,0.951,1.115,0.917 +NM_006786,2.016,2.107,2.482,1.6800000000000002,1.869,2.06,1.85,2.102,1.98,1.828,2.14,1.9849999999999999,1.892,1.749,1.956,2.133,1.9260000000000002,2.0469999999999997,2.102,2.241,1.97,1.982,1.938,1.963,2.122,1.868,2.0700000000000003,2.009,2.362,2.01,2.009,2.049,2.923,1.726,2.135,2.0999999999999996,1.9489999999999998,1.895,1.992,2.297,2.128,1.9249999999999998,2.126,2.004,2.008,2.572,2.012,2.007,1.774,1.966,1.876,2.183,2.012,2.167 +NM_006788,0.775,1.43,1.365,0.626,0.942,1.318,0.597,0.81,1.345,1.002,0.907,1.101,0.722,0.998,1.222,1.342,1.072,0.957,1.606,1.007,0.666,1.047,1.087,1.405,0.505,0.835,1.355,1.113,0.603,1.701,1.145,1.101,1.071,1.23,0.627,0.811,1.07,1.052,0.944,0.681,1.21,0.989,0.663,0.592,1.137,1.123,0.979,0.814,0.868,0.863,1.009,0.685,1.049,1.232 +NM_006789,1.048,1.594,0.889,1.198,1.068,0.869,1.231,0.914,0.991,0.87,0.909,0.831,0.905,0.83,0.737,1.029,0.92,0.974,0.855,0.991,0.761,0.869,0.813,0.991,2.252,1.018,1.014,1.112,0.933,0.978,1.004,1.052,0.864,1.34,0.791,0.894,1.119,1.075,0.993,1.009,1.036,0.942,1.003,0.98,1.011,0.859,0.992,1.031,0.933,1.048,0.927,0.9,0.898,1.01 +NM_006790,1.016,0.982,1.001,1.014,1.007,1.024,1.027,1.258,1.055,0.886,1.062,0.892,0.978,0.743,1.058,1.082,0.971,1.028,0.819,0.961,0.901,0.845,0.987,1.088,1.108,0.96,1.108,0.868,0.854,1.852,0.894,0.968,1.198,1.538,1.003,1.045,0.972,0.749,1.01,0.913,0.999,1.844,1.398,1.09,0.952,1.229,0.797,0.938,0.946,0.917,0.773,1.04,0.864,0.991 +NM_006791,0.468,1.502,1.125,0.722,0.681,1.482,0.698,0.444,0.958,0.715,1.189,0.851,0.65,0.485,0.893,1.724,0.779,1.094,0.901,1.385,0.291,0.757,1.708,0.939,0.627,0.525,1.33,0.73,0.483,1.499,0.742,1.656,1.283,1.405,0.147,0.986,1.343,0.774,2.177,1.141,0.94,1.353,0.654,0.635,0.826,1.218,1.087,0.675,1.047,0.685,1.344,1.022,0.645,1.44 +NM_006792,0.617,1.2,1.095,0.787,0.936,0.85,0.704,0.707,1.164,1.041,0.812,0.669,0.633,0.736,0.981,1.809,0.652,0.941,0.914,1.116,0.674,0.608,1.404,0.93,0.703,0.61,1.101,0.857,0.447,1.044,1.122,1.635,2.219,1.337,0.695,1.024,0.87,0.76,1.484,0.861,1.248,1.019,0.732,0.87,0.809,1.186,1.143,0.673,1.235,0.794,0.915,0.732,0.929,2.303 +NM_006794,1.048,1.057,0.997,0.941,1.074,0.925,0.964,1.072,1.152,1.032,0.817,1.112,0.964,1.218,1.166,0.941,0.948,0.934,1.034,0.929,0.892,1.007,0.757,1.022,1.028,1.107,0.908,0.984,1.421,1.004,1.059,1.037,1.043,0.908,1.098,0.903,1.033,0.981,0.91,1.157,0.858,0.884,0.799,0.913,0.993,1.062,0.788,0.875,1.04,0.884,0.938,1.006,0.998,0.949 +NM_006795,0.717,0.855,1.108,0.859,0.784,1.135,0.677,0.696,0.821,0.66,1.09,0.45,0.656,0.727,1.02,1.398,0.951,0.834,1.397,0.715,0.48,0.551,0.98,0.423,0.667,0.747,0.923,0.781,0.475,1.569,1.106,1.772,1.334,1.242,1.444,1.265,1.029,0.778,2.084,2.226,0.83,1.002,1.138,1.219,1.038,0.873,0.985,0.756,0.988,1.209,1.13,0.933,1.077,1.393 +NM_006796,0.838,1.539,0.888,0.926,0.846,0.998,0.609,0.503,1.132,0.989,1.277,0.755,0.673,0.698,0.939,2.287,0.763,0.888,1.069,1.049,0.892,0.913,1.433,1.014,0.919,1.189,1.063,0.803,0.628,1.33,0.763,1.378,1.345,1.301,0.392,0.934,1.002,0.95,1.301,0.824,0.991,1.28,1.204,1.85,0.97,1.419,1.04,0.929,1.403,0.849,0.982,0.731,0.893,1.36 +NM_006798,0.901,0.947,0.803,1.112,1.204,0.981,0.834,0.886,1.194,0.832,0.988,1.135,0.773,1.165,1.14,1.227,1.004,1.027,0.94,1.273,0.983,0.924,0.933,0.968,0.931,1.037,0.914,1.174,1.238,1.141,1.045,0.905,0.845,0.883,0.948,0.873,1.386,0.942,1.155,1.066,0.92,1.026,1.216,1.074,1.182,1.127,1.268,1.084,1.321,0.993,0.962,0.912,0.917,0.973 +NM_006800,0.935,1.266,0.868,1.057,1.273,0.991,1.155,1.001,0.943,1.03,0.864,1.021,0.963,1.08,0.832,1.12,0.901,1.262,1.031,1.252,0.908,0.997,1.15,1.069,1.05,1.082,0.699,0.917,1.065,0.848,1.155,1.012,1.25,0.953,1.034,1.045,1.006,0.932,1.287,0.837,0.966,1.085,0.909,0.831,0.934,1.012,0.985,1.078,1.217,0.999,0.997,0.974,1.232,1.075 +NM_006801,0.817,1.315,0.693,0.959,0.672,1.52,0.646,0.559,0.71,0.654,1.119,0.626,0.741,0.429,0.707,1.278,0.835,0.96,0.85,1.001,0.739,1.063,1.646,0.767,1.062,0.893,0.885,0.595,0.898,1.426,0.534,1.009,1.425,1.205,0.523,0.869,1.086,1.128,2.496,1.401,0.784,1.135,0.762,1.89,0.69,1.0,1.138,1.081,1.078,0.816,1.077,0.808,0.563,0.734 +NM_006803,0.844,1.143,1.204,0.882,0.792,0.927,0.863,0.692,1.213,0.827,1.116,1.003,0.743,1.005,0.921,1.016,0.999,0.828,0.966,0.942,0.919,0.953,1.096,1.133,0.956,0.933,1.299,1.022,0.812,0.94,1.024,1.63,2.078,1.405,0.633,0.93,0.896,1.151,0.955,0.969,0.94,1.076,0.832,1.214,0.822,1.015,0.871,0.798,0.934,0.794,1.039,0.908,0.942,1.647 +NM_006804,0.91,0.985,0.888,0.994,0.852,1.2,0.725,0.808,1.044,0.986,0.945,0.947,0.878,0.737,0.718,0.849,0.98,1.04,1.216,0.744,0.892,1.252,0.869,1.035,0.956,1.315,1.017,0.79,0.936,1.188,0.792,1.493,1.827,1.296,0.672,0.941,0.878,1.136,1.877,1.125,0.882,0.998,0.978,2.087,0.922,0.905,0.972,1.348,0.885,0.941,0.814,0.961,0.959,0.966 +NM_006805,0.97,1.058,0.971,0.777,0.873,0.859,0.492,0.397,0.925,0.993,0.97,0.612,0.654,0.665,0.749,0.987,1.008,1.097,1.234,0.702,0.862,0.724,1.162,0.888,0.814,1.143,1.154,0.646,0.73,0.96,0.739,1.244,1.92,1.298,0.411,0.713,1.036,1.0,2.11,1.119,1.096,1.06,1.041,1.527,0.982,0.877,0.998,0.965,0.866,0.986,0.88,0.822,1.016,1.157 +NM_006806,0.967,1.213,2.17,0.848,0.945,0.847,0.668,0.565,1.104,0.963,0.757,0.943,0.723,0.851,1.064,0.975,1.367,0.95,1.99,0.829,0.891,0.671,0.827,1.231,0.661,0.903,2.328,0.851,0.407,1.095,1.092,2.155,2.835,1.284,0.523,0.62,0.858,0.955,1.663,0.814,1.276,0.827,0.666,1.817,1.465,0.791,1.059,0.699,0.439,1.712,0.85,1.138,1.632,2.589 +NM_006807,0.86,0.94,1.305,0.88,1.188,1.092,0.611,0.957,1.753,1.296,0.82,0.977,0.856,0.913,1.076,1.188,1.138,0.841,1.708,0.88,0.995,0.956,0.957,1.306,0.639,1.034,1.094,1.505,0.548,1.021,1.433,2.117,2.21,1.133,0.905,0.918,0.633,1.147,1.072,1.057,1.583,1.047,0.709,1.339,1.135,0.809,0.994,0.941,0.841,1.005,0.789,0.939,1.233,2.104 +NM_006808,0.595,0.976,0.979,0.981,0.855,1.374,1.095,0.431,0.941,0.857,1.672,0.863,0.717,0.473,0.942,2.064,0.879,1.12,1.275,1.058,0.58,0.956,1.363,0.992,0.825,0.873,0.945,0.786,0.664,0.999,0.799,1.668,1.434,1.394,0.179,0.711,1.299,0.893,1.601,0.81,1.021,1.174,0.631,1.242,1.206,1.109,0.945,0.874,1.14,0.927,1.336,1.047,0.962,1.681 +NM_006809,0.567,1.227,0.801,0.862,0.809,1.124,0.884,0.432,0.999,1.259,0.944,0.985,0.605,0.535,0.735,1.198,0.669,0.905,0.822,1.108,0.589,0.515,1.381,1.113,0.717,0.765,0.934,0.736,0.493,1.602,0.748,2.077,3.478,1.24,0.366,1.692,0.96,0.687,1.339,2.099,0.984,1.073,1.082,2.908,0.996,0.878,1.324,0.591,1.302,0.566,1.055,1.566,1.011,2.757 +NM_006810,0.349,1.887,0.295,1.233,0.296,1.247,0.938,0.31,0.361,0.335,1.355,0.328,0.313,0.276,0.711,1.693,0.367,0.785,0.377,1.254,0.324,0.345,1.589,0.374,1.734,0.343,0.389,0.319,1.082,2.632,0.307,1.909,1.312,2.782,0.268,1.034,1.788,0.311,2.015,0.748,0.358,1.721,0.717,1.159,0.455,1.164,0.633,0.334,1.026,0.436,1.549,0.699,0.407,0.943 +NM_006811,0.776,0.993,1.156,0.491,1.09,0.824,0.636,0.546,0.976,1.074,0.891,0.555,0.415,0.627,0.805,1.03,0.831,1.195,1.034,0.842,0.551,0.608,1.368,0.919,0.707,0.638,0.961,1.068,0.501,1.341,0.875,2.21,1.352,1.468,0.914,0.927,0.951,0.726,1.188,1.659,0.985,1.269,0.763,1.533,0.93,0.887,1.365,0.588,0.719,0.774,1.076,1.2,1.018,1.606 +NM_006812,0.666,0.927,1.001,0.82,0.842,1.157,0.677,0.685,0.932,0.856,0.97,0.587,0.618,0.644,0.871,1.447,0.994,0.979,1.419,1.145,0.766,0.822,1.2,0.899,0.874,1.159,0.902,0.695,0.472,1.515,0.912,1.472,1.224,1.769,0.509,0.809,0.924,1.128,1.744,1.01,0.887,1.74,0.655,1.689,0.939,0.876,0.866,0.964,0.933,0.973,1.058,0.807,0.983,1.367 +NM_006813,1.079,0.966,1.086,0.892,1.058,1.101,0.932,0.902,1.055,0.895,0.983,1.119,1.016,1.309,1.02,1.173,1.058,0.898,0.958,0.837,0.9,1.135,0.834,1.119,0.902,1.028,1.182,0.898,0.997,1.16,1.118,0.883,0.848,1.175,0.819,1.033,0.974,1.158,1.071,1.058,0.999,0.98,0.763,0.966,0.916,1.222,0.901,0.972,1.03,0.994,0.936,0.82,1.042,0.965 +NM_006815,0.692,0.885,1.186,0.795,1.011,1.137,0.77,0.556,1.108,0.904,1.036,0.726,0.694,0.43,0.883,1.73,0.736,1.436,1.089,1.018,0.36,0.797,1.63,1.081,0.795,0.949,0.948,0.952,0.475,0.659,0.868,0.987,1.098,1.266,0.18,1.277,1.242,0.852,1.631,0.84,1.136,1.202,0.585,0.773,1.174,1.209,1.174,0.769,1.321,0.988,1.29,0.934,0.625,1.185 +NM_006816,0.76,0.91,1.1,0.852,0.968,1.013,0.742,0.644,0.927,0.916,1.022,0.819,0.955,0.66,0.861,1.839,0.812,1.014,1.369,0.937,0.752,1.263,1.223,0.96,0.673,1.326,1.177,0.886,0.558,1.422,0.92,1.359,1.899,1.413,0.252,0.651,1.008,1.014,1.876,0.777,1.002,1.454,0.664,1.053,1.033,0.889,0.913,1.192,1.06,0.959,0.976,0.609,0.894,1.193 +NM_006817,0.823,1.003,0.891,1.121,0.783,0.92,0.548,0.367,0.836,0.85,1.396,0.495,0.603,0.569,0.822,1.374,0.653,0.873,1.312,1.166,0.719,0.538,1.24,0.914,1.206,1.072,1.149,0.674,0.421,1.761,0.745,1.262,1.072,1.908,0.325,1.084,0.927,0.751,1.195,0.867,0.995,1.602,0.711,1.062,0.822,1.005,0.689,0.75,0.947,0.916,0.968,0.829,0.997,1.343 +NM_006818,0.947,0.743,1.225,0.751,1.294,0.896,0.816,1.142,1.526,1.136,1.005,1.352,1.114,1.196,1.105,1.096,0.983,0.998,1.166,0.74,0.865,1.134,0.96,1.456,0.589,1.029,1.431,1.199,0.669,1.138,1.761,2.213,1.252,0.941,1.287,1.1,0.867,1.495,0.818,4.035,1.14,0.749,1.002,0.798,0.979,1.138,1.234,1.087,0.698,0.877,0.844,1.146,1.075,0.978 +NM_006819,0.762,0.862,0.818,0.916,0.849,0.879,0.961,0.51,1.183,1.422,0.543,1.252,0.766,0.603,0.646,0.798,1.134,0.96,1.139,0.541,0.989,1.229,0.972,1.5,0.652,1.255,1.201,0.632,0.676,1.399,0.856,1.673,2.115,0.857,0.407,1.581,0.843,1.016,2.655,2.0,1.245,1.082,0.785,2.034,1.301,0.813,1.011,1.169,1.246,0.989,0.898,1.075,0.866,0.986 +NM_006820,1.39,1.172,1.367,1.035,0.828,1.12,1.953,0.909,0.917,0.798,1.434,0.937,0.83,0.734,1.036,0.869,1.969,1.015,0.776,0.877,0.837,0.809,1.194,0.865,1.081,0.665,0.919,0.801,0.649,1.084,0.917,1.175,4.502,1.339,0.79,1.099,1.609,0.832,2.14,0.99,0.778,1.093,1.116,7.261,0.928,0.867,0.975,0.896,0.79,0.835,1.08,1.68,1.468,5.508 +NM_006821,0.739,1.43,0.736,1.016,0.675,1.597,0.714,0.607,0.91,0.722,1.209,0.591,0.745,0.822,1.034,1.458,0.859,0.919,0.728,1.204,0.677,0.882,1.167,0.787,1.017,0.847,1.001,0.742,0.812,1.21,0.694,1.889,1.141,1.736,0.846,0.827,1.366,0.829,1.51,0.81,0.922,1.506,1.076,1.303,0.73,1.342,1.408,0.807,0.986,0.701,1.014,0.81,0.76,1.095 +NM_006822,0.838,1.564,1.106,0.93,0.812,1.2,0.9,0.894,1.094,0.833,1.109,0.821,0.791,0.784,1.036,1.447,0.809,0.928,1.049,1.08,0.884,0.729,1.284,0.797,0.884,0.963,0.999,0.831,0.834,1.452,1.061,2.225,1.402,1.563,0.75,0.824,0.859,0.843,1.329,0.811,0.859,1.184,0.792,1.484,0.908,0.934,1.012,0.665,0.908,0.726,0.917,0.8,0.969,2.046 +NM_006823,1.001,1.051,1.047,1.073,0.927,0.999,1.05,1.182,1.029,1.055,1.067,1.162,1.007,1.045,0.914,0.975,1.006,0.991,1.033,1.025,0.939,0.936,0.966,0.881,1.086,1.109,0.991,1.084,1.024,0.97,0.942,1.01,0.974,0.948,0.85,1.051,1.084,0.95,0.957,0.89,0.923,1.066,1.001,0.995,1.066,0.943,1.052,1.093,1.043,0.902,1.042,1.01,1.107,1.013 +NM_006824,0.657,0.974,0.909,0.728,0.727,0.94,0.567,0.386,0.949,1.126,0.897,0.865,0.565,0.42,0.786,1.391,0.715,0.791,1.254,0.854,0.501,0.726,1.345,1.095,0.607,0.752,1.245,0.771,0.481,1.098,0.683,1.439,4.293,1.504,0.126,1.329,1.045,0.878,1.925,0.623,1.099,1.182,0.76,2.171,1.075,1.042,1.038,0.603,1.288,0.833,1.022,1.341,1.167,2.394 +NM_006825,0.788,0.728,0.999,0.863,1.123,0.991,0.579,0.719,1.274,1.28,0.587,0.839,0.757,0.493,0.828,1.162,1.008,1.189,1.69,0.695,0.818,1.481,1.154,1.236,0.719,1.009,1.114,1.1,0.541,1.186,1.093,1.062,0.887,1.313,0.86,0.579,0.744,1.133,1.311,0.775,1.203,1.209,0.314,0.863,1.338,0.636,0.744,1.396,0.627,1.62,0.836,0.618,1.098,0.95 +NM_006826,0.806,0.728,1.429,0.55,1.23,1.043,0.388,1.008,1.336,1.257,0.87,1.976,0.815,0.789,0.911,1.846,0.72,1.237,2.192,0.616,0.682,1.13,1.114,1.683,0.426,0.958,1.494,1.167,0.208,0.687,1.161,0.892,2.76,0.889,0.328,0.745,1.058,1.602,0.795,0.855,1.295,0.838,0.56,0.988,1.324,0.789,1.355,1.094,0.882,1.322,0.989,0.945,1.159,1.403 +NM_006827,0.717,0.939,1.005,0.999,0.833,1.561,0.79,0.609,1.003,0.942,1.504,0.651,0.672,0.513,0.897,1.919,0.804,1.206,1.544,0.967,0.436,0.569,1.421,0.926,0.737,0.989,0.825,0.848,0.379,1.496,0.855,0.844,1.181,1.541,0.204,1.009,1.429,0.972,1.892,0.526,1.025,1.215,0.754,2.101,0.989,1.387,1.164,0.728,0.926,0.948,1.529,0.757,0.989,1.26 +NM_006828,0.687,0.895,1.172,0.568,0.827,1.033,0.554,0.46,1.073,0.972,1.244,0.713,0.515,0.65,1.276,1.837,0.754,0.827,1.411,1.048,0.625,0.763,1.698,0.922,0.608,0.621,1.382,0.774,0.412,1.056,0.97,0.807,1.959,1.156,0.387,0.681,1.204,0.957,1.429,0.902,0.933,1.222,0.669,0.984,1.029,1.256,1.202,0.606,1.578,0.866,1.244,0.933,1.015,2.316 +NM_006829,1.443,1.088,1.511,0.972,2.786,0.97,0.673,4.237,2.535,1.389,0.673,2.563,1.45,1.579,2.241,1.796,1.146,1.205,0.858,1.21,0.629,1.971,0.285,0.676,0.537,1.683,0.612,4.411,0.37,1.967,3.384,0.678,0.678,1.391,8.036,2.472,1.188,4.139,0.493,0.122,1.148,1.286,0.587,0.83,1.144,1.307,2.604,2.963,0.418,1.217,1.089,0.751,0.843,1.267 +NM_006831,0.78,1.002,1.033,0.772,0.882,1.127,0.753,0.764,0.981,0.909,0.908,0.806,0.876,0.784,0.913,1.363,0.898,0.897,1.195,0.916,0.913,1.036,1.181,0.899,0.72,0.919,1.035,0.885,0.613,1.158,0.978,1.358,1.658,1.025,0.619,1.237,0.919,0.935,1.391,1.019,1.084,1.096,0.788,1.246,1.033,0.875,0.961,0.828,0.965,1.036,0.903,0.865,1.043,1.319 +NM_006832,0.478,1.423,0.51,0.684,0.518,1.274,1.077,0.441,0.472,0.523,1.247,0.597,0.493,0.615,0.859,1.238,0.45,0.557,0.476,0.962,0.791,0.528,1.971,0.629,1.406,0.491,0.454,1.271,0.74,2.489,0.527,9.393,1.424,3.205,0.422,0.818,0.994,1.006,2.109,2.385,1.746,2.803,0.86,0.706,0.545,1.238,0.724,0.468,0.661,0.489,1.622,1.572,0.709,1.311 +NM_006833,0.832,0.745,1.064,0.804,1.013,1.121,0.548,0.965,1.22,1.198,0.843,1.26,0.705,0.651,0.978,1.61,0.89,1.131,1.702,0.788,0.81,0.956,1.134,1.19,0.702,0.982,0.987,0.963,0.519,1.274,1.03,1.172,1.653,1.381,0.496,0.812,0.752,1.309,1.417,0.875,1.152,0.917,0.526,1.48,1.009,0.805,1.05,0.835,0.762,1.017,0.856,1.479,1.15,1.264 +NM_006834,0.574,1.246,0.734,1.003,0.664,1.927,1.362,0.531,0.699,0.727,1.783,0.649,0.573,0.465,0.867,0.652,0.586,1.179,0.545,1.364,0.519,0.598,1.854,0.739,0.728,0.565,0.759,0.609,0.878,1.373,0.579,2.111,1.629,1.91,0.487,1.025,1.31,0.697,1.96,1.072,0.571,1.442,0.747,1.198,0.593,1.294,1.5,0.556,0.98,0.625,1.249,1.358,0.955,1.862 +NM_006835,0.865,0.977,1.477,0.583,1.253,1.089,0.494,0.919,1.462,1.021,0.948,0.873,0.915,0.916,1.107,1.289,1.091,1.175,1.942,0.857,0.655,1.379,0.998,1.422,0.723,0.786,1.267,1.282,0.381,1.055,1.272,1.196,1.111,1.43,1.984,0.477,1.099,1.722,1.24,0.767,1.217,1.642,0.531,0.971,1.216,0.98,0.994,0.966,0.993,1.006,1.068,0.708,0.98,0.574 +NM_006837,0.724,1.022,1.375,0.67,1.04,1.139,0.601,0.714,1.317,0.962,1.216,0.939,0.759,0.749,1.003,1.675,0.903,0.907,1.952,0.69,0.684,1.136,0.884,1.151,0.573,0.915,1.437,0.923,0.502,0.991,1.014,1.214,2.799,1.125,0.339,1.009,1.167,1.028,1.366,0.922,1.264,0.829,0.616,1.203,0.997,1.092,1.061,0.906,1.296,0.859,0.857,0.709,1.005,1.515 +NM_006838,0.78,0.76,1.263,0.731,0.917,0.939,0.48,0.464,1.206,1.216,1.136,0.778,0.715,0.84,0.933,1.419,0.832,0.751,1.649,0.759,0.705,0.85,1.277,1.256,0.493,0.92,1.662,0.966,0.416,0.7,1.042,1.098,1.925,1.175,0.309,1.078,1.033,1.185,1.224,0.71,1.269,1.113,0.814,0.974,1.041,1.139,0.91,0.701,0.99,0.824,0.982,0.794,1.186,1.732 +NM_006839,0.546,1.209,1.043,0.744,0.79,1.095,0.583,0.376,0.988,1.165,0.976,0.589,0.463,0.495,0.976,1.345,0.766,0.725,0.972,1.002,0.451,0.734,1.629,1.054,0.724,0.693,1.321,0.785,0.495,1.271,0.707,1.267,1.867,1.302,0.253,0.998,1.307,0.834,1.414,1.28,0.989,1.19,1.031,1.089,0.97,1.393,1.106,0.574,1.676,0.678,1.227,0.74,0.808,1.44 +NM_006840,1.006,1.0,0.916,0.96,0.979,0.987,0.927,1.044,1.014,0.985,1.074,1.34,1.088,0.875,0.829,0.992,1.033,1.067,0.935,1.016,0.939,1.026,0.929,1.049,0.933,1.091,0.921,0.96,0.975,1.019,0.919,0.94,0.869,1.054,0.935,0.901,0.972,0.997,1.326,1.057,0.958,0.963,1.046,0.896,0.918,0.896,1.018,1.092,0.982,1.004,1.015,1.107,0.956,1.037 +NM_006841,0.977,0.971,0.935,0.906,1.091,0.908,0.9,1.02,1.057,0.966,1.042,1.093,0.978,1.002,0.922,0.86,1.036,0.948,0.938,0.936,0.946,0.987,0.973,1.036,0.905,1.094,1.238,1.073,0.936,0.963,0.963,1.018,1.082,0.93,1.06,1.114,0.969,1.189,0.898,1.041,1.009,1.115,0.811,0.864,0.979,0.82,1.065,0.988,1.081,1.047,1.125,0.89,1.021,0.932 +NM_006843,0.911,0.887,0.989,0.75,0.92,0.886,0.946,0.87,0.992,0.8,0.894,1.021,0.898,0.941,1.094,1.013,0.818,1.008,0.807,0.977,0.939,0.819,1.189,0.941,0.964,1.128,0.928,1.085,1.138,1.099,1.035,1.854,1.088,0.95,0.859,0.883,1.112,1.002,1.199,1.71,0.89,1.014,0.921,0.996,1.036,1.105,1.082,0.874,0.867,0.935,0.959,1.756,0.745,1.428 +NM_006844,0.845,1.065,0.93,1.08,0.67,1.049,0.607,0.417,0.832,0.896,1.189,0.564,0.694,0.575,0.807,1.757,0.873,1.052,1.231,0.846,0.651,0.964,1.751,0.95,0.888,1.151,1.123,0.621,0.698,0.994,0.626,0.949,1.167,1.551,0.233,0.954,1.068,0.88,1.811,0.642,0.831,1.186,0.816,1.596,0.82,0.858,0.829,1.006,0.924,1.096,1.075,0.978,0.802,0.948 +NM_006845,0.609,0.868,1.187,0.846,0.993,0.819,0.74,0.57,1.016,1.029,0.79,0.866,0.686,0.586,0.843,1.098,0.952,1.038,1.141,0.84,0.7,0.878,1.791,1.288,0.536,0.715,2.252,0.852,0.439,1.076,0.823,1.784,4.596,0.738,0.381,2.567,1.01,0.859,2.109,1.584,1.265,0.619,0.64,2.473,1.008,0.928,1.328,0.747,1.614,0.826,1.433,1.335,0.93,3.194 +NM_006846,6.885,0.0946,4.582,1.731,10.1,0.134,0.135,5.771,9.221,6.291,0.0873,4.206,3.647,4.26,3.876,1.729,4.186,3.238,5.811,0.382,2.868,5.868,0.121,5.279,0.0964,8.735,2.434,9.671,0.0852,0.162,9.575,0.102,1.845,0.28,17.74,0.0873,0.117,8.235,0.17,0.0779,5.528,0.214,0.0936,0.0791,4.977,0.087,2.643,8.201,0.286,3.905,1.488,0.734,4.876,0.988 +NM_006848,0.801,1.086,0.843,0.717,0.896,0.937,0.785,1.078,0.935,1.041,1.056,1.181,1.308,0.757,0.872,1.271,0.746,0.816,1.148,0.75,1.028,1.045,1.031,1.09,0.874,1.223,0.751,0.831,0.82,0.796,1.115,1.67,1.709,1.273,0.698,1.339,0.794,1.205,1.388,1.759,0.914,1.067,0.632,1.302,0.988,0.704,0.992,1.252,0.738,0.99,0.761,0.933,0.845,0.969 +NM_006849,0.86,2.89,0.924,1.901,0.962,1.16,1.161,0.964,1.001,0.921,1.067,0.939,0.958,0.976,1.013,0.914,0.948,0.997,0.869,1.01,1.019,0.934,1.072,0.991,4.849,0.795,0.846,0.912,1.27,1.394,0.981,1.04,0.992,2.02,0.915,1.098,1.318,0.9,1.093,0.848,1.031,1.603,1.005,1.469,0.815,0.932,0.892,0.818,1.005,0.921,1.035,0.967,0.783,0.817 +NM_006850,1.194,0.952,1.025,0.981,1.231,1.046,0.921,0.73,1.096,0.979,1.076,1.024,0.93,0.876,0.888,0.943,0.935,0.914,0.933,1.069,1.017,1.022,0.935,0.939,1.03,1.285,1.16,1.085,1.016,0.96,1.053,0.892,0.886,1.022,1.165,0.995,1.02,1.096,1.147,1.362,0.918,1.143,0.838,1.05,1.018,0.949,0.984,0.987,1.052,1.022,0.958,1.147,0.87,0.846 +NM_006851,0.813,0.987,1.143,0.936,0.944,0.878,0.977,0.86,0.837,1.182,0.898,1.013,0.775,0.82,0.745,0.816,0.92,0.839,0.922,0.908,0.966,0.913,1.092,1.009,0.789,0.846,1.34,0.873,0.535,1.245,0.833,2.431,1.466,1.049,0.826,2.623,0.992,0.774,1.468,1.898,1.288,1.213,0.72,0.778,1.011,0.75,1.203,0.753,0.75,1.152,1.126,1.856,1.993,1.626 +NM_006852,0.942,0.875,1.162,0.944,1.047,1.047,0.763,0.72,1.238,0.989,1.048,0.811,0.838,0.924,1.043,1.072,1.157,0.837,0.976,0.871,0.805,0.828,1.051,1.089,0.814,0.979,1.339,0.969,0.626,0.994,0.882,1.51,1.464,1.129,0.741,0.969,0.927,0.89,0.981,0.948,1.261,1.002,0.721,1.563,0.982,0.998,1.012,0.901,0.98,1.049,0.96,0.807,0.892,1.605 +NM_006853,0.947,1.048,1.06,0.885,1.057,1.056,1.277,0.951,0.995,1.018,1.126,1.083,1.055,1.359,0.885,1.18,1.025,1.008,0.978,1.007,1.029,1.027,0.931,1.051,1.033,0.954,0.839,0.955,1.143,0.911,1.01,0.954,0.982,0.946,1.102,0.961,0.976,0.989,0.986,0.996,1.017,0.892,0.85,1.057,0.839,1.036,0.825,0.928,0.908,0.973,0.993,1.028,0.973,0.768 +NM_006854,0.613,0.999,0.682,0.967,0.635,1.056,1.12,0.542,0.939,0.732,1.909,0.674,0.426,0.42,0.773,1.668,0.544,1.386,1.282,1.224,0.564,0.783,2.795,1.07,0.74,0.654,0.669,0.8,1.014,1.538,0.658,0.926,1.536,1.528,0.224,1.956,1.41,0.67,1.143,0.805,0.795,1.309,0.905,2.497,0.771,1.128,1.766,0.53,1.201,0.671,1.682,1.232,0.862,1.718 +NM_006855,0.249,1.93,0.264,1.002,0.26,2.28,1.241,0.21,0.264,0.259,1.959,0.239,0.24,0.173,0.852,2.284,0.217,1.47,0.341,1.83,0.215,0.239,2.751,0.214,1.002,0.249,0.248,0.228,1.193,2.693,0.25,1.37,1.699,2.598,0.223,1.277,1.847,0.233,3.185,0.627,0.281,2.158,0.866,0.998,0.305,2.242,0.692,0.236,1.318,0.284,2.033,1.199,0.226,1.073 +NM_006856,1.081,1.051,0.938,1.031,0.851,1.143,0.935,0.974,0.928,0.946,1.008,0.943,0.933,1.116,0.959,1.07,0.974,1.057,0.903,0.881,1.163,0.894,1.052,0.922,0.978,0.871,1.14,0.857,1.179,1.033,0.998,0.975,0.98,1.038,1.109,1.053,1.059,1.04,1.073,1.02,1.032,0.856,1.01,0.981,0.984,1.014,0.917,0.965,1.056,0.944,1.054,0.94,0.975,1.067 +NM_006858,0.82,1.182,0.94,0.904,0.932,0.912,1.044,0.804,0.947,0.926,0.987,0.974,0.943,0.713,0.914,0.997,1.025,0.972,1.103,0.881,0.984,1.179,1.292,1.064,1.048,1.033,0.851,0.966,0.832,1.056,0.869,1.664,1.276,1.204,0.818,1.113,0.902,0.955,1.282,1.268,1.009,1.163,0.835,1.384,0.961,0.827,1.007,0.945,0.861,0.959,0.898,1.112,0.971,1.183 +NM_006859,0.83,1.064,1.393,0.804,1.022,1.387,0.776,0.716,1.455,1.004,1.094,1.136,0.985,0.875,1.062,1.119,0.885,0.795,1.15,0.991,0.726,0.996,1.186,1.095,0.727,0.856,1.191,1.039,0.786,1.505,0.997,0.911,1.391,1.228,0.676,0.733,0.884,1.033,1.231,0.686,1.346,1.177,0.899,1.058,0.889,1.095,1.094,0.871,1.086,0.88,1.041,0.62,0.772,1.275 +NM_006860,0.528,1.489,0.717,1.079,0.664,1.313,0.82,0.457,0.785,0.733,1.404,0.679,0.659,0.583,0.828,1.489,0.622,1.01,0.929,1.174,0.449,0.535,1.337,0.467,1.014,0.681,0.822,0.544,0.68,1.377,0.645,1.276,0.438,2.056,0.266,0.919,1.363,0.523,2.157,0.685,0.654,1.385,0.936,1.489,0.634,1.235,0.828,0.625,1.021,0.555,1.144,0.611,0.845,2.17 +NM_006861,1.011,0.812,1.362,0.773,1.067,0.838,0.77,0.606,1.183,1.169,0.667,0.754,0.727,0.724,0.799,1.11,0.994,1.146,1.096,0.888,0.628,0.893,1.054,0.997,0.671,1.045,1.226,1.024,0.569,1.183,1.018,1.436,0.646,1.142,0.655,1.167,0.948,1.011,1.017,1.191,1.349,0.983,0.943,0.871,1.119,0.929,1.215,0.928,1.067,0.893,0.922,1.019,0.996,0.874 +NM_006864,0.858,1.079,1.044,1.545,0.878,0.977,1.001,0.802,1.024,0.925,0.856,0.812,0.856,0.896,0.947,1.032,0.809,0.867,0.847,0.826,0.804,0.879,1.154,0.93,0.85,0.857,1.302,0.945,0.866,1.352,0.904,1.729,1.11,1.163,0.814,0.885,0.926,0.867,2.362,5.618,0.958,1.262,1.054,1.15,0.854,0.913,1.166,0.832,0.891,0.97,0.977,2.437,1.042,2.506 +NM_006865,0.902,0.987,1.154,0.97,0.999,0.932,0.994,0.888,0.89,1.06,0.801,0.89,0.905,0.918,0.731,1.0,0.927,0.817,1.0,0.891,0.886,0.823,1.105,0.9,0.916,0.961,1.359,1.02,0.779,1.047,0.813,1.207,1.198,0.935,0.884,1.177,0.911,0.925,1.309,5.002,0.882,0.966,1.063,1.298,1.036,1.001,1.09,0.97,1.015,0.837,1.108,7.115,1.067,1.581 +NM_006867,1.507,0.444,1.693,0.972,1.083,0.687,0.447,0.874,1.686,0.687,1.014,0.747,1.333,1.293,1.251,1.034,1.996,0.73,1.581,0.886,0.586,0.683,1.039,0.751,0.588,1.68,0.889,1.247,0.358,0.934,1.222,1.95,1.215,1.41,5.721,0.746,0.631,0.68,1.183,0.732,1.272,1.285,0.416,1.078,1.062,0.737,0.955,1.36,0.447,1.139,1.048,1.351,1.318,1.339 +NM_006868,0.872,0.602,2.899,0.571,0.886,0.72,0.627,1.143,1.258,1.206,0.636,1.511,0.99,0.953,0.999,0.894,2.658,1.12,2.864,0.629,1.085,0.848,0.928,1.592,0.498,0.773,3.538,1.135,0.494,1.038,1.144,6.789,2.06,0.957,0.956,0.487,0.513,1.108,1.203,2.571,2.227,0.925,0.509,0.936,2.835,0.542,1.956,1.164,0.537,3.022,0.739,2.48,2.74,2.129 +NM_006869,0.198,0.952,0.342,0.668,0.29,1.638,0.973,0.317,0.625,0.179,1.779,0.257,0.196,0.261,1.152,2.01,0.184,0.969,0.223,1.3,0.111,0.333,2.614,0.226,0.597,0.252,0.339,0.289,0.768,2.32,0.414,2.574,2.302,1.531,0.256,2.728,1.498,0.327,2.356,2.282,0.429,1.463,1.39,3.98,0.338,2.11,2.151,0.243,1.728,0.166,1.42,1.798,0.189,1.982 +NM_006870,0.531,0.785,1.151,0.556,1.091,1.456,0.486,0.913,1.373,0.868,1.108,1.024,0.627,0.541,0.929,2.335,0.634,0.925,1.99,0.944,0.808,0.99,1.441,0.925,0.436,0.944,1.009,1.238,0.406,1.622,1.225,0.939,2.26,1.766,0.618,0.873,1.111,1.29,1.143,0.689,1.289,1.152,0.471,0.786,0.838,0.991,0.781,0.845,0.803,0.766,1.023,0.66,0.93,1.607 +NM_006871,0.818,1.221,0.968,1.24,0.911,1.739,0.931,0.719,0.859,0.884,1.501,0.694,0.74,0.747,1.257,2.118,0.908,1.274,1.099,1.074,0.841,0.778,1.286,0.748,0.818,0.926,0.73,0.786,0.998,1.661,0.864,0.841,0.812,1.235,0.692,0.743,1.46,0.824,1.531,0.815,0.917,1.436,1.093,1.044,0.746,1.388,1.091,0.814,1.29,1.005,1.384,0.836,0.909,1.048 +NM_006874,0.853,1.048,1.408,0.864,0.858,0.937,0.763,0.685,1.038,0.816,1.125,0.911,0.768,0.813,0.977,1.275,0.763,0.781,1.058,1.108,0.604,0.718,1.111,1.001,0.831,0.771,1.268,0.915,0.528,1.262,0.999,1.897,1.387,1.411,0.464,0.749,0.879,0.692,1.028,0.981,0.886,1.347,0.554,1.188,1.024,0.807,0.756,0.803,0.686,0.946,0.918,0.83,0.919,1.353 +NM_006876,0.404,1.557,0.689,0.729,0.601,1.273,0.895,0.303,0.585,0.617,1.504,0.552,0.411,0.387,0.751,2.176,0.461,0.853,0.581,1.737,0.41,0.48,2.251,0.589,1.038,0.57,0.603,0.696,0.612,2.085,0.473,1.912,0.895,1.985,0.205,1.605,1.554,0.719,1.681,0.791,0.719,2.059,0.445,0.972,0.561,1.722,0.93,0.435,1.435,0.455,1.548,0.797,0.499,1.876 +NM_006877,0.747,1.377,0.793,1.199,0.691,1.261,1.063,0.907,0.743,0.666,1.331,0.696,0.851,0.754,1.099,1.086,0.775,0.874,0.682,1.089,0.713,0.65,1.576,0.748,1.225,0.761,0.813,0.624,0.714,0.995,0.764,1.017,0.847,1.22,0.779,0.867,1.191,0.689,1.71,0.815,0.655,1.71,1.061,2.952,0.652,1.351,0.778,0.734,1.062,0.784,1.439,0.784,0.885,1.305 +NM_006883,0.988,1.08,1.011,0.907,0.931,0.922,0.95,0.989,1.031,1.012,1.025,1.225,1.047,1.049,1.104,0.945,0.93,0.792,1.091,1.129,0.988,0.994,0.934,1.064,1.02,0.974,1.086,1.094,0.699,1.007,1.0,1.211,0.928,1.156,0.902,1.033,0.922,1.012,0.963,1.163,1.023,0.974,1.036,1.061,0.913,0.939,0.847,1.004,0.928,1.045,1.186,0.931,0.951,0.999 +NM_006884,0.985,1.057,0.926,1.166,0.989,1.158,1.217,0.971,1.13,1.091,0.995,1.03,0.989,1.133,1.141,0.958,0.901,1.156,1.071,1.009,0.959,0.906,1.024,0.948,0.878,0.989,1.058,0.89,0.899,0.967,1.052,0.86,1.131,1.001,0.997,0.911,1.135,0.981,1.048,0.837,0.906,1.09,1.046,1.172,0.816,1.093,0.965,0.997,1.04,1.018,0.981,0.934,0.992,0.943 +NM_006885,0.864,1.214,1.131,0.825,0.91,1.272,0.856,0.702,0.857,0.796,0.811,0.666,0.64,0.769,1.022,1.267,0.74,1.07,0.992,1.222,0.84,0.879,1.319,0.696,1.003,0.927,0.898,0.838,0.842,1.473,0.914,2.013,1.814,1.399,0.696,0.949,1.209,0.963,1.385,1.794,0.792,1.672,0.698,1.565,0.914,0.97,0.928,0.745,0.834,0.815,1.18,0.869,0.832,1.152 +NM_006886,0.77,0.96,1.036,0.694,0.998,1.245,0.571,0.701,1.201,0.879,0.962,0.842,0.641,0.6,0.851,1.316,0.934,0.998,1.391,0.973,0.57,1.012,1.395,1.063,0.723,0.988,1.032,0.981,0.494,1.432,0.897,0.906,1.453,1.47,0.344,0.994,1.02,1.182,1.096,1.038,1.097,1.023,0.539,1.183,0.851,0.851,1.007,0.973,0.77,0.683,1.024,1.028,0.881,1.383 +NM_006887,0.492,1.18,0.799,0.719,0.729,0.828,0.509,0.487,1.111,0.998,1.02,0.388,0.436,0.684,1.128,1.183,0.667,0.64,0.842,1.065,0.503,0.406,1.995,0.658,0.57,0.642,0.744,0.646,0.522,1.148,1.019,1.499,2.86,1.269,0.481,1.035,0.712,0.606,1.164,0.725,0.986,1.169,1.002,1.399,0.698,1.174,1.007,0.411,1.03,0.561,1.154,0.658,1.082,1.561 +NM_006888,0.808,0.919,1.117,0.609,0.968,1.333,0.375,0.967,1.512,0.964,1.213,0.836,0.602,0.803,1.211,2.322,0.733,0.818,1.585,1.013,0.587,0.938,1.425,1.327,0.759,1.051,1.19,1.19,0.338,1.226,1.294,1.559,1.281,1.354,0.858,0.982,1.34,1.201,1.275,0.76,1.52,1.279,0.584,0.715,0.947,1.318,0.866,0.885,0.92,1.001,1.194,0.638,1.048,0.866 +NM_006889,0.985,1.004,0.923,1.073,0.976,0.968,0.958,0.971,1.056,0.955,1.158,1.06,1.115,1.121,0.922,1.126,1.196,0.97,0.908,1.079,0.979,0.979,1.063,1.092,1.016,0.888,0.971,1.01,1.108,1.019,1.06,0.941,1.08,0.936,1.015,0.862,0.96,1.039,0.967,1.004,1.027,1.008,1.074,1.144,0.934,1.163,1.137,1.086,0.987,0.842,0.957,1.024,1.148,1.087 +NM_006891,1.016,1.144,0.81,0.905,0.934,1.012,1.024,0.997,0.987,0.887,1.003,1.043,0.925,1.185,0.977,1.12,1.001,0.972,1.134,1.058,1.092,0.972,1.203,0.99,0.962,0.981,0.84,1.11,1.438,1.131,0.901,0.87,0.973,1.041,1.107,1.044,0.92,0.835,1.12,0.941,1.109,1.018,1.001,1.026,0.972,0.999,1.113,0.958,0.972,1.249,0.951,0.927,1.096,0.913 +NM_006892,1.076,0.936,1.052,1.023,0.902,1.002,0.9,1.075,0.969,0.844,1.071,0.917,0.963,1.168,1.019,1.133,0.951,0.871,1.13,1.001,1.05,1.061,1.092,0.904,0.997,1.068,0.97,1.052,0.779,0.993,1.093,0.884,1.003,0.903,1.026,1.071,1.026,0.759,0.96,0.921,0.937,0.892,0.932,1.063,1.048,0.996,1.001,1.13,1.076,1.019,0.918,0.947,0.912,1.061 +NM_006893,0.975,1.042,1.858,0.561,1.548,0.481,0.346,0.842,1.678,1.378,0.537,2.083,1.263,0.996,1.004,1.297,1.228,0.651,1.857,0.753,0.587,1.25,1.205,1.996,0.471,1.19,1.794,1.48,0.278,0.606,1.103,1.618,1.688,0.627,0.223,1.226,0.711,1.566,0.98,0.443,1.902,1.045,0.788,1.145,1.493,0.614,1.239,1.109,1.28,1.033,0.669,0.901,1.151,1.209 +NM_006894,0.864,1.031,1.062,0.904,0.999,1.039,1.017,0.82,0.859,1.001,0.946,0.903,0.893,0.906,0.955,1.029,0.862,0.812,0.82,1.033,0.837,0.884,1.497,0.928,0.894,0.897,1.054,1.016,1.114,1.166,0.785,3.67,0.962,1.39,0.841,1.028,0.956,0.78,1.289,0.922,0.957,1.337,1.068,0.924,0.777,1.142,1.034,0.88,0.931,1.017,1.25,1.255,0.971,1.23 +NM_006896,1.08,0.705,2.438,0.653,2.427,0.632,0.693,0.758,1.016,2.509,0.734,2.775,0.695,1.384,1.531,0.913,1.157,1.694,1.939,0.992,0.778,0.756,1.677,2.742,0.703,1.035,1.393,0.985,0.446,0.607,0.907,0.638,1.843,0.605,0.66,1.144,0.684,3.38,0.731,4.435,1.969,0.619,0.617,1.576,0.977,0.789,1.494,1.035,0.669,1.196,1.491,1.311,1.638,2.121 +NM_006897,0.978,1.172,0.831,0.949,1.01,1.364,1.122,1.315,0.894,0.84,1.097,0.993,0.818,1.049,0.9,0.901,0.894,0.947,0.883,1.042,0.926,1.058,0.963,1.076,0.954,0.871,1.048,1.021,1.077,1.582,0.974,1.258,0.999,1.182,1.059,1.102,1.174,0.939,1.265,1.35,0.964,1.071,1.049,1.663,0.964,0.762,0.872,1.014,0.9,1.036,1.079,0.843,0.912,1.061 +NM_006898,1.081,1.009,1.066,1.034,1.233,0.962,0.809,0.926,1.119,0.997,0.961,1.004,1.002,0.904,1.176,1.032,0.953,0.831,0.992,0.81,0.86,0.909,0.908,0.851,1.039,1.078,1.044,0.935,0.752,0.985,0.822,1.016,0.909,1.012,1.013,1.005,0.914,1.087,1.074,0.984,1.01,1.072,1.03,1.025,0.989,1.016,1.069,1.018,1.075,1.062,1.069,0.838,0.83,1.025 +NM_006900,0.998,1.205,1.123,1.04,1.18,1.109,0.948,0.876,1.053,1.061,1.193,1.146,1.03,1.201,1.151,0.868,1.133,0.972,1.093,0.891,1.055,0.818,1.332,0.909,0.924,1.004,1.002,0.905,1.374,0.945,1.036,1.033,1.099,0.871,1.277,1.219,1.158,0.844,0.966,0.844,1.072,0.86,1.851,0.99,1.057,0.969,0.91,1.092,0.965,1.062,1.047,1.071,0.924,0.991 +NM_006901,1.008,1.01,1.193,0.991,1.136,0.834,0.771,1.015,1.01,0.979,0.819,0.941,0.921,1.187,1.002,1.011,0.808,1.148,1.236,0.968,0.898,0.993,1.099,0.999,0.926,1.095,1.11,1.06,0.764,0.98,0.976,1.249,1.142,0.997,0.748,0.772,0.937,1.363,1.231,1.016,1.087,1.207,0.715,0.876,0.896,0.835,0.933,1.013,0.906,1.089,0.936,1.04,0.938,1.174 +NM_006902,0.972,0.88,0.951,0.929,1.061,1.127,0.984,1.019,0.92,0.981,0.913,1.182,1.127,1.197,0.887,0.994,1.118,1.163,1.136,1.057,0.919,0.919,0.947,1.001,1.02,1.035,1.354,1.013,0.995,1.012,0.957,1.072,0.897,0.85,1.065,0.926,0.913,1.018,1.017,0.999,0.994,0.976,1.154,0.926,0.998,0.932,0.889,1.005,1.119,1.032,0.971,0.95,0.921,1.087 +NM_006904,1.033,1.205,1.34,0.804,1.097,0.76,0.507,0.476,1.057,0.964,0.843,0.745,0.592,0.79,1.062,0.985,0.765,0.874,1.247,0.813,0.616,0.763,1.672,0.985,0.725,0.833,1.559,0.82,0.404,1.071,0.85,1.055,4.239,0.85,0.321,1.536,1.065,1.157,1.243,0.76,1.088,1.172,0.789,1.528,1.127,1.02,1.026,0.775,1.621,1.213,1.179,1.295,0.978,2.017 +NM_006907,0.776,1.573,0.744,1.295,0.679,1.867,0.806,0.758,0.677,0.745,1.001,0.733,0.814,0.9,0.85,0.967,0.676,1.138,0.799,0.918,0.759,0.781,1.246,0.98,1.416,0.894,0.785,0.741,0.962,1.387,0.684,1.144,1.074,1.418,0.631,0.974,1.283,0.918,2.669,0.959,0.729,1.216,0.873,2.593,0.813,0.958,0.994,0.773,1.203,0.724,0.999,0.777,0.693,1.336 +NM_006908,0.725,0.815,1.232,0.857,1.085,0.882,0.592,0.536,1.098,0.838,1.05,0.911,0.596,0.568,0.796,1.283,1.091,1.235,1.401,1.067,0.516,0.876,1.155,1.057,0.468,1.423,1.022,1.208,0.428,1.159,0.849,0.865,0.77,1.432,0.802,1.188,0.971,0.822,1.302,0.796,0.985,1.052,0.581,1.422,1.131,0.994,1.457,1.273,0.94,0.963,1.012,0.983,1.057,1.061 +NM_006909,0.936,1.057,1.071,1.095,1.086,1.036,0.959,1.134,1.029,0.95,1.07,1.007,1.047,0.955,0.855,0.956,1.166,0.986,1.178,1.031,1.125,0.973,0.889,0.928,1.024,0.948,0.869,0.797,0.78,1.023,1.074,0.985,1.01,0.962,0.954,0.97,0.989,0.866,0.917,1.074,0.969,0.953,0.873,0.961,1.046,1.208,1.179,1.027,0.998,1.235,0.996,1.042,0.979,0.958 +NM_006910,1.033,0.881,1.036,1.042,1.135,1.014,1.012,1.133,1.101,1.11,1.023,1.026,0.978,0.922,0.899,0.86,1.062,0.997,1.002,1.078,1.059,1.017,1.014,1.099,1.097,0.922,1.052,0.949,0.978,1.094,1.002,1.001,0.901,0.922,1.031,1.059,0.986,1.118,1.013,0.965,0.913,0.979,0.979,1.029,0.932,1.004,0.828,0.954,1.01,1.033,1.069,1.003,1.01,0.966 +NM_006911,1.021,0.928,0.961,0.837,1.11,1.076,1.087,1.204,0.825,1.048,1.004,1.054,1.082,0.917,1.205,0.983,1.168,1.027,0.964,0.903,0.766,1.083,0.93,0.911,0.954,1.049,0.914,0.991,1.366,0.956,1.117,0.824,0.895,1.111,1.157,1.02,1.007,1.003,0.817,0.888,0.836,0.889,1.085,1.004,0.892,1.03,0.974,1.051,1.05,1.038,1.023,1.216,1.103,0.859 +NM_006912,1.029,0.624,1.713,0.739,1.755,0.788,0.707,1.887,1.912,1.306,0.495,1.494,1.293,1.072,1.183,1.068,1.43,1.281,2.232,0.573,0.922,1.894,0.565,1.858,0.608,1.63,1.508,1.685,0.436,0.733,2.241,1.043,1.086,1.048,2.527,0.685,0.639,1.542,1.128,1.042,1.688,0.59,0.482,0.702,1.431,0.483,1.316,2.254,0.583,1.256,0.737,0.752,1.131,0.985 +NM_006913,0.801,1.351,0.899,0.921,0.706,1.453,0.686,0.566,0.731,0.777,1.365,0.714,0.818,0.645,0.876,1.683,0.868,1.116,0.986,0.884,0.709,0.777,0.952,0.752,1.409,0.942,0.984,0.661,0.868,1.156,0.738,1.553,1.749,1.794,0.478,0.58,1.425,0.796,1.986,0.983,0.81,1.439,0.718,1.34,0.704,0.9,0.838,0.946,1.047,0.776,0.935,0.762,0.889,1.389 +NM_006914,0.982,1.026,0.913,1.057,1.049,0.991,0.847,0.964,1.006,0.892,1.017,1.128,0.863,0.931,0.909,1.018,1.01,0.996,0.948,1.004,1.008,0.98,1.12,0.928,1.04,0.952,0.977,0.982,0.807,0.981,1.025,1.003,0.877,0.989,0.914,1.019,1.113,0.861,0.975,0.989,0.838,1.004,0.881,0.931,1.036,1.031,0.997,0.981,1.049,0.98,1.126,1.102,1.013,0.854 +NM_006917,0.923,1.131,0.844,1.06,1.139,1.04,1.024,1.028,1.08,1.089,0.972,0.814,1.014,0.976,0.883,1.092,1.071,0.846,0.921,1.017,1.148,0.859,0.983,0.948,1.109,0.979,1.159,1.058,1.0,1.046,0.898,0.953,1.049,1.047,0.936,1.036,0.962,1.278,0.898,1.033,0.989,0.924,0.91,0.854,1.018,0.96,1.026,0.944,0.894,1.048,0.855,0.975,0.881,1.028 +NM_006918,1.007,0.579,1.211,0.781,1.121,1.058,0.421,1.008,1.762,0.902,1.136,1.093,0.803,1.011,0.923,1.813,0.86,1.111,2.005,1.052,0.515,1.5,1.171,1.241,0.565,0.961,1.449,1.048,0.321,0.869,1.252,0.958,1.459,0.845,0.434,0.969,1.277,1.243,0.922,0.681,1.183,0.736,0.693,0.484,1.063,1.555,0.92,0.928,0.516,1.119,1.326,0.53,1.116,0.797 +NM_006919,4.027,0.0589,4.622,1.015,7.699,0.0651,0.0592,1.682,6.092,6.918,0.0592,3.665,1.387,3.007,2.683,1.606,3.953,3.825,7.346,0.156,0.939,1.47,0.0602,3.422,0.0528,4.276,4.773,5.726,0.0568,0.0727,5.333,0.0748,1.06,0.0686,3.542,0.0609,0.0622,5.335,0.0824,0.0672,2.35,0.083,0.0599,0.0701,3.303,0.068,2.992,3.123,0.0954,4.551,1.135,1.238,5.712,0.396 +NM_006920,0.87,1.128,0.854,1.029,0.993,1.033,0.885,1.053,0.993,1.067,1.026,0.959,0.979,0.99,0.888,1.116,1.078,1.069,1.003,0.984,0.918,1.029,1.145,0.9,1.097,1.004,0.94,1.02,0.908,1.054,1.046,1.047,0.952,0.953,1.093,1.143,0.93,0.905,1.085,0.962,0.863,1.038,1.043,0.958,0.958,1.017,0.934,0.901,1.097,0.967,0.97,1.03,0.96,1.088 +NM_006922,0.996,1.035,0.947,1.041,1.011,0.706,1.046,1.018,1.076,1.017,0.979,1.09,0.909,1.171,1.061,0.984,1.056,1.003,0.991,0.968,1.078,0.904,1.041,1.038,0.965,0.997,0.993,0.89,0.878,1.031,1.113,1.155,1.006,0.96,0.987,0.991,1.009,0.899,0.988,1.07,1.102,0.97,0.871,0.96,0.98,1.117,0.957,0.985,1.0,1.046,1.033,0.97,0.996,0.961 +NM_006923,0.809,1.453,0.976,0.923,0.75,1.318,0.799,0.579,0.792,0.791,1.63,0.645,0.661,0.678,0.833,1.233,0.716,0.957,1.112,0.952,0.505,0.635,1.05,0.818,0.948,0.767,1.107,0.741,0.631,1.68,0.916,1.919,2.025,1.542,0.432,0.926,1.486,0.791,1.622,0.836,0.846,1.018,0.729,2.083,0.86,1.099,1.058,0.802,0.831,0.681,1.221,0.893,0.719,1.325 +NM_006924,0.429,1.056,1.124,0.52,0.852,1.196,0.554,0.472,1.299,1.007,0.875,0.902,0.5,0.476,0.86,1.839,0.752,0.867,1.308,0.931,0.497,0.817,1.537,1.117,0.412,0.529,1.287,0.842,0.378,1.063,0.793,1.155,2.361,1.254,0.0755,1.032,1.185,0.728,1.175,0.748,1.204,0.993,0.522,0.89,0.893,0.965,1.125,0.527,1.297,0.673,1.172,0.8,0.742,1.544 +NM_006925,1.48,0.99,1.752,0.977,2.233,0.799,0.53,0.904,3.174,2.137,0.812,0.816,1.097,1.588,1.249,0.796,1.608,1.144,1.106,0.71,0.936,1.866,0.884,1.224,0.625,1.86,1.556,1.997,0.549,1.036,2.367,0.763,0.82,0.888,3.178,0.913,0.666,1.039,1.047,0.858,2.777,0.801,1.531,0.824,1.516,0.977,1.234,2.732,0.796,1.066,0.691,0.669,2.474,0.98 +NM_006927,0.94,1.073,0.939,0.931,0.975,1.063,1.493,0.816,0.858,0.879,1.069,0.851,0.911,0.777,0.805,1.159,0.944,0.92,0.945,0.984,0.848,0.899,1.109,1.019,0.933,0.894,0.928,0.846,0.739,0.958,0.858,1.42,1.085,0.911,0.774,1.707,1.22,0.893,1.071,1.47,0.88,1.268,1.205,1.238,0.922,0.965,1.378,0.794,0.992,0.949,1.07,1.127,1.0,1.346 +NM_006929,0.654,1.21,1.147,0.702,0.937,0.731,0.622,0.311,1.349,1.199,0.871,0.677,0.32,0.606,0.746,1.075,0.985,1.018,0.827,1.061,0.424,0.745,1.209,0.894,0.604,0.802,1.201,0.714,0.482,1.412,0.774,1.488,1.2,1.039,0.271,0.803,1.266,0.938,1.363,1.599,1.057,1.189,0.974,1.614,1.207,1.008,0.95,0.698,0.707,0.798,1.086,0.94,1.146,1.744 +NM_006930,1.133,1.005,0.842,1.07,0.92,1.131,1.124,1.18,1.083,1.08,1.064,1.047,1.117,0.869,1.001,0.942,0.977,1.173,0.998,1.07,1.085,0.963,1.002,1.009,0.954,1.039,0.81,0.947,0.999,0.992,0.969,0.988,1.072,1.014,1.264,0.892,1.097,0.962,0.966,0.902,1.058,0.876,1.098,0.979,1.156,1.011,1.006,1.149,0.92,1.056,0.933,1.191,1.069,0.901 +NM_006932,0.746,0.96,0.772,0.994,0.679,0.881,0.819,0.828,0.663,0.789,1.039,0.711,0.725,0.695,0.843,1.229,0.692,0.775,0.869,0.793,1.636,0.903,1.376,0.71,1.331,0.782,0.961,1.214,0.778,1.337,0.757,1.928,1.473,1.715,0.851,0.94,0.848,0.948,2.101,1.264,2.194,1.712,1.118,1.064,0.895,1.008,0.786,0.897,0.888,1.033,1.253,1.064,0.952,0.942 +NM_006933,0.957,0.859,0.992,0.853,0.94,0.957,0.94,0.991,1.037,0.996,0.984,1.139,0.884,0.905,0.722,0.98,0.962,0.993,0.85,0.989,0.937,1.023,1.076,1.031,0.901,0.951,1.253,1.002,0.821,1.014,1.03,1.176,1.13,0.956,0.886,1.001,1.03,0.877,1.118,1.681,1.039,0.88,1.272,1.178,1.064,0.955,1.138,0.951,1.012,0.964,1.027,1.125,0.975,0.999 +NM_006934,1.011,0.968,1.028,0.926,1.0,1.085,1.043,1.018,0.965,0.852,1.079,1.03,0.927,0.876,0.945,1.0,1.105,1.005,1.039,1.019,1.046,1.035,1.026,1.069,1.133,1.053,1.09,1.043,0.983,0.913,0.797,1.024,1.024,0.923,0.97,0.829,0.92,0.897,1.07,1.0,0.943,1.034,1.063,1.111,0.989,1.036,0.984,0.913,0.931,1.023,0.987,1.006,0.943,0.907 +NM_006936,0.529,1.411,0.882,0.598,0.667,1.389,0.68,0.465,0.898,0.801,1.565,0.818,0.604,0.618,0.883,1.698,0.638,1.045,1.305,1.084,0.508,0.602,1.344,0.985,0.686,0.662,1.032,0.695,0.512,1.42,0.758,1.309,2.677,2.05,0.189,0.877,1.323,0.844,1.297,1.022,0.891,1.23,0.75,1.28,0.677,1.051,0.869,0.587,0.574,0.596,0.985,0.676,0.934,1.741 +NM_006937,0.813,1.168,1.025,0.915,1.011,1.108,0.974,0.914,0.889,0.849,0.981,0.953,0.932,0.999,1.0,1.039,0.842,1.047,1.066,1.022,0.921,0.999,1.167,0.982,0.911,0.965,1.052,0.951,1.0,1.11,0.891,1.075,1.111,1.214,0.874,1.121,0.977,0.928,0.984,0.906,0.983,1.12,0.703,0.941,0.909,1.025,0.774,0.871,1.124,0.941,1.097,0.969,1.11,0.993 +NM_006938,0.906,1.248,1.034,0.9,0.889,1.101,0.952,0.906,1.175,1.056,0.959,1.076,0.954,0.826,0.921,1.748,0.839,1.122,1.022,0.8,0.851,0.946,1.07,1.263,0.816,0.806,1.32,0.983,0.615,0.952,0.919,1.149,1.482,1.152,0.739,0.986,1.053,0.961,1.199,0.92,1.087,0.874,0.69,1.265,1.224,0.921,0.928,0.909,1.214,0.975,1.005,0.936,0.908,2.796 +NM_006939,1.077,1.194,1.016,1.027,0.964,0.837,0.943,1.739,1.11,0.898,1.262,1.146,1.09,0.977,0.979,0.926,1.105,1.064,0.966,1.019,1.037,0.905,0.962,0.974,1.006,0.934,0.923,0.958,1.157,0.964,0.938,1.072,1.032,1.039,1.027,0.946,1.042,0.966,0.983,0.907,0.916,1.006,0.994,1.0,0.982,1.012,1.23,1.041,1.083,1.158,1.04,1.046,0.913,0.948 +NM_006940,0.887,0.984,1.003,0.941,1.099,1.033,1.23,0.99,1.111,1.048,0.938,1.129,1.015,0.963,0.739,1.106,1.121,1.076,1.126,1.143,1.132,0.977,0.785,1.006,1.112,1.068,0.919,0.878,0.838,1.133,0.999,1.162,0.939,1.202,1.025,0.816,1.04,1.095,0.855,1.019,1.081,1.203,1.01,0.967,1.194,1.0,1.089,0.98,1.021,0.782,1.043,1.185,1.094,1.126 +NM_006941,0.939,0.882,0.836,1.044,0.96,1.036,0.936,1.097,0.913,0.916,1.064,0.816,0.993,0.822,0.908,1.035,0.937,1.013,0.979,1.105,1.116,1.001,1.2,0.956,1.095,0.971,1.043,0.972,1.091,1.388,0.869,0.949,0.93,1.429,1.016,0.892,1.045,1.11,1.006,0.774,1.005,1.225,0.901,0.865,1.087,0.935,0.874,0.999,0.945,0.865,0.923,0.98,1.135,1.112 +NM_006942,1.958,0.353,3.659,0.989,2.484,0.347,0.27,1.42,3.163,3.541,0.311,2.548,1.523,2.091,1.762,1.011,3.147,1.68,4.202,0.464,2.056,1.797,0.409,2.602,0.342,2.527,3.624,2.5,0.298,0.399,3.36,0.387,1.162,0.329,0.901,0.363,0.312,2.51,0.343,0.268,3.199,0.334,0.402,0.276,3.063,0.308,2.085,1.539,0.276,2.337,0.645,1.068,3.846,0.717 +NM_006944,0.885,0.993,0.988,1.086,0.975,0.956,1.038,0.927,1.073,0.947,0.969,0.948,0.988,0.898,0.797,1.125,0.991,0.982,1.041,1.113,0.926,1.047,0.953,1.02,0.969,0.878,0.943,1.008,1.281,1.041,0.994,1.121,1.079,0.8,0.979,1.036,0.867,1.16,1.073,1.084,1.186,1.054,1.03,1.202,1.015,1.043,0.895,0.996,1.204,1.051,1.137,0.955,0.983,0.973 +NM_006945,3.56,0.0163,6.203,1.299,6.3,0.0207,0.0257,2.576,2.498,5.14,0.0199,3.525,2.892,0.717,1.343,2.318,7.487,2.195,6.411,0.0387,3.944,1.05,0.0175,2.379,0.0202,1.493,4.565,2.094,0.0201,0.0275,4.311,0.017,3.309,0.0204,6.06,0.0407,0.0276,2.677,0.127,0.0303,5.744,0.0336,0.0348,0.0245,7.695,0.0197,5.037,2.061,1.381,7.04,0.788,2.101,6.266,0.95 +NM_006946,2.018,0.637,3.782,0.869,2.806,0.47,0.51,1.38,3.155,2.585,0.507,2.376,0.943,1.718,1.426,0.84,1.767,1.746,5.132,0.656,1.889,2.044,0.58,2.749,0.476,2.178,2.662,2.109,0.516,0.67,2.304,0.803,2.426,0.519,0.591,0.838,0.483,2.431,0.633,0.989,2.175,0.59,0.483,1.155,3.423,0.444,1.449,1.692,0.454,2.639,0.883,1.077,2.884,0.874 +NM_006947,0.784,1.076,1.002,0.733,0.942,1.091,0.804,0.429,1.203,1.008,0.981,0.872,0.802,0.518,0.753,1.147,0.773,0.794,0.75,1.075,0.596,0.787,1.18,1.207,0.864,0.617,1.238,0.895,0.614,1.524,0.78,1.007,1.386,1.093,0.388,1.045,1.04,0.998,1.892,0.872,1.348,1.24,1.117,1.436,0.852,1.668,1.536,0.578,1.703,0.712,1.232,0.91,0.821,1.3 +NM_006948,0.903,0.96,0.979,0.979,0.969,1.201,1.142,0.968,0.879,0.951,0.909,1.054,0.958,0.866,0.843,1.214,0.89,0.892,0.989,0.924,0.841,1.005,0.958,1.072,0.885,0.849,1.08,0.849,0.804,1.043,1.089,1.434,1.191,1.107,0.931,0.862,1.061,1.051,1.031,1.128,0.868,1.041,1.039,0.809,0.956,1.068,0.972,0.962,0.996,0.978,1.11,0.974,0.866,1.218 +NM_006949,0.773,0.815,0.983,1.0,0.723,1.449,0.971,0.574,0.815,0.761,1.432,0.501,0.536,0.519,1.044,2.77,0.722,1.177,1.319,1.483,0.626,0.628,1.579,0.709,0.667,1.056,0.717,0.674,0.659,1.297,0.968,0.547,1.563,1.845,0.631,1.198,1.136,0.641,1.642,1.093,0.783,1.142,0.768,1.353,0.88,1.041,0.642,0.969,0.779,0.894,1.192,0.707,1.22,1.024 +NM_006950,1.005,1.078,0.923,1.103,1.137,1.076,0.966,1.013,1.133,1.01,1.026,0.987,1.019,1.106,0.899,1.089,1.022,1.149,0.986,0.949,0.971,1.027,1.062,0.979,0.951,1.005,0.983,0.977,0.877,0.99,0.959,1.001,0.979,1.074,0.963,1.038,0.977,0.961,1.134,0.966,1.099,0.985,0.964,0.999,1.089,0.958,0.893,0.882,1.01,0.9,0.991,1.006,0.979,1.083 +NM_006951,1.067,0.965,0.917,0.995,1.119,0.911,0.935,0.96,1.243,1.033,1.045,1.054,0.979,0.959,1.091,0.934,1.093,0.957,0.83,0.872,0.976,0.861,0.982,0.936,0.987,0.999,1.307,1.009,0.928,0.97,1.082,1.088,1.04,0.912,0.974,0.999,0.978,0.984,1.196,1.044,0.939,0.994,0.968,0.945,0.959,1.021,1.025,0.995,1.073,0.95,0.959,0.931,0.916,1.074 +NM_006952,0.775,3.026,0.709,2.551,0.748,10.96,2.299,0.761,1.464,0.657,1.255,0.69,0.794,0.71,0.837,0.59,0.825,6.598,0.685,9.029,0.61,0.806,0.956,0.881,1.262,0.699,0.604,0.841,1.454,5.154,1.245,1.027,0.747,6.346,0.686,0.621,4.365,1.707,4.989,0.715,1.412,3.894,0.664,0.574,0.938,0.712,0.817,0.777,0.674,0.784,10.52,2.478,0.681,1.747 +NM_006953,0.933,0.981,1.01,0.984,0.975,0.922,1.214,1.127,0.87,1.031,0.995,0.955,0.966,1.111,0.978,1.021,0.914,0.914,1.058,0.913,1.05,1.032,1.142,1.0,1.008,0.958,1.016,0.953,0.988,0.919,0.94,0.984,1.022,1.07,0.907,0.994,1.025,0.978,1.099,0.929,0.833,0.997,1.285,0.989,0.983,1.03,1.076,0.899,1.202,0.969,0.934,1.009,1.084,0.856 +NM_006958,1.284,1.072,1.28,0.856,1.104,0.822,0.804,1.112,1.207,1.081,0.682,1.001,1.188,1.249,0.93,1.117,0.948,0.936,1.403,0.83,0.947,1.24,0.963,1.231,0.943,1.327,1.122,0.886,0.678,0.965,1.165,1.058,1.513,1.278,1.073,0.952,0.847,1.016,1.032,0.985,1.111,0.864,0.725,1.069,1.109,0.672,0.955,1.275,0.826,1.15,0.69,0.772,0.995,1.162 +NM_006961,1.028,0.982,0.948,0.949,1.026,0.989,1.122,0.936,1.011,0.944,1.018,1.041,0.963,0.996,0.728,0.944,0.87,0.864,0.943,0.84,1.125,1.073,0.97,0.925,0.982,1.021,1.033,0.929,0.651,1.0,1.072,1.067,0.942,1.024,0.907,1.089,1.025,1.138,0.947,0.913,1.019,0.846,0.869,0.969,1.071,0.883,1.187,0.89,0.997,0.965,1.048,0.924,0.863,1.062 +NM_006965,1.094,0.903,1.025,0.924,0.97,0.97,0.916,0.986,0.957,1.135,0.945,0.957,0.946,0.877,0.934,1.061,1.064,0.79,0.904,0.921,0.943,0.99,0.964,1.063,0.958,1.018,1.152,0.964,0.919,0.97,1.053,1.018,1.173,1.086,0.944,0.876,1.056,1.006,1.183,0.889,1.0,1.052,1.204,0.84,0.947,1.011,1.056,1.042,1.015,0.96,0.981,0.984,0.926,1.794 +NM_006973,0.779,1.383,1.168,0.71,0.859,1.047,0.722,0.77,1.052,0.893,0.966,1.044,1.008,0.676,0.835,0.857,0.979,0.781,0.946,1.094,0.715,0.802,1.107,0.987,0.887,1.234,1.049,0.957,0.539,1.026,0.94,1.727,3.061,1.561,0.523,0.945,0.897,1.11,1.12,0.762,1.134,1.268,0.74,1.288,1.137,0.885,0.774,0.79,0.7,0.826,0.942,1.012,1.046,2.644 +NM_006977,1.045,0.988,0.91,0.9,0.956,1.118,0.859,0.809,1.027,0.988,0.962,0.999,0.98,0.912,0.869,1.016,1.108,0.887,1.058,0.962,1.067,1.05,0.885,1.007,0.977,1.044,1.07,0.897,0.54,1.071,0.995,1.036,1.125,0.954,0.878,1.028,0.924,0.933,1.093,0.993,1.024,0.943,1.033,1.271,0.951,1.056,0.978,0.899,0.799,0.935,0.972,1.006,1.073,1.189 +NM_006978,0.597,1.126,1.036,0.578,0.831,1.299,0.599,0.466,1.125,1.016,1.068,0.874,0.57,0.659,0.601,1.641,0.829,1.038,1.209,1.087,0.523,0.835,1.306,0.954,0.599,0.787,0.99,0.759,0.383,1.252,0.875,1.432,1.786,1.156,0.375,1.231,0.762,1.069,1.185,0.984,0.964,1.168,0.622,1.14,0.915,0.917,1.244,0.835,0.911,0.726,0.943,1.037,0.824,1.341 +NM_006979,0.389,1.337,0.583,0.757,0.539,1.692,1.137,0.403,0.617,0.562,1.175,0.464,0.443,0.389,0.807,1.857,0.514,1.224,0.634,1.373,0.341,0.554,2.159,0.711,0.874,0.515,0.759,0.488,0.768,2.086,0.527,1.924,1.501,1.502,0.306,1.226,1.495,0.562,2.176,1.212,0.631,1.527,0.926,0.947,0.684,1.673,0.866,0.519,1.599,0.558,1.75,1.014,0.599,1.723 +NM_006982,1.087,0.846,1.055,0.936,0.97,0.956,0.888,0.954,0.95,1.065,1.097,0.986,0.959,0.711,1.01,0.969,1.214,0.93,1.083,1.151,1.088,1.032,1.096,0.98,0.906,0.957,1.1,0.994,1.333,1.019,1.103,0.891,0.911,0.937,1.086,1.15,0.953,1.064,0.932,1.076,0.881,0.959,0.782,1.036,1.123,1.03,0.939,1.016,0.935,0.956,1.147,1.09,1.119,1.202 +NM_006984,4.024,1.733,1.768,3.597,2.11,1.804,2.219,3.049,12.655000000000001,2.2670000000000003,3.415,1.78,6.06,2.5789999999999997,2.54,1.6909999999999998,1.4569999999999999,2.7439999999999998,1.7759999999999998,6.0280000000000005,2.013,3.37,1.806,1.875,1.5710000000000002,3.9930000000000003,1.851,3.812,2.052,1.9869999999999999,5.348,1.794,1.722,5.2059999999999995,7.701,1.76,1.5899999999999999,3.374,1.8519999999999999,1.5339999999999998,1.8319999999999999,16.56,1.494,1.698,2.176,1.792,2.051,3.4459999999999997,1.641,1.619,3.4699999999999998,2.398,1.596,2.411 +NM_006985,1.051,0.864,1.496,1.015,0.651,1.081,0.454,0.402,1.752,0.682,0.582,0.618,0.51,1.091,1.333,0.689,1.473,0.443,0.637,1.627,0.591,1.1,0.821,1.644,0.932,1.011,2.376,0.676,0.326,1.081,1.137,3.427,3.341,1.275,0.348,0.852,0.452,0.752,1.033,2.669,0.99,0.944,0.757,0.778,0.626,0.532,0.712,0.6,0.443,0.734,0.734,0.562,1.042,2.58 +NM_006986,0.447,1.628,0.584,0.996,0.438,1.547,0.784,0.249,0.629,0.577,1.417,0.323,0.243,0.426,0.695,1.236,0.492,1.16,0.871,1.243,0.365,0.447,1.674,0.489,1.135,0.633,0.812,0.395,0.626,1.879,0.523,2.648,0.625,2.189,0.143,0.692,1.203,0.623,1.851,0.636,0.527,1.798,0.232,0.731,0.635,1.378,0.858,0.45,0.604,0.597,1.946,0.741,0.797,1.441 +NM_006987,0.581,0.992,1.231,1.001,0.644,1.565,0.984,0.312,0.807,0.53,0.955,0.709,0.427,0.414,0.808,1.141,0.9,0.953,0.776,1.862,0.373,0.416,1.509,0.415,0.873,0.589,0.731,0.773,0.712,2.588,0.535,0.779,0.539,1.541,0.243,1.021,1.238,0.629,1.293,0.868,1.112,1.434,1.419,0.952,0.557,1.208,0.706,0.637,1.088,0.819,1.595,0.765,0.518,0.896 +NM_006988,0.917,0.928,0.961,0.941,0.967,0.989,1.057,1.12,0.976,1.147,1.085,0.979,1.153,1.049,0.877,1.025,0.988,0.897,0.929,1.009,0.902,1.127,0.978,1.141,1.076,1.126,1.053,0.956,1.252,1.175,1.069,1.012,1.243,1.047,1.031,0.976,1.083,1.108,0.985,1.025,1.028,0.93,0.941,1.003,1.019,1.065,0.984,0.977,1.1,1.118,1.114,1.093,0.864,1.003 +NM_006990,1.182,1.0,1.01,0.914,1.009,0.885,0.968,0.976,1.082,1.06,1.051,0.977,1.034,1.373,0.888,1.046,1.013,0.946,1.01,1.164,1.132,0.978,0.889,1.018,0.898,1.127,1.163,1.05,0.95,0.936,0.956,0.944,1.164,0.949,1.411,0.998,0.912,1.108,0.956,1.003,1.016,0.98,0.842,1.017,1.094,0.835,1.112,1.132,0.99,1.036,0.911,1.046,1.008,0.965 +NM_006991,0.952,0.927,1.044,0.817,0.984,1.054,0.922,1.158,0.956,0.862,0.982,1.093,0.948,0.832,0.94,1.001,1.009,0.829,1.16,0.919,0.963,0.951,0.939,1.069,0.944,1.025,1.14,1.089,0.826,0.991,1.24,1.01,1.033,1.208,1.169,0.898,1.004,1.005,0.894,1.212,1.032,1.042,0.786,0.918,1.108,0.967,1.099,0.865,0.883,0.994,0.991,0.938,1.039,1.127 +NM_006992,0.696,1.08,0.953,0.717,0.829,0.902,0.74,0.775,0.969,1.173,0.953,0.823,0.736,0.685,0.709,1.134,0.891,1.001,0.9,1.389,0.689,0.979,1.217,0.791,0.944,0.941,1.107,1.109,0.635,1.1,0.715,1.894,1.672,1.36,0.586,1.016,0.787,0.926,1.106,1.953,1.06,1.195,0.886,0.899,1.029,0.87,1.16,0.726,0.704,0.817,1.115,0.924,1.157,1.024 +NM_006993,0.941,1.163,0.913,0.608,0.984,0.819,0.478,0.668,1.197,1.284,0.918,1.68,0.89,0.698,0.804,1.147,0.879,1.026,1.453,0.61,0.737,0.905,1.521,1.904,0.53,0.887,1.922,1.051,0.344,0.745,0.955,2.027,3.389,1.077,0.234,1.578,0.897,1.037,1.741,0.867,1.252,0.985,0.543,2.236,1.165,0.545,1.378,0.816,1.008,0.864,0.897,1.095,1.473,1.433 +NM_006995,0.889,1.128,0.924,1.053,1.051,0.97,0.905,1.032,0.886,1.047,0.806,1.021,1.118,1.055,1.404,0.999,0.892,1.088,1.07,1.204,0.928,1.057,0.963,1.032,1.001,1.041,0.994,0.908,0.654,0.996,0.888,1.053,0.762,0.903,0.972,0.975,1.094,0.972,1.017,1.02,1.038,0.956,0.972,0.902,1.006,1.138,1.02,0.958,0.933,1.02,1.026,1.062,0.954,1.189 +NM_006996,0.791,0.977,0.925,0.884,1.014,1.133,0.981,0.979,1.011,0.995,0.997,1.056,0.935,0.806,1.047,0.98,0.952,0.902,0.828,0.936,0.851,1.021,1.006,0.982,0.923,1.004,1.121,0.896,0.682,0.852,1.036,1.026,1.128,0.941,1.202,0.829,0.972,1.036,1.139,1.018,1.019,0.942,0.831,0.835,1.092,1.075,1.016,0.998,1.067,1.095,0.957,0.863,0.899,1.057 +NM_006997,0.691,0.894,1.318,0.671,1.049,1.171,0.464,0.419,1.188,0.788,1.075,0.71,0.399,0.853,1.003,0.997,0.8,0.871,1.073,1.596,0.672,0.695,1.067,0.53,0.532,0.704,0.966,0.746,0.499,1.266,0.878,0.806,1.095,1.303,0.271,1.938,1.025,0.992,1.117,0.523,1.085,1.394,1.026,1.082,0.784,1.13,0.952,0.76,0.897,0.752,1.193,0.708,0.768,1.223 +NM_006998,0.884,0.951,0.939,1.04,0.897,1.388,0.972,1.061,0.955,0.948,1.589,0.919,0.894,0.906,1.018,0.955,0.872,0.772,0.928,1.856,0.894,0.895,1.257,0.85,1.262,0.924,0.883,0.94,1.034,1.082,0.807,0.959,0.943,2.39,0.865,0.898,1.195,0.822,0.985,0.775,0.871,1.085,1.319,1.015,0.873,1.826,1.362,0.92,1.278,0.903,1.17,0.797,1.057,1.376 +NM_006999,0.921,0.886,1.183,0.944,1.003,0.944,0.715,0.866,1.131,1.041,0.99,0.969,0.824,0.808,1.056,1.065,0.861,0.844,0.924,1.124,0.838,0.911,1.088,1.264,0.803,0.968,1.291,0.957,0.654,1.155,0.979,1.568,2.2,0.939,0.586,1.034,0.848,0.892,1.061,1.365,1.041,1.074,0.962,1.254,1.054,1.041,0.941,0.824,0.889,0.983,0.961,1.217,1.046,1.82 +NM_007000,8.662,0.608,22.44,1.612,5.465,0.642,0.571,19.37,31.49,12.85,0.645,9.127,5.756,5.233,9.407,1.263,1.003,12.74,4.94,0.588,1.602,17.12,0.602,11.78,0.606,15.76,1.27,16.53,0.548,0.609,20.84,0.639,3.387,0.573,16.11,0.579,0.59,6.456,0.721,0.581,13.24,0.569,0.598,0.529,2.499,0.564,1.606,7.605,0.6,10.26,4.21,0.558,2.324,0.523 +NM_007001,0.557,1.061,0.791,1.019,0.596,1.774,0.971,0.473,0.593,0.482,1.879,0.572,0.562,0.53,1.012,1.938,0.604,1.196,0.651,1.498,0.463,0.553,1.719,0.553,0.842,0.627,0.586,0.598,0.934,1.58,0.553,1.358,0.988,1.772,0.461,0.714,1.706,0.562,1.772,0.965,0.641,1.908,1.141,1.355,0.615,1.417,1.06,0.62,1.574,0.51,1.201,0.644,0.579,1.357 +NM_007003,0.999,0.931,0.944,1.052,1.002,0.856,1.078,0.948,0.918,0.978,0.857,0.971,0.991,1.039,0.95,1.087,1.092,1.004,0.899,1.069,0.99,1.04,0.978,0.904,1.074,0.953,0.931,0.956,0.856,0.952,1.139,0.879,1.007,1.063,1.061,1.023,0.904,0.919,0.912,1.193,0.999,0.977,0.982,0.881,1.061,1.01,1.123,0.951,0.923,0.9,0.951,0.958,1.059,1.015 +NM_007005,0.857,1.028,1.237,0.945,0.896,1.318,0.971,0.741,1.263,1.091,1.128,0.813,0.85,0.961,1.136,1.047,0.983,0.882,1.103,1.099,0.881,0.732,1.15,1.01,0.925,0.835,1.238,0.938,0.703,1.088,1.055,1.421,0.948,1.528,0.693,0.588,1.002,0.769,1.023,0.816,1.15,1.191,0.616,1.105,1.168,0.94,0.833,0.862,0.769,0.852,1.036,0.866,1.465,0.739 +NM_007006,0.575,1.078,1.138,0.593,1.187,1.123,0.695,0.882,1.512,1.079,0.861,1.199,0.773,0.659,0.919,1.448,0.868,1.092,1.116,1.016,0.369,1.195,1.094,1.428,0.458,0.877,1.149,1.286,0.526,0.985,1.06,0.942,4.078,1.163,0.881,0.86,1.068,1.07,1.581,0.763,1.207,0.991,0.659,1.1,1.217,0.992,1.343,1.053,0.949,0.741,0.98,0.724,0.663,2.635 +NM_007007,0.875,0.916,0.929,0.901,0.902,1.01,0.884,0.948,0.964,0.999,0.975,0.947,0.996,0.889,0.91,1.159,0.883,0.871,1.094,1.001,0.957,0.904,1.383,0.968,0.892,1.029,1.03,1.076,1.139,0.968,1.155,0.943,1.537,1.191,1.059,1.093,1.05,0.93,0.997,1.062,0.887,0.897,0.903,0.938,0.945,1.066,0.859,0.816,1.201,0.919,0.882,1.006,0.99,1.083 +NM_007008,0.854,0.651,1.196,0.759,0.92,1.137,0.582,0.592,1.271,0.889,1.645,0.67,0.689,0.836,1.12,1.682,0.593,1.176,1.386,1.003,0.694,1.009,1.487,1.019,0.501,1.194,1.126,0.989,0.421,1.118,0.955,0.896,1.838,1.405,0.763,0.801,1.832,1.166,1.189,0.915,0.869,1.057,0.672,0.941,0.976,1.328,0.926,1.028,0.826,0.838,1.357,1.029,1.105,1.456 +NM_007009,0.947,0.96,0.992,1.091,1.141,1.115,0.943,1.137,0.837,1.001,1.057,0.93,1.079,0.88,1.203,0.698,1.017,0.945,1.047,0.964,1.054,1.038,1.14,1.007,1.179,0.941,0.938,1.163,0.857,0.913,0.96,1.107,0.88,0.925,0.907,1.123,1.005,0.853,0.988,0.956,0.845,1.22,1.142,1.023,0.963,0.893,1.088,0.969,1.046,0.902,1.006,1.04,0.869,1.056 +NM_007010,0.694,0.949,1.229,0.654,1.297,1.122,0.685,1.36,1.477,1.191,0.826,1.226,0.84,0.67,1.09,1.614,1.003,0.993,0.881,0.997,0.56,1.409,1.173,1.365,0.618,0.727,1.335,1.077,0.718,0.972,1.387,1.266,1.954,0.981,0.92,0.792,0.84,1.332,1.374,1.028,1.346,0.896,0.613,0.98,1.127,0.708,1.167,1.062,1.202,0.784,1.059,0.824,0.707,1.594 +NM_007011,0.895,1.052,1.212,1.1,1.023,0.934,1.097,0.994,0.919,0.996,0.927,1.089,1.006,1.157,1.199,1.006,0.86,0.839,0.955,0.832,0.987,0.941,0.942,1.057,0.964,1.067,1.043,1.047,1.103,1.095,0.975,1.007,0.925,0.981,1.001,0.918,0.974,1.029,1.146,1.051,1.052,1.261,1.08,1.175,1.034,1.119,0.897,1.058,1.053,0.882,0.963,0.897,1.039,0.978 +NM_007013,0.425,1.318,1.003,0.484,0.798,1.042,0.893,0.634,1.217,0.797,0.946,1.013,0.533,0.544,0.938,1.204,0.626,0.821,0.619,1.274,0.283,0.897,1.115,1.246,0.711,0.397,1.194,0.904,0.508,1.63,0.804,1.433,1.674,1.992,0.264,0.928,0.965,0.912,1.083,1.857,0.928,1.464,0.539,1.069,0.696,1.336,1.031,0.472,1.145,0.511,1.19,0.637,0.598,1.079 +NM_007015,1.089,0.873,0.911,0.883,1.018,1.013,0.919,0.977,1.036,1.036,0.923,0.969,0.956,1.101,1.432,0.987,1.011,0.961,0.921,0.999,0.947,1.0,1.014,0.896,0.963,0.994,1.084,0.979,0.982,0.957,1.046,0.936,1.005,1.07,1.011,1.051,0.961,0.952,0.953,1.037,0.933,1.229,1.01,1.017,0.976,1.09,1.065,1.139,1.134,0.96,0.911,0.956,0.916,0.866 +NM_007017,1.025,0.998,0.945,0.992,0.915,0.954,1.064,1.063,0.865,0.968,0.997,0.937,1.05,1.054,0.864,1.075,0.996,1.188,1.064,1.031,1.002,0.982,0.972,0.906,0.942,1.026,0.972,1.012,0.928,0.885,0.992,0.996,0.874,1.066,0.89,0.981,1.019,0.92,1.014,1.143,0.917,0.946,0.994,1.184,1.042,0.983,1.028,0.959,0.956,0.907,0.941,0.962,0.982,1.229 +NM_007018,0.93,0.944,1.034,0.996,0.825,1.232,1.02,0.895,1.013,0.991,1.011,0.883,0.943,0.974,1.155,1.078,0.949,0.867,0.795,1.246,0.925,0.922,0.983,0.916,1.154,0.899,1.085,0.946,1.089,1.025,0.914,1.159,1.365,1.153,0.854,1.07,0.905,0.897,0.979,0.931,1.068,1.139,0.701,0.959,0.789,1.134,1.014,0.895,0.888,0.93,0.963,0.867,0.909,1.569 +NM_007022,0.471,1.272,0.698,1.016,0.583,1.411,0.911,0.394,0.64,0.67,1.368,0.507,0.448,0.434,0.797,1.575,0.679,1.071,1.003,1.171,0.485,0.561,1.523,0.767,0.842,0.577,0.803,0.494,0.784,2.515,0.521,1.075,0.748,1.918,0.319,1.477,1.504,0.517,1.711,0.954,0.696,1.35,1.091,1.053,0.681,1.473,0.967,0.58,1.388,0.577,1.636,1.15,0.699,1.535 +NM_007023,0.86,1.102,1.072,1.016,0.953,0.874,0.914,1.004,0.943,1.126,0.961,0.881,1.136,0.977,1.276,0.982,0.996,1.039,0.912,1.081,1.012,0.995,1.054,1.039,1.088,1.007,1.04,1.097,1.078,1.104,0.973,0.974,0.909,1.238,0.974,1.238,0.934,0.997,1.101,1.034,0.925,1.099,1.343,0.909,0.933,0.971,0.928,1.001,1.284,0.979,0.997,0.9,0.889,0.945 +NM_007024,0.409,1.531,1.144,0.52,0.958,1.249,0.745,0.513,1.145,1.113,0.744,0.71,0.547,0.582,1.013,1.337,0.971,1.129,0.813,1.454,0.43,0.762,1.366,0.859,0.474,0.588,1.058,0.874,0.635,1.738,0.885,1.451,1.11,1.303,0.433,0.767,1.082,1.055,1.299,0.855,1.015,1.356,1.014,0.707,1.0,1.12,1.13,0.638,1.03,0.63,1.124,0.702,0.701,1.517 +NM_007027,0.86,0.873,0.954,0.971,0.935,0.91,0.925,0.691,1.272,1.0,1.018,0.903,0.811,0.823,0.823,0.954,0.949,0.839,0.992,0.949,0.847,0.809,1.139,1.228,0.923,0.816,1.218,0.942,1.0,1.294,1.006,1.729,2.733,1.126,0.639,1.047,1.012,0.846,1.497,1.007,1.048,0.926,0.88,1.62,0.888,1.221,1.017,0.855,1.281,0.887,1.09,0.95,1.059,2.003 +NM_007028,0.959,0.912,0.983,1.019,0.985,1.245,1.013,1.016,0.888,1.039,1.091,0.95,1.014,1.128,1.102,1.034,0.959,1.06,0.936,1.103,0.934,0.982,1.359,0.984,0.939,1.054,0.976,1.021,1.17,1.245,0.863,1.09,1.103,1.082,0.986,1.157,0.998,0.964,1.669,0.989,0.808,0.981,0.967,0.919,0.904,1.396,1.237,0.941,1.206,0.877,1.116,0.97,0.92,1.141 +NM_007029,0.985,0.993,0.841,1.262,0.866,1.712,0.921,0.954,1.019,0.961,1.591,0.869,0.927,1.35,1.251,1.769,0.946,0.989,0.986,1.239,0.841,0.993,1.772,0.943,1.21,0.972,0.798,0.847,0.873,1.442,0.977,1.651,0.935,1.3,0.945,1.211,1.379,0.915,1.054,0.994,0.936,1.634,0.727,0.779,0.949,1.943,0.801,0.834,1.062,0.987,1.091,0.865,0.984,0.916 +NM_007030,1.095,1.06,0.964,1.059,1.016,0.979,0.883,0.874,0.986,1.057,0.996,0.94,0.866,1.056,0.936,1.101,0.993,1.07,0.967,1.062,1.109,0.969,0.95,0.87,0.938,0.919,1.08,1.018,0.679,0.951,0.909,1.041,1.314,0.904,0.99,0.896,0.955,0.944,1.008,0.95,0.994,0.952,0.877,1.092,1.016,1.078,0.977,0.898,1.017,0.929,0.957,0.826,0.881,1.392 +NM_007031,0.981,0.867,0.866,0.973,0.999,1.164,0.87,0.893,1.32,0.853,0.97,1.008,0.959,1.128,1.129,1.025,0.959,0.94,0.909,0.928,0.895,0.843,1.156,0.867,0.949,1.042,0.964,0.868,0.832,1.118,1.104,1.2,1.251,0.991,0.895,1.215,0.979,0.991,1.013,1.088,0.919,1.018,1.141,1.086,1.107,0.889,0.947,0.987,0.936,1.034,0.956,1.101,0.95,1.254 +NM_007032,0.931,0.989,1.065,0.96,0.873,1.751,0.8,0.698,1.154,0.95,0.853,0.685,0.764,1.061,1.418,1.39,1.365,1.114,1.253,1.203,0.484,1.041,0.835,1.051,0.923,1.214,0.933,0.931,0.819,1.713,1.401,1.025,0.922,2.254,0.736,0.553,1.003,0.911,1.693,0.615,0.974,1.126,0.639,1.299,0.859,0.847,0.622,1.241,0.566,0.736,1.098,0.516,1.042,0.947 +NM_007033,0.807,1.191,1.103,0.782,1.022,1.158,0.595,0.581,1.181,0.892,1.375,0.821,0.841,0.614,0.937,1.655,0.921,1.12,1.341,1.0,0.386,0.833,1.186,1.106,0.562,0.967,1.017,1.022,0.45,1.18,1.057,0.833,1.372,1.22,0.854,1.017,1.374,0.88,1.539,0.869,1.166,0.959,0.71,1.164,1.103,1.28,1.153,1.168,1.202,0.822,1.085,0.797,0.842,1.026 +NM_007034,0.885,1.031,1.11,1.097,1.11,0.88,0.902,0.893,1.156,1.048,0.997,0.912,0.908,1.081,1.229,1.048,0.867,1.067,1.207,1.014,0.92,1.022,0.91,0.968,0.855,0.948,0.973,1.031,0.733,0.883,1.134,0.988,1.446,1.122,0.788,0.87,1.019,0.821,0.947,0.96,0.976,0.922,0.868,1.028,0.966,1.251,1.123,0.872,1.107,0.863,1.015,0.987,1.104,1.172 +NM_007035,1.201,0.948,0.986,1.14,0.957,0.917,1.226,0.824,1.0,0.958,0.979,0.974,0.994,1.113,0.995,0.866,0.993,1.159,0.769,0.95,1.043,1.009,1.011,1.068,0.971,0.976,0.991,0.999,1.335,1.019,1.046,0.958,0.988,0.893,0.953,1.054,0.934,0.929,1.051,1.068,0.959,0.99,0.848,1.065,1.026,0.836,1.0,0.979,1.013,1.076,0.941,1.117,1.081,1.108 +NM_007036,1.057,0.883,0.925,1.077,0.907,0.974,1.027,0.962,0.927,1.082,1.05,0.922,1.035,1.026,0.848,0.845,0.966,0.866,0.998,0.968,0.945,0.993,0.97,0.978,1.045,0.95,0.993,1.052,0.823,1.049,1.03,1.736,1.331,0.879,1.072,1.108,0.857,0.734,1.019,1.553,1.027,0.832,1.251,1.036,1.002,1.034,0.878,0.97,1.044,0.975,1.007,1.234,1.121,0.822 +NM_007037,1.084,1.063,0.965,0.879,0.952,0.989,1.174,0.958,0.954,1.083,1.009,0.959,1.025,1.0,0.934,1.042,1.019,1.042,0.992,1.0,0.777,1.054,1.009,0.97,1.03,1.109,1.084,1.082,0.939,1.036,1.056,0.916,0.896,1.146,1.145,0.998,0.916,1.001,1.168,0.989,1.101,1.134,0.939,1.039,1.12,0.967,0.945,1.045,0.879,0.997,0.981,0.868,1.065,0.999 +NM_007038,0.842,0.957,0.784,0.986,0.93,1.184,0.837,0.87,1.013,0.886,1.435,0.869,0.844,0.967,1.311,1.14,0.767,0.776,0.935,1.093,0.851,0.794,1.223,0.79,1.087,0.758,0.906,0.936,0.726,1.578,0.977,1.366,1.148,1.968,0.76,0.994,1.028,0.86,1.254,2.08,1.022,1.437,1.019,0.809,1.062,1.081,0.909,0.801,1.055,0.746,1.037,1.431,0.849,1.055 +NM_007039,0.855,0.98,1.101,0.948,1.03,0.952,0.797,0.953,1.315,1.012,0.838,1.051,0.957,1.091,0.917,0.846,1.127,0.88,1.111,1.018,0.888,1.12,0.975,1.518,0.814,1.185,1.018,1.583,0.818,0.975,1.157,1.139,1.125,1.125,1.081,0.961,0.733,1.21,1.015,0.982,1.072,0.901,0.616,1.003,1.179,1.006,1.05,1.075,0.724,0.854,0.957,0.835,0.866,0.754 +NM_007041,1.089,1.029,1.111,0.922,1.017,0.895,0.802,0.988,1.16,1.093,1.122,1.04,0.868,1.049,1.147,0.975,1.05,1.007,1.008,0.783,1.029,0.964,0.916,1.127,0.83,1.003,1.244,1.223,0.983,0.875,1.011,1.229,1.157,0.951,0.991,1.185,1.016,1.189,1.022,0.931,0.918,0.993,1.08,1.105,1.082,0.953,1.001,0.929,1.009,1.06,0.974,1.046,1.287,0.975 +NM_007042,0.931,0.896,1.168,0.808,0.924,0.854,0.827,0.619,1.046,1.176,1.166,0.93,0.784,0.883,0.987,1.39,1.087,0.886,1.156,0.938,0.649,0.912,1.112,1.052,0.861,0.954,1.171,1.006,0.658,1.138,1.092,0.965,1.163,0.983,0.628,0.925,1.009,0.975,1.221,0.768,1.107,1.067,1.0,0.973,1.051,1.002,0.893,0.841,1.006,0.91,1.056,0.778,1.126,1.949 +NM_007043,0.99,0.903,1.115,0.958,0.956,0.933,1.061,1.031,0.971,0.995,0.979,0.912,0.925,1.188,0.965,1.124,1.049,1.01,0.998,1.074,1.025,1.052,1.028,0.945,1.111,0.932,1.012,0.883,0.784,1.046,1.106,1.002,1.263,1.107,1.002,0.902,0.911,0.834,0.919,0.933,0.976,1.011,0.958,0.868,1.085,1.015,0.816,0.834,1.072,0.983,0.926,1.025,1.068,1.133 +NM_007044,0.738,0.951,1.424,0.682,0.962,1.149,0.767,0.631,1.144,1.044,0.991,0.827,0.785,0.972,1.093,1.537,0.928,0.887,1.487,0.838,0.725,1.135,1.1,1.18,0.574,0.832,1.498,0.942,0.498,1.001,1.077,1.138,1.871,1.263,0.467,0.714,1.01,0.976,1.039,0.802,1.04,0.999,0.864,0.967,1.042,0.866,1.218,0.91,1.008,0.827,0.953,0.784,1.056,1.296 +NM_007046,0.507,1.573,0.516,0.792,0.59,1.116,1.066,0.535,0.494,0.519,0.795,0.467,0.561,0.591,1.061,1.077,0.536,0.706,0.368,1.136,0.524,0.473,2.157,0.647,0.99,0.534,0.414,0.868,0.655,3.527,0.526,15.54,1.512,2.763,0.527,0.749,1.101,0.656,2.269,3.396,1.01,2.499,0.961,0.581,0.535,1.687,0.736,0.497,0.808,0.575,1.691,1.499,0.508,1.397 +NM_007048,0.753,1.262,0.969,0.864,0.702,1.661,1.552,0.666,0.717,0.637,1.238,0.635,0.709,0.558,1.087,1.035,0.787,0.904,0.772,1.107,0.627,0.642,1.014,0.761,1.176,0.683,1.006,0.785,0.753,1.292,0.671,1.555,0.793,1.254,0.616,0.863,1.269,0.685,1.134,0.859,0.727,1.629,0.834,1.015,0.77,1.063,0.762,0.655,0.789,0.804,1.257,0.854,0.873,2.587 +NM_007049,0.819,1.002,0.89,1.031,0.679,1.169,0.997,0.679,0.965,0.637,1.139,0.697,0.759,0.798,0.99,1.023,0.898,0.818,0.811,1.076,0.829,0.79,1.159,0.745,0.931,0.76,1.044,0.757,0.898,1.08,0.795,1.528,0.876,1.19,0.662,0.842,0.98,0.712,1.244,1.541,0.846,1.168,0.755,1.045,0.802,0.942,1.091,0.682,1.134,0.655,1.007,0.902,0.859,1.915 +NM_007050,1.029,1.013,1.11,1.054,0.942,0.98,1.119,0.925,0.97,0.992,0.955,0.893,0.939,1.002,0.868,1.001,1.011,0.99,1.011,1.125,1.033,0.775,0.98,0.89,1.067,1.081,0.999,0.962,0.918,1.035,1.021,0.978,0.891,1.328,1.107,0.877,1.024,1.129,0.941,0.896,1.065,1.128,0.98,0.949,1.106,1.162,0.946,0.94,0.985,0.92,0.982,1.053,1.1,1.059 +NM_007051,0.937,1.013,1.096,0.905,1.0,0.838,0.839,0.665,1.258,1.238,0.899,0.747,0.69,1.051,1.09,1.08,0.875,0.984,1.03,0.981,0.828,0.63,1.192,0.893,0.768,0.874,1.043,0.904,0.705,1.016,1.037,1.335,2.737,1.194,0.728,0.868,0.831,0.965,1.354,0.751,1.208,0.968,1.074,1.268,1.15,0.989,0.908,0.793,1.065,0.952,0.919,0.876,1.128,1.367 +NM_007052,0.911,1.026,0.808,0.951,0.928,0.847,0.865,0.819,0.977,1.057,0.997,0.948,1.07,1.113,1.044,1.031,0.914,1.0,1.144,0.91,1.094,1.027,1.151,1.079,1.02,0.949,0.94,1.015,0.915,1.026,1.009,0.929,1.168,1.001,1.052,1.117,0.908,1.008,0.901,0.988,0.941,0.881,1.06,1.435,0.997,1.001,1.041,1.053,0.937,0.998,1.047,0.984,1.0,1.158 +NM_007053,0.953,1.088,1.35,0.835,1.062,1.001,1.221,1.018,0.886,1.016,0.825,1.003,1.064,0.818,0.928,0.921,0.982,1.032,1.038,0.991,0.98,1.024,0.947,0.985,1.071,0.927,0.905,1.022,0.889,0.985,1.063,0.962,0.852,1.141,0.792,0.88,0.999,1.035,1.026,0.941,1.001,1.318,1.069,0.928,1.153,0.994,1.132,0.94,0.949,1.133,0.823,1.253,1.11,1.099 +NM_007054,1.078,1.164,1.047,1.058,1.012,0.956,1.067,0.998,0.944,0.871,0.973,1.081,0.922,0.969,0.859,1.036,0.992,1.009,1.021,1.05,1.071,0.937,1.161,0.977,1.099,1.019,0.743,1.021,0.993,1.146,0.99,0.956,1.318,0.994,0.967,1.044,1.041,1.01,1.092,1.162,0.977,0.887,0.936,1.084,0.984,1.056,0.982,1.079,0.857,0.915,1.054,1.011,1.025,1.043 +NM_007055,1.144,1.018,0.896,1.208,1.018,1.035,1.073,0.987,1.028,0.952,0.917,1.075,1.023,1.142,1.065,1.075,0.938,1.069,0.967,0.976,1.112,1.067,0.917,0.976,0.935,0.97,1.128,1.095,1.032,1.098,0.976,1.084,1.148,0.998,0.841,0.89,1.061,1.075,1.062,1.02,0.95,0.968,1.036,1.015,1.02,0.859,0.827,1.067,1.012,0.956,1.038,0.787,0.919,0.977 +NM_007056,0.935,1.021,0.957,1.001,0.878,1.057,0.946,0.884,1.103,0.991,0.999,0.892,0.969,0.913,1.175,1.128,1.009,0.919,0.991,1.006,0.908,1.138,0.997,1.027,0.924,0.992,1.143,0.923,1.144,0.943,0.899,1.009,1.238,1.069,0.916,0.993,1.014,1.047,1.209,0.989,0.889,0.973,0.788,1.176,0.887,1.1,1.021,1.09,0.946,0.883,0.953,0.959,0.971,0.988 +NM_007057,0.876,1.06,0.903,1.112,0.942,1.038,0.913,0.711,1.024,1.004,1.061,1.016,0.916,0.691,0.819,1.141,0.837,0.955,0.996,0.927,0.905,0.801,1.315,1.128,0.823,0.783,1.409,0.775,0.652,1.055,0.898,1.122,2.673,0.989,0.699,1.986,0.994,1.039,1.807,0.762,0.924,0.936,0.808,3.291,0.874,1.074,0.98,0.854,1.138,0.983,1.003,0.932,0.888,3.077 +NM_007058,1.03,0.957,0.861,1.075,1.031,0.966,1.058,0.833,1.133,0.895,1.007,1.034,0.884,1.082,0.824,0.883,0.992,0.979,0.814,0.967,1.103,0.983,0.942,0.948,0.951,1.094,0.922,0.996,1.412,0.975,1.033,0.98,0.938,1.058,0.983,0.98,0.905,1.297,0.944,1.071,1.025,1.024,1.367,0.904,1.037,1.178,0.98,0.903,1.059,1.039,1.114,1.117,0.745,1.01 +NM_007061,0.858,1.264,0.785,1.355,0.656,1.475,0.961,0.848,0.762,0.766,0.84,0.528,0.871,0.554,0.658,1.204,0.998,0.954,1.089,0.828,1.04,0.856,1.155,0.752,1.789,0.985,0.883,0.537,0.817,1.141,1.05,0.906,1.786,2.321,1.815,0.755,0.854,0.68,3.875,0.661,0.629,1.014,0.466,1.589,1.002,0.563,0.555,1.181,0.565,1.02,1.065,0.659,1.288,3.074 +NM_007062,0.817,0.799,1.275,0.796,0.91,0.889,0.629,0.47,1.232,1.273,0.879,0.939,0.732,0.697,0.869,1.145,0.888,0.991,1.374,0.901,0.662,0.922,1.272,1.345,0.68,1.086,1.489,0.865,0.526,0.932,0.861,1.165,1.852,1.288,0.318,1.422,1.001,1.165,1.252,0.877,1.265,0.989,0.641,0.896,1.285,0.84,0.894,0.895,0.897,0.996,0.988,1.03,1.126,2.028 +NM_007063,0.823,0.996,1.385,0.775,0.752,1.03,0.709,0.644,0.991,0.676,0.902,0.811,0.712,0.909,1.357,0.83,1.186,0.756,1.189,1.074,0.768,0.683,0.97,0.833,0.899,0.742,1.84,0.858,0.61,1.139,0.83,1.496,1.709,1.171,0.586,0.937,0.901,0.866,0.846,0.91,1.102,0.993,0.959,1.325,0.748,1.01,1.028,0.714,0.738,0.9,1.004,0.767,1.031,2.043 +NM_007064,0.987,1.051,0.894,1.214,1.047,1.196,1.043,0.895,0.897,1.103,1.032,1.034,0.989,1.045,0.828,0.855,0.987,0.998,0.948,1.147,0.988,1.017,0.943,1.012,1.043,1.158,0.911,1.018,0.747,0.93,1.22,1.097,0.872,0.967,1.026,1.169,0.899,1.027,1.073,0.987,0.95,1.124,1.042,0.938,0.996,1.092,1.028,0.918,0.996,0.944,0.943,1.065,1.085,1.207 +NM_007065,0.89,0.954,0.937,1.103,0.683,1.28,0.775,0.425,0.769,0.852,1.316,0.692,0.623,0.512,0.821,1.574,1.006,0.931,1.296,0.763,1.008,0.699,1.657,0.942,0.825,1.303,1.062,0.602,0.7,1.291,0.652,0.857,1.389,1.503,0.481,1.133,0.83,0.727,2.338,1.072,0.84,1.056,0.743,2.355,1.026,0.929,0.744,0.857,1.142,1.065,0.994,1.1,1.095,1.185 +NM_007066,0.623,1.089,0.795,0.876,0.607,1.519,0.838,0.715,0.603,0.777,1.483,0.745,0.663,0.558,0.934,1.403,0.657,0.723,0.884,0.93,0.909,0.571,1.785,0.724,1.055,0.675,0.831,0.913,0.809,1.736,0.717,4.02,2.503,2.374,0.528,0.868,0.951,0.892,1.562,1.681,1.07,2.099,0.834,1.269,0.747,0.882,0.834,0.686,0.68,0.643,1.293,1.492,0.901,1.568 +NM_007067,0.814,0.981,1.311,0.667,1.027,0.934,0.666,0.679,1.133,1.063,0.672,0.977,0.773,0.907,0.991,1.077,1.007,0.908,1.287,0.975,0.911,1.169,0.956,1.182,0.642,1.004,1.575,0.986,0.495,0.983,1.033,1.349,1.422,1.207,0.47,0.889,0.805,1.126,0.991,0.777,1.135,1.176,0.665,1.23,1.048,0.687,0.766,0.771,0.725,1.086,0.914,0.814,0.999,1.054 +NM_007069,0.194,1.435,0.214,0.778,0.157,2.939,0.781,0.19,0.194,0.186,2.594,0.159,0.201,0.179,1.327,3.497,0.193,0.886,0.178,1.365,0.194,0.189,1.663,0.221,0.939,0.192,0.221,0.221,0.647,2.729,0.168,2.218,5.642,1.52,0.212,1.863,1.801,0.197,1.907,1.464,0.278,2.353,1.041,3.585,0.209,1.4,1.257,0.197,2.44,0.202,1.918,0.969,0.231,1.268 +NM_007070,0.83,1.011,1.303,0.783,1.202,0.974,0.643,0.855,1.582,1.455,1.185,1.251,0.928,0.829,1.028,1.623,0.963,1.039,1.336,0.999,0.693,1.327,1.323,1.258,0.603,0.83,1.507,1.071,0.479,0.831,1.266,0.945,2.867,0.803,0.535,0.791,0.998,1.207,1.088,0.676,1.269,0.886,0.621,0.773,1.219,0.952,1.062,0.871,1.009,0.944,0.997,0.914,0.945,2.037 +NM_007071,1.083,1.024,1.031,0.884,1.084,0.899,0.953,0.867,0.882,1.151,1.044,0.908,1.085,0.995,0.942,0.98,1.006,1.054,0.917,1.05,0.994,0.978,1.043,0.906,1.139,1.098,1.09,0.894,1.503,0.921,1.071,0.839,1.756,1.175,0.985,0.778,0.95,1.044,1.107,0.922,0.904,0.873,0.837,1.26,1.061,0.983,1.183,0.932,0.864,1.095,0.982,0.926,1.103,0.976 +NM_007072,0.789,1.224,0.897,0.993,0.835,2.147,1.232,0.916,0.827,0.806,1.3,0.883,0.887,0.769,1.808,2.934,0.949,0.936,0.742,1.336,0.852,0.868,1.109,0.813,1.042,0.871,0.911,0.771,1.251,1.16,0.91,0.944,1.722,1.406,0.829,1.044,1.355,0.756,2.29,0.965,0.961,1.353,1.341,0.878,0.821,1.644,1.209,0.849,1.858,0.841,1.538,0.841,0.827,0.879 +NM_007073,1.034,1.039,1.064,1.124,1.067,0.938,1.106,0.975,1.091,0.889,1.07,0.869,1.006,1.248,0.89,1.231,1.037,0.968,1.112,1.108,0.915,1.028,1.176,1.209,0.933,0.997,0.861,1.044,1.134,0.954,0.991,1.045,0.92,0.944,1.013,0.996,1.015,0.849,0.829,0.904,1.001,0.955,0.961,1.014,1.009,0.842,1.075,0.936,1.11,1.083,0.925,1.129,1.114,0.901 +NM_007074,0.75,0.867,1.147,1.108,0.838,0.942,0.938,0.734,0.859,0.809,0.818,0.765,1.0,0.693,1.164,0.895,1.333,0.889,0.975,0.794,0.961,0.959,1.002,1.04,1.005,0.799,1.615,0.689,0.619,1.284,0.845,1.321,1.117,1.104,0.794,0.882,1.039,0.995,1.728,2.355,1.049,1.287,0.805,0.855,1.072,0.878,0.966,0.893,0.993,1.12,0.862,1.075,1.273,1.777 +NM_007075,0.711,1.167,1.072,0.631,0.913,0.99,0.649,0.589,0.925,1.071,0.905,0.697,0.761,0.69,0.851,0.936,1.028,0.925,0.89,1.031,0.616,1.131,0.923,0.867,0.787,0.932,1.108,1.017,0.47,1.001,1.054,1.806,1.282,1.199,1.461,1.039,1.036,0.867,0.974,0.88,1.074,1.2,0.521,0.691,1.112,0.877,1.064,1.048,0.778,0.693,0.924,0.745,0.879,1.581 +NM_007076,0.753,0.999,0.909,0.805,0.724,1.11,1.046,0.722,0.926,0.787,1.092,0.624,0.672,0.867,1.013,1.077,0.805,0.841,0.9,0.906,0.715,0.773,1.026,0.854,1.386,0.674,0.896,0.747,0.881,1.019,0.867,1.259,1.022,1.322,0.688,1.107,1.4,0.904,1.27,1.001,0.689,1.703,0.865,1.05,0.907,0.951,0.701,0.677,1.252,0.735,1.249,1.103,0.814,1.383 +NM_007077,0.967,1.038,0.995,1.055,1.111,0.888,1.061,0.999,0.918,1.09,0.955,1.147,0.968,0.976,0.846,0.953,1.013,0.951,0.878,0.936,0.939,1.08,0.842,1.019,1.042,1.109,1.111,0.99,1.604,1.039,1.116,0.98,1.028,1.176,0.906,0.885,0.933,0.947,0.925,0.952,0.955,0.942,0.973,0.964,0.964,1.044,1.099,1.011,0.864,0.912,0.966,0.958,0.904,1.071 +NM_007079,0.843,1.439,0.897,1.21,0.85,0.931,1.23,0.795,0.889,0.877,0.888,0.808,0.816,0.741,0.994,1.053,0.834,0.768,0.729,0.904,0.791,0.785,1.142,0.899,1.501,0.831,0.817,0.747,0.604,0.942,0.797,3.715,4.478,1.477,0.738,1.427,0.978,0.929,2.987,11.25,1.039,1.217,1.037,2.12,0.946,0.859,1.005,0.891,1.171,0.866,1.169,1.558,0.995,1.921 +NM_007081,0.97,1.021,1.114,0.988,1.007,1.061,0.996,0.822,1.175,0.966,1.039,0.91,0.965,0.745,0.964,0.937,0.984,0.968,0.787,0.967,0.776,0.94,1.114,1.037,0.863,0.872,1.033,1.124,0.682,0.982,0.938,1.781,1.62,1.193,0.903,0.847,1.021,0.944,1.206,0.945,1.215,0.974,0.92,0.87,0.933,0.941,0.918,0.851,1.12,0.774,1.14,0.873,0.918,1.195 +NM_007082,0.748,1.146,1.069,0.866,0.933,1.039,0.787,0.758,1.078,0.933,0.907,1.087,0.919,0.834,0.969,0.963,1.004,1.122,0.893,1.131,0.779,0.94,1.108,1.131,0.738,0.848,1.069,1.119,0.775,1.018,0.996,1.56,1.538,1.18,0.918,0.83,0.828,1.061,1.186,1.017,1.133,1.031,0.77,0.846,0.964,1.029,0.961,0.849,1.17,0.751,1.066,0.726,0.809,1.131 +NM_007083,0.97,1.084,0.87,1.074,0.937,0.998,0.796,0.833,0.954,0.864,0.972,1.019,1.079,0.963,1.137,1.087,0.972,1.14,0.839,0.99,0.881,0.955,1.039,0.947,1.078,0.995,1.101,1.074,0.773,1.188,0.976,1.242,1.043,1.091,0.945,1.142,0.946,1.011,1.008,0.889,1.077,1.087,0.885,1.022,0.95,0.998,1.096,0.991,0.981,0.985,0.939,1.053,0.81,1.113 +NM_007085,0.347,1.129,0.573,0.62,0.478,1.011,1.057,0.411,0.411,0.526,0.694,0.335,0.368,0.343,0.905,1.331,0.564,0.581,0.775,0.814,0.578,0.416,1.868,0.59,0.857,0.414,0.833,0.676,0.343,2.672,0.409,19.72,3.719,2.842,0.37,1.377,0.986,0.78,2.601,5.743,1.072,2.801,0.732,0.737,0.623,0.986,1.031,0.337,0.565,0.532,1.679,4.0,0.951,2.79 +NM_007086,0.919,1.007,1.149,0.95,0.914,1.045,0.823,0.796,1.046,1.172,0.877,0.971,1.076,0.876,0.874,1.044,0.856,0.971,1.166,0.932,0.823,0.974,1.288,1.324,0.739,0.932,1.719,0.923,0.844,1.035,0.889,0.942,1.777,0.988,0.68,1.58,0.988,1.029,1.53,0.961,1.042,0.89,0.85,2.25,1.025,1.054,1.14,0.922,1.094,1.045,1.089,1.103,1.151,1.686 +NM_007088,2.557,0.727,2.401,1.565,3.14,0.779,0.706,5.702,4.5,1.683,0.612,2.537,2.534,3.275,2.203,1.949,2.471,1.205,3.103,0.698,1.489,3.9,0.733,1.617,0.687,3.829,1.151,5.51,0.696,0.768,5.635,0.657,2.343,0.915,5.971,0.814,0.553,5.052,0.847,0.728,2.0,0.842,0.718,1.467,1.827,0.689,1.723,4.627,0.895,1.718,1.038,0.926,1.782,0.678 +NM_007096,1.148,1.005,1.234,1.17,0.994,0.854,0.911,0.947,1.151,0.949,0.981,1.075,0.897,0.891,0.89,0.878,1.076,1.099,1.187,1.185,1.088,0.852,0.947,1.108,0.926,1.155,1.093,0.935,0.928,1.157,1.005,0.909,1.184,0.903,0.992,1.19,0.915,1.057,1.048,1.125,0.986,1.084,1.064,1.11,0.949,1.029,0.949,1.126,0.879,0.924,0.975,1.116,1.013,1.028 +NM_007097,0.937,0.954,0.825,1.225,0.971,1.309,0.949,1.037,0.978,1.078,1.089,1.04,1.046,0.948,0.867,1.171,0.985,1.172,1.05,0.999,0.844,1.127,0.98,1.064,0.959,0.995,0.837,0.953,0.856,1.099,0.934,0.833,1.277,1.278,1.112,1.04,0.919,1.017,0.949,1.005,1.176,1.05,0.989,0.888,0.881,1.023,1.0,1.022,1.001,1.034,0.969,0.892,0.926,0.941 +NM_007098,1.087,0.994,0.979,1.007,0.908,1.017,0.895,1.047,0.997,0.858,1.037,0.929,0.923,1.113,0.845,0.972,1.0,1.024,0.947,1.029,0.931,1.091,1.002,1.061,0.941,0.984,0.876,0.948,0.962,0.865,0.952,1.204,1.021,0.943,1.055,0.957,0.996,1.056,1.301,0.964,1.189,0.938,1.25,0.934,0.918,0.913,0.996,1.008,0.914,0.961,1.004,1.157,0.86,1.012 +NM_007099,0.486,1.192,0.737,0.847,0.533,1.535,0.493,0.382,0.839,0.566,1.444,0.642,0.576,0.548,1.114,1.738,0.521,0.84,0.825,1.02,0.365,0.551,1.812,0.681,0.807,0.533,0.929,0.628,0.403,1.478,0.639,1.199,2.346,2.042,0.141,1.225,1.22,0.645,1.093,0.773,0.821,1.287,0.837,1.544,0.674,1.3,0.816,0.437,1.233,0.507,1.205,0.79,0.72,3.027 +NM_007101,0.863,1.464,0.932,1.021,1.011,1.036,0.969,0.777,0.929,0.751,0.996,0.872,0.893,0.993,1.34,1.023,1.014,0.902,0.999,0.956,0.994,1.01,0.842,0.889,0.921,0.854,1.041,0.993,0.908,1.051,1.016,1.732,0.945,1.339,0.777,0.805,1.18,0.799,0.866,1.197,0.903,1.216,0.73,1.126,1.004,0.996,1.011,0.883,1.021,1.115,0.931,0.995,1.125,1.633 +NM_007102,0.91,0.999,0.933,1.3,0.931,1.351,0.996,0.854,0.821,1.087,2.539,1.014,1.031,0.986,2.421,2.431,0.952,0.979,0.783,2.063,0.895,0.91,1.865,0.859,1.668,0.889,0.954,1.044,1.201,0.973,0.968,1.484,0.821,0.983,1.063,1.406,3.115,0.935,1.0,0.888,0.969,1.278,3.321,0.949,0.903,1.264,1.649,0.907,1.13,0.936,0.986,1.458,0.922,0.959 +NM_007103,0.697,1.096,1.139,0.83,0.956,1.142,0.787,0.289,0.997,1.241,1.003,0.87,0.737,0.456,0.871,1.437,0.852,1.361,1.231,1.136,0.346,0.66,1.56,1.167,0.862,0.864,1.213,0.817,0.458,1.741,0.706,1.593,2.11,1.35,0.0735,1.28,1.409,0.78,1.522,0.673,1.11,1.314,1.353,0.99,1.26,1.232,1.067,0.788,1.701,0.809,1.167,0.783,0.831,1.288 +NM_007106,0.931,1.214,1.826,0.572,1.647,1.735,1.04,1.847,2.04,1.043,0.721,1.14,1.56,0.747,1.134,1.282,0.912,1.443,0.885,1.306,0.353,2.109,0.536,1.199,1.112,0.713,0.945,1.604,1.083,1.661,2.138,1.357,0.717,2.143,1.859,0.33,0.987,1.644,1.892,0.594,1.314,1.08,0.544,0.229,1.348,0.666,0.699,1.775,0.584,0.948,0.876,0.4,0.452,0.807 +NM_007107,0.852,1.122,1.07,1.063,0.907,1.249,0.98,0.943,0.939,0.988,1.064,0.992,0.878,0.883,1.251,1.521,0.985,1.064,0.774,1.246,0.819,0.771,1.315,0.952,1.056,0.791,1.001,0.847,1.161,1.512,0.949,1.628,1.768,1.286,0.752,0.975,0.933,0.957,1.157,0.997,1.14,1.114,0.828,0.991,0.92,0.996,0.89,1.006,1.155,0.932,1.115,0.903,0.954,1.12 +NM_007108,0.777,1.004,0.996,0.855,0.817,1.461,0.726,0.445,1.021,0.945,1.463,0.627,0.727,0.546,0.787,1.693,1.078,1.648,1.424,1.01,0.521,0.944,1.217,0.918,0.661,1.033,0.97,0.892,0.695,1.415,0.809,1.42,1.77,1.658,0.422,0.878,1.383,1.219,1.58,0.721,0.951,1.417,0.613,1.63,0.898,0.79,1.265,1.158,1.019,0.763,1.051,0.83,0.894,1.404 +NM_007109,0.99,0.966,1.06,0.876,0.903,0.956,1.24,0.993,0.959,1.101,0.941,0.971,0.955,0.8,0.944,1.042,1.02,0.949,1.118,0.963,1.0,1.041,1.171,1.089,1.008,0.871,0.942,0.997,0.634,0.886,0.958,0.883,0.922,1.025,1.025,1.008,0.924,1.042,0.95,1.007,1.07,0.895,1.006,1.098,0.973,1.042,0.935,1.173,1.023,1.052,1.07,1.03,0.998,1.021 +NM_007111,0.645,0.804,1.401,0.571,1.054,1.08,0.389,0.55,1.329,1.185,0.854,0.975,0.627,0.774,1.026,2.004,0.846,0.824,1.607,0.66,0.727,0.778,1.187,1.263,0.372,0.832,1.759,1.03,0.351,1.354,1.025,1.196,2.362,1.212,0.157,1.099,0.957,1.206,0.929,0.534,1.308,0.816,0.56,1.711,1.154,0.879,1.103,0.69,0.83,0.922,0.968,0.728,1.253,2.341 +NM_007112,0.922,1.257,1.189,0.806,1.03,1.035,0.97,0.811,1.144,1.246,0.883,0.867,1.006,0.944,0.998,0.926,1.047,0.989,0.847,1.098,0.823,0.99,1.05,0.978,0.913,0.943,0.9,1.002,0.722,1.06,1.088,2.921,0.905,1.118,0.965,1.342,0.989,1.031,1.126,1.188,1.032,1.005,0.904,1.144,1.082,0.97,0.906,0.855,0.901,1.038,1.071,0.992,1.098,1.215 +NM_007113,1.044,0.959,1.089,0.888,0.963,0.892,0.949,0.983,0.893,1.058,1.043,1.042,0.86,1.12,0.965,1.0,1.069,1.027,1.012,0.905,0.926,0.991,0.894,0.981,0.921,0.937,1.109,0.945,0.639,1.074,0.964,0.993,1.099,0.964,1.053,1.001,1.022,1.123,1.033,1.059,1.03,1.06,0.909,0.864,1.038,0.963,1.058,1.082,0.933,1.117,1.012,1.085,0.975,0.909 +NM_007114,0.982,0.994,1.058,0.909,1.088,0.927,0.691,0.802,1.203,1.124,1.006,0.639,0.831,0.939,0.932,1.207,0.859,0.989,1.023,0.889,0.85,0.779,1.159,0.821,0.73,0.888,1.143,1.012,0.764,1.145,1.075,0.852,1.108,1.104,1.33,0.929,1.057,1.037,1.052,0.68,1.179,0.883,0.902,0.85,0.791,1.158,0.902,1.127,1.075,0.788,1.038,0.889,1.076,1.286 +NM_007117,1.111,0.922,0.908,0.924,1.117,0.989,0.988,0.923,1.013,0.939,1.155,1.092,0.92,0.968,0.903,0.896,1.105,0.967,0.914,0.956,0.883,0.998,1.079,0.96,1.0,0.994,0.923,0.986,0.882,1.103,0.871,1.046,0.986,1.046,1.089,0.844,1.001,0.886,1.129,0.971,1.142,0.87,1.305,0.996,1.028,1.137,1.007,1.137,1.009,0.998,1.025,0.862,1.011,1.014 +NM_007118,1.028,0.952,1.208,0.857,0.855,0.949,0.817,0.963,0.8,0.858,1.014,0.918,0.841,0.887,1.062,0.916,1.056,0.95,0.991,0.915,0.934,0.93,1.127,0.926,0.94,0.949,1.086,1.09,0.884,0.911,0.945,1.41,1.44,1.053,0.877,1.159,1.092,1.016,0.907,2.041,1.074,1.034,0.99,1.191,1.037,1.094,0.955,0.886,0.992,0.923,1.116,1.002,0.865,1.199 +NM_007120,1.029,1.037,1.079,1.081,1.0,0.906,1.025,0.878,0.852,0.96,0.903,0.964,0.957,0.902,0.972,0.899,1.057,0.942,0.925,1.068,1.074,0.986,1.125,0.819,0.907,1.058,1.027,0.835,0.954,1.17,0.864,0.893,0.999,1.0,1.09,0.961,1.097,1.138,1.073,1.034,1.102,1.033,0.901,1.112,1.022,0.963,1.005,0.965,1.0,0.887,0.929,0.921,1.072,0.965 +NM_007121,0.968,0.919,1.115,0.872,0.808,1.285,0.615,0.823,0.905,0.709,1.016,1.027,1.085,0.628,0.844,1.291,0.907,0.881,1.125,1.052,0.851,1.03,1.348,1.006,1.004,1.487,1.032,0.735,0.486,0.998,0.882,1.054,1.52,1.533,0.601,0.766,0.876,1.001,1.967,0.944,0.929,1.056,0.634,1.578,0.999,0.732,0.73,1.372,0.638,1.21,0.948,0.862,0.989,1.293 +NM_007122,0.689,1.047,0.996,0.901,0.679,1.491,0.67,0.719,0.765,0.806,1.332,1.146,0.867,0.748,0.793,1.289,0.925,1.026,1.055,1.647,0.677,0.744,1.077,1.041,0.84,0.92,0.94,0.601,0.607,1.064,0.621,1.231,1.005,1.093,0.572,0.996,1.046,0.783,1.384,1.282,0.752,0.867,0.7,1.394,0.815,0.685,1.051,0.867,1.189,0.772,0.927,0.813,0.834,1.689 +NM_007123,1.031,1.056,1.023,0.968,0.948,1.199,0.96,0.861,0.969,1.153,1.035,0.943,1.162,1.196,1.054,0.904,0.959,0.997,1.096,1.185,0.997,0.989,0.92,1.106,1.113,1.032,1.061,1.029,1.285,1.051,1.039,0.997,1.086,1.038,0.809,0.915,0.982,0.966,0.926,0.988,1.024,0.983,1.398,1.164,0.962,0.86,1.016,1.01,0.959,0.935,1.025,1.016,1.066,1.116 +NM_007124,1.029,1.039,1.06,1.152,1.107,1.047,1.029,1.034,1.261,0.863,1.006,0.879,0.998,1.136,0.878,1.216,1.076,1.007,1.069,0.927,1.008,0.899,0.887,1.047,0.966,1.044,1.083,1.045,1.0,0.995,1.04,0.957,1.023,0.88,1.078,0.805,0.853,1.038,1.018,0.94,1.0,0.982,0.939,0.994,1.016,1.014,0.918,0.98,1.054,0.951,0.93,0.905,1.057,1.049 +NM_007125,1.162,0.723,1.699,0.815,0.753,1.178,0.765,0.689,1.535,1.23,1.185,0.717,0.923,0.993,1.294,1.843,1.045,1.182,0.678,0.756,0.871,0.779,1.016,0.736,0.988,1.165,1.718,0.803,0.628,1.181,1.457,0.89,0.996,1.152,0.968,0.739,1.069,1.306,0.912,0.88,1.388,1.015,0.795,0.76,1.178,1.036,0.954,1.235,1.011,1.204,1.117,0.981,0.83,0.913 +NM_007126,0.749,0.712,0.999,0.746,0.805,0.895,0.566,0.332,1.135,1.116,0.718,0.659,0.489,0.537,0.75,1.011,1.141,1.122,1.195,0.729,0.836,1.014,1.065,0.89,0.844,1.323,1.286,0.624,0.501,1.013,0.603,1.241,0.872,0.872,0.419,0.879,0.968,1.095,1.826,0.954,1.001,0.921,0.788,2.324,0.983,1.194,0.978,0.861,1.387,1.137,0.944,1.044,1.057,1.617 +NM_007128,1.079,1.05,0.973,0.936,1.193,1.035,0.875,1.04,0.997,0.979,1.006,0.967,0.916,1.035,0.884,0.939,1.028,1.034,0.897,0.853,0.899,0.986,1.056,0.982,0.997,1.132,1.021,1.03,1.075,1.006,1.051,1.006,0.831,0.962,0.9,0.929,1.119,1.053,1.109,0.893,0.923,0.939,1.026,1.06,1.025,0.96,0.885,0.969,0.895,0.948,1.102,0.96,1.011,1.095 +NM_007129,0.812,1.078,0.957,0.887,1.054,2.271,0.75,0.894,0.761,0.931,2.404,0.95,0.744,0.921,1.59,2.737,0.942,1.191,0.786,2.007,0.782,0.781,2.144,1.121,0.876,0.904,1.045,0.875,0.876,0.776,0.914,0.786,3.47,0.637,0.727,1.194,1.076,1.041,1.169,1.844,0.952,1.205,1.325,2.822,0.953,1.237,1.468,0.921,1.112,1.147,3.254,0.983,0.926,4.607 +NM_007130,2.107,1.9649999999999999,2.026,1.968,1.944,1.9939999999999998,1.818,1.642,1.843,2.092,1.823,2.016,1.903,1.718,2.199,2.104,2.0949999999999998,1.891,2.102,2.068,1.889,1.7389999999999999,1.717,2.006,1.902,1.988,2.033,1.962,2.141,2.037,1.802,2.098,2.141,1.939,1.903,1.876,1.915,2.102,1.9689999999999999,1.9060000000000001,1.9609999999999999,1.886,2.242,2.1470000000000002,2.083,2.056,1.866,1.9489999999999998,2.0229999999999997,1.9569999999999999,1.939,2.0,2.1719999999999997,2.186 +NM_007131,1.064,0.997,0.932,0.955,0.988,1.118,1.135,1.004,0.943,1.062,1.115,1.105,1.004,0.915,1.039,1.146,1.024,1.043,1.031,1.038,1.036,0.972,0.941,1.026,1.061,1.037,0.82,1.044,0.82,0.975,1.226,0.915,1.119,0.96,0.954,1.018,1.096,1.27,1.003,0.958,1.156,0.961,0.96,0.953,0.882,1.074,1.088,0.967,0.994,1.144,0.911,1.005,1.056,1.055 +NM_007135,0.852,0.934,1.043,0.78,1.004,1.055,0.802,0.81,0.962,1.015,0.966,1.093,0.873,0.708,1.1,1.096,1.054,1.053,1.05,1.025,0.835,0.924,0.966,1.079,0.636,0.821,1.109,0.99,0.734,1.125,0.98,1.175,1.457,1.186,0.64,1.061,0.898,1.048,1.03,0.946,1.055,1.128,0.778,0.876,0.961,1.012,1.102,0.873,0.991,0.909,1.083,0.891,0.817,1.398 +NM_007136,0.993,0.933,0.999,0.985,0.935,1.013,1.204,1.119,1.064,1.089,0.948,0.901,0.828,0.969,0.948,1.065,1.029,0.935,1.221,1.04,0.95,1.029,0.933,1.004,0.983,0.987,0.895,0.976,1.133,0.907,0.887,1.023,1.003,0.902,0.91,1.07,0.889,1.083,1.041,0.974,1.048,1.006,0.97,1.028,1.074,1.245,1.09,1.004,1.077,0.961,1.056,0.921,0.961,1.074 +NM_007139,1.1,1.018,1.002,1.0,0.965,1.046,1.046,0.857,1.036,1.131,1.078,1.077,1.024,1.054,0.842,1.004,0.967,0.998,1.089,0.981,0.957,1.057,0.919,1.015,1.122,0.889,0.888,0.992,0.793,1.011,0.952,1.026,0.949,0.863,1.045,0.95,1.178,1.127,0.941,0.934,0.93,0.866,1.048,1.058,0.841,1.074,1.006,0.976,1.084,0.966,0.945,1.002,0.945,1.0 +NM_007144,0.717,1.714,1.004,0.604,0.691,1.373,0.762,0.486,0.886,0.899,1.224,0.69,0.566,0.666,0.982,1.366,0.978,0.851,0.673,1.024,0.588,0.586,1.155,0.8,0.948,0.804,1.027,0.73,0.654,1.856,0.864,5.715,0.896,1.435,0.362,0.909,1.011,0.698,1.577,1.88,0.901,1.499,0.846,2.71,0.805,0.846,1.306,0.58,0.534,0.629,0.945,1.262,0.911,1.147 +NM_007146,0.642,1.179,1.268,0.689,0.758,1.601,1.001,0.808,0.987,0.721,1.072,0.951,0.738,0.74,0.999,1.659,0.555,1.267,0.943,1.197,0.518,1.109,1.986,0.889,0.563,0.503,0.934,0.886,0.64,1.575,0.74,1.643,1.321,2.023,0.394,0.981,1.525,0.937,1.026,1.544,0.92,1.901,0.76,1.49,0.862,1.001,0.888,0.454,1.064,0.588,1.474,1.267,0.679,1.775 +NM_007148,0.911,1.053,0.853,1.039,0.843,0.966,1.015,0.875,1.106,1.034,0.911,0.972,0.961,0.954,1.029,1.071,1.109,0.974,0.876,1.016,0.94,0.939,1.039,0.877,1.025,1.102,0.848,0.967,1.013,1.083,0.959,1.046,0.907,1.062,0.988,0.857,0.913,1.072,1.107,0.979,1.055,0.919,0.886,1.147,1.059,1.044,1.084,1.023,1.047,1.135,0.986,0.94,0.956,0.944 +NM_007149,0.719,0.99,0.997,0.797,0.78,1.499,0.772,0.757,1.023,0.798,1.06,0.977,0.78,0.831,0.931,1.531,0.732,1.008,0.883,1.289,0.768,0.884,1.4,1.019,0.763,0.706,1.222,0.937,0.902,1.082,0.888,1.131,1.718,1.379,0.476,0.771,1.042,0.955,1.109,1.078,0.852,1.265,0.976,1.02,0.894,1.06,0.886,0.882,0.996,0.722,1.047,0.789,0.767,1.78 +NM_007150,2.781,0.154,4.016,1.001,3.782,0.111,0.137,2.621,4.279,3.811,0.198,2.373,2.037,2.105,2.134,1.222,3.449,2.571,4.127,0.369,1.686,2.824,0.24,2.748,0.111,3.944,2.624,3.504,0.123,0.346,4.428,0.223,1.229,0.213,4.49,0.314,0.271,4.511,0.363,0.116,4.045,0.222,0.164,0.459,3.729,0.27,1.82,3.736,0.45,2.8,1.027,1.277,3.056,0.669 +NM_007152,0.791,1.091,0.966,0.977,0.787,1.353,0.718,0.775,0.931,0.925,1.364,0.674,0.786,0.834,0.901,1.539,0.798,0.738,0.806,1.301,0.661,0.817,1.206,0.872,0.814,0.799,1.02,0.826,0.539,1.265,0.95,1.142,1.446,1.269,0.651,1.381,1.405,0.937,1.084,1.194,0.868,1.075,0.827,0.888,0.852,1.098,0.932,0.682,1.007,0.771,1.09,0.846,0.95,1.452 +NM_007153,1.022,1.046,0.964,0.988,1.059,0.971,1.114,1.036,0.971,1.149,0.918,0.793,1.129,1.109,0.959,1.17,0.897,0.844,1.037,0.892,1.236,0.967,1.007,1.081,1.145,0.932,1.1,0.917,1.037,0.931,1.077,0.977,0.824,1.215,0.934,1.188,0.976,0.932,1.087,0.911,1.024,1.002,0.842,0.851,1.151,1.064,0.97,1.052,1.128,0.949,1.048,0.998,0.959,0.974 +NM_007155,1.036,1.059,1.092,0.957,1.166,0.979,1.039,0.893,1.034,1.064,0.966,0.932,0.954,0.968,1.154,1.082,0.92,1.039,1.179,0.939,0.994,1.0,1.025,0.848,1.045,1.142,1.026,0.991,1.476,1.091,0.927,1.058,0.964,0.894,0.987,1.077,1.051,0.929,1.129,0.893,1.0,1.03,1.023,1.148,1.025,0.915,0.985,0.906,0.892,0.954,1.102,0.885,1.024,0.97 +NM_007156,0.946,1.016,1.004,1.002,0.954,0.922,0.974,0.837,0.865,0.925,1.087,0.868,0.85,0.822,0.968,0.982,1.017,1.164,0.949,1.015,0.872,0.883,0.902,1.094,0.945,1.031,1.081,0.947,1.078,0.989,0.984,1.024,1.207,1.158,0.913,0.967,1.05,0.987,0.921,1.069,1.077,1.074,1.071,1.107,0.896,1.016,1.065,0.922,0.835,0.947,0.971,0.908,0.889,1.146 +NM_007158,0.799,1.134,1.104,0.614,0.841,0.933,0.465,0.531,1.057,0.829,1.155,0.814,0.879,0.633,1.0,1.487,0.874,0.857,1.204,1.08,0.561,0.683,1.175,0.83,0.834,1.064,1.259,0.931,0.298,1.272,0.955,1.2,1.497,1.638,0.221,0.641,1.073,0.95,1.534,0.84,1.049,1.454,0.672,0.697,1.015,0.941,0.797,0.938,0.876,0.947,1.099,0.784,1.155,1.425 +NM_007160,0.851,1.141,1.329,0.789,1.026,0.823,0.861,0.844,1.086,1.052,0.887,0.971,0.966,0.805,0.913,1.07,1.191,1.111,1.18,1.232,0.914,1.05,1.029,1.012,0.873,0.974,1.08,1.011,0.989,1.016,1.001,0.931,1.118,0.952,1.138,1.028,0.956,0.992,1.298,0.978,1.124,0.856,2.372,1.369,0.859,0.713,0.858,0.933,1.01,1.193,1.079,0.913,1.163,1.15 +NM_007162,0.91,1.06,0.974,0.97,0.955,1.126,0.884,0.872,0.966,0.935,1.011,0.991,0.911,0.76,1.019,0.996,0.937,1.019,1.13,0.866,1.092,1.051,0.882,0.96,0.98,1.209,1.053,0.802,0.882,1.199,1.018,1.714,1.216,1.312,0.734,1.479,0.972,0.964,1.791,1.414,0.949,0.965,0.889,1.433,1.003,0.824,0.982,1.09,0.729,1.122,0.81,0.988,0.927,0.91 +NM_007163,0.998,1.107,0.936,0.992,1.023,1.013,1.041,0.962,1.053,1.16,1.007,0.985,0.976,0.934,0.963,1.067,0.999,0.94,0.921,1.002,0.911,1.016,1.084,0.983,1.009,1.192,0.866,1.076,1.168,0.837,1.045,0.915,0.957,0.967,1.223,0.991,0.977,1.031,0.947,0.989,1.06,1.054,1.027,1.154,0.994,0.928,1.035,1.068,0.983,1.07,0.951,0.869,0.917,0.967 +NM_007165,1.005,0.948,0.935,0.865,0.943,1.005,1.002,0.935,0.86,0.985,0.969,0.948,0.952,0.803,0.96,1.06,0.857,1.004,0.994,0.942,1.04,0.992,1.101,1.016,1.021,1.108,0.928,0.871,0.766,0.885,1.001,1.034,1.835,1.097,0.897,1.024,0.951,0.971,1.135,1.113,1.046,0.897,0.808,1.014,1.041,0.993,0.933,1.129,1.035,0.99,1.099,0.953,1.016,1.038 +NM_007166,0.962,0.748,1.284,0.906,1.027,0.855,0.645,0.815,1.535,0.938,1.216,0.624,0.915,0.984,1.077,1.24,0.806,0.884,1.112,0.755,0.843,0.555,1.166,0.844,0.685,0.816,1.148,1.181,0.571,1.137,1.361,1.198,1.674,1.076,1.648,0.871,0.955,0.768,1.111,0.997,1.326,0.893,0.793,0.978,0.932,0.971,1.032,0.809,1.182,1.009,0.979,0.919,1.262,1.334 +NM_007167,1.042,0.966,0.871,1.097,0.977,0.936,0.799,0.865,0.888,1.016,1.109,1.012,0.805,1.023,0.965,0.891,0.98,1.153,1.106,1.058,1.057,0.969,1.182,1.012,1.077,1.022,0.983,0.969,1.021,0.894,1.095,1.036,1.123,1.032,0.999,1.05,1.108,1.085,0.935,1.076,0.904,1.02,0.752,1.113,1.053,1.066,0.937,0.991,1.113,1.04,0.899,1.0,0.967,0.988 +NM_007168,0.908,0.995,0.829,0.922,1.056,1.128,2.369,1.049,0.913,0.654,0.752,0.865,0.787,0.927,0.915,1.223,0.762,0.98,0.843,1.25,0.887,0.831,1.265,0.916,1.407,0.791,0.92,0.93,1.034,2.234,1.024,1.069,1.228,1.919,0.872,0.746,1.434,0.699,1.414,0.817,0.838,1.649,1.066,0.741,1.016,0.974,0.98,0.982,1.107,0.878,1.146,0.878,1.043,1.473 +NM_007169,0.962,0.91,0.958,0.992,0.955,0.973,1.123,0.966,0.858,1.142,1.009,0.979,1.2,1.29,1.006,1.041,0.909,1.022,0.746,1.2,1.202,1.181,1.091,1.121,0.966,0.865,0.792,0.991,0.888,1.024,0.963,0.979,1.051,0.965,0.916,1.126,1.01,1.007,1.139,0.981,0.961,1.065,0.864,0.977,1.038,0.857,1.061,0.965,1.012,1.041,1.096,0.985,1.025,0.965 +NM_007170,0.944,0.905,1.287,0.842,1.115,0.977,0.695,0.98,1.191,0.882,0.918,1.043,0.913,1.013,1.14,1.163,1.052,0.885,1.339,0.906,0.995,1.107,0.99,1.128,0.884,1.159,1.183,1.268,0.526,1.057,1.032,1.018,1.136,1.088,0.947,0.836,1.087,1.24,0.904,0.752,1.136,1.071,0.821,0.89,0.962,1.003,0.84,1.049,0.812,1.071,0.99,0.756,0.924,1.632 +NM_007171,0.665,1.648,1.264,0.618,1.013,0.767,0.455,0.414,1.255,0.942,0.947,0.721,0.536,0.74,1.042,1.515,0.782,0.927,1.118,1.461,0.403,0.727,1.683,0.858,0.653,0.784,1.313,0.862,0.416,1.465,0.8,2.694,1.325,1.154,0.236,0.785,1.228,1.081,1.177,0.945,1.102,1.46,0.77,1.054,1.145,1.18,1.321,0.729,0.754,0.803,1.201,1.261,0.766,2.082 +NM_007173,0.364,1.585,0.546,1.217,0.377,1.57,1.054,0.377,0.335,0.463,1.145,0.349,0.357,0.29,0.974,0.865,0.411,1.565,0.507,1.773,0.349,0.348,0.986,0.423,1.32,0.342,0.542,0.371,0.555,2.554,0.292,3.216,8.446,3.571,0.305,0.79,0.966,0.477,2.656,1.773,0.487,1.496,0.452,1.249,0.483,0.82,0.909,0.362,0.458,0.516,1.657,1.644,0.568,1.695 +NM_007174,0.905,1.001,1.41,0.895,1.016,0.843,0.868,0.701,0.997,0.955,0.919,0.899,0.832,0.951,0.939,0.83,1.064,0.883,0.934,1.049,0.746,0.932,1.398,0.937,1.021,0.791,1.759,0.83,0.722,1.134,1.04,1.515,2.232,1.015,0.63,1.491,0.924,0.982,1.235,1.27,0.948,0.775,0.813,1.302,1.084,0.887,1.02,0.689,1.045,0.864,1.14,1.078,0.95,2.167 +NM_007175,0.891,0.98,0.918,1.068,0.938,1.115,1.077,1.005,1.03,1.0,1.093,0.925,1.063,1.0,0.999,1.082,0.904,1.071,1.17,0.932,1.04,0.891,1.209,0.996,1.115,1.003,0.978,0.892,0.841,0.988,1.005,1.025,0.971,0.948,0.973,1.074,0.961,1.01,1.106,0.912,0.998,1.139,0.939,1.168,0.961,1.182,1.146,0.917,1.169,1.209,0.967,0.974,0.999,1.105 +NM_007176,0.904,1.164,1.016,0.96,1.096,0.852,0.929,0.98,0.93,0.962,0.997,0.937,0.934,0.906,0.892,0.995,1.016,0.986,0.918,0.996,0.957,0.931,0.952,0.955,0.914,1.048,0.995,0.894,1.56,1.022,0.939,1.215,0.894,1.142,0.934,0.932,0.974,0.986,1.081,0.811,0.896,0.984,0.903,1.147,1.095,1.076,0.953,0.91,1.025,1.031,1.069,1.03,1.033,1.004 +NM_007178,0.615,0.823,1.231,0.582,0.92,1.269,0.532,0.604,1.433,1.06,0.82,1.074,0.722,0.584,0.996,2.205,0.767,0.844,1.554,0.793,0.586,0.801,1.213,1.448,0.5,0.726,1.488,0.978,0.359,0.98,1.172,0.824,4.979,1.308,0.223,0.911,0.874,0.867,1.673,0.823,1.188,0.979,0.494,1.065,1.268,0.889,1.093,0.893,1.146,0.904,0.972,0.831,0.875,1.771 +NM_007179,1.016,0.908,0.969,1.059,0.915,1.101,0.953,0.874,0.815,1.042,0.976,0.931,1.015,0.892,1.026,1.274,1.126,1.009,0.922,1.095,1.063,1.011,0.927,1.033,0.885,0.813,0.899,0.891,0.678,1.041,1.131,0.94,1.036,1.1,0.949,0.918,0.999,0.86,0.975,0.874,1.019,1.017,1.088,1.027,1.071,0.896,1.163,0.878,1.059,1.192,0.976,1.029,1.046,1.089 +NM_007180,0.993,0.993,0.958,1.0,0.972,1.042,1.028,0.755,1.012,0.941,1.289,0.907,0.963,0.754,1.009,1.09,1.104,0.975,0.903,0.953,1.025,1.234,1.01,0.976,1.072,1.033,0.993,0.968,0.974,1.289,0.989,1.031,0.943,1.187,0.97,1.111,1.116,0.834,1.146,1.023,1.038,1.351,1.052,0.899,1.076,0.925,0.945,1.05,0.921,0.963,0.926,0.79,0.838,1.035 +NM_007181,0.967,0.928,1.394,0.924,1.027,0.992,1.01,0.798,1.193,1.078,0.851,1.013,1.075,0.876,0.933,0.992,1.199,1.117,1.059,0.893,1.014,0.971,0.98,1.204,0.805,0.975,1.412,1.05,0.673,0.987,1.053,1.138,1.336,1.032,0.915,0.822,0.888,1.119,1.19,0.997,1.308,1.139,0.669,0.833,1.212,0.832,0.953,0.961,0.958,0.944,0.897,0.839,1.199,1.716 +NM_007183,1.115,0.326,1.793,0.727,2.113,0.664,0.414,0.636,1.96,2.107,0.886,1.053,0.519,0.904,1.083,1.321,0.99,1.746,1.734,0.991,0.717,1.576,0.984,1.666,0.179,2.065,0.891,2.018,0.361,1.039,1.179,0.348,0.68,0.724,0.229,1.895,0.937,2.669,0.85,0.541,1.943,0.904,0.739,1.101,1.489,1.196,1.228,2.346,1.086,1.228,1.189,0.557,1.007,0.767 +NM_007184,0.737,1.073,1.191,0.789,0.915,1.139,0.603,0.579,1.44,1.149,0.852,0.88,0.603,0.89,1.095,1.073,1.099,0.829,1.13,0.948,0.868,0.823,1.125,0.986,0.937,0.974,1.528,0.649,0.58,1.49,1.325,1.913,0.997,1.54,0.514,0.703,0.915,1.139,1.253,0.879,0.916,1.249,0.465,0.753,0.935,0.706,0.652,0.952,0.597,0.787,0.943,0.718,1.459,2.155 +NM_007185,1.155,1.018,1.097,1.054,1.01,0.977,1.005,1.471,0.875,1.026,0.912,1.072,1.02,0.856,1.193,0.978,1.009,0.818,1.055,0.911,1.066,1.122,1.105,1.164,0.986,0.97,0.999,1.019,1.558,1.088,0.978,0.977,1.095,1.213,1.035,0.947,1.155,0.829,0.985,0.94,1.058,0.915,0.904,1.001,1.047,0.895,1.005,0.931,0.909,0.955,0.968,1.005,1.069,0.987 +NM_007186,1.053,0.908,1.062,0.923,0.978,1.053,0.618,0.83,1.189,0.865,0.938,1.008,0.891,0.986,1.053,0.975,0.985,1.026,0.917,0.948,0.875,1.016,0.998,0.951,0.951,0.941,0.977,0.988,0.886,1.021,1.023,1.126,1.229,1.088,1.007,1.052,0.958,0.894,1.04,1.118,0.91,0.999,0.96,1.028,0.935,0.887,0.999,1.069,0.94,1.052,0.906,1.123,1.18,1.099 +NM_007188,0.864,0.939,1.091,1.022,0.875,0.981,1.021,1.123,1.043,0.882,0.946,1.015,1.069,1.058,1.09,1.161,1.089,0.905,1.167,1.104,1.231,0.894,1.128,0.998,0.938,1.326,0.93,0.872,0.712,0.992,0.944,0.924,1.186,0.953,0.816,0.918,0.901,1.031,1.26,1.004,1.115,0.902,0.856,1.095,0.944,1.054,0.999,1.091,0.93,1.4,0.913,0.871,1.24,0.989 +NM_007190,0.628,1.331,0.719,0.835,0.699,1.101,1.044,0.589,0.803,0.877,1.061,0.709,0.638,0.636,1.068,1.384,0.669,0.919,0.908,1.343,0.635,0.591,1.435,0.699,0.639,0.722,0.887,0.733,0.81,1.356,0.667,1.13,1.268,1.462,0.479,1.233,1.121,0.728,1.46,0.769,0.759,1.079,0.806,1.239,0.83,1.0,0.974,0.675,1.126,0.698,1.044,0.738,0.823,1.281 +NM_007191,0.909,1.085,0.976,1.115,1.009,1.044,1.075,1.121,1.048,0.991,1.114,1.049,1.066,1.037,0.947,1.022,0.916,1.042,0.993,1.089,0.869,0.865,0.913,0.866,1.237,0.905,1.088,1.044,1.114,0.856,1.085,0.899,0.866,1.057,1.177,0.947,0.983,0.998,0.921,1.137,0.986,1.132,1.043,1.001,1.05,1.022,1.028,0.969,1.25,0.982,1.077,0.933,1.07,1.141 +NM_007192,0.726,1.673,1.03,0.751,0.753,0.898,0.677,0.39,1.088,1.112,0.775,0.819,0.613,0.567,0.742,1.147,0.662,0.804,0.914,0.881,0.607,0.807,1.616,1.065,0.708,0.817,1.144,0.675,0.473,1.107,0.779,1.67,2.169,1.166,0.165,1.448,0.958,0.902,1.538,1.023,1.034,1.268,0.688,3.061,1.003,0.91,1.041,0.711,1.066,0.905,1.051,0.996,0.881,1.929 +NM_007193,0.145,5.523,0.137,2.628,0.133,10.71,4.252,0.147,0.146,0.143,6.183,0.144,0.127,0.141,3.159,11.11,0.151,3.503,0.142,4.803,0.146,0.15,3.103,0.17,3.019,0.146,0.142,0.132,3.696,8.433,0.153,1.105,0.136,8.243,0.14,0.555,7.711,0.13,8.467,0.123,0.112,4.688,2.461,1.086,0.135,6.601,1.523,0.156,7.195,0.136,6.481,0.249,0.139,0.149 +NM_007194,0.919,0.935,0.851,1.002,0.998,1.018,1.003,0.896,1.142,1.07,1.138,1.063,1.059,0.998,1.278,1.06,0.974,1.048,0.858,0.908,0.943,1.11,1.062,0.885,1.138,0.988,0.984,0.994,1.234,1.031,1.019,0.937,0.948,1.126,1.096,0.972,0.98,1.168,0.946,0.87,1.071,1.1,0.952,1.128,0.926,1.129,0.964,0.875,1.17,0.921,1.047,1.26,0.994,1.041 +NM_007197,1.036,1.01,1.051,0.928,1.032,1.05,0.881,0.945,0.974,1.034,1.038,0.928,1.021,0.95,1.118,0.791,1.04,0.994,0.967,0.866,1.099,1.081,0.932,1.0,1.007,1.044,0.985,1.047,0.81,1.005,1.048,1.07,0.833,0.891,1.267,1.017,0.827,1.233,1.033,0.971,0.929,1.006,0.898,1.0,1.094,1.059,0.988,1.156,1.036,0.945,0.984,1.0,1.016,1.054 +NM_007198,0.764,1.337,1.008,0.773,0.865,0.925,0.66,0.583,0.903,0.893,1.34,0.659,0.644,0.788,0.795,1.43,0.96,0.765,0.859,1.098,0.786,0.763,1.231,0.698,1.016,0.697,1.024,0.77,0.619,1.087,0.926,1.228,1.214,1.571,0.584,0.707,1.129,0.629,1.241,0.69,1.025,1.21,0.967,1.144,0.763,1.493,1.113,0.735,1.321,0.709,1.069,0.687,0.817,1.406 +NM_007199,0.892,1.412,0.924,1.879,0.724,1.48,1.954,0.719,0.697,0.817,1.105,0.808,0.735,0.733,0.764,0.861,0.852,1.223,0.745,1.121,0.941,0.726,0.879,0.763,1.118,0.825,0.883,0.758,1.323,1.511,0.802,1.943,1.016,1.822,0.768,0.89,1.245,0.814,1.532,1.728,0.855,1.196,1.073,1.375,0.91,1.02,0.913,0.748,0.868,0.86,0.987,1.461,0.748,1.165 +NM_007202,0.799,1.152,0.893,0.96,1.078,0.955,0.893,1.127,1.018,0.888,1.062,0.943,0.884,1.146,0.975,1.044,0.946,0.854,0.978,1.0,0.995,0.608,0.933,0.949,0.98,1.0,0.977,1.05,0.884,1.15,1.151,1.286,0.901,1.316,0.871,0.994,1.109,0.979,0.988,1.065,0.968,0.927,1.182,1.302,1.05,1.031,0.96,0.78,0.994,0.907,1.229,0.973,0.849,1.272 +NM_007203,0.654,1.194,0.703,0.772,0.737,0.865,1.17,0.669,0.813,0.809,1.112,0.632,0.667,0.687,0.878,1.012,0.66,0.76,0.786,0.846,0.767,0.695,1.278,0.744,1.246,0.739,0.704,0.886,0.581,1.804,0.771,2.514,1.609,1.869,0.728,1.262,0.968,0.776,1.39,2.062,0.884,2.104,0.695,1.402,0.746,1.08,0.879,0.674,0.846,0.753,1.214,1.733,0.846,1.731 +NM_007204,0.936,0.926,1.035,0.946,0.952,1.055,0.882,0.909,0.977,1.165,1.043,1.05,0.852,1.093,1.063,1.064,0.946,1.004,1.016,0.902,0.844,0.874,1.137,0.937,0.809,0.933,1.18,0.938,1.426,1.074,0.928,1.166,2.105,1.111,0.652,0.954,0.998,1.022,1.195,1.012,0.849,1.002,1.114,1.066,0.956,1.013,0.959,0.959,0.949,1.023,1.019,0.927,0.889,1.36 +NM_007205,0.979,0.918,0.888,0.99,0.92,1.008,0.904,0.973,1.007,1.105,0.968,1.135,0.88,0.985,1.063,1.128,1.026,1.082,0.931,0.935,0.928,1.008,1.037,0.947,1.096,0.908,1.02,0.961,0.799,0.932,0.925,1.065,1.119,0.999,0.933,1.238,1.011,0.924,1.133,0.969,1.001,0.917,0.88,1.333,1.111,0.998,1.047,0.886,1.044,0.972,0.952,0.892,0.867,1.119 +NM_007207,1.02,1.004,1.059,0.996,1.208,1.0,0.871,1.031,1.122,1.139,0.971,1.061,1.07,0.896,1.027,0.907,1.022,0.946,0.978,0.887,1.004,0.956,1.015,0.998,0.996,1.0,0.901,1.085,0.883,1.029,1.042,0.881,1.06,0.871,0.997,0.985,0.916,1.029,1.035,0.984,1.014,0.954,0.804,0.981,0.956,0.929,1.075,0.968,1.081,1.005,0.946,1.065,1.225,1.0 +NM_007208,0.43,1.003,1.016,0.504,0.712,1.304,0.477,0.598,1.139,0.938,0.957,1.023,0.626,0.624,1.068,2.22,0.697,0.747,1.63,0.827,0.651,0.511,1.447,1.302,0.401,0.556,1.051,0.915,0.539,1.369,0.964,1.294,2.78,1.494,0.131,1.202,1.054,0.932,1.368,0.511,1.153,1.09,0.552,1.588,0.882,1.211,0.935,0.478,1.206,0.587,0.997,0.801,1.379,2.31 +NM_007209,0.842,0.996,1.252,0.668,1.058,0.852,0.586,1.028,1.172,1.09,1.143,1.443,1.191,0.621,0.969,1.237,0.802,1.076,1.516,0.855,0.537,0.896,1.092,1.308,0.6,1.172,1.222,1.151,0.292,0.908,1.067,1.012,1.066,1.066,0.354,1.044,0.925,1.194,1.051,0.829,1.069,0.992,0.491,0.927,1.067,0.651,0.986,1.103,0.832,0.883,0.901,1.033,1.035,1.165 +NM_007210,0.301,1.899,0.328,1.117,0.261,4.257,1.405,0.333,0.325,0.256,3.207,0.307,0.304,0.271,1.373,2.529,0.279,1.466,0.309,2.397,0.316,0.292,1.943,0.306,2.108,0.284,0.353,0.29,1.619,4.492,0.304,1.03,0.715,3.806,0.249,1.787,2.322,0.258,3.109,0.506,0.267,2.825,0.983,1.112,0.323,2.213,0.441,0.306,0.679,0.358,2.728,0.428,0.326,0.857 +NM_007212,1.022,1.024,0.846,0.991,0.893,1.045,1.135,0.888,0.963,0.948,1.016,1.025,1.0,0.853,1.021,0.995,0.962,1.017,1.009,0.986,0.926,0.979,0.948,0.937,1.103,1.109,1.141,0.969,0.749,1.034,1.01,0.938,1.059,0.977,0.998,0.967,1.023,1.053,1.081,0.98,0.994,1.011,0.909,0.874,1.013,0.997,0.867,1.152,1.117,0.886,1.092,0.924,0.938,0.974 +NM_007213,0.974,1.013,0.887,0.956,0.948,1.003,0.87,0.964,0.882,0.93,0.857,0.92,1.008,0.85,1.012,0.989,0.912,0.979,0.967,1.026,0.769,0.983,0.934,1.098,1.286,0.908,1.203,0.893,0.647,1.73,1.008,1.997,1.155,1.516,0.868,0.954,1.008,1.033,1.18,1.451,0.877,1.26,0.723,0.963,0.972,0.929,1.026,0.996,0.843,0.842,1.071,1.123,0.951,0.83 +NM_007214,0.524,1.168,1.684,0.578,0.914,1.73,1.078,0.637,0.896,0.818,0.724,0.712,0.674,0.468,0.968,1.991,0.889,0.98,0.481,1.21,0.373,1.203,1.269,1.233,0.786,0.38,1.245,0.763,0.57,1.47,1.133,1.651,2.301,1.216,0.337,0.373,0.979,1.282,1.969,1.102,0.973,1.426,0.593,0.443,0.989,1.042,0.986,0.844,1.483,0.737,1.544,0.712,0.45,1.753 +NM_007215,0.684,1.054,1.059,0.771,0.854,1.055,0.829,0.805,1.026,0.76,0.999,1.032,0.742,1.051,1.0,1.108,1.088,1.052,1.016,0.867,0.833,0.973,1.034,0.909,0.877,0.888,1.293,0.955,0.706,1.101,1.135,1.156,1.138,1.144,0.777,0.883,1.052,0.891,1.03,1.112,0.869,0.974,0.839,1.228,0.851,1.018,0.929,0.966,1.01,0.826,1.055,0.975,0.863,1.451 +NM_007217,1.051,1.041,1.079,0.979,0.923,1.034,1.028,1.115,1.042,1.021,1.015,1.079,0.905,0.922,0.801,1.199,0.996,1.074,1.041,0.945,0.972,1.023,0.882,0.816,1.004,1.097,1.023,1.108,0.723,0.912,0.945,0.961,1.069,1.051,1.103,1.144,1.022,0.94,0.977,0.909,1.024,0.889,1.178,0.941,1.053,0.961,1.069,1.083,0.92,0.867,0.954,1.06,1.064,1.072 +NM_007218,1.0,1.122,1.115,0.907,1.007,0.784,1.002,1.249,1.518,1.223,0.951,0.981,0.991,1.074,1.556,0.829,0.92,1.03,0.967,1.146,0.94,1.267,0.942,1.079,1.015,1.052,1.395,1.191,1.386,0.901,1.207,1.099,0.978,1.012,0.975,0.873,1.08,1.193,1.033,0.963,1.314,0.93,1.215,0.948,1.075,0.837,1.105,1.071,0.996,1.002,1.001,0.808,0.975,1.0 +NM_007219,1.039,0.737,0.934,1.055,1.001,1.015,0.712,0.989,1.02,0.915,0.904,0.764,0.906,0.961,1.101,1.067,0.918,0.925,1.368,0.965,1.152,1.036,0.813,1.112,0.774,1.14,0.967,0.995,0.868,1.044,1.192,1.582,1.596,1.11,1.2,0.729,0.804,0.935,1.465,2.571,0.843,1.058,0.96,1.301,1.086,0.711,0.99,1.113,0.769,1.158,0.897,0.937,1.062,0.926 +NM_007220,0.982,1.007,1.074,0.917,1.385,0.982,0.924,1.044,1.043,1.005,0.922,0.975,0.95,0.907,1.065,0.955,0.851,0.885,1.056,0.98,0.793,1.303,0.91,1.13,1.038,0.964,0.947,1.072,0.916,0.899,0.964,1.679,1.163,0.99,1.005,0.863,0.762,1.052,1.053,1.057,0.896,1.222,1.044,0.857,1.102,0.861,1.027,1.023,0.869,1.1,0.974,1.057,0.956,1.19 +NM_007222,0.98,0.634,1.838,0.592,1.377,0.998,0.438,1.418,2.0,1.115,1.099,1.956,1.055,1.182,1.197,1.484,0.989,0.965,2.157,0.852,0.832,1.397,0.922,1.39,0.429,1.222,1.375,1.651,0.355,0.919,1.398,0.75,1.407,1.119,0.839,0.466,0.952,1.23,0.611,0.582,1.353,0.849,0.463,0.427,1.361,1.005,0.706,1.28,0.967,1.17,0.908,0.627,1.191,0.914 +NM_007223,0.913,1.012,0.895,1.006,0.929,0.861,0.912,1.005,1.116,1.028,0.978,1.101,0.918,1.017,0.864,0.923,0.954,0.905,1.129,1.082,1.028,1.013,0.943,0.992,1.021,1.081,1.012,0.912,1.078,1.127,0.94,1.102,0.86,1.04,1.069,0.888,1.099,0.905,1.044,1.0,1.017,1.023,1.074,1.0,0.962,0.794,1.078,1.062,0.98,1.077,0.889,0.986,1.036,1.047 +NM_007224,1.29,0.76,0.924,1.014,1.049,0.985,0.961,1.054,0.977,0.913,1.03,1.052,1.117,1.098,0.969,1.013,0.934,1.26,1.096,0.901,0.927,1.052,0.921,1.225,1.004,1.093,0.973,0.956,1.847,0.943,1.104,0.922,0.9,0.925,0.942,0.957,1.061,1.045,1.002,1.075,0.821,1.211,0.949,1.143,0.984,0.791,1.056,1.099,1.019,0.98,0.945,1.095,1.137,0.983 +NM_007225,1.03,1.068,0.981,1.115,0.958,0.981,0.94,0.913,1.036,1.078,0.883,1.029,0.966,1.013,0.849,1.088,0.93,0.982,0.933,1.026,1.04,0.853,1.046,1.062,0.906,1.063,1.114,1.001,0.88,0.946,0.981,1.144,0.985,1.022,0.981,0.879,0.906,0.864,0.975,0.928,0.882,1.126,0.887,0.976,0.996,0.941,1.03,1.04,1.053,1.129,1.141,1.108,0.879,0.903 +NM_007227,1.079,1.18,0.983,0.852,1.412,0.947,0.793,0.921,0.942,0.947,0.902,1.113,0.975,0.796,0.875,0.949,1.018,0.945,1.058,0.963,0.925,0.941,1.276,0.92,0.964,1.291,1.024,1.055,0.769,1.03,1.062,1.06,1.015,1.012,0.908,0.805,1.044,1.03,0.956,1.168,1.0,0.972,1.223,1.002,0.992,0.993,1.163,1.052,1.06,1.091,0.968,1.154,0.961,1.056 +NM_007229,0.45,1.325,0.764,0.793,0.627,1.859,0.851,0.328,0.946,0.449,1.396,0.444,0.35,0.507,0.976,1.583,0.685,1.206,0.59,1.599,0.312,0.51,1.416,0.451,0.737,0.489,0.834,0.574,0.622,1.803,0.83,1.113,0.777,1.889,0.967,0.902,1.639,0.583,1.958,0.998,0.732,1.572,1.039,0.843,0.49,1.753,0.864,0.481,1.133,0.464,1.665,0.689,0.633,1.093 +NM_007230,0.566,1.711,1.063,0.614,0.959,0.968,0.648,0.474,0.93,0.862,0.899,0.687,0.529,0.484,0.756,1.344,0.727,1.033,1.002,1.143,0.467,0.949,1.328,0.802,0.637,0.796,0.956,0.696,0.556,1.45,0.663,3.217,1.224,1.45,0.256,2.193,1.063,0.911,1.975,1.007,0.825,1.36,0.687,1.141,0.865,1.177,0.993,0.829,0.866,0.749,1.114,0.867,0.761,1.926 +NM_007232,1.066,1.025,1.0,1.054,1.103,0.917,0.982,0.966,0.975,1.053,0.911,0.955,0.921,0.98,0.914,0.898,0.952,0.939,0.997,0.932,0.944,1.034,0.988,0.904,1.008,1.078,1.025,1.08,0.904,0.999,0.952,1.028,1.176,1.09,1.022,1.005,0.973,1.04,1.05,0.989,1.038,1.061,1.169,1.061,0.988,0.923,1.122,1.163,1.012,1.129,1.0,0.928,1.05,0.959 +NM_007234,0.791,0.575,1.333,0.731,1.145,0.984,0.619,0.702,1.277,1.125,0.86,1.133,0.972,0.722,1.016,1.485,0.916,1.049,1.861,0.717,0.828,1.012,0.984,1.318,0.551,1.115,1.475,1.073,0.397,0.883,1.087,1.554,1.14,1.29,0.396,0.447,0.962,1.214,0.816,0.485,1.224,0.958,0.518,0.998,1.115,0.861,0.988,1.026,0.942,0.949,0.92,0.87,1.234,1.708 +NM_007235,0.963,0.948,1.204,1.017,1.017,0.953,0.936,0.931,1.264,1.101,1.145,0.918,0.977,0.96,0.993,1.064,0.838,0.859,0.93,0.925,0.964,0.805,1.048,0.95,0.845,0.931,0.871,0.988,0.921,1.034,1.163,1.175,2.239,1.055,0.936,1.142,0.85,0.991,1.0,0.963,1.139,1.048,0.815,2.279,1.077,0.988,1.165,0.917,1.011,0.817,0.978,1.0,1.14,1.86 +NM_007236,0.64,1.084,1.102,1.119,1.018,1.715,0.875,0.645,1.618,1.081,1.628,0.616,0.608,0.81,1.15,1.954,0.7,0.907,0.904,1.882,0.484,0.383,1.828,0.739,0.842,0.795,0.837,1.186,0.319,1.616,1.206,0.937,1.519,2.167,1.197,0.758,1.239,0.746,1.131,0.469,0.931,1.248,0.913,0.797,0.772,1.211,0.672,0.615,1.334,0.763,1.349,0.736,0.905,1.403 +NM_007238,0.892,1.009,1.092,0.984,1.023,0.99,0.912,0.81,0.931,1.089,1.147,0.871,0.841,0.95,0.978,1.173,0.992,0.978,1.063,1.038,0.81,0.837,1.312,0.92,0.904,1.08,1.065,0.91,0.761,1.281,0.791,1.081,1.195,1.059,0.753,0.867,1.13,0.907,1.217,1.013,1.084,1.046,0.971,1.266,0.938,1.02,1.184,0.845,1.067,0.978,0.965,0.991,0.927,1.451 +NM_007240,0.683,0.952,0.923,1.043,0.779,1.081,0.666,0.652,1.026,0.848,0.983,0.711,0.754,0.706,1.022,1.473,0.868,0.703,1.141,0.892,0.669,0.782,1.096,1.03,0.74,0.736,1.178,0.743,0.82,1.096,0.895,1.992,3.614,1.554,0.428,2.05,0.867,0.903,1.396,1.145,1.011,1.12,0.729,1.507,0.829,0.892,1.086,0.675,1.011,0.764,0.953,0.914,1.142,2.515 +NM_007241,0.621,1.215,0.976,0.629,0.92,0.855,0.633,0.478,1.094,0.931,1.007,1.067,0.717,0.49,0.786,1.494,0.718,0.935,0.816,1.139,0.373,0.736,1.337,1.047,0.749,0.941,1.118,0.968,0.328,1.068,0.703,1.865,0.84,0.957,0.195,1.687,1.187,0.944,1.437,1.037,1.22,1.137,0.8,2.2,0.957,1.102,1.438,0.746,1.588,0.623,1.124,1.317,0.683,1.625 +NM_007242,0.648,1.145,1.117,0.598,0.98,1.365,0.653,0.474,1.051,1.051,1.084,0.668,0.548,0.582,0.789,1.316,0.862,0.95,1.07,1.135,0.446,0.797,1.34,0.895,0.691,0.863,0.899,0.74,0.67,1.362,0.801,1.201,1.457,1.258,0.423,1.004,1.155,0.939,1.41,0.72,1.102,1.173,0.791,1.207,0.954,1.095,1.09,0.86,0.917,0.826,1.083,0.729,0.854,1.38 +NM_007243,0.526,1.047,1.246,0.635,1.021,0.864,0.675,0.563,1.135,1.431,0.633,1.019,0.668,0.697,0.857,1.022,0.807,1.054,1.236,0.864,0.756,0.731,1.501,1.188,0.43,0.761,1.275,0.921,0.424,1.412,0.91,2.314,2.711,1.063,0.341,1.496,0.797,1.086,1.009,1.579,1.253,0.802,0.64,1.433,1.002,0.768,1.127,0.611,0.614,0.727,0.996,1.027,0.954,1.211 +NM_007245,0.999,1.013,0.995,1.151,0.989,1.041,0.862,0.906,0.883,0.865,1.06,0.963,0.959,1.077,0.882,1.072,1.04,1.098,0.964,0.918,1.164,1.086,0.914,0.905,1.056,1.116,0.954,1.149,1.559,1.029,0.901,1.05,1.024,1.002,1.104,0.995,0.998,0.947,1.027,1.135,0.945,0.853,1.009,1.048,0.955,1.027,0.902,1.036,1.004,0.971,1.0,0.974,0.86,1.281 +NM_007246,0.95,1.007,2.362,0.837,1.012,1.052,0.698,1.256,1.745,0.879,0.791,0.977,1.364,0.995,1.373,1.226,2.12,1.14,1.217,1.111,0.685,1.155,0.718,1.328,0.713,0.775,2.842,1.105,0.689,1.005,1.823,1.567,1.532,1.162,0.903,0.772,0.855,1.203,0.964,0.928,1.482,1.005,0.57,0.77,1.448,0.808,0.973,1.061,0.731,1.75,0.938,0.988,0.746,1.306 +NM_007249,1.063,1.084,1.108,0.978,0.974,1.032,1.044,1.018,0.966,0.884,0.903,0.947,0.893,0.892,0.863,0.922,0.945,0.929,1.095,1.04,0.862,1.047,1.078,1.064,1.102,0.977,1.128,1.001,0.706,1.189,0.924,1.321,1.105,1.067,1.022,1.087,1.074,0.974,0.854,1.037,1.014,0.979,0.815,0.987,1.038,0.859,0.96,0.818,0.861,0.965,0.871,1.023,1.064,1.1 +NM_007250,1.58,0.783,2.899,0.938,2.439,0.798,0.956,2.275,2.679,1.702,0.715,2.686,1.891,1.791,1.753,1.051,2.45,1.498,2.737,0.916,1.084,2.206,0.815,2.749,0.779,1.502,2.991,2.134,0.724,0.83,2.337,0.835,1.316,0.902,1.649,0.773,0.774,1.899,0.74,0.816,2.371,0.727,0.987,0.67,1.988,0.823,1.294,1.827,0.919,1.564,0.97,0.784,1.678,0.865 +NM_007252,1.086,1.093,0.843,0.86,0.978,0.995,1.035,0.954,1.091,0.95,1.129,1.028,0.978,0.96,1.15,0.975,0.968,1.0,0.904,0.978,0.981,0.879,1.032,1.036,0.848,0.864,1.066,0.961,0.878,0.98,0.968,0.86,1.047,1.001,1.063,0.885,0.902,0.821,0.971,1.046,1.072,1.037,0.876,0.931,1.005,1.052,1.056,1.131,0.932,1.027,0.893,0.911,1.153,1.008 +NM_007253,0.93,0.853,0.903,0.963,0.965,0.847,0.827,0.936,1.042,1.042,1.027,0.974,0.786,1.171,1.303,1.178,0.943,0.981,0.786,1.065,1.112,0.859,1.116,0.851,0.949,1.007,1.062,1.18,1.067,0.951,1.107,1.012,0.962,1.008,1.103,0.872,0.894,1.011,0.894,0.95,1.03,1.013,0.956,0.969,1.081,0.913,1.072,1.058,0.991,1.062,0.986,0.84,1.045,1.014 +NM_007254,0.702,0.964,0.944,0.995,0.603,1.149,0.617,0.399,0.981,0.714,1.077,0.752,0.642,0.682,0.837,1.796,0.751,0.925,1.332,1.001,0.521,0.602,1.507,0.898,1.048,0.9,1.068,0.664,0.522,1.161,0.789,1.133,2.819,1.562,0.286,1.036,1.079,0.657,1.584,1.331,0.894,1.041,0.807,1.563,1.018,1.011,1.364,0.721,0.768,0.73,1.144,0.788,1.182,1.503 +NM_007256,0.809,0.793,1.257,0.652,0.836,1.054,0.82,0.539,0.922,0.619,2.021,0.612,0.754,0.658,1.521,2.486,0.624,0.506,0.838,1.705,0.547,0.749,2.114,0.57,0.614,0.958,0.733,0.666,0.375,1.805,0.787,1.862,1.342,1.155,0.336,1.152,1.385,0.805,1.149,0.998,0.6,2.325,1.695,1.002,0.62,2.0,1.356,0.823,0.894,0.692,1.419,1.487,0.883,1.506 +NM_007257,0.919,1.681,0.947,1.082,0.879,1.144,1.142,0.892,0.956,0.794,1.004,0.841,0.932,0.882,0.806,0.866,0.861,1.043,0.816,1.252,0.904,0.888,1.039,0.904,0.903,0.784,0.959,0.837,0.866,1.634,0.832,2.177,1.041,1.516,0.923,1.041,1.219,0.773,2.047,1.076,0.842,1.189,1.125,1.264,0.903,1.206,0.835,0.99,1.026,1.053,1.418,0.973,0.765,1.099 +NM_007259,0.929,0.83,1.45,0.893,0.9,1.193,0.592,0.53,1.192,0.952,1.186,0.817,0.725,0.786,0.806,1.349,0.974,0.75,1.253,0.996,0.706,0.851,0.957,1.068,0.804,0.939,1.256,0.847,0.777,1.037,0.967,1.657,1.43,1.266,0.458,0.857,1.047,0.937,1.318,0.861,1.008,1.037,0.733,1.304,1.034,0.823,0.778,0.74,1.029,0.802,0.881,0.853,1.099,1.494 +NM_007260,1.032,0.884,0.682,1.277,0.609,1.932,0.574,0.674,0.736,0.763,1.266,0.694,0.938,0.748,0.727,1.415,1.213,0.993,1.026,0.639,0.872,1.058,1.027,0.796,1.361,1.381,0.842,0.513,0.996,1.312,0.686,0.837,0.869,1.616,0.669,0.658,1.334,0.951,3.145,1.149,0.745,1.262,0.904,1.781,0.75,0.862,0.853,1.163,1.041,0.911,0.778,0.733,0.856,1.141 +NM_007261,1.003,0.899,0.938,1.001,1.022,0.958,0.985,0.937,1.103,0.945,0.794,0.979,0.908,0.945,0.823,1.032,0.973,0.854,1.07,0.999,0.91,0.989,0.989,0.995,0.946,0.956,1.331,0.861,0.628,0.946,1.133,1.172,0.909,1.097,0.808,0.903,1.038,1.072,1.309,1.695,0.963,1.081,0.917,0.918,1.016,0.914,1.062,1.029,0.981,1.025,0.998,1.007,0.862,1.274 +NM_007262,0.442,1.162,0.918,0.791,0.657,1.166,0.726,0.344,0.792,0.878,1.135,0.758,0.496,0.393,0.805,1.804,0.651,0.858,1.033,1.166,0.657,0.54,1.512,0.99,0.536,0.582,1.002,0.717,0.347,1.337,0.588,1.288,2.701,1.708,0.069,1.339,1.135,0.701,1.494,1.21,0.979,1.457,0.639,1.217,0.767,1.116,1.129,0.456,1.25,0.53,1.301,1.032,0.935,1.613 +NM_007263,0.601,0.547,1.042,0.864,0.83,1.586,0.88,0.747,0.956,0.91,1.288,0.902,0.88,0.439,1.016,2.373,0.786,1.262,1.61,1.114,0.687,0.91,1.916,0.913,0.491,1.173,0.836,0.846,0.494,1.0,1.016,0.759,1.53,1.722,0.603,1.23,0.942,0.753,2.07,0.698,0.867,1.158,0.424,1.277,1.034,0.881,0.806,1.168,1.117,1.105,1.308,0.961,0.982,0.888 +NM_007264,1.158,1.038,0.97,1.075,1.017,1.047,1.126,0.944,1.024,1.195,0.984,1.087,0.938,0.945,0.827,0.942,1.027,1.189,0.999,1.064,0.917,1.004,0.911,1.093,1.106,0.982,0.821,1.121,1.091,1.114,1.015,0.998,0.986,1.039,0.982,1.019,0.974,1.035,1.122,0.949,1.011,1.035,0.962,0.996,1.033,1.075,1.132,0.971,0.836,0.899,1.044,0.935,1.015,0.831 +NM_007265,0.587,0.985,1.249,0.673,0.965,1.277,0.64,0.714,1.262,1.098,0.749,0.831,0.721,0.803,1.089,1.457,0.929,0.891,1.159,0.898,0.639,1.125,1.197,1.246,0.648,0.748,1.427,0.865,0.574,1.14,1.198,1.056,3.186,1.364,0.504,0.774,0.877,0.921,1.576,0.86,1.114,0.955,0.635,1.021,1.073,0.863,0.824,0.763,1.043,0.855,1.021,0.925,1.047,2.648 +NM_007267,0.664,1.117,1.535,0.819,0.642,0.924,0.652,0.527,0.78,0.762,0.841,0.594,0.912,0.573,1.018,1.848,1.253,1.08,1.584,0.903,0.503,0.653,1.41,0.75,0.518,0.774,0.915,0.678,0.835,0.94,0.809,3.432,1.467,0.898,0.596,1.294,0.885,0.73,1.882,1.622,0.84,0.903,0.757,2.566,1.072,1.198,0.988,0.75,1.168,1.327,0.957,1.127,1.265,2.667 +NM_007268,0.857,1.369,0.909,1.122,0.988,1.343,1.237,0.802,1.116,0.96,0.944,0.908,0.915,0.929,0.922,1.008,0.914,0.846,0.856,1.04,1.064,0.906,1.538,1.097,1.03,0.947,0.882,0.934,0.901,1.907,0.844,1.447,0.931,1.448,0.85,0.889,1.103,1.041,0.862,0.864,0.934,1.526,0.995,0.881,0.844,1.096,1.005,0.919,0.834,1.012,1.12,1.172,0.908,1.35 +NM_007271,0.486,1.152,1.268,0.552,1.064,1.578,0.679,0.498,1.147,0.841,0.649,0.657,0.464,0.682,0.856,1.281,1.036,1.15,0.958,1.142,0.35,0.85,1.075,1.105,0.395,0.714,1.208,0.974,0.562,1.373,1.179,1.372,1.405,1.299,0.66,0.443,0.879,0.981,1.549,0.897,1.222,1.026,0.454,0.712,0.867,0.859,1.219,1.02,0.91,0.805,1.163,0.551,0.543,1.257 +NM_007273,0.714,0.659,1.144,0.759,0.817,1.264,0.489,0.594,1.104,0.942,0.964,1.303,1.105,0.49,0.948,1.884,0.861,0.943,1.596,0.746,0.564,0.898,1.385,1.293,0.621,1.004,1.488,0.721,0.322,0.829,0.93,0.803,3.421,1.078,0.166,0.924,1.04,0.995,1.668,0.741,1.015,1.351,0.567,1.219,1.21,0.754,0.916,0.837,1.25,1.086,0.882,0.8,1.109,1.5 +NM_007275,0.787,1.174,1.004,0.873,0.839,1.35,0.733,0.699,0.785,0.831,1.074,0.749,0.895,0.832,0.996,1.62,0.872,0.925,1.04,0.922,0.896,0.866,1.093,0.915,1.048,0.789,1.092,0.947,0.864,1.49,0.755,0.827,1.138,1.33,0.717,1.063,1.041,0.954,1.397,0.992,0.896,1.076,0.887,1.1,0.908,1.045,1.026,0.827,0.957,0.785,1.114,0.77,0.947,1.535 +NM_007276,1.5510000000000002,1.984,1.964,1.5310000000000001,1.471,2.59,1.911,1.27,2.098,1.9169999999999998,2.167,1.605,1.69,1.584,1.9869999999999999,3.312,1.542,1.9060000000000001,2.231,2.021,1.389,1.597,2.899,2.066,1.621,1.4380000000000002,2.5,1.452,1.543,2.377,1.778,2.987,4.256,2.617,0.912,2.7030000000000003,2.306,1.463,2.5010000000000003,2.2249999999999996,1.772,2.349,1.956,3.364,1.925,2.1639999999999997,2.069,1.487,2.092,1.491,2.133,2.2889999999999997,2.0220000000000002,3.986 +NM_007277,0.95,0.655,1.463,0.875,1.034,0.945,0.651,0.612,1.337,1.352,0.827,0.915,0.696,0.707,0.863,1.3,1.28,0.835,1.19,1.051,0.607,0.856,0.844,1.176,0.706,0.993,1.759,0.897,0.508,0.72,1.068,1.646,2.874,1.281,0.37,0.857,0.634,0.964,1.086,1.066,1.227,0.977,0.703,1.667,1.421,0.721,0.713,0.889,0.879,1.034,0.885,0.858,1.245,1.687 +NM_007278,1.068,0.733,1.062,0.908,0.985,1.505,0.614,1.021,0.979,0.733,1.248,1.025,1.038,0.711,0.964,1.602,0.805,1.03,1.349,0.873,0.609,1.041,0.845,0.98,1.08,1.12,0.914,0.839,0.558,1.236,1.058,1.012,1.262,1.667,1.26,0.518,1.106,1.213,1.189,0.868,0.934,1.268,0.517,0.618,0.876,0.818,0.801,1.578,0.732,1.084,0.989,0.573,0.802,0.914 +NM_007279,0.978,0.99,0.911,0.903,0.971,1.007,0.958,0.903,1.162,0.898,0.929,0.939,0.961,0.76,0.819,1.101,0.896,1.045,1.045,0.929,1.031,0.967,0.912,1.015,0.923,1.163,0.849,0.951,1.132,1.067,0.886,0.958,1.107,0.898,1.039,0.98,1.064,0.922,1.166,1.005,0.954,1.058,0.954,1.281,0.992,1.022,0.986,1.098,1.247,1.097,0.959,1.157,1.078,1.088 +NM_007280,0.77,1.018,1.235,0.952,0.955,1.18,0.952,0.76,1.016,0.966,0.858,0.863,0.878,0.73,0.866,1.503,0.867,1.044,1.25,0.987,0.679,0.84,2.344,0.952,0.619,0.716,1.763,0.829,0.818,1.254,0.94,0.961,2.993,0.923,0.61,1.421,1.187,0.822,2.379,1.041,1.004,0.937,0.821,1.341,0.863,1.15,1.214,0.899,1.283,0.881,1.326,1.031,0.934,3.816 +NM_007281,1.206,0.928,0.76,1.045,0.992,0.927,1.023,1.027,0.998,0.926,0.944,1.103,0.946,0.928,1.004,1.082,0.995,1.045,0.933,0.95,1.033,0.907,0.988,1.03,0.988,1.115,1.105,0.819,1.203,0.944,0.947,1.451,1.015,1.179,1.061,0.778,1.075,1.114,0.903,0.96,1.035,1.01,0.861,0.949,1.006,0.993,1.069,1.146,0.935,1.02,0.989,0.998,0.896,0.92 +NM_007282,0.943,1.051,0.899,1.0,0.935,0.962,0.963,1.238,0.94,1.037,1.106,1.04,1.073,0.932,1.102,0.974,0.912,0.905,1.105,0.972,0.884,1.069,1.093,0.984,0.988,0.898,1.078,0.952,0.975,1.056,1.02,0.919,0.989,1.064,0.919,1.113,1.092,1.009,0.907,0.974,1.0,0.985,1.005,1.123,1.098,0.894,1.085,1.053,1.035,0.998,0.928,1.02,1.008,0.908 +NM_007283,1.888,0.601,0.647,0.739,1.247,1.358,0.459,1.383,2.199,0.718,1.208,1.059,1.167,1.028,1.532,1.373,0.924,1.216,1.518,1.003,0.524,2.425,1.271,0.918,0.497,1.7,0.536,1.215,0.551,1.518,1.816,1.039,0.646,1.389,2.408,0.651,0.85,1.605,1.363,0.47,1.057,1.161,0.436,0.501,0.905,1.04,0.81,1.956,0.562,1.05,1.105,0.696,0.999,0.403 +NM_007284,0.728,1.038,1.043,0.981,0.688,1.674,0.849,0.825,0.889,0.742,1.223,0.862,0.799,0.607,0.869,2.178,0.777,1.175,1.151,0.816,0.716,1.027,1.123,0.764,0.824,1.113,0.629,0.73,1.247,1.543,0.727,0.996,0.984,1.387,0.596,0.711,1.211,0.968,1.593,1.078,0.807,1.142,0.702,1.197,0.744,0.92,0.918,1.295,0.906,1.166,0.88,0.768,0.812,1.165 +NM_007285,0.801,1.141,1.021,0.527,1.495,1.21,0.489,1.109,1.9,0.792,0.924,0.902,0.857,0.936,1.338,1.392,1.072,0.965,1.275,0.873,0.613,1.105,0.83,0.939,0.436,1.164,1.23,1.51,0.536,1.05,1.466,1.394,1.5,1.401,2.541,0.586,1.127,1.446,1.0,0.663,1.078,1.029,0.617,0.597,0.83,0.86,1.288,1.35,0.795,0.723,0.897,0.589,0.825,0.916 +NM_007286,1.066,0.895,1.07,1.037,0.981,1.009,0.935,0.905,1.015,0.96,0.973,1.12,1.019,1.085,0.925,0.969,1.01,0.875,1.125,0.926,1.093,0.99,0.878,1.04,1.013,1.065,0.971,0.969,0.841,1.142,1.097,1.015,0.884,0.99,0.936,1.101,0.939,0.935,1.072,0.923,1.129,0.963,0.991,1.053,0.921,1.085,0.922,0.961,1.132,0.861,1.011,0.922,0.997,0.95 +NM_007287,1.021,1.08,1.184,1.026,0.978,1.067,1.214,0.855,0.908,0.998,0.929,0.891,0.935,1.061,0.919,1.038,1.071,0.934,0.978,1.096,1.116,1.061,0.994,1.096,0.96,1.017,1.064,0.904,1.145,0.955,0.991,1.052,1.027,0.934,1.145,0.881,1.024,1.031,1.112,0.938,0.97,0.974,1.538,1.126,1.023,0.925,1.039,0.966,0.969,1.04,0.879,1.159,0.963,1.113 +NM_007289,1.012,1.121,0.93,1.005,1.094,0.946,0.903,0.895,1.082,1.205,1.072,0.964,1.042,0.926,0.976,0.827,1.065,0.976,0.816,1.088,1.023,1.093,1.048,1.084,0.932,0.999,1.046,0.912,0.912,1.061,0.906,0.981,0.816,0.88,0.951,0.958,1.189,0.944,0.986,0.889,1.02,0.885,0.91,1.076,1.188,1.009,1.015,1.139,0.932,1.086,0.946,1.074,1.019,0.873 +NM_007292,2.142,1.762,2.622,1.79,2.526,2.134,1.638,2.019,3.543,1.946,2.189,1.893,1.764,1.972,2.173,2.622,2.411,2.128,2.848,1.69,1.881,2.0,1.835,1.922,1.516,1.81,2.2969999999999997,2.3499999999999996,1.968,2.082,3.145,1.334,2.037,2.354,4.507,1.407,2.238,1.938,2.041,1.4889999999999999,2.382,2.143,1.788,1.641,2.101,2.051,2.246,2.04,2.109,2.3689999999999998,1.829,1.69,2.0309999999999997,1.5590000000000002 +NM_007293,0.914,1.051,1.042,0.969,0.853,0.975,0.81,0.891,0.91,0.909,1.024,1.108,0.942,0.916,0.787,0.903,1.072,0.859,1.075,0.871,0.992,0.945,0.971,0.971,1.017,1.03,1.125,0.975,0.767,1.114,0.912,1.426,1.047,0.985,1.045,0.996,0.931,1.099,1.138,1.077,0.865,0.994,0.846,1.064,1.026,0.904,1.105,0.966,0.949,1.036,0.991,0.95,1.001,1.018 +NM_007295,0.939,1.005,1.022,0.981,1.024,0.985,1.301,0.907,1.11,0.955,0.945,0.964,1.191,0.817,0.819,0.917,0.953,1.013,1.115,0.983,1.043,0.957,1.026,0.986,0.928,1.156,1.078,0.977,1.2,1.033,0.83,1.164,1.083,0.901,1.027,1.033,1.117,0.986,1.146,0.997,1.018,0.909,0.764,0.997,1.011,1.077,1.017,0.888,1.018,0.974,0.96,0.948,1.018,0.993 +NM_007298,0.843,0.931,1.029,0.863,0.986,0.92,0.754,0.915,1.034,1.069,0.912,1.176,0.853,0.874,0.815,1.088,0.951,1.01,1.005,0.94,0.74,0.88,1.321,1.022,0.827,0.919,1.315,1.02,0.649,1.173,0.972,1.331,2.626,0.92,0.876,1.135,0.951,1.072,1.047,1.082,1.121,0.981,0.845,1.143,0.946,1.085,0.927,0.844,1.065,0.872,1.269,0.991,0.884,1.87 +NM_007308,0.931,0.807,0.974,1.472,0.872,0.869,0.685,0.942,1.167,1.2,0.975,1.12,1.08,0.979,0.882,1.1,0.917,1.016,0.932,0.955,0.918,1.054,0.905,1.446,0.893,0.974,1.623,1.114,0.652,0.98,0.949,1.178,1.468,1.044,0.769,0.867,0.847,1.365,0.901,1.725,1.167,2.223,0.696,0.716,0.999,1.05,1.326,0.833,0.866,0.807,1.036,1.976,2.272,1.329 +NM_007309,1.479,2.176,2.407,1.401,1.997,2.4619999999999997,1.3940000000000001,1.324,1.975,2.059,1.579,1.659,1.303,1.447,2.109,2.761,1.486,1.928,1.885,1.928,1.338,1.9,2.609,2.0180000000000002,1.2850000000000001,1.467,2.2640000000000002,1.63,1.259,2.3579999999999997,1.782,2.088,2.849,2.407,1.023,2.157,2.061,2.099,2.636,1.9729999999999999,1.975,2.471,1.488,1.931,2.023,2.146,2.058,1.65,2.409,1.4689999999999999,1.915,1.665,1.487,2.625 +NM_007310,0.874,0.753,1.359,0.727,1.032,0.848,0.531,0.554,1.143,1.431,0.837,1.03,0.75,0.806,0.982,0.912,0.823,1.073,1.235,1.158,0.589,0.773,1.484,0.866,0.651,1.6,1.034,1.232,0.266,0.849,1.141,0.931,0.725,1.554,0.155,0.604,0.715,1.486,1.133,0.997,1.039,1.154,0.339,0.754,1.065,1.117,0.711,0.893,0.639,0.845,1.099,0.58,1.152,1.373 +NM_007311,1.046,1.03,1.527,0.892,1.262,1.024,0.618,0.69,1.481,1.241,0.984,1.199,0.948,0.729,0.849,1.212,1.055,1.345,1.148,1.257,0.464,1.082,1.034,1.162,0.598,1.217,0.865,1.297,0.398,1.288,1.06,0.809,0.63,1.19,0.329,0.868,0.975,1.293,1.306,0.413,1.338,0.94,0.618,0.612,1.328,0.869,0.946,1.272,0.836,1.018,1.212,0.645,0.94,0.719 +NM_007312,1.007,1.001,0.966,1.048,0.925,1.154,1.315,1.04,1.018,1.017,1.004,1.053,1.033,1.102,1.085,1.085,0.938,0.882,0.947,0.844,0.947,0.868,1.001,1.054,0.979,0.867,0.86,1.027,1.385,0.91,0.868,1.0,0.849,0.9,1.081,0.904,0.928,0.925,0.987,0.901,1.013,1.035,1.003,1.016,0.936,1.046,0.984,1.052,0.927,0.984,0.96,0.902,1.026,0.887 +NM_007313,1.023,1.092,0.926,0.957,0.97,1.091,0.983,1.092,0.912,1.001,0.905,1.013,0.924,1.013,1.052,0.918,1.03,0.898,0.795,1.054,0.831,0.95,1.046,0.989,0.971,1.06,1.057,0.943,0.912,0.969,0.945,1.153,1.013,1.079,0.925,0.969,1.032,1.029,1.151,0.949,1.041,1.024,0.912,0.999,1.004,1.018,1.018,0.993,1.123,1.08,1.037,0.95,0.913,0.969 +NM_007315,0.841,1.442,1.636,0.586,0.51,1.327,1.695,0.355,0.748,0.652,0.97,0.568,0.398,0.365,1.328,1.037,1.015,0.671,0.584,0.878,0.476,0.534,1.406,0.756,1.085,0.422,0.999,0.618,0.454,0.884,0.607,1.825,3.882,1.338,0.168,1.272,1.319,0.637,1.743,0.929,0.932,1.233,0.572,2.879,0.767,1.061,0.628,0.59,1.122,0.725,0.991,1.323,2.413,9.471 +NM_007316,1.012,1.006,1.017,1.097,0.888,1.04,1.069,0.946,1.229,0.951,0.821,1.105,1.019,0.933,1.034,0.935,1.0,1.108,1.064,0.831,1.01,1.032,0.865,1.036,1.234,1.048,0.961,1.057,1.328,0.947,0.916,1.007,0.915,0.942,1.059,0.911,1.006,0.933,1.025,0.935,1.015,0.959,1.06,1.041,0.862,1.022,0.912,1.017,0.998,1.077,1.04,0.932,0.963,0.933 +NM_007317,0.731,1.026,1.324,0.963,0.916,0.77,0.606,0.578,1.033,1.15,0.724,0.876,0.809,0.723,0.876,1.062,0.992,0.876,1.39,0.923,0.654,0.906,1.403,1.145,0.703,0.971,1.634,0.702,0.379,0.77,0.939,1.537,5.774,1.038,0.358,1.119,0.825,1.001,1.737,1.211,1.065,0.808,0.592,1.687,1.058,0.754,1.036,0.936,0.929,0.897,1.052,0.79,1.043,2.721 +NM_007319,0.897,0.952,1.11,0.973,0.952,1.01,0.917,0.682,1.074,1.029,1.074,0.637,0.687,0.736,1.116,1.637,0.86,0.964,1.079,1.071,0.734,0.808,1.11,1.014,0.696,0.891,0.892,0.843,1.056,0.974,1.001,1.024,1.257,1.364,0.616,1.032,0.982,0.694,1.08,0.935,1.235,0.978,1.25,1.543,0.945,1.076,1.061,0.752,1.225,0.86,1.079,0.776,0.973,1.283 +NM_007320,1.209,0.919,0.998,1.121,1.069,0.966,0.952,0.885,1.0,0.993,0.961,0.947,1.029,0.965,0.815,0.941,1.0,1.13,1.04,0.849,0.949,0.985,1.008,0.807,1.055,1.138,0.957,0.945,0.604,1.022,0.928,0.987,1.15,1.066,0.933,0.927,1.034,1.0,1.314,1.058,0.964,1.118,0.936,1.283,0.841,0.948,0.887,1.072,0.892,1.205,0.89,0.89,1.175,1.008 +NM_007321,1.018,1.06,1.05,1.028,1.093,1.129,0.991,1.165,1.022,1.087,0.92,1.138,0.925,1.193,0.998,1.121,1.074,0.892,0.734,0.989,0.932,0.851,0.973,1.113,0.996,0.963,1.006,1.067,1.061,0.961,1.041,0.981,0.883,1.02,0.865,0.976,1.1,1.185,1.01,0.967,0.903,0.851,1.048,0.923,1.064,0.873,0.829,1.059,0.84,1.056,0.967,1.058,0.927,0.896 +NM_007323,2.1879999999999997,1.9699999999999998,2.2750000000000004,2.126,2.021,1.845,2.197,2.1630000000000003,2.123,1.7730000000000001,1.7269999999999999,2.0949999999999998,1.878,2.24,1.907,1.988,2.13,2.2,1.684,1.947,1.9369999999999998,1.937,1.9699999999999998,2.1879999999999997,2.083,1.7759999999999998,2.102,1.8780000000000001,1.7429999999999999,2.064,1.9649999999999999,1.826,1.867,1.9529999999999998,2.3890000000000002,2.203,1.874,2.052,1.76,2.0789999999999997,2.2800000000000002,2.213,2.6879999999999997,1.946,2.2,2.033,1.996,2.093,1.9,1.919,2.038,1.9849999999999999,2.182,2.031 +NM_007326,0.923,1.122,0.982,1.035,1.094,0.999,0.99,1.088,0.984,1.03,0.973,0.966,0.868,1.269,0.833,0.864,0.95,0.878,0.861,1.123,0.876,0.933,0.928,1.002,0.983,1.053,0.859,1.126,1.032,0.979,1.195,1.016,1.005,0.923,1.165,0.938,1.124,1.012,1.184,1.107,1.178,1.002,0.898,0.958,1.063,1.029,0.947,1.0,1.045,1.076,0.885,0.981,1.014,0.999 +NM_007327,1.049,0.911,1.055,1.07,1.026,0.968,0.95,1.058,1.027,1.023,0.885,0.987,1.063,1.152,1.092,1.0,0.948,1.106,1.002,1.012,1.025,1.104,0.897,1.259,1.098,0.946,0.983,0.994,1.384,1.025,0.888,1.11,1.08,0.96,1.063,1.007,0.924,1.056,1.086,0.908,1.014,1.206,1.035,0.929,1.0,0.967,0.935,0.877,0.944,1.041,1.047,1.092,0.988,1.054 +NM_007328,1.054,0.894,1.136,0.881,1.002,1.068,0.915,1.209,1.115,0.936,0.997,0.95,1.023,0.825,0.852,1.126,1.079,0.926,1.188,0.997,1.042,0.92,0.749,0.931,0.904,0.939,1.243,0.946,0.824,1.025,0.996,0.948,1.103,0.875,0.939,0.948,0.878,0.897,0.918,0.961,1.019,1.015,0.959,1.057,0.974,1.043,0.941,1.086,1.07,0.934,0.819,1.132,1.048,1.007 +NM_007331,1.001,1.038,0.933,1.02,1.076,0.956,0.916,0.963,1.069,0.881,0.944,0.953,0.976,1.039,1.039,1.003,1.092,0.861,0.827,0.983,1.048,0.925,1.079,0.952,1.091,0.977,1.143,0.904,1.085,0.979,0.963,0.985,0.942,0.952,0.919,1.066,1.034,1.097,1.037,1.06,1.128,1.013,0.943,0.778,0.92,0.967,0.943,0.943,1.069,1.028,1.058,0.932,1.138,0.977 +NM_007332,0.857,1.101,0.958,1.011,1.018,0.82,0.919,1.053,0.845,0.921,1.036,0.878,0.98,0.833,0.922,1.036,0.948,0.735,0.995,0.973,1.021,1.124,1.091,1.0,1.068,0.952,0.906,0.797,1.015,1.097,1.085,0.977,0.983,1.069,1.035,1.056,1.097,0.96,1.031,1.125,0.97,0.983,0.999,0.897,1.065,1.177,1.032,0.997,1.03,1.087,1.013,1.031,1.035,0.996 +NM_007333,1.927,2.11,2.008,2.173,1.996,2.056,1.68,1.982,1.98,2.128,1.998,1.928,1.9369999999999998,1.9180000000000001,2.089,1.9860000000000002,2.081,2.011,2.175,2.042,1.889,1.956,2.001,2.0069999999999997,1.958,2.047,1.911,2.098,2.148,2.104,1.796,2.052,2.098,2.033,2.082,2.177,2.085,1.937,2.181,2.025,1.967,2.029,1.782,2.136,1.8519999999999999,1.827,1.891,2.142,1.8239999999999998,1.994,1.787,2.2910000000000004,2.128,2.226 +NM_007338,1.06,0.94,1.038,0.921,1.046,0.954,0.839,0.866,1.026,1.074,1.198,1.089,1.091,0.758,0.985,0.933,1.009,1.213,0.904,1.177,1.094,0.917,0.957,0.928,0.999,0.975,0.862,1.012,1.19,0.763,1.056,0.961,1.03,0.984,1.06,0.966,0.945,0.79,1.063,1.033,0.832,0.928,0.91,0.99,1.076,1.014,1.053,1.032,1.019,1.083,0.872,0.94,1.055,0.883 +NM_007341,0.951,1.189,0.843,0.911,1.002,1.204,1.086,0.945,0.93,0.906,2.028,1.002,0.987,1.014,0.818,1.169,0.775,0.959,1.158,1.007,1.374,0.927,1.146,0.787,1.28,1.063,1.066,1.013,1.573,1.185,0.94,1.123,1.562,1.788,0.691,1.008,1.02,1.2,0.901,0.869,1.351,1.38,0.88,1.096,0.767,0.937,0.943,0.873,0.904,0.801,1.048,0.832,0.901,1.061 +NM_007342,0.827,0.967,1.165,0.908,0.892,0.967,0.753,0.583,1.091,0.944,1.018,0.831,0.764,0.722,0.921,1.207,0.95,0.933,0.899,1.053,0.687,0.807,1.451,0.957,0.8,0.821,1.183,0.776,0.445,1.096,1.02,1.504,1.981,1.086,0.449,1.22,1.057,0.872,1.22,0.989,1.02,1.016,0.696,1.901,0.97,0.988,1.015,0.781,0.864,0.684,1.024,1.235,0.875,1.641 +NM_007344,0.797,0.972,1.114,0.922,0.81,1.007,0.671,0.617,0.948,1.01,0.866,0.721,0.749,0.94,1.102,1.086,1.018,0.842,1.072,0.999,0.846,0.97,0.986,1.019,0.886,0.948,1.114,0.866,0.845,0.995,1.028,1.443,1.622,1.142,0.728,1.13,0.966,1.002,1.139,1.103,1.143,1.005,0.8,1.231,1.084,0.959,1.059,0.898,0.954,0.765,1.024,0.881,1.062,1.449 +NM_007345,1.067,1.064,1.183,0.899,1.02,1.0,0.857,0.943,1.008,1.016,0.912,0.995,1.029,0.753,1.128,1.191,1.034,1.036,1.008,1.033,0.985,0.998,1.091,0.917,1.162,0.874,0.939,0.817,0.773,1.034,1.118,1.027,1.05,1.16,0.975,0.933,1.162,1.011,0.84,1.038,0.945,1.073,0.778,1.0,0.823,0.99,0.874,0.994,0.923,0.952,0.949,1.031,0.967,1.178 +NM_007346,1.001,0.776,1.193,0.886,0.991,1.002,0.878,0.941,1.184,0.864,0.908,0.878,0.931,0.891,1.142,1.065,0.993,0.917,0.732,0.94,0.743,0.921,1.039,1.089,0.941,1.043,1.311,0.947,0.664,1.072,1.348,1.035,1.164,1.092,1.16,0.823,0.839,0.97,1.087,1.177,1.005,0.89,0.981,1.191,0.942,0.882,0.868,1.062,0.834,1.053,0.98,0.974,0.9,1.538 +NM_007347,0.901,0.929,1.078,0.986,0.917,0.962,0.951,1.218,0.882,0.897,0.857,1.036,1.035,1.027,0.891,1.1,1.007,1.058,0.992,1.044,1.052,1.011,1.016,1.018,1.023,1.106,1.095,1.003,0.651,1.003,0.982,1.066,0.976,1.015,0.9,1.087,0.969,0.983,1.003,0.942,0.956,0.996,0.883,0.928,0.967,1.045,1.173,0.993,0.959,1.021,0.931,1.06,0.997,0.974 +NM_007349,0.946,1.004,1.026,0.976,0.937,0.98,0.864,0.795,1.047,0.998,0.951,0.895,0.874,0.791,0.99,0.902,0.863,1.101,1.038,0.974,0.811,0.951,1.339,0.997,0.92,1.005,1.346,1.072,0.962,1.218,0.976,1.136,1.52,1.205,1.048,0.879,1.002,0.943,1.062,0.841,1.072,1.021,0.965,1.052,0.915,1.006,0.906,0.991,1.029,0.918,1.019,0.797,0.994,1.318 +NM_007350,7.405,0.398,3.698,2.428,6.397,0.314,0.355,6.439,6.045,2.667,0.363,1.907,4.448,3.273,2.255,1.203,6.2,2.029,5.583,0.388,2.685,6.37,0.369,3.011,0.673,6.35,2.24,6.387,0.237,0.358,5.798,0.565,1.813,0.459,26.51,0.353,0.394,3.884,0.823,0.62,4.639,0.343,0.928,1.283,3.757,0.43,1.912,10.2,0.601,2.552,0.691,0.853,2.95,0.63 +NM_007351,1.024,0.988,0.918,0.941,1.055,1.025,1.065,0.95,1.168,0.89,0.925,1.012,0.931,1.082,1.053,1.146,0.865,1.078,0.9,1.038,0.948,0.932,0.963,1.017,0.995,1.078,0.885,0.975,1.005,1.096,0.926,0.922,0.897,1.201,1.043,0.849,0.958,1.003,0.912,0.856,0.783,1.171,1.123,0.763,0.887,0.927,0.957,0.979,1.149,1.067,0.978,0.964,0.892,1.001 +NM_007352,0.947,0.992,0.844,1.126,0.816,0.993,0.917,1.13,0.953,0.866,1.102,0.927,0.923,1.026,1.073,0.977,0.996,0.865,0.926,0.94,0.96,0.908,1.035,0.999,1.053,1.044,1.101,0.966,0.869,0.985,1.002,0.89,0.819,0.975,0.946,1.203,0.976,1.018,1.153,1.023,0.888,0.962,1.157,0.991,1.094,0.993,1.07,0.964,1.083,0.9,1.127,0.857,0.904,1.224 +NM_007353,1.048,1.018,1.05,0.936,0.87,0.958,1.072,1.052,0.97,0.98,0.98,0.873,0.979,0.907,0.811,0.99,0.966,0.99,1.171,1.057,1.125,0.923,0.993,0.974,1.054,1.101,0.874,0.994,0.687,1.015,0.972,1.107,1.128,1.001,0.897,1.029,0.989,0.977,0.967,1.196,1.047,1.049,1.202,1.256,0.951,1.14,1.127,0.948,1.004,0.982,1.106,1.046,0.937,0.933 +NM_007355,0.868,1.07,0.946,0.837,0.659,0.667,1.072,0.341,1.064,0.884,0.927,0.671,0.447,0.626,0.821,1.107,0.712,0.58,1.149,0.65,1.184,0.719,1.13,1.026,0.788,0.953,1.114,0.521,0.654,1.291,1.009,1.618,2.919,1.324,0.246,0.904,0.782,0.991,2.263,1.15,1.189,1.195,0.461,1.666,1.068,0.737,0.7,0.833,1.021,0.886,1.051,0.899,1.091,1.847 +NM_007357,0.524,1.5,0.835,0.804,0.686,1.317,0.802,0.348,0.796,0.889,0.809,0.653,0.46,0.413,0.81,1.414,0.633,1.107,0.688,1.738,0.468,0.594,1.575,0.661,0.919,0.644,0.742,0.644,0.83,1.432,0.566,1.672,1.561,1.441,0.283,1.519,1.221,0.743,1.413,1.102,0.825,1.355,0.796,1.724,0.746,1.469,0.801,0.621,0.991,0.604,1.222,0.825,0.702,1.661 +NM_007358,0.563,1.035,1.042,0.599,0.718,1.345,0.823,0.695,0.921,0.743,1.363,0.842,0.605,0.67,1.032,1.806,0.747,0.932,0.847,1.234,0.556,0.724,1.29,0.824,0.603,0.52,1.131,0.771,0.512,1.201,0.818,1.02,2.278,1.274,0.348,1.018,1.446,0.677,1.108,1.719,0.844,1.264,0.842,0.939,0.783,1.026,1.059,0.514,1.289,0.595,1.061,1.196,0.853,2.721 +NM_007359,0.778,1.022,1.282,0.708,1.028,0.984,0.663,0.762,0.999,0.922,0.858,0.882,0.671,0.684,0.883,1.263,0.984,0.951,1.368,0.976,0.834,0.99,1.191,1.137,0.793,1.011,0.96,0.864,0.548,1.175,0.92,1.838,5.801,1.404,0.584,0.925,0.996,1.302,1.541,1.044,1.028,1.49,0.631,1.595,0.904,0.842,0.823,0.987,0.92,0.897,0.953,0.977,0.858,1.681 +NM_007361,1.12,1.002,0.853,0.984,0.968,1.014,1.307,1.054,0.854,0.838,0.771,1.011,0.896,1.047,0.93,1.102,1.013,1.11,1.005,1.135,0.98,0.965,0.955,0.952,0.853,0.778,0.771,0.862,0.973,1.24,0.809,4.497,1.46,0.879,0.854,1.178,0.998,0.95,0.911,1.898,0.964,0.977,1.097,0.915,0.955,0.99,1.021,1.025,0.968,0.954,0.941,1.498,1.005,1.077 +NM_007362,0.602,1.023,1.186,0.667,0.738,1.209,0.575,0.484,1.026,0.851,1.13,0.822,0.696,0.702,1.059,1.499,0.853,0.7,1.202,0.979,0.711,0.945,1.249,1.056,0.512,0.669,1.229,0.794,0.427,1.676,1.024,1.456,2.655,1.328,0.199,0.882,0.967,0.823,1.329,0.997,1.003,1.167,0.652,1.475,0.915,1.029,0.697,0.75,0.786,0.695,0.893,0.996,0.977,2.203 +NM_007363,0.685,0.982,1.224,0.664,0.841,1.555,0.655,0.619,1.065,1.104,0.69,0.766,0.816,0.501,0.846,1.57,0.983,0.807,0.801,0.921,0.53,0.871,1.265,1.235,0.561,0.599,1.792,0.672,0.344,1.24,1.058,1.929,2.98,1.356,0.255,0.537,0.935,1.078,2.084,0.691,0.937,1.213,0.514,1.377,0.986,0.88,1.028,0.651,1.044,0.85,1.071,0.725,0.53,1.578 +NM_007364,0.599,1.619,1.021,0.621,1.188,1.317,0.605,0.809,1.196,0.946,1.173,1.142,0.745,0.618,0.769,1.325,0.773,1.042,1.083,1.164,0.49,1.037,1.711,1.094,0.517,0.961,0.873,1.143,0.608,1.831,1.063,0.998,0.841,1.501,0.465,1.621,1.036,1.322,1.608,0.452,1.128,1.333,0.527,0.577,1.013,0.94,1.004,1.002,0.925,0.77,1.222,0.743,0.81,1.159 +NM_007365,0.995,1.013,0.918,0.913,0.932,1.102,1.022,0.998,1.096,0.866,1.064,0.907,0.942,1.23,1.051,1.284,0.929,0.965,1.061,1.08,0.914,0.957,1.046,0.924,1.048,1.016,1.037,1.0,0.933,1.012,0.954,0.97,1.014,1.014,1.162,1.03,0.922,0.987,1.013,1.058,0.898,1.245,1.209,0.922,0.94,1.069,1.28,0.974,0.98,0.902,1.009,1.116,0.95,0.952 +NM_007366,0.95,0.821,1.204,0.959,1.107,0.847,0.889,1.008,1.055,0.978,1.014,0.966,1.008,1.081,0.952,0.97,1.07,0.841,1.098,1.013,0.949,1.021,1.096,1.018,0.926,1.082,1.242,1.119,0.782,0.934,1.2,0.982,0.959,0.959,0.859,0.988,1.046,1.058,0.866,0.943,1.094,1.009,0.927,0.859,1.099,1.083,0.937,1.007,0.848,1.107,1.029,1.018,0.885,1.001 +NM_007367,0.845,0.782,0.887,0.877,0.774,1.23,0.551,0.666,0.819,0.802,0.802,0.769,0.87,0.553,0.86,1.254,0.781,0.846,1.132,0.841,0.826,0.951,1.588,0.971,0.892,1.32,0.841,0.684,0.472,1.14,0.83,1.32,2.733,1.349,0.674,0.993,0.869,0.854,1.936,1.248,0.697,1.256,0.635,2.131,0.93,0.774,0.952,1.154,0.991,0.843,0.903,0.799,0.982,1.706 +NM_007368,0.566,1.313,0.638,0.758,0.519,1.505,1.24,0.491,0.678,0.557,0.962,0.61,0.582,0.529,0.769,1.272,0.621,0.624,0.513,1.26,0.688,0.49,1.616,0.615,0.942,0.596,0.691,0.725,0.894,3.272,0.582,4.992,0.816,1.492,0.666,1.603,1.12,0.62,1.71,1.673,0.73,1.733,0.9,1.905,0.662,1.103,1.521,0.542,0.733,0.622,1.281,0.802,0.609,1.389 +NM_007369,1.9929999999999999,2.118,2.327,2.026,1.873,2.069,1.919,2.097,2.1959999999999997,1.9819999999999998,1.927,1.9869999999999999,2.162,2.097,1.759,2.2030000000000003,1.841,1.9489999999999998,1.96,1.845,2.008,1.943,2.024,1.944,1.904,1.826,1.936,2.0949999999999998,1.83,1.8449999999999998,2.044,2.476,2.033,2.1500000000000004,2.117,2.2489999999999997,1.944,2.185,2.254,1.9369999999999998,1.888,2.03,1.858,2.45,2.0069999999999997,1.715,2.036,2.13,2.158,1.893,1.912,1.887,2.386,2.029 +NM_007370,0.617,0.554,1.154,0.774,0.868,1.103,0.731,0.556,1.087,0.938,0.866,1.342,0.86,0.732,1.113,1.414,0.795,1.002,1.264,0.83,0.685,0.792,1.313,1.35,0.468,0.728,1.785,0.831,0.569,1.036,0.813,1.185,2.514,1.11,0.368,1.31,0.941,0.913,1.163,0.854,1.134,0.925,0.694,1.025,1.094,0.906,1.133,0.814,1.254,0.963,1.084,1.085,1.085,2.388 +NM_007371,0.775,1.444,1.187,0.671,0.754,0.948,0.806,0.529,0.897,0.703,1.004,0.704,0.679,0.739,1.131,1.061,0.9,1.069,0.889,0.858,0.693,0.673,1.411,0.8,0.893,0.902,0.992,0.784,0.879,1.392,0.772,2.733,1.525,1.139,0.531,1.333,1.147,0.937,1.5,2.048,0.889,1.537,0.759,1.492,0.971,0.876,0.717,0.724,0.865,0.871,1.14,1.072,0.816,1.302 +NM_007372,0.552,1.039,1.279,0.818,0.656,0.95,0.789,0.409,0.95,0.864,0.862,0.565,0.467,0.606,0.882,1.113,0.777,0.807,0.565,1.537,0.499,0.453,1.615,0.731,0.845,0.622,1.016,0.701,0.373,1.316,0.831,1.793,1.231,1.536,0.599,1.241,1.019,0.663,1.578,1.099,0.853,1.42,0.756,1.627,1.004,1.08,0.694,0.611,0.869,0.788,1.143,0.934,0.989,2.253 +NM_007373,0.681,0.939,1.291,0.71,1.0,1.454,0.657,0.656,1.256,0.911,0.966,0.717,0.676,0.662,1.004,2.009,0.727,1.011,1.372,0.833,0.485,0.995,1.119,1.15,0.58,0.681,1.108,0.967,0.496,1.165,1.037,1.013,1.583,1.181,0.706,0.601,1.223,0.926,1.375,0.68,1.039,1.092,0.702,0.676,0.988,1.163,0.921,0.782,1.194,0.908,1.002,0.692,0.632,1.004 +NM_007374,0.994,1.045,1.055,1.038,0.933,0.973,0.933,1.059,1.027,1.008,1.045,1.049,0.996,1.073,1.097,0.885,0.828,1.036,0.865,0.97,0.946,0.992,1.014,1.096,0.976,0.898,0.842,1.125,1.437,0.923,1.214,0.995,1.105,0.885,1.015,1.064,0.874,1.028,1.045,0.951,1.14,1.013,0.949,0.964,0.954,1.262,0.982,1.039,0.938,1.113,1.162,1.006,1.079,0.948 +NM_007375,0.624,1.005,1.09,0.638,0.859,0.865,0.629,0.311,1.463,1.238,0.728,0.909,0.525,0.573,0.843,1.014,0.836,0.968,1.1,0.914,0.609,0.958,1.466,1.28,0.645,0.87,1.39,0.729,0.591,1.136,0.966,1.255,1.402,1.083,0.195,1.115,0.886,0.935,1.157,1.288,1.356,1.028,0.63,1.384,1.221,0.889,1.098,0.829,0.931,0.881,1.12,0.904,1.097,1.857 +NM_009586,2.061,1.87,1.924,1.8250000000000002,1.9,2.058,1.93,2.004,2.346,2.144,2.085,2.1630000000000003,1.849,1.994,2.064,1.858,2.096,1.744,2.146,2.066,2.181,1.974,2.136,2.055,1.967,1.94,2.0149999999999997,2.261,2.549,1.995,2.232,2.145,2.0949999999999998,1.9969999999999999,2.094,1.859,2.016,2.1660000000000004,2.0860000000000003,1.928,1.934,1.983,1.984,1.9849999999999999,1.996,1.884,2.344,1.859,2.184,2.0949999999999998,1.791,1.765,2.1310000000000002,1.8199999999999998 +NM_009587,0.874,1.002,1.119,1.153,1.034,1.177,1.165,0.857,0.89,0.999,1.233,0.928,0.911,0.941,0.869,1.31,1.217,1.09,0.972,0.965,1.157,0.999,0.97,0.85,1.199,1.012,1.019,0.851,0.967,0.976,0.847,0.91,1.163,1.12,0.991,1.026,1.076,1.156,1.339,0.988,0.998,0.894,1.099,1.265,1.036,1.005,0.932,1.049,0.82,1.214,0.964,0.829,1.012,0.92 +NM_009588,0.793,1.641,3.183,0.946,1.125,0.793,1.211,0.766,1.099,1.176,0.518,0.704,1.062,0.683,0.838,0.772,1.386,1.028,0.744,0.787,0.646,0.775,0.94,0.791,0.538,0.484,1.537,0.891,0.595,1.477,0.891,2.071,2.167,1.274,0.379,0.685,0.987,0.719,2.248,3.465,1.638,1.719,0.623,0.774,1.36,0.748,1.239,0.714,0.74,1.435,0.786,1.207,1.234,1.973 +NM_012062,0.813,0.988,1.226,0.787,0.965,1.055,0.75,0.926,1.339,1.039,0.932,1.029,0.761,1.026,0.989,1.202,0.931,0.887,0.982,0.789,0.66,0.913,1.173,1.213,0.681,0.811,1.339,1.123,0.634,0.894,1.048,1.142,2.423,1.227,0.671,1.029,0.989,0.957,1.232,0.989,1.274,1.003,0.905,1.043,0.989,0.987,1.034,0.8,1.217,0.951,0.999,0.792,0.887,1.34 +NM_012063,0.758,0.861,1.446,0.731,1.003,1.092,0.813,0.845,1.527,1.317,0.805,1.177,0.837,0.729,1.047,1.51,1.055,1.043,1.128,0.835,0.755,1.206,0.947,1.9,0.612,0.798,1.696,1.002,0.499,0.806,1.217,0.931,4.074,1.054,0.598,0.817,1.018,1.297,1.335,1.144,1.353,0.956,0.601,0.857,1.24,0.829,1.208,0.847,1.155,0.973,0.944,0.793,0.872,1.408 +NM_012064,0.925,1.057,1.033,0.999,1.028,1.128,0.846,0.991,0.939,0.999,1.141,0.962,0.921,1.11,0.9,0.958,1.001,0.926,0.922,1.018,1.003,1.103,1.058,1.007,0.975,1.107,0.876,1.078,1.138,1.047,0.934,1.102,0.986,1.034,1.028,0.956,0.981,0.863,0.991,1.002,0.955,0.996,1.096,1.108,0.963,0.881,1.153,1.048,0.894,1.126,1.038,1.012,0.894,1.055 +NM_012068,0.578,1.312,1.037,0.656,0.882,0.858,0.681,0.47,0.802,1.033,0.725,0.907,0.521,0.556,0.702,0.986,0.834,0.825,1.042,0.915,0.56,0.674,2.053,1.149,0.545,0.755,1.023,0.796,0.567,1.615,0.586,1.24,1.525,1.428,0.344,1.382,1.171,0.762,1.455,1.53,1.134,1.387,0.962,1.593,0.856,1.031,1.379,0.61,0.98,0.805,0.902,1.578,1.077,1.814 +NM_012069,1.054,0.981,1.048,1.022,1.007,0.901,0.951,0.979,0.844,0.876,0.881,1.023,0.971,1.092,0.952,1.052,0.972,1.124,0.946,0.874,0.912,0.87,1.135,0.948,0.929,1.035,0.99,1.047,1.146,0.907,1.175,1.029,0.97,0.979,0.907,0.858,1.082,1.028,0.99,1.151,0.995,0.991,1.072,1.054,0.977,1.087,1.086,1.098,0.969,1.1,1.132,1.202,1.107,0.982 +NM_012070,0.872,1.134,0.981,0.753,0.855,1.063,0.803,0.497,0.941,0.888,0.926,0.786,0.749,0.729,0.855,1.411,0.824,0.928,0.891,1.201,0.797,0.908,1.521,0.839,0.971,0.83,1.072,0.898,0.736,1.844,0.88,1.198,1.494,1.542,0.647,0.764,1.418,0.998,1.406,1.016,0.897,1.123,1.119,0.917,0.874,1.34,0.822,0.801,1.115,1.072,1.002,0.995,0.89,1.04 +NM_012071,0.701,1.005,1.23,0.79,1.0,1.065,0.663,0.744,1.006,0.866,1.432,1.033,0.898,0.6,1.069,2.069,0.858,0.915,1.507,0.924,0.44,1.0,1.098,1.192,0.533,0.688,1.527,0.948,0.35,0.867,1.003,1.301,2.183,1.347,0.254,0.577,1.195,1.006,1.489,0.566,1.163,0.757,0.766,1.448,0.898,1.008,1.13,0.874,0.924,0.61,1.056,0.627,0.803,1.574 +NM_012072,0.446,1.352,0.839,0.661,0.573,0.962,0.907,0.51,0.711,0.901,1.001,0.441,0.427,0.373,0.703,1.666,0.483,0.655,0.613,0.627,0.5,0.579,1.723,0.697,0.743,0.44,1.036,0.768,0.486,2.382,0.381,3.971,2.477,1.961,0.337,1.842,1.207,0.82,2.846,8.606,1.027,2.829,1.025,0.862,0.837,0.99,0.906,0.559,0.831,0.686,1.398,5.515,1.045,1.639 +NM_012073,0.671,0.838,1.009,0.948,0.885,0.782,0.802,0.296,1.12,1.253,0.737,0.551,0.483,0.495,0.725,1.535,0.773,1.033,1.205,0.849,0.53,0.47,1.362,1.003,0.559,0.783,1.117,0.838,0.374,0.949,0.792,1.184,3.989,1.121,0.195,1.892,0.986,0.804,1.701,1.338,1.201,0.94,0.655,2.216,1.186,1.101,1.129,0.606,1.383,0.797,1.18,1.422,1.069,2.194 +NM_012074,1.159,0.915,1.006,1.103,1.026,1.064,0.777,0.988,1.221,1.203,0.928,0.942,1.065,0.914,0.987,1.008,0.992,1.035,0.968,1.11,1.061,1.067,0.96,0.97,1.081,1.014,0.891,1.172,0.681,1.003,1.141,0.998,1.065,0.995,0.888,1.095,1.063,0.944,0.917,1.002,1.068,0.918,0.969,0.916,1.046,1.014,1.025,0.906,1.023,0.895,0.98,0.925,0.962,0.911 +NM_012075,0.799,1.768,1.262,0.654,1.317,0.829,0.508,0.508,1.167,1.123,0.66,0.934,0.66,0.808,0.701,0.681,0.907,0.72,0.896,1.26,0.645,0.819,1.114,0.927,0.955,0.866,1.504,1.197,0.302,1.107,0.958,2.025,2.345,1.469,0.237,1.152,0.707,1.163,1.06,0.641,1.021,1.639,0.609,1.835,0.88,0.773,1.061,0.645,0.724,0.671,0.944,0.788,0.818,1.001 +NM_012076,1.068,1.013,0.975,1.105,0.969,1.088,0.743,0.961,0.946,1.086,1.005,0.937,1.055,0.98,0.774,0.953,0.923,1.058,1.137,1.119,0.933,1.06,1.134,1.039,0.923,0.902,0.945,0.979,0.787,0.986,1.077,0.87,1.157,0.874,1.058,1.174,1.025,1.074,0.958,0.991,0.976,0.879,1.061,1.046,1.152,0.964,0.909,1.149,0.946,1.013,0.923,1.043,1.008,0.919 +NM_012080,0.688,1.342,0.771,1.227,0.732,1.307,1.125,0.561,0.73,0.776,1.086,0.783,0.781,0.708,0.902,1.473,0.729,1.024,0.921,1.748,0.573,0.694,1.196,0.877,0.812,0.6,0.683,0.713,0.942,1.316,0.74,0.889,1.115,1.388,0.54,1.023,1.119,0.671,1.456,0.739,0.793,1.148,1.207,0.822,0.683,1.201,1.059,0.607,1.029,0.743,1.2,0.886,0.786,0.845 +NM_012081,1.378,0.821,2.527,0.909,2.716,0.583,0.828,1.112,2.642,3.305,0.661,1.709,1.087,1.641,1.626,1.401,1.375,1.412,3.214,0.684,1.02,1.111,0.545,2.235,0.716,1.639,1.791,2.595,0.367,0.799,2.413,0.662,1.067,0.998,0.621,0.506,0.725,2.253,0.828,0.775,2.277,0.797,0.688,0.529,2.153,0.663,1.387,1.096,0.671,1.567,1.002,0.663,2.135,0.768 +NM_012082,0.953,0.987,1.002,1.081,1.148,1.037,0.919,0.949,0.988,1.048,0.94,1.033,0.97,1.065,0.94,0.901,0.902,0.936,1.165,0.979,0.982,0.853,0.958,1.026,1.078,0.9,1.11,0.959,0.864,0.935,1.061,1.114,0.951,1.128,0.93,0.917,1.034,1.001,1.034,1.026,0.958,1.031,0.915,0.996,0.976,0.956,0.967,0.949,0.869,1.038,1.107,1.126,0.962,0.898 +NM_012083,0.509,1.344,1.0,0.787,0.626,1.657,1.028,0.493,1.0,0.465,1.607,0.578,0.692,0.537,0.776,1.665,0.713,1.191,0.853,1.448,0.394,0.67,1.497,0.681,0.533,0.649,0.765,0.822,0.579,1.861,0.892,0.91,1.412,1.785,0.328,1.23,1.54,0.69,1.653,0.888,0.743,1.499,0.639,1.165,0.725,1.051,0.797,0.511,1.415,0.781,1.23,0.698,0.661,1.179 +NM_012084,0.869,0.95,1.537,0.839,1.212,0.803,0.587,0.643,1.338,1.423,0.721,0.719,0.729,0.969,1.071,1.34,0.937,0.971,1.293,0.789,0.744,0.734,1.015,1.056,0.522,1.095,1.388,1.187,0.5,0.814,1.236,1.22,1.363,1.067,0.692,0.956,0.935,0.912,1.039,0.643,1.37,1.064,0.806,1.423,1.146,0.937,1.303,0.803,1.17,0.978,0.978,0.737,1.126,1.222 +NM_012086,0.864,1.21,1.103,0.972,0.953,0.931,0.8,0.785,1.094,1.172,1.051,0.837,0.843,0.783,0.841,1.272,0.915,1.01,1.105,1.088,0.926,0.954,1.182,1.037,0.881,0.887,1.01,0.808,0.798,1.038,0.979,1.223,1.771,1.128,0.805,1.091,0.984,0.844,1.093,1.125,1.107,0.95,0.762,1.668,1.152,1.062,0.867,0.81,1.027,0.875,1.103,1.031,1.043,2.768 +NM_012087,0.529,0.922,1.423,0.642,0.948,0.98,0.598,0.424,1.126,1.003,0.717,0.781,0.574,0.614,0.983,1.178,0.944,0.978,1.019,1.042,0.414,0.839,1.22,1.079,0.44,0.695,1.418,0.832,0.45,1.284,0.875,1.969,1.213,1.117,0.285,1.217,1.1,0.877,1.259,2.115,1.253,0.894,0.957,1.053,0.954,0.905,1.042,0.681,1.063,0.763,1.454,0.884,0.87,1.773 +NM_012088,0.943,0.877,1.281,0.834,0.94,1.219,0.427,0.863,1.071,0.915,1.1,1.221,1.269,0.79,0.973,1.329,1.313,0.996,1.81,0.799,0.766,1.387,1.206,1.391,0.619,1.302,1.269,0.769,0.458,0.788,0.983,0.958,0.975,1.417,0.541,0.621,0.817,1.394,1.367,0.621,1.134,1.051,0.489,1.004,1.159,0.684,0.967,1.281,0.789,1.098,0.824,0.783,0.953,1.327 +NM_012089,0.811,0.985,1.186,0.856,0.89,1.182,0.752,0.669,1.179,0.834,1.276,0.884,0.824,0.816,1.169,2.428,0.729,0.953,1.286,1.13,0.689,1.028,1.197,0.98,0.629,0.813,1.66,0.834,0.564,1.045,1.039,1.266,1.616,1.219,0.61,0.902,1.352,0.874,1.088,0.99,0.981,1.189,0.739,0.903,0.956,1.043,0.894,0.802,1.05,0.943,1.092,0.932,0.976,1.67 +NM_012090,1.691,2.395,2.2969999999999997,1.6019999999999999,1.7120000000000002,1.785,1.6669999999999998,1.3940000000000001,1.7610000000000001,1.866,2.076,1.819,1.493,1.6189999999999998,1.73,1.655,1.6099999999999999,1.7690000000000001,1.574,2.489,1.6460000000000001,1.5699999999999998,2.185,1.88,1.7349999999999999,1.467,2.089,1.7009999999999998,1.564,2.302,1.501,3.879,2.3659999999999997,2.11,1.399,1.8409999999999997,1.978,1.819,2.409,2.827,2.146,2.4859999999999998,2.058,2.206,1.9739999999999998,2.2009999999999996,1.9949999999999999,1.609,1.818,1.877,2.427,2.115,1.9020000000000001,3.7 +NM_012092,0.964,1.007,1.073,1.078,1.031,0.845,0.989,1.002,1.021,0.835,0.874,0.904,1.027,0.858,0.924,0.844,1.005,1.084,0.978,0.921,0.985,0.926,1.03,0.974,1.007,0.921,1.192,0.94,0.626,1.025,0.967,1.092,1.016,0.989,0.947,0.963,0.975,0.943,1.104,1.012,0.86,0.964,0.76,1.086,1.03,1.015,0.981,0.923,0.994,1.021,0.964,1.117,1.244,1.765 +NM_012093,1.131,0.921,0.911,1.141,1.088,1.054,0.959,1.091,1.1,1.093,0.983,1.022,1.001,0.965,0.894,0.92,1.011,1.195,0.903,0.965,0.945,0.896,1.056,1.022,1.089,0.95,1.095,1.07,1.457,0.962,0.95,0.863,0.785,1.019,1.102,0.941,0.96,1.092,1.07,0.964,1.003,0.816,1.047,0.91,0.931,0.945,0.95,1.038,1.052,1.147,1.021,1.044,0.701,1.013 +NM_012094,0.863,1.098,1.139,0.847,1.024,1.178,0.576,0.882,1.215,0.976,1.538,0.695,0.774,0.806,1.003,1.752,0.846,1.174,1.625,0.829,0.693,1.296,0.968,1.196,0.761,1.585,0.632,1.135,0.485,1.508,1.311,0.958,1.113,1.584,0.567,0.695,1.073,1.385,1.157,0.543,1.22,1.067,0.399,0.516,0.989,0.96,0.86,1.22,0.765,0.855,1.071,0.429,0.863,1.084 +NM_012095,0.695,1.076,1.233,0.661,0.916,1.137,0.642,0.688,1.169,0.919,1.091,0.958,0.613,0.809,0.981,1.363,0.706,0.839,1.122,0.998,0.684,1.066,1.255,1.037,0.681,0.945,1.165,0.888,0.5,1.162,1.181,0.888,2.026,1.318,0.401,1.177,1.277,0.997,1.169,0.646,1.098,1.039,0.573,1.14,0.887,1.061,0.828,0.804,0.776,0.624,1.203,1.486,0.923,2.287 +NM_012096,0.893,0.99,1.177,0.912,1.11,0.956,0.992,0.682,1.591,1.257,0.945,0.829,0.703,0.956,0.771,1.109,0.89,0.973,0.939,0.868,0.709,0.734,1.199,1.114,1.012,0.739,1.233,1.115,0.593,1.24,1.136,1.081,1.262,1.304,0.7,0.816,0.946,0.903,1.041,0.806,1.237,1.227,0.913,0.76,1.026,1.097,0.958,0.796,1.092,0.903,1.157,0.772,0.979,1.084 +NM_012097,1.018,0.939,1.088,1.034,1.146,0.866,0.919,0.778,1.074,1.093,1.072,0.923,1.064,1.124,0.901,0.992,1.062,1.11,1.001,0.994,0.817,0.949,0.985,1.039,0.916,0.968,1.14,1.094,0.902,1.04,0.931,1.002,0.983,1.104,0.997,1.092,0.991,1.15,1.064,0.945,0.948,0.953,0.909,1.111,0.988,1.078,0.953,0.968,1.056,0.954,0.976,1.024,1.004,1.07 +NM_012098,0.643,1.622,1.132,0.667,0.716,1.095,0.923,0.523,0.914,0.785,0.845,0.555,0.569,0.63,0.886,1.054,0.856,0.593,0.615,1.394,0.735,0.547,3.189,0.68,0.763,0.649,0.746,0.819,0.52,2.622,0.579,15.45,1.77,2.169,0.496,1.043,0.99,0.901,2.873,5.024,1.053,1.952,0.774,2.232,0.889,1.719,0.823,0.616,0.712,0.872,2.058,2.943,0.907,1.44 +NM_012100,0.788,0.589,0.839,0.968,0.605,1.391,0.712,0.504,0.951,0.808,1.445,0.704,0.775,0.552,0.975,2.183,0.69,0.77,0.952,1.041,0.715,0.756,1.847,0.894,0.842,1.054,0.981,0.592,0.571,1.13,0.724,1.328,2.773,1.464,0.249,0.897,1.239,0.73,1.82,1.373,0.865,1.418,0.939,2.458,0.881,0.903,1.149,0.666,1.182,0.757,1.007,0.736,0.934,3.309 +NM_012101,4.57,0.566,4.027,1.031,2.634,0.409,0.312,2.179,3.619,2.995,0.37,3.006,2.479,2.312,2.021,0.995,4.188,1.807,4.873,0.47,3.336,5.586,0.386,4.1,0.295,4.547,4.344,2.023,0.298,0.332,3.339,0.608,2.676,0.319,1.32,0.759,0.326,6.535,0.556,0.307,3.447,0.363,0.403,0.529,3.429,0.385,1.31,4.162,0.393,4.111,1.005,0.9,3.127,0.712 +NM_012102,0.71,1.185,1.101,0.662,0.899,1.005,0.596,0.464,0.892,0.728,0.938,0.47,0.446,0.887,1.146,1.095,1.136,1.099,0.887,1.457,0.543,1.025,1.3,1.043,0.715,0.877,1.147,0.834,0.617,1.343,1.077,1.449,0.952,1.524,1.166,0.577,1.029,0.901,1.451,1.147,1.015,1.597,0.578,1.057,0.71,0.973,0.923,0.871,0.973,0.721,1.428,0.602,0.983,1.313 +NM_012106,1.139,0.768,1.406,0.694,1.184,1.026,0.521,0.94,1.403,0.988,0.762,1.16,0.953,1.028,1.111,1.589,0.945,1.083,2.141,0.638,0.648,1.074,0.919,1.38,0.614,1.222,1.38,1.283,0.366,1.057,1.344,1.256,2.171,1.354,0.372,0.594,0.933,1.237,0.991,0.475,1.333,0.836,0.561,0.661,1.118,0.723,0.901,1.168,0.71,1.159,0.937,0.771,1.162,1.819 +NM_012107,0.897,1.18,1.053,0.984,1.065,1.037,0.917,0.869,1.298,1.081,0.873,0.818,0.947,0.842,1.063,1.173,1.052,0.991,1.036,1.005,0.968,0.866,0.978,1.084,0.897,0.932,1.054,1.066,0.75,0.999,1.128,1.108,1.662,1.15,0.949,0.972,0.974,0.875,1.056,0.922,1.138,0.949,0.877,0.922,0.975,0.939,1.102,0.846,1.03,0.915,0.938,0.865,0.932,1.898 +NM_012108,0.975,1.013,1.07,0.774,0.992,1.078,1.147,0.938,1.105,1.036,1.084,0.881,1.046,0.773,1.011,0.917,0.774,0.917,1.038,1.015,1.035,0.822,1.097,1.056,1.113,1.083,1.085,0.968,0.804,1.0,1.094,0.888,0.915,1.237,1.125,0.987,1.056,1.065,0.984,0.89,1.045,1.255,0.984,1.06,0.949,1.018,0.93,0.898,0.963,1.027,1.034,0.944,1.073,1.021 +NM_012110,0.858,1.022,1.967,0.76,1.466,1.028,0.657,1.163,1.431,1.185,0.889,1.476,0.928,0.999,0.901,1.083,1.486,1.28,1.766,0.899,0.725,0.982,0.759,1.481,0.44,1.1,1.993,1.528,0.455,1.013,1.646,1.022,1.215,1.138,1.168,0.459,0.932,1.222,1.042,1.121,1.89,0.689,0.876,0.819,2.024,0.777,1.507,1.379,0.965,1.772,0.829,0.842,1.166,0.761 +NM_012111,0.711,1.079,0.858,0.879,0.748,1.092,0.824,0.455,1.036,1.028,0.897,1.084,0.633,0.591,0.848,1.127,0.783,0.664,1.136,1.013,1.024,0.875,1.158,0.986,0.655,1.073,1.17,0.757,0.583,1.463,0.874,1.202,1.516,1.215,0.234,1.134,1.021,0.832,1.623,1.133,1.331,0.953,0.697,1.803,0.951,1.148,0.908,0.863,1.11,0.78,0.996,0.652,1.087,2.227 +NM_012112,0.651,0.93,1.02,0.776,1.076,0.813,0.967,0.55,0.884,1.064,0.575,0.869,0.763,0.714,0.95,1.041,0.81,1.104,1.072,0.839,0.568,0.782,2.582,1.082,0.636,0.696,2.093,0.753,0.765,1.159,0.856,1.235,3.012,0.804,0.468,2.284,0.921,0.993,1.932,2.369,0.971,0.721,1.012,1.855,1.078,0.937,1.414,0.787,1.592,0.823,1.509,1.387,0.901,3.489 +NM_012113,0.929,1.142,1.012,0.999,0.991,1.193,1.044,0.753,0.922,0.947,1.1,0.888,0.865,0.874,0.728,1.09,0.953,0.871,0.777,0.99,1.04,0.923,1.022,0.974,0.811,1.038,0.897,0.891,0.876,1.37,0.958,0.957,1.013,1.045,1.076,1.048,1.002,0.847,1.172,1.01,0.893,1.071,0.94,0.995,1.003,1.115,0.896,0.85,0.865,1.037,1.193,0.93,1.02,1.048 +NM_012114,0.825,1.049,1.036,1.135,0.925,0.959,1.122,0.933,1.083,0.922,1.085,0.953,1.019,0.987,0.954,0.811,1.073,1.068,1.026,0.934,1.01,1.067,0.861,1.026,1.001,1.058,0.855,1.012,0.832,0.952,1.052,1.056,1.039,0.856,1.065,0.883,0.947,0.965,1.027,0.999,0.951,0.968,0.895,1.235,1.058,1.152,1.079,0.958,0.908,1.117,0.971,0.92,0.83,1.095 +NM_012115,0.879,1.053,0.958,0.896,0.817,1.034,0.931,0.767,1.257,0.825,1.154,0.908,0.763,0.845,0.919,0.999,0.829,0.889,0.875,1.05,0.737,0.87,1.117,0.926,1.006,0.812,1.026,0.981,0.553,1.202,1.001,1.127,1.24,1.267,0.761,1.127,1.007,0.828,1.021,1.574,1.086,1.253,0.991,1.025,0.831,1.064,1.01,0.777,0.959,0.717,1.207,1.049,0.89,1.494 +NM_012117,1.032,0.964,1.077,0.868,1.258,1.007,0.704,0.656,1.371,1.275,0.906,0.9,0.883,0.715,0.726,1.149,0.865,0.98,1.06,1.05,0.912,0.996,1.04,1.37,1.044,0.856,1.216,1.181,0.628,1.262,0.951,1.602,1.725,0.957,0.726,1.135,0.858,0.918,1.602,1.057,1.355,0.937,0.991,2.222,0.819,1.217,1.659,0.776,1.22,0.806,0.975,0.772,0.849,0.885 +NM_012118,0.917,0.832,1.213,0.785,1.021,0.981,0.765,0.851,1.037,1.299,0.907,1.314,0.867,0.968,0.941,1.297,1.005,0.944,1.159,0.75,0.926,0.882,1.114,1.218,0.833,0.88,1.256,0.909,0.685,0.809,1.054,1.048,1.565,0.859,0.793,0.86,0.933,0.847,1.344,1.561,0.95,0.95,2.316,0.942,1.244,2.174,2.059,0.941,1.712,1.255,1.078,1.366,1.401,1.601 +NM_012119,0.986,1.141,1.009,1.188,0.849,1.116,1.044,0.815,0.876,0.858,0.883,0.961,0.935,0.941,1.002,1.146,0.849,0.968,1.025,0.955,0.953,0.96,1.079,0.877,0.846,0.894,1.045,0.988,1.297,1.136,0.868,1.119,1.116,1.141,0.896,1.04,0.948,1.103,1.105,0.858,1.006,1.02,1.034,0.989,0.942,0.921,1.059,1.054,1.19,0.919,0.927,0.861,1.019,1.464 +NM_012120,0.991,0.976,0.896,1.063,0.909,1.113,1.229,1.082,1.101,1.154,0.953,0.913,0.913,1.063,0.878,1.052,0.952,1.03,0.807,1.208,1.088,1.056,1.012,0.987,0.997,1.035,0.981,1.145,1.272,1.217,1.175,0.872,0.974,0.994,1.091,1.034,0.907,0.912,1.004,0.998,0.796,1.005,1.196,0.951,1.196,0.983,1.089,1.147,1.011,0.935,1.062,1.167,0.932,0.954 +NM_012121,0.322,1.298,0.947,0.787,0.438,1.722,0.843,0.237,0.584,0.478,1.293,0.348,0.371,0.444,0.831,1.645,0.474,0.953,0.568,0.922,0.285,0.308,1.603,0.626,0.904,0.514,1.1,0.482,0.656,1.942,0.547,1.44,0.953,2.07,0.116,0.881,1.516,0.482,1.847,0.665,0.505,1.587,1.309,2.048,0.534,1.081,0.707,0.383,0.997,0.626,1.228,1.098,0.907,1.603 +NM_012123,0.79,0.863,1.163,0.823,0.981,0.965,0.679,0.591,0.984,1.012,1.339,0.705,0.659,0.844,0.863,1.575,0.935,0.819,1.178,0.893,0.758,0.714,1.258,0.933,0.761,0.866,1.055,0.871,0.519,1.015,0.972,0.961,1.648,1.18,0.452,0.876,1.061,0.885,1.287,0.657,0.913,1.015,0.774,1.233,1.1,1.151,0.995,0.854,0.935,1.005,1.109,0.69,1.092,1.513 +NM_012124,0.846,0.926,1.039,0.839,1.042,0.979,0.705,0.888,1.27,1.203,0.771,1.093,0.879,0.815,0.822,1.204,0.903,0.864,1.119,0.948,0.855,0.948,1.065,1.267,0.74,0.812,1.249,0.828,0.491,0.902,1.384,1.031,2.945,0.954,0.593,0.892,0.942,1.085,1.92,0.924,1.138,0.916,0.724,0.953,1.055,0.922,1.035,0.998,1.181,0.947,1.002,0.883,0.669,1.728 +NM_012125,0.943,0.93,1.1,1.083,0.923,0.878,0.978,1.083,0.753,1.0,0.921,1.014,0.954,1.044,0.854,1.192,1.048,1.079,1.16,1.115,0.957,1.016,1.046,0.924,1.158,0.96,0.926,0.988,0.921,0.845,1.038,1.132,1.116,0.956,1.059,0.871,1.173,1.095,0.999,1.017,0.938,0.949,1.129,0.931,0.969,1.059,1.149,1.037,1.091,1.016,1.018,0.968,0.995,0.986 +NM_012126,0.903,1.098,0.906,0.903,0.888,1.927,0.881,0.994,0.94,0.874,2.416,0.864,0.813,0.859,2.304,4.595,0.873,0.852,0.879,3.583,1.021,0.935,1.985,0.951,0.983,0.942,0.858,0.873,0.76,1.093,1.0,0.798,0.795,1.039,0.759,0.981,2.894,1.0,1.288,0.914,0.789,2.2,2.182,1.086,1.021,3.701,2.216,0.911,3.264,0.902,1.905,0.716,0.804,1.002 +NM_012127,0.975,0.987,1.132,0.938,0.927,1.068,0.84,1.076,0.934,0.91,1.037,0.916,0.934,0.937,0.962,1.012,0.912,0.915,1.053,1.052,0.924,0.915,0.964,1.021,0.943,1.032,1.065,1.01,0.74,0.88,1.05,1.148,1.455,0.949,0.928,0.939,0.897,1.115,1.16,1.003,1.008,0.961,0.912,0.954,1.06,0.803,0.912,1.029,0.883,0.972,0.937,0.851,1.252,0.987 +NM_012129,0.375,1.231,0.679,0.925,0.505,1.571,0.852,0.388,0.541,0.382,1.435,0.447,0.354,0.415,1.277,2.262,0.481,1.241,0.676,1.504,0.276,0.464,1.354,0.521,0.498,0.397,0.697,0.403,0.589,1.458,0.476,1.126,1.002,1.276,0.333,1.475,1.729,0.465,1.77,1.787,0.582,1.139,1.342,1.963,0.554,1.914,1.378,0.41,1.767,0.525,1.766,1.495,0.548,0.882 +NM_012130,0.867,1.025,0.97,0.968,0.981,0.923,1.123,0.815,0.833,0.787,1.203,0.75,1.033,0.778,0.927,1.019,0.979,0.834,0.899,1.087,0.88,1.121,1.157,0.915,0.889,0.907,0.968,0.811,1.134,0.929,0.942,1.111,1.061,1.213,0.975,0.845,1.029,0.915,1.132,1.705,0.933,1.323,1.017,1.204,0.822,0.965,1.219,1.004,0.872,0.871,1.359,1.094,0.853,0.981 +NM_012131,0.969,1.113,0.999,0.93,1.501,0.896,0.971,1.366,1.283,1.059,0.948,1.124,1.097,1.107,1.367,1.19,0.993,1.112,1.164,0.83,1.229,0.913,0.985,1.142,1.035,1.041,1.056,1.266,0.878,0.888,1.101,0.969,1.16,0.835,1.535,0.884,0.822,2.578,0.99,0.863,1.678,0.947,0.897,0.932,1.44,1.095,1.192,1.267,0.89,1.234,1.013,0.912,1.119,0.968 +NM_012132,1.267,0.73,2.663,1.265,1.16,0.8,0.862,1.385,1.677,0.941,1.025,1.349,2.052,1.598,1.213,0.983,1.678,1.204,2.675,1.204,1.178,1.691,0.824,1.585,0.874,1.429,1.673,1.359,0.8,0.857,1.593,0.737,1.33,0.827,0.771,0.788,0.934,1.451,0.89,0.927,2.256,1.361,0.737,0.831,1.27,0.924,3.029,1.339,0.924,1.804,1.001,1.026,1.472,0.982 +NM_012133,1.142,1.056,1.352,0.9,0.882,0.895,0.536,0.622,1.285,1.22,0.803,0.76,0.813,0.969,1.113,1.064,1.001,0.785,1.475,0.753,0.88,1.056,1.231,1.101,0.714,1.045,1.485,0.852,0.57,1.089,0.929,0.869,0.999,1.092,0.594,0.749,1.096,1.441,1.476,0.73,1.161,0.96,0.861,1.164,1.285,0.992,1.032,1.068,0.931,1.089,0.955,0.908,1.128,0.812 +NM_012134,0.908,1.04,0.784,0.976,0.948,1.172,0.94,0.737,1.034,0.885,1.288,0.921,1.043,0.947,0.996,1.335,0.792,1.027,0.839,0.973,1.189,0.814,1.358,0.763,1.101,0.912,0.837,1.192,0.849,1.231,0.797,1.937,0.945,2.197,0.957,0.974,0.887,1.272,1.151,0.885,1.703,2.344,1.197,0.914,0.866,0.953,0.968,0.853,0.953,1.052,1.181,1.09,1.104,0.953 +NM_012137,0.396,1.428,0.226,0.727,0.566,2.159,0.709,0.677,0.697,0.342,2.185,0.52,0.314,0.412,1.47,3.228,0.137,1.036,0.508,2.376,0.163,0.631,2.473,0.494,0.782,0.402,0.38,0.601,0.611,2.199,0.754,0.965,2.575,1.642,0.292,0.963,2.882,0.536,1.813,0.387,0.352,1.959,1.356,0.687,0.327,2.281,1.311,0.368,2.126,0.144,2.369,0.676,0.259,1.682 +NM_012138,0.744,1.091,0.927,0.805,0.642,1.343,0.849,0.532,0.831,1.012,0.951,0.795,0.685,0.613,0.924,1.292,0.761,0.779,0.956,0.861,0.789,0.706,1.165,1.06,0.962,0.846,0.978,0.693,0.591,1.337,0.864,1.343,4.012,1.298,0.433,1.253,0.919,0.9,1.827,1.083,0.952,1.201,1.101,2.109,0.956,0.921,0.859,0.678,1.016,0.761,1.278,1.373,1.154,1.753 +NM_012139,0.7,1.126,1.054,0.995,0.765,1.168,0.767,0.623,0.83,1.011,1.213,1.046,0.889,0.705,0.817,1.148,0.901,1.023,1.034,1.025,0.75,0.909,1.268,0.978,0.994,0.932,1.135,0.698,0.85,1.101,0.824,1.245,1.265,1.683,0.526,1.103,1.096,1.242,2.203,0.899,0.936,1.209,0.79,0.824,0.843,0.949,1.022,0.865,0.822,0.787,0.997,0.811,0.947,0.915 +NM_012140,0.651,1.108,1.273,0.612,0.879,1.214,0.535,0.365,0.882,1.173,1.116,0.914,0.565,0.497,0.96,1.794,0.946,1.381,1.269,1.153,0.335,0.683,1.641,0.947,0.623,1.029,1.025,0.766,0.593,1.529,0.628,0.742,0.846,1.249,0.108,0.598,1.431,1.268,1.396,0.43,1.246,1.386,0.864,1.458,0.97,1.647,1.31,0.723,1.417,1.056,1.189,0.581,0.6,1.154 +NM_012141,0.931,0.865,1.072,0.967,1.076,1.042,0.85,0.87,1.245,0.966,0.889,0.918,0.837,1.028,0.916,1.068,0.965,0.965,0.928,1.048,0.784,0.776,0.99,1.083,0.926,0.884,1.093,1.155,0.827,1.013,1.046,1.015,1.144,1.177,0.864,0.877,0.801,0.934,1.093,1.008,1.293,1.015,0.915,1.166,1.111,1.044,1.018,0.843,1.046,0.99,0.96,0.977,0.895,1.307 +NM_012142,1.0,1.06,1.261,1.123,1.146,0.957,0.877,0.791,1.171,1.059,1.028,0.985,0.928,1.094,1.213,1.061,1.143,0.875,1.054,1.146,0.923,0.863,1.046,0.807,0.91,0.996,0.916,1.048,0.814,1.063,1.355,1.159,1.042,1.028,1.206,0.919,1.134,0.951,1.0,0.939,1.134,1.075,0.927,0.87,1.094,0.955,0.966,0.92,1.077,0.849,0.908,0.924,1.069,0.951 +NM_012143,0.646,1.17,1.541,0.636,0.975,0.864,0.704,0.37,1.141,1.391,0.746,0.843,0.485,0.691,0.712,0.77,1.092,0.994,1.089,1.159,0.519,0.917,1.16,0.967,0.496,0.884,1.353,0.897,0.565,1.163,0.769,1.305,1.06,0.979,0.264,1.016,1.044,1.095,1.387,0.938,1.327,1.249,0.844,0.924,1.199,0.982,0.918,0.751,1.056,1.026,1.081,0.96,1.047,1.225 +NM_012144,1.091,1.036,1.003,1.019,1.036,1.027,0.87,0.95,0.899,0.929,1.093,0.928,0.997,1.065,0.85,1.114,0.962,1.105,0.933,0.94,1.21,0.989,0.846,0.904,1.097,0.923,0.975,1.336,1.159,0.903,1.061,1.028,1.053,1.0,1.015,1.037,0.97,0.952,1.009,1.057,0.984,1.002,0.882,0.879,0.913,1.026,1.038,1.101,1.109,1.229,0.992,0.959,1.0,0.937 +NM_012145,0.557,1.155,0.972,0.845,0.826,0.986,0.611,0.423,0.944,1.042,0.916,1.149,0.698,0.458,0.684,1.205,0.822,1.046,1.052,0.968,0.463,0.684,2.057,1.1,0.556,0.664,1.476,0.851,0.39,1.194,0.621,1.854,2.758,1.003,0.165,2.078,0.932,0.737,1.594,1.438,1.122,0.786,0.812,2.69,0.909,0.917,1.665,0.676,1.545,0.678,1.206,1.307,0.876,4.523 +NM_012151,0.428,1.102,1.398,0.4,0.828,1.284,0.445,0.402,1.075,0.855,1.068,0.789,0.353,0.788,1.102,1.241,0.971,0.503,1.278,1.299,0.548,0.626,1.029,1.154,0.385,0.459,1.601,0.887,0.379,0.961,0.871,2.192,2.123,1.598,0.0787,1.431,0.903,0.752,1.088,0.816,1.372,1.096,0.595,1.544,0.829,1.015,1.237,0.359,0.743,0.639,1.349,0.685,1.228,1.958 +NM_012152,1.096,0.927,1.035,1.034,1.126,0.946,0.917,1.22,1.096,0.996,0.997,1.117,1.036,0.973,1.075,0.946,0.971,0.98,1.129,1.063,0.873,0.916,0.795,0.968,1.042,0.863,1.095,1.064,0.838,0.938,1.103,0.83,1.01,0.929,1.043,1.019,0.896,1.069,0.968,0.938,1.031,0.875,0.993,1.068,0.992,0.965,0.854,1.088,0.997,1.078,0.913,0.973,0.972,0.976 +NM_012153,2.476,0.528,3.206,1.179,4.081,0.646,0.502,3.01,4.443,2.87,0.7,1.048,1.438,1.65,2.481,1.627,2.727,2.016,3.67,0.615,1.334,1.268,0.772,2.074,0.416,2.304,2.061,4.065,0.358,0.718,3.233,0.448,1.817,0.578,8.85,0.651,0.674,2.885,0.907,0.58,3.864,0.572,0.637,0.895,2.738,0.817,2.326,3.294,0.972,2.332,0.914,1.189,2.212,1.477 +NM_012154,0.653,0.954,1.242,0.493,0.971,0.74,0.797,0.536,0.866,1.077,0.831,0.805,0.537,0.588,0.721,0.789,0.72,0.961,0.961,0.9,0.775,0.889,1.39,1.05,0.594,0.579,1.082,0.877,0.812,0.958,0.726,1.723,1.145,0.972,0.491,1.499,1.287,0.998,1.408,4.996,0.959,1.21,1.552,1.865,1.271,1.295,1.404,0.493,1.662,0.671,1.143,1.772,0.843,1.629 +NM_012155,0.772,1.254,1.217,0.652,1.142,1.11,0.599,0.328,1.192,1.154,0.892,0.824,0.391,0.538,0.715,1.022,1.181,1.033,1.261,0.986,0.526,0.959,1.351,1.18,0.549,1.279,1.211,0.851,0.588,1.561,0.845,0.515,0.737,1.299,0.303,0.993,1.079,1.049,1.185,0.659,0.964,1.099,0.551,1.116,1.067,1.072,1.081,0.918,0.876,0.825,1.187,0.675,1.203,0.654 +NM_012156,1.122,0.992,1.046,1.031,1.105,1.049,0.976,0.999,1.161,1.108,1.043,0.999,1.027,0.996,0.936,0.947,1.111,1.005,1.082,0.977,0.949,0.895,0.914,0.947,1.1,0.97,1.107,1.048,0.838,0.947,1.018,0.964,1.005,0.883,1.204,1.02,0.987,0.858,1.19,0.971,0.936,0.993,1.033,1.138,1.094,0.932,0.956,0.912,0.93,1.101,0.9,1.207,0.935,1.113 +NM_012157,0.949,0.941,0.931,0.908,0.879,1.106,1.134,0.968,0.928,1.088,0.94,0.996,0.819,0.959,0.903,1.135,0.994,1.075,0.937,1.031,0.885,0.936,1.102,0.992,0.992,1.022,0.966,1.057,1.003,1.185,1.089,1.404,1.579,1.023,0.875,0.934,0.889,1.01,1.105,1.046,1.029,0.989,1.404,0.967,1.007,1.021,1.146,1.005,0.832,0.973,1.042,0.99,0.908,0.999 +NM_012159,0.93,0.843,0.931,0.959,1.052,0.973,0.977,0.937,1.082,1.126,1.008,1.133,1.027,0.907,0.958,1.017,1.108,0.974,0.998,0.962,0.886,0.902,1.153,1.021,0.909,0.909,0.927,0.965,1.287,1.075,1.012,0.862,1.111,1.017,1.21,1.092,1.08,0.832,0.975,0.904,1.128,1.111,1.214,0.973,0.981,1.051,0.963,1.007,1.051,1.077,0.988,1.092,0.976,0.979 +NM_012160,1.045,1.188,1.112,1.025,0.853,0.935,0.941,0.978,1.049,0.961,1.014,0.887,0.957,1.227,1.093,0.998,0.831,1.047,0.904,1.251,1.065,0.772,0.82,1.011,0.94,0.837,1.047,0.878,1.21,1.139,0.917,1.106,0.977,1.141,0.918,1.032,0.86,0.88,1.027,1.134,1.064,1.036,0.913,1.17,1.016,0.941,1.131,0.912,0.789,0.824,0.943,0.971,0.994,1.257 +NM_012161,0.795,1.048,1.45,0.797,1.125,1.429,0.81,0.846,1.303,1.164,1.107,1.439,0.788,0.748,1.133,1.658,0.771,1.182,0.917,1.468,0.328,1.152,1.293,1.256,0.696,0.757,1.214,1.028,0.455,1.198,0.92,1.038,0.885,1.267,0.33,0.437,1.44,1.19,1.075,0.771,1.123,1.404,0.815,0.496,1.039,1.165,1.056,0.895,0.949,0.642,1.258,0.891,0.804,0.859 +NM_012163,1.078,1.043,1.047,0.939,0.992,0.981,0.815,0.982,1.063,1.069,0.915,1.045,0.88,0.874,0.823,1.049,0.927,0.917,0.923,1.037,1.112,1.044,0.98,1.031,1.02,1.036,0.917,1.096,0.731,1.03,1.022,1.057,1.205,0.925,1.016,1.074,1.07,0.977,0.923,0.885,0.905,1.071,0.926,1.003,1.052,0.903,1.057,1.115,0.977,0.959,1.031,0.906,1.058,0.889 +NM_012164,0.865,1.005,0.933,0.904,1.061,0.941,0.82,0.763,1.106,1.12,0.823,0.911,0.806,0.857,0.847,0.914,1.165,1.064,1.139,0.868,0.8,1.056,0.994,1.166,0.69,1.049,1.214,0.918,0.557,1.015,0.924,1.48,1.302,1.112,0.725,0.818,0.891,0.925,1.297,1.041,1.091,0.935,0.979,1.377,1.271,0.909,0.928,0.837,0.952,1.022,0.952,0.937,1.036,1.628 +NM_012165,1.008,1.155,1.065,1.403,0.947,1.0,0.978,0.843,1.019,0.841,0.972,1.035,0.933,0.99,0.832,0.859,0.992,0.939,1.131,1.011,1.058,0.929,0.952,1.129,1.214,1.156,1.126,0.949,1.005,1.091,0.898,0.909,1.097,0.939,0.918,0.96,1.0,1.084,1.009,1.037,1.012,0.842,1.023,1.119,1.031,1.039,1.046,0.908,0.949,1.068,1.032,1.11,0.975,1.053 +NM_012167,2.102,1.84,1.967,2.178,2.223,1.8459999999999999,1.605,1.9249999999999998,2.048,2.1340000000000003,2.021,1.995,1.826,2.024,1.783,1.7690000000000001,1.9809999999999999,1.859,1.8410000000000002,1.946,1.954,1.896,1.939,2.231,1.766,2.039,2.077,1.987,1.834,1.997,2.21,2.084,2.342,1.917,1.967,1.838,1.7200000000000002,2.032,2.206,2.0300000000000002,2.1879999999999997,1.992,1.849,2.102,2.2030000000000003,2.173,2.11,1.813,1.9369999999999998,1.8359999999999999,2.192,2.106,2.071,2.248 +NM_012168,1.121,1.6,1.135,0.966,0.993,0.931,0.797,0.918,0.947,1.007,0.888,1.16,0.98,0.863,1.057,0.8,1.171,0.817,1.315,0.846,1.106,1.012,1.024,1.214,0.904,1.02,1.128,0.928,0.819,1.277,0.95,2.039,1.064,0.933,0.754,1.414,0.8,1.334,1.08,1.968,0.951,0.891,0.764,1.142,1.009,0.946,1.206,0.995,0.854,1.044,0.875,1.4,1.517,1.33 +NM_012170,1.879,1.96,2.13,1.799,1.981,1.847,1.732,1.633,2.0540000000000003,1.9779999999999998,2.3,1.612,1.73,1.737,2.015,2.396,2.036,1.9049999999999998,2.2359999999999998,1.712,1.588,1.725,2.534,2.06,1.729,1.84,2.6109999999999998,1.769,1.581,2.2800000000000002,1.842,1.931,2.9880000000000004,2.292,1.589,2.036,2.069,1.904,2.608,1.8900000000000001,2.214,2.044,1.889,2.184,1.826,1.8940000000000001,2.3449999999999998,1.758,2.097,1.853,2.197,1.974,1.989,2.217 +NM_012172,1.008,1.165,0.981,1.022,1.175,1.089,0.972,0.943,0.981,1.0,0.887,1.051,0.976,1.132,1.064,0.942,0.886,0.82,0.976,0.89,0.919,0.953,1.204,1.045,0.959,1.093,1.053,0.917,1.05,0.96,0.886,0.869,1.053,0.969,1.005,1.119,1.003,0.894,0.989,0.906,0.97,0.99,1.026,1.007,1.036,0.961,1.004,0.964,0.954,1.054,1.026,1.021,0.971,1.056 +NM_012173,0.948,1.103,0.951,0.837,0.971,1.008,0.813,0.888,1.008,0.868,1.037,1.137,0.914,0.789,0.941,1.04,1.117,0.892,0.864,1.074,0.992,0.928,1.059,0.98,0.958,1.032,1.134,1.105,0.633,1.086,0.998,1.052,0.86,1.0,0.841,0.952,0.963,1.05,1.287,1.027,1.115,1.019,0.941,0.955,0.991,1.089,1.088,0.987,1.097,0.902,1.069,0.918,0.964,1.044 +NM_012174,0.819,1.043,0.908,0.828,0.937,1.021,0.957,0.97,1.032,1.022,0.998,1.123,0.985,0.972,0.926,1.058,1.111,1.017,0.855,1.05,0.865,0.931,0.933,1.109,1.136,1.074,1.048,1.165,0.939,0.963,1.069,1.099,1.091,0.894,0.913,1.067,0.96,0.851,1.096,0.903,1.1,0.896,0.948,1.113,1.061,1.113,0.868,1.048,1.088,1.092,0.92,0.983,1.274,0.921 +NM_012175,0.922,0.885,1.054,1.067,1.027,0.972,0.76,0.739,1.571,1.127,1.093,0.886,0.72,0.923,1.071,1.307,0.838,0.759,0.913,1.008,0.685,0.742,1.017,0.962,0.735,0.9,1.078,1.104,0.622,1.006,1.178,1.105,1.251,1.144,1.015,1.004,0.967,0.867,0.931,0.77,1.075,0.883,0.912,0.756,0.983,1.076,1.104,0.792,0.969,0.961,1.014,1.002,1.146,1.255 +NM_012176,1.875,1.967,2.23,2.019,1.818,2.5869999999999997,1.6030000000000002,1.787,2.026,2.024,2.192,2.07,1.876,1.684,2.011,3.2640000000000002,1.734,2.032,1.979,2.1390000000000002,1.629,1.772,2.548,2.11,1.7839999999999998,1.676,2.105,1.923,1.476,2.169,2.039,2.2119999999999997,5.141,2.554,1.217,2.229,2.216,1.744,1.889,1.688,2.0229999999999997,2.324,1.7469999999999999,2.479,1.766,2.059,1.884,1.695,2.203,1.666,2.149,1.9460000000000002,1.7149999999999999,2.592 +NM_012177,0.775,0.831,1.162,0.822,0.911,0.906,0.796,0.79,1.272,0.983,0.98,0.89,0.924,0.655,0.846,1.083,0.697,1.002,1.075,1.001,0.835,0.806,1.402,1.159,0.727,0.88,1.805,0.941,0.954,1.095,0.879,1.108,2.436,1.067,0.74,1.567,0.949,0.885,1.5,1.246,1.03,0.847,0.945,1.803,1.009,0.894,1.245,0.642,1.242,0.953,1.046,1.063,0.922,2.24 +NM_012179,0.693,1.207,1.054,0.922,0.812,1.268,0.621,0.55,0.866,0.963,1.049,0.72,0.667,0.571,0.945,1.456,0.852,1.075,0.961,1.208,0.56,0.755,1.256,0.851,0.976,0.888,0.86,0.679,0.738,1.284,0.779,1.373,1.286,1.451,0.349,0.872,1.43,0.748,1.638,0.841,0.915,1.281,0.854,0.979,0.794,1.312,0.789,0.718,0.944,0.707,1.121,0.831,0.843,1.604 +NM_012180,0.775,1.116,1.142,0.717,1.007,1.272,0.673,0.842,1.204,0.672,1.145,1.105,0.824,0.655,1.066,1.198,0.99,1.12,1.337,1.156,0.517,0.875,0.739,1.118,0.516,0.884,1.324,1.19,0.402,1.302,1.049,1.02,0.911,1.545,0.696,0.581,1.246,1.127,1.045,0.476,1.037,1.184,0.606,0.73,1.001,1.05,0.821,0.918,0.693,0.853,0.906,0.598,0.864,1.101 +NM_012181,1.42,0.86,1.086,1.178,0.862,1.198,0.766,1.307,0.943,0.82,0.902,0.878,1.477,1.082,1.056,1.052,0.97,0.918,1.343,0.847,1.583,1.019,0.787,1.0,0.967,2.014,0.869,0.876,0.901,0.935,1.061,0.894,1.109,1.298,1.158,0.795,0.891,1.152,1.687,0.963,0.896,0.924,0.842,1.466,1.005,0.859,0.899,1.865,0.825,1.259,0.858,0.86,1.0,0.952 +NM_012182,0.999,0.862,0.893,0.886,1.075,1.078,0.82,1.125,1.002,0.856,0.895,0.892,0.97,0.848,0.872,1.302,1.011,0.995,0.73,1.095,0.939,0.843,1.01,1.038,1.073,0.851,1.138,0.838,0.939,1.011,1.01,1.151,1.27,1.044,0.945,0.911,0.949,1.075,0.961,0.985,0.983,0.962,0.893,1.105,1.025,1.048,1.057,1.038,0.87,1.016,0.981,1.229,1.097,1.026 +NM_012183,0.784,0.938,0.83,1.048,0.968,1.007,0.909,0.969,1.054,1.006,1.03,1.047,1.009,1.152,0.85,1.171,0.947,0.913,0.848,0.95,1.086,1.076,1.031,1.061,1.059,0.973,1.072,0.869,0.82,0.943,1.075,0.958,0.99,0.982,1.076,0.904,1.094,0.976,0.857,0.969,1.002,0.998,1.074,0.944,1.003,1.159,0.989,1.129,0.926,1.147,1.011,1.062,1.12,0.876 +NM_012184,0.943,1.081,0.867,0.964,1.289,0.98,1.093,0.965,0.98,1.161,1.011,0.916,0.946,1.163,1.077,1.129,1.036,0.975,1.034,0.924,0.909,0.944,1.045,1.002,0.991,0.907,1.064,1.016,0.839,1.076,1.063,1.104,0.957,1.021,0.948,0.928,1.002,0.955,1.077,0.975,0.984,1.113,0.977,1.106,0.958,1.071,0.938,1.054,1.048,1.021,0.985,0.795,0.871,0.975 +NM_012186,1.09,1.049,0.952,0.907,0.99,1.04,0.859,1.027,1.074,0.828,1.046,1.059,0.899,0.956,0.879,0.878,1.04,0.943,0.951,0.999,0.979,1.057,1.001,0.932,0.897,0.94,1.088,0.95,0.94,0.942,1.205,0.964,1.074,0.985,1.115,1.003,0.948,0.986,0.909,1.037,1.043,1.024,0.889,1.014,0.928,1.105,1.041,0.943,1.082,1.152,1.054,1.135,0.961,1.119 +NM_012188,0.979,1.049,1.014,1.112,1.012,1.043,1.092,1.001,1.077,0.983,1.018,0.992,1.062,0.922,0.975,1.025,1.057,0.968,1.015,0.879,1.14,1.021,1.059,0.977,0.923,1.059,0.909,0.964,1.242,1.067,1.194,1.127,1.07,0.836,0.92,1.011,0.874,0.971,1.025,0.992,1.041,1.013,0.907,0.995,0.983,0.995,1.096,1.01,1.144,0.944,1.113,0.986,1.102,0.88 +NM_012190,1.017,0.998,1.043,1.005,0.939,0.903,1.22,0.811,1.156,0.887,1.156,0.887,0.974,0.843,1.103,1.101,1.038,0.971,0.902,0.993,0.802,1.073,0.937,1.058,0.894,1.194,0.921,1.069,1.021,0.995,0.83,0.891,1.119,1.01,1.253,0.96,0.958,0.996,1.628,0.942,0.902,1.119,1.054,0.875,1.172,1.794,1.022,0.96,1.15,0.952,0.977,0.845,1.1,1.021 +NM_012191,0.905,0.925,0.979,0.984,0.728,1.146,0.807,0.938,1.069,0.949,1.01,1.121,0.85,1.098,0.977,0.986,0.988,0.922,1.253,1.129,0.925,1.033,1.044,0.841,1.198,0.957,0.967,0.825,1.086,0.998,0.903,0.896,1.466,1.077,0.844,1.218,0.994,1.097,1.053,0.985,0.845,1.018,0.857,0.926,0.849,1.092,0.989,1.003,1.006,1.173,0.918,1.186,1.062,0.983 +NM_012192,0.996,1.029,0.892,1.044,1.116,1.014,0.841,0.908,0.852,0.936,0.869,1.107,1.117,0.911,1.011,1.073,1.049,0.901,1.049,1.13,1.018,1.012,0.964,1.06,1.026,0.935,0.902,1.043,0.745,1.057,1.032,0.941,0.947,0.962,0.929,1.002,1.043,0.935,0.879,1.087,0.91,0.862,1.178,0.95,1.014,1.151,0.985,1.069,0.951,1.066,1.071,0.917,0.895,0.883 +NM_012193,0.759,2.164,0.804,1.001,0.706,1.146,1.0,0.785,0.682,0.756,0.97,0.791,0.752,0.702,0.837,0.914,0.79,1.021,0.727,1.16,0.776,0.706,1.344,0.832,1.702,0.772,0.965,0.924,0.943,3.48,0.741,4.991,1.041,2.075,0.768,0.902,1.198,0.891,1.377,1.322,0.868,1.676,0.818,0.971,0.832,0.821,0.904,0.882,0.82,0.771,1.089,1.057,0.79,1.103 +NM_012197,0.854,1.085,1.804,0.511,0.973,0.819,0.554,0.693,1.511,1.194,0.715,0.908,0.636,0.632,1.084,0.855,1.04,1.185,1.345,1.088,0.494,1.146,1.239,1.474,0.625,0.751,1.703,1.197,0.441,1.087,0.965,2.381,1.456,1.051,0.742,0.56,0.792,1.393,1.076,1.087,1.276,1.305,0.581,0.987,1.143,0.962,0.99,0.692,0.622,0.741,0.988,1.059,0.905,1.11 +NM_012198,0.536,1.716,0.895,1.246,0.541,1.529,0.821,0.436,0.802,0.499,1.226,0.491,0.53,0.518,0.788,1.256,0.604,1.02,0.661,1.085,0.4,0.563,1.318,0.605,0.835,0.521,0.763,0.642,0.687,1.64,0.591,1.889,1.522,2.143,0.314,0.867,1.297,0.39,1.723,3.018,0.697,1.379,0.665,1.247,0.653,1.001,0.687,0.472,0.818,0.571,0.938,1.165,0.659,2.195 +NM_012199,0.681,1.066,1.232,0.665,0.804,1.134,0.646,0.644,0.925,0.808,1.127,0.645,0.654,0.987,1.058,1.491,0.708,0.85,1.407,0.857,0.853,0.762,1.141,0.823,0.863,0.814,0.923,0.782,0.741,1.221,1.007,1.744,2.895,1.762,0.465,0.871,1.268,0.971,1.559,0.763,0.838,1.234,0.882,1.439,0.894,0.936,0.818,0.897,0.73,0.889,0.935,0.719,1.157,1.69 +NM_012200,0.87,1.087,0.861,0.952,0.791,1.226,0.845,0.8,0.842,0.796,0.991,0.851,0.963,0.804,0.945,1.12,0.81,0.863,1.1,0.963,1.037,0.972,1.01,0.92,1.107,0.997,0.982,0.665,0.854,1.114,0.79,1.944,1.366,1.321,0.646,1.126,0.886,0.903,1.967,1.227,0.877,1.093,1.258,1.387,0.611,0.878,0.942,1.023,0.844,0.835,1.005,0.886,0.974,1.189 +NM_012201,0.615,1.021,1.115,0.593,0.754,1.054,0.755,0.47,0.82,0.786,0.945,0.572,0.545,0.694,0.923,1.389,0.691,0.855,0.929,1.245,0.633,0.779,1.866,0.831,0.826,0.61,1.16,0.743,0.582,1.298,0.792,1.77,1.906,1.342,0.408,1.156,1.124,0.818,2.123,1.273,0.756,1.965,0.885,2.306,0.879,1.193,1.092,0.52,0.91,0.76,1.529,0.904,0.942,0.993 +NM_012202,1.017,1.035,1.078,1.024,0.922,1.048,0.988,1.054,0.929,0.969,1.107,1.017,0.992,0.977,1.07,0.952,0.953,0.962,1.133,1.005,0.947,1.056,1.203,0.991,1.011,0.902,1.115,1.018,1.267,1.069,1.057,1.034,0.967,1.032,1.061,0.968,1.112,1.191,0.954,0.964,1.15,0.989,1.058,1.052,0.973,1.034,0.929,1.011,1.112,1.011,0.948,0.941,1.221,0.898 +NM_012203,0.509,0.839,1.259,0.654,1.12,1.483,0.647,0.572,1.391,0.854,0.964,0.868,0.765,0.523,1.058,1.598,0.874,1.101,1.247,1.379,0.338,1.027,1.574,1.109,0.483,0.783,1.125,1.195,0.523,1.182,0.993,1.441,1.193,1.24,0.304,0.462,1.325,1.003,1.031,0.385,1.186,1.272,0.603,1.147,1.037,1.085,1.041,0.731,1.021,0.743,1.154,0.924,0.618,1.947 +NM_012205,1.115,1.02,0.965,0.835,0.994,1.015,0.951,0.961,1.075,1.027,1.065,1.019,0.93,1.0,1.043,1.579,1.07,0.89,0.979,1.153,1.074,0.919,1.164,0.964,1.107,1.034,0.875,0.889,1.383,0.975,0.894,1.031,1.274,0.966,0.868,0.882,1.182,1.032,0.898,0.834,1.027,1.104,1.005,1.234,0.987,1.223,1.137,1.033,1.082,0.994,1.04,0.989,0.961,1.016 +NM_012206,1.036,0.875,1.123,0.705,0.757,1.089,0.929,0.936,0.905,1.003,0.921,0.995,1.001,0.826,1.002,1.19,0.956,1.006,1.024,1.024,0.996,1.016,1.12,0.885,1.013,1.236,1.059,0.822,0.912,0.957,1.02,1.054,0.931,0.999,1.059,1.061,0.852,1.042,1.051,1.092,0.954,0.84,0.819,0.931,1.221,1.016,0.885,1.008,0.938,1.091,0.944,1.072,1.012,1.047 +NM_012208,0.536,0.947,1.059,0.471,0.782,1.713,0.545,0.415,1.079,0.877,1.168,0.82,0.42,0.722,0.995,1.41,0.913,0.718,1.109,0.926,0.625,0.749,1.118,0.979,0.573,0.557,1.3,0.812,0.527,1.585,0.851,1.022,2.83,1.426,0.328,0.648,1.229,1.03,1.127,0.624,1.189,1.103,1.002,0.643,0.738,1.401,1.114,0.54,1.483,0.614,1.33,0.811,0.81,1.669 +NM_012210,0.952,1.058,1.115,0.843,0.996,1.086,0.766,0.747,1.093,0.969,0.989,0.846,0.698,0.985,1.007,1.359,0.862,1.015,1.049,0.824,0.749,0.866,1.158,1.091,0.856,1.002,0.995,0.838,0.791,1.108,0.935,1.374,1.654,1.077,0.801,0.907,1.082,1.043,1.099,0.911,0.975,1.271,0.705,1.218,0.945,0.879,0.912,0.887,0.891,0.81,1.025,1.018,0.996,1.462 +NM_012211,0.915,0.928,0.956,0.946,0.972,1.032,0.981,0.898,0.945,0.803,0.98,1.14,0.863,1.013,0.946,0.993,0.912,0.924,0.897,1.024,1.106,0.92,1.013,1.007,1.045,0.957,1.165,0.984,1.394,1.027,0.894,3.179,1.095,1.124,0.911,0.937,1.081,1.015,1.024,1.05,0.926,1.087,1.145,0.951,0.927,0.982,1.0,0.963,0.922,0.856,1.055,1.019,0.916,0.989 +NM_012212,0.728,2.2,2.324,1.039,1.094,0.858,1.008,0.567,1.71,1.364,1.304,0.618,0.92,1.194,1.318,2.271,1.247,1.128,2.204,0.785,0.573,0.972,0.866,0.996,0.972,1.522,1.592,1.857,0.704,1.414,1.945,0.567,1.115,1.854,0.276,0.227,0.987,1.307,0.937,0.318,1.784,1.019,0.772,0.634,1.948,0.64,0.799,1.004,0.834,1.064,0.813,0.527,1.398,0.842 +NM_012213,0.627,1.451,0.903,0.647,0.78,1.42,0.877,0.417,0.855,0.608,1.264,0.595,0.567,0.544,0.981,1.425,0.918,0.934,0.774,1.454,0.469,0.7,1.213,0.766,0.974,0.615,1.108,0.762,0.603,1.835,0.681,1.284,1.257,1.777,0.273,0.716,1.299,0.81,1.354,0.623,1.054,1.323,0.857,0.872,0.754,1.247,1.111,0.64,1.201,0.516,1.397,0.736,0.559,0.979 +NM_012214,0.672,1.059,0.935,0.791,0.9,1.488,0.756,0.817,0.865,0.756,1.695,0.886,0.751,0.943,1.627,3.357,0.723,0.738,1.041,1.292,0.844,0.928,1.342,0.762,0.824,0.815,0.966,0.896,0.712,1.167,0.956,1.072,1.799,1.13,0.957,0.846,2.218,0.816,1.037,1.513,0.92,1.407,1.452,0.912,0.847,2.243,2.356,0.812,1.722,0.719,1.277,0.871,0.82,1.758 +NM_012216,0.87,1.088,0.984,0.754,1.012,1.034,1.08,0.904,1.061,1.23,1.083,0.969,0.937,1.022,1.171,1.165,1.008,1.018,0.983,0.876,1.066,1.048,1.076,1.046,0.955,1.178,1.084,1.03,1.209,1.021,0.983,0.937,0.967,0.97,1.085,1.09,0.961,0.954,1.057,0.999,0.98,0.965,1.078,0.975,1.017,0.989,1.088,1.088,1.017,0.954,1.065,0.986,0.944,1.084 +NM_012217,0.851,1.026,0.965,0.949,1.077,1.081,1.615,0.816,1.063,1.173,0.846,1.014,1.02,1.076,0.946,1.088,0.998,1.056,0.951,0.931,0.854,0.951,1.118,0.942,0.953,0.99,1.047,0.845,1.38,0.984,1.186,1.281,1.171,1.018,0.995,0.834,0.977,0.873,0.924,0.886,1.064,1.245,1.017,1.019,1.002,1.184,1.009,0.926,0.933,1.021,1.051,0.96,1.038,1.15 +NM_012218,0.828,0.919,1.078,0.838,0.769,1.032,0.697,0.604,1.062,0.741,0.807,0.738,0.686,0.823,1.031,0.972,1.0,0.766,0.876,1.08,0.883,0.925,1.228,1.054,0.874,0.883,1.337,0.768,0.64,1.128,1.009,1.628,1.994,1.297,0.482,1.002,0.893,1.076,1.338,1.472,0.898,1.053,0.717,1.591,0.81,0.681,0.691,0.726,0.696,0.826,0.998,1.058,0.946,2.359 +NM_012219,0.786,1.468,0.9,0.958,0.85,1.012,1.017,0.896,0.823,0.627,1.241,0.914,0.884,0.78,0.877,1.096,0.831,0.842,0.924,0.863,0.88,0.852,1.293,0.926,1.18,0.888,1.007,0.851,0.716,1.312,1.007,4.109,2.058,1.571,0.736,0.957,1.012,0.99,1.192,1.325,0.971,1.538,0.831,0.967,0.88,0.86,0.957,0.749,0.924,0.891,1.055,1.311,1.077,1.283 +NM_012222,0.712,2.162,0.875,0.963,0.705,1.729,1.022,0.478,0.953,0.968,1.116,0.79,0.701,0.598,0.946,1.219,0.708,1.058,0.82,1.648,0.665,0.739,1.333,0.911,0.722,0.823,0.932,0.761,0.766,1.22,0.757,1.398,2.92,1.477,0.452,1.435,1.024,0.677,1.661,0.9,0.78,1.43,0.761,3.198,0.988,0.95,1.05,0.774,0.955,0.734,1.153,0.722,0.886,2.004 +NM_012223,0.694,1.151,1.279,0.762,0.942,0.852,0.658,0.668,0.859,1.296,0.939,0.824,0.816,0.691,0.801,1.356,1.165,0.879,1.117,1.109,0.853,0.701,2.068,1.082,0.592,0.607,1.392,0.703,0.683,0.892,0.999,1.613,1.885,0.857,0.741,1.607,0.785,0.734,1.0,1.741,1.189,1.222,0.997,0.803,1.189,1.216,1.149,0.684,1.752,1.019,1.23,1.74,1.461,1.865 +NM_012227,0.852,1.164,1.069,0.927,0.756,0.814,0.662,0.627,0.972,0.941,1.109,0.912,0.895,0.907,1.314,2.491,0.787,0.904,1.481,1.048,0.54,0.86,1.367,1.142,1.047,1.079,1.054,0.762,0.527,1.174,0.92,1.231,1.68,1.864,0.407,0.727,0.965,0.89,1.261,0.613,1.096,1.012,0.864,0.883,0.895,0.888,0.78,0.997,0.929,0.807,1.197,0.886,1.053,0.973 +NM_012228,0.705,1.142,1.119,0.89,0.787,1.312,0.788,0.414,0.79,0.927,1.644,0.933,0.676,0.569,1.034,1.683,0.88,1.09,0.685,1.527,0.349,0.629,1.624,0.773,0.578,0.847,1.133,0.922,0.389,1.544,0.675,1.848,1.868,1.295,0.297,0.836,1.424,0.767,1.201,0.938,1.044,1.439,0.946,2.355,0.842,1.456,1.718,0.624,1.04,0.63,1.455,0.802,0.781,0.892 +NM_012231,1.069,0.997,1.131,0.925,0.858,0.934,0.879,1.033,1.009,0.955,0.907,1.043,0.895,1.055,0.874,1.216,0.983,0.972,0.916,1.005,1.092,0.972,1.117,0.988,0.942,0.953,0.983,1.056,0.836,1.009,1.051,1.712,1.138,1.062,0.999,0.942,1.013,1.046,0.936,1.154,1.032,0.931,0.886,0.828,0.926,1.06,0.846,0.874,0.94,0.957,0.975,0.981,1.131,1.041 +NM_012232,0.904,0.908,1.008,0.89,1.074,0.793,0.832,0.928,1.001,1.052,1.062,0.996,0.925,0.719,1.001,0.784,1.065,1.039,0.935,0.92,0.975,0.923,0.948,0.967,1.019,0.896,1.207,0.907,1.023,1.036,0.806,1.656,0.964,1.081,0.962,1.038,0.831,1.249,1.159,1.165,1.184,1.254,0.937,0.991,1.084,0.873,0.988,0.941,0.957,0.966,0.911,1.126,1.007,1.045 +NM_012234,0.576,0.997,1.587,0.595,0.731,1.178,0.806,0.832,1.285,0.812,1.189,1.003,0.778,0.78,0.792,1.024,0.793,1.006,0.954,0.902,0.835,1.476,1.432,1.077,0.546,0.61,0.895,0.976,0.595,0.981,0.859,1.608,0.924,1.182,0.752,0.968,1.013,1.153,1.225,1.517,0.942,1.203,1.24,0.993,0.705,1.312,1.079,0.685,1.045,0.459,1.242,1.057,1.112,0.959 +NM_012235,0.526,1.101,1.219,0.542,0.866,1.082,0.432,0.436,1.189,1.163,0.937,0.994,0.543,0.536,0.756,1.319,0.912,1.05,1.319,1.199,0.253,0.838,1.284,0.959,0.535,0.88,1.375,0.866,0.542,2.014,0.672,1.271,0.963,1.318,0.145,0.324,1.044,1.035,1.079,0.971,1.12,1.137,0.694,0.915,0.96,1.027,1.076,0.788,0.897,0.746,0.949,0.906,0.858,1.077 +NM_012236,0.802,1.24,0.94,1.251,0.841,1.041,0.809,0.837,0.86,0.865,1.138,0.781,0.88,0.879,1.0,1.072,0.885,0.933,0.831,1.115,0.789,0.729,1.063,0.751,1.26,1.092,0.974,1.023,1.315,1.267,0.948,1.603,1.402,1.383,0.836,0.878,1.04,0.816,1.346,0.994,0.918,1.327,1.033,1.352,0.889,1.011,0.809,0.871,0.848,0.95,1.078,1.0,0.996,1.53 +NM_012238,0.731,1.1,1.174,0.708,1.003,1.111,0.942,0.912,1.038,0.77,1.065,0.839,0.96,0.863,1.103,1.229,0.911,0.904,0.916,1.264,0.586,1.019,1.161,1.084,0.844,0.805,1.313,0.941,0.813,1.124,1.054,1.357,3.593,1.438,0.715,0.8,1.056,0.885,1.327,0.962,1.048,1.31,1.017,1.036,0.97,1.29,1.033,0.853,0.992,0.947,1.008,0.953,0.69,2.682 +NM_012239,0.791,1.188,1.131,0.797,1.214,1.125,0.864,0.913,1.253,0.94,0.683,1.023,0.861,0.773,0.959,0.979,0.957,1.062,1.06,1.079,0.667,0.9,1.088,1.086,0.819,1.042,1.087,1.302,1.018,1.209,1.072,1.447,1.104,1.115,0.841,1.157,0.973,0.92,1.016,0.956,1.055,0.933,0.694,0.968,1.123,0.923,1.158,0.972,0.923,0.943,1.022,0.659,0.929,1.264 +NM_012240,0.831,0.992,0.954,1.165,0.858,1.145,0.873,0.991,0.888,0.806,1.203,1.093,0.877,0.909,0.775,0.904,0.82,0.624,1.0,1.118,0.85,1.046,1.102,0.845,0.896,0.985,0.957,0.872,1.089,1.136,1.097,1.18,0.909,1.243,0.918,0.872,1.085,1.016,1.052,0.982,0.96,0.94,0.981,0.941,0.868,1.039,0.915,0.84,1.007,0.903,1.035,0.95,1.336,1.071 +NM_012241,1.651,2.401,2.124,1.795,1.709,2.248,1.325,1.439,1.762,1.787,2.289,1.5859999999999999,1.717,1.823,2.101,2.633,1.9100000000000001,1.858,2.359,1.9420000000000002,1.669,1.645,2.347,1.944,1.9889999999999999,1.704,1.9260000000000002,1.728,1.863,1.915,2.221,2.026,3.371,2.481,1.26,1.605,1.956,1.641,2.092,1.548,2.165,2.001,1.802,2.4989999999999997,1.51,1.79,1.802,1.638,2.1769999999999996,1.54,2.073,1.843,2.031,3.076 +NM_012242,7.988,0.412,0.819,1.168,6.268,0.516,0.438,1.575,5.137,0.407,0.376,1.628,4.215,0.469,2.328,1.248,2.02,2.47,4.608,0.391,0.817,2.665,0.314,1.254,0.447,1.424,1.738,6.904,0.226,0.448,2.421,1.271,1.045,0.534,12.46,0.4,0.551,2.966,2.444,1.181,1.858,0.348,0.37,21.28,0.944,0.318,0.955,10.06,0.412,2.161,1.166,1.21,0.482,2.025 +NM_012243,0.598,1.354,0.859,1.0,0.716,3.314,0.996,0.632,0.905,0.477,4.039,0.71,0.652,0.472,2.143,5.361,0.697,1.536,0.755,3.52,0.36,0.727,2.876,0.76,0.893,0.574,0.682,0.903,0.822,2.182,0.905,0.656,1.051,1.647,0.702,0.656,3.869,0.803,2.229,0.425,0.739,3.055,1.924,0.62,0.772,3.756,1.488,0.665,3.199,0.582,3.156,0.686,0.45,1.561 +NM_012244,0.957,0.948,0.908,0.941,1.016,0.981,0.931,0.923,0.999,0.915,0.936,0.976,0.981,1.241,0.958,1.15,1.079,1.102,0.898,0.882,0.977,1.007,1.032,0.996,1.016,0.952,1.273,1.064,1.225,0.963,1.073,1.053,1.118,1.091,0.954,1.188,1.089,0.893,1.007,0.943,0.879,0.957,1.022,1.029,0.911,1.084,0.923,1.011,0.87,1.084,1.003,0.873,0.942,0.957 +NM_012245,0.572,0.989,1.605,0.617,0.968,1.294,0.788,0.564,1.204,1.118,0.721,0.867,0.693,0.663,1.055,1.429,1.115,0.762,0.756,1.091,0.521,0.885,1.328,1.249,0.571,0.485,1.496,0.967,0.514,1.242,1.213,1.17,1.894,1.085,0.433,0.642,0.825,1.138,1.582,0.869,1.183,1.177,0.649,0.857,1.198,0.97,1.136,0.696,1.048,0.801,1.11,0.634,0.585,1.79 +NM_012248,0.373,1.907,0.641,0.661,0.525,2.292,0.772,0.415,0.633,0.529,1.429,0.533,0.476,0.348,0.961,3.973,0.442,0.917,0.656,2.789,0.428,0.503,2.319,0.596,0.566,0.478,0.8,0.521,0.63,1.201,0.583,1.857,1.804,1.719,0.36,1.203,1.929,0.637,1.966,1.141,0.716,1.619,0.783,0.973,0.569,1.423,1.49,0.538,1.769,0.56,1.256,0.586,0.45,2.836 +NM_012250,0.853,0.961,1.177,0.901,0.989,1.087,0.625,0.889,1.201,1.367,0.941,0.976,0.924,0.935,0.937,1.088,0.966,0.907,1.013,1.144,0.696,0.966,1.046,1.145,0.752,0.638,1.106,1.04,0.883,1.14,1.269,1.313,2.104,0.793,1.001,1.086,0.982,0.846,0.87,0.853,1.043,1.048,0.622,0.679,1.031,0.938,1.334,0.931,0.936,0.999,0.916,0.961,1.421,1.888 +NM_012251,0.81,1.143,0.935,0.739,0.91,1.057,0.876,0.556,1.295,1.331,1.007,0.96,0.906,0.637,0.664,0.904,0.831,0.813,0.62,1.284,0.8,0.727,1.174,1.092,1.01,0.685,1.135,0.825,0.664,1.192,0.746,1.148,3.047,0.94,0.638,2.033,0.88,0.715,1.528,0.747,1.007,1.14,0.981,5.744,0.748,1.159,1.192,0.569,1.536,0.824,1.036,1.065,0.845,2.285 +NM_012252,1.036,0.881,0.94,1.011,0.924,1.117,1.09,0.839,1.181,1.043,0.857,0.923,0.997,1.077,0.964,0.951,1.001,0.998,0.958,0.995,0.911,0.899,1.103,1.042,0.953,0.906,1.015,0.938,1.186,1.073,1.127,1.044,1.057,1.053,0.942,0.989,1.097,0.909,0.949,0.836,0.991,1.085,1.022,0.975,0.95,1.071,0.998,0.936,0.876,0.985,0.948,0.89,1.061,1.156 +NM_012253,1.005,1.054,1.104,1.007,1.006,0.995,0.99,0.93,1.044,1.171,1.064,1.189,0.929,1.243,0.853,0.994,1.072,0.941,1.019,0.974,1.054,0.991,0.969,1.069,0.901,1.054,0.96,1.096,1.213,1.011,1.106,1.025,0.956,0.98,0.932,0.952,1.076,0.983,0.991,1.232,0.966,0.888,0.993,0.93,0.939,0.998,1.012,0.96,0.984,1.034,0.989,0.929,0.999,0.921 +NM_012254,0.976,1.168,0.855,0.852,0.953,1.387,0.93,0.821,0.851,1.072,1.216,0.994,1.202,0.801,0.706,1.314,0.942,0.996,0.979,0.945,0.943,0.93,1.756,1.103,0.777,0.962,0.931,0.898,0.764,0.904,0.808,1.186,2.519,1.193,0.851,0.826,1.062,1.144,1.309,0.859,0.955,1.244,0.945,0.936,1.015,1.294,1.163,0.895,1.145,0.759,0.995,0.62,1.08,1.011 +NM_012255,0.613,0.864,1.186,0.77,0.743,0.889,0.676,0.347,0.967,0.992,0.932,0.689,0.494,0.534,0.852,1.354,0.807,0.682,0.882,1.089,0.63,0.535,1.738,0.866,0.62,0.65,1.206,0.626,0.454,1.271,0.71,1.462,3.441,1.177,0.357,1.357,0.903,0.696,1.409,1.84,1.007,1.128,1.026,1.882,0.944,1.082,0.928,0.567,1.272,0.854,1.151,1.219,1.097,3.024 +NM_012256,1.273,0.946,1.183,1.011,1.3,0.858,0.836,1.269,1.495,1.211,0.76,1.053,1.123,1.206,0.935,0.912,1.394,1.114,1.336,0.769,1.055,1.472,0.928,1.212,0.949,1.587,1.344,1.155,0.841,0.935,1.363,0.979,0.866,0.983,2.056,0.822,0.888,1.505,0.921,0.825,1.319,0.977,0.815,0.996,1.288,0.767,1.057,1.565,0.862,1.44,0.925,0.852,1.232,0.903 +NM_012257,1.223,0.807,1.968,0.871,1.705,0.907,0.697,1.204,1.842,1.228,0.794,0.936,1.372,1.073,1.191,1.167,1.446,1.197,1.163,1.195,0.569,1.206,0.948,1.252,0.687,1.505,1.171,1.756,0.432,1.031,1.89,1.284,0.842,1.017,2.726,0.681,0.773,1.522,0.927,0.851,1.58,1.035,0.603,0.783,1.376,0.818,1.191,1.653,0.784,1.338,0.954,0.857,1.051,1.005 +NM_012258,0.681,1.321,0.756,0.818,0.686,0.938,1.059,0.67,0.731,0.888,1.057,0.868,1.049,0.713,0.829,1.022,0.679,0.968,0.823,0.883,0.662,0.603,1.507,0.768,0.979,0.661,1.249,0.714,0.558,1.272,0.705,1.756,1.252,1.364,0.646,1.245,1.097,0.872,1.501,2.208,0.798,1.306,0.862,0.885,0.91,0.936,0.966,0.654,0.879,0.845,1.25,1.441,1.229,0.901 +NM_012259,0.813,1.018,1.032,1.008,1.128,0.973,1.017,1.071,1.031,0.998,1.007,0.985,1.057,0.865,0.934,1.005,0.984,1.09,1.062,0.902,0.986,1.057,0.987,1.076,0.947,0.868,0.956,1.021,1.186,0.997,1.035,1.032,0.888,0.952,1.022,0.944,0.924,1.176,0.995,0.981,1.024,1.019,1.029,0.929,1.015,0.833,1.045,1.053,0.954,0.901,1.168,0.919,1.024,1.047 +NM_012260,0.557,1.524,0.888,0.738,0.757,1.868,0.775,0.42,0.934,0.942,1.608,0.714,0.496,0.624,1.09,3.063,0.673,0.981,0.891,1.623,0.45,0.663,2.162,0.797,0.859,0.628,0.865,0.687,0.649,1.857,0.712,0.947,0.989,1.894,0.237,1.248,2.638,0.693,1.444,0.945,0.982,1.8,1.584,0.895,0.891,1.541,1.116,0.524,1.246,0.587,1.398,0.891,0.867,2.421 +NM_012261,0.963,0.907,0.931,0.982,0.895,1.203,0.95,0.861,0.902,0.95,1.101,1.014,1.018,0.979,0.817,1.035,0.944,0.854,1.022,0.944,0.929,0.949,1.014,1.01,0.922,0.944,0.967,0.823,1.028,1.036,0.87,1.464,1.029,1.109,0.837,1.017,1.011,0.87,1.094,0.807,0.85,1.005,0.806,0.989,0.854,0.985,0.946,0.965,1.038,1.033,0.919,1.048,1.128,1.322 +NM_012262,0.731,1.021,1.034,0.611,0.701,1.297,0.647,0.75,0.935,0.824,1.057,0.981,0.687,0.672,0.883,1.81,0.718,0.905,1.009,1.138,0.628,0.79,1.101,0.871,0.854,0.682,1.116,0.795,0.429,1.346,0.845,2.034,2.627,1.213,0.354,0.827,1.442,0.802,1.055,1.062,0.938,1.043,0.818,1.004,0.779,0.973,0.931,0.62,1.152,0.685,1.092,0.956,0.932,1.407 +NM_012263,0.952,1.216,1.055,0.891,0.925,1.451,0.943,0.913,0.973,0.955,0.941,0.998,0.859,0.955,0.928,0.908,0.893,0.899,1.055,1.049,0.974,0.917,1.129,0.952,0.998,1.0,1.176,0.908,0.868,1.289,0.932,1.576,1.181,1.376,0.781,0.851,1.059,1.017,1.262,1.111,0.942,1.175,0.906,1.046,0.91,0.962,0.978,0.871,0.799,0.883,1.107,0.806,1.042,0.99 +NM_012264,0.64,1.145,0.676,1.027,0.617,1.595,0.652,0.71,0.631,0.798,1.103,0.61,0.61,0.658,0.84,1.18,0.853,1.007,0.835,0.764,0.759,0.872,1.213,0.844,1.01,0.757,0.895,0.644,1.035,1.724,0.766,1.521,1.535,1.362,1.026,1.009,1.296,0.774,2.304,0.94,0.693,1.159,0.737,1.38,0.702,0.88,0.872,0.76,0.703,0.788,1.089,0.83,0.795,1.016 +NM_012265,0.927,1.125,0.852,0.937,0.796,1.283,0.903,0.874,0.901,0.915,1.339,0.826,0.952,0.874,0.931,1.507,0.939,0.944,1.004,1.059,0.908,1.061,1.031,0.945,0.973,0.996,1.042,0.947,0.842,1.252,0.791,1.045,0.977,1.302,0.718,1.169,1.117,0.955,1.626,1.085,0.923,1.133,1.192,1.128,0.886,0.891,0.943,0.929,1.094,0.973,1.058,1.157,1.126,1.47 +NM_012266,0.909,0.983,1.028,0.962,0.876,0.976,0.909,0.887,0.996,1.02,0.957,1.057,0.917,0.961,0.961,1.107,0.924,1.007,1.037,0.852,0.987,1.075,0.99,0.948,1.12,0.978,1.013,0.964,1.318,1.007,0.937,1.81,1.073,1.097,1.09,0.881,0.949,1.131,0.985,1.072,1.251,1.032,1.235,1.055,1.049,1.121,0.99,1.033,1.0,0.884,1.033,1.141,1.126,1.077 +NM_012267,0.845,0.914,0.838,0.959,0.82,1.063,0.561,0.563,0.877,1.059,0.988,0.983,0.792,0.695,0.883,1.831,1.013,0.9,1.271,0.955,0.757,0.719,1.629,1.089,0.679,1.251,1.043,0.662,0.442,0.915,0.698,0.749,2.847,0.898,0.394,1.729,1.182,0.924,2.729,0.91,1.0,1.117,1.288,1.873,1.245,1.254,1.156,0.982,1.608,1.0,1.176,0.908,1.29,1.617 +NM_012269,0.887,0.986,1.049,1.047,1.004,1.019,0.976,1.133,1.157,0.95,0.992,0.945,0.884,1.139,0.973,1.178,0.843,0.962,0.966,0.915,0.934,1.174,1.03,0.922,0.912,1.051,1.082,1.135,0.855,1.054,1.09,0.856,0.915,0.941,0.975,0.988,1.009,0.968,0.866,0.997,0.937,0.977,1.003,1.028,1.008,1.032,1.065,1.023,0.884,1.059,0.975,0.911,0.831,1.036 +NM_012275,0.909,0.9,1.108,1.043,1.281,0.98,0.909,1.033,1.12,0.871,1.012,0.886,0.985,1.056,0.858,1.094,1.11,0.907,0.993,0.952,0.935,1.002,1.127,1.008,1.128,0.998,1.083,1.292,0.813,0.991,1.012,1.104,1.187,0.957,1.117,1.022,0.993,1.124,0.821,1.109,1.039,0.862,0.969,0.926,1.081,1.034,1.049,1.0,0.909,1.095,0.965,0.856,1.174,0.802 +NM_012276,1.016,0.882,0.935,0.974,1.078,0.899,0.975,0.678,1.071,0.972,0.844,0.985,1.105,1.077,0.976,1.038,0.942,0.928,0.974,1.0,0.938,1.01,1.051,1.065,0.881,0.925,0.978,0.992,1.316,1.074,1.078,0.935,0.897,1.115,0.992,0.928,1.005,1.253,1.125,0.976,0.87,0.794,1.362,0.981,0.883,0.859,0.931,1.089,1.13,1.035,1.056,1.029,0.963,1.165 +NM_012278,1.035,0.762,1.098,1.1,1.003,0.957,0.852,0.989,1.076,0.959,1.331,1.03,1.006,1.138,1.125,1.056,0.894,0.957,0.855,1.12,0.822,0.879,1.122,1.118,0.974,1.079,0.983,0.915,0.879,0.995,1.132,1.023,1.024,1.099,1.125,0.975,0.923,0.923,1.004,0.852,1.044,0.928,1.174,1.039,1.075,0.947,0.945,0.938,0.965,1.102,1.062,1.072,0.876,1.157 +NM_012279,1.018,0.92,0.972,0.878,0.988,1.163,0.833,1.055,0.999,1.052,0.998,0.933,0.967,1.019,1.152,0.924,1.133,0.849,1.042,1.026,1.035,0.973,1.058,0.995,0.999,0.945,1.03,1.035,0.961,0.98,0.976,1.054,1.089,0.926,1.054,0.928,1.094,1.127,1.069,0.95,0.896,1.021,0.939,1.018,1.127,0.961,0.899,0.959,0.91,0.972,1.104,1.121,1.008,0.881 +NM_012281,1.01,1.0,1.111,0.868,0.932,1.075,1.142,1.071,0.951,0.995,0.958,1.081,0.92,1.003,0.949,0.996,0.971,1.024,1.048,1.025,1.072,1.011,1.138,0.918,0.949,1.013,1.161,1.06,0.828,1.027,1.086,1.411,0.88,1.145,1.036,1.049,0.764,1.0,1.098,0.973,0.884,1.02,0.935,0.913,0.924,1.16,0.867,0.915,0.93,1.014,0.979,0.947,0.936,0.932 +NM_012282,0.994,1.188,1.069,0.961,0.896,0.903,0.957,0.843,0.892,0.932,0.984,0.903,0.834,1.068,1.15,0.988,0.991,0.993,0.961,1.008,0.956,0.897,1.051,1.079,0.996,0.808,1.024,1.037,1.208,1.104,0.996,1.002,0.892,0.948,0.957,0.813,1.018,0.944,1.154,0.993,0.987,1.019,1.432,1.029,0.942,1.112,1.072,1.023,0.966,0.897,0.979,1.172,0.874,0.952 +NM_012283,1.069,0.91,1.029,0.929,0.922,0.859,0.911,1.2,0.987,1.015,1.043,0.893,0.974,1.034,1.113,1.133,1.068,0.817,1.06,1.019,1.194,1.061,0.953,1.067,0.984,1.089,0.945,1.207,0.978,0.97,1.12,1.0,0.79,1.076,0.962,0.932,1.114,1.003,0.98,1.074,0.877,0.87,1.001,0.96,1.019,0.883,1.027,0.816,0.963,1.003,1.067,0.884,0.94,0.964 +NM_012284,1.08,1.023,0.921,1.046,1.04,0.985,0.928,1.054,1.03,1.109,0.877,1.016,1.063,1.056,1.072,1.086,1.028,0.813,1.05,1.0,1.01,0.987,0.997,1.098,0.894,0.849,1.051,1.038,1.032,0.979,1.042,0.915,1.054,0.957,0.98,0.963,1.019,1.08,1.03,0.984,0.877,1.0,1.246,1.1,1.058,1.073,1.197,0.965,1.007,0.993,0.92,1.044,1.08,1.07 +NM_012285,1.148,1.144,0.92,0.978,1.011,0.995,0.905,1.078,1.132,0.802,1.181,1.048,0.939,1.003,0.951,1.103,0.988,0.848,1.083,0.963,0.906,1.032,0.986,0.958,1.056,1.013,0.957,0.959,1.217,0.871,0.89,1.008,1.193,0.808,1.063,1.0,1.132,1.075,0.891,1.077,0.873,1.147,0.87,0.922,0.965,1.094,1.003,0.959,0.836,1.084,0.975,1.13,0.895,1.025 +NM_012286,0.621,0.885,0.867,0.708,0.869,1.033,0.63,0.347,1.147,0.999,0.907,0.595,0.47,0.521,0.92,1.518,0.718,0.939,1.164,0.883,0.506,0.512,1.206,1.14,0.641,0.811,1.266,0.755,0.331,1.09,0.907,1.462,1.915,1.159,0.289,1.116,1.322,0.62,1.395,0.691,1.204,1.08,0.718,1.333,0.91,1.25,1.028,0.518,1.213,0.711,1.211,1.214,0.947,1.221 +NM_012287,1.0,0.684,1.375,0.856,1.352,0.753,0.654,1.0,1.565,1.374,0.846,1.1,1.024,1.005,1.062,1.034,1.328,1.33,1.378,0.738,0.735,0.985,0.666,1.285,0.621,1.222,1.273,1.379,0.662,0.855,1.569,0.782,1.869,0.737,2.929,0.735,0.896,1.37,1.185,0.995,1.31,0.801,0.988,1.015,1.579,1.005,1.039,1.398,0.983,1.185,0.834,0.795,1.256,1.155 +NM_012288,0.716,1.174,0.661,0.753,0.692,1.278,1.032,0.685,0.731,0.745,1.346,0.635,0.665,0.689,1.239,1.89,0.692,0.888,0.659,1.039,0.687,0.619,1.491,0.783,0.68,0.701,0.906,0.723,0.584,1.38,0.721,2.68,1.78,1.377,0.729,0.991,1.289,0.592,1.37,1.212,0.795,1.661,0.971,0.957,0.665,1.19,0.917,0.659,1.655,0.65,1.363,0.883,0.707,1.999 +NM_012289,1.001,0.932,1.392,0.805,1.062,0.922,0.699,0.741,1.108,0.908,0.896,0.913,0.839,0.964,1.098,1.327,1.216,0.937,1.365,0.855,1.039,1.24,1.287,1.083,0.609,1.037,1.383,0.908,0.583,0.943,1.118,1.077,1.78,0.999,0.685,0.959,0.881,1.092,1.176,1.003,1.13,0.925,0.633,1.077,1.066,0.75,0.868,1.142,0.75,1.091,0.929,0.906,0.932,1.608 +NM_012290,0.815,0.995,1.191,0.88,1.028,1.422,0.831,0.995,1.033,0.993,1.124,0.999,0.888,0.954,0.902,1.358,0.946,1.046,0.893,1.024,0.867,0.837,1.188,0.99,0.84,0.768,1.036,0.863,0.79,1.025,1.053,1.218,1.284,1.248,0.837,0.845,1.012,0.922,1.149,1.052,0.911,1.105,0.703,1.116,0.838,0.977,1.077,1.001,1.107,0.916,1.044,0.869,0.894,1.517 +NM_012291,1.139,0.738,2.318,1.112,1.833,0.653,0.62,1.988,3.127,0.943,0.662,1.193,1.629,1.043,2.183,1.074,1.064,1.76,3.182,0.63,0.863,3.564,0.779,3.253,0.651,2.188,1.703,2.147,0.438,0.644,2.379,0.754,1.333,0.612,3.961,1.0,0.633,1.238,0.855,0.818,2.112,0.627,0.606,1.0,1.089,0.517,1.687,2.182,0.816,1.742,0.789,0.73,1.536,1.07 +NM_012292,0.821,1.048,1.263,1.056,0.987,0.817,0.806,0.662,1.116,0.894,0.843,0.78,0.899,0.822,0.836,0.928,1.088,0.772,0.828,0.985,0.72,0.863,0.995,0.881,1.044,0.953,1.16,0.878,0.697,1.162,0.814,1.811,1.213,0.946,0.827,1.413,1.081,1.007,1.148,2.32,1.131,1.081,0.774,1.26,1.036,0.992,1.093,1.058,0.922,0.951,0.982,1.163,0.949,1.317 +NM_012294,0.899,0.921,1.569,0.819,1.018,1.05,0.731,0.946,0.926,1.092,0.876,0.982,1.112,0.849,0.967,1.125,1.098,0.863,0.747,1.078,0.779,1.153,1.276,1.245,0.74,0.832,1.453,1.139,1.208,1.019,1.079,0.989,1.382,1.041,0.86,0.85,0.888,1.378,0.985,1.083,1.034,1.022,0.987,0.688,1.112,0.944,1.168,0.871,1.107,1.034,1.053,0.841,0.782,1.112 +NM_012295,0.902,1.135,0.868,0.995,0.826,0.984,0.814,0.588,0.813,0.729,1.095,0.837,0.709,0.729,0.803,1.235,0.738,0.88,0.789,1.185,0.882,0.844,1.265,0.796,1.025,0.908,1.028,0.783,0.901,1.222,0.799,1.448,1.564,1.177,0.524,0.843,1.024,0.771,1.927,1.116,0.84,1.309,1.144,0.962,0.904,0.937,0.738,0.949,0.845,1.004,1.096,0.852,0.969,1.185 +NM_012296,1.054,0.954,1.034,1.044,1.146,0.937,1.089,0.905,0.912,1.055,1.093,1.035,1.072,1.043,0.98,0.905,1.05,0.942,1.113,0.985,1.071,0.916,1.081,0.9,1.152,1.005,0.891,1.197,0.733,0.996,0.97,0.936,0.893,1.159,1.025,1.02,0.999,1.04,1.019,1.092,1.114,1.059,0.989,1.117,1.087,1.148,1.108,1.004,1.0,0.948,0.844,1.034,0.987,0.975 +NM_012297,0.519,1.212,1.129,0.551,0.749,1.895,0.961,0.54,0.998,0.94,0.7,0.82,0.718,0.644,1.241,2.818,0.782,1.073,0.786,1.497,0.339,1.06,1.675,1.118,0.65,0.459,1.176,0.757,0.825,1.293,1.088,1.659,1.935,1.209,0.444,0.453,1.605,1.162,1.706,0.883,0.858,1.382,0.952,0.714,0.918,1.294,1.038,0.727,1.571,0.708,1.611,0.802,0.452,0.989 +NM_012300,0.918,0.987,0.918,1.045,0.928,1.03,0.928,1.017,1.111,0.817,1.035,0.959,1.076,1.072,0.984,0.849,0.928,1.035,1.054,1.006,1.001,1.039,0.891,0.879,0.905,1.174,0.96,1.143,0.819,1.096,1.172,1.036,1.053,0.983,0.792,1.06,0.971,1.076,1.025,1.046,1.042,0.951,0.916,0.934,1.096,0.882,1.103,0.931,0.978,0.906,1.09,0.991,0.733,1.097 +NM_012301,1.137,0.985,0.893,1.009,1.137,0.996,1.027,0.932,0.847,0.992,1.039,1.102,1.143,0.868,1.143,0.965,1.01,0.92,0.962,0.812,1.056,0.959,1.121,0.92,1.08,1.13,1.014,0.976,0.784,0.901,0.971,0.987,1.085,0.99,1.158,0.911,1.02,0.899,1.126,0.878,1.151,1.03,0.808,0.831,0.981,0.999,0.915,0.93,0.952,1.052,1.231,0.996,1.061,0.974 +NM_012302,1.076,0.642,1.715,0.583,1.586,0.438,0.479,1.02,2.162,1.98,0.472,1.347,1.009,1.409,0.944,0.768,1.204,1.073,2.098,0.773,1.134,1.193,0.69,1.437,0.609,1.482,1.619,1.366,0.483,0.659,1.448,1.953,1.167,0.83,0.681,0.635,0.62,1.183,0.998,0.733,1.717,1.028,0.451,0.465,1.821,0.571,1.474,1.312,0.438,1.513,0.758,1.484,1.707,0.969 +NM_012304,0.966,1.055,0.986,1.087,0.818,0.915,1.157,0.825,0.843,0.866,0.965,1.106,1.05,0.98,0.983,0.835,0.951,0.936,0.834,1.058,0.954,0.955,1.039,0.989,0.963,0.871,0.863,0.885,1.165,1.235,1.023,1.789,0.976,1.27,1.04,0.916,0.953,0.998,0.989,1.105,1.027,1.575,1.095,0.777,1.035,0.826,0.823,1.019,1.024,1.079,1.116,1.04,1.114,0.853 +NM_012305,0.845,1.074,1.047,0.908,0.928,1.278,0.633,0.483,1.141,0.896,0.914,0.653,0.52,0.753,0.994,1.444,1.201,0.899,1.014,1.048,0.704,0.841,1.423,0.967,0.687,0.924,0.975,0.695,0.624,1.488,0.889,1.557,0.978,1.232,0.869,0.874,1.28,0.991,1.564,1.093,1.0,1.338,0.901,1.706,0.871,1.149,1.168,0.762,1.272,0.793,1.137,0.726,0.844,1.079 +NM_012306,1.041,1.079,0.883,0.998,0.946,1.014,1.215,1.099,1.024,0.865,0.936,0.943,0.973,0.914,0.973,1.011,0.98,0.937,0.838,1.034,0.944,0.881,0.985,0.947,1.09,1.026,0.95,0.888,1.266,1.093,0.911,1.115,1.308,1.312,1.135,1.193,1.03,1.097,1.148,1.145,0.941,1.237,1.167,0.944,0.891,0.867,0.917,1.002,0.847,0.83,1.115,1.003,0.928,0.926 +NM_012307,2.384,0.562,3.428,0.74,4.109,0.353,0.361,4.058,3.525,3.075,0.273,3.59,1.939,1.897,1.771,1.617,2.675,2.019,3.253,0.364,0.97,3.72,0.406,3.194,0.295,4.247,1.759,4.164,0.232,0.684,3.822,0.81,1.257,0.524,2.3,0.225,0.301,3.911,0.522,1.179,3.536,0.595,0.192,0.215,3.588,0.305,1.71,4.11,2.049,3.234,2.845,1.275,2.574,0.555 +NM_012308,1.126,0.845,1.471,0.728,1.315,0.785,0.613,0.993,1.413,1.251,0.627,0.875,0.769,0.868,0.92,0.935,1.409,1.068,1.41,0.827,0.841,1.137,0.893,1.068,0.597,1.226,1.275,1.219,0.472,0.985,1.341,0.951,1.569,0.81,1.766,1.055,0.703,1.31,1.289,1.042,1.287,0.904,0.713,1.081,1.379,0.803,0.998,1.315,0.877,1.272,0.854,0.955,1.136,1.343 +NM_012309,0.97,1.006,0.85,1.011,0.988,1.236,0.856,0.967,1.023,1.0,0.968,1.038,0.852,1.115,0.852,0.984,0.939,1.066,1.126,1.132,0.918,0.932,1.032,1.032,0.933,0.928,0.881,1.084,1.106,1.057,0.877,1.375,1.168,1.291,0.929,0.989,1.057,0.964,1.084,1.078,0.906,1.135,0.984,1.127,0.862,1.115,0.945,0.904,0.852,0.886,0.976,1.05,0.981,0.906 +NM_012310,0.847,0.882,0.978,0.982,0.851,0.938,0.796,0.64,1.001,0.927,1.057,0.827,0.789,0.82,0.814,1.215,0.903,1.047,1.043,0.776,0.812,0.913,1.443,1.036,0.759,0.813,1.736,0.821,0.763,0.999,0.788,1.204,2.962,0.833,0.666,1.664,0.98,0.862,2.481,1.301,0.897,0.813,1.01,1.887,0.908,1.096,1.169,0.907,1.203,0.865,1.299,1.215,0.906,1.744 +NM_012311,0.716,0.993,1.165,0.707,0.893,1.382,0.74,0.749,1.212,0.932,0.946,0.853,0.727,0.739,1.015,1.759,0.868,0.875,0.998,0.852,0.59,0.906,1.101,1.083,0.647,0.708,1.334,0.975,0.561,1.096,1.082,1.449,2.172,1.168,0.46,0.577,1.043,1.004,1.256,0.868,0.918,1.007,0.647,1.135,0.972,1.141,1.111,0.878,1.142,0.782,1.07,0.713,0.628,1.532 +NM_012312,0.989,1.118,0.954,1.004,1.024,0.993,0.949,1.057,0.972,1.252,0.978,0.975,1.088,0.93,0.899,0.943,1.012,0.993,1.215,1.101,1.002,0.97,0.931,1.012,0.971,0.905,0.965,1.089,0.742,0.963,0.964,1.025,1.112,1.075,0.987,1.139,1.049,0.969,1.096,0.983,0.968,1.257,1.079,1.042,0.905,1.076,0.912,0.938,1.044,1.099,0.992,1.052,0.893,1.512 +NM_012315,1.005,0.802,6.796,0.952,1.736,0.837,0.81,1.381,1.021,2.347,0.852,1.527,0.947,0.843,1.189,1.794,4.973,2.538,2.973,0.877,1.06,0.893,0.779,1.854,0.852,0.941,8.402,1.058,0.733,0.895,1.042,0.904,1.425,0.863,0.833,0.841,0.764,1.507,0.814,0.899,4.531,0.816,0.756,0.908,4.121,0.836,4.004,0.995,1.193,6.695,1.349,2.106,4.573,1.065 +NM_012316,0.677,1.174,1.341,0.653,0.993,0.983,0.695,0.482,1.123,1.066,0.889,0.851,0.551,0.758,0.786,0.873,0.978,1.044,1.219,1.12,0.717,1.051,0.995,1.101,0.741,0.867,1.126,0.829,0.602,1.182,1.093,1.089,1.671,1.005,0.401,1.087,0.917,1.076,1.144,0.88,1.177,1.06,0.84,1.099,0.843,0.994,0.837,0.829,0.902,0.729,0.902,0.927,1.179,1.44 +NM_012317,1.969,0.639,1.564,0.973,1.641,0.622,0.884,1.179,1.817,1.791,0.687,1.347,1.615,0.969,1.684,1.059,1.237,0.985,1.66,0.843,1.95,1.386,0.642,1.819,1.071,2.255,1.414,1.439,0.551,0.912,1.829,1.708,1.98,1.532,0.657,0.588,0.703,1.795,0.755,0.643,1.647,1.425,0.597,0.581,1.605,0.625,1.011,1.225,0.589,1.554,0.765,0.855,1.97,0.658 +NM_012318,0.86,0.76,1.158,0.845,0.878,1.221,0.891,0.584,1.003,1.108,1.102,0.91,0.704,0.766,0.899,1.574,1.099,0.998,1.141,0.877,0.939,0.846,0.885,1.133,0.831,1.042,1.189,0.817,0.494,1.046,0.911,0.806,1.18,1.021,0.563,0.761,1.162,0.821,1.578,0.795,1.173,1.009,0.936,0.994,1.28,1.052,1.095,0.891,1.274,1.075,1.005,0.857,1.249,1.095 +NM_012319,0.858,0.943,0.999,0.886,0.992,0.997,0.985,0.99,1.09,1.074,0.847,0.855,0.833,0.767,0.81,0.946,0.86,0.882,1.033,0.893,0.912,0.8,0.961,0.799,0.91,0.851,0.998,0.909,0.664,1.002,0.883,1.415,1.743,1.223,0.768,0.922,0.891,0.841,1.06,0.836,1.13,1.101,1.023,1.321,1.028,1.01,1.112,0.892,0.965,0.961,1.051,1.118,1.197,2.192 +NM_012320,0.913,1.092,0.886,0.837,0.879,1.164,1.008,0.744,0.908,0.846,1.143,0.829,0.86,1.095,0.884,1.308,0.756,1.014,0.947,1.145,0.926,0.904,1.175,0.806,1.006,0.799,0.894,0.871,0.792,0.994,0.914,2.033,2.253,1.627,0.794,0.914,0.97,0.832,1.341,1.212,0.894,1.182,0.835,1.292,0.866,0.932,0.885,0.88,0.805,0.812,1.0,1.107,0.946,2.022 +NM_012321,0.674,1.062,0.775,0.922,0.783,1.541,0.647,0.454,0.809,0.861,1.136,1.131,0.907,0.506,0.895,1.959,0.856,1.137,0.974,1.039,0.556,0.914,2.079,1.06,0.772,0.825,1.133,0.718,0.637,1.374,0.689,0.938,1.911,1.313,0.401,1.185,1.043,0.737,1.414,1.335,0.859,1.009,0.755,1.903,0.861,1.001,0.983,0.756,1.481,0.726,1.131,1.372,0.829,1.593 +NM_012322,0.496,0.883,1.079,0.596,0.732,1.227,0.605,0.63,0.982,0.956,1.15,1.018,0.672,0.502,0.912,2.382,0.644,0.786,1.351,0.974,0.465,0.628,2.037,1.186,0.501,0.521,1.202,0.708,0.382,1.249,0.778,1.134,3.582,1.485,0.111,1.361,1.2,0.778,1.274,0.792,0.968,0.964,0.637,1.512,0.854,1.076,1.312,0.583,1.137,0.624,1.049,1.112,0.93,2.66 +NM_012323,0.962,1.006,0.824,1.012,1.028,1.008,1.165,0.986,1.06,1.1,1.013,1.096,0.972,1.101,1.168,1.038,0.986,1.003,0.917,0.995,0.908,0.957,0.937,0.868,1.001,1.151,1.031,1.049,1.201,0.983,1.048,1.031,0.947,1.062,1.113,0.987,0.958,1.011,0.996,1.011,1.035,0.836,0.904,0.846,1.088,0.955,0.849,0.99,1.002,1.057,1.029,1.019,1.042,0.839 +NM_012325,0.593,0.95,1.147,0.713,0.742,1.184,0.65,0.332,0.799,0.922,0.956,0.708,0.539,0.485,0.994,1.89,0.656,0.685,1.286,0.83,0.599,0.56,1.499,0.938,0.537,0.672,0.929,0.657,0.446,1.285,0.651,1.687,3.34,1.636,0.207,1.052,0.937,0.621,1.7,1.38,0.961,1.21,0.627,2.153,1.094,1.118,1.056,0.795,1.217,0.853,1.276,0.898,1.233,2.671 +NM_012326,0.887,0.916,1.063,1.008,1.054,0.922,0.993,0.881,0.863,0.91,1.077,0.803,0.841,0.87,1.072,1.502,0.925,1.034,0.932,1.025,1.032,1.002,1.04,0.969,1.11,0.855,1.12,0.933,0.747,1.027,0.871,1.246,1.574,1.212,0.858,0.962,0.988,0.928,1.209,1.272,0.884,1.054,0.974,1.122,1.044,0.92,0.97,0.86,1.003,0.951,0.907,1.03,1.288,0.981 +NM_012327,1.124,0.927,1.332,0.718,1.732,1.129,0.777,1.494,1.424,1.671,1.096,1.093,0.921,0.845,1.081,1.795,0.669,0.949,1.947,1.289,0.78,1.8,1.023,1.174,0.656,1.343,1.327,1.355,0.592,1.744,1.123,0.84,0.77,1.029,0.722,0.686,1.269,1.073,1.122,0.509,1.416,0.812,0.822,0.586,1.168,0.881,1.089,1.729,0.809,0.993,1.039,1.175,0.91,0.669 +NM_012328,0.659,0.92,0.813,0.891,0.575,1.276,0.998,0.606,0.767,0.567,1.572,0.774,0.862,0.542,0.987,1.386,0.671,0.806,1.016,1.022,0.451,0.643,1.015,0.938,1.574,0.637,1.186,0.629,0.44,1.257,0.7,1.218,0.739,1.296,0.404,0.755,1.983,0.495,1.188,0.986,0.623,1.858,0.928,1.002,0.833,1.559,1.05,0.648,1.162,0.732,1.363,0.88,0.785,1.234 +NM_012329,0.7,0.998,0.935,0.887,0.851,1.334,0.874,0.838,0.948,0.827,1.16,0.894,0.755,0.677,0.915,1.798,0.769,0.765,0.797,1.088,0.705,0.756,1.659,0.872,0.775,0.721,1.029,0.729,1.027,1.199,0.719,2.598,1.696,1.015,0.607,1.025,0.99,0.685,1.434,3.284,0.798,1.221,0.748,1.542,0.755,1.288,1.268,0.64,1.065,0.714,1.259,1.486,0.79,3.041 +NM_012330,0.952,1.006,1.109,0.92,0.907,0.861,0.855,0.937,1.062,0.881,1.216,0.868,0.854,0.999,0.853,0.957,0.928,0.999,0.903,1.039,0.965,1.019,1.308,0.924,1.019,0.83,1.098,1.022,0.745,1.061,1.076,1.03,0.986,1.556,0.777,0.924,1.008,0.939,1.014,1.02,1.074,1.293,0.725,0.919,0.949,1.066,0.877,0.846,0.847,0.9,1.191,0.888,0.828,1.206 +NM_012331,0.889,0.792,1.081,0.81,0.764,1.583,0.665,0.547,0.923,0.882,1.255,0.849,0.664,0.801,1.0,1.78,0.868,0.768,0.98,0.995,0.664,0.891,0.964,1.046,1.146,1.042,1.165,0.906,0.691,1.365,0.866,1.801,1.724,1.807,0.585,0.928,1.34,1.082,1.269,0.646,0.944,1.5,0.986,0.892,0.851,1.581,0.957,0.796,1.244,0.837,1.445,1.01,0.916,0.646 +NM_012332,0.728,1.304,0.927,1.001,0.729,1.29,1.028,0.666,0.816,0.822,0.776,0.827,0.627,0.634,1.064,1.057,0.711,1.124,0.851,1.084,0.609,0.709,1.199,0.787,0.745,0.599,0.83,0.624,0.989,1.348,0.739,2.054,2.821,1.595,0.567,1.815,1.123,0.699,1.668,1.599,0.744,0.879,0.788,0.998,0.724,0.907,0.911,0.676,1.213,0.702,1.066,1.69,0.894,1.608 +NM_012333,0.847,1.257,0.991,0.743,0.999,1.165,0.6,0.777,1.129,0.948,1.049,0.964,0.797,0.716,0.93,1.462,0.932,0.917,1.077,1.225,0.766,0.848,1.238,0.962,0.783,0.872,1.054,1.048,0.503,1.255,1.059,0.922,1.294,1.257,0.55,0.76,1.12,0.873,1.168,0.821,1.057,1.034,0.951,0.962,0.921,1.103,0.805,0.861,1.137,0.715,1.208,0.677,0.908,1.188 +NM_012334,0.508,1.189,0.712,0.697,0.472,1.601,1.142,0.334,0.514,0.573,1.211,0.464,0.319,0.494,0.743,1.536,0.465,0.993,0.851,1.161,0.439,0.433,1.607,0.534,1.197,0.511,0.732,0.442,0.951,2.606,0.55,1.345,2.105,2.523,0.365,0.656,1.511,0.584,1.585,1.141,0.597,1.479,0.75,1.529,0.577,1.104,0.678,0.505,0.918,0.61,1.128,1.007,0.641,2.001 +NM_012335,0.992,1.035,1.016,1.06,0.946,1.013,0.892,1.136,1.091,0.942,0.802,0.924,1.015,0.883,1.029,0.914,1.036,1.038,1.071,0.942,0.959,1.064,0.884,0.998,1.002,0.941,1.161,0.863,0.63,0.993,1.01,1.094,0.966,0.993,0.822,0.848,0.885,0.84,1.149,1.756,1.037,1.072,1.258,0.912,1.065,0.801,0.842,0.978,0.855,1.07,1.08,1.153,0.952,1.169 +NM_012336,0.785,1.001,1.103,0.786,1.064,1.03,0.867,0.632,1.03,0.973,0.78,0.919,0.731,0.722,0.736,1.098,1.102,0.968,1.525,0.827,0.711,0.936,0.985,0.92,0.657,1.136,1.109,0.858,1.344,1.031,0.915,1.313,1.321,1.252,0.724,0.998,0.79,0.968,1.486,1.149,0.927,0.848,0.622,1.421,0.941,0.707,0.981,1.231,1.031,1.462,0.757,0.822,0.929,0.978 +NM_012337,0.981,1.061,1.441,1.066,1.694,0.809,1.129,0.972,0.944,1.53,0.72,2.062,0.877,0.807,0.852,1.106,2.908,1.238,1.74,0.844,1.377,0.886,0.911,1.119,0.864,0.982,1.704,1.037,0.845,0.886,1.082,1.384,1.204,0.944,0.866,0.844,0.908,0.984,0.929,0.999,1.316,0.828,0.796,0.844,2.26,0.895,2.307,1.155,0.785,2.251,1.022,1.004,1.26,1.043 +NM_012338,0.876,1.015,0.87,0.864,0.839,1.098,0.912,0.924,0.916,0.836,0.994,0.761,0.957,0.809,0.931,1.232,0.919,1.001,0.999,1.416,0.676,0.961,1.13,0.91,1.003,0.927,0.796,1.01,0.815,1.255,0.928,0.999,1.188,1.188,0.943,1.005,0.939,0.892,1.013,0.982,0.983,1.157,1.038,0.859,0.865,1.168,1.123,0.861,1.036,0.967,1.134,0.938,0.809,0.906 +NM_012339,0.534,2.336,0.526,1.167,0.583,2.584,0.749,0.483,0.458,0.454,1.339,0.437,0.476,0.46,0.644,1.725,0.486,1.562,0.549,1.057,0.541,0.436,1.857,0.601,1.511,0.493,0.529,0.463,2.047,1.558,0.465,0.913,0.865,3.196,0.541,1.158,1.329,0.497,3.063,0.753,0.56,1.729,0.908,1.727,0.546,1.048,0.9,0.528,1.307,0.513,0.965,0.712,0.497,1.084 +NM_012340,0.889,0.918,0.987,0.905,1.057,0.967,1.108,1.023,1.027,1.096,1.07,1.096,0.951,0.942,0.992,1.012,0.983,0.931,0.988,1.0,0.873,0.957,0.927,1.053,0.996,1.068,1.156,0.99,0.868,1.069,1.014,1.18,0.968,1.0,1.001,1.054,0.882,1.195,1.221,1.002,0.94,0.875,1.035,0.967,1.016,0.967,1.026,1.042,1.002,1.009,1.056,0.856,0.991,0.895 +NM_012342,0.492,1.137,0.48,0.665,0.443,1.47,0.955,0.483,0.452,0.62,2.571,0.572,0.465,0.621,1.054,0.943,0.692,0.768,0.603,2.065,0.615,0.525,1.914,0.513,0.654,0.506,0.568,0.51,0.689,1.007,0.517,2.061,15.59,1.778,0.474,2.124,1.123,0.529,2.197,1.883,0.637,2.125,1.348,7.422,0.826,1.358,1.344,0.502,0.827,0.92,1.4,1.147,0.701,0.954 +NM_012345,0.89,0.988,0.983,0.85,0.994,0.929,0.918,1.065,1.087,1.073,0.972,0.902,1.072,1.062,0.995,0.89,0.949,1.028,0.879,1.066,0.768,1.001,1.088,0.947,0.933,1.043,1.105,1.051,1.086,1.047,0.967,1.045,1.023,1.011,1.205,0.986,0.929,0.853,1.018,1.174,0.953,0.949,0.932,1.202,0.913,0.986,0.961,1.159,0.906,1.04,0.977,1.076,0.934,1.088 +NM_012346,0.509,1.094,1.072,0.641,0.725,1.09,0.706,0.4,1.178,1.107,0.959,0.604,0.498,0.601,1.076,1.232,0.797,0.675,1.19,0.998,0.619,0.608,2.438,1.003,0.41,0.563,1.516,0.812,0.251,1.221,0.986,1.5,5.666,1.357,0.178,1.071,0.929,0.594,1.346,1.347,0.982,0.997,0.557,1.292,1.155,0.892,0.967,0.476,0.848,0.755,1.119,0.977,1.147,2.563 +NM_012347,1.9369999999999998,1.855,2.607,1.711,1.9949999999999999,2.072,1.318,1.452,2.519,2.5060000000000002,1.9740000000000002,2.003,1.779,2.0860000000000003,2.434,2.366,2.284,1.88,3.0039999999999996,1.4700000000000002,1.585,1.988,1.771,2.73,1.651,1.9979999999999998,3.275,2.109,1.211,2.206,2.49,2.551,1.873,2.477,1.205,1.681,1.92,2.2199999999999998,1.845,1.85,2.5549999999999997,1.742,1.539,1.73,2.349,1.857,2.008,1.943,1.629,2.187,1.81,1.62,2.373,2.3489999999999998 +NM_012351,1.314,0.941,0.888,0.786,0.996,1.138,0.828,1.383,1.226,1.075,1.076,0.82,0.995,0.959,0.991,1.046,0.816,1.148,1.115,0.892,0.884,0.973,1.331,0.909,1.055,0.948,0.954,1.043,1.067,1.124,0.989,0.803,0.968,1.052,1.039,0.9,1.027,1.029,1.053,0.941,0.959,1.04,0.903,0.897,0.93,1.036,0.864,0.961,1.032,0.942,1.033,1.046,0.827,0.894 +NM_012352,1.193,0.958,0.927,1.045,0.942,0.99,0.971,0.822,1.093,0.948,1.007,0.861,1.02,1.243,0.756,0.922,1.242,1.061,0.917,1.124,0.943,0.977,1.064,1.061,1.033,1.019,1.181,0.923,1.249,1.112,0.928,1.175,0.969,1.175,1.077,0.984,0.999,0.883,1.02,1.048,0.966,0.981,1.006,1.152,1.018,0.954,0.947,0.927,1.129,1.056,0.962,1.121,1.155,1.1 +NM_012360,1.087,0.966,0.955,0.932,1.033,1.014,0.968,1.04,1.113,0.895,1.017,0.97,1.105,1.038,0.835,1.001,1.186,0.966,0.876,0.926,0.953,0.896,1.116,1.041,1.087,0.924,1.216,0.89,1.268,0.961,0.874,0.967,0.947,1.034,0.966,0.952,1.033,1.084,0.963,0.996,1.055,0.957,1.073,0.817,0.885,1.095,1.141,1.006,0.967,1.051,0.947,1.016,0.735,0.972 +NM_012367,1.061,0.913,0.951,0.946,0.923,1.05,0.907,0.87,0.993,1.038,0.867,1.063,0.931,1.111,1.116,1.154,1.078,0.979,0.885,1.047,1.05,1.051,1.002,1.004,0.959,0.977,1.01,1.1,0.808,0.933,0.939,0.865,0.878,0.87,1.107,0.894,1.101,1.158,0.997,1.041,1.07,0.9,1.02,0.975,0.98,1.029,1.064,0.996,0.962,1.006,0.889,1.068,1.109,1.165 +NM_012368,1.164,1.071,0.912,1.111,0.884,1.124,0.901,1.012,1.164,1.176,1.043,0.941,1.148,1.272,1.333,0.937,0.949,1.126,1.175,0.975,0.987,1.126,1.109,1.034,0.921,1.152,0.907,1.096,1.103,1.024,0.891,1.048,0.838,0.927,0.995,1.187,1.144,1.113,0.992,0.999,0.96,0.913,1.192,1.107,1.107,0.886,0.909,0.953,0.971,1.193,1.014,0.984,1.044,1.001 +NM_012369,1.027,0.989,0.951,0.918,1.03,1.131,1.05,1.039,0.916,1.011,0.917,1.047,0.948,0.896,0.865,0.908,1.023,0.987,1.078,0.817,1.077,0.897,1.131,1.048,1.128,1.016,0.982,1.15,0.858,1.021,0.918,1.086,0.861,1.033,0.949,1.0,0.991,0.99,1.208,1.051,1.154,0.978,1.26,0.959,1.08,0.925,1.01,1.066,0.966,1.002,0.837,0.875,0.944,1.044 +NM_012377,1.001,1.018,0.887,1.038,0.979,1.023,0.958,1.089,0.957,1.076,1.006,1.002,0.996,0.961,0.829,0.975,1.042,1.018,0.99,1.085,0.817,0.88,1.085,1.029,0.995,0.937,1.057,0.882,0.905,0.947,0.983,0.849,0.936,1.022,1.141,0.933,1.107,0.909,0.974,1.04,0.952,1.003,1.154,1.049,0.978,0.929,1.01,0.999,0.913,1.027,0.928,1.038,1.048,0.931 +NM_012378,1.061,1.027,1.003,1.046,0.987,1.134,0.997,1.072,1.129,1.063,0.988,1.031,1.121,1.025,1.012,1.111,0.931,0.942,0.977,1.004,0.886,1.084,0.98,0.942,0.969,0.95,0.953,1.078,1.05,0.959,1.293,0.978,1.091,0.964,1.174,1.032,1.067,0.954,0.846,1.011,0.82,0.959,0.957,0.91,0.999,1.025,1.009,1.121,1.086,1.03,0.986,1.236,0.939,1.007 +NM_012382,0.805,1.083,1.179,0.906,0.885,1.388,0.917,1.025,1.094,0.812,1.215,0.799,1.196,0.904,1.012,1.675,0.891,1.142,0.95,1.053,0.846,1.005,1.128,1.077,0.918,0.821,1.164,0.929,0.836,1.15,1.067,1.131,2.223,1.21,0.819,0.649,1.391,0.997,1.308,0.994,0.937,1.12,0.704,0.84,0.926,0.983,0.896,0.913,1.002,0.893,1.236,1.019,0.691,1.046 +NM_012383,1.241,0.623,2.126,0.847,2.128,0.948,0.505,1.067,2.054,1.604,0.958,1.304,1.059,1.371,1.337,1.706,1.595,1.425,2.814,0.735,0.824,1.473,0.74,1.849,0.36,1.617,1.431,1.961,0.338,0.946,1.859,0.493,1.108,1.005,2.112,0.489,1.015,1.679,0.819,0.668,2.23,0.773,0.575,0.616,1.57,0.823,1.438,1.678,0.801,1.271,0.909,0.646,1.599,0.892 +NM_012384,0.762,0.825,1.262,0.783,0.84,0.903,0.7,0.622,1.196,1.061,0.866,0.675,0.694,0.803,0.995,1.258,0.891,0.902,1.107,0.924,0.561,0.942,1.309,0.932,0.665,0.856,1.187,0.842,0.626,1.381,1.083,1.122,1.835,1.246,0.726,0.921,0.761,0.825,1.283,1.866,1.082,1.174,0.974,1.585,1.079,0.814,0.949,1.088,0.793,0.874,1.053,0.985,0.985,1.838 +NM_012385,1.114,1.296,2.686,0.644,1.777,0.994,0.882,1.006,1.536,1.284,1.057,1.434,1.367,0.99,1.343,0.843,1.329,1.069,1.193,0.981,0.939,2.261,1.374,1.587,0.99,1.505,1.538,1.565,0.723,0.76,1.612,3.393,0.782,0.903,1.232,0.548,0.7,1.611,0.828,0.926,1.845,1.746,0.472,0.721,1.149,0.46,0.781,2.408,0.992,1.721,0.61,0.677,0.731,12.3 +NM_012387,0.923,1.072,0.982,1.265,0.89,0.973,0.848,1.168,0.975,0.959,0.858,1.001,0.918,1.1,0.785,1.039,0.985,0.99,0.979,0.864,1.004,1.024,1.003,1.09,0.912,0.941,0.993,0.882,1.113,1.03,0.87,1.166,1.005,0.968,1.069,0.975,0.976,0.877,1.186,2.278,0.987,1.28,1.041,1.079,0.998,0.998,1.308,0.973,1.08,1.074,0.886,1.596,0.947,1.017 +NM_012388,1.038,0.931,1.079,0.849,0.907,1.006,0.954,0.906,0.917,0.953,1.013,0.789,0.862,0.989,0.841,0.996,1.071,1.182,0.898,1.058,0.818,0.922,0.999,0.974,0.913,0.936,1.042,0.943,1.069,0.941,1.078,1.044,1.116,1.017,0.876,1.235,1.043,0.87,1.002,1.08,1.08,0.963,1.207,0.965,1.025,0.951,1.034,0.922,1.148,0.976,0.953,0.966,0.812,0.978 +NM_012390,0.964,0.965,1.046,1.147,0.844,0.996,1.145,0.974,1.04,0.973,1.097,1.011,0.979,1.006,0.854,1.12,1.007,1.156,1.123,0.881,1.153,0.95,1.057,1.053,1.073,0.98,0.936,0.949,0.997,0.962,1.12,0.96,0.975,0.875,1.172,1.02,0.898,1.004,0.972,0.929,1.015,0.906,1.039,0.897,0.946,0.851,0.996,1.075,1.002,1.1,1.005,1.148,0.99,1.06 +NM_012391,0.404,1.974,0.408,1.311,0.421,1.893,1.461,0.457,0.389,0.483,1.876,0.385,0.444,0.52,1.123,2.168,0.427,1.483,0.42,1.701,0.446,0.44,1.927,0.443,1.542,0.431,0.463,0.435,0.93,1.752,0.438,1.796,2.786,3.409,0.431,1.561,1.259,0.5,3.338,0.454,0.395,3.156,1.165,1.86,0.421,1.025,0.604,0.485,1.188,0.377,2.036,0.975,0.452,0.721 +NM_012392,0.867,0.957,0.966,0.781,0.833,1.12,0.61,0.691,1.101,0.968,0.786,1.075,1.041,0.644,0.947,1.48,0.844,0.904,1.375,0.759,0.825,1.253,1.002,1.361,0.753,1.041,1.167,0.955,0.496,1.01,0.996,0.934,2.429,1.151,0.479,0.682,0.921,0.991,1.676,0.772,1.006,1.042,0.678,1.338,1.179,0.799,0.982,1.237,0.781,0.962,0.85,0.901,1.083,1.232 +NM_012393,1.013,0.929,0.943,0.924,0.977,0.886,0.912,0.748,1.059,0.936,0.957,0.904,0.829,0.839,0.902,1.082,0.95,1.031,1.151,0.964,0.955,0.969,1.49,1.029,0.804,0.883,1.139,0.83,1.054,1.022,0.948,1.141,1.701,1.056,0.78,1.146,1.079,0.988,1.278,0.81,0.971,1.019,0.976,1.232,1.032,0.977,1.012,0.9,1.093,0.95,1.197,1.035,1.082,1.92 +NM_012394,0.603,1.088,1.011,0.568,0.841,0.864,0.47,0.377,1.319,1.27,0.825,0.893,0.608,0.562,0.779,1.291,1.023,0.664,1.198,0.732,0.827,0.734,1.182,1.37,0.533,0.803,1.439,0.668,0.323,1.008,0.966,2.431,2.761,1.33,0.289,1.889,0.877,0.779,1.411,1.764,1.198,1.001,0.867,2.227,1.051,0.816,1.412,0.651,1.029,0.833,0.807,1.152,1.29,2.715 +NM_012395,0.877,1.295,0.917,1.022,0.995,1.068,1.11,0.823,0.823,0.977,0.927,0.899,0.904,1.015,0.795,0.934,0.793,0.994,0.752,0.999,0.858,0.82,1.189,0.861,1.385,0.902,0.828,0.837,0.831,1.054,0.83,3.932,2.916,1.676,0.799,0.931,0.945,0.915,1.028,1.288,0.862,1.479,0.775,1.571,0.879,1.048,1.072,0.806,0.942,0.928,1.001,1.473,0.992,1.783 +NM_012398,0.932,0.8,1.14,0.692,0.93,1.155,0.683,0.802,1.07,0.836,0.854,0.713,0.913,0.876,0.752,1.092,1.643,0.853,1.194,0.91,0.991,1.26,1.342,0.725,0.789,1.429,1.179,1.135,0.702,0.857,1.161,1.604,1.491,1.122,1.376,0.852,0.817,0.911,1.222,1.165,1.283,1.169,0.611,1.153,0.987,0.751,0.807,1.673,0.653,0.909,0.854,0.886,1.134,1.184 +NM_012399,0.593,0.83,1.324,0.586,0.949,0.988,0.643,0.593,1.844,1.359,0.835,0.868,0.582,0.72,1.018,1.108,0.845,0.676,1.59,0.867,0.738,0.816,1.094,1.354,0.398,0.789,1.649,1.013,0.29,1.029,1.447,1.158,1.395,1.332,0.207,0.904,0.981,0.925,1.114,0.826,1.513,1.084,0.662,0.88,1.065,0.828,1.048,0.571,0.72,0.708,0.935,0.872,1.273,3.003 +NM_012402,0.742,1.015,0.783,1.03,0.705,1.516,0.761,0.955,0.923,0.914,1.397,0.865,0.961,0.583,1.06,2.069,0.747,1.048,1.238,0.792,0.797,0.895,1.135,1.136,1.075,0.959,0.943,0.72,0.681,1.366,0.977,0.997,1.27,1.316,0.799,1.221,1.406,1.003,1.289,0.867,0.925,1.306,0.852,1.076,0.909,1.044,0.942,0.879,1.319,0.819,1.091,1.083,1.026,1.206 +NM_012404,1.068,0.974,0.951,0.986,0.956,1.045,1.005,1.108,0.98,1.008,0.924,0.952,1.071,1.01,1.117,0.99,1.001,0.931,0.885,0.958,1.03,0.97,0.996,0.993,1.079,0.923,0.954,0.891,1.154,1.122,1.037,1.014,0.9,1.005,1.038,1.041,1.045,1.129,0.89,1.042,0.94,0.942,0.867,1.079,1.098,0.941,0.999,1.024,0.893,0.951,1.049,1.005,0.972,1.094 +NM_012405,0.735,1.242,1.089,0.822,0.964,1.356,0.517,0.655,1.054,0.9,1.343,0.834,0.694,0.719,0.933,1.736,0.934,0.911,1.099,0.866,0.751,1.043,1.498,0.853,0.703,0.974,0.879,0.968,0.598,1.323,0.921,1.126,1.631,1.559,0.616,0.967,1.104,1.189,1.531,1.078,1.039,1.28,0.775,1.06,0.889,1.134,0.884,1.022,0.769,0.909,1.159,0.701,0.96,1.086 +NM_012406,1.086,0.756,1.509,0.749,1.373,1.078,0.602,1.07,1.721,0.868,0.824,1.162,0.748,1.072,1.15,1.05,1.204,0.971,1.146,1.12,0.48,0.949,0.914,0.899,0.575,0.989,1.312,1.626,0.595,1.154,1.426,1.036,0.98,1.128,2.231,0.976,1.025,1.687,0.806,0.946,1.252,0.992,1.025,0.567,0.993,0.981,0.963,1.367,1.026,0.711,0.96,0.772,0.982,1.466 +NM_012407,0.661,1.189,1.123,1.009,0.993,1.052,0.835,0.463,0.952,1.092,0.825,0.91,0.617,0.54,1.049,1.245,0.934,1.065,1.06,1.271,0.507,0.799,1.279,1.208,0.75,0.859,1.102,0.817,0.732,1.246,0.827,0.998,1.022,1.193,0.249,0.857,0.966,0.822,1.568,0.739,1.029,1.026,0.97,0.804,1.187,1.228,0.964,0.82,1.467,0.807,0.956,0.893,0.945,1.32 +NM_012409,0.982,0.95,0.988,0.963,1.023,1.119,0.948,0.938,1.028,1.077,0.958,0.971,1.185,0.903,0.861,0.979,1.006,0.998,1.115,0.903,1.052,0.987,1.012,0.93,0.969,0.975,1.076,0.995,0.889,1.015,0.997,1.504,1.015,1.002,0.946,1.104,0.921,0.958,1.095,1.022,0.878,1.002,1.046,1.05,1.074,1.093,0.976,0.978,1.011,0.932,1.027,1.031,1.041,1.015 +NM_012410,0.72,1.932,0.603,1.018,0.596,0.891,0.83,0.68,0.53,0.761,1.282,0.68,0.656,0.715,0.854,0.798,0.695,0.8,0.663,1.173,0.685,0.648,1.7,0.66,1.591,0.682,0.755,0.539,1.015,1.55,0.7,2.425,3.441,1.891,0.629,0.824,0.839,0.72,1.893,1.3,0.656,1.581,0.899,2.124,0.58,0.936,1.038,0.772,0.821,0.72,1.149,1.012,0.765,1.937 +NM_012411,2.3049999999999997,1.5590000000000002,2.11,2.176,2.152,2.113,2.12,2.051,2.123,1.9860000000000002,2.1079999999999997,1.912,2.115,2.221,1.781,2.176,2.017,2.048,1.9980000000000002,1.935,2.101,1.9809999999999999,1.909,2.143,2.107,2.019,1.927,2.034,2.0380000000000003,1.927,2.21,1.9369999999999998,2.082,1.93,2.5949999999999998,2.031,1.916,2.1180000000000003,1.931,2.0949999999999998,1.9609999999999999,2.053,2.1550000000000002,2.088,2.141,2.008,2.052,2.041,1.9729999999999999,1.94,1.884,1.934,2.026,2.287 +NM_012412,0.45,0.993,1.073,0.587,0.881,1.372,0.619,0.536,0.876,0.878,1.095,0.945,0.718,0.61,0.822,1.729,0.807,0.823,1.15,0.94,0.537,0.648,1.581,0.949,0.513,0.647,1.417,0.808,0.372,1.359,0.755,1.55,3.451,1.37,0.183,1.539,1.067,0.782,1.276,1.12,0.899,0.893,0.678,1.732,0.771,0.945,1.438,0.659,0.896,0.58,1.146,1.08,0.834,1.894 +NM_012413,0.778,0.859,1.162,1.085,0.748,0.79,0.693,0.783,0.795,0.678,1.169,0.847,0.885,0.621,0.742,0.974,1.484,0.822,1.1,1.072,0.707,0.727,1.225,0.815,0.654,0.665,1.863,0.731,0.577,0.964,0.697,1.001,0.906,1.293,0.742,1.005,0.978,0.769,1.253,1.512,1.066,1.015,0.892,0.732,1.136,1.564,1.828,0.727,0.675,1.273,1.048,1.402,1.853,1.057 +NM_012414,0.631,1.124,1.335,0.594,0.998,1.003,0.648,0.496,1.164,0.879,0.827,0.818,0.6,0.672,0.841,1.154,0.749,1.147,1.032,1.01,0.555,1.036,1.296,1.084,0.664,0.767,1.141,0.807,0.554,1.222,0.917,1.267,1.427,1.124,0.254,0.919,1.127,1.032,1.242,0.99,1.046,1.162,0.616,1.042,1.029,0.748,0.793,0.806,1.078,0.764,1.063,0.825,0.816,1.647 +NM_012415,0.933,0.997,0.907,0.998,0.926,1.035,1.236,1.019,1.026,0.993,1.003,0.959,1.075,1.139,0.913,0.949,1.044,0.964,1.064,0.947,1.016,0.875,1.002,1.066,1.016,1.137,0.892,1.149,1.87,1.17,0.913,0.909,0.936,1.074,1.038,0.907,1.005,0.943,1.107,0.917,0.918,1.057,0.904,1.088,0.994,1.034,0.966,1.055,1.043,1.035,1.046,1.113,1.113,1.072 +NM_012416,0.879,0.882,1.252,0.885,1.173,0.989,0.866,0.861,1.06,1.153,0.941,0.885,0.862,0.85,0.939,1.151,1.155,0.967,1.217,0.958,0.803,0.812,1.111,0.913,0.815,0.847,1.123,1.089,0.875,1.136,0.979,1.322,1.181,1.0,0.76,1.032,1.02,1.106,1.06,0.875,1.27,1.049,0.874,1.058,1.077,0.855,0.915,0.81,0.969,0.996,1.095,1.149,0.929,1.526 +NM_012417,0.893,1.006,0.944,1.022,0.958,0.971,1.027,1.101,0.907,1.097,0.88,1.029,0.904,1.212,0.909,0.975,1.104,0.945,1.001,0.975,1.1,0.995,1.028,0.999,1.042,0.948,1.104,0.983,0.928,1.014,0.963,0.972,0.935,0.963,0.838,1.075,1.059,0.999,0.96,1.093,1.135,0.917,0.917,1.091,0.948,0.996,1.018,0.823,0.901,0.854,0.84,0.944,1.011,1.114 +NM_012418,0.99,0.968,0.979,0.99,0.891,0.985,0.983,0.961,1.096,1.111,0.952,0.926,1.123,0.911,0.999,0.946,1.036,0.872,1.093,1.025,0.981,1.039,0.963,0.885,1.039,0.876,0.887,0.963,0.69,1.002,0.962,1.215,0.855,0.884,1.078,1.1,0.918,0.912,1.043,1.029,1.01,0.986,1.03,1.091,0.998,0.979,1.012,1.065,0.908,0.886,1.008,1.08,1.147,0.949 +NM_012419,1.51,0.838,1.522,0.879,1.446,0.685,0.686,2.382,2.184,1.499,1.054,2.237,0.999,1.278,1.163,1.516,2.015,1.542,2.38,1.042,0.921,1.562,0.764,1.396,1.015,1.499,0.886,2.786,0.711,0.812,1.771,1.188,0.857,0.898,6.363,0.844,0.892,2.276,0.931,1.115,1.036,0.942,0.697,0.755,1.369,0.824,1.253,2.344,0.886,1.453,0.923,0.923,0.867,0.718 +NM_012421,0.994,1.0,1.5,0.685,1.198,0.831,0.626,1.134,1.281,1.031,0.777,0.882,0.866,0.892,0.916,1.025,1.032,0.96,1.364,0.81,0.815,1.175,0.872,1.258,0.721,0.968,1.395,1.144,0.566,0.931,1.233,1.167,1.54,1.003,1.282,0.623,0.988,1.608,1.11,1.273,1.321,0.907,0.918,0.931,1.179,0.785,1.088,1.453,0.938,1.1,0.853,0.815,0.946,1.314 +NM_012423,0.524,1.008,1.473,0.559,1.058,1.266,0.593,0.897,1.219,1.029,0.815,1.34,1.114,0.447,0.949,1.436,0.959,0.981,1.061,1.361,0.467,1.057,1.797,1.277,0.429,0.772,1.407,0.943,0.274,1.107,1.22,1.046,1.025,1.28,0.177,0.892,0.867,1.332,1.145,0.552,1.025,1.291,0.373,0.598,0.983,0.805,0.946,0.901,1.177,0.867,1.045,0.58,0.811,1.051 +NM_012424,0.758,1.164,1.341,0.83,0.943,1.061,0.72,0.552,1.035,0.979,1.034,0.988,0.613,0.743,0.884,0.998,0.875,0.88,0.883,1.077,0.522,0.767,1.135,1.184,1.042,0.707,1.181,0.76,0.515,1.346,0.831,1.722,1.531,1.449,0.307,0.893,1.311,0.924,1.395,0.948,0.966,1.159,0.802,1.354,1.114,1.061,0.812,0.918,0.832,0.889,0.959,0.874,1.002,1.574 +NM_012425,0.906,0.993,1.174,0.911,0.949,0.916,0.844,0.767,0.904,1.07,1.133,0.938,0.834,0.975,0.828,1.056,0.894,0.985,1.069,1.107,0.984,0.855,0.988,0.864,0.851,0.866,1.183,1.098,0.449,0.94,1.149,1.36,1.45,1.295,0.835,0.957,0.961,0.904,1.103,1.064,1.299,1.009,0.804,1.048,1.032,1.002,1.09,0.796,0.817,1.001,1.035,0.975,1.328,1.486 +NM_012426,1.771,0.801,1.15,0.985,1.553,0.707,0.625,1.585,1.711,1.647,0.791,1.486,1.002,1.296,0.99,0.948,1.107,1.088,2.182,0.776,1.069,2.813,0.869,2.109,0.698,2.208,1.115,1.732,0.71,0.841,1.505,0.833,1.645,0.716,0.786,0.998,0.848,1.43,1.423,0.82,1.091,0.903,0.619,1.357,1.56,0.721,1.006,2.092,0.773,1.243,0.895,0.933,1.268,0.932 +NM_012427,1.156,0.516,10.73,1.139,3.013,0.496,0.546,1.095,0.768,5.155,0.611,3.003,0.953,0.595,0.592,3.41,8.033,8.891,4.257,0.464,1.983,1.166,0.525,2.32,0.449,2.084,2.654,0.805,0.471,0.53,0.98,0.621,4.487,0.564,0.876,0.492,0.482,5.238,0.938,0.57,2.23,0.401,0.617,0.546,3.642,0.585,10.98,2.3,1.02,14.63,1.358,8.145,7.067,1.815 +NM_012428,1.089,1.125,1.067,1.248,1.0,0.937,0.951,1.043,0.979,0.963,1.078,1.03,1.086,1.025,1.097,1.152,0.903,1.018,1.149,0.994,1.23,0.925,1.048,0.971,0.874,1.18,1.055,1.11,0.885,1.033,0.977,1.105,0.879,0.89,0.929,0.972,0.958,1.059,0.926,1.05,1.02,1.036,1.03,1.105,1.033,1.175,1.004,1.053,1.049,1.275,1.017,0.921,1.133,0.901 +NM_012429,0.841,0.574,1.549,0.744,1.587,1.304,0.417,0.934,3.001,2.087,0.63,1.077,0.819,1.293,1.165,1.134,1.267,1.433,0.908,0.851,0.485,1.368,0.786,1.33,0.504,1.034,1.152,1.468,0.657,0.877,1.655,1.011,0.816,0.902,2.805,0.432,1.38,1.102,1.141,0.584,1.428,0.959,1.188,1.16,1.558,0.645,1.709,2.045,0.59,0.783,1.045,1.043,1.218,0.799 +NM_012430,0.685,0.906,1.264,0.602,1.12,1.12,0.68,0.86,1.414,1.196,1.077,1.105,0.705,0.722,0.911,1.412,0.99,0.997,1.55,0.836,0.684,0.959,1.034,1.46,0.506,0.684,1.481,1.027,0.516,1.003,1.021,1.745,1.882,1.027,0.391,0.949,0.891,1.04,0.894,0.775,1.268,0.994,0.643,1.159,0.93,1.069,1.284,0.65,0.844,0.715,0.888,0.994,1.111,1.326 +NM_012432,0.95,1.033,0.979,0.934,0.888,0.975,0.759,0.764,0.957,1.026,0.807,0.878,0.763,0.855,1.0,0.817,1.084,0.876,1.189,0.936,1.126,0.818,1.0,1.093,0.963,1.059,1.083,0.925,0.672,1.06,0.889,1.317,1.22,1.069,0.654,1.303,0.884,0.821,1.116,1.355,1.042,0.963,0.995,1.284,1.096,1.002,0.938,0.922,1.017,1.023,1.064,0.937,1.101,1.581 +NM_012433,0.624,1.076,1.312,0.755,0.849,0.996,0.581,0.428,1.238,0.972,0.691,0.534,0.473,0.543,1.084,1.601,0.773,0.942,1.106,1.004,0.536,0.672,1.396,0.835,0.524,0.566,1.256,0.627,0.579,0.979,1.062,1.406,4.197,1.131,0.337,0.896,1.102,0.76,1.595,1.094,0.951,1.094,0.7,1.695,0.948,1.054,0.916,0.649,1.333,0.837,1.143,0.691,0.843,2.783 +NM_012434,0.518,1.568,0.652,0.844,0.778,2.1,0.622,0.401,0.772,0.581,2.66,0.562,0.383,0.643,1.45,2.478,0.552,1.119,0.737,2.55,0.308,0.799,2.461,0.855,0.707,0.656,0.743,0.83,0.61,1.742,0.687,1.302,0.913,1.617,0.458,1.935,2.497,0.61,1.702,0.799,0.633,2.388,1.376,1.196,0.598,2.784,1.194,0.592,1.356,0.529,2.163,0.631,0.495,1.248 +NM_012436,1.033,0.845,1.192,0.829,1.087,0.985,1.265,0.96,1.031,0.989,0.967,0.992,1.055,1.012,0.868,0.929,1.019,1.165,0.841,0.935,1.01,1.029,0.878,1.036,0.975,0.823,1.006,1.118,1.777,0.934,0.933,0.906,1.0,1.089,1.257,1.072,0.971,1.138,0.997,1.136,0.965,0.941,1.834,1.018,0.965,0.988,0.999,1.066,1.06,0.891,1.01,0.853,1.293,1.192 +NM_012437,0.849,0.979,1.408,0.701,1.242,1.22,0.757,0.895,1.232,1.151,0.811,1.296,0.89,0.901,1.04,1.249,1.204,1.058,0.933,1.011,0.611,1.112,0.925,1.289,0.599,0.817,1.426,1.101,0.643,1.027,1.147,2.022,1.986,1.043,0.52,1.007,0.916,1.383,1.083,0.907,1.334,1.006,0.675,0.789,1.002,0.957,1.151,0.777,0.892,0.835,1.072,0.884,0.773,1.61 +NM_012443,1.086,0.861,1.058,1.01,1.137,1.018,1.053,1.074,1.13,1.026,1.0,0.998,1.048,1.02,0.934,1.049,1.043,0.897,0.852,0.937,0.93,1.009,1.052,0.997,0.978,0.839,1.024,0.944,1.091,1.037,1.03,0.979,1.032,0.951,1.035,0.981,1.202,0.933,1.034,0.955,1.099,0.982,1.23,0.951,1.148,0.932,1.07,1.019,1.008,0.954,0.929,0.991,1.14,1.009 +NM_012444,0.984,0.891,0.896,0.954,0.936,0.978,1.004,1.112,1.073,0.958,1.089,0.999,1.084,0.865,1.164,0.953,1.093,0.97,1.022,0.935,1.101,1.068,0.915,1.008,0.994,1.009,1.206,1.141,0.59,1.103,0.994,0.962,0.855,0.955,0.978,1.094,1.094,1.071,0.952,1.067,0.918,1.127,0.807,0.939,1.009,1.094,1.014,0.965,0.888,0.994,1.023,1.081,1.05,0.927 +NM_012445,0.495,0.833,1.444,0.617,1.126,0.723,0.401,0.767,0.583,1.619,0.475,0.854,0.647,0.78,0.94,0.679,0.448,1.049,1.624,1.312,0.629,1.315,1.277,0.636,0.312,1.494,0.768,1.451,0.235,1.668,1.185,15.43,1.862,0.84,0.185,1.225,0.428,1.651,1.621,3.532,1.866,1.018,0.643,0.634,0.759,1.331,1.123,0.919,0.566,1.004,1.328,2.381,0.377,1.26 +NM_012446,0.993,0.634,1.595,0.85,1.301,0.855,0.758,0.963,1.671,1.158,0.905,1.448,1.2,1.124,1.3,1.004,1.211,0.979,1.523,1.213,1.254,1.277,0.875,1.233,0.747,1.265,1.849,1.355,0.561,0.843,1.395,1.213,1.011,1.044,0.58,0.558,0.809,1.22,0.809,0.743,1.335,1.142,0.652,0.567,1.133,0.716,0.853,1.227,0.55,1.073,1.211,0.805,1.359,0.84 +NM_012447,0.892,1.229,0.92,1.098,0.724,0.91,1.145,0.781,1.027,1.346,1.004,0.904,0.762,0.843,0.781,0.984,0.752,0.874,0.736,0.871,0.976,1.138,1.126,0.845,0.915,0.932,0.974,1.05,1.335,1.125,1.005,1.16,0.926,1.098,1.092,1.048,0.764,0.85,1.184,1.373,1.044,0.809,0.858,1.191,1.083,1.015,0.902,0.743,1.127,1.013,0.872,1.147,1.004,1.126 +NM_012448,0.767,0.879,1.229,0.772,0.852,0.967,0.765,0.717,0.977,0.975,0.873,0.849,0.626,0.762,0.852,1.073,1.449,0.929,1.201,1.0,0.716,0.857,1.042,1.254,0.699,0.747,1.261,0.799,0.723,1.036,0.76,1.103,1.199,1.051,0.857,0.847,0.906,0.809,1.303,1.152,1.204,1.045,0.946,1.276,1.155,1.003,1.397,0.856,0.993,1.258,1.048,0.913,1.195,1.086 +NM_012449,0.883,1.078,1.7,0.883,1.016,1.579,1.163,0.829,0.811,0.652,0.988,1.19,1.049,0.891,1.27,1.812,1.207,0.946,0.74,1.081,0.709,1.223,1.529,0.954,0.78,0.681,1.382,0.696,0.799,1.237,0.863,1.977,2.449,1.215,0.778,0.746,0.94,1.166,1.872,1.159,0.996,1.221,0.736,0.873,0.832,0.943,1.072,0.756,1.307,0.938,1.187,1.12,0.685,1.469 +NM_012450,2.121,0.822,2.208,0.92,2.831,0.684,0.671,2.83,3.964,3.486,0.599,2.24,1.428,1.837,1.259,1.032,2.375,1.787,2.428,0.747,1.582,2.035,0.636,3.087,0.768,1.846,2.194,2.921,0.635,0.706,2.737,0.707,1.225,0.705,1.901,0.817,0.739,1.571,0.653,0.684,2.928,0.652,1.201,0.721,4.471,0.714,1.865,2.529,0.903,2.228,0.973,0.976,2.969,0.776 +NM_012451,0.932,1.116,0.856,0.892,0.981,0.978,1.012,0.94,0.877,0.878,1.138,0.828,1.032,1.217,0.817,1.044,0.857,0.925,1.023,1.041,1.0,0.93,0.925,1.064,0.869,1.037,0.971,0.884,1.358,0.964,1.087,0.92,0.995,1.193,1.048,0.94,0.903,0.883,1.058,1.013,1.028,0.995,1.502,0.902,0.934,1.0,1.147,0.942,0.98,0.96,1.087,1.06,0.927,1.024 +NM_012452,0.992,1.276,1.111,0.911,1.226,1.025,1.119,0.808,0.997,1.052,0.887,1.136,1.012,0.769,0.905,0.947,1.116,1.124,1.194,1.042,0.998,0.769,1.245,0.952,1.016,1.133,0.829,0.954,0.877,0.884,0.85,1.07,1.049,1.097,1.006,0.939,1.028,1.28,0.893,0.843,0.987,1.209,0.98,0.876,0.957,0.986,0.982,0.912,0.994,0.889,0.967,1.136,0.987,1.241 +NM_012453,0.492,1.302,0.922,0.736,0.83,1.313,0.927,0.422,0.917,0.956,0.865,0.781,0.507,0.537,0.878,1.775,0.64,0.989,0.899,1.397,0.35,0.645,2.635,1.06,0.661,0.584,0.781,0.779,0.639,2.244,0.804,1.416,2.607,1.413,0.18,0.861,1.193,0.705,1.592,0.903,0.92,1.601,0.838,1.128,0.884,1.196,1.252,0.538,1.429,0.629,1.433,1.493,0.611,1.587 +NM_012455,0.914,0.919,0.929,0.871,0.94,1.331,0.801,0.69,0.926,0.902,0.915,0.842,0.824,0.708,0.922,1.466,0.9,0.834,1.054,1.101,0.853,1.011,1.048,1.066,0.942,0.994,0.856,0.656,0.821,1.339,0.944,0.883,1.617,1.511,0.734,0.852,0.948,0.711,1.46,1.249,0.857,1.077,0.82,1.506,0.858,0.991,0.97,1.081,0.836,1.039,1.047,0.656,0.988,1.24 +NM_012456,0.577,0.883,1.059,0.62,0.651,0.889,0.654,0.626,0.736,0.978,1.571,1.192,0.586,0.682,1.086,1.51,0.867,0.755,1.411,0.784,0.51,0.811,1.61,1.483,0.718,0.325,0.997,0.874,0.372,1.597,0.915,1.857,0.895,1.077,0.191,2.319,0.803,0.938,1.646,1.031,1.234,1.174,0.992,1.244,1.255,0.83,0.914,0.809,2.034,0.761,1.072,1.436,0.989,0.659 +NM_012459,1.155,0.67,1.157,0.788,1.127,1.043,0.584,1.257,1.459,1.06,1.675,1.548,1.828,0.814,0.97,2.023,0.88,1.4,1.968,0.69,0.566,1.407,0.964,1.468,0.577,1.286,0.938,1.139,0.416,1.142,1.01,0.872,1.003,1.008,0.235,1.268,1.27,1.421,1.137,0.492,1.163,0.885,0.513,0.725,1.304,0.721,1.054,1.617,0.938,0.973,0.878,0.831,0.857,1.127 +NM_012460,0.786,1.355,1.004,0.669,0.862,1.158,0.677,0.57,1.103,0.93,1.285,0.935,0.779,0.707,1.044,1.331,0.811,0.717,1.492,1.003,0.84,0.854,1.3,1.02,0.691,0.743,0.817,0.608,0.465,1.121,0.871,1.116,2.11,1.494,0.48,1.093,1.072,0.957,1.447,0.837,0.912,1.181,0.613,2.639,0.952,0.724,0.995,0.815,0.967,0.816,0.911,0.724,0.888,1.801 +NM_012463,0.898,0.855,0.857,0.924,0.863,0.914,1.079,0.743,0.957,1.045,1.334,0.807,0.756,0.762,1.074,1.25,0.806,0.921,0.865,1.091,0.73,0.88,1.023,0.997,0.938,0.837,0.977,0.759,0.726,0.811,0.96,1.003,1.067,1.517,0.904,1.356,1.159,0.736,1.348,1.161,0.908,1.156,0.818,1.119,1.063,1.083,0.97,0.823,1.02,0.839,1.016,1.003,0.914,1.353 +NM_012464,1.005,0.705,0.867,1.055,1.085,0.902,1.05,0.898,0.871,0.893,1.022,0.917,0.991,0.862,1.109,1.028,1.178,1.162,1.044,0.931,0.995,1.013,0.983,1.051,0.916,0.953,0.903,0.979,0.919,1.03,1.066,0.882,0.758,0.909,1.197,1.062,1.097,1.023,1.002,1.249,0.835,1.131,1.079,0.838,0.988,1.07,1.053,1.003,1.093,1.004,0.894,1.086,1.095,0.924 +NM_012466,1.104,0.872,0.973,0.988,0.948,1.019,1.066,0.93,0.906,0.939,1.009,1.1,0.888,1.001,1.046,1.065,0.883,0.975,1.034,0.942,1.111,0.97,0.966,1.024,0.991,1.07,1.14,1.087,0.834,1.004,1.127,1.105,1.157,0.916,1.013,1.033,0.887,0.962,0.91,1.116,0.916,0.95,0.812,0.88,1.192,0.877,0.869,0.87,1.056,1.076,1.086,0.86,0.891,0.946 +NM_012467,0.995,0.985,0.944,0.834,0.872,0.922,0.82,1.023,0.913,0.868,1.22,0.939,0.945,0.92,1.503,5.258,0.915,0.968,0.885,1.401,1.102,0.867,1.002,0.9,1.011,1.0,0.95,0.867,1.023,1.079,0.862,1.02,1.034,1.042,1.031,0.891,1.089,1.077,1.089,1.109,0.957,1.354,1.677,1.068,1.079,2.356,1.605,0.96,2.404,0.949,1.75,0.892,0.952,1.005 +NM_012469,0.599,0.809,0.946,0.716,0.762,0.909,0.79,0.427,1.027,0.916,0.868,0.696,0.655,0.598,0.737,1.393,0.844,0.911,1.255,0.878,0.79,1.103,1.461,0.999,0.612,1.096,0.78,0.645,0.537,1.12,0.913,1.171,2.672,1.365,0.373,1.282,0.807,0.89,1.554,1.503,0.793,1.324,0.581,2.264,1.0,0.852,0.861,1.088,1.025,0.908,0.88,1.181,0.864,1.924 +NM_012470,0.685,1.109,1.276,0.644,1.026,0.986,0.633,0.608,1.107,1.054,0.86,0.7,0.702,0.68,1.002,1.064,1.026,1.063,1.198,0.733,0.808,1.08,1.494,1.014,0.801,0.794,1.191,0.95,0.704,1.159,0.94,1.016,1.288,1.165,0.428,0.664,0.89,1.196,1.385,0.804,1.135,1.012,0.778,1.16,1.156,0.888,0.998,0.664,1.023,1.007,0.953,0.762,0.868,1.117 +NM_012471,1.138,1.067,0.931,1.088,0.988,0.907,0.945,0.788,0.907,1.072,1.031,1.124,1.076,0.745,0.743,1.022,0.949,0.948,0.887,0.969,0.822,1.089,0.907,0.984,0.965,1.049,1.089,1.107,0.878,1.011,0.908,1.052,0.908,1.108,1.022,0.934,1.055,0.933,1.032,1.121,1.123,0.995,1.016,1.086,0.975,1.055,1.023,0.906,0.841,1.198,1.029,0.981,1.085,0.949 +NM_012472,0.927,1.102,1.014,0.906,1.039,0.901,0.826,0.827,0.892,0.943,1.129,0.994,0.884,0.766,1.095,2.074,1.161,1.005,0.923,1.348,0.851,0.96,0.944,0.958,0.866,1.012,0.788,0.926,1.026,1.191,0.957,1.068,2.022,0.941,1.131,1.01,1.015,0.878,0.897,2.224,0.805,0.909,0.989,0.902,1.018,2.133,1.343,0.864,1.672,0.869,1.066,0.988,0.99,1.419 +NM_012473,0.534,1.532,1.037,0.677,1.0,1.447,0.783,0.396,0.9,1.029,1.663,1.06,0.697,0.442,0.737,1.611,0.913,1.304,0.917,1.236,0.388,0.603,1.507,1.152,0.833,0.731,1.201,0.905,0.548,1.553,0.63,0.975,0.545,1.672,0.183,0.869,1.724,0.768,1.175,0.548,0.974,1.379,1.028,0.581,1.085,1.5,1.095,0.594,1.508,0.632,1.306,0.822,0.882,1.505 +NM_012474,0.696,0.947,1.218,0.792,0.766,1.029,0.643,0.557,0.923,1.119,0.827,0.869,0.693,0.63,0.795,1.118,1.248,0.851,1.122,0.739,0.813,0.775,1.22,1.218,0.624,0.803,1.441,0.708,0.511,0.864,0.863,1.603,3.0,0.992,0.358,1.45,1.083,0.689,1.535,1.199,1.006,0.885,0.712,2.596,1.091,0.771,1.149,0.627,1.058,1.346,1.088,1.055,1.098,2.556 +NM_012476,1.0,0.967,0.934,1.011,1.053,0.94,1.123,1.01,1.028,0.931,1.077,1.049,0.848,1.124,0.742,1.012,0.982,0.964,0.891,1.053,1.181,1.104,1.095,1.083,0.969,1.157,1.178,1.118,0.903,0.777,0.883,1.082,0.907,1.245,1.086,1.145,1.099,0.963,0.981,0.957,1.121,0.985,0.863,0.806,0.954,0.949,0.987,0.903,0.895,1.044,0.888,1.206,0.927,1.011 +NM_012477,0.461,1.461,0.938,0.536,0.871,1.386,0.667,0.493,0.98,0.935,1.15,0.838,0.669,0.449,0.799,1.193,0.946,0.895,0.953,1.374,0.327,0.657,1.344,0.897,1.039,0.583,1.213,0.956,0.399,1.647,0.746,1.956,1.36,1.651,0.269,0.849,1.079,0.91,1.09,1.351,1.037,1.296,0.707,0.997,0.828,1.165,1.233,0.636,0.797,0.493,1.002,0.578,0.625,1.041 +NM_012478,0.838,0.989,0.982,0.845,0.979,1.347,0.884,1.011,1.032,0.893,0.746,0.69,0.975,0.831,0.711,1.05,1.013,1.036,1.032,0.832,0.949,1.741,0.872,0.94,1.013,1.447,0.996,0.662,1.208,1.125,0.933,1.448,0.8,1.175,2.081,0.658,1.004,1.428,2.274,0.984,0.856,1.063,0.66,1.676,0.953,0.744,0.94,1.912,0.863,1.21,0.866,0.756,0.679,0.847 +NM_012479,0.599,0.777,1.504,0.658,1.362,0.976,0.723,0.786,1.621,1.358,0.624,0.69,0.684,0.801,1.291,1.917,1.072,0.831,0.87,1.018,0.522,0.656,1.722,1.383,0.401,0.493,1.454,1.221,0.358,1.429,2.19,1.491,3.648,0.975,0.933,0.455,0.733,1.15,1.955,1.207,1.479,0.925,0.645,0.935,1.333,0.906,1.226,0.625,1.35,0.858,1.137,0.991,0.69,1.903 +NM_012482,0.657,1.107,1.053,0.765,0.696,1.195,0.885,0.649,0.796,0.704,1.036,0.607,0.841,0.734,0.872,1.11,0.714,1.013,0.836,0.995,0.598,0.613,1.441,0.703,0.926,0.701,0.973,0.755,0.484,1.12,0.89,1.996,1.511,1.252,0.445,1.187,1.373,0.705,1.513,2.315,0.724,1.253,0.716,1.517,0.805,0.832,0.888,0.631,1.108,0.728,1.281,1.228,0.83,1.624 +NM_012485,0.864,0.898,1.014,1.044,0.967,1.222,1.014,0.847,0.993,0.937,1.256,0.934,0.952,0.815,1.069,1.719,0.798,0.978,0.9,0.872,0.809,0.827,1.405,0.991,0.892,0.762,1.23,0.805,0.979,1.073,0.96,1.111,5.514,1.044,0.806,1.439,1.097,0.891,1.477,1.102,0.853,0.787,0.922,1.03,0.796,1.177,1.086,0.816,1.535,0.794,1.431,0.909,1.014,2.956 +NM_012486,0.832,0.975,0.905,0.734,0.778,0.92,0.829,0.583,0.87,0.825,1.197,0.695,0.562,0.859,1.01,1.489,0.767,1.017,0.985,0.889,0.605,0.816,1.12,0.724,0.719,0.841,0.947,0.847,0.66,1.015,1.17,1.607,1.558,1.368,0.492,1.342,1.082,0.615,1.144,1.318,0.914,1.21,0.648,1.53,1.114,1.013,0.956,0.798,1.088,0.86,1.058,1.145,1.25,1.734 +NM_013227,1.142,1.03,0.976,1.042,0.991,0.969,0.884,0.869,0.837,1.137,1.118,1.054,1.044,1.01,0.918,1.021,0.955,1.07,1.024,1.031,1.124,0.945,1.061,0.954,1.074,1.044,0.944,0.962,0.82,0.984,1.05,1.098,1.088,1.052,1.0,0.998,0.931,1.157,1.089,1.112,0.986,0.985,0.911,1.058,1.006,1.052,1.136,1.039,0.944,1.114,1.067,1.013,0.959,0.781 +NM_013231,0.865,1.057,0.783,0.871,0.938,1.055,0.995,0.909,1.005,1.154,1.032,1.041,0.803,0.8,0.821,1.151,0.792,0.981,0.815,0.951,0.826,0.974,1.165,1.16,1.023,0.868,0.898,1.095,0.757,1.333,0.902,2.756,1.175,1.663,0.663,0.849,0.811,1.209,0.929,1.075,0.846,1.496,0.868,0.73,0.89,0.917,1.175,0.868,0.802,0.746,1.097,1.579,0.729,1.084 +NM_013232,0.95,0.669,0.936,0.886,1.402,0.964,0.385,0.422,1.454,0.748,1.362,0.569,0.738,1.074,1.204,1.802,1.02,0.868,1.326,0.823,0.469,0.759,1.517,0.944,0.414,1.248,1.083,1.207,0.315,0.557,1.337,0.93,2.201,1.135,1.854,0.936,1.108,1.253,0.979,0.647,1.333,0.882,0.611,1.613,1.1,1.106,0.843,1.207,1.046,0.844,1.06,1.25,1.025,1.953 +NM_013233,0.983,1.111,1.298,0.591,0.763,1.065,0.41,0.778,1.828,0.77,1.052,0.637,0.865,0.987,1.327,1.539,1.289,0.69,1.851,0.773,0.594,0.997,0.957,0.947,0.432,1.003,1.24,1.127,0.355,0.98,1.359,1.428,1.438,1.194,0.803,0.689,1.409,0.933,1.157,0.527,1.297,1.284,0.741,1.176,1.19,1.145,0.842,1.069,1.109,1.072,1.119,0.57,1.332,0.851 +NM_013234,0.549,0.788,1.052,0.594,0.886,1.131,0.585,0.516,1.073,0.907,1.083,1.006,0.757,0.417,0.938,1.886,0.715,1.006,1.533,1.027,0.578,0.779,1.753,1.084,0.57,0.895,1.178,0.891,0.336,1.094,1.01,0.816,2.506,1.49,0.23,0.954,1.287,0.954,1.412,0.602,1.017,1.27,0.531,0.785,1.016,0.951,1.03,0.711,1.14,0.84,1.003,0.787,1.004,1.718 +NM_013235,0.641,1.117,1.187,0.653,0.883,0.971,0.669,0.465,1.05,0.878,1.038,0.68,0.58,0.774,0.962,1.167,0.946,0.87,1.221,1.085,0.743,0.959,1.33,1.106,0.698,0.783,1.512,0.72,0.581,1.185,0.96,1.351,4.029,1.306,0.374,1.317,0.936,1.131,1.457,1.015,0.985,1.31,0.549,1.366,0.898,1.017,0.864,0.745,1.14,0.871,1.154,0.974,0.888,1.883 +NM_013236,0.9,0.893,1.249,0.697,1.136,0.906,0.527,0.648,1.395,0.923,0.805,0.813,0.743,0.744,1.178,1.678,1.0,0.875,2.177,0.76,0.915,1.011,1.05,1.348,0.491,1.08,1.297,0.955,0.409,0.737,1.07,1.007,2.107,1.005,0.335,0.623,0.825,1.138,1.117,0.697,1.287,0.891,0.578,1.005,1.067,1.107,0.785,0.85,0.874,0.848,1.078,0.808,1.081,1.697 +NM_013237,0.832,0.687,0.996,0.975,0.817,1.082,0.487,0.625,0.833,0.948,1.236,1.293,0.916,0.513,0.855,2.593,0.974,1.001,1.397,0.954,0.782,0.745,1.712,1.145,0.626,1.29,1.199,0.768,0.528,1.25,0.682,0.907,3.528,1.012,0.392,0.733,1.021,1.074,2.077,0.803,1.039,1.137,1.087,1.519,1.136,0.997,1.265,0.999,1.201,1.299,0.96,0.856,1.324,2.026 +NM_013238,0.35,0.649,0.835,0.633,0.458,2.302,0.708,0.701,0.942,0.897,1.535,0.899,0.5,0.274,1.588,6.041,0.699,1.275,0.936,1.636,0.24,0.377,2.313,1.288,0.424,0.382,1.255,1.091,0.681,2.021,1.016,1.702,2.88,2.127,0.175,1.292,2.068,0.641,2.089,0.894,1.199,1.841,0.73,1.351,0.581,1.845,2.472,0.502,2.317,0.571,2.394,0.842,0.272,2.932 +NM_013239,0.921,1.198,1.715,0.793,1.431,0.913,0.659,0.815,1.571,1.59,0.779,1.294,0.885,0.72,1.026,0.869,1.308,0.993,1.061,1.146,0.577,1.022,1.005,1.69,0.694,1.049,2.312,1.102,0.377,0.96,1.11,1.684,0.862,0.911,0.63,1.086,0.902,1.276,0.839,0.935,1.764,0.811,0.749,0.904,1.512,1.012,1.349,1.06,0.894,1.075,0.949,1.039,1.032,1.34 +NM_013240,0.978,0.999,1.011,0.947,0.74,0.932,1.026,0.818,1.195,1.026,1.163,0.934,1.106,1.428,0.951,1.263,0.992,1.262,0.968,1.336,0.931,0.783,1.436,0.993,0.824,0.96,1.0,0.986,0.817,0.854,1.2,0.991,1.033,0.973,0.931,0.954,1.184,0.976,1.237,0.842,1.194,0.999,0.871,0.984,1.084,1.199,1.096,0.902,0.827,0.818,1.091,0.933,1.035,1.303 +NM_013241,0.823,1.035,0.894,0.847,0.765,0.894,0.927,0.809,0.857,0.87,1.054,0.852,0.739,0.767,0.935,1.284,0.85,0.803,0.917,0.976,0.962,0.878,1.224,1.074,0.886,0.834,1.018,0.786,0.892,1.005,0.883,1.672,2.061,0.961,0.754,0.992,0.985,1.04,1.47,1.768,0.844,1.458,0.867,1.436,0.786,0.939,1.066,0.691,1.09,0.857,0.995,1.223,1.043,1.864 +NM_013242,0.63,1.132,1.067,0.879,0.847,1.274,0.813,0.549,1.019,0.866,1.036,0.968,0.598,0.672,1.079,1.48,0.826,0.828,1.284,0.795,0.618,0.782,1.04,1.072,0.59,0.931,1.271,0.801,0.547,0.956,0.852,1.788,2.684,1.406,0.414,0.842,0.948,0.888,1.373,0.902,0.817,0.881,0.709,1.495,0.889,0.99,0.932,0.794,0.851,0.861,0.93,0.822,1.027,2.602 +NM_013243,1.037,0.888,0.777,0.881,0.911,0.811,1.021,0.955,0.867,0.902,1.019,0.991,0.957,0.87,1.145,0.92,1.051,1.028,1.017,1.157,1.014,0.771,1.131,1.177,0.882,1.023,0.957,0.923,1.2,1.225,0.97,0.992,1.005,1.027,0.753,0.978,0.932,0.81,1.024,0.906,1.024,1.092,1.146,0.919,0.988,0.982,0.973,1.063,0.98,0.986,1.117,1.043,1.059,0.976 +NM_013244,1.054,0.994,0.891,1.103,0.966,0.984,1.073,1.012,1.021,0.851,1.038,1.012,0.907,0.907,1.112,0.981,1.074,0.951,0.95,0.986,1.002,1.073,0.876,1.123,0.975,1.185,0.958,0.951,1.188,1.009,1.147,0.929,0.919,1.091,1.156,1.039,1.093,1.008,1.011,1.14,0.864,1.019,1.027,0.955,0.998,1.004,0.903,0.991,0.922,1.174,1.114,0.935,1.017,0.933 +NM_013245,1.163,0.773,0.864,1.025,0.75,1.264,0.758,0.939,0.959,0.819,1.044,0.852,0.992,0.874,1.05,1.526,0.917,0.879,1.089,0.814,0.774,1.047,1.018,1.101,0.975,1.16,0.982,0.804,0.631,1.021,1.011,1.058,2.358,1.306,0.754,0.677,0.902,1.114,2.104,0.786,0.797,0.974,0.654,1.068,1.046,0.842,0.883,1.466,0.949,0.858,0.979,0.695,0.837,1.446 +NM_013247,0.884,0.942,1.091,0.949,0.742,1.188,0.802,0.781,0.927,0.859,1.02,0.822,0.988,0.941,0.983,1.313,1.015,0.828,1.226,0.781,0.924,0.986,1.2,1.093,0.86,0.87,1.215,0.778,0.989,1.101,0.931,1.67,1.509,1.292,0.571,0.923,1.102,1.005,1.259,1.043,0.929,1.093,1.194,1.105,0.847,0.908,1.097,0.794,0.949,0.928,0.945,0.82,1.203,1.156 +NM_013248,0.948,1.171,1.259,0.842,0.945,0.898,0.751,0.718,0.968,1.422,1.061,1.184,1.061,0.729,0.83,0.942,1.056,0.854,1.161,0.856,0.7,0.881,1.421,1.272,0.627,0.961,1.357,0.792,0.472,1.082,1.086,1.443,2.868,1.185,0.592,1.4,0.96,1.031,1.371,2.238,0.93,1.001,0.747,2.281,1.197,0.774,0.999,1.01,0.75,0.964,0.919,1.296,1.101,2.843 +NM_013249,1.052,0.915,0.994,0.989,0.904,1.206,1.0,1.191,0.896,1.052,1.183,0.928,0.927,0.995,1.001,0.898,1.097,1.012,0.969,1.098,0.995,0.982,1.087,0.987,1.028,0.932,1.019,0.957,1.154,1.034,1.033,1.079,1.247,1.029,0.94,1.065,1.143,0.968,1.04,0.981,1.049,1.156,0.935,1.119,0.941,1.061,0.948,1.19,1.038,0.874,0.973,0.975,0.908,0.949 +NM_013251,1.021,1.084,0.976,1.074,0.907,0.95,1.043,1.006,1.059,0.983,1.112,0.904,0.936,0.984,1.022,1.046,1.006,0.967,0.936,1.011,0.988,0.86,1.168,1.246,0.948,1.026,0.879,0.961,1.334,0.973,1.105,0.999,1.037,0.956,0.885,1.028,1.077,1.023,0.979,0.949,0.853,1.049,1.365,0.905,0.953,1.266,0.959,0.999,1.165,1.025,0.996,1.12,0.999,1.01 +NM_013252,0.992,0.911,1.104,1.06,1.097,1.029,0.904,1.124,1.084,1.031,0.952,1.041,1.093,1.07,0.703,0.796,1.012,0.862,0.967,0.969,0.958,1.187,0.904,0.98,1.024,0.998,0.998,1.062,1.239,0.902,0.893,1.527,0.998,0.814,0.883,0.929,1.046,1.02,0.859,1.895,1.047,0.925,0.931,0.917,0.85,1.05,0.947,1.037,0.834,1.053,0.929,1.38,1.148,1.115 +NM_013253,1.7930000000000001,2.2569999999999997,1.788,1.851,1.792,1.834,1.6720000000000002,1.6389999999999998,1.9140000000000001,1.849,1.7530000000000001,1.829,1.7469999999999999,1.785,2.031,1.752,2.0420000000000003,2.0519999999999996,1.92,1.9729999999999999,2.298,1.7690000000000001,2.526,2.241,2.145,1.8519999999999999,2.132,1.8039999999999998,1.634,4.11,1.8679999999999999,9.066,3.2590000000000003,3.0740000000000003,1.468,1.632,1.9820000000000002,2.465,2.498,2.408,2.5300000000000002,2.327,1.5779999999999998,1.796,2.186,1.6280000000000001,2.123,1.5630000000000002,1.7189999999999999,1.911,2.069,2.504,2.667,2.076 +NM_013254,0.611,0.928,1.146,0.812,0.681,1.524,0.872,0.571,1.085,0.791,1.154,0.833,0.61,0.652,1.075,1.561,0.704,0.875,1.032,1.072,0.557,0.804,1.006,0.996,0.662,0.793,1.12,0.737,0.543,1.145,0.846,1.129,1.15,1.424,0.358,1.016,1.153,0.787,1.241,0.884,0.986,1.149,0.756,1.783,0.881,1.071,0.803,0.686,1.155,0.764,0.86,0.865,0.988,2.052 +NM_013255,0.745,0.883,1.155,0.774,0.988,1.216,0.901,0.705,1.111,1.13,1.006,0.982,0.629,0.671,0.776,1.162,1.087,0.861,1.008,1.002,0.677,0.873,1.048,0.939,0.758,0.955,0.919,0.883,0.719,1.31,0.911,0.878,1.214,0.948,1.224,1.036,0.972,0.909,1.13,1.372,0.982,0.97,1.046,1.08,1.166,1.181,1.145,0.919,0.936,0.802,1.009,0.912,1.187,1.132 +NM_013256,0.802,0.987,1.003,0.755,0.968,1.118,0.789,0.894,1.182,0.911,1.096,1.031,1.01,0.908,0.923,1.226,0.836,0.895,1.051,1.266,0.622,0.912,1.332,1.021,0.988,0.84,1.315,0.897,0.798,1.089,0.873,0.95,1.984,1.317,0.535,0.995,1.124,1.024,1.035,1.154,1.012,1.169,1.081,0.801,0.94,0.95,0.902,0.953,1.004,0.802,1.225,0.921,0.667,1.444 +NM_013257,1.057,1.102,0.906,1.042,1.171,1.092,1.045,1.054,0.938,1.071,1.008,0.909,1.065,0.975,1.086,1.037,0.98,0.754,0.95,1.075,0.998,1.017,1.096,0.976,0.891,0.989,0.943,0.867,0.977,1.08,1.041,1.063,0.974,0.917,0.929,0.903,1.021,0.883,1.014,1.066,1.1,0.903,0.9,1.027,1.069,1.062,1.02,0.966,1.045,0.958,1.06,0.891,0.962,1.048 +NM_013259,1.044,1.05,0.799,1.208,0.951,1.041,0.983,0.914,0.994,0.943,0.958,0.984,1.065,1.231,1.076,1.048,1.023,1.104,0.953,0.962,0.927,0.894,0.989,1.009,0.943,0.963,0.984,0.961,0.869,0.946,1.041,1.0,0.877,1.128,0.965,1.153,1.027,0.892,1.124,0.921,0.947,0.945,1.061,1.258,1.013,1.167,0.989,1.012,0.873,0.944,1.092,1.099,1.025,1.049 +NM_013260,0.986,0.974,0.953,0.969,0.878,1.178,0.975,0.707,0.999,0.948,0.874,0.97,0.853,0.875,0.828,1.112,0.902,1.08,0.984,1.111,0.958,0.973,1.181,1.03,0.881,1.056,0.867,0.928,1.057,1.117,0.902,1.221,1.365,1.203,0.829,0.972,1.021,0.985,1.495,0.997,0.919,1.048,0.915,1.13,0.949,1.031,0.884,0.919,0.908,0.864,1.069,0.94,0.98,1.256 +NM_013261,0.821,1.297,1.088,0.928,0.995,1.011,1.078,0.867,0.967,0.893,1.122,0.77,0.923,0.845,1.046,1.387,0.89,0.997,1.092,1.003,0.934,0.936,1.244,0.989,1.418,0.912,0.974,0.982,0.78,1.1,0.841,1.371,1.238,1.344,0.876,1.047,1.136,0.907,1.054,1.544,0.954,1.488,1.057,1.518,0.994,0.898,1.301,0.84,0.972,0.843,1.009,1.153,0.884,0.749 +NM_013263,0.875,1.05,1.626,0.892,1.004,0.978,0.59,0.646,1.966,1.279,0.989,0.714,0.736,1.018,1.18,1.178,1.175,0.791,1.053,0.873,0.907,0.754,1.044,1.251,0.615,0.918,1.334,1.327,0.409,0.992,1.613,1.581,2.478,1.226,0.723,0.728,0.843,0.909,0.934,0.755,1.427,0.936,0.649,0.984,1.155,0.933,1.002,0.798,0.874,0.864,0.979,0.686,1.096,3.687 +NM_013264,1.002,0.961,0.823,1.033,0.907,1.009,0.905,1.084,1.082,0.925,0.993,0.885,1.075,1.1,0.954,1.128,0.968,0.96,0.903,0.967,1.087,1.199,0.972,1.096,0.958,1.156,1.054,0.892,0.769,1.0,0.97,1.043,0.85,1.0,0.96,1.015,1.012,1.094,0.998,1.094,0.842,1.045,1.165,1.011,1.05,0.917,1.024,1.163,0.944,0.905,0.983,0.918,1.098,0.861 +NM_013265,0.879,0.802,0.976,0.877,0.607,1.054,0.442,0.618,0.901,0.738,1.124,0.761,0.987,0.583,0.837,1.749,0.726,0.839,1.542,0.935,0.575,0.929,1.296,1.035,0.943,1.226,1.152,0.715,0.402,1.464,0.869,1.493,2.255,1.351,0.364,1.576,1.066,1.149,1.618,0.974,0.92,1.419,0.685,1.352,0.88,0.865,0.902,1.023,0.939,1.049,0.879,0.623,0.994,0.984 +NM_013266,0.934,0.992,1.09,1.179,0.953,1.049,0.953,0.803,1.271,1.211,1.307,1.131,0.979,1.011,0.852,0.828,0.919,0.93,0.974,1.124,1.037,0.973,0.843,1.061,1.017,1.074,0.962,0.957,1.182,1.155,0.941,0.984,1.084,0.988,1.133,1.064,1.034,1.059,0.951,0.955,1.127,1.051,0.985,1.187,0.818,0.952,1.001,0.989,0.973,1.003,0.966,0.945,0.995,1.02 +NM_013267,0.994,1.057,1.153,0.911,0.928,0.933,0.851,1.368,0.936,0.996,1.018,0.975,1.014,1.075,0.883,0.97,0.984,1.012,0.991,1.192,1.074,0.982,0.987,1.008,1.086,0.92,1.001,1.007,0.847,1.058,1.016,1.089,0.987,1.122,0.954,1.023,1.154,1.009,0.848,0.996,0.987,0.995,0.829,1.055,1.035,0.975,0.9,1.106,1.036,1.094,1.062,1.052,1.062,0.967 +NM_013268,1.113,0.956,0.974,1.025,1.096,0.952,0.887,0.902,1.007,0.969,1.19,0.993,0.922,0.923,1.137,0.97,1.079,1.012,0.961,1.061,1.091,0.959,0.923,0.959,1.078,1.006,0.998,1.171,0.88,1.072,0.98,1.072,0.966,0.9,0.962,1.141,1.012,1.071,0.933,1.063,0.974,0.922,0.935,0.966,0.989,1.077,1.058,1.014,0.928,1.002,1.097,0.866,1.049,1.017 +NM_013269,0.997,0.977,1.048,0.838,0.882,0.808,0.908,0.955,0.93,1.006,1.194,0.871,1.154,1.028,1.164,1.001,1.084,0.89,1.056,1.114,0.954,1.072,0.986,0.965,0.946,0.937,1.206,1.105,0.801,1.123,1.203,1.065,1.005,0.798,0.968,0.851,0.913,1.034,1.009,1.135,0.976,1.065,0.907,0.998,0.962,0.92,0.904,1.035,1.118,1.03,0.977,1.0,1.017,1.32 +NM_013270,0.951,0.948,0.961,1.108,1.131,0.94,0.869,0.909,1.0,0.872,0.929,0.874,1.033,0.937,1.033,1.02,1.013,0.968,1.056,0.974,1.149,1.054,1.025,1.169,1.035,0.935,1.07,1.128,0.658,0.974,1.029,1.006,0.906,0.956,1.032,0.796,0.98,0.993,1.031,1.022,0.969,0.876,0.967,1.044,0.887,1.007,0.913,0.944,0.935,0.9,1.066,0.93,0.941,1.099 +NM_013271,0.905,1.214,0.793,1.123,1.046,1.157,1.454,0.946,0.948,0.837,1.351,0.972,1.006,0.886,0.844,0.86,0.904,0.949,0.935,2.057,0.919,0.901,1.139,0.904,1.158,1.093,0.871,0.92,1.814,0.92,0.857,1.01,1.067,1.895,0.916,1.019,1.318,0.792,0.905,0.854,0.901,1.153,0.948,0.968,0.926,1.113,0.904,0.843,1.171,1.031,1.444,1.001,1.1,0.873 +NM_013274,0.969,1.127,0.924,1.058,0.846,1.041,0.772,0.878,1.044,0.771,1.2,0.877,0.943,0.925,0.881,1.142,0.93,0.859,1.073,0.95,0.816,0.802,1.0,1.084,1.031,0.953,0.969,0.859,0.649,1.007,0.883,1.164,1.924,1.379,0.62,1.111,0.946,0.92,1.272,0.826,0.855,1.167,0.766,1.421,0.793,1.001,0.829,0.974,0.895,0.836,0.942,0.933,0.929,1.15 +NM_013275,0.985,0.796,1.668,0.956,0.986,0.783,0.758,0.514,1.466,1.01,0.708,0.677,0.542,1.308,1.11,0.802,1.216,0.837,1.085,0.956,0.777,0.878,1.229,0.974,0.758,0.996,1.609,1.009,0.534,0.993,1.227,1.558,2.028,0.902,0.647,0.938,0.814,0.901,1.218,1.101,1.329,1.004,0.921,1.206,1.144,1.135,1.034,0.86,0.894,0.933,0.933,0.838,1.18,1.931 +NM_013278,1.111,0.96,1.057,0.92,1.027,0.825,1.252,1.124,0.779,0.89,0.931,0.956,1.125,0.967,0.956,0.956,1.101,1.039,0.969,0.911,1.062,1.001,0.967,1.032,1.137,1.122,1.073,0.992,1.242,0.905,1.06,0.905,1.046,0.994,0.986,0.96,1.006,0.915,1.281,1.1,0.978,1.177,0.999,0.984,1.051,1.111,0.988,1.013,0.984,0.931,1.134,0.925,0.822,0.989 +NM_013279,0.32,1.245,0.339,1.079,0.316,2.308,1.157,0.3,0.363,0.33,1.075,0.307,0.339,0.459,0.871,1.009,0.387,0.977,0.342,1.095,0.369,0.367,1.045,0.397,1.693,0.413,0.36,0.328,1.458,2.167,0.392,2.765,1.124,2.51,0.48,0.854,1.181,0.307,2.55,0.674,0.344,1.259,0.832,1.332,0.34,0.879,0.492,0.424,0.59,0.313,1.138,0.649,0.31,1.147 +NM_013280,0.908,0.866,0.998,1.059,0.97,1.107,0.873,0.963,0.866,0.86,0.879,1.028,1.038,1.062,1.108,1.085,1.017,1.005,1.077,0.893,1.213,0.971,1.096,1.053,1.056,1.007,0.983,1.014,0.894,1.052,0.911,1.048,0.965,1.256,1.023,1.052,0.999,1.201,1.03,0.902,0.962,1.026,0.957,1.074,0.944,1.064,0.991,0.892,0.959,1.001,1.05,0.986,1.178,1.074 +NM_013281,0.565,1.692,0.471,0.808,0.537,1.816,0.994,0.475,0.582,0.519,1.816,0.531,0.444,0.61,0.826,1.795,0.419,0.706,0.545,2.09,0.483,0.408,2.51,0.585,1.277,0.475,0.526,0.462,0.711,2.613,0.604,2.471,1.405,1.497,0.356,0.55,2.308,0.562,1.199,3.755,0.465,2.86,0.873,1.078,0.508,0.841,0.903,0.485,1.606,0.421,1.605,0.939,0.55,3.806 +NM_013283,1.472,2.301,2.713,1.713,1.841,2.884,1.931,1.4529999999999998,2.205,1.767,1.935,1.732,1.807,1.674,1.9289999999999998,3.297,1.884,2.3179999999999996,1.939,2.266,1.392,1.7269999999999999,2.305,1.947,1.56,1.4769999999999999,2.726,1.87,1.3940000000000001,2.2359999999999998,1.908,2.377,4.62,2.55,1.336,1.4909999999999999,2.26,1.582,2.7990000000000004,1.7530000000000001,1.9289999999999998,2.302,1.505,1.573,1.8559999999999999,2.306,1.936,1.473,2.127,1.708,2.368,1.593,1.482,3.3770000000000002 +NM_013284,1.054,0.923,1.0,0.975,1.007,1.184,0.866,0.945,0.865,0.832,0.92,0.948,0.963,1.0,1.051,1.098,1.022,0.895,1.047,0.901,0.874,0.903,0.906,1.068,0.924,1.022,1.049,0.906,0.795,1.066,0.989,1.106,1.256,0.944,1.277,1.315,0.903,0.928,1.345,0.968,0.854,0.873,0.986,1.311,0.98,1.028,0.976,0.96,0.863,1.01,0.927,1.103,1.062,1.138 +NM_013286,0.888,0.965,1.072,0.909,0.974,1.044,0.629,0.719,1.014,0.871,1.073,1.004,0.848,0.743,0.9,1.218,0.981,0.901,1.141,1.059,0.863,1.086,1.03,1.083,0.702,0.907,1.043,0.867,0.667,1.247,0.947,1.059,1.375,1.156,0.648,0.766,0.871,1.134,1.066,0.739,1.112,1.079,0.693,0.899,0.956,0.943,0.828,0.85,0.975,1.07,0.932,0.834,1.015,1.627 +NM_013289,1.001,0.962,1.016,1.004,1.069,1.01,1.042,0.925,0.921,0.934,0.955,0.834,0.821,0.911,0.963,0.919,1.006,0.912,1.21,0.866,0.978,1.014,1.043,0.939,1.073,0.846,0.853,1.003,0.935,1.055,0.866,0.965,1.092,1.027,1.087,0.975,1.114,0.903,0.989,1.02,1.061,1.348,1.134,1.18,1.079,1.107,0.944,1.016,1.032,1.11,1.061,0.998,1.115,1.763 +NM_013290,1.045,0.974,1.117,1.041,0.918,1.007,1.067,0.972,1.121,0.931,0.875,1.094,0.949,1.152,1.083,1.042,0.986,0.94,1.031,0.882,1.184,1.02,1.01,0.934,1.201,1.094,1.03,1.087,0.889,1.1,1.252,0.974,1.184,0.905,1.066,1.175,1.012,0.95,1.015,0.991,1.103,1.056,1.198,0.951,0.839,0.991,0.953,0.982,0.835,1.042,0.938,0.969,1.0,0.98 +NM_013291,0.714,1.399,1.08,0.726,0.868,0.827,0.701,0.526,1.172,0.947,0.748,0.834,0.591,0.661,0.781,1.023,0.884,0.853,0.962,1.385,0.551,0.668,1.38,0.9,0.677,0.794,1.332,0.766,0.511,1.154,0.83,1.706,1.686,0.98,0.385,1.264,0.927,0.735,1.275,1.775,0.934,1.1,1.129,1.744,0.998,1.283,1.102,0.717,1.355,0.852,0.994,1.003,0.892,1.48 +NM_013292,1.092,1.0,0.841,0.997,1.037,0.982,1.027,1.022,1.144,1.032,0.987,1.049,0.785,1.118,1.265,0.914,0.95,0.997,1.03,0.965,0.958,0.963,1.095,1.141,1.008,0.874,0.915,1.017,0.91,1.018,0.934,1.063,0.993,1.072,1.027,0.92,1.009,0.966,0.965,0.813,0.915,1.002,0.797,1.132,1.185,1.045,1.021,0.971,1.0,1.023,1.057,0.961,0.872,0.986 +NM_013293,0.582,0.81,1.881,0.697,0.913,1.396,0.664,0.712,1.752,1.256,0.6,1.321,0.851,0.501,0.983,1.849,0.835,1.151,0.836,1.179,0.306,1.287,1.263,1.497,0.427,0.548,1.8,0.916,0.396,0.88,1.387,1.035,2.116,1.026,0.499,0.525,0.894,0.864,1.575,0.999,1.133,1.036,0.534,0.659,1.433,0.998,1.246,0.908,1.279,1.001,1.09,0.801,0.525,1.713 +NM_013296,1.154,0.564,2.041,0.965,2.013,0.75,0.496,0.966,2.414,1.376,0.698,1.398,1.111,0.949,1.08,1.139,1.523,1.245,1.474,0.884,0.722,1.309,1.116,1.446,0.397,1.098,1.836,1.538,0.293,0.904,1.658,0.542,3.175,0.649,1.767,0.731,0.752,1.786,1.069,0.725,1.651,0.514,0.557,0.729,1.878,0.809,1.582,1.323,1.068,1.158,1.007,0.829,0.813,1.543 +NM_013299,0.842,1.086,0.957,0.833,0.848,0.856,0.739,0.671,0.905,0.716,0.839,1.156,1.041,0.631,1.023,1.759,0.737,0.807,2.383,0.686,0.991,0.953,1.364,1.116,0.743,1.373,1.335,0.766,0.473,0.864,0.866,1.729,5.238,1.186,0.373,1.922,0.828,0.849,1.61,1.014,0.898,0.814,0.694,1.616,0.935,0.699,0.875,1.005,0.727,1.158,0.904,0.874,1.035,2.033 +NM_013300,0.734,0.981,0.967,0.928,0.859,1.07,0.869,0.95,1.212,1.0,1.145,1.013,0.99,0.801,1.005,0.993,0.87,0.941,1.057,0.863,0.803,0.889,1.043,1.256,0.728,0.835,1.221,0.858,0.881,1.05,0.967,1.955,1.367,1.102,0.66,1.038,0.758,0.975,1.018,1.038,1.095,1.113,0.767,1.021,0.883,1.009,1.099,0.857,0.963,0.866,0.905,1.036,0.925,1.154 +NM_013301,0.774,2.534,1.144,0.806,0.972,2.011,1.092,0.726,1.118,0.986,0.779,1.033,0.769,0.634,0.928,0.704,0.883,1.601,0.661,1.608,0.661,0.943,1.74,1.072,1.025,0.876,1.307,1.02,1.037,3.561,0.949,2.8,1.088,1.956,0.656,0.634,1.086,1.272,1.156,0.878,1.233,1.562,0.702,1.127,0.913,0.644,0.934,0.748,0.749,0.966,0.905,1.007,1.109,0.833 +NM_013303,0.961,1.083,1.16,0.978,1.123,0.979,1.06,1.024,0.981,0.958,0.904,0.901,0.965,1.115,0.946,1.365,1.074,0.935,0.893,1.252,0.826,0.907,0.939,1.129,0.976,0.949,1.291,0.978,0.797,1.077,1.032,1.044,1.142,1.01,0.961,0.965,1.14,1.033,1.209,0.847,1.187,1.051,0.915,0.935,0.954,1.134,0.949,0.851,1.041,0.904,1.091,0.838,1.026,1.024 +NM_013304,0.838,0.87,0.946,0.887,0.839,1.044,0.882,0.875,0.918,0.839,0.882,0.976,0.844,0.883,1.317,1.295,0.763,1.108,0.9,1.098,0.998,0.925,1.299,0.994,0.909,0.853,1.073,0.784,1.043,0.904,0.75,1.444,2.763,1.104,0.846,1.164,0.976,1.036,1.316,0.88,0.836,1.061,1.001,1.339,0.897,0.893,0.885,0.991,0.945,0.957,1.159,0.975,1.092,1.399 +NM_013305,1.05,0.944,0.927,1.008,1.129,0.843,0.989,1.013,0.982,1.083,0.923,0.985,1.017,0.878,0.941,0.978,0.899,0.975,0.919,0.81,1.156,0.936,1.072,1.073,1.013,1.266,1.039,0.945,1.044,1.074,0.943,0.951,1.092,1.097,1.017,1.013,0.892,0.931,1.115,0.95,0.911,0.965,0.811,0.945,0.949,0.975,1.089,0.885,1.237,1.007,1.037,1.074,1.009,1.039 +NM_013306,1.051,0.89,0.979,0.865,1.04,0.962,1.042,1.064,0.933,1.111,1.067,0.893,0.947,1.058,0.969,0.997,0.96,1.011,1.009,1.057,0.998,1.035,1.002,1.005,0.91,0.891,0.995,0.895,1.148,0.964,1.015,0.971,1.141,0.929,1.012,1.005,1.125,0.994,1.056,0.966,0.954,0.933,1.004,1.034,0.993,1.053,1.127,0.931,0.96,0.897,1.002,0.935,0.937,0.983 +NM_013308,0.91,0.944,1.704,0.935,0.94,0.975,1.105,0.932,1.003,0.775,0.851,0.838,1.047,0.988,0.773,0.775,1.129,0.956,0.883,1.013,1.106,0.918,0.915,0.984,0.941,1.018,1.386,0.965,1.164,1.246,0.963,1.035,1.013,1.101,1.042,0.997,1.197,1.023,1.107,0.972,1.082,0.954,1.163,0.921,0.901,0.963,0.858,1.022,0.975,1.004,1.149,0.819,1.731,1.508 +NM_013309,1.06,1.167,0.929,1.046,1.019,0.946,0.919,1.001,0.971,0.934,0.919,1.044,1.021,0.937,0.945,1.091,1.009,0.825,0.959,0.991,1.096,0.904,0.954,0.978,0.894,1.067,1.019,1.014,1.032,1.105,1.028,1.067,0.909,0.936,1.065,0.984,0.946,0.882,0.948,0.991,1.139,0.928,1.13,1.042,1.025,1.043,1.048,1.012,1.005,1.101,1.001,0.964,0.888,0.909 +NM_013310,0.947,1.033,1.428,0.94,0.994,0.964,0.914,1.082,1.12,1.123,0.86,1.006,0.839,1.01,1.018,0.97,1.21,1.073,1.151,1.029,0.787,1.313,1.193,1.212,0.787,1.05,1.182,1.19,1.289,0.932,1.028,2.16,1.351,0.91,1.025,1.24,0.889,1.577,0.988,0.849,1.442,1.007,0.897,0.902,1.344,0.91,1.036,1.267,1.033,1.008,0.991,0.924,0.817,1.038 +NM_013312,0.852,0.961,1.038,1.195,0.797,1.565,0.635,0.744,1.244,0.972,1.503,0.874,0.846,0.655,1.171,1.876,0.931,1.011,1.274,1.093,0.725,1.062,1.765,0.912,0.807,1.197,1.258,0.777,0.684,1.293,1.044,0.702,1.091,1.526,0.65,0.844,1.051,1.093,1.26,0.863,0.893,1.337,0.848,1.093,1.105,1.188,0.843,1.078,0.974,1.223,1.093,0.686,0.864,0.86 +NM_013313,1.044,1.093,0.883,0.986,0.974,1.05,1.023,0.904,0.902,1.012,0.929,1.01,0.991,0.916,0.961,1.06,1.006,1.042,1.179,1.004,0.969,1.015,0.964,0.978,1.009,0.993,0.999,0.923,1.059,0.944,1.037,1.161,1.319,0.99,0.904,0.932,1.001,1.018,0.924,0.789,0.97,0.925,0.902,1.024,1.061,1.072,0.924,0.984,0.991,1.031,0.924,1.01,0.972,1.102 +NM_013314,1.058,0.851,1.571,0.822,1.293,1.002,0.669,0.926,1.396,1.251,1.029,0.901,0.903,1.001,1.024,1.369,1.364,0.93,1.32,0.916,0.929,0.983,0.94,1.129,0.799,1.176,1.452,1.529,0.726,1.004,1.248,0.931,1.039,1.011,0.952,0.675,0.936,1.222,0.991,0.638,1.385,0.999,0.74,0.771,1.278,0.998,1.051,1.222,0.889,1.052,1.04,0.749,1.179,0.893 +NM_013315,1.109,0.922,1.033,0.919,0.998,1.069,1.166,1.326,0.863,0.968,0.871,1.051,0.926,1.052,1.106,1.083,0.942,1.027,0.942,0.94,0.989,0.968,1.083,1.018,1.175,1.0,1.005,1.096,1.174,1.141,1.066,0.904,1.142,1.05,0.91,1.076,1.059,0.977,0.947,0.906,0.913,1.031,1.069,0.981,0.85,1.106,0.964,1.096,0.925,0.977,0.997,0.911,0.885,0.951 +NM_013316,0.819,0.881,1.414,0.817,0.953,0.937,0.734,0.758,1.222,0.99,0.988,0.855,0.776,0.89,1.04,1.215,0.926,0.855,1.274,1.117,0.699,0.828,1.313,0.912,0.764,0.994,1.003,1.012,0.444,1.351,1.128,1.071,1.403,1.203,0.654,0.762,0.899,0.817,0.986,0.821,0.985,1.074,0.694,1.044,1.096,0.965,0.913,0.808,0.998,1.057,1.127,0.948,1.022,1.33 +NM_013319,0.564,1.573,1.036,0.634,0.897,0.988,0.7,0.593,1.084,1.412,0.95,1.08,0.712,0.564,0.783,1.086,0.774,0.736,0.819,1.012,0.552,0.693,1.493,1.221,0.62,0.774,1.226,0.721,0.48,1.013,0.782,1.272,1.94,1.148,0.412,1.51,0.891,0.8,1.317,1.084,1.04,1.151,0.851,1.513,0.885,1.146,1.05,0.677,0.919,0.692,1.186,1.164,0.956,2.417 +NM_013320,0.869,0.808,1.35,0.801,1.11,1.048,0.777,1.169,1.48,1.015,1.056,1.141,0.929,0.853,1.061,1.155,1.034,1.084,1.021,0.912,0.914,1.179,0.887,1.607,0.845,0.951,1.313,1.1,0.757,1.067,1.207,1.133,1.093,1.196,0.667,0.83,0.997,1.333,1.125,0.978,1.222,0.992,0.641,0.651,1.354,1.095,1.08,0.895,1.032,0.975,0.999,0.949,0.941,1.001 +NM_013321,1.308,0.82,0.785,0.95,1.134,1.359,0.672,1.025,0.874,0.851,1.352,0.899,0.925,0.838,0.949,1.713,1.157,1.47,1.695,0.705,0.805,1.322,1.362,1.118,0.707,2.279,0.763,1.079,0.783,1.164,1.098,1.26,2.401,0.893,2.689,1.183,0.821,1.112,1.656,0.904,0.833,0.972,0.993,2.883,0.998,0.892,1.25,2.102,0.768,0.996,0.944,0.872,1.05,0.763 +NM_013322,0.816,1.225,1.132,1.122,0.843,1.12,1.0,0.645,0.926,1.026,1.123,0.917,0.824,0.692,1.157,1.194,0.766,0.991,0.825,0.782,0.714,0.785,1.137,0.94,0.786,0.738,1.423,0.764,0.729,0.955,0.814,2.306,4.467,0.888,0.72,3.383,1.131,0.723,1.768,4.294,0.769,1.299,0.867,1.821,0.912,0.773,1.252,0.813,1.126,0.82,1.062,2.913,1.33,4.282 +NM_013323,1.025,0.839,0.926,1.123,1.06,1.157,0.723,0.863,1.142,0.876,1.058,1.067,1.025,0.954,0.857,1.113,0.922,0.998,1.518,0.807,1.027,1.145,0.92,1.02,0.766,1.278,0.979,0.865,0.964,1.207,0.928,1.049,1.062,1.155,0.796,0.789,0.921,0.878,1.333,0.746,1.109,0.967,0.785,1.396,0.996,0.874,0.944,1.427,0.796,0.948,0.797,0.919,1.002,1.139 +NM_013324,1.081,1.106,0.911,1.122,0.969,0.939,1.009,1.007,0.998,0.946,0.939,1.02,0.939,0.968,1.039,1.03,0.959,1.004,1.089,1.001,0.98,1.07,1.049,0.845,0.917,0.988,0.911,0.869,1.11,0.977,1.059,0.998,1.113,1.07,1.019,1.024,1.001,0.993,1.09,0.992,1.067,1.103,0.92,0.998,0.959,1.084,0.822,1.037,1.08,1.005,0.948,0.934,1.133,0.952 +NM_013325,0.775,1.206,1.072,0.789,0.979,0.941,0.746,0.594,1.211,0.911,0.911,0.799,0.586,0.664,0.974,0.938,0.948,0.93,0.807,1.171,0.652,0.832,1.157,0.913,0.912,1.0,1.038,1.063,0.557,1.42,0.896,1.935,0.968,1.231,0.395,1.37,1.004,0.874,0.948,1.166,1.054,0.955,0.75,1.318,1.079,1.032,1.142,0.924,1.091,0.746,0.8,1.007,0.738,2.688 +NM_013326,0.58,2.318,0.954,0.806,0.781,1.614,1.151,0.488,1.103,0.835,0.95,0.756,0.502,0.586,1.019,1.53,0.719,0.963,0.735,1.1,0.426,0.757,1.342,1.0,0.873,0.577,1.068,0.662,0.736,1.66,0.9,1.128,0.749,1.361,0.652,0.619,1.455,0.768,1.253,0.954,0.795,1.276,1.145,1.132,0.844,1.451,0.956,0.662,1.545,0.561,1.252,0.82,0.841,3.529 +NM_013327,0.916,0.976,0.924,1.003,0.833,0.956,0.841,0.745,0.946,0.922,1.474,0.823,0.913,0.762,0.729,1.82,0.809,0.927,0.893,0.832,0.968,0.841,1.331,0.997,1.134,0.958,0.886,0.745,0.715,0.976,0.98,1.298,1.084,1.095,0.849,1.842,0.859,1.07,2.533,1.689,0.984,1.23,1.013,0.854,0.91,1.06,1.113,0.948,1.102,0.895,0.916,1.735,0.965,1.213 +NM_013328,0.698,1.552,0.851,0.884,0.633,1.156,0.756,0.58,0.736,0.788,1.005,0.815,0.864,0.572,0.752,1.175,0.815,0.839,0.909,0.895,0.765,0.799,1.276,0.917,1.287,0.818,1.182,0.628,0.847,1.224,0.734,1.749,3.679,1.439,0.343,1.177,0.995,0.936,2.284,1.332,0.871,1.272,0.695,2.523,0.78,0.879,0.855,0.785,0.962,0.809,1.085,0.763,0.946,1.819 +NM_013332,7.193,0.485,3.408,3.288,13.4,0.455,0.422,14.98,11.32,1.033,0.427,5.731,3.143,1.12,4.049,2.757,3.51,1.4,5.879,0.464,1.591,10.22,0.69,2.455,0.386,4.801,2.324,5.441,0.372,0.625,3.272,0.996,0.931,0.53,32.74,0.455,0.521,11.35,0.545,2.879,1.654,0.493,0.53,0.497,1.525,0.471,3.302,13.12,0.533,1.435,0.649,0.633,2.211,0.718 +NM_013333,1.25,0.988,0.753,1.28,0.779,1.733,0.819,0.888,0.717,0.835,1.199,0.773,0.952,0.762,0.926,1.691,0.846,0.988,1.171,0.867,1.551,1.147,1.059,0.818,1.665,1.32,0.833,0.706,1.127,1.228,0.932,0.855,1.342,1.398,1.043,0.708,1.014,1.047,2.31,0.837,0.845,1.068,0.964,1.472,0.971,0.848,0.947,1.608,0.939,1.232,0.884,0.853,0.882,0.969 +NM_013334,0.925,1.099,1.09,0.883,0.921,1.076,1.34,1.027,0.98,1.087,1.191,0.96,0.915,1.016,1.186,0.933,1.077,1.001,0.942,0.915,0.937,0.856,0.985,1.129,0.993,1.001,1.069,1.084,0.997,1.002,0.839,0.919,0.845,0.873,0.935,1.04,0.937,0.963,1.019,1.065,1.137,1.207,1.34,0.954,0.952,1.01,1.017,0.978,1.1,1.066,0.995,1.24,1.147,1.12 +NM_013335,0.389,0.912,0.798,1.093,0.618,1.54,0.964,0.314,0.893,0.801,1.156,0.643,0.366,0.424,0.864,1.412,0.597,1.218,0.877,1.299,0.346,0.502,1.697,0.765,0.891,0.637,0.9,0.528,0.686,2.001,0.542,1.34,1.246,1.369,0.195,1.789,1.5,0.517,1.478,1.316,0.742,1.808,1.18,2.06,0.754,1.724,1.055,0.545,1.573,0.539,1.647,0.998,0.733,2.237 +NM_013336,0.61,0.872,0.819,0.778,0.576,1.09,0.869,0.404,0.651,0.717,1.196,0.506,0.525,0.533,0.779,1.631,0.807,1.169,0.879,0.861,0.615,0.888,1.471,0.776,1.039,0.852,0.905,0.556,1.147,1.723,0.653,1.588,1.467,1.384,0.357,0.896,1.201,0.729,2.071,0.925,0.667,1.321,0.734,1.804,1.038,1.0,0.824,0.856,1.144,0.832,1.243,0.823,0.846,1.001 +NM_013337,0.905,0.863,1.041,0.632,0.941,1.287,0.712,0.617,0.965,1.002,0.816,1.198,0.885,0.608,0.847,0.949,0.837,0.824,0.893,1.2,0.611,0.926,1.09,1.16,0.946,0.814,1.263,1.141,0.551,1.354,1.043,1.781,0.955,1.356,0.329,0.807,1.031,1.037,1.063,1.001,1.309,1.221,0.849,0.73,1.331,1.116,0.96,0.843,0.95,0.943,1.239,0.968,0.846,1.298 +NM_013338,0.417,0.887,0.713,0.85,0.444,1.332,0.772,0.305,0.709,0.513,1.617,0.418,0.479,0.406,0.906,3.078,0.5,0.724,0.779,1.106,0.316,0.476,1.562,0.683,0.984,0.422,0.885,0.416,0.461,1.992,0.551,1.6,2.035,1.895,0.107,1.531,1.486,0.551,1.89,1.686,0.671,1.54,0.857,2.136,0.635,1.446,1.226,0.504,1.257,0.549,1.453,1.324,0.639,1.923 +NM_013339,0.829,0.971,1.187,0.82,0.811,1.127,0.711,0.666,1.109,0.953,1.161,0.78,0.655,0.783,1.103,1.723,0.81,0.945,1.578,1.152,0.771,0.968,1.387,1.0,0.695,0.868,1.544,0.74,0.721,1.088,0.864,1.074,3.73,1.245,0.541,0.84,1.196,0.648,1.259,0.784,1.023,0.805,0.784,1.235,0.896,0.87,0.79,0.794,1.078,0.733,0.994,0.91,1.22,1.39 +NM_013340,0.981,0.916,0.957,0.973,0.968,1.054,1.244,1.104,0.934,0.86,1.099,1.131,0.94,1.071,1.243,1.119,0.884,1.069,0.929,1.07,1.036,0.991,0.995,0.988,1.053,1.102,1.076,0.995,1.116,0.93,1.055,0.882,0.998,0.957,1.127,1.036,1.026,0.991,1.108,0.964,0.952,1.126,0.912,0.975,0.946,1.151,0.979,0.989,0.957,1.101,0.9,0.934,1.006,1.093 +NM_013341,1.082,1.041,0.952,0.958,1.058,1.089,0.89,0.972,1.039,0.939,1.061,1.166,1.077,1.053,0.798,0.997,1.016,1.134,0.906,1.023,0.957,1.075,0.942,1.12,1.021,0.944,1.069,1.073,0.73,0.941,0.871,1.076,0.952,1.103,1.163,0.991,0.909,0.938,1.138,1.116,0.931,1.033,1.21,1.023,0.917,1.111,1.077,0.922,0.976,1.063,1.109,1.005,1.02,1.125 +NM_013342,0.696,1.292,0.821,1.068,0.645,1.568,0.873,0.577,0.69,0.662,0.999,0.691,0.718,0.523,0.85,1.585,0.727,1.076,0.866,1.277,0.682,0.753,2.007,0.766,0.781,0.921,0.866,0.691,0.605,1.423,0.718,1.684,1.276,1.744,0.597,1.105,1.432,0.691,1.827,1.833,0.851,1.293,0.598,1.944,0.81,0.882,0.934,0.732,0.892,0.934,1.197,1.019,0.829,1.578 +NM_013345,1.088,0.898,0.966,1.131,1.113,0.957,0.951,1.018,1.09,1.135,0.844,0.944,0.998,1.002,0.994,0.887,1.132,1.098,0.99,1.055,0.882,1.045,1.008,1.117,1.007,0.963,0.915,0.953,1.068,1.006,1.123,1.052,0.959,0.924,1.397,1.003,0.945,0.948,1.065,1.163,1.077,0.965,1.04,0.884,1.036,1.006,0.96,1.015,0.996,1.142,0.988,0.914,1.07,1.072 +NM_013346,0.973,1.027,1.015,0.87,0.993,0.983,0.824,0.905,0.976,0.996,1.088,1.08,0.964,0.924,0.931,1.122,0.993,0.979,1.269,0.983,0.909,1.038,0.95,0.938,0.925,0.962,1.133,1.039,1.013,1.035,1.0,1.113,1.088,1.006,0.881,0.929,1.035,0.981,1.101,1.111,1.141,0.895,0.836,1.211,0.922,1.0,1.043,0.968,0.995,0.978,0.922,0.962,1.094,0.897 +NM_013347,0.942,1.009,0.986,0.931,1.009,1.087,1.101,0.842,0.936,0.955,0.876,0.898,0.998,0.923,1.057,0.991,0.999,1.01,1.127,0.901,1.076,0.934,1.005,1.021,1.059,1.11,0.961,1.053,1.018,1.013,0.993,0.93,0.889,1.058,1.066,1.034,1.104,0.945,1.029,0.982,1.076,0.963,0.883,1.137,1.009,1.048,1.062,0.894,1.03,1.027,0.959,1.001,0.945,1.151 +NM_013348,1.8860000000000001,2.1580000000000004,2.131,1.879,2.049,2.128,2.277,2.109,2.0149999999999997,2.0140000000000002,1.916,1.9979999999999998,2.089,1.677,2.096,2.002,2.066,2.011,2.047,2.102,2.003,2.123,1.795,1.986,1.986,2.165,1.8130000000000002,1.95,1.876,2.007,1.97,1.891,1.8559999999999999,1.883,1.992,2.173,2.107,2.098,2.011,2.012,2.085,1.879,2.0460000000000003,1.974,2.083,1.784,2.103,1.946,2.09,2.04,2.036,1.964,2.2439999999999998,2.127 +NM_013351,0.998,0.943,0.92,1.07,1.127,0.858,1.171,1.031,0.969,0.938,1.016,0.919,1.069,1.108,0.833,1.031,0.816,1.17,1.01,0.961,1.043,1.102,0.8,0.992,1.169,1.11,1.053,0.766,1.278,0.971,1.059,1.022,1.034,0.935,1.056,1.043,1.197,1.015,1.028,0.716,0.954,1.284,1.272,0.864,0.959,0.947,0.864,1.196,0.923,1.053,0.996,1.091,0.942,1.124 +NM_013352,1.003,0.754,2.056,0.773,1.408,0.696,0.536,0.884,1.881,1.64,0.735,1.35,1.215,0.931,1.045,0.876,1.283,0.942,1.999,0.674,0.997,1.215,0.73,1.524,0.503,1.061,3.506,1.025,0.374,1.095,1.374,1.462,1.404,0.937,0.49,0.497,0.692,1.142,0.997,1.639,1.193,0.908,0.605,0.617,1.566,0.637,1.037,1.009,0.541,1.368,0.661,1.594,1.632,1.482 +NM_013353,1.018,1.131,0.969,1.134,1.037,1.061,0.987,1.061,0.828,1.027,1.089,1.001,0.948,0.873,1.124,1.108,0.958,0.797,1.046,1.088,0.92,0.828,0.967,1.093,1.081,0.899,0.941,0.988,0.947,0.988,1.063,0.822,1.079,0.876,0.948,0.966,0.996,1.027,0.974,1.057,1.038,0.99,0.999,1.02,0.93,0.921,0.894,1.085,1.012,1.009,0.93,1.035,1.222,0.995 +NM_013354,0.717,1.153,1.284,0.712,0.954,0.958,0.657,0.619,1.229,0.951,1.179,0.749,0.751,0.817,1.101,1.724,0.722,0.875,1.251,0.996,0.609,0.705,1.323,1.196,0.718,0.714,1.159,0.968,0.414,1.119,1.004,1.174,1.557,1.316,0.38,0.7,1.24,0.867,1.206,0.576,1.233,1.175,0.897,0.979,1.011,1.531,0.92,0.612,1.463,0.836,1.025,0.895,0.909,1.855 +NM_013355,0.919,1.127,1.04,0.925,1.044,1.123,1.04,0.87,0.997,0.915,1.052,1.066,0.979,0.864,1.06,1.049,0.925,1.036,0.82,1.002,0.919,0.855,1.041,1.023,0.853,0.975,1.003,0.863,0.694,0.953,0.967,1.112,1.017,1.035,0.989,1.09,0.951,0.904,1.275,0.904,0.955,1.074,1.041,1.057,0.99,0.894,1.144,0.92,1.01,0.797,0.973,1.156,1.107,1.147 +NM_013356,0.934,0.861,0.959,0.982,1.094,1.001,0.97,1.085,1.153,1.161,1.007,1.012,1.007,0.853,0.768,1.025,1.046,0.953,0.923,0.907,1.036,0.967,0.993,1.017,0.891,0.863,0.913,1.05,0.973,1.086,1.051,1.046,0.993,0.988,0.934,1.078,1.035,0.894,1.109,1.044,0.945,0.981,0.894,1.005,1.208,0.926,1.129,0.984,0.985,1.127,1.052,0.956,0.949,0.969 +NM_013357,0.953,0.942,1.022,0.899,0.927,0.958,0.997,0.966,1.02,1.257,0.926,1.001,1.096,1.125,1.01,1.084,0.928,1.093,1.277,0.939,1.003,0.995,1.013,0.949,0.916,1.013,1.145,1.019,1.1,0.944,1.073,0.979,0.926,1.025,0.911,1.079,1.032,1.047,0.953,0.979,1.04,1.101,0.972,0.993,1.111,0.983,0.861,1.15,1.039,0.991,1.173,0.98,1.037,0.935 +NM_013358,2.714,0.775,1.665,1.253,3.357,0.825,1.2,1.648,7.089,2.369,0.757,1.804,2.575,1.756,1.097,0.914,2.76,1.072,1.289,0.989,1.394,2.205,0.73,4.63,0.794,1.68,1.734,4.958,1.008,0.921,1.869,0.789,1.649,0.602,7.189,0.988,0.822,2.491,0.725,0.886,4.254,0.801,0.935,1.05,1.435,0.987,2.457,1.716,0.987,1.413,0.925,0.85,1.359,0.992 +NM_013359,1.044,0.98,0.979,1.169,1.196,0.912,0.873,0.94,0.967,0.938,0.996,0.948,0.971,1.151,1.242,1.017,1.073,1.005,1.046,1.176,1.04,1.068,0.997,0.882,0.96,1.035,0.982,0.868,1.196,1.111,1.201,1.089,1.22,1.033,1.078,0.999,1.016,0.975,1.116,0.909,0.996,0.98,0.999,0.956,0.95,1.159,1.081,0.965,0.885,1.082,1.041,0.966,0.867,1.003 +NM_013360,0.938,1.124,1.062,0.984,1.009,1.164,1.154,1.112,0.847,0.775,1.056,0.937,0.931,0.996,0.845,1.102,0.91,0.897,0.94,1.072,0.888,0.846,1.139,1.042,0.938,0.919,1.076,0.938,0.904,1.067,0.933,1.002,1.263,1.183,0.848,1.055,1.109,1.077,1.102,0.865,0.928,1.162,1.051,1.059,0.978,1.21,0.926,0.897,0.911,0.986,0.98,0.941,0.859,1.353 +NM_013361,0.983,1.055,0.932,1.028,1.019,1.144,0.89,0.949,1.019,0.952,1.148,1.048,1.152,0.9,1.222,0.909,0.916,0.875,0.875,1.108,0.933,0.889,1.172,0.925,1.006,0.837,1.091,0.934,0.87,1.188,1.014,0.967,1.119,1.142,0.925,0.958,0.931,1.012,1.007,0.986,0.993,0.946,0.994,1.038,1.053,0.944,0.907,0.835,0.918,1.015,1.062,1.041,1.144,0.984 +NM_013362,0.987,0.896,0.89,1.009,1.177,1.092,0.815,0.882,0.85,1.078,1.208,0.793,0.938,0.985,0.909,0.882,1.194,1.022,1.097,0.939,0.877,1.047,1.071,0.985,1.02,0.98,1.174,0.978,0.906,0.964,0.99,1.0,1.032,1.036,1.025,1.086,1.12,1.185,0.954,1.074,0.963,1.034,1.186,1.02,1.015,0.902,1.045,0.98,1.031,0.963,0.851,0.876,0.969,1.278 +NM_013363,1.021,0.883,0.997,0.809,1.17,0.872,0.932,1.15,0.868,0.952,1.065,1.048,0.853,0.951,0.895,0.757,0.854,1.109,0.981,0.996,1.045,0.915,0.632,0.909,1.026,1.025,1.041,0.883,1.636,0.972,1.109,0.945,1.007,1.028,1.029,1.275,1.044,0.99,1.0,0.927,0.946,0.935,1.401,0.888,1.01,1.004,1.034,1.0,1.126,0.962,0.942,0.951,1.311,1.018 +NM_013364,1.113,0.834,1.082,1.051,0.965,1.039,0.978,0.955,0.845,0.909,1.128,0.91,1.111,0.987,0.931,0.881,0.987,1.041,0.906,1.041,0.903,0.963,1.067,1.018,0.917,1.067,1.211,0.969,0.96,1.033,1.114,0.975,1.248,1.073,1.2,1.05,1.078,1.009,0.882,0.972,0.962,1.154,0.948,0.9,0.966,1.097,1.042,1.064,0.961,1.314,0.961,1.071,1.175,0.994 +NM_013365,1.145,0.826,0.855,1.059,0.939,1.124,0.656,0.628,1.127,1.072,0.855,0.751,0.891,0.942,1.029,1.245,1.181,0.93,1.386,0.699,1.064,1.431,0.944,1.237,0.881,1.273,1.182,0.669,0.881,1.08,1.047,0.944,1.511,1.222,1.075,0.635,0.874,1.215,2.242,0.737,0.979,0.89,0.679,1.132,0.947,0.678,0.801,1.54,0.725,0.98,0.802,0.698,1.006,1.055 +NM_013366,0.811,0.955,1.108,0.877,1.014,0.881,1.021,0.832,0.91,1.191,0.831,1.06,0.999,0.772,0.822,1.008,1.225,1.028,1.018,1.199,0.744,0.948,1.077,1.186,0.856,0.857,1.152,0.929,1.04,0.968,0.939,1.235,1.011,0.92,0.884,1.105,0.953,1.12,1.294,0.9,0.951,1.202,1.07,0.963,1.083,0.976,0.952,0.897,0.976,1.083,1.026,0.898,0.832,1.071 +NM_013367,0.701,1.052,1.138,0.901,1.008,1.019,0.713,0.623,1.151,0.936,1.071,0.962,0.763,0.782,0.952,1.132,0.806,1.053,1.185,1.1,0.681,0.79,1.267,1.032,0.674,0.919,1.187,0.851,0.68,0.985,0.862,1.272,1.31,1.088,0.432,0.889,1.054,1.058,1.138,0.915,1.132,0.998,0.591,1.231,0.97,0.929,1.027,0.833,0.991,0.829,0.929,0.733,1.159,1.368 +NM_013368,1.012,1.089,1.012,1.217,0.599,1.192,0.825,0.827,1.031,0.661,1.099,0.677,1.075,1.029,1.105,0.879,0.845,1.069,1.009,0.784,0.77,0.804,1.474,0.966,1.026,0.794,0.952,0.727,0.845,1.35,0.836,1.229,1.044,1.115,0.864,0.718,1.026,0.923,1.464,1.226,0.941,1.142,1.012,1.04,0.808,0.925,0.97,0.927,0.839,0.778,0.896,0.796,1.013,1.227 +NM_013371,0.913,0.851,2.39,1.047,0.944,1.067,1.177,0.997,1.064,0.91,0.861,1.145,0.957,0.906,0.923,1.02,12.72,0.966,1.471,1.236,1.038,1.082,1.064,0.938,1.032,0.99,17.52,1.088,0.927,1.128,0.984,0.934,1.041,0.904,0.985,0.907,0.929,0.949,1.01,1.029,0.997,1.019,0.799,1.021,0.914,1.084,1.059,0.997,1.011,1.855,1.07,1.537,2.559,1.46 +NM_013372,0.943,0.969,1.154,0.946,0.936,0.967,1.183,1.044,0.984,0.922,0.954,0.88,1.066,0.973,0.949,1.413,0.996,0.776,1.039,1.205,0.923,1.064,1.379,1.012,0.956,0.91,0.942,1.116,1.733,1.058,0.891,10.19,2.211,1.297,0.978,1.078,1.051,1.105,1.174,2.121,1.285,1.525,1.226,0.951,1.028,1.095,0.923,0.945,0.937,0.963,0.999,1.545,0.968,2.989 +NM_013373,0.786,1.689,1.27,0.612,0.86,0.896,0.554,0.42,1.157,0.968,0.649,0.856,0.606,0.727,0.794,0.764,1.01,0.834,1.003,1.11,0.339,0.799,1.142,1.023,0.71,0.757,1.719,0.794,0.465,1.592,0.902,2.697,1.082,1.291,0.171,0.689,0.67,1.553,1.525,1.457,1.138,1.308,0.523,1.09,0.975,0.763,0.806,0.714,0.45,0.911,0.918,0.847,0.917,1.604 +NM_013374,1.18,0.769,1.361,0.904,1.17,1.014,0.707,0.973,1.262,0.937,1.007,0.757,0.911,0.806,1.109,1.432,1.04,1.044,1.015,0.991,0.815,0.954,1.066,0.886,0.752,1.12,1.064,0.971,0.56,1.103,1.354,0.716,1.233,1.066,2.356,0.633,1.069,1.151,1.655,0.611,0.997,0.979,0.81,0.794,1.168,1.134,0.932,1.303,1.029,1.297,1.111,0.7,1.066,1.112 +NM_013375,0.993,0.994,1.026,0.939,0.975,0.927,0.95,0.98,1.109,0.994,1.09,0.992,0.895,0.879,0.894,0.98,0.915,0.967,1.194,0.88,0.926,0.919,1.032,1.036,1.11,0.874,0.817,1.043,1.028,0.936,1.04,1.009,1.142,0.99,0.974,0.917,1.002,0.873,0.949,0.941,1.006,0.93,1.109,1.065,0.99,0.963,1.034,1.105,0.977,1.091,1.03,0.931,0.969,1.047 +NM_013376,1.179,0.874,0.835,1.007,0.783,1.077,0.811,0.857,1.021,0.851,0.869,1.009,1.135,0.655,0.739,0.866,0.815,1.004,1.493,0.791,0.793,0.973,0.98,0.925,0.84,1.522,0.872,0.872,0.662,0.978,1.188,0.888,0.934,1.209,1.412,0.819,0.795,0.983,1.765,1.112,1.133,0.828,1.467,1.595,1.022,0.825,0.957,1.45,0.844,1.152,0.856,0.736,1.392,1.216 +NM_013377,1.076,1.045,0.858,1.053,1.15,1.092,0.997,1.039,1.065,1.073,0.999,0.998,0.943,1.038,1.083,0.963,1.005,1.122,1.013,1.104,0.97,1.058,1.187,1.111,1.136,1.061,0.965,1.141,1.001,0.882,1.003,0.898,1.125,1.199,0.953,1.15,0.961,1.028,0.981,1.01,1.258,1.172,0.923,0.993,0.966,0.871,1.119,0.944,1.008,1.026,0.963,0.951,0.973,0.934 +NM_013378,0.924,0.929,1.025,0.837,1.052,1.022,1.223,1.346,0.891,1.071,1.046,1.032,1.108,0.909,0.844,1.068,0.909,1.034,1.184,1.001,1.0,1.035,0.914,0.978,0.973,0.969,0.975,0.885,1.05,1.089,1.09,1.046,0.979,1.194,0.955,0.872,0.918,0.952,1.022,0.938,0.898,1.456,1.092,1.0,0.959,1.036,1.004,0.8,0.903,0.976,0.94,0.885,1.057,0.978 +NM_013379,1.134,1.283,0.893,0.829,0.776,0.936,0.591,0.702,0.687,0.727,0.836,0.721,1.067,0.678,0.774,1.042,0.991,0.901,1.17,0.847,0.877,1.299,1.125,0.966,1.29,1.302,0.932,0.658,0.649,1.302,0.833,1.811,1.375,1.58,0.449,1.186,0.67,1.387,1.962,1.616,0.862,1.521,0.645,1.963,1.122,0.564,0.995,1.11,0.519,1.173,0.634,0.819,0.987,1.059 +NM_013380,1.139,1.012,1.278,0.908,1.134,1.122,0.893,1.088,0.939,0.847,1.054,0.94,0.885,1.031,1.07,1.108,1.038,1.013,1.003,0.941,0.869,0.918,1.083,1.024,0.968,1.032,0.985,1.013,1.047,0.921,0.977,1.139,1.436,0.96,0.914,0.971,1.082,1.207,0.95,1.08,1.119,1.076,1.142,1.02,0.955,0.908,0.989,1.132,1.024,0.858,0.99,0.983,0.879,1.016 +NM_013382,0.934,1.058,0.923,0.795,0.937,1.048,0.857,0.861,1.127,0.802,0.976,1.122,0.876,0.791,0.945,1.182,0.974,0.836,1.047,1.047,0.957,0.956,1.05,1.01,0.843,0.95,1.126,0.991,0.797,1.1,0.845,1.271,1.109,1.179,0.807,0.876,1.013,1.016,1.145,1.289,1.045,0.982,0.887,1.068,0.884,0.895,0.904,0.999,0.964,0.88,1.008,1.06,0.967,1.075 +NM_013384,0.354,1.073,0.624,0.742,0.386,1.241,0.668,0.294,0.431,0.471,1.282,0.385,0.405,0.355,0.972,1.62,0.471,0.611,0.474,1.006,0.379,0.393,1.312,0.487,1.053,0.383,0.86,0.309,0.549,1.02,0.366,2.983,2.372,1.151,0.249,1.967,1.471,0.452,2.105,1.772,0.471,1.365,0.866,1.779,0.512,1.546,0.962,0.367,0.996,0.431,1.215,1.172,0.599,2.262 +NM_013387,0.593,1.119,1.028,0.772,0.885,1.554,0.942,0.497,1.07,0.878,1.237,1.042,0.674,0.545,0.897,1.791,0.875,1.265,0.967,1.365,0.395,0.741,1.365,1.134,0.817,0.682,0.979,0.907,0.56,1.476,0.848,0.964,1.068,1.77,0.261,0.788,1.85,0.786,1.439,0.553,1.025,1.27,0.966,0.75,0.975,1.428,1.05,0.727,1.319,0.589,1.266,0.719,0.871,2.09 +NM_013388,0.684,0.829,0.872,0.902,0.765,1.215,0.729,0.633,0.888,0.906,1.528,0.883,0.805,0.646,0.984,1.742,0.808,1.039,1.239,0.971,0.868,1.036,1.405,0.945,1.044,0.998,0.924,0.787,0.711,0.991,0.82,1.004,2.2,1.236,0.433,1.039,1.446,0.802,1.483,1.022,0.82,1.111,0.778,1.641,1.039,1.033,0.816,0.899,1.262,0.951,0.967,0.84,0.917,1.543 +NM_013389,1.072,1.546,0.827,1.122,1.138,1.001,0.701,0.98,1.397,0.887,1.497,0.929,0.938,0.885,1.581,4.132,0.962,0.938,0.855,1.856,1.001,1.106,1.071,0.893,0.845,0.882,0.955,1.038,0.746,1.141,1.095,1.952,0.782,0.958,1.574,1.705,1.686,0.943,2.859,1.173,0.809,0.969,1.997,0.821,0.82,2.282,1.379,1.429,1.013,0.924,1.382,0.934,0.863,0.921 +NM_013390,0.408,1.617,0.581,0.775,0.403,1.127,0.793,0.398,0.49,0.496,1.302,0.426,0.42,0.451,1.135,1.302,0.454,0.793,0.503,1.313,0.436,0.501,1.565,0.468,0.663,0.479,0.486,0.443,0.54,1.349,0.42,1.383,1.443,1.508,0.5,0.64,1.084,0.447,1.488,1.144,0.469,1.243,1.2,1.678,0.5,1.58,0.735,0.441,1.371,0.48,1.266,0.85,0.558,1.908 +NM_013391,1.087,1.095,0.942,0.972,1.117,0.971,1.09,1.037,1.143,1.018,0.983,1.019,1.029,1.216,0.891,1.017,1.013,0.942,0.893,1.158,0.993,1.057,1.066,0.903,1.067,0.997,1.117,0.969,0.895,0.949,0.932,1.041,0.762,0.914,0.971,0.955,0.976,1.064,1.03,1.021,1.077,1.083,1.027,0.844,0.925,0.981,1.103,1.06,1.0,0.985,1.007,1.049,1.101,1.062 +NM_013392,1.275,0.6,1.211,0.847,1.292,0.778,0.677,1.222,1.29,1.306,0.903,1.196,1.055,0.874,0.991,1.168,1.225,1.041,2.033,0.648,1.434,1.777,0.905,1.498,0.643,2.05,1.023,1.13,0.702,0.776,1.499,0.915,1.843,0.86,1.432,0.655,0.854,1.513,1.073,0.813,1.229,0.787,0.52,1.161,1.46,0.728,0.988,2.588,0.816,1.278,0.783,0.908,1.292,0.813 +NM_013396,0.965,1.0,1.237,1.021,1.143,1.043,1.288,1.151,1.015,0.951,0.916,0.952,1.23,0.697,0.941,1.067,1.022,1.048,1.043,1.234,0.855,1.146,0.921,1.099,0.974,0.864,1.187,1.086,0.955,1.031,1.004,1.041,1.026,0.887,0.964,0.971,1.034,1.034,1.021,0.855,0.983,1.206,0.859,1.079,0.848,0.932,0.97,1.075,0.916,0.967,0.958,1.078,0.879,1.257 +NM_013397,0.867,1.026,1.212,0.672,1.084,0.837,0.413,0.565,1.203,1.203,0.777,1.265,0.824,0.589,0.807,1.173,1.045,0.905,1.697,0.729,0.715,0.926,1.01,1.248,0.6,1.298,1.289,0.985,0.321,0.903,0.761,1.113,1.882,1.197,0.272,0.989,0.854,1.199,1.442,0.701,1.088,1.001,0.545,1.637,1.179,0.864,1.087,0.965,0.924,0.973,0.812,0.654,1.155,1.776 +NM_013398,1.046,1.051,1.006,0.952,1.01,0.965,1.021,0.815,0.942,1.001,1.004,1.134,1.018,1.083,0.827,1.029,1.018,0.891,1.056,0.988,1.077,0.98,0.93,0.964,1.025,1.053,0.958,0.945,0.995,0.907,0.971,0.942,0.956,0.989,1.041,1.073,0.969,0.915,1.01,0.924,0.951,0.945,0.845,1.073,1.079,1.155,0.986,0.985,0.954,1.026,0.972,1.004,0.932,0.916 +NM_013401,0.838,1.23,0.83,0.917,0.772,1.081,0.786,0.879,0.763,0.913,0.814,0.816,0.833,0.666,0.865,0.861,0.788,0.847,0.894,1.003,0.915,0.926,1.129,0.886,1.186,1.03,0.788,0.998,0.732,1.286,0.8,5.887,1.584,1.633,0.797,1.027,0.906,0.902,1.224,2.156,0.975,1.415,0.896,1.002,0.829,1.032,0.862,0.834,0.918,0.833,0.988,1.625,0.991,3.551 +NM_013402,0.888,1.025,1.057,1.05,1.109,0.842,0.974,0.91,1.015,0.984,1.183,0.945,1.037,0.816,0.886,0.891,0.865,0.925,1.068,1.002,0.905,0.964,1.284,0.914,1.459,0.829,1.17,0.963,0.76,1.242,0.752,4.237,3.99,1.153,0.923,3.284,1.023,0.903,1.452,2.666,1.019,1.098,0.75,0.909,0.872,1.053,1.012,0.935,0.841,1.008,0.859,1.253,0.985,1.211 +NM_013403,0.784,0.821,0.987,0.739,0.911,1.422,0.721,0.749,1.235,0.962,0.978,0.75,0.629,0.968,1.196,1.8,0.991,0.765,1.6,1.085,0.895,0.833,1.278,1.234,0.688,1.007,1.247,0.831,0.5,1.26,1.089,1.31,2.295,1.55,0.389,1.002,0.856,0.839,1.448,1.148,0.986,1.052,0.725,1.685,0.991,0.792,0.99,0.844,0.8,0.764,0.969,0.793,1.128,1.612 +NM_013407,0.842,0.927,1.136,1.153,0.738,0.907,0.913,0.683,0.945,0.961,0.891,0.774,0.781,0.76,0.958,1.068,0.886,0.934,0.788,1.145,0.646,0.764,1.365,0.999,0.962,0.695,1.036,0.714,0.772,1.032,0.798,1.244,1.116,1.171,0.589,1.242,1.0,0.899,1.579,1.287,0.84,1.218,0.781,1.474,1.019,0.846,0.84,0.847,0.888,0.977,0.879,1.054,1.067,1.165 +NM_013409,0.926,0.825,0.892,1.037,1.024,0.914,0.978,0.854,0.899,1.519,0.75,1.05,1.286,0.828,0.734,1.036,0.985,1.208,1.1,0.844,0.934,1.362,0.828,1.188,1.131,1.069,0.828,0.967,0.858,0.939,0.999,1.46,1.6,1.2,0.787,0.81,0.865,1.069,1.44,1.259,0.92,0.996,0.889,1.551,0.92,0.639,1.398,0.907,0.847,1.016,0.937,4.837,1.433,1.54 +NM_013410,0.722,1.239,1.381,0.485,1.216,1.897,0.791,1.927,1.397,0.889,1.39,1.412,0.857,0.534,1.126,0.607,0.996,1.27,0.934,1.832,0.374,1.727,0.786,1.464,0.47,0.465,0.957,1.277,0.728,0.924,1.278,0.733,1.429,1.554,0.788,0.266,2.124,1.913,1.588,0.464,1.141,1.307,0.415,0.515,1.25,1.036,1.145,1.11,1.455,0.953,1.622,0.474,0.483,0.516 +NM_013412,1.076,1.048,1.015,1.104,1.012,0.846,0.984,0.859,0.897,0.888,0.843,1.1,0.934,0.696,0.885,0.99,0.969,0.97,1.064,1.038,0.875,1.015,1.032,0.875,1.053,0.938,0.991,1.014,1.071,1.1,1.08,1.031,1.108,1.114,0.879,0.993,0.826,1.039,1.032,1.091,1.052,1.035,0.843,1.129,1.068,0.98,0.967,0.923,0.902,0.965,0.984,0.994,1.045,0.956 +NM_013416,0.995,0.958,0.9,1.056,1.112,0.948,1.267,1.063,0.948,0.961,1.225,0.986,1.019,1.223,1.448,1.068,0.961,1.05,0.986,0.977,1.034,1.056,0.812,0.91,1.097,0.907,0.966,0.912,1.103,1.003,1.065,0.968,0.976,1.114,1.026,0.925,1.002,0.911,1.103,1.026,1.029,0.902,1.122,0.954,0.873,0.91,0.863,1.024,0.936,0.987,1.086,0.954,1.04,0.822 +NM_013417,1.165,0.95,1.074,0.923,0.935,1.174,0.918,1.161,1.04,1.124,1.011,1.03,1.106,0.938,0.883,1.011,1.059,1.046,0.986,0.906,1.062,0.967,1.005,0.919,1.04,1.224,1.007,1.024,0.588,0.93,0.978,0.883,0.877,1.073,0.956,0.902,1.041,0.972,1.017,0.934,1.004,1.065,0.9,0.958,0.874,0.886,1.047,1.072,0.886,0.907,1.091,0.855,0.999,0.993 +NM_013422,1.075,1.027,0.904,0.941,0.99,1.028,1.194,1.056,0.879,0.977,0.967,0.922,1.023,0.998,0.986,0.886,1.096,0.825,0.86,1.033,1.018,0.934,0.996,0.997,1.115,0.983,0.99,0.924,0.796,1.035,0.947,0.998,0.878,1.111,1.047,0.917,1.004,1.144,1.04,1.062,1.1,0.858,0.857,1.055,1.017,1.048,0.918,0.997,1.055,1.047,1.079,0.962,1.028,1.035 +NM_013423,1.301,0.988,1.042,0.827,0.906,1.051,0.926,1.025,1.039,0.899,1.024,1.02,0.987,1.081,0.994,1.055,1.0,0.989,1.009,0.988,1.003,0.934,1.152,1.06,0.922,0.918,0.934,0.961,0.856,1.006,1.026,0.9,1.149,1.011,0.986,1.129,0.97,0.996,0.962,1.032,0.969,1.0,0.962,0.992,0.956,0.914,0.933,0.948,1.073,1.06,1.007,0.894,1.05,0.909 +NM_013430,0.896,1.012,0.983,1.06,1.116,1.053,1.07,1.181,0.98,1.059,0.972,0.959,1.008,0.9,1.001,0.997,1.055,0.917,1.031,0.912,1.024,0.948,0.939,0.952,1.013,0.864,1.104,1.035,1.059,1.032,1.011,1.041,0.915,0.992,1.024,0.988,1.132,1.042,1.025,0.99,0.943,0.982,1.323,1.126,1.016,0.95,0.917,0.96,1.051,0.915,1.013,0.94,1.108,0.963 +NM_013431,1.115,0.886,1.0,1.05,0.923,0.934,0.996,0.96,1.052,0.926,0.852,1.09,1.06,1.092,0.924,0.975,1.024,1.011,0.91,1.027,1.198,0.923,0.945,1.014,1.002,1.059,0.995,1.073,0.898,0.869,1.061,0.946,1.029,0.871,0.984,0.986,1.006,1.04,0.988,1.047,0.93,0.838,0.955,0.941,1.05,0.867,0.967,1.022,0.905,1.073,0.938,0.972,1.0,1.069 +NM_013432,1.081,1.125,0.99,0.943,0.938,1.047,0.953,0.934,1.106,1.045,0.985,0.937,1.033,0.9,0.943,1.115,0.99,1.037,1.004,1.338,1.001,0.93,0.883,1.072,1.058,0.928,0.91,0.769,0.958,0.852,1.021,0.928,1.256,0.9,1.076,1.04,0.945,0.932,1.22,1.174,1.033,1.121,1.131,1.082,0.963,0.982,0.913,1.029,0.975,1.003,1.091,0.83,1.032,1.074 +NM_013434,0.938,1.047,0.867,0.859,0.922,0.992,0.95,0.964,0.983,0.721,0.929,0.99,0.958,0.959,0.808,0.915,1.01,1.129,0.886,1.014,0.975,0.861,1.124,0.966,1.194,0.986,1.068,1.132,1.129,1.09,0.877,2.704,1.641,1.157,0.974,0.991,0.899,1.007,0.993,1.118,0.973,1.149,1.124,0.945,0.994,0.994,0.917,0.877,0.937,0.967,1.141,1.006,1.12,2.322 +NM_013435,0.977,0.937,0.971,0.993,0.937,0.983,1.093,1.023,1.169,1.092,1.07,1.126,0.927,0.997,0.955,0.944,1.038,0.932,0.943,0.966,0.929,0.991,0.925,1.121,0.897,1.099,0.941,1.075,1.369,1.036,0.963,1.122,0.956,0.943,1.157,1.043,1.04,1.119,0.996,1.166,1.083,1.0,0.981,1.042,0.938,1.026,0.999,1.116,0.831,0.938,0.963,1.043,1.105,0.882 +NM_013436,1.021,1.264,1.273,0.687,1.073,1.115,0.515,0.924,1.674,0.866,1.042,1.052,0.846,0.909,1.002,1.213,0.811,1.047,1.403,0.936,0.511,1.069,1.142,1.228,0.607,1.159,1.195,1.19,0.417,0.987,1.146,1.065,1.466,1.196,1.359,0.842,1.212,1.142,1.133,0.743,1.133,0.982,0.511,0.954,1.119,0.924,0.848,1.221,0.73,0.868,0.966,0.739,0.877,1.231 +NM_013438,0.635,0.817,1.067,0.706,0.858,1.057,0.635,0.738,1.192,1.123,0.96,1.039,0.558,0.779,0.976,1.379,0.815,0.914,1.34,0.891,0.552,0.795,1.064,1.309,0.578,0.634,1.252,0.899,0.559,1.021,0.948,1.593,1.999,1.178,0.334,0.84,1.279,0.74,0.993,1.058,1.131,1.005,0.993,1.037,1.181,1.121,1.106,0.797,1.287,0.74,1.084,0.847,0.997,2.091 +NM_013439,0.856,0.968,0.99,1.074,1.001,0.972,0.765,1.06,0.995,0.871,0.92,0.984,0.934,0.942,1.089,0.947,0.975,0.894,1.022,0.919,0.951,0.897,1.041,0.896,1.008,1.044,1.038,0.873,1.132,0.962,0.986,1.255,0.943,0.959,0.832,0.83,1.083,0.968,1.041,1.562,0.847,1.031,0.88,0.999,1.083,0.929,1.032,1.027,0.996,1.062,1.148,1.236,1.056,1.286 +NM_013440,0.943,0.863,0.986,1.032,1.088,0.891,1.116,1.032,1.021,0.94,0.982,0.937,1.11,0.871,1.051,1.034,0.945,0.851,1.001,0.9,0.89,1.004,0.952,1.098,0.925,1.043,1.013,1.012,1.057,0.963,0.892,1.103,0.889,1.0,1.003,1.036,0.907,1.003,1.097,1.012,1.029,0.884,0.947,1.01,0.973,1.032,0.918,1.031,0.978,0.985,1.021,1.047,0.998,1.113 +NM_013441,1.009,0.984,1.382,0.864,1.409,0.917,0.888,1.125,1.337,1.343,0.933,1.433,0.951,1.067,1.054,1.045,1.504,1.158,1.361,0.823,0.796,1.214,0.961,1.555,0.778,0.965,1.308,1.185,0.603,0.96,1.124,0.798,1.087,1.094,0.951,0.886,0.889,1.189,1.103,1.048,1.155,0.83,0.743,0.945,1.575,0.97,1.176,1.26,0.954,1.153,1.085,0.901,0.962,1.295 +NM_013442,0.848,0.661,0.865,1.013,0.844,1.054,0.528,0.539,1.146,0.896,0.948,1.114,0.905,0.63,0.992,1.504,0.891,1.11,1.323,0.729,0.713,0.803,1.2,1.196,0.723,1.152,1.119,0.685,0.634,0.921,0.709,0.998,1.556,1.189,0.275,0.748,0.96,0.886,1.26,0.796,1.141,1.134,0.78,2.173,0.993,0.747,1.052,0.827,1.211,1.045,0.801,1.519,1.113,2.89 +NM_013443,1.015,1.105,0.869,0.872,1.024,0.819,0.679,0.823,1.328,0.751,0.925,0.923,1.179,0.853,1.137,1.236,0.713,1.027,1.001,1.801,0.732,1.414,1.101,0.988,0.997,1.698,0.81,1.006,0.563,1.121,1.131,1.599,0.868,1.389,1.264,0.953,0.715,1.003,1.048,1.058,1.082,1.282,0.632,0.755,0.894,1.28,0.87,1.739,0.781,0.893,0.772,0.814,0.727,0.999 +NM_013444,0.58,0.883,1.932,0.524,1.095,1.225,0.602,0.587,1.408,1.169,0.822,1.152,0.523,0.628,0.871,1.718,1.462,1.17,1.485,0.969,0.386,0.931,0.989,1.372,0.396,0.496,2.457,0.831,0.409,1.239,1.377,1.358,2.279,1.113,0.234,0.361,1.067,0.852,1.276,0.63,1.317,1.044,0.584,0.313,1.726,0.874,1.046,0.639,0.969,1.201,1.415,0.977,0.657,1.047 +NM_013445,1.5350000000000001,2.243,2.075,1.756,1.795,1.8599999999999999,1.884,2.086,1.829,2.044,1.8969999999999998,1.785,2.02,1.841,1.749,2.073,1.8479999999999999,1.856,1.93,1.717,2.138,2.062,3.036,1.978,1.793,1.8359999999999999,1.617,1.8,2.025,1.89,2.0359999999999996,2.752,6.079000000000001,2.092,1.874,2.565,1.843,1.8399999999999999,2.4059999999999997,5.034,1.5590000000000002,1.989,2.3369999999999997,2.599,1.911,2.339,2.132,1.86,2.2169999999999996,2.155,2.275,2.23,2.1069999999999998,3.552 +NM_013446,0.676,0.992,1.229,0.91,0.725,1.45,0.721,0.448,0.818,0.644,1.395,0.756,0.575,0.706,1.095,1.521,0.72,0.913,1.075,1.476,0.381,0.635,1.522,0.824,0.896,0.836,1.074,0.687,0.423,1.984,0.721,0.93,1.018,1.575,0.36,0.652,1.238,0.635,1.079,0.689,0.844,1.184,0.909,1.022,0.712,1.493,0.826,0.745,1.108,0.855,1.197,0.75,0.792,1.387 +NM_013448,0.824,0.929,1.519,0.714,1.012,1.005,0.906,0.631,1.41,1.421,0.786,0.844,0.935,0.668,0.805,1.046,0.875,1.069,1.295,0.88,0.894,0.882,1.147,1.151,0.839,0.894,1.412,1.079,0.723,1.044,1.036,0.888,1.0,1.119,0.768,1.295,0.833,0.943,1.091,1.19,1.116,1.184,0.986,1.476,1.136,0.884,1.215,0.779,1.271,0.938,0.97,1.007,0.972,1.088 +NM_013449,0.994,1.018,1.033,1.037,1.093,0.977,0.977,1.031,0.952,1.158,0.894,1.013,0.993,1.109,0.864,1.008,0.913,1.088,0.996,1.017,0.972,1.065,0.937,1.111,0.966,0.972,1.0,1.042,1.279,0.998,0.926,1.07,1.027,1.058,1.069,1.147,0.897,0.989,1.069,1.008,1.062,1.091,0.88,0.962,0.971,1.185,0.936,1.023,0.909,0.985,0.916,0.889,0.835,1.135 +NM_013450,0.689,0.754,1.673,0.665,1.239,1.043,0.585,0.723,1.154,0.866,0.826,1.143,0.691,0.789,0.986,1.123,1.026,0.986,1.133,1.238,0.585,1.028,1.147,1.062,0.565,0.974,1.512,1.138,0.492,0.992,0.9,1.172,0.981,1.297,0.664,0.903,0.923,0.926,0.947,1.249,1.183,0.986,0.812,1.161,1.085,0.994,0.782,0.884,0.939,1.079,0.933,0.876,1.014,1.13 +NM_013452,0.974,0.978,0.957,1.049,0.923,1.065,0.855,1.075,0.9,0.994,1.054,1.011,0.986,0.997,1.019,0.985,0.994,0.85,1.001,0.973,1.021,1.099,0.824,0.995,0.945,0.936,0.944,1.017,0.87,0.947,0.885,1.016,1.068,0.872,0.996,0.95,0.988,0.994,1.076,1.023,1.011,1.069,0.889,0.97,1.104,1.008,0.934,1.034,1.044,0.981,1.151,1.127,1.186,0.937 +NM_013936,1.033,1.11,1.155,0.938,0.929,1.161,0.932,0.862,1.063,0.928,0.964,1.075,0.881,1.143,0.772,1.043,0.959,0.971,1.211,0.989,1.065,1.078,0.988,0.811,1.051,0.95,0.845,0.93,0.928,0.967,1.061,0.959,1.048,0.971,0.958,0.995,0.96,1.03,1.104,1.006,0.993,0.994,0.999,1.061,0.929,1.217,0.872,1.01,1.029,1.073,0.956,0.962,1.001,0.963 +NM_013938,1.005,1.0,0.929,0.896,1.028,0.996,0.914,1.083,1.061,0.974,1.101,1.055,0.963,0.945,1.0,0.942,1.08,0.938,0.823,0.934,1.087,1.026,0.997,1.027,0.93,0.966,0.976,1.035,1.223,0.975,1.073,1.038,0.952,0.823,1.086,0.885,1.028,1.019,0.954,0.995,1.056,1.096,1.0,1.03,1.011,1.159,1.131,0.903,1.039,0.949,0.924,0.85,0.998,1.071 +NM_013939,1.062,1.091,0.985,1.038,0.993,0.969,0.925,0.973,1.021,0.972,0.936,1.033,0.904,1.049,0.917,1.085,0.993,1.11,1.162,1.028,0.999,0.903,1.028,1.053,1.042,0.97,0.953,0.871,1.1,0.965,0.989,0.879,1.205,1.064,0.971,0.923,1.1,1.11,1.055,0.993,1.036,1.028,0.956,0.977,1.0,1.087,0.872,1.0,0.948,0.899,1.034,0.889,1.008,0.913 +NM_013940,1.043,0.993,1.133,0.898,0.865,1.002,1.011,1.146,1.023,0.998,0.999,1.087,0.871,1.069,0.939,0.991,0.996,1.071,0.895,1.09,0.991,1.086,1.145,1.021,0.982,0.858,1.11,1.028,0.898,0.953,0.943,1.077,1.029,1.035,0.881,0.914,1.023,1.055,0.961,0.995,1.108,1.013,0.872,0.981,1.007,0.9,0.998,0.988,1.098,0.902,1.007,0.963,0.959,0.958 +NM_013942,0.938,1.021,1.058,1.011,1.028,1.15,1.014,0.984,0.902,0.905,1.0,0.997,1.055,0.958,0.914,1.072,1.041,1.109,1.022,1.011,1.214,0.965,1.026,0.954,1.094,0.931,1.044,1.048,0.83,0.874,1.051,0.932,0.976,1.065,1.042,0.893,1.006,0.908,1.043,0.927,0.975,0.945,0.953,0.93,1.082,0.946,0.998,1.029,0.954,1.18,1.044,1.013,1.081,0.938 +NM_013943,0.463,1.369,1.131,0.677,0.727,1.786,1.214,0.556,0.856,0.868,1.296,0.693,0.592,0.479,0.812,1.078,0.516,1.117,0.817,1.017,0.398,0.507,1.718,1.181,0.78,0.449,1.469,0.822,0.537,2.421,0.65,3.546,2.517,2.505,0.363,0.552,0.971,0.903,1.942,1.729,1.156,2.534,0.43,1.008,0.721,0.806,1.143,0.588,0.428,0.774,1.42,1.872,0.595,1.93 +NM_013945,1.082,0.908,0.979,1.022,0.992,1.018,1.268,0.979,1.081,1.08,1.006,1.031,1.007,1.039,0.932,0.97,1.097,1.108,1.066,1.104,0.909,0.878,0.903,1.151,0.936,1.164,0.898,1.108,1.331,1.001,0.814,0.871,0.922,1.023,1.126,0.887,0.919,0.865,0.915,1.033,1.11,0.943,1.185,0.767,0.903,0.856,1.112,1.006,0.95,1.123,1.022,1.04,1.013,0.858 +NM_013954,0.784,1.004,0.913,0.858,1.049,0.97,0.988,0.949,0.924,0.865,0.855,0.994,1.037,0.927,0.855,0.922,1.01,1.065,1.058,0.778,0.986,1.033,1.006,1.054,0.927,0.963,1.112,1.085,1.077,0.944,1.067,0.996,0.972,0.941,1.166,1.022,1.036,1.065,1.03,1.004,0.825,0.942,1.12,1.191,1.115,1.084,1.01,0.836,1.056,0.946,0.959,0.874,0.989,0.984 +NM_013959,0.983,1.023,0.987,0.862,1.084,1.08,1.054,1.071,0.976,0.976,1.067,0.939,1.029,1.219,1.089,0.84,0.939,1.087,1.059,0.982,1.001,0.975,0.934,0.92,0.985,0.993,0.866,0.922,0.871,0.976,1.052,1.015,1.028,0.922,1.014,1.075,0.926,0.962,0.974,0.941,1.089,0.963,0.816,1.106,1.002,1.079,0.961,1.101,0.923,1.0,0.909,0.89,1.149,1.075 +NM_013960,0.971,1.007,1.073,0.941,0.962,1.067,1.013,1.005,1.012,1.105,0.972,1.046,0.852,1.095,1.198,0.933,0.892,1.16,1.097,1.087,0.914,0.958,0.998,0.997,0.867,1.102,1.06,1.067,1.108,1.04,0.822,0.857,0.909,0.943,1.074,1.173,1.06,1.061,1.143,1.016,1.016,1.041,1.014,1.028,1.125,1.092,0.971,1.054,1.024,0.955,1.041,1.055,1.008,0.941 +NM_013961,0.924,1.059,0.98,1.019,0.86,0.858,0.926,1.006,0.917,1.137,1.07,1.01,1.037,0.891,0.927,1.135,0.992,0.931,1.036,1.077,1.058,0.922,0.984,1.136,1.002,1.075,1.244,1.028,0.67,0.994,1.136,1.111,0.987,0.874,0.963,0.91,1.079,0.943,0.99,1.156,1.053,0.975,1.271,1.069,1.18,1.009,1.063,0.987,1.037,0.93,1.173,0.925,0.905,0.921 +NM_013962,0.983,1.063,1.009,1.048,0.973,1.005,0.888,1.062,0.964,0.983,0.883,0.976,1.021,1.032,0.924,1.113,1.059,1.118,0.903,1.05,1.085,0.884,1.056,1.031,0.999,1.072,0.973,1.366,1.125,0.997,0.984,1.016,1.108,0.994,1.213,1.187,0.941,0.912,1.006,0.898,1.079,0.996,1.102,1.059,1.011,0.713,0.95,1.129,1.147,1.032,0.999,1.189,1.093,1.04 +NM_013975,0.83,0.972,1.03,0.928,0.943,0.911,0.7,0.627,1.129,1.176,0.863,0.967,0.747,0.791,0.988,1.076,1.046,0.955,1.119,1.079,0.919,0.879,1.253,1.211,0.812,0.915,1.082,0.988,0.704,1.123,0.951,1.013,2.461,0.94,0.561,1.126,0.864,0.87,1.267,1.04,1.186,1.042,0.962,1.776,1.32,1.067,1.054,0.859,0.966,0.774,1.175,0.985,0.929,1.071 +NM_013976,0.895,1.114,0.946,0.878,0.957,0.922,0.707,0.751,1.143,1.096,0.814,0.832,0.815,0.803,0.984,1.174,0.946,1.044,1.186,0.891,0.927,1.01,1.187,1.326,0.856,1.087,1.053,0.894,0.898,1.001,0.872,0.955,1.176,1.086,0.628,0.901,1.071,1.213,1.182,0.872,1.064,1.041,0.847,1.254,1.026,0.831,1.095,0.893,1.162,0.975,0.962,0.942,0.965,1.013 +NM_013978,0.889,0.902,0.975,1.122,1.068,1.17,0.911,0.754,1.19,0.868,0.995,1.052,0.971,0.823,0.996,1.033,0.961,0.975,1.143,1.056,1.042,0.801,1.258,1.0,1.034,0.824,1.123,0.939,1.037,1.009,1.0,1.339,1.768,1.124,0.907,0.946,1.012,0.963,1.172,0.797,1.152,0.918,0.807,1.176,1.036,1.229,0.913,0.922,1.145,1.06,0.975,1.068,1.134,1.584 +NM_013985,0.978,1.029,1.056,1.239,1.035,1.012,1.102,0.979,0.916,1.014,0.909,1.04,1.01,0.958,0.856,0.989,0.976,1.137,1.069,1.019,1.029,1.079,0.999,1.044,1.032,0.97,0.936,1.081,1.348,1.172,1.043,0.985,0.982,1.017,1.042,1.044,1.05,1.025,0.978,1.003,0.924,0.985,0.92,1.0,1.055,1.02,1.065,0.995,0.944,1.038,0.966,0.918,0.98,0.81 +NM_013986,0.819,0.833,0.968,1.094,0.816,0.775,0.597,0.36,1.029,0.974,0.907,0.543,0.599,0.686,0.778,1.287,0.987,0.786,1.129,0.839,0.757,0.606,1.183,0.797,0.799,0.815,0.941,0.68,0.41,1.038,0.704,1.155,1.679,1.162,0.49,1.042,0.914,0.757,1.836,1.073,1.009,1.122,0.927,1.393,0.979,1.003,0.831,0.77,1.164,0.836,1.034,0.99,1.289,1.46 +NM_013988,0.987,0.977,1.044,1.06,0.977,1.009,1.195,0.971,0.94,0.908,1.024,0.985,1.012,0.907,1.181,1.201,1.011,0.949,1.049,0.921,1.039,1.053,1.106,0.999,1.048,0.972,1.011,0.951,1.009,1.024,0.895,0.839,1.078,0.976,0.978,1.039,1.126,0.891,0.925,1.093,1.024,1.029,1.034,0.925,1.048,0.969,0.987,1.086,1.064,1.015,0.965,1.057,1.001,1.031 +NM_013992,0.987,0.834,1.122,1.067,0.958,0.958,0.783,0.926,0.951,1.321,1.012,0.832,0.805,0.974,1.222,0.984,0.81,0.941,1.052,1.01,0.884,1.082,0.904,0.812,0.979,1.189,0.963,0.959,0.773,0.955,0.904,1.041,1.984,1.03,1.05,1.186,0.884,1.16,1.078,1.278,1.06,0.846,0.859,1.461,0.902,0.951,1.01,1.087,0.882,0.949,0.867,1.009,1.058,1.153 +NM_013995,1.108,0.736,1.968,0.645,1.491,0.626,0.487,0.967,1.492,1.662,0.644,0.874,0.971,1.173,0.863,1.308,1.111,1.014,2.593,0.646,0.79,0.844,0.768,1.193,0.672,1.409,1.964,1.621,0.41,0.67,1.593,1.057,2.452,1.029,0.75,0.782,0.683,1.372,1.055,0.908,1.583,0.849,0.396,1.118,2.054,0.596,0.941,1.303,0.534,1.58,0.807,1.252,1.742,1.357 +NM_013998,1.023,1.013,1.097,1.093,1.059,1.037,1.07,0.941,1.112,0.982,0.953,1.046,1.045,1.365,0.933,0.936,0.977,1.002,1.066,0.908,1.104,0.996,1.007,1.005,0.956,0.972,1.097,1.066,0.801,1.079,0.956,1.075,0.966,0.933,1.147,1.077,1.1,1.107,0.942,1.002,1.04,0.928,1.044,0.949,1.001,0.829,1.003,1.096,1.173,0.96,0.946,0.933,0.832,0.973 +NM_013999,0.754,1.045,0.979,0.832,0.952,1.066,0.891,0.764,0.964,0.978,0.983,0.832,0.814,0.887,1.31,1.047,0.874,0.999,0.971,0.842,0.875,0.933,1.142,0.934,0.963,0.923,1.086,0.923,1.025,1.045,0.991,1.015,1.091,1.194,0.994,1.305,0.858,0.912,1.335,1.074,0.848,1.243,1.029,0.973,0.803,0.959,0.938,0.834,1.011,0.871,1.102,1.425,0.858,1.261 +NM_014000,0.975,0.965,0.9,0.847,1.078,1.065,1.047,0.919,1.09,0.935,0.905,1.101,1.032,1.131,1.156,0.976,0.999,0.93,1.038,0.981,1.026,0.98,1.119,0.963,1.155,0.994,0.935,1.085,0.939,1.018,1.022,0.945,0.845,1.101,1.059,0.914,0.985,0.96,0.957,0.83,1.047,1.106,0.964,0.922,1.033,0.884,1.069,0.968,0.961,1.014,0.923,0.941,0.956,1.142 +NM_014001,0.86,0.936,1.115,0.974,0.968,1.043,0.703,0.689,1.343,1.212,0.811,0.723,0.782,0.817,0.906,0.967,1.004,0.856,1.06,0.999,0.767,0.92,0.991,1.238,0.967,1.12,1.246,1.057,0.582,1.076,1.149,1.339,1.225,1.076,0.722,0.727,0.88,0.91,1.26,0.89,1.109,1.062,0.614,1.287,1.083,0.888,0.961,0.853,0.882,1.0,0.928,0.713,0.79,1.299 +NM_014002,0.886,1.033,1.473,0.992,1.041,1.078,0.799,0.786,1.172,0.903,0.83,0.889,0.976,0.884,0.859,1.024,1.294,1.117,1.604,0.883,0.937,1.027,0.895,0.936,0.778,1.051,1.421,0.911,1.042,1.119,0.797,0.945,1.326,1.016,0.627,1.277,0.756,1.026,1.178,1.096,1.135,0.983,0.686,1.202,1.302,0.935,0.828,1.058,0.809,1.305,0.864,0.864,1.244,1.111 +NM_014003,0.886,0.81,1.028,0.812,0.959,0.833,0.709,0.714,0.894,0.97,0.926,0.777,0.698,0.763,0.972,1.234,0.945,0.814,1.11,0.843,0.859,1.222,1.164,1.041,0.79,1.21,1.166,0.776,0.829,0.982,0.992,1.034,1.437,1.149,0.563,0.875,0.886,1.041,1.443,0.862,1.02,0.956,0.707,1.259,1.105,0.98,1.005,0.995,1.206,1.032,0.857,0.858,0.986,1.332 +NM_014004,2.018,1.849,2.033,2.144,1.983,2.043,1.819,1.9180000000000001,2.133,2.075,1.928,1.75,1.9409999999999998,1.782,1.888,1.899,1.8639999999999999,1.867,2.17,2.13,2.074,2.175,1.9699999999999998,2.002,1.9789999999999999,2.035,2.019,1.948,2.2169999999999996,2.0380000000000003,2.104,2.1790000000000003,1.928,1.9869999999999999,2.015,2.12,2.056,1.903,1.955,2.148,2.0069999999999997,1.871,2.003,1.905,1.972,2.066,1.9989999999999999,1.9300000000000002,1.903,2.034,2.11,1.913,2.0060000000000002,1.906 +NM_014007,1.012,0.887,1.247,0.892,0.959,0.908,0.78,0.762,0.981,1.059,0.875,0.812,0.898,0.878,0.879,0.901,1.023,1.035,1.076,0.875,0.876,0.827,1.007,0.946,0.771,1.08,0.951,0.959,1.138,1.164,0.914,1.113,0.815,0.964,0.969,0.998,0.897,0.948,1.358,1.072,0.954,1.109,1.318,1.142,1.125,1.153,0.944,0.938,0.916,0.966,0.96,0.997,1.191,1.017 +NM_014008,0.913,1.012,0.882,0.82,0.956,1.044,0.647,0.771,1.196,0.977,0.8,0.941,0.953,0.719,0.883,1.12,1.006,1.045,1.197,0.884,0.991,1.301,1.121,1.182,0.876,1.119,1.072,0.863,0.71,0.944,0.886,1.019,1.497,0.987,0.608,0.893,0.932,1.2,1.312,0.755,1.004,1.038,0.662,0.996,0.967,0.953,0.866,1.17,1.023,0.898,0.915,1.015,0.877,0.9 +NM_014009,0.962,1.01,1.022,0.968,0.929,1.093,0.744,1.267,0.943,0.943,1.066,1.059,0.885,0.953,1.011,0.862,0.836,1.112,1.038,0.963,1.03,1.081,0.914,0.955,1.01,0.953,1.006,0.929,1.013,0.925,1.101,1.097,1.007,0.919,0.999,1.016,0.924,1.009,0.988,1.092,1.182,0.963,1.064,1.017,1.154,1.105,1.028,0.996,1.108,1.029,0.924,1.028,1.074,0.979 +NM_014010,0.881,1.181,1.234,1.068,0.834,1.044,0.845,0.896,1.002,1.302,1.257,1.23,1.017,0.937,0.847,1.004,1.062,1.067,0.955,0.938,0.961,0.844,1.16,0.902,1.101,1.0,1.006,0.971,0.867,1.032,1.083,0.992,0.956,1.05,0.996,0.964,1.052,1.03,0.994,1.097,0.933,1.013,0.949,1.111,1.0,1.096,1.047,0.927,0.95,0.949,1.194,1.221,0.904,0.943 +NM_014011,1.729,2.342,2.058,1.8539999999999999,1.94,2.3289999999999997,1.7469999999999999,1.488,2.099,1.6869999999999998,2.055,1.718,1.8359999999999999,1.817,1.7269999999999999,2.268,1.763,1.9849999999999999,2.077,2.1470000000000002,1.6629999999999998,1.9140000000000001,2.064,2.108,1.738,1.6139999999999999,1.888,1.6480000000000001,1.615,1.798,1.706,2.66,3.0890000000000004,2.206,1.56,2.144,1.991,1.718,2.388,2.892,1.943,2.021,1.757,2.024,1.941,2.052,2.0229999999999997,1.803,2.127,1.885,1.825,2.025,1.738,2.343 +NM_014012,0.913,1.168,0.862,0.951,1.072,0.903,1.002,0.863,1.003,0.825,1.032,0.991,0.959,0.846,0.811,1.053,0.99,0.867,0.894,1.021,0.934,0.956,1.13,0.981,0.976,0.916,0.861,0.879,0.864,1.088,1.073,1.267,0.951,1.049,0.865,0.958,1.015,0.918,1.07,1.048,0.89,1.2,1.357,0.954,1.017,1.066,0.923,0.985,1.033,0.916,1.064,1.087,1.06,1.135 +NM_014014,0.78,1.211,1.214,0.705,0.76,0.716,0.513,0.235,0.948,0.786,0.752,0.641,0.386,0.593,0.747,0.904,0.821,0.862,0.738,1.302,0.445,0.614,1.73,0.786,0.862,0.853,1.35,0.589,0.423,1.183,0.672,1.884,1.954,1.218,0.154,1.409,1.031,0.787,1.782,1.757,0.961,1.236,0.851,2.621,1.0,0.871,1.135,0.595,1.177,0.814,1.246,1.086,0.978,2.413 +NM_014015,0.814,1.008,1.009,0.826,1.041,0.933,0.755,0.585,1.103,1.068,1.074,0.927,0.774,0.823,0.8,1.01,0.962,0.795,1.065,0.889,0.69,0.773,1.011,0.968,0.949,1.077,1.238,0.929,0.573,1.078,0.869,1.359,0.943,1.036,0.616,0.908,1.006,0.961,0.878,1.046,1.065,0.985,0.931,1.019,1.172,0.959,1.155,0.851,0.842,0.819,0.912,0.951,1.035,0.805 +NM_014016,0.587,1.18,0.996,0.604,0.842,1.952,0.944,0.984,1.224,0.804,0.901,1.199,0.788,0.708,1.197,2.28,1.037,1.004,0.656,1.334,0.417,1.326,1.142,1.424,0.642,0.429,1.604,0.879,0.607,0.933,1.342,1.465,1.776,1.297,0.385,0.41,1.242,1.148,1.554,0.79,0.642,1.161,0.523,0.384,0.942,1.239,0.991,0.779,1.369,0.743,1.283,0.733,0.374,2.02 +NM_014017,0.635,1.13,1.132,0.649,0.935,1.242,0.532,0.501,0.941,0.844,0.958,0.923,0.665,0.51,0.846,1.611,0.931,0.999,1.135,1.155,0.49,0.877,1.269,0.993,0.584,0.948,1.041,0.75,0.51,1.17,0.833,1.968,1.932,1.366,0.274,1.442,0.973,0.973,1.353,1.082,0.972,1.077,0.599,1.491,0.91,0.97,1.033,1.051,0.913,0.732,0.978,0.673,0.916,1.368 +NM_014018,0.606,1.131,1.357,0.688,1.005,1.04,0.637,0.879,1.512,1.14,0.703,0.995,0.833,0.784,1.249,1.896,0.945,1.058,1.665,0.874,0.588,1.087,0.962,1.358,0.488,0.704,1.484,1.018,0.471,0.852,1.17,1.253,2.418,1.462,0.33,0.908,0.904,1.266,1.079,1.018,1.387,0.947,0.499,0.986,1.024,0.982,1.338,0.849,1.533,0.726,0.861,0.83,0.778,1.495 +NM_014019,0.699,1.118,1.083,0.634,1.17,1.038,0.52,0.549,1.283,1.292,0.989,1.411,0.81,0.535,0.816,1.621,1.055,1.038,1.298,1.051,0.54,0.972,1.037,1.326,0.711,0.886,1.062,1.078,0.372,0.931,0.848,0.899,1.254,1.09,0.0644,0.77,1.143,0.986,1.022,0.487,1.37,0.938,0.8,1.032,1.154,1.0,1.324,0.864,1.118,0.75,1.078,0.867,0.906,1.003 +NM_014020,0.637,1.017,0.784,1.0,0.637,1.215,0.819,0.64,0.729,0.702,0.992,0.646,0.641,0.672,0.945,2.446,0.65,0.834,0.715,1.006,0.752,0.663,1.763,0.731,0.839,0.792,0.81,0.661,0.614,2.428,0.63,2.681,1.908,1.463,0.782,1.576,1.078,0.701,1.864,1.882,0.688,1.808,0.858,3.132,0.711,1.216,1.235,0.751,2.073,0.702,1.36,1.194,0.859,1.502 +NM_014021,0.947,0.885,1.006,0.91,0.919,1.037,1.038,0.866,0.933,0.916,0.831,0.944,0.997,0.865,0.91,1.089,0.956,1.021,1.057,1.111,1.06,0.991,1.037,1.102,0.957,1.033,1.046,1.051,0.944,1.013,1.052,1.041,1.348,1.01,0.863,0.912,1.078,1.011,0.873,0.903,1.111,0.906,1.09,1.05,0.973,0.903,0.979,0.89,1.057,1.036,1.063,1.014,1.015,1.294 +NM_014023,0.957,1.047,0.997,0.859,0.925,0.953,0.907,0.885,0.88,0.911,0.947,0.893,0.788,0.925,0.908,1.029,0.927,0.896,1.026,0.886,0.86,0.908,0.889,1.044,0.999,1.193,1.184,1.059,0.749,1.091,0.875,1.321,0.875,1.05,0.994,1.014,1.041,1.153,1.035,0.982,0.962,1.008,0.971,0.983,0.946,0.922,0.943,0.939,0.981,0.914,0.928,1.009,0.873,0.99 +NM_014026,0.797,1.114,0.931,0.908,0.942,1.028,0.769,0.741,0.911,0.86,0.805,1.01,0.696,0.705,0.936,0.981,0.936,0.982,1.001,0.882,0.85,0.92,1.134,1.073,0.763,1.057,1.211,0.902,1.069,1.15,0.843,1.676,1.079,1.14,0.665,1.34,0.815,1.032,1.638,0.977,0.99,1.06,0.81,1.014,0.837,0.887,0.957,1.034,0.999,0.971,0.904,0.946,0.895,1.207 +NM_014028,0.658,0.83,1.18,0.826,0.834,0.972,0.852,0.589,0.942,0.845,1.091,0.751,0.715,0.774,0.92,1.282,0.873,0.725,1.082,0.927,0.604,0.791,1.009,0.896,0.747,0.723,1.329,0.858,0.592,1.049,0.949,1.473,1.01,1.184,0.498,0.62,1.006,0.837,1.469,1.336,1.065,1.108,0.743,0.665,1.036,1.088,0.856,0.7,0.714,0.878,1.011,1.19,0.978,2.293 +NM_014030,1.043,0.9,0.908,0.917,0.879,0.993,1.229,1.104,0.897,0.922,0.834,1.018,0.967,0.903,1.156,0.901,1.019,0.987,0.976,0.906,1.103,1.068,0.905,0.999,0.992,1.151,1.043,1.023,1.817,1.021,0.887,1.089,1.077,1.038,0.968,0.949,1.046,1.118,1.116,0.996,0.949,1.113,1.026,1.184,0.812,0.923,1.023,1.105,1.006,0.932,0.91,0.921,0.989,1.005 +NM_014033,0.473,2.142,2.129,0.782,0.95,2.582,1.322,0.695,0.846,1.031,1.077,0.819,0.562,0.479,0.945,2.196,0.95,1.67,0.784,2.577,0.277,1.106,1.646,0.778,1.414,0.515,1.507,0.768,0.662,3.085,0.99,1.901,0.682,3.114,0.201,0.215,2.067,1.165,1.266,0.209,0.974,2.014,0.882,0.217,0.832,1.121,0.551,0.692,0.384,0.737,1.655,0.336,0.38,1.054 +NM_014034,0.667,1.498,1.315,0.654,0.972,1.585,0.93,0.916,1.109,0.934,0.993,1.217,1.0,0.625,1.019,1.98,0.77,1.151,1.385,0.976,0.704,0.974,1.234,1.003,0.764,0.817,1.554,0.906,0.764,1.285,0.936,1.059,1.168,1.498,0.468,0.796,1.148,1.131,1.22,0.763,1.112,1.153,0.61,1.009,1.019,0.861,0.972,0.777,1.0,0.748,1.0,0.674,0.677,1.486 +NM_014035,1.134,1.026,1.119,0.886,1.336,1.108,0.769,1.022,1.729,1.183,0.943,1.096,1.044,1.047,1.326,1.16,1.089,1.218,1.303,0.948,0.899,1.245,0.984,1.295,0.779,1.44,1.111,1.522,0.613,0.951,1.608,0.792,1.104,1.129,1.797,0.695,0.944,1.319,0.924,0.665,1.445,0.964,0.647,0.709,1.321,1.002,1.094,1.395,0.772,1.069,1.043,0.741,0.826,0.948 +NM_014037,1.091,1.133,0.922,1.002,1.012,0.991,0.964,0.939,0.943,1.009,0.955,0.974,0.89,0.897,1.112,0.971,0.983,1.045,0.994,0.896,1.001,0.985,0.985,0.986,1.035,1.057,1.11,1.045,0.882,1.011,0.98,1.255,0.829,1.14,0.969,1.014,0.876,0.959,1.193,0.983,1.074,1.017,0.862,0.894,0.954,0.895,0.985,0.878,0.934,1.158,1.02,0.955,0.932,0.893 +NM_014038,0.524,1.015,1.212,0.597,0.788,1.782,0.8,0.588,1.192,0.878,0.806,1.027,0.798,0.452,0.802,1.498,0.775,1.079,0.776,1.0,0.352,0.973,2.307,1.73,0.635,0.381,1.408,0.891,0.618,1.68,0.92,0.997,2.696,1.235,0.161,0.848,1.239,0.925,1.832,1.295,1.108,1.23,0.529,1.03,0.945,1.025,1.494,0.491,1.526,0.747,1.281,1.416,0.418,1.687 +NM_014041,0.711,1.116,0.833,0.907,0.88,1.794,0.736,0.553,1.193,0.71,1.776,0.757,0.659,0.687,1.027,1.945,0.786,0.846,1.261,1.089,0.546,0.636,1.784,0.871,0.803,0.803,0.981,0.888,0.34,1.923,0.948,1.26,1.729,1.714,0.744,1.062,1.845,0.817,1.43,0.57,0.783,1.382,0.813,0.872,0.771,1.569,0.905,0.619,1.148,0.622,1.329,0.894,0.988,1.514 +NM_014042,0.787,0.836,0.972,0.963,0.822,1.161,0.682,0.822,0.839,0.997,1.045,1.061,1.066,0.649,1.048,1.584,0.799,1.092,1.197,1.033,0.807,0.722,1.121,1.094,0.928,1.081,1.001,0.809,0.914,1.081,0.793,0.919,2.623,1.401,0.548,1.188,1.006,0.953,1.291,0.881,0.82,0.999,0.912,0.808,1.116,0.885,0.81,0.974,1.004,0.987,1.031,1.056,1.022,0.749 +NM_014043,0.743,1.095,0.861,0.711,1.036,1.579,0.846,0.768,1.368,0.854,1.306,0.88,0.859,0.599,1.433,2.629,0.736,1.177,0.911,1.313,0.409,0.595,1.323,0.869,0.538,0.626,0.851,0.979,0.472,0.995,1.263,0.795,1.177,1.474,0.801,1.091,1.144,0.805,1.131,0.673,1.133,1.428,0.963,1.445,0.963,1.645,1.299,0.603,1.756,0.677,1.334,0.819,0.753,1.486 +NM_014044,0.613,1.138,0.962,0.907,0.719,1.38,0.677,0.502,1.284,0.703,1.257,0.767,0.648,0.655,1.018,1.152,0.72,0.957,0.993,1.173,0.429,0.849,1.447,1.082,0.709,0.743,1.232,0.706,0.455,1.245,0.808,1.601,1.926,1.568,0.345,0.849,1.099,0.641,1.019,1.255,0.934,1.282,0.636,1.23,0.843,0.964,0.797,0.71,0.855,0.521,0.947,0.886,0.804,2.184 +NM_014045,0.927,0.525,1.447,0.724,0.964,1.303,0.476,0.881,1.479,0.829,1.0,0.671,0.745,0.862,1.488,2.138,1.047,0.972,2.42,0.761,0.592,0.919,0.938,1.264,0.452,1.133,1.377,0.821,0.457,1.04,1.471,0.706,1.36,1.603,1.033,0.605,1.262,0.909,1.397,0.55,1.043,1.103,0.537,1.061,1.263,0.817,0.962,1.288,0.88,1.247,1.27,0.513,1.225,1.161 +NM_014046,0.505,0.906,1.214,0.552,0.754,1.205,0.556,0.487,1.054,0.701,1.066,0.843,0.62,0.585,1.146,1.59,0.667,0.718,1.52,0.699,0.511,0.842,0.994,0.973,0.617,0.678,1.375,0.731,0.352,1.243,0.806,1.505,2.292,1.478,0.109,0.783,1.104,0.77,1.401,0.731,1.006,1.083,0.593,0.992,0.75,1.194,0.846,0.637,1.11,0.612,1.132,0.714,0.912,2.261 +NM_014047,0.778,1.067,1.042,0.776,0.902,1.054,0.665,0.81,0.967,1.078,0.99,1.122,0.863,0.575,0.864,1.253,0.937,0.929,1.174,0.923,0.659,0.764,1.723,1.497,0.662,1.074,1.334,0.908,0.368,1.1,0.977,1.19,1.637,1.283,0.509,1.057,0.855,0.991,1.415,0.819,1.038,1.098,0.524,1.619,0.921,0.737,0.92,0.969,0.861,0.751,1.062,1.334,1.196,1.839 +NM_014048,0.983,0.922,0.907,0.813,1.014,1.093,0.897,0.926,0.907,0.86,0.963,1.117,0.933,1.014,1.142,1.168,0.972,0.876,0.986,0.92,1.078,0.944,0.962,1.031,0.998,1.211,1.049,1.031,1.095,1.021,0.926,1.022,1.002,1.072,0.962,0.942,1.012,1.072,1.225,0.958,0.972,0.924,0.827,1.123,1.036,1.011,1.152,0.936,0.992,0.968,1.069,0.853,0.991,1.039 +NM_014049,0.8,0.884,1.161,0.735,1.02,0.881,0.762,0.579,1.408,1.371,0.707,1.104,0.708,0.736,0.84,1.113,1.027,1.285,1.426,0.728,0.733,1.38,1.221,1.606,0.512,1.236,1.124,1.099,0.639,1.242,0.892,1.482,1.554,1.101,0.351,1.118,0.879,1.118,1.31,0.773,1.188,0.942,0.697,1.404,1.115,0.917,0.872,1.088,0.821,0.832,0.918,0.844,1.24,1.334 +NM_014051,0.649,0.939,1.306,1.013,0.83,1.236,0.773,0.411,0.98,1.387,1.486,0.611,0.653,0.776,1.069,1.806,0.723,1.294,1.307,1.315,0.512,0.541,1.0,0.987,0.643,0.573,1.006,0.778,0.552,1.872,0.819,1.071,1.325,1.487,0.246,1.075,1.174,0.727,1.85,0.539,1.0,0.913,0.811,1.381,0.788,1.114,0.942,0.579,0.812,0.757,1.047,0.592,0.989,1.279 +NM_014053,0.833,0.945,1.032,0.996,0.978,1.049,1.04,0.804,1.003,0.897,1.248,0.92,0.934,0.894,0.942,1.665,0.772,1.026,0.862,0.814,0.862,0.893,1.143,0.895,0.917,0.932,0.786,0.995,0.886,1.086,0.851,1.048,1.189,1.086,0.843,1.03,1.64,0.978,1.435,1.071,0.971,1.016,1.171,1.348,0.933,1.131,1.13,0.965,0.987,0.877,1.044,0.921,0.795,1.218 +NM_014055,0.971,0.874,1.105,0.878,1.043,1.089,0.98,0.929,0.94,0.908,1.159,1.003,0.987,0.899,1.074,0.868,1.034,0.997,0.847,1.075,1.109,0.976,1.016,0.995,0.922,0.853,0.965,0.939,0.831,1.117,0.904,0.942,1.016,1.256,0.951,0.881,1.03,1.128,1.023,1.096,0.903,1.009,1.09,1.012,0.874,1.171,0.888,0.984,0.97,1.025,0.986,0.945,0.95,1.089 +NM_014056,0.485,0.796,1.199,0.62,1.007,2.887,0.937,1.566,1.301,0.718,1.43,1.482,1.122,0.474,1.721,3.651,0.762,1.375,0.887,1.287,0.234,1.053,1.391,1.435,0.458,0.366,1.206,1.031,0.618,1.633,1.407,0.588,1.766,1.989,0.336,0.176,1.66,1.235,1.793,0.778,1.018,1.071,0.421,0.247,1.005,1.215,1.264,0.998,1.541,0.794,1.306,0.598,0.386,1.559 +NM_014057,0.828,1.544,0.787,1.027,1.073,1.492,1.165,0.874,0.696,0.847,0.938,0.774,0.905,0.731,1.039,1.388,0.757,0.92,0.747,1.533,0.848,0.782,1.525,0.945,1.129,0.849,0.784,0.877,1.196,1.459,0.85,2.509,0.826,2.393,0.912,0.817,1.01,0.876,1.13,1.006,0.983,2.569,1.209,0.857,0.774,0.976,0.872,0.764,0.96,0.801,1.287,1.06,1.019,0.845 +NM_014058,3.847,0.142,4.982,1.175,5.963,0.141,0.132,5.274,8.671,2.338,0.137,2.263,4.491,2.215,3.855,2.742,4.233,2.092,6.11,0.158,1.648,4.277,0.128,3.439,0.144,3.166,5.13,7.036,0.117,0.149,8.078,0.153,2.721,0.137,10.31,0.139,0.175,5.75,0.193,0.139,6.475,0.161,0.127,0.137,5.222,0.136,4.254,4.918,0.924,4.57,0.869,0.911,3.405,0.646 +NM_014059,1.122,0.957,1.02,0.544,0.639,1.044,0.78,0.84,0.774,0.979,0.773,0.569,0.724,0.978,1.226,0.8,0.696,0.608,1.078,0.588,0.612,0.718,1.01,1.843,1.39,1.063,0.914,1.428,0.333,1.266,1.684,3.85,2.327,1.454,0.368,0.853,0.699,0.97,1.284,3.681,0.804,1.529,0.858,1.554,1.079,0.566,0.694,1.224,0.554,0.754,1.103,2.122,0.959,1.717 +NM_014060,0.698,0.937,1.14,0.706,1.05,1.054,0.672,0.496,1.1,1.04,1.177,0.757,0.619,0.484,0.869,1.61,0.875,1.148,1.261,0.957,0.403,0.963,1.21,1.242,0.63,0.824,1.159,1.011,0.567,1.143,0.973,0.826,2.004,1.184,0.449,1.023,1.165,0.833,1.549,0.562,1.25,1.078,0.72,1.203,1.153,1.124,1.37,0.914,1.127,0.726,1.085,1.274,0.882,0.989 +NM_014061,0.845,1.043,0.99,1.013,0.923,1.081,0.954,0.909,1.112,0.95,0.969,0.869,0.94,0.906,1.048,0.771,0.976,0.88,0.841,0.918,0.857,1.004,1.087,1.027,0.989,1.07,1.22,1.015,1.194,1.209,1.008,1.425,1.049,1.234,1.005,0.777,0.868,1.045,1.104,1.046,1.436,1.007,1.238,1.004,0.901,0.985,0.992,1.002,0.905,0.878,0.999,1.012,0.843,1.053 +NM_014062,0.77,1.24,0.965,0.8,0.896,1.008,0.578,0.758,1.091,1.248,0.917,0.88,0.879,0.772,0.924,1.122,0.993,0.721,1.357,0.739,1.159,0.945,1.265,1.331,0.583,1.038,1.514,0.781,0.484,0.982,0.849,1.147,2.477,1.335,0.335,0.808,0.855,1.298,1.403,0.563,1.166,1.02,0.628,1.611,1.023,0.685,0.956,0.861,0.768,0.971,0.772,0.791,1.134,1.138 +NM_014063,1.347,0.521,2.223,0.799,1.417,0.938,0.668,0.767,1.965,1.594,0.617,1.23,1.015,0.972,1.052,1.188,1.768,1.333,1.86,0.878,0.469,1.323,0.866,1.87,0.567,1.638,1.748,1.422,0.576,1.782,1.399,0.874,1.145,1.014,1.115,0.822,0.784,1.369,0.938,0.637,1.868,0.8,0.623,1.192,1.885,0.741,1.486,1.715,0.593,1.537,0.967,0.945,1.614,0.935 +NM_014065,0.657,1.115,1.206,0.796,0.843,1.408,0.921,0.675,0.927,0.871,1.083,0.805,0.75,0.849,1.31,1.8,0.871,0.898,0.925,1.342,0.664,0.823,1.797,1.004,0.704,0.84,1.168,0.822,0.848,1.689,0.895,1.492,1.597,1.48,0.613,0.773,1.492,0.822,1.102,0.723,0.898,1.445,1.068,1.032,0.849,1.176,0.89,0.777,1.275,0.842,1.653,0.882,0.806,1.4 +NM_014067,1.028,1.009,1.043,0.962,0.863,1.076,0.675,0.953,0.995,0.866,0.769,0.955,1.222,0.775,1.005,1.198,0.72,0.927,1.352,0.857,0.928,1.087,0.949,1.251,1.082,1.542,1.153,1.093,0.669,0.994,1.091,1.177,3.59,1.47,0.765,1.21,0.875,1.101,1.54,0.815,0.91,1.144,0.84,1.896,1.091,0.73,0.918,1.202,0.761,1.038,0.78,0.673,0.906,0.926 +NM_014068,0.817,0.985,0.879,0.971,1.137,0.963,1.292,0.839,1.033,0.9,0.995,0.909,0.902,1.053,1.062,1.159,0.9,1.071,0.892,1.081,0.837,0.87,0.985,0.949,1.117,1.02,0.997,1.051,1.408,1.1,1.062,0.891,1.207,1.143,0.951,1.066,1.07,0.966,1.313,0.842,0.833,1.402,1.444,0.982,0.893,1.099,0.967,0.891,1.057,0.778,1.303,1.034,0.835,1.086 +NM_014069,0.987,1.093,0.954,1.177,0.954,1.111,0.912,0.954,1.094,1.052,1.076,1.062,1.153,0.931,0.838,0.932,0.897,1.004,1.117,1.066,0.976,0.986,0.855,1.0,0.98,0.967,0.956,1.016,1.147,0.881,0.961,1.087,0.938,0.883,1.041,0.929,1.02,1.002,1.095,1.046,1.007,0.947,1.101,1.027,1.178,1.081,1.005,0.837,0.903,1.101,0.865,1.013,0.983,1.087 +NM_014070,0.928,0.993,0.965,1.055,1.151,0.958,0.965,0.903,0.999,0.963,0.954,0.947,0.876,0.801,0.824,0.855,1.017,0.931,0.809,1.162,1.017,0.977,0.928,1.008,1.062,1.033,1.004,0.99,1.088,0.944,1.017,0.94,1.356,1.029,1.036,1.106,0.911,1.159,0.934,1.387,0.924,1.04,1.047,1.057,1.165,0.949,1.134,1.021,1.107,0.994,0.967,0.993,1.121,1.445 +NM_014071,0.587,0.847,1.433,0.517,0.941,1.071,0.608,0.547,1.148,0.809,0.869,0.535,0.49,0.713,0.958,1.239,0.861,0.849,1.149,1.001,0.675,0.826,1.727,0.75,0.561,0.767,1.412,0.852,0.59,1.361,0.958,1.598,2.335,1.286,0.678,0.746,0.814,0.932,1.286,1.368,1.016,1.263,0.653,1.213,0.908,0.999,1.03,0.83,1.11,0.91,1.152,0.881,0.917,1.861 +NM_014078,0.459,0.986,1.208,0.627,0.96,1.302,0.686,0.87,1.273,0.961,0.859,1.506,0.897,0.473,0.928,2.267,0.912,1.301,1.427,1.098,0.357,0.931,1.175,1.207,0.393,0.595,1.39,0.946,0.44,0.796,0.967,1.243,2.402,1.112,0.151,1.025,1.061,0.999,1.128,1.393,1.124,0.795,0.622,0.941,1.011,1.176,1.319,0.723,1.751,0.604,0.933,0.809,0.765,1.8 +NM_014079,1.096,1.083,0.891,0.926,0.983,1.262,1.16,1.062,0.832,0.866,0.863,0.969,0.982,0.974,0.819,0.903,1.039,1.045,1.028,1.028,0.951,1.114,1.064,0.995,1.31,1.147,0.965,0.854,0.764,1.073,1.063,1.336,1.109,1.115,0.994,0.916,1.088,0.922,0.985,0.922,0.991,1.142,1.066,1.009,0.869,0.902,0.917,0.915,0.774,0.885,0.958,0.964,0.981,0.945 +NM_014081,1.086,1.003,1.063,1.0,0.88,0.927,1.096,0.963,0.945,0.923,0.921,1.075,0.902,0.803,1.186,1.209,1.0,1.119,0.912,1.16,1.152,1.02,0.854,0.863,0.949,1.125,0.848,1.082,1.003,0.967,1.052,0.988,0.859,0.781,1.151,0.913,1.13,0.852,1.022,1.042,1.0,0.916,1.051,1.03,0.942,0.953,0.985,0.914,1.13,1.095,0.992,1.018,1.098,0.935 +NM_014089,1.223,0.929,0.967,1.045,0.998,1.051,0.832,1.053,1.275,1.123,0.963,1.155,0.99,0.929,0.941,1.02,1.009,1.155,0.901,1.127,0.891,0.995,1.011,1.097,0.93,0.933,0.964,0.938,1.157,1.05,0.984,1.137,0.99,0.89,1.063,1.086,0.906,0.957,1.021,1.165,0.966,0.895,0.938,0.891,1.004,0.951,0.993,1.047,1.036,0.845,1.054,1.008,0.799,1.234 +NM_014099,1.054,0.952,1.016,0.993,1.003,1.005,0.9,1.166,1.104,0.984,1.007,1.004,1.082,0.988,0.927,0.947,0.874,0.943,0.889,1.022,1.015,1.039,1.002,1.001,0.963,1.107,1.153,0.914,0.979,1.051,0.991,1.043,0.938,0.959,1.019,0.843,0.986,0.926,1.043,1.098,0.948,0.817,0.874,0.964,0.933,0.917,1.072,0.997,1.02,0.87,1.155,0.86,0.978,0.936 +NM_014104,1.041,0.994,1.013,0.979,1.017,1.021,0.861,1.061,0.873,1.023,0.896,1.063,0.855,0.962,0.974,1.079,0.99,1.049,0.918,0.964,1.0,1.069,1.004,1.029,1.029,1.055,1.046,1.09,1.221,0.983,1.114,1.309,0.935,0.966,1.071,1.128,1.033,0.978,0.896,0.99,0.905,1.021,0.941,1.108,1.048,0.926,0.974,1.071,1.03,0.985,0.964,0.99,0.959,0.94 +NM_014106,0.963,1.044,1.028,1.028,1.035,0.881,1.156,1.084,1.049,0.961,1.01,0.968,1.044,1.136,0.968,1.0,0.967,0.982,1.0,1.247,1.008,1.048,1.02,1.121,1.079,0.849,0.903,1.097,1.639,1.049,0.957,1.056,1.03,1.09,1.026,1.037,0.991,0.907,1.152,0.94,0.91,0.966,1.044,0.994,1.069,0.936,0.954,0.96,1.038,1.024,0.996,0.961,0.994,1.02 +NM_014109,0.873,1.193,1.297,0.981,0.924,0.736,0.715,0.778,1.127,1.127,0.722,1.14,0.857,0.981,1.026,0.945,0.924,0.999,1.21,1.074,0.742,1.013,1.211,1.364,0.695,0.962,1.641,0.939,0.634,0.9,0.805,1.814,4.26,0.844,0.495,2.142,0.862,0.966,1.693,2.333,1.193,0.915,0.981,2.594,1.15,1.282,1.134,0.902,1.534,1.003,0.88,1.33,0.948,2.291 +NM_014110,0.97,0.874,1.082,0.896,0.998,1.07,0.774,0.863,0.968,0.904,0.973,1.01,1.005,0.805,0.859,1.234,0.913,0.774,0.996,0.987,0.96,1.002,1.102,1.071,0.906,0.969,1.158,0.94,0.722,0.937,1.083,1.024,1.191,1.072,0.767,1.217,1.147,1.094,1.128,1.094,0.977,0.939,0.749,0.975,0.981,1.035,1.134,0.947,1.096,0.892,1.02,0.992,0.967,1.598 +NM_014111,0.98,0.917,1.144,0.94,0.943,1.172,0.946,1.095,1.017,1.077,1.296,1.156,0.961,0.819,1.384,0.999,0.935,1.035,1.172,0.906,1.024,0.99,0.951,1.048,1.005,0.959,1.095,1.168,1.082,1.056,1.085,0.98,0.971,0.954,0.938,1.113,1.146,1.119,1.031,1.058,0.974,0.999,1.186,0.958,1.016,0.96,1.014,0.993,1.016,0.923,0.962,0.901,0.999,0.954 +NM_014112,1.049,1.003,1.097,0.919,1.134,0.954,0.816,1.032,1.135,1.049,0.819,0.97,0.935,1.002,1.003,1.0,1.02,0.966,1.046,1.001,0.877,1.041,1.011,1.175,0.917,1.013,1.077,1.066,1.219,1.018,0.92,1.115,0.901,0.935,0.967,0.934,0.86,1.165,1.027,1.05,1.043,0.91,1.024,0.959,1.028,0.998,0.983,1.003,0.93,1.057,0.845,0.794,0.953,0.86 +NM_014116,1.062,0.981,1.101,0.909,0.931,0.99,1.122,1.024,1.053,1.083,0.914,1.128,1.033,0.905,0.953,0.887,1.0,0.95,1.07,1.012,0.944,1.094,1.115,0.946,1.036,1.032,1.004,1.011,0.863,0.922,1.062,0.995,1.035,0.936,0.969,1.101,1.082,1.043,0.962,0.961,0.943,1.069,1.002,1.056,1.097,1.229,0.985,1.046,0.891,1.166,1.036,1.063,1.029,0.965 +NM_014117,0.869,0.742,1.236,0.938,0.745,0.951,0.736,0.618,1.038,0.706,1.403,0.738,0.883,0.771,1.063,1.547,0.824,1.002,0.879,0.957,0.578,0.952,0.864,1.094,0.74,1.017,1.067,1.038,0.634,0.953,1.083,1.087,1.359,1.105,0.858,0.638,1.067,1.109,1.204,0.988,0.851,1.046,0.809,0.934,0.966,1.165,0.817,1.024,1.018,1.102,1.011,0.973,0.886,0.998 +NM_014118,0.997,0.988,1.009,1.025,0.941,0.914,0.964,1.187,1.004,0.877,1.163,0.917,0.897,0.941,0.972,1.123,1.059,1.004,1.089,0.965,1.028,0.813,1.04,1.02,1.058,0.989,1.118,0.953,0.92,0.961,0.922,1.072,0.993,1.141,0.843,1.041,1.09,0.9,1.038,1.108,0.984,1.027,0.847,1.025,1.074,1.078,0.973,0.931,0.876,1.02,1.12,0.931,1.075,1.052 +NM_014121,1.016,1.008,0.936,0.969,1.075,1.064,1.276,1.1,0.998,1.088,0.859,0.843,1.078,0.975,0.946,1.112,0.984,0.997,0.904,0.876,0.944,1.075,1.062,1.03,1.092,0.993,1.238,1.057,1.217,0.98,0.966,1.014,0.993,0.961,1.058,1.012,1.045,1.06,1.15,0.905,0.976,0.882,1.253,0.969,1.03,1.096,0.918,1.1,1.072,0.984,1.006,0.974,1.021,0.971 +NM_014125,0.911,0.955,1.093,1.049,0.893,1.079,0.982,1.122,1.09,0.952,1.188,0.922,1.042,1.103,0.984,0.978,0.994,0.92,1.007,0.915,1.161,1.079,0.988,1.032,0.986,1.153,1.18,0.937,1.085,1.098,0.955,1.167,1.165,0.895,0.993,0.905,1.102,0.981,0.97,1.122,0.948,1.109,1.305,0.966,0.906,0.916,0.887,1.024,0.981,0.928,1.063,1.08,0.912,1.018 +NM_014134,1.027,1.055,0.897,1.002,0.919,0.998,0.831,1.098,1.026,1.106,0.971,1.004,1.061,0.806,1.188,1.153,0.952,0.939,1.041,0.98,1.03,0.863,0.983,0.966,1.04,1.17,1.12,0.934,0.827,0.863,0.878,1.107,0.933,1.094,0.949,0.921,1.037,1.079,1.101,1.0,1.016,1.053,1.021,0.993,1.056,0.836,1.102,0.951,1.068,1.138,1.093,0.87,0.811,1.002 +NM_014135,0.979,0.93,0.983,0.962,0.974,1.136,0.908,0.991,1.086,0.876,0.95,0.954,0.906,0.936,1.001,1.073,1.122,1.037,0.939,0.902,0.797,0.911,1.003,1.054,1.092,0.921,0.959,0.987,1.156,1.052,1.148,1.148,0.873,1.009,0.978,0.904,1.121,0.895,1.092,1.026,1.001,1.043,1.226,1.03,1.212,0.987,0.878,1.043,1.117,1.156,1.1,0.992,0.899,0.919 +NM_014138,1.05,0.973,0.963,1.157,0.667,1.083,0.799,0.753,1.214,0.779,1.137,0.733,0.727,1.06,1.276,1.404,0.862,0.981,1.153,0.903,0.847,0.838,0.939,1.024,0.88,0.85,1.065,0.813,0.696,1.273,0.942,1.545,3.019,1.518,0.791,1.002,1.108,0.858,1.248,0.883,0.992,1.056,0.958,0.75,0.874,1.07,0.931,0.799,0.85,0.822,0.775,0.889,0.991,1.534 +NM_014140,0.771,1.048,1.382,0.855,0.958,0.842,0.709,0.62,1.025,1.023,0.888,0.858,0.706,0.744,0.934,1.174,1.021,0.942,1.167,0.925,0.71,0.932,1.308,1.002,0.603,0.803,1.384,0.83,0.613,0.943,1.061,1.602,2.469,1.023,0.468,0.82,0.836,1.308,1.111,1.148,1.071,1.12,0.732,1.314,0.993,0.991,0.751,0.753,0.961,0.877,1.2,1.005,1.043,2.31 +NM_014141,0.84,0.698,0.991,0.805,0.932,0.944,0.805,0.855,0.804,0.692,1.121,0.914,0.812,0.737,1.133,1.341,1.012,0.772,0.928,1.356,0.697,0.822,3.85,1.013,0.732,0.791,1.144,0.841,0.635,0.717,0.898,2.597,2.696,0.823,0.667,1.009,1.301,0.736,0.869,1.456,1.365,1.03,1.282,1.224,1.438,1.575,1.44,0.77,1.763,1.089,1.391,1.616,0.951,3.18 +NM_014142,0.47,0.967,1.226,0.702,0.734,1.273,0.533,0.341,0.525,0.996,1.176,0.872,0.515,0.356,0.808,1.569,0.88,0.715,1.492,0.944,0.586,0.526,1.664,0.85,0.503,0.704,1.569,0.782,0.378,0.975,0.702,1.293,4.934,1.378,0.191,0.997,1.014,0.711,1.838,0.866,0.96,1.148,0.661,2.762,1.179,1.046,1.232,0.547,1.457,1.034,1.231,0.714,1.276,2.696 +NM_014143,0.855,0.993,1.073,0.952,1.071,0.789,1.069,1.213,0.875,0.891,1.003,1.111,0.917,1.05,0.982,1.14,1.005,0.997,0.968,1.016,1.065,1.128,1.068,0.963,0.975,1.259,0.924,0.911,0.939,1.01,0.85,0.85,1.007,0.906,1.089,0.966,0.851,1.031,1.018,1.049,0.993,1.012,0.885,1.038,1.069,0.998,0.852,0.969,0.919,0.957,0.902,1.257,1.105,1.05 +NM_014145,0.342,1.358,0.768,0.602,0.517,1.93,0.641,0.411,0.748,0.543,1.49,0.687,0.472,0.359,0.9,1.756,0.592,0.801,0.712,1.264,0.273,0.571,1.876,0.701,0.835,0.411,0.891,0.561,0.599,2.121,0.504,1.411,1.547,2.2,0.123,1.128,1.326,0.6,1.297,1.049,0.709,1.296,0.744,1.26,0.515,1.313,1.194,0.389,1.025,0.408,1.286,1.026,0.589,2.632 +NM_014147,0.855,0.896,0.987,1.035,0.958,1.037,1.097,1.119,0.93,0.957,0.908,1.11,1.044,1.062,0.964,1.111,0.998,0.915,0.999,0.916,1.034,0.966,0.93,0.89,1.021,1.053,1.003,0.986,0.989,0.892,1.034,0.89,0.918,1.001,0.893,1.096,1.011,0.959,1.092,0.998,1.032,0.97,1.114,0.885,0.97,0.98,1.079,1.025,0.965,0.86,1.14,1.045,0.968,0.989 +NM_014149,1.089,0.692,2.518,0.831,1.712,0.657,0.595,0.704,1.531,1.859,0.601,1.242,0.819,1.37,1.053,1.084,1.636,1.032,2.111,0.715,0.998,1.316,1.004,1.887,0.747,1.326,2.763,1.427,0.345,0.815,1.309,1.102,1.363,0.864,0.527,0.589,0.729,1.817,0.705,0.707,1.539,0.806,0.515,0.779,1.392,0.727,1.235,1.018,0.563,1.334,0.788,1.003,1.958,1.756 +NM_014153,0.585,0.915,1.039,1.013,0.776,1.093,0.781,0.548,0.888,0.835,1.358,0.56,0.633,0.737,0.943,1.185,0.944,0.714,0.748,1.459,0.691,0.625,1.329,0.651,0.959,0.75,1.083,0.796,0.659,1.073,0.796,1.241,2.163,1.407,0.61,0.82,0.933,0.707,1.097,1.072,1.013,1.048,0.95,1.128,0.853,1.085,0.876,0.556,0.97,0.8,1.222,0.924,1.029,1.755 +NM_014154,0.895,1.007,1.035,0.826,0.994,1.038,0.777,0.974,1.074,0.948,1.002,0.947,0.837,1.009,0.903,1.292,0.873,0.947,1.065,0.862,0.871,0.946,1.035,1.002,0.971,1.07,1.146,1.09,1.293,1.157,1.008,0.972,1.186,1.286,0.67,0.831,1.07,0.98,1.107,1.128,0.94,1.025,0.913,0.963,0.96,0.978,0.957,0.981,1.006,0.891,0.998,1.033,1.255,1.351 +NM_014159,0.909,1.042,1.271,0.807,0.903,1.054,0.916,0.769,1.09,0.881,0.848,1.004,0.776,0.694,1.292,1.019,0.989,1.027,0.806,1.189,0.63,1.089,1.16,0.856,1.012,0.882,1.062,0.941,0.738,1.161,0.999,1.138,1.085,1.043,0.908,0.939,1.016,1.016,1.383,1.114,0.974,1.167,0.805,0.902,1.018,0.865,1.008,0.93,0.96,0.97,1.02,1.004,0.922,1.36 +NM_014160,0.853,1.118,1.139,0.908,0.86,1.167,0.719,0.779,1.277,0.926,0.977,1.052,0.773,0.935,0.99,1.196,0.754,0.975,1.126,0.992,0.733,1.064,1.32,0.962,0.761,1.08,1.122,1.034,0.465,1.698,1.017,0.996,1.319,1.351,0.534,0.899,1.047,0.99,1.347,0.757,1.035,1.083,0.606,0.731,0.928,0.979,0.849,0.995,0.973,0.723,1.112,0.879,0.94,1.471 +NM_014161,0.355,1.183,1.423,0.478,0.945,1.411,1.066,0.846,1.222,1.012,0.685,1.213,0.824,0.503,1.032,1.946,0.956,0.855,0.9,1.023,0.431,0.949,1.255,1.479,0.326,0.442,1.785,0.917,0.429,1.072,1.162,1.271,2.411,1.005,0.221,0.362,0.885,1.173,1.419,0.836,1.323,1.05,0.43,0.641,1.126,0.892,1.066,0.671,1.312,0.731,1.099,0.704,0.5,1.896 +NM_014162,1.076,1.137,0.99,1.016,0.963,0.847,0.992,0.966,0.861,1.105,1.001,0.907,1.047,1.209,0.829,1.089,1.089,0.905,0.932,0.911,0.954,0.96,1.138,0.959,0.926,1.046,0.946,1.014,1.178,1.071,0.897,1.015,1.087,1.049,0.986,0.953,1.04,1.063,1.059,1.05,1.051,0.879,1.015,1.006,0.892,1.192,0.886,0.977,1.043,0.952,0.868,0.978,1.016,1.04 +NM_014163,1.004,0.996,0.967,1.024,1.0,0.886,1.053,0.894,0.999,0.982,0.842,1.049,1.01,0.948,0.873,0.867,0.917,1.062,0.892,0.997,0.812,0.979,0.882,1.008,0.896,0.991,1.07,0.981,1.025,1.036,0.861,1.052,0.954,1.05,1.081,0.94,0.875,1.013,1.152,0.942,0.972,0.958,0.89,0.967,0.961,1.038,1.032,1.098,1.042,1.013,1.005,1.0,1.003,0.974 +NM_014164,0.744,0.821,2.112,0.93,0.982,0.87,0.712,0.765,0.443,1.306,0.587,0.483,0.819,0.413,0.543,0.898,2.496,1.075,1.802,0.519,0.992,0.613,1.7,0.918,0.565,0.969,0.734,0.424,0.551,2.207,0.571,1.578,2.3,1.303,0.968,1.695,0.617,0.483,2.443,2.014,0.73,0.988,0.334,3.295,1.293,0.505,1.634,1.717,0.267,1.697,0.735,2.031,2.164,1.705 +NM_014165,0.83,1.063,0.874,0.847,0.933,0.936,0.823,0.678,1.095,1.389,1.179,0.747,0.762,0.862,0.911,1.322,0.777,0.933,1.116,0.905,0.805,0.643,1.461,1.028,0.943,0.885,1.026,0.924,0.697,0.798,0.867,1.082,1.935,1.15,0.6,1.289,1.158,0.746,1.369,0.816,0.948,1.095,1.125,1.266,1.05,1.052,0.977,0.809,1.059,0.825,1.107,0.968,1.138,2.701 +NM_014166,0.675,0.994,1.19,0.689,0.964,1.2,0.435,0.722,1.166,0.901,0.857,1.329,0.758,0.745,1.064,2.109,0.974,0.644,1.034,1.225,0.338,0.994,1.104,1.223,0.558,0.712,1.625,0.993,0.308,1.518,1.088,1.51,1.02,1.304,0.215,1.005,1.335,0.964,1.077,0.765,1.157,1.003,0.618,1.17,1.045,0.891,1.201,0.642,0.938,0.797,0.918,0.834,0.863,2.24 +NM_014167,0.618,0.878,1.035,0.761,0.807,1.144,0.606,0.801,1.003,0.99,1.362,1.128,0.942,0.771,1.076,1.266,0.719,0.747,1.288,1.031,0.685,0.844,1.118,1.201,0.621,0.699,1.324,0.895,0.568,0.997,0.853,1.255,1.846,1.513,0.347,1.47,1.097,0.938,1.208,0.933,1.113,1.023,0.7,1.045,0.951,0.992,0.912,0.786,0.883,0.682,0.92,0.967,1.112,2.42 +NM_014169,0.795,0.952,1.18,0.791,1.002,1.291,0.814,0.684,1.163,1.202,0.854,1.039,0.766,0.567,0.849,1.219,0.983,0.993,0.961,1.34,0.536,0.848,1.202,1.221,0.663,0.837,1.06,0.921,0.658,1.014,0.855,0.948,1.382,1.212,0.32,0.685,0.84,0.956,1.068,0.73,1.234,1.241,0.807,1.772,1.208,0.964,1.005,0.888,1.098,0.74,1.048,0.822,0.944,1.598 +NM_014170,0.69,1.122,1.246,0.821,0.831,0.915,0.691,0.571,1.197,0.983,1.042,0.555,0.683,0.816,0.865,1.203,1.099,0.836,1.159,1.181,0.636,0.654,1.164,1.08,0.69,0.627,1.313,0.859,0.486,0.752,0.906,1.15,1.723,1.273,0.385,0.835,0.918,0.773,1.246,0.648,1.146,1.131,0.878,1.054,0.935,1.132,0.899,0.598,0.901,0.75,1.162,0.741,1.068,1.505 +NM_014171,0.896,1.112,1.282,0.798,1.057,1.211,0.67,0.843,1.099,0.914,1.397,1.124,1.09,0.917,0.944,1.5,0.925,1.1,1.142,1.126,0.566,0.944,1.044,1.073,0.748,1.074,1.344,0.994,0.782,0.932,1.088,0.878,1.927,1.346,0.716,1.133,1.297,0.793,1.307,0.848,0.986,0.957,0.741,1.156,0.939,0.893,1.116,1.171,0.866,0.777,0.864,1.0,0.704,1.16 +NM_014172,0.539,1.095,0.926,0.835,0.869,1.229,0.701,0.653,0.902,0.874,1.207,1.064,0.953,0.462,1.042,1.711,0.837,0.945,1.033,1.247,0.596,0.807,1.344,1.094,0.902,0.903,0.934,1.083,0.392,1.15,0.899,2.187,1.602,1.678,0.251,1.869,1.069,0.909,1.239,0.873,0.79,1.428,0.595,1.04,0.827,0.786,1.055,0.964,1.047,0.667,1.026,0.96,0.805,1.566 +NM_014173,0.773,1.142,0.848,0.816,0.774,1.426,0.463,0.718,0.995,0.781,1.229,0.989,0.98,0.653,0.874,1.645,0.897,1.079,1.535,0.854,0.608,1.073,1.65,1.161,0.862,1.061,1.234,0.645,0.655,1.303,0.761,1.201,1.317,1.501,0.363,1.263,1.137,0.913,1.647,0.863,0.924,0.983,0.918,1.703,0.775,0.924,0.874,0.899,0.841,0.673,0.832,1.084,0.814,1.341 +NM_014174,0.703,1.408,0.942,0.856,0.76,1.329,0.648,0.615,0.842,0.781,1.103,0.862,0.706,0.714,0.814,1.383,0.851,0.944,1.071,1.159,0.792,0.839,1.255,0.743,0.878,0.886,1.166,0.699,0.605,1.321,0.833,1.085,1.627,1.774,0.386,1.334,1.079,0.908,1.251,0.743,0.9,1.402,0.76,1.042,0.731,0.962,0.891,0.718,0.824,0.74,1.109,0.824,0.838,1.055 +NM_014175,0.707,0.948,1.055,0.708,0.757,1.114,0.535,0.532,0.977,0.886,1.698,0.903,0.819,0.713,1.019,1.91,0.767,0.784,1.495,0.758,0.472,0.851,1.328,1.159,0.697,0.829,1.276,0.644,0.355,1.022,0.872,1.089,3.085,1.429,0.37,1.49,1.188,0.706,1.301,1.27,1.025,1.078,0.723,1.432,1.085,1.402,1.067,0.79,1.603,0.747,1.028,0.917,1.227,2.107 +NM_014176,0.768,1.234,0.961,1.022,0.731,1.14,0.643,0.558,0.942,0.894,0.885,0.894,0.717,0.59,0.829,1.352,0.837,1.022,0.9,0.878,0.662,0.77,1.558,1.001,0.627,0.744,1.694,0.783,0.529,0.881,0.655,1.963,10.49,1.011,0.472,1.795,1.018,0.89,2.013,1.159,1.02,0.713,0.649,2.313,1.01,1.253,1.145,0.674,1.402,0.687,1.277,1.107,0.855,3.048 +NM_014177,0.705,0.806,1.013,0.775,0.956,1.047,0.63,0.556,1.227,1.189,1.429,1.149,0.766,0.804,1.119,2.103,0.914,0.817,1.465,0.854,0.604,0.766,1.323,1.365,0.714,0.749,1.558,0.931,0.313,1.252,0.877,1.404,1.983,1.281,0.194,0.792,1.154,0.824,1.286,0.585,1.259,1.215,0.883,1.251,1.02,1.12,1.189,0.639,1.298,0.797,1.12,0.998,0.949,1.444 +NM_014178,0.694,1.648,0.512,1.06,0.565,1.872,1.181,0.655,0.672,0.519,1.728,0.611,0.791,0.518,1.518,3.464,0.569,1.208,0.605,2.822,0.633,0.702,1.946,0.692,0.849,0.638,0.609,0.675,1.068,1.837,0.626,0.757,0.986,2.136,0.571,0.932,2.859,0.734,1.897,0.988,0.754,1.754,1.814,0.981,0.625,1.849,1.212,0.565,2.054,0.564,1.99,0.802,0.57,0.729 +NM_014179,1.072,1.484,1.092,1.011,0.831,1.116,0.85,0.65,1.054,0.775,1.146,1.2,1.067,0.957,0.888,0.832,0.809,0.782,0.794,1.002,0.706,0.764,1.21,1.049,0.856,0.865,1.025,0.933,0.586,1.258,0.898,1.505,1.382,1.544,0.674,0.73,1.116,0.998,1.071,1.238,0.98,1.429,0.79,1.067,1.001,0.939,0.866,0.87,0.845,0.799,0.962,0.965,0.969,1.176 +NM_014180,0.594,0.962,1.021,0.832,0.89,1.263,0.882,0.571,1.082,0.998,1.309,1.197,0.855,0.523,0.93,1.889,0.863,1.119,1.142,1.107,0.481,0.776,1.322,1.304,0.62,0.783,1.321,0.928,0.515,1.107,0.848,1.63,3.033,1.361,0.114,0.96,1.461,0.836,1.431,0.665,1.127,1.077,0.825,1.011,0.999,1.216,1.297,0.878,1.27,0.68,1.078,1.145,0.835,2.34 +NM_014181,0.678,0.808,1.384,0.531,1.193,1.435,0.949,0.905,1.557,1.997,0.834,1.296,0.829,0.565,0.927,1.408,0.809,1.19,1.382,0.966,0.731,0.965,1.028,2.108,0.52,0.687,1.229,0.991,0.71,1.221,0.979,0.862,1.745,1.103,0.729,0.659,0.93,1.094,1.216,0.621,1.445,0.909,0.809,0.761,1.791,1.015,1.86,1.009,1.045,1.371,0.914,0.948,1.967,1.674 +NM_014182,0.707,0.86,0.957,0.742,1.108,1.516,0.703,0.936,1.104,0.985,1.196,1.012,0.85,0.739,1.041,1.442,0.9,1.16,1.233,1.112,0.568,1.038,1.027,1.327,0.592,0.873,1.05,1.023,0.662,1.116,1.058,0.798,1.151,1.099,0.703,0.958,1.178,1.005,1.201,0.754,1.098,1.067,0.774,0.942,0.907,1.217,1.251,1.006,0.995,0.887,1.217,0.806,0.799,1.037 +NM_014183,0.608,1.039,1.11,0.882,0.783,1.15,0.56,0.35,1.006,0.917,1.086,0.37,0.456,0.639,0.963,1.412,0.716,0.777,1.152,0.994,0.728,0.279,1.561,0.668,0.665,0.905,0.82,0.855,0.283,1.606,0.953,2.251,2.185,2.09,0.568,0.882,0.851,0.614,1.563,1.185,0.981,1.353,0.537,1.892,0.863,0.864,1.021,0.597,0.652,0.724,0.979,0.867,1.052,1.865 +NM_014184,0.57,0.731,1.437,0.52,0.91,1.376,0.768,1.19,1.289,0.895,1.025,1.631,0.948,0.558,1.066,2.183,0.876,1.134,1.132,0.923,0.331,1.015,1.129,1.408,0.271,0.379,1.652,1.007,0.489,1.124,0.872,1.376,2.209,1.113,0.137,0.824,1.506,1.059,0.993,1.307,1.127,0.753,0.668,0.706,0.92,0.938,1.485,0.778,1.368,0.641,1.042,1.096,0.661,1.534 +NM_014185,0.762,1.029,0.958,0.76,0.841,1.107,0.844,0.795,0.951,1.002,0.935,1.043,0.704,0.64,0.804,1.394,0.85,0.983,1.015,0.804,0.775,0.759,1.081,0.998,0.955,0.883,1.114,0.701,0.668,1.211,0.811,1.27,1.189,1.39,0.609,0.943,1.054,0.87,1.2,0.913,0.907,1.041,0.82,1.044,0.888,0.914,1.035,0.766,0.923,0.93,1.132,0.941,0.887,1.178 +NM_014186,0.625,0.867,1.157,0.759,0.885,1.29,0.605,0.695,1.067,0.879,0.895,1.119,0.849,0.717,0.841,1.208,1.003,0.997,1.294,0.932,0.842,0.886,1.165,1.147,0.7,0.923,1.233,0.744,0.505,1.306,0.831,1.192,1.351,1.435,0.375,1.223,0.878,0.861,1.267,0.66,1.046,1.01,0.756,1.294,1.05,0.805,0.916,0.886,0.908,0.995,0.886,0.861,1.014,1.614 +NM_014187,0.679,1.145,0.796,0.886,0.749,1.129,0.895,0.482,0.682,0.733,1.34,0.646,0.652,0.465,0.829,1.622,0.714,1.072,0.911,1.127,0.594,0.687,1.241,0.8,0.864,0.8,0.639,0.693,0.694,0.837,0.615,1.382,2.358,1.367,0.366,1.08,1.068,0.671,2.004,1.042,0.818,1.402,0.872,1.349,0.889,1.113,1.102,0.848,1.393,0.69,1.17,0.963,0.662,1.697 +NM_014188,0.75,1.301,1.49,0.619,1.042,1.043,0.531,0.649,1.124,1.23,0.994,1.264,0.754,0.651,0.736,1.06,1.084,0.99,1.407,1.005,0.485,1.048,1.135,1.427,0.521,1.061,1.227,1.095,0.426,1.326,0.964,0.954,1.928,1.234,0.46,0.99,1.022,1.278,1.176,0.607,1.432,1.096,0.676,0.995,1.13,0.776,1.235,1.069,0.962,0.893,0.874,0.899,0.982,1.484 +NM_014191,1.017,0.894,1.072,1.093,0.795,1.046,0.885,1.125,1.073,0.9,1.029,0.85,0.951,0.901,1.029,0.934,0.971,0.903,1.026,1.025,1.079,0.997,0.907,0.994,1.074,1.006,1.222,1.127,0.951,1.06,0.99,1.152,1.0,1.058,0.921,1.272,1.143,1.04,1.061,0.973,0.797,0.949,0.891,0.931,0.879,0.943,1.064,0.873,0.965,0.947,0.994,1.073,1.008,1.189 +NM_014203,0.774,1.194,0.906,1.031,1.187,1.116,1.012,0.931,1.069,1.173,0.938,0.985,1.017,0.95,0.974,1.157,0.954,1.079,1.129,0.952,1.129,1.023,1.258,0.966,0.919,0.987,1.025,1.019,1.277,0.972,0.944,1.039,1.023,1.064,1.066,0.999,0.934,1.157,0.991,0.998,1.091,1.039,1.069,1.007,1.087,1.184,1.049,1.017,0.976,0.961,0.987,0.914,0.966,1.041 +NM_014205,0.841,1.084,0.798,0.978,0.973,1.079,0.826,0.747,0.898,1.022,0.861,1.003,1.016,0.762,1.073,1.187,1.036,0.903,1.099,0.981,0.955,1.031,1.113,1.027,1.079,0.974,0.945,0.827,0.947,1.041,0.922,1.234,1.853,1.078,0.721,1.119,0.971,0.857,1.393,1.068,0.826,1.002,0.836,1.55,1.011,0.889,0.885,0.978,0.983,1.067,1.118,0.722,1.041,1.232 +NM_014207,1.022,1.151,1.191,1.042,0.931,0.96,1.0,1.012,0.997,1.023,0.722,0.859,1.056,0.95,0.778,1.164,1.136,0.934,0.901,0.828,0.956,1.015,1.064,0.889,0.976,0.918,1.196,0.914,1.18,1.022,0.981,1.078,0.963,1.114,0.802,1.128,0.912,0.93,1.126,1.089,0.946,0.877,1.099,0.966,1.092,0.941,1.008,0.994,0.98,1.018,0.913,0.932,1.144,1.168 +NM_014208,1.127,0.894,0.922,1.108,1.022,1.08,1.007,0.954,0.786,1.007,1.058,0.999,0.976,1.007,1.025,1.071,0.928,1.007,1.12,1.187,1.118,1.031,1.075,1.089,0.957,0.975,0.948,0.95,0.926,0.914,0.915,0.901,1.237,0.903,1.101,0.922,1.026,0.869,0.838,0.865,1.007,0.98,0.911,0.897,1.017,0.879,0.985,1.001,0.96,1.126,1.003,0.908,1.113,1.055 +NM_014210,0.923,1.156,1.243,1.056,1.09,1.051,1.027,0.883,0.944,1.015,0.956,1.074,0.995,0.847,0.98,0.925,0.884,0.989,0.882,0.943,0.929,0.966,0.926,1.046,0.907,0.89,1.119,1.022,0.99,0.966,1.072,1.008,1.069,1.087,0.984,0.915,0.953,1.048,1.026,1.225,1.072,0.949,0.891,0.802,1.05,1.072,1.053,0.973,0.902,1.008,0.954,1.01,0.954,1.33 +NM_014211,4.384,0.604,3.768,1.301,0.906,0.404,0.434,0.66,6.938,0.543,1.274,0.853,2.973,2.416,1.588,0.747,0.789,1.533,0.986,2.488,0.954,1.56,1.237,3.365,0.445,2.804,2.651,4.259,0.364,0.432,3.085,0.409,7.857,0.916,5.035,0.655,0.587,0.729,0.966,0.344,7.158,2.092,1.403,0.805,0.62,0.65,0.917,1.37,0.921,0.639,2.782,4.018,0.813,2.856 +NM_014212,1.024,0.86,1.054,0.838,0.906,1.031,1.015,0.878,1.104,1.006,1.117,0.879,0.857,0.82,0.84,1.007,1.004,0.928,0.976,0.97,0.955,0.861,1.089,0.881,0.985,0.96,0.913,0.959,1.11,1.134,0.954,1.027,1.053,0.941,1.059,1.458,0.99,0.887,1.222,1.257,1.046,1.313,0.934,2.128,0.949,0.908,0.864,0.986,1.001,1.086,1.019,0.959,0.947,1.11 +NM_014213,1.003,1.066,0.925,0.987,1.01,0.957,0.951,0.913,0.961,0.854,0.974,0.904,1.088,1.134,0.875,0.863,0.953,0.872,0.978,0.949,0.918,1.025,1.118,0.992,0.933,1.07,0.955,0.915,0.801,0.993,0.891,1.015,0.985,0.937,0.983,1.044,1.03,1.109,1.075,1.189,1.118,1.036,1.128,0.89,1.008,0.965,0.928,1.048,0.894,0.921,1.069,0.895,0.995,1.037 +NM_014214,1.707,1.39,1.813,0.756,1.814,1.044,0.464,1.246,1.855,2.039,0.604,2.38,1.519,1.374,1.39,1.285,1.133,1.004,2.254,0.889,1.563,2.054,0.86,2.244,0.512,1.65,1.25,2.376,0.421,0.938,1.931,0.885,0.717,1.707,0.997,0.258,0.957,3.262,1.093,0.294,1.909,0.801,0.613,0.931,1.496,0.684,0.9,1.784,0.428,1.306,1.014,0.286,1.303,0.576 +NM_014215,1.002,1.014,0.929,0.919,1.016,0.989,1.031,0.88,1.02,1.022,1.014,1.056,1.093,0.723,0.762,0.906,1.049,1.019,1.078,0.985,0.836,0.94,0.921,1.033,0.988,1.07,0.9,0.944,0.847,0.946,1.098,1.043,1.063,0.912,0.985,0.972,1.055,1.037,1.096,0.994,0.831,0.831,0.824,1.022,1.13,0.982,1.128,1.009,1.025,1.167,0.935,1.068,1.116,1.119 +NM_014216,0.574,1.163,0.619,0.923,0.541,2.257,0.763,0.489,0.611,0.57,1.754,0.596,0.616,0.521,0.931,2.566,0.627,0.873,0.735,1.056,0.667,0.696,1.996,0.694,0.871,0.614,0.627,0.514,1.07,1.624,0.531,1.494,1.098,1.39,0.433,1.409,1.646,0.639,1.956,1.144,0.683,1.96,1.374,2.228,0.659,1.318,1.496,0.676,1.469,0.629,1.414,0.649,0.764,0.865 +NM_014217,0.881,1.191,0.797,1.152,1.03,0.987,1.375,1.114,1.127,0.867,1.013,1.047,1.044,1.089,1.058,1.084,0.952,1.001,1.081,0.944,0.901,0.992,1.02,0.966,1.154,0.926,1.028,0.898,1.251,1.227,0.85,1.134,1.011,1.013,0.981,0.886,1.063,0.977,1.011,1.001,1.124,1.044,0.909,1.087,1.03,0.997,0.758,0.999,0.853,0.854,0.951,0.967,0.929,0.796 +NM_014219,1.027,0.945,0.954,1.05,0.916,0.984,0.837,0.955,0.88,0.927,1.129,1.133,1.152,1.002,1.012,1.09,0.943,0.937,0.949,1.02,0.974,0.883,0.888,0.976,1.073,0.973,1.065,1.062,0.746,1.024,0.925,0.935,0.904,0.874,0.984,0.949,1.127,0.975,0.908,0.918,0.936,0.937,1.17,0.927,0.977,0.939,1.173,0.991,0.826,1.051,1.121,1.101,1.027,1.082 +NM_014220,0.969,0.926,0.945,0.861,0.861,1.631,0.975,1.18,1.082,0.999,1.032,1.001,0.959,0.953,1.159,1.208,0.963,1.169,0.934,1.037,0.926,1.125,0.795,1.105,0.951,0.946,1.104,0.982,0.582,1.036,0.938,1.345,1.236,1.106,0.907,1.002,1.129,1.155,1.419,1.069,0.923,0.987,0.888,0.923,0.951,0.938,0.924,0.972,0.981,1.003,1.232,0.951,0.979,1.289 +NM_014221,0.693,1.175,1.286,0.634,0.849,1.235,0.603,0.919,1.306,0.92,1.448,1.01,0.895,0.975,1.168,2.145,0.784,0.72,1.771,0.822,0.764,0.99,1.172,1.259,0.79,0.815,1.415,1.069,0.463,1.034,1.247,1.443,2.833,1.698,0.377,0.708,1.027,1.083,0.923,0.612,1.129,1.246,0.572,1.016,0.831,0.977,0.915,0.6,0.824,0.725,1.145,0.855,0.937,1.337 +NM_014222,0.499,1.38,1.19,0.603,0.964,1.297,0.699,0.479,0.984,0.962,0.796,1.107,0.632,0.359,1.084,1.693,0.882,1.309,1.053,1.258,0.401,0.786,1.42,1.223,0.695,0.662,1.265,0.939,0.54,1.079,0.819,1.471,1.515,1.349,0.17,0.754,1.145,0.845,1.605,0.647,1.132,1.151,0.806,0.993,1.217,1.131,1.204,0.652,1.534,0.711,1.18,0.916,0.719,1.92 +NM_014223,0.777,1.019,1.365,0.69,0.861,1.131,0.741,0.641,1.029,0.826,1.055,0.964,0.662,0.725,0.935,1.246,0.896,0.806,1.261,0.932,0.59,0.952,0.939,1.016,0.777,0.919,1.103,0.962,0.555,1.305,0.832,1.672,2.029,1.406,0.303,0.895,0.849,0.852,1.421,0.63,1.081,1.104,0.739,1.588,1.109,0.66,0.79,0.882,0.759,0.866,1.029,0.701,0.988,1.538 +NM_014224,0.955,467.4,0.9,1.212,1.031,35.95,113.4,0.832,2.707,1.636,0.851,0.856,1.051,0.741,1.893,0.87,1.578,1.751,0.938,8.629,0.995,1.718,0.874,2.542,402.5,0.966,1.84,1.188,18.51,151.0,1.0,1.53,0.841,227.1,0.999,1.037,203.4,0.987,0.936,0.879,0.946,0.817,1.197,0.878,0.981,0.888,1.059,0.924,0.959,1.067,0.955,0.961,0.961,0.867 +NM_014225,1.12,0.668,1.109,0.8,0.941,0.962,0.549,0.841,1.218,0.946,1.15,0.974,0.798,0.74,1.054,1.953,0.684,0.821,1.704,1.127,0.703,0.962,1.392,1.123,0.601,1.422,0.95,1.16,0.351,0.772,1.188,0.774,2.681,1.267,0.65,0.913,1.02,0.855,1.459,0.992,0.895,1.126,0.651,1.258,1.306,1.003,0.93,1.45,0.933,1.277,1.122,0.815,1.281,1.295 +NM_014226,0.587,1.579,0.678,0.703,0.595,1.405,0.942,0.444,0.595,0.845,1.949,0.526,0.504,0.508,1.146,2.763,0.637,0.465,0.734,1.495,0.485,0.549,3.437,1.032,0.692,0.535,0.583,0.631,0.577,1.988,0.685,2.343,1.08,1.952,0.463,0.529,1.824,0.517,2.368,0.585,0.814,1.804,1.465,5.041,0.568,1.122,0.895,0.498,1.631,0.529,1.5,0.776,0.546,1.222 +NM_014227,1.012,1.037,1.008,1.1,0.965,1.002,0.878,0.859,1.091,0.872,0.903,0.947,1.005,0.925,0.943,0.801,0.962,1.049,1.0,1.013,0.917,0.912,1.195,1.119,1.062,1.155,1.056,0.934,0.705,0.967,1.023,0.908,1.034,0.882,0.971,0.867,0.974,1.049,0.962,0.885,1.099,0.991,1.071,1.057,1.109,0.871,1.042,0.986,0.881,1.085,0.997,1.039,1.124,1.076 +NM_014228,1.072,1.073,1.109,1.076,1.092,0.945,0.99,1.142,0.836,1.034,1.072,1.004,0.887,0.994,1.032,1.004,0.954,1.009,0.836,0.977,1.039,0.994,0.869,0.829,0.898,1.239,1.144,0.967,1.055,0.95,1.089,1.028,0.95,1.048,1.055,0.981,0.972,0.999,0.941,0.968,1.066,0.96,1.368,1.026,0.98,1.101,1.061,0.908,0.954,0.869,1.038,0.856,1.008,0.951 +NM_014229,1.093,0.968,0.983,0.879,1.135,0.952,0.881,1.018,0.973,1.198,1.019,1.229,1.008,0.935,1.174,0.849,1.008,1.135,1.171,0.958,1.135,0.866,1.006,1.001,1.063,1.029,0.929,1.128,0.847,1.083,0.939,1.089,0.886,0.916,0.914,0.992,0.999,1.086,1.077,1.017,1.019,0.892,1.105,0.977,0.918,0.746,0.933,0.967,1.052,1.172,1.019,1.038,0.937,0.948 +NM_014230,0.913,0.768,1.608,0.745,1.19,0.82,0.519,0.624,1.85,1.197,0.652,1.002,0.734,0.864,1.013,0.941,1.061,0.947,1.883,0.603,0.998,1.135,0.909,1.407,0.554,1.206,1.495,1.041,0.383,0.87,1.138,1.097,1.344,1.049,0.514,0.675,0.832,1.104,1.207,0.556,1.456,0.93,0.417,1.362,1.186,0.66,1.053,1.068,0.712,1.044,0.847,0.739,1.207,1.069 +NM_014232,0.893,0.931,1.182,0.921,0.891,1.089,1.002,1.038,0.973,0.919,0.941,0.974,0.926,0.943,0.945,1.234,0.985,0.959,0.882,1.159,0.854,1.097,0.931,0.984,1.212,1.0,1.025,0.897,0.793,1.125,1.052,1.611,1.039,1.752,0.832,0.812,0.916,1.202,1.233,1.016,0.896,1.341,0.796,0.936,0.871,0.857,0.867,1.226,0.775,1.016,0.975,0.881,1.06,1.065 +NM_014233,0.974,1.099,1.002,0.751,0.915,0.951,0.658,0.821,0.967,0.96,1.024,0.938,0.891,0.729,0.956,0.961,1.01,0.888,1.124,0.831,1.133,1.144,1.013,0.944,1.053,1.086,1.05,0.976,0.611,0.978,1.076,1.266,1.159,1.021,0.605,0.848,0.943,0.944,1.331,1.03,1.032,1.118,0.617,1.52,1.156,0.705,0.813,1.083,0.975,0.989,1.159,0.96,0.971,1.117 +NM_014235,1.059,1.13,0.948,1.132,0.92,1.071,1.017,0.767,0.951,1.196,1.104,1.104,0.999,1.009,0.844,1.097,1.032,1.015,1.123,0.886,1.017,1.012,0.907,0.969,0.954,0.887,1.025,0.991,0.955,1.044,1.023,1.096,1.003,0.983,1.055,1.15,1.079,0.884,0.994,0.937,0.932,0.853,1.066,1.084,0.978,0.894,0.986,1.134,1.013,0.837,0.796,1.257,0.901,1.119 +NM_014236,0.566,1.642,1.167,0.713,0.775,1.545,0.667,0.576,1.096,0.821,1.418,0.949,0.788,0.543,1.047,2.355,0.689,0.989,0.841,1.287,0.37,0.789,1.596,1.011,0.623,0.629,1.106,0.789,0.514,1.621,0.862,1.362,3.572,1.725,0.225,0.859,1.618,0.984,1.462,0.91,0.836,1.381,0.789,1.157,0.785,1.181,0.91,0.646,1.25,0.629,1.359,0.718,0.621,1.595 +NM_014237,0.973,0.862,0.887,1.014,1.048,1.146,0.902,0.863,1.053,1.108,0.982,1.026,0.908,0.93,1.01,1.079,1.045,1.163,1.099,0.955,0.94,0.952,1.15,1.037,0.989,1.043,1.001,1.047,0.889,0.98,1.062,0.995,1.25,0.991,1.083,0.926,0.916,0.933,1.096,1.015,1.003,0.984,0.846,0.994,0.93,0.933,1.078,1.179,0.996,1.024,1.01,0.965,0.982,1.087 +NM_014239,0.624,0.798,0.964,0.782,0.849,1.115,0.618,0.76,1.01,1.454,0.995,0.977,0.716,0.676,1.307,2.285,0.855,0.939,1.394,0.897,0.675,0.789,1.334,1.559,0.535,0.861,1.208,0.916,0.644,1.053,1.054,0.945,2.011,1.173,0.439,0.831,1.06,1.005,1.62,0.925,1.43,0.972,0.675,1.939,1.008,0.974,1.201,0.821,0.921,0.854,1.034,0.797,1.228,1.71 +NM_014240,1.137,1.132,0.962,1.06,1.078,0.858,0.929,0.82,1.105,0.959,0.883,0.974,1.061,1.023,0.79,1.015,1.002,1.017,0.961,0.945,0.952,1.015,0.816,0.894,1.132,0.863,0.959,0.859,0.73,1.063,0.856,1.082,0.961,0.927,0.981,0.819,1.062,0.947,0.972,0.909,1.026,1.038,0.983,1.017,1.084,0.943,1.003,0.911,1.048,0.941,0.917,0.917,0.841,1.015 +NM_014241,0.964,1.155,1.409,0.92,0.983,0.731,0.752,0.97,1.277,1.029,1.119,1.057,1.009,0.814,1.053,1.012,1.32,0.888,1.741,0.643,0.833,1.043,0.866,1.648,1.086,1.194,2.279,1.005,0.841,0.811,1.204,1.573,3.503,1.177,0.745,0.806,0.893,1.123,0.826,0.77,1.24,0.701,0.772,1.136,1.122,0.781,1.284,1.179,0.781,1.139,0.945,1.268,1.417,2.0 +NM_014242,0.902,1.026,1.018,0.854,0.936,0.99,1.012,1.015,1.112,1.026,0.945,1.009,0.916,0.873,0.937,1.074,0.929,1.184,1.121,0.998,0.988,0.909,1.024,1.073,0.889,0.887,0.975,1.049,0.994,1.123,1.002,1.008,0.939,1.022,1.207,1.12,1.082,0.902,1.106,0.896,1.097,0.924,1.068,0.831,0.985,1.095,1.003,0.883,0.843,0.908,0.949,1.032,1.069,1.172 +NM_014243,0.976,0.989,0.958,0.941,1.018,0.933,0.953,0.964,1.033,1.007,1.113,1.047,0.929,0.909,0.813,0.985,1.035,1.017,1.013,0.959,0.989,0.977,0.898,0.963,0.973,1.019,0.93,0.962,0.771,1.048,1.08,1.194,0.866,1.014,0.855,0.966,1.054,1.06,1.078,1.199,1.13,0.927,1.022,0.919,1.066,0.933,1.045,1.034,1.052,0.965,1.079,0.984,1.001,0.897 +NM_014244,0.905,1.113,0.89,1.115,0.982,0.978,1.109,1.027,1.108,1.007,1.063,0.884,1.004,1.001,0.904,1.019,0.933,0.948,1.11,0.956,0.972,0.82,1.083,0.883,1.041,0.905,0.952,1.028,1.0,1.085,0.961,1.368,1.068,1.001,0.974,1.111,0.916,0.935,1.051,1.14,1.007,0.914,0.869,1.144,0.936,1.118,0.886,0.947,1.003,0.913,1.02,1.048,1.043,0.936 +NM_014246,0.943,1.089,1.016,1.099,1.096,0.998,0.841,0.93,0.958,1.012,0.958,1.014,1.032,1.094,0.86,1.009,0.949,1.13,1.003,1.004,0.967,0.89,0.966,1.182,0.978,1.094,0.905,0.975,0.992,0.95,0.988,0.989,1.175,0.969,1.032,1.094,0.921,0.879,0.989,0.968,1.13,1.05,0.968,1.035,1.161,1.075,1.016,1.137,0.837,1.02,0.978,0.91,0.921,1.094 +NM_014247,0.654,1.145,0.917,0.827,0.801,1.653,0.941,0.72,0.917,0.734,1.002,0.695,0.577,0.732,1.173,1.424,0.77,0.864,0.732,1.222,0.586,0.872,0.901,0.814,0.782,0.57,1.094,0.779,0.681,1.393,0.998,1.742,1.588,1.303,0.719,0.61,1.217,0.817,1.275,1.179,0.941,1.481,1.019,0.85,0.788,1.346,0.982,0.721,1.25,0.766,1.113,0.902,0.582,1.517 +NM_014248,0.709,0.918,1.21,0.764,1.128,0.895,0.386,0.533,1.51,1.305,0.893,0.885,0.738,0.706,0.784,1.52,0.981,1.276,1.826,0.98,0.655,1.099,0.885,1.365,0.502,1.045,1.476,1.093,0.37,1.1,0.937,1.013,1.336,1.241,0.161,0.81,1.118,1.275,1.067,0.599,1.352,0.811,0.605,0.878,1.171,0.908,1.068,0.92,0.723,0.734,0.888,0.851,1.081,1.38 +NM_014249,1.016,1.111,0.945,1.04,1.153,0.949,1.074,1.08,0.842,1.121,1.011,1.018,0.984,0.819,0.953,1.074,1.081,0.962,0.901,1.003,0.947,0.986,0.896,0.86,1.043,1.099,0.96,1.025,1.031,0.936,1.003,1.058,0.987,0.973,1.009,0.986,0.862,0.937,1.046,0.933,0.914,1.044,1.12,1.012,1.09,1.028,0.975,1.039,0.993,0.987,1.063,1.091,0.858,1.169 +NM_014251,0.528,0.801,0.964,0.72,0.69,1.01,0.666,0.53,0.996,0.901,0.824,0.92,0.601,0.562,0.911,2.391,0.696,1.089,0.756,1.123,0.416,0.78,1.977,1.025,0.547,0.587,1.05,0.619,0.665,1.875,0.855,1.669,2.076,1.517,0.286,0.563,1.126,0.769,1.478,0.854,0.86,1.201,0.618,1.463,0.683,1.322,1.255,0.828,1.554,0.831,1.286,1.423,0.607,1.497 +NM_014252,1.024,0.77,0.904,0.708,0.898,1.165,0.903,0.667,1.009,0.677,1.027,0.729,0.693,0.785,1.082,2.8,0.971,0.794,0.848,1.619,0.531,0.759,1.26,0.919,0.686,0.847,0.868,0.844,0.659,1.163,0.727,1.259,1.27,1.313,0.549,1.198,1.422,0.708,1.612,1.728,0.943,1.145,0.794,1.281,0.975,1.106,0.816,0.604,1.133,0.985,1.038,0.927,0.946,1.993 +NM_014253,1.094,0.941,1.216,0.917,1.175,0.935,1.242,1.007,1.022,0.844,1.088,0.966,0.944,1.219,0.964,1.135,1.049,0.993,0.951,0.885,0.971,0.93,0.994,0.963,0.947,0.984,0.975,1.057,1.416,1.025,1.012,0.983,0.943,1.03,1.058,1.099,1.023,0.885,1.002,1.002,1.024,1.008,1.19,0.962,1.044,0.823,0.856,0.984,1.261,0.941,0.893,0.799,0.865,0.793 +NM_014254,0.711,0.856,1.251,0.639,0.768,0.993,0.569,0.579,1.209,1.004,1.272,0.956,0.76,0.824,1.023,1.319,0.852,0.77,1.191,0.971,0.822,0.695,1.331,1.006,0.776,0.726,1.261,0.831,0.472,1.189,0.963,1.813,2.553,1.239,0.362,1.053,1.079,0.909,0.99,1.025,1.102,1.068,0.829,2.145,1.0,1.172,0.903,0.56,0.933,0.73,1.21,1.064,1.106,1.297 +NM_014255,0.442,1.363,0.962,0.697,0.744,1.351,0.788,0.386,0.755,0.763,1.05,0.474,0.595,0.368,0.8,2.153,0.839,0.888,0.877,1.24,0.531,0.732,1.719,0.85,0.66,0.571,1.393,0.6,0.603,1.286,0.759,1.762,1.903,1.808,0.186,1.243,1.078,0.86,2.182,0.92,0.905,1.643,0.597,1.895,0.799,1.016,1.201,0.672,1.33,0.663,1.378,1.012,0.594,2.258 +NM_014256,0.916,1.069,0.815,0.916,0.809,1.714,0.927,0.632,0.971,0.442,1.108,0.725,0.945,0.695,1.005,1.172,1.577,1.02,1.32,0.995,0.704,0.813,1.846,0.49,0.895,1.173,0.728,0.691,1.157,1.472,1.091,0.801,0.625,1.509,1.251,1.166,1.143,0.779,1.339,0.852,0.61,1.213,0.772,1.376,0.595,1.366,0.934,0.931,1.506,0.644,1.231,0.901,0.675,1.328 +NM_014257,1.098,1.104,0.812,0.929,1.169,1.166,0.99,1.285,1.082,1.088,0.932,0.983,1.095,0.832,0.885,0.968,1.03,0.993,1.063,1.041,1.107,1.063,1.249,0.999,0.945,0.863,0.931,0.924,0.925,1.101,1.015,0.939,1.042,1.236,1.152,1.026,1.032,1.021,0.899,0.946,1.049,1.087,1.024,0.952,1.212,0.943,0.954,1.105,1.009,0.874,1.074,0.887,1.032,0.988 +NM_014258,0.856,1.107,1.045,0.848,1.144,1.136,1.062,0.908,0.882,0.805,0.891,1.138,0.941,0.814,0.809,0.941,1.002,1.189,0.871,1.036,0.854,0.895,0.893,0.9,1.281,1.072,0.971,1.06,1.565,1.328,1.011,1.073,0.946,0.955,0.819,1.205,1.034,1.111,1.339,0.908,1.204,0.963,0.781,0.994,0.949,0.902,1.106,0.969,1.03,0.969,1.024,0.926,1.008,1.131 +NM_014260,0.903,1.307,0.878,0.911,0.866,0.712,0.581,0.425,0.989,1.004,1.003,0.69,0.782,0.652,0.748,1.115,0.963,0.959,0.948,0.753,0.727,0.832,1.003,1.05,0.98,1.018,1.082,0.808,0.512,1.085,0.777,1.452,1.932,1.17,0.432,1.311,1.09,0.88,2.011,1.016,1.248,1.003,0.78,1.568,1.038,0.92,1.255,1.29,0.997,0.908,0.954,0.974,0.803,1.212 +NM_014261,1.732,0.912,0.939,0.964,1.454,1.011,0.804,2.106,1.601,1.066,0.641,0.897,1.715,1.0,1.083,0.992,1.393,1.075,1.286,1.01,1.457,2.186,0.893,1.262,0.917,2.274,1.105,1.173,0.736,0.834,1.453,0.879,1.078,1.01,4.145,0.809,1.002,1.986,1.333,0.87,1.189,0.914,0.912,0.956,1.19,0.886,0.973,3.702,0.781,1.361,0.829,0.777,1.114,0.819 +NM_014262,0.456,2.162,0.499,0.88,0.519,1.204,0.999,0.47,0.728,0.491,0.945,0.493,0.593,0.439,0.641,0.848,0.486,0.802,0.442,1.188,0.564,0.506,2.543,0.625,1.352,0.627,0.442,0.695,0.636,2.013,0.56,11.38,1.611,2.804,0.374,0.751,0.949,0.701,1.353,2.659,0.606,3.212,0.903,0.751,0.564,1.359,1.003,0.449,0.723,0.523,1.585,1.215,0.589,2.45 +NM_014264,0.808,0.998,1.141,1.083,0.96,1.029,0.994,0.828,1.113,0.937,0.788,1.089,0.852,0.834,0.86,1.116,0.901,0.9,1.166,0.897,0.829,0.969,1.263,1.433,0.715,0.8,1.948,0.842,0.595,0.969,0.911,1.275,2.333,0.866,0.581,1.156,0.887,0.908,1.502,1.07,1.021,0.792,0.862,1.292,1.025,0.95,1.186,0.826,1.355,0.97,1.105,0.963,1.119,1.729 +NM_014265,1.114,1.049,0.939,1.109,1.087,1.029,0.916,1.146,1.041,0.925,0.948,1.183,0.965,1.027,0.91,1.066,1.003,0.88,0.954,0.998,1.004,0.811,0.917,1.021,1.098,1.009,0.987,1.167,1.068,1.051,0.877,0.892,0.965,0.841,1.154,0.985,1.101,1.001,0.927,0.91,0.929,0.831,1.508,1.06,0.974,0.952,1.06,1.014,0.813,1.019,0.978,1.097,1.269,1.02 +NM_014266,0.773,1.417,1.34,0.725,0.936,1.203,1.568,0.924,0.889,0.912,0.895,0.871,0.932,0.764,0.946,0.84,0.983,0.99,0.824,1.284,0.989,0.785,1.288,0.974,0.948,0.825,0.99,0.951,0.798,1.523,0.814,1.503,1.035,1.413,0.765,0.921,0.91,0.831,1.214,1.374,0.931,1.434,0.886,0.913,1.095,0.878,0.919,0.798,0.719,0.835,0.966,1.182,1.159,2.069 +NM_014267,0.651,0.997,1.125,0.576,1.067,1.164,0.485,0.474,1.371,1.12,1.036,1.186,0.591,0.656,0.822,1.322,0.838,0.838,1.194,0.943,0.481,0.757,0.917,1.259,0.619,0.608,1.775,1.129,0.415,1.548,0.881,1.249,1.762,1.214,0.398,1.998,0.913,1.003,1.767,0.834,1.443,0.896,0.756,0.832,0.753,1.009,1.467,0.511,1.047,0.738,0.878,1.285,1.028,2.09 +NM_014268,0.588,0.986,0.772,1.003,0.493,1.734,1.008,0.375,0.518,0.497,1.247,0.391,0.773,0.402,0.704,1.187,1.225,1.059,0.846,1.089,0.557,0.41,1.407,0.494,1.029,0.476,0.715,0.441,0.713,1.902,0.64,0.993,1.167,1.572,0.432,0.879,1.03,0.507,2.053,0.756,0.518,1.291,0.65,1.17,0.83,1.144,0.925,0.454,0.763,0.69,1.491,0.776,0.626,1.325 +NM_014269,0.989,0.966,1.014,1.011,0.875,1.091,0.754,1.094,0.889,0.905,1.026,1.002,1.055,1.008,0.933,0.951,1.025,1.048,1.059,0.907,1.062,1.054,1.284,1.005,1.005,0.943,1.075,0.887,0.783,1.001,0.955,0.938,0.999,0.847,1.186,0.979,0.983,0.982,0.931,1.049,0.8,0.977,0.833,1.024,0.949,1.14,1.091,0.795,1.094,0.993,0.967,0.789,1.019,0.938 +NM_014270,0.888,1.02,0.923,1.466,1.003,2.376,0.926,1.047,0.919,0.964,6.438,0.966,1.015,0.872,8.793,21.06,0.949,0.897,1.052,1.434,0.85,0.984,1.582,0.787,0.968,0.922,0.687,0.941,0.751,1.529,1.104,0.968,1.188,0.997,0.931,2.722,16.33,0.768,1.145,1.116,0.993,4.532,5.512,0.88,0.829,7.575,8.06,0.824,3.823,0.794,5.849,1.15,0.799,3.267 +NM_014271,1.017,1.09,0.999,0.972,0.952,1.06,0.978,1.019,0.919,0.909,0.997,1.193,1.033,1.223,1.291,1.012,0.951,1.075,1.092,0.899,1.087,0.975,0.884,1.047,0.941,0.905,0.895,1.063,1.073,1.076,0.972,1.035,0.911,0.901,1.096,1.022,1.061,1.012,0.934,0.964,0.932,0.956,0.84,0.951,0.956,0.928,1.018,1.151,0.943,1.046,1.139,0.997,0.902,0.893 +NM_014272,0.937,1.027,0.931,0.917,1.081,0.944,1.028,0.915,1.033,1.149,1.137,1.152,1.027,0.857,0.979,0.942,1.03,1.05,0.933,0.88,1.049,1.129,0.956,0.958,0.944,0.921,0.955,1.069,1.013,1.049,1.039,0.887,1.146,1.058,1.108,0.989,1.042,1.011,0.965,1.025,0.942,0.88,0.944,0.965,1.156,0.95,1.001,1.039,0.902,0.926,0.936,0.906,0.941,0.968 +NM_014273,0.978,1.009,1.008,1.085,0.994,1.062,1.027,1.193,1.127,1.086,0.978,0.933,1.036,1.0,0.899,0.841,1.175,0.98,1.118,0.882,1.0,0.893,1.084,0.999,1.04,1.106,1.037,0.902,0.882,1.035,1.047,0.98,0.972,0.993,0.928,1.171,1.085,1.018,1.036,1.036,0.978,1.12,1.149,1.056,1.062,0.877,0.99,0.964,1.088,0.884,1.072,1.148,1.046,0.911 +NM_014275,1.392,2.154,1.926,1.801,1.367,3.1799999999999997,1.7800000000000002,1.288,1.621,1.537,2.628,1.438,1.359,1.506,2.355,5.226999999999999,1.397,1.85,1.923,2.645,1.216,1.385,3.1950000000000003,1.694,1.601,1.46,2.001,1.437,2.099,3.1420000000000003,1.615,3.108,4.12,3.01,1.2040000000000002,1.756,2.971,1.5939999999999999,3.784,1.6640000000000001,1.6400000000000001,2.8099999999999996,1.948,3.08,1.647,2.589,2.646,1.491,2.461,1.484,2.681,1.826,1.48,4.215 +NM_014276,1.125,1.142,1.229,1.05,1.082,0.899,1.161,1.078,1.072,0.806,0.873,1.023,1.216,0.941,0.871,0.96,1.014,0.966,0.936,0.99,1.094,1.066,1.072,1.053,0.9,1.063,1.193,1.11,0.937,0.865,0.919,0.877,1.047,1.207,1.001,0.804,0.958,0.955,0.993,1.005,1.121,1.082,0.911,1.052,1.164,1.085,1.102,0.951,0.924,1.006,0.978,1.005,1.219,1.057 +NM_014278,1.21,0.69,2.029,0.894,1.691,0.691,0.833,0.945,2.021,1.6,0.996,1.439,1.035,1.004,1.266,1.306,1.07,1.146,1.716,0.77,1.11,0.936,0.841,1.745,0.83,1.177,1.639,1.251,0.677,0.863,1.495,0.665,1.524,0.832,0.639,0.562,0.74,1.32,0.896,0.592,1.509,0.817,0.674,0.78,1.639,0.807,1.316,1.085,1.017,1.322,1.019,0.978,2.104,1.012 +NM_014280,0.762,1.129,0.958,0.774,0.846,1.193,0.594,0.459,0.925,0.949,0.942,0.943,0.776,0.556,0.804,1.5,0.83,0.915,0.921,0.924,0.567,0.888,1.406,1.049,0.835,1.002,1.14,0.836,0.578,1.293,0.743,1.488,0.9,1.373,0.364,0.932,1.036,0.86,1.876,1.111,1.101,1.056,0.636,2.008,1.087,0.852,0.864,1.02,0.788,0.802,1.06,0.909,0.99,1.877 +NM_014281,0.592,1.091,1.07,0.747,0.888,0.841,0.666,0.251,1.148,1.297,0.774,0.694,0.443,0.495,0.647,1.097,0.851,0.93,0.961,1.128,0.45,0.596,1.258,0.937,0.593,0.901,1.126,0.904,0.442,1.194,0.727,1.641,1.771,1.063,0.174,1.675,0.908,0.678,1.601,1.732,1.094,1.096,0.807,1.799,1.421,1.253,1.143,0.734,1.381,0.855,0.969,0.968,1.125,1.174 +NM_014282,0.818,1.289,0.926,0.93,0.905,1.051,0.843,0.88,0.973,0.805,1.111,1.017,0.821,0.824,0.78,0.871,0.819,0.868,0.968,1.099,0.937,0.888,1.366,1.025,1.13,0.836,0.847,0.919,0.679,1.31,0.867,2.159,1.071,1.194,0.786,0.858,0.997,0.978,1.26,1.205,1.09,1.199,0.932,2.48,0.884,0.965,1.007,0.843,0.943,0.829,0.943,0.85,0.904,1.182 +NM_014283,2.09,2.121,2.097,2.067,1.8239999999999998,2.008,1.6469999999999998,1.9689999999999999,2.01,2.137,2.229,2.088,1.998,2.1710000000000003,1.754,2.106,2.024,2.069,2.0620000000000003,2.076,1.8119999999999998,2.178,2.093,1.9329999999999998,1.8199999999999998,2.0389999999999997,2.118,2.096,2.122,1.984,2.208,2.2009999999999996,2.518,2.093,2.115,1.926,2.1260000000000003,1.987,2.226,2.226,2.237,2.197,2.246,2.168,1.982,2.303,2.1109999999999998,1.8780000000000001,2.0140000000000002,2.152,1.871,1.966,1.677,2.173 +NM_014284,0.932,0.97,1.02,1.062,1.112,0.887,0.808,0.778,0.869,0.907,0.944,0.883,0.758,0.927,0.863,1.095,1.073,1.054,1.112,0.962,1.078,1.229,1.059,1.192,1.096,0.954,1.105,0.923,0.655,0.883,0.84,1.351,1.652,0.925,0.861,0.938,0.982,1.054,1.331,0.913,0.852,1.049,1.064,1.63,0.93,0.983,0.911,0.984,0.991,1.008,1.047,0.972,1.134,1.406 +NM_014286,1.047,0.837,1.108,0.809,1.043,0.801,0.725,0.912,1.202,1.18,0.805,1.126,0.986,0.894,0.935,0.753,1.032,0.979,1.279,0.769,1.187,1.28,0.903,1.318,0.709,1.235,1.108,1.161,0.822,0.811,1.196,1.775,1.81,0.98,0.692,0.844,0.668,1.259,1.012,1.067,1.464,1.067,0.692,1.045,1.308,0.739,0.92,1.086,0.803,1.235,1.007,1.227,1.202,1.666 +NM_014288,0.66,1.277,1.191,0.765,1.006,1.324,0.877,0.883,1.248,0.919,1.047,1.334,1.057,0.76,1.11,2.139,0.854,1.055,1.029,0.935,0.646,0.982,1.284,1.304,0.707,0.715,1.676,0.959,0.63,1.179,0.955,1.511,3.301,1.173,0.491,0.797,1.118,1.253,1.697,0.704,1.162,0.957,0.747,1.4,1.104,0.881,0.96,0.882,0.994,0.854,1.085,1.201,0.702,1.872 +NM_014289,0.941,1.012,1.252,0.976,0.908,1.524,0.911,0.884,0.989,1.263,1.214,0.98,0.822,0.769,0.817,1.027,0.98,0.898,0.998,1.003,0.894,0.716,1.612,0.983,1.092,0.943,1.208,0.995,0.632,1.812,0.993,1.362,1.082,1.745,1.109,0.905,1.056,1.002,1.153,0.817,0.937,1.304,1.09,0.99,0.937,0.816,0.948,0.912,0.908,0.951,1.548,0.731,1.029,0.94 +NM_014290,0.729,0.997,1.414,0.832,0.849,1.675,0.982,0.551,0.932,0.82,2.356,0.658,0.581,0.88,1.622,3.803,1.003,1.014,1.288,1.427,0.676,1.076,1.29,0.965,0.592,0.795,1.07,0.78,0.779,1.166,0.795,1.305,1.522,1.272,0.466,0.524,2.167,0.905,1.624,0.648,0.905,1.399,1.137,1.029,0.807,1.713,0.912,0.723,1.534,0.791,1.416,0.758,0.96,1.412 +NM_014291,1.007,1.09,1.109,0.899,1.311,0.95,0.759,0.963,1.414,1.169,0.82,1.16,1.155,0.779,1.014,1.474,1.147,1.112,1.42,0.948,0.807,1.404,1.265,1.295,0.755,1.039,1.139,1.232,0.769,1.049,1.205,0.867,2.217,0.959,1.605,0.738,0.832,1.425,1.267,0.705,1.047,0.931,0.818,1.025,0.973,0.805,0.94,1.468,1.043,1.028,0.819,0.803,0.826,0.919 +NM_014292,0.6,1.89,0.698,0.553,0.669,1.544,1.192,0.501,1.345,1.114,0.683,0.404,0.678,0.693,0.579,0.616,0.583,1.245,0.786,1.054,0.555,0.729,1.699,1.195,0.808,0.654,1.279,1.042,1.021,2.073,1.277,2.797,2.633,2.223,0.394,0.457,1.101,0.887,3.038,1.541,1.252,1.747,0.422,1.749,0.573,0.661,0.867,0.796,0.388,0.555,1.602,0.928,0.739,3.659 +NM_014294,0.493,1.116,0.914,0.775,0.611,1.502,0.873,0.477,0.753,0.646,1.746,0.781,0.613,0.544,0.792,1.614,0.445,1.025,0.987,1.011,0.291,0.546,1.187,0.71,0.967,0.482,0.872,0.674,0.407,1.513,0.579,1.704,1.753,1.551,0.0998,1.202,1.624,0.563,1.194,1.953,0.736,1.262,0.685,1.467,0.689,1.612,0.896,0.547,1.218,0.552,1.231,1.186,0.706,1.346 +NM_014296,0.988,1.155,1.154,0.906,1.066,1.071,0.762,0.811,1.105,1.151,0.945,0.891,0.923,0.97,0.904,1.148,1.072,0.846,1.048,0.992,0.938,0.848,1.191,1.122,0.939,0.867,1.252,0.929,0.772,1.094,1.079,1.042,1.297,1.098,0.757,0.886,1.043,0.912,1.079,0.783,1.083,1.05,0.882,0.906,0.959,1.207,0.929,0.956,1.06,0.909,0.991,0.82,0.762,1.192 +NM_014297,0.72,0.638,1.228,0.881,0.539,1.727,0.406,0.682,0.974,0.728,3.376,0.668,1.03,0.757,1.61,4.245,1.272,0.869,1.602,2.231,0.473,0.744,3.092,1.011,0.339,0.941,0.885,0.749,0.288,1.415,1.09,0.353,0.876,1.049,1.752,0.959,2.363,0.633,1.332,0.534,0.993,1.805,1.526,0.661,0.95,2.2,1.301,1.054,1.601,0.927,1.528,0.792,1.06,1.228 +NM_014298,1.041,1.011,0.891,0.921,0.886,0.869,0.966,0.8,0.925,1.014,0.944,1.08,0.93,0.999,1.023,1.164,0.912,1.085,0.978,1.063,0.899,0.952,0.947,0.86,0.982,0.999,1.018,1.009,0.91,1.057,1.062,1.792,1.272,0.967,0.97,0.967,1.012,1.039,0.993,1.797,1.061,0.863,0.844,1.129,0.982,1.072,1.503,1.041,0.864,0.965,0.894,0.977,1.002,2.965 +NM_014299,1.028,0.968,1.099,1.154,0.925,1.09,0.982,1.085,1.0,1.048,0.961,0.978,0.943,0.911,0.962,0.881,1.055,1.152,0.986,1.05,1.031,1.043,0.988,1.062,0.881,1.044,0.927,1.185,1.094,0.985,1.122,0.925,1.079,0.937,1.125,0.979,0.999,1.096,0.926,0.961,1.086,0.908,0.989,0.987,1.094,0.966,1.119,1.027,0.997,0.98,0.981,1.056,1.011,1.043 +NM_014300,0.58,1.123,0.99,0.673,0.817,1.126,0.758,0.405,0.979,0.983,0.988,0.817,0.613,0.416,0.752,1.388,0.709,0.958,0.975,1.112,0.4,0.732,1.904,0.932,0.605,0.767,1.124,0.835,0.387,1.196,0.724,1.379,1.251,1.308,0.127,1.717,1.175,0.84,1.683,0.888,1.015,1.26,0.67,1.041,0.931,0.952,0.988,0.636,1.14,0.839,1.224,0.95,0.77,1.412 +NM_014301,0.545,0.973,1.186,0.766,0.678,1.157,0.594,0.447,0.993,0.914,1.399,0.912,0.564,0.686,0.975,1.502,0.932,0.653,1.003,1.279,0.369,0.514,1.224,0.928,0.865,0.638,0.968,0.859,0.292,1.21,0.877,2.066,1.509,1.893,0.343,1.034,0.98,0.766,1.101,0.885,1.003,1.311,0.639,0.563,0.86,1.088,0.83,0.459,0.936,0.65,1.048,0.876,1.027,2.889 +NM_014302,0.418,0.611,1.051,0.615,0.692,1.367,0.641,0.494,1.151,0.693,0.906,0.643,0.437,0.42,0.862,2.257,0.596,0.91,1.358,1.072,0.505,0.654,1.529,0.971,0.489,0.645,1.294,0.895,0.417,1.787,0.786,1.244,2.133,1.55,0.157,1.174,0.805,0.732,1.067,0.738,0.951,1.081,0.497,1.145,0.967,1.124,1.196,0.572,1.309,0.679,1.317,1.008,0.811,1.682 +NM_014303,0.79,1.065,0.984,0.719,1.142,0.838,0.609,0.523,1.082,1.335,0.88,1.13,0.722,0.573,0.63,1.154,0.911,0.94,0.956,0.961,0.696,0.798,1.264,1.276,0.565,0.904,1.016,0.868,0.675,1.018,0.792,1.224,1.025,0.894,0.35,1.486,0.966,0.989,1.42,1.086,1.239,0.938,0.793,1.399,1.193,1.066,1.011,0.748,1.351,0.858,0.979,1.357,0.96,0.892 +NM_014305,0.636,1.071,0.824,0.91,0.677,1.516,0.696,0.597,0.926,0.768,1.287,0.698,0.738,0.604,1.142,1.943,0.608,0.956,0.933,0.943,0.575,0.731,1.284,0.909,0.817,0.658,1.028,0.661,0.697,1.365,0.699,1.26,1.169,1.4,0.482,1.338,1.374,0.565,1.166,1.827,0.782,1.082,0.765,2.108,0.802,1.349,0.993,0.611,0.933,0.663,1.042,0.689,0.783,1.351 +NM_014306,0.638,1.03,0.995,0.959,0.681,1.336,0.684,0.327,1.124,0.98,1.995,0.718,0.547,0.612,1.103,2.411,0.776,1.028,1.049,1.378,0.486,0.703,1.427,0.884,0.772,0.767,1.044,0.749,0.591,1.197,0.726,0.862,1.757,1.732,0.197,0.686,1.559,0.859,1.543,0.684,0.916,1.139,0.842,0.931,1.035,1.718,0.872,0.709,1.158,0.821,1.29,0.915,0.85,1.631 +NM_014308,0.901,1.092,1.001,1.003,1.029,0.913,0.99,0.989,1.017,0.919,0.939,0.95,1.012,1.039,0.853,0.884,1.074,1.031,0.959,0.926,0.878,0.862,0.937,1.038,0.89,0.997,1.04,0.963,0.988,1.037,0.915,1.012,0.889,1.054,1.1,0.956,1.055,0.911,1.027,1.195,0.923,0.857,1.096,1.041,1.028,0.999,1.045,1.018,1.035,0.978,1.004,1.092,0.911,1.066 +NM_014309,0.923,0.914,1.226,0.762,1.012,1.18,0.84,1.109,1.281,1.23,0.89,1.275,0.936,1.014,0.928,1.057,0.95,0.93,1.205,1.049,0.926,1.053,0.988,1.4,0.727,1.023,0.955,1.212,0.783,1.057,1.24,1.145,1.178,1.098,0.736,0.883,0.895,0.972,1.034,0.744,1.291,1.042,1.027,0.866,1.198,0.941,1.018,1.055,0.9,0.812,0.99,0.824,1.076,0.948 +NM_014310,0.953,0.905,0.963,0.896,1.237,1.049,1.056,0.972,1.117,1.04,0.958,0.823,1.049,0.958,1.024,0.912,1.131,0.938,0.951,0.921,0.911,1.144,1.112,1.063,1.101,0.978,1.068,0.974,1.108,0.876,0.924,0.984,0.955,0.989,0.982,0.946,1.009,0.969,1.092,0.953,0.844,1.104,0.984,1.039,0.917,0.824,1.081,1.085,0.972,0.882,1.031,0.94,0.797,1.046 +NM_014312,0.568,6.382,0.319,3.06,0.409,9.79,2.551,0.373,0.4,0.172,4.837,0.289,0.978,0.544,1.283,2.457,0.56,5.883,0.436,2.758,0.283,0.537,1.353,0.414,7.282,0.993,0.298,0.563,6.668,13.95,0.734,1.576,0.302,10.48,1.61,0.914,4.373,0.498,6.016,0.409,0.565,4.521,1.148,0.827,0.329,2.165,0.455,1.007,0.77,0.306,1.753,0.276,0.247,0.31 +NM_014313,0.495,1.021,1.131,0.629,0.713,2.034,0.65,0.605,0.738,0.67,1.116,0.623,0.657,0.603,1.477,2.222,0.8,0.99,1.228,1.102,0.504,0.86,1.428,0.58,0.677,0.662,1.21,0.824,0.601,1.564,0.885,1.253,1.506,1.97,0.24,0.587,1.554,0.679,1.438,0.865,0.927,1.365,0.598,1.0,0.801,1.124,1.153,0.539,1.014,0.688,1.123,0.725,0.886,1.759 +NM_014314,1.02,0.905,1.309,0.99,0.917,0.878,1.117,0.743,0.805,0.824,1.09,0.806,0.902,0.869,1.103,1.066,1.055,1.041,0.803,0.913,0.955,0.763,1.476,0.994,0.905,0.823,1.136,1.106,0.672,0.999,1.037,1.127,1.42,1.446,0.713,0.809,1.096,0.837,1.534,0.952,0.757,1.274,0.729,1.609,0.91,0.802,0.899,0.887,1.137,0.936,0.95,1.012,1.229,2.966 +NM_014315,0.481,1.973,1.376,0.762,0.867,2.098,1.066,0.723,0.993,0.764,1.308,1.074,0.747,0.598,1.214,2.037,0.764,1.431,0.541,2.028,0.272,0.976,1.422,0.989,0.966,0.416,1.139,0.928,0.526,2.043,0.81,1.504,0.702,2.152,0.451,0.644,1.545,1.288,1.224,0.894,0.999,1.498,0.71,0.793,0.681,1.581,1.039,0.669,0.633,0.554,1.262,0.54,0.54,1.526 +NM_014316,1.441,0.453,4.026,0.702,2.41,0.508,0.293,1.65,2.104,1.889,0.423,1.696,1.825,1.277,0.918,0.896,3.016,1.578,2.927,0.661,0.792,1.553,0.515,1.916,0.223,1.856,2.232,2.431,0.156,0.618,1.886,0.878,1.265,0.494,2.983,0.607,0.4,1.464,0.493,1.026,2.966,0.442,0.411,0.739,2.548,0.497,2.993,2.393,0.764,2.769,0.685,1.179,2.111,0.624 +NM_014317,0.704,0.822,0.897,0.849,0.826,1.521,0.755,0.644,1.082,0.977,1.693,0.921,0.737,0.725,1.27,3.569,0.899,0.822,1.174,1.174,0.738,0.825,2.06,1.087,0.646,0.748,1.432,0.825,0.664,1.021,0.805,0.802,2.657,0.975,0.531,0.929,1.953,0.827,1.347,0.826,1.185,1.423,1.299,1.295,0.988,1.936,1.281,0.753,2.293,0.902,1.381,0.903,0.892,1.988 +NM_014319,0.762,0.931,1.069,0.63,1.129,0.943,0.799,0.621,1.049,0.968,0.912,0.795,0.732,0.787,0.805,1.159,0.709,0.886,1.12,0.869,0.666,0.89,1.226,0.965,0.903,0.815,1.245,0.943,0.758,0.936,0.938,1.057,1.313,1.134,0.553,1.205,1.078,0.929,1.127,1.147,0.98,1.033,0.786,1.79,1.088,1.073,0.853,0.812,1.077,0.928,1.012,0.957,0.817,1.558 +NM_014320,1.068,0.696,1.517,0.607,1.54,1.001,0.382,1.41,1.847,0.993,0.793,1.173,1.383,0.822,1.18,1.482,1.274,1.289,1.885,0.764,0.736,1.549,0.892,1.632,0.368,1.491,1.201,2.022,0.378,0.632,1.808,0.456,1.162,1.178,1.573,0.391,0.858,1.811,0.786,0.456,1.432,0.735,0.381,0.612,1.257,0.682,1.283,1.683,0.673,1.138,0.893,0.644,1.025,0.758 +NM_014321,1.15,0.992,0.848,1.04,1.049,1.078,0.999,1.109,0.953,0.832,0.882,0.912,1.126,0.885,1.18,0.934,1.009,1.095,0.862,1.099,1.051,1.035,1.199,1.001,1.058,0.845,1.032,0.978,1.048,0.906,0.863,1.095,1.399,0.995,1.007,1.022,0.976,0.934,1.209,1.028,0.983,0.899,1.274,1.01,0.859,0.803,0.724,0.932,0.868,1.134,0.882,1.033,1.297,1.56 +NM_014322,0.928,1.007,1.067,1.088,0.908,0.887,0.865,0.824,1.261,1.017,1.27,0.898,0.776,1.068,1.092,1.251,0.864,0.846,1.111,1.029,0.882,0.834,0.979,1.0,0.866,0.833,1.048,0.951,0.759,1.075,1.064,1.209,1.062,1.128,0.807,1.077,0.807,0.928,0.94,1.115,1.083,0.951,0.838,1.267,0.864,1.071,1.115,0.815,0.913,0.919,0.893,0.809,1.211,1.086 +NM_014323,1.066,0.976,1.0,0.957,0.935,0.967,1.388,0.96,0.944,0.931,1.036,1.168,0.972,1.015,1.101,0.91,0.913,1.001,1.321,0.911,0.994,0.885,0.844,0.895,0.968,1.02,1.115,1.016,0.809,1.022,1.008,0.902,1.096,1.044,0.945,1.014,1.098,0.938,0.943,0.945,0.941,0.924,1.002,0.822,0.948,0.95,0.997,0.971,0.88,1.057,1.061,0.95,1.031,0.995 +NM_014324,1.115,1.331,0.823,0.778,1.078,1.506,0.522,0.887,1.305,0.956,1.339,1.22,0.833,0.942,1.246,1.442,0.554,0.949,1.106,1.379,0.587,1.317,1.073,1.317,0.773,1.159,0.765,1.573,0.803,1.428,1.314,0.705,0.919,1.338,0.797,1.016,0.939,1.171,0.932,1.235,0.935,1.163,0.822,1.273,0.977,1.342,0.669,1.202,0.961,0.555,1.356,0.712,0.82,0.913 +NM_014325,0.507,0.595,0.89,0.565,0.803,1.132,0.661,0.584,1.04,1.038,1.165,0.879,0.472,0.451,0.79,1.666,0.558,0.739,1.12,0.844,0.647,0.727,1.488,0.984,0.42,0.576,0.958,0.818,0.446,1.067,0.754,1.902,1.677,1.366,0.656,1.404,1.075,1.069,1.071,1.358,1.035,1.13,0.673,0.69,0.937,1.226,0.775,0.571,1.396,0.609,1.096,1.192,1.307,1.242 +NM_014328,0.567,0.895,1.197,0.622,0.954,1.254,0.483,0.716,1.356,1.2,1.064,0.927,0.484,0.853,1.242,1.943,0.856,0.836,1.756,1.043,0.835,0.861,1.411,1.388,0.332,0.695,1.194,0.862,0.443,1.099,1.252,1.706,2.152,1.337,0.311,1.695,1.045,1.023,0.947,0.92,1.217,0.91,0.616,0.833,0.861,1.021,1.029,0.673,0.977,0.634,1.019,0.705,1.136,1.862 +NM_014329,0.694,1.002,1.058,0.725,0.91,0.905,0.648,0.461,1.201,1.225,0.981,0.786,0.487,0.623,0.893,1.144,0.887,1.043,0.836,1.229,0.527,0.806,1.339,0.938,0.657,0.802,1.284,0.701,0.591,0.803,0.705,1.551,1.658,0.973,0.373,1.086,1.107,0.882,1.393,1.1,1.066,1.038,0.886,1.301,0.981,1.132,1.18,0.72,1.245,0.697,1.178,0.997,0.886,2.004 +NM_014330,1.088,0.895,1.329,0.636,2.023,0.754,0.452,2.279,1.777,0.673,0.514,0.879,0.667,1.14,1.009,0.729,2.139,0.674,1.007,1.138,0.4,1.183,0.95,0.852,0.466,0.875,1.291,1.852,0.301,0.843,1.43,1.442,1.829,0.862,3.998,0.779,0.504,1.747,1.175,3.191,1.188,0.733,1.081,0.961,0.92,1.542,1.453,1.702,0.677,0.714,0.607,0.791,0.967,1.362 +NM_014332,0.948,1.156,1.026,0.954,0.986,1.013,0.935,0.978,0.984,1.141,1.057,0.995,1.039,0.882,0.893,1.046,1.034,0.993,0.729,1.059,1.087,0.9,1.061,1.125,0.981,1.07,0.927,1.082,1.091,1.054,1.078,0.978,4.469,0.907,0.971,1.164,1.042,1.066,0.846,1.041,0.975,1.155,1.131,1.031,0.96,1.011,0.982,0.991,0.928,0.961,1.036,0.899,1.186,0.973 +NM_014333,0.949,0.84,0.777,0.813,0.834,0.965,1.236,0.947,0.962,0.976,0.928,0.995,1.452,1.09,1.013,0.771,0.782,0.966,1.048,1.289,0.901,1.327,1.274,0.974,1.039,0.816,1.16,0.985,0.627,1.282,1.451,2.217,1.061,2.224,0.718,0.764,1.005,1.102,0.697,0.875,1.389,1.369,0.895,1.127,1.126,0.791,1.186,0.752,0.79,0.867,1.025,1.137,1.383,0.953 +NM_014335,0.449,1.777,0.994,0.639,0.757,1.284,0.69,0.556,0.859,0.779,1.596,1.0,0.668,0.679,0.771,1.6,0.633,0.882,0.96,1.241,0.479,0.709,1.896,0.777,0.829,0.578,0.969,0.871,0.415,1.533,0.689,1.659,2.086,1.752,0.0915,1.353,1.422,0.873,1.487,0.764,1.096,1.45,0.525,0.57,0.706,1.185,0.981,0.573,0.685,0.502,1.058,1.177,0.866,1.543 +NM_014337,1.959,1.923,2.341,1.9249999999999998,2.074,1.913,1.929,1.798,1.826,1.898,1.897,2.089,1.981,1.9889999999999999,1.932,1.876,2.019,2.1470000000000002,2.27,2.027,1.835,1.8559999999999999,2.123,2.004,2.11,2.096,2.077,1.9929999999999999,1.831,2.079,1.9169999999999998,1.992,2.107,2.346,2.1189999999999998,2.056,1.804,2.051,1.987,2.113,2.152,1.88,1.867,1.9849999999999999,1.994,2.056,1.958,1.995,2.037,1.9209999999999998,2.1029999999999998,1.7850000000000001,1.9489999999999998,1.9889999999999999 +NM_014338,0.91,0.906,1.093,0.904,0.847,0.96,1.019,0.843,1.096,0.928,0.848,0.931,1.006,0.764,1.21,1.204,0.957,0.882,1.12,0.93,0.768,0.968,1.141,0.91,0.859,1.175,1.251,0.813,0.838,1.02,0.943,1.265,1.263,1.206,0.761,0.897,0.855,0.884,1.431,1.171,1.075,0.904,0.877,1.426,1.037,0.889,0.944,1.004,0.913,1.003,0.944,1.035,1.289,1.33 +NM_014341,0.559,1.183,0.908,0.615,0.854,1.571,0.766,0.526,1.122,0.742,1.486,0.89,0.569,0.588,0.918,1.475,0.728,1.088,1.093,0.958,0.604,0.752,1.273,1.182,0.659,0.744,1.074,0.847,0.684,1.792,0.83,1.555,2.051,1.729,0.239,0.833,1.205,0.976,1.185,0.784,1.199,1.15,0.563,0.92,0.759,0.998,1.105,0.696,1.091,0.491,1.044,0.679,0.671,1.477 +NM_014342,0.705,0.907,0.817,0.698,0.771,1.252,0.501,0.454,1.169,1.103,1.388,0.987,0.573,0.573,1.015,2.406,0.635,0.961,1.648,1.181,0.728,0.478,1.638,0.937,0.49,0.933,1.234,0.78,0.386,1.34,0.828,0.665,2.621,1.092,0.209,1.935,1.614,0.777,1.516,0.888,0.965,1.255,1.131,1.296,1.028,1.583,1.077,0.598,1.515,0.781,1.28,0.948,1.123,1.835 +NM_014343,0.524,1.415,0.668,1.49,0.635,1.127,0.594,0.548,0.735,0.633,2.269,0.544,0.426,0.621,6.131,29.81,0.625,0.617,0.573,6.591,0.571,0.534,6.137,0.683,0.744,0.662,0.813,0.624,0.574,1.313,0.608,3.046,0.691,1.215,0.537,0.844,14.81,0.614,2.029,1.24,0.667,2.142,14.26,1.048,0.578,9.065,12.25,0.546,9.134,0.571,4.449,1.071,0.603,1.363 +NM_014344,1.124,0.78,0.971,0.719,1.021,0.839,0.808,1.037,1.02,1.449,0.8,1.058,1.107,0.799,0.792,0.818,1.004,0.868,1.092,0.803,0.873,1.085,0.859,0.982,0.924,1.159,1.141,1.016,0.731,0.892,1.19,1.71,1.287,0.777,0.808,1.051,0.872,0.98,1.18,2.109,0.929,1.037,0.755,1.113,1.233,0.855,1.002,1.152,0.845,1.139,0.947,1.675,1.516,1.532 +NM_014345,0.861,1.068,1.427,0.847,0.767,0.988,0.635,0.737,0.97,0.843,1.006,0.852,0.728,0.897,0.866,1.332,0.93,0.909,0.939,1.032,0.855,0.913,1.203,0.954,0.797,0.912,1.313,0.827,0.636,1.148,0.964,1.391,1.826,1.096,0.614,0.796,1.115,1.01,1.154,1.298,0.973,1.272,0.899,0.979,1.052,0.992,0.952,0.761,1.079,0.876,1.086,0.988,0.874,1.595 +NM_014346,0.632,1.612,1.172,0.658,1.057,1.316,0.769,0.48,1.138,1.069,1.264,0.954,0.548,0.559,0.82,1.416,1.036,1.164,1.093,1.273,0.461,0.828,0.977,1.036,0.714,0.694,1.266,1.078,0.818,1.709,0.787,0.783,0.757,1.396,0.468,0.952,1.075,0.998,0.991,0.847,1.109,1.152,0.922,0.529,1.044,1.11,1.023,0.741,0.757,0.724,0.97,0.648,0.941,0.948 +NM_014347,1.036,0.96,1.078,0.873,0.959,1.087,0.975,0.939,0.989,0.999,0.987,0.974,1.062,1.199,1.004,0.931,0.965,0.975,1.087,0.952,0.925,1.001,1.17,1.024,0.945,1.037,1.171,1.045,0.645,0.909,1.047,1.019,1.164,1.009,1.065,1.021,0.951,1.0,0.951,1.039,0.995,0.964,1.075,1.0,1.043,0.835,0.848,0.926,0.881,1.108,1.094,0.985,1.115,0.894 +NM_014348,1.085,0.915,0.99,1.054,0.978,1.087,0.974,1.018,1.057,0.93,1.046,0.943,1.041,1.17,1.074,1.03,0.996,0.815,1.085,1.307,1.033,1.001,1.011,0.829,1.061,1.123,0.854,0.871,1.09,1.091,1.031,1.077,0.978,0.893,1.021,1.058,1.047,0.884,1.054,1.055,0.943,0.942,1.009,0.92,0.904,1.108,0.889,0.988,0.996,0.9,1.079,1.087,0.95,0.933 +NM_014349,0.966,1.065,0.984,1.043,0.898,1.07,0.992,0.98,0.878,1.017,0.884,1.09,1.018,0.963,0.761,0.902,0.959,0.978,0.956,0.95,1.147,0.915,1.029,1.009,1.065,1.167,0.984,1.044,0.701,1.062,1.105,0.992,0.956,0.891,1.12,0.93,0.968,1.074,0.872,1.056,1.008,1.021,1.13,0.989,1.015,0.966,1.124,1.029,1.042,1.025,0.913,1.038,1.125,0.937 +NM_014350,0.808,1.192,1.311,0.925,0.89,1.268,0.663,0.895,1.143,0.698,0.914,1.227,0.968,0.881,0.908,0.91,0.748,0.934,1.571,0.819,0.71,1.244,0.964,0.947,0.704,1.119,1.815,1.132,0.461,1.401,1.037,0.603,0.802,1.562,0.313,1.055,1.001,0.866,1.236,1.271,1.278,1.264,0.596,0.781,0.968,0.683,0.729,0.892,0.581,1.0,0.776,1.066,1.019,1.316 +NM_014351,0.922,0.959,0.964,1.068,0.979,0.983,0.951,0.914,0.964,0.926,0.997,0.99,0.951,0.939,0.957,1.21,1.019,1.0,0.992,1.019,0.956,0.965,0.982,0.976,0.932,1.169,1.186,0.974,1.117,1.04,1.048,1.038,1.015,1.012,1.083,1.04,0.981,1.071,1.023,0.987,1.091,0.949,1.314,1.011,0.97,0.87,0.956,1.085,1.02,1.03,0.993,0.989,0.954,0.926 +NM_014352,0.993,0.811,1.163,1.016,1.166,1.036,0.754,0.946,1.048,1.164,0.978,0.871,1.256,0.905,0.748,1.157,0.91,1.019,1.427,0.954,1.039,0.974,1.008,1.017,1.057,0.871,1.008,1.007,0.959,0.979,1.062,1.114,0.918,1.035,1.134,1.072,0.922,1.121,1.127,0.778,1.091,0.868,0.937,1.025,1.252,0.961,1.019,0.934,0.98,1.032,1.121,1.126,1.3,0.978 +NM_014353,0.973,1.072,0.946,1.003,0.779,1.526,1.143,0.98,0.88,0.882,1.505,0.873,1.026,1.11,1.106,1.778,1.036,1.062,1.079,1.286,0.82,0.912,1.181,0.968,1.049,0.881,0.847,0.878,0.818,1.551,0.918,1.381,1.402,1.259,0.927,0.839,1.08,0.93,1.021,0.955,0.781,1.531,1.384,0.921,0.844,1.268,1.037,0.845,1.202,0.854,1.384,1.061,0.99,0.849 +NM_014354,1.116,1.006,0.861,1.134,0.866,1.042,0.999,1.037,1.021,1.008,0.996,1.018,1.066,0.836,0.974,0.891,1.114,1.068,0.994,1.045,1.08,1.073,0.989,1.069,0.936,0.891,0.9,0.996,0.829,0.974,0.869,0.847,0.924,1.08,1.064,0.952,1.227,1.082,0.904,1.012,0.934,0.994,1.006,1.014,1.1,1.162,0.871,0.946,0.967,1.079,1.095,1.043,0.998,1.021 +NM_014356,1.044,0.896,0.942,1.064,0.918,0.809,0.805,0.825,0.856,0.967,1.091,1.02,1.026,0.818,1.046,1.004,0.914,0.989,0.936,1.012,0.889,1.008,0.978,0.905,1.035,0.977,0.998,1.028,0.831,1.04,0.966,1.117,0.846,1.029,0.923,0.964,0.966,1.137,1.102,1.13,1.064,1.016,1.038,0.955,0.926,1.024,1.062,1.072,0.902,1.044,0.903,0.962,1.061,0.909 +NM_014357,1.034,0.983,1.148,0.961,1.002,0.994,1.01,0.933,0.97,1.122,1.015,0.922,0.947,1.068,0.941,1.022,1.008,0.993,0.863,0.998,1.099,1.0,1.056,0.963,1.02,1.056,0.989,0.99,0.875,0.854,0.989,1.042,1.029,1.08,1.103,0.994,0.913,1.057,1.135,0.89,1.063,0.865,1.098,0.933,1.187,1.015,1.009,0.883,1.129,1.081,1.202,0.976,0.99,0.953 +NM_014358,0.991,0.903,1.008,0.931,1.023,1.046,0.942,0.898,1.024,0.907,0.942,1.051,0.965,1.019,0.941,1.117,0.985,0.968,1.032,0.95,0.968,1.196,0.89,0.973,0.985,0.999,1.025,1.041,0.761,0.96,1.08,0.958,0.998,1.144,1.055,0.923,1.09,0.897,1.011,0.967,0.978,1.117,0.824,1.008,1.066,1.025,1.044,0.935,0.977,0.999,1.003,0.924,1.131,0.96 +NM_014359,0.93,0.888,1.002,1.04,0.855,1.025,1.0,1.138,0.972,1.102,1.038,1.005,1.022,1.074,1.013,1.107,1.069,1.041,1.042,1.059,1.02,1.034,1.066,0.929,1.029,1.02,1.017,0.925,1.17,0.95,0.993,1.092,1.01,0.977,0.971,1.051,0.939,1.035,0.962,1.014,1.006,1.105,0.941,1.044,0.981,0.987,0.971,0.959,0.992,0.91,1.086,0.961,1.12,0.993 +NM_014360,1.122,0.99,0.851,0.913,1.024,0.924,1.072,1.113,1.003,1.207,0.911,0.832,0.936,0.949,1.125,0.881,0.981,1.041,0.998,1.03,0.932,0.901,0.923,1.043,1.039,0.995,0.936,1.14,0.791,1.003,0.974,1.052,0.974,0.976,1.008,1.021,0.941,1.064,0.98,0.962,1.019,0.984,1.153,1.024,1.05,1.067,1.027,1.083,1.073,0.903,0.912,1.002,0.914,1.091 +NM_014361,0.922,0.967,0.897,0.704,1.005,0.965,0.825,1.142,0.942,1.008,1.128,0.985,0.967,0.953,0.954,0.958,1.05,0.94,1.047,0.944,1.049,0.991,0.865,1.061,1.247,1.094,1.054,0.979,0.799,1.027,1.017,1.076,0.96,1.001,0.837,1.039,1.046,1.05,0.924,1.035,1.099,0.902,0.799,1.07,0.987,0.969,0.945,0.891,1.018,0.938,1.133,0.872,1.087,1.003 +NM_014363,1.096,0.942,0.885,1.033,0.903,1.033,0.945,0.941,0.86,0.91,0.982,1.012,1.093,1.04,0.891,0.991,0.916,0.96,0.873,0.926,0.976,1.051,0.897,0.899,1.026,0.992,1.017,1.016,0.83,0.832,0.981,0.989,1.079,0.85,0.982,1.029,1.014,1.028,1.058,1.017,0.891,0.913,0.954,1.008,0.963,1.05,1.066,1.079,0.878,1.058,1.028,1.033,1.186,0.956 +NM_014364,0.971,0.967,1.173,0.82,1.06,1.01,0.972,1.19,1.197,1.0,0.914,1.228,0.994,1.032,0.845,0.987,1.037,1.095,1.115,0.952,1.074,0.88,0.891,1.037,0.904,1.075,1.193,1.033,0.742,0.9,1.042,0.936,1.067,0.88,1.019,0.755,0.93,1.201,1.061,0.956,1.204,1.085,0.785,1.132,1.079,0.892,1.122,1.002,1.034,1.078,0.938,1.148,1.098,0.85 +NM_014365,2.517,0.588,5.492,0.662,7.09,0.485,0.68,6.344,8.039,3.848,0.464,2.856,3.314,1.911,2.825,1.354,3.684,2.27,2.614,0.571,1.47,4.361,0.619,4.451,0.427,2.327,5.331,5.593,0.43,0.512,6.862,0.86,2.949,0.645,13.27,0.43,0.44,8.046,0.53,0.557,7.553,0.778,0.35,0.373,5.664,0.426,2.647,6.322,0.74,2.451,0.984,1.402,1.638,1.016 +NM_014366,1.09,0.93,1.209,0.743,1.252,0.78,0.455,0.808,2.376,1.152,0.747,1.218,0.955,0.758,1.362,1.118,1.055,0.813,1.683,0.713,0.699,1.193,1.103,1.788,0.663,1.246,1.465,1.294,0.28,0.958,1.389,0.825,1.74,1.041,2.246,1.258,0.774,1.066,1.027,0.886,1.31,0.867,0.694,0.97,1.254,0.766,0.971,1.614,0.875,1.14,0.692,0.995,1.259,2.654 +NM_014367,1.04,0.982,1.087,1.095,1.115,1.044,0.939,0.985,1.109,1.023,0.933,1.051,1.079,0.915,0.909,0.844,0.984,0.96,1.036,0.972,1.075,0.91,1.003,1.092,1.038,0.912,1.067,1.064,0.747,1.003,1.069,1.119,1.032,0.99,1.112,0.899,1.047,0.998,0.988,0.984,1.188,0.909,1.004,0.863,0.927,0.967,0.949,0.899,0.983,1.007,0.962,1.115,0.987,0.863 +NM_014368,0.833,1.023,0.918,0.94,0.835,1.107,1.033,0.829,0.854,0.9,1.1,0.813,0.936,0.893,1.067,1.149,0.863,0.987,0.972,0.989,0.979,0.928,0.938,0.989,1.0,0.88,0.803,0.962,1.433,0.949,0.886,1.147,1.255,1.326,0.935,0.881,1.018,0.954,1.13,1.445,0.799,1.308,0.857,0.973,0.817,1.065,0.957,0.897,0.957,0.818,1.188,1.197,1.074,0.932 +NM_014369,0.852,1.044,0.964,0.906,0.879,1.026,0.866,1.012,0.87,0.988,0.99,0.909,0.92,0.979,0.952,1.234,1.005,0.876,0.994,0.986,1.034,0.882,1.078,0.882,1.244,1.045,1.004,0.999,1.324,1.011,0.927,1.285,1.537,1.036,0.924,0.96,1.048,0.883,1.156,1.197,1.031,1.082,0.949,1.08,0.802,1.051,1.014,0.952,1.048,0.936,1.029,0.835,0.984,1.005 +NM_014370,0.998,0.938,0.891,1.158,1.029,1.029,1.065,0.823,1.248,1.054,0.886,1.129,1.056,0.846,0.925,1.024,1.046,0.897,0.948,1.255,1.033,1.046,1.036,0.971,0.891,0.87,1.15,0.944,0.938,1.129,0.922,1.06,1.092,1.122,0.927,1.395,0.995,0.729,1.001,1.037,1.063,1.098,0.74,0.992,0.941,1.086,0.96,1.119,0.812,0.94,0.926,0.926,0.759,1.057 +NM_014371,1.102,1.171,1.007,0.842,0.979,0.892,0.719,0.884,1.114,0.767,0.953,0.842,0.822,1.049,0.864,0.852,1.068,0.952,1.077,1.002,0.936,1.055,0.996,1.013,0.801,1.023,1.216,0.82,0.747,1.066,0.97,1.299,1.019,0.873,0.985,1.066,0.88,1.004,1.336,1.238,0.924,0.934,1.068,1.222,0.795,0.988,0.874,0.938,1.069,1.007,0.806,1.016,0.922,1.164 +NM_014372,1.134,0.965,0.963,1.126,0.945,0.928,1.077,0.971,1.125,1.018,1.007,0.923,1.041,0.973,1.068,1.006,1.09,1.091,1.091,1.098,0.846,0.978,0.998,0.988,0.992,0.916,1.058,0.897,1.323,1.006,1.12,0.888,1.159,1.009,1.012,0.953,0.917,1.072,0.92,0.906,1.091,1.187,0.994,1.017,1.052,1.27,0.977,1.04,0.986,1.139,0.979,1.015,1.165,0.996 +NM_014373,0.233,2.01,0.266,0.84,0.347,2.477,1.005,0.367,0.3,0.214,2.85,0.292,0.399,0.258,1.212,2.645,0.4,0.943,0.352,1.628,0.194,0.268,1.929,0.297,0.995,0.391,0.849,0.351,0.688,2.263,0.271,1.23,1.106,2.429,0.821,0.644,2.736,0.177,1.479,0.698,0.321,1.616,0.985,0.675,0.261,2.088,1.928,0.693,1.767,0.276,1.323,0.612,0.313,3.91 +NM_014374,1.072,0.89,0.972,1.072,1.083,0.902,0.818,1.037,0.932,1.002,0.997,1.044,0.948,1.011,1.022,0.995,0.86,1.032,0.832,0.847,1.026,1.129,1.101,0.943,0.976,0.946,0.781,1.12,1.058,0.95,0.906,1.01,0.901,0.944,1.09,0.892,1.01,0.945,1.067,1.111,1.058,1.011,1.054,1.057,0.899,0.97,1.089,0.971,0.93,1.018,0.981,1.047,0.98,0.996 +NM_014376,0.913,1.211,1.102,0.871,0.803,0.984,1.083,0.883,0.904,0.75,0.94,0.886,0.967,0.777,0.811,1.277,1.051,1.012,0.894,1.208,0.84,0.893,1.346,0.931,1.431,0.952,0.864,1.032,1.155,0.9,0.964,1.136,1.444,1.348,0.907,0.846,1.031,1.005,1.151,1.088,0.825,1.262,0.938,0.899,0.975,1.049,0.931,0.905,0.913,0.938,1.194,0.741,0.972,1.195 +NM_014379,0.908,1.117,1.002,0.958,0.936,1.027,0.976,0.969,1.021,1.001,1.153,0.969,0.955,0.978,0.885,1.055,1.033,0.902,0.935,1.031,0.867,0.968,0.896,0.996,0.842,1.154,1.1,1.012,1.146,0.941,0.795,1.113,0.994,1.054,1.033,0.91,0.981,0.939,0.915,0.966,1.01,0.87,0.981,0.822,1.097,0.966,0.978,1.044,0.994,0.939,0.973,1.061,1.036,1.148 +NM_014380,0.79,2.022,1.784,0.781,1.13,0.252,0.842,0.757,1.376,1.245,0.917,1.177,0.871,1.071,0.887,1.301,1.311,0.911,1.809,0.435,0.91,0.952,0.62,1.502,0.903,1.424,1.986,0.823,0.778,2.714,1.522,3.387,4.044,3.104,0.358,0.752,1.168,0.994,0.312,0.571,1.064,1.29,0.209,0.124,1.356,0.529,0.989,1.147,0.336,1.188,0.425,1.178,2.134,0.708 +NM_014381,1.037,1.053,1.028,1.071,1.119,1.101,0.909,1.148,0.862,1.039,0.978,0.967,1.028,1.024,0.865,1.002,1.05,1.048,0.941,1.075,0.901,0.867,1.028,0.963,0.933,0.918,1.003,1.023,0.992,0.913,1.014,0.934,1.214,1.136,1.032,1.122,1.021,0.873,0.992,0.958,1.017,1.066,1.81,1.115,0.952,0.893,0.969,0.958,0.875,0.953,0.941,1.084,0.803,0.982 +NM_014382,0.566,1.164,1.062,0.704,0.669,1.117,0.648,0.374,0.964,0.921,1.31,0.49,0.429,0.582,1.019,1.695,0.744,0.757,1.041,1.171,0.575,0.418,1.313,0.801,0.619,0.553,1.198,0.717,0.373,1.767,0.758,1.248,2.339,1.5,0.268,0.733,0.981,0.711,1.329,0.668,0.847,1.136,1.119,1.739,0.888,1.562,0.838,0.57,1.581,0.724,1.15,0.864,0.97,1.316 +NM_014383,0.989,0.933,0.903,1.035,0.971,0.98,1.061,0.992,0.922,0.936,0.908,1.056,1.109,0.898,1.01,1.09,0.974,1.104,1.15,0.962,0.988,0.924,0.98,0.936,1.054,0.888,1.143,1.132,0.645,0.931,1.036,0.941,1.092,1.086,1.096,1.031,0.959,1.014,1.079,1.083,0.92,1.037,0.996,1.006,1.131,0.968,1.195,1.007,0.935,1.08,0.967,0.928,1.043,1.232 +NM_014384,1.075,1.09,1.385,0.875,1.152,1.278,0.741,0.675,1.014,0.826,1.04,0.769,0.807,0.858,0.973,1.406,2.018,0.742,1.208,1.074,0.623,0.84,1.062,0.826,0.761,0.951,1.596,0.9,0.794,1.022,1.651,0.984,1.333,1.325,1.4,0.865,1.004,0.823,0.881,0.653,1.145,1.034,0.658,0.718,0.992,0.981,0.852,0.875,0.8,1.191,1.037,0.73,1.209,1.342 +NM_014385,0.969,0.903,0.963,0.962,1.085,0.995,0.919,1.029,1.119,1.023,1.038,0.921,0.94,0.885,0.913,1.074,1.0,1.018,0.95,1.011,0.987,0.906,1.018,1.156,0.97,1.093,0.94,1.031,1.054,1.038,0.958,1.079,1.033,1.062,0.984,1.01,0.962,0.935,1.064,1.092,1.185,0.942,0.896,0.908,1.059,0.879,0.98,0.99,0.9,1.058,1.189,1.0,1.019,0.966 +NM_014386,1.05,1.153,1.147,0.929,0.949,0.992,0.921,0.913,1.043,1.016,1.084,1.007,1.021,0.821,1.053,0.905,0.966,1.138,1.103,1.001,0.801,0.952,0.986,1.022,1.05,1.028,1.008,1.048,1.013,0.95,1.013,0.952,0.944,0.989,1.006,0.885,1.109,0.922,0.964,1.073,0.957,1.055,0.911,1.028,1.001,0.879,1.123,1.084,0.992,0.835,0.993,0.965,0.988,0.987 +NM_014388,0.92,1.104,1.156,0.911,0.995,0.898,0.895,0.829,1.108,1.192,0.995,0.964,0.737,0.712,1.018,1.105,0.982,0.868,1.12,0.97,0.877,0.922,1.068,1.152,0.9,0.986,1.156,0.978,0.64,0.99,1.053,1.264,2.06,1.096,0.816,1.173,0.818,0.886,1.118,1.123,0.967,0.969,0.786,1.462,0.943,0.934,1.022,0.875,1.004,0.958,0.976,0.912,1.021,1.361 +NM_014389,0.802,0.547,1.103,0.765,0.909,0.851,0.712,0.637,1.092,1.145,0.671,0.892,0.775,0.605,0.891,1.214,0.91,0.841,1.063,0.881,0.879,1.049,1.52,1.099,0.493,0.914,1.274,0.701,0.584,1.001,1.053,1.356,2.99,1.195,0.404,0.987,0.766,1.006,1.494,1.081,0.977,1.245,0.573,1.587,1.283,0.74,0.91,0.934,0.872,0.96,1.15,0.986,1.085,2.011 +NM_014390,0.739,1.062,1.076,0.854,0.745,0.899,0.727,0.313,0.918,0.98,1.183,0.776,0.469,0.445,0.78,1.351,0.695,1.022,1.097,1.045,0.481,0.775,1.909,0.794,0.883,1.021,1.002,0.715,0.558,1.631,0.695,0.943,1.352,1.404,0.189,1.145,1.114,0.86,1.375,0.759,0.922,1.352,0.914,1.41,1.073,1.145,0.997,0.815,1.258,0.924,1.147,1.088,1.126,0.998 +NM_014391,1.065,1.0,1.012,0.927,1.08,1.115,0.924,0.913,1.096,0.962,1.032,0.861,0.982,0.96,0.924,0.965,1.054,0.934,0.99,1.003,1.06,1.04,1.075,1.009,0.959,1.004,0.93,0.965,0.793,0.992,1.081,1.156,1.176,1.079,1.027,1.021,0.929,0.935,0.996,0.942,1.08,1.018,1.117,1.025,1.047,0.975,1.133,0.985,1.051,0.969,0.99,1.17,0.954,0.937 +NM_014393,0.929,0.947,1.779,0.78,1.263,1.138,0.699,1.092,1.665,1.148,0.947,1.111,0.987,1.027,1.177,1.263,1.309,1.028,2.007,0.918,0.957,1.022,0.885,1.203,0.708,0.9,1.418,1.156,0.72,1.045,1.582,1.11,1.556,1.231,0.869,0.737,0.912,0.945,0.907,0.791,1.667,0.854,0.647,0.752,1.196,1.166,0.968,0.978,1.091,1.112,0.955,0.818,1.378,0.959 +NM_014394,0.588,0.899,1.158,0.672,0.744,1.401,0.64,0.478,0.985,0.876,1.489,0.836,0.561,0.562,1.208,2.47,0.634,0.892,1.652,0.907,0.457,0.485,0.996,1.145,0.79,0.654,1.151,0.866,0.26,1.163,0.873,1.093,1.797,1.639,0.261,0.862,1.581,0.772,1.482,0.565,1.005,1.072,0.688,1.007,0.902,1.229,1.008,0.643,1.396,0.862,1.06,0.582,0.812,1.484 +NM_014397,0.623,1.097,0.635,0.99,0.538,1.442,0.939,0.647,0.655,0.589,1.208,0.678,0.62,0.532,1.03,1.582,0.651,0.762,0.636,1.173,0.736,0.64,1.542,0.535,0.858,0.619,0.63,0.695,0.785,1.182,0.575,1.809,2.206,1.533,0.588,0.699,1.373,0.566,1.297,3.119,0.64,1.34,1.119,1.375,0.614,1.143,0.863,0.605,1.655,0.592,1.052,0.878,0.707,1.587 +NM_014398,1.331,1.034,1.969,0.836,1.053,0.746,1.057,0.884,1.111,1.294,0.794,1.069,0.797,0.855,1.233,0.871,1.975,1.118,1.212,0.761,0.888,0.831,1.206,1.111,0.731,0.818,2.128,0.903,0.768,0.878,1.164,0.911,3.411,1.003,0.698,1.081,0.912,0.937,1.281,1.288,1.066,0.863,0.912,3.636,1.269,0.736,0.81,0.968,0.645,1.488,0.778,1.835,2.523,7.967 +NM_014399,0.325,1.792,0.35,0.816,0.425,1.456,0.998,0.221,0.801,0.287,2.201,0.224,0.304,0.307,0.958,2.314,0.259,1.002,0.561,1.34,0.376,0.354,2.763,0.384,0.873,0.355,0.441,0.636,0.64,2.693,0.414,1.205,3.736,2.452,0.285,1.582,2.048,0.51,1.849,0.562,0.599,1.837,0.805,1.525,0.346,1.683,1.112,0.323,1.131,0.305,1.875,0.987,0.413,2.06 +NM_014402,0.667,0.906,0.927,0.731,1.019,1.293,0.72,0.647,1.179,0.905,1.33,1.164,0.994,0.487,0.871,2.08,0.885,1.336,1.542,1.062,0.619,1.033,1.185,1.17,0.808,1.006,1.356,0.887,0.57,1.037,0.819,0.765,1.188,1.549,0.187,0.595,1.539,1.412,1.391,0.408,1.107,1.217,0.774,0.725,1.044,1.013,1.087,1.09,1.173,0.835,1.164,0.793,0.864,0.915 +NM_014404,1.03,0.912,1.044,1.064,0.841,0.981,0.928,0.92,0.997,1.162,0.978,0.853,0.947,0.984,0.927,0.99,1.018,1.039,0.72,1.028,0.918,0.994,1.067,1.05,0.921,1.046,1.039,1.015,1.066,1.051,0.997,1.121,0.759,1.048,1.085,0.948,0.93,0.997,1.076,0.975,1.072,1.112,1.135,0.988,1.1,0.992,0.922,1.026,1.047,1.031,0.877,1.011,0.974,0.983 +NM_014405,1.001,0.858,0.861,0.941,0.973,1.075,1.068,1.064,1.037,0.891,0.946,1.005,1.125,0.985,1.004,1.189,0.975,1.085,0.881,1.045,0.748,1.175,1.038,1.121,0.95,0.95,1.054,0.991,0.877,1.069,0.913,0.829,0.878,0.951,0.929,0.804,1.033,1.1,1.111,0.802,0.993,0.849,0.89,0.812,1.111,0.928,0.859,1.037,0.987,0.882,1.078,0.88,1.047,1.099 +NM_014406,1.147,1.107,1.047,0.786,1.058,0.844,0.963,0.861,1.04,0.982,0.873,1.006,0.937,0.977,1.032,0.921,0.971,0.907,0.924,1.123,1.186,1.107,1.047,0.941,0.959,1.031,0.972,1.032,0.981,1.015,0.935,1.0,1.028,1.034,0.948,1.159,1.014,1.035,1.27,0.883,0.972,1.154,0.93,0.977,1.132,0.931,0.928,1.078,1.17,0.873,0.993,0.793,1.052,0.885 +NM_014408,0.651,1.145,1.22,0.736,0.952,1.202,0.669,0.579,1.13,1.006,1.036,1.15,0.804,0.653,0.821,1.473,0.889,1.159,1.079,0.967,0.519,0.829,1.156,1.2,0.588,0.752,1.285,0.943,0.441,1.229,0.65,1.505,1.884,1.21,0.213,1.178,1.139,0.768,1.101,0.691,1.4,1.155,0.585,1.603,1.172,0.899,1.188,0.68,0.875,0.897,0.998,1.061,0.865,1.416 +NM_014409,0.805,1.104,1.128,0.599,0.838,0.846,0.678,0.691,0.854,0.803,1.132,0.831,0.754,0.711,0.898,1.336,0.833,0.857,1.07,0.854,0.718,0.729,1.125,0.893,0.895,0.865,1.115,0.85,0.564,1.004,0.81,1.172,1.445,1.19,0.521,0.966,1.112,0.869,1.406,1.159,0.998,1.167,0.908,1.147,0.981,1.064,0.912,0.844,0.98,1.002,0.959,0.925,0.921,1.344 +NM_014410,0.883,1.142,0.923,0.922,0.833,0.987,1.019,1.175,1.004,1.002,0.924,0.99,1.123,1.1,1.109,1.018,0.926,1.099,1.003,0.907,1.018,0.8,0.943,1.152,1.081,0.981,0.981,1.002,1.071,0.977,0.946,0.929,0.991,0.941,0.974,1.027,1.008,0.916,1.083,1.012,0.924,1.576,1.321,0.908,1.052,0.925,0.964,0.894,1.158,0.947,1.079,0.958,0.946,0.945 +NM_014411,0.977,0.986,1.102,0.959,1.002,1.151,1.113,0.956,0.91,0.865,0.978,0.923,1.066,0.906,0.981,1.042,0.916,0.975,1.13,0.947,0.884,0.968,1.044,1.069,0.996,0.998,0.958,1.074,0.998,1.105,0.924,0.995,1.065,1.019,1.061,1.016,1.256,1.064,1.071,1.056,1.025,1.129,1.079,1.034,0.988,1.022,1.053,0.93,1.069,1.011,1.028,1.219,0.92,1.173 +NM_014413,0.671,1.102,0.892,0.977,0.629,1.199,0.783,0.409,0.716,0.744,1.245,0.529,0.614,0.556,0.944,1.202,0.742,1.016,0.827,1.258,0.532,0.62,1.764,0.68,1.152,0.728,0.904,0.575,0.711,1.687,0.554,1.294,2.344,1.559,0.316,1.391,1.048,0.615,1.687,1.007,0.707,1.392,0.639,2.774,0.789,1.016,0.886,0.661,0.793,0.757,0.833,0.912,0.847,1.323 +NM_014415,0.953,0.974,1.325,0.83,0.991,1.182,0.979,0.961,0.915,1.093,0.881,0.993,1.025,0.899,0.858,1.304,1.02,1.133,1.021,1.145,0.895,0.969,0.965,1.096,0.96,0.942,1.18,1.032,0.832,1.139,1.13,1.077,1.464,1.022,0.899,0.84,0.982,0.989,1.042,0.991,1.009,1.011,0.739,1.017,1.036,0.99,1.013,0.94,1.1,0.958,0.858,1.005,1.032,1.15 +NM_014417,1.04,1.074,0.852,0.975,1.088,1.185,0.91,0.854,0.894,0.842,1.044,0.89,0.935,1.07,1.015,1.02,0.857,0.869,0.939,0.98,0.872,0.947,1.11,0.91,0.88,0.992,1.066,0.958,0.866,1.244,0.988,1.083,1.154,0.943,0.922,1.034,0.907,1.093,1.026,1.36,0.939,1.133,0.98,0.992,1.041,1.022,0.931,0.932,1.012,0.986,1.025,1.041,0.836,0.957 +NM_014419,1.078,0.993,1.005,0.933,1.025,1.097,1.016,1.311,1.096,0.88,0.893,0.98,1.026,0.957,0.995,1.309,0.904,1.035,0.956,1.017,0.942,1.076,0.978,0.902,1.131,1.033,1.118,1.022,1.638,1.068,1.089,1.333,1.058,0.942,0.89,1.001,1.063,0.886,0.856,1.078,1.02,1.037,1.01,1.217,0.999,1.084,0.955,1.121,0.999,0.96,0.969,0.984,0.83,0.937 +NM_014420,1.728,0.883,1.994,0.958,1.925,0.879,0.704,2.168,1.309,1.225,0.91,2.098,2.267,1.0,1.17,1.315,2.122,1.189,2.809,0.826,1.073,1.822,0.808,1.25,0.814,1.293,2.518,1.82,0.895,0.894,1.29,0.879,1.03,0.668,3.229,0.783,0.901,1.91,0.792,0.834,2.048,0.877,0.624,1.11,1.51,0.759,2.186,1.885,0.954,3.878,0.992,0.899,1.309,0.636 +NM_014422,0.678,1.219,0.845,0.793,0.675,1.895,0.79,0.728,0.873,0.713,1.903,0.652,0.626,0.682,1.57,2.526,0.776,0.999,0.791,1.489,0.731,0.872,1.554,0.801,1.08,0.715,0.885,0.74,0.674,1.446,0.946,1.079,1.2,1.061,0.642,0.829,1.861,1.075,1.26,0.985,0.671,1.749,1.326,1.072,0.789,1.572,1.05,0.648,1.304,0.756,1.421,0.899,0.871,1.082 +NM_014423,0.975,0.935,0.962,1.073,0.919,0.977,0.959,1.091,1.368,1.257,1.065,1.001,0.993,1.101,1.194,0.971,1.062,0.963,1.21,0.967,0.975,1.062,0.954,1.131,1.121,1.167,1.065,1.188,0.894,0.966,1.263,0.919,1.03,1.034,1.538,0.945,0.92,0.958,1.074,0.991,1.144,0.989,1.013,0.906,1.23,1.081,1.078,1.05,0.979,0.954,0.922,0.994,1.208,1.102 +NM_014425,1.037,1.025,1.149,0.98,1.147,0.848,1.172,1.089,0.943,0.947,0.959,0.934,0.907,0.97,0.941,0.958,0.844,1.031,0.941,1.095,1.02,1.015,1.072,0.919,1.06,0.857,0.95,1.132,0.835,1.046,1.041,0.794,0.901,1.088,0.889,1.177,1.056,0.957,0.823,0.918,0.962,1.005,1.11,0.941,0.819,1.186,0.999,0.94,0.901,1.085,1.079,1.098,0.966,0.978 +NM_014426,0.799,1.118,0.872,0.95,0.861,1.144,0.746,0.483,0.968,0.988,0.976,0.953,0.725,0.505,0.876,1.363,0.906,0.993,0.803,1.528,0.54,0.887,1.793,0.996,0.865,0.846,1.296,0.792,0.767,1.682,0.729,1.158,1.364,1.196,0.406,1.124,0.832,0.929,1.583,0.66,1.013,1.114,1.018,1.221,1.035,1.431,0.79,0.768,0.846,0.692,1.177,0.92,0.702,1.605 +NM_014427,0.931,1.02,1.003,1.059,0.989,0.967,1.046,0.982,1.009,1.036,0.935,1.05,1.031,0.976,0.815,1.117,1.005,1.006,1.042,1.004,0.92,1.004,0.969,1.174,1.006,1.06,0.992,1.167,1.153,0.903,1.021,1.012,1.109,1.013,1.026,1.01,0.877,1.01,1.057,1.178,0.95,0.961,0.775,0.918,0.904,1.024,0.926,1.066,1.135,1.048,0.982,0.888,1.053,0.896 +NM_014428,0.711,0.891,1.057,1.06,0.461,1.647,0.82,0.512,0.832,0.442,1.229,0.357,0.933,0.734,1.235,2.547,1.601,1.021,1.306,0.91,0.607,0.707,1.555,0.573,0.653,1.613,0.513,0.542,0.8,1.493,1.112,0.739,0.845,1.931,1.809,0.749,1.171,0.463,1.991,0.462,0.784,1.182,0.533,1.571,0.533,0.774,0.765,1.293,1.299,0.512,1.147,0.481,0.763,1.089 +NM_014429,0.907,0.896,0.834,1.072,0.919,0.973,0.983,1.15,1.003,1.01,1.021,0.964,1.081,0.928,0.823,1.083,1.078,1.056,0.89,0.969,1.1,0.835,1.018,0.945,1.057,1.143,1.302,1.237,1.164,1.031,0.923,1.166,1.165,1.002,1.186,1.015,0.862,1.038,0.958,1.005,0.996,0.95,0.99,1.162,1.098,1.078,0.932,1.011,1.022,1.021,0.958,1.041,1.052,0.932 +NM_014430,1.009,0.526,1.759,0.847,1.091,0.916,0.522,0.819,1.246,1.207,1.32,1.254,1.134,0.923,1.281,3.138,1.214,0.73,1.378,1.046,0.746,1.08,0.886,1.195,0.52,1.0,1.313,0.911,0.464,0.791,1.242,0.729,0.954,0.687,0.542,0.492,2.312,1.094,1.047,0.513,1.265,1.344,1.374,0.539,1.277,1.068,1.0,0.972,0.923,1.264,1.409,0.541,1.104,0.523 +NM_014432,0.738,0.858,1.291,0.931,0.917,1.44,0.83,0.774,0.924,0.765,1.626,0.788,0.807,0.954,1.244,2.276,0.985,0.992,1.118,1.623,0.814,0.713,1.332,0.934,0.719,0.761,1.245,0.892,0.794,1.22,1.0,0.846,0.837,2.092,0.724,0.811,1.276,0.897,0.843,0.883,1.006,1.397,0.955,0.786,0.836,1.701,0.825,0.826,1.084,0.693,1.159,0.764,1.0,1.679 +NM_014433,0.95,1.056,1.111,0.836,1.073,0.951,0.905,0.943,0.964,0.831,1.064,0.928,0.948,0.922,0.845,1.106,0.985,0.878,1.136,0.892,0.855,0.988,1.079,1.021,1.008,1.012,1.035,1.021,0.627,1.0,0.876,1.066,1.483,1.014,1.002,2.114,0.874,1.092,1.074,0.971,1.102,1.066,1.214,1.113,1.028,1.047,1.071,0.967,0.869,1.018,0.974,0.916,1.0,1.113 +NM_014434,0.755,1.045,1.029,0.791,0.957,1.153,0.743,0.622,1.112,1.155,0.954,0.854,0.727,0.743,1.007,0.921,1.222,1.12,0.791,1.041,0.677,0.854,1.266,1.14,0.726,0.773,1.261,0.859,0.74,1.157,0.824,1.597,0.991,0.845,0.612,4.578,0.903,0.828,1.286,1.483,1.148,1.0,1.014,1.412,1.008,1.032,1.05,0.822,1.394,0.797,1.03,1.131,0.894,2.037 +NM_014435,1.011,0.754,1.442,0.831,1.158,0.743,0.592,0.694,1.368,1.121,0.975,0.967,0.892,0.859,1.295,1.406,1.225,0.751,2.07,1.217,0.957,1.277,0.977,1.125,0.675,1.005,0.85,1.114,0.457,0.668,1.14,1.221,1.493,0.885,0.582,0.634,1.158,1.336,0.65,0.869,1.272,1.175,0.698,0.933,1.425,1.015,1.575,0.87,0.815,1.262,0.725,0.77,1.282,1.021 +NM_014437,0.612,1.493,0.814,0.842,0.669,1.147,0.667,0.489,0.682,0.771,1.05,0.661,0.706,0.485,0.614,1.113,0.741,1.077,0.751,0.633,0.581,0.656,1.04,0.811,0.945,0.818,1.092,0.537,0.665,1.237,0.557,3.907,1.261,1.46,0.312,1.813,1.192,0.908,1.761,3.163,0.75,1.283,0.687,2.221,0.782,0.691,1.163,0.773,0.692,0.723,0.899,1.274,0.758,1.524 +NM_014440,2.855,0.799,2.025,1.593,4.112,0.814,0.683,2.034,3.618,1.323,0.76,1.395,2.698,1.445,1.654,1.303,2.311,1.078,2.567,0.882,1.725,1.298,0.838,1.29,0.79,1.802,1.683,2.898,0.738,0.823,4.35,0.898,2.1,0.921,8.806,0.829,0.846,2.227,0.768,0.791,3.661,0.733,0.898,0.867,2.516,0.821,1.925,2.012,0.859,3.149,0.968,1.136,2.704,0.952 +NM_014441,1.038,0.988,1.015,1.204,1.19,0.991,0.837,0.814,0.915,0.96,1.195,1.118,0.835,0.963,0.974,0.989,1.089,0.995,0.898,1.018,0.845,0.943,0.942,1.062,1.016,0.947,1.031,1.062,0.983,1.037,1.057,1.115,1.061,1.06,1.02,1.123,1.061,1.036,0.973,0.988,0.976,0.926,0.952,1.012,1.026,1.133,0.933,0.986,0.977,1.094,0.988,1.241,1.037,1.069 +NM_014443,0.904,1.031,0.987,0.922,0.943,1.067,0.934,1.154,1.042,0.986,0.927,1.029,1.196,0.938,1.055,1.157,0.923,1.007,0.944,0.918,0.982,1.083,1.151,0.792,1.117,0.972,1.034,1.032,0.871,1.145,0.901,1.116,0.919,0.968,0.962,0.896,0.975,0.886,1.149,1.092,1.145,0.962,0.793,0.975,0.897,1.131,1.204,0.966,1.04,1.006,1.222,0.97,1.029,0.927 +NM_014445,0.584,1.336,1.132,0.799,0.811,1.714,0.832,0.612,1.05,0.827,1.254,0.642,0.758,0.502,0.911,2.006,0.748,1.185,1.006,1.242,0.494,0.77,1.322,1.104,1.219,0.662,0.939,0.744,0.493,2.071,0.979,1.029,2.13,1.608,0.369,0.834,1.76,0.945,1.384,0.546,1.105,1.608,0.732,0.977,0.808,1.482,0.702,0.633,1.285,0.716,1.372,0.662,0.826,1.072 +NM_014446,1.021,1.152,0.893,0.965,1.1,1.093,1.71,1.137,1.121,1.165,1.21,1.008,0.936,1.265,1.024,1.171,1.024,1.238,0.969,1.104,0.966,0.968,0.963,0.975,0.882,1.003,0.981,1.019,1.213,0.913,0.937,0.969,0.974,1.078,1.21,0.972,0.844,0.852,1.098,0.872,0.927,0.952,1.092,1.112,0.948,0.949,1.007,1.139,0.974,1.015,0.946,1.054,1.067,0.947 +NM_014447,0.771,1.036,1.094,0.821,1.094,0.935,0.866,0.733,1.274,0.85,1.661,0.904,0.868,0.766,0.858,1.438,0.788,0.935,0.92,1.359,0.816,0.674,1.09,0.912,0.889,0.856,0.937,1.006,0.635,1.26,1.105,1.182,1.131,1.107,0.908,0.948,1.122,0.87,1.114,0.927,1.042,0.993,1.1,1.238,0.766,1.485,1.237,0.762,1.343,0.848,1.185,1.241,1.083,0.831 +NM_014448,0.396,1.532,0.835,0.669,0.473,1.72,1.324,0.322,0.563,0.437,1.47,0.52,0.5,0.346,0.907,1.362,0.821,0.829,0.466,1.708,0.272,0.433,1.85,0.527,0.715,0.414,0.835,0.511,0.932,2.059,0.43,0.971,0.786,1.767,0.432,1.308,1.352,0.561,2.512,1.765,0.66,1.499,1.359,1.48,0.509,1.751,1.057,0.544,2.129,0.604,1.372,0.611,0.454,1.387 +NM_014449,0.991,1.19,0.923,0.895,0.945,0.942,1.299,0.819,0.916,0.975,0.807,0.83,0.903,0.848,0.904,1.165,0.876,1.041,0.769,0.89,0.887,0.839,0.938,0.804,0.927,0.78,0.923,1.03,1.384,1.508,0.875,2.717,1.171,1.358,0.919,1.084,1.002,0.905,1.318,1.891,0.978,0.952,1.147,1.239,0.823,1.024,0.913,0.856,0.841,0.983,1.178,1.173,0.863,1.105 +NM_014450,0.98,1.296,1.269,0.976,0.884,1.061,1.248,1.001,0.981,1.049,0.979,1.104,0.978,1.139,1.056,0.999,0.994,1.008,0.908,1.142,0.864,0.889,1.078,0.942,0.959,0.857,1.182,0.971,1.212,1.007,1.075,0.979,0.913,1.23,0.943,0.825,1.088,0.841,1.015,0.863,1.122,1.25,1.037,0.755,1.049,1.025,0.951,0.99,0.962,0.984,0.989,0.889,1.039,1.196 +NM_014452,0.511,1.747,0.508,0.568,0.683,1.38,0.714,0.242,0.371,0.623,1.087,0.493,0.368,0.223,0.664,0.845,0.917,0.756,0.603,1.272,0.295,0.37,1.403,0.458,0.556,0.509,1.118,0.347,0.649,1.92,0.446,1.497,0.788,1.357,1.17,0.901,1.224,0.791,2.307,1.275,0.653,1.185,0.99,1.493,0.584,1.325,1.171,0.367,1.783,0.462,0.947,1.883,1.084,3.355 +NM_014453,0.563,1.031,1.129,0.65,1.084,1.493,0.657,0.513,1.254,1.0,1.139,0.723,0.54,0.526,1.049,1.678,0.878,1.092,1.103,1.327,0.372,0.754,1.752,1.038,0.593,0.816,1.051,1.151,0.532,1.493,0.922,0.807,1.316,1.491,0.667,0.925,1.248,0.922,1.189,0.814,1.208,1.276,0.701,0.815,1.011,1.299,1.415,0.746,1.146,0.775,1.339,0.73,0.788,0.815 +NM_014455,0.676,1.026,1.105,0.69,0.809,1.356,0.717,0.527,0.899,0.807,1.464,0.908,0.699,0.686,0.838,1.488,0.747,0.776,0.917,1.086,0.641,0.798,1.113,0.996,0.869,0.61,1.072,0.808,0.533,1.121,0.682,1.718,1.766,1.284,0.344,1.938,0.938,0.672,1.165,1.282,0.89,1.498,0.89,2.082,0.864,1.08,1.22,0.608,0.815,0.741,1.201,1.027,1.175,2.077 +NM_014456,0.858,1.126,2.128,0.652,1.536,1.671,0.793,0.834,1.523,1.089,1.105,1.034,0.831,0.898,1.07,1.418,0.983,1.238,1.007,1.93,0.285,1.83,1.413,1.166,0.885,0.757,1.48,1.315,0.966,1.826,1.363,0.744,0.679,1.283,0.183,0.311,1.061,2.067,0.973,0.354,1.226,1.243,0.652,0.224,1.022,1.199,0.718,1.281,0.669,1.118,1.432,0.349,0.438,0.726 +NM_014458,0.822,0.955,1.241,0.959,1.001,1.122,0.824,0.743,0.893,0.962,1.096,0.747,0.717,0.89,1.009,1.162,0.96,1.064,1.138,1.226,0.94,0.748,1.234,0.957,0.711,0.822,0.983,0.897,0.87,1.13,0.991,1.524,1.176,1.396,0.551,1.158,0.918,1.001,1.143,0.737,1.075,1.19,0.792,1.156,0.957,0.953,0.885,0.673,0.899,0.965,1.142,0.87,1.051,1.027 +NM_014459,0.717,1.066,0.893,0.919,0.799,1.048,1.12,0.752,0.796,0.89,1.145,0.848,0.741,0.751,0.862,1.181,0.756,0.921,0.693,0.812,0.709,0.789,1.275,0.917,0.89,0.78,0.92,0.836,0.708,1.519,0.827,1.957,1.119,1.299,0.805,1.674,1.029,1.031,1.786,2.712,0.867,1.292,0.826,0.807,0.736,0.875,1.198,0.838,0.859,0.864,1.169,3.159,0.854,1.286 +NM_014460,0.913,1.027,0.997,1.091,1.154,0.933,1.237,0.917,0.908,1.107,1.162,0.986,0.945,1.076,0.79,0.978,1.044,0.914,0.994,0.989,1.06,1.029,0.929,1.053,1.063,0.95,1.02,0.993,1.277,1.152,0.944,0.99,1.154,0.833,1.011,0.969,0.932,1.101,0.848,1.023,0.962,0.935,0.938,1.137,1.018,0.84,1.116,1.08,1.109,0.953,1.073,1.03,1.135,0.947 +NM_014461,1.075,1.028,1.007,1.009,1.03,0.962,0.901,0.979,1.035,1.0,1.067,0.986,0.881,1.334,0.896,1.145,1.002,0.966,0.912,0.986,1.027,0.924,1.037,1.016,1.096,0.977,0.932,0.986,1.166,1.03,1.071,1.088,0.992,0.958,0.993,1.089,1.001,1.111,1.009,1.036,1.051,1.014,0.935,0.942,0.968,1.138,0.933,0.999,0.817,0.887,1.017,1.017,1.106,1.041 +NM_014462,0.562,1.135,0.988,0.691,0.901,1.682,0.712,0.66,1.109,0.97,1.249,1.445,0.687,0.595,0.845,1.492,0.82,0.939,1.025,1.203,0.365,0.762,1.177,1.215,0.598,0.624,1.129,0.946,0.507,1.259,0.877,1.197,1.058,1.362,0.168,0.815,1.42,0.793,1.291,0.515,0.997,1.0,0.775,0.766,0.997,1.522,1.113,0.76,1.443,0.659,1.233,0.749,0.811,2.27 +NM_014463,0.769,1.049,1.069,0.814,0.893,1.132,0.51,0.661,1.061,0.921,1.311,1.002,0.907,0.569,0.997,1.855,0.974,0.914,1.502,0.74,0.495,0.832,1.267,1.11,0.714,0.968,1.316,0.885,0.366,1.334,0.884,0.817,1.539,1.458,0.273,1.113,1.24,0.895,1.44,0.581,1.074,1.132,0.7,1.0,0.931,1.0,1.543,1.008,1.014,0.781,1.14,0.91,1.175,1.42 +NM_014464,1.045,0.852,1.02,0.745,0.963,1.002,0.961,0.851,0.97,1.026,1.114,1.058,0.914,1.178,1.474,2.172,0.991,1.108,0.909,1.552,0.915,0.963,1.039,0.935,0.918,1.046,1.164,0.905,0.707,0.877,0.905,0.959,0.967,0.817,1.005,0.936,1.478,0.986,1.002,1.087,0.942,1.258,1.24,1.066,1.044,1.347,1.366,0.812,1.486,1.065,0.884,0.896,0.968,0.931 +NM_014465,0.772,1.103,0.833,1.346,0.883,3.295,1.481,0.676,0.808,0.586,5.676,0.713,0.669,0.612,3.082,7.4,0.879,1.516,0.889,3.032,0.739,0.656,2.446,0.681,1.159,0.614,0.993,0.729,1.388,1.603,0.681,0.657,0.85,3.423,0.715,0.953,5.912,0.723,1.627,0.923,0.734,3.068,2.162,0.833,0.797,5.196,1.996,0.65,2.755,0.889,1.604,0.794,0.775,0.641 +NM_014466,0.914,0.831,0.93,0.893,0.978,1.029,1.013,1.021,1.037,0.945,0.909,1.066,1.022,0.867,0.934,1.059,0.917,1.009,1.109,0.869,0.896,1.015,1.077,1.045,0.987,0.911,1.064,1.006,0.965,0.977,1.118,0.951,1.001,0.981,0.935,0.808,1.035,0.997,0.99,1.051,1.012,1.003,1.001,0.993,1.003,1.021,1.012,0.999,0.992,1.025,0.973,0.891,1.026,0.968 +NM_014467,2.766,0.834,2.516,1.06,2.657,0.645,0.675,2.278,3.913,1.42,0.624,1.384,2.153,2.244,1.438,0.981,2.915,1.206,2.862,0.712,1.116,1.78,0.653,2.194,0.624,2.572,2.027,2.484,0.881,0.865,3.4,3.01,1.375,0.681,6.411,0.612,0.596,2.39,0.859,1.32,2.485,0.658,0.538,0.66,2.025,0.577,1.469,3.426,0.628,2.191,0.726,1.003,1.813,0.856 +NM_014468,0.94,1.053,1.024,0.891,0.834,0.978,0.878,1.017,0.966,1.012,0.877,1.036,0.945,1.026,0.853,1.112,1.063,0.999,0.957,1.016,0.974,1.056,1.059,0.979,0.86,1.034,1.123,0.998,0.755,0.991,0.861,1.196,1.114,1.013,1.033,0.908,0.942,0.963,1.045,1.224,1.107,0.962,1.016,0.962,1.009,1.121,1.008,1.129,1.068,1.046,0.711,1.123,0.994,1.293 +NM_014469,0.935,0.806,1.109,0.905,0.982,0.941,0.974,0.882,1.125,1.061,1.031,0.885,0.837,1.051,1.147,0.904,1.037,0.956,0.942,0.891,0.88,0.996,0.874,1.005,0.979,1.073,1.087,0.927,1.21,0.951,0.949,1.114,1.025,0.952,1.074,1.015,0.954,1.005,1.089,0.844,1.049,0.914,0.919,0.955,0.948,0.898,0.886,1.092,0.902,1.002,0.975,1.078,1.098,1.167 +NM_014470,0.808,1.453,0.728,1.033,0.853,1.208,1.136,1.281,0.702,1.028,0.87,0.783,0.853,0.769,0.799,0.861,0.875,1.135,0.811,0.944,0.737,0.776,0.857,0.715,1.174,0.717,1.199,0.737,0.928,1.174,0.996,1.737,0.906,1.435,0.867,0.888,1.172,0.642,3.364,0.935,0.889,1.0,1.05,0.966,0.892,1.374,1.095,0.733,1.035,2.107,0.96,1.189,0.846,0.95 +NM_014471,0.378,13.73,0.367,4.831,0.361,8.041,0.843,0.37,0.347,0.382,32.19,0.337,0.355,0.369,59.11,53.0,0.377,0.705,0.407,43.24,0.343,0.367,23.43,0.369,0.418,0.362,0.349,0.384,2.377,8.318,0.378,0.941,4.002,3.134,0.374,26.2,30.18,0.345,15.92,0.637,0.298,34.2,33.35,3.346,3.288,51.72,18.29,0.381,75.19,0.36,52.11,3.486,0.679,2.662 +NM_014472,0.88,1.049,1.47,0.781,0.99,1.192,0.717,0.569,1.063,0.888,0.812,0.847,0.687,0.821,1.079,0.927,1.186,0.858,0.941,1.208,0.623,1.09,0.999,0.994,0.714,0.883,1.549,0.982,0.782,0.987,1.085,1.95,0.99,0.973,0.764,1.207,0.854,0.971,1.049,1.067,1.11,0.842,0.782,1.075,1.009,0.925,1.001,0.976,0.869,1.393,0.927,0.89,0.995,1.47 +NM_014473,0.991,0.817,1.472,0.771,1.124,0.809,0.573,1.004,1.849,1.399,1.254,1.804,1.255,0.889,1.019,1.266,1.16,0.839,1.25,0.779,0.68,1.252,1.182,1.941,0.574,1.014,1.836,1.024,0.411,0.879,1.184,1.28,1.44,0.995,0.224,0.834,0.918,1.056,1.294,0.606,1.487,0.921,0.822,1.073,1.404,0.814,0.965,1.057,0.842,0.971,0.912,0.953,1.319,1.642 +NM_014474,0.875,1.274,0.786,0.764,0.71,1.444,0.849,0.766,0.77,0.66,1.038,0.82,0.835,0.647,1.465,1.658,0.869,1.011,0.819,1.225,0.93,0.843,1.184,0.842,1.098,0.821,0.75,0.832,0.739,1.584,0.943,1.17,1.055,1.528,0.818,0.906,1.153,0.788,1.46,1.043,0.624,1.355,1.058,1.789,0.917,1.202,1.037,0.781,1.017,0.889,1.1,0.821,0.676,1.108 +NM_014475,0.957,1.661,0.942,0.808,1.078,0.936,0.737,0.8,1.417,0.898,1.02,1.265,1.138,0.731,1.13,1.438,0.869,1.113,1.19,1.147,0.799,1.062,0.816,1.217,0.699,0.976,1.241,1.18,0.795,1.255,0.854,1.823,1.56,0.934,1.292,0.719,4.618,1.001,0.961,0.673,1.116,1.328,1.542,1.59,1.153,0.954,2.216,0.867,1.009,0.752,0.816,1.318,0.663,2.056 +NM_014477,1.057,0.967,1.035,0.959,0.988,0.87,0.988,1.306,0.996,1.084,1.03,1.093,0.985,1.004,0.998,1.083,0.826,0.981,1.073,1.043,1.106,0.969,1.035,0.953,1.048,1.029,0.999,1.0,0.825,0.954,1.038,1.025,0.908,1.131,0.937,1.0,0.996,1.011,1.062,1.048,0.922,1.059,0.913,0.994,0.94,0.818,1.018,0.933,0.919,0.962,0.995,0.849,0.869,0.978 +NM_014478,1.078,1.147,0.905,0.864,1.119,1.001,0.863,0.889,1.139,1.12,0.987,0.99,0.823,0.91,1.132,1.012,0.898,0.781,0.879,0.98,0.899,0.87,1.064,0.956,1.028,0.94,1.097,0.95,1.014,1.37,0.842,1.059,1.09,1.036,0.926,1.047,0.909,0.9,1.273,0.952,1.024,1.124,0.996,1.23,0.971,1.071,1.096,0.95,1.159,0.93,0.966,0.94,0.963,1.183 +NM_014479,0.96,1.195,0.87,0.897,1.04,0.88,0.948,0.921,0.951,0.927,1.064,0.981,0.873,1.045,1.141,1.098,1.062,1.047,1.044,0.877,0.971,0.888,1.202,0.929,0.869,0.761,0.967,0.914,0.843,1.256,0.967,1.603,1.01,1.01,0.773,0.91,1.064,0.872,1.041,1.253,0.948,1.263,1.385,0.986,1.023,1.013,0.952,0.904,0.924,1.019,0.851,1.181,1.066,1.541 +NM_014481,0.794,0.791,1.168,1.091,0.834,1.223,0.672,0.723,0.993,1.058,1.182,0.788,0.733,0.813,1.107,1.56,0.807,0.842,1.569,0.802,0.967,0.688,0.95,1.042,0.683,0.962,1.081,0.718,0.552,1.177,0.999,1.275,1.913,1.426,0.579,0.859,1.016,0.819,1.423,0.726,0.974,1.001,0.761,1.147,1.056,0.937,0.9,0.778,0.893,0.992,1.097,0.986,1.199,1.473 +NM_014482,0.934,0.911,0.862,1.167,1.051,1.036,0.915,0.999,0.795,1.452,1.022,1.124,0.991,1.255,0.868,0.894,0.959,1.112,1.119,0.91,0.874,0.916,1.088,0.788,1.107,0.853,0.97,1.082,0.824,1.012,1.059,0.833,1.001,1.034,1.033,0.788,1.083,0.993,0.807,1.063,0.975,0.91,1.169,1.121,0.862,0.998,0.939,1.031,1.004,1.093,1.037,0.921,1.159,0.878 +NM_014483,0.813,0.932,1.122,0.972,0.869,1.066,0.922,0.961,0.998,0.976,0.932,0.942,1.044,1.009,0.91,0.995,1.12,0.912,0.978,0.963,1.017,0.951,1.103,0.904,1.002,0.8,1.048,1.107,0.707,1.131,0.987,1.669,1.077,1.153,0.889,1.01,0.968,1.011,1.144,1.014,1.148,1.281,0.965,0.934,0.962,0.998,0.935,0.947,1.027,1.019,1.13,1.058,1.141,1.117 +NM_014485,0.875,1.287,0.953,0.994,0.965,1.02,1.024,0.983,1.128,0.913,1.021,1.131,0.978,1.077,0.875,0.907,0.955,0.975,0.728,0.967,0.91,0.948,0.996,0.973,1.37,0.889,1.031,0.938,1.107,1.4,1.008,1.14,0.891,1.792,0.815,0.857,1.011,1.127,1.378,0.826,1.019,1.344,1.138,0.784,0.91,1.198,0.8,0.829,0.964,0.881,0.919,0.983,0.945,0.995 +NM_014487,0.82,0.978,0.991,0.959,0.87,0.993,0.863,0.674,1.065,0.978,1.062,0.799,0.732,0.737,0.957,1.289,0.895,0.817,1.153,1.183,0.851,0.836,1.201,0.966,0.859,1.001,1.076,0.924,0.739,0.991,1.133,1.554,1.714,1.483,0.636,0.994,0.914,0.942,1.049,0.853,1.073,1.0,1.07,1.357,0.827,0.994,0.968,0.795,1.129,0.89,0.977,0.945,1.069,1.7 +NM_014488,1.059,0.989,0.953,0.732,0.973,1.272,1.076,1.03,0.83,0.75,1.239,1.035,0.825,0.794,1.333,1.324,0.904,0.886,0.778,0.906,0.941,0.922,1.113,0.912,0.783,0.877,0.934,1.022,0.994,1.124,0.922,1.029,1.372,0.94,0.993,1.055,1.248,1.02,1.207,0.975,0.821,1.093,1.344,0.953,1.035,1.234,1.076,0.988,1.005,0.924,1.066,0.935,0.798,0.947 +NM_014491,0.863,0.936,0.91,1.178,1.023,1.053,1.053,0.934,1.11,1.065,1.079,0.878,0.983,0.976,0.922,1.157,0.875,1.011,0.852,0.84,1.093,0.794,0.984,0.902,0.914,0.936,1.026,0.938,0.845,0.874,0.912,1.052,1.1,1.107,1.111,1.002,0.932,0.953,1.042,0.903,0.963,0.986,0.822,1.089,0.985,1.025,1.095,1.031,1.047,0.897,1.011,1.035,0.932,0.94 +NM_014494,0.877,0.935,1.306,0.757,1.02,1.019,0.881,0.796,1.161,0.872,0.739,0.845,0.759,0.847,0.884,1.284,1.068,0.925,0.95,0.955,0.657,1.109,1.174,1.213,0.796,0.782,1.293,1.048,0.64,0.976,1.237,1.785,2.183,1.061,1.215,0.765,0.998,1.098,1.24,1.433,0.988,1.217,0.643,1.042,1.179,0.882,0.951,0.891,0.842,0.925,1.021,0.978,0.996,1.112 +NM_014495,0.915,1.934,0.991,0.967,1.183,1.016,1.086,0.86,1.036,1.024,0.943,0.98,0.976,0.952,1.099,1.093,0.993,1.028,0.982,0.958,1.028,0.94,1.074,0.994,1.789,0.913,1.024,1.005,1.075,1.152,0.962,0.896,0.97,1.249,0.984,1.053,1.013,0.822,1.035,1.005,0.945,0.983,1.056,0.909,1.08,1.076,1.128,1.218,0.975,0.962,1.079,0.808,0.983,1.006 +NM_014496,1.113,1.079,1.016,0.98,1.129,1.046,1.044,1.068,1.079,1.008,0.92,0.936,0.945,1.072,1.054,1.155,0.97,1.011,1.162,1.006,1.086,1.282,0.977,1.047,0.98,0.954,0.843,1.03,1.152,1.081,0.928,1.074,0.868,1.009,0.919,0.866,0.982,0.847,0.893,1.188,0.94,0.99,0.99,0.857,0.991,0.917,0.992,0.965,0.907,1.022,0.997,1.039,0.962,1.086 +NM_014497,0.693,0.822,1.657,0.72,1.054,0.969,0.631,0.437,1.288,1.143,0.873,0.749,0.581,0.784,0.951,1.212,0.823,0.833,1.096,1.162,0.646,0.855,1.126,0.813,0.666,0.72,1.38,0.916,0.443,1.211,1.045,1.509,2.595,1.179,0.46,0.558,0.871,1.013,1.344,1.035,0.998,1.1,0.639,0.852,0.936,1.116,0.898,0.733,0.828,0.897,1.174,0.634,0.628,1.794 +NM_014498,0.389,1.409,0.702,0.597,0.573,1.506,1.038,0.589,0.771,0.611,1.382,0.623,0.484,0.444,0.974,2.366,0.588,0.682,0.481,1.0,0.575,0.687,1.38,0.681,0.831,0.425,0.713,0.543,0.59,2.39,0.543,1.804,0.848,2.594,0.403,0.871,2.074,0.608,1.156,1.378,0.757,3.547,1.074,1.207,0.688,2.196,1.858,0.488,2.524,0.488,1.714,0.686,0.607,1.229 +NM_014499,0.922,0.91,0.936,1.188,1.11,1.009,1.104,0.963,0.968,0.955,1.03,0.965,0.814,0.943,0.965,1.054,0.832,1.074,1.101,1.146,1.185,0.869,1.061,1.05,0.977,0.954,0.83,1.042,1.226,1.062,0.991,0.993,1.007,1.064,1.063,1.15,1.002,1.014,1.065,0.97,1.202,0.983,0.921,0.944,1.02,0.812,1.029,0.982,1.022,1.026,0.929,1.061,0.965,0.978 +NM_014500,0.612,0.968,1.093,0.832,0.855,1.097,0.697,0.52,1.069,0.923,1.15,0.61,0.576,0.626,0.841,1.453,0.747,0.846,1.065,1.083,0.645,0.612,1.177,0.868,0.72,0.816,0.984,0.793,0.546,1.175,0.825,1.47,2.07,1.618,0.452,1.103,0.894,0.798,1.272,0.669,0.849,1.3,0.76,1.85,0.839,1.104,0.951,0.726,0.96,0.687,1.053,0.996,0.965,1.291 +NM_014501,0.859,0.752,0.872,1.004,1.083,0.806,0.545,0.702,0.995,1.123,0.585,0.986,0.971,0.611,0.756,1.24,0.76,0.853,1.296,0.502,1.114,1.252,1.63,1.278,0.505,1.556,1.672,0.926,0.32,0.633,0.84,1.149,3.231,0.724,1.519,1.943,0.657,0.996,2.151,1.518,1.044,0.533,0.563,2.243,1.221,0.657,1.363,1.699,1.104,1.099,0.962,1.17,1.128,1.598 +NM_014502,0.604,1.185,1.338,0.426,1.139,0.734,0.432,0.382,1.228,1.491,0.501,1.174,0.508,0.551,0.678,0.947,1.02,0.958,1.197,0.863,0.686,0.969,1.458,1.114,0.539,1.217,1.358,1.103,0.346,0.987,0.897,1.2,1.254,0.753,0.147,3.571,0.789,1.282,1.35,1.518,1.501,1.012,0.604,2.085,1.149,0.69,1.271,0.847,1.14,0.825,0.925,0.782,1.198,1.13 +NM_014504,1.009,0.686,1.265,0.674,1.139,1.169,0.641,0.988,1.722,1.162,0.933,1.048,0.817,1.223,1.299,1.209,0.915,0.837,1.368,0.838,0.766,0.72,1.238,1.362,0.643,1.102,1.235,1.271,0.341,1.346,1.707,1.031,1.332,1.215,0.577,0.761,0.674,1.254,0.831,1.11,1.381,0.938,0.71,0.749,1.251,0.838,0.873,0.89,0.801,0.918,0.986,0.842,1.223,1.323 +NM_014505,0.933,0.956,1.004,0.944,0.989,1.129,0.886,1.175,0.891,0.823,0.994,1.016,0.914,1.081,0.825,1.039,0.831,1.069,0.834,0.954,0.878,0.885,1.097,0.906,1.099,1.01,0.965,0.962,0.714,1.245,1.022,2.009,1.285,1.37,0.904,0.991,0.971,1.162,0.958,3.063,0.909,1.067,1.113,1.64,1.177,0.872,1.155,0.849,1.037,0.934,0.87,0.926,0.94,1.663 +NM_014506,0.779,1.096,0.936,0.805,0.826,0.971,0.947,0.592,0.888,0.901,1.154,0.708,0.658,0.897,0.955,1.162,0.808,1.032,0.938,1.025,0.707,0.802,1.021,0.815,0.743,0.761,1.177,0.696,0.683,1.127,0.94,1.931,1.699,1.438,0.561,0.828,1.187,0.741,1.638,1.026,0.931,1.083,0.667,1.922,0.935,0.91,0.99,0.874,0.872,0.844,0.981,0.929,0.814,2.244 +NM_014507,0.785,0.996,0.912,0.912,0.85,1.081,0.719,0.655,0.872,0.915,1.043,0.908,0.639,0.62,0.909,1.395,0.836,0.965,1.189,0.976,0.766,0.81,1.352,1.06,0.805,1.006,0.906,0.833,0.726,1.162,0.797,0.985,1.508,1.382,0.438,0.979,1.071,0.885,1.533,0.927,1.014,1.011,1.072,0.799,1.025,0.869,0.808,0.83,1.039,0.832,1.171,0.952,0.935,1.3 +NM_014508,1.122,1.034,1.008,0.885,1.055,1.069,1.179,1.078,0.961,0.901,0.981,0.999,1.063,0.834,0.92,0.938,0.941,0.908,1.06,0.882,1.027,1.104,1.003,0.947,1.041,1.046,1.159,0.946,0.898,1.08,0.919,1.161,0.917,1.131,0.78,0.75,0.926,1.079,1.001,1.118,0.98,0.931,0.822,0.894,1.078,0.885,0.935,1.091,0.773,1.114,1.055,0.915,0.929,1.23 +NM_014511,0.95,1.005,0.912,0.986,0.918,1.023,1.03,1.036,1.087,1.175,1.134,0.979,1.087,1.025,1.024,0.921,1.025,0.873,1.109,1.008,1.17,0.984,0.919,0.989,1.0,1.018,1.04,0.964,0.959,0.906,1.186,1.005,0.973,0.986,0.9,1.008,1.017,1.002,1.042,0.92,0.933,0.999,0.971,0.925,0.95,0.892,0.989,0.956,1.071,0.91,1.048,0.995,1.0,0.874 +NM_014512,1.131,1.032,1.049,1.047,0.921,1.078,1.259,0.9,0.976,1.086,0.976,0.987,0.884,0.956,0.952,0.858,0.85,1.07,0.942,0.911,0.91,1.136,0.899,1.043,0.98,1.157,0.928,1.084,1.078,1.035,1.058,0.984,0.957,1.167,1.006,0.883,0.828,1.077,1.025,0.978,1.006,1.011,0.772,0.962,1.058,1.238,0.967,1.091,1.144,1.182,1.024,1.125,0.989,0.965 +NM_014514,1.003,1.081,1.171,0.93,1.093,1.14,1.001,1.001,0.969,0.937,0.97,0.981,0.959,1.05,1.245,0.974,1.027,1.06,1.146,0.874,1.037,0.925,0.844,0.991,1.063,1.022,0.999,1.041,1.183,1.052,0.945,1.192,0.931,1.01,0.974,0.982,0.973,1.062,0.986,0.985,1.019,0.993,1.151,1.207,1.054,1.04,0.996,0.996,0.936,0.988,1.057,0.944,0.895,0.915 +NM_014515,0.661,0.668,1.219,0.674,0.839,1.222,0.599,0.785,1.009,0.836,1.192,1.034,0.759,0.676,0.925,1.722,0.679,0.844,1.179,1.12,0.612,0.843,1.151,1.208,0.654,0.812,1.15,0.714,0.446,1.132,0.833,1.012,1.488,1.359,0.315,1.495,1.237,0.897,1.132,1.289,0.935,1.122,0.674,0.994,0.797,1.006,0.849,0.751,1.035,0.776,0.917,1.022,1.095,1.461 +NM_014516,1.0,0.92,0.93,0.991,0.811,1.072,0.657,0.768,0.918,0.746,0.895,0.894,0.908,0.851,0.961,1.175,0.937,0.97,1.221,0.847,1.044,0.979,1.029,0.813,1.056,1.34,1.19,0.662,0.781,1.01,0.901,1.112,1.686,1.218,0.763,0.869,0.93,0.938,2.12,1.235,0.864,1.0,0.86,1.767,1.09,0.797,0.943,1.215,0.902,1.199,0.945,0.841,0.886,1.193 +NM_014517,0.764,1.082,1.04,0.793,0.697,1.352,0.655,0.424,0.948,0.822,1.241,0.799,0.662,0.551,0.854,1.701,0.721,0.859,1.097,1.185,0.514,0.649,1.429,0.97,0.762,0.649,1.13,0.701,0.379,1.061,0.755,0.839,1.37,1.241,0.19,1.01,1.339,0.745,1.515,0.77,0.947,1.275,0.758,0.86,0.924,1.19,0.694,0.622,1.097,1.003,1.221,0.771,0.705,1.895 +NM_014519,0.835,0.811,0.934,0.811,0.958,1.213,0.88,0.729,0.823,1.118,1.351,0.856,0.862,0.719,1.277,1.695,0.88,0.844,0.944,1.007,0.787,0.766,1.29,0.898,0.781,0.635,0.921,0.745,0.696,1.15,1.037,1.352,2.171,1.158,0.626,0.97,1.06,1.059,1.111,1.317,1.056,1.084,0.908,1.107,0.762,1.103,1.09,0.871,0.935,0.85,1.001,0.811,0.771,1.973 +NM_014520,0.928,0.832,1.058,1.055,0.846,0.836,0.961,0.581,1.251,1.204,0.808,0.882,0.754,0.892,0.961,1.126,0.961,0.798,1.147,0.77,0.895,0.89,1.246,1.24,0.906,1.066,1.064,0.886,0.729,0.939,1.051,1.072,1.425,1.063,0.732,1.001,0.969,0.974,1.072,1.052,0.878,1.106,0.984,1.416,1.301,0.861,0.937,0.982,0.982,1.056,1.057,1.139,1.22,1.221 +NM_014521,0.406,1.761,0.797,0.825,0.482,2.054,0.755,0.307,0.432,0.463,2.075,0.466,0.457,0.474,0.791,2.034,0.477,0.806,0.669,1.378,0.46,0.425,2.537,0.506,0.968,0.426,0.703,0.397,0.73,2.211,0.475,2.836,1.714,2.406,0.271,0.812,1.679,0.598,1.849,0.932,0.453,2.005,0.888,2.94,0.479,1.47,0.589,0.423,0.987,0.498,1.776,0.872,0.926,3.331 +NM_014522,1.975,2.0309999999999997,1.972,2.018,2.134,2.0,2.324,2.092,1.899,2.068,1.832,2.038,1.93,1.9979999999999998,2.12,1.857,1.915,1.935,2.053,2.0940000000000003,2.069,1.763,2.096,2.1340000000000003,2.086,2.209,1.992,1.928,2.0380000000000003,1.949,2.0300000000000002,1.932,1.813,2.021,2.069,1.903,1.96,2.222,1.929,1.816,2.048,2.034,1.8809999999999998,2.059,1.92,1.934,1.8889999999999998,2.1029999999999998,1.954,2.018,2.0620000000000003,1.983,1.893,2.097 +NM_014547,2.021,0.857,1.308,0.965,2.272,0.871,0.767,1.301,3.308,1.256,0.688,1.593,1.565,1.077,1.1,0.848,1.22,1.134,1.379,0.928,0.945,1.269,0.972,1.349,0.697,1.596,1.167,2.855,0.62,0.781,1.917,0.638,1.035,0.808,5.145,0.982,0.871,1.887,1.321,0.775,2.158,0.692,1.052,0.884,1.418,1.017,1.841,1.753,1.095,1.313,0.963,0.886,1.273,0.973 +NM_014548,1.035,1.007,0.974,0.896,0.891,0.962,0.899,1.068,1.112,0.961,0.953,1.068,0.855,0.999,0.777,1.013,0.862,1.172,1.033,1.21,0.989,0.924,1.014,1.001,1.01,0.97,1.049,0.925,0.795,1.058,1.047,0.959,1.109,0.954,0.874,0.923,0.912,0.99,1.055,1.045,0.82,0.913,0.81,1.14,1.059,0.925,1.126,1.11,0.929,0.96,1.085,0.996,0.969,1.041 +NM_014549,1.028,0.911,0.892,1.098,0.965,0.992,1.027,0.959,0.949,0.976,1.006,1.019,1.004,1.101,0.975,1.014,0.947,1.133,0.91,0.907,1.127,1.027,0.957,0.89,0.963,1.034,0.87,1.042,0.927,1.057,1.117,0.94,1.083,0.994,1.1,1.096,0.893,1.01,0.898,1.201,0.949,0.971,0.969,1.062,1.077,0.921,1.034,0.933,1.077,1.091,0.936,0.966,1.009,0.881 +NM_014550,0.543,0.808,0.697,0.849,0.51,1.734,0.806,0.325,0.541,1.053,2.012,0.432,0.5,0.392,1.375,3.449,0.615,0.869,0.589,1.055,0.532,0.51,1.879,0.662,0.866,0.464,0.94,0.395,0.828,1.444,0.662,0.938,0.939,1.535,0.386,0.683,1.766,0.594,2.556,1.426,0.602,1.645,1.471,1.553,0.739,1.184,0.889,0.411,1.918,0.7,1.625,0.931,0.713,1.901 +NM_014551,1.836,1.772,1.946,1.779,1.7040000000000002,2.061,1.863,1.9509999999999998,2.1079999999999997,2.058,1.887,1.976,2.075,1.664,1.958,1.986,2.045,1.97,2.136,1.6320000000000001,2.129,1.661,1.994,2.044,1.929,2.25,2.346,1.982,1.5630000000000002,2.113,2.079,2.141,2.133,2.072,1.9619999999999997,2.0829999999999997,1.841,1.8639999999999999,2.463,1.919,2.039,1.834,2.0170000000000003,2.144,2.161,1.9929999999999999,2.1479999999999997,2.136,2.261,1.984,1.859,1.8250000000000002,1.9849999999999999,2.103 +NM_014552,1.117,1.005,1.295,0.943,1.095,1.08,0.931,1.309,1.302,0.934,0.87,0.847,1.043,0.973,1.054,0.92,1.028,1.129,1.087,1.07,1.106,1.081,1.133,1.183,1.07,1.09,1.293,1.241,1.227,0.804,1.138,1.024,0.801,0.934,1.444,0.972,0.862,1.176,0.898,0.951,1.15,0.801,1.224,0.953,1.043,0.795,1.049,1.12,0.892,1.022,0.987,1.221,1.072,0.784 +NM_014554,1.057,0.972,1.214,1.058,1.16,1.062,1.092,0.865,0.9,0.904,0.995,0.97,1.089,1.11,0.785,0.831,1.114,0.966,0.874,0.969,0.859,0.941,1.039,1.002,1.001,0.89,1.102,1.097,0.803,1.162,0.958,1.009,0.801,0.944,1.092,0.934,0.895,1.059,1.153,1.045,0.93,0.971,0.917,1.049,0.945,0.823,1.111,0.992,1.101,0.95,1.091,1.05,1.083,0.889 +NM_014555,1.049,0.938,1.1,0.9,0.965,1.006,0.901,1.027,0.963,0.904,1.042,1.049,0.884,1.216,0.873,1.054,0.918,0.943,1.014,1.057,1.008,0.903,0.896,1.046,1.096,1.053,1.125,0.902,0.902,1.037,0.942,0.973,1.1,1.037,1.061,1.073,1.108,0.958,0.985,1.021,0.875,1.015,1.049,0.881,1.04,0.952,1.124,1.002,0.991,0.891,0.96,0.903,0.927,1.052 +NM_014556,1.121,0.942,1.496,0.919,1.026,0.867,0.829,0.783,1.51,0.915,0.884,1.018,0.857,1.206,0.94,0.804,1.082,0.914,0.945,0.876,0.991,1.081,0.775,1.005,0.989,1.164,1.332,1.059,0.472,1.282,1.1,5.732,1.053,1.336,1.098,0.838,0.788,1.367,1.018,1.283,1.322,1.258,0.836,0.683,0.931,0.841,0.894,0.996,0.684,0.908,0.931,0.858,1.219,0.954 +NM_014562,1.119,0.876,0.963,0.903,1.209,1.098,1.026,0.769,0.993,1.048,0.987,0.977,0.982,0.975,0.935,1.095,1.014,1.006,0.986,0.957,0.913,0.954,1.084,1.25,0.934,1.001,1.047,0.927,1.031,1.093,0.78,1.207,1.042,0.893,0.948,1.037,0.847,0.885,1.122,1.021,1.0,0.967,0.892,1.382,1.057,1.158,1.023,1.016,0.925,0.97,1.009,0.88,1.114,1.233 +NM_014564,1.033,0.973,1.137,0.967,0.999,1.057,1.029,1.022,0.941,0.828,1.078,1.043,0.854,0.923,0.974,1.184,1.069,1.066,0.868,1.051,1.114,1.045,1.186,0.831,1.234,0.98,0.89,1.006,0.923,0.936,1.07,0.824,1.218,0.814,1.06,1.098,1.088,1.05,0.939,1.033,0.975,0.995,1.314,1.044,1.005,1.297,0.943,1.027,1.014,1.1,0.975,1.085,0.948,0.914 +NM_014565,0.985,1.111,0.911,0.935,1.112,1.112,1.412,1.019,0.867,1.013,0.931,0.961,1.058,1.013,1.058,0.989,1.136,0.977,1.024,1.134,0.969,1.153,0.934,0.959,1.014,0.872,0.972,1.072,1.136,1.024,1.205,1.107,1.147,0.951,1.203,0.889,0.856,1.007,1.068,1.144,0.94,0.845,1.228,0.944,0.998,0.827,1.115,1.171,0.966,1.04,0.9,0.95,1.036,1.038 +NM_014566,0.933,1.124,0.999,0.959,1.014,1.001,1.044,1.107,0.869,0.855,0.936,0.914,1.225,1.202,1.002,1.153,0.816,0.863,0.966,0.988,0.912,0.987,1.024,0.87,0.961,1.083,1.008,1.063,0.84,1.007,0.92,0.919,1.029,1.116,1.025,0.908,1.007,1.039,0.999,0.977,0.787,1.038,1.175,1.0,1.053,1.083,0.907,1.042,0.957,1.112,0.869,0.956,1.032,0.922 +NM_014567,0.804,1.163,0.757,1.168,0.647,1.411,0.707,0.528,0.656,0.729,1.082,0.61,0.641,0.613,0.704,1.024,1.716,1.049,0.859,0.731,0.62,0.802,0.961,0.681,1.456,0.891,0.827,0.591,2.091,1.386,0.542,1.371,1.015,1.322,0.632,0.927,1.098,0.835,2.956,0.972,0.741,1.214,1.38,1.985,0.617,0.873,0.9,0.894,1.083,0.834,0.931,0.781,0.715,0.996 +NM_014568,0.873,0.825,0.838,0.982,0.759,1.194,1.086,1.023,1.089,0.949,1.268,0.667,0.77,0.918,0.934,1.101,0.76,1.163,0.866,1.218,0.925,0.82,1.5,0.924,0.868,0.908,1.317,0.778,0.938,1.266,1.276,0.776,1.224,1.412,0.716,1.027,1.017,0.765,1.851,0.981,1.075,1.002,0.895,1.796,1.22,1.239,0.983,0.777,0.853,0.731,1.584,1.135,0.754,0.977 +NM_014569,1.039,0.903,0.862,0.989,1.063,1.073,0.881,1.036,0.928,0.909,0.936,0.985,0.952,0.961,0.916,0.989,1.046,0.886,1.2,1.061,0.951,0.868,0.838,1.094,0.942,1.109,1.197,0.935,1.024,0.936,1.042,0.881,0.938,0.951,0.946,1.0,1.017,1.065,1.102,0.992,1.06,1.002,0.915,0.947,1.133,0.905,0.884,0.984,1.048,0.978,1.009,1.04,1.071,1.082 +NM_014570,0.493,1.033,0.962,0.9,0.529,1.127,0.726,0.322,0.862,0.594,1.933,0.438,0.493,0.515,1.209,1.8,0.674,0.729,0.84,1.501,0.593,0.425,1.411,0.535,1.093,0.538,0.709,0.562,0.404,1.199,0.688,1.182,1.424,1.278,0.379,0.823,1.643,0.562,1.448,1.037,0.721,1.463,1.32,1.144,0.553,2.048,0.968,0.401,1.617,0.577,1.532,0.871,0.822,1.407 +NM_014571,0.941,1.003,1.051,0.923,1.103,0.997,0.97,0.929,0.851,0.791,0.996,0.911,0.851,1.086,1.319,1.04,0.869,1.083,0.825,0.917,0.893,0.873,1.063,0.962,0.978,0.818,1.012,0.784,1.032,1.102,1.081,2.693,2.545,1.171,0.904,0.962,0.812,1.106,1.304,1.605,0.996,1.113,1.082,0.845,0.899,0.882,0.8,0.931,0.865,0.933,0.856,1.437,0.894,1.429 +NM_014572,1.052,0.92,0.91,0.802,1.065,0.824,0.88,1.0,1.077,0.885,0.918,1.009,1.168,0.786,1.053,0.901,0.969,0.937,1.154,0.826,1.139,1.086,0.924,0.899,0.932,0.962,0.875,1.195,0.804,0.975,1.131,1.45,1.233,0.97,1.454,1.01,0.872,1.032,1.1,1.489,1.077,1.091,0.834,0.931,1.044,0.76,0.935,1.02,0.769,0.888,0.875,1.106,1.26,1.195 +NM_014573,0.208,1.863,0.325,1.007,0.378,2.317,1.155,0.21,0.383,0.439,1.681,0.462,0.331,0.211,0.604,1.534,0.266,0.844,0.442,1.129,0.224,0.331,3.02,0.487,1.465,0.288,0.516,0.289,0.691,2.868,0.248,1.564,3.068,2.164,0.107,0.857,1.453,0.366,2.314,0.702,0.367,1.761,0.669,1.773,0.369,1.329,0.785,0.289,1.338,0.279,1.576,0.985,0.25,1.201 +NM_014574,0.7,1.099,1.125,0.872,0.855,1.016,0.761,0.493,0.967,1.038,0.897,0.672,0.785,0.686,0.927,1.28,0.685,0.823,0.972,1.179,0.725,0.594,1.02,0.796,0.785,0.61,1.185,0.814,0.62,0.948,1.002,1.103,1.214,1.089,0.535,0.81,1.096,0.724,1.084,0.961,0.929,1.088,0.907,1.265,0.831,1.199,0.93,0.652,1.119,0.998,1.043,1.016,1.159,1.668 +NM_014575,1.024,0.933,1.009,0.913,0.933,1.216,0.874,0.874,0.878,0.909,1.097,0.921,0.892,1.144,0.834,1.115,1.007,0.973,0.899,0.941,1.041,1.071,1.04,0.984,0.885,1.27,0.786,0.989,1.03,0.986,1.089,1.579,1.091,0.96,0.848,1.054,1.018,0.941,0.919,1.207,1.215,1.11,0.807,0.963,0.96,1.124,1.021,1.1,1.109,0.946,1.044,1.229,1.174,0.967 +NM_014576,0.877,0.834,0.74,1.326,0.646,2.915,0.907,0.789,0.733,0.674,4.275,0.756,0.853,0.696,4.153,5.023,0.751,1.04,0.805,3.531,0.781,0.82,2.907,0.767,0.807,0.7,0.824,0.713,1.139,1.14,0.808,0.751,1.268,1.648,0.747,1.634,5.68,0.824,1.667,1.205,0.776,3.604,2.752,1.329,0.728,3.904,2.153,0.668,4.803,0.743,3.09,0.907,0.823,0.818 +NM_014577,0.796,1.002,1.297,0.883,0.948,0.931,0.755,0.639,1.444,1.009,0.818,0.79,0.715,0.873,1.073,0.941,1.031,1.059,1.129,0.947,0.89,0.882,1.11,1.058,0.816,0.956,1.186,0.913,0.696,1.109,1.092,1.122,1.104,1.154,0.78,0.803,0.942,0.945,0.965,0.81,1.172,1.15,0.884,0.883,0.968,0.996,1.005,0.919,0.958,0.909,0.87,0.769,1.21,1.183 +NM_014578,2.628,0.389,1.445,0.913,2.301,0.835,0.545,3.547,2.006,1.842,1.031,2.625,2.242,1.32,1.28,2.133,1.171,2.027,3.446,0.532,1.62,2.079,0.53,2.779,0.406,4.128,1.137,2.316,0.631,0.608,2.78,0.706,1.686,0.799,2.521,0.784,0.635,2.299,1.25,0.368,1.994,0.476,0.318,0.462,2.009,0.631,1.904,4.4,0.481,2.025,0.783,0.984,1.727,1.411 +NM_014579,1.753,0.653,2.945,1.026,2.015,0.687,0.689,1.365,2.56,1.794,0.697,2.181,1.574,1.542,1.722,1.145,1.775,1.368,4.499,0.812,1.325,1.714,0.864,1.996,0.661,1.638,2.114,1.655,0.9,0.677,2.082,0.648,1.507,0.64,0.707,0.689,0.68,2.147,0.601,0.685,2.275,0.777,0.657,0.692,1.714,0.783,1.16,1.368,0.772,1.752,0.895,1.388,1.706,1.135 +NM_014580,0.652,1.528,0.86,0.856,0.788,1.068,0.863,0.395,0.838,0.76,1.264,0.967,0.534,0.55,0.871,1.088,0.681,1.177,0.984,1.068,0.487,0.496,1.259,0.942,0.703,0.892,0.993,0.608,0.638,1.49,0.579,1.209,1.582,1.798,0.359,1.302,1.23,0.579,1.615,1.882,0.903,1.229,1.015,2.883,0.92,1.771,1.071,0.641,1.189,0.678,1.469,0.702,0.88,1.156 +NM_014581,1.017,1.025,1.063,0.923,1.006,0.944,0.997,0.991,1.065,1.044,0.963,1.172,0.928,1.149,0.796,0.95,1.065,1.013,0.814,1.017,0.974,0.964,1.042,1.038,1.002,1.06,1.139,0.952,0.871,1.017,1.032,1.026,1.078,1.027,1.014,0.949,1.053,1.037,0.918,1.001,0.932,0.922,0.857,1.018,0.996,0.854,1.036,0.996,1.083,1.06,0.993,1.132,0.945,0.955 +NM_014582,1.172,1.075,0.984,1.014,0.923,0.943,1.107,0.989,1.217,1.062,1.015,0.911,0.884,0.743,0.705,0.918,0.924,0.955,0.962,0.839,0.987,0.978,0.918,0.97,0.979,1.124,1.08,1.074,0.82,1.156,0.984,1.114,1.008,1.052,1.077,0.936,0.946,0.949,1.038,1.036,0.932,1.027,0.854,0.996,0.99,0.892,0.999,1.059,0.964,0.982,0.993,1.063,0.892,0.957 +NM_014583,0.775,1.37,0.835,0.911,0.886,1.152,0.705,0.903,1.076,0.873,0.984,0.862,0.696,0.947,0.941,1.328,0.552,0.911,1.14,1.035,0.547,1.282,1.738,0.973,0.906,0.995,1.066,1.097,0.38,1.832,0.853,3.541,1.576,2.447,0.442,0.96,0.973,1.518,1.657,1.002,1.024,2.343,0.866,1.17,0.602,0.687,0.868,1.025,0.586,0.644,1.037,0.913,0.764,0.91 +NM_014585,0.191,2.85,0.415,0.84,0.291,2.366,0.86,0.152,0.19,0.189,2.656,0.194,0.178,0.189,0.918,2.409,0.281,1.17,0.381,1.493,0.154,0.194,2.068,0.232,0.682,0.216,0.392,0.244,0.639,1.846,0.185,1.041,1.336,2.622,0.142,1.335,2.554,0.275,1.3,0.446,0.301,2.438,0.964,2.473,0.249,1.557,0.777,0.166,2.595,0.253,1.677,0.491,0.297,1.843 +NM_014586,1.078,1.042,0.874,0.949,0.859,0.872,1.059,1.132,1.027,0.992,1.016,1.156,0.973,0.964,1.01,0.961,0.975,0.922,0.884,1.062,1.047,0.893,0.919,0.985,1.019,1.123,1.136,1.005,1.409,1.055,0.963,1.14,1.005,1.018,1.061,0.989,0.977,1.087,1.019,1.05,0.986,0.882,1.288,1.15,0.944,1.057,0.962,1.003,0.962,1.047,1.048,0.93,0.978,1.038 +NM_014587,0.969,1.105,0.939,0.969,0.886,0.874,0.994,0.796,0.829,0.842,1.007,0.943,1.125,0.824,1.006,1.067,0.944,0.916,0.938,1.093,0.887,1.161,1.099,1.008,0.941,0.86,0.922,0.955,1.075,1.18,0.867,0.94,0.958,1.298,1.048,1.045,1.035,0.874,1.015,1.726,0.798,1.192,1.094,4.372,0.948,1.15,0.991,1.077,0.85,0.958,0.916,0.945,1.098,0.996 +NM_014588,0.981,0.822,1.002,0.932,1.005,1.009,0.893,0.998,0.874,0.918,0.98,0.978,0.874,0.873,1.089,0.962,0.97,0.812,0.985,0.996,1.012,1.019,0.847,1.07,1.022,0.97,1.063,0.993,0.753,1.029,0.988,0.901,1.016,1.015,1.078,0.892,0.926,1.003,1.087,0.963,1.031,1.119,1.07,0.991,1.006,0.951,1.065,0.978,1.067,0.916,1.019,0.853,1.031,0.946 +NM_014589,0.99,0.994,0.937,1.039,1.046,1.016,1.083,0.907,1.01,0.952,0.961,1.021,0.937,0.953,1.13,0.995,0.969,0.891,1.013,0.875,1.043,1.047,1.014,1.026,1.028,0.998,0.959,0.976,1.191,1.058,1.019,0.958,1.122,0.847,0.853,1.093,1.083,1.093,0.994,0.961,0.89,1.063,0.813,1.035,0.924,1.143,0.929,1.059,1.056,0.846,0.911,1.005,0.821,0.995 +NM_014592,0.971,1.019,1.037,0.998,1.004,1.111,0.997,1.056,0.966,0.98,0.965,0.907,1.059,1.01,1.165,1.061,0.958,0.811,0.96,0.915,0.947,0.78,1.016,1.123,0.937,0.989,1.074,0.985,1.546,0.945,0.951,0.931,1.169,1.121,0.943,0.929,0.989,1.033,0.975,0.989,1.001,0.983,0.971,0.861,0.968,0.867,1.012,0.938,0.906,1.004,1.03,1.034,1.017,0.934 +NM_014593,0.789,1.075,1.058,0.709,0.95,1.156,0.71,0.513,0.982,1.089,0.905,0.953,0.651,0.574,0.81,1.317,1.035,0.916,1.028,1.325,0.692,0.694,1.095,0.818,0.751,0.894,1.172,0.835,0.564,1.514,0.833,1.273,1.168,1.348,0.49,1.418,0.953,0.813,1.315,0.773,0.942,1.111,1.053,1.163,0.998,1.101,0.959,0.64,1.044,0.831,1.04,0.827,0.96,0.983 +NM_014594,1.025,0.995,1.093,0.889,1.058,0.933,0.868,1.034,0.946,0.939,1.003,0.925,0.972,0.948,0.969,1.006,1.016,0.963,0.937,0.992,1.154,1.026,0.943,1.125,1.076,0.999,0.951,1.063,1.049,0.976,1.123,0.908,1.149,1.022,0.972,1.044,0.92,0.944,0.98,0.95,0.894,0.832,0.83,0.832,1.056,1.012,1.13,1.066,0.881,0.997,1.006,1.016,1.035,0.717 +NM_014595,0.666,0.917,0.918,0.817,0.732,1.382,0.912,0.539,0.941,1.053,1.099,0.827,0.794,0.41,1.112,2.133,0.871,1.009,0.984,1.072,0.666,1.026,1.113,1.171,0.741,0.767,1.111,0.899,0.704,0.925,0.872,1.426,1.228,1.476,0.433,0.997,0.844,0.86,1.552,0.82,0.932,1.141,0.753,1.424,1.065,1.014,1.271,0.855,1.384,0.819,0.961,0.695,0.776,1.229 +NM_014596,0.773,1.131,0.998,0.727,0.778,1.125,0.794,0.555,0.962,1.061,1.022,0.834,0.888,0.566,0.814,1.215,0.773,1.024,0.98,1.074,0.698,0.828,1.258,0.979,0.678,1.13,1.06,0.859,0.488,1.152,0.914,1.563,1.939,1.257,0.535,1.238,1.053,1.108,2.106,0.932,0.882,1.042,0.594,1.603,0.919,0.911,1.197,0.805,1.313,0.796,0.939,0.868,0.949,1.612 +NM_014597,0.711,0.997,1.154,0.583,0.938,1.143,0.684,0.65,1.404,1.39,0.86,0.658,0.733,0.647,0.937,1.527,0.966,0.744,1.013,0.884,0.594,1.068,1.122,1.283,0.597,0.716,1.795,0.916,0.623,1.211,1.216,1.032,3.156,1.219,0.327,0.67,0.914,1.27,1.415,0.915,1.277,1.038,0.679,0.749,1.118,0.95,1.013,0.815,0.937,0.863,1.054,0.766,0.956,1.859 +NM_014599,1.591,2.27,1.808,1.8,1.4609999999999999,2.387,1.73,1.305,1.8079999999999998,1.79,2.508,1.561,1.486,1.567,1.72,2.442,1.5619999999999998,2.1660000000000004,1.661,2.606,1.344,1.7309999999999999,2.335,1.666,1.945,1.819,1.8479999999999999,1.633,1.6229999999999998,2.863,1.6280000000000001,3.447,3.383,3.2159999999999997,1.202,2.293,1.9020000000000001,1.641,2.292,1.838,1.996,3.04,1.5190000000000001,2.16,1.7559999999999998,2.048,1.776,1.5030000000000001,1.641,1.7129999999999999,2.5229999999999997,1.725,1.882,2.379 +NM_014600,1.778,0.834,1.914,0.95,2.06,0.833,0.909,1.917,2.043,2.012,0.849,1.181,1.737,1.387,1.47,1.08,1.299,1.466,1.932,0.98,1.153,1.437,0.927,1.65,0.892,1.577,1.473,1.551,1.203,0.865,2.479,0.974,1.663,0.946,2.78,0.918,0.777,2.135,0.878,0.866,1.321,0.829,0.793,0.793,1.38,0.94,1.16,2.225,0.912,1.546,0.991,0.836,1.291,0.875 +NM_014601,0.867,0.954,1.426,0.763,0.966,0.737,0.7,0.517,0.953,1.186,0.553,0.926,0.696,0.749,0.753,0.653,1.033,1.087,1.426,0.709,1.555,1.22,1.036,1.234,0.758,1.143,1.869,0.771,0.554,0.94,0.85,3.224,2.227,1.211,0.416,0.605,0.585,1.555,1.655,1.434,1.182,1.088,0.446,1.748,1.299,0.552,0.924,0.967,0.416,1.266,0.915,1.879,1.134,0.831 +NM_014602,0.909,1.089,0.843,0.938,0.869,0.982,0.782,0.919,1.118,1.087,0.947,0.807,0.723,0.855,0.899,1.045,0.988,0.936,1.173,1.017,0.711,0.88,1.203,0.887,0.85,0.801,0.992,0.966,0.689,1.031,1.099,1.431,1.707,0.885,0.857,0.987,0.918,0.886,1.114,1.03,0.832,1.101,0.93,1.405,1.007,0.868,0.863,0.934,0.981,1.086,1.181,1.062,1.25,1.227 +NM_014603,0.749,1.521,0.758,0.875,0.877,1.479,0.941,0.991,0.838,0.907,1.334,0.824,0.817,0.725,0.945,1.654,0.77,0.966,0.804,1.073,0.863,0.852,1.16,0.814,0.841,0.986,0.839,0.695,0.982,1.445,0.898,2.292,1.363,1.094,0.912,1.23,1.05,0.923,2.216,0.965,0.835,1.135,1.204,1.653,0.847,1.019,0.918,0.854,1.045,0.974,1.229,1.005,0.816,1.398 +NM_014604,1.025,0.637,1.705,1.033,0.894,1.436,0.714,0.606,0.973,1.184,1.035,0.915,0.821,0.675,0.993,1.669,1.035,1.071,1.905,1.215,0.812,0.729,1.03,1.23,0.714,1.312,1.252,0.827,0.416,1.34,1.16,0.962,1.171,1.776,0.254,0.735,0.998,0.926,0.814,0.511,1.25,1.092,0.483,0.679,1.569,0.942,0.923,0.966,0.765,1.173,1.299,0.475,1.532,0.755 +NM_014606,0.965,0.856,1.283,1.08,1.03,1.084,0.722,0.908,1.147,0.997,1.132,0.901,0.954,0.846,1.131,1.184,1.069,0.979,1.429,1.072,0.986,0.983,1.025,0.855,0.945,0.933,0.978,1.121,0.621,0.926,1.158,1.079,1.177,1.094,1.066,0.967,0.958,0.92,0.986,0.78,1.016,1.106,0.916,0.969,1.051,1.192,1.015,0.897,1.029,1.247,1.064,0.972,1.358,0.873 +NM_014607,0.515,0.957,0.975,0.778,0.709,1.057,0.591,0.59,1.128,0.802,1.348,0.918,0.527,0.663,1.051,1.647,0.585,0.779,1.448,1.197,0.614,0.672,1.267,0.843,0.8,0.744,1.042,0.774,0.437,1.113,0.779,1.055,1.555,1.29,0.228,1.28,1.334,0.621,0.849,0.811,0.75,1.081,0.823,0.997,0.755,1.204,0.71,0.639,1.065,0.576,1.074,0.793,1.044,1.528 +NM_014608,0.813,0.912,1.337,0.757,1.061,1.028,0.621,0.386,1.224,0.898,1.057,0.642,0.571,0.55,0.895,1.347,0.997,0.872,1.071,1.074,0.672,0.748,1.866,0.926,0.566,0.945,1.27,0.729,0.406,1.042,0.972,1.003,1.31,1.218,1.038,0.781,1.053,0.944,1.451,0.654,0.967,1.295,0.793,0.843,1.19,1.153,0.773,0.981,1.195,1.059,1.179,0.758,1.007,1.179 +NM_014611,1.125,0.988,1.057,0.928,1.045,1.063,0.884,0.957,0.902,1.001,0.859,1.071,0.976,0.968,0.916,0.861,1.053,1.026,0.784,0.97,1.035,0.9,1.004,1.014,0.926,1.072,0.956,0.992,0.718,1.007,1.079,0.96,0.859,0.96,1.026,0.941,0.971,0.887,1.053,0.903,1.033,0.899,0.879,0.999,0.999,0.832,0.932,0.986,0.971,1.01,0.988,0.774,0.983,1.036 +NM_014613,0.545,1.102,1.207,0.487,0.877,1.069,0.58,0.431,1.055,0.888,0.896,0.726,0.407,0.602,0.88,1.293,0.931,0.93,0.989,1.052,0.493,0.853,1.27,0.957,0.492,0.62,1.509,0.874,0.484,1.396,0.854,2.324,3.175,1.139,0.253,0.895,1.315,0.994,1.286,1.034,1.018,1.078,0.702,0.925,0.975,1.151,1.27,0.585,0.988,0.697,1.158,1.264,0.791,2.728 +NM_014614,0.433,1.221,1.174,0.539,0.826,1.294,0.734,0.417,0.905,1.087,0.867,0.689,0.37,0.455,0.861,1.482,0.775,1.078,0.979,0.949,0.447,0.672,1.391,0.875,0.541,0.488,1.468,0.584,0.696,1.163,0.736,0.876,2.635,1.107,0.28,0.947,1.218,0.977,1.97,1.416,0.812,1.142,0.885,1.247,1.008,1.045,1.112,0.467,1.26,0.745,1.288,0.971,0.906,1.866 +NM_014615,0.939,1.031,1.146,0.883,0.786,0.862,0.936,0.587,1.034,0.844,0.83,0.851,0.625,0.971,0.879,0.932,0.778,1.008,0.952,1.025,0.763,1.001,1.105,0.769,1.088,0.925,1.042,0.83,0.807,1.316,0.998,1.351,1.286,1.534,0.539,0.972,0.971,0.94,1.143,1.357,1.143,1.372,0.904,1.286,0.94,1.061,0.961,0.783,0.957,0.796,0.921,0.814,0.986,1.651 +NM_014617,0.986,0.951,1.02,1.028,0.948,1.014,0.73,0.99,0.868,0.96,0.95,1.121,1.016,1.017,0.837,0.951,1.034,0.952,0.889,0.903,0.911,1.02,0.83,1.08,1.05,1.06,1.022,1.031,0.787,1.006,0.981,1.064,0.924,0.917,1.11,1.02,0.91,1.001,1.088,1.035,0.922,1.074,0.863,1.061,1.002,0.937,0.975,0.978,0.924,0.961,0.922,0.941,1.184,0.98 +NM_014618,0.855,1.026,1.14,0.905,1.103,0.99,0.838,0.93,0.786,1.228,1.009,1.29,0.871,1.028,0.884,0.862,1.4,1.056,0.984,0.903,0.962,0.961,0.97,1.113,1.069,1.078,1.412,1.001,0.727,0.945,0.952,1.024,0.984,0.988,0.898,0.804,0.834,1.211,1.059,0.93,1.022,0.944,1.094,0.894,1.132,0.74,1.04,1.246,0.81,1.49,0.8,0.912,1.669,0.857 +NM_014619,1.034,0.918,1.039,0.911,1.12,0.991,0.948,1.207,1.024,0.921,0.815,1.011,0.906,1.034,1.135,1.193,1.091,0.938,1.093,0.968,0.862,1.074,0.962,1.078,0.846,1.047,0.859,0.992,0.883,1.069,1.014,1.069,0.985,0.947,1.119,0.99,1.044,1.112,0.967,0.989,0.974,1.0,0.753,0.97,0.988,0.972,1.046,1.04,1.079,1.054,1.066,1.008,1.069,1.073 +NM_014620,0.825,1.084,0.924,1.187,1.033,0.978,0.93,1.18,1.014,0.82,0.978,0.925,0.87,1.082,1.428,1.378,0.843,0.795,1.111,1.183,0.888,1.044,0.968,0.988,1.072,1.056,1.104,0.946,0.697,1.208,1.029,0.797,1.054,0.966,0.884,0.961,1.163,0.78,0.889,0.945,0.921,0.99,1.013,0.997,1.02,0.812,1.289,0.985,1.009,1.047,0.971,0.826,1.253,1.035 +NM_014621,0.873,1.016,1.048,1.043,1.043,1.047,1.068,0.948,1.055,0.968,1.036,1.04,1.214,1.025,1.034,0.984,1.028,0.87,1.121,1.102,0.907,0.969,0.947,0.979,0.976,1.032,1.185,1.063,1.151,1.032,0.958,1.051,1.093,0.985,0.98,0.944,0.87,0.932,0.995,1.04,1.17,0.916,0.892,1.053,1.035,1.006,0.939,0.965,0.93,0.972,0.989,0.924,1.042,1.119 +NM_014622,0.438,1.982,1.38,0.689,0.403,1.596,0.935,0.354,0.491,0.49,1.528,0.382,0.344,0.417,0.756,1.798,1.029,0.999,0.514,1.307,0.494,0.459,1.295,0.468,0.99,0.48,1.024,0.422,0.66,2.289,0.453,1.714,0.804,2.377,0.275,1.507,1.747,0.464,1.109,1.029,0.829,1.649,0.899,0.734,0.601,1.148,0.501,0.416,1.13,0.623,1.381,0.604,0.572,0.867 +NM_014623,0.824,0.906,1.068,0.779,0.917,1.09,0.705,0.958,0.938,0.887,0.905,1.099,1.054,0.719,1.02,1.358,0.859,0.866,1.227,0.946,0.817,1.026,0.991,1.147,0.688,0.864,1.048,0.89,0.6,0.967,0.987,1.308,2.551,1.38,0.703,1.129,0.794,0.883,1.377,0.827,1.086,0.939,0.572,1.399,1.025,0.673,0.951,0.939,0.784,0.965,0.807,0.7,1.083,1.449 +NM_014625,1.014,0.936,1.033,1.099,1.076,0.975,1.002,1.137,0.953,0.971,1.114,0.979,1.076,1.015,0.909,0.956,1.054,1.16,1.147,0.976,0.959,1.039,1.045,0.879,1.036,1.142,0.885,1.224,1.062,0.917,1.037,1.033,1.027,0.917,1.019,1.06,1.033,0.965,0.993,0.98,0.915,0.968,0.825,0.957,1.175,1.166,1.064,0.976,1.049,1.026,0.912,0.879,1.093,0.937 +NM_014626,1.023,0.944,0.971,1.023,0.911,0.936,0.795,0.95,0.993,0.915,0.94,1.046,0.896,0.829,0.856,0.981,0.992,0.965,1.072,0.966,0.949,0.888,0.982,0.974,1.014,1.06,1.042,0.974,0.606,0.946,1.005,0.93,1.039,1.004,1.031,0.989,1.012,1.09,1.054,0.95,1.001,1.103,0.833,0.995,1.025,0.899,1.003,1.045,0.938,0.999,1.12,0.869,1.132,0.98 +NM_014628,0.539,0.984,1.051,1.052,0.702,1.308,0.78,0.362,0.834,0.79,1.382,0.536,0.546,0.611,0.892,1.694,0.64,0.986,0.864,1.014,0.411,0.566,1.114,0.761,0.68,0.58,0.949,0.58,0.501,1.377,0.593,1.611,1.471,1.336,0.312,1.424,1.221,0.555,1.47,0.902,0.73,1.14,1.091,1.305,0.64,1.202,0.935,0.502,1.257,0.652,1.167,0.773,0.753,1.787 +NM_014629,0.677,1.281,1.001,0.88,0.859,1.282,0.929,0.86,0.792,0.724,1.062,0.806,0.845,0.743,0.992,0.991,0.739,0.832,0.871,1.156,0.741,0.792,1.575,0.941,1.001,0.849,0.89,0.905,0.804,1.398,0.734,2.336,3.373,1.592,0.742,0.999,1.003,0.934,0.869,1.183,0.835,1.415,1.322,1.326,0.826,1.251,0.834,0.85,0.944,0.816,1.581,1.021,0.812,1.032 +NM_014630,0.976,0.903,0.96,0.909,0.931,0.976,0.877,0.96,1.026,1.066,0.91,1.039,0.853,0.983,0.818,0.997,0.991,0.909,1.056,0.966,0.953,0.987,0.92,1.126,1.03,1.056,1.118,0.978,0.867,0.982,0.921,1.117,1.162,1.008,0.854,0.975,0.996,1.035,1.367,0.988,0.966,0.955,0.811,1.145,1.159,0.88,0.974,1.04,1.066,0.952,1.017,0.91,0.825,1.04 +NM_014631,0.981,1.033,1.165,0.841,0.962,0.997,0.983,1.062,1.035,0.949,0.868,0.949,0.941,0.951,0.967,1.052,0.949,0.89,0.981,0.865,1.05,1.097,0.842,0.984,0.98,0.856,0.978,0.988,0.827,1.03,1.057,1.107,1.15,1.014,0.985,1.058,0.996,1.083,1.021,1.169,1.022,1.005,1.108,1.103,0.986,1.003,0.922,0.946,0.961,0.954,1.066,1.039,0.971,0.923 +NM_014632,0.778,0.98,1.0,1.098,0.727,0.905,0.854,0.865,0.949,0.875,1.269,0.92,0.997,0.964,0.922,1.177,0.84,0.877,0.822,1.004,0.846,0.881,1.223,0.828,0.92,0.837,0.93,0.758,0.802,1.102,0.905,1.457,1.297,1.33,0.882,1.049,1.07,0.804,1.145,0.979,0.976,1.03,1.295,0.925,0.933,1.061,0.943,0.901,1.228,0.996,1.048,1.081,0.947,1.173 +NM_014633,0.894,0.804,1.206,0.776,1.101,0.684,0.632,0.457,1.037,1.192,0.876,0.61,0.616,0.813,0.893,1.173,0.991,0.937,1.029,0.934,0.916,0.604,1.185,0.793,0.724,0.888,1.232,0.815,0.994,1.251,0.911,0.98,1.217,1.053,0.592,1.073,1.061,0.821,1.091,0.758,1.133,1.062,0.907,1.031,1.122,1.18,1.02,0.594,1.067,1.217,1.111,0.883,1.083,1.209 +NM_014634,1.233,0.827,1.146,0.783,0.885,0.725,0.719,0.892,1.357,0.884,0.84,1.021,0.943,1.096,1.092,0.907,1.153,0.787,1.184,0.773,1.095,1.382,0.844,1.251,0.88,1.341,1.174,1.219,0.625,0.891,1.139,1.898,1.229,1.258,0.783,0.781,0.727,1.349,1.042,1.352,1.239,1.069,0.628,0.971,1.177,0.711,0.827,1.304,0.68,1.085,0.84,1.227,1.073,1.239 +NM_014635,1.012,1.157,0.833,0.794,1.025,1.273,0.953,1.091,0.997,1.074,0.927,1.003,1.029,0.764,0.773,0.871,0.906,1.08,0.973,1.062,0.912,0.903,0.995,0.974,1.106,1.022,0.98,1.071,1.026,1.207,1.202,1.01,1.169,0.966,1.125,0.992,0.968,0.945,1.262,0.889,1.013,0.888,1.13,1.209,0.969,1.144,1.07,0.906,1.06,0.862,0.991,0.803,0.909,1.187 +NM_014636,0.71,1.313,0.879,0.938,0.728,1.57,0.951,0.72,0.949,0.658,1.542,0.619,0.692,0.778,1.413,1.974,0.693,1.232,0.969,1.801,0.622,0.78,1.305,0.737,0.875,0.644,0.683,0.848,1.124,1.738,0.728,1.417,1.296,1.911,0.604,1.128,1.683,0.813,0.908,0.881,0.641,1.403,1.36,0.942,0.696,1.448,1.004,0.779,1.049,0.687,1.117,0.664,0.687,1.156 +NM_014637,0.631,1.228,1.022,0.732,0.751,1.211,0.672,0.757,0.96,0.773,1.055,0.896,0.827,0.673,1.105,1.889,0.64,0.855,1.468,0.937,0.651,0.994,1.199,0.958,0.941,0.756,1.285,0.792,0.853,1.068,0.958,1.022,2.847,1.535,0.58,1.205,1.232,0.782,1.283,1.437,0.924,1.075,0.589,1.412,0.887,1.356,0.875,0.817,1.266,0.966,0.991,0.731,0.758,1.417 +NM_014639,0.68,0.842,1.452,0.608,0.95,0.981,0.61,0.545,1.314,0.867,1.317,0.737,0.548,0.916,1.115,1.555,0.879,0.853,1.349,0.947,0.737,0.804,1.497,1.033,0.809,0.607,1.13,0.902,0.515,1.272,1.067,1.168,1.314,1.659,0.282,0.575,1.253,0.863,1.008,0.671,1.113,1.316,0.812,0.63,1.042,1.365,0.826,0.465,1.003,0.598,1.467,1.044,1.063,0.867 +NM_014640,1.089,1.07,1.002,1.002,0.916,0.927,0.925,1.069,0.93,1.019,1.051,0.99,0.994,1.107,0.888,0.926,1.097,0.878,1.099,0.996,0.962,1.009,1.061,0.907,0.926,0.957,1.023,1.032,1.182,0.913,1.043,0.844,0.871,1.091,1.112,1.081,0.981,0.818,1.015,0.988,1.036,1.051,1.095,1.144,0.989,1.131,0.941,0.984,0.91,1.123,0.968,0.996,0.931,1.049 +NM_014641,0.801,1.072,1.082,0.918,0.864,0.894,1.007,0.733,1.083,0.91,0.859,0.874,0.753,0.795,0.835,1.018,0.915,0.838,1.12,0.812,0.915,0.844,1.205,0.976,0.814,0.786,1.404,0.817,0.722,1.069,0.964,1.616,3.39,1.075,0.618,1.153,0.987,0.93,1.535,1.738,1.073,1.098,1.043,1.572,0.996,1.118,0.903,0.739,1.114,0.786,1.005,1.06,0.952,1.67 +NM_014642,0.965,0.985,1.046,0.992,0.985,0.958,0.8,0.887,1.155,0.964,1.094,1.0,0.844,0.895,1.097,1.124,0.901,0.972,0.881,0.992,0.901,0.894,1.179,1.035,0.93,1.021,0.989,0.958,1.573,1.216,0.96,1.322,1.633,1.501,0.769,0.968,0.863,0.979,1.033,1.037,1.293,1.048,0.832,1.208,0.972,0.981,1.055,0.868,1.102,0.941,0.978,0.943,0.926,2.012 +NM_014643,1.008,0.945,1.092,0.761,1.03,1.1,1.073,0.976,1.184,0.842,0.926,1.112,0.978,0.975,0.986,1.061,1.072,0.965,1.044,1.103,0.878,1.212,0.914,1.037,0.825,0.832,1.38,0.939,0.889,1.006,1.11,1.13,0.932,1.0,0.995,0.872,0.887,1.045,1.234,1.171,1.123,1.054,0.819,0.864,1.046,0.955,1.041,0.947,0.915,1.087,1.0,0.843,0.884,1.134 +NM_014645,0.957,0.932,1.084,0.929,1.096,0.963,0.769,0.929,1.194,0.911,0.924,1.199,0.918,0.835,0.882,0.92,0.985,0.878,1.134,1.034,1.019,0.975,1.116,1.089,0.907,1.257,1.238,1.098,0.688,0.919,1.035,1.003,1.501,0.83,1.098,1.061,0.975,0.822,1.007,1.174,1.116,1.057,0.906,1.142,0.961,1.091,1.137,0.997,1.134,0.944,1.086,0.851,1.032,1.185 +NM_014646,0.732,1.876,0.794,0.788,0.862,1.459,0.865,0.954,1.099,0.609,1.438,0.573,0.625,0.539,1.178,1.707,0.829,0.929,1.13,1.572,0.483,0.505,1.108,0.69,0.867,0.602,1.027,0.905,0.688,1.841,0.81,1.824,1.064,1.733,1.286,0.686,1.01,0.919,1.094,0.845,0.882,1.318,1.436,0.881,0.825,1.277,0.929,0.696,1.02,0.853,1.207,0.769,0.574,1.616 +NM_014647,0.841,1.003,1.193,0.88,1.049,1.199,0.937,0.888,1.316,1.027,0.867,1.072,0.891,0.962,1.061,0.804,0.822,0.886,0.924,1.208,0.88,1.119,0.881,1.198,0.896,0.872,0.937,0.992,1.129,1.124,0.879,1.057,1.32,0.885,0.757,1.109,1.119,0.959,1.339,1.024,1.081,0.927,1.022,1.296,0.841,1.104,0.964,0.799,0.985,1.05,1.008,0.906,0.912,1.008 +NM_014648,0.906,1.036,1.089,0.863,0.772,0.977,0.818,0.95,0.941,0.97,0.996,0.914,0.768,1.054,1.274,1.016,1.073,0.876,1.005,0.964,1.12,0.862,0.992,0.971,0.993,0.932,1.222,0.874,0.682,1.135,0.864,1.334,1.009,1.287,0.763,0.886,0.991,0.948,1.049,1.125,0.907,1.084,0.83,1.119,1.165,0.98,0.877,0.934,0.941,0.964,1.049,0.914,0.928,1.246 +NM_014649,0.706,0.877,1.042,0.74,0.701,0.888,0.589,0.434,0.863,0.819,0.799,0.712,0.616,0.79,1.025,1.257,0.842,0.676,1.209,0.797,0.535,0.685,1.364,0.762,0.601,1.135,1.056,0.487,0.446,0.904,0.767,1.37,2.311,1.265,0.399,1.11,0.917,0.742,1.78,1.531,0.664,1.263,0.906,1.601,0.933,0.837,0.742,0.702,0.991,1.009,1.04,0.845,1.182,1.72 +NM_014652,1.015,1.055,1.009,0.935,0.934,0.924,0.827,0.731,1.185,1.03,1.006,1.122,0.817,0.891,1.171,1.343,1.098,0.89,1.498,0.892,1.082,1.17,1.025,1.235,0.853,1.019,1.211,0.861,0.713,0.981,1.104,1.198,2.053,1.198,0.655,0.804,1.048,1.294,1.124,0.828,0.99,0.959,0.846,0.965,0.937,0.925,0.98,0.968,0.893,1.002,1.1,0.817,0.9,1.092 +NM_014655,0.461,1.086,1.07,0.552,0.858,1.417,0.701,0.518,0.931,0.955,0.767,0.755,0.502,0.507,0.887,2.036,0.86,0.839,0.822,1.108,0.412,0.809,1.58,1.036,0.458,0.456,1.257,0.775,0.641,1.195,0.867,2.335,1.821,1.138,0.315,1.105,1.225,0.909,1.305,1.474,1.017,1.252,0.678,0.975,0.893,1.183,1.222,0.605,1.266,0.705,1.121,0.761,0.625,2.064 +NM_014656,0.932,1.059,0.907,0.826,0.779,0.868,0.96,0.873,0.861,0.935,1.111,0.935,0.876,1.021,1.021,1.155,0.888,1.0,0.922,0.909,0.972,0.899,1.168,0.854,0.878,0.98,0.858,0.836,1.187,1.161,0.946,1.689,1.579,0.996,0.81,1.469,0.971,0.837,1.351,1.396,0.971,1.221,1.259,1.718,0.949,1.04,0.995,0.91,0.968,0.889,0.92,1.082,1.06,1.193 +NM_014657,0.707,0.894,1.072,0.699,0.877,0.92,0.768,0.47,1.026,1.079,0.772,0.94,0.655,0.668,0.837,0.941,0.882,0.852,0.838,1.034,0.627,0.762,1.488,1.066,0.731,0.792,1.337,0.773,0.61,1.353,0.76,2.231,2.052,1.068,0.399,1.546,0.933,0.754,1.333,1.811,0.975,1.091,0.684,1.87,1.061,0.984,1.287,0.716,0.962,0.762,1.05,1.739,0.989,2.672 +NM_014659,0.798,1.524,1.116,0.927,0.92,1.205,0.912,0.498,1.057,0.861,1.203,0.784,0.674,0.647,0.747,1.468,0.866,1.071,0.949,1.511,0.687,0.732,2.079,0.771,0.839,0.948,1.005,0.84,0.955,1.027,0.787,1.073,1.032,1.302,0.558,1.695,1.362,0.806,1.497,0.74,0.932,1.3,1.057,0.985,0.798,0.919,0.907,0.71,1.089,0.735,1.109,0.953,1.002,1.52 +NM_014660,1.151,0.813,1.111,0.971,0.956,1.02,0.862,0.972,1.168,0.928,1.12,0.899,0.919,1.077,1.128,0.94,0.937,1.032,1.021,1.081,0.98,0.948,1.117,1.044,1.078,0.933,1.022,0.971,1.612,0.997,0.969,1.107,1.125,0.861,0.85,0.924,0.989,0.854,1.043,1.038,0.969,1.017,1.07,0.84,0.884,1.027,1.005,1.063,1.06,0.956,1.002,0.951,1.016,1.381 +NM_014661,0.81,0.958,1.225,0.671,0.806,1.1,0.637,0.621,1.094,0.779,0.813,0.816,0.922,0.62,0.891,1.123,1.097,0.852,1.024,1.06,0.854,1.049,1.099,0.979,0.717,1.25,1.23,0.857,0.664,1.113,0.833,1.187,1.395,1.183,0.584,0.804,0.967,1.189,1.43,0.714,0.988,1.354,0.617,1.194,0.945,0.869,0.848,1.057,0.776,0.89,0.936,0.633,0.915,1.084 +NM_014662,0.873,0.848,1.012,0.801,1.006,1.017,1.072,0.766,1.018,0.931,0.917,0.941,0.94,0.873,0.835,1.245,1.012,0.923,1.094,0.918,0.801,0.949,0.901,1.088,0.951,0.964,1.016,0.91,1.296,1.172,0.753,1.026,1.037,1.077,0.831,0.926,1.043,0.905,0.998,1.027,1.013,1.004,0.936,0.938,1.092,0.934,0.989,0.984,0.884,0.988,0.933,0.946,0.805,1.121 +NM_014663,0.888,0.999,1.061,0.914,0.828,1.044,0.75,0.826,0.877,0.751,1.069,0.915,0.937,1.025,0.952,1.186,1.035,1.008,0.88,1.107,0.805,0.867,1.232,0.945,0.982,1.03,1.028,0.994,0.76,1.156,0.897,1.293,1.035,1.059,0.812,0.929,1.123,0.938,1.362,0.963,0.984,1.019,0.73,1.084,1.001,0.99,0.953,0.958,1.156,0.906,0.978,0.996,0.908,0.959 +NM_014664,1.472,0.527,2.503,0.918,1.884,0.849,0.643,1.5,2.599,1.3,0.695,1.06,1.21,0.951,1.288,0.803,2.257,1.136,1.346,0.763,0.603,1.404,0.761,1.428,0.4,1.132,2.255,1.646,0.456,0.833,1.653,0.974,1.373,0.803,2.935,0.472,0.712,1.68,1.175,0.771,1.96,0.874,0.669,0.84,2.136,0.934,1.466,1.379,0.851,1.9,0.868,0.968,1.537,2.759 +NM_014665,0.906,1.356,1.382,1.002,1.016,0.971,0.919,0.787,1.219,1.133,0.836,0.87,0.738,0.99,1.103,1.087,0.932,1.006,0.879,1.038,0.843,0.947,1.104,1.059,0.825,0.852,1.105,0.975,0.617,1.019,0.967,2.166,1.256,1.265,0.759,0.997,0.986,0.875,0.998,1.387,1.047,1.041,0.841,1.181,0.942,1.035,1.091,0.807,1.106,0.84,0.98,0.815,0.874,1.277 +NM_014666,0.805,0.897,1.241,0.996,0.904,1.412,0.548,0.352,1.172,0.825,1.816,0.511,0.538,0.807,1.088,2.179,0.754,1.143,1.558,1.293,0.497,0.619,1.748,1.058,0.55,0.89,1.171,0.773,0.385,1.344,0.973,0.756,1.414,1.785,0.262,0.463,1.498,0.554,1.119,0.268,0.995,1.634,0.796,0.642,1.115,1.336,0.903,0.694,1.502,0.973,1.445,0.676,1.011,2.082 +NM_014669,0.86,0.954,1.011,0.808,0.854,0.811,0.579,0.387,1.587,1.013,0.657,0.759,0.65,0.704,0.858,1.152,0.893,0.839,1.497,0.685,0.708,1.055,1.454,1.131,0.678,0.895,1.488,0.666,0.585,1.006,0.887,1.385,3.639,1.07,0.262,1.179,1.02,0.814,2.188,1.352,0.986,1.031,0.671,1.884,1.114,0.736,0.918,0.841,1.165,0.902,0.999,0.91,1.397,3.808 +NM_014670,0.496,0.705,1.235,0.455,1.071,1.295,0.522,0.969,1.338,1.051,0.754,0.878,0.666,0.468,0.948,1.859,0.986,0.961,1.213,0.895,0.453,0.794,1.374,1.289,0.373,0.593,1.487,1.073,0.383,0.876,1.206,1.006,1.73,0.972,0.706,0.7,1.082,1.195,1.243,1.153,1.443,0.763,0.474,1.2,1.128,0.994,1.112,0.815,1.043,0.862,1.039,0.814,0.644,2.434 +NM_014671,0.725,0.831,1.22,0.694,0.792,1.082,0.645,0.693,1.052,0.962,0.881,0.803,0.667,0.568,0.983,1.333,0.904,0.963,1.27,0.89,0.738,0.748,1.71,1.08,0.72,0.915,1.135,0.822,0.501,1.256,0.988,1.236,1.271,1.278,0.38,0.717,1.046,0.873,1.722,0.66,1.136,1.054,0.664,1.15,1.134,0.868,0.973,0.775,0.905,0.912,1.085,0.772,0.81,2.113 +NM_014672,0.934,0.955,1.13,1.048,0.903,0.983,1.029,1.06,1.078,0.858,1.081,1.259,0.897,0.889,0.922,0.982,0.998,1.002,1.14,1.195,1.022,1.019,0.984,0.993,0.969,1.128,0.935,0.938,0.855,1.091,1.035,1.065,0.913,0.968,0.968,1.066,1.073,1.003,0.994,0.964,0.86,0.968,1.084,1.144,1.164,1.163,1.011,0.929,0.941,0.94,0.958,0.97,0.912,1.066 +NM_014673,0.837,0.916,1.458,0.766,1.191,1.407,0.761,1.403,1.37,0.803,0.961,1.161,1.113,0.903,1.154,1.461,1.09,0.913,1.037,0.987,0.473,1.052,0.894,1.172,0.651,0.871,1.178,1.001,0.584,0.92,1.255,1.368,1.543,1.07,1.272,0.62,0.901,1.293,1.264,0.968,1.068,0.988,0.555,0.731,1.082,1.182,0.94,1.055,1.066,0.928,0.999,0.716,0.725,1.382 +NM_014674,0.745,0.87,1.378,0.874,0.902,0.98,0.837,0.7,1.273,1.028,0.889,0.447,0.75,0.562,1.041,1.292,1.034,0.933,0.994,1.144,0.493,0.489,1.006,0.83,0.898,0.716,1.094,0.813,0.488,1.282,1.071,1.081,0.862,1.264,0.941,0.847,1.339,0.567,1.363,0.788,1.062,1.339,0.756,0.736,1.157,1.413,1.031,0.716,1.117,0.911,1.133,0.757,0.975,1.083 +NM_014676,0.567,1.089,1.499,0.622,0.871,0.984,0.71,0.461,1.135,0.804,1.337,0.593,0.463,0.8,0.91,1.575,0.622,0.923,1.132,0.956,0.697,0.625,1.502,0.827,0.512,0.572,1.32,0.851,0.39,1.255,1.072,1.059,2.586,1.44,0.466,0.715,1.288,0.697,1.267,1.074,0.93,1.491,0.707,1.188,0.883,1.236,0.986,0.532,0.888,0.733,1.335,1.052,1.018,1.544 +NM_014677,1.327,1.033,0.966,0.992,1.072,0.852,0.922,1.101,1.042,1.029,0.927,1.012,1.021,0.998,1.194,0.883,1.104,0.98,1.012,1.027,1.041,0.96,0.926,1.017,0.98,0.973,0.967,0.955,0.901,0.909,1.002,1.246,0.861,1.189,0.945,0.976,0.96,1.254,0.97,1.103,0.921,1.082,1.115,0.918,0.967,1.172,0.953,1.144,0.788,1.074,0.856,1.06,1.216,1.017 +NM_014678,0.751,1.039,1.48,0.719,1.138,1.303,0.641,0.546,1.396,1.07,0.791,0.959,0.717,0.683,0.907,0.839,1.301,1.073,0.973,1.298,0.439,0.966,1.339,1.172,0.569,1.017,1.149,1.087,0.534,1.261,0.924,1.083,0.687,1.18,0.718,0.745,0.868,1.029,1.3,0.64,1.228,1.018,0.822,0.894,1.273,1.18,0.995,1.19,0.719,0.993,0.992,0.699,0.924,1.203 +NM_014679,0.771,1.142,1.196,0.886,0.75,1.125,0.585,0.653,0.954,0.804,1.439,0.902,0.771,0.876,1.041,1.347,0.723,0.759,1.137,1.436,0.59,0.708,1.384,0.907,0.658,0.709,1.369,0.991,0.385,1.246,0.813,1.104,3.714,1.29,0.464,1.439,1.265,0.866,1.007,0.79,0.988,1.162,0.983,1.017,0.68,1.499,0.966,0.617,0.978,0.748,1.058,0.825,0.787,1.711 +NM_014682,1.021,1.112,1.179,1.282,1.272,1.069,0.82,0.967,0.957,1.096,0.993,0.884,1.019,0.892,0.706,0.929,0.981,0.97,1.316,0.958,1.143,0.932,1.013,1.099,1.129,0.945,1.019,1.006,0.841,0.929,0.951,1.101,0.996,1.015,0.897,0.841,1.11,0.986,1.02,0.881,0.952,1.077,1.165,1.157,0.997,1.127,0.947,1.195,0.968,1.088,1.209,0.895,1.032,1.113 +NM_014684,0.821,1.079,0.834,1.019,1.0,1.168,0.842,0.957,0.846,0.96,1.136,0.841,0.876,0.916,0.943,1.104,0.867,0.988,0.783,0.992,0.792,0.911,1.039,0.92,1.038,0.979,0.97,1.074,0.862,1.089,0.814,1.221,1.392,1.179,0.886,1.266,0.86,0.848,1.0,0.955,1.058,1.115,0.783,0.881,0.925,0.984,0.934,0.979,0.925,0.848,0.98,0.924,1.015,1.522 +NM_014685,0.591,1.307,0.764,0.957,0.54,1.335,0.999,0.462,0.803,0.608,0.979,0.548,0.491,0.537,0.929,1.468,0.563,0.767,0.732,1.152,0.387,0.484,1.306,0.824,1.573,0.595,0.675,0.65,0.524,1.001,0.68,1.66,1.474,1.713,0.402,1.111,1.293,0.582,1.314,0.674,0.681,2.222,0.917,1.365,0.715,1.37,0.821,0.486,1.251,0.609,1.333,0.571,0.739,2.271 +NM_014686,1.054,0.864,1.613,0.773,1.268,0.872,0.627,0.901,1.814,0.97,0.719,0.839,0.874,1.236,1.075,0.94,1.693,0.917,1.363,0.989,0.95,1.024,1.074,1.285,0.687,0.913,1.4,1.178,0.787,0.969,1.5,2.441,1.394,1.046,1.298,0.718,0.794,1.417,0.88,1.197,1.561,0.979,0.729,0.933,1.123,0.791,1.292,1.109,0.717,0.99,0.822,0.882,1.024,1.17 +NM_014690,0.983,0.988,0.985,0.996,1.111,0.961,0.99,1.063,1.111,1.018,1.03,0.972,0.936,1.126,0.96,0.959,0.942,0.988,1.062,1.041,1.04,0.928,1.321,0.97,1.017,1.179,0.985,0.906,1.112,1.013,1.095,1.085,1.107,1.011,0.875,0.914,1.019,1.069,0.917,1.042,0.99,1.08,0.928,1.012,0.989,0.997,0.971,0.993,0.969,0.885,1.092,1.073,1.067,1.064 +NM_014693,0.974,0.924,0.888,1.013,1.105,0.892,1.002,1.0,0.992,1.098,1.041,1.117,1.074,1.186,1.047,0.911,1.155,1.013,0.971,0.949,0.924,0.954,0.959,0.993,1.0,0.967,1.071,1.01,0.963,0.988,1.025,1.02,1.111,1.09,0.964,0.903,1.052,1.086,0.91,0.996,0.93,1.017,1.022,0.874,1.1,1.114,0.986,1.022,0.901,1.159,1.021,0.946,0.957,0.883 +NM_014694,0.743,1.006,1.014,1.053,0.852,0.875,0.934,0.763,0.843,1.165,0.859,0.797,0.78,0.679,0.893,0.958,0.872,1.007,0.757,0.936,0.921,0.779,1.19,0.885,0.946,0.75,0.783,0.929,1.308,1.088,0.876,4.09,1.582,1.004,0.798,1.078,1.064,0.997,1.24,1.462,1.04,0.924,0.766,1.53,0.961,0.851,1.105,0.856,1.07,1.08,1.029,1.422,1.09,1.654 +NM_014697,1.043,1.109,0.842,1.001,0.92,1.03,0.888,1.069,1.009,1.019,0.97,1.062,0.967,0.972,0.791,1.06,0.978,0.96,0.75,1.026,1.072,1.009,1.082,0.912,1.015,0.941,0.899,1.04,0.874,1.047,1.012,1.095,1.148,0.937,0.96,1.164,0.958,0.971,0.971,1.174,1.1,1.022,1.039,0.836,1.027,0.885,1.115,0.915,0.955,1.014,0.969,1.137,0.873,1.046 +NM_014698,0.244,1.958,0.412,0.749,0.296,1.04,0.791,0.155,0.35,0.219,1.02,0.207,0.168,0.186,0.614,1.168,0.372,1.073,0.274,1.695,0.167,0.277,2.387,0.271,0.683,0.224,0.379,0.231,0.607,1.886,0.238,1.365,1.657,1.504,0.125,1.067,1.18,0.21,1.696,1.272,0.342,1.625,1.219,1.087,0.291,1.375,0.769,0.261,1.04,0.256,1.624,0.945,0.242,1.229 +NM_014699,0.976,0.915,0.935,1.01,1.023,0.988,0.845,0.923,0.955,0.935,1.035,1.043,0.942,0.933,0.891,0.913,0.982,0.973,0.907,0.895,1.087,1.025,0.907,1.089,1.015,0.955,1.077,1.007,0.624,1.096,1.111,1.098,1.009,1.133,1.046,0.936,0.844,0.998,1.224,1.167,0.987,1.001,0.75,1.13,0.968,0.948,1.018,1.098,0.959,1.179,0.945,0.986,0.883,0.986 +NM_014700,0.953,0.976,0.968,0.904,0.89,1.076,0.718,0.743,0.752,0.985,1.076,0.947,0.92,0.928,0.953,1.27,0.84,0.764,0.891,1.068,0.947,0.891,1.358,0.91,0.903,0.971,1.021,0.739,0.614,1.1,0.945,1.872,1.636,1.01,0.758,1.127,1.192,0.987,1.024,1.042,0.997,1.197,0.933,1.491,0.896,0.998,1.088,0.945,0.936,0.958,1.026,0.992,1.114,1.218 +NM_014701,1.325,0.885,1.032,0.939,1.917,1.022,0.769,1.592,1.879,0.844,1.071,0.978,1.203,1.048,1.349,0.938,1.004,1.13,1.251,1.242,0.847,0.971,1.098,0.807,0.865,1.269,1.223,1.337,0.551,1.072,2.098,0.886,1.066,1.375,3.587,0.611,1.013,0.966,0.8,0.529,1.198,1.097,0.765,0.658,1.24,0.983,0.901,1.617,0.686,1.112,1.05,0.722,0.996,1.391 +NM_014703,0.984,0.984,1.158,0.768,0.911,0.922,0.819,0.87,1.02,1.003,1.06,1.04,0.931,0.922,0.892,0.973,0.916,1.005,0.89,1.096,0.976,0.923,1.071,1.013,0.892,0.875,1.168,1.029,0.749,0.985,0.971,0.969,1.065,1.149,0.763,0.992,0.91,1.05,1.122,1.063,1.0,1.236,0.952,0.884,1.128,1.059,1.0,0.855,1.153,1.018,1.19,1.113,1.098,1.314 +NM_014705,1.083,1.034,0.996,1.057,0.949,1.109,0.978,0.993,0.867,1.234,0.991,0.99,1.183,0.811,0.763,0.976,1.179,0.965,1.004,1.0,1.117,1.086,0.899,0.863,0.936,0.872,0.888,0.949,0.841,0.957,1.002,1.023,0.892,1.113,1.001,0.886,1.024,1.034,0.91,0.919,1.093,1.066,0.801,0.933,0.99,0.925,0.833,1.062,0.942,1.021,0.989,1.145,1.093,0.92 +NM_014706,0.615,0.725,1.08,0.672,0.966,1.127,0.687,0.526,1.239,1.011,0.792,0.829,0.578,0.664,1.114,1.427,0.805,0.739,0.89,1.008,0.609,0.737,1.351,1.122,0.648,0.844,1.371,0.784,0.56,1.109,0.783,1.496,1.903,1.275,0.386,1.507,0.947,0.874,1.092,1.105,0.993,1.032,0.697,1.129,0.997,0.876,0.813,0.764,1.003,0.81,0.953,0.829,0.983,2.121 +NM_014707,0.957,1.139,0.794,0.942,0.698,1.128,1.046,1.11,0.91,0.79,1.065,0.997,0.987,1.034,0.877,0.902,0.948,1.032,0.986,1.099,1.017,0.997,1.104,0.969,1.108,0.834,0.838,0.835,0.982,1.054,1.003,0.936,1.263,1.158,1.008,0.92,1.089,0.934,1.189,0.996,0.865,1.198,0.894,1.042,0.909,1.15,0.899,1.062,1.054,1.057,1.085,1.054,0.993,1.966 +NM_014708,0.89,0.957,1.146,0.981,0.951,0.891,0.895,0.707,1.282,1.008,0.902,0.91,0.873,0.78,0.982,0.842,0.989,1.146,1.136,0.926,0.81,1.038,1.398,1.045,0.85,0.954,1.637,0.945,0.703,0.808,0.845,1.648,1.883,1.144,0.752,1.593,1.01,0.978,1.071,1.423,0.968,1.047,0.81,1.488,1.036,0.99,1.097,0.763,1.124,0.936,1.228,1.136,1.094,2.852 +NM_014709,0.916,1.013,1.094,0.775,0.958,0.912,0.797,0.808,1.103,1.023,0.928,0.839,0.949,0.896,1.058,0.965,0.834,0.989,0.756,1.127,0.727,0.683,1.112,1.02,1.008,0.898,0.97,1.036,0.623,0.959,0.927,1.255,1.502,1.154,0.844,1.057,0.924,0.929,0.904,1.091,0.995,1.118,0.829,1.058,0.961,0.985,0.987,0.748,0.952,0.964,1.035,0.839,1.021,1.164 +NM_014710,1.033,0.976,1.226,1.211,1.185,1.03,0.964,0.942,0.96,1.13,0.914,0.906,1.048,0.805,0.807,1.244,0.998,1.001,1.17,1.147,0.946,1.091,1.102,0.892,0.986,0.931,0.983,0.933,1.098,0.915,0.942,0.988,0.837,1.018,1.057,0.939,1.001,1.177,1.262,1.001,1.221,1.05,0.929,1.02,0.897,1.027,0.98,0.995,0.923,1.112,0.889,0.91,1.064,1.163 +NM_014711,0.769,1.052,1.257,1.078,0.995,1.258,0.898,0.747,1.079,0.994,0.794,1.199,0.938,0.974,1.226,1.4,0.892,1.0,0.734,1.182,0.599,0.812,1.066,1.273,0.749,0.709,1.677,0.908,0.665,1.182,1.02,2.203,2.18,1.161,0.55,0.651,0.879,1.021,1.083,1.417,1.006,0.98,0.854,0.764,0.974,0.98,1.048,0.73,0.971,0.969,1.064,1.007,0.756,1.824 +NM_014713,0.685,0.99,1.435,0.605,1.251,1.655,0.607,0.968,1.487,0.953,1.096,0.963,0.82,0.72,1.002,1.865,0.9,1.179,1.208,0.975,0.438,1.216,1.233,1.299,0.599,0.556,1.301,0.905,0.384,1.377,1.349,1.302,2.012,1.559,0.436,0.404,1.316,1.349,1.114,1.241,1.079,1.277,0.502,0.483,1.089,1.097,1.171,1.006,0.987,0.854,1.324,0.939,0.558,1.321 +NM_014714,0.944,1.142,1.0,0.991,0.935,1.062,0.97,0.981,0.867,0.978,1.037,0.834,0.957,0.99,0.878,1.043,0.947,1.045,1.029,1.0,0.802,0.954,0.907,0.858,1.012,0.862,0.91,0.853,1.171,1.169,0.928,1.274,1.15,1.204,0.779,1.056,0.929,0.946,1.212,0.974,0.97,1.216,0.998,1.3,0.97,0.975,0.877,0.94,0.951,0.889,1.023,0.995,0.953,1.059 +NM_014715,1.34,0.734,1.65,0.81,1.251,1.354,0.543,0.612,1.564,1.166,0.941,0.792,0.799,1.034,1.224,1.098,1.173,0.986,1.662,0.972,0.844,1.485,0.944,1.238,0.652,1.21,1.685,1.167,0.756,1.008,1.411,0.44,0.833,0.867,0.702,1.005,1.141,1.123,1.193,0.788,1.466,1.089,0.985,0.606,1.423,1.341,0.898,1.072,1.727,1.403,0.918,0.502,0.813,0.663 +NM_014716,0.978,0.892,1.278,0.857,1.061,0.904,0.802,1.197,0.962,0.961,0.791,1.04,1.015,0.797,1.006,0.832,1.156,0.858,1.182,0.893,0.865,0.959,0.806,1.128,1.063,1.056,1.023,0.954,0.806,1.072,1.067,1.348,0.947,1.004,1.02,0.885,0.948,1.393,1.122,1.445,0.999,0.959,0.939,0.796,1.011,0.843,0.907,1.015,0.846,1.165,0.968,0.788,1.078,1.347 +NM_014717,0.891,0.907,1.039,1.029,0.997,0.971,0.845,1.044,1.08,0.848,0.96,1.034,0.917,1.116,1.007,0.829,0.875,1.029,1.134,0.925,1.062,0.964,0.999,1.024,0.969,1.104,0.962,1.058,1.297,0.953,0.92,0.88,0.903,1.101,1.206,0.982,1.018,1.116,0.961,0.973,1.041,0.848,1.033,0.932,1.057,0.842,0.996,1.094,1.001,1.054,0.907,0.939,0.995,0.987 +NM_014718,0.988,0.985,0.976,0.949,0.911,1.064,1.132,1.091,0.942,0.833,0.923,0.975,0.944,1.034,1.027,0.992,1.011,1.042,1.028,0.898,0.945,1.096,1.056,0.926,1.049,1.124,1.127,1.057,1.068,0.934,1.131,0.922,0.872,0.958,1.051,1.063,0.883,1.01,1.189,1.074,0.867,1.057,1.016,0.97,0.923,1.016,0.862,1.013,1.032,1.036,0.992,1.046,0.972,0.932 +NM_014719,1.064,1.056,0.921,0.92,0.824,0.984,0.911,0.637,0.917,0.774,0.97,0.702,0.729,0.809,0.889,0.965,0.776,1.05,0.966,1.122,0.819,0.824,1.279,0.825,1.074,0.881,1.007,0.866,0.935,1.275,0.933,1.127,1.089,1.109,0.742,0.778,0.993,1.118,1.328,0.85,0.769,1.096,0.845,1.153,0.887,1.127,0.955,0.825,0.907,0.829,1.035,0.786,0.846,0.97 +NM_014720,1.171,0.649,2.775,0.97,1.992,0.868,0.744,1.369,3.042,1.551,0.637,1.077,1.221,1.533,1.443,1.301,1.736,1.412,2.015,0.826,0.751,1.176,0.942,1.73,0.511,1.01,1.867,1.999,0.683,0.762,2.473,0.828,2.012,1.118,2.311,0.746,0.581,1.526,1.091,0.544,1.938,0.793,0.689,0.821,2.077,0.694,1.374,1.521,0.87,1.61,1.1,0.805,1.075,1.593 +NM_014721,1.204,0.871,0.935,0.778,1.954,1.101,0.875,1.495,2.154,0.796,1.358,1.053,0.903,1.211,1.288,1.201,0.575,1.257,1.23,0.939,0.5,1.349,1.036,1.033,0.685,1.236,0.622,1.935,0.482,1.202,1.815,0.912,0.974,1.382,2.79,0.569,1.226,1.187,0.995,0.743,0.988,1.308,0.67,0.863,1.129,1.244,1.158,1.151,0.732,0.643,1.266,0.788,0.911,0.755 +NM_014723,1.028,1.13,0.834,0.912,1.079,1.13,0.853,1.044,1.05,1.069,0.869,0.982,0.962,1.06,1.03,1.009,0.904,0.902,0.818,0.883,0.967,0.895,0.901,0.973,1.073,1.006,0.899,1.134,2.24,1.037,0.869,1.046,0.859,1.0,0.907,1.03,0.932,1.017,1.104,1.13,0.954,1.018,1.003,0.958,0.903,1.132,0.91,0.984,0.939,1.04,0.915,1.103,0.994,1.028 +NM_014725,0.882,1.048,0.932,0.843,0.876,1.122,1.157,0.992,1.035,0.953,1.035,0.89,0.816,0.85,0.766,0.92,0.884,0.983,1.003,0.85,0.895,0.934,1.008,0.962,0.935,0.912,0.895,0.969,1.003,1.122,0.825,1.325,1.018,1.208,0.862,1.219,0.984,1.076,1.175,1.193,0.976,1.096,1.163,0.894,0.825,0.919,0.872,0.847,0.954,0.924,1.034,1.06,1.03,1.111 +NM_014726,1.434,0.869,1.084,0.85,0.965,0.99,0.947,1.25,1.287,1.166,1.027,1.063,1.135,1.193,0.815,1.013,1.1,0.941,1.23,0.911,1.011,1.554,0.969,1.212,0.902,1.537,1.053,1.062,0.825,0.87,1.308,1.179,0.998,0.927,1.1,0.946,0.899,1.223,1.068,0.933,1.025,0.966,1.01,1.016,1.136,0.745,1.031,1.582,0.86,0.975,1.009,0.983,1.149,1.01 +NM_014727,0.916,0.853,1.179,0.943,0.94,0.963,0.862,0.871,1.093,0.961,0.965,0.908,0.842,0.866,1.012,1.187,0.903,0.909,1.018,0.999,0.88,0.995,1.211,0.979,0.987,1.017,1.065,0.998,0.953,0.963,0.964,1.02,1.501,0.855,0.984,1.148,0.963,1.115,1.286,1.143,1.041,0.927,0.856,1.099,1.056,0.905,0.976,0.917,0.89,1.015,0.93,1.032,0.929,1.31 +NM_014730,0.272,1.153,0.481,0.814,0.364,1.303,0.708,0.182,0.464,0.43,1.641,0.381,0.265,0.273,0.922,2.246,0.347,0.806,0.498,2.068,0.204,0.364,2.469,0.459,0.777,0.344,0.499,0.384,0.395,1.793,0.367,1.148,2.011,1.289,0.0585,2.678,2.375,0.326,1.15,1.298,0.491,1.762,1.172,1.226,0.466,1.801,1.321,0.268,2.034,0.307,1.882,0.955,0.474,1.872 +NM_014731,0.809,1.14,0.87,1.111,1.11,1.125,0.863,0.854,0.755,0.833,1.027,0.843,0.779,0.819,0.983,1.054,0.818,0.926,0.857,0.992,0.79,0.719,1.413,0.893,1.114,0.897,0.898,0.875,0.984,1.149,0.81,1.591,1.587,1.144,0.756,1.455,1.003,0.948,1.366,1.724,0.967,0.928,1.048,2.44,0.913,0.84,0.964,0.91,1.002,0.793,1.01,1.046,0.876,3.134 +NM_014732,0.748,1.319,1.248,0.945,0.69,1.577,1.238,0.397,0.762,0.791,0.898,0.502,0.447,0.646,0.863,0.875,0.958,1.253,1.003,1.158,0.584,0.606,0.968,0.663,1.08,0.873,0.963,0.609,1.044,1.629,0.665,1.994,1.089,2.154,0.438,0.46,1.156,0.732,1.311,0.624,0.881,1.365,0.842,0.791,0.779,0.923,0.654,0.539,0.558,0.743,1.143,0.801,0.932,1.536 +NM_014733,1.036,0.965,1.037,1.112,0.832,1.172,0.843,0.855,0.999,0.797,0.937,0.896,0.943,1.161,0.901,1.103,1.213,0.959,0.88,1.063,0.81,1.114,0.963,1.202,0.84,0.8,1.262,0.946,1.012,1.158,1.063,1.098,1.117,1.086,0.919,1.149,0.963,1.028,0.934,1.068,0.942,0.987,0.98,0.92,1.027,0.938,1.149,0.875,0.957,0.992,1.03,1.046,0.775,1.077 +NM_014734,1.106,0.893,1.509,0.644,1.096,1.156,0.62,1.277,1.994,0.683,0.811,0.628,1.115,0.633,1.42,1.289,1.38,0.982,1.787,0.905,0.672,0.959,0.767,0.701,0.595,1.154,2.027,0.903,0.653,1.0,1.899,1.164,1.334,1.366,1.659,0.476,0.889,2.106,1.183,0.954,1.235,1.062,0.696,0.652,1.189,0.701,0.906,1.461,0.786,1.481,0.82,0.644,1.035,0.935 +NM_014735,0.95,0.95,1.25,0.859,0.926,0.851,0.627,0.845,1.309,1.063,0.996,0.801,0.68,0.992,1.049,1.092,0.941,0.806,1.149,0.87,0.655,0.852,1.278,1.115,0.819,0.987,1.107,1.076,0.651,0.961,1.231,1.312,2.696,1.126,0.862,0.856,0.993,0.882,0.964,1.049,1.001,1.029,0.888,0.866,1.146,0.999,1.016,0.974,0.857,0.939,1.073,0.998,0.94,1.753 +NM_014736,0.563,1.087,0.99,1.087,0.896,0.97,0.721,0.41,0.863,1.457,1.259,0.59,0.741,0.592,0.847,1.828,0.673,1.537,1.447,0.767,0.479,0.644,2.961,1.136,0.422,0.715,2.699,0.594,0.316,0.869,0.563,1.116,2.592,0.761,0.212,2.235,1.37,0.646,2.473,0.609,0.945,0.599,1.217,2.299,0.734,1.448,1.328,0.595,1.254,0.843,1.574,1.635,0.834,3.278 +NM_014738,0.874,1.12,0.823,0.986,0.862,1.452,0.654,0.769,0.891,0.88,0.95,0.717,0.812,0.963,0.843,1.089,0.974,0.908,0.894,1.08,1.002,1.137,1.043,0.705,1.092,0.941,1.028,0.715,1.071,1.301,0.788,1.247,0.858,1.472,0.711,0.871,1.019,1.133,1.54,1.231,0.792,1.127,1.097,1.16,0.839,0.878,1.003,0.9,0.884,0.812,0.953,0.792,0.768,0.965 +NM_014739,0.479,1.108,1.096,0.582,0.787,1.215,0.671,0.43,1.381,1.0,1.088,0.751,0.479,0.778,0.949,1.412,0.661,0.779,0.974,1.188,0.47,0.627,1.752,0.838,0.604,0.615,1.465,0.752,0.298,1.353,1.037,1.133,1.707,1.483,0.215,0.65,1.0,0.731,1.109,0.877,1.075,1.23,0.613,0.786,0.999,1.054,0.648,0.546,1.093,0.573,1.288,0.639,0.918,1.553 +NM_014741,0.728,1.285,0.872,0.897,0.87,1.35,0.892,0.672,0.849,0.795,0.854,0.735,0.853,0.726,1.171,0.985,0.966,1.118,0.91,1.125,0.995,0.89,1.016,0.796,1.147,0.906,0.973,0.807,0.816,1.735,0.87,1.156,1.412,1.515,0.929,1.207,1.057,0.925,1.482,1.008,0.929,1.442,0.697,1.416,0.883,0.867,0.856,0.864,0.786,0.935,0.89,0.833,0.893,1.532 +NM_014742,0.721,0.952,1.15,0.586,0.681,1.07,0.615,0.457,0.925,0.733,1.021,0.478,0.449,0.805,1.146,1.999,0.799,0.905,1.664,0.92,0.584,0.831,1.867,0.916,0.57,0.754,1.172,0.594,0.462,1.544,0.98,1.347,2.911,1.601,0.257,0.631,1.126,0.746,1.62,1.135,0.82,1.248,0.633,1.367,0.935,0.83,0.831,0.634,0.828,0.885,1.107,0.742,1.001,2.854 +NM_014744,1.12,0.885,1.25,1.044,0.991,1.112,1.049,1.031,1.096,1.194,1.004,0.881,0.895,0.988,1.05,1.064,0.938,0.827,0.761,1.158,1.014,0.902,1.202,0.921,1.037,1.047,0.896,0.984,0.787,1.028,1.05,0.939,1.157,0.958,0.889,0.899,0.966,0.963,1.006,0.992,1.058,0.873,1.002,1.075,1.068,1.174,0.894,1.012,0.949,0.983,0.937,1.018,0.999,1.029 +NM_014745,0.914,1.093,1.272,0.744,1.028,0.495,0.499,0.702,1.137,0.953,0.607,0.859,0.521,0.63,0.99,0.913,0.936,0.856,1.034,0.827,0.522,1.01,1.204,1.032,0.491,1.133,1.558,0.968,0.319,0.471,1.023,3.051,2.911,0.824,1.567,1.115,0.617,1.242,1.899,2.938,0.838,1.017,0.813,2.057,1.415,0.835,1.384,1.083,0.771,1.461,1.046,1.389,1.231,1.8 +NM_014746,1.04,0.878,1.523,0.966,1.083,0.832,0.884,0.88,1.241,1.075,0.901,0.987,0.896,1.079,1.169,0.995,1.099,0.895,1.312,0.848,0.895,1.045,1.053,1.048,0.838,1.072,1.194,1.23,0.73,0.932,1.112,3.752,1.82,0.922,0.696,0.809,0.857,1.088,0.868,0.868,1.264,1.02,0.889,1.078,1.11,0.987,0.982,0.966,0.935,1.015,0.963,0.939,1.099,2.535 +NM_014747,0.837,1.345,1.075,1.047,0.719,0.976,1.297,1.028,0.827,0.802,0.842,0.82,0.741,0.781,0.695,1.219,0.779,0.835,1.012,0.87,0.817,0.741,1.12,1.005,1.499,0.887,1.319,0.845,1.068,0.928,1.196,1.833,1.952,1.728,0.665,2.834,0.942,1.146,1.124,0.888,0.956,1.036,0.948,0.73,0.931,0.889,0.832,0.87,0.922,1.059,1.089,0.842,0.801,1.443 +NM_014748,0.889,0.733,1.09,1.058,0.723,1.233,0.533,0.618,1.022,0.966,1.082,1.159,0.938,0.77,0.958,1.84,1.092,1.057,1.431,0.734,0.753,0.873,1.154,1.038,0.86,1.39,0.81,0.712,0.555,1.2,0.857,0.976,2.192,1.396,0.488,0.78,1.153,0.946,1.351,0.659,0.903,1.135,0.613,1.569,1.081,0.993,0.892,1.113,0.999,1.152,0.928,0.715,1.23,1.112 +NM_014749,1.033,0.966,1.222,0.982,1.128,0.934,0.813,0.826,1.023,1.0,0.934,0.997,0.872,0.907,0.984,1.04,1.104,0.914,1.024,0.905,0.908,0.87,1.0,0.996,0.963,0.916,1.252,1.009,0.783,0.933,0.96,0.938,1.301,0.995,0.708,0.989,1.047,0.97,1.224,1.097,1.02,0.997,0.848,1.657,0.968,1.139,1.072,0.728,1.04,1.024,0.998,0.861,0.986,1.329 +NM_014750,0.712,0.885,1.35,0.956,0.998,0.999,1.014,0.712,1.055,1.09,0.794,0.87,0.755,0.719,0.782,1.246,0.841,0.949,0.928,0.868,0.821,0.781,1.627,1.195,0.682,0.662,1.866,0.89,0.782,1.136,0.799,0.822,2.863,0.818,0.511,1.824,1.013,0.8,1.931,1.013,1.272,0.733,0.786,1.659,0.984,1.077,1.396,0.681,1.562,0.814,1.275,1.125,0.886,2.214 +NM_014751,1.271,0.938,1.97,0.951,1.257,0.847,0.803,0.973,1.896,1.276,0.981,0.972,0.895,1.517,1.23,0.898,1.202,1.164,1.715,0.895,1.178,0.998,0.912,1.168,0.859,1.306,2.673,1.367,0.813,0.937,1.662,0.893,1.382,1.078,0.934,1.004,0.835,1.217,0.878,0.659,1.677,0.926,0.67,0.957,1.17,0.846,1.265,1.089,0.747,1.476,1.083,1.042,1.235,0.939 +NM_014752,0.616,1.135,0.997,0.935,0.671,1.429,0.916,0.459,0.971,0.703,1.423,0.674,0.714,0.578,0.885,1.84,0.664,0.925,1.25,1.072,0.458,0.711,1.43,1.031,0.951,0.668,1.28,0.82,0.437,1.925,0.818,1.361,2.638,1.92,0.18,1.48,1.392,0.652,1.531,0.779,1.008,1.511,0.627,0.884,0.855,0.988,0.822,0.776,1.162,0.714,1.184,1.1,0.823,1.442 +NM_014753,0.734,1.105,1.082,0.626,0.832,0.701,0.486,0.382,1.079,1.167,0.779,0.999,0.453,0.609,0.668,0.983,0.829,0.757,1.224,1.059,0.75,0.757,1.333,0.903,0.616,0.932,1.241,0.706,0.364,0.914,0.703,1.012,2.085,0.909,0.265,2.073,0.93,0.794,1.312,0.884,1.04,1.033,0.99,2.316,1.282,0.941,1.119,0.704,1.075,0.941,0.999,1.302,1.152,2.208 +NM_014754,0.547,1.03,1.282,0.658,0.805,1.23,0.692,0.721,1.076,0.903,0.707,0.927,0.854,0.54,0.796,1.965,0.85,0.916,0.923,0.982,0.614,0.908,1.592,1.237,0.675,0.628,1.459,0.741,0.588,0.919,0.945,1.454,4.461,1.238,0.498,0.892,0.943,1.12,1.699,1.541,0.984,1.169,0.624,1.271,1.019,0.961,0.93,0.773,1.814,0.8,0.907,0.741,0.659,1.968 +NM_014755,2.142,0.658,2.014,0.981,1.873,0.855,0.54,1.766,2.191,1.065,0.735,0.924,1.177,1.032,1.388,0.918,1.733,1.213,1.95,0.802,0.91,1.332,0.829,1.252,0.669,1.269,1.734,1.798,0.374,1.01,2.512,1.006,1.384,1.096,3.273,0.575,0.867,1.945,1.267,1.092,1.788,0.907,0.612,0.998,1.69,0.679,1.353,1.837,0.81,1.766,0.929,0.71,1.547,1.347 +NM_014756,0.836,1.118,1.303,0.821,0.813,0.819,0.748,0.409,1.035,0.762,0.797,0.759,0.584,0.748,0.928,1.049,0.75,0.789,0.924,0.996,0.667,0.607,1.6,0.795,0.826,0.745,1.46,0.674,0.537,1.33,0.787,1.464,3.014,1.112,0.373,2.37,0.953,0.772,2.227,1.661,0.83,1.05,0.791,2.045,1.028,0.942,1.084,0.687,1.237,0.926,1.275,1.348,0.959,2.546 +NM_014757,0.681,0.927,1.232,0.951,0.9,0.994,0.734,0.684,1.028,0.886,1.028,0.729,0.791,0.685,1.068,1.325,1.0,1.006,0.844,1.194,0.809,0.837,1.284,0.99,0.677,0.987,1.067,0.898,0.552,0.988,1.062,1.704,4.366,1.208,0.796,0.866,0.736,0.993,1.233,1.094,0.988,1.064,0.691,1.043,0.993,0.818,0.834,0.799,1.018,0.967,1.118,0.934,0.895,2.688 +NM_014759,1.199,1.099,1.083,1.085,0.985,1.125,1.154,0.972,0.892,1.103,1.05,1.028,0.971,1.016,0.923,0.914,1.086,0.908,1.231,0.987,1.223,1.098,0.86,1.05,1.02,1.156,1.061,1.12,1.215,0.984,1.142,0.963,0.886,0.918,0.948,1.006,0.874,1.364,0.963,0.928,1.037,0.936,1.037,1.005,1.028,0.995,0.918,1.057,0.846,0.839,1.105,0.915,0.962,1.084 +NM_014761,0.562,1.111,1.227,0.621,0.94,1.403,0.739,0.603,1.094,0.889,0.873,0.595,0.533,0.602,0.938,1.448,1.128,1.153,0.878,1.419,0.413,0.845,1.156,0.915,0.553,0.715,1.169,0.858,0.621,1.284,1.1,1.269,1.664,1.302,0.831,0.819,1.012,0.999,1.369,0.828,1.101,1.269,0.65,1.076,0.831,0.922,1.236,0.793,0.979,0.783,1.016,0.676,0.718,1.225 +NM_014762,0.896,0.73,1.516,0.594,1.303,1.06,0.591,0.734,1.428,1.232,0.779,1.085,0.561,0.857,1.204,2.064,0.933,1.088,2.469,0.787,0.719,1.403,1.154,1.443,0.612,1.237,1.404,1.239,0.313,1.11,1.432,1.355,2.135,1.137,0.158,0.479,0.939,1.585,0.963,0.52,1.058,0.809,0.399,0.561,1.319,0.868,0.858,1.066,0.74,1.078,1.358,0.707,1.079,0.869 +NM_014763,0.658,0.8,1.277,0.731,1.012,0.95,0.545,0.474,1.286,1.044,1.049,0.569,0.587,0.679,1.189,2.348,0.843,0.92,1.62,0.923,0.689,0.752,1.394,1.029,0.511,0.715,1.461,0.961,0.336,1.029,1.174,0.895,4.048,1.118,0.367,0.711,1.025,0.824,1.337,0.776,1.273,0.981,0.631,1.162,1.277,1.187,1.016,0.669,1.222,0.663,1.063,0.851,1.046,2.013 +NM_014764,0.578,1.0,1.233,0.888,0.706,1.314,0.655,0.368,0.925,0.609,1.155,0.378,0.527,0.6,1.109,1.826,0.726,0.94,0.935,1.11,0.459,0.372,1.211,0.654,0.805,0.621,0.997,0.684,0.398,1.116,0.957,1.252,1.173,1.842,0.725,0.849,1.466,0.703,1.808,0.871,0.976,1.501,0.967,1.355,0.79,1.422,1.048,0.508,1.188,0.716,1.287,0.674,0.613,1.492 +NM_014765,0.783,1.502,1.185,0.625,0.956,0.843,0.42,0.35,1.206,0.908,1.078,0.411,0.664,0.622,0.952,1.246,0.725,0.791,1.158,0.849,0.562,0.708,1.392,0.946,0.857,1.01,1.346,0.987,0.329,1.119,0.936,1.373,2.162,1.436,0.192,1.417,0.981,1.416,1.194,0.937,1.218,1.351,0.716,1.288,1.011,1.065,0.667,0.671,0.936,0.781,0.961,0.762,0.887,1.383 +NM_014766,0.747,1.502,1.427,0.805,1.141,1.01,0.912,0.587,0.887,0.825,0.693,0.798,0.629,0.849,1.002,0.772,0.841,0.882,0.971,0.965,0.824,0.716,1.66,0.896,0.779,0.732,1.324,0.803,0.799,2.496,0.792,3.637,2.879,1.772,0.499,1.077,0.802,0.998,1.702,1.641,1.007,1.493,0.502,4.45,1.119,0.609,0.945,0.717,0.539,0.769,0.842,1.712,1.489,3.453 +NM_014767,0.755,0.977,1.544,0.726,0.839,0.806,0.763,0.874,0.898,0.89,0.84,0.699,0.956,0.715,0.965,0.845,1.068,0.8,0.996,1.082,0.983,0.912,1.132,0.817,0.974,0.851,1.635,0.879,0.805,1.43,0.937,2.037,0.928,1.698,0.735,0.897,0.906,0.845,1.257,0.984,1.082,1.43,0.918,0.998,1.113,0.93,1.151,0.784,0.827,0.937,0.988,3.52,1.639,2.075 +NM_014769,1.012,0.95,0.96,0.992,1.001,0.97,0.989,1.113,0.951,1.033,1.067,1.102,1.052,1.201,0.934,1.108,0.979,1.041,1.036,1.039,1.095,1.0,0.952,1.095,1.045,1.02,0.942,0.953,1.023,0.954,1.199,0.949,1.104,0.963,1.068,1.033,0.993,0.944,1.064,1.034,0.997,1.082,0.997,0.972,0.955,0.986,0.958,0.917,0.959,1.101,1.089,0.996,0.913,1.027 +NM_014770,0.917,1.092,1.038,0.933,1.025,1.005,0.82,1.132,1.119,0.931,0.901,0.99,1.115,0.996,0.841,1.037,0.997,0.921,1.113,0.979,0.922,0.968,0.785,1.087,1.016,0.918,1.113,0.975,0.668,1.109,0.968,1.144,1.047,0.954,0.887,0.993,1.156,0.965,1.07,0.899,0.803,0.896,0.798,1.081,1.096,1.094,1.036,1.057,0.987,0.994,1.029,0.872,1.139,1.189 +NM_014771,0.861,0.959,1.027,0.858,0.837,1.066,0.649,0.576,0.889,0.941,0.954,0.754,0.639,0.778,0.768,1.149,0.958,0.932,1.158,0.915,0.899,1.049,1.077,0.855,0.961,1.153,1.189,0.699,0.691,1.106,0.97,1.365,2.431,1.278,0.727,0.761,0.957,0.993,2.063,1.225,0.807,1.047,0.601,1.889,1.102,0.745,0.913,1.053,0.992,1.088,0.995,0.906,0.989,1.754 +NM_014772,0.803,1.162,1.077,0.936,1.066,1.122,0.911,0.869,0.931,1.086,0.914,0.938,0.968,0.941,1.152,1.017,0.97,0.932,1.094,0.932,1.081,1.114,1.038,0.866,1.476,1.065,1.017,1.096,0.877,0.948,1.196,1.823,1.054,1.255,1.198,0.876,0.893,1.092,1.081,0.893,0.97,1.096,1.223,1.093,0.888,0.959,0.959,1.06,0.887,0.946,0.957,0.958,1.036,1.036 +NM_014774,0.611,1.687,0.991,0.87,0.726,2.013,0.801,0.413,1.058,0.776,1.43,0.496,0.438,0.806,0.902,1.321,0.616,1.242,1.064,1.37,0.36,0.664,1.423,0.807,1.192,0.561,0.868,0.705,1.084,2.601,0.881,1.546,1.228,2.544,0.161,0.681,1.543,0.724,1.657,0.445,0.98,1.807,0.853,0.923,0.707,1.476,0.517,0.612,0.819,0.587,1.416,0.677,0.808,1.69 +NM_014777,0.906,1.03,1.017,0.837,1.161,0.855,0.768,0.742,1.15,1.202,0.799,0.929,0.727,0.852,0.893,0.983,1.005,0.881,0.939,0.867,0.887,0.878,1.261,1.001,0.837,0.983,0.978,1.028,0.753,0.937,0.987,1.117,1.609,0.983,0.704,1.236,0.942,0.966,1.289,1.28,0.771,1.042,0.904,1.165,1.222,0.888,1.014,0.816,1.183,0.912,1.044,1.142,0.999,1.622 +NM_014779,1.149,0.784,1.439,0.786,2.019,0.895,0.745,1.309,1.188,1.099,0.894,0.639,0.883,0.952,1.581,1.251,0.924,1.144,1.476,0.771,0.867,0.665,0.922,0.901,0.67,0.982,0.912,1.399,0.611,1.112,1.633,0.956,1.36,0.98,2.702,0.782,0.838,1.437,1.01,1.065,1.846,0.863,1.297,1.074,1.308,1.257,1.218,1.144,1.076,0.999,0.933,0.729,1.856,0.892 +NM_014780,1.112,1.058,1.12,0.933,0.833,1.057,0.775,0.688,0.999,0.902,1.025,0.88,1.001,0.922,0.828,1.021,0.905,0.934,1.178,0.904,0.996,0.967,1.166,0.862,1.095,1.048,0.906,0.914,0.895,1.116,1.051,1.229,1.021,1.168,0.737,0.85,0.96,0.997,1.18,1.018,1.044,1.099,0.632,1.026,1.089,0.974,0.935,1.013,0.833,1.021,0.887,0.849,0.918,1.145 +NM_014782,0.965,1.759,1.106,0.851,0.927,0.954,1.004,0.797,0.97,0.879,0.956,1.066,0.892,0.763,0.788,0.879,0.915,1.078,0.926,1.154,0.968,0.794,1.15,1.209,1.198,0.824,1.318,1.073,0.939,1.561,0.971,2.949,0.996,1.394,0.89,0.944,0.939,1.25,1.135,1.063,1.267,1.65,0.748,0.702,0.954,1.004,0.936,0.925,0.827,0.886,0.886,1.045,1.101,0.995 +NM_014783,0.969,0.958,0.984,0.927,1.025,1.009,0.815,0.926,1.161,1.074,0.909,1.136,0.947,1.06,0.962,1.227,0.969,0.937,0.947,0.944,1.065,0.986,1.182,0.786,0.935,0.872,0.99,0.868,0.826,0.923,0.978,0.965,1.24,0.817,0.911,0.99,0.997,1.028,1.126,0.962,1.072,0.907,0.804,1.148,0.941,1.106,0.996,1.025,1.005,1.025,1.055,0.981,1.095,0.983 +NM_014784,1.087,0.868,1.029,0.909,1.019,1.126,0.832,1.063,1.16,0.973,0.864,0.945,0.996,0.924,1.021,1.032,1.16,0.956,1.118,0.875,0.956,0.957,1.032,0.879,1.003,0.996,1.256,0.882,0.766,0.973,1.083,1.335,1.208,1.072,1.234,0.915,0.976,1.136,1.137,1.024,1.0,0.941,0.898,0.845,1.154,0.885,0.992,1.043,0.874,1.107,0.918,0.935,0.925,1.26 +NM_014786,0.872,1.042,1.153,1.011,0.878,0.886,0.848,0.975,1.08,0.854,1.063,0.961,0.879,0.932,1.011,0.935,0.946,0.867,0.977,0.917,0.98,0.991,1.057,0.868,1.031,0.903,1.01,0.915,1.041,1.167,0.941,3.369,1.286,1.314,0.818,0.991,0.986,1.113,1.094,1.185,0.966,1.316,1.014,0.96,1.0,0.886,0.932,0.888,0.809,1.052,1.106,1.102,0.92,1.062 +NM_014787,0.998,1.033,1.006,1.161,1.013,0.881,1.104,0.96,0.995,1.014,0.966,1.145,1.012,1.205,1.012,1.104,0.959,1.085,1.114,1.045,0.998,0.977,0.821,0.784,1.111,0.9,0.925,0.986,1.241,1.109,1.089,0.93,1.528,0.945,1.011,1.292,1.091,1.371,1.043,0.914,0.847,1.024,1.006,1.137,1.069,0.824,1.023,1.04,1.11,0.952,1.026,0.893,1.162,0.914 +NM_014788,1.104,1.002,1.099,0.786,1.109,1.035,1.06,0.949,1.155,0.999,1.068,0.901,1.013,0.766,0.998,1.042,0.988,0.797,0.895,1.142,0.946,0.964,1.068,1.073,1.081,1.05,0.87,0.993,1.001,0.974,0.749,0.909,1.16,0.814,0.903,0.913,0.958,0.904,1.102,0.887,1.271,0.983,0.84,1.218,0.908,1.091,1.107,0.997,1.021,1.026,1.033,1.06,0.955,1.036 +NM_014790,0.951,0.975,0.932,1.109,1.037,1.085,1.165,1.036,0.85,0.872,1.154,0.889,0.923,0.903,1.012,1.042,0.924,1.113,1.006,1.072,0.949,0.971,1.035,1.092,0.871,0.965,0.885,0.945,1.404,0.947,1.105,0.791,1.03,0.853,1.146,1.201,1.051,0.988,0.953,1.001,0.93,1.037,0.925,0.88,1.025,0.919,1.031,1.075,1.074,0.961,1.029,1.039,1.003,0.966 +NM_014791,0.758,0.792,1.022,1.114,1.002,1.057,0.774,0.665,1.198,1.004,0.842,0.797,0.773,0.743,1.126,1.199,0.793,1.098,1.116,0.859,0.947,0.781,1.677,1.023,0.676,0.829,1.449,0.823,0.644,1.044,0.935,0.997,2.187,0.905,0.641,1.293,1.0,0.72,1.526,1.17,0.888,0.827,0.826,2.463,0.822,1.034,0.924,0.814,1.244,0.899,1.249,1.536,1.029,3.866 +NM_014792,1.162,0.94,1.067,0.945,0.994,0.918,1.178,0.96,0.963,0.841,0.946,0.927,0.947,0.929,0.982,0.966,1.001,0.97,1.037,1.178,0.811,1.026,0.964,0.898,1.017,1.035,0.903,0.936,0.81,1.028,0.906,0.999,0.942,1.197,1.064,1.026,1.062,0.947,1.168,0.903,0.891,1.135,0.916,1.082,0.992,0.972,1.103,0.984,0.933,1.082,1.023,0.96,0.988,1.06 +NM_014793,0.969,1.042,1.32,0.833,0.896,1.005,0.802,0.753,1.23,0.991,1.021,0.896,0.949,0.901,1.124,1.223,0.94,0.746,1.484,0.919,1.226,0.931,1.499,1.277,0.81,1.123,1.227,1.035,0.649,0.761,1.332,1.067,1.771,1.112,1.037,0.975,0.859,0.883,0.979,0.863,1.596,0.89,0.958,0.95,0.975,0.699,0.899,0.879,0.936,1.474,0.964,0.821,0.995,1.742 +NM_014795,0.784,1.217,0.816,0.914,0.808,0.991,1.059,0.83,0.812,0.848,1.423,0.652,0.845,0.791,1.003,1.23,0.765,0.921,0.861,0.971,0.878,0.727,1.516,0.828,1.238,0.562,0.888,1.066,0.647,2.084,0.725,2.77,1.146,2.76,0.694,0.801,0.99,1.011,1.453,1.782,1.114,1.991,0.92,0.857,0.766,1.05,0.837,0.776,0.881,0.691,1.09,1.191,0.995,1.142 +NM_014797,0.834,0.973,1.122,0.819,1.059,1.011,0.912,0.748,1.072,1.086,0.871,0.927,0.855,0.891,0.849,1.044,0.95,0.917,1.11,0.979,0.752,0.958,0.969,1.016,0.868,1.037,1.205,1.052,0.791,1.166,0.943,1.227,1.463,1.278,0.702,0.997,1.007,1.051,0.975,1.01,1.052,1.037,0.933,1.055,1.07,0.957,0.974,0.979,1.0,0.933,0.879,1.033,0.91,1.844 +NM_014798,1.452,0.674,1.375,0.913,1.281,0.911,0.67,1.136,1.414,1.271,1.01,0.831,0.999,1.063,1.384,1.286,1.127,0.93,1.697,0.813,0.688,1.107,0.847,1.071,0.624,1.463,1.316,1.141,0.533,0.858,1.601,0.866,1.481,1.266,1.16,0.678,0.682,0.911,1.19,0.687,1.001,0.917,0.829,0.976,1.458,0.705,1.002,1.618,0.653,1.531,0.97,0.736,1.072,1.283 +NM_014799,1.575,2.672,1.682,1.71,1.41,5.936,1.729,1.395,1.388,1.412,5.906000000000001,1.6949999999999998,1.483,1.426,5.812,10.33,1.5830000000000002,2.0999999999999996,1.491,12.951,1.455,1.397,9.4,1.536,1.4849999999999999,1.439,1.484,1.4649999999999999,2.114,3.42,1.369,4.679,3.6710000000000003,2.666,1.355,3.623,8.270999999999999,1.778,6.209,2.83,1.7389999999999999,6.659,6.095,2.309,1.457,10.385,6.804,1.5170000000000001,8.879999999999999,1.335,9.870000000000001,1.772,1.502,4.061999999999999 +NM_014800,1.214,1.173,1.227,0.931,1.02,1.02,1.198,0.899,1.075,1.016,0.893,1.108,1.018,0.911,1.092,1.068,0.967,0.993,0.908,1.12,0.928,1.238,0.897,0.979,0.946,1.085,0.985,1.029,0.922,0.961,1.102,1.056,0.958,0.915,1.171,0.893,0.998,1.047,1.173,0.851,1.097,0.86,0.866,0.89,1.012,0.946,0.765,0.938,1.071,0.953,0.823,0.797,1.062,1.142 +NM_014801,1.022,1.01,1.025,0.853,0.927,0.864,0.849,1.012,0.911,1.025,0.98,0.959,0.928,0.964,0.914,0.933,0.956,1.171,0.901,0.938,0.967,0.972,1.048,1.034,1.079,0.966,1.052,0.907,0.949,0.997,0.974,0.964,1.062,0.966,1.039,1.28,1.087,1.126,0.999,1.318,0.926,0.882,1.003,1.029,1.177,0.756,1.069,0.98,0.908,1.014,1.037,1.008,0.974,1.017 +NM_014802,0.578,1.265,1.192,0.929,0.706,1.631,0.754,0.422,0.948,0.714,1.403,0.855,0.557,0.577,0.995,1.522,0.679,1.234,0.773,2.012,0.339,0.776,1.828,0.748,0.836,0.546,1.01,0.811,0.515,2.155,0.576,0.638,2.72,1.726,0.24,1.356,1.591,0.88,1.299,0.84,0.899,1.482,1.056,0.699,0.667,1.643,0.802,0.594,1.234,0.633,1.468,0.589,0.512,1.079 +NM_014804,0.911,0.774,0.957,0.912,0.941,1.134,0.854,0.995,1.021,0.957,0.879,1.025,0.855,0.924,0.877,1.107,0.969,0.994,1.0,1.092,1.054,1.037,1.059,0.936,1.0,0.926,1.062,0.981,0.56,1.122,0.952,1.207,1.052,1.222,0.845,0.996,0.963,0.842,0.975,1.029,0.921,1.017,0.887,0.961,0.958,0.91,0.929,0.944,1.003,0.84,1.097,0.909,0.898,1.313 +NM_014807,0.933,0.954,1.001,0.825,0.803,1.138,0.837,0.736,0.892,0.826,1.202,0.924,0.886,0.76,1.173,1.526,0.939,0.904,0.999,1.171,0.949,0.934,1.046,0.96,0.897,0.882,0.972,0.887,0.838,1.076,0.843,1.029,1.007,1.054,0.857,1.114,1.123,1.003,1.307,0.999,0.968,1.057,0.809,0.888,1.012,1.363,0.934,0.982,1.101,1.09,1.013,0.826,1.157,1.014 +NM_014808,0.917,0.878,0.901,0.879,0.886,1.248,0.901,0.816,0.904,0.863,1.043,0.887,0.707,0.856,0.922,1.324,0.828,1.041,1.072,1.009,0.879,0.921,1.518,0.908,1.002,0.987,0.879,0.852,0.843,1.3,0.971,1.011,1.024,1.289,0.782,0.835,0.948,0.884,1.145,0.866,0.947,1.045,0.915,1.376,0.852,1.058,0.986,0.995,0.978,0.924,1.073,0.82,0.896,1.111 +NM_014809,0.96,1.006,0.961,1.009,1.104,0.831,1.07,1.048,0.838,1.098,1.023,0.985,0.95,1.179,0.73,0.99,1.031,0.893,1.046,1.027,0.996,1.099,0.946,0.896,0.982,0.865,1.111,1.007,1.077,1.07,1.148,1.007,1.0,0.959,0.81,1.084,0.994,0.938,0.848,1.111,0.888,1.163,1.141,0.854,1.045,0.994,0.87,1.0,1.005,1.006,0.836,0.955,1.124,1.063 +NM_014810,0.718,1.007,1.552,0.642,1.082,1.301,0.837,0.709,1.156,0.705,0.857,0.775,0.744,0.752,0.775,1.365,0.749,0.933,1.073,1.084,0.606,0.889,1.173,1.06,0.742,0.713,1.31,0.898,1.226,1.1,1.044,1.16,1.815,1.32,0.72,0.882,1.209,1.114,1.203,1.127,0.941,1.298,0.69,0.866,0.981,0.879,0.78,0.718,1.036,1.019,1.094,0.703,0.808,1.061 +NM_014811,0.608,1.623,0.819,0.941,0.683,1.276,0.854,0.501,0.923,0.617,0.924,0.635,0.526,0.779,1.181,0.97,0.752,0.88,0.626,1.378,0.608,0.833,1.033,0.666,0.896,0.756,0.89,0.75,0.702,1.282,0.732,2.108,1.421,1.392,0.512,2.131,1.045,0.747,1.302,2.033,0.755,1.143,1.045,1.591,0.692,1.026,0.866,0.662,0.867,0.634,1.139,0.893,0.659,2.239 +NM_014812,0.906,0.948,0.997,0.866,1.075,1.042,1.114,0.862,0.844,1.01,0.943,0.953,0.972,1.066,0.944,1.036,0.992,1.122,1.093,0.999,0.879,1.01,0.971,1.021,0.983,0.918,1.001,0.871,0.925,0.807,1.045,1.34,1.265,0.967,0.98,0.946,0.943,1.018,0.963,1.17,0.947,1.019,0.939,1.214,0.96,1.083,1.084,0.9,1.023,1.021,1.02,1.233,0.955,1.495 +NM_014813,0.95,1.192,0.888,0.904,0.92,1.206,0.929,0.87,1.206,0.944,1.086,0.868,0.924,1.007,1.02,1.08,0.985,1.016,0.883,1.199,0.911,1.041,0.884,1.147,0.922,0.975,1.024,1.026,0.886,0.906,0.944,0.988,1.25,0.901,0.834,0.964,0.983,0.979,1.122,1.036,1.101,0.987,1.068,1.112,0.972,1.15,0.902,0.988,1.064,0.985,0.868,0.985,0.902,1.442 +NM_014814,0.66,0.835,1.406,0.69,1.006,1.018,0.395,0.6,1.522,1.216,0.753,0.955,0.706,0.656,0.974,1.842,1.038,0.858,2.093,0.636,0.47,1.063,1.017,1.345,0.454,0.952,1.317,0.952,0.417,0.85,1.264,0.769,2.271,1.25,0.293,0.584,0.869,1.295,1.335,0.588,1.333,0.977,0.511,0.8,1.322,0.892,0.952,0.994,0.957,1.05,0.637,0.821,1.131,1.77 +NM_014815,0.991,1.017,0.891,1.085,0.826,1.206,1.0,0.677,0.956,1.075,0.709,0.774,0.865,0.811,0.781,1.108,0.89,0.932,1.002,0.877,0.914,0.869,1.309,0.961,0.871,0.937,0.957,0.753,0.83,1.32,0.88,1.026,1.583,1.178,0.854,0.848,0.995,0.839,2.35,0.839,0.856,1.03,0.899,1.524,0.846,0.869,0.927,0.814,1.053,0.836,0.934,0.887,0.914,1.095 +NM_014817,0.814,1.148,1.356,0.865,0.943,0.961,1.083,0.69,1.289,1.029,0.968,1.15,0.958,1.101,1.151,1.025,1.162,0.858,1.042,0.945,0.908,0.953,1.784,1.107,0.92,0.848,2.136,1.021,0.725,1.302,0.947,3.958,1.106,1.313,0.656,0.713,0.972,0.943,0.807,0.745,1.28,1.168,0.804,2.017,1.002,1.069,0.877,0.832,0.844,1.179,1.079,0.715,0.916,0.769 +NM_014819,0.514,1.0,1.465,0.744,0.547,0.953,0.811,0.653,1.153,0.896,1.503,1.025,0.582,0.658,1.01,1.923,0.648,1.064,1.4,1.236,0.572,0.922,1.264,0.9,0.605,0.769,1.398,0.61,0.434,1.481,1.018,1.458,1.59,1.568,0.564,0.548,1.566,1.043,0.795,0.77,1.001,0.964,0.502,0.495,1.006,1.213,0.933,0.517,1.033,0.994,1.377,0.898,1.187,1.41 +NM_014820,0.669,0.855,1.349,0.724,1.001,1.45,1.024,0.975,1.159,0.949,0.953,1.344,0.81,0.809,0.9,1.779,1.208,0.935,0.692,1.221,0.545,1.326,1.151,1.434,0.725,0.56,1.573,0.911,1.678,1.206,1.321,1.585,2.915,1.211,0.501,0.572,1.016,1.253,1.383,0.773,1.094,1.175,0.815,0.669,1.067,0.911,1.05,0.809,1.442,0.687,1.245,0.747,0.565,1.771 +NM_014821,0.795,1.023,1.03,0.873,0.802,0.949,0.809,0.683,1.321,1.014,1.12,0.823,0.733,0.863,0.885,1.303,0.963,0.904,1.018,1.097,0.779,0.841,0.961,0.993,0.72,0.919,1.016,1.113,1.174,1.003,0.989,1.318,1.024,1.199,0.902,0.965,1.078,0.903,1.055,1.122,1.081,1.12,0.823,1.454,0.937,1.058,0.92,0.795,0.964,0.824,1.016,0.833,1.068,1.253 +NM_014822,0.418,1.302,0.816,1.206,0.66,1.979,1.229,0.387,0.673,0.781,1.828,0.449,0.423,0.428,1.223,2.664,0.598,1.519,0.536,2.009,0.438,0.484,1.866,0.791,1.134,0.449,0.722,0.526,0.657,2.437,0.698,2.012,0.907,1.639,0.34,0.927,2.838,0.541,2.211,0.762,0.797,2.005,1.232,0.827,0.631,2.824,1.25,0.5,2.337,0.569,2.121,0.884,0.479,0.952 +NM_014824,0.66,1.519,1.49,0.779,0.847,0.906,1.16,0.668,0.998,0.866,0.769,0.982,0.86,0.859,1.154,0.851,0.917,0.927,0.978,1.141,0.645,0.8,1.207,0.875,1.175,0.86,1.444,0.939,0.692,1.301,0.933,2.753,2.234,1.693,0.534,1.314,1.0,1.076,1.157,1.636,1.183,1.464,0.718,0.855,0.915,0.798,0.771,0.673,0.726,0.859,0.863,1.512,0.903,2.031 +NM_014826,1.106,0.999,0.934,1.172,0.993,1.005,1.039,0.852,1.02,1.045,1.024,1.118,1.022,1.055,0.95,1.034,0.93,0.835,0.908,1.075,0.874,0.969,1.02,1.027,1.05,0.972,1.046,1.091,0.971,1.045,1.021,1.214,0.856,0.937,1.132,1.014,0.99,0.995,1.123,0.932,0.989,0.871,0.959,1.05,0.982,0.954,1.121,0.958,0.975,0.94,1.007,0.893,0.864,0.962 +NM_014827,0.702,0.955,1.61,0.843,0.907,0.917,0.583,0.398,1.32,0.949,0.781,0.509,0.542,0.709,1.191,1.191,0.957,0.724,0.96,1.293,0.487,0.708,1.104,0.929,0.617,0.719,1.531,0.825,0.345,1.206,1.112,1.946,2.355,1.2,0.717,0.83,0.751,0.644,1.404,1.593,0.984,1.21,0.75,1.296,0.938,1.03,0.742,0.713,0.786,0.984,1.019,0.718,0.977,1.722 +NM_014828,0.745,1.438,1.378,0.808,1.077,1.25,0.705,0.865,1.184,0.96,0.936,0.986,0.725,0.735,1.132,1.404,1.047,0.967,0.976,1.009,0.73,1.014,1.052,1.027,0.784,0.879,1.276,0.916,0.61,1.161,1.062,1.271,1.108,1.209,0.659,0.73,0.983,1.156,0.982,0.795,1.113,1.179,0.779,0.76,0.942,0.997,0.955,1.043,1.108,0.906,1.032,0.817,0.93,1.198 +NM_014829,0.632,0.883,1.59,0.709,0.973,1.169,0.743,0.52,1.249,1.067,0.754,0.776,0.623,0.662,1.03,1.415,0.972,0.958,0.868,1.124,0.568,0.865,1.285,1.112,0.684,0.575,1.717,1.009,0.513,1.098,1.085,1.196,3.046,1.157,0.394,0.677,0.806,1.082,1.758,0.869,1.081,1.075,0.605,0.712,1.075,0.935,1.127,0.689,1.084,0.941,1.126,0.813,0.671,1.648 +NM_014830,0.851,1.09,0.977,0.821,0.856,0.785,1.249,0.893,0.934,0.967,1.344,1.042,0.976,0.891,1.026,0.97,0.912,1.001,0.908,0.756,1.178,0.82,1.153,0.885,0.946,0.798,0.862,1.043,1.07,1.028,0.994,1.084,1.129,0.988,1.054,1.022,1.066,0.943,0.898,1.059,1.077,0.999,0.919,1.132,0.984,1.407,0.863,0.892,1.012,0.991,1.129,0.7,1.078,1.164 +NM_014835,0.591,0.835,1.336,0.667,0.78,1.349,0.669,0.563,1.038,0.652,1.044,0.685,0.541,0.705,1.072,1.428,1.0,0.903,1.287,1.108,0.523,1.0,1.168,1.01,0.504,0.766,0.994,0.834,0.547,1.717,1.046,0.793,1.101,1.548,0.556,0.511,0.816,1.004,1.159,0.779,1.031,1.145,0.403,0.686,0.931,0.964,1.125,0.859,0.609,1.011,1.044,0.621,0.739,1.501 +NM_014837,0.97,0.91,0.975,0.826,0.834,1.111,0.699,0.541,0.731,0.711,1.068,0.6,0.611,0.65,0.792,1.101,1.061,0.951,1.074,0.82,0.599,1.132,1.321,0.944,0.898,1.032,1.17,0.626,0.767,1.218,0.753,0.886,1.966,1.326,1.203,1.114,1.043,1.067,2.104,1.577,0.738,1.064,0.643,1.883,0.948,0.803,0.879,1.16,0.723,0.898,0.976,0.88,0.657,1.011 +NM_014838,0.881,0.902,1.157,0.829,0.84,0.893,0.928,0.794,1.157,0.937,0.972,0.703,0.82,0.837,0.887,1.23,0.821,0.865,1.143,0.955,0.837,0.822,1.202,0.941,0.735,0.96,1.214,0.896,0.564,0.984,0.98,0.888,1.689,1.034,0.808,0.921,0.941,1.0,1.356,1.012,1.052,0.877,1.196,1.065,1.133,1.17,0.766,0.885,1.066,1.06,0.981,0.928,0.985,1.185 +NM_014840,0.851,1.283,0.787,0.842,0.826,1.047,1.035,0.884,0.801,0.897,1.031,0.81,0.759,0.846,0.723,1.209,0.943,0.836,0.752,0.996,0.787,0.806,1.65,1.016,0.934,0.812,1.109,1.021,0.566,1.324,0.906,5.672,1.574,1.31,0.743,0.832,0.999,0.845,1.092,1.858,1.028,1.511,0.631,0.822,0.924,1.132,0.946,0.881,0.936,0.85,1.416,1.331,0.873,2.0 +NM_014841,1.15,0.984,1.139,0.942,0.995,0.973,1.053,1.14,1.108,0.917,0.923,1.148,0.958,0.997,1.139,1.104,0.927,0.952,0.987,0.953,0.883,0.886,1.07,1.135,1.054,0.926,1.177,0.963,1.169,1.06,1.146,1.003,1.003,1.152,0.985,1.216,1.065,0.959,0.995,0.952,1.072,0.835,1.047,0.941,1.07,0.919,0.986,0.85,0.941,1.048,1.105,1.069,0.834,1.015 +NM_014844,0.986,0.989,1.144,0.975,1.045,1.075,0.92,0.893,0.993,1.008,0.847,0.918,0.749,0.755,0.9,1.331,0.972,0.906,1.029,0.977,0.814,0.978,1.167,1.092,0.85,0.957,0.95,0.901,0.962,1.02,1.08,1.464,1.141,1.097,0.856,0.787,1.013,0.991,1.254,1.093,0.968,1.026,0.888,1.15,1.041,0.949,1.003,0.947,0.879,0.938,1.089,0.85,1.021,1.227 +NM_014845,0.91,1.21,1.115,1.044,0.986,1.132,0.679,0.603,1.202,0.982,1.102,0.899,0.914,0.847,1.109,0.967,1.012,0.999,1.043,1.215,0.779,1.123,1.221,0.914,0.982,0.997,0.969,1.031,0.717,1.2,1.15,0.91,0.872,1.518,0.479,0.599,0.949,1.051,1.097,0.769,0.899,1.035,0.789,1.175,1.031,0.948,0.792,0.902,0.83,0.717,1.041,0.722,1.027,1.238 +NM_014846,0.721,1.03,1.126,0.829,0.785,1.099,0.584,0.442,1.08,0.952,1.231,0.596,0.468,0.605,1.074,1.405,0.82,0.743,0.961,1.068,0.562,0.528,1.154,0.663,0.732,0.816,0.981,0.659,0.652,1.094,0.797,1.412,1.929,1.393,0.273,1.058,0.92,0.724,1.19,0.991,0.868,1.214,0.657,1.82,0.994,1.338,0.844,0.63,1.28,0.84,1.054,0.736,1.039,1.614 +NM_014847,0.824,0.915,1.05,0.975,0.944,1.036,0.926,0.61,1.175,1.202,0.83,0.883,0.899,0.884,1.022,0.858,1.005,0.878,1.299,0.711,1.124,0.912,1.171,0.995,0.975,1.107,1.471,0.927,0.724,0.902,0.861,1.722,3.333,0.969,0.798,1.114,0.889,1.079,1.626,1.307,1.043,0.894,0.832,1.59,1.165,0.833,0.956,0.882,1.217,1.195,0.84,1.172,0.941,1.166 +NM_014848,0.941,0.951,0.986,1.0,1.006,0.971,0.967,0.954,0.976,1.014,1.059,0.865,0.979,0.945,0.785,0.793,0.903,1.037,0.98,0.849,1.082,0.952,0.982,1.007,0.985,1.041,0.985,0.95,0.825,1.042,0.953,1.128,1.021,1.499,1.0,0.921,1.195,0.976,0.904,0.928,0.977,1.169,0.893,0.976,0.937,0.859,1.005,0.826,0.945,1.097,1.16,0.913,1.004,1.004 +NM_014849,0.884,0.969,0.899,1.074,1.003,1.02,0.971,1.002,0.988,0.877,1.033,1.119,0.939,0.896,0.894,0.959,0.945,1.031,1.029,1.071,0.913,0.88,0.982,1.008,0.981,1.157,0.999,0.912,1.287,0.925,0.934,1.902,1.005,1.045,0.871,1.162,0.937,0.973,0.969,1.196,0.939,1.091,0.923,1.134,1.002,0.951,0.973,0.99,0.89,0.931,0.992,0.931,0.987,1.078 +NM_014850,0.975,1.205,1.032,0.839,0.848,0.831,0.807,0.686,1.179,0.994,0.978,0.999,1.083,1.023,1.153,0.947,0.964,0.816,1.057,1.072,0.857,1.044,1.011,1.011,1.159,1.093,1.345,1.107,1.191,1.649,1.099,1.108,1.116,1.209,0.785,0.829,0.969,1.097,0.873,0.858,0.983,1.064,0.643,0.791,0.958,1.001,0.968,0.835,0.863,1.008,0.875,0.88,1.156,0.924 +NM_014851,1.006,0.955,1.418,0.799,1.135,0.731,0.669,0.812,1.34,0.96,0.662,0.944,0.901,1.038,0.878,0.866,1.127,1.075,1.383,0.772,1.225,1.06,0.805,1.077,0.865,1.507,1.349,1.176,0.697,0.803,1.29,1.005,1.499,0.963,1.133,1.043,0.742,1.66,1.192,1.125,1.031,0.941,0.727,1.315,1.143,0.753,0.875,1.264,0.737,1.454,0.728,0.948,1.482,1.183 +NM_014854,0.581,1.607,1.147,0.684,0.866,1.217,0.575,0.273,0.943,0.702,1.064,0.51,0.496,0.849,1.01,1.205,0.853,0.923,0.779,1.356,0.474,0.975,1.129,0.819,0.852,0.785,1.158,0.713,0.561,1.622,0.794,1.883,1.91,1.396,0.46,0.879,1.362,0.806,1.051,1.2,0.847,1.238,0.781,0.924,0.751,1.104,1.03,0.575,0.843,0.634,1.212,0.606,0.682,1.086 +NM_014856,0.936,0.998,1.119,1.068,0.8,0.971,0.956,0.721,0.911,0.924,0.894,0.729,0.852,0.899,0.976,0.895,0.971,0.937,0.914,1.228,0.71,0.954,1.072,1.071,1.078,0.946,1.083,0.829,0.922,1.104,0.884,1.895,1.681,1.043,0.639,1.294,0.943,0.739,1.333,1.99,0.898,1.023,0.836,1.399,1.028,0.79,0.973,0.997,0.966,0.96,1.001,1.042,0.884,1.924 +NM_014857,0.749,1.373,1.077,0.804,0.88,1.454,0.882,0.751,1.039,0.775,0.969,0.679,0.877,0.768,0.912,1.62,0.668,1.176,1.182,1.507,0.563,0.95,1.3,0.8,0.84,0.702,1.057,0.981,0.632,1.233,1.222,0.909,1.663,1.425,0.646,0.664,1.213,1.021,1.175,0.768,0.959,1.3,0.661,0.765,0.756,1.17,0.894,0.749,1.019,0.704,1.215,0.726,0.661,1.052 +NM_014858,0.948,0.821,0.986,1.082,0.93,1.014,1.04,1.013,1.225,0.978,0.949,0.806,0.991,1.3,0.802,1.282,0.923,1.03,0.945,1.063,0.825,1.041,1.108,1.101,1.03,1.04,0.813,1.066,0.94,0.947,0.93,0.916,1.029,1.057,1.082,0.973,1.068,0.873,1.039,0.927,0.888,0.919,1.065,0.918,1.183,0.962,0.997,1.007,1.043,0.879,1.033,0.987,0.955,1.11 +NM_014859,0.543,1.949,0.626,0.895,0.598,1.824,0.898,0.584,0.626,0.521,1.682,0.488,0.536,0.585,1.012,2.717,0.611,0.806,0.556,2.451,0.575,0.632,1.304,0.566,0.967,0.541,0.583,0.601,0.632,2.335,0.581,3.015,1.181,2.106,0.557,0.745,2.349,0.634,2.076,0.822,0.625,2.027,1.916,0.631,0.533,2.87,0.804,0.558,2.243,0.469,2.104,0.815,0.602,3.05 +NM_014861,0.607,1.22,0.644,1.045,0.598,2.43,0.823,0.535,0.644,0.656,2.347,0.698,0.623,0.615,1.207,2.755,0.575,1.132,0.735,2.198,0.587,0.616,3.824,0.699,0.529,0.68,0.593,0.521,0.996,1.339,0.581,0.64,1.813,1.437,0.513,0.774,1.309,0.668,2.24,0.9,0.516,2.032,1.357,1.07,0.614,2.368,1.234,0.613,1.162,0.668,2.018,0.679,0.636,1.546 +NM_014862,0.824,1.165,0.986,0.916,0.821,1.254,0.795,0.999,1.001,0.921,1.072,0.778,0.884,0.944,0.868,0.974,0.943,1.09,0.877,1.189,0.953,0.84,0.992,0.742,1.049,0.862,0.937,0.88,1.077,0.974,0.866,1.289,1.613,1.465,0.991,0.921,1.156,0.825,1.038,0.971,0.846,1.07,0.903,1.108,0.968,0.887,0.813,1.015,0.881,1.296,1.192,0.853,0.998,1.046 +NM_014863,0.977,0.963,0.926,1.123,1.019,0.933,0.837,0.926,1.119,1.064,0.923,1.074,0.942,1.202,0.909,1.054,0.89,0.868,0.89,0.869,1.034,0.984,0.915,0.929,0.898,1.015,1.069,1.01,1.024,0.871,0.972,1.008,1.066,0.889,1.007,0.952,1.01,0.926,0.918,1.08,1.052,1.008,1.029,1.061,1.073,1.016,1.048,1.102,0.913,0.883,1.052,0.966,1.088,0.961 +NM_014864,0.69,1.078,1.075,1.01,0.596,1.106,0.576,0.45,1.079,0.819,1.407,0.685,0.541,0.671,0.951,1.152,0.645,0.679,0.876,1.445,0.489,0.582,1.121,0.841,0.782,0.696,0.981,0.817,0.377,1.206,0.769,1.709,2.015,1.767,0.273,1.48,0.801,0.684,1.573,0.951,0.954,1.188,0.792,1.377,0.832,1.072,0.706,0.583,0.744,0.627,1.054,0.726,1.04,1.078 +NM_014865,0.74,0.888,1.114,0.851,0.832,0.946,0.526,0.428,1.422,1.022,0.75,0.78,0.632,0.7,0.834,1.015,0.939,0.945,0.916,0.906,0.582,0.708,1.283,1.005,0.597,0.693,1.496,0.671,0.522,1.237,0.889,1.56,4.543,1.148,0.415,1.607,0.763,0.853,1.728,1.637,1.108,0.975,0.996,1.678,0.881,0.892,1.356,0.562,1.125,0.741,1.14,1.466,1.06,1.708 +NM_014867,0.593,0.904,0.616,0.809,0.502,2.418,0.789,0.565,0.56,0.636,3.047,0.627,0.556,0.54,1.661,3.926,0.62,0.826,0.589,2.435,0.615,0.533,3.565,0.634,1.05,0.505,0.502,0.661,0.718,1.908,0.536,1.382,2.644,2.414,0.591,1.269,2.464,0.54,2.065,0.78,0.61,2.396,1.811,1.427,0.529,3.378,1.216,0.609,4.064,0.566,2.986,0.903,0.758,2.283 +NM_014868,0.875,0.662,1.1,0.82,0.89,1.48,0.635,0.821,1.215,0.986,1.463,1.003,0.8,0.852,1.151,1.779,0.726,0.98,1.178,1.089,0.772,0.867,1.073,0.887,0.98,1.067,1.013,0.967,0.599,1.332,0.949,0.997,1.108,1.339,0.661,0.983,1.171,1.045,1.212,0.747,0.973,1.138,0.82,0.85,1.039,1.145,0.864,0.943,0.966,1.047,1.109,0.84,1.244,1.133 +NM_014869,0.837,0.948,0.942,1.05,0.905,1.022,0.801,0.803,0.94,0.985,0.87,0.975,0.951,0.874,1.163,0.966,1.083,1.069,0.99,1.03,0.971,0.851,1.082,0.97,0.853,0.935,0.968,0.973,1.037,1.076,0.895,1.319,1.069,1.005,0.909,1.063,0.884,1.102,1.11,1.074,1.019,1.072,1.03,1.082,1.01,0.892,0.986,1.102,0.832,0.924,0.895,1.003,0.926,1.059 +NM_014870,0.74,0.952,1.226,0.902,0.898,1.166,1.154,0.707,1.111,0.703,1.047,0.775,0.761,0.762,0.827,1.202,0.886,1.01,0.831,0.996,0.786,0.89,1.426,1.031,0.786,0.665,1.432,0.856,0.849,1.19,0.91,1.294,1.177,1.254,0.655,0.989,1.209,0.872,1.207,1.38,0.941,1.573,0.897,1.149,1.06,1.094,0.985,0.813,1.086,0.915,1.364,1.12,0.972,1.574 +NM_014871,0.74,0.971,1.362,0.903,1.059,0.997,0.69,0.558,1.209,1.03,0.809,1.026,0.701,0.862,1.122,1.248,0.994,0.986,0.953,1.548,0.647,0.99,1.191,0.912,0.72,0.744,1.527,0.783,0.591,1.569,0.764,1.369,0.852,1.069,0.464,0.932,1.026,0.916,1.054,1.257,0.912,1.056,1.185,1.203,0.827,1.26,0.875,0.707,1.069,0.725,1.312,0.82,0.996,1.004 +NM_014872,1.268,0.661,1.464,0.729,1.49,0.931,0.536,1.15,2.174,1.228,0.872,1.4,1.036,1.422,1.616,1.144,0.999,1.215,2.286,0.68,1.056,1.655,0.793,1.789,0.556,1.305,1.753,1.661,0.462,0.876,1.849,0.934,1.288,1.03,0.613,0.645,0.726,1.901,0.789,0.729,1.645,0.742,0.574,0.904,1.327,0.82,0.925,1.242,0.606,1.001,0.778,1.051,1.112,1.665 +NM_014873,0.778,0.842,0.959,0.823,0.842,0.891,0.835,0.619,0.937,0.868,1.321,0.886,0.769,1.142,1.251,1.783,0.896,0.744,0.978,0.969,0.835,0.793,1.207,0.895,0.805,0.869,1.047,0.901,0.905,0.987,0.997,1.582,2.315,0.919,0.828,1.319,1.227,0.876,1.07,1.464,0.955,1.087,1.055,1.358,0.855,1.433,1.015,0.974,1.335,0.931,1.119,0.918,1.007,1.441 +NM_014874,0.717,1.082,1.317,0.716,0.893,0.892,0.903,0.596,1.09,1.177,0.995,0.854,0.691,0.659,0.847,1.419,1.056,1.109,0.903,0.952,0.633,0.877,1.455,1.103,0.895,0.801,1.19,0.781,0.703,1.072,0.899,1.032,1.271,1.053,0.488,0.808,1.179,0.984,1.762,0.89,1.105,1.19,0.769,1.033,1.143,0.984,1.151,0.91,1.236,1.074,0.927,1.259,0.759,1.453 +NM_014875,0.934,0.967,1.051,1.066,0.852,0.959,0.798,0.792,0.978,1.013,0.985,0.849,0.915,0.929,0.818,1.03,0.945,0.927,1.129,0.912,0.739,0.993,1.108,1.054,1.047,1.036,1.223,0.959,0.957,1.042,0.888,1.107,1.997,0.902,0.916,1.318,1.005,0.903,1.343,1.271,0.971,0.872,1.042,1.282,1.009,1.019,1.021,0.966,1.134,0.867,0.997,0.965,0.949,1.471 +NM_014876,0.351,1.177,0.946,0.585,0.554,1.944,0.703,0.432,0.616,0.6,1.28,0.563,0.428,0.479,1.124,1.6,0.734,0.885,0.64,1.364,0.318,0.626,1.311,0.53,0.491,0.46,1.054,0.637,0.654,1.477,0.727,1.542,1.206,1.46,0.409,1.315,1.507,0.635,1.651,1.083,0.806,1.262,1.771,1.051,0.417,1.834,0.99,0.361,1.472,0.633,1.475,0.767,0.82,1.654 +NM_014877,0.786,1.04,0.983,0.699,0.864,0.839,1.097,0.632,0.752,0.815,0.888,0.695,0.888,0.881,0.964,1.047,0.86,0.942,1.022,0.941,0.72,0.902,1.1,0.779,0.871,0.763,1.038,0.816,0.885,1.062,0.978,1.406,1.24,1.121,0.995,1.005,1.095,1.016,1.567,1.283,0.847,1.33,0.907,1.561,0.874,0.886,0.815,0.877,0.899,0.76,1.012,0.872,0.993,1.118 +NM_014878,0.739,0.72,1.333,0.677,1.016,0.973,0.719,0.799,1.531,1.36,0.787,1.408,0.737,0.749,0.884,1.302,1.04,0.847,1.345,0.883,0.729,1.108,1.187,1.999,0.514,0.841,1.786,0.9,0.605,0.97,1.074,1.029,1.335,0.968,0.408,0.945,0.838,1.116,0.991,0.712,1.44,0.922,0.779,1.371,1.324,0.971,1.058,0.751,1.285,0.789,1.12,1.106,1.257,2.733 +NM_014879,0.876,1.034,0.816,1.101,1.214,1.0,1.145,1.015,1.075,1.017,1.328,1.046,1.137,1.289,0.996,0.971,0.981,1.029,0.896,0.98,1.215,0.959,0.967,1.071,1.201,1.099,1.034,0.978,1.868,1.018,0.873,1.016,1.068,0.965,1.002,0.951,0.96,0.987,1.031,0.882,1.052,1.205,0.948,0.812,1.065,0.972,0.88,0.97,0.985,1.154,1.115,0.991,1.061,1.205 +NM_014881,0.9,1.022,1.005,0.765,0.766,1.224,0.873,0.817,0.887,0.937,0.968,1.036,0.947,0.769,0.898,1.113,1.013,0.936,0.946,1.125,0.785,0.915,1.047,1.005,0.945,0.752,0.965,1.031,0.687,1.086,0.973,1.173,1.793,1.097,0.711,1.161,1.043,0.919,0.959,1.029,1.004,0.966,0.732,1.163,1.0,1.091,0.993,0.861,0.958,0.845,1.038,1.053,0.767,1.31 +NM_014882,0.808,0.924,1.469,1.091,0.711,0.971,1.234,0.848,0.893,0.835,1.112,0.925,1.081,0.925,0.8,0.857,0.992,0.904,0.987,0.887,1.047,1.199,0.943,0.968,0.88,1.042,1.381,0.825,0.923,0.957,0.832,1.357,1.076,1.249,0.706,0.788,1.027,0.854,1.535,1.8,1.011,1.362,0.625,0.819,1.16,0.668,0.781,0.785,0.701,0.979,0.841,1.227,1.198,1.717 +NM_014883,0.693,1.323,0.909,0.729,0.707,1.633,0.882,0.662,0.754,0.748,1.56,0.63,0.655,0.688,1.514,1.783,0.811,1.087,0.631,2.394,0.648,0.747,1.335,0.7,1.017,0.728,0.875,0.791,0.841,1.559,0.846,1.353,1.071,1.8,0.98,0.831,2.413,0.76,1.18,0.978,0.853,1.525,1.035,0.851,0.797,2.49,1.057,0.582,0.941,0.731,1.799,0.732,0.736,0.939 +NM_014884,0.718,1.06,1.094,0.999,0.894,0.973,0.642,0.582,1.489,0.954,0.833,0.707,0.654,0.841,1.055,0.976,1.056,0.719,0.814,1.211,0.678,0.82,1.929,1.103,0.658,0.796,1.603,0.823,0.467,1.168,0.984,1.744,1.279,1.104,0.695,0.99,0.948,0.793,1.28,1.447,1.114,1.001,1.034,1.069,0.782,0.936,0.924,0.678,0.843,0.668,0.987,1.016,0.939,2.175 +NM_014885,0.79,1.159,1.21,0.797,0.906,1.0,0.836,0.93,0.993,0.951,0.939,0.99,0.886,1.062,0.944,1.363,0.914,0.905,1.205,0.81,0.809,0.84,1.277,1.073,0.746,0.844,1.4,0.853,0.74,0.986,0.907,1.314,2.13,1.188,0.529,1.066,1.015,0.831,1.225,0.74,1.192,1.053,0.756,1.421,0.907,0.927,1.035,0.797,0.879,0.837,1.003,1.074,1.066,1.715 +NM_014886,0.714,1.164,1.451,0.882,0.758,1.215,0.578,0.683,1.062,0.881,1.388,1.049,1.03,0.79,0.969,2.07,0.889,0.744,1.239,1.08,0.545,0.749,1.326,0.977,0.657,0.793,1.663,0.879,0.372,1.236,0.917,0.93,1.5,1.619,0.208,0.824,1.2,1.0,1.543,0.312,1.029,1.875,0.653,1.173,0.905,1.211,0.757,0.854,0.925,0.824,1.071,0.668,0.936,1.274 +NM_014887,0.797,1.115,0.818,0.993,0.717,1.345,0.957,0.777,0.966,0.766,1.295,1.059,0.918,0.765,1.113,1.317,0.845,0.976,0.775,1.033,0.926,0.896,1.338,0.958,0.991,0.769,1.13,1.016,0.592,1.208,0.871,1.508,1.276,1.399,0.754,1.513,0.965,0.969,1.523,1.692,0.842,1.147,1.034,0.996,0.905,1.006,0.86,0.789,0.893,0.628,1.012,1.19,0.909,1.587 +NM_014888,0.737,1.051,1.314,0.925,0.953,0.824,0.852,0.672,0.995,1.073,0.707,0.689,0.805,0.801,1.191,1.971,0.85,0.98,1.206,1.181,0.871,0.733,1.371,1.277,0.819,0.953,1.138,1.027,0.658,0.983,0.986,1.345,1.433,0.88,0.567,0.95,1.5,0.781,1.08,0.851,1.242,1.0,0.993,1.253,0.93,1.097,1.281,0.63,1.322,0.812,0.933,1.098,1.124,1.582 +NM_014890,0.858,1.24,0.762,0.907,0.829,2.668,1.332,0.889,0.709,0.862,0.992,0.86,0.839,0.971,1.176,2.433,0.817,0.851,0.907,1.331,0.796,0.835,1.527,0.846,0.924,0.773,0.931,0.795,1.051,1.717,0.852,6.026,2.818,1.509,0.835,0.729,1.376,1.035,1.815,1.362,1.008,1.485,1.147,0.794,0.787,1.326,0.935,0.821,1.37,0.826,1.982,1.054,0.896,1.124 +NM_014891,0.901,0.809,1.046,0.828,0.833,1.109,0.471,0.597,0.998,1.105,0.701,1.366,0.913,0.538,0.756,1.074,1.041,0.982,1.128,0.65,0.692,1.312,1.384,1.354,0.726,1.294,1.349,0.776,0.584,1.159,0.762,1.219,2.227,1.099,0.365,0.654,0.772,1.162,1.812,1.393,0.968,1.01,0.584,2.021,1.173,0.664,0.934,1.273,0.807,1.063,0.809,1.657,0.953,1.028 +NM_014892,0.999,0.976,1.0,1.18,1.035,0.956,0.772,0.775,1.505,0.944,0.909,0.963,0.859,0.979,1.127,0.883,0.896,0.906,1.072,0.94,1.045,0.831,1.194,0.86,0.977,0.873,1.025,0.85,1.793,1.239,1.156,1.086,1.33,0.989,0.838,0.861,0.934,1.009,1.068,1.109,1.0,1.05,0.733,0.987,0.79,0.991,1.026,0.813,1.216,1.127,1.16,0.995,0.991,1.311 +NM_014893,1.056,1.126,0.945,0.882,0.937,0.869,1.08,0.953,1.05,1.061,0.874,0.941,0.924,0.918,1.197,0.982,1.026,1.079,1.109,1.059,0.989,0.888,0.956,1.04,0.929,0.978,1.089,0.847,1.208,0.975,1.082,1.473,0.995,1.131,0.985,0.818,0.97,0.984,1.161,1.009,0.94,1.042,1.162,1.049,1.104,1.135,0.983,1.105,0.916,1.235,1.036,0.939,1.007,1.079 +NM_014894,0.923,0.921,0.969,0.895,1.065,0.8,1.019,0.954,0.99,0.814,0.961,0.84,0.803,0.88,0.954,0.95,0.854,1.032,1.217,1.049,1.052,1.003,1.122,1.038,0.904,1.02,1.043,1.002,1.07,0.824,0.927,1.019,0.895,1.09,1.026,0.796,0.953,0.809,0.989,1.123,0.964,0.944,1.172,1.141,0.91,1.14,1.113,1.133,1.076,0.975,0.934,1.104,0.779,1.057 +NM_014899,0.754,1.077,0.685,0.803,0.61,1.094,0.669,0.693,0.681,0.726,2.479,0.802,0.806,0.627,1.224,2.676,0.604,0.748,0.626,1.632,0.76,0.719,2.657,0.761,1.093,0.579,0.671,0.728,0.614,1.269,0.66,2.574,1.03,1.142,0.56,0.789,1.526,0.704,1.447,2.023,0.845,1.617,1.228,3.014,0.708,1.974,1.003,0.656,1.935,0.595,1.168,1.513,0.734,1.273 +NM_014900,1.27,0.681,1.885,0.754,1.76,0.896,0.713,1.021,1.821,1.548,0.587,1.455,0.741,1.11,1.168,0.877,1.086,1.503,1.694,0.926,0.601,1.482,0.91,1.564,1.091,1.486,1.313,1.564,0.594,1.033,1.553,0.591,0.767,1.026,2.455,0.481,0.998,1.47,0.724,0.415,1.48,0.898,0.471,0.526,1.593,0.689,0.911,1.919,0.513,0.993,0.921,0.729,1.185,0.725 +NM_014901,0.929,1.148,1.046,0.831,0.857,1.147,0.6,0.626,1.094,0.85,1.012,0.716,0.801,0.949,0.781,0.976,1.181,0.818,0.889,1.018,0.71,0.81,0.934,0.781,0.784,0.964,1.24,0.887,0.688,1.301,0.966,1.702,2.522,1.318,0.672,0.794,0.831,0.985,1.262,1.091,0.989,1.02,0.943,1.162,0.871,0.981,0.912,0.763,0.923,0.88,0.926,0.854,0.829,2.857 +NM_014902,1.121,1.0,0.934,0.815,0.964,0.814,0.995,1.053,1.054,1.116,1.055,1.047,1.023,1.073,1.2,1.039,1.022,0.917,0.965,1.136,1.068,1.145,1.0,1.084,1.047,0.944,0.843,1.058,0.839,0.936,0.905,1.028,0.981,1.001,1.166,0.931,0.91,0.918,0.91,0.991,1.155,1.107,0.978,0.937,0.948,0.879,0.981,0.919,0.988,0.97,0.956,1.051,0.921,1.045 +NM_014903,0.977,0.93,0.893,0.853,1.124,1.031,0.937,1.0,1.013,0.878,0.831,1.033,0.925,0.955,1.034,0.993,1.0,1.114,0.933,1.151,0.944,1.012,1.039,0.917,0.918,1.236,0.934,0.881,0.641,1.114,1.106,0.892,1.078,1.014,0.984,0.967,1.143,0.993,1.014,1.062,0.99,1.016,1.102,0.898,1.054,1.02,0.994,0.991,1.009,1.029,0.985,0.969,0.901,1.091 +NM_014904,0.867,1.041,1.0,0.875,0.928,0.992,1.006,0.941,1.02,0.898,1.062,0.986,0.795,0.933,0.87,1.004,0.954,0.831,1.203,0.843,1.008,0.741,0.935,1.017,1.467,0.943,1.144,1.0,0.44,0.964,1.027,1.546,1.316,1.586,0.798,1.031,0.954,0.891,1.015,0.984,0.956,1.076,0.726,0.887,0.948,0.929,0.775,0.809,0.792,0.882,0.98,0.792,0.95,1.208 +NM_014905,0.716,0.88,0.936,0.677,0.855,1.068,0.744,0.634,1.183,0.904,0.962,0.837,0.773,0.702,1.408,2.384,0.789,0.83,0.964,1.706,0.712,0.803,1.931,0.965,0.592,0.718,0.885,0.746,0.628,1.371,0.883,2.679,1.617,1.147,0.645,1.899,2.402,0.971,1.052,2.656,1.0,1.22,1.069,1.081,0.911,0.785,4.664,0.659,1.0,0.885,1.208,0.826,0.739,1.686 +NM_014906,1.182,0.853,0.972,1.072,0.985,1.014,1.044,1.234,1.09,0.849,1.119,0.961,1.063,0.915,0.875,0.962,1.032,1.077,1.035,0.883,1.142,0.948,0.977,0.901,0.94,1.204,0.878,1.018,1.209,1.015,0.975,0.901,1.142,0.913,1.014,0.98,1.081,0.893,0.924,1.037,0.99,1.087,1.103,1.126,1.135,1.001,0.989,0.932,1.085,0.97,0.943,0.835,1.125,0.954 +NM_014907,1.067,0.953,1.099,1.436,0.98,0.915,1.187,0.972,1.025,1.187,1.114,1.1,1.081,0.956,0.961,0.931,0.981,1.057,1.124,0.946,1.081,1.063,1.079,1.033,0.972,1.008,0.937,0.875,1.003,1.0,1.011,0.916,1.05,1.001,1.045,1.06,0.988,0.918,0.917,1.018,0.879,1.033,0.955,0.831,0.911,0.878,1.009,1.1,0.898,0.901,1.017,1.028,1.146,1.142 +NM_014908,0.632,1.422,1.109,0.59,1.129,0.861,0.757,0.423,0.998,1.203,0.764,0.724,0.485,0.453,0.836,1.285,0.805,1.061,1.012,0.988,0.446,0.85,1.525,1.049,0.569,0.631,1.115,0.814,0.617,1.228,0.889,2.612,1.854,1.068,0.26,1.45,0.981,1.014,1.366,1.067,1.251,1.024,0.554,1.36,1.311,0.93,1.046,0.701,0.89,0.754,1.073,1.245,0.774,1.579 +NM_014909,0.926,0.917,1.362,0.867,0.93,0.989,0.854,0.879,1.031,1.089,0.903,0.858,0.986,0.893,1.132,0.937,1.031,0.889,0.944,0.987,0.78,0.87,1.12,0.895,0.905,0.963,1.271,1.049,0.889,1.168,0.994,2.786,1.276,1.106,0.764,1.062,0.905,0.939,1.177,1.325,0.957,1.153,0.957,1.007,1.116,0.881,0.868,0.795,0.956,1.0,0.984,1.291,1.172,1.278 +NM_014910,1.046,1.153,0.935,1.127,1.069,1.243,1.149,0.965,1.121,1.113,1.228,0.887,1.043,1.056,1.112,1.156,1.126,0.923,1.042,1.092,0.944,0.85,0.9,1.07,0.875,0.956,1.01,0.983,1.732,0.91,0.892,1.074,1.089,1.14,0.97,1.018,0.904,1.004,1.016,0.906,0.921,1.046,0.935,0.879,0.989,1.066,0.996,1.182,1.126,0.952,1.047,0.911,0.972,0.886 +NM_014911,3.592,0.442,6.667,1.17,5.389,0.439,0.387,4.17,3.051,5.756,0.487,4.09,4.241,0.852,1.626,2.132,8.877,2.36,6.473,0.43,2.602,1.865,0.418,3.093,0.366,0.865,4.482,2.976,0.442,0.351,3.294,0.379,2.194,0.434,11.58,0.515,0.412,4.004,0.464,0.458,4.864,0.446,0.419,0.351,8.789,0.389,5.305,2.611,0.74,10.44,1.031,1.718,7.597,0.65 +NM_014912,0.983,0.841,1.876,0.75,1.302,1.043,1.002,1.318,1.456,0.855,0.781,0.957,0.964,1.273,1.242,1.158,1.128,1.182,1.812,1.003,0.701,1.451,0.817,1.36,0.727,1.008,1.03,1.562,0.534,0.905,1.567,0.747,1.146,1.174,1.242,0.52,1.013,1.248,0.906,0.681,1.305,1.01,0.626,0.644,1.294,0.876,1.072,1.192,0.771,1.004,0.96,0.69,0.816,0.817 +NM_014913,0.912,0.887,1.35,0.959,0.921,1.018,0.877,0.803,1.148,0.884,1.153,0.799,0.798,1.159,0.981,1.375,0.813,0.861,1.189,0.83,0.875,0.85,1.29,0.907,0.719,0.876,1.076,0.922,0.861,1.001,1.069,1.064,1.516,1.093,0.831,0.858,1.015,0.856,1.005,0.919,0.951,1.072,0.902,1.238,1.023,1.093,0.883,0.828,1.161,0.973,0.934,0.999,1.089,1.26 +NM_014914,0.781,0.915,0.995,0.759,0.775,1.301,0.823,0.744,1.024,0.939,1.27,0.884,0.758,0.796,0.906,1.312,0.826,0.927,1.054,0.979,0.684,0.838,1.519,0.938,0.725,0.885,1.173,0.826,0.892,1.023,0.837,1.453,2.321,1.404,0.703,0.951,1.1,0.955,1.349,0.837,0.924,1.429,0.868,1.515,0.822,1.175,1.065,0.903,1.086,0.915,1.141,0.785,0.866,3.985 +NM_014915,1.09,1.048,1.036,0.952,0.925,0.897,0.822,0.763,1.063,0.813,0.895,1.008,0.929,1.06,0.956,1.054,0.93,1.049,0.954,1.085,0.982,0.995,0.899,0.957,1.129,1.015,1.071,1.147,0.642,1.039,1.002,1.074,0.979,0.966,0.924,1.045,0.931,1.08,1.062,0.846,1.016,1.042,1.042,1.003,0.925,0.985,0.937,0.918,1.074,0.966,0.965,0.96,1.001,1.066 +NM_014916,0.946,0.897,1.053,0.935,1.136,0.71,0.886,1.097,1.524,1.189,0.832,0.888,0.872,1.259,0.915,0.748,1.631,0.928,1.163,0.888,0.927,0.861,0.982,1.086,0.816,1.397,1.308,1.29,0.748,0.948,1.739,0.989,1.46,0.823,1.975,0.865,0.909,1.205,0.952,0.862,1.501,1.043,1.346,1.009,1.246,0.928,1.364,1.237,1.088,1.065,0.844,1.147,1.453,1.182 +NM_014917,1.154,1.11,0.933,0.947,1.221,0.897,0.855,0.974,0.881,0.929,0.859,0.983,1.02,1.12,1.064,1.15,0.987,1.302,1.238,1.097,0.959,1.045,0.99,1.081,0.924,1.286,0.969,1.165,0.848,1.053,1.062,0.993,1.221,0.916,1.168,1.261,0.937,1.103,0.98,0.985,0.881,0.84,0.931,1.049,0.898,0.937,1.052,1.136,1.008,1.001,0.875,0.906,0.916,0.924 +NM_014918,0.612,1.262,1.233,0.673,0.887,0.967,0.87,0.547,0.874,0.904,0.872,0.955,0.779,0.638,0.831,1.48,1.0,0.733,0.806,0.905,0.488,0.868,1.724,1.104,0.634,0.681,1.354,0.863,0.564,1.718,0.785,3.083,1.903,1.318,0.3,0.754,0.971,1.02,1.786,2.894,1.013,1.262,0.793,0.959,0.961,0.994,0.958,0.83,0.812,1.571,1.0,1.869,0.841,2.209 +NM_014919,0.968,0.998,1.019,0.985,1.115,1.091,1.012,1.027,1.038,0.969,1.005,1.028,0.942,0.916,1.064,1.041,0.963,1.032,0.95,1.174,1.046,1.102,1.003,0.973,0.997,1.037,0.85,1.066,1.251,1.043,1.064,1.057,1.116,0.927,1.178,1.039,1.012,0.943,0.935,1.02,1.09,1.024,0.905,0.828,0.903,1.049,0.918,0.967,1.06,0.995,0.945,0.952,1.068,0.978 +NM_014920,0.905,1.124,1.262,0.96,0.845,1.172,1.444,0.855,0.943,0.759,1.141,0.834,0.776,0.79,0.839,1.056,0.927,1.349,0.921,1.32,0.871,0.788,1.206,0.896,1.023,0.828,1.001,0.803,0.886,1.496,0.86,1.138,1.03,1.597,0.61,0.978,1.3,0.837,1.464,0.958,1.043,1.201,0.892,1.053,0.952,1.082,0.873,0.822,1.05,0.784,1.138,0.777,0.967,0.994 +NM_014921,0.959,1.009,0.922,0.821,1.087,1.005,0.972,0.86,0.903,0.954,1.021,0.944,0.967,0.982,0.855,0.979,1.054,0.835,0.921,0.984,1.031,1.027,1.003,0.968,1.1,0.967,1.025,0.898,1.026,1.001,0.927,1.368,1.399,1.177,1.044,1.029,0.838,1.035,1.501,1.261,0.862,1.101,0.953,0.806,0.938,1.083,0.924,1.045,0.941,0.995,0.904,0.898,1.126,1.405 +NM_014922,0.878,0.958,1.01,1.038,1.021,0.939,0.881,1.018,1.068,1.227,0.996,1.103,1.2,1.004,0.855,0.965,1.16,1.003,0.952,0.908,1.095,1.14,1.057,1.015,1.015,1.073,0.922,0.906,0.985,0.974,1.317,0.835,1.082,0.887,1.042,0.998,0.848,1.044,1.011,1.169,0.991,0.924,0.91,1.047,0.914,1.005,0.932,0.943,0.965,0.873,1.114,1.104,0.952,1.201 +NM_014923,0.657,1.171,1.167,0.81,0.95,1.825,1.374,0.635,0.881,0.675,1.336,0.786,0.796,0.649,1.209,2.192,0.752,0.95,0.658,1.556,0.616,0.866,1.512,0.916,0.91,0.636,1.063,0.753,0.697,1.847,0.91,1.722,1.497,1.689,0.59,0.669,1.339,0.723,2.249,0.95,0.757,1.806,0.781,0.856,0.885,1.149,1.066,0.68,1.346,0.803,1.638,1.014,0.687,2.183 +NM_014925,0.794,1.211,1.38,0.809,0.774,1.267,0.599,0.53,0.854,0.828,1.025,0.765,0.686,0.807,0.789,0.968,0.956,0.645,0.862,1.141,0.578,0.834,1.095,1.005,0.793,0.757,1.337,0.891,0.512,1.306,0.749,1.804,1.436,1.542,0.499,0.819,0.842,0.882,1.495,0.91,1.022,1.141,1.071,1.666,0.861,1.003,0.894,0.708,0.799,0.751,0.944,0.84,0.854,1.338 +NM_014926,1.049,0.982,1.014,0.939,1.117,0.971,0.845,0.996,1.21,0.937,0.955,1.112,1.019,0.979,0.732,0.874,1.036,1.127,0.918,0.98,1.104,0.988,1.051,1.087,0.933,0.857,0.886,0.989,1.073,0.921,1.038,1.15,0.892,1.045,1.081,0.963,1.004,1.114,1.011,1.165,1.275,1.209,0.796,0.946,1.047,1.124,0.859,0.943,0.994,0.964,0.996,0.948,1.049,0.968 +NM_014927,0.999,0.982,0.945,1.047,1.022,0.867,1.161,1.108,1.079,1.045,1.006,1.073,1.079,0.859,0.759,0.973,1.055,1.111,1.037,0.806,1.137,0.952,1.075,0.945,1.026,1.0,0.81,1.198,1.036,0.986,0.968,0.904,1.126,1.049,0.943,0.93,1.181,0.94,1.016,1.021,1.065,1.0,0.885,1.059,0.933,0.994,1.054,1.047,0.995,1.157,1.099,1.084,1.162,0.975 +NM_014929,0.609,1.052,1.702,0.662,1.175,1.229,0.864,0.79,1.265,1.143,0.84,1.079,0.862,0.5,0.992,1.836,1.236,0.844,0.617,0.99,0.418,1.188,1.373,1.676,0.524,0.519,1.561,0.84,0.49,0.975,1.2,1.371,2.735,1.014,0.399,0.538,1.0,1.34,1.251,0.996,1.179,1.057,0.883,0.672,1.314,0.966,1.152,0.86,1.375,0.703,1.177,0.826,0.545,2.867 +NM_014931,0.721,0.899,1.013,0.995,0.862,1.326,0.962,0.692,0.883,0.884,0.949,0.855,0.702,0.681,1.008,1.338,0.933,0.902,0.774,1.002,0.667,0.798,1.292,0.901,0.926,0.976,0.943,0.891,0.91,1.292,0.835,1.062,1.635,1.357,0.769,1.339,1.149,0.826,2.432,1.028,0.952,0.981,1.074,1.206,1.163,0.965,0.843,0.983,1.013,0.841,1.217,0.932,1.068,1.202 +NM_014932,0.89,0.957,0.965,0.994,1.039,1.068,0.919,1.099,0.863,1.013,1.125,0.786,0.85,1.049,1.11,0.922,0.947,1.19,0.903,1.006,1.004,1.145,1.045,0.94,0.999,0.961,1.169,1.122,0.901,1.084,1.098,1.086,0.834,1.303,0.955,0.967,0.885,0.99,1.104,0.975,1.037,1.042,1.108,1.001,0.906,1.029,0.936,0.982,1.007,0.963,1.028,0.779,0.94,0.972 +NM_014933,0.931,1.018,1.076,1.14,1.001,0.965,1.121,0.907,1.002,0.943,1.131,1.06,0.921,1.003,0.684,0.826,0.888,1.032,0.867,1.057,0.935,0.948,1.049,1.101,1.105,1.007,0.896,0.945,0.82,1.207,0.987,1.201,0.864,1.121,0.951,1.031,1.052,0.97,1.188,1.091,0.865,1.247,0.847,0.886,0.924,1.088,1.053,0.884,0.886,0.801,1.052,1.13,0.891,0.971 +NM_014935,0.633,1.763,0.545,0.849,0.488,1.469,1.164,0.56,0.817,0.576,0.858,0.555,0.589,0.561,0.812,1.398,0.522,1.462,0.568,2.261,0.577,0.605,1.786,0.531,0.991,0.555,0.651,0.682,0.929,1.757,0.694,1.98,1.185,1.749,0.635,1.501,1.153,0.466,1.442,1.358,0.592,1.496,0.571,1.268,0.613,0.988,0.731,0.556,0.999,0.536,1.383,0.775,0.462,0.915 +NM_014936,0.448,1.232,0.504,0.889,0.473,1.259,0.884,0.511,0.434,0.423,1.479,0.399,0.45,0.468,0.728,1.901,0.5,0.991,0.42,1.735,0.433,0.429,1.11,0.413,1.18,0.432,0.464,0.472,0.772,1.524,0.413,2.088,1.418,1.568,0.517,0.938,1.793,0.394,1.563,1.208,0.438,1.447,0.864,1.126,0.41,0.814,0.874,0.533,1.875,0.403,1.528,0.733,0.387,2.19 +NM_014937,1.016,0.987,1.09,0.959,1.046,0.986,0.922,1.136,1.111,1.051,0.833,1.055,0.972,0.856,0.954,1.012,0.981,1.03,1.042,1.116,1.017,1.01,1.017,0.984,1.032,1.023,0.947,0.977,1.098,0.98,0.932,0.955,1.07,1.002,1.157,0.943,1.067,1.063,0.94,0.885,0.999,0.992,1.035,0.961,1.089,1.069,0.924,1.008,0.99,0.978,1.104,1.054,1.0,0.976 +NM_014938,0.497,0.85,0.772,0.79,0.493,1.86,0.52,0.4,0.592,0.542,1.367,0.393,0.457,0.56,0.771,1.332,1.038,0.879,0.881,0.988,0.55,0.663,1.34,0.57,0.994,0.604,1.049,0.48,1.135,1.241,0.59,2.15,1.287,1.845,0.452,0.834,1.205,0.817,1.5,1.036,0.573,1.604,0.921,0.88,0.559,1.148,1.161,0.656,1.006,1.109,1.309,0.606,0.573,2.4 +NM_014939,0.696,0.659,1.25,0.6,1.104,1.116,0.69,0.914,1.638,0.913,1.125,0.959,0.744,0.911,1.322,2.121,0.925,1.076,1.307,0.949,0.566,0.927,1.181,1.143,0.48,0.59,1.204,1.172,0.561,1.296,1.347,0.844,1.048,1.289,0.927,0.622,1.295,0.887,0.813,0.592,1.057,1.002,0.743,0.998,1.025,1.107,1.013,0.77,1.019,0.68,1.223,0.786,0.826,4.066 +NM_014940,0.603,1.166,0.94,0.823,0.723,1.192,0.74,0.365,0.934,0.96,1.181,0.683,0.475,0.52,0.715,0.937,0.796,0.992,0.763,1.22,0.44,0.588,1.389,0.797,0.971,0.626,0.758,0.625,0.752,1.152,0.593,1.478,1.365,1.123,0.442,0.946,1.175,0.669,1.595,0.957,0.883,0.964,1.226,1.481,0.745,1.633,1.152,0.645,1.299,0.725,1.384,0.942,0.837,1.258 +NM_014941,0.662,1.224,1.198,0.654,0.81,0.82,0.795,0.512,1.066,1.082,0.698,0.966,0.494,0.641,0.757,0.835,0.998,0.981,0.852,1.087,0.533,0.778,1.593,0.994,0.689,0.772,1.456,0.738,0.575,1.133,0.921,1.997,1.769,1.048,0.383,1.115,0.981,0.844,1.559,1.776,1.008,1.18,0.656,1.244,1.018,0.976,0.932,0.679,0.805,0.779,1.098,1.189,1.104,1.78 +NM_014943,0.846,0.961,1.21,0.986,0.909,0.894,0.756,0.767,1.165,0.813,0.889,0.89,0.9,0.842,0.94,0.805,1.196,1.056,0.998,0.981,1.024,1.012,1.138,0.876,0.92,1.016,1.191,0.852,0.704,0.83,1.189,1.467,1.501,1.2,0.746,1.044,0.953,0.99,1.164,1.188,1.056,1.248,0.949,2.263,1.015,0.888,1.108,0.868,0.884,0.863,0.98,1.126,0.926,0.963 +NM_014944,0.554,1.289,1.024,0.499,0.838,1.039,0.547,0.266,0.797,1.054,1.351,0.461,0.309,0.583,1.038,1.556,0.561,1.017,0.581,1.602,0.574,0.624,1.898,0.723,0.399,0.729,0.849,0.543,0.385,1.677,0.823,1.57,0.726,1.17,0.182,1.201,1.098,1.213,1.702,1.059,0.684,1.872,0.763,1.354,0.757,1.53,1.033,0.611,1.279,0.523,1.612,0.983,0.957,1.463 +NM_014945,1.522,0.708,1.217,0.837,1.808,0.859,0.737,2.793,2.818,1.12,0.735,1.561,1.681,1.435,1.463,1.171,1.398,1.218,1.97,1.007,1.267,2.504,0.789,1.442,0.783,1.727,1.214,1.673,0.884,0.882,2.815,1.082,1.191,0.957,3.472,1.033,0.622,2.088,1.006,0.875,1.139,0.891,0.876,1.032,0.878,0.656,1.12,2.41,0.75,1.48,0.799,0.904,1.243,1.173 +NM_014946,0.956,1.077,1.027,1.031,0.926,1.072,1.148,1.007,1.101,1.112,0.997,0.874,1.137,1.003,0.852,1.117,0.953,0.861,0.983,1.004,0.791,0.989,0.978,0.968,1.045,0.997,1.09,1.029,0.884,1.112,0.983,1.069,1.271,0.955,1.049,0.958,0.95,1.034,0.876,1.025,1.025,0.994,1.014,0.871,1.054,0.966,0.974,0.923,1.126,0.917,0.928,0.987,0.917,1.073 +NM_014947,0.66,0.996,1.314,0.772,0.713,0.993,0.754,0.583,1.109,0.823,0.976,0.548,0.633,0.847,1.086,1.283,0.865,0.724,1.132,0.929,0.603,0.629,1.119,0.806,0.795,0.72,1.127,0.831,0.48,1.103,1.002,1.752,2.569,1.559,0.694,0.835,1.025,0.724,1.341,0.909,0.779,1.407,1.144,1.647,0.827,1.062,0.87,0.7,0.974,0.883,1.125,0.977,1.01,1.937 +NM_014948,0.959,1.083,1.073,0.85,0.867,1.075,0.843,0.732,0.961,0.913,0.904,0.986,0.897,0.967,0.801,0.97,0.991,1.016,0.94,1.068,0.946,1.134,1.134,0.93,0.971,1.139,1.039,0.845,0.706,1.102,1.068,1.002,1.11,1.17,0.824,0.934,1.082,0.95,1.09,1.008,0.902,1.171,0.931,1.1,0.888,0.999,0.962,0.978,0.847,0.828,1.013,0.788,1.054,1.078 +NM_014949,0.781,0.985,0.968,1.017,0.755,0.887,0.776,0.593,1.119,0.717,1.002,0.749,0.667,0.855,1.162,1.077,0.757,0.69,1.039,1.213,0.733,0.695,1.079,1.027,0.754,0.705,1.029,0.834,0.455,1.055,1.01,1.835,2.277,1.226,0.836,0.998,0.911,0.905,1.009,1.153,0.816,1.066,0.676,1.15,0.744,0.925,0.827,0.709,0.861,0.778,1.127,0.836,0.666,2.324 +NM_014952,0.992,0.978,1.057,0.861,1.045,0.798,0.774,0.583,1.137,1.002,1.049,0.648,0.631,0.938,0.895,1.178,0.698,0.959,0.939,0.954,0.778,0.89,1.386,0.74,0.822,1.236,0.938,0.981,0.561,1.128,1.291,1.088,1.196,1.18,0.871,0.746,1.022,1.051,1.928,0.851,0.914,1.234,0.824,1.129,0.998,0.942,0.92,1.134,0.848,0.834,1.139,0.7,0.857,1.806 +NM_014953,0.962,0.825,0.963,0.88,1.004,0.919,1.128,1.036,1.083,0.998,1.117,1.029,1.076,1.022,1.017,0.973,0.965,1.034,1.197,1.067,1.041,1.161,0.898,0.929,0.99,0.844,1.039,1.1,1.328,0.989,0.945,0.968,1.067,1.034,1.05,1.031,1.045,0.972,1.008,0.911,0.875,0.901,1.277,0.96,0.899,0.913,1.018,0.996,0.966,0.922,0.898,1.108,1.15,0.862 +NM_014954,1.189,0.925,0.972,1.363,1.045,0.891,1.04,1.083,0.997,0.854,0.985,1.119,0.98,0.875,0.732,1.067,1.122,1.212,0.897,0.884,1.085,0.934,1.003,0.965,0.985,0.822,1.105,1.053,1.084,0.937,1.013,1.011,1.141,1.154,1.004,1.055,0.899,0.991,1.252,0.91,1.183,0.922,0.843,0.828,1.082,1.16,0.901,0.914,1.006,0.933,1.027,1.018,1.049,1.207 +NM_014956,0.955,1.01,1.178,0.981,1.039,0.959,0.73,0.776,1.059,1.158,0.912,1.085,0.829,0.899,0.984,0.929,0.986,0.963,1.117,0.859,0.876,0.968,1.062,1.149,0.711,1.007,1.169,0.849,0.715,1.057,0.88,1.274,1.493,1.091,0.917,1.198,0.858,1.043,1.271,1.065,1.001,0.901,1.029,1.046,1.072,0.935,0.999,1.035,0.9,0.99,0.988,0.971,1.059,1.333 +NM_014961,1.198,0.954,1.765,0.971,0.879,0.856,0.772,1.118,1.339,1.135,1.075,1.212,1.031,1.104,0.989,0.89,0.864,1.085,1.288,0.857,1.085,1.163,0.998,0.967,1.061,1.128,1.287,1.395,0.911,1.007,1.276,1.29,1.047,1.01,0.854,0.83,1.002,1.175,0.936,1.347,1.314,0.851,0.916,0.845,1.17,0.814,1.075,1.008,0.86,1.031,0.927,1.305,0.968,0.981 +NM_014962,1.05,1.008,1.0,1.064,0.934,1.011,0.761,0.841,0.961,0.893,1.168,0.952,0.882,0.887,1.123,0.983,1.02,1.072,1.087,1.046,1.074,0.96,1.081,1.023,1.053,0.98,1.164,0.968,1.079,0.907,0.929,0.848,1.042,0.794,1.048,1.139,0.921,0.688,1.013,1.022,0.959,1.093,0.831,0.819,0.785,1.162,1.087,0.932,0.924,1.016,0.835,1.076,1.19,1.049 +NM_014963,0.852,0.942,1.565,1.136,0.645,0.866,0.746,0.891,0.973,0.869,0.72,0.85,1.071,0.801,0.889,1.223,1.491,0.792,1.369,0.87,1.323,0.894,0.968,1.025,0.837,0.991,1.75,0.671,0.743,0.838,0.973,1.469,2.319,1.031,1.278,0.849,0.761,0.691,1.601,1.852,1.138,0.826,0.933,1.56,1.236,0.743,0.9,1.204,0.898,2.422,0.885,0.914,1.38,1.663 +NM_014964,0.89,0.994,1.123,0.964,0.93,0.963,1.069,1.231,0.958,0.955,1.102,1.085,1.057,0.796,0.924,1.001,1.016,0.914,1.112,1.021,0.953,0.985,1.011,0.951,1.02,0.95,1.014,1.043,1.01,0.943,1.105,0.899,1.015,1.052,0.865,1.004,1.079,0.917,1.007,1.083,1.029,0.993,0.884,0.95,0.909,0.997,0.985,0.955,1.094,0.926,1.127,0.983,1.048,1.139 +NM_014967,0.735,1.456,1.207,0.868,0.769,1.071,0.72,0.594,1.04,0.957,0.887,0.967,0.662,0.676,0.918,1.072,1.106,0.923,0.929,1.305,0.653,0.815,1.76,0.976,0.82,0.709,1.128,0.863,0.474,1.358,0.899,1.401,1.479,1.276,0.366,0.891,0.965,0.897,1.0,0.65,1.01,1.41,0.702,0.853,0.955,1.0,0.609,0.641,0.939,0.641,1.167,0.861,0.707,1.443 +NM_014969,1.016,1.004,1.19,0.912,1.137,0.936,1.098,1.073,1.205,1.122,1.141,0.9,1.02,1.13,0.989,1.175,1.122,0.856,1.225,1.127,0.962,0.85,0.873,1.053,0.965,1.16,0.849,0.953,0.842,1.037,1.177,0.901,1.214,0.876,1.244,0.972,0.856,1.109,0.917,0.935,1.045,0.896,0.678,0.893,1.103,0.966,0.983,0.954,0.94,1.163,0.905,0.893,1.029,1.15 +NM_014970,0.805,0.966,1.322,0.875,1.048,0.889,0.881,0.634,1.082,1.011,0.993,0.963,0.79,0.79,0.972,1.59,0.824,0.809,1.16,0.993,0.874,0.873,0.936,1.015,0.785,0.753,1.141,0.817,0.511,0.974,0.997,1.942,2.021,1.169,0.663,1.541,0.942,1.003,1.054,1.043,1.016,0.869,0.552,1.009,1.191,0.811,1.467,0.809,1.089,0.954,0.968,1.056,1.09,1.208 +NM_014972,0.679,1.369,1.125,0.856,0.771,1.156,0.554,0.39,0.994,0.937,1.006,0.497,0.586,0.447,0.765,1.252,0.677,1.004,0.816,1.384,0.294,0.698,1.365,0.753,0.843,0.958,0.884,0.765,0.473,1.613,0.642,1.778,1.089,1.425,0.354,0.664,1.243,0.912,1.409,0.652,0.945,1.582,0.859,1.205,0.832,1.298,1.028,0.797,0.832,0.644,1.064,0.769,0.767,0.72 +NM_014974,0.903,1.006,1.146,0.741,1.088,1.044,0.73,0.899,0.944,0.884,0.968,0.97,0.995,0.781,0.905,1.07,0.916,0.942,1.052,1.037,0.76,0.996,1.011,0.978,0.765,1.051,1.036,1.11,0.729,1.058,1.044,2.13,1.012,1.097,1.053,0.683,0.836,1.218,1.075,1.001,1.179,1.34,0.611,0.969,1.073,0.836,0.872,1.071,0.764,0.972,1.069,0.932,0.992,0.883 +NM_014975,1.022,0.924,1.102,0.936,0.907,0.925,0.894,0.981,0.981,0.987,1.026,1.014,1.111,0.93,0.835,0.947,1.0,0.948,1.175,0.91,1.092,0.978,1.022,1.054,1.031,1.024,1.126,0.866,0.618,1.111,0.995,0.949,1.018,1.088,0.954,0.985,1.058,1.045,0.978,0.987,0.95,1.009,0.894,1.063,1.052,0.918,1.027,0.843,1.043,1.016,0.815,1.007,0.872,0.976 +NM_014977,1.102,0.847,1.079,1.048,0.73,0.964,0.807,0.563,1.07,0.985,1.01,0.885,0.928,0.846,0.841,0.95,1.253,0.823,0.992,0.93,0.884,1.118,1.037,1.071,0.947,1.121,1.174,0.746,0.827,1.043,1.008,0.995,1.691,1.113,0.581,0.904,0.942,1.027,1.491,1.053,0.899,0.987,0.83,1.335,0.932,0.81,0.835,0.932,0.929,1.221,1.008,0.884,0.988,1.299 +NM_014978,1.076,0.97,1.104,0.961,1.078,1.057,1.051,0.918,0.926,0.923,1.029,1.045,0.896,1.279,1.066,1.286,0.998,0.968,1.028,1.146,1.095,1.049,1.139,1.041,0.938,1.033,1.0,1.24,0.894,1.024,1.097,1.259,0.777,0.813,1.174,0.832,1.334,0.935,0.984,0.878,0.999,0.989,0.939,0.883,1.03,1.009,0.951,1.009,1.037,0.882,0.821,1.087,1.031,0.933 +NM_014982,0.794,1.133,1.544,0.854,1.066,0.847,0.713,0.649,0.997,1.024,0.858,0.779,0.709,0.709,0.803,0.944,0.935,0.827,1.005,1.05,0.67,0.79,1.07,0.946,0.705,0.898,1.306,0.754,0.513,1.042,0.861,1.572,1.352,1.07,0.816,0.935,0.87,0.836,1.08,1.713,1.104,1.008,0.801,1.456,1.047,0.88,1.109,0.766,0.647,1.001,0.956,1.035,1.151,1.467 +NM_014991,1.029,0.992,0.999,0.877,0.97,0.965,1.142,0.96,0.954,1.195,1.028,1.067,1.07,1.012,1.189,1.102,0.889,1.048,1.016,1.123,1.112,0.928,1.009,0.961,0.981,0.944,1.06,1.094,0.768,0.877,0.906,1.065,0.948,0.987,1.161,0.957,1.061,1.132,0.971,1.061,1.039,0.95,0.833,1.017,0.973,0.99,1.069,1.008,0.977,0.952,1.158,0.977,0.938,1.006 +NM_014992,1.174,0.828,2.143,0.637,1.878,0.799,0.472,0.979,2.735,1.784,0.773,1.763,0.95,1.304,0.88,1.048,1.298,0.942,2.053,0.787,1.071,1.856,0.728,2.236,0.551,1.331,2.251,1.6,0.615,0.981,1.528,0.647,1.249,0.878,0.688,0.738,0.808,1.686,0.906,0.657,2.273,0.73,0.555,1.124,1.584,1.001,1.551,1.296,0.762,1.464,0.804,0.835,1.306,1.063 +NM_014997,0.971,0.968,1.091,0.792,0.993,0.999,0.783,0.984,1.024,0.916,0.951,0.959,0.896,0.919,1.001,1.017,0.923,0.91,1.028,1.027,1.043,0.852,1.072,1.012,1.047,0.981,1.075,1.008,0.648,1.072,0.983,1.099,1.06,0.886,1.049,0.979,0.881,0.982,1.134,1.018,0.937,1.055,0.7,0.938,1.1,1.008,1.099,0.951,0.928,0.973,0.992,0.891,1.004,1.102 +NM_014999,0.672,0.838,1.361,0.479,1.122,1.104,0.556,0.774,1.325,1.034,0.894,0.925,0.677,0.852,1.128,1.324,1.084,0.807,1.436,0.791,0.738,1.267,1.012,1.643,0.452,0.741,1.69,1.26,0.49,1.138,1.53,1.034,1.345,1.094,0.549,0.81,1.138,1.333,0.909,0.738,1.563,0.949,0.54,0.558,0.999,0.915,0.898,0.696,1.05,0.762,0.965,0.697,0.792,1.226 +NM_015000,0.914,1.14,0.988,0.777,0.917,1.435,1.013,0.956,0.897,1.014,1.218,0.852,0.91,0.945,0.922,1.558,0.929,1.018,0.985,1.249,0.965,0.813,1.111,0.961,0.988,0.911,0.982,0.933,0.63,1.282,1.052,1.149,1.645,1.233,0.781,0.838,1.359,0.922,1.114,1.008,0.925,1.327,0.764,0.997,0.833,1.153,0.855,0.833,0.931,0.9,1.269,0.984,0.748,1.142 +NM_015001,0.831,0.996,1.533,0.63,0.992,0.738,0.589,0.463,1.289,0.99,0.564,0.823,0.563,0.765,0.894,0.838,1.022,0.75,0.91,1.123,0.613,1.148,1.119,0.847,0.664,0.968,1.609,1.014,0.513,1.038,1.187,1.431,1.49,1.039,0.638,1.056,0.793,0.934,1.228,1.813,1.078,1.281,0.784,1.341,1.13,0.769,0.933,0.888,0.891,1.078,0.952,0.847,0.955,1.438 +NM_015002,0.597,0.97,1.212,0.603,0.747,1.27,0.665,0.466,0.914,0.845,1.32,0.776,0.548,0.643,0.949,1.395,0.713,0.909,0.979,1.408,0.588,0.672,1.542,0.894,0.767,0.667,1.479,0.66,0.477,1.391,0.773,2.091,1.575,1.757,0.22,1.164,1.277,0.875,1.1,0.877,0.847,1.502,0.897,0.958,0.859,1.234,0.926,0.61,0.887,0.704,1.437,0.838,0.836,1.68 +NM_015004,0.648,1.334,1.056,0.683,0.812,1.11,0.668,0.615,1.174,0.794,1.134,0.809,0.865,0.616,0.92,1.155,0.745,0.785,1.15,0.925,0.876,0.809,1.355,1.217,0.81,1.16,1.036,0.783,0.462,1.345,0.859,0.94,1.66,1.506,0.287,1.029,1.02,1.086,1.507,0.718,1.26,1.087,0.712,1.563,0.945,0.934,0.962,0.905,0.855,0.714,0.946,0.698,1.132,1.328 +NM_015008,1.118,1.049,1.052,0.741,1.123,0.959,0.877,0.983,1.085,0.903,0.908,0.877,0.994,0.919,0.825,0.956,1.024,0.979,1.085,1.116,0.885,1.036,1.175,1.068,0.925,1.06,1.033,0.996,0.891,1.076,1.108,1.228,1.095,1.127,0.792,0.715,1.013,0.998,1.183,1.237,0.922,0.982,1.068,0.978,0.998,0.872,0.804,0.981,0.863,0.936,0.951,0.871,1.026,1.027 +NM_015013,0.658,1.155,1.12,0.604,0.869,0.986,0.512,0.405,1.113,0.999,0.766,0.86,0.584,0.579,0.791,1.263,0.84,0.792,1.104,1.004,0.7,0.941,1.411,0.95,0.606,0.722,1.478,0.694,0.521,1.052,0.79,1.001,2.027,0.976,0.245,1.017,0.913,0.978,1.438,1.476,1.042,1.006,0.693,1.323,1.025,0.864,1.045,0.726,1.103,1.004,0.987,0.954,1.045,1.605 +NM_015014,1.125,1.058,0.926,0.923,1.003,1.112,1.201,1.084,1.074,1.169,1.134,1.073,1.099,0.947,0.969,1.051,1.105,0.965,0.984,0.991,1.184,1.195,0.988,0.968,0.937,0.957,0.951,0.947,1.179,0.897,1.003,1.021,1.004,1.007,1.039,1.01,0.978,1.197,0.964,0.927,1.023,0.973,1.084,0.896,1.291,0.851,0.945,0.912,1.027,1.055,1.156,1.242,0.926,1.116 +NM_015015,0.948,0.954,1.067,0.873,1.018,0.97,1.006,0.788,1.067,0.876,1.024,1.014,0.825,1.047,0.805,0.942,0.953,1.074,1.146,1.031,1.068,1.152,1.145,0.98,0.895,1.209,1.059,0.875,1.054,0.986,0.966,1.02,1.118,1.146,1.02,0.92,0.928,1.082,1.06,1.151,1.0,0.964,1.081,0.997,1.024,0.963,0.823,1.059,1.006,1.117,1.053,1.003,0.995,1.059 +NM_015018,0.8,1.023,1.127,0.922,0.974,1.106,0.823,0.892,0.955,1.04,0.893,0.767,0.694,0.773,0.959,1.063,0.941,0.999,0.896,1.166,0.897,0.917,1.197,1.039,1.058,0.815,1.13,0.777,1.44,0.948,0.952,0.967,1.085,1.01,0.777,0.898,1.014,0.923,0.888,0.842,0.916,1.076,0.951,0.861,1.001,1.078,0.99,0.849,1.075,0.917,1.058,0.805,0.969,1.264 +NM_015022,1.809,0.917,1.829,1.126,1.859,0.818,0.655,1.336,2.942,0.889,0.769,1.175,1.339,2.102,1.709,0.925,1.514,1.313,1.848,0.937,1.3,1.666,0.818,1.285,0.929,2.015,1.904,1.656,0.696,1.064,2.474,1.987,1.098,0.97,2.978,0.811,0.772,1.847,0.798,0.686,1.729,0.842,0.636,0.808,1.391,0.776,1.088,1.671,0.811,1.304,0.865,0.813,1.484,0.999 +NM_015027,0.887,1.166,0.877,0.927,0.78,0.966,1.159,0.812,1.064,0.844,1.003,0.97,0.815,1.08,1.17,1.202,0.841,1.026,0.923,1.047,0.962,0.991,0.974,0.862,0.977,0.996,0.991,0.967,0.858,1.252,0.998,1.063,1.011,1.12,0.738,1.027,1.115,0.945,0.849,0.757,0.856,1.012,0.883,0.952,0.915,1.019,0.843,0.975,1.039,0.956,1.043,1.005,0.967,0.904 +NM_015029,1.049,0.915,0.957,1.063,0.914,0.995,0.923,0.762,0.896,1.172,1.052,0.906,0.853,0.894,0.836,1.183,1.006,1.042,1.31,1.014,0.929,0.84,1.096,1.04,0.993,0.983,0.964,0.955,0.989,0.843,1.0,1.165,2.421,0.988,1.016,1.079,0.951,1.024,1.31,0.945,0.978,0.885,0.899,1.441,0.936,0.961,1.142,0.995,0.897,0.977,0.998,0.932,1.042,1.395 +NM_015032,0.91,1.001,0.985,0.89,0.783,1.268,1.001,0.878,0.861,0.892,1.074,0.998,0.788,0.884,0.82,1.786,0.942,1.062,0.874,1.144,0.74,0.877,1.313,0.874,1.131,0.793,1.436,0.958,0.901,1.287,0.869,1.447,1.473,1.485,0.759,0.879,1.192,0.939,1.439,1.319,0.906,1.442,0.916,0.87,0.905,0.96,0.952,0.816,1.076,0.845,1.128,1.17,0.894,1.236 +NM_015033,0.986,0.806,2.33,0.632,1.272,0.603,0.6,0.651,1.751,1.271,0.642,0.959,0.733,1.038,1.123,0.606,1.386,0.91,1.653,0.753,0.931,1.164,0.815,1.182,0.545,0.913,2.11,1.476,0.292,1.14,1.434,2.895,0.8,1.361,0.656,0.359,0.549,1.219,0.821,1.393,2.311,1.772,0.358,0.388,1.697,0.52,0.994,1.015,0.419,1.482,0.801,1.194,1.537,1.285 +NM_015035,1.015,0.939,1.2,0.937,0.97,0.875,0.948,0.82,1.001,0.93,0.986,0.855,0.93,0.883,0.979,1.224,0.894,0.934,1.178,0.987,0.822,0.873,1.235,1.075,0.881,1.008,0.917,0.941,0.691,0.999,1.0,1.591,1.231,1.082,0.812,0.761,0.978,1.168,1.07,1.032,0.918,1.226,0.771,0.757,1.035,1.091,0.941,1.176,0.879,1.044,1.091,0.885,1.08,0.988 +NM_015037,1.259,0.908,1.794,0.775,1.422,0.855,0.602,0.813,1.699,1.574,0.714,1.18,0.671,0.846,1.06,0.851,1.326,1.116,1.144,1.073,0.69,1.526,0.93,1.496,0.644,1.349,1.497,1.419,0.626,1.015,1.273,1.37,0.711,0.688,0.975,0.796,0.83,1.566,0.961,0.95,1.407,0.91,0.996,0.688,1.527,1.128,1.136,1.293,0.946,1.236,0.95,1.179,1.024,1.207 +NM_015039,0.906,0.903,1.054,1.119,1.047,1.14,0.93,1.024,0.975,0.996,0.916,1.037,1.102,0.959,0.745,1.154,0.981,0.976,0.992,0.856,0.928,1.083,1.039,1.025,1.003,0.928,0.916,0.995,0.865,0.993,1.129,0.971,0.995,1.012,1.037,1.041,1.021,0.947,1.034,0.874,0.975,0.967,1.054,1.039,0.919,0.918,0.946,1.063,0.892,1.07,1.079,1.049,1.013,1.038 +NM_015040,0.961,1.065,0.943,1.012,1.089,0.958,0.898,0.969,1.132,1.05,1.008,1.084,1.0,0.922,0.874,0.972,1.0,0.983,1.168,1.241,1.042,1.009,1.0,1.0,1.038,1.047,0.936,0.924,1.303,0.941,0.962,0.966,0.979,1.011,1.044,1.03,1.068,0.948,1.003,0.989,1.068,0.978,1.234,0.913,0.919,1.048,0.92,1.033,0.915,1.012,0.965,0.888,1.225,1.109 +NM_015044,0.922,0.922,0.926,1.062,0.961,0.984,1.029,0.855,1.033,1.02,0.953,1.03,0.989,0.992,1.164,0.943,0.888,0.969,1.076,1.037,0.947,1.044,1.015,1.012,1.098,0.982,0.954,1.111,0.762,1.007,1.022,1.202,1.218,1.096,1.258,1.052,0.967,0.927,0.936,1.05,1.078,0.882,0.889,1.15,1.029,1.022,0.999,0.982,0.891,0.952,0.972,0.989,1.001,1.028 +NM_015045,1.011,0.984,0.884,0.811,1.031,1.045,0.895,0.863,0.885,1.119,1.08,1.045,0.969,0.855,0.947,0.944,0.941,0.901,0.899,1.025,0.671,0.918,1.006,0.975,0.917,1.119,0.936,0.953,0.829,1.099,0.919,1.14,0.895,1.037,1.049,0.942,0.882,0.994,1.116,1.102,1.028,1.069,0.966,1.117,0.988,1.022,1.115,1.093,0.951,1.146,0.994,0.766,0.867,1.145 +NM_015046,0.887,1.048,0.924,0.867,0.869,1.105,0.806,0.671,0.952,0.83,0.972,0.819,0.881,0.648,0.917,0.799,0.819,0.864,0.729,1.127,0.971,0.936,1.086,0.946,1.065,0.96,1.094,0.818,0.698,1.023,0.767,1.159,1.101,1.003,0.808,1.452,0.999,0.802,1.481,1.419,0.938,1.154,1.143,1.352,0.885,1.02,0.878,0.813,1.113,0.97,0.954,0.875,0.797,1.402 +NM_015047,0.626,1.45,0.996,0.695,0.841,0.901,0.766,0.567,0.944,1.087,0.894,0.717,0.544,0.59,0.838,1.197,0.805,0.938,0.892,1.097,0.699,0.88,1.341,0.832,0.734,0.729,1.236,0.731,0.691,1.267,0.862,1.055,1.159,1.232,0.432,0.904,1.169,0.938,1.85,0.842,0.875,1.199,0.691,1.256,0.991,1.036,1.004,0.793,1.15,0.87,1.133,1.016,0.967,1.883 +NM_015049,0.776,1.354,0.934,0.798,1.003,1.102,0.735,0.924,1.156,0.721,1.001,0.778,0.954,0.72,0.922,1.83,0.713,1.007,0.957,1.515,0.712,0.911,1.647,0.777,0.758,0.996,0.872,0.965,0.711,1.208,0.892,2.133,1.332,1.388,1.148,1.267,1.032,1.053,1.187,0.982,0.766,1.524,0.869,1.617,0.677,0.945,0.826,0.946,0.929,0.787,1.208,1.026,0.698,1.846 +NM_015050,0.783,1.124,1.214,0.745,0.682,1.019,0.935,0.534,0.925,0.808,1.081,0.732,0.54,0.711,0.817,1.379,0.873,0.863,1.059,0.995,0.635,0.729,1.404,0.878,0.822,0.762,1.276,0.661,0.647,1.228,0.788,2.027,1.491,1.236,0.351,0.96,1.057,0.775,1.445,1.055,0.861,1.354,0.662,1.569,0.851,0.866,0.923,0.648,0.94,0.77,1.096,1.034,0.902,2.003 +NM_015052,0.974,0.931,1.042,0.973,0.989,1.017,1.006,1.005,0.936,1.007,1.138,1.011,1.014,0.972,1.081,1.089,1.118,1.041,1.03,0.963,0.904,1.04,1.168,0.995,1.02,0.954,0.84,1.108,1.83,1.022,1.019,1.005,1.002,1.043,1.103,1.026,0.916,1.0,1.025,0.997,1.014,0.989,1.297,1.016,0.984,1.17,1.058,1.091,1.172,1.016,0.923,1.083,0.992,1.107 +NM_015055,0.527,0.874,1.547,0.635,1.421,1.323,0.72,0.99,1.518,0.741,0.803,0.776,0.679,0.944,1.059,1.343,1.345,0.992,1.613,0.973,0.544,1.05,1.002,0.998,0.412,0.771,1.545,1.232,0.605,1.442,1.387,0.896,1.312,1.314,1.733,1.202,1.052,1.213,0.959,0.998,1.186,0.985,0.464,0.792,0.908,1.045,1.245,1.05,0.958,1.036,1.069,0.904,0.956,1.164 +NM_015059,0.427,2.112,0.429,0.826,0.428,2.113,1.492,0.395,0.463,0.506,1.25,0.472,0.468,0.443,0.664,1.186,0.449,0.903,0.447,1.551,0.502,0.487,4.07,0.465,1.051,0.533,0.491,0.465,1.433,2.883,0.398,1.194,0.866,1.881,0.401,1.901,1.459,0.439,2.176,0.644,0.51,1.777,1.417,0.747,0.431,1.734,0.947,0.429,1.08,0.473,1.596,0.774,0.462,1.874 +NM_015061,0.94,1.04,0.992,0.915,1.005,0.913,0.898,1.011,1.043,0.861,1.045,1.039,0.899,1.164,1.095,1.164,1.002,1.011,0.886,1.159,1.0,1.019,1.107,0.986,1.046,0.98,1.042,1.051,1.108,0.873,1.055,1.128,1.057,1.043,0.887,0.885,1.027,0.88,0.929,0.938,0.991,1.043,0.882,1.002,0.844,1.05,0.974,0.923,0.974,0.846,1.012,1.022,1.008,0.983 +NM_015062,0.902,1.052,1.216,0.749,1.11,0.68,0.865,0.541,1.3,1.882,0.678,0.844,0.771,0.702,0.987,0.975,1.068,0.841,0.844,0.896,0.735,1.123,1.43,1.14,0.76,0.859,1.108,0.874,0.625,0.853,1.077,1.948,1.769,0.756,0.466,1.709,0.877,0.997,1.719,1.676,0.966,0.997,1.216,1.793,1.536,0.833,1.038,0.956,1.018,0.986,1.112,1.404,1.311,1.758 +NM_015065,1.602,1.018,2.238,0.602,2.795,0.781,0.587,2.59,2.516,0.811,0.726,1.162,1.227,1.814,1.378,0.852,1.319,1.608,2.737,0.819,1.124,1.7,0.898,1.671,0.582,1.024,1.402,3.182,0.712,1.245,2.714,0.526,1.448,1.228,2.722,0.829,0.81,2.744,0.752,0.55,1.972,0.84,0.46,0.839,1.886,0.542,1.231,1.105,0.643,1.068,0.959,0.588,1.197,0.665 +NM_015068,1.009,0.998,0.959,1.001,0.975,0.99,1.58,1.084,1.033,0.842,1.001,1.023,0.999,1.036,1.143,1.065,0.86,0.807,0.989,1.045,0.942,1.012,1.103,0.925,1.049,0.901,0.85,1.084,0.988,0.889,0.884,1.094,1.189,1.034,1.06,0.91,0.926,0.889,1.052,1.081,0.921,1.227,0.943,2.354,1.129,1.133,0.964,0.933,0.819,1.152,1.023,1.548,1.018,0.964 +NM_015069,0.943,1.078,0.903,1.153,0.966,0.896,1.128,1.082,1.11,0.921,0.857,0.969,1.033,1.05,1.138,1.151,0.817,0.91,1.028,0.999,0.89,1.007,1.02,1.044,1.062,1.032,0.961,1.047,1.037,0.908,0.971,1.727,0.987,0.954,0.95,0.992,1.124,0.901,0.919,0.927,0.981,1.034,1.08,1.116,0.953,0.982,0.801,1.04,1.07,0.792,1.207,1.135,0.944,1.183 +NM_015070,0.982,1.008,0.985,1.019,0.977,0.869,1.066,1.254,0.959,1.215,0.882,1.012,0.782,1.003,1.02,0.891,0.757,1.06,1.012,1.125,0.998,1.08,1.073,1.034,0.908,1.169,0.998,1.024,1.592,0.938,0.878,1.052,1.006,0.971,0.926,1.068,0.964,1.013,1.098,0.852,0.856,1.044,1.002,1.006,1.088,0.803,1.074,1.134,0.98,0.998,1.013,0.971,1.354,0.797 +NM_015071,0.914,1.094,0.805,1.123,0.939,1.044,1.06,0.933,0.994,1.08,1.022,1.133,0.935,1.032,1.144,1.239,0.821,1.059,1.019,0.966,0.836,0.852,1.019,0.986,0.97,0.954,0.913,0.822,0.705,1.211,0.906,1.078,1.239,1.059,1.078,0.957,0.945,0.89,1.506,0.97,0.884,1.216,1.053,1.235,0.958,1.199,1.035,0.961,1.276,1.102,1.172,0.893,1.114,0.927 +NM_015072,0.86,0.96,1.014,0.941,1.056,1.077,1.111,0.972,1.064,0.967,1.003,0.927,1.001,0.971,0.88,0.97,0.947,1.03,0.942,0.81,1.071,1.056,0.951,0.98,0.958,1.055,0.947,1.03,0.815,1.136,1.076,1.059,0.95,1.165,1.05,1.046,1.034,1.024,0.872,1.031,1.018,0.888,0.962,0.968,1.151,0.857,0.912,0.83,0.983,0.988,0.998,0.793,0.997,0.969 +NM_015074,0.943,0.948,0.984,0.852,0.906,1.009,0.742,0.899,1.215,1.108,0.999,0.945,0.911,0.811,1.169,0.905,1.071,0.978,0.973,1.157,1.041,1.1,1.037,0.92,0.95,0.934,0.975,1.143,0.93,0.912,1.005,0.901,0.902,1.052,0.962,0.844,1.042,1.07,0.979,1.181,0.914,1.081,1.039,1.337,1.03,0.958,1.039,0.991,1.077,1.019,1.097,0.997,1.012,1.0 +NM_015076,1.062,1.111,1.194,1.017,1.002,0.99,0.848,0.979,1.247,0.965,1.14,0.886,1.312,0.948,0.949,1.037,1.27,1.01,0.973,1.011,1.192,1.246,0.854,1.018,0.767,1.05,1.057,1.041,1.006,1.005,1.225,1.105,1.093,0.905,1.222,0.831,0.996,0.972,0.911,0.904,1.159,0.981,0.902,0.993,1.07,0.968,0.985,1.054,1.063,1.048,1.039,1.026,0.844,0.924 +NM_015078,0.914,0.96,1.099,1.037,0.849,0.982,1.035,0.805,0.995,1.003,1.127,0.887,1.014,1.013,0.916,1.026,1.022,0.923,1.068,0.988,0.906,0.972,1.003,0.831,0.976,0.919,0.989,0.957,1.061,0.911,1.085,1.03,1.167,1.122,1.088,0.902,0.96,1.047,1.014,0.881,0.879,1.042,0.864,0.964,1.097,1.168,0.925,1.149,1.147,1.028,0.793,0.99,1.223,1.28 +NM_015079,0.721,1.108,1.085,0.869,0.721,1.287,0.689,0.397,0.793,0.851,1.253,0.59,0.588,0.627,0.896,1.119,0.8,0.838,0.974,1.052,0.62,0.655,1.311,0.761,0.807,0.709,0.823,0.704,0.701,1.271,0.737,2.087,1.154,1.712,0.467,0.845,1.027,0.968,1.424,0.896,0.866,1.536,0.617,1.031,0.66,0.868,0.87,0.708,0.675,0.816,1.136,0.759,0.527,1.238 +NM_015084,0.956,0.942,1.25,0.942,0.84,0.888,0.538,0.449,1.123,1.089,1.131,0.844,0.765,0.749,1.03,1.289,0.993,0.88,1.302,0.935,0.728,0.717,1.363,1.138,0.732,0.999,1.437,0.836,0.368,0.979,0.895,1.031,1.516,1.183,0.286,0.759,1.03,0.928,1.4,0.461,1.11,1.169,0.786,1.03,1.066,0.968,0.767,0.773,0.914,0.928,1.003,0.698,1.109,1.364 +NM_015087,0.933,0.891,1.15,1.007,1.001,1.093,1.017,1.055,1.025,0.93,0.849,1.049,0.922,1.128,0.885,1.026,1.093,1.033,0.937,0.966,1.071,1.071,0.999,1.168,0.958,0.894,1.117,0.885,0.756,1.105,1.138,1.271,1.273,1.009,1.025,0.986,0.922,1.077,0.962,1.107,0.943,1.345,0.937,1.029,0.942,0.866,1.082,0.95,1.075,1.001,0.918,0.958,1.051,0.98 +NM_015089,1.061,1.039,1.085,0.859,1.039,0.986,0.685,0.715,1.102,0.986,1.001,0.783,0.802,0.867,0.85,0.968,1.192,0.863,1.121,1.155,0.977,1.205,0.967,1.105,1.016,1.15,1.484,0.891,0.627,0.96,1.04,1.086,1.231,0.995,0.649,0.75,0.955,1.129,0.969,0.898,0.999,0.938,0.762,1.041,0.928,0.724,0.798,1.267,0.715,1.121,0.926,0.768,1.248,1.143 +NM_015091,0.788,0.934,1.147,0.919,1.033,1.313,1.214,0.997,1.137,0.867,0.957,1.113,0.857,0.895,1.126,1.413,1.07,1.15,0.754,1.52,0.915,1.1,1.146,1.299,0.851,0.677,1.346,1.112,0.861,1.043,1.024,1.397,1.323,1.159,0.762,0.682,0.98,1.123,1.159,0.908,0.958,1.135,0.92,0.853,0.966,0.972,1.041,0.847,0.84,0.9,1.242,0.862,0.849,1.475 +NM_015092,1.183,0.976,1.164,0.961,0.972,0.97,0.878,0.859,1.025,1.081,0.963,1.047,1.056,0.862,0.867,1.029,1.101,0.941,1.06,0.911,1.057,1.044,0.985,1.045,0.93,0.999,1.018,0.946,1.036,0.98,0.936,0.96,1.078,0.929,0.937,1.128,0.939,1.001,0.922,0.934,0.889,1.168,1.05,1.07,1.055,1.068,1.068,1.112,1.004,1.105,0.984,0.952,0.887,1.062 +NM_015093,0.83,0.856,1.615,0.738,1.158,1.297,1.048,1.526,1.216,0.885,0.818,1.153,1.112,0.85,1.111,1.499,0.997,1.049,0.845,1.068,0.766,1.221,0.879,1.231,0.757,0.662,1.623,1.06,0.714,1.224,1.491,1.184,1.91,1.095,0.919,0.717,0.951,1.561,1.369,0.888,0.937,1.162,0.741,0.744,0.879,0.845,1.018,1.001,1.056,1.06,0.973,0.805,0.669,1.279 +NM_015094,1.13,0.892,1.144,1.086,1.011,0.965,0.889,0.647,1.12,1.114,0.902,0.846,0.802,1.06,1.003,1.017,0.939,0.898,1.205,1.089,0.877,0.827,1.064,1.183,1.032,1.101,0.777,1.082,0.662,1.22,0.964,1.09,1.011,1.205,0.885,1.082,0.999,0.837,1.132,1.061,1.022,1.096,0.676,0.845,1.134,0.972,0.998,0.888,0.802,0.942,0.999,0.831,1.232,1.775 +NM_015099,0.988,0.944,0.929,0.908,0.931,1.044,0.914,1.113,0.904,1.016,1.002,1.099,0.954,1.039,1.098,1.008,1.035,0.881,0.921,0.932,0.962,1.105,0.916,1.037,1.108,1.0,1.058,0.889,1.141,1.102,0.914,1.036,0.764,1.137,1.04,1.078,1.127,1.109,1.124,0.986,1.014,1.058,0.968,0.996,1.076,0.972,0.992,0.923,0.849,1.0,1.116,0.987,0.925,0.864 +NM_015100,0.841,1.106,1.17,0.834,0.756,1.006,0.747,0.64,0.875,0.766,0.968,0.719,0.679,0.722,1.01,1.062,0.836,0.819,0.849,1.209,0.734,0.605,1.145,0.748,0.843,0.748,1.058,0.69,0.603,1.05,0.807,1.63,1.696,1.352,0.699,1.207,0.826,0.762,1.277,1.501,0.847,1.42,0.9,1.358,0.836,1.207,0.91,0.709,0.95,0.803,0.996,1.002,0.794,1.576 +NM_015101,0.834,3.666,0.924,1.129,0.949,1.156,1.159,0.946,0.872,0.847,0.849,0.842,0.857,0.826,0.853,0.801,0.986,0.873,0.884,1.214,0.9,0.85,1.221,0.914,0.924,0.969,1.023,0.985,0.682,1.837,0.963,0.951,1.12,2.174,0.853,3.047,1.397,0.907,1.109,1.045,0.916,1.362,0.961,4.095,0.968,0.965,1.118,0.904,0.929,1.054,1.199,0.871,0.849,1.017 +NM_015102,0.741,1.174,1.056,0.996,0.884,0.941,0.748,0.732,1.01,0.93,1.035,0.922,0.869,0.743,0.737,0.976,1.064,0.958,0.864,1.252,0.814,0.834,1.139,0.982,0.784,0.96,1.12,0.712,0.646,0.956,0.971,1.331,1.787,1.053,0.778,1.103,1.072,1.079,1.169,1.251,1.0,1.041,0.848,1.311,1.004,1.095,1.088,0.896,0.999,0.991,1.223,0.876,0.968,1.434 +NM_015103,0.951,1.288,0.91,0.849,0.983,0.898,1.072,0.878,0.84,1.07,0.931,0.95,0.904,1.052,0.9,0.998,1.033,0.949,0.972,0.988,0.772,0.924,1.108,0.965,0.986,0.946,1.026,0.982,1.169,1.087,0.861,1.796,0.983,1.002,1.049,0.898,0.902,0.958,1.07,1.427,0.952,1.037,0.953,1.074,0.97,1.048,0.915,0.994,0.897,0.931,1.041,1.044,0.875,1.106 +NM_015106,0.998,1.032,1.029,1.005,0.881,0.929,0.914,0.901,0.936,1.073,0.86,0.873,1.003,1.002,0.78,0.908,0.965,1.043,1.046,0.965,1.141,1.077,1.133,0.941,1.062,1.015,1.012,0.897,0.954,1.039,0.881,1.135,0.941,0.911,0.873,0.884,0.979,1.01,1.429,1.078,0.901,1.029,1.052,0.942,0.877,0.902,0.956,1.183,0.968,1.14,0.882,1.135,0.982,0.976 +NM_015107,1.007,1.031,0.965,1.005,1.035,0.961,0.943,0.818,1.019,1.009,0.962,1.027,0.998,1.098,0.864,1.087,0.992,1.049,1.024,0.879,0.941,1.041,0.822,0.924,0.886,1.008,0.964,1.07,1.45,1.044,0.972,1.08,0.864,0.967,1.131,1.009,1.017,1.039,1.109,1.007,0.997,1.108,0.897,0.857,1.043,0.896,0.937,1.079,1.043,1.069,0.957,0.97,0.927,0.892 +NM_015110,0.966,1.007,1.149,0.825,1.06,1.091,0.882,0.97,1.035,0.945,0.843,1.115,1.065,0.843,0.997,1.116,1.017,1.096,0.885,1.164,0.844,1.263,1.114,1.241,0.819,0.975,0.994,0.989,0.955,0.878,1.101,0.981,1.736,0.944,1.183,0.862,0.878,1.022,1.2,0.983,1.133,0.969,1.086,1.002,1.047,1.051,0.888,0.875,1.164,1.018,1.115,1.099,0.805,1.196 +NM_015112,0.704,1.249,0.725,0.801,0.802,1.571,0.633,0.602,0.723,0.773,1.57,0.784,0.762,0.728,1.415,2.046,0.811,0.756,0.73,1.477,0.605,0.807,1.914,0.812,0.751,0.691,0.863,0.82,0.672,1.055,0.781,2.638,1.762,0.954,0.629,1.033,1.415,0.885,2.06,1.195,0.799,1.507,1.28,1.601,0.812,1.545,1.184,0.818,1.317,0.79,1.556,0.865,0.794,1.835 +NM_015113,0.863,0.895,0.834,1.041,0.898,1.233,0.841,0.562,0.88,0.808,1.348,0.809,0.724,0.788,1.466,1.491,0.987,0.912,0.907,1.323,0.934,0.841,1.39,0.949,1.01,0.846,0.894,0.763,0.83,1.197,0.873,1.125,0.926,1.199,0.768,0.839,1.401,0.795,1.308,0.884,0.915,1.797,1.137,0.911,0.921,1.302,0.862,0.922,1.316,1.002,1.29,0.801,0.872,1.251 +NM_015115,0.751,1.482,0.941,0.794,0.908,1.705,1.145,0.727,1.103,0.889,1.449,1.074,0.871,0.805,0.979,1.358,0.686,1.001,1.261,1.185,0.688,0.938,1.058,1.055,1.138,0.842,1.217,0.885,0.853,1.769,1.033,1.348,1.109,1.934,0.383,0.581,1.308,0.972,1.375,0.783,0.989,1.306,0.66,0.843,0.796,1.099,0.843,0.783,0.716,0.722,0.9,0.759,0.753,1.203 +NM_015116,0.944,0.993,0.962,1.077,0.963,1.0,0.812,1.024,0.996,1.022,0.97,0.95,0.996,1.247,0.83,1.055,0.939,1.09,1.027,1.053,1.202,0.965,1.084,0.992,0.989,0.849,0.891,0.911,1.015,0.956,1.028,1.05,0.994,1.138,0.909,1.139,1.006,0.792,0.896,1.048,0.972,1.169,0.918,0.959,1.068,1.052,0.997,0.968,0.919,0.915,1.009,1.101,1.13,1.044 +NM_015117,1.075,0.925,0.906,0.963,0.896,1.063,0.941,1.037,1.046,0.951,0.967,0.953,1.014,1.1,1.112,1.086,0.993,0.931,1.114,0.958,1.073,0.999,0.896,0.905,1.039,1.052,0.994,0.853,0.807,0.926,0.982,1.204,1.423,0.949,1.178,1.004,0.89,1.084,1.526,1.114,1.082,1.025,0.803,1.308,0.972,0.855,0.774,1.154,0.881,1.119,0.898,0.889,1.001,1.004 +NM_015120,1.05,1.011,1.146,0.857,0.806,0.937,0.756,0.848,1.087,0.771,1.005,0.967,0.758,0.851,0.953,0.931,0.968,0.885,0.983,1.12,0.942,0.876,1.214,0.885,0.883,0.891,1.148,0.875,0.657,1.063,0.818,1.321,2.921,1.144,0.691,1.135,1.007,0.886,1.205,1.0,0.895,1.081,0.914,1.059,0.921,0.89,0.964,0.837,0.797,0.949,1.134,1.03,0.785,1.178 +NM_015122,0.883,1.279,0.843,0.906,0.812,1.142,0.905,0.732,0.827,0.702,1.056,0.924,0.754,0.926,0.91,1.172,0.839,1.039,0.785,1.106,0.856,0.879,1.509,0.895,0.901,0.99,0.907,0.848,0.721,1.74,0.836,0.901,1.023,0.974,0.786,1.696,1.041,1.006,1.151,2.059,0.818,1.059,0.955,2.016,0.865,1.019,1.301,0.815,0.938,0.798,1.175,1.046,0.884,1.45 +NM_015125,1.076,0.93,1.05,0.998,0.852,0.942,0.832,0.881,0.995,0.778,0.895,0.884,0.857,0.784,0.899,0.974,0.94,0.974,1.147,0.916,0.977,1.145,1.095,0.966,0.937,1.174,1.14,0.838,0.918,1.102,1.005,1.3,1.421,1.132,0.971,1.011,1.003,0.907,1.475,1.2,0.99,1.109,0.829,1.193,0.989,0.861,1.087,1.149,0.985,1.103,0.988,0.933,1.06,1.119 +NM_015127,0.752,1.061,1.018,0.984,0.98,1.12,0.963,0.664,0.938,0.967,0.964,0.778,0.733,0.796,1.019,1.266,0.966,0.915,1.051,1.224,0.705,0.851,1.482,0.823,0.98,0.784,0.791,0.732,0.796,1.24,0.937,1.22,2.925,1.365,0.818,1.054,1.082,0.841,1.404,1.076,1.066,1.147,0.858,1.034,1.038,1.044,0.972,0.759,0.96,0.787,1.203,0.914,0.994,1.805 +NM_015132,0.849,0.886,1.097,0.805,1.149,1.093,0.785,0.873,1.25,0.986,1.036,1.203,0.81,0.843,1.058,1.282,1.037,0.97,1.265,0.975,0.688,1.004,1.116,1.121,0.646,0.983,1.248,0.995,0.706,1.132,1.109,1.176,1.494,1.112,0.901,0.988,0.83,1.033,1.169,0.799,0.975,0.945,0.755,1.531,0.952,1.314,1.255,1.025,0.98,0.968,1.111,0.824,1.066,1.847 +NM_015134,1.591,0.541,1.071,1.015,1.492,0.836,0.608,0.958,1.644,0.955,0.779,0.893,0.815,1.009,1.284,1.008,1.322,0.756,1.213,0.699,0.835,1.156,0.841,1.255,0.649,1.456,0.915,1.454,0.351,1.054,1.526,1.698,1.456,1.193,2.546,0.626,0.594,1.281,1.041,0.908,1.473,0.999,0.496,1.206,1.258,0.613,0.842,1.868,0.557,1.273,0.919,0.92,1.046,0.949 +NM_015136,0.844,1.113,1.036,0.827,0.739,1.204,1.07,0.745,0.853,0.841,0.905,0.703,0.729,0.772,0.94,0.905,0.95,0.905,0.962,0.898,0.896,0.731,1.15,1.102,1.216,0.834,1.535,0.839,0.958,1.96,0.674,1.591,0.921,1.699,0.672,0.906,1.145,1.033,1.377,1.193,0.904,1.377,0.797,0.916,0.854,0.852,0.82,0.855,0.773,0.783,1.042,1.206,1.178,1.224 +NM_015138,0.762,1.053,1.257,0.628,0.794,1.122,0.607,0.606,1.265,0.877,0.842,0.717,0.677,0.82,1.041,1.216,0.878,0.861,1.091,0.975,0.633,0.916,1.494,1.031,0.7,0.858,1.372,0.939,0.431,1.172,1.065,1.169,1.191,1.308,0.488,0.676,1.072,0.919,1.149,0.771,1.015,1.022,0.583,0.734,1.047,0.841,0.823,0.821,0.935,0.854,1.003,0.662,0.903,1.906 +NM_015139,0.651,1.126,0.882,1.167,0.851,2.54,1.192,0.646,0.806,0.952,1.76,0.905,0.632,0.695,1.256,2.331,0.807,1.28,0.903,1.368,0.604,0.751,1.875,0.902,0.818,0.658,1.199,0.719,0.867,1.78,0.673,0.964,1.078,1.645,0.594,0.979,1.878,0.791,1.94,0.692,0.846,1.367,0.786,1.02,0.789,2.053,1.158,0.654,1.332,0.857,2.249,0.936,0.839,1.054 +NM_015140,1.248,0.906,1.355,1.095,1.04,1.185,0.639,0.577,1.137,1.157,0.85,1.208,0.787,0.588,0.801,1.317,1.243,1.338,1.309,0.926,0.784,1.102,0.777,1.164,0.681,1.456,1.09,1.001,0.67,1.317,0.832,0.682,0.821,1.363,0.799,0.66,0.911,1.013,2.151,0.513,1.304,0.993,0.438,1.04,1.472,0.808,0.85,1.675,0.766,1.49,0.905,0.576,0.796,0.563 +NM_015141,0.697,1.228,1.486,0.918,1.2,2.289,0.944,1.109,1.326,1.077,1.325,0.958,0.965,0.883,1.038,2.062,1.026,1.326,0.933,1.158,0.553,1.37,1.602,0.898,0.753,0.696,1.288,1.11,0.869,2.169,1.242,0.691,1.18,1.727,0.407,0.486,1.348,1.087,1.918,0.396,1.007,1.672,0.567,0.419,0.598,1.24,0.682,1.016,1.174,0.644,1.174,0.53,0.536,0.725 +NM_015143,0.975,0.875,1.835,0.973,1.312,0.851,0.735,0.706,1.885,1.376,1.044,0.902,0.849,0.908,1.066,1.255,1.266,1.198,1.621,1.202,0.905,0.784,1.024,1.262,0.591,0.964,1.069,1.333,0.39,0.976,1.51,1.096,1.288,1.087,0.713,0.762,0.876,1.002,1.006,0.79,1.54,0.998,0.707,1.252,1.259,0.947,1.143,0.828,0.892,0.996,1.002,0.775,1.363,0.96 +NM_015144,0.852,1.054,1.247,0.883,0.782,0.939,0.645,0.491,0.973,0.737,1.042,0.666,0.656,0.806,0.911,1.16,0.973,0.781,0.855,1.274,0.602,0.821,1.245,0.807,0.774,0.805,1.081,0.929,0.537,1.099,0.945,2.308,2.18,1.222,0.447,0.891,1.051,1.02,1.321,1.132,0.974,1.347,0.696,1.741,0.873,1.034,0.979,0.794,0.957,0.842,1.092,0.877,0.685,1.472 +NM_015147,0.816,1.034,1.032,0.769,1.053,1.069,0.876,0.984,1.122,1.009,0.816,0.893,0.83,0.907,0.987,0.942,0.95,1.038,0.883,0.978,0.954,1.051,1.101,0.897,0.945,0.939,1.107,0.935,1.123,1.197,0.994,1.232,1.098,1.154,0.792,1.062,0.955,1.023,1.102,0.964,0.85,1.084,0.98,0.959,0.962,0.906,1.187,0.949,1.014,0.961,1.073,0.951,0.968,0.873 +NM_015148,0.891,0.962,1.07,0.957,1.033,0.877,1.312,1.002,0.888,0.92,0.939,0.908,0.801,0.84,0.898,1.078,0.871,1.027,1.023,0.968,0.92,0.901,1.165,1.023,0.886,0.867,1.12,0.974,1.059,1.158,0.962,1.314,1.977,0.902,0.858,0.975,1.135,0.95,1.276,1.199,0.871,1.065,1.084,1.246,0.962,0.833,1.042,0.808,1.035,0.936,1.058,1.136,0.978,2.375 +NM_015149,0.709,1.113,1.183,0.686,0.85,1.133,0.859,0.598,0.821,0.735,1.004,1.004,0.856,0.642,1.318,1.192,0.828,0.661,0.761,0.831,0.731,0.781,1.128,0.805,0.696,0.729,1.186,0.897,0.446,1.487,0.598,1.947,1.617,1.979,0.472,0.915,1.129,0.996,1.111,1.489,1.011,1.64,0.972,1.114,0.949,1.049,0.9,0.68,0.706,0.769,0.983,1.499,1.013,1.3 +NM_015150,0.811,1.014,1.033,0.848,0.822,1.031,0.938,0.877,0.809,0.78,0.997,0.861,0.83,0.766,0.955,1.25,0.837,0.774,0.988,0.822,0.814,0.68,1.455,0.862,0.85,0.835,1.251,0.95,0.538,1.251,0.915,6.801,1.98,1.371,0.643,0.861,0.881,0.917,1.405,1.492,1.072,1.623,0.804,1.002,0.944,0.975,0.885,0.802,0.685,1.057,1.065,1.522,1.107,1.969 +NM_015151,1.264,0.993,0.967,1.153,0.966,1.08,0.887,0.941,0.907,1.052,0.895,0.867,1.031,0.765,1.08,0.959,1.02,0.975,0.843,0.948,1.029,1.047,0.893,0.99,1.016,0.895,1.027,1.108,0.817,0.894,0.899,0.999,0.935,0.962,1.29,1.014,1.038,0.919,1.027,0.846,1.173,1.05,0.97,1.311,0.961,1.002,1.112,1.001,0.896,1.011,1.088,0.928,0.943,0.922 +NM_015153,0.783,1.088,1.246,0.854,1.136,1.287,0.782,0.722,1.203,0.86,0.872,0.918,0.779,0.794,1.08,1.303,1.148,1.077,0.878,1.216,0.708,1.011,1.192,0.98,0.806,0.645,1.328,0.851,0.74,1.248,1.074,1.202,1.726,1.233,0.874,0.836,0.966,1.026,1.296,0.994,1.009,1.293,0.805,0.806,0.823,0.902,0.973,0.779,1.117,0.802,1.127,0.856,0.832,1.302 +NM_015156,1.01,0.959,1.215,0.897,1.133,1.044,0.81,1.091,1.022,0.988,0.883,0.927,1.009,1.103,0.887,0.961,1.033,1.166,1.064,1.102,0.97,0.988,0.963,1.142,1.168,1.119,1.081,1.109,1.184,1.009,0.997,1.141,1.045,1.0,1.019,0.878,1.058,0.948,1.066,1.114,1.102,1.062,1.187,0.933,1.092,0.942,1.097,0.967,0.994,0.838,0.963,1.033,0.934,0.997 +NM_015157,1.011,1.108,1.102,0.958,0.887,0.946,0.805,0.995,0.856,0.956,0.899,0.961,1.001,0.894,0.845,1.012,0.97,0.934,1.011,0.93,0.932,1.097,0.996,0.995,1.053,1.113,1.02,0.949,1.048,1.057,0.974,1.147,1.037,1.047,1.0,0.972,1.036,0.952,1.088,1.026,0.857,0.994,0.845,0.975,0.963,0.992,0.997,0.996,0.878,0.965,1.042,1.091,0.884,0.915 +NM_015158,2.8449999999999998,1.462,3.368,1.7570000000000001,2.677,1.77,1.608,2.3280000000000003,3.578,2.622,1.659,2.081,2.192,3.0949999999999998,2.691,2.258,2.052,2.1500000000000004,4.4030000000000005,1.677,2.59,3.3600000000000003,2.0389999999999997,3.322,1.624,3.224,2.323,3.261,1.423,1.817,3.114,1.903,2.596,2.016,1.454,1.518,1.8090000000000002,2.997,1.675,1.56,2.844,1.8290000000000002,1.443,1.841,2.597,1.478,1.824,3.0149999999999997,1.525,2.311,1.886,1.554,2.492,2.184 +NM_015160,0.6,1.02,0.858,0.692,0.888,0.9,0.535,0.506,1.165,1.142,0.871,0.812,0.643,0.629,0.912,1.477,0.866,0.832,1.243,0.997,0.676,0.845,1.127,1.095,0.684,0.885,0.973,0.701,0.502,1.02,0.946,1.665,1.876,1.06,0.297,2.761,0.843,0.892,1.816,1.197,0.822,0.995,0.77,1.472,1.143,0.879,1.101,0.891,1.047,0.802,0.95,1.038,1.292,2.002 +NM_015161,0.324,1.744,0.731,0.85,0.542,1.686,0.904,0.397,0.669,0.557,1.568,0.399,0.417,0.409,0.839,2.566,0.411,1.018,0.919,1.028,0.338,0.302,1.578,0.571,0.572,0.414,0.903,0.6,0.393,1.766,0.673,1.354,2.713,1.961,0.261,1.108,2.193,0.437,1.976,1.167,0.588,1.519,0.998,1.243,0.539,1.232,1.089,0.347,1.31,0.396,1.534,0.679,0.583,1.347 +NM_015162,0.875,0.959,0.875,1.062,0.847,0.985,0.834,0.942,1.197,0.999,1.354,0.973,0.891,1.074,1.065,1.476,1.16,0.9,0.898,1.077,0.983,1.127,1.096,1.06,0.978,1.036,0.942,1.021,1.477,1.061,1.074,1.061,0.97,0.956,0.972,1.101,1.045,0.863,0.995,1.05,1.012,0.863,0.997,0.982,0.988,1.313,1.107,0.92,1.046,0.956,1.156,1.004,1.048,0.942 +NM_015163,0.995,1.185,0.855,1.039,0.952,0.896,0.81,1.052,0.859,0.968,0.966,0.837,0.947,1.136,1.063,1.078,0.866,1.1,0.896,0.832,0.973,0.991,1.065,0.959,1.042,0.916,1.074,1.083,1.016,0.997,1.079,1.514,1.018,0.934,0.934,1.174,1.089,0.918,1.068,1.434,0.851,0.996,0.934,0.912,1.012,0.994,1.031,0.955,1.107,0.929,0.949,1.053,1.073,1.159 +NM_015166,2.004,1.968,1.839,2.101,1.9909999999999999,2.062,2.0309999999999997,1.93,1.8679999999999999,2.083,2.1,2.003,2.063,1.958,2.054,1.9140000000000001,2.031,2.025,1.975,1.964,2.148,1.952,2.052,2.096,1.959,2.021,1.911,1.9860000000000002,2.393,2.0260000000000002,2.1630000000000003,2.1399999999999997,1.947,2.117,2.093,2.231,2.037,2.252,2.145,2.021,1.99,1.924,2.556,2.169,1.8279999999999998,1.817,1.951,2.1500000000000004,1.999,1.921,1.873,1.8530000000000002,2.1100000000000003,1.8980000000000001 +NM_015167,0.941,0.901,0.881,0.905,0.991,1.003,0.829,0.968,1.106,0.946,1.152,1.012,1.033,0.96,0.976,1.055,1.097,0.829,0.982,1.049,1.074,1.023,0.988,1.083,0.916,1.118,1.035,1.139,0.878,1.09,0.898,0.917,0.91,1.163,0.986,1.006,1.049,0.975,1.027,0.984,1.031,0.786,0.838,0.983,1.016,1.022,1.029,1.073,0.868,0.996,1.088,0.952,1.048,1.005 +NM_015169,0.799,1.197,1.024,0.841,1.074,0.819,0.829,0.547,1.194,1.461,0.938,0.787,0.747,0.809,0.871,1.106,1.003,0.814,1.066,0.799,0.872,0.84,1.57,1.037,0.661,0.96,1.081,1.073,0.519,0.895,0.926,1.318,2.719,1.017,0.599,1.425,0.949,0.885,1.38,1.562,1.019,1.093,0.838,2.217,1.295,1.022,0.996,0.817,1.339,1.122,0.998,1.196,1.164,2.014 +NM_015170,0.915,1.15,0.95,0.983,0.808,0.872,0.96,0.919,0.919,1.088,0.805,0.873,0.905,1.101,0.903,1.227,0.955,0.894,0.933,0.983,0.882,0.926,1.275,0.933,0.939,1.016,0.977,1.044,0.634,1.049,1.003,25.26,2.782,1.364,0.873,1.093,1.017,1.048,1.045,3.078,0.969,1.264,1.083,0.886,1.022,0.881,1.07,0.81,0.905,0.929,1.216,1.761,0.993,1.947 +NM_015172,0.791,0.975,1.744,0.659,1.088,0.924,0.673,0.53,1.328,1.287,0.726,0.591,0.494,0.977,0.939,0.954,0.964,0.717,1.032,0.981,0.852,0.577,1.197,0.896,0.604,0.723,2.002,0.846,0.454,1.022,1.114,1.54,2.412,1.047,0.527,1.073,0.95,0.814,1.201,1.447,1.29,0.917,1.025,1.14,1.166,1.033,0.792,0.569,1.161,1.002,1.219,0.884,1.232,1.716 +NM_015173,0.435,1.21,0.585,0.846,0.46,1.422,0.63,0.414,0.488,0.563,1.424,0.524,0.592,0.367,0.923,1.306,0.498,0.846,0.513,1.648,0.583,0.482,1.578,0.537,0.805,0.474,0.585,0.488,0.577,1.062,0.444,2.089,1.402,1.445,0.457,1.512,1.102,0.486,2.042,1.429,0.604,1.394,1.131,2.206,0.578,1.768,1.042,0.447,0.925,0.603,1.578,1.104,0.678,1.187 +NM_015176,0.825,0.821,1.126,0.723,1.021,0.985,0.688,0.811,1.419,1.035,0.883,0.948,0.733,0.911,1.144,1.167,1.121,0.852,1.168,0.832,0.607,0.624,1.019,1.149,0.54,0.774,1.293,1.024,0.435,0.836,1.269,1.006,1.693,0.921,0.906,1.042,1.104,0.8,1.067,0.919,1.16,0.748,0.758,1.169,1.182,1.084,1.016,0.827,1.329,0.873,1.124,0.806,0.946,2.328 +NM_015178,1.017,1.076,1.028,0.989,0.934,1.208,0.877,0.98,0.919,0.968,0.978,1.035,0.93,1.0,0.89,0.948,0.851,0.912,0.683,0.907,1.058,1.026,0.919,0.905,0.88,0.94,0.931,0.937,1.103,1.047,0.91,1.467,1.121,1.183,1.001,0.893,0.919,0.924,1.134,1.16,0.967,0.965,0.814,0.974,1.076,0.826,1.027,1.111,0.995,1.033,0.914,1.02,0.928,1.028 +NM_015179,0.853,0.962,0.954,0.847,0.901,0.736,0.56,0.677,1.062,1.416,0.755,0.883,0.694,0.691,0.755,0.868,1.036,0.853,1.03,0.866,1.063,0.925,1.171,1.223,0.76,1.112,1.025,0.873,0.617,0.765,1.07,1.625,2.633,0.916,0.553,1.597,0.938,1.012,1.737,1.417,1.034,0.948,1.06,1.615,1.43,0.804,1.139,0.872,1.004,0.937,0.936,1.328,1.471,2.001 +NM_015180,1.037,1.099,0.942,0.94,1.16,1.0,0.851,1.12,1.14,1.005,0.879,1.029,0.979,1.003,1.075,0.977,0.908,0.928,0.998,1.122,0.907,0.984,0.871,1.032,0.889,0.952,1.165,0.962,1.111,1.025,1.059,1.085,1.214,0.831,0.894,1.143,0.879,1.077,1.21,0.991,1.023,0.999,1.015,1.275,1.027,0.859,1.079,1.08,0.919,1.077,0.975,0.899,0.749,1.2 +NM_015184,0.638,1.394,0.66,0.983,0.573,1.983,0.963,0.652,0.537,0.642,1.811,0.596,0.668,0.489,0.944,1.361,0.649,1.038,0.556,2.114,0.593,0.547,2.036,0.542,1.275,0.601,0.73,0.594,0.805,1.873,0.578,1.334,1.24,2.43,0.494,1.166,1.276,0.562,1.103,0.685,0.568,1.868,0.865,0.977,0.686,1.615,0.876,0.547,0.828,0.58,1.639,1.017,0.705,1.189 +NM_015185,0.892,1.314,1.145,0.895,0.763,1.002,0.909,0.632,1.001,0.896,1.041,0.848,0.784,0.956,0.869,0.97,0.849,0.841,0.882,1.195,0.873,0.885,1.242,0.909,1.038,0.906,1.038,1.017,0.667,1.284,0.842,1.847,0.946,1.467,0.708,0.973,0.975,1.025,1.261,0.824,1.098,1.355,0.873,1.073,0.914,1.023,0.934,0.828,0.835,0.807,1.126,0.825,1.016,1.1 +NM_015186,1.87,1.9899999999999998,2.358,1.857,1.9300000000000002,2.408,2.0549999999999997,1.8399999999999999,2.061,1.9449999999999998,1.8719999999999999,1.777,1.694,1.956,1.99,2.3680000000000003,2.003,1.906,2.021,2.104,1.915,1.887,2.0069999999999997,2.018,1.923,1.861,2.136,1.967,1.76,2.154,1.896,1.847,2.3579999999999997,2.039,1.8250000000000002,1.751,2.159,2.035,1.995,1.8780000000000001,2.024,2.3099999999999996,1.9589999999999999,1.8279999999999998,1.923,2.106,1.9609999999999999,1.7890000000000001,2.055,1.842,1.952,1.888,1.9460000000000002,2.053 +NM_015187,0.133,1.995,0.209,0.899,0.142,2.024,1.039,0.111,0.148,0.147,1.95,0.123,0.148,0.133,0.676,1.528,0.143,1.05,0.131,1.57,0.145,0.133,1.916,0.207,1.126,0.14,0.213,0.144,0.961,2.385,0.143,1.047,0.759,2.454,0.0988,0.803,1.804,0.159,1.715,0.574,0.145,2.259,0.734,1.307,0.187,1.58,0.788,0.143,1.207,0.137,1.483,0.414,0.193,1.39 +NM_015190,0.953,0.811,1.402,0.947,0.93,0.997,0.689,0.693,1.194,0.989,0.905,1.098,0.925,0.725,1.068,1.543,0.904,0.892,1.109,0.829,0.7,0.896,1.345,1.323,0.688,0.865,1.855,0.983,0.4,0.851,0.956,1.093,3.443,1.149,0.453,1.386,0.844,0.892,1.579,1.065,0.963,0.812,0.867,1.665,1.34,0.866,1.022,0.829,1.054,0.929,1.03,1.164,1.1,3.122 +NM_015191,0.881,0.933,1.106,0.984,0.85,1.01,0.952,0.839,0.945,1.014,1.063,1.032,0.898,0.928,1.042,0.804,1.103,1.016,0.911,0.984,0.873,0.927,1.227,0.91,0.92,1.033,1.12,0.937,1.01,1.079,1.0,0.986,1.008,0.939,0.9,1.108,1.022,1.048,1.025,1.039,0.97,0.997,0.895,1.036,0.816,1.047,1.039,0.849,1.041,1.031,1.099,0.94,1.041,1.104 +NM_015192,0.815,0.994,0.912,0.968,0.818,1.551,0.906,0.793,0.877,0.889,1.14,0.943,0.821,0.89,0.925,1.324,0.839,0.745,0.979,1.204,0.854,0.866,1.464,0.795,1.13,0.846,1.032,0.84,1.034,1.0,0.821,1.703,4.274,1.085,0.842,0.913,1.042,0.85,1.936,1.486,0.855,1.513,0.962,1.218,0.897,1.307,1.152,0.906,1.082,0.869,1.383,1.02,0.806,1.936 +NM_015193,0.986,1.0,0.926,0.932,0.974,0.953,1.085,1.016,0.908,0.931,1.163,0.866,1.078,1.104,0.904,0.886,1.107,1.082,0.812,0.981,0.961,1.122,0.927,1.044,1.084,1.055,1.158,1.067,1.318,0.873,1.042,1.069,0.914,1.057,1.222,1.036,1.02,0.985,1.019,1.225,0.884,0.996,0.992,0.941,1.001,0.887,0.976,0.943,0.845,1.041,1.02,0.989,1.021,0.972 +NM_015196,1.16,1.145,1.841,0.932,1.369,0.768,0.794,0.935,1.498,0.992,0.681,1.031,0.871,1.128,0.899,0.99,1.209,1.037,1.425,0.783,1.069,1.333,0.991,1.094,0.813,0.936,1.491,1.115,0.856,0.807,1.103,1.625,1.362,0.986,0.757,0.655,0.824,1.773,1.002,0.921,1.353,1.031,0.898,0.845,1.365,0.782,1.002,0.921,0.791,1.205,1.053,0.853,1.184,1.414 +NM_015198,0.793,0.874,0.702,0.735,0.769,1.322,0.724,0.444,1.033,0.704,1.295,0.54,0.476,0.848,1.47,1.654,0.468,0.862,0.832,1.274,0.605,0.993,2.049,0.674,0.789,0.812,0.434,0.756,0.829,1.568,0.892,0.887,2.423,2.029,0.324,1.213,1.007,1.206,1.486,0.81,0.865,1.37,0.826,1.415,0.694,1.507,1.515,0.816,1.077,0.657,1.356,0.693,0.612,2.436 +NM_015200,0.853,0.999,1.527,0.788,1.001,1.072,0.882,0.704,1.118,0.929,0.919,0.813,0.745,0.836,1.039,1.141,0.816,0.982,1.111,1.116,0.689,0.918,1.256,1.006,0.746,0.906,1.251,0.926,0.637,1.04,1.103,1.14,1.933,1.112,0.501,0.68,0.911,1.039,1.213,0.951,1.044,1.132,0.818,1.06,1.131,0.902,0.794,0.771,0.995,0.923,1.144,0.742,0.881,1.31 +NM_015201,0.972,0.843,0.689,0.679,0.631,0.768,0.466,0.501,0.983,1.01,0.755,1.026,0.785,0.529,0.682,1.353,0.927,0.805,1.731,0.701,0.989,0.928,1.281,1.277,0.703,1.037,1.431,0.605,0.439,0.729,0.757,1.384,6.129,0.761,0.243,1.977,0.828,0.802,2.765,1.427,0.905,1.077,0.643,3.004,1.364,0.82,0.924,1.153,1.532,1.168,0.797,1.121,1.476,1.696 +NM_015208,0.989,1.051,1.006,1.118,0.948,1.047,0.962,0.875,1.024,1.005,0.874,1.126,1.072,1.002,0.992,1.061,0.875,0.977,1.023,0.935,0.919,1.071,0.943,0.99,0.949,0.905,1.083,1.102,0.723,0.947,1.134,0.949,1.079,0.836,1.196,0.938,0.878,0.927,0.939,0.938,1.103,1.01,0.868,1.041,0.993,1.048,1.03,0.966,1.044,0.997,1.041,0.989,0.907,0.972 +NM_015213,0.825,1.055,1.146,1.113,0.796,0.863,1.053,0.843,0.972,0.773,0.909,0.839,0.878,1.046,1.302,0.94,0.886,0.805,0.757,0.944,0.977,0.857,1.002,0.889,1.072,0.943,0.96,0.907,0.984,1.112,0.959,2.45,1.298,1.582,0.803,0.784,0.869,0.954,1.338,2.128,1.027,1.375,0.781,1.089,0.955,0.82,0.959,0.841,0.787,0.929,0.926,1.281,1.046,2.126 +NM_015216,1.003,1.078,0.982,0.981,0.984,1.22,0.993,0.87,1.313,0.965,1.218,0.923,1.072,1.055,0.977,0.86,1.184,1.056,0.821,1.02,1.006,0.986,1.079,0.943,0.895,0.9,1.072,1.208,1.19,1.037,1.234,0.947,1.217,1.095,1.201,0.917,0.94,0.964,0.916,1.097,1.008,1.0,0.853,1.031,1.045,1.184,1.003,1.125,1.197,1.094,1.0,0.979,0.966,0.795 +NM_015219,0.995,0.651,1.566,0.749,1.067,0.925,0.398,0.644,1.461,1.032,0.937,0.695,0.725,0.964,1.006,1.18,1.274,0.767,1.488,0.829,0.657,0.959,0.938,1.005,0.409,1.263,1.208,0.952,0.323,1.018,1.129,1.677,1.189,1.289,0.561,0.491,0.79,0.968,1.036,0.836,1.162,0.997,0.614,1.349,1.179,0.694,0.754,1.282,0.677,1.179,0.813,0.719,1.479,1.482 +NM_015221,0.936,1.075,0.864,0.934,0.906,1.076,1.06,1.096,1.077,1.078,0.879,0.926,0.951,1.169,0.92,0.966,0.938,1.075,1.126,1.038,0.92,0.902,1.041,0.989,0.995,0.914,0.766,0.953,1.182,1.185,0.917,0.955,1.131,1.086,1.016,1.115,0.925,1.055,0.879,1.121,1.089,0.921,1.153,0.979,0.918,1.003,1.001,0.985,1.066,1.058,1.072,0.909,1.146,1.179 +NM_015229,0.939,0.638,1.288,0.564,0.995,0.611,0.425,0.291,1.585,1.389,0.712,0.802,0.488,0.812,0.914,1.263,1.015,1.005,1.549,0.57,0.634,1.018,1.487,1.251,0.565,1.246,1.663,0.694,0.43,0.969,1.083,1.026,1.426,0.992,0.104,0.881,1.078,1.122,1.066,0.835,1.337,1.129,0.727,1.22,1.852,0.746,1.098,0.915,1.209,1.162,1.027,0.78,1.175,1.944 +NM_015230,0.906,0.941,1.089,1.03,1.031,1.078,0.822,0.961,1.254,0.999,1.093,1.139,0.918,0.991,0.933,1.025,0.79,1.098,0.996,1.112,1.092,1.049,1.042,1.017,0.955,0.963,1.041,0.964,1.018,0.854,1.218,1.106,0.915,0.997,0.988,0.954,0.946,1.024,0.991,0.948,1.274,1.101,0.941,0.977,1.107,1.119,1.196,0.873,0.87,0.972,1.006,0.844,0.797,0.951 +NM_015234,1.047,1.354,0.827,1.115,0.876,0.994,1.246,0.974,1.02,1.13,0.831,0.835,0.951,1.074,1.23,1.055,1.05,0.926,0.8,0.92,1.024,0.888,0.993,1.039,1.042,0.89,0.846,0.95,1.167,1.137,0.819,1.317,1.063,1.028,1.128,0.996,0.983,0.911,1.024,1.138,0.939,1.112,1.059,1.077,0.942,1.021,0.985,0.896,1.061,0.79,1.096,1.269,1.124,0.9 +NM_015235,0.746,1.219,1.169,0.718,0.82,1.176,0.829,0.714,0.913,0.928,1.112,0.911,0.747,0.737,0.784,1.122,1.003,0.968,0.997,0.832,0.73,0.848,1.101,1.067,0.945,0.839,1.213,0.828,0.607,1.134,0.942,1.163,1.935,1.231,0.526,0.646,1.247,0.852,1.301,0.792,0.941,1.113,0.775,1.532,0.906,0.786,0.813,0.749,1.195,0.82,1.123,0.825,0.881,1.696 +NM_015236,0.965,1.217,0.866,0.975,0.915,1.247,1.145,0.811,0.834,0.941,1.209,0.857,0.966,0.889,1.153,1.103,0.917,0.945,0.976,1.138,0.824,0.911,1.379,0.891,1.079,0.784,0.936,1.005,0.758,1.972,0.833,1.197,1.219,1.557,0.965,0.914,1.214,1.082,1.326,0.897,0.851,1.428,0.895,1.311,0.899,1.433,0.916,0.884,1.042,0.917,1.071,1.027,0.932,0.849 +NM_015238,1.209,0.98,0.863,0.909,1.486,1.155,0.719,0.825,2.328,0.725,0.716,0.915,0.774,0.906,1.17,1.258,0.759,0.882,0.888,0.788,0.497,1.504,1.193,0.93,0.835,1.206,0.677,1.189,0.492,1.124,2.114,2.145,1.101,1.332,2.375,0.45,0.903,1.15,2.14,0.668,1.326,1.054,0.48,1.36,0.994,0.839,1.13,1.867,0.921,1.176,1.114,0.714,0.74,3.207 +NM_015239,0.983,1.267,1.212,0.924,0.971,1.102,0.858,0.809,1.139,0.982,1.091,1.124,0.872,1.01,1.105,0.919,0.804,0.876,1.335,1.009,0.864,0.907,1.13,1.004,0.854,0.836,0.921,0.855,0.955,1.065,1.299,1.262,2.099,1.205,0.777,1.047,0.966,0.888,1.045,1.146,1.095,0.98,0.793,0.996,1.001,0.973,0.999,1.002,0.916,0.816,0.894,0.905,0.964,1.595 +NM_015242,1.92,2.042,1.924,2.0300000000000002,1.972,2.275,1.911,2.104,1.954,1.9409999999999998,1.8479999999999999,1.833,1.935,1.6,1.956,1.901,2.0919999999999996,2.1470000000000002,2.079,1.935,1.9300000000000002,2.3810000000000002,1.8559999999999999,2.037,1.838,2.144,2.424,2.097,1.541,2.0629999999999997,2.035,2.37,1.845,2.096,1.6760000000000002,2.02,1.813,2.2640000000000002,2.073,2.3689999999999998,2.127,2.1790000000000003,1.6099999999999999,1.676,1.896,1.714,1.958,2.034,1.798,2.046,1.941,1.9180000000000001,1.87,2.181 +NM_015245,0.738,0.878,1.713,0.627,0.861,0.736,0.58,0.51,0.915,0.824,0.86,0.652,0.53,0.69,1.039,1.157,1.191,0.742,1.115,1.023,0.708,0.696,1.353,0.805,0.632,0.745,1.227,0.777,0.572,0.961,1.018,1.705,2.531,1.381,0.695,0.645,0.943,0.857,1.187,1.079,1.01,1.2,0.7,1.137,1.032,0.785,0.814,0.57,0.806,1.257,1.083,0.743,1.161,1.986 +NM_015251,1.168,0.885,1.405,0.725,1.187,1.241,0.671,1.223,1.349,1.082,0.901,1.155,1.174,0.947,1.353,1.575,1.14,0.901,0.987,1.106,0.596,1.173,0.999,1.356,0.613,0.757,1.562,1.146,0.623,0.957,1.616,1.275,1.846,1.225,0.795,0.624,0.873,1.538,1.177,0.678,1.231,0.994,0.639,0.644,1.111,0.922,0.955,1.245,0.936,1.067,1.041,0.7,0.758,1.191 +NM_015252,0.768,0.793,3.533,0.523,1.523,0.749,0.541,0.731,1.861,1.165,0.812,1.691,0.991,0.92,1.471,0.856,1.393,0.773,2.502,0.858,0.842,1.12,1.014,1.616,0.497,1.102,2.094,1.575,0.368,0.883,1.721,2.331,3.297,1.2,0.309,0.63,0.59,1.418,0.877,0.973,1.619,1.053,0.473,1.765,1.258,0.595,0.875,0.948,0.529,1.697,0.803,0.887,1.872,1.229 +NM_015254,0.593,0.786,0.88,0.731,0.621,1.455,0.748,0.419,0.665,0.654,1.121,0.389,0.432,0.723,1.036,1.188,0.86,1.049,0.787,1.047,0.495,0.597,1.538,0.574,1.198,0.613,0.908,0.48,0.846,1.415,0.751,0.999,0.951,2.003,0.55,0.703,1.234,0.586,2.292,0.536,0.666,1.475,0.894,1.099,0.785,1.162,0.847,0.663,1.253,0.86,1.473,0.686,0.736,2.592 +NM_015255,0.697,0.954,1.709,0.648,0.976,0.938,0.742,0.554,1.076,0.995,1.05,0.795,0.652,0.821,0.852,1.385,1.039,0.975,1.327,0.979,0.702,1.023,1.095,0.934,0.658,0.8,1.308,0.805,0.685,0.865,1.078,1.002,1.677,0.943,0.69,0.888,1.058,0.973,1.154,1.239,1.074,1.14,0.922,0.857,0.896,1.22,1.093,0.78,1.169,0.929,0.864,0.855,1.086,1.41 +NM_015256,1.145,1.008,1.016,1.007,1.219,0.954,1.087,1.001,0.932,0.904,0.921,0.927,1.034,0.911,0.78,0.926,1.052,1.047,0.993,1.064,1.003,0.944,1.089,0.984,0.95,1.123,1.048,0.984,1.257,1.041,1.139,0.99,0.855,1.084,1.069,1.001,1.106,0.937,0.947,0.897,1.02,0.91,0.866,1.049,0.997,1.119,0.989,0.959,1.02,1.031,0.938,1.023,1.113,1.046 +NM_015259,0.923,0.912,1.101,1.03,1.129,1.011,0.944,1.08,1.145,0.955,1.105,1.036,0.866,1.086,1.135,1.07,0.941,0.932,0.896,0.921,1.067,1.082,1.111,0.992,1.036,1.038,0.936,1.084,1.001,0.952,0.946,0.973,0.935,0.85,1.045,1.065,0.97,1.021,1.052,1.079,0.943,1.084,0.918,1.031,1.064,0.94,0.848,0.953,1.015,0.851,0.977,0.829,0.964,1.127 +NM_015261,0.923,1.128,1.002,1.025,0.853,0.759,0.819,0.729,1.168,1.034,0.828,0.885,0.855,0.892,0.865,1.011,1.002,1.025,0.974,0.839,0.905,1.023,1.177,0.896,0.969,0.995,1.298,0.812,0.668,0.876,0.948,1.053,2.098,0.998,0.694,1.703,0.889,0.906,1.281,1.015,1.167,0.861,1.04,1.257,1.03,0.889,0.807,0.879,1.067,1.095,0.96,1.168,1.105,1.469 +NM_015263,1.032,1.046,1.06,0.908,0.928,1.024,0.927,1.094,0.843,1.046,0.929,1.0,0.943,0.863,1.026,0.96,0.927,0.954,0.986,1.087,1.0,0.926,1.012,0.964,1.014,1.077,1.151,1.003,1.005,1.09,1.109,1.04,1.05,0.917,0.975,0.909,1.076,0.952,0.912,1.019,0.844,1.044,1.15,1.015,1.024,1.025,0.91,1.057,1.119,0.84,0.997,0.78,0.925,0.97 +NM_015265,0.92,1.468,0.895,0.853,0.767,1.372,0.832,0.908,0.945,0.884,1.153,1.024,0.729,0.686,1.245,1.554,0.871,0.812,0.953,1.423,0.832,0.838,2.097,0.828,0.892,0.906,0.765,0.998,0.897,1.16,0.984,1.105,1.766,1.021,0.853,1.089,1.185,0.932,1.124,2.389,0.907,0.999,1.101,1.528,0.873,1.375,1.12,0.879,1.554,0.954,1.169,1.136,0.834,2.876 +NM_015266,1.021,1.059,1.129,0.959,1.026,0.876,0.88,1.012,0.921,0.96,0.965,1.005,0.86,0.918,0.893,0.969,1.083,1.081,0.87,0.906,0.901,0.955,0.97,0.943,1.052,1.027,1.081,0.937,0.662,1.072,0.921,1.451,0.904,1.122,0.863,1.011,0.881,0.956,1.059,1.039,1.054,0.988,0.939,1.137,1.06,0.965,0.939,0.941,1.052,0.99,0.957,0.884,1.0,1.026 +NM_015268,0.94,1.001,1.297,0.852,0.836,1.013,0.853,0.735,0.934,0.851,1.084,0.815,0.703,0.694,1.06,1.176,1.036,0.895,0.969,1.147,0.669,0.839,1.058,0.985,1.021,0.875,1.189,0.982,0.526,1.203,0.831,1.667,1.454,1.347,0.573,0.857,0.88,0.845,1.384,1.026,0.987,1.125,0.877,1.457,1.093,1.115,0.816,0.856,1.038,0.994,1.087,0.915,1.06,1.351 +NM_015270,1.107,0.844,1.045,0.952,0.995,0.94,1.049,1.074,1.002,0.891,0.938,0.978,1.015,1.273,0.844,1.032,0.891,1.192,0.829,0.885,1.014,0.862,1.075,0.903,1.064,0.846,1.02,1.105,0.89,1.043,0.976,1.036,0.917,1.073,1.053,0.889,0.999,0.963,0.88,0.918,1.038,0.931,1.167,0.978,0.921,1.04,0.984,1.085,0.847,1.041,0.857,1.016,1.157,1.121 +NM_015271,0.487,1.404,0.916,0.613,1.058,2.746,0.953,1.61,1.033,0.436,1.271,1.283,0.653,0.738,1.069,2.381,0.5,1.37,0.466,1.628,0.308,1.063,1.642,0.737,0.714,0.518,0.461,0.882,0.674,2.217,1.227,0.856,1.328,1.674,0.999,0.325,1.62,1.35,1.811,0.933,0.845,1.286,0.668,0.543,0.594,1.372,1.157,0.83,1.159,0.321,1.795,0.515,0.258,1.649 +NM_015275,1.013,0.92,1.262,0.884,1.004,1.184,1.041,1.27,1.04,0.929,0.902,0.913,1.032,1.02,0.939,1.411,1.06,1.045,0.88,0.968,0.85,1.205,1.159,1.228,0.861,0.835,1.081,1.02,0.795,1.092,1.112,1.151,1.118,1.066,0.913,0.832,1.023,1.247,0.966,1.159,0.937,0.862,1.119,0.991,1.051,1.015,1.004,1.036,1.187,1.115,1.107,0.954,0.799,1.115 +NM_015277,0.689,1.733,0.701,0.902,0.586,1.244,1.031,0.448,0.689,0.704,1.184,0.61,0.727,0.708,0.786,1.531,0.759,1.061,0.715,1.436,0.647,0.664,1.335,0.641,1.988,0.731,0.745,0.695,1.133,2.182,0.597,1.186,0.785,1.946,0.576,0.703,1.53,0.623,1.479,0.718,0.651,1.752,1.232,0.981,0.748,1.046,0.885,0.549,1.047,0.783,1.074,0.975,0.729,0.995 +NM_015278,2.722,0.699,2.279,1.094,3.467,0.727,0.675,3.834,4.62,1.912,0.698,2.559,3.239,2.435,2.785,1.325,2.963,2.09,4.042,0.653,1.905,4.928,0.765,2.977,0.601,3.413,2.162,2.958,0.612,0.958,4.299,0.857,1.571,0.996,8.868,0.62,0.675,3.369,0.924,0.932,3.231,0.964,0.526,0.78,2.751,0.719,1.885,3.806,0.696,2.776,0.939,0.971,2.536,1.005 +NM_015281,0.914,1.088,1.041,1.095,0.998,1.066,1.154,0.847,1.019,0.928,0.836,1.03,0.827,1.056,0.907,0.912,0.916,0.949,1.022,0.967,0.987,1.05,1.162,1.035,0.923,1.042,1.036,1.087,1.158,1.143,0.967,1.607,0.856,1.22,0.853,0.962,0.998,0.98,1.177,0.983,1.04,1.195,0.845,0.872,0.976,0.958,1.074,0.927,0.996,0.967,0.967,0.863,1.129,1.071 +NM_015282,0.955,0.835,1.499,0.673,1.007,0.897,0.738,0.635,1.123,0.988,0.783,0.983,0.673,0.913,0.971,0.979,0.872,1.063,1.138,0.907,0.677,1.219,1.392,1.022,0.752,0.896,1.324,0.985,0.549,1.21,1.009,1.746,1.924,1.085,0.682,0.66,0.985,1.329,1.254,1.239,1.113,1.206,0.617,1.252,1.114,0.839,0.986,1.113,0.786,1.11,1.05,1.189,0.99,1.299 +NM_015285,0.997,0.847,0.864,0.997,1.001,1.007,0.969,1.078,0.809,1.024,1.184,1.085,1.051,0.965,0.922,0.982,0.998,1.11,1.048,0.98,1.0,1.011,0.941,0.925,1.126,0.993,0.972,1.016,1.136,1.074,0.982,1.01,1.044,0.97,0.983,1.017,0.924,0.917,0.96,1.002,1.017,0.836,0.907,1.107,1.011,1.02,1.049,0.956,1.112,1.006,0.94,1.037,1.07,0.934 +NM_015286,1.101,1.046,0.874,0.928,0.838,0.869,1.218,1.049,0.985,0.665,2.743,0.756,0.739,0.957,1.146,1.756,0.658,0.766,0.76,0.926,2.336,0.834,2.251,0.737,1.022,0.821,0.785,3.955,0.742,2.014,0.962,1.224,1.543,3.824,0.575,0.731,0.858,2.351,1.219,0.675,9.759,6.106,0.979,0.935,0.867,0.779,0.773,1.005,0.758,0.881,1.655,1.104,1.045,0.699 +NM_015288,1.038,0.845,1.051,1.095,0.917,0.93,1.225,1.074,0.974,0.988,0.895,0.986,1.035,1.176,0.866,1.043,0.902,1.059,1.066,0.949,0.926,0.79,0.917,0.883,1.023,1.023,0.901,0.971,0.92,0.941,1.064,0.956,0.936,1.054,0.956,0.907,0.939,1.016,1.033,0.853,1.06,1.101,0.863,1.082,0.951,1.218,1.143,1.052,1.008,0.954,1.007,0.909,0.936,0.912 +NM_015289,0.786,1.052,1.462,0.859,0.79,1.247,0.8,0.539,1.081,0.946,1.007,0.687,0.584,0.827,1.12,1.075,0.998,0.886,0.931,1.195,0.635,0.804,1.491,0.906,0.845,1.002,1.153,0.776,0.558,1.536,1.051,1.818,1.203,1.595,0.594,0.843,1.016,0.918,1.299,0.998,0.851,1.286,0.751,1.105,0.963,0.899,0.949,0.729,0.753,0.821,1.095,0.89,0.867,1.873 +NM_015292,0.535,1.304,1.143,0.565,0.785,1.119,0.54,0.454,0.869,0.849,0.835,0.777,0.524,0.501,0.58,1.24,0.622,0.892,1.233,0.881,0.792,0.842,1.513,0.816,0.562,0.882,1.478,0.571,0.462,1.252,0.738,1.912,2.518,1.583,0.215,1.34,1.211,0.978,2.354,2.001,0.814,1.517,0.559,2.576,0.929,0.946,0.976,0.764,0.865,0.814,1.089,1.137,1.116,2.097 +NM_015293,0.911,1.035,1.017,0.941,1.198,0.948,1.04,1.121,1.333,1.058,0.957,0.988,0.973,1.2,0.74,0.966,0.861,1.083,0.943,1.032,0.917,0.857,1.001,0.899,1.03,1.064,1.04,0.994,1.735,1.08,1.05,1.01,1.188,1.178,0.901,1.029,1.113,0.957,1.05,0.957,1.093,1.024,1.301,0.896,0.998,0.832,1.112,1.036,1.082,1.01,0.97,1.016,1.065,0.787 +NM_015294,0.708,1.335,1.002,0.875,0.913,1.164,0.816,0.671,1.181,0.831,1.053,0.945,0.815,0.845,0.917,1.511,0.935,0.912,1.173,1.142,0.698,1.041,1.312,1.081,0.709,0.725,1.086,0.981,0.802,0.984,0.954,1.662,2.119,1.288,0.509,1.021,0.975,0.876,1.474,0.7,1.009,0.921,0.802,1.518,0.881,1.153,0.966,0.859,0.895,0.813,0.951,0.887,0.85,1.662 +NM_015296,1.647,0.787,1.668,1.004,1.966,0.758,0.577,1.031,2.061,1.56,0.862,1.023,0.923,1.329,1.457,1.056,1.457,1.108,1.824,0.838,1.163,0.848,0.711,1.134,0.755,1.318,1.55,1.581,0.557,0.805,1.876,0.897,1.014,0.853,1.832,0.87,0.809,1.177,0.816,0.821,1.654,0.838,0.931,1.136,1.578,0.832,1.094,1.309,0.936,1.398,0.996,0.915,1.38,0.983 +NM_015305,0.899,1.175,0.97,0.981,0.787,1.004,0.803,0.881,0.947,0.809,0.886,0.815,0.953,0.776,0.846,0.996,1.023,0.918,0.991,0.936,0.998,1.071,1.099,0.886,1.07,0.803,1.021,0.891,0.796,1.226,0.72,1.043,1.146,1.413,0.759,1.058,1.017,0.855,1.472,1.363,0.789,1.054,0.894,1.581,0.972,0.921,0.965,0.777,1.15,0.946,1.017,0.945,0.872,1.188 +NM_015308,0.903,0.864,1.437,1.082,0.877,0.975,0.639,0.515,1.591,0.986,1.02,0.753,0.609,1.155,1.421,0.977,1.237,0.731,0.997,1.106,0.755,0.728,1.078,1.156,0.746,0.797,1.662,0.858,0.485,1.185,1.281,1.621,2.109,1.203,0.838,1.109,0.792,0.727,1.114,1.53,1.069,0.934,0.939,0.999,0.958,0.937,0.928,0.637,0.984,0.805,0.898,0.873,1.208,2.421 +NM_015310,0.946,1.071,0.925,0.839,0.994,1.315,0.829,0.748,1.177,0.693,1.036,0.677,0.755,0.823,1.107,0.937,0.927,0.982,0.994,1.141,0.875,0.93,0.772,0.93,1.031,1.102,0.844,1.079,0.685,1.477,1.095,1.343,1.086,1.804,0.831,0.734,0.991,0.971,1.335,0.749,1.108,1.032,0.571,0.773,0.806,1.038,0.762,0.855,0.717,0.777,1.082,0.685,0.82,1.09 +NM_015313,0.859,1.202,1.03,0.876,1.142,1.115,0.806,0.932,1.011,0.962,1.078,1.08,0.943,1.015,0.897,1.265,0.913,0.889,0.965,1.248,0.906,0.968,1.175,0.963,0.966,0.849,1.036,1.062,0.98,1.335,0.942,1.236,0.898,1.34,0.677,0.919,1.212,1.052,1.087,0.963,0.986,1.152,1.167,0.821,0.819,0.903,0.758,0.912,0.824,0.746,1.047,0.96,0.953,0.941 +NM_015315,1.364,0.695,1.121,0.855,0.628,0.916,0.716,0.569,0.755,0.738,1.026,0.573,0.829,0.714,1.029,1.491,0.807,0.837,1.596,0.669,1.232,0.962,1.17,0.899,1.229,1.374,1.177,0.584,0.573,0.99,0.846,1.312,5.211,1.438,0.348,0.608,0.86,0.838,2.841,1.13,0.684,1.066,0.437,1.563,1.337,0.694,0.594,1.03,0.667,1.627,0.949,1.23,1.509,1.745 +NM_015316,0.844,0.904,1.611,0.758,1.302,1.1,0.599,0.735,1.453,1.164,0.808,1.018,0.725,0.806,0.967,1.084,1.065,1.093,0.958,1.719,0.595,1.149,1.138,1.028,0.745,1.165,1.188,1.166,0.694,1.178,1.057,1.751,0.711,1.074,0.926,0.592,0.801,1.373,1.008,0.748,1.257,1.231,0.636,0.952,1.001,0.792,1.083,1.103,0.934,0.969,1.171,0.67,0.763,0.617 +NM_015317,0.714,0.986,1.314,0.813,0.898,1.256,0.599,0.552,1.231,0.729,1.071,0.703,0.668,0.962,1.055,1.129,0.772,0.777,0.991,1.092,0.603,0.678,1.229,0.958,0.928,0.741,1.207,0.963,0.471,1.456,0.958,1.112,1.757,1.464,0.467,0.668,1.118,0.944,0.859,1.05,1.096,1.21,0.968,0.97,0.871,0.921,0.766,0.551,0.815,0.77,1.023,0.694,0.827,1.765 +NM_015318,1.07,0.749,1.215,0.718,1.065,0.81,0.734,0.615,1.353,1.076,0.839,0.474,0.717,0.843,1.257,1.254,1.48,0.804,1.252,0.685,0.687,0.692,1.232,0.912,0.755,1.178,1.163,0.919,0.412,0.898,1.415,0.916,1.031,1.076,1.76,0.834,1.069,0.95,1.256,1.556,1.452,0.938,0.965,1.872,1.394,0.845,1.022,1.337,0.873,1.25,0.986,0.72,1.072,1.193 +NM_015319,0.909,1.029,0.903,0.983,1.009,1.003,0.961,1.03,0.947,0.814,1.067,1.063,1.036,0.888,0.844,1.061,0.994,1.178,0.939,0.994,0.93,0.999,1.236,0.975,1.009,0.968,0.994,1.02,1.539,1.054,1.153,1.187,0.93,0.984,1.006,1.021,0.984,1.044,0.989,1.0,1.145,0.856,0.921,1.187,1.034,1.063,0.934,0.939,0.98,1.041,0.901,0.998,1.167,0.925 +NM_015320,1.554,0.531,2.947,0.943,3.099,0.335,0.503,1.318,3.717,2.772,0.458,2.208,1.096,1.945,1.521,0.798,1.181,1.523,1.649,0.484,0.788,2.985,0.438,1.501,0.366,1.893,2.411,2.245,0.534,0.406,2.472,0.993,1.096,0.494,1.069,1.228,0.374,2.306,0.638,0.637,2.067,0.531,0.318,0.363,2.505,0.903,1.252,3.062,0.373,1.499,0.6,1.03,1.398,0.838 +NM_015321,1.017,1.0,1.081,0.897,1.009,0.983,1.043,1.084,1.082,0.902,0.862,0.944,0.975,0.945,1.582,0.843,0.98,0.93,0.795,1.005,0.955,1.076,0.965,1.058,1.084,1.114,0.974,0.774,1.034,0.886,1.095,1.077,1.068,1.0,0.926,0.985,0.969,1.205,1.13,1.023,1.027,0.994,1.278,1.028,1.131,0.929,1.075,1.02,0.91,0.91,1.082,0.888,0.885,1.099 +NM_015322,1.011,1.033,1.011,0.827,0.989,0.837,0.878,1.009,1.315,1.117,0.972,1.042,0.857,1.035,1.09,1.072,0.931,0.936,1.243,0.914,1.016,1.004,1.154,1.044,0.875,1.019,0.926,1.084,1.054,0.91,1.178,1.072,1.198,1.074,1.269,1.113,1.016,1.101,1.081,0.898,1.27,1.101,0.905,0.83,1.067,1.107,1.177,1.058,0.925,0.944,0.93,1.059,1.569,0.974 +NM_015323,0.826,1.121,1.096,0.864,1.107,0.832,0.736,0.71,1.319,1.088,1.002,0.788,0.731,0.997,1.244,1.186,0.835,0.89,1.094,1.043,0.756,0.716,1.074,0.902,0.8,0.825,1.119,1.076,0.609,0.986,1.03,0.892,1.074,1.059,0.65,0.778,1.024,0.84,0.984,0.788,1.118,1.052,0.892,0.946,1.049,1.307,1.02,0.73,1.153,0.769,1.073,0.907,1.029,1.116 +NM_015324,0.582,1.215,1.037,0.775,0.888,1.074,0.988,0.571,1.114,1.285,0.977,1.076,0.684,0.602,0.863,1.231,0.932,0.872,0.993,1.387,0.537,0.629,1.412,1.12,0.764,0.729,1.234,0.735,0.507,1.44,0.841,1.362,1.472,1.104,0.299,2.062,0.942,0.72,1.189,1.287,1.089,1.154,0.881,0.873,1.185,0.99,1.033,0.582,1.271,0.755,1.261,1.22,0.858,1.516 +NM_015327,0.69,1.085,0.712,0.842,0.686,1.596,0.712,0.511,0.845,0.691,1.011,0.744,0.601,0.566,0.692,0.957,0.824,0.868,0.789,0.998,0.798,1.088,1.273,1.078,1.101,0.921,0.852,0.637,1.002,1.343,0.691,1.831,1.656,1.307,0.453,1.347,1.015,0.837,1.965,1.672,0.792,1.365,0.752,2.194,0.757,0.858,0.944,1.223,0.723,0.633,0.966,0.822,0.662,2.61 +NM_015328,0.566,1.22,0.761,1.281,0.664,2.557,0.925,0.692,0.654,0.8,3.184,0.725,0.526,0.657,1.959,3.733,0.68,0.91,0.758,3.156,0.64,0.57,2.67,0.61,1.118,0.694,0.702,0.674,0.704,1.913,0.655,1.045,1.006,2.017,0.529,0.954,2.524,0.577,2.164,0.56,0.578,2.58,2.174,1.173,0.611,3.186,0.994,0.527,1.534,0.573,2.549,0.759,0.681,1.327 +NM_015331,0.508,1.344,1.092,0.58,0.741,1.03,0.67,0.304,0.836,0.925,1.13,0.479,0.33,0.549,0.817,1.454,0.796,0.815,0.818,1.241,0.459,0.496,1.217,0.707,0.61,0.58,1.007,0.626,0.519,1.573,0.681,1.833,1.042,1.287,0.294,1.235,1.393,0.61,1.387,1.154,0.821,1.429,0.998,1.227,0.78,1.459,1.099,0.474,0.874,0.526,1.145,0.822,0.81,1.847 +NM_015332,0.738,1.02,0.968,0.735,1.133,0.982,0.53,0.503,1.404,0.899,0.903,0.739,0.6,0.685,0.789,1.208,0.929,0.99,1.36,1.061,0.532,0.867,1.536,0.988,0.581,1.531,1.049,1.006,0.479,1.398,1.06,1.644,1.072,1.543,0.453,0.999,0.777,0.808,1.126,0.913,0.997,1.201,0.517,1.815,0.918,0.844,1.005,0.855,0.514,0.774,0.868,0.805,1.013,1.299 +NM_015335,0.904,0.955,1.369,0.881,1.16,0.971,0.985,0.884,1.034,1.093,1.021,1.051,0.887,0.901,1.02,0.903,0.945,0.913,0.989,1.196,0.767,0.762,1.05,1.117,0.891,0.781,1.228,0.991,1.0,0.954,1.019,1.23,1.141,1.103,0.903,0.659,1.0,0.986,1.026,1.11,1.09,1.072,0.85,0.663,1.103,1.198,0.959,1.045,1.033,1.055,1.089,1.037,1.033,1.31 +NM_015336,0.979,1.003,1.188,0.865,1.043,0.994,0.824,0.818,1.042,0.958,1.064,1.039,0.922,0.896,1.059,1.071,1.01,0.962,0.983,1.105,0.983,0.892,1.089,1.018,0.913,0.991,1.225,1.035,1.234,0.95,1.055,1.568,1.133,1.148,0.668,1.009,1.062,0.878,0.973,1.082,1.042,1.082,0.879,0.901,0.916,1.0,0.888,0.944,0.928,1.104,0.945,1.148,0.995,1.702 +NM_015338,0.836,1.063,1.086,0.737,0.823,1.014,0.692,0.555,1.009,0.842,0.793,0.791,0.685,0.783,0.864,0.905,0.762,0.878,1.021,1.119,0.804,0.991,1.156,0.984,0.71,0.828,1.181,0.778,0.604,1.447,0.816,2.196,1.655,1.395,0.487,0.932,0.956,0.931,1.104,1.887,0.872,1.218,0.608,1.149,0.958,0.731,0.902,0.812,0.882,0.868,1.0,1.113,0.866,2.294 +NM_015339,1.196,0.967,1.004,0.817,0.886,0.911,1.134,1.002,1.161,0.97,0.897,1.036,1.03,0.955,0.968,0.887,0.937,0.81,0.853,0.95,0.931,0.978,0.988,0.957,1.088,1.007,0.926,1.037,1.069,1.048,1.004,1.234,1.035,0.841,1.132,0.965,0.894,1.063,1.061,1.072,1.092,0.965,0.976,1.132,0.984,0.947,1.012,0.93,0.973,1.011,0.886,0.988,0.875,1.079 +NM_015340,0.799,1.0,1.1,0.908,0.841,1.157,0.918,0.646,0.973,0.92,1.047,0.832,0.648,0.758,1.014,1.299,0.984,0.837,1.147,1.029,0.788,0.832,1.454,0.859,0.814,0.875,1.011,0.933,0.711,1.237,1.002,1.105,1.206,1.198,0.564,0.84,0.935,0.893,1.037,0.92,0.978,1.219,0.886,1.25,0.979,1.124,0.979,0.686,1.173,0.851,1.121,0.946,1.06,1.829 +NM_015341,0.877,0.894,0.942,0.884,0.848,0.895,0.8,0.618,1.053,1.051,0.937,0.905,0.851,0.857,0.859,1.092,0.934,0.909,1.014,0.713,0.931,0.848,1.699,1.033,0.792,0.723,1.995,0.788,0.52,0.977,0.954,1.006,2.672,0.916,0.626,1.679,1.032,0.689,1.935,1.456,0.972,0.862,0.907,2.156,1.002,1.006,1.036,0.754,1.183,0.99,1.168,1.082,1.112,2.236 +NM_015342,0.743,1.049,1.308,0.912,0.98,1.091,0.668,0.701,1.281,0.927,1.006,0.976,0.723,0.82,1.062,1.247,1.047,0.97,1.044,1.026,0.749,0.774,1.16,1.266,0.763,0.859,1.244,0.978,0.53,1.024,0.976,1.402,1.516,1.212,0.752,0.834,0.936,0.963,1.054,0.741,1.072,1.129,0.993,0.92,1.024,0.957,1.047,0.731,1.022,0.912,1.005,0.913,0.902,1.508 +NM_015343,0.99,0.727,0.8,1.0,0.817,1.253,0.601,0.628,0.768,0.787,0.966,0.721,0.873,0.642,0.777,1.158,1.0,0.994,1.136,0.672,0.804,0.999,1.019,1.103,1.081,1.268,1.083,0.604,0.826,1.042,0.758,1.038,1.073,1.191,0.55,0.637,0.88,1.307,1.308,0.983,0.84,1.257,0.664,1.506,0.958,0.772,0.879,1.133,0.773,1.004,0.817,0.693,0.993,1.178 +NM_015344,0.446,1.027,0.937,0.681,0.753,1.939,1.147,0.62,0.871,0.686,1.226,0.733,0.653,0.617,0.975,2.0,0.661,1.039,0.833,1.437,0.602,0.7,1.214,0.803,0.714,0.611,0.991,0.733,0.718,1.413,0.798,1.44,1.728,2.051,0.46,0.608,1.144,0.768,1.808,0.898,0.852,1.591,0.748,0.744,0.766,1.438,0.849,0.628,1.413,0.833,1.248,0.832,0.812,2.228 +NM_015345,0.667,1.156,0.746,0.826,0.666,1.097,0.945,0.86,0.659,0.667,1.994,0.721,0.836,0.611,0.899,1.172,0.711,0.757,0.687,0.93,1.036,0.799,2.618,0.701,1.064,0.622,0.673,1.949,0.863,2.052,0.765,2.819,1.063,2.755,0.678,0.97,1.111,1.294,1.842,1.059,2.751,3.728,0.868,0.781,0.806,0.985,0.854,0.71,0.867,0.664,2.318,1.257,0.866,1.076 +NM_015346,0.916,1.04,1.188,0.874,0.951,1.069,0.836,0.719,1.133,0.945,0.974,0.816,0.655,0.776,1.167,1.027,1.049,0.869,1.125,1.145,0.753,0.827,1.05,0.886,0.853,0.869,1.236,0.936,0.788,1.272,0.906,1.475,1.165,1.156,0.695,0.762,1.106,0.895,1.061,0.996,1.089,0.906,0.858,1.208,0.812,0.96,0.792,0.78,0.917,0.872,1.077,0.93,0.954,1.732 +NM_015350,0.979,0.944,1.039,0.883,0.931,1.004,1.076,1.087,1.058,1.097,1.055,0.935,0.952,1.059,0.898,0.985,1.082,1.124,0.983,0.973,0.924,0.994,0.958,0.979,1.034,1.059,1.212,0.928,1.157,1.043,1.017,1.118,1.315,0.92,0.891,0.918,1.106,0.862,0.971,0.945,0.95,1.184,0.807,0.934,1.114,0.927,0.975,1.021,0.983,1.063,1.145,0.966,0.904,1.227 +NM_015355,0.577,1.041,1.373,0.636,0.995,1.088,0.793,0.907,1.173,0.873,0.969,0.891,0.785,0.561,1.015,1.276,0.801,0.977,1.027,1.198,0.443,1.023,1.335,1.017,0.563,0.607,1.774,0.847,0.456,0.949,1.042,1.384,2.696,1.117,0.858,0.785,0.966,1.106,1.352,0.955,0.995,1.07,0.56,1.252,1.11,0.862,1.076,1.057,1.116,0.694,0.976,0.943,0.565,1.897 +NM_015356,0.998,1.084,0.91,1.161,1.253,1.065,1.027,0.963,0.87,1.005,0.872,1.029,0.972,1.017,1.045,1.175,1.105,1.0,0.923,1.123,1.16,0.953,1.0,0.88,0.914,1.017,1.039,0.975,1.649,0.983,1.058,0.988,1.024,1.045,1.125,1.03,1.09,0.953,0.992,0.967,1.043,0.894,1.01,0.988,0.897,0.922,1.168,1.02,0.853,0.9,1.034,0.911,0.877,1.163 +NM_015358,0.976,0.939,1.108,0.915,0.974,0.912,0.937,0.929,1.026,1.055,1.006,0.933,0.915,1.017,0.924,1.117,0.958,0.794,1.053,1.063,0.95,0.881,0.913,0.963,0.888,1.002,1.086,0.978,0.947,1.12,1.051,1.01,1.417,1.013,0.973,0.916,0.97,0.929,1.083,0.886,1.138,0.941,1.056,0.999,1.081,0.996,0.916,0.922,0.953,0.922,0.868,0.951,0.982,1.238 +NM_015360,0.582,0.916,1.276,0.651,0.942,1.282,0.701,0.516,1.242,1.055,1.447,0.767,0.564,0.655,1.044,2.17,0.889,0.934,1.232,1.699,0.553,1.07,1.463,1.18,0.567,0.692,1.065,0.814,0.689,1.109,1.074,0.857,1.94,1.194,0.29,0.553,1.681,1.0,1.726,0.777,1.048,1.467,0.877,0.75,1.121,1.467,0.857,0.833,1.341,0.84,1.574,0.682,0.659,1.294 +NM_015361,0.778,1.037,1.073,0.797,0.862,0.969,0.654,0.599,1.01,1.077,1.081,0.8,0.624,0.76,0.827,1.11,0.788,0.81,0.882,0.828,0.615,0.672,1.686,0.915,0.725,0.731,1.465,0.788,0.378,1.274,0.87,1.269,3.181,1.001,0.441,0.981,1.104,1.027,1.531,0.977,1.035,1.036,0.792,1.597,0.911,1.095,0.807,0.616,1.1,0.889,1.069,0.892,0.821,1.428 +NM_015362,0.854,0.889,1.143,0.902,0.893,1.065,0.858,0.757,1.019,1.069,1.012,1.005,0.853,0.869,1.093,1.139,0.934,0.951,1.339,0.886,0.908,0.904,0.948,1.023,0.917,0.894,1.098,0.83,0.836,1.014,0.974,1.12,1.0,1.289,0.747,1.023,0.889,1.102,0.871,0.914,1.05,1.205,0.767,1.114,1.024,1.124,0.916,0.81,0.956,0.929,1.022,0.79,0.904,1.767 +NM_015363,0.928,0.964,0.896,1.043,0.939,1.032,0.951,0.948,1.007,1.088,1.028,1.005,1.007,1.003,0.929,1.074,0.932,0.942,0.869,0.939,0.971,1.112,0.925,1.049,0.948,0.944,1.006,1.077,0.951,0.885,1.109,0.948,1.196,0.957,0.976,0.995,1.028,1.106,0.915,1.043,1.111,0.926,1.003,1.033,1.081,1.149,0.878,0.939,0.965,0.932,1.095,0.872,1.28,0.942 +NM_015364,0.591,1.151,2.066,0.709,0.49,1.2,1.736,0.529,0.514,0.628,1.152,0.512,0.727,0.454,0.637,1.514,0.962,0.648,0.804,0.636,0.553,0.48,1.021,0.63,0.524,0.505,1.05,0.69,0.402,1.154,0.454,2.323,0.813,1.453,0.387,1.35,1.458,1.249,1.142,3.274,1.084,1.977,0.589,0.608,0.839,0.676,1.133,0.65,0.546,0.63,1.266,2.351,1.051,2.358 +NM_015365,1.059,1.186,1.005,1.049,1.001,0.78,0.733,0.929,0.972,0.992,0.992,1.041,0.937,0.929,0.846,0.898,1.167,1.01,0.933,0.987,0.911,0.966,0.828,0.934,0.97,1.105,1.049,1.034,0.857,0.996,0.937,1.059,0.927,1.004,1.052,0.823,0.939,1.09,1.181,0.955,0.984,0.941,0.79,1.208,1.271,0.983,0.869,1.007,1.076,1.054,0.94,1.017,0.96,1.105 +NM_015366,1.032,1.019,1.074,0.918,0.888,1.037,1.177,1.164,1.028,0.954,0.991,0.913,1.022,1.067,0.911,1.01,0.914,0.847,0.934,1.151,1.125,1.012,0.971,0.952,1.028,1.01,0.956,1.002,1.322,0.952,1.024,1.114,0.895,0.927,0.962,0.944,1.088,0.977,1.04,0.97,1.026,0.982,1.212,0.959,0.978,1.053,0.919,0.89,0.984,0.831,1.059,0.882,0.955,0.919 +NM_015367,0.841,1.198,1.639,0.761,1.066,0.99,0.762,0.558,1.197,1.018,1.15,0.957,0.76,0.845,1.162,0.974,0.998,0.993,1.339,0.921,0.656,0.803,0.968,0.969,0.672,0.875,1.109,1.133,0.449,1.206,0.998,0.826,0.992,1.293,0.372,0.907,1.052,1.002,1.292,0.808,1.284,1.177,0.706,0.962,1.081,1.11,1.153,0.807,0.869,0.763,1.18,0.873,1.151,1.839 +NM_015368,0.769,1.153,0.916,0.927,0.894,1.121,0.815,0.751,0.79,1.006,0.873,0.884,0.772,0.739,1.083,1.102,0.909,0.965,0.752,0.987,0.94,0.791,1.071,0.945,0.826,0.809,0.961,0.869,0.715,0.966,0.783,1.408,1.237,1.135,0.773,1.254,1.008,0.927,1.364,1.435,0.895,0.908,1.06,1.07,0.981,0.968,1.017,0.687,1.125,0.999,0.987,1.17,1.197,1.175 +NM_015369,1.045,0.991,1.129,0.957,0.996,0.985,0.978,1.081,1.004,1.046,0.989,0.981,0.99,0.887,1.177,0.996,0.984,0.987,1.13,1.095,1.034,0.988,1.088,1.079,0.999,1.006,1.2,1.007,1.334,1.056,1.038,1.064,0.935,1.095,0.987,0.939,1.043,1.007,0.903,0.969,0.933,0.937,0.943,0.858,0.944,0.948,1.061,0.986,1.228,0.965,0.925,0.958,0.958,0.992 +NM_015370,1.197,0.995,0.939,0.935,0.889,1.009,1.183,1.272,1.043,1.008,1.151,1.037,1.019,1.128,1.051,1.095,0.912,0.937,1.054,0.768,1.016,1.021,0.968,0.996,0.934,1.042,1.043,1.215,1.118,1.062,1.078,0.925,1.107,0.909,1.016,0.958,1.07,1.099,0.97,0.873,0.861,1.027,0.988,0.961,0.996,0.998,0.908,0.902,1.056,0.874,1.132,0.989,0.996,1.045 +NM_015372,1.077,0.959,0.932,1.012,1.06,1.023,1.04,0.934,1.077,1.065,1.02,0.993,0.986,1.181,1.11,0.912,1.11,1.057,0.956,0.904,0.85,0.914,0.937,1.035,1.004,1.005,1.061,0.975,0.967,1.04,0.889,1.061,0.994,0.971,1.079,0.947,0.917,1.207,1.094,1.046,0.924,1.028,1.028,0.997,0.971,1.007,1.16,0.955,1.1,1.022,0.883,1.051,0.894,1.105 +NM_015373,0.916,1.323,1.042,0.992,0.957,1.188,0.704,0.537,0.921,0.933,1.269,0.988,1.04,0.645,0.924,1.378,1.041,1.156,1.241,1.139,0.715,0.9,1.073,0.947,0.9,1.03,1.205,0.912,0.497,1.178,0.765,1.322,1.185,1.629,0.336,0.577,0.951,0.965,1.303,0.715,1.028,1.146,0.61,0.908,1.034,0.975,0.967,0.963,0.801,0.972,0.933,0.76,0.929,1.08 +NM_015374,1.071,0.911,1.062,1.002,1.119,0.918,0.847,0.97,0.917,1.129,0.89,0.992,0.97,0.895,0.745,0.949,1.064,0.836,0.936,0.988,0.903,1.011,1.011,1.004,0.954,1.167,1.09,1.026,1.303,1.157,1.124,1.02,1.073,0.992,0.988,0.903,0.999,1.17,0.995,1.009,1.007,0.938,1.003,0.939,1.036,0.961,0.993,0.994,0.977,1.039,1.13,1.066,1.101,0.919 +NM_015375,1.465,0.793,1.709,0.896,1.476,0.857,0.823,1.439,1.718,1.279,1.053,1.154,1.057,1.286,1.385,1.128,1.331,1.463,1.962,0.941,1.189,1.653,0.795,1.552,0.842,1.304,1.768,1.209,0.893,0.954,2.088,0.929,1.437,0.904,1.855,0.833,0.821,1.259,0.852,0.684,1.416,1.061,0.808,0.891,1.588,0.848,1.149,1.526,0.946,1.162,0.949,0.999,1.418,0.994 +NM_015378,0.962,0.871,1.684,0.962,1.131,0.849,0.651,0.762,1.074,1.096,0.768,0.825,0.832,1.002,1.009,0.988,1.046,0.955,1.524,0.923,0.903,1.247,1.001,1.114,0.82,1.265,1.363,1.167,0.764,0.993,1.163,0.84,0.945,1.031,0.842,0.999,0.884,1.43,1.048,0.971,1.227,1.045,0.729,1.11,1.208,1.052,1.112,1.268,0.894,1.083,0.884,1.012,1.132,1.06 +NM_015379,0.356,1.319,0.804,0.609,0.657,2.013,0.764,0.429,0.815,0.533,1.009,0.633,0.465,0.407,0.864,1.848,0.583,1.134,0.717,1.356,0.319,0.464,2.082,0.625,0.786,0.581,0.745,0.728,0.784,2.464,0.709,2.078,0.964,2.013,0.792,1.0,1.543,0.619,1.384,1.56,0.693,1.564,0.705,1.807,0.544,1.211,1.202,0.521,0.865,0.346,1.056,1.427,0.506,1.423 +NM_015380,0.52,1.33,1.205,0.573,0.886,0.958,0.58,0.591,0.842,1.06,0.824,0.904,0.715,0.558,0.916,2.424,0.894,0.951,1.792,0.928,0.487,0.898,1.196,1.098,0.746,0.897,1.353,0.67,0.486,1.073,0.764,1.016,1.7,1.228,0.176,0.868,0.817,1.037,1.657,0.723,1.104,1.304,0.679,0.691,1.112,0.881,0.887,0.746,1.34,0.854,0.92,0.86,1.067,2.252 +NM_015381,0.896,1.246,0.879,1.038,0.956,0.956,1.193,0.777,0.807,0.969,1.018,0.78,1.094,0.824,0.883,0.85,0.905,1.041,0.92,1.122,0.991,0.79,1.058,0.927,1.072,0.989,0.786,0.99,1.219,1.147,0.874,9.478,1.271,1.904,0.834,0.944,0.891,0.952,1.07,1.293,1.051,1.296,0.968,0.908,0.861,0.909,0.984,0.869,1.022,1.027,1.05,0.944,0.867,1.207 +NM_015382,0.813,1.053,1.972,0.616,1.65,0.931,0.618,0.868,1.796,1.382,0.763,1.719,0.698,0.788,1.014,1.024,1.249,1.381,1.477,1.095,0.595,1.972,1.078,1.462,0.46,0.976,1.817,1.334,0.517,1.032,1.681,0.95,1.105,1.161,1.116,0.628,0.797,1.927,1.087,0.851,1.526,1.06,0.597,0.842,1.413,0.832,1.171,1.506,0.932,1.313,0.968,0.763,0.823,1.253 +NM_015384,1.924,1.847,2.3339999999999996,1.8820000000000001,2.232,1.861,1.9979999999999998,1.778,2.147,2.073,2.011,1.8679999999999999,1.793,2.055,2.089,2.004,1.998,2.0919999999999996,1.892,2.015,1.795,1.855,2.1959999999999997,1.8849999999999998,1.8940000000000001,1.745,2.275,2.136,1.904,1.9849999999999999,1.877,2.024,2.458,1.988,1.9260000000000002,1.931,2.078,1.65,2.211,2.08,2.131,1.77,1.845,1.956,2.028,1.867,2.2439999999999998,1.821,2.097,2.009,1.899,1.8969999999999998,1.9529999999999998,2.302 +NM_015385,0.705,2.054,0.905,0.865,0.78,1.108,0.964,0.678,0.844,0.694,3.063,0.723,0.648,0.789,0.863,1.634,0.802,0.982,0.768,1.068,1.136,0.729,1.921,0.831,0.975,0.72,0.894,2.273,0.859,2.036,0.745,1.914,1.494,3.61,0.738,0.819,1.068,1.537,1.205,1.144,3.474,4.29,0.869,0.756,0.77,0.846,0.816,0.807,0.89,0.716,1.516,1.096,1.026,1.181 +NM_015386,0.784,0.761,1.511,0.893,1.095,0.691,0.683,0.58,1.184,1.316,0.632,0.824,0.578,0.904,0.977,1.285,1.123,0.999,1.657,0.812,0.713,1.102,1.091,1.321,0.61,1.226,1.361,1.001,0.462,1.034,1.116,1.104,2.113,1.037,0.602,0.588,0.888,0.977,1.54,0.626,1.098,0.896,0.628,1.362,1.112,0.865,0.868,1.173,0.852,1.215,1.036,0.547,1.386,1.414 +NM_015387,1.049,1.071,1.288,0.917,1.049,1.06,0.731,0.997,1.664,1.003,1.322,0.906,1.047,0.934,1.078,1.797,0.804,1.141,1.39,0.907,0.538,1.004,1.137,1.161,0.643,1.069,1.102,1.18,0.588,0.89,1.196,0.886,1.35,1.021,0.41,0.775,1.344,0.828,1.219,0.983,1.388,0.995,0.814,0.772,1.286,0.953,0.869,0.971,1.161,0.93,0.955,0.823,1.04,2.274 +NM_015391,1.111,1.059,0.897,0.896,0.986,1.061,0.867,1.043,0.827,0.968,1.127,1.03,0.873,1.057,1.294,0.918,1.045,0.908,0.865,1.087,1.072,0.981,0.944,1.001,0.994,1.14,1.124,1.264,0.657,0.953,1.16,0.961,1.105,0.959,0.954,0.931,0.906,1.104,0.85,0.992,1.012,1.048,1.079,0.908,1.174,0.981,1.013,0.912,1.045,1.05,0.969,0.918,1.114,0.92 +NM_015392,0.406,3.089,0.511,1.254,0.578,2.419,1.643,0.38,0.447,0.645,1.294,0.498,0.466,0.349,1.158,2.061,0.579,2.471,0.569,3.495,0.39,0.446,1.917,0.725,1.069,0.444,0.592,0.503,1.017,2.654,0.496,4.255,0.659,2.645,0.406,0.977,1.145,0.588,2.324,1.327,0.589,3.478,0.983,1.463,0.59,1.159,0.791,0.456,0.706,0.473,2.177,1.163,0.454,0.674 +NM_015393,0.96,0.971,0.941,0.928,0.971,0.99,0.974,1.019,0.92,0.83,0.96,1.048,0.913,1.041,1.272,0.912,0.949,1.0,0.934,1.154,0.929,0.955,1.153,0.984,1.165,1.003,1.038,0.908,0.745,1.029,0.89,0.892,1.003,0.95,0.857,1.294,1.037,0.906,1.037,1.002,0.768,0.921,0.958,1.1,0.979,0.951,1.084,0.856,1.476,0.844,1.092,0.94,0.851,0.8 +NM_015394,1.071,0.897,1.042,0.929,0.967,1.064,1.233,1.024,1.001,1.076,1.012,0.958,1.036,1.058,1.085,0.897,0.951,1.034,0.952,1.046,0.986,0.975,0.933,0.909,0.99,1.044,1.003,1.127,1.043,1.048,1.049,1.045,1.101,1.036,0.875,0.802,1.01,1.2,0.868,0.971,1.098,0.999,1.335,0.99,0.993,0.881,0.908,1.001,0.931,1.048,1.042,1.077,0.896,1.183 +NM_015395,0.935,0.943,1.042,0.834,0.686,1.582,0.803,0.734,0.909,0.69,1.023,0.859,0.829,0.785,0.864,1.014,1.039,0.85,1.03,0.968,0.772,0.882,1.325,0.892,1.033,1.216,1.127,0.875,0.816,1.531,0.82,1.167,1.078,1.072,0.611,0.612,0.932,0.875,1.541,1.264,0.817,1.189,0.698,1.435,0.838,1.015,0.877,0.881,0.927,0.924,1.016,1.131,0.825,0.728 +NM_015396,1.504,1.9,2.292,1.5350000000000001,1.867,2.4459999999999997,1.4809999999999999,1.49,2.026,1.9900000000000002,2.165,1.844,1.44,1.6909999999999998,2.032,2.4619999999999997,1.817,1.821,2.123,1.935,1.647,1.675,2.145,2.161,1.621,1.716,2.33,1.78,1.406,2.561,1.884,2.647,3.287,2.316,1.212,1.768,2.42,1.9619999999999997,2.238,1.654,2.166,2.342,1.8250000000000002,2.536,1.9689999999999999,1.9289999999999998,1.7069999999999999,1.633,1.63,1.877,2.063,2.2910000000000004,1.9660000000000002,2.767 +NM_015397,1.013,0.673,1.563,0.784,1.067,0.961,0.687,1.169,1.742,1.122,0.805,0.875,1.13,0.84,1.392,1.572,1.143,1.14,1.313,0.856,0.544,1.085,1.081,1.138,0.487,0.969,1.366,1.24,0.389,0.873,1.736,0.894,1.246,1.225,2.516,0.535,0.998,1.032,0.929,0.827,1.243,0.869,0.475,1.378,1.315,0.684,1.103,1.246,0.802,1.025,0.974,1.116,0.858,1.628 +NM_015400,0.957,0.88,1.453,0.842,0.787,1.123,0.584,0.588,1.172,0.898,0.941,0.688,0.692,1.192,0.961,0.869,0.848,1.01,1.296,1.06,0.838,0.96,1.256,0.914,0.612,1.121,1.557,0.787,0.529,1.401,1.116,1.046,0.967,1.302,0.549,0.825,0.997,0.854,1.767,1.173,1.222,1.043,0.662,0.982,0.733,0.649,0.767,0.791,0.612,0.998,0.74,1.024,1.002,1.869 +NM_015401,0.889,0.931,1.0,1.154,1.023,1.035,1.11,1.044,0.959,0.99,0.966,0.901,1.088,1.05,0.934,1.133,0.973,1.128,0.932,1.064,1.06,1.001,0.923,1.023,1.021,0.933,0.993,0.989,1.299,1.104,0.928,0.901,1.055,1.01,1.033,0.932,1.173,1.047,0.996,0.999,0.987,1.04,0.983,1.029,0.916,0.954,0.809,1.005,0.987,1.008,1.084,0.95,1.083,0.908 +NM_015407,0.708,1.497,0.73,1.181,0.68,1.831,0.928,0.65,0.623,0.641,1.759,0.797,0.746,0.654,0.859,1.539,0.628,0.833,0.796,1.313,0.792,0.675,1.502,0.78,1.351,0.743,0.784,0.597,0.747,2.204,0.67,1.199,1.354,2.823,0.527,1.117,0.936,0.744,1.789,0.697,0.745,1.592,0.845,1.211,0.787,1.193,0.755,0.589,0.768,0.696,1.257,0.817,0.907,1.59 +NM_015409,1.064,1.051,1.006,1.115,0.943,1.032,0.846,1.036,0.95,0.928,1.085,0.996,1.006,0.876,0.948,1.224,0.989,0.944,0.959,1.015,0.945,0.952,0.981,0.977,0.981,1.005,0.916,0.941,0.806,0.999,1.064,0.991,1.09,1.016,1.151,0.87,0.969,0.923,0.942,1.054,1.02,0.996,0.887,0.956,0.987,1.043,0.849,0.903,0.827,1.039,1.089,0.976,1.103,1.066 +NM_015411,0.57,1.671,0.951,0.798,0.6,1.309,0.476,0.544,0.84,0.797,1.018,0.561,0.562,0.604,0.831,1.346,0.733,0.803,1.101,0.859,0.636,0.393,1.324,0.83,0.975,0.779,0.784,0.646,0.545,2.994,0.615,2.226,1.645,2.007,0.333,0.813,1.082,0.783,1.693,1.145,0.868,1.624,0.771,2.321,0.7,0.938,1.477,0.529,0.714,0.729,1.159,0.873,0.572,1.2 +NM_015412,0.718,1.215,1.126,0.802,0.81,1.423,0.793,0.763,1.07,0.887,1.092,0.891,0.778,0.756,0.894,1.251,0.912,0.849,1.005,0.974,0.712,0.843,1.129,1.177,0.813,0.836,1.446,0.777,0.612,1.085,0.993,1.74,2.492,1.378,0.543,1.027,0.944,0.916,1.185,1.07,1.007,1.08,0.757,1.553,0.777,0.842,0.825,0.774,0.964,0.812,0.953,0.912,1.001,2.058 +NM_015414,1.103,0.882,1.178,0.796,1.086,0.946,0.736,0.87,1.188,1.274,0.902,1.106,0.984,0.658,0.927,1.179,1.231,1.19,1.435,0.871,0.904,0.772,1.011,1.111,0.86,1.208,1.158,1.054,0.964,0.867,0.965,0.797,1.299,0.916,0.611,0.947,0.821,1.04,1.171,1.046,1.151,0.965,0.864,1.731,1.37,0.905,1.122,1.236,1.006,1.415,0.92,0.875,1.352,1.094 +NM_015415,0.389,1.379,0.795,0.736,0.475,1.829,0.706,0.336,0.517,0.528,2.576,0.547,0.525,0.356,0.929,3.296,0.585,0.818,1.04,1.131,0.308,0.393,1.692,0.671,1.063,0.512,0.849,0.443,0.359,0.961,0.421,1.278,2.023,1.745,0.113,1.006,2.192,0.582,1.613,0.901,0.569,1.096,1.049,1.109,0.561,1.456,1.418,0.488,0.994,0.504,1.392,0.605,0.63,1.426 +NM_015416,0.698,1.339,1.095,0.837,0.602,1.293,0.767,0.548,0.786,0.577,1.684,0.713,0.766,0.609,1.081,1.453,0.639,0.802,0.92,1.07,0.519,0.699,1.53,0.803,1.026,0.821,0.895,0.646,0.583,1.645,0.645,1.231,0.975,2.059,0.451,1.134,1.474,0.881,1.345,0.723,0.774,1.577,0.648,1.295,0.633,1.09,0.71,0.677,0.916,0.619,1.014,0.732,0.74,2.446 +NM_015417,0.985,0.993,0.978,0.844,1.141,0.927,0.944,1.137,0.949,0.977,0.982,1.132,0.82,0.832,0.963,1.103,0.978,0.86,1.12,1.087,0.913,1.075,1.027,0.903,0.938,0.99,1.221,1.045,0.795,1.011,0.831,1.169,1.02,1.129,1.102,0.986,0.996,1.054,0.999,0.984,1.068,1.001,1.132,1.034,0.936,0.921,0.923,1.192,1.037,0.943,1.019,0.966,0.99,1.034 +NM_015419,0.574,3.328,1.268,0.559,0.802,1.155,0.688,0.593,0.525,0.857,0.529,0.604,0.612,0.751,2.313,0.764,0.618,0.486,0.808,1.708,0.695,0.482,1.626,0.754,0.772,0.675,0.903,0.784,0.301,3.199,0.876,15.28,2.962,1.776,0.245,0.824,0.844,1.694,1.301,3.148,0.783,2.088,0.888,2.208,0.862,2.376,2.047,0.507,3.2,0.535,1.64,5.43,0.832,0.946 +NM_015420,0.783,1.154,1.08,0.802,0.944,0.958,0.587,0.605,1.301,1.056,1.264,0.727,0.663,0.812,0.927,1.605,0.759,0.892,1.348,0.802,0.74,0.77,0.948,1.066,0.705,0.827,1.345,0.827,0.454,1.017,1.137,1.056,3.874,1.102,0.455,1.352,1.114,0.956,1.56,1.269,1.413,1.067,0.779,1.724,0.855,1.213,1.193,0.748,1.397,0.792,0.925,0.9,1.027,4.248 +NM_015423,0.79,1.124,1.347,0.948,1.045,0.985,0.686,0.742,1.176,1.044,0.982,0.852,0.808,0.926,1.151,1.255,0.905,0.936,1.181,1.022,1.025,0.936,1.087,1.094,0.894,0.859,1.271,0.804,0.842,0.913,1.043,1.249,1.771,1.099,0.831,1.107,0.892,1.034,0.999,0.857,0.961,1.014,0.721,0.94,1.023,1.061,0.941,0.621,0.889,0.939,0.913,0.895,1.187,1.462 +NM_015424,0.891,1.028,0.891,0.865,0.825,1.045,1.15,1.058,0.989,0.867,0.878,0.998,0.992,0.949,1.018,1.09,1.085,0.967,0.975,1.072,1.099,0.961,1.121,0.904,0.846,0.936,0.868,0.978,0.978,1.096,0.952,2.859,0.979,1.004,0.916,1.024,0.947,0.984,1.174,0.936,1.042,1.189,1.181,0.997,0.902,1.222,1.146,1.06,1.041,0.973,1.228,1.989,0.784,1.179 +NM_015425,0.931,1.185,1.023,0.906,1.042,0.914,0.83,0.866,1.05,0.923,0.974,0.864,0.911,1.117,0.969,1.001,0.977,0.928,0.954,0.915,0.926,0.959,1.13,1.003,0.936,0.916,1.1,1.018,0.95,1.056,0.821,0.847,1.11,0.887,1.172,1.0,1.179,0.961,1.198,1.06,1.153,1.116,1.175,1.272,1.028,0.988,0.917,0.882,0.989,1.116,1.045,1.048,0.985,0.873 +NM_015426,0.612,1.362,0.932,0.929,0.729,1.183,0.808,0.469,0.644,0.922,1.079,1.042,0.752,0.481,0.707,1.321,0.9,0.942,0.809,0.952,0.512,0.659,1.939,1.047,0.635,0.642,1.354,0.718,0.719,1.787,0.607,1.254,1.859,1.054,0.308,1.666,1.295,0.715,1.959,0.903,0.972,0.888,0.914,1.116,0.862,1.259,1.173,0.712,1.519,0.815,1.209,1.183,0.766,2.769 +NM_015429,0.844,1.52,0.972,1.05,0.909,1.117,1.128,0.738,0.988,0.961,1.264,0.905,0.854,0.848,1.03,1.487,0.775,0.796,0.935,1.425,0.906,0.948,2.06,1.063,1.043,0.881,0.875,1.088,1.089,1.695,0.951,1.338,0.877,1.57,0.829,0.997,1.058,0.905,0.85,1.005,1.021,1.583,1.125,0.702,0.883,1.234,0.833,0.822,0.892,0.814,1.189,0.855,0.979,0.904 +NM_015430,0.754,1.451,0.952,0.985,0.837,0.897,1.177,0.699,0.733,0.759,0.891,0.741,0.772,0.888,0.898,1.159,0.658,0.958,0.767,1.02,0.788,0.878,1.005,0.828,1.225,0.808,1.114,0.828,1.133,2.102,0.79,4.366,1.657,1.689,0.782,1.068,1.163,1.164,1.674,1.084,0.827,1.265,1.102,0.713,0.812,0.858,0.803,0.997,0.962,0.675,1.079,1.686,0.833,1.23 +NM_015433,0.696,1.69,1.171,0.667,0.774,1.103,1.059,0.766,0.992,0.675,0.988,0.861,0.733,0.768,0.742,0.886,0.836,0.888,1.126,1.166,0.749,0.701,1.245,0.918,1.313,0.853,1.085,0.813,0.832,1.515,0.667,2.159,1.134,2.21,0.501,1.159,1.107,0.983,1.058,1.664,0.92,2.267,0.701,1.304,0.916,0.897,0.799,0.853,0.722,0.624,0.956,0.87,0.819,2.29 +NM_015435,0.595,0.976,1.307,0.862,0.668,1.1,0.712,0.472,1.062,0.571,1.124,0.723,0.559,0.797,1.021,1.095,0.768,0.905,0.81,1.134,0.319,0.702,1.532,0.936,0.708,0.591,1.182,0.897,0.501,1.034,0.846,1.742,1.407,1.22,0.64,1.713,1.258,0.76,1.236,1.476,0.842,1.123,0.883,1.048,0.761,1.386,0.836,0.71,1.174,0.69,0.899,1.264,1.104,3.018 +NM_015436,0.932,1.116,1.274,0.801,0.913,1.295,0.754,0.893,0.968,0.944,0.797,0.986,0.807,1.043,1.202,1.743,1.058,1.018,0.971,1.036,0.798,1.059,1.077,1.222,0.859,0.78,1.285,0.993,0.833,1.262,1.41,1.261,1.656,1.318,0.696,0.93,1.155,1.298,1.295,0.841,1.142,1.041,0.96,0.782,0.963,1.205,1.033,0.843,0.986,0.838,1.129,0.777,0.685,1.202 +NM_015438,1.038,1.168,1.156,0.976,0.965,1.076,1.128,0.962,1.042,1.007,0.952,0.968,0.937,1.006,1.087,0.914,0.896,0.963,0.757,0.987,0.977,1.065,0.89,0.944,1.037,1.018,0.999,1.038,1.08,0.927,0.81,0.9,1.031,0.973,1.353,0.992,0.989,0.97,0.968,1.145,1.168,1.066,0.937,0.814,0.903,1.099,0.908,1.149,0.808,0.91,1.21,1.151,1.028,0.95 +NM_015439,0.706,1.536,1.255,0.803,0.862,0.822,0.62,0.556,1.303,0.699,1.202,0.565,0.584,0.78,1.144,1.031,1.006,0.869,0.932,1.493,0.59,0.611,1.039,0.588,0.849,0.801,1.117,1.034,0.58,1.462,0.97,1.223,0.858,1.615,1.544,0.758,1.128,0.673,1.004,0.743,0.953,1.148,0.856,0.928,0.78,1.076,1.027,0.62,0.849,0.704,0.993,0.679,0.793,0.989 +NM_015440,0.723,1.06,1.138,0.756,0.757,0.974,0.851,0.701,0.896,0.792,0.886,0.847,0.677,0.711,0.819,1.073,0.986,0.818,0.811,1.075,0.943,0.663,1.258,1.229,0.736,0.724,1.189,0.714,0.681,0.914,0.793,1.965,3.049,0.967,0.709,1.347,0.895,0.805,1.748,2.075,1.174,1.025,0.806,1.441,1.023,0.812,1.451,0.822,1.146,1.1,1.052,1.248,1.283,1.578 +NM_015442,0.82,1.041,1.055,0.869,0.796,1.024,0.8,0.497,0.988,1.032,1.174,0.974,0.73,0.718,0.798,1.077,0.965,0.883,1.125,0.94,0.77,1.058,1.135,0.976,0.85,0.901,0.964,0.801,0.871,1.215,0.774,0.96,2.044,1.354,0.254,1.262,1.144,0.923,1.453,0.905,0.959,1.148,0.787,1.151,0.984,0.996,0.756,0.924,1.094,0.773,0.989,1.076,0.948,1.799 +NM_015443,0.904,0.937,1.353,0.746,0.998,1.06,0.77,0.752,1.247,0.834,0.993,0.757,0.71,1.148,1.029,1.137,0.974,0.937,1.223,0.95,0.943,0.926,1.129,1.079,0.829,0.844,1.412,0.819,0.579,1.2,1.047,1.269,1.279,1.301,0.823,0.841,1.002,0.929,1.314,1.009,0.971,1.103,0.792,1.497,0.992,0.972,0.886,0.772,0.831,0.865,0.981,0.835,0.993,1.492 +NM_015444,0.557,0.803,0.9,0.745,0.786,0.927,0.892,0.629,0.678,0.984,1.294,0.772,0.669,0.638,1.012,1.299,0.836,0.757,1.041,0.645,0.931,0.709,1.824,0.892,0.613,0.632,1.297,0.979,0.863,1.265,0.766,9.043,2.613,1.426,0.662,0.987,0.766,0.836,2.069,6.737,2.071,1.31,1.304,1.181,1.112,1.357,1.098,0.71,0.988,1.234,1.47,2.217,1.825,1.883 +NM_015447,1.353,0.647,2.33,0.845,2.11,0.654,0.601,1.111,2.363,1.721,0.618,1.22,1.088,1.322,1.656,0.926,1.509,1.095,1.961,0.697,1.02,1.802,0.719,1.572,0.55,1.341,1.698,1.74,0.566,0.742,1.675,1.133,1.403,0.696,1.688,0.896,0.754,1.876,0.67,0.717,1.846,0.877,0.648,0.748,1.946,0.608,1.179,1.637,0.652,1.426,0.949,0.803,1.299,1.414 +NM_015448,0.836,0.696,1.039,0.732,1.06,1.019,0.621,0.746,1.127,1.232,1.046,1.289,0.797,0.649,0.728,1.319,0.94,1.143,1.291,1.002,0.768,1.039,1.245,1.221,0.59,1.117,0.882,1.021,0.471,0.881,0.857,1.109,1.869,1.121,0.521,0.916,0.92,1.114,1.307,0.727,1.03,0.833,0.677,1.265,0.938,0.937,1.1,0.881,0.749,0.903,1.04,0.796,1.15,1.312 +NM_015449,0.548,1.003,1.029,0.653,0.75,1.487,0.533,0.745,0.869,0.723,1.547,0.966,0.729,0.511,0.873,1.672,0.73,0.847,1.526,0.844,0.612,0.922,1.052,1.093,0.652,0.754,1.091,0.747,0.431,1.066,0.842,1.697,2.364,1.388,0.289,1.153,1.2,1.143,1.277,0.997,0.932,0.973,0.569,1.342,0.681,1.074,0.875,0.759,0.919,0.685,1.022,0.816,0.741,1.931 +NM_015450,1.108,1.15,1.079,0.895,0.932,0.906,0.817,1.227,0.951,0.911,1.026,0.942,1.032,0.784,0.909,1.136,0.934,1.0,0.95,1.135,0.891,0.912,1.11,0.934,0.944,0.921,1.078,1.048,0.933,1.091,0.984,1.03,1.35,1.016,0.85,0.974,1.107,1.046,1.171,0.871,0.975,0.878,0.85,1.268,0.944,1.059,1.07,0.877,1.07,0.784,1.0,1.07,0.931,1.17 +NM_015453,0.949,1.081,0.993,0.97,0.899,1.177,0.862,0.901,0.945,0.963,0.966,1.056,0.964,0.861,1.062,1.227,1.099,0.886,0.979,0.78,0.895,1.129,1.106,0.994,0.896,0.895,1.189,0.977,0.578,1.006,1.235,0.994,1.388,1.161,0.819,0.825,1.081,1.057,1.142,1.004,1.112,1.043,0.946,1.058,1.012,0.934,1.1,0.963,1.075,0.943,1.024,0.819,0.854,1.299 +NM_015455,0.842,0.912,1.398,0.792,0.861,0.967,0.614,0.682,1.038,0.915,1.137,0.993,0.796,0.888,0.972,1.131,0.898,1.077,1.384,0.991,0.671,0.764,0.996,1.008,0.793,0.846,1.305,0.832,0.763,1.266,1.0,1.21,1.623,1.218,0.466,0.73,1.163,1.112,1.262,0.677,1.039,1.072,0.904,0.81,1.011,1.013,0.879,0.97,0.92,0.895,0.958,0.99,1.255,1.782 +NM_015456,0.907,0.949,0.959,0.966,0.751,0.996,0.566,0.522,0.976,0.825,0.947,0.774,0.791,0.691,0.975,1.602,0.809,0.992,1.762,0.863,0.852,1.154,0.888,0.9,0.774,1.33,1.063,0.645,0.699,1.073,0.745,1.413,1.993,1.401,0.344,2.309,1.0,1.146,2.001,1.211,0.933,1.03,0.626,2.152,0.992,0.704,0.854,1.327,0.818,0.898,0.865,0.829,1.1,1.399 +NM_015457,0.921,0.973,1.809,0.66,1.398,0.733,0.689,0.801,1.621,1.488,0.604,1.012,0.877,0.851,0.95,0.963,1.294,1.186,1.148,0.904,0.701,1.097,0.955,1.414,0.459,1.333,1.32,1.321,0.495,1.165,1.219,1.281,0.928,0.929,0.523,1.344,0.846,1.331,1.066,0.904,1.429,0.924,0.657,1.18,1.679,0.999,1.121,1.216,0.962,1.038,1.001,0.846,1.145,0.806 +NM_015458,0.915,0.839,1.309,0.94,1.093,0.918,0.849,0.837,1.123,0.925,0.869,1.033,0.891,0.851,1.206,1.079,1.054,0.872,1.35,0.941,0.873,1.099,1.023,1.022,0.825,0.954,1.328,0.989,0.591,1.024,0.992,1.285,1.263,0.992,0.637,0.767,0.94,1.142,1.107,0.849,1.103,0.914,0.789,0.768,1.105,1.019,0.779,0.994,0.905,0.957,0.992,1.276,1.051,1.569 +NM_015459,0.724,0.837,1.556,0.745,1.318,1.014,0.7,1.184,1.386,1.201,1.102,1.064,0.828,0.935,1.041,1.594,1.012,1.107,1.997,0.68,0.776,0.993,0.824,1.063,0.498,0.965,1.011,1.184,0.559,0.936,1.389,0.793,4.694,0.935,1.097,0.772,1.003,1.003,1.471,0.769,1.178,0.905,0.733,1.062,0.93,1.278,1.22,1.014,1.089,1.0,0.852,0.785,1.371,1.422 +NM_015460,1.034,1.617,1.06,1.013,0.829,0.956,1.15,0.981,0.887,0.868,0.893,0.853,0.983,0.908,0.907,1.025,0.867,0.848,0.771,0.979,0.786,0.912,1.009,1.0,2.033,0.916,0.988,0.935,1.046,1.194,0.93,1.098,1.084,1.392,1.013,0.836,1.141,0.997,1.195,0.915,0.97,1.473,0.912,1.0,1.006,1.089,1.05,1.071,1.089,0.947,1.044,0.809,0.956,0.96 +NM_015461,0.829,1.083,0.753,0.795,0.749,1.228,1.07,0.938,0.932,0.891,0.999,0.934,0.863,0.924,1.171,1.395,0.933,0.901,0.731,0.968,0.741,0.766,1.378,0.816,0.928,0.831,0.858,1.027,0.652,1.669,0.835,3.937,1.002,1.879,0.878,0.966,1.077,0.793,1.251,1.223,0.953,1.862,0.87,0.816,0.924,1.14,1.03,0.741,0.918,0.866,1.164,1.394,0.978,0.961 +NM_015462,0.806,1.0,1.344,0.772,0.914,0.874,0.638,0.429,1.497,1.424,0.839,0.703,0.678,0.704,0.834,1.228,0.951,0.788,1.288,0.8,0.632,1.137,1.187,1.318,0.574,0.757,1.622,0.866,0.565,1.086,0.904,1.266,2.017,0.96,0.336,0.826,1.032,1.168,1.537,0.735,1.408,0.959,0.733,1.583,1.133,0.977,1.08,0.773,1.289,0.861,0.945,0.967,0.869,1.537 +NM_015463,0.947,1.257,0.949,1.002,0.856,1.113,0.914,0.904,1.07,0.935,0.914,0.994,1.036,1.017,0.892,0.994,0.892,0.891,0.842,1.08,0.842,0.942,0.958,0.926,1.011,0.923,0.739,0.86,1.168,1.443,0.867,1.816,1.112,1.392,0.854,0.989,1.036,1.279,1.37,1.15,1.077,1.274,0.827,0.931,0.896,0.977,0.946,1.013,1.055,0.947,1.037,1.044,0.901,1.076 +NM_015464,1.018,2.368,0.865,3.464,0.866,2.438,3.967,0.836,1.053,0.818,3.239,0.899,0.907,0.992,1.18,1.008,0.663,1.93,0.954,2.78,0.741,0.78,1.613,0.781,5.74,0.802,0.826,0.878,3.404,2.601,0.923,0.792,0.671,8.162,0.732,0.715,2.721,0.811,1.021,0.641,0.937,2.14,0.965,0.794,0.806,1.52,0.755,0.756,0.706,0.854,1.171,0.855,0.794,0.763 +NM_015465,0.958,1.056,0.821,0.969,0.913,0.953,0.782,0.942,1.244,1.232,0.902,0.933,0.862,1.071,0.924,1.002,0.991,0.998,0.916,1.01,0.935,0.92,1.042,1.071,1.03,0.926,1.083,0.893,1.125,0.956,1.0,1.205,1.802,0.942,0.842,0.989,0.821,1.009,1.0,0.941,1.046,1.078,0.895,1.191,1.025,1.048,1.066,0.931,1.111,0.996,0.914,0.976,1.092,1.291 +NM_015466,0.832,0.733,1.202,0.793,0.756,1.182,0.66,0.595,0.992,0.944,1.279,0.691,0.518,0.991,1.27,1.722,0.88,0.761,1.68,0.902,0.797,0.983,1.195,0.915,0.756,0.949,1.358,0.561,0.801,1.385,1.033,1.156,1.586,1.528,0.538,0.893,1.14,0.98,1.786,0.967,0.821,1.197,0.778,1.036,0.9,0.898,0.722,1.102,0.984,0.914,1.199,0.827,1.335,1.802 +NM_015470,0.985,1.128,1.126,0.924,0.986,1.048,0.828,0.912,0.874,0.905,0.81,0.837,0.965,0.956,0.944,1.019,1.113,1.034,1.116,1.048,0.99,0.998,1.157,0.935,0.881,1.241,1.008,0.857,0.954,0.978,1.141,1.407,1.323,0.964,1.543,0.943,0.927,1.002,1.15,1.007,1.007,1.029,0.933,1.182,1.02,0.857,1.006,1.099,0.83,1.082,0.964,0.941,1.123,1.2 +NM_015471,0.582,1.101,1.112,0.784,0.625,2.043,0.796,0.476,0.776,0.624,1.68,1.015,0.794,0.646,0.963,2.238,0.679,0.849,0.886,1.338,0.434,0.643,1.417,0.919,0.861,0.611,1.254,0.751,0.756,1.451,0.728,1.413,2.548,1.543,0.346,1.49,1.868,0.643,1.537,1.355,0.848,1.293,0.815,1.778,0.564,1.289,0.802,0.483,0.919,0.472,1.599,1.03,0.77,1.499 +NM_015474,1.121,0.972,0.987,0.802,1.039,1.067,1.16,0.919,1.179,0.878,0.892,0.904,1.042,0.974,1.057,0.971,1.027,0.91,0.994,0.897,1.054,1.05,0.985,0.97,1.058,1.042,1.109,1.031,1.176,1.189,0.931,0.907,0.971,0.986,0.94,1.019,0.995,1.241,1.261,0.828,1.051,1.135,1.042,0.948,0.921,0.917,0.893,0.961,1.083,1.008,1.133,1.049,1.127,0.962 +NM_015475,0.46,0.9,1.281,0.429,1.101,1.557,0.771,0.748,1.294,1.107,0.871,1.231,0.629,0.47,0.876,2.049,0.965,0.93,0.77,1.043,0.316,1.195,1.447,1.53,0.454,0.418,1.403,0.979,0.626,1.245,1.221,1.224,2.557,1.137,0.13,0.323,0.965,1.281,1.423,0.827,1.083,1.144,0.502,0.41,1.284,0.931,1.056,0.803,1.375,0.788,1.311,0.651,0.428,1.438 +NM_015476,1.178,0.844,1.701,0.742,1.279,1.135,0.671,0.875,0.922,1.201,0.617,1.072,1.049,0.831,0.77,1.91,1.081,1.116,1.424,0.864,0.845,1.088,1.172,1.36,0.637,1.188,1.507,1.104,0.449,1.203,1.008,1.155,1.576,1.187,0.625,0.499,0.783,1.326,1.656,0.519,1.351,0.705,0.613,0.997,1.212,0.844,0.874,1.196,0.758,1.202,0.89,0.758,1.097,3.131 +NM_015477,0.775,1.208,1.309,0.872,0.858,1.055,0.769,0.525,0.979,0.881,0.876,0.861,0.588,1.093,0.802,1.012,0.914,0.986,0.896,1.071,0.704,0.722,1.434,0.863,0.847,0.885,1.243,0.909,0.649,1.275,0.932,1.061,1.268,1.332,0.61,0.918,0.988,0.835,1.35,1.187,0.935,1.246,0.705,1.255,0.966,0.932,0.901,0.666,0.868,0.903,0.977,0.91,0.882,1.461 +NM_015480,0.571,1.922,0.52,0.849,0.522,2.185,1.268,0.446,0.493,0.423,2.48,0.541,0.499,0.464,1.07,2.563,0.506,0.914,0.489,1.757,0.546,0.507,2.598,0.54,1.486,0.431,0.545,0.53,0.966,2.368,0.562,3.376,4.097,1.577,0.479,0.752,3.002,0.485,1.249,0.672,0.551,2.846,1.488,1.49,0.547,3.027,0.816,0.483,2.722,0.47,2.029,0.733,0.541,1.269 +NM_015481,1.482,0.731,1.589,1.019,1.209,1.0,0.735,1.415,1.39,1.365,0.783,1.283,1.128,1.091,1.048,0.943,1.384,1.13,1.68,0.765,1.538,1.379,0.954,1.255,0.804,1.506,1.649,1.234,0.863,0.824,1.377,1.005,1.249,0.845,1.095,1.32,0.765,1.301,0.922,1.0,1.199,0.679,0.858,1.121,1.354,0.76,1.014,1.619,0.72,1.798,0.893,0.964,1.278,1.052 +NM_015483,0.871,0.886,1.276,0.881,0.957,0.952,0.854,0.641,0.955,0.874,0.924,0.736,0.74,0.849,0.935,1.0,1.06,0.891,1.026,0.995,0.746,0.756,1.15,0.907,0.809,0.782,1.182,0.906,0.534,1.124,0.809,1.674,1.62,1.025,0.593,1.013,0.825,0.86,1.311,1.452,1.139,1.064,0.87,1.591,0.826,1.153,1.092,0.793,0.957,1.016,0.959,0.938,1.12,1.622 +NM_015484,0.694,1.263,1.304,0.705,0.913,1.474,0.836,0.936,1.071,0.853,0.899,0.996,0.863,0.757,0.936,1.575,0.975,1.032,0.922,1.297,0.709,1.121,1.275,1.071,0.699,0.797,0.998,0.855,0.859,1.269,1.098,1.506,1.601,1.353,0.775,0.923,0.952,1.21,1.504,1.074,1.212,1.104,0.802,0.989,1.158,0.95,1.002,0.967,1.165,0.849,1.046,0.808,0.744,1.615 +NM_015485,0.932,1.134,1.003,0.864,0.829,0.937,0.873,0.842,1.065,0.956,1.084,0.75,0.871,0.889,1.215,1.131,0.824,0.867,0.942,1.148,0.877,0.856,1.151,0.932,0.961,0.806,1.313,0.76,0.742,1.008,0.885,1.104,1.284,1.107,0.787,0.797,1.036,0.875,1.155,0.84,0.965,1.011,0.762,0.995,0.854,1.18,0.918,0.914,0.935,0.829,1.016,1.001,1.057,1.228 +NM_015490,1.96,1.972,1.871,2.185,1.818,1.991,2.15,1.88,2.301,1.9649999999999999,2.3150000000000004,2.012,1.833,2.13,1.825,2.115,1.9649999999999999,2.136,2.151,1.994,1.892,1.9100000000000001,1.911,2.012,1.972,2.167,2.061,2.122,2.4619999999999997,1.909,2.148,2.112,2.101,2.035,2.075,1.9849999999999999,2.034,1.799,2.027,2.0,2.135,1.939,1.9809999999999999,1.93,2.0,2.0170000000000003,1.944,1.9249999999999998,1.911,1.9380000000000002,1.895,2.113,2.059,2.0940000000000003 +NM_015493,0.555,1.303,0.573,0.836,0.613,1.249,1.08,0.528,0.514,0.621,1.606,0.509,0.531,0.519,1.059,1.199,0.57,0.717,0.603,1.004,0.802,0.619,1.754,0.545,1.046,0.53,0.683,1.13,0.863,2.267,0.536,4.24,1.34,3.258,0.566,0.84,0.994,0.903,1.572,1.029,1.546,2.272,0.721,1.205,0.511,0.996,0.683,0.726,0.832,0.53,1.163,1.274,0.539,1.235 +NM_015496,0.858,1.088,1.061,0.851,0.871,0.904,0.662,0.632,0.885,0.923,0.95,0.752,0.665,0.686,0.787,1.105,0.83,0.97,1.042,1.053,0.705,0.708,1.148,0.859,0.832,0.869,1.174,0.883,0.627,1.255,0.828,1.552,1.873,1.397,0.596,1.243,1.048,0.768,1.497,1.407,1.025,1.319,0.836,1.682,0.922,1.227,0.913,0.788,1.141,0.807,1.024,1.039,0.957,1.82 +NM_015497,0.761,0.859,1.243,0.696,0.894,0.856,0.722,0.76,1.032,1.005,0.83,0.825,0.756,0.865,1.148,1.341,0.913,0.953,1.494,1.076,0.775,0.861,1.25,1.057,0.722,0.947,1.217,0.943,0.697,0.776,1.107,0.978,1.251,1.291,0.627,0.709,0.879,0.957,1.371,0.823,1.081,1.041,0.625,0.845,1.146,0.98,0.888,1.004,0.82,1.118,0.993,0.761,1.143,1.928 +NM_015503,1.053,1.049,0.968,0.896,1.103,1.146,0.773,0.813,0.994,0.946,1.134,0.994,1.046,0.908,1.404,1.354,0.942,0.966,0.812,0.872,0.978,0.948,0.966,1.059,0.906,1.053,1.085,0.921,0.893,0.987,0.924,1.271,1.443,1.12,0.885,0.823,0.945,1.021,1.262,0.993,0.924,1.104,0.911,1.096,0.947,1.032,1.008,0.926,1.073,1.024,1.055,0.711,0.798,1.453 +NM_015507,1.139,0.789,2.52,0.888,1.575,0.696,0.638,0.964,1.455,1.192,0.639,1.081,1.523,1.484,1.29,0.738,1.338,1.107,2.304,0.737,0.951,1.382,0.846,1.228,0.721,1.324,2.363,1.017,0.703,0.783,1.548,1.609,1.23,0.894,0.699,1.091,0.694,1.483,0.791,1.113,1.542,0.708,0.659,0.698,1.295,0.737,0.967,1.228,0.598,1.158,0.803,2.221,1.316,1.279 +NM_015508,1.007,0.948,1.279,0.732,1.359,1.086,0.773,1.794,1.66,1.209,0.691,1.212,1.308,0.821,1.255,0.96,1.167,1.266,1.208,1.092,0.659,1.281,0.873,1.271,0.517,1.017,1.044,1.141,0.547,1.052,1.524,0.966,1.261,1.13,2.343,0.924,1.142,1.503,1.05,0.665,1.597,0.854,0.825,1.043,1.119,0.856,0.772,1.498,0.926,1.0,0.855,0.73,1.341,0.91 +NM_015509,0.523,1.05,0.894,0.935,0.585,1.402,1.176,0.497,0.794,0.784,1.513,0.612,0.554,0.546,0.91,1.698,0.717,1.118,0.849,1.182,0.487,0.577,1.192,0.958,0.94,0.632,0.809,0.691,0.837,1.377,0.781,1.141,1.482,1.82,0.389,1.018,1.794,0.623,1.42,0.724,0.735,1.396,0.85,0.93,0.784,1.426,0.914,0.507,1.315,0.607,1.259,0.917,0.769,1.602 +NM_015510,0.685,0.962,0.962,0.749,0.774,1.108,0.554,0.541,0.929,0.917,1.25,0.671,0.652,0.599,1.06,1.955,0.756,1.024,1.15,1.064,0.621,0.775,1.475,0.835,0.785,0.967,1.128,0.774,0.465,1.01,0.83,1.263,1.707,1.26,0.317,1.991,1.194,0.887,1.337,1.003,0.916,1.121,0.822,1.702,0.951,1.183,0.941,0.811,1.206,0.809,1.152,0.721,1.001,1.532 +NM_015511,0.841,1.097,0.943,0.869,0.708,1.042,0.613,0.508,0.809,0.836,1.015,0.661,0.64,0.655,0.861,1.237,0.822,0.833,0.993,0.878,0.74,0.867,1.501,0.94,0.863,0.968,0.921,0.698,0.626,1.482,0.62,2.518,2.574,1.258,0.412,1.031,0.882,1.005,1.69,1.284,0.881,1.218,0.891,1.872,0.965,0.866,1.013,0.715,0.953,0.766,0.982,1.359,0.83,2.088 +NM_015513,0.589,1.574,0.836,1.037,0.635,1.004,0.765,0.661,0.747,0.616,0.976,0.68,0.572,0.554,0.766,1.071,0.827,0.776,0.781,1.35,0.583,0.799,1.204,0.704,1.484,0.697,0.86,0.694,0.684,1.686,0.719,1.247,0.897,1.62,0.389,0.778,1.009,0.648,1.866,0.985,0.685,1.654,1.088,0.996,0.795,0.914,0.801,0.646,0.778,0.528,1.262,0.874,0.706,1.373 +NM_015515,1.232,1.179,1.402,1.002,1.629,0.882,0.949,0.884,1.781,1.167,0.728,0.896,1.113,1.168,1.092,1.095,1.361,1.003,2.113,0.937,0.845,0.817,0.875,1.12,0.677,1.009,2.599,0.957,1.243,0.883,1.211,1.022,3.076,0.835,1.091,0.95,1.02,0.81,0.926,1.374,1.508,0.959,1.028,0.947,1.626,0.83,1.386,0.986,0.956,1.365,0.984,1.165,1.385,1.188 +NM_015516,0.904,1.175,0.896,1.089,0.828,1.715,0.861,0.882,0.974,0.911,1.071,1.059,1.037,0.812,0.869,0.997,1.073,0.903,1.238,0.837,1.06,1.16,0.689,1.115,1.032,1.301,1.066,0.647,1.316,1.482,0.804,1.178,1.071,1.389,0.64,0.806,1.078,0.911,1.596,0.832,0.952,0.975,0.627,0.907,1.023,0.68,0.925,1.289,0.693,0.923,0.697,0.805,1.205,0.776 +NM_015517,0.806,0.999,1.112,0.906,0.856,1.065,0.744,0.874,1.021,0.821,1.019,0.851,0.76,0.926,1.137,0.942,0.938,0.876,0.943,1.053,0.7,0.968,1.045,0.871,0.794,1.022,1.074,0.986,0.786,1.297,0.919,1.24,1.006,1.155,0.686,1.175,1.065,0.9,1.108,1.054,0.862,1.078,0.791,0.902,0.885,0.885,1.076,0.914,0.989,0.8,0.915,0.781,0.907,1.228 +NM_015522,1.927,2.205,1.959,1.9100000000000001,1.966,2.248,1.911,1.855,1.846,2.108,2.41,1.791,1.984,1.586,1.9409999999999998,2.6159999999999997,1.824,1.932,2.021,2.177,1.729,1.8529999999999998,2.334,2.153,1.8399999999999999,1.758,2.133,1.8719999999999999,1.471,2.1879999999999997,2.0229999999999997,2.1319999999999997,3.05,2.464,1.768,1.854,2.242,2.023,2.326,1.983,1.9180000000000001,2.2110000000000003,1.802,2.0709999999999997,1.8519999999999999,2.627,1.902,1.759,2.293,1.913,2.1310000000000002,1.827,1.73,2.553 +NM_015523,0.822,1.048,2.07,0.596,1.735,0.769,0.393,1.071,2.208,1.649,0.646,1.708,0.994,1.103,0.971,1.094,1.725,0.98,2.163,0.881,0.902,1.349,0.848,1.614,0.517,1.156,1.962,1.677,0.263,1.171,1.764,1.823,2.318,0.92,0.983,1.636,0.775,1.368,0.668,0.971,2.146,0.8,0.313,0.533,1.693,0.695,1.451,1.198,0.566,1.136,0.758,1.061,1.942,1.662 +NM_015526,0.605,1.063,0.656,0.822,0.777,1.368,0.95,0.87,0.849,0.81,1.188,0.716,0.655,0.798,1.035,1.106,0.771,0.773,0.644,1.145,0.992,0.716,1.899,0.77,1.182,0.793,0.568,1.278,0.515,2.591,0.698,7.954,1.173,2.959,0.688,0.906,1.138,1.249,1.492,1.574,1.677,3.401,0.962,0.771,0.672,1.188,0.819,0.652,0.791,0.661,1.465,1.385,1.146,1.201 +NM_015527,1.075,1.046,0.931,1.104,0.836,1.139,0.89,0.867,0.963,0.905,0.941,0.811,0.948,0.967,0.881,1.33,0.978,0.92,0.959,0.973,0.912,0.933,0.961,0.987,1.093,1.119,1.098,0.752,0.93,1.058,0.894,1.339,1.749,1.101,0.744,0.907,0.982,0.89,1.53,1.29,0.81,0.849,0.864,1.324,1.015,0.859,0.795,0.97,1.014,0.999,1.114,0.892,1.166,1.1 +NM_015529,1.236,0.853,3.204,0.749,1.852,0.816,0.852,1.108,1.986,2.024,0.597,1.965,1.579,1.233,1.288,0.996,1.349,1.166,2.596,0.746,1.124,1.13,0.877,2.958,0.683,1.262,4.48,1.584,0.503,1.004,1.879,4.953,0.899,1.327,0.515,0.653,0.838,2.759,0.629,0.656,2.08,1.783,0.612,0.592,2.241,0.611,0.854,1.422,0.486,1.801,0.711,0.705,2.822,1.531 +NM_015530,0.548,0.956,0.95,0.709,0.703,1.39,0.553,0.454,1.054,0.789,1.28,0.677,0.565,0.624,0.969,1.719,0.726,0.818,1.31,0.879,0.58,0.828,1.571,1.033,0.589,0.691,1.307,0.725,0.46,1.14,0.887,1.172,1.434,1.35,0.253,1.024,1.33,0.746,1.441,0.76,1.021,1.193,0.603,1.155,0.899,1.108,0.781,0.663,1.167,0.803,1.232,0.743,0.833,1.659 +NM_015533,0.949,0.964,1.066,1.03,0.735,1.107,1.208,0.814,0.878,0.867,0.951,0.837,0.904,0.843,1.102,1.615,0.815,1.028,1.025,1.013,0.814,0.83,1.083,0.922,1.019,0.888,0.994,0.767,0.679,1.109,0.889,0.974,2.075,1.302,0.734,1.012,1.3,0.942,1.518,0.924,0.863,1.014,0.958,1.174,0.938,0.867,0.997,0.848,0.937,1.05,1.052,0.894,0.997,0.987 +NM_015534,0.803,1.097,1.221,0.754,0.832,0.965,0.599,0.627,1.072,0.844,1.048,0.822,0.769,0.898,1.062,1.089,0.823,0.767,1.118,1.021,0.67,0.811,1.151,1.238,0.868,0.943,1.467,0.845,0.468,1.145,0.983,1.193,2.439,1.308,0.465,0.763,1.05,0.882,1.253,0.918,0.919,1.014,0.833,1.339,0.966,0.831,0.736,0.712,0.728,0.84,1.037,0.798,0.803,2.352 +NM_015535,0.386,0.993,1.089,0.679,0.627,2.821,1.385,0.627,0.754,0.607,1.504,0.544,0.432,0.413,1.057,1.826,0.555,1.239,0.872,1.106,0.361,0.719,1.558,0.737,0.501,0.566,0.74,0.609,0.868,1.905,0.681,1.707,2.182,2.082,0.243,0.464,1.596,0.994,1.749,0.771,0.773,1.714,0.58,1.527,0.601,1.14,0.751,0.576,1.215,0.426,1.685,0.691,0.564,3.126 +NM_015540,1.025,0.926,1.179,0.784,0.955,0.802,0.864,0.732,1.053,1.091,0.845,0.958,0.84,0.815,0.991,0.965,1.119,1.022,1.203,0.927,1.27,1.061,1.237,1.049,0.816,1.255,0.97,0.968,0.655,0.908,0.874,0.943,1.523,0.956,0.587,1.045,0.867,1.208,1.562,0.894,1.005,0.874,0.887,1.109,1.0,0.785,0.778,1.03,0.912,1.136,0.915,1.048,1.159,1.404 +NM_015541,0.728,1.688,0.986,1.021,0.805,1.049,1.119,0.582,0.758,0.759,1.136,0.739,0.728,0.789,0.853,1.298,0.684,0.957,0.821,1.611,0.586,0.933,1.889,0.759,2.001,0.905,0.951,0.875,0.702,1.283,0.87,1.624,1.482,2.063,0.643,0.75,1.159,0.644,1.079,0.89,0.719,1.404,0.822,1.234,0.749,0.931,0.737,0.866,0.854,0.758,1.294,0.827,0.87,1.073 +NM_015542,1.544,2.018,2.539,1.384,1.7149999999999999,2.245,1.5230000000000001,1.095,2.2279999999999998,1.919,1.867,1.855,1.291,1.705,1.831,2.5010000000000003,1.834,1.734,1.954,2.1390000000000002,1.415,1.9989999999999999,2.549,1.942,1.326,1.597,3.1420000000000003,1.76,1.141,2.433,1.9449999999999998,2.888,4.205,2.31,0.749,1.708,1.9979999999999998,2.04,2.9349999999999996,2.1100000000000003,2.082,2.142,1.224,2.75,2.067,1.6680000000000001,1.916,1.6680000000000001,1.958,1.565,2.125,1.516,1.69,4.219 +NM_015544,0.239,2.514,0.368,0.774,0.238,1.81,1.101,0.163,0.35,0.317,1.859,0.257,0.299,0.185,0.854,2.175,0.222,0.765,0.275,2.034,0.152,0.216,1.573,0.216,1.227,0.231,0.446,0.271,0.82,2.494,0.206,2.804,1.516,2.815,0.0691,1.066,2.404,0.212,0.909,0.225,0.393,2.49,1.362,0.731,0.355,1.603,1.291,0.254,1.23,0.251,1.075,0.484,0.246,0.602 +NM_015545,0.8,0.793,1.104,0.815,0.904,1.103,0.753,0.75,1.153,0.939,0.742,0.829,0.746,0.929,0.838,1.242,0.964,1.034,1.155,0.928,0.907,0.871,1.551,1.032,0.619,0.96,1.264,1.01,0.696,1.177,0.97,1.595,1.674,1.031,0.557,1.11,0.875,0.927,1.467,1.136,0.994,1.121,0.811,1.828,1.158,0.889,1.015,0.811,0.82,0.939,1.133,1.615,0.989,1.711 +NM_015547,1.085,0.932,1.074,1.182,1.079,1.166,0.898,0.898,0.89,0.823,1.062,0.839,0.889,1.058,1.059,1.392,1.027,0.959,1.026,0.981,0.925,0.843,1.065,1.001,0.951,0.939,1.035,0.811,0.782,1.077,1.011,0.906,0.922,0.89,1.099,0.983,1.157,0.933,1.149,0.864,1.074,1.115,0.798,0.976,1.011,1.136,1.036,1.076,1.054,1.07,0.992,0.784,1.118,0.971 +NM_015553,0.76,0.987,1.53,0.9,0.973,0.929,1.038,0.928,1.013,0.897,0.951,0.935,0.906,0.768,1.048,0.974,1.563,0.901,1.015,0.99,0.924,0.999,1.003,1.022,0.849,1.087,1.439,1.023,0.789,1.073,1.134,0.988,1.008,1.105,0.968,0.887,0.902,1.028,1.098,1.015,1.444,1.055,1.023,0.792,1.292,0.941,0.908,0.85,0.921,1.007,0.989,0.949,1.319,1.041 +NM_015555,0.761,1.179,1.061,0.786,0.866,1.01,0.642,0.674,1.022,0.845,1.007,0.776,0.666,0.728,1.047,1.117,0.777,0.667,1.002,0.992,0.748,0.848,1.106,0.876,1.002,0.69,1.146,0.847,0.572,1.297,0.843,1.483,1.336,1.45,0.419,0.971,1.084,0.944,1.221,1.055,0.974,1.267,0.771,0.907,0.873,0.994,0.919,0.761,0.879,0.745,1.022,0.715,0.897,1.425 +NM_015556,0.595,1.631,1.365,0.852,0.78,1.271,1.171,0.325,1.106,0.94,0.905,0.554,0.388,0.494,0.657,0.72,0.81,1.253,0.538,1.876,0.32,0.565,1.386,0.969,0.764,0.559,1.247,0.753,0.529,2.335,0.738,1.265,0.8,1.915,0.326,0.633,1.008,0.691,1.411,1.429,1.2,1.471,0.799,1.459,1.145,0.981,0.999,0.495,0.879,0.631,1.268,1.032,0.792,1.766 +NM_015557,0.897,1.047,0.961,0.946,1.06,0.879,0.986,1.116,1.074,1.045,0.952,0.915,1.038,0.958,0.894,1.172,1.104,1.042,1.061,1.001,0.912,1.047,1.174,1.068,0.885,0.9,0.93,1.015,1.114,0.975,0.952,0.958,0.98,1.22,0.893,1.079,0.946,1.013,1.066,1.024,0.951,0.966,0.823,1.053,1.005,0.939,0.945,1.119,1.131,0.893,0.962,0.953,1.088,1.166 +NM_015558,0.87,1.082,1.287,0.936,0.94,0.988,0.696,0.823,1.221,0.905,0.967,0.906,0.856,0.902,1.039,1.081,0.927,0.763,1.01,0.989,0.823,0.926,1.156,1.143,0.89,0.864,1.195,0.944,0.737,1.264,1.152,1.195,1.93,1.365,0.596,0.901,0.974,0.953,0.878,1.181,1.059,1.078,0.857,0.941,0.914,1.128,0.871,0.761,0.856,0.793,0.885,0.91,0.894,2.15 +NM_015559,0.868,1.053,1.008,0.851,1.043,1.086,0.989,1.167,1.135,0.969,1.226,1.087,0.974,0.956,1.104,1.079,0.813,0.913,1.038,1.0,0.898,1.246,1.026,1.086,1.099,0.979,0.865,1.131,0.804,1.058,1.0,1.769,1.125,1.477,0.883,0.922,1.118,1.274,0.9,0.887,1.073,1.622,0.936,0.797,1.001,0.955,0.915,0.9,0.822,0.953,1.016,0.879,1.027,0.89 +NM_015564,0.954,1.05,1.102,1.042,1.07,0.951,1.042,0.903,1.023,1.109,0.912,0.985,1.03,0.795,1.025,1.126,0.988,1.11,0.963,1.109,1.181,1.123,0.97,0.967,1.009,0.919,1.021,1.119,1.646,0.96,1.001,0.998,0.903,1.076,1.054,0.999,0.988,0.95,0.996,0.92,1.003,1.02,1.103,0.903,0.989,1.118,1.034,1.042,0.999,0.952,1.018,0.901,1.109,0.987 +NM_015565,0.844,1.084,1.033,0.96,0.871,1.034,0.682,0.626,1.255,0.87,1.259,0.821,0.761,0.894,0.978,1.158,0.792,0.94,0.995,1.083,0.791,0.745,1.139,0.964,1.075,0.758,1.202,0.905,0.641,1.37,0.955,0.943,2.336,1.42,0.51,0.97,1.052,0.787,1.416,0.836,0.847,1.031,0.793,1.208,0.914,1.217,0.874,0.72,0.854,0.903,0.948,0.904,1.016,1.199 +NM_015567,0.961,0.994,1.09,1.021,1.19,0.891,1.032,1.13,0.992,1.101,0.924,1.067,1.089,0.944,0.753,0.841,0.844,1.033,1.153,1.064,0.992,1.123,1.055,1.14,0.969,1.013,0.932,1.141,0.949,0.871,0.91,0.946,1.013,1.106,0.99,1.013,1.101,1.036,0.989,0.943,1.046,1.184,1.0,0.915,1.161,0.967,1.058,1.12,0.828,1.1,0.98,1.023,1.009,0.941 +NM_015568,0.765,1.219,1.539,0.899,0.967,0.829,1.666,0.825,1.024,0.782,0.848,0.815,0.808,0.812,0.881,0.725,1.34,0.998,0.782,0.975,0.606,0.889,0.997,0.894,1.002,0.874,1.444,1.026,0.502,1.338,0.96,1.398,0.872,1.517,0.749,0.761,1.043,0.885,1.335,0.848,1.198,1.831,0.856,0.856,1.143,0.858,1.029,0.91,0.771,0.884,0.995,1.075,1.351,2.052 +NM_015569,0.836,1.166,1.023,1.356,0.887,1.31,1.28,0.898,1.062,1.041,1.28,0.956,0.993,0.862,1.063,0.906,0.882,1.051,0.897,0.995,0.99,0.876,0.946,0.915,1.087,0.885,0.959,0.991,1.117,0.952,0.874,1.254,0.956,1.591,0.867,0.96,1.391,0.743,1.205,1.378,0.798,1.188,1.429,0.975,1.048,1.083,0.875,0.884,1.006,0.824,0.937,1.021,1.077,1.042 +NM_015570,0.926,0.623,1.497,0.677,1.137,0.841,0.656,0.797,1.359,0.914,0.924,1.035,0.897,0.851,1.386,1.072,0.776,0.852,1.228,1.801,0.657,1.281,1.545,1.212,0.72,1.08,1.329,1.1,0.482,1.12,1.024,1.652,3.388,0.984,0.475,0.545,1.004,1.339,0.709,0.804,1.039,1.21,0.555,2.372,0.975,0.986,1.153,0.929,1.118,0.902,0.996,0.869,0.842,0.695 +NM_015571,0.792,1.147,1.32,0.773,0.976,1.179,0.87,0.726,1.212,0.881,0.969,0.855,0.832,0.891,1.088,1.243,0.899,0.816,0.83,1.036,0.843,0.889,1.118,0.952,0.789,0.659,1.232,1.155,0.681,1.258,1.058,1.235,1.473,1.235,0.692,0.841,0.968,1.001,1.078,1.032,1.014,1.217,0.683,0.928,0.804,1.129,0.981,0.706,1.076,0.849,0.98,0.824,0.936,1.772 +NM_015575,0.907,0.903,1.299,0.836,0.874,0.872,0.768,0.705,1.043,0.964,0.87,0.854,0.678,0.748,0.862,1.051,0.958,0.868,1.094,0.95,0.841,0.909,1.372,0.999,0.863,0.943,1.267,0.901,0.829,0.995,1.035,1.109,1.56,1.152,0.53,1.051,0.886,1.103,1.177,0.914,1.09,1.058,0.64,1.145,1.083,0.85,0.907,0.921,0.926,1.018,1.085,0.822,0.921,1.725 +NM_015577,0.59,1.227,0.639,0.727,0.567,1.281,0.673,0.619,0.887,0.707,1.178,0.48,0.45,0.635,1.015,1.105,0.71,0.634,0.608,1.28,0.588,0.549,1.87,0.731,0.883,0.698,0.727,0.532,0.666,1.326,0.779,3.826,1.95,1.543,1.44,0.772,0.96,0.584,1.576,3.42,0.799,1.545,0.509,1.737,0.728,0.613,0.781,0.798,0.552,0.564,1.269,1.801,1.072,2.606 +NM_015578,0.704,0.989,1.072,0.732,0.795,1.187,0.602,0.527,0.926,0.756,1.201,0.916,0.576,0.637,0.928,1.483,0.618,0.92,1.23,1.108,0.499,0.71,1.737,0.751,0.758,0.83,1.021,0.838,0.526,1.304,0.654,1.279,1.805,1.544,0.214,1.155,1.355,0.947,1.326,1.209,0.957,1.202,0.746,0.932,0.714,1.095,0.928,0.671,0.848,0.775,1.074,0.934,1.042,1.483 +NM_015582,1.186,0.894,1.021,1.053,1.083,0.98,0.61,0.989,1.06,1.081,0.839,1.022,0.987,0.862,0.953,0.964,1.155,1.081,1.288,0.865,1.665,1.056,0.918,1.129,0.822,1.249,1.139,1.106,0.744,0.891,1.042,1.286,1.252,1.076,0.745,0.831,0.797,1.007,1.225,0.881,0.994,0.935,0.847,1.565,1.188,0.802,0.856,1.068,0.68,1.29,0.931,0.826,1.169,0.88 +NM_015583,1.062,0.997,1.051,0.787,0.877,0.894,0.926,1.078,0.991,0.864,0.921,0.949,1.02,0.814,0.953,0.926,0.981,0.979,0.935,1.058,1.015,1.022,0.979,0.973,1.066,0.888,1.114,1.088,0.556,1.112,0.923,1.019,1.225,0.987,1.006,0.964,1.026,1.111,0.969,0.969,1.059,0.942,0.945,1.014,0.982,0.997,1.006,1.033,0.956,1.005,1.007,1.03,0.939,1.041 +NM_015584,0.797,0.879,1.061,0.68,0.91,1.133,0.765,0.698,1.061,0.992,0.912,1.0,0.847,0.644,0.846,1.394,0.89,1.09,1.217,1.036,0.703,0.933,1.192,1.07,0.821,0.94,0.986,0.909,0.797,0.998,0.782,1.231,1.632,1.154,0.565,1.057,1.051,0.938,1.17,0.63,1.113,1.135,0.746,1.139,1.096,0.934,1.0,0.832,0.938,0.854,0.97,0.778,0.722,1.376 +NM_015585,0.922,1.016,1.079,0.842,1.155,0.982,1.187,1.038,0.903,0.885,0.93,1.058,0.963,1.252,0.963,0.923,1.094,1.049,1.059,1.096,0.926,0.948,0.945,1.037,1.082,1.019,1.147,1.025,1.141,0.998,0.919,0.954,1.086,1.019,1.04,0.995,0.877,0.946,1.097,0.875,1.053,0.967,0.978,0.967,1.017,1.031,0.924,0.927,1.08,1.021,0.99,1.014,0.954,0.941 +NM_015589,0.96,1.071,0.817,1.032,1.072,1.017,1.026,0.896,0.888,0.965,0.802,1.027,0.91,0.781,0.933,0.962,0.788,0.998,1.057,0.897,1.069,1.011,0.911,0.994,0.863,0.932,0.876,0.994,0.881,0.992,1.07,1.355,2.052,0.884,1.376,1.105,0.864,1.077,1.088,1.393,0.896,1.061,0.808,1.248,0.942,1.041,0.96,1.054,0.953,0.981,0.958,0.994,0.885,1.021 +NM_015594,0.983,1.141,1.014,0.791,0.943,1.105,0.852,1.067,1.095,1.088,1.111,0.98,0.875,1.123,0.851,1.114,1.052,0.975,1.012,1.096,1.025,0.991,1.084,1.027,0.917,0.924,0.996,1.073,0.787,1.026,1.124,1.152,0.947,0.863,1.24,1.024,1.066,0.935,0.918,0.929,0.914,0.856,0.845,0.868,1.087,0.974,0.797,1.062,0.956,0.903,0.999,0.959,1.047,1.078 +NM_015596,3.782,0.104,4.464,0.962,2.401,0.112,0.0936,2.667,5.134,3.282,0.107,1.827,1.948,1.501,2.638,2.069,3.639,2.957,9.392,0.141,2.195,1.187,0.107,4.753,0.109,3.815,4.589,2.399,0.108,0.102,3.168,0.123,1.131,0.102,2.831,0.207,0.0989,2.764,0.157,0.1,4.753,0.111,0.118,0.102,4.168,0.0954,2.641,1.031,0.337,7.908,1.091,1.401,5.983,0.494 +NM_015597,0.864,1.256,1.091,0.981,0.888,0.969,1.032,0.92,1.078,0.968,1.067,0.951,0.921,1.1,0.962,1.111,0.974,1.06,1.346,0.906,1.052,1.029,0.927,1.034,1.086,0.947,0.836,0.923,0.998,1.013,0.859,1.006,0.937,0.946,1.142,0.965,0.887,1.087,0.957,0.979,1.063,0.939,1.139,1.188,1.086,1.094,0.958,1.004,1.027,1.102,0.905,0.919,0.977,1.045 +NM_015599,0.567,1.025,0.79,1.212,0.689,1.905,0.905,0.351,0.931,0.733,1.517,0.486,0.439,0.521,1.053,1.523,0.6,1.016,0.968,0.981,0.576,0.701,1.652,0.761,0.904,0.591,0.899,0.586,0.729,1.611,0.624,0.74,0.972,1.291,0.284,1.364,1.955,0.606,1.845,0.622,0.96,1.509,1.253,1.145,0.996,2.073,0.856,0.693,1.744,0.678,1.769,0.764,0.886,1.451 +NM_015600,1.192,0.602,1.391,0.881,1.454,0.987,0.504,1.784,2.359,1.086,0.901,0.999,1.462,0.916,1.312,1.393,1.179,1.24,2.086,0.835,0.68,1.784,0.836,1.435,0.631,1.427,1.023,2.085,0.545,1.914,2.007,0.717,1.464,1.02,1.747,0.741,0.673,2.075,0.983,1.214,1.459,0.865,0.567,1.303,1.47,0.898,1.053,2.166,0.67,0.936,0.883,0.715,1.035,1.084 +NM_015601,0.799,0.934,1.122,0.857,0.927,1.198,0.85,0.626,1.278,1.071,1.095,0.906,0.646,0.911,1.269,1.552,0.916,0.91,1.2,1.079,0.799,0.957,1.03,0.94,0.766,0.791,1.191,0.894,0.831,1.06,0.998,0.935,1.86,1.009,0.776,0.918,1.049,0.896,1.373,0.783,1.04,0.953,0.787,0.996,0.92,1.114,1.208,0.801,1.325,0.882,1.143,0.75,0.858,1.572 +NM_015602,0.752,1.302,1.166,0.823,0.86,1.315,0.667,0.595,1.31,1.274,0.995,0.697,0.718,0.78,0.912,0.891,0.752,0.768,1.228,0.882,0.627,0.824,0.98,1.036,0.824,0.902,1.213,1.022,0.544,1.142,1.09,1.86,1.485,1.608,0.619,0.723,0.967,1.028,1.243,1.097,0.996,1.34,0.593,1.498,0.944,0.82,0.781,0.694,0.626,0.698,0.929,0.764,1.086,1.258 +NM_015603,0.729,0.815,1.078,0.79,0.793,0.89,0.865,0.733,0.891,1.129,0.905,0.774,0.667,0.676,0.794,1.074,0.836,1.014,1.016,0.939,0.694,0.831,1.445,0.721,0.882,0.841,1.059,0.749,0.665,1.262,0.825,1.098,2.599,1.156,0.611,2.137,0.84,0.757,1.489,1.591,0.775,1.006,0.93,1.421,1.011,1.009,1.228,0.926,1.311,0.9,0.926,1.074,1.148,1.94 +NM_015605,1.114,0.938,1.002,0.954,1.209,0.791,0.98,1.024,1.053,1.048,1.037,0.94,0.827,1.326,1.089,1.389,0.809,1.08,1.067,1.006,1.025,1.024,0.761,1.299,0.977,0.954,1.065,0.935,1.491,0.939,1.116,0.885,1.949,0.96,0.704,1.512,0.815,1.166,1.06,1.059,1.105,0.928,1.0,0.778,1.093,0.779,1.156,1.046,1.072,1.157,1.029,0.852,0.994,1.028 +NM_015607,0.639,0.776,1.284,0.674,0.914,0.951,0.512,0.572,1.387,0.952,0.833,0.773,0.504,0.756,1.092,1.406,1.008,0.73,1.191,0.792,0.769,0.873,1.082,1.481,0.498,0.746,1.421,0.875,0.437,0.897,1.102,1.613,3.059,1.245,0.418,1.546,0.951,0.811,1.085,1.131,1.272,0.923,0.64,1.128,1.015,1.065,1.032,0.556,0.872,0.73,1.138,0.959,0.992,2.137 +NM_015608,0.982,1.057,1.069,0.999,0.888,1.023,0.987,0.794,1.158,1.076,0.978,0.84,0.869,1.006,1.054,1.057,0.903,0.892,1.112,1.113,0.943,0.855,0.946,0.943,0.809,0.925,1.029,0.879,0.839,1.15,0.909,1.482,1.52,1.046,0.783,1.078,0.917,0.849,1.135,0.957,1.052,1.055,0.872,1.38,1.143,1.068,1.009,0.887,0.921,0.924,0.998,0.883,0.928,1.439 +NM_015609,0.878,0.922,1.214,0.686,1.139,1.187,0.683,0.858,1.213,1.032,1.112,1.261,0.802,0.779,0.948,1.45,1.005,0.962,1.477,0.947,0.683,0.921,0.899,1.409,0.589,0.913,1.193,1.089,0.498,1.245,1.012,1.0,1.101,1.189,0.584,0.673,1.18,0.939,1.062,0.687,1.389,1.056,0.904,0.851,1.022,1.05,1.385,0.882,0.897,0.778,1.109,0.829,1.24,1.35 +NM_015610,0.639,0.978,1.599,0.521,1.31,1.209,0.523,1.143,1.677,0.963,0.799,1.2,0.756,0.882,1.138,1.408,0.958,1.046,1.581,1.072,0.582,1.365,1.248,1.244,0.43,0.758,1.725,1.363,0.456,1.423,1.671,1.481,2.329,1.185,0.974,0.679,0.985,1.536,0.869,0.968,1.426,1.082,0.539,1.118,1.112,0.855,1.459,1.099,0.762,0.85,0.815,0.864,0.764,2.57 +NM_015613,1.005,1.007,0.942,0.823,0.819,0.955,0.967,1.094,0.817,1.153,0.953,0.974,0.858,0.943,0.892,1.073,0.964,0.893,1.0,1.11,0.957,0.935,1.062,0.991,1.253,1.006,0.978,0.962,1.015,0.977,1.037,0.91,1.097,0.917,1.159,1.011,1.087,1.072,1.143,0.929,1.06,0.926,1.288,0.919,1.072,1.068,1.02,0.873,1.088,1.125,0.978,1.025,1.095,0.94 +NM_015617,1.071,1.082,0.852,1.004,0.968,1.012,0.869,1.186,1.003,1.051,0.932,0.878,0.927,0.943,1.001,0.951,1.112,0.771,1.039,0.984,0.945,0.966,1.085,1.134,1.023,1.095,1.023,0.896,0.864,1.008,1.135,1.054,0.994,0.963,0.983,1.147,0.968,1.142,0.953,0.961,0.889,1.038,0.874,1.059,0.944,0.992,1.094,0.819,0.93,1.001,0.978,0.903,1.073,0.898 +NM_015627,0.843,0.993,0.961,0.927,0.808,1.243,0.697,0.644,1.148,0.837,1.144,1.095,0.982,0.811,0.864,1.305,1.098,1.102,0.793,1.232,0.858,0.933,0.995,0.876,0.963,0.894,0.916,0.808,0.976,1.37,0.863,1.002,1.048,1.012,0.778,1.082,1.015,1.04,1.323,0.781,0.995,1.08,0.87,1.035,0.886,1.382,0.81,0.845,1.154,0.989,1.184,0.903,0.998,1.07 +NM_015629,0.816,0.951,1.001,0.792,0.724,1.084,0.522,0.451,0.985,0.944,0.88,0.801,0.692,0.708,0.976,1.107,0.911,0.77,1.462,0.701,0.818,0.951,1.562,1.086,0.763,1.054,1.313,0.648,0.485,0.959,0.826,1.228,2.935,1.558,0.227,1.0,0.719,1.029,1.532,1.126,0.992,1.159,0.504,1.817,1.074,0.582,1.07,0.804,0.962,0.99,0.791,0.893,1.032,2.163 +NM_015630,0.785,1.04,1.339,0.653,0.943,1.09,0.771,0.861,1.096,0.875,0.904,1.098,0.862,0.751,0.804,1.26,0.968,0.9,0.78,1.199,0.638,1.003,1.156,1.207,0.661,0.553,1.224,1.02,0.604,1.119,0.98,1.802,1.511,1.194,0.543,0.582,0.978,1.127,1.057,1.155,1.158,1.206,0.677,0.73,1.02,0.979,0.9,0.765,1.063,1.013,1.001,0.872,0.661,1.921 +NM_015631,0.815,1.053,0.928,0.821,0.805,1.14,0.698,0.656,0.849,0.892,1.209,0.74,0.726,0.779,1.008,1.43,0.803,0.839,1.063,1.048,0.776,0.732,1.34,1.189,0.845,0.788,1.086,0.784,0.588,1.422,0.971,1.828,2.102,1.562,0.611,0.935,1.034,0.876,1.334,0.935,0.967,1.214,0.892,1.473,0.878,0.904,0.863,0.763,0.873,0.848,1.112,0.88,0.875,1.486 +NM_015633,0.907,0.999,1.203,0.838,1.016,1.164,1.006,0.794,1.075,0.872,0.943,1.011,0.937,0.903,0.929,1.189,1.022,0.952,0.836,1.08,0.738,0.862,0.941,1.124,0.831,0.906,1.115,0.939,0.756,1.007,1.169,1.094,1.865,1.089,0.897,0.879,1.006,0.952,1.342,1.185,0.964,1.028,0.893,2.577,1.127,1.001,1.01,0.961,1.052,0.99,1.023,0.933,0.802,1.268 +NM_015634,1.035,1.111,1.032,0.851,0.906,0.916,0.883,0.66,1.237,1.005,0.942,0.66,0.632,0.819,1.014,1.198,0.856,0.802,1.112,0.779,0.751,0.76,1.036,0.933,0.816,0.985,1.258,0.852,0.533,1.044,1.083,1.165,1.257,1.006,0.548,1.086,1.171,0.844,1.256,0.666,1.1,0.993,0.864,0.849,0.937,0.989,1.004,0.775,1.152,0.933,1.294,0.872,0.961,1.582 +NM_015636,0.924,0.821,1.215,0.598,1.31,0.966,0.468,0.722,1.436,1.409,0.828,1.207,0.678,0.733,0.99,1.343,1.124,1.047,1.569,0.835,0.52,1.287,1.133,1.606,0.537,1.023,1.268,1.097,0.382,1.123,1.207,1.015,1.475,0.952,0.439,0.849,1.0,1.335,0.903,1.018,1.393,0.994,0.588,0.699,1.255,0.86,1.327,1.145,0.984,1.148,0.964,0.786,0.958,1.1 +NM_015638,0.951,0.851,1.0,1.198,0.779,1.223,0.762,0.714,0.935,0.827,1.095,0.847,0.762,0.707,0.897,1.152,0.987,1.034,1.124,0.84,0.729,0.984,1.368,0.992,1.015,0.995,0.943,0.631,0.784,1.172,0.812,1.171,1.091,1.253,0.745,0.819,0.954,0.852,1.458,1.067,0.87,1.028,0.846,1.434,0.941,0.803,0.954,0.9,0.829,1.066,1.046,1.019,1.1,1.117 +NM_015640,0.715,0.949,1.597,0.427,1.142,0.82,0.549,0.514,1.633,1.51,0.645,1.326,0.736,0.481,0.697,1.189,1.053,1.192,1.171,0.856,0.593,1.012,1.395,1.464,0.439,0.622,1.418,1.245,0.352,0.934,1.04,1.196,1.796,0.923,0.14,0.797,0.874,1.242,1.725,0.941,1.419,0.992,0.546,1.363,1.356,0.889,1.274,0.429,1.215,0.788,1.033,0.979,1.015,1.594 +NM_015641,0.856,0.869,0.775,0.928,0.83,1.115,0.816,0.659,0.884,0.933,1.141,1.104,0.808,0.882,0.871,0.959,0.729,0.767,0.742,1.254,0.767,0.709,1.129,0.782,0.931,0.926,0.876,0.986,1.009,1.265,0.79,1.02,1.267,1.029,0.783,0.975,0.871,0.834,1.589,0.992,1.104,0.94,1.32,1.379,0.78,1.419,1.163,0.832,1.339,0.955,1.103,0.818,1.058,1.22 +NM_015642,0.704,1.421,0.848,0.831,0.768,1.127,1.111,0.886,0.816,0.709,1.384,0.585,0.799,0.71,0.848,1.298,0.683,0.89,0.959,1.008,0.784,0.713,1.532,0.745,1.169,0.803,0.588,0.717,1.042,1.871,0.783,3.047,1.448,1.533,0.753,0.832,1.209,0.982,1.547,0.998,0.875,2.114,0.857,1.597,0.682,0.868,0.841,0.731,0.811,0.804,1.336,1.115,0.757,0.96 +NM_015644,1.025,0.876,0.878,1.101,0.958,1.054,0.802,1.067,0.954,0.949,0.935,0.976,1.004,0.966,1.079,1.034,1.062,0.896,0.988,0.935,1.055,0.999,0.87,1.005,0.85,0.995,1.138,1.012,1.358,0.858,0.992,1.209,0.986,1.083,0.848,0.817,0.92,0.986,1.054,1.111,1.051,1.062,0.934,0.991,0.973,0.91,0.936,0.969,0.959,0.858,1.009,0.903,1.032,0.985 +NM_015645,0.651,1.305,0.652,0.891,0.707,1.228,0.798,0.618,0.625,0.682,1.226,0.749,0.627,0.594,0.952,1.362,0.579,0.719,0.633,0.861,0.593,0.736,1.541,0.614,1.014,0.663,0.583,0.767,0.493,1.711,0.571,10.43,1.449,2.314,0.572,1.177,1.062,0.76,1.658,1.543,0.766,1.965,1.041,1.017,0.594,1.059,0.79,0.586,0.696,0.645,1.908,1.383,0.717,1.108 +NM_015646,0.572,1.188,1.291,0.91,0.75,1.891,0.973,0.71,0.756,0.693,1.117,0.72,0.767,0.494,1.109,2.621,0.755,1.053,0.636,1.213,0.311,0.72,1.29,1.125,0.663,0.434,1.461,0.7,0.587,1.87,0.881,1.412,1.851,1.829,0.379,0.57,1.552,0.939,2.286,1.125,0.867,1.288,0.868,0.601,0.887,1.521,0.992,0.668,1.819,0.75,1.438,1.068,0.46,1.801 +NM_015649,1.118,1.046,0.967,0.921,1.003,0.966,0.845,0.852,1.11,0.937,1.012,0.981,0.942,0.932,0.92,0.98,1.059,1.191,1.003,0.88,0.889,0.954,0.971,0.908,0.954,1.029,0.953,1.006,0.989,1.128,1.016,0.993,1.143,1.035,1.074,0.851,0.958,1.128,1.138,1.081,0.892,1.119,0.933,1.143,1.002,1.122,0.877,0.964,1.013,1.114,0.871,0.917,0.903,1.02 +NM_015650,0.937,1.017,0.893,1.033,1.016,0.954,0.928,1.087,1.059,1.006,1.12,1.041,0.903,0.895,0.807,0.973,0.863,1.002,0.886,0.984,1.024,0.891,1.148,1.028,0.996,0.88,0.92,1.019,0.702,1.056,0.843,1.167,1.191,0.915,0.896,1.018,0.889,0.929,1.098,0.874,1.051,0.941,1.274,1.213,1.041,0.904,1.112,0.877,1.038,0.928,1.022,0.975,0.97,1.507 +NM_015652,1.102,0.888,1.187,1.024,1.196,0.826,0.863,1.119,1.027,1.044,0.763,1.085,0.93,0.902,1.0,0.893,1.114,1.02,1.192,1.059,0.858,1.049,1.06,0.969,0.878,1.198,1.03,1.269,0.911,0.918,1.16,0.877,0.9,0.909,1.987,0.951,0.918,1.19,1.084,0.979,1.006,0.964,0.867,1.031,1.073,1.174,0.946,1.266,0.875,1.069,0.908,0.825,1.031,1.078 +NM_015653,1.041,0.965,0.988,1.006,1.029,0.982,0.977,1.003,1.254,1.115,0.997,0.873,0.947,0.9,0.892,1.044,0.923,1.034,0.912,0.941,1.078,0.914,1.098,1.21,0.978,0.959,1.095,1.331,1.448,1.019,0.978,1.0,1.224,0.916,1.018,1.069,0.984,1.03,1.182,0.91,0.948,0.915,1.127,0.915,1.008,0.86,1.009,1.03,0.975,0.918,0.91,1.117,1.044,1.024 +NM_015657,2.109,1.943,2.348,1.908,2.109,1.8119999999999998,1.914,1.823,1.8900000000000001,2.2,1.814,2.376,1.956,1.958,1.951,2.1029999999999998,2.0549999999999997,2.181,2.276,1.978,1.827,1.884,1.776,2.6719999999999997,1.5710000000000002,1.9419999999999997,3.4699999999999998,2.059,1.862,1.754,2.089,1.96,1.8940000000000001,1.8399999999999999,1.861,1.9989999999999999,1.895,1.922,3.184,1.7469999999999999,2.274,1.809,1.621,2.358,2.912,1.94,2.875,1.9889999999999999,1.834,2.754,2.144,2.509,3.293,1.782 +NM_015658,1.054,0.935,0.945,1.029,0.856,0.832,0.607,0.593,1.173,1.111,0.91,0.987,0.935,0.905,0.847,0.982,1.19,0.936,1.572,0.709,1.004,1.285,1.01,1.163,0.801,1.48,1.214,0.84,0.681,0.921,0.932,0.892,2.248,0.941,0.619,0.971,0.865,1.273,2.019,0.996,0.904,0.871,0.821,1.875,1.185,0.811,1.113,1.161,1.258,1.126,0.879,0.981,1.061,1.504 +NM_015660,0.859,1.209,0.877,0.907,0.814,1.18,1.052,0.958,0.883,0.724,1.5,0.824,1.036,0.799,0.914,1.36,0.846,1.239,0.88,1.042,0.798,0.739,1.334,0.845,0.927,0.872,0.874,0.89,0.857,1.253,0.855,1.259,0.873,1.307,0.85,0.801,1.407,0.819,1.228,0.796,0.916,1.491,0.871,1.275,0.728,1.032,1.039,0.713,1.037,0.878,1.277,1.023,1.072,1.412 +NM_015665,0.978,0.948,0.914,1.033,0.911,1.042,0.729,0.753,0.87,0.99,0.98,0.844,0.788,0.704,0.849,1.509,0.853,0.813,1.231,1.216,0.867,0.982,1.327,0.949,0.996,0.862,1.014,0.692,0.799,1.079,0.843,1.062,1.856,1.258,0.646,1.148,0.907,0.871,1.666,0.957,0.787,1.056,0.882,1.347,0.85,1.037,0.928,0.814,1.004,0.838,0.997,1.058,1.024,1.259 +NM_015666,1.014,1.046,0.968,0.906,1.044,0.981,0.714,1.174,1.035,1.028,0.916,0.921,0.895,0.911,0.897,0.873,1.106,0.887,0.898,1.044,0.93,1.022,0.928,0.914,1.056,0.932,1.016,0.964,0.987,1.111,0.857,1.114,1.045,1.012,0.791,0.835,1.002,1.021,1.318,1.08,0.922,0.873,0.903,1.066,1.02,0.958,0.939,0.998,1.039,1.032,0.858,0.954,0.845,1.075 +NM_015667,0.916,1.07,0.96,1.119,0.954,1.11,0.848,0.856,0.975,1.018,1.059,0.857,0.915,1.175,1.018,1.161,0.94,0.943,0.981,0.96,1.001,0.968,1.057,1.033,0.945,0.93,0.804,0.825,0.974,1.014,0.96,1.011,1.054,0.968,1.038,1.074,0.994,0.878,1.015,0.953,0.842,0.92,0.903,0.94,1.031,1.182,1.016,1.174,1.033,1.055,0.865,1.077,1.118,1.037 +NM_015669,1.029,1.025,1.008,0.91,1.07,1.044,1.064,0.936,0.905,1.002,0.877,1.015,1.026,0.934,0.882,0.926,0.949,0.943,1.072,1.264,0.956,1.037,1.131,0.998,1.065,1.004,0.922,1.004,1.085,1.089,1.007,1.325,0.908,0.971,0.952,0.799,1.009,0.941,1.247,1.019,1.008,1.015,0.79,1.034,1.067,1.066,0.879,0.99,1.032,1.112,0.993,0.942,1.103,1.961 +NM_015670,0.883,0.832,0.944,0.897,0.917,1.033,0.682,0.689,1.075,1.091,0.981,1.129,0.907,0.789,0.871,1.101,1.04,0.945,1.004,0.722,0.902,1.193,1.128,1.297,0.877,1.165,1.208,0.891,0.744,1.103,0.978,1.1,2.269,1.043,0.552,0.868,0.917,1.269,1.247,1.015,1.07,0.944,0.853,1.2,1.061,0.836,1.177,0.98,0.991,0.867,0.862,0.891,0.896,1.501 +NM_015671,0.978,1.235,1.031,0.84,0.905,1.071,0.906,0.788,1.102,1.088,0.849,1.165,0.849,0.949,0.872,1.123,0.865,0.905,0.836,0.917,0.818,0.852,1.811,1.191,0.836,0.931,1.355,1.152,0.719,0.956,0.899,1.273,2.205,0.838,0.894,1.464,0.858,1.307,1.559,1.65,1.135,0.884,0.862,1.632,1.091,1.045,1.374,0.867,1.059,1.033,1.197,1.051,1.134,1.956 +NM_015675,1.689,0.968,0.979,0.783,2.313,0.837,0.741,3.008,2.581,0.639,0.677,1.044,1.269,1.422,1.51,0.718,1.083,0.825,0.94,0.707,0.85,1.451,0.67,0.8,1.248,1.569,0.984,2.139,0.629,0.764,2.291,1.731,1.413,1.092,7.85,0.71,0.62,2.354,1.042,2.527,0.987,0.943,0.929,0.962,0.777,0.841,1.451,2.113,0.681,0.905,0.661,0.743,0.882,1.349 +NM_015677,0.831,1.202,1.212,0.278,1.355,2.52,0.582,1.646,0.493,0.987,1.369,1.787,1.364,0.48,0.403,0.652,0.389,0.937,0.247,1.962,0.2,1.626,1.654,0.832,0.811,0.483,1.912,1.235,0.83,1.893,1.154,0.879,2.518,1.038,0.753,0.351,1.636,1.889,1.165,0.241,1.379,0.977,0.908,0.533,0.787,0.993,1.14,1.251,1.656,0.959,1.578,0.529,0.37,1.492 +NM_015678,0.854,1.037,0.949,0.986,0.908,0.917,1.164,0.909,0.922,0.972,1.081,0.946,1.02,1.178,0.9,1.002,0.862,0.896,0.979,1.036,0.968,0.944,1.082,1.006,0.942,1.023,0.9,1.016,0.93,0.987,0.959,1.251,1.113,1.045,1.041,0.932,1.015,1.057,1.053,1.017,0.885,1.297,0.88,1.021,1.031,1.008,0.96,0.909,0.908,1.023,1.11,1.219,0.827,1.19 +NM_015679,0.565,1.08,1.035,0.631,0.759,1.104,0.601,0.685,0.843,1.03,1.122,0.942,0.652,0.524,0.788,1.568,0.774,0.806,1.461,0.819,1.073,1.167,1.121,1.096,0.647,0.888,1.215,0.768,0.714,1.185,0.83,1.696,1.868,1.317,0.441,1.341,0.989,0.813,1.302,0.96,0.91,1.073,0.716,1.253,0.922,0.926,1.058,0.802,0.914,0.809,0.892,0.897,1.053,1.912 +NM_015680,0.713,0.83,0.97,0.708,0.953,1.407,0.605,0.723,1.145,0.93,0.877,0.719,0.708,0.739,1.087,1.605,0.785,1.167,1.108,0.972,0.838,1.542,1.411,1.077,0.603,1.573,0.966,0.841,0.683,1.5,1.044,0.998,1.577,1.237,0.704,0.966,0.947,1.547,1.694,0.906,0.998,1.137,0.581,1.389,0.823,0.952,0.954,1.676,1.167,0.905,0.869,0.653,0.761,2.2 +NM_015681,0.995,0.912,0.87,1.059,0.914,1.309,0.93,0.888,1.022,1.0,1.094,0.973,1.007,0.744,0.973,1.231,0.802,1.1,1.2,0.884,0.878,1.03,1.107,1.114,0.919,0.961,1.05,0.953,0.82,0.947,0.856,1.157,1.557,1.173,0.814,0.909,0.971,1.0,1.416,0.867,0.914,1.147,1.116,1.232,0.995,0.99,0.83,1.061,0.94,0.822,1.072,0.925,0.952,1.003 +NM_015684,1.103,1.13,1.335,0.869,1.104,0.988,0.782,0.948,1.401,1.168,1.115,0.922,1.125,1.001,1.083,1.391,0.98,1.185,1.294,0.945,0.608,1.105,1.065,1.242,0.812,1.017,1.268,1.202,0.651,0.901,1.173,1.085,1.234,1.142,0.839,0.797,1.008,1.254,1.078,0.849,1.166,0.916,0.913,0.922,1.286,0.853,1.104,1.245,0.877,1.09,0.926,0.834,0.931,1.155 +NM_015685,1.994,1.436,1.79,1.9779999999999998,2.259,2.388,2.0780000000000003,1.5499999999999998,1.728,1.7189999999999999,2.284,1.593,1.9249999999999998,1.407,2.034,2.767,2.151,2.043,1.93,2.018,1.5210000000000001,1.986,2.279,1.6640000000000001,1.6260000000000001,2.14,1.685,1.841,1.646,2.601,2.154,1.3730000000000002,1.548,2.479,3.502,1.799,2.3369999999999997,2.231,3.0839999999999996,1.37,2.234,1.908,2.182,1.8199999999999998,2.263,1.973,1.8599999999999999,2.4210000000000003,2.3529999999999998,2.009,2.3040000000000003,1.318,1.795,2.075 +NM_015686,0.973,1.01,1.072,0.923,1.013,0.948,1.096,1.084,0.791,0.999,1.082,1.133,1.035,1.206,1.327,1.129,1.062,0.994,0.875,0.985,1.111,1.071,0.944,1.054,0.862,0.954,1.057,1.182,1.39,1.106,0.945,0.992,0.911,1.089,1.097,0.92,0.925,0.991,0.93,0.997,0.986,1.059,1.026,0.996,0.963,0.872,0.83,1.184,1.09,0.925,1.011,1.139,1.001,0.917 +NM_015690,0.94,0.94,1.02,1.001,0.973,0.984,0.655,0.606,0.987,1.012,0.872,0.874,0.689,0.814,0.944,1.133,0.931,0.905,0.652,1.246,0.594,0.812,1.459,0.913,0.719,0.896,1.043,0.817,0.67,1.306,0.812,1.949,1.531,0.978,0.627,0.919,0.999,0.847,1.19,1.328,0.986,0.939,1.059,2.119,0.877,0.932,0.835,0.763,0.925,0.897,1.125,1.03,0.913,2.718 +NM_015691,1.141,0.755,1.299,0.839,1.018,0.69,0.723,1.049,1.389,0.996,0.772,1.123,1.023,0.985,0.925,0.853,1.081,1.101,1.581,0.715,1.069,1.51,0.837,1.321,0.935,1.142,1.223,0.942,0.629,0.898,1.338,1.94,1.42,1.061,0.885,0.724,0.868,1.39,0.744,1.332,1.26,0.991,0.644,0.743,1.374,0.638,0.892,1.267,0.648,1.128,0.924,1.22,1.129,0.739 +NM_015693,0.918,0.979,1.183,1.058,1.081,1.003,0.992,1.008,1.137,1.007,1.135,0.961,0.861,0.869,1.275,1.028,1.098,0.965,1.284,1.007,1.0,1.112,0.989,1.115,0.91,0.928,0.899,1.091,0.838,0.981,1.191,1.058,1.123,1.043,0.945,0.984,1.161,1.091,1.087,0.842,1.099,0.964,1.034,0.973,0.989,1.114,1.021,1.0,0.933,0.863,1.059,1.0,1.0,1.041 +NM_015694,0.764,1.207,1.212,0.746,0.943,0.974,0.808,0.624,1.012,1.162,0.904,0.904,0.741,0.762,0.941,0.851,0.97,0.87,0.827,0.968,0.688,0.923,1.64,0.94,0.884,0.77,1.077,0.87,0.653,1.31,0.92,1.484,1.166,1.08,0.61,1.017,0.965,1.128,1.339,1.078,0.984,1.188,0.882,1.21,0.938,0.994,1.074,0.825,1.072,0.835,1.116,0.989,0.88,1.404 +NM_015697,0.853,1.123,1.17,0.717,1.02,1.109,0.51,0.829,1.212,0.962,1.129,1.308,0.907,0.79,1.192,1.841,0.821,0.944,1.806,0.892,0.541,1.158,1.568,1.201,0.502,0.955,1.221,1.023,0.369,0.915,1.073,1.211,1.875,1.035,0.211,0.668,1.149,0.995,1.234,0.407,1.316,0.901,0.881,1.061,1.063,1.261,0.932,0.969,1.38,0.814,1.389,0.906,1.153,1.235 +NM_015698,0.421,1.076,1.015,0.547,0.822,1.345,0.881,0.449,1.019,0.831,0.86,0.687,0.465,0.48,0.868,1.335,0.856,0.967,0.695,1.179,0.421,0.829,1.233,1.095,0.49,0.566,1.218,0.786,0.594,1.472,0.866,1.625,1.809,1.201,0.324,1.02,0.883,0.927,1.353,0.675,1.155,1.113,0.775,0.682,0.858,1.016,1.302,0.569,1.021,0.6,1.036,0.848,0.704,1.444 +NM_015700,0.471,0.976,1.09,0.659,0.727,1.4,0.607,0.691,0.86,0.697,1.595,0.703,0.508,0.556,1.048,2.476,0.678,1.03,1.543,1.116,0.514,0.631,1.711,0.897,0.601,0.621,1.191,0.76,0.442,1.36,0.764,1.419,2.334,1.901,0.319,0.867,1.278,0.683,1.191,0.693,0.925,1.214,0.601,0.955,0.702,1.243,0.975,0.635,1.277,0.696,1.177,0.702,0.97,1.867 +NM_015702,0.594,0.771,1.325,0.586,1.11,1.277,0.586,0.896,1.365,0.978,1.061,0.974,0.695,0.656,1.047,1.719,0.949,0.973,1.731,0.719,0.506,1.027,1.104,1.48,0.403,0.627,1.606,1.056,0.4,0.988,1.314,1.017,1.739,1.318,0.59,0.573,0.994,1.147,1.228,0.672,1.269,0.93,0.576,0.806,1.027,1.154,1.092,0.844,1.104,0.809,1.067,0.713,0.857,1.798 +NM_015703,0.878,0.872,0.578,0.961,0.753,1.065,0.879,0.548,0.9,1.098,0.818,0.924,1.067,0.478,0.814,1.37,0.879,0.976,0.713,1.125,0.834,0.603,1.224,0.857,1.088,1.363,0.657,0.827,0.997,0.889,0.522,1.109,2.016,1.229,0.52,1.261,0.616,0.603,2.333,1.232,0.858,1.184,0.852,2.387,1.358,0.947,1.148,1.172,1.246,0.969,0.837,1.278,1.364,2.08 +NM_015710,0.641,1.199,1.229,0.608,0.9,1.09,0.522,0.613,1.105,0.867,1.21,1.098,1.08,0.623,0.854,0.977,0.853,0.665,0.942,1.374,0.365,0.872,1.484,1.181,0.842,0.926,1.135,1.071,0.329,1.49,0.811,1.318,1.152,1.487,0.19,1.236,0.932,1.319,0.805,0.698,1.148,1.692,0.659,0.759,0.922,0.905,1.042,0.868,0.729,0.67,0.856,0.575,0.818,0.96 +NM_015711,0.98,0.933,1.047,0.896,0.992,0.943,0.85,0.851,0.923,1.058,1.0,1.079,1.057,0.876,1.068,0.951,1.162,0.927,0.935,0.894,0.978,1.129,1.181,0.989,0.957,0.961,1.088,1.018,0.787,0.969,0.973,1.051,1.128,1.049,1.111,1.016,1.027,0.962,0.993,1.128,0.99,1.051,0.871,0.909,1.057,0.904,1.024,1.242,0.9,0.936,0.983,0.881,0.897,1.086 +NM_015713,0.808,1.061,1.047,0.773,0.873,1.157,0.841,0.947,0.839,0.778,1.032,0.882,0.951,0.85,0.979,1.355,0.685,0.893,1.252,1.116,0.906,0.998,1.193,0.826,0.897,0.861,1.083,1.004,0.704,0.937,1.076,1.34,1.708,1.231,0.62,1.364,0.82,0.827,0.893,1.151,1.049,0.996,0.957,0.918,0.789,1.217,0.841,0.791,0.959,0.887,1.032,0.881,1.058,3.419 +NM_015714,0.772,2.21,0.928,2.157,0.84,1.037,1.747,0.825,0.788,0.618,1.185,1.02,0.787,0.704,0.769,1.203,0.697,0.779,0.762,0.909,0.736,0.968,0.73,0.851,3.091,0.8,1.037,0.924,0.769,0.966,0.972,2.615,2.99,3.6,0.779,0.78,1.379,0.779,4.825,39.57,0.717,2.629,0.773,2.596,2.032,0.888,1.749,0.79,0.822,0.78,1.088,5.096,0.701,2.893 +NM_015715,1.048,0.928,1.155,0.949,0.976,0.931,0.852,1.067,1.175,1.413,0.892,1.24,1.125,1.02,0.916,1.022,1.001,0.881,1.313,0.919,1.193,0.906,1.032,1.167,0.906,1.269,1.518,0.957,1.132,0.909,1.157,0.87,0.96,0.92,0.964,0.985,0.959,1.149,0.925,0.888,1.293,0.904,0.935,0.931,1.845,0.917,1.197,0.999,0.88,1.678,1.096,0.927,1.523,0.923 +NM_015716,1.015,1.012,0.864,1.017,1.109,0.859,0.835,0.991,1.12,1.115,0.951,1.0,0.951,0.876,1.089,0.966,0.959,0.983,0.96,0.868,1.115,1.039,1.116,0.954,1.07,1.086,1.127,0.942,1.357,1.048,1.055,0.987,0.841,1.075,0.95,0.993,0.971,1.04,1.028,0.994,0.89,0.916,1.182,0.937,0.92,0.967,0.894,1.146,0.914,1.07,1.011,0.923,1.059,0.968 +NM_015717,2.174,0.908,1.276,0.97,2.792,0.953,0.911,1.558,2.201,1.464,0.798,2.442,1.568,1.923,1.717,1.107,2.364,1.151,2.166,0.99,2.744,3.13,0.916,1.55,0.906,1.929,1.738,1.905,2.529,1.266,4.185,0.974,1.168,1.136,0.853,0.796,0.965,1.981,0.788,0.803,2.688,0.908,0.803,0.929,2.033,0.759,0.898,1.225,0.67,1.571,0.911,0.81,1.197,0.836 +NM_015718,1.0,0.972,1.055,1.085,1.052,0.974,1.025,0.958,1.093,0.963,1.157,0.957,1.023,0.88,0.818,1.036,1.014,1.021,1.048,0.961,0.886,0.883,0.953,0.933,0.957,0.868,1.084,1.083,0.77,0.972,0.916,0.954,1.014,0.977,1.03,0.989,1.162,0.878,1.028,0.906,1.022,1.002,1.077,0.953,0.948,1.058,1.143,0.888,1.015,1.113,0.974,0.963,0.966,0.952 +NM_015720,0.782,1.412,0.741,1.029,0.569,1.178,0.876,0.673,0.721,0.737,1.36,0.675,0.849,0.659,0.899,1.708,0.768,0.858,0.762,1.321,0.823,0.856,1.423,0.736,1.407,0.975,0.805,0.618,1.013,1.711,0.768,1.859,2.65,1.855,0.605,0.944,0.86,0.548,2.273,0.859,0.725,1.259,0.961,1.879,0.753,1.13,0.81,0.766,0.991,0.84,1.022,0.913,0.742,1.346 +NM_015721,0.741,0.885,1.518,0.634,1.182,0.741,0.721,0.378,1.359,1.412,0.724,0.954,0.575,0.735,0.734,0.909,0.962,0.909,1.239,0.742,0.635,0.984,1.515,1.14,0.602,0.895,1.406,0.786,0.517,0.907,0.923,0.955,1.372,1.044,0.226,0.976,1.025,1.311,1.054,0.946,1.135,1.238,0.903,1.131,1.314,0.874,0.979,0.757,1.298,0.963,1.079,0.917,1.207,1.513 +NM_015722,1.047,1.037,0.958,0.974,0.851,1.063,1.298,1.057,0.887,0.98,1.072,0.895,1.048,0.949,1.03,0.985,1.001,0.918,1.066,0.914,1.002,0.906,0.94,1.007,1.099,0.942,0.918,1.078,0.883,0.819,0.999,1.061,0.967,1.338,1.085,1.093,1.1,1.161,1.046,0.971,1.048,1.024,0.975,0.91,0.845,1.025,2.012,0.99,1.037,0.962,0.983,1.006,0.989,1.132 +NM_015725,1.013,1.078,0.924,0.989,1.026,1.016,1.152,1.005,1.012,0.972,0.814,0.969,1.081,0.964,1.036,1.042,0.993,0.962,0.906,0.938,1.141,0.875,0.91,0.95,0.96,1.041,0.903,1.087,1.097,0.925,1.069,0.894,0.97,0.923,0.983,0.984,0.967,1.0,0.964,1.174,0.954,0.961,1.064,1.107,1.015,0.827,1.211,0.999,0.978,0.865,0.998,1.088,0.988,1.104 +NM_015726,0.763,1.42,1.161,0.76,0.925,1.091,0.703,0.619,1.11,0.882,1.179,0.873,0.651,0.811,1.157,1.434,0.785,0.872,1.223,1.098,0.512,0.973,1.241,0.992,0.727,0.845,1.242,0.897,0.507,1.331,0.941,1.886,1.674,1.305,0.338,1.239,1.17,1.002,1.1,0.869,1.043,1.45,0.855,0.881,0.849,1.038,0.875,0.693,0.797,0.688,1.174,0.852,0.871,1.92 +NM_015727,1.0,0.881,1.03,1.015,1.034,0.949,1.15,1.016,1.005,0.889,0.991,1.021,0.982,1.032,1.066,0.977,0.961,1.102,1.031,0.932,0.985,0.946,0.894,1.064,1.091,0.917,0.902,0.898,0.983,0.976,1.089,0.964,1.006,0.957,1.045,1.072,1.03,1.06,1.051,0.991,0.979,1.023,0.817,0.999,1.099,0.946,1.083,0.944,1.044,1.048,1.0,1.12,1.05,0.936 +NM_015833,1.066,1.007,0.85,1.056,0.933,1.088,1.001,1.077,0.967,1.176,1.087,1.122,0.99,1.0,0.937,0.983,0.923,0.99,0.919,0.905,1.04,1.084,1.21,1.039,0.964,1.092,1.01,1.095,0.893,0.987,1.079,0.957,1.032,0.978,0.967,1.052,0.943,1.033,0.96,0.891,0.913,0.987,0.989,1.101,0.984,1.007,0.915,1.031,0.915,1.095,0.995,0.951,0.853,1.04 +NM_015834,0.89,0.897,1.02,1.026,0.891,1.057,0.955,0.966,1.098,0.827,1.015,1.014,0.975,0.836,1.385,1.053,1.024,1.002,1.016,0.901,1.037,1.084,0.948,1.05,1.016,1.056,1.134,1.063,0.802,1.033,0.998,1.102,1.021,1.087,1.013,0.961,0.973,0.967,0.932,1.192,0.901,1.034,0.852,1.111,0.97,0.912,1.074,0.876,0.888,0.857,0.991,0.875,0.956,0.946 +NM_015836,0.787,1.088,1.259,0.846,0.928,1.012,0.821,0.579,1.062,0.981,1.105,0.802,0.759,0.899,0.982,1.203,0.958,0.806,1.087,1.096,0.874,0.906,1.341,0.951,0.783,0.865,1.386,0.879,0.703,1.112,0.791,0.906,1.93,1.035,0.614,0.9,1.114,0.884,1.287,0.676,1.047,1.315,1.278,1.272,0.877,1.106,1.055,0.729,1.327,0.914,1.41,0.811,0.971,1.601 +NM_015837,0.971,0.885,1.121,0.851,1.014,1.003,0.952,0.88,1.355,1.077,0.923,0.992,1.054,1.278,1.031,1.187,1.106,1.09,1.108,1.139,1.057,0.749,0.879,0.99,1.068,1.034,0.939,1.19,3.019,1.021,0.799,0.93,1.179,1.259,0.889,0.947,1.03,0.909,0.926,0.995,0.923,0.978,1.018,0.942,0.833,0.935,1.021,1.005,1.084,0.975,1.112,1.073,1.025,1.369 +NM_015841,0.382,1.077,1.37,0.468,0.613,1.218,1.019,0.255,0.822,0.751,0.622,0.557,0.326,0.316,0.78,1.183,1.058,0.927,0.667,1.306,0.371,0.567,1.685,0.767,0.437,0.402,1.01,0.513,0.507,1.158,0.658,2.497,2.585,1.239,0.136,1.532,1.003,0.558,1.661,1.588,0.777,1.429,0.664,1.808,0.803,0.825,0.759,0.42,1.428,0.522,1.112,1.146,0.798,3.656 +NM_015845,0.873,0.974,1.03,1.063,1.061,0.829,0.888,0.832,0.925,1.163,1.049,0.785,1.088,0.918,1.044,0.985,1.077,0.849,0.969,1.281,1.072,0.72,0.892,0.997,1.114,1.054,0.977,0.89,0.994,1.064,0.987,0.887,0.948,1.103,0.943,1.01,1.18,1.025,1.051,0.874,1.065,1.197,0.991,1.17,1.072,1.115,1.012,0.977,1.037,0.884,0.969,1.132,1.045,0.922 +NM_015848,1.001,1.012,1.141,0.963,0.976,1.003,0.827,0.921,0.901,0.919,0.974,1.069,1.033,1.008,1.001,1.026,1.125,0.963,0.87,0.968,1.155,1.043,1.049,1.069,1.05,0.91,0.972,1.027,0.862,0.948,0.906,0.986,0.905,0.907,0.921,0.981,1.053,1.09,1.088,1.073,0.944,0.861,0.925,0.934,1.078,0.996,1.01,0.946,1.182,0.789,1.031,0.934,1.012,0.837 +NM_015849,1.078,1.129,0.969,6.509,0.993,1.079,0.931,0.953,1.082,1.078,0.967,1.099,0.976,1.083,1.094,0.976,1.037,0.894,0.854,1.013,0.923,1.041,0.79,1.016,0.957,1.157,1.063,0.969,0.867,1.035,1.022,1.11,0.886,1.035,1.032,1.034,0.94,1.033,1.065,0.972,1.074,1.011,0.995,0.93,1.052,0.868,1.051,1.075,0.92,1.014,0.986,0.952,0.981,0.989 +NM_015852,1.102,0.995,0.918,1.007,1.013,1.112,1.051,1.084,0.951,0.903,1.085,1.198,1.009,1.02,1.297,1.09,1.055,0.956,0.977,0.826,1.21,0.954,1.19,0.947,1.036,0.867,0.997,0.888,1.008,1.065,1.018,0.763,0.978,1.043,1.121,0.955,1.187,0.947,1.05,0.886,1.182,1.136,1.148,1.041,1.118,1.083,0.914,0.926,0.906,1.089,0.92,0.974,0.998,1.039 +NM_015853,0.871,0.984,1.236,0.733,0.873,1.094,0.613,0.549,1.154,1.052,1.105,0.864,0.879,0.694,0.907,1.277,0.928,0.967,0.983,1.017,0.373,0.851,1.224,1.211,0.616,1.056,1.173,0.92,0.449,1.284,1.076,1.497,1.836,1.428,0.715,1.31,0.968,1.118,1.49,1.136,1.111,1.284,0.629,1.222,1.027,0.691,0.879,1.126,0.768,0.876,0.934,0.822,0.974,1.257 +NM_015854,0.956,0.968,0.963,0.828,1.146,0.88,0.906,1.287,0.971,0.939,0.946,1.068,0.915,0.88,1.409,0.927,1.043,1.103,1.135,1.142,0.933,0.959,1.111,0.97,0.989,1.116,1.252,1.001,0.971,0.977,1.017,1.012,0.9,1.029,0.826,0.99,1.006,1.043,0.979,1.101,0.909,0.92,1.156,0.938,1.049,0.938,1.04,1.017,0.844,0.916,0.927,0.879,0.913,1.073 +NM_015855,1.014,1.105,0.955,0.923,1.006,0.957,0.867,1.192,1.117,1.024,0.955,0.997,0.754,1.038,0.987,0.898,1.211,0.955,0.915,0.974,1.154,1.018,1.159,1.085,0.938,0.946,0.97,0.915,0.868,1.069,1.0,0.916,0.951,1.04,0.956,0.949,0.866,1.16,1.079,0.986,0.906,1.05,1.015,0.814,1.167,1.135,0.948,1.008,1.025,0.89,0.933,1.175,0.885,1.15 +NM_015866,2.205,1.99,2.595,1.8530000000000002,2.316,1.7759999999999998,1.838,1.9220000000000002,2.358,2.106,1.704,1.974,2.035,2.053,2.252,1.818,2.114,2.0709999999999997,2.3579999999999997,2.122,1.892,2.05,1.767,2.1260000000000003,1.65,2.107,2.5919999999999996,1.949,1.786,1.7959999999999998,2.484,2.149,2.317,2.191,2.529,1.921,1.804,2.089,2.125,2.0759999999999996,2.344,1.931,1.7209999999999999,1.565,2.3449999999999998,1.83,1.949,2.163,1.928,2.318,1.888,1.833,2.1639999999999997,2.185 +NM_015869,1.01,0.966,0.943,1.008,1.016,1.052,1.109,1.184,1.013,1.008,0.968,1.005,0.867,0.973,0.935,0.911,1.009,1.083,0.988,1.053,1.031,0.959,1.032,1.023,1.127,0.908,1.058,0.934,1.062,0.972,1.034,1.043,0.965,1.064,1.006,0.919,0.932,1.014,1.084,1.053,0.962,1.165,0.925,1.089,0.997,0.992,1.106,0.975,0.873,1.055,1.087,0.964,0.972,1.056 +NM_015873,0.172,2.671,0.247,1.628,0.205,4.246,2.696,0.165,0.248,0.207,3.061,0.223,0.177,0.216,1.435,3.565,0.211,3.063,0.196,4.946,0.186,0.205,2.661,0.219,1.62,0.245,0.271,0.195,1.987,5.383,0.223,0.852,0.352,4.194,0.231,1.843,3.301,0.232,3.536,0.394,0.197,2.794,1.993,0.836,0.153,3.434,1.033,0.207,1.891,0.187,3.739,0.52,0.164,0.84 +NM_015874,1.5590000000000002,2.243,2.45,1.5110000000000001,1.996,2.041,1.808,1.658,1.927,1.8539999999999999,1.899,1.65,1.526,1.7000000000000002,2.024,2.172,1.835,1.807,2.141,2.192,1.899,1.599,2.1879999999999997,1.9740000000000002,1.853,1.767,2.319,1.96,1.385,2.461,1.9260000000000002,2.681,2.975,2.661,1.21,1.7,1.9569999999999999,1.959,2.2779999999999996,2.656,2.135,2.527,1.505,2.338,1.8679999999999999,2.092,1.834,1.4769999999999999,1.95,1.702,2.2119999999999997,1.85,2.125,2.572 +NM_015878,1.119,1.011,1.044,0.881,0.909,0.965,1.057,0.944,1.116,1.107,0.998,1.037,1.041,0.926,1.111,1.069,0.993,1.01,1.084,1.029,1.149,0.914,1.034,0.885,1.016,1.043,0.893,1.018,1.148,0.951,1.169,0.979,1.155,0.96,1.111,0.997,1.076,0.915,1.066,0.847,1.006,1.001,0.857,1.038,0.96,1.089,1.08,0.996,0.814,1.023,0.989,0.866,1.068,1.13 +NM_015879,1.157,0.988,0.918,1.029,1.07,1.005,0.926,0.957,1.053,1.063,0.973,0.95,1.09,1.066,1.087,1.066,1.22,0.888,1.016,1.018,0.964,0.946,0.924,0.915,0.988,0.828,0.996,1.079,1.024,0.904,1.063,1.085,0.955,1.01,0.989,1.102,1.095,1.033,1.01,1.035,1.021,1.031,0.885,1.103,1.092,1.075,1.019,1.068,1.037,0.98,0.974,1.027,0.864,0.964 +NM_015881,1.104,0.945,1.003,1.189,0.969,0.99,1.154,1.111,0.971,0.955,0.979,0.992,0.973,0.959,0.901,0.975,0.96,1.162,0.884,1.145,0.85,0.934,0.973,0.985,1.017,1.072,1.047,1.084,0.775,1.007,1.057,0.996,0.998,1.073,1.047,1.112,0.956,0.917,1.131,0.976,0.942,1.135,0.807,1.084,1.113,1.029,1.087,0.998,0.988,1.108,1.0,0.99,1.018,0.903 +NM_015883,0.977,1.031,1.07,0.994,0.874,1.053,0.855,0.977,1.089,1.008,1.028,1.053,0.923,1.052,1.041,1.065,1.061,0.874,0.946,0.902,1.064,0.913,0.954,1.095,0.979,1.04,1.023,1.226,0.929,1.089,1.12,1.109,1.007,1.065,0.932,0.973,0.938,0.928,1.094,0.913,1.024,1.046,1.094,0.855,1.053,1.066,1.035,1.05,0.931,0.956,1.011,1.105,1.013,0.934 +NM_015884,0.992,0.985,1.071,1.025,0.997,0.989,0.821,0.896,0.92,0.853,1.074,1.078,0.894,0.838,0.922,1.033,1.002,0.897,0.919,0.957,0.939,1.034,0.872,0.966,0.968,0.906,1.057,0.873,0.706,1.137,0.944,0.926,1.078,0.932,0.862,1.047,0.991,0.907,1.148,0.964,1.011,1.098,1.151,0.908,1.001,1.026,1.028,1.049,0.976,1.003,0.926,1.01,0.979,0.966 +NM_015885,0.989,1.005,1.149,0.917,0.995,1.152,0.776,0.751,1.219,0.847,0.989,0.915,1.01,0.833,1.015,1.354,0.794,0.836,0.95,1.073,0.792,0.974,1.147,0.896,0.852,0.858,1.259,1.273,0.852,1.243,0.963,0.943,1.489,1.141,0.574,0.92,0.875,1.016,1.05,0.864,1.211,1.172,0.666,1.096,0.964,1.055,1.041,0.913,1.067,0.923,0.876,0.713,0.748,1.014 +NM_015886,1.086,0.972,1.072,0.909,0.98,0.914,1.017,0.919,0.966,1.072,0.976,1.02,0.936,0.754,0.81,1.058,0.897,1.146,1.172,1.076,1.111,1.117,0.945,1.046,0.969,0.868,0.987,1.002,0.915,1.019,1.079,0.995,1.007,0.942,0.869,0.926,0.982,0.907,1.01,1.016,0.989,0.98,0.956,1.024,1.025,1.036,0.988,0.966,0.948,0.928,1.019,1.131,0.959,0.983 +NM_015888,0.741,0.827,1.037,0.576,1.518,1.031,0.539,1.095,1.19,1.107,0.989,1.323,0.726,0.723,0.884,1.656,0.78,0.866,1.043,0.773,0.618,1.081,1.173,1.289,0.739,0.909,1.08,1.079,0.542,0.884,0.999,1.031,2.633,0.899,0.791,0.932,1.118,1.129,1.395,0.74,1.095,1.082,0.712,1.041,0.98,0.996,1.034,0.795,1.27,0.879,0.886,0.714,0.841,1.916 +NM_015889,1.162,0.86,0.879,1.082,0.699,1.103,0.639,0.771,1.125,0.858,0.891,0.673,0.898,0.955,0.893,1.003,1.225,0.986,1.161,0.675,1.046,1.488,0.871,0.938,0.938,1.402,1.239,0.76,0.881,1.036,0.883,1.12,1.127,1.166,1.192,0.701,0.997,1.46,2.538,0.882,0.945,1.073,0.842,1.22,0.793,0.826,0.852,1.724,0.919,1.066,0.788,0.739,0.89,0.952 +NM_015891,0.925,1.116,0.986,0.992,1.046,0.987,0.987,0.843,1.103,1.112,1.022,0.96,0.828,0.978,0.897,1.043,1.033,0.961,1.178,0.887,0.945,0.915,0.985,1.062,0.959,0.935,1.081,0.946,0.731,1.008,0.942,0.983,1.182,0.957,0.802,0.86,1.023,0.88,1.098,0.883,1.145,0.992,0.97,1.148,1.001,1.165,1.191,0.951,1.205,1.108,0.94,0.869,0.931,1.296 +NM_015892,0.683,1.249,1.101,0.994,0.829,0.971,1.155,0.639,0.794,1.008,0.723,0.71,0.706,0.706,0.707,0.785,0.848,0.844,0.91,1.07,0.848,0.712,0.84,0.751,0.958,0.737,0.962,0.926,0.688,1.301,0.835,4.38,2.049,1.563,0.63,0.991,0.862,0.832,1.793,2.715,0.982,1.859,1.085,2.554,0.718,0.891,0.982,0.775,0.606,0.792,1.05,1.861,1.214,1.205 +NM_015893,1.125,1.029,0.924,1.101,0.956,0.883,0.851,0.925,0.929,1.021,1.16,1.192,1.071,0.89,1.047,0.971,0.923,1.051,0.837,0.943,1.029,0.984,0.924,1.131,1.158,0.867,1.011,1.129,1.626,1.039,0.998,1.011,1.012,1.005,1.101,1.156,1.107,0.877,0.821,1.061,0.957,1.054,0.966,0.909,1.034,0.983,1.075,0.992,1.038,1.016,0.996,0.916,1.037,1.152 +NM_015894,0.596,1.311,0.952,0.707,0.826,0.796,0.668,0.519,1.335,1.217,0.754,0.863,0.749,0.596,0.856,0.805,0.692,0.759,0.821,0.837,0.741,0.728,2.247,1.061,0.675,0.742,1.013,1.111,0.377,1.338,0.721,6.43,1.683,1.739,0.36,1.259,0.895,1.252,0.989,6.36,1.3,1.786,0.922,4.111,0.849,0.865,1.823,0.7,0.713,0.844,1.011,3.875,1.171,6.0 +NM_015895,0.565,1.27,0.781,0.813,0.648,1.488,0.774,0.454,0.852,0.679,1.867,0.973,0.656,0.49,0.988,2.403,0.647,0.922,1.365,1.318,0.54,0.708,1.746,1.16,0.727,0.612,1.419,0.527,0.685,1.332,0.636,0.891,4.598,2.179,0.263,0.842,1.57,0.624,1.449,1.006,0.813,1.153,0.996,1.315,0.711,1.52,0.777,0.571,1.234,0.743,1.369,0.945,0.797,2.946 +NM_015896,1.006,1.042,0.929,0.879,1.08,0.903,0.873,0.993,0.951,1.028,1.103,1.039,0.866,0.822,1.322,0.849,0.85,1.161,0.973,1.147,1.053,0.93,0.988,1.004,0.881,0.934,1.078,1.148,0.832,0.95,0.842,1.476,1.122,1.051,0.953,1.061,1.011,1.162,0.868,0.885,1.091,0.96,0.857,1.049,0.977,0.84,0.923,1.004,1.035,1.073,1.294,0.99,0.98,1.476 +NM_015898,1.699,0.818,0.813,0.914,0.799,1.573,0.581,0.834,1.126,1.144,0.851,1.059,1.441,0.622,0.584,0.8,1.556,0.879,1.193,0.912,1.572,1.839,0.747,1.524,1.293,1.331,1.195,0.775,0.999,1.354,0.71,0.782,1.097,0.882,0.92,1.042,0.723,1.116,2.02,1.09,1.117,1.001,0.981,1.652,0.836,0.866,1.037,1.139,1.112,1.378,0.806,0.789,0.924,0.93 +NM_015899,0.861,1.148,0.961,0.859,0.88,1.001,0.828,0.896,0.91,0.916,0.953,0.992,0.757,0.741,1.075,1.139,0.923,0.782,0.892,1.082,0.705,0.889,0.923,0.833,0.847,0.893,1.068,0.894,0.61,1.138,0.858,1.054,1.402,1.224,0.755,1.252,1.049,1.037,1.187,1.218,1.07,1.194,0.801,1.393,0.849,0.96,1.012,0.84,0.949,0.835,1.217,0.994,0.737,1.268 +NM_015900,1.081,0.97,1.032,1.102,0.832,1.025,0.881,0.921,0.911,0.923,1.004,0.938,1.128,0.977,1.443,0.911,1.069,1.072,0.845,0.954,0.976,0.947,0.965,1.003,1.112,0.928,1.108,0.952,0.917,1.003,0.913,1.156,1.24,1.1,0.979,0.917,0.991,0.933,1.218,1.179,0.963,1.021,1.096,1.305,1.098,1.05,0.962,0.891,1.044,0.924,0.928,0.98,1.056,1.101 +NM_015901,1.06,1.158,0.997,1.108,1.061,1.03,0.872,1.131,0.914,1.04,0.931,1.013,0.84,0.906,0.963,0.843,1.183,1.139,0.911,0.961,0.815,1.082,0.988,0.997,0.843,0.932,0.991,1.246,1.042,0.952,0.982,1.094,0.844,1.003,1.147,0.993,0.96,1.192,1.062,1.026,1.004,0.996,0.926,1.003,1.022,0.941,1.285,0.967,0.994,1.015,0.899,1.115,0.985,1.144 +NM_015902,0.738,0.963,1.496,0.613,1.166,0.83,0.684,0.725,1.156,0.955,1.03,1.073,0.766,0.901,1.07,1.14,0.906,1.06,1.166,1.028,0.814,1.077,1.129,0.955,0.665,0.837,1.445,0.94,0.526,0.869,1.06,1.249,1.783,0.974,0.707,0.937,0.867,1.056,1.262,1.484,0.951,1.012,0.772,1.311,0.988,1.034,1.116,0.893,1.159,0.988,1.035,0.967,1.082,2.75 +NM_015904,0.869,0.958,1.154,0.68,0.786,0.86,0.648,0.518,1.077,1.211,0.747,0.984,0.566,0.849,0.779,1.178,0.874,0.735,1.131,0.832,0.638,0.878,1.385,1.194,0.862,0.917,1.335,0.783,0.468,1.049,0.956,1.246,3.191,1.051,0.276,1.012,0.767,0.859,1.673,1.595,1.049,1.029,0.846,1.8,1.32,0.811,0.766,0.787,1.034,1.016,1.156,0.949,1.144,1.974 +NM_015906,1.033,0.965,1.052,0.902,1.193,0.908,0.956,0.915,0.992,0.913,1.075,1.019,0.945,0.946,0.97,1.068,1.088,1.079,1.04,0.994,0.98,1.038,0.966,1.001,1.037,0.977,1.021,0.987,0.99,1.071,0.924,0.977,0.971,0.974,1.013,0.824,1.049,1.115,1.156,0.979,1.196,0.986,1.11,1.051,0.842,1.154,1.058,1.114,1.015,1.017,1.014,1.16,1.193,1.047 +NM_015907,0.568,1.186,1.139,0.636,0.683,1.538,1.133,0.4,0.93,0.752,1.184,0.521,0.408,0.615,1.318,2.219,0.782,0.853,0.965,0.929,0.628,0.625,1.532,0.845,0.511,0.496,1.351,0.62,0.408,0.979,0.725,1.011,3.194,1.632,0.26,0.603,2.148,0.704,1.764,0.876,0.877,1.598,0.762,1.433,0.687,1.255,0.856,0.493,1.886,0.592,1.257,1.126,1.228,3.343 +NM_015908,0.609,0.676,1.068,0.674,0.947,1.016,0.645,0.502,1.253,1.271,0.807,0.665,0.55,0.647,0.95,1.446,0.969,1.035,1.134,0.921,0.73,0.849,1.725,1.104,0.485,0.793,1.593,0.712,0.584,0.861,1.082,1.76,2.181,1.046,0.351,1.373,1.089,0.784,1.669,1.488,0.991,1.118,0.879,1.655,1.001,1.005,0.976,0.708,1.465,0.854,1.013,1.088,0.916,2.095 +NM_015909,0.798,1.041,1.085,0.848,0.907,0.937,0.84,0.582,0.889,0.795,1.098,0.733,0.618,0.706,0.875,0.978,0.839,0.924,1.06,1.016,0.874,0.862,1.488,0.707,0.999,0.897,1.024,0.701,0.751,1.373,0.746,1.231,1.622,1.265,0.466,0.836,1.15,1.063,1.271,0.869,1.001,1.249,1.123,1.163,0.956,0.966,0.915,0.845,1.068,0.887,1.214,0.782,1.016,1.158 +NM_015910,1.006,1.146,0.911,1.047,0.88,1.085,0.994,0.985,0.993,1.234,1.221,0.915,0.988,1.252,0.955,1.061,1.052,0.987,0.888,1.058,1.1,1.118,0.92,1.052,1.123,1.107,0.974,0.947,0.959,0.87,0.947,0.99,0.941,0.936,1.055,1.116,0.945,1.208,0.881,0.988,1.016,1.106,0.916,1.041,0.918,1.023,1.031,1.097,0.977,0.98,1.034,1.021,1.084,0.923 +NM_015911,1.021,0.853,0.86,0.987,0.983,1.184,0.93,0.885,0.889,1.036,1.139,0.976,1.108,1.017,0.909,0.98,1.116,0.863,0.979,1.031,0.885,0.894,1.132,1.025,0.914,0.896,1.077,0.923,0.945,1.185,1.058,1.341,1.576,1.192,0.859,1.05,0.988,0.946,1.141,1.129,0.952,1.033,0.906,1.262,1.458,0.964,0.936,0.878,0.997,0.854,1.134,0.992,0.774,1.178 +NM_015912,0.944,1.005,1.009,0.944,0.796,1.001,1.171,1.029,0.903,1.005,0.899,0.892,0.96,0.893,0.791,1.005,1.017,1.08,1.06,0.945,0.954,0.984,1.024,0.878,1.062,0.98,0.925,0.958,0.999,1.001,0.99,1.006,0.976,1.085,0.876,0.889,0.908,1.006,1.033,1.051,1.01,0.93,1.145,1.165,0.875,0.987,0.96,1.101,1.091,1.034,1.079,1.125,0.993,0.934 +NM_015913,0.477,1.386,0.941,0.792,0.596,1.559,0.686,0.444,0.752,0.717,1.808,0.667,0.534,0.441,0.817,1.787,0.577,1.007,1.044,1.312,0.531,0.616,1.44,0.839,0.856,0.649,0.952,0.616,0.585,1.405,0.663,1.149,2.058,1.908,0.133,0.871,1.442,0.566,1.597,0.889,0.806,1.312,0.687,0.997,0.763,1.122,0.834,0.486,0.739,0.518,1.265,0.787,0.915,0.934 +NM_015914,0.775,0.975,0.768,0.947,0.69,1.198,1.093,0.721,0.744,0.653,1.137,0.721,0.677,0.823,0.796,1.43,0.934,1.004,0.752,1.308,0.7,0.674,1.157,0.805,1.005,0.847,0.879,0.749,0.869,1.035,0.814,0.971,1.005,1.747,0.695,0.874,1.133,0.611,1.467,0.914,0.894,1.299,0.869,1.054,0.87,1.013,0.895,0.764,1.107,0.949,1.062,0.77,0.935,1.229 +NM_015915,1.099,1.039,1.243,0.96,0.872,1.04,0.63,0.82,1.249,0.991,1.079,0.978,0.85,0.902,1.003,0.853,0.886,1.223,1.169,1.185,0.764,1.076,1.094,1.078,0.935,1.137,1.155,1.029,0.685,1.224,0.925,1.28,1.125,1.125,0.886,0.8,1.087,1.123,0.962,1.028,1.138,1.255,0.785,0.744,0.972,0.902,0.997,0.882,0.94,0.936,0.991,0.805,0.963,1.066 +NM_015917,0.742,0.996,0.948,0.985,0.665,2.441,0.757,0.562,0.9,0.711,2.371,0.822,0.819,0.573,1.222,2.491,0.78,0.918,1.286,1.503,0.615,0.739,1.959,0.98,1.055,0.622,0.955,0.651,0.663,2.436,0.773,0.849,1.868,2.118,0.197,0.678,1.717,0.887,1.589,0.449,0.823,1.615,1.042,1.074,0.773,1.702,0.943,0.735,1.349,0.769,1.352,0.564,1.147,1.004 +NM_015919,0.72,1.263,1.148,0.77,0.93,1.468,0.923,0.967,1.118,0.905,0.892,0.851,0.91,0.904,1.069,1.752,1.029,0.96,0.901,1.199,0.861,1.027,1.121,1.139,0.869,0.961,0.858,0.994,0.748,1.151,0.969,1.13,1.453,1.245,0.787,0.837,1.117,1.026,1.196,0.884,0.929,1.127,0.866,0.845,0.934,1.233,1.076,0.997,0.987,0.821,1.256,0.899,0.88,1.395 +NM_015920,0.262,1.353,0.67,0.924,0.458,1.996,0.956,0.493,0.515,0.488,2.714,0.62,0.422,0.338,1.491,3.388,0.479,1.14,0.582,1.869,0.273,0.457,2.614,0.545,0.701,0.363,0.735,0.412,0.651,1.74,0.45,1.359,1.65,2.13,0.0623,1.286,2.069,0.533,1.557,0.647,0.492,1.886,1.217,0.857,0.413,1.602,0.883,0.358,1.838,0.282,1.754,0.955,0.543,1.595 +NM_015921,0.463,2.133,0.851,0.678,0.649,1.328,0.623,0.388,0.885,0.807,1.191,0.871,0.617,0.604,0.86,1.619,0.557,0.798,0.905,1.235,0.461,0.629,1.671,0.89,0.852,0.737,0.877,0.719,0.414,1.69,0.809,1.96,2.711,1.854,0.115,1.241,1.265,0.91,1.764,0.988,0.815,1.656,0.69,1.278,0.735,1.148,0.807,0.618,0.939,0.429,1.281,0.786,0.901,1.531 +NM_015922,1.275,0.6,1.322,0.763,1.194,0.81,0.428,0.878,1.766,1.313,0.781,0.943,0.86,0.838,1.08,1.629,1.179,1.05,2.277,0.696,1.04,1.113,1.123,1.473,0.483,1.222,1.682,1.02,0.363,0.733,1.37,0.905,2.033,0.825,0.975,0.799,0.999,1.071,0.849,0.472,1.462,0.728,0.541,1.491,1.327,1.052,1.18,1.107,0.716,1.177,1.106,0.762,1.341,0.789 +NM_015925,0.301,1.763,0.606,0.766,0.354,1.616,0.752,0.194,0.473,0.612,1.45,0.281,0.211,0.257,0.777,1.751,0.538,0.883,0.795,1.293,0.291,0.303,1.466,0.492,0.623,0.382,0.75,0.287,0.811,2.303,0.356,1.059,2.314,2.294,0.1,1.567,1.601,0.351,1.864,0.882,0.433,1.503,0.801,1.934,0.519,1.26,1.327,0.332,1.02,0.487,1.289,0.779,0.672,1.594 +NM_015926,0.819,1.348,0.914,0.808,0.88,1.249,0.803,0.759,0.888,0.785,1.372,1.017,0.87,0.639,1.055,1.791,0.821,1.034,1.281,1.106,0.645,0.79,1.326,0.908,0.997,1.014,0.905,0.817,0.59,1.655,0.976,0.994,1.265,1.992,0.826,1.128,1.116,0.845,1.502,0.885,0.883,1.303,0.726,0.859,0.978,0.966,0.93,0.965,0.919,0.942,1.098,0.883,0.913,1.631 +NM_015927,0.941,1.027,0.822,0.989,0.762,1.213,0.947,0.799,0.789,0.775,1.212,0.776,0.829,0.931,0.952,1.179,0.771,0.758,0.835,0.955,0.976,0.829,1.418,0.798,1.318,0.756,0.762,0.999,0.661,1.851,0.675,4.285,1.396,2.582,0.649,0.994,0.916,0.98,1.917,1.956,1.154,2.177,0.85,1.313,0.832,0.839,0.894,0.897,0.74,0.805,1.29,1.228,1.081,1.225 +NM_015928,1.8079999999999998,2.086,2.1879999999999997,1.694,1.549,2.1319999999999997,2.199,1.678,1.887,1.558,2.138,1.806,1.6640000000000001,1.8050000000000002,2.301,2.4299999999999997,1.799,1.917,1.7269999999999999,1.9609999999999999,1.662,1.939,2.203,1.857,1.845,1.649,2.057,1.771,1.705,2.269,1.831,2.4059999999999997,2.588,2.0389999999999997,1.593,2.206,2.3129999999999997,1.837,2.643,2.876,1.963,1.967,1.9529999999999998,2.122,2.017,1.81,2.061,1.833,1.96,1.7570000000000001,2.129,2.016,1.838,2.807 +NM_015931,1.04,1.051,0.906,0.715,0.872,1.144,0.677,1.132,0.903,1.001,1.023,1.162,1.132,0.851,1.401,1.982,0.924,1.157,0.888,0.999,0.905,0.889,1.376,0.863,1.024,1.057,0.893,0.979,1.17,0.927,0.767,0.93,1.05,0.878,0.947,1.255,1.386,0.962,1.02,1.109,0.979,0.874,0.762,1.119,0.888,1.496,1.679,0.97,0.896,0.982,1.118,1.127,1.19,1.002 +NM_015932,0.451,0.71,0.925,0.526,0.742,1.41,0.648,0.643,1.113,0.86,1.014,1.017,0.625,0.433,1.0,2.641,0.671,0.941,1.126,0.861,0.404,0.881,1.145,1.282,0.366,0.504,1.224,0.835,0.43,1.347,0.897,1.438,1.652,1.14,0.0872,1.067,1.199,0.917,1.02,1.472,1.006,0.895,0.6,0.565,0.902,1.121,1.534,0.642,1.449,0.54,1.092,1.145,0.68,1.945 +NM_015933,0.604,0.92,1.166,0.646,0.757,1.0,0.54,0.779,1.245,1.019,1.397,1.26,0.842,0.565,0.778,2.065,1.023,1.068,1.509,1.029,0.624,0.833,1.358,1.077,0.457,0.991,1.375,1.019,0.464,0.856,0.96,0.694,1.063,1.12,0.241,1.117,1.108,1.036,1.058,0.703,1.175,0.869,0.554,0.625,1.0,0.895,0.918,0.831,0.937,0.658,0.967,1.018,1.127,1.276 +NM_015934,0.477,0.952,1.014,0.486,0.918,1.244,0.537,0.658,1.602,1.23,0.865,1.324,0.693,0.676,1.109,1.693,0.872,0.626,1.077,0.804,0.621,1.194,1.372,1.564,0.424,0.498,1.719,0.716,0.361,1.11,1.19,1.203,9.079,1.105,0.217,1.175,1.177,0.994,1.077,1.184,1.321,1.02,0.661,0.975,1.035,0.917,0.894,0.613,1.16,0.548,0.998,0.844,0.858,4.537 +NM_015936,0.718,0.994,1.192,0.66,0.868,1.18,0.766,0.571,1.027,1.078,0.848,1.008,0.689,0.672,1.098,1.669,1.132,1.003,0.868,1.09,0.597,0.965,1.393,1.071,0.572,0.668,1.883,0.694,0.752,0.959,0.917,0.945,4.925,1.203,0.351,1.506,0.957,0.932,1.691,0.821,1.027,1.12,0.802,1.669,0.963,0.956,1.075,0.712,1.209,0.855,0.974,0.866,0.877,2.0 +NM_015938,0.845,1.397,0.929,0.767,0.867,1.038,0.751,0.904,1.137,1.336,1.016,0.713,0.785,0.796,0.952,1.13,0.715,0.809,1.049,0.983,0.754,0.85,1.106,0.953,0.941,0.857,1.024,0.926,0.646,1.283,1.213,1.205,1.653,1.352,0.826,0.906,1.087,0.863,1.333,0.827,1.159,1.033,0.949,0.983,0.905,1.086,0.895,0.758,1.047,0.764,1.043,0.844,1.074,1.5 +NM_015939,0.883,0.902,1.096,0.854,1.005,0.942,0.664,0.667,1.067,1.304,1.087,0.972,0.868,1.038,0.867,1.024,0.995,0.972,0.727,0.903,0.765,0.879,1.323,1.082,0.833,1.06,0.944,1.059,0.94,1.082,0.811,1.185,1.944,1.019,0.814,1.232,0.871,0.828,1.38,1.279,1.147,1.091,0.994,1.597,0.972,0.895,0.983,0.991,1.046,1.009,0.904,0.98,1.279,2.273 +NM_015941,1.119,0.932,1.392,1.034,1.051,0.86,0.661,0.639,1.366,1.019,0.84,0.758,0.709,0.962,0.948,1.013,1.077,0.922,1.273,0.812,0.611,0.664,0.741,0.896,1.0,1.22,1.253,1.105,0.493,0.945,1.478,1.511,1.083,1.307,2.258,0.821,0.801,0.893,1.15,1.063,1.118,0.961,0.488,1.075,1.431,1.162,0.945,1.049,0.893,1.084,0.897,0.917,1.474,1.124 +NM_015942,0.722,1.155,1.174,0.788,0.893,0.984,0.745,0.64,1.007,1.008,0.925,0.764,0.808,0.813,0.79,1.331,0.951,0.818,1.192,0.903,0.822,0.969,1.221,1.142,0.739,0.759,1.258,0.875,0.603,0.987,0.965,1.512,2.479,1.271,0.487,1.143,1.07,0.898,1.12,1.221,1.114,1.029,0.725,1.272,0.966,1.109,1.018,0.716,1.142,0.722,1.097,0.915,1.005,2.354 +NM_015944,1.073,0.888,0.999,0.947,0.845,1.016,0.869,0.839,0.897,1.044,1.013,1.048,0.875,1.019,0.844,1.013,1.071,1.018,1.288,0.848,1.155,1.115,0.812,1.026,0.823,1.182,1.186,0.952,0.808,0.897,1.008,1.2,1.725,1.048,1.315,0.979,0.883,0.95,1.303,1.08,0.897,0.918,1.039,1.417,1.084,0.811,1.118,1.113,0.941,1.253,0.862,1.032,1.082,0.902 +NM_015946,0.816,0.913,1.309,0.892,0.963,0.965,0.777,0.612,1.094,0.98,0.929,0.773,0.777,0.765,0.998,1.079,0.938,0.87,1.239,0.76,0.606,0.89,1.116,1.103,0.612,0.94,1.209,0.911,0.497,0.957,1.082,1.987,2.609,1.226,0.672,1.082,0.946,1.173,1.484,1.37,0.954,1.108,1.0,1.666,1.283,0.86,0.889,0.984,0.923,0.989,0.956,0.825,1.102,1.265 +NM_015948,0.534,1.477,0.995,1.024,0.684,1.961,0.982,0.506,0.783,0.639,2.061,0.647,0.7,0.647,0.956,2.485,0.761,0.998,0.925,1.626,0.51,0.596,1.853,0.792,0.783,0.645,0.832,0.762,0.719,1.473,0.68,1.127,1.534,1.88,0.699,0.772,1.713,0.632,1.136,0.822,0.784,1.514,0.826,0.89,0.625,1.897,0.868,0.627,1.323,0.545,1.232,0.675,0.772,1.394 +NM_015949,0.745,0.821,0.848,0.734,0.855,1.25,0.754,0.667,0.859,0.82,1.077,0.885,0.726,0.685,0.82,1.051,0.941,1.088,0.855,0.794,0.807,0.944,1.199,0.987,0.943,1.138,0.894,0.708,1.125,1.315,0.857,1.32,1.241,1.134,0.918,1.142,0.996,0.918,1.778,1.866,0.804,1.027,0.862,2.505,1.015,0.824,1.117,1.053,0.856,0.943,0.814,0.816,0.853,1.793 +NM_015950,0.873,1.094,1.059,0.958,0.784,0.81,0.622,0.773,0.823,0.834,0.92,0.789,0.999,0.733,0.808,1.453,0.777,0.86,1.305,0.843,1.136,0.749,1.112,0.875,0.826,1.03,1.076,0.833,0.631,0.96,0.888,1.329,3.064,1.091,0.569,1.09,1.021,0.725,1.795,0.968,0.923,1.295,0.679,1.545,0.969,0.868,0.926,0.958,1.296,1.065,0.848,1.047,0.969,2.4 +NM_015952,0.717,0.813,1.195,0.661,0.895,1.315,0.503,0.765,1.18,1.002,1.251,1.351,0.876,0.696,0.973,1.727,0.665,0.828,1.204,0.998,0.464,0.832,1.196,1.18,0.673,0.793,1.427,1.012,0.372,1.205,1.027,0.964,1.419,1.365,0.213,0.65,1.213,1.034,1.129,0.574,1.092,1.138,0.529,0.676,1.008,0.821,0.816,0.727,0.866,0.815,1.027,0.684,1.005,1.733 +NM_015953,0.78,0.947,0.969,0.739,1.024,1.071,0.61,0.551,0.975,0.896,1.264,0.564,0.759,0.671,0.812,1.393,0.926,1.071,1.096,1.017,0.573,1.087,1.337,0.883,0.757,1.079,0.881,0.98,0.549,1.241,1.077,1.056,2.467,1.453,1.56,0.96,1.134,0.863,1.854,0.921,0.967,1.146,0.692,1.532,0.96,0.723,1.194,1.432,0.859,0.847,0.892,0.852,0.747,1.443 +NM_015954,0.656,0.703,1.358,0.701,0.898,1.403,0.449,0.678,1.207,0.99,1.383,1.191,0.973,0.654,1.136,1.758,0.853,1.124,1.333,1.158,0.393,0.93,0.939,1.132,0.438,0.794,1.097,1.13,0.312,1.1,1.044,0.812,1.966,1.268,0.86,0.995,1.513,1.004,1.102,0.842,1.069,1.104,0.768,0.88,0.959,1.285,1.563,0.89,1.073,0.798,1.21,0.82,0.781,0.873 +NM_015955,0.997,0.713,1.275,0.848,1.316,0.746,0.48,0.858,1.684,1.493,1.008,1.307,0.904,0.912,0.985,1.295,0.863,1.308,2.003,0.711,0.868,1.089,1.091,1.623,0.61,1.55,1.021,1.4,0.397,0.756,1.145,0.711,1.589,0.739,0.895,1.339,0.84,1.16,0.979,0.897,1.215,0.623,0.497,1.322,1.209,0.892,1.366,1.315,0.818,1.092,0.904,1.092,1.362,1.328 +NM_015957,0.692,1.218,0.756,0.689,0.776,1.325,0.584,0.625,0.925,0.866,0.998,0.605,0.585,0.642,0.995,1.446,0.643,1.001,0.9,1.186,0.615,0.563,0.933,0.733,0.921,0.751,1.033,0.892,0.665,1.712,0.833,1.496,2.47,1.566,0.506,1.36,1.359,0.712,1.285,0.743,1.015,1.076,1.349,0.999,0.699,0.923,0.832,0.596,1.2,0.775,1.219,1.275,0.999,1.107 +NM_015960,0.749,0.943,1.148,0.78,0.937,1.019,0.766,0.833,1.345,1.006,0.907,1.081,0.852,0.995,1.114,1.302,0.911,0.919,1.351,0.962,0.883,1.08,0.853,1.305,0.834,0.884,1.302,0.994,0.752,1.005,0.973,1.234,1.566,1.12,0.66,1.324,0.983,1.064,1.075,0.955,1.313,1.191,0.767,0.987,0.97,0.945,1.08,0.987,0.856,0.934,0.796,1.088,1.208,1.242 +NM_015962,0.941,1.075,1.011,0.944,1.025,0.923,0.911,0.909,0.988,0.914,1.088,0.937,0.983,0.971,0.927,1.22,1.033,0.937,1.218,1.061,0.989,0.932,0.959,0.901,1.068,0.997,0.957,1.022,0.697,1.046,1.051,0.986,0.967,1.04,0.903,1.07,1.057,0.997,1.058,0.989,1.119,0.854,0.759,0.964,0.835,0.966,1.167,0.973,0.992,0.997,0.896,0.757,0.963,0.983 +NM_015964,0.459,1.34,5.948,0.626,3.332,0.988,0.478,1.538,0.403,0.58,0.658,0.923,0.357,0.377,1.057,1.3,0.388,0.536,0.696,1.46,0.7,0.424,1.202,1.735,0.423,0.714,2.104,1.033,0.508,0.864,0.394,1.309,6.215,2.073,0.282,0.669,0.499,9.897,2.831,0.875,1.029,0.996,1.638,0.96,0.699,0.669,0.713,3.202,0.445,0.391,3.001,0.784,1.297,1.796 +NM_015965,0.997,1.114,0.931,0.829,1.068,1.296,0.442,0.526,1.228,0.969,1.52,0.84,0.99,0.607,0.877,1.925,0.918,1.298,1.679,0.905,0.648,1.06,1.491,1.299,0.884,1.493,1.098,0.897,0.542,1.192,0.972,1.003,0.885,1.49,0.419,0.77,1.338,1.212,1.613,0.734,1.067,1.102,0.746,1.167,1.032,0.934,0.991,1.576,0.974,0.876,0.899,0.989,0.868,1.028 +NM_015966,0.814,1.005,0.831,0.998,0.616,1.48,0.563,0.5,0.763,0.656,1.522,0.798,0.901,0.571,0.664,1.563,0.705,0.722,1.367,1.16,0.651,0.788,1.639,0.895,0.842,1.173,0.714,0.612,0.494,1.81,0.693,1.341,1.767,1.944,0.357,1.139,1.086,0.739,1.849,1.492,0.736,1.261,0.658,1.98,0.798,0.865,1.026,0.889,0.741,0.9,0.906,1.283,1.02,1.398 +NM_015967,1.057,1.034,1.122,1.066,1.026,1.046,0.954,0.974,1.078,1.083,0.909,1.089,0.978,0.915,0.917,1.158,1.109,0.879,1.015,1.108,0.94,1.042,0.917,1.157,0.932,1.282,1.087,0.945,1.276,1.041,1.049,1.018,1.095,0.967,1.942,1.0,0.985,1.274,0.978,0.924,1.135,0.982,0.877,0.914,0.954,0.959,0.933,1.057,0.757,0.928,0.879,0.959,0.935,1.137 +NM_015969,0.579,0.871,1.048,0.592,0.897,0.864,0.695,0.488,1.167,1.376,0.925,1.161,0.509,0.518,0.784,1.527,0.815,0.782,0.979,0.837,0.483,0.717,2.197,1.35,0.445,0.716,1.307,0.857,0.412,1.208,0.834,1.515,3.099,1.016,0.154,1.921,0.999,0.796,1.166,1.804,1.168,0.963,0.76,1.986,1.18,0.934,1.568,0.636,1.314,0.653,1.225,1.847,0.957,2.809 +NM_015971,0.771,0.972,1.15,0.785,0.812,1.027,0.581,0.515,1.135,1.291,0.976,1.178,0.737,0.713,0.959,1.709,0.901,0.956,1.319,0.844,0.416,0.877,1.176,1.413,0.719,0.972,1.367,1.033,0.345,0.949,0.999,1.604,1.208,1.188,0.162,0.922,1.264,0.873,1.348,0.496,1.206,0.941,0.498,1.277,1.05,0.966,1.174,0.712,1.272,0.77,1.115,0.908,0.615,1.789 +NM_015972,0.876,0.557,1.115,0.648,1.016,1.113,0.424,0.999,1.546,0.707,1.182,1.184,0.879,0.846,1.213,1.768,0.629,0.822,1.578,0.864,0.625,1.085,1.102,1.317,0.473,1.075,1.4,1.098,0.364,1.039,1.486,0.805,1.395,1.493,1.964,0.959,1.028,1.41,0.691,0.925,1.213,0.88,0.458,0.502,0.746,0.793,1.055,1.436,0.81,0.798,0.766,1.001,0.996,1.535 +NM_015973,1.068,1.027,0.904,0.917,0.945,0.873,0.838,1.041,1.0,0.871,1.142,0.94,0.91,0.866,1.008,0.885,1.0,1.206,0.88,1.03,1.014,0.989,1.453,0.98,1.081,1.024,0.948,0.951,0.965,1.017,0.901,0.989,12.5,0.851,1.063,2.122,1.011,0.971,2.703,1.17,0.887,1.033,1.142,1.418,1.085,1.206,0.951,1.134,1.666,1.083,0.891,1.115,0.774,1.979 +NM_015974,0.715,1.184,0.806,0.907,0.882,1.908,0.73,0.788,0.759,0.869,1.473,0.726,0.756,0.629,1.583,3.889,0.865,1.05,1.237,1.543,0.694,0.948,1.505,0.873,1.061,1.038,1.083,0.771,0.911,1.584,0.845,1.675,0.835,1.765,0.989,0.873,2.279,0.839,1.338,0.931,0.856,1.592,1.467,0.677,0.665,1.753,2.132,1.075,1.472,0.853,1.181,0.614,0.815,0.825 +NM_015976,0.914,0.999,1.127,0.88,0.991,1.392,0.984,0.992,0.882,1.041,1.089,1.007,0.862,0.821,1.13,1.442,1.02,1.089,1.041,1.021,0.901,1.062,0.922,1.067,1.0,0.749,1.251,0.861,1.088,1.12,1.097,1.065,1.438,1.174,0.843,0.763,1.093,0.993,1.311,0.814,1.061,1.014,0.738,0.989,0.946,1.107,1.026,0.955,1.104,0.858,1.101,0.843,0.844,1.077 +NM_015978,1.039,1.06,0.967,0.876,1.07,1.124,1.0,0.89,0.89,0.916,1.147,0.913,1.015,1.122,1.03,0.935,0.966,1.11,1.038,0.979,0.882,0.941,0.931,0.968,0.946,1.042,1.205,1.02,1.438,1.007,1.05,0.872,0.998,1.097,0.866,0.98,1.057,0.954,0.951,0.995,1.015,1.019,1.084,1.029,0.98,0.982,0.908,0.906,0.953,1.092,0.918,1.021,1.032,0.834 +NM_015979,1.79,2.205,2.113,1.8649999999999998,1.972,1.947,1.6680000000000001,1.6600000000000001,2.135,1.9129999999999998,2.021,1.75,1.5779999999999998,1.9009999999999998,1.995,2.1,1.8450000000000002,1.8619999999999999,1.962,2.278,1.666,1.623,2.141,1.7879999999999998,1.646,1.674,2.069,1.8370000000000002,1.423,1.9369999999999998,2.009,2.113,2.2889999999999997,2.206,1.599,1.7469999999999999,2.184,1.766,2.162,2.084,1.924,2.0629999999999997,1.8639999999999999,2.141,1.8679999999999999,2.143,1.795,1.7879999999999998,1.819,1.906,2.061,1.926,1.798,3.797 +NM_015980,1.02,1.029,1.083,1.074,1.095,0.967,0.762,0.869,1.135,0.877,0.842,0.972,1.007,0.987,0.992,0.939,0.964,1.104,0.946,1.011,1.057,0.921,1.125,0.997,1.15,1.074,0.917,0.916,0.836,1.047,1.124,1.017,1.007,1.559,0.978,0.922,1.063,0.919,0.969,0.97,1.021,0.948,0.897,1.024,0.973,0.939,0.786,0.924,0.956,1.027,0.942,0.925,0.989,0.87 +NM_015982,0.979,0.778,0.976,1.093,0.871,0.685,0.902,1.223,1.408,0.922,0.938,0.731,0.984,1.012,0.917,1.791,1.064,1.018,0.741,1.09,0.936,0.975,0.918,1.253,1.081,1.073,0.829,0.999,0.597,0.981,1.108,1.176,1.872,0.927,0.866,1.123,1.002,0.992,0.914,1.143,1.038,0.775,1.111,0.688,0.924,1.088,0.885,0.862,1.925,0.969,1.129,0.952,0.748,0.861 +NM_015983,0.739,0.942,1.0,0.683,0.889,1.155,0.652,0.831,1.015,0.926,1.174,1.034,0.698,0.842,1.159,1.805,0.744,0.748,1.156,0.97,0.7,0.904,1.666,1.062,0.675,0.739,0.895,0.836,0.84,1.253,0.871,1.224,2.011,1.378,0.527,1.111,1.026,1.08,1.125,0.641,1.0,1.375,0.686,1.079,0.933,1.077,1.272,0.762,1.013,0.758,1.14,0.827,0.861,1.767 +NM_015984,0.852,0.752,1.059,0.669,1.277,0.961,0.472,0.977,1.674,1.274,1.045,1.261,0.808,0.97,1.244,2.656,0.798,1.01,1.842,0.691,0.645,1.249,0.814,1.59,0.49,1.19,1.188,1.422,0.421,0.811,1.24,0.861,4.037,0.836,0.687,1.503,1.319,1.618,1.082,0.818,1.347,0.801,0.672,1.044,1.297,1.052,1.136,1.05,0.965,0.975,0.912,0.912,1.007,1.296 +NM_015985,0.908,0.873,1.009,0.987,1.207,0.919,0.943,0.974,1.087,1.07,0.657,0.988,1.042,0.927,1.162,0.849,1.175,0.952,1.076,1.085,1.053,1.006,1.143,1.181,0.961,0.951,0.954,1.16,1.287,1.125,0.922,0.991,0.962,1.062,1.236,0.75,0.848,0.924,1.006,0.955,1.014,0.992,0.932,0.904,1.114,0.834,1.0,0.957,0.728,1.105,0.901,1.113,0.938,0.962 +NM_015986,0.961,0.751,1.351,0.822,1.276,0.859,0.683,0.863,1.526,1.558,0.843,0.9,0.815,1.002,1.218,1.284,0.906,1.022,1.577,0.677,0.753,1.092,0.916,1.423,0.536,0.931,1.646,1.052,0.558,0.884,1.365,1.065,1.286,0.85,0.586,0.63,0.858,0.912,0.977,1.028,1.204,0.863,0.934,0.836,1.567,1.026,1.263,1.126,1.071,1.064,0.843,0.974,1.132,1.45 +NM_015987,0.848,0.905,1.159,0.952,1.142,0.723,0.631,0.933,1.301,0.83,0.587,0.838,0.865,0.948,2.194,2.516,0.827,0.706,1.029,0.52,0.758,0.778,1.46,1.011,0.67,1.467,0.986,1.424,0.523,1.186,1.423,1.592,3.578,1.081,3.194,1.161,1.719,1.605,0.92,1.146,1.416,1.211,1.016,1.303,0.897,0.581,1.025,1.334,0.588,1.031,0.626,0.9,1.053,1.642 +NM_015991,0.579,1.249,0.922,0.741,0.669,1.388,1.578,0.418,0.729,0.572,1.296,0.423,0.729,0.355,0.937,1.223,0.625,0.603,0.783,0.787,0.546,0.406,2.024,0.99,1.366,0.675,1.18,0.579,0.364,2.583,0.373,2.408,1.747,2.756,0.37,0.568,1.107,0.684,1.5,0.701,0.745,2.528,0.531,1.058,0.793,0.687,0.569,0.482,0.45,0.602,0.999,2.198,2.17,4.814 +NM_015993,0.651,1.426,0.388,1.051,0.421,2.755,0.983,0.589,0.63,0.313,2.054,0.487,0.57,0.547,1.017,2.2,0.281,1.52,0.737,0.977,0.347,0.675,1.396,0.489,1.561,0.835,0.277,0.577,1.552,1.926,0.545,1.135,1.216,3.164,0.241,0.651,1.385,0.471,2.847,0.201,0.492,1.387,0.7,1.069,0.298,1.112,0.645,0.77,0.558,0.331,1.173,0.597,0.267,0.839 +NM_015994,1.416,0.609,1.452,0.789,1.411,1.136,0.528,1.288,2.097,1.289,1.109,1.348,1.065,0.962,1.184,1.557,1.012,1.084,1.781,0.685,0.709,1.573,0.774,1.611,0.47,1.382,1.136,1.572,0.464,1.005,1.675,0.502,1.122,1.055,2.077,0.656,1.046,1.584,0.99,0.555,1.412,0.786,0.499,1.005,1.27,0.942,1.048,1.654,1.054,1.076,0.95,0.668,1.221,0.806 +NM_015995,0.558,1.149,1.033,0.684,0.752,1.397,0.578,0.412,0.815,0.855,1.11,0.494,0.525,0.594,1.0,1.906,0.818,0.822,0.902,1.143,0.623,0.828,1.956,0.816,0.523,0.725,1.114,0.646,0.46,1.777,0.896,1.668,1.694,1.454,0.258,1.456,1.059,0.764,1.561,0.829,0.886,1.426,0.887,1.285,0.733,1.197,0.878,0.535,1.029,0.643,1.204,0.857,0.984,1.461 +NM_015996,0.631,2.886,1.014,0.85,0.912,3.037,2.38,0.5,0.815,0.792,2.395,0.743,0.476,0.725,1.086,1.725,0.747,1.81,0.835,1.667,0.43,0.71,1.798,0.741,3.119,0.759,1.008,0.596,2.337,7.31,0.828,1.517,0.583,4.542,0.585,0.831,2.71,0.909,1.553,0.883,0.73,3.073,1.371,0.587,0.746,1.706,1.166,0.846,0.958,0.83,1.529,0.632,0.624,0.714 +NM_015997,0.86,1.181,1.066,0.972,0.81,1.1,0.885,0.85,0.909,0.887,0.916,0.905,0.927,0.887,0.962,1.183,0.968,0.828,1.056,1.117,0.832,1.185,0.905,0.865,1.075,1.016,0.927,0.811,0.875,1.14,0.899,1.229,1.538,1.191,0.746,1.352,0.984,0.999,1.344,1.011,0.828,1.116,0.722,1.731,0.92,0.908,0.877,0.923,0.83,0.85,0.998,0.779,0.865,1.489 +NM_015999,1.238,0.96,1.609,0.701,1.685,0.942,0.482,1.613,1.73,1.051,0.829,1.076,1.425,1.416,1.216,0.935,1.492,1.195,1.556,0.624,0.509,1.345,0.784,1.271,0.6,1.709,1.532,1.863,0.353,0.87,2.025,1.124,1.097,1.142,3.043,0.582,0.814,1.804,0.958,0.786,1.382,0.86,0.374,0.88,1.309,0.711,1.057,1.796,0.571,1.238,0.83,0.741,1.28,1.218 +NM_016000,0.952,0.897,1.031,0.96,1.05,1.038,0.835,1.011,0.933,1.065,1.168,1.07,0.967,1.031,1.089,1.073,0.981,1.006,1.234,0.892,1.054,1.018,1.11,1.101,1.059,1.064,0.937,1.161,0.884,0.964,0.972,0.996,1.024,0.94,1.057,1.161,0.929,1.033,0.991,1.151,1.161,0.912,1.062,0.921,1.066,0.915,0.939,1.065,1.063,0.945,1.029,0.915,0.956,0.957 +NM_016002,0.506,1.24,0.567,0.764,0.456,1.648,0.937,0.465,0.505,0.561,1.452,0.631,0.547,0.435,0.824,1.551,0.486,1.004,0.547,0.996,0.491,0.498,1.717,0.602,1.147,0.586,0.54,0.535,0.757,1.834,0.534,2.302,1.013,1.906,0.52,0.721,1.484,0.557,1.091,0.544,0.632,1.771,1.083,1.284,0.535,1.444,0.934,0.546,1.412,0.564,1.439,0.778,0.564,0.876 +NM_016003,0.863,0.842,1.412,0.605,1.215,0.833,0.594,0.814,1.462,1.08,0.833,0.891,0.824,0.87,0.917,0.924,0.914,1.116,1.082,0.927,0.515,1.018,1.398,1.077,0.558,1.081,1.292,1.214,0.379,1.139,1.521,1.693,1.183,1.199,1.708,1.08,0.755,1.11,1.001,1.323,1.18,1.102,0.475,1.969,1.355,0.687,1.244,1.02,0.595,0.905,0.841,1.008,1.227,1.861 +NM_016004,0.653,1.19,0.988,0.75,0.879,1.459,0.594,0.729,0.947,0.851,1.368,1.005,0.889,0.7,1.021,1.502,0.921,0.88,1.305,1.047,0.727,0.991,1.515,1.207,0.656,0.829,1.149,0.879,0.544,1.338,0.861,2.204,3.917,1.785,0.427,0.906,1.062,1.125,1.135,1.058,1.076,1.157,0.751,1.373,0.808,0.932,1.146,0.828,0.753,0.673,0.972,1.105,0.883,2.477 +NM_016006,1.328,0.693,2.026,0.841,1.88,1.137,0.615,3.193,2.232,1.062,0.824,1.637,1.429,1.715,3.173,1.783,1.578,0.942,2.469,0.713,0.974,1.833,0.692,1.798,0.474,1.376,1.661,2.491,0.53,1.027,3.543,0.705,2.435,0.892,6.693,0.533,0.88,3.025,1.003,0.597,2.292,0.752,0.552,0.451,1.324,0.719,1.268,2.887,0.848,1.429,0.823,0.676,0.993,1.529 +NM_016008,0.826,1.257,1.138,0.85,0.9,1.401,0.871,0.961,1.038,0.904,1.252,0.836,0.743,0.92,1.283,2.091,0.907,0.96,1.073,1.213,0.747,0.915,1.395,0.938,0.811,0.715,0.985,0.883,0.89,0.813,0.998,1.134,2.837,1.46,0.775,0.864,1.324,0.883,1.164,0.954,0.893,1.212,1.024,0.954,0.894,1.468,0.791,0.814,1.091,0.864,1.141,0.871,0.943,1.57 +NM_016009,0.787,0.768,2.287,0.55,2.011,1.381,0.589,1.608,1.949,1.334,0.689,1.283,1.056,0.891,1.207,1.77,2.083,1.319,1.337,0.999,0.46,1.934,1.034,1.947,0.339,0.711,1.751,1.709,0.412,0.872,2.324,0.774,1.762,0.914,1.308,0.351,0.965,1.651,1.207,0.593,1.665,0.856,0.591,0.468,1.728,0.792,1.84,1.354,1.519,1.027,1.218,0.634,0.7,1.43 +NM_016010,0.971,0.872,1.234,0.969,1.009,1.023,0.83,0.993,1.166,0.947,0.863,1.075,0.996,1.005,0.967,1.027,1.037,1.034,1.039,0.923,1.016,1.082,0.973,1.083,0.929,0.97,1.507,1.227,0.756,1.365,0.957,1.714,1.525,1.074,0.742,1.179,0.886,1.121,1.108,0.918,1.15,0.954,0.813,1.004,0.896,0.988,0.933,0.795,0.813,0.954,0.943,0.768,0.93,1.283 +NM_016011,0.816,1.169,1.202,0.811,1.051,0.829,0.622,0.628,1.289,1.213,0.846,1.305,0.792,0.634,0.875,1.024,1.16,0.964,1.293,0.923,0.633,0.882,1.162,1.508,0.855,0.938,1.36,1.0,0.528,1.125,0.908,1.674,1.924,1.152,0.453,1.311,0.961,0.991,1.205,0.771,1.358,1.033,0.669,1.66,1.334,0.928,1.173,0.81,1.049,0.91,1.055,0.887,1.026,1.461 +NM_016013,0.891,0.972,1.305,0.864,0.949,1.222,0.828,0.504,1.353,1.067,1.241,0.627,0.615,0.836,0.99,1.559,1.055,1.045,1.644,0.829,0.773,0.752,1.379,0.982,0.802,1.135,1.466,0.967,0.581,1.275,1.109,1.044,1.145,1.397,0.536,0.745,1.229,0.838,1.978,0.55,1.029,1.197,0.71,0.682,0.928,1.025,1.062,0.883,0.885,0.89,1.008,0.827,1.206,0.983 +NM_016014,1.039,0.938,1.147,0.949,1.143,0.945,0.775,1.182,1.261,1.129,1.016,1.069,0.981,0.963,1.131,1.004,0.859,0.996,0.983,1.024,0.894,1.106,0.851,1.056,0.944,1.1,1.049,1.285,0.768,0.949,1.202,1.044,1.187,0.968,2.34,0.974,0.926,1.421,0.884,0.876,1.212,0.862,1.033,0.893,1.121,0.972,0.955,1.295,1.089,0.98,0.996,0.798,0.944,1.066 +NM_016015,0.904,1.03,0.907,0.923,1.029,1.089,0.816,0.965,1.171,1.056,0.974,0.972,0.974,0.922,1.198,1.006,0.984,1.056,1.081,1.0,0.951,0.975,1.15,0.886,0.835,0.939,1.053,0.993,1.019,0.993,0.975,0.901,1.209,0.899,0.917,0.996,1.107,0.858,0.905,0.972,1.028,0.982,1.005,1.04,1.166,0.898,1.075,0.978,1.042,0.988,0.968,1.242,0.857,1.068 +NM_016016,0.881,1.002,0.996,0.642,1.282,0.949,0.458,0.784,1.381,1.114,0.851,1.275,0.825,0.542,0.798,1.406,0.735,1.062,1.667,0.881,0.439,1.0,1.059,1.195,0.526,1.06,1.091,1.152,0.455,1.012,0.934,1.028,2.102,1.104,0.332,1.065,0.959,1.24,1.168,0.597,1.076,0.88,0.64,1.654,1.062,0.958,1.103,1.199,0.762,0.788,0.98,0.879,0.908,1.164 +NM_016019,0.871,1.029,1.031,0.912,0.868,1.02,0.789,0.878,1.094,1.085,0.972,0.999,0.865,0.88,1.088,0.948,1.054,0.871,1.001,0.952,0.83,0.79,1.021,1.068,0.92,0.956,1.19,1.016,0.747,1.102,1.05,1.05,0.964,0.927,0.961,1.005,0.975,1.053,1.055,1.003,0.98,0.891,0.868,0.874,0.862,1.043,1.013,1.01,1.035,1.082,0.933,0.867,1.029,1.094 +NM_016020,0.808,1.101,1.227,0.951,0.845,0.911,0.758,0.662,1.038,1.056,1.02,0.908,0.805,0.925,0.925,1.208,0.861,0.963,0.9,0.824,0.666,0.775,1.152,0.861,0.736,0.9,0.994,0.927,0.538,1.092,0.965,1.039,1.661,1.095,0.569,0.845,1.228,0.846,1.293,0.959,0.984,1.061,1.115,2.051,0.939,1.11,0.934,0.655,0.878,0.789,1.105,0.816,1.043,1.182 +NM_016022,0.751,1.022,0.872,0.726,0.842,1.139,0.557,0.496,0.773,0.758,1.415,0.753,0.822,0.499,0.769,1.586,0.608,1.256,1.464,0.919,0.566,0.854,1.205,0.943,0.525,1.141,0.809,0.774,0.546,1.063,0.666,1.286,1.061,1.457,0.208,1.179,1.133,1.01,1.716,1.402,0.828,1.331,0.626,1.585,0.874,1.013,0.955,1.228,0.951,0.813,0.984,0.733,0.781,1.645 +NM_016023,1.161,0.988,0.967,0.857,0.952,0.985,1.023,1.062,0.95,0.938,1.165,1.009,1.047,1.274,0.999,1.188,1.017,0.856,1.051,0.978,0.824,0.984,1.187,1.076,1.09,0.859,0.961,1.003,1.016,1.019,1.213,1.031,1.266,0.972,1.032,1.202,0.983,0.938,0.928,0.961,1.231,1.096,1.103,0.893,0.948,1.078,1.045,1.112,0.97,1.029,1.014,1.053,1.102,0.912 +NM_016025,0.788,1.326,1.253,0.697,1.103,1.414,0.77,0.95,1.168,0.989,0.888,0.948,0.833,0.712,0.953,1.242,0.777,1.023,1.259,1.02,0.832,1.073,1.102,1.176,0.849,0.864,1.214,1.001,1.059,1.211,0.986,1.157,1.372,1.529,0.607,0.72,1.129,1.2,1.144,0.852,1.135,1.109,0.737,0.8,0.914,0.891,0.898,0.89,1.027,0.851,0.904,0.794,0.915,0.875 +NM_016026,0.471,1.189,0.849,0.677,0.725,2.067,0.664,0.616,0.967,0.992,1.721,1.004,0.373,0.396,1.088,3.288,0.56,1.205,1.044,1.685,0.282,0.695,2.363,1.042,0.698,0.503,1.244,0.696,0.485,1.625,0.802,1.319,1.494,1.533,0.137,1.082,1.726,0.812,1.422,1.671,0.726,1.103,0.729,1.246,0.905,1.783,1.45,0.609,0.91,0.738,2.438,0.662,0.74,1.24 +NM_016027,0.438,0.903,0.757,0.828,0.505,1.505,0.83,0.491,0.767,0.589,3.384,0.504,0.443,0.541,1.79,3.353,0.459,0.743,0.753,1.215,0.551,0.476,1.968,0.445,0.694,0.48,0.588,0.523,0.423,1.147,0.745,1.298,2.956,1.863,0.383,1.264,1.987,0.517,1.345,2.296,0.629,1.673,0.986,1.536,0.634,3.256,1.627,0.401,3.076,0.523,2.317,1.055,0.82,1.6 +NM_016028,1.819,1.6059999999999999,2.004,1.5910000000000002,1.794,2.059,1.6019999999999999,1.5790000000000002,2.763,1.821,1.828,2.035,1.8,2.021,2.018,2.169,1.759,1.762,2.2359999999999998,1.616,1.5190000000000001,1.933,1.8900000000000001,2.335,1.657,1.948,2.1550000000000002,2.258,1.509,2.419,2.29,1.885,3.388,2.2729999999999997,1.583,2.816,2.03,2.169,2.454,2.021,2.104,2.121,1.9829999999999999,2.2279999999999998,1.95,2.282,2.067,1.805,2.3289999999999997,1.578,1.9089999999999998,1.66,1.834,2.349 +NM_016029,0.518,2.162,0.944,0.961,0.515,2.398,1.118,0.312,0.739,0.575,1.547,0.292,0.372,0.364,1.008,2.511,0.549,1.425,0.862,1.825,0.407,0.53,1.306,0.583,1.701,0.548,1.268,0.493,1.64,2.589,0.604,0.795,1.215,3.099,0.175,0.587,2.684,0.75,2.229,0.972,0.686,1.965,0.714,1.298,0.705,1.445,1.24,0.59,0.732,0.772,1.068,0.706,0.796,1.177 +NM_016030,0.844,0.968,0.893,0.871,0.822,1.233,0.6,0.506,1.221,0.959,0.999,0.694,0.668,0.722,0.969,1.233,0.962,0.993,0.869,0.922,0.682,1.166,1.536,0.957,0.908,1.108,1.102,0.855,0.728,1.369,0.905,1.16,1.591,1.343,0.339,0.99,1.08,0.994,1.26,1.118,1.058,1.209,0.873,1.617,0.985,0.936,0.851,0.782,0.994,0.808,1.021,0.727,0.893,1.029 +NM_016034,0.692,0.981,0.934,0.705,0.78,1.062,0.554,0.431,0.97,1.014,1.059,0.962,0.638,0.549,1.008,1.284,0.766,0.859,1.515,0.755,0.787,0.754,1.38,0.976,0.684,0.919,1.416,0.579,0.431,0.999,0.856,1.605,2.25,1.47,0.249,2.429,1.0,0.689,1.573,0.972,0.802,1.198,0.756,1.377,0.95,0.855,0.91,0.658,1.191,0.741,1.0,0.9,1.094,2.339 +NM_016037,0.744,0.86,1.175,0.728,0.981,0.992,0.585,0.601,1.401,1.291,0.946,0.903,0.67,0.732,0.774,1.452,0.821,0.875,1.521,0.689,0.779,0.943,1.1,1.344,0.701,0.994,1.503,1.001,0.51,1.02,1.108,1.17,3.389,1.286,0.37,1.236,0.979,1.064,1.329,0.731,1.483,1.008,0.884,1.784,1.148,0.904,0.897,0.979,0.928,0.987,0.894,1.111,1.485,1.616 +NM_016038,0.81,0.899,0.979,0.69,1.149,1.645,0.514,0.474,1.426,1.105,1.846,0.648,0.56,0.773,1.132,1.375,0.792,0.843,1.053,0.782,0.432,0.74,1.553,1.183,0.562,0.869,1.201,1.042,0.606,1.446,1.145,0.77,1.532,1.669,0.834,0.758,1.544,1.149,1.297,0.675,1.39,1.373,1.213,0.883,0.938,1.738,1.206,0.814,1.404,0.685,1.199,0.838,0.9,0.884 +NM_016039,0.5,1.158,1.289,0.569,0.809,1.972,0.663,0.707,1.214,0.902,1.332,0.894,0.634,0.627,1.154,2.369,0.85,0.862,1.036,0.988,0.322,0.984,1.4,1.33,0.425,0.413,1.434,0.858,0.461,1.333,1.135,1.149,2.371,1.716,0.176,0.417,1.344,1.147,1.229,0.483,1.13,1.214,0.56,0.794,0.994,1.179,1.141,0.676,1.338,0.664,1.316,0.664,0.582,1.755 +NM_016040,0.565,1.249,0.868,0.955,0.609,1.675,0.954,0.478,0.863,0.768,1.847,0.636,0.625,0.517,0.847,1.906,0.597,1.093,1.037,0.988,0.365,0.612,1.407,0.86,0.865,0.553,1.076,0.595,0.602,1.92,0.649,0.96,2.374,1.53,0.252,0.591,1.597,0.585,1.623,0.891,0.747,1.453,0.697,0.671,0.752,1.168,1.215,0.626,1.02,0.608,1.065,0.988,0.862,2.198 +NM_016041,0.845,0.987,1.06,0.937,0.989,0.983,0.84,0.489,0.939,0.991,0.911,0.866,0.752,0.639,0.709,1.178,0.781,1.281,1.123,1.099,0.738,0.888,0.939,0.873,1.37,1.108,1.077,0.9,0.579,1.564,0.706,1.266,0.928,1.048,0.488,1.207,1.161,0.893,1.042,0.908,1.018,1.106,0.915,1.413,1.096,0.965,1.092,0.917,1.268,0.788,0.915,0.93,0.839,1.161 +NM_016042,0.547,0.784,1.226,0.72,0.917,1.132,0.664,0.661,1.233,1.2,0.934,1.385,0.75,0.594,1.056,1.613,0.967,0.899,1.184,0.989,0.591,0.774,1.178,1.632,0.489,0.654,1.394,0.859,0.403,0.997,0.944,1.08,1.851,1.17,0.241,1.011,1.003,0.819,1.004,1.133,1.367,0.872,0.701,1.512,1.149,0.943,1.12,0.633,1.11,0.769,1.08,1.875,0.874,3.18 +NM_016044,0.618,1.382,0.863,0.964,0.767,1.188,0.884,0.433,0.96,0.777,1.016,0.976,0.729,0.591,0.793,1.155,0.753,1.074,0.874,1.432,0.565,0.781,1.182,0.915,1.502,0.843,1.224,0.724,0.803,2.14,0.726,1.782,1.974,3.242,0.244,1.233,1.539,0.767,1.135,0.562,0.86,1.291,0.885,1.274,0.89,1.315,0.762,0.701,0.926,0.567,1.021,1.057,0.918,1.112 +NM_016045,0.888,0.94,0.94,0.845,1.027,1.121,0.826,0.783,1.048,1.058,1.083,0.999,0.936,0.835,1.028,1.31,0.905,0.966,0.858,1.023,0.918,0.866,1.077,0.936,0.904,0.881,0.991,0.975,1.106,1.008,0.957,0.943,1.212,1.089,0.814,0.988,1.116,1.08,1.089,0.936,0.907,1.011,0.938,0.99,0.88,1.091,1.073,0.903,1.309,0.95,1.049,0.989,1.05,1.33 +NM_016047,0.663,0.811,1.26,0.596,0.922,0.819,0.407,0.483,1.471,1.162,0.77,0.581,0.585,0.585,0.926,1.381,0.977,0.994,1.28,0.905,0.444,0.8,1.226,1.347,0.394,0.781,1.432,1.081,0.332,0.837,1.053,1.09,1.562,1.183,0.233,1.018,1.006,0.944,0.931,0.907,1.431,0.886,0.621,1.379,1.142,0.922,1.316,0.692,1.006,0.736,0.977,0.655,1.037,2.388 +NM_016048,1.019,0.991,1.161,0.844,0.969,1.061,0.675,0.523,1.232,0.88,1.198,0.851,0.811,0.947,0.964,1.605,0.735,0.855,1.654,0.792,0.775,0.793,1.028,1.137,1.009,0.986,1.277,1.123,0.698,1.364,1.004,1.001,1.624,1.708,0.248,0.561,1.635,1.036,1.301,0.489,0.983,0.972,0.626,0.705,0.906,0.957,0.779,0.783,0.91,0.97,0.954,0.657,1.031,1.578 +NM_016049,0.777,1.011,1.112,0.692,0.952,0.928,0.652,0.577,0.96,0.955,1.019,1.031,0.872,0.708,1.154,1.559,0.945,1.206,1.081,1.07,0.585,0.802,1.733,1.111,0.839,0.811,1.52,1.0,0.441,1.125,0.817,1.133,1.623,0.973,0.323,0.633,1.306,0.86,0.945,0.658,1.244,0.987,0.569,1.189,1.0,1.0,1.468,0.807,0.997,0.799,1.141,0.628,0.809,1.853 +NM_016052,0.677,0.919,1.459,0.684,1.052,0.857,0.765,0.788,1.54,1.368,0.83,0.954,0.653,0.74,0.997,1.31,1.154,0.831,1.182,0.848,0.714,1.061,1.322,1.494,0.592,0.746,1.531,0.991,0.615,0.794,1.085,1.542,2.784,1.102,0.564,0.95,0.871,1.035,1.45,1.159,1.33,0.9,0.706,1.378,1.519,0.875,0.907,0.797,1.007,0.927,0.941,0.785,1.137,2.766 +NM_016057,0.665,1.059,0.891,0.976,0.698,1.409,0.548,0.486,0.872,0.805,1.376,0.805,0.583,0.536,0.833,1.806,0.829,1.007,1.121,0.917,0.628,0.791,1.373,0.882,0.875,0.95,1.083,0.638,0.562,1.52,0.678,0.896,1.081,1.727,0.212,1.242,1.265,0.848,1.851,0.66,0.881,1.344,0.729,1.731,0.781,1.05,0.843,0.72,1.235,0.733,1.113,0.828,1.005,1.352 +NM_016058,0.556,0.745,1.274,0.636,0.969,1.191,0.691,0.913,1.442,1.0,1.351,0.899,0.824,0.602,0.939,2.792,0.862,1.042,1.236,1.005,0.534,1.0,1.484,1.257,0.429,0.764,1.431,1.086,0.48,0.977,1.166,1.008,2.845,1.297,0.296,1.068,1.144,1.248,1.122,0.763,1.304,0.961,0.457,0.803,1.065,0.863,1.111,0.85,0.933,0.733,1.041,0.789,0.721,1.742 +NM_016059,1.007,0.817,1.078,0.885,0.857,0.89,0.7,0.649,1.081,1.042,0.915,0.847,0.905,0.68,1.003,1.469,0.8,0.849,1.447,0.703,0.919,0.732,1.161,1.022,0.774,1.156,1.268,0.847,0.635,0.85,0.857,1.022,3.465,1.165,0.463,1.114,1.033,0.758,1.889,0.815,0.997,0.869,0.744,1.792,1.144,0.76,0.958,0.957,0.94,1.078,0.933,0.953,1.189,1.861 +NM_016060,1.131,0.998,0.987,1.229,1.012,0.876,1.148,1.078,0.767,0.887,0.867,0.972,0.998,0.805,0.855,1.01,0.957,1.137,1.023,1.139,0.96,0.914,0.985,0.826,1.058,0.864,1.034,1.009,0.873,1.042,1.072,0.98,1.132,1.137,0.915,1.09,1.171,0.933,1.04,0.954,1.001,0.9,0.987,1.087,1.12,1.119,0.98,0.976,1.078,1.052,1.045,0.968,0.935,1.081 +NM_016061,0.51,1.165,1.406,0.494,0.889,2.25,0.883,1.056,1.344,0.641,1.514,0.852,0.76,0.84,1.223,1.575,0.878,0.978,0.723,1.403,0.362,1.027,1.139,0.928,0.548,0.41,1.307,0.957,0.675,1.825,1.234,1.662,1.453,2.091,0.381,0.361,1.31,1.045,0.822,1.208,1.095,1.321,0.851,0.366,0.814,1.324,1.022,0.626,0.663,0.541,1.024,0.962,0.68,1.77 +NM_016062,0.698,0.94,0.953,0.724,0.969,1.268,0.793,0.548,1.432,1.544,0.92,1.432,0.763,0.48,0.894,2.389,0.663,1.188,0.909,1.161,0.632,0.762,1.065,1.632,0.487,0.917,0.923,0.958,0.569,1.105,1.04,1.107,1.576,1.341,0.2,0.92,1.184,0.907,1.368,0.688,1.11,1.023,0.836,1.081,1.286,1.206,1.533,1.033,1.178,0.654,0.937,0.948,0.925,1.681 +NM_016063,0.527,1.019,1.299,0.504,1.007,0.91,0.431,0.821,1.526,1.388,0.768,1.806,0.922,0.585,1.053,1.474,1.006,0.872,1.577,0.921,0.634,1.23,1.112,1.809,0.435,0.774,1.537,1.175,0.285,0.793,1.094,1.272,1.358,1.12,0.238,0.632,0.679,1.325,1.005,0.545,1.454,0.946,0.497,1.066,1.207,0.655,1.192,0.785,0.97,0.801,0.824,0.912,0.861,2.901 +NM_016065,0.423,1.048,1.183,0.465,0.883,1.525,0.662,0.665,1.229,1.011,0.872,1.015,0.63,0.458,0.958,2.472,1.074,1.028,1.034,0.982,0.374,0.981,1.284,1.48,0.397,0.432,1.337,0.893,0.459,1.085,0.935,0.999,2.823,1.304,0.174,0.78,1.009,1.066,1.5,0.583,1.225,1.136,0.509,0.921,1.035,0.987,1.384,0.658,1.393,0.659,1.135,1.188,0.626,3.053 +NM_016066,0.955,0.923,0.979,0.926,1.058,1.067,0.906,1.168,0.959,1.01,1.083,0.957,1.007,0.991,1.013,0.95,1.067,1.055,0.886,0.878,0.835,0.958,1.183,1.059,0.917,1.06,1.07,1.044,1.085,0.99,0.964,0.951,1.011,1.003,0.969,0.905,1.003,1.042,1.056,1.062,0.981,1.049,0.879,0.979,1.028,1.017,0.914,1.072,0.903,1.149,1.062,0.864,0.982,0.873 +NM_016067,0.706,0.846,1.23,0.707,1.007,1.007,0.66,0.694,1.429,1.256,1.199,0.848,0.676,0.584,1.007,1.506,0.891,0.966,1.324,0.895,0.6,1.034,1.13,1.189,0.523,0.845,1.271,1.146,0.457,1.024,1.671,1.143,1.947,1.282,0.422,0.661,1.136,1.031,1.246,0.442,1.328,0.863,0.745,1.125,1.098,0.954,1.155,0.915,1.053,0.685,0.86,0.807,1.043,1.266 +NM_016068,0.864,0.845,1.064,0.797,0.843,1.013,0.545,0.779,0.961,0.897,1.572,1.282,1.155,0.622,0.927,2.455,0.707,0.89,1.393,0.938,0.396,0.861,1.541,1.174,0.905,1.241,0.79,0.887,0.451,1.759,0.837,1.612,1.029,1.454,0.24,0.422,0.921,0.937,1.533,1.081,1.012,1.071,0.807,1.027,0.919,1.072,1.132,1.141,0.888,0.778,1.05,1.142,0.899,0.754 +NM_016069,0.734,0.923,0.912,0.756,0.727,0.924,0.786,0.62,0.899,0.967,1.241,1.132,0.87,0.607,0.999,1.431,0.689,0.872,1.14,0.836,0.625,0.711,1.407,1.196,0.829,0.849,1.023,0.773,0.386,0.98,0.871,1.986,4.151,1.551,0.222,1.19,1.237,0.712,1.764,0.876,0.95,1.031,0.718,2.008,1.11,0.866,1.286,0.767,1.043,0.716,1.001,1.383,1.084,1.532 +NM_016072,0.742,1.104,1.056,0.806,0.88,1.349,0.946,0.819,1.141,0.911,1.015,0.827,0.989,0.735,0.826,1.45,0.7,1.094,1.042,1.085,0.558,0.909,1.236,1.075,0.749,0.67,1.29,0.885,0.653,1.086,0.826,1.158,3.421,1.324,0.454,0.932,1.034,0.778,1.793,0.859,0.801,1.111,0.552,0.877,0.942,1.022,0.926,0.933,1.064,0.878,0.993,0.873,0.706,1.715 +NM_016073,0.933,0.917,1.333,0.76,0.962,0.867,0.859,0.807,1.713,1.709,0.923,1.577,1.07,1.054,1.033,1.056,1.005,0.94,0.906,0.795,0.732,0.951,0.907,2.309,0.853,0.89,1.932,1.001,0.622,1.017,1.496,3.194,3.364,1.46,0.574,2.343,0.763,1.608,0.884,1.385,1.169,1.225,0.727,0.596,1.049,0.795,1.253,1.009,0.646,0.979,0.917,1.895,1.467,0.988 +NM_016074,0.902,1.264,1.007,0.936,0.874,1.068,0.726,0.727,0.892,0.804,1.018,0.91,0.923,0.725,0.951,0.965,0.813,0.864,1.129,1.067,0.861,0.955,1.007,1.004,0.906,1.065,1.08,0.881,0.497,1.226,0.916,1.6,1.632,1.503,0.514,1.203,0.991,0.937,1.098,0.92,0.998,1.063,0.689,1.415,1.005,0.816,0.899,0.889,0.747,0.763,0.979,0.611,0.853,1.332 +NM_016075,0.631,0.73,1.225,0.7,1.185,1.22,0.56,0.934,1.243,1.004,1.072,1.366,0.789,0.711,1.165,2.211,0.951,1.02,1.777,0.998,0.593,1.061,0.855,1.219,0.513,0.863,0.892,0.941,0.437,0.98,1.068,0.803,1.326,1.152,0.457,1.491,1.156,0.988,0.963,0.497,1.089,0.79,0.889,0.902,1.013,1.359,1.771,0.864,1.042,0.628,0.972,0.65,1.049,1.226 +NM_016076,0.888,0.978,1.132,0.781,0.973,1.17,0.939,0.904,1.348,1.145,0.853,1.048,0.89,0.93,0.833,0.981,0.997,0.901,0.852,1.006,0.622,1.069,1.36,1.245,0.92,0.722,1.125,1.103,0.584,1.11,1.11,1.929,1.561,1.104,0.771,1.323,0.945,0.923,1.211,1.249,1.085,1.117,0.879,1.183,1.029,1.018,1.081,0.684,0.965,0.783,1.182,0.974,0.939,1.514 +NM_016077,0.65,1.144,1.016,0.798,0.834,0.991,0.601,0.475,0.957,1.346,1.106,0.708,0.6,0.593,0.842,1.318,0.876,0.684,1.094,0.78,0.736,0.677,1.326,1.18,0.655,0.732,1.033,0.669,0.342,1.056,0.842,1.542,1.905,1.219,0.283,1.551,0.982,0.814,1.627,0.97,0.893,1.003,0.997,1.726,1.053,0.99,0.916,0.703,0.904,0.648,1.046,1.054,1.257,2.453 +NM_016080,0.447,1.121,1.141,0.523,0.677,2.116,0.747,0.53,1.098,0.811,1.095,0.853,0.562,0.501,1.463,2.706,0.793,0.875,0.87,1.844,0.413,0.629,1.475,1.161,0.913,0.458,1.392,0.695,0.47,1.603,0.973,1.272,1.616,2.472,0.268,0.622,1.361,0.734,0.946,0.687,1.111,1.403,0.646,0.677,0.783,1.186,1.01,0.5,1.193,0.529,1.387,0.554,0.529,1.776 +NM_016081,0.736,0.859,2.006,0.478,1.121,1.257,0.88,0.745,1.699,1.301,0.989,0.999,0.739,0.741,1.049,1.181,1.353,1.207,1.857,0.717,0.818,0.931,1.373,0.821,0.482,0.633,1.376,1.41,0.674,1.645,1.295,3.347,1.751,2.002,0.862,0.426,0.708,1.567,1.216,0.589,2.042,1.692,0.583,0.649,1.729,0.701,0.91,1.176,0.704,1.464,1.236,1.086,1.692,0.733 +NM_016082,0.71,1.018,1.022,0.782,0.816,1.021,0.764,0.521,1.021,0.928,0.874,0.778,0.566,0.708,0.882,1.206,0.79,0.9,0.977,0.915,0.602,0.762,1.496,1.08,0.806,0.772,1.211,0.742,0.635,1.253,0.81,1.563,3.073,1.167,0.348,1.089,1.067,0.873,1.406,1.02,0.967,0.896,0.939,1.368,0.912,1.03,1.161,0.66,1.043,0.721,1.034,1.243,0.973,2.481 +NM_016083,0.968,0.87,1.014,0.845,0.984,0.992,1.058,0.804,1.123,1.044,1.062,1.115,1.149,1.027,0.907,0.777,1.049,0.969,1.005,1.079,1.056,0.976,0.935,0.931,1.007,0.924,0.957,1.065,1.003,1.108,1.156,1.144,0.919,1.095,0.926,0.973,1.104,0.867,1.05,0.968,0.863,0.958,1.183,0.998,0.933,0.999,1.006,1.109,0.969,0.972,0.999,1.186,1.037,0.994 +NM_016084,0.725,1.102,0.738,0.902,0.719,0.996,0.969,0.706,0.816,0.69,1.682,0.849,0.783,0.729,1.828,2.101,0.754,0.82,0.831,2.192,0.695,0.828,2.017,0.708,1.38,0.832,0.689,0.762,0.761,0.882,0.747,1.033,0.959,1.515,0.776,0.812,1.322,0.761,1.004,1.45,0.693,3.163,1.671,1.468,0.844,1.344,1.281,0.95,2.868,0.963,1.364,0.878,0.829,1.061 +NM_016085,1.028,0.979,1.151,1.069,1.007,0.901,0.869,0.88,1.044,1.004,0.755,0.99,1.065,0.85,0.823,0.965,0.812,1.092,1.191,0.831,0.914,0.774,1.128,1.008,1.058,1.051,1.01,0.96,0.801,0.978,1.051,0.986,1.438,1.126,0.937,0.956,0.982,1.01,1.046,0.961,1.048,1.12,0.903,1.527,1.023,1.002,0.958,0.888,0.852,1.018,0.899,1.009,0.981,1.174 +NM_016086,1.013,0.958,1.718,0.79,1.44,1.108,0.633,0.645,1.074,1.06,0.841,0.865,0.633,1.037,0.797,0.896,1.19,1.605,1.378,0.694,0.771,1.108,1.098,1.303,0.709,1.258,1.135,1.001,0.661,1.26,1.015,0.651,1.526,0.908,0.953,0.553,1.383,0.857,1.709,0.806,1.179,0.78,0.546,2.095,1.043,0.587,1.608,1.321,0.787,1.013,0.886,1.081,0.951,0.782 +NM_016087,1.97,1.886,2.019,2.168,2.181,1.988,2.182,2.135,2.072,2.049,2.3,1.874,2.285,2.048,1.9129999999999998,2.012,1.923,2.253,2.053,2.069,1.741,1.7530000000000001,2.054,1.9529999999999998,1.819,2.185,2.072,1.862,1.7599999999999998,1.724,2.027,2.122,2.181,2.161,1.9369999999999998,1.903,2.1529999999999996,1.867,2.213,2.128,2.069,2.032,2.16,2.013,1.955,1.911,2.096,2.072,2.187,1.8519999999999999,1.888,2.033,2.247,1.902 +NM_016089,1.096,1.049,1.191,0.943,1.001,0.942,0.882,0.805,1.621,0.93,1.036,1.053,0.904,0.973,1.099,1.058,1.063,0.948,0.866,0.964,0.965,0.973,1.029,1.077,0.913,0.97,1.123,1.07,0.632,0.97,0.918,1.001,1.026,1.156,0.892,0.978,0.853,0.986,1.083,1.053,0.955,1.002,0.968,0.932,1.076,0.962,0.88,1.103,1.059,1.049,1.03,0.955,1.077,1.117 +NM_016090,0.705,0.872,1.052,0.869,0.754,0.904,0.65,0.648,1.06,1.019,0.972,0.657,0.765,0.859,1.001,1.285,0.737,0.774,0.987,0.991,0.752,0.603,1.099,0.783,0.74,0.85,1.147,0.888,0.523,1.218,1.031,1.293,1.516,1.167,0.738,1.131,1.002,0.688,0.89,0.81,1.102,1.119,1.075,1.0,0.928,1.14,1.079,0.699,1.162,0.935,1.051,0.861,1.0,1.428 +NM_016091,0.764,0.977,1.357,0.661,0.892,0.973,0.423,0.644,1.285,0.883,1.123,1.124,0.976,0.81,1.073,1.518,0.78,0.696,1.656,0.898,0.783,1.046,1.387,1.284,0.803,1.024,1.436,1.001,0.263,0.977,1.185,1.04,1.594,1.564,0.243,0.725,0.923,1.34,1.124,0.571,1.101,1.532,0.582,0.64,1.065,0.807,0.7,0.826,0.94,0.96,0.864,0.727,1.213,0.963 +NM_016093,0.553,0.959,1.251,0.696,0.867,1.222,0.607,0.595,1.051,1.122,1.015,1.515,0.741,0.545,0.855,1.907,0.926,0.898,1.367,0.904,0.539,0.764,1.252,1.373,0.446,0.687,1.593,0.833,0.36,1.065,0.84,1.654,3.329,1.231,0.148,0.665,1.096,0.88,1.402,0.767,1.14,0.904,0.517,0.989,1.082,0.86,1.112,0.814,1.28,0.726,1.06,1.011,1.099,2.807 +NM_016095,0.641,0.986,0.924,0.696,0.836,1.149,0.661,0.71,1.308,1.238,0.648,1.874,1.099,0.59,0.959,1.447,0.752,1.166,1.39,0.92,0.756,0.931,1.915,1.531,0.585,0.853,2.128,0.78,0.558,0.833,0.881,1.351,6.771,0.861,0.39,1.462,0.845,0.997,1.873,0.928,1.189,0.714,0.694,2.486,1.281,1.054,1.52,0.818,1.604,0.935,0.993,1.112,0.969,1.808 +NM_016097,0.6,1.01,1.329,0.722,0.936,2.195,0.916,0.884,1.068,0.765,1.01,0.911,1.004,0.689,1.155,3.185,0.83,1.13,0.586,1.475,0.404,1.334,1.308,1.392,0.642,0.406,1.871,0.751,0.652,2.188,1.107,1.237,1.925,1.662,0.299,0.355,1.344,1.134,1.664,0.535,0.929,1.204,0.658,0.52,1.034,1.174,0.809,0.853,1.29,0.862,1.41,0.839,0.34,1.246 +NM_016098,0.534,1.056,0.927,0.8,0.889,2.296,0.993,0.93,1.211,0.756,1.649,1.405,0.927,0.623,1.283,3.511,0.66,1.375,1.314,1.231,0.347,0.972,1.47,1.295,1.122,0.516,1.007,0.971,0.724,1.478,1.093,0.695,1.305,2.121,0.423,0.367,2.377,1.083,1.283,0.388,1.04,1.26,0.94,0.349,0.817,1.83,1.144,0.813,1.602,0.582,1.565,0.726,0.535,1.12 +NM_016099,0.834,0.924,1.14,0.827,0.844,1.204,0.65,0.778,1.223,0.876,1.353,1.201,0.853,0.886,0.984,1.198,0.831,1.014,1.097,0.909,0.669,0.804,0.889,1.133,0.742,0.958,1.283,1.011,0.396,1.242,1.155,1.253,0.92,1.357,0.464,0.651,1.226,0.95,1.175,0.629,1.057,0.959,0.738,0.901,1.004,1.136,0.864,0.701,1.157,0.784,0.969,0.895,0.93,1.72 +NM_016102,0.91,0.935,1.075,1.107,1.114,0.874,0.958,0.834,1.009,0.843,0.798,0.8,0.918,0.937,0.987,1.181,1.06,0.881,0.953,0.936,1.157,0.913,1.153,1.001,1.036,0.989,1.26,1.141,0.999,1.001,0.906,1.13,1.108,1.121,1.012,0.939,0.926,1.003,0.91,1.11,1.04,1.071,0.868,0.888,0.89,0.92,1.119,1.162,1.099,0.988,1.086,0.981,1.089,1.161 +NM_016103,0.522,1.012,1.166,0.716,1.078,1.768,0.979,0.789,1.212,1.049,1.31,0.894,0.675,0.78,1.142,2.724,0.86,1.294,1.214,1.252,0.517,0.85,1.044,1.22,0.517,0.646,1.1,1.132,0.755,1.214,1.148,0.757,1.251,1.618,0.715,0.569,2.027,0.801,1.198,0.38,1.09,1.203,0.828,0.56,0.952,1.44,1.408,0.731,1.3,0.549,1.287,0.94,0.88,1.118 +NM_016105,1.077,1.182,1.052,0.961,1.08,1.136,1.057,0.997,0.996,0.907,1.022,0.986,0.964,1.038,1.029,1.184,0.892,0.981,1.033,1.031,1.122,1.052,0.987,0.951,0.966,0.926,0.964,0.843,1.162,0.958,0.959,0.888,1.089,1.021,0.98,0.946,1.044,1.162,0.899,0.992,1.012,0.978,1.025,0.895,0.943,1.047,1.052,0.992,0.997,0.993,0.93,1.013,1.074,1.25 +NM_016107,0.673,1.003,1.082,0.666,0.895,1.088,0.74,0.5,1.186,0.909,0.971,0.875,0.618,0.722,0.979,1.847,0.637,0.896,1.198,1.161,0.604,0.874,1.286,0.966,0.697,0.654,1.37,0.895,0.582,1.303,0.991,0.959,2.51,1.338,0.304,1.06,1.314,0.849,1.145,1.094,1.036,1.152,0.573,1.371,0.925,0.936,0.777,0.641,1.008,0.636,1.025,0.915,0.748,1.639 +NM_016108,1.052,0.893,1.142,0.742,1.196,0.735,0.465,1.209,1.532,1.111,1.047,1.188,1.157,0.891,1.028,1.497,0.631,0.994,1.824,0.756,0.748,1.181,0.976,1.312,0.617,1.481,1.32,1.323,0.36,0.735,1.26,0.934,1.741,1.196,0.767,0.549,1.0,1.3,0.964,1.108,1.07,1.0,0.589,1.179,0.927,0.717,1.192,1.327,0.605,1.056,0.837,0.854,1.159,0.877 +NM_016109,1.015,0.479,3.811,0.692,1.806,0.657,0.351,2.296,1.572,1.317,0.48,1.191,0.716,1.074,1.059,1.069,4.054,0.904,4.621,0.572,0.984,1.447,0.282,1.199,0.298,1.616,4.578,1.517,0.22,0.433,1.008,1.728,0.806,0.374,6.948,0.348,0.827,2.665,1.417,6.854,2.106,0.819,0.826,0.47,2.057,1.014,2.806,1.977,0.633,4.185,0.939,1.232,5.599,2.181 +NM_016111,0.849,1.009,1.03,0.822,1.079,0.859,0.85,0.603,1.347,1.108,0.813,0.777,0.745,0.699,1.187,1.217,0.874,0.978,1.057,0.977,0.688,0.887,1.676,0.898,0.775,1.073,1.136,0.866,0.653,0.882,0.972,1.364,1.632,1.068,0.633,1.044,1.084,0.947,1.134,0.95,0.909,0.903,0.865,1.392,1.002,0.997,1.127,1.123,1.127,0.945,1.014,0.954,0.996,0.858 +NM_016112,0.966,1.006,0.949,1.081,1.017,0.853,1.108,0.863,1.016,1.038,0.986,1.174,0.978,0.887,1.01,0.905,0.97,0.936,0.952,0.956,0.921,1.024,1.044,0.941,1.016,1.045,0.959,0.965,0.903,1.089,0.966,1.117,1.012,0.959,0.992,0.898,1.035,1.132,1.003,0.942,1.068,1.135,0.997,1.049,1.001,0.969,0.949,1.053,0.952,1.02,0.802,1.032,0.946,1.29 +NM_016113,0.898,1.097,0.942,1.028,1.009,0.808,1.081,0.726,0.89,0.907,0.927,0.918,0.944,0.751,0.84,1.137,0.867,0.979,0.971,0.885,1.001,0.934,1.037,0.984,0.877,0.954,0.773,0.865,1.847,1.371,1.033,1.691,1.025,1.164,0.804,0.999,0.999,0.976,2.033,1.42,0.949,0.935,1.037,0.929,0.896,0.885,1.022,1.112,0.953,0.956,1.057,1.148,1.151,1.112 +NM_016114,1.019,1.051,1.107,1.013,1.033,0.947,0.744,0.744,0.991,0.998,0.968,0.889,0.846,0.719,0.872,0.957,0.986,0.987,0.869,1.08,0.723,1.062,1.111,0.995,0.99,0.958,1.219,1.073,0.81,1.047,0.946,1.735,1.071,1.282,0.737,1.021,0.976,1.079,1.218,1.251,1.031,1.139,0.882,1.415,0.967,1.156,0.921,0.977,0.906,0.979,0.978,0.843,0.811,1.682 +NM_016115,1.12,0.988,0.959,0.908,1.011,0.959,1.058,0.885,0.921,0.91,0.946,1.002,0.913,0.94,0.908,0.884,0.899,0.92,0.955,0.931,0.986,1.014,1.013,1.084,0.866,1.017,1.048,0.962,1.314,0.853,0.954,0.838,0.921,1.028,1.037,0.947,1.071,1.026,1.058,1.074,1.099,0.994,1.029,1.058,0.834,0.958,1.039,0.998,1.043,1.058,1.063,0.95,1.024,1.067 +NM_016116,1.829,2.14,1.745,2.138,1.867,1.9209999999999998,1.829,2.0,2.125,1.947,2.2489999999999997,1.876,1.946,1.5779999999999998,1.967,2.48,1.9529999999999998,2.044,1.8439999999999999,2.049,2.06,2.127,2.238,1.845,1.88,1.8090000000000002,2.049,1.865,2.113,2.173,2.013,2.029,1.97,1.9220000000000002,1.812,2.2039999999999997,2.073,2.042,2.094,2.1229999999999998,1.742,1.992,2.023,2.011,2.04,2.319,2.07,2.066,2.736,1.9009999999999998,2.037,2.027,2.075,1.758 +NM_016118,0.497,1.027,1.079,0.736,0.598,1.497,1.029,0.316,0.609,0.777,1.266,0.524,0.399,0.416,0.929,1.575,0.652,0.919,0.692,1.369,0.513,0.651,2.091,0.576,0.825,0.557,0.843,0.571,0.678,1.732,0.537,1.178,1.16,1.387,0.202,0.805,1.138,0.727,1.724,0.607,0.689,1.519,0.641,1.132,0.566,1.186,1.038,0.667,1.725,0.59,1.347,0.79,0.735,1.528 +NM_016119,0.639,0.846,1.154,0.827,0.669,1.314,0.913,0.573,1.09,0.861,1.088,0.74,0.584,0.725,1.077,1.479,0.859,0.754,0.764,1.157,0.493,0.539,1.033,0.892,0.715,0.596,1.032,0.808,0.514,1.706,0.863,1.701,1.285,1.428,0.27,1.026,1.083,0.621,1.311,0.922,1.048,1.292,0.93,1.177,0.793,0.84,0.758,0.471,1.039,0.569,1.109,1.35,1.056,2.012 +NM_016120,1.01,0.927,0.999,0.795,1.006,1.005,1.141,1.002,1.272,1.124,0.93,0.878,0.829,1.056,0.896,1.016,0.948,0.94,0.94,0.983,1.02,1.126,1.045,0.929,1.059,0.809,0.913,1.055,0.913,1.044,0.943,0.9,1.105,1.061,0.993,1.033,0.992,0.908,1.209,1.035,0.95,0.934,1.099,0.815,0.939,0.95,1.039,1.117,1.043,0.896,0.885,0.955,1.061,1.022 +NM_016121,0.781,0.687,1.766,0.722,1.049,1.103,0.493,0.722,1.649,0.99,1.125,0.735,0.721,0.928,1.266,2.125,0.737,1.042,1.56,1.122,0.324,1.219,1.141,1.261,0.599,0.936,1.292,1.095,0.457,0.819,1.304,1.297,1.438,1.102,0.9,0.754,1.148,0.966,1.234,0.585,0.851,0.706,0.713,0.806,0.979,1.122,0.644,1.221,1.147,0.842,1.089,0.613,0.653,0.756 +NM_016122,0.893,0.983,1.03,0.914,0.961,1.084,0.987,0.992,1.1,1.142,1.082,1.121,0.921,0.924,1.14,1.241,0.893,0.874,0.908,1.108,0.822,1.071,1.366,1.171,0.859,0.755,1.349,0.893,0.806,1.211,0.982,1.038,1.672,1.009,0.811,1.079,1.203,0.922,1.089,0.975,0.965,1.143,0.968,0.826,0.909,1.003,0.976,0.863,1.121,0.91,1.125,0.768,0.859,1.394 +NM_016124,1.252,0.996,0.952,0.892,0.871,0.906,0.931,1.148,1.061,1.027,0.924,0.941,0.95,1.269,1.012,1.003,0.992,1.008,1.08,0.979,0.998,0.963,0.9,1.034,1.001,0.91,0.912,1.167,1.187,0.942,1.14,1.006,0.916,0.988,0.982,0.899,0.933,1.0,1.077,1.077,0.925,1.168,1.047,1.037,1.122,1.0,0.924,1.092,0.896,0.959,0.926,0.92,1.005,1.1 +NM_016125,1.043,0.916,1.121,0.914,0.929,0.949,0.909,0.932,1.102,0.933,1.142,0.926,0.9,0.802,0.955,1.125,1.031,1.086,0.873,0.892,1.071,0.911,1.056,0.935,0.914,0.881,1.01,0.991,0.807,0.984,0.983,1.068,1.241,1.021,1.141,0.888,1.117,0.837,1.043,1.046,1.103,0.94,0.835,0.973,0.966,0.89,1.002,0.948,1.063,0.957,0.989,1.041,0.998,1.182 +NM_016126,0.532,1.378,1.788,0.55,0.995,1.552,0.762,1.089,1.358,0.961,0.926,1.274,0.938,0.761,1.072,1.995,1.176,0.889,1.025,1.03,0.539,1.195,0.993,1.34,0.49,0.531,2.042,0.822,0.463,1.399,1.246,2.026,6.626,1.523,0.328,0.437,1.201,1.275,1.135,0.75,1.198,0.871,0.55,0.549,0.887,0.847,1.022,0.701,0.801,0.665,1.137,0.949,0.661,2.504 +NM_016127,0.495,1.203,1.181,0.576,0.918,1.574,0.704,0.684,1.089,0.736,1.275,0.806,0.701,0.547,1.002,1.731,0.716,1.128,1.103,1.251,0.416,0.838,1.079,0.998,0.848,0.634,1.088,0.76,0.451,1.338,0.938,1.236,1.371,1.706,0.503,0.496,1.441,1.09,1.151,0.49,1.075,1.454,0.626,0.474,0.715,1.447,0.965,0.658,1.358,0.59,1.306,0.611,0.695,1.235 +NM_016128,0.576,0.989,0.723,1.378,0.57,2.155,0.969,0.451,0.761,0.71,1.46,0.597,0.411,0.383,1.016,1.876,0.626,1.048,0.776,1.519,0.332,0.616,1.588,0.683,1.086,0.616,0.728,0.474,0.64,2.238,0.633,1.418,2.265,1.729,0.362,1.05,1.344,0.573,1.807,0.82,0.652,1.473,0.976,1.408,0.69,1.157,0.549,0.531,1.293,0.654,1.641,0.827,0.673,1.218 +NM_016129,0.699,1.024,1.295,0.713,0.959,1.152,0.628,0.724,1.482,1.115,0.896,1.024,0.886,0.839,1.081,1.922,0.927,0.954,1.767,0.895,0.738,1.064,1.139,1.21,0.642,0.819,1.544,1.007,0.459,1.012,1.16,1.281,2.022,1.218,0.335,0.64,1.104,1.14,1.315,0.592,1.34,0.994,0.643,0.976,1.146,0.843,1.034,0.839,1.031,0.936,0.998,0.798,1.076,1.079 +NM_016131,1.287,0.711,1.477,0.78,1.611,1.023,0.602,1.44,1.799,1.667,0.734,1.867,1.265,0.824,1.038,1.419,1.114,1.347,1.898,0.922,0.582,1.475,0.905,1.924,0.477,1.369,1.796,1.757,0.459,0.965,1.459,0.462,1.135,1.097,0.69,0.835,1.03,1.777,0.744,0.688,1.812,0.727,0.513,0.742,1.75,0.7,1.353,1.764,0.898,1.439,0.946,0.909,1.276,1.009 +NM_016132,1.041,0.927,0.947,0.879,0.958,0.993,0.854,1.017,0.977,1.007,0.951,1.054,0.906,0.973,0.894,1.068,0.909,1.053,0.964,0.983,0.885,1.006,0.861,1.001,1.002,1.016,1.073,1.142,0.769,0.999,0.997,1.102,0.938,0.895,1.03,1.032,0.954,1.038,1.122,1.03,0.985,1.03,0.965,1.069,0.889,0.94,1.019,0.991,0.96,0.873,0.96,0.901,1.068,0.987 +NM_016133,0.646,1.184,0.854,0.836,0.676,1.241,0.756,0.608,0.917,0.74,1.227,0.682,0.588,0.7,1.046,1.556,0.785,0.85,0.899,0.973,0.649,0.641,1.031,0.761,1.096,0.761,1.139,0.735,0.489,1.076,0.733,1.372,1.74,1.294,0.491,0.823,1.237,0.684,1.23,1.451,0.91,1.129,0.607,1.431,0.738,1.212,0.985,0.694,1.024,0.709,0.96,0.799,0.801,1.449 +NM_016134,0.536,1.775,0.567,0.702,0.436,1.798,0.954,0.463,0.564,0.482,1.812,0.443,0.519,0.448,1.01,1.827,0.443,0.622,0.408,1.784,0.447,0.596,1.529,0.559,1.533,0.608,0.57,0.599,0.762,2.282,0.537,3.314,0.99,2.615,0.349,0.684,1.97,0.541,1.577,1.143,0.684,3.084,1.122,0.415,0.519,1.521,0.84,0.482,0.648,0.574,1.715,1.012,0.632,1.517 +NM_016135,1.032,0.973,0.981,0.869,0.988,1.156,1.324,0.831,0.928,0.89,1.182,0.93,0.886,0.82,0.912,1.088,0.95,1.021,0.891,1.083,0.923,0.914,1.194,0.981,1.025,0.749,1.021,0.914,0.835,0.872,0.934,0.962,1.133,1.126,0.736,1.018,1.051,0.951,1.026,1.123,0.932,0.933,0.977,1.231,0.965,0.927,1.003,0.876,1.236,0.961,1.051,0.986,1.021,1.734 +NM_016139,0.551,0.813,0.89,0.677,0.625,1.288,0.654,0.686,0.987,0.722,1.232,1.019,0.635,0.401,0.891,2.055,0.528,0.95,1.219,1.093,0.498,0.629,1.375,1.077,0.616,0.813,0.969,0.74,0.392,1.332,0.755,1.068,1.85,1.461,0.203,1.684,1.258,0.752,0.994,1.175,0.825,1.008,0.5,1.329,0.748,1.081,1.446,0.665,1.049,0.627,1.092,1.068,0.934,1.681 +NM_016141,0.613,1.107,1.322,0.678,0.891,1.279,0.814,0.818,0.929,0.806,0.776,0.956,0.788,0.829,1.114,1.467,1.031,0.9,0.693,1.035,0.57,1.094,1.077,1.121,0.741,0.598,1.492,0.793,0.695,1.19,0.993,1.682,1.41,1.108,0.489,0.669,1.006,1.031,1.638,1.081,1.028,1.122,0.804,0.639,1.032,1.023,0.96,0.768,1.134,0.915,1.276,0.852,0.623,1.773 +NM_016142,0.385,1.227,1.057,0.52,0.99,1.812,0.719,0.45,1.414,1.012,1.079,0.94,0.414,0.37,0.829,2.042,0.592,0.865,0.791,1.335,0.27,0.735,1.96,1.055,0.628,0.42,1.317,0.79,0.36,1.887,0.711,0.984,1.899,1.129,0.132,1.638,1.237,0.863,1.172,1.071,1.034,1.256,0.744,1.052,0.923,1.443,1.361,0.492,1.377,0.59,1.19,1.021,0.567,1.042 +NM_016145,0.782,1.231,1.467,0.63,1.146,1.066,0.563,0.688,1.296,1.188,0.934,1.367,0.873,0.628,0.775,1.14,0.992,0.965,1.257,1.322,0.541,0.907,1.345,1.075,0.544,1.185,1.1,1.189,0.374,1.224,0.974,1.41,1.074,1.378,0.243,1.034,0.869,1.26,0.852,0.94,1.319,1.134,0.697,1.031,1.242,0.946,0.837,0.923,0.849,0.711,0.879,1.156,1.052,1.262 +NM_016146,0.48,1.05,0.829,0.647,0.605,1.41,0.605,0.313,0.91,0.826,1.225,0.835,0.552,0.657,1.174,1.878,0.756,0.868,0.741,1.099,0.556,0.949,1.225,1.129,0.671,0.564,0.916,0.687,0.477,1.824,1.029,1.803,0.954,1.355,0.251,0.995,1.524,0.633,1.312,0.714,1.418,1.249,0.748,0.925,0.73,1.331,1.383,0.438,1.317,0.538,1.045,0.768,0.709,1.274 +NM_016147,0.972,0.84,1.173,0.755,1.046,0.782,0.581,0.689,1.169,1.147,0.726,1.094,0.673,0.747,0.762,1.218,1.005,0.975,1.27,0.809,0.875,0.936,0.915,1.333,0.689,1.387,1.294,0.995,0.398,1.092,1.077,1.196,2.466,0.985,0.599,1.122,0.831,0.995,1.689,1.173,1.02,0.961,0.688,1.067,1.283,0.696,0.835,1.035,0.801,1.164,0.904,0.81,1.102,1.234 +NM_016148,1.0,0.862,1.068,1.015,0.972,0.943,0.911,0.988,1.029,1.033,1.007,0.974,1.079,0.99,0.759,1.091,1.016,0.952,1.082,0.929,0.953,1.057,1.033,0.961,0.986,1.094,0.994,1.141,1.259,1.057,0.931,1.085,1.0,0.959,0.981,0.916,1.027,1.048,1.117,0.927,1.032,1.016,1.036,0.828,0.963,0.974,1.049,1.013,0.937,1.098,1.138,0.911,1.042,0.965 +NM_016150,0.887,0.883,1.778,0.895,0.99,0.798,0.998,1.069,1.023,0.942,0.984,0.945,1.126,0.867,1.136,0.829,1.542,1.148,0.892,1.079,0.895,0.729,1.052,0.982,0.955,0.766,1.473,1.151,0.572,1.228,0.919,1.252,0.945,1.435,0.875,0.971,1.042,0.94,1.016,0.935,1.53,1.274,1.085,0.878,1.41,0.96,0.929,1.004,0.835,1.032,1.162,0.961,1.192,1.187 +NM_016151,0.91,0.913,0.972,0.974,0.943,1.134,0.91,0.919,0.923,0.976,1.012,0.941,0.863,1.046,1.023,1.199,0.952,1.026,0.902,1.035,1.0,0.901,1.01,0.896,1.196,1.075,0.993,0.968,0.974,1.022,0.817,1.196,1.483,0.988,1.083,0.998,0.916,0.943,1.443,1.16,0.985,1.073,0.893,1.067,0.912,0.943,0.951,1.043,1.036,0.943,1.101,1.011,0.993,1.017 +NM_016153,0.928,1.06,1.143,0.945,0.95,1.012,0.954,0.886,1.063,1.004,0.899,0.962,0.93,0.77,1.188,0.917,1.076,1.077,1.051,1.054,0.916,0.997,1.056,1.098,0.943,0.882,0.949,1.101,1.034,0.998,0.943,1.291,1.031,1.1,0.818,0.933,0.988,1.069,1.087,0.961,1.122,0.953,1.085,1.026,1.036,0.877,0.999,1.013,0.917,0.969,0.838,0.89,1.037,1.043 +NM_016154,0.999,0.979,0.968,0.932,0.782,1.491,0.824,1.084,0.922,0.832,1.516,0.82,0.864,0.831,1.153,1.92,0.949,0.85,0.977,1.308,0.715,0.95,1.231,1.045,1.053,1.024,1.099,0.87,0.668,1.211,1.164,0.968,1.498,1.672,1.04,0.934,1.189,0.905,1.476,1.027,0.823,1.053,1.112,0.902,0.764,0.985,0.901,0.979,1.126,0.774,1.106,0.788,0.99,0.908 +NM_016161,0.946,4.349,0.894,1.911,0.96,0.971,1.334,0.875,0.913,0.971,0.891,0.97,0.943,1.116,0.967,0.91,0.865,1.169,1.045,2.229,0.963,1.057,1.038,1.11,1.137,0.93,0.958,0.894,1.034,1.761,1.055,1.131,0.962,1.347,0.996,0.932,1.774,1.06,1.044,1.029,1.035,4.565,1.313,0.91,0.938,1.01,0.987,0.957,0.872,0.907,0.978,0.976,1.137,1.128 +NM_016162,1.009,1.111,0.99,0.967,0.928,0.986,0.975,0.914,0.944,0.971,0.973,1.026,1.014,1.039,0.999,0.841,1.176,0.909,1.108,1.007,0.894,0.971,1.02,1.014,0.975,1.084,1.017,0.946,0.794,1.041,0.923,1.121,1.071,0.973,1.056,1.006,0.899,1.087,1.008,1.025,0.93,1.023,0.798,1.162,0.965,1.045,0.958,1.091,0.957,1.001,0.956,0.959,1.126,1.009 +NM_016166,1.095,0.794,1.157,0.683,1.074,1.078,0.662,1.012,1.321,1.089,0.725,0.902,0.859,0.662,0.938,1.148,0.832,1.161,1.216,0.857,0.604,1.405,1.353,1.15,0.754,1.147,1.018,1.201,0.562,1.024,1.263,0.865,0.897,0.904,1.863,0.817,0.994,0.96,1.476,1.086,0.915,1.033,0.553,0.716,1.127,0.89,0.857,1.29,1.018,0.926,0.972,0.929,0.696,1.383 +NM_016167,0.618,1.013,1.019,0.951,0.724,1.147,0.778,0.474,1.211,1.044,0.863,0.647,0.765,0.512,0.803,1.432,0.749,0.929,0.943,1.121,0.706,0.712,1.376,0.965,0.729,0.674,0.895,0.806,0.626,0.947,0.907,1.133,3.325,1.188,0.424,1.185,1.026,0.784,1.474,0.845,1.02,1.17,0.849,1.777,1.027,1.061,1.256,0.657,1.366,0.747,1.11,0.994,0.928,2.18 +NM_016169,1.071,0.924,1.149,0.964,0.996,0.938,0.914,0.886,1.047,1.035,0.774,0.875,0.851,1.073,0.904,1.024,1.049,1.023,1.333,0.948,1.1,0.989,1.038,0.963,0.894,1.216,1.125,1.16,0.572,0.88,1.039,1.152,1.084,1.007,0.953,0.856,0.871,1.151,1.069,1.004,1.08,1.039,0.953,1.058,1.063,0.891,0.842,1.107,0.891,1.238,0.888,0.904,1.173,0.957 +NM_016170,1.091,0.997,1.017,1.036,1.058,0.874,0.96,0.986,1.147,0.994,1.062,1.132,0.93,0.934,0.99,0.967,1.053,0.986,0.974,0.843,0.935,1.006,0.988,1.044,0.979,0.947,0.862,1.07,0.99,1.12,1.066,1.245,0.81,0.908,1.083,1.048,1.016,1.002,1.125,0.977,1.019,0.929,1.124,1.082,1.049,0.996,0.955,1.143,1.001,0.948,0.952,0.952,0.988,1.046 +NM_016172,0.801,0.845,1.509,0.832,0.893,1.002,0.572,0.702,1.096,0.873,1.027,1.408,1.129,0.601,0.992,1.504,0.977,0.885,1.505,0.859,0.559,0.897,1.113,1.084,0.66,0.964,1.337,0.938,0.374,0.929,0.906,1.391,2.37,1.243,0.196,2.158,0.997,0.88,1.402,0.807,1.035,0.958,0.743,1.344,1.107,0.872,0.825,0.878,0.998,1.202,0.96,0.807,1.176,2.315 +NM_016174,0.989,1.024,0.944,1.068,0.801,1.063,1.094,1.067,1.048,0.779,0.948,1.071,0.913,0.743,0.994,1.178,1.034,0.997,1.081,0.902,1.04,0.945,0.824,0.873,0.976,1.018,1.075,0.939,0.82,1.11,0.847,2.894,1.102,1.258,0.906,0.96,0.894,0.985,1.406,1.648,0.843,1.133,0.866,1.009,0.969,0.943,0.99,0.986,0.893,1.026,0.977,1.202,1.065,1.044 +NM_016176,0.504,1.321,0.786,0.647,0.497,1.709,0.558,0.406,0.592,0.581,1.503,0.401,0.417,0.385,1.013,1.951,0.932,0.835,1.071,1.022,0.509,0.675,1.401,0.741,1.001,0.629,0.834,0.426,0.651,1.691,0.497,1.447,2.088,1.817,0.353,0.803,1.526,0.494,2.7,1.112,0.734,1.485,0.882,2.002,0.651,1.285,1.154,0.619,1.13,0.757,0.657,0.624,0.66,1.558 +NM_016178,1.112,0.978,1.225,1.025,1.093,0.936,0.862,0.855,1.035,0.981,0.986,1.265,1.068,0.833,0.991,1.2,1.137,1.076,1.274,1.068,0.876,0.969,1.052,1.248,0.707,1.096,0.937,0.984,0.735,1.023,0.966,0.992,1.246,1.02,0.751,0.885,0.928,1.243,1.493,0.832,1.0,1.042,0.742,1.07,1.04,0.941,0.881,1.183,0.948,1.016,1.12,0.919,1.428,1.294 +NM_016179,1.067,1.104,0.942,0.918,0.98,1.036,0.968,0.965,1.083,0.933,1.013,1.129,0.953,1.15,0.911,0.996,0.934,1.048,0.97,1.121,0.983,0.909,0.996,0.939,1.102,1.029,1.052,1.047,1.037,1.075,1.01,0.934,0.903,0.958,0.989,1.007,0.937,1.077,1.076,0.925,1.058,0.938,1.092,0.919,0.996,1.057,1.058,1.008,0.844,1.11,0.926,0.923,0.806,1.101 +NM_016180,0.889,0.93,0.889,0.963,0.936,1.137,1.324,0.832,1.213,1.022,1.032,1.025,1.022,0.917,0.932,1.095,1.096,1.177,0.986,1.102,0.879,0.997,0.878,0.95,0.835,0.994,1.282,1.08,1.02,1.168,1.201,1.022,0.881,0.915,1.133,1.115,1.06,1.118,0.985,1.039,1.0,1.007,0.879,0.859,0.993,0.866,0.978,0.755,0.952,0.847,0.922,0.744,1.107,0.959 +NM_016185,0.548,0.85,0.852,0.963,0.891,1.707,0.995,0.361,0.831,1.057,1.342,0.698,0.355,0.426,0.947,1.747,0.627,1.218,0.87,1.324,0.383,0.483,1.156,0.998,0.481,0.701,0.842,1.026,0.66,1.37,0.777,1.196,1.17,1.398,0.847,1.322,1.57,0.764,1.912,0.53,0.978,1.002,1.184,1.717,0.917,1.474,1.437,0.69,1.674,0.492,1.244,1.185,0.741,1.811 +NM_016187,0.901,0.963,1.053,1.103,1.023,0.95,0.964,0.977,0.957,0.909,0.911,0.954,0.986,0.918,0.796,1.183,1.041,0.968,0.793,0.921,1.025,0.98,1.051,1.13,0.833,0.906,1.163,1.015,0.872,0.944,0.856,1.07,0.986,0.993,0.945,1.067,0.989,1.043,1.158,1.534,1.022,1.103,0.901,0.904,0.965,1.086,1.032,1.08,0.914,0.905,1.024,1.254,1.23,1.12 +NM_016188,0.756,1.029,1.095,0.757,1.07,0.957,0.861,0.822,1.068,1.017,0.993,1.188,0.965,0.618,0.856,1.137,0.955,1.061,0.951,1.027,0.8,0.945,1.116,0.92,0.836,1.048,0.934,1.24,0.52,0.921,1.242,1.273,1.075,1.164,0.77,0.919,0.86,0.986,1.368,0.815,1.093,1.04,0.701,0.961,1.364,0.817,0.976,1.06,0.997,1.118,0.97,0.793,0.887,1.176 +NM_016190,4.479,0.0117,4.018,2.412,5.339,0.0142,0.0224,4.175,5.303,4.908,0.0,4.2,3.447,2.398,3.582,2.61,3.564,3.767,3.998,0.0491,2.508,5.599,0.012,5.073,0.0129,4.964,3.154,4.706,0.011,0.0125,5.633,0.0136,1.533,0.0162,5.637,0.0119,0.0738,6.05,0.112,0.015,4.676,0.0218,0.0208,0.0128,4.145,0.0111,2.646,5.454,0.651,3.947,1.923,0.501,3.362,0.112 +NM_016192,1.279,0.874,1.014,0.939,1.175,1.171,0.936,1.118,0.96,0.829,0.793,0.91,1.023,0.848,1.006,1.003,0.96,0.881,0.826,1.72,0.822,0.88,1.275,1.056,0.976,0.935,0.867,1.066,0.918,0.972,0.997,1.588,0.996,1.444,1.006,1.034,1.009,1.151,1.038,1.146,1.107,1.023,1.131,0.872,0.895,1.093,0.736,1.113,0.917,1.004,0.924,0.854,1.03,1.04 +NM_016194,0.937,0.957,0.972,0.975,1.028,1.128,1.102,1.222,0.884,1.026,0.937,1.033,0.859,1.07,1.004,0.932,1.089,0.916,1.017,0.983,1.029,0.958,0.809,1.16,1.011,1.058,1.008,0.998,1.144,1.014,0.953,0.952,1.019,1.115,1.125,1.061,0.997,1.053,1.057,1.131,0.967,1.112,0.997,0.951,0.972,0.945,1.045,0.942,1.036,0.878,1.085,1.142,0.95,1.014 +NM_016196,0.988,0.936,0.919,0.977,0.748,1.162,0.918,1.1,1.195,0.822,0.841,0.834,0.859,0.823,0.996,0.979,1.038,0.897,1.107,1.025,0.995,0.944,1.11,0.908,0.86,0.935,1.206,0.86,0.871,0.969,1.003,0.904,1.085,1.127,0.809,1.217,0.938,1.098,1.194,1.023,0.951,1.061,0.875,1.338,0.779,0.991,1.02,1.084,0.962,1.044,0.916,1.047,1.153,1.202 +NM_016199,0.705,1.067,0.802,0.726,0.603,1.158,0.365,0.485,0.946,0.87,1.22,1.115,1.086,0.52,0.88,1.904,0.859,0.934,1.292,0.833,0.575,1.059,2.182,1.205,0.667,0.884,1.42,0.617,0.471,0.869,0.674,1.211,2.1,1.334,0.0979,1.268,1.182,1.176,1.474,1.091,1.117,1.107,0.663,1.585,0.83,0.776,1.009,1.052,0.88,0.691,1.004,0.699,0.815,1.579 +NM_016200,0.816,1.099,0.886,1.041,0.854,1.079,0.897,0.66,1.002,0.883,0.981,0.857,0.923,0.847,1.218,1.026,1.121,0.953,0.906,1.142,0.834,0.933,1.261,0.991,0.955,0.859,1.071,1.045,0.955,1.061,1.028,0.938,1.19,1.138,0.836,0.931,1.126,0.847,1.051,0.865,1.034,0.983,0.9,0.923,1.022,1.094,0.952,0.945,0.881,0.892,0.957,0.878,0.831,1.169 +NM_016201,0.912,0.963,1.083,1.146,1.013,0.88,0.967,0.987,1.011,0.973,0.952,1.109,1.003,1.057,1.091,0.968,0.965,0.932,1.008,1.045,0.954,1.1,0.923,0.933,1.036,0.934,1.118,1.173,0.827,1.064,0.922,0.982,0.914,1.077,1.272,0.964,0.916,1.104,1.009,0.895,0.996,0.983,1.251,1.003,1.048,0.953,0.975,0.968,1.02,0.953,0.855,1.061,1.071,0.995 +NM_016202,0.766,0.95,0.944,0.818,0.638,1.224,0.77,0.711,0.727,0.844,1.198,0.732,0.809,0.879,1.111,1.938,0.692,0.814,1.734,1.05,0.877,0.703,1.417,0.932,0.936,1.146,1.197,0.788,0.47,1.078,1.117,1.449,1.909,2.047,0.404,1.064,0.886,0.935,1.402,1.35,0.83,1.284,0.629,1.958,0.901,0.713,0.764,0.848,0.63,0.886,1.012,0.701,1.68,1.034 +NM_016203,0.869,1.071,0.941,0.943,1.085,1.244,0.911,0.86,1.114,1.117,0.992,0.896,0.893,0.763,1.025,1.67,0.825,1.101,0.967,1.159,0.846,0.925,1.363,0.951,0.841,0.865,0.852,0.952,0.783,1.164,0.93,1.047,1.141,1.344,0.974,0.946,1.108,0.902,1.332,0.85,1.012,1.095,1.056,1.071,0.959,1.427,1.184,0.902,1.274,0.861,1.078,0.911,1.009,1.25 +NM_016204,0.953,1.035,1.074,1.021,1.118,1.05,1.088,0.939,0.953,1.021,1.075,1.067,1.056,0.987,0.942,0.939,1.025,0.961,1.1,0.967,1.152,0.815,1.112,0.899,0.854,1.028,1.155,1.099,1.128,0.905,0.976,1.043,0.955,1.016,0.913,0.982,0.949,0.948,0.844,0.98,1.018,0.977,0.8,0.942,0.979,0.967,1.19,1.023,0.985,0.794,1.039,1.06,1.019,1.038 +NM_016205,0.858,1.149,0.907,0.808,0.921,1.409,0.927,0.849,0.834,0.828,1.11,0.859,0.793,0.723,1.053,1.041,0.847,1.159,0.775,1.295,0.785,0.803,1.191,0.838,0.804,0.815,0.89,0.855,1.047,1.251,0.802,3.32,1.323,1.86,0.712,0.762,1.186,1.044,1.207,0.78,1.025,1.458,0.848,0.724,0.815,1.014,1.052,0.819,0.8,0.786,1.139,0.924,0.807,1.317 +NM_016206,0.948,0.878,0.959,0.942,1.269,0.989,1.259,1.033,0.931,1.087,0.954,1.003,0.852,1.042,1.003,1.221,1.0,1.075,0.964,1.09,0.907,1.015,1.117,1.02,1.147,0.894,1.108,0.992,0.973,1.131,0.894,1.223,1.13,1.032,0.97,1.048,0.968,1.197,0.982,1.045,1.012,1.025,0.849,0.955,1.134,1.09,0.944,0.983,0.925,0.966,0.968,1.027,1.162,1.041 +NM_016207,0.421,1.001,1.315,0.499,0.96,0.981,0.57,0.537,1.156,1.145,0.678,0.913,0.516,0.473,0.752,1.562,0.793,0.946,1.526,1.039,0.646,0.982,1.601,0.999,0.387,0.762,1.37,0.931,0.46,0.926,0.943,1.045,4.023,1.193,0.385,1.415,0.886,0.983,0.994,1.785,1.271,1.176,0.56,1.65,1.13,0.854,1.128,0.731,1.202,0.734,0.902,0.872,1.216,1.889 +NM_016208,0.687,0.903,1.015,0.862,0.712,1.796,0.75,0.56,0.837,0.755,1.276,0.93,0.838,0.519,0.815,1.673,0.765,1.051,1.314,1.271,0.665,0.885,1.098,0.855,0.958,0.944,0.798,0.719,0.673,1.197,0.742,1.253,2.174,1.758,0.561,1.108,1.059,0.777,1.915,1.17,0.829,1.321,0.709,1.185,1.001,1.366,0.746,1.315,1.127,0.975,0.999,0.543,0.882,0.962 +NM_016209,0.714,1.185,1.001,0.74,0.974,1.143,0.709,0.449,0.81,1.284,0.989,1.387,0.633,0.393,0.609,1.47,0.693,1.269,1.21,1.098,0.44,0.597,1.147,0.946,0.845,0.796,0.71,0.969,0.481,1.423,0.583,1.19,1.621,1.335,0.147,1.339,1.089,0.757,1.655,0.767,1.029,1.158,0.691,1.495,1.069,0.953,1.227,1.024,1.095,0.767,1.068,1.133,0.775,1.145 +NM_016210,0.953,1.177,1.003,1.112,0.947,1.038,0.827,0.976,1.057,0.871,0.964,0.923,0.912,0.846,0.89,1.037,0.925,0.968,0.925,0.961,1.115,0.822,1.078,0.897,1.282,0.998,1.145,0.915,1.048,0.975,1.121,1.426,1.169,1.378,0.951,0.862,0.97,0.99,1.061,1.051,0.966,1.076,0.843,1.114,1.015,1.055,0.86,0.838,0.908,0.892,0.891,0.97,1.004,1.323 +NM_016211,0.588,1.059,1.327,0.611,0.969,1.475,0.707,0.453,1.309,0.902,1.012,0.743,0.467,0.6,0.832,1.471,0.827,1.02,1.001,1.296,0.564,0.883,1.496,0.936,0.739,0.521,1.278,0.851,0.558,1.609,0.954,1.615,1.759,1.451,0.402,0.64,1.546,0.908,1.587,0.561,1.015,1.639,0.847,0.665,0.812,1.592,1.128,0.582,1.285,0.731,1.547,0.852,0.751,0.827 +NM_016213,0.86,1.171,1.45,0.898,0.981,1.448,1.07,0.979,1.14,0.879,0.88,0.938,0.943,0.864,1.323,1.865,1.192,1.108,0.815,1.004,0.833,1.201,1.193,1.232,0.841,0.737,1.455,0.864,0.865,1.162,1.319,1.147,1.6,1.085,0.782,0.79,0.923,1.179,1.808,0.952,1.181,0.932,0.898,0.853,1.067,0.956,1.12,1.063,1.167,0.927,1.076,0.87,0.883,1.515 +NM_016215,1.011,1.308,1.004,0.916,0.891,1.014,0.749,0.793,0.907,1.108,0.903,0.823,0.872,0.739,0.958,1.036,1.021,0.935,0.867,0.948,0.843,0.969,1.002,0.989,0.988,0.938,0.987,0.956,0.721,1.064,0.914,2.01,1.571,0.952,0.988,1.937,0.859,1.01,1.491,4.053,1.012,1.044,0.737,1.257,1.02,1.197,1.391,0.935,0.958,0.95,0.999,1.26,0.814,2.986 +NM_016217,1.228,0.846,2.129,0.68,1.393,0.986,0.499,1.206,2.21,1.001,0.773,0.895,0.873,1.221,1.35,1.132,1.218,1.04,1.319,0.922,0.627,1.444,0.77,0.999,0.415,1.158,1.457,1.8,0.398,1.093,1.799,1.166,0.959,1.098,2.689,0.336,0.77,1.378,0.886,1.007,1.621,1.033,0.67,0.516,1.227,0.955,1.059,1.533,0.767,1.151,0.897,0.62,1.132,1.093 +NM_016222,0.947,0.832,0.856,0.873,0.815,1.187,0.57,0.586,1.19,1.034,0.928,1.158,0.788,0.823,0.994,1.53,0.782,0.938,1.346,1.011,0.869,0.899,1.151,1.195,0.834,1.376,1.091,0.895,0.617,1.085,0.963,1.674,3.594,1.239,0.353,0.864,0.762,0.899,1.909,0.923,0.982,1.032,0.742,1.384,1.074,0.806,0.937,0.942,0.853,1.006,0.866,0.786,0.985,1.79 +NM_016223,1.093,1.099,1.915,0.902,1.275,0.829,0.905,0.865,1.197,1.436,0.722,0.963,0.879,1.027,0.934,0.895,1.175,1.142,1.313,0.772,1.072,1.017,0.88,1.148,0.842,1.317,1.22,1.263,0.619,1.166,1.005,0.801,0.828,0.924,0.669,0.67,0.733,1.273,1.011,1.031,1.482,0.903,0.745,0.989,1.162,0.728,1.064,1.283,0.757,1.252,0.839,1.142,1.366,1.077 +NM_016224,0.993,0.836,0.984,0.862,1.013,1.113,0.824,1.233,1.069,1.017,0.981,1.03,1.18,0.996,1.082,1.065,1.049,0.896,1.001,1.026,0.877,0.914,0.919,1.011,0.963,1.008,1.052,1.069,1.114,1.044,1.014,1.024,0.928,0.983,1.093,0.93,1.087,0.923,1.042,0.951,0.983,0.837,1.378,0.994,0.999,0.965,1.06,0.968,0.973,1.08,1.018,1.036,0.894,0.884 +NM_016226,0.72,0.544,1.256,0.746,1.022,1.179,0.61,0.784,1.41,1.045,1.31,0.827,0.972,0.691,1.072,2.016,0.879,1.364,1.778,0.775,0.47,0.974,1.117,1.428,0.409,0.749,1.495,1.062,0.4,1.032,1.13,0.834,1.343,1.144,0.582,0.819,1.429,1.265,1.155,0.536,1.407,0.837,0.648,0.536,1.152,0.977,1.145,1.061,1.145,0.862,1.123,0.922,0.865,1.556 +NM_016227,0.99,0.863,1.15,1.071,1.058,0.996,0.865,0.958,1.024,1.245,0.962,1.028,0.895,1.003,1.304,1.02,1.08,0.946,0.974,1.007,0.902,1.034,0.944,1.024,0.895,1.042,0.97,1.08,1.278,0.918,0.937,0.995,1.083,0.897,1.09,0.948,1.068,0.866,0.944,0.999,0.836,0.899,0.846,0.914,1.145,0.928,1.115,1.087,0.949,1.055,1.021,0.925,0.962,0.873 +NM_016228,0.94,0.907,0.962,1.021,0.97,0.929,0.846,0.967,1.037,1.001,1.15,1.056,0.9,0.884,1.114,1.027,0.966,0.932,0.81,0.995,1.011,1.084,0.999,1.013,0.997,1.026,1.027,1.078,0.835,1.056,1.073,0.892,1.193,0.909,1.114,0.903,0.98,0.851,0.967,0.985,1.099,0.966,1.05,0.871,0.98,1.039,1.139,1.03,1.156,1.076,1.066,1.036,1.251,1.011 +NM_016229,1.1,0.631,1.076,0.842,1.425,0.828,0.515,1.003,1.849,1.517,0.483,2.115,0.923,1.042,1.111,1.043,0.831,1.75,1.839,0.608,0.511,1.278,0.695,1.646,0.542,1.375,1.076,1.762,0.384,1.101,1.031,1.053,1.198,0.907,0.671,0.941,0.53,1.352,1.024,0.611,1.167,0.668,0.431,0.827,1.661,0.658,1.715,1.452,0.636,1.167,0.742,1.581,1.366,2.198 +NM_016230,0.617,1.072,1.327,0.852,1.038,1.356,0.775,0.706,1.153,0.879,1.249,0.857,0.724,0.743,1.07,1.849,0.882,1.012,1.243,1.101,0.465,0.824,1.151,1.296,0.562,0.73,1.271,0.863,0.464,1.104,1.041,0.694,1.305,1.235,0.698,0.696,1.511,0.883,1.453,0.722,1.062,1.027,0.882,0.651,0.839,1.278,1.054,0.768,1.174,0.801,1.285,0.835,0.783,1.823 +NM_016231,0.808,1.146,0.98,0.822,0.901,1.221,0.698,0.727,1.052,0.914,1.254,0.877,0.775,0.775,0.921,1.231,0.832,0.847,0.79,1.181,0.717,0.835,1.116,0.879,0.898,0.701,0.788,0.915,0.674,1.164,0.952,1.186,2.034,1.126,0.742,1.054,1.152,0.919,1.276,0.858,0.998,1.177,1.269,1.551,0.855,1.146,1.145,0.772,1.03,0.812,1.288,0.808,0.811,1.454 +NM_016232,1.938,2.048,1.992,2.082,2.113,1.91,1.835,2.055,2.044,2.0860000000000003,1.954,1.9929999999999999,1.964,1.603,2.05,2.1100000000000003,2.149,1.999,1.948,2.038,2.091,2.226,2.0140000000000002,1.863,1.991,1.9929999999999999,1.9789999999999999,2.034,2.3499999999999996,2.001,2.271,2.083,2.044,2.115,2.278,1.948,2.0540000000000003,2.141,2.052,2.025,2.316,1.936,2.17,1.996,2.008,1.951,2.0410000000000004,2.008,2.011,2.041,2.079,1.939,1.788,1.867 +NM_016234,0.166,1.184,0.247,0.838,0.135,1.603,1.006,0.109,0.159,0.17,1.802,0.144,0.144,0.161,1.086,2.906,0.187,0.836,0.141,2.004,0.155,0.138,1.758,0.236,0.706,0.204,0.386,0.197,0.483,2.248,0.14,0.872,1.454,1.574,0.107,1.101,3.436,0.165,1.746,0.747,0.278,2.208,1.778,2.4,0.245,1.825,1.153,0.136,2.357,0.153,1.749,0.953,0.34,0.967 +NM_016235,0.648,7.554,0.665,3.833,0.629,2.722,3.324,0.658,0.643,0.767,1.414,0.555,0.608,0.566,0.623,0.564,0.707,3.814,0.696,2.051,0.705,0.647,1.65,0.572,5.209,0.53,0.588,0.583,3.781,6.215,0.571,9.41,1.262,10.12,0.506,0.56,3.362,0.468,5.904,0.842,0.849,4.111,0.936,1.599,0.626,0.617,1.074,0.551,0.499,0.636,1.15,3.432,0.607,5.865 +NM_016237,0.789,0.856,1.085,0.849,0.812,1.155,0.494,0.431,0.975,1.081,1.117,0.915,0.658,0.656,0.787,1.348,0.799,0.842,1.347,0.777,0.47,0.881,1.278,1.011,0.892,0.888,1.119,0.647,0.402,1.259,0.753,1.115,1.141,1.624,0.151,1.164,1.168,1.042,1.125,0.725,0.94,1.114,0.607,1.136,0.972,1.045,1.124,0.769,0.777,0.773,0.969,0.894,1.117,1.522 +NM_016238,1.002,0.901,1.33,0.918,1.163,0.881,0.839,0.935,1.425,1.124,0.777,0.956,0.925,0.963,1.112,0.944,1.227,0.876,1.39,0.935,0.98,0.78,1.128,1.134,0.786,1.096,1.537,1.083,0.711,0.82,1.247,1.115,1.149,0.788,0.843,0.942,0.813,1.164,1.059,0.911,1.346,0.979,0.887,1.059,1.152,0.807,0.995,1.012,0.965,1.089,1.012,0.835,1.074,1.151 +NM_016239,0.947,0.933,1.001,0.877,1.032,0.937,1.08,1.035,0.964,0.915,1.002,1.003,0.911,1.032,0.97,0.84,0.873,0.909,0.944,1.02,1.038,0.999,0.929,1.028,0.922,1.094,1.022,1.047,1.283,0.968,1.031,0.935,1.025,1.009,1.035,0.918,0.98,0.944,0.934,0.905,1.046,1.039,1.056,0.841,0.9,0.974,0.967,0.928,1.005,1.065,1.089,1.042,0.97,0.982 +NM_016240,1.035,1.027,1.486,1.124,1.044,0.8,0.973,0.8,0.884,1.112,0.855,0.793,1.003,1.105,1.026,0.816,1.073,1.329,1.132,0.897,0.797,0.985,0.929,1.029,0.813,0.961,2.127,0.934,0.716,1.023,1.123,1.362,1.431,1.429,0.789,0.74,0.809,1.052,0.927,0.753,1.32,1.462,0.984,1.027,1.149,0.812,0.857,1.075,0.896,1.239,0.941,1.031,1.088,1.184 +NM_016242,0.931,0.928,1.136,0.939,0.911,1.048,1.0,0.922,0.99,0.939,0.953,0.916,0.864,1.118,0.973,1.08,0.82,0.955,1.034,0.838,0.919,1.041,1.043,0.969,1.148,1.036,0.959,0.98,0.985,1.008,0.892,1.457,1.221,1.208,0.837,1.007,0.882,0.977,1.15,1.086,0.931,1.023,1.089,0.925,1.03,0.951,1.035,0.982,0.99,0.911,0.974,1.107,0.935,1.073 +NM_016245,0.152,2.018,0.301,0.535,0.203,4.091,1.005,0.19,0.208,0.191,2.878,0.202,0.256,0.193,1.942,5.799,0.205,0.703,0.24,3.262,0.143,0.224,2.442,0.294,0.337,0.149,0.419,0.253,0.277,1.065,0.18,2.698,1.633,2.717,0.142,0.929,2.843,0.24,2.268,1.128,0.25,2.713,1.495,1.133,0.196,2.764,1.348,0.189,2.363,0.206,2.253,0.499,0.218,0.895 +NM_016246,0.959,1.121,0.885,0.903,1.051,1.137,0.913,1.14,1.057,0.978,0.938,1.028,0.913,0.92,0.929,1.009,0.905,0.932,0.99,1.151,0.957,0.903,0.966,0.939,1.119,0.997,0.943,0.899,1.113,1.008,0.936,1.196,0.877,0.97,1.113,1.001,1.074,0.87,1.024,0.926,0.987,1.059,1.206,0.969,1.153,0.971,1.05,0.997,1.007,1.103,1.015,1.238,0.849,1.146 +NM_016247,1.087,0.865,0.909,0.862,1.208,1.005,1.041,1.119,0.985,1.168,0.97,1.038,1.162,0.946,1.117,0.988,0.943,1.073,0.941,1.043,1.009,0.893,1.034,0.931,1.091,1.124,0.774,1.073,1.002,0.996,0.966,1.064,1.025,1.147,1.091,1.277,0.879,0.966,0.904,1.013,0.936,1.118,0.984,1.023,1.141,1.06,0.92,1.055,1.069,1.105,0.906,0.871,0.906,0.964 +NM_016248,0.927,1.003,1.238,0.777,1.11,0.991,0.854,0.692,1.218,0.861,1.027,0.765,0.688,0.828,1.221,1.536,0.875,0.885,1.006,1.093,0.76,0.835,1.09,0.873,0.828,0.889,1.167,0.971,0.675,1.32,1.052,1.337,1.514,1.274,0.426,0.74,1.03,0.891,1.991,2.228,1.078,1.1,0.828,0.895,0.925,0.998,0.713,0.757,0.934,0.817,1.115,1.042,0.886,1.262 +NM_016249,0.957,0.958,1.106,0.992,0.966,0.943,0.86,0.834,0.947,1.002,0.931,1.034,1.122,1.08,1.01,1.037,0.979,0.992,0.947,0.923,1.019,1.072,0.959,0.971,0.944,0.861,0.927,1.055,1.046,1.035,0.964,0.803,1.002,1.027,1.054,0.987,1.044,1.011,1.024,0.927,1.191,0.907,0.995,0.925,0.95,0.98,1.096,0.905,1.004,1.007,1.032,0.886,0.951,0.887 +NM_016250,1.384,1.033,1.538,0.874,1.681,0.801,0.431,0.993,2.7,0.739,0.882,0.825,1.481,1.27,1.035,1.055,2.582,0.961,2.885,0.729,1.171,1.285,0.881,1.05,0.578,1.719,2.023,1.255,0.505,0.933,2.039,0.537,1.089,1.637,2.21,0.437,0.816,1.355,0.728,0.374,1.465,1.402,0.612,0.737,1.059,0.748,0.928,1.879,0.657,1.321,0.684,0.957,1.57,0.655 +NM_016252,0.913,0.744,1.205,0.799,0.893,0.98,0.707,0.603,1.028,0.941,1.142,0.731,0.736,0.996,1.192,1.143,0.862,0.867,1.053,1.24,0.835,0.6,1.167,0.852,0.658,0.749,0.946,1.03,0.628,0.923,0.934,1.094,1.747,1.03,0.607,1.092,0.957,0.867,1.0,1.199,1.123,1.239,1.046,0.946,0.89,1.13,1.065,0.68,1.247,0.825,1.106,0.847,1.083,1.661 +NM_016255,0.736,1.18,1.118,0.74,0.944,1.113,0.685,0.674,1.037,0.769,1.358,0.93,0.803,0.685,1.024,1.69,0.673,0.996,0.884,1.503,0.578,0.981,1.383,0.86,0.83,0.747,1.105,0.913,0.493,1.285,0.923,1.812,0.875,1.394,0.36,0.593,1.364,1.037,1.012,1.092,0.982,1.558,0.794,0.702,0.844,1.401,0.822,0.775,0.752,0.676,1.199,0.867,0.891,1.599 +NM_016256,0.629,0.882,0.902,1.054,0.661,1.83,1.149,0.596,0.687,0.683,1.373,0.671,0.617,0.629,0.952,1.914,0.641,0.9,0.735,1.567,0.775,0.796,1.475,0.76,0.853,0.764,0.824,0.623,1.149,1.733,0.581,1.163,1.326,1.985,0.545,1.097,1.359,0.619,1.77,0.868,0.777,1.507,0.999,1.649,0.759,1.311,0.856,0.688,1.16,0.774,0.918,0.762,0.777,1.067 +NM_016257,1.041,0.992,0.918,1.011,1.013,0.902,1.16,1.058,0.953,0.879,1.052,0.865,0.975,1.034,1.053,1.1,1.005,1.0,0.864,1.011,1.049,0.846,1.072,1.069,0.999,0.923,1.027,1.21,1.068,0.825,1.114,0.977,1.037,0.928,0.911,0.872,1.008,1.109,1.044,0.902,1.486,1.074,0.892,1.0,0.976,1.02,0.876,0.961,0.962,1.251,1.04,0.866,0.988,0.915 +NM_016258,0.672,1.009,1.384,0.564,1.073,1.07,0.57,0.488,1.265,1.147,0.757,0.743,0.562,0.716,0.892,1.66,0.873,0.966,1.351,0.902,0.632,1.192,1.233,1.236,0.439,0.802,1.399,0.935,0.521,1.053,0.987,0.773,1.725,1.056,0.328,0.845,1.312,1.191,1.28,0.687,1.027,1.098,0.806,1.068,1.068,1.044,0.976,0.87,1.157,0.91,1.132,0.882,0.991,1.166 +NM_016260,1.092,0.844,1.218,1.027,1.478,0.997,0.978,0.999,1.075,1.268,0.914,0.936,1.141,1.262,1.138,1.046,1.09,0.998,1.214,1.047,1.041,0.797,1.248,1.122,0.95,1.229,1.049,0.901,1.121,0.999,1.221,0.763,1.029,1.024,1.003,0.879,1.054,1.001,1.036,0.908,0.954,0.946,0.982,0.861,1.096,0.888,0.842,0.913,1.051,1.019,0.808,1.066,0.972,0.983 +NM_016261,0.96,0.885,1.463,0.799,1.091,0.939,0.692,0.802,1.284,1.063,0.936,0.835,0.933,1.033,1.107,1.009,1.337,0.884,1.783,0.79,1.052,1.015,0.817,1.409,0.651,0.854,1.723,0.93,0.661,0.882,1.26,0.995,1.484,0.969,0.723,0.836,0.845,1.034,0.956,0.823,1.346,0.84,0.672,1.091,1.199,0.742,1.294,1.059,0.891,1.442,0.83,0.928,1.458,1.509 +NM_016262,0.925,0.975,1.142,1.044,0.905,1.159,0.857,1.013,1.073,0.857,1.149,0.927,1.002,1.173,1.119,1.16,0.918,0.936,0.915,1.334,0.936,0.903,1.056,1.316,0.95,0.888,1.168,0.942,0.806,1.023,0.996,1.243,1.737,1.076,0.865,1.016,0.964,0.963,1.11,1.003,1.109,1.053,1.045,1.008,0.942,0.953,1.031,0.942,1.015,0.972,0.816,0.999,0.836,2.451 +NM_016263,1.016,1.04,1.038,1.095,0.953,1.087,0.954,0.832,1.025,1.068,0.913,0.819,1.03,0.922,1.1,0.931,0.911,1.152,0.984,0.997,0.954,0.969,1.097,0.927,0.905,1.143,1.127,0.906,1.04,1.03,0.993,1.055,1.115,1.244,1.094,0.771,1.003,0.88,1.037,0.974,0.813,1.221,0.798,1.023,0.723,1.009,1.024,0.976,0.821,1.019,1.005,0.871,1.055,0.994 +NM_016264,0.905,0.965,1.008,0.992,0.905,1.068,0.993,0.917,0.949,0.958,0.973,1.086,1.115,0.778,0.79,1.011,0.999,1.069,0.991,0.857,0.929,1.009,0.922,1.125,1.05,1.069,1.078,1.055,0.806,1.024,0.953,1.176,1.034,0.975,1.06,1.2,1.037,0.974,0.988,0.86,1.016,1.063,1.05,1.083,0.89,1.15,1.087,0.923,0.976,1.066,0.982,1.028,1.001,1.05 +NM_016265,0.712,0.945,1.118,0.698,0.924,1.307,0.783,0.96,1.044,0.955,1.235,0.925,0.848,0.952,1.029,1.256,0.929,1.018,1.279,0.859,0.881,1.28,1.377,1.216,0.842,0.818,1.245,1.018,0.66,1.419,1.161,1.152,1.451,1.142,0.665,0.96,1.189,1.025,1.005,1.389,1.085,1.249,0.659,1.218,1.042,0.788,0.999,0.798,0.855,0.738,0.959,1.202,0.943,1.408 +NM_016267,1.077,0.937,0.822,0.969,0.999,1.031,0.849,0.987,1.07,0.926,0.954,1.002,0.943,1.052,1.03,0.938,1.119,1.112,1.084,1.027,0.917,0.915,0.759,1.115,0.946,0.995,1.269,0.981,0.74,1.085,1.324,1.987,3.612,0.956,0.957,0.901,0.903,0.987,1.092,1.294,1.155,0.999,0.954,0.908,1.378,1.061,1.525,0.969,0.998,1.196,1.112,1.336,1.409,1.558 +NM_016269,1.058,0.844,1.295,0.873,1.033,0.968,0.744,0.897,1.115,1.134,0.836,1.346,1.03,0.797,1.025,0.964,0.957,0.94,1.19,0.895,0.92,1.07,1.196,1.25,0.792,1.046,1.031,0.982,0.72,1.055,0.925,2.13,2.04,0.905,0.854,1.028,0.897,1.115,1.007,1.152,1.002,1.008,0.825,0.82,1.059,0.995,0.927,0.902,0.803,0.987,0.886,1.02,1.403,1.003 +NM_016270,0.469,1.834,0.412,2.092,0.398,2.735,2.224,0.364,0.381,0.489,1.38,0.461,0.432,0.353,0.566,0.771,0.4,2.369,0.437,1.331,0.49,0.444,1.63,0.449,2.555,0.417,0.392,0.467,2.255,2.44,0.419,1.519,0.673,2.918,0.4,1.212,1.142,0.432,3.996,1.037,0.416,2.017,2.016,0.784,0.434,1.291,0.456,0.433,1.142,0.457,1.124,1.085,0.495,1.002 +NM_016271,1.026,1.052,1.018,1.227,0.887,1.086,0.836,0.885,0.962,1.005,0.95,0.822,1.049,1.038,0.951,1.023,0.893,1.045,1.053,1.039,1.001,1.001,1.014,1.065,0.955,0.853,0.923,0.977,1.177,0.913,1.012,1.001,1.061,1.055,1.046,1.086,0.901,0.992,0.971,0.99,1.062,0.954,1.011,0.91,1.074,1.027,0.988,1.017,1.026,1.022,0.928,0.966,1.051,0.899 +NM_016272,0.989,0.905,0.805,1.215,1.115,0.906,1.4,1.009,1.095,0.855,1.069,1.073,1.052,1.095,1.067,0.991,1.078,1.018,0.978,0.998,0.952,0.895,0.953,1.055,0.911,1.008,0.937,1.055,1.041,0.941,1.107,1.213,1.009,0.996,0.892,1.123,1.151,1.091,1.01,0.986,0.929,1.102,1.137,0.994,1.065,0.897,0.974,1.12,1.015,0.933,0.946,1.008,0.794,0.927 +NM_016274,0.73,1.095,0.952,0.836,0.76,1.089,1.264,0.977,0.909,0.876,0.956,0.738,0.834,0.69,1.084,1.001,1.011,0.777,0.85,0.763,0.725,0.687,1.323,0.784,0.939,0.83,1.068,0.955,0.877,1.599,0.842,2.802,0.944,1.738,0.871,0.947,1.051,0.768,1.543,2.75,0.999,1.444,1.067,1.004,0.979,0.892,0.906,0.766,0.815,0.805,1.129,1.615,1.142,1.738 +NM_016275,0.468,0.885,1.2,0.588,0.746,1.227,0.656,0.622,1.176,0.889,0.848,0.679,0.692,0.46,0.91,2.301,0.761,1.181,1.03,0.968,0.42,0.741,1.244,1.026,0.481,0.625,1.275,0.813,0.466,1.179,0.934,1.386,1.909,1.234,0.293,0.734,1.188,0.771,1.702,0.593,1.075,1.009,0.567,1.22,0.995,0.873,1.052,0.697,1.022,0.716,1.056,0.728,0.685,1.508 +NM_016276,0.951,0.94,0.981,0.852,0.888,1.079,1.051,0.943,1.065,1.045,1.054,0.928,0.98,1.045,1.03,1.057,0.92,0.975,1.039,1.215,1.051,0.927,0.899,0.9,1.075,1.01,0.892,0.981,1.239,1.023,1.124,1.006,1.199,0.877,0.896,1.093,1.0,0.926,1.02,0.927,0.894,1.002,0.933,0.911,0.989,1.031,0.873,0.969,0.89,1.0,0.915,0.884,1.049,1.104 +NM_016277,1.023,0.986,0.845,1.136,1.144,0.968,0.774,0.956,0.915,1.021,1.095,0.824,1.051,1.103,1.122,1.333,1.01,1.001,1.349,0.817,1.183,0.865,0.882,0.989,1.044,0.803,1.107,1.152,1.031,1.275,1.145,1.044,0.978,1.008,0.968,0.82,1.143,0.94,0.988,0.949,1.194,0.922,0.908,0.689,1.276,1.046,1.154,1.205,0.961,1.296,1.15,0.982,0.841,0.918 +NM_016279,1.101,1.043,1.073,1.041,1.095,0.97,0.84,0.918,0.922,1.009,0.871,1.068,1.042,0.883,1.022,1.038,1.048,0.931,0.977,1.099,0.898,1.087,1.004,0.956,0.926,0.918,1.087,0.935,0.77,1.022,1.0,1.093,0.873,0.97,0.915,1.047,0.967,0.992,1.165,1.007,1.0,1.005,0.931,1.095,0.984,0.964,1.02,1.001,0.994,1.144,0.998,0.948,0.968,1.053 +NM_016282,0.771,1.155,1.107,0.594,1.057,1.456,0.358,0.986,1.264,0.92,1.557,1.14,0.971,0.796,1.015,1.811,0.568,0.757,1.286,1.239,0.466,0.839,1.148,0.795,1.274,1.153,1.305,0.901,0.467,1.12,0.785,0.735,0.747,1.391,0.39,0.635,1.487,1.018,1.052,0.523,0.815,1.407,0.786,1.22,0.971,1.023,0.559,1.171,0.96,0.719,1.04,0.777,0.954,1.1 +NM_016283,1.347,1.927,2.0229999999999997,1.8010000000000002,1.711,2.268,1.532,1.181,2.358,2.036,2.569,1.3279999999999998,1.2309999999999999,1.553,2.207,3.566,1.629,1.642,1.939,1.9969999999999999,1.24,1.2349999999999999,2.628,1.965,1.48,1.387,2.324,1.819,1.042,2.613,1.857,2.091,3.3339999999999996,2.989,0.833,1.379,2.202,1.569,2.668,1.179,2.234,2.243,1.927,1.6669999999999998,1.72,2.4050000000000002,1.929,1.388,2.497,1.597,2.301,1.56,1.745,3.408 +NM_016284,1.049,0.764,1.777,0.658,1.585,0.745,0.448,0.729,1.619,1.198,0.699,0.855,0.701,0.915,1.099,1.237,1.279,1.108,1.97,0.766,1.017,1.195,1.147,1.023,0.522,1.624,1.424,0.997,0.447,0.962,1.595,0.631,2.216,0.924,1.455,0.667,0.902,1.462,1.142,0.54,1.395,0.84,0.468,1.139,1.205,0.649,0.95,1.607,1.003,1.347,0.824,0.611,1.349,1.911 +NM_016285,2.031,2.07,2.163,2.065,1.896,1.884,2.015,2.066,1.979,1.8860000000000001,2.031,2.088,2.126,2.144,1.999,2.063,2.015,1.886,2.125,2.083,1.939,2.148,1.7570000000000001,1.9300000000000002,2.205,1.9569999999999999,1.9100000000000001,1.903,2.231,1.9609999999999999,2.048,1.587,2.149,2.0389999999999997,2.031,1.9020000000000001,1.8290000000000002,1.869,2.114,1.9849999999999999,2.067,1.8530000000000002,1.936,2.052,2.004,1.9620000000000002,1.9909999999999999,1.9539999999999997,2.056,1.9889999999999999,2.056,1.863,2.068,2.227 +NM_016286,1.026,1.023,1.014,0.87,0.793,1.11,0.513,0.802,1.359,0.967,1.036,1.033,0.986,0.606,0.87,1.401,0.883,0.856,1.971,0.744,0.814,0.997,0.91,1.106,0.992,1.575,1.115,0.746,0.551,1.411,1.112,1.012,1.187,1.666,0.198,0.418,0.911,1.073,1.295,0.407,1.128,1.02,0.402,1.424,0.963,0.575,0.942,1.2,0.535,0.751,0.853,0.371,1.009,0.593 +NM_016287,0.91,1.018,1.027,0.982,1.1,0.975,0.998,0.822,1.1,1.018,0.967,0.971,0.961,0.873,1.016,0.956,1.06,0.928,1.052,0.898,0.896,0.951,0.988,1.071,0.931,0.906,1.059,1.032,0.679,0.978,0.997,1.018,1.206,0.93,1.168,1.046,0.972,1.037,1.142,1.048,1.139,0.884,0.917,1.149,1.087,1.005,0.977,0.894,0.936,0.997,1.049,1.041,1.196,1.213 +NM_016289,0.752,0.899,1.146,0.632,0.972,1.009,0.628,0.565,1.285,1.07,0.941,0.58,0.609,0.844,1.083,1.402,0.987,0.887,1.278,0.911,0.571,0.809,1.168,0.861,0.557,0.922,1.128,0.953,0.511,1.2,1.278,1.03,1.348,1.359,1.087,0.75,1.269,0.94,1.21,0.49,1.178,1.152,0.61,1.254,1.031,1.105,0.846,0.955,0.992,0.799,0.952,0.746,1.154,2.323 +NM_016290,0.869,0.825,0.997,0.904,0.908,1.179,0.72,0.618,1.028,0.98,0.954,0.876,0.854,0.644,0.819,1.075,0.85,0.902,1.101,1.117,0.914,1.084,1.051,0.968,0.818,0.989,1.071,0.96,0.568,1.025,1.004,1.506,3.093,1.089,0.701,0.81,0.945,1.073,1.282,1.088,0.949,0.968,0.857,0.967,0.777,0.956,0.883,0.889,0.872,1.052,0.911,0.949,1.166,1.939 +NM_016291,0.836,1.09,1.154,0.723,0.864,1.337,0.854,0.942,1.124,0.956,0.918,0.962,0.871,1.027,1.019,1.291,1.188,1.053,0.959,1.094,0.797,0.978,1.046,0.892,0.804,0.87,1.182,1.047,0.866,1.08,0.92,1.304,1.008,1.157,0.865,0.888,1.046,1.112,1.669,0.998,0.93,1.194,0.885,0.899,0.947,0.856,0.925,0.894,1.022,0.86,0.934,0.781,0.843,1.655 +NM_016298,1.107,0.938,0.938,0.77,1.122,1.047,1.07,1.06,1.047,1.018,0.914,0.829,1.034,1.26,1.012,1.07,1.031,0.942,0.88,1.044,1.08,0.913,1.146,1.214,1.076,1.063,0.965,0.998,0.944,1.139,0.772,1.153,0.984,1.151,0.922,1.251,1.008,1.13,0.96,1.1,1.103,1.131,1.061,1.103,0.968,0.928,1.02,0.92,0.99,1.095,1.051,0.769,0.802,0.883 +NM_016299,0.703,0.843,1.049,0.826,0.814,1.103,0.833,0.667,1.179,1.145,1.352,0.821,0.699,0.673,1.152,1.86,0.837,1.074,1.124,1.041,0.597,0.741,1.392,0.921,0.581,0.72,1.134,0.747,0.683,1.042,0.953,1.203,3.472,1.206,0.348,0.921,1.287,0.822,1.209,0.868,1.02,0.926,0.807,1.721,0.928,1.093,1.147,0.615,1.513,0.79,1.016,0.867,1.023,1.779 +NM_016300,1.081,0.95,1.005,1.065,0.822,1.021,1.078,0.939,1.062,0.847,0.834,0.92,0.953,1.062,1.228,1.104,0.988,0.835,0.93,1.131,1.014,1.215,0.948,1.144,0.848,0.906,1.17,0.993,1.126,1.064,0.948,0.983,0.841,1.125,0.977,0.879,0.928,0.927,1.011,0.94,1.042,0.875,0.888,0.932,1.006,1.008,1.039,0.888,0.993,0.952,1.08,0.989,0.924,1.089 +NM_016301,0.844,0.973,1.096,0.863,0.832,0.858,0.87,0.652,1.074,1.07,1.052,0.893,0.847,0.778,0.85,1.046,0.808,0.978,1.075,0.973,0.753,0.735,1.142,1.056,0.809,0.769,1.172,1.102,0.6,1.103,0.995,1.325,1.638,1.104,0.604,1.087,0.918,0.813,0.92,0.917,1.096,1.149,0.661,1.166,1.013,0.957,0.922,0.681,1.061,0.854,1.038,1.103,1.124,1.517 +NM_016302,0.665,1.435,1.299,0.767,0.813,1.115,0.928,0.671,1.15,0.8,1.389,0.858,0.771,0.821,1.046,1.198,0.929,1.17,0.995,1.157,0.633,0.931,1.235,0.819,0.892,0.75,1.041,0.955,0.545,1.546,0.869,1.306,1.213,1.784,0.403,0.87,1.181,1.262,1.022,0.784,1.07,1.422,0.835,0.643,0.787,1.092,0.992,0.72,0.824,0.595,0.964,0.785,0.768,1.453 +NM_016303,0.767,1.553,1.448,0.823,1.263,0.79,1.241,0.784,1.307,1.072,0.98,0.783,0.828,0.763,0.858,1.958,1.032,1.247,0.922,1.251,0.752,1.02,1.267,1.209,0.83,0.646,1.783,0.889,0.813,1.576,1.285,1.957,2.514,1.768,0.729,0.738,1.107,0.999,1.332,0.897,1.105,1.05,0.584,0.579,0.998,0.949,1.153,0.824,1.001,0.836,0.921,0.966,0.77,1.685 +NM_016304,0.485,1.357,0.99,0.642,0.831,1.38,0.792,0.801,1.123,0.887,1.547,1.501,0.887,0.521,0.795,1.657,0.583,1.081,1.007,1.155,0.43,0.709,1.492,1.273,0.613,0.593,1.212,0.809,0.46,1.23,0.786,1.134,1.279,1.378,0.104,1.424,1.331,1.013,1.438,0.844,1.143,1.217,0.801,0.819,0.776,0.954,1.029,0.591,1.057,0.588,0.849,1.049,0.795,1.898 +NM_016305,0.535,1.244,0.88,0.877,0.668,1.897,0.793,0.661,0.836,0.844,1.762,1.219,0.644,0.65,0.959,1.831,0.621,1.087,1.101,1.303,0.465,0.655,1.236,0.945,0.698,0.65,1.086,0.735,0.647,2.145,0.704,0.895,1.349,1.856,0.13,0.915,1.521,0.753,1.328,0.922,0.839,1.24,0.833,0.967,0.684,1.153,0.96,0.657,0.837,0.616,0.98,0.891,0.957,1.626 +NM_016307,0.536,2.235,1.141,1.016,0.828,0.905,0.935,0.533,0.707,1.031,0.661,0.657,0.621,0.574,0.887,0.733,1.545,1.264,1.058,1.163,0.534,0.506,0.589,0.677,0.544,0.528,1.499,0.675,0.355,1.383,0.742,12.74,3.232,1.185,0.637,7.096,0.654,0.721,2.162,1.396,0.864,1.211,0.598,3.838,0.691,0.618,1.336,0.699,0.529,1.217,1.0,1.268,0.834,5.229 +NM_016308,0.787,1.492,1.251,0.486,0.703,2.832,0.468,1.032,1.373,0.784,0.995,0.849,0.912,0.513,1.18,3.191,0.531,1.005,0.624,1.809,0.229,1.215,1.236,1.553,0.462,0.318,2.323,1.011,0.469,1.893,1.434,1.077,1.781,1.564,0.261,0.365,1.851,1.338,2.545,0.672,1.077,1.292,0.721,0.326,1.257,1.38,0.947,0.828,2.126,0.704,1.483,0.654,0.361,1.773 +NM_016309,0.726,1.155,1.161,0.635,0.975,1.068,0.519,0.63,1.329,1.136,0.833,1.083,0.69,0.621,0.923,0.787,0.939,0.899,1.047,1.291,0.419,0.829,1.32,1.055,0.514,0.79,0.904,0.971,0.405,1.122,0.936,1.577,2.053,1.108,0.394,0.87,0.884,0.901,1.189,0.761,1.259,1.028,0.887,0.988,1.172,1.077,1.308,0.734,1.058,0.735,0.997,0.877,1.003,1.338 +NM_016310,0.681,0.921,0.856,0.881,0.78,1.689,0.835,0.561,0.925,0.866,1.312,1.0,0.881,0.627,0.851,1.253,0.803,0.995,1.209,0.823,0.928,0.824,1.102,1.005,0.703,0.767,1.111,0.694,0.947,1.589,0.79,1.323,3.33,1.793,0.407,1.644,1.242,0.775,1.639,0.974,1.073,1.234,0.714,1.459,0.915,0.889,1.091,0.688,1.073,0.847,0.986,1.049,1.047,1.602 +NM_016311,0.458,1.256,0.968,1.005,0.684,1.933,1.054,0.447,0.831,1.059,1.38,0.631,0.649,0.391,1.159,2.956,0.842,1.466,0.778,1.566,0.432,0.844,1.549,0.687,0.824,0.78,0.774,0.637,0.655,1.687,0.86,0.995,1.231,2.112,0.377,1.087,1.769,0.935,2.292,0.615,0.823,1.36,0.835,1.258,0.774,1.595,1.359,0.796,1.563,0.672,1.504,0.813,0.823,1.329 +NM_016312,0.615,0.863,1.286,0.703,0.762,0.981,0.579,0.4,1.043,0.992,0.964,0.804,0.609,0.711,0.871,1.311,0.771,0.831,1.124,0.742,0.495,0.616,1.286,0.914,0.586,0.853,1.427,0.744,0.345,1.049,0.844,1.158,3.44,1.431,0.29,1.254,0.91,0.772,1.749,1.035,0.949,1.123,0.631,1.547,1.024,0.968,1.021,0.73,1.008,0.957,1.039,0.979,1.095,1.866 +NM_016315,1.013,1.315,1.071,1.01,1.052,1.163,0.93,1.031,1.269,0.896,0.893,0.848,0.988,1.03,0.99,0.994,0.939,1.11,1.156,0.897,0.88,0.745,1.001,0.843,1.115,0.951,0.84,1.084,0.73,0.952,1.022,1.071,1.016,1.094,1.255,0.987,0.98,1.029,1.041,0.673,0.967,0.947,0.744,1.19,1.007,0.928,0.884,0.958,0.88,1.029,0.995,1.057,1.045,0.836 +NM_016316,0.905,1.175,1.573,0.903,1.059,1.054,0.85,0.921,1.603,0.905,0.775,0.967,0.928,1.011,1.116,1.023,1.12,1.0,0.957,1.186,0.759,1.262,1.019,1.209,0.781,0.851,1.523,1.038,0.81,0.888,1.264,1.615,1.815,1.069,0.882,0.677,0.805,1.024,0.934,1.0,1.225,0.959,0.745,1.014,1.149,0.883,1.018,1.03,0.914,1.098,0.875,0.782,0.867,1.348 +NM_016319,1.13,0.935,1.102,0.906,0.885,1.388,0.592,0.626,1.08,1.061,1.016,1.091,0.872,0.736,0.812,0.854,1.071,1.002,1.365,0.666,0.849,1.472,0.937,1.183,0.87,1.361,1.225,0.88,0.681,1.006,0.857,0.989,1.753,1.237,0.266,0.806,0.954,1.176,1.753,0.626,1.206,0.95,0.598,1.304,0.923,0.734,0.878,1.428,0.704,1.032,0.972,0.763,0.991,0.821 +NM_016321,8.729,0.0735,3.073,3.714,8.275,0.077,0.0875,9.836,10.98,6.896,0.0787,6.939,7.631,3.967,4.51,3.423,2.128,7.391,12.82,0.181,7.06,13.1,0.0777,9.548,0.0718,15.21,2.386,9.967,0.0868,0.106,8.745,0.0823,3.221,0.078,12.18,0.132,0.0934,10.38,0.16,0.0821,6.654,0.0977,0.0752,0.071,4.878,0.07,3.631,18.03,0.256,4.609,0.918,1.393,2.952,0.606 +NM_016322,0.964,1.0,1.001,0.999,0.962,1.057,0.964,0.96,1.097,0.971,1.047,1.018,0.891,0.975,0.796,1.141,0.922,1.0,0.998,1.01,0.989,0.901,0.96,0.989,1.038,1.027,1.176,0.929,0.83,1.085,1.053,1.164,1.158,0.949,1.027,0.869,1.034,0.926,1.113,0.956,1.127,1.031,0.929,0.942,0.902,0.946,1.045,1.086,0.965,1.103,1.107,0.774,1.119,1.103 +NM_016324,0.867,1.091,1.446,0.659,1.481,1.12,0.65,0.91,2.109,1.098,0.781,1.023,0.85,1.074,1.375,0.833,1.279,1.043,1.811,0.972,0.928,1.248,0.736,1.594,0.581,0.806,1.434,1.373,0.555,0.998,1.653,1.185,3.077,1.501,1.433,0.705,0.882,1.436,0.797,0.744,1.674,0.904,0.841,0.755,1.185,0.719,1.077,0.928,0.775,0.763,0.899,0.735,1.102,1.733 +NM_016326,0.594,1.225,0.894,0.995,0.667,1.084,0.851,0.449,0.747,0.797,1.117,0.604,0.7,0.595,0.835,1.637,0.804,1.048,0.952,1.005,0.699,0.728,1.689,0.738,0.591,0.817,0.843,0.706,0.798,1.237,0.665,1.976,2.171,1.189,0.453,1.509,1.181,0.695,2.745,1.327,0.973,1.105,1.083,2.532,0.741,0.946,1.224,0.896,1.331,0.738,1.131,1.278,0.714,3.289 +NM_016328,0.971,0.999,1.033,1.105,1.077,1.04,0.989,0.97,0.987,0.979,1.028,1.133,1.116,1.016,0.956,0.884,0.999,1.02,0.882,0.862,0.853,0.926,1.026,1.024,0.938,1.251,1.101,1.01,0.805,0.969,0.969,1.12,0.821,0.908,1.042,1.006,0.998,1.111,1.115,1.042,0.982,0.927,0.944,1.091,0.987,1.099,1.011,1.084,0.927,1.04,0.993,1.058,1.01,1.085 +NM_016332,0.78,0.594,2.067,0.932,0.726,1.134,0.628,0.506,0.64,1.053,1.932,0.727,0.773,0.54,1.039,1.975,1.237,0.768,1.595,0.655,0.531,0.53,1.039,1.009,0.328,0.596,2.096,0.577,0.326,1.053,0.709,1.243,1.16,0.908,0.485,0.853,1.219,0.597,1.436,1.398,1.459,0.974,0.872,1.353,0.948,1.159,1.326,0.734,1.115,1.754,0.991,0.744,2.687,1.297 +NM_016333,0.81,0.758,1.374,0.779,0.775,0.745,0.71,0.438,1.294,0.917,0.751,0.63,0.483,0.783,1.033,0.822,1.154,0.83,1.114,1.108,0.952,1.316,1.158,1.013,0.846,0.92,1.486,0.546,0.809,0.928,1.178,1.57,2.492,1.18,0.559,0.847,0.91,1.006,1.741,1.605,0.92,1.253,0.694,1.497,1.043,0.628,0.802,1.058,0.898,0.912,0.931,0.827,1.083,1.886 +NM_016334,0.709,1.211,1.007,0.838,0.869,1.525,0.85,0.714,1.04,0.888,0.926,0.811,0.741,0.67,1.062,1.953,0.705,0.978,0.9,1.362,0.641,0.927,1.627,1.109,0.867,0.642,1.293,0.837,0.715,1.243,0.939,1.674,2.972,1.278,0.474,0.885,1.204,1.075,1.766,1.528,0.874,1.435,0.713,1.03,0.816,0.994,0.96,0.787,1.166,0.697,1.209,0.927,0.679,2.859 +NM_016335,1.253,1.047,1.0,1.077,1.0,0.857,1.032,0.945,0.892,0.951,1.029,0.989,1.079,0.934,1.1,1.014,0.984,1.123,0.998,1.238,1.01,1.056,1.052,1.072,0.928,1.115,1.035,0.89,1.204,0.954,1.021,0.937,1.137,0.946,1.06,1.105,0.92,1.128,1.126,0.937,0.936,0.993,1.136,0.927,0.979,0.987,0.983,1.154,1.14,1.048,0.951,1.151,1.031,1.058 +NM_016336,0.818,0.77,1.325,0.721,1.01,0.986,0.838,0.801,1.511,0.977,0.998,0.95,0.799,0.574,1.085,1.29,0.795,0.851,1.179,0.85,0.492,0.666,1.085,1.082,0.639,0.9,0.949,1.29,0.351,0.947,1.085,0.826,0.773,1.002,1.568,0.901,1.428,1.132,1.408,0.823,1.106,1.216,1.211,0.858,1.215,1.586,1.358,0.896,1.317,1.111,1.298,0.881,0.994,1.339 +NM_016337,1.045,1.089,1.654,0.98,0.978,0.903,0.965,0.855,1.083,1.083,0.715,1.067,1.332,0.886,0.933,0.822,1.775,0.847,1.316,0.858,0.936,1.154,0.867,1.229,1.325,1.112,2.409,0.951,1.012,0.861,0.972,2.775,1.378,1.364,0.684,0.568,0.829,1.332,1.214,0.795,1.556,1.183,0.956,0.703,1.402,0.73,0.751,1.169,0.847,1.687,0.876,0.713,1.601,1.123 +NM_016338,0.806,0.927,1.441,0.776,1.062,0.858,0.756,0.715,1.264,1.105,0.88,0.943,0.695,0.751,0.696,1.156,1.033,0.962,1.396,0.777,0.81,1.147,1.484,1.213,0.749,0.819,1.385,0.986,0.656,1.062,1.013,0.992,1.414,0.985,0.439,0.886,0.941,1.11,1.231,0.666,1.282,0.989,0.665,1.035,1.015,0.933,0.989,0.946,0.983,1.013,0.98,0.81,1.121,1.411 +NM_016339,1.357,0.599,1.925,0.699,1.461,1.178,0.537,0.952,2.034,1.496,0.989,0.948,0.968,0.998,1.309,2.114,1.023,1.368,1.827,1.132,0.644,1.417,0.893,1.831,0.436,1.403,1.314,1.358,0.433,1.151,2.018,0.466,1.328,0.962,0.415,0.516,0.826,1.4,1.414,0.292,1.511,0.995,0.523,0.545,1.53,0.961,1.002,1.43,0.575,1.383,0.966,0.541,0.935,0.525 +NM_016341,0.62,0.997,0.608,1.017,0.644,1.974,1.273,0.64,0.558,0.655,1.378,0.747,0.673,0.742,1.122,1.962,0.675,1.172,0.843,1.557,0.588,0.682,1.983,0.723,1.003,0.645,0.569,0.618,1.242,1.622,0.644,1.153,0.981,2.284,0.647,0.934,1.287,0.652,1.338,0.704,0.697,1.704,1.089,1.008,0.667,1.483,0.908,0.674,1.464,0.766,1.558,0.736,0.666,1.128 +NM_016343,0.754,1.027,1.303,0.837,1.03,0.942,0.82,0.666,1.052,1.045,1.042,0.97,0.874,0.905,0.924,1.069,0.935,0.881,1.17,0.954,0.911,0.936,1.574,1.089,0.685,0.753,2.013,0.859,0.851,0.844,0.927,1.284,4.344,0.756,0.641,1.523,0.872,0.997,1.181,1.69,0.994,0.846,1.023,1.473,0.93,0.968,1.068,0.818,1.231,0.836,1.23,1.307,0.903,1.71 +NM_016347,0.771,1.242,0.791,1.139,0.872,4.248,1.084,0.887,0.84,0.81,6.927,0.806,0.789,0.803,3.381,19.61,0.87,0.807,0.787,4.401,0.815,0.704,3.623,0.827,0.916,0.894,0.944,0.87,0.662,1.279,0.89,1.088,1.619,1.83,0.724,0.991,8.596,0.869,1.149,0.872,0.83,3.274,10.03,0.874,0.844,4.223,2.895,0.768,1.225,0.808,4.379,0.902,0.928,1.991 +NM_016348,1.799,2.595,2.278,1.811,1.871,2.326,2.302,1.504,1.7199999999999998,1.612,2.015,1.762,1.588,1.849,2.205,2.0949999999999998,1.724,2.502,1.555,2.553,1.581,1.7850000000000001,1.914,1.9689999999999999,1.863,1.625,1.9809999999999999,1.977,1.694,3.3779999999999997,1.5190000000000001,3.5199999999999996,1.7369999999999999,3.149,1.531,2.893,2.05,1.836,2.33,2.794,2.043,2.883,1.592,1.67,1.64,2.173,1.952,1.687,1.874,1.445,2.004,1.714,2.051,1.71 +NM_016349,0.873,0.94,1.131,0.965,1.119,0.884,0.968,0.888,0.932,1.126,1.076,0.895,1.054,0.911,1.06,1.043,0.931,0.888,1.128,0.798,1.136,1.091,0.983,0.948,1.081,0.962,1.024,1.077,0.746,0.9,1.095,0.977,1.059,0.934,1.051,1.024,0.931,1.148,0.925,0.998,1.139,1.046,0.878,1.148,0.996,1.049,1.031,0.917,0.999,0.961,1.063,0.989,0.893,0.943 +NM_016350,1.01,0.96,0.952,0.962,0.906,1.07,0.999,0.97,1.17,0.916,1.0,0.987,1.022,1.047,0.88,0.881,1.048,1.041,1.075,1.021,1.054,1.054,0.952,1.164,1.091,1.028,1.183,1.094,1.532,0.889,1.023,1.025,1.102,0.812,1.113,0.943,1.042,0.927,1.025,1.414,0.985,0.936,0.944,0.906,1.03,0.995,0.974,1.043,0.963,1.044,1.0,1.015,1.135,1.174 +NM_016353,0.773,1.373,1.26,0.915,0.73,1.631,1.485,0.846,0.906,0.761,1.125,0.833,1.006,0.795,0.822,1.75,0.796,1.153,0.854,1.638,0.727,1.015,0.983,1.481,1.346,0.792,1.069,0.886,1.02,1.978,0.811,2.149,1.368,1.384,0.9,0.63,1.753,1.09,1.25,0.977,0.783,1.229,1.017,0.968,0.836,1.019,0.935,0.781,1.314,0.919,1.664,0.988,1.01,1.482 +NM_016354,0.991,0.591,1.649,0.763,1.208,0.532,0.519,1.404,1.979,0.743,0.418,1.322,1.227,0.601,1.258,0.626,2.394,1.313,2.368,0.413,0.5,0.966,1.327,0.801,0.483,1.306,1.881,1.095,0.552,0.621,1.411,0.445,2.81,0.76,2.357,1.2,0.494,1.766,2.249,2.157,1.344,0.634,0.512,1.409,1.646,0.381,1.326,1.682,0.745,2.235,0.612,1.947,0.95,1.648 +NM_016355,0.733,0.856,1.246,0.765,0.861,0.805,0.472,0.372,1.201,1.398,0.808,0.63,0.523,0.969,0.885,1.109,0.875,0.693,1.348,0.778,0.742,0.645,1.046,1.175,0.608,0.925,1.33,0.851,0.334,1.042,1.005,1.425,4.768,1.127,0.286,1.191,0.817,0.896,1.475,1.129,1.424,1.063,0.639,2.022,1.144,0.8,1.205,0.684,0.907,0.804,0.884,0.913,1.052,2.162 +NM_016356,0.783,1.023,1.016,0.998,0.951,1.14,1.029,0.897,1.075,0.879,0.989,1.012,0.881,1.052,0.985,1.346,0.94,1.012,0.972,1.004,0.82,0.902,1.129,0.937,0.956,0.848,0.879,1.015,0.96,0.91,1.112,0.998,1.382,1.065,0.994,1.102,1.092,1.064,1.272,1.091,0.945,1.052,1.147,1.285,1.002,1.003,1.432,0.988,0.943,1.029,0.989,0.812,0.878,2.13 +NM_016357,0.246,1.324,0.731,0.889,0.374,2.736,0.945,0.22,0.37,0.436,2.385,0.314,0.246,0.281,1.488,3.545,0.387,1.052,0.398,2.633,0.234,0.301,2.47,0.406,0.75,0.294,0.728,0.305,0.812,2.281,0.374,0.795,0.743,2.419,0.179,1.161,2.738,0.341,2.286,0.661,0.456,2.209,1.157,1.004,0.362,2.346,1.26,0.294,2.037,0.391,2.098,0.884,0.799,1.849 +NM_016358,1.614,0.726,2.192,0.858,2.059,0.684,0.679,1.111,2.796,2.808,0.813,1.872,1.312,2.058,1.476,1.004,1.908,1.267,1.678,0.829,1.577,1.384,0.899,2.679,0.738,1.857,2.917,1.555,0.626,0.694,2.033,0.815,1.406,0.829,0.777,0.668,0.778,2.031,0.804,0.887,1.837,0.821,0.81,0.756,2.114,0.779,1.44,1.641,0.703,2.188,0.893,1.265,3.379,1.098 +NM_016359,0.615,1.24,1.391,0.849,0.996,1.187,0.748,0.599,1.235,1.117,0.742,1.162,0.866,0.77,0.857,1.172,0.889,1.017,1.141,0.824,0.611,0.974,2.359,1.292,0.559,0.769,2.592,0.806,0.422,1.088,0.917,0.998,2.786,0.799,0.299,1.913,0.994,0.897,1.503,1.126,1.171,0.646,0.808,1.156,0.938,0.943,1.224,0.778,1.131,0.762,1.403,1.103,0.773,3.032 +NM_016360,0.542,1.356,0.812,0.754,0.723,1.379,0.888,0.463,0.771,0.735,1.504,0.892,0.543,0.494,0.858,1.595,0.625,0.851,0.781,1.294,0.542,0.59,1.446,0.821,0.863,0.613,0.911,0.718,0.587,1.494,0.636,1.529,1.104,1.378,0.387,1.273,1.482,0.569,1.427,0.855,0.775,1.401,1.233,2.071,0.903,1.404,1.096,0.55,1.612,0.61,1.204,1.034,0.89,1.859 +NM_016361,0.582,0.741,1.121,1.126,0.73,1.1,0.826,0.63,0.875,0.705,0.763,0.577,0.651,0.713,1.002,1.347,0.683,1.142,0.802,1.548,0.619,0.765,1.89,0.681,0.712,0.661,1.222,0.786,0.685,1.597,0.698,1.204,1.282,1.016,0.491,1.055,1.038,0.819,1.464,0.915,0.753,1.527,1.117,1.992,0.615,1.053,1.141,0.645,0.991,0.702,1.173,0.862,0.683,1.4 +NM_016362,0.878,38.65,0.888,3.021,0.937,2.011,22.36,0.988,0.979,0.866,2.916,1.035,0.781,0.993,0.987,0.943,0.976,2.04,0.867,1.787,0.851,0.855,1.068,0.967,62.98,0.881,0.924,0.922,6.297,1.819,1.003,1.248,0.788,231.3,0.9,1.164,25.81,0.857,1.16,1.123,0.891,1.526,1.183,0.965,0.951,2.807,1.116,0.963,1.035,0.872,1.492,0.759,0.959,0.921 +NM_016364,1.137,1.092,0.915,0.891,1.36,1.003,0.77,1.206,1.133,1.162,1.019,1.45,1.258,1.024,0.694,0.856,1.148,0.98,1.234,1.176,1.223,1.294,1.105,1.175,0.929,1.211,1.103,1.501,0.961,0.765,1.224,0.86,0.89,0.864,0.889,1.084,0.795,0.965,1.022,1.054,1.081,0.934,0.865,0.858,1.389,0.984,1.069,0.894,0.925,0.903,0.941,0.897,1.062,0.738 +NM_016369,0.461,3.571,0.462,2.629,0.44,5.274,4.643,0.399,0.417,0.532,3.46,0.497,0.488,0.398,0.554,1.229,0.53,2.846,0.488,2.268,0.51,0.599,1.554,0.541,2.583,0.445,0.487,0.435,2.783,8.157,0.472,1.424,0.509,7.288,0.574,0.931,3.36,0.557,6.408,0.51,0.411,2.856,1.608,2.076,0.497,2.1,0.701,0.466,0.693,0.475,3.19,0.378,0.606,1.0 +NM_016370,0.956,0.902,0.87,0.929,1.007,1.008,0.854,1.133,0.892,0.832,0.981,0.84,1.117,0.911,0.903,0.839,0.774,0.841,0.967,1.048,0.998,0.879,1.01,1.176,1.071,1.055,1.058,1.201,1.162,1.032,0.913,1.245,0.937,1.207,0.867,0.97,1.058,1.201,0.847,0.941,1.122,1.381,1.087,0.845,0.889,1.15,0.931,0.872,0.97,0.839,1.152,1.032,1.156,1.225 +NM_016372,0.76,1.034,1.213,0.682,1.268,1.101,0.882,1.013,1.201,1.03,0.7,0.953,1.019,0.669,0.898,1.17,1.116,1.131,0.847,1.004,0.75,1.307,1.111,1.089,0.775,0.831,1.184,0.956,0.705,1.02,1.356,1.216,1.321,0.934,0.913,0.644,0.759,1.191,1.569,1.157,1.074,0.815,0.523,0.829,1.17,0.703,0.975,1.319,1.136,0.996,0.894,0.69,0.774,1.195 +NM_016374,0.85,1.291,0.916,0.644,0.968,1.525,0.977,0.6,1.254,0.831,1.051,0.767,0.713,0.717,0.629,0.842,0.806,0.815,0.719,1.298,0.717,0.852,0.981,0.953,1.043,0.563,1.125,0.988,0.785,1.428,0.779,1.46,2.033,1.008,0.537,2.213,0.977,0.891,1.46,1.636,1.074,1.19,0.827,1.319,0.75,1.399,1.315,0.542,1.229,0.754,1.001,1.016,0.732,1.536 +NM_016376,0.736,0.816,1.174,0.592,0.871,0.97,0.857,0.498,1.222,1.005,0.838,0.644,0.57,0.766,1.113,1.176,0.716,0.961,0.979,1.348,0.668,0.844,1.544,0.965,0.665,0.856,1.114,0.863,0.619,1.342,0.828,1.654,1.091,1.227,0.355,0.912,1.179,1.123,1.073,0.863,1.048,1.33,0.888,1.206,0.791,1.287,0.817,0.644,1.03,0.546,1.183,0.761,0.832,1.902 +NM_016377,0.974,0.872,0.991,1.049,1.063,1.033,0.999,1.125,0.941,1.027,1.055,1.115,1.182,1.004,0.815,1.028,0.864,1.19,1.067,1.054,0.883,1.06,1.023,1.176,0.954,0.774,1.068,1.056,1.008,0.969,1.061,0.945,1.07,1.062,1.015,0.995,1.057,1.208,0.917,0.974,1.068,0.917,0.917,0.979,0.961,0.909,1.159,0.993,0.967,0.924,0.974,0.997,0.752,0.881 +NM_016378,1.074,1.075,0.937,0.974,1.013,0.922,1.013,1.042,0.795,0.929,0.956,0.89,0.967,1.214,1.001,1.045,1.009,0.848,0.918,0.806,1.016,1.002,0.905,0.939,1.233,1.065,0.841,0.993,1.071,0.946,0.907,0.982,1.018,0.945,1.124,1.084,0.919,0.984,1.08,1.139,0.996,0.897,0.946,0.847,1.041,0.974,0.92,0.974,1.067,0.815,0.885,1.205,0.862,0.97 +NM_016379,0.94,0.924,1.07,0.971,1.2,0.911,0.901,1.001,0.917,0.956,1.142,1.1,0.958,1.026,0.953,0.998,0.965,1.045,1.074,1.15,1.103,1.01,0.988,1.131,1.024,0.951,0.996,1.223,0.952,1.042,1.048,1.085,0.959,0.98,1.034,1.063,1.002,1.052,0.987,0.961,0.992,1.013,0.944,0.97,1.166,0.974,0.867,1.009,0.922,0.932,0.988,0.894,1.032,0.992 +NM_016381,1.03,0.94,0.934,0.892,1.094,0.974,1.026,0.897,0.974,1.113,0.83,1.059,0.91,1.032,1.009,0.943,1.018,1.07,0.997,1.103,1.022,0.961,1.062,0.961,0.92,0.988,1.12,1.046,1.267,1.085,1.037,0.839,1.104,0.832,1.025,1.146,0.968,1.008,1.007,1.064,0.982,0.996,1.003,1.098,0.928,0.989,0.959,0.957,0.957,1.022,1.012,0.934,0.983,0.908 +NM_016382,1.142,0.854,1.123,1.002,1.131,1.04,1.294,0.923,1.053,1.009,0.912,1.101,0.921,0.812,1.306,1.12,0.963,1.001,1.109,0.983,0.91,1.079,1.015,0.972,1.053,0.857,0.956,0.962,0.893,0.913,0.97,0.93,1.136,0.976,0.917,0.988,0.988,0.872,1.038,0.922,1.157,1.13,0.942,0.911,1.185,1.064,0.953,1.002,0.937,1.026,0.918,0.939,1.05,1.268 +NM_016383,1.083,1.108,1.098,0.874,1.004,0.93,0.978,0.878,0.889,0.882,1.166,0.987,1.027,0.999,1.035,0.935,1.001,0.976,1.149,0.881,1.045,1.035,0.961,1.068,0.924,0.845,0.85,1.071,0.951,1.062,1.069,0.991,0.979,0.926,1.083,0.967,1.059,0.975,0.933,0.957,1.13,1.123,1.111,0.987,1.056,1.004,0.883,1.089,1.002,0.947,0.941,0.959,1.05,0.99 +NM_016390,1.167,0.984,0.95,1.039,0.91,1.18,1.042,0.872,1.158,1.005,1.021,0.977,1.005,1.196,0.94,0.919,0.956,0.942,1.141,0.974,1.016,0.892,1.158,1.08,0.945,1.033,0.954,0.947,1.058,1.065,0.962,0.972,1.205,0.891,0.894,1.062,0.998,0.988,1.269,0.798,1.026,0.949,1.002,1.293,1.04,0.977,0.889,1.009,0.871,1.06,0.947,0.889,0.992,1.065 +NM_016391,0.749,0.752,1.057,0.741,1.197,0.937,0.665,0.539,1.636,2.02,0.857,1.532,0.822,0.619,0.965,1.825,1.035,0.783,1.305,0.66,0.672,0.974,1.37,1.795,0.372,0.881,1.265,0.899,0.39,0.823,1.286,1.25,3.436,0.761,0.146,0.81,0.997,1.024,1.301,0.892,1.327,0.881,0.88,1.013,1.74,0.946,1.442,0.735,1.44,0.854,0.989,1.199,1.281,2.685 +NM_016395,0.776,1.263,0.906,1.093,0.771,1.621,1.141,0.823,0.925,1.007,0.999,0.874,0.793,0.735,0.757,0.987,0.827,0.946,0.713,1.319,0.766,0.881,1.122,0.815,1.455,0.752,0.971,0.775,1.342,1.706,0.794,1.037,1.289,1.241,0.761,1.21,0.988,0.766,1.939,0.776,0.979,0.995,1.165,1.134,0.801,1.427,0.971,0.823,1.202,0.846,1.235,0.893,0.819,1.516 +NM_016397,0.886,0.826,1.122,0.835,1.0,0.813,0.414,0.492,1.35,1.203,0.754,1.142,0.73,0.707,0.942,0.989,1.096,0.744,1.325,0.764,0.791,0.79,1.127,1.154,0.503,1.058,1.308,0.988,0.261,1.126,1.006,0.993,2.025,1.061,0.216,1.02,0.795,0.981,1.446,1.108,1.086,0.872,0.736,1.826,1.128,0.66,1.033,0.792,0.793,0.777,0.848,1.271,1.12,1.969 +NM_016399,0.606,0.897,1.21,0.687,1.14,1.156,0.607,0.902,1.155,1.092,1.198,1.451,0.936,0.666,0.965,2.134,1.054,0.978,1.438,0.896,0.721,0.873,1.232,1.342,0.493,0.731,1.439,0.874,0.554,1.423,0.981,1.18,1.667,1.251,0.339,1.281,1.164,1.183,0.966,0.816,1.368,0.922,0.716,0.772,0.91,0.829,1.246,0.786,0.889,0.671,0.987,1.127,0.995,1.572 +NM_016400,0.982,0.964,1.287,1.087,0.904,1.056,1.589,1.017,0.976,1.037,0.991,1.093,1.208,1.037,1.085,1.092,0.939,0.969,0.995,0.942,1.035,0.916,1.072,0.936,0.922,0.858,0.886,0.865,0.861,1.045,1.003,1.104,1.075,0.84,0.962,0.873,0.966,0.996,1.017,0.785,1.144,0.879,0.799,1.099,1.134,1.07,1.038,0.949,1.134,1.012,0.878,1.053,1.1,1.194 +NM_016401,0.831,0.894,1.643,0.648,1.227,0.78,0.668,0.883,1.478,1.483,1.005,1.463,0.947,0.784,1.001,1.41,1.035,1.158,1.642,0.611,0.821,1.157,1.03,1.547,0.396,0.886,1.416,1.344,0.352,0.962,1.225,1.498,3.381,1.034,0.216,1.208,0.987,1.574,0.93,0.844,1.529,0.796,0.524,0.73,1.408,0.633,1.218,0.928,0.892,0.783,0.905,1.144,1.221,1.56 +NM_016404,0.894,0.86,1.299,0.692,1.012,0.911,0.578,0.672,1.208,1.158,0.856,1.31,0.799,0.668,0.783,1.108,1.123,0.971,1.294,0.742,0.654,0.897,1.199,1.476,0.554,0.92,1.664,1.059,0.32,1.4,0.922,1.7,2.133,1.113,0.186,1.415,0.839,1.131,1.255,1.113,1.485,1.004,0.537,1.176,1.421,0.689,1.476,0.844,0.677,0.974,1.042,1.136,1.159,1.145 +NM_016406,0.694,1.122,1.278,0.75,1.021,1.193,0.721,0.807,0.925,0.785,1.115,1.002,0.75,0.514,0.773,1.413,0.85,1.042,1.036,1.326,0.353,0.895,1.301,1.139,0.568,0.815,0.753,0.938,0.439,1.222,0.856,1.433,1.317,1.34,0.576,1.538,1.085,1.195,1.472,0.872,1.17,1.23,0.665,0.998,0.978,1.078,1.152,0.935,0.994,0.766,1.071,0.627,0.931,1.541 +NM_016407,0.712,0.846,0.971,0.869,0.683,1.204,0.616,0.458,0.951,0.788,1.339,0.788,0.683,0.562,0.804,1.281,0.79,0.762,1.184,0.928,0.698,0.683,1.389,0.889,0.732,1.139,0.853,0.806,0.543,1.512,0.786,1.17,2.055,1.579,0.448,0.908,1.079,0.722,1.401,1.589,0.972,1.126,0.74,1.637,0.984,0.924,0.979,0.819,0.895,0.826,0.92,1.154,1.288,2.116 +NM_016408,1.036,1.015,1.057,1.143,1.064,1.117,1.0,0.987,1.04,1.046,0.981,0.916,1.061,0.968,0.687,0.917,1.031,0.93,1.22,0.775,0.932,0.961,1.23,1.148,1.011,0.951,0.914,0.918,0.968,0.987,1.181,1.061,1.098,0.894,0.903,1.147,1.081,0.87,0.97,0.884,0.827,1.068,0.783,1.159,1.012,1.063,1.022,1.0,0.952,0.97,0.936,0.983,0.844,1.122 +NM_016410,0.76,0.795,1.123,0.754,0.993,1.922,0.816,0.993,1.269,0.529,1.507,0.839,1.061,0.702,1.364,1.928,0.86,1.201,1.002,1.445,0.277,0.885,0.865,0.986,0.576,0.585,1.237,1.026,0.564,1.28,1.237,0.919,0.941,1.532,1.43,0.379,1.587,0.917,0.998,0.728,0.959,1.126,0.605,0.69,0.766,1.332,1.053,1.073,1.068,0.647,1.177,0.94,0.524,2.222 +NM_016413,1.008,1.035,0.98,0.956,1.015,1.224,0.998,1.125,0.878,0.915,1.131,0.876,1.05,0.978,0.877,0.892,1.134,0.869,0.937,1.038,1.124,0.963,0.873,0.916,0.954,0.966,0.998,1.014,1.248,1.142,0.893,1.027,1.025,0.927,0.988,0.952,1.111,1.016,0.885,0.985,0.863,1.141,0.819,0.94,1.224,0.924,0.844,0.921,1.07,0.994,1.319,1.008,0.912,1.179 +NM_016417,0.626,1.159,1.043,0.686,0.772,1.394,0.63,0.465,0.894,0.825,1.692,1.035,0.676,0.524,0.898,1.67,0.663,0.98,0.84,1.23,0.373,0.74,1.394,0.892,0.881,0.659,1.203,0.785,0.461,1.361,0.734,1.469,1.197,1.455,0.0836,1.279,1.591,0.875,1.317,0.782,0.94,1.157,0.967,1.214,0.881,1.404,1.133,0.66,1.145,0.591,1.237,0.741,0.743,1.008 +NM_016422,1.303,0.934,1.474,0.71,1.371,1.056,0.547,1.438,1.826,0.95,0.968,1.436,1.361,1.077,1.152,1.418,1.325,1.101,3.43,0.99,0.977,1.211,0.892,1.398,0.619,2.405,1.724,1.478,0.628,1.001,1.674,0.636,1.151,1.119,1.623,0.816,0.862,1.576,0.755,0.642,1.569,0.912,0.675,0.611,1.409,0.812,1.189,1.762,0.729,1.3,0.805,0.773,1.449,0.924 +NM_016423,0.82,1.005,1.207,0.662,0.931,0.943,0.554,0.706,1.101,1.311,0.82,1.062,1.095,0.782,0.958,1.344,1.492,0.905,1.492,0.819,1.06,1.256,1.038,1.453,0.989,1.311,1.948,0.935,0.547,0.755,1.192,1.078,2.061,1.104,0.477,0.902,0.744,1.281,0.862,0.885,1.149,0.878,0.618,1.522,1.291,0.571,1.077,1.308,0.733,1.259,0.876,0.736,1.278,0.948 +NM_016424,0.901,1.01,1.283,0.723,0.971,1.125,0.635,0.764,1.192,1.069,0.858,0.703,0.775,0.938,1.002,1.472,1.038,0.86,0.799,1.019,0.754,0.894,1.172,1.24,0.767,0.799,1.61,1.059,0.622,1.083,1.422,1.416,1.898,1.067,0.609,0.655,0.873,1.175,1.272,0.81,1.226,0.998,0.75,0.764,0.965,1.061,1.184,0.852,1.394,0.863,1.25,0.707,0.64,1.18 +NM_016426,1.003,0.919,1.055,1.084,1.073,0.919,1.086,1.159,0.885,0.939,1.171,1.019,1.057,1.065,1.03,1.007,1.001,0.985,1.022,0.872,1.012,1.092,1.106,1.065,0.976,1.023,1.082,1.065,0.89,0.998,1.118,1.027,1.083,0.957,1.155,0.998,1.065,0.904,1.001,0.971,1.04,0.942,0.885,0.881,0.94,0.919,1.037,1.034,0.956,0.958,0.897,0.942,0.963,1.059 +NM_016427,1.035,1.082,1.009,0.941,0.977,1.021,0.831,1.029,1.064,0.952,1.057,0.942,1.181,0.799,1.0,1.11,1.062,1.092,1.012,1.165,1.104,1.046,0.981,0.966,1.044,0.983,0.961,0.769,0.968,0.926,1.042,0.828,1.011,1.038,1.032,1.037,0.976,1.052,0.847,1.149,1.151,0.829,1.777,0.997,0.857,1.06,0.967,1.003,0.942,0.77,1.01,1.066,1.08,0.964 +NM_016428,0.876,0.979,1.292,0.895,1.029,1.012,1.079,0.877,1.113,0.954,0.845,0.858,0.911,0.789,0.995,1.034,1.282,0.94,1.075,0.819,0.888,0.999,0.938,1.038,1.102,0.867,1.417,0.823,0.724,1.283,0.949,1.66,1.289,1.198,0.853,0.992,0.887,1.042,1.354,1.139,1.18,1.125,0.749,0.916,1.131,0.912,0.982,0.942,1.009,1.225,0.9,1.203,1.101,1.726 +NM_016429,0.965,1.011,1.341,0.937,1.057,0.851,0.854,0.918,1.028,1.014,1.0,0.89,1.089,0.826,0.83,0.961,1.323,0.98,1.158,0.883,0.937,1.089,1.05,1.022,0.952,1.0,1.222,1.161,0.701,0.973,1.052,2.467,1.116,1.129,1.005,0.951,0.888,1.104,0.948,0.905,1.196,1.21,0.961,0.941,1.091,0.909,1.062,1.012,0.902,0.977,0.981,1.316,1.157,1.03 +NM_016431,1.045,1.125,1.016,0.996,1.171,1.085,1.069,1.2,0.991,0.834,1.05,0.95,0.84,0.92,0.883,0.999,1.023,1.015,0.874,1.094,1.078,0.952,0.78,0.993,1.054,0.969,0.998,1.083,1.374,1.001,1.19,0.957,1.064,0.889,1.108,1.071,1.047,1.047,1.121,0.991,0.956,0.928,1.014,1.001,0.997,0.914,0.985,1.074,0.953,0.924,1.079,0.963,0.871,1.059 +NM_016433,3.227,0.314,2.947,1.231,2.642,0.598,0.299,2.047,3.442,3.575,0.501,3.166,2.403,1.883,1.39,1.175,2.306,2.388,2.623,0.445,1.824,2.367,0.356,3.338,0.338,2.593,2.753,2.222,0.282,0.533,2.654,0.465,1.094,0.494,2.922,0.265,0.42,3.011,0.439,0.341,3.42,0.411,0.36,0.381,2.486,0.432,2.309,2.37,0.5,2.629,0.805,0.954,1.528,0.485 +NM_016434,1.883,1.866,1.789,1.8719999999999999,1.9889999999999999,1.925,2.201,1.732,1.932,1.9340000000000002,1.738,1.907,1.937,1.99,2.126,1.976,2.15,1.901,2.052,1.947,2.143,2.028,1.875,1.84,1.85,2.012,1.831,1.8900000000000001,3.0140000000000002,2.0439999999999996,1.77,2.042,2.1079999999999997,2.014,1.7810000000000001,2.362,1.933,1.9819999999999998,2.601,2.62,1.87,2.028,2.062,2.96,2.146,1.907,1.923,1.8559999999999999,2.176,2.171,2.064,1.976,2.061,1.988 +NM_016436,0.948,0.808,1.058,0.979,1.036,1.006,0.915,1.09,0.879,0.848,0.925,0.99,0.924,1.151,0.856,0.964,0.98,1.133,0.9,0.948,0.847,1.003,0.954,1.031,0.907,0.99,1.076,0.991,0.887,1.049,1.059,1.036,0.923,0.937,1.326,1.086,1.044,0.992,1.153,1.006,1.064,0.953,0.746,0.928,0.995,0.988,1.156,1.037,0.991,1.02,0.942,1.041,0.856,0.919 +NM_016437,0.991,1.011,1.004,0.916,0.867,1.11,0.896,0.869,1.019,0.971,1.067,1.117,0.897,0.878,0.96,0.926,1.001,0.936,0.913,1.236,0.99,0.872,1.085,0.892,1.019,0.94,0.985,0.789,0.718,1.241,0.869,2.44,1.157,1.432,0.915,0.897,0.937,0.856,1.047,1.302,0.981,1.22,0.878,1.05,0.994,0.956,1.027,0.827,0.887,0.947,0.873,0.915,1.08,1.338 +NM_016438,0.979,1.319,0.929,0.895,0.977,1.062,1.07,0.842,0.918,0.994,1.097,1.02,0.862,0.883,0.918,1.095,0.85,1.003,0.929,1.022,0.925,0.863,1.384,0.972,0.982,1.041,0.857,1.009,0.744,1.072,0.835,2.563,1.035,1.297,0.898,1.182,0.836,1.103,1.264,0.91,0.888,1.15,1.06,0.953,1.067,0.953,1.099,0.986,0.835,0.926,1.11,1.209,0.902,1.24 +NM_016440,0.558,1.216,0.698,0.892,0.617,1.653,1.068,0.55,0.675,0.627,1.145,0.628,0.535,0.532,0.962,1.664,0.798,1.061,0.683,1.306,0.561,0.709,1.447,0.656,0.947,0.679,0.884,0.571,0.88,1.393,0.612,0.985,1.698,1.731,0.416,1.332,1.289,0.638,1.601,1.197,0.702,1.305,1.013,1.306,0.656,1.001,1.311,0.68,1.122,0.636,1.34,0.698,0.716,1.064 +NM_016441,1.028,0.898,0.938,0.941,0.899,0.959,0.803,0.94,0.899,0.916,0.844,0.839,0.974,1.035,0.798,1.044,0.876,0.965,0.943,0.979,1.075,0.863,1.068,0.876,0.94,0.976,0.935,1.001,0.84,0.881,1.004,1.221,1.062,0.95,0.859,1.05,0.888,0.915,0.966,1.271,1.045,1.08,1.063,1.225,0.928,1.068,1.195,0.9,1.063,0.909,1.01,1.148,1.031,1.384 +NM_016442,0.961,1.112,0.961,0.811,0.895,1.19,1.058,0.894,1.031,0.855,1.01,0.913,0.837,1.007,0.958,1.331,0.961,0.923,0.794,1.174,0.916,0.889,0.977,0.968,0.996,0.84,0.871,1.007,1.223,1.339,1.07,1.257,1.039,1.1,0.861,0.988,1.035,1.028,1.174,0.911,0.882,1.005,1.059,0.874,0.895,1.2,0.831,0.953,1.2,1.034,0.994,0.952,0.951,1.21 +NM_016444,0.789,1.225,1.113,0.883,1.028,1.453,0.831,0.738,1.085,0.72,1.152,0.743,0.769,0.91,0.908,0.962,0.933,0.969,1.037,1.263,0.871,0.866,1.266,0.959,0.777,0.747,1.141,0.876,0.737,1.398,0.911,1.074,1.976,1.225,0.602,1.01,1.023,1.027,1.183,0.939,1.143,1.359,0.767,0.945,0.821,0.99,0.907,0.761,0.804,0.841,1.147,0.865,0.792,1.448 +NM_016445,0.478,0.971,0.571,1.172,0.512,1.993,0.979,0.427,0.624,0.628,1.449,0.609,0.561,0.429,1.27,2.478,0.433,1.119,0.591,1.235,0.485,0.59,1.446,0.758,0.791,0.511,0.744,0.471,0.887,1.433,0.701,0.561,1.643,1.723,0.302,1.446,1.875,0.544,3.181,0.744,0.567,1.473,1.525,2.717,0.598,1.469,1.555,0.462,1.806,0.47,1.637,0.833,0.69,1.224 +NM_016446,0.837,1.23,0.899,0.998,0.832,1.123,0.928,0.822,0.787,0.876,1.061,0.969,0.693,0.993,1.157,1.37,0.883,0.886,0.991,1.01,0.83,0.851,1.323,0.773,1.228,0.878,1.144,0.885,0.8,1.233,0.969,1.939,1.417,1.758,0.918,0.969,1.123,0.974,1.007,0.926,0.905,1.542,0.915,2.109,0.772,1.056,0.852,0.896,0.999,0.741,1.049,1.072,0.866,1.225 +NM_016447,0.976,0.97,1.133,0.936,0.937,0.783,1.061,0.901,1.3,1.171,0.857,1.091,0.92,1.12,0.977,1.086,1.122,0.856,1.118,0.78,0.975,0.951,1.436,1.215,0.977,0.988,1.097,1.005,1.251,0.797,1.062,1.101,2.969,1.068,0.967,1.39,0.807,1.059,1.184,0.993,1.02,1.174,1.166,0.839,1.207,0.821,1.36,0.94,1.006,0.95,0.903,1.062,1.225,2.134 +NM_016448,0.781,1.125,0.991,0.641,0.858,0.961,0.741,0.615,0.911,1.043,0.673,1.293,0.892,0.711,0.977,1.21,0.823,0.975,1.024,0.851,0.749,0.911,1.682,1.13,0.706,0.901,1.83,0.858,0.872,0.981,0.839,1.562,4.698,0.993,0.527,1.936,1.016,1.017,1.579,1.099,0.922,0.955,0.873,1.9,1.022,0.976,0.783,0.98,1.076,1.028,1.33,1.267,0.892,2.66 +NM_016449,1.081,0.978,0.933,1.166,0.972,1.178,0.897,0.989,0.887,1.097,0.905,0.943,1.055,1.145,1.06,1.037,0.946,0.953,0.844,0.954,0.987,1.087,0.96,1.036,1.074,0.992,0.952,0.867,1.21,0.986,1.117,0.937,1.046,0.964,1.041,0.99,1.008,1.163,0.996,1.105,0.946,0.976,1.089,1.115,1.096,0.905,0.959,1.011,0.954,1.037,0.959,1.069,0.949,1.034 +NM_016451,0.472,1.208,0.896,0.731,0.626,1.528,0.697,0.33,1.031,0.659,1.615,0.559,0.362,0.528,1.067,2.177,0.554,0.947,1.371,1.16,0.703,0.644,1.573,0.717,0.735,0.559,1.083,0.55,0.744,1.977,0.671,1.177,2.168,1.817,0.272,1.713,1.756,0.6,1.22,0.755,0.798,1.44,0.878,0.738,0.765,1.581,0.926,0.52,1.534,0.578,1.398,1.04,0.907,1.643 +NM_016454,0.856,0.929,1.086,0.728,1.076,0.942,0.535,0.551,1.259,0.995,1.019,0.892,0.693,0.835,0.986,1.279,0.767,1.096,1.64,0.752,0.677,0.639,1.367,1.157,0.674,1.108,1.182,1.043,0.301,0.93,1.194,1.186,1.456,1.657,0.962,0.825,0.958,1.017,1.329,0.548,1.124,1.073,0.606,1.117,1.038,0.777,1.247,0.7,0.669,0.677,0.869,0.904,1.167,1.672 +NM_016456,0.417,1.984,0.878,0.627,0.851,1.393,0.741,0.254,0.746,0.784,1.195,0.829,0.456,0.382,0.49,0.937,0.573,1.306,0.679,1.347,0.245,0.406,1.264,0.72,0.766,0.347,1.032,0.544,0.425,1.768,0.479,2.773,2.356,1.544,0.163,0.977,0.899,0.711,1.413,2.168,0.63,1.068,0.724,1.89,0.685,1.348,1.491,0.405,0.523,0.701,0.796,1.268,0.848,2.054 +NM_016457,0.671,0.793,1.385,0.738,0.674,1.381,0.831,0.569,0.954,0.853,0.969,0.711,0.609,0.946,1.129,1.381,0.939,0.831,1.432,1.045,0.732,0.803,1.589,0.891,0.634,0.89,1.39,0.587,0.677,1.194,1.178,0.982,2.14,1.405,0.62,0.764,0.943,0.897,1.598,1.398,0.879,1.338,0.692,1.325,0.805,0.799,0.914,0.808,0.856,0.893,1.011,0.829,1.101,1.824 +NM_016458,0.774,1.315,0.936,0.727,0.804,0.95,0.858,0.568,1.106,0.884,0.869,0.885,0.682,0.763,0.873,1.33,0.852,0.99,1.049,1.096,0.842,0.845,1.506,1.124,0.838,0.93,1.119,0.824,0.778,1.187,0.903,1.769,2.813,1.178,0.42,1.496,0.935,0.958,1.361,1.32,0.902,1.219,0.988,1.61,1.093,1.358,1.054,0.799,1.251,0.78,1.084,0.96,0.985,1.614 +NM_016459,0.47,4.792,0.475,3.34,0.456,4.608,14.48,0.455,0.624,0.398,0.988,0.428,0.545,0.414,1.231,1.144,0.42,1.255,0.365,3.093,0.429,0.425,2.235,0.68,3.088,0.406,0.425,0.577,0.79,3.979,0.348,0.75,0.497,9.691,0.422,0.991,8.355,0.599,5.538,0.595,0.476,17.01,0.779,0.695,0.437,2.325,0.924,0.411,0.486,0.369,8.731,1.834,0.54,10.76 +NM_016462,0.601,1.344,0.852,0.609,0.726,1.393,0.516,0.43,1.025,0.82,1.832,0.539,0.498,0.677,1.206,1.85,0.634,0.919,1.095,1.283,0.47,0.725,1.137,1.002,0.683,0.835,1.068,0.8,0.409,1.391,0.814,1.314,2.696,1.887,0.465,0.779,1.438,0.769,1.022,0.578,0.978,1.413,0.763,1.205,0.677,1.127,1.015,0.627,0.776,0.719,1.003,0.655,0.815,1.702 +NM_016463,0.774,0.865,1.28,0.47,0.848,1.316,0.768,0.535,1.258,0.718,0.932,0.881,0.615,0.57,0.879,1.066,0.871,1.344,1.138,1.307,0.385,0.824,0.484,0.801,0.626,0.929,0.786,1.033,0.556,1.359,0.99,1.084,1.893,1.254,0.952,1.052,0.734,0.829,1.672,1.618,1.357,1.182,0.337,1.141,1.161,0.758,1.098,1.136,0.424,1.002,1.09,0.969,0.603,0.885 +NM_016464,0.962,0.915,1.132,1.054,0.841,1.143,0.8,0.677,0.901,0.965,1.11,0.85,0.774,0.654,0.986,1.272,0.84,0.84,1.015,0.929,0.722,0.836,1.162,0.973,0.802,0.963,0.869,0.837,0.637,1.135,0.853,1.763,2.301,1.126,0.513,1.586,1.012,0.854,1.494,1.073,0.905,1.064,0.874,1.443,0.987,0.898,0.898,0.749,0.83,0.751,1.148,1.053,1.007,1.641 +NM_016466,0.974,1.003,1.02,0.901,0.685,1.202,0.79,0.877,0.961,0.778,1.307,1.022,0.919,1.043,0.841,1.144,0.748,0.893,1.024,1.051,0.929,0.837,1.189,0.827,0.887,0.93,0.777,0.839,0.663,0.903,0.731,1.129,1.816,1.164,0.68,1.178,1.036,0.912,1.092,1.067,0.854,0.996,0.817,1.709,0.953,1.033,1.138,0.742,1.105,0.765,0.821,0.875,1.081,1.758 +NM_016467,1.006,1.158,1.084,1.17,0.939,0.904,1.019,0.982,1.426,0.768,1.125,0.968,0.896,1.005,0.924,1.025,0.929,0.928,0.825,1.263,0.901,0.997,1.175,0.831,1.077,0.773,1.16,0.886,0.608,0.964,0.915,1.227,0.962,1.203,0.781,0.9,0.965,0.856,1.042,1.025,0.809,1.484,1.134,1.078,1.121,0.982,0.836,0.749,1.014,0.783,1.02,0.962,0.887,1.76 +NM_016468,0.537,1.046,1.014,0.561,0.859,1.497,0.485,0.772,1.291,1.0,1.114,1.147,0.727,0.624,0.928,1.649,0.678,1.027,1.555,1.144,0.504,0.73,1.235,1.118,0.689,0.949,0.96,1.036,0.404,1.358,0.93,0.654,1.356,1.607,0.228,1.146,0.984,0.767,1.205,0.754,1.027,1.022,0.566,1.775,0.91,0.96,1.033,0.718,0.873,0.658,1.0,0.624,0.982,1.418 +NM_016470,1.125,0.721,1.135,0.77,1.355,0.885,0.472,1.985,2.206,0.831,0.917,0.998,1.167,1.237,1.497,1.342,0.824,0.836,1.384,0.714,0.73,1.386,0.966,1.236,0.48,1.45,0.826,2.064,0.35,1.042,2.156,1.118,2.428,1.045,4.523,0.69,0.88,1.45,0.997,1.107,1.223,0.797,0.696,1.088,0.75,0.732,1.349,2.111,0.739,0.863,0.667,0.836,0.883,1.711 +NM_016472,0.854,0.899,1.027,0.839,0.859,1.197,0.726,0.93,1.003,0.919,1.226,0.785,0.919,1.046,1.261,1.956,0.9,1.037,0.98,1.141,0.812,0.806,1.287,0.885,0.805,0.909,1.022,0.964,0.706,0.979,1.152,0.854,1.108,0.961,0.872,1.384,1.452,0.874,1.199,0.797,1.075,1.058,1.273,1.002,0.936,1.554,1.208,0.876,2.056,0.935,1.304,0.761,0.978,0.838 +NM_016476,0.575,0.981,1.037,0.551,1.182,1.05,0.565,0.646,1.105,1.09,0.945,1.195,0.686,0.439,0.73,1.33,0.883,1.135,1.351,1.13,0.559,0.819,1.301,1.115,0.41,0.816,1.122,1.045,0.344,1.048,0.827,1.405,1.146,1.276,0.303,1.475,0.959,0.935,1.202,0.708,1.239,0.912,0.501,1.791,1.032,0.742,1.384,0.873,0.993,0.681,0.983,0.71,0.92,1.146 +NM_016478,0.654,1.036,1.369,0.867,0.842,0.921,0.569,0.49,0.976,0.882,0.946,0.901,0.705,0.782,0.885,1.201,0.935,0.881,1.317,0.866,0.714,0.814,1.675,0.94,0.694,0.862,1.56,0.837,0.514,1.449,0.777,1.328,1.122,1.424,0.398,0.915,1.11,0.795,1.365,0.879,1.041,1.306,0.708,1.412,0.903,1.026,0.974,0.631,0.916,0.745,1.095,0.989,1.125,1.787 +NM_016479,0.576,0.979,1.395,0.661,0.639,1.218,0.526,0.482,0.669,0.802,0.95,0.691,0.79,0.495,0.727,1.306,1.752,0.785,1.777,0.729,0.998,1.0,1.0,0.853,0.593,1.153,1.545,0.405,0.459,1.096,0.593,1.108,1.664,1.271,0.116,0.721,0.865,1.043,1.88,0.97,1.089,1.159,0.592,1.423,0.91,0.704,0.771,0.825,0.809,1.272,0.79,0.966,1.375,2.003 +NM_016483,0.969,0.935,1.044,1.013,0.867,0.934,0.805,1.38,1.152,0.903,1.015,1.152,0.92,0.977,1.096,0.867,0.928,1.058,0.927,0.843,1.078,0.98,1.048,0.993,1.265,1.094,0.855,1.015,0.771,0.984,1.11,0.921,0.949,0.932,1.031,1.046,1.123,0.902,0.964,1.229,0.946,0.949,0.911,1.049,0.932,0.979,0.952,1.05,1.019,0.977,1.007,0.95,0.861,0.998 +NM_016484,0.681,0.985,0.95,0.698,0.995,1.413,0.571,0.847,0.985,0.835,1.409,1.231,0.858,0.64,0.985,1.997,0.686,0.958,1.324,1.204,0.52,0.771,0.996,1.166,0.506,0.825,1.087,1.055,0.382,1.266,0.878,1.206,2.013,1.603,0.283,1.061,1.189,1.007,1.186,0.392,1.043,1.051,0.752,1.07,0.909,1.198,1.254,0.839,1.004,0.639,1.082,1.048,0.938,1.331 +NM_016485,0.72,0.828,1.217,0.712,0.912,1.222,0.631,0.618,1.288,0.939,1.366,0.922,0.735,0.715,1.001,1.761,0.876,0.943,1.099,1.03,0.409,0.945,1.114,0.999,0.572,0.797,1.317,0.908,0.55,1.173,1.015,0.877,0.991,1.121,0.282,0.709,1.226,1.044,1.151,0.888,1.091,1.015,0.807,0.762,1.03,1.207,1.169,0.871,1.309,0.815,1.031,0.925,0.864,1.12 +NM_016487,0.759,1.324,1.063,0.789,0.926,1.391,0.801,0.673,0.996,0.955,1.023,0.719,0.609,0.695,1.123,1.93,1.009,0.96,0.995,1.094,0.612,0.865,1.339,0.866,0.784,0.781,1.244,0.774,0.804,1.393,0.948,1.063,1.412,1.507,0.438,0.76,1.077,0.892,1.656,0.795,1.035,1.202,0.689,0.872,0.835,1.052,0.903,0.805,1.195,0.713,1.237,0.559,0.605,1.698 +NM_016489,0.451,0.81,0.703,0.662,0.593,2.084,1.297,0.445,0.827,0.429,2.13,0.497,0.572,0.335,1.058,2.439,0.754,0.783,0.606,1.448,0.369,0.367,1.827,0.465,0.477,0.335,1.208,0.478,0.486,1.746,0.455,0.689,2.43,1.496,0.369,1.554,1.909,0.456,1.589,0.752,1.508,1.154,1.134,1.439,0.573,2.077,1.948,0.303,2.501,0.747,1.351,1.803,0.948,2.389 +NM_016490,1.059,0.96,1.075,0.94,1.172,0.85,0.949,1.139,1.015,1.101,1.028,1.189,1.145,0.929,1.013,0.924,1.005,1.069,1.436,0.925,1.069,1.081,1.148,0.984,0.894,0.899,1.178,1.059,1.778,0.997,1.07,0.99,1.174,0.888,1.161,1.053,0.952,1.133,0.867,1.017,0.955,1.057,1.003,0.934,0.912,1.007,1.024,1.052,0.999,1.086,0.978,1.05,1.377,0.984 +NM_016491,0.629,1.101,1.284,0.665,1.073,0.946,0.664,0.378,1.069,1.24,0.916,1.231,0.654,0.479,0.686,1.176,0.865,1.159,1.138,1.091,0.417,0.728,1.667,1.235,0.509,0.942,1.07,0.916,0.408,1.109,0.702,1.227,2.036,1.046,0.0834,0.966,0.884,0.933,1.328,0.658,1.203,0.918,0.818,1.144,1.254,0.986,1.075,0.784,1.348,0.84,1.045,1.055,0.997,2.081 +NM_016494,0.623,1.064,1.088,0.66,1.005,1.132,0.744,0.625,1.184,1.074,1.072,1.221,0.731,0.508,0.758,1.291,0.904,1.14,0.919,1.121,0.342,0.891,1.011,1.171,0.754,0.831,1.101,1.134,0.566,1.329,0.8,1.411,1.331,1.127,0.411,0.913,1.053,0.931,1.186,1.112,1.124,0.984,0.693,1.221,1.141,1.028,1.388,1.055,0.978,0.731,0.954,0.898,0.759,1.45 +NM_016495,0.684,0.834,1.184,0.78,0.898,1.359,0.824,0.782,1.439,0.916,1.126,1.137,0.752,0.743,1.036,2.298,0.843,0.983,1.39,1.303,0.661,0.971,1.218,1.084,0.576,0.985,1.301,0.807,0.643,1.15,1.096,0.741,3.938,1.284,0.43,0.677,1.181,0.983,1.328,0.995,1.036,0.788,0.765,1.194,0.877,1.181,1.247,0.885,0.995,0.696,1.114,0.853,1.005,0.965 +NM_016496,0.8,1.157,1.366,0.662,0.985,1.246,0.634,1.106,1.374,1.121,1.427,1.075,1.008,0.83,0.895,1.65,0.943,1.184,1.41,1.19,0.687,0.998,1.095,1.008,0.549,1.175,1.035,1.099,0.69,1.112,1.182,1.319,0.838,1.557,0.923,0.588,1.002,0.884,1.133,0.823,1.254,1.037,0.485,0.823,0.919,0.98,0.895,1.423,0.631,0.984,0.967,0.542,0.951,1.041 +NM_016497,0.727,0.847,1.416,0.84,1.003,0.597,0.416,0.254,1.436,1.262,1.051,0.429,0.474,0.684,0.973,1.479,0.838,1.139,1.485,0.806,0.679,0.433,1.348,0.907,0.526,0.918,1.407,0.997,0.253,1.171,0.957,1.17,2.243,1.456,0.136,1.091,0.912,0.812,1.25,0.748,1.454,1.04,0.73,1.517,1.225,0.933,1.256,0.579,1.043,0.739,0.975,0.94,1.201,1.547 +NM_016498,0.455,1.07,0.863,0.754,0.86,1.711,0.821,0.632,1.035,1.111,1.006,0.988,0.611,0.653,0.898,1.82,0.713,0.994,0.949,1.13,0.402,0.837,1.344,1.541,0.826,0.792,0.979,1.019,0.542,1.545,0.949,1.281,1.47,1.446,0.59,0.92,1.226,0.744,1.312,1.227,0.981,1.01,0.832,0.862,0.818,1.257,1.368,0.826,1.147,0.562,1.291,0.885,0.777,1.54 +NM_016499,0.586,1.801,1.096,0.618,0.853,1.065,0.893,0.663,0.976,0.896,1.048,1.212,0.89,0.59,0.936,1.189,1.078,0.983,0.844,1.561,0.477,0.747,1.284,1.003,0.655,0.73,1.091,0.932,0.606,1.33,0.79,2.383,1.787,1.483,0.327,1.895,0.902,0.802,1.152,1.781,0.995,1.173,0.609,1.792,0.699,0.823,1.158,0.693,0.827,0.607,1.049,0.822,0.691,1.679 +NM_016500,0.478,0.904,1.083,0.549,0.95,1.671,0.629,0.56,1.441,0.979,1.173,0.796,0.703,0.676,1.165,2.175,0.681,0.719,1.323,1.297,0.46,1.137,1.147,1.253,0.365,0.625,1.095,0.892,0.497,1.19,1.096,1.118,1.461,1.159,0.211,0.765,1.177,1.034,1.184,0.523,1.153,1.232,0.735,0.95,0.945,1.405,1.349,0.709,1.256,0.59,1.045,0.733,0.668,1.402 +NM_016501,0.721,1.031,1.019,0.792,0.729,1.004,0.676,0.549,1.011,0.761,1.132,0.716,0.67,0.735,0.975,1.463,0.715,0.781,1.005,1.085,0.59,0.65,1.315,0.983,0.773,0.812,1.105,0.773,0.492,1.055,0.876,1.69,1.655,1.501,0.326,1.251,1.05,0.629,1.29,1.046,0.996,1.232,0.681,1.692,0.987,0.939,0.744,0.676,0.835,0.753,1.086,0.847,0.981,2.168 +NM_016503,1.619,1.929,2.343,1.6179999999999999,2.274,1.8900000000000001,1.842,1.692,2.528,2.17,1.9009999999999998,1.635,1.554,1.779,1.774,2.391,1.942,2.0679999999999996,2.341,1.817,1.5979999999999999,2.2329999999999997,1.9969999999999999,2.202,1.7680000000000002,2.1879999999999997,2.4459999999999997,2.126,1.528,1.6680000000000001,2.004,1.942,3.721,2.0679999999999996,1.879,1.79,1.8450000000000002,2.041,2.3689999999999998,1.7320000000000002,2.357,2.0380000000000003,1.8940000000000001,2.352,2.136,1.705,2.303,2.09,2.269,1.775,1.813,2.013,1.999,2.5919999999999996 +NM_016504,0.561,1.042,0.832,0.901,0.815,1.153,0.532,0.469,1.093,0.895,1.286,0.826,0.786,0.525,0.791,1.546,0.706,1.044,1.051,1.141,0.711,0.996,1.309,1.125,0.913,1.047,0.995,0.776,0.611,1.117,0.713,1.346,0.935,1.389,0.189,1.393,1.098,0.654,1.385,0.701,0.893,1.225,0.889,1.461,0.877,1.155,0.879,0.928,1.239,0.604,0.93,0.897,0.727,1.479 +NM_016505,0.684,1.083,1.189,0.622,0.894,1.119,0.794,0.744,1.003,0.947,0.821,0.898,0.815,0.619,0.824,1.386,0.903,0.941,1.011,1.087,0.603,0.895,1.18,1.002,0.648,0.866,1.093,0.921,0.554,1.138,0.891,1.247,2.387,1.235,0.618,1.162,1.053,0.903,1.413,1.045,1.03,0.991,0.625,1.212,0.9,0.853,1.077,0.886,0.982,0.813,1.076,0.944,0.713,1.63 +NM_016506,1.064,1.026,1.081,1.068,0.964,1.039,0.908,1.029,0.976,1.103,1.126,1.011,1.018,0.991,0.992,0.803,0.967,1.012,0.96,0.968,1.109,0.915,1.032,0.973,1.039,0.93,0.801,1.05,1.087,0.946,1.0,0.923,0.983,1.061,1.012,1.028,0.95,1.0,0.963,1.02,0.896,0.966,1.431,1.222,1.145,0.996,1.037,0.97,0.992,0.931,1.085,0.969,1.038,0.948 +NM_016507,0.734,1.085,1.211,0.834,0.796,1.382,4.286,0.583,0.94,1.037,0.705,0.667,0.613,0.597,0.99,0.956,0.791,0.835,0.879,1.163,0.65,0.829,1.251,0.961,0.856,0.673,1.164,0.808,0.788,1.317,0.844,0.903,1.332,1.589,0.599,0.837,1.555,0.787,2.038,0.853,1.006,2.6,0.761,1.454,0.902,1.035,0.865,0.638,0.842,0.755,2.137,1.044,1.001,2.448 +NM_016508,0.968,0.982,1.018,0.968,1.0,1.034,0.9,1.159,0.93,1.014,0.918,1.044,0.938,0.936,0.851,1.031,1.093,0.95,0.962,1.114,0.997,0.856,0.943,0.951,0.986,0.933,1.101,1.064,0.785,1.049,0.938,1.097,1.054,1.062,1.034,0.839,0.957,0.927,1.021,1.023,1.053,1.014,0.832,0.947,1.118,0.956,0.992,1.004,0.764,0.969,1.05,0.97,0.975,1.007 +NM_016509,1.059,1.0,1.013,1.023,1.108,1.134,0.965,1.012,0.995,1.129,1.029,1.042,0.981,0.891,1.139,0.962,0.957,1.035,1.115,0.967,0.979,1.094,0.908,0.967,1.046,0.981,0.808,0.98,0.883,1.016,1.192,1.066,0.915,1.042,1.053,1.085,0.921,1.017,1.044,0.948,1.042,1.021,0.93,1.208,1.06,0.961,0.963,0.849,0.994,1.019,0.908,0.993,1.008,0.875 +NM_016511,0.894,0.961,0.915,0.863,0.994,0.984,0.811,0.932,0.886,0.982,1.032,1.019,0.884,0.989,0.953,1.046,1.0,0.831,1.003,0.864,1.051,1.019,0.927,1.028,1.003,0.935,1.14,0.971,0.935,1.19,0.98,1.056,1.171,1.218,0.914,1.072,0.858,0.966,1.105,1.308,1.033,1.121,0.8,0.995,1.045,0.913,1.025,0.851,0.821,0.874,1.105,1.067,0.948,0.95 +NM_016518,0.948,0.959,0.881,0.821,0.879,0.937,1.058,0.983,1.109,0.889,0.917,0.997,0.99,0.954,1.282,1.157,0.865,0.962,0.881,0.935,0.883,1.092,1.146,0.82,0.817,0.98,0.966,0.953,1.396,1.045,0.943,0.923,1.174,1.067,0.876,1.154,1.49,0.996,1.055,1.17,1.016,1.088,1.084,0.949,0.94,0.974,1.559,0.962,1.042,0.797,0.872,1.127,0.956,1.096 +NM_016519,1.009,1.058,1.156,1.22,1.089,0.897,1.042,1.202,0.995,1.069,0.999,0.963,1.035,0.969,0.911,1.187,1.111,0.95,0.982,1.039,1.02,0.944,1.104,1.111,1.127,1.056,0.98,0.929,0.936,0.957,0.985,1.001,0.984,0.908,0.997,1.07,1.039,1.026,1.006,1.113,0.924,0.994,1.037,0.968,0.995,1.076,1.001,0.966,1.047,1.014,0.98,0.94,1.091,1.122 +NM_016520,0.716,1.339,1.423,0.64,0.92,0.962,0.596,0.491,1.096,1.031,0.88,1.139,0.715,0.703,1.009,1.069,0.86,0.935,0.958,1.262,0.543,0.866,1.015,1.171,0.606,0.814,1.362,1.058,0.476,1.292,0.823,1.73,1.811,1.341,0.186,0.693,0.98,1.298,1.327,0.958,1.412,1.169,0.516,1.13,1.067,1.062,0.916,0.755,0.891,0.787,0.954,0.836,0.727,2.202 +NM_016521,1.112,0.928,1.047,0.942,0.905,0.946,0.908,1.066,0.931,0.992,1.064,0.907,0.981,1.162,0.951,0.856,0.946,1.006,0.894,1.131,0.994,1.046,0.944,1.054,1.037,0.961,1.138,0.94,0.784,1.025,1.003,1.027,0.89,0.843,1.015,1.154,1.02,1.031,0.909,1.02,0.943,1.053,1.219,0.963,0.94,0.915,1.098,1.03,1.0,0.996,1.01,0.987,1.0,0.881 +NM_016522,0.877,1.08,1.029,0.92,1.005,1.145,0.889,0.934,0.99,0.927,1.035,1.062,0.954,0.813,1.001,0.917,0.979,1.055,1.062,1.026,0.897,0.813,1.159,1.171,0.874,0.929,0.935,0.928,0.765,1.138,0.904,4.434,1.202,1.092,0.981,0.893,0.987,0.91,1.022,1.275,1.148,1.198,0.866,0.979,0.941,0.948,1.082,0.967,1.04,0.952,1.106,1.092,1.057,1.167 +NM_016523,0.965,0.992,0.91,0.979,1.017,0.95,0.88,1.075,0.923,0.975,0.948,1.029,1.067,0.96,0.818,0.913,1.012,1.178,0.987,0.969,1.192,0.89,0.83,1.065,1.062,1.01,1.018,1.136,0.836,1.04,0.917,0.986,0.958,1.153,1.02,0.938,1.102,0.808,1.06,1.078,1.017,0.838,0.913,1.123,0.867,0.928,1.059,0.916,0.946,1.031,0.931,1.121,1.091,1.066 +NM_016524,0.925,1.276,1.2,1.086,0.959,1.252,0.884,0.848,1.126,0.963,1.347,0.881,1.045,0.842,1.152,0.913,1.034,0.879,0.846,1.405,0.776,1.235,0.917,0.835,1.129,1.049,0.948,0.973,0.884,1.82,0.924,4.137,1.135,1.397,0.865,0.872,0.981,0.92,0.948,1.29,0.999,1.157,0.745,1.294,0.896,1.12,1.046,1.13,0.87,0.672,0.988,1.055,0.746,1.068 +NM_016525,1.546,0.527,1.548,0.997,1.346,0.86,0.533,1.603,1.626,1.225,0.815,1.046,1.365,1.046,1.229,1.253,1.221,1.137,1.827,0.655,0.841,1.36,0.758,1.386,0.538,1.506,1.163,1.579,0.464,0.816,1.612,0.778,1.219,1.116,3.134,0.429,0.787,1.492,1.003,0.73,1.505,0.751,0.642,1.07,1.355,0.695,0.894,1.767,0.671,1.379,0.684,0.764,1.626,1.478 +NM_016526,0.41,1.498,0.826,0.723,0.562,1.873,0.795,0.329,0.725,0.628,1.421,0.501,0.402,0.453,0.979,1.531,0.765,1.039,0.706,1.255,0.413,0.557,1.651,0.945,0.686,0.46,0.94,0.573,0.719,2.839,0.629,1.752,1.211,1.972,0.221,2.089,1.413,0.759,1.071,0.927,0.848,1.505,1.014,1.222,0.636,1.732,1.235,0.37,1.366,0.498,1.457,0.736,0.661,1.373 +NM_016527,1.033,0.964,1.061,0.987,1.047,1.013,1.101,0.996,0.961,1.034,1.001,1.111,0.942,0.941,0.915,1.11,0.958,0.963,1.083,0.994,1.022,1.006,0.993,0.868,1.016,0.903,1.025,0.931,1.018,1.06,0.868,0.892,1.087,0.957,1.044,1.061,1.168,1.192,1.03,1.078,1.049,1.056,1.28,0.974,0.951,1.076,1.068,1.064,0.998,1.176,0.991,0.922,0.98,0.948 +NM_016529,1.08,1.043,1.007,1.091,0.9,1.046,1.238,0.963,0.982,1.069,1.061,0.978,0.941,0.847,0.929,1.002,1.045,1.024,0.95,0.963,1.077,0.912,1.049,0.861,0.968,1.0,0.898,1.016,1.229,1.117,0.943,1.001,0.983,1.031,0.97,1.032,0.909,0.981,1.029,1.019,0.907,1.056,1.39,1.083,1.013,0.983,1.027,1.21,0.993,0.988,0.9,1.134,0.896,1.024 +NM_016530,0.815,1.072,1.003,0.98,0.991,1.043,1.013,0.943,1.053,0.744,0.887,0.94,0.832,1.05,0.913,1.243,0.922,0.937,0.956,1.062,0.846,0.92,1.232,0.947,0.995,0.755,1.074,0.887,0.968,0.909,0.936,1.238,1.23,1.114,0.848,0.912,1.141,1.028,1.229,1.33,0.898,1.027,1.004,1.201,0.926,0.94,0.958,0.851,0.963,0.871,0.958,1.034,0.984,1.345 +NM_016533,0.861,1.086,1.025,0.709,1.198,0.83,0.874,0.753,1.056,1.225,0.8,1.664,0.777,0.771,0.856,1.007,0.802,1.036,1.202,1.027,0.737,0.906,0.935,1.042,0.606,1.436,1.022,1.353,0.753,0.985,0.922,1.37,2.094,1.027,0.63,2.586,0.877,0.851,1.648,1.613,1.148,0.996,0.919,2.131,0.982,0.887,1.263,0.772,0.893,0.932,0.929,1.009,1.282,1.341 +NM_016535,1.056,1.154,1.179,0.878,0.843,0.957,0.579,0.853,0.913,0.893,1.407,0.974,1.126,1.046,0.9,1.13,0.896,0.987,1.793,0.891,0.755,0.955,1.313,0.996,0.71,1.325,1.054,0.902,0.464,1.277,1.007,0.936,1.483,1.507,0.833,0.726,0.903,1.12,1.118,1.085,0.874,1.074,0.535,1.146,0.958,0.682,0.831,1.165,0.656,1.12,0.944,0.987,1.519,1.204 +NM_016536,0.964,1.02,1.022,0.811,1.11,1.054,1.035,0.988,0.94,0.889,0.861,1.027,1.056,0.977,1.037,0.903,1.022,1.075,1.064,1.043,1.018,1.131,0.965,0.94,0.891,1.02,0.982,1.022,0.745,1.06,1.08,0.931,1.261,1.163,0.903,1.017,1.076,0.958,1.144,0.914,1.109,0.872,1.11,0.908,0.96,0.977,0.956,0.864,0.98,0.887,0.992,1.18,0.941,1.031 +NM_016538,0.88,0.891,1.141,0.847,1.193,1.273,0.659,0.949,1.636,0.966,0.9,0.981,0.705,0.984,0.933,1.176,0.979,1.04,1.581,0.931,0.688,1.016,0.736,1.276,0.619,1.396,1.112,1.306,0.531,1.474,1.324,0.864,0.765,1.57,1.116,0.991,1.008,1.13,1.174,0.586,1.161,0.771,0.785,1.127,0.99,1.069,1.202,1.208,0.862,0.815,0.733,0.511,1.007,1.171 +NM_016539,0.519,1.011,0.934,0.772,0.778,1.775,0.829,0.338,0.809,1.0,1.755,0.896,0.486,0.448,1.444,2.189,0.774,1.121,0.859,1.373,0.445,0.477,2.134,0.81,0.617,0.595,1.094,0.631,0.609,1.847,0.566,1.156,1.6,1.201,0.189,2.344,1.737,0.756,1.671,1.475,0.874,1.306,1.459,1.55,0.955,2.23,1.317,0.568,2.311,0.667,1.426,0.762,0.792,1.202 +NM_016540,1.016,1.062,1.077,1.042,0.958,0.955,0.924,0.961,0.989,0.821,0.982,1.122,0.941,1.03,1.004,1.016,0.938,0.895,0.973,0.966,0.908,1.015,0.942,0.903,1.013,1.001,1.109,0.893,0.908,1.023,0.964,1.151,1.122,1.021,0.823,1.103,1.045,0.982,1.09,1.112,0.877,0.964,0.95,0.989,0.938,0.958,1.127,1.099,1.031,0.913,1.163,1.125,0.977,0.988 +NM_016541,1.018,0.889,1.051,0.925,1.008,0.925,1.201,1.003,0.945,0.936,1.038,1.072,1.165,0.808,0.894,0.876,1.083,1.147,1.032,0.922,0.95,1.03,0.885,0.966,0.952,0.916,1.052,1.124,1.082,0.911,0.957,1.035,0.935,1.08,0.917,0.883,0.884,1.06,1.02,0.828,0.974,1.074,1.137,1.047,1.136,1.037,0.976,1.023,1.083,1.05,0.983,1.014,1.083,0.961 +NM_016542,0.72,0.917,1.224,0.864,0.864,1.291,0.818,0.674,1.12,0.929,1.255,0.7,0.738,0.73,1.018,2.238,0.724,0.976,1.192,1.012,0.628,0.813,1.26,0.923,0.656,0.736,1.15,0.898,0.624,1.011,0.94,0.831,1.836,1.172,0.483,1.143,1.271,0.821,1.66,0.71,0.906,0.979,0.813,1.529,1.098,1.346,0.872,0.799,1.401,0.853,1.237,0.853,1.003,1.388 +NM_016543,1.029,0.933,1.007,1.037,1.032,0.922,1.196,1.001,0.89,0.994,0.983,0.989,1.062,0.965,0.908,0.89,1.063,1.013,0.847,0.925,0.923,0.945,0.938,0.947,0.956,1.02,1.019,0.919,0.889,0.971,0.971,1.006,0.927,1.096,1.056,0.894,0.946,0.99,1.057,1.081,0.899,0.884,0.814,0.983,1.003,0.929,0.999,1.0,1.033,1.043,0.92,0.892,0.918,1.081 +NM_016544,1.065,1.002,1.094,1.01,0.917,0.995,0.943,0.863,1.097,1.067,0.972,0.82,0.922,0.871,1.078,0.995,1.056,0.838,0.751,1.148,0.817,0.977,1.062,1.061,1.039,0.935,1.163,1.108,0.818,1.138,1.141,1.304,1.501,1.14,0.894,0.843,0.878,1.0,0.915,0.96,1.001,1.122,0.915,0.846,0.992,1.07,0.963,0.84,1.015,0.915,1.025,0.863,0.962,1.24 +NM_016545,1.441,0.564,1.417,0.835,1.394,0.692,0.583,0.888,1.957,1.387,0.732,1.043,0.971,1.13,1.329,1.037,1.422,1.148,2.011,0.75,1.004,1.271,1.085,1.579,0.408,1.687,1.65,1.489,0.526,0.705,2.074,0.689,1.441,0.607,2.039,0.896,0.669,1.56,0.85,1.051,1.406,0.975,0.591,0.917,1.447,0.771,1.208,1.422,0.709,1.186,0.85,0.886,1.107,0.788 +NM_016547,1.112,0.895,0.87,1.075,0.871,1.051,1.245,0.922,1.114,0.939,1.016,0.891,0.97,0.963,0.979,1.082,0.965,0.924,0.928,1.082,0.997,0.876,0.891,0.903,0.894,0.885,1.043,0.955,0.867,1.106,0.951,0.938,1.016,1.18,1.19,1.142,1.022,1.003,0.909,0.935,1.193,1.185,0.945,1.073,0.891,1.056,1.115,0.958,1.081,0.977,1.1,1.029,1.101,1.104 +NM_016548,1.081,1.148,0.865,1.126,0.955,1.045,1.004,0.987,0.886,1.053,1.048,1.09,0.939,1.029,0.902,1.101,0.969,0.889,1.036,1.027,1.069,0.879,1.008,0.986,1.026,1.051,1.031,1.011,1.032,0.962,0.941,0.952,1.002,1.099,1.11,0.996,1.058,1.064,0.999,0.981,1.088,1.133,0.93,0.81,0.934,1.054,0.998,1.011,0.966,1.019,0.987,1.017,0.863,0.984 +NM_016551,0.71,0.836,0.919,0.704,0.88,1.418,0.574,0.472,0.846,0.821,1.211,0.871,0.621,0.511,0.853,1.913,1.092,1.218,1.455,0.838,0.515,0.607,1.266,1.128,0.592,0.678,1.544,0.687,0.383,1.454,0.711,0.813,3.371,1.587,0.306,0.902,1.443,1.036,1.594,0.46,0.957,1.275,0.605,12.36,0.963,1.201,1.177,0.623,1.042,0.901,1.211,0.798,0.986,1.116 +NM_016552,0.967,0.977,1.035,1.103,1.035,1.063,1.001,1.3,1.012,1.008,0.825,0.973,0.991,1.146,0.832,1.005,0.981,1.178,1.111,0.922,0.978,1.15,0.928,1.119,1.148,0.857,0.923,0.787,1.028,1.032,0.906,1.054,1.014,1.072,1.238,0.925,1.081,0.91,0.88,0.975,1.086,0.9,1.428,1.038,1.066,0.925,0.919,1.087,1.08,0.998,0.999,0.946,0.912,1.013 +NM_016556,0.961,1.025,1.079,1.104,0.909,0.956,0.968,1.103,0.865,1.04,1.066,0.764,1.004,0.952,0.977,0.991,0.92,0.982,0.984,0.948,0.943,1.084,0.861,1.002,0.888,0.915,1.07,1.057,1.178,1.073,1.154,1.121,1.169,0.964,1.058,0.999,1.025,0.961,0.93,1.17,0.84,1.024,1.1,0.972,1.058,0.877,1.098,0.914,0.974,1.07,1.029,1.036,0.945,1.033 +NM_016557,1.005,1.134,1.107,1.189,0.842,1.104,1.186,1.144,0.868,1.046,0.942,0.926,0.997,0.991,1.067,1.166,1.011,1.131,1.013,0.78,1.109,1.018,1.102,0.937,1.053,0.866,1.066,0.897,1.163,0.983,0.88,0.844,1.071,0.839,1.209,0.863,1.145,0.945,0.998,0.884,1.027,0.95,0.799,1.069,1.07,0.88,0.887,1.166,1.109,0.981,0.859,1.09,0.759,0.934 +NM_016558,0.967,0.941,1.264,1.132,0.863,0.895,0.9,0.737,1.098,1.167,0.872,0.803,0.754,0.924,0.892,1.094,0.962,0.967,1.238,0.91,0.889,0.797,1.198,1.052,0.822,0.949,0.886,0.765,0.917,1.085,1.098,1.318,1.134,1.159,1.014,0.857,0.98,0.93,1.121,1.006,0.989,1.077,0.872,1.29,0.975,0.93,0.924,1.01,0.9,0.851,1.079,0.923,1.015,1.563 +NM_016559,0.899,1.091,1.06,0.963,1.003,1.034,0.993,0.874,1.031,1.081,0.963,1.16,0.783,0.783,0.9,1.061,0.742,1.03,0.988,1.11,0.96,1.019,1.152,0.944,1.018,1.021,1.27,0.917,1.042,1.049,1.012,1.008,0.844,0.881,1.136,0.873,1.115,1.073,0.975,0.976,0.988,0.942,0.934,1.169,1.079,1.061,0.875,0.966,1.005,0.961,1.04,0.957,1.11,1.068 +NM_016561,0.531,1.236,0.837,0.833,0.638,1.919,0.91,0.596,0.648,0.656,1.465,0.702,0.656,0.672,0.959,2.111,0.638,0.955,0.838,1.123,0.649,0.714,1.769,0.761,0.721,0.665,0.667,0.611,0.736,1.667,0.615,1.398,1.871,1.573,0.468,0.945,1.307,0.664,1.678,0.993,0.746,1.514,0.945,1.274,0.552,1.021,0.949,0.546,1.39,0.628,1.227,0.855,0.757,1.147 +NM_016562,0.991,0.953,1.024,0.956,1.155,1.051,0.978,0.957,1.067,0.944,0.954,0.926,1.027,1.112,0.779,1.046,1.021,1.021,1.242,1.052,0.907,0.954,0.903,1.073,0.971,1.114,0.961,1.022,0.907,1.015,0.959,1.083,1.119,0.91,0.987,0.94,0.997,0.922,1.026,0.935,1.032,1.126,0.903,1.023,1.058,1.004,0.918,0.883,1.022,0.826,1.028,1.073,1.053,1.069 +NM_016563,0.763,1.159,0.958,0.761,0.752,1.106,1.004,0.816,0.807,0.987,1.117,0.792,0.79,0.749,1.026,1.151,1.421,0.832,0.892,0.912,1.007,0.843,1.238,0.766,0.99,0.833,0.985,1.343,0.941,1.662,0.794,3.091,0.928,1.56,0.888,0.889,0.878,1.13,1.514,1.599,1.761,1.595,0.869,0.962,0.756,0.975,0.978,0.78,0.901,1.097,1.191,1.345,0.932,0.969 +NM_016564,0.995,0.992,1.113,0.853,0.911,0.947,1.158,0.98,1.017,0.852,0.999,0.919,1.016,0.951,1.027,1.023,1.006,0.857,0.879,0.893,0.946,1.034,1.157,1.016,1.155,0.867,0.98,0.992,1.226,1.564,1.06,1.095,0.938,1.01,0.744,1.096,1.042,0.978,1.106,1.093,2.005,1.001,1.089,0.97,0.929,0.911,0.973,1.002,0.963,1.094,1.03,1.05,1.205,1.135 +NM_016565,0.702,1.338,0.87,0.956,0.859,1.19,0.838,0.558,0.993,1.174,0.859,0.99,0.951,0.709,0.808,1.082,0.824,1.016,1.055,0.839,0.64,0.957,1.05,1.029,0.806,0.992,1.085,0.784,0.599,1.077,0.826,1.319,1.595,1.224,0.505,1.43,1.002,0.86,1.485,0.906,0.925,1.224,0.803,1.293,1.148,0.86,0.773,1.121,1.261,0.898,1.084,0.952,0.965,1.52 +NM_016567,0.766,1.055,1.07,0.984,0.905,1.03,0.884,0.678,1.091,1.055,1.1,0.999,0.697,0.804,0.97,1.451,0.943,0.946,1.096,0.991,0.803,0.872,1.123,0.927,0.884,0.865,0.998,0.959,0.768,0.965,0.965,1.501,1.966,1.165,0.688,1.225,1.011,0.932,1.284,0.893,1.061,1.068,0.872,1.586,0.909,1.006,1.066,0.7,1.297,0.891,1.06,1.001,0.988,1.131 +NM_016568,1.038,1.005,0.909,0.936,1.022,0.951,0.959,1.151,1.08,0.863,1.171,1.164,1.088,1.089,0.934,0.936,0.922,1.018,0.943,0.943,0.987,0.829,1.045,1.001,0.873,1.037,0.983,1.049,0.922,0.977,0.972,0.924,1.137,0.979,0.996,1.008,1.064,0.919,1.091,1.004,1.125,0.933,0.815,0.876,1.031,0.991,1.124,1.097,1.089,0.966,1.121,0.903,0.881,1.076 +NM_016569,0.698,1.722,0.72,0.988,0.735,2.054,0.935,0.613,0.647,0.659,1.887,0.715,0.645,0.645,1.741,1.856,0.681,1.329,0.649,2.033,0.606,0.618,1.907,0.756,0.843,0.668,0.716,0.67,0.693,1.837,0.545,1.197,1.615,1.726,0.57,0.942,3.049,0.784,1.578,1.962,0.801,2.444,1.34,1.748,0.704,2.449,1.088,0.587,2.67,0.705,1.652,0.847,0.582,0.988 +NM_016570,0.61,1.02,1.326,0.596,1.005,1.085,0.794,0.902,1.42,1.013,0.788,0.951,0.829,0.771,0.953,1.477,0.846,0.895,1.179,0.987,0.554,0.818,1.272,1.21,0.614,0.557,1.498,1.134,0.615,1.0,1.224,1.121,3.418,1.181,0.375,0.904,0.948,0.991,1.223,0.923,1.204,1.251,0.49,0.777,1.093,0.915,1.098,0.592,0.777,0.783,1.022,0.822,0.813,1.821 +NM_016572,0.946,1.062,1.027,0.976,0.897,1.161,0.778,0.799,1.018,0.851,1.076,0.963,0.949,0.901,0.93,0.92,0.94,0.828,0.995,1.062,0.954,0.983,1.051,0.987,0.907,0.994,1.17,0.971,0.733,1.087,0.984,1.579,1.597,1.093,0.846,1.065,0.83,0.972,1.006,1.071,0.946,1.019,0.738,1.371,0.959,0.892,0.928,0.866,1.052,1.042,0.932,0.782,0.954,1.289 +NM_016573,0.952,0.892,0.86,1.094,0.926,1.524,1.027,0.748,0.841,0.804,1.064,0.725,0.832,0.715,0.932,1.266,0.9,1.017,1.012,0.982,0.87,1.02,1.245,0.93,1.104,1.057,0.917,0.729,1.234,1.364,0.898,0.875,1.212,1.559,1.202,0.855,0.983,0.821,2.062,1.163,0.831,1.116,0.811,1.868,0.938,0.826,0.773,1.556,0.937,0.802,1.034,1.019,0.911,1.28 +NM_016574,1.016,1.022,1.013,1.032,1.19,0.802,0.951,0.851,1.238,1.087,0.8,1.184,0.972,0.894,0.942,0.984,0.952,0.941,1.037,0.948,1.041,1.032,1.032,1.009,0.895,0.89,0.777,1.008,1.003,0.852,0.724,1.031,1.049,0.824,1.116,1.022,1.077,1.238,0.976,0.928,0.801,1.07,0.948,1.293,0.949,1.172,1.095,0.772,0.99,0.989,0.923,0.974,1.02,1.152 +NM_016576,0.484,1.15,1.125,0.73,0.674,1.592,0.668,0.58,0.908,0.793,1.533,0.634,0.669,0.616,1.236,2.567,0.843,0.98,1.107,1.138,0.62,0.772,1.429,0.941,0.555,0.572,1.142,0.602,0.465,1.373,1.002,1.124,1.611,1.645,0.323,0.464,1.407,0.973,0.943,0.748,0.838,1.408,0.57,1.089,0.694,1.336,1.045,0.51,1.046,0.581,1.238,0.649,0.73,1.141 +NM_016577,1.095,1.148,0.748,1.039,1.278,1.566,0.914,0.628,1.264,1.028,1.106,0.974,0.931,0.924,0.766,0.9,0.97,1.158,0.727,0.944,0.604,1.031,0.787,1.045,0.9,1.029,0.775,1.2,1.128,1.893,1.163,1.065,0.857,1.777,1.249,0.87,0.977,0.985,1.774,0.883,0.954,1.188,0.808,0.788,0.821,1.12,0.998,1.222,0.958,0.945,0.931,0.769,0.854,1.03 +NM_016578,0.843,1.031,1.018,0.866,0.969,1.046,0.944,0.763,1.06,0.785,0.91,0.925,0.78,0.815,0.81,0.949,0.898,0.841,0.903,0.875,0.72,0.769,1.127,0.9,0.89,0.831,1.192,1.023,0.725,1.1,0.89,1.118,1.527,1.058,1.199,0.955,0.947,1.027,1.265,0.89,1.033,1.158,0.884,1.0,0.829,1.006,1.042,0.915,0.977,0.906,0.947,0.811,0.885,1.018 +NM_016579,0.661,1.293,0.595,0.991,0.649,0.907,1.047,0.655,0.711,0.775,1.021,0.672,0.713,0.603,0.798,1.629,0.611,0.815,0.768,0.742,0.696,0.664,1.695,0.85,1.216,0.724,0.815,0.617,0.686,1.429,0.626,1.113,2.005,2.162,0.597,1.799,1.147,0.661,2.669,1.474,0.698,1.2,0.637,1.493,0.689,1.057,0.832,0.649,1.159,0.816,1.168,0.979,0.799,1.857 +NM_016580,0.976,0.947,0.971,0.933,0.761,0.894,0.984,0.847,0.895,0.98,0.835,1.04,0.932,0.812,1.118,1.022,1.0,1.013,1.096,1.055,0.987,0.97,0.941,0.868,1.04,0.897,1.012,0.872,0.887,1.055,1.047,1.208,1.035,1.12,0.941,0.794,1.022,0.876,1.088,1.349,0.845,1.097,0.815,0.993,1.072,0.996,1.013,0.918,0.861,0.947,0.993,1.081,1.016,1.003 +NM_016581,0.741,1.27,0.604,1.01,0.659,1.376,0.727,0.618,0.776,0.721,1.323,0.809,0.818,0.512,0.696,1.112,0.781,0.895,0.964,0.968,0.881,0.832,1.827,0.89,1.542,0.939,0.981,0.706,0.552,1.699,0.65,1.286,1.052,1.595,0.452,1.128,1.338,0.834,1.998,0.874,0.692,1.403,1.016,1.475,0.631,0.939,0.753,0.751,1.243,0.817,0.893,0.918,0.644,1.607 +NM_016582,0.836,1.184,0.957,0.778,0.686,1.248,1.603,0.537,0.72,0.743,0.734,0.58,0.505,0.553,0.8,1.057,1.049,1.043,0.745,0.746,0.843,0.552,1.246,0.788,1.187,0.932,0.858,0.73,0.737,1.424,0.636,2.718,1.158,1.685,0.547,0.802,1.152,0.694,2.208,1.594,0.671,1.446,0.607,1.155,0.915,0.687,0.629,0.751,0.688,0.692,0.982,1.719,1.414,2.83 +NM_016583,1.059,0.995,1.045,0.805,0.976,1.008,1.015,1.142,0.85,0.905,0.962,1.13,1.019,0.848,1.008,0.935,0.997,0.872,1.075,0.928,1.002,0.883,0.946,0.992,1.047,1.025,1.004,0.94,0.778,1.099,1.069,1.524,0.997,0.979,0.914,0.964,1.001,0.953,1.073,1.194,1.003,1.014,1.125,1.051,1.025,0.919,0.963,1.06,1.01,0.947,1.021,0.895,1.129,1.337 +NM_016584,1.551,0.778,1.169,1.287,5.777,0.753,0.564,2.008,2.774,0.946,0.94,1.308,3.403,0.773,0.855,1.029,3.741,1.306,1.992,0.708,0.68,1.48,0.994,1.394,0.682,0.703,7.023,1.189,0.769,0.821,1.113,1.029,2.107,0.692,1.566,0.705,0.763,1.006,0.865,3.097,2.178,0.908,0.72,0.956,1.123,0.771,1.34,1.017,0.936,2.506,0.973,1.206,1.672,1.65 +NM_016585,1.165,1.083,1.057,1.016,1.043,0.929,1.111,1.051,1.09,1.041,1.096,0.962,0.974,1.087,1.208,1.068,0.925,0.959,1.185,0.974,0.945,0.954,1.021,0.914,0.981,1.066,1.05,0.987,1.539,0.997,0.966,0.999,1.076,1.057,1.035,1.153,0.975,1.093,0.952,1.11,1.002,0.987,1.429,1.007,0.995,1.006,0.984,0.923,1.083,0.972,1.0,0.92,1.063,0.907 +NM_016587,0.581,0.807,0.966,0.716,0.639,1.198,0.753,0.55,1.056,0.857,1.379,0.883,0.737,0.616,0.818,1.505,0.734,1.149,1.099,0.954,0.707,0.707,1.54,0.983,0.677,0.485,1.098,0.592,0.652,1.541,0.73,1.822,2.916,1.218,0.34,1.759,1.204,0.641,1.813,1.583,0.894,1.134,0.941,2.525,0.722,0.888,1.329,0.477,1.289,0.585,1.069,1.571,1.052,1.954 +NM_016588,0.926,1.255,0.88,0.93,0.973,1.117,0.868,0.901,0.869,0.983,1.019,1.021,1.001,0.888,0.993,1.027,0.991,0.912,1.021,1.053,0.978,0.99,1.298,0.976,0.936,0.829,0.844,1.361,0.912,1.198,1.004,1.13,1.108,1.401,0.853,0.925,0.906,0.986,1.229,0.924,1.123,1.821,1.199,0.814,0.937,1.063,1.042,0.962,1.301,0.952,1.055,1.009,0.906,0.998 +NM_016589,0.568,1.109,1.139,0.656,0.845,1.521,0.515,0.656,1.105,0.929,1.154,1.11,0.63,0.633,1.002,1.749,0.824,0.727,1.504,1.018,0.574,0.657,0.93,1.122,0.546,0.642,1.158,0.665,0.27,1.443,1.031,1.263,2.645,1.482,0.168,0.661,1.117,0.901,1.216,0.525,1.046,1.108,0.607,1.14,0.797,1.112,1.035,0.604,0.964,0.645,1.105,0.675,1.189,2.197 +NM_016590,1.004,0.926,0.948,0.925,1.206,0.958,0.926,1.202,0.996,0.866,1.04,0.978,1.1,0.824,1.166,1.084,1.026,1.002,1.027,0.898,1.01,0.996,0.984,0.874,1.007,0.937,1.014,1.031,0.858,0.966,1.038,1.009,1.04,1.071,1.049,0.976,0.909,1.012,1.114,0.907,0.896,1.136,1.035,0.896,0.985,0.885,1.024,1.0,1.023,0.947,0.975,1.003,0.88,1.043 +NM_016591,0.922,1.123,0.998,1.046,1.048,1.026,0.949,1.0,1.093,1.107,0.987,0.981,0.999,0.982,0.932,1.091,1.025,1.071,1.052,0.958,0.973,1.041,1.03,0.976,0.958,1.148,1.047,1.086,0.92,1.146,1.046,1.138,1.129,0.946,1.078,1.151,1.155,0.927,1.037,0.986,0.913,1.143,1.288,1.031,1.018,0.906,1.044,0.888,0.975,1.006,0.831,0.956,1.083,1.017 +NM_016592,1.027,1.091,1.13,1.152,0.921,1.036,1.016,0.947,1.019,1.065,1.047,1.043,1.316,1.156,0.94,0.977,0.883,0.907,1.141,0.918,1.034,0.998,0.981,1.088,1.067,0.953,0.914,1.099,1.045,1.034,0.948,0.986,0.927,0.872,1.049,1.061,0.915,0.905,0.964,0.9,1.025,0.989,0.937,1.061,0.982,1.252,1.011,1.062,0.953,1.045,1.064,1.0,0.921,0.891 +NM_016593,1.027,0.923,1.513,0.884,1.273,0.962,0.874,0.845,1.043,1.319,1.03,1.195,0.91,1.114,1.002,1.279,1.105,1.141,1.257,0.964,0.97,1.006,1.049,0.908,0.903,1.072,1.115,0.998,0.947,0.914,0.962,0.96,1.139,0.923,0.988,0.973,0.846,1.046,0.977,0.957,0.985,1.136,0.848,1.213,0.748,0.825,0.989,1.122,1.076,1.077,0.993,1.042,0.94,0.967 +NM_016594,0.325,1.791,0.53,1.065,0.411,1.447,1.62,0.266,0.522,0.569,1.513,0.492,0.428,0.302,0.708,1.474,0.42,0.963,0.398,1.395,0.281,0.357,2.079,0.576,1.438,0.343,0.496,0.434,0.261,1.946,0.369,2.168,0.361,1.731,0.151,2.011,1.268,0.524,1.903,0.682,0.555,3.041,0.617,1.623,0.557,1.339,0.903,0.333,1.252,0.407,2.44,0.993,0.528,1.522 +NM_016596,0.884,1.066,0.966,0.936,1.107,1.04,0.962,0.85,0.932,1.122,0.988,1.017,0.927,1.02,0.8,0.94,1.029,1.055,0.704,0.949,0.98,1.001,1.094,1.032,0.839,0.928,0.931,0.881,1.248,1.023,0.892,1.037,0.884,0.972,1.126,0.875,0.953,1.031,1.0,1.091,1.07,0.919,1.012,1.12,1.145,0.894,0.859,1.095,0.963,1.013,1.097,1.022,0.972,0.973 +NM_016598,0.625,1.434,0.949,0.956,0.714,2.101,0.978,0.58,0.973,0.807,2.42,0.824,0.62,0.781,1.276,2.582,0.668,1.056,1.427,1.202,0.673,0.601,1.532,0.746,0.943,0.847,0.901,0.8,0.757,2.503,0.844,0.914,0.96,2.812,0.185,0.699,1.672,0.889,1.744,0.558,0.918,1.813,0.92,1.136,0.834,1.672,0.95,0.644,1.723,0.755,1.466,0.746,0.798,1.556 +NM_016599,0.917,1.037,1.048,0.921,1.032,0.935,0.911,0.902,1.139,0.948,1.07,1.002,1.042,1.197,0.979,1.013,0.973,0.861,1.059,1.008,0.92,0.999,1.059,0.922,0.989,0.971,1.135,1.057,1.28,1.149,0.988,1.08,1.018,0.983,1.062,1.132,1.144,1.001,0.961,0.987,1.175,0.891,1.145,0.87,1.057,0.789,0.936,1.026,1.004,1.043,0.837,0.909,1.135,1.075 +NM_016601,1.082,0.94,0.983,0.866,0.882,1.066,1.176,1.072,1.013,0.904,0.909,1.028,0.997,0.922,1.233,1.043,1.01,1.063,1.197,0.986,0.901,1.021,1.125,1.024,0.932,1.0,0.926,0.915,1.147,0.941,1.048,0.976,1.3,0.967,1.117,1.0,0.987,0.98,1.061,1.065,0.966,1.001,1.045,1.189,1.006,0.925,0.911,1.027,1.05,1.072,1.046,0.967,0.973,1.042 +NM_016602,0.974,1.08,0.881,1.075,0.999,0.932,0.959,1.101,1.006,1.201,1.168,0.929,1.0,1.284,1.146,1.076,0.862,1.066,0.798,0.995,0.935,0.992,1.044,0.931,1.183,1.102,1.093,1.104,1.117,1.124,0.932,0.872,0.94,1.024,0.84,0.932,1.017,1.072,1.058,0.944,0.904,1.062,1.125,0.972,0.812,1.24,0.897,0.976,1.004,1.059,0.901,0.976,0.948,1.073 +NM_016603,0.796,1.141,1.29,0.867,0.847,1.411,0.896,0.833,0.974,0.887,1.107,0.873,0.935,0.793,1.066,1.205,0.965,0.936,0.931,1.481,0.759,0.938,1.555,0.919,0.86,0.659,1.084,0.995,0.995,1.413,0.971,3.238,2.508,1.98,0.594,0.721,1.183,0.878,1.243,0.841,1.225,1.72,0.729,0.77,0.921,0.895,0.755,0.807,0.801,0.846,1.121,0.884,0.839,1.918 +NM_016604,0.885,0.949,1.375,0.854,0.899,0.937,0.76,0.483,0.992,0.772,0.994,0.636,0.56,0.811,1.016,1.269,0.778,0.961,1.183,1.125,0.528,0.889,1.335,0.728,0.747,0.921,1.217,0.805,0.57,1.109,1.04,1.04,2.676,1.4,0.682,0.637,1.292,0.914,1.386,0.819,0.894,1.45,0.667,1.049,0.85,1.026,0.785,0.898,1.039,0.907,1.157,0.924,0.798,1.387 +NM_016605,0.69,1.173,1.37,0.715,1.001,0.986,0.798,0.554,1.433,1.121,0.701,0.924,0.66,0.823,0.697,0.998,1.076,1.04,0.917,1.129,0.635,0.78,1.015,0.991,0.583,0.86,1.326,1.165,0.402,1.173,1.126,1.462,2.056,1.02,0.626,0.877,0.88,0.973,1.16,1.43,1.31,1.092,0.831,0.825,1.127,0.984,1.298,0.684,0.854,0.9,0.872,1.117,1.075,1.426 +NM_016606,1.158,1.036,0.903,0.951,0.803,1.246,1.236,1.087,0.953,0.898,1.022,1.022,0.91,1.098,1.13,1.037,1.359,0.974,1.0,1.119,0.888,1.022,0.858,0.894,1.024,1.292,0.848,1.135,1.234,1.075,0.975,1.242,0.937,1.231,0.929,0.975,0.913,1.072,0.979,0.989,0.951,1.208,1.363,1.079,0.949,0.998,0.888,1.0,1.032,1.052,0.977,0.873,0.874,1.126 +NM_016608,0.874,1.214,1.381,0.832,0.915,1.022,0.864,0.888,1.067,1.127,0.97,0.937,0.937,0.821,0.986,0.936,0.937,0.938,1.147,0.903,1.081,1.0,1.148,1.002,1.096,0.97,1.145,1.003,0.651,1.381,1.002,1.769,0.937,1.417,0.797,0.973,0.994,1.165,0.944,1.028,1.133,1.372,0.845,0.884,0.939,0.902,0.888,0.867,0.985,0.997,0.949,1.0,1.012,0.973 +NM_016609,0.775,0.845,1.09,0.872,0.875,0.949,1.334,1.194,1.072,1.0,0.919,1.091,1.137,0.842,0.972,1.021,1.0,0.952,1.116,0.956,0.915,0.95,1.019,1.075,0.929,0.963,1.009,0.983,0.806,1.079,1.004,1.101,1.069,1.144,0.974,0.997,0.975,1.136,1.053,1.021,0.886,1.088,0.828,0.953,0.993,1.101,0.979,0.852,1.028,0.983,0.96,0.883,0.837,0.983 +NM_016610,0.994,1.017,1.09,0.898,0.823,1.0,0.972,1.149,0.936,1.06,1.005,0.954,1.006,1.133,0.851,1.006,0.959,0.94,1.084,0.938,0.941,0.993,1.064,1.039,1.067,0.856,0.986,1.047,1.153,1.186,0.962,0.937,0.887,0.917,1.035,1.121,1.013,0.907,1.023,0.928,0.936,1.024,0.867,0.996,0.919,0.924,0.986,1.211,0.864,1.068,0.873,1.052,0.946,0.834 +NM_016611,0.992,1.119,1.035,0.966,1.063,1.112,0.82,0.955,1.028,1.082,1.04,1.154,1.111,1.008,1.069,0.998,0.87,0.894,0.876,0.913,0.984,1.005,1.015,1.065,0.917,0.948,1.039,0.941,0.688,0.987,1.039,1.039,0.999,1.047,0.961,1.336,1.003,0.954,0.979,1.057,0.928,1.001,0.957,0.924,1.128,1.113,1.076,0.98,0.923,1.103,1.086,0.899,0.914,1.281 +NM_016612,0.801,0.932,0.727,1.212,0.716,1.284,0.779,0.738,0.766,0.906,1.254,0.818,0.779,0.723,0.97,1.322,0.769,0.885,0.633,0.984,0.717,0.706,1.11,0.849,1.241,0.705,0.941,0.739,0.815,1.4,0.75,2.096,0.842,1.262,0.659,1.101,1.753,0.662,1.941,4.351,0.679,1.551,1.163,1.066,0.834,1.237,0.683,0.789,1.619,0.764,1.053,1.287,0.738,1.176 +NM_016613,0.732,1.103,0.707,0.75,0.732,1.336,0.923,0.64,0.713,0.789,2.221,0.685,0.583,0.609,1.011,1.208,0.607,0.679,0.719,0.865,0.72,0.637,1.71,0.692,0.996,0.604,0.788,0.709,0.762,1.922,0.683,3.966,1.423,1.545,0.632,1.055,1.227,0.722,1.416,1.973,0.73,2.086,0.904,2.277,0.656,1.247,0.956,0.656,0.66,0.622,1.331,1.734,0.73,1.004 +NM_016614,0.859,0.929,1.146,0.691,0.897,2.273,1.119,1.226,0.78,0.797,1.006,1.204,0.982,0.817,1.309,2.659,0.977,0.931,0.857,1.625,0.747,0.992,1.114,1.079,0.798,0.764,1.333,0.922,0.97,1.258,1.03,1.144,1.644,1.097,0.991,0.758,1.811,1.149,1.388,1.312,0.952,1.381,0.902,0.711,0.97,1.16,1.218,0.822,1.375,0.866,1.395,0.757,0.79,1.306 +NM_016615,0.974,0.977,0.944,0.987,1.105,0.986,1.057,1.067,1.205,1.093,0.901,0.937,1.041,0.821,0.87,1.08,1.069,0.888,0.898,0.867,0.917,1.015,1.09,1.046,0.925,1.107,0.955,1.068,0.997,0.901,0.996,1.06,0.943,0.972,1.01,0.976,1.06,0.976,1.098,0.868,1.139,1.097,1.036,1.223,1.06,1.031,0.901,0.99,0.967,0.977,1.001,1.003,0.918,0.819 +NM_016616,1.067,1.108,0.991,1.044,1.061,1.054,1.198,1.047,1.008,0.867,1.067,0.916,1.036,1.282,1.003,1.079,1.01,1.181,0.969,1.035,1.108,0.981,1.062,1.064,0.958,1.079,1.048,0.98,0.815,1.078,0.889,1.032,1.119,0.886,0.984,1.023,0.88,0.958,1.048,0.931,0.929,0.954,1.07,0.987,0.938,0.981,0.949,0.739,0.816,0.908,0.993,1.042,0.971,1.092 +NM_016618,0.617,1.045,1.116,0.592,0.885,1.747,0.687,1.071,1.986,0.662,1.141,1.057,0.742,0.682,1.293,1.764,0.611,1.003,1.107,1.368,0.495,0.809,1.211,1.195,0.582,0.525,0.97,1.467,0.666,1.51,1.048,1.386,1.232,1.586,0.534,0.688,1.13,0.805,0.899,0.938,1.358,1.175,0.538,0.757,0.763,1.406,1.417,0.568,1.413,0.575,1.093,0.534,0.476,0.748 +NM_016619,0.419,1.172,0.747,0.75,0.285,2.921,0.889,0.184,1.063,0.157,2.172,0.112,0.639,0.513,1.405,2.247,1.286,0.986,0.737,1.291,0.258,0.733,1.263,0.639,0.615,0.893,0.661,0.716,0.808,1.639,0.783,0.491,0.956,1.996,0.64,0.0934,2.014,0.159,1.466,0.0884,1.781,1.492,0.975,0.334,0.594,1.799,1.32,0.878,2.021,0.637,1.598,0.411,0.566,1.014 +NM_016621,0.779,0.967,1.923,0.803,0.888,1.073,0.857,0.676,1.135,0.788,0.976,0.958,0.758,0.827,0.897,0.932,0.931,0.788,1.19,1.07,0.728,0.902,1.024,1.155,0.729,0.716,1.438,1.15,0.649,1.469,1.077,1.62,1.027,1.348,0.457,0.78,0.832,1.025,0.909,1.452,1.354,1.265,0.791,0.856,0.885,0.875,0.962,0.744,0.724,0.948,0.99,0.836,1.092,1.193 +NM_016623,0.689,0.875,1.523,0.764,1.097,1.082,0.721,0.759,1.077,1.072,0.813,0.943,0.884,0.627,0.881,1.685,1.044,0.866,0.973,0.746,0.482,0.871,0.999,1.264,0.515,0.604,1.591,0.87,0.43,0.829,1.223,1.296,3.78,1.054,0.546,0.666,1.07,0.922,1.393,1.933,1.184,0.937,0.584,1.175,1.26,1.202,1.088,0.805,1.495,0.903,0.805,1.078,0.951,1.726 +NM_016625,0.854,1.016,1.099,0.833,0.971,0.973,0.803,0.874,1.104,0.982,1.009,0.939,0.876,0.94,1.021,1.139,0.87,0.83,1.298,0.859,0.92,0.843,1.195,1.085,0.776,0.896,1.301,1.094,0.72,1.098,1.047,1.065,2.954,1.129,0.917,1.248,0.951,1.075,1.289,1.006,1.043,0.872,0.745,1.385,0.999,0.948,1.137,0.882,0.976,0.851,1.022,0.889,1.329,1.667 +NM_016626,0.769,1.033,1.453,0.587,1.057,1.283,0.792,0.85,1.132,0.782,0.982,0.945,0.92,0.785,1.058,2.081,0.934,0.977,0.793,0.992,0.529,1.302,1.354,1.189,0.639,0.614,1.445,1.001,0.453,1.288,1.224,1.685,1.858,1.034,0.558,0.469,1.091,1.285,1.243,0.884,0.993,1.071,0.86,0.765,0.974,1.189,0.945,0.844,1.272,0.909,1.174,1.049,0.533,1.592 +NM_016627,0.665,1.305,1.246,0.703,0.994,0.923,0.634,0.74,1.181,1.068,0.784,0.961,0.741,0.704,0.806,1.057,0.933,0.853,1.429,0.947,0.743,0.558,0.999,1.139,0.666,0.784,1.51,1.005,0.43,1.1,1.051,1.799,1.969,1.443,0.347,0.842,0.892,1.065,1.118,0.764,1.285,1.042,0.559,1.23,0.875,0.692,1.001,0.653,0.717,0.698,1.016,0.855,1.034,1.531 +NM_016630,0.834,1.336,0.843,0.793,0.855,1.075,0.551,0.544,0.772,0.845,1.292,1.027,0.589,0.623,0.65,1.259,0.816,0.769,0.937,0.966,0.43,0.822,1.79,1.107,0.7,0.983,1.149,0.919,0.512,1.352,0.821,1.342,1.521,1.313,0.214,1.154,0.976,1.043,1.592,1.057,0.986,1.243,0.775,1.219,0.874,0.834,1.077,0.957,0.887,0.764,1.064,1.074,0.91,1.552 +NM_016632,1.039,1.07,0.882,1.106,0.958,1.162,0.79,1.124,1.016,0.911,0.993,0.949,1.122,0.816,0.83,0.817,1.095,1.0,0.873,1.116,1.014,0.991,0.95,1.028,0.914,1.197,1.234,1.04,1.307,1.008,1.038,0.956,1.305,0.928,1.088,0.955,1.081,1.171,1.216,0.991,0.929,1.0,1.077,1.026,0.9,0.923,0.985,0.974,0.884,0.963,0.991,0.897,1.027,1.001 +NM_016633,1.089,1.071,1.055,1.111,0.911,0.94,1.032,1.114,0.897,0.845,1.039,0.979,1.123,1.004,1.0,1.105,0.879,0.977,1.048,1.091,0.932,1.088,0.929,0.915,0.97,0.942,0.994,1.114,0.802,1.056,0.957,0.925,1.112,0.976,1.023,0.918,1.048,1.089,1.174,1.024,0.96,0.997,0.958,0.983,1.085,1.058,1.141,1.047,1.117,0.886,1.109,1.105,0.893,0.964 +NM_016638,0.878,0.811,0.934,1.072,0.774,1.215,0.541,0.584,1.021,0.872,1.029,0.863,1.024,0.567,0.774,1.616,0.912,1.005,1.458,0.814,0.806,1.028,1.012,1.016,0.912,1.308,1.197,0.83,0.676,0.754,0.731,1.286,1.255,1.448,0.299,1.023,0.933,1.061,1.518,0.63,1.118,1.207,0.692,1.191,0.884,0.801,1.155,1.028,0.925,1.0,0.797,0.705,0.953,1.044 +NM_016639,0.707,0.978,0.788,0.936,0.943,1.198,0.802,1.011,0.868,1.289,0.935,0.754,0.719,0.877,0.817,1.668,0.801,0.85,0.761,0.842,0.771,0.889,1.029,0.861,0.849,0.662,0.71,0.801,0.592,0.802,0.856,5.993,7.208,0.917,1.372,1.106,1.17,1.102,5.187,2.734,0.796,0.881,2.113,2.702,0.791,1.026,2.367,0.966,1.102,0.791,1.048,2.355,1.343,3.275 +NM_016640,0.63,0.823,1.146,0.673,0.926,1.047,0.589,0.514,1.011,1.138,1.163,0.755,0.64,0.765,0.958,1.634,0.871,0.827,1.533,0.736,0.643,0.871,1.104,1.05,0.514,0.734,1.233,0.763,0.402,0.953,0.833,1.046,4.268,1.242,0.343,1.565,1.105,1.01,1.393,0.864,1.088,0.865,0.94,2.367,1.003,0.971,0.982,0.683,1.092,0.786,1.027,1.196,1.055,2.682 +NM_016641,0.67,1.211,1.035,0.591,0.984,1.522,0.541,0.501,1.073,0.957,1.038,0.661,0.707,0.648,1.079,1.71,0.757,0.921,1.178,0.98,0.637,0.688,1.565,0.847,0.717,0.747,1.053,0.886,0.41,1.656,0.961,1.339,1.572,1.326,0.58,0.68,1.178,1.014,1.482,1.25,1.154,1.07,0.787,0.986,0.808,1.283,1.292,0.751,1.189,0.918,1.111,0.694,0.741,1.121 +NM_016642,1.174,0.857,1.185,0.985,1.168,0.912,1.093,1.545,1.128,1.03,0.814,1.307,1.175,1.002,0.886,1.045,1.104,0.926,1.002,0.876,1.089,1.222,0.953,1.242,0.886,1.159,1.023,1.14,0.952,0.903,1.198,1.039,0.928,0.961,1.007,0.907,0.893,1.255,1.038,0.914,1.314,0.933,0.985,0.922,1.322,0.791,1.041,1.119,0.831,1.128,0.956,0.886,0.933,1.0 +NM_016643,0.848,1.046,0.969,0.93,1.02,1.078,0.957,1.105,0.963,0.958,1.04,0.942,1.063,0.925,0.995,1.036,0.957,1.0,1.112,1.159,1.129,0.973,1.073,0.918,1.082,0.969,1.045,1.069,1.204,0.928,1.043,1.291,1.184,1.072,0.942,0.996,1.024,0.933,1.0,0.955,1.086,0.95,0.95,0.932,1.202,0.985,0.839,1.068,1.031,1.014,1.022,1.142,1.068,0.868 +NM_016644,1.082,1.103,0.923,0.975,0.964,0.972,1.0,0.958,0.97,0.909,0.993,0.874,0.9,0.965,1.023,1.047,1.058,1.051,0.913,1.027,0.846,1.034,1.044,0.908,0.986,0.85,0.952,0.993,1.433,1.097,0.86,1.705,1.086,1.106,0.832,1.022,1.063,1.075,1.367,1.327,0.918,1.028,1.04,0.895,0.907,0.946,0.969,0.78,0.88,0.994,0.976,1.241,0.962,1.186 +NM_016645,0.543,1.228,0.983,0.576,0.775,1.313,0.541,0.432,0.943,0.74,1.218,0.698,0.491,0.571,1.036,1.435,0.785,0.643,1.006,1.001,0.681,0.614,1.374,0.996,0.676,0.686,1.106,0.861,0.396,1.452,0.898,1.611,1.897,1.898,0.213,1.148,0.906,0.763,1.881,1.196,1.067,1.207,0.547,1.199,0.801,0.898,0.897,0.583,0.955,0.601,1.014,0.722,0.923,2.5 +NM_016647,0.485,1.386,1.319,0.511,0.82,1.119,0.579,0.252,1.014,0.721,0.767,0.692,0.554,0.456,0.585,1.182,1.471,0.816,0.836,1.133,0.367,0.592,1.702,0.918,0.445,0.694,1.277,0.765,0.423,1.836,0.688,2.192,1.766,0.905,0.319,2.141,1.038,0.786,0.926,2.246,1.272,1.023,0.715,1.861,1.234,1.687,1.321,0.505,1.446,0.731,1.323,0.929,0.577,1.521 +NM_016648,0.617,1.166,1.21,0.7,0.901,1.175,0.625,0.422,1.258,0.984,1.365,0.56,0.551,0.767,1.325,1.498,0.828,0.64,0.931,1.279,0.738,0.559,1.416,0.957,0.626,0.678,1.167,0.925,0.467,1.451,0.914,1.493,1.657,1.577,0.339,0.81,0.946,0.667,1.013,0.632,1.223,1.318,0.931,1.064,0.762,1.453,0.925,0.507,1.093,0.683,1.194,0.588,1.148,1.307 +NM_016649,0.937,0.943,1.096,0.76,1.024,0.964,0.729,0.754,1.244,1.036,0.978,0.872,0.785,0.845,0.934,1.098,0.826,0.756,1.131,0.925,0.786,0.821,1.347,1.091,0.764,0.81,1.057,0.991,0.745,1.183,1.016,1.209,2.282,1.124,0.675,1.255,0.756,0.903,1.214,1.002,1.199,0.944,0.87,1.393,0.998,1.191,0.931,0.632,1.352,0.974,1.039,0.933,1.051,2.227 +NM_016651,0.882,0.986,0.9,1.035,1.073,1.008,1.026,1.01,0.909,1.053,1.079,1.088,1.016,0.818,0.887,1.024,0.948,0.948,0.982,1.122,0.989,0.933,1.072,1.023,0.995,1.104,0.866,0.837,0.941,0.955,0.991,1.018,1.115,1.042,0.971,0.963,0.95,0.863,1.027,1.014,0.933,1.037,1.161,1.005,0.931,1.018,1.004,0.925,1.085,0.851,1.062,1.013,1.017,0.905 +NM_016652,0.887,1.07,0.93,0.938,0.989,1.011,1.009,0.825,0.982,0.953,1.169,0.915,0.802,0.813,0.758,1.115,0.939,0.954,1.046,0.966,1.044,0.988,1.098,0.937,0.981,0.844,1.261,0.919,0.826,1.233,0.938,0.945,1.137,1.12,0.883,0.943,1.099,1.023,0.958,0.873,0.93,1.055,0.883,0.959,1.01,0.963,0.88,0.856,0.977,1.007,0.973,0.869,0.918,0.972 +NM_016653,1.879,1.926,2.217,1.682,1.831,1.807,1.904,1.8130000000000002,2.283,2.075,2.019,1.7959999999999998,1.77,2.057,2.341,2.2560000000000002,1.828,1.9060000000000001,1.7719999999999998,1.8980000000000001,1.876,2.117,2.718,2.0869999999999997,1.5859999999999999,1.62,2.109,1.9340000000000002,2.508,2.038,1.8209999999999997,2.001,3.159,1.956,1.697,2.444,1.819,1.991,2.238,2.555,2.024,2.2800000000000002,2.088,2.511,2.175,1.816,2.165,1.8210000000000002,1.9020000000000001,1.743,1.955,2.092,2.113,2.864 +NM_016655,0.846,0.871,0.992,0.816,1.048,0.811,0.768,0.73,1.141,1.126,0.982,0.897,0.786,1.018,1.021,0.903,0.999,0.937,1.004,0.903,0.747,0.97,0.977,1.154,0.771,1.04,1.164,1.095,0.588,0.957,1.158,1.068,1.981,0.885,0.931,0.991,0.772,1.017,1.377,0.974,1.032,0.817,0.851,1.127,1.027,0.962,1.114,1.044,1.228,0.937,0.945,0.978,1.01,1.311 +NM_016656,0.995,0.981,0.922,0.985,0.808,1.093,1.058,1.116,1.047,0.957,1.103,0.941,1.033,1.307,1.0,0.903,0.885,0.988,1.116,0.963,0.859,0.92,1.01,1.085,1.098,0.976,0.823,1.159,1.293,0.986,1.058,0.916,1.194,1.048,1.046,0.983,0.985,0.755,0.954,0.914,1.027,0.868,0.881,1.086,1.078,1.002,0.99,1.014,0.858,1.029,0.905,1.137,1.037,0.864 +NM_016657,1.262,3.1929999999999996,1.111,2.099,1.15,3.74,2.604,1.111,1.3570000000000002,1.161,4.5169999999999995,1.206,1.278,1.05,2.226,3.189,1.238,2.6189999999999998,1.357,2.876,1.2429999999999999,1.196,3.553,1.276,1.665,1.198,1.256,1.1280000000000001,1.696,3.544,1.212,2.9,2.466,3.3920000000000003,0.955,2.9219999999999997,2.537,1.029,2.935,1.774,1.1880000000000002,2.418,1.8119999999999998,1.624,1.334,4.407,1.617,1.143,2.847,1.106,3.069,1.975,1.2690000000000001,2.217 +NM_016725,0.98,1.016,0.978,0.96,1.033,0.988,1.099,1.245,0.998,0.833,1.109,0.933,0.982,1.056,1.125,0.872,0.911,0.966,1.012,1.01,1.129,0.993,0.997,0.952,0.982,1.048,0.965,1.124,0.988,0.978,0.991,0.935,1.138,0.931,0.965,1.051,1.03,1.077,0.881,1.08,0.99,1.217,1.208,1.048,0.933,1.093,0.915,1.058,1.099,0.934,1.135,1.041,0.954,0.923 +NM_016730,1.016,1.061,1.113,1.029,1.141,1.003,1.064,0.849,0.919,1.01,1.124,0.995,1.081,0.934,1.002,1.089,0.996,1.213,0.957,0.913,0.904,0.885,0.958,0.912,1.067,0.965,1.062,1.009,1.302,0.923,0.88,0.98,1.088,0.88,0.953,0.998,0.922,1.041,0.973,1.076,1.039,0.965,0.892,0.993,0.934,0.972,0.94,1.06,1.091,1.032,0.984,0.966,1.083,0.911 +NM_016731,0.668,13.41,0.675,6.154,0.778,1.544,7.733,0.773,0.739,0.722,2.233,0.748,0.862,0.647,0.61,0.852,0.72,3.308,0.711,9.527,0.724,0.709,0.719,0.706,7.266,0.786,0.661,0.686,3.832,5.65,0.767,16.08,10.3,21.31,0.906,6.166,3.394,0.719,1.336,0.771,0.694,11.82,0.736,0.733,0.669,0.723,0.977,0.728,0.752,0.702,1.399,4.224,0.774,0.727 +NM_016733,1.045,0.937,1.255,0.843,0.961,0.91,1.046,0.909,1.089,0.913,0.982,1.109,0.952,0.854,1.092,1.13,1.018,0.883,1.08,1.166,1.161,0.96,1.011,1.018,1.103,1.15,1.014,0.982,0.998,0.861,1.065,0.899,0.938,0.993,0.878,1.069,0.892,0.92,1.042,1.029,1.083,0.964,0.801,0.88,1.145,0.978,0.997,0.949,1.015,1.178,0.888,0.941,0.92,1.107 +NM_016734,0.982,0.992,0.894,1.147,0.882,0.981,0.956,1.073,0.97,1.003,1.079,1.017,1.031,0.977,0.968,1.038,1.0,1.079,0.913,0.935,0.951,0.939,0.898,0.957,1.059,0.983,1.0,1.064,0.787,1.008,1.083,1.03,1.128,1.111,0.987,1.096,1.109,1.008,1.016,1.041,0.995,1.025,1.051,0.926,1.006,0.976,1.095,0.993,0.863,0.955,1.109,0.945,0.988,1.095 +NM_016735,0.83,1.213,1.276,0.642,0.861,1.275,0.735,0.737,1.019,0.975,0.573,0.817,0.902,0.796,0.842,0.903,1.05,0.99,1.347,0.875,0.587,0.886,1.406,0.975,0.658,0.882,1.496,0.874,0.56,1.659,0.975,2.693,2.928,1.28,0.663,0.968,0.767,0.895,1.734,1.723,1.261,1.289,0.459,2.394,1.165,0.627,1.079,1.131,0.68,0.953,0.859,1.468,1.105,2.295 +NM_016815,1.052,0.764,1.014,1.172,0.848,0.898,1.049,1.169,1.199,0.859,0.814,0.758,1.474,0.881,1.003,0.85,0.804,0.817,0.925,0.608,0.898,1.087,0.803,1.181,0.919,1.49,0.904,1.239,0.5,1.106,1.155,2.122,0.921,1.618,0.573,0.595,0.809,1.168,1.404,1.377,1.078,1.587,0.663,0.611,0.768,0.696,0.744,1.411,0.562,0.688,0.847,1.091,0.967,1.034 +NM_016818,0.522,1.875,0.612,0.577,0.875,2.639,1.753,1.279,0.49,0.335,1.312,0.607,0.436,0.336,1.276,0.896,0.579,1.528,0.701,1.085,0.495,0.379,0.665,0.419,0.997,0.325,0.505,0.419,1.767,3.26,0.503,1.572,0.831,3.426,1.45,0.651,1.926,0.64,2.047,0.774,0.504,2.122,0.814,0.715,0.461,1.222,0.958,0.799,0.766,0.669,0.716,1.008,0.599,1.108 +NM_016819,0.935,1.015,1.0,1.0,0.975,0.959,1.084,1.009,0.909,0.918,0.892,0.945,1.031,0.988,1.028,0.982,1.008,1.03,0.854,1.003,0.953,0.921,1.071,1.063,0.962,1.011,0.981,1.109,0.9,1.046,0.911,0.973,0.982,0.929,1.097,1.011,0.982,1.027,1.177,1.015,1.129,0.948,0.993,0.915,1.007,1.021,0.965,0.899,0.945,1.081,0.979,1.154,0.928,0.845 +NM_016823,0.955,0.772,0.917,0.948,0.985,0.774,0.953,0.857,1.039,1.058,1.042,0.911,1.034,0.891,1.112,1.056,0.966,0.886,1.214,0.782,0.888,0.954,1.019,0.968,0.969,0.91,1.023,1.036,0.98,0.968,1.009,1.104,1.05,1.013,1.212,0.991,0.835,1.086,1.096,1.07,1.041,0.924,0.862,0.982,0.963,0.8,1.049,0.913,0.968,1.077,0.978,1.061,1.198,1.098 +NM_016824,0.763,1.409,0.986,0.722,0.909,2.352,1.255,0.766,1.234,0.821,1.105,0.709,0.849,0.744,0.972,2.268,0.87,1.21,0.641,1.884,0.595,0.837,1.754,0.79,0.768,0.6,0.773,0.92,1.094,2.08,0.994,1.066,2.226,1.535,0.67,0.768,1.381,0.652,1.468,0.791,0.838,1.278,1.156,0.86,0.726,1.378,1.366,0.683,1.426,0.671,1.425,0.82,0.548,1.32 +NM_016827,0.904,1.051,1.066,0.989,0.998,1.09,0.819,0.774,1.088,0.941,1.191,0.905,0.988,0.939,0.921,1.337,0.993,0.971,0.945,0.918,0.955,0.818,1.006,0.871,0.916,0.925,1.125,1.009,0.832,1.301,0.932,0.993,1.031,1.042,0.856,0.825,0.941,0.923,1.375,0.906,1.042,1.025,0.846,1.086,0.876,1.09,1.057,0.907,1.001,0.896,0.999,0.805,0.94,0.958 +NM_016830,1.013,1.005,1.002,1.082,1.104,0.865,0.901,0.959,1.095,1.017,1.006,0.984,1.017,0.784,0.837,0.972,0.902,0.927,0.917,1.032,0.966,0.958,1.037,0.871,0.895,1.06,0.988,1.04,0.862,0.977,1.108,0.991,1.012,1.139,1.057,0.978,0.888,1.036,1.166,0.99,0.938,1.057,0.848,0.989,1.02,0.937,0.991,1.014,1.005,1.107,1.112,0.966,1.033,1.067 +NM_016831,1.027,1.313,1.048,1.248,0.721,0.895,0.999,0.68,1.937,0.877,1.138,0.994,1.017,0.488,0.835,0.749,0.609,1.169,1.306,1.338,0.756,0.647,0.745,0.699,1.204,1.302,1.138,0.74,0.616,1.011,1.353,1.679,1.137,2.331,0.589,0.516,1.107,0.748,1.234,0.621,0.67,1.4,0.769,0.827,1.346,1.077,0.883,0.739,0.521,1.287,0.773,0.73,0.576,1.317 +NM_016839,0.97,0.913,1.058,1.172,1.016,1.06,0.944,1.192,0.945,0.945,1.052,1.061,0.926,1.024,0.852,0.897,0.964,0.974,1.046,1.037,0.956,1.042,0.866,0.887,1.031,0.942,1.108,0.981,0.765,0.925,1.127,1.014,1.022,0.998,1.073,1.083,1.039,1.005,1.088,1.045,0.993,1.128,1.136,0.954,0.983,1.028,0.945,1.007,0.981,1.099,1.048,0.972,1.154,0.974 +NM_016841,0.955,1.0,1.021,1.069,0.841,1.187,1.069,0.792,0.96,0.837,0.934,1.304,0.979,1.153,1.133,1.111,0.952,0.933,0.983,1.047,1.077,1.111,0.872,0.974,0.868,1.093,1.004,1.02,1.504,1.023,1.058,1.02,1.039,0.999,1.063,0.971,0.939,1.12,0.986,0.959,0.963,0.852,1.073,1.033,0.944,1.028,0.978,0.989,1.021,1.002,0.884,1.074,1.067,0.916 +NM_016848,0.873,0.987,0.948,0.874,1.004,0.942,1.077,0.898,1.01,1.01,1.041,0.984,1.005,1.129,0.977,1.081,1.045,0.998,0.917,0.857,0.815,1.002,1.253,0.92,0.931,0.957,1.028,1.01,0.989,0.966,0.953,1.161,1.02,1.131,0.925,1.016,0.838,0.929,1.108,1.251,1.064,1.092,0.957,1.076,1.003,1.11,0.842,0.895,1.086,0.97,0.939,1.005,0.871,1.53 +NM_016929,0.921,0.991,0.897,1.025,0.826,1.212,1.181,0.737,0.808,0.807,1.232,0.813,0.836,0.76,1.7,1.494,0.877,0.899,0.959,1.074,0.887,0.898,1.424,0.998,0.911,0.876,0.955,1.001,0.967,0.925,0.946,1.226,3.015,0.845,0.843,1.474,1.363,0.914,1.124,2.158,0.913,1.361,1.313,1.083,0.932,1.009,2.127,0.879,2.618,0.729,1.445,1.235,0.784,1.199 +NM_016930,0.646,1.076,0.993,0.946,0.743,1.446,0.804,0.638,1.066,0.921,1.035,0.767,0.799,0.71,1.001,1.569,0.894,0.981,0.902,1.38,0.742,0.883,1.28,0.912,0.746,0.813,1.116,0.835,0.835,1.109,0.805,1.098,1.63,1.426,0.707,0.821,1.14,0.779,1.58,0.843,0.94,1.255,0.788,1.425,0.916,1.115,1.186,0.798,1.289,0.836,1.088,0.727,0.791,1.233 +NM_016931,0.903,0.995,0.833,1.058,1.102,1.006,1.168,0.8,1.076,0.909,0.975,0.847,0.885,1.158,2.161,0.888,0.999,1.19,0.71,1.349,1.041,0.889,0.97,0.83,0.878,1.076,0.921,1.168,1.1,0.925,1.074,1.051,0.961,1.13,0.986,0.968,1.064,1.036,0.906,1.114,1.055,1.189,1.054,0.991,0.887,0.991,1.052,1.105,1.109,0.884,0.937,0.876,0.87,1.018 +NM_016932,1.002,1.396,0.902,0.98,0.93,1.028,0.969,0.901,1.173,0.811,0.984,0.932,1.042,0.98,1.169,1.083,0.943,1.028,1.023,0.947,1.204,1.1,0.987,0.964,1.009,0.845,0.921,0.887,1.027,0.997,0.924,1.028,1.429,1.175,1.249,0.93,0.975,1.063,1.044,1.296,0.938,0.92,1.035,0.816,0.962,1.071,1.031,0.934,1.069,1.207,1.1,1.027,1.057,1.027 +NM_016936,0.43,1.095,0.967,0.677,0.73,1.001,0.829,0.236,0.664,0.614,0.937,0.399,0.325,0.405,0.681,1.072,0.606,0.775,0.598,1.358,0.463,0.559,1.345,0.482,0.66,0.6,1.009,0.527,0.695,1.507,0.471,1.755,1.457,1.388,0.255,1.217,1.161,0.695,1.657,1.118,0.606,1.391,1.04,1.29,0.502,1.311,1.08,0.488,1.213,0.549,1.129,0.821,0.575,0.977 +NM_016938,0.749,1.144,0.71,0.983,0.756,0.976,0.936,0.752,0.823,0.748,1.064,0.715,0.871,0.806,0.825,1.294,0.666,0.902,0.79,1.038,0.847,0.761,1.42,0.78,1.103,0.82,0.7,0.817,0.743,1.75,0.508,10.12,1.504,2.872,0.736,0.99,1.052,1.01,1.664,2.268,0.875,1.841,1.135,0.797,0.881,0.923,0.799,0.717,0.683,0.834,1.099,1.362,0.682,1.135 +NM_016941,1.024,1.102,1.074,0.924,1.078,0.997,0.905,0.913,1.123,1.023,1.074,0.907,0.848,0.898,0.854,1.042,0.866,1.068,1.03,0.911,1.063,0.996,1.051,0.952,1.094,1.097,1.007,0.998,0.877,0.967,1.009,0.924,1.125,1.033,1.458,0.978,0.957,0.936,0.994,1.047,1.322,1.059,0.991,0.933,1.373,0.956,1.134,0.858,1.186,1.014,0.986,0.755,1.084,0.986 +NM_016943,0.986,0.917,1.048,0.875,0.985,0.985,0.915,1.044,1.006,0.904,0.999,0.916,0.967,1.114,0.857,0.882,1.103,0.921,0.973,0.93,1.11,0.987,0.917,1.03,0.984,1.059,1.073,1.04,0.773,1.034,0.987,1.042,1.013,0.975,1.001,0.947,1.201,1.021,1.083,0.919,1.031,1.044,0.895,1.029,1.019,1.008,1.031,0.917,1.104,0.936,1.139,0.932,0.898,0.925 +NM_016944,0.946,0.978,0.966,1.018,1.05,1.149,0.995,0.96,0.806,0.933,1.04,1.061,1.036,1.046,1.056,0.917,1.071,1.05,1.012,0.956,0.86,0.91,1.025,1.137,0.983,1.022,1.048,0.856,1.28,1.061,1.025,0.894,0.949,1.077,0.889,1.016,0.974,1.003,1.116,0.877,1.003,1.009,0.931,1.143,0.892,0.991,1.04,0.911,0.901,1.059,1.062,1.091,0.923,1.076 +NM_016945,1.145,0.953,0.91,1.049,0.925,1.159,0.909,0.985,1.008,0.894,0.944,1.188,1.006,1.074,1.213,0.857,0.982,1.143,1.094,0.914,1.026,1.028,1.045,1.005,1.031,1.139,1.075,0.973,0.897,0.867,1.221,0.957,0.844,0.973,1.052,1.149,0.998,1.002,1.039,1.012,0.995,0.892,0.928,1.128,1.021,1.072,0.987,1.004,0.955,1.16,0.934,1.005,0.952,1.081 +NM_016947,0.606,0.951,1.247,0.695,0.765,1.245,0.586,0.518,1.052,0.683,1.321,1.108,0.846,0.66,0.869,1.131,0.779,0.735,1.103,1.001,0.609,0.869,1.767,0.951,0.519,0.647,1.245,1.084,0.375,1.809,0.936,3.435,2.313,1.993,0.26,0.892,0.899,1.099,1.402,0.903,1.074,1.846,0.671,1.733,0.954,0.8,0.863,0.636,0.681,0.669,0.914,0.812,1.101,2.562 +NM_016948,0.671,1.96,0.767,0.697,0.609,1.304,0.843,0.721,0.665,0.693,1.198,0.809,0.673,0.667,0.575,1.077,0.614,0.818,0.573,0.986,0.571,0.554,1.925,0.688,0.844,0.757,0.739,0.776,0.876,1.095,0.638,2.208,2.185,1.29,0.568,1.796,1.209,0.862,1.798,1.2,0.808,1.156,1.301,1.817,0.661,1.086,0.912,0.607,0.778,0.609,1.102,1.014,0.618,4.939 +NM_016950,1.169,0.98,0.93,0.937,1.1,0.979,0.957,1.145,0.92,1.005,0.926,0.982,0.998,1.112,0.895,0.95,1.061,1.09,0.982,1.065,1.091,1.166,0.867,1.044,0.991,0.878,0.978,1.355,0.738,0.876,0.856,0.97,1.065,0.98,1.028,1.059,1.051,1.061,1.03,1.001,1.073,0.994,0.788,0.971,1.034,0.907,0.945,1.112,0.975,1.038,1.107,1.006,0.964,1.07 +NM_016952,1.135,0.963,1.018,1.122,1.058,0.942,0.821,0.893,1.028,1.13,0.985,0.857,0.988,1.069,1.482,0.989,0.986,1.036,0.973,1.104,1.105,1.009,1.137,0.966,0.956,1.067,1.036,1.024,0.889,0.992,1.085,0.992,1.026,1.044,1.056,1.102,1.102,1.118,0.967,1.019,0.978,0.954,1.219,0.994,0.906,1.066,1.165,0.999,1.069,0.995,1.053,0.928,1.253,0.925 +NM_016954,1.096,1.117,1.046,0.995,1.002,0.98,1.016,0.983,0.875,0.965,0.827,0.976,1.097,0.957,1.228,0.957,0.902,1.069,0.978,1.113,0.894,0.893,0.951,1.049,1.144,0.99,0.957,1.031,1.093,1.002,1.037,0.962,1.074,1.055,0.966,1.052,0.998,1.037,0.973,0.989,1.004,0.928,1.026,0.868,1.272,0.941,0.979,0.832,0.993,1.094,1.076,0.917,0.852,0.902 +NM_016955,0.816,1.237,0.995,0.995,1.061,0.944,1.079,1.134,1.047,0.868,1.246,0.961,0.91,0.884,1.059,1.3,1.073,0.852,1.01,1.04,0.967,1.015,1.284,1.059,1.024,0.885,0.869,1.035,1.044,1.01,0.805,0.789,1.497,1.404,0.987,0.924,1.17,0.864,1.267,0.811,0.925,1.096,1.031,1.206,0.972,1.148,1.154,0.893,1.095,1.471,0.911,0.955,0.983,0.846 +NM_017409,0.882,1.678,0.788,1.039,0.75,3.159,0.857,0.87,0.828,0.75,2.966,0.808,0.856,0.724,0.91,1.096,0.775,0.804,0.77,0.989,0.856,0.759,1.392,0.832,0.859,0.879,0.822,0.868,0.676,4.041,0.752,1.648,1.959,1.357,0.818,2.356,1.281,1.017,6.071,1.902,0.806,2.296,1.284,6.863,0.859,1.024,0.805,0.764,0.845,1.003,2.091,1.431,1.115,2.234 +NM_017410,0.962,1.153,1.023,0.791,1.034,0.909,1.039,0.95,0.945,1.186,0.959,1.088,0.871,1.05,0.893,1.097,1.047,1.043,1.005,0.805,0.834,0.915,1.017,1.04,0.959,1.094,0.989,1.13,1.275,0.984,0.948,1.0,1.374,0.908,1.049,1.041,1.0,0.972,0.981,1.695,1.008,0.918,0.816,1.078,1.086,1.087,0.972,0.942,0.915,1.116,1.045,1.168,1.184,1.334 +NM_017413,1.086,1.125,1.07,0.95,1.185,1.065,0.899,0.965,1.062,0.953,1.03,0.974,0.898,0.961,0.965,0.984,0.984,1.015,0.944,0.982,0.909,1.022,0.885,0.958,0.953,1.044,1.132,1.068,1.126,1.05,1.178,1.056,0.853,1.142,1.049,0.959,0.966,1.047,1.121,1.468,1.1,1.025,0.947,1.037,1.09,0.973,1.086,1.055,0.976,1.016,1.033,0.97,0.911,1.023 +NM_017414,0.877,0.999,0.972,1.009,0.843,1.343,1.188,0.807,0.789,0.926,1.495,0.793,0.716,0.696,0.95,1.178,0.904,1.057,0.997,1.041,0.822,0.776,1.425,0.99,0.85,0.779,0.993,0.833,0.648,1.172,0.911,1.025,1.276,1.507,0.885,0.964,1.387,0.828,1.795,0.723,0.879,1.298,1.043,1.674,0.919,1.317,0.897,0.907,1.241,0.814,1.187,1.062,0.956,3.631 +NM_017415,0.965,1.12,0.869,0.928,0.905,1.203,1.045,0.746,0.868,0.764,1.062,0.908,0.82,0.942,0.91,0.949,0.912,1.063,1.087,1.213,0.769,0.917,1.036,0.929,1.163,0.893,0.799,0.931,1.19,1.659,0.918,1.199,1.044,1.944,0.958,1.054,1.195,1.03,1.022,0.849,0.86,0.982,0.737,0.886,0.825,0.849,0.933,1.031,0.78,0.849,1.15,0.834,1.013,0.955 +NM_017416,0.969,1.022,1.093,1.049,1.094,1.038,0.992,0.919,0.84,1.09,1.121,1.01,1.04,0.928,1.016,1.01,1.081,0.993,0.94,1.065,1.155,0.822,0.955,1.024,1.2,0.947,0.983,1.133,0.85,1.011,1.023,1.064,0.954,0.983,0.937,1.055,0.972,1.078,0.89,0.932,0.984,0.939,1.011,0.94,1.039,1.112,0.973,0.993,0.979,1.014,1.001,0.951,1.178,1.21 +NM_017417,0.979,1.085,1.039,1.093,1.22,1.063,1.091,0.962,1.078,1.078,0.998,1.111,0.898,1.326,1.027,0.805,1.193,1.086,1.053,1.143,0.931,1.104,1.007,1.062,0.913,0.923,1.193,1.041,1.29,0.931,1.345,0.953,1.189,0.947,0.897,1.29,0.928,1.019,0.978,0.991,0.822,1.178,0.898,0.934,1.264,1.032,0.999,1.165,0.95,0.984,1.072,1.168,0.954,0.959 +NM_017418,1.012,1.05,0.933,1.059,1.092,1.082,0.902,0.827,0.987,1.166,0.94,1.06,1.065,0.97,0.953,1.021,0.94,1.063,1.06,0.931,1.02,1.003,1.024,0.97,0.851,0.974,0.831,1.084,0.773,0.968,1.099,0.935,1.034,1.062,0.868,1.038,0.99,1.153,0.868,0.925,0.802,1.023,1.016,1.038,0.911,0.999,1.107,0.985,0.98,0.977,0.939,0.99,1.122,1.121 +NM_017420,0.943,1.142,1.043,0.93,1.198,0.999,1.136,0.816,0.95,1.181,0.873,1.04,1.051,0.925,1.158,1.06,1.008,1.062,0.996,0.981,1.063,0.967,1.099,1.074,0.976,1.107,0.993,1.133,1.019,1.062,1.048,0.978,1.208,1.083,1.123,0.944,0.961,1.005,0.994,0.969,1.066,0.975,0.967,1.001,0.988,0.911,0.978,0.953,0.969,0.999,0.966,0.903,0.951,1.279 +NM_017421,0.768,0.996,1.042,0.814,0.836,1.091,0.705,0.622,1.351,0.891,1.173,1.037,0.702,0.787,1.051,1.897,0.916,0.95,1.198,0.884,0.773,0.791,1.565,1.08,0.703,0.855,1.257,0.972,0.613,0.93,1.059,0.686,2.291,1.146,0.489,0.904,1.168,0.85,1.518,0.698,1.112,1.059,0.972,1.317,1.026,1.184,0.911,0.868,1.247,0.899,1.025,0.914,1.236,2.244 +NM_017422,1.857,0.605,4.286,1.202,2.249,0.65,0.502,2.416,4.056,2.788,0.494,3.654,3.091,1.059,0.954,0.898,1.235,1.241,2.086,0.587,3.455,1.684,0.498,1.934,0.606,2.575,4.892,2.57,0.396,0.643,1.606,0.62,1.366,0.717,1.05,0.54,0.585,5.869,0.645,0.501,3.395,0.659,0.485,2.658,3.393,0.556,1.835,3.328,0.541,7.605,0.775,0.671,2.32,0.826 +NM_017424,0.913,1.013,1.006,1.011,1.053,0.955,0.837,0.884,0.951,1.015,0.957,1.113,1.003,0.908,0.697,1.064,0.899,1.056,0.887,0.854,0.872,0.958,0.881,1.021,0.918,0.956,1.148,1.008,0.644,0.908,0.992,1.07,0.88,1.054,1.196,0.936,0.848,1.068,1.288,0.959,1.085,1.098,0.69,1.056,1.179,0.935,0.979,1.177,1.012,1.074,0.963,0.941,0.943,1.033 +NM_017425,0.635,1.24,1.029,0.765,0.997,1.615,0.802,0.7,0.923,0.962,1.218,0.869,0.758,0.547,0.988,2.244,0.956,1.052,1.134,1.418,0.664,0.814,1.232,0.88,0.618,0.788,0.853,0.937,0.746,1.071,0.809,1.212,1.943,1.345,0.517,1.348,1.258,0.883,1.505,0.933,1.06,1.113,0.913,0.984,0.86,1.5,1.152,0.786,1.108,0.781,1.299,0.89,0.927,1.281 +NM_017426,0.882,1.068,1.545,0.873,0.97,1.484,0.758,0.905,1.161,1.271,0.928,0.956,0.921,0.734,1.084,1.533,0.942,1.133,0.893,1.072,0.613,1.036,1.239,1.391,0.623,0.576,1.693,0.925,0.845,1.186,1.286,1.299,2.2,1.114,0.467,0.606,1.119,1.325,1.378,0.857,1.193,1.015,0.786,0.774,1.099,1.033,1.076,0.92,1.108,0.935,1.082,0.834,0.758,1.206 +NM_017429,0.601,0.887,0.823,1.015,0.62,2.4,1.044,0.736,0.657,0.731,1.794,0.623,0.583,0.558,1.24,6.563,0.651,1.515,0.634,2.479,0.713,0.588,2.404,0.591,1.065,0.815,0.636,0.572,1.162,1.513,0.576,0.787,1.303,1.399,0.592,1.189,6.901,0.704,1.099,0.756,0.651,2.585,3.285,0.634,0.554,2.313,1.615,0.768,2.194,0.548,2.601,0.697,0.69,1.099 +NM_017432,0.757,1.033,1.052,0.874,0.837,1.251,0.633,0.742,0.999,0.746,1.041,0.822,0.726,0.579,0.9,1.669,0.788,1.139,1.468,1.097,0.608,0.82,1.63,0.906,0.758,0.892,1.267,0.712,0.523,1.222,1.067,1.473,2.734,1.612,0.816,0.741,0.949,0.857,1.914,0.946,0.818,1.274,0.628,1.392,0.866,0.778,0.985,1.142,0.895,0.837,1.16,0.81,1.188,1.102 +NM_017433,1.057,0.951,1.02,1.077,1.079,0.969,0.856,1.006,1.05,1.003,1.053,1.199,1.02,0.92,0.917,0.952,0.985,1.059,1.073,0.911,0.951,1.1,0.908,1.071,1.116,1.062,1.103,1.004,0.678,0.918,1.269,1.11,1.007,0.962,1.09,0.966,0.888,1.116,1.03,0.997,1.06,0.91,0.688,1.006,1.021,0.997,1.176,0.991,1.035,1.006,1.124,0.985,0.968,0.96 +NM_017435,1.094,1.018,1.03,1.022,0.928,0.874,0.969,1.055,0.93,1.19,1.056,1.027,0.981,0.915,0.944,1.06,1.125,0.962,1.158,1.035,0.98,1.147,1.276,1.013,0.997,0.908,0.945,1.049,1.306,1.023,1.212,1.032,1.339,1.012,0.931,0.959,0.932,1.0,0.89,1.015,0.973,0.944,0.836,0.906,0.931,1.059,1.039,1.213,0.96,0.958,1.023,0.811,0.877,1.231 +NM_017436,1.004,0.892,3.087,0.827,1.303,0.652,0.699,0.999,1.583,1.314,0.616,0.898,1.131,1.334,1.231,0.855,1.518,1.044,1.938,0.925,0.892,0.979,0.703,1.14,0.7,1.976,1.712,1.196,0.804,0.778,1.246,1.694,1.387,0.826,1.342,0.669,0.754,1.16,1.086,0.965,1.273,0.944,0.546,0.835,1.7,0.656,1.177,1.236,0.622,1.278,1.041,1.097,1.297,1.683 +NM_017438,0.998,1.056,1.124,1.025,1.014,1.161,0.726,0.846,1.139,0.974,0.895,0.905,0.89,0.923,0.88,1.06,1.125,0.88,1.085,1.246,0.765,1.092,1.113,1.096,0.855,0.92,1.321,0.932,0.797,1.203,0.98,1.339,1.263,1.217,0.776,0.963,0.874,0.932,0.873,1.062,1.0,0.998,0.842,0.834,0.889,1.055,0.961,1.073,0.858,0.884,0.917,0.88,1.09,1.483 +NM_017440,1.051,0.959,1.068,0.879,0.938,1.037,1.043,0.869,1.238,0.908,0.97,0.936,1.023,1.004,1.089,1.153,0.99,0.975,0.919,1.044,0.753,0.948,1.055,1.036,0.886,0.923,1.072,1.259,0.881,0.985,0.902,1.063,1.452,1.054,0.798,0.852,1.013,0.961,0.789,0.931,1.08,1.002,1.072,0.996,0.944,0.865,1.146,0.925,0.906,0.876,1.032,0.915,1.08,1.374 +NM_017442,0.957,1.067,0.933,0.907,1.04,0.953,1.181,0.899,1.046,1.069,0.931,1.137,1.017,1.043,0.971,0.916,1.024,0.945,0.958,1.07,1.043,1.104,1.1,1.069,1.017,1.056,0.964,0.961,1.088,1.048,0.806,0.889,0.997,0.911,1.016,0.93,1.143,1.037,0.905,1.023,0.984,0.948,0.864,1.153,0.947,1.126,1.034,1.054,1.025,0.819,0.924,0.914,0.948,0.867 +NM_017443,0.778,1.056,1.244,0.612,0.978,0.803,0.568,0.496,1.253,1.468,0.842,1.278,0.853,0.664,0.869,1.291,0.936,1.003,1.196,1.01,0.58,0.803,1.311,1.45,0.477,0.847,1.787,1.028,0.331,1.133,0.865,1.528,2.046,1.024,0.201,1.037,0.997,0.874,1.261,0.942,1.446,0.921,0.557,1.284,1.147,0.924,1.09,0.825,1.037,0.923,0.91,1.231,1.102,2.301 +NM_017445,0.721,2.637,1.208,0.896,1.012,0.948,0.755,0.555,1.196,1.217,0.968,0.553,0.56,0.921,1.216,1.544,0.828,0.997,1.042,1.43,0.752,0.448,0.986,0.813,0.625,0.873,0.819,1.029,0.423,1.003,1.294,2.025,1.834,1.413,1.092,1.291,0.906,0.883,1.02,0.679,1.397,0.955,0.522,1.608,0.911,0.778,1.558,0.649,0.603,0.728,1.113,0.851,1.298,3.437 +NM_017446,0.675,0.954,1.199,0.695,0.77,0.959,0.524,0.407,1.325,1.143,1.237,0.586,0.509,0.793,1.077,1.719,0.866,0.844,1.717,0.829,0.667,0.568,1.343,1.091,0.528,0.74,1.647,0.858,0.324,1.135,0.978,0.844,1.578,1.54,0.258,0.639,1.026,0.73,1.171,0.555,1.234,1.089,0.773,1.08,0.926,1.099,1.056,0.608,0.902,0.738,1.025,0.708,1.211,1.655 +NM_017447,0.992,0.905,1.233,0.867,1.0,0.929,0.818,1.102,0.971,1.304,0.905,1.166,0.862,0.999,1.005,1.051,1.151,1.117,1.653,0.865,0.94,0.823,0.908,1.477,0.789,0.982,1.19,1.135,0.858,0.876,0.992,0.962,1.137,0.966,0.887,0.819,0.913,1.019,1.123,1.003,1.109,0.995,1.135,0.958,1.159,0.837,1.169,1.001,0.664,1.39,1.01,0.91,1.315,1.288 +NM_017448,1.079,1.082,0.908,0.84,1.033,0.975,0.832,0.89,0.838,1.091,1.051,1.106,0.908,0.892,1.401,0.941,0.986,1.081,1.118,0.993,0.9,0.882,0.908,1.073,1.008,1.196,1.013,0.992,0.688,0.9,1.012,1.124,0.838,1.057,1.1,0.829,0.919,1.127,1.224,1.013,0.922,0.94,0.908,0.858,0.825,0.968,0.972,1.146,1.212,1.037,1.057,1.048,1.149,1.032 +NM_017449,0.612,2.95,0.597,0.793,0.588,1.381,0.678,0.556,0.599,0.532,1.473,0.562,0.534,0.569,1.118,2.314,0.599,0.639,0.596,1.335,0.584,0.637,3.158,0.616,0.623,0.564,0.78,0.59,0.442,1.41,0.582,1.31,4.364,0.828,0.616,2.304,2.108,0.615,3.164,2.634,0.572,2.185,2.086,6.42,0.647,1.51,1.409,0.603,3.034,0.593,2.632,1.049,0.781,4.564 +NM_017450,1.176,0.779,1.14,0.988,1.128,0.83,0.998,1.031,1.401,1.063,0.862,1.024,1.054,1.084,0.839,0.853,1.111,0.992,1.229,0.957,1.19,1.172,0.921,0.887,0.967,1.342,1.124,0.908,1.069,1.151,1.517,1.144,1.188,0.887,2.316,0.973,0.875,1.645,1.129,0.864,1.072,0.823,0.884,1.011,1.24,0.855,1.065,1.501,0.851,1.267,0.976,1.056,1.088,0.962 +NM_017451,1.167,0.98,0.985,1.036,1.065,1.026,1.046,0.998,1.34,1.091,0.989,0.902,0.929,1.022,1.106,0.862,1.03,0.919,0.951,0.889,1.032,0.98,0.908,1.043,0.816,1.062,1.017,0.995,1.098,1.002,1.026,0.994,0.979,1.077,1.019,1.014,0.899,0.986,1.062,0.912,0.991,1.004,0.873,0.907,1.033,0.85,1.197,1.024,0.891,0.958,1.078,0.981,1.074,0.931 +NM_017453,1.024,1.035,0.842,1.149,0.839,0.809,0.956,0.975,0.946,0.987,0.872,0.882,0.939,0.966,0.763,1.073,0.9,1.132,0.787,1.181,1.176,1.045,0.965,1.023,1.107,0.925,0.946,1.154,1.129,1.032,1.089,0.983,0.969,1.015,0.941,0.878,0.967,1.123,0.886,0.828,0.904,1.182,0.981,0.976,0.982,1.118,1.079,0.995,1.023,1.034,0.97,0.786,1.021,0.956 +NM_017455,0.693,1.033,0.886,0.853,0.628,1.94,0.822,0.555,1.176,0.659,1.295,0.726,0.81,0.65,1.008,2.015,0.527,1.267,0.93,1.221,0.291,0.906,1.416,0.842,0.768,0.76,1.076,0.827,0.665,1.599,1.005,1.0,1.071,1.829,0.83,0.547,1.531,0.863,1.963,0.845,0.751,1.35,0.649,0.456,0.737,1.307,0.757,1.008,0.867,0.674,1.236,0.846,0.527,1.475 +NM_017456,1.004,0.713,1.381,0.91,0.752,0.988,0.615,0.592,1.29,0.678,0.719,0.523,0.759,1.111,1.078,1.17,1.272,0.811,1.196,0.941,0.586,1.053,0.726,0.914,0.677,1.205,1.293,1.0,0.533,0.989,1.319,1.176,0.9,1.438,0.964,0.56,0.808,1.008,1.41,0.709,1.047,0.875,0.92,0.933,0.93,0.806,0.975,1.118,0.62,0.971,0.84,0.649,1.073,1.308 +NM_017460,0.94,1.257,1.056,1.055,0.9,1.065,0.835,0.932,1.074,1.161,1.303,1.054,1.066,0.899,2.986,2.89,0.955,0.932,0.898,1.569,0.952,1.164,1.286,0.93,0.975,0.977,0.94,0.888,0.831,1.394,1.043,0.948,0.895,1.043,1.014,0.952,11.13,1.081,0.965,0.836,1.121,3.612,4.66,0.945,0.871,1.426,1.979,0.845,0.877,0.993,1.221,0.971,0.938,0.896 +NM_017481,0.973,1.015,0.83,0.981,0.865,1.2,1.037,0.798,0.894,0.9,1.501,0.871,0.871,0.91,1.524,1.558,0.869,1.001,1.042,0.998,0.989,0.84,1.105,0.794,0.939,0.781,0.819,0.771,1.173,1.473,0.872,1.137,1.134,1.291,0.881,0.854,1.555,0.857,1.441,0.959,0.922,1.305,1.341,1.097,0.752,1.24,0.912,0.818,1.386,0.821,1.407,0.905,0.904,1.329 +NM_017487,1.01,0.987,1.056,0.954,0.944,0.96,0.917,1.134,0.899,1.074,0.907,0.942,1.114,0.857,1.207,1.074,1.071,1.134,0.966,1.084,1.064,0.979,1.012,1.088,1.009,1.014,1.076,1.029,1.088,0.957,0.923,1.1,1.014,0.894,1.253,0.935,1.015,1.154,1.314,0.963,0.996,0.926,0.994,0.986,0.974,1.028,1.021,1.072,0.882,1.203,0.987,1.143,1.016,0.974 +NM_017488,0.87,0.978,1.069,0.941,0.988,0.939,0.917,0.904,0.966,1.013,1.264,1.04,1.093,0.97,1.05,0.902,1.135,0.847,0.897,0.981,1.082,1.173,1.103,1.027,0.99,1.052,0.928,0.923,0.92,1.024,1.034,0.84,0.983,1.008,1.241,0.967,0.939,1.098,1.045,0.951,1.128,1.032,0.875,0.926,0.857,0.995,0.931,0.909,0.984,1.132,1.13,0.827,1.081,1.013 +NM_017489,0.721,1.301,1.006,0.749,0.763,1.802,1.026,0.876,1.036,0.723,1.081,0.903,0.845,0.724,1.204,1.552,0.834,0.972,0.859,1.171,0.696,0.939,1.341,0.941,0.856,0.63,1.088,0.865,0.714,1.691,1.11,1.645,2.221,1.747,0.608,0.921,1.036,0.929,1.122,1.257,0.953,1.442,0.794,0.918,0.948,1.272,1.01,0.665,1.154,0.683,1.256,0.735,0.674,1.172 +NM_017490,2.084,1.639,2.715,1.552,2.027,2.089,1.498,1.605,2.5300000000000002,2.1959999999999997,2.017,1.864,1.677,1.8519999999999999,2.1420000000000003,2.069,2.254,1.9529999999999998,2.499,1.752,1.415,2.251,1.964,2.4459999999999997,1.571,2.032,2.6109999999999998,2.189,1.423,2.298,2.186,1.814,1.926,1.787,1.254,1.8679999999999999,2.026,2.181,2.399,1.846,2.5090000000000003,2.0229999999999997,2.183,2.013,2.206,1.8050000000000002,2.14,1.948,2.545,1.919,2.282,1.711,1.9209999999999998,1.7610000000000001 +NM_017491,0.669,0.61,1.143,0.882,0.813,1.216,0.79,0.703,0.931,1.213,1.01,0.875,0.728,0.757,1.106,2.138,1.244,0.979,1.12,0.846,0.542,0.778,0.927,1.293,0.671,0.842,1.082,0.743,0.648,1.014,1.04,0.99,2.302,1.137,0.821,0.482,1.059,0.884,1.97,1.159,1.039,1.041,0.805,0.842,1.022,0.968,1.152,1.0,1.102,0.927,1.179,0.677,1.015,1.109 +NM_017492,0.98,0.858,1.003,0.997,0.812,0.989,0.985,0.901,1.031,1.069,0.816,0.933,1.014,1.019,0.71,1.156,1.051,0.992,0.857,1.045,0.886,1.108,0.951,0.962,0.941,0.878,1.059,0.899,1.253,0.901,0.921,1.022,1.43,0.845,0.875,0.995,1.006,0.933,1.149,0.992,0.944,1.063,0.98,0.961,0.91,0.94,0.845,0.916,1.029,1.115,0.927,0.953,1.037,1.587 +NM_017503,0.998,0.988,1.187,0.883,1.05,0.78,0.737,0.633,1.149,1.469,0.943,1.181,0.899,0.764,0.916,1.057,1.154,1.014,1.471,0.775,1.307,1.03,1.08,1.169,0.664,1.064,1.146,1.03,0.721,0.865,1.0,1.039,2.181,0.963,0.585,1.498,0.856,1.203,1.247,0.897,1.133,0.957,0.745,1.793,1.195,0.775,1.102,0.929,0.836,1.091,0.685,1.214,1.542,1.443 +NM_017506,1.234,0.958,1.065,0.958,1.215,1.048,1.283,1.264,0.957,1.193,1.023,1.107,0.904,0.998,1.026,1.015,0.972,1.242,0.915,1.045,1.01,1.152,1.081,1.012,1.107,0.84,0.994,1.067,1.401,0.935,0.995,1.093,0.895,1.0,0.988,0.887,1.068,0.974,0.98,1.087,1.101,1.09,0.891,0.938,1.051,1.071,1.025,0.913,1.013,1.064,0.971,0.915,0.938,1.097 +NM_017510,0.747,0.876,0.903,1.024,0.714,1.113,0.741,0.396,0.809,0.854,1.079,0.498,0.628,0.475,0.741,1.969,0.768,1.324,1.354,0.722,0.495,0.804,1.578,0.836,0.979,1.012,0.91,0.596,0.52,1.401,0.739,1.558,1.606,1.497,0.144,0.698,1.13,0.935,2.057,0.809,0.954,1.364,0.591,0.932,0.915,1.005,0.961,0.865,1.076,1.033,1.219,1.056,0.95,1.402 +NM_017512,0.923,1.246,1.348,0.734,0.734,1.673,0.901,0.832,1.203,1.075,1.126,0.841,0.745,0.996,1.116,4.115,0.846,1.183,0.8,1.715,0.674,0.726,1.987,0.925,0.693,0.559,1.069,0.931,0.916,2.057,1.023,1.459,0.899,1.479,0.569,0.696,1.555,0.991,1.413,0.521,1.209,1.351,0.917,0.984,0.865,1.52,1.27,0.675,1.853,0.966,1.173,0.768,0.789,1.414 +NM_017514,0.968,0.908,0.828,0.916,1.052,1.097,0.922,1.058,0.978,1.021,0.903,1.09,1.02,1.115,1.994,1.15,1.074,0.925,1.099,1.069,1.075,0.935,1.138,0.987,1.026,0.841,1.012,1.0,0.966,1.06,0.987,0.968,1.133,0.984,1.246,0.989,1.053,0.926,1.047,0.929,0.969,1.068,0.898,0.941,0.944,1.031,0.891,1.029,0.984,1.08,0.96,0.967,0.915,1.015 +NM_017515,0.739,0.974,1.102,0.627,0.925,0.944,0.688,0.611,1.356,1.381,1.049,0.952,0.802,0.84,0.942,1.674,0.764,0.924,0.949,0.811,0.702,0.811,1.755,1.406,0.791,0.794,0.922,1.187,0.578,1.019,0.989,1.028,1.401,0.855,0.499,1.156,1.188,0.872,1.405,1.011,1.076,1.013,1.046,1.052,1.021,1.371,1.395,0.828,1.113,0.969,1.124,1.456,0.991,2.203 +NM_017518,1.2610000000000001,2.2640000000000002,1.8319999999999999,1.725,1.517,1.876,1.516,0.897,1.835,1.974,1.4769999999999999,1.8559999999999999,1.2890000000000001,1.142,1.525,2.4530000000000003,1.554,1.838,1.9329999999999998,2.367,1.081,1.395,3.46,2.231,1.38,1.526,2.434,1.521,1.078,2.283,1.3399999999999999,2.787,3.224,2.302,0.806,3.059,1.7690000000000001,1.376,3.0490000000000004,2.0999999999999996,2.001,2.133,1.783,3.516,2.1,1.884,2.745,1.409,2.582,1.5739999999999998,2.088,2.67,1.464,3.452 +NM_017519,0.934,0.963,1.039,1.062,0.959,1.071,1.081,1.065,0.962,0.919,0.895,1.003,1.198,0.862,1.106,1.309,0.89,1.031,1.036,1.037,1.145,1.017,1.039,1.072,0.955,0.997,0.988,1.028,1.226,0.892,0.955,0.887,1.2,0.931,0.891,1.03,0.982,0.984,0.881,0.957,1.043,1.029,1.111,1.144,0.945,0.913,0.9,1.071,1.147,1.088,1.06,0.98,0.902,0.944 +NM_017520,0.832,0.969,1.203,0.721,1.093,0.991,0.855,0.732,1.062,0.961,1.099,0.895,0.657,0.885,1.02,1.181,0.968,0.793,0.876,0.999,0.824,0.814,0.994,1.003,0.869,0.779,1.081,0.958,0.606,1.303,0.962,1.447,1.214,1.295,0.599,0.97,0.954,0.958,0.94,1.129,1.056,1.275,0.983,0.81,0.826,1.071,1.161,0.74,0.828,0.751,1.039,0.829,0.987,1.821 +NM_017521,0.994,1.02,0.996,1.098,0.989,1.001,0.895,1.078,0.963,0.855,1.056,1.022,0.917,0.941,1.194,0.891,0.998,1.051,0.988,0.97,0.89,1.023,1.016,0.908,1.113,0.929,1.045,0.955,1.003,0.993,1.099,1.089,0.984,1.048,0.836,1.037,1.125,0.981,1.045,1.216,0.827,1.014,1.001,0.986,0.913,1.013,1.144,0.941,1.046,0.849,0.981,0.996,0.977,1.032 +NM_017522,0.98,0.865,0.997,0.855,1.045,0.857,0.816,0.864,1.369,1.119,0.99,1.163,1.028,0.748,0.824,0.999,0.931,1.092,1.064,0.836,0.908,1.086,0.931,1.403,0.799,0.82,1.506,0.918,1.608,0.839,0.973,1.176,4.838,0.855,0.909,1.243,0.965,1.022,1.075,1.511,1.226,0.988,0.9,1.186,1.268,1.021,0.915,0.857,0.954,1.255,0.914,1.359,1.089,1.33 +NM_017523,1.098,1.035,1.092,0.945,0.849,1.362,1.159,0.857,1.097,0.891,1.074,0.815,0.845,0.761,0.967,0.827,1.008,0.835,0.852,0.846,0.949,0.759,0.981,0.764,0.998,0.794,1.15,1.077,0.793,1.105,0.872,0.995,1.833,1.176,0.767,1.003,1.026,0.775,1.172,0.819,1.144,1.044,1.005,1.729,0.949,1.021,1.049,0.901,1.06,0.869,0.968,0.952,1.04,3.623 +NM_017526,0.67,1.032,1.352,0.82,0.865,1.711,0.77,0.835,1.215,0.752,1.034,0.743,0.865,0.566,0.842,1.014,1.177,1.381,1.616,1.026,0.485,0.967,0.917,0.966,0.693,0.453,0.833,1.187,0.55,1.414,0.912,2.126,0.847,1.556,1.047,0.542,1.091,0.947,1.451,0.909,1.2,1.241,0.772,0.838,0.899,1.572,1.046,0.528,0.989,0.697,1.15,0.783,0.925,1.636 +NM_017527,0.927,0.898,1.088,1.016,1.079,0.952,0.907,0.884,0.946,0.95,1.015,0.936,1.022,1.169,0.952,0.974,0.933,0.897,1.023,0.795,0.963,1.06,0.936,1.112,0.931,1.011,0.851,1.082,0.843,0.977,1.05,1.125,1.153,0.9,1.245,1.0,1.016,0.881,1.045,1.063,0.936,0.856,0.849,0.795,0.902,1.04,1.005,1.069,1.007,1.16,1.031,0.919,1.059,1.111 +NM_017528,0.653,1.027,0.754,0.839,0.581,1.291,0.811,0.411,0.879,0.704,1.167,0.813,0.709,0.532,0.797,1.636,0.59,0.913,0.879,0.956,0.575,0.538,1.909,0.81,0.776,0.827,0.665,0.639,0.62,1.675,0.6,1.226,2.515,1.63,0.195,0.987,1.101,0.77,3.124,1.07,0.815,1.317,0.711,2.741,0.853,1.097,1.192,0.639,1.219,0.685,1.105,1.552,0.804,1.507 +NM_017530,0.925,1.007,1.009,0.876,0.923,1.074,0.907,0.866,1.133,0.842,1.063,0.923,0.972,0.805,1.146,1.195,0.873,0.973,1.044,1.096,1.096,0.946,1.024,0.915,0.934,0.947,0.993,1.057,0.87,0.984,0.962,1.185,1.149,1.221,0.933,0.812,1.08,1.009,1.075,0.959,0.998,1.091,0.789,0.97,1.027,0.987,0.998,1.125,0.992,1.043,0.937,0.807,1.106,0.946 +NM_017533,1.02,0.931,0.966,1.002,1.058,1.0,1.207,0.989,1.132,1.114,0.996,1.002,0.989,0.952,0.938,0.893,0.939,0.904,0.913,0.978,0.992,0.776,1.088,1.035,0.948,0.941,1.003,1.075,0.8,0.946,1.154,0.959,1.184,0.963,0.894,0.901,0.879,0.998,1.036,1.002,1.042,0.984,1.064,1.041,1.082,0.839,0.996,0.916,0.971,1.053,0.947,1.176,1.141,1.102 +NM_017534,0.896,1.004,1.227,0.939,1.209,0.95,0.971,1.348,0.867,0.813,1.196,1.109,0.957,0.98,2.312,0.978,1.283,1.109,1.206,0.865,0.939,0.998,0.967,1.395,1.017,0.995,1.066,0.914,0.475,0.898,1.251,0.987,0.964,1.151,0.872,0.843,1.108,0.87,0.904,0.957,0.748,1.046,0.903,1.059,1.066,1.092,0.956,1.239,1.112,1.102,1.048,0.765,1.582,1.0 +NM_017535,0.995,0.946,1.006,0.943,0.934,1.024,0.91,1.084,0.943,1.016,1.03,1.018,0.928,0.834,1.015,1.037,1.096,1.002,1.006,1.016,0.963,1.082,1.006,1.085,0.956,0.917,1.091,0.97,0.951,1.063,0.913,0.933,0.962,0.966,0.927,0.804,0.902,1.03,0.933,1.071,1.005,0.93,0.93,1.027,1.028,0.879,1.15,1.044,1.01,1.134,0.935,1.143,1.026,0.904 +NM_017539,0.857,1.094,1.074,0.917,0.959,0.993,0.932,0.97,1.101,0.884,0.981,1.036,1.005,1.276,1.074,1.031,1.103,0.963,0.921,1.095,1.095,1.058,0.887,1.093,1.059,0.898,0.935,0.985,1.041,1.007,0.966,1.119,1.132,1.095,1.039,0.943,0.896,1.014,0.997,0.835,0.999,1.061,0.859,0.906,1.112,1.025,0.942,1.033,0.991,1.005,0.98,0.848,0.843,1.043 +NM_017540,2.041,2.106,2.064,1.918,1.811,1.8940000000000001,2.202,1.912,1.771,1.974,1.967,1.749,2.0869999999999997,2.152,1.895,1.928,2.1310000000000002,1.8599999999999999,2.219,2.2880000000000003,1.995,2.0709999999999997,2.097,2.033,1.891,2.0439999999999996,1.9489999999999998,2.036,2.019,2.294,1.964,1.831,2.205,2.008,2.016,1.954,1.9709999999999999,2.063,2.0860000000000003,1.9580000000000002,1.907,2.1929999999999996,2.331,2.093,1.8610000000000002,2.1069999999999998,2.118,1.94,2.077,1.979,1.9860000000000002,1.8170000000000002,2.123,1.9699999999999998 +NM_017541,1.121,0.912,1.058,0.903,1.251,1.027,0.885,0.955,1.033,1.344,0.828,1.069,0.988,1.06,1.084,1.268,0.948,1.044,1.274,1.111,0.938,1.056,0.988,0.907,0.969,1.048,1.148,0.996,0.939,0.94,1.039,1.277,0.988,1.036,0.877,0.967,1.005,1.612,0.85,1.14,0.976,0.745,1.107,0.918,1.01,0.724,0.806,1.253,1.0,1.014,0.89,1.081,1.048,1.092 +NM_017542,1.042,1.086,1.259,0.814,0.937,0.999,0.581,0.627,1.039,1.105,0.795,0.784,0.721,0.701,0.893,0.803,0.925,0.86,0.878,1.023,0.622,1.096,1.147,1.152,0.863,1.1,1.186,1.025,0.514,1.249,0.943,2.218,1.933,1.448,0.265,1.594,0.826,1.008,1.186,1.564,1.118,1.071,0.729,1.745,0.998,0.679,0.798,0.792,0.613,0.842,0.88,0.763,0.958,2.144 +NM_017544,0.905,0.926,1.189,0.786,0.827,0.991,0.846,0.764,1.029,1.067,1.035,1.108,0.801,0.861,0.997,1.251,0.922,0.885,1.313,0.942,0.872,1.061,1.11,1.217,0.733,0.824,1.497,0.826,0.746,0.993,1.035,1.317,2.105,1.208,0.57,1.003,0.91,1.169,1.249,1.123,0.929,1.176,0.746,1.261,1.103,0.806,0.932,0.794,1.069,0.949,0.966,1.154,1.001,1.362 +NM_017545,1.044,0.829,1.164,1.092,0.938,1.13,0.911,1.087,0.952,1.14,0.866,1.065,0.988,0.907,1.248,1.092,1.019,1.094,1.015,1.051,1.07,1.022,1.268,0.985,1.147,1.101,0.927,0.946,0.873,1.011,0.943,0.925,0.944,0.78,1.117,0.991,1.028,0.657,0.935,1.001,1.055,0.834,0.971,1.077,1.02,1.111,0.891,0.927,1.084,1.285,0.993,0.962,1.222,0.954 +NM_017546,0.631,1.001,1.437,0.763,0.89,1.138,0.604,0.533,1.433,1.079,1.051,0.628,0.465,0.888,1.022,1.625,0.866,0.99,1.654,0.664,0.524,0.6,1.124,1.021,0.478,0.639,1.076,0.714,0.382,1.138,1.033,0.895,2.296,1.241,0.436,0.843,1.05,0.817,1.124,0.995,0.948,0.9,0.836,1.086,0.983,1.058,1.112,0.64,1.187,0.96,0.898,0.701,1.048,2.009 +NM_017547,0.603,1.07,0.812,0.852,0.746,1.569,0.994,0.59,0.901,0.602,1.322,0.864,0.593,0.531,1.01,1.851,0.779,1.061,1.006,0.984,0.54,0.809,1.413,0.779,1.049,0.675,1.264,0.611,0.672,1.36,0.764,1.606,1.23,1.604,0.426,2.021,1.394,0.631,1.815,0.817,0.709,1.21,0.829,1.278,0.87,1.06,0.911,0.748,1.063,0.742,1.401,0.99,0.813,2.384 +NM_017548,0.949,1.018,1.132,0.722,1.283,0.736,0.569,0.387,1.062,1.514,0.718,0.492,0.459,0.872,0.911,1.077,0.768,0.964,1.336,0.712,0.471,0.59,1.257,1.304,0.792,1.067,0.934,1.136,0.323,1.125,0.955,1.549,1.543,1.263,0.424,0.671,0.889,0.895,1.808,0.952,1.161,0.95,0.853,1.429,0.969,0.955,0.828,0.842,1.164,0.879,1.061,0.734,1.351,1.921 +NM_017550,1.151,1.003,1.158,0.991,0.901,1.02,0.825,0.883,0.971,0.983,0.712,0.868,0.768,0.904,0.94,1.023,1.083,0.988,0.983,0.977,0.965,1.194,1.287,1.098,0.905,1.051,1.004,0.829,0.749,0.987,0.949,1.212,1.717,1.036,0.787,1.105,0.825,0.991,1.453,1.356,1.005,0.887,0.847,1.262,1.254,0.859,0.917,1.189,0.833,1.155,1.094,0.986,0.939,1.183 +NM_017553,0.974,0.932,0.987,1.068,0.969,1.095,1.01,0.786,1.077,0.859,0.993,0.948,0.885,1.008,0.828,1.184,0.984,0.967,1.025,1.093,0.999,0.895,1.056,0.97,0.941,0.869,1.117,1.023,0.806,1.037,1.002,0.982,1.156,1.147,0.813,1.104,1.081,1.002,0.986,0.932,1.067,1.084,0.818,1.103,1.139,0.985,0.962,0.933,0.976,0.943,0.976,0.932,0.974,1.259 +NM_017555,1.048,0.815,1.091,1.048,1.269,0.846,1.01,1.169,1.252,1.225,0.966,1.204,0.999,1.023,0.967,1.128,1.16,0.993,1.101,0.917,0.968,1.165,0.957,1.07,0.814,1.147,1.152,1.25,0.896,1.055,1.172,0.928,0.921,0.873,1.227,0.931,0.922,1.372,0.932,0.883,1.176,0.944,0.899,0.997,1.146,0.877,1.106,1.295,0.917,0.925,1.01,0.861,1.106,0.821 +NM_017556,0.53,1.208,0.557,0.929,0.52,2.058,0.955,0.433,0.525,0.852,1.874,0.553,0.488,0.474,0.936,2.094,0.655,1.198,0.547,0.974,0.587,0.5,1.008,0.617,1.136,0.501,0.615,0.42,1.479,2.568,0.504,1.337,1.155,1.291,0.491,0.864,1.722,0.572,2.722,0.771,0.637,1.885,1.561,1.762,0.637,1.469,0.93,0.487,1.386,0.614,1.467,0.528,0.909,1.472 +NM_017558,1.063,0.92,1.108,1.112,1.034,1.157,1.0,1.027,0.987,1.008,0.954,1.056,1.087,0.933,0.853,1.0,0.89,1.159,1.011,0.934,1.125,0.853,0.966,0.981,1.188,0.926,0.998,0.972,0.764,1.065,1.139,0.929,1.236,0.925,1.136,0.952,0.962,1.058,0.988,0.926,1.028,1.058,1.111,1.101,1.089,1.013,1.051,0.922,1.038,1.14,0.909,0.893,1.005,0.923 +NM_017559,1.002,0.955,0.996,0.913,1.175,0.958,1.197,1.044,1.063,1.04,1.058,0.906,0.959,0.882,0.974,1.044,0.978,1.03,1.145,1.096,0.942,1.087,0.945,0.951,0.965,0.93,0.878,1.103,1.045,1.023,0.926,0.915,0.962,0.81,1.105,1.036,1.109,0.984,0.879,1.058,1.198,1.027,1.183,1.156,1.016,1.035,1.2,0.983,1.007,0.962,1.058,1.076,0.949,0.969 +NM_017563,0.973,0.798,1.042,0.848,0.934,0.906,0.997,1.003,1.141,1.041,1.074,0.959,1.13,0.901,0.88,0.917,0.901,0.806,1.099,0.961,1.001,0.979,1.001,1.089,1.01,1.051,1.008,1.001,0.893,1.012,0.97,1.057,0.853,1.115,1.153,0.926,1.076,1.121,0.958,0.833,0.933,0.898,0.822,1.086,1.146,0.965,0.995,1.056,0.889,1.061,0.994,1.032,1.01,1.057 +NM_017564,0.917,0.945,1.057,1.061,0.971,1.1,1.287,0.988,1.059,0.945,0.899,1.061,0.942,0.871,1.021,0.996,1.101,1.042,0.902,0.931,1.011,1.078,1.014,1.086,1.021,1.067,0.965,1.131,0.968,0.865,1.138,1.037,0.91,1.101,1.085,1.043,1.026,0.984,0.923,1.25,1.011,1.043,1.009,0.878,0.925,1.047,1.13,0.975,0.973,0.766,0.92,0.88,0.99,0.919 +NM_017565,0.904,1.037,1.169,1.05,0.918,0.962,0.868,1.085,1.003,0.883,0.854,0.989,0.913,1.007,0.745,0.899,1.446,1.041,1.159,1.039,0.882,0.952,0.892,1.006,1.083,0.868,1.25,1.0,1.233,0.913,0.996,1.904,0.914,1.22,0.94,0.917,0.971,1.043,0.964,0.995,0.948,0.943,0.911,0.781,1.101,0.992,0.882,0.931,0.868,1.405,1.021,0.953,1.069,1.074 +NM_017566,0.712,1.077,1.034,0.86,0.774,0.953,0.823,0.661,0.901,1.154,1.054,0.701,0.736,0.689,1.181,1.488,0.786,0.806,1.071,0.882,0.609,0.712,1.123,1.103,0.869,0.852,1.029,0.772,0.661,1.319,0.849,1.485,1.731,1.197,0.492,0.953,0.971,0.795,1.317,0.973,1.047,1.041,0.817,0.943,1.208,1.104,0.883,0.804,1.387,0.881,1.02,0.876,0.827,1.351 +NM_017567,2.479,0.431,2.413,0.85,2.725,0.562,0.346,1.43,3.176,2.992,0.406,2.176,2.316,1.826,1.478,0.984,1.922,1.724,3.953,0.56,1.762,3.617,0.577,3.739,0.264,4.552,1.565,2.621,0.337,0.732,3.117,0.994,1.159,0.683,0.184,0.457,0.408,2.622,1.011,0.589,3.28,0.662,0.331,0.623,3.011,0.396,1.729,3.936,0.438,1.269,0.807,1.0,1.872,0.91 +NM_017569,0.956,0.894,1.09,1.063,0.904,1.033,0.916,0.825,1.111,0.957,0.92,0.86,0.912,0.947,1.073,1.159,1.091,0.854,1.044,1.036,0.982,1.02,1.116,0.928,0.872,0.954,1.139,0.833,0.748,1.224,1.052,1.388,0.969,1.076,0.69,0.952,0.914,0.902,1.102,1.76,1.147,1.012,0.741,2.066,1.002,0.903,1.015,0.837,0.944,0.965,0.962,0.995,0.974,1.411 +NM_017572,1.169,0.788,1.774,0.832,1.276,0.927,0.667,1.757,0.875,1.473,1.075,1.497,1.373,0.996,1.004,1.429,1.198,1.439,2.234,0.8,1.934,1.376,0.809,1.327,0.593,1.647,1.331,1.283,0.54,0.855,1.784,1.038,1.167,1.106,1.234,0.574,1.159,1.413,0.985,0.614,1.058,0.669,0.539,0.925,1.426,0.583,1.182,1.79,0.806,1.55,0.759,0.865,1.242,0.634 +NM_017573,1.013,1.041,0.959,0.781,1.009,0.983,0.926,1.133,1.008,1.004,1.046,1.073,0.945,0.953,1.045,0.936,0.883,1.081,1.069,0.891,0.983,1.085,0.902,0.961,1.032,0.965,1.042,0.966,0.803,1.121,1.053,1.045,0.878,1.007,1.005,0.999,0.988,1.041,0.956,1.325,1.135,0.986,0.999,0.931,1.105,0.965,0.883,0.911,0.928,0.992,1.013,0.981,0.98,1.253 +NM_017574,0.765,0.862,1.362,0.849,0.751,0.935,0.883,0.496,1.091,0.939,0.66,0.517,0.608,0.95,1.001,0.909,1.106,0.946,0.965,1.071,0.651,0.785,1.034,0.952,0.79,0.905,1.536,0.756,0.758,1.28,0.999,2.207,1.869,1.228,0.421,0.801,0.875,0.821,1.334,1.287,1.124,0.984,0.827,1.521,0.99,0.961,0.853,0.687,0.702,1.223,1.197,0.929,1.096,1.823 +NM_017575,1.026,0.938,1.021,0.877,0.906,1.144,0.774,0.746,0.959,0.951,0.866,0.953,0.835,0.878,0.97,1.112,0.986,0.884,1.047,0.845,0.936,1.098,0.907,1.062,0.878,1.083,1.27,0.966,0.836,1.11,1.16,1.212,1.385,1.048,0.818,0.897,1.036,1.006,1.015,1.098,0.982,1.144,0.925,0.973,0.977,0.934,0.923,1.068,0.926,1.027,0.989,0.914,1.06,1.083 +NM_017576,0.954,1.19,1.065,0.923,1.123,1.129,1.137,0.899,0.967,1.123,1.155,0.953,1.031,1.01,0.921,1.068,0.999,1.019,0.977,0.946,1.051,0.987,1.171,1.039,1.042,1.001,0.902,0.95,0.855,1.008,0.909,0.871,1.094,1.04,1.021,0.987,1.035,1.039,1.012,1.036,1.133,0.916,0.894,0.869,1.152,0.843,1.011,1.015,1.04,1.021,1.065,0.931,0.966,1.026 +NM_017577,0.814,1.172,1.642,0.67,1.152,1.153,0.854,1.399,1.175,0.62,1.004,1.098,1.2,0.634,0.914,1.206,1.143,1.322,1.466,1.374,0.566,1.082,0.704,1.323,0.799,0.819,1.315,1.037,0.69,1.113,1.045,0.853,0.819,1.202,1.038,0.575,1.147,1.061,0.78,0.661,1.211,1.046,0.552,0.747,1.069,0.957,0.872,0.934,0.621,0.838,0.85,0.525,0.689,0.579 +NM_017578,0.96,1.089,0.976,0.771,0.938,0.922,0.991,0.98,0.988,0.917,1.224,1.076,1.051,1.05,0.894,0.999,1.013,0.924,0.977,1.067,1.129,0.944,0.928,1.017,1.084,1.142,0.836,1.08,0.776,0.89,0.965,1.214,1.106,1.017,0.944,0.98,0.923,1.076,1.017,1.015,1.047,1.074,0.944,1.092,1.07,0.937,1.081,0.945,0.932,1.198,1.03,0.993,1.186,1.089 +NM_017580,0.788,0.784,1.656,0.571,1.131,0.88,0.815,1.136,1.712,0.97,1.202,1.021,0.765,1.121,1.092,1.097,0.798,1.395,0.973,0.926,0.725,0.859,0.797,1.011,0.738,0.625,0.845,1.552,0.628,0.85,1.227,1.908,2.325,0.886,1.018,1.641,0.798,0.783,1.013,1.932,1.254,1.643,0.91,1.121,1.056,0.837,1.355,0.638,0.817,0.926,0.817,1.591,0.917,1.013 +NM_017581,1.188,0.954,0.99,0.899,1.046,1.007,0.829,1.074,0.868,0.885,0.955,1.177,0.841,0.976,0.882,1.077,0.942,0.894,0.972,0.99,0.969,0.911,0.947,1.04,1.054,1.015,1.044,1.032,0.679,1.006,1.014,0.942,0.909,0.887,0.983,0.911,0.912,1.112,0.979,1.059,0.935,1.0,0.929,0.916,0.93,1.113,0.989,1.02,1.018,1.116,1.108,0.912,1.032,0.964 +NM_017582,0.878,1.028,1.057,0.768,0.892,1.209,0.693,0.701,1.109,0.891,1.109,0.86,0.787,0.96,0.954,1.423,0.737,1.001,0.942,1.014,0.66,0.989,1.162,1.022,0.812,0.812,0.982,0.901,0.728,0.957,0.943,1.739,0.914,1.287,0.58,1.02,1.123,0.973,0.999,0.921,0.969,1.149,0.782,1.324,0.977,0.89,0.707,0.835,0.773,0.869,1.006,0.806,0.799,1.619 +NM_017583,0.656,1.211,1.023,0.652,0.691,0.966,0.798,0.564,0.928,0.822,0.84,0.797,0.726,0.481,0.972,1.117,0.695,0.812,0.754,1.142,0.48,0.929,1.24,1.059,1.083,0.765,1.016,0.673,0.634,1.69,0.736,1.526,0.815,1.395,0.269,1.764,1.169,0.965,1.651,2.222,0.962,1.421,0.81,1.128,0.746,1.163,0.811,0.682,1.057,0.584,1.112,2.512,0.793,1.97 +NM_017584,1.062,0.958,1.162,0.993,0.876,1.18,1.141,1.028,1.071,0.992,1.006,1.099,0.938,1.001,1.302,1.115,0.911,0.967,1.118,0.84,0.998,1.028,1.123,0.98,0.978,0.882,0.851,0.976,0.95,1.273,1.13,0.949,0.968,0.859,1.186,1.018,0.998,1.078,1.13,0.954,0.957,1.048,0.806,1.042,0.919,0.864,1.121,1.019,0.828,1.09,1.017,1.004,0.95,1.034 +NM_017585,0.789,1.329,0.896,0.881,0.874,1.296,1.186,0.907,0.894,0.7,1.081,0.877,0.872,0.95,0.893,1.115,0.823,1.075,0.929,1.031,0.78,0.92,1.237,0.938,0.921,0.757,0.921,0.893,1.152,1.776,0.958,3.26,1.411,1.075,0.93,2.231,1.128,0.856,1.699,3.264,1.046,0.929,0.983,1.443,0.979,1.018,0.958,0.774,0.818,0.843,1.075,1.378,0.882,1.628 +NM_017586,0.46,1.307,0.525,1.346,0.556,2.096,1.16,0.507,0.512,0.432,1.996,0.539,0.48,0.41,1.006,1.678,0.521,1.282,0.762,1.448,0.59,0.663,0.938,0.503,1.794,0.852,0.52,0.437,1.834,1.601,0.485,1.232,0.886,2.566,0.478,0.816,1.459,0.66,2.097,0.965,0.532,1.576,1.066,1.374,0.461,1.426,0.764,0.779,1.0,0.508,1.036,0.554,0.545,0.894 +NM_017588,0.9,1.036,1.133,0.696,0.913,0.931,0.685,0.56,1.357,1.36,0.678,1.329,0.809,0.65,1.139,0.933,1.117,0.912,1.098,0.883,0.679,0.905,1.219,1.4,0.63,0.898,1.224,0.9,0.508,0.805,1.108,1.579,2.735,0.923,0.529,1.8,0.806,1.045,1.569,1.342,1.271,0.822,0.65,1.278,1.457,0.805,1.051,0.914,1.133,1.034,1.057,0.983,0.935,1.734 +NM_017589,1.012,1.041,1.127,0.96,0.832,1.027,0.723,1.009,0.864,0.95,0.986,1.224,0.928,1.085,0.795,1.086,0.947,1.091,1.024,1.13,0.974,0.848,0.983,0.919,0.959,0.969,1.025,1.117,0.844,1.043,1.089,0.862,0.954,1.068,1.054,0.968,0.939,1.045,0.96,1.021,0.931,1.055,0.915,0.994,0.958,0.94,0.956,1.131,1.072,0.787,0.996,0.766,0.857,1.072 +NM_017590,0.989,1.158,0.88,0.933,0.908,1.144,0.882,0.914,0.915,0.921,0.952,0.879,0.979,1.097,0.881,1.058,0.896,0.977,1.129,0.915,0.905,0.875,0.944,1.005,1.002,1.056,1.113,1.207,1.131,0.96,1.056,1.129,0.945,1.085,0.785,0.981,0.886,1.084,1.172,0.879,0.851,1.175,1.202,0.866,0.994,0.926,0.738,0.904,1.385,0.834,1.012,1.068,0.859,1.092 +NM_017593,0.954,0.875,1.073,0.855,1.239,0.97,0.84,0.762,1.223,1.612,0.951,1.06,0.859,0.912,1.222,1.308,0.992,0.996,1.048,0.938,0.843,0.774,1.036,1.277,0.849,0.992,1.223,1.241,0.808,0.964,1.368,0.877,1.099,1.034,1.036,0.835,0.983,1.054,1.053,1.006,1.176,0.949,0.867,0.954,1.266,1.113,1.187,0.985,1.024,0.937,0.992,0.976,1.174,0.999 +NM_017594,1.145,1.092,0.954,1.08,1.003,1.005,1.15,0.982,0.894,1.026,0.857,0.942,0.954,1.186,0.901,1.022,0.954,0.947,0.869,1.155,1.111,0.943,1.297,0.943,1.12,1.018,0.995,0.981,0.931,0.936,1.088,0.925,0.975,0.938,1.174,1.091,0.962,0.83,0.888,1.037,0.865,1.068,0.931,1.1,0.805,0.99,0.983,1.217,1.042,0.954,0.957,0.964,0.929,1.018 +NM_017595,1.23,0.86,1.122,1.093,1.045,1.08,0.697,0.799,1.125,0.976,0.782,0.9,1.044,0.948,0.822,0.91,1.171,0.882,1.173,0.672,1.138,1.274,0.765,1.362,0.911,1.361,1.199,0.901,1.056,0.994,0.797,1.394,1.236,0.967,1.182,0.632,0.861,1.197,1.61,0.928,1.162,0.85,0.664,1.672,0.991,0.788,0.921,1.219,0.972,1.264,0.745,0.888,0.954,1.039 +NM_017597,0.959,0.993,1.156,0.914,0.966,1.0,0.841,0.885,1.059,1.098,1.039,1.077,0.957,0.813,0.923,1.14,0.919,0.842,1.118,0.949,0.959,1.022,1.05,0.987,1.023,1.042,0.904,1.071,0.91,1.003,1.018,0.952,0.973,1.084,0.965,0.948,0.928,0.931,1.085,1.047,0.964,1.027,0.887,0.937,0.912,0.993,1.225,1.012,1.066,0.961,0.979,1.122,0.944,0.977 +NM_017598,0.982,1.0,1.021,1.09,1.05,1.143,1.041,1.251,0.988,0.874,0.838,1.105,1.067,0.831,0.829,0.957,1.032,1.051,0.922,1.049,1.103,1.147,0.953,1.04,0.872,1.059,0.989,1.086,0.89,0.877,1.176,0.927,1.073,0.833,1.155,0.907,1.001,0.912,0.914,0.989,1.178,0.989,1.017,0.962,1.28,0.954,0.963,1.093,1.007,1.061,0.973,0.981,1.246,0.775 +NM_017599,0.789,0.782,1.023,0.649,0.883,1.299,0.601,0.521,1.386,1.226,1.037,1.212,0.736,0.691,0.995,0.969,0.688,0.738,0.65,1.424,0.516,0.831,1.208,1.128,0.574,0.615,1.052,1.509,0.45,0.858,0.878,1.893,1.081,0.956,0.517,1.842,0.916,0.981,1.31,1.242,1.281,1.116,1.173,1.189,0.784,1.568,1.346,0.458,1.181,0.613,1.242,1.034,0.75,1.552 +NM_017600,1.022,0.996,1.028,0.914,1.039,0.983,1.144,0.883,0.994,1.0,1.042,1.155,1.099,0.889,0.902,1.0,0.979,0.928,1.015,0.907,1.034,0.938,0.83,1.024,1.034,1.071,1.081,0.895,1.63,0.997,0.904,0.875,0.902,1.041,0.954,1.095,0.977,0.968,0.956,0.957,1.049,0.968,1.152,0.924,1.116,1.091,0.952,1.007,0.952,1.038,1.002,1.124,0.918,1.091 +NM_017602,0.853,1.155,1.038,0.985,1.06,1.054,0.778,0.716,0.989,1.077,0.978,0.911,0.883,0.632,0.798,0.967,0.98,0.978,1.017,0.98,0.881,1.27,1.099,0.997,0.908,1.148,1.089,0.91,0.759,1.14,0.847,1.397,0.904,1.037,0.842,0.928,1.108,1.337,1.307,0.925,0.997,1.26,0.867,0.923,0.993,0.82,1.032,1.106,1.031,1.022,0.94,1.007,0.905,0.938 +NM_017607,0.918,0.952,0.967,1.075,0.994,1.084,0.883,0.905,1.08,1.084,1.045,0.919,0.934,0.767,0.875,0.944,1.092,1.02,0.816,1.053,0.738,1.012,1.16,1.118,0.923,0.909,0.952,1.028,0.746,1.085,1.026,1.236,1.014,1.16,0.976,0.951,0.927,1.039,1.244,1.082,0.938,1.113,0.96,0.881,1.064,1.07,1.095,0.976,1.046,0.971,1.073,0.874,0.754,1.108 +NM_017609,1.039,1.054,0.974,0.898,1.085,0.947,1.028,0.972,0.936,0.972,1.098,1.05,0.93,0.879,1.33,1.087,0.936,0.993,1.207,1.046,1.048,1.036,0.917,0.95,1.171,1.007,0.929,0.822,1.02,0.901,0.907,1.107,0.94,1.053,1.109,0.916,1.022,1.071,0.956,1.08,0.902,0.977,0.941,1.055,0.895,0.951,1.016,1.145,1.002,1.05,1.008,0.974,0.953,0.936 +NM_017610,1.033,0.909,0.951,0.956,1.009,0.849,0.837,0.909,1.112,0.891,1.103,0.988,0.953,0.998,0.91,1.106,0.979,0.962,1.02,0.921,0.952,1.096,1.092,0.94,0.924,1.031,1.172,0.917,0.851,0.985,0.939,0.997,1.075,1.103,0.831,0.946,1.099,0.879,1.082,1.104,0.955,0.999,0.939,1.027,0.919,1.045,1.016,0.94,0.945,0.863,1.023,1.036,0.991,1.144 +NM_017611,0.635,1.027,1.545,0.659,1.061,0.575,0.523,0.353,1.376,1.834,0.611,0.971,0.707,0.807,0.696,0.897,0.809,1.129,1.185,0.596,0.652,0.78,2.089,1.817,0.431,1.096,2.52,0.682,0.263,0.765,0.872,2.586,0.654,0.943,0.33,3.948,0.584,0.971,3.139,1.611,1.34,0.935,0.574,1.342,1.455,1.217,1.108,0.915,0.935,1.362,1.387,2.396,1.442,3.249 +NM_017612,0.916,0.88,1.245,0.848,0.899,0.992,1.055,0.701,1.125,1.098,0.941,0.716,0.798,0.983,1.047,1.021,1.058,0.955,1.066,0.936,0.869,0.667,1.247,0.965,0.768,0.802,1.219,0.977,0.59,0.819,1.037,1.237,1.342,1.272,0.718,0.898,0.965,0.895,0.931,0.857,1.183,0.889,0.862,1.023,1.056,0.914,1.07,0.799,1.113,0.855,1.004,0.826,0.989,1.38 +NM_017613,1.109,0.91,1.102,0.905,1.109,1.036,1.039,0.925,1.042,0.998,1.051,0.992,0.977,1.137,1.166,1.1,0.962,0.846,0.991,0.999,1.078,0.964,0.91,0.937,0.897,0.954,1.002,1.063,1.484,1.088,1.016,0.895,1.129,0.849,0.974,1.155,0.949,0.99,1.012,1.064,1.028,0.921,1.101,1.176,0.997,0.924,0.906,0.933,1.155,0.951,0.935,0.896,0.935,1.164 +NM_017615,0.525,1.004,1.007,0.719,0.769,1.367,0.604,0.564,1.077,0.746,1.177,0.851,0.67,0.709,1.129,2.085,0.638,0.757,1.08,0.98,0.497,0.799,1.243,0.838,0.644,0.558,1.112,0.794,0.465,1.181,0.786,0.932,1.51,1.594,0.158,1.343,1.13,0.932,1.416,0.72,1.07,1.334,0.642,0.778,0.782,1.027,1.192,0.749,1.067,0.534,1.131,0.654,0.882,1.408 +NM_017617,0.852,0.821,2.103,0.666,1.458,0.55,0.529,0.472,1.317,1.542,0.531,1.065,0.675,0.719,0.765,0.69,1.898,0.934,0.849,1.08,0.829,0.978,1.233,1.0,0.507,0.922,2.537,1.052,0.299,0.826,1.353,2.569,1.309,0.632,0.392,2.153,0.688,1.201,1.34,3.068,1.247,1.057,0.655,0.898,1.347,0.701,1.563,1.077,0.995,1.126,1.132,1.477,0.901,2.089 +NM_017621,0.833,0.94,1.076,0.869,0.952,1.161,0.901,0.842,1.052,0.797,0.897,0.998,0.824,0.805,0.991,1.056,0.927,1.075,1.075,1.1,0.914,0.87,1.221,0.95,0.879,0.841,1.092,1.038,0.757,1.228,0.891,1.176,1.042,1.108,0.72,0.955,1.031,1.012,1.112,0.928,0.928,1.098,0.702,1.115,0.998,0.982,0.876,0.824,0.879,0.889,0.95,1.106,0.931,1.073 +NM_017623,0.686,1.507,0.81,0.956,0.665,1.23,0.766,0.511,0.733,0.701,0.966,0.65,0.72,0.658,0.677,0.93,0.794,0.917,0.835,1.133,0.654,0.759,1.516,0.65,1.266,0.86,0.899,0.597,0.851,1.683,0.634,1.963,1.376,1.681,0.567,0.802,1.038,0.79,1.9,1.573,0.729,1.712,0.976,3.092,0.667,0.827,0.801,0.778,0.836,0.745,1.158,1.043,0.671,1.536 +NM_017624,0.993,1.019,1.032,0.823,0.923,1.01,0.994,1.086,1.009,1.011,0.898,1.041,1.06,0.949,1.206,0.995,0.916,1.125,0.936,1.009,1.072,0.928,0.947,1.003,0.964,1.034,1.069,1.119,0.915,1.096,0.895,1.02,0.976,0.935,1.026,0.987,1.021,0.904,1.007,1.02,1.076,0.899,0.997,0.908,0.941,0.897,0.905,1.104,1.052,0.916,1.034,0.923,0.931,0.904 +NM_017625,0.662,5.628,0.659,10.86,0.603,1.341,0.822,0.602,0.638,0.74,28.3,0.655,0.658,0.755,12.34,32.96,0.671,0.703,0.669,25.25,0.679,0.659,13.35,0.732,1.533,0.6,0.603,0.656,0.688,1.113,0.644,0.796,0.7,2.607,0.658,1.925,12.7,0.619,3.078,0.665,0.597,11.35,4.815,0.756,0.588,66.95,1.679,0.617,38.66,0.693,3.184,1.277,0.668,45.1 +NM_017626,0.946,1.14,0.996,0.927,0.934,0.907,0.88,0.656,1.316,0.941,1.029,0.925,0.839,0.84,0.804,0.977,0.915,0.887,1.172,0.93,0.868,0.829,0.899,1.006,0.876,1.262,1.173,1.01,0.829,1.079,0.906,1.093,1.364,1.201,1.037,1.112,0.824,1.111,1.246,0.878,1.216,0.97,1.108,2.141,1.012,0.904,0.982,0.996,0.903,0.933,0.88,0.906,0.999,1.429 +NM_017628,1.005,0.922,1.05,0.945,1.029,0.994,0.897,0.969,1.221,1.075,1.03,0.959,0.948,1.052,0.997,1.171,0.937,0.963,1.026,0.968,1.112,0.981,1.028,1.006,1.058,0.952,1.106,1.046,0.644,0.955,1.122,0.964,0.983,1.044,1.31,1.016,1.005,1.132,0.979,0.991,1.28,1.164,0.939,0.903,1.043,0.975,1.081,1.202,0.939,0.847,0.992,1.15,1.018,1.017 +NM_017629,0.964,1.055,1.188,1.022,1.065,1.107,1.067,0.79,1.134,1.051,1.018,0.928,0.873,1.025,0.96,0.997,0.98,1.005,0.848,1.048,0.821,0.949,0.88,0.914,1.001,0.944,0.978,1.08,0.849,1.152,1.033,1.087,1.035,1.288,0.929,0.809,1.025,1.198,1.097,0.997,1.004,1.006,0.845,0.798,0.981,1.036,0.843,1.082,0.77,0.957,0.902,0.92,1.06,0.906 +NM_017630,1.089,0.967,0.8,1.104,1.0,0.917,1.0,1.073,1.064,0.943,0.938,0.989,0.937,0.861,0.922,0.949,0.965,0.995,1.01,0.803,1.178,1.001,1.108,1.064,1.124,1.011,0.972,1.122,0.868,0.984,1.083,0.969,1.069,0.988,0.852,1.045,1.019,0.96,1.007,1.028,0.92,1.108,1.085,1.026,1.014,1.088,1.009,0.931,1.083,0.985,1.102,0.927,0.926,1.069 +NM_017631,0.629,1.395,0.927,1.324,0.543,3.442,2.838,0.551,0.614,0.516,3.515,0.515,0.489,0.588,1.182,1.381,0.707,1.482,0.6,1.289,0.549,0.48,1.45,0.538,1.229,0.515,0.662,0.532,1.152,2.659,0.521,0.752,1.786,3.743,0.497,0.793,3.254,0.635,2.373,0.599,0.639,2.138,0.842,1.398,0.551,1.497,0.723,0.542,0.867,0.535,2.401,0.854,0.775,1.821 +NM_017632,1.105,0.872,1.328,0.918,1.576,0.937,0.658,1.145,2.974,1.549,1.073,0.994,0.946,1.236,1.298,1.249,0.952,1.31,1.266,1.108,0.825,0.671,0.759,1.012,0.704,1.086,1.493,1.9,0.489,1.031,1.914,1.09,1.687,0.93,2.378,0.99,0.805,0.817,0.956,0.945,2.333,0.91,1.062,0.901,1.167,1.132,1.795,1.016,1.21,1.016,0.87,1.058,1.006,1.576 +NM_017633,0.287,1.628,0.53,0.888,0.298,3.328,2.565,0.246,0.338,0.284,1.753,0.317,0.304,0.273,1.007,1.354,0.415,1.752,0.4,1.856,0.236,0.294,1.502,0.372,1.289,0.29,0.464,0.265,2.532,2.236,0.251,0.999,0.801,3.087,0.223,0.732,2.835,0.353,2.52,0.898,0.354,2.355,1.649,1.183,0.376,1.876,0.83,0.285,1.51,0.579,1.453,0.645,0.497,1.417 +NM_017634,0.785,0.601,1.522,0.849,1.35,1.093,0.761,0.658,1.336,1.243,1.169,0.879,0.73,0.812,1.108,1.27,1.0,1.342,1.257,0.896,0.713,0.713,1.061,1.148,0.639,0.826,1.341,1.164,0.466,1.132,1.134,0.977,1.127,1.214,0.704,0.935,1.229,0.896,1.26,0.534,1.113,0.963,0.721,0.79,1.11,1.573,1.099,0.825,1.583,0.986,1.161,0.887,0.902,1.376 +NM_017635,0.648,0.999,1.337,0.704,0.788,1.178,0.675,0.553,0.844,0.655,1.397,0.962,0.621,0.602,0.879,1.555,0.805,1.012,1.006,1.249,0.443,0.904,1.206,1.082,0.719,0.636,1.126,0.825,0.646,1.688,0.761,1.414,1.487,1.22,0.373,1.307,1.354,0.887,1.211,1.67,0.885,1.487,0.788,0.811,0.864,1.272,0.895,0.624,1.15,0.7,1.133,0.851,0.746,1.003 +NM_017636,0.522,1.553,0.71,1.161,0.546,1.923,0.83,0.506,0.562,0.474,1.803,0.454,0.565,0.481,1.249,2.781,0.745,1.194,0.727,1.712,0.47,0.507,2.373,0.466,1.091,0.57,0.684,0.449,1.235,1.893,0.524,0.966,1.597,2.371,0.496,0.865,1.686,0.581,3.212,0.769,0.539,2.412,1.178,1.556,0.51,1.628,0.758,0.554,1.069,0.612,1.761,0.711,0.687,1.313 +NM_017639,1.043,0.958,0.994,1.034,0.983,1.103,1.081,0.945,0.991,0.814,1.026,0.887,0.804,1.052,1.008,0.923,1.105,1.16,0.966,1.031,1.108,1.121,0.932,1.03,0.933,1.03,0.848,0.919,1.266,1.03,0.907,0.952,1.144,1.133,1.237,0.959,1.098,0.991,1.094,0.883,0.887,0.943,0.903,1.025,0.936,0.883,0.995,1.1,0.98,0.997,0.937,0.979,0.945,1.114 +NM_017640,0.738,1.089,1.175,0.844,0.989,1.16,0.762,0.587,0.948,0.892,0.878,0.796,0.676,0.8,1.747,1.903,0.768,1.005,0.919,1.275,0.699,0.699,1.672,0.943,0.772,0.879,0.97,0.856,0.946,0.995,0.837,0.955,2.28,1.054,0.695,1.092,1.556,0.779,1.335,0.926,0.863,1.285,1.448,1.49,0.837,1.253,1.044,0.742,1.687,0.984,1.34,0.951,0.848,1.927 +NM_017641,1.234,0.726,1.053,0.762,1.786,0.972,0.518,1.416,2.181,1.01,0.883,1.592,0.834,1.132,1.708,1.282,0.594,0.9,1.048,1.074,0.561,2.12,1.089,2.249,0.569,1.167,1.298,2.228,0.366,0.948,1.942,0.611,1.055,0.846,1.014,0.917,0.9,2.346,1.207,0.449,1.349,1.014,0.553,0.819,1.399,1.096,0.942,1.407,1.19,0.777,1.192,0.592,0.571,1.022 +NM_017644,1.085,1.269,1.027,0.791,1.085,1.019,0.83,0.837,1.335,0.869,0.813,1.001,0.873,0.964,0.989,0.921,1.067,1.025,0.939,1.033,0.956,0.968,0.916,0.996,1.108,0.884,1.082,1.177,1.105,1.286,1.141,1.207,1.295,0.913,1.342,0.914,0.912,1.224,1.149,0.866,1.023,0.918,1.257,1.073,1.002,1.162,1.118,0.934,1.049,0.9,0.958,0.91,0.796,1.198 +NM_017645,1.08,1.154,1.12,1.012,1.192,1.093,1.089,0.973,0.925,1.014,0.9,1.098,1.013,1.013,0.946,1.071,1.122,0.958,1.033,1.057,1.089,0.996,0.981,1.141,1.093,0.972,0.946,1.002,1.254,1.13,1.044,0.948,0.976,0.98,1.047,1.002,1.055,1.065,0.923,1.057,1.032,0.861,1.036,0.881,1.11,0.983,0.94,1.01,1.027,1.04,0.892,1.004,1.055,1.01 +NM_017646,1.048,1.063,1.531,0.795,1.087,0.773,0.587,0.819,1.46,0.998,0.803,1.001,0.855,0.93,1.307,1.178,1.125,1.012,1.235,0.983,0.773,1.212,0.954,1.269,0.706,1.118,1.461,1.119,0.797,1.024,1.127,1.377,2.224,0.901,0.507,0.861,0.929,1.607,1.02,0.847,1.41,0.988,0.812,1.299,0.994,0.761,0.967,0.857,0.781,1.042,0.889,0.879,0.972,1.6 +NM_017647,0.841,1.153,0.891,0.851,0.832,0.937,0.796,0.636,0.82,0.899,1.093,0.894,0.705,0.761,0.876,1.022,0.878,0.941,1.055,0.94,0.77,0.987,1.375,0.866,0.838,0.984,0.925,0.781,0.806,1.179,0.656,1.483,1.298,1.208,0.668,1.255,0.971,0.785,1.826,1.019,0.794,1.211,0.865,2.203,0.829,0.993,0.929,0.775,1.076,0.875,1.042,1.072,0.942,1.229 +NM_017651,0.879,1.016,1.001,0.879,0.923,1.052,0.967,1.089,0.999,0.71,0.986,0.818,0.764,1.058,1.112,1.123,0.966,0.863,0.849,0.952,0.813,0.817,1.136,1.029,0.988,1.011,0.989,0.893,1.582,1.025,0.998,1.371,1.48,1.204,0.842,1.003,0.895,0.861,1.022,1.024,0.822,1.16,1.176,0.849,0.747,0.927,0.908,0.797,0.838,1.014,0.921,0.926,0.913,1.627 +NM_017652,0.7,1.016,1.155,0.842,1.085,1.275,1.048,0.855,1.061,1.175,1.218,1.02,0.965,0.745,0.97,0.581,0.8,1.165,1.089,0.979,0.727,0.943,1.053,1.121,0.922,0.871,1.01,0.978,0.749,1.264,1.0,0.89,1.067,1.619,0.97,0.945,1.0,1.126,0.92,0.945,1.054,1.091,0.829,0.97,0.966,0.904,0.99,0.83,0.878,0.904,0.792,0.943,0.942,1.309 +NM_017653,1.106,0.805,1.126,0.833,1.268,1.038,0.532,0.726,1.42,1.066,1.018,1.052,0.984,0.87,1.147,1.492,0.933,0.935,1.338,0.819,0.638,0.992,1.166,1.186,0.699,1.133,1.113,1.229,0.361,1.408,0.975,1.013,1.458,1.215,0.686,0.774,0.855,1.066,1.186,0.558,1.265,1.156,0.765,1.434,1.038,0.934,1.142,0.929,0.797,0.892,0.918,0.794,1.085,0.719 +NM_017655,1.058,0.896,1.046,0.962,0.936,1.463,1.037,0.894,0.995,0.894,1.158,1.009,0.868,0.897,1.224,1.762,0.965,1.002,1.057,1.14,1.038,0.905,1.192,0.829,0.819,0.844,0.94,0.921,0.795,1.339,0.958,0.867,1.735,1.177,0.956,0.85,1.201,1.118,1.155,1.135,1.048,1.135,0.966,0.894,1.01,1.06,1.044,0.91,1.232,1.032,1.074,0.989,0.874,1.055 +NM_017657,0.651,1.017,1.099,0.797,0.88,0.997,0.922,0.517,1.157,0.817,1.235,0.541,0.674,0.808,1.036,1.557,0.653,0.901,0.868,1.408,0.503,0.561,1.39,0.792,0.76,0.577,1.028,0.949,0.509,1.151,1.152,0.971,2.425,1.477,0.66,0.753,1.078,0.629,1.248,0.983,0.923,1.146,1.031,0.844,0.906,1.317,0.896,0.567,1.25,0.728,1.149,0.688,0.738,1.589 +NM_017659,1.04,1.223,0.869,0.949,1.0,0.996,1.047,0.786,0.918,0.928,0.87,1.133,1.196,0.97,0.971,1.011,0.934,0.917,0.828,1.148,1.033,0.95,1.268,1.106,0.99,0.963,0.96,1.01,1.095,1.06,0.999,1.082,1.064,1.127,1.062,0.951,1.097,0.975,1.032,0.892,0.89,1.103,0.991,1.083,0.957,0.991,1.107,1.073,0.92,1.005,0.952,0.92,0.971,1.043 +NM_017660,0.766,0.761,1.275,0.741,0.818,1.086,0.615,0.471,1.083,1.199,0.916,0.814,0.54,0.635,0.92,1.15,0.89,0.825,1.025,0.809,0.636,0.73,1.612,1.167,0.617,0.843,0.931,0.863,0.548,1.192,0.898,0.995,0.98,1.071,0.318,0.972,1.01,0.873,1.601,1.335,1.069,1.038,0.933,1.582,1.312,1.065,0.978,0.717,1.093,1.022,1.04,1.153,1.023,1.343 +NM_017662,0.826,1.025,0.993,0.87,1.188,0.938,0.914,0.953,1.046,1.096,0.93,1.098,0.9,0.872,0.996,1.007,1.145,0.797,0.912,1.166,0.964,1.165,0.948,0.975,0.912,1.102,1.192,1.111,1.225,0.895,0.747,0.726,1.001,0.992,1.194,1.063,0.958,1.032,0.994,1.412,0.999,1.315,0.798,0.958,0.989,1.002,0.874,1.223,0.998,1.16,0.917,0.969,1.182,1.267 +NM_017664,0.749,1.186,0.857,0.978,0.868,1.104,0.804,0.635,0.91,0.771,1.129,0.688,0.609,0.736,1.129,1.881,0.775,0.863,0.8,1.336,0.635,0.798,1.443,0.917,0.695,0.797,0.844,0.804,0.866,1.127,0.839,2.572,1.3,1.168,0.687,1.024,1.081,0.836,1.566,1.455,0.859,1.229,1.192,1.548,0.929,1.209,1.073,0.781,1.013,0.695,1.051,0.912,0.84,1.432 +NM_017665,0.864,0.902,1.155,0.872,1.084,1.115,0.655,0.918,1.074,1.052,0.99,1.137,0.954,0.804,1.14,1.512,0.892,1.027,1.255,0.984,0.675,0.898,0.96,1.299,0.63,0.942,1.194,1.027,0.638,1.024,1.249,0.854,1.32,1.159,0.899,0.763,1.028,0.913,1.332,0.815,1.199,0.889,0.765,0.752,1.013,0.954,1.18,1.251,0.916,1.054,1.041,0.895,0.823,1.46 +NM_017666,0.966,1.197,1.134,0.913,1.091,0.96,0.855,0.968,1.101,1.183,0.894,0.908,1.038,0.961,1.092,0.964,0.985,1.03,1.164,1.025,0.924,1.019,1.1,1.114,0.951,0.977,1.17,0.998,0.884,0.986,1.047,1.081,1.408,1.087,0.773,0.908,1.05,0.995,1.062,0.968,0.985,1.002,0.818,1.135,1.102,0.978,0.986,0.961,0.996,0.93,0.946,0.982,0.99,1.385 +NM_017668,0.549,1.29,1.338,0.592,0.91,1.297,0.748,0.407,0.902,0.956,0.835,0.649,0.483,0.497,0.743,0.87,0.758,1.093,0.793,1.174,0.489,0.672,1.451,0.954,0.501,0.578,1.803,0.708,0.464,1.85,0.742,1.236,2.157,0.986,0.287,1.135,0.713,1.211,1.332,1.376,1.038,1.285,0.56,1.049,0.987,0.798,1.067,0.481,0.792,0.707,1.294,0.898,1.046,1.373 +NM_017670,1.237,0.679,1.266,0.926,0.959,0.833,0.497,0.815,1.012,1.152,1.049,0.897,0.805,0.752,0.984,2.021,0.829,1.19,2.472,0.79,0.798,0.877,1.017,1.053,0.644,1.933,1.043,0.72,0.447,0.957,1.161,0.895,1.929,1.424,0.328,1.491,0.804,0.927,1.854,0.821,0.857,0.89,0.503,1.571,1.457,0.69,0.676,1.852,0.684,1.418,0.828,0.737,1.592,1.024 +NM_017671,0.305,0.685,1.003,0.771,0.483,1.676,0.735,0.291,0.706,0.698,1.935,0.297,0.451,0.327,0.794,1.823,0.902,0.92,0.639,1.193,0.389,0.746,2.541,0.542,0.398,0.405,1.323,0.503,0.526,2.755,0.744,0.203,1.947,1.311,0.0927,1.163,1.783,0.838,1.008,1.342,1.101,1.647,1.133,3.249,1.326,2.018,1.491,0.294,0.997,0.396,1.035,1.237,0.921,1.649 +NM_017672,0.869,1.135,1.074,0.866,1.051,1.205,0.804,0.784,0.968,0.922,1.269,0.91,0.757,0.996,1.067,1.17,0.922,0.893,0.858,1.225,0.939,0.787,1.646,0.804,0.929,0.816,1.169,1.085,0.693,1.376,0.891,1.059,1.013,1.203,0.71,0.983,1.141,0.865,1.458,0.944,1.047,1.071,0.797,0.927,0.883,1.048,0.96,0.667,1.071,0.918,1.162,0.744,0.961,1.864 +NM_017673,0.76,1.311,1.021,0.942,0.834,1.325,0.989,0.649,0.766,0.865,1.13,0.796,0.797,0.77,0.94,1.154,0.763,1.068,0.963,1.119,0.641,0.766,1.115,0.879,1.001,0.829,1.059,0.798,0.724,1.285,0.933,1.138,1.265,1.307,0.675,0.999,1.151,0.752,1.135,1.136,0.769,1.309,0.741,0.957,0.833,1.077,0.864,0.804,0.848,0.981,1.059,0.708,0.836,1.105 +NM_017674,1.139,1.068,1.06,1.098,0.995,1.16,1.064,1.001,0.967,1.194,1.103,0.848,1.119,0.773,0.796,0.925,1.02,0.972,0.933,0.957,0.978,1.077,0.975,1.151,0.944,1.019,0.997,0.979,1.028,0.91,0.997,0.773,1.142,1.06,0.879,1.009,0.951,1.217,0.74,0.883,0.862,0.934,0.858,1.004,0.962,0.981,0.914,0.931,0.981,1.106,0.958,1.0,1.227,1.065 +NM_017675,0.817,1.01,0.723,1.489,0.7,2.689,1.119,0.674,0.633,0.671,3.77,0.726,0.637,0.674,2.353,3.458,0.792,1.143,0.608,1.867,0.701,0.664,1.7,0.717,1.095,0.807,0.744,0.777,1.26,1.607,0.7,0.99,0.921,1.491,0.775,0.967,2.579,0.795,3.683,1.092,0.691,2.991,1.603,0.849,0.687,3.443,1.096,0.65,2.111,0.669,2.664,0.837,0.817,0.847 +NM_017676,0.897,0.939,1.097,0.89,0.932,1.104,0.927,0.814,1.217,0.953,1.083,0.994,1.028,0.997,1.052,1.444,1.147,0.993,1.154,0.896,0.802,1.004,1.019,1.153,0.895,0.906,1.353,1.013,0.993,0.947,0.981,1.053,1.352,1.04,0.792,0.878,1.016,1.004,1.092,0.939,1.027,1.04,0.865,0.922,1.026,0.994,1.119,1.044,1.022,0.992,0.882,0.98,0.797,1.194 +NM_017677,1.067,1.04,0.979,0.844,1.189,1.024,1.107,1.013,1.041,1.003,1.043,0.837,0.942,0.949,0.869,1.017,0.933,0.937,0.999,0.954,0.769,0.985,0.934,1.058,1.164,1.037,0.989,1.113,1.084,1.084,1.081,0.964,0.938,0.939,0.915,1.053,1.01,1.101,0.962,0.976,0.981,1.054,1.055,1.038,0.925,0.972,1.079,0.915,1.005,1.042,0.914,0.894,0.895,1.012 +NM_017678,1.083,0.916,0.982,0.961,0.927,1.207,1.111,0.938,0.993,0.887,1.041,1.03,1.067,0.895,0.907,0.973,1.068,1.109,0.98,1.156,1.045,0.924,1.115,1.012,1.095,0.922,1.002,1.016,1.068,1.061,1.052,1.023,0.896,1.042,1.102,0.99,0.929,1.121,0.977,1.019,0.874,2.044,1.0,0.921,0.975,1.026,1.001,1.006,1.056,0.994,0.982,0.994,0.933,1.028 +NM_017679,0.918,1.078,1.278,0.765,1.123,0.883,1.008,0.815,0.924,0.94,0.864,0.892,1.004,1.025,0.839,0.969,1.226,1.04,1.079,1.039,0.911,0.972,0.822,1.066,0.79,0.943,0.928,0.843,0.965,1.0,1.003,1.127,1.252,1.041,0.858,0.791,0.868,1.195,1.105,0.891,1.056,1.165,1.194,1.254,1.006,0.906,0.843,1.049,0.927,1.235,0.908,0.981,1.256,0.876 +NM_017680,0.675,2.053,0.998,0.905,0.91,1.878,1.002,0.697,0.762,0.798,0.996,0.698,0.756,0.639,1.301,0.904,0.812,0.705,0.738,1.915,0.848,0.733,1.707,0.81,0.982,0.714,0.688,0.897,0.715,3.571,0.749,13.4,2.452,3.087,0.723,0.912,1.326,1.216,1.644,1.482,1.117,2.025,0.867,0.705,0.838,1.166,1.079,0.743,0.763,0.715,1.226,1.88,0.825,1.343 +NM_017682,0.945,0.956,0.982,1.093,0.853,0.887,1.015,1.004,1.014,0.864,0.841,0.902,1.195,0.9,1.037,1.322,1.052,1.052,0.952,1.128,1.013,1.019,1.255,0.986,0.979,0.941,0.97,0.988,0.906,1.067,0.938,0.916,0.931,1.008,1.081,1.244,0.998,0.92,1.049,1.162,1.042,1.223,1.544,0.949,1.082,0.946,1.02,1.048,1.074,0.938,0.971,0.937,0.883,1.104 +NM_017683,0.962,1.007,1.126,1.119,0.945,0.92,0.939,0.906,1.016,1.01,1.113,1.053,0.944,1.038,1.144,1.022,0.996,1.04,1.148,0.945,1.058,0.951,1.258,1.011,0.938,0.963,0.941,0.956,1.141,1.125,1.018,1.044,1.313,1.158,0.967,0.967,0.997,0.937,0.956,1.104,1.022,0.977,1.028,0.95,0.92,1.084,0.944,0.866,0.883,1.047,0.897,0.901,1.104,1.237 +NM_017684,0.609,1.309,0.822,0.892,0.66,1.282,0.8,0.529,0.697,0.657,1.002,0.649,0.695,0.833,0.859,1.22,0.632,0.998,0.711,1.344,0.532,0.748,1.535,0.687,1.021,0.625,0.803,0.619,1.082,1.295,0.682,1.111,1.211,1.544,0.658,0.831,1.347,0.644,1.4,0.99,0.867,1.316,1.131,0.945,0.761,1.243,0.857,0.716,1.08,0.704,1.066,0.902,0.751,1.612 +NM_017686,0.826,0.941,1.0,0.907,0.914,1.141,0.811,0.811,0.943,0.923,1.097,0.788,0.803,0.937,0.946,1.138,1.0,0.812,1.031,1.119,0.907,0.933,1.039,0.966,0.879,0.911,1.031,0.93,0.697,1.27,0.91,0.919,1.009,1.225,0.706,0.897,1.243,0.875,1.204,1.004,0.861,1.02,0.766,0.995,1.005,1.047,0.98,0.946,1.06,0.932,1.035,0.843,0.767,1.732 +NM_017688,0.884,1.511,1.554,0.542,1.736,1.054,0.572,0.918,1.63,2.398,0.689,1.779,0.775,0.562,0.962,0.901,0.99,1.514,1.791,0.954,0.448,1.264,0.907,2.59,0.5,1.048,0.813,1.708,0.656,1.164,1.219,0.857,0.697,1.269,0.342,0.428,0.863,1.826,0.916,0.594,1.629,1.01,0.43,0.838,1.535,0.744,1.271,1.083,1.153,1.121,0.778,0.471,0.813,1.713 +NM_017689,1.194,0.949,1.076,1.089,1.081,1.029,1.046,1.045,1.136,1.071,1.184,1.09,1.207,1.287,1.041,1.128,1.084,1.101,1.456,1.072,0.916,1.247,0.928,1.213,0.949,0.975,0.898,1.038,0.943,0.953,1.177,1.132,1.05,0.888,1.0,0.95,0.945,1.195,0.857,1.152,0.97,1.042,0.837,0.932,1.121,0.854,0.863,1.16,0.955,1.015,0.853,0.935,1.118,1.025 +NM_017691,0.915,1.097,0.957,0.77,0.899,1.069,0.92,0.803,0.956,0.885,0.997,0.993,0.906,0.889,0.861,1.189,0.922,0.77,1.102,1.108,0.784,0.923,1.333,0.871,0.831,0.942,0.977,0.983,1.075,1.216,0.915,1.276,1.224,1.202,0.825,1.01,1.085,0.92,1.131,1.137,0.936,1.174,1.016,1.104,0.896,1.06,1.075,0.929,0.907,0.819,1.095,0.888,0.979,1.202 +NM_017692,1.096,1.021,1.019,1.088,1.098,1.02,0.843,0.885,0.963,0.927,1.105,0.925,1.026,1.052,0.784,0.841,0.978,1.031,1.046,0.885,0.951,0.94,1.161,1.046,0.943,0.856,1.042,1.023,1.677,0.963,1.128,0.796,0.968,0.964,1.063,0.991,0.998,0.904,1.024,0.977,1.006,1.047,1.145,0.948,1.034,0.919,1.042,0.957,1.026,1.066,1.06,0.969,0.922,0.989 +NM_017693,0.878,1.048,1.005,0.827,0.968,1.268,1.004,0.801,1.068,0.739,1.142,0.776,0.909,0.863,1.047,1.791,0.871,0.897,0.918,1.244,0.837,0.851,1.381,0.893,0.849,0.872,1.053,1.018,0.859,1.208,0.951,1.435,1.256,1.271,0.85,1.022,1.106,0.885,0.918,0.821,0.921,1.19,0.841,0.924,0.844,1.107,0.969,0.759,1.007,0.708,1.167,0.783,0.853,1.403 +NM_017694,0.842,1.037,1.186,0.786,1.087,1.185,0.75,0.984,0.868,1.039,0.898,0.923,0.911,0.676,1.076,1.038,1.047,0.978,1.046,0.898,0.947,1.143,1.106,1.148,1.013,0.988,0.927,0.93,0.723,1.101,1.041,1.005,1.014,1.099,0.883,0.86,0.814,1.088,1.101,1.071,1.128,0.847,1.039,0.995,1.168,1.056,1.045,1.049,1.061,0.897,1.075,0.943,0.797,1.049 +NM_017697,1.312,0.65,1.492,0.68,1.863,0.786,0.559,1.7,2.238,1.707,0.942,1.417,0.961,1.245,1.346,1.348,1.347,1.308,2.176,0.697,0.854,1.386,0.858,2.045,0.335,1.074,1.226,1.69,0.435,0.786,1.918,0.466,1.503,0.807,2.168,0.606,0.884,1.834,0.929,0.501,1.888,0.781,0.594,0.597,1.882,1.173,1.339,1.776,1.468,1.161,0.92,0.553,1.492,1.394 +NM_017699,0.958,1.111,1.036,0.973,0.975,1.272,0.957,0.835,0.963,0.95,1.159,0.925,0.865,0.775,1.176,1.046,0.914,0.936,0.97,1.158,0.955,1.028,0.982,0.879,1.008,0.968,1.328,0.872,0.813,1.191,0.872,0.917,0.977,1.186,0.833,1.088,1.155,0.925,1.287,0.876,0.926,1.053,0.851,1.06,0.956,1.11,0.965,1.086,0.975,0.956,1.113,0.922,0.957,0.984 +NM_017700,1.096,1.037,1.03,1.085,0.952,0.917,0.885,0.954,1.035,1.089,0.882,0.909,1.042,1.0,0.88,0.942,0.988,0.909,1.077,0.947,0.975,0.968,1.028,1.019,1.006,0.97,0.996,1.125,0.72,1.006,0.867,1.112,1.024,0.919,0.913,1.113,0.961,1.041,1.035,0.971,0.907,1.033,1.089,0.921,1.046,1.205,0.992,1.129,1.045,1.068,1.038,0.869,0.929,0.882 +NM_017703,0.589,1.215,1.097,0.81,0.747,1.693,0.92,0.654,0.932,0.817,1.15,0.786,0.56,0.644,1.137,1.991,0.773,1.059,0.556,1.756,0.519,0.789,2.112,0.981,0.672,0.613,1.002,0.803,0.691,1.717,0.756,1.816,1.208,1.433,0.469,0.799,1.191,0.814,1.29,0.93,0.908,1.416,0.833,1.028,0.815,1.694,1.011,0.608,1.255,0.644,1.314,0.74,0.791,1.622 +NM_017704,0.905,1.199,1.083,0.958,0.878,1.238,0.808,1.056,1.069,0.859,1.241,1.085,1.02,0.978,1.044,1.187,0.851,0.873,1.153,1.009,0.644,0.866,0.943,0.902,0.92,0.959,1.233,0.91,0.805,1.278,0.898,0.906,1.877,1.159,0.597,1.217,1.11,1.045,1.166,0.867,1.11,1.135,0.888,0.857,0.845,0.844,0.875,0.931,0.92,0.793,0.972,0.961,0.866,1.332 +NM_017705,1.068,0.918,0.961,1.08,1.014,1.0,1.022,0.909,1.09,1.11,0.748,1.096,1.093,1.047,1.144,0.853,1.1,0.856,1.173,0.847,0.885,0.766,0.827,1.112,1.004,0.965,0.761,1.197,1.883,0.982,1.205,1.071,1.001,0.99,0.865,1.011,1.217,1.046,1.058,0.979,0.99,0.811,1.002,0.935,1.122,0.975,0.953,0.875,0.943,1.32,0.935,0.925,1.083,1.104 +NM_017706,0.847,0.873,1.006,0.765,1.0,1.389,0.816,0.889,1.252,1.114,1.017,0.834,0.781,0.801,0.907,1.51,1.441,1.154,1.369,0.911,0.867,1.167,1.139,1.307,0.666,0.986,1.209,1.008,0.784,1.071,0.985,0.983,2.03,1.252,0.747,0.696,0.968,1.067,1.272,0.679,1.339,1.004,0.709,0.894,1.296,0.938,0.935,0.912,0.839,0.922,1.077,0.774,0.969,1.465 +NM_017707,1.766,1.206,1.367,0.895,2.036,0.965,0.796,1.165,2.616,1.489,0.652,2.18,1.114,1.172,1.375,0.766,0.717,1.662,1.649,1.266,0.649,1.58,0.836,2.789,1.023,1.639,0.968,2.493,0.682,1.473,1.461,1.425,0.628,1.443,0.628,0.505,0.671,1.287,0.719,0.364,1.94,1.339,0.388,0.806,1.91,0.678,1.009,1.721,0.461,1.284,0.892,0.55,1.186,0.586 +NM_017708,0.695,1.159,0.774,1.31,0.621,2.082,1.174,0.676,0.701,0.774,1.194,0.632,0.658,0.678,1.009,1.409,0.805,1.102,0.837,1.399,0.886,0.755,1.606,0.711,1.065,0.738,0.774,0.665,1.378,1.625,0.727,0.921,1.126,1.611,0.791,0.984,1.025,0.768,2.167,0.833,0.631,1.426,1.147,1.353,0.732,1.309,0.829,0.698,1.411,0.845,1.283,0.773,0.78,0.883 +NM_017709,0.788,1.096,0.822,1.158,0.963,1.288,1.482,0.741,1.098,0.781,1.22,0.86,0.774,0.717,0.845,1.091,0.987,1.042,0.817,1.062,0.863,0.79,0.982,0.832,1.547,0.845,0.879,0.795,0.902,1.374,0.89,0.92,1.041,1.541,0.855,0.939,1.306,0.882,1.504,0.857,0.804,1.476,1.025,0.851,0.946,1.012,0.875,0.742,1.152,0.787,1.326,0.921,0.952,1.069 +NM_017711,0.932,0.869,0.962,0.916,0.97,1.732,0.897,0.802,0.829,0.861,1.682,0.987,0.911,1.074,1.296,1.403,0.787,1.065,1.007,1.354,0.909,0.855,1.055,0.933,1.099,0.891,0.961,0.799,1.03,1.197,0.965,0.851,0.844,1.277,0.973,0.905,1.496,0.88,1.34,0.965,0.894,1.771,1.405,1.036,0.851,1.705,1.158,0.918,0.883,0.999,1.434,0.996,1.006,0.837 +NM_017712,1.075,1.059,0.834,0.88,0.999,1.162,0.956,0.924,0.885,0.873,1.049,0.969,0.979,0.781,1.077,1.251,0.897,0.993,0.874,1.016,0.929,0.846,1.05,0.933,0.981,1.013,0.911,0.855,1.071,1.152,1.045,1.187,0.904,0.991,0.947,0.913,1.044,0.872,1.007,0.958,0.897,1.028,1.044,0.991,1.041,1.003,0.995,1.029,1.004,0.907,1.126,1.05,0.813,1.243 +NM_017715,0.979,0.932,0.843,1.015,0.977,1.007,0.793,1.013,0.93,0.996,1.182,0.958,0.942,0.983,0.925,1.047,0.838,0.984,0.841,0.93,0.962,0.96,0.999,1.019,0.944,0.98,1.093,0.859,0.777,1.014,1.011,0.912,1.073,1.09,0.898,0.977,0.979,0.961,1.154,1.029,0.929,1.073,1.087,1.125,0.809,0.998,1.048,0.916,0.858,0.865,1.066,0.926,0.983,1.079 +NM_017716,0.967,1.024,0.915,1.0,1.147,1.034,0.94,1.07,1.146,0.981,1.115,1.003,1.074,0.896,0.808,1.253,1.03,1.002,0.94,1.043,0.968,1.022,0.961,1.131,1.003,0.96,0.92,0.995,1.024,0.85,1.074,0.99,0.886,1.018,1.01,0.992,1.313,1.049,0.905,1.116,1.01,1.059,1.237,0.965,1.0,1.214,1.177,0.925,1.158,0.95,1.05,1.022,1.044,1.035 +NM_017717,1.701,1.858,1.617,2.505,1.73,5.259,2.05,1.767,1.577,1.6869999999999998,5.734999999999999,1.616,1.51,1.685,4.252,11.293999999999999,1.587,2.0469999999999997,1.6669999999999998,4.26,1.605,1.5350000000000001,3.404,1.693,1.9859999999999998,1.635,1.642,1.588,2.387,5.733,1.7730000000000001,1.803,2.076,3.005,1.908,3.739,7.449,1.627,4.635,2.266,1.754,6.147,3.708,2.178,1.6869999999999998,5.263,2.335,1.681,3.2829999999999995,1.674,4.405,1.875,1.452,2.3810000000000002 +NM_017719,0.689,0.925,1.191,0.71,0.942,1.101,0.73,1.125,1.142,0.877,0.995,0.849,0.746,0.788,1.196,1.647,1.247,0.966,1.362,0.863,0.794,0.933,1.062,0.919,0.752,0.939,1.334,0.905,0.642,1.237,1.154,0.924,1.18,1.199,1.432,0.668,1.042,1.128,1.17,0.872,1.138,1.213,1.424,0.662,0.984,1.106,0.953,0.943,1.312,1.025,0.951,0.906,1.028,1.607 +NM_017720,0.768,0.512,0.858,0.64,1.231,1.708,0.4,0.764,1.364,1.256,1.44,1.133,0.816,0.625,1.329,2.207,0.982,1.084,1.497,1.572,0.457,0.558,2.158,1.324,0.396,1.118,1.228,1.226,0.334,1.208,1.203,0.418,0.431,1.132,0.705,0.253,1.561,1.256,0.988,1.024,1.162,1.367,0.876,0.728,1.368,1.496,0.929,1.268,1.012,0.937,1.381,0.499,0.971,0.969 +NM_017722,0.986,0.987,0.995,0.924,0.929,0.836,0.764,0.654,1.212,1.012,0.868,0.989,0.79,0.809,1.006,1.063,0.955,0.949,0.954,0.947,0.773,0.83,1.787,1.39,0.676,0.922,1.339,0.841,0.629,0.923,0.975,1.322,1.566,1.153,0.606,1.222,0.772,0.877,1.261,1.203,1.193,1.16,0.844,1.85,1.276,0.82,0.92,0.805,0.972,0.824,1.094,1.419,1.283,1.985 +NM_017723,0.502,1.054,0.727,1.238,0.465,1.691,0.884,0.497,0.595,0.761,0.938,0.537,0.502,0.565,1.072,1.547,0.952,1.109,0.777,0.998,0.491,0.725,1.324,0.512,0.877,0.59,0.856,0.476,1.146,1.453,0.5,1.154,1.094,1.111,0.886,1.625,1.183,0.838,2.861,1.061,0.659,1.044,1.685,2.212,0.718,0.93,0.874,1.021,1.468,0.745,1.211,0.927,0.636,2.23 +NM_017724,2.011,1.397,2.799,1.326,2.674,2.115,0.8220000000000001,2.045,3.941,3.377,1.781,2.215,1.255,2.1390000000000002,2.518,2.996,2.247,1.904,3.479,1.6190000000000002,1.677,2.332,1.826,3.605,0.9890000000000001,2.227,2.882,2.693,0.929,2.045,3.001,1.553,2.108,1.917,1.211,1.134,1.592,2.6790000000000003,1.759,1.137,2.723,1.49,1.482,1.1059999999999999,2.395,1.952,2.075,2.2889999999999997,1.9609999999999999,1.9660000000000002,1.688,1.26,2.171,2.104 +NM_017725,0.926,1.099,0.979,0.93,1.041,1.058,0.951,1.035,0.956,1.189,0.932,1.065,1.007,1.029,0.698,1.181,1.197,0.998,1.197,0.988,0.934,1.027,0.871,0.947,0.939,0.896,0.907,0.895,1.168,0.99,1.139,0.941,1.062,0.918,1.185,1.055,1.026,1.075,0.971,1.068,0.95,0.896,0.863,0.919,0.925,1.132,0.866,1.23,0.907,1.082,1.03,1.039,0.961,0.822 +NM_017726,0.746,1.299,0.752,1.242,0.767,2.852,0.808,0.907,0.773,0.712,3.064,0.727,0.78,0.816,1.971,6.546,0.701,0.929,0.857,2.213,0.791,0.868,2.654,0.712,0.773,0.758,0.847,0.845,0.706,1.425,0.739,1.097,1.239,1.338,0.892,3.516,3.36,0.799,1.785,1.474,0.71,2.396,2.34,1.049,0.744,3.132,2.073,0.746,3.441,0.701,2.236,0.829,0.78,0.992 +NM_017727,0.737,1.0,0.726,0.943,0.69,1.532,0.964,0.779,0.883,0.744,1.039,0.749,0.753,0.665,0.88,1.607,0.768,1.033,0.984,1.018,0.834,0.822,1.482,0.874,1.032,0.732,0.955,0.629,1.012,1.338,0.786,1.435,3.412,1.325,0.653,0.997,1.056,0.762,1.687,1.162,0.828,1.349,0.696,1.129,0.797,1.079,0.837,0.79,1.088,0.886,1.291,0.887,0.802,1.168 +NM_017728,0.837,1.017,0.946,1.027,0.999,1.011,0.736,0.853,0.924,0.869,0.855,0.923,0.826,0.755,0.875,1.006,0.962,1.065,0.87,0.875,0.787,0.876,1.126,0.953,1.0,0.955,0.926,0.948,0.841,1.133,0.905,1.311,1.008,0.974,0.712,0.899,0.915,0.966,1.272,0.949,0.973,1.004,0.78,1.237,1.029,0.93,0.975,0.917,0.836,0.996,0.923,1.049,1.043,0.967 +NM_017729,1.001,1.003,1.017,0.995,1.104,1.015,1.227,0.783,1.037,0.884,0.972,1.139,1.044,0.883,1.046,0.918,1.077,1.027,1.046,0.865,0.968,1.021,0.959,0.964,0.915,1.116,1.153,1.074,0.849,1.112,0.997,1.14,0.894,0.914,0.991,0.969,1.057,1.024,1.11,0.998,0.85,0.99,0.943,1.033,0.968,0.928,1.152,1.039,0.996,1.034,1.015,1.108,0.991,0.94 +NM_017731,0.622,1.628,0.637,1.369,0.48,3.089,1.476,0.486,0.577,0.564,2.29,0.653,0.531,0.63,1.523,3.258,0.588,1.536,0.555,2.089,0.631,0.583,1.53,0.617,1.33,0.54,0.499,0.563,1.912,3.75,0.599,1.974,0.917,4.883,0.571,1.03,1.734,0.521,2.991,0.621,0.66,2.05,0.875,1.002,0.649,1.83,0.657,0.606,1.301,0.6,1.848,0.746,0.527,0.943 +NM_017732,1.044,1.05,0.969,0.974,1.037,1.034,1.056,0.807,1.074,0.805,0.773,1.103,1.119,0.921,1.063,1.021,1.107,1.019,0.962,1.028,1.264,0.953,0.891,1.019,1.22,0.992,0.986,0.97,0.911,1.007,1.006,0.966,1.232,0.982,0.891,1.009,1.146,1.099,1.069,0.955,1.057,0.853,0.855,1.021,0.966,1.094,1.067,0.928,1.015,0.979,1.033,1.019,1.21,0.957 +NM_017735,0.839,1.04,1.045,0.786,1.166,0.816,0.637,0.739,1.392,1.125,0.783,0.981,0.955,0.639,0.938,1.176,1.026,0.949,1.237,0.968,0.988,1.05,1.059,1.277,0.695,0.916,1.173,1.061,0.783,0.878,1.111,1.071,2.515,1.146,0.617,0.959,0.952,1.048,1.277,0.949,1.071,1.055,0.71,1.315,1.146,0.935,1.002,0.928,1.042,0.896,0.997,0.88,1.031,1.39 +NM_017737,0.933,1.089,0.984,1.089,1.003,1.013,0.862,0.899,1.325,0.927,1.073,0.984,0.965,0.96,0.872,0.976,1.043,0.931,0.805,1.054,0.812,0.944,0.902,0.858,0.941,0.941,1.049,1.009,0.931,1.045,0.899,1.033,0.921,0.929,1.143,0.84,0.942,0.948,1.048,0.993,1.04,0.95,1.054,0.953,0.838,0.993,0.847,1.02,1.036,1.09,0.981,0.905,0.913,0.989 +NM_017739,0.651,1.412,0.843,0.731,0.67,0.965,0.678,0.558,0.981,0.811,0.808,0.912,0.793,0.684,0.884,1.513,0.744,0.561,0.792,0.913,0.479,0.693,1.18,1.079,1.256,0.745,1.187,0.604,0.29,1.254,0.938,4.051,1.716,1.711,0.205,0.829,1.382,0.77,2.103,1.109,0.987,1.251,0.733,1.695,0.881,0.702,1.085,0.626,0.741,0.554,1.004,1.23,0.948,3.66 +NM_017740,0.634,2.127,0.728,0.951,0.604,1.896,0.682,0.393,0.779,0.601,0.987,0.476,0.402,0.563,0.9,1.038,0.682,0.903,0.869,1.062,0.526,0.595,1.142,0.735,0.947,0.816,1.005,0.613,0.706,2.1,0.52,2.103,1.259,2.047,0.284,0.812,1.118,0.54,2.032,0.856,0.666,1.343,1.224,1.581,0.55,1.08,0.729,0.528,0.644,0.528,1.018,0.615,0.77,1.786 +NM_017741,0.8,0.882,0.948,0.931,0.862,1.043,0.945,0.773,1.23,0.991,1.006,0.923,0.919,0.907,0.805,0.99,0.885,0.819,0.811,0.946,0.991,1.223,1.171,1.145,0.965,0.661,0.904,0.981,1.262,1.299,0.936,1.104,1.621,1.067,0.823,0.985,1.009,0.788,1.167,1.09,0.903,1.145,1.013,1.165,1.03,1.12,0.856,0.646,1.193,0.829,1.019,0.751,0.81,1.135 +NM_017742,1.072,1.076,1.118,1.087,1.234,0.922,1.061,1.053,0.958,0.972,1.032,0.903,0.999,0.971,1.016,0.857,0.92,1.074,0.966,0.887,0.979,1.044,0.998,1.067,1.012,0.99,0.914,0.963,1.192,1.092,0.924,1.043,0.951,1.07,1.196,1.029,0.955,0.89,0.958,1.022,1.002,0.974,1.11,1.006,1.077,0.961,0.854,0.995,1.067,1.063,0.951,0.916,0.95,0.942 +NM_017743,0.653,1.191,1.18,0.828,0.858,1.147,0.697,0.477,1.154,0.858,1.179,0.577,0.565,0.741,1.04,1.383,0.869,0.935,0.932,0.986,0.609,0.656,1.486,0.814,0.756,0.662,0.851,0.773,0.512,1.303,0.885,1.166,1.29,1.339,0.388,0.853,1.238,0.918,1.529,0.923,0.93,1.388,0.832,0.799,0.826,1.26,0.808,0.624,1.134,0.753,1.169,0.893,0.92,1.717 +NM_017745,0.828,1.056,1.668,0.66,1.053,0.98,0.664,0.839,1.574,0.849,0.759,0.796,0.613,1.191,1.005,0.888,1.115,0.992,1.325,0.899,0.976,0.918,1.061,0.78,0.676,0.884,1.407,1.064,0.58,1.246,1.366,1.032,1.656,1.144,1.244,0.929,0.865,1.156,1.072,1.032,1.511,1.056,0.566,1.218,1.224,0.739,0.874,0.787,0.83,1.294,0.97,0.7,0.983,1.035 +NM_017746,0.769,1.027,1.217,0.734,0.943,1.008,0.701,0.584,1.241,1.254,0.728,0.802,0.69,0.798,0.961,1.217,1.086,0.834,1.15,0.81,0.808,0.76,1.223,1.183,0.735,0.94,1.455,0.712,0.463,1.08,1.064,1.666,2.251,1.15,0.398,0.734,0.906,0.972,1.076,0.899,1.076,0.928,0.76,1.049,0.974,0.881,1.021,0.701,0.894,0.758,1.036,0.899,1.223,2.036 +NM_017748,0.83,0.992,1.128,0.915,1.011,1.135,0.757,0.759,1.179,1.099,0.942,0.979,0.859,0.907,0.999,0.938,0.895,0.941,0.968,1.079,1.013,1.056,0.943,1.05,0.849,0.853,1.083,0.947,0.815,1.028,0.964,1.139,1.492,0.961,0.744,1.032,1.037,1.01,1.134,0.926,1.023,1.115,1.228,1.137,0.95,1.123,1.023,0.719,1.19,0.932,0.902,0.953,0.988,1.14 +NM_017750,0.776,1.196,1.236,0.931,1.019,1.273,0.777,0.569,0.879,0.794,1.238,0.676,0.674,0.748,1.352,2.066,0.832,1.554,1.265,1.485,0.743,0.801,1.272,0.763,0.907,1.087,0.904,0.953,0.925,1.785,0.817,0.889,0.823,1.556,0.604,2.0,1.328,0.915,2.252,0.859,0.851,1.187,1.432,1.314,0.91,1.254,0.871,0.845,0.849,1.017,1.465,0.652,0.936,0.596 +NM_017751,1.191,0.975,0.985,1.011,1.08,0.961,1.028,1.28,1.051,1.094,0.983,0.957,1.039,0.856,1.007,0.968,0.972,0.937,1.05,0.923,1.086,1.061,0.902,1.089,1.184,0.993,1.126,1.063,1.203,0.979,0.998,1.016,1.021,0.798,0.965,1.098,1.057,1.042,1.087,0.982,1.163,1.074,1.063,1.037,1.043,1.185,0.923,1.067,1.067,1.051,0.994,1.056,1.041,1.117 +NM_017752,0.855,1.314,0.79,0.858,0.719,1.483,0.986,0.793,0.951,0.787,1.483,0.763,0.679,0.903,0.903,1.421,0.749,1.01,0.811,1.449,0.778,0.828,1.632,0.71,1.198,0.694,0.978,0.807,0.683,1.838,0.777,1.16,0.92,1.56,0.674,1.283,1.182,0.621,1.152,0.965,0.754,1.535,1.063,0.964,0.74,1.425,1.046,0.743,1.217,0.699,1.333,0.827,0.859,0.893 +NM_017753,1.116,1.043,0.95,0.95,1.102,0.91,0.885,1.221,0.856,0.789,0.741,0.939,1.012,1.107,0.929,1.033,1.015,1.113,1.031,1.158,1.006,1.098,1.079,1.057,1.12,1.036,1.057,0.994,0.894,1.027,1.11,1.007,1.021,1.153,0.993,0.777,1.144,1.038,1.112,1.384,1.057,0.894,1.041,0.972,1.126,1.183,0.889,0.981,1.214,1.024,0.953,1.04,1.073,1.032 +NM_017755,0.588,0.776,1.038,0.607,0.874,0.98,0.49,0.332,1.409,1.115,0.744,0.73,0.411,0.551,0.867,1.248,0.791,0.663,1.024,0.78,0.534,0.596,1.243,1.357,0.481,0.726,1.247,0.678,0.346,1.075,0.906,1.247,3.249,1.105,0.14,1.609,0.851,0.756,1.488,1.335,1.162,0.994,0.697,2.051,1.158,1.086,0.881,0.679,1.19,0.724,1.035,1.243,1.029,2.416 +NM_017757,0.959,1.009,0.933,1.193,1.198,0.976,1.086,0.963,1.151,0.929,0.938,0.993,1.035,1.136,0.867,0.995,0.959,1.018,0.985,1.074,1.023,1.025,1.001,1.062,0.976,1.121,0.997,0.917,1.581,1.031,1.027,0.871,1.042,0.887,1.04,0.93,0.903,1.08,1.096,0.971,0.897,1.058,0.985,0.955,1.054,1.109,0.996,1.154,1.064,0.999,0.929,0.903,1.0,1.052 +NM_017758,0.557,0.987,0.968,0.673,0.701,1.063,0.949,0.32,0.949,0.863,0.944,0.591,0.449,0.505,0.716,1.045,0.643,1.041,0.77,1.436,0.524,0.685,1.521,0.944,0.891,0.759,0.973,0.749,0.562,1.451,0.563,1.504,1.07,1.583,0.318,1.066,1.641,0.884,1.07,1.729,0.892,1.627,1.011,1.687,0.701,1.547,0.888,0.607,1.248,0.659,1.335,1.051,0.665,1.612 +NM_017759,1.011,0.971,1.046,1.014,0.961,0.971,1.222,0.963,0.96,1.151,1.079,1.015,0.999,1.182,0.886,0.948,1.021,0.988,0.941,0.914,1.117,0.98,0.97,1.023,0.962,0.987,0.996,1.138,1.081,1.032,0.987,0.955,1.043,1.114,1.041,0.931,0.928,1.017,0.907,1.04,1.027,0.959,0.947,0.916,0.935,1.216,1.059,0.981,1.163,1.134,1.067,1.14,0.941,1.042 +NM_017760,0.944,0.975,1.057,0.966,0.848,0.959,0.834,0.82,0.955,0.925,0.871,0.936,0.872,0.934,1.007,0.919,0.883,1.007,0.919,1.046,0.919,0.885,1.141,0.994,0.999,0.922,1.051,0.904,1.48,1.129,0.956,1.1,1.277,0.966,0.813,1.007,0.887,1.044,1.107,0.947,1.102,0.962,1.067,1.291,1.025,1.001,1.054,0.89,1.062,1.073,1.042,0.955,1.066,1.32 +NM_017761,0.516,1.167,1.103,0.668,0.818,1.745,0.824,0.674,0.882,0.835,1.342,0.934,0.717,0.408,1.021,1.944,0.777,1.186,1.048,1.697,0.343,0.878,1.706,1.046,0.737,0.584,1.227,0.818,0.644,1.624,0.809,0.721,1.545,1.607,0.405,0.947,1.691,0.773,1.522,0.894,1.098,1.544,0.937,0.742,0.868,1.206,1.035,0.745,1.449,0.657,1.26,0.597,0.604,1.705 +NM_017762,0.991,0.987,1.059,0.916,1.003,0.968,1.062,1.017,1.088,0.913,1.054,0.935,0.995,0.86,0.847,0.875,0.977,0.943,1.018,0.873,1.087,1.099,1.009,1.02,0.972,1.056,1.108,0.967,0.988,0.983,0.95,0.862,0.853,0.986,0.992,1.105,1.077,0.905,1.058,1.121,1.081,0.987,0.846,1.058,1.025,1.039,0.986,0.995,1.012,0.879,0.961,1.025,0.973,1.011 +NM_017763,0.706,1.011,1.097,0.576,0.78,1.243,0.545,0.72,1.28,0.786,0.749,0.719,0.8,0.89,1.555,1.626,0.944,0.797,1.013,1.063,0.7,1.116,1.243,0.954,0.616,0.916,0.985,0.934,0.431,1.008,1.455,0.694,3.385,1.06,0.851,1.171,1.091,1.018,0.936,1.086,0.97,1.141,0.61,3.736,1.087,1.054,0.865,0.791,1.209,0.89,1.034,0.637,0.786,1.196 +NM_017765,0.95,0.988,1.022,0.965,0.948,0.969,0.875,0.942,0.931,0.913,0.962,0.935,1.229,0.931,0.937,1.087,0.972,1.014,1.099,1.004,1.091,1.084,0.96,1.213,0.992,0.964,1.039,1.116,0.847,0.915,0.962,0.952,0.968,1.052,1.028,0.97,0.971,1.019,0.981,0.888,1.039,1.011,0.987,1.072,1.126,0.964,1.131,1.039,0.998,1.039,1.03,1.042,0.994,0.923 +NM_017766,0.737,1.028,1.235,0.661,1.367,1.107,0.816,0.593,1.352,1.586,0.792,0.752,0.587,0.695,0.754,0.991,1.014,1.067,0.737,1.166,0.5,0.848,1.04,0.87,0.675,0.9,1.341,1.041,0.745,1.586,0.993,0.871,0.647,1.076,0.938,0.713,1.074,1.127,1.29,1.052,1.038,1.138,1.244,0.709,1.176,1.175,1.109,1.305,1.338,0.937,0.961,0.566,1.048,0.771 +NM_017767,0.988,1.238,0.906,1.101,1.014,1.129,0.946,1.118,1.121,1.111,1.043,1.043,0.874,0.785,0.89,1.167,1.08,1.067,0.93,0.861,1.055,1.004,1.016,0.926,0.905,1.062,0.993,0.996,0.923,1.156,1.007,1.069,0.996,0.988,1.097,1.013,0.929,0.891,1.187,0.916,0.954,0.949,0.917,1.048,0.849,0.86,0.989,1.065,0.996,1.082,1.012,1.02,0.857,0.749 +NM_017768,1.026,1.134,0.919,0.857,0.976,0.924,0.748,0.9,1.042,1.116,0.841,1.041,0.956,0.857,1.02,1.146,0.994,0.897,1.053,1.033,1.023,0.913,0.838,1.189,1.132,0.975,1.108,0.978,0.62,0.924,0.992,1.064,0.986,1.0,0.912,1.062,1.28,1.11,1.056,0.844,0.935,0.935,0.738,0.951,1.113,0.902,1.026,1.017,0.945,0.865,1.005,0.879,1.05,1.001 +NM_017769,1.046,1.005,1.041,0.979,1.065,0.934,0.707,0.895,0.967,1.02,1.079,0.97,0.94,0.944,0.883,0.857,1.093,0.953,1.07,1.038,0.913,0.934,1.023,1.081,1.024,0.983,1.014,0.902,0.824,0.946,0.949,1.034,0.936,0.872,0.936,1.038,0.999,0.865,1.122,1.016,0.994,0.969,1.05,1.157,0.974,0.983,1.135,0.968,1.004,1.063,1.019,0.971,0.954,0.987 +NM_017771,0.998,1.09,0.99,0.974,1.155,1.066,0.884,0.86,1.041,1.066,1.005,0.923,1.024,0.946,1.044,1.098,0.968,0.923,0.843,0.98,0.898,0.968,1.103,1.109,1.074,0.95,0.854,1.004,0.821,1.001,0.992,1.263,1.051,0.94,0.96,0.931,0.92,0.984,0.914,0.996,1.072,1.035,0.835,1.033,0.899,0.899,0.981,0.934,0.984,0.913,1.024,1.085,0.876,1.101 +NM_017772,1.013,0.898,1.09,0.846,1.0,0.934,0.652,1.035,1.392,0.907,0.812,0.975,0.967,1.087,0.976,1.258,0.971,0.809,1.423,0.905,0.878,1.127,1.054,1.135,0.836,1.245,0.912,1.129,0.499,0.919,1.324,1.178,1.279,1.058,0.912,0.76,0.928,1.021,1.1,0.934,1.02,1.042,0.94,1.034,0.972,1.022,0.899,1.102,0.848,1.016,0.933,0.839,1.086,1.413 +NM_017775,0.774,0.959,0.943,0.837,0.88,1.215,0.498,0.584,1.216,0.887,1.384,0.802,0.739,0.824,1.344,2.486,0.673,0.781,1.137,1.088,0.492,0.847,1.459,0.966,0.958,0.986,1.228,0.725,0.437,1.049,1.045,0.964,1.335,1.598,0.328,1.013,1.632,0.929,1.051,0.769,0.925,1.362,1.132,1.236,0.798,1.53,0.923,0.871,0.99,0.719,1.2,0.648,0.959,1.28 +NM_017777,0.903,1.035,1.273,0.741,0.95,0.862,0.769,0.774,0.946,0.933,0.852,1.153,0.968,0.793,1.128,1.128,1.026,1.005,1.097,0.944,0.842,0.906,1.008,0.856,0.86,1.109,1.261,0.786,0.844,0.879,0.873,1.193,1.4,1.128,0.578,0.737,0.975,1.035,1.373,0.891,1.058,1.09,0.806,1.74,1.081,0.906,0.907,0.883,0.808,0.931,0.981,0.896,1.009,1.459 +NM_017778,0.601,1.249,1.155,0.85,0.691,1.467,0.947,0.452,0.879,0.856,0.944,0.796,0.524,0.769,0.807,1.024,0.788,1.08,0.879,1.243,0.525,0.662,1.052,0.871,0.81,0.71,1.174,0.79,0.69,1.712,0.765,1.603,1.158,1.504,0.424,0.652,1.168,0.713,1.301,0.671,1.004,1.279,0.866,0.842,0.917,1.255,0.927,0.618,1.142,0.779,1.013,0.779,0.832,1.392 +NM_017779,0.997,0.894,1.174,1.15,1.039,0.905,0.941,0.98,0.872,0.934,1.054,0.913,0.941,0.991,0.937,0.962,1.012,1.146,0.953,1.106,1.11,0.902,1.16,1.114,0.837,0.92,1.064,1.054,0.758,0.924,1.027,0.987,1.078,0.971,1.008,1.197,1.029,0.961,0.997,1.01,0.974,0.871,0.898,1.135,1.039,0.995,1.042,1.029,1.048,1.059,0.998,1.029,0.925,1.055 +NM_017781,0.873,0.882,1.033,1.049,0.924,0.975,1.06,1.008,0.983,0.886,0.939,0.973,0.908,1.077,0.949,1.024,0.918,1.02,0.923,0.934,1.123,0.934,1.171,1.076,0.954,1.053,1.066,0.934,1.113,0.955,0.9,1.051,0.901,1.101,0.885,1.135,1.103,0.932,1.091,0.897,0.996,0.82,1.013,1.001,1.149,1.103,1.148,0.966,0.898,0.919,1.023,0.935,0.971,5.61 +NM_017782,0.823,0.975,1.351,0.73,0.922,0.919,0.749,0.561,1.109,1.109,0.946,0.917,0.72,0.875,1.23,0.964,0.847,0.824,1.23,0.988,0.79,0.938,1.355,1.034,0.74,0.93,1.514,0.786,0.5,0.952,1.07,1.399,2.855,1.017,0.466,0.865,0.993,0.899,1.288,0.912,0.989,1.044,0.737,1.295,1.049,1.079,0.921,0.795,0.936,0.872,0.999,1.007,1.109,2.37 +NM_017784,0.933,0.879,1.017,0.853,0.884,0.983,0.704,0.797,1.383,0.867,0.99,0.695,0.828,1.339,1.043,0.878,1.805,0.83,0.866,1.022,0.689,0.943,1.123,1.0,0.65,1.301,1.371,1.358,0.873,0.869,1.779,1.143,1.364,0.946,1.36,0.904,0.702,0.808,1.319,0.906,1.33,1.0,0.643,1.247,1.086,1.037,0.973,0.883,0.703,0.971,1.084,0.945,1.375,1.354 +NM_017785,0.834,0.921,1.099,1.005,0.915,1.337,0.774,0.702,0.845,0.937,1.088,0.932,0.779,0.702,0.855,1.54,0.947,1.067,0.851,0.923,0.676,0.845,1.365,1.016,0.704,0.814,1.237,0.763,0.879,1.053,0.785,1.419,3.225,1.13,0.812,1.051,1.195,0.893,1.159,0.833,0.926,0.948,0.744,1.307,0.839,1.178,1.113,0.849,1.249,0.844,1.223,0.818,0.905,1.965 +NM_017786,0.587,1.335,0.741,0.686,0.555,1.427,0.748,0.57,0.609,0.561,1.945,0.561,0.689,0.579,1.045,1.426,0.577,0.595,0.667,2.204,0.616,0.542,2.244,0.613,1.115,0.557,0.565,0.552,0.64,1.379,0.678,1.311,2.815,1.472,0.559,1.602,1.547,0.641,1.313,1.381,0.569,1.825,1.001,1.737,0.643,2.545,0.941,0.529,1.731,0.568,1.807,0.797,0.651,4.178 +NM_017787,1.098,0.985,0.898,0.943,0.999,1.113,1.108,0.855,1.078,0.935,0.946,1.036,1.023,0.886,0.828,0.921,0.942,0.982,1.012,0.945,1.001,1.189,1.094,1.046,0.999,0.835,0.914,1.028,0.811,1.041,0.822,1.486,0.943,1.113,1.001,1.113,1.048,1.022,1.389,1.01,0.938,1.029,0.848,1.266,0.992,1.065,0.983,0.965,0.84,1.143,1.018,0.852,0.964,1.026 +NM_017789,1.054,1.106,1.041,0.864,1.158,0.982,0.968,0.998,0.983,1.098,1.012,0.979,1.011,1.078,0.916,0.93,1.043,1.043,1.085,0.987,0.886,0.992,0.987,0.926,0.919,0.915,1.17,0.975,0.821,0.91,0.973,1.148,0.802,0.938,1.047,1.134,0.888,1.018,1.044,1.226,1.128,1.058,0.862,1.092,1.092,1.021,0.968,1.068,0.914,0.955,1.031,1.022,0.916,1.166 +NM_017791,0.56,0.621,1.784,0.688,0.831,1.312,0.581,0.506,0.74,1.105,1.649,0.895,0.574,0.537,2.156,3.252,1.382,0.712,1.34,1.183,0.841,0.735,1.243,0.953,0.527,0.554,1.166,0.67,0.526,0.844,0.748,0.865,0.995,0.578,0.548,0.864,2.303,0.684,0.892,0.863,1.28,2.161,2.141,0.668,1.343,1.812,2.626,0.641,4.055,2.008,1.264,1.005,1.359,1.203 +NM_017792,0.972,0.931,1.402,0.974,1.145,0.954,0.689,0.864,1.225,1.129,0.97,0.839,0.827,0.959,0.95,0.987,0.949,0.985,1.248,0.908,0.938,1.028,1.169,1.039,0.772,0.971,1.388,1.052,0.66,0.987,1.166,1.985,1.64,1.184,0.647,0.87,0.966,1.11,1.105,1.16,1.342,0.909,0.871,1.049,1.202,0.951,1.02,0.958,0.893,1.141,0.951,1.066,1.03,1.243 +NM_017793,0.831,1.212,0.718,0.907,0.723,1.641,0.722,0.757,0.744,0.74,1.082,0.831,0.89,0.747,0.838,1.509,0.815,0.796,0.909,0.848,0.898,0.966,1.797,0.949,0.854,0.881,0.691,0.667,0.843,1.228,0.825,1.073,1.814,1.102,0.626,1.912,1.243,0.749,2.381,1.278,0.807,1.219,0.739,2.02,0.927,1.018,1.07,0.856,1.161,0.874,1.078,0.929,0.787,1.646 +NM_017794,0.619,0.982,1.183,0.62,1.102,0.941,0.652,0.572,1.081,1.171,1.028,0.933,0.581,0.673,0.738,1.445,0.826,0.94,1.206,1.391,0.575,1.054,1.563,0.898,0.594,0.691,1.206,0.904,0.614,1.374,0.951,1.182,1.012,1.168,0.354,0.358,1.074,1.114,0.947,0.742,1.284,1.225,0.639,1.421,0.988,1.236,1.076,0.675,1.204,0.934,1.423,0.917,0.912,1.317 +NM_017797,0.608,1.434,1.379,0.453,0.92,1.249,0.47,0.616,1.116,0.906,1.004,1.029,0.504,0.818,1.107,1.325,1.144,0.909,1.842,1.271,0.482,0.977,1.749,1.259,0.458,0.752,1.957,0.996,0.557,1.332,0.966,1.328,1.54,1.605,0.198,0.905,0.904,1.239,0.746,0.763,1.275,1.239,0.572,1.049,0.952,0.725,1.091,0.594,0.845,0.635,0.939,0.53,1.075,1.119 +NM_017798,0.577,1.025,1.072,0.717,0.706,1.086,0.715,0.432,1.001,0.876,0.814,0.668,0.545,0.572,1.014,1.294,0.724,0.736,1.297,0.894,0.648,0.667,1.556,0.927,0.603,0.722,1.1,0.687,0.493,1.331,0.853,1.147,2.325,1.349,0.26,1.197,0.95,0.717,1.409,1.435,0.844,1.05,0.62,1.77,0.657,0.87,0.916,0.67,0.858,0.794,0.906,1.401,1.047,2.566 +NM_017799,0.841,1.05,0.949,0.822,0.893,1.09,0.96,0.844,0.783,0.879,0.949,0.962,0.935,0.757,1.028,1.109,0.881,1.016,1.023,1.168,0.993,0.824,1.229,0.863,0.814,0.782,0.811,1.032,1.028,1.055,0.991,1.013,1.0,0.938,0.899,0.994,1.164,0.957,1.107,1.156,0.981,1.17,0.959,0.971,0.977,1.127,1.053,0.905,1.174,0.807,1.213,0.833,0.836,1.018 +NM_017801,0.556,1.001,1.587,0.654,0.977,1.082,0.677,0.508,1.469,0.729,0.857,0.572,0.741,0.607,1.0,1.568,1.043,0.836,1.312,1.21,0.381,0.393,1.094,0.95,0.584,0.497,1.215,0.76,0.378,0.956,0.947,1.454,1.888,1.461,0.56,0.999,0.935,0.505,1.202,1.022,1.392,1.0,0.488,0.869,1.103,1.159,1.04,0.577,0.885,0.89,1.141,0.807,0.836,3.213 +NM_017802,0.531,0.975,1.15,0.573,0.984,0.859,0.651,0.365,1.041,1.027,0.982,0.992,0.445,0.601,0.815,1.427,0.946,0.992,1.043,0.991,0.475,0.786,1.611,1.067,0.382,0.677,1.115,0.808,0.496,1.333,0.696,1.644,2.255,1.09,0.15,1.637,1.157,1.005,0.961,1.204,1.229,0.976,0.729,1.658,1.034,1.099,1.315,0.53,1.352,0.635,1.162,1.242,0.995,2.018 +NM_017803,0.95,0.945,1.2,0.827,1.003,0.882,0.723,0.573,1.19,1.514,0.833,0.969,0.679,0.798,0.814,1.002,0.992,1.05,1.076,0.974,0.639,0.843,1.062,1.088,0.711,1.15,1.331,0.886,0.482,0.758,1.078,1.026,1.737,0.984,0.438,0.907,0.869,0.97,1.801,0.695,1.158,1.0,0.79,1.207,1.435,0.923,0.992,1.069,1.218,1.043,1.087,0.908,1.206,1.769 +NM_017804,0.929,0.909,1.063,0.886,0.991,1.07,0.889,0.784,0.997,1.016,1.146,1.018,0.875,0.861,1.173,1.067,1.026,1.022,1.074,0.945,0.861,1.133,0.986,0.995,0.808,1.057,1.039,0.908,1.287,1.1,1.04,1.06,1.276,1.154,0.97,0.919,0.93,1.087,1.086,1.127,0.978,1.04,1.047,0.931,1.002,0.998,0.885,1.089,1.125,0.89,0.924,0.837,0.945,1.103 +NM_017805,1.447,0.676,1.132,0.342,1.886,0.418,0.547,0.661,2.423,1.936,0.522,1.91,0.995,1.138,1.04,0.807,1.619,0.884,1.964,0.313,0.54,0.597,0.661,2.775,0.753,0.882,1.207,1.904,0.297,0.91,1.233,2.2,1.047,1.343,0.3,0.828,0.598,0.877,1.193,2.302,1.525,1.286,0.455,0.573,2.289,0.527,1.292,2.3,0.431,1.805,0.939,1.736,2.659,1.574 +NM_017806,0.506,3.677,0.992,1.388,0.849,2.209,2.676,0.587,0.856,0.867,0.7,0.824,0.72,0.513,0.716,0.986,0.627,2.489,0.769,2.459,0.463,0.616,1.084,0.788,1.476,0.562,0.664,0.784,1.649,7.379,0.712,2.277,1.683,4.391,0.286,0.718,1.538,0.952,2.102,0.915,0.905,2.062,0.711,1.256,0.743,0.763,0.653,0.627,0.372,0.564,1.075,0.698,0.617,1.485 +NM_017807,0.78,1.038,1.078,0.903,0.803,1.1,0.768,0.648,0.921,0.932,1.165,0.815,0.928,0.647,0.853,1.601,0.726,1.028,1.003,1.128,0.628,0.886,1.318,0.96,0.961,0.905,1.028,0.708,0.636,1.227,0.841,1.276,1.302,1.465,0.357,0.902,1.133,0.765,1.375,0.805,0.944,1.082,0.662,1.53,0.932,0.966,1.197,0.798,1.185,0.872,1.05,0.755,0.672,1.418 +NM_017809,0.94,1.147,0.988,1.043,0.99,0.96,0.961,0.987,0.973,0.935,1.03,1.141,1.034,0.908,1.03,1.082,0.898,1.077,1.042,0.815,0.956,1.045,0.876,1.081,1.01,1.003,0.947,0.924,1.137,1.006,1.08,0.917,1.097,1.069,0.996,0.944,0.998,0.913,0.996,1.076,0.941,1.019,1.105,0.982,1.054,0.939,1.102,0.935,1.036,0.857,1.075,0.959,1.027,1.052 +NM_017810,0.68,0.975,1.172,0.765,0.768,1.297,0.772,0.613,1.056,0.818,1.27,0.805,0.672,0.874,0.95,1.225,0.864,0.768,0.844,1.099,0.589,0.803,1.228,0.886,0.744,0.811,1.263,0.817,0.558,1.366,0.888,1.573,1.951,1.52,0.443,0.885,1.163,0.797,1.147,0.834,1.005,1.082,0.732,1.032,0.742,1.085,0.921,0.624,0.788,0.679,1.053,0.664,0.785,1.284 +NM_017811,0.72,0.691,1.269,0.528,1.609,1.109,0.537,1.431,1.406,1.001,0.766,1.169,0.651,0.601,1.159,1.16,0.944,0.988,1.254,0.965,0.689,1.131,0.847,1.082,0.387,0.826,1.173,1.71,0.445,1.146,1.311,1.037,1.193,1.416,1.879,0.601,0.857,1.65,0.781,1.04,1.35,1.153,0.73,1.106,0.867,0.902,1.155,1.157,0.963,0.755,0.838,0.873,0.999,1.525 +NM_017812,0.473,0.792,0.718,0.753,0.589,1.363,0.601,0.35,0.871,0.78,1.278,0.83,0.544,0.456,0.907,2.433,0.495,0.887,1.088,0.887,0.459,0.482,2.285,1.002,0.556,0.722,1.104,0.601,0.345,1.135,0.618,1.066,2.638,1.178,0.138,1.09,1.465,0.574,1.38,0.868,0.885,1.011,0.915,1.519,0.82,1.282,1.149,0.494,1.609,0.698,1.209,1.024,0.853,2.572 +NM_017813,0.849,1.003,1.056,0.895,0.995,0.846,0.68,0.658,1.004,1.089,0.883,0.748,0.751,0.758,0.866,1.429,0.831,0.88,1.039,0.839,0.689,0.662,1.11,1.053,0.662,0.949,1.091,0.944,0.663,0.838,0.806,1.564,2.066,1.048,0.656,1.382,1.015,0.869,1.304,1.443,1.026,0.942,0.966,1.279,0.986,1.262,1.227,0.811,1.239,1.014,1.045,0.991,1.127,1.443 +NM_017816,0.885,0.833,0.923,0.82,1.038,0.91,0.696,0.533,1.309,1.734,0.893,0.966,0.72,0.806,0.972,1.207,0.936,0.889,1.178,0.754,0.948,0.802,1.261,1.331,0.632,0.937,1.347,0.773,0.442,0.977,1.106,1.06,3.69,1.145,0.405,1.162,1.0,0.885,1.45,1.19,1.165,0.884,0.908,1.849,1.436,0.908,1.266,0.634,1.113,0.909,1.037,1.051,1.499,1.74 +NM_017817,0.26,0.968,0.287,0.778,0.255,1.95,0.906,0.226,0.23,0.225,1.838,0.234,0.228,0.252,0.976,2.613,0.206,0.823,0.254,1.437,0.227,0.209,1.826,0.241,0.824,0.216,0.304,0.221,0.622,2.397,0.197,1.657,0.748,1.922,0.227,1.322,1.578,0.249,1.355,1.024,0.232,1.61,1.16,2.064,0.227,1.219,1.212,0.203,1.164,0.248,1.406,0.813,0.336,1.136 +NM_017818,0.834,1.246,0.999,0.884,0.851,1.044,0.769,0.854,0.904,0.952,1.088,0.748,0.801,0.801,0.952,1.287,1.026,0.87,0.967,0.989,0.828,0.802,1.012,0.989,0.869,0.935,1.122,0.793,0.656,0.91,0.901,1.255,2.083,1.148,0.603,1.025,0.904,0.985,1.563,1.08,0.972,0.946,0.832,1.569,0.9,0.882,0.903,0.832,0.885,0.915,1.011,0.924,0.973,1.524 +NM_017819,0.82,1.016,1.102,0.923,1.044,1.002,0.831,0.823,1.136,1.41,0.944,0.878,0.89,0.782,0.889,1.27,1.055,0.939,1.218,0.972,0.857,0.944,1.21,1.004,0.741,0.989,1.089,0.938,0.624,0.992,1.126,1.289,2.069,0.998,0.644,0.995,0.965,0.958,1.282,0.869,1.159,0.958,0.859,1.386,1.168,0.883,1.009,0.813,1.024,1.047,0.992,1.019,1.251,1.603 +NM_017820,0.95,0.964,0.931,0.995,0.962,0.995,1.004,0.908,0.981,0.966,0.838,1.02,1.065,0.929,0.959,1.21,1.023,0.934,0.852,0.988,1.0,1.073,1.102,0.976,0.988,1.023,0.934,1.073,0.94,0.99,1.003,1.217,1.078,0.914,0.865,1.352,1.068,0.846,1.126,0.92,1.11,0.99,1.374,1.107,1.142,1.013,1.053,0.951,1.009,0.929,1.005,1.0,0.92,1.155 +NM_017821,1.017,0.802,1.578,0.94,0.99,1.646,0.914,0.722,1.628,0.817,1.977,0.928,0.81,0.904,0.986,1.65,0.856,1.182,1.608,0.994,0.79,0.922,1.174,1.394,0.602,0.793,1.039,1.591,0.815,1.558,1.096,0.89,1.049,1.402,0.886,0.505,1.391,0.758,1.118,0.398,1.724,0.978,0.645,0.768,0.967,1.347,1.24,0.725,1.051,0.981,1.279,0.718,0.812,0.662 +NM_017822,0.869,0.894,1.296,0.703,0.901,0.973,0.569,0.669,1.36,0.846,1.0,0.951,0.828,1.153,1.067,1.184,0.794,0.825,1.361,0.923,0.668,1.022,0.999,1.086,0.598,0.943,1.702,1.052,0.538,1.064,1.067,1.691,1.677,1.266,0.354,0.893,0.955,1.055,1.196,0.926,1.164,1.028,0.641,1.472,0.982,0.768,1.102,0.861,0.682,0.993,0.922,0.871,1.219,1.611 +NM_017823,0.653,1.122,1.37,0.623,0.991,0.966,0.459,0.616,1.227,1.188,1.349,1.173,0.812,0.731,0.681,1.469,1.227,0.801,1.508,0.973,0.488,0.808,1.094,1.423,0.461,0.866,1.226,0.987,0.379,1.033,0.877,3.26,1.751,1.245,0.0977,1.16,0.995,1.162,0.948,0.994,1.618,1.145,0.711,1.247,1.186,0.933,1.358,0.781,0.828,0.946,1.027,0.628,0.98,1.128 +NM_017824,0.846,1.014,1.226,0.815,0.952,1.082,0.747,0.875,1.327,1.052,1.026,0.905,0.847,0.85,1.505,1.397,0.89,1.006,1.031,0.938,0.706,1.08,1.206,1.204,0.657,0.895,1.177,1.024,0.535,1.126,1.196,1.092,1.843,1.228,0.782,0.895,1.127,1.072,0.758,0.781,1.315,1.071,0.672,0.864,0.915,0.93,0.971,0.984,1.005,0.988,1.072,0.918,0.925,1.252 +NM_017825,0.876,0.863,1.421,0.779,1.232,0.854,0.665,0.671,1.392,1.364,0.718,1.193,0.747,0.727,0.925,1.024,1.252,0.865,1.41,0.898,0.689,1.174,0.959,1.545,0.522,1.075,1.167,1.368,0.423,0.905,0.913,1.193,1.904,0.931,0.266,0.867,0.856,1.067,1.006,0.729,1.539,0.815,0.923,1.443,1.312,0.911,1.217,0.96,1.027,0.925,0.892,1.016,1.736,1.996 +NM_017826,0.968,1.264,0.872,0.933,1.014,1.179,1.103,0.931,1.203,0.974,0.887,1.053,1.259,1.101,1.515,1.154,0.957,0.948,0.891,0.885,0.974,1.092,0.961,1.093,0.996,0.874,0.823,0.999,1.289,0.92,1.038,0.964,1.034,1.116,1.156,1.083,0.996,0.955,1.537,1.209,0.955,0.991,1.282,1.051,0.875,1.056,0.893,0.83,0.956,1.025,0.977,0.914,0.976,0.994 +NM_017827,0.821,0.757,1.301,0.817,0.718,0.838,0.449,0.508,1.111,0.897,1.079,0.888,0.867,0.774,1.109,1.577,0.829,0.825,1.651,0.818,0.531,0.775,1.729,1.204,0.635,0.884,1.789,0.642,0.371,1.085,0.834,0.856,5.19,1.371,0.238,1.04,1.082,0.794,1.303,0.768,1.088,1.014,0.763,1.532,1.055,0.826,0.819,0.815,0.817,0.942,1.006,0.752,1.332,1.857 +NM_017829,0.824,1.144,1.017,0.73,0.785,1.083,0.492,0.616,1.048,0.885,0.905,0.857,0.781,0.826,1.178,1.717,0.707,0.934,1.033,0.918,0.41,0.81,1.691,1.133,0.703,0.896,1.141,0.827,0.464,1.041,0.791,1.009,1.402,1.256,0.413,0.813,1.197,0.886,1.545,0.747,1.069,1.365,0.959,0.956,0.794,1.108,1.447,0.952,1.547,0.825,1.168,0.883,0.769,1.619 +NM_017830,0.802,1.101,0.974,0.859,0.983,1.475,0.972,0.939,0.99,0.772,1.147,1.092,0.835,0.795,1.092,1.738,0.804,1.087,0.82,1.15,0.597,0.953,1.129,0.893,0.766,0.834,1.328,0.902,0.599,1.323,1.053,1.116,1.557,1.228,0.68,0.694,1.045,1.189,1.285,1.097,0.931,1.22,0.805,0.776,0.972,1.238,1.073,0.921,1.265,0.888,1.137,0.776,0.921,1.132 +NM_017832,0.95,1.031,1.106,0.925,0.895,1.15,0.693,0.621,1.271,0.955,1.138,0.915,0.877,0.88,1.153,1.239,0.96,0.966,1.505,0.992,0.87,0.756,1.215,1.108,0.728,0.878,1.288,0.969,0.771,1.131,0.947,0.971,1.625,1.272,0.568,0.845,0.94,0.986,1.118,0.887,1.141,1.02,0.785,1.213,1.155,1.186,0.754,0.759,0.899,0.829,1.011,0.868,1.009,1.666 +NM_017833,1.053,0.853,0.996,0.932,1.0,1.082,0.782,0.998,0.918,1.024,1.092,1.038,0.889,0.887,0.99,0.966,0.968,0.801,1.168,1.188,1.102,1.09,1.107,1.071,0.926,0.848,1.009,1.127,1.044,0.908,0.984,1.014,1.06,0.878,1.057,0.883,0.987,0.916,0.902,0.901,1.032,0.885,0.948,1.114,1.167,0.897,1.009,1.098,0.95,1.01,1.043,0.86,1.189,0.923 +NM_017835,0.949,0.979,1.017,1.018,0.949,0.896,1.154,1.065,0.878,1.028,1.09,1.096,0.908,1.061,1.046,1.003,0.978,1.205,0.85,0.94,0.878,0.998,1.066,1.124,1.097,0.835,1.108,0.928,0.792,0.944,0.91,0.943,0.988,0.97,1.07,0.982,1.019,0.954,0.986,1.03,0.958,1.074,0.864,1.196,0.857,1.187,0.928,1.164,0.975,0.946,1.051,0.789,1.052,1.14 +NM_017836,0.608,1.507,1.0,0.691,0.859,0.98,0.609,0.601,1.003,0.825,0.863,0.756,0.7,0.615,0.939,0.989,0.801,0.852,0.876,1.594,0.595,0.715,1.396,0.861,0.868,0.756,1.247,0.846,0.501,1.511,0.747,1.728,1.792,1.55,0.397,1.255,0.858,1.02,1.078,0.958,0.992,1.145,0.758,1.165,0.775,1.234,0.91,0.627,0.75,0.662,1.243,1.12,0.812,1.025 +NM_017837,0.632,1.638,1.17,0.676,0.922,1.507,0.858,0.856,1.096,0.868,0.849,1.021,0.736,0.738,0.938,2.029,0.822,0.92,1.469,1.268,0.612,0.863,1.107,0.906,0.599,0.581,1.434,0.932,1.063,1.755,0.778,1.488,1.627,1.512,0.361,0.7,1.141,1.077,1.228,0.661,1.127,1.204,0.54,0.81,0.821,0.919,1.012,0.686,0.864,0.725,1.159,0.702,0.663,1.456 +NM_017838,1.103,0.891,1.461,0.728,1.293,0.688,0.439,0.689,1.561,1.649,0.562,1.697,1.13,0.78,0.893,1.009,1.018,1.252,1.636,0.639,0.702,1.22,1.126,1.935,0.442,1.549,1.216,1.517,0.253,0.825,1.091,1.159,2.541,0.978,0.315,0.641,0.77,1.381,1.197,0.501,1.648,0.859,0.476,0.81,1.683,0.625,1.188,1.245,0.962,1.146,0.869,1.192,1.329,1.7 +NM_017839,0.999,1.045,1.094,0.918,0.924,1.242,1.135,0.851,0.898,1.03,0.923,0.976,0.804,0.985,0.9,1.088,1.025,0.938,1.12,0.801,1.162,0.873,0.956,1.109,0.873,0.999,1.042,1.154,0.652,1.211,0.865,0.97,1.271,0.95,0.783,0.999,0.959,0.942,1.189,1.185,0.95,1.052,0.94,0.951,1.175,1.295,1.144,0.818,0.979,0.735,1.173,0.932,1.026,1.164 +NM_017840,0.548,1.161,0.934,0.764,0.75,1.521,0.645,0.466,1.059,0.725,1.448,0.651,0.531,0.627,1.133,1.939,0.778,0.733,1.393,0.968,0.65,0.732,1.279,0.891,0.663,0.571,1.351,0.684,0.412,1.617,0.887,1.373,2.095,1.919,0.177,1.279,1.345,0.677,1.175,0.644,1.05,1.147,0.757,1.259,0.763,1.281,0.982,0.476,1.252,0.562,1.079,0.677,0.958,1.8 +NM_017842,1.557,0.951,1.203,0.961,1.167,0.977,0.506,1.552,1.158,1.348,0.679,1.237,1.458,1.17,0.934,1.121,1.109,1.061,2.442,0.653,1.656,1.935,0.653,1.639,0.913,1.927,1.133,1.128,0.78,0.805,1.517,0.783,1.434,1.2,1.076,0.723,0.789,1.964,1.044,0.789,1.19,0.942,0.46,0.878,1.211,0.576,0.884,2.651,0.493,1.738,0.895,0.697,0.949,0.844 +NM_017843,0.857,1.094,1.017,0.813,0.801,1.034,0.808,0.951,0.937,0.971,0.908,0.952,1.062,0.936,0.804,0.967,0.996,0.999,0.919,0.858,0.806,0.792,1.024,1.124,1.111,0.988,1.11,1.029,0.945,0.882,0.986,2.605,1.21,0.903,1.089,1.074,0.949,0.94,1.092,1.001,1.015,1.095,0.816,1.304,0.888,0.926,0.852,0.988,1.016,0.913,1.037,1.215,0.934,2.505 +NM_017844,1.893,1.8599999999999999,1.879,2.143,2.026,2.083,2.177,2.237,1.935,1.939,2.145,1.966,1.944,1.653,2.0460000000000003,2.059,2.036,2.086,2.025,1.888,1.837,2.1189999999999998,1.894,2.002,1.9449999999999998,2.197,2.121,2.0679999999999996,2.013,2.098,2.237,2.2560000000000002,2.1470000000000002,1.9060000000000001,2.138,1.968,2.008,1.9249999999999998,2.0549999999999997,1.8559999999999999,1.938,1.908,2.013,2.0700000000000003,1.9809999999999999,1.967,1.9340000000000002,2.017,1.9380000000000002,1.9929999999999999,2.045,2.043,2.055,1.9060000000000001 +NM_017845,0.695,0.87,1.54,0.738,1.326,1.162,0.632,0.92,1.399,1.027,1.556,1.126,0.894,0.974,1.31,2.066,0.883,1.206,2.043,1.024,0.768,0.952,0.961,1.22,0.533,0.827,1.531,1.107,0.54,0.98,1.169,0.777,2.35,1.224,0.424,0.723,1.204,1.239,0.983,0.616,1.413,0.849,0.668,0.962,1.059,1.192,1.273,0.84,0.973,0.838,0.901,0.722,1.329,0.948 +NM_017846,0.91,1.025,0.989,0.859,0.964,0.98,0.878,1.147,1.058,0.924,1.039,1.068,0.981,0.93,1.055,0.995,0.975,0.924,1.191,1.118,0.968,0.98,1.031,0.944,0.986,1.026,0.886,0.964,0.958,1.021,1.046,1.097,1.015,1.093,0.952,0.865,1.1,1.093,1.107,0.932,0.977,0.953,0.919,0.902,0.896,1.005,0.984,0.957,1.103,0.93,0.944,0.757,1.044,1.02 +NM_017848,1.1,1.023,0.965,0.994,0.996,0.979,0.864,1.103,1.019,0.966,1.145,0.987,1.001,1.025,1.229,0.964,0.971,1.006,1.113,0.852,1.033,0.913,1.051,1.085,0.95,1.084,1.026,1.032,0.904,0.966,1.054,1.105,0.931,0.954,1.008,1.026,1.014,0.979,0.972,1.029,0.86,0.95,1.095,1.015,0.957,0.879,1.009,1.017,1.148,0.915,0.981,0.849,0.942,0.877 +NM_017849,0.762,0.941,0.827,0.727,0.954,1.478,0.788,1.173,1.091,0.775,0.963,0.667,0.921,0.691,1.047,1.436,0.9,0.97,1.17,1.043,0.785,0.957,1.114,0.861,0.692,1.04,0.833,0.941,0.953,1.418,1.043,1.313,1.585,1.525,1.689,0.816,1.13,0.961,1.427,1.164,1.015,1.068,0.824,1.236,0.87,0.936,0.906,1.108,0.978,0.947,1.071,0.803,0.89,1.485 +NM_017850,0.842,1.149,0.931,0.921,1.058,1.135,0.748,0.732,1.164,1.068,0.916,0.801,0.935,1.037,1.139,1.019,0.959,0.966,0.857,1.134,0.854,0.834,0.982,1.031,0.917,0.894,1.216,0.974,0.953,1.178,1.094,1.197,2.383,1.063,0.843,1.042,0.961,0.923,1.361,0.81,1.048,1.015,0.841,1.713,1.06,1.095,0.952,0.843,1.036,0.893,0.913,1.062,0.903,2.127 +NM_017851,0.977,1.01,1.153,0.857,0.998,1.193,1.113,0.762,0.938,0.947,1.093,0.89,0.95,0.889,0.873,1.147,0.945,0.909,1.002,1.028,0.937,0.925,1.238,1.013,0.911,0.919,1.172,1.097,0.926,1.135,0.975,1.127,1.2,1.392,0.854,0.884,0.943,0.951,1.01,0.812,1.171,1.117,0.895,0.871,0.962,0.944,0.817,0.835,0.985,0.971,0.88,0.996,1.007,1.244 +NM_017852,1.249,3.076,0.989,1.722,2.235,0.69,1.344,0.959,1.206,1.993,0.565,0.685,0.758,1.165,1.123,0.66,2.221,1.569,1.249,1.378,2.302,2.243,4.364,1.884,0.819,1.594,0.636,1.274,1.245,0.611,1.291,0.613,6.255,0.618,0.572,1.732,0.699,1.029,2.07,1.493,1.408,0.576,0.636,0.549,1.053,0.676,0.835,2.162,0.728,2.276,0.897,0.577,0.621,0.874 +NM_017853,0.911,0.909,1.084,1.013,0.9,0.963,0.847,0.876,1.089,0.988,1.005,0.915,0.871,0.845,1.154,1.04,1.001,0.913,0.932,1.092,1.042,1.017,1.039,0.948,0.94,0.972,1.136,0.876,0.81,1.154,0.997,1.058,1.298,1.157,0.886,1.047,0.93,0.939,0.988,0.998,0.927,1.044,0.788,0.993,0.971,0.924,0.835,0.905,0.989,1.049,0.89,0.851,1.011,1.348 +NM_017854,0.729,1.511,0.93,1.023,0.836,1.05,0.525,0.424,0.823,1.087,1.51,0.679,0.641,0.61,0.709,1.326,0.94,1.248,1.576,0.815,0.679,0.84,1.215,0.793,0.852,1.126,1.154,0.619,0.637,1.399,0.61,1.256,1.273,1.751,0.319,0.923,1.265,1.001,1.596,1.188,0.958,1.326,0.728,2.067,0.853,0.991,1.586,1.087,0.866,0.868,0.904,0.913,0.819,1.371 +NM_017855,0.925,1.711,0.857,1.019,0.901,1.26,1.301,0.993,0.77,0.79,1.842,0.88,0.815,0.843,1.044,1.204,0.905,0.891,0.823,1.09,0.927,0.791,1.156,0.843,1.914,0.87,1.111,0.819,0.648,1.362,0.98,1.199,6.527,2.263,0.824,0.824,2.175,0.949,0.895,0.988,0.871,1.167,1.463,2.145,0.829,1.262,0.921,1.037,0.883,0.679,1.241,0.917,0.878,1.072 +NM_017857,1.102,0.991,0.989,0.958,0.995,0.956,1.243,1.157,1.145,0.95,0.983,0.933,0.917,1.038,1.004,1.08,1.001,1.109,1.057,0.874,1.052,1.091,0.902,0.963,0.996,1.16,0.982,1.072,1.068,1.044,1.072,0.999,0.971,0.93,0.968,1.069,1.088,1.075,1.057,0.967,1.016,1.004,1.005,0.906,1.153,0.946,0.958,1.088,0.965,1.066,1.046,1.048,0.934,0.952 +NM_017858,1.053,0.978,1.047,0.818,1.168,1.013,1.05,0.906,1.108,0.927,0.896,0.898,0.912,0.92,1.009,1.072,1.02,0.952,0.952,0.901,0.925,1.031,1.178,1.008,0.811,0.787,1.477,0.965,0.579,0.952,1.076,0.874,2.115,0.97,0.882,1.048,0.932,1.017,1.645,1.002,1.17,0.911,0.662,1.085,1.013,1.007,0.991,0.878,1.04,1.042,0.938,0.976,1.078,1.957 +NM_017859,1.047,0.874,1.262,0.954,0.751,1.007,0.627,0.667,1.181,1.119,0.848,0.912,0.981,0.726,0.943,1.231,0.899,0.905,1.325,0.711,0.578,1.293,1.266,1.054,0.76,1.329,0.788,0.945,0.617,1.194,0.976,1.016,1.317,1.056,0.993,0.824,0.859,0.929,1.571,1.426,1.125,1.035,0.699,1.646,1.197,0.726,0.846,1.187,0.831,1.177,0.75,0.965,1.007,1.803 +NM_017860,1.038,1.011,0.999,1.058,0.998,0.982,1.143,1.042,1.194,0.921,0.965,0.864,0.891,0.923,0.994,0.949,0.992,0.991,0.924,0.841,1.051,0.951,0.914,0.847,0.977,1.048,1.034,0.986,0.836,0.934,1.092,1.04,1.146,0.94,1.067,1.162,0.959,0.944,0.973,1.182,1.053,1.041,1.01,0.85,0.942,1.075,1.05,0.799,0.927,0.893,1.107,0.869,0.858,1.06 +NM_017864,0.794,0.986,1.135,0.751,0.948,1.037,0.838,0.72,1.083,0.973,1.256,0.864,0.718,0.749,1.009,1.651,0.792,0.709,1.274,1.167,0.769,0.861,1.312,0.96,0.7,0.76,1.334,0.886,0.775,0.931,0.995,1.073,2.136,0.935,0.547,1.297,0.983,0.998,1.24,1.247,1.097,0.991,0.866,1.455,0.883,1.63,1.106,0.812,1.896,0.853,1.019,0.871,1.001,2.307 +NM_017865,0.806,1.059,1.085,0.964,0.954,0.896,0.842,0.851,1.058,0.992,0.942,0.961,0.955,0.917,1.007,0.941,0.968,0.92,0.942,1.033,0.834,0.91,1.094,1.22,0.813,1.001,1.172,1.045,0.894,0.911,1.047,1.318,1.251,1.082,0.897,0.989,0.874,0.998,1.278,1.368,1.139,1.088,0.783,1.166,0.963,0.934,0.846,0.978,0.898,0.962,0.893,0.886,0.933,1.602 +NM_017866,0.793,1.016,0.999,1.001,0.844,1.211,0.853,0.831,0.852,0.948,1.167,0.966,0.773,0.8,0.964,1.259,0.955,0.874,1.04,1.048,0.802,0.885,1.042,0.984,0.896,0.933,1.142,0.871,0.764,1.016,0.811,1.432,1.743,1.193,0.728,0.916,1.044,0.969,0.904,1.055,1.044,1.072,0.925,0.927,0.873,1.143,1.024,0.762,1.192,0.91,1.18,0.849,0.799,1.166 +NM_017867,0.84,1.159,1.317,0.88,1.006,1.038,0.852,0.721,1.364,0.811,1.048,0.751,0.877,0.862,1.063,1.437,0.983,0.983,1.431,0.985,0.706,1.07,1.038,0.994,0.773,0.852,1.913,1.221,0.522,1.134,0.998,1.603,1.747,1.389,0.441,0.66,0.936,1.189,1.345,0.706,1.263,1.005,0.601,0.9,0.965,1.015,0.996,0.933,0.969,0.891,1.08,0.727,0.848,1.411 +NM_017868,1.004,0.907,1.054,0.917,1.054,1.175,1.087,0.841,1.072,0.975,0.81,0.995,1.058,1.172,0.822,0.827,0.841,0.966,0.893,0.877,0.999,0.942,0.861,0.803,1.067,0.956,1.083,0.924,1.202,1.034,0.973,0.965,1.136,1.061,1.027,1.011,0.845,0.904,1.074,0.898,1.006,1.032,0.912,0.914,0.923,1.066,0.953,1.07,1.044,1.001,0.966,0.915,0.992,1.01 +NM_017871,0.875,1.04,1.005,0.955,0.81,1.125,0.856,0.762,1.099,0.827,1.015,0.786,0.736,0.765,1.086,1.266,0.812,0.959,1.267,1.04,0.818,0.937,1.118,0.919,0.837,1.052,1.003,0.897,0.801,0.955,0.919,0.947,2.173,1.222,0.672,1.003,1.089,0.903,1.367,0.899,0.794,1.16,0.712,1.362,0.992,0.841,0.92,1.023,0.827,0.883,0.869,0.849,0.798,1.325 +NM_017872,0.934,1.095,1.015,1.192,1.133,1.031,0.888,0.787,0.936,1.117,1.091,1.026,1.059,0.938,0.887,0.931,1.023,0.896,0.992,1.151,0.922,1.004,1.227,0.941,0.997,0.959,1.032,1.138,0.805,1.037,0.841,1.104,1.055,0.988,1.022,0.933,0.871,1.082,1.031,0.966,1.069,1.049,0.879,0.942,1.011,1.138,1.032,1.022,1.104,0.957,0.944,0.84,0.92,1.014 +NM_017873,1.118,0.993,1.136,0.98,1.062,1.004,0.85,1.035,0.859,0.852,0.954,1.012,0.95,1.018,0.908,1.144,0.944,0.971,1.071,0.892,0.807,0.947,0.958,0.993,1.145,1.015,1.12,0.959,0.854,1.023,1.103,0.925,1.068,0.965,0.955,0.939,1.062,0.973,0.923,1.003,0.946,0.954,0.832,1.024,1.039,1.134,0.968,1.098,0.952,1.061,1.068,1.036,0.99,0.981 +NM_017874,0.791,1.155,0.916,0.702,0.812,1.212,1.089,0.709,0.967,0.902,0.881,0.991,0.721,0.718,1.083,1.158,0.845,0.833,0.765,1.211,0.575,0.853,1.79,1.086,0.686,0.773,1.068,0.765,0.794,1.677,0.812,1.431,2.59,1.041,0.549,1.587,1.182,1.123,1.683,1.466,0.906,1.054,0.999,1.27,0.941,1.085,0.949,0.791,1.254,0.783,1.008,1.179,0.755,1.979 +NM_017875,0.676,1.823,0.672,0.86,0.715,1.512,0.756,0.522,0.702,0.604,1.312,0.705,0.715,0.604,0.717,1.09,0.726,0.909,0.665,1.148,0.653,0.806,1.379,0.737,1.194,0.825,0.96,0.589,0.962,1.688,0.687,1.042,0.836,1.477,0.476,0.707,1.253,0.75,1.465,0.852,0.687,1.537,0.7,1.02,0.638,1.117,0.781,0.624,0.852,0.651,0.98,0.764,0.648,1.463 +NM_017876,0.667,0.919,0.977,0.662,1.116,1.457,0.64,0.516,1.036,1.105,1.267,0.878,0.699,0.516,1.159,1.387,1.004,0.749,0.93,1.021,0.339,0.753,1.782,1.257,0.464,0.783,1.136,0.981,0.564,1.312,0.79,0.948,0.998,1.002,0.232,1.12,1.134,1.045,1.273,1.057,1.248,0.978,1.208,1.135,1.06,1.659,1.141,0.739,1.05,0.755,1.088,0.683,0.948,1.213 +NM_017878,0.717,1.067,0.92,1.65,0.8,4.905,5.777,0.833,0.671,0.863,3.59,0.732,0.68,0.676,0.999,3.994,0.688,7.514,0.678,2.401,0.62,0.733,1.083,0.713,1.466,0.728,0.797,0.7,1.363,2.288,0.605,0.928,3.083,2.773,0.71,1.667,6.878,0.734,4.085,0.682,0.773,6.899,2.957,0.773,0.793,5.542,1.255,0.884,4.606,0.691,3.203,0.962,0.738,1.46 +NM_017879,1.269,0.95,1.078,0.914,1.226,0.978,0.918,1.125,1.425,1.213,0.802,1.198,1.381,1.04,1.003,1.127,1.101,1.057,1.422,0.923,0.866,1.42,0.98,1.617,0.777,1.333,0.922,1.24,0.618,0.956,1.267,1.143,1.541,0.98,1.364,0.918,0.876,1.841,1.009,0.777,1.38,1.035,0.769,1.062,1.315,0.893,0.997,1.455,0.598,1.081,0.823,0.982,1.079,1.069 +NM_017880,0.888,1.081,1.19,0.675,0.989,1.096,0.724,0.903,1.11,0.839,0.868,1.035,0.805,0.706,1.073,1.039,0.889,0.913,0.914,1.173,0.728,0.914,1.186,1.078,0.837,0.892,1.148,0.972,0.653,1.235,1.197,1.5,2.238,1.062,1.194,0.886,0.946,1.189,1.114,1.09,1.067,1.016,0.699,0.984,0.94,0.845,0.988,1.089,0.827,0.658,1.001,0.89,0.77,1.439 +NM_017881,1.791,1.04,2.004,0.871,2.162,1.325,0.723,1.316,1.963,1.243,0.822,0.986,1.195,1.421,1.472,1.341,2.067,1.306,1.856,0.892,0.932,1.727,0.83,1.268,0.64,1.648,1.461,1.633,0.779,0.888,2.373,0.62,1.398,1.088,2.643,0.598,1.149,2.0,0.838,0.588,1.98,0.97,0.73,0.874,1.189,0.67,1.026,1.968,0.613,1.074,0.973,0.544,1.168,0.934 +NM_017882,0.558,1.381,0.796,0.644,0.674,1.258,0.648,0.363,0.874,0.915,0.813,0.773,0.553,0.387,0.625,1.17,0.644,0.882,0.692,1.333,0.302,0.605,2.348,1.091,0.619,0.621,1.015,0.464,0.524,1.324,0.516,1.256,0.921,1.264,0.17,1.762,0.996,0.739,2.242,1.139,0.947,1.257,0.927,1.298,0.928,1.17,1.317,0.53,1.165,0.592,1.171,1.047,0.646,2.037 +NM_017883,0.764,0.873,1.0,0.782,0.718,1.267,0.591,0.575,1.099,0.816,1.344,0.862,0.899,0.594,1.083,1.57,0.821,1.015,1.234,1.125,0.51,0.983,1.131,1.079,0.745,0.889,0.986,0.847,0.571,0.982,1.031,1.54,1.444,1.415,0.821,0.806,1.129,0.785,1.217,0.623,0.925,1.245,0.804,0.681,0.867,1.079,1.009,1.126,0.825,0.883,1.15,0.847,0.812,1.024 +NM_017884,1.058,0.815,0.902,0.808,0.838,0.909,0.742,0.827,1.028,1.436,0.798,1.335,0.938,0.734,0.859,0.974,0.932,0.988,1.005,0.847,0.695,1.016,1.106,1.218,0.876,1.191,1.146,0.882,0.784,0.801,1.111,1.296,1.911,1.015,0.75,0.994,0.926,1.143,1.352,0.842,0.999,0.997,0.799,1.112,1.176,1.004,1.049,1.014,1.168,0.872,0.984,1.366,0.929,1.5 +NM_017885,0.813,1.016,1.192,0.959,0.709,1.486,0.568,0.749,0.746,0.869,1.393,0.87,0.889,0.706,1.037,1.853,0.692,0.897,2.144,0.851,0.791,0.644,1.32,0.896,0.813,0.941,1.034,0.594,0.406,1.13,0.857,3.654,4.17,2.53,0.357,0.741,0.821,0.829,1.964,1.053,0.896,1.246,0.496,1.345,0.865,0.699,0.69,0.894,0.648,0.934,1.044,0.955,1.364,1.051 +NM_017888,1.055,0.993,1.017,0.829,0.993,0.93,1.045,0.842,0.998,1.007,1.216,0.938,1.016,0.931,0.916,0.948,0.912,1.05,1.053,1.071,1.0,0.943,0.92,0.998,1.11,1.005,1.018,0.931,0.824,0.926,1.155,1.119,1.054,0.902,1.044,0.972,1.026,1.001,0.919,0.996,1.071,0.955,0.957,0.897,1.115,1.024,0.837,1.018,1.038,1.062,0.908,0.936,0.938,1.051 +NM_017893,0.829,0.945,0.76,1.179,0.697,1.496,1.037,0.757,0.788,0.739,1.215,0.688,0.783,0.784,1.094,1.948,0.712,1.043,0.771,1.325,0.715,0.665,1.334,0.708,0.97,0.764,0.727,0.808,1.035,1.203,0.727,1.35,1.122,1.367,0.754,0.983,1.198,0.744,1.788,0.932,0.602,1.081,0.971,1.18,0.722,1.141,0.854,0.695,1.031,0.736,1.242,0.846,0.757,1.3 +NM_017894,2.073,1.984,2.098,2.061,2.106,1.9769999999999999,2.185,1.914,1.923,1.903,1.973,1.9929999999999999,1.9369999999999998,1.803,2.134,2.2110000000000003,2.017,1.6720000000000002,1.9889999999999999,1.9529999999999998,2.127,1.87,1.9539999999999997,2.016,2.12,2.018,1.924,1.766,1.938,2.135,1.875,2.0,2.0300000000000002,1.838,1.8820000000000001,1.859,1.9609999999999999,1.887,1.9659999999999997,2.1639999999999997,1.7069999999999999,1.9780000000000002,1.908,2.192,1.7349999999999999,2.0309999999999997,1.9500000000000002,2.097,1.97,1.8199999999999998,2.0679999999999996,2.285,2.057,2.0540000000000003 +NM_017896,1.617,0.765,1.62,0.724,2.167,0.705,0.338,1.379,2.118,1.624,0.626,1.759,1.232,1.132,1.119,1.082,1.423,1.515,2.046,0.597,0.711,1.67,1.077,1.669,0.294,1.97,1.22,1.903,0.313,0.95,1.558,0.548,1.416,0.678,2.506,0.695,0.684,2.037,0.985,0.987,1.747,0.622,0.489,0.986,1.691,0.606,1.345,2.447,0.631,1.957,0.708,0.846,1.273,0.975 +NM_017897,0.822,1.004,1.081,0.807,0.953,1.056,0.777,0.771,0.951,0.778,1.216,0.887,0.852,0.788,1.195,1.5,0.9,0.92,1.217,1.062,0.776,0.862,1.164,0.997,0.803,0.929,1.035,0.923,0.591,1.091,0.98,0.921,1.443,1.195,0.605,1.073,1.145,1.038,1.321,0.773,1.004,1.024,0.79,0.94,1.019,0.988,1.026,0.823,1.027,0.847,1.041,0.871,0.941,1.497 +NM_017898,0.7,1.441,0.821,0.965,0.682,2.265,0.998,0.634,0.936,0.615,2.331,0.693,0.753,0.778,1.076,3.213,0.668,1.126,0.983,1.261,0.733,0.862,1.988,0.742,1.309,0.729,0.991,0.874,0.953,2.055,0.803,1.261,2.79,2.866,0.586,1.1,2.305,0.823,0.91,0.613,0.831,1.656,1.37,0.843,0.701,1.358,1.002,0.704,1.295,0.718,1.518,0.787,0.632,1.577 +NM_017899,0.123,4.216,0.127,2.761,0.116,2.719,2.944,0.121,0.134,0.118,1.181,0.134,0.113,0.121,0.269,1.211,0.138,2.13,0.14,2.288,0.129,0.123,1.294,0.138,2.741,0.104,0.147,0.109,3.923,4.448,0.114,5.761,2.544,7.869,0.112,1.709,2.27,0.116,2.399,1.433,0.15,2.516,0.692,3.536,0.256,0.606,0.846,0.109,0.654,0.131,1.047,2.11,0.149,1.084 +NM_017900,0.528,0.915,0.963,0.596,0.84,1.281,0.733,0.618,1.006,0.862,0.891,0.955,0.681,0.381,1.015,2.203,0.793,1.019,1.34,1.096,0.53,0.811,1.348,1.079,0.581,0.758,1.123,0.883,0.572,0.991,1.024,0.915,2.868,1.325,0.291,0.868,1.078,0.622,2.093,1.14,0.913,1.141,0.571,1.167,0.988,0.843,1.161,0.821,1.442,0.807,1.117,0.787,0.748,1.764 +NM_017901,1.069,0.845,1.132,0.879,0.984,0.895,0.811,1.08,1.342,1.278,0.948,0.874,0.965,0.894,0.943,1.079,1.102,1.107,1.432,1.058,0.82,1.086,1.041,1.176,0.729,1.324,1.021,0.988,0.799,0.934,1.279,0.812,1.011,1.012,0.942,0.905,1.012,1.107,1.002,0.848,1.204,0.908,0.813,0.899,0.987,1.008,0.979,1.293,1.1,1.141,1.081,0.965,1.077,1.085 +NM_017902,1.185,0.95,1.178,0.955,0.963,0.915,0.904,0.878,1.248,0.999,1.001,1.094,0.903,0.969,1.047,1.078,1.037,0.944,1.13,1.076,0.994,0.963,0.932,1.037,0.877,1.091,1.097,1.022,1.067,0.91,1.153,1.352,1.79,1.083,0.762,1.061,0.933,1.045,1.144,0.908,1.085,0.958,0.76,1.217,1.197,0.896,0.92,0.92,0.866,1.02,0.887,0.9,1.101,1.311 +NM_017903,0.658,1.037,1.483,0.449,1.007,1.339,0.588,0.734,1.276,0.727,0.647,0.603,0.801,0.782,1.061,1.276,1.203,0.925,0.981,0.87,0.488,1.333,1.042,1.483,0.491,0.669,1.615,0.98,0.536,1.014,1.37,1.653,1.866,1.259,0.947,0.449,0.945,1.072,1.753,1.16,1.207,0.999,0.57,0.718,0.907,0.722,0.975,0.733,0.724,0.899,1.059,0.73,0.679,1.261 +NM_017904,1.445,0.974,0.958,0.996,1.125,1.154,0.947,1.211,1.571,0.923,0.922,1.191,0.999,1.589,1.382,1.207,1.44,0.959,1.022,0.969,1.147,1.031,0.894,1.09,0.937,1.455,0.979,1.431,0.853,1.113,2.054,0.937,1.134,0.959,2.819,1.077,1.153,1.313,1.202,0.741,1.041,0.831,1.037,1.001,1.247,0.89,0.987,1.358,1.086,0.923,1.042,0.914,0.998,1.103 +NM_017905,0.937,0.913,1.111,1.13,1.065,1.052,0.984,0.943,0.855,1.004,0.975,0.99,0.926,1.081,0.951,1.353,0.815,1.073,0.885,1.219,0.832,0.962,0.99,0.968,0.876,0.916,0.939,0.875,1.058,1.068,1.09,1.254,0.947,1.299,0.827,0.827,0.933,0.967,1.068,0.938,1.059,1.026,0.969,0.903,0.945,1.144,1.04,0.9,1.166,0.851,1.1,0.867,0.982,1.234 +NM_017907,1.0,0.907,1.058,0.933,0.745,1.171,0.58,0.64,0.878,0.771,1.145,0.993,0.917,0.762,0.901,1.472,0.807,0.955,1.406,0.75,0.694,0.724,1.124,1.0,0.969,1.531,0.975,0.749,0.48,1.249,0.871,1.011,1.518,1.564,0.37,1.303,1.126,0.75,1.405,0.714,0.859,1.181,0.551,1.028,1.019,0.807,0.769,1.232,0.784,0.937,1.092,0.728,1.229,1.331 +NM_017908,1.077,0.956,1.015,0.989,0.898,1.119,0.96,0.833,0.861,0.897,0.92,0.972,0.733,0.902,1.118,1.007,0.9,1.049,0.916,1.075,0.874,0.875,1.329,1.01,0.87,1.128,0.894,0.879,0.824,1.084,0.999,1.226,1.311,1.336,0.89,1.002,0.832,1.064,1.131,0.856,0.96,1.107,0.936,1.096,0.901,0.877,0.909,0.992,0.916,1.084,1.016,0.87,1.043,1.383 +NM_017909,0.794,1.086,0.914,0.932,0.837,1.112,0.873,0.882,0.962,0.845,1.041,1.101,0.871,0.876,0.99,1.432,0.92,0.96,0.977,0.89,0.912,1.016,1.118,0.981,0.912,0.911,1.247,0.967,0.66,1.055,0.893,1.034,1.133,1.137,0.756,0.796,1.101,1.071,1.116,0.796,0.985,1.029,1.034,0.732,0.885,1.05,1.018,0.865,0.985,0.916,1.021,0.789,0.829,1.149 +NM_017911,0.955,0.942,1.072,0.794,0.898,0.937,0.862,0.936,1.152,0.968,0.888,1.009,0.852,0.991,1.288,0.951,0.975,0.961,0.853,1.23,0.994,0.829,1.11,1.003,0.997,1.021,1.008,0.937,0.877,1.111,1.081,1.236,0.986,1.112,0.961,1.058,0.842,1.01,0.944,1.039,0.945,0.973,0.891,1.03,0.974,0.95,1.018,1.059,0.938,1.03,0.975,1.019,1.094,1.131 +NM_017913,0.595,0.756,1.318,0.606,1.129,1.772,0.691,0.982,1.348,0.95,1.005,1.255,0.756,0.814,1.048,1.642,0.973,0.96,1.184,1.031,0.57,1.192,0.971,1.391,0.596,0.65,1.618,0.967,0.601,1.133,1.315,1.002,1.05,1.348,0.448,0.511,1.081,1.051,1.07,0.563,1.13,1.039,0.647,0.818,0.951,1.123,0.776,0.806,0.945,0.932,1.059,0.767,0.725,2.039 +NM_017914,0.582,1.002,1.164,0.524,1.111,0.941,0.766,0.361,1.385,1.153,1.076,1.51,0.562,0.467,0.577,0.967,1.034,0.852,0.895,1.289,0.387,0.699,1.76,1.425,0.481,0.657,0.93,1.257,0.366,1.155,0.662,1.277,1.602,1.184,0.135,2.084,0.866,0.897,0.952,1.638,1.306,1.15,0.958,1.306,1.22,1.226,1.417,0.652,1.173,0.643,0.998,0.91,0.803,1.954 +NM_017915,0.732,0.7,1.185,0.764,1.047,1.32,0.747,1.073,1.118,1.117,0.785,1.284,0.96,0.778,1.03,1.638,0.825,1.219,1.032,0.841,0.62,1.043,1.791,1.359,0.54,0.659,1.812,1.172,0.571,1.008,0.989,1.0,1.842,0.789,0.593,1.053,1.124,1.188,1.216,0.936,1.156,0.68,1.047,0.693,1.017,0.942,1.14,0.792,1.489,0.776,1.253,0.798,0.616,2.091 +NM_017916,0.516,1.206,1.139,0.528,0.983,1.11,0.556,0.548,1.107,0.921,1.048,0.905,0.529,0.594,0.783,1.239,0.812,0.943,1.162,1.104,0.389,0.748,1.351,0.954,0.64,0.811,1.171,0.844,0.345,1.441,0.815,0.942,2.091,1.209,0.304,1.074,1.204,1.042,1.144,1.163,1.082,1.063,0.758,1.151,0.839,1.02,1.143,0.756,0.789,0.636,1.106,0.885,0.861,1.078 +NM_017917,0.677,1.236,0.94,0.778,0.81,1.455,0.695,0.665,1.006,0.786,1.398,0.731,0.601,0.677,1.054,1.508,0.801,0.931,0.908,1.034,0.65,0.854,1.711,0.967,0.821,0.662,0.809,0.858,0.638,1.369,0.778,0.961,1.263,1.469,0.514,0.847,1.451,0.964,1.387,1.012,0.886,1.217,0.779,1.106,0.82,1.329,1.217,0.692,0.985,0.585,1.23,0.814,0.768,1.287 +NM_017918,0.709,0.96,2.056,0.587,0.884,1.388,0.847,0.896,0.843,0.851,0.689,1.448,0.679,0.527,1.16,1.101,1.156,0.826,1.384,0.658,0.7,0.654,1.163,1.319,0.509,0.516,1.719,0.811,0.413,1.289,0.741,1.813,2.716,0.953,0.289,0.805,0.981,1.5,1.072,0.498,1.917,0.839,0.641,1.201,1.197,0.629,1.193,0.538,0.85,1.262,1.208,1.112,1.425,1.882 +NM_017919,0.985,0.894,1.14,1.012,1.232,0.919,0.771,1.328,1.264,1.12,0.817,1.199,1.053,0.77,0.944,0.958,1.015,1.191,1.136,0.931,0.844,1.251,0.789,1.203,0.864,1.036,0.996,1.205,0.714,0.956,1.25,1.114,1.216,0.972,1.168,0.951,0.884,1.15,1.031,0.967,1.225,0.706,0.705,0.973,1.257,0.902,0.984,1.098,0.922,1.028,1.025,0.811,1.045,1.166 +NM_017921,0.959,0.856,1.09,0.926,1.004,0.987,0.617,0.7,0.991,1.073,0.732,0.773,0.757,0.752,0.778,1.035,0.971,1.068,1.148,0.925,0.802,1.293,0.936,0.915,1.049,1.329,1.133,0.839,0.68,1.114,0.799,1.652,1.23,0.979,0.513,0.996,0.951,1.17,1.67,0.864,1.039,0.958,0.68,1.742,1.038,0.783,0.822,1.128,0.944,1.235,0.816,0.923,1.015,1.437 +NM_017922,1.015,1.103,1.132,0.93,1.018,1.103,1.118,0.938,1.208,0.998,0.97,1.031,0.95,0.892,0.926,1.268,1.061,0.875,1.026,0.927,0.924,0.894,1.039,1.006,0.931,0.999,1.048,0.867,0.957,0.944,1.077,1.153,1.184,1.018,0.956,0.894,1.028,0.981,0.988,0.989,0.993,1.095,1.076,0.935,1.056,0.858,1.022,1.049,1.135,0.98,1.103,0.893,0.951,1.028 +NM_017924,0.816,1.033,1.0,0.916,0.9,1.053,0.99,1.171,0.852,0.974,1.085,0.902,1.096,1.14,1.098,0.999,0.95,0.974,1.065,1.168,0.943,1.144,1.023,0.955,0.951,1.046,0.941,1.0,1.351,1.036,0.965,0.955,1.039,0.993,0.916,0.979,1.042,1.024,1.039,0.976,0.95,1.029,1.138,0.937,0.89,0.999,0.951,0.897,1.01,0.929,0.9,1.003,0.873,1.067 +NM_017926,1.118,0.97,0.895,1.081,1.017,1.059,1.145,0.849,1.35,0.898,0.88,0.941,0.961,0.894,1.214,0.93,0.958,1.087,0.87,0.98,1.224,0.927,0.808,1.064,1.047,0.951,0.961,1.024,1.002,0.993,0.941,0.967,1.233,0.916,1.03,1.155,0.986,1.039,1.043,1.048,1.037,0.881,0.734,1.123,0.849,0.975,0.98,0.986,0.935,0.865,1.051,1.067,0.888,0.883 +NM_017927,0.7,0.934,1.22,0.659,1.251,1.012,0.711,0.622,1.711,1.302,0.791,1.209,0.667,0.756,1.004,1.18,1.071,1.094,1.164,0.925,0.527,0.886,1.156,1.626,0.524,0.878,1.561,1.113,0.452,1.22,0.969,1.267,1.541,1.002,0.325,0.778,0.875,1.124,1.006,0.65,1.35,0.954,0.664,1.104,1.304,1.074,0.967,0.932,0.967,0.867,0.964,0.914,1.049,2.02 +NM_017931,0.614,1.78,0.692,1.28,0.622,3.188,0.979,0.393,0.902,0.6,3.058,0.514,0.567,0.672,1.42,5.474,0.722,1.24,0.62,2.196,0.54,0.618,2.57,0.717,0.928,0.84,0.763,0.487,0.947,1.724,0.561,0.916,1.782,1.866,0.401,0.877,3.385,0.668,2.147,0.818,0.624,2.904,1.869,0.93,0.566,1.992,0.892,0.698,3.323,0.686,2.211,0.878,0.535,1.357 +NM_017934,0.706,1.057,1.58,0.64,1.004,1.285,0.952,0.746,1.069,0.817,0.726,0.928,0.785,0.71,0.912,1.433,0.855,0.997,0.955,1.065,0.535,1.206,1.322,1.189,0.624,0.647,1.617,0.913,0.815,0.975,0.971,1.15,1.741,1.106,0.512,0.911,1.012,1.205,1.381,1.329,0.998,1.327,0.547,0.713,0.85,0.939,1.013,0.81,1.178,0.83,1.057,0.827,0.709,2.545 +NM_017935,0.781,1.55,0.814,1.064,0.907,1.576,1.13,0.833,0.868,0.78,1.734,0.891,0.876,0.947,0.924,1.521,0.906,0.914,0.913,1.472,0.881,0.784,1.293,0.825,0.8,0.891,0.789,0.8,0.863,1.243,0.775,1.135,0.891,1.361,0.904,0.952,1.214,0.949,1.376,0.887,0.918,1.578,1.044,1.177,0.854,1.352,0.917,0.868,1.204,0.879,1.513,0.994,1.002,1.354 +NM_017936,0.762,0.917,1.31,0.867,0.975,0.804,0.746,0.575,0.932,1.038,1.095,0.815,0.644,0.91,0.948,1.192,0.829,0.782,1.125,1.195,0.627,0.642,1.163,1.007,0.641,0.779,1.001,1.0,0.462,0.975,0.877,1.114,1.697,1.108,0.686,1.243,0.911,0.745,1.205,1.531,1.082,1.082,1.0,1.523,1.071,1.048,0.983,0.733,0.95,0.881,1.035,0.969,1.04,1.378 +NM_017937,1.264,0.975,0.9,1.001,1.048,1.187,0.925,1.07,1.073,1.081,1.172,0.9,1.09,1.032,0.964,0.935,0.994,1.135,1.088,0.799,0.894,0.961,0.946,0.977,0.934,0.999,0.828,1.011,0.977,1.041,0.895,0.997,0.916,0.817,1.065,1.142,0.944,1.052,0.863,1.071,0.901,0.81,1.059,1.044,1.014,0.927,0.91,1.089,0.966,1.213,1.058,0.956,1.016,1.073 +NM_017938,1.057,0.919,1.067,1.055,0.948,1.15,0.947,0.815,0.992,1.1,0.988,0.939,1.108,0.932,0.994,1.309,0.887,1.029,0.988,0.972,0.905,1.049,0.999,1.17,1.241,1.003,1.038,1.0,0.858,0.984,0.881,1.092,1.014,1.193,1.205,0.91,1.055,0.911,1.101,0.905,1.055,1.006,0.985,1.09,0.945,0.947,0.957,1.069,1.178,0.928,0.98,1.059,1.006,0.812 +NM_017941,1.033,1.088,1.099,1.0,0.95,1.078,0.996,0.998,0.765,1.014,0.964,1.083,0.894,0.831,0.949,0.992,0.908,0.927,1.045,0.956,0.918,0.886,0.889,0.917,0.977,0.993,1.107,0.862,1.178,0.99,1.074,1.127,1.016,1.011,0.931,1.149,1.003,0.961,0.965,0.955,1.003,0.956,0.867,1.001,0.904,0.961,1.065,1.005,0.933,1.063,0.959,0.995,1.023,1.131 +NM_017943,2.271,0.911,1.696,0.999,2.742,1.074,0.547,1.753,2.273,1.063,1.124,0.832,1.364,1.329,1.617,1.543,1.596,1.51,2.023,0.894,0.649,1.91,0.886,1.138,0.429,1.369,1.414,1.888,0.363,0.983,2.441,0.617,1.209,1.138,4.133,0.576,1.074,1.43,0.762,0.438,1.721,0.877,0.725,1.028,1.449,0.966,1.184,2.189,0.842,0.931,0.982,0.541,1.333,0.851 +NM_017944,0.747,0.972,1.504,0.521,0.962,0.991,0.87,0.597,1.366,1.379,0.852,0.84,0.578,0.654,0.882,1.145,0.827,1.306,1.253,1.067,0.567,1.21,1.321,1.228,0.769,0.916,1.291,1.09,0.665,1.512,1.126,1.001,0.943,1.284,0.31,1.471,0.95,1.14,1.067,1.305,1.025,1.219,0.728,0.695,1.286,0.916,0.978,0.847,0.814,0.78,1.089,1.016,1.165,1.235 +NM_017947,0.667,0.641,1.294,0.816,1.052,1.328,0.723,0.46,1.109,0.783,1.797,1.024,0.448,0.614,1.145,3.906,0.864,0.804,1.524,1.142,0.658,0.714,1.587,1.333,0.541,0.864,0.823,0.595,0.375,1.863,0.867,1.099,0.729,1.007,0.359,1.619,2.206,1.136,1.576,0.384,1.579,1.065,1.906,2.938,0.908,1.886,1.218,0.728,2.672,0.78,1.2,0.689,1.357,3.317 +NM_017948,0.864,0.978,1.509,0.803,0.946,0.951,0.784,0.743,1.409,1.313,0.723,0.931,0.826,0.711,0.952,1.061,1.094,0.835,1.007,1.013,0.893,1.03,1.32,1.144,0.682,0.75,1.543,0.893,0.565,1.11,1.057,1.43,2.811,1.009,0.599,0.893,0.839,1.109,1.27,1.179,1.351,1.173,0.751,0.956,1.112,0.844,0.805,0.78,1.08,0.988,0.99,0.717,0.799,1.856 +NM_017951,1.91,1.887,2.2279999999999998,2.005,1.685,1.98,1.447,1.29,2.1580000000000004,2.035,1.942,1.7040000000000002,1.818,1.596,2.081,2.112,2.0300000000000002,1.686,2.5149999999999997,1.955,1.651,2.205,2.45,2.1180000000000003,1.67,1.7650000000000001,2.568,1.525,1.482,2.145,1.619,2.5949999999999998,7.3149999999999995,2.048,1.257,2.086,1.952,2.065,2.981,2.708,1.942,1.959,1.73,3.176,1.988,1.904,2.076,1.901,2.1550000000000002,2.059,2.045,2.066,2.088,3.983 +NM_017952,0.762,1.1,0.987,0.932,0.689,1.121,0.744,0.433,1.09,0.891,1.151,0.704,0.616,0.863,0.889,1.398,0.674,0.849,1.003,0.997,0.699,0.877,1.629,0.912,0.771,1.059,1.183,0.657,0.625,1.118,0.819,1.252,1.473,1.306,0.306,0.971,1.195,0.783,1.529,1.032,0.944,1.077,0.967,2.029,0.935,1.013,0.833,0.812,1.421,0.691,1.012,0.92,0.844,3.006 +NM_017953,1.111,1.006,1.403,0.723,1.384,0.85,0.662,0.631,1.796,1.69,1.008,1.244,0.939,0.947,0.958,1.135,0.96,0.836,1.271,0.844,0.869,1.347,1.154,1.581,0.649,1.07,1.235,1.301,0.384,1.072,1.345,1.229,2.594,0.978,0.389,0.797,0.803,1.389,1.075,0.674,1.28,1.033,0.692,0.894,1.387,0.876,1.094,1.011,0.864,0.881,0.936,0.994,0.968,1.823 +NM_017954,0.571,1.814,0.607,1.013,0.604,1.672,0.971,0.483,0.61,0.592,1.32,0.583,0.527,0.626,0.79,1.175,0.573,0.864,0.523,1.291,0.494,0.518,1.856,0.635,1.036,0.56,0.738,0.612,0.776,2.445,0.581,1.593,0.713,1.794,0.607,0.697,1.093,0.614,1.371,0.59,0.586,1.664,0.872,1.092,0.558,1.244,0.781,0.565,0.987,0.578,1.335,0.822,0.537,1.244 +NM_017955,1.059,0.782,1.327,0.958,1.165,0.743,0.542,0.966,1.642,1.366,0.774,1.256,1.089,1.24,1.03,0.938,0.948,0.974,1.375,0.748,0.832,1.033,0.941,1.473,0.661,0.963,1.784,1.487,0.594,0.776,1.403,1.367,1.377,0.888,1.041,1.04,0.732,1.031,0.952,0.954,1.618,0.753,0.678,1.643,1.226,0.812,1.252,1.135,0.758,1.067,0.891,1.013,1.076,1.557 +NM_017957,1.055,0.994,1.092,1.003,1.135,1.119,1.007,0.974,1.296,0.954,0.757,0.996,1.027,1.032,0.979,0.84,1.059,1.187,1.206,0.842,1.164,1.178,0.872,1.044,0.873,1.354,1.061,0.973,0.989,0.881,1.08,0.933,0.726,1.16,1.335,0.625,0.859,1.287,1.483,0.708,1.304,0.827,0.651,1.214,1.357,0.799,1.191,1.405,0.852,1.313,0.866,0.741,0.948,0.948 +NM_017958,0.514,1.116,0.703,0.643,0.658,1.265,0.758,0.442,0.712,0.588,1.364,0.492,0.508,0.453,0.848,1.338,0.719,1.173,0.625,0.91,0.544,0.587,1.467,0.642,1.013,0.583,0.72,0.64,1.123,1.645,0.675,1.407,1.062,1.474,0.546,0.859,1.662,0.616,2.044,1.143,0.636,1.417,0.638,1.359,0.714,1.518,0.891,0.514,1.113,0.607,1.004,0.801,0.654,1.185 +NM_017963,0.843,0.897,1.212,0.944,0.886,1.069,0.702,0.855,0.877,0.752,0.836,0.841,0.776,0.954,0.836,0.854,1.226,0.781,1.1,0.833,1.005,0.863,0.931,0.868,0.782,1.005,1.968,0.778,0.649,1.074,0.879,3.282,2.251,1.176,1.155,0.874,0.97,1.102,1.354,1.57,1.032,1.024,0.859,1.146,1.006,0.879,0.898,0.966,0.84,1.409,0.968,1.401,1.083,1.28 +NM_017966,0.532,1.15,0.882,0.642,0.853,1.295,0.853,0.534,1.544,0.853,1.043,0.686,0.491,0.799,0.88,1.302,0.706,0.953,0.894,1.222,0.469,0.826,0.979,0.991,0.796,0.769,1.144,1.018,0.687,1.893,1.002,1.567,1.096,1.758,0.397,1.434,1.125,0.859,1.296,1.022,1.028,1.055,0.645,0.826,0.7,1.155,0.973,0.76,0.949,0.512,0.998,0.588,0.746,0.923 +NM_017967,0.609,1.641,0.949,0.905,0.759,0.914,0.686,0.449,0.973,0.838,1.101,0.971,0.816,0.492,0.779,1.359,0.777,0.801,1.176,1.305,0.423,0.66,1.76,0.871,0.804,0.779,0.926,0.909,0.35,1.239,0.677,1.323,1.128,1.838,0.0979,2.355,0.954,0.747,1.148,1.198,0.936,1.367,0.835,1.228,1.0,1.043,0.849,0.732,0.75,0.597,1.151,1.463,1.066,1.511 +NM_017969,0.68,0.949,1.103,0.836,0.879,1.11,0.687,0.478,1.175,1.01,0.933,0.667,0.536,0.81,0.8,1.068,0.971,0.864,0.875,1.012,0.608,0.622,1.399,1.08,0.695,0.751,1.382,0.856,0.476,1.207,0.907,1.521,1.734,1.124,0.497,1.24,0.906,0.776,1.365,1.494,0.933,1.149,0.954,1.612,1.145,1.188,0.778,0.678,1.21,0.712,1.133,1.012,0.914,2.142 +NM_017971,0.787,0.939,1.219,0.913,0.782,0.846,0.541,0.443,1.171,1.127,1.233,0.914,0.683,0.652,0.735,1.338,0.756,0.873,1.222,0.896,0.467,0.662,1.412,1.134,0.686,0.928,1.183,0.882,0.308,1.137,0.77,0.947,1.885,1.326,0.0891,1.062,1.178,0.8,1.179,0.988,1.123,1.125,0.754,1.347,1.18,1.126,1.084,0.758,1.121,0.754,1.107,1.125,1.216,1.61 +NM_017972,0.922,1.071,0.996,0.964,0.96,0.814,0.918,1.108,1.071,0.885,1.063,1.036,0.963,0.992,0.921,1.023,0.908,0.905,1.026,0.983,0.894,1.122,0.805,0.959,0.996,0.999,1.008,1.023,1.113,1.061,0.833,1.03,0.981,1.003,1.057,1.015,0.976,1.049,1.001,1.095,1.124,0.923,1.244,1.025,1.146,1.032,1.048,1.06,0.876,0.897,1.174,0.927,1.11,1.114 +NM_017974,2.191,2.141,1.9939999999999998,2.276,1.8900000000000001,2.053,1.8769999999999998,1.928,2.033,2.1180000000000003,2.072,2.0069999999999997,1.876,2.406,1.97,1.913,1.998,1.983,2.117,2.013,2.11,1.74,1.938,2.045,2.029,2.041,1.957,2.031,2.253,2.043,1.677,2.0229999999999997,1.938,2.3200000000000003,2.0090000000000003,1.817,2.077,1.899,1.8250000000000002,2.173,1.923,1.81,2.1799999999999997,1.854,2.076,2.0839999999999996,2.1639999999999997,1.907,2.143,2.325,1.807,2.088,2.035,2.206 +NM_017975,0.821,1.119,1.069,0.963,0.973,1.002,0.796,0.754,1.09,1.134,0.991,0.796,0.742,0.82,0.863,1.039,0.807,0.94,1.27,0.95,0.752,0.76,1.744,1.115,0.709,0.769,1.499,0.851,0.784,0.989,0.993,1.121,2.261,1.022,0.728,1.261,0.936,0.924,1.505,0.817,1.207,0.838,0.874,1.18,1.053,1.183,1.024,0.764,1.274,0.843,1.271,0.989,1.006,2.212 +NM_017976,0.868,1.36,1.225,0.863,0.956,1.22,0.807,0.857,1.132,0.863,1.216,0.91,0.956,0.854,0.874,1.217,0.914,0.847,1.082,0.984,0.951,0.917,1.343,0.921,0.847,0.823,1.168,0.838,0.9,1.34,0.859,1.742,1.026,1.643,0.788,0.76,0.957,1.099,0.933,1.298,1.226,1.167,0.852,0.853,0.895,0.951,0.959,0.798,0.79,0.864,0.87,0.839,1.466,1.418 +NM_017977,2.42,0.314,2.922,0.783,3.321,0.578,0.222,2.273,4.5,3.572,0.539,1.965,1.193,2.038,2.02,1.603,3.312,1.422,3.58,0.484,1.244,2.772,0.717,3.309,0.176,3.193,2.429,2.628,0.193,0.479,4.074,0.3,1.432,0.349,3.687,0.504,0.651,3.293,0.69,0.831,3.328,0.546,0.503,0.377,3.326,0.963,1.971,3.418,0.637,1.975,1.042,0.987,2.396,1.198 +NM_017979,0.868,0.974,1.167,1.15,1.112,1.077,1.067,0.913,0.883,0.943,0.997,0.973,0.987,1.13,0.859,0.965,0.955,0.999,0.991,1.174,1.061,1.039,0.941,0.99,0.921,0.879,0.857,1.048,1.117,0.985,0.921,0.995,1.299,0.96,0.961,1.104,1.048,1.106,1.129,0.987,0.91,1.017,0.979,0.879,1.086,1.066,0.926,1.021,0.996,1.099,0.857,1.092,1.121,1.02 +NM_017980,0.711,1.16,0.708,0.811,0.771,1.207,1.047,0.705,0.755,0.858,1.552,0.732,0.718,0.73,1.128,1.192,0.709,0.89,0.809,1.05,0.754,0.691,2.055,0.776,1.012,0.773,0.567,1.49,0.669,1.765,0.658,5.176,1.165,3.058,0.737,1.071,0.888,1.069,1.668,1.378,1.686,4.568,0.789,0.822,0.844,0.889,0.902,0.699,0.789,0.928,1.693,1.366,0.902,1.13 +NM_017982,2.547,0.719,3.479,1.368,2.513,0.646,0.672,1.938,4.044,2.496,0.558,2.977,2.505,2.665,2.315,1.007,2.154,1.551,3.146,0.781,1.473,2.748,0.618,2.887,0.86,2.717,2.462,2.914,0.682,0.764,3.351,0.782,1.088,0.737,0.544,0.502,0.543,2.756,0.526,0.545,3.251,0.697,0.604,0.752,2.651,0.584,1.248,2.365,0.512,2.477,0.948,0.863,2.526,0.723 +NM_017983,0.858,1.293,0.884,0.888,1.136,0.891,0.784,0.879,1.173,1.129,0.803,0.998,0.866,0.792,1.228,1.162,0.936,0.791,1.14,1.017,0.859,0.604,1.204,0.983,0.924,0.96,1.057,0.79,0.833,0.982,1.159,1.587,1.247,1.146,0.846,1.036,0.831,1.174,0.95,1.098,1.081,1.14,0.871,1.116,0.842,1.093,0.903,0.922,1.111,0.998,1.074,0.916,0.97,1.044 +NM_017984,1.102,1.254,1.362,0.968,0.941,0.91,1.011,1.052,0.953,0.989,0.996,0.854,0.971,0.941,0.981,1.117,0.947,0.916,0.991,0.961,1.002,0.957,0.941,1.036,0.885,0.976,0.958,0.842,1.123,1.056,1.106,1.047,0.903,1.128,0.949,1.048,0.926,0.961,1.032,1.086,0.955,1.038,1.153,1.121,0.983,0.911,0.961,0.959,0.846,0.971,0.971,1.077,1.032,0.929 +NM_017985,1.088,1.034,0.992,0.883,1.083,1.044,0.983,0.919,1.02,0.982,0.796,1.184,1.078,0.988,1.145,1.047,1.112,0.964,0.965,0.847,1.005,0.998,1.149,0.959,0.99,1.09,1.054,0.969,1.495,0.97,0.975,0.924,0.999,1.001,1.103,0.975,1.02,1.117,0.948,0.979,1.121,1.026,1.037,0.987,1.017,1.011,1.012,0.99,1.083,1.049,0.99,0.955,1.265,1.067 +NM_017986,1.035,0.9,1.019,1.088,0.89,0.794,0.837,1.056,0.751,0.922,1.056,0.784,1.028,0.935,1.471,0.976,0.946,0.964,1.143,1.019,0.917,0.921,0.848,1.081,0.997,0.959,1.262,0.936,0.582,0.971,1.002,1.091,0.981,1.01,1.059,0.876,1.629,0.873,1.001,0.999,0.922,1.48,1.194,0.795,0.942,1.21,1.146,1.078,1.177,1.189,1.113,1.072,1.018,0.851 +NM_017988,1.001,0.915,1.012,1.027,1.142,0.865,0.712,0.869,1.488,1.15,1.174,0.794,0.841,0.954,0.999,1.288,0.979,0.849,1.097,0.967,0.8,0.722,1.005,0.958,0.761,0.834,0.936,1.245,0.739,0.905,1.399,1.052,1.478,1.007,1.109,0.859,0.841,1.018,0.95,0.75,1.209,1.016,0.89,0.941,1.014,1.142,1.271,0.818,1.082,0.816,1.023,0.883,1.013,1.586 +NM_017990,0.735,1.153,1.215,0.71,0.862,0.919,0.821,0.683,0.775,0.771,1.294,0.62,0.758,0.924,1.052,0.85,0.82,0.79,0.859,1.016,0.735,0.811,1.284,0.934,0.955,0.823,1.917,0.755,0.573,1.685,0.933,1.932,1.648,1.347,0.464,0.855,1.056,1.302,2.196,1.221,1.155,1.324,0.849,1.319,0.901,0.684,0.785,0.809,0.823,0.98,1.084,0.915,1.065,1.458 +NM_017991,0.55,1.147,1.315,0.591,0.809,1.05,0.522,0.439,1.16,0.828,0.832,0.727,0.523,0.74,0.945,1.178,0.824,0.789,0.956,1.228,0.505,0.952,1.395,1.038,0.653,0.804,1.483,0.915,0.38,1.383,0.9,2.475,1.788,1.496,0.296,0.857,0.933,1.1,1.324,1.653,1.064,1.198,0.799,0.96,0.783,0.882,0.936,0.677,0.989,0.712,0.967,0.83,0.756,2.167 +NM_017993,0.882,0.908,0.948,0.868,0.963,0.942,1.613,1.075,0.996,0.964,0.899,0.976,0.929,1.31,1.026,1.218,0.974,0.978,1.065,1.093,0.938,1.122,1.044,1.144,0.921,0.871,1.076,0.927,1.047,0.88,1.014,1.02,0.9,0.956,0.878,0.911,1.068,1.053,1.133,1.151,1.066,1.106,1.412,1.003,0.953,1.021,0.905,0.988,1.022,0.945,0.962,0.946,0.907,1.072 +NM_017994,0.476,1.129,0.913,0.638,0.68,1.652,0.836,0.538,0.905,0.78,1.455,0.64,0.528,0.5,0.992,1.84,0.679,0.869,0.923,0.968,0.436,0.695,2.061,0.943,0.527,0.536,1.14,0.671,0.633,1.869,0.921,1.078,2.255,1.668,0.661,1.104,1.536,0.72,1.516,1.17,0.942,1.458,0.836,1.792,0.793,1.151,1.056,0.757,1.054,0.579,1.241,1.288,0.705,1.556 +NM_017996,0.981,1.103,0.958,1.0,0.901,1.218,0.954,0.863,0.971,0.878,0.983,0.995,0.932,0.818,1.071,1.085,0.927,0.947,0.872,1.225,0.855,0.843,1.189,0.844,0.97,0.85,0.866,0.908,1.117,1.258,0.818,1.22,1.507,1.322,0.943,1.132,0.973,0.93,1.324,0.88,0.917,1.221,1.03,0.9,0.894,0.977,1.073,0.825,0.85,0.919,1.0,0.957,0.893,0.868 +NM_017999,0.847,0.973,1.263,0.915,0.896,0.943,0.823,0.704,1.054,1.005,0.842,0.88,0.806,0.712,0.917,1.048,1.386,0.897,1.261,0.933,0.851,0.852,1.078,1.028,0.883,0.984,1.086,0.77,0.605,0.974,0.848,1.248,1.342,1.095,0.55,0.667,0.927,0.998,1.264,1.053,0.914,1.071,0.681,1.709,1.007,0.893,0.937,0.945,0.882,0.927,0.888,0.838,1.087,1.749 +NM_018001,1.045,0.932,0.923,0.992,1.106,1.13,1.253,1.021,1.114,1.056,0.95,0.939,1.029,1.209,0.994,1.27,1.037,1.002,0.857,1.061,0.977,0.898,0.935,1.051,1.036,0.972,0.853,1.033,1.461,0.962,1.07,1.052,1.276,1.171,1.09,0.884,0.981,1.038,1.005,1.053,1.039,1.062,0.984,0.936,1.019,1.096,1.112,1.033,0.97,0.951,0.955,0.944,0.879,0.943 +NM_018003,1.319,0.777,1.693,0.603,2.125,1.001,0.625,1.576,2.55,1.517,0.723,1.853,1.033,1.144,1.427,1.128,1.346,0.976,1.74,0.973,0.86,2.038,1.13,1.349,0.503,1.588,0.976,2.576,0.589,0.708,2.157,1.19,1.162,0.815,3.492,0.913,0.675,2.412,0.863,0.922,2.011,0.838,0.486,0.751,1.609,0.78,1.459,1.661,0.878,1.124,0.874,0.716,1.19,0.946 +NM_018004,1.432,0.92,2.212,0.938,1.845,0.951,0.784,0.706,2.269,1.69,0.862,1.286,0.822,0.79,1.153,1.359,1.422,0.814,1.451,1.084,1.119,0.75,0.881,1.095,0.737,0.766,3.059,1.063,0.597,0.992,0.925,2.472,2.323,1.035,0.715,0.801,0.83,0.87,0.712,1.082,1.784,1.263,0.791,0.597,3.531,0.686,1.624,0.687,0.866,2.308,1.614,2.12,4.2,1.231 +NM_018006,0.958,0.953,0.999,1.113,0.902,0.919,0.824,0.8,0.949,1.041,1.054,0.996,0.913,0.827,0.935,1.214,1.03,0.949,1.078,0.924,0.861,1.213,1.103,1.083,0.94,1.157,0.872,0.895,0.628,0.909,0.932,1.13,1.604,0.932,0.743,1.164,1.025,0.971,1.185,0.876,1.108,1.048,0.777,0.99,1.12,0.988,0.93,1.091,1.146,1.036,1.009,1.023,0.931,1.444 +NM_018008,0.998,1.072,0.982,1.064,0.877,0.97,0.955,1.002,0.957,0.969,1.025,1.025,0.974,0.965,0.897,1.0,1.109,1.052,1.012,0.975,0.924,0.908,0.959,0.984,1.132,0.842,0.9,0.815,0.941,0.886,0.929,0.981,0.971,1.002,1.08,1.0,0.889,0.937,1.053,1.031,0.967,0.891,1.017,0.926,1.065,1.056,1.098,1.108,1.078,1.247,0.89,1.004,0.986,1.041 +NM_018009,0.46,1.003,0.947,0.759,0.548,1.851,1.578,0.471,0.555,0.586,0.98,0.584,0.479,0.433,0.991,1.547,0.646,1.256,0.575,2.024,0.452,0.684,1.181,0.642,1.155,0.515,1.181,0.56,0.907,2.185,0.465,1.319,0.532,1.37,0.42,0.887,2.274,0.497,1.29,0.817,0.872,2.237,1.642,1.225,0.691,1.657,1.828,0.532,3.146,0.699,1.538,0.977,0.736,1.164 +NM_018010,0.964,1.164,0.948,0.886,0.976,0.999,0.877,0.844,1.087,0.847,1.228,1.092,0.896,0.791,1.067,1.186,0.972,0.935,0.928,1.091,0.82,0.852,0.975,1.023,1.175,0.853,0.968,0.946,1.026,1.152,1.051,1.517,0.974,1.407,0.85,0.962,1.064,1.034,0.782,0.806,0.935,1.322,0.898,0.814,1.017,1.328,0.828,0.791,0.841,0.874,1.017,0.916,1.155,0.948 +NM_018013,0.668,2.559,0.795,0.96,0.641,1.547,1.178,0.781,0.712,0.715,2.296,0.752,0.829,0.865,0.987,1.086,0.673,0.835,0.616,1.701,0.772,0.679,1.562,0.835,1.439,0.753,0.72,0.75,0.978,2.697,0.796,2.821,1.116,2.397,0.683,1.989,1.368,0.973,1.254,1.272,1.19,2.587,0.909,2.315,0.768,1.017,0.842,0.683,0.83,0.614,1.48,1.0,0.799,1.041 +NM_018015,1.02,0.982,1.042,1.104,0.929,0.964,1.032,1.009,0.967,0.941,1.005,0.968,0.976,0.85,0.991,0.809,0.947,1.032,0.902,1.009,0.961,1.032,0.87,0.933,1.0,0.881,0.916,0.963,1.146,0.907,0.881,0.941,1.016,0.906,0.988,1.098,1.076,0.911,0.959,0.951,1.047,1.018,1.025,1.02,0.926,1.019,1.041,1.148,0.907,1.173,1.009,1.029,1.11,0.955 +NM_018017,0.794,0.873,1.151,0.958,0.976,0.976,0.933,0.855,1.186,1.013,0.943,0.911,0.841,0.827,0.988,1.111,0.889,1.044,0.928,1.107,0.77,0.897,1.0,1.07,1.022,0.881,1.181,1.143,0.952,1.127,1.048,1.024,1.196,1.149,1.082,0.924,1.019,0.894,1.176,0.904,1.083,0.993,1.315,0.947,0.975,1.269,1.024,0.904,1.326,0.817,0.964,0.759,1.0,1.182 +NM_018018,1.083,0.999,0.93,0.953,1.194,0.96,0.871,1.067,0.93,1.058,1.237,1.031,0.903,0.792,1.024,0.927,0.966,1.031,0.714,1.156,1.02,1.236,1.192,1.234,0.891,1.128,1.08,0.958,0.97,1.18,1.086,1.366,0.94,0.902,0.815,0.995,0.995,1.053,1.016,0.961,1.025,1.023,0.92,0.858,1.032,0.926,1.341,0.987,1.092,0.962,1.158,0.893,0.892,0.902 +NM_018019,0.809,1.232,1.056,0.77,0.941,1.06,1.049,0.637,0.955,1.001,0.793,0.875,0.783,0.696,0.945,1.067,0.977,0.965,0.745,1.322,0.599,0.761,1.328,0.933,0.981,0.724,1.219,0.939,0.862,1.392,0.759,1.432,1.029,1.174,0.531,1.045,1.043,0.844,0.976,0.907,0.953,1.295,1.098,1.197,1.076,0.958,0.964,0.828,1.071,0.853,1.013,0.861,0.793,1.538 +NM_018022,0.334,1.9,1.499,0.758,0.554,1.384,0.792,0.327,0.617,0.679,1.102,0.38,0.36,0.507,0.814,1.295,1.105,0.761,0.908,1.163,0.388,0.556,1.305,0.77,0.671,0.369,1.311,0.639,0.572,1.928,0.698,1.619,1.186,2.071,0.235,0.707,1.214,0.477,1.302,1.143,0.952,1.134,0.917,1.053,0.623,0.974,0.97,0.423,0.806,0.75,0.987,1.151,1.052,3.261 +NM_018023,0.875,0.996,1.127,0.797,0.993,0.985,0.769,0.638,0.906,0.848,0.94,0.761,0.74,0.803,0.935,1.183,1.04,0.866,1.115,0.972,0.796,0.937,1.205,0.931,0.824,0.901,1.208,1.07,0.883,1.197,0.935,1.889,2.591,1.419,0.807,0.912,0.897,0.955,1.255,1.275,0.947,1.098,0.662,1.372,1.03,0.919,0.978,0.956,0.951,0.896,1.121,0.872,0.864,2.452 +NM_018024,0.976,1.189,1.309,0.757,0.994,0.994,0.75,0.824,1.284,0.986,0.881,1.054,1.0,0.854,0.996,1.199,0.934,0.932,1.378,0.978,0.866,0.924,0.944,1.051,0.922,1.058,1.373,0.975,0.628,1.02,1.037,1.42,2.285,1.158,0.645,0.918,0.795,0.99,1.126,1.309,1.058,1.048,0.761,1.952,1.021,0.992,0.817,0.899,1.058,1.003,0.999,0.908,0.944,1.087 +NM_018025,0.793,1.023,0.974,0.826,0.935,1.172,1.0,0.7,0.927,0.859,1.041,0.785,0.734,0.757,0.897,1.238,0.913,0.944,1.028,1.073,0.793,0.774,1.345,0.898,0.817,0.942,1.0,0.858,0.945,1.222,0.945,1.071,1.588,1.285,0.586,1.016,1.11,0.937,1.2,0.901,0.921,1.018,0.975,1.157,0.944,1.025,1.103,0.799,1.141,0.785,0.925,0.851,0.928,1.241 +NM_018026,1.07,0.992,1.084,1.002,0.86,1.076,0.994,0.986,0.906,1.043,0.97,0.997,1.027,0.996,0.844,1.026,1.077,0.86,1.18,0.966,1.172,0.952,0.873,0.939,1.098,1.155,1.044,0.936,0.867,1.084,0.978,1.151,1.151,1.089,0.91,0.809,0.897,1.08,1.458,0.951,0.881,1.036,0.885,1.083,1.001,0.816,0.839,1.095,0.95,1.178,0.879,0.845,0.932,1.023 +NM_018027,1.047,0.999,1.354,0.954,1.01,1.023,0.777,1.05,1.393,0.722,0.939,0.866,0.987,0.988,0.941,0.853,1.029,0.857,1.106,1.326,0.851,0.912,0.945,0.997,0.977,0.983,1.261,1.162,0.68,1.252,1.114,1.372,0.951,1.362,0.768,0.815,1.017,1.08,0.962,0.962,1.086,1.269,0.743,0.822,0.942,0.931,0.893,0.955,0.789,0.999,0.969,0.869,1.137,1.033 +NM_018029,1.022,0.866,0.993,1.0,0.96,1.133,0.993,1.123,0.93,0.899,1.041,1.0,1.156,0.88,1.464,0.878,0.965,0.958,1.028,0.981,1.027,1.026,0.915,1.208,1.042,1.016,1.08,0.91,0.957,1.009,0.989,1.011,0.922,0.868,0.918,0.966,0.984,0.952,1.004,1.161,0.98,1.083,1.107,1.023,0.972,0.907,1.061,0.896,0.958,0.956,1.018,0.997,0.841,1.123 +NM_018030,1.869,3.0389999999999997,2.231,1.6989999999999998,1.9220000000000002,2.883,2.0540000000000003,1.642,1.947,1.5419999999999998,2.885,1.632,1.604,1.7349999999999999,2.193,2.8179999999999996,1.55,2.06,1.788,2.274,1.377,1.7349999999999999,2.265,1.528,2.169,1.912,1.696,2.127,1.4140000000000001,3.6319999999999997,1.7999999999999998,1.8519999999999999,1.7930000000000001,2.9530000000000003,2.048,1.9529999999999998,2.879,2.1870000000000003,2.2190000000000003,1.494,1.749,2.856,2.097,1.721,1.65,2.697,1.897,1.826,1.8399999999999999,1.507,2.502,1.951,1.38,4.066 +NM_018031,0.707,1.079,0.831,0.86,0.699,0.909,0.701,0.359,0.77,0.793,0.844,0.616,0.489,0.824,0.662,0.982,0.74,1.024,1.093,1.7,0.476,0.798,1.51,0.86,0.731,0.715,1.611,0.544,0.571,1.246,0.741,1.629,1.231,1.195,0.287,1.601,1.191,0.764,1.666,1.19,0.657,1.741,1.087,1.018,0.734,1.322,0.723,0.864,1.664,0.739,1.138,0.785,0.948,1.756 +NM_018032,1.054,0.904,1.063,1.001,1.032,0.983,0.902,0.743,1.153,1.043,0.901,0.969,0.974,0.846,1.067,1.176,1.093,1.097,1.175,1.064,0.904,0.946,1.199,1.065,0.9,0.935,0.967,0.944,0.769,1.003,1.099,1.223,0.91,0.965,0.925,1.22,0.982,0.881,0.956,1.044,0.914,1.018,0.942,1.026,0.918,1.012,0.937,0.937,0.923,0.987,1.095,0.937,1.03,1.216 +NM_018034,0.771,1.023,1.27,0.818,0.935,0.96,0.695,0.78,1.274,1.001,0.997,1.202,0.806,0.736,0.98,1.11,1.01,0.795,1.115,1.078,0.677,0.935,1.113,1.009,0.722,0.965,1.205,1.009,0.695,1.171,0.832,1.324,2.602,1.111,0.52,1.279,0.825,1.08,0.93,1.033,1.267,1.026,0.871,1.137,1.031,1.15,0.917,0.83,0.968,0.859,0.806,1.251,0.999,1.633 +NM_018036,0.932,1.027,1.192,0.964,1.046,1.041,0.848,0.867,1.023,1.052,0.966,0.911,0.774,0.932,1.185,1.434,1.056,0.959,0.966,1.092,0.797,0.962,1.145,1.086,0.791,0.897,1.114,1.04,0.929,1.158,0.916,1.293,1.555,0.95,0.915,0.869,1.022,1.174,1.268,1.059,1.035,1.098,0.999,1.04,1.005,0.918,1.169,1.061,1.137,0.983,1.125,0.886,0.832,1.069 +NM_018037,1.9060000000000001,1.908,1.838,1.751,2.093,1.9469999999999998,2.052,1.9249999999999998,2.176,1.914,1.968,2.185,1.959,1.903,1.907,1.972,2.004,2.161,2.004,2.033,1.98,1.819,1.9820000000000002,2.1020000000000003,1.983,2.118,2.026,2.3529999999999998,2.295,1.916,2.158,1.918,2.077,1.952,2.396,2.046,2.093,2.005,2.065,2.026,2.125,2.037,2.113,1.7530000000000001,1.909,1.984,2.129,2.1879999999999997,1.947,2.254,1.847,2.033,1.885,1.842 +NM_018038,1.154,1.002,0.791,1.05,1.1,1.1,0.913,0.967,0.875,1.024,0.88,1.014,1.04,1.124,0.944,0.999,0.906,1.1,0.897,1.052,1.019,1.156,0.924,0.94,0.868,1.016,0.948,1.075,0.962,0.876,0.946,0.994,1.168,0.956,1.143,1.094,0.947,1.085,1.011,0.857,0.85,0.977,1.114,1.149,1.245,0.975,0.946,0.94,1.001,1.07,1.008,1.242,1.043,1.084 +NM_018039,1.113,0.974,1.1,0.834,1.06,1.127,1.027,0.946,0.855,0.972,1.088,1.191,0.83,0.856,1.479,0.895,0.969,1.097,1.032,0.951,0.888,0.95,0.941,1.034,0.989,1.003,0.793,1.059,0.953,0.882,0.979,0.946,1.158,1.071,1.137,0.996,1.063,1.139,0.878,0.967,0.988,0.916,1.201,1.09,1.059,1.024,0.842,1.092,1.072,1.223,0.933,0.95,1.078,0.987 +NM_018040,0.885,1.082,1.21,1.043,1.0,1.099,0.909,0.94,0.854,1.024,0.87,0.996,0.926,1.009,0.996,1.259,0.958,1.085,1.01,1.075,0.819,0.991,1.107,1.198,0.862,0.774,0.926,0.806,0.634,1.052,0.977,1.338,1.787,1.099,0.783,0.874,0.987,0.925,1.057,0.943,1.092,0.913,0.888,1.016,1.041,1.108,1.014,0.959,1.008,0.996,1.058,0.984,1.115,1.272 +NM_018042,0.77,1.603,1.293,0.754,0.935,1.024,1.27,0.93,0.994,0.922,1.322,1.066,0.946,1.008,0.992,1.637,0.969,1.092,0.839,1.315,0.818,0.85,1.238,0.869,0.758,0.812,1.369,0.956,1.034,0.915,0.83,1.092,1.1,1.185,0.718,0.806,0.899,0.611,0.764,0.937,0.851,1.447,0.728,1.073,1.001,1.256,1.06,0.739,0.984,0.65,0.976,1.18,1.058,2.108 +NM_018043,0.597,1.214,1.526,0.845,0.684,1.273,0.975,0.662,0.765,0.631,1.099,0.541,0.595,0.53,0.734,1.863,0.735,0.984,0.7,1.336,0.478,0.665,2.313,0.608,0.767,0.578,2.569,0.625,1.041,1.507,0.581,1.64,3.432,1.824,0.533,2.11,1.021,0.923,2.155,0.627,0.652,1.527,1.145,4.95,0.722,1.001,0.937,0.54,0.646,0.639,1.457,0.93,0.522,1.973 +NM_018044,0.958,0.97,1.016,0.902,0.85,0.951,0.838,0.928,1.056,0.987,1.067,0.921,0.83,0.852,1.077,1.161,1.003,0.905,0.911,1.194,0.941,1.0,1.019,0.991,0.935,1.008,0.97,0.886,0.952,1.016,1.043,1.057,1.516,1.117,1.099,1.071,1.0,1.056,0.961,1.051,1.053,0.993,0.856,1.069,0.919,0.767,0.993,1.013,1.056,1.152,1.081,1.009,0.941,1.195 +NM_018045,0.784,1.188,1.04,0.958,0.734,1.192,0.709,0.547,0.928,0.691,1.487,0.704,0.738,0.718,1.028,1.409,0.712,0.805,0.958,1.249,0.436,0.708,1.11,0.872,0.859,0.777,1.044,0.693,0.495,1.311,0.883,1.309,1.486,1.809,0.571,1.044,1.218,0.878,1.325,0.885,0.834,1.322,0.888,0.939,0.747,1.334,0.77,0.727,0.871,0.694,1.08,0.764,0.866,2.297 +NM_018046,0.797,1.115,1.339,0.739,1.062,1.343,0.906,1.004,1.003,1.037,0.852,0.985,0.863,0.702,1.006,1.851,1.043,1.048,0.909,1.33,0.676,0.911,1.061,1.149,0.937,0.833,1.206,0.945,0.722,1.057,0.936,0.976,1.488,0.986,0.752,0.665,0.968,1.025,1.459,0.792,1.058,1.054,0.576,0.822,1.093,1.129,1.102,0.938,1.128,0.862,1.19,0.78,0.88,1.2 +NM_018047,0.576,0.887,1.158,0.591,1.014,1.22,0.639,0.485,1.083,0.899,1.008,0.893,0.547,0.464,0.839,1.56,0.788,0.835,1.022,1.31,0.507,0.654,1.358,0.98,0.507,0.721,1.16,0.751,0.533,1.189,0.911,1.595,3.547,1.42,0.442,1.009,0.955,0.943,1.27,1.011,1.122,1.244,0.72,0.851,0.823,0.944,0.917,0.695,1.122,0.655,0.933,0.867,0.993,2.584 +NM_018048,1.024,1.031,1.062,1.03,0.77,0.943,1.246,0.892,1.116,0.844,1.002,1.09,0.937,0.835,1.131,1.056,0.99,1.16,1.0,0.864,1.087,0.977,1.19,1.036,0.908,1.042,1.044,1.132,0.957,0.867,0.997,0.905,1.198,0.924,1.11,1.001,0.889,1.017,0.971,0.929,0.909,0.942,0.917,0.948,1.139,0.964,0.915,1.091,1.098,0.856,1.083,0.945,1.074,1.06 +NM_018049,0.659,1.063,0.647,1.114,0.597,2.298,0.773,0.57,0.669,0.624,1.487,0.809,0.778,0.559,1.052,1.973,0.828,1.299,0.746,1.28,0.668,0.866,1.815,0.877,1.501,0.864,0.901,0.609,1.386,1.72,0.636,0.858,1.727,2.026,0.489,0.928,1.405,0.656,1.81,0.828,0.658,1.417,0.881,1.372,0.741,1.188,0.983,0.925,1.047,0.675,1.236,0.549,0.566,0.828 +NM_018051,0.868,0.922,1.008,0.896,0.963,0.983,0.768,0.786,1.099,0.977,1.002,0.932,0.849,0.976,1.298,1.325,0.976,0.902,0.995,0.926,1.06,0.85,1.317,0.897,0.86,1.022,0.968,0.988,0.784,1.122,0.814,1.209,1.403,1.113,0.662,1.105,0.951,0.989,1.136,1.159,0.984,1.049,1.068,1.087,0.94,1.219,1.086,0.908,1.029,0.885,1.055,1.033,1.028,1.468 +NM_018052,0.928,0.985,1.111,0.881,0.869,1.014,0.771,0.719,0.897,0.888,0.855,0.926,0.81,0.804,0.978,1.326,0.975,0.924,1.372,0.902,0.929,1.002,1.177,1.03,0.871,0.971,0.998,0.752,0.758,0.974,0.927,1.174,2.589,1.152,0.505,0.968,0.891,0.904,1.724,0.805,1.027,1.063,0.812,1.978,1.101,0.876,0.856,0.953,0.953,0.964,0.955,0.955,1.141,1.429 +NM_018053,0.549,1.465,0.993,0.865,0.743,1.574,1.035,0.549,0.809,0.743,1.012,0.659,0.504,0.558,1.052,1.426,0.8,1.194,0.852,1.415,0.386,0.701,1.304,0.957,0.807,0.603,1.029,0.867,0.745,1.705,0.679,1.567,0.8,1.505,0.368,0.719,1.266,0.835,1.202,0.99,0.987,1.395,0.888,0.743,0.749,1.071,0.985,0.628,1.04,0.677,1.17,0.979,0.625,1.391 +NM_018054,0.699,0.638,1.135,0.672,1.006,0.918,0.619,0.536,1.242,0.953,0.829,0.668,0.511,0.719,1.11,1.428,0.854,0.745,0.947,1.253,0.564,0.892,1.338,0.897,0.541,0.949,1.039,0.977,0.399,0.795,1.117,1.271,1.317,1.011,0.921,1.021,1.0,0.928,1.292,1.482,1.0,1.219,0.813,0.831,0.955,1.241,1.275,0.893,1.84,0.972,1.15,0.695,0.865,1.194 +NM_018055,0.992,0.946,1.113,0.941,1.066,1.047,1.023,0.935,0.962,0.862,1.126,0.968,0.979,1.23,0.96,1.055,0.949,0.885,1.023,0.969,1.025,0.811,1.128,0.986,1.021,0.941,0.919,0.924,1.266,1.024,0.915,1.011,0.896,1.034,1.065,0.925,0.982,0.985,0.93,1.069,1.163,0.973,1.035,1.042,1.0,1.052,0.953,0.936,1.08,1.04,1.064,1.137,1.083,0.959 +NM_018056,0.95,1.16,0.953,0.928,0.832,1.112,0.66,0.627,0.853,0.829,1.162,0.919,0.788,0.67,0.864,1.073,0.915,0.876,1.149,0.837,0.879,1.185,1.045,0.947,0.909,1.018,1.296,0.58,0.859,1.162,0.649,1.234,2.817,1.408,0.483,0.96,0.96,1.035,1.478,1.219,0.814,1.125,0.881,1.724,0.834,0.729,0.786,1.001,0.713,0.961,0.827,0.845,0.948,0.994 +NM_018057,1.037,0.939,1.192,0.85,0.923,0.897,0.837,1.011,1.047,1.132,0.957,1.094,1.011,0.951,0.742,1.139,1.072,1.005,0.938,1.098,0.93,1.153,1.036,1.119,0.991,1.066,1.299,1.119,1.095,0.97,0.911,0.895,1.28,0.989,1.047,1.151,0.906,0.891,1.084,0.974,0.996,1.055,1.06,0.814,1.091,0.825,0.866,0.936,0.912,0.96,1.077,1.129,1.321,0.926 +NM_018060,0.782,1.13,1.268,0.783,0.931,1.147,0.426,0.393,1.343,1.061,0.871,0.614,0.497,0.696,0.876,1.146,0.802,0.918,1.279,0.866,0.569,0.872,1.312,0.936,0.564,0.799,1.47,0.857,0.336,1.294,1.099,1.263,1.696,1.433,0.182,0.911,0.923,1.175,1.423,0.777,1.119,1.031,0.563,1.071,1.058,0.858,0.862,0.747,1.029,0.837,1.135,0.762,0.882,1.852 +NM_018061,0.881,0.897,0.975,1.018,0.98,1.095,0.818,0.976,1.024,0.998,0.819,0.887,0.902,0.894,1.415,1.233,0.859,0.966,1.001,0.913,0.864,1.022,1.026,0.933,0.873,0.93,1.189,0.917,1.039,1.03,1.171,1.088,1.519,1.008,0.857,0.866,0.942,0.999,1.323,1.069,0.948,1.012,0.931,0.9,1.097,0.906,1.09,1.013,1.052,1.194,1.067,0.901,0.989,1.052 +NM_018062,0.91,1.239,1.077,0.99,0.851,1.063,1.006,0.809,1.001,1.015,0.999,0.809,0.725,0.877,1.384,0.939,1.031,0.892,1.007,1.039,0.822,0.852,1.062,0.952,0.926,0.81,1.09,0.813,0.785,1.042,1.021,1.058,1.671,1.241,0.807,0.965,0.82,0.766,1.45,0.867,1.117,0.878,0.864,1.258,0.883,1.14,1.006,0.948,0.886,0.894,0.989,0.862,1.027,1.46 +NM_018063,0.784,1.25,1.071,0.921,0.798,1.08,0.839,0.843,1.11,0.99,1.06,1.073,1.006,0.794,0.881,1.157,0.891,0.933,1.081,0.908,0.736,1.0,1.274,1.117,0.764,0.786,2.135,0.776,0.542,0.966,0.919,1.23,2.634,0.944,0.738,1.104,1.15,1.088,1.427,1.051,0.927,0.831,0.701,1.289,0.939,0.952,1.068,0.972,1.097,0.954,1.219,1.039,0.796,1.977 +NM_018064,1.331,0.636,1.461,0.847,1.552,0.955,0.526,1.033,1.4,1.423,0.703,1.132,1.088,0.867,1.215,1.062,1.294,0.895,1.705,0.598,0.911,1.188,0.76,1.376,0.524,1.657,1.842,1.364,0.441,0.781,1.541,1.005,1.371,0.92,2.11,0.919,0.721,1.465,1.078,1.227,1.386,0.775,0.673,1.065,1.475,0.622,0.901,1.374,0.898,1.738,0.896,0.835,1.429,1.445 +NM_018066,0.588,1.211,1.419,0.67,1.173,1.07,0.921,0.503,1.027,1.391,0.761,0.807,0.587,0.56,0.738,1.241,1.039,1.032,1.034,1.056,0.516,0.793,1.258,1.174,0.509,0.639,1.354,0.905,0.61,1.282,0.772,0.927,1.003,1.1,0.264,1.175,0.999,0.842,0.995,0.651,1.201,1.107,1.118,1.144,1.211,1.191,1.404,0.803,1.384,0.702,1.18,0.851,1.036,1.255 +NM_018067,0.906,0.641,1.046,0.859,0.874,1.067,0.489,0.521,1.204,1.923,0.728,0.615,0.701,0.802,0.753,1.033,1.094,0.825,1.514,0.519,1.199,1.168,0.79,1.297,0.563,1.005,1.874,0.582,0.533,0.892,0.993,1.706,1.982,0.941,0.636,0.565,0.758,1.242,1.666,0.8,1.159,0.994,0.649,1.375,1.254,0.667,1.078,1.413,0.69,1.451,0.801,1.016,1.901,1.325 +NM_018068,1.026,1.216,0.891,1.06,0.85,1.488,1.003,0.837,0.854,1.011,1.368,0.909,0.882,0.906,0.808,1.103,0.894,1.229,0.803,0.996,0.959,0.819,1.106,1.021,1.123,1.025,0.819,0.806,1.348,1.674,0.832,0.853,1.099,1.494,1.077,0.894,0.94,0.783,1.18,0.846,0.833,1.345,0.888,0.997,0.936,1.093,0.931,0.836,0.928,0.951,1.029,0.82,0.839,1.452 +NM_018070,2.348,2.0140000000000002,2.003,2.113,1.946,1.976,1.767,1.736,1.855,1.8519999999999999,2.096,1.686,1.947,1.775,1.79,2.362,1.9769999999999999,2.211,2.1559999999999997,1.75,2.739,1.8780000000000001,1.967,1.674,2.755,2.406,1.9569999999999999,1.875,1.783,1.904,1.9169999999999998,2.048,2.971,2.374,2.588,1.8940000000000001,1.8210000000000002,2.1109999999999998,2.495,1.911,1.895,1.876,1.979,2.231,1.887,1.866,1.843,2.352,1.931,2.183,1.963,1.822,1.799,1.722 +NM_018073,0.795,1.165,0.972,0.817,0.706,1.566,1.107,0.678,0.892,0.811,1.192,0.723,0.729,0.744,1.362,1.443,0.821,1.137,0.999,1.305,0.708,0.807,1.205,0.715,1.118,0.807,1.248,0.713,0.864,1.645,0.793,1.14,1.426,1.818,0.629,1.093,1.119,0.9,1.387,0.871,0.803,1.262,0.694,0.895,0.886,1.069,0.864,0.71,0.951,0.673,1.125,0.745,0.724,1.58 +NM_018074,0.948,0.834,0.943,0.891,0.776,1.073,0.597,0.64,0.694,0.985,0.733,1.039,1.058,0.928,1.016,1.05,0.814,0.942,1.025,0.993,1.107,1.085,1.043,1.237,0.971,1.12,1.053,0.88,0.66,1.069,0.95,0.991,1.849,1.027,0.636,1.269,0.731,0.848,1.33,1.137,1.271,0.807,0.667,1.186,1.208,0.796,0.805,1.09,0.897,1.148,0.955,0.685,1.154,1.386 +NM_018075,0.913,0.961,0.988,0.991,0.882,1.163,0.763,0.767,0.986,0.98,1.348,0.999,0.83,0.798,1.067,2.676,0.973,0.969,1.33,0.906,0.923,1.149,1.163,0.957,0.842,0.961,0.914,0.795,0.816,1.533,1.032,0.792,1.438,1.312,0.639,0.7,1.154,0.983,1.299,0.93,1.027,1.202,1.225,0.934,0.967,1.277,0.923,0.945,1.029,0.971,1.219,0.794,1.178,1.107 +NM_018076,0.989,1.042,0.914,0.997,1.0,1.063,1.054,0.941,0.949,0.908,0.89,0.998,0.932,0.78,0.89,1.071,1.096,0.887,1.185,1.002,1.0,0.978,1.14,1.029,0.877,1.038,0.95,0.924,0.838,0.987,1.094,1.058,1.21,1.024,1.213,0.93,0.962,0.906,0.967,1.032,0.979,0.894,0.897,1.049,1.053,1.066,1.006,1.009,1.0,1.057,1.056,1.035,1.073,1.071 +NM_018077,0.654,1.043,0.996,0.79,1.3,0.962,0.926,0.582,1.063,1.379,0.886,0.906,0.824,0.929,0.908,0.992,1.047,0.946,0.988,1.044,0.812,0.81,1.689,1.152,0.86,0.861,1.353,0.931,0.759,1.034,0.941,1.191,1.62,0.963,0.642,0.859,1.001,0.891,1.754,0.999,1.056,1.031,1.135,1.369,1.229,1.032,1.074,0.806,1.199,0.935,1.167,0.971,0.9,2.186 +NM_018078,0.871,1.236,0.884,1.009,0.778,1.145,0.842,0.656,0.898,0.813,1.355,0.788,0.746,0.88,1.066,1.348,0.874,0.899,1.046,1.18,0.684,0.804,1.361,0.94,1.133,0.806,0.915,0.866,0.847,1.114,1.022,1.153,0.931,1.246,0.774,0.985,1.34,0.97,1.017,0.806,0.789,1.262,0.998,0.887,0.884,1.387,0.821,0.77,1.057,0.937,1.385,0.871,0.774,0.851 +NM_018079,0.523,1.413,0.936,0.75,0.619,1.419,0.849,0.424,0.801,0.749,1.318,0.856,0.518,0.589,1.205,1.269,0.642,0.924,0.833,1.211,0.551,0.638,1.718,0.771,0.912,0.54,1.002,0.726,0.797,1.399,0.672,0.887,1.418,1.796,0.375,0.779,1.484,0.648,1.404,0.844,0.743,1.54,0.789,1.126,0.711,1.265,0.827,0.535,1.038,0.596,1.554,0.795,0.757,1.15 +NM_018081,0.838,0.976,1.027,0.964,0.934,0.904,1.123,0.633,0.806,0.758,0.962,0.847,1.043,0.88,0.765,1.0,0.817,0.842,1.146,1.118,0.997,1.167,0.98,1.113,0.808,0.856,1.091,0.829,0.837,1.049,0.984,1.133,2.048,0.966,0.615,1.03,1.026,1.031,1.29,1.058,1.04,0.96,0.87,1.015,0.957,0.953,0.913,1.146,0.912,0.978,0.973,1.141,1.023,1.092 +NM_018082,0.84,0.825,1.379,0.592,1.318,0.859,0.655,0.678,1.455,1.144,0.949,1.631,0.686,0.824,0.842,1.156,0.887,1.155,1.587,0.89,0.783,1.353,1.038,1.382,0.675,1.038,1.476,1.384,0.849,0.95,0.941,0.985,1.477,1.138,0.388,1.105,0.984,1.474,0.784,0.711,1.404,0.878,0.628,0.652,1.126,0.942,1.027,1.096,0.941,0.934,1.089,0.876,1.09,0.997 +NM_018083,0.546,1.743,1.0,0.686,0.691,1.596,0.736,0.572,0.827,0.633,1.147,0.618,0.736,0.632,0.902,1.069,0.662,0.849,0.637,1.73,0.382,0.832,2.064,0.791,0.941,0.581,0.852,0.916,0.527,1.389,0.903,2.976,1.174,1.875,0.466,0.779,1.059,1.13,0.978,1.602,0.971,2.054,0.855,1.231,0.624,1.123,0.827,0.78,0.821,0.551,1.072,0.731,0.653,1.309 +NM_018085,0.967,1.164,0.898,0.965,1.116,0.89,0.953,1.012,1.068,0.987,0.809,0.829,0.936,0.935,0.945,1.066,0.935,1.122,0.849,0.757,0.97,0.812,1.412,0.96,1.008,1.105,1.387,0.894,0.587,0.949,0.935,1.46,1.712,1.146,0.772,1.001,0.778,1.092,1.266,1.032,0.936,1.231,0.786,1.699,0.855,0.647,1.167,0.764,0.993,1.124,0.966,0.88,0.863,0.988 +NM_018086,1.071,0.907,1.155,1.015,0.987,0.978,1.143,0.953,1.049,1.044,1.03,1.039,1.026,1.074,0.957,1.029,1.066,0.94,1.092,0.919,1.117,0.878,0.959,0.929,1.126,1.112,0.914,0.965,0.869,1.151,0.987,1.033,0.977,0.856,0.894,1.147,1.127,0.993,0.927,1.134,0.925,1.068,0.976,0.911,1.092,1.134,1.004,0.82,1.009,1.121,1.037,0.919,1.101,1.018 +NM_018087,0.924,1.209,1.058,1.074,0.872,1.058,0.851,0.673,0.879,1.001,0.999,0.896,0.793,0.727,0.695,1.134,0.846,1.174,0.98,0.87,0.766,0.896,1.712,1.054,0.718,0.962,1.009,0.879,0.835,1.127,0.852,1.004,3.191,0.955,0.629,1.369,1.198,0.845,2.075,1.143,0.908,0.853,0.949,1.54,1.031,1.114,1.014,0.82,1.33,1.02,1.365,0.963,0.89,2.076 +NM_018088,0.956,0.922,0.918,1.029,0.928,0.925,1.031,0.903,1.013,1.108,1.104,0.832,0.987,1.088,1.172,1.14,0.951,1.148,0.926,0.991,0.982,1.044,1.069,0.908,1.064,0.977,0.899,0.991,0.932,1.055,0.905,0.979,1.554,0.943,0.871,1.001,0.945,1.133,0.985,1.044,0.817,0.907,1.092,0.924,0.906,1.079,0.916,0.921,1.153,0.937,1.004,1.128,1.183,1.066 +NM_018089,0.619,0.964,1.459,0.684,1.184,0.873,0.789,0.802,1.363,0.803,0.824,0.903,0.521,0.702,1.166,1.144,1.009,0.863,1.081,1.235,0.645,1.136,1.127,1.243,0.509,0.768,1.497,1.171,0.534,1.037,0.922,1.717,1.925,1.032,0.873,1.19,0.766,1.293,0.93,1.097,1.224,1.018,0.466,1.191,0.731,0.877,1.066,0.737,0.854,0.92,0.938,0.731,0.757,2.567 +NM_018090,0.731,1.194,1.231,0.828,0.886,1.041,0.854,0.563,0.959,0.875,1.134,0.844,0.807,0.741,0.877,1.078,1.221,0.964,1.4,0.813,0.787,0.878,0.96,1.043,0.671,1.091,1.198,0.859,0.581,1.177,0.88,1.164,1.054,1.343,0.617,0.719,1.004,0.843,1.342,0.953,1.064,1.143,0.837,1.587,0.985,0.873,1.1,0.934,0.839,0.903,0.83,0.93,1.138,1.322 +NM_018091,0.68,1.025,1.157,0.721,0.919,1.336,0.722,0.495,1.003,0.952,1.098,0.928,0.677,0.634,0.814,1.292,0.909,0.769,0.946,1.387,0.518,0.928,1.172,0.962,0.918,0.687,1.138,0.941,0.621,1.537,0.807,1.49,1.439,1.411,0.366,0.771,1.24,1.057,1.487,0.737,1.069,1.26,0.637,0.812,0.881,1.529,1.066,0.759,1.411,0.698,1.129,0.933,0.721,1.7 +NM_018092,0.851,1.155,1.178,0.809,1.214,0.844,0.643,0.848,0.874,1.386,0.907,1.276,0.836,0.941,1.045,0.873,0.809,1.173,1.512,0.87,0.933,0.961,0.629,1.594,0.7,1.091,1.686,0.864,0.657,0.852,1.065,0.912,4.951,0.612,0.82,0.974,0.71,1.535,1.001,0.841,1.213,0.768,0.68,1.453,1.048,1.089,1.387,1.04,0.969,0.881,0.859,1.409,1.089,0.877 +NM_018093,0.804,1.012,0.953,0.887,0.988,0.817,0.574,0.805,1.256,1.424,0.854,0.809,0.815,0.858,1.046,1.144,0.989,0.805,1.355,0.783,1.07,0.859,1.131,1.141,0.745,1.078,1.053,0.888,0.959,0.995,0.945,1.453,2.773,1.188,0.631,1.389,0.951,1.187,1.569,0.917,1.077,1.023,0.683,1.986,1.008,0.721,1.008,0.89,0.901,0.889,1.014,0.94,1.315,1.747 +NM_018094,0.933,1.45,1.182,1.021,1.323,0.909,0.996,0.869,0.986,1.424,0.833,0.989,0.862,1.036,0.928,0.831,0.833,1.269,1.234,1.011,0.992,0.984,0.826,0.788,1.16,1.025,1.078,0.921,1.354,1.41,1.139,2.468,0.976,1.51,0.883,1.416,1.249,0.944,0.675,0.894,0.967,1.264,0.995,0.905,1.147,0.902,0.939,0.945,0.751,0.948,0.842,1.046,1.053,0.953 +NM_018095,0.878,0.951,0.971,1.021,0.95,1.075,0.836,0.711,1.049,0.947,1.32,0.799,0.869,0.922,0.906,1.394,1.026,0.989,1.039,0.956,0.703,0.765,1.205,1.021,0.796,0.8,0.976,0.78,0.781,1.316,0.911,1.059,1.438,1.251,0.634,1.173,1.137,0.828,1.307,0.977,0.987,1.077,0.893,1.079,1.072,1.093,0.958,0.677,0.992,1.015,0.996,0.971,0.95,1.395 +NM_018096,0.911,1.123,1.049,1.172,0.756,0.901,0.88,0.709,0.984,1.022,0.897,0.906,1.047,0.817,0.825,0.767,0.925,1.003,0.699,1.171,0.713,0.845,1.516,1.009,0.962,0.883,1.22,0.759,0.695,0.868,0.881,1.203,1.137,1.085,0.836,1.023,1.033,0.965,1.1,0.912,1.032,1.107,0.837,1.209,1.017,1.06,0.997,0.978,1.023,0.929,0.901,1.173,0.748,1.226 +NM_018098,0.445,1.427,1.334,0.833,0.686,1.555,1.152,0.507,0.757,0.758,0.926,0.891,0.595,0.42,0.929,1.669,0.911,1.36,0.483,1.486,0.289,0.87,2.011,0.983,0.506,0.337,1.83,0.623,0.611,1.526,0.668,1.901,5.422,0.881,0.332,0.793,1.231,0.8,2.845,2.076,0.786,0.885,0.687,0.992,0.813,1.227,1.604,0.647,1.846,0.667,1.831,1.466,0.429,8.684 +NM_018099,0.861,0.927,0.855,1.124,0.709,1.025,0.865,0.872,0.861,0.837,1.427,0.803,0.866,0.831,1.305,1.767,0.89,0.866,0.793,1.155,0.865,0.8,1.683,0.698,0.843,0.956,0.74,0.82,0.932,0.999,0.721,1.2,5.009,1.11,0.735,1.847,1.271,0.768,2.362,1.719,0.65,1.244,1.614,1.556,0.779,1.557,1.694,0.77,2.281,0.662,1.542,1.091,0.735,1.119 +NM_018100,1.006,0.978,0.947,0.953,0.826,1.071,0.899,0.926,0.961,0.983,1.005,0.919,0.887,0.829,1.022,1.155,0.983,0.921,1.03,1.044,0.924,0.909,0.975,1.006,0.976,0.938,1.037,0.978,0.677,1.144,0.993,1.355,1.09,1.142,0.974,1.012,1.051,1.01,0.97,1.199,1.05,1.145,1.068,1.036,0.861,0.945,0.885,0.876,0.992,0.855,1.064,0.865,0.971,1.176 +NM_018101,0.527,0.998,0.969,0.878,0.88,1.205,0.733,0.366,0.837,0.925,1.027,0.701,0.522,0.598,0.79,1.64,0.648,0.922,0.997,1.124,0.52,0.594,2.66,1.116,0.454,0.53,1.369,0.6,0.429,1.316,0.598,1.054,3.551,1.009,0.229,2.301,1.195,0.69,2.036,1.002,1.017,0.949,0.831,3.142,0.964,1.579,1.477,0.525,1.592,0.617,1.752,0.997,0.61,2.506 +NM_018102,1.301,0.94,0.923,1.149,0.915,0.998,1.002,0.898,1.023,0.951,0.86,1.102,1.033,1.077,0.786,0.968,0.917,0.874,0.758,0.983,1.003,0.868,0.94,1.099,0.904,0.856,1.047,1.067,0.766,0.847,0.812,1.009,1.072,1.095,1.022,1.009,1.026,0.955,0.935,0.932,1.052,0.956,0.869,0.918,1.089,1.098,0.999,1.096,0.842,1.017,1.008,1.016,1.104,0.902 +NM_018103,0.568,1.023,0.735,0.715,0.701,1.022,0.696,0.425,0.703,0.681,1.724,0.521,0.484,0.486,1.006,1.849,0.583,0.791,0.667,1.294,0.526,0.471,2.009,0.722,0.755,0.636,0.998,0.526,0.455,1.217,0.618,1.046,2.763,1.212,0.325,0.947,1.449,0.753,1.555,0.938,0.727,1.359,0.706,1.313,0.786,1.249,1.107,0.547,0.857,0.653,1.551,1.111,0.755,1.848 +NM_018105,0.905,1.128,1.032,0.757,0.858,1.051,0.761,0.948,0.864,0.837,1.115,0.873,0.875,0.787,0.866,1.336,0.851,0.942,1.094,1.079,0.906,0.827,1.137,1.011,0.857,0.938,1.302,0.95,0.509,1.012,0.938,0.986,1.464,1.214,0.638,0.852,1.197,0.947,1.037,0.868,0.913,1.04,0.756,0.94,0.945,1.041,0.862,0.815,1.026,0.924,1.114,0.893,0.898,1.295 +NM_018106,1.003,1.121,0.978,1.065,1.037,1.021,1.166,1.079,0.881,0.934,1.06,1.042,1.057,1.105,0.976,1.079,0.948,1.293,0.926,1.012,1.15,1.085,1.053,0.977,1.135,0.971,0.938,0.878,1.259,0.905,1.085,0.857,0.848,1.061,0.999,0.893,1.046,0.985,0.919,0.938,1.069,0.9,1.02,0.96,0.895,1.107,0.927,1.064,0.948,1.072,0.941,1.086,0.919,0.945 +NM_018107,0.819,0.726,1.128,0.751,0.815,1.059,0.554,0.503,1.073,0.856,0.957,0.814,0.594,0.747,0.97,1.266,0.878,0.89,1.303,0.888,0.468,0.755,1.125,1.079,0.614,0.936,1.415,0.467,0.557,1.068,1.004,1.132,1.1,1.372,0.561,0.762,0.943,0.871,1.42,0.853,1.005,1.075,0.661,1.31,1.115,0.893,0.955,0.903,0.995,0.932,1.146,0.625,1.036,1.455 +NM_018108,0.712,1.079,1.103,0.85,0.988,1.162,0.878,0.576,1.092,1.017,1.114,0.759,0.664,0.867,0.936,1.313,0.922,0.957,1.072,1.025,0.86,0.684,1.249,0.81,0.826,0.718,1.394,0.792,0.739,1.482,0.808,1.753,1.293,1.688,0.571,0.943,1.084,0.814,1.274,0.809,1.104,1.235,0.97,1.503,0.896,1.062,1.004,0.595,1.026,0.884,0.892,0.868,0.964,1.192 +NM_018110,0.613,1.071,0.571,1.034,0.656,2.013,0.713,0.498,0.777,0.646,2.084,0.609,0.486,0.519,1.072,2.708,0.494,1.389,0.92,1.326,0.538,0.754,1.355,0.776,0.906,0.743,0.371,0.56,0.996,1.964,0.592,1.26,1.725,2.003,0.287,0.686,1.314,0.76,2.258,0.758,0.66,1.708,0.92,1.295,0.676,1.585,0.755,0.798,1.093,0.543,1.43,0.66,0.519,1.67 +NM_018111,0.834,1.244,1.06,1.098,0.994,0.97,0.665,0.997,0.888,1.109,0.916,1.161,0.96,0.949,0.858,1.209,0.884,0.928,0.97,1.057,1.005,0.944,1.193,1.007,0.861,1.008,1.024,0.791,1.287,0.991,1.036,0.825,1.106,1.08,0.836,1.047,1.036,0.931,1.239,1.07,1.093,1.068,0.763,0.89,0.952,0.795,0.853,0.982,0.755,1.0,1.189,0.877,1.187,1.163 +NM_018112,0.827,0.917,0.806,0.713,0.797,0.967,0.818,0.782,1.038,0.889,1.302,1.014,0.842,0.736,1.017,1.217,0.773,1.003,0.954,0.973,0.737,0.715,1.297,0.99,1.087,0.762,1.115,0.928,1.198,1.163,0.774,1.174,1.609,1.041,0.648,1.012,1.078,0.809,1.475,1.251,0.89,1.034,1.033,1.268,0.941,1.22,1.516,0.764,1.179,0.832,1.261,1.139,0.853,1.378 +NM_018113,1.204,0.757,1.254,0.797,1.025,0.84,0.652,0.91,1.124,1.434,0.913,0.891,1.083,0.859,1.051,1.414,1.146,1.185,1.237,0.853,0.692,1.305,0.905,1.187,0.749,1.466,1.293,0.927,0.551,1.166,1.37,1.088,0.832,1.055,0.998,0.964,1.161,1.058,0.983,1.448,0.923,0.977,0.785,0.944,1.382,0.817,1.238,1.589,0.705,1.002,0.803,0.929,0.924,0.957 +NM_018114,1.011,0.894,1.168,0.883,1.108,1.034,0.775,0.855,1.231,1.026,0.988,1.131,1.199,0.881,1.081,1.576,1.119,1.041,1.493,0.924,0.824,1.225,0.973,1.324,0.706,1.161,0.994,0.952,0.774,1.197,0.934,1.136,1.084,1.247,0.488,0.997,0.878,1.287,1.118,0.741,1.196,0.982,0.73,1.048,1.028,0.779,1.003,1.029,0.745,0.978,0.95,0.954,1.031,0.985 +NM_018115,0.978,0.899,1.021,0.926,0.803,1.055,0.762,0.665,1.01,0.955,1.087,0.837,0.784,0.768,0.965,1.272,0.851,0.759,1.095,0.923,0.806,0.891,1.319,0.889,1.018,0.826,0.947,0.808,0.791,1.015,0.905,1.392,2.567,1.469,0.636,0.816,0.836,0.809,1.724,0.97,0.95,1.104,0.657,1.313,1.089,0.869,0.779,0.864,0.812,1.022,1.073,0.9,1.09,1.293 +NM_018116,0.879,0.935,0.834,0.884,0.854,0.97,0.71,0.729,1.497,1.063,1.012,0.863,0.657,0.537,0.854,1.528,0.804,1.051,0.858,0.848,0.552,0.977,1.401,1.249,0.938,0.872,0.897,0.926,0.462,1.266,0.86,2.89,2.578,1.02,0.799,2.529,1.198,0.945,1.694,0.935,1.003,1.185,0.809,1.803,1.049,1.127,1.204,0.997,1.067,0.676,1.307,0.933,0.972,1.992 +NM_018117,0.812,0.974,1.07,1.238,0.977,0.936,0.836,0.783,1.117,0.976,0.944,0.735,0.759,0.937,1.135,1.333,1.001,0.985,1.093,1.195,0.894,0.79,1.131,0.826,0.703,0.826,0.952,0.886,0.821,0.939,1.032,1.293,1.374,1.03,0.871,1.189,0.973,0.937,0.97,0.775,1.021,0.913,0.992,1.39,1.018,0.98,0.941,0.772,0.914,0.883,1.069,0.945,1.196,1.393 +NM_018118,1.093,1.023,0.984,1.27,0.977,0.993,0.983,1.053,0.986,0.996,1.033,1.092,1.006,1.083,1.167,0.935,1.077,0.804,0.917,0.924,1.006,1.139,1.107,0.862,1.175,0.964,1.006,0.922,0.988,1.017,1.049,0.948,1.359,0.999,0.967,1.044,0.94,0.913,1.062,1.17,0.97,1.014,1.074,1.026,0.895,1.162,1.104,0.875,0.978,1.038,0.984,0.983,1.209,1.166 +NM_018119,0.664,1.077,1.14,0.523,0.975,1.082,0.851,0.771,1.032,1.079,0.865,0.981,0.722,0.7,0.797,1.386,1.083,0.855,1.217,0.97,0.872,0.921,1.22,1.304,0.622,0.748,1.333,0.671,0.755,0.821,1.009,1.294,3.907,1.16,0.478,1.022,0.8,1.223,1.494,0.885,1.014,1.107,0.704,1.164,1.124,0.767,0.902,0.765,1.075,0.847,0.989,0.657,0.994,1.882 +NM_018120,0.553,1.114,1.212,0.694,0.875,1.276,0.837,0.644,1.067,0.787,1.16,1.251,0.727,0.504,0.953,1.715,0.73,1.039,0.987,1.234,0.405,0.935,1.304,1.236,0.789,0.529,1.495,0.888,0.687,1.223,0.892,1.41,2.293,1.166,0.327,1.029,1.177,0.882,1.376,1.48,0.925,1.128,0.716,1.035,0.972,1.416,0.992,0.563,1.527,0.696,1.164,1.212,0.699,1.667 +NM_018121,0.909,1.02,1.288,0.727,0.993,0.987,0.934,0.671,1.028,0.804,1.022,1.067,0.829,0.867,1.19,1.215,0.873,0.913,1.03,1.07,0.854,0.869,0.97,0.968,0.816,1.065,1.163,0.88,0.623,1.143,0.908,1.642,1.223,1.095,0.696,0.903,0.915,0.904,1.093,1.043,1.066,1.138,0.861,0.998,0.955,1.009,0.744,0.869,0.934,0.983,1.146,1.002,0.93,1.493 +NM_018124,0.922,0.89,0.986,0.882,0.95,1.041,0.762,0.92,1.048,1.104,1.124,0.912,0.752,0.997,0.908,1.068,0.848,0.904,1.138,0.883,1.001,0.886,0.988,1.123,0.823,0.895,1.121,1.068,0.914,1.167,1.065,1.053,1.983,0.966,0.658,1.154,0.906,1.008,1.073,1.008,1.114,0.913,0.883,1.155,1.087,0.972,0.984,0.872,1.085,0.93,1.066,0.996,0.985,1.435 +NM_018125,1.061,0.869,1.41,0.888,1.079,0.834,0.824,0.932,1.44,1.071,1.01,0.806,0.946,1.006,0.84,0.806,1.166,0.992,1.085,1.016,1.01,1.165,1.535,0.993,0.804,1.399,0.825,1.002,1.672,0.885,0.887,0.878,0.735,1.003,1.18,0.865,0.874,1.183,1.327,0.957,1.266,1.117,1.023,0.873,1.387,1.029,1.09,1.193,1.072,1.404,1.007,0.694,0.958,1.065 +NM_018126,0.828,1.057,1.172,0.73,0.938,1.222,0.922,0.816,1.009,0.979,0.781,0.975,0.794,0.868,0.96,1.542,1.14,1.149,0.842,1.136,0.781,0.956,1.12,1.026,0.784,0.79,1.307,0.985,0.667,1.084,1.094,1.188,1.672,1.187,0.719,0.835,1.013,0.878,1.528,1.328,1.026,0.909,0.821,0.88,1.093,1.02,1.131,1.01,1.171,0.979,0.983,0.94,0.619,1.135 +NM_018127,0.933,0.764,1.02,0.863,0.963,0.85,0.73,0.582,0.95,1.022,0.829,0.792,0.787,0.754,0.828,1.3,1.085,0.971,0.992,0.977,1.029,0.956,1.207,1.058,0.761,0.957,1.29,0.83,0.739,0.891,0.934,0.915,1.506,1.026,0.505,0.916,1.093,0.974,1.795,0.928,1.048,1.104,0.681,1.27,1.034,0.915,0.879,0.917,1.014,1.183,1.006,0.702,1.031,1.576 +NM_018128,0.941,1.024,0.942,0.937,0.896,0.962,0.943,0.874,1.147,1.086,1.08,0.941,0.907,0.88,0.888,1.137,1.093,0.983,1.061,0.843,1.043,0.898,1.016,1.039,0.856,0.932,1.059,0.943,0.921,0.949,1.084,1.091,1.081,0.972,0.958,0.954,1.002,1.068,1.08,0.92,1.068,1.014,0.952,1.045,0.95,1.194,0.941,0.902,0.973,0.974,0.981,1.065,0.947,1.233 +NM_018131,0.607,1.012,1.014,0.991,0.77,1.183,0.796,0.49,0.86,0.964,0.937,0.789,0.687,0.529,0.767,1.267,0.733,0.975,0.986,0.76,0.613,0.685,1.819,1.073,0.574,0.623,1.626,0.684,0.483,1.135,0.667,1.457,3.71,0.78,0.356,3.743,1.046,0.712,2.284,0.995,0.965,0.691,0.932,2.022,0.934,1.142,1.116,0.617,1.254,0.668,1.523,1.617,0.809,3.241 +NM_018132,0.928,1.066,1.175,1.036,0.85,1.08,0.868,1.091,1.054,0.965,0.933,1.062,1.285,0.948,0.875,1.186,0.831,0.929,0.889,1.161,0.931,1.085,0.97,1.369,0.936,0.846,1.622,1.067,0.978,1.0,1.172,1.316,2.106,0.891,0.861,0.86,1.128,1.239,1.605,1.136,0.935,0.955,0.798,0.901,0.886,1.0,1.28,0.927,0.951,0.897,1.051,1.128,0.787,2.019 +NM_018133,0.837,1.135,1.487,0.713,0.95,0.998,0.691,0.789,1.197,0.835,0.833,0.794,0.715,0.826,1.002,1.153,0.888,0.855,0.825,0.839,0.625,0.87,1.184,1.09,0.783,0.694,1.405,0.866,0.554,1.397,1.037,1.489,1.965,1.301,0.474,0.531,0.954,1.153,1.464,1.191,1.1,1.232,0.747,0.899,1.023,0.889,0.84,0.912,1.018,1.019,0.933,0.995,0.777,1.354 +NM_018134,0.82,1.286,0.976,0.872,0.795,1.166,0.801,0.594,1.05,0.885,0.834,0.924,0.739,0.753,0.939,0.945,0.918,0.722,0.682,1.227,0.66,0.861,1.164,1.172,0.886,0.762,1.157,0.883,0.627,1.436,0.759,1.388,1.958,1.137,0.61,1.092,0.813,1.067,1.264,1.127,0.998,0.998,0.913,1.237,0.894,1.001,0.874,0.729,0.809,0.742,1.022,1.252,0.711,1.96 +NM_018135,0.862,0.939,1.154,0.941,0.974,1.053,0.949,0.679,1.17,1.096,0.782,1.0,1.011,0.555,0.686,1.043,0.861,1.427,1.138,0.79,0.515,1.258,0.923,1.171,0.681,0.969,0.906,1.003,0.806,1.036,0.891,1.194,1.445,1.233,0.83,0.998,0.74,0.918,1.64,1.029,1.005,0.933,0.796,1.336,1.371,0.812,1.189,1.584,0.88,0.974,0.91,0.787,0.78,1.396 +NM_018136,0.632,1.003,1.735,0.715,1.088,1.055,0.69,0.773,1.245,0.949,0.969,1.112,0.805,0.858,1.057,1.544,0.846,1.034,1.139,0.759,0.659,1.044,1.454,1.22,0.56,0.622,2.693,0.807,0.531,0.911,0.951,1.378,4.214,0.83,0.532,2.025,0.848,1.096,1.276,1.661,1.211,0.656,0.552,1.053,0.956,0.869,1.232,0.753,1.321,0.662,1.146,0.88,0.798,2.12 +NM_018137,0.918,1.153,1.289,0.898,0.798,1.282,0.759,0.817,1.269,1.07,0.888,1.05,0.874,0.711,0.982,1.68,0.941,1.068,0.977,1.215,0.909,0.893,1.412,1.005,0.825,0.747,1.194,0.924,0.634,1.198,1.277,1.189,1.376,1.187,0.621,1.02,1.049,0.99,1.072,0.893,1.084,0.999,0.651,1.108,1.171,0.886,1.173,0.79,0.845,0.855,1.114,0.748,0.921,2.096 +NM_018138,0.877,0.927,0.852,0.886,0.902,0.956,0.904,0.956,1.022,1.104,1.015,0.99,0.815,1.22,0.96,1.253,0.869,1.061,1.082,0.936,0.887,1.078,0.94,1.088,0.884,0.877,1.091,1.139,0.862,0.98,0.962,1.291,1.367,1.178,0.999,0.809,0.967,0.986,1.106,0.972,1.012,1.039,0.93,1.098,1.001,1.035,0.963,0.962,1.12,0.919,1.018,0.935,0.935,1.272 +NM_018139,0.672,1.238,1.111,0.698,0.909,1.409,0.876,0.81,1.024,0.877,1.054,0.96,0.921,0.752,1.02,1.944,0.813,1.003,0.831,1.292,0.733,0.959,1.229,1.071,0.671,0.715,1.21,0.907,0.904,1.073,1.038,1.054,1.493,1.288,0.617,0.663,1.162,1.047,1.226,1.031,0.845,1.058,0.587,0.923,0.948,0.997,1.122,0.81,1.197,0.867,1.068,0.812,0.828,1.514 +NM_018140,0.967,1.031,1.04,1.181,1.051,0.996,0.992,1.031,1.035,1.073,1.002,1.02,0.985,0.933,0.755,1.101,0.949,0.941,1.054,0.898,1.023,0.888,1.021,1.003,0.955,0.906,1.058,0.799,1.037,1.003,0.867,0.899,1.56,0.974,0.946,1.268,0.96,0.979,1.073,1.037,1.0,0.866,1.218,1.135,1.043,0.993,0.919,0.965,0.866,0.999,1.057,0.912,0.98,1.248 +NM_018141,0.852,0.838,2.02,0.679,1.306,1.352,0.773,2.005,1.25,1.134,0.793,1.27,1.331,0.733,1.327,1.76,1.515,1.041,0.928,0.801,0.639,1.669,0.977,1.639,0.619,0.705,1.309,1.272,0.799,0.882,1.83,1.377,3.102,0.938,1.24,0.639,0.864,1.809,1.48,0.886,1.207,0.937,0.633,0.672,1.354,0.851,1.123,1.143,1.309,1.171,1.001,0.786,0.579,1.844 +NM_018142,0.758,0.815,1.262,0.91,0.817,1.015,0.505,0.492,1.182,0.932,0.987,1.021,0.794,0.598,0.923,1.186,1.0,0.764,1.103,0.969,0.612,0.83,1.284,1.204,0.696,0.809,1.527,0.85,0.42,1.114,0.847,1.623,0.965,1.108,0.318,0.681,0.942,1.302,1.266,0.684,1.275,1.16,0.617,0.679,0.953,1.2,0.883,0.73,1.569,0.923,1.117,0.78,0.883,1.838 +NM_018143,1.011,0.918,1.0,0.964,0.904,0.941,0.959,1.024,0.982,0.951,1.016,0.944,1.109,1.06,1.059,0.859,0.84,1.135,0.978,0.976,1.016,0.923,0.934,1.018,0.982,0.937,1.018,1.031,1.158,0.964,0.974,1.039,1.117,0.959,1.06,0.918,1.209,1.137,0.956,1.084,1.034,1.159,0.805,0.971,0.955,0.835,1.023,1.0,0.914,1.009,0.944,1.017,1.053,1.052 +NM_018144,0.99,1.078,0.908,0.799,0.917,0.831,0.949,1.055,0.865,0.911,0.938,0.858,1.15,0.98,0.823,0.859,0.881,1.028,0.944,0.93,0.942,1.041,1.059,1.04,0.897,0.981,1.065,0.961,0.897,0.956,1.034,1.139,1.447,0.982,1.063,1.014,0.972,0.97,1.134,1.113,0.886,1.028,0.893,1.139,1.126,1.048,0.883,0.995,0.947,1.0,0.978,1.059,1.121,1.054 +NM_018145,0.779,0.944,1.038,0.8,0.789,1.302,0.544,0.461,1.202,0.832,0.962,0.654,0.677,0.94,1.12,1.825,0.91,0.734,1.248,0.867,0.582,0.728,1.54,1.163,0.737,0.848,1.364,0.819,0.356,1.12,0.982,1.513,1.844,1.232,0.342,0.726,1.286,0.83,1.588,0.678,1.029,1.111,0.725,0.938,0.865,0.876,0.817,0.654,1.163,0.784,1.028,0.843,0.96,2.114 +NM_018146,0.677,0.938,1.321,0.756,1.008,0.927,0.838,0.543,0.994,1.321,0.928,0.992,0.749,0.59,0.921,1.084,0.899,0.944,1.067,1.177,0.592,1.045,1.434,1.262,0.807,0.728,1.622,0.987,0.525,0.985,0.763,1.218,1.098,1.096,0.299,1.046,1.002,1.113,1.009,1.054,1.379,0.998,0.776,1.209,1.321,0.935,1.195,0.77,0.98,0.971,1.123,0.801,0.933,2.051 +NM_018147,0.731,1.303,1.444,0.713,1.34,1.122,0.7,0.719,1.267,1.312,0.63,0.924,0.927,0.684,1.03,1.501,1.107,0.998,0.967,1.098,0.608,0.93,1.286,1.283,0.477,0.638,2.074,1.123,0.478,0.972,1.196,1.374,3.888,1.052,0.381,0.592,0.807,1.316,0.943,0.729,1.464,1.018,0.652,0.844,1.139,0.896,0.991,0.699,0.787,0.813,1.225,1.379,0.762,1.435 +NM_018149,0.854,1.001,1.332,0.919,0.98,0.822,0.68,0.602,1.185,1.166,0.762,0.846,0.684,0.786,0.765,1.078,1.035,0.805,1.316,0.847,0.85,0.884,1.025,1.021,0.701,1.121,1.29,0.925,0.441,0.91,1.103,1.539,1.109,1.117,0.549,0.835,1.036,1.055,1.208,0.791,1.028,1.115,0.717,1.502,1.093,0.841,0.985,0.847,0.879,1.065,1.008,1.002,0.897,1.266 +NM_018152,0.869,1.118,0.939,1.1,1.109,0.991,0.91,1.012,0.978,0.87,1.048,0.901,0.94,0.959,0.809,0.905,0.939,0.995,0.89,0.9,0.947,0.947,0.882,0.908,0.943,1.136,1.064,0.974,0.84,1.019,1.026,1.106,1.149,1.155,0.978,1.045,0.982,1.083,1.024,1.072,0.964,0.984,0.795,1.089,0.957,1.175,1.001,0.876,0.935,1.02,0.901,0.978,0.965,1.431 +NM_018153,0.937,1.039,0.905,0.821,0.971,0.993,1.028,0.872,0.888,0.817,0.959,0.948,0.953,1.23,0.92,1.043,0.972,1.074,0.901,0.948,1.113,0.935,1.154,0.881,1.044,0.932,1.025,0.941,0.922,1.076,0.967,4.503,1.158,0.969,1.0,0.888,1.01,1.02,1.167,1.358,1.062,1.064,1.156,0.903,1.108,0.965,1.061,0.893,0.745,0.829,0.968,1.114,1.093,0.957 +NM_018154,0.788,1.14,0.953,0.972,0.757,1.085,0.825,0.78,0.919,0.95,0.878,0.959,0.895,0.759,0.877,1.475,0.804,0.923,1.038,0.837,0.666,0.927,2.078,1.098,0.707,0.968,1.464,0.711,0.538,1.0,0.742,1.086,1.953,1.115,0.594,1.766,0.989,0.883,2.436,1.371,0.835,0.976,0.688,2.826,1.02,0.902,0.914,0.938,1.21,1.039,1.204,1.42,0.979,1.904 +NM_018155,0.961,1.052,1.001,0.955,0.831,0.984,0.99,1.015,1.248,0.957,1.175,1.081,1.003,0.985,0.837,1.081,0.887,1.037,0.977,1.142,0.903,0.821,0.9,1.034,0.978,0.94,0.994,0.97,0.959,1.025,0.927,1.184,1.561,1.153,0.882,1.035,1.116,0.891,0.976,1.056,0.885,0.987,0.94,1.222,0.86,1.019,0.943,0.83,0.851,0.962,0.957,1.019,0.856,1.153 +NM_018157,0.633,1.027,0.8,0.741,0.68,1.515,1.096,0.552,0.804,0.517,1.262,0.869,0.713,0.727,1.149,1.993,0.701,0.902,0.976,1.361,0.688,0.717,1.392,0.898,0.763,0.636,1.132,0.775,1.088,0.979,0.641,1.451,1.954,1.447,0.62,0.998,0.937,0.711,1.142,1.044,0.853,1.326,1.086,0.891,0.658,1.359,1.002,0.716,1.2,0.807,1.178,0.898,0.791,1.597 +NM_018158,0.837,0.851,1.2,0.779,1.008,0.967,0.613,0.901,1.223,1.101,0.878,0.807,0.727,0.802,1.046,1.231,0.987,0.83,1.386,0.896,0.903,1.004,1.075,0.996,0.645,0.983,1.224,0.905,0.739,0.95,1.139,0.983,1.803,1.024,0.689,0.853,0.915,1.06,1.137,0.984,1.11,0.944,0.684,1.162,1.137,0.887,0.844,1.005,0.846,1.043,0.975,0.809,1.06,1.654 +NM_018159,1.045,0.895,1.09,1.048,1.147,1.014,1.057,1.042,0.917,1.048,1.045,1.16,0.947,0.894,1.054,1.035,1.016,1.094,1.018,0.985,1.041,0.99,0.944,1.123,0.925,1.108,1.075,0.864,0.845,1.061,0.953,1.535,1.07,0.941,1.076,0.898,0.908,1.201,1.022,0.865,0.937,1.123,1.149,0.996,0.897,0.958,1.121,0.956,0.966,0.918,0.961,0.963,1.304,0.992 +NM_018161,0.72,0.957,1.209,0.811,0.979,1.246,0.65,0.724,1.312,1.059,0.973,0.9,0.792,0.673,1.014,1.695,0.909,1.141,1.484,0.913,0.599,1.363,1.122,0.994,0.602,1.186,1.045,0.866,0.956,1.439,1.0,1.276,1.45,1.187,0.335,1.08,1.346,1.264,1.998,0.567,1.082,1.109,0.809,0.706,1.059,1.231,0.724,1.32,0.836,1.359,1.045,0.694,0.846,0.79 +NM_018164,0.847,0.904,1.339,0.745,1.08,0.999,0.719,0.683,1.155,1.131,0.758,0.877,0.733,0.92,1.081,1.264,0.854,0.831,1.175,0.779,0.726,0.978,1.255,1.045,0.848,0.695,1.267,1.093,0.613,0.903,1.205,0.824,4.58,1.196,0.496,0.949,1.079,1.056,1.242,0.665,1.094,1.027,0.715,4.992,1.085,0.983,1.011,0.816,1.238,0.864,1.031,0.825,0.768,1.443 +NM_018165,2.117,1.76,2.234,1.863,2.252,1.871,1.861,1.638,2.001,2.1719999999999997,1.6789999999999998,1.9939999999999998,1.9689999999999999,1.92,1.798,1.912,2.266,1.7389999999999999,2.123,1.764,1.895,1.879,2.041,2.052,1.8199999999999998,2.117,2.034,2.037,1.267,2.135,2.048,2.1390000000000002,2.05,1.928,1.9060000000000001,1.955,1.8599999999999999,1.741,2.026,2.0759999999999996,1.9540000000000002,1.9899999999999998,1.964,2.168,2.3890000000000002,1.9729999999999999,2.033,1.885,2.055,2.3449999999999998,2.069,2.018,2.078,2.197 +NM_018166,0.473,1.68,1.054,0.538,0.833,0.917,1.227,0.564,1.303,0.965,0.879,0.574,0.551,0.568,0.688,0.836,0.729,0.623,0.588,0.901,0.348,0.515,1.412,0.968,0.716,0.522,1.225,1.138,0.365,1.976,0.775,11.26,1.171,1.631,0.71,1.274,0.794,0.743,1.554,4.933,0.804,2.32,0.635,1.74,0.873,0.918,1.788,0.7,0.545,0.582,1.098,2.586,0.773,2.184 +NM_018168,0.901,0.938,0.972,1.015,0.908,1.004,0.827,0.889,1.101,0.969,0.957,0.992,0.914,0.923,0.878,0.898,1.023,0.86,0.916,1.144,1.0,1.007,0.873,1.003,1.002,0.944,0.903,1.008,1.211,0.88,1.089,0.946,1.136,0.937,1.026,1.057,0.922,0.986,1.109,0.997,0.958,0.978,1.091,0.923,1.351,1.105,1.074,1.122,1.004,1.04,1.043,0.977,1.14,0.973 +NM_018169,0.618,1.318,1.7,0.729,0.944,1.572,0.897,0.748,1.08,0.9,1.112,0.878,0.745,0.638,1.017,1.364,1.138,0.917,0.647,1.268,0.499,0.685,1.135,0.897,0.589,0.586,2.197,0.816,0.574,1.356,0.944,1.402,3.654,1.484,0.719,0.874,0.86,0.843,1.906,1.719,0.869,1.501,1.395,1.409,0.842,0.977,1.421,0.718,1.632,0.916,0.984,0.807,0.814,2.512 +NM_018170,0.784,0.894,1.273,0.799,0.836,0.939,0.564,0.519,0.942,0.886,1.085,1.204,0.794,0.693,1.034,1.772,0.706,0.953,1.151,1.057,0.575,0.857,0.999,0.971,0.823,0.877,1.243,0.844,0.386,1.081,0.856,1.184,2.004,1.455,0.256,1.038,0.979,0.973,1.113,0.764,1.001,1.105,0.716,1.612,0.888,1.059,1.145,0.887,0.882,0.9,1.119,0.973,1.046,2.819 +NM_018171,0.648,0.817,0.992,0.723,0.733,1.833,0.678,0.705,0.917,0.565,1.556,0.804,0.719,0.708,1.581,2.803,0.701,0.727,0.955,1.669,0.54,0.736,1.462,0.715,0.791,0.809,1.139,0.771,0.723,1.149,0.925,0.904,1.058,1.728,0.614,1.157,1.744,0.926,1.163,0.916,0.809,1.551,1.302,1.003,0.846,1.355,0.854,0.928,1.655,0.753,1.294,1.002,0.859,1.726 +NM_018173,0.989,0.721,0.897,0.831,0.777,2.249,0.603,1.022,1.075,0.572,1.478,1.075,1.071,0.749,1.135,2.128,0.554,0.782,0.852,0.998,0.853,1.696,1.468,0.899,0.855,1.019,0.758,0.816,1.025,1.356,0.797,0.583,1.181,1.208,1.041,0.728,1.447,1.255,1.855,1.04,0.83,1.24,1.061,1.002,0.768,1.228,0.934,1.825,1.21,0.793,1.063,0.568,0.554,1.691 +NM_018174,0.865,1.123,0.916,0.856,0.762,1.078,0.806,0.687,0.721,0.635,0.95,0.607,0.738,0.503,0.82,1.33,0.941,0.839,0.741,1.006,0.856,0.809,1.546,0.669,0.925,0.932,0.876,0.634,0.761,1.111,0.862,1.116,1.254,1.091,1.26,1.283,0.945,0.813,1.799,1.353,0.788,1.332,1.083,1.658,0.666,0.979,0.725,1.147,0.901,0.724,0.981,1.16,0.787,1.312 +NM_018176,0.92,0.888,0.898,0.991,0.96,0.808,1.107,1.009,0.94,1.042,0.989,1.061,0.946,0.907,1.015,1.03,0.943,0.94,0.913,1.043,1.071,0.968,1.001,0.995,1.06,1.056,1.039,1.008,0.921,0.977,0.994,1.942,1.146,1.115,1.019,0.994,0.904,0.973,0.964,0.969,0.907,0.953,0.882,1.08,0.958,0.756,0.726,0.981,0.922,0.964,1.008,0.985,1.009,1.238 +NM_018178,0.88,1.401,1.04,0.88,0.872,1.662,0.702,0.552,1.038,0.595,1.606,0.59,0.683,0.907,1.0,1.474,0.852,1.171,1.095,1.323,0.528,1.19,1.451,0.972,0.866,1.094,0.89,0.932,0.654,1.681,0.978,0.86,1.352,1.698,0.882,0.963,1.635,1.113,1.37,0.605,1.079,1.599,0.607,0.943,0.718,1.285,0.766,1.096,1.085,0.743,1.369,0.661,0.619,0.816 +NM_018179,0.979,0.878,1.742,0.766,1.229,1.018,0.612,0.776,1.284,1.107,0.945,0.86,0.629,1.239,0.941,0.855,1.23,0.918,1.091,0.796,0.794,0.988,0.839,1.38,0.58,0.912,1.994,1.193,0.555,1.043,1.21,1.109,3.084,1.065,1.119,0.776,0.703,1.022,1.199,0.878,1.337,1.008,0.476,1.067,1.268,0.714,1.012,1.08,0.674,1.13,0.991,0.829,1.321,1.42 +NM_018180,0.83,1.185,1.337,0.646,1.277,1.415,0.653,0.726,1.67,1.189,0.89,0.889,0.672,0.83,0.866,1.052,1.141,1.274,1.486,1.136,0.624,0.943,0.837,1.112,0.846,0.965,1.094,1.26,0.522,1.11,1.316,0.899,0.725,1.659,1.222,0.762,0.895,1.073,0.758,0.632,1.674,1.034,0.52,0.665,1.327,1.076,1.035,1.012,0.651,1.043,0.764,0.591,1.236,0.927 +NM_018181,0.958,0.885,1.08,0.94,0.82,0.904,0.649,1.228,0.88,1.029,0.866,0.982,0.908,0.825,0.795,0.959,1.118,1.1,0.959,1.182,1.1,0.977,0.96,1.057,0.867,0.926,1.07,1.095,1.111,1.077,1.11,1.413,1.21,1.19,1.008,1.016,0.766,1.298,0.891,1.079,1.102,0.886,1.045,1.045,1.13,0.9,0.859,0.93,1.071,0.864,0.959,0.894,1.09,1.177 +NM_018182,0.827,0.885,0.998,0.739,1.044,1.147,0.696,0.74,0.964,0.875,1.099,0.715,0.594,0.963,0.883,1.369,0.884,0.942,1.034,1.109,0.628,0.871,1.313,1.075,0.574,0.777,0.836,1.031,0.652,1.026,1.201,1.057,1.764,1.169,1.216,0.889,1.251,0.907,1.277,0.888,0.881,1.126,1.042,1.369,0.765,1.045,0.963,0.791,0.864,0.845,1.184,0.926,1.002,1.421 +NM_018183,1.084,1.002,1.008,0.913,0.998,0.971,0.977,0.936,0.855,0.97,0.891,1.115,0.829,1.011,0.981,1.205,1.024,0.983,1.227,1.065,1.02,1.035,1.096,0.95,0.936,1.022,1.119,1.042,0.815,1.107,0.91,0.98,1.09,1.009,0.923,1.006,0.908,1.113,0.991,1.116,0.981,0.877,0.891,1.032,0.939,0.945,0.984,0.905,0.942,1.007,1.045,0.964,1.121,1.088 +NM_018184,0.752,0.807,1.865,0.526,1.428,1.238,0.484,1.541,1.93,1.281,0.907,1.333,0.907,0.885,1.278,1.723,1.029,1.007,1.875,0.751,0.586,1.405,0.794,1.859,0.368,0.879,1.65,1.474,0.452,1.441,1.836,0.912,1.445,1.278,1.086,0.362,0.887,1.544,0.888,0.695,1.565,0.972,0.424,0.494,1.331,0.873,1.115,1.32,0.728,0.94,0.86,0.743,0.818,1.149 +NM_018185,1.012,1.142,0.878,1.0,0.912,1.039,0.935,1.034,1.08,0.929,1.085,0.884,0.924,1.218,0.884,1.038,0.948,1.095,1.0,1.049,1.006,0.971,1.039,1.02,0.826,0.806,1.018,0.967,1.228,0.962,0.994,1.025,1.118,0.988,0.867,1.012,1.035,0.993,0.974,0.961,0.972,1.066,0.907,1.146,1.026,0.979,0.978,0.956,1.083,1.039,0.845,1.017,1.17,1.009 +NM_018186,0.828,0.979,1.144,0.943,0.857,0.915,0.774,0.678,1.112,1.17,0.894,0.952,0.883,0.711,0.772,1.075,0.824,1.007,1.058,0.808,0.826,1.009,1.336,1.078,0.827,0.81,1.178,0.982,0.649,1.021,0.879,1.376,1.825,1.05,0.773,1.674,0.904,0.816,1.335,1.346,1.029,0.875,0.891,1.759,1.044,0.92,0.948,0.918,0.982,1.05,1.096,1.052,1.211,1.842 +NM_018188,0.992,0.872,0.895,0.873,0.696,0.837,0.725,0.591,0.931,1.019,0.884,1.087,0.874,0.677,0.871,1.46,0.811,0.824,1.567,0.693,1.038,1.055,1.145,1.216,0.925,0.969,0.949,0.565,0.568,0.944,0.871,0.929,5.308,0.914,0.464,1.406,0.918,0.862,2.195,1.401,0.968,0.794,0.927,2.316,1.003,0.87,0.991,1.163,1.08,1.137,0.991,1.187,1.366,1.894 +NM_018190,2.205,2.165,2.0250000000000004,1.873,2.12,2.04,2.4299999999999997,1.8529999999999998,2.12,1.79,1.912,1.905,1.895,2.005,2.2359999999999998,2.447,2.0999999999999996,2.093,1.884,2.009,2.023,2.032,2.122,2.225,2.0420000000000003,1.962,2.371,2.0949999999999998,1.983,1.9489999999999998,2.065,1.9819999999999998,2.59,2.028,1.76,2.209,2.249,1.931,2.062,1.681,1.9709999999999999,1.875,1.77,2.1109999999999998,2.23,2.205,2.205,1.8639999999999999,1.938,1.806,1.934,1.9699999999999998,1.7650000000000001,1.97 +NM_018191,0.947,1.129,0.939,1.04,0.954,1.045,0.912,0.921,0.989,1.033,1.076,1.012,0.998,0.811,0.869,1.009,1.09,1.08,0.917,1.136,0.945,0.898,1.145,0.985,0.967,0.969,0.98,0.965,1.018,1.01,1.0,1.002,1.103,1.096,0.936,1.12,1.042,0.951,0.903,0.948,0.981,1.12,0.881,1.152,0.924,1.013,1.087,1.022,1.0,1.062,1.088,0.962,1.028,1.085 +NM_018192,0.882,0.696,0.762,1.991,0.594,0.805,2.464,0.773,0.751,1.404,0.756,0.864,0.601,0.642,0.787,0.846,0.72,2.145,1.156,1.977,1.065,0.916,0.885,0.679,1.187,1.261,0.822,0.796,1.439,1.877,0.735,0.726,0.986,1.27,0.616,1.055,1.035,0.814,2.991,0.689,1.288,1.059,0.756,0.983,1.336,0.748,0.874,0.906,0.861,1.265,1.198,0.993,1.007,0.545 +NM_018193,0.9,1.02,1.161,0.941,1.053,0.908,0.883,0.796,1.168,1.067,0.777,1.035,1.001,0.791,0.946,1.145,0.952,1.073,1.049,0.906,0.759,0.988,1.212,1.314,0.791,0.788,1.476,0.842,0.724,0.956,1.102,1.267,2.008,0.997,0.857,0.945,0.849,0.999,1.766,1.093,0.999,0.884,0.965,0.967,1.115,1.043,1.056,1.11,1.087,0.956,1.092,1.124,0.767,1.722 +NM_018194,0.847,1.157,1.21,0.829,0.96,1.031,0.945,0.866,1.095,0.996,1.016,0.874,0.978,0.999,0.994,1.204,0.991,0.813,1.057,1.034,0.801,1.008,1.1,0.805,0.865,0.907,1.001,0.77,0.72,0.974,0.978,1.221,1.201,1.423,0.639,0.966,1.153,0.928,1.018,1.045,0.964,1.324,1.311,1.055,0.9,0.924,1.009,0.81,0.742,0.917,1.041,0.775,1.032,1.103 +NM_018195,1.134,0.999,1.034,0.931,1.164,1.13,0.769,1.274,1.229,1.001,1.176,1.231,1.046,1.08,0.9,1.122,0.799,0.954,1.218,1.02,0.796,1.09,1.034,1.163,0.772,0.915,0.855,1.191,0.628,1.286,1.009,1.148,1.145,1.233,0.758,1.347,1.038,1.152,1.144,0.982,0.914,1.066,0.716,0.817,1.041,0.896,0.842,0.996,0.845,0.835,0.852,0.958,0.862,1.114 +NM_018197,0.777,1.168,0.921,0.871,0.616,0.954,0.675,0.514,0.944,0.589,1.132,0.929,0.859,0.642,0.924,1.056,0.652,0.929,1.018,1.23,0.68,0.837,1.441,0.868,0.781,0.874,1.09,0.843,0.55,1.09,0.676,1.736,1.592,1.343,0.445,1.482,1.123,0.888,1.387,1.227,0.854,1.194,0.669,1.515,0.871,1.007,0.889,0.806,1.017,0.814,1.161,1.182,0.761,1.941 +NM_018198,0.647,1.164,0.98,0.68,0.814,1.011,0.665,0.401,1.199,1.112,1.005,0.749,0.509,0.518,0.869,1.799,0.981,0.908,0.842,1.136,0.564,0.648,1.385,1.054,0.674,0.724,1.196,0.705,0.522,1.096,0.78,1.15,1.804,1.08,0.248,1.035,1.215,0.667,1.651,1.052,0.995,1.122,1.088,1.28,1.058,1.258,0.992,0.637,1.727,0.718,1.103,0.888,0.884,2.162 +NM_018199,0.874,1.125,1.175,0.668,0.979,1.051,0.603,0.767,1.121,0.943,0.807,0.799,0.737,0.891,1.067,1.207,0.861,0.953,1.57,0.931,0.782,1.122,1.189,0.942,0.76,1.03,1.148,1.121,0.769,0.994,1.029,0.963,1.008,1.237,0.406,0.907,1.078,1.072,1.115,0.671,0.936,1.066,0.712,1.044,0.902,0.859,0.716,1.057,0.662,0.838,1.021,0.708,1.003,1.307 +NM_018200,0.814,1.145,1.108,0.876,0.947,1.124,0.779,0.66,1.004,0.806,1.18,0.852,0.721,0.834,1.071,1.415,0.888,0.904,0.996,0.907,0.876,0.837,1.611,0.881,0.927,0.923,1.066,0.755,0.778,1.237,0.941,1.213,1.222,1.189,0.672,0.919,1.229,0.81,1.059,0.932,0.992,1.295,0.824,1.069,0.916,0.91,0.921,0.774,1.01,0.848,1.011,0.895,0.887,1.261 +NM_018201,0.856,1.014,1.102,0.8,0.774,1.064,0.843,0.717,0.683,0.877,1.113,0.667,0.875,0.747,0.948,1.255,1.075,0.824,1.014,1.164,0.705,1.01,1.04,0.739,1.273,1.007,1.072,0.777,1.028,1.173,0.968,1.76,1.336,1.417,0.674,1.038,1.005,0.896,1.118,0.993,0.791,0.945,0.663,1.252,0.865,0.693,0.711,0.823,0.721,1.019,0.791,0.899,0.671,1.217 +NM_018202,1.886,0.662,1.171,0.744,2.426,0.864,0.598,1.872,2.318,1.101,0.599,1.007,1.243,0.925,1.358,1.232,1.684,1.058,1.86,0.733,1.077,1.353,1.024,1.482,0.568,1.393,1.199,1.732,0.483,0.807,1.997,0.905,1.676,0.945,4.066,0.893,0.773,1.899,0.97,0.912,2.334,0.842,0.619,0.854,1.787,0.937,1.254,1.557,0.838,1.681,0.841,0.684,1.193,0.943 +NM_018203,1.052,1.16,1.183,0.991,1.075,1.0,1.003,1.302,1.446,0.984,0.964,1.17,1.834,1.051,1.361,1.012,1.593,1.151,1.229,0.844,1.052,1.346,0.881,0.957,1.14,0.962,1.291,1.244,1.152,0.94,1.441,0.869,1.071,0.787,1.22,0.904,0.999,1.352,0.983,1.054,1.044,0.909,0.824,0.904,1.073,1.016,1.052,1.109,0.982,1.137,0.927,0.789,0.912,0.931 +NM_018204,0.957,0.997,1.394,0.964,1.024,0.909,0.796,0.709,1.174,1.069,0.867,0.878,0.809,0.988,0.915,1.164,0.999,1.03,1.074,0.907,0.87,0.882,1.133,1.087,0.753,0.879,1.448,0.846,0.716,1.133,1.002,1.255,2.103,0.923,0.783,1.457,0.82,0.939,1.156,0.919,1.205,0.86,0.872,1.339,0.998,0.901,1.051,0.92,1.029,0.928,1.139,1.09,0.861,1.755 +NM_018205,3.083,1.849,1.9729999999999999,2.0860000000000003,2.958,1.678,1.819,3.832,3.34,1.642,1.771,2.4939999999999998,2.798,2.123,2.466,2.1420000000000003,2.322,2.232,2.489,1.935,2.298,2.4850000000000003,1.7690000000000001,1.979,1.855,2.649,1.77,2.408,1.778,2.065,3.3899999999999997,2.391,3.867,2.141,10.766,1.9689999999999999,1.783,3.3390000000000004,2.221,1.917,3.3680000000000003,1.796,2.0860000000000003,2.138,2.061,1.8929999999999998,2.441,3.675,1.8479999999999999,2.525,1.9849999999999999,1.87,1.956,2.477 +NM_018206,0.711,0.986,0.997,0.912,0.812,1.656,0.714,0.48,1.019,0.863,1.365,0.815,0.587,0.792,1.002,2.059,0.807,0.988,1.568,0.91,0.592,0.796,1.151,1.037,0.828,0.886,1.131,0.767,0.709,1.82,0.902,1.1,2.261,2.01,0.448,0.672,1.57,0.857,1.594,0.608,0.948,1.406,0.772,0.933,0.824,0.986,0.942,0.735,0.744,0.8,1.189,0.681,1.074,1.884 +NM_018207,1.221,1.068,1.006,1.133,1.051,0.968,0.764,0.916,1.107,0.926,1.109,1.05,0.981,0.94,1.039,0.999,1.036,1.1,0.854,0.755,1.09,1.107,0.916,1.035,0.977,1.109,1.078,0.95,0.817,0.948,1.139,1.112,1.189,1.07,0.916,0.886,0.94,0.968,0.969,0.996,0.958,1.054,0.887,1.003,0.945,0.907,0.949,1.061,0.814,1.271,1.032,0.925,1.042,0.823 +NM_018208,2.251,0.829,0.989,1.266,1.281,0.877,0.958,3.699,2.17,1.651,0.918,1.247,4.136,2.13,1.956,0.873,0.939,1.373,1.881,0.807,1.408,4.536,0.866,1.053,0.917,6.348,0.938,3.146,0.65,0.865,3.868,1.48,1.242,1.11,1.31,0.87,0.92,1.9,0.909,1.069,1.216,0.817,0.8,1.14,1.195,0.89,0.983,5.222,0.803,0.974,0.817,1.027,1.204,1.264 +NM_018209,0.686,0.831,0.779,1.072,0.702,1.12,0.898,0.587,0.771,0.872,0.846,0.769,0.719,0.633,0.784,1.175,0.942,1.009,1.003,0.994,0.847,0.955,1.428,0.864,1.021,1.001,0.934,0.611,0.87,1.381,0.701,1.252,1.346,1.094,0.484,1.286,0.934,0.664,1.842,1.774,0.739,1.043,0.724,1.612,0.779,0.881,0.909,1.029,0.993,0.886,0.993,1.288,0.902,1.776 +NM_018210,0.86,1.066,1.147,0.956,0.786,1.345,0.753,0.538,1.107,0.905,1.194,0.813,0.765,0.959,0.899,1.653,0.908,0.895,0.975,1.119,0.662,0.969,1.044,1.147,1.205,0.959,1.072,0.81,0.622,1.99,0.852,1.512,0.846,1.535,0.484,0.793,1.095,0.937,1.177,0.808,1.073,1.214,0.824,1.269,0.855,0.98,1.026,0.821,0.692,0.809,0.973,0.571,0.834,1.065 +NM_018212,0.902,1.171,1.009,0.941,0.914,1.078,0.941,0.818,0.989,1.024,0.984,1.021,0.994,1.014,0.769,1.08,0.89,0.904,0.839,1.028,0.926,0.956,1.204,0.828,0.994,0.876,0.897,0.915,0.803,1.207,0.862,1.03,1.645,1.001,0.938,0.826,0.999,0.991,1.05,0.889,1.094,0.973,0.913,1.32,0.975,1.343,1.1,0.869,1.096,0.944,1.062,0.99,1.091,1.073 +NM_018214,0.77,0.767,1.187,0.866,0.842,1.489,0.658,0.364,1.059,0.812,1.542,0.472,0.558,0.734,1.211,1.562,0.945,0.959,1.181,0.839,0.515,0.683,1.182,0.729,0.576,0.703,1.277,0.721,0.564,1.21,0.768,0.989,1.162,1.161,0.506,0.766,1.498,0.739,1.334,0.687,1.029,1.075,1.062,1.253,0.936,1.21,1.361,0.696,1.397,0.833,1.085,0.774,0.8,1.284 +NM_018215,1.033,1.149,1.01,1.03,1.119,1.136,1.194,0.923,0.982,1.06,0.977,1.033,1.025,0.931,0.837,1.028,0.963,1.139,0.962,0.963,0.931,1.047,1.03,0.949,1.187,0.849,0.978,1.0,0.916,1.209,0.875,1.464,0.916,0.946,0.903,0.996,1.034,0.912,1.011,0.912,1.086,0.895,0.815,0.966,0.997,0.908,1.123,1.07,0.838,1.029,0.979,0.93,1.054,0.941 +NM_018216,0.819,1.197,0.98,0.891,0.842,0.913,0.711,0.451,0.971,0.859,0.897,0.761,0.802,0.743,0.952,1.064,0.929,0.865,1.217,0.963,0.706,0.73,0.998,0.972,0.933,1.02,0.893,0.671,0.577,1.036,0.983,1.417,1.554,1.38,0.638,0.876,1.015,0.894,1.637,1.46,0.891,1.138,0.851,1.543,1.038,0.742,0.997,0.809,0.871,1.024,1.035,0.947,1.106,1.435 +NM_018217,0.53,1.25,0.908,0.989,0.484,1.455,1.014,0.481,0.569,0.522,1.059,0.694,0.712,0.465,0.988,1.468,0.706,0.877,0.836,1.1,0.407,0.678,1.622,0.706,1.056,0.615,0.876,0.568,0.784,2.061,0.697,2.027,1.578,1.625,0.328,0.82,1.141,0.591,1.828,1.194,0.644,1.41,0.645,1.42,0.782,0.901,0.941,0.636,1.012,0.671,1.285,1.346,0.627,1.996 +NM_018218,1.024,1.018,1.053,1.15,0.986,1.047,0.934,0.993,0.947,1.069,1.017,0.811,0.855,0.86,1.084,1.034,1.161,1.091,0.957,1.107,1.122,0.899,1.08,0.94,1.093,0.803,1.068,1.009,0.923,1.092,0.981,0.931,1.053,0.923,0.907,0.925,1.0,1.019,0.988,0.816,1.176,1.151,0.947,0.938,1.168,1.054,0.947,0.974,0.958,0.94,0.983,0.949,1.072,1.011 +NM_018219,0.98,0.967,1.102,1.068,1.015,1.027,0.864,0.907,0.996,1.025,1.094,1.061,1.062,1.256,0.881,1.073,1.124,1.221,1.015,0.939,1.083,0.965,1.135,0.988,1.02,0.955,0.887,0.932,1.098,1.024,1.077,1.039,0.974,1.071,1.009,0.964,1.021,0.971,1.101,1.059,0.945,0.921,1.189,0.956,0.98,0.982,0.993,0.946,0.987,1.065,1.077,0.928,0.953,0.954 +NM_018221,0.998,1.097,1.138,0.886,1.061,1.069,1.053,1.091,1.099,0.936,0.999,1.118,0.987,1.027,0.938,1.049,1.069,1.011,0.914,1.127,0.879,1.126,1.05,1.031,0.969,0.945,1.276,1.06,1.131,1.088,1.184,1.015,1.017,0.921,0.899,0.86,1.005,1.105,1.143,1.009,1.018,0.866,0.861,1.113,1.091,1.03,1.131,0.986,1.238,0.921,1.003,0.961,0.921,0.882 +NM_018223,0.97,0.668,1.284,1.241,0.757,1.205,0.882,0.752,1.291,0.936,1.595,0.696,0.795,0.796,1.257,1.044,0.997,0.949,1.496,0.785,0.636,1.023,0.833,1.113,0.866,1.305,1.206,0.871,0.682,1.231,1.063,1.283,1.079,1.684,0.571,0.339,1.239,0.997,0.628,1.038,0.988,1.047,0.643,0.777,1.33,1.069,0.715,1.003,0.693,0.99,1.224,0.609,1.012,0.622 +NM_018225,0.97,1.047,1.031,0.83,0.949,0.935,0.943,0.814,1.153,1.059,0.929,0.962,0.902,1.024,0.989,1.171,0.981,1.009,1.048,1.056,1.008,0.851,1.127,1.277,0.946,0.832,1.275,0.939,1.022,0.967,1.078,1.048,1.431,1.018,0.873,0.886,0.974,1.05,0.974,0.736,1.221,1.022,1.281,1.091,0.915,0.931,0.961,0.857,1.144,0.878,0.922,1.048,0.881,1.785 +NM_018226,0.941,0.994,1.083,0.893,0.87,1.065,0.674,0.854,0.952,0.733,0.977,0.777,0.956,0.747,1.015,1.682,0.9,1.116,2.319,0.858,0.539,1.199,1.092,0.934,0.794,1.44,0.858,0.775,0.627,0.98,1.177,1.275,1.357,1.737,0.772,0.832,0.863,0.971,2.156,0.581,0.903,1.131,0.456,1.996,0.9,0.709,0.776,1.79,0.87,1.169,1.048,0.578,1.006,2.456 +NM_018227,0.911,0.827,1.365,0.812,1.033,1.015,1.018,1.306,1.037,0.922,1.064,0.982,0.768,0.985,1.077,1.251,0.949,1.093,1.178,1.017,1.032,0.951,1.081,1.035,0.729,0.788,1.361,1.088,0.84,0.809,1.158,0.886,1.178,1.003,0.928,0.893,1.073,0.961,0.999,1.332,1.013,0.838,0.759,1.02,1.022,0.917,1.184,0.767,1.11,1.012,1.111,1.042,1.163,0.899 +NM_018228,0.996,0.946,0.964,0.843,1.0,0.977,0.893,1.046,0.969,1.062,1.032,1.027,1.066,0.851,0.987,1.007,1.012,1.015,0.928,0.886,0.969,0.966,0.945,0.976,0.947,0.998,1.075,1.059,0.584,0.975,1.117,1.052,0.865,0.965,0.993,1.072,0.982,0.921,1.066,0.98,1.063,1.032,0.956,1.153,1.036,0.878,1.03,1.047,0.889,1.034,1.054,0.896,0.938,1.0 +NM_018230,0.727,1.11,1.438,0.696,1.017,0.879,0.702,0.654,1.363,1.045,0.785,0.782,0.528,0.873,0.983,1.156,0.855,0.806,1.222,0.986,0.75,0.884,1.235,1.005,0.618,0.811,1.58,0.994,0.533,0.994,1.084,1.419,2.757,1.353,0.423,0.813,1.05,0.877,1.167,1.087,1.185,0.995,0.714,1.241,1.096,0.911,0.867,0.729,1.237,0.803,0.933,0.906,1.022,2.28 +NM_018231,0.987,0.868,0.989,0.889,0.873,1.185,0.781,0.735,1.004,0.89,0.949,0.812,0.749,0.831,1.085,1.227,1.07,1.055,1.1,0.845,1.092,0.993,0.928,0.886,0.899,0.98,1.192,0.676,0.935,1.04,0.877,1.694,1.747,1.103,0.733,0.86,0.772,0.958,1.581,1.085,0.795,1.009,0.804,1.559,1.2,0.926,0.906,0.989,0.767,1.192,0.978,1.084,0.916,1.951 +NM_018237,0.541,0.885,1.145,0.5,0.807,1.41,0.575,0.416,1.581,0.995,1.002,0.88,0.515,0.503,0.646,1.452,0.734,0.687,0.676,1.008,0.518,0.829,1.53,1.284,0.532,0.396,1.54,0.913,0.429,1.403,0.772,1.234,2.146,1.061,0.256,1.573,1.201,0.82,1.227,1.011,1.26,1.123,0.998,0.993,0.778,1.374,1.286,0.352,1.455,0.529,1.48,1.082,0.686,1.807 +NM_018239,0.95,0.915,1.035,1.225,1.17,0.944,1.034,1.093,1.027,0.909,0.908,1.034,1.108,0.843,0.845,0.843,0.955,0.934,0.931,0.862,1.098,1.016,0.933,0.912,0.887,0.998,1.05,1.064,1.133,0.921,1.25,0.956,0.989,1.004,1.481,1.008,0.998,1.008,0.874,1.037,1.101,1.082,0.803,0.898,1.063,1.022,0.921,1.292,0.946,1.163,0.907,1.105,0.988,1.145 +NM_018240,0.971,1.009,0.776,0.928,0.973,0.981,0.761,0.94,1.006,1.054,0.901,1.066,0.888,0.886,1.051,1.164,0.941,1.099,0.745,1.084,0.946,0.978,0.986,1.16,0.941,0.937,0.968,1.112,1.039,1.001,1.119,1.235,1.395,1.027,0.878,0.948,0.903,1.107,1.014,1.16,1.015,0.988,0.816,0.872,1.026,1.044,1.058,0.904,0.986,0.883,1.069,0.9,0.939,1.023 +NM_018241,0.65,1.289,1.24,0.656,1.0,1.392,0.861,0.762,1.068,1.003,1.029,1.101,0.749,0.683,0.947,1.34,0.986,0.985,0.645,1.316,0.474,0.946,1.013,1.201,0.64,0.549,1.239,0.943,0.913,1.27,0.901,1.487,1.323,1.337,0.353,0.553,1.168,1.201,1.373,0.806,1.019,1.132,0.69,0.863,1.046,1.227,1.329,0.726,1.165,0.733,1.225,0.674,0.511,1.411 +NM_018243,0.964,0.967,0.984,1.028,0.948,0.987,1.045,0.848,0.851,0.895,1.113,0.962,0.869,0.897,1.009,1.414,0.897,1.014,1.028,1.071,1.01,0.933,1.211,0.934,0.947,0.95,1.0,0.861,1.381,0.978,1.043,1.257,1.233,1.06,0.932,0.949,1.093,0.887,0.944,0.932,1.05,0.966,1.515,0.95,0.933,1.102,1.074,0.776,1.131,1.159,1.039,1.003,1.01,1.067 +NM_018244,0.895,1.057,1.038,0.902,0.872,1.06,1.394,0.688,0.915,0.884,1.139,0.938,0.793,0.864,1.115,1.316,0.966,0.8,1.095,0.91,0.922,0.905,1.229,0.925,1.032,0.847,0.975,0.895,0.745,0.96,0.973,1.091,1.303,1.082,0.807,0.949,0.998,0.901,1.36,1.061,0.922,1.011,0.974,1.172,0.827,0.992,0.953,0.852,0.91,0.974,1.035,1.033,0.9,1.94 +NM_018245,0.961,1.055,0.928,1.057,1.004,0.909,1.119,0.916,1.014,1.156,0.938,1.002,0.964,0.966,0.919,1.027,0.988,0.967,0.976,0.981,0.908,0.934,1.117,1.081,0.881,0.868,0.94,0.935,0.938,0.833,0.968,1.064,1.363,1.14,0.991,1.023,1.022,0.842,1.071,1.0,1.041,1.086,0.952,1.032,1.089,0.868,0.954,1.103,1.172,0.939,0.953,1.011,1.286,1.071 +NM_018246,0.529,1.217,1.133,0.821,0.671,1.594,0.757,0.423,0.887,0.778,1.967,0.827,0.542,0.636,1.056,2.124,0.652,1.134,0.749,1.658,0.441,0.615,1.448,0.795,1.0,0.684,0.72,0.874,0.695,2.219,0.628,1.067,0.694,1.813,0.238,0.655,1.724,0.847,1.204,0.492,0.927,1.584,1.173,0.631,0.662,2.508,0.728,0.592,1.733,0.599,1.233,0.743,0.787,1.139 +NM_018247,0.797,0.9,1.021,0.87,1.028,1.075,0.821,0.67,1.256,1.013,1.177,0.704,0.77,0.89,0.927,1.045,0.928,1.043,1.083,1.119,0.716,0.798,0.999,1.118,0.81,0.85,1.159,0.891,0.931,1.077,1.171,1.038,1.035,1.056,0.987,0.943,1.021,0.897,1.282,1.011,1.181,0.982,0.823,0.971,0.943,1.235,0.969,0.758,1.001,0.955,0.922,0.847,0.853,1.154 +NM_018249,0.878,1.103,1.349,0.989,0.912,0.994,0.742,0.676,1.108,0.982,0.962,1.056,0.72,0.795,0.971,0.925,1.006,0.829,1.197,0.939,0.719,0.89,0.835,0.978,0.941,0.84,1.184,0.856,0.563,0.751,0.871,2.124,1.855,1.173,0.489,0.926,0.824,1.06,1.57,1.133,0.716,1.307,0.799,1.371,0.981,0.805,0.683,0.901,0.812,1.012,1.114,0.972,1.326,1.643 +NM_018250,0.766,0.913,1.119,0.785,0.767,0.993,0.764,0.576,1.162,1.065,0.982,0.775,0.67,0.739,0.875,1.175,0.886,0.998,0.875,1.089,0.568,0.707,1.287,0.854,0.703,0.952,1.261,0.803,1.037,1.2,0.98,1.233,1.262,1.323,0.401,0.784,1.024,0.825,1.756,0.627,0.939,1.197,0.669,1.159,1.09,1.123,0.867,0.933,1.193,0.936,1.065,0.822,1.002,1.459 +NM_018252,0.955,1.028,0.89,0.902,1.185,0.988,0.848,1.127,1.028,0.932,0.949,1.171,0.911,1.226,0.903,0.959,0.955,0.915,1.016,1.097,1.018,0.927,1.092,0.999,0.951,1.053,1.062,1.177,0.818,1.023,0.978,1.036,0.969,0.928,0.956,1.085,1.061,0.898,0.952,0.953,1.106,1.052,0.845,0.915,1.015,0.965,0.968,0.867,0.961,1.111,1.044,1.034,1.103,0.973 +NM_018254,0.883,0.946,1.225,0.879,0.905,1.133,0.842,0.811,1.103,0.746,1.237,0.971,0.863,1.151,1.011,1.318,0.844,0.984,1.178,1.005,0.806,0.956,0.988,0.896,0.926,0.918,1.142,1.015,0.819,1.245,0.988,1.167,1.423,1.318,0.607,0.804,1.034,0.998,1.11,0.852,0.895,1.15,0.711,1.196,1.01,0.868,0.814,0.857,0.793,0.853,1.003,0.79,0.831,1.133 +NM_018255,0.82,0.927,1.074,0.864,0.785,0.845,0.781,0.593,0.969,0.929,1.023,0.733,0.698,0.735,0.877,1.292,0.818,0.98,1.061,1.157,0.665,0.859,1.28,0.903,1.076,0.89,1.087,0.813,0.538,1.247,0.974,1.317,1.776,1.249,0.452,0.795,1.068,0.941,1.398,0.787,1.05,1.2,0.808,1.808,1.061,0.835,0.875,0.734,0.74,0.83,0.996,0.858,0.883,2.996 +NM_018257,0.845,1.258,1.353,0.983,1.137,0.895,0.8,0.766,1.206,1.125,1.044,0.89,0.845,0.994,1.024,0.976,0.994,0.991,1.024,1.164,0.882,0.823,1.138,0.913,0.867,0.835,1.136,0.923,0.848,1.176,1.029,1.249,1.431,1.081,0.753,1.11,0.915,0.781,0.986,1.202,0.974,1.058,1.102,0.956,1.006,1.052,0.917,0.721,0.902,0.958,0.936,0.883,1.286,1.809 +NM_018259,0.545,0.948,1.172,0.617,0.629,1.092,0.725,0.495,0.896,0.598,1.386,0.61,0.538,0.688,1.208,1.247,0.698,0.833,0.824,1.263,0.475,0.742,1.26,0.83,0.763,0.505,1.314,0.583,0.484,1.733,0.796,1.568,1.152,1.409,0.287,2.265,1.327,0.91,1.263,1.969,0.709,1.817,0.834,0.883,0.726,1.186,0.745,0.429,0.928,0.569,1.322,1.789,0.699,1.826 +NM_018260,0.907,1.002,1.137,1.082,0.94,1.044,1.007,1.034,1.095,0.921,1.057,1.047,1.069,1.108,0.859,0.906,0.967,0.997,1.041,1.014,0.964,0.99,0.869,0.859,1.124,1.045,0.896,1.021,1.137,0.907,0.909,0.976,1.141,0.964,0.94,1.027,1.054,0.964,1.001,0.912,0.914,0.94,1.176,1.041,1.002,1.043,0.957,1.048,1.117,0.972,0.935,0.992,0.862,0.896 +NM_018263,0.949,1.0,1.486,0.828,1.061,0.922,0.766,0.549,0.962,0.997,0.851,0.795,0.723,0.731,0.907,0.836,0.905,0.908,1.143,0.952,0.728,0.832,1.192,0.995,0.968,0.924,1.298,0.979,0.796,1.177,0.959,1.174,1.677,0.975,0.627,0.943,0.987,1.134,1.088,1.342,1.068,1.078,0.753,1.232,1.022,0.98,0.839,0.869,0.838,1.075,1.076,1.033,0.922,1.367 +NM_018264,0.755,1.063,0.856,0.705,1.655,0.802,0.662,0.49,0.873,0.926,0.861,0.722,0.562,0.509,1.081,1.046,0.867,0.664,0.677,1.131,0.579,0.902,1.607,0.74,0.717,0.81,1.076,1.011,0.742,1.639,1.211,1.163,1.382,1.24,0.379,1.462,1.059,0.856,1.239,1.016,1.328,1.082,1.041,2.067,0.799,0.976,0.91,0.721,0.789,0.717,1.002,1.187,1.088,1.081 +NM_018265,0.654,0.924,0.865,0.92,0.568,1.77,0.619,0.359,0.901,0.691,1.734,0.479,0.547,0.748,1.275,1.879,0.699,0.959,1.086,1.307,0.446,0.596,1.496,0.886,0.589,0.718,0.986,0.554,0.505,1.73,0.904,0.902,1.618,1.622,0.238,0.886,1.483,0.625,1.648,0.857,0.855,1.666,1.058,1.343,0.886,1.184,1.051,0.737,1.032,0.854,1.226,0.566,0.899,1.372 +NM_018266,0.86,1.18,0.907,0.919,0.883,1.115,0.954,0.866,1.109,0.922,0.996,0.693,0.925,0.867,0.983,1.261,0.874,0.878,0.949,0.958,0.851,0.793,1.169,1.061,0.922,0.837,1.004,0.783,0.827,1.262,0.897,1.333,1.526,1.153,0.851,1.034,1.111,0.904,1.01,0.974,0.953,1.065,1.658,1.056,0.937,1.042,0.856,0.874,1.198,0.815,1.155,0.866,0.895,1.421 +NM_018267,0.929,0.975,1.053,1.048,0.989,1.052,1.033,1.107,1.157,0.975,0.95,0.976,1.078,0.989,0.897,0.958,1.002,0.936,1.024,1.077,1.1,0.986,0.996,1.024,0.94,1.007,0.99,1.076,0.871,1.125,1.114,1.069,1.371,0.977,0.94,0.973,0.975,1.033,0.958,1.035,1.082,0.883,0.872,0.943,0.957,1.07,0.878,1.016,0.912,0.893,0.897,1.005,0.982,1.125 +NM_018268,0.843,0.707,2.31,0.868,1.146,0.803,0.607,0.945,1.176,1.824,0.822,2.121,1.165,0.902,0.969,1.036,1.249,1.244,1.503,0.664,0.584,2.005,1.224,1.142,0.712,1.263,1.893,1.727,0.498,0.73,1.006,1.202,0.752,0.844,0.536,0.708,0.826,1.784,1.132,0.758,1.303,1.027,0.546,0.469,1.727,0.921,1.267,1.368,0.801,1.049,1.016,0.901,0.84,1.095 +NM_018269,0.533,1.778,1.001,0.81,0.889,1.65,0.507,0.42,0.897,1.192,1.006,1.168,0.547,0.466,0.656,1.023,0.781,1.406,0.878,1.411,0.339,0.565,1.297,0.895,0.778,0.728,1.138,0.715,0.369,1.884,0.849,0.843,1.402,1.895,0.332,1.016,1.282,0.761,0.982,0.877,1.299,1.359,0.733,0.979,0.719,0.93,1.433,0.642,0.997,0.619,1.129,0.692,0.782,1.003 +NM_018270,0.64,1.117,1.051,0.711,0.856,1.111,0.767,0.649,0.9,0.878,0.896,1.004,0.761,0.607,0.859,1.365,0.786,0.886,0.851,1.015,0.554,0.789,1.942,1.116,0.725,0.666,0.925,0.803,0.603,1.561,0.744,1.544,2.757,1.028,0.445,1.76,0.849,0.737,1.616,3.319,0.999,0.97,1.072,1.875,0.905,0.893,1.595,0.73,1.035,0.7,0.837,1.792,0.929,2.611 +NM_018271,0.773,2.125,0.888,1.079,1.116,0.677,0.8,0.777,1.136,0.717,0.886,1.029,1.097,0.758,0.655,1.019,0.48,1.586,1.019,2.235,0.656,0.508,0.762,1.404,1.6,0.783,0.814,0.657,0.693,0.954,0.891,2.672,1.111,2.095,0.484,0.831,1.982,1.479,1.398,0.672,0.896,1.408,0.757,0.555,0.744,0.987,0.571,1.004,0.723,0.646,0.957,0.631,0.996,0.607 +NM_018272,0.975,1.073,0.987,1.03,1.049,0.98,1.107,0.896,0.86,0.952,0.973,0.933,1.007,1.106,1.078,0.927,1.001,1.002,0.889,1.218,0.924,1.066,1.055,1.103,1.02,1.174,0.985,1.082,0.735,1.077,0.985,1.357,1.029,0.954,1.253,1.062,1.036,1.173,0.95,0.885,0.912,1.08,0.83,2.21,0.927,1.022,0.95,1.036,1.052,0.995,0.986,0.997,0.848,1.248 +NM_018273,1.023,1.092,1.141,1.138,0.93,1.177,0.843,0.858,0.82,1.019,0.878,0.875,0.948,1.019,0.973,1.303,0.982,0.928,1.24,0.997,0.957,0.952,1.121,0.9,1.153,0.932,1.073,0.959,0.795,1.071,0.914,0.932,1.43,1.228,0.866,1.13,1.162,0.919,1.362,0.996,0.888,1.003,0.972,1.183,1.001,0.88,0.955,0.903,1.145,0.914,1.101,0.836,0.942,1.186 +NM_018275,0.688,0.734,0.938,1.018,0.603,1.654,0.967,0.675,0.856,0.889,1.008,0.731,0.651,0.837,1.461,2.007,0.766,0.902,1.103,1.033,0.595,0.886,1.367,1.02,0.869,1.007,1.034,0.609,1.112,1.487,0.922,0.964,1.002,1.724,0.555,0.754,1.203,0.821,1.724,1.284,0.773,1.345,0.915,1.417,0.692,1.311,0.775,0.886,1.208,0.8,0.998,1.323,0.968,1.425 +NM_018276,0.773,0.806,1.868,0.577,1.286,0.942,0.484,0.566,1.769,1.502,0.812,0.874,0.54,0.948,0.944,1.387,1.458,1.019,1.322,1.117,0.594,1.047,1.096,1.414,0.384,1.191,1.374,1.054,0.443,1.467,1.383,0.915,1.009,1.008,0.407,1.582,0.884,0.953,0.811,0.752,1.327,0.967,0.715,1.117,1.215,1.041,1.233,0.943,0.716,0.834,1.059,0.835,1.102,0.89 +NM_018278,1.048,1.04,1.046,0.815,1.012,0.972,0.829,0.822,1.001,1.19,0.966,1.157,0.995,0.866,1.052,0.928,1.155,1.036,0.978,0.893,0.799,0.989,1.015,1.013,0.922,1.039,1.04,1.172,0.711,1.011,0.938,1.235,0.765,0.977,1.112,0.929,0.857,1.133,1.03,0.893,0.938,1.018,0.827,1.054,1.033,0.889,1.037,0.984,1.12,1.134,0.869,0.911,0.764,1.069 +NM_018281,1.006,0.74,1.402,0.778,1.45,1.309,0.6,1.099,1.996,1.197,1.138,1.017,0.785,1.096,1.214,1.167,1.308,1.073,1.283,1.15,0.442,1.549,0.756,1.539,0.736,1.237,1.162,1.651,0.593,1.097,1.542,1.103,1.057,1.326,2.223,0.4,1.173,1.216,0.709,0.365,1.292,1.007,0.92,0.294,1.157,1.153,0.851,1.307,0.718,0.676,0.863,0.448,0.996,0.734 +NM_018282,0.721,1.004,1.096,0.771,0.771,1.016,0.682,0.541,1.131,0.931,1.012,0.714,0.6,0.804,1.016,1.568,0.95,0.759,1.248,0.845,0.912,0.799,1.265,0.974,0.552,0.664,1.275,0.874,0.57,1.293,0.889,1.241,1.66,1.253,0.561,1.227,0.904,0.778,1.145,1.294,1.146,1.045,1.03,1.003,0.997,0.991,1.104,0.615,1.151,0.673,1.032,0.774,1.057,2.644 +NM_018284,0.684,0.67,1.246,0.96,0.708,4.619,1.673,0.506,0.5,0.631,3.477,0.567,0.623,0.583,2.625,4.816,0.862,1.216,0.632,2.747,0.545,0.58,2.103,0.723,0.849,0.601,0.609,0.787,0.658,0.484,0.649,1.155,2.528,2.253,0.509,1.209,0.973,0.58,2.15,0.493,0.469,1.866,2.127,0.934,0.561,2.24,0.539,0.587,2.617,0.594,1.942,1.059,0.912,2.213 +NM_018285,0.824,1.059,1.246,0.652,1.086,1.137,0.519,0.589,1.316,1.052,0.967,1.165,0.736,0.722,0.92,1.255,0.898,0.907,1.387,0.804,0.537,0.814,1.334,1.631,0.566,0.96,1.256,1.164,0.378,1.205,0.871,0.917,1.204,1.379,0.24,0.985,0.976,0.902,1.266,0.572,1.377,0.992,0.534,0.671,1.2,0.747,1.043,0.743,0.666,0.903,1.036,0.653,0.965,1.28 +NM_018286,0.839,1.223,0.929,0.858,1.052,1.155,1.14,0.981,0.904,0.92,1.084,0.967,0.954,0.825,0.896,1.138,0.933,1.0,0.918,1.058,1.0,0.832,1.01,0.885,0.98,0.878,0.861,0.939,1.236,1.843,0.848,0.999,0.967,1.873,0.871,1.075,1.032,0.922,1.215,0.811,0.783,1.311,0.916,0.94,0.877,1.429,1.0,1.082,0.958,1.142,1.111,0.993,0.859,1.139 +NM_018287,0.346,1.296,0.641,0.794,0.502,2.264,1.256,0.439,0.597,0.459,1.24,0.452,0.376,0.337,1.066,1.68,0.403,1.348,0.421,1.875,0.255,0.502,1.579,0.524,0.782,0.331,0.712,0.567,0.953,1.737,0.562,1.369,2.04,1.951,0.397,0.539,1.533,0.531,1.754,0.776,0.451,1.359,0.805,1.304,0.416,1.446,1.009,0.497,1.263,0.369,1.428,0.514,0.348,2.019 +NM_018288,0.727,0.783,1.743,0.646,1.214,0.872,0.562,0.614,1.541,1.257,0.7,1.243,0.813,0.901,0.945,1.151,0.997,0.959,1.459,0.724,0.675,0.963,1.152,1.224,0.515,1.179,1.752,1.273,0.375,1.294,1.102,1.555,1.439,1.032,0.379,0.449,0.857,1.139,0.814,1.027,1.466,0.924,0.73,0.998,1.089,0.707,1.029,1.175,0.809,1.015,0.835,0.766,1.002,1.783 +NM_018289,0.944,1.047,0.996,1.131,0.839,1.058,0.984,1.067,1.132,1.035,0.957,0.955,0.871,0.787,0.885,1.035,1.032,0.98,1.055,0.933,0.983,0.984,1.062,0.904,1.025,0.962,1.048,1.066,0.966,1.055,1.01,0.896,0.958,0.958,0.939,1.014,0.941,0.858,0.962,1.053,0.957,0.976,1.171,0.994,1.008,0.938,0.971,1.097,1.019,1.108,1.006,0.943,1.177,1.108 +NM_018290,1.607,0.591,2.785,0.949,1.526,0.657,0.472,0.797,2.519,2.047,0.789,1.078,1.144,1.231,1.11,1.098,1.863,1.447,2.954,0.769,1.188,0.9,0.822,1.585,0.553,1.799,1.925,1.721,0.443,0.675,1.691,0.963,1.327,0.733,0.63,0.713,0.741,1.319,0.933,0.768,2.77,0.648,0.543,1.127,2.53,0.773,1.555,1.014,0.826,2.205,0.936,0.968,2.607,1.133 +NM_018291,0.903,1.148,1.287,0.749,1.176,0.817,0.627,0.899,1.167,1.069,1.547,0.875,0.948,1.116,1.016,1.266,0.785,0.907,1.139,0.941,0.629,1.453,1.005,0.991,0.667,1.31,1.022,0.879,0.662,1.004,1.161,1.141,1.521,1.16,0.507,0.552,1.164,1.411,1.072,0.616,0.94,1.421,0.795,1.071,1.106,0.808,0.821,1.217,0.677,0.862,1.013,0.638,1.107,0.818 +NM_018292,1.047,1.155,0.912,0.927,1.069,1.201,1.191,1.065,0.923,1.024,0.957,0.881,0.852,1.052,0.937,1.039,0.868,1.054,1.047,0.995,1.121,0.916,1.049,0.896,1.036,1.017,1.066,0.835,0.828,1.032,0.949,0.985,1.214,1.282,1.215,0.984,0.896,0.991,1.127,0.904,0.956,1.174,0.852,0.92,1.077,1.004,1.273,1.043,1.145,0.855,0.94,0.908,0.965,1.641 +NM_018294,0.729,0.973,1.247,0.676,0.906,1.208,0.621,0.606,1.061,1.022,0.999,1.137,0.654,0.675,0.875,1.299,0.787,0.889,0.981,0.975,0.579,0.798,1.145,1.173,0.632,0.743,1.225,0.985,0.608,0.985,0.823,1.705,2.759,1.17,0.266,1.761,0.914,0.822,1.453,0.861,0.993,1.063,0.803,1.43,1.138,0.99,1.009,0.763,1.224,0.791,1.135,1.147,1.07,1.653 +NM_018295,0.485,1.021,0.678,0.978,0.494,1.807,1.7,0.463,0.519,0.481,1.177,0.496,0.576,0.493,0.997,1.003,0.603,1.011,0.523,1.283,0.582,0.554,1.188,0.568,1.065,0.515,0.543,0.572,0.717,1.926,0.537,1.44,0.754,1.808,0.557,0.659,1.285,0.556,1.735,1.438,0.651,1.842,0.516,1.071,0.526,0.949,1.077,0.523,0.688,0.618,1.071,1.091,0.646,2.555 +NM_018296,0.926,1.014,0.96,0.977,1.075,1.018,0.822,0.83,0.937,0.908,1.036,1.009,0.906,0.785,1.024,0.988,0.926,1.009,0.87,0.857,0.944,1.167,1.0,0.957,1.034,1.106,1.179,0.994,0.736,1.027,1.029,1.134,5.017,1.095,1.052,0.995,1.062,0.969,1.171,1.187,0.951,0.939,0.891,0.958,1.083,0.902,1.013,1.026,0.945,0.926,0.998,0.868,0.921,0.894 +NM_018297,0.39,1.319,1.198,0.614,1.015,1.439,0.636,0.64,1.209,0.958,1.0,1.107,0.543,0.782,1.0,1.518,0.822,0.8,1.263,1.264,0.607,1.052,1.245,1.118,0.515,0.734,1.156,0.909,0.686,0.813,0.976,0.969,1.666,1.427,0.251,0.946,1.178,0.801,0.924,0.644,0.893,1.207,0.717,0.542,0.763,1.131,1.0,0.563,1.023,0.613,1.13,0.593,0.836,1.731 +NM_018298,1.073,0.981,0.98,0.891,0.91,0.951,1.056,0.944,0.904,1.005,1.057,1.052,1.018,1.184,0.841,0.999,1.047,0.835,1.333,1.086,0.894,1.081,1.223,1.19,0.939,0.846,0.915,1.007,0.839,0.925,1.072,0.936,1.163,0.801,1.021,0.851,1.057,0.827,1.082,0.758,1.091,0.855,1.016,1.126,1.072,0.977,1.108,0.961,1.097,1.093,0.966,1.081,1.152,0.991 +NM_018299,0.762,0.827,1.442,0.701,0.976,0.978,0.562,1.135,1.193,1.028,0.949,1.126,1.028,0.919,0.813,1.153,1.117,0.965,1.512,0.733,0.52,0.986,0.768,1.281,0.492,0.885,1.444,1.163,0.371,0.82,1.264,1.213,1.506,0.82,1.158,0.996,0.876,0.927,1.055,1.092,1.325,0.728,0.623,1.119,1.092,1.138,1.253,1.101,0.981,1.089,0.86,0.892,0.997,1.37 +NM_018300,0.784,1.262,1.128,0.804,1.046,1.242,1.062,0.996,1.425,0.81,1.239,1.062,0.975,0.981,1.185,1.312,0.942,1.087,0.822,1.279,0.692,1.128,0.875,1.397,0.744,0.785,1.159,1.4,1.284,1.179,1.213,1.608,2.059,1.181,1.266,0.756,0.937,1.398,0.732,1.326,0.885,0.99,0.7,0.786,0.836,0.925,1.114,0.812,0.876,0.736,1.015,1.035,0.664,0.861 +NM_018302,0.432,1.684,0.275,2.047,0.398,3.629,1.312,0.383,0.515,0.312,1.588,0.369,0.432,0.249,0.922,2.101,0.429,1.925,0.34,2.089,0.254,0.393,1.095,0.369,0.746,0.294,0.279,0.383,1.072,1.945,0.498,1.4,1.06,3.177,0.539,0.546,1.479,0.57,2.695,0.834,0.421,2.066,1.411,1.606,0.462,1.225,0.918,0.665,1.069,0.469,1.462,0.56,0.378,0.584 +NM_018303,1.062,1.051,1.023,0.972,1.003,1.102,1.062,0.89,1.152,0.932,1.001,1.095,0.891,1.118,0.921,1.14,1.024,1.056,1.006,0.978,0.899,0.89,1.087,0.943,0.988,0.925,0.98,0.929,0.911,0.994,1.185,0.985,1.168,0.994,0.78,0.84,1.009,1.045,1.142,0.99,1.05,1.197,0.855,1.0,1.064,0.948,0.91,0.967,0.923,0.946,1.161,0.873,0.99,1.106 +NM_018306,2.11,0.673,2.993,1.149,1.902,0.778,0.642,2.08,2.33,2.03,0.734,1.588,1.823,1.42,1.419,0.986,2.106,1.295,1.829,0.753,1.527,2.011,0.674,1.468,0.792,1.963,1.863,1.862,0.789,0.651,2.292,0.693,1.047,0.699,3.138,0.682,0.797,1.979,0.679,0.63,1.761,0.745,0.776,0.715,2.472,0.664,1.611,2.164,0.727,2.114,0.943,1.082,2.042,0.888 +NM_018307,0.852,1.207,1.187,0.797,1.049,1.016,0.929,1.111,1.168,1.019,0.957,0.993,0.908,0.941,0.826,1.068,0.923,1.17,0.952,0.961,0.978,0.876,1.023,1.185,0.864,0.886,0.995,1.08,0.874,0.989,1.177,1.059,1.237,0.994,1.026,1.012,1.114,0.881,1.035,0.832,1.004,1.055,1.043,0.949,0.984,1.073,1.028,0.977,0.968,0.887,0.942,0.921,1.093,0.926 +NM_018308,1.045,0.913,0.944,0.948,1.147,0.888,0.863,1.182,1.076,1.063,0.957,0.94,0.996,0.842,0.895,1.006,1.049,0.991,0.982,1.072,0.962,1.047,0.934,0.958,0.975,0.918,1.18,1.068,1.312,0.964,1.114,0.949,1.041,0.969,1.104,1.085,1.15,1.093,1.019,0.923,1.036,1.137,1.286,1.001,1.028,0.972,1.02,1.09,0.875,1.014,1.078,1.03,0.878,1.022 +NM_018309,0.893,0.966,0.969,0.756,0.949,1.368,0.603,0.737,1.557,1.027,1.05,0.939,0.922,0.859,1.057,1.104,0.92,0.858,0.875,1.119,0.808,0.749,0.912,1.035,0.851,0.87,1.039,1.137,0.544,1.176,1.0,0.943,1.468,1.0,1.13,0.932,0.982,0.97,1.191,0.776,1.296,0.952,1.143,1.094,0.785,1.676,1.319,0.738,1.238,0.937,0.969,0.752,0.971,1.179 +NM_018310,0.681,1.263,1.067,0.644,0.804,1.1,0.798,0.572,1.044,0.78,1.08,0.647,0.689,0.847,1.007,1.141,0.808,0.798,1.027,0.857,0.668,0.829,1.296,0.948,0.797,0.888,1.148,0.824,0.57,1.318,1.01,1.543,1.122,1.474,0.383,0.852,1.027,0.999,1.185,0.648,0.939,1.235,0.655,1.09,0.832,1.208,1.001,0.665,0.926,0.775,1.038,0.922,0.82,2.335 +NM_018312,0.746,1.106,0.912,0.717,0.891,1.16,0.744,0.386,1.023,0.896,0.961,0.799,0.537,0.577,0.783,1.218,0.71,1.162,0.834,1.131,0.566,0.984,1.217,0.82,0.832,0.813,1.047,0.664,0.614,1.784,0.677,1.442,1.164,1.176,0.302,1.793,1.331,0.992,1.607,1.174,0.916,1.409,0.923,1.374,0.743,1.001,1.064,0.766,1.098,0.786,1.013,0.924,0.872,1.095 +NM_018313,1.024,1.156,1.328,0.736,1.343,1.103,0.82,0.913,1.361,1.102,0.884,0.865,0.887,0.8,0.787,0.929,1.077,1.144,1.002,1.254,0.93,1.101,1.198,1.132,0.845,0.934,1.304,1.298,0.822,1.203,0.908,0.762,0.919,0.963,0.891,0.968,1.015,1.181,1.416,0.932,1.285,1.106,1.089,0.939,1.019,1.221,1.125,0.723,1.172,1.066,0.977,1.02,0.951,0.964 +NM_018314,1.024,1.087,0.99,0.887,0.976,1.365,0.767,0.92,1.29,1.024,1.324,0.911,0.952,0.881,1.144,1.57,0.829,0.841,1.219,0.923,0.802,0.834,1.156,0.999,0.864,0.804,0.999,1.027,0.627,1.237,1.044,0.95,1.308,1.159,0.739,1.191,1.055,1.001,1.505,0.846,0.988,0.979,0.877,1.045,0.953,1.301,0.977,0.91,1.282,0.93,1.059,1.046,1.006,1.326 +NM_018315,1.782,1.7770000000000001,2.677,1.5310000000000001,2.1180000000000003,1.9889999999999999,1.954,1.759,2.376,2.179,1.7479999999999998,2.35,1.847,1.8699999999999999,1.975,1.927,2.207,2.144,2.453,1.763,1.7999999999999998,2.368,1.761,2.412,1.527,1.9749999999999999,2.435,2.1959999999999997,1.366,2.067,2.438,2.3689999999999998,2.1350000000000002,2.0389999999999997,1.683,1.271,1.772,2.4610000000000003,1.9649999999999999,2.426,2.447,2.057,1.6219999999999999,1.806,2.335,1.5659999999999998,2.2110000000000003,1.879,1.74,1.977,1.786,1.9329999999999998,2.1029999999999998,2.141 +NM_018316,2.535,0.812,5.052,1.139,3.906,0.698,0.574,3.506,2.262,3.553,0.655,3.4,3.752,0.932,1.454,1.6,5.858,1.979,2.747,0.66,1.524,1.419,0.994,2.638,0.715,1.03,2.679,2.089,0.611,0.786,3.439,0.814,1.704,0.686,6.451,0.8,0.647,2.884,0.783,0.62,3.004,0.776,0.645,0.796,6.97,0.766,2.879,2.004,0.947,8.351,1.065,1.304,3.986,0.881 +NM_018317,0.859,1.051,0.936,1.084,0.95,1.211,0.887,0.849,0.928,1.038,1.0,1.026,0.931,0.871,1.054,1.171,0.989,0.974,0.932,1.078,1.053,1.042,1.096,1.068,0.939,0.902,0.954,1.066,0.795,1.0,0.885,1.248,1.367,1.578,0.807,0.902,0.979,1.169,1.075,0.821,0.953,1.063,0.89,1.189,0.99,0.927,1.121,0.865,0.896,0.912,0.989,0.85,0.989,0.991 +NM_018318,0.654,1.14,0.926,0.756,1.057,1.048,0.751,0.702,1.077,1.007,0.966,0.913,0.734,0.844,1.037,1.033,0.698,0.806,1.038,0.96,0.763,0.653,0.999,0.95,0.781,0.727,1.159,0.928,0.606,1.216,1.041,1.08,2.497,1.363,0.682,1.377,1.233,1.064,1.019,0.855,1.108,1.01,0.93,0.742,0.751,1.278,1.181,0.712,1.001,0.853,0.916,0.851,1.134,1.491 +NM_018319,0.816,1.025,1.299,0.806,1.034,1.077,0.742,0.79,1.264,1.439,0.825,0.985,0.673,0.683,0.955,0.975,0.931,1.016,1.337,0.79,0.854,1.063,1.22,1.209,0.761,0.939,1.423,1.009,0.66,1.073,0.993,1.216,2.607,0.964,0.572,0.997,0.815,1.081,0.967,1.118,1.225,0.878,0.681,1.394,0.927,1.067,1.174,0.714,0.974,0.765,0.923,0.892,1.174,1.688 +NM_018321,0.675,1.004,1.274,0.772,0.868,0.953,0.667,0.515,1.312,1.338,0.96,0.803,0.758,0.744,1.124,1.361,1.002,0.722,1.128,0.735,0.63,0.83,1.247,1.215,0.526,0.687,1.33,0.936,0.454,0.994,0.979,1.532,5.665,1.197,0.281,1.645,0.951,0.789,1.519,1.578,1.135,0.988,0.748,2.742,1.151,0.872,1.026,0.659,1.032,0.744,0.976,1.501,0.987,3.432 +NM_018322,0.816,1.492,0.988,0.704,0.865,1.105,0.858,0.741,0.975,0.907,1.185,0.918,0.738,0.943,0.985,1.269,0.896,0.991,0.881,1.41,0.566,0.775,1.445,0.897,0.78,0.807,1.089,1.139,0.589,0.878,0.8,1.355,1.302,0.982,0.583,1.046,1.244,0.789,1.079,0.911,0.774,1.3,1.072,0.87,1.009,1.352,0.824,0.747,1.2,0.762,1.547,0.737,0.683,1.159 +NM_018325,0.981,1.002,0.921,0.86,0.825,1.047,0.912,1.02,1.131,1.127,1.031,0.924,1.092,0.721,0.895,1.04,1.152,0.87,0.833,1.15,0.889,0.976,0.954,1.144,0.994,0.918,1.158,1.15,1.602,1.008,1.045,0.944,0.94,1.006,0.975,0.933,0.937,1.119,1.141,0.953,1.139,0.959,1.056,1.017,0.815,0.974,0.966,0.932,1.065,0.836,1.079,0.809,1.088,1.027 +NM_018326,0.619,1.299,0.885,0.938,0.688,1.172,1.281,0.705,0.648,0.75,1.023,0.617,0.759,0.514,0.725,0.949,0.612,0.677,0.729,0.808,0.644,0.523,1.496,0.728,1.123,0.564,1.025,0.852,0.419,1.869,0.523,1.66,1.066,1.884,0.47,0.876,1.01,0.956,1.369,1.574,0.831,2.351,0.672,0.714,0.801,0.719,0.829,0.543,0.635,0.62,1.075,1.912,1.175,2.31 +NM_018328,0.969,0.914,0.889,0.874,0.966,0.95,0.929,1.02,1.067,0.856,1.011,1.017,0.938,0.88,1.06,1.032,1.061,0.956,0.961,1.045,1.052,1.001,1.045,1.053,1.044,1.102,0.847,0.904,0.738,0.963,1.015,1.301,1.112,0.993,0.977,1.01,0.983,1.006,0.924,1.078,0.964,1.054,0.9,1.093,0.939,0.952,1.11,0.929,0.969,0.952,0.918,0.885,0.897,1.009 +NM_018329,0.869,0.932,1.06,1.01,0.904,0.907,1.028,1.183,1.08,1.052,1.04,1.226,0.964,1.043,1.071,1.019,0.83,1.076,1.068,0.945,1.126,1.092,1.123,0.965,0.976,1.015,0.932,0.956,1.038,0.986,1.046,0.943,0.926,1.049,0.911,1.123,1.054,0.995,1.031,0.979,1.058,0.92,0.91,1.104,1.174,0.995,1.02,0.832,0.966,0.986,1.015,0.786,1.238,1.008 +NM_018330,0.621,1.29,1.236,0.94,0.772,1.169,0.55,0.63,0.789,0.791,1.151,0.735,0.523,0.713,0.89,1.508,0.679,1.037,1.249,1.01,0.571,0.782,0.914,0.697,0.816,0.721,1.253,0.558,0.48,1.297,0.711,1.624,2.12,1.638,0.289,2.101,1.172,0.955,1.743,0.641,0.747,0.968,0.788,1.102,0.817,1.206,0.813,0.812,0.796,0.885,1.29,0.715,0.985,1.475 +NM_018332,1.033,0.997,1.065,1.025,0.834,0.959,0.735,0.821,1.093,1.107,0.813,0.999,0.848,0.937,0.831,1.005,1.183,0.764,1.115,0.89,1.042,0.907,0.946,1.242,0.963,0.974,1.378,0.919,0.891,0.953,0.927,1.396,1.773,1.092,0.663,0.936,0.947,1.064,1.191,0.862,1.123,1.033,0.863,1.111,1.061,0.894,1.145,0.942,1.016,0.997,0.877,0.957,0.9,1.094 +NM_018334,0.953,0.892,1.522,0.957,1.034,1.057,1.361,1.068,1.097,0.981,0.804,1.005,0.957,0.791,1.173,1.162,1.191,0.949,0.999,0.782,0.964,0.926,0.985,0.983,0.869,1.056,0.995,0.975,0.789,1.123,1.212,1.127,1.186,1.061,1.413,0.81,1.152,1.344,0.835,0.978,1.263,0.874,0.891,0.93,1.05,0.976,1.173,1.23,1.08,1.107,1.095,0.917,0.984,1.152 +NM_018335,0.777,1.1,1.309,0.791,0.927,0.987,0.754,0.928,1.151,0.908,0.862,1.059,0.776,1.174,0.818,1.056,1.123,0.948,0.85,1.102,0.704,0.901,1.211,0.816,0.832,1.034,1.388,0.991,0.805,1.105,1.175,1.985,1.317,1.176,0.759,0.915,0.959,0.919,1.128,0.985,1.144,0.979,1.034,0.959,0.998,0.904,0.94,0.752,0.962,0.996,0.903,0.978,0.91,1.174 +NM_018336,1.01,1.107,1.26,0.82,0.89,1.158,0.795,0.977,1.042,0.855,1.128,1.055,0.841,0.868,1.099,1.341,0.937,0.922,1.301,0.801,0.841,0.945,0.957,0.912,0.821,0.857,1.451,0.97,0.753,0.936,0.945,1.435,1.441,1.365,0.713,0.862,1.013,1.031,0.999,0.863,1.134,1.012,0.796,0.918,0.989,0.836,0.794,1.009,0.886,1.027,1.052,0.73,1.036,0.981 +NM_018337,0.547,1.437,0.827,1.007,0.541,1.434,0.74,0.334,0.829,0.643,1.248,0.5,0.515,0.631,0.879,1.324,0.653,0.845,0.737,1.219,0.363,0.461,2.011,0.618,1.186,0.661,0.863,0.542,0.494,1.735,0.663,1.601,1.64,1.923,0.355,0.732,1.096,0.561,1.701,1.537,0.67,1.584,0.707,1.48,0.649,0.993,1.053,0.574,0.743,0.624,1.269,0.777,0.704,1.435 +NM_018338,0.925,1.142,1.112,0.91,1.102,0.983,0.919,1.017,1.225,0.913,0.944,1.027,1.068,1.014,0.854,1.036,0.846,1.035,1.015,0.898,1.005,0.975,0.899,0.879,0.974,1.038,1.024,0.92,1.157,1.207,1.034,0.878,1.088,1.044,1.137,1.062,1.014,0.966,0.986,1.097,0.98,0.964,0.837,0.967,1.116,1.002,1.0,0.925,0.991,1.066,0.995,1.084,1.007,0.987 +NM_018339,0.99,1.155,0.887,1.028,0.969,1.483,0.998,0.911,0.946,0.966,1.124,0.865,1.022,0.928,1.25,1.645,0.842,1.007,0.76,1.094,0.771,0.905,1.084,0.787,0.991,0.948,0.905,1.187,0.935,1.464,1.07,0.964,1.29,1.192,1.154,0.842,1.224,1.05,1.409,0.967,1.019,1.219,0.859,0.948,0.931,1.124,1.116,0.947,1.466,0.959,1.053,0.866,0.807,1.737 +NM_018340,1.027,0.851,1.265,1.091,0.875,1.001,0.932,1.084,1.048,0.901,0.888,1.096,0.898,0.775,1.076,0.922,1.05,1.088,1.031,0.995,0.817,1.193,0.973,1.135,0.968,0.955,1.001,0.936,0.838,0.83,1.015,0.963,1.284,0.978,0.858,0.998,0.997,1.152,1.06,1.112,0.954,1.112,0.828,1.007,1.01,0.976,1.099,0.988,1.032,0.891,1.026,1.021,1.038,0.889 +NM_018343,0.764,1.174,1.084,0.878,0.899,1.017,0.785,0.511,1.071,1.028,1.171,0.72,0.727,0.875,0.936,1.297,0.876,0.917,1.238,0.972,0.797,0.771,1.176,0.88,0.942,0.822,1.261,0.887,0.564,1.106,0.896,1.102,1.857,1.429,0.474,0.956,1.049,0.902,1.231,0.617,1.013,1.188,0.819,1.012,0.881,1.153,0.806,0.689,1.009,0.839,1.083,0.949,1.033,1.431 +NM_018344,1.096,0.99,1.001,0.964,0.896,1.034,1.0,0.7,0.896,0.988,0.857,1.011,1.031,0.975,1.128,0.929,0.906,0.91,0.927,0.996,1.044,0.929,0.893,0.933,1.033,1.044,1.074,1.039,1.017,0.888,1.0,1.092,1.075,1.134,1.005,1.053,0.949,1.001,1.013,1.0,0.951,1.027,1.104,1.027,0.9,1.075,1.119,0.833,1.029,0.889,0.974,1.053,1.054,1.126 +NM_018346,0.645,1.154,1.097,0.876,0.765,1.394,0.883,0.771,0.94,0.756,1.196,0.96,0.808,0.695,1.15,1.454,0.854,0.906,1.0,1.224,0.641,1.043,1.402,1.036,0.921,0.775,0.991,0.803,0.71,1.702,0.932,1.678,1.441,1.588,0.579,0.986,1.073,0.984,1.4,0.845,0.87,1.406,0.727,1.07,0.82,0.981,0.979,0.742,0.853,0.746,0.998,0.841,0.826,1.413 +NM_018347,0.714,0.918,0.955,1.015,0.829,1.052,0.972,0.599,0.862,0.81,1.124,0.904,0.748,0.668,0.927,1.427,0.771,0.912,0.963,1.132,0.566,0.765,1.477,0.827,1.024,0.733,1.043,0.769,0.69,1.339,0.844,1.004,1.447,1.361,0.539,1.046,1.098,0.631,1.15,1.103,0.776,1.154,0.881,1.609,0.931,1.156,0.828,0.711,1.014,0.925,1.166,1.077,0.873,2.051 +NM_018348,0.995,1.036,1.024,1.059,1.066,0.821,1.082,1.091,0.977,1.031,1.171,0.933,0.915,1.029,0.683,1.013,0.926,0.997,1.02,0.962,1.008,1.0,1.061,0.941,1.063,0.915,1.006,0.991,1.205,0.884,0.88,1.04,1.16,1.017,0.851,1.014,0.969,0.958,1.02,0.99,0.937,1.076,1.112,0.879,1.014,1.028,0.997,0.874,0.926,0.904,0.982,0.837,0.909,1.041 +NM_018349,0.825,0.879,0.977,0.869,0.874,1.131,0.8,0.668,1.108,0.817,1.103,0.87,0.699,0.735,1.219,1.405,0.818,0.888,1.191,1.275,0.784,0.832,1.409,0.936,0.769,0.726,1.04,0.717,0.516,1.16,0.97,1.261,1.075,1.095,0.646,1.27,1.231,0.737,1.184,1.089,0.949,1.374,0.849,0.76,0.806,1.498,1.093,0.755,1.283,0.85,1.325,1.033,0.878,1.104 +NM_018350,0.998,0.955,0.925,1.199,0.924,0.99,1.034,0.901,1.107,0.951,1.023,1.096,0.945,1.03,0.986,1.017,1.05,1.02,0.908,1.098,1.092,0.946,1.028,1.038,0.962,0.896,1.052,1.006,1.402,1.077,1.049,1.043,1.017,1.009,1.054,0.852,0.981,1.061,1.054,0.974,0.934,0.981,1.0,0.978,0.961,1.01,1.041,1.028,0.98,1.209,0.95,0.946,1.138,0.95 +NM_018352,0.979,0.805,1.154,0.926,0.85,1.25,1.071,1.077,0.985,0.898,0.941,0.789,1.08,0.861,1.165,1.25,1.024,1.039,0.904,0.998,0.88,1.006,1.207,1.024,1.116,0.979,1.157,1.052,1.19,1.094,1.063,1.121,1.213,1.048,0.945,1.013,0.955,1.045,1.19,0.999,0.87,1.159,0.95,0.888,1.001,0.959,1.069,1.03,0.939,0.929,0.988,1.007,0.952,1.052 +NM_018354,0.982,1.209,0.994,1.055,0.895,0.848,0.882,0.932,1.019,0.872,1.014,0.849,0.87,0.849,1.111,1.294,0.905,1.086,0.939,1.07,0.991,0.987,1.119,0.974,1.091,0.89,0.916,0.865,0.723,0.902,0.916,1.025,1.936,1.042,1.034,1.287,1.081,0.884,1.559,2.877,0.884,0.994,1.359,1.036,0.896,1.127,0.95,0.819,1.251,0.96,1.05,1.302,0.856,2.459 +NM_018355,1.122,1.252,1.265,1.179,1.027,0.79,1.032,1.122,1.385,0.868,0.975,1.018,1.115,1.054,0.994,0.957,0.964,1.081,1.233,0.987,0.994,1.001,0.92,1.13,1.173,1.086,0.981,1.168,1.23,1.097,1.021,1.408,3.066,1.631,0.887,1.014,0.975,1.223,0.822,1.089,1.362,1.128,0.835,0.893,0.957,0.871,0.953,0.954,0.883,0.945,1.077,0.95,1.001,0.888 +NM_018357,0.909,1.061,0.721,0.842,0.908,1.016,0.857,1.181,0.766,0.709,1.126,1.033,0.925,0.867,0.767,0.953,0.753,0.978,0.918,0.8,0.925,0.806,1.05,0.906,1.18,0.84,1.141,0.953,1.07,1.037,1.102,2.289,1.306,1.614,0.912,1.052,0.951,0.852,1.1,1.676,0.859,1.562,1.132,1.315,0.773,0.871,0.9,1.106,0.781,1.119,0.903,0.907,1.009,0.95 +NM_018358,0.876,0.98,0.875,0.817,0.789,1.108,0.633,0.676,0.98,0.862,0.851,0.805,0.774,0.733,0.74,1.185,1.136,0.88,1.346,0.815,0.917,1.096,0.955,1.12,0.949,1.106,1.288,0.739,0.764,1.017,0.853,1.315,1.073,1.095,0.668,0.883,1.006,1.168,1.391,0.753,0.999,0.976,0.867,1.407,1.006,0.906,1.034,0.994,1.039,1.03,0.997,0.808,1.096,1.382 +NM_018359,0.623,1.17,1.157,0.621,0.96,1.206,0.634,0.632,1.199,0.961,1.106,0.962,0.629,0.682,0.945,1.61,0.674,0.852,1.247,1.084,0.686,0.995,1.236,1.209,0.624,0.944,1.026,1.025,0.508,1.491,0.994,1.546,1.417,1.795,0.276,0.52,1.117,1.149,0.988,0.625,1.327,1.299,0.613,0.899,0.947,1.189,0.651,0.801,0.9,0.643,1.002,0.676,0.883,1.324 +NM_018360,1.077,1.058,0.91,0.865,0.877,0.981,0.97,0.854,0.972,1.067,0.916,1.124,0.825,0.956,1.131,1.177,0.938,0.912,1.054,0.892,0.889,1.001,1.122,1.05,1.0,1.096,1.0,1.075,1.735,0.93,1.208,0.993,1.304,0.995,0.956,1.113,1.194,1.021,1.043,0.981,0.896,1.139,1.13,1.236,0.905,0.952,0.965,0.9,0.981,1.125,1.187,0.884,0.996,1.131 +NM_018361,0.751,1.005,0.863,0.666,0.761,1.232,0.778,0.461,1.316,0.982,1.183,0.576,0.688,0.73,0.889,3.21,0.586,0.842,0.92,1.229,0.509,0.744,1.963,1.053,0.671,0.632,1.107,0.922,0.569,1.16,1.037,1.062,3.573,1.246,0.376,0.783,1.534,0.765,1.651,0.734,0.98,1.078,0.947,1.115,1.072,1.556,0.942,0.647,2.581,0.737,1.32,0.94,0.716,1.973 +NM_018362,0.853,0.962,1.396,0.743,1.031,1.245,0.786,0.826,1.33,0.966,0.991,0.989,0.954,0.745,0.848,1.917,0.92,1.257,1.246,0.914,0.79,1.048,1.019,1.219,0.722,0.744,1.395,1.169,0.557,1.074,1.058,0.911,1.547,1.213,0.558,0.909,1.107,0.95,2.857,0.739,1.111,1.08,0.798,0.781,1.043,1.037,1.198,0.983,1.144,1.044,1.008,1.149,0.852,1.541 +NM_018364,1.088,0.878,1.078,0.864,0.929,1.021,0.829,0.907,1.077,1.038,0.886,0.836,1.002,0.873,0.818,1.17,0.898,0.92,0.895,1.036,1.023,0.958,0.986,0.962,0.939,0.905,1.113,1.052,0.637,1.033,0.918,0.913,1.185,0.971,1.008,0.894,1.096,1.095,0.899,1.016,0.973,1.078,0.997,0.789,0.982,1.196,1.158,0.931,1.086,1.151,0.995,0.848,1.034,1.121 +NM_018365,0.864,1.108,1.002,0.842,0.99,0.959,0.854,0.897,0.939,1.089,1.023,1.005,0.941,0.932,0.972,0.996,0.921,0.845,1.162,0.938,1.129,0.87,1.25,1.088,0.86,1.025,1.299,1.157,1.937,1.053,1.067,1.113,2.91,0.994,0.956,1.018,1.051,1.085,1.385,0.859,0.959,1.0,1.001,0.948,0.873,0.906,0.922,0.938,1.022,0.84,1.248,0.907,0.967,1.603 +NM_018368,0.812,1.062,1.067,0.72,1.082,1.386,0.625,0.673,1.231,0.678,1.423,0.45,0.84,0.837,1.163,1.924,0.781,0.993,1.26,1.001,0.462,0.792,0.989,0.8,0.719,0.857,0.999,1.06,0.498,1.42,1.149,0.737,0.95,1.756,1.159,0.59,1.547,1.138,0.978,0.613,0.972,1.344,0.7,0.743,0.754,1.326,0.857,0.942,0.981,0.768,1.078,0.612,0.734,0.855 +NM_018369,0.857,1.061,1.007,0.912,0.92,1.057,0.843,0.919,1.076,0.857,0.992,0.889,0.841,0.95,1.053,1.212,1.034,1.063,0.92,0.975,1.018,0.996,1.497,0.951,0.767,0.876,1.303,0.932,0.999,0.957,1.025,1.081,2.115,1.179,0.932,1.004,1.085,0.927,1.346,0.925,1.024,0.863,0.945,0.896,0.949,1.098,0.993,0.92,1.189,0.917,1.047,0.876,0.928,1.754 +NM_018370,0.695,1.172,0.715,1.063,0.713,1.172,1.09,0.677,0.687,0.584,1.179,0.625,0.698,0.681,0.825,0.82,0.68,0.786,0.734,1.006,0.708,0.632,1.311,0.746,1.304,0.619,0.991,0.688,0.8,1.747,0.667,2.892,1.91,1.961,0.613,0.829,1.007,0.653,1.237,2.39,0.69,1.413,0.946,1.111,0.633,0.937,0.647,0.655,0.796,0.694,1.146,1.371,0.843,2.047 +NM_018371,0.94,1.007,1.24,1.015,0.832,0.896,0.948,0.737,0.842,0.812,0.98,0.922,0.769,0.758,0.761,1.086,0.967,1.136,0.832,0.868,0.784,0.776,1.157,0.703,1.095,0.867,1.242,1.003,0.964,1.145,0.837,1.98,1.068,1.049,0.791,1.186,0.877,0.926,0.898,1.671,1.074,1.692,0.849,0.808,0.942,0.869,0.884,0.818,0.842,0.81,1.043,1.683,1.126,1.117 +NM_018372,0.907,0.927,1.099,0.927,0.961,0.985,0.85,0.922,1.131,0.923,1.102,0.887,0.853,0.869,0.78,1.281,0.859,0.969,1.098,1.004,0.869,0.92,1.207,0.918,0.83,0.968,0.975,1.016,0.63,0.865,0.929,1.134,1.995,1.084,0.932,1.114,0.996,0.886,1.192,1.054,0.871,0.889,0.807,1.111,0.976,1.007,1.169,0.953,1.042,0.897,1.048,0.988,0.867,1.492 +NM_018375,0.924,0.917,1.106,0.877,1.248,0.928,0.934,0.555,1.126,0.995,0.873,1.07,0.898,0.992,1.14,1.192,1.014,1.383,1.071,0.869,0.768,0.986,1.002,1.225,0.816,0.966,0.809,1.034,0.938,0.863,1.176,0.734,1.329,0.97,1.14,0.961,1.18,0.94,1.142,0.878,0.878,0.826,1.032,1.294,1.257,1.058,1.231,1.136,1.059,0.87,1.119,1.08,1.041,1.215 +NM_018376,1.019,0.931,1.005,0.966,0.986,0.999,0.997,1.153,1.174,1.125,1.052,0.998,1.086,1.018,0.969,0.952,1.077,1.01,0.956,0.871,1.033,0.863,1.161,0.921,0.953,1.057,0.93,1.027,0.873,1.078,1.017,1.162,0.847,0.906,1.025,1.14,0.862,0.974,0.894,1.146,1.038,1.045,0.805,1.016,0.896,1.075,1.213,0.973,1.049,1.041,0.941,0.956,1.083,0.986 +NM_018378,1.133,0.992,0.939,1.032,0.915,1.099,1.001,0.995,1.004,0.935,0.918,0.913,1.001,0.981,1.047,1.149,0.902,1.102,1.089,0.996,0.971,1.059,1.049,1.037,0.972,1.033,0.97,0.96,0.718,1.143,0.997,1.102,1.121,1.166,0.98,0.893,1.0,1.135,1.045,0.985,0.959,0.931,0.945,1.058,0.986,1.083,0.871,0.938,0.906,1.1,1.048,0.913,0.952,0.922 +NM_018380,0.903,0.967,1.244,0.926,1.001,0.858,0.827,0.756,1.028,1.32,0.993,0.987,0.961,0.755,0.854,0.999,1.12,0.936,1.131,0.882,1.111,1.126,1.173,1.092,0.792,1.01,1.333,0.816,0.712,0.888,0.979,1.28,2.017,0.9,0.613,1.064,1.027,0.97,1.189,0.88,1.007,0.822,0.74,1.368,1.222,0.976,0.985,0.944,1.015,1.12,0.92,1.101,1.054,1.884 +NM_018381,0.782,0.962,1.116,0.837,0.801,1.288,1.005,0.74,0.894,0.764,1.111,0.726,0.612,0.666,1.121,1.085,1.032,0.938,0.834,1.019,0.698,0.731,1.242,0.927,0.849,0.625,1.017,0.768,0.966,1.036,0.721,1.313,0.888,1.166,0.644,0.865,1.121,0.648,1.054,1.069,1.009,1.139,1.083,1.086,0.772,0.959,0.799,0.624,1.069,0.637,1.177,1.259,0.961,2.632 +NM_018383,0.746,0.953,1.13,0.643,0.909,1.053,0.698,0.578,1.087,0.828,0.693,0.865,0.791,0.622,0.947,1.103,1.04,0.778,0.998,0.851,0.688,1.088,1.121,1.061,0.727,0.879,1.392,0.835,0.606,1.082,0.902,1.524,2.851,1.049,0.5,0.646,0.824,1.081,1.381,1.071,1.087,1.106,0.656,1.078,1.033,0.766,0.969,0.75,1.049,1.009,1.062,0.926,0.625,2.071 +NM_018384,0.904,1.165,0.991,0.85,0.923,1.379,1.463,0.874,0.752,0.782,1.008,0.926,0.84,0.738,0.947,0.924,0.777,0.884,0.805,1.09,0.918,0.715,1.043,0.877,1.408,1.061,1.015,0.8,0.755,1.367,0.667,1.174,0.838,1.616,0.746,0.907,0.911,0.859,1.211,0.992,1.043,2.095,1.09,0.793,0.835,0.858,0.958,0.738,0.957,0.862,1.046,0.992,1.099,1.923 +NM_018386,0.813,1.06,0.922,1.039,0.882,1.019,0.888,0.579,1.087,0.994,1.011,0.866,0.815,0.639,0.831,1.511,0.863,0.905,0.86,0.964,0.743,0.661,1.253,1.089,0.905,0.876,1.158,0.835,0.529,1.307,0.804,1.554,1.587,1.341,0.441,1.892,1.061,0.889,1.306,1.146,1.172,1.173,0.81,2.672,0.912,0.99,1.234,0.783,0.793,0.859,1.038,1.076,0.953,1.739 +NM_018387,1.209,0.772,1.455,0.624,1.017,0.78,0.498,0.672,1.804,1.274,0.873,0.818,0.794,0.966,1.3,1.332,0.975,0.988,1.462,1.052,0.704,1.023,1.296,1.702,0.6,0.958,1.151,1.258,0.444,0.869,1.185,0.815,1.901,0.912,0.593,0.612,0.968,1.037,1.06,0.691,1.427,1.028,0.79,1.221,1.411,0.991,1.074,0.756,1.243,0.722,1.05,0.69,0.966,1.276 +NM_018388,1.042,1.062,0.992,1.145,1.073,1.13,0.938,1.179,0.94,0.991,1.044,0.971,0.971,1.024,0.897,0.993,0.943,1.108,1.107,1.076,0.907,0.942,1.0,1.058,0.8,0.884,1.045,0.952,0.923,0.953,1.054,1.106,1.073,0.892,1.095,1.151,1.017,1.002,0.959,1.023,0.897,0.926,0.799,0.941,1.047,1.019,1.097,0.901,1.089,1.176,0.961,1.099,1.179,0.878 +NM_018389,1.135,0.638,0.972,1.163,0.713,1.135,0.64,0.789,0.995,0.772,1.098,0.589,0.81,0.91,1.273,1.84,1.058,0.889,1.521,1.164,0.648,0.957,1.176,1.234,0.742,1.601,0.893,0.825,0.582,1.207,1.14,0.845,1.062,1.55,0.539,1.027,1.017,0.698,1.651,0.593,1.005,0.992,0.836,0.709,1.152,1.288,0.76,1.228,0.988,1.242,1.314,0.616,0.827,0.802 +NM_018390,0.9,0.86,0.709,1.398,1.628,1.66,0.907,1.748,0.819,2.167,1.109,0.708,0.877,0.552,1.29,1.471,0.754,1.323,0.561,0.834,0.69,0.772,1.27,0.837,1.002,1.035,0.922,0.766,1.059,1.147,0.707,0.678,0.79,1.499,5.001,0.582,0.905,1.74,1.531,0.645,1.32,1.015,2.898,0.53,1.262,1.219,0.786,2.743,1.218,1.44,1.23,0.611,0.754,0.697 +NM_018393,1.12,1.036,0.996,0.98,0.907,0.974,0.927,1.105,0.905,0.875,1.065,0.947,1.098,0.973,0.994,1.021,1.0,0.916,0.899,0.988,1.024,1.001,0.954,1.105,1.01,0.872,1.125,1.03,0.997,1.005,1.01,1.067,1.143,1.038,0.965,0.905,0.902,0.935,1.063,0.884,0.939,0.937,1.078,1.038,0.859,0.871,1.049,1.038,0.902,1.025,0.93,0.844,0.837,0.94 +NM_018397,1.006,1.077,0.844,0.972,0.986,0.882,0.909,0.746,0.93,0.8,1.191,0.933,0.846,0.885,1.107,0.868,0.877,0.992,0.934,1.066,0.779,0.907,1.343,0.972,0.998,0.941,1.07,0.848,0.865,0.999,0.814,1.081,1.245,0.944,0.786,1.032,1.023,0.874,1.434,1.07,0.992,1.16,1.001,1.287,0.964,0.984,1.005,0.804,1.112,0.807,1.191,1.147,0.913,1.12 +NM_018398,0.96,1.0,1.044,0.974,1.019,0.911,0.995,1.186,1.0,1.052,0.907,1.054,1.018,1.013,1.072,0.925,1.101,0.887,1.094,0.935,1.031,1.004,0.868,1.172,1.048,0.999,1.075,1.176,1.037,0.91,0.894,1.611,0.956,0.831,0.856,0.931,0.937,1.136,0.912,0.956,1.089,1.003,1.028,0.958,1.075,0.908,1.075,0.945,0.892,1.045,0.934,1.073,1.102,1.002 +NM_018399,0.941,1.007,1.101,1.104,0.974,0.891,0.864,0.898,0.985,0.848,1.11,0.99,0.948,0.989,0.992,0.886,1.106,1.052,0.973,1.011,0.922,0.927,0.896,1.093,0.868,0.97,1.294,0.996,1.159,1.027,0.987,1.036,0.978,0.84,1.02,0.912,0.96,1.103,0.999,1.739,0.928,1.058,1.126,0.934,0.973,1.039,0.949,0.94,0.872,1.326,0.957,1.189,0.991,1.5 +NM_018400,0.93,0.997,0.953,0.981,1.008,0.917,0.978,0.934,1.036,1.106,0.773,0.959,0.983,0.861,0.952,0.886,0.996,0.94,0.997,1.103,1.178,0.905,1.022,0.961,1.069,0.955,0.969,1.143,1.189,0.951,0.886,1.085,1.036,1.055,1.029,1.148,0.978,1.02,1.089,0.915,1.019,0.967,1.229,1.023,1.04,0.848,0.91,1.051,1.031,1.016,0.869,0.992,0.899,0.945 +NM_018401,0.87,1.442,1.018,1.131,0.906,1.125,1.246,1.115,0.889,1.005,1.07,0.957,0.926,0.921,1.129,0.937,1.034,1.054,0.964,1.175,0.951,0.937,0.951,1.039,1.308,1.075,0.809,0.886,0.965,1.309,0.966,1.474,1.028,1.798,0.909,1.043,1.032,1.032,1.007,1.001,0.999,1.265,0.913,0.918,0.878,0.897,0.953,0.987,0.951,1.035,0.931,0.937,0.802,0.994 +NM_018402,1.003,0.969,1.122,1.043,1.039,0.911,1.134,0.804,1.066,1.084,0.981,0.989,1.004,1.314,0.98,1.141,1.032,1.054,0.807,1.213,0.871,0.925,0.997,0.994,0.836,1.055,1.095,1.078,1.194,1.042,0.912,0.952,0.85,1.133,0.953,1.005,0.859,1.254,0.988,0.9,0.979,1.046,0.955,1.013,1.006,1.003,1.043,1.061,0.875,1.11,0.921,0.905,0.84,0.795 +NM_018403,0.792,1.041,1.116,0.718,0.913,1.081,0.833,0.782,1.101,0.765,0.862,0.901,0.784,0.723,0.852,1.254,0.93,0.993,0.891,1.1,0.74,0.951,1.067,1.097,0.72,0.852,1.237,0.848,0.645,1.099,0.978,1.113,2.673,1.098,0.723,0.883,1.123,1.132,1.135,1.116,1.073,1.048,0.72,0.721,0.942,1.007,1.011,0.698,1.212,0.735,0.961,0.984,0.926,1.486 +NM_018405,0.564,1.158,0.977,0.77,0.916,1.006,0.671,0.538,0.828,0.99,0.89,0.923,0.552,0.564,0.801,1.043,0.743,0.881,1.171,0.807,0.626,0.733,1.371,1.16,0.705,0.691,1.039,0.94,0.547,0.849,0.878,2.608,2.63,1.458,0.372,1.112,1.025,0.973,1.148,0.848,1.086,1.011,0.849,1.484,1.012,0.917,1.029,0.738,1.013,0.688,1.083,1.23,1.001,2.223 +NM_018407,0.471,1.089,0.88,0.778,0.596,1.052,0.532,0.414,0.576,0.691,1.659,0.48,0.422,0.457,0.694,2.902,0.468,0.664,0.693,1.114,0.426,0.457,1.325,0.751,0.588,0.506,0.905,0.498,0.321,0.968,0.545,2.4,5.823,1.467,0.247,1.305,1.713,0.672,1.177,5.059,0.698,1.478,1.372,3.106,0.785,1.815,1.161,0.477,2.402,0.784,1.946,1.309,0.942,2.755 +NM_018409,1.068,1.007,1.018,1.009,0.943,1.174,1.155,0.92,0.937,0.917,0.996,1.078,1.085,0.96,1.282,1.042,1.031,0.859,1.08,1.03,1.049,0.98,0.935,0.931,1.047,1.153,1.078,0.909,1.144,0.913,0.963,1.009,1.07,0.995,1.058,1.162,0.958,1.049,1.072,0.93,1.026,0.99,1.149,1.026,0.995,1.092,1.011,1.049,0.911,0.935,0.953,1.248,1.0,0.991 +NM_018410,0.743,0.874,1.067,1.134,0.897,0.894,0.869,0.652,0.978,1.061,0.941,0.878,0.986,0.821,0.887,1.144,0.887,1.098,1.248,0.696,0.996,0.826,1.468,1.111,0.707,0.76,1.35,0.88,0.676,1.003,0.867,1.405,2.572,0.915,0.599,1.923,0.946,0.864,1.468,1.185,0.997,0.806,0.718,2.976,1.026,0.97,1.068,0.75,1.247,0.871,1.129,1.078,0.816,4.709 +NM_018411,1.129,0.79,1.092,1.097,1.068,1.056,0.779,0.983,1.176,1.155,0.866,1.032,1.122,0.803,0.908,0.979,0.976,1.171,1.395,0.942,1.599,1.418,1.043,1.269,0.978,1.414,1.267,0.931,0.937,1.027,1.369,0.895,0.998,0.835,0.729,0.942,0.875,1.669,1.73,0.803,1.134,1.091,1.038,1.105,1.211,0.899,0.784,1.188,0.894,1.041,0.855,0.75,0.827,0.882 +NM_018412,1.411,2.307,1.8010000000000002,1.844,1.474,2.521,1.593,1.061,1.528,1.468,2.793,1.391,1.3570000000000002,1.272,1.827,3.104,1.465,1.562,1.794,2.29,1.2069999999999999,1.35,4.317,1.633,2.791,1.514,1.8820000000000001,1.512,1.01,2.997,1.512,2.266,3.402,3.4939999999999998,0.8560000000000001,2.194,2.436,1.542,2.901,1.439,1.613,2.896,1.733,2.285,1.616,2.0620000000000003,1.833,1.384,1.852,1.544,2.504,1.824,1.6909999999999998,2.713 +NM_018413,0.902,1.008,1.068,1.021,0.96,1.102,0.945,0.926,0.937,0.972,0.998,1.026,1.007,1.072,0.846,1.107,0.926,1.146,0.895,0.917,0.917,0.821,1.002,0.964,1.069,0.976,1.153,0.907,0.632,0.987,0.921,1.257,1.138,0.991,0.764,0.933,0.829,1.002,1.087,1.411,0.842,0.938,1.308,0.888,1.152,0.976,1.013,0.983,0.77,0.924,0.977,1.069,1.252,1.08 +NM_018414,0.503,1.36,0.771,1.514,0.431,1.881,0.924,0.344,0.659,0.509,1.737,0.289,0.404,0.487,1.864,3.319,0.685,1.076,0.732,3.125,0.361,0.582,2.795,0.421,0.895,0.781,0.375,0.625,0.659,2.228,0.625,1.171,0.645,2.432,0.431,0.4,1.587,0.39,2.046,0.302,0.685,2.659,1.697,0.669,0.563,2.001,0.632,0.508,1.954,0.584,2.556,0.419,0.503,1.188 +NM_018416,0.687,1.096,1.32,0.719,0.824,0.968,0.788,0.406,1.015,0.735,0.773,0.701,0.558,0.69,0.798,0.85,0.738,1.003,0.931,1.189,0.404,0.695,1.177,0.749,0.909,0.874,1.225,0.764,0.737,1.619,1.01,1.585,1.998,1.533,0.475,1.259,1.022,0.834,1.558,1.288,0.882,1.266,0.503,1.078,1.042,0.925,0.715,0.673,0.687,1.004,0.979,0.948,0.83,1.42 +NM_018417,1.064,1.0,1.028,0.964,1.144,1.024,1.036,1.045,0.987,0.994,0.904,0.959,1.0,0.895,0.966,1.005,0.898,1.1,1.109,1.107,1.038,1.012,1.025,1.151,1.004,1.003,1.055,1.082,0.714,0.868,0.997,1.021,0.938,1.073,1.106,1.1,1.14,1.161,0.949,0.959,0.873,1.015,0.975,1.027,1.153,0.988,1.08,1.021,0.992,0.914,0.923,1.029,0.89,0.927 +NM_018418,0.799,1.44,0.992,0.787,0.788,1.295,0.975,0.672,0.784,0.701,1.215,0.885,0.814,0.86,0.828,1.175,0.804,1.044,0.832,1.498,0.596,1.045,1.405,0.751,0.974,0.779,0.951,0.792,1.096,1.364,0.644,1.978,1.458,1.418,0.578,1.17,1.03,0.876,0.975,1.008,0.853,1.309,0.893,1.422,0.698,1.038,0.817,0.654,0.802,0.731,1.147,0.937,0.851,1.042 +NM_018419,0.522,1.397,0.734,0.417,0.645,0.984,0.893,0.533,0.554,1.358,0.744,0.482,0.576,0.404,0.721,1.078,0.552,0.614,0.716,0.598,0.546,0.543,2.031,0.651,1.003,0.448,0.617,0.809,0.503,1.627,0.485,6.529,1.924,1.888,0.473,1.919,0.898,1.069,3.154,3.366,0.819,3.339,0.709,1.193,1.066,1.137,1.216,0.588,0.834,0.751,1.733,3.743,0.617,2.258 +NM_018422,0.756,1.196,1.07,0.952,0.983,1.258,0.522,0.648,1.184,0.75,1.077,0.601,0.684,0.974,1.096,1.04,0.853,1.138,1.028,1.222,0.595,0.778,0.929,0.881,0.951,0.873,0.967,1.134,0.646,1.338,1.236,1.892,1.176,2.019,0.707,0.553,0.965,1.076,1.356,0.673,1.136,1.019,0.535,0.722,0.87,1.078,0.604,0.986,0.766,0.721,1.087,0.798,0.719,1.236 +NM_018423,0.837,0.857,0.926,1.035,0.907,1.823,1.201,1.086,1.0,0.715,0.796,0.758,1.046,0.835,1.274,1.371,1.026,1.373,0.862,1.347,0.666,1.057,0.989,1.108,1.0,0.773,1.136,0.907,1.085,1.466,1.26,0.859,1.172,1.667,1.122,0.752,1.265,0.8,1.087,0.777,0.869,0.759,0.723,0.525,0.827,1.133,0.939,0.86,1.076,0.849,1.147,0.808,0.635,0.788 +NM_018424,0.863,0.974,0.8,1.166,0.938,1.164,1.027,0.98,0.872,0.91,1.608,0.875,0.761,0.725,1.089,1.425,0.805,0.998,0.781,1.128,0.778,0.876,1.113,0.802,0.971,0.914,0.704,0.879,0.923,1.125,0.879,1.002,1.024,1.295,0.954,0.974,1.236,0.741,1.176,0.987,0.837,1.137,1.213,0.996,0.705,1.426,1.033,0.76,1.433,0.942,1.061,0.903,0.918,0.907 +NM_018427,0.715,1.266,1.173,0.75,0.833,1.126,0.819,0.566,0.862,0.825,0.734,0.676,0.734,0.479,0.919,1.475,0.859,0.835,0.837,1.248,0.475,1.03,1.48,1.03,0.679,0.75,1.235,0.76,0.625,1.276,0.847,1.156,3.161,1.264,0.418,0.691,1.012,0.974,1.874,1.14,0.891,1.224,0.691,1.111,0.976,1.04,1.205,0.801,1.089,0.751,1.084,0.791,0.696,1.503 +NM_018428,0.571,1.007,1.048,0.679,0.878,0.946,0.712,0.475,1.174,1.075,0.816,0.793,0.542,0.541,0.949,1.386,0.878,0.825,1.136,0.862,0.536,0.781,1.295,1.292,0.498,0.653,1.508,0.769,0.533,1.042,0.905,1.757,3.179,1.073,0.288,0.934,0.924,0.764,1.591,0.998,1.178,0.934,0.793,1.371,1.02,0.878,1.074,0.679,1.191,0.778,1.028,1.006,0.77,2.096 +NM_018429,0.887,0.852,1.032,1.133,0.929,1.077,0.88,0.977,1.166,0.916,0.856,1.047,1.037,0.988,0.97,1.066,0.793,0.925,1.031,0.966,0.993,0.887,0.861,0.988,1.028,0.874,1.085,1.007,0.874,1.034,0.812,1.025,1.027,0.99,1.057,1.005,1.007,0.927,0.978,0.974,1.001,1.068,1.068,1.022,0.996,0.894,1.022,0.99,0.914,0.822,1.036,0.985,0.827,0.932 +NM_018430,0.937,1.011,0.971,0.961,0.964,1.1,0.926,1.012,1.035,0.88,1.013,0.964,0.98,1.056,0.925,0.987,0.975,1.143,0.761,0.968,1.059,0.985,1.092,1.042,0.93,1.05,1.046,1.153,0.911,1.027,1.019,1.027,1.012,0.964,0.996,1.014,1.099,1.092,0.968,0.983,0.868,1.058,0.845,0.921,0.923,1.049,1.075,0.953,1.029,1.058,1.014,1.256,1.019,1.039 +NM_018431,0.973,1.171,1.041,1.043,0.935,1.038,0.986,0.906,1.04,1.054,1.137,0.938,1.11,1.005,0.94,1.17,0.957,0.974,0.928,0.899,0.888,1.141,0.919,0.958,1.087,0.946,0.925,0.94,1.115,0.964,0.99,0.967,1.144,1.0,0.88,0.965,1.064,0.979,1.068,1.038,1.001,1.098,0.969,1.007,0.985,1.222,0.985,1.051,1.091,0.998,1.103,0.921,1.129,1.003 +NM_018433,0.892,0.952,2.235,0.731,1.409,0.728,0.51,0.986,1.666,0.877,0.79,1.0,0.678,1.25,1.25,0.874,1.145,0.881,1.718,1.048,0.794,1.253,0.865,1.149,0.558,1.095,1.302,1.351,0.37,0.966,1.273,1.299,1.246,0.87,1.803,0.761,0.852,1.883,0.726,1.545,1.451,0.99,0.581,0.897,1.139,0.798,1.005,1.274,0.792,1.186,1.056,0.704,1.527,1.199 +NM_018434,0.53,1.524,0.995,0.741,0.648,1.127,0.819,0.473,0.546,0.691,1.282,0.61,0.689,0.445,0.814,2.127,0.613,0.815,0.764,2.129,0.47,0.519,2.026,0.772,1.002,0.495,0.976,0.586,0.543,1.578,0.595,3.545,4.711,2.242,0.364,0.668,0.981,0.625,1.001,1.409,0.807,2.061,0.999,0.452,0.659,1.418,1.179,0.463,1.161,0.607,1.099,1.066,0.806,2.233 +NM_018437,0.969,0.979,1.021,0.95,0.843,0.986,1.168,1.039,1.017,1.03,0.916,1.058,0.932,1.046,1.074,1.01,0.907,0.948,1.098,1.077,0.912,0.983,1.026,1.051,1.045,1.022,0.936,1.056,1.351,0.966,1.0,0.911,0.978,0.966,1.016,0.928,0.942,1.083,1.087,0.91,1.039,1.1,1.115,0.922,0.878,0.843,0.954,0.95,1.031,1.0,1.012,0.976,0.95,1.029 +NM_018438,0.819,0.911,1.084,0.808,0.803,1.297,0.804,0.849,1.188,0.811,0.818,0.808,0.666,0.961,1.249,1.129,1.107,0.794,1.178,0.762,0.914,0.716,1.033,0.936,0.658,0.916,1.058,0.712,0.934,1.263,0.746,0.922,1.166,1.086,0.607,0.837,1.184,1.016,1.391,0.83,1.235,1.018,0.989,0.842,1.046,0.985,0.784,0.78,1.396,0.942,1.149,0.735,1.294,2.25 +NM_018440,0.518,1.104,0.776,0.685,0.617,2.024,0.749,0.622,0.599,0.681,2.266,0.595,0.771,0.608,1.555,2.445,0.528,0.832,0.558,1.794,0.664,0.659,1.452,0.684,0.964,0.577,0.68,0.586,0.666,1.593,0.502,1.745,1.347,1.193,0.53,1.37,2.516,0.751,1.382,2.667,0.68,1.822,0.75,0.738,0.715,3.17,0.826,0.572,1.206,0.578,1.937,1.193,0.668,1.272 +NM_018441,0.746,0.717,0.875,0.834,0.831,1.412,0.865,0.678,0.939,0.756,1.315,0.762,0.643,0.838,0.925,2.138,0.978,1.026,0.774,1.386,0.751,0.747,1.731,0.764,0.842,0.691,1.19,0.816,0.537,1.685,0.979,1.507,1.342,1.275,0.77,0.9,1.925,0.792,0.911,0.787,0.823,1.016,1.431,1.745,0.845,1.463,1.389,0.665,1.344,0.81,0.999,0.841,0.82,2.88 +NM_018442,0.777,1.076,1.684,0.633,1.124,0.747,0.388,0.56,1.188,1.018,0.842,0.907,0.66,0.711,1.055,1.613,0.962,0.826,1.302,0.806,0.647,0.747,1.182,1.234,0.51,0.861,1.287,1.003,0.264,0.806,1.05,1.427,1.727,0.898,0.41,0.686,1.059,1.04,1.013,0.818,1.131,1.093,0.755,1.063,1.041,0.935,1.102,0.826,0.93,0.987,0.906,0.651,1.084,1.292 +NM_018443,1.017,0.958,1.021,1.032,0.994,0.946,0.901,0.863,0.861,1.03,0.987,1.176,0.978,1.074,0.938,1.002,1.04,0.977,0.91,1.049,1.009,1.08,0.975,1.021,1.0,1.01,1.014,1.111,0.998,0.996,1.071,0.987,1.097,1.095,1.0,0.872,1.079,1.056,1.081,0.906,0.964,0.986,0.896,0.839,1.122,0.94,1.029,1.053,1.022,0.863,0.944,1.05,1.084,1.006 +NM_018445,0.321,0.99,0.809,0.717,0.684,1.791,0.804,0.403,0.881,0.777,1.377,0.78,0.498,0.504,1.09,2.48,0.688,0.912,0.915,1.461,0.342,0.56,2.187,0.842,0.555,0.509,1.068,0.7,0.491,1.477,0.733,1.214,1.06,1.67,0.116,1.317,1.694,0.666,1.665,0.647,0.92,1.437,1.174,0.715,0.738,1.836,1.382,0.496,1.696,0.499,1.52,0.868,0.792,1.507 +NM_018446,1.366,2.8659999999999997,2.143,1.456,1.774,2.923,1.9060000000000001,1.521,1.9980000000000002,1.759,2.018,1.763,1.4940000000000002,1.826,1.952,2.9610000000000003,1.4969999999999999,2.0460000000000003,2.034,2.4749999999999996,1.405,1.921,3.242,1.9009999999999998,1.534,1.685,2.418,1.722,1.237,3.718,1.855,4.609,2.2030000000000003,3.192,1.354,1.7970000000000002,2.073,1.833,2.589,1.903,1.827,2.7969999999999997,1.522,2.259,1.831,1.874,1.877,1.6019999999999999,1.823,1.5710000000000002,2.24,1.8860000000000001,1.782,3.045 +NM_018447,0.647,0.619,1.316,0.51,1.145,0.975,0.446,0.76,1.791,0.943,0.665,0.765,0.814,1.014,1.161,1.606,1.159,0.871,1.695,0.75,0.701,1.16,0.943,1.256,0.271,1.034,1.838,1.337,0.434,1.015,2.261,1.005,1.599,1.132,1.525,0.572,0.732,1.103,1.397,0.622,1.272,0.966,0.467,0.652,1.034,1.01,1.23,1.038,1.056,0.812,0.793,0.686,1.108,1.205 +NM_018448,0.716,1.132,1.295,0.737,0.978,1.159,1.002,0.588,1.129,0.855,0.958,0.981,0.593,0.629,0.932,1.473,0.71,1.118,1.085,1.189,0.5,0.863,1.203,0.985,0.641,0.724,1.188,0.819,0.663,1.165,0.989,1.099,1.585,1.158,0.361,0.908,1.174,0.973,1.268,0.899,1.1,1.14,0.705,1.286,0.947,1.018,0.797,0.82,1.223,0.79,1.094,0.956,0.743,1.408 +NM_018450,0.65,1.04,1.594,0.687,0.832,0.931,0.823,0.522,1.166,0.854,0.744,0.73,0.521,0.941,0.88,1.239,0.954,0.966,1.241,1.306,0.732,0.662,1.102,0.974,0.692,0.764,1.432,0.744,0.485,1.113,1.013,1.239,1.493,1.052,0.535,0.896,1.11,0.885,1.327,1.096,1.16,0.89,0.68,1.254,1.081,1.16,0.976,0.656,1.074,0.921,1.097,0.919,1.06,1.382 +NM_018451,0.949,0.89,1.275,1.027,1.002,0.95,0.856,0.943,1.243,1.02,0.923,0.989,0.867,0.943,1.183,1.198,1.134,0.937,0.92,0.959,0.946,1.022,1.404,1.139,0.886,0.962,1.339,1.0,0.664,1.066,1.099,1.618,1.71,0.996,0.889,1.085,0.94,1.08,1.03,1.65,0.958,0.975,1.04,0.931,1.069,1.302,0.93,0.856,1.192,1.056,0.983,0.924,0.841,1.806 +NM_018452,1.135,0.964,1.003,0.925,0.933,1.031,0.886,0.756,0.952,1.054,0.774,0.911,1.083,0.888,1.013,0.992,0.992,0.881,1.012,1.04,1.075,1.332,0.962,0.902,0.937,1.069,1.03,0.953,0.738,1.187,1.117,0.994,1.073,0.961,0.96,1.046,0.863,0.915,1.183,1.103,1.083,1.003,1.031,0.987,0.983,0.847,1.147,1.026,1.038,1.116,0.921,0.988,0.983,0.985 +NM_018453,0.579,1.344,1.548,0.691,0.99,1.374,0.634,0.652,1.345,0.877,1.03,0.895,0.683,0.759,1.295,1.896,0.865,0.912,1.084,1.48,0.478,1.0,1.091,0.922,0.572,0.716,1.242,1.17,0.46,1.364,1.096,1.132,1.73,0.999,0.507,0.924,1.259,0.978,1.175,0.782,1.211,1.57,0.79,1.333,0.861,0.896,1.208,0.728,1.33,0.75,1.032,0.65,0.924,1.476 +NM_018454,0.773,1.156,1.423,0.831,1.154,1.196,0.837,0.879,1.15,1.04,0.81,0.806,0.804,0.871,0.993,1.245,0.881,0.815,0.836,0.838,0.88,0.856,1.634,1.26,0.721,0.757,1.96,0.877,0.696,1.019,1.209,1.183,3.274,0.924,0.71,0.856,0.939,1.136,1.678,1.035,1.17,0.843,0.934,0.838,0.949,1.0,1.236,0.738,1.437,0.828,1.371,1.028,0.74,2.784 +NM_018455,0.609,0.895,0.979,0.823,0.848,1.098,0.653,0.638,1.07,1.074,1.082,1.024,0.916,0.681,0.638,1.405,0.697,1.241,1.136,0.775,0.569,0.87,2.03,1.695,0.67,0.745,1.459,0.758,0.608,1.073,0.786,0.996,5.522,0.84,0.441,2.011,1.027,0.839,1.839,1.092,1.039,0.781,1.107,2.315,1.05,1.264,1.824,0.776,1.823,0.829,1.259,1.61,1.113,1.941 +NM_018456,0.856,0.934,1.04,0.827,0.814,1.187,1.293,0.863,1.038,0.758,1.011,0.947,0.968,0.66,0.827,1.185,1.012,0.839,1.259,0.909,0.895,0.898,1.001,0.894,0.992,0.902,0.974,0.975,0.687,1.104,0.97,1.15,1.351,1.484,0.751,0.981,1.299,0.927,1.154,0.9,0.881,1.244,0.999,1.007,0.982,0.928,0.942,0.786,1.179,0.941,1.159,0.916,0.814,1.639 +NM_018457,0.292,1.154,0.578,0.776,0.639,1.962,1.012,0.388,0.631,0.518,2.008,0.537,0.223,0.405,1.154,2.493,0.517,0.925,0.618,1.853,0.292,0.43,1.5,0.547,0.772,0.418,0.555,0.537,0.765,2.028,0.5,0.951,1.064,1.96,0.338,1.751,2.346,0.54,1.429,0.916,0.619,1.794,1.569,1.355,0.454,2.351,1.654,0.382,2.141,0.316,1.77,0.846,0.561,1.241 +NM_018459,0.71,0.943,0.914,1.277,0.964,1.021,1.019,0.562,0.983,0.973,1.294,0.847,0.787,0.751,0.928,1.84,0.908,0.89,0.779,1.088,0.599,0.658,1.109,0.801,0.89,0.776,0.999,0.828,0.863,1.166,1.054,1.654,1.708,1.245,0.733,0.77,1.032,0.701,1.465,3.785,0.974,0.876,1.11,1.038,0.875,1.058,1.019,0.772,1.217,0.884,1.162,1.611,0.894,0.918 +NM_018460,0.913,0.966,1.081,0.928,1.083,0.958,1.01,0.811,1.161,0.852,0.952,0.882,0.895,0.899,1.012,0.974,0.793,0.824,1.169,0.855,0.891,0.833,1.159,0.997,1.007,0.907,1.126,1.166,1.027,1.173,1.026,1.173,1.038,1.331,1.292,0.776,1.025,0.792,1.007,1.252,0.931,1.133,0.837,0.874,1.018,0.849,0.923,0.893,0.874,0.968,0.84,1.007,1.204,1.474 +NM_018462,1.065,1.036,1.225,0.927,1.239,0.935,0.53,0.82,1.184,1.202,0.87,1.564,1.276,0.534,0.786,1.279,1.094,1.186,1.479,0.917,0.511,1.107,0.918,1.233,0.614,1.538,0.999,1.132,0.389,1.176,0.921,0.893,0.96,1.201,0.723,0.457,0.796,1.327,1.421,0.751,1.274,1.071,0.462,0.992,1.268,0.716,1.123,1.588,0.742,1.313,0.827,0.787,1.174,0.922 +NM_018464,0.777,0.951,1.129,0.84,0.809,0.827,0.672,0.653,1.101,0.964,1.167,0.757,0.775,0.884,1.144,2.174,0.925,0.998,1.169,1.151,0.631,0.748,1.366,0.927,0.833,0.82,1.002,1.021,0.624,0.818,1.073,1.406,2.333,1.1,0.633,1.07,1.307,0.868,1.227,0.804,1.046,1.032,0.915,3.456,1.128,1.147,1.108,0.797,0.964,0.889,1.006,0.947,0.962,1.95 +NM_018465,0.71,0.639,0.896,1.04,0.674,1.754,0.913,0.447,0.89,0.982,2.626,0.7,0.646,0.537,1.657,4.677,0.675,0.999,1.549,1.739,0.63,0.584,1.745,0.75,0.644,0.627,1.167,0.865,0.561,1.384,0.68,0.815,1.664,2.384,0.227,0.802,2.929,0.624,1.348,0.545,0.932,1.227,1.386,1.154,0.969,2.986,0.777,0.494,1.801,0.814,2.187,1.732,0.979,1.882 +NM_018466,0.719,1.039,1.074,1.133,0.995,0.903,0.644,0.686,1.035,1.057,1.229,1.004,0.716,0.68,0.831,1.222,0.963,1.091,1.226,0.973,0.662,0.778,1.024,1.133,0.573,0.912,0.828,0.998,0.418,0.771,0.856,0.744,0.948,1.119,0.575,0.942,1.165,0.846,1.376,0.498,1.122,1.041,1.003,0.998,1.012,1.152,1.178,0.869,0.984,0.759,1.07,1.262,1.061,1.139 +NM_018467,0.599,1.334,1.346,0.64,0.897,1.052,0.916,0.76,0.923,1.1,0.91,1.142,0.868,0.488,0.916,1.358,1.111,1.087,0.955,1.061,0.553,0.949,1.814,1.14,0.582,0.686,1.169,0.914,0.52,1.111,0.933,1.121,1.714,1.544,0.392,0.823,0.824,1.079,1.522,0.978,1.09,1.472,0.598,0.676,1.238,0.906,0.928,1.003,1.019,0.843,1.102,0.997,0.643,1.319 +NM_018469,1.122,0.963,1.305,0.659,1.411,0.799,0.536,0.899,1.482,1.099,1.054,1.022,0.954,1.049,1.163,1.101,0.946,0.902,1.352,0.982,0.576,1.225,1.068,1.44,0.856,1.19,1.104,1.567,0.547,1.002,1.326,1.314,1.006,1.161,1.505,0.726,0.952,1.368,0.872,0.429,1.242,1.07,0.671,0.886,1.049,0.902,0.862,1.067,0.755,0.827,0.976,0.799,0.853,0.981 +NM_018472,1.19,0.792,1.32,0.838,1.272,1.292,0.472,1.196,2.324,0.701,1.052,1.218,1.203,1.426,1.242,1.442,1.002,1.087,1.812,0.8,0.612,1.37,1.017,0.989,0.478,1.09,1.332,1.608,0.45,1.14,1.96,1.149,0.979,1.127,4.41,0.718,0.983,1.162,0.779,0.705,1.57,0.753,0.514,0.604,0.995,0.876,1.067,1.763,0.667,1.079,0.966,0.667,0.901,0.914 +NM_018473,0.603,1.182,0.782,0.885,0.853,1.298,0.715,0.54,0.851,0.971,1.187,0.914,0.568,0.59,0.847,1.747,0.792,1.071,1.374,1.044,0.753,0.718,0.91,0.896,0.87,0.632,1.004,0.737,0.549,1.24,0.786,0.966,3.494,1.659,0.329,0.839,1.066,0.77,1.355,0.937,0.842,1.076,0.528,0.888,0.773,1.172,1.082,0.688,0.899,0.631,1.044,0.964,0.988,1.708 +NM_018474,0.796,1.092,1.275,0.933,1.284,1.094,0.959,1.008,0.965,1.153,0.935,1.101,0.853,0.746,0.926,1.764,1.423,1.002,0.803,1.468,0.823,0.955,1.047,1.132,0.84,0.832,1.379,0.837,0.625,1.032,0.881,1.046,1.86,1.164,0.776,0.719,0.998,1.902,0.91,0.77,0.804,1.275,0.93,0.922,1.216,1.195,1.061,0.977,1.158,0.911,1.189,1.023,0.769,2.035 +NM_018475,0.625,1.239,1.555,0.877,0.852,1.425,0.771,0.513,1.148,0.993,1.117,0.769,0.637,0.616,0.971,1.571,0.919,1.16,1.136,1.061,0.409,0.791,1.562,1.004,0.427,0.681,1.34,0.941,0.386,1.097,0.746,1.299,1.221,1.115,0.199,0.586,1.344,0.801,1.431,0.832,1.168,0.912,0.673,1.007,0.972,1.02,0.89,0.634,0.851,0.886,1.303,0.913,0.848,1.095 +NM_018476,0.908,0.96,0.904,1.092,0.789,0.884,1.526,1.004,0.975,0.952,0.939,1.048,0.949,1.143,1.104,1.197,0.893,1.022,0.82,1.174,1.039,0.875,1.095,0.868,1.881,0.805,1.118,1.04,0.78,0.959,0.957,1.372,0.927,3.612,1.098,0.961,1.399,0.948,0.959,1.158,0.911,1.227,1.017,0.953,0.95,0.856,0.831,1.077,1.485,0.941,1.087,0.923,1.076,0.899 +NM_018477,0.967,0.933,1.252,0.995,1.108,0.999,0.53,0.619,1.342,0.966,1.468,0.677,0.656,1.019,1.32,1.717,0.799,0.909,1.516,0.931,0.648,0.639,1.008,0.941,0.587,1.108,1.145,1.147,0.326,1.004,1.35,1.054,1.35,1.523,0.766,0.695,1.059,0.932,1.112,0.617,1.194,0.966,0.577,1.894,1.143,1.11,1.05,0.862,0.847,0.82,1.062,0.743,1.215,1.38 +NM_018479,0.645,0.96,1.4,0.675,0.992,1.116,0.525,0.72,1.235,1.074,0.967,0.866,0.681,0.607,1.06,2.461,0.994,0.992,1.408,1.009,0.501,0.931,1.185,1.24,0.627,0.646,1.625,0.854,0.5,0.795,1.091,0.99,1.892,1.079,0.356,0.654,0.984,0.988,1.541,0.866,1.158,0.965,0.628,0.918,1.087,0.977,1.273,0.839,1.314,0.926,0.676,0.816,0.822,3.094 +NM_018480,0.484,1.056,1.152,0.66,0.811,1.634,0.761,0.643,0.981,0.832,1.141,0.818,0.697,0.697,1.109,2.201,0.927,0.999,1.222,1.001,0.407,0.843,1.584,0.955,0.606,0.574,1.43,0.797,0.669,1.627,0.934,1.785,2.408,1.508,0.329,1.341,1.589,0.978,1.443,0.943,1.139,1.089,0.694,0.802,0.844,1.042,1.051,0.662,1.301,0.612,1.234,0.868,0.661,1.772 +NM_018484,1.001,1.067,1.202,1.021,1.058,0.994,0.907,1.089,1.041,1.109,1.01,0.906,0.981,0.983,0.86,0.994,1.255,1.136,1.199,1.12,1.037,1.045,1.028,1.029,1.046,1.084,0.963,1.001,0.821,0.852,1.004,0.911,1.129,1.035,1.044,1.0,1.13,1.001,0.881,1.023,0.974,0.95,0.882,0.915,1.081,1.184,1.097,1.05,0.933,0.966,0.946,1.0,1.122,1.143 +NM_018485,0.955,1.003,1.199,1.016,1.176,1.06,1.11,0.948,1.123,0.938,0.945,0.931,1.115,1.046,0.899,0.993,1.013,1.186,0.873,0.912,0.957,1.089,1.075,1.039,0.936,1.101,0.962,0.96,0.978,0.945,1.014,0.954,1.016,0.905,1.007,0.978,0.973,0.861,0.945,1.019,0.987,0.969,1.179,0.907,0.925,1.117,1.188,1.017,0.96,0.846,1.034,1.012,1.155,1.101 +NM_018487,0.639,1.279,0.73,0.837,0.551,1.044,1.071,0.622,0.634,0.654,0.819,0.608,0.655,0.64,1.11,2.288,0.588,0.751,0.619,1.226,0.624,0.551,1.95,0.639,0.867,0.636,0.678,0.596,0.597,3.142,0.573,4.475,1.77,1.582,0.57,2.151,1.203,0.587,1.883,2.903,0.635,1.569,0.904,3.656,0.591,1.536,2.015,0.608,2.892,0.616,1.875,1.854,0.713,1.746 +NM_018488,1.023,1.156,0.96,1.049,0.995,1.069,0.926,0.927,1.065,1.027,0.994,1.156,0.893,1.132,0.904,1.137,1.015,1.059,1.087,1.112,0.897,0.922,0.988,1.062,1.016,0.96,0.965,1.022,0.771,0.878,1.012,1.004,0.991,1.073,1.115,1.199,0.957,0.981,0.962,0.85,0.956,1.185,1.106,1.016,0.989,0.891,0.934,0.939,1.023,1.038,0.978,0.987,0.932,0.882 +NM_018489,1.116,0.939,0.941,0.875,1.058,0.953,0.941,0.969,0.858,0.939,1.043,0.969,0.944,0.891,1.056,0.904,1.015,0.956,1.044,1.021,1.098,1.017,0.987,0.933,1.034,0.965,0.922,1.12,1.288,0.98,0.89,0.987,1.038,0.931,0.907,1.004,1.004,0.949,0.959,0.983,0.951,0.875,1.051,1.094,1.07,1.027,1.024,1.042,0.948,0.981,0.908,0.971,0.974,0.972 +NM_018490,0.402,1.286,1.041,0.647,0.618,2.589,1.371,0.463,0.78,0.477,1.619,0.781,0.485,0.363,1.551,2.872,0.554,1.84,0.809,3.053,0.284,0.543,2.471,0.56,0.609,0.366,1.102,0.663,1.022,2.627,0.643,0.892,0.992,1.953,0.214,1.106,1.993,0.766,3.24,1.034,0.566,1.808,0.822,0.569,0.524,2.083,0.961,0.416,2.431,0.632,1.87,1.759,0.45,1.809 +NM_018491,0.87,0.987,1.122,1.094,1.074,1.032,0.98,1.197,0.966,0.944,1.026,0.905,1.001,0.996,1.068,1.231,0.876,0.91,1.003,0.964,0.908,1.126,1.008,1.112,0.963,0.993,1.038,0.976,1.017,0.973,1.273,0.967,1.376,1.003,1.126,0.994,1.002,1.087,0.911,1.019,0.987,0.858,0.847,1.017,1.02,1.113,1.014,1.069,1.133,1.176,1.122,1.051,0.808,0.975 +NM_018492,0.657,0.746,1.172,0.944,0.95,1.36,0.891,0.664,1.078,1.153,0.919,0.839,0.871,0.754,0.95,2.001,0.804,1.07,1.142,0.678,0.641,0.919,1.635,1.154,0.667,0.637,2.609,0.732,0.515,1.081,0.993,0.929,3.149,0.839,0.432,1.063,1.063,0.941,1.857,0.654,1.185,0.642,0.805,1.242,0.923,1.547,1.066,0.706,1.912,0.797,1.24,1.038,0.968,2.779 +NM_018494,0.993,0.92,0.946,1.029,1.081,1.021,1.084,0.984,0.845,1.004,1.071,0.977,1.062,1.115,0.983,1.046,0.912,0.933,1.0,1.127,1.004,0.94,1.062,0.982,0.976,0.952,0.929,0.896,0.861,1.058,1.042,1.096,0.969,0.987,1.101,0.984,0.861,1.052,1.06,0.938,0.999,0.886,0.973,0.895,1.076,0.963,0.94,0.961,1.086,1.0,1.146,1.096,0.927,1.017 +NM_018502,0.842,1.093,1.273,0.863,0.927,1.016,0.762,0.767,1.167,0.931,0.818,0.963,0.857,0.951,1.09,1.019,0.886,1.029,1.123,1.198,0.696,1.148,1.099,1.095,0.736,1.057,1.021,0.965,0.775,1.237,1.01,1.047,1.522,1.315,0.686,0.837,0.856,1.022,1.094,0.862,1.14,1.087,0.504,1.062,1.16,0.707,1.015,0.833,0.674,0.856,0.868,0.828,0.853,1.01 +NM_018507,0.705,0.724,1.308,1.051,0.876,0.734,1.015,0.628,1.158,0.998,1.802,0.795,0.793,0.902,0.808,1.86,0.667,0.799,0.733,2.125,0.732,0.702,1.659,0.716,0.818,0.873,0.968,1.19,0.52,0.983,1.18,1.221,1.847,1.717,0.686,1.547,1.041,0.793,0.861,0.9,0.971,1.394,0.765,1.193,0.905,0.968,0.806,0.79,0.868,1.042,1.243,0.926,1.345,2.133 +NM_018509,0.374,1.045,0.64,0.955,0.484,1.703,0.963,0.318,0.838,0.829,0.884,0.548,0.387,0.311,0.868,2.585,0.381,1.107,0.815,1.287,0.318,0.41,2.161,0.826,0.896,0.475,0.788,0.512,0.505,1.643,0.677,1.343,2.26,1.863,0.125,1.252,1.615,0.46,2.438,0.82,0.6,1.534,0.804,1.476,0.862,1.394,0.903,0.398,2.464,0.618,1.715,1.088,0.72,1.693 +NM_018510,1.038,1.047,1.094,0.848,0.93,1.065,0.984,0.986,0.995,1.099,1.017,0.984,0.97,0.867,1.039,0.952,0.992,0.911,1.014,1.057,0.984,0.943,1.003,1.018,1.083,1.032,1.098,0.965,0.999,1.12,1.129,0.94,0.966,1.067,1.071,0.997,0.97,1.049,0.999,0.939,0.977,0.986,0.943,0.865,1.163,0.992,1.039,1.088,0.858,1.01,0.96,0.862,0.891,1.159 +NM_018518,0.869,0.885,0.987,0.87,0.732,1.078,0.748,0.873,1.1,1.118,0.814,1.304,1.0,0.899,0.945,1.267,0.889,1.035,1.019,0.967,0.92,1.015,1.0,1.236,0.669,0.849,1.627,0.938,1.253,0.986,0.93,1.171,3.282,1.038,0.877,1.12,0.902,1.017,1.346,1.357,1.155,0.803,0.908,1.158,0.969,1.038,1.034,1.006,1.046,1.295,0.957,0.964,0.994,2.037 +NM_018520,0.939,0.854,1.025,0.931,1.024,0.959,0.922,0.941,1.005,1.115,1.019,1.001,0.979,0.898,1.087,0.99,1.013,0.82,1.013,0.984,1.014,1.042,0.937,0.923,1.046,0.913,0.999,1.09,0.682,0.929,0.955,1.03,1.017,1.102,0.976,0.89,1.028,1.135,1.029,1.019,0.975,0.98,1.464,0.951,0.992,0.898,0.991,1.031,0.98,1.043,1.217,1.001,1.066,0.925 +NM_018527,2.048,2.1189999999999998,2.073,1.959,2.0469999999999997,1.912,1.889,1.871,2.177,2.183,1.904,1.995,1.866,2.0180000000000002,2.165,2.049,1.971,1.978,1.954,2.072,2.097,2.098,2.036,2.093,2.117,2.137,2.312,2.473,1.6709999999999998,2.189,2.556,2.012,2.248,2.2560000000000002,1.9689999999999999,1.9020000000000001,2.053,2.324,1.888,2.38,2.049,1.7690000000000001,1.9689999999999999,1.836,1.815,1.922,2.004,2.15,1.922,1.9779999999999998,2.0220000000000002,1.964,1.92,2.116 +NM_018530,0.198,0.672,0.215,1.538,0.19,2.923,1.007,0.178,0.227,0.174,1.496,0.169,0.189,0.215,1.837,4.009,0.192,0.723,0.172,2.32,0.209,0.2,2.651,0.236,0.569,0.171,0.212,0.213,0.516,1.737,0.183,1.237,2.182,1.887,0.179,1.35,1.446,0.168,2.644,0.536,0.199,2.047,1.765,1.584,0.169,1.224,1.243,0.18,3.578,0.182,1.903,1.16,0.237,1.349 +NM_018534,1.084,1.035,0.891,0.943,1.101,0.969,1.19,0.955,1.157,0.973,0.982,1.01,1.033,0.973,0.841,0.885,0.982,0.988,1.099,0.859,0.907,0.999,1.009,0.9,1.081,1.047,0.879,0.995,0.967,0.941,1.008,1.062,1.016,0.978,0.772,0.964,1.072,1.084,1.027,1.141,1.174,0.941,1.029,1.077,0.944,0.993,0.971,1.096,1.125,1.011,1.063,1.099,1.001,0.974 +NM_018553,0.773,0.927,1.153,0.867,0.889,1.169,0.794,0.702,1.255,1.001,0.829,0.967,0.802,0.77,1.195,1.353,0.962,0.84,0.999,1.194,0.604,0.848,1.064,1.415,0.709,0.823,1.57,0.814,0.538,1.124,0.995,1.58,2.079,1.368,0.665,0.947,0.874,1.04,1.071,1.098,1.067,1.054,1.127,0.913,0.992,1.095,0.928,0.746,1.11,0.945,1.037,0.874,0.941,2.127 +NM_018556,0.958,0.919,1.022,0.952,0.946,1.249,0.945,1.081,1.068,0.914,0.967,1.038,0.931,1.049,0.949,1.06,1.015,0.888,1.007,1.162,1.047,0.884,0.91,0.99,1.002,1.089,0.978,1.078,1.018,1.023,1.101,0.831,0.97,0.971,1.118,1.015,1.031,0.981,1.097,1.079,0.936,0.909,0.975,0.836,1.15,0.924,1.012,1.002,0.887,0.987,1.07,1.006,1.131,1.206 +NM_018557,0.893,1.026,1.079,0.99,0.843,1.053,0.945,0.988,0.978,1.003,1.013,1.013,1.103,0.996,0.952,1.231,1.001,1.089,0.978,0.922,0.926,1.157,0.927,0.987,1.075,1.169,1.181,1.039,0.938,1.024,0.996,0.978,0.946,0.986,0.949,0.996,1.084,1.177,1.081,1.021,1.051,1.098,0.898,0.969,0.85,0.918,0.975,0.962,0.804,1.04,1.032,0.895,0.945,0.962 +NM_018558,0.917,0.867,0.913,1.022,1.036,1.008,1.09,0.996,1.053,1.037,0.749,0.998,0.868,0.727,1.064,0.975,1.007,1.108,0.941,0.867,0.98,1.22,1.081,1.013,1.024,0.994,0.878,1.131,0.794,0.894,0.986,0.85,1.011,0.949,1.142,1.022,1.068,1.161,1.051,0.997,1.174,0.88,1.297,0.896,1.094,0.97,1.026,0.849,0.977,1.031,1.011,1.089,1.021,0.742 +NM_018559,1.017,0.948,0.796,0.94,0.936,0.936,1.044,1.083,1.038,0.908,0.936,0.966,1.016,0.913,1.382,1.157,0.967,1.105,1.035,1.031,1.209,1.012,0.922,1.078,0.952,0.905,0.952,1.011,0.783,1.013,0.992,0.969,1.148,1.107,0.98,0.98,1.047,0.93,1.045,0.967,1.031,1.063,1.009,1.081,0.958,1.296,1.053,0.963,1.063,1.031,0.94,0.97,1.004,0.926 +NM_018561,1.126,1.0,1.002,1.096,1.1,1.065,0.942,1.003,0.951,0.984,0.955,1.056,1.069,1.118,1.142,0.976,0.905,1.008,1.023,1.113,0.987,0.995,1.0,1.001,0.921,0.992,1.026,1.022,0.875,0.96,0.715,0.976,1.009,0.984,0.974,0.918,1.059,0.908,0.973,1.064,1.024,1.053,1.026,0.868,0.905,1.048,0.827,0.98,0.984,0.981,0.928,0.99,1.027,0.878 +NM_018568,0.949,0.986,0.954,1.068,1.101,1.089,0.995,0.959,0.898,1.191,1.108,1.063,0.985,0.966,1.022,0.981,1.062,1.093,0.893,0.901,1.061,0.924,0.946,0.955,1.023,0.958,0.992,1.038,0.83,0.979,0.983,1.07,1.015,0.915,1.066,1.038,0.992,1.175,1.085,1.011,0.859,1.051,0.892,1.1,1.017,0.895,0.964,0.955,1.116,1.016,1.011,1.116,1.174,1.0 +NM_018569,0.715,1.085,1.327,0.802,0.872,1.779,0.864,0.909,0.997,0.697,0.942,1.005,1.059,0.693,1.15,1.847,0.868,0.946,0.737,1.365,0.632,0.907,1.106,1.229,0.679,0.537,1.6,0.842,1.134,1.377,0.994,1.151,1.728,1.279,0.7,0.621,1.035,0.895,1.606,1.013,1.041,0.917,0.874,0.752,0.934,1.29,1.117,0.792,1.538,1.01,1.027,0.774,0.679,1.137 +NM_018571,1.908,0.588,1.089,0.933,1.969,1.081,0.49,2.577,3.592,0.796,1.418,1.427,2.038,2.041,2.154,2.824,0.917,1.026,1.713,1.063,0.745,2.324,1.096,1.194,0.516,2.468,0.936,2.77,0.567,0.816,3.149,0.618,1.432,0.785,8.043,0.817,1.968,2.237,0.615,0.682,1.033,1.297,1.356,0.731,0.983,1.106,1.052,2.995,1.498,0.731,1.005,0.705,0.735,1.313 +NM_018578,1.157,1.059,0.967,1.237,1.005,1.115,0.93,0.937,0.924,0.985,0.91,1.014,1.059,0.764,0.893,1.025,1.069,0.856,1.031,1.053,1.046,0.981,0.943,0.996,0.993,0.95,1.047,1.096,1.424,1.031,0.958,1.074,0.958,0.979,1.125,1.044,0.903,0.935,0.978,1.024,0.883,1.166,0.992,0.914,0.912,1.074,0.855,0.922,0.803,0.947,0.913,1.011,1.036,1.01 +NM_018579,0.96,0.955,0.908,1.162,0.927,1.095,0.848,0.888,0.984,0.957,0.915,0.956,0.956,0.936,1.039,1.276,1.045,0.881,0.931,0.969,1.03,0.9,1.033,0.976,0.94,0.998,1.126,0.981,1.042,1.031,1.01,1.401,1.04,0.965,0.919,0.879,1.168,0.924,1.059,1.29,1.081,0.99,1.344,1.036,0.998,1.024,0.964,0.937,1.237,0.942,1.019,1.085,0.999,0.98 +NM_018584,1.517,0.382,0.5,0.608,0.881,1.384,0.0979,1.148,1.859,0.307,3.905,0.573,1.112,1.287,1.895,3.273,0.323,0.742,1.038,1.462,0.329,1.016,2.117,0.614,0.191,1.254,0.432,1.096,0.0843,0.633,1.903,0.954,1.636,0.487,4.01,0.606,2.08,0.83,1.629,1.185,0.805,1.747,1.33,1.897,0.539,1.784,0.787,1.9,1.024,0.268,1.575,0.791,0.418,1.223 +NM_018589,1.195,0.948,2.745,0.476,1.269,0.465,0.349,1.246,1.778,1.026,0.521,1.242,1.333,1.227,1.146,1.102,0.872,0.54,3.095,0.603,0.924,1.308,0.724,1.508,0.724,1.802,2.798,1.554,0.324,0.72,1.416,2.599,1.738,0.595,1.042,0.596,0.616,2.113,0.829,1.246,1.819,1.008,0.549,1.424,1.251,0.387,0.992,2.05,0.737,1.605,0.525,0.748,1.464,1.414 +NM_018593,0.821,1.274,1.009,0.89,1.091,0.933,0.928,1.03,1.164,0.928,1.034,1.001,1.059,0.754,0.912,0.974,0.984,1.02,0.965,1.0,1.029,0.925,1.08,1.14,0.984,1.104,1.023,0.841,1.061,1.089,1.014,0.993,1.041,0.983,0.948,1.397,0.999,0.893,1.02,1.0,1.077,1.002,0.917,1.112,1.065,0.858,0.908,0.888,1.021,0.999,0.977,0.972,1.217,1.103 +NM_018602,1.131,1.09,0.823,1.018,0.682,1.162,1.568,0.524,1.144,0.869,1.205,0.583,0.529,0.538,0.982,1.421,0.818,0.704,0.774,1.423,1.846,0.536,1.549,0.826,0.976,1.182,0.829,0.907,0.767,1.619,1.032,0.792,0.944,1.533,0.518,0.69,1.048,0.914,1.554,0.579,2.204,1.137,0.737,0.723,0.816,1.446,0.897,0.793,1.289,0.612,1.227,0.671,0.8,1.248 +NM_018603,1.042,0.967,0.87,1.017,1.002,1.004,0.978,1.145,0.843,1.042,0.978,0.98,0.9,1.115,0.87,0.935,1.067,0.893,0.915,1.04,0.94,0.976,0.845,1.161,0.964,1.212,1.156,0.979,0.598,1.026,1.014,1.098,0.866,1.113,1.052,1.011,1.059,1.113,1.0,1.014,1.005,0.938,0.964,0.797,1.01,0.946,0.953,1.11,0.924,1.061,1.097,0.922,1.051,0.812 +NM_018608,1.052,0.954,1.085,0.904,1.087,1.042,0.809,0.893,0.897,0.969,1.064,1.028,1.086,0.737,1.039,0.931,0.915,1.104,1.151,0.82,0.997,0.914,0.993,1.071,0.926,0.92,0.846,0.998,0.915,0.975,0.959,1.203,1.119,0.878,1.081,1.029,0.856,1.051,1.025,0.901,0.97,0.902,1.058,1.059,1.061,0.991,1.201,1.084,1.076,1.01,1.099,1.096,1.007,0.956 +NM_018610,1.0,0.987,1.113,0.909,0.909,0.968,0.81,0.982,1.014,0.877,1.053,1.003,0.899,0.878,0.997,1.0,0.919,0.936,0.992,1.067,0.945,1.006,0.985,0.926,0.908,1.053,0.964,0.894,0.973,1.037,0.927,0.927,0.929,1.072,0.925,1.118,0.983,1.048,1.002,0.973,0.955,1.016,1.183,1.105,1.015,0.98,1.066,0.925,0.837,1.034,1.031,0.903,0.838,1.027 +NM_018622,0.601,1.02,0.928,0.694,0.73,1.07,0.566,0.519,1.079,0.901,1.345,0.871,0.641,0.554,0.995,1.853,0.777,0.986,1.129,0.906,0.516,0.772,1.185,1.06,0.618,0.771,1.165,0.723,0.511,1.537,0.737,1.914,2.63,1.364,0.189,1.416,1.143,0.756,1.534,0.747,1.04,1.141,0.742,1.838,0.931,1.004,0.933,0.686,1.114,0.656,0.868,0.917,1.197,2.153 +NM_018638,0.522,1.685,0.774,1.729,0.628,4.198,1.891,0.651,0.697,0.689,2.903,0.531,0.494,0.637,1.434,3.777,0.635,3.472,0.536,2.487,0.504,0.613,1.899,0.695,1.056,0.619,0.794,0.63,1.243,2.002,0.886,0.52,2.598,3.286,0.723,0.779,3.886,0.637,3.299,0.71,0.578,2.329,1.119,0.723,0.818,2.987,1.234,0.579,2.331,0.643,2.622,0.703,0.59,0.715 +NM_018639,0.729,0.753,1.252,0.621,1.04,1.73,0.545,0.89,1.238,0.862,1.001,1.541,1.115,0.619,1.079,1.817,0.819,1.136,1.317,1.055,0.327,1.247,0.948,1.344,0.541,0.625,1.091,1.24,0.62,1.274,1.108,0.888,0.819,1.648,0.728,0.546,1.293,1.386,1.239,1.086,1.068,0.978,0.434,0.515,1.084,1.223,1.101,1.255,0.999,0.854,1.011,0.742,0.637,1.236 +NM_018640,1.037,1.019,1.011,1.123,0.965,1.05,0.928,0.979,0.834,0.841,1.007,0.955,1.09,0.812,0.961,1.179,0.883,0.986,0.848,1.001,1.041,1.044,0.999,1.034,1.114,0.673,1.061,0.848,1.565,1.092,0.971,2.652,1.087,1.286,0.877,0.976,0.915,0.904,0.973,1.052,1.037,1.758,0.936,0.894,1.057,1.015,0.773,0.898,0.914,0.92,1.142,0.945,1.027,0.989 +NM_018643,1.142,0.891,0.965,1.431,0.92,0.753,0.751,1.001,0.948,1.068,0.871,1.028,0.997,1.096,1.374,1.019,1.06,0.867,0.973,0.818,0.805,0.941,1.157,0.901,0.827,0.867,1.07,0.892,1.085,1.025,0.844,2.117,1.166,0.796,0.874,0.863,1.018,0.836,1.6,10.12,0.829,1.055,1.052,1.199,1.329,0.99,1.055,0.998,0.894,0.928,1.05,2.005,1.051,1.371 +NM_018644,0.949,1.188,0.822,0.854,0.965,0.976,0.964,0.989,1.037,1.263,0.943,1.103,0.951,0.835,0.989,1.04,0.982,1.142,0.999,0.87,0.937,1.037,0.984,1.022,1.328,0.93,1.056,1.075,1.0,1.034,1.016,1.02,1.08,0.959,0.926,1.026,0.997,1.094,1.173,0.819,0.957,0.937,1.005,1.111,1.126,0.96,0.94,1.052,1.043,1.344,0.94,1.116,1.197,1.038 +NM_018645,0.979,1.141,0.938,0.973,0.977,1.388,0.72,0.872,0.772,1.016,1.544,1.034,0.809,0.834,0.976,1.714,0.849,0.884,0.954,1.151,0.924,0.761,1.588,0.76,1.019,0.856,0.865,0.999,0.939,1.019,0.857,0.974,2.216,1.065,0.957,1.019,1.108,0.951,0.994,0.891,0.969,1.288,1.39,1.679,0.994,1.291,1.106,1.004,1.247,1.054,1.308,0.974,0.95,1.751 +NM_018646,1.139,1.048,1.294,0.912,1.264,0.85,0.965,1.018,1.406,1.078,0.975,1.284,1.608,1.268,0.986,0.79,1.036,0.973,1.126,0.899,0.982,1.285,0.885,1.084,1.261,1.693,1.017,1.629,0.599,0.86,1.2,0.939,0.915,0.907,0.804,0.856,0.93,1.248,0.875,0.884,1.245,1.002,0.769,0.908,1.069,0.78,1.042,1.428,0.879,1.384,0.983,0.946,1.075,0.813 +NM_018647,2.2649999999999997,2.115,1.943,2.091,2.053,1.98,1.948,1.879,1.936,1.996,2.033,1.9940000000000002,1.948,1.9859999999999998,1.7930000000000001,1.895,2.011,1.891,2.058,1.832,1.959,1.835,1.9129999999999998,1.768,2.085,1.925,1.901,2.2199999999999998,1.68,2.067,1.923,2.227,2.066,1.925,1.974,2.005,1.934,1.896,2.158,2.16,2.191,2.028,1.7530000000000001,2.024,2.1959999999999997,1.99,2.0300000000000002,2.077,1.951,2.121,2.099,2.159,2.21,1.9980000000000002 +NM_018648,0.574,1.007,1.089,0.826,0.939,1.606,0.604,0.712,1.113,0.994,1.404,1.006,0.633,0.727,0.944,1.463,0.87,1.052,1.281,0.982,0.621,0.716,1.648,1.206,0.557,0.785,1.188,0.987,0.472,1.246,1.006,1.043,1.254,1.458,0.481,0.956,1.264,0.864,1.437,0.629,1.162,0.934,0.753,1.082,1.11,1.013,1.06,0.721,0.921,0.645,1.256,0.864,1.113,1.317 +NM_018649,1.314,1.045,2.686,0.913,1.548,0.573,0.624,0.976,2.509,1.873,0.673,2.032,1.663,1.246,1.109,0.917,2.113,1.355,2.224,0.967,1.283,2.037,0.664,2.421,0.579,1.373,3.457,1.403,0.438,0.782,1.889,1.353,4.55,1.427,0.417,0.802,0.625,1.61,0.561,0.856,1.97,0.834,0.471,0.484,2.213,1.205,1.043,1.708,0.99,1.561,0.777,0.802,1.898,0.81 +NM_018650,1.045,0.998,1.078,0.958,1.203,0.891,0.933,1.038,1.048,0.966,0.99,0.993,1.0,1.141,1.027,1.07,1.124,0.97,1.143,1.008,1.076,1.005,0.906,0.915,1.033,1.083,1.063,1.035,0.958,0.971,1.007,0.851,1.144,0.977,1.134,0.974,1.071,1.033,1.073,0.918,1.198,1.111,1.134,0.923,1.128,0.856,0.965,0.955,0.979,0.959,0.932,0.946,1.086,0.94 +NM_018652,1.163,1.038,1.059,1.084,1.016,0.807,1.164,1.164,0.989,0.978,1.035,0.954,0.954,1.08,0.868,1.051,0.987,0.886,0.888,1.107,1.09,0.947,0.908,1.002,1.076,1.088,0.998,1.123,1.106,1.025,1.103,0.988,0.914,0.974,0.972,1.014,0.986,0.901,0.985,0.952,1.062,0.997,1.225,0.905,0.939,1.004,0.988,1.071,0.967,1.027,1.062,1.01,1.041,1.058 +NM_018654,0.977,0.92,0.897,1.068,1.067,0.993,1.172,0.944,1.062,0.935,1.027,0.995,0.905,0.926,1.029,1.044,0.987,0.968,0.975,1.044,0.892,0.844,0.79,0.897,0.962,1.209,0.916,1.053,0.728,1.091,1.057,0.926,0.992,0.968,1.01,0.915,0.833,0.933,1.004,1.004,0.919,1.026,1.009,0.904,1.154,0.875,1.084,1.034,0.942,1.01,0.988,0.924,1.137,0.923 +NM_018655,0.94,0.993,1.042,1.189,1.076,0.965,1.212,1.239,1.086,0.978,0.954,1.032,0.908,0.991,1.022,1.136,1.037,1.008,0.975,1.09,0.916,1.134,0.988,1.126,1.04,0.982,1.024,0.866,1.075,1.036,1.038,0.969,1.109,1.068,1.008,0.954,0.991,1.088,1.003,0.993,1.064,1.071,0.971,1.085,1.013,1.021,0.905,0.951,1.065,1.091,0.98,1.052,1.074,1.045 +NM_018656,0.822,0.999,1.57,0.787,1.123,1.006,0.783,0.889,1.198,1.13,0.902,1.009,0.964,0.822,0.887,1.268,0.944,1.023,1.493,1.016,0.66,1.035,1.041,1.025,0.656,0.844,1.346,1.07,0.646,1.097,0.927,1.162,1.255,1.342,0.494,0.885,1.021,1.222,0.841,0.827,1.157,0.897,0.653,0.637,1.092,0.97,0.972,0.979,0.595,0.807,1.128,0.81,1.049,1.562 +NM_018657,0.879,0.921,1.182,0.809,0.914,1.096,0.694,1.02,1.056,0.787,1.298,0.999,0.987,0.825,1.09,1.15,0.915,0.89,1.297,1.001,0.709,0.765,1.002,1.201,0.778,0.865,1.247,0.959,0.629,1.291,1.001,1.378,1.471,1.275,0.77,0.903,1.21,0.921,1.082,0.818,1.01,0.913,0.652,1.046,0.882,0.932,1.114,0.801,0.763,0.778,0.944,0.879,0.982,2.608 +NM_018659,1.009,0.978,0.854,1.001,0.902,1.163,1.046,1.015,0.782,0.933,1.052,0.784,0.95,1.016,0.875,1.239,0.977,0.841,1.007,0.817,1.068,1.116,1.322,0.941,0.992,0.783,1.132,1.037,0.927,1.313,0.906,1.377,0.89,0.997,1.038,1.13,0.977,0.965,1.003,1.463,1.157,1.513,0.939,0.928,0.873,0.87,0.992,0.986,0.937,0.956,0.946,1.3,0.826,0.931 +NM_018660,1.036,0.585,2.039,0.688,0.992,0.802,0.672,0.765,1.239,0.861,0.75,0.714,0.867,1.25,1.43,0.941,1.222,1.338,2.231,0.931,1.003,1.291,0.782,1.165,0.619,1.429,1.16,1.321,0.67,1.015,1.314,0.97,0.947,1.46,0.52,0.468,0.881,1.145,0.77,1.013,1.386,1.122,0.429,0.575,1.255,0.636,0.997,1.056,0.568,1.02,0.808,0.721,1.899,0.965 +NM_018661,2.023,0.897,3.847,0.835,10.36,0.951,0.793,9.16,1.141,1.181,0.79,2.545,0.99,0.815,1.52,10.83,2.762,1.204,3.024,0.799,3.448,1.011,0.826,0.83,0.82,0.977,5.511,0.855,0.814,0.898,1.163,0.884,15.64,0.853,1.859,0.849,0.886,11.91,1.081,0.834,33.94,0.795,0.864,0.767,4.859,0.749,8.466,2.066,1.027,9.999,1.747,3.078,2.391,1.339 +NM_018662,1.088,1.127,1.001,0.907,0.83,1.01,1.11,0.958,0.905,0.995,0.826,0.956,1.086,0.999,0.824,1.119,0.953,0.987,0.862,1.019,0.97,0.922,1.107,0.978,1.112,1.013,0.998,0.977,1.128,1.215,0.951,1.343,1.065,1.049,0.99,0.963,1.042,0.994,1.009,1.151,0.977,1.24,1.28,1.117,0.906,0.984,0.867,1.041,0.983,1.112,0.933,1.039,1.287,0.983 +NM_018663,0.62,1.683,0.635,1.161,0.632,2.013,0.822,0.376,0.656,0.55,2.277,0.67,0.659,0.427,1.001,2.67,0.501,1.311,0.806,1.225,0.463,0.704,1.583,0.668,2.754,0.806,0.695,0.506,1.016,2.338,0.541,0.999,1.644,3.084,0.254,0.887,2.107,0.715,2.164,0.419,0.56,1.797,1.342,1.316,0.559,1.433,0.797,0.732,0.94,0.509,1.339,0.617,0.499,0.802 +NM_018664,0.991,1.073,1.015,0.943,0.894,0.849,1.021,0.762,1.02,0.966,1.021,1.04,0.928,0.847,1.112,0.998,1.049,0.894,1.067,0.856,0.936,0.93,1.03,0.897,1.011,0.909,0.897,0.961,0.759,1.087,0.864,1.445,1.414,1.071,1.047,1.133,1.011,0.886,1.144,2.325,1.04,1.128,1.182,1.087,0.867,0.919,0.838,0.827,0.953,0.917,0.968,1.169,1.097,1.268 +NM_018667,0.923,0.985,0.885,0.97,0.848,1.334,1.055,1.047,1.056,1.004,1.112,0.949,0.955,0.788,0.942,1.112,0.925,1.179,0.988,1.08,0.764,0.925,1.104,0.79,1.13,0.996,0.897,0.831,0.985,1.021,1.11,0.925,0.811,1.242,0.932,1.039,1.11,0.8,1.589,0.903,0.788,1.267,0.983,0.978,0.904,1.281,1.01,0.967,1.019,0.825,1.059,0.92,0.944,0.906 +NM_018668,0.834,0.9,1.031,0.892,0.877,1.195,0.928,0.656,1.075,0.998,1.013,0.811,0.67,0.782,1.087,1.216,1.025,0.951,1.183,1.008,0.798,0.892,1.308,1.028,0.829,0.85,1.142,0.831,1.175,1.014,0.829,1.108,1.251,1.166,0.645,1.04,1.12,0.874,1.534,0.887,0.909,1.132,0.734,1.065,1.128,0.963,0.963,0.82,1.037,0.873,1.128,0.839,0.928,1.021 +NM_018670,0.837,1.09,0.956,0.952,0.909,0.844,0.752,1.041,0.934,0.904,1.084,1.057,0.876,0.9,1.232,2.291,0.748,0.973,0.883,1.888,0.819,1.001,1.156,0.95,0.862,1.006,0.795,1.086,0.652,0.91,0.959,1.24,1.679,0.889,0.808,0.943,1.287,1.357,0.893,0.917,1.074,1.004,0.854,0.999,1.025,1.37,1.368,0.875,3.771,0.803,0.945,1.176,0.786,2.119 +NM_018671,0.978,0.986,1.13,0.799,1.0,0.982,0.548,0.61,1.099,1.168,0.796,1.025,0.745,0.698,0.905,0.978,1.076,1.013,1.315,0.838,1.023,1.238,1.39,1.071,0.637,1.343,1.196,0.877,0.583,0.978,0.864,0.898,0.95,0.994,0.367,1.097,0.752,1.554,1.529,0.952,0.973,0.972,0.682,0.857,1.233,0.896,0.875,1.088,0.839,1.139,0.866,0.818,1.012,1.046 +NM_018674,1.066,0.968,0.967,1.073,0.973,1.002,1.222,0.998,0.983,1.125,1.156,1.058,0.932,0.807,0.802,0.981,0.984,0.964,0.918,0.959,1.023,1.031,1.115,1.01,0.971,1.071,1.087,1.185,1.199,0.97,1.056,0.98,0.863,0.952,0.932,1.133,0.995,0.869,0.909,0.929,1.171,1.232,1.086,1.054,0.989,0.98,1.201,1.153,1.201,1.04,0.872,0.98,1.034,1.02 +NM_018675,0.826,0.995,1.124,0.857,0.801,1.228,1.085,0.771,0.91,0.962,1.138,0.966,1.025,1.044,0.967,1.085,0.953,0.877,0.694,1.269,0.915,0.924,0.837,1.009,1.059,0.936,1.009,1.007,0.982,0.964,0.932,1.138,1.264,1.014,1.011,1.116,1.015,0.855,0.98,1.183,0.995,1.149,0.971,0.908,0.93,1.019,0.911,0.869,0.821,0.857,0.994,1.212,1.006,1.137 +NM_018676,0.95,0.9,1.304,0.891,1.061,1.07,0.82,0.806,0.972,1.023,0.942,0.79,0.826,0.914,0.945,0.98,1.153,1.012,1.09,0.981,0.832,0.933,1.12,1.012,0.964,0.741,1.265,0.785,0.848,1.109,0.856,1.531,1.53,1.205,0.856,1.094,0.926,0.877,1.035,1.165,0.953,1.066,0.899,1.232,1.087,1.004,1.116,0.932,0.883,0.99,0.972,1.401,1.299,1.557 +NM_018677,0.917,0.956,0.829,0.96,0.915,1.196,1.035,0.843,1.055,1.051,1.161,0.883,0.946,1.062,0.962,1.281,1.079,1.04,1.053,0.951,0.909,0.876,1.075,1.008,0.921,1.0,0.979,0.988,0.99,1.128,0.846,1.016,1.044,1.028,0.937,1.143,1.085,1.074,1.087,1.081,0.896,0.934,1.151,1.014,1.057,0.971,1.277,0.972,1.145,1.037,1.002,0.974,0.907,1.048 +NM_018679,0.986,0.946,1.128,0.995,0.879,0.91,1.13,0.939,0.97,1.14,1.071,0.952,1.004,1.031,1.122,1.062,0.981,1.023,1.033,1.117,1.161,0.869,1.028,0.964,0.969,0.952,1.045,0.881,0.853,0.95,1.057,0.96,1.081,0.965,1.004,0.982,0.915,0.988,0.991,0.967,0.975,1.045,0.855,1.052,0.95,1.012,1.091,1.002,0.928,1.087,1.099,0.954,1.146,1.066 +NM_018682,0.986,0.927,1.225,0.873,0.993,0.987,0.908,0.761,1.065,1.015,0.919,0.834,0.766,0.912,1.233,0.94,0.842,0.961,0.86,1.044,0.786,0.848,1.41,0.774,0.758,0.835,1.167,1.034,0.575,1.2,0.971,1.349,1.103,1.076,0.787,0.82,0.963,0.869,1.035,1.072,1.036,1.172,0.863,1.288,0.995,0.916,0.926,0.848,0.901,1.048,1.104,0.943,1.062,1.461 +NM_018683,0.42,1.205,1.006,0.564,0.628,1.806,0.77,0.391,0.866,0.625,1.244,0.698,0.455,0.499,0.994,1.597,0.697,0.852,0.716,1.364,0.352,0.717,1.886,0.802,0.567,0.511,1.03,0.741,0.449,2.157,0.751,3.01,1.259,1.568,0.202,0.84,1.556,0.804,1.217,1.505,0.73,1.253,0.721,0.858,0.628,1.414,0.913,0.413,1.176,0.458,1.333,1.271,0.415,3.006 +NM_018684,0.849,1.044,1.001,0.978,0.853,1.255,0.778,1.023,0.822,0.933,1.047,0.906,0.908,0.922,0.823,1.012,0.938,0.879,0.931,1.087,0.886,0.891,1.064,0.951,0.942,1.054,0.885,1.075,0.676,1.162,1.0,1.235,1.289,1.041,0.929,1.013,0.993,0.987,1.047,1.01,0.873,1.127,1.121,1.069,0.952,1.031,0.964,0.889,1.005,0.96,0.984,0.878,1.08,0.987 +NM_018685,0.72,0.853,1.46,0.911,1.058,0.877,0.806,0.716,1.29,1.164,0.762,0.987,0.781,0.792,0.939,1.303,0.845,1.081,1.205,0.738,0.826,0.866,2.14,1.274,0.537,0.778,2.518,0.863,0.83,0.969,1.018,1.355,4.498,0.943,0.507,1.498,0.787,1.031,1.809,0.945,1.005,0.744,0.821,1.453,1.079,0.873,1.192,0.743,1.214,0.993,1.215,1.21,0.904,4.26 +NM_018686,1.213,0.578,1.195,0.895,1.833,0.792,0.508,0.755,1.844,1.357,1.372,0.823,0.997,0.998,1.321,2.535,0.881,1.048,1.576,0.88,0.71,1.25,0.766,1.612,0.401,1.415,1.132,1.649,0.344,0.726,1.489,0.307,1.856,0.929,0.904,1.231,1.433,1.191,0.904,0.51,1.509,0.819,1.252,1.045,1.298,1.545,1.247,1.246,1.189,0.874,1.043,0.543,0.978,0.74 +NM_018687,1.064,1.036,1.066,1.108,1.058,0.983,0.941,0.879,1.042,1.05,1.04,1.025,0.913,1.054,0.945,0.891,1.018,1.029,0.962,0.925,0.95,1.124,0.905,0.915,1.08,1.011,1.151,1.023,1.055,1.015,0.937,0.988,0.822,0.911,0.97,0.886,1.139,1.132,1.027,0.989,1.032,0.898,0.991,0.906,0.954,0.966,0.954,1.039,1.08,1.035,0.972,0.984,1.112,0.937 +NM_018688,0.834,0.798,0.924,1.157,0.74,1.583,1.121,0.554,0.93,0.942,1.194,0.699,0.711,0.571,0.909,1.241,0.737,1.261,0.956,1.173,0.544,0.827,1.253,0.943,0.964,0.969,0.971,0.724,0.852,1.55,0.703,1.393,1.061,1.853,0.505,0.737,1.177,0.75,1.503,0.711,0.907,1.206,0.914,1.081,0.921,1.209,0.942,0.805,1.143,0.777,1.148,0.831,1.025,1.144 +NM_018689,0.903,1.173,2.876,0.748,0.93,0.815,0.703,0.755,1.043,3.324,0.719,0.766,0.76,0.793,1.033,0.709,2.122,0.817,1.279,0.775,0.752,0.989,1.606,1.519,0.585,0.747,3.571,0.891,0.522,1.218,1.213,1.972,5.494,0.758,0.641,1.128,0.86,1.253,4.169,5.785,1.189,1.011,0.749,6.009,1.958,0.675,1.507,0.879,0.745,2.144,1.028,3.185,1.601,2.918 +NM_018693,0.976,1.003,1.001,0.92,1.057,1.001,0.828,0.819,1.16,1.137,0.819,1.064,0.948,1.049,1.134,0.999,1.003,0.928,1.125,1.0,0.936,1.191,1.025,1.097,1.004,0.848,1.298,1.044,1.65,0.903,0.929,0.96,1.578,0.926,1.046,0.908,0.952,1.079,0.864,1.194,1.003,0.945,0.8,1.133,1.052,1.099,0.971,0.969,1.098,1.022,0.908,1.078,1.057,1.271 +NM_018694,1.5979999999999999,1.89,2.158,1.7389999999999999,1.963,2.154,1.661,1.5150000000000001,1.831,1.994,1.948,2.24,1.784,1.629,1.805,2.6609999999999996,1.868,2.1630000000000003,1.9969999999999999,2.223,1.4329999999999998,1.6549999999999998,2.175,1.988,1.803,1.8159999999999998,2.056,2.088,1.349,1.737,1.887,2.417,2.063,2.501,1.19,2.121,2.04,1.8940000000000001,2.154,1.798,2.075,2.224,2.185,1.8010000000000002,1.931,1.9929999999999999,2.254,1.861,1.9849999999999999,1.833,2.216,2.02,2.003,2.1159999999999997 +NM_018695,0.574,1.063,1.255,0.772,0.863,1.326,0.789,0.566,1.107,0.8,0.764,0.635,0.478,0.72,1.497,1.31,0.812,0.982,1.255,1.355,0.648,0.515,1.197,0.762,0.668,0.638,1.175,0.868,0.497,1.677,0.948,1.175,1.434,2.094,0.559,0.865,1.323,0.679,1.198,0.678,1.095,1.002,0.398,0.729,0.832,1.19,0.995,0.514,0.876,0.624,1.029,0.746,1.07,1.818 +NM_018697,0.821,0.904,1.08,0.87,0.93,0.897,0.723,0.812,0.957,0.909,1.036,0.789,0.801,0.775,1.053,1.119,0.796,0.814,1.104,1.041,0.846,0.794,1.547,0.928,0.724,1.07,0.951,0.925,0.953,1.009,0.921,1.021,1.447,1.311,0.549,0.988,0.984,0.738,0.985,16.47,1.071,1.215,0.902,1.503,1.179,1.101,0.903,0.752,1.037,0.796,1.113,1.008,1.071,1.791 +NM_018698,0.681,1.2,1.366,0.663,1.035,1.352,0.949,1.087,1.3,0.847,0.935,1.113,1.015,0.953,0.998,1.802,0.953,1.156,1.269,1.131,0.597,1.164,0.953,1.22,0.701,0.682,1.481,1.04,0.851,0.949,1.02,1.033,1.313,1.196,0.455,0.654,1.077,1.128,1.246,0.742,1.094,0.899,0.836,0.762,1.0,0.982,0.982,0.952,0.965,0.696,0.954,1.006,0.601,1.216 +NM_018699,0.977,1.133,1.008,1.03,0.972,1.038,0.987,1.014,0.999,0.869,0.837,0.98,0.97,0.934,0.845,1.001,1.013,1.116,0.97,0.981,0.912,0.988,0.9,1.059,1.035,1.074,1.067,1.11,1.516,1.011,0.962,1.103,1.038,1.058,0.9,0.994,1.117,1.234,1.148,0.962,0.869,1.014,0.986,0.944,1.113,0.866,0.883,0.982,1.052,1.057,0.985,0.838,1.068,1.138 +NM_018700,0.971,0.907,1.049,1.186,0.968,1.143,0.827,1.021,0.948,0.915,1.127,0.92,1.049,0.982,0.965,1.298,0.983,0.846,1.201,1.076,1.0,0.885,1.04,0.96,0.879,0.98,0.974,1.0,0.863,0.875,1.022,0.94,1.151,0.864,0.99,1.076,1.066,1.022,1.006,0.871,0.937,0.963,1.146,1.102,0.971,1.213,1.013,0.979,1.046,0.884,1.187,1.023,1.052,0.97 +NM_018702,1.024,1.135,0.888,1.089,1.081,0.959,0.984,0.908,1.109,1.04,1.064,1.155,0.998,0.884,0.956,0.855,1.079,1.007,0.981,0.982,0.827,1.146,1.115,0.999,1.054,0.99,0.937,1.067,0.884,1.07,0.996,0.984,1.131,1.154,1.114,0.745,0.878,0.898,1.03,0.924,1.027,1.106,0.925,1.036,1.039,0.857,1.189,1.057,1.008,1.001,0.892,0.959,1.029,0.944 +NM_018704,0.974,0.831,1.21,0.818,1.448,0.975,0.79,1.116,1.511,1.208,0.979,0.994,1.015,0.998,1.052,1.113,1.131,1.037,0.97,0.931,0.987,0.929,0.977,0.997,0.834,0.875,1.069,1.285,0.735,0.884,1.188,0.975,1.701,0.981,1.62,0.995,1.077,0.968,1.111,0.906,1.062,0.919,0.742,1.006,1.081,0.959,1.046,1.145,1.024,1.181,0.977,1.03,1.211,1.075 +NM_018706,0.902,0.948,0.939,0.819,0.94,1.247,0.741,0.683,0.941,1.065,0.843,0.763,0.723,0.81,0.884,0.961,0.987,1.082,1.097,0.978,0.689,1.089,1.266,0.912,1.027,0.878,1.331,0.749,0.765,1.345,0.82,1.43,1.283,1.215,0.555,0.646,1.121,0.996,1.49,0.809,0.908,1.242,0.928,1.396,0.86,1.13,1.013,0.81,0.943,0.964,1.031,0.727,0.83,1.111 +NM_018708,1.052,0.988,1.504,0.82,0.952,0.867,0.481,0.669,1.093,1.158,0.774,1.082,0.769,0.846,0.866,0.945,1.25,0.757,1.43,0.731,0.691,1.387,1.265,1.369,0.794,1.328,1.379,1.017,0.461,0.824,1.137,1.163,1.323,0.935,0.4,0.874,0.698,1.401,1.153,1.0,1.338,0.957,0.677,1.273,1.526,0.718,0.805,1.023,0.845,1.365,0.92,0.764,1.0,1.804 +NM_018710,0.99,1.095,0.817,0.924,1.029,1.301,0.961,0.895,0.934,0.88,1.345,0.891,0.99,0.979,1.042,1.462,0.898,0.992,0.947,1.024,0.846,0.933,0.943,0.873,0.992,0.957,0.957,1.003,0.904,1.145,0.902,1.499,1.248,1.239,0.822,1.147,0.913,0.914,1.233,1.41,0.964,1.196,0.946,1.029,0.863,1.096,1.005,0.889,0.935,0.803,0.954,0.932,0.994,1.227 +NM_018711,0.902,1.006,0.96,0.786,0.999,0.952,1.032,1.133,0.882,1.027,1.087,1.032,0.958,0.926,1.018,0.897,1.093,1.211,1.122,0.954,0.884,0.956,0.98,0.959,0.941,0.898,0.912,0.988,1.155,1.052,1.0,1.047,1.035,1.142,0.929,1.003,1.07,0.829,1.056,0.963,1.077,1.045,0.916,1.037,1.065,1.147,1.039,0.859,0.984,0.997,1.017,1.035,0.772,1.01 +NM_018712,1.034,0.953,0.842,0.896,0.963,0.987,1.18,1.151,1.043,0.913,1.022,1.031,0.927,0.973,0.989,1.006,0.9,0.985,1.056,0.874,1.055,0.951,0.968,1.102,1.0,1.018,1.02,1.012,0.902,1.102,1.022,1.031,0.856,0.986,0.964,1.006,1.075,1.002,1.047,1.031,1.088,0.901,0.912,0.985,0.916,0.913,1.046,1.021,0.978,1.07,1.065,0.906,0.937,1.032 +NM_018713,1.111,0.942,0.911,1.104,1.062,1.141,1.028,1.024,1.002,0.988,0.83,0.936,0.968,1.03,1.05,1.034,0.922,0.947,0.864,1.002,0.902,0.945,0.932,0.94,1.028,1.068,1.051,0.923,0.988,0.926,0.994,1.108,0.909,0.988,0.917,1.039,1.147,0.928,1.083,1.107,0.987,1.193,1.102,0.919,0.961,1.027,1.036,1.002,1.022,0.985,1.043,0.836,1.01,0.955 +NM_018714,0.665,0.997,0.993,0.826,0.762,1.3,0.826,0.581,0.801,0.772,1.085,0.681,0.499,0.689,0.931,1.151,0.858,0.846,0.791,1.205,0.647,0.726,1.16,0.749,0.828,0.676,1.025,0.596,0.614,1.422,0.831,1.458,1.163,1.611,0.537,0.742,1.085,0.811,1.238,0.779,0.815,1.254,0.837,1.106,0.751,1.163,0.739,0.627,0.886,0.651,1.356,0.703,0.932,1.369 +NM_018717,0.824,1.0,1.035,1.009,1.008,1.084,0.966,1.12,1.158,1.128,1.038,0.898,1.071,1.0,0.883,1.151,0.966,1.111,1.106,0.933,0.95,1.072,0.953,0.922,1.061,0.82,0.95,1.037,0.895,1.148,0.862,0.953,1.288,0.761,0.9,0.934,1.104,1.039,0.955,0.94,1.149,0.88,0.87,0.938,1.138,1.237,1.005,1.158,0.992,0.971,1.051,0.942,1.058,0.881 +NM_018718,0.95,1.01,1.007,0.903,0.908,0.95,1.084,0.893,1.02,0.922,1.184,0.852,0.838,1.073,1.114,1.07,0.903,0.933,1.059,0.987,0.867,0.91,1.096,0.927,0.963,0.835,1.053,0.755,0.767,1.44,0.899,1.139,1.734,1.161,0.736,0.934,0.909,0.968,1.144,0.888,0.989,1.21,0.817,1.265,0.762,1.003,0.837,0.899,0.976,0.925,1.159,1.088,1.008,1.371 +NM_018719,0.678,2.282,0.955,0.894,0.763,1.05,0.841,0.608,0.711,0.974,0.929,1.005,0.668,0.658,0.795,0.74,0.589,1.003,0.895,1.146,0.639,0.863,2.063,0.968,1.47,0.907,1.127,0.671,0.8,2.164,0.587,1.987,4.15,1.906,0.355,2.054,1.128,0.992,1.673,0.88,0.946,1.286,0.663,3.37,0.781,1.001,0.913,0.834,0.989,0.709,1.287,0.833,0.807,1.96 +NM_018722,1.021,1.089,1.012,1.087,0.945,0.883,1.044,1.0,1.033,1.083,0.756,0.913,0.935,1.016,1.028,0.919,0.951,1.057,1.057,1.168,0.981,0.936,0.867,0.954,0.969,0.991,1.134,0.95,1.05,1.047,0.96,1.043,1.019,1.001,1.138,0.938,0.927,1.017,0.928,0.95,0.972,1.047,0.776,1.026,0.894,1.075,0.866,1.046,0.942,0.999,0.986,0.895,0.902,0.902 +NM_018723,1.902,1.912,1.9140000000000001,2.023,2.225,2.1319999999999997,1.9929999999999999,1.72,1.9180000000000001,2.097,2.013,1.8729999999999998,2.0629999999999997,1.771,2.172,1.8639999999999999,2.045,1.932,2.1100000000000003,1.865,2.267,1.934,1.975,1.9380000000000002,1.903,1.796,1.834,1.828,3.333,2.115,2.284,1.873,1.873,1.988,2.2270000000000003,2.162,1.937,2.157,1.857,1.9819999999999998,1.947,1.914,2.169,1.786,2.013,1.9020000000000001,2.122,2.036,2.174,2.278,1.986,1.849,2.059,1.927 +NM_018724,1.008,1.193,0.948,0.932,1.025,1.006,0.942,1.354,0.977,0.924,1.047,0.848,0.887,1.107,0.968,0.881,0.928,0.898,0.927,1.012,0.94,1.101,1.024,1.103,1.352,1.091,0.954,0.926,0.905,0.981,1.123,0.991,1.183,0.986,0.929,0.964,0.995,1.084,0.921,1.107,0.916,1.01,1.339,1.012,0.987,0.902,0.803,0.89,0.834,1.126,0.883,0.915,0.868,1.026 +NM_018725,0.721,1.75,0.735,0.795,0.775,1.116,1.246,0.658,0.789,0.691,2.568,0.704,0.65,0.557,1.018,1.603,0.683,0.818,0.708,1.254,0.584,0.661,1.773,0.76,0.923,0.673,0.714,0.677,1.198,0.872,0.638,1.143,4.915,1.472,0.68,1.383,1.436,0.708,3.049,1.771,0.674,1.168,1.07,1.818,0.671,1.003,0.958,0.605,1.604,0.623,1.169,1.229,0.608,2.741 +NM_018727,2.064,1.9020000000000001,2.0500000000000003,2.105,1.914,2.015,2.351,1.9169999999999998,2.323,2.252,2.1029999999999998,2.054,2.0949999999999998,1.657,1.95,1.929,2.053,2.12,1.92,2.0220000000000002,2.048,2.298,1.865,2.092,2.393,2.02,1.865,1.863,1.667,2.034,1.928,2.108,1.919,2.0709999999999997,2.026,2.07,2.085,1.71,1.897,2.191,2.185,2.122,1.814,1.967,1.928,1.8679999999999999,2.003,2.005,2.106,1.9289999999999998,2.101,1.9860000000000002,2.252,1.95 +NM_018728,0.51,2.852,0.686,1.277,0.415,2.454,1.092,0.314,0.565,0.533,1.824,0.508,0.389,0.439,1.212,1.322,0.485,1.165,0.585,1.801,0.434,0.409,2.703,0.489,1.134,0.532,0.688,0.433,0.72,2.73,0.77,0.782,0.655,2.431,0.243,0.68,1.55,0.517,2.28,0.437,0.922,1.846,0.889,0.871,0.56,1.241,0.52,0.392,1.094,0.54,1.918,0.659,0.413,2.558 +NM_018833,1.144,0.975,0.886,1.109,1.056,1.065,1.074,1.223,1.096,0.989,0.955,0.924,1.109,0.983,0.937,1.111,0.932,0.811,1.011,0.924,1.149,1.172,1.099,1.033,0.962,0.941,0.97,0.93,0.846,0.951,0.952,1.156,1.105,0.944,0.838,0.965,1.0,1.07,1.029,0.98,0.919,1.036,0.873,1.054,1.084,0.981,0.994,0.961,1.105,0.976,0.832,0.889,1.069,1.139 +NM_018834,0.736,1.126,1.418,0.655,0.937,1.356,0.791,0.596,1.149,0.923,1.268,1.06,0.915,0.623,0.897,1.856,0.679,0.897,1.123,0.983,0.512,1.116,1.34,1.117,0.679,0.655,1.625,0.902,0.485,1.462,0.963,1.104,3.905,1.615,0.233,0.617,1.274,1.062,1.457,0.797,1.083,1.196,0.665,1.009,1.008,0.97,0.815,0.903,0.924,0.769,0.925,0.868,0.746,1.765 +NM_018835,0.771,1.074,1.199,0.632,0.948,1.127,0.938,0.822,1.393,1.039,0.858,0.911,0.64,0.811,1.321,1.24,0.9,0.991,1.171,0.882,0.743,0.89,1.174,1.17,0.645,0.759,1.256,0.987,0.642,1.189,1.216,1.268,1.561,1.143,0.713,0.655,1.076,1.042,1.171,0.92,1.238,0.947,0.693,0.796,0.971,0.88,0.977,0.715,0.912,0.913,1.105,0.936,1.037,1.201 +NM_018836,0.901,1.042,0.907,1.005,1.035,1.022,1.12,0.951,0.921,0.999,1.146,1.056,0.875,1.032,1.1,1.03,0.973,0.969,0.934,1.035,0.965,0.93,1.0,1.053,1.066,0.987,0.956,0.947,1.007,0.91,1.048,0.967,1.002,0.872,0.86,0.887,0.942,1.109,0.968,0.972,0.971,0.939,0.801,1.08,0.932,0.828,1.139,1.147,0.951,1.0,1.032,0.95,1.197,0.989 +NM_018837,1.042,0.977,1.237,1.0,0.86,0.911,0.883,0.973,1.298,1.017,0.823,0.813,1.037,0.968,1.022,1.226,1.155,0.871,0.975,1.018,0.806,1.089,1.321,1.227,0.861,0.823,1.012,1.184,0.797,1.125,1.292,2.972,1.217,0.886,1.004,1.01,0.985,1.255,1.061,1.198,1.134,0.975,1.021,0.98,1.073,1.023,1.385,0.974,1.015,1.063,1.143,1.073,0.866,1.508 +NM_018838,0.514,0.744,0.961,0.712,0.775,1.082,0.625,0.27,1.062,0.983,1.639,0.399,0.432,0.594,0.834,1.915,0.787,1.03,1.243,1.14,0.553,0.495,1.627,0.816,0.52,0.808,1.218,0.818,0.296,0.736,0.784,1.2,1.509,1.542,0.0916,1.515,1.083,0.818,1.744,0.522,1.129,1.28,0.707,0.977,0.935,1.035,0.999,0.647,1.179,0.659,1.284,0.893,1.001,1.865 +NM_018840,1.277,0.467,1.195,0.942,1.267,0.791,0.418,1.07,1.412,1.146,0.851,0.97,1.28,0.814,0.972,1.484,1.19,1.202,1.748,0.491,0.628,1.053,0.999,1.434,0.321,1.437,0.988,1.4,0.27,0.842,1.454,0.757,1.295,0.753,1.99,0.558,1.088,1.181,1.369,0.91,1.328,0.62,0.582,1.891,1.309,0.709,1.265,1.467,0.862,1.098,0.878,1.143,1.064,1.134 +NM_018841,1.076,0.939,0.984,0.7,1.522,1.259,0.497,0.629,1.86,1.14,0.947,0.715,0.808,0.866,1.214,1.568,1.191,0.975,1.195,1.014,0.512,0.759,1.0,1.201,0.585,1.009,1.111,1.268,0.298,0.997,1.66,1.196,1.339,1.048,1.652,0.468,1.273,1.12,1.624,0.528,1.486,0.76,0.973,0.693,0.955,1.616,1.497,1.0,1.595,0.882,1.013,0.641,0.859,1.09 +NM_018842,0.771,0.782,0.97,0.811,0.939,1.416,0.719,0.645,1.312,0.881,1.161,0.587,0.5,0.998,1.352,1.169,1.219,0.804,1.157,0.744,0.512,0.914,1.335,1.026,0.54,0.847,0.823,1.06,0.633,1.49,1.241,0.802,1.621,1.243,2.582,0.725,0.964,0.659,1.757,0.704,0.919,0.815,1.425,2.16,0.954,0.985,1.378,1.119,1.476,0.728,1.171,0.906,1.111,1.224 +NM_018844,0.93,0.705,1.475,0.602,1.554,0.99,0.655,0.951,2.001,1.079,0.864,0.703,0.824,1.307,1.135,1.177,1.255,0.96,1.486,0.865,0.746,1.143,1.153,1.476,0.615,0.947,1.628,1.474,0.456,0.947,1.663,0.993,1.639,1.024,1.465,0.697,0.695,1.23,1.188,0.792,1.313,0.773,0.713,0.902,1.043,0.975,1.463,1.131,0.876,0.966,1.01,0.76,1.004,1.254 +NM_018845,0.565,1.198,0.645,0.976,0.614,1.88,1.011,0.398,0.765,0.727,1.668,0.526,0.494,0.419,0.897,1.453,0.632,1.471,0.853,0.941,0.42,0.558,1.262,0.779,1.001,0.719,0.761,0.593,1.05,2.495,0.462,1.739,1.018,1.772,0.333,1.104,1.591,0.628,1.908,1.066,0.708,1.077,0.806,1.498,0.67,1.578,0.999,0.576,1.272,0.612,1.206,0.944,0.571,1.099 +NM_018846,0.848,1.079,1.105,0.893,1.046,1.189,1.007,0.844,1.114,0.966,0.993,0.819,0.856,1.148,1.016,1.267,0.916,1.043,0.867,1.07,0.941,0.779,1.081,1.013,0.93,0.917,1.119,1.044,0.54,1.031,1.004,1.363,1.778,1.254,0.903,0.92,0.889,1.099,0.976,0.881,1.156,1.1,1.093,0.907,0.854,1.076,0.973,0.775,1.061,0.901,0.964,1.016,1.022,1.327 +NM_018847,0.677,0.966,1.256,0.669,1.126,0.537,0.735,0.62,1.012,0.909,1.155,0.782,0.648,0.734,1.142,1.991,0.972,1.137,1.077,0.794,0.584,0.827,0.448,1.079,0.728,0.738,1.196,0.932,0.605,1.242,1.072,1.349,0.934,1.838,0.375,0.33,1.427,0.915,1.093,0.439,1.11,1.448,0.6,0.912,1.08,1.24,0.623,0.735,1.199,0.754,1.304,0.824,0.856,1.119 +NM_018848,1.121,1.069,0.999,0.824,0.912,0.936,0.989,1.033,0.918,0.858,0.947,0.918,1.017,1.026,0.912,0.894,0.993,0.95,1.17,1.066,1.185,1.036,1.067,1.006,1.135,0.861,1.082,0.952,1.018,1.113,0.989,1.001,0.951,0.953,0.967,1.006,1.004,1.078,1.067,0.909,0.956,1.033,1.206,0.929,0.953,1.058,1.004,1.164,0.919,0.946,1.028,1.076,0.856,0.897 +NM_018850,1.056,0.964,1.026,1.147,0.99,0.951,0.903,0.914,1.155,0.906,0.987,0.861,1.063,0.961,0.906,0.994,1.065,0.965,1.03,1.149,1.198,1.129,0.99,0.999,0.847,0.946,0.931,1.045,1.05,1.366,0.927,1.333,1.104,0.978,1.103,0.99,0.972,1.089,1.172,1.008,0.914,1.239,0.855,1.214,1.021,1.037,1.041,0.933,0.994,0.963,1.071,1.057,1.156,1.055 +NM_018890,1.118,0.719,1.609,0.725,1.532,0.596,0.363,1.031,3.166,0.987,0.58,0.77,1.017,1.122,1.182,1.03,1.568,1.081,1.998,0.635,0.737,1.176,0.863,1.494,0.332,1.725,1.384,1.997,0.378,0.611,1.895,1.032,1.296,0.701,1.24,1.351,0.677,1.408,1.197,0.998,1.256,0.709,0.506,2.36,1.42,0.567,2.061,2.159,0.819,0.872,0.794,1.319,0.829,1.179 +NM_018891,0.73,0.977,0.801,0.917,0.765,1.174,0.935,0.736,0.767,0.797,1.558,0.756,0.631,0.723,0.82,1.119,0.778,1.093,0.618,1.244,0.731,0.638,1.634,0.731,0.823,0.656,0.875,0.676,1.048,0.891,0.608,1.555,1.608,1.001,0.776,1.743,1.01,0.72,1.973,1.611,0.711,0.999,0.979,2.702,0.775,1.43,1.407,0.698,0.825,0.762,1.188,1.439,0.942,2.873 +NM_018894,0.693,1.393,1.317,0.799,0.911,1.197,1.045,0.794,0.874,1.047,0.971,0.678,0.76,0.72,0.841,1.094,0.918,0.89,1.147,0.975,0.871,0.976,0.983,0.905,1.253,0.819,1.035,0.984,0.653,1.489,0.955,3.731,1.694,2.339,0.66,0.703,1.104,1.166,0.822,1.007,1.109,1.677,0.774,0.633,0.909,0.781,1.05,0.92,0.711,0.7,1.127,1.547,0.984,1.437 +NM_018897,1.016,0.912,0.909,1.152,1.083,1.226,1.028,1.071,1.007,0.91,0.977,0.899,1.023,1.029,1.093,1.152,0.99,0.93,0.999,1.138,1.011,1.051,1.089,1.01,0.837,0.927,0.891,0.943,0.916,1.001,1.049,0.916,0.943,0.945,0.991,1.054,1.1,1.068,0.924,1.071,1.122,1.062,1.084,1.151,1.105,0.964,0.973,1.084,1.05,1.05,0.95,1.036,0.98,1.07 +NM_018930,0.925,1.058,1.044,0.925,0.846,1.003,0.871,0.977,1.023,0.903,0.986,1.003,0.958,0.99,1.002,1.032,1.031,1.191,0.955,1.065,0.928,1.042,1.067,0.903,1.196,1.063,0.818,0.92,1.048,0.999,0.953,0.867,0.938,1.015,0.988,1.058,1.182,1.052,0.983,1.065,0.888,0.878,1.475,1.061,1.001,0.988,1.114,1.072,1.021,1.097,1.165,0.809,0.952,1.126 +NM_018933,0.976,1.019,0.929,0.986,1.147,1.205,0.84,0.929,1.005,0.931,1.156,0.911,0.74,0.758,1.089,1.044,0.854,0.729,0.883,1.016,1.005,0.829,0.932,0.974,0.923,1.005,1.01,1.19,1.04,0.933,1.102,1.057,1.108,0.988,0.929,0.887,1.007,0.925,1.043,0.989,0.862,1.095,1.794,1.165,0.884,1.216,0.965,1.075,0.781,0.936,1.072,0.838,1.063,1.088 +NM_018934,0.894,1.026,1.065,1.022,1.12,1.039,0.907,0.824,1.124,1.017,0.943,1.029,1.04,0.813,1.009,0.971,0.934,0.887,1.008,0.998,0.929,0.85,0.936,0.951,0.911,1.046,0.919,0.897,0.866,1.008,1.026,1.165,1.545,0.91,0.975,1.016,0.964,1.072,1.166,0.83,0.975,1.002,1.022,1.054,1.087,0.993,1.043,0.983,0.993,0.984,0.94,0.998,1.09,0.901 +NM_018935,1.034,1.085,0.971,0.974,0.997,0.851,0.879,0.989,0.958,0.996,0.935,0.94,1.009,1.04,1.039,0.969,0.948,1.091,1.102,0.903,0.979,0.884,1.002,1.009,1.004,0.983,0.907,0.938,1.087,1.082,0.891,1.541,1.673,1.112,0.974,0.974,1.002,1.099,1.138,0.916,0.923,1.275,0.845,0.969,0.979,0.956,1.049,1.094,0.901,0.998,0.897,0.909,1.143,1.004 +NM_018936,0.877,0.966,1.12,1.143,1.008,1.076,1.002,0.924,0.921,1.072,1.267,0.967,1.0,1.04,0.913,0.943,0.965,0.955,0.95,1.117,1.04,0.941,1.008,0.948,1.023,1.016,1.048,0.942,1.128,0.934,0.935,1.189,1.146,0.974,1.055,1.019,1.001,0.996,0.948,1.097,0.994,1.019,0.97,0.977,1.053,1.059,1.287,0.937,0.914,0.916,0.903,0.878,1.175,1.004 +NM_018937,1.082,0.847,1.068,0.956,0.856,1.02,1.049,0.976,0.947,1.091,0.998,1.016,1.054,0.992,1.314,1.041,1.088,0.871,0.964,0.939,0.837,0.907,0.908,1.082,1.096,1.025,1.258,0.864,1.04,0.929,1.058,0.957,1.114,1.209,1.015,0.99,0.989,1.036,0.915,0.908,0.963,1.022,1.064,0.885,1.243,1.124,1.048,1.01,0.97,1.0,1.117,0.934,1.009,2.428 +NM_018938,0.952,0.95,0.976,1.121,0.925,0.964,0.926,0.984,0.947,1.061,1.066,0.881,0.929,0.855,1.048,0.949,1.065,0.922,1.081,1.111,0.997,1.18,1.087,0.985,0.963,0.958,0.889,1.079,1.152,1.111,0.981,1.218,1.279,1.174,1.04,0.997,1.008,0.934,1.123,1.123,1.006,1.354,0.913,0.893,1.053,1.01,0.955,1.043,0.999,1.261,1.038,1.25,0.975,1.273 +NM_018939,0.863,0.97,0.891,0.819,1.134,0.886,1.232,1.067,1.18,1.127,0.899,1.091,0.861,0.847,1.07,0.942,1.042,1.109,0.836,1.118,0.897,0.997,1.068,1.076,1.015,0.896,0.866,1.006,1.485,1.019,0.936,1.108,1.006,1.021,1.095,0.904,1.11,1.107,1.103,0.899,0.948,1.062,1.278,0.867,1.01,1.034,1.121,1.002,0.961,0.933,1.098,0.979,1.187,1.29 +NM_018940,0.969,1.131,1.015,1.146,1.156,1.048,1.109,0.918,0.977,1.001,0.984,0.881,0.992,0.884,0.924,0.999,0.891,0.997,0.919,0.999,0.993,0.962,1.005,0.904,0.986,1.076,1.129,0.783,1.848,1.106,0.947,0.973,1.072,1.061,0.99,0.829,0.93,1.013,1.028,0.976,1.096,0.95,1.3,0.896,1.044,1.135,0.926,1.08,0.832,0.927,0.966,0.924,1.049,0.934 +NM_018943,1.096,0.922,0.965,0.979,0.989,1.137,1.008,0.896,0.952,1.044,1.017,0.984,0.891,1.014,0.999,0.924,0.925,0.976,0.962,0.942,0.961,1.097,0.912,0.952,0.973,0.996,0.99,1.143,0.691,0.991,1.067,1.046,0.971,1.081,1.119,1.069,1.103,0.885,1.132,1.031,0.922,1.098,0.895,1.077,0.931,0.927,0.922,1.049,0.972,1.002,1.121,1.113,1.059,1.09 +NM_018944,0.904,1.057,1.055,0.953,0.795,0.994,0.891,0.661,0.999,0.912,1.0,0.857,0.925,0.879,1.0,1.195,0.866,0.941,1.137,0.804,0.733,0.931,1.397,1.125,0.753,1.011,1.517,0.929,0.714,0.909,0.833,1.032,2.579,1.182,0.55,1.006,1.106,0.83,1.669,1.034,0.951,0.959,1.003,1.247,0.917,0.989,0.888,0.82,0.909,0.908,1.097,0.819,1.019,1.879 +NM_018945,1.043,0.772,1.026,1.057,0.932,1.036,0.814,1.111,0.936,0.827,1.037,1.099,0.963,1.081,1.213,1.026,0.942,1.093,0.891,0.92,1.033,0.74,1.046,0.98,0.945,0.918,0.994,1.086,0.895,1.028,1.038,0.978,0.966,1.071,0.879,1.007,1.173,1.043,1.022,1.05,0.872,0.975,1.04,1.023,0.977,0.833,1.214,1.021,1.166,0.961,1.12,0.929,0.92,1.041 +NM_018946,0.427,1.286,0.667,1.073,0.5,1.801,0.826,0.316,0.593,0.479,2.171,0.427,0.467,0.325,0.769,2.018,0.773,1.337,0.884,1.381,0.391,0.511,2.427,0.629,1.086,0.65,0.67,0.501,0.839,1.59,0.507,1.186,1.475,1.907,0.458,0.823,1.574,0.552,1.694,0.454,0.74,1.748,0.696,1.219,0.587,1.324,0.798,0.553,1.502,0.602,1.532,0.909,0.669,2.426 +NM_018947,0.81,1.001,1.066,0.993,0.891,1.01,0.717,0.597,1.023,1.064,1.197,0.735,0.759,0.963,1.104,1.447,1.029,0.767,0.82,1.001,0.858,0.868,1.465,0.963,1.065,0.851,0.789,0.862,0.732,1.336,0.897,0.822,1.457,1.149,0.719,1.189,1.109,0.84,1.211,0.854,0.907,1.19,1.008,0.803,1.112,1.33,0.913,0.777,0.992,0.826,1.093,0.909,0.972,2.137 +NM_018948,0.535,0.8,0.749,0.752,1.044,1.283,0.559,0.896,0.93,0.824,1.041,0.644,0.586,0.743,1.339,1.296,0.639,0.759,0.883,1.06,0.599,0.736,0.944,0.844,0.52,0.635,0.803,0.83,0.419,0.892,0.908,1.768,1.445,1.07,1.384,0.677,1.021,0.997,1.32,6.567,0.859,1.073,1.876,1.187,0.726,3.003,1.136,0.792,2.229,0.627,1.029,1.576,0.912,2.833 +NM_018951,0.925,0.974,1.042,1.041,1.016,0.994,0.874,0.861,1.108,0.886,1.168,0.87,1.022,0.88,1.042,0.978,1.118,0.997,1.122,0.87,1.011,1.007,1.013,0.925,1.051,0.969,0.872,0.965,0.754,0.959,0.919,0.951,0.956,0.921,1.08,0.957,1.109,1.235,0.946,1.018,1.072,1.136,0.904,1.171,1.044,1.0,1.052,0.979,0.927,0.942,1.1,0.998,1.008,1.02 +NM_018952,0.981,1.151,0.933,0.979,0.91,1.027,0.832,1.019,0.956,0.898,0.952,1.03,0.848,0.859,0.864,1.031,0.903,0.855,0.919,1.12,1.046,0.917,1.13,0.87,1.119,0.957,1.047,1.066,1.641,0.942,0.888,1.102,1.164,0.82,1.008,0.88,0.972,0.884,1.349,1.085,0.915,1.049,0.927,1.139,0.956,1.034,1.071,1.077,1.072,0.882,1.076,0.982,0.82,1.064 +NM_018953,1.042,1.478,1.32,1.072,1.196,1.02,0.911,0.989,1.274,1.148,0.812,1.388,1.03,0.983,0.851,0.942,0.834,1.041,1.005,1.361,0.914,0.864,0.823,1.114,1.034,1.114,0.884,1.153,1.091,1.318,1.096,0.99,0.836,1.33,0.821,0.977,0.941,1.001,1.269,0.933,0.887,1.084,0.734,1.018,1.012,0.746,0.923,0.979,0.757,0.869,0.865,0.894,1.2,1.037 +NM_018955,0.518,1.225,0.76,0.929,0.636,1.445,0.619,0.268,0.655,0.786,1.065,0.427,0.315,0.376,0.708,1.266,0.568,1.071,0.831,1.287,0.512,0.491,1.59,0.663,0.778,0.615,0.742,0.654,0.265,1.625,0.634,1.121,1.077,1.606,0.191,1.125,1.446,0.712,1.572,0.682,0.942,1.319,0.747,1.754,0.621,1.291,0.736,0.523,1.239,0.515,1.433,0.649,0.718,1.39 +NM_018956,1.128,0.989,1.712,0.757,1.455,0.845,0.767,1.458,1.263,1.339,0.798,1.56,0.906,0.934,1.108,1.292,1.357,1.131,1.827,0.93,1.317,1.279,0.875,1.302,0.735,1.22,1.064,1.228,0.967,0.899,1.135,0.925,1.704,0.888,0.968,1.002,0.92,2.343,0.73,0.906,1.627,0.978,1.194,0.936,1.22,0.903,1.044,1.053,0.996,1.194,0.891,0.772,1.543,1.053 +NM_018957,1.088,0.457,1.985,0.632,1.31,0.953,0.599,0.785,1.756,2.096,0.68,1.084,0.656,1.084,1.199,1.739,1.74,0.9,1.419,0.626,0.727,1.349,1.012,1.333,0.196,1.147,2.027,1.366,0.272,1.262,1.367,0.783,0.711,0.467,0.876,0.559,1.324,1.785,1.263,0.848,2.039,0.955,0.754,0.548,1.351,0.844,1.414,1.363,1.576,1.046,0.908,0.762,1.272,1.003 +NM_018958,1.013,1.143,0.978,1.011,0.958,1.02,0.868,1.052,0.964,0.949,0.989,1.048,0.974,0.975,0.898,0.964,1.077,0.914,1.012,0.95,1.03,1.056,0.928,1.003,0.898,0.985,1.26,1.032,0.76,0.98,1.097,1.108,0.865,0.981,0.973,0.975,0.986,0.966,1.085,1.133,0.923,1.031,0.849,0.869,0.955,0.939,1.087,0.984,0.91,1.057,1.036,0.844,0.784,1.071 +NM_018959,1.068,0.536,1.134,1.085,0.905,0.845,0.506,0.451,1.144,1.103,1.128,0.816,0.575,0.822,1.024,1.191,0.961,0.853,1.472,0.827,0.682,0.641,1.248,0.949,0.461,1.169,1.177,0.823,0.578,0.954,0.89,1.185,2.429,1.041,0.358,0.82,0.812,0.895,1.26,1.061,1.181,0.927,0.901,1.514,1.115,1.093,0.978,0.948,1.235,1.007,0.991,0.807,1.276,1.323 +NM_018960,0.934,1.205,0.963,1.103,0.931,0.84,1.019,0.858,0.955,0.997,1.044,0.936,1.0,1.07,0.993,1.03,1.097,1.016,1.107,0.967,0.813,1.073,0.96,0.98,1.405,1.081,1.034,1.11,1.105,0.972,1.086,1.074,1.231,1.031,0.99,0.931,0.968,1.071,0.975,0.968,1.03,1.281,0.889,0.976,1.01,0.958,1.009,1.001,1.013,1.045,0.973,0.924,1.201,1.059 +NM_018961,1.07,0.961,1.223,0.866,1.094,0.917,0.99,0.902,1.053,1.154,1.071,1.091,1.07,0.787,0.876,0.838,0.978,1.0,1.338,0.987,1.117,0.789,0.993,1.045,1.096,1.049,1.265,0.941,0.953,1.015,1.281,0.866,1.106,0.902,0.99,1.173,1.05,1.188,0.896,1.08,1.149,0.94,0.884,0.866,0.931,0.89,0.839,0.998,0.992,0.97,1.138,0.885,0.927,1.064 +NM_018962,0.912,1.044,1.119,1.043,0.841,0.915,0.893,1.034,1.078,1.083,1.015,0.99,1.064,0.796,1.0,0.902,0.916,0.841,1.023,1.005,0.993,1.172,0.978,1.067,0.975,1.025,1.164,1.044,1.02,0.954,1.016,1.853,1.3,1.012,0.928,1.303,0.92,0.977,0.955,2.977,1.185,0.888,0.905,0.863,1.021,0.978,0.966,0.889,0.894,0.884,1.031,1.029,0.862,2.645 +NM_018963,1.7930000000000001,1.963,2.189,1.718,1.983,2.083,1.813,1.8210000000000002,1.9620000000000002,1.979,2.157,1.762,1.918,2.081,1.9180000000000001,1.9580000000000002,2.052,1.844,1.918,1.838,1.9969999999999999,1.776,1.851,2.077,2.042,1.7799999999999998,2.399,1.984,1.5110000000000001,2.051,2.086,2.031,2.356,1.9809999999999999,2.077,2.041,2.073,2.138,1.987,2.149,2.158,2.003,1.803,1.806,1.984,2.072,2.167,1.811,1.858,1.9860000000000002,1.928,1.801,2.1109999999999998,2.053 +NM_018964,0.662,1.295,0.78,1.322,0.577,2.229,1.1,0.582,0.85,0.558,2.056,0.505,0.492,0.669,1.825,2.969,0.618,1.013,0.83,1.827,0.472,0.647,2.547,0.766,0.703,0.622,0.701,0.803,0.627,1.414,0.693,0.797,0.865,2.32,0.406,0.902,1.748,0.458,2.502,0.994,0.669,2.137,1.646,1.264,0.727,2.11,0.721,0.542,1.317,0.499,2.365,0.619,0.776,2.182 +NM_018965,0.87,1.094,1.05,0.915,0.977,1.011,1.028,0.836,0.902,1.018,0.915,1.022,0.851,0.831,1.061,0.927,0.894,1.028,0.862,1.012,0.871,0.803,1.551,1.142,0.924,0.916,1.11,0.896,0.73,1.377,0.88,6.839,1.091,0.959,1.023,0.86,0.889,0.838,0.913,0.952,0.848,1.196,0.841,1.059,0.849,1.057,1.347,0.872,0.976,0.904,0.992,1.854,1.181,2.282 +NM_018967,0.972,0.843,1.073,1.048,1.046,0.883,1.015,0.939,0.797,1.12,0.867,0.996,0.989,1.231,0.835,0.915,1.049,1.043,1.028,0.997,1.038,1.039,1.085,0.976,0.812,1.079,0.975,0.861,0.748,0.848,1.076,1.002,0.809,1.068,0.969,1.023,1.037,1.184,1.007,0.942,1.002,1.015,0.834,1.034,1.027,1.024,1.008,1.123,1.072,0.967,1.02,0.947,1.005,1.015 +NM_018968,1.059,1.061,0.964,1.165,0.973,0.947,0.904,0.999,1.055,1.017,1.159,0.953,0.91,0.868,1.165,1.123,0.953,1.142,1.061,1.293,1.042,1.007,1.034,0.988,1.149,0.932,1.006,1.072,0.947,0.999,1.066,0.959,0.811,1.09,0.982,1.141,0.919,0.861,0.984,0.868,1.097,1.021,0.972,0.925,0.862,1.044,0.941,1.037,0.962,0.975,0.887,0.998,1.103,0.932 +NM_018969,0.967,0.885,0.951,1.213,0.921,1.034,1.025,1.176,1.064,0.947,0.947,1.0,1.048,1.116,0.91,1.006,1.076,1.074,1.01,1.012,0.929,0.976,1.0,1.115,0.98,1.158,1.152,0.958,0.73,1.09,0.931,0.9,1.035,0.992,0.974,1.038,0.909,0.945,1.048,1.024,1.066,0.984,1.03,0.935,1.003,1.025,0.993,1.04,0.93,1.262,1.006,0.992,1.063,1.086 +NM_018970,1.013,1.027,1.118,0.975,1.086,1.021,1.065,0.977,0.964,0.98,0.972,0.972,1.015,1.019,0.981,1.023,0.96,1.025,1.029,0.991,1.226,1.079,0.911,1.041,1.076,0.982,0.828,1.08,0.802,1.124,1.028,0.891,0.923,0.9,1.047,1.046,1.073,0.942,1.124,1.087,0.914,1.169,1.127,0.898,1.019,0.998,1.064,0.946,0.893,1.012,1.022,0.949,1.16,0.892 +NM_018971,0.956,1.191,0.901,0.878,1.022,1.128,0.989,1.013,1.014,1.0,1.234,1.048,1.062,1.089,1.081,0.978,1.052,1.044,1.041,1.025,1.087,1.063,0.867,1.098,0.998,0.915,0.911,1.023,1.096,0.873,0.831,0.922,1.068,1.202,0.994,1.11,0.9,1.149,1.0,1.082,0.915,0.986,1.029,1.076,0.917,0.921,1.192,1.045,0.941,1.061,1.042,0.848,1.063,0.964 +NM_018972,0.957,1.159,1.005,1.121,0.968,1.027,0.923,0.995,0.884,0.996,1.011,1.011,1.15,1.231,0.944,1.092,1.013,1.075,1.009,0.96,0.845,1.052,1.113,1.131,0.992,0.984,0.951,1.097,0.909,0.971,0.992,0.996,0.973,0.932,0.999,0.963,0.927,0.947,0.958,1.146,1.009,0.998,0.914,1.057,1.09,0.965,0.986,0.806,1.065,1.1,0.944,0.96,0.861,1.002 +NM_018975,0.739,0.945,1.28,0.858,0.772,0.886,0.69,0.442,1.235,1.064,0.948,0.818,0.598,0.806,0.988,1.032,0.956,0.694,1.001,1.23,0.506,0.538,1.017,0.958,0.722,0.836,1.457,0.942,0.263,1.099,1.027,2.076,1.531,1.441,0.561,0.664,0.71,0.804,1.067,0.928,1.056,1.199,0.473,1.211,1.1,0.847,0.896,0.663,0.76,0.969,1.018,0.757,1.142,1.437 +NM_018976,0.876,0.79,2.267,0.716,1.434,0.659,0.478,0.581,1.597,1.492,0.7,0.836,0.788,1.068,0.906,1.041,0.997,1.226,2.098,0.714,0.724,1.003,0.797,1.21,0.577,0.883,1.817,1.354,0.329,0.769,1.493,1.447,1.602,0.929,0.219,0.522,0.888,1.346,1.006,1.527,1.31,0.829,0.495,0.946,0.956,0.955,1.112,0.858,0.709,1.426,0.886,1.136,1.411,1.325 +NM_018977,0.948,1.145,0.911,0.977,1.072,1.089,0.99,0.89,0.997,1.077,0.91,0.987,1.113,1.015,1.03,1.031,1.087,0.883,0.998,0.953,0.989,0.945,1.115,1.005,1.017,0.992,1.176,1.064,1.113,0.958,0.993,1.109,1.028,1.131,1.014,0.936,1.015,1.189,0.998,0.908,1.23,0.991,0.996,1.119,0.987,1.019,1.034,0.986,1.181,0.889,1.077,0.982,1.116,0.966 +NM_018978,0.867,1.008,1.15,0.973,1.0,0.897,0.937,1.128,1.028,0.809,1.06,1.082,1.072,0.97,1.059,0.954,0.942,0.909,0.874,1.029,1.026,0.932,0.982,0.972,0.868,0.975,1.173,0.938,1.012,0.915,1.136,0.944,0.72,0.916,0.963,1.034,1.021,1.125,0.961,0.989,1.034,1.16,1.001,0.837,1.004,0.915,1.005,0.933,1.062,0.945,1.037,0.969,0.911,0.78 +NM_018979,1.353,0.976,1.346,0.925,1.44,0.855,0.958,1.059,1.606,1.196,0.867,0.972,0.977,1.265,1.045,0.847,1.048,1.019,1.687,0.773,1.169,0.939,1.062,1.216,0.812,1.115,1.08,1.234,0.562,0.897,1.394,0.981,0.984,1.029,1.184,0.758,0.771,1.172,0.957,0.969,1.326,1.105,0.729,1.097,1.21,0.819,1.169,0.944,0.795,1.069,0.994,0.839,1.216,0.918 +NM_018980,0.912,1.085,0.957,0.993,1.267,0.915,0.897,0.944,0.899,0.866,0.996,1.036,0.905,1.003,0.788,1.024,0.983,1.016,0.799,1.037,0.989,0.901,1.01,0.93,1.003,0.96,1.139,1.083,0.924,0.988,0.966,0.946,1.095,1.033,1.153,0.99,1.065,1.188,1.0,1.031,0.923,0.97,1.009,0.924,1.059,0.929,1.04,1.016,0.986,0.974,1.043,1.04,1.0,1.079 +NM_018981,0.411,2.328,0.646,0.995,0.489,1.81,0.963,0.311,0.497,0.556,1.475,0.529,0.435,0.332,0.917,1.994,0.472,1.124,0.442,1.335,0.286,0.432,1.892,0.575,0.888,0.325,0.696,0.45,0.601,1.603,0.496,1.909,2.353,2.403,0.238,0.733,1.382,0.478,1.692,1.343,0.607,2.194,0.637,1.235,0.606,1.355,0.644,0.506,1.253,0.455,1.78,0.877,0.382,1.652 +NM_018983,1.039,0.977,1.078,0.968,1.055,0.899,0.854,0.837,1.009,1.139,0.975,0.994,0.951,0.891,1.102,1.041,0.957,0.836,1.053,0.956,0.948,0.911,1.016,0.99,0.972,0.844,1.011,1.064,0.93,1.086,0.867,1.05,0.89,0.899,0.861,0.912,0.939,0.956,1.162,0.823,1.066,0.965,0.932,1.341,0.984,1.16,1.261,0.842,1.081,1.115,0.912,1.074,0.993,0.831 +NM_018984,0.974,1.102,1.237,0.891,1.124,0.886,0.863,0.892,0.986,0.998,1.097,0.995,0.869,0.932,0.864,0.891,0.952,0.895,1.099,0.904,1.003,0.905,0.926,0.99,0.893,1.029,1.047,1.042,0.827,1.075,1.059,1.334,1.295,1.073,0.933,0.957,0.848,0.887,1.045,1.24,1.098,0.998,0.946,0.95,0.968,0.978,1.348,0.938,1.082,0.918,0.958,0.961,1.115,1.241 +NM_018985,0.889,1.025,1.119,0.731,0.959,1.292,1.247,1.479,1.336,0.978,1.26,1.101,1.036,0.868,1.521,0.997,0.942,1.051,1.074,1.523,1.168,1.48,1.208,0.846,0.945,0.916,1.188,1.098,0.729,0.779,1.236,1.409,2.194,1.119,1.354,0.941,0.962,1.537,0.9,1.108,1.095,0.885,0.917,0.917,0.789,0.728,1.753,1.598,0.746,1.049,0.877,0.822,0.963,0.769 +NM_018986,0.958,0.893,1.433,1.069,0.976,1.085,0.803,0.807,1.167,0.948,0.842,1.028,1.02,0.889,0.961,0.958,1.905,1.105,1.958,0.792,0.949,0.949,0.803,0.973,0.978,1.239,1.376,0.724,1.059,1.406,1.136,1.207,1.358,1.205,0.835,0.887,0.903,1.176,1.547,1.161,1.36,0.85,1.03,0.864,1.406,0.798,0.887,1.068,0.67,1.633,0.753,0.997,1.471,0.975 +NM_018987,1.042,0.969,1.0,1.162,1.009,1.125,1.065,0.989,1.013,1.068,1.103,0.915,0.96,1.294,0.954,1.039,1.046,0.906,1.064,0.86,0.979,1.062,1.241,1.035,1.0,0.948,1.034,0.849,0.874,0.862,0.977,0.997,0.932,0.967,0.942,1.142,1.063,0.969,1.105,1.005,0.899,0.925,0.898,1.06,0.904,1.017,1.207,1.224,0.925,1.069,0.962,1.219,0.927,0.996 +NM_018988,1.055,0.769,2.486,0.58,0.99,0.874,0.689,0.521,1.498,1.791,0.721,0.909,0.939,0.899,0.849,0.96,1.654,0.891,1.776,1.023,0.746,1.32,0.701,1.65,0.543,1.102,2.094,0.915,0.338,0.77,1.069,1.139,1.369,0.861,0.376,0.665,0.98,1.484,0.719,0.567,1.622,1.4,0.762,1.005,1.885,0.86,1.145,0.979,0.7,2.353,0.911,1.381,2.384,0.79 +NM_018990,1.006,0.956,1.024,1.114,0.992,1.174,0.853,1.016,0.974,1.094,1.036,1.242,0.989,1.18,1.189,1.033,0.98,0.981,1.105,0.915,1.112,1.165,0.97,0.91,0.907,1.006,1.049,0.916,0.808,1.053,1.083,0.752,0.971,0.77,1.094,1.064,0.862,1.053,0.861,1.109,1.028,1.013,0.833,0.862,1.068,0.969,0.9,0.912,0.965,1.119,0.94,1.12,1.096,1.01 +NM_018992,0.824,0.829,0.977,1.036,0.852,1.221,0.736,0.648,1.013,1.022,1.248,0.773,0.868,0.97,0.833,1.023,1.287,0.997,1.145,0.822,0.788,0.874,0.913,0.907,0.892,1.247,0.993,0.813,0.667,1.096,0.998,1.026,0.826,1.029,0.986,0.712,1.241,0.859,1.156,0.879,0.934,0.896,1.18,1.029,0.902,1.349,1.07,0.943,1.381,1.025,0.904,0.73,0.946,1.002 +NM_018993,0.72,0.882,1.783,0.556,0.979,1.128,0.472,0.564,0.992,0.764,1.016,0.83,0.708,0.703,1.076,1.37,0.834,0.824,1.239,1.15,0.412,0.882,1.506,1.114,0.541,0.782,1.594,0.832,0.498,1.362,0.913,2.165,2.547,1.42,0.244,0.515,0.873,1.093,1.428,1.374,0.971,1.109,0.371,0.958,0.969,0.786,0.799,1.024,0.655,1.251,1.005,0.977,0.646,1.879 +NM_018995,1.08,1.025,0.968,0.804,1.048,0.985,1.107,1.037,0.894,1.101,0.895,1.103,1.064,0.792,0.83,1.068,0.965,0.961,0.959,0.999,1.038,1.01,1.052,1.142,1.039,1.003,0.907,1.075,0.85,0.828,1.007,1.158,1.164,1.032,1.114,1.027,0.964,1.124,0.979,0.983,1.229,0.979,0.942,0.88,0.994,1.045,0.949,1.094,0.861,1.046,1.123,1.018,0.926,1.036 +NM_018996,0.98,0.992,1.004,0.898,0.913,1.084,0.867,1.056,1.096,1.04,0.948,1.092,0.943,1.021,0.979,1.209,0.991,0.952,0.857,1.121,1.28,0.906,1.023,1.076,0.957,1.01,0.987,1.142,1.245,0.95,0.956,1.258,0.978,1.104,1.03,0.978,1.058,1.158,1.074,1.045,0.96,0.958,1.049,0.943,0.989,0.968,1.121,0.972,1.208,0.887,0.958,0.909,1.131,1.028 +NM_018997,0.873,1.523,0.867,0.998,0.93,1.016,0.722,0.781,1.072,1.208,1.02,0.947,0.969,0.802,1.223,1.254,0.851,0.937,0.932,0.945,1.028,0.994,1.027,1.409,0.925,1.046,1.309,0.933,0.681,1.36,1.065,1.209,1.348,1.158,0.597,0.649,1.003,1.016,1.107,1.162,1.177,1.021,0.763,1.246,0.774,0.974,1.345,0.808,0.956,0.91,0.859,1.016,0.922,1.639 +NM_019000,0.522,2.271,0.515,0.724,0.47,3.748,0.743,0.441,0.517,0.491,2.519,0.486,0.508,0.444,1.575,3.368,0.432,0.98,0.448,2.529,0.436,0.463,2.591,0.568,0.864,0.462,0.422,0.469,0.381,1.823,0.435,1.757,4.114,1.411,0.409,1.045,1.736,0.6,1.888,1.211,0.51,3.064,1.7,0.761,0.467,2.793,0.771,0.437,1.358,0.532,2.51,0.84,0.512,1.465 +NM_019001,0.928,0.892,1.254,0.924,1.101,1.004,0.895,0.932,1.148,1.051,0.892,0.869,0.962,1.114,1.173,1.061,1.188,0.894,1.097,1.008,0.999,0.956,0.941,0.981,0.852,0.904,1.061,0.947,0.958,0.916,1.062,0.98,1.109,0.994,1.14,0.851,1.095,0.892,1.08,0.967,1.181,0.947,0.969,0.957,0.951,0.967,1.136,0.8,1.116,1.105,0.931,1.007,1.053,1.426 +NM_019002,0.908,0.989,1.178,0.893,1.096,1.222,0.955,1.0,1.045,1.021,0.913,1.002,1.038,1.026,0.849,1.166,1.149,0.871,1.097,1.12,0.812,1.026,0.946,0.978,0.943,0.9,1.102,0.817,0.871,0.994,1.13,1.151,1.469,0.903,0.82,1.013,1.032,0.942,1.015,1.051,0.858,0.917,0.687,1.294,1.0,0.954,1.043,1.233,0.991,1.045,1.066,0.961,1.05,1.122 +NM_019003,1.063,1.058,1.004,0.951,0.962,1.058,1.176,1.013,1.295,1.025,0.889,1.064,0.939,0.92,1.026,0.941,1.116,1.028,0.971,0.913,1.08,1.027,0.966,1.062,0.968,1.043,1.025,0.92,0.882,1.116,0.92,0.998,1.08,1.111,0.972,0.889,1.016,0.987,0.932,1.001,1.073,0.859,1.086,0.848,0.91,1.086,0.932,1.018,1.122,0.985,1.158,1.062,1.007,1.077 +NM_019005,0.998,0.79,1.426,0.792,1.472,0.855,0.621,0.744,1.549,1.34,0.733,1.18,0.919,0.83,0.971,1.052,1.164,1.05,1.595,0.819,0.96,1.433,1.119,1.531,0.611,1.133,1.19,1.088,0.52,1.118,1.131,0.809,1.817,1.127,0.463,0.853,0.805,1.449,1.025,0.792,1.251,0.976,0.608,1.118,1.164,0.745,1.043,1.002,0.711,1.035,0.83,0.875,1.195,1.138 +NM_019006,0.795,1.079,1.059,0.886,1.031,0.872,0.738,0.595,1.217,0.876,1.312,0.613,0.779,0.869,1.112,1.507,0.675,0.845,0.937,1.17,0.587,0.614,1.17,0.941,0.863,0.766,0.939,1.207,0.532,1.073,1.265,0.87,1.209,1.317,1.425,1.103,1.016,0.73,1.599,0.622,1.127,0.867,0.884,0.912,0.824,1.527,1.287,0.715,1.081,0.747,1.009,0.738,0.815,1.086 +NM_019007,0.841,1.211,1.471,0.937,0.964,1.213,0.676,0.656,1.108,1.002,0.937,0.923,0.806,0.832,0.819,0.877,1.463,0.9,1.413,0.898,0.908,0.87,0.937,1.217,0.731,0.848,1.434,0.871,0.571,1.45,1.08,1.762,1.783,1.404,0.437,0.981,0.859,1.034,1.037,0.663,1.254,0.98,0.61,1.286,0.985,0.764,0.917,0.731,0.472,0.998,0.841,0.869,1.241,1.548 +NM_019008,0.863,0.829,0.939,0.92,0.864,1.004,0.68,0.752,0.946,0.974,1.063,0.897,0.792,0.831,0.89,1.274,0.868,0.873,1.031,0.942,1.043,0.878,1.221,1.0,0.938,0.811,1.084,0.929,0.815,1.094,0.856,0.992,1.141,1.115,0.66,0.95,1.251,0.911,1.091,0.969,1.018,1.106,0.99,1.109,0.949,1.021,1.128,0.87,1.163,0.989,1.169,1.043,1.0,1.717 +NM_019009,1.27,0.751,1.05,0.814,0.955,1.033,0.674,0.746,1.127,0.93,1.029,0.755,0.835,0.767,1.032,1.182,1.107,0.95,1.142,0.965,1.076,1.255,0.977,1.03,0.729,1.387,1.092,0.972,0.673,1.157,1.171,0.932,0.77,1.174,0.451,0.857,0.913,1.053,1.051,0.722,1.161,1.064,0.696,0.958,1.132,0.879,0.809,1.195,0.7,1.159,1.028,0.669,0.836,0.968 +NM_019010,0.305,1.398,0.264,1.726,0.282,13.31,2.062,0.299,0.3,0.283,5.919,0.286,0.241,0.268,8.037,20.61,0.314,2.706,0.295,3.364,0.325,0.274,4.522,0.323,1.501,0.295,0.275,0.288,1.698,3.046,0.313,0.268,0.521,5.813,0.303,0.852,8.382,0.276,2.103,0.302,0.29,5.192,4.22,0.36,0.281,5.756,6.176,0.333,10.16,0.33,5.742,0.278,0.325,0.353 +NM_019011,1.218,0.846,0.919,1.01,0.807,1.015,0.919,0.801,0.924,0.976,0.93,0.945,1.091,0.932,0.982,0.964,1.184,0.918,1.034,0.93,1.155,1.148,0.893,1.07,1.0,1.062,1.159,0.968,0.966,1.245,0.942,1.222,1.046,1.0,0.922,0.919,0.942,1.209,1.1,0.996,0.777,1.067,0.751,1.354,0.917,0.8,0.905,1.122,0.863,0.942,0.924,0.919,0.954,1.063 +NM_019012,0.649,0.883,1.267,0.583,1.174,1.589,0.716,1.333,1.312,0.808,1.094,1.57,0.653,0.717,0.979,1.679,0.719,1.045,0.843,1.251,0.491,1.332,1.235,1.426,0.537,0.519,1.238,1.016,0.675,1.236,1.324,1.173,2.556,1.56,0.449,0.645,1.015,1.292,1.086,1.108,0.988,1.3,0.676,0.589,1.116,0.948,1.16,0.714,1.084,0.611,1.308,0.821,0.49,0.949 +NM_019013,0.87,1.131,0.889,1.017,0.94,0.999,0.944,0.682,1.154,1.119,0.95,1.012,0.857,1.003,1.093,1.228,0.931,0.876,0.938,1.07,0.852,1.001,1.555,1.017,0.834,0.77,1.312,0.852,0.748,1.048,0.934,1.488,2.984,0.921,0.722,1.448,0.841,0.806,1.049,1.633,1.067,0.92,0.845,1.713,1.038,0.896,1.433,0.788,1.041,0.881,1.311,0.88,0.885,2.035 +NM_019014,0.723,1.137,1.031,0.803,0.983,0.914,0.758,0.647,1.072,1.376,0.894,0.916,0.839,0.909,0.891,1.003,0.949,0.817,1.03,0.885,0.837,0.954,1.142,1.128,0.862,0.805,1.101,0.918,0.627,0.942,1.184,1.128,2.747,1.094,0.637,0.948,1.011,0.872,1.376,1.215,1.012,1.19,0.69,1.296,1.248,0.77,1.022,1.001,1.155,0.876,1.076,0.911,0.999,2.046 +NM_019016,0.858,0.742,40.46,3.128,4.947,0.886,0.85,1.71,24.51,2.215,0.931,8.067,7.237,2.545,4.53,1.045,44.21,2.78,24.2,1.184,0.972,2.285,0.862,14.16,0.908,3.256,65.3,3.099,1.07,0.808,3.012,0.767,11.29,0.738,2.195,0.776,0.857,0.891,0.796,0.884,50.88,0.842,0.77,1.017,15.3,0.869,3.564,0.91,1.689,31.94,0.983,5.762,72.11,14.32 +NM_019018,0.681,0.905,0.886,0.745,0.776,1.395,0.904,0.767,0.859,0.651,2.21,0.65,0.948,0.726,1.798,3.709,0.763,0.749,0.649,1.51,0.77,0.73,2.26,0.736,0.701,0.869,0.922,0.798,1.92,1.106,0.627,2.325,1.345,1.047,0.688,1.414,1.953,0.807,1.096,1.93,0.834,1.373,1.433,1.417,0.744,1.744,1.418,0.667,2.059,0.695,1.565,0.96,0.886,1.244 +NM_019020,0.806,1.369,0.913,0.938,0.927,1.261,1.066,0.776,0.91,1.008,1.09,0.886,0.747,0.635,0.852,1.132,0.931,0.872,0.901,1.149,0.636,0.757,1.308,0.87,0.715,0.915,0.9,0.869,0.915,1.317,0.834,2.156,1.264,1.175,0.6,1.382,1.043,0.942,1.587,1.407,0.889,1.41,1.109,2.171,0.883,1.162,1.02,0.797,0.833,0.836,1.045,0.885,0.907,1.27 +NM_019021,0.82,1.797,1.137,0.883,0.892,1.462,0.839,0.897,1.037,0.897,1.19,1.117,0.927,0.924,1.281,1.479,0.818,1.053,1.174,1.289,0.729,0.889,0.963,0.868,0.85,0.813,0.905,0.94,0.873,1.549,0.923,1.4,1.613,1.582,0.878,0.915,1.273,1.076,0.996,0.907,1.009,1.214,0.715,0.733,0.915,1.134,0.931,0.907,0.914,0.773,1.17,0.752,0.915,1.304 +NM_019022,0.882,0.959,1.312,0.809,1.012,0.881,0.814,0.812,1.165,1.223,0.976,1.019,0.838,0.865,1.176,1.023,0.968,0.934,1.314,1.071,0.696,0.813,0.974,1.096,0.865,0.865,1.363,0.843,0.837,1.095,1.13,1.259,1.873,1.028,0.483,0.873,0.848,0.821,1.396,1.006,1.175,0.83,0.761,1.056,1.126,0.918,1.019,0.805,0.768,0.856,0.933,1.311,1.169,1.327 +NM_019023,0.412,1.801,0.773,0.79,0.61,1.326,1.334,0.318,0.796,0.909,1.226,0.56,0.401,0.524,0.656,1.33,0.545,1.14,0.694,1.673,0.442,0.533,1.408,0.513,0.767,0.585,0.654,0.583,1.109,0.941,0.607,1.942,2.129,1.867,0.276,1.122,1.349,0.551,1.585,0.746,0.733,1.419,1.015,1.163,0.762,1.354,1.093,0.559,1.245,0.425,1.112,0.737,0.626,1.407 +NM_019025,1.061,0.887,1.004,1.017,1.033,1.047,1.038,1.022,0.96,1.069,0.998,1.173,0.952,1.024,1.021,0.905,0.903,1.14,1.199,1.047,0.976,1.069,0.938,1.233,1.033,0.889,1.034,1.03,0.923,1.152,1.003,0.971,1.144,0.994,0.985,0.957,0.938,1.016,0.962,0.846,1.149,0.974,1.288,1.043,0.985,1.039,1.061,0.949,1.009,0.922,0.916,0.942,0.884,1.034 +NM_019026,0.514,1.171,0.986,0.703,0.788,1.115,0.658,0.41,0.869,0.882,1.101,0.649,0.609,0.333,0.814,2.026,0.658,1.167,0.832,1.373,0.352,0.688,1.343,0.85,0.616,0.724,0.932,0.73,0.45,1.099,0.638,1.942,1.638,1.279,0.101,1.852,1.558,0.623,1.465,1.148,0.963,1.254,0.714,1.531,0.928,1.092,1.321,0.705,1.194,0.77,1.184,1.078,0.741,1.654 +NM_019028,1.559,0.811,1.835,0.893,1.873,0.759,0.623,1.672,2.009,1.641,0.632,1.067,1.605,1.208,1.592,1.293,1.429,1.592,2.358,0.812,0.843,1.813,0.884,2.508,0.542,1.264,1.931,1.711,0.691,1.3,2.226,0.7,1.23,0.957,1.479,0.897,0.799,1.392,1.346,0.695,2.451,0.651,0.569,0.632,2.156,0.71,1.553,1.613,0.798,1.612,0.96,0.836,1.225,1.278 +NM_019030,0.864,0.794,1.154,0.802,1.198,0.98,0.835,0.631,1.468,1.2,1.062,0.765,0.679,0.925,1.154,1.574,0.958,1.08,1.026,1.168,0.842,0.724,1.287,1.0,0.665,0.688,1.172,0.985,0.682,1.129,1.344,1.105,1.809,1.25,0.649,0.68,0.9,0.987,1.115,0.689,1.311,1.039,0.696,0.787,1.146,1.09,0.886,0.795,1.295,0.894,1.099,0.73,1.0,1.314 +NM_019032,1.722,1.01,1.519,0.992,1.287,0.956,0.861,1.024,1.112,1.139,0.851,0.843,1.281,1.376,1.075,0.967,1.188,1.079,1.673,1.005,1.925,1.371,0.884,1.067,1.012,2.121,1.114,1.082,0.967,0.845,1.36,1.164,1.5,0.923,1.504,0.957,0.991,1.081,1.01,0.909,1.134,0.849,1.152,0.905,1.281,0.842,0.926,1.904,0.826,1.583,0.941,1.013,1.417,1.163 +NM_019033,1.092,1.3,1.345,0.985,1.205,0.959,0.911,1.211,1.367,1.144,0.92,1.177,0.972,0.861,1.568,0.973,1.165,1.22,1.298,1.052,0.94,1.205,0.996,1.225,0.966,1.123,1.22,1.372,1.515,0.808,1.161,1.115,0.965,0.937,0.957,0.88,0.904,1.164,0.916,0.957,1.163,1.026,0.925,0.999,1.043,0.861,1.034,1.303,0.934,1.075,1.069,0.882,1.369,1.056 +NM_019034,0.869,0.894,0.772,0.805,0.841,1.788,1.313,0.915,0.969,0.791,1.529,0.746,0.698,0.806,1.537,1.827,0.74,0.998,0.835,0.923,0.687,0.826,1.014,0.868,0.741,1.116,0.588,1.002,1.152,1.06,1.029,0.853,0.74,1.513,1.835,1.458,1.313,0.849,1.769,0.903,0.896,1.088,1.331,1.128,0.831,1.416,1.401,1.191,1.529,0.721,1.283,0.966,0.787,1.528 +NM_019035,0.65,1.177,1.033,0.865,0.702,1.659,1.312,0.652,0.767,0.698,1.607,0.743,0.668,0.672,1.077,1.574,0.649,0.858,0.719,0.95,0.73,0.606,2.286,0.647,0.919,0.577,0.746,0.803,0.609,2.914,0.737,3.961,2.083,2.041,0.659,0.94,1.164,0.747,1.655,0.999,0.928,2.145,0.724,0.791,0.762,1.272,1.041,0.69,0.964,0.757,1.265,1.507,0.783,1.698 +NM_019038,0.995,1.151,0.895,1.059,1.115,0.996,0.976,1.035,1.046,0.939,0.982,1.029,1.037,0.924,1.026,1.103,1.119,0.883,1.017,0.933,1.03,1.093,1.009,0.936,1.055,0.949,1.049,1.047,0.937,0.93,0.87,1.041,0.997,1.063,1.07,1.021,0.906,0.954,0.891,0.96,0.845,0.966,1.049,0.815,1.082,1.088,1.062,0.91,0.866,1.209,1.02,0.943,1.084,1.096 +NM_019039,0.947,1.002,1.009,0.969,1.151,1.039,1.016,0.774,1.018,0.944,1.09,1.148,1.133,0.889,1.19,1.042,0.866,0.873,1.061,1.102,0.936,1.047,0.993,0.913,1.035,0.993,1.065,0.932,0.983,0.989,0.983,0.953,1.044,0.952,1.154,0.891,1.096,0.822,1.012,0.978,1.143,1.027,0.922,1.103,1.043,1.052,1.029,0.981,0.898,1.004,1.081,0.809,0.993,1.153 +NM_019040,0.835,1.023,1.169,0.815,0.947,0.935,1.114,0.621,0.977,1.368,0.945,1.155,0.856,0.746,1.012,1.336,0.956,1.029,1.117,1.105,0.949,0.86,1.288,1.003,0.731,0.845,1.112,1.083,0.722,0.982,0.944,1.076,1.372,0.992,0.686,1.375,0.9,0.991,1.602,0.788,1.011,1.257,0.719,1.695,1.02,0.995,1.02,0.748,0.963,0.992,0.889,0.93,1.258,1.271 +NM_019042,0.872,0.851,0.976,1.13,1.015,0.879,0.899,0.824,1.372,1.135,0.982,0.99,0.866,0.77,1.037,0.91,0.936,1.006,1.1,1.025,0.862,1.046,1.372,1.175,0.955,0.99,1.06,0.92,0.806,0.933,0.988,1.112,1.712,0.946,0.791,1.075,0.913,1.031,1.035,1.052,1.014,0.941,0.957,1.216,1.082,0.978,1.077,0.936,1.129,0.91,0.933,1.204,1.191,1.639 +NM_019043,0.878,2.076,1.233,1.112,0.802,1.925,0.828,0.955,0.856,0.835,1.022,0.763,0.794,0.799,1.011,0.812,0.957,1.01,0.833,0.829,1.048,0.859,1.213,1.006,0.939,0.892,1.456,0.863,0.739,1.588,0.798,1.331,1.827,1.855,0.781,0.808,1.376,0.798,3.123,1.804,1.019,1.662,0.853,2.026,0.957,0.835,0.901,0.804,0.726,0.945,0.853,1.238,1.096,1.43 +NM_019044,1.044,1.014,0.999,0.998,0.974,0.99,0.778,1.011,0.972,1.073,1.089,1.133,0.921,0.951,0.825,0.853,0.962,0.889,1.043,0.967,1.02,0.924,0.965,0.976,1.109,1.082,1.078,1.011,0.767,0.913,0.968,0.935,0.921,0.967,0.94,1.085,1.117,0.929,1.122,1.009,0.982,0.87,1.085,1.109,1.122,0.91,1.001,1.028,0.934,0.958,1.046,1.052,1.183,0.971 +NM_019045,0.865,0.962,1.073,0.956,0.99,0.919,0.782,0.576,1.236,0.968,1.228,0.881,0.668,0.896,1.083,1.277,0.745,0.844,0.877,1.075,0.606,0.676,1.007,0.845,0.758,0.92,1.034,1.054,0.716,1.057,1.025,0.898,0.964,1.065,0.729,0.9,1.083,0.809,1.32,0.674,0.883,1.126,1.048,1.012,1.049,1.247,0.945,0.83,1.598,1.053,1.16,0.974,1.068,0.99 +NM_019048,0.641,1.312,1.347,0.686,0.877,1.127,0.891,0.555,0.911,0.92,1.161,0.999,0.735,0.634,1.076,1.32,0.861,0.956,1.122,0.897,0.534,0.65,1.425,0.893,0.613,0.749,1.151,0.894,0.571,1.335,0.777,1.779,2.886,1.435,0.302,1.054,1.268,0.846,1.207,1.081,1.235,1.001,0.729,1.747,1.008,1.078,0.947,0.603,1.045,0.849,1.008,0.948,0.891,2.84 +NM_019049,0.706,0.988,1.175,0.559,0.816,1.268,0.912,1.081,1.041,0.818,1.207,1.377,0.929,0.785,1.014,1.321,0.743,1.271,1.377,1.16,0.539,1.11,0.853,1.248,1.007,0.83,1.114,0.837,0.995,1.105,0.932,0.812,0.979,1.133,0.451,0.713,1.467,0.961,1.04,0.991,0.925,1.23,0.837,0.643,1.023,1.055,0.831,0.73,0.908,0.759,1.027,0.932,0.8,0.91 +NM_019051,0.541,1.047,0.877,0.801,0.778,1.045,0.77,0.47,0.9,0.991,1.277,0.696,0.619,0.697,0.931,1.391,0.614,0.953,1.152,0.983,0.583,0.465,1.549,0.837,0.584,0.587,1.273,0.738,0.375,1.121,0.812,1.458,2.671,1.399,0.319,1.058,1.363,0.656,1.571,1.015,0.992,1.073,0.929,1.499,0.931,1.017,1.004,0.605,0.967,0.726,1.145,1.193,1.024,2.851 +NM_019053,0.506,1.044,0.671,0.968,0.591,1.199,0.732,0.523,0.557,0.565,1.483,0.6,0.544,0.458,0.929,1.685,0.569,0.89,0.598,1.289,0.579,0.485,1.497,0.609,0.759,0.599,0.524,0.523,0.816,1.226,0.53,1.185,1.807,1.426,0.547,1.458,1.239,0.533,1.829,0.754,0.546,1.259,1.065,1.91,0.614,1.491,1.05,0.5,1.317,0.431,1.33,0.936,0.647,1.19 +NM_019055,0.942,0.938,1.083,0.891,0.907,1.02,0.906,0.934,0.985,0.891,0.978,0.964,1.006,0.882,0.908,0.96,1.042,0.934,1.002,1.069,0.956,0.991,0.904,0.963,1.024,0.87,0.77,1.1,0.937,0.995,1.116,1.169,1.073,0.968,0.996,0.989,0.994,1.018,1.143,1.384,0.916,1.188,0.879,0.996,0.984,1.005,0.897,0.975,0.909,1.013,1.074,1.239,0.875,0.974 +NM_019057,1.068,0.864,1.2,1.015,0.991,1.042,0.865,0.869,1.149,1.08,0.831,0.909,0.919,0.984,0.959,0.925,0.986,0.911,1.034,1.095,0.85,1.201,1.04,1.137,0.993,0.999,0.957,0.921,0.727,0.926,1.089,1.262,1.401,1.073,0.885,0.854,0.794,1.201,0.978,1.103,0.939,0.876,0.715,0.962,0.992,0.915,1.038,1.131,0.995,1.042,0.988,0.93,0.9,1.285 +NM_019058,1.006,0.52,1.674,0.825,0.909,0.742,0.515,0.712,0.767,1.068,1.212,0.694,0.66,0.672,0.91,1.092,1.161,1.315,1.418,0.809,0.592,0.91,1.009,1.028,0.601,0.949,1.262,0.862,0.345,1.029,0.756,0.993,0.659,0.741,1.134,0.753,0.769,1.317,1.41,2.73,1.164,0.867,0.874,0.994,1.04,0.791,1.83,1.191,0.658,0.759,0.875,1.733,3.64,0.717 +NM_019059,0.791,0.889,1.318,0.759,0.843,0.934,0.528,0.557,1.059,0.997,1.29,0.925,0.937,0.616,0.749,1.375,0.786,0.905,1.354,0.995,0.598,0.881,1.478,1.172,0.769,1.142,1.139,0.948,0.373,1.357,0.841,1.443,1.471,1.466,0.211,1.236,1.063,1.166,0.979,0.539,1.118,1.418,0.58,1.233,0.925,0.784,1.227,1.004,0.813,0.917,0.897,0.96,1.167,1.323 +NM_019061,0.988,0.988,1.341,0.977,1.206,0.851,0.71,0.673,1.229,1.053,0.867,0.786,0.815,1.193,0.88,0.962,0.826,0.974,0.926,1.046,0.8,0.723,1.225,0.961,1.002,1.128,0.874,1.237,0.775,0.873,1.191,1.049,1.659,1.056,0.827,0.929,0.871,0.83,0.967,0.834,1.205,1.014,1.029,1.714,1.003,1.038,0.901,0.814,0.861,0.964,0.998,0.977,1.181,1.401 +NM_019062,0.925,0.988,0.998,0.958,0.788,1.494,0.84,0.752,0.802,0.919,1.36,0.687,1.002,1.049,2.548,2.883,0.634,0.991,0.851,1.496,1.01,0.725,2.132,0.822,0.972,1.005,0.914,0.869,1.026,1.22,0.802,0.842,0.848,1.283,0.923,1.327,5.185,0.867,1.471,4.356,0.887,1.548,2.368,0.907,0.899,1.555,1.229,0.966,5.312,0.891,1.69,1.452,0.809,2.486 +NM_019063,0.555,1.223,0.884,0.642,0.618,1.195,0.507,0.308,0.842,0.618,1.371,0.489,0.441,0.509,1.212,2.152,0.547,0.815,0.802,1.275,0.428,0.55,2.262,0.617,0.599,0.598,1.102,0.506,0.538,1.232,0.68,1.05,1.889,1.181,0.24,0.852,1.71,0.677,1.68,1.692,0.772,1.462,0.879,1.435,0.728,1.321,0.991,0.447,1.424,0.65,1.62,0.707,0.719,1.265 +NM_019064,0.936,0.773,0.974,0.968,0.927,0.903,0.819,0.872,0.875,0.867,0.923,0.959,1.066,0.92,0.919,0.871,0.945,0.948,0.986,1.023,0.959,1.118,0.937,1.141,1.076,1.007,1.185,1.073,0.871,1.072,1.239,1.101,1.211,1.065,1.043,0.965,0.878,0.988,1.002,1.229,0.854,0.902,0.959,1.042,0.973,0.973,1.149,1.015,0.991,1.148,0.946,1.113,1.312,1.024 +NM_019065,0.952,0.972,0.901,0.975,1.037,1.191,1.244,1.193,0.902,0.865,1.064,1.025,0.997,1.061,1.167,1.164,1.102,1.081,0.996,0.892,1.077,0.895,0.886,1.041,0.91,1.173,1.01,0.991,1.184,1.038,0.872,0.977,0.886,0.986,1.067,1.077,1.0,0.902,1.027,1.091,1.112,1.063,0.922,0.99,0.952,1.212,1.007,1.047,1.072,0.995,1.15,1.116,0.881,0.789 +NM_019066,0.957,0.988,0.979,0.859,1.11,0.903,0.746,0.862,1.101,1.085,0.933,0.992,0.964,0.726,0.819,0.924,1.039,0.968,0.828,0.854,0.736,0.917,0.891,1.029,0.817,1.126,1.102,1.185,0.795,1.138,0.975,1.12,0.885,1.188,1.099,0.985,0.746,1.137,1.111,1.115,1.104,1.013,0.698,0.953,1.195,0.821,1.091,1.212,1.056,1.012,0.931,0.773,1.067,1.023 +NM_019070,0.758,1.062,1.436,0.715,0.906,1.055,0.757,0.753,1.056,1.13,0.791,1.031,0.901,0.61,1.07,1.153,1.02,0.913,1.051,0.97,0.506,0.882,1.422,1.127,0.659,1.024,1.199,0.99,0.654,1.105,0.992,1.266,1.224,1.1,0.493,0.89,0.792,1.036,1.642,0.893,1.132,0.946,0.719,1.247,1.202,0.784,1.014,0.848,1.218,0.895,0.982,0.901,0.976,1.249 +NM_019071,1.2,0.988,1.115,1.112,0.97,1.063,1.083,1.113,0.83,0.873,1.024,0.991,1.112,1.078,0.865,1.102,0.9,0.999,1.045,1.05,0.851,0.991,0.85,1.024,0.993,0.804,1.133,0.994,0.751,1.052,0.947,1.006,0.784,1.063,1.138,0.973,1.174,0.964,1.169,0.992,0.982,1.033,0.899,1.021,1.187,0.923,0.773,1.043,0.982,0.938,0.999,1.036,1.001,0.894 +NM_019073,0.934,1.131,1.006,1.156,0.913,1.161,1.193,0.872,0.769,1.041,1.054,0.913,0.981,0.741,0.959,1.176,0.916,0.997,0.918,1.138,1.004,0.821,1.05,0.884,0.852,0.976,1.123,0.918,0.885,1.151,0.918,1.042,0.975,1.656,0.847,0.768,1.077,1.008,1.129,1.039,0.888,1.106,1.052,0.959,1.015,1.003,0.811,0.942,1.056,0.843,0.946,0.888,1.002,0.998 +NM_019074,1.002,0.818,0.927,1.062,0.859,0.92,0.871,0.932,1.001,0.928,1.018,0.929,0.831,0.733,1.019,1.065,0.884,1.119,0.98,0.961,1.024,1.019,1.064,0.987,0.965,0.929,1.039,0.904,1.035,0.828,1.004,0.958,1.05,0.967,0.839,1.001,0.972,0.999,1.095,1.322,0.92,1.204,1.058,0.982,0.951,1.018,1.04,1.004,1.058,0.913,0.849,1.262,0.912,0.909 +NM_019075,1.048,1.101,0.887,1.145,1.11,1.048,0.987,0.99,1.018,1.006,1.365,0.781,1.005,0.824,1.011,1.497,0.859,0.948,1.101,1.13,1.019,0.947,1.233,0.927,0.834,0.876,0.821,0.794,0.738,1.158,0.847,0.945,1.168,1.219,0.979,0.944,1.032,0.861,1.047,0.969,0.996,1.013,0.915,1.082,0.911,0.97,1.065,0.869,1.14,1.065,1.132,1.099,1.018,1.026 +NM_019077,1.07,0.968,1.096,0.971,0.99,1.038,1.115,1.007,1.111,1.12,1.107,1.176,0.956,0.944,0.789,1.099,0.959,0.999,1.073,1.016,0.957,0.926,0.969,0.973,0.96,1.103,1.078,1.054,1.251,1.036,1.154,1.01,0.947,0.963,1.046,0.975,0.913,1.019,1.089,1.027,1.092,1.157,1.041,0.901,1.17,0.934,0.87,1.079,0.801,1.177,0.969,1.017,1.001,0.983 +NM_019079,0.968,0.984,0.899,1.092,1.157,1.043,1.195,0.966,1.068,1.105,1.015,1.017,1.08,0.959,0.846,1.08,1.027,0.953,0.972,1.15,0.872,1.002,1.087,0.887,0.943,0.919,0.86,0.952,0.995,1.012,0.935,0.86,0.998,0.963,1.109,1.097,1.106,0.959,1.144,1.045,1.168,0.955,1.181,0.952,1.011,1.058,0.937,0.974,0.946,1.018,0.889,1.117,1.192,1.087 +NM_019081,0.666,1.162,1.468,0.739,0.856,0.993,0.782,0.39,0.981,0.77,1.356,0.547,0.481,0.911,1.086,1.261,0.837,0.742,1.081,1.428,0.604,0.615,1.155,0.666,0.938,0.708,1.168,0.81,0.476,1.367,0.962,1.407,1.542,1.76,0.434,0.687,0.912,0.767,1.318,0.863,0.969,1.539,0.674,0.853,0.809,1.024,0.743,0.574,0.875,0.902,1.216,0.6,0.926,1.272 +NM_019082,0.594,0.894,1.023,0.651,0.804,0.87,0.557,0.381,1.196,1.281,0.707,0.882,0.469,0.517,0.78,1.044,0.797,0.851,1.264,0.78,0.584,0.748,1.903,1.209,0.496,0.822,1.049,0.708,0.425,1.305,0.873,1.441,2.336,1.062,0.156,1.715,1.004,0.784,1.505,0.964,1.099,1.033,0.738,3.19,1.045,0.883,1.365,0.605,1.063,0.69,1.016,1.408,1.048,2.479 +NM_019084,1.127,0.858,0.98,0.949,0.876,0.947,0.873,0.986,1.272,1.075,1.037,0.93,0.951,0.832,0.984,1.285,0.958,1.194,1.009,1.048,1.011,0.927,0.999,0.943,1.019,0.937,0.758,0.924,0.893,1.062,0.945,1.169,0.969,0.963,0.857,1.036,1.019,0.851,1.001,0.963,1.019,1.125,0.992,0.962,0.922,1.018,1.012,1.048,1.059,1.03,1.016,1.042,1.039,1.075 +NM_019085,0.933,0.949,1.008,0.966,0.936,0.964,0.635,0.776,0.985,1.099,0.855,0.779,0.939,0.905,0.821,1.028,1.222,0.918,1.106,0.825,1.096,1.104,0.844,1.131,0.9,1.149,1.365,0.756,0.769,0.888,0.923,1.002,0.92,1.011,0.888,0.877,0.946,1.165,1.478,1.391,0.979,1.008,0.911,1.554,0.851,0.828,1.078,1.232,1.072,1.125,0.92,0.907,0.918,1.136 +NM_019086,1.034,0.953,1.152,0.994,1.087,1.063,1.124,0.973,1.088,0.958,1.113,0.969,0.943,1.321,1.345,1.095,1.017,0.91,1.037,1.004,0.943,0.963,0.966,0.906,0.874,1.079,0.941,1.177,1.217,0.953,1.368,1.058,0.965,1.03,1.22,0.988,1.02,1.071,0.846,0.95,1.024,0.988,0.959,1.053,1.086,1.007,1.082,1.036,1.134,0.976,1.021,0.801,0.984,0.965 +NM_019087,0.88,1.023,0.999,0.807,1.21,1.374,1.053,1.192,1.154,1.028,0.883,1.273,0.901,0.743,0.945,1.283,0.874,1.03,0.97,1.094,0.767,1.114,0.971,1.093,0.844,1.052,1.115,1.001,1.229,0.899,1.016,1.174,1.069,1.151,1.031,0.749,0.981,0.942,1.027,1.105,0.812,1.035,0.792,0.64,0.952,1.103,0.999,1.004,1.12,0.948,1.14,1.025,0.831,1.012 +NM_019088,0.827,0.918,1.23,0.746,1.234,1.017,0.526,0.837,1.222,1.29,0.786,0.855,0.75,0.828,0.781,0.962,1.32,0.818,1.15,0.776,0.837,1.389,1.19,1.278,0.619,0.99,1.44,0.893,0.46,0.974,1.079,0.987,1.74,1.054,1.587,0.822,0.854,1.111,1.321,1.007,1.428,0.99,0.687,1.147,1.11,0.84,0.993,1.192,0.859,1.11,0.982,0.779,1.179,1.112 +NM_019090,0.836,1.117,0.929,0.985,0.798,1.11,1.046,1.017,1.022,0.924,1.484,0.852,0.957,0.886,1.069,1.215,0.904,0.983,0.993,0.975,0.976,0.972,1.12,0.903,0.96,0.939,0.982,1.0,0.812,1.055,0.9,1.203,1.412,1.197,0.826,1.231,1.131,0.975,0.964,1.264,0.955,1.113,0.843,1.373,0.811,0.881,0.92,0.864,0.941,0.81,1.003,0.91,0.95,0.889 +NM_019091,0.676,1.888,0.837,0.913,0.789,1.441,0.784,0.634,0.725,0.684,1.26,0.697,0.765,0.85,0.967,1.342,0.785,1.033,0.871,1.195,0.712,0.664,1.106,0.688,0.877,0.917,0.809,0.783,0.782,1.336,0.818,1.382,2.499,1.963,0.711,0.847,1.356,0.739,1.663,0.94,0.906,1.463,0.95,1.255,0.693,1.481,0.844,0.787,0.945,0.778,1.11,0.782,0.883,1.84 +NM_019092,0.917,1.003,1.142,0.776,1.187,0.946,0.986,1.146,1.138,1.016,0.851,1.207,0.96,0.935,1.141,0.802,1.134,0.993,0.955,0.912,0.978,1.402,1.024,1.065,0.963,0.882,1.338,1.085,1.082,1.154,1.45,1.439,1.13,0.914,1.036,0.827,1.014,1.091,0.992,1.06,1.139,1.093,0.694,0.723,0.887,0.95,1.043,0.895,0.935,0.972,0.971,1.019,0.952,1.226 +NM_019093,0.968,0.912,1.043,1.123,1.156,0.986,0.964,1.002,1.065,0.962,1.07,1.076,0.989,1.052,0.974,1.246,1.104,0.945,0.982,1.059,0.947,0.861,0.987,0.998,1.02,0.983,0.904,0.991,0.832,0.962,0.98,0.936,0.919,0.947,1.072,1.023,1.223,0.961,1.07,0.989,1.005,0.904,0.902,0.997,1.076,0.987,1.088,0.91,1.027,1.179,1.087,1.087,1.026,0.899 +NM_019094,0.524,1.752,0.782,0.696,0.541,2.371,0.93,0.622,0.987,0.628,1.466,0.623,0.693,0.527,1.116,1.952,0.542,1.093,0.759,1.966,0.565,0.617,1.474,0.674,0.552,0.552,0.754,0.785,0.463,1.244,0.707,1.046,3.619,2.2,0.424,1.085,1.532,0.626,1.231,1.076,0.79,1.689,0.647,1.33,0.653,1.359,0.712,0.485,1.052,0.423,1.159,0.735,0.655,1.895 +NM_019095,0.487,0.923,0.823,0.767,0.666,1.644,0.736,0.514,0.885,0.806,1.991,0.703,0.62,0.442,1.039,2.479,0.543,0.855,0.982,1.374,0.376,0.457,2.567,0.775,0.916,0.599,0.815,0.66,0.515,2.405,0.651,1.093,2.616,2.239,0.189,0.816,2.126,0.782,1.533,1.018,0.651,1.254,1.057,1.709,0.589,1.267,1.083,0.528,0.871,0.525,1.458,0.981,0.584,2.669 +NM_019096,1.882,0.596,1.265,1.12,1.292,1.112,0.549,1.641,1.59,0.897,0.95,0.819,1.328,1.364,1.428,1.319,1.219,1.049,1.737,0.728,0.78,1.794,0.561,1.395,0.645,1.927,1.2,1.074,0.638,0.866,1.598,0.908,1.232,1.17,3.532,0.665,0.883,1.316,1.446,1.002,1.314,0.655,0.64,0.979,1.159,0.69,0.945,2.299,0.666,1.365,0.78,0.707,1.085,1.141 +NM_019098,0.996,0.855,1.117,0.926,1.086,0.986,0.855,1.282,0.993,1.077,1.023,0.857,1.066,1.09,1.095,0.966,0.959,1.093,0.876,1.068,0.963,1.043,0.872,1.009,1.109,0.852,0.928,0.957,1.302,1.019,1.049,1.024,1.045,0.927,1.095,0.91,1.059,0.924,0.993,0.825,0.948,1.06,1.338,0.889,0.923,1.071,0.97,1.023,0.857,0.943,1.028,0.925,1.061,0.98 +NM_019099,0.971,0.991,1.048,0.817,1.013,0.959,0.999,0.975,0.962,1.006,1.0,1.138,0.909,0.786,0.96,0.984,1.089,0.977,1.015,0.959,0.965,0.96,0.983,1.202,0.995,1.115,1.144,1.075,0.88,1.08,0.951,1.0,0.931,0.943,0.956,1.142,0.989,1.092,1.175,1.116,1.036,1.031,1.065,1.029,1.07,0.944,0.995,0.934,0.974,0.938,1.04,1.074,1.055,0.901 +NM_019100,0.8,1.043,1.115,0.81,0.796,1.1,0.65,0.398,0.852,0.75,1.384,0.628,0.58,0.623,0.983,1.223,0.807,0.84,1.002,1.396,0.574,0.648,1.434,0.759,0.772,0.828,1.073,0.698,0.453,1.332,0.66,1.823,1.502,1.678,0.318,0.953,1.249,0.712,1.237,0.787,0.792,1.547,0.914,1.465,0.998,1.064,0.89,0.708,0.947,0.691,1.112,0.922,1.02,1.692 +NM_019101,0.839,0.923,1.033,0.875,1.098,1.024,0.953,1.137,0.964,1.048,0.97,1.041,0.942,0.968,1.005,1.021,0.971,0.957,0.931,1.094,0.835,1.005,0.991,1.089,0.97,0.955,1.07,1.035,0.917,1.041,1.081,0.981,0.991,1.129,1.088,0.905,1.114,1.087,1.095,0.91,0.995,1.003,1.233,0.991,1.179,0.926,1.052,1.078,1.127,1.013,0.985,0.954,0.944,1.12 +NM_019102,0.988,0.698,1.472,0.543,1.276,1.011,0.471,0.727,1.296,0.869,0.974,1.067,0.81,1.426,1.514,0.937,1.099,1.066,1.54,1.005,0.8,0.922,1.4,1.86,0.555,1.103,1.075,1.072,0.374,0.749,1.041,2.081,2.331,0.821,0.538,1.01,0.756,1.155,0.92,1.58,1.495,1.258,0.614,1.68,1.122,0.726,1.073,0.859,0.51,0.952,1.265,0.916,1.132,1.109 +NM_019103,0.82,1.015,1.604,1.008,1.011,0.905,0.881,0.774,0.809,0.915,1.158,0.806,1.013,0.899,0.892,0.97,2.047,1.118,2.02,0.794,0.884,0.927,0.767,0.934,0.906,0.985,1.177,0.785,0.747,0.852,0.975,0.935,1.198,0.979,0.81,0.77,0.939,0.959,1.199,0.748,1.492,0.962,0.712,1.056,1.144,0.921,1.017,1.147,0.799,1.512,0.884,0.882,1.836,1.493 +NM_019104,0.892,1.014,1.101,0.902,1.025,1.204,0.886,0.718,1.08,0.92,1.036,0.873,0.85,0.706,0.839,1.197,0.905,0.909,1.134,1.189,0.879,0.919,1.166,1.086,0.786,0.963,1.203,0.963,0.698,1.012,1.107,1.265,1.831,1.188,0.795,1.051,0.931,1.027,1.077,1.111,0.843,1.171,0.811,0.931,1.007,0.985,1.026,1.013,0.98,0.898,0.986,0.995,0.932,1.147 +NM_019105,0.97,1.046,0.855,0.969,0.958,0.989,0.907,0.983,0.994,1.008,1.007,0.894,1.11,0.966,1.076,1.066,0.945,1.06,0.93,1.087,1.003,0.996,1.059,0.923,1.027,1.067,0.94,1.074,0.965,0.976,0.908,0.967,1.007,0.836,1.058,1.038,1.033,1.037,0.992,0.931,1.1,1.129,0.864,0.992,1.034,1.008,0.992,1.079,0.969,0.972,0.954,1.013,1.099,0.912 +NM_019106,1.058,1.116,0.986,0.941,1.173,0.903,0.905,0.948,1.125,1.211,0.953,1.132,0.939,0.949,0.752,1.084,1.089,0.972,1.033,0.893,1.028,0.886,1.092,0.887,0.914,0.965,1.09,1.15,1.138,1.003,0.958,0.979,0.862,0.869,1.05,1.211,1.094,0.991,0.967,1.021,1.134,1.173,0.852,0.963,0.969,1.065,1.013,1.006,1.008,1.107,0.972,0.863,0.975,0.948 +NM_019107,0.457,1.175,0.748,0.812,0.638,1.246,0.793,0.349,0.834,0.637,0.931,0.793,0.518,0.349,0.968,1.685,0.614,0.818,0.743,1.054,0.336,0.56,1.843,0.916,0.729,0.608,0.877,0.66,0.391,1.458,0.576,1.818,0.904,1.13,0.071,2.031,1.235,0.54,1.518,1.331,1.029,1.372,0.909,1.744,0.9,1.437,1.315,0.528,2.015,0.563,1.614,1.122,0.66,1.444 +NM_019108,0.822,1.089,0.981,0.952,1.12,1.036,0.992,0.976,1.009,0.947,0.946,0.846,1.01,1.051,1.011,0.902,0.927,0.915,0.949,1.035,0.999,0.943,1.275,1.008,0.927,1.048,1.145,0.861,1.34,0.99,0.934,1.198,1.023,1.044,0.961,0.954,0.993,1.045,1.336,0.986,1.06,0.939,0.998,0.961,0.921,1.007,1.009,0.961,1.122,1.053,1.06,0.997,0.876,1.224 +NM_019109,0.548,1.069,0.745,0.901,0.621,1.154,0.794,0.386,0.572,0.67,1.251,0.496,0.512,0.486,0.665,1.663,0.65,0.949,0.706,1.071,0.452,0.528,1.605,0.604,0.849,0.67,0.877,0.496,0.639,1.805,0.505,1.177,2.028,1.593,0.369,1.198,1.162,0.652,2.374,0.793,0.666,1.439,0.754,1.871,0.68,1.068,0.977,0.593,1.009,0.674,1.395,0.94,0.706,1.248 +NM_019110,0.79,1.013,1.082,0.863,1.053,1.286,0.765,0.664,1.004,0.898,0.947,0.936,0.861,1.056,0.882,1.137,0.873,0.916,1.002,1.181,0.861,0.872,1.063,1.101,0.912,1.009,0.936,0.99,1.058,1.158,0.953,1.126,1.194,1.317,0.75,0.851,1.087,0.985,0.888,0.924,0.999,1.095,0.763,0.997,0.842,0.84,0.972,0.887,0.779,0.968,1.017,0.931,0.765,1.777 +NM_019111,0.737,2.723,1.279,0.741,0.713,1.067,1.305,0.372,0.943,0.713,0.581,0.387,0.66,0.444,1.142,0.756,0.631,0.606,0.687,0.536,0.56,0.554,1.334,0.8,0.726,0.668,1.631,0.639,0.223,1.429,0.574,4.454,0.854,1.666,0.223,0.321,1.06,0.577,3.016,0.895,0.886,2.838,0.619,1.535,1.035,0.644,0.618,0.434,1.351,0.871,0.976,1.519,2.604,3.059 +NM_019112,0.955,1.058,1.118,1.164,0.999,0.997,1.167,0.985,0.869,1.146,1.151,1.007,1.204,1.001,0.826,1.016,0.955,1.057,1.096,0.967,1.042,1.052,1.077,1.001,1.0,1.009,1.042,1.081,1.251,1.002,0.979,0.953,0.909,1.024,0.953,0.887,1.013,1.021,0.97,0.977,0.868,0.882,0.793,0.929,1.075,1.086,0.874,0.989,0.971,0.894,0.955,1.083,0.913,1.021 +NM_019113,1.195,0.889,1.066,0.942,1.089,0.917,1.229,1.232,0.963,1.011,0.939,0.999,0.9,0.995,1.116,1.0,0.859,0.846,1.09,1.091,1.009,0.933,0.973,0.961,0.978,1.06,1.086,1.099,1.399,1.123,1.019,1.137,0.816,1.041,0.845,0.957,0.877,1.084,0.996,0.922,1.127,0.916,1.339,0.864,0.945,1.031,1.075,1.0,1.026,1.072,1.063,0.943,1.127,1.142 +NM_019114,1.013,0.937,1.014,1.091,0.98,0.926,0.958,0.957,1.084,0.978,1.105,0.968,1.176,1.104,1.282,1.132,1.009,0.954,1.044,0.966,0.977,0.947,1.103,0.905,0.995,1.01,0.98,1.084,1.234,1.047,1.043,0.971,0.969,0.928,0.99,1.252,1.132,0.995,1.035,0.998,0.975,1.099,1.238,1.07,0.972,0.878,0.999,1.008,0.942,0.955,0.977,1.081,1.083,1.052 +NM_019116,0.863,1.003,1.03,0.751,1.032,0.894,0.819,0.884,0.941,0.992,0.763,1.21,0.861,0.643,1.07,1.244,0.945,0.927,1.226,0.956,0.871,0.971,1.143,1.059,0.693,0.899,1.261,0.99,0.786,0.868,0.965,1.55,1.747,0.938,0.564,0.961,0.833,1.036,1.419,0.791,1.075,0.948,0.594,1.21,1.137,0.796,1.101,0.841,1.001,0.89,1.05,1.139,1.018,1.469 +NM_019117,0.998,0.984,1.115,1.076,0.843,0.987,1.055,0.938,0.991,1.036,0.976,1.101,1.004,1.035,1.14,0.866,1.101,0.986,1.196,1.021,0.989,0.728,0.914,0.999,1.001,0.92,0.835,0.882,0.894,0.996,1.01,1.224,1.158,0.978,0.951,0.992,1.036,0.843,1.005,0.872,1.112,1.027,0.974,1.044,1.05,1.093,0.956,1.149,1.03,1.22,0.959,1.08,1.348,0.968 +NM_019118,1.05,0.919,0.999,1.026,0.928,1.217,0.788,1.0,0.991,0.874,0.942,0.949,0.94,0.872,0.904,1.001,0.965,0.845,0.983,0.984,1.127,1.013,1.014,1.037,1.023,0.985,0.937,1.02,0.528,1.015,1.043,1.073,1.088,1.003,0.864,1.054,0.985,0.901,1.0,0.955,1.003,1.112,1.252,0.974,0.959,0.919,1.103,0.951,1.019,0.945,1.114,1.026,0.892,1.162 +NM_019120,1.043,0.855,0.995,0.887,0.852,1.008,0.946,1.03,0.894,1.034,1.137,1.131,0.899,0.974,1.036,0.905,1.006,0.969,0.909,1.072,1.022,0.993,0.977,0.968,1.108,1.047,1.107,0.978,1.043,1.135,0.921,1.272,1.054,1.011,1.043,1.021,0.918,1.013,1.056,1.023,0.883,0.989,0.927,1.057,1.015,1.005,1.046,0.991,0.983,1.043,1.079,0.948,0.978,0.843 +NM_019554,0.349,1.482,1.436,0.651,0.69,1.175,0.541,0.651,0.972,0.777,0.758,0.609,0.615,0.472,0.729,1.058,0.899,0.713,0.76,1.107,0.631,0.646,2.104,0.657,0.462,0.681,1.305,0.887,0.229,1.635,0.823,3.615,3.001,2.023,0.462,24.03,0.599,0.991,1.754,4.341,1.154,1.343,0.443,0.619,0.996,0.579,0.935,0.434,0.507,0.712,1.168,1.342,1.099,11.87 +NM_019555,0.848,0.883,1.765,0.787,0.98,0.821,0.62,0.768,1.218,1.207,0.726,1.022,0.843,1.048,0.923,0.964,0.915,0.926,1.82,1.021,0.703,1.071,1.108,1.375,0.754,1.188,1.838,1.055,0.403,1.117,1.444,1.061,1.22,1.525,0.327,0.662,0.745,1.264,1.046,0.475,1.276,1.194,0.506,0.867,1.23,0.595,0.813,1.209,0.471,1.357,0.768,0.962,1.404,1.654 +NM_019556,1.249,0.979,1.174,0.937,1.763,0.839,0.846,1.244,1.737,1.415,0.791,1.05,1.0,1.401,1.396,0.987,1.046,1.149,1.798,0.802,0.993,0.963,0.852,1.471,0.773,1.785,1.43,1.672,0.862,0.855,1.619,1.008,1.536,0.954,2.101,0.756,0.87,1.354,0.861,0.919,1.22,0.935,1.028,1.078,1.593,0.863,1.35,1.572,0.825,1.061,0.973,0.799,1.253,1.0 +NM_019557,0.891,1.157,0.985,0.887,0.844,1.284,0.806,0.712,1.009,0.853,1.008,0.928,0.834,0.781,0.954,1.346,1.009,0.889,0.955,1.024,0.739,0.714,1.313,1.036,1.089,0.884,1.215,0.898,0.435,1.273,1.0,1.548,0.993,1.505,0.661,0.71,1.294,0.844,1.291,0.764,1.131,1.215,0.787,0.901,0.819,0.989,0.952,0.746,1.048,0.818,1.176,0.813,0.729,1.839 +NM_019558,0.926,0.9,1.051,1.018,0.932,0.898,0.932,0.85,0.944,1.057,0.975,1.037,1.092,0.92,1.122,0.941,0.922,1.08,0.917,0.83,0.936,1.026,0.88,0.919,0.998,0.944,0.803,1.037,0.996,1.091,1.049,1.241,1.038,1.063,1.186,1.224,0.981,1.006,1.11,1.155,1.012,1.006,1.07,0.886,0.847,1.008,1.131,1.099,0.873,1.035,1.067,1.336,1.199,0.951 +NM_019559,1.032,1.068,0.999,1.076,1.078,0.977,0.845,1.003,0.934,1.044,0.962,1.013,0.972,0.762,0.904,1.004,0.947,0.932,1.149,0.935,0.98,1.039,1.122,0.806,1.065,0.921,0.821,0.948,0.815,0.961,1.004,1.075,0.99,1.059,0.964,0.96,1.227,1.116,1.132,0.958,0.92,0.924,0.965,1.103,1.018,1.082,0.991,1.171,1.019,0.988,1.083,0.905,0.955,1.172 +NM_019590,0.906,0.905,1.279,0.917,0.957,0.883,0.752,0.665,1.038,1.005,0.942,0.91,0.811,0.796,1.033,0.987,0.815,0.856,0.86,1.092,0.851,0.84,1.046,0.868,0.837,0.98,1.059,1.087,0.774,1.09,1.076,1.997,1.493,1.098,0.738,0.767,0.935,0.898,1.009,1.017,1.175,1.117,0.667,0.777,1.041,1.153,0.751,0.834,1.024,0.897,0.994,0.813,0.983,1.136 +NM_019591,0.919,0.978,1.021,0.87,0.964,1.044,0.853,0.88,1.122,0.914,1.135,1.002,1.022,1.269,0.994,1.104,0.835,0.869,0.905,1.054,0.818,1.046,0.9,1.044,0.975,0.918,1.035,0.891,0.65,1.214,1.022,1.399,1.171,1.243,0.628,1.028,1.003,0.89,1.147,1.161,1.007,0.972,0.9,0.987,0.915,0.974,0.96,0.877,0.847,0.914,0.919,0.815,0.927,1.399 +NM_019592,0.664,1.21,1.613,0.59,1.238,1.356,0.935,0.812,1.172,1.002,0.632,1.346,0.831,0.772,0.949,1.362,1.169,1.074,0.631,1.423,0.433,1.191,1.085,1.324,0.568,0.457,1.519,0.999,0.667,1.334,1.553,2.796,2.623,1.169,0.658,0.428,0.825,1.363,1.504,0.921,1.136,1.099,0.538,0.598,1.206,0.776,0.904,0.873,1.17,0.975,1.135,0.797,0.451,1.569 +NM_019593,0.733,0.66,1.515,0.831,1.085,0.994,1.045,1.166,1.511,0.879,0.806,1.164,0.847,0.899,1.029,1.658,1.464,1.103,1.02,0.859,0.752,1.188,1.113,1.212,0.588,0.978,1.407,1.174,0.837,1.024,1.271,0.749,1.247,1.035,2.224,0.749,0.991,1.131,0.87,1.204,1.8,0.868,0.827,0.926,1.061,0.876,0.957,1.089,0.924,1.056,0.927,0.981,1.148,1.245 +NM_019596,0.958,1.122,1.091,0.967,1.008,0.936,0.875,1.057,1.206,1.051,1.08,0.85,1.083,0.811,0.78,1.042,0.905,1.001,0.841,0.927,1.041,1.183,1.156,0.963,0.871,1.091,0.925,1.105,0.81,0.974,1.077,0.963,0.951,1.087,1.096,0.943,0.959,0.983,1.1,1.065,1.162,0.964,0.771,0.999,1.013,0.968,1.034,1.047,0.987,1.215,1.007,0.975,1.005,1.021 +NM_019597,0.704,0.939,1.087,0.726,0.871,0.733,0.604,0.532,1.389,1.157,1.073,0.591,0.543,0.83,1.067,1.471,0.84,0.864,1.01,0.872,0.681,0.469,1.279,0.782,0.711,0.817,1.104,0.954,0.428,1.002,1.164,1.26,1.364,1.183,0.702,1.041,0.91,0.71,1.014,0.697,1.058,1.19,1.076,1.088,0.928,1.182,1.073,0.609,1.154,0.844,0.93,0.865,1.179,1.178 +NM_019599,1.032,0.964,1.01,0.961,1.039,1.081,1.018,1.17,0.938,0.981,1.028,1.012,1.053,0.905,1.052,1.088,1.198,0.936,0.978,1.046,1.024,1.073,0.948,0.979,0.987,0.989,0.832,1.06,0.928,0.983,1.045,0.968,0.977,0.944,1.088,1.128,0.959,0.96,0.97,0.94,1.08,1.047,1.024,0.882,0.938,1.143,0.947,1.136,0.955,0.924,0.978,1.061,0.923,0.935 +NM_019602,1.061,0.988,1.036,1.118,0.985,0.957,1.049,1.155,1.011,1.01,0.86,1.089,0.973,0.891,0.89,1.108,0.961,1.001,0.921,1.023,0.845,1.005,0.96,0.952,0.919,0.878,1.204,1.207,1.035,0.968,1.055,0.903,1.147,1.025,1.157,0.932,1.051,1.044,0.946,0.896,1.042,0.975,1.141,1.056,0.941,0.941,0.962,1.018,0.885,0.826,1.234,0.983,0.939,1.07 +NM_019604,1.041,0.985,1.057,0.89,0.936,1.064,1.189,1.105,1.008,1.164,1.027,1.035,0.94,1.0,0.903,1.12,0.967,1.043,0.938,1.059,0.923,0.996,1.038,0.952,0.979,1.004,0.96,1.02,1.236,1.017,0.937,1.013,1.034,1.067,1.061,1.038,0.978,0.92,0.928,0.92,0.974,0.923,1.166,0.952,1.147,0.817,1.098,0.974,1.044,1.023,0.975,0.96,0.909,1.028 +NM_019607,0.948,1.099,1.054,1.023,0.924,1.062,1.059,1.006,0.921,0.839,1.023,1.183,1.041,0.911,0.8,0.951,0.964,0.889,0.877,0.982,0.977,1.056,0.982,0.974,0.956,0.91,1.017,0.999,0.995,0.987,0.927,1.033,1.008,0.901,1.073,1.003,0.985,0.955,0.936,0.999,0.929,1.116,0.867,0.96,0.983,1.103,1.045,1.043,0.967,0.907,0.996,0.982,1.02,0.957 +NM_019609,0.937,0.84,0.979,1.116,0.756,1.052,1.08,1.145,0.944,0.992,1.019,0.956,0.881,1.199,0.954,0.968,0.994,0.912,0.975,0.94,1.022,0.929,1.1,1.0,1.022,0.979,1.023,1.033,0.737,1.212,0.884,3.133,0.935,0.927,1.073,1.017,0.909,0.908,1.09,1.199,0.939,1.145,0.994,0.984,1.186,1.036,1.102,0.968,0.952,0.968,1.003,1.2,1.19,1.022 +NM_019610,0.866,0.954,1.35,0.931,1.214,1.04,1.04,1.027,1.154,1.03,1.019,0.988,0.891,0.928,0.968,1.197,0.921,1.063,0.927,0.951,0.871,0.842,1.105,1.082,0.869,0.892,1.043,1.152,0.781,1.046,1.403,0.904,1.348,1.133,0.877,0.801,0.783,1.028,1.1,0.887,1.119,1.148,0.814,0.772,1.001,0.882,0.917,0.733,1.01,0.858,1.142,0.964,0.909,1.117 +NM_019612,0.91,1.16,1.112,0.946,0.967,1.091,1.018,1.016,0.976,0.996,0.837,1.008,0.981,0.747,0.964,1.022,0.936,1.135,1.031,0.942,0.938,0.887,0.923,0.981,1.016,1.151,1.157,0.97,0.859,0.989,0.982,1.062,1.02,1.059,1.134,1.062,1.055,0.972,1.003,0.952,0.996,1.038,0.868,0.956,0.904,0.965,1.054,1.086,0.993,1.061,0.925,0.953,0.956,0.882 +NM_019613,0.928,0.831,1.514,0.978,0.999,1.111,0.558,0.867,1.273,0.863,0.918,0.813,0.901,0.782,1.109,1.066,1.064,0.813,1.33,0.995,0.666,0.652,0.874,1.128,0.76,1.104,1.043,1.16,0.45,0.982,1.14,1.558,1.52,1.316,1.145,0.657,0.901,0.977,1.16,0.977,1.119,0.921,0.873,1.619,1.187,0.843,0.993,0.857,0.843,1.158,0.965,0.766,1.001,2.031 +NM_019616,1.061,1.107,1.074,0.968,1.199,1.154,1.163,0.973,0.947,0.952,0.915,0.887,0.999,1.23,1.097,1.109,1.047,0.888,1.005,1.044,0.878,1.096,1.064,0.919,0.965,1.079,0.818,1.0,1.192,1.006,0.906,0.901,1.105,1.156,0.913,1.126,0.984,0.979,0.922,1.029,1.05,0.973,1.026,0.97,1.062,0.938,0.996,1.0,1.01,0.926,1.062,1.018,0.914,0.99 +NM_019617,0.526,165.6,0.573,78.4,0.569,158.3,76.43,0.58,1.211,0.671,2.834,1.961,0.577,0.505,0.545,0.44,0.655,123.8,0.508,133.0,0.535,2.728,0.475,1.801,153.8,0.842,0.685,1.699,71.28,121.5,1.041,12.95,0.432,187.6,0.512,0.482,85.85,0.488,7.73,0.513,0.492,98.73,0.633,0.496,0.421,0.47,3.171,0.47,0.469,4.092,1.307,4.176,0.544,0.548 +NM_019618,1.151,0.775,2.62,1.156,2.596,0.794,0.866,1.848,0.969,2.584,0.776,1.404,1.534,0.804,1.06,1.983,1.163,1.305,4.423,0.705,1.283,0.767,0.704,1.735,0.719,0.802,7.683,1.078,0.717,0.882,1.233,0.651,3.261,0.869,1.753,0.749,0.819,2.076,0.853,0.837,2.016,0.806,0.82,0.891,2.798,0.87,3.721,1.061,0.941,6.003,1.298,4.028,5.431,2.577 +NM_019619,0.933,1.024,1.106,0.936,1.142,0.915,0.809,1.025,1.027,1.094,0.969,0.986,1.089,1.143,0.929,0.963,1.045,0.893,0.984,0.944,0.927,1.116,0.937,0.997,0.977,1.024,1.246,1.163,1.003,1.067,1.151,1.081,1.087,1.0,1.041,1.0,0.984,0.9,0.97,0.899,1.02,1.041,0.796,0.966,1.057,1.017,1.041,0.993,0.958,1.014,1.026,0.874,0.896,1.008 +NM_019624,0.983,0.908,1.049,0.829,1.064,1.002,0.839,1.217,0.998,0.886,0.989,0.917,1.102,0.89,1.145,1.16,1.064,1.067,1.404,0.891,0.968,0.889,0.961,0.828,0.801,1.129,1.066,0.787,0.789,0.878,0.949,1.032,1.441,1.086,2.336,1.107,0.839,1.009,1.119,1.179,0.761,0.906,0.62,1.19,0.928,0.701,1.119,1.287,0.794,0.98,0.968,0.949,0.884,1.143 +NM_019625,1.079,1.017,0.974,1.049,1.071,0.915,1.028,0.723,0.875,1.214,1.07,1.082,0.951,0.964,1.115,1.091,0.947,1.194,1.073,0.865,1.027,1.045,1.092,1.091,0.972,0.93,1.079,1.021,0.906,1.079,0.961,0.912,1.013,0.872,1.113,0.905,0.984,1.033,0.887,0.944,1.075,0.855,0.956,1.017,0.961,0.867,0.939,1.025,0.897,1.084,1.117,1.021,1.082,0.889 +NM_019644,1.085,0.999,0.902,1.074,0.963,0.941,0.998,1.034,0.964,1.135,0.998,1.002,1.192,0.989,1.117,1.03,1.12,1.024,1.037,0.967,1.035,0.897,1.112,0.905,0.981,1.053,0.998,1.042,0.856,1.063,1.006,0.962,1.023,0.833,1.222,1.147,0.974,0.892,0.922,0.939,1.045,1.038,1.057,1.067,0.969,1.05,0.991,1.118,0.968,1.032,1.061,0.989,1.261,0.937 +NM_019839,1.195,0.955,1.297,1.025,1.122,0.856,1.06,0.78,1.418,1.535,0.825,1.199,1.257,0.988,0.894,1.079,1.586,1.177,1.671,0.963,1.477,0.996,0.862,1.23,0.973,1.103,1.414,1.076,0.846,0.942,1.175,0.864,1.064,0.833,0.84,0.953,1.004,1.224,0.982,0.819,1.427,0.928,0.962,0.949,1.713,0.814,1.315,1.14,0.832,2.038,0.976,1.037,1.706,0.869 +NM_019841,0.965,0.968,0.958,1.028,0.98,1.104,1.138,1.019,1.099,1.018,0.978,1.131,1.033,1.209,1.003,1.1,1.064,0.904,1.044,0.971,0.938,0.915,1.031,0.904,1.021,1.035,0.876,0.897,0.885,1.006,0.901,0.806,1.231,1.006,0.961,0.978,0.998,0.965,0.896,0.86,0.837,1.019,1.075,0.976,0.99,0.954,0.854,1.041,1.026,0.982,1.11,0.911,0.895,1.038 +NM_019842,1.006,1.04,0.972,1.054,1.082,0.976,1.032,1.091,0.953,1.018,0.961,0.975,0.923,1.067,0.989,0.835,0.931,0.964,1.156,0.869,1.138,0.889,0.916,0.898,1.039,0.942,1.04,0.977,0.941,1.061,0.912,0.934,0.838,1.082,1.042,1.099,1.042,1.039,0.823,1.082,1.047,0.926,1.125,1.067,0.977,1.021,1.111,1.036,1.083,1.011,0.837,1.078,1.019,0.94 +NM_019843,0.79,0.92,1.113,0.718,0.872,1.1,0.707,0.781,1.17,1.004,0.956,0.896,0.791,0.896,1.218,1.29,0.831,0.959,1.272,0.873,0.952,1.075,1.148,0.919,0.727,1.092,0.905,0.869,0.73,1.118,1.245,1.094,1.418,1.297,0.647,0.766,0.957,1.022,1.125,0.79,1.15,1.085,0.62,0.868,1.124,0.821,0.858,1.232,0.909,0.972,0.961,0.804,1.042,1.185 +NM_019844,0.98,1.114,1.188,0.989,0.949,1.053,0.763,0.942,1.002,0.984,0.975,0.991,0.89,0.885,0.84,0.95,1.008,0.8,1.002,1.095,1.066,1.017,1.564,0.941,1.01,1.039,1.118,1.105,0.921,1.012,0.977,0.852,1.131,0.978,1.093,1.085,0.929,0.987,0.93,0.885,0.996,0.993,0.811,1.178,1.122,1.228,0.996,1.037,1.041,1.053,0.994,1.212,1.171,1.561 +NM_019845,0.914,1.227,1.062,1.066,0.984,0.979,1.183,0.915,1.075,0.912,0.863,0.946,0.92,0.809,1.007,0.943,1.152,0.877,1.136,0.978,0.98,0.891,0.903,1.049,2.374,0.932,0.906,0.991,1.086,0.903,1.01,3.551,0.966,1.32,1.054,0.864,1.179,1.015,0.855,0.93,1.125,1.094,0.968,1.057,1.036,0.98,0.889,1.038,1.224,1.012,1.068,0.961,1.236,0.923 +NM_019848,1.112,0.919,1.109,1.007,0.95,0.881,0.739,0.777,0.962,1.214,0.967,0.914,0.841,0.671,1.019,1.367,0.924,1.023,1.382,0.853,0.988,0.919,1.126,1.029,0.736,1.077,1.094,0.843,0.602,0.904,0.927,1.328,1.747,1.234,0.592,1.191,0.78,1.059,1.386,0.804,0.861,0.906,0.684,1.715,1.229,0.975,0.945,1.086,0.747,1.328,0.954,0.977,1.187,1.186 +NM_019849,1.073,1.048,1.192,1.171,1.019,1.202,1.07,0.932,1.168,1.032,0.965,1.009,1.096,1.019,0.969,0.931,0.975,0.912,1.206,0.902,1.035,1.003,1.004,1.123,1.021,1.024,0.836,0.835,1.048,1.032,1.036,0.802,0.997,1.079,1.141,0.999,1.248,0.955,0.996,1.077,0.909,0.928,0.727,0.93,1.027,1.04,1.039,0.939,1.098,0.995,0.992,1.025,0.925,1.027 +NM_019850,1.065,0.908,0.773,0.973,1.197,1.119,0.719,1.094,1.063,1.33,1.111,0.962,0.878,0.745,0.95,1.522,0.707,1.119,1.13,1.197,0.8,1.161,1.086,1.192,0.789,1.699,0.656,0.824,0.672,0.94,0.877,0.817,1.618,1.109,0.638,1.017,1.051,1.127,1.215,0.723,0.842,1.245,0.825,2.059,0.962,0.998,0.908,1.307,0.787,0.665,0.89,0.637,0.896,1.161 +NM_019851,1.103,0.99,0.955,0.909,0.984,1.064,1.035,1.162,0.958,1.0,0.916,0.994,0.964,0.986,0.866,1.117,1.025,0.918,1.154,1.125,0.984,0.84,0.962,0.974,1.06,1.059,1.089,0.919,0.797,1.064,0.975,1.047,1.965,1.202,1.116,0.924,1.033,1.071,0.973,1.13,0.933,1.015,0.864,0.996,1.022,0.913,1.005,0.918,0.993,0.97,0.979,0.91,0.955,0.925 +NM_019852,0.862,1.003,1.035,0.894,0.864,0.966,0.825,0.729,1.077,1.034,0.872,0.805,0.765,0.771,1.099,0.993,1.075,0.977,1.252,0.802,0.858,1.015,1.14,1.106,0.843,0.88,1.258,0.776,0.536,0.973,1.119,1.44,1.93,1.016,0.571,1.217,1.092,0.892,1.304,0.744,0.99,1.134,0.726,1.039,0.867,1.073,0.921,0.822,0.933,0.87,0.938,1.023,0.938,1.197 +NM_019855,1.136,0.992,0.95,1.137,0.87,0.841,1.168,1.004,1.035,0.901,1.015,0.923,1.181,0.887,1.178,0.943,0.964,1.061,0.866,0.898,0.935,1.039,1.229,0.968,0.992,0.978,1.073,0.892,0.937,0.989,1.071,0.969,1.106,1.13,0.923,0.965,1.003,1.028,1.016,0.922,0.96,0.988,1.049,1.083,1.101,0.873,0.955,1.051,1.025,0.981,1.022,1.001,1.087,0.951 +NM_019857,1.102,1.104,0.949,1.038,0.951,0.955,1.071,0.95,0.991,0.796,1.059,1.038,1.0,0.963,0.909,1.048,1.139,0.962,0.955,1.082,1.075,1.162,1.144,0.852,0.922,1.012,1.101,0.901,1.297,0.969,1.047,0.908,1.175,0.936,1.092,0.977,1.029,0.968,1.072,0.779,0.965,0.924,1.201,0.975,1.071,1.03,0.925,1.0,0.92,1.257,1.035,0.963,0.964,0.953 +NM_019858,1.059,1.105,0.914,1.05,0.975,0.892,1.229,1.156,1.04,1.145,0.93,0.902,0.901,0.953,0.935,0.984,1.05,1.076,0.922,1.093,0.937,1.004,0.953,1.033,1.02,0.991,0.978,0.846,0.886,0.85,1.142,1.112,1.132,1.157,1.028,1.059,0.944,0.969,1.125,0.908,1.111,0.955,1.144,1.014,0.905,1.145,1.172,1.143,1.049,0.933,1.008,0.958,0.948,1.108 +NM_019859,1.105,1.208,0.874,1.188,0.972,1.033,1.087,0.882,1.039,0.987,0.928,0.976,0.954,1.003,1.054,0.933,1.02,1.182,1.025,0.973,0.874,0.921,0.889,0.97,0.938,1.086,0.876,1.145,0.925,1.088,1.004,0.972,1.089,1.02,1.089,1.061,0.855,1.102,0.978,0.998,0.878,0.98,1.306,0.975,0.923,0.998,0.991,1.079,0.977,0.964,0.908,0.982,1.057,0.947 +NM_019863,1.859,2.122,2.221,1.9169999999999998,2.097,1.903,1.951,1.9369999999999998,2.141,2.135,1.827,2.066,1.989,1.847,2.1500000000000004,2.143,1.992,1.862,2.071,2.219,1.983,2.221,2.229,2.1109999999999998,1.904,1.947,2.1159999999999997,1.946,1.94,2.12,2.0629999999999997,2.221,2.0599999999999996,2.088,1.923,2.0869999999999997,2.113,1.8439999999999999,2.059,1.819,1.912,2.232,1.745,2.0540000000000003,2.25,1.722,1.972,1.755,1.877,1.9729999999999999,1.916,1.9460000000000002,2.077,1.877 +NM_019884,0.971,0.974,1.067,0.947,0.979,0.94,0.867,1.076,0.897,0.974,1.066,1.013,0.981,0.926,1.146,1.057,0.994,0.989,0.912,0.99,1.229,1.033,1.003,1.084,1.039,0.996,1.089,1.043,0.785,0.993,0.989,1.048,0.875,1.001,1.088,1.061,0.975,1.038,1.132,1.019,0.988,0.992,1.106,0.816,0.984,0.989,0.937,1.028,0.915,1.123,0.946,1.053,0.932,0.888 +NM_019885,0.888,0.88,0.984,0.951,1.037,0.849,1.002,1.063,1.135,1.435,0.86,0.793,0.944,1.051,0.901,1.032,1.225,0.875,0.798,1.085,0.917,0.879,1.052,1.075,0.778,0.999,0.786,0.93,1.137,0.888,1.023,1.043,1.269,1.125,0.915,0.843,0.844,1.169,1.091,1.112,1.032,1.24,1.051,0.826,1.14,1.009,0.967,1.206,0.973,0.925,0.964,2.743,0.927,1.168 +NM_019886,0.906,1.5,1.056,0.879,0.834,0.847,0.899,0.746,0.937,0.94,0.932,1.099,0.824,1.052,0.816,1.134,0.749,0.785,0.923,0.88,1.015,0.724,1.549,0.95,0.936,0.796,1.283,0.82,0.592,1.165,0.856,2.258,1.954,1.545,0.719,0.778,0.882,1.098,1.629,1.384,0.951,1.528,0.771,0.699,0.956,0.653,1.113,0.763,0.762,0.857,0.947,1.019,0.967,2.192 +NM_019887,0.754,0.938,1.145,0.953,0.906,0.986,0.814,0.697,0.923,0.979,1.17,0.829,0.84,0.99,1.171,1.25,0.867,0.835,0.906,0.896,0.882,0.696,1.176,0.956,0.947,0.811,1.164,0.871,0.495,0.878,0.985,1.575,1.243,1.306,0.752,0.965,1.093,0.869,1.053,1.058,1.184,1.119,1.522,0.994,0.875,1.075,1.304,0.816,1.186,0.824,0.978,0.849,0.943,2.017 +NM_019888,0.933,0.944,0.976,0.958,1.068,1.058,0.915,1.157,0.961,0.971,1.03,1.065,0.921,1.153,1.407,0.967,0.988,1.035,1.024,0.925,0.965,0.991,1.004,1.064,1.04,0.989,0.989,0.982,1.089,0.975,1.092,1.047,0.981,0.849,1.121,1.0,1.075,1.033,1.183,0.987,0.868,0.924,1.109,1.021,0.999,0.889,0.976,1.069,1.17,0.956,1.145,0.937,0.903,1.062 +NM_019891,1.083,0.899,0.912,0.911,0.939,1.032,1.082,0.908,0.98,0.904,1.033,1.049,1.1,0.894,0.99,0.946,1.062,0.989,0.947,1.191,1.187,0.931,1.032,1.066,1.17,0.876,0.806,0.941,0.872,0.937,0.867,0.937,1.01,1.294,1.07,0.987,0.991,0.908,0.912,0.988,1.077,1.078,0.896,1.084,1.165,0.934,0.874,1.009,0.933,1.153,1.007,0.916,1.222,1.137 +NM_019892,1.116,0.992,1.298,0.893,1.061,0.921,0.687,0.851,1.263,0.92,1.073,0.968,0.968,1.2,1.192,0.978,1.121,0.853,1.349,0.898,0.887,1.127,1.057,1.158,0.77,1.016,1.682,0.805,0.576,0.872,1.257,1.728,1.757,1.097,0.703,1.365,0.795,0.954,1.047,1.169,0.991,0.955,0.595,1.138,1.085,0.798,0.758,0.944,0.779,0.98,0.862,0.95,1.092,2.424 +NM_019893,0.939,1.078,0.983,0.921,1.088,1.068,0.954,0.849,1.053,1.026,1.157,1.064,1.188,0.984,1.266,0.935,1.086,0.999,0.915,0.99,0.867,0.932,0.985,1.001,0.911,0.967,0.962,0.896,0.964,1.158,1.176,1.091,1.182,0.946,1.09,0.968,0.945,1.065,1.2,0.847,1.053,1.011,0.958,0.941,1.114,0.917,1.008,0.921,0.998,0.91,0.959,0.934,1.092,1.336 +NM_019894,1.047,0.855,1.23,0.787,0.585,1.328,0.4,0.58,1.063,0.635,1.44,0.48,1.119,0.717,0.871,1.035,2.074,0.801,1.6,0.82,0.87,0.449,0.803,1.029,0.444,1.145,1.639,0.705,0.349,1.795,0.717,1.224,0.607,0.866,0.83,0.776,0.644,1.077,1.9,0.682,1.376,1.124,0.542,1.054,0.99,1.037,1.01,0.772,0.961,1.656,0.943,0.505,0.922,0.583 +NM_019895,1.351,0.677,1.72,0.848,1.621,0.8,0.522,2.154,2.715,1.257,0.677,2.025,1.775,1.167,1.46,1.301,0.928,1.002,2.247,0.599,1.044,2.084,0.733,2.641,0.398,1.266,1.781,1.996,0.323,0.805,2.158,1.628,1.723,0.936,0.823,0.495,0.743,1.504,0.776,0.863,1.702,0.774,0.658,0.648,1.576,0.675,0.864,1.261,0.891,1.022,0.774,0.811,1.244,1.277 +NM_019896,0.733,0.888,1.079,0.735,0.743,1.001,0.498,0.586,0.876,0.863,1.22,1.07,0.819,0.72,0.91,1.976,0.681,0.87,1.463,1.031,0.552,0.791,1.11,1.252,0.71,1.007,1.415,0.719,0.349,1.05,0.732,1.196,2.031,1.206,0.167,1.68,1.052,0.837,1.299,0.951,1.316,1.015,0.567,1.531,0.81,0.857,1.223,0.834,1.116,0.827,0.909,0.902,0.956,1.542 +NM_019897,1.108,0.971,1.001,0.891,0.879,1.075,1.076,1.02,0.781,1.135,1.0,1.027,0.923,0.957,1.005,0.936,1.005,0.944,1.054,0.952,1.005,1.091,0.891,1.065,0.909,1.196,1.145,1.042,0.925,0.999,1.104,1.014,0.976,0.975,0.947,0.924,0.967,0.922,0.949,1.078,0.952,0.986,1.013,0.925,1.047,0.913,0.991,0.886,0.894,0.924,1.035,1.017,1.038,0.845 +NM_019899,0.875,0.98,1.123,0.894,1.134,0.881,0.84,0.862,1.347,1.168,0.837,1.074,0.814,0.811,1.004,1.009,0.84,1.097,1.36,0.916,0.958,1.111,1.085,1.335,0.733,1.011,1.105,1.179,1.005,0.913,1.214,0.956,2.107,0.984,1.193,0.807,0.834,1.122,1.382,0.998,1.029,0.862,0.79,1.15,0.999,0.806,1.089,1.125,1.037,1.066,1.001,0.795,1.391,1.613 +NM_019903,0.435,1.353,0.81,0.506,0.666,2.208,1.021,0.481,1.165,0.511,1.984,0.673,0.468,0.581,0.744,1.999,0.481,1.078,0.795,1.515,0.306,0.571,1.792,0.565,0.764,0.387,0.613,0.806,0.679,2.296,0.858,1.013,1.827,1.659,0.496,1.724,1.842,0.469,1.092,0.986,0.704,1.635,1.128,1.059,0.417,1.235,1.389,0.366,1.032,0.369,1.418,0.692,0.45,1.02 +NM_020038,1.012,0.852,1.148,1.0,0.925,0.982,1.441,0.959,1.052,0.818,0.959,1.144,1.059,0.992,1.009,1.214,0.953,1.006,0.939,0.891,0.966,1.055,0.991,0.837,1.139,1.073,1.235,0.908,1.298,1.06,0.984,0.898,0.988,0.981,0.986,1.059,1.117,1.131,0.927,0.869,0.895,0.764,1.617,0.676,1.094,1.175,0.87,1.106,1.038,1.082,1.073,0.916,1.122,1.01 +NM_020039,1.09,1.152,0.946,0.871,1.068,1.083,1.164,0.849,1.136,1.051,0.967,1.046,0.976,0.975,1.25,1.024,0.946,1.07,0.924,1.167,0.955,0.885,1.035,1.017,1.161,1.07,1.127,1.072,1.294,1.018,1.056,0.988,1.031,1.133,0.988,1.015,1.002,1.137,1.043,0.931,0.92,0.982,0.955,1.034,1.154,0.901,0.9,0.983,0.925,0.918,0.973,0.937,0.996,1.038 +NM_020040,0.834,0.934,1.083,0.879,1.188,0.947,0.868,1.088,0.873,0.905,1.105,1.051,0.96,1.016,1.047,0.953,1.024,1.069,0.968,0.944,0.939,1.003,1.039,0.933,1.022,1.056,1.022,0.989,1.237,1.066,1.077,0.846,1.016,1.08,0.771,0.916,0.967,1.014,0.928,0.956,1.004,0.972,1.066,1.035,1.165,1.063,1.037,1.06,1.001,0.959,0.929,1.129,1.031,1.007 +NM_020041,0.985,0.958,1.038,0.989,1.001,0.84,0.867,1.007,1.04,0.938,0.981,0.996,0.963,1.09,1.216,1.131,1.095,1.081,1.254,0.853,0.981,1.162,0.807,1.12,0.901,0.992,1.104,0.933,0.776,0.918,1.019,0.882,1.064,0.95,0.972,0.888,0.895,1.05,1.276,1.084,0.996,0.873,1.005,0.869,1.076,0.903,1.04,0.93,0.788,1.087,0.927,1.077,1.296,0.995 +NM_020056,0.946,1.032,1.081,0.858,1.135,0.953,0.841,0.91,1.05,0.877,0.958,1.005,1.228,0.887,0.987,1.25,0.964,0.887,1.08,0.967,1.044,0.979,0.917,1.021,1.024,1.043,0.859,1.086,1.257,1.005,1.008,0.873,1.111,0.826,1.05,1.002,0.905,0.87,0.94,0.926,1.137,1.152,0.943,0.883,1.013,1.05,0.965,0.844,0.834,1.049,0.917,1.013,0.928,0.975 +NM_020061,1.037,0.877,0.823,0.976,0.915,1.111,0.965,0.943,0.975,1.159,0.966,0.9,0.976,1.022,1.025,1.04,1.149,1.052,0.954,1.02,0.853,0.807,1.038,1.011,1.058,0.984,0.981,1.16,0.997,0.903,0.878,1.167,0.948,0.831,0.871,0.934,1.052,1.227,0.891,1.023,0.945,1.121,0.982,1.244,1.015,1.053,1.01,1.02,0.912,0.93,1.128,0.879,0.918,1.048 +NM_020062,1.27,0.994,1.102,1.001,1.004,0.916,0.753,1.096,1.152,1.008,0.849,1.142,1.404,0.877,1.18,0.989,1.038,0.901,1.502,0.835,0.837,1.22,0.866,1.148,0.909,1.66,0.929,0.909,0.875,1.258,1.231,1.101,1.557,1.221,0.811,0.648,0.8,1.136,1.343,0.884,0.931,0.843,0.565,1.245,0.982,0.709,0.76,1.62,0.657,1.075,0.952,1.092,0.862,1.397 +NM_020063,0.978,1.048,0.876,1.103,1.045,1.043,1.047,0.895,1.053,1.053,1.012,1.057,1.127,0.976,0.901,1.016,0.807,0.896,0.959,1.077,1.003,1.016,1.003,0.991,0.993,1.013,0.832,1.037,0.969,0.833,1.05,0.96,0.985,1.087,1.073,1.045,1.143,1.094,0.896,0.9,0.898,1.09,0.986,0.903,0.925,1.033,0.948,1.026,0.988,1.049,0.86,0.954,0.953,0.918 +NM_020064,0.983,1.078,1.002,1.185,1.022,1.042,0.809,0.991,1.013,0.915,0.997,0.922,1.038,1.149,0.935,0.974,1.024,0.958,0.906,1.148,1.094,0.973,1.09,1.01,0.85,0.939,0.909,1.118,0.945,1.043,0.922,0.959,1.098,1.122,1.187,0.991,1.033,0.907,0.948,1.108,1.216,0.845,0.916,0.969,0.998,1.068,1.023,1.13,1.214,0.956,1.234,0.849,1.048,0.922 +NM_020070,1.057,1.091,1.044,0.997,0.878,0.988,0.921,1.033,1.156,0.961,0.936,0.991,0.848,1.044,0.888,0.945,0.971,0.952,0.859,0.907,0.826,1.06,0.891,1.039,1.122,0.967,0.932,1.146,1.112,1.104,1.009,1.057,0.948,0.974,1.05,1.045,1.036,1.382,1.037,0.917,0.962,0.971,1.047,0.943,1.004,0.916,0.833,1.041,0.925,1.009,0.979,0.932,0.898,1.023 +NM_020115,1.003,0.971,0.918,1.078,0.89,1.079,1.14,1.033,1.045,1.08,1.013,0.944,1.095,1.198,0.87,0.965,0.909,0.9,0.991,0.985,0.96,0.915,1.1,1.119,1.059,1.053,1.067,1.031,1.117,0.929,0.984,1.288,1.0,0.913,0.98,1.3,0.915,1.022,1.051,1.112,0.966,1.096,0.881,0.87,1.03,1.0,1.096,0.925,0.986,1.044,0.981,0.874,1.13,0.9 +NM_020116,1.051,1.006,1.062,1.149,1.052,1.108,1.165,1.062,0.941,0.986,1.114,0.911,1.054,0.884,1.124,1.045,0.951,0.945,0.96,0.978,1.14,0.932,0.89,0.906,1.032,1.094,1.01,0.959,0.903,1.006,1.039,1.292,0.81,0.839,0.972,0.935,0.943,1.006,2.833,0.961,1.036,1.16,0.814,0.885,1.159,1.048,1.138,0.941,1.032,0.984,1.014,1.013,0.882,1.053 +NM_020117,0.827,1.101,1.244,0.874,0.934,0.926,0.777,0.698,1.205,0.94,0.82,0.806,0.654,0.806,1.113,1.461,0.89,1.05,1.237,1.059,0.826,0.916,1.411,1.224,0.671,0.917,1.291,0.951,0.48,1.012,1.252,1.131,5.168,1.183,0.487,0.849,0.805,0.951,1.516,0.902,1.088,1.127,0.727,1.018,1.034,0.951,0.986,0.909,1.176,0.763,1.051,0.976,1.202,1.678 +NM_020120,0.605,1.002,0.981,0.738,0.663,1.219,0.684,0.447,0.701,0.834,1.063,0.798,0.459,0.524,0.852,1.677,0.662,1.181,0.689,1.133,0.684,0.735,1.439,0.72,0.847,0.653,1.102,0.66,0.998,1.641,0.696,1.439,2.087,1.26,0.468,1.117,1.215,0.766,1.92,1.146,0.875,1.375,0.688,2.68,0.738,1.253,1.068,0.692,1.412,0.915,1.399,0.981,0.704,1.542 +NM_020121,0.92,1.198,0.912,0.829,0.849,0.991,0.776,0.747,0.862,1.004,0.967,0.93,0.784,0.649,0.838,1.06,0.863,0.911,0.889,1.246,0.741,0.853,0.923,0.959,1.064,0.926,1.257,0.839,0.855,1.182,0.911,2.173,1.112,1.266,0.784,1.252,0.978,0.914,1.32,1.144,0.862,0.986,1.217,1.426,0.932,1.049,1.124,0.85,0.935,0.806,1.154,1.084,0.887,1.554 +NM_020122,0.998,1.074,1.072,0.842,0.95,0.915,1.003,1.171,0.974,0.995,1.022,1.01,1.092,0.901,0.829,1.047,0.951,0.988,0.995,0.954,1.152,0.94,1.107,1.109,0.855,1.142,0.887,1.064,0.987,0.898,1.116,1.218,0.967,1.068,1.023,0.856,0.883,1.082,0.998,0.937,1.128,0.9,1.376,0.902,0.944,1.03,1.083,1.039,1.024,1.014,0.969,0.966,1.09,1.003 +NM_020123,0.333,1.649,0.759,0.748,0.59,2.613,0.97,0.493,0.734,0.532,2.2,0.573,0.409,0.391,1.263,3.12,0.5,1.156,0.739,2.084,0.285,0.589,1.778,0.662,0.812,0.424,0.871,0.532,0.837,2.011,0.621,1.139,1.421,2.724,0.162,1.261,2.042,0.629,1.675,0.645,0.643,1.95,0.954,0.812,0.587,2.086,1.129,0.586,1.631,0.465,2.035,0.62,0.433,0.901 +NM_020125,0.888,1.297,1.218,0.73,0.958,1.064,1.027,0.837,0.87,0.862,0.797,0.763,0.805,0.878,0.862,0.911,0.998,0.769,0.906,0.827,0.885,0.72,1.336,1.044,0.915,0.686,1.311,0.916,0.89,1.45,0.798,3.024,1.049,1.452,0.716,0.805,1.096,0.736,1.314,2.132,0.985,1.23,0.983,0.979,1.038,0.875,0.969,0.826,0.899,0.885,0.961,2.202,1.674,2.996 +NM_020126,0.553,1.624,0.768,0.801,0.505,3.008,1.027,0.378,0.788,0.561,3.215,0.502,0.427,0.581,1.242,3.581,0.617,1.197,0.889,2.225,0.372,0.597,3.393,0.739,0.82,0.597,0.73,0.526,0.765,4.339,0.515,1.189,1.312,1.897,0.287,0.88,2.579,0.66,1.555,0.95,0.825,2.473,1.497,1.03,0.684,2.378,1.285,0.478,1.471,0.505,1.894,0.524,0.666,1.224 +NM_020127,1.303,0.753,1.463,0.778,2.373,0.975,0.642,2.064,3.115,1.608,0.637,1.01,1.066,2.174,2.007,1.226,1.249,0.961,1.388,0.835,0.999,2.002,0.715,1.303,0.45,1.72,1.122,2.52,0.394,1.202,4.076,1.03,1.079,1.131,5.622,0.654,0.639,2.455,0.73,0.745,2.11,0.642,0.785,0.914,1.196,0.672,1.558,2.048,0.632,0.855,0.864,0.597,2.188,1.419 +NM_020128,1.9929999999999999,1.8130000000000002,1.8980000000000001,2.053,2.0519999999999996,2.011,1.865,1.849,2.192,1.946,2.015,1.974,1.9969999999999999,1.8130000000000002,1.859,2.107,1.9889999999999999,1.9949999999999999,1.975,1.8079999999999998,1.9529999999999998,1.9939999999999998,2.053,1.884,2.012,2.085,2.061,1.944,2.016,2.019,2.035,2.004,1.9979999999999998,2.047,2.0780000000000003,1.983,2.037,2.0629999999999997,1.9609999999999999,1.988,2.253,1.9180000000000001,1.9580000000000002,1.876,2.176,2.0149999999999997,1.8319999999999999,2.0309999999999997,2.0919999999999996,2.016,1.924,2.055,2.072,2.1639999999999997 +NM_020129,0.912,0.962,0.976,0.975,1.046,0.941,0.859,1.01,1.032,1.041,0.986,0.995,0.988,0.935,0.842,1.074,0.941,0.971,1.105,0.98,0.974,1.04,1.065,0.955,1.052,1.079,1.0,1.068,1.098,1.02,0.914,0.977,0.879,1.011,1.267,0.971,0.901,1.07,0.991,0.987,1.0,0.979,0.93,1.137,1.174,1.099,0.924,0.936,0.963,1.034,0.977,0.886,0.995,1.06 +NM_020130,0.735,1.323,0.736,1.123,0.708,1.769,0.814,0.71,0.777,0.764,1.422,0.611,0.675,0.971,1.142,1.283,0.74,0.885,0.682,1.325,0.78,0.767,1.461,0.798,0.771,0.649,0.765,0.812,1.095,1.185,0.701,1.025,0.857,1.487,0.731,0.744,1.34,0.717,2.196,0.96,0.798,1.575,2.104,0.806,0.698,2.994,0.999,0.807,1.238,0.795,1.446,1.198,0.607,1.164 +NM_020131,0.976,0.991,0.984,0.858,1.217,1.105,0.964,0.951,0.95,1.067,0.981,1.079,0.96,0.925,0.8,0.874,1.041,0.982,1.128,0.882,0.851,0.758,1.122,0.995,1.031,0.98,0.898,0.997,1.007,1.002,1.046,1.087,1.031,0.934,0.907,0.976,0.878,1.009,1.056,1.063,1.017,1.0,0.983,0.901,1.076,1.12,1.008,0.985,1.019,0.98,0.948,0.931,1.013,0.986 +NM_020132,0.875,0.859,1.013,0.762,0.895,1.119,0.838,0.921,1.186,0.994,1.17,0.857,0.863,0.842,0.933,1.484,1.081,0.958,1.12,0.863,0.852,0.864,1.004,0.992,0.769,0.901,0.946,0.886,0.753,1.223,1.109,0.818,1.12,1.11,0.853,0.854,1.389,0.893,1.334,1.055,1.045,1.012,0.766,0.895,1.074,1.183,1.271,0.881,0.817,1.016,1.036,0.859,0.979,1.056 +NM_020133,1.01,0.863,1.27,0.978,1.141,0.884,0.8,0.771,0.778,1.248,0.858,0.886,0.885,0.854,0.979,0.881,1.077,0.992,0.923,0.799,1.04,0.847,0.998,1.308,0.754,0.954,1.433,0.876,0.778,0.868,0.906,1.774,1.21,1.042,1.031,0.989,0.947,1.127,1.274,1.422,1.153,1.035,0.962,0.994,1.164,0.933,1.357,0.91,0.984,1.214,1.218,1.235,1.143,1.253 +NM_020135,0.965,1.006,1.175,0.959,0.959,0.974,0.9,0.857,1.248,1.086,0.993,0.816,0.875,0.951,1.05,0.912,1.049,0.911,0.997,1.008,0.968,0.941,0.968,1.098,0.843,0.968,1.204,0.901,0.638,1.092,1.115,1.036,1.242,0.992,1.053,1.102,1.033,0.938,1.009,0.994,1.172,0.91,0.843,1.19,0.968,0.839,1.175,0.87,1.008,0.966,1.051,0.966,0.988,1.238 +NM_020137,0.807,1.12,0.904,1.003,0.782,1.271,1.039,0.555,0.766,0.878,0.982,0.81,0.739,0.818,0.773,1.006,0.786,0.886,0.766,1.011,0.752,0.831,1.128,0.956,0.977,1.021,0.846,0.769,0.999,1.088,0.706,1.473,1.016,1.358,0.747,1.127,1.025,0.722,1.663,1.112,0.897,1.308,0.923,1.084,1.034,1.068,0.737,0.92,0.996,0.972,0.966,0.907,0.909,0.985 +NM_020140,2.004,1.931,1.91,1.956,2.12,2.23,2.091,2.2569999999999997,2.1420000000000003,2.065,1.859,1.8820000000000001,2.102,1.962,1.9929999999999999,1.9849999999999999,1.887,2.1180000000000003,2.283,2.078,2.007,2.0919999999999996,1.9949999999999999,2.01,2.136,1.779,1.9699999999999998,1.916,1.9420000000000002,2.16,1.978,2.198,2.032,1.9939999999999998,2.061,1.9989999999999999,1.96,1.774,1.942,2.107,2.026,1.874,2.0220000000000002,2.168,2.059,2.051,1.826,1.968,1.862,1.8489999999999998,2.002,1.979,2.021,1.9729999999999999 +NM_020141,0.591,1.457,1.207,0.679,0.697,1.717,0.958,0.756,1.019,0.648,1.186,0.771,0.774,0.566,1.024,1.573,0.705,1.005,0.741,1.638,0.378,0.891,1.45,1.052,0.835,0.667,1.003,0.988,0.607,1.889,1.004,1.244,1.709,1.97,0.372,0.533,1.138,0.867,1.5,0.846,1.132,1.348,0.587,0.585,0.882,1.066,0.823,0.772,0.782,0.59,1.256,0.649,0.605,1.59 +NM_020142,8.097,0.71,2.851,3.302,2.971,0.596,0.727,5.205,3.619,2.179,0.662,3.583,4.222,2.953,3.042,1.583,1.05,1.94,7.065,0.655,4.257,4.607,0.651,2.872,0.635,9.483,1.321,4.192,0.76,0.687,3.94,0.756,1.646,0.726,7.666,0.684,0.553,4.592,0.883,0.814,2.068,0.656,0.685,0.669,2.694,0.657,2.019,7.24,0.693,4.907,1.04,0.663,3.219,0.548 +NM_020144,1.017,1.087,1.008,1.08,0.898,1.0,0.895,1.046,1.0,1.051,1.088,1.141,1.091,1.013,0.91,0.917,1.058,1.039,0.946,0.962,1.164,0.924,1.326,0.985,1.054,1.033,0.995,1.044,0.966,0.971,0.883,0.979,0.918,1.005,0.94,1.0,0.929,1.038,0.993,0.992,1.009,1.008,1.028,1.042,1.039,0.885,0.925,0.981,1.113,1.001,1.024,0.917,0.957,1.058 +NM_020145,1.179,0.774,1.255,0.992,0.849,1.398,0.622,1.379,1.18,1.199,0.891,1.051,1.401,0.832,0.993,1.375,0.856,1.268,1.335,0.788,0.995,1.595,0.717,1.453,0.93,1.893,1.044,1.106,0.575,0.906,1.182,1.005,1.38,1.337,0.866,0.808,0.822,1.04,1.95,0.778,0.918,0.818,0.587,1.017,1.313,0.701,0.714,2.548,0.664,1.615,0.712,0.703,0.976,1.11 +NM_020147,0.938,1.15,0.859,0.707,0.82,0.969,0.835,0.802,0.937,0.731,1.089,0.914,0.895,0.943,1.295,1.544,0.615,0.899,1.049,1.026,0.827,0.882,1.48,0.946,1.011,0.867,1.136,0.917,1.286,0.954,0.859,0.941,1.427,1.046,0.661,1.122,1.199,0.782,1.228,0.974,1.023,1.096,0.79,1.221,0.93,1.169,1.233,0.691,0.831,0.832,0.962,0.997,0.7,1.701 +NM_020150,0.532,1.093,1.228,0.514,0.826,1.88,0.885,0.925,1.07,0.833,0.531,0.861,0.827,0.599,1.046,1.785,0.755,1.194,0.596,1.386,0.446,1.377,1.413,1.376,0.578,0.457,1.327,0.828,0.601,1.566,1.387,2.014,2.37,1.315,0.389,0.454,1.134,1.299,1.882,0.878,1.005,1.339,0.594,0.637,0.936,1.031,0.939,0.779,1.235,0.686,1.112,0.895,0.458,2.542 +NM_020151,0.924,0.985,0.92,1.03,0.965,1.006,0.852,1.068,1.012,1.021,0.978,1.043,0.912,0.806,1.18,0.996,1.011,0.989,1.145,0.926,1.035,0.988,0.912,0.942,1.046,1.011,1.089,0.959,1.03,1.073,1.097,1.193,0.923,0.997,0.878,0.966,1.0,0.987,1.044,1.06,0.98,1.039,0.887,1.02,0.938,0.982,0.978,1.102,1.228,1.017,0.922,0.849,1.058,0.865 +NM_020152,0.822,0.998,0.944,1.292,0.956,0.941,0.937,0.938,1.105,0.965,1.113,1.072,0.811,1.076,0.719,1.046,1.027,0.831,0.949,0.907,0.822,0.934,1.12,0.997,0.891,1.005,1.151,0.962,0.993,1.097,1.093,2.13,1.013,1.076,0.741,1.005,0.98,1.023,1.277,1.29,1.056,0.92,0.82,0.758,0.918,0.881,1.044,0.821,0.929,0.843,0.866,1.818,0.936,1.269 +NM_020153,0.909,1.059,1.15,0.803,0.96,1.057,0.847,1.201,0.867,0.966,0.967,1.102,0.862,0.81,1.01,0.951,0.983,1.009,1.112,1.078,0.971,1.038,1.026,0.977,0.912,1.063,1.205,0.96,0.792,0.92,0.921,1.372,1.182,1.132,0.478,1.093,0.887,1.074,0.954,1.122,0.982,1.142,0.785,1.092,1.018,0.843,1.102,0.916,0.685,1.022,0.933,0.939,1.069,0.93 +NM_020154,0.51,0.57,1.017,0.646,0.845,1.617,0.626,0.744,1.167,0.816,1.191,0.929,0.653,0.592,1.141,2.141,0.675,0.9,1.18,1.013,0.615,0.718,1.681,1.308,0.312,0.661,1.108,0.871,0.546,1.121,1.051,1.538,2.337,1.216,0.329,0.81,1.04,0.916,1.915,0.612,1.059,1.155,0.612,0.806,0.89,1.18,0.993,0.656,1.213,0.588,1.007,0.986,0.723,1.781 +NM_020155,0.904,1.038,1.036,1.004,0.876,1.032,0.867,0.92,0.993,0.992,0.866,1.043,1.054,0.755,1.231,1.021,1.034,1.083,1.09,0.939,1.076,1.088,0.978,0.996,1.113,0.994,1.173,1.04,0.988,0.968,1.2,0.973,0.896,1.093,0.861,1.048,1.019,1.001,0.997,1.057,0.97,0.927,0.944,1.059,0.977,0.95,0.888,0.986,1.04,1.074,1.066,0.968,1.029,0.875 +NM_020156,1.035,0.985,0.895,1.001,0.995,1.105,0.951,1.233,0.939,1.014,0.935,0.844,1.065,1.013,0.99,0.971,0.874,1.083,0.94,1.038,1.111,1.02,0.932,1.035,0.943,0.879,1.004,0.912,0.962,1.027,1.016,1.006,1.06,0.894,1.051,0.972,1.008,1.217,1.003,1.018,0.901,0.777,0.881,0.883,1.0,1.045,1.011,0.911,0.934,1.083,1.046,1.038,1.065,1.157 +NM_020157,1.014,0.969,0.937,0.971,0.967,0.955,0.875,0.894,0.886,1.049,1.124,1.045,1.038,0.858,0.93,0.916,0.944,1.046,1.034,1.142,0.936,0.955,0.979,0.963,1.008,1.0,1.097,1.014,0.845,0.946,0.964,0.965,0.879,0.919,1.052,0.994,1.093,1.022,1.051,0.895,1.05,0.969,0.909,0.963,1.066,0.984,1.131,1.151,0.981,0.851,1.142,0.95,1.014,1.017 +NM_020158,0.906,1.475,1.125,0.79,0.942,0.797,0.504,0.724,0.991,1.003,0.691,1.131,1.156,0.771,0.856,1.071,1.011,0.949,1.374,0.829,0.941,0.997,1.449,1.284,0.661,1.229,1.083,0.76,0.489,0.872,0.898,0.913,4.096,0.993,0.373,0.953,0.714,1.239,1.921,0.831,1.22,0.969,0.659,1.874,1.13,0.573,1.046,0.979,0.87,1.012,0.793,1.039,1.06,1.871 +NM_020159,0.947,1.292,1.36,0.814,0.947,1.085,1.093,0.755,1.162,0.949,1.003,0.85,0.783,0.788,1.033,1.292,0.909,0.997,1.077,1.052,0.708,0.914,1.538,0.994,0.945,0.834,1.35,0.889,0.96,1.174,0.926,1.276,1.333,1.356,0.591,0.826,1.101,0.932,1.278,0.898,0.936,1.373,0.87,1.306,1.057,0.952,0.937,0.854,1.126,0.96,1.097,0.933,0.981,1.207 +NM_020161,1.028,1.03,1.013,1.042,1.067,1.032,0.926,1.144,1.012,1.031,1.043,1.071,1.039,1.047,0.786,1.0,1.165,1.123,0.985,0.948,0.991,1.072,0.898,1.003,1.07,1.101,1.033,0.972,1.148,1.071,0.829,1.006,0.671,0.918,0.944,0.926,1.016,1.034,0.884,0.99,0.933,0.788,1.094,0.955,0.954,1.033,0.997,1.084,0.911,1.009,1.02,0.952,0.968,0.877 +NM_020162,0.8,0.943,1.021,0.876,0.897,1.03,0.927,0.652,1.14,1.099,1.078,0.752,0.75,0.762,0.906,1.025,0.875,0.993,1.003,1.044,0.989,0.957,1.324,1.091,0.898,0.949,0.971,0.913,0.722,1.017,0.91,1.224,1.628,1.014,0.66,1.05,1.021,0.825,1.108,1.409,0.977,1.056,0.757,1.27,1.155,0.896,1.129,0.891,1.092,0.981,0.987,1.084,1.079,1.693 +NM_020163,0.951,1.144,1.034,0.879,0.781,0.973,0.995,1.033,0.889,0.988,1.011,0.964,0.943,0.746,0.916,1.064,0.89,0.879,0.895,0.991,0.951,0.958,1.125,0.942,1.073,0.904,0.847,0.986,1.074,1.036,0.96,1.203,1.16,1.756,0.848,0.953,0.976,1.094,1.455,0.738,0.983,1.534,0.86,1.0,1.014,1.003,0.979,0.86,0.921,0.905,1.203,1.012,0.88,1.522 +NM_020164,0.954,1.011,1.053,0.996,0.836,1.075,0.885,1.121,0.877,0.81,0.867,0.838,0.993,0.963,0.857,1.113,0.867,0.953,0.845,1.189,0.948,0.924,1.07,1.012,0.937,1.083,1.059,0.892,1.255,1.122,0.927,0.897,1.007,1.039,0.93,1.059,0.936,0.837,1.189,1.084,1.111,1.064,1.275,1.097,0.975,1.019,0.945,0.9,1.291,0.89,1.053,0.867,0.879,1.074 +NM_020166,0.759,1.011,1.235,0.683,1.076,1.178,0.634,0.722,1.316,1.114,0.721,0.914,0.813,0.731,1.07,1.437,0.893,0.995,1.274,1.035,0.588,1.193,0.89,1.117,0.764,0.763,1.005,1.054,0.622,1.73,1.178,1.165,2.338,1.306,0.365,0.485,0.895,1.075,1.131,0.421,1.027,0.623,0.589,0.952,0.893,0.825,0.661,0.863,0.642,0.808,0.928,0.448,1.092,1.716 +NM_020167,0.945,1.56,0.867,1.529,0.882,6.306,1.286,0.804,0.812,0.797,5.148,0.885,0.944,0.796,4.132,11.78,0.806,1.492,0.883,6.97,0.998,0.88,7.486,0.788,0.793,0.817,0.882,0.843,0.92,3.109,0.851,0.762,8.694,2.643,0.822,2.761,5.476,0.815,1.839,0.904,0.948,7.828,3.268,0.836,0.946,9.394,1.096,0.882,1.025,0.856,9.282,1.139,0.806,1.338 +NM_020168,1.451,0.903,1.598,1.068,1.397,0.786,0.741,0.906,1.828,1.37,0.792,1.552,1.32,1.404,1.127,0.811,1.761,0.867,1.892,0.679,1.361,1.525,1.092,1.586,0.83,1.75,1.742,1.206,0.763,0.838,1.588,0.896,1.432,0.892,0.657,0.937,0.69,1.396,1.007,0.84,1.546,0.721,0.762,0.935,1.629,0.722,1.016,1.382,0.658,1.634,0.818,0.908,1.316,1.365 +NM_020169,0.461,1.46,1.142,0.726,0.568,2.347,0.839,0.546,0.699,0.669,2.999,0.595,0.682,0.607,2.009,3.084,0.539,0.922,0.714,1.964,0.407,0.663,3.439,0.602,0.596,0.507,0.754,0.667,0.696,1.852,0.727,2.6,1.446,2.158,0.317,0.649,2.579,0.861,1.054,0.693,0.761,2.319,1.544,1.134,0.602,1.963,0.846,0.556,2.059,0.403,2.044,1.072,0.597,1.302 +NM_020170,0.706,0.807,0.603,1.039,0.533,1.315,0.663,0.541,0.778,0.841,1.334,0.612,0.544,0.605,1.176,2.973,0.593,0.879,1.152,1.038,0.807,0.743,2.065,0.829,0.55,0.889,0.955,0.569,0.757,1.439,0.644,1.055,2.743,1.272,0.343,1.556,1.168,0.625,2.87,1.006,0.644,1.327,0.84,2.125,0.892,1.229,0.851,0.842,1.776,0.77,1.281,0.934,0.779,1.94 +NM_020172,1.012,1.01,0.883,1.099,0.968,0.939,1.02,0.998,0.934,1.041,0.888,0.947,1.023,1.09,0.959,1.054,0.921,1.031,0.945,1.149,0.917,1.035,1.022,1.016,1.014,1.086,1.128,0.986,1.007,1.147,0.998,1.001,1.184,0.992,0.982,0.984,1.059,0.903,1.167,1.067,0.891,1.046,0.952,1.084,0.964,0.928,0.892,1.085,1.002,0.882,1.008,0.991,0.947,0.996 +NM_020175,0.789,0.904,1.102,0.66,0.961,0.848,0.77,0.598,1.299,1.35,0.68,0.922,0.748,0.723,0.856,1.177,0.979,1.002,1.09,0.882,0.719,0.952,1.732,1.592,0.602,0.915,1.345,1.005,0.606,0.906,1.003,0.868,1.185,0.919,0.464,1.633,0.856,0.82,1.192,1.237,1.274,1.095,0.787,1.64,1.553,0.831,1.102,0.903,1.015,0.819,0.95,1.008,1.054,1.867 +NM_020178,0.996,0.983,1.077,1.016,1.188,0.872,0.999,1.111,1.012,1.0,0.982,0.945,1.0,0.954,1.259,0.923,1.04,0.994,1.008,1.082,1.039,1.051,0.949,1.017,1.096,1.054,1.085,1.199,1.156,1.087,0.978,1.042,0.965,1.087,0.955,1.117,0.888,0.936,1.007,0.897,0.929,1.044,0.792,1.074,1.042,0.989,0.934,0.998,0.978,1.121,0.921,0.951,0.958,0.938 +NM_020179,0.371,1.309,0.536,0.774,0.575,2.233,0.702,0.385,0.585,0.382,2.168,0.712,0.364,0.412,1.329,2.663,0.589,1.046,0.494,2.892,0.306,0.587,1.812,0.456,0.798,0.459,0.578,0.432,0.721,1.589,0.789,1.168,1.361,2.059,0.182,1.564,2.029,0.52,1.625,0.571,0.579,2.002,1.19,0.629,0.371,2.211,0.846,0.402,1.241,0.451,2.064,0.491,0.555,1.32 +NM_020182,0.646,1.469,0.704,0.732,0.496,1.019,0.862,0.527,0.695,0.701,1.057,0.583,0.635,0.624,0.791,0.975,0.601,0.709,0.623,0.935,0.739,0.528,2.368,0.66,0.931,0.666,0.774,0.624,0.683,1.875,0.614,11.04,4.207,1.828,0.664,1.381,0.873,0.722,2.06,8.917,0.801,1.888,1.014,4.132,0.672,1.067,1.531,0.607,0.724,0.737,1.097,3.275,0.956,4.593 +NM_020183,1.977,0.481,2.152,1.045,2.486,0.574,0.468,2.347,2.245,1.168,0.66,2.247,2.386,1.347,1.482,1.094,1.785,1.814,3.486,0.578,0.926,2.19,0.503,1.994,0.467,1.936,2.609,2.583,0.446,0.651,2.199,0.474,1.524,0.558,4.662,0.572,0.542,2.419,0.905,0.537,1.911,0.488,0.401,0.98,1.468,0.512,2.225,2.25,0.594,1.954,0.689,1.02,1.783,0.936 +NM_020184,0.554,0.957,0.653,1.054,0.439,1.799,1.204,0.583,0.733,0.562,1.316,0.481,0.476,0.686,1.469,2.313,0.62,1.192,0.797,1.238,0.541,0.696,2.007,0.517,0.913,0.655,0.581,0.627,1.011,1.44,0.849,1.038,1.469,1.628,0.67,1.048,1.329,0.738,1.249,0.915,0.613,1.128,1.007,1.549,0.572,1.495,0.777,0.724,1.523,0.611,1.306,0.708,0.589,1.614 +NM_020185,1.293,0.629,2.136,0.79,1.46,0.759,0.483,1.169,2.195,1.262,0.784,1.716,1.396,1.14,1.174,1.386,1.958,1.082,2.816,0.793,0.8,1.321,0.61,1.713,0.533,1.61,1.666,1.725,0.296,0.908,1.52,1.031,1.556,1.116,0.594,0.635,0.685,1.697,0.928,0.71,1.869,0.925,0.628,0.549,1.711,0.77,1.141,1.745,0.7,1.521,0.721,0.668,1.729,1.108 +NM_020186,0.73,1.355,1.134,0.656,0.86,1.637,0.671,0.794,0.999,0.94,1.116,0.999,0.802,0.72,0.939,2.16,0.919,0.973,1.139,1.062,0.658,0.938,1.785,1.162,0.629,0.603,1.427,0.882,0.4,1.294,1.01,1.078,3.509,1.283,0.466,0.646,1.248,1.266,1.213,0.789,1.006,0.987,0.685,0.861,0.997,1.224,1.213,0.672,1.305,0.784,1.248,1.058,0.614,1.653 +NM_020187,0.652,0.9,1.515,0.594,1.125,1.037,0.647,0.506,1.371,1.355,0.752,1.116,0.636,0.713,0.808,1.185,1.275,0.901,1.084,0.903,0.545,0.932,1.084,1.211,0.455,0.809,1.519,0.998,0.415,1.32,1.018,1.688,2.181,0.894,0.365,1.021,1.039,1.193,1.364,0.901,1.484,0.79,0.944,1.313,1.086,0.848,1.083,0.757,1.261,0.868,0.925,0.913,1.213,1.425 +NM_020188,0.532,1.27,0.842,0.689,0.653,1.306,0.675,0.547,1.077,1.007,0.994,1.174,0.652,0.54,0.711,1.66,0.628,0.856,0.787,0.913,0.418,0.664,1.087,1.139,0.765,0.57,1.278,0.758,0.486,1.074,0.732,1.35,2.514,1.203,0.134,1.024,1.312,0.669,1.786,1.046,0.954,0.73,0.99,1.128,0.771,1.006,1.174,0.527,1.19,0.545,1.16,1.184,0.87,1.445 +NM_020190,0.744,1.082,0.795,0.772,0.809,1.215,1.048,0.804,0.778,0.691,1.066,0.58,0.837,0.991,1.133,1.03,0.832,0.737,0.837,1.072,0.768,0.695,1.395,0.851,1.224,0.679,0.931,0.733,1.043,1.978,0.673,4.094,1.129,2.197,0.548,0.81,1.096,0.771,1.785,0.988,0.915,1.723,0.82,0.868,0.735,1.066,1.021,0.831,0.834,0.754,1.242,0.905,0.993,1.2 +NM_020192,0.695,0.989,0.979,0.764,0.877,1.544,0.884,0.924,1.163,0.813,1.099,0.844,0.717,0.764,1.141,2.681,0.751,0.957,1.139,0.866,0.739,0.855,1.595,1.088,0.631,0.722,1.206,0.882,0.581,1.168,1.091,1.191,2.151,1.476,0.459,1.08,1.182,0.91,1.065,0.638,1.013,0.93,0.79,0.861,0.924,0.902,1.39,0.812,1.301,0.649,1.105,0.777,0.715,1.808 +NM_020193,0.689,0.897,1.166,0.786,0.88,1.113,0.969,0.861,0.91,0.91,0.822,0.923,0.841,0.712,1.061,1.124,0.907,0.848,1.087,0.786,0.879,0.956,1.136,1.032,0.887,0.801,1.291,0.833,0.896,1.023,0.829,1.733,2.165,1.276,0.764,1.256,1.036,0.92,1.076,1.506,1.013,1.195,0.722,0.835,0.929,0.852,0.779,0.85,0.925,0.954,0.951,1.029,1.015,1.513 +NM_020194,0.706,0.981,1.234,0.882,0.775,1.323,0.678,0.729,1.133,0.841,1.234,0.915,0.85,0.729,0.94,1.726,0.755,0.825,1.027,1.039,0.697,0.803,1.612,0.956,0.645,0.688,1.585,0.936,0.504,1.291,0.968,1.553,3.107,1.736,0.411,1.216,1.123,0.754,1.078,0.758,0.894,1.246,0.548,1.474,0.98,1.159,0.843,0.729,1.023,0.85,1.037,0.922,0.979,3.036 +NM_020195,0.787,1.074,1.489,0.826,1.011,1.005,0.72,0.654,1.251,1.167,0.81,0.833,0.786,0.727,1.223,1.255,0.97,0.846,1.063,0.964,0.634,0.78,1.38,1.309,0.786,0.813,1.399,0.923,0.517,1.0,1.0,1.45,1.24,1.179,0.469,0.841,0.962,1.017,0.984,0.922,1.162,1.156,0.838,1.387,1.085,0.985,1.19,0.75,1.007,0.963,1.022,0.803,1.111,1.603 +NM_020196,0.686,0.978,1.046,0.79,0.839,0.911,0.906,1.002,1.036,1.022,0.963,1.124,0.861,0.71,0.954,1.471,0.921,0.986,1.326,1.171,0.917,0.859,1.48,1.121,0.821,1.03,1.269,0.838,0.748,1.056,0.997,1.253,1.48,1.205,0.702,1.304,0.803,0.981,1.323,1.136,0.916,1.233,0.549,1.466,0.963,0.647,0.606,1.036,0.914,0.972,0.82,0.812,1.021,1.585 +NM_020197,0.802,1.086,1.385,0.675,1.025,0.805,0.632,0.847,1.178,1.064,0.804,0.979,0.978,0.75,1.202,1.134,0.903,0.854,1.141,0.994,0.704,0.862,1.002,1.329,0.795,0.885,1.25,1.178,0.409,0.749,0.998,1.27,2.807,1.014,0.484,1.143,0.758,0.963,1.203,0.909,1.106,0.833,0.686,1.048,1.224,0.918,1.019,0.831,0.736,1.03,0.85,0.802,1.2,1.326 +NM_020198,0.861,1.362,1.19,0.794,1.047,0.878,0.981,0.564,0.885,0.876,1.209,0.821,0.787,0.763,0.884,1.581,0.812,0.957,1.012,0.909,0.877,0.795,1.327,0.846,0.934,0.817,1.011,1.021,0.77,1.205,0.888,1.239,1.153,1.514,0.5,0.806,1.3,0.864,1.287,0.785,1.001,1.272,0.783,0.892,1.025,1.188,0.909,0.685,1.148,0.955,1.089,0.938,0.943,0.944 +NM_020199,0.386,1.361,0.752,0.753,0.539,1.752,1.111,0.322,0.736,0.486,0.938,0.428,0.385,0.447,0.753,1.158,0.595,1.066,0.505,1.376,0.375,0.452,1.175,0.494,0.927,0.444,0.958,0.492,0.455,1.596,0.528,1.992,1.057,1.684,0.121,0.771,1.621,0.538,1.395,1.028,0.638,1.549,0.817,0.869,0.465,1.104,0.897,0.359,1.003,0.417,1.176,1.139,0.822,2.981 +NM_020200,0.961,1.145,0.89,0.923,0.976,1.264,1.075,1.04,0.934,1.003,1.021,0.963,1.007,1.06,0.87,1.236,0.96,0.968,1.107,1.021,1.132,1.049,1.076,0.953,1.005,0.94,0.975,0.879,1.04,1.145,1.063,1.06,1.251,0.99,0.972,0.901,1.021,0.961,1.186,0.903,1.051,0.922,1.053,0.919,0.953,0.95,0.906,1.043,1.161,0.959,1.064,1.049,0.956,1.04 +NM_020201,0.837,1.084,1.222,0.851,1.021,0.969,1.006,1.07,1.303,1.071,0.728,1.132,1.095,0.789,0.931,0.932,0.822,1.146,1.042,0.987,0.94,1.033,1.455,1.352,0.883,0.982,1.064,1.014,0.967,0.939,1.129,1.4,1.863,1.062,0.767,0.688,0.821,1.24,0.873,1.09,1.281,0.912,0.932,0.955,1.247,0.863,1.054,0.971,0.906,1.031,0.783,0.87,0.82,1.535 +NM_020202,0.996,1.004,1.307,0.804,1.041,0.884,0.613,0.656,1.422,1.198,0.959,0.877,0.785,0.714,0.961,1.167,1.188,0.967,1.383,0.85,0.606,0.83,1.172,1.324,0.814,0.997,1.323,1.009,0.52,1.082,0.944,1.258,2.122,1.137,0.331,1.221,0.977,0.915,1.15,0.922,1.256,0.919,0.767,1.453,1.317,1.037,0.979,0.789,0.883,0.942,1.04,1.034,1.29,1.51 +NM_020203,1.04,0.832,0.94,0.961,1.07,0.982,0.977,1.011,0.999,1.053,1.027,1.114,1.135,1.091,1.023,1.106,0.971,1.202,1.024,1.087,1.174,1.046,1.068,1.017,1.031,0.987,0.942,1.057,0.903,0.963,0.925,0.908,0.978,0.957,1.154,0.911,1.02,0.988,1.007,0.912,0.93,1.033,1.385,0.883,0.945,1.117,0.88,1.036,1.019,0.968,1.053,1.098,1.153,0.988 +NM_020204,1.053,1.118,0.846,0.972,1.149,1.093,0.949,1.04,0.997,1.045,0.98,1.06,0.889,1.137,0.913,0.964,1.103,0.935,1.072,0.856,0.947,1.095,0.962,1.082,0.891,1.0,0.988,1.017,0.967,1.033,0.905,1.015,1.034,1.026,0.925,1.119,1.118,0.994,0.995,0.992,0.96,1.09,1.118,0.96,0.925,0.955,0.952,1.118,0.996,1.038,0.96,1.091,1.198,1.021 +NM_020205,1.078,0.992,0.925,1.005,1.08,0.869,0.869,0.848,1.104,0.793,1.004,0.951,1.096,0.935,1.173,0.903,0.957,1.395,0.956,1.019,1.056,1.016,0.923,0.835,0.847,1.215,0.869,1.024,1.422,0.759,0.938,0.858,0.977,1.023,1.377,0.918,0.989,0.925,1.032,0.998,0.982,1.142,0.969,0.947,1.003,1.029,0.863,0.935,1.232,0.818,1.109,0.803,1.034,0.867 +NM_020207,0.918,1.216,1.073,0.955,0.819,1.188,1.168,1.091,1.095,0.999,1.028,0.923,0.851,1.13,0.899,1.253,0.931,1.022,0.855,1.099,0.785,0.984,0.985,1.053,0.91,0.907,1.218,1.021,0.913,1.07,0.999,1.427,1.308,1.078,0.839,0.953,1.021,1.121,1.112,0.955,0.985,1.116,0.996,1.043,1.042,0.972,0.889,0.856,0.815,0.97,1.095,0.939,0.825,0.997 +NM_020208,1.005,1.184,0.891,0.918,1.013,1.076,0.981,0.98,1.17,0.889,1.097,0.905,1.073,0.817,0.795,1.029,1.018,1.16,0.931,1.048,1.062,0.894,1.001,0.944,0.974,0.952,1.004,0.857,1.186,0.99,1.11,0.931,0.833,1.041,1.088,0.893,0.988,1.057,1.068,0.852,1.137,1.058,0.918,1.195,0.937,1.12,0.925,0.9,1.031,0.955,1.126,0.963,0.9,0.972 +NM_020209,0.872,0.996,0.89,1.268,1.054,1.43,1.027,0.917,0.751,0.816,2.161,1.026,0.92,0.903,1.588,2.591,1.004,0.917,0.936,2.467,0.835,0.967,3.242,0.953,0.993,1.026,1.057,0.795,1.089,1.444,0.752,0.928,1.058,0.965,0.789,1.352,1.273,0.937,1.391,1.067,0.806,1.667,1.185,0.827,0.855,2.585,1.074,0.847,1.891,0.892,1.327,0.934,0.696,0.913 +NM_020210,0.505,0.749,1.442,0.673,0.602,1.236,0.621,0.268,0.508,0.765,0.879,0.403,0.409,0.452,0.797,1.411,1.379,0.534,0.784,1.235,0.578,0.56,2.236,0.598,0.775,0.515,1.932,0.506,0.532,1.428,0.757,0.98,1.026,1.357,0.227,1.35,0.969,0.503,1.471,1.328,0.763,1.254,1.611,0.903,0.729,1.292,1.001,0.481,1.274,1.182,1.306,0.913,0.874,2.85 +NM_020211,4.11,0.414,4.488,1.278,4.239,0.337,0.31,1.67,6.959,3.679,0.392,3.49,3.251,3.67,2.486,1.058,2.529,1.788,4.349,0.441,1.768,4.656,0.779,5.328,0.565,5.329,3.933,4.648,0.259,0.428,5.583,3.271,1.432,0.894,0.622,0.298,0.324,5.203,0.352,0.413,5.372,1.02,0.354,0.282,4.302,0.285,1.967,4.54,0.302,1.992,0.822,0.684,2.927,0.597 +NM_020212,1.039,0.95,1.107,0.956,0.978,0.946,1.058,1.054,0.878,0.861,1.026,0.944,1.156,0.936,0.818,1.009,0.836,1.032,0.846,0.754,0.976,0.775,1.046,0.952,1.046,0.925,0.89,1.142,1.683,0.962,1.058,0.933,0.958,1.118,1.071,1.103,0.932,1.024,0.981,1.012,0.957,1.102,0.935,1.019,1.013,0.938,1.056,1.016,0.962,0.983,1.046,0.954,1.045,0.984 +NM_020214,2.057,1.878,2.093,2.053,2.084,2.038,1.928,1.822,2.253,1.8739999999999999,2.036,2.112,2.035,1.755,1.923,1.822,1.887,2.1550000000000002,2.064,1.974,1.9100000000000001,2.134,2.061,2.0340000000000003,2.072,1.9449999999999998,1.895,1.971,1.809,1.9769999999999999,1.924,2.275,2.335,2.237,1.9,2.0500000000000003,1.824,1.834,2.306,2.021,1.988,2.105,1.741,2.23,2.1870000000000003,2.0090000000000003,1.949,1.854,1.884,2.024,2.009,1.689,1.8780000000000001,2.0140000000000002 +NM_020215,0.901,0.974,1.552,0.964,1.249,1.096,0.851,0.98,1.616,0.886,0.961,1.249,1.014,1.15,1.001,1.009,0.961,1.041,1.356,0.992,1.013,1.221,1.098,1.084,0.955,0.936,1.693,1.236,0.586,1.434,1.376,3.151,1.101,1.979,0.767,0.837,0.901,1.747,0.926,0.798,1.277,1.345,0.642,0.616,0.848,0.999,0.841,1.098,0.539,0.787,0.955,0.823,1.036,0.689 +NM_020216,0.706,0.889,0.934,0.689,0.827,1.577,0.688,0.78,0.774,0.955,1.24,1.036,0.542,0.58,1.311,2.958,1.01,1.074,1.281,1.214,0.92,0.753,1.527,0.963,0.555,1.033,1.086,0.686,0.781,0.978,0.928,0.982,2.248,1.294,0.606,0.954,1.388,1.091,1.363,0.784,0.784,1.513,1.211,1.761,1.073,1.003,0.828,1.018,1.401,1.071,1.224,0.666,1.141,0.844 +NM_020217,1.034,0.955,1.065,0.852,0.882,1.086,0.843,1.149,1.034,1.019,0.886,1.088,0.927,1.003,0.94,0.913,0.937,0.945,1.185,0.997,1.103,0.969,0.926,0.954,1.012,1.132,1.038,0.928,0.754,1.08,0.98,0.997,0.943,1.022,0.97,0.899,1.064,0.924,0.939,1.007,1.012,0.899,0.889,0.991,0.955,1.074,0.956,0.998,1.03,1.03,1.079,0.976,1.076,0.958 +NM_020219,1.065,1.048,0.929,0.996,1.071,1.094,0.952,1.067,0.999,0.96,1.012,0.95,0.988,0.985,0.988,0.989,1.031,1.064,1.025,1.055,0.95,1.028,1.005,1.003,1.175,0.988,0.998,0.978,1.197,1.121,1.103,0.928,0.938,0.961,0.969,1.085,0.991,1.088,1.075,0.909,1.046,0.942,0.933,1.003,1.138,1.025,0.876,1.052,1.014,1.065,0.979,0.99,0.87,0.94 +NM_020224,1.358,0.79,1.144,0.991,0.914,1.064,0.761,0.69,0.909,0.987,0.916,0.759,0.912,0.769,0.985,1.392,1.044,1.082,1.296,0.892,1.066,1.132,1.1,1.019,0.912,1.416,1.09,0.82,0.931,0.969,0.98,1.005,1.732,1.04,0.6,0.767,0.857,1.009,1.76,0.964,0.979,1.047,0.944,1.244,1.094,0.798,0.857,1.236,1.067,1.118,0.885,0.802,0.851,1.004 +NM_020226,1.135,0.896,1.112,1.032,0.934,1.084,0.725,0.934,0.994,1.075,0.958,0.976,1.062,1.003,1.011,1.038,1.084,1.022,0.928,0.881,1.096,0.985,1.02,1.001,1.016,1.046,1.117,1.075,1.048,0.877,0.995,1.016,0.977,1.065,0.991,0.992,1.064,0.983,0.825,1.019,0.977,0.996,1.035,1.032,1.016,0.91,0.925,0.979,1.075,1.132,0.983,1.043,0.852,0.945 +NM_020227,1.107,1.009,0.883,1.051,1.123,1.144,0.898,0.867,0.946,0.97,1.037,1.091,1.013,1.043,1.288,1.268,0.891,1.072,0.991,0.952,0.98,0.896,0.949,1.066,0.876,1.215,0.914,0.914,1.197,1.07,1.035,0.807,0.898,1.07,1.126,0.784,1.009,1.13,1.096,0.975,1.004,1.0,1.092,1.08,0.863,0.917,0.85,1.031,1.009,1.094,1.044,0.886,0.902,1.221 +NM_020228,0.875,0.899,1.368,0.79,1.014,0.916,0.745,0.876,1.334,0.887,0.93,0.883,0.652,0.834,0.998,1.197,1.045,1.02,1.002,1.161,0.663,1.184,1.191,1.29,0.679,0.687,1.314,0.998,0.611,1.108,1.138,1.158,1.303,1.087,0.656,0.815,1.086,1.146,1.161,1.029,1.101,1.205,0.686,0.681,1.152,1.165,0.978,0.993,1.276,0.989,0.936,0.754,0.689,1.507 +NM_020229,1.136,1.075,1.079,1.167,1.19,0.949,0.9,0.905,0.912,0.999,1.074,1.001,0.941,0.929,1.034,1.14,0.915,1.023,1.037,1.062,1.028,0.963,1.125,0.916,1.031,1.008,0.958,1.05,0.893,0.958,1.071,0.931,0.898,1.003,0.981,1.046,1.032,0.974,0.93,0.946,1.028,1.011,0.89,1.171,1.065,1.024,0.925,1.044,0.974,1.119,0.899,1.068,0.845,0.964 +NM_020230,0.874,0.947,1.004,0.738,1.126,0.717,0.703,0.634,1.156,1.649,0.767,0.991,0.917,0.679,0.895,1.194,1.134,0.844,1.098,0.767,0.788,1.07,1.546,1.304,0.818,1.038,1.191,0.787,0.654,0.863,0.909,0.932,1.725,0.768,0.444,1.666,0.753,1.07,1.591,1.283,0.901,0.945,1.046,1.565,1.354,0.865,0.939,1.032,1.002,0.994,0.861,1.631,1.718,1.551 +NM_020232,0.771,1.695,1.399,0.688,0.836,1.338,0.491,0.863,1.35,0.914,1.068,0.896,0.812,0.841,1.174,2.071,0.805,0.808,1.594,0.829,0.517,1.037,1.175,1.126,0.519,0.876,1.298,0.982,0.378,1.3,1.191,1.177,1.542,1.434,0.414,0.553,1.123,1.015,1.175,0.457,1.129,1.071,0.619,1.158,1.053,0.887,0.773,0.85,0.852,0.806,1.01,0.697,1.033,1.59 +NM_020233,0.807,1.003,1.191,0.903,0.903,1.28,0.807,0.814,0.942,0.872,1.208,1.057,0.951,0.77,1.148,1.435,1.02,0.967,1.113,1.022,0.774,0.986,1.168,1.125,0.821,0.772,0.996,0.922,0.862,1.135,0.996,1.026,1.282,1.369,0.743,0.932,1.146,0.848,0.976,0.884,0.955,1.241,1.187,0.862,0.962,1.046,0.765,0.838,0.792,0.828,1.097,0.776,1.215,1.137 +NM_020235,0.693,1.239,1.222,0.616,0.668,1.107,0.783,0.425,1.004,0.789,0.86,0.623,0.589,0.79,0.8,0.996,0.833,0.926,0.947,1.146,0.646,0.837,1.156,0.911,0.721,0.558,1.365,0.715,0.852,1.319,0.913,1.954,2.323,1.512,0.342,1.096,1.192,0.944,1.33,0.851,1.002,1.457,0.642,1.745,0.71,0.895,0.758,0.431,0.71,0.722,1.228,1.085,1.006,1.723 +NM_020236,0.678,1.237,1.269,0.68,0.81,1.095,0.83,0.597,1.213,0.905,1.684,1.046,0.928,0.699,1.024,1.583,0.803,1.066,1.157,1.028,0.513,0.852,1.366,1.17,0.691,0.665,1.443,0.931,0.5,1.122,0.879,1.094,2.098,1.151,0.227,1.007,1.333,0.87,1.478,0.688,1.314,0.912,0.815,1.152,1.051,1.192,1.358,0.721,1.334,0.657,1.071,1.027,0.925,1.174 +NM_020237,1.032,1.041,1.095,0.933,0.956,1.106,1.153,1.068,1.179,0.972,1.144,1.088,0.923,1.008,1.084,0.906,1.031,1.054,0.981,1.019,0.985,1.077,1.029,0.937,0.931,1.039,0.953,1.028,1.463,1.079,0.997,0.96,0.979,0.975,1.079,0.959,0.973,1.0,0.948,0.941,0.919,0.972,1.024,0.895,1.058,0.945,1.13,1.027,1.118,1.081,0.955,0.899,0.981,0.904 +NM_020239,1.125,0.963,1.252,1.059,1.306,1.116,0.689,0.923,1.508,1.228,0.976,0.953,0.997,1.22,0.969,1.006,1.578,1.007,1.208,0.779,0.898,0.983,0.88,1.422,0.795,1.075,1.655,1.11,1.077,1.027,1.135,1.225,1.097,0.857,0.871,0.972,0.8,0.886,0.941,1.231,1.005,0.827,0.904,0.95,1.154,0.742,1.055,0.895,0.706,1.137,0.95,0.877,1.046,1.314 +NM_020240,0.849,1.07,0.995,0.981,0.927,1.066,0.835,0.821,0.87,0.887,0.944,0.964,0.861,0.922,0.997,1.198,1.068,0.934,0.917,0.966,0.943,0.939,1.074,0.899,0.8,0.904,1.022,0.838,1.014,0.973,0.922,1.062,1.181,0.983,0.871,1.038,1.129,0.946,1.199,1.118,1.068,0.959,1.04,1.016,0.992,1.098,1.054,0.922,1.288,1.087,1.045,1.068,0.933,1.196 +NM_020241,1.095,0.898,0.961,0.887,1.072,1.041,0.821,0.98,0.864,0.905,0.958,1.052,0.981,0.902,1.193,1.072,0.999,0.81,1.101,0.993,0.966,0.945,1.138,1.074,1.09,0.957,1.044,1.014,0.693,1.018,1.024,1.19,0.971,0.929,0.963,1.019,1.125,1.041,1.034,1.343,0.988,1.001,0.938,1.047,1.02,0.936,0.941,1.043,1.076,0.995,1.035,1.094,0.869,0.823 +NM_020242,0.796,0.951,1.075,0.846,0.969,1.024,0.864,0.832,1.216,0.995,1.049,1.068,0.928,1.04,1.007,1.2,0.877,0.914,1.053,1.068,0.904,0.887,1.435,1.111,0.832,0.72,1.77,0.939,0.921,1.143,0.892,1.147,3.071,0.859,0.787,1.021,0.993,0.964,1.111,0.84,1.015,0.937,0.818,1.246,1.012,1.136,0.991,0.789,1.046,0.883,1.178,0.946,1.017,2.292 +NM_020244,0.571,1.146,0.429,0.927,0.406,2.19,0.937,0.406,1.181,0.418,2.115,0.381,0.615,0.612,1.06,1.869,0.35,0.88,0.504,1.45,0.377,0.604,1.249,0.554,0.816,0.545,0.532,1.245,0.584,1.286,0.9,1.265,0.919,2.344,0.477,0.653,2.013,0.513,1.131,0.528,0.573,1.641,1.287,0.824,0.42,1.215,0.698,0.648,1.054,0.314,1.195,0.702,0.371,2.055 +NM_020245,1.12,0.929,1.225,0.666,0.792,0.79,0.575,0.577,1.319,1.004,0.931,0.738,0.673,0.746,0.905,1.043,0.875,0.757,1.159,0.984,0.84,0.783,0.905,0.855,0.849,0.924,1.038,1.045,0.436,0.936,1.001,1.171,1.289,1.123,0.627,0.766,0.824,1.073,1.238,1.331,0.907,1.111,0.791,1.248,1.113,0.915,0.815,0.894,0.654,1.093,0.915,0.79,1.08,1.19 +NM_020246,0.616,1.254,1.039,0.708,0.767,0.925,0.704,0.343,0.988,0.994,0.93,0.641,0.411,0.597,0.941,1.702,0.854,0.954,0.668,1.544,0.377,0.606,3.416,0.783,0.49,0.612,1.198,0.684,0.761,2.691,0.628,2.783,1.006,1.189,0.241,1.054,1.481,0.913,2.025,2.675,0.951,1.426,1.133,2.9,0.868,1.248,1.696,0.488,1.179,0.583,1.258,2.152,0.779,1.499 +NM_020247,0.631,2.479,0.81,0.936,0.602,1.151,0.857,0.452,0.651,0.631,0.864,0.655,0.591,0.592,0.75,0.909,0.636,0.94,0.693,1.067,0.561,0.86,1.792,0.662,1.714,0.731,1.036,0.601,0.676,1.864,0.617,1.881,2.092,2.121,0.36,1.061,1.378,0.724,1.83,1.161,0.635,2.095,0.808,1.962,0.54,0.783,0.763,0.686,1.027,0.608,1.235,0.627,0.578,2.066 +NM_020249,1.8769999999999998,1.8900000000000001,2.017,2.003,2.02,1.995,2.26,2.109,2.028,2.0709999999999997,2.09,2.144,1.921,2.098,1.967,2.0300000000000002,1.909,1.944,1.894,2.0380000000000003,1.884,2.127,2.061,2.037,2.257,2.012,1.908,1.678,2.9939999999999998,1.962,2.038,2.216,2.217,1.83,1.783,2.182,2.205,2.246,2.043,2.255,2.1310000000000002,2.159,1.9860000000000002,2.082,1.908,1.8039999999999998,1.9369999999999998,1.911,2.048,1.8090000000000002,2.159,2.366,1.935,2.1 +NM_020251,0.866,1.038,0.924,1.016,0.957,1.202,0.952,0.962,0.936,0.999,1.139,0.833,1.017,0.849,1.038,0.991,0.869,1.115,0.879,0.881,0.955,0.841,1.009,1.032,1.079,1.001,0.871,0.781,1.314,1.127,1.029,1.078,0.976,1.168,0.956,1.033,1.067,0.958,1.145,0.92,0.825,1.016,0.724,0.897,0.961,1.059,0.704,0.913,1.241,0.92,1.231,0.885,1.073,0.972 +NM_020297,1.126,0.856,1.013,1.194,1.011,1.006,0.92,1.076,0.906,0.956,1.188,1.061,0.868,0.889,0.829,0.921,1.017,0.962,1.07,0.95,1.034,1.024,0.93,1.134,0.965,1.083,0.895,1.001,1.007,1.002,1.017,1.034,1.029,0.902,1.127,1.047,1.013,1.02,0.952,1.07,0.804,1.114,1.033,1.026,0.897,0.915,1.041,1.034,1.031,0.977,0.886,0.978,0.928,1.081 +NM_020299,0.308,1.379,0.831,1.828,0.61,2.964,2.007,0.211,0.57,1.169,2.19,0.891,0.294,0.326,1.064,3.179,0.885,2.227,1.256,1.433,0.492,0.417,2.028,0.602,1.988,0.504,0.917,0.337,1.524,3.443,0.435,0.116,0.547,3.651,0.0281,0.153,2.883,0.574,2.365,0.0226,0.886,1.827,0.996,0.0982,0.693,1.862,1.071,0.407,1.353,0.998,1.887,0.61,1.002,0.169 +NM_020300,0.952,0.852,1.406,0.96,1.243,0.759,0.826,0.585,0.959,1.383,1.092,0.516,0.646,1.073,1.31,1.339,0.86,1.088,1.576,0.989,0.718,0.653,1.112,0.946,0.719,1.074,1.256,1.063,0.52,1.018,1.43,0.683,1.801,1.058,0.726,1.098,0.974,0.695,1.233,0.681,0.83,0.725,0.938,1.224,0.865,1.016,1.119,0.722,1.296,1.133,1.084,0.822,1.477,1.168 +NM_020309,0.958,0.951,0.909,1.008,1.094,0.877,1.013,1.103,0.909,0.934,1.187,1.06,1.041,1.209,0.918,1.002,0.988,1.031,0.974,1.06,0.992,1.033,0.928,0.93,0.989,0.868,1.055,0.91,1.09,1.009,1.032,0.984,0.93,1.083,1.041,0.931,1.044,1.104,1.001,0.997,1.023,1.013,1.187,1.046,1.033,1.045,1.034,0.873,0.863,0.935,1.006,1.014,0.908,0.939 +NM_020310,0.788,0.908,1.378,0.75,0.823,0.989,0.734,0.57,1.02,1.297,0.867,0.783,0.763,0.763,0.921,1.243,0.996,0.963,1.105,1.108,0.71,0.813,1.118,0.789,0.831,0.785,1.181,0.733,0.594,1.211,1.0,1.292,1.367,1.108,0.586,1.037,0.765,1.016,0.944,1.334,0.861,1.018,1.106,0.976,1.014,1.016,0.802,0.825,0.846,1.114,0.993,0.926,2.311,1.302 +NM_020311,0.714,0.632,2.96,0.892,1.397,0.724,0.533,0.584,1.295,0.93,0.589,1.0,0.636,0.686,0.853,0.849,2.04,1.304,2.92,1.287,0.676,1.15,0.849,1.97,0.588,0.964,2.589,1.0,0.339,1.176,1.227,3.83,2.613,1.028,0.539,0.574,0.682,0.853,1.55,3.835,4.349,1.203,0.681,0.471,2.786,0.92,1.161,1.593,0.527,2.021,1.093,2.278,0.876,1.298 +NM_020312,0.834,0.893,0.993,0.944,0.849,1.594,0.527,0.666,1.098,0.837,1.699,0.952,0.781,0.814,1.184,2.022,0.885,0.902,1.622,0.81,0.708,1.071,1.148,1.28,0.867,0.969,1.428,0.752,0.549,1.291,0.928,0.892,3.231,1.489,0.235,0.624,1.323,0.946,1.317,0.485,1.056,1.151,0.816,1.125,0.825,1.084,0.908,0.932,1.111,0.769,1.052,0.553,1.036,3.241 +NM_020313,0.873,0.884,1.171,0.689,1.142,1.043,0.694,0.583,1.108,1.252,1.001,1.063,0.711,0.668,0.821,1.492,0.878,0.946,0.942,0.97,0.52,1.049,1.335,1.245,0.627,0.862,1.169,0.958,0.716,1.003,0.908,1.23,2.244,0.92,0.314,1.13,1.355,0.972,1.259,0.98,1.174,0.995,0.881,1.146,1.154,1.098,1.038,0.9,1.131,0.807,1.154,0.975,0.737,3.136 +NM_020314,1.057,0.914,1.185,0.915,0.918,1.051,0.984,0.823,1.058,0.934,0.941,0.906,0.94,0.959,1.153,1.164,0.975,0.886,1.017,1.006,0.866,0.945,0.909,1.127,0.906,1.045,1.223,0.915,1.438,1.179,1.008,1.176,1.232,1.264,0.879,0.841,1.198,1.0,0.906,0.901,1.019,1.033,0.853,1.077,1.05,1.0,0.905,0.853,0.763,0.893,0.946,0.83,1.14,0.864 +NM_020318,1.169,1.207,0.927,1.014,1.082,1.043,0.875,1.072,1.029,1.079,1.003,0.79,0.955,0.931,1.356,1.06,0.853,0.887,1.021,1.185,0.968,0.869,1.049,1.002,1.027,0.833,0.783,1.012,1.025,0.899,0.963,1.145,1.018,1.023,1.136,1.068,1.024,1.024,1.058,0.803,1.046,0.799,0.965,0.977,1.053,0.962,1.029,0.938,1.088,0.998,0.998,1.075,1.049,0.955 +NM_020319,0.458,1.261,0.915,1.007,0.633,2.115,1.161,0.479,0.818,0.507,1.097,0.53,0.522,0.718,0.959,1.785,0.578,1.179,0.749,1.181,0.414,0.877,1.735,0.751,0.891,0.585,1.025,0.619,0.976,2.907,0.801,1.387,2.486,2.286,0.324,0.993,1.333,0.638,1.279,0.508,0.722,1.384,0.788,1.259,0.476,1.246,0.812,0.582,0.712,0.542,1.189,0.75,0.553,2.276 +NM_020320,0.694,1.237,1.032,0.824,0.921,1.18,0.686,0.599,1.062,1.004,1.176,0.87,0.802,0.712,0.858,1.384,0.741,0.896,1.176,1.204,0.639,0.661,1.18,0.936,0.895,0.75,0.946,1.033,0.508,1.113,0.811,1.262,1.29,1.308,0.428,1.335,0.961,0.87,1.36,1.051,1.174,1.126,0.654,0.943,1.025,1.127,1.223,0.711,1.092,0.736,1.017,0.774,0.922,1.454 +NM_020322,1.078,0.897,0.944,0.985,1.014,1.032,1.059,1.103,1.021,0.883,1.159,0.881,1.044,1.045,0.999,1.07,1.077,0.983,1.038,0.993,0.672,1.1,0.86,1.103,0.928,0.891,0.858,0.961,1.187,1.029,0.984,0.855,1.065,1.005,1.033,1.158,1.003,0.973,0.882,0.848,0.973,0.877,1.271,0.941,0.952,0.897,1.014,1.083,0.924,1.031,0.94,0.935,1.084,1.156 +NM_020324,1.051,0.972,0.989,1.009,0.798,1.045,0.904,0.971,0.945,0.955,1.039,1.005,0.843,1.024,0.793,1.195,1.013,1.097,0.95,1.072,0.912,0.862,1.116,1.004,0.929,0.854,0.877,0.95,0.946,1.028,0.926,1.097,1.011,1.15,0.913,0.961,1.149,1.046,0.888,1.067,0.898,1.025,0.887,0.895,0.976,1.15,0.915,1.021,1.019,0.889,0.979,0.938,1.04,0.986 +NM_020325,1.137,1.138,0.893,1.208,0.951,0.997,1.082,1.038,0.998,1.036,0.889,0.905,1.072,0.857,1.163,0.895,0.956,1.116,0.951,1.145,0.95,0.985,0.944,1.091,0.824,0.963,0.897,1.008,0.748,0.929,0.934,1.055,1.07,1.028,1.048,1.118,1.033,1.076,1.013,0.888,1.159,0.99,0.901,1.112,1.121,0.954,1.016,0.933,0.986,0.953,1.024,0.967,1.054,1.138 +NM_020327,0.933,0.897,0.963,0.901,0.875,1.001,0.939,1.11,0.895,1.015,1.372,0.88,0.982,0.939,1.039,1.168,0.86,0.998,0.884,1.206,0.979,1.072,0.967,1.025,1.101,0.931,1.089,0.996,1.539,0.999,1.012,0.908,0.87,1.12,1.297,1.147,1.047,0.949,1.07,0.986,0.963,0.96,1.141,0.97,0.944,0.929,0.911,0.907,0.94,0.963,1.051,0.933,1.125,0.89 +NM_020328,1.935,2.098,1.951,1.945,2.0780000000000003,2.082,2.001,1.9689999999999999,2.041,1.999,1.8359999999999999,1.9689999999999999,1.996,2.076,1.649,2.202,1.92,1.9609999999999999,2.095,1.853,2.23,1.9929999999999999,1.9260000000000002,2.0709999999999997,1.903,2.051,2.113,1.9180000000000001,1.947,1.894,1.99,2.082,2.0359999999999996,2.058,2.004,1.915,1.893,2.099,1.9899999999999998,2.031,2.0789999999999997,1.8969999999999998,2.0220000000000002,1.997,1.913,1.884,2.083,2.0620000000000003,1.92,1.948,1.858,1.971,1.95,2.007 +NM_020338,1.071,1.103,1.943,0.662,1.226,0.976,0.608,0.659,1.178,1.261,0.731,0.666,0.416,0.887,1.102,0.932,1.262,0.932,1.678,0.823,0.946,1.074,0.816,0.906,0.631,0.747,1.594,0.977,0.725,1.649,1.492,1.658,0.751,1.599,0.718,0.792,0.883,1.209,1.075,0.744,1.693,1.195,0.61,1.063,1.147,0.82,0.9,1.107,0.694,1.34,0.847,0.656,1.343,0.578 +NM_020340,1.024,1.0,0.952,1.005,0.967,1.065,1.164,1.041,0.994,1.057,1.013,0.94,1.03,0.879,1.104,0.929,1.013,0.952,0.954,1.031,0.956,0.995,0.931,1.02,0.935,0.921,1.016,0.986,0.927,1.068,0.923,0.961,1.002,0.945,1.032,0.993,0.911,1.08,1.109,0.922,1.081,1.023,1.112,1.11,0.949,1.068,0.959,1.162,0.974,0.969,1.133,1.066,0.867,0.981 +NM_020344,0.946,0.974,0.979,1.014,1.042,1.024,0.903,0.917,1.073,1.117,1.002,0.996,1.147,1.259,1.076,1.063,1.042,1.146,0.971,0.987,1.054,0.949,0.978,0.931,0.974,0.996,1.059,0.867,1.125,1.047,1.061,1.032,0.938,0.982,1.002,1.065,0.916,1.048,0.96,0.956,1.108,0.868,1.344,0.923,1.001,0.903,1.05,1.111,1.005,0.975,0.949,0.931,0.983,0.968 +NM_020345,1.015,1.006,1.127,0.864,0.957,1.059,0.938,0.948,1.26,1.026,0.935,0.875,0.861,1.059,1.135,1.025,1.131,0.942,1.001,0.881,0.808,0.985,1.013,1.076,0.843,0.866,1.045,1.099,0.583,1.017,1.403,1.052,1.428,1.086,0.883,0.925,0.999,1.224,0.965,0.907,1.105,1.085,0.835,0.855,1.058,0.875,1.125,0.916,0.984,1.079,0.935,0.954,1.035,1.287 +NM_020346,0.916,1.055,0.954,1.048,1.044,1.045,0.963,0.889,0.979,1.003,1.012,1.048,1.174,0.947,0.928,1.075,0.946,0.997,1.068,0.985,0.982,1.018,0.965,1.002,0.982,0.914,1.114,1.004,0.975,0.958,1.13,0.983,0.901,0.982,1.051,1.021,0.993,0.923,0.948,1.035,1.077,1.104,1.062,1.051,0.975,0.884,0.872,1.035,1.053,0.949,0.971,1.122,1.107,0.933 +NM_020347,0.83,1.389,1.092,1.027,0.979,1.171,0.905,0.799,1.011,0.841,1.122,1.023,0.84,0.713,0.967,1.379,0.994,0.896,0.873,1.233,0.779,0.995,1.284,0.897,0.898,0.884,1.118,0.936,0.679,1.542,0.982,1.399,1.487,1.317,0.614,0.799,1.137,1.092,1.055,0.896,0.965,1.255,0.66,0.874,0.9,0.958,0.841,0.856,0.953,0.867,1.077,0.811,0.928,2.079 +NM_020348,0.799,1.016,1.081,1.072,0.953,0.947,0.666,1.012,1.068,0.972,1.114,0.827,1.076,1.018,0.914,1.035,1.154,1.13,0.99,0.981,1.163,0.808,1.195,1.145,0.911,0.948,0.889,0.972,0.703,0.851,1.002,0.996,1.009,1.084,1.007,1.149,0.867,1.052,1.107,0.872,1.049,0.94,0.844,1.093,0.976,1.049,0.8,0.93,0.991,1.029,1.005,0.968,1.024,1.092 +NM_020349,1.004,0.858,0.977,0.861,1.036,0.88,0.916,1.125,1.037,0.954,0.842,1.061,0.971,1.032,0.855,0.979,0.986,1.063,1.031,0.833,0.945,1.061,0.995,0.985,0.903,1.115,1.074,1.045,0.782,1.044,1.011,1.119,0.961,0.961,0.896,0.959,0.897,1.074,1.062,1.065,0.903,0.927,0.716,1.216,1.019,0.843,1.068,0.936,1.078,1.017,1.012,0.892,1.141,0.973 +NM_020350,0.91,1.018,1.962,0.53,0.854,0.838,0.598,0.476,0.723,1.043,0.541,0.92,0.812,0.419,0.628,1.08,1.101,1.045,2.558,0.687,0.927,0.695,1.213,1.155,0.454,1.02,1.875,0.659,0.52,0.936,0.657,1.747,1.93,1.238,0.326,0.759,0.658,0.809,1.363,1.964,1.369,0.733,0.371,1.91,1.379,0.493,1.171,0.629,0.459,1.527,0.826,1.529,1.638,1.862 +NM_020351,0.825,0.949,0.984,0.74,0.754,1.042,0.95,0.733,1.002,1.037,0.89,0.93,0.8,0.791,1.041,1.085,0.842,0.814,0.737,0.922,1.0,0.749,2.028,0.948,0.769,0.874,0.905,1.251,0.611,1.445,0.819,57.27,3.811,1.245,0.755,1.283,0.73,2.0,2.941,7.072,1.233,1.969,1.009,1.247,0.842,1.061,1.249,0.721,0.815,0.781,1.75,6.193,1.149,1.692 +NM_020353,0.728,1.032,1.419,0.79,0.892,1.192,0.578,0.686,0.786,0.684,1.245,0.698,0.746,0.806,1.497,1.174,1.082,0.608,1.026,0.991,0.607,0.788,0.945,0.653,0.667,0.77,2.23,0.973,0.425,1.301,0.719,3.438,1.103,1.794,0.453,0.845,1.152,0.793,0.953,0.877,1.145,1.378,0.681,1.01,0.919,1.07,0.802,0.659,1.689,1.22,1.237,0.621,0.846,1.196 +NM_020356,0.879,1.147,1.005,0.876,0.91,1.05,1.082,0.995,0.956,1.022,1.238,1.207,0.842,0.842,1.097,1.034,0.935,1.036,0.999,1.028,0.983,1.035,0.877,0.983,0.91,0.819,1.034,0.889,0.91,1.007,0.906,0.85,1.014,0.907,0.891,1.067,1.003,0.94,1.056,0.998,1.078,1.007,1.08,0.983,0.875,1.034,0.954,1.015,0.921,0.952,1.089,1.058,0.84,1.039 +NM_020357,0.622,0.984,1.232,0.683,0.941,1.349,0.67,0.761,1.329,0.873,1.353,1.041,0.789,0.789,1.08,1.8,0.744,0.981,1.65,0.789,0.523,0.911,1.204,1.215,0.603,0.888,1.495,0.963,0.365,1.096,1.099,1.462,2.094,1.578,0.296,0.894,1.139,0.846,1.215,0.757,1.099,1.189,0.576,1.126,0.998,0.971,0.762,0.756,1.105,0.819,0.952,0.823,1.05,1.63 +NM_020358,1.067,0.981,1.03,0.797,0.997,1.009,0.864,0.879,1.031,0.862,0.926,1.058,0.886,1.107,0.956,1.05,1.021,1.085,1.003,1.065,1.13,0.99,0.824,1.016,0.964,0.997,0.955,1.138,1.065,0.984,1.064,0.945,1.044,1.051,1.011,0.943,0.978,0.882,1.005,1.041,0.971,0.958,1.046,0.986,0.933,1.027,0.948,1.046,0.911,1.08,1.005,1.031,1.092,1.012 +NM_020359,1.035,0.974,1.016,1.114,1.163,0.929,1.08,0.956,0.977,0.784,1.022,1.132,0.972,0.934,0.857,1.014,1.014,1.021,1.182,1.0,0.906,0.978,1.028,0.958,0.951,1.045,0.996,0.892,0.988,0.946,1.17,1.029,0.97,0.912,0.977,0.958,1.109,1.006,1.009,0.951,0.876,1.026,0.944,1.021,0.934,1.147,0.902,1.061,0.99,1.246,1.062,1.084,1.022,1.101 +NM_020360,1.278,0.713,2.282,0.551,2.011,0.748,0.404,0.774,3.068,2.703,0.497,1.525,0.798,0.75,0.941,0.906,1.574,1.0,1.582,0.706,0.653,1.079,0.794,2.53,0.408,1.094,2.904,2.162,0.215,0.962,1.776,3.051,1.674,0.836,0.798,0.594,0.561,2.056,0.758,1.222,2.489,0.812,0.532,0.801,2.47,0.789,2.052,1.324,0.472,1.482,0.765,1.285,2.1,1.815 +NM_020361,1.112,0.967,1.012,0.985,1.006,0.908,0.888,1.02,0.998,1.049,1.034,0.941,0.856,0.955,1.104,0.864,1.035,1.049,0.932,0.88,0.931,0.976,0.998,1.121,0.932,1.059,0.964,1.108,1.032,1.09,1.0,1.199,0.906,0.959,1.048,0.865,1.005,1.205,1.054,1.033,1.065,0.986,1.026,1.122,1.0,0.973,1.121,1.055,0.967,0.995,0.995,0.828,1.074,0.986 +NM_020362,1.395,0.886,1.554,0.714,1.993,0.981,0.429,0.947,1.626,1.791,0.929,1.843,1.04,1.221,0.998,1.209,1.2,1.095,2.506,0.678,1.02,1.594,0.84,2.016,0.594,1.723,1.544,1.165,0.443,1.061,1.326,0.604,1.002,0.976,0.32,0.902,0.897,2.461,0.975,0.47,1.97,0.938,0.651,0.828,1.563,0.75,0.981,1.686,0.695,1.224,0.882,0.587,1.285,1.338 +NM_020363,0.978,0.946,0.889,0.761,0.904,4.458,1.053,1.071,1.005,0.944,7.059,0.886,0.963,0.99,2.087,7.976,1.101,1.441,0.92,0.993,0.951,0.84,3.686,0.981,2.044,0.966,0.978,0.928,0.993,3.717,1.063,1.043,0.862,4.194,0.94,0.886,2.993,0.916,4.41,1.018,0.93,2.072,1.025,0.992,1.013,2.577,0.9,0.874,1.072,0.873,6.609,0.865,1.045,1.025 +NM_020365,0.723,0.881,1.223,0.613,0.955,1.27,0.695,0.854,1.39,1.103,0.807,1.287,0.739,0.732,1.002,1.609,0.978,0.804,1.057,0.848,0.708,1.236,1.31,1.63,0.633,0.715,1.331,0.946,0.774,1.022,1.222,1.47,3.669,1.441,0.48,0.697,0.805,1.064,1.665,0.8,1.312,1.116,0.631,0.994,1.227,0.876,0.97,0.823,1.183,0.835,0.925,0.903,0.844,1.95 +NM_020366,1.055,0.891,0.959,0.933,0.954,1.025,0.959,1.108,0.998,0.776,0.994,1.024,0.999,1.317,0.955,1.01,1.068,1.042,0.839,0.942,0.943,1.102,1.051,1.024,0.963,0.95,0.998,1.024,0.755,1.012,1.017,1.041,0.921,1.016,1.033,1.097,1.093,1.014,0.953,1.085,0.934,0.988,1.168,1.001,1.092,1.003,1.02,0.912,1.014,1.044,0.911,0.897,0.927,1.04 +NM_020367,0.954,1.064,1.061,0.99,1.126,0.946,1.029,1.065,0.985,1.084,0.893,1.154,0.928,0.991,0.973,0.968,1.102,0.991,1.207,1.005,1.001,1.141,0.941,0.994,0.975,0.901,0.881,1.218,0.862,0.883,0.989,1.021,1.159,0.962,1.219,1.065,0.859,1.003,0.869,0.889,1.015,0.951,0.828,0.858,1.002,1.025,0.983,1.029,0.891,1.082,1.013,0.998,1.036,1.09 +NM_020368,0.665,0.892,1.807,0.623,1.157,1.416,0.816,0.813,1.385,1.433,0.785,0.989,0.862,0.637,1.154,1.927,1.228,0.892,0.719,0.926,0.365,1.549,1.112,1.387,0.49,0.506,2.069,1.004,0.515,1.263,1.614,1.54,1.819,0.996,0.365,0.364,0.776,1.564,1.583,1.29,1.099,1.033,0.58,0.503,1.248,0.913,1.166,0.876,1.249,1.035,1.223,0.812,0.499,1.048 +NM_020369,0.765,0.975,1.225,1.056,1.171,1.2,0.862,0.939,1.044,1.096,0.852,0.949,1.047,0.934,1.016,1.184,1.042,1.091,0.997,0.958,1.05,1.069,0.859,1.046,1.14,0.95,1.101,0.916,0.959,1.076,0.916,1.143,0.854,1.085,1.174,1.092,1.0,0.929,0.874,0.86,1.103,1.089,0.847,1.036,1.09,0.965,0.876,1.026,1.186,0.975,0.997,1.298,1.137,1.039 +NM_020370,0.932,0.953,1.18,1.034,0.776,0.87,0.833,1.0,0.916,1.021,0.948,1.011,1.009,1.017,0.934,0.915,0.979,1.078,1.045,0.85,0.906,0.985,0.972,0.951,0.987,0.954,0.951,1.069,0.857,0.885,0.908,1.299,1.098,0.883,0.935,0.974,0.994,0.925,1.187,1.887,1.176,0.81,0.957,0.905,0.892,1.067,1.078,1.001,0.849,1.206,1.004,1.34,1.158,1.136 +NM_020371,0.848,1.024,1.529,0.803,1.128,0.85,0.717,0.803,1.297,1.235,0.859,1.308,0.972,0.715,0.898,1.353,0.989,0.93,1.804,0.933,0.834,1.19,1.46,1.702,0.756,0.903,1.163,0.986,0.598,1.0,0.934,1.261,2.288,1.057,0.477,0.846,0.89,1.265,1.165,0.653,1.52,1.012,0.657,0.807,1.365,0.939,1.136,1.032,1.042,1.076,0.989,0.945,1.335,0.932 +NM_020372,1.097,0.898,1.039,1.036,1.087,1.082,1.02,1.007,0.995,0.934,0.912,1.006,1.103,0.848,0.892,0.954,1.105,0.823,0.963,1.054,0.941,1.09,1.06,1.028,1.032,0.983,1.137,1.164,1.117,0.997,1.124,1.097,1.018,0.888,1.079,1.076,0.895,1.033,1.014,1.037,1.025,1.007,0.974,0.921,1.016,1.225,1.134,1.005,0.952,1.066,0.953,0.947,0.914,1.145 +NM_020373,1.031,0.99,1.007,1.127,0.928,0.932,0.949,1.124,1.039,1.004,1.09,0.988,1.003,0.875,0.942,0.963,1.01,0.861,1.075,0.924,0.93,0.838,1.005,1.033,0.893,0.855,1.13,1.043,0.844,1.048,0.845,1.033,1.095,1.047,1.171,1.067,1.009,0.914,1.013,0.935,1.0,0.966,1.013,0.937,1.027,1.182,1.151,0.991,1.09,1.045,1.014,1.019,1.071,0.95 +NM_020374,0.952,1.06,1.093,1.008,0.966,0.973,0.9,0.804,1.335,0.92,1.16,0.901,0.939,0.832,0.739,1.078,1.103,1.074,1.26,0.856,0.899,0.826,1.165,1.007,0.88,1.086,0.898,1.209,0.68,1.064,1.073,1.376,1.277,1.128,0.774,1.113,1.092,0.973,0.948,0.941,0.98,1.039,0.899,1.147,0.922,1.037,0.849,0.925,0.988,1.002,0.931,0.845,1.012,0.92 +NM_020375,0.79,0.942,0.972,0.804,1.014,1.402,0.924,0.832,1.07,1.219,0.738,1.181,0.814,0.731,0.968,1.677,1.277,1.038,0.576,1.058,0.549,0.938,1.23,1.22,0.74,0.867,1.172,0.83,0.707,1.052,1.005,1.138,2.265,1.056,0.798,0.825,0.863,1.045,1.516,1.182,1.013,1.082,0.789,0.787,1.169,1.108,1.506,0.905,1.627,0.891,1.163,0.9,0.81,1.313 +NM_020377,1.023,0.858,0.962,1.124,0.975,0.918,1.037,1.144,0.929,0.988,0.873,1.005,1.077,0.965,0.962,0.899,1.031,1.049,0.823,0.867,1.003,1.173,0.925,0.977,0.924,0.956,1.052,0.98,1.0,1.006,0.919,0.925,1.303,1.068,0.948,1.11,1.027,0.836,1.154,0.878,0.997,1.051,0.994,0.875,1.027,0.937,0.959,0.983,0.998,1.162,0.875,1.073,0.984,1.061 +NM_020378,0.861,1.614,0.947,1.069,0.742,1.087,0.895,0.808,0.768,0.847,1.07,0.86,0.848,0.856,0.903,1.073,0.942,0.901,0.968,1.137,0.822,0.759,1.156,1.051,0.979,0.959,0.924,0.806,0.699,1.227,0.805,2.621,2.303,1.375,0.744,1.038,0.993,1.039,1.289,2.677,0.981,1.037,1.155,1.704,0.972,0.984,1.015,0.847,0.773,0.848,1.025,1.041,1.068,2.048 +NM_020379,0.902,0.916,1.242,0.917,0.999,0.941,0.974,0.896,0.967,0.906,0.978,0.873,0.789,1.17,1.061,0.933,0.918,0.896,0.919,1.195,0.978,0.938,1.366,0.961,1.256,0.745,1.157,0.911,1.59,1.298,0.796,2.86,0.929,1.311,0.9,1.12,0.954,0.96,0.947,1.341,1.056,1.559,1.52,0.877,0.894,1.216,0.715,0.769,0.956,1.003,0.807,0.966,1.038,1.329 +NM_020380,0.929,1.034,1.051,0.969,0.876,1.056,1.095,1.02,1.118,1.073,0.942,0.901,0.803,0.893,0.975,1.098,1.041,1.027,0.985,1.079,0.883,0.837,1.412,1.114,0.949,0.871,1.361,0.978,1.157,0.969,0.997,0.948,1.305,1.013,0.949,1.152,1.041,1.048,1.333,1.083,1.068,0.867,1.446,0.94,0.97,0.981,1.094,0.952,1.057,0.922,1.205,0.994,0.956,1.071 +NM_020382,1.114,0.713,1.29,0.844,1.442,0.952,0.72,0.883,1.719,1.223,0.964,1.467,1.084,0.901,0.894,0.842,1.076,1.002,0.931,0.892,1.024,1.084,0.914,1.443,0.85,0.868,1.183,1.739,0.804,0.759,1.084,0.946,1.027,1.049,0.747,1.149,0.836,1.33,0.886,1.064,1.774,1.028,0.899,0.909,0.966,1.306,1.618,0.878,1.28,1.044,1.114,1.141,0.962,0.998 +NM_020383,0.374,0.975,0.806,0.45,0.58,1.673,0.626,0.265,0.87,0.754,1.297,0.658,0.319,0.394,1.296,2.841,0.69,0.896,0.677,1.904,0.279,0.508,1.8,0.718,0.507,0.467,0.971,0.603,0.503,1.653,0.556,1.517,1.884,1.455,0.119,1.293,1.761,0.527,2.092,0.74,0.76,1.408,1.522,1.124,0.792,2.416,1.245,0.411,2.157,0.562,1.942,0.699,0.698,1.488 +NM_020385,0.911,0.979,1.17,0.841,0.919,0.959,0.746,0.542,0.769,1.0,0.904,0.791,0.703,0.632,0.981,1.506,0.939,0.796,1.231,0.891,0.805,0.908,1.021,1.076,0.758,0.911,1.073,0.836,0.634,0.954,0.942,1.573,1.41,1.349,0.516,1.117,1.039,0.906,1.633,1.169,0.97,1.176,0.687,1.994,1.044,0.863,1.102,0.944,0.846,0.974,0.927,0.863,0.99,1.976 +NM_020386,1.79,0.79,1.489,1.107,1.338,0.77,0.733,1.27,2.152,1.555,0.735,2.004,1.856,1.68,1.284,1.018,1.134,1.25,2.369,0.73,1.213,2.099,0.986,1.887,0.864,1.613,1.968,1.781,0.649,0.866,1.773,0.85,0.871,0.822,0.901,1.122,0.826,2.791,1.084,0.838,1.455,0.722,0.647,0.867,1.608,0.72,1.022,1.472,0.789,1.771,0.894,0.91,1.795,1.391 +NM_020387,1.476,0.554,1.884,0.875,1.489,1.205,0.29,1.352,1.676,1.45,0.574,1.541,1.308,0.993,1.101,1.377,1.683,1.007,2.312,0.533,1.276,1.731,0.707,1.966,0.412,2.207,1.046,1.12,0.359,0.855,1.727,0.655,1.262,1.154,0.847,0.741,0.599,1.459,1.026,0.483,1.556,0.616,0.321,1.1,1.625,0.521,0.917,1.966,0.557,2.073,0.784,0.441,1.556,0.916 +NM_020388,0.942,1.022,1.058,0.997,0.932,1.011,1.147,1.056,1.043,0.954,1.013,1.003,1.042,0.872,1.124,0.923,0.974,1.16,1.245,0.929,0.934,1.027,1.093,1.011,1.12,0.891,0.826,0.955,0.851,0.911,0.96,0.95,0.946,1.049,0.988,1.109,1.022,0.894,0.935,1.03,1.049,0.842,0.811,1.004,0.953,0.966,0.854,1.048,1.011,0.998,0.899,1.042,0.853,1.139 +NM_020389,1.051,1.085,0.973,1.053,0.981,0.978,0.984,0.938,1.002,1.017,1.111,1.088,0.998,1.046,0.961,0.922,0.926,1.048,0.981,0.977,1.035,1.094,0.863,1.145,1.063,0.945,0.878,1.027,0.925,1.078,1.113,1.033,1.003,0.932,1.08,1.023,0.972,0.945,0.939,1.021,1.025,0.923,1.249,0.938,1.151,1.16,1.011,0.914,1.126,1.056,0.959,0.982,1.135,0.955 +NM_020390,0.874,1.195,0.987,0.856,0.878,1.025,1.1,0.902,0.973,0.93,1.176,0.997,0.912,0.975,0.947,0.996,0.804,0.844,0.979,1.036,0.808,0.856,1.101,1.072,1.399,0.751,0.925,0.942,0.726,1.122,0.897,1.619,1.284,1.199,0.781,0.922,1.283,0.875,1.093,0.96,0.941,0.941,1.006,1.094,1.026,0.909,1.074,0.752,0.984,0.894,0.993,1.285,0.812,1.5 +NM_020393,0.939,0.935,1.15,0.962,1.213,0.969,0.927,0.995,1.229,1.033,1.083,1.023,0.993,0.915,1.053,0.952,1.082,1.032,1.436,1.062,1.061,1.023,0.904,1.062,1.023,0.981,1.235,1.084,1.324,0.944,1.163,1.0,1.129,1.015,0.986,1.004,0.905,1.222,0.938,0.826,1.422,0.854,0.918,1.074,1.169,0.911,1.131,0.939,0.991,0.948,1.069,0.986,1.161,0.917 +NM_020394,1.102,0.926,0.939,0.81,1.303,1.029,0.946,0.807,0.917,0.838,0.91,0.951,0.903,1.103,0.853,1.047,0.995,1.059,1.031,1.301,0.956,1.084,1.153,0.89,0.983,0.931,0.998,0.857,0.892,0.924,0.827,1.06,1.39,0.919,0.968,1.546,0.963,0.976,1.089,1.045,0.919,0.964,1.302,1.235,1.044,1.074,0.974,0.872,0.983,1.121,0.898,1.108,1.017,1.133 +NM_020395,0.846,0.936,1.101,0.966,0.838,1.096,0.694,0.691,1.004,0.891,1.164,0.659,0.74,0.868,0.966,1.278,0.906,0.854,1.276,1.095,0.789,0.731,1.397,1.027,0.826,0.869,1.17,0.888,0.512,1.258,0.794,1.306,1.82,1.432,0.511,0.725,1.238,0.863,1.204,0.708,1.036,1.221,0.921,1.393,1.058,0.89,0.855,0.741,1.058,0.908,0.868,0.972,0.941,1.164 +NM_020396,1.079,0.985,1.306,1.16,1.246,0.858,0.845,0.982,0.979,1.057,1.084,1.168,1.06,1.023,0.942,1.043,0.955,0.986,1.175,0.901,1.016,0.904,0.994,1.049,1.02,1.135,0.933,1.029,0.886,0.903,0.912,0.884,1.213,0.922,0.953,0.846,1.077,0.966,0.819,0.847,1.104,1.032,0.816,1.153,1.128,1.115,1.042,1.077,0.809,0.974,0.868,1.104,1.135,1.164 +NM_020397,1.058,0.891,1.559,0.946,1.245,0.841,0.892,0.998,1.331,1.16,0.808,1.171,1.043,1.229,0.936,0.935,1.072,1.088,1.548,1.096,1.042,1.096,0.814,1.373,0.924,1.064,1.094,1.209,0.773,0.905,1.359,1.128,0.991,0.997,0.885,0.874,0.84,1.379,0.891,1.22,1.498,1.025,0.919,0.941,1.386,0.813,0.971,1.147,0.817,1.208,1.034,0.877,1.258,0.964 +NM_020398,0.916,0.937,0.959,0.805,0.964,1.045,0.914,0.982,0.953,1.002,1.013,1.017,1.028,0.957,0.778,1.041,0.913,0.944,0.874,0.912,1.014,0.974,0.909,0.978,1.106,1.025,0.96,1.003,1.185,0.96,1.058,0.976,1.008,1.079,1.153,1.083,0.924,1.118,0.925,0.853,1.08,1.029,1.215,1.057,1.126,1.103,0.955,1.047,1.093,0.956,1.052,0.85,0.859,1.038 +NM_020399,0.866,0.958,0.871,0.911,0.933,1.088,0.923,0.9,0.97,1.122,1.126,0.988,0.99,0.864,0.937,1.168,0.996,0.96,0.97,0.895,0.902,1.039,0.973,1.128,0.896,0.9,1.063,1.11,0.684,1.09,1.104,1.128,1.032,1.038,0.966,0.895,0.998,1.033,1.324,1.091,0.964,1.068,1.049,0.821,1.085,0.978,0.955,0.978,1.071,0.964,0.946,1.008,1.109,1.259 +NM_020400,0.904,0.733,1.097,0.927,1.161,1.113,0.862,0.771,1.207,1.216,0.944,0.916,0.788,1.137,1.008,1.525,0.948,1.021,1.374,0.884,0.779,1.133,0.973,1.204,0.696,1.257,1.09,1.18,0.664,1.121,1.073,0.63,1.085,1.08,0.491,1.154,0.903,0.955,0.948,0.834,1.213,1.025,1.094,0.863,1.335,1.152,1.119,1.095,0.7,1.114,0.841,0.612,1.245,0.844 +NM_020401,0.827,1.18,0.997,0.72,0.841,0.861,0.893,0.481,1.173,1.024,1.008,0.678,0.697,0.768,0.926,1.368,0.841,0.864,1.159,0.915,0.652,0.769,1.294,1.186,0.739,0.705,1.542,0.773,0.887,0.941,1.019,1.381,3.242,1.268,0.348,1.189,1.098,0.827,1.874,1.282,1.071,0.987,0.61,0.86,1.044,0.934,0.9,0.631,1.285,0.8,1.116,1.05,1.187,2.426 +NM_020402,1.104,1.008,0.982,0.825,1.092,0.969,0.997,1.106,0.929,0.951,1.075,1.166,1.057,1.045,0.957,0.877,1.141,1.171,0.948,1.039,0.983,0.991,1.189,0.991,0.942,0.949,0.986,0.866,0.812,1.018,1.002,0.936,1.176,1.083,1.019,1.01,0.995,0.913,1.032,1.133,0.912,1.061,0.886,1.044,0.902,1.004,0.958,0.954,0.901,1.0,1.132,1.053,1.046,0.939 +NM_020403,0.963,0.995,1.03,0.998,0.985,1.068,0.924,1.056,0.966,1.087,1.004,0.975,1.098,0.902,0.888,0.98,0.99,0.958,1.007,1.047,0.902,1.036,1.052,1.125,0.981,0.962,1.047,0.956,1.563,1.059,1.02,0.96,0.972,0.931,0.981,1.024,1.087,0.936,1.027,1.054,0.926,1.138,0.961,1.088,1.009,0.959,1.051,0.902,0.913,0.959,1.062,0.907,1.03,1.105 +NM_020404,0.992,1.003,1.021,1.103,0.892,1.072,0.928,1.163,0.979,1.011,0.914,0.924,0.956,1.13,0.995,0.931,0.928,0.965,0.872,1.076,0.904,0.988,0.967,0.975,0.901,1.09,0.847,0.878,1.226,1.017,1.014,1.89,1.114,0.901,1.091,0.988,0.942,1.117,1.008,1.112,1.018,0.946,0.934,0.93,0.995,1.0,0.968,1.0,1.05,1.101,1.079,1.199,0.916,1.047 +NM_020405,1.027,1.104,0.882,1.04,0.895,0.986,1.326,0.972,0.934,1.078,1.136,0.982,0.908,0.886,0.789,0.974,0.915,0.74,1.026,1.0,1.04,0.919,1.109,0.985,0.985,0.992,0.946,0.994,1.002,1.031,1.054,2.402,1.02,1.099,0.935,0.968,0.938,1.082,1.139,1.228,1.014,1.144,1.017,0.846,0.993,1.019,0.883,0.981,0.89,0.918,1.162,1.04,0.96,1.269 +NM_020406,1.142,1.022,1.106,0.88,1.02,0.909,1.283,0.957,1.036,0.874,0.947,1.024,1.34,0.958,1.134,1.544,1.397,0.963,1.155,1.509,1.572,1.157,0.871,0.905,1.0,0.888,1.612,0.99,1.32,1.263,0.873,0.982,0.968,0.879,0.847,0.903,0.959,0.973,0.869,0.894,1.221,0.902,1.363,0.977,1.098,0.913,1.058,1.05,1.005,1.881,0.873,0.918,1.964,1.334 +NM_020407,1.088,1.189,0.988,1.01,1.183,1.02,1.086,0.995,0.997,1.055,0.977,1.082,1.004,0.8,1.011,0.922,1.197,1.022,1.064,0.876,1.076,1.121,0.785,1.085,0.882,1.11,1.026,0.978,0.742,1.035,1.351,1.014,0.91,0.922,1.196,0.959,0.915,1.04,1.007,1.024,0.928,0.918,1.01,0.933,1.038,0.957,1.102,1.135,0.953,0.877,0.869,0.964,1.004,1.135 +NM_020409,0.92,0.898,1.127,0.782,0.991,1.171,1.07,0.878,1.074,1.006,0.981,1.013,0.912,0.937,1.002,1.221,1.197,0.877,0.915,1.132,0.869,0.967,0.933,1.146,0.868,0.939,1.661,0.887,0.634,1.211,1.16,1.308,2.279,0.956,0.906,0.885,1.066,1.061,1.361,1.023,0.922,0.99,0.755,0.847,1.11,1.073,1.126,0.899,1.366,0.998,1.4,0.893,0.754,1.437 +NM_020410,0.596,1.113,0.971,0.704,1.012,0.865,0.818,0.535,0.925,0.893,0.982,1.016,0.522,0.555,0.737,1.357,0.871,1.008,0.751,1.114,0.565,0.739,1.513,1.062,0.618,0.587,0.805,0.699,0.66,2.138,0.774,1.08,0.915,0.995,0.481,1.912,1.005,1.199,1.401,1.246,1.129,1.141,1.345,1.066,1.092,1.032,0.848,0.741,1.137,0.818,1.128,2.078,1.301,1.22 +NM_020411,0.926,1.046,1.026,0.954,0.985,0.924,0.981,1.028,1.116,1.036,1.048,1.063,0.868,0.83,0.801,0.8,1.02,1.049,0.906,1.042,0.878,0.913,0.994,1.061,1.077,0.923,1.132,0.885,1.055,1.016,0.946,1.103,1.002,1.017,1.175,0.961,0.989,1.144,1.001,1.125,1.017,0.916,0.973,0.882,0.927,0.825,0.977,0.986,0.907,0.983,0.997,1.055,0.85,0.955 +NM_020414,0.809,1.089,1.162,0.796,0.794,1.014,0.797,0.428,0.927,1.088,0.87,0.797,0.623,0.659,0.722,1.035,0.924,0.958,1.065,0.852,0.703,0.949,1.274,0.918,0.824,0.869,1.271,0.775,0.624,1.194,0.85,1.735,1.379,1.236,0.343,0.828,0.922,0.845,1.656,1.073,0.936,1.227,0.898,4.363,1.087,0.791,0.824,0.797,1.097,0.963,1.103,0.975,1.104,0.985 +NM_020415,1.21,0.955,1.016,0.983,0.992,1.002,0.892,0.884,0.902,0.898,1.076,0.954,0.976,1.076,0.923,0.956,1.108,1.087,0.953,0.977,0.988,0.913,1.005,0.912,1.015,1.003,0.994,1.02,0.792,1.002,0.995,1.131,0.963,1.116,1.02,0.835,1.011,1.074,1.134,1.239,0.985,0.918,0.962,1.048,0.848,0.95,1.1,0.874,0.919,1.105,0.991,1.19,0.885,1.011 +NM_020416,1.109,0.947,1.198,0.994,1.069,0.989,0.934,0.932,1.059,0.951,0.902,1.113,0.959,0.881,0.8,0.937,0.978,1.135,1.193,0.99,0.972,1.0,0.962,1.076,0.967,1.16,1.057,0.846,0.913,0.965,0.976,0.94,0.93,1.004,1.059,0.93,0.925,1.092,0.932,1.085,1.002,1.133,0.862,0.835,1.19,0.901,0.891,1.129,0.937,1.153,0.954,1.111,1.2,0.847 +NM_020417,1.121,0.944,0.95,0.976,0.976,1.03,0.981,1.048,1.018,1.042,0.88,1.026,1.045,0.871,1.037,0.868,1.014,0.88,0.891,0.943,1.109,0.936,0.954,1.01,1.055,0.91,0.913,0.965,1.143,0.975,1.157,0.896,0.972,1.173,1.135,1.014,0.996,1.063,0.956,1.079,1.08,0.999,1.3,1.12,0.989,0.902,0.959,0.89,1.103,0.988,0.98,0.954,1.073,1.034 +NM_020418,0.991,0.931,0.987,0.962,1.024,1.004,0.862,0.937,0.947,0.927,1.001,1.119,0.934,0.843,0.952,0.958,0.948,0.979,1.077,0.954,0.956,0.981,0.966,0.866,0.921,1.031,1.382,1.117,1.182,1.047,0.927,1.109,1.12,0.973,0.907,1.029,0.982,1.019,1.115,0.938,1.109,0.979,1.061,1.057,1.091,0.89,0.974,1.124,1.01,0.949,1.009,0.995,1.022,0.945 +NM_020420,0.886,1.003,0.884,0.875,1.09,26.31,0.805,1.14,0.917,0.85,17.63,0.819,0.922,0.842,5.638,25.83,0.986,4.928,0.696,0.698,0.948,1.025,11.56,0.804,7.006,0.859,1.269,0.952,1.227,20.06,0.969,1.445,0.928,23.18,1.051,0.799,11.75,0.803,10.29,0.948,1.155,8.924,0.762,0.885,0.996,11.36,1.131,0.913,0.832,0.812,20.55,1.073,0.991,1.043 +NM_020421,0.944,0.982,0.881,0.992,0.922,1.004,0.921,0.889,1.029,0.962,1.014,0.971,1.002,0.969,0.914,0.879,0.955,1.016,1.011,0.845,1.081,1.022,1.077,0.929,0.999,0.937,0.928,0.996,0.722,0.934,1.031,1.072,1.201,0.776,1.104,0.998,0.943,0.925,1.021,1.075,1.092,0.978,1.437,1.102,0.89,0.972,1.001,0.824,0.886,1.102,1.158,0.951,0.949,0.93 +NM_020422,1.732,0.819,3.414,0.559,1.938,0.759,0.767,1.705,2.079,0.937,0.852,1.306,1.056,1.116,1.194,0.807,2.282,1.525,2.03,0.747,0.881,1.331,0.935,0.912,0.37,1.019,1.751,1.744,0.502,0.958,1.898,1.328,0.928,1.283,1.909,0.449,0.795,1.671,0.927,0.78,2.001,1.023,0.341,0.69,1.447,0.679,1.631,1.158,0.462,1.35,0.904,0.803,1.163,0.606 +NM_020423,0.947,0.986,1.1,0.914,0.918,1.091,0.959,0.955,1.097,1.051,0.964,0.988,0.862,0.767,0.956,1.021,0.985,0.898,1.01,0.995,0.981,0.918,1.109,1.124,0.855,1.107,1.092,1.038,0.786,0.969,0.979,1.207,1.158,1.232,0.847,1.065,0.932,0.957,0.978,1.008,1.09,1.053,0.815,1.097,1.176,0.854,0.942,0.967,1.092,0.955,1.018,0.805,1.006,1.184 +NM_020424,0.966,1.735,1.01,0.736,1.001,0.998,0.675,1.122,1.3,0.887,1.103,1.503,1.09,0.628,0.901,1.304,0.771,1.016,1.176,0.837,0.593,1.001,1.176,1.131,0.757,0.838,0.999,1.22,0.441,1.168,1.117,1.087,4.686,1.291,1.07,0.919,1.037,1.295,1.167,2.388,1.24,1.384,0.572,1.34,1.043,0.718,1.158,1.064,0.91,0.952,0.979,0.91,0.831,0.791 +NM_020426,1.123,0.983,0.982,1.15,0.893,1.049,1.081,1.073,0.938,1.013,0.958,1.109,0.98,1.301,1.201,1.13,0.986,0.966,1.013,0.954,0.952,1.004,0.956,1.0,0.928,1.027,0.853,0.996,1.007,0.979,1.019,1.029,1.053,0.88,0.985,0.916,1.016,0.949,0.998,0.984,1.067,1.029,1.386,1.092,1.097,1.108,1.082,1.062,1.0,1.094,0.868,0.87,0.956,1.127 +NM_020427,15.08,0.143,12.63,4.4,16.82,0.139,0.118,20.88,15.68,10.89,0.133,13.16,16.0,7.012,8.168,3.671,13.4,6.227,24.34,0.157,8.626,18.36,0.123,14.93,0.149,15.71,3.897,13.29,0.142,0.137,20.32,0.137,1.723,0.158,9.372,0.11,0.154,20.59,0.152,0.149,17.9,0.136,0.136,0.128,14.86,0.136,6.41,23.72,0.991,16.97,0.967,0.587,13.21,0.478 +NM_020428,1.078,1.021,0.9,1.276,0.748,1.774,0.933,0.713,0.947,0.736,1.159,0.616,0.835,0.715,0.758,1.154,0.812,1.457,1.194,1.152,0.63,1.329,1.562,0.962,1.673,1.141,1.06,0.639,1.384,1.649,0.947,1.369,0.83,2.693,0.377,0.423,1.088,1.06,2.185,0.642,0.703,1.421,0.446,0.666,0.94,0.603,0.582,1.418,0.455,1.08,1.16,0.904,0.654,0.681 +NM_020429,1.103,1.156,1.088,0.934,1.013,1.052,1.002,0.98,1.083,0.978,1.023,1.019,0.985,1.066,1.025,1.069,0.99,1.09,0.86,1.106,1.036,0.969,0.987,1.06,0.918,1.013,1.025,1.032,1.033,1.055,0.842,1.197,0.854,0.972,0.97,0.998,0.944,1.006,1.088,1.118,1.218,0.908,1.036,1.045,0.925,1.041,0.942,0.99,0.908,0.996,1.054,1.048,1.012,1.054 +NM_020432,1.051,0.785,1.334,0.813,1.425,0.849,0.886,1.53,1.906,1.307,1.011,1.472,1.312,1.107,1.424,1.052,0.895,1.115,0.883,1.025,0.594,1.628,0.969,1.108,0.687,1.057,1.373,1.292,0.669,0.814,1.353,1.732,1.862,0.861,2.938,0.643,0.765,1.836,0.903,1.008,0.997,0.958,0.68,0.79,1.216,0.703,0.931,1.597,0.776,1.062,0.851,0.879,0.94,1.439 +NM_020433,0.896,1.029,0.922,0.935,1.135,0.978,0.979,1.019,0.791,1.009,1.16,0.98,0.893,0.944,0.961,0.964,1.088,0.888,0.843,0.894,1.068,0.851,1.405,0.739,0.976,0.995,0.989,1.15,0.912,1.124,0.955,1.509,1.072,1.275,0.926,0.935,0.874,1.081,0.994,0.957,1.522,1.893,1.042,1.079,0.871,1.029,0.963,0.987,1.018,1.077,1.149,1.048,1.058,0.966 +NM_020435,0.733,1.379,0.821,0.807,0.843,1.122,0.998,0.952,0.755,0.989,1.114,0.915,0.766,0.954,1.063,1.249,0.926,0.792,0.909,1.045,0.829,0.75,0.999,0.868,0.902,0.74,0.934,0.912,0.855,1.221,0.838,1.633,0.966,1.162,0.756,0.895,1.027,0.93,1.326,1.149,0.944,1.662,1.218,1.602,1.068,1.162,1.157,0.971,0.852,0.826,1.17,1.001,0.924,1.008 +NM_020436,1.077,0.876,1.072,0.906,0.998,1.04,1.078,0.951,0.972,0.954,1.099,0.922,1.026,0.908,1.149,1.013,0.913,0.886,1.006,1.031,0.947,0.825,0.988,0.953,0.948,1.026,1.025,1.045,1.031,0.907,0.946,1.55,1.594,0.938,0.973,1.025,0.85,0.981,1.074,6.704,1.026,0.979,0.857,0.954,1.118,1.027,1.048,0.936,1.109,0.938,0.955,1.004,1.005,1.1 +NM_020437,0.324,1.975,0.448,1.511,0.454,3.319,2.605,0.357,0.438,0.582,2.171,0.325,0.365,0.406,0.91,1.509,0.415,2.054,0.451,1.719,0.494,0.418,2.072,0.556,1.52,0.499,0.514,0.575,1.281,2.513,0.339,0.876,0.477,2.915,0.274,0.859,1.73,0.303,2.777,0.645,0.707,2.251,1.49,1.032,0.678,2.06,0.633,0.346,1.524,0.66,1.969,0.736,0.698,0.947 +NM_020438,0.828,1.064,0.852,0.925,1.139,0.87,1.164,0.878,0.836,0.981,1.007,1.015,0.875,1.013,0.814,1.171,1.121,1.033,1.187,0.86,1.31,1.035,1.226,1.128,1.017,1.143,1.08,1.009,1.105,0.949,1.016,0.879,1.196,0.975,0.764,1.083,0.936,0.95,1.136,0.93,0.998,0.912,1.068,1.013,0.971,1.163,0.96,0.889,1.017,0.99,1.117,0.761,1.137,1.072 +NM_020439,1.018,1.015,0.916,1.041,0.913,1.019,0.863,1.014,0.981,1.06,1.025,1.011,0.936,1.084,1.012,1.016,1.081,0.933,1.001,1.068,0.979,0.956,1.091,1.02,0.834,1.043,0.907,0.997,1.192,1.04,0.971,1.001,0.905,0.944,1.195,1.03,0.997,0.882,0.964,1.152,0.866,1.136,1.403,1.011,1.077,0.96,0.88,0.886,0.999,0.992,0.939,1.185,0.843,1.043 +NM_020440,0.87,0.858,1.202,0.806,0.786,0.856,0.744,0.549,0.885,0.943,1.16,0.629,0.553,0.693,0.836,1.483,0.833,0.878,0.999,1.238,0.74,0.524,1.403,0.766,0.821,0.815,1.14,0.754,0.444,1.344,0.956,1.393,1.411,1.106,0.386,0.704,0.941,0.829,1.323,0.946,0.953,1.332,0.8,0.873,1.081,1.099,0.881,0.539,1.163,1.05,1.262,1.072,1.031,1.05 +NM_020441,0.853,1.22,0.953,0.916,1.008,1.338,0.95,0.885,0.962,0.954,1.0,0.923,0.903,0.755,1.231,1.134,1.264,1.296,0.823,1.12,0.757,0.934,1.132,1.006,0.87,0.964,1.168,0.883,1.008,1.482,0.909,1.309,1.15,1.017,0.942,0.946,1.277,1.181,1.248,0.918,0.909,1.003,1.132,0.943,0.989,1.13,1.085,0.912,1.224,0.916,1.169,0.884,0.736,1.126 +NM_020442,0.978,0.882,1.433,0.878,1.613,0.916,0.672,0.874,1.481,1.877,0.839,1.809,0.653,0.837,0.987,1.061,1.05,1.934,1.517,0.953,0.757,1.004,1.107,1.354,0.579,1.147,0.822,1.7,0.501,1.068,1.232,0.68,0.878,1.023,1.616,0.725,0.864,1.68,1.3,0.749,1.512,0.838,0.716,0.843,1.335,0.848,1.16,1.53,0.772,0.804,1.244,0.582,0.788,1.029 +NM_020443,0.636,0.957,1.806,0.722,0.885,1.193,0.805,0.603,0.631,0.877,1.071,0.657,0.811,0.636,0.803,1.161,1.001,1.258,0.943,1.008,0.648,0.881,1.056,0.843,0.961,0.597,1.241,0.594,0.827,1.915,0.723,1.944,1.22,1.399,0.567,0.685,1.006,0.988,1.509,1.846,1.257,1.432,0.652,0.764,0.956,0.873,0.96,0.72,0.742,1.377,1.107,1.158,1.002,0.774 +NM_020444,0.853,0.925,1.131,0.775,0.877,1.238,0.649,0.908,1.843,0.93,1.182,0.992,0.824,1.072,1.184,1.284,0.728,0.763,1.337,1.033,0.584,0.717,1.161,1.223,1.115,0.823,0.787,1.407,0.335,1.467,1.484,1.802,2.369,1.899,0.761,0.583,1.114,0.847,0.943,0.679,1.008,1.218,0.577,0.704,1.163,1.03,0.792,0.696,0.644,0.784,1.085,0.835,1.163,1.998 +NM_020445,0.87,0.94,1.052,1.047,0.878,1.003,0.831,0.98,1.086,1.048,1.072,0.966,0.903,1.035,1.115,0.906,0.829,0.906,0.862,1.206,0.92,0.858,1.221,0.967,0.951,0.956,0.808,0.941,0.831,0.964,0.982,1.132,1.161,1.21,0.841,1.142,0.97,0.933,1.109,0.95,0.96,1.081,1.099,1.112,0.946,1.054,0.886,0.908,0.927,1.023,1.002,0.932,0.931,1.13 +NM_020447,0.916,0.878,2.03,0.694,1.745,1.626,0.54,1.404,2.156,1.229,0.835,1.238,1.125,1.482,1.31,0.962,1.721,0.904,1.892,0.896,0.724,1.504,0.951,2.092,0.616,1.049,1.403,1.664,0.582,1.124,1.425,1.122,1.01,1.286,1.147,0.561,0.859,1.539,0.876,0.569,2.145,0.862,0.597,0.499,1.241,0.758,1.18,1.626,0.473,1.08,0.879,0.493,0.957,1.18 +NM_020451,0.794,1.119,0.9,0.901,0.609,1.082,0.931,0.741,0.705,0.811,1.117,0.858,0.856,0.589,0.923,1.725,0.725,0.983,0.88,0.963,0.828,0.764,1.451,0.744,1.007,1.044,0.941,0.415,0.788,1.296,0.824,1.898,1.636,1.503,0.63,1.027,0.973,0.739,1.903,1.471,0.704,1.285,1.245,1.315,0.985,0.737,0.661,0.922,0.622,1.092,1.058,0.964,1.138,1.885 +NM_020452,1.002,1.066,0.942,0.983,1.026,1.006,0.99,0.945,0.943,0.938,1.034,1.076,1.026,0.986,1.166,1.014,0.981,1.134,0.987,1.0,0.941,0.996,0.892,1.03,1.075,1.044,0.858,0.939,1.109,0.97,1.007,1.047,0.926,1.029,0.993,1.211,0.981,1.086,0.954,0.978,0.967,1.049,0.798,0.913,0.875,1.056,0.944,0.995,0.927,1.159,0.947,0.949,1.187,1.014 +NM_020453,1.079,0.823,2.053,0.913,1.811,0.748,0.648,0.959,2.042,1.783,0.997,1.743,0.872,1.284,1.346,1.282,1.356,1.4,2.282,0.941,0.864,1.269,0.778,2.297,0.566,0.938,2.064,1.637,0.44,0.827,1.565,1.277,1.177,0.895,0.403,0.597,0.718,1.12,0.901,0.575,1.69,0.907,0.686,0.734,1.628,0.816,1.409,0.926,0.69,1.152,1.03,1.003,1.811,1.015 +NM_020455,0.943,0.868,0.973,0.928,1.106,1.241,0.957,1.135,1.155,0.839,1.435,1.156,1.071,0.852,1.527,2.569,1.014,1.14,0.903,1.583,0.772,1.189,1.225,0.872,0.759,0.891,0.978,1.134,0.819,1.05,1.304,0.873,0.842,0.908,2.103,0.866,1.639,1.233,1.609,1.094,1.166,1.248,1.283,1.053,0.943,1.797,1.289,1.066,1.797,0.932,1.607,0.923,0.788,0.995 +NM_020457,0.8,0.982,1.375,0.703,0.867,1.144,0.522,0.669,1.023,0.849,1.124,0.99,0.773,1.075,0.895,1.091,0.92,0.815,1.45,0.668,0.602,0.874,1.117,1.212,0.549,0.989,1.398,0.936,0.326,0.808,1.053,1.503,1.937,1.329,0.302,0.529,0.983,1.086,1.156,0.647,1.249,1.034,0.564,1.121,0.99,0.724,0.796,0.869,0.646,0.93,1.046,0.72,1.05,2.245 +NM_020461,1.029,0.865,1.163,1.079,0.88,0.983,0.901,1.022,1.015,0.877,0.846,0.858,0.929,1.113,1.014,1.051,0.984,0.982,1.103,1.163,0.952,1.111,0.981,1.041,0.994,0.995,1.153,0.82,1.067,1.062,0.822,1.068,0.879,1.032,0.768,0.818,0.886,1.151,1.081,1.057,0.918,0.98,0.982,0.949,0.953,0.928,0.825,0.818,0.891,0.896,0.967,0.91,1.141,1.073 +NM_020465,1.008,1.072,0.98,0.822,1.063,0.959,1.042,1.012,1.066,0.989,1.045,0.901,0.973,0.844,0.918,1.188,1.059,0.96,1.115,1.009,0.876,0.963,1.053,0.984,0.915,1.026,0.917,0.98,0.916,1.024,1.035,0.924,1.238,0.946,1.144,0.847,1.033,1.088,1.107,0.955,0.948,1.057,1.023,0.968,0.992,0.902,1.119,1.008,1.076,0.96,1.005,1.041,1.084,1.117 +NM_020467,1.268,0.507,1.261,0.852,1.247,1.047,0.347,1.3,1.777,1.109,0.997,1.319,1.299,1.092,1.174,1.102,1.065,0.905,2.341,0.749,0.656,1.525,1.232,1.913,0.352,1.526,1.021,1.299,0.41,0.671,1.65,0.47,1.034,1.231,0.997,0.602,0.677,1.276,1.076,0.425,1.434,0.813,0.426,1.373,1.319,0.731,0.852,1.783,0.714,0.976,0.885,0.446,1.236,1.172 +NM_020468,0.654,1.392,0.807,0.691,0.801,1.478,0.71,0.48,0.896,0.654,1.459,0.564,0.51,0.66,0.957,1.935,0.597,0.93,1.034,1.283,0.537,0.509,1.177,0.749,0.896,0.603,0.961,0.721,0.669,1.577,0.727,0.913,1.251,2.054,0.42,1.1,1.651,0.751,1.372,0.864,0.817,1.259,0.903,0.945,0.754,1.392,1.096,0.592,1.146,0.572,1.103,0.709,0.655,1.557 +NM_020469,0.89,0.963,0.879,0.906,0.978,0.86,0.921,0.937,1.1,0.878,1.086,0.925,0.865,0.78,0.808,0.937,0.957,1.079,0.905,1.08,1.289,0.873,1.226,0.99,0.944,0.966,0.996,0.945,1.698,1.114,1.062,1.011,1.03,1.031,1.127,0.945,0.797,0.824,1.13,1.003,1.123,1.245,1.223,1.002,0.685,1.063,1.004,0.933,0.967,0.839,1.096,0.917,0.75,0.968 +NM_020470,0.48,1.288,0.744,0.793,0.592,1.688,0.739,0.39,0.739,0.699,1.148,0.623,0.473,0.366,0.84,2.493,0.622,1.057,1.078,1.133,0.561,0.68,1.929,0.793,0.688,0.681,0.858,0.561,0.625,1.474,0.609,1.691,3.577,1.787,0.198,1.849,1.374,0.647,2.433,0.651,0.781,1.589,0.609,1.169,0.888,1.176,1.048,0.709,1.115,0.665,1.395,0.82,0.806,1.253 +NM_020473,0.681,0.745,1.148,0.75,1.157,0.99,0.61,0.932,1.279,1.201,0.825,1.097,0.817,0.886,0.89,1.365,0.913,1.073,1.443,0.842,0.706,1.05,0.959,1.451,0.612,0.874,1.431,1.104,0.503,0.834,1.039,1.054,1.975,0.896,0.535,0.823,1.024,0.895,0.816,1.066,1.247,0.808,0.902,0.571,1.209,1.036,1.109,0.885,1.106,1.015,0.785,1.001,1.398,1.058 +NM_020474,0.938,0.6,1.6,0.478,1.7,1.433,0.576,1.934,1.752,1.021,0.947,1.094,1.414,0.764,1.221,3.299,1.208,1.165,1.389,1.15,0.451,1.339,0.808,1.467,0.472,0.582,2.021,1.355,0.456,1.114,1.588,0.757,1.366,0.92,1.503,0.412,1.245,1.639,1.118,0.553,1.577,0.865,0.603,0.561,1.374,1.116,1.382,1.298,1.142,1.393,1.324,0.847,0.715,1.881 +NM_020481,0.907,0.978,0.882,0.977,0.929,0.993,1.092,1.007,1.025,0.951,0.975,1.031,0.914,1.314,0.998,1.063,1.081,0.942,1.111,0.99,0.927,0.865,1.285,0.938,0.95,0.975,1.135,0.919,0.759,1.014,1.027,1.105,1.102,1.113,0.973,1.01,0.949,1.017,1.081,0.977,1.038,1.028,1.476,0.892,1.024,0.851,1.1,1.043,0.901,0.898,0.981,0.775,0.903,1.052 +NM_020482,0.971,0.959,0.965,0.923,1.022,1.01,0.95,0.85,1.037,0.987,0.934,1.075,1.042,0.904,0.77,1.015,0.878,0.949,0.997,0.87,0.946,0.981,0.968,0.921,0.95,1.013,1.068,1.06,1.038,1.138,0.984,1.11,1.15,0.982,0.975,0.962,1.049,1.052,1.05,1.179,1.035,1.054,1.115,1.261,0.996,1.041,0.915,0.9,0.862,0.963,0.944,1.144,1.013,0.862 +NM_020524,0.672,1.782,0.922,0.802,0.745,1.181,0.991,0.648,0.722,0.676,0.843,0.535,0.667,0.762,0.698,1.164,0.772,1.04,0.725,1.063,0.749,0.764,0.917,0.543,1.691,0.735,1.022,0.66,1.115,1.678,0.574,3.241,1.356,1.654,0.548,0.844,1.105,0.913,1.798,1.16,0.732,1.855,0.984,1.322,0.701,0.918,0.897,0.707,0.759,0.705,1.039,0.687,0.723,1.614 +NM_020525,0.954,1.095,1.176,0.877,1.116,1.012,1.012,0.996,1.154,1.009,0.903,0.962,1.0,1.171,0.846,0.998,1.165,1.068,0.995,1.119,1.018,0.966,0.953,1.085,1.074,1.006,1.206,0.937,1.886,1.065,1.013,0.861,0.91,1.024,0.952,0.993,0.928,1.046,0.979,0.982,0.924,1.034,1.039,0.956,1.098,1.009,1.006,0.919,1.198,1.028,1.027,1.106,1.11,0.889 +NM_020526,1.026,1.101,0.994,0.923,0.842,0.998,0.986,1.027,1.032,1.003,0.96,1.028,0.993,0.982,0.959,1.004,0.88,0.888,1.156,0.866,0.887,1.0,0.945,1.013,1.088,0.909,1.062,1.0,1.269,0.907,1.074,0.926,0.959,0.967,0.882,1.163,1.016,1.122,1.004,0.944,0.998,0.892,1.014,1.014,1.02,1.115,1.085,0.991,1.006,1.006,0.952,1.021,0.929,0.894 +NM_020528,0.938,1.583,1.04,1.034,1.042,1.058,1.01,0.993,0.954,1.018,0.99,0.913,0.998,0.922,0.876,1.114,0.965,0.997,0.978,0.991,0.977,0.891,1.279,0.942,1.05,0.933,0.879,0.821,0.927,1.012,1.015,1.235,1.138,1.145,1.023,1.201,1.088,1.002,1.058,1.552,0.876,1.071,0.892,1.052,0.805,1.113,0.994,0.997,0.914,0.957,0.998,1.025,0.966,1.173 +NM_020529,0.809,0.981,1.778,0.592,1.958,0.966,0.515,3.119,1.996,1.35,0.423,1.313,0.983,0.524,0.946,0.77,1.184,1.02,1.008,0.885,0.322,2.286,0.845,1.231,0.318,0.68,1.871,1.335,0.301,0.8,2.116,1.168,1.233,1.026,3.673,0.383,0.562,2.823,1.703,3.364,1.363,1.118,0.528,0.992,1.572,0.764,2.084,1.474,0.927,1.186,0.736,0.991,0.869,1.374 +NM_020530,0.886,1.094,0.98,1.676,0.946,0.95,0.75,0.99,0.894,0.963,0.889,1.352,0.885,0.831,1.095,0.925,0.947,0.881,0.881,0.9,0.825,1.055,0.776,0.921,0.838,0.976,1.168,1.131,0.735,1.021,0.963,1.539,1.171,0.923,0.942,0.875,0.906,1.039,5.208,59.35,0.939,3.65,1.032,1.81,2.695,1.06,1.541,0.974,0.959,0.808,0.959,7.384,0.891,1.768 +NM_020531,0.503,1.257,0.765,0.807,0.685,1.405,0.668,0.43,0.744,0.709,1.547,0.551,0.55,0.56,0.903,1.885,0.656,0.668,0.898,0.949,0.667,0.515,1.82,0.848,0.686,0.7,0.961,0.564,0.488,2.258,0.7,1.763,3.718,1.687,0.29,1.433,1.235,0.75,1.427,1.805,0.706,1.341,0.651,1.893,0.59,1.116,1.071,0.469,0.959,0.574,1.15,1.101,0.933,3.117 +NM_020532,0.979,0.956,1.01,1.083,0.955,1.007,0.929,0.98,0.966,1.088,0.994,0.913,1.081,0.986,1.038,1.072,0.9,0.888,0.942,1.008,0.975,1.03,0.967,1.002,1.104,0.845,1.083,0.924,1.091,1.093,0.898,1.061,0.973,0.978,1.038,1.237,0.888,1.065,1.0,1.071,0.984,1.02,1.017,0.97,1.042,0.923,0.938,0.831,0.999,1.073,0.896,1.003,1.153,0.905 +NM_020533,0.845,0.827,0.902,0.767,0.956,1.028,0.627,0.934,0.999,0.821,1.039,0.784,0.883,0.802,1.011,1.256,1.172,1.025,1.157,0.696,0.797,1.225,1.282,0.838,0.668,1.202,1.118,0.849,0.8,0.959,0.902,1.311,0.841,1.012,1.601,0.932,0.947,1.098,1.419,1.365,0.952,1.037,0.645,1.381,0.842,0.985,0.741,1.576,0.758,0.808,0.85,0.84,0.871,0.872 +NM_020535,1.144,1.233,0.955,0.94,0.949,0.854,0.999,0.96,0.872,0.911,0.988,0.846,1.064,0.958,1.039,1.047,0.995,0.964,0.975,0.896,0.961,0.806,0.942,0.897,1.022,0.91,0.95,0.928,1.079,1.013,0.952,0.905,1.177,1.13,0.955,1.028,0.909,1.123,1.046,1.01,0.97,1.472,1.129,1.043,1.106,0.874,1.078,0.87,1.014,0.912,1.236,0.974,1.044,2.18 +NM_020536,0.621,0.848,0.748,0.949,0.617,1.328,1.026,0.528,0.701,0.653,1.298,0.574,0.526,0.628,0.9,1.113,0.634,1.157,0.716,0.982,0.658,0.573,1.164,0.723,1.054,0.579,0.671,0.519,1.09,2.049,0.585,0.913,1.606,2.024,0.577,1.03,1.332,0.718,1.562,0.973,0.705,1.242,0.765,1.388,0.644,1.165,0.721,0.583,1.096,0.625,1.008,0.898,0.689,1.359 +NM_020547,1.006,0.879,0.849,0.795,0.926,0.948,1.06,0.965,1.085,1.046,0.987,1.134,1.03,0.992,0.976,0.981,0.996,0.944,0.973,0.867,1.258,0.896,0.891,0.903,1.008,0.915,0.95,0.994,0.845,1.019,1.073,1.073,1.07,1.115,1.148,1.026,1.034,0.948,0.906,1.08,0.989,1.004,0.957,0.955,1.042,1.106,0.981,0.938,1.064,0.95,1.088,0.949,1.174,0.987 +NM_020548,0.724,0.705,1.974,0.613,1.527,1.164,0.619,1.401,1.739,1.483,0.647,1.876,1.302,0.64,0.985,1.729,1.389,1.469,1.624,0.885,0.584,1.481,1.286,1.652,0.391,0.993,1.623,1.503,0.339,1.012,1.429,0.981,1.15,0.974,0.175,0.672,1.054,1.72,1.003,0.762,1.43,0.937,0.589,0.606,1.66,0.772,1.079,1.33,0.904,1.397,0.991,0.633,0.902,1.147 +NM_020549,1.046,1.12,1.048,0.868,0.949,1.007,0.962,1.052,0.913,0.943,0.927,1.065,0.859,0.931,1.038,1.029,1.163,0.972,1.066,0.982,0.992,0.941,0.984,0.974,1.022,1.123,1.076,1.092,1.394,1.036,1.015,1.037,1.031,1.071,1.182,0.869,1.019,0.951,1.035,1.104,1.044,1.045,1.087,0.877,0.931,0.972,1.076,1.045,0.955,0.917,1.043,0.97,0.867,0.947 +NM_020553,1.004,0.997,0.942,1.234,1.111,0.973,0.833,1.034,1.108,1.093,1.017,1.139,1.036,0.952,1.078,1.065,0.949,1.017,1.121,1.004,1.072,1.026,0.991,0.988,0.987,0.928,0.967,0.905,0.977,0.97,1.012,0.843,0.954,0.947,1.062,0.984,1.02,0.999,0.988,0.952,0.952,0.95,1.217,1.132,0.891,1.109,1.17,1.038,1.13,0.99,1.035,1.022,1.066,1.061 +NM_020629,1.039,1.047,0.9,0.97,0.918,0.991,1.024,0.902,1.028,0.999,1.006,0.869,1.038,0.994,0.907,1.066,1.035,0.962,1.071,1.037,1.028,0.969,0.912,0.92,1.026,0.979,1.006,1.028,1.072,1.013,1.046,1.066,1.141,1.044,0.966,1.143,0.942,0.987,0.934,1.005,1.046,0.965,0.91,1.001,1.007,0.889,1.011,0.987,0.956,0.993,1.044,0.846,1.0,0.894 +NM_020631,2.0869999999999997,1.9,1.9929999999999999,2.1270000000000002,1.875,2.076,1.976,2.191,1.958,2.106,1.951,2.182,2.0869999999999997,2.106,1.9809999999999999,1.9819999999999998,1.9859999999999998,1.892,2.041,1.788,1.9889999999999999,2.048,2.0380000000000003,1.9,2.032,2.133,2.07,1.997,1.789,1.952,2.1109999999999998,1.9789999999999999,1.899,2.026,2.171,1.847,2.199,2.045,1.8820000000000001,2.006,1.912,2.0679999999999996,1.845,1.976,1.996,2.077,2.0949999999999998,2.128,1.94,1.916,2.135,1.742,2.107,1.863 +NM_020632,0.963,1.056,1.038,0.794,1.068,0.906,0.911,0.946,0.968,0.916,1.228,1.064,0.861,1.012,0.896,1.27,0.993,1.008,1.204,1.126,1.078,1.203,1.027,0.946,0.95,0.781,1.073,1.03,0.844,0.898,1.06,0.92,1.038,1.184,1.035,1.082,0.846,1.044,0.939,0.946,0.975,0.861,1.04,1.093,1.055,0.895,0.943,1.082,0.995,0.853,1.014,0.894,1.147,1.15 +NM_020633,1.084,1.008,0.972,0.846,1.0,1.018,0.93,1.002,0.952,1.057,0.867,0.827,0.912,1.06,0.922,0.987,1.017,1.137,1.14,0.967,1.148,1.053,0.953,0.999,0.946,0.978,1.072,0.851,1.01,0.9,1.109,1.035,0.974,1.01,0.943,1.06,1.1,1.012,1.072,0.942,1.057,1.077,0.903,1.157,0.882,0.942,0.794,1.021,0.953,0.998,1.129,0.833,1.125,1.0 +NM_020634,1.088,1.096,1.002,1.175,0.899,0.951,1.036,1.045,1.032,0.982,0.925,0.981,0.902,1.026,1.147,0.989,0.868,1.057,1.104,0.983,0.87,0.981,0.855,0.946,1.036,1.07,1.063,1.02,0.806,0.876,1.031,0.908,0.987,0.968,1.083,1.166,1.071,1.002,1.061,0.999,0.974,0.987,0.814,0.815,1.15,1.081,1.119,0.974,0.994,1.152,0.985,1.021,1.033,1.076 +NM_020637,1.011,1.046,0.906,1.147,1.286,0.926,0.986,1.017,0.926,0.933,1.087,0.934,0.891,0.964,1.109,1.134,1.001,1.369,0.97,0.978,1.006,0.969,0.946,0.921,0.857,1.135,1.028,1.041,0.957,0.901,0.931,1.083,0.986,0.901,1.044,0.945,1.206,0.873,0.936,0.899,1.03,0.923,0.733,0.956,1.066,1.053,1.058,0.992,1.066,1.049,1.046,0.832,1.245,1.083 +NM_020638,0.994,1.001,0.925,0.953,1.045,1.021,0.901,0.9,0.965,0.893,0.842,1.087,1.127,0.775,1.041,0.923,1.002,0.993,0.813,0.987,0.882,0.91,0.887,1.077,1.105,1.036,1.163,1.147,1.218,0.973,1.005,1.049,0.908,1.18,0.939,1.035,0.965,0.974,1.061,0.971,0.993,0.914,1.004,0.897,1.048,0.945,1.058,1.157,1.192,0.93,0.882,1.04,1.14,1.114 +NM_020639,1.6,0.584,3.017,1.017,1.435,0.86,0.73,0.799,2.346,1.581,0.543,0.899,1.007,1.279,1.616,1.225,2.1,1.491,3.331,0.795,0.959,1.864,0.591,1.661,0.672,1.981,2.716,1.294,0.82,0.902,1.965,0.636,1.323,1.327,1.262,0.439,0.721,1.624,0.833,0.503,1.885,0.748,0.49,0.626,1.841,0.499,1.128,1.636,0.27,2.251,0.782,0.76,2.072,1.143 +NM_020640,0.925,0.812,1.183,0.882,1.116,0.91,0.606,1.391,1.597,1.03,1.09,1.352,0.994,1.196,1.169,1.18,1.028,0.999,1.184,0.947,0.837,0.876,0.843,1.211,0.623,1.202,1.183,1.589,0.586,1.045,1.544,0.96,1.649,0.931,1.998,0.803,0.951,1.071,1.044,0.711,1.072,0.788,0.662,1.125,1.014,0.947,1.101,1.255,0.818,1.023,0.835,0.887,1.065,1.444 +NM_020643,1.106,1.062,1.073,0.989,0.955,0.985,0.956,0.921,1.029,1.067,0.929,1.084,1.047,1.075,0.73,1.084,1.011,1.01,0.884,1.133,0.965,0.936,0.782,1.049,1.004,1.084,1.02,1.107,0.934,1.064,0.901,1.127,0.863,0.916,1.136,0.965,0.9,0.963,0.968,0.959,1.086,0.905,0.94,1.193,1.076,0.978,0.94,1.242,1.064,0.966,0.9,0.841,0.963,0.936 +NM_020644,0.733,1.055,1.145,0.682,1.14,1.171,0.669,0.86,1.419,1.194,0.795,1.158,0.709,0.728,0.884,1.375,0.768,1.128,1.628,0.997,0.531,0.918,1.003,1.265,0.707,1.019,1.117,1.15,0.571,1.817,0.944,0.754,0.86,1.776,0.163,1.281,1.21,1.346,0.779,0.553,1.15,1.102,0.69,0.537,1.085,0.943,0.929,0.868,0.799,0.705,0.838,0.839,1.061,1.118 +NM_020645,0.933,1.056,0.943,1.017,1.038,1.074,1.209,1.005,0.925,0.967,1.026,0.915,0.987,0.88,0.969,0.948,0.917,0.946,0.951,0.976,0.947,0.972,1.05,1.006,0.891,0.962,0.862,0.924,1.084,1.012,0.89,0.917,1.537,0.876,1.02,1.225,0.928,0.877,1.037,1.319,1.136,0.979,0.853,1.069,0.924,1.02,0.796,0.986,1.085,0.94,0.947,1.143,1.134,0.977 +NM_020646,1.077,0.965,0.99,0.988,0.928,1.038,1.015,0.883,1.063,0.968,1.017,0.953,1.001,1.421,0.992,1.055,1.075,0.966,0.725,0.975,0.986,0.908,0.981,1.033,1.03,1.128,0.954,1.053,1.325,0.964,1.077,1.049,1.076,0.984,1.164,0.943,0.996,0.958,0.963,0.939,1.01,1.042,0.989,1.069,0.866,1.045,0.97,0.995,0.929,1.09,1.087,0.937,1.116,1.126 +NM_020647,0.929,0.965,0.983,0.9,0.939,0.997,0.898,1.183,1.048,1.171,0.941,1.131,0.992,1.35,1.007,0.939,0.931,1.103,1.023,0.966,1.059,1.021,0.961,0.984,1.061,1.054,1.166,1.19,1.074,1.052,1.056,1.038,1.12,1.005,0.846,1.033,1.004,1.044,0.957,1.034,1.005,0.954,0.979,0.959,0.983,1.035,0.912,0.984,1.023,0.962,1.102,1.003,0.973,0.963 +NM_020648,0.873,1.302,1.053,1.083,0.979,1.007,0.806,0.862,0.97,0.989,1.032,0.906,0.904,0.947,1.043,1.036,0.891,1.042,1.152,1.056,0.848,0.853,1.219,1.019,0.853,0.904,0.928,0.92,0.715,1.194,1.088,1.633,1.202,1.205,0.856,1.081,0.887,0.988,1.184,1.085,0.986,0.988,0.808,0.993,0.873,1.173,1.069,0.991,0.877,0.951,1.057,1.141,1.003,1.421 +NM_020649,1.022,0.995,0.979,1.01,0.96,0.953,0.87,0.935,1.156,0.879,1.032,1.068,1.045,1.11,0.979,0.939,0.989,0.915,1.051,1.066,0.998,0.885,0.99,0.956,0.974,1.121,0.923,0.89,1.132,0.992,0.978,1.245,1.186,1.025,0.927,1.14,0.923,0.991,1.221,1.143,1.0,0.877,0.922,1.482,0.925,0.827,0.958,0.962,1.071,1.135,1.075,0.946,0.83,0.933 +NM_020650,0.925,1.233,0.915,0.879,0.865,1.052,1.003,0.915,0.927,0.975,0.861,1.065,1.013,0.733,0.969,1.015,0.99,0.949,0.941,1.207,0.965,0.854,2.416,1.015,0.832,0.988,0.916,0.903,0.834,1.21,1.009,4.724,2.623,1.04,0.873,0.895,0.952,1.014,1.193,2.173,0.88,1.06,1.119,0.966,0.841,0.912,0.964,1.001,0.931,1.024,1.086,1.484,0.91,1.069 +NM_020651,1.302,0.723,1.478,0.756,2.114,0.798,0.499,1.581,2.944,1.039,0.769,1.165,1.088,1.283,1.754,1.178,1.109,0.909,1.899,0.892,0.859,1.013,0.916,1.316,0.458,1.165,1.067,1.772,0.38,0.801,2.883,0.841,2.534,0.752,2.702,0.774,0.696,1.545,0.796,0.881,1.863,0.812,0.954,0.686,1.314,0.853,1.14,1.277,1.068,0.963,0.836,0.743,1.285,1.371 +NM_020652,1.059,0.895,1.109,0.959,1.114,0.94,0.986,0.979,1.08,0.821,1.038,1.137,1.06,1.007,0.828,1.069,0.926,1.031,0.789,1.031,0.932,1.034,0.951,0.994,1.0,1.064,1.053,0.903,0.974,1.005,1.074,1.001,1.107,0.977,0.969,0.928,0.921,1.066,1.016,0.939,1.029,1.186,0.941,0.897,1.117,1.0,0.91,0.905,0.95,0.771,0.952,1.082,1.101,1.166 +NM_020654,1.022,0.911,0.982,1.403,0.946,0.963,1.168,0.978,0.883,1.015,1.014,0.902,0.858,1.211,1.012,1.07,0.941,1.21,0.941,1.049,1.1,1.086,1.021,0.954,0.997,0.921,1.004,0.944,0.982,0.867,1.033,0.976,1.116,0.952,1.052,1.111,1.045,1.001,1.061,1.073,1.075,0.942,0.999,0.924,1.028,0.92,0.871,0.997,0.984,0.909,0.968,1.265,1.044,0.832 +NM_020655,0.91,1.002,0.89,1.005,0.898,0.954,0.981,1.033,1.0,1.111,1.042,0.994,1.0,0.947,0.943,0.865,1.177,0.933,0.871,1.119,1.168,1.034,0.98,1.037,1.068,0.975,0.926,1.162,1.037,1.04,0.996,1.256,0.983,1.054,0.967,1.133,0.936,1.075,0.93,1.187,1.05,0.904,1.002,0.85,1.009,0.953,1.033,0.946,1.105,1.107,0.932,1.043,0.865,0.968 +NM_020657,0.94,1.043,1.007,0.958,1.034,1.023,0.874,0.923,1.172,1.028,0.846,0.863,1.139,1.066,1.259,0.949,0.841,0.868,0.957,0.969,0.952,0.87,0.958,0.888,0.928,1.025,1.092,1.009,1.005,1.253,1.011,1.028,1.339,0.963,0.762,1.019,0.86,0.955,1.109,0.975,1.17,0.988,0.975,1.033,0.967,0.908,1.057,0.86,0.644,0.989,0.98,0.925,1.014,0.873 +NM_020659,1.116,1.0,1.067,0.981,1.25,0.957,1.035,1.164,1.202,0.907,1.035,1.046,1.265,1.265,1.176,0.944,1.317,1.088,1.105,1.052,0.926,1.118,1.095,1.0,0.869,1.296,1.204,1.058,1.353,0.926,1.148,1.076,1.086,0.852,1.915,0.911,0.982,0.931,0.824,0.882,0.988,0.914,1.028,0.97,0.808,0.903,1.081,1.53,0.912,1.011,1.035,1.012,0.995,0.919 +NM_020660,0.982,1.05,0.951,1.228,0.914,1.017,1.015,1.104,0.914,0.981,1.14,1.018,1.012,1.074,1.0,1.029,1.04,0.913,0.968,0.999,1.125,0.929,0.901,0.969,0.875,1.034,0.99,0.937,0.81,1.001,1.092,1.094,1.004,1.064,1.038,1.048,1.065,1.183,0.843,0.991,1.049,0.945,1.148,0.935,1.006,0.911,1.003,0.985,0.919,1.005,0.973,0.996,0.97,1.002 +NM_020661,1.04,1.202,0.943,1.105,0.996,1.016,1.214,1.143,1.064,1.064,0.866,1.092,1.085,1.036,0.786,0.901,1.001,1.101,0.895,1.057,1.14,0.989,0.993,0.926,0.978,1.104,0.822,0.893,0.716,1.004,0.993,0.985,1.025,0.892,1.079,1.002,1.06,0.841,1.057,1.117,1.142,1.002,0.808,1.2,0.906,0.995,1.164,1.028,0.897,1.18,1.043,0.919,0.99,1.075 +NM_020662,0.757,1.057,1.083,0.799,0.87,1.796,0.792,0.869,1.12,0.9,1.074,1.094,0.952,0.896,1.276,1.808,1.041,1.001,0.887,0.997,0.805,1.202,1.01,1.296,0.773,0.762,1.583,0.895,0.808,1.092,0.929,0.992,4.455,1.212,0.673,0.669,1.176,1.214,1.052,0.827,1.089,1.079,0.921,0.751,1.046,1.108,0.999,0.751,1.247,0.773,0.936,0.898,0.751,2.344 +NM_020663,0.929,0.959,0.911,1.013,0.991,0.969,0.914,1.075,0.931,1.012,1.034,0.925,0.991,0.986,0.846,1.113,1.006,0.874,0.931,0.922,1.02,0.891,0.956,0.994,0.95,1.025,1.101,1.059,0.893,1.123,0.998,1.306,1.171,1.094,0.788,0.965,0.954,0.882,1.088,1.007,1.03,1.18,0.964,0.958,1.04,0.907,0.923,0.983,0.835,0.918,1.085,1.222,1.046,1.061 +NM_020664,0.722,1.211,1.076,1.443,0.677,2.592,0.812,0.626,0.785,0.803,2.226,0.704,0.571,0.67,1.826,1.755,0.744,0.602,0.944,2.087,0.54,0.584,1.864,1.039,0.865,0.929,0.808,0.717,0.604,1.45,0.717,2.627,1.372,3.053,0.476,1.199,1.777,0.735,1.842,0.791,0.733,1.371,0.839,1.486,0.808,2.5,1.26,0.718,2.076,0.893,1.081,0.95,0.733,1.325 +NM_020665,0.976,1.038,0.976,1.158,1.027,1.047,0.9,1.071,1.051,0.956,0.995,0.953,0.95,1.283,0.797,0.957,1.063,1.15,1.054,0.948,1.082,1.008,0.923,1.009,1.006,1.006,1.084,0.995,0.892,1.045,1.089,0.868,1.186,1.163,0.902,0.904,0.968,0.946,1.03,1.051,0.973,0.878,0.866,0.977,1.015,1.029,0.909,0.996,0.947,1.091,1.083,0.891,1.001,0.959 +NM_020666,0.88,0.868,1.284,0.999,0.968,1.073,0.887,0.872,1.122,0.956,0.902,1.089,0.893,0.849,1.034,1.055,1.105,0.953,0.896,1.07,0.849,1.156,0.967,1.489,0.909,0.988,1.342,1.142,0.779,0.98,1.12,1.262,1.552,1.102,0.862,0.807,0.954,0.981,0.909,1.198,1.113,0.926,0.851,0.727,1.076,0.972,1.135,0.842,0.982,0.997,0.97,0.979,0.881,1.42 +NM_020669,0.977,1.055,0.93,1.129,1.099,0.999,1.091,0.956,0.968,1.034,0.993,0.885,1.125,0.953,1.162,1.016,0.899,1.022,0.992,0.985,0.868,0.915,0.862,0.95,1.013,1.017,0.873,1.001,1.35,1.039,1.153,0.929,1.159,1.07,1.016,0.967,0.905,0.948,1.037,0.886,0.991,0.893,1.141,1.106,0.919,1.037,0.901,1.047,1.055,0.891,0.895,0.906,0.904,1.074 +NM_020672,2.769,0.269,2.384,1.086,2.765,0.983,0.216,2.751,3.527,2.45,0.778,2.974,2.816,1.829,1.663,2.147,2.018,2.418,4.001,0.473,1.754,3.366,0.448,3.241,0.17,3.556,1.91,2.511,0.326,0.513,2.782,0.156,1.122,0.341,2.391,0.49,0.674,3.469,0.905,0.11,2.819,0.426,0.474,0.192,2.614,0.8,2.017,3.567,0.9,2.235,0.882,0.864,1.66,0.351 +NM_020673,0.723,0.949,1.676,0.56,0.955,0.945,0.522,0.47,1.099,1.003,1.006,0.705,0.563,0.728,1.093,1.332,0.994,0.812,1.169,1.107,0.627,0.738,1.522,1.042,0.527,0.761,1.572,0.874,0.554,1.463,1.009,1.126,1.354,1.139,0.317,0.788,1.09,0.968,1.024,0.978,1.355,1.189,0.818,0.676,1.098,1.106,1.019,0.738,0.988,1.14,1.045,1.0,1.002,1.52 +NM_020674,0.621,0.999,1.017,0.84,0.694,1.226,0.772,0.871,0.933,0.83,1.1,0.804,0.748,0.634,1.045,1.599,0.834,0.866,0.938,1.097,0.592,0.903,1.317,1.09,0.764,0.746,0.97,0.731,0.655,1.201,0.797,1.211,1.852,1.273,0.537,1.056,1.253,0.847,1.333,0.97,0.844,1.119,0.834,1.016,0.801,1.148,0.772,0.767,1.273,0.814,1.144,0.943,0.854,2.45 +NM_020676,0.576,1.572,0.793,0.925,0.756,2.474,1.249,0.555,0.648,0.974,1.274,0.88,0.499,0.694,1.22,2.09,0.607,1.287,0.982,1.036,0.474,0.826,1.168,0.89,1.192,0.826,0.776,0.707,1.032,2.303,0.95,1.077,1.259,2.82,0.321,0.617,1.749,0.945,1.756,0.629,0.591,1.73,0.703,0.808,0.807,0.976,0.906,0.753,1.128,0.874,1.259,0.789,0.632,1.396 +NM_020677,0.617,1.229,1.113,0.805,0.785,1.229,0.726,0.474,1.016,0.915,1.13,0.614,0.607,0.696,0.966,1.175,0.785,1.0,0.847,0.915,0.55,0.656,1.337,0.756,0.961,0.91,1.19,0.768,0.509,1.581,0.999,1.909,1.997,2.002,0.675,0.867,1.114,0.796,1.374,0.757,0.895,1.39,0.645,1.406,1.115,0.976,0.904,0.932,0.745,0.908,1.178,0.831,1.162,1.172 +NM_020678,1.088,1.025,0.922,1.018,1.067,0.984,1.085,0.855,1.117,1.032,1.124,0.988,0.871,1.184,1.172,1.049,0.889,1.121,1.084,1.004,1.118,1.035,0.994,1.042,0.853,1.048,0.846,0.961,1.118,0.974,0.889,0.983,0.891,0.98,1.022,1.016,1.094,0.864,1.013,0.978,0.961,0.863,1.01,1.134,1.092,1.021,0.992,1.202,0.985,1.053,1.074,0.948,1.03,0.831 +NM_020679,0.703,0.968,1.302,0.532,1.029,1.16,0.492,0.705,1.257,1.14,1.089,1.142,0.833,0.679,1.002,1.531,0.815,0.844,1.553,0.816,0.472,0.87,1.311,1.295,0.457,1.022,1.345,1.179,0.422,1.132,1.156,1.317,1.518,0.997,0.25,1.293,0.788,1.325,0.706,0.934,1.347,0.998,0.397,1.344,1.013,1.064,1.063,0.813,0.648,0.699,1.089,1.042,0.536,1.361 +NM_020680,0.606,1.366,1.195,0.732,0.881,0.966,0.759,0.459,1.098,1.179,0.725,0.868,0.516,0.48,0.722,0.76,1.096,1.26,0.519,1.576,0.401,0.664,1.534,1.116,0.672,0.748,1.118,0.885,0.598,1.353,0.719,2.337,1.073,0.991,0.657,1.587,0.983,1.085,1.322,1.25,1.074,1.264,0.809,0.979,1.223,1.213,1.09,0.765,1.039,0.745,1.334,0.908,0.621,1.055 +NM_020682,0.924,1.023,0.922,0.988,1.1,1.081,0.879,0.933,1.149,0.983,1.056,1.113,0.961,0.947,0.9,0.946,1.004,0.855,0.928,1.066,0.899,1.06,1.014,1.125,0.853,0.97,1.132,0.866,1.198,1.02,1.155,1.57,1.364,1.132,1.059,0.967,0.936,1.147,1.001,0.938,1.031,0.988,1.175,1.065,0.898,1.012,0.945,1.068,0.934,1.007,1.021,0.939,1.014,1.588 +NM_020683,1.105,1.01,1.094,0.943,0.937,1.021,1.044,0.93,1.045,0.969,0.901,1.134,1.226,0.896,0.902,0.892,0.884,1.077,1.056,0.924,0.967,1.094,1.018,1.175,1.009,0.895,1.008,0.728,0.895,1.053,0.937,1.588,1.027,0.933,1.013,0.889,0.956,0.846,0.922,0.97,1.068,0.938,0.939,0.838,1.032,1.045,0.966,0.913,0.883,0.922,1.061,1.088,1.224,1.011 +NM_020684,0.893,0.915,0.957,0.939,0.823,1.045,0.76,0.622,0.929,0.924,0.736,1.021,0.665,0.714,0.772,0.924,0.885,1.02,1.399,0.93,0.759,0.689,1.167,0.89,1.21,1.339,1.051,0.714,0.666,1.239,0.939,1.854,2.564,1.685,0.863,0.874,0.629,0.863,1.728,1.463,0.797,1.121,0.587,2.949,1.111,0.582,0.796,0.893,0.667,1.11,0.843,1.461,1.33,1.249 +NM_020686,0.845,1.091,1.209,0.957,0.979,0.962,0.777,0.857,1.198,1.075,0.981,0.898,0.921,1.0,0.91,1.334,0.806,1.025,0.983,1.323,0.92,0.973,1.092,0.964,0.787,1.166,1.024,1.014,0.772,1.183,1.12,1.043,0.862,1.194,0.813,0.825,1.245,0.726,1.33,0.796,0.956,1.244,0.939,1.198,0.935,1.162,1.089,1.075,1.008,0.837,1.062,0.584,0.819,0.824 +NM_020689,1.583,0.642,2.678,0.86,2.248,0.785,0.57,3.036,3.457,1.822,0.785,1.802,1.532,2.251,2.497,1.288,1.898,0.989,2.791,0.637,0.994,3.501,0.998,2.166,0.628,2.276,3.66,2.76,0.489,0.918,3.665,3.395,1.967,1.188,4.006,0.519,0.623,4.193,0.872,0.553,1.448,0.963,0.492,0.618,1.565,0.58,1.114,3.121,0.583,1.347,1.021,0.83,1.624,0.767 +NM_020690,1.088,0.805,1.332,0.999,0.941,1.043,0.755,0.828,1.039,0.945,0.947,0.869,0.769,0.97,0.946,1.08,1.17,0.874,1.13,0.875,0.801,0.916,0.98,0.979,0.97,0.944,1.155,0.857,0.672,1.114,1.017,1.097,1.307,1.054,0.687,0.705,1.026,1.104,1.196,0.682,0.878,1.07,0.612,0.868,1.012,0.984,1.111,0.886,1.109,1.147,1.09,0.827,1.001,1.18 +NM_020693,1.024,0.933,1.007,0.956,0.864,1.079,0.871,0.868,1.018,0.999,1.26,0.811,1.106,1.096,0.784,1.074,0.992,1.072,0.753,1.01,0.945,0.817,1.018,0.851,0.926,0.897,1.035,0.943,0.86,0.953,1.06,1.033,1.168,1.1,1.126,0.817,1.092,0.971,1.018,0.952,0.975,1.284,1.08,1.039,0.946,0.965,0.997,0.981,1.151,1.013,1.053,0.983,1.003,1.19 +NM_020696,0.789,1.165,1.388,0.716,1.034,1.221,0.828,0.782,1.215,0.88,0.881,1.008,0.822,0.832,1.173,1.339,1.114,0.773,0.944,0.876,0.714,1.061,1.076,1.283,0.643,0.623,1.071,0.979,0.941,1.212,1.123,1.409,2.12,1.067,0.593,0.774,0.873,0.964,1.246,0.802,1.266,1.016,0.697,0.854,1.0,1.029,1.311,0.692,1.199,0.749,0.984,0.873,0.815,2.166 +NM_020697,1.018,1.051,1.001,0.934,1.094,0.891,0.9,0.936,0.972,0.922,0.947,0.968,1.006,0.936,1.083,0.811,1.058,1.009,1.093,1.058,0.997,0.924,0.854,0.975,1.075,0.988,1.01,1.059,1.041,0.967,0.976,1.027,0.905,0.954,0.894,0.977,1.008,1.039,1.244,0.965,0.951,0.95,0.867,1.144,0.969,1.017,1.018,1.051,1.069,1.0,1.092,1.06,0.879,1.003 +NM_020698,0.757,0.78,1.089,0.731,0.838,1.785,0.813,0.996,0.696,0.899,1.38,0.721,0.74,0.821,1.347,1.646,0.771,1.257,1.087,1.465,0.612,0.844,1.509,1.005,1.029,0.86,0.859,0.664,1.009,1.0,0.682,0.912,0.966,1.082,0.856,0.861,2.17,0.731,1.283,0.772,0.74,1.717,0.949,0.834,0.675,1.491,0.889,0.641,1.391,0.692,1.389,1.319,1.038,1.493 +NM_020699,1.033,0.877,1.041,0.826,0.872,1.162,0.998,0.833,0.965,0.845,1.042,0.78,0.862,0.982,0.959,1.302,0.973,1.002,1.14,0.769,1.197,0.855,1.06,0.944,0.861,0.995,1.108,0.861,0.703,1.124,1.056,1.299,1.912,1.299,0.917,0.923,1.023,0.925,1.57,1.162,0.898,1.118,0.916,1.547,1.049,0.996,0.861,0.932,0.943,1.265,1.004,0.802,1.099,1.065 +NM_020701,0.757,1.044,1.265,0.714,1.0,0.951,0.74,0.597,1.021,0.979,1.016,0.901,0.724,0.721,0.894,1.303,0.995,1.007,1.043,0.928,0.678,0.83,1.063,1.122,0.674,0.997,1.239,0.924,0.62,1.407,0.988,1.556,1.617,1.214,0.485,0.993,0.977,0.97,1.214,0.945,1.251,1.0,0.854,1.479,1.128,1.026,1.053,0.905,0.923,0.836,0.962,0.946,1.053,1.324 +NM_020706,0.941,1.006,1.014,0.776,0.994,1.048,0.615,0.505,1.267,1.289,0.742,0.814,0.613,0.767,0.867,0.971,0.855,0.828,0.951,0.914,0.83,1.01,1.256,1.052,0.755,0.913,1.455,0.976,0.793,1.121,0.961,1.155,1.518,0.931,0.742,0.767,0.85,1.15,1.587,1.235,1.081,1.081,1.068,1.278,0.916,0.984,0.992,0.729,0.771,1.007,1.015,0.862,0.838,1.159 +NM_020708,0.932,1.044,1.059,0.771,0.891,1.062,1.029,1.039,0.824,1.056,0.817,1.055,1.039,1.005,1.012,1.123,0.893,1.036,1.0,0.982,0.997,0.965,1.032,0.959,1.012,0.978,0.99,0.94,0.906,1.043,1.061,1.064,1.04,0.925,1.215,1.008,0.979,1.08,0.891,0.943,1.043,0.937,1.061,0.919,0.932,0.993,1.054,1.065,1.048,0.993,0.938,0.872,1.085,1.073 +NM_020713,1.518,0.89,1.253,1.213,1.048,0.953,0.828,0.882,1.238,1.029,0.766,1.059,1.099,0.91,1.044,0.915,1.13,0.898,1.199,0.953,1.024,1.044,0.921,0.969,1.163,1.581,1.218,0.984,0.856,1.022,1.363,1.172,1.068,1.108,1.005,0.759,0.924,0.88,1.122,1.021,1.118,0.836,0.811,1.174,1.173,0.835,0.916,1.256,0.719,1.246,0.799,0.926,1.137,0.831 +NM_020718,1.042,1.127,1.109,0.943,0.904,0.966,0.882,0.993,1.014,0.98,1.028,0.976,0.989,0.796,0.819,0.974,1.045,0.96,0.914,0.999,0.99,1.0,0.949,1.124,0.989,1.022,0.978,0.937,0.718,1.022,0.898,0.981,0.962,1.032,1.088,1.107,0.93,0.916,1.072,1.113,1.003,1.065,0.942,1.058,1.008,1.0,0.954,0.997,1.047,0.986,1.011,1.012,0.996,1.022 +NM_020726,0.697,1.058,0.927,0.993,0.841,1.126,1.094,0.536,0.817,0.969,1.182,0.855,0.736,0.849,0.954,1.306,0.835,1.202,1.025,1.138,0.802,0.676,1.022,0.951,0.969,0.765,1.016,0.714,1.198,1.401,0.767,0.908,1.37,2.034,0.511,0.968,1.639,0.781,1.685,0.64,1.002,1.077,0.695,0.902,0.998,1.413,1.325,0.745,0.941,0.882,1.02,0.957,0.998,1.511 +NM_020727,1.11,1.116,0.866,1.227,1.219,0.934,0.95,1.117,0.996,0.957,1.002,1.101,0.947,1.131,0.905,0.978,1.05,1.151,0.979,0.929,0.961,0.954,1.05,0.93,1.012,0.998,0.958,0.991,1.06,1.013,0.995,1.057,1.077,1.099,1.158,0.874,0.989,1.131,0.973,0.983,0.913,0.998,0.909,1.133,0.985,1.079,1.047,1.14,0.998,1.051,1.005,0.967,0.955,0.966 +NM_020728,0.965,0.956,0.956,1.017,1.007,0.98,0.899,0.895,0.959,1.082,1.06,0.806,1.023,0.933,0.814,1.144,0.983,0.96,0.929,0.906,0.703,1.003,0.937,0.931,0.994,1.041,0.959,1.039,0.996,1.002,0.961,1.022,0.926,1.041,1.034,1.064,1.011,1.024,0.979,1.034,0.995,0.967,1.066,1.016,0.924,0.997,0.933,1.123,1.033,1.009,0.964,0.966,0.955,0.972 +NM_020731,1.012,1.038,1.004,1.019,1.03,0.965,0.976,1.054,1.06,1.05,0.994,0.957,0.881,1.097,0.902,1.147,1.027,0.978,1.238,0.984,0.972,0.928,1.088,0.939,0.945,1.046,0.953,1.027,1.23,0.972,1.029,1.098,1.16,1.217,0.999,0.808,1.081,0.98,1.072,0.93,1.024,1.124,1.277,1.093,0.964,1.041,1.13,1.11,0.994,0.972,0.991,0.916,1.066,1.057 +NM_020732,1.117,0.846,1.277,0.933,1.128,0.967,0.876,0.805,1.145,1.155,0.976,0.961,0.864,0.965,0.964,1.021,1.053,0.996,1.0,1.089,1.022,0.822,0.98,0.941,0.904,0.94,1.056,1.001,0.892,0.929,0.982,1.107,1.026,0.958,1.071,0.981,0.971,1.004,1.124,0.912,1.049,1.068,0.848,0.936,0.944,0.902,1.0,1.021,1.026,1.062,0.995,0.853,1.133,1.105 +NM_020739,0.529,1.953,0.857,0.828,0.61,1.606,1.272,0.523,0.614,0.655,1.3,0.559,0.595,0.608,1.204,1.199,0.69,0.978,0.555,1.581,0.496,0.571,1.806,0.57,1.611,0.592,0.771,0.599,0.79,1.492,0.605,1.751,0.969,1.865,0.44,1.014,1.256,0.589,1.216,0.89,0.733,2.301,1.018,0.615,0.6,1.211,0.676,0.569,0.843,0.685,1.174,0.918,0.613,1.284 +NM_020740,0.844,0.931,1.068,0.933,0.908,0.892,1.055,0.976,0.944,0.867,1.106,1.002,0.942,1.098,0.873,1.069,1.01,0.989,1.043,0.988,1.005,0.99,1.113,0.993,1.133,0.976,1.043,1.004,0.556,1.053,0.85,1.062,0.997,0.953,1.015,1.048,1.071,1.017,0.906,0.956,0.989,0.919,1.08,1.116,0.936,0.992,0.997,0.826,0.955,0.948,1.001,1.042,0.898,0.95 +NM_020742,0.984,1.077,0.991,1.071,1.175,1.035,0.999,1.159,0.989,0.917,0.96,1.093,1.131,0.981,1.205,1.083,0.894,1.089,1.022,0.926,1.021,1.016,1.051,1.065,0.879,0.882,0.981,1.045,1.0,0.911,1.008,1.0,1.175,0.99,1.035,1.057,1.063,0.921,0.998,0.879,1.006,1.068,0.972,1.052,0.976,1.04,1.01,1.078,0.807,1.11,1.025,0.955,1.138,0.973 +NM_020745,0.952,0.92,1.454,0.781,1.071,0.793,0.678,0.687,1.448,1.082,0.645,1.042,0.744,0.93,0.963,1.056,1.291,1.076,1.223,0.901,0.805,1.108,1.188,1.266,0.76,1.041,1.314,1.106,0.562,0.988,0.981,1.128,1.418,0.889,0.492,1.012,0.848,1.046,1.2,0.909,1.056,0.96,0.823,1.015,1.045,0.879,1.025,0.966,0.829,0.829,1.079,0.78,0.971,1.642 +NM_020746,1.014,1.029,1.023,0.833,0.991,0.952,0.831,1.082,1.051,0.969,1.104,1.041,0.823,0.841,0.906,1.056,1.023,1.002,0.945,0.989,0.947,0.746,1.084,1.005,0.825,0.969,0.956,0.973,1.155,1.049,1.011,1.063,1.215,1.022,0.837,0.953,0.947,0.944,0.952,1.238,1.017,1.007,0.865,1.118,1.082,0.943,0.856,0.951,1.193,1.023,0.864,1.013,0.693,1.336 +NM_020750,0.737,0.966,1.226,0.67,0.88,0.833,0.509,0.535,1.31,1.311,0.778,0.794,0.599,0.759,0.916,0.954,0.932,0.702,1.14,0.75,0.907,0.889,1.12,1.252,0.754,0.916,1.396,0.766,0.528,1.066,1.187,1.877,2.377,0.964,0.533,0.953,0.849,1.063,1.376,1.499,1.084,1.041,0.778,1.926,1.26,0.811,0.967,0.793,0.935,1.04,0.986,1.059,1.042,2.483 +NM_020751,0.796,1.093,0.978,0.835,0.771,1.036,0.709,0.579,1.114,0.853,0.972,0.742,0.659,0.89,1.011,1.49,0.792,1.01,1.104,1.126,0.74,0.854,1.235,0.74,0.827,0.898,0.965,0.868,0.738,1.495,0.88,1.382,1.022,1.362,0.457,1.081,1.227,0.732,1.113,1.431,0.932,1.235,0.774,1.246,0.822,1.32,0.948,0.688,0.872,0.753,0.976,0.911,0.947,1.626 +NM_020753,0.849,0.924,0.867,0.914,0.871,1.245,0.912,0.842,0.991,1.004,1.223,0.919,0.836,0.977,1.245,1.394,0.815,1.003,0.952,0.981,0.927,0.897,1.13,0.917,1.0,1.098,1.027,0.849,1.095,1.099,0.914,1.179,0.972,1.033,0.787,0.854,0.935,1.066,1.203,0.977,0.93,1.1,1.045,0.948,0.867,0.978,1.03,0.844,0.883,0.869,0.96,1.132,1.023,1.142 +NM_020755,0.407,1.049,1.286,0.629,0.689,1.232,0.792,0.631,1.083,0.719,0.875,0.501,0.59,0.508,1.029,1.916,0.784,0.861,1.075,1.03,0.495,0.567,1.099,0.729,0.653,0.579,1.043,0.858,0.461,1.213,1.327,1.519,1.683,1.909,0.627,0.61,1.083,0.691,1.808,1.121,0.773,1.44,0.595,0.729,0.883,1.018,0.786,0.706,0.785,0.726,1.186,0.705,0.723,2.612 +NM_020761,1.021,0.986,0.971,0.911,0.985,0.964,0.939,0.769,0.932,0.98,0.836,0.886,0.855,0.78,1.069,1.062,0.833,1.0,0.909,0.946,1.068,0.893,0.972,0.895,1.09,1.027,1.057,0.869,1.038,1.048,0.873,1.306,1.213,1.166,0.837,0.911,1.101,0.921,1.862,1.196,1.013,1.027,0.896,2.012,1.104,1.001,0.869,1.117,0.967,0.976,0.957,0.939,1.144,1.133 +NM_020762,1.148,0.934,0.94,0.746,1.161,1.302,0.888,0.971,1.35,0.819,1.048,0.725,0.766,0.937,1.094,0.945,1.091,1.185,0.947,1.131,0.677,0.998,1.227,1.248,0.769,0.755,0.933,1.063,1.077,1.334,0.959,1.086,1.334,1.113,1.332,0.652,0.951,0.921,1.295,1.445,1.303,1.217,0.769,1.519,0.958,0.886,0.918,0.788,0.836,0.67,1.17,1.163,0.774,1.55 +NM_020764,0.96,0.827,0.875,1.071,1.034,1.148,0.848,1.124,0.963,1.131,1.071,0.973,0.947,1.024,0.845,1.17,1.083,1.222,1.169,0.982,0.871,1.034,0.967,0.988,0.892,1.009,0.952,1.057,1.098,0.788,0.831,1.054,0.836,0.865,1.048,0.915,1.164,1.172,0.996,1.066,0.971,0.909,1.211,1.036,0.943,1.038,1.197,1.12,1.101,1.129,0.919,0.9,1.052,1.034 +NM_020765,1.161,0.842,0.999,0.927,1.372,0.801,0.63,0.628,1.399,1.303,0.949,0.68,0.64,0.605,1.047,1.123,0.873,0.713,1.221,0.649,0.711,0.673,1.001,0.966,0.593,0.664,1.439,0.738,0.545,0.954,0.84,1.046,2.178,1.026,0.953,1.089,0.881,1.052,1.73,1.595,1.196,0.862,0.718,2.137,1.763,0.72,1.235,1.038,0.975,1.736,0.802,1.236,1.342,1.1 +NM_020769,1.026,1.297,1.015,0.965,0.957,0.882,1.109,1.056,1.185,1.046,0.922,0.899,0.966,1.042,0.862,1.047,0.9,0.877,1.0,0.971,1.072,0.877,0.992,1.049,1.087,1.129,1.055,1.001,1.038,0.999,0.888,0.934,1.005,0.984,0.91,1.089,0.949,1.039,1.015,0.984,0.946,1.057,0.733,1.002,1.065,0.99,0.97,0.988,1.142,0.937,1.056,1.01,0.946,1.042 +NM_020770,0.37,0.916,0.48,0.775,0.489,1.705,0.82,0.324,0.697,0.557,1.377,0.306,0.239,0.415,1.237,1.295,0.283,1.085,0.486,1.595,0.258,0.411,1.684,0.502,0.604,0.457,0.491,0.436,0.717,2.142,0.559,1.756,0.49,1.48,0.596,1.689,1.565,0.37,2.291,1.249,0.576,1.631,1.303,1.801,0.537,1.412,1.742,0.561,1.929,0.407,1.791,0.988,0.388,3.033 +NM_020771,1.01,1.038,1.08,0.995,1.067,1.103,0.749,1.133,0.983,1.015,1.05,1.031,0.907,1.046,1.084,0.939,0.969,0.898,1.028,0.878,0.969,0.964,1.002,0.983,1.019,1.095,1.055,1.079,0.675,1.056,0.977,1.101,0.923,0.919,1.038,1.046,0.919,1.036,1.015,1.059,0.894,0.957,0.883,0.982,0.929,0.934,0.967,0.947,0.95,1.029,1.115,0.913,0.99,0.942 +NM_020772,0.776,1.018,1.287,0.627,0.895,1.033,0.925,0.786,0.928,0.867,1.125,0.754,0.663,0.794,1.057,1.046,0.736,1.108,0.904,0.894,0.728,0.735,1.427,1.117,0.763,0.518,0.95,0.824,0.831,1.221,0.905,1.249,1.272,1.14,0.586,0.903,1.17,0.907,1.231,1.505,0.978,1.383,0.936,1.176,0.979,1.264,1.052,0.578,1.008,0.615,1.363,1.488,0.845,0.86 +NM_020773,0.99,1.104,1.217,0.768,1.296,0.819,0.612,0.649,1.368,1.01,0.669,1.077,0.941,1.175,0.958,1.044,1.257,0.94,1.123,0.868,0.843,1.24,0.902,1.125,1.072,1.212,1.661,1.177,0.375,0.935,1.118,1.164,1.575,1.155,0.578,0.744,0.888,1.404,0.966,0.905,1.496,0.859,0.436,0.978,1.171,0.68,0.997,1.182,0.696,1.094,0.855,0.843,1.023,1.146 +NM_020774,0.859,1.173,1.143,0.855,0.984,0.954,0.895,0.905,1.34,1.059,1.223,0.905,1.007,0.906,0.697,1.102,0.921,0.929,0.989,1.0,0.852,1.003,1.023,0.987,0.869,0.792,1.299,1.079,1.022,1.176,1.095,0.978,1.118,0.93,1.27,1.039,1.034,0.956,1.111,0.956,0.965,1.125,0.846,1.355,0.861,1.197,1.134,0.999,0.982,1.026,0.997,1.001,0.99,1.24 +NM_020775,0.0424,2.294,0.0538,1.153,0.052,2.571,1.203,0.0409,0.0584,0.0465,3.707,0.0437,0.0533,0.0489,0.716,1.622,0.0555,1.308,0.0483,2.421,0.0453,0.0538,2.679,0.0545,2.257,0.0462,0.0573,0.0509,1.383,3.451,0.0472,0.158,0.981,3.755,0.0399,0.22,2.68,0.0545,1.582,0.121,0.056,3.864,2.116,1.211,0.101,1.606,0.72,0.0444,1.151,0.0461,2.718,0.172,0.0673,1.019 +NM_020777,0.906,0.928,1.133,0.929,0.886,1.023,0.853,0.859,0.995,1.032,0.903,0.997,1.002,1.154,1.088,0.945,1.1,1.018,1.28,0.751,0.956,0.936,1.038,1.035,1.003,0.938,1.1,1.049,0.873,1.11,1.005,1.358,1.023,1.123,1.133,0.924,0.984,0.919,0.955,0.871,1.104,1.005,0.984,1.011,1.055,0.896,0.987,1.019,0.847,1.065,1.017,1.072,1.282,1.094 +NM_020778,1.054,0.919,1.103,0.827,1.097,0.693,1.241,1.153,1.212,1.223,0.879,1.244,1.081,1.785,0.896,0.997,1.109,1.475,1.173,1.15,1.05,0.793,0.897,1.035,0.788,1.14,0.78,1.137,1.394,1.004,0.812,1.024,1.08,1.082,1.007,0.874,0.98,1.134,0.89,1.003,1.031,0.959,1.308,0.788,0.967,0.997,0.764,1.015,1.049,1.121,0.958,1.011,1.214,1.059 +NM_020779,0.926,0.977,1.047,1.03,1.038,0.956,0.975,0.955,0.855,0.977,0.924,0.924,0.889,0.928,0.786,0.832,0.94,0.989,0.93,0.942,0.995,0.819,1.171,1.03,0.955,1.055,0.952,0.99,0.743,1.07,1.016,1.153,1.903,1.031,0.885,1.116,0.987,0.986,1.119,1.241,0.919,1.051,1.044,1.221,0.956,1.051,0.894,0.904,0.908,0.903,1.091,1.032,0.981,1.391 +NM_020781,0.955,0.987,0.916,0.941,1.026,0.89,1.087,0.95,0.882,1.005,0.907,0.954,0.902,0.969,0.949,0.92,1.11,0.833,0.895,1.161,0.961,0.945,0.747,0.938,0.958,1.0,1.049,1.08,1.228,0.977,1.137,1.027,1.01,1.044,1.127,1.016,0.978,1.167,0.993,1.133,1.003,1.117,1.074,0.934,0.919,0.926,0.849,0.957,0.962,1.051,1.039,0.875,0.822,0.922 +NM_020783,1.114,1.016,0.894,1.09,1.041,0.843,1.069,1.239,0.892,0.941,1.076,0.782,0.897,1.025,0.744,1.145,0.98,0.92,0.894,1.417,0.993,0.873,0.949,0.97,1.136,0.97,0.837,1.051,0.924,1.056,0.912,0.912,0.903,1.891,1.06,0.859,1.115,0.908,0.932,1.094,1.026,0.932,1.028,0.844,0.893,1.124,1.006,0.977,0.948,0.96,0.989,0.873,1.025,1.006 +NM_020791,0.788,0.988,1.091,0.615,0.96,1.01,0.7,0.847,1.205,0.948,0.915,0.976,0.767,0.696,0.817,1.011,0.797,1.083,1.287,1.103,0.944,1.065,0.91,1.164,0.65,0.69,1.203,0.913,0.909,1.121,0.864,0.997,1.509,1.003,0.68,0.944,1.145,1.012,1.322,1.424,1.059,1.14,0.783,1.433,0.874,1.055,1.159,0.67,1.02,0.936,0.838,1.362,0.88,1.176 +NM_020794,0.969,1.121,0.961,0.863,1.083,1.036,0.921,0.892,1.024,1.059,0.971,1.09,1.01,0.848,0.997,1.138,1.06,1.025,0.873,1.0,1.131,0.962,0.796,1.12,1.045,0.931,1.063,1.015,0.728,0.998,0.987,0.984,1.019,0.938,0.901,1.061,1.001,1.042,1.026,1.155,1.146,0.944,0.909,0.887,0.988,0.972,1.064,1.004,0.98,1.073,0.959,1.068,1.011,1.018 +NM_020795,1.0,0.91,0.966,1.027,0.854,0.977,0.832,0.765,0.944,0.98,0.995,0.983,0.924,1.155,1.05,0.905,0.903,0.872,0.841,0.964,0.933,0.902,0.954,0.912,1.006,0.958,1.089,1.049,0.859,1.057,0.974,2.04,1.374,0.966,1.04,0.88,0.935,0.964,1.205,1.156,1.059,1.23,1.073,0.997,0.864,1.089,0.868,0.835,1.029,1.005,1.036,1.155,1.075,1.13 +NM_020796,1.077,0.982,0.899,1.032,0.962,0.962,0.881,1.04,1.028,1.022,1.073,0.921,0.96,1.082,1.306,1.105,1.019,0.962,0.89,0.948,0.985,1.061,1.153,0.967,1.065,0.983,1.035,1.059,1.458,1.132,0.907,1.141,0.892,1.056,1.077,0.969,0.867,1.069,1.118,1.033,1.0,0.867,1.253,1.029,1.13,1.0,0.978,1.09,1.049,0.93,0.828,0.985,0.936,0.979 +NM_020799,0.714,1.431,0.956,0.781,0.8,1.164,0.779,0.913,0.829,0.882,1.277,0.75,0.842,0.682,1.404,1.677,0.831,0.781,0.866,0.86,0.731,0.918,1.358,0.811,0.822,0.713,0.969,0.878,0.901,1.009,0.803,2.238,3.259,1.359,0.628,1.106,1.136,0.944,1.443,1.123,0.922,0.949,1.105,2.78,0.792,1.03,1.111,0.744,1.66,0.719,1.297,0.989,0.814,1.948 +NM_020801,0.91,0.936,1.071,0.992,0.979,0.936,0.908,1.091,0.955,0.861,1.037,1.023,0.972,1.012,1.048,0.984,0.972,1.096,0.968,0.997,1.028,0.977,0.889,1.117,0.887,0.906,1.327,1.098,0.943,1.081,0.917,1.044,1.071,0.963,0.978,1.027,0.998,1.054,0.911,0.905,1.022,1.03,1.069,1.159,1.102,0.895,1.122,0.917,1.131,1.004,0.989,1.062,1.045,0.891 +NM_020804,1.07,1.124,0.869,0.903,0.814,1.043,1.068,0.869,1.049,0.924,1.053,0.865,0.962,1.099,0.952,0.897,0.932,0.878,1.024,1.018,0.932,1.041,0.871,1.009,0.998,0.962,1.075,0.942,1.16,1.131,1.017,1.59,1.661,0.96,0.864,0.988,0.996,0.826,1.002,1.157,0.974,1.073,0.877,0.94,0.926,1.14,0.917,0.881,1.084,0.915,1.05,0.965,1.027,1.357 +NM_020806,0.853,1.126,1.007,0.706,0.891,1.157,0.663,0.577,1.136,0.893,0.872,0.868,0.641,0.723,1.016,1.18,0.629,0.826,0.836,1.158,0.616,0.709,1.545,0.987,1.118,0.848,1.008,0.993,0.643,1.041,0.844,0.977,1.485,1.248,0.427,1.304,1.05,0.933,1.456,0.836,0.937,1.254,0.869,1.649,0.971,1.07,1.103,0.724,1.044,0.748,1.176,0.76,0.925,1.25 +NM_020808,0.866,0.938,1.236,0.817,1.147,0.96,0.692,0.823,1.417,1.274,1.01,1.117,0.739,0.801,1.111,1.123,0.854,0.986,1.087,1.369,0.84,1.24,1.108,1.359,0.657,0.983,1.259,1.201,0.961,0.839,1.393,1.292,1.078,0.822,0.69,1.04,0.81,1.342,1.027,1.049,1.117,1.232,0.855,0.936,1.116,1.094,0.968,0.968,0.972,0.777,1.135,0.755,1.101,1.735 +NM_020809,1.154,0.944,1.143,1.065,0.986,0.894,1.035,1.002,1.0,0.939,0.935,0.957,0.965,1.043,0.959,0.989,0.983,1.01,1.167,1.0,1.035,1.032,1.033,1.041,0.788,0.94,1.018,0.951,0.955,0.983,0.95,1.236,1.056,1.195,0.989,1.018,0.913,0.994,0.98,0.938,1.027,1.116,0.948,0.942,0.973,1.029,1.062,0.963,1.013,1.058,0.96,1.052,1.402,0.854 +NM_020812,0.89,0.903,1.062,0.921,0.882,1.033,0.609,0.856,1.052,0.908,0.853,0.979,0.8,0.798,1.052,1.228,0.99,0.891,1.27,0.946,0.741,1.176,1.254,1.026,0.817,1.158,1.149,0.753,0.767,0.915,0.946,1.034,1.128,1.098,1.173,0.806,0.944,0.95,1.757,1.595,0.944,1.045,0.751,1.187,1.14,0.853,0.907,1.377,0.749,1.178,0.943,0.937,0.923,1.299 +NM_020815,2.1189999999999998,2.09,1.999,1.987,1.877,1.992,2.069,2.211,1.715,1.987,1.911,2.0780000000000003,1.811,1.952,2.0069999999999997,1.8,1.938,2.1580000000000004,2.255,2.0,2.263,2.0629999999999997,1.964,2.037,2.077,2.06,1.971,2.021,1.9969999999999999,1.942,2.101,2.572,2.08,1.865,2.1630000000000003,2.189,2.043,2.22,1.896,2.0540000000000003,1.9929999999999999,2.016,1.816,1.84,2.238,2.0069999999999997,2.016,2.01,1.978,2.077,2.082,2.0,2.0919999999999996,1.951 +NM_020816,1.02,1.059,0.968,0.944,0.979,1.021,1.083,0.996,0.947,1.084,0.895,0.873,1.123,1.217,1.002,0.982,1.096,0.905,0.942,1.119,0.921,0.962,1.025,1.034,1.007,1.201,0.911,0.87,0.919,1.063,0.921,0.962,0.913,0.966,0.997,1.049,1.003,0.956,1.003,1.028,0.976,1.148,1.073,0.919,1.058,0.96,1.029,1.072,1.04,0.996,0.806,1.014,0.989,0.934 +NM_020817,1.075,1.001,1.049,0.912,1.02,0.961,1.178,0.844,0.91,0.938,1.049,1.031,0.905,0.999,0.965,0.911,0.939,0.959,0.911,0.922,0.97,0.889,1.007,0.92,1.002,0.863,1.005,0.963,0.859,1.002,0.81,1.009,1.029,1.104,0.884,1.121,1.043,1.067,1.038,0.964,0.953,1.035,0.883,0.998,0.926,1.128,0.94,0.948,0.955,0.859,0.996,1.083,1.201,1.081 +NM_020818,1.12,1.014,0.873,1.217,1.144,1.019,1.095,1.042,1.093,0.901,0.97,0.905,1.099,1.0,1.033,0.844,0.837,1.0,0.989,0.842,1.037,0.971,0.979,0.929,0.976,1.101,0.912,0.905,1.119,1.002,0.995,1.017,1.098,1.039,1.031,1.156,0.9,1.002,0.907,0.925,0.893,0.993,1.052,1.085,0.92,1.057,0.941,1.172,0.861,1.013,1.011,0.809,1.17,1.047 +NM_020820,0.92,1.097,1.002,1.005,0.978,1.028,1.037,0.86,1.044,1.073,0.963,0.977,0.942,0.897,1.023,1.054,0.962,1.04,0.915,0.962,1.011,0.945,0.994,0.919,1.08,0.969,1.01,0.962,0.765,0.959,0.919,1.094,0.887,1.03,0.938,1.044,1.053,0.955,1.134,1.303,0.834,1.123,0.877,1.023,1.079,0.939,0.918,1.011,0.927,0.909,0.893,1.034,0.938,0.987 +NM_020826,0.531,1.374,0.474,0.677,0.561,1.063,0.912,0.534,0.494,0.514,1.03,0.624,0.502,0.53,1.368,2.68,0.481,1.229,0.468,1.224,0.502,0.469,2.019,0.462,1.184,0.455,0.561,0.547,0.599,0.913,0.445,1.335,3.715,1.353,0.577,3.027,1.83,0.482,1.117,1.465,0.533,1.411,1.75,1.958,0.573,1.523,1.798,0.57,0.86,0.446,1.944,0.83,0.549,1.343 +NM_020831,0.613,1.184,1.193,0.792,0.824,1.214,0.966,0.432,1.07,0.873,0.885,0.719,0.509,0.624,0.801,0.936,0.801,1.006,0.669,1.215,0.498,0.685,1.1,0.883,0.784,0.679,1.258,0.757,0.626,1.554,0.768,1.885,0.87,1.363,0.437,0.81,1.017,0.833,1.293,1.392,0.903,1.358,0.796,1.078,0.844,1.178,0.813,0.618,0.839,0.857,1.087,0.999,0.815,1.478 +NM_020832,1.033,0.984,1.004,0.981,1.041,1.026,0.872,0.869,0.859,0.974,0.925,1.04,1.017,0.948,0.999,1.165,1.074,1.003,1.114,0.978,0.988,0.927,0.991,1.027,0.955,0.934,0.975,0.885,0.756,0.929,1.097,1.052,1.186,1.047,1.099,1.058,0.917,0.941,1.159,1.046,0.947,1.045,0.919,1.097,1.052,1.037,0.969,1.05,0.994,1.004,0.919,1.016,0.965,1.023 +NM_020834,0.976,0.976,1.047,1.048,1.005,1.1,0.862,0.957,1.027,0.929,1.194,0.9,1.035,0.95,0.833,1.036,1.072,1.072,1.07,1.238,0.793,0.951,0.792,1.022,1.058,1.013,1.284,0.853,0.809,1.106,1.154,1.128,1.159,0.955,1.016,0.944,0.941,1.028,0.945,0.781,1.303,1.258,0.838,1.024,0.963,0.991,1.002,1.008,0.952,0.999,1.018,0.936,1.184,0.781 +NM_020836,0.968,1.077,0.955,1.075,0.9,0.905,0.979,0.845,0.851,0.976,1.029,1.026,1.08,1.101,0.937,1.178,1.024,0.935,0.986,0.802,0.981,0.955,0.945,1.104,1.001,0.976,0.939,0.957,0.951,0.914,1.066,0.879,1.011,1.039,0.983,1.105,1.009,0.858,1.091,1.202,0.81,0.902,0.827,0.997,1.047,1.076,1.064,1.069,0.865,0.945,0.908,0.99,0.961,1.023 +NM_020839,0.826,1.181,1.525,0.704,0.824,1.207,0.803,0.688,1.16,1.055,1.096,0.867,0.938,0.745,0.999,1.482,0.856,0.874,0.962,1.135,0.651,0.669,1.345,0.824,0.89,0.797,1.283,0.787,0.739,1.517,0.959,1.217,1.113,1.997,0.397,0.749,1.242,0.856,1.331,0.935,1.01,1.746,0.725,0.726,0.977,1.031,0.788,0.639,0.699,0.604,1.237,0.954,0.95,1.907 +NM_020841,0.694,0.713,2.02,0.513,1.212,1.19,0.859,1.513,1.292,1.148,0.824,1.665,1.2,0.816,1.218,1.429,0.966,1.195,1.044,0.884,0.428,1.622,1.059,1.369,0.572,0.541,1.955,1.024,0.54,0.954,1.762,1.487,1.857,1.333,0.54,0.408,0.904,1.419,1.234,1.472,1.134,1.185,0.517,0.495,1.322,0.775,0.888,1.06,0.798,0.976,0.951,0.943,0.498,1.692 +NM_020843,0.911,0.967,1.374,0.994,0.985,0.865,0.722,0.826,1.345,1.034,0.913,0.934,0.743,0.943,1.222,1.011,0.916,0.98,1.103,0.95,0.816,0.98,0.972,0.906,0.805,1.034,1.238,1.16,0.74,1.053,1.121,1.221,1.075,1.071,1.003,0.734,1.062,1.056,0.883,0.899,1.033,1.096,0.847,0.778,1.111,0.794,0.996,0.86,0.784,1.017,1.068,0.899,1.093,1.044 +NM_020844,1.008,0.949,1.021,0.938,0.971,0.933,0.873,1.064,1.0,0.976,1.018,1.143,0.953,1.092,0.837,0.974,0.988,1.009,0.977,0.922,1.05,0.98,1.02,1.064,1.024,1.08,1.159,1.099,0.614,1.062,1.1,1.017,0.979,0.918,0.928,1.076,1.147,1.054,0.995,1.042,0.899,0.887,0.948,0.991,1.072,1.262,0.901,0.955,1.039,0.96,1.179,0.921,1.036,0.825 +NM_020845,1.06,0.825,1.058,0.904,1.025,0.909,0.859,1.153,0.884,1.044,0.978,0.968,1.002,0.996,1.167,0.877,0.962,1.134,1.003,1.06,1.019,1.007,0.906,0.993,1.046,0.907,0.969,0.993,0.97,0.908,1.046,1.038,0.944,1.026,0.982,1.105,0.996,1.072,0.971,0.982,0.999,1.05,1.009,0.937,0.955,0.892,0.919,0.965,0.888,0.974,1.009,0.959,1.02,1.01 +NM_020847,1.91,2.0149999999999997,2.064,1.8130000000000002,2.199,2.004,1.799,1.893,1.81,2.029,2.053,1.997,1.951,2.01,2.023,2.2329999999999997,2.02,1.8820000000000001,2.024,2.343,2.1029999999999998,1.936,2.029,2.25,1.8820000000000001,2.035,2.169,2.003,1.717,1.954,1.944,2.045,2.2039999999999997,2.081,1.904,1.879,2.15,2.409,2.043,2.1950000000000003,2.0709999999999997,1.948,1.952,2.143,2.0709999999999997,2.051,1.962,1.9300000000000002,2.2190000000000003,1.9909999999999999,2.132,1.796,2.08,2.1689999999999996 +NM_020849,1.395,0.898,2.114,0.755,0.875,1.258,0.75,1.004,1.598,0.909,0.705,1.542,0.875,1.669,1.292,0.805,1.292,0.901,2.312,0.647,0.751,1.444,0.76,0.794,0.625,1.665,1.818,1.258,0.996,0.671,0.886,0.647,0.709,0.917,1.192,0.692,1.014,0.9,1.551,0.647,0.851,1.088,0.985,2.154,0.804,1.022,1.736,1.767,1.246,1.591,1.817,1.884,1.832,1.417 +NM_020850,1.044,0.96,1.125,0.91,0.938,1.066,0.825,0.883,1.371,0.993,1.034,0.934,0.862,0.954,1.003,1.094,1.213,0.966,1.141,0.922,1.069,1.169,0.976,1.098,0.831,0.987,1.366,0.882,0.614,0.847,1.122,1.288,1.588,0.941,0.804,0.849,0.947,1.416,1.138,0.961,1.26,1.092,0.792,1.207,0.957,0.881,0.914,1.063,0.918,1.002,0.916,0.813,0.817,1.78 +NM_020851,0.911,0.907,0.99,1.101,0.884,1.055,1.094,0.977,1.136,0.996,1.143,1.109,1.002,0.978,0.773,1.102,1.043,1.051,1.062,0.95,0.998,1.073,1.027,0.939,0.981,1.066,1.157,0.989,0.882,0.882,1.052,1.253,1.122,0.982,0.907,0.886,1.031,0.916,1.118,0.949,1.044,0.849,1.045,1.188,0.955,0.923,1.002,0.968,0.979,0.983,0.895,0.884,0.94,1.126 +NM_020854,1.097,0.601,2.26,0.894,1.658,0.846,0.673,1.365,2.571,1.701,0.847,1.196,0.879,1.173,1.501,1.916,1.515,1.428,2.3,0.865,1.077,1.244,1.12,2.065,0.519,1.062,2.139,1.638,0.508,0.834,2.139,0.724,1.644,0.961,1.751,0.625,0.757,1.601,0.937,0.529,2.081,0.743,0.705,1.2,1.877,0.671,1.126,1.316,0.819,1.429,1.031,0.984,1.682,1.131 +NM_020856,0.972,1.019,1.008,0.926,1.003,0.969,1.007,0.926,1.046,1.08,0.958,0.916,0.788,0.876,0.956,1.026,0.901,0.897,0.804,1.038,1.001,0.787,1.196,0.995,0.975,0.883,0.997,1.125,1.039,1.118,1.005,2.579,1.197,1.26,0.951,0.791,0.947,0.921,1.235,1.433,1.026,1.319,1.087,0.872,0.925,1.065,0.946,0.88,0.95,0.938,1.152,1.277,1.077,1.105 +NM_020857,1.033,1.07,0.832,0.896,0.892,1.264,0.775,0.592,0.997,0.799,0.933,0.668,0.842,0.986,0.794,1.026,1.149,1.136,0.965,0.82,0.852,1.071,1.224,0.907,1.004,1.09,1.294,0.774,1.12,1.193,1.032,1.18,0.594,1.046,1.225,0.974,1.055,0.883,1.662,1.176,0.878,1.011,0.922,1.042,0.893,0.856,0.987,1.094,0.896,0.925,0.915,1.094,0.666,1.161 +NM_020859,0.728,1.263,0.976,0.555,1.103,1.284,0.729,0.417,1.614,1.017,1.405,0.342,0.366,0.597,0.962,1.199,1.576,1.188,1.176,1.095,0.633,0.686,1.244,0.798,0.589,0.55,0.975,0.879,0.553,1.246,1.206,0.893,0.933,1.354,0.523,0.692,1.199,0.67,1.361,0.244,1.064,1.396,1.099,0.844,1.243,1.158,1.058,0.681,1.111,0.575,1.55,0.656,0.887,0.767 +NM_020860,0.779,1.045,0.95,0.923,0.933,1.046,0.946,0.877,0.842,0.903,1.042,0.907,0.905,0.759,0.81,1.197,0.761,0.86,0.858,1.28,0.779,0.909,1.205,0.794,0.891,0.861,1.007,0.894,0.775,1.21,0.903,1.219,1.01,1.123,0.673,1.01,1.049,0.87,1.222,0.999,0.86,1.209,1.38,1.079,0.807,1.429,0.99,0.962,1.198,0.952,1.106,0.983,0.915,1.41 +NM_020861,0.877,0.972,1.205,0.822,0.822,1.252,0.858,0.984,1.017,0.966,1.031,0.985,0.931,0.872,0.999,1.748,0.909,0.901,0.92,1.106,0.806,1.22,1.116,1.131,0.988,0.801,1.177,0.893,0.65,1.139,1.141,1.179,1.734,1.203,0.926,0.91,0.957,1.118,1.223,1.265,0.982,1.226,1.046,0.991,0.944,1.079,1.04,0.993,1.461,0.869,0.989,0.945,0.819,1.437 +NM_020865,0.81,1.153,1.178,0.839,0.833,0.959,0.818,0.634,1.081,1.01,1.002,0.836,0.72,0.753,0.88,1.278,0.857,0.854,1.179,0.896,0.729,0.744,0.998,1.144,0.838,0.75,1.208,0.828,0.847,1.071,1.047,1.482,1.988,1.61,0.569,0.939,1.059,0.854,1.332,0.847,1.031,1.11,0.808,1.439,0.905,0.964,0.882,0.676,0.867,0.779,0.967,0.906,1.086,1.814 +NM_020866,0.891,0.989,0.95,1.093,0.923,1.092,0.941,1.213,0.974,0.873,1.058,1.155,1.049,1.003,0.759,1.021,1.017,0.845,1.063,1.047,0.893,1.024,1.192,1.009,0.991,0.996,0.944,1.076,0.81,1.01,1.107,0.96,0.916,0.931,1.157,0.978,1.206,0.991,1.011,0.926,0.956,1.051,1.019,1.034,1.071,0.945,1.09,0.851,0.982,0.956,1.001,1.048,0.971,0.962 +NM_020867,0.721,0.823,1.232,0.643,1.253,1.011,0.669,0.879,1.254,1.104,0.732,0.961,0.626,0.911,1.058,1.165,1.048,1.039,0.882,1.136,0.522,0.936,1.262,1.059,0.642,0.97,1.094,0.802,0.683,0.992,1.067,1.312,1.988,0.934,1.232,0.81,0.912,1.267,1.234,1.027,0.892,0.89,0.845,1.344,1.087,0.924,0.758,0.965,1.002,0.946,1.165,1.11,0.823,2.693 +NM_020868,1.174,0.991,1.044,1.013,0.978,1.04,0.885,1.006,0.975,1.104,1.066,0.968,1.06,0.969,1.033,1.036,0.935,1.177,1.117,1.046,1.028,1.08,1.042,0.998,1.091,1.057,1.085,0.992,0.988,0.956,1.006,1.042,1.105,0.833,1.068,1.016,1.04,0.874,0.991,0.892,0.971,0.915,0.838,1.048,1.074,1.122,1.183,1.132,0.964,0.963,0.995,1.078,1.077,0.997 +NM_020870,0.463,1.766,0.608,0.87,0.462,2.106,1.61,0.53,0.739,0.555,1.475,0.472,0.498,0.534,0.967,1.52,0.432,1.694,0.524,1.824,0.446,0.487,1.618,0.563,0.895,0.497,0.503,0.533,0.905,2.092,0.682,1.536,1.33,3.13,0.432,0.647,1.894,0.575,2.113,0.994,0.515,2.291,0.788,1.049,0.541,1.517,1.063,0.416,1.673,0.407,1.961,0.957,0.435,1.429 +NM_020871,0.836,1.031,0.854,0.966,0.952,1.009,1.025,1.014,1.046,0.889,1.031,0.992,1.07,1.048,1.045,0.982,1.028,0.871,0.866,1.033,1.106,0.932,1.031,1.006,1.072,0.861,0.914,0.895,0.845,1.115,0.935,1.402,1.067,1.13,0.976,1.06,1.051,0.978,1.048,1.01,0.905,1.128,0.832,0.994,0.957,1.085,0.956,0.986,0.914,0.862,1.085,1.017,0.897,0.914 +NM_020873,0.997,1.918,1.034,0.879,0.916,1.231,1.201,1.027,0.917,0.954,1.116,0.897,0.983,0.988,0.91,1.073,0.966,0.864,1.081,1.141,0.921,0.908,1.153,0.941,0.946,0.749,0.81,0.947,1.394,1.077,1.078,1.567,1.119,1.113,1.062,0.997,0.994,0.893,0.88,0.993,1.074,1.293,1.08,1.103,0.942,1.104,1.0,1.008,1.025,0.852,1.029,1.009,1.031,0.949 +NM_020880,0.964,0.99,1.029,0.98,0.966,1.046,1.054,1.022,1.105,0.855,0.973,0.984,0.967,0.97,1.186,1.102,0.986,0.902,0.888,1.098,1.11,0.882,0.948,0.885,1.016,0.948,1.121,1.064,0.956,1.029,0.979,0.914,1.487,1.01,0.953,1.26,0.936,0.999,1.102,1.054,0.864,1.024,0.974,0.933,1.001,0.976,0.954,0.891,0.999,0.995,1.032,0.981,1.131,1.036 +NM_020882,1.156,1.052,1.049,1.088,1.068,0.941,0.975,1.002,0.977,0.963,0.692,0.929,0.891,1.013,0.969,0.949,1.121,0.727,1.062,0.982,1.049,1.225,1.014,1.006,1.21,0.995,1.187,1.121,1.064,0.895,1.09,0.903,0.901,0.995,0.962,1.146,0.98,0.93,0.781,0.954,0.97,1.045,1.079,0.96,0.911,0.87,1.034,0.998,0.991,1.042,1.076,1.108,1.201,0.967 +NM_020886,0.849,1.094,1.194,0.914,0.943,0.971,0.899,0.742,1.208,1.201,0.919,1.033,0.804,1.059,0.93,1.2,0.958,0.901,1.107,1.13,0.997,0.989,1.299,0.976,0.785,0.921,1.38,0.929,0.907,1.184,1.047,1.186,1.836,1.053,0.914,1.232,0.86,0.923,1.237,1.179,0.991,0.917,0.983,0.921,0.873,0.918,1.16,0.868,1.017,1.09,0.934,0.793,1.063,1.469 +NM_020889,0.994,1.103,1.031,0.996,1.139,0.906,0.898,0.9,1.206,0.938,1.045,1.116,0.977,0.768,1.032,0.96,1.016,1.156,0.956,1.031,0.864,0.973,0.946,1.049,1.026,1.063,0.948,0.996,0.912,1.078,0.856,0.972,1.017,1.067,0.988,1.039,0.942,0.991,1.021,0.923,1.062,0.973,1.027,0.961,1.106,1.01,1.0,1.006,1.022,1.118,1.093,0.892,0.973,0.993 +NM_020890,0.868,0.955,1.248,0.926,0.899,1.074,0.84,0.803,0.947,0.87,0.984,0.885,0.948,0.871,0.968,1.167,0.952,0.903,1.275,0.905,0.91,0.93,1.072,1.08,0.931,0.926,1.589,0.957,0.907,0.951,0.987,1.063,1.904,0.935,0.852,1.021,0.995,1.004,1.307,1.22,0.972,0.871,1.005,1.327,1.1,1.12,1.095,0.858,1.125,1.04,1.272,1.095,0.948,1.587 +NM_020892,1.453,0.465,1.669,0.801,3.232,0.773,0.479,2.49,3.157,1.608,0.505,1.785,1.382,1.23,1.321,0.657,1.928,1.942,1.554,0.692,0.721,2.345,1.049,1.049,0.381,2.326,1.483,2.546,0.392,1.251,2.043,0.48,1.001,0.656,4.129,0.53,0.629,3.248,1.031,0.758,2.284,0.646,0.492,1.153,1.599,0.547,1.352,2.808,0.734,1.091,0.861,0.999,1.197,1.45 +NM_020895,0.706,1.81,0.991,1.028,0.75,1.002,1.217,0.517,0.732,0.855,0.899,0.752,0.687,0.625,0.699,0.738,0.872,0.688,0.686,0.984,0.57,0.668,1.263,0.86,1.435,0.727,1.077,0.759,0.494,1.755,0.588,3.591,1.503,1.431,0.632,1.693,0.947,0.686,1.114,3.827,0.81,1.432,0.998,2.094,0.916,0.928,0.956,0.681,0.85,0.659,0.956,1.615,0.941,1.658 +NM_020896,1.069,0.933,0.987,1.079,1.086,0.968,1.249,1.013,1.059,1.067,0.999,0.96,0.954,1.014,1.016,0.856,1.045,1.109,1.114,0.931,0.91,0.946,1.057,1.027,1.022,0.956,0.91,1.103,1.317,0.986,1.076,0.917,1.029,0.92,1.06,0.944,1.06,0.899,1.028,1.011,0.965,0.927,1.229,1.031,0.96,1.166,0.894,1.059,0.977,0.952,0.903,1.216,1.056,0.982 +NM_020897,0.998,0.975,0.908,0.914,0.899,1.067,0.929,1.237,1.178,0.922,0.955,0.877,1.031,0.974,0.909,0.944,0.853,0.969,1.135,1.193,0.899,1.107,1.023,1.011,1.074,1.046,1.126,1.048,0.832,0.875,1.018,1.335,1.376,0.88,1.105,1.014,0.98,0.991,1.107,1.214,0.878,1.001,1.042,0.987,1.003,0.81,0.942,0.956,1.09,1.02,0.838,0.914,0.932,1.119 +NM_020898,1.016,0.998,1.201,0.941,1.011,1.0,1.033,0.832,0.909,0.873,0.796,0.963,0.978,0.946,1.185,1.009,1.126,0.907,1.126,1.032,1.02,0.984,0.784,0.934,0.958,1.106,1.203,1.015,1.012,1.0,1.15,1.251,1.354,1.107,1.383,1.019,0.83,0.929,1.047,0.896,0.956,1.146,0.888,1.204,1.048,0.925,0.956,1.041,0.795,1.121,0.781,0.932,1.143,0.962 +NM_020899,0.965,1.075,1.497,0.615,1.462,0.847,0.621,0.654,1.489,0.941,0.699,1.054,0.871,0.871,0.982,0.895,0.785,1.081,1.527,0.926,0.986,1.267,1.002,0.909,0.863,1.585,1.121,1.559,0.418,1.451,1.347,1.996,1.855,1.497,0.5,0.452,0.697,1.544,0.767,0.696,1.516,1.541,0.466,0.737,1.028,0.599,0.953,1.257,0.353,0.957,0.76,0.836,1.536,1.173 +NM_020904,1.023,1.002,0.989,0.8,0.894,0.955,0.85,0.821,0.912,1.05,1.249,0.948,0.92,0.764,0.798,0.987,0.928,0.854,0.865,0.835,1.138,1.004,1.268,1.14,0.871,1.032,1.096,0.9,0.718,1.05,0.857,2.413,2.263,1.287,0.658,0.813,0.905,1.154,1.273,1.889,1.045,1.096,1.05,1.866,1.057,0.787,1.044,0.982,0.87,0.979,1.022,1.494,1.278,1.304 +NM_020905,0.694,1.089,0.931,0.956,0.817,1.076,0.856,0.584,0.978,0.842,1.028,0.552,0.686,0.642,0.891,1.438,0.695,1.002,0.928,1.207,0.724,0.557,1.405,0.737,0.855,0.711,1.012,0.835,0.54,1.334,0.856,1.242,2.131,1.588,0.564,0.94,1.208,0.785,1.101,0.939,1.044,1.236,0.869,1.383,0.936,1.356,0.986,0.706,0.97,0.724,0.998,0.746,0.934,1.46 +NM_020909,1.195,1.097,0.896,1.124,1.134,1.007,0.93,1.015,0.91,0.939,0.955,0.782,0.985,0.897,0.854,0.975,0.918,1.017,0.942,1.106,1.087,1.108,1.047,1.05,1.128,1.018,0.932,0.94,1.175,0.921,0.938,1.075,0.996,1.032,0.92,0.965,1.098,0.955,0.967,0.928,1.084,1.117,1.012,0.98,1.073,0.792,0.984,1.03,0.928,1.021,1.169,1.083,0.902,1.191 +NM_020918,1.031,1.059,0.997,0.855,1.076,1.155,0.902,0.909,0.946,1.0,1.105,1.038,1.05,0.912,0.819,0.856,1.014,0.87,0.9,0.959,0.794,1.025,0.9,1.029,0.848,1.024,1.057,0.955,1.031,0.972,0.947,1.14,0.844,1.168,1.001,1.054,1.0,1.058,1.071,0.908,0.969,1.119,0.979,0.971,1.048,0.99,1.086,1.136,0.946,1.02,0.922,1.02,0.948,1.104 +NM_020919,0.534,1.244,0.947,0.761,0.776,1.29,0.848,0.504,1.006,0.686,1.096,0.662,0.561,0.637,1.027,1.459,0.718,0.822,0.872,1.417,0.641,0.726,1.252,0.832,0.706,0.651,1.001,0.647,0.642,1.387,0.719,1.569,1.569,1.252,0.476,1.115,1.051,0.737,0.902,0.988,0.767,1.076,1.014,1.155,0.778,1.131,0.823,0.645,0.911,0.653,1.104,0.8,0.897,3.623 +NM_020921,0.893,1.014,1.306,0.729,1.057,0.927,0.868,0.993,1.285,0.988,0.904,1.114,0.866,0.974,1.126,0.921,1.026,0.955,1.022,0.945,0.866,1.0,0.994,1.329,1.075,0.984,1.704,1.179,0.559,0.966,1.304,1.326,1.338,1.136,0.746,0.937,0.975,1.213,0.916,1.385,1.29,0.988,0.785,0.768,1.144,0.82,0.905,0.845,0.672,0.929,0.957,1.022,0.879,2.262 +NM_020922,0.992,1.03,1.066,1.099,1.15,0.948,1.07,1.018,0.874,0.955,1.12,1.035,1.083,0.902,0.915,0.908,1.106,0.865,0.881,0.9,1.008,1.035,0.971,0.898,0.947,0.973,1.011,1.013,0.844,1.023,1.001,1.12,0.831,0.968,0.933,1.006,0.866,0.945,0.943,1.013,0.934,1.019,0.964,1.081,0.958,1.017,0.967,1.035,1.003,1.097,1.01,0.937,1.055,0.894 +NM_020924,0.998,0.926,0.92,1.091,0.998,1.031,1.035,0.917,0.962,1.025,0.893,1.173,0.895,1.228,0.895,0.919,1.071,0.964,0.896,0.966,1.029,1.043,0.843,1.189,0.962,1.022,0.828,1.156,0.672,0.885,1.048,1.003,1.122,1.065,1.013,1.055,1.009,1.058,0.798,0.974,0.979,0.966,0.858,1.105,1.042,0.95,0.935,0.914,1.004,1.135,0.888,0.948,1.112,1.022 +NM_020925,0.942,1.071,1.161,1.052,0.849,0.963,1.002,0.983,1.004,0.81,0.905,0.998,1.059,1.15,1.138,0.882,0.969,0.876,0.923,0.933,0.836,0.814,0.986,0.918,1.144,0.987,1.219,1.065,0.938,1.124,1.09,1.239,1.176,1.042,1.022,0.856,0.925,1.109,0.963,0.92,0.923,1.097,1.018,1.092,1.019,0.896,0.965,1.029,1.014,1.168,0.879,0.959,1.03,1.028 +NM_020926,1.861,2.222,1.701,1.946,1.8769999999999998,2.256,2.049,1.962,2.1559999999999997,1.88,2.043,1.9860000000000002,1.9369999999999998,1.7389999999999999,1.8679999999999999,1.992,2.004,2.073,2.067,2.189,1.853,1.8639999999999999,1.9489999999999998,2.0060000000000002,2.124,1.8849999999999998,1.938,2.106,2.063,2.107,1.958,2.128,2.391,2.009,2.019,2.277,2.053,2.089,2.104,2.209,2.008,2.072,1.935,2.0789999999999997,1.875,1.941,1.935,1.751,2.1029999999999998,2.0,1.9140000000000001,2.213,1.762,1.934 +NM_020927,1.091,0.976,0.889,0.954,1.064,0.891,0.97,0.829,0.933,1.044,1.06,0.969,0.847,0.844,1.032,0.943,1.003,0.866,0.898,1.036,0.748,0.926,1.139,1.015,0.829,1.156,0.885,1.056,1.421,1.265,0.885,1.164,0.936,1.07,0.949,0.978,0.917,0.959,1.31,1.096,1.04,1.065,0.921,0.934,1.044,0.998,0.964,1.025,0.975,1.077,0.942,0.933,0.973,1.013 +NM_020932,0.917,0.907,1.018,0.921,1.062,0.925,0.944,1.043,1.022,1.093,1.027,1.027,1.058,1.074,1.01,0.912,0.937,0.972,1.014,0.975,1.038,0.879,1.0,0.945,0.871,0.992,0.95,0.972,0.852,1.064,0.914,1.011,1.043,1.115,0.997,0.93,1.0,1.11,0.984,1.121,1.045,0.96,0.985,0.968,1.028,0.836,1.036,1.041,1.047,0.935,1.021,0.913,0.991,0.901 +NM_020935,0.874,1.021,1.064,0.711,0.94,0.938,0.846,0.886,1.052,0.925,0.922,1.056,1.027,0.949,1.0,1.07,0.876,0.977,1.053,0.971,0.875,0.936,1.16,1.069,0.858,1.012,1.136,1.114,0.823,1.007,0.94,1.09,1.706,1.234,0.847,0.946,0.945,1.002,1.199,1.209,0.852,1.02,0.849,1.208,1.162,0.92,0.943,0.932,0.957,0.909,0.945,1.0,0.914,2.032 +NM_020936,1.037,0.899,1.084,1.03,1.111,0.916,0.805,0.74,1.304,1.052,0.864,0.929,0.854,0.822,0.984,1.052,0.935,0.831,1.196,0.916,0.838,0.901,1.297,1.115,0.831,1.091,1.178,0.896,0.831,0.783,0.859,1.426,1.665,1.014,0.603,1.222,0.766,0.822,1.634,1.041,0.942,1.11,0.807,1.203,1.037,0.931,0.932,0.892,0.893,0.809,0.966,1.059,1.036,2.556 +NM_020939,1.019,0.879,1.071,1.061,0.942,1.013,1.035,1.005,0.977,0.742,1.047,0.948,1.107,1.207,1.12,1.06,0.964,1.007,0.977,1.115,0.869,0.861,0.955,1.025,1.082,0.986,0.997,0.995,1.016,1.194,1.049,0.939,0.914,1.156,0.905,1.072,0.998,0.828,1.107,0.911,0.985,1.033,1.201,0.991,0.856,0.901,0.791,0.999,0.96,1.041,1.079,1.123,1.116,1.159 +NM_020944,0.882,0.763,0.841,1.245,0.818,1.478,0.756,0.691,1.095,0.817,1.266,0.793,0.815,0.865,1.36,2.027,0.941,1.041,0.907,1.249,0.835,0.826,1.223,0.808,0.772,0.799,1.027,0.709,0.811,1.098,0.915,1.196,1.342,1.383,0.803,0.87,0.978,0.639,1.366,0.88,0.796,1.465,0.92,1.487,0.863,1.058,0.754,0.783,1.313,0.848,1.111,0.846,0.898,1.892 +NM_020947,1.103,1.146,1.036,1.137,1.162,0.934,0.945,1.0,0.927,0.943,1.05,0.848,1.028,0.958,0.92,0.901,0.973,0.986,1.018,0.894,0.98,0.898,0.961,0.88,0.957,0.852,0.973,0.958,1.0,0.895,0.983,0.856,0.937,1.079,0.895,1.053,0.993,1.066,0.983,1.065,1.223,0.937,0.783,1.144,1.12,0.925,1.041,1.046,1.084,1.015,1.039,0.979,0.925,0.802 +NM_020948,0.705,1.396,0.968,0.826,0.79,1.801,0.959,0.6,0.852,0.711,1.666,0.914,0.598,0.691,0.991,1.526,0.687,1.113,0.866,1.738,0.601,0.779,1.161,0.902,0.87,0.628,1.031,0.818,0.848,1.613,0.756,1.666,1.255,1.68,0.432,0.671,1.46,0.688,1.251,0.829,0.926,1.507,1.019,0.766,0.684,1.495,0.743,0.633,1.014,0.712,1.208,0.846,0.829,1.43 +NM_020951,0.864,1.375,1.22,0.796,1.061,0.969,1.023,0.816,1.067,1.011,1.143,0.936,0.991,0.943,0.904,1.395,0.894,0.898,0.93,1.148,0.805,0.985,1.318,1.054,0.866,0.801,1.098,1.021,0.69,1.274,0.968,1.62,2.286,1.368,0.609,1.18,1.02,0.931,1.142,0.9,0.951,1.388,0.781,0.968,1.004,0.914,0.977,0.906,0.804,0.755,1.045,0.893,0.829,0.778 +NM_020956,1.031,0.954,0.972,0.904,1.003,1.015,1.204,1.116,1.071,1.018,0.888,0.922,1.045,1.017,1.171,1.068,0.904,1.172,0.919,1.064,1.07,1.044,0.915,1.024,0.878,0.975,0.848,1.065,1.104,0.902,0.931,0.99,1.123,0.984,1.19,0.906,1.018,1.076,0.943,0.936,0.938,0.993,1.163,0.912,0.895,0.879,1.013,1.014,1.1,1.039,0.877,0.998,1.027,0.931 +NM_020958,1.971,1.965,1.945,1.867,1.823,2.049,1.928,2.3689999999999998,1.8690000000000002,1.98,2.0,2.092,1.841,2.1710000000000003,1.927,1.942,1.85,2.0540000000000003,1.916,2.121,2.106,2.1870000000000003,1.792,1.98,2.092,1.977,2.073,2.1340000000000003,1.754,2.157,2.1980000000000004,2.0060000000000002,1.9649999999999999,1.874,1.7650000000000001,2.194,1.959,2.061,2.154,1.999,2.2729999999999997,1.911,2.1559999999999997,1.8570000000000002,2.048,1.8399999999999999,2.04,1.967,2.059,1.821,2.064,2.1390000000000002,2.0,1.819 +NM_020960,0.83,1.079,0.937,1.033,0.863,1.01,0.81,0.914,0.889,0.965,0.886,1.081,0.954,0.883,1.037,1.079,1.008,1.068,1.163,1.025,1.08,1.063,1.041,0.936,0.885,0.899,1.04,1.129,0.703,1.007,1.052,1.077,1.074,0.989,1.048,1.01,1.031,0.985,0.951,1.053,0.988,0.961,0.919,0.93,1.062,1.062,0.898,0.752,1.18,0.917,1.084,1.088,1.117,0.993 +NM_020962,1.066,1.283,1.01,1.055,1.091,0.989,1.076,0.917,0.945,0.983,1.019,0.853,0.893,0.841,1.003,1.069,0.992,1.02,0.908,1.111,0.992,0.855,0.944,0.892,1.042,0.931,0.887,0.857,1.025,1.072,0.987,1.379,1.093,1.101,1.089,0.944,0.979,0.934,1.075,1.054,1.04,0.967,1.047,1.099,0.962,1.0,0.961,0.944,0.927,0.955,1.061,0.938,0.917,1.311 +NM_020963,0.956,0.926,0.975,0.861,0.852,1.152,0.768,0.633,0.986,0.965,0.85,0.831,0.748,0.702,0.877,0.959,1.048,1.034,0.887,0.969,0.819,1.132,0.956,0.997,0.915,1.232,1.286,0.718,0.775,1.063,0.8,1.229,1.202,1.091,0.56,0.682,1.109,0.939,1.493,1.021,0.948,1.123,0.73,1.246,0.917,0.864,0.877,1.119,1.209,0.989,0.888,0.856,1.043,1.286 +NM_020965,0.942,0.897,0.892,1.067,1.048,0.897,1.046,1.019,1.052,0.911,1.027,1.106,1.01,1.087,0.889,0.959,1.06,0.925,0.941,0.824,1.248,0.948,0.983,1.086,0.951,1.005,1.036,1.13,1.488,1.02,0.933,1.192,1.09,0.959,1.207,1.166,0.985,0.984,1.001,0.917,1.176,0.975,1.112,0.944,1.104,1.155,0.955,0.994,0.876,1.046,0.977,1.152,1.157,0.872 +NM_020967,1.001,0.857,1.206,0.927,1.072,0.807,0.858,0.859,1.043,1.128,0.834,0.969,0.875,0.722,1.027,0.937,1.048,0.904,1.201,0.906,0.97,0.777,1.159,0.939,0.987,1.046,1.06,0.894,0.779,0.869,0.901,1.035,1.293,1.004,0.836,1.195,1.063,0.92,1.011,1.12,0.99,0.919,0.935,1.247,1.097,0.894,1.273,0.814,0.964,1.116,1.011,0.994,1.303,1.246 +NM_020971,1.049,1.004,1.055,0.973,1.038,1.018,0.809,1.202,0.856,0.936,1.286,1.113,0.812,0.939,1.047,1.06,1.124,0.892,0.918,0.889,1.072,0.931,1.0,0.968,1.064,0.953,0.999,0.996,0.955,1.059,0.994,1.047,1.019,0.974,1.051,1.028,1.069,0.915,1.042,0.967,0.947,0.983,0.991,0.917,0.932,0.95,1.027,0.951,0.93,1.066,0.961,1.058,1.013,1.023 +NM_020973,0.862,1.001,0.966,0.983,0.958,1.008,1.196,0.96,0.946,0.978,1.261,0.935,1.007,0.917,1.726,5.415,0.827,0.841,0.911,1.172,0.972,0.967,1.12,0.96,0.822,1.002,0.834,0.844,1.8,1.072,1.011,0.948,0.937,0.98,0.915,0.929,5.102,0.981,0.955,0.846,1.041,1.926,2.681,1.019,0.997,1.101,3.559,0.887,1.166,0.886,1.181,0.854,0.915,1.052 +NM_020974,1.137,1.032,1.018,0.973,1.082,0.961,0.985,1.0,1.245,1.097,0.914,0.962,1.0,1.129,0.804,0.869,1.104,1.0,0.995,1.094,0.912,0.988,1.117,0.91,1.087,1.108,1.67,0.97,0.823,1.246,0.978,1.343,1.011,1.148,0.948,0.968,0.968,0.856,0.96,1.033,1.038,1.077,0.983,0.979,1.064,1.068,0.963,0.982,1.004,1.025,0.898,0.779,1.103,0.981 +NM_020977,1.028,0.956,0.976,1.004,0.964,0.86,0.975,0.922,1.027,1.118,1.146,1.065,1.059,1.021,1.022,0.991,1.003,1.041,0.967,0.787,0.996,0.972,0.965,0.979,1.001,1.065,0.944,0.98,1.098,1.108,1.054,0.977,1.029,1.094,1.13,1.189,0.995,0.946,0.956,0.958,0.879,0.98,1.239,0.94,1.034,1.16,1.21,0.954,0.955,0.939,0.976,1.073,1.005,1.036 +NM_020978,1.074,1.099,1.134,1.194,0.851,0.861,0.982,0.896,0.949,0.99,1.045,0.938,1.073,0.987,0.901,1.053,1.084,1.058,0.958,0.936,0.824,0.898,1.028,1.045,1.062,1.066,0.985,0.976,1.192,1.048,1.128,1.057,0.992,0.98,0.913,0.993,0.933,1.042,1.03,0.919,1.043,1.002,1.109,0.977,0.943,0.991,1.03,1.037,1.076,0.973,0.986,1.031,0.974,0.961 +NM_020979,1.021,0.916,0.885,1.066,0.901,1.058,0.847,0.972,1.019,1.044,1.087,1.004,1.07,1.163,1.104,0.92,0.965,1.061,0.979,0.979,0.976,1.013,0.946,1.119,1.022,0.958,0.927,0.828,0.891,0.866,0.967,1.137,0.938,1.037,0.972,0.917,0.961,0.778,1.066,1.0,1.006,0.887,0.938,1.2,0.95,0.927,0.96,1.036,1.061,1.056,0.995,1.205,0.986,0.927 +NM_020980,0.967,1.094,0.837,2.192,0.801,0.965,0.924,0.934,1.022,1.096,0.977,0.9,0.896,0.792,0.953,0.841,0.866,0.897,0.795,1.005,0.89,0.795,1.07,1.024,0.889,0.961,1.046,1.03,0.927,0.975,0.983,1.569,1.2,1.084,0.828,1.063,0.904,0.839,3.294,12.2,0.929,1.496,1.066,1.231,1.182,0.822,1.146,1.081,1.132,1.066,1.052,3.861,0.918,1.599 +NM_020981,0.97,1.037,1.001,0.96,0.934,0.948,1.223,1.263,1.148,1.001,0.954,1.18,0.966,0.885,1.102,0.923,0.996,1.078,0.816,0.983,1.06,0.812,0.993,0.921,0.953,1.008,0.997,0.916,0.912,1.103,1.097,0.96,1.055,1.128,0.999,0.999,0.912,1.036,0.872,1.074,0.899,1.071,0.984,0.956,0.997,0.934,1.152,1.052,1.043,1.053,1.052,0.906,0.95,1.084 +NM_020982,0.979,0.939,0.883,1.014,0.973,0.928,0.987,1.068,1.013,0.919,0.999,1.082,0.968,1.102,0.933,1.034,1.052,0.926,1.127,0.91,1.033,1.076,0.869,0.983,1.116,1.034,1.162,1.148,0.658,0.954,1.113,1.047,0.966,0.966,1.122,0.93,1.075,1.103,0.992,1.06,0.945,0.922,0.784,0.935,1.032,1.074,0.982,0.981,0.886,0.929,0.993,0.929,1.167,1.058 +NM_020983,0.847,1.217,0.897,1.123,0.708,1.11,0.876,0.654,0.885,0.726,1.124,0.698,0.735,0.691,1.533,1.459,0.807,1.059,0.842,1.256,0.619,0.797,1.27,0.728,0.922,0.964,0.728,0.748,0.915,1.106,0.828,1.687,1.284,1.464,0.826,0.939,1.182,0.686,1.624,0.988,0.665,1.195,1.085,1.29,0.767,1.159,0.877,0.728,0.903,0.961,1.022,0.911,0.861,1.167 +NM_020984,1.036,0.998,1.025,0.921,1.061,1.06,0.981,1.019,0.92,1.077,1.031,1.054,0.981,0.935,1.051,1.114,0.914,0.917,0.937,0.964,1.007,1.117,0.991,1.023,1.025,0.955,1.011,1.113,0.916,1.082,1.037,0.944,1.004,0.978,1.012,0.949,1.045,0.878,0.958,0.997,1.067,0.981,0.884,0.998,1.066,0.923,0.96,0.965,1.028,0.984,0.889,1.077,0.989,1.125 +NM_020986,1.072,0.929,0.931,1.074,0.874,0.952,0.932,1.045,1.2,1.001,0.874,0.937,0.98,0.89,1.031,0.864,0.976,1.078,0.958,0.821,0.99,1.147,1.0,0.858,1.081,0.972,1.063,1.01,0.807,1.001,0.994,0.941,0.97,0.803,1.096,1.066,0.967,0.885,1.071,0.934,1.189,1.053,0.895,1.0,0.933,1.086,1.007,1.077,1.055,0.993,0.924,0.869,0.907,0.835 +NM_020987,0.918,0.928,1.108,0.937,1.165,1.066,0.981,0.84,1.04,1.001,1.057,1.158,0.987,0.948,1.204,1.051,1.006,0.96,1.017,1.037,0.999,0.949,1.048,0.914,1.026,1.092,0.986,1.06,0.928,0.934,0.963,0.931,0.993,0.934,0.923,0.964,1.06,1.02,0.948,0.999,1.027,0.9,1.193,0.93,1.027,1.037,0.861,0.978,1.008,1.002,0.999,0.954,1.151,1.067 +NM_020989,1.056,0.848,1.002,0.929,0.942,1.028,0.753,1.105,0.97,0.95,1.09,0.844,0.937,0.985,0.792,0.938,0.994,1.076,1.065,0.955,1.095,1.1,0.99,1.079,1.051,1.151,0.979,0.996,0.729,1.117,0.993,1.082,1.021,0.913,1.078,1.111,1.042,1.008,0.999,1.048,0.921,0.994,1.08,1.132,1.018,0.977,0.902,1.098,1.127,1.05,0.972,1.093,0.947,0.986 +NM_020990,1.225,0.617,1.157,1.336,1.022,1.443,0.719,0.417,0.928,1.025,1.397,0.755,0.791,0.489,0.899,2.331,0.865,1.425,1.199,1.066,0.382,1.064,2.316,0.832,0.868,1.539,1.269,0.517,0.788,0.92,0.743,0.275,0.637,1.427,0.0991,1.215,1.691,1.005,2.144,0.289,1.067,1.203,1.107,0.928,1.349,1.431,0.804,1.18,1.823,1.386,1.788,0.697,0.972,0.861 +NM_020992,0.521,1.019,1.419,0.671,0.935,1.42,0.345,0.556,0.631,0.813,1.292,0.644,0.425,0.494,1.112,2.056,0.985,0.603,0.836,1.896,0.469,0.437,1.592,0.93,0.372,0.852,1.101,0.57,0.218,1.083,0.756,1.08,2.3,1.231,0.627,1.021,1.192,1.211,1.467,0.616,0.862,1.396,0.841,1.038,0.838,1.365,0.913,0.708,1.243,0.698,1.844,0.79,1.164,1.784 +NM_020993,1.014,0.954,1.055,0.955,0.997,0.935,0.985,0.94,0.971,0.994,1.021,0.984,1.01,0.817,0.95,0.813,1.0,0.992,0.965,1.022,0.975,0.944,1.172,0.993,1.008,0.931,1.058,0.986,0.787,1.023,0.964,1.255,1.076,1.05,0.968,1.021,0.96,1.069,0.99,1.0,0.927,1.204,0.913,1.17,0.962,0.976,1.075,0.993,0.919,1.124,0.972,0.907,0.867,1.291 +NM_020994,1.029,0.952,1.239,0.934,0.884,0.944,0.906,1.194,0.896,0.853,1.072,0.985,1.06,0.949,0.813,1.205,1.007,0.934,1.103,1.228,0.921,0.981,0.851,1.024,1.028,0.94,1.01,0.98,1.071,1.045,0.936,0.923,1.13,0.988,1.034,1.119,0.903,0.998,1.078,0.863,0.779,1.066,0.941,0.885,1.062,0.928,0.982,1.0,1.074,0.9,0.941,1.018,0.994,0.984 +NM_020995,0.954,0.96,0.966,1.034,1.158,0.939,0.993,0.994,0.981,0.948,0.947,1.064,1.05,0.981,1.122,1.046,1.042,1.113,0.913,1.075,0.877,0.919,1.113,1.112,0.921,1.044,1.107,1.027,1.022,1.113,1.009,0.867,1.09,0.934,1.052,1.048,1.028,1.127,1.005,0.909,0.928,0.967,1.0,0.992,0.92,1.008,0.961,0.939,1.064,0.962,0.983,0.98,0.832,1.002 +NM_020996,1.105,1.026,0.933,1.037,0.972,1.081,0.95,0.936,0.886,1.005,1.096,1.159,1.027,0.86,1.03,0.921,1.098,0.917,0.982,0.956,1.154,0.963,1.003,1.01,1.008,0.983,0.832,0.994,0.764,0.993,0.863,0.937,1.049,0.905,0.832,0.906,1.057,1.016,1.074,1.05,0.755,0.842,1.231,0.842,0.989,1.099,0.878,0.995,1.107,0.974,0.961,1.004,0.982,0.971 +NM_020997,0.973,5.604,0.816,1.494,0.8,3.407,0.811,0.831,0.912,0.845,34.32,0.879,0.855,0.817,7.716,16.86,0.824,1.099,0.806,39.98,0.783,0.818,95.88,0.813,1.04,0.838,0.727,0.826,0.812,0.834,0.909,1.249,0.956,2.134,0.767,4.193,3.022,0.908,13.44,0.976,0.847,4.722,16.18,0.964,0.851,36.68,1.066,0.928,6.091,0.808,40.09,1.076,0.938,146.3 +NM_020998,0.842,1.054,1.016,1.036,0.962,1.332,0.805,0.738,1.223,1.06,1.525,0.902,0.755,0.915,1.279,2.214,0.937,1.068,0.752,1.325,0.758,1.057,0.935,1.11,0.795,0.922,1.01,0.895,0.77,1.733,0.932,1.614,0.884,0.964,0.874,1.238,2.762,0.921,1.027,2.193,1.092,1.157,1.224,0.731,0.914,4.327,1.325,0.796,2.355,0.84,1.423,1.125,0.797,1.879 +NM_021000,0.929,0.939,2.317,0.79,1.121,1.207,0.871,1.199,1.51,1.244,0.657,1.456,1.383,0.532,1.731,1.626,1.567,1.103,0.916,0.963,0.598,0.997,1.513,1.508,0.807,0.564,2.756,1.196,0.92,0.925,1.359,1.502,10.41,0.816,0.511,0.666,0.869,1.518,1.612,1.202,1.335,0.656,0.701,0.7,1.222,0.85,1.246,0.878,1.391,1.261,1.189,0.701,0.716,2.861 +NM_021002,1.093,1.009,1.022,0.869,1.1,0.96,0.886,1.126,0.899,1.049,0.899,1.135,0.896,0.888,0.853,1.051,0.833,0.912,0.848,0.92,1.095,1.029,1.015,1.098,1.058,0.989,1.163,1.023,0.896,1.121,0.917,1.099,1.102,0.939,1.009,1.038,1.027,0.919,0.976,0.942,0.975,1.036,0.907,1.036,0.997,0.992,1.019,1.003,0.935,0.978,1.081,0.974,1.054,0.99 +NM_021004,1.197,0.907,1.019,0.801,1.171,1.312,0.467,0.864,1.219,1.592,1.265,1.478,1.648,0.7,0.787,1.481,0.933,1.285,1.675,0.901,0.729,1.841,0.879,1.218,0.857,1.67,1.089,0.981,0.585,1.063,0.963,0.711,0.92,1.342,0.234,0.279,1.097,1.285,1.209,0.44,1.231,1.526,0.669,0.938,1.053,1.074,1.22,1.682,1.022,1.15,0.915,0.518,0.84,0.645 +NM_021005,0.409,2.424,0.547,0.775,0.496,1.736,2.035,0.417,0.435,0.506,1.251,0.486,0.486,0.428,0.904,1.547,0.488,1.386,0.459,2.096,0.477,0.492,2.242,0.584,2.001,0.489,0.626,0.717,1.464,1.845,0.476,4.0,1.62,3.353,0.433,0.669,1.574,0.704,2.127,1.174,0.835,2.445,0.536,0.876,0.551,1.316,0.865,0.404,1.006,0.527,1.519,1.47,0.39,1.31 +NM_021006,0.804,1.1,0.853,1.066,0.984,0.989,0.876,0.911,0.886,0.848,0.906,1.034,0.926,0.72,1.062,0.952,0.834,0.878,1.048,1.025,0.941,0.994,1.211,0.92,0.948,0.972,1.023,0.841,0.676,0.963,0.933,3.229,3.031,0.985,0.976,0.813,1.052,0.921,3.075,29.68,0.793,1.489,1.056,1.324,1.123,0.943,1.315,0.866,0.969,0.888,1.01,3.235,0.778,2.113 +NM_021007,0.908,0.92,0.939,0.934,1.008,0.951,1.084,0.857,1.313,0.945,1.013,1.025,0.997,0.81,1.227,1.013,0.919,0.855,0.957,1.054,1.187,0.823,0.891,0.963,1.016,0.958,0.984,0.872,1.016,1.151,0.943,1.027,0.977,1.098,1.0,1.448,0.79,1.086,1.023,0.978,0.932,1.278,1.202,0.897,1.009,1.267,0.886,0.882,0.984,0.942,1.01,1.013,1.258,0.902 +NM_021008,1.154,0.899,1.085,0.974,1.35,1.163,0.614,0.995,1.171,1.116,0.878,1.079,1.282,0.875,1.058,1.216,0.959,0.892,1.271,0.941,0.85,1.413,0.916,1.155,1.235,1.526,1.119,0.975,0.595,1.106,1.15,1.284,1.068,1.232,0.987,0.904,0.717,1.286,0.921,1.149,0.998,0.938,0.846,1.032,1.127,0.843,0.904,1.285,0.735,1.162,0.987,0.8,0.988,1.052 +NM_021010,0.883,3.761,1.033,7.639,1.004,1.012,0.911,0.782,0.992,0.997,4.713,0.957,0.995,0.904,6.591,20.32,1.005,1.057,0.962,8.316,1.043,0.978,0.996,0.977,0.934,1.048,0.98,1.031,1.452,4.202,0.912,0.893,1.286,1.012,0.807,0.878,17.97,1.042,0.874,0.928,0.896,1.163,13.83,0.892,0.956,1.577,13.86,0.95,211.5,0.918,18.27,0.91,1.028,1.081 +NM_021012,0.988,1.073,0.884,0.983,1.027,0.957,1.108,0.983,1.155,1.137,0.985,1.027,0.861,0.706,1.033,0.986,0.997,1.052,1.037,0.901,1.035,0.927,0.99,0.998,0.993,1.079,0.975,1.049,0.621,1.077,0.892,1.133,0.958,0.953,1.029,0.955,1.043,1.064,1.04,1.044,1.087,0.939,0.804,1.024,1.008,0.916,1.084,1.064,1.069,0.902,0.956,1.009,0.849,0.962 +NM_021013,0.87,0.951,1.198,0.93,1.269,0.95,0.922,1.183,0.94,1.025,1.022,1.018,0.982,1.234,1.053,0.907,1.097,1.059,1.068,0.967,1.053,1.109,0.817,1.091,1.032,0.955,1.126,0.954,1.06,0.967,1.104,0.806,0.874,0.859,1.001,0.868,1.088,1.094,0.922,0.893,1.067,0.877,0.879,0.879,0.965,1.064,1.076,0.904,0.992,1.003,0.971,0.917,1.074,0.918 +NM_021014,1.128,0.915,1.02,0.949,1.025,1.029,0.86,1.035,0.93,1.0,0.947,1.155,1.236,1.037,1.224,1.111,1.027,1.009,1.022,1.163,0.987,1.042,0.959,0.871,1.14,0.952,0.944,1.007,0.812,1.187,1.221,1.02,1.028,0.842,1.0,0.902,0.98,0.787,5.443,1.024,1.035,1.067,0.994,0.987,0.848,0.882,1.098,0.993,0.954,1.031,0.974,0.934,0.97,0.912 +NM_021015,1.059,1.054,1.077,1.026,1.157,1.181,1.303,0.989,1.225,0.896,1.081,1.001,0.9,0.908,1.112,1.102,0.911,0.955,0.92,0.901,1.095,0.777,1.19,0.951,1.233,0.946,1.026,1.014,2.117,0.963,0.962,0.985,1.142,1.064,1.117,0.947,1.11,0.928,0.997,1.092,1.031,0.878,1.152,1.023,0.974,1.022,0.824,1.188,1.137,0.962,1.104,1.074,1.181,0.851 +NM_021016,0.929,1.014,1.062,1.143,0.995,0.985,1.079,1.063,1.13,1.015,0.98,0.864,0.915,0.903,1.267,1.073,1.067,0.995,0.934,0.94,1.152,0.876,1.001,0.972,0.963,0.962,0.971,1.199,0.978,1.065,0.964,1.035,0.959,0.862,1.034,0.935,0.983,1.062,1.003,1.056,1.059,1.097,1.202,0.995,1.043,0.98,1.068,1.231,1.004,1.154,0.998,0.958,0.946,0.786 +NM_021018,1.05,0.89,0.995,1.072,1.004,0.985,0.751,1.084,0.902,0.994,1.057,1.044,0.909,0.863,1.005,1.055,0.937,1.205,0.968,0.915,1.07,0.965,0.921,0.945,0.937,1.075,1.051,1.013,0.954,1.168,1.012,0.995,1.124,0.912,0.953,1.027,0.985,0.951,0.972,1.332,0.991,0.905,1.064,0.929,1.048,1.025,0.987,1.003,0.954,0.882,1.091,1.053,1.087,0.977 +NM_021020,1.203,0.966,1.328,0.858,1.17,0.86,0.876,1.053,1.169,1.441,0.84,1.009,1.1,1.27,1.09,1.009,0.981,0.987,1.257,0.89,1.141,1.106,0.93,1.246,0.982,1.272,1.0,1.106,0.853,0.964,1.249,1.095,1.018,0.89,0.935,0.869,0.992,1.126,0.728,1.022,1.099,0.839,1.159,0.927,1.324,0.82,0.837,1.071,0.968,1.048,0.811,0.903,1.127,1.028 +NM_021021,0.879,1.88,1.057,0.951,0.913,0.852,1.023,0.949,0.965,0.849,0.996,1.007,0.905,0.96,0.811,0.774,0.752,0.913,0.864,1.001,0.758,0.963,1.287,0.849,1.579,0.975,0.949,0.917,0.909,1.361,0.895,2.233,2.469,1.318,0.83,1.025,0.954,0.857,1.28,3.596,1.043,1.114,0.82,1.062,0.895,1.051,1.042,1.008,0.802,0.816,0.971,1.127,0.721,1.108 +NM_021023,1.132,1.015,1.026,1.135,1.119,1.01,1.004,1.153,1.081,1.076,1.236,1.04,0.849,0.993,1.084,1.092,1.058,1.045,1.0,0.981,0.945,1.037,0.934,1.006,1.137,1.004,0.953,0.904,0.944,0.96,0.976,0.998,0.894,1.045,1.03,0.951,0.98,1.04,0.991,0.965,1.012,0.973,0.946,1.048,1.018,1.053,1.074,0.9,1.083,0.952,1.007,1.055,1.0,0.872 +NM_021025,0.96,1.071,0.922,0.978,1.006,1.094,1.239,1.098,1.0,1.078,1.1,1.002,1.015,0.868,1.04,1.058,0.975,1.023,0.923,1.114,1.032,0.934,1.01,0.91,0.888,1.094,0.905,0.979,0.947,1.082,0.939,1.115,1.365,0.919,1.158,1.008,0.89,0.99,0.962,0.977,1.126,1.009,1.032,0.886,1.108,1.078,1.042,1.117,0.892,1.146,0.976,0.992,0.958,1.06 +NM_021026,0.987,1.07,0.953,0.994,1.007,0.888,0.972,1.032,1.021,0.954,1.003,1.178,0.94,1.066,1.025,1.047,0.943,0.893,0.842,1.165,1.43,0.778,0.938,0.992,0.867,0.873,1.053,0.973,1.326,1.072,0.901,0.92,1.023,0.96,1.102,1.042,0.903,0.973,1.198,0.915,1.157,1.138,0.801,0.981,1.024,1.015,0.931,0.931,1.014,1.008,0.996,0.793,1.026,0.892 +NM_021027,0.967,0.96,0.996,1.173,1.095,1.052,0.889,1.237,1.201,1.103,0.845,1.024,0.958,1.38,1.042,0.919,0.946,1.073,1.133,0.9,1.096,0.939,1.084,0.998,0.981,1.055,1.053,1.172,1.224,1.072,1.034,0.982,1.145,0.915,1.322,0.997,0.868,0.919,0.968,1.043,0.987,1.009,0.931,1.081,0.922,1.009,0.873,1.031,0.999,1.035,1.032,0.901,0.946,0.967 +NM_021029,0.565,1.151,1.357,0.434,0.957,1.138,0.478,0.698,1.261,0.963,1.005,1.024,0.761,0.597,1.069,1.565,0.829,1.005,1.41,0.902,0.656,0.918,1.3,1.425,0.363,0.721,1.318,1.058,0.224,1.042,1.17,1.357,1.822,1.2,0.187,1.079,1.01,1.261,1.037,0.535,1.11,1.159,0.428,0.691,0.977,0.686,1.136,0.85,0.949,0.736,1.077,0.809,0.71,1.316 +NM_021032,1.855,2.161,2.066,1.942,1.857,2.001,1.9569999999999999,1.779,1.866,2.04,1.806,2.01,2.024,1.994,2.048,2.126,2.1159999999999997,2.2089999999999996,1.976,1.829,2.1,2.134,1.9660000000000002,1.952,2.2,1.9409999999999998,1.923,1.893,1.9569999999999999,1.996,1.807,2.4050000000000002,2.336,2.061,2.2009999999999996,1.938,1.9249999999999998,2.15,2.377,1.941,2.175,2.0460000000000003,2.12,2.19,2.026,1.966,1.943,1.998,1.903,2.005,1.694,2.002,1.725,2.073 +NM_021033,1.287,0.641,1.908,0.571,1.715,1.002,0.557,1.352,1.752,1.408,1.045,1.671,1.45,0.939,1.363,2.074,1.171,1.409,2.245,0.867,0.657,1.072,1.19,1.764,0.438,0.981,1.553,1.555,0.289,0.913,1.603,1.21,0.923,0.742,0.859,0.69,1.038,1.384,0.923,0.52,1.612,0.944,0.462,0.841,1.777,0.957,1.112,1.327,0.933,1.319,1.015,0.838,0.982,0.705 +NM_021034,0.492,1.11,0.8,0.631,0.433,1.012,1.016,0.249,0.821,0.71,0.601,0.53,0.299,0.211,0.682,1.216,1.338,0.51,0.42,0.627,0.472,0.208,1.515,0.639,0.581,0.713,0.988,0.432,0.152,1.145,0.374,3.956,2.649,1.402,0.0722,2.22,0.839,0.452,2.334,3.949,0.638,1.337,0.806,3.89,0.956,0.673,0.762,0.488,1.747,0.987,0.92,2.618,1.302,5.64 +NM_021035,0.553,0.894,0.965,0.785,0.541,1.391,1.257,0.439,0.598,0.656,1.032,0.52,0.486,0.632,0.979,1.11,0.798,0.852,0.566,1.142,0.63,0.573,1.645,0.594,0.846,0.611,0.825,0.576,0.57,1.626,0.719,1.892,2.196,1.256,0.448,0.999,1.016,0.559,1.911,1.405,0.635,1.144,0.877,1.537,0.686,1.056,0.852,0.55,1.137,0.669,1.19,1.305,0.786,2.818 +NM_021038,0.609,0.955,1.783,0.504,0.938,1.199,1.037,0.718,1.235,1.0,0.738,1.003,0.638,0.594,1.111,1.8,0.8,1.066,0.834,1.053,0.598,0.775,1.467,0.922,0.52,0.557,1.486,1.005,0.435,1.197,1.063,1.415,1.894,1.232,0.349,0.594,1.155,0.9,1.262,0.822,1.188,1.447,0.774,0.709,1.046,0.967,0.835,0.551,1.188,0.804,1.237,0.868,0.844,1.308 +NM_021044,1.038,0.969,1.006,0.847,0.842,1.022,0.865,0.943,0.893,1.005,0.985,1.094,0.995,1.071,1.055,0.983,1.038,0.884,1.003,1.001,1.034,1.054,0.979,1.068,0.91,1.08,0.988,0.985,1.005,0.884,1.011,0.861,0.957,1.061,1.178,1.221,0.912,1.104,1.009,0.966,0.951,0.94,1.01,1.049,1.144,0.985,1.029,1.046,0.932,1.2,0.933,0.908,0.909,0.917 +NM_021045,0.876,1.136,1.111,0.889,0.978,1.072,0.896,0.936,1.019,0.812,0.927,0.949,1.163,0.873,0.915,1.124,0.936,0.937,0.878,1.255,0.881,1.071,1.037,1.202,1.031,0.915,1.317,1.09,0.838,1.085,0.97,1.669,1.426,1.165,0.795,0.863,0.996,1.077,1.007,1.111,1.06,1.061,0.771,0.933,0.978,1.05,1.062,0.979,1.09,0.936,1.075,1.095,0.772,1.029 +NM_021046,1.052,0.921,1.013,0.785,0.821,0.944,1.119,0.927,1.103,0.955,0.934,0.925,1.241,0.947,0.966,0.986,0.989,1.062,0.819,1.041,1.114,1.104,0.857,1.019,0.934,1.083,1.044,0.978,0.742,0.996,1.212,0.883,0.865,0.995,1.007,0.966,0.943,0.866,0.956,0.971,1.292,0.922,1.039,0.915,0.978,1.122,1.025,1.076,1.159,1.038,0.999,0.984,1.033,0.872 +NM_021047,0.933,1.083,1.036,0.975,0.885,0.979,0.951,1.12,0.985,0.888,0.976,0.931,0.853,0.979,0.876,1.045,0.995,0.932,0.945,1.147,1.044,1.011,1.059,0.924,0.971,0.816,1.006,0.918,0.623,1.18,0.908,1.055,1.162,1.134,0.916,0.931,1.017,0.968,0.995,0.995,0.86,1.008,0.951,0.96,1.028,0.897,0.935,0.878,0.964,0.957,0.966,0.857,0.972,1.0 +NM_021048,0.996,1.018,0.992,0.862,1.154,1.02,1.117,0.992,0.91,0.992,1.169,0.948,0.895,0.914,1.19,1.167,0.964,1.046,1.086,0.876,0.94,0.965,0.99,1.021,0.917,1.069,1.062,0.998,1.185,0.979,1.098,1.244,0.952,0.926,0.843,0.911,1.037,0.948,0.99,1.018,0.968,1.035,1.027,1.057,0.995,1.123,1.084,1.076,1.123,1.097,0.956,1.08,1.091,1.081 +NM_021049,1.015,0.94,0.882,0.991,1.001,1.08,1.013,1.028,0.974,0.982,1.068,1.077,0.985,0.987,0.864,1.036,0.971,0.953,1.1,0.926,1.151,1.05,0.902,0.952,1.114,1.04,0.918,0.973,0.82,0.986,1.104,0.981,0.845,0.977,0.997,0.956,0.994,0.937,1.092,1.079,0.908,1.036,1.119,0.914,1.118,1.184,0.987,1.084,1.026,0.976,0.974,0.994,0.939,1.149 +NM_021052,0.823,2.365,1.009,0.786,1.13,1.13,0.669,1.234,1.453,0.818,1.094,0.906,0.883,1.168,1.167,1.409,0.887,0.867,1.006,1.044,0.692,1.013,0.994,0.902,0.541,0.963,0.853,1.365,0.76,0.833,1.691,1.15,1.115,0.701,2.383,1.058,0.909,1.292,1.152,0.721,0.972,0.921,0.618,0.941,1.02,0.934,3.489,1.135,0.624,0.858,1.094,1.152,0.775,1.274 +NM_021056,0.85,0.888,1.059,1.009,1.032,1.114,0.624,0.747,1.078,0.78,0.968,0.794,0.762,0.717,1.105,1.097,0.999,1.038,1.421,1.029,0.897,1.007,1.011,0.868,0.954,1.165,1.036,0.842,0.88,1.039,0.92,1.148,1.974,1.222,0.918,0.771,0.947,1.215,1.393,0.885,0.799,1.071,0.784,1.056,1.042,0.827,0.829,1.203,0.827,0.99,0.9,0.782,1.168,0.908 +NM_021058,0.9,1.361,1.068,0.956,0.933,0.923,0.808,0.676,1.162,0.954,0.92,0.966,0.933,1.093,1.187,0.944,1.167,1.104,1.209,0.748,0.868,0.899,0.931,0.959,0.867,0.881,1.05,0.998,1.002,1.038,1.262,1.007,1.042,0.901,1.126,1.044,0.901,1.075,1.175,0.942,0.907,0.975,0.879,1.059,1.013,0.876,1.416,0.947,1.061,1.172,1.004,0.971,1.133,1.289 +NM_021059,1.005,1.008,0.866,0.922,1.014,1.013,0.938,0.937,1.099,0.827,0.914,1.025,1.019,0.991,0.928,0.998,1.0,0.975,0.908,1.052,0.945,1.058,0.933,0.992,1.012,1.073,1.005,0.991,1.085,1.045,1.132,0.98,0.958,1.13,0.974,0.957,0.987,1.081,1.069,1.14,0.773,0.965,0.977,1.051,1.069,1.05,1.003,0.894,0.97,1.017,0.943,1.062,0.956,0.903 +NM_021061,0.965,0.995,1.342,0.891,0.995,0.97,0.853,0.818,1.283,0.918,0.961,0.945,0.857,0.827,1.005,0.924,1.158,0.974,1.071,0.993,0.799,0.977,1.08,1.051,0.867,1.193,1.196,1.137,0.676,0.985,1.126,1.288,1.022,0.98,0.92,0.871,0.93,1.168,1.057,1.169,1.015,0.976,0.783,0.922,1.093,0.947,0.883,0.938,0.91,1.04,0.894,0.804,0.946,1.13 +NM_021062,0.945,1.018,1.299,1.128,0.978,1.075,1.025,1.036,0.87,0.893,1.06,0.929,1.019,0.957,0.887,0.935,0.999,1.031,0.988,1.093,0.965,0.925,0.845,1.112,0.929,1.089,1.027,1.015,0.999,0.997,0.953,1.203,1.027,0.982,0.98,0.899,1.052,1.067,1.067,1.074,1.015,0.949,1.109,1.044,0.979,0.929,1.132,0.865,1.037,0.939,0.954,0.85,0.857,0.973 +NM_021063,1.5699999999999998,3.363,2.218,1.854,2.043,2.046,1.6139999999999999,1.571,2.274,1.8639999999999999,2.597,1.482,1.468,2.043,1.9,2.635,2.097,1.6480000000000001,1.7730000000000001,2.379,1.5939999999999999,1.468,1.951,1.843,1.473,1.6509999999999998,1.932,1.726,1.148,2.0140000000000002,2.2800000000000002,2.261,2.295,2.6719999999999997,2.072,2.207,2.024,1.513,1.963,1.449,1.95,2.053,1.698,2.429,1.5030000000000001,2.1109999999999998,2.299,1.665,1.577,1.7009999999999998,2.411,1.734,1.552,2.525 +NM_021064,0.898,1.042,1.026,1.152,0.974,1.081,0.881,0.991,1.198,0.978,1.121,0.831,1.065,0.943,0.987,0.878,1.119,0.988,1.151,1.055,1.149,0.954,1.182,0.938,1.073,1.122,0.828,1.124,0.897,1.23,0.995,0.875,1.057,1.017,1.212,0.913,0.977,1.011,1.122,1.125,0.959,0.959,0.873,1.04,1.209,1.115,0.861,0.925,1.027,1.165,0.939,0.986,1.129,1.255 +NM_021065,1.036,1.006,1.054,1.002,1.315,0.818,0.949,0.83,1.711,0.907,1.032,0.913,1.017,1.12,1.782,1.124,1.346,1.09,1.193,0.861,0.895,0.979,0.961,1.148,0.892,1.149,1.13,1.242,0.871,0.875,1.444,0.977,1.055,0.862,1.58,0.962,0.939,0.996,0.897,0.842,1.201,0.938,0.852,0.987,1.11,0.899,1.236,1.081,0.869,1.067,0.97,0.97,0.951,1.184 +NM_021066,1.107,0.98,0.934,0.997,0.916,1.074,1.113,1.079,1.018,0.975,1.026,1.067,0.964,1.028,0.902,0.939,0.883,0.992,0.851,1.094,1.163,0.97,0.913,1.05,1.079,0.945,1.173,0.955,1.447,1.023,1.034,1.046,0.976,0.924,1.171,0.892,1.014,1.059,0.852,0.997,0.973,0.819,1.17,0.867,0.974,0.962,1.052,1.143,0.924,1.046,1.007,0.893,1.101,0.852 +NM_021069,1.01,0.954,1.079,0.938,0.981,1.058,1.09,1.036,1.007,0.982,1.071,0.959,1.182,0.899,1.275,1.064,1.146,0.877,0.989,0.858,0.877,1.038,1.064,0.936,1.02,0.978,1.046,1.189,1.201,0.958,1.046,0.852,1.057,0.876,1.001,0.879,1.026,1.22,1.067,1.065,1.01,0.962,0.892,0.85,1.073,0.978,1.024,0.939,0.922,1.033,0.991,0.946,1.148,0.898 +NM_021070,1.095,0.877,1.107,0.868,0.878,0.614,0.77,0.654,1.058,1.134,0.626,1.207,0.852,0.905,0.856,0.685,0.93,0.719,1.034,0.872,1.192,0.892,0.867,0.902,1.152,1.43,0.708,0.885,0.807,0.958,1.13,2.976,3.372,1.462,1.018,1.009,0.747,1.178,1.861,1.426,0.798,1.187,0.571,2.349,1.185,0.579,0.944,1.006,0.597,1.189,0.734,0.868,1.265,1.502 +NM_021071,0.775,0.942,1.067,0.994,0.979,1.102,1.042,1.161,1.119,1.048,0.937,1.042,0.906,1.039,1.003,1.089,0.992,0.989,1.045,0.971,0.927,0.973,1.023,1.04,0.964,0.974,0.976,0.995,1.093,1.09,1.013,0.971,1.024,1.101,0.979,1.035,1.072,1.001,1.092,1.045,1.006,0.905,1.188,1.074,0.909,0.966,1.112,0.974,0.997,1.158,1.054,0.975,0.986,0.939 +NM_021073,0.843,1.077,0.943,1.004,0.938,1.119,1.235,0.951,0.719,0.907,1.185,0.898,0.886,0.904,1.018,1.022,0.98,0.996,0.947,0.997,0.957,0.986,1.153,0.942,1.053,0.97,1.006,0.833,1.021,1.322,1.072,0.898,0.962,1.299,0.98,0.904,1.055,0.99,1.002,1.008,1.058,1.289,0.987,0.841,0.901,0.964,1.006,0.959,1.174,0.813,1.143,0.984,1.114,1.082 +NM_021074,0.738,1.434,1.319,0.897,0.999,1.159,0.733,0.583,1.134,1.1,1.08,1.012,0.797,0.62,0.839,1.696,0.998,1.278,1.221,0.941,0.373,0.964,1.14,1.038,0.752,1.008,1.133,1.045,0.478,1.177,0.786,1.088,0.764,1.1,0.772,0.953,1.423,0.913,1.502,0.772,1.104,0.896,0.793,0.945,1.163,1.107,1.259,1.007,1.361,0.909,1.14,0.981,0.991,1.384 +NM_021075,0.859,1.051,0.985,0.918,1.042,0.816,0.621,0.642,1.115,1.306,1.13,1.055,0.871,0.66,1.021,1.401,1.281,1.057,1.736,0.728,0.628,0.765,1.484,1.359,0.894,1.302,0.513,0.931,0.43,0.867,0.66,0.813,1.831,1.008,0.24,0.834,1.227,0.801,1.189,0.856,1.067,1.18,0.795,0.979,1.42,1.141,0.851,0.835,0.544,0.863,0.986,0.636,1.145,1.48 +NM_021076,1.168,1.072,0.914,0.97,0.922,0.904,1.061,0.9,1.092,0.979,0.901,0.767,0.965,1.1,1.101,0.915,0.952,0.939,0.939,0.909,0.781,1.049,1.113,0.935,0.944,0.916,0.829,1.047,0.898,0.852,0.992,1.216,0.966,0.963,1.078,1.153,0.947,1.069,1.026,1.189,1.113,1.031,0.991,0.988,0.996,0.971,0.973,1.027,0.951,1.051,1.032,0.82,0.981,1.122 +NM_021077,1.167,0.95,1.004,0.693,0.794,1.119,0.703,0.508,0.686,1.159,0.854,0.827,0.509,0.41,0.568,1.442,1.034,0.985,1.113,0.824,1.989,0.409,1.922,0.638,0.494,1.153,1.331,0.874,0.655,1.171,0.659,0.895,1.388,1.432,0.498,5.19,0.728,1.039,1.589,2.215,1.828,0.802,0.479,3.02,0.984,1.009,1.904,0.742,1.31,1.437,0.843,0.945,1.233,1.77 +NM_021078,0.877,1.016,0.984,0.907,0.85,0.817,0.793,0.688,0.735,1.3,0.831,1.101,0.949,0.755,1.023,1.14,1.292,0.893,0.974,0.878,1.0,1.0,1.452,1.188,0.815,1.093,1.1,0.826,0.696,0.992,0.977,1.064,2.044,0.841,0.67,1.025,0.978,1.062,1.807,0.987,1.034,1.118,0.849,1.733,1.057,0.817,1.226,0.982,1.223,0.97,0.979,0.833,1.101,1.328 +NM_021079,0.898,0.952,1.225,0.777,1.02,0.873,0.608,0.533,1.06,0.843,0.728,0.786,0.715,0.751,1.01,1.14,1.003,0.907,1.393,0.807,0.722,0.903,1.107,1.049,0.848,1.115,1.304,0.857,0.525,0.975,0.939,1.79,2.593,1.121,0.409,0.793,0.935,0.9,1.49,0.773,1.103,1.133,0.691,2.056,0.954,0.701,0.913,0.893,0.906,0.864,0.952,0.855,0.845,1.686 +NM_021080,1.087,1.112,1.019,1.078,0.947,1.051,1.125,1.012,1.012,1.052,0.975,0.968,1.032,0.808,1.039,0.903,1.028,0.921,0.717,0.909,0.918,1.087,0.905,0.918,1.023,0.983,0.98,0.921,0.913,0.934,0.916,1.042,0.872,1.476,0.901,1.02,1.075,1.089,0.944,1.092,0.96,0.93,0.972,1.055,0.91,1.092,1.12,1.108,1.0,0.957,0.95,0.903,0.912,0.98 +NM_021081,0.948,1.027,0.963,0.952,0.945,0.986,0.968,0.796,1.097,1.0,0.977,1.079,0.907,0.994,1.369,1.079,1.001,1.107,1.029,1.134,0.892,1.028,0.96,1.088,0.98,0.984,0.966,0.955,1.888,1.074,1.225,1.017,1.029,1.07,1.043,1.057,0.884,1.016,1.053,0.814,0.959,0.927,1.278,0.946,0.998,1.017,0.919,1.044,1.027,1.053,1.088,1.0,1.036,1.007 +NM_021082,0.877,1.066,0.982,0.847,1.024,0.926,0.785,1.145,1.203,1.07,0.937,1.022,1.078,1.067,0.941,0.878,1.098,0.906,1.029,1.181,0.824,1.132,0.908,0.965,0.933,1.225,0.99,1.121,0.721,1.03,1.005,1.15,1.318,0.98,1.039,0.933,1.032,0.941,0.994,0.919,1.04,0.944,0.888,0.993,1.156,0.869,0.983,1.164,0.952,0.919,1.061,0.991,0.843,1.358 +NM_021083,0.714,1.595,0.705,1.004,0.863,2.848,1.24,0.677,0.739,0.7,2.108,0.793,0.723,0.786,1.093,2.49,0.68,1.359,0.832,1.311,0.685,0.807,1.563,0.677,1.311,0.767,0.775,0.771,1.236,2.791,0.795,0.601,1.261,2.355,0.517,1.48,2.36,0.632,1.41,0.573,0.728,1.414,0.859,0.898,0.807,1.732,0.982,0.677,1.626,0.721,1.317,0.827,0.691,1.32 +NM_021089,1.08,0.986,1.095,1.243,0.818,0.975,0.927,0.878,0.943,1.218,1.021,0.967,0.981,0.977,0.881,1.006,0.969,1.021,1.021,0.942,0.902,1.045,1.101,0.913,1.086,1.036,0.912,0.979,0.803,0.922,0.873,1.073,1.311,1.057,1.009,0.913,1.0,0.948,1.006,1.059,1.121,1.029,0.991,1.099,0.977,1.207,0.942,1.096,1.0,1.216,1.012,0.712,1.021,0.992 +NM_021090,1.158,1.004,1.052,1.049,1.265,1.039,0.914,1.034,1.413,1.006,0.987,0.934,1.041,0.989,0.968,1.015,1.135,0.984,1.017,0.978,1.146,1.135,0.888,1.098,0.924,1.178,0.966,1.076,0.876,0.922,1.171,0.877,0.95,0.895,1.847,0.952,0.93,1.269,1.039,0.842,1.085,0.828,0.889,0.912,1.065,0.768,1.01,1.364,0.907,1.23,0.911,0.9,0.995,0.997 +NM_021092,1.052,0.902,1.012,0.919,0.987,1.03,0.761,0.835,0.877,1.018,0.934,1.008,1.093,0.996,1.079,0.877,1.022,0.943,1.026,1.028,1.042,0.954,0.979,1.086,1.02,1.012,1.062,1.132,1.134,1.025,1.032,0.971,0.93,0.992,1.184,1.056,1.022,1.029,1.039,1.001,1.045,1.041,0.885,1.136,0.944,1.065,0.86,0.942,0.845,0.91,1.107,0.943,0.932,0.942 +NM_021093,1.1,0.998,1.112,0.968,0.904,1.122,0.999,1.115,1.014,0.85,0.885,1.105,1.009,0.987,0.942,0.983,0.949,1.15,0.965,0.906,1.201,0.952,0.994,1.088,1.013,1.054,1.149,0.932,0.813,0.963,1.115,0.985,0.937,0.914,1.006,1.143,0.971,1.056,1.036,0.95,1.098,0.927,0.938,0.918,0.881,0.998,1.001,0.961,1.19,0.965,1.208,0.87,0.839,1.008 +NM_021094,1.043,0.935,0.858,1.113,0.988,1.02,1.145,1.104,1.035,0.971,1.019,0.982,0.925,0.917,1.048,0.909,1.018,0.919,0.972,1.15,1.058,0.98,1.048,1.076,1.01,0.956,1.007,0.982,0.744,0.931,0.996,1.107,0.954,0.866,1.065,1.055,0.781,0.893,1.038,1.027,0.904,0.974,1.046,0.921,1.082,0.903,1.068,0.957,0.909,1.102,1.03,0.91,1.187,0.878 +NM_021095,0.886,1.005,0.901,0.773,0.769,0.961,0.675,0.665,0.995,1.135,0.841,1.079,0.805,0.804,0.94,1.432,0.908,0.785,1.184,0.961,0.806,0.933,1.92,1.296,0.872,0.87,1.33,0.862,0.649,0.873,0.837,0.974,7.254,0.979,0.494,1.358,1.192,0.787,1.54,2.928,0.907,1.063,0.869,1.906,1.057,0.908,1.076,0.933,1.129,0.846,1.179,0.878,1.045,2.506 +NM_021096,1.171,0.964,0.871,1.015,0.95,0.986,1.122,0.856,0.946,0.968,0.834,1.095,1.007,0.799,0.819,1.077,1.154,1.07,0.962,1.199,1.116,1.0,1.154,1.114,0.878,0.984,0.823,1.054,1.101,0.931,0.942,1.15,1.156,1.048,1.107,1.282,1.0,1.02,0.944,1.063,0.836,1.016,0.883,0.955,0.996,1.049,1.065,1.058,0.849,0.974,0.91,0.92,1.119,1.001 +NM_021097,0.977,1.162,0.958,0.993,1.013,0.989,0.99,0.918,1.015,0.937,0.92,0.997,0.903,0.828,1.023,1.06,1.023,0.964,1.004,1.077,1.014,0.961,0.863,0.937,1.01,0.924,1.045,1.06,1.126,1.068,0.993,0.987,0.976,1.001,1.111,0.951,0.944,0.999,1.149,1.073,0.993,0.977,1.024,1.027,1.036,1.163,0.942,0.997,0.961,0.929,0.937,0.969,1.091,0.989 +NM_021098,0.929,0.996,1.006,0.956,1.044,1.138,1.133,1.197,0.987,0.857,0.913,0.934,0.947,1.0,1.0,1.099,0.978,0.889,1.236,0.966,0.923,1.005,0.868,1.097,1.021,1.106,1.051,0.958,0.973,1.091,0.995,1.707,0.896,1.187,0.95,1.161,0.938,0.989,1.156,1.032,0.941,1.117,1.02,0.883,0.948,0.966,1.025,0.963,0.993,0.924,1.187,0.844,1.053,1.095 +NM_021100,0.826,1.031,1.029,0.879,0.98,1.062,1.224,0.804,0.877,1.095,1.028,1.022,0.998,0.946,1.061,1.095,0.972,1.012,0.97,1.088,0.942,1.066,1.131,1.154,0.98,1.033,1.018,0.943,0.784,0.977,0.991,1.076,1.034,0.927,0.892,0.949,0.998,0.908,1.127,1.069,1.054,1.105,0.974,1.02,0.978,0.844,0.991,0.963,1.121,1.048,1.038,1.001,0.952,1.167 +NM_021101,1.161,0.448,1.398,0.486,1.136,0.709,0.194,0.613,1.533,1.609,1.031,0.498,0.667,1.303,1.142,1.236,0.874,0.726,1.302,1.008,0.608,0.971,0.904,0.891,0.151,1.073,2.097,0.962,0.137,0.582,1.636,0.779,1.748,0.205,0.169,1.105,0.712,0.78,1.021,1.486,1.606,0.658,0.563,1.215,1.633,1.443,1.044,0.875,0.612,1.053,1.181,1.886,2.161,1.863 +NM_021102,0.592,1.207,0.706,0.926,0.668,1.052,0.529,0.263,0.819,0.776,1.322,0.574,0.531,0.432,0.756,1.655,0.778,1.0,1.163,1.424,0.525,0.644,1.763,0.661,0.606,1.024,0.818,0.731,0.47,1.205,0.647,0.734,1.51,1.284,0.332,1.0,1.147,0.623,2.042,1.115,0.838,1.175,0.681,2.028,0.892,1.149,1.364,0.828,0.819,0.97,1.141,0.796,0.933,1.101 +NM_021104,0.844,1.121,1.267,0.736,1.197,1.0,0.615,0.901,1.086,1.118,0.865,1.222,1.136,0.542,0.861,1.212,0.807,1.091,1.173,1.139,0.592,0.934,1.192,1.109,0.757,1.029,0.965,1.072,0.339,1.01,0.942,0.954,0.771,1.033,0.576,1.134,0.98,1.163,1.105,0.749,1.092,1.045,0.628,1.197,1.153,0.878,1.049,1.243,0.981,0.936,1.067,0.815,0.871,1.074 +NM_021105,0.574,0.871,2.047,0.492,1.05,1.621,0.982,1.277,1.26,0.697,0.576,0.769,0.883,0.63,1.263,1.515,2.07,0.935,0.953,0.852,0.469,1.036,1.125,1.135,0.334,0.416,1.435,0.959,0.409,1.025,1.416,1.289,3.834,1.134,1.167,0.449,1.057,0.955,1.632,1.075,1.247,0.82,0.545,0.876,1.014,0.725,1.075,0.789,1.455,0.853,1.005,0.837,0.472,3.961 +NM_021106,0.944,0.999,1.245,0.887,0.812,0.929,0.967,1.094,1.092,1.007,1.024,1.159,0.812,1.04,1.037,0.823,1.065,1.125,0.868,1.186,0.982,1.051,1.025,0.843,0.995,1.218,0.993,0.995,0.98,0.97,0.879,0.886,1.08,1.12,0.921,1.057,0.993,1.132,0.925,1.058,1.053,1.055,0.842,0.891,0.974,0.905,1.039,0.968,1.065,0.943,1.024,0.878,0.993,0.839 +NM_021107,1.041,0.947,1.055,0.981,0.935,1.013,0.849,1.057,0.875,1.112,0.994,0.963,0.886,0.942,0.874,0.964,0.923,1.032,1.114,0.908,1.008,1.011,1.098,1.171,0.944,0.97,1.27,0.949,0.96,0.864,0.992,0.966,1.045,0.955,0.835,1.009,0.913,1.083,1.12,0.914,1.078,0.886,0.846,1.26,1.077,0.953,1.099,0.919,1.016,0.957,0.903,1.054,0.998,1.095 +NM_021109,0.327,1.286,1.883,0.768,0.609,3.192,1.724,0.575,0.628,0.491,1.054,0.396,0.702,0.276,1.2,2.533,1.485,1.548,0.26,1.613,0.124,0.788,1.395,0.925,0.981,0.191,2.076,0.423,1.019,2.753,0.92,2.343,1.587,2.474,0.122,0.21,1.545,1.397,4.799,1.154,0.767,1.628,0.547,0.15,0.803,1.039,1.263,0.591,1.987,0.619,2.123,0.814,0.167,1.658 +NM_021111,0.791,1.085,0.941,0.971,0.741,1.393,1.062,1.166,0.885,0.895,1.032,0.894,0.99,0.992,0.962,1.29,0.933,1.1,0.837,1.295,0.775,0.935,1.198,1.015,0.931,0.979,0.959,1.158,0.856,1.574,0.905,2.772,1.211,1.551,1.0,0.935,0.985,0.941,1.066,1.09,0.876,1.726,1.326,0.872,1.004,0.962,0.843,0.878,0.996,1.052,0.99,1.103,0.969,1.026 +NM_021114,1.071,1.19,0.906,1.002,0.936,0.866,1.565,0.801,1.09,1.035,0.856,0.943,0.929,0.992,1.191,1.117,0.888,0.854,1.036,0.891,1.102,0.898,0.886,0.954,0.969,0.813,0.992,1.046,0.787,1.19,1.092,1.271,1.047,1.081,1.01,1.123,1.177,0.829,0.909,0.929,1.106,1.102,0.781,0.926,0.922,1.086,1.197,0.951,1.181,1.153,0.96,0.804,0.962,0.798 +NM_021115,0.992,0.881,0.943,0.983,0.986,1.031,0.959,1.142,1.036,0.991,1.151,1.146,1.069,1.104,1.063,1.01,1.023,0.977,1.039,0.985,1.002,0.993,1.078,0.996,1.046,1.023,0.923,1.026,0.886,0.872,1.015,1.154,0.937,0.975,1.051,0.869,0.971,0.969,0.995,1.177,0.999,1.009,0.904,0.936,1.084,0.956,0.944,1.059,0.976,1.043,0.873,0.986,0.985,0.896 +NM_021116,1.001,1.153,0.988,0.91,0.999,1.097,1.188,0.914,0.916,0.991,0.939,1.087,0.979,1.138,1.019,1.038,0.987,1.004,0.875,1.072,0.875,0.787,1.208,1.074,0.905,0.857,0.942,1.085,1.056,1.024,1.174,1.229,0.973,1.003,1.07,1.035,0.894,1.086,0.934,0.899,1.005,1.1,0.976,0.927,1.057,0.988,0.904,0.833,1.02,1.188,1.024,1.136,1.072,0.983 +NM_021117,0.783,1.107,0.976,0.799,0.866,1.144,0.8,0.888,1.173,0.755,0.94,0.853,0.926,0.734,1.101,1.358,0.806,1.034,1.116,1.241,0.674,0.982,1.163,0.842,1.009,0.961,0.821,0.835,0.732,1.303,1.166,1.447,1.116,1.8,0.815,0.943,1.112,0.998,1.301,0.948,0.812,1.567,0.742,0.835,0.83,0.836,0.956,0.983,0.784,0.821,1.117,0.792,0.75,1.432 +NM_021120,0.848,0.913,1.024,0.795,1.005,1.155,0.771,0.967,1.13,1.084,0.94,0.841,0.77,0.964,1.023,1.07,1.023,1.013,1.13,0.945,0.845,0.884,0.973,1.071,0.79,0.874,1.253,0.996,0.58,0.983,1.042,0.91,1.087,0.915,0.775,0.933,1.017,0.879,1.006,0.887,1.127,1.1,1.031,1.037,1.106,0.944,1.043,0.781,1.166,0.8,1.129,0.818,0.977,1.154 +NM_021121,2.004,1.7799999999999998,2.2439999999999998,1.878,2.032,1.735,1.46,1.7710000000000001,2.4130000000000003,2.395,2.245,1.524,1.645,1.823,2.076,3.136,1.8639999999999999,2.33,2.668,1.8969999999999998,1.63,1.8210000000000002,2.1029999999999998,2.284,1.5310000000000001,2.023,2.439,2.016,1.403,1.749,2.255,2.177,3.525,2.118,1.4829999999999999,1.979,2.058,2.558,1.91,1.6749999999999998,2.23,1.787,2.019,2.481,2.307,1.955,2.008,1.9,2.1310000000000002,1.791,2.0709999999999997,1.734,1.9709999999999999,3.2030000000000003 +NM_021122,0.741,0.787,2.632,0.616,1.344,1.269,0.798,0.671,1.504,1.144,0.465,1.084,0.702,0.651,0.888,2.005,1.645,1.144,0.947,0.996,0.22,1.227,0.795,1.486,0.567,0.441,1.868,1.168,0.395,1.194,1.367,1.192,1.254,1.795,0.199,0.228,0.986,1.161,1.212,1.313,1.246,0.906,0.528,0.268,1.444,1.099,0.823,1.065,0.511,1.389,1.407,0.715,0.454,0.66 +NM_021126,0.757,1.034,0.799,0.898,0.784,1.583,0.675,0.682,0.947,0.755,1.372,0.797,1.124,0.517,0.959,1.65,0.637,1.203,1.271,1.168,0.855,1.302,1.075,0.883,0.715,1.428,0.973,0.807,0.919,1.142,0.747,0.883,0.748,1.409,0.902,0.6,1.075,0.929,1.904,0.734,0.881,1.187,1.158,0.885,0.804,1.039,0.815,1.361,1.631,0.828,0.813,0.673,0.842,1.149 +NM_021127,1.606,0.645,1.987,1.028,3.267,0.575,0.589,4.153,2.255,0.98,0.653,1.319,1.452,1.151,1.371,1.367,1.119,1.215,3.32,0.645,1.085,1.176,0.615,1.036,0.674,0.895,1.402,2.101,0.854,0.66,2.093,0.774,1.348,0.599,2.828,0.756,0.668,1.989,0.884,1.028,1.772,0.619,0.872,1.215,1.395,1.073,1.839,2.478,0.828,1.356,0.688,1.092,1.319,1.107 +NM_021128,0.868,0.652,1.402,0.833,0.986,1.235,0.372,0.482,1.219,1.281,1.574,0.789,0.569,0.797,1.103,1.859,1.073,0.99,2.317,0.939,0.981,0.672,1.537,0.996,0.589,1.161,1.347,0.772,0.221,1.481,1.107,1.062,1.476,1.354,0.146,1.343,0.943,1.037,1.306,0.687,0.942,1.112,0.533,1.213,1.26,0.772,1.006,0.772,0.708,1.133,1.101,0.714,1.428,1.173 +NM_021129,0.683,1.05,1.119,0.702,0.651,1.558,0.438,0.495,1.349,0.743,1.721,0.724,0.608,0.678,1.111,2.008,0.635,0.686,1.318,0.837,0.492,0.614,1.487,0.869,0.411,0.801,1.065,0.925,0.257,1.277,0.976,0.884,3.136,1.489,1.108,0.995,1.505,0.97,1.391,0.49,1.153,1.367,0.885,1.005,0.745,1.379,1.117,0.563,1.58,0.531,1.478,0.932,1.014,2.412 +NM_021131,1.134,0.989,1.125,0.947,0.899,1.062,1.011,0.975,1.0,0.857,1.008,0.861,1.102,1.038,0.93,0.969,1.029,1.023,1.176,1.032,1.016,0.931,0.982,0.898,1.07,1.006,0.929,1.126,1.348,0.992,0.942,0.966,0.823,0.929,1.09,0.962,1.043,1.05,1.027,1.067,0.895,0.903,1.018,1.032,0.925,1.07,1.014,1.091,0.992,1.025,0.981,0.991,1.032,0.985 +NM_021132,0.733,0.842,1.161,0.842,0.769,0.903,0.723,0.595,0.897,0.782,1.118,0.943,0.729,0.645,1.085,1.311,0.637,0.911,1.359,0.932,0.604,0.828,1.14,1.067,0.87,0.873,1.171,1.002,0.537,1.008,0.674,1.241,1.306,1.519,0.303,1.084,1.175,0.901,1.193,0.782,1.061,1.264,0.857,1.001,0.857,1.057,0.823,0.674,0.999,0.811,1.09,1.11,1.192,1.543 +NM_021134,0.762,0.745,1.01,0.909,0.837,1.195,0.496,0.401,0.996,0.976,1.239,0.8,0.853,0.587,0.721,1.705,0.898,1.157,2.133,0.807,0.645,1.123,1.001,1.011,0.862,1.156,1.144,0.685,0.545,1.248,0.706,0.729,1.024,1.527,0.145,1.358,1.109,1.14,1.423,0.859,1.057,1.222,0.568,0.794,0.923,0.832,0.858,1.356,1.028,0.999,0.885,0.569,0.927,1.402 +NM_021135,0.725,1.088,0.834,0.903,0.823,1.422,0.958,0.867,1.059,0.79,0.993,0.937,0.791,0.889,1.058,1.12,0.91,1.072,0.939,1.009,0.87,0.978,1.094,0.984,1.135,0.932,0.784,0.899,0.932,1.215,0.907,1.283,1.037,1.365,0.88,1.052,0.983,0.956,1.546,1.163,0.925,1.109,0.926,1.112,0.916,0.953,0.98,0.957,0.971,1.132,1.04,0.984,0.95,0.937 +NM_021136,0.956,1.023,1.095,1.01,1.0,1.001,0.961,1.0,0.971,0.841,1.049,0.984,0.852,0.774,0.984,0.982,0.851,0.883,0.969,1.046,0.903,0.95,1.017,1.013,1.071,0.845,1.14,0.991,0.844,1.056,0.919,1.185,1.248,1.587,0.941,0.801,1.21,0.815,0.938,0.94,0.94,1.32,0.885,0.928,0.94,0.881,1.111,0.875,0.805,1.078,1.028,1.079,1.342,1.068 +NM_021137,0.971,0.891,1.173,0.984,1.054,0.981,0.792,0.666,1.077,1.178,0.918,0.803,0.801,0.886,1.032,1.058,1.352,0.875,0.989,0.839,0.717,0.788,0.968,1.078,0.953,0.918,1.227,0.899,0.854,1.015,1.092,1.637,1.516,0.928,0.685,0.876,0.823,1.016,1.346,0.868,1.067,1.045,1.158,1.135,1.116,0.882,0.953,0.798,0.799,1.183,0.968,1.086,1.287,1.069 +NM_021138,1.197,0.905,0.961,0.92,0.95,1.026,1.064,1.103,0.987,1.001,1.022,0.998,0.889,0.997,0.854,1.048,1.1,1.045,1.024,0.981,0.994,0.896,0.971,0.881,1.02,1.262,1.098,1.048,0.78,0.974,0.929,1.108,1.06,0.984,0.929,1.037,0.949,0.995,1.161,1.127,1.03,0.864,1.078,1.101,0.937,1.077,0.953,0.905,1.038,0.981,0.977,1.075,0.963,1.134 +NM_021139,0.9,1.013,0.961,0.926,0.954,1.12,0.877,1.163,0.895,0.952,1.092,1.089,0.918,0.915,1.187,0.926,1.019,0.92,0.931,1.213,0.892,0.936,1.029,0.879,0.992,1.088,1.118,1.177,0.879,0.978,0.917,1.11,0.986,1.007,1.043,0.925,1.08,1.073,1.025,1.126,1.049,0.926,1.011,1.147,1.066,0.979,1.048,1.076,1.057,0.943,0.989,0.907,0.902,0.914 +NM_021140,0.888,1.251,1.115,0.984,1.162,0.926,1.104,0.997,1.209,0.94,0.95,1.06,0.771,0.807,0.931,0.852,0.75,0.91,1.164,1.653,0.811,0.859,0.988,0.996,0.829,0.87,0.978,1.279,0.628,1.082,1.021,0.996,1.605,1.355,1.04,0.89,0.946,0.97,0.987,0.861,0.993,0.946,0.981,0.808,0.917,1.043,1.036,0.796,1.013,0.913,1.001,0.895,1.108,1.203 +NM_021141,0.632,0.986,1.1,0.617,0.883,1.185,0.592,0.432,1.098,0.991,0.95,1.091,0.477,0.574,0.825,1.334,0.656,0.929,1.164,1.176,0.493,0.717,1.424,1.088,0.701,0.704,1.344,0.852,0.498,1.276,0.828,1.248,1.911,1.384,0.107,1.201,1.159,0.927,1.253,1.391,0.989,1.156,0.825,1.892,0.983,1.092,0.837,0.678,1.274,0.708,1.135,0.998,0.984,2.237 +NM_021143,0.959,1.071,1.151,0.805,1.082,0.979,0.804,0.978,1.054,0.946,1.026,1.042,0.988,1.065,0.836,0.949,0.981,0.982,1.057,1.092,0.839,0.953,1.043,1.062,0.911,0.95,1.209,1.037,0.6,1.111,1.214,1.141,1.075,1.184,0.755,0.919,0.867,0.997,0.879,1.457,1.08,0.926,0.87,0.861,0.951,0.784,0.926,1.023,0.669,0.85,1.042,0.844,1.027,1.179 +NM_021144,1.8399999999999999,2.141,2.192,1.8130000000000002,1.968,2.234,1.807,1.597,2.0300000000000002,2.186,2.128,2.14,1.8599999999999999,1.835,1.94,2.503,1.637,1.82,1.983,2.443,1.9489999999999998,1.897,2.806,2.059,1.649,1.8659999999999999,2.1719999999999997,1.914,1.603,2.0140000000000002,1.865,2.227,2.643,2.097,1.466,2.133,2.027,1.75,2.042,1.685,1.971,2.085,1.9449999999999998,2.798,1.8900000000000001,2.0989999999999998,1.891,1.818,1.8820000000000001,1.616,2.094,2.391,2.017,3.7239999999999998 +NM_021145,1.058,1.0,1.23,1.016,1.021,1.127,0.916,1.099,1.211,0.97,0.956,0.952,0.794,0.92,1.015,0.891,0.936,0.914,1.036,0.944,0.825,1.066,1.014,1.142,0.82,1.017,1.154,0.973,1.173,1.084,0.85,1.241,1.58,0.955,0.731,0.785,0.905,0.881,0.94,0.971,1.088,1.056,1.006,1.029,0.944,1.018,0.859,0.797,0.8,0.793,0.856,0.814,1.002,1.328 +NM_021146,1.046,1.007,0.88,1.042,1.098,0.904,0.936,1.125,1.088,1.053,1.158,0.889,1.0,1.058,1.022,0.89,1.015,1.068,0.845,1.044,0.864,1.139,0.978,0.942,1.096,0.891,0.85,1.001,1.085,1.003,0.87,0.964,0.989,1.005,0.958,1.051,0.905,1.065,1.001,0.941,0.956,0.963,0.971,0.874,0.933,1.039,1.012,1.025,0.999,0.957,0.957,0.906,0.869,0.949 +NM_021147,0.581,1.083,0.796,1.063,0.788,1.553,0.854,0.455,0.758,0.792,1.851,0.771,0.573,0.686,1.105,1.37,0.626,0.897,0.858,1.194,0.61,0.587,1.613,0.874,1.156,0.635,0.832,0.575,0.917,1.515,0.652,1.148,1.412,1.823,0.505,1.096,1.362,0.718,1.582,0.828,0.727,1.401,0.702,0.999,0.692,1.214,0.687,0.637,0.886,0.819,1.319,0.883,0.93,1.792 +NM_021149,0.16,1.793,0.47,1.082,0.214,1.782,1.079,0.111,0.241,0.281,2.031,0.179,0.198,0.0939,0.761,2.323,0.405,0.926,0.199,1.473,0.153,0.142,2.078,0.254,0.767,0.174,0.586,0.167,0.591,1.654,0.156,1.914,1.612,1.842,0.076,0.688,1.87,0.175,3.259,1.291,0.348,1.74,0.753,1.36,0.386,1.392,0.872,0.135,1.775,0.304,1.885,1.215,0.57,2.113 +NM_021154,1.035,0.759,1.104,0.69,1.006,1.039,0.985,0.869,1.452,1.336,1.261,1.569,0.8,1.149,1.094,1.122,1.111,0.937,1.675,0.701,1.198,1.028,1.185,1.955,0.918,1.36,1.619,0.994,0.569,0.576,1.066,0.819,3.39,0.655,0.475,0.89,0.812,1.174,1.162,0.86,1.259,0.87,0.595,2.577,1.297,0.882,1.069,1.16,0.861,1.291,0.85,0.697,1.984,3.421 +NM_021158,1.524,0.454,1.779,0.658,1.763,0.392,0.47,0.766,1.622,2.807,0.531,1.25,1.001,1.004,0.775,0.642,1.564,0.999,2.455,0.348,0.849,1.133,0.465,2.331,0.513,1.145,1.098,1.274,0.325,0.436,1.216,1.347,2.958,0.51,0.718,3.426,0.413,0.985,1.568,5.832,1.839,0.499,0.391,5.394,2.111,0.54,1.769,1.638,0.414,1.578,0.494,1.889,1.377,2.086 +NM_021159,1.293,0.71,1.2,0.801,1.268,1.002,0.483,1.067,2.283,1.049,1.029,1.437,0.813,1.101,1.274,1.503,1.002,0.891,1.559,0.69,0.812,1.106,0.843,1.474,0.613,1.248,1.396,1.712,0.407,1.141,1.988,1.097,2.371,1.085,1.727,0.651,0.887,1.636,0.967,0.643,1.361,0.733,0.476,1.221,1.143,0.682,1.039,1.516,0.84,0.954,0.884,0.734,1.051,0.778 +NM_021160,0.662,0.934,0.947,0.761,0.607,1.285,0.705,0.535,0.958,0.831,1.392,0.588,0.625,0.629,1.086,2.335,0.721,0.833,1.315,0.899,0.542,0.678,1.084,0.853,0.699,0.761,1.098,0.566,0.516,1.221,0.802,1.66,2.72,1.712,0.26,0.642,1.179,0.64,1.487,0.668,0.78,1.243,0.594,1.4,0.756,1.074,0.78,0.713,0.926,0.694,1.167,0.637,0.869,1.898 +NM_021161,1.098,1.107,1.007,0.973,1.178,1.098,0.902,0.932,0.968,0.997,1.116,0.982,0.962,0.987,0.959,1.04,1.132,1.042,1.046,0.907,1.08,0.909,0.945,1.003,1.124,1.001,1.032,1.018,0.689,0.959,0.987,1.016,0.98,0.932,0.955,0.931,1.026,1.0,1.028,0.995,0.86,0.895,0.757,1.0,1.004,1.098,1.057,1.03,0.919,0.964,0.987,1.17,0.904,0.85 +NM_021163,1.218,0.986,0.896,0.904,1.24,1.073,0.973,0.924,1.531,1.078,0.885,0.902,1.135,0.878,1.005,1.056,1.015,0.927,0.99,1.001,0.881,1.103,0.852,1.114,1.036,1.043,1.386,1.317,1.154,1.106,0.835,1.037,1.261,0.815,1.012,1.008,0.906,1.083,1.04,0.843,1.205,0.949,0.83,1.171,0.982,1.107,1.147,0.988,1.015,1.065,0.906,0.977,0.889,1.0 +NM_021165,0.911,1.038,0.995,0.873,1.026,1.035,1.211,1.068,1.02,1.08,0.879,0.922,1.02,1.11,0.859,1.098,0.943,1.018,1.298,0.938,0.978,0.847,1.025,1.056,1.138,1.086,1.031,0.966,0.852,1.09,0.961,0.885,0.917,1.169,0.944,0.942,0.995,0.969,1.066,0.985,0.889,1.007,0.929,1.188,1.035,1.104,0.928,0.955,0.926,0.957,0.917,1.053,0.948,1.013 +NM_021167,0.817,1.11,1.148,0.871,0.798,1.212,0.892,0.659,0.908,0.703,1.07,0.741,0.75,0.691,1.09,1.11,0.817,0.83,0.803,1.358,0.646,0.831,1.598,0.839,0.954,0.786,0.94,0.943,0.716,1.422,0.876,1.517,1.384,1.507,0.653,0.817,0.945,0.806,1.205,1.179,0.926,1.153,0.84,1.846,0.845,1.117,0.932,0.805,0.839,0.72,1.116,1.401,0.806,1.643 +NM_021168,0.828,0.94,1.127,0.763,1.027,1.695,0.925,0.792,1.28,0.714,1.092,1.013,0.547,0.837,1.023,1.123,0.781,0.922,0.748,1.367,0.378,0.873,1.053,0.984,0.679,0.877,1.093,0.999,0.589,2.13,0.866,1.646,1.25,1.631,0.858,0.704,1.044,1.064,1.302,0.818,1.108,1.162,0.872,0.829,0.807,1.398,1.157,0.813,0.868,0.728,1.046,0.439,0.559,0.998 +NM_021170,0.74,0.892,1.046,0.672,1.481,0.561,0.316,1.277,2.438,1.074,0.437,1.68,0.72,0.808,0.696,0.648,1.001,0.998,1.14,1.023,0.386,0.996,1.455,1.577,0.275,1.023,1.468,1.837,0.3,0.52,1.484,3.287,2.321,0.554,2.252,1.759,0.407,1.422,1.566,3.544,1.738,0.739,0.701,1.964,1.137,0.8,2.316,1.583,0.288,0.757,0.887,1.589,0.689,3.48 +NM_021173,0.775,1.038,0.901,0.965,1.046,1.285,1.027,0.755,0.99,0.887,1.258,0.83,0.871,0.667,1.268,1.337,0.888,0.98,1.125,1.259,0.803,0.878,0.998,0.897,0.855,1.082,0.909,0.986,0.984,1.198,0.979,0.898,1.356,1.263,0.973,1.013,0.959,0.749,1.446,0.982,1.005,1.123,1.054,1.064,0.912,1.148,1.002,0.98,1.397,0.881,1.117,0.75,0.822,0.994 +NM_021174,0.937,0.87,0.817,1.001,0.838,1.012,0.771,0.774,1.002,0.95,0.961,1.031,0.753,0.643,0.933,1.265,0.829,0.882,1.029,0.978,0.972,1.117,1.247,1.017,0.931,1.043,1.235,0.782,0.768,0.895,0.875,1.031,1.161,1.015,0.605,0.894,1.211,0.943,1.475,0.999,0.901,0.931,0.822,1.193,0.952,0.936,0.824,1.071,1.342,0.875,1.042,0.819,0.909,1.297 +NM_021175,0.997,1.024,1.095,1.061,0.943,1.031,0.934,0.91,1.037,0.96,0.922,1.119,1.027,0.998,1.188,1.073,1.252,1.128,0.859,1.12,1.004,1.178,1.157,0.968,1.131,1.091,0.932,1.15,0.875,1.021,1.024,1.349,0.849,0.873,1.175,0.885,1.026,0.961,0.96,1.022,0.892,1.118,0.939,0.968,1.106,1.044,0.93,0.885,1.061,0.986,0.99,1.008,1.029,1.125 +NM_021176,0.978,1.081,1.031,1.095,1.089,0.998,0.784,1.014,0.905,0.985,1.032,1.053,1.047,0.882,0.844,1.14,1.031,1.044,0.989,1.012,1.019,0.98,1.069,0.962,0.967,0.971,1.104,0.973,0.843,1.073,1.054,0.883,1.024,1.077,0.938,0.922,1.019,0.879,0.904,0.907,1.065,1.127,1.358,1.043,1.011,1.089,1.033,1.138,0.991,1.223,0.975,0.954,1.109,1.163 +NM_021177,0.699,1.002,0.872,0.826,0.638,1.073,0.635,0.585,0.833,0.903,1.064,1.283,1.039,0.501,0.844,1.712,0.704,1.113,1.389,0.86,0.51,0.748,1.374,1.092,0.843,0.923,1.011,0.703,0.42,0.815,0.666,1.164,3.187,1.388,0.135,0.992,0.988,0.785,1.975,1.08,0.756,1.11,0.562,1.804,1.01,0.645,0.871,0.971,1.019,1.028,0.838,0.962,0.962,1.802 +NM_021179,0.912,1.116,0.925,1.056,1.002,1.031,1.011,0.922,1.07,1.188,0.979,0.964,0.958,0.868,0.944,1.195,0.98,0.929,0.893,1.078,0.914,0.997,1.156,1.003,0.943,1.046,0.937,1.086,0.791,1.015,1.095,0.946,0.877,0.921,1.055,0.989,0.945,0.931,1.032,0.94,1.027,0.997,0.936,0.94,0.954,1.103,0.859,1.042,1.051,1.091,0.989,1.032,1.022,1.061 +NM_021182,0.989,1.002,0.852,1.0,1.04,1.003,1.111,1.021,0.985,0.817,1.1,0.943,1.006,1.097,0.966,1.035,0.948,0.776,1.125,1.02,1.048,0.991,1.0,1.07,0.987,1.079,1.157,1.075,0.818,1.056,1.108,0.914,0.986,1.016,1.199,0.946,0.923,0.873,0.923,0.992,0.928,0.971,1.031,1.059,1.088,0.88,0.976,0.881,0.99,1.173,1.03,1.065,0.917,0.953 +NM_021183,0.782,0.697,1.371,0.725,1.018,1.408,0.756,1.179,1.464,1.02,1.008,1.603,1.085,0.746,1.334,2.17,0.843,1.048,0.923,1.04,0.395,1.287,0.944,1.458,0.476,0.551,1.461,0.895,0.516,1.011,1.157,1.059,1.603,1.091,0.388,0.502,1.101,0.919,1.242,0.914,1.08,0.967,0.675,0.635,1.034,1.1,1.169,1.055,1.229,0.846,0.953,1.021,0.649,1.727 +NM_021185,0.95,1.058,1.113,1.182,0.941,1.025,1.029,0.993,0.932,0.941,1.029,1.09,0.92,1.178,0.908,1.064,0.923,0.916,1.16,1.013,1.055,0.894,1.043,1.002,0.955,1.07,1.13,0.982,1.075,0.995,1.026,0.925,1.158,1.015,0.981,1.024,0.998,1.059,1.12,0.898,1.139,1.035,1.089,0.893,0.975,0.906,0.873,0.957,1.041,1.184,0.949,1.006,1.093,0.927 +NM_021186,1.098,0.891,0.931,0.704,0.991,0.999,1.034,1.007,0.937,0.998,0.984,1.021,1.051,1.076,1.116,0.895,0.949,0.905,1.029,1.017,1.028,0.88,1.053,0.998,0.897,0.901,1.01,1.058,0.764,1.057,1.18,0.972,1.074,1.031,0.948,1.042,0.954,1.016,0.95,0.985,1.013,0.93,0.979,1.011,1.041,1.044,1.034,0.981,1.087,0.92,1.207,0.954,0.969,1.133 +NM_021188,0.892,0.877,1.039,0.724,1.052,1.324,0.635,1.038,1.634,1.089,1.034,1.114,0.871,0.758,1.177,1.313,0.871,0.927,1.513,0.858,0.807,0.837,1.015,1.518,0.663,1.11,1.144,1.103,0.45,1.199,1.455,0.975,1.473,1.303,0.606,0.916,1.205,0.986,1.102,0.894,1.218,0.961,0.789,1.332,1.042,0.957,1.064,0.859,0.865,0.844,0.859,0.737,1.107,1.397 +NM_021189,1.185,1.104,1.115,1.032,0.921,0.897,0.942,1.15,1.049,0.88,1.03,0.918,0.953,1.03,0.963,0.935,0.945,1.008,1.029,1.028,0.897,0.94,1.043,1.031,1.108,1.081,1.12,1.024,1.203,1.082,0.998,0.972,0.918,1.061,0.978,1.06,1.12,0.988,0.95,0.902,1.002,0.966,0.762,1.076,1.024,0.99,0.997,1.018,1.108,0.998,0.883,1.126,1.072,1.04 +NM_021191,0.966,0.943,1.104,0.944,0.99,0.999,0.982,1.008,1.121,1.215,1.048,1.065,1.066,1.068,0.971,0.956,0.978,1.019,0.965,1.023,1.016,1.036,0.932,1.039,1.098,0.997,0.982,1.132,0.934,0.919,0.99,0.957,1.063,0.814,0.97,1.055,1.061,0.866,1.097,1.009,1.034,0.903,0.907,1.005,1.0,1.126,1.065,0.989,0.931,1.077,0.967,1.016,0.959,0.964 +NM_021192,1.049,1.096,1.028,0.909,1.027,0.908,0.888,1.063,0.899,0.858,1.034,1.15,1.007,1.088,1.084,0.997,1.138,0.945,0.827,1.082,1.003,0.996,0.871,0.956,0.868,1.044,1.094,0.906,1.045,1.142,0.932,1.027,1.131,0.932,0.969,0.925,0.884,1.078,1.04,4.099,1.06,1.101,1.009,1.105,0.982,0.915,1.053,0.993,0.965,1.062,0.984,0.932,0.819,1.085 +NM_021193,1.067,0.943,0.871,1.108,0.966,1.03,0.978,1.071,1.081,0.965,0.917,1.161,0.929,0.969,0.828,1.03,0.993,0.965,1.186,0.976,1.107,1.134,1.062,0.937,1.041,1.034,1.13,0.991,0.86,1.044,1.109,1.045,0.823,0.962,1.115,0.964,0.939,0.996,0.968,1.006,1.03,0.99,1.006,1.057,0.94,0.969,1.046,1.009,0.998,0.929,1.107,1.016,1.127,1.023 +NM_021194,0.988,0.897,0.912,0.905,1.015,0.938,0.767,0.705,1.095,0.941,1.133,0.767,0.759,0.742,0.997,1.193,0.781,0.827,1.035,0.942,0.872,0.721,1.047,0.809,0.714,0.819,1.01,0.885,0.749,0.963,1.072,0.997,2.111,1.01,0.939,1.175,1.244,1.031,1.225,0.971,0.938,1.314,1.125,1.761,0.869,1.458,1.102,0.811,1.068,0.862,1.099,0.903,0.81,1.389 +NM_021195,0.972,1.127,1.116,1.017,1.089,1.009,0.946,0.883,1.252,1.027,1.041,0.758,0.885,1.085,1.12,0.948,0.986,0.995,1.013,1.137,0.91,0.926,0.882,0.857,0.909,1.02,0.982,1.042,0.868,0.913,0.951,1.112,1.108,1.165,0.933,0.815,1.137,1.204,1.093,1.119,0.853,1.182,1.064,0.902,1.005,0.994,0.813,1.04,0.946,0.989,0.898,1.034,1.332,0.958 +NM_021196,1.1,0.95,0.971,0.935,1.012,0.907,1.081,0.968,1.014,0.893,1.07,0.811,1.066,1.337,0.966,1.027,0.908,0.896,0.982,1.151,1.08,0.986,0.851,1.013,0.814,1.085,1.052,1.057,1.267,1.035,0.934,0.932,0.934,1.036,0.972,0.98,0.96,1.053,1.007,0.994,0.853,1.15,0.958,0.992,1.032,0.965,0.973,0.989,0.97,1.046,0.969,1.103,0.947,1.11 +NM_021198,0.797,0.954,1.052,0.703,0.658,1.744,0.579,0.66,0.788,0.605,1.691,0.602,0.744,0.813,1.132,1.848,0.773,0.805,1.801,0.802,0.752,0.838,1.265,0.857,1.215,1.173,1.225,0.643,0.606,1.309,0.859,1.897,1.495,2.647,0.305,0.732,0.994,0.874,1.585,0.791,0.83,1.52,0.465,1.798,0.627,0.967,0.682,0.826,0.437,0.743,1.166,0.583,0.9,2.439 +NM_021199,0.979,0.707,1.275,0.636,1.105,1.236,0.597,0.76,1.461,0.993,1.156,0.896,0.718,0.733,1.106,1.485,1.014,1.017,1.64,0.811,0.566,1.134,1.341,1.128,0.477,1.094,1.354,1.302,0.477,0.982,1.313,0.374,0.815,1.207,1.204,0.678,1.343,1.27,1.054,0.813,1.08,0.882,0.512,0.375,1.183,1.006,0.999,1.148,1.278,1.097,1.011,0.778,1.306,1.871 +NM_021200,0.658,1.67,0.651,1.222,0.695,1.314,1.01,0.684,0.729,0.69,1.137,0.666,0.683,0.69,0.902,2.026,0.686,0.802,0.589,0.976,0.718,0.64,1.018,0.618,0.895,0.618,0.523,0.682,0.794,5.098,0.643,3.456,2.306,1.764,0.684,2.744,1.449,0.547,2.781,2.605,0.623,1.53,1.258,2.634,0.639,0.901,1.314,0.728,0.99,0.674,0.938,1.44,0.791,1.217 +NM_021201,0.87,1.158,0.963,0.825,0.942,1.273,1.324,0.709,0.913,0.862,1.008,0.865,0.816,0.732,1.001,1.038,0.838,0.919,0.885,0.907,0.868,0.896,1.633,0.982,1.105,0.799,0.998,0.87,1.141,1.135,0.742,2.281,1.494,1.584,0.809,0.769,0.972,0.809,1.061,2.049,0.824,1.864,0.959,0.959,0.771,1.032,0.929,0.767,0.811,0.729,1.159,1.702,1.08,2.756 +NM_021202,2.52,0.485,1.987,0.871,2.458,0.865,0.372,2.489,2.959,2.05,0.791,0.951,2.122,2.206,1.548,1.428,2.835,1.239,1.539,0.826,1.268,2.243,0.954,1.215,0.411,2.835,1.422,2.053,0.326,0.862,3.242,0.752,1.16,0.65,5.908,0.438,0.684,2.386,0.894,0.884,2.144,0.787,0.86,0.575,2.025,0.857,1.458,3.704,0.73,1.597,1.038,0.77,1.675,0.807 +NM_021203,0.715,1.052,0.98,0.635,1.189,0.883,0.616,0.4,1.096,1.247,1.017,0.909,0.566,0.619,0.895,1.63,0.883,0.872,1.241,0.998,0.556,0.902,1.334,1.477,0.875,0.9,1.114,1.2,0.402,1.432,0.853,1.498,2.231,0.944,0.124,1.174,1.16,0.81,1.3,0.745,0.921,1.384,0.716,1.282,0.815,1.03,0.879,0.784,1.025,0.791,1.206,1.021,1.238,1.428 +NM_021204,0.604,1.027,1.048,0.616,0.873,1.029,0.6,0.576,1.451,1.047,0.804,0.926,0.725,0.695,1.001,1.587,0.713,0.984,1.314,0.878,0.53,1.005,1.295,1.201,0.518,0.835,1.046,1.018,0.585,0.932,1.143,1.408,1.528,1.239,0.42,0.827,1.079,1.022,1.407,0.71,1.174,0.913,0.62,1.291,1.013,0.99,1.233,0.728,0.999,0.747,1.036,0.849,0.98,1.109 +NM_021205,0.228,1.802,0.329,0.46,0.261,3.015,0.909,0.275,0.263,0.224,2.142,0.272,0.223,0.24,1.084,2.372,0.439,0.989,0.282,2.38,0.241,0.252,2.059,0.229,1.063,0.287,0.505,0.331,0.862,1.894,0.297,1.153,0.988,2.061,0.24,0.801,2.754,0.284,1.275,0.922,0.288,2.409,1.166,0.817,0.27,1.303,0.697,0.287,1.056,0.466,1.588,0.607,0.299,1.455 +NM_021209,0.812,1.195,0.916,1.123,0.998,1.04,0.838,0.877,0.989,1.004,1.033,0.775,0.963,0.967,1.24,0.921,0.888,0.98,0.963,1.112,0.984,0.921,0.963,0.94,0.929,0.97,1.078,0.85,1.242,1.064,0.951,1.224,0.923,1.151,0.982,1.077,1.021,0.892,1.2,1.342,0.977,1.025,1.04,0.978,0.966,0.891,1.099,0.946,1.008,1.007,0.961,1.194,1.11,1.127 +NM_021210,1.152,0.542,1.264,1.252,0.826,1.115,0.413,0.591,0.898,0.765,1.614,0.56,0.852,0.906,1.288,2.174,0.914,0.875,1.966,0.658,1.129,0.439,1.026,0.756,0.89,1.54,1.042,0.672,0.354,1.162,1.096,0.988,2.192,2.14,0.397,0.65,0.864,0.6,1.225,0.771,0.938,1.095,0.556,1.277,1.037,0.774,0.751,0.964,0.769,1.296,0.792,0.647,1.517,1.138 +NM_021212,0.794,0.974,1.011,0.815,0.751,1.079,0.777,0.755,1.124,0.824,0.98,0.833,0.724,0.839,1.036,1.378,0.799,1.013,0.751,1.278,0.71,0.761,1.233,0.858,0.894,0.701,1.13,0.901,0.53,1.302,0.908,1.657,2.185,1.289,0.7,1.665,1.219,0.766,1.04,1.062,0.848,1.036,0.894,1.274,0.972,1.091,1.339,0.782,0.927,0.819,1.043,0.737,0.974,1.345 +NM_021213,0.799,1.366,0.882,1.111,0.757,1.363,0.894,0.539,0.953,0.808,1.865,0.668,0.674,0.687,0.894,1.632,0.727,1.103,0.922,1.293,0.563,0.634,1.43,0.771,0.824,0.859,0.88,0.786,0.542,1.438,0.773,1.565,0.953,1.624,0.466,0.828,1.445,0.724,1.018,0.761,0.941,1.313,0.823,1.178,0.694,1.638,1.195,0.621,1.109,0.64,1.249,0.895,0.736,1.387 +NM_021217,0.995,0.886,1.075,0.933,1.0,1.08,0.822,1.116,0.97,0.959,1.004,1.156,0.867,0.962,1.08,0.94,1.023,0.884,0.975,0.907,1.075,1.0,1.132,0.971,0.985,1.04,1.26,0.883,0.801,0.923,1.051,1.173,1.254,1.005,0.826,1.011,1.026,1.055,1.129,1.033,0.983,0.945,0.833,1.096,0.918,0.855,0.959,1.117,0.914,0.96,0.98,0.864,0.976,1.758 +NM_021219,0.811,1.337,0.864,0.955,0.848,1.06,1.147,0.976,0.838,1.033,1.004,0.846,0.881,0.905,1.072,1.123,0.883,0.904,0.798,1.111,0.917,0.886,1.0,0.949,0.952,1.0,1.107,0.839,1.124,1.353,1.007,1.217,1.113,1.425,0.786,1.047,0.984,1.03,1.486,0.876,1.017,1.399,0.968,0.827,0.964,1.038,0.971,0.884,0.927,0.778,1.151,0.99,0.983,0.982 +NM_021221,1.032,1.06,1.158,1.064,0.947,0.93,1.036,0.899,0.845,0.955,1.158,1.108,1.05,0.98,0.969,0.916,0.996,0.707,0.978,0.839,0.957,1.099,0.828,0.833,1.057,1.017,0.861,0.914,1.165,0.911,0.973,0.982,1.041,0.907,1.116,1.077,1.037,0.984,0.968,1.061,1.214,0.885,1.075,1.016,1.077,0.974,0.988,0.878,0.871,1.047,0.996,1.027,0.989,1.047 +NM_021222,0.72,0.889,1.173,0.789,0.834,1.322,0.57,0.516,1.0,0.646,1.037,0.687,0.61,0.984,0.997,1.335,1.082,0.831,1.197,0.889,0.75,1.011,1.151,0.9,0.723,0.805,1.072,0.881,0.672,1.388,0.92,1.737,1.473,1.331,0.661,1.018,1.121,1.048,1.034,0.94,1.2,1.12,0.644,1.373,0.717,0.987,1.098,0.852,0.852,0.79,0.992,0.755,0.983,1.413 +NM_021223,1.112,0.937,0.98,1.043,1.031,0.982,1.07,1.17,0.958,0.873,1.0,1.106,1.059,0.873,0.943,1.076,1.022,1.073,0.898,1.011,1.147,1.0,0.928,1.089,0.947,1.059,0.969,1.02,0.887,0.99,0.999,0.961,0.999,1.147,0.973,0.92,0.998,0.978,1.164,1.102,0.916,1.086,0.942,0.916,1.088,0.889,0.9,0.967,1.008,0.96,1.032,0.933,0.965,0.913 +NM_021224,1.099,0.617,1.671,0.505,1.272,0.975,0.6,0.787,1.277,0.894,0.813,1.152,0.864,1.096,1.124,1.067,1.016,1.047,1.59,0.946,0.843,1.838,1.145,1.232,0.521,0.939,1.515,1.165,0.52,0.976,1.297,1.225,1.502,0.948,0.39,0.573,0.847,1.44,0.815,1.88,1.164,1.253,0.495,1.333,1.027,0.635,0.918,0.989,0.816,0.857,1.054,0.931,0.963,0.432 +NM_021225,0.924,0.918,1.206,0.917,0.856,1.016,0.774,1.036,0.985,1.0,0.913,1.034,0.967,0.887,0.964,0.91,1.063,0.973,0.903,1.057,1.147,1.084,1.028,1.089,1.034,0.912,1.104,0.942,0.993,1.128,0.992,0.97,1.089,1.04,0.98,1.078,1.242,0.912,0.999,0.841,1.026,0.947,0.874,0.966,0.991,1.221,1.12,1.131,0.852,1.031,1.043,1.151,0.964,0.994 +NM_021226,1.03,0.939,1.198,0.857,1.127,0.917,1.183,0.962,0.96,1.126,0.846,1.036,1.043,0.821,0.918,0.918,1.202,1.046,1.066,0.934,0.918,1.035,0.897,1.01,0.961,1.141,1.255,0.911,0.646,1.041,0.92,1.374,1.232,0.986,0.864,0.975,0.966,1.302,1.026,1.29,1.012,1.026,0.962,0.933,1.126,0.836,0.986,0.987,0.886,1.061,0.938,0.998,1.267,1.207 +NM_021227,0.416,0.841,1.142,0.988,0.686,0.946,0.649,0.337,1.313,1.024,1.29,0.384,0.416,0.571,1.014,1.631,0.734,1.076,0.998,1.304,0.512,0.391,1.498,0.723,0.73,0.636,1.113,0.783,0.323,1.243,0.873,1.856,1.699,1.533,0.232,0.938,1.257,0.465,1.178,0.587,1.01,1.082,0.799,1.514,0.774,1.213,0.878,0.429,1.216,0.731,1.602,0.788,1.071,1.294 +NM_021228,1.057,0.91,0.84,0.974,0.941,1.107,0.92,1.092,1.047,0.771,0.963,0.919,0.928,1.008,0.868,0.986,1.026,0.994,1.094,0.915,1.177,0.963,0.911,0.973,1.045,1.243,1.044,0.991,0.764,1.069,1.165,1.015,1.388,1.089,1.008,0.948,0.999,1.065,1.502,0.939,0.941,0.924,0.996,1.362,1.105,0.962,0.867,1.252,0.954,0.959,1.055,0.935,0.91,1.034 +NM_021229,0.891,0.958,1.113,0.959,1.052,0.935,0.948,0.996,0.915,0.988,0.991,0.979,1.085,1.138,1.071,1.034,0.903,1.039,1.021,0.962,1.043,1.002,0.872,0.834,1.049,1.06,1.086,1.134,0.875,1.077,0.891,1.098,1.095,0.839,0.954,0.901,0.97,0.875,0.927,1.052,1.047,1.124,1.023,1.112,0.861,0.969,1.069,1.001,1.106,1.098,1.045,0.987,0.899,1.062 +NM_021230,2.056,1.8370000000000002,2.256,1.983,2.016,1.938,2.151,1.8159999999999998,2.122,1.9569999999999999,1.991,2.032,1.877,2.018,2.189,2.208,1.936,2.15,2.0540000000000003,2.034,2.224,1.689,2.114,1.9809999999999999,1.9939999999999998,1.9340000000000002,1.903,1.933,2.23,2.058,2.113,1.979,1.8929999999999998,1.947,2.024,1.895,2.063,1.758,1.9709999999999999,1.879,1.919,2.1609999999999996,1.9969999999999999,2.094,2.077,2.1559999999999997,2.073,1.812,1.9649999999999999,1.908,1.9969999999999999,2.091,2.16,2.106 +NM_021232,1.009,0.858,1.023,0.95,1.02,0.888,0.945,1.105,1.121,0.991,0.894,1.054,0.893,0.971,0.867,0.946,0.985,1.034,0.979,0.943,1.086,0.84,0.943,1.126,1.017,1.028,1.096,1.126,1.033,0.975,0.988,0.945,0.985,1.1,0.955,1.098,1.049,0.877,1.004,0.997,0.973,1.054,0.887,1.064,0.965,0.988,1.127,1.035,1.182,0.801,0.951,1.098,0.987,1.196 +NM_021233,1.0,0.996,0.975,1.114,1.0,0.892,0.961,1.104,0.958,0.9,0.993,1.039,0.995,0.852,1.252,1.025,1.041,1.059,1.008,1.026,1.029,0.917,1.055,0.931,1.029,1.019,1.003,1.02,0.997,0.968,0.938,0.989,1.108,0.994,1.032,0.985,1.029,1.046,0.959,1.019,0.971,0.899,1.405,1.242,0.901,1.028,1.061,0.932,0.99,1.016,0.988,0.879,0.989,1.024 +NM_021235,0.951,0.781,1.107,1.066,0.94,1.121,1.123,1.014,1.091,1.132,0.901,0.907,0.841,0.88,1.163,1.058,0.955,0.956,1.014,0.978,1.084,0.883,1.003,0.91,0.948,0.964,0.771,1.026,0.909,1.004,1.044,0.908,0.97,1.055,0.839,1.022,0.946,0.937,1.029,0.852,0.952,0.919,0.887,1.022,1.168,0.903,0.935,1.036,0.886,0.945,0.988,1.052,1.098,1.247 +NM_021237,0.651,0.938,1.072,0.963,0.752,0.908,0.756,0.537,0.987,1.173,0.772,0.844,0.748,0.51,0.802,1.19,0.836,0.884,0.805,0.916,0.58,0.585,0.897,0.983,1.364,0.951,1.206,0.761,0.396,0.9,0.894,1.335,1.041,1.223,0.662,1.04,1.186,0.801,1.437,1.203,1.242,1.346,1.034,1.065,1.006,0.944,0.94,0.761,1.037,0.819,0.854,0.921,0.987,1.755 +NM_021238,0.428,1.13,0.864,0.613,0.64,1.427,0.596,0.549,0.832,0.738,1.371,0.859,0.61,0.6,0.979,1.521,0.594,0.691,0.69,1.785,0.353,0.434,1.503,0.908,0.492,0.418,1.069,0.618,0.287,1.315,0.614,1.088,4.105,1.439,0.158,2.44,1.191,0.48,1.004,2.364,0.672,1.124,1.024,2.586,0.605,1.202,1.076,0.335,1.115,0.489,1.24,1.298,1.398,2.74 +NM_021240,1.053,0.928,0.983,0.995,1.088,1.062,0.953,0.957,0.957,1.053,1.07,1.057,1.026,1.03,1.066,1.038,0.962,0.925,0.873,1.015,0.971,1.128,1.118,1.045,1.039,1.025,0.932,1.28,0.861,0.947,1.021,0.965,1.132,0.931,1.024,0.984,0.957,1.046,1.0,1.049,1.234,0.997,0.977,0.904,0.925,1.019,1.111,1.345,0.935,1.085,1.147,1.044,1.165,1.059 +NM_021242,0.791,0.976,0.87,1.083,0.717,1.722,0.962,0.704,0.717,0.91,2.129,0.61,0.818,0.765,1.013,2.708,0.778,0.873,0.983,0.952,0.858,0.668,1.595,0.723,1.07,0.859,0.952,0.638,0.814,1.484,0.962,0.916,1.715,2.056,0.578,0.829,1.382,0.651,2.339,0.866,0.717,1.46,0.69,1.017,1.056,1.276,0.736,0.844,0.832,1.124,1.597,1.081,1.056,1.035 +NM_021244,3.419,0.374,6.053,0.92,3.42,0.375,0.316,2.835,4.484,3.212,0.315,5.693,2.971,2.127,2.443,1.162,3.407,1.313,6.002,0.395,1.863,4.863,0.57,4.147,0.303,3.267,3.113,4.892,0.32,0.38,3.45,0.687,1.152,0.472,1.349,0.341,0.308,5.144,0.447,0.79,5.926,0.963,0.294,0.315,4.142,0.267,2.424,2.707,0.376,5.613,0.859,0.641,3.162,0.622 +NM_021245,1.539,0.978,1.07,1.049,1.599,0.923,0.981,1.383,1.628,1.137,0.909,0.956,1.088,1.311,1.05,1.106,1.2,1.279,0.851,0.834,1.08,1.562,0.898,1.465,0.906,1.376,1.105,1.323,1.122,0.954,1.536,0.839,1.025,0.937,5.766,1.09,0.978,1.148,0.855,0.982,1.33,0.928,0.835,0.892,1.041,1.014,1.006,1.66,0.92,0.914,0.994,0.883,1.071,0.921 +NM_021246,0.996,0.895,1.03,0.961,0.98,0.948,1.094,0.907,0.967,1.022,1.116,0.996,1.048,1.026,0.79,1.098,0.984,1.046,1.088,1.091,0.926,1.024,1.094,1.01,1.108,1.067,0.928,1.038,1.062,0.972,1.05,0.996,1.079,0.915,1.13,1.018,1.063,1.053,0.935,0.882,0.958,1.056,1.155,0.886,1.015,0.835,1.123,1.092,1.023,0.965,1.024,1.023,1.093,0.925 +NM_021247,1.126,0.921,0.889,1.054,1.042,0.983,0.863,0.961,0.904,0.967,1.052,0.94,0.977,0.94,1.083,0.933,1.02,1.012,1.096,0.839,1.043,1.124,0.963,0.979,1.09,1.005,1.185,0.924,0.706,0.936,1.082,1.097,0.895,1.005,1.1,0.933,0.908,1.021,0.949,0.997,1.077,0.951,0.907,0.923,1.148,1.106,1.05,1.013,0.973,0.944,0.915,0.954,1.077,1.086 +NM_021250,0.815,1.134,0.911,1.425,0.855,0.943,0.875,0.86,0.837,0.863,0.792,0.856,0.858,0.668,0.87,1.269,0.915,0.864,0.806,0.984,0.913,0.846,1.229,0.878,1.004,0.834,1.059,0.831,0.565,1.077,0.845,1.648,1.183,1.064,0.905,0.914,1.112,0.771,2.081,6.835,0.889,1.09,1.478,1.065,0.921,1.15,1.517,0.767,0.859,0.835,1.152,5.43,1.083,2.197 +NM_021251,1.029,1.01,0.983,0.839,1.187,1.002,1.016,1.067,0.978,0.981,0.998,1.057,1.094,1.069,0.762,0.916,0.926,0.949,1.141,1.067,0.979,0.968,1.027,1.004,1.152,0.997,1.01,1.223,0.744,0.942,1.001,0.963,0.978,0.96,0.953,1.1,0.983,1.011,1.084,1.079,1.086,1.031,0.751,0.934,1.057,0.999,0.899,0.958,0.979,1.085,0.916,1.02,1.047,1.026 +NM_021252,0.834,0.787,1.637,0.681,1.502,1.21,0.579,1.871,1.821,1.126,0.94,1.791,1.276,0.803,1.292,2.08,1.11,1.264,1.386,0.978,0.38,1.096,1.012,1.628,0.387,0.989,1.669,1.36,0.359,0.954,1.997,1.001,1.833,0.963,1.537,0.39,1.068,1.652,1.128,0.525,1.604,0.874,0.454,0.441,1.3,1.11,1.352,1.487,0.945,1.066,0.989,0.803,0.876,1.513 +NM_021253,0.904,1.009,0.953,1.117,0.978,1.109,0.977,1.235,0.958,0.846,1.129,1.051,0.845,0.981,1.181,0.992,1.036,1.184,1.109,0.958,0.978,1.038,1.065,0.969,0.895,1.167,0.922,1.081,1.554,1.03,0.965,0.923,0.943,1.009,0.977,1.055,0.848,0.945,0.998,0.85,1.122,0.872,1.088,1.218,0.997,1.033,1.002,0.911,1.005,1.055,0.938,0.953,1.13,0.866 +NM_021254,1.4809999999999999,2.216,1.9660000000000002,1.5779999999999998,1.8399999999999999,2.157,1.734,1.489,2.0869999999999997,1.908,1.835,1.742,1.686,1.854,1.896,2.5,1.935,1.754,1.967,2.23,1.756,1.764,2.523,2.325,1.612,1.537,2.029,1.76,1.637,2.145,1.931,2.0629999999999997,3.179,2.33,1.221,1.919,2.0119999999999996,1.9180000000000001,2.498,2.114,1.897,2.237,1.456,2.27,1.892,2.003,2.0620000000000003,1.6360000000000001,1.6520000000000001,1.7759999999999998,2.333,1.7229999999999999,1.853,2.574 +NM_021255,0.828,2.295,1.21,1.132,0.753,1.287,1.416,0.68,0.774,0.775,0.959,0.806,0.718,0.737,0.709,0.907,0.701,1.295,0.861,1.0,0.837,0.73,0.89,0.821,1.664,0.745,0.9,0.745,1.387,1.564,0.858,1.323,1.422,1.913,0.665,1.192,1.241,0.908,1.917,1.122,0.689,1.434,1.024,1.545,0.832,0.764,1.092,0.695,0.805,0.84,0.849,0.87,0.715,1.149 +NM_021257,0.978,0.94,1.096,0.897,1.044,1.029,1.022,1.083,1.006,1.04,0.988,1.107,0.934,1.125,0.94,0.987,0.951,0.973,1.026,0.984,0.961,1.025,0.987,1.045,1.063,1.081,1.014,1.069,0.602,1.034,0.975,0.971,0.99,1.037,0.958,1.05,1.039,1.027,0.978,1.085,0.921,0.903,1.142,1.053,1.123,0.957,0.963,0.926,0.974,0.923,1.203,1.034,0.965,0.941 +NM_021258,0.944,0.661,1.265,0.871,1.131,1.106,0.822,1.024,1.394,1.311,0.887,0.949,0.782,0.682,1.406,1.292,1.184,1.083,1.577,0.826,0.93,1.19,1.062,1.394,0.628,1.089,1.186,1.037,0.594,1.237,1.083,0.773,0.949,0.924,0.895,0.855,0.798,1.031,1.427,0.86,1.092,1.046,0.786,0.864,1.468,0.942,1.335,1.346,1.093,1.534,0.963,0.673,1.019,0.933 +NM_021259,1.289,0.963,0.783,0.846,0.651,1.908,0.572,0.921,0.907,0.53,1.553,0.673,1.16,0.669,0.945,1.266,1.057,1.214,1.008,0.969,0.453,1.54,0.698,0.894,1.64,1.054,0.669,0.732,0.944,1.276,1.016,1.116,0.96,1.276,1.894,0.527,1.055,1.002,2.762,0.86,0.712,1.444,1.036,1.751,0.506,1.1,1.162,2.1,0.855,0.695,1.078,0.468,0.702,0.808 +NM_021260,1.072,0.984,1.018,0.895,1.159,0.907,1.055,1.071,1.012,1.028,0.971,0.962,0.99,0.891,0.825,1.013,1.058,0.995,1.084,0.791,1.06,1.022,0.933,1.047,0.933,1.059,1.069,1.031,0.838,1.061,1.233,1.01,0.801,1.053,1.2,0.971,0.946,1.04,0.941,1.009,1.023,0.974,1.029,1.176,1.061,0.908,1.01,1.011,0.949,0.891,1.029,0.947,1.027,0.923 +NM_021268,1.051,0.991,1.104,1.049,0.887,0.989,0.872,1.014,1.036,0.978,0.965,1.013,0.934,1.028,0.983,0.913,0.968,1.024,1.067,0.912,1.048,0.956,0.906,0.902,1.131,1.2,1.021,1.025,1.103,0.983,0.991,0.96,0.962,1.002,1.073,1.077,1.079,0.999,0.928,0.928,0.979,0.916,1.012,0.985,0.981,0.997,0.912,0.989,0.911,0.961,0.961,1.129,0.972,1.005 +NM_021270,1.109,1.076,0.917,1.062,1.065,0.998,1.013,1.144,1.122,0.964,1.084,0.905,0.941,1.045,0.982,0.992,0.981,0.985,1.001,1.164,1.046,0.986,1.039,0.989,0.986,1.023,0.96,1.091,0.918,1.045,0.91,1.052,1.018,0.886,1.123,1.041,1.003,1.072,0.986,0.948,0.778,1.057,0.915,0.904,1.031,1.018,1.145,0.971,0.972,1.029,1.065,1.016,0.915,0.994 +NM_021571,1.837,0.758,1.492,1.142,3.797,0.693,0.66,1.002,2.463,3.182,0.699,4.131,1.599,1.475,1.404,1.59,1.494,2.881,4.28,0.811,1.008,1.2,0.689,3.039,0.807,1.311,2.766,2.02,0.597,0.708,1.689,0.776,1.115,0.694,1.231,0.867,0.725,1.514,0.788,0.751,1.067,0.768,0.796,0.771,1.457,0.892,2.487,1.473,0.762,1.676,0.914,1.478,1.543,0.998 +NM_021572,1.025,1.319,0.756,0.892,0.946,0.904,0.834,1.038,0.976,0.901,0.899,0.966,0.907,0.866,0.897,1.243,0.956,1.095,0.851,0.976,1.03,0.941,1.129,0.794,1.02,0.942,1.128,0.944,1.185,1.112,1.031,2.481,1.158,1.383,0.957,0.966,1.047,0.948,1.219,1.106,0.987,1.141,1.341,0.923,0.8,1.079,0.94,1.026,0.857,0.85,0.886,0.873,0.975,1.482 +NM_021574,1.275,1.026,0.871,0.97,1.119,1.2,0.541,0.874,1.657,1.427,0.727,0.861,0.948,0.844,0.964,0.795,1.147,0.792,1.217,0.931,0.809,1.679,1.172,1.008,0.693,1.794,1.445,1.007,0.796,0.85,1.143,0.773,1.349,1.126,1.502,0.906,0.818,1.114,2.238,0.861,0.95,0.873,0.953,1.151,1.096,0.577,1.012,2.776,0.624,1.046,0.925,0.631,1.114,0.977 +NM_021599,0.943,1.119,1.149,1.047,1.142,1.307,0.918,0.939,0.919,1.001,1.543,0.874,0.898,0.943,1.033,0.991,0.91,0.979,0.914,0.997,0.896,0.879,0.8,1.022,1.015,0.942,0.966,1.09,0.85,0.88,0.954,0.863,1.028,0.992,1.073,0.902,1.062,0.899,1.144,0.985,0.953,1.092,0.925,1.013,1.052,0.984,0.934,1.012,1.168,0.936,0.854,0.889,1.259,0.942 +NM_021601,0.715,1.069,0.874,1.307,0.795,1.297,5.333,0.684,1.0,0.801,0.982,0.811,0.825,0.724,0.973,0.962,0.821,1.382,0.674,1.088,0.824,0.717,1.046,0.853,1.055,1.07,0.827,0.764,1.383,1.22,0.779,0.736,1.007,1.83,0.812,1.008,1.955,0.94,1.356,0.859,0.852,4.594,0.861,0.792,0.776,1.099,0.875,0.881,0.797,0.863,1.576,0.884,0.967,1.542 +NM_021602,0.852,0.934,1.01,0.983,0.911,1.011,0.927,0.931,1.024,1.023,1.022,0.889,0.96,1.046,1.174,1.053,1.006,0.972,1.082,0.833,0.944,0.879,1.053,0.98,0.805,0.941,0.912,0.905,0.723,1.051,1.043,1.158,1.085,0.93,0.866,1.011,0.916,0.916,1.114,1.134,1.079,1.367,0.967,1.028,1.042,0.925,1.09,0.949,0.897,1.041,1.05,0.925,0.9,0.995 +NM_021612,0.942,0.842,0.997,0.952,1.042,0.943,1.226,1.089,0.808,1.037,1.102,1.144,1.147,1.096,1.141,1.035,0.844,1.003,1.092,0.956,1.076,1.073,0.975,1.069,1.114,0.924,1.022,0.995,0.895,0.916,0.937,1.298,1.062,0.875,1.223,1.119,1.034,0.983,0.916,0.904,0.843,1.071,0.883,0.872,0.79,0.901,0.985,0.933,0.915,0.94,1.081,0.872,1.082,1.109 +NM_021614,1.036,0.94,0.922,1.043,0.973,1.039,0.923,0.945,0.978,1.139,1.12,0.867,1.063,0.916,0.917,0.886,0.808,1.007,0.979,0.911,0.956,1.06,1.162,1.062,1.122,1.007,0.908,0.995,1.07,0.961,0.876,1.049,1.237,1.067,0.973,1.09,1.076,0.964,0.939,0.949,1.189,0.961,0.937,0.997,1.025,0.959,0.913,1.064,1.112,0.895,0.952,1.074,0.89,1.091 +NM_021619,1.047,1.239,0.838,0.929,1.064,1.073,1.33,0.942,1.044,1.025,1.115,1.009,0.983,1.011,1.152,1.425,1.242,1.044,0.962,0.912,1.106,0.942,1.25,0.91,1.148,1.017,0.989,1.03,1.132,0.939,0.946,0.983,1.006,0.984,0.988,0.775,0.954,1.514,0.9,1.004,1.083,1.164,0.876,0.817,0.975,1.146,0.742,0.788,1.198,0.761,0.939,0.773,0.784,1.064 +NM_021620,1.043,1.134,0.968,1.07,1.137,0.955,0.973,0.798,0.934,1.022,0.923,1.06,1.189,1.106,0.904,0.977,1.032,1.117,0.932,0.906,0.997,0.925,0.94,1.047,0.973,1.0,1.205,1.007,1.145,1.126,0.859,1.033,0.732,0.972,1.018,0.954,0.926,1.053,1.058,0.949,1.0,1.033,0.881,1.074,1.064,1.033,0.936,0.997,1.053,0.827,1.017,1.015,0.878,1.066 +NM_021622,0.662,0.931,1.372,0.544,0.785,1.528,1.405,0.565,1.013,0.803,1.342,0.847,0.695,0.54,0.926,1.221,0.797,1.46,0.672,1.236,0.508,0.766,1.404,0.847,0.581,0.523,1.098,1.0,0.749,1.443,0.809,1.085,0.765,1.342,0.416,1.853,1.427,0.951,1.477,1.362,0.958,1.148,0.859,1.027,0.9,1.465,1.123,0.428,0.961,0.677,1.329,1.12,0.793,1.298 +NM_021625,1.054,0.908,1.091,1.026,0.919,1.003,1.039,0.987,1.214,1.01,0.908,1.0,1.116,0.914,0.912,0.957,1.07,1.031,0.965,1.015,1.002,0.961,0.825,1.057,1.106,1.062,0.921,1.047,2.095,1.055,1.044,0.91,0.988,1.124,1.008,0.983,1.019,1.01,1.105,0.895,0.995,0.979,1.259,0.969,1.085,0.943,1.037,1.03,0.949,1.09,1.065,0.943,1.023,0.89 +NM_021626,1.146,0.86,2.528,0.769,1.307,0.617,0.59,0.522,1.669,1.627,0.732,0.857,1.049,1.168,1.407,0.899,1.312,1.097,2.284,0.664,0.769,0.959,1.007,1.612,0.617,1.437,2.345,1.143,0.263,0.897,1.289,3.627,1.184,1.067,0.331,0.318,0.564,1.457,0.781,0.498,1.278,1.106,0.317,0.767,1.499,0.437,1.13,1.188,0.31,1.45,0.653,1.135,1.712,1.483 +NM_021627,0.802,1.03,1.143,0.854,1.083,0.956,0.869,0.828,1.228,1.112,0.896,0.923,0.759,1.058,0.963,0.905,0.994,0.986,1.067,0.774,0.947,0.846,0.971,1.147,0.784,0.99,1.221,1.175,0.65,0.999,1.143,1.344,1.466,1.054,0.934,1.014,0.996,1.077,1.098,0.865,1.196,0.916,0.981,1.264,0.988,1.028,1.01,0.918,0.994,0.796,0.907,0.887,1.105,1.609 +NM_021628,1.001,0.949,0.966,0.921,1.24,0.904,1.132,0.971,1.164,1.325,0.923,1.206,0.969,0.836,1.044,0.992,1.023,1.252,1.13,0.966,0.898,1.071,0.928,1.268,1.127,0.974,1.262,0.902,1.083,0.967,0.866,0.999,1.091,0.914,1.035,1.147,0.938,0.942,0.867,0.991,1.37,0.908,1.284,0.981,1.286,1.004,1.15,0.999,0.977,1.449,0.998,1.019,1.069,0.917 +NM_021630,1.759,0.882,1.345,1.194,1.464,0.955,0.808,1.248,1.5,1.341,0.753,1.321,1.485,1.288,1.069,1.157,1.821,1.189,1.684,0.82,1.339,1.622,0.84,1.774,0.856,1.926,1.373,1.279,1.121,0.797,1.242,1.104,0.941,0.841,1.545,0.718,0.82,1.692,1.146,0.738,1.627,0.844,0.893,0.9,1.552,0.804,1.077,2.119,0.833,1.489,0.865,0.835,1.4,0.814 +NM_021631,1.012,1.03,0.957,1.12,1.135,1.071,0.785,1.026,0.925,0.998,0.916,1.242,0.918,0.917,0.869,1.244,0.996,1.035,0.887,0.927,1.065,0.906,0.971,1.018,1.012,1.044,1.178,0.915,1.116,1.063,0.996,1.056,1.083,0.948,0.925,1.108,0.999,0.977,0.915,1.079,0.968,0.959,0.937,0.964,1.004,0.98,1.05,0.998,1.013,0.992,0.973,1.023,0.901,0.99 +NM_021632,0.855,1.353,1.297,0.873,1.015,1.264,0.953,0.847,1.17,0.856,0.965,0.92,0.918,0.929,1.04,0.612,0.976,0.925,0.984,1.531,0.693,1.046,0.632,1.146,0.895,0.944,1.32,1.075,0.699,1.262,1.042,1.433,1.487,1.578,0.745,0.559,0.903,1.141,0.932,0.889,1.162,1.515,0.708,0.636,0.958,0.645,1.047,0.921,0.837,0.821,0.996,0.825,0.766,0.762 +NM_021633,0.653,1.041,1.291,0.764,0.848,1.291,0.769,0.542,1.032,0.699,1.141,0.786,0.588,0.768,1.1,1.384,0.86,0.764,0.877,1.389,0.504,0.712,1.227,1.006,0.647,0.627,1.168,0.904,0.461,1.523,0.911,1.258,1.379,1.588,0.414,0.916,0.922,0.691,0.948,1.181,1.043,1.189,0.698,1.235,0.868,1.225,0.9,0.583,1.037,0.654,1.117,0.666,0.966,1.227 +NM_021634,1.129,1.049,0.953,1.001,0.946,1.113,0.94,1.243,1.066,0.896,0.976,1.03,0.985,0.93,0.915,0.919,1.042,0.912,1.113,1.031,0.988,0.971,0.942,0.982,1.081,1.143,1.157,1.04,0.622,0.986,1.027,1.192,0.958,0.949,1.055,0.915,0.904,1.058,1.003,0.974,0.963,0.997,0.921,1.183,1.063,0.889,1.088,1.029,1.061,1.016,1.085,0.978,0.925,0.983 +NM_021636,1.096,0.949,0.922,1.077,0.963,0.948,0.869,1.201,1.183,1.078,0.891,1.022,0.96,0.823,1.213,0.962,0.828,0.973,1.128,1.013,1.142,1.111,1.051,1.128,1.113,1.123,1.084,0.882,0.774,0.962,0.891,0.956,3.681,0.998,0.885,1.14,0.995,1.137,0.864,1.004,0.936,1.167,0.943,3.079,0.959,1.071,0.991,1.002,0.911,0.942,1.057,0.925,1.269,0.859 +NM_021637,0.917,1.032,1.044,0.984,1.058,1.002,0.814,0.908,0.967,0.917,0.992,1.029,1.081,1.123,0.951,1.11,0.995,0.933,1.057,0.964,0.847,0.955,1.045,0.966,1.007,1.066,1.217,0.966,0.949,1.061,0.924,1.313,0.863,1.213,0.986,0.983,0.963,1.184,1.001,0.986,1.157,1.184,0.891,1.134,0.878,1.03,1.021,1.068,1.048,1.022,0.991,0.881,1.168,0.911 +NM_021638,0.828,0.976,1.009,0.834,0.777,1.177,0.87,0.777,1.039,0.738,0.9,0.894,0.797,0.812,0.911,1.246,0.747,0.963,0.635,1.206,0.768,0.755,1.193,0.865,0.962,0.855,1.034,1.09,0.746,1.224,0.881,3.045,1.194,1.305,0.724,0.787,1.0,1.208,1.294,1.55,0.886,1.375,1.023,1.289,0.78,1.157,0.82,0.767,0.913,0.853,1.229,1.272,0.774,1.0 +NM_021639,0.862,0.916,1.218,0.825,0.897,1.146,0.736,0.88,1.175,0.79,1.261,0.787,0.878,0.78,1.083,1.521,1.025,0.98,1.147,1.292,0.627,0.838,1.013,0.834,0.729,0.967,0.959,1.002,0.436,0.941,1.149,0.872,1.603,1.268,1.152,0.799,1.122,0.829,1.085,0.727,1.051,1.127,0.644,1.013,0.902,1.119,0.834,0.908,0.97,1.04,1.001,0.691,0.869,1.634 +NM_021640,0.846,0.924,0.96,0.931,0.784,1.093,0.71,0.664,0.972,0.823,1.29,1.012,0.853,0.778,0.944,1.284,0.823,0.929,1.078,0.979,0.758,0.743,1.207,1.056,0.885,1.003,0.906,0.818,0.703,1.203,0.808,1.228,1.341,1.39,0.544,1.19,1.013,0.932,1.69,0.848,0.941,1.245,0.727,1.665,0.968,0.984,0.997,0.778,0.887,0.953,1.024,0.869,0.957,1.456 +NM_021641,1.97,2.0060000000000002,2.1719999999999997,1.9380000000000002,1.9889999999999999,2.069,2.327,2.0629999999999997,2.001,1.969,1.855,2.2110000000000003,1.98,1.729,2.121,1.911,2.143,1.9020000000000001,1.709,1.8780000000000001,1.8489999999999998,1.853,2.1639999999999997,2.189,1.939,1.992,2.222,2.089,1.624,2.107,1.9869999999999999,2.184,1.9969999999999999,1.975,2.009,1.974,1.903,2.175,1.9169999999999998,2.078,2.005,1.996,1.846,2.016,2.1,2.116,2.027,2.05,1.938,2.061,1.98,1.9689999999999999,2.011,1.975 +NM_021642,0.867,1.058,1.067,1.339,0.875,1.016,0.963,0.873,0.94,0.891,0.965,0.802,0.823,0.792,1.091,0.841,0.769,0.869,0.85,0.907,0.859,0.879,1.052,0.957,1.081,0.865,1.039,0.882,1.02,1.313,0.825,2.387,1.114,1.076,0.884,1.005,0.85,0.905,1.553,5.005,0.921,1.371,1.021,0.944,1.077,1.024,1.074,0.847,0.778,0.794,1.089,2.225,0.982,2.127 +NM_021643,0.623,1.1,0.769,0.852,0.546,1.048,1.038,0.516,0.504,0.604,0.941,0.697,0.536,0.533,0.735,1.06,0.591,0.76,0.557,0.876,0.582,0.535,1.171,0.695,1.389,0.447,0.959,0.518,0.701,1.278,0.556,1.597,0.616,1.25,0.374,1.57,1.078,0.441,1.669,1.234,0.708,1.101,1.266,1.659,0.688,0.985,0.844,0.517,2.057,0.659,1.089,1.418,0.806,1.292 +NM_021644,0.715,1.174,1.09,0.791,0.779,1.688,0.786,0.624,1.223,0.847,0.914,0.886,0.728,0.698,1.109,2.172,0.766,0.829,0.995,1.026,0.602,1.25,1.364,1.532,0.628,0.539,1.887,0.979,0.714,1.563,1.277,1.459,2.212,1.827,0.351,0.502,0.93,1.097,1.33,0.949,1.101,1.573,0.53,0.774,1.0,0.974,0.873,0.802,1.1,0.681,1.132,0.649,0.58,1.544 +NM_021645,0.577,1.015,0.891,0.886,0.683,1.413,0.857,0.516,0.907,0.615,1.1,0.609,0.524,0.584,0.872,1.735,0.673,0.946,0.788,1.631,0.45,0.577,1.31,0.724,0.824,0.641,0.855,0.683,0.701,2.027,0.72,2.376,1.198,1.469,0.4,1.106,1.21,0.633,2.05,0.764,0.776,1.303,0.688,1.703,0.681,1.393,0.94,0.534,1.081,0.628,1.168,1.169,0.754,1.716 +NM_021647,0.959,1.16,0.971,1.136,1.036,0.959,1.021,1.127,1.051,1.136,1.18,0.878,0.931,0.958,0.799,1.043,1.031,0.97,0.899,1.1,1.047,1.055,1.104,1.05,1.092,0.999,0.963,0.977,1.106,0.922,0.981,1.039,1.004,0.974,1.038,1.019,1.053,0.928,0.964,1.02,1.109,1.08,1.013,0.86,0.991,0.922,0.931,0.842,1.158,0.994,0.929,0.995,0.875,1.051 +NM_021648,1.202,0.995,0.962,0.941,1.018,0.923,0.852,0.997,0.989,0.99,1.08,1.036,0.872,0.883,1.146,1.109,0.89,0.964,0.966,0.934,1.088,0.789,1.009,0.852,1.095,1.11,0.963,1.128,0.788,1.015,1.418,1.223,1.08,1.021,1.4,0.888,1.182,0.986,0.973,1.015,1.06,0.991,1.627,0.996,1.0,0.858,1.015,0.93,0.881,0.962,0.966,0.821,0.967,1.013 +NM_021649,0.933,1.031,1.059,0.937,0.977,1.047,1.17,1.173,1.029,1.011,0.876,0.989,1.029,1.283,0.999,0.978,1.078,0.958,0.965,0.912,1.026,1.028,1.02,1.003,0.979,0.998,0.979,1.096,1.686,0.95,0.935,0.83,0.988,0.986,1.103,0.894,0.965,1.003,1.071,1.078,0.972,0.94,1.09,1.069,0.984,0.935,0.925,0.948,1.028,0.815,1.153,0.83,1.195,1.072 +NM_021652,1.024,0.855,1.08,1.03,1.027,1.026,0.918,0.822,1.123,1.005,1.018,0.96,0.99,1.037,1.392,1.052,1.036,0.858,0.991,1.07,1.01,1.011,0.975,1.062,1.062,0.952,1.132,1.028,1.003,0.976,0.979,1.042,0.938,0.936,0.929,1.088,1.084,1.064,0.949,1.294,0.954,0.959,0.811,0.913,1.07,0.954,0.855,1.027,0.964,0.862,0.924,0.928,0.927,1.144 +NM_021705,0.943,1.008,1.036,0.828,1.157,1.03,0.872,0.842,0.972,0.885,0.867,0.896,0.879,0.859,1.001,1.03,0.893,1.001,1.132,1.018,0.942,0.785,1.08,0.973,0.827,0.837,1.023,0.919,0.98,0.924,1.005,1.014,1.166,1.09,0.92,0.864,0.919,1.015,1.287,1.09,1.046,0.935,0.979,1.222,1.019,0.873,0.997,1.033,0.969,0.878,0.972,0.874,1.039,1.379 +NM_021708,1.927,1.684,1.9729999999999999,1.859,2.044,2.033,1.862,1.9979999999999998,1.9649999999999999,2.15,1.6989999999999998,2.0309999999999997,1.924,2.192,1.908,2.1239999999999997,2.037,2.027,1.917,1.9740000000000002,1.974,1.972,1.97,2.128,2.1029999999999998,1.8249999999999997,2.2479999999999998,2.066,2.04,2.0629999999999997,1.948,1.8900000000000001,1.788,2.142,2.055,1.899,2.037,2.056,2.075,1.786,1.879,2.044,1.666,1.869,2.138,2.012,1.984,2.011,1.904,2.099,2.004,1.851,1.9699999999999998,1.939 +NM_021709,0.854,1.227,0.856,1.016,0.743,0.963,0.475,0.366,0.949,0.781,1.386,0.749,0.964,0.522,0.713,1.509,0.767,1.107,1.42,0.796,0.668,0.775,1.39,0.804,0.799,1.158,1.384,0.605,0.485,1.057,0.659,1.606,1.642,1.464,0.156,0.899,1.16,0.942,2.103,0.712,1.017,1.213,0.747,2.741,0.886,0.723,1.285,1.032,0.943,0.881,0.876,0.787,0.865,1.004 +NM_021721,1.046,1.045,0.923,0.929,0.894,0.953,0.998,1.1,0.884,1.017,0.853,1.008,1.045,1.066,1.1,0.878,1.064,1.072,1.036,1.029,0.944,0.99,0.951,0.903,0.942,0.966,1.002,0.944,0.924,1.001,0.962,1.01,0.951,0.963,0.972,0.898,0.994,0.993,0.925,1.122,1.047,0.94,1.378,1.061,1.032,0.913,0.961,0.929,0.957,0.905,1.014,0.779,0.893,0.969 +NM_021722,1.02,0.925,1.05,0.837,1.011,1.101,0.937,0.925,1.0,1.02,0.942,1.074,1.055,1.04,0.884,1.05,0.943,0.967,0.997,1.058,1.083,0.927,0.959,0.978,1.111,1.053,1.077,0.941,0.83,1.052,0.949,1.144,0.998,0.88,0.912,0.883,1.099,1.008,0.971,1.072,0.964,0.918,0.976,1.033,1.129,1.038,1.0,1.011,0.997,0.939,0.985,0.845,1.095,0.916 +NM_021724,1.391,0.837,0.959,0.749,1.221,0.858,0.987,3.179,1.729,0.733,0.745,1.103,1.163,1.04,1.171,1.044,0.812,0.911,1.616,0.784,1.084,1.478,1.036,0.791,0.995,1.619,1.064,1.027,0.692,0.993,2.39,1.238,1.746,1.078,4.08,0.938,1.03,2.053,1.109,1.069,0.856,1.035,0.734,1.311,1.002,0.823,1.01,1.469,1.083,1.173,0.918,0.941,0.864,1.029 +NM_021727,1.033,1.012,0.993,0.993,0.862,0.954,0.782,1.143,0.87,0.945,1.195,0.914,0.937,1.084,0.949,0.944,0.887,0.866,0.953,1.092,1.007,1.063,1.118,0.897,1.101,0.904,1.136,0.895,1.001,0.921,0.855,1.72,1.834,1.007,1.394,1.257,1.07,0.866,1.223,1.732,0.913,0.99,0.869,1.078,0.755,0.802,0.905,0.969,1.087,0.957,0.909,1.003,0.969,1.603 +NM_021728,1.143,1.189,1.116,0.976,1.191,1.06,1.094,1.018,1.043,1.156,0.959,0.996,0.957,1.055,0.909,1.052,1.067,0.898,0.955,0.858,1.037,0.995,1.059,0.975,1.053,0.983,1.063,0.927,0.875,1.07,1.015,1.094,1.016,0.934,1.127,0.994,0.99,1.041,0.74,1.133,0.972,1.016,0.865,1.121,1.008,0.968,1.082,0.914,0.943,1.019,0.956,1.143,1.145,0.946 +NM_021729,0.966,1.023,0.951,1.038,0.973,1.244,0.834,0.664,0.946,0.979,0.971,0.833,0.866,0.901,1.144,1.117,1.152,0.974,0.93,1.018,0.846,1.115,1.102,0.967,0.979,1.092,1.258,0.846,0.952,1.444,0.964,1.484,0.93,1.398,0.905,0.785,1.074,1.167,1.306,0.893,0.907,1.216,0.753,1.308,0.877,1.017,0.802,1.084,0.914,0.862,0.946,0.879,0.88,0.967 +NM_021732,1.084,1.288,0.421,0.566,1.977,1.18,0.626,1.933,1.959,1.057,0.768,0.626,0.456,0.768,1.027,1.068,0.449,1.177,0.563,0.885,1.121,0.656,0.925,0.403,0.407,2.268,0.989,1.689,0.516,1.276,2.325,2.164,0.882,1.125,7.135,1.286,0.791,1.045,1.201,0.446,2.241,0.776,1.291,0.886,0.702,1.685,2.19,2.118,0.638,1.11,0.696,1.559,0.948,1.05 +NM_021733,1.039,0.926,0.998,1.053,0.943,1.036,0.958,0.919,0.853,0.939,1.018,1.118,0.905,0.845,1.038,0.811,0.968,1.001,1.01,0.98,1.11,1.1,0.98,1.026,1.014,0.884,1.119,1.118,0.903,1.077,1.042,0.974,1.007,0.915,1.043,1.009,1.076,1.141,1.178,1.081,1.041,0.897,0.806,1.066,1.09,0.916,0.963,0.953,0.997,1.061,1.037,0.951,1.123,0.985 +NM_021737,0.955,1.035,1.181,1.009,0.829,1.091,0.789,0.907,0.895,1.006,0.956,0.875,0.869,1.005,1.03,0.876,1.033,0.959,1.005,1.038,0.881,0.838,0.971,0.925,1.029,0.989,0.994,0.919,0.758,0.99,0.956,1.581,1.046,1.176,0.728,0.979,0.883,0.9,1.043,1.21,1.017,0.904,1.074,1.073,1.002,1.028,1.006,0.904,1.017,0.863,0.842,0.959,1.006,1.356 +NM_021777,1.048,1.166,0.922,0.927,0.94,1.043,0.92,0.895,0.875,1.086,1.133,1.019,1.013,0.929,0.79,0.882,1.012,1.227,0.874,1.207,0.831,0.862,0.986,0.992,1.095,0.951,1.158,0.928,0.995,1.413,0.916,1.059,0.896,1.41,0.96,0.871,1.054,1.051,1.138,0.95,1.005,1.03,0.907,1.012,0.957,1.192,0.926,0.943,1.048,0.85,1.019,0.765,0.887,0.843 +NM_021779,1.059,0.926,1.099,1.191,1.081,1.028,1.161,1.013,0.999,0.836,1.151,1.039,0.992,0.96,1.123,1.049,1.01,1.073,0.919,1.042,0.922,1.003,1.006,0.955,0.988,0.968,1.067,0.955,1.488,1.081,1.025,0.993,1.011,0.926,1.05,0.873,0.993,0.985,0.966,1.078,0.982,1.034,1.104,0.956,1.036,1.078,0.862,0.993,0.925,0.912,1.01,1.179,0.929,0.973 +NM_021783,1.087,1.163,1.044,0.949,0.961,0.985,1.107,1.023,0.928,0.958,1.102,1.021,0.883,0.928,0.899,0.894,0.996,0.866,1.12,1.121,0.895,1.059,1.034,1.131,0.909,1.035,0.857,0.955,0.769,0.878,1.0,0.894,0.924,0.873,1.087,0.941,1.056,0.914,0.954,0.948,0.853,0.945,1.027,1.041,0.927,1.032,0.946,1.066,1.087,1.041,1.031,1.072,0.864,0.946 +NM_021784,1.042,0.897,1.053,1.1,1.032,1.002,1.073,0.943,1.076,1.262,1.005,1.028,0.929,0.953,0.921,0.925,0.875,0.803,1.162,0.946,1.265,1.123,1.168,1.087,1.051,0.984,0.933,0.947,1.014,1.024,1.105,0.908,0.75,1.066,1.137,0.842,1.017,1.12,1.041,1.171,0.98,0.955,0.801,0.974,1.26,1.143,0.929,0.967,0.872,0.978,1.055,0.926,1.146,0.909 +NM_021785,0.646,1.675,0.701,1.026,0.624,2.138,1.424,0.658,0.623,0.644,2.127,0.613,0.706,0.551,1.269,1.267,0.645,1.301,0.664,1.687,0.675,0.626,1.153,0.657,1.491,0.561,0.675,0.803,1.149,2.356,0.657,3.904,2.776,3.564,0.722,0.687,2.032,0.832,1.449,0.674,0.96,2.37,1.152,0.945,0.67,1.084,0.855,0.647,1.875,0.745,1.693,0.826,0.648,0.784 +NM_021794,1.132,0.835,0.95,1.152,0.99,0.907,0.996,1.002,0.921,1.102,0.992,0.795,0.848,1.594,1.001,0.914,0.986,1.078,1.092,1.033,0.852,0.98,1.014,0.955,1.026,1.111,0.988,1.044,1.057,1.035,1.134,0.871,1.161,1.005,0.923,0.969,1.106,1.004,1.06,1.211,0.87,0.996,1.418,1.279,1.039,0.991,1.066,1.107,1.001,1.099,0.969,0.926,0.805,0.924 +NM_021796,1.005,1.043,0.928,1.034,1.019,0.982,1.171,1.07,0.944,1.005,1.268,1.026,0.989,0.888,0.98,0.971,0.963,0.889,0.984,0.981,1.041,0.994,1.0,1.097,0.927,1.043,0.974,0.975,1.435,0.956,1.0,1.004,1.149,1.103,0.876,1.007,1.05,0.929,1.274,0.99,0.968,0.972,1.065,1.183,0.899,1.016,0.923,0.965,0.944,0.923,0.969,1.217,0.902,1.054 +NM_021797,0.88,31.7,1.011,0.862,0.887,1.135,4.769,0.932,0.935,1.026,0.95,0.878,0.908,0.916,0.862,0.848,0.995,0.952,1.051,1.153,1.133,0.979,0.973,1.035,147.2,1.103,1.084,1.054,1.019,1.03,1.044,0.971,1.107,24.0,1.14,0.982,20.31,1.05,0.917,0.978,0.954,1.035,1.083,0.96,1.003,1.014,0.986,1.014,0.958,1.062,1.098,0.975,0.767,0.93 +NM_021798,2.002,1.847,2.1870000000000003,2.045,2.452,1.955,1.896,1.8039999999999998,2.116,2.284,2.0309999999999997,2.112,2.021,2.251,2.646,2.151,2.067,2.108,1.948,1.9929999999999999,2.043,1.959,2.012,2.085,1.8719999999999999,1.842,2.036,1.917,1.879,1.8609999999999998,1.968,2.003,1.956,1.7469999999999999,2.058,1.9100000000000001,1.874,2.167,2.143,1.8860000000000001,2.2270000000000003,1.98,1.87,1.894,2.094,1.934,1.968,1.909,1.959,2.143,1.923,2.1020000000000003,2.018,2.491 +NM_021800,0.738,0.827,0.727,1.235,0.799,1.428,0.871,0.997,0.851,0.804,1.554,0.725,0.813,0.961,1.333,1.323,0.884,0.978,0.934,1.83,0.882,1.027,1.349,0.746,0.905,0.709,0.872,0.881,0.856,1.075,0.8,0.922,1.243,1.392,0.691,1.243,1.118,0.764,1.297,1.111,0.974,1.306,1.308,2.497,0.913,1.383,0.927,0.798,1.27,0.94,2.996,1.029,0.878,0.897 +NM_021801,1.119,0.959,0.93,0.868,1.009,0.982,1.208,1.026,0.794,1.119,1.246,0.929,1.054,1.033,0.953,0.987,0.901,1.096,1.025,1.118,0.909,0.868,1.123,0.901,1.011,0.869,1.027,0.891,1.162,0.994,1.125,0.937,1.146,0.892,1.012,1.067,1.101,0.914,0.882,0.902,1.043,1.017,0.964,1.01,1.197,1.045,0.957,0.907,0.998,1.025,0.954,0.99,1.202,0.974 +NM_021803,0.935,1.016,1.04,1.027,0.941,0.941,0.834,0.922,0.908,0.869,0.916,0.874,1.074,1.126,0.934,0.973,1.029,0.922,1.032,0.964,1.013,1.061,1.066,1.01,0.954,1.107,0.967,1.057,0.724,1.088,1.008,1.0,0.923,0.99,0.925,1.036,1.053,1.089,0.946,1.08,1.0,0.973,0.866,0.911,1.052,0.933,1.086,1.114,0.942,0.793,1.066,0.944,0.892,1.065 +NM_021804,0.79,2.242,0.982,1.524,0.83,1.973,1.164,0.677,0.973,0.743,2.862,0.809,0.758,0.707,3.071,15.13,0.972,0.889,0.926,3.934,0.742,0.729,1.769,0.891,0.833,0.825,0.871,0.767,0.631,1.062,0.904,0.716,0.826,1.316,1.061,0.73,11.23,0.724,1.471,0.748,0.93,5.338,3.587,0.706,0.909,5.354,3.304,0.84,5.273,0.909,3.87,0.799,0.946,1.163 +NM_021805,0.588,0.97,0.683,1.068,0.552,1.206,0.838,0.556,0.621,0.683,1.169,0.604,0.787,0.658,0.981,1.636,0.656,0.875,0.845,1.085,0.729,0.703,1.127,0.599,1.058,0.818,0.708,0.665,0.694,1.55,0.682,1.368,2.122,1.839,0.597,3.234,0.998,0.652,1.729,1.555,0.648,1.414,0.765,3.292,0.693,0.937,0.803,0.888,1.128,0.632,0.965,0.867,0.846,1.393 +NM_021806,0.986,0.812,0.908,0.987,0.76,1.413,0.625,0.857,0.771,0.781,0.995,0.919,0.997,0.663,0.886,1.64,0.818,1.15,1.281,1.034,0.897,1.075,0.923,1.027,1.006,1.079,1.041,0.664,0.829,1.273,0.766,1.001,1.534,1.558,0.432,0.591,1.131,1.071,1.653,0.599,0.888,1.095,0.743,1.452,0.814,1.054,1.098,1.117,0.84,0.999,0.988,0.685,0.814,0.931 +NM_021807,0.998,1.037,1.315,0.898,1.28,0.917,0.699,0.671,1.204,1.228,0.94,0.956,0.771,0.818,0.766,1.089,1.225,1.135,1.002,0.988,0.831,1.043,1.408,1.052,0.876,1.331,1.129,0.889,0.744,1.207,0.868,0.982,1.027,0.98,0.601,0.708,0.789,1.227,1.128,0.768,0.958,1.003,0.783,0.877,1.087,0.929,1.032,1.264,0.786,1.144,0.967,0.829,0.97,0.941 +NM_021808,0.983,1.149,1.044,1.071,0.961,1.084,0.971,0.921,1.036,1.071,0.938,0.988,0.898,1.075,1.018,0.996,0.996,0.892,0.971,1.051,1.127,1.006,0.908,1.083,0.991,1.016,1.013,0.975,0.95,0.981,1.016,1.244,0.999,1.03,0.853,1.64,1.012,1.03,1.039,0.981,0.856,0.958,0.884,1.126,0.9,0.939,0.934,1.106,0.905,0.985,1.032,0.831,1.036,0.907 +NM_021809,0.836,1.038,1.059,0.74,0.926,0.98,0.648,0.793,0.977,1.175,0.781,0.812,0.888,0.731,0.799,0.899,0.926,0.76,1.062,0.829,1.041,0.899,1.475,1.098,0.839,1.096,1.212,0.797,0.69,1.103,0.981,1.944,2.129,1.101,0.668,0.752,1.034,0.978,1.517,3.149,0.882,1.216,0.724,1.545,0.984,0.82,0.859,0.906,0.804,0.866,0.794,1.262,1.179,2.814 +NM_021810,1.147,1.029,1.349,0.931,0.972,0.91,0.92,1.177,2.321,1.01,0.858,0.993,1.181,1.083,1.043,0.908,1.436,1.168,1.484,0.934,1.101,0.975,0.903,1.062,0.956,0.965,3.968,0.941,0.948,0.949,1.037,0.962,0.993,0.997,1.174,0.885,0.963,1.334,0.984,0.92,1.194,1.075,0.768,0.943,1.192,0.897,1.068,1.238,0.838,1.209,0.984,0.925,1.264,0.994 +NM_021813,1.062,1.024,0.998,0.999,1.089,1.074,1.099,0.795,1.142,0.997,1.049,1.03,0.971,0.968,1.052,0.988,1.043,0.93,0.903,1.125,0.893,1.01,1.014,1.012,0.899,1.053,1.104,1.098,1.162,1.017,0.834,1.156,0.985,0.964,1.183,0.917,0.976,1.075,1.043,0.938,1.046,0.972,0.896,1.036,1.021,0.993,1.003,0.957,0.908,0.985,0.942,0.982,0.947,0.876 +NM_021814,0.916,0.753,1.235,0.784,1.108,0.724,0.701,0.74,1.705,1.537,0.702,0.836,0.733,1.275,0.972,0.629,1.109,0.682,1.558,0.997,0.97,0.684,1.955,1.533,0.566,1.511,2.019,0.947,0.547,0.925,1.57,2.001,3.972,1.01,0.802,1.18,0.658,0.812,1.052,1.46,1.493,1.214,0.641,0.557,1.185,0.668,0.873,0.812,0.638,1.134,0.765,1.624,1.613,1.196 +NM_021815,0.973,1.236,0.963,1.083,1.099,1.087,0.848,1.045,1.045,0.999,1.055,0.954,1.1,0.923,0.919,1.053,1.059,1.01,0.937,1.037,0.964,1.076,1.082,1.003,0.947,0.9,0.968,0.873,0.977,0.959,1.048,1.005,1.001,1.102,1.052,1.017,0.885,1.007,0.914,1.096,0.958,0.947,0.953,1.045,1.11,0.94,0.879,1.039,0.97,1.022,1.071,1.09,1.053,1.242 +NM_021817,1.144,1.064,0.97,0.982,0.928,1.171,0.915,0.895,0.969,1.043,1.072,1.044,0.916,0.96,0.855,1.088,0.892,1.188,1.018,1.039,0.938,0.976,0.989,0.937,1.0,0.997,0.993,0.925,0.923,0.979,0.967,1.004,1.019,0.9,1.087,1.077,1.033,1.179,1.138,1.029,1.084,1.063,0.89,1.046,1.038,0.953,1.044,1.12,0.962,1.043,0.955,1.008,1.243,1.052 +NM_021818,0.777,1.035,1.221,0.851,0.819,0.988,0.827,0.637,0.982,0.882,0.951,0.766,0.61,0.685,0.892,1.273,0.842,0.999,0.958,1.087,0.763,0.681,1.147,0.968,0.975,0.729,0.99,0.848,0.692,1.148,0.897,1.488,2.188,1.289,0.475,1.545,1.13,0.796,1.345,1.791,1.141,1.233,0.649,1.597,0.852,0.811,0.97,0.683,1.01,0.902,1.103,0.996,0.827,1.782 +NM_021819,1.122,0.934,1.015,0.958,1.05,0.935,0.986,1.055,1.011,1.047,0.854,0.94,1.095,1.126,0.846,0.898,0.921,0.913,0.947,1.004,1.029,0.993,1.073,1.011,0.893,0.982,0.979,1.034,0.886,1.113,1.044,1.122,0.885,0.96,1.098,0.989,0.946,1.112,1.031,0.957,0.943,1.051,0.931,0.938,1.095,1.16,1.033,0.989,0.897,0.949,1.041,1.084,1.058,0.998 +NM_021820,0.805,0.953,0.959,1.025,0.869,1.064,0.845,0.796,1.121,0.968,1.094,0.863,0.765,0.775,1.09,1.173,0.843,0.888,0.81,1.111,0.796,0.799,1.127,1.061,0.81,0.849,1.254,0.876,0.846,1.132,1.006,1.067,1.545,1.071,0.763,0.986,1.108,0.709,1.032,1.037,0.974,1.072,0.861,1.218,0.805,1.158,0.961,0.741,1.26,0.857,1.117,0.86,0.88,1.491 +NM_021821,0.542,1.143,0.754,1.013,0.565,1.728,0.835,0.403,0.678,0.701,1.63,0.617,0.553,0.386,0.937,1.875,0.524,1.072,0.856,1.228,0.382,0.568,1.625,0.827,0.918,0.609,1.002,0.566,0.584,2.034,0.574,0.731,3.328,1.895,0.168,2.036,1.811,0.679,2.343,0.731,0.775,1.516,0.843,1.423,0.732,1.609,1.143,0.588,1.483,0.507,1.393,0.727,0.566,1.312 +NM_021822,1.004,0.947,1.055,1.063,1.018,0.989,0.942,0.95,0.986,0.921,0.88,1.0,1.055,0.938,1.033,0.963,0.966,1.028,1.027,0.849,0.936,0.884,1.048,0.906,0.971,1.013,1.069,1.019,0.984,0.991,0.977,1.139,0.969,1.049,1.012,0.979,0.939,0.938,1.079,0.976,1.112,1.054,0.973,1.076,1.064,0.926,0.881,1.138,1.136,0.931,0.847,1.139,1.149,1.571 +NM_021823,0.939,0.972,0.983,1.215,1.211,1.034,1.01,0.925,1.01,0.998,1.164,0.892,1.041,0.93,1.148,1.034,1.007,0.892,0.938,1.099,0.949,1.084,1.017,0.969,0.971,0.972,0.931,0.865,0.858,0.953,1.029,0.977,1.121,1.122,0.76,1.188,1.063,0.937,1.171,0.937,0.936,1.055,0.791,1.054,0.904,0.928,0.825,1.048,1.113,0.976,0.975,1.013,0.898,1.158 +NM_021824,0.555,1.052,1.249,0.77,0.869,1.132,0.683,0.477,1.024,0.923,1.104,0.92,0.631,0.671,0.936,1.326,0.88,0.947,1.274,1.04,0.509,0.839,1.231,1.07,0.584,0.568,1.395,0.85,0.503,1.121,0.746,1.12,2.145,1.339,0.271,1.285,1.2,0.81,0.974,0.91,1.132,1.062,0.747,1.601,0.804,1.076,1.006,0.633,1.122,0.625,1.027,0.879,0.978,3.739 +NM_021825,0.667,0.968,1.357,0.587,1.197,1.257,0.484,0.915,1.308,0.905,1.346,1.304,0.869,1.163,1.032,1.645,0.908,0.741,1.829,0.951,0.5,1.124,0.851,1.276,0.401,0.997,1.326,1.319,0.299,1.492,1.141,0.96,1.558,1.334,1.065,1.02,1.1,1.003,0.975,0.752,1.317,0.973,0.569,0.696,0.844,0.952,1.082,0.976,0.605,0.634,0.963,0.76,1.083,1.249 +NM_021826,0.818,0.848,1.071,0.836,0.995,0.81,0.672,0.487,0.987,0.964,0.896,0.648,0.662,0.836,0.955,1.32,0.91,0.973,1.017,0.795,0.718,0.841,1.533,0.906,0.628,1.063,1.237,0.931,0.498,1.135,0.983,1.15,1.515,1.006,0.505,1.16,1.091,0.977,1.159,1.214,1.103,1.128,1.174,1.335,1.104,0.892,0.94,0.775,1.218,0.883,1.182,1.277,0.838,2.054 +NM_021827,0.971,1.066,1.003,0.974,1.033,1.061,0.793,1.135,1.088,1.025,0.972,0.969,0.949,0.938,0.861,0.818,1.02,0.942,0.956,0.987,1.032,1.011,0.947,0.995,1.079,0.929,1.152,0.997,0.701,1.103,1.037,1.05,1.035,0.912,0.976,1.019,0.941,0.917,1.088,1.046,0.989,1.004,0.925,1.075,0.992,1.057,0.966,0.968,1.294,0.87,0.977,1.001,0.993,1.154 +NM_021828,0.918,0.91,0.813,0.883,1.064,0.982,1.054,1.1,0.864,1.004,1.02,0.954,1.012,0.948,0.883,1.127,1.092,1.043,0.981,1.003,1.112,0.957,0.986,1.009,0.979,0.921,1.113,0.986,1.173,1.003,1.114,1.15,0.964,1.067,1.01,0.987,0.9,1.218,0.869,1.039,1.171,1.015,0.898,0.932,0.943,0.984,0.914,1.017,0.853,1.022,1.168,0.951,1.07,1.028 +NM_021830,0.963,1.142,0.853,0.843,1.024,0.847,0.683,0.67,1.108,1.314,0.881,0.901,0.831,0.815,0.896,1.046,0.912,0.847,0.836,0.88,0.722,0.921,1.221,1.044,0.892,1.067,1.111,0.827,0.563,0.881,0.98,1.216,1.754,1.061,0.625,2.219,0.958,0.827,1.449,1.296,0.932,0.914,0.971,2.099,0.892,0.797,1.017,0.902,1.177,0.821,1.002,1.067,1.044,1.861 +NM_021831,0.856,1.003,1.039,1.029,0.859,1.01,0.889,0.944,1.136,1.0,0.935,1.057,0.97,1.083,1.041,1.074,1.001,0.957,0.956,0.828,1.003,1.068,0.932,1.005,1.045,0.985,0.901,1.038,1.453,1.032,0.922,1.038,1.909,1.088,1.113,0.896,0.951,0.987,0.91,0.981,0.959,0.789,0.801,1.524,1.002,1.017,1.054,0.984,0.924,0.974,0.911,1.01,1.05,1.06 +NM_021833,1.089,1.024,0.985,0.968,1.048,1.046,1.007,0.872,1.103,1.206,1.014,0.99,0.976,0.951,0.93,0.858,1.051,1.077,0.922,1.109,0.936,0.917,1.046,0.988,0.843,1.048,0.853,1.003,0.994,1.124,0.96,0.969,0.984,0.864,0.999,0.863,0.84,0.966,1.105,0.997,1.11,1.09,0.864,1.035,0.905,1.007,0.953,1.051,1.012,0.932,0.912,1.113,1.122,0.969 +NM_021870,1.058,1.361,0.998,0.805,0.998,1.01,1.036,1.036,1.059,1.041,0.91,1.017,1.024,0.876,0.744,0.847,0.998,0.966,0.847,0.907,1.164,0.924,0.965,0.926,1.346,0.979,1.002,1.066,0.685,0.966,1.006,1.083,1.147,1.545,0.998,0.96,0.956,0.9,0.854,0.958,0.964,1.06,0.86,0.894,0.921,1.022,0.896,0.944,1.148,0.975,0.963,1.016,0.996,0.913 +NM_021871,0.945,1.364,1.019,0.994,1.015,0.931,1.016,0.925,0.862,1.105,0.788,1.067,1.046,0.865,1.316,0.917,0.967,0.895,1.009,0.852,0.989,0.928,0.909,0.998,2.388,1.01,1.116,0.883,0.81,0.99,0.911,1.026,1.029,1.806,0.899,1.002,1.193,0.998,0.911,1.151,0.985,0.799,1.017,0.94,1.03,1.033,1.165,0.971,0.903,0.978,1.064,1.0,0.965,1.004 +NM_021902,1.034,0.931,0.872,1.009,1.042,1.091,0.784,0.931,0.897,1.005,1.092,1.024,0.977,1.007,1.158,0.98,0.876,1.03,0.882,0.947,0.991,1.014,1.099,0.975,0.958,0.896,0.968,0.946,1.015,1.203,0.855,1.184,0.975,1.673,1.052,1.076,0.934,1.121,1.156,0.923,0.949,1.242,0.821,0.945,0.99,0.953,0.963,0.938,0.971,0.933,1.073,0.998,0.872,0.796 +NM_021903,1.9369999999999998,1.847,2.0340000000000003,1.93,1.873,2.0789999999999997,1.8889999999999998,2.148,2.318,1.871,2.103,1.947,1.811,2.234,1.961,1.984,2.021,1.871,1.8479999999999999,1.853,1.818,1.843,1.959,2.06,1.855,2.018,2.376,2.017,2.1,2.1500000000000004,2.3529999999999998,2.934,1.773,2.315,1.9540000000000002,2.013,1.879,2.076,1.88,2.574,2.0229999999999997,1.861,2.114,1.799,1.998,1.83,2.148,1.78,1.986,1.838,2.107,1.737,2.2359999999999998,2.414 +NM_021906,0.649,1.037,1.02,0.539,0.973,1.29,0.732,0.693,0.802,0.795,1.27,1.228,0.649,0.689,1.113,1.58,0.579,1.141,1.066,1.308,0.523,0.85,1.356,0.94,0.804,0.653,0.991,0.77,0.625,1.272,0.764,1.391,1.379,1.276,0.329,0.824,1.789,0.827,1.379,1.062,0.949,1.385,0.949,0.636,0.917,1.034,1.037,0.593,1.315,0.738,1.316,1.585,0.875,1.036 +NM_021910,0.667,1.218,1.674,1.64,0.583,1.948,0.93,0.548,0.582,0.702,2.137,0.74,0.673,0.544,0.994,1.516,1.823,1.296,1.194,1.975,0.915,0.669,1.934,0.757,0.766,1.205,0.867,0.557,0.97,2.29,0.534,0.477,0.766,1.561,0.4,1.224,1.863,0.899,2.013,0.593,0.932,1.949,1.129,1.048,0.726,1.75,1.295,0.656,0.937,0.945,1.516,0.631,1.098,0.544 +NM_021912,0.785,2.3,1.288,0.933,1.2,1.889,1.298,0.867,1.051,0.919,1.041,0.893,1.056,0.978,1.359,1.706,0.878,0.908,1.012,1.099,0.974,1.009,1.073,1.058,1.486,0.867,0.922,1.164,1.049,0.885,1.068,0.907,0.933,2.921,0.886,1.715,3.256,0.971,1.386,0.977,1.004,0.89,1.287,0.932,0.929,3.19,1.141,0.886,0.854,0.996,0.884,1.653,0.889,0.847 +NM_021914,1.8649999999999998,1.947,2.069,2.005,1.908,2.077,2.149,1.7839999999999998,2.064,1.928,2.241,1.7349999999999999,1.955,2.338,1.96,2.175,1.9380000000000002,1.99,2.1,1.915,1.7959999999999998,1.813,1.927,1.96,2.246,1.9529999999999998,2.068,2.24,2.029,2.149,1.903,2.331,2.039,2.408,1.8719999999999999,2.082,2.081,1.8639999999999999,2.036,1.963,2.448,2.404,2.202,1.851,1.9409999999999998,2.0170000000000003,1.9369999999999998,1.7999999999999998,1.885,1.9780000000000002,2.231,2.192,2.194,2.448 +NM_021916,0.985,1.013,0.942,1.0,1.134,0.988,0.822,1.088,0.996,1.157,0.983,1.094,0.794,1.285,1.202,1.032,1.141,1.063,1.138,0.993,0.864,1.15,1.067,1.01,1.053,1.077,0.792,0.881,1.05,1.003,0.9,0.88,0.801,0.955,1.014,0.98,0.953,1.084,1.046,1.035,0.865,1.17,0.943,1.131,0.994,1.011,0.95,1.073,0.866,0.904,0.954,0.935,1.128,1.03 +NM_021920,0.964,0.943,0.979,0.93,1.059,0.982,1.107,0.94,0.843,0.927,1.104,1.02,0.978,0.979,0.894,1.016,0.973,0.919,0.996,0.968,1.005,1.012,0.886,1.033,1.048,1.028,1.142,0.934,1.529,1.026,0.891,1.048,1.064,1.184,1.1,0.903,1.029,0.999,0.867,1.017,0.907,0.952,0.997,1.013,1.059,1.03,0.943,1.031,0.95,0.878,1.057,0.912,0.986,0.968 +NM_021922,0.876,0.893,1.677,0.797,1.451,0.902,0.867,0.801,1.359,1.243,0.725,1.358,0.849,0.869,0.899,0.773,1.208,1.235,1.514,0.865,0.98,1.231,1.125,1.457,0.681,1.06,2.062,1.289,0.562,0.961,0.923,1.266,1.735,0.807,0.686,0.948,0.888,1.415,0.984,0.861,1.7,0.86,0.641,1.213,1.226,0.932,1.372,1.021,0.989,1.001,1.063,0.804,1.073,1.702 +NM_021923,0.67,1.388,0.63,0.918,0.645,1.307,0.957,0.66,0.691,0.707,1.205,0.647,0.658,0.609,1.17,1.176,0.592,0.841,0.653,1.217,0.667,0.608,1.004,0.644,1.451,0.764,0.668,0.611,0.884,1.84,0.627,1.852,7.883,2.089,0.661,0.882,1.034,0.76,1.718,1.523,0.619,1.509,0.922,4.391,0.705,1.064,0.791,0.596,0.896,0.605,1.111,0.691,0.764,1.88 +NM_021925,0.906,1.11,0.969,1.018,0.802,1.296,0.776,0.738,1.032,0.953,0.864,0.824,0.81,0.72,1.1,1.452,0.918,1.085,1.051,1.04,0.765,1.0,1.128,0.822,0.823,0.812,1.151,0.888,0.72,1.181,0.823,0.853,1.787,1.19,0.694,1.082,1.074,0.958,1.187,1.115,0.86,0.976,0.874,1.033,0.97,1.18,0.997,0.878,0.973,0.859,1.142,0.958,0.97,1.044 +NM_021928,0.59,0.926,1.026,0.825,0.86,1.53,1.562,1.012,1.171,0.794,0.754,1.154,1.069,0.498,0.84,1.975,0.854,1.701,1.008,0.987,0.427,1.055,0.708,1.197,0.706,0.595,1.117,0.915,0.796,1.115,0.976,1.197,1.422,1.324,0.503,0.757,1.424,0.903,2.114,0.915,1.134,1.355,0.687,1.063,1.046,0.953,1.634,0.758,1.291,0.805,1.383,0.909,0.625,1.597 +NM_021931,1.075,0.764,1.55,0.987,1.192,0.877,0.79,0.971,1.294,0.934,0.887,0.669,0.997,0.699,1.02,0.946,2.632,1.438,1.301,0.911,0.74,0.788,1.181,1.054,0.821,0.878,1.357,0.748,0.997,1.138,1.342,1.051,1.578,1.333,0.856,0.733,0.865,0.707,1.093,0.961,1.343,0.898,0.741,0.971,1.915,0.76,1.007,0.873,0.775,1.884,0.852,0.835,1.239,1.356 +NM_021932,0.913,0.96,0.958,0.9,0.9,1.266,0.598,0.744,0.963,0.835,0.727,0.826,0.828,0.783,0.929,1.273,1.017,1.092,1.139,1.007,0.859,0.974,0.92,1.178,0.831,1.107,1.176,0.648,0.775,1.296,0.832,1.243,1.168,1.251,0.705,1.161,0.947,1.035,1.651,0.865,0.919,1.128,0.806,1.921,0.935,1.017,0.914,1.056,1.014,0.999,0.874,0.734,0.932,1.196 +NM_021933,0.729,1.178,1.042,0.827,1.057,0.986,0.717,0.602,0.998,1.004,1.225,0.962,0.707,0.616,1.006,1.104,1.002,0.926,0.804,0.915,0.669,0.803,1.482,1.048,0.772,0.817,1.045,0.799,0.833,1.084,0.864,1.498,1.246,0.765,0.619,1.208,1.082,0.956,1.148,1.631,1.106,0.804,1.293,1.481,0.94,1.144,1.191,0.639,1.048,0.83,0.89,1.274,0.802,1.799 +NM_021934,0.66,1.058,0.775,0.811,0.803,1.226,0.783,0.624,0.944,0.953,1.116,0.846,0.683,0.631,0.737,1.27,0.726,0.954,1.045,0.882,0.786,0.92,1.105,1.049,0.921,0.964,0.873,0.729,0.572,1.209,0.861,1.469,1.438,1.456,0.334,1.347,1.07,0.762,1.659,1.279,0.85,1.162,0.872,2.201,0.878,1.015,1.152,0.795,0.969,0.67,0.952,1.004,0.885,1.864 +NM_021935,0.937,0.937,0.897,1.77,0.984,0.89,1.084,0.967,0.867,0.92,0.908,0.908,0.931,1.088,0.975,0.783,0.999,1.019,0.972,0.866,0.898,1.04,0.882,1.001,0.827,0.761,1.083,0.979,1.427,0.96,1.066,1.093,1.248,0.831,1.141,1.118,0.958,1.074,2.58,17.79,1.31,1.552,0.788,1.305,1.762,0.876,1.101,0.966,1.004,1.021,0.948,2.391,0.998,1.06 +NM_021936,1.026,1.051,1.012,0.917,1.008,0.877,0.959,1.212,1.036,0.978,1.02,1.195,1.006,0.942,0.921,0.904,1.064,0.914,0.888,0.967,1.031,0.989,0.934,1.141,1.001,1.173,0.97,0.931,0.669,0.979,1.053,1.059,0.987,0.959,1.088,0.959,0.994,0.907,1.038,0.943,1.094,0.932,0.775,0.903,1.074,1.045,1.153,1.087,1.019,1.057,0.977,1.01,1.108,0.969 +NM_021938,0.875,1.259,1.092,1.045,0.929,0.923,1.069,0.999,1.06,1.017,0.963,1.043,1.063,1.045,0.985,1.093,1.087,1.143,0.789,0.923,0.932,0.952,1.015,1.03,1.184,0.982,1.086,1.052,0.943,0.941,1.07,1.159,0.945,1.171,0.883,0.911,1.004,1.008,1.073,0.97,1.028,0.998,0.955,1.003,0.976,1.075,0.873,0.836,0.783,1.03,0.883,0.994,0.883,1.009 +NM_021939,1.024,1.251,0.981,0.997,0.902,0.933,0.842,0.978,0.962,0.92,0.994,0.878,0.827,1.073,0.969,1.108,0.986,0.978,0.863,0.933,0.909,0.944,1.149,1.117,0.906,0.834,1.042,0.796,0.992,1.637,0.919,2.283,1.198,0.984,0.822,1.168,0.926,0.879,1.56,1.992,1.036,1.038,0.953,1.572,1.017,0.96,1.086,0.908,1.009,0.998,0.978,1.001,0.92,1.102 +NM_021940,0.919,0.996,1.129,0.651,0.951,1.351,0.643,0.741,1.299,0.907,1.143,0.961,0.672,0.868,1.244,2.182,0.753,1.039,1.269,1.564,0.609,0.959,1.107,1.134,0.691,0.831,0.927,1.078,0.612,1.539,1.173,1.132,0.99,1.984,0.329,0.909,2.033,1.297,1.004,0.769,1.102,1.181,0.788,0.724,0.797,1.623,0.855,0.811,1.443,0.728,1.631,0.882,0.822,1.159 +NM_021941,0.667,1.218,1.25,0.506,0.841,1.093,0.482,0.324,1.049,0.694,0.923,0.575,0.42,0.605,0.787,1.204,0.834,0.782,0.969,1.112,0.428,0.872,1.837,0.749,0.739,0.901,1.085,0.824,0.503,1.688,0.711,1.636,2.004,1.188,0.145,0.888,1.37,1.003,1.466,1.248,1.077,1.366,0.438,1.366,0.8,0.864,0.863,0.59,0.436,0.775,1.209,0.763,0.491,3.167 +NM_021942,0.88,0.895,1.364,0.885,1.039,0.997,0.668,0.587,1.336,0.943,1.251,0.655,0.629,0.901,1.136,1.256,0.907,0.886,1.028,1.127,0.726,0.704,0.961,0.88,0.786,0.811,1.288,0.945,0.583,1.195,1.107,1.242,1.438,1.189,0.642,0.617,1.108,0.798,1.187,0.73,1.044,1.109,0.827,1.039,0.951,1.044,0.821,0.697,1.038,0.824,1.043,0.811,1.052,1.446 +NM_021943,0.686,1.189,1.013,0.743,1.009,1.137,0.685,0.653,1.159,0.793,0.982,0.734,0.683,0.64,0.817,1.079,0.901,1.116,0.871,0.882,0.574,0.85,1.07,0.88,0.875,0.796,0.839,1.018,0.695,1.287,0.795,1.729,0.781,1.318,1.092,0.801,0.984,0.961,1.505,1.16,0.947,1.035,0.875,1.274,0.845,1.171,1.147,0.924,1.041,0.778,1.086,0.871,0.785,0.809 +NM_021944,0.651,1.115,1.03,0.755,0.789,1.366,0.873,0.785,1.002,0.805,1.059,1.049,0.779,0.724,1.022,1.2,0.854,0.879,0.776,1.564,0.626,0.936,1.304,0.896,0.827,0.602,1.134,0.889,0.669,1.806,0.79,1.442,1.16,1.723,0.56,0.748,0.98,1.109,1.027,0.831,0.907,1.196,0.814,0.936,0.71,1.005,1.069,0.68,0.959,0.784,1.123,0.939,0.662,1.432 +NM_021945,0.563,1.88,1.3,0.939,0.952,2.09,0.946,0.493,1.002,0.631,1.591,0.767,0.376,0.794,1.393,1.511,0.705,1.513,0.867,2.167,0.416,0.869,1.616,0.784,0.971,0.753,1.168,0.916,0.745,2.097,0.763,0.435,0.667,2.355,0.283,0.375,1.569,0.964,1.085,0.541,0.851,1.829,0.836,0.481,0.68,1.762,0.899,0.558,0.89,0.666,1.622,0.41,0.634,1.027 +NM_021946,0.786,1.199,1.105,0.745,1.019,0.752,0.928,0.745,0.943,1.111,0.767,0.816,0.697,0.888,0.782,0.97,0.894,0.979,0.871,1.17,0.767,0.879,1.299,0.845,0.905,0.948,1.241,0.85,0.726,1.134,0.977,2.696,1.24,0.861,0.804,1.043,0.978,1.055,1.1,2.137,1.02,1.22,0.679,1.759,0.948,1.054,1.332,0.873,0.753,1.112,0.866,1.078,0.768,1.817 +NM_021947,1.015,1.004,1.097,0.988,0.989,1.023,0.881,1.521,1.0,1.142,1.04,0.849,0.94,1.093,1.339,0.953,0.958,0.961,1.057,1.006,0.967,1.033,0.98,0.827,0.974,0.968,1.094,1.051,1.054,0.932,1.154,0.948,1.063,1.118,1.005,1.038,0.926,1.275,0.919,0.982,1.062,0.981,0.766,0.981,1.052,1.044,1.303,0.992,0.95,0.831,1.039,0.946,1.196,0.996 +NM_021948,0.886,1.001,0.883,0.865,0.93,1.083,0.868,1.021,0.872,1.001,0.91,1.122,0.893,0.971,0.933,1.071,0.855,1.072,0.805,0.887,1.044,0.945,1.064,0.861,0.816,0.974,0.965,0.95,0.814,0.934,1.065,1.096,1.045,1.086,1.038,1.634,1.098,1.109,1.045,1.083,1.031,0.879,0.89,0.867,0.942,0.897,1.359,0.976,1.1,1.028,0.965,0.994,1.161,1.056 +NM_021949,1.024,1.079,1.036,1.108,1.042,0.941,0.976,1.23,1.094,0.976,0.975,1.008,1.101,0.987,0.959,0.915,1.036,0.978,1.188,1.076,1.014,1.016,0.992,0.978,0.989,0.87,0.881,1.008,0.77,0.98,1.113,1.062,1.073,1.134,1.004,0.949,0.942,1.112,0.997,0.998,1.087,1.077,0.944,1.094,0.949,0.957,1.049,1.012,1.093,0.971,1.03,0.934,1.246,0.877 +NM_021950,1.06,0.89,1.067,1.211,0.934,0.889,1.532,1.002,1.236,0.831,0.868,0.953,1.023,1.05,0.853,0.884,1.002,1.033,0.834,0.892,1.123,1.023,0.901,1.087,0.9,1.012,0.865,0.985,1.113,0.954,0.926,1.036,0.939,1.067,0.97,1.154,1.11,0.887,0.936,0.801,0.919,1.584,0.974,1.021,0.906,1.036,0.956,1.044,1.076,0.942,1.118,1.047,1.04,1.067 +NM_021951,0.921,0.967,0.991,0.909,0.979,1.09,1.053,1.216,1.15,1.037,0.909,1.053,0.953,0.961,1.118,1.207,0.996,1.011,1.02,1.041,0.907,0.95,1.101,0.938,1.124,0.899,0.983,0.846,0.992,0.955,1.0,1.062,0.928,1.027,1.133,0.977,1.062,0.957,1.021,0.788,0.918,1.025,1.036,0.896,1.067,1.001,1.052,0.968,0.991,1.001,1.046,0.943,0.931,1.046 +NM_021952,1.006,0.95,1.031,0.961,0.968,1.055,0.826,0.972,1.001,0.833,1.138,1.0,0.948,0.81,1.017,0.979,1.138,0.858,1.029,1.012,1.089,0.923,1.173,0.991,1.066,1.004,1.048,1.04,0.853,1.059,1.029,0.867,1.137,0.982,0.857,0.926,1.093,0.973,0.984,0.953,0.997,0.943,0.935,0.925,0.903,1.09,0.875,0.893,1.01,0.969,1.108,1.032,1.108,0.955 +NM_021953,0.679,0.802,1.477,1.02,0.866,1.11,0.898,0.493,0.883,1.084,0.666,0.887,0.816,0.541,0.697,1.163,0.839,0.965,0.923,0.828,0.708,0.747,2.109,1.289,0.656,0.675,1.888,0.756,0.527,1.29,0.679,1.564,4.42,1.024,0.358,2.575,0.952,0.741,2.83,1.984,1.078,0.732,0.716,3.36,0.998,0.934,1.105,0.744,1.346,0.925,1.341,1.129,1.122,2.878 +NM_021954,0.934,1.099,1.008,0.992,0.963,1.072,1.022,0.987,0.875,1.026,0.954,0.926,0.884,0.825,1.071,0.874,0.955,1.027,1.006,0.993,1.033,1.067,1.07,1.141,0.862,0.927,1.151,1.009,1.021,0.948,0.933,0.983,1.071,0.965,1.059,0.935,0.953,1.016,0.916,0.861,1.088,1.039,1.155,0.989,0.865,0.981,1.133,1.021,1.161,0.995,0.904,1.057,0.983,0.959 +NM_021955,0.942,1.0,0.987,1.159,1.109,1.051,0.844,1.092,1.128,0.865,1.167,0.943,0.895,1.1,0.998,0.938,0.979,1.039,1.109,1.001,0.934,1.073,1.087,1.031,0.924,1.029,1.022,0.957,2.091,0.985,0.956,1.012,1.093,0.873,0.902,1.036,0.969,1.076,0.882,1.056,1.163,1.059,0.964,0.878,0.843,1.103,0.979,1.044,0.98,0.908,0.822,0.994,0.945,1.045 +NM_021956,0.946,1.114,1.015,1.036,0.901,0.998,0.949,1.02,1.089,1.002,1.129,0.996,0.917,0.867,0.97,1.049,0.95,1.025,0.983,0.958,0.923,0.922,0.942,1.047,1.05,1.077,0.901,1.066,1.254,1.082,0.977,0.851,1.021,0.956,1.087,0.964,0.903,1.044,0.986,0.985,1.097,1.186,0.919,0.985,0.97,1.183,1.086,0.896,0.941,0.904,1.003,0.898,1.191,0.841 +NM_021957,1.295,0.902,0.957,1.116,1.447,1.016,0.961,1.431,1.322,1.394,1.056,1.296,1.178,1.112,1.384,1.097,0.898,1.399,1.213,1.012,1.051,1.261,0.867,1.086,0.88,1.501,1.128,1.681,1.141,0.914,1.353,0.959,0.874,0.958,2.776,0.925,1.001,2.076,0.938,0.93,1.287,0.904,1.123,0.887,1.132,0.878,1.054,1.545,1.069,1.343,1.008,0.936,0.93,0.884 +NM_021958,0.832,1.14,0.901,0.85,0.916,1.096,0.943,0.722,0.779,0.969,0.896,0.834,0.807,0.751,0.824,0.821,0.821,0.907,0.827,0.67,0.672,0.875,1.188,0.948,0.949,0.775,0.982,0.87,0.708,1.447,0.865,3.625,1.239,1.47,0.672,0.947,1.035,1.023,1.528,3.846,0.901,1.58,0.894,0.914,0.959,0.886,1.055,0.731,0.86,0.787,1.131,1.784,0.775,1.376 +NM_021959,0.604,1.012,0.877,0.877,0.628,1.755,0.694,0.444,0.762,0.722,1.499,0.693,0.477,0.508,1.015,2.021,0.691,0.832,1.035,1.243,0.487,0.503,1.153,0.889,0.933,0.647,0.922,0.616,0.571,1.21,0.713,1.403,1.553,1.943,0.195,1.401,1.275,0.573,1.792,0.758,0.896,1.276,0.902,1.012,0.862,1.512,0.832,0.476,1.336,0.593,1.274,0.606,0.988,1.552 +NM_021960,1.088,0.646,1.513,0.965,1.293,0.761,0.668,0.823,1.327,1.397,1.191,0.866,0.795,0.995,1.204,1.214,1.125,0.979,1.449,0.676,0.884,0.828,0.818,1.178,0.658,1.012,1.202,1.032,0.584,0.831,1.349,0.924,1.197,0.843,1.799,0.749,0.98,0.933,0.965,1.098,1.354,0.846,1.75,0.968,1.203,1.064,1.105,1.125,1.143,1.325,0.877,0.946,1.514,1.405 +NM_021961,1.091,1.045,0.903,1.045,1.101,1.018,1.121,1.003,1.111,1.049,1.066,0.813,1.055,0.962,1.225,0.903,1.052,1.001,0.98,1.17,1.025,1.166,0.995,1.03,1.019,1.061,1.02,0.916,1.168,0.869,1.128,0.907,1.092,0.871,1.22,1.185,1.065,1.024,0.938,0.969,1.154,0.921,1.021,1.012,0.995,0.977,0.797,1.052,0.885,0.953,1.061,1.033,1.005,1.056 +NM_021963,1.126,1.067,0.956,0.99,1.074,1.003,0.945,0.93,1.01,1.139,0.929,1.033,1.07,0.834,0.833,0.993,1.124,0.973,0.952,0.812,0.925,1.032,1.022,1.066,0.9,1.091,0.926,1.102,0.937,1.06,0.957,1.137,0.886,1.14,1.02,1.058,0.986,1.121,1.039,0.984,1.096,0.995,0.864,1.106,0.942,0.974,1.017,0.998,0.973,0.984,0.999,0.954,0.995,0.97 +NM_021964,0.581,0.961,1.265,0.584,0.678,1.149,1.022,0.639,1.069,0.638,1.494,0.921,0.658,0.673,0.874,1.477,0.807,1.135,0.945,1.188,0.656,0.761,1.32,0.828,0.741,0.496,0.995,0.812,0.523,1.727,0.92,1.776,1.577,1.629,0.526,1.223,1.606,0.757,1.118,1.394,0.962,1.559,0.737,1.445,0.959,0.979,0.917,0.406,1.101,0.581,1.186,1.424,0.852,1.204 +NM_021965,1.112,0.987,0.989,0.841,1.028,0.89,1.464,1.097,1.216,0.833,1.013,0.996,0.961,0.997,0.926,1.098,0.949,1.01,0.837,0.866,1.095,0.934,0.879,0.952,1.212,1.003,1.103,1.136,1.169,1.017,0.999,0.901,0.986,0.92,0.97,0.905,0.926,1.011,1.014,0.811,0.878,1.023,0.944,0.839,1.09,1.051,1.194,0.959,1.031,1.102,0.893,1.16,1.041,0.967 +NM_021968,0.65,1.991,1.001,0.735,1.01,1.349,1.045,0.779,0.88,1.125,1.603,1.313,0.792,0.697,1.078,2.013,0.908,1.451,0.998,1.257,0.599,0.695,1.631,0.776,0.563,0.673,0.734,0.8,0.928,1.085,0.728,0.995,1.438,0.936,0.674,0.835,1.52,0.822,0.926,1.692,0.771,1.328,0.96,1.097,0.887,0.989,1.372,0.813,1.012,0.668,1.19,1.029,0.834,1.166 +NM_021969,0.494,3.028,0.404,1.083,0.507,3.211,1.021,0.433,0.416,0.46,2.358,0.449,0.437,0.501,1.354,2.936,0.398,1.046,0.493,1.4,0.5,0.447,1.109,0.444,2.313,0.407,0.511,0.426,1.12,2.042,0.47,0.688,0.646,2.459,0.463,4.073,1.757,0.465,4.454,1.15,0.487,1.417,2.52,0.943,0.417,3.271,0.614,0.411,1.281,0.476,2.422,0.488,0.477,1.569 +NM_021970,0.518,0.85,1.196,0.707,0.899,1.893,0.657,0.845,1.338,1.015,1.333,0.837,0.76,0.846,1.208,2.129,1.037,0.95,1.484,1.0,0.587,0.845,1.08,1.253,0.468,0.725,1.132,0.948,0.458,1.146,1.213,1.0,1.368,1.576,0.409,0.537,1.341,0.862,1.027,0.545,1.218,1.069,0.656,0.81,0.97,1.375,1.019,0.791,1.023,0.718,1.158,0.603,1.107,1.052 +NM_021971,0.816,0.763,0.909,1.288,0.801,1.034,0.787,0.547,1.025,0.956,1.248,0.898,0.781,0.639,1.044,1.901,0.96,1.313,1.364,0.914,0.511,0.905,1.337,1.377,0.917,1.32,1.039,0.877,0.593,1.51,0.822,0.912,0.766,1.231,0.416,0.908,1.482,0.918,1.174,0.527,1.003,1.477,1.083,0.844,1.343,1.579,0.997,1.106,1.561,1.173,1.319,0.877,1.099,1.319 +NM_021972,1.224,0.704,1.175,0.773,1.445,0.772,0.725,2.007,1.465,1.054,0.802,1.319,1.156,1.212,0.981,0.9,1.43,1.063,1.453,0.714,1.436,1.415,0.648,1.05,0.683,1.696,1.07,1.346,0.518,0.797,1.167,1.451,1.084,0.776,1.208,0.766,0.786,1.529,0.893,1.719,1.325,0.856,0.63,1.159,1.123,0.835,1.19,1.786,0.796,1.612,0.922,1.151,1.41,0.861 +NM_021974,0.887,1.103,1.178,0.893,0.747,0.857,0.625,0.487,1.076,1.097,0.887,1.048,0.927,0.624,0.786,1.09,0.844,0.916,1.156,0.877,0.572,0.724,1.041,1.111,0.897,1.274,1.111,0.84,0.443,1.0,0.855,1.296,1.249,1.662,0.142,0.991,0.944,0.828,1.555,0.732,1.072,0.93,0.808,1.21,1.124,0.563,0.868,0.99,1.007,0.902,0.771,1.184,1.043,1.357 +NM_021976,0.983,0.873,0.981,0.843,0.883,0.995,0.729,0.731,1.075,0.762,0.968,0.913,0.738,0.793,1.1,1.306,0.994,0.993,1.663,0.934,0.823,0.988,0.951,0.95,0.713,1.082,1.111,0.729,0.804,1.016,1.029,1.469,2.004,1.211,0.573,1.158,0.871,0.935,1.442,0.852,0.928,1.007,0.571,1.091,0.828,0.803,0.721,1.062,0.803,0.994,1.065,0.73,0.977,1.13 +NM_021977,0.946,1.088,0.942,0.983,0.809,1.026,0.762,1.057,0.871,1.076,1.067,1.047,0.928,0.928,1.29,0.919,0.95,0.918,0.927,0.939,0.99,0.749,1.352,1.011,0.999,1.049,1.027,0.936,1.081,0.911,0.937,1.013,1.0,0.979,1.09,0.856,0.969,0.884,1.004,0.946,1.356,0.942,1.039,0.992,1.046,0.958,0.977,1.207,1.062,1.141,0.871,1.08,1.213,0.961 +NM_021978,0.771,0.981,0.75,1.083,0.742,1.347,0.615,0.571,0.86,0.816,0.993,0.541,0.716,0.592,0.887,1.448,1.004,1.093,0.976,0.889,0.649,1.211,1.155,0.916,0.567,1.319,1.092,0.597,0.966,1.725,0.734,0.763,0.983,0.961,0.666,0.866,1.137,1.059,2.3,1.146,0.916,0.974,0.824,1.425,1.025,0.968,1.265,1.402,1.315,1.083,1.174,0.746,0.806,1.183 +NM_021979,1.854,1.023,1.216,0.943,2.611,0.752,0.632,1.044,2.674,2.274,0.809,1.993,1.462,1.686,1.369,1.01,0.892,1.298,1.836,0.721,1.261,2.692,0.995,1.778,0.661,2.5,1.078,2.725,0.76,0.661,2.489,0.83,1.432,0.909,0.604,0.769,0.769,2.518,1.27,1.167,1.594,1.099,0.817,0.709,1.711,0.611,1.286,1.476,0.669,1.758,1.046,0.793,1.068,0.828 +NM_021980,0.989,0.728,1.252,0.723,1.617,1.685,0.89,0.977,1.606,0.997,1.201,0.791,0.841,0.717,1.337,1.164,1.147,1.109,1.138,1.034,0.438,1.432,0.933,1.018,0.678,1.181,0.912,2.022,0.667,1.183,1.481,1.118,1.003,1.312,2.244,0.909,0.982,1.227,1.165,0.827,1.039,0.967,0.575,1.095,0.923,0.907,1.418,1.632,0.695,0.638,1.135,0.697,0.995,1.307 +NM_021990,0.992,1.047,1.079,1.128,0.952,0.99,1.0,0.991,1.002,1.021,1.037,1.132,1.053,1.103,1.092,0.777,1.0,0.905,0.989,1.108,1.062,1.077,0.91,1.15,0.897,1.032,1.021,0.982,0.715,1.047,0.881,1.029,0.942,1.083,0.953,0.952,1.076,1.111,1.005,0.902,0.992,1.06,1.003,1.16,0.872,1.093,1.067,1.026,0.899,1.064,0.843,1.063,1.04,0.952 +NM_021991,1.922,0.408,1.933,0.864,1.558,0.576,0.301,0.8,1.713,1.853,0.453,1.433,1.054,0.897,1.056,1.051,1.48,1.441,2.948,0.464,1.971,2.169,0.675,1.514,0.319,3.279,1.766,1.126,0.378,0.503,1.677,0.534,2.524,0.555,1.749,0.685,0.489,2.281,1.834,0.397,1.494,0.543,0.34,1.555,2.413,0.4,1.057,3.099,0.522,2.982,0.757,0.793,1.915,0.782 +NM_021992,1.016,0.983,1.243,0.992,0.946,1.092,1.024,0.87,0.996,0.847,0.974,1.032,0.913,0.831,1.021,1.0,0.995,1.064,1.023,0.903,1.077,0.884,1.026,0.974,1.055,0.901,1.142,1.038,0.837,0.991,0.892,3.167,1.175,1.047,0.986,0.922,1.115,0.973,1.155,1.204,0.891,0.949,0.87,1.064,1.057,1.023,0.986,0.919,0.888,0.962,0.977,0.915,1.041,1.128 +NM_021994,0.756,1.167,1.36,0.732,0.972,1.342,0.699,0.766,1.21,0.87,1.633,0.846,0.861,0.802,1.114,1.544,0.857,0.884,1.219,1.387,0.556,0.786,2.004,0.93,0.626,0.696,1.173,1.005,0.505,1.662,0.82,1.332,1.007,1.496,0.577,0.814,1.182,1.065,1.08,0.752,1.003,1.34,0.818,0.672,0.803,1.362,1.048,0.682,0.96,0.707,1.132,0.732,0.98,1.104 +NM_021995,1.072,1.09,1.253,1.031,1.1,0.996,1.064,1.042,1.156,0.879,0.954,1.085,0.939,1.15,0.958,1.261,1.049,1.145,0.938,1.063,0.987,0.982,1.011,1.111,1.055,1.046,0.925,0.911,0.86,0.952,0.939,0.994,1.601,0.924,0.925,1.062,0.931,0.929,0.783,1.281,1.015,0.951,1.057,1.038,1.033,1.139,0.979,0.953,0.893,1.019,0.993,0.897,0.877,1.033 +NM_021996,0.988,1.124,0.889,1.002,0.866,0.889,0.945,0.851,0.911,0.969,1.082,0.884,1.035,0.849,1.08,0.894,1.03,0.836,0.912,0.775,1.005,0.916,1.05,0.962,1.853,1.035,0.945,0.766,0.722,1.206,0.841,1.543,1.087,1.523,0.837,0.841,1.034,0.857,1.039,1.878,1.039,1.061,1.002,0.838,0.819,0.863,1.072,0.903,0.815,1.069,0.856,1.087,1.076,0.967 +NM_021998,1.105,1.146,1.165,0.731,1.088,1.149,1.151,0.969,0.959,0.987,0.868,0.998,0.911,0.896,0.951,1.399,0.902,0.873,0.928,1.1,1.047,1.159,0.958,1.033,0.93,0.863,1.092,1.022,1.224,0.948,1.0,1.195,1.06,1.052,1.223,0.972,0.939,0.855,1.075,0.936,0.819,0.907,1.257,0.873,0.925,1.129,1.037,1.027,1.129,0.959,1.018,0.911,0.931,1.211 +NM_022001,0.92,0.946,1.336,1.045,1.334,1.019,0.809,1.135,1.166,1.194,0.945,1.138,1.041,0.995,1.031,0.956,1.125,1.025,1.493,0.862,1.12,1.076,0.88,1.116,0.892,1.196,1.387,1.27,0.785,0.941,1.091,0.923,1.091,1.107,0.911,0.977,0.966,1.307,0.967,0.941,1.163,0.976,0.759,1.118,1.335,0.962,1.093,1.065,0.874,1.105,0.987,0.96,1.1,0.833 +NM_022002,1.819,2.27,1.754,2.024,1.983,3.629,1.866,1.9209999999999998,1.871,2.045,3.877,2.162,1.8820000000000001,1.681,2.801,4.499,1.766,1.737,1.713,3.471,1.838,1.951,3.0170000000000003,1.821,1.955,1.9489999999999998,1.95,1.889,2.099,3.525,1.8439999999999999,2.221,2.029,2.7720000000000002,1.96,3.482,3.785,1.973,3.13,1.9699999999999998,1.924,3.3280000000000003,3.4010000000000002,2.012,1.946,4.109,3.274,1.9940000000000002,3.117,2.064,3.341,1.734,1.855,2.035 +NM_022003,0.846,1.011,0.868,1.092,1.02,1.144,1.046,1.043,0.933,0.958,0.875,0.956,0.86,0.834,0.911,1.127,0.883,1.034,0.936,1.144,0.98,0.951,1.217,1.034,0.97,0.988,0.974,0.861,0.813,1.305,0.961,2.498,0.919,1.68,0.889,0.968,0.898,1.043,1.089,1.139,0.97,1.44,0.963,0.917,1.02,0.99,0.802,0.966,0.989,0.819,1.004,0.918,0.971,0.862 +NM_022006,0.963,0.917,0.954,1.075,1.151,1.018,1.001,1.028,0.998,1.131,0.928,1.01,0.936,0.865,1.088,0.913,1.024,1.023,1.08,0.971,1.07,1.056,1.069,1.071,1.035,1.081,0.959,0.973,0.98,1.021,0.999,0.929,1.134,0.81,1.104,0.866,1.015,0.856,0.89,1.087,1.248,1.017,1.094,1.104,0.982,0.87,0.964,1.01,0.927,1.03,0.984,0.943,1.131,0.984 +NM_022034,1.132,0.979,1.017,1.276,1.014,1.024,0.852,0.885,0.94,0.996,0.878,1.018,0.879,0.942,1.069,0.896,0.979,0.949,0.854,1.098,1.064,1.006,0.852,1.027,0.882,0.925,1.093,1.006,0.89,1.087,0.994,1.165,0.89,0.956,1.062,0.934,1.002,1.152,1.055,1.069,1.013,0.887,1.025,1.005,1.172,0.927,0.969,0.935,0.922,1.007,0.921,0.882,0.96,1.057 +NM_022036,0.142,3.212,0.287,0.927,0.173,1.922,1.127,0.14,0.162,0.175,0.972,0.141,0.178,0.161,0.528,1.116,0.193,1.374,0.172,1.32,0.136,0.152,1.159,0.156,3.33,0.201,0.187,0.164,1.097,2.671,0.163,1.72,0.356,2.435,0.13,1.093,2.416,0.202,2.507,1.061,0.191,1.494,1.075,2.672,0.183,0.808,0.669,0.165,1.059,0.182,1.453,0.703,0.165,0.634 +NM_022039,1.07,1.061,1.193,0.864,0.831,1.102,0.534,0.627,1.123,1.001,0.831,0.749,0.856,0.921,0.876,1.005,1.009,0.905,1.14,1.024,0.808,1.163,0.932,1.133,1.025,1.214,1.106,0.839,0.579,1.0,0.97,1.315,1.738,1.541,0.503,0.555,0.697,1.359,1.063,0.482,1.005,1.091,0.608,1.199,1.142,0.792,0.677,1.188,0.557,1.065,0.929,0.532,0.881,0.911 +NM_022040,1.034,0.85,1.144,0.879,0.954,0.956,0.983,1.013,0.997,0.993,1.072,0.914,1.038,0.995,1.065,1.027,1.01,1.001,1.036,0.957,0.874,1.055,1.015,0.971,0.954,0.964,0.932,1.063,0.972,0.96,0.969,0.97,1.027,1.033,0.978,0.953,1.031,0.938,0.917,0.889,1.008,1.067,1.083,1.098,1.089,0.958,1.007,1.021,0.908,1.047,1.021,0.965,1.075,0.987 +NM_022041,1.062,1.11,0.943,0.851,0.997,0.912,1.094,1.064,1.0,0.837,0.981,1.178,0.909,0.932,0.951,1.157,0.985,1.14,0.976,0.91,1.054,0.95,1.092,0.981,1.077,1.014,1.079,1.036,0.792,0.982,1.087,0.859,1.119,1.11,0.981,0.895,1.055,1.204,0.917,0.949,1.137,0.906,1.071,1.034,1.041,0.951,1.1,0.998,1.24,1.053,1.079,1.018,1.039,1.036 +NM_022042,0.873,1.092,0.872,0.968,1.148,1.13,1.106,0.952,1.037,0.881,1.025,0.927,0.993,0.822,0.914,0.973,0.885,1.087,0.844,1.151,0.977,0.946,0.984,0.963,1.118,0.975,0.852,1.045,1.028,1.183,0.909,0.927,0.941,1.183,0.926,0.971,1.044,1.097,1.069,1.053,0.864,1.001,0.85,0.938,1.014,0.951,1.053,0.932,0.992,0.999,1.06,1.027,0.856,0.959 +NM_022044,0.42,1.28,0.55,1.03,0.693,1.101,1.016,0.257,0.642,0.687,1.154,0.57,0.423,0.274,0.509,1.839,0.639,1.131,0.723,0.813,0.328,0.666,1.581,0.753,1.38,0.711,0.781,0.53,0.627,1.544,0.411,0.91,0.701,1.416,0.0974,1.897,1.989,0.505,2.301,0.606,0.821,1.941,1.002,1.466,0.686,1.299,1.108,0.665,1.928,0.451,1.505,0.748,0.65,1.124 +NM_022045,1.001,0.897,0.941,1.014,0.996,0.95,0.868,1.125,0.971,0.917,0.906,1.002,0.852,0.92,1.097,1.148,1.049,1.001,0.856,0.955,1.034,0.869,1.228,1.141,0.946,0.97,1.071,0.935,0.85,1.033,0.958,1.14,1.443,0.986,0.934,1.07,0.993,0.952,0.98,1.155,1.026,0.909,1.002,1.077,0.9,1.008,1.054,0.886,1.059,1.016,0.909,1.12,0.966,1.136 +NM_022046,1.045,0.985,0.971,0.992,1.102,1.043,0.942,1.15,1.05,1.222,0.867,1.01,0.955,1.068,0.797,1.292,0.896,1.102,0.947,0.844,0.995,0.947,1.079,1.086,0.893,0.92,1.153,1.063,0.975,0.857,1.0,0.848,1.358,0.959,1.014,1.102,0.915,1.012,0.879,0.957,0.863,0.959,1.086,1.083,1.053,0.916,1.276,0.929,0.915,1.137,1.128,2.776,1.035,0.967 +NM_022047,0.951,0.923,1.332,0.841,0.973,1.163,0.909,0.697,1.215,1.069,0.831,0.889,1.016,0.796,1.016,0.897,0.891,0.869,1.392,0.815,0.939,1.095,0.878,1.081,0.744,1.107,1.61,0.839,0.841,0.974,1.144,0.866,1.179,1.415,0.459,0.563,0.742,1.156,1.263,0.779,1.238,0.987,0.588,1.218,1.076,0.537,0.791,1.044,0.46,0.871,0.855,0.556,1.182,1.608 +NM_022048,0.982,1.134,1.09,1.017,0.964,0.902,0.965,0.778,0.971,1.021,1.148,0.878,1.022,1.152,0.977,1.141,1.014,0.992,1.224,0.903,0.885,1.075,0.986,1.024,0.981,1.076,0.84,0.947,1.339,0.99,1.243,0.884,0.919,1.061,1.028,0.908,1.038,1.12,1.05,0.958,1.04,0.944,1.117,1.089,0.967,1.008,1.044,1.051,1.065,0.962,0.991,1.006,1.053,0.848 +NM_022049,1.074,0.965,1.102,0.94,0.983,0.988,0.944,0.911,0.935,1.147,1.032,1.13,0.912,0.787,0.941,1.112,1.0,1.043,1.024,0.979,1.098,0.898,1.128,1.009,0.968,0.961,0.93,1.161,0.703,1.002,1.006,1.011,0.999,0.973,0.891,1.147,0.973,1.101,0.976,0.954,0.944,0.953,0.87,0.995,0.982,0.972,0.997,0.97,1.059,1.095,1.016,1.039,1.178,0.974 +NM_022050,1.051,0.942,1.001,0.945,0.961,1.02,0.955,1.208,1.022,1.009,0.955,1.071,0.943,0.947,0.9,0.912,1.131,0.999,1.023,1.05,1.158,0.946,0.979,0.875,0.916,1.0,1.082,0.984,0.985,1.155,1.02,1.061,1.018,1.06,1.101,1.127,0.974,0.993,0.978,1.132,0.896,0.895,1.031,0.889,1.086,1.081,1.122,0.948,0.929,1.059,1.026,0.956,0.984,1.058 +NM_022051,0.947,0.926,1.137,0.978,1.031,0.916,0.889,0.785,1.137,1.099,0.956,0.885,0.754,1.066,0.923,1.312,0.928,0.928,1.211,0.953,0.949,0.84,1.045,1.063,0.853,0.999,1.122,1.229,0.56,0.812,1.074,0.946,1.444,0.998,1.089,1.006,1.034,1.17,1.251,0.917,1.13,0.894,0.815,1.154,1.072,1.044,0.966,0.947,1.139,1.173,0.959,0.876,0.907,1.151 +NM_022052,0.94,1.134,0.878,1.223,0.926,2.214,1.03,1.159,0.858,0.916,2.086,0.842,1.144,0.947,1.763,2.871,1.069,0.918,0.934,1.711,0.947,1.005,2.062,0.9,0.95,0.896,0.944,1.131,1.184,1.101,1.065,0.934,0.956,1.023,1.062,0.953,1.602,0.914,0.943,0.832,0.907,1.388,1.254,0.911,0.902,0.876,0.991,1.243,0.908,0.979,2.31,1.011,1.101,0.871 +NM_022053,2.065,1.924,1.952,2.2409999999999997,1.956,2.026,1.976,1.9609999999999999,1.975,2.067,2.153,1.95,2.0869999999999997,2.036,2.333,2.016,2.056,1.959,2.1630000000000003,2.108,2.097,2.002,2.049,2.0709999999999997,2.006,2.072,1.987,1.799,2.222,1.8940000000000001,2.104,1.8519999999999999,1.904,2.011,2.31,2.0759999999999996,2.165,1.875,2.281,1.901,2.182,2.08,1.784,2.302,2.0919999999999996,2.128,1.8929999999999998,2.109,2.064,1.885,1.9899999999999998,1.697,1.8439999999999999,2.254 +NM_022054,1.035,1.217,0.991,1.204,1.165,0.84,1.379,0.884,0.911,0.972,0.926,1.032,1.113,1.205,0.862,1.071,0.974,0.992,0.863,0.921,0.966,0.988,0.933,1.088,0.915,0.997,1.028,1.034,1.142,1.091,0.982,0.997,0.937,0.962,1.13,1.004,1.095,1.088,1.073,1.049,0.951,1.172,1.135,1.045,0.924,0.891,0.993,1.01,0.974,1.107,0.984,1.192,0.947,0.991 +NM_022055,1.179,1.154,0.858,0.89,1.398,0.914,0.995,1.502,1.076,1.044,0.96,1.259,1.072,1.022,1.138,1.04,0.852,0.986,0.868,0.808,0.905,1.285,1.126,1.019,0.959,1.106,1.014,1.447,1.045,1.34,1.377,0.887,0.826,0.988,1.002,0.884,0.969,1.299,1.168,0.837,1.03,1.117,0.848,0.795,1.156,1.08,0.79,1.274,0.844,0.877,0.953,0.839,0.904,1.054 +NM_022059,0.365,1.174,0.656,0.508,0.526,1.489,0.693,0.254,0.585,0.666,1.17,0.331,0.278,0.366,0.701,1.076,0.51,0.693,0.623,1.37,0.364,0.416,1.188,0.695,0.352,0.426,0.799,0.401,0.556,1.453,0.514,2.133,1.776,1.225,0.122,1.306,1.111,0.472,1.391,1.057,0.692,1.4,0.983,1.514,0.626,1.025,1.265,0.347,0.752,0.451,1.363,1.371,0.733,2.653 +NM_022060,0.922,1.119,1.409,0.776,0.953,1.28,1.299,0.61,1.373,0.929,1.131,0.851,0.584,0.921,0.936,1.467,0.963,1.008,1.568,1.015,0.713,0.936,0.75,0.943,0.876,1.042,1.827,0.906,0.924,1.966,0.947,1.325,1.092,1.486,0.434,0.812,1.23,0.674,1.002,0.815,1.082,1.292,0.692,1.627,1.137,0.655,1.034,0.862,0.575,1.012,0.899,0.68,0.838,1.05 +NM_022061,0.607,1.392,0.875,0.623,0.864,1.176,0.703,0.399,0.968,1.173,0.934,1.372,0.669,0.412,0.605,1.112,0.771,0.969,0.901,0.964,0.433,0.702,1.454,1.213,0.603,0.729,1.005,0.872,0.472,1.616,0.669,1.288,1.366,1.137,0.0854,2.261,1.093,0.868,1.203,0.835,1.139,0.942,0.741,1.352,1.089,1.078,1.316,0.619,1.118,0.645,1.298,1.589,0.841,1.774 +NM_022062,1.203,0.936,0.869,1.021,1.509,1.084,1.074,1.206,1.126,1.174,0.842,0.956,0.999,0.952,0.929,1.008,1.064,0.991,0.709,0.967,0.891,0.923,1.031,1.1,1.073,1.248,1.111,0.966,1.024,1.06,1.03,0.867,0.975,1.181,1.233,0.816,0.98,1.23,1.031,0.98,0.97,1.016,1.143,0.946,1.097,0.964,1.026,1.123,0.903,1.137,1.015,0.986,1.242,1.078 +NM_022063,0.784,0.895,0.999,1.066,0.868,1.178,0.787,0.967,0.953,0.924,1.057,1.186,0.906,0.856,0.965,1.049,0.956,0.961,1.03,0.981,0.807,0.917,1.083,1.068,0.829,1.024,1.038,0.987,0.876,0.965,1.079,0.993,1.036,1.047,0.868,1.249,1.054,0.933,1.064,0.938,1.075,1.144,1.018,1.005,0.757,0.936,1.101,0.954,0.877,0.911,1.086,1.019,0.94,1.263 +NM_022064,1.063,0.983,1.123,1.054,0.833,1.08,0.887,0.746,0.969,0.745,1.161,0.739,0.734,0.779,1.005,1.355,0.911,1.0,1.079,1.064,0.773,0.857,1.037,0.85,0.955,1.179,0.994,0.732,1.252,1.099,1.086,1.103,0.979,1.297,0.659,0.992,1.001,0.92,1.468,0.95,0.77,1.098,0.906,1.11,1.032,1.063,0.75,0.916,0.963,0.969,0.986,0.911,0.981,1.54 +NM_022065,1.011,0.996,0.973,0.964,0.984,1.078,0.977,1.139,1.127,0.981,1.127,1.066,1.042,0.923,0.847,0.918,1.071,1.069,1.099,0.965,0.935,1.046,0.975,0.998,0.978,1.06,1.047,1.033,0.997,1.04,1.013,0.93,1.025,0.966,0.999,0.993,1.017,0.928,0.989,1.129,0.987,0.934,1.026,0.98,1.018,0.928,1.069,0.972,1.008,0.987,1.001,0.976,1.022,0.914 +NM_022066,0.919,1.003,1.158,0.806,0.908,0.923,0.845,0.623,1.046,0.992,0.887,0.838,0.771,0.858,0.845,1.03,0.954,1.089,0.88,0.863,0.881,1.081,1.233,0.973,0.777,0.891,1.072,0.877,0.713,0.848,0.892,1.26,1.052,1.002,0.627,0.895,1.054,0.957,1.265,1.173,0.856,1.085,0.68,1.242,1.183,0.818,0.793,0.833,0.998,1.063,1.096,0.904,0.841,1.041 +NM_022067,0.865,0.974,1.322,0.872,0.841,1.305,0.668,0.761,1.174,0.828,1.084,0.972,0.78,0.843,1.115,1.283,0.859,0.88,1.116,1.02,0.706,0.816,1.194,1.106,0.908,0.805,1.437,0.906,0.572,1.521,1.039,1.205,1.634,1.399,0.522,0.804,1.042,0.798,1.193,0.862,1.139,1.049,0.668,1.475,1.033,0.996,0.972,0.734,0.78,0.87,0.968,0.693,1.028,1.226 +NM_022068,0.934,1.052,0.739,0.994,0.802,1.143,1.185,0.937,0.792,1.071,0.952,0.913,0.9,0.654,1.049,1.056,0.842,0.883,1.017,1.259,1.017,0.817,1.379,0.831,1.006,0.856,0.926,0.827,1.496,1.836,0.746,2.328,0.981,2.035,1.014,1.138,0.971,1.013,1.086,0.898,0.733,1.46,0.823,1.027,0.854,1.024,0.731,0.965,0.956,0.904,1.304,0.933,0.896,0.923 +NM_022070,0.626,1.307,1.153,0.636,0.806,0.776,0.638,0.542,0.901,0.863,0.799,0.899,0.685,0.742,0.703,1.008,0.944,0.86,0.839,1.117,0.646,0.701,1.389,0.966,0.783,0.627,1.403,0.812,0.574,1.137,0.759,1.776,0.934,1.099,0.459,1.629,0.721,0.936,1.344,0.994,1.073,1.062,0.77,2.076,1.081,1.006,0.983,0.72,0.753,0.872,1.167,1.057,1.01,1.271 +NM_022072,0.844,1.059,1.0,0.947,0.909,1.158,0.901,0.821,0.92,0.895,1.033,0.925,0.936,1.074,0.978,1.278,1.12,0.991,0.966,1.035,0.839,1.074,1.015,1.017,0.812,0.87,1.016,0.989,0.918,1.092,0.875,1.102,1.435,1.079,0.915,1.056,0.944,0.999,1.21,0.931,0.888,0.981,1.057,1.293,1.087,1.004,1.107,0.871,1.175,0.839,0.966,0.848,0.919,1.243 +NM_022073,0.934,1.036,1.653,0.87,0.947,1.245,0.848,0.901,1.335,0.693,1.242,1.023,0.963,0.658,1.251,1.177,0.856,0.936,1.335,1.214,0.819,0.828,0.975,0.854,0.864,0.741,1.118,1.134,0.927,1.096,0.819,0.724,0.762,1.201,1.08,0.73,1.32,0.97,1.03,1.102,1.18,1.132,0.933,0.783,1.315,1.068,1.168,0.797,0.982,1.772,1.281,0.814,1.211,0.598 +NM_022076,1.026,0.964,1.055,1.116,1.129,1.064,0.898,1.333,1.025,1.008,0.929,0.972,0.969,1.012,1.194,0.988,1.074,1.104,0.963,0.914,0.828,0.954,0.945,1.017,0.991,1.002,0.986,0.927,1.118,0.942,1.099,0.916,0.886,0.929,1.067,1.057,1.065,0.814,1.057,0.961,1.031,1.01,0.88,1.146,1.097,0.878,0.859,0.935,0.888,1.165,1.038,1.047,1.086,1.169 +NM_022077,0.678,1.005,0.819,0.781,0.689,1.602,0.53,0.597,0.959,0.868,1.189,0.88,0.752,0.557,0.822,1.255,0.765,0.926,1.001,0.916,0.629,1.019,1.247,0.961,0.795,0.999,0.981,0.685,0.71,1.687,0.78,1.254,1.473,1.732,0.299,0.917,1.18,0.988,1.68,1.083,1.007,1.13,0.663,1.053,0.868,0.823,1.017,1.021,0.765,0.708,0.987,0.908,0.899,1.568 +NM_022078,0.639,1.015,1.133,0.736,0.884,1.007,0.652,0.444,0.868,1.012,0.922,0.725,0.514,0.591,0.952,1.126,0.754,0.899,0.767,1.15,0.475,0.658,1.26,0.911,0.518,0.795,1.136,0.842,0.436,1.319,0.726,1.479,0.817,1.065,0.347,1.539,1.023,0.93,1.271,0.886,1.073,1.177,1.078,1.321,0.936,1.319,1.106,0.781,1.166,0.847,1.004,1.083,0.838,1.873 +NM_022080,0.877,1.006,0.934,0.883,0.87,0.977,0.862,0.849,1.171,0.763,0.869,0.873,0.85,0.882,1.008,1.083,0.974,0.87,0.871,1.245,0.909,0.844,1.355,1.044,0.85,0.979,1.096,0.93,0.943,1.272,0.959,1.247,1.028,1.049,0.827,1.229,1.009,0.932,0.96,1.546,1.021,0.946,0.943,0.907,0.926,1.002,1.033,0.877,0.924,0.884,1.141,0.979,0.902,1.382 +NM_022081,0.951,0.968,0.884,0.897,0.954,0.994,1.063,1.097,1.04,0.975,1.059,0.978,1.027,1.081,0.933,1.017,0.941,1.019,1.015,1.11,1.31,0.998,1.046,1.163,1.11,0.935,0.885,0.984,0.878,0.943,0.978,1.127,0.921,0.967,0.939,1.027,1.035,0.859,1.002,0.95,0.943,0.977,0.86,0.884,1.034,1.029,0.878,1.043,1.009,0.873,0.889,1.014,0.948,0.857 +NM_022082,0.363,1.221,0.334,1.442,0.324,1.223,0.894,0.399,0.36,0.394,1.026,0.383,0.337,0.331,1.33,1.225,0.322,0.682,0.376,0.789,0.318,0.348,2.556,0.371,0.647,0.364,0.432,0.366,0.906,2.225,0.415,1.848,1.567,1.811,0.311,1.119,1.173,0.277,3.12,1.657,0.348,0.904,1.131,0.974,0.38,1.963,0.904,0.358,1.294,0.379,1.967,1.364,0.338,2.517 +NM_022083,0.854,1.088,2.319,0.871,1.355,0.912,0.855,0.983,1.016,1.629,0.929,0.97,1.045,0.781,0.911,0.939,1.485,1.093,1.288,1.005,1.092,1.292,1.18,1.356,0.912,0.883,1.779,1.418,0.732,0.888,1.037,0.985,1.057,0.993,0.821,0.895,0.797,1.374,1.385,1.274,1.322,1.568,1.092,1.079,1.779,0.909,0.909,0.886,0.863,1.062,1.116,0.885,1.119,1.028 +NM_022085,0.919,1.214,1.078,0.988,0.882,1.054,0.802,0.892,1.15,0.994,1.262,0.893,0.916,1.029,1.105,1.024,0.841,0.841,0.872,1.163,0.867,0.849,1.042,1.033,1.03,0.911,0.992,0.868,0.903,1.197,0.943,0.946,1.031,1.238,0.825,0.957,1.099,0.927,1.075,0.977,1.096,1.041,1.044,1.175,0.852,0.98,0.889,0.813,0.907,0.882,0.966,0.893,0.977,0.971 +NM_022086,1.014,1.052,1.047,0.928,1.23,0.862,0.833,0.788,1.245,1.014,0.944,0.941,0.933,1.307,0.91,0.91,1.012,1.101,1.104,0.861,0.892,0.95,1.172,1.148,0.899,1.143,1.083,1.193,0.682,0.996,1.225,1.344,1.046,1.07,1.081,0.924,0.958,1.127,1.229,0.971,1.117,0.935,0.745,1.156,1.096,0.903,1.047,1.293,0.768,1.077,0.98,0.859,0.921,0.939 +NM_022087,0.823,1.105,1.755,0.859,0.828,1.148,0.547,0.526,1.624,0.793,1.107,0.83,0.937,0.92,1.072,1.4,1.163,0.845,1.37,1.138,0.866,1.01,1.641,0.965,1.042,0.847,1.697,0.864,0.514,1.739,1.115,1.496,0.965,1.814,0.286,0.534,0.882,0.957,0.912,0.57,1.043,1.424,0.708,0.642,0.952,0.827,0.774,0.596,0.629,0.855,0.914,0.711,1.2,1.302 +NM_022088,1.022,1.006,1.043,0.891,1.034,0.915,1.039,0.976,1.082,1.221,1.078,0.901,0.986,0.985,0.98,1.107,1.068,0.988,0.957,1.03,0.769,0.901,1.031,0.911,1.085,1.084,1.085,0.982,1.07,0.939,0.978,1.0,0.992,0.831,1.094,0.97,1.084,1.114,0.884,0.945,0.885,1.153,0.857,1.151,1.085,1.011,1.004,0.998,1.007,1.003,0.947,1.022,0.856,1.002 +NM_022089,0.758,0.843,0.817,1.045,0.807,1.176,0.749,0.876,0.866,0.797,1.199,0.731,0.861,0.808,0.999,2.019,1.001,0.962,0.866,1.059,0.806,0.739,1.496,0.84,0.949,1.056,0.8,0.763,0.877,1.199,1.212,1.025,1.848,1.316,0.843,1.098,0.868,0.749,2.218,0.981,0.642,1.18,0.79,1.772,0.811,1.009,0.9,1.099,0.815,1.012,1.186,0.876,1.014,1.11 +NM_022092,0.773,0.978,1.108,1.052,0.893,0.832,0.89,0.565,1.392,1.282,0.835,1.046,0.751,0.828,0.878,0.977,1.001,1.145,1.04,0.906,0.615,0.866,1.956,1.23,0.67,0.691,1.519,0.745,0.664,1.078,0.883,1.747,2.598,0.939,0.529,1.567,0.89,0.804,1.828,1.479,1.014,0.894,0.917,1.784,0.842,0.981,1.343,0.684,0.971,0.878,1.241,1.029,0.985,1.534 +NM_022094,0.91,0.881,0.927,1.42,0.81,1.94,0.986,1.082,0.938,0.862,1.731,0.832,1.1,1.013,1.337,1.661,0.931,0.979,1.107,0.979,0.91,0.959,1.074,0.98,0.931,0.907,0.869,0.795,0.845,1.393,0.905,0.983,0.95,1.095,0.905,1.037,1.707,0.864,1.759,0.883,0.83,1.518,1.623,0.96,0.787,1.894,1.448,1.043,1.323,0.834,1.473,0.868,0.999,0.801 +NM_022095,0.954,0.995,0.999,0.814,0.957,0.982,0.862,1.028,0.914,0.957,0.887,1.017,0.886,0.937,1.015,0.967,1.099,0.861,0.963,0.947,0.973,1.045,1.021,1.007,1.062,1.233,1.207,1.033,0.926,1.013,0.875,1.009,1.162,1.01,0.842,0.918,0.93,0.946,1.104,1.145,0.958,1.001,1.007,0.915,1.122,1.024,0.944,1.018,0.999,0.995,0.989,0.812,1.009,1.394 +NM_022096,0.929,0.896,0.958,0.914,1.014,1.131,0.872,1.018,0.998,0.954,0.963,0.941,0.88,0.827,1.029,0.944,1.01,1.04,1.008,0.832,1.019,1.01,0.958,1.01,1.011,1.256,0.956,0.962,0.791,1.07,0.997,1.108,1.305,1.081,0.939,1.004,0.875,0.966,1.134,0.948,1.043,1.089,1.253,1.095,0.97,1.121,1.002,0.861,1.129,0.893,0.987,0.952,0.908,1.26 +NM_022097,0.801,2.879,0.823,4.334,0.924,2.42,0.693,0.876,0.709,1.027,22.08,0.844,0.793,0.724,25.35,60.39,0.881,0.82,0.84,35.76,0.745,0.827,8.734,0.84,0.782,1.006,0.852,0.879,0.639,1.134,0.872,0.634,1.681,1.754,0.75,1.371,33.53,0.79,0.971,0.657,0.774,15.85,21.87,0.735,0.994,45.19,24.82,0.915,34.18,0.799,9.654,1.239,0.913,12.77 +NM_022099,0.985,1.009,0.993,0.903,0.935,1.08,0.901,1.097,0.964,0.853,0.984,1.075,0.957,1.061,1.968,1.04,1.061,0.805,1.194,0.939,0.931,0.93,1.213,0.99,1.074,1.022,1.033,0.982,1.26,0.949,1.045,0.974,0.936,0.96,1.013,0.998,0.929,0.943,1.009,1.025,1.021,0.995,1.013,1.03,1.176,1.067,0.967,1.067,1.015,1.02,1.023,0.998,0.883,0.917 +NM_022100,0.687,0.903,0.943,0.774,0.812,1.349,0.726,0.608,1.122,0.924,1.22,1.075,0.696,0.637,0.83,1.915,0.831,1.174,1.356,1.032,0.534,0.787,1.36,0.985,0.644,0.848,1.142,0.792,0.588,1.168,0.807,1.885,1.895,1.27,0.262,1.611,1.211,0.751,1.271,0.924,0.941,0.863,0.737,1.536,0.912,1.036,1.482,0.727,0.891,0.706,0.965,0.757,1.028,1.25 +NM_022104,0.97,0.889,0.935,0.962,0.916,1.053,0.899,0.926,0.912,0.782,1.047,0.917,0.99,1.014,0.945,1.035,0.952,0.961,1.061,0.891,0.99,0.879,1.086,0.946,1.078,1.269,1.126,0.897,0.893,1.026,0.927,1.252,1.365,1.226,0.896,0.972,0.94,0.948,1.243,1.082,0.926,1.035,0.963,1.364,0.936,1.009,0.828,1.113,0.866,1.166,0.939,0.997,0.988,1.11 +NM_022105,1.0,1.102,0.93,0.908,0.925,0.903,1.041,1.293,1.034,1.039,0.862,1.087,0.981,1.082,1.03,0.971,0.96,0.969,1.005,0.981,1.06,0.93,1.003,0.905,0.976,1.086,0.936,1.002,0.692,0.963,1.024,0.972,1.051,1.054,0.944,0.938,1.046,0.949,1.124,1.008,1.054,0.896,0.85,1.007,0.898,1.088,0.773,0.992,1.039,1.019,0.953,0.957,0.937,0.843 +NM_022107,0.83,0.931,1.035,1.035,0.831,0.979,1.04,0.764,0.829,0.743,0.826,0.809,0.926,0.719,0.877,0.889,0.815,0.927,0.839,0.863,0.799,0.736,1.015,0.922,1.029,0.843,1.118,0.758,0.666,1.412,0.872,1.888,1.116,1.41,0.596,1.084,0.969,0.69,1.673,3.476,0.843,1.35,0.702,0.976,0.928,0.777,0.788,0.727,0.881,0.849,0.993,1.37,1.043,1.368 +NM_022109,0.726,0.992,0.88,0.733,0.878,1.195,0.942,0.656,0.714,0.874,1.773,0.625,0.749,0.671,1.224,1.81,0.655,0.999,1.002,1.162,0.678,0.672,1.623,0.684,0.794,0.684,0.801,0.79,0.571,1.237,0.802,1.006,1.035,1.398,0.493,0.857,1.267,0.932,1.069,1.215,0.906,1.142,0.972,1.078,0.683,1.19,1.146,0.627,1.242,0.712,1.146,0.85,0.744,1.053 +NM_022110,0.924,0.982,1.341,0.808,1.093,0.965,0.895,0.926,1.3,1.86,0.763,1.024,0.95,0.819,0.88,1.131,0.902,1.161,1.693,0.784,1.043,1.076,0.929,1.312,0.749,1.133,1.022,1.16,0.651,1.001,1.274,1.146,1.993,0.876,0.807,0.778,0.719,1.244,1.191,1.018,1.138,0.847,0.642,0.794,1.842,0.782,1.04,1.347,0.687,1.393,0.869,0.738,1.04,1.634 +NM_022111,0.988,1.015,1.048,1.089,1.102,1.0,0.977,0.941,0.985,0.978,1.063,0.99,1.009,1.049,1.18,1.086,1.094,0.979,1.033,1.026,1.084,0.982,1.013,1.056,0.909,0.894,0.837,1.121,1.047,1.018,0.933,1.119,1.164,1.032,1.078,0.895,1.089,0.933,1.013,1.042,0.895,1.063,1.121,0.959,1.093,0.934,0.97,0.915,0.974,1.087,0.991,1.076,1.039,0.99 +NM_022112,1.276,0.91,1.87,1.088,1.635,0.953,0.774,1.224,1.816,1.671,0.91,2.347,1.429,1.415,1.056,0.864,1.508,1.054,1.483,0.743,1.632,1.578,0.851,2.048,0.84,1.476,1.873,1.503,0.727,0.815,1.68,0.857,1.013,0.838,1.013,0.871,0.798,1.891,1.027,0.855,1.436,0.952,0.95,0.842,1.873,0.931,1.342,1.374,0.95,1.213,0.874,0.875,1.847,0.928 +NM_022113,1.025,1.019,1.021,0.811,1.005,1.044,1.068,0.949,1.149,1.174,1.188,0.959,0.936,0.917,1.092,1.094,0.898,0.985,1.221,1.114,0.951,1.036,0.994,0.945,1.003,0.869,0.729,0.891,1.119,1.028,1.064,0.991,0.972,1.105,0.804,1.038,0.97,0.898,1.032,0.83,0.832,0.942,1.169,1.094,0.923,1.014,1.059,1.026,0.844,0.986,0.997,1.093,0.995,1.088 +NM_022114,0.962,1.102,0.994,1.096,1.01,1.058,0.886,1.125,0.943,0.902,1.12,1.032,0.994,0.819,1.159,1.072,0.924,0.919,1.089,1.041,0.975,1.055,1.041,0.951,1.027,0.967,0.86,0.954,1.214,0.931,1.072,0.964,1.021,1.052,1.161,0.906,0.988,0.998,1.011,1.002,0.918,1.062,0.943,0.968,1.047,1.044,0.973,0.88,1.114,0.907,0.982,1.127,0.926,0.934 +NM_022116,1.018,0.972,1.052,0.898,1.08,1.067,0.965,0.907,1.132,1.064,0.922,1.11,0.962,0.901,1.008,1.052,0.999,0.963,1.012,1.172,0.997,0.963,1.17,0.948,0.906,0.917,1.088,1.038,0.939,0.969,1.094,1.012,1.879,1.033,0.977,1.221,0.925,0.85,0.95,0.892,1.094,1.003,0.901,1.217,0.881,1.001,0.961,0.997,0.988,1.186,1.046,0.942,1.065,1.358 +NM_022117,0.87,0.982,0.908,0.999,1.076,0.969,1.071,0.946,0.844,1.052,0.95,0.929,0.859,0.995,0.93,0.936,0.975,0.865,0.851,1.005,1.051,0.926,0.994,0.961,1.154,0.965,1.051,0.984,0.931,1.083,0.773,1.636,1.175,1.084,0.961,1.131,0.907,0.968,1.045,1.418,0.907,1.265,0.945,1.165,0.947,0.973,0.945,0.935,1.054,0.995,0.988,1.124,0.993,1.004 +NM_022118,0.774,1.077,1.412,0.808,1.021,1.037,1.05,0.749,1.194,1.204,0.959,0.903,0.764,0.919,1.06,1.458,1.052,0.952,1.046,0.997,0.814,0.916,1.225,1.138,0.797,0.715,1.642,0.881,0.695,1.114,1.292,1.33,1.897,1.157,0.761,0.729,0.979,1.2,1.186,0.956,1.167,0.938,0.744,1.035,1.075,0.894,1.062,0.774,1.108,0.946,1.114,0.972,0.85,1.374 +NM_022119,1.832,0.778,3.348,1.207,1.55,0.754,0.822,5.594,1.131,0.914,0.779,0.929,2.117,0.887,1.084,1.076,3.535,0.903,3.582,0.692,1.383,1.908,0.932,0.848,0.797,1.169,2.208,0.979,0.907,0.776,1.139,0.962,1.678,0.707,4.421,0.751,0.721,1.359,1.07,0.901,1.45,0.705,0.814,1.236,1.626,0.802,1.033,2.828,0.872,3.665,0.781,1.497,1.848,1.464 +NM_022120,1.027,1.058,0.963,0.967,0.933,0.991,1.06,0.902,0.98,1.042,0.94,1.048,1.043,0.929,1.155,0.929,1.085,0.886,0.914,0.941,0.956,0.923,1.049,0.966,0.994,1.233,1.028,0.952,0.937,1.01,1.116,1.159,0.947,0.959,0.924,0.912,1.091,1.004,1.054,1.11,1.179,1.092,0.926,1.029,1.039,1.047,0.973,1.014,1.081,0.962,0.983,1.083,1.062,0.912 +NM_022121,1.57,0.48,2.989,0.819,2.556,0.697,0.303,1.221,2.958,2.282,0.63,1.6,1.244,1.108,1.458,1.569,1.435,1.834,2.927,0.69,1.155,1.099,0.705,2.211,0.21,1.415,2.245,2.41,0.144,0.677,2.609,0.202,1.969,0.693,0.616,0.454,0.67,2.088,0.712,0.626,2.37,0.655,0.318,0.527,2.442,0.693,1.554,1.555,0.673,2.223,1.078,1.041,1.607,0.82 +NM_022122,0.941,1.161,0.926,1.013,0.989,0.947,1.021,1.129,1.027,0.89,1.026,1.026,1.008,0.847,0.85,1.12,0.996,0.915,0.986,0.958,0.892,1.0,1.046,0.963,1.041,0.945,1.126,1.177,0.855,0.922,1.03,1.036,1.018,0.917,1.051,0.949,1.051,0.919,1.034,0.958,0.966,0.997,0.889,0.861,1.018,1.112,0.853,0.867,1.077,0.952,1.057,0.926,1.116,0.966 +NM_022123,0.942,1.044,0.887,1.013,0.948,1.078,0.96,1.152,1.138,1.036,0.997,0.881,0.978,0.913,1.239,1.099,1.029,0.952,1.013,0.994,0.958,0.991,1.056,0.909,0.954,0.97,1.045,0.888,1.083,1.131,1.005,1.193,1.141,1.057,1.153,0.994,1.074,0.973,1.105,0.941,1.121,0.98,1.143,0.971,0.942,0.932,1.109,0.917,1.073,0.972,1.139,1.059,1.091,1.03 +NM_022124,1.123,0.873,1.011,1.074,1.034,0.909,1.036,1.056,0.892,0.978,1.012,0.939,0.983,1.033,0.879,0.947,0.997,1.019,0.877,1.081,1.02,0.993,1.064,1.011,0.981,0.888,0.991,1.071,1.009,0.98,1.016,1.054,1.1,0.989,0.942,1.02,0.946,0.869,0.957,1.104,1.095,1.041,1.063,1.026,0.832,0.992,0.942,0.871,0.869,0.923,1.077,1.208,0.873,0.908 +NM_022126,0.702,1.446,1.163,0.601,1.041,1.252,0.72,0.615,1.411,1.328,0.985,1.267,0.571,0.621,0.827,1.023,1.026,1.284,1.61,1.503,0.723,0.831,0.957,1.485,0.688,1.134,1.198,1.508,0.716,1.492,1.075,1.485,0.751,1.772,0.343,1.01,0.928,1.598,0.73,0.354,1.667,1.281,0.769,0.834,0.927,0.949,0.976,0.903,0.441,0.667,0.961,0.514,0.965,0.548 +NM_022127,1.082,1.142,1.612,0.874,0.974,1.03,0.874,0.863,0.969,0.942,0.952,1.001,0.947,0.98,0.929,1.041,1.375,1.013,1.175,0.816,0.891,1.011,1.051,1.074,0.856,0.893,1.809,0.959,0.801,0.91,1.064,0.882,1.118,0.888,0.966,0.822,1.107,0.997,0.989,1.088,1.015,1.14,1.085,1.267,1.243,0.917,1.015,1.053,1.217,1.195,0.987,1.12,1.102,1.05 +NM_022128,0.77,1.014,1.017,0.767,1.099,1.558,0.581,0.794,1.003,0.951,1.863,0.848,0.776,0.979,1.377,1.969,0.933,0.832,0.973,1.141,0.64,0.874,1.409,1.02,0.711,1.031,0.909,0.97,0.776,1.125,0.926,0.82,1.772,0.988,0.705,0.947,2.101,1.081,1.007,0.75,0.973,1.323,1.368,1.001,0.943,1.738,1.455,0.914,1.62,0.826,1.171,1.131,0.96,1.232 +NM_022129,0.679,1.863,0.737,0.868,0.694,6.741,2.314,0.684,0.727,0.694,2.966,0.753,0.708,0.599,2.14,7.887,0.897,1.683,0.752,5.569,0.749,0.757,1.433,0.777,1.636,0.726,0.872,0.643,1.337,3.758,0.784,1.95,1.395,3.323,0.711,0.697,5.948,0.903,2.105,0.883,0.626,4.249,2.241,0.659,0.69,3.732,1.399,0.65,1.608,0.6,3.505,0.689,0.602,1.148 +NM_022130,0.443,1.156,1.231,0.643,0.841,1.138,0.663,0.47,1.035,0.691,1.293,0.454,0.475,0.697,0.996,1.814,0.651,0.997,1.018,1.082,0.468,0.503,1.576,0.741,0.425,0.513,1.138,0.913,0.43,1.24,1.057,1.038,2.362,1.669,0.517,0.828,1.367,0.808,1.279,0.904,1.003,1.455,0.755,1.336,0.703,1.384,0.794,0.58,1.082,0.666,1.092,0.899,0.624,1.852 +NM_022131,1.069,0.968,0.97,0.949,1.075,0.896,1.023,0.919,0.971,1.058,1.018,0.943,0.96,1.057,0.944,0.862,1.041,0.94,1.114,1.049,1.035,0.917,1.126,0.864,0.981,1.037,0.966,1.066,1.005,0.998,0.908,1.512,1.009,1.138,0.954,1.057,1.079,0.913,1.047,1.123,0.914,1.18,0.939,1.026,0.855,0.946,0.985,0.981,0.999,1.0,1.026,0.984,1.173,0.886 +NM_022132,0.861,1.022,1.098,1.002,0.946,0.999,0.773,0.701,1.077,0.915,1.219,0.958,0.734,0.699,0.859,1.3,0.896,0.854,1.085,1.003,0.825,0.689,1.211,0.815,0.827,0.713,1.012,0.81,0.566,0.907,0.949,0.82,2.781,1.162,0.599,0.803,1.001,0.677,1.587,0.766,1.008,0.816,0.822,1.178,1.004,1.196,0.852,0.801,1.192,0.811,1.104,0.908,1.157,1.424 +NM_022133,0.927,1.032,1.066,0.997,0.924,0.963,1.171,0.991,1.097,0.956,1.143,0.927,0.911,1.064,1.203,1.002,0.939,0.795,1.08,1.058,1.071,0.893,0.849,0.991,0.913,1.19,0.931,1.043,0.899,0.984,0.949,1.002,0.979,0.955,1.028,1.067,1.092,1.024,0.962,1.034,0.994,1.056,0.979,1.226,0.941,1.148,1.095,1.027,1.031,0.83,0.881,0.996,1.005,1.151 +NM_022134,1.053,1.047,0.948,0.961,0.85,0.915,1.157,0.932,1.045,0.917,0.946,0.979,1.048,1.112,0.805,0.956,0.851,0.985,1.14,1.104,1.139,1.047,1.064,1.061,0.972,0.978,1.058,0.865,1.752,0.95,0.912,0.918,1.009,0.994,1.011,1.164,0.869,1.07,1.03,0.965,0.893,0.908,1.03,1.087,1.117,1.097,0.951,1.036,1.038,0.899,0.918,0.953,1.193,1.091 +NM_022135,0.953,0.999,0.906,1.044,1.016,1.103,0.89,0.976,1.014,1.08,0.997,1.092,1.129,0.817,0.928,1.02,0.952,0.989,0.906,0.976,0.901,1.038,0.99,1.009,1.042,1.015,1.04,0.945,0.991,0.903,0.874,1.199,0.987,1.026,1.198,0.998,1.077,1.089,1.001,1.043,0.984,0.984,0.893,1.115,1.001,1.138,1.018,0.955,1.039,0.911,1.037,1.034,0.968,0.981 +NM_022136,0.898,1.12,0.949,1.045,0.85,1.006,1.239,0.881,1.104,0.947,1.112,0.904,0.961,1.052,0.951,0.986,0.935,1.065,0.803,0.911,0.832,0.914,0.891,0.895,0.898,0.873,1.145,0.795,1.203,1.042,0.864,1.353,0.971,1.043,0.669,0.934,0.969,0.829,1.246,2.753,1.034,1.088,0.954,0.816,0.799,1.19,1.032,0.972,0.957,0.801,1.019,1.37,1.261,1.444 +NM_022138,0.856,1.065,0.806,0.906,0.733,0.916,1.192,0.82,0.883,0.897,1.124,0.791,0.884,0.682,1.058,1.382,0.767,0.791,0.706,1.034,0.991,0.749,2.381,0.704,1.222,0.855,0.996,1.3,0.758,1.664,0.84,12.13,2.703,2.006,0.91,1.144,0.953,0.959,1.044,0.987,1.472,2.131,1.001,0.902,0.801,1.632,0.901,0.727,1.622,0.853,2.305,1.03,0.725,1.371 +NM_022139,1.05,0.991,1.018,0.997,1.026,1.062,1.137,1.273,1.123,0.952,0.898,1.005,0.874,1.195,0.851,1.0,1.059,0.967,0.925,1.01,1.044,1.082,0.895,0.996,0.995,1.046,0.963,0.938,1.247,0.988,1.0,0.89,0.772,1.152,0.999,0.861,1.147,1.112,1.042,1.092,1.034,0.954,1.172,1.023,1.026,0.941,1.073,1.123,1.058,0.962,1.023,0.977,0.904,1.015 +NM_022140,1.197,0.849,1.217,0.853,1.317,0.927,0.969,1.054,1.425,1.035,0.864,1.122,1.061,1.154,0.907,0.965,1.173,1.059,1.314,0.967,0.936,1.248,0.911,1.114,0.99,1.191,0.933,1.377,0.749,0.971,1.309,1.033,1.0,0.861,1.316,0.96,0.976,1.288,0.848,0.995,1.119,1.024,0.819,1.0,1.11,0.994,0.972,1.177,0.846,1.071,0.89,1.06,1.102,0.93 +NM_022141,0.825,0.932,1.101,0.971,0.97,1.034,1.0,0.893,1.085,0.988,0.8,0.939,0.905,1.055,0.988,0.994,0.916,0.975,0.927,0.906,1.162,0.939,0.956,0.804,1.037,1.02,1.232,0.967,0.827,1.213,0.91,1.424,0.946,1.047,0.851,1.0,0.826,0.989,1.419,1.305,1.017,1.094,0.85,0.92,0.995,0.947,0.916,1.069,0.988,0.894,0.962,1.209,1.434,1.534 +NM_022142,0.904,1.031,0.942,0.949,0.793,1.076,1.023,0.898,0.934,0.929,1.108,0.95,1.048,1.062,0.971,1.107,0.988,0.88,1.099,0.997,1.005,1.138,0.948,0.97,1.03,0.992,0.921,1.025,0.819,0.989,1.161,1.032,1.083,0.948,0.963,1.144,1.0,0.935,0.968,1.038,0.961,0.964,0.816,1.008,0.992,0.94,1.077,1.101,1.001,1.063,0.926,0.807,1.038,0.921 +NM_022143,1.018,1.022,0.971,1.136,1.038,1.118,0.995,1.025,1.036,1.058,1.077,1.013,1.162,0.818,1.116,0.932,1.016,0.854,1.04,1.001,1.016,0.928,0.93,0.948,1.108,0.941,1.084,0.942,0.772,0.984,0.956,0.98,1.006,1.163,0.945,0.974,0.863,1.0,0.897,1.088,1.03,1.068,0.878,0.895,1.024,1.057,1.094,0.981,0.953,1.058,1.073,0.875,0.943,0.893 +NM_022144,1.047,0.942,0.932,0.979,1.153,1.122,0.868,1.0,0.821,1.066,1.087,0.945,0.925,0.801,1.026,1.101,1.03,0.979,0.885,1.058,1.014,0.978,0.968,1.07,1.032,0.863,0.915,0.985,0.932,0.939,1.106,1.02,1.13,1.089,1.11,0.965,1.09,0.969,0.992,1.053,0.968,0.936,0.993,0.917,0.943,1.053,1.047,1.072,1.062,0.93,0.994,1.028,0.966,1.077 +NM_022145,0.781,0.969,1.049,0.991,1.006,1.196,0.896,0.905,0.998,0.987,1.037,0.879,0.822,1.021,1.442,1.724,0.935,1.038,1.019,0.978,0.776,0.932,1.64,1.072,0.833,0.9,1.376,0.953,0.76,1.109,0.965,1.022,2.107,0.958,0.777,1.127,1.113,1.0,1.136,0.898,0.987,0.91,0.954,0.986,0.895,1.493,1.124,0.708,1.135,0.859,1.09,0.836,0.839,1.529 +NM_022146,1.05,0.855,0.927,1.058,1.038,1.174,1.001,1.002,0.967,1.106,0.982,0.954,0.936,1.04,1.248,0.974,1.149,0.84,1.106,0.908,1.052,0.971,0.933,1.008,0.877,0.954,1.182,1.206,1.017,0.95,1.119,0.913,0.986,0.945,1.126,0.876,1.0,1.239,0.973,0.931,0.995,0.848,1.256,0.974,1.02,1.093,0.947,1.18,1.012,1.045,1.099,0.903,1.009,1.034 +NM_022147,0.651,1.025,1.108,1.142,0.647,1.169,1.667,0.484,0.622,0.645,1.387,0.58,0.572,0.56,1.107,1.087,1.061,1.135,0.698,1.219,0.597,0.472,1.341,0.676,0.806,0.736,0.965,0.559,0.753,1.222,0.572,1.14,1.384,1.672,0.551,0.809,1.348,0.639,1.617,0.575,0.797,1.255,0.668,2.283,0.743,0.918,0.75,0.491,0.784,0.644,1.341,0.968,1.13,3.256 +NM_022149,0.712,1.259,0.924,1.071,0.822,0.883,0.754,0.591,0.832,1.121,1.033,0.559,0.553,0.725,0.777,1.109,0.65,0.846,0.839,1.104,0.738,0.48,1.603,0.72,0.957,0.724,0.97,0.715,0.513,1.197,0.698,1.881,1.781,1.484,0.567,0.857,0.916,0.641,1.097,0.828,0.929,1.277,0.853,1.807,0.955,1.101,0.859,0.59,0.832,0.861,1.116,0.896,1.162,1.86 +NM_022150,1.097,1.028,1.01,0.969,1.076,0.956,1.094,1.528,0.932,1.032,0.93,0.997,1.067,1.26,1.124,1.122,1.179,0.983,0.975,0.905,0.98,0.955,0.871,1.037,0.953,0.941,0.906,0.941,1.188,0.938,1.029,1.065,0.966,1.083,0.942,0.936,1.076,0.997,1.025,1.011,1.089,0.944,0.912,1.084,1.064,0.987,0.996,0.909,1.036,1.057,1.19,1.07,0.972,1.081 +NM_022151,0.685,1.401,0.875,0.886,0.749,1.361,0.679,0.633,0.973,0.765,1.366,0.607,0.773,1.105,1.045,1.359,0.801,0.939,0.894,0.972,0.788,0.898,0.982,0.727,1.072,0.833,0.85,0.76,0.913,1.611,1.004,1.921,1.088,2.0,0.647,0.863,1.045,1.019,1.051,0.954,0.996,1.329,0.848,1.047,0.676,1.03,0.753,0.807,0.882,0.673,1.045,0.736,0.996,1.004 +NM_022152,0.642,0.75,1.108,0.604,0.912,1.326,0.57,0.926,1.074,0.641,1.102,0.561,0.606,0.698,0.941,1.547,1.038,1.008,1.258,0.67,0.563,0.932,1.173,0.712,0.589,1.164,0.981,0.88,0.611,1.312,1.271,1.354,0.807,1.315,1.512,0.777,0.99,1.285,1.446,0.758,1.021,0.9,0.579,0.86,0.957,0.986,1.138,1.208,1.048,0.86,1.045,0.713,0.83,1.482 +NM_022154,0.658,1.287,0.788,1.03,0.733,1.653,0.929,0.621,0.73,0.725,1.179,0.674,0.678,0.605,0.869,1.878,0.742,0.781,0.724,0.861,0.583,0.683,1.925,0.77,0.769,0.66,1.004,0.825,0.729,0.92,0.683,1.357,2.019,1.53,0.622,0.996,1.231,0.768,1.452,1.4,0.93,2.826,0.978,1.119,0.579,1.594,1.109,0.655,2.422,0.677,1.665,1.222,0.768,1.089 +NM_022156,0.636,0.939,1.005,0.734,0.689,1.284,0.545,0.557,1.252,0.963,1.139,1.023,0.66,0.649,1.071,1.567,0.895,0.709,1.346,0.851,0.608,0.78,1.302,1.214,0.654,0.833,1.126,0.807,0.389,1.183,1.029,1.356,1.689,1.54,0.126,0.93,1.022,0.791,1.412,0.671,1.05,1.229,0.65,1.781,1.169,0.862,0.844,0.701,0.9,0.71,1.035,0.602,1.133,1.909 +NM_022157,0.716,0.723,1.69,0.449,1.467,1.165,0.63,0.867,1.196,1.195,0.805,1.159,0.591,0.791,0.965,1.428,1.199,1.082,1.701,0.695,0.713,1.25,0.927,1.591,0.52,0.87,1.604,1.317,0.415,0.904,1.196,1.307,1.132,0.913,0.834,0.732,1.03,1.407,1.039,0.965,1.309,0.828,0.798,0.703,1.072,1.016,1.215,0.738,1.11,1.249,0.864,0.824,1.527,1.248 +NM_022161,1.015,1.069,1.0,1.228,1.184,1.014,0.945,0.977,0.95,0.872,1.026,0.99,0.99,0.979,1.018,1.087,1.0,0.932,1.04,0.865,1.003,1.069,0.941,0.978,0.884,1.019,0.974,1.06,1.036,0.998,0.965,1.017,1.013,1.12,1.002,0.907,0.993,0.972,1.021,1.223,1.035,0.957,0.906,1.031,1.138,0.936,0.995,1.01,1.078,1.111,1.092,2.643,1.082,1.963 +NM_022162,1.383,0.752,2.208,0.967,1.545,0.764,0.729,1.014,2.854,1.875,0.671,1.233,1.097,1.266,1.304,0.87,1.398,1.265,1.907,0.857,1.105,1.625,0.73,1.847,0.848,1.55,2.123,1.3,0.664,0.816,1.951,0.77,1.331,0.729,0.884,0.789,0.823,1.389,0.772,0.951,1.632,0.818,0.741,0.738,1.867,0.683,1.121,1.356,0.706,2.173,0.889,1.074,1.574,1.421 +NM_022163,0.885,0.759,1.283,0.868,1.01,0.781,0.526,0.643,1.166,1.205,0.891,0.819,0.961,0.811,0.896,1.324,1.168,1.017,1.855,0.705,0.749,0.998,1.393,1.184,0.745,0.954,1.581,0.88,0.419,0.892,0.815,0.966,1.421,1.001,0.32,1.244,1.004,0.881,1.577,0.62,1.305,0.942,0.749,1.146,1.374,0.805,1.081,1.117,0.997,1.046,0.84,0.985,1.314,1.757 +NM_022165,1.183,0.974,1.028,0.955,1.071,0.902,0.929,1.121,1.349,0.978,0.779,1.104,0.965,1.039,0.976,0.865,1.092,1.011,1.138,0.937,0.955,1.371,0.853,1.292,0.918,1.394,1.09,1.085,0.541,1.033,1.146,0.934,1.004,0.976,1.087,0.78,0.868,1.475,1.147,0.805,1.236,0.958,0.999,0.936,0.993,0.981,0.969,1.534,0.848,1.049,0.972,0.802,1.073,1.193 +NM_022166,1.009,0.881,0.875,0.868,1.065,0.997,0.889,0.974,1.138,1.172,0.882,1.091,1.272,0.823,1.217,1.111,0.876,0.988,1.062,0.914,1.002,0.995,0.914,0.873,0.956,0.835,0.922,0.936,1.015,1.07,1.083,0.959,1.164,1.048,1.024,0.982,1.049,0.877,0.997,1.05,0.891,1.0,1.132,1.124,0.918,1.212,0.987,0.971,0.938,0.899,0.931,1.056,0.97,1.17 +NM_022167,1.028,1.569,1.036,0.992,0.968,0.934,0.985,0.731,0.904,1.016,0.848,0.845,0.948,0.838,0.953,0.877,0.915,1.06,0.912,0.901,0.946,1.024,1.107,0.974,2.385,1.095,0.964,0.885,0.949,1.331,0.837,2.129,1.11,1.111,0.692,0.911,1.064,0.982,1.39,1.132,0.918,1.095,0.729,1.54,0.927,0.807,0.983,0.994,0.924,1.008,0.895,1.006,0.887,1.465 +NM_022168,0.711,1.065,2.134,0.602,0.59,1.24,1.218,0.534,0.999,0.618,1.313,0.543,0.526,0.596,1.124,1.272,1.158,0.795,1.001,0.904,0.738,0.837,1.262,0.426,0.58,0.57,1.372,0.796,0.461,0.961,0.858,1.003,3.66,1.566,0.487,0.741,1.365,0.777,1.275,0.944,1.049,1.037,0.575,1.36,0.673,0.944,0.744,0.595,0.749,0.683,0.773,1.177,1.184,4.217 +NM_022169,1.024,0.901,1.203,1.023,1.057,0.848,1.176,1.399,1.057,1.075,0.865,0.999,1.006,0.966,1.004,1.087,1.17,1.128,1.199,0.924,1.037,0.936,0.94,1.218,1.003,0.902,1.256,1.141,0.855,0.925,1.059,0.986,0.977,1.056,0.945,0.961,1.003,1.387,0.808,1.007,1.023,1.063,1.036,0.92,0.967,0.934,1.139,1.094,0.836,1.014,1.131,0.977,0.974,1.047 +NM_022170,1.076,0.99,0.926,1.019,1.06,0.952,1.061,1.093,0.981,1.169,0.783,0.933,0.894,0.995,0.982,1.159,1.001,1.092,1.146,0.928,0.823,1.026,0.982,1.036,1.098,0.944,0.974,1.123,1.14,0.976,0.91,1.031,1.158,1.062,0.939,0.934,1.048,0.906,0.904,1.145,1.01,0.924,0.763,1.094,1.128,1.255,1.04,0.885,1.2,1.186,0.989,0.989,1.002,1.144 +NM_022171,0.673,1.502,0.834,1.071,0.722,2.028,0.981,1.047,0.684,0.652,1.174,0.679,0.795,0.528,0.973,1.653,0.738,1.207,0.706,1.269,0.841,0.753,1.125,0.688,1.172,0.754,0.747,0.709,1.068,2.169,0.645,1.326,0.984,1.979,0.651,0.928,1.117,0.759,1.528,0.804,0.738,1.206,0.991,0.619,0.829,0.976,0.673,0.748,0.875,0.869,1.377,0.82,0.908,1.179 +NM_022172,1.009,0.894,1.211,1.041,0.863,1.032,0.621,0.699,0.969,1.38,1.116,0.941,0.806,0.829,1.291,1.671,1.381,1.173,1.954,0.807,1.288,0.986,0.893,1.601,0.93,1.061,1.651,0.828,0.689,1.168,0.899,0.981,1.861,0.948,0.74,0.775,1.222,1.544,1.172,0.749,1.203,0.833,0.627,0.98,1.273,0.777,1.195,1.179,1.217,1.666,0.91,0.978,1.382,0.727 +NM_022304,1.056,0.926,0.971,1.022,0.981,1.011,0.808,0.886,1.1,0.949,0.952,0.943,1.028,1.15,0.826,0.972,0.931,1.073,0.99,0.853,1.049,1.039,0.98,1.019,1.059,1.078,0.918,0.905,1.144,0.971,0.974,1.045,1.019,0.935,0.905,0.941,1.04,1.039,1.086,0.893,1.103,0.972,0.945,1.088,1.082,0.993,0.874,1.013,0.984,0.954,0.994,0.825,0.788,1.015 +NM_022333,0.913,1.076,0.947,1.022,1.101,0.977,0.96,0.867,0.934,1.0,0.951,0.958,0.932,0.945,1.148,0.98,1.096,1.037,0.96,1.162,1.086,0.999,0.996,1.112,1.082,0.968,0.9,0.958,0.779,1.09,0.9,0.899,0.963,1.023,1.092,1.009,1.061,1.017,1.039,0.995,1.089,0.956,0.874,0.983,0.939,0.99,1.071,0.99,1.098,1.091,0.998,0.988,1.153,1.118 +NM_022336,1.185,0.853,1.071,0.887,1.038,0.955,0.769,0.978,0.981,1.008,0.969,0.912,0.782,0.921,0.979,1.007,1.061,1.044,0.96,0.961,0.827,0.922,1.047,1.194,0.873,1.09,1.049,1.081,0.804,1.086,1.042,1.04,2.113,1.087,0.916,0.977,0.933,0.939,1.005,1.021,1.14,1.052,0.901,1.356,1.021,0.855,1.024,1.069,0.807,1.02,0.906,0.78,0.898,0.955 +NM_022337,2.347,0.361,3.51,1.033,3.361,0.663,0.22,1.768,4.572,2.9,0.557,3.313,1.965,2.374,2.057,1.499,2.597,1.898,4.175,0.43,1.862,2.296,0.487,3.477,0.246,1.754,4.069,3.23,0.219,0.453,3.885,0.613,2.312,0.585,0.521,0.274,0.473,2.695,0.437,0.21,3.174,0.414,0.201,0.289,3.981,0.326,1.748,2.056,0.258,2.257,0.822,1.325,3.599,1.187 +NM_022338,0.581,0.993,0.589,1.23,0.489,1.955,0.83,0.436,0.599,0.539,2.11,0.54,0.477,0.455,1.371,2.55,0.602,0.951,0.654,1.288,0.569,0.48,1.553,0.596,0.926,0.55,0.627,0.515,0.693,2.576,0.543,1.525,2.145,1.998,0.404,1.505,1.48,0.5,2.103,0.871,0.595,1.479,0.984,1.265,0.7,1.551,0.941,0.555,1.352,0.563,1.549,0.697,0.684,1.003 +NM_022341,0.918,0.995,0.94,1.032,0.939,0.968,0.911,0.759,0.92,1.056,0.868,1.053,0.89,0.959,0.996,1.139,1.013,0.933,0.939,1.047,0.958,0.915,1.019,1.019,0.895,0.848,0.895,1.003,0.845,1.045,1.04,0.927,1.121,0.992,0.913,1.155,0.984,0.813,1.067,0.959,1.126,0.938,0.87,1.082,1.052,0.997,0.951,1.042,1.039,1.068,0.97,0.866,1.065,1.312 +NM_022343,0.469,1.533,0.983,0.89,0.65,1.0,1.365,0.519,0.579,1.117,0.805,0.621,0.518,0.497,0.738,0.91,0.66,0.59,0.736,1.012,0.511,0.527,1.295,0.786,1.496,0.489,1.507,0.906,1.665,1.739,0.585,3.245,1.044,2.372,0.384,0.656,1.084,0.717,2.338,3.443,1.026,1.399,0.761,0.559,0.806,0.745,0.96,0.535,0.699,0.522,0.892,2.319,1.517,1.732 +NM_022344,0.885,1.098,0.946,1.017,1.057,1.087,1.008,0.807,1.096,1.002,1.038,0.85,0.908,1.163,0.868,1.178,0.901,0.954,0.962,1.001,1.133,0.87,1.098,0.977,0.952,0.899,0.896,1.029,0.943,1.017,0.932,1.038,2.127,1.04,0.697,0.868,1.062,0.891,0.952,0.92,0.946,1.043,0.939,1.111,0.993,1.05,1.036,0.932,0.954,0.946,1.116,1.078,1.071,1.095 +NM_022345,1.043,0.933,0.83,1.021,0.94,1.013,0.885,1.1,1.165,1.064,0.982,1.032,0.898,1.117,1.198,1.02,0.99,1.138,0.985,1.225,0.954,1.066,1.044,1.009,1.104,1.104,0.996,0.948,1.106,1.053,0.869,1.125,1.282,0.94,0.947,1.01,0.987,1.097,0.992,0.943,0.916,0.946,0.926,1.178,1.158,1.068,1.002,0.987,0.858,1.167,0.992,1.079,1.007,0.986 +NM_022346,0.688,0.796,1.357,0.798,0.993,0.958,0.767,0.677,1.181,0.963,0.932,0.969,0.805,0.744,1.011,1.707,0.866,1.049,1.788,0.704,0.832,0.812,1.432,1.536,0.604,0.64,2.577,0.801,0.575,0.872,0.802,0.867,4.96,1.029,0.52,1.582,1.171,0.97,1.948,1.291,1.173,0.726,0.669,1.528,0.933,1.199,1.144,0.71,1.598,0.804,1.32,0.981,0.986,2.097 +NM_022347,1.023,0.941,1.046,0.855,1.048,0.981,0.998,1.076,1.132,1.104,0.895,0.942,0.901,1.064,0.925,1.125,1.068,1.001,1.29,1.032,0.921,0.868,0.999,0.942,0.833,0.901,0.946,1.048,0.84,0.931,0.918,1.043,1.078,0.93,1.082,0.99,0.853,1.053,1.154,0.948,1.028,0.891,0.846,0.952,0.993,1.172,1.048,0.953,0.88,0.911,0.951,1.182,1.024,0.919 +NM_022349,0.758,1.301,1.684,0.882,0.78,0.84,0.969,0.724,1.02,0.758,1.091,0.679,0.974,0.681,1.207,1.176,0.956,0.688,0.98,0.753,0.765,0.674,1.674,1.026,0.967,0.791,1.659,0.867,0.437,2.283,0.665,1.925,1.246,2.243,0.414,0.535,1.075,0.85,1.489,0.878,1.041,1.988,0.847,0.659,0.859,0.895,0.753,0.59,0.612,0.806,0.954,1.852,1.51,3.137 +NM_022351,1.065,1.062,0.925,1.136,1.04,0.959,1.016,0.99,1.094,0.981,1.068,1.071,0.992,0.975,0.803,1.073,0.959,1.092,0.787,1.034,0.975,1.037,1.088,1.038,1.05,1.039,0.939,0.964,1.307,1.092,0.976,1.036,0.977,1.024,1.088,1.111,0.912,0.975,1.022,0.996,1.07,1.063,0.886,0.882,1.135,1.004,0.801,1.153,1.114,0.915,1.054,0.877,1.088,0.986 +NM_022352,0.77,1.01,0.938,0.968,0.989,0.95,1.132,1.005,0.94,1.064,0.907,0.882,1.013,1.058,0.981,0.999,0.938,0.972,1.066,1.029,0.922,1.143,0.96,0.98,0.939,1.16,0.887,0.923,1.23,1.092,1.001,0.996,0.936,1.091,0.874,1.139,1.014,0.957,1.036,1.031,0.957,1.001,0.993,1.025,0.897,0.995,0.857,1.071,0.969,1.109,0.95,1.03,0.786,0.943 +NM_022353,0.913,1.063,0.999,0.99,0.941,1.035,0.935,1.015,0.99,0.936,1.03,0.813,1.046,0.844,1.174,0.902,1.012,0.861,1.194,0.958,0.925,0.933,1.077,0.892,1.007,0.856,0.966,1.075,0.636,1.117,1.014,1.199,1.06,1.068,0.953,1.061,0.832,0.962,0.98,0.98,0.992,0.957,0.792,1.265,0.889,0.974,0.9,0.986,0.984,0.999,0.973,0.926,0.867,1.414 +NM_022354,0.971,1.136,0.936,1.119,1.109,0.971,1.205,0.996,1.013,0.84,1.014,0.952,0.857,0.949,1.132,1.072,1.04,1.056,0.896,1.072,1.071,0.97,0.888,0.947,0.954,0.955,1.022,1.075,0.777,0.938,0.982,0.923,0.926,1.022,1.106,0.906,0.892,0.955,0.857,0.986,0.98,0.994,1.001,1.009,0.935,0.881,1.031,0.971,1.013,1.05,0.988,1.024,1.031,0.965 +NM_022355,0.879,1.22,1.029,1.018,0.913,1.072,0.951,0.932,0.829,0.883,0.97,0.885,0.946,0.893,0.926,0.851,1.004,0.974,1.081,0.847,1.085,0.824,1.01,0.894,0.904,0.836,0.889,0.921,0.88,1.057,0.896,1.15,1.084,1.315,1.045,1.145,0.943,0.879,1.401,1.469,0.827,1.106,0.891,0.984,0.996,0.948,0.953,0.864,0.906,0.924,0.963,1.072,0.907,1.133 +NM_022356,0.863,1.172,0.933,0.746,0.878,0.935,0.74,0.734,0.812,0.764,0.846,0.743,0.716,0.742,0.871,1.15,0.907,0.911,0.855,1.051,0.866,0.783,1.345,0.925,0.852,0.853,0.98,0.783,0.775,1.087,0.742,4.622,2.105,1.179,0.87,1.218,0.949,0.857,1.707,1.923,0.853,1.083,0.883,1.588,0.892,1.102,1.144,0.824,0.95,0.898,1.085,1.173,0.749,1.69 +NM_022357,0.99,0.942,0.916,0.985,1.079,0.974,0.889,1.208,0.969,0.827,0.961,0.937,1.137,1.269,1.213,0.854,0.905,1.018,0.83,0.893,0.998,0.997,0.913,0.925,0.892,0.978,1.002,1.043,1.116,0.959,1.002,1.128,0.802,1.007,1.101,0.867,1.055,0.918,1.096,1.051,0.937,0.926,1.21,0.815,0.989,0.816,0.983,0.903,0.905,0.839,1.023,0.899,0.849,0.952 +NM_022358,0.816,2.605,0.855,1.025,0.83,1.232,0.798,0.836,0.832,0.83,0.974,0.767,0.802,0.904,0.891,0.933,0.861,1.131,1.102,1.28,0.873,0.675,0.99,0.922,1.019,0.804,0.949,0.817,0.907,3.985,0.801,8.872,1.52,2.398,0.731,0.788,1.395,0.829,1.924,1.625,1.091,1.636,0.967,2.087,0.938,0.97,1.184,0.852,0.783,0.909,1.635,1.932,0.834,5.31 +NM_022360,1.064,1.106,1.004,1.079,1.022,0.945,0.952,1.015,1.011,1.162,0.916,1.052,0.99,0.951,0.946,1.165,0.907,1.102,1.073,0.984,0.897,1.048,1.049,0.949,0.921,1.015,0.82,0.962,0.934,0.973,0.935,0.86,0.861,0.986,0.888,1.012,0.912,0.939,1.135,0.909,0.967,1.002,0.909,0.84,1.007,0.846,1.112,0.881,1.05,1.031,1.019,1.117,0.989,0.929 +NM_022361,0.958,1.063,0.941,1.183,0.9,1.102,1.022,0.999,1.018,1.0,0.882,1.084,1.017,1.372,0.902,0.948,0.989,1.036,0.994,0.957,1.097,0.975,0.934,0.998,1.097,0.999,1.016,1.016,0.796,0.984,1.057,1.093,0.973,1.065,0.854,1.066,0.92,1.016,0.954,1.019,1.047,0.979,0.984,1.055,0.943,0.925,1.064,1.019,0.963,0.947,0.952,0.88,0.994,0.925 +NM_022362,0.79,1.103,1.207,0.769,0.892,0.942,0.485,0.458,1.098,0.948,0.962,0.942,0.598,0.685,0.862,1.05,0.804,0.908,1.321,1.011,0.598,1.004,1.287,1.351,0.656,0.93,1.73,0.785,0.458,1.249,0.792,1.595,1.282,1.198,0.228,1.056,1.045,1.126,1.252,1.125,1.106,1.08,0.574,1.328,0.843,1.003,1.064,0.759,0.828,0.837,0.997,0.827,0.863,1.095 +NM_022363,1.131,1.036,0.961,0.852,0.781,1.096,1.079,1.149,1.188,0.978,1.168,1.083,1.059,0.916,0.729,1.007,0.877,1.041,1.127,0.995,1.148,0.901,0.906,1.005,1.014,0.977,1.123,0.826,0.913,1.046,1.053,0.913,1.191,0.986,0.859,0.873,0.937,0.854,0.947,1.018,1.092,1.212,0.81,1.092,1.005,1.195,0.944,0.963,0.944,0.976,1.03,0.882,0.858,1.079 +NM_022365,0.488,1.438,0.904,0.583,0.735,1.942,0.94,0.512,0.823,0.693,1.107,0.62,0.539,0.474,0.933,1.875,0.69,0.833,0.856,1.458,0.417,0.759,1.843,0.869,0.815,0.566,0.969,0.773,0.576,1.929,0.739,2.846,3.097,1.751,0.259,0.731,1.213,0.888,1.953,0.6,0.981,1.5,0.662,1.576,0.738,1.363,1.165,0.561,1.171,0.629,1.465,0.691,0.555,2.043 +NM_022366,0.579,1.161,1.015,0.719,0.726,1.104,0.731,0.564,1.09,0.998,0.988,0.728,0.743,0.594,1.063,1.589,0.725,0.871,1.063,0.879,0.595,0.839,1.43,0.992,0.67,0.669,1.11,0.838,0.464,1.068,0.952,1.232,2.818,1.141,0.469,1.303,1.012,1.003,1.452,1.022,0.996,0.958,0.675,1.285,0.977,0.959,1.056,0.716,1.171,0.788,1.099,0.849,0.661,2.219 +NM_022367,1.744,0.623,2.535,0.987,2.206,0.596,0.615,1.043,3.189,2.047,0.357,1.891,1.333,1.36,1.113,0.564,1.566,1.251,1.596,0.766,0.726,1.937,0.792,2.794,0.702,1.623,2.297,2.319,0.466,0.764,2.267,1.068,0.675,0.992,0.43,0.4,0.684,1.675,0.521,1.716,2.231,1.233,0.446,0.465,2.465,0.456,0.88,1.467,0.397,1.406,0.822,0.947,1.801,0.592 +NM_022368,0.721,1.118,1.03,0.949,0.843,1.0,1.041,0.61,1.07,0.986,1.011,0.689,0.822,0.881,0.796,1.016,0.81,1.018,0.826,1.059,0.868,0.698,0.965,0.94,0.857,0.837,0.934,0.73,0.747,1.097,0.978,2.063,1.575,1.422,0.795,1.178,0.836,0.767,1.308,0.917,0.998,1.091,0.838,1.615,0.925,0.857,1.067,0.747,0.665,0.88,1.003,1.231,1.377,1.232 +NM_022369,1.023,1.043,1.291,1.034,0.958,0.899,1.025,0.732,0.962,0.955,0.931,0.956,0.848,0.894,0.819,0.984,1.147,1.211,1.042,1.115,0.986,0.965,1.15,0.905,0.859,0.97,1.125,1.1,0.802,0.99,0.807,1.859,1.354,1.007,1.01,1.891,0.854,1.046,1.202,2.163,0.988,1.107,0.865,1.682,0.91,0.917,1.034,0.964,0.931,1.129,0.995,1.574,1.267,2.227 +NM_022372,1.05,0.948,0.996,0.978,0.895,0.976,0.712,0.949,0.954,0.837,0.876,1.092,1.062,1.0,0.888,1.027,0.959,1.0,1.14,0.883,1.033,1.066,1.03,1.028,1.031,1.14,1.034,0.802,0.957,0.948,0.879,1.172,2.014,1.216,0.754,0.901,0.938,1.021,1.402,0.933,0.896,0.953,1.016,1.176,0.896,0.849,0.98,1.165,0.958,1.088,1.015,0.804,0.913,1.075 +NM_022373,0.886,0.939,0.993,0.865,1.074,1.229,1.041,1.203,1.024,0.999,1.068,1.215,0.923,0.717,1.117,1.335,0.99,0.97,0.859,1.006,0.733,1.383,1.05,1.07,0.746,0.941,1.232,0.98,0.893,1.276,1.595,1.312,1.732,1.071,0.85,0.728,0.972,1.248,0.894,1.243,1.001,0.968,0.966,0.776,0.993,1.031,1.137,0.973,1.001,0.838,1.099,1.05,0.935,1.307 +NM_022374,1.018,0.968,0.957,0.851,0.946,1.046,1.015,1.105,1.088,1.058,0.888,0.941,1.012,0.965,1.062,0.918,0.975,1.097,0.936,1.033,0.895,0.986,1.076,1.046,1.096,1.025,0.952,0.945,1.039,1.015,1.023,0.83,1.205,0.958,1.004,0.987,1.059,1.109,0.863,1.072,0.962,1.006,1.215,1.076,0.978,1.024,1.151,1.046,1.036,1.069,1.017,0.959,0.875,1.039 +NM_022377,0.984,1.152,0.958,0.956,1.023,0.894,0.85,0.841,0.916,1.111,0.849,1.013,1.006,0.767,0.881,0.886,1.08,0.916,0.788,1.029,0.88,0.918,0.883,1.099,0.866,1.082,1.012,1.034,0.755,0.894,0.923,1.138,0.94,1.012,1.092,0.913,0.997,1.211,1.054,1.127,1.014,0.96,1.008,0.956,0.861,1.001,0.877,1.038,1.024,1.183,1.09,1.081,1.005,0.88 +NM_022405,0.788,1.262,0.803,0.933,0.769,1.53,1.169,0.907,0.842,0.773,2.023,0.807,0.79,0.974,1.467,1.727,0.815,1.256,0.743,1.409,0.754,0.859,1.072,0.824,0.93,0.8,0.867,0.789,1.341,1.318,0.869,0.952,0.845,1.523,0.841,1.171,1.687,0.824,2.183,1.202,0.749,1.796,1.036,1.421,0.857,1.657,1.022,0.854,1.225,0.763,2.026,0.851,0.826,1.161 +NM_022436,1.065,0.953,1.059,0.859,0.927,1.081,0.902,1.021,0.891,1.064,0.905,0.886,0.751,1.06,0.852,1.145,1.086,0.936,1.166,0.921,1.073,0.971,0.99,1.109,0.987,1.063,1.023,0.999,0.868,1.125,0.939,0.914,1.01,1.058,0.99,0.879,1.107,1.064,1.001,1.083,1.119,0.869,0.911,0.955,1.126,0.949,0.922,0.995,1.027,0.944,0.883,0.994,0.976,1.076 +NM_022440,10.65,0.111,5.963,4.416,9.669,0.175,0.191,9.94,11.41,6.294,0.0537,5.615,9.072,5.967,6.681,2.931,8.35,5.258,8.215,0.137,4.215,11.51,0.0539,8.215,0.492,13.56,5.056,11.24,0.28,0.0671,10.78,0.0473,3.65,0.771,16.26,0.0553,0.218,11.42,0.241,0.0469,9.232,0.0778,0.0603,0.054,6.204,0.0416,4.281,14.67,0.627,5.892,1.582,0.802,5.083,0.471 +NM_022442,0.666,0.958,1.21,0.616,0.97,1.039,0.509,0.586,1.185,1.051,1.085,0.775,0.64,0.584,0.768,1.132,0.822,0.837,1.046,1.038,0.393,0.836,1.308,0.834,0.541,0.895,1.019,1.114,0.435,1.498,0.934,2.031,1.007,1.082,0.97,0.831,1.055,1.191,1.144,1.174,1.064,1.084,0.684,1.111,0.942,1.202,1.045,1.007,0.964,0.708,1.023,1.083,0.931,1.229 +NM_022445,0.707,1.03,0.743,1.074,0.825,1.175,0.842,0.621,0.734,0.74,2.251,0.649,0.722,0.612,1.621,4.975,0.933,0.907,1.089,1.472,0.68,0.648,1.515,0.681,0.717,0.702,1.034,0.617,0.804,1.071,0.623,1.596,0.872,1.336,0.648,1.393,1.999,0.69,1.584,0.737,0.899,1.299,1.005,1.143,0.829,2.683,2.298,0.708,3.322,0.851,1.872,0.881,1.097,1.531 +NM_022447,0.937,0.958,1.16,0.644,0.927,0.95,0.707,0.651,1.214,0.893,0.813,0.82,0.698,0.89,0.906,1.213,0.884,0.794,1.256,0.891,0.73,1.249,1.054,1.203,0.742,0.696,1.281,0.91,0.718,1.051,1.029,1.22,2.313,0.916,0.526,0.767,1.449,1.245,1.121,0.793,1.058,1.169,0.972,0.852,1.007,1.074,1.107,0.666,1.006,1.002,1.004,0.944,0.942,2.037 +NM_022449,0.857,1.156,0.819,0.998,0.832,1.161,0.928,0.822,0.8,0.902,0.938,0.846,0.878,0.976,0.949,1.416,1.106,1.015,0.885,1.139,0.735,0.808,1.162,0.848,1.036,0.768,1.034,0.85,0.972,1.292,0.871,1.094,0.98,1.189,0.715,0.964,1.08,0.985,1.167,1.006,0.845,1.241,0.884,1.287,0.849,1.009,1.106,0.915,1.028,0.984,1.002,0.935,0.819,1.509 +NM_022450,0.587,0.753,1.465,0.736,1.007,1.21,0.882,0.56,1.535,1.362,0.954,0.661,0.443,0.76,0.89,0.818,1.162,1.034,1.301,1.001,0.591,0.808,0.982,1.032,0.334,0.668,1.215,0.912,0.574,1.238,0.988,2.556,1.46,1.12,0.63,0.982,0.884,0.867,1.51,1.407,1.365,0.974,0.638,0.915,1.104,1.166,1.427,0.764,0.769,0.823,0.964,0.904,1.01,0.974 +NM_022451,0.892,1.07,1.368,0.815,1.035,0.978,0.781,0.793,1.396,1.535,0.851,1.324,1.153,0.754,0.975,1.119,1.03,0.8,0.961,0.9,0.712,1.09,1.157,1.601,0.695,0.787,1.21,0.932,0.562,0.893,1.212,1.13,2.492,1.116,0.462,0.907,0.885,0.854,1.431,0.888,1.078,1.148,0.554,1.597,1.357,0.708,0.866,0.759,1.031,0.86,0.9,0.946,0.89,2.01 +NM_022452,1.543,0.733,1.139,0.959,0.894,0.872,0.702,1.082,1.186,0.934,0.724,0.813,0.981,1.032,1.017,1.252,1.143,0.978,1.628,0.841,1.167,1.231,0.776,1.155,0.913,1.582,1.309,0.86,0.934,0.907,1.244,1.197,1.983,0.928,1.011,0.817,0.815,1.126,1.379,1.001,0.932,0.898,0.776,1.237,1.216,0.752,0.894,1.302,0.748,1.349,0.813,0.769,1.192,1.339 +NM_022453,0.969,0.952,0.971,0.999,0.855,1.022,0.923,0.844,1.018,1.029,0.987,0.99,0.915,0.975,0.881,0.877,1.063,1.054,0.966,0.914,1.071,1.023,1.106,1.129,1.001,0.949,1.125,0.896,1.321,0.937,1.148,1.566,1.181,1.041,0.894,0.915,0.906,0.942,1.508,1.158,0.923,1.004,0.871,1.496,0.989,0.801,0.988,0.989,0.831,0.971,0.895,0.979,0.941,1.234 +NM_022454,1.012,0.916,1.015,1.001,1.176,0.957,1.129,0.927,0.988,1.063,1.0,0.935,0.999,0.824,0.73,0.982,1.0,1.022,0.854,1.032,0.854,1.066,1.091,0.903,0.928,0.999,0.9,1.091,1.266,0.867,1.1,1.241,1.181,1.021,0.923,1.068,0.925,1.042,1.105,1.113,0.974,1.129,1.035,0.99,1.107,0.996,1.022,1.097,1.02,1.11,0.942,0.969,0.921,0.983 +NM_022455,0.994,1.1,1.041,0.96,1.071,1.069,0.923,0.918,0.967,0.996,1.037,0.939,0.953,1.01,1.061,0.992,0.865,1.116,0.918,0.778,0.989,1.022,1.128,1.013,1.068,0.854,1.053,0.87,1.159,1.03,1.099,1.087,1.176,1.09,0.933,1.02,1.018,0.91,0.887,0.919,1.054,0.944,0.878,1.142,0.88,0.894,1.192,0.875,0.921,1.279,1.001,0.968,0.973,1.157 +NM_022456,0.579,0.999,0.638,0.618,0.598,1.536,0.651,0.485,0.77,0.633,1.34,0.579,0.643,0.57,0.914,1.371,0.579,0.713,0.64,1.091,0.466,0.437,1.213,0.67,0.773,0.444,0.806,0.485,0.427,1.047,0.784,1.565,2.588,1.358,0.503,1.92,1.636,0.647,1.843,1.338,0.582,1.319,1.085,1.298,0.773,1.134,0.735,0.525,1.176,0.552,1.055,1.115,1.028,2.084 +NM_022457,0.707,1.067,0.904,0.821,0.789,1.37,0.607,0.488,1.205,0.76,1.427,0.854,0.698,0.776,1.006,1.494,0.841,0.873,1.234,0.826,0.613,0.751,1.134,0.972,0.657,0.842,1.232,0.819,0.608,1.205,0.934,1.227,2.111,1.338,0.415,1.592,1.362,0.849,1.389,1.152,0.999,0.986,0.877,1.168,0.86,1.123,0.942,0.772,1.048,0.749,0.977,0.732,0.917,1.351 +NM_022458,0.747,1.234,0.977,0.756,0.843,1.195,0.973,0.739,0.906,0.892,1.109,0.786,0.649,0.668,0.885,1.473,0.725,1.152,0.834,0.985,0.534,0.723,1.89,1.17,1.002,0.726,1.132,0.758,0.571,1.881,0.792,1.208,1.093,1.353,0.433,0.727,1.269,0.924,1.164,0.816,0.876,1.44,0.648,1.44,1.127,1.09,1.267,0.825,0.759,0.731,1.187,0.898,0.846,1.559 +NM_022459,0.846,0.933,1.139,0.732,0.862,0.889,0.722,0.574,1.047,1.017,1.077,0.813,0.723,0.774,0.885,1.393,0.952,0.792,1.28,0.99,0.819,0.871,1.602,1.036,0.818,0.81,1.177,0.807,0.773,1.281,0.845,1.26,1.451,1.236,0.524,0.958,1.012,0.835,1.207,1.442,1.089,1.07,0.963,1.049,1.024,1.031,0.98,0.682,1.073,0.846,1.03,0.902,1.058,3.095 +NM_022460,1.027,1.02,1.119,0.845,0.927,1.081,0.853,1.017,0.931,1.13,0.947,1.077,0.913,0.934,0.857,1.056,0.907,1.041,1.035,0.969,0.967,1.003,1.048,0.974,1.0,0.976,1.075,0.925,0.853,1.01,0.938,1.044,1.107,1.066,0.869,1.0,1.001,1.161,1.111,0.999,0.802,1.021,0.92,1.041,0.898,0.913,1.029,0.94,1.033,0.883,0.981,0.865,0.844,0.883 +NM_022461,0.918,0.95,1.23,0.908,1.036,1.025,0.843,0.974,1.091,1.023,1.112,0.884,0.916,0.98,1.188,1.262,0.838,1.017,1.278,0.902,0.841,0.92,0.961,1.129,0.913,0.797,1.186,1.173,0.599,1.065,1.037,1.148,1.004,1.105,0.968,0.913,1.273,1.046,1.154,0.876,0.981,1.015,0.917,0.892,1.119,0.924,0.958,0.968,1.015,0.88,1.127,0.85,1.015,1.236 +NM_022462,1.037,1.113,0.948,0.937,0.995,0.992,0.971,1.122,0.959,0.837,0.925,1.007,0.896,1.28,0.907,0.963,0.96,0.882,1.103,1.064,0.917,1.119,0.839,1.02,1.054,0.905,0.931,0.883,1.214,1.055,1.063,0.875,1.03,0.93,1.013,1.099,0.915,1.077,0.934,0.987,0.933,0.826,1.102,1.015,1.025,1.043,1.085,1.035,1.015,0.973,0.963,0.886,1.158,0.96 +NM_022463,0.878,0.636,1.671,0.896,0.996,0.751,0.805,1.035,1.321,1.292,0.749,0.769,1.07,0.852,0.915,0.802,1.699,1.045,1.823,0.752,1.011,0.969,0.937,1.488,0.764,1.177,1.239,0.989,0.555,0.997,1.167,1.886,2.761,1.116,0.866,0.726,0.731,1.506,0.814,1.265,1.286,1.12,0.696,1.212,1.558,0.587,1.005,1.152,0.62,1.188,0.881,1.231,1.74,1.047 +NM_022464,0.371,2.266,0.668,0.683,0.587,0.94,1.02,0.225,0.55,0.699,1.106,0.438,0.338,0.289,0.604,1.212,0.536,1.004,0.509,1.376,0.254,0.477,1.379,0.552,0.821,0.539,0.728,0.506,0.596,1.834,0.448,1.597,1.632,1.364,0.138,1.129,1.331,0.444,1.541,0.929,0.736,1.631,1.095,1.038,0.637,1.652,1.014,0.507,1.307,0.458,1.472,1.259,0.575,1.157 +NM_022465,0.967,1.041,1.045,1.145,0.923,1.069,0.792,0.856,0.961,0.922,1.025,0.957,1.005,0.8,1.103,1.073,1.069,1.001,0.949,0.854,0.982,0.986,0.912,0.81,0.907,0.878,1.053,1.051,0.768,0.92,1.014,1.219,1.24,1.233,1.103,1.07,0.909,1.001,1.029,1.124,1.164,0.998,0.773,1.036,1.019,0.89,0.858,1.015,0.947,0.967,0.869,0.899,0.919,1.096 +NM_022466,1.026,1.148,0.95,1.223,1.216,0.981,1.022,1.214,0.97,1.017,0.899,1.028,1.007,0.96,0.906,1.001,1.106,1.029,1.126,1.064,0.943,1.028,0.989,1.078,1.062,1.091,0.954,0.993,1.183,0.962,0.954,0.906,0.849,0.971,1.063,0.942,1.024,0.93,0.971,1.03,1.048,1.117,1.056,0.929,0.938,1.025,0.906,1.053,0.897,0.8,1.077,1.173,0.996,1.084 +NM_022467,1.333,0.86,0.89,1.048,1.029,0.953,1.857,1.547,1.188,0.745,0.853,0.881,1.062,1.0,1.495,0.853,0.897,1.144,0.902,0.877,1.275,1.119,1.045,0.981,0.942,0.97,1.016,1.042,1.351,0.92,0.969,0.799,1.194,1.098,1.026,0.905,0.854,1.054,1.021,0.947,0.747,1.19,1.389,0.915,1.132,1.264,1.036,1.019,1.236,1.09,0.833,0.895,1.056,1.12 +NM_022468,0.826,1.059,1.901,1.491,0.729,0.814,0.935,0.679,0.682,0.711,0.674,0.711,0.79,0.62,0.651,0.703,1.338,0.734,1.068,0.736,0.746,0.734,1.005,0.995,0.727,0.694,2.373,0.755,0.662,1.393,0.655,1.323,1.143,0.837,0.697,0.954,1.241,0.7,2.846,7.353,1.537,1.54,0.891,1.23,2.012,0.985,1.232,0.637,0.957,4.282,0.865,3.454,2.074,2.582 +NM_022473,0.745,1.432,1.301,0.767,0.893,1.031,0.819,0.498,1.056,1.038,0.847,0.554,0.507,0.711,0.95,1.012,0.87,0.866,0.97,1.199,0.718,0.87,1.703,0.87,0.863,0.896,1.331,0.791,0.605,0.998,0.891,1.097,1.735,1.414,0.452,0.876,0.958,0.864,1.542,0.713,1.059,1.524,0.768,0.876,0.931,0.906,0.852,0.778,0.966,0.798,1.078,0.813,0.899,1.535 +NM_022474,0.855,0.854,1.202,0.759,1.174,1.145,0.946,1.149,1.018,1.061,1.158,1.004,0.88,1.011,1.447,1.702,1.167,1.115,0.932,1.024,0.838,0.971,1.011,1.246,0.813,0.869,1.191,1.017,0.999,1.033,1.212,0.978,1.399,0.934,1.091,0.868,1.14,1.124,1.198,0.979,1.035,0.809,1.05,0.783,1.118,0.906,1.078,1.036,0.999,1.01,1.189,0.734,0.678,0.998 +NM_022475,0.913,1.095,1.063,0.901,0.901,1.153,1.054,0.942,0.94,0.965,1.237,1.003,0.935,0.902,0.981,1.087,0.814,0.871,0.86,1.071,0.981,0.889,1.262,0.869,1.06,0.881,0.95,0.909,0.727,1.394,0.904,1.367,0.928,1.482,0.878,0.847,1.059,0.873,1.189,0.946,1.0,1.352,0.901,0.929,1.057,1.221,1.043,0.905,0.943,0.96,1.275,0.941,0.911,0.799 +NM_022476,1.165,0.792,1.54,0.766,1.672,0.881,0.485,0.944,1.985,1.165,1.014,1.312,0.769,1.392,1.46,1.873,0.927,0.91,1.988,0.797,0.863,1.357,1.055,2.004,0.581,1.181,1.433,1.484,0.309,0.972,1.606,1.256,2.397,1.098,0.685,0.559,0.95,1.33,0.865,0.622,1.55,0.893,0.538,0.809,1.356,0.851,1.064,1.363,0.726,1.098,0.968,0.909,1.291,2.823 +NM_022477,0.597,0.9,1.373,0.787,0.811,1.302,0.6,0.532,0.805,0.815,0.987,0.684,0.65,0.746,1.179,1.967,0.721,0.858,1.183,1.108,0.449,0.902,1.842,0.811,0.739,0.685,1.278,0.728,0.519,1.803,0.966,1.587,2.599,1.564,0.325,0.708,1.035,0.859,1.512,1.127,0.739,1.277,0.561,0.89,0.747,0.982,0.732,0.712,0.934,0.747,1.018,1.047,0.909,1.791 +NM_022478,0.907,0.961,1.024,0.871,1.052,0.931,0.976,0.938,0.86,0.811,0.946,1.012,0.937,0.88,1.001,1.095,0.972,0.864,0.815,1.101,1.099,1.072,0.934,1.05,0.927,1.233,1.05,0.957,1.014,0.997,1.086,1.058,0.862,0.951,1.073,0.969,0.754,0.987,1.031,0.898,0.981,0.936,1.072,0.984,1.041,1.02,0.99,0.937,0.908,1.052,1.003,1.101,0.899,1.276 +NM_022479,0.879,1.011,0.839,0.885,1.129,1.023,1.087,1.001,0.936,0.822,0.938,1.068,1.003,1.009,0.991,0.939,0.98,1.024,0.92,0.941,1.095,0.936,1.186,0.967,1.012,0.897,0.996,1.067,1.255,1.175,0.921,1.853,0.994,1.018,1.016,0.927,1.049,0.98,0.896,0.891,0.983,1.23,1.077,0.817,1.086,0.927,1.058,0.939,0.892,0.85,1.129,0.932,0.894,1.123 +NM_022480,0.965,0.96,0.808,0.928,0.874,1.108,0.723,0.569,1.005,1.054,1.05,0.797,0.571,0.621,0.774,1.128,0.775,1.013,0.825,1.31,0.638,0.864,2.047,1.013,0.76,0.95,0.813,1.017,0.674,0.933,0.766,0.877,0.801,1.043,0.509,1.142,1.237,0.892,1.329,0.808,0.959,1.128,2.286,0.862,1.06,1.768,1.137,0.776,1.222,0.822,1.362,0.884,0.762,0.996 +NM_022481,0.805,0.991,0.736,0.874,0.784,0.875,0.825,0.538,0.861,1.137,0.677,0.807,0.612,0.586,0.835,1.161,0.589,1.078,0.824,0.974,0.679,0.571,1.394,1.074,0.825,0.794,0.916,0.754,0.742,1.502,0.601,1.839,1.212,1.373,0.615,1.045,0.803,0.97,1.747,2.926,0.774,1.172,0.671,1.622,0.821,0.748,1.105,0.77,0.702,0.718,1.031,1.417,0.74,1.455 +NM_022482,0.884,0.815,1.059,0.962,0.858,1.013,1.011,0.818,1.019,0.977,0.805,0.899,0.933,0.925,0.943,1.054,0.84,1.06,0.942,1.073,0.998,0.979,1.053,0.799,0.94,0.953,0.771,0.977,1.235,0.948,0.95,1.038,1.248,1.141,0.951,0.875,1.055,1.123,1.014,1.223,1.004,1.021,0.958,0.879,1.081,0.945,0.931,1.0,0.91,0.837,1.092,1.043,1.024,1.166 +NM_022484,0.666,1.257,1.387,0.677,0.994,1.517,0.578,0.637,1.126,0.785,1.023,0.898,0.805,0.626,1.247,2.127,0.833,0.839,0.901,1.67,0.385,1.107,2.465,1.048,0.507,0.596,1.152,0.876,0.514,1.399,0.953,1.285,1.231,1.072,0.264,0.652,1.114,1.136,1.598,0.675,1.013,1.29,0.854,0.556,0.944,1.294,0.899,0.784,1.155,0.698,1.607,0.702,0.535,1.058 +NM_022485,0.681,0.982,0.978,0.91,0.719,1.669,0.844,0.805,1.0,0.925,0.996,0.888,0.885,0.687,0.919,1.499,0.871,0.934,1.064,1.039,0.784,0.93,1.128,1.03,0.841,0.949,1.063,0.748,0.766,1.246,1.072,0.988,1.404,1.463,0.568,0.798,1.031,0.82,2.016,0.832,0.859,1.073,0.792,1.079,1.12,0.892,1.027,0.9,1.0,0.834,1.048,0.809,0.906,1.449 +NM_022486,0.857,1.43,0.714,0.989,0.821,1.199,0.793,0.73,0.721,0.864,1.047,0.718,0.61,0.796,0.987,1.292,0.8,0.908,1.058,1.133,0.69,0.669,1.004,0.849,0.767,0.701,0.892,0.923,0.868,1.544,0.777,1.33,1.379,1.522,0.628,0.967,1.307,0.647,1.549,1.168,0.817,0.942,0.973,1.486,0.823,1.244,0.889,0.726,0.935,0.776,1.24,0.88,0.921,1.662 +NM_022488,0.689,0.95,0.992,0.806,0.839,1.435,0.619,0.684,1.049,0.922,1.551,0.917,0.741,0.687,1.055,3.233,0.718,0.864,1.502,1.137,0.623,0.797,1.222,1.1,0.7,0.826,1.023,0.759,0.505,1.312,0.913,1.102,3.991,1.4,0.239,0.928,1.455,0.9,1.387,0.782,1.062,1.152,0.984,1.3,0.921,1.056,0.766,0.767,0.878,0.722,0.95,0.858,1.19,1.73 +NM_022489,0.212,1.701,0.562,0.897,0.482,1.697,1.125,0.142,0.525,0.715,1.499,0.327,0.146,0.261,1.288,1.995,0.386,1.426,0.423,1.842,0.178,0.25,1.668,0.405,0.697,0.296,0.456,0.265,1.351,2.353,0.469,2.292,0.713,2.193,0.213,0.865,1.803,0.587,2.632,0.681,0.365,1.838,1.022,1.65,0.519,1.751,1.389,0.239,1.243,0.273,1.736,0.797,0.382,0.915 +NM_022490,0.668,0.864,1.202,0.687,1.022,0.906,0.583,0.753,1.139,1.374,0.853,1.268,1.078,0.714,0.801,1.191,0.803,0.792,1.186,1.003,0.625,0.99,0.842,1.48,0.517,0.918,1.462,0.938,0.434,0.913,1.015,1.349,2.479,1.282,0.388,0.91,0.698,1.244,0.832,0.884,1.206,1.221,0.679,1.67,1.189,0.744,1.006,0.904,0.998,0.841,0.93,1.109,1.367,1.805 +NM_022491,0.841,0.75,1.321,0.828,0.99,0.955,0.663,0.717,1.346,1.11,1.292,0.81,0.707,0.947,0.964,1.246,0.941,0.934,1.626,0.986,0.721,0.868,1.223,1.224,0.722,0.99,1.327,0.967,0.391,1.283,1.172,0.985,1.245,1.444,0.56,0.899,0.998,1.011,1.183,0.863,1.283,1.168,0.697,0.828,1.09,1.177,0.843,1.036,0.898,0.946,0.976,0.726,0.998,1.608 +NM_022492,0.748,0.948,0.998,0.889,0.789,1.258,0.747,0.635,1.052,0.708,1.291,0.766,0.752,0.938,1.116,1.37,0.765,0.818,0.94,1.043,0.661,0.777,1.151,0.881,0.89,0.808,1.09,0.661,0.718,1.132,0.761,1.509,1.821,1.454,0.647,0.823,1.136,0.77,1.312,0.764,0.781,1.146,0.82,1.278,0.895,1.092,0.814,0.646,0.956,0.776,1.054,0.811,0.91,1.23 +NM_022493,0.909,0.913,0.874,0.901,0.965,1.128,0.817,0.92,0.916,0.969,0.926,0.887,1.072,0.768,0.952,1.182,0.955,1.023,1.263,1.006,0.965,1.069,1.021,0.994,0.999,1.309,1.089,0.829,0.985,1.185,0.863,1.056,1.372,0.928,0.697,0.97,0.955,1.017,1.629,0.901,0.866,1.053,0.884,1.214,0.836,0.982,0.905,1.003,0.955,0.983,0.856,0.801,1.009,1.167 +NM_022494,0.553,1.029,1.079,0.769,0.907,1.15,0.609,0.622,1.045,0.823,0.897,0.736,0.491,0.519,0.887,1.597,1.085,1.119,0.999,1.091,0.547,0.757,1.544,0.995,0.697,0.61,1.526,0.718,0.578,1.418,0.7,1.305,2.408,1.148,0.535,1.456,1.4,0.597,0.986,0.877,0.878,1.14,0.757,1.365,0.796,1.029,0.822,0.636,1.082,0.54,1.047,0.952,0.718,1.022 +NM_022495,0.803,1.14,1.11,0.772,0.806,0.998,0.796,0.802,1.159,0.788,1.031,0.776,0.733,0.828,1.089,1.198,0.804,0.816,0.899,1.062,0.65,0.724,1.232,1.053,0.762,0.739,1.232,0.969,0.469,1.115,1.103,1.439,1.568,1.273,0.721,0.875,1.018,0.812,1.123,1.015,0.916,1.134,0.774,1.32,0.76,1.17,1.052,0.773,1.052,0.663,1.226,0.757,0.956,2.233 +NM_022496,0.676,0.786,1.362,0.739,0.989,1.533,0.748,0.863,1.288,0.792,1.027,1.089,0.923,0.745,1.257,2.156,0.974,0.879,0.964,1.421,0.488,0.927,1.244,1.261,0.61,0.731,1.695,0.948,0.496,1.131,1.116,1.296,1.371,1.061,0.456,0.818,1.351,0.919,1.191,0.786,1.177,0.912,0.67,0.67,0.924,1.347,1.207,0.8,1.289,0.715,1.137,0.802,0.668,1.828 +NM_022497,0.901,1.112,1.031,0.979,0.954,1.07,0.888,0.825,1.322,0.971,1.057,0.847,0.791,1.012,0.94,1.053,1.042,0.909,0.791,1.365,0.921,0.998,1.308,1.174,0.872,0.876,1.154,1.091,1.189,1.137,0.911,1.098,0.931,1.072,0.697,0.907,1.033,1.029,1.024,0.998,1.091,0.954,0.995,0.787,1.002,1.013,1.09,0.932,1.087,0.957,0.953,0.928,0.93,1.286 +NM_022551,0.598,1.004,1.596,0.457,1.048,1.055,0.576,1.048,1.255,1.13,0.73,1.137,1.092,0.384,0.887,1.388,0.917,1.276,1.128,0.972,0.374,1.25,1.337,1.345,0.405,0.888,0.904,1.204,0.283,0.734,1.386,1.214,1.228,1.102,0.509,0.821,0.805,1.437,1.472,0.741,1.029,1.155,0.33,0.789,1.283,0.53,0.895,1.274,1.031,1.077,0.872,0.552,0.632,1.483 +NM_022553,0.999,0.885,1.285,1.032,0.959,0.92,0.63,0.662,1.162,1.16,1.084,0.759,0.726,0.945,1.047,1.548,1.101,0.965,1.59,0.918,0.85,0.982,1.081,1.113,0.829,1.374,1.067,0.883,0.662,0.99,1.173,0.972,2.272,1.164,0.796,0.802,1.092,1.002,1.253,0.821,0.937,1.194,0.785,1.425,1.123,0.805,0.838,1.125,0.974,1.059,1.031,0.713,1.355,1.504 +NM_022555,2.193,7.832,0.3,2.112,2.483,4.527,0.328,0.764,0.253,2.074,0.849,0.817,0.274,0.723,0.258,2.033,0.283,1.217,0.218,0.263,0.249,0.207,3.374,1.453,0.275,0.275,3.11,1.151,0.503,0.263,0.26,7.668,1.477,0.298,0.332,0.619,0.25,0.255,16.47,0.293,0.237,0.258,2.828,2.451,0.268,2.423,0.255,1.592,0.312,1.306,6.649,0.209,7.424,0.232 +NM_022556,0.986,1.082,0.964,1.196,1.076,0.991,0.908,0.897,0.976,0.962,0.831,0.853,1.018,1.205,0.839,0.928,0.989,1.086,0.969,0.939,1.015,0.982,0.886,1.133,1.125,1.004,1.098,1.047,1.002,0.95,1.055,0.962,1.089,0.936,0.999,0.991,0.889,1.135,1.001,0.832,1.166,0.919,0.906,0.935,1.072,1.152,1.17,0.957,1.074,0.933,1.108,1.147,1.103,0.94 +NM_022557,1.115,1.046,0.948,1.149,1.036,1.143,0.919,1.087,1.035,0.961,1.081,1.045,0.959,0.765,0.943,1.249,0.978,0.959,1.002,0.913,1.029,1.07,0.928,0.997,0.981,1.284,1.098,0.955,0.83,1.019,0.968,1.16,0.916,0.99,0.975,1.036,1.051,1.039,1.32,0.947,0.991,0.988,1.007,1.053,0.872,1.023,0.947,0.937,0.979,0.996,1.095,0.979,1.064,1.095 +NM_022562,1.001,1.113,0.958,1.002,1.141,0.987,1.059,1.223,0.892,0.93,1.043,1.101,0.988,0.946,0.911,0.975,1.057,0.943,0.998,0.979,0.916,1.02,1.001,1.034,1.109,1.064,1.08,0.984,1.377,1.019,1.052,0.973,1.122,1.092,1.04,1.08,1.023,0.989,0.907,0.989,0.949,1.037,1.159,0.896,0.983,0.999,0.954,0.978,0.876,1.036,1.015,1.025,0.963,0.996 +NM_022564,1.05,0.841,1.031,1.026,0.938,1.063,0.99,1.145,0.905,0.96,0.879,0.955,1.105,1.087,0.969,0.938,1.066,1.129,0.95,0.989,1.116,1.009,0.865,0.944,1.137,1.152,1.177,0.998,0.882,0.954,1.173,1.117,1.002,0.94,0.972,0.97,1.138,0.987,1.035,1.044,0.82,1.012,0.987,1.018,0.937,0.83,1.033,1.065,1.004,1.088,1.064,0.998,0.968,0.898 +NM_022566,0.977,1.073,0.923,1.063,0.909,1.107,0.858,0.912,0.942,0.95,0.984,0.895,0.912,0.825,0.76,1.297,1.281,0.971,1.047,0.884,0.834,0.833,1.156,1.091,0.926,0.858,0.757,0.818,0.794,1.028,0.904,0.874,1.041,1.153,0.81,1.003,1.112,0.862,1.654,1.137,0.844,0.919,1.269,1.001,0.951,1.195,0.947,1.0,1.182,0.989,1.051,0.884,0.806,0.971 +NM_022567,0.967,0.991,1.039,0.988,1.11,0.979,1.077,1.132,1.051,0.952,0.921,1.052,0.952,1.0,1.055,1.002,0.993,0.945,0.977,1.081,0.871,1.03,0.934,1.018,0.977,1.051,1.16,1.099,1.031,1.101,1.272,0.881,0.808,1.031,1.129,0.907,0.995,0.939,1.06,1.08,0.945,1.095,1.153,0.861,1.088,0.734,0.943,1.012,1.194,1.075,1.083,0.862,1.025,0.905 +NM_022568,1.043,0.995,1.023,0.907,1.164,1.018,0.984,0.96,0.998,1.07,1.126,0.972,1.036,1.146,1.206,0.995,1.049,0.965,0.916,0.949,1.054,0.945,0.914,1.075,0.983,0.925,1.04,1.022,1.126,0.923,1.095,1.011,1.143,0.922,0.941,1.138,0.968,1.034,1.066,1.029,0.857,0.987,0.83,1.041,1.052,1.077,1.069,0.957,0.99,0.968,1.0,0.946,1.179,0.822 +NM_022569,0.878,1.138,0.999,0.952,0.918,1.121,1.064,0.951,0.967,0.878,1.017,0.937,0.889,0.964,1.062,0.912,0.793,1.153,1.029,0.965,1.015,0.976,1.127,1.013,0.994,1.027,0.999,0.902,1.058,1.173,0.917,1.014,1.223,1.001,0.964,1.011,1.016,0.915,0.983,1.084,1.054,0.896,1.079,0.827,1.096,1.009,0.89,1.056,1.202,1.002,0.924,1.05,1.083,0.999 +NM_022571,0.871,1.014,1.008,0.87,1.018,1.053,0.839,1.171,1.099,0.913,0.962,1.029,1.038,0.843,0.948,0.831,0.951,0.953,0.91,0.863,1.176,1.22,0.88,0.973,1.038,1.049,1.074,1.134,0.972,0.988,0.977,1.15,0.956,0.999,0.983,1.004,0.953,0.869,1.075,1.034,0.971,0.944,0.805,0.969,1.18,0.992,0.949,1.068,1.067,1.045,1.0,0.912,1.116,1.0 +NM_022572,1.02,1.144,0.985,1.053,1.046,0.943,0.969,1.045,0.959,0.896,1.059,1.173,0.928,1.01,0.898,0.867,0.949,1.057,1.055,0.89,0.982,1.08,0.928,0.958,1.051,1.112,0.888,1.078,1.061,1.095,1.018,0.941,0.916,0.896,0.975,0.898,1.058,0.903,0.897,1.032,1.031,0.958,1.067,0.896,0.935,1.041,0.929,1.029,1.039,0.893,1.129,1.04,0.955,1.034 +NM_022573,1.067,1.068,0.966,1.186,0.969,0.881,1.043,1.162,1.183,0.905,0.996,1.012,0.972,1.139,0.836,1.051,1.028,1.116,1.024,0.865,1.005,0.834,0.966,1.057,1.099,1.195,0.998,0.92,1.124,1.085,0.973,0.878,1.07,0.968,0.847,0.946,1.147,0.96,1.04,0.856,0.99,1.062,0.884,0.899,0.994,1.088,0.837,1.043,0.879,1.055,0.995,1.047,1.016,1.074 +NM_022574,0.904,1.153,1.208,0.974,0.923,1.007,1.125,1.104,1.05,0.958,0.989,0.965,0.986,1.11,0.845,0.951,0.897,1.01,1.183,1.141,0.902,1.011,1.126,1.104,0.921,0.933,1.065,1.046,1.02,0.968,0.94,1.19,0.855,1.17,0.882,0.886,0.91,0.931,0.972,1.132,0.892,0.898,0.86,1.107,0.958,1.082,0.922,0.967,0.916,0.848,1.018,1.157,0.954,1.236 +NM_022575,0.762,1.057,1.054,1.29,1.096,0.951,0.839,1.042,0.931,0.864,0.977,1.092,0.89,0.972,1.156,0.993,0.9,1.017,0.951,0.929,0.9,0.816,0.868,0.901,0.852,1.001,1.192,0.897,1.289,0.982,0.983,0.89,1.352,1.054,1.048,1.03,1.109,1.007,1.226,1.057,0.998,0.917,1.006,0.951,0.962,0.944,0.934,0.879,0.859,0.961,0.942,1.142,1.049,1.036 +NM_022576,1.039,1.135,1.052,0.993,1.103,0.966,0.998,1.104,1.048,1.094,0.824,1.095,1.086,0.886,0.842,1.031,0.948,0.935,0.937,1.087,1.0,0.985,0.987,0.912,1.004,1.015,1.149,0.954,0.613,0.908,1.183,1.137,0.792,0.826,0.953,0.798,1.02,0.955,1.01,1.016,1.124,0.924,0.894,0.969,0.978,0.99,1.069,1.024,1.131,1.137,0.961,0.977,1.198,0.914 +NM_022640,0.924,0.948,0.945,1.069,1.039,0.914,0.919,0.897,1.143,1.143,1.066,0.949,0.859,0.949,0.873,1.006,1.034,0.988,0.991,0.914,0.998,1.016,0.919,0.946,1.005,1.107,1.017,1.125,0.771,0.995,0.954,0.862,1.119,0.92,1.203,0.955,0.951,0.962,1.069,1.099,0.998,0.911,1.048,0.948,1.036,1.12,1.117,1.074,1.253,1.0,1.104,0.988,1.047,1.047 +NM_022642,1.077,1.035,1.047,1.071,0.918,0.999,0.832,1.07,0.891,0.889,0.94,1.052,0.96,1.059,1.083,0.874,0.892,0.935,1.091,1.153,1.077,0.927,1.04,0.991,1.011,1.058,0.956,1.012,0.857,0.856,1.025,0.897,1.014,0.902,1.007,1.047,1.044,1.065,1.023,0.969,0.989,1.059,1.165,0.887,1.05,0.935,0.909,1.012,1.128,0.907,0.978,0.906,1.013,0.986 +NM_022646,0.957,1.038,1.079,1.018,0.95,1.189,0.867,0.924,0.962,1.126,1.126,0.863,1.004,0.891,1.462,0.915,0.884,0.951,0.911,0.987,1.121,0.981,1.233,0.927,1.143,0.963,1.004,0.875,1.21,0.924,0.86,0.882,1.009,0.889,1.218,1.11,0.952,0.903,0.96,0.98,1.066,0.901,0.967,0.996,1.001,0.951,1.108,1.029,0.878,0.898,1.262,0.811,0.98,0.97 +NM_022648,0.947,1.087,1.122,0.945,1.118,0.924,0.799,0.973,1.159,1.125,0.848,1.004,0.969,0.972,0.897,0.971,1.059,0.851,1.062,0.853,1.149,1.012,1.049,1.042,1.038,0.952,1.159,1.143,1.379,0.935,0.919,1.438,1.192,1.113,0.965,0.963,0.83,1.003,0.977,1.458,1.091,1.29,0.898,1.008,1.122,0.945,0.963,0.9,0.877,1.043,0.972,1.076,0.958,1.114 +NM_022650,1.7309999999999999,1.696,2.541,1.928,1.936,2.097,1.829,1.401,2.315,2.29,2.0309999999999997,1.894,1.6920000000000002,1.806,1.9889999999999999,2.218,1.981,1.9769999999999999,2.092,2.121,1.6149999999999998,1.8719999999999999,2.262,2.1100000000000003,1.6190000000000002,1.8399999999999999,2.8979999999999997,1.831,1.379,2.173,2.127,1.9809999999999999,2.648,2.105,1.698,1.3519999999999999,1.887,1.887,2.177,1.7730000000000001,2.234,1.945,1.705,1.766,2.386,1.977,2.0380000000000003,1.931,1.807,1.978,1.9929999999999999,2.108,1.883,2.094 +NM_022652,0.729,1.006,0.934,0.81,0.767,1.46,0.99,0.656,0.757,0.755,0.905,0.962,0.787,0.643,1.09,1.756,1.186,0.813,0.688,1.079,0.597,0.769,1.312,0.971,0.821,0.683,0.926,0.808,0.7,1.381,0.786,1.634,2.17,1.048,0.681,0.802,1.143,0.994,1.392,1.731,0.755,1.22,1.216,0.844,0.833,1.436,1.254,0.774,1.599,0.805,1.265,1.428,0.789,1.457 +NM_022658,0.908,1.168,1.005,0.907,1.014,1.043,0.963,0.992,0.957,1.033,0.809,0.959,0.966,1.072,1.027,1.006,1.064,1.251,1.0,0.971,1.016,1.098,1.029,0.889,0.916,0.986,0.977,1.082,0.906,0.939,1.052,0.965,1.036,0.921,0.916,0.961,1.006,1.02,0.94,1.05,1.01,0.919,0.971,0.922,1.13,1.031,0.991,1.096,0.891,1.348,0.967,0.989,1.052,0.93 +NM_022659,0.988,1.074,1.128,0.854,1.099,0.925,0.854,1.054,0.996,0.982,0.923,0.978,1.116,1.022,0.751,0.951,0.997,0.972,1.194,1.032,1.024,0.867,0.955,0.965,1.025,0.886,0.94,0.98,0.645,0.928,1.162,1.011,0.88,1.023,1.049,1.01,0.858,1.083,0.969,1.043,1.003,0.945,1.211,0.912,0.929,0.922,0.979,0.898,0.995,1.1,0.913,0.923,1.012,1.136 +NM_022661,1.102,1.002,0.939,0.929,1.041,0.974,0.924,0.963,0.893,0.977,1.109,1.011,0.934,1.014,1.065,0.959,1.01,1.02,1.014,0.906,0.722,0.995,0.886,0.926,1.218,1.063,0.946,1.009,0.998,1.016,0.884,1.131,1.0,0.838,1.022,0.939,0.961,1.0,1.039,0.941,1.046,1.02,0.925,0.943,1.04,0.957,1.04,1.057,1.144,1.075,1.104,0.892,0.968,1.013 +NM_022662,0.773,1.15,1.378,0.639,0.865,0.745,0.502,0.503,1.203,0.997,0.855,0.883,0.59,0.633,0.843,1.258,0.943,0.816,1.259,0.887,0.634,0.854,1.377,1.103,0.536,0.883,1.151,0.799,0.411,1.0,0.846,1.259,2.836,1.103,0.356,1.326,1.08,0.978,0.933,1.192,1.027,1.162,0.676,2.105,1.155,1.165,1.196,0.574,1.188,0.751,1.037,1.03,1.0,2.832 +NM_022663,0.986,1.161,0.997,1.076,0.936,1.059,0.841,1.044,0.92,1.036,1.136,1.03,1.055,1.036,0.78,0.925,0.907,0.946,0.963,0.994,1.141,1.01,0.876,1.019,0.978,1.109,1.023,1.052,0.877,1.153,1.011,1.042,0.828,0.985,1.061,0.885,1.135,1.074,1.083,1.076,0.888,0.979,0.874,0.899,0.987,0.982,0.995,1.062,1.125,1.022,1.111,1.048,0.989,0.992 +NM_022664,10.68,0.172,5.466,2.515,8.929,0.165,0.214,10.93,11.71,4.267,0.206,4.969,6.697,7.057,6.482,2.278,6.062,5.357,3.861,0.275,1.669,9.318,0.238,5.217,0.142,7.047,3.29,10.06,0.126,0.263,11.38,0.448,1.681,0.201,18.96,0.898,0.278,8.63,0.419,0.239,6.34,0.144,0.157,0.23,4.159,0.158,4.545,11.64,0.715,4.41,1.634,1.303,2.018,0.499 +NM_022717,0.802,0.978,0.94,0.866,1.127,1.0,0.968,0.79,0.93,1.067,0.893,0.879,0.947,0.854,0.809,1.087,1.062,1.079,0.983,1.004,0.909,0.975,1.059,0.917,0.884,1.116,1.104,0.944,0.527,0.869,1.013,0.955,0.902,1.119,0.749,1.105,0.926,0.944,1.119,1.051,1.136,1.009,0.846,0.859,1.018,0.939,0.953,1.019,0.962,0.943,0.961,1.053,1.0,1.073 +NM_022718,0.924,1.009,1.429,1.383,0.842,0.937,0.839,0.848,0.926,0.765,0.881,0.846,0.839,0.854,0.947,0.964,1.046,1.024,1.006,0.886,0.859,0.853,1.213,1.071,0.721,0.893,1.512,1.063,0.784,1.132,0.84,1.168,0.99,0.854,0.796,0.859,1.04,0.955,2.093,3.172,1.175,1.324,0.753,1.145,1.438,0.917,0.917,0.87,0.978,2.714,0.927,1.745,1.483,1.81 +NM_022719,0.879,0.885,1.118,1.022,0.863,1.024,0.949,0.879,0.867,1.095,1.076,0.907,0.803,0.895,1.017,1.098,1.055,0.969,1.108,0.972,0.812,0.915,1.082,0.946,0.871,1.158,1.111,0.848,0.691,0.824,0.876,1.141,1.185,0.949,0.724,1.002,0.873,1.188,1.269,0.962,1.014,1.114,0.975,1.099,1.048,0.889,0.929,1.021,0.814,1.036,0.909,0.886,0.915,0.951 +NM_022720,0.844,0.924,0.87,0.843,0.978,1.177,0.679,0.728,1.061,1.007,1.06,1.067,0.779,0.862,1.121,1.22,1.012,0.84,1.019,1.159,0.858,0.964,1.089,0.857,0.794,1.005,1.233,0.932,0.581,0.991,1.012,1.153,1.384,1.158,0.723,1.062,0.931,1.034,1.036,1.15,0.938,0.958,0.77,0.941,0.943,1.029,0.902,0.887,0.959,0.882,0.962,0.92,0.945,1.16 +NM_022725,0.858,1.179,0.999,0.778,0.855,1.354,0.932,0.703,0.907,0.775,1.317,0.77,0.73,0.876,0.909,1.523,0.768,0.914,0.821,1.342,0.821,0.85,1.472,0.861,0.808,0.686,0.981,0.895,0.677,1.48,0.87,1.035,1.668,1.408,0.707,1.286,1.456,0.915,1.443,0.963,0.898,1.425,0.914,0.889,0.905,1.156,0.886,0.721,1.202,0.7,1.346,1.362,0.845,1.17 +NM_022726,2.082,0.616,1.806,1.062,3.204,0.62,0.557,2.715,4.879,3.448,0.721,3.791,1.923,1.876,1.809,1.466,0.82,2.094,2.928,0.641,1.097,4.155,0.662,3.811,0.579,2.043,1.546,2.588,0.46,0.698,3.845,1.036,1.083,0.734,0.709,0.556,0.622,2.961,0.61,0.696,2.503,0.72,0.815,0.517,2.366,0.654,2.219,2.94,0.532,1.688,0.981,1.512,1.218,0.667 +NM_022727,1.962,1.983,1.828,2.084,2.083,1.952,1.675,1.9100000000000001,1.968,1.8,2.0549999999999997,1.9869999999999999,2.048,1.966,2.112,2.21,2.015,1.8479999999999999,2.209,1.8439999999999999,1.895,2.218,2.13,1.928,2.0020000000000002,1.958,2.158,2.024,1.5710000000000002,2.214,1.8860000000000001,2.162,2.267,2.141,1.8359999999999999,1.9929999999999999,2.1100000000000003,2.059,2.3810000000000002,2.075,1.908,1.928,2.09,1.77,2.2,1.9300000000000002,2.143,2.149,2.088,1.9020000000000001,1.996,1.7269999999999999,2.037,2.1079999999999997 +NM_022728,0.94,0.963,1.056,0.899,0.933,1.071,1.006,0.94,0.987,0.942,1.034,0.964,1.155,1.001,0.91,1.109,1.117,1.064,0.952,0.905,1.032,0.94,0.959,1.037,1.075,1.023,0.905,0.952,0.981,1.012,1.087,0.945,1.005,0.877,0.968,1.199,0.928,0.906,1.031,1.088,1.064,0.986,0.864,0.955,0.981,1.126,1.082,0.927,0.926,1.126,0.956,1.135,1.048,0.933 +NM_022730,0.901,1.018,0.917,0.907,0.732,1.027,0.823,0.673,1.099,0.956,1.0,0.893,0.747,0.754,1.0,0.94,1.027,0.892,0.884,0.976,0.79,0.806,1.317,1.075,0.93,0.782,1.234,0.906,0.84,1.26,0.928,2.001,1.748,1.261,0.537,1.117,1.008,0.805,1.42,1.065,0.976,1.02,0.907,2.412,1.028,0.777,0.909,0.77,0.88,0.768,0.892,1.009,1.065,2.812 +NM_022731,0.672,1.021,1.308,0.49,0.893,1.033,0.617,0.613,1.073,0.961,1.14,1.207,0.822,0.693,0.822,1.345,0.651,0.948,1.122,0.915,0.521,0.913,1.651,1.4,0.733,0.562,1.558,0.98,0.393,1.137,0.908,1.713,1.495,1.328,0.0852,1.451,1.083,1.09,0.964,1.694,1.141,1.374,0.699,1.608,0.954,0.753,0.899,0.432,0.639,0.599,1.165,1.174,1.005,0.908 +NM_022733,0.648,1.508,1.077,0.985,0.646,1.479,0.959,0.474,0.804,0.752,0.824,0.755,0.582,0.597,0.759,1.201,0.775,1.057,0.961,1.003,0.648,0.653,0.86,0.907,1.08,0.732,0.997,0.633,0.625,2.164,0.737,1.278,1.237,1.852,0.338,0.756,1.155,0.765,1.489,2.045,0.892,1.396,0.901,1.187,0.827,0.947,0.734,0.517,0.793,0.706,0.973,0.952,1.401,1.529 +NM_022734,0.885,1.438,0.985,1.014,0.863,1.082,0.648,0.593,1.189,0.974,0.881,0.844,0.696,0.846,0.851,1.316,1.156,0.944,1.271,0.937,0.808,0.933,1.279,0.989,0.741,1.005,1.204,0.834,0.592,0.963,0.847,1.403,1.509,1.1,0.529,1.027,1.015,0.991,1.154,0.83,0.981,0.968,1.003,1.623,0.916,1.087,1.159,0.778,1.26,0.973,0.997,0.747,0.948,1.179 +NM_022735,0.509,0.958,1.39,0.736,0.972,1.563,0.787,0.687,1.257,0.922,0.897,0.9,0.606,0.696,0.857,1.44,0.84,1.074,1.074,1.001,0.413,0.799,1.269,1.104,0.508,0.547,1.553,0.9,0.504,1.337,1.062,1.126,1.625,1.432,0.373,0.665,1.157,0.791,1.504,0.791,0.994,1.203,0.769,0.655,1.027,1.107,0.743,0.814,1.16,1.045,1.205,0.861,0.735,2.061 +NM_022736,0.652,0.768,1.441,0.408,1.481,0.991,0.43,1.53,2.047,1.345,0.737,1.116,0.847,0.943,1.238,1.915,0.99,1.074,2.129,0.767,0.565,1.283,0.977,1.412,0.279,0.908,1.588,1.427,0.325,1.154,1.73,1.502,1.405,1.221,0.475,0.321,0.878,1.804,0.651,0.432,1.421,0.933,0.439,0.52,1.31,0.832,0.794,1.322,0.724,0.839,0.885,0.606,1.156,1.206 +NM_022737,0.938,1.052,1.002,0.933,0.855,1.048,1.164,1.029,0.798,0.965,0.94,1.031,0.873,0.829,0.77,0.89,0.913,1.07,0.956,0.94,1.094,1.12,1.314,1.035,0.973,0.953,0.993,1.036,1.031,1.052,0.934,1.147,1.166,1.211,0.818,0.932,0.911,1.085,1.32,1.179,0.8,1.019,1.007,1.248,0.901,0.891,0.951,1.17,0.786,1.043,0.997,1.21,0.958,1.045 +NM_022739,0.922,0.969,1.018,0.918,0.83,1.315,0.943,0.812,1.014,0.91,1.08,0.774,1.002,0.793,1.064,1.411,0.773,1.062,0.831,1.083,0.753,0.791,1.004,0.877,0.982,0.789,0.906,0.778,0.833,0.969,0.924,1.411,1.467,1.11,1.016,0.782,1.073,0.719,1.236,1.121,0.924,0.867,1.177,1.19,0.815,1.215,0.872,0.779,0.971,0.814,1.025,0.885,0.932,0.94 +NM_022740,1.213,1.229,1.081,1.03,0.922,1.185,0.974,0.94,0.901,1.092,0.936,0.976,0.855,0.91,0.908,0.889,0.956,1.221,1.156,0.799,1.006,1.036,0.936,1.063,1.247,1.133,1.0,0.979,1.097,1.09,0.798,0.806,0.837,1.0,0.765,0.815,1.017,1.278,1.207,0.924,0.971,1.111,1.06,1.222,1.038,0.877,1.018,1.092,0.835,1.126,1.124,0.928,0.945,0.824 +NM_022742,0.999,0.965,0.855,1.017,0.995,1.028,1.023,1.015,0.881,1.042,0.772,0.883,0.939,0.95,1.076,1.153,0.968,1.165,1.059,1.006,0.94,0.956,0.976,1.034,1.007,0.917,0.823,0.996,1.739,1.164,0.97,1.26,0.958,1.075,1.108,1.093,0.926,1.015,0.993,1.12,1.022,0.981,1.382,0.881,0.987,1.096,1.02,1.06,0.968,1.071,0.997,0.828,1.001,0.859 +NM_022743,0.608,1.445,0.791,0.886,0.761,1.438,0.817,0.694,0.911,0.678,1.53,0.723,0.704,0.693,1.169,1.647,0.61,1.005,0.906,1.232,0.582,0.704,1.138,0.78,0.699,0.639,0.826,0.724,0.561,1.621,0.802,3.063,4.536,2.054,0.596,1.007,1.323,0.931,1.778,1.482,0.713,1.315,0.782,1.371,0.733,1.052,1.119,0.715,0.839,0.592,0.974,0.908,0.746,1.16 +NM_022744,0.411,1.568,0.826,0.56,0.706,1.284,0.658,0.376,1.119,0.922,0.929,0.74,0.492,0.484,0.8,0.752,0.708,0.988,0.909,1.404,0.403,0.711,1.298,1.093,0.759,0.57,1.144,0.737,0.697,2.021,0.632,2.321,2.151,1.377,0.15,1.162,1.128,0.796,1.193,0.846,1.026,1.271,0.777,1.348,0.908,1.142,1.427,0.452,0.903,0.477,1.207,0.776,0.609,1.553 +NM_022745,0.884,1.751,1.296,0.741,1.046,1.058,0.69,0.768,1.052,0.942,0.942,1.195,0.843,0.649,0.865,1.044,0.83,0.915,1.044,1.179,0.504,1.07,1.104,1.034,1.143,0.988,1.203,1.087,0.345,1.262,0.89,1.866,2.415,1.28,0.168,0.79,1.045,1.237,0.929,0.465,1.146,1.143,0.763,1.573,1.074,0.674,1.048,0.947,0.784,0.7,0.976,0.773,0.746,1.532 +NM_022746,1.161,1.556,0.997,1.097,0.776,1.363,0.756,0.647,1.179,0.682,1.387,0.679,0.866,0.908,0.957,1.19,0.619,1.064,0.906,0.95,0.662,1.142,1.059,0.793,1.066,1.376,0.748,1.173,0.689,1.974,0.928,0.906,1.503,1.576,0.496,1.59,1.154,0.981,2.28,0.625,0.879,1.095,0.571,1.017,0.722,1.111,0.65,0.962,0.886,0.629,1.08,0.969,0.609,1.561 +NM_022747,0.982,0.798,1.187,0.855,1.096,0.942,0.916,0.967,1.075,1.094,0.904,0.917,1.02,0.796,0.938,0.997,1.186,0.954,1.336,0.874,1.013,0.926,1.057,1.049,0.874,1.018,1.051,0.832,1.324,1.043,1.037,0.873,1.282,1.067,1.11,0.855,0.943,0.957,1.178,0.953,1.219,0.903,0.737,1.105,0.999,0.83,1.089,0.97,0.968,1.167,0.984,0.966,0.939,0.927 +NM_022748,0.336,1.055,0.656,0.511,0.389,1.223,0.972,0.227,0.346,0.298,1.039,0.274,0.268,0.317,0.767,1.076,0.32,0.79,0.326,1.068,0.315,0.31,2.174,0.378,1.092,0.38,0.407,0.443,0.777,2.437,0.33,3.621,2.197,2.295,0.196,1.042,1.245,0.422,1.84,2.694,0.454,1.711,0.599,2.055,0.471,1.011,0.866,0.32,0.804,0.352,1.098,1.662,0.444,2.606 +NM_022749,0.866,0.734,1.317,0.89,0.833,1.287,0.698,0.604,1.071,1.029,0.99,0.717,0.726,0.661,0.827,1.167,1.3,0.981,1.195,1.011,0.791,1.172,1.106,0.994,0.761,1.154,1.387,0.699,0.773,1.097,0.737,1.817,1.233,1.344,0.493,0.664,0.843,0.902,1.658,0.748,1.069,1.201,0.729,0.963,1.109,0.923,0.865,0.994,1.134,1.107,0.97,0.822,1.081,1.583 +NM_022750,0.674,0.705,0.86,0.851,0.543,2.222,1.118,0.472,0.694,0.515,1.917,0.544,0.482,0.48,1.526,2.615,0.849,1.174,0.753,1.471,0.74,0.523,1.385,0.615,0.641,0.59,0.831,0.459,0.949,1.882,0.597,0.955,1.439,1.351,0.433,0.968,1.438,0.514,2.004,0.927,0.832,1.449,1.322,2.072,0.609,2.034,1.667,0.55,2.178,0.647,1.33,1.036,1.011,2.473 +NM_022751,0.767,0.956,1.147,0.796,1.07,1.627,0.869,0.908,1.061,1.14,0.952,0.947,0.727,0.966,0.751,1.212,0.861,1.198,1.361,0.951,0.803,1.075,1.008,1.535,0.739,0.822,1.01,1.142,0.843,1.625,1.009,0.818,0.897,1.156,0.792,0.641,1.121,1.087,1.134,0.655,1.124,1.14,1.058,0.856,0.856,1.019,0.997,0.958,0.944,0.795,0.981,0.771,0.932,3.308 +NM_022752,0.9,1.025,1.274,0.721,0.932,0.932,0.707,0.75,1.015,1.085,0.82,0.827,0.756,1.139,0.944,1.176,1.041,0.914,1.142,1.121,0.787,1.019,1.415,1.002,0.631,0.91,1.251,0.954,0.721,1.009,1.035,1.226,2.383,1.086,0.557,1.15,0.921,1.167,1.289,1.266,1.087,1.132,1.066,0.999,0.927,0.899,1.059,0.918,0.887,0.967,1.001,0.791,1.064,1.59 +NM_022753,0.828,1.04,1.231,0.808,0.903,1.119,0.881,0.878,1.165,0.849,1.011,1.019,0.892,0.803,1.033,1.144,0.901,1.02,1.04,1.236,0.943,1.097,1.036,0.896,0.68,0.92,1.243,0.813,0.723,1.126,0.878,1.791,1.59,1.108,0.632,0.839,0.955,0.925,1.12,1.023,0.873,1.175,0.717,0.945,0.975,0.921,0.923,0.853,0.795,0.986,0.884,1.006,0.815,1.628 +NM_022754,0.827,0.846,1.223,0.825,0.989,1.132,0.715,0.842,1.26,0.857,0.881,0.929,0.823,0.791,1.192,1.507,0.87,0.85,0.983,1.057,0.773,1.133,1.188,0.982,0.768,0.94,1.725,1.094,0.849,0.984,0.926,1.48,2.941,1.124,0.505,0.904,0.868,1.095,1.316,0.967,1.074,0.95,0.656,0.865,0.933,0.933,1.042,0.847,0.892,0.945,1.09,1.016,0.978,2.413 +NM_022755,1.005,0.676,3.062,0.825,1.926,0.713,0.624,0.88,2.285,2.627,0.683,1.341,0.941,0.967,1.271,1.166,2.208,1.122,2.014,0.716,0.995,1.134,0.898,1.893,0.511,1.151,2.769,1.287,0.571,0.696,1.732,1.314,1.628,0.762,0.745,0.551,0.646,1.276,0.897,0.846,2.478,0.74,0.732,0.835,2.762,0.888,1.579,1.039,1.135,2.114,0.843,1.029,2.626,1.443 +NM_022756,0.676,0.976,1.187,0.836,1.059,1.077,0.71,0.957,1.383,1.241,1.316,1.061,0.889,0.896,1.003,1.308,0.755,0.838,1.244,1.406,0.679,0.513,1.108,1.062,0.651,0.762,1.066,1.228,0.412,0.944,1.186,1.659,3.647,1.607,0.63,0.997,0.924,0.789,0.952,0.667,1.038,0.98,0.753,1.663,1.126,0.894,0.954,0.731,0.674,0.893,0.989,0.851,1.287,2.394 +NM_022757,0.743,0.861,1.214,0.981,0.9,1.154,0.766,0.667,1.274,0.847,1.048,0.86,0.673,0.854,1.049,1.188,0.896,0.937,0.952,1.184,0.63,0.839,1.506,1.253,0.742,0.666,1.484,0.758,0.535,1.239,0.899,2.089,2.947,0.954,0.479,1.075,1.148,0.813,1.124,1.381,0.835,1.022,1.032,1.05,0.779,1.205,0.872,0.66,1.084,0.674,1.161,0.918,0.948,1.917 +NM_022758,0.782,0.945,0.803,0.751,0.941,1.106,0.734,0.81,1.019,0.871,0.807,0.97,0.91,0.656,0.817,1.201,0.898,1.043,0.872,1.065,0.633,1.059,1.116,0.932,0.719,0.966,1.105,1.08,0.804,0.981,1.026,1.16,1.45,1.065,1.545,0.949,1.016,1.084,1.514,1.084,0.815,1.087,0.687,1.291,0.758,0.727,1.146,1.041,0.967,0.812,0.85,0.929,0.671,1.251 +NM_022760,0.503,1.596,0.9,0.682,0.738,1.297,0.896,0.422,0.928,0.935,1.198,0.769,0.579,0.482,0.72,0.709,0.85,0.854,0.759,1.688,0.469,0.664,2.011,1.098,0.807,0.557,1.238,0.745,0.648,2.186,0.683,3.189,0.915,1.776,0.341,1.286,1.072,0.844,1.125,1.835,0.862,1.388,0.781,1.15,0.716,0.749,0.753,0.574,0.556,0.552,0.899,0.911,0.949,2.081 +NM_022762,1.506,0.736,1.181,0.956,1.246,1.067,0.478,1.057,1.637,1.219,0.778,1.369,1.307,0.988,1.001,1.012,1.409,1.012,1.906,0.748,1.086,2.083,0.771,2.085,0.841,1.607,1.218,1.054,0.545,0.969,1.174,1.205,1.623,1.001,1.486,0.652,0.78,1.329,1.089,0.667,1.478,0.792,0.531,0.879,1.227,0.781,1.015,1.961,0.628,1.134,0.763,0.701,0.952,1.218 +NM_022763,0.479,1.313,0.622,0.769,0.464,1.225,0.816,0.502,0.521,0.486,1.039,0.553,0.51,0.567,0.753,0.746,0.621,0.675,0.594,1.109,0.427,0.443,1.213,0.571,1.281,0.481,0.863,0.433,0.642,1.884,0.491,2.246,1.509,1.433,0.458,0.736,1.211,0.633,1.556,1.677,0.517,1.443,0.678,1.057,0.584,0.975,0.733,0.476,1.01,0.583,1.146,1.23,0.571,3.605 +NM_022764,0.897,1.043,1.088,0.79,0.831,0.628,0.969,0.712,1.152,0.826,0.905,0.931,0.821,0.75,0.978,0.99,1.072,0.829,0.908,0.973,0.735,0.677,1.044,0.896,1.001,1.023,1.172,0.837,0.637,1.153,0.879,1.247,1.514,1.201,0.57,1.054,1.068,0.863,1.338,1.147,0.934,1.188,0.797,1.497,0.941,0.922,0.885,0.889,1.006,0.845,1.065,0.907,0.845,0.851 +NM_022765,0.579,1.143,0.788,0.734,0.76,1.278,1.382,0.413,0.81,0.805,1.221,0.566,0.39,0.52,1.122,1.925,0.629,0.93,0.474,1.99,0.566,0.583,2.0,0.722,0.824,0.52,0.699,0.625,1.293,1.652,0.515,1.283,0.549,1.343,0.384,1.428,1.697,0.614,1.32,1.765,0.662,1.676,1.61,1.07,0.783,2.258,1.364,0.599,1.533,0.564,1.667,0.7,0.759,1.389 +NM_022766,1.012,0.935,0.964,1.009,0.956,1.027,0.952,0.997,1.053,0.925,1.038,1.0,1.075,1.065,0.873,0.941,0.964,0.937,1.09,1.111,1.026,0.881,1.087,1.006,0.858,1.061,0.877,0.976,1.209,1.022,1.105,1.009,1.184,1.067,1.132,0.985,0.954,1.139,0.945,1.086,0.929,1.097,1.075,1.032,0.838,0.973,0.949,0.963,0.861,1.005,1.011,0.903,1.016,1.047 +NM_022768,0.62,0.967,1.119,0.745,0.933,1.002,0.761,0.706,0.989,0.916,0.717,1.019,0.646,0.702,0.936,1.448,0.766,1.069,1.216,0.998,0.622,0.836,1.259,1.099,0.609,0.71,1.202,0.815,0.606,0.944,0.848,1.17,2.804,1.036,0.435,1.198,1.211,0.889,1.226,1.38,0.932,1.157,0.962,1.325,0.914,0.979,1.044,0.839,1.194,0.709,1.019,1.013,0.867,1.901 +NM_022769,0.626,0.984,1.325,0.712,0.827,1.275,0.778,0.497,1.106,0.98,0.998,0.763,0.628,0.711,1.026,1.184,0.956,0.802,1.148,1.121,0.801,0.703,1.746,0.935,0.684,0.618,1.362,0.801,0.526,1.177,0.879,2.255,1.532,1.655,0.449,0.915,0.901,0.866,1.055,1.006,1.092,1.36,0.869,0.766,1.004,0.879,0.822,0.643,0.822,0.834,1.128,0.974,1.013,1.148 +NM_022770,1.134,0.742,1.738,0.894,1.339,0.755,0.672,0.82,1.325,1.494,0.61,1.444,1.081,0.997,0.95,0.957,1.118,1.044,1.41,0.848,0.887,0.905,1.028,1.514,0.621,1.183,2.549,1.233,0.545,0.832,1.205,1.073,1.784,0.727,0.493,1.06,0.753,1.309,1.019,0.756,1.761,0.68,0.922,1.069,1.569,0.745,0.843,0.954,0.765,1.045,0.917,0.938,1.241,2.304 +NM_022771,0.985,0.829,1.563,0.703,1.132,0.85,0.615,1.134,1.443,0.762,0.946,0.849,1.051,0.927,1.317,1.168,1.43,0.924,1.73,1.011,0.694,1.054,0.896,0.776,0.601,0.995,1.28,1.009,0.319,0.953,1.427,1.005,1.66,1.114,1.965,1.233,1.232,1.138,1.175,1.008,1.149,1.09,0.555,0.592,0.915,0.791,1.047,1.302,0.816,0.963,0.81,0.861,0.913,1.909 +NM_022772,1.74,0.466,2.696,0.829,2.127,0.762,0.383,1.425,3.144,2.07,0.715,1.246,1.034,1.388,1.422,1.16,2.603,1.48,1.903,0.85,0.569,2.051,0.789,2.62,0.313,2.488,1.502,2.141,0.434,1.036,2.234,0.604,0.718,0.774,1.996,1.118,0.78,2.182,0.757,0.459,2.021,0.686,0.479,1.038,2.031,0.799,1.596,2.646,0.657,0.992,0.906,0.556,1.666,0.798 +NM_022773,1.231,0.931,1.013,0.962,1.103,0.922,0.983,1.066,0.921,1.113,0.915,1.05,0.857,1.176,1.192,1.0,0.998,1.007,1.062,1.033,0.967,0.892,0.938,0.97,1.074,0.896,0.946,0.919,1.528,1.023,1.051,1.065,1.127,1.047,1.177,0.984,1.094,0.916,0.908,0.935,0.963,1.072,1.232,0.971,0.976,1.084,0.952,1.014,1.11,0.829,1.041,0.84,0.956,0.947 +NM_022776,0.945,0.728,1.251,0.767,1.125,1.124,0.859,1.034,1.029,1.075,0.903,1.006,1.001,0.93,1.078,1.231,1.046,1.004,0.868,1.018,0.82,1.043,1.042,1.124,0.811,0.879,1.129,1.063,0.584,1.23,1.246,1.325,1.261,0.941,0.886,0.867,0.934,1.14,1.208,1.117,1.005,0.944,0.985,0.951,1.13,0.94,0.899,1.112,1.204,1.004,0.951,0.884,0.918,1.034 +NM_022778,1.086,0.934,1.0,1.098,1.045,0.887,0.811,0.869,1.109,1.004,0.985,1.073,1.046,0.977,0.945,0.976,0.984,0.946,0.993,0.951,0.932,0.94,0.865,1.08,1.037,1.047,1.072,1.057,0.943,0.956,0.936,1.021,0.945,1.042,1.09,1.021,0.972,0.929,0.996,1.008,1.07,1.079,1.009,1.121,1.081,0.879,1.052,1.18,1.036,1.1,0.925,0.987,0.956,1.1 +NM_022779,0.958,0.991,1.086,0.838,1.061,0.892,0.998,0.781,1.119,0.954,1.077,1.002,0.845,1.062,1.004,0.993,1.032,0.939,0.916,0.765,0.924,1.006,0.867,1.082,0.873,0.997,0.882,1.007,0.938,0.955,0.939,1.15,1.056,1.032,0.922,1.012,1.005,0.922,1.135,1.098,1.035,0.969,1.182,1.099,0.882,0.912,1.044,1.152,0.872,1.006,0.939,0.976,0.948,1.174 +NM_022780,1.077,0.983,1.036,1.036,1.447,0.933,0.896,1.442,1.489,1.248,0.974,1.327,1.199,1.147,0.9,1.072,1.11,1.15,0.968,0.921,1.169,1.299,0.907,1.167,0.827,1.49,0.91,1.417,1.002,0.87,1.512,1.097,0.975,0.883,2.908,0.952,0.933,1.53,0.965,0.874,1.144,0.86,1.079,0.965,1.085,0.776,1.067,1.741,0.943,1.069,0.972,0.916,1.192,0.988 +NM_022782,0.846,0.934,1.05,0.91,1.092,0.98,1.08,0.83,0.95,1.015,1.062,1.0,1.026,1.032,0.986,0.981,1.119,0.976,1.023,0.929,1.0,0.888,1.074,1.079,0.947,0.985,1.097,1.086,0.834,0.873,0.925,1.081,1.411,1.015,0.747,0.906,0.95,1.113,1.209,0.947,0.946,0.981,1.141,1.199,0.959,1.174,0.855,1.011,0.981,0.947,1.045,0.89,0.944,1.24 +NM_022783,0.582,2.806,0.606,1.12,0.691,2.459,1.242,0.641,0.684,0.633,1.082,0.785,0.779,0.603,0.545,1.138,0.5,1.505,0.667,1.877,0.342,0.789,2.121,0.578,1.371,0.943,0.69,0.634,0.93,2.606,0.673,1.001,1.427,3.008,0.345,0.548,1.533,0.644,1.421,0.455,0.615,1.926,0.843,1.192,0.397,1.042,0.57,0.693,0.982,0.522,1.418,0.46,0.474,0.999 +NM_022784,1.087,0.945,1.124,0.991,0.93,0.967,0.983,1.05,0.981,0.934,0.932,1.029,0.929,1.121,1.103,1.001,1.014,1.056,0.875,1.01,0.962,1.035,1.011,0.917,1.004,0.922,0.991,0.965,1.534,1.072,0.92,1.042,0.874,0.931,0.923,1.252,1.113,1.077,1.013,1.077,0.969,0.953,1.287,0.977,0.966,0.993,1.108,1.053,1.007,1.014,1.023,0.959,1.2,1.052 +NM_022785,0.947,1.103,1.178,0.971,0.968,1.143,0.848,0.897,1.168,1.069,1.064,1.184,0.989,0.987,1.034,0.99,1.045,1.025,0.996,1.132,1.092,1.04,1.021,1.109,0.942,0.979,0.873,0.835,1.218,1.003,1.02,0.959,1.173,1.092,1.0,0.993,0.986,0.963,0.89,0.979,1.013,0.998,1.019,0.985,1.005,1.061,0.945,1.086,0.857,1.007,0.941,0.948,0.858,0.972 +NM_022786,0.635,1.506,1.12,0.783,0.828,1.699,0.739,0.677,1.012,0.815,1.721,0.98,1.003,0.72,0.997,2.517,0.825,1.086,1.267,1.014,0.527,0.792,1.668,1.056,0.872,0.643,1.285,0.791,0.545,1.678,0.834,1.018,1.871,1.681,0.277,0.599,1.41,0.847,1.199,0.599,1.003,1.278,0.791,0.898,0.946,1.347,0.851,0.827,0.92,0.706,1.437,0.675,0.922,1.915 +NM_022789,0.956,0.977,1.049,1.07,1.124,0.975,0.94,0.805,0.898,0.903,1.055,0.927,0.912,0.92,1.019,0.992,1.131,0.998,1.086,0.87,0.977,0.969,1.025,1.084,0.984,1.052,0.959,1.04,1.112,0.958,1.043,0.865,1.013,0.891,1.048,0.966,1.004,1.0,0.937,0.966,1.062,0.95,1.181,1.0,1.173,0.991,0.925,1.031,0.95,0.924,0.983,0.927,1.128,1.076 +NM_022790,0.927,1.079,1.127,0.944,1.018,1.092,0.908,1.116,0.872,1.113,0.916,1.101,1.03,1.231,1.168,0.977,0.966,0.925,1.261,1.065,0.965,0.867,1.042,0.911,1.05,0.82,1.021,0.999,0.953,0.993,1.146,1.121,0.976,0.939,0.958,1.208,1.029,1.115,1.007,1.034,0.914,1.049,0.995,1.01,0.981,1.052,0.988,0.972,1.07,1.066,1.014,0.992,0.963,0.904 +NM_022792,0.791,1.014,0.808,0.869,0.879,0.999,1.072,1.024,1.064,1.116,1.01,0.918,0.933,0.879,1.024,0.967,0.768,0.79,0.884,0.994,0.931,0.746,1.189,0.69,0.934,0.83,0.88,0.799,0.929,1.209,0.963,2.881,1.244,1.228,0.879,0.996,1.078,0.918,1.42,3.055,0.776,1.145,1.275,0.872,0.795,0.962,0.996,0.808,0.769,0.922,1.189,1.824,0.965,1.502 +NM_022802,0.968,1.042,1.008,1.018,1.129,0.95,0.889,1.17,0.863,0.978,1.109,1.094,0.91,0.993,1.355,0.913,1.09,1.085,0.885,1.05,1.023,0.936,0.864,0.961,0.945,1.078,0.885,1.097,1.072,0.85,1.048,1.028,1.002,0.897,0.993,0.933,0.948,1.197,0.991,0.958,0.986,0.97,0.877,0.812,0.99,1.04,1.043,0.962,1.025,1.036,1.111,1.057,0.931,0.903 +NM_022803,2.008,1.8559999999999999,2.107,2.076,2.053,1.931,2.058,2.125,1.947,2.3600000000000003,2.0789999999999997,1.896,1.6880000000000002,2.268,2.125,2.0380000000000003,1.951,1.958,2.051,2.187,1.899,2.025,1.9449999999999998,1.7759999999999998,2.004,1.8719999999999999,1.9860000000000002,2.005,2.239,1.847,2.117,1.9529999999999998,2.036,1.9489999999999998,1.995,2.12,2.114,1.955,2.022,2.142,1.955,1.8090000000000002,2.049,2.0180000000000002,1.888,2.191,1.846,2.012,1.9949999999999999,2.1260000000000003,1.904,1.815,2.049,2.056 +NM_022804,0.969,1.844,1.387,0.967,1.226,0.771,0.773,0.742,1.107,1.225,0.701,0.853,0.85,1.077,0.968,0.902,1.261,1.143,1.306,0.874,1.089,0.908,0.865,1.018,1.756,1.127,1.601,1.158,0.465,1.016,1.083,2.034,0.858,1.939,0.679,0.701,1.02,1.226,0.97,0.868,1.563,1.424,0.749,0.765,0.994,0.922,1.1,0.912,0.788,1.012,0.882,0.975,1.41,0.976 +NM_022807,0.969,1.02,0.989,1.028,1.129,0.932,1.274,0.983,0.967,0.992,0.984,1.15,1.109,0.979,1.131,0.921,0.947,0.962,1.03,1.023,0.993,0.98,0.96,0.923,1.131,0.874,1.053,0.949,1.181,1.125,0.98,1.061,0.854,1.049,0.964,1.099,1.024,1.136,0.887,0.957,1.013,0.963,0.935,0.874,1.051,1.117,0.942,1.003,0.881,0.937,0.987,0.782,0.982,0.952 +NM_022809,0.916,1.011,1.079,0.884,1.05,1.018,1.099,0.891,0.899,0.887,1.071,1.008,0.819,0.861,0.796,0.975,0.85,1.127,0.978,1.03,1.017,0.845,1.372,0.942,0.839,0.959,1.318,0.882,1.004,1.008,1.077,0.951,3.518,0.959,0.805,1.189,0.979,0.985,1.326,1.308,1.022,0.898,1.168,1.062,0.884,0.746,1.112,0.764,1.227,0.809,1.149,1.012,1.022,1.629 +NM_022810,0.76,0.969,1.336,0.852,1.092,0.936,0.688,0.608,1.026,1.119,0.901,1.08,0.915,0.705,0.969,1.199,0.885,0.916,1.057,1.123,0.617,0.949,1.143,1.173,0.663,0.878,1.123,0.935,0.659,0.866,0.852,1.623,1.189,1.254,0.424,1.009,0.814,1.031,1.194,0.71,1.068,0.887,0.74,1.536,0.936,1.039,0.96,0.856,0.866,0.938,0.92,1.247,1.214,1.539 +NM_022817,0.561,1.048,1.253,0.793,0.784,1.077,0.794,0.665,1.441,0.789,0.893,0.686,0.61,0.675,0.794,1.205,0.869,0.981,0.824,1.362,0.557,0.766,1.204,0.705,0.662,0.949,1.494,0.587,0.764,1.102,1.199,1.617,2.181,1.581,0.567,0.529,0.981,0.998,1.015,0.561,0.724,1.317,1.255,0.776,0.83,1.181,0.883,0.741,0.724,1.374,0.996,0.949,1.483,2.058 +NM_022818,0.969,0.915,1.069,0.734,0.973,1.565,0.607,0.78,1.074,0.594,1.34,0.63,0.88,0.949,1.243,1.284,0.822,0.861,0.953,0.769,0.523,0.691,1.005,0.641,0.737,0.995,1.031,0.953,0.564,1.116,1.291,1.813,1.386,1.384,2.223,0.591,1.017,0.926,1.657,1.073,0.923,1.288,0.804,0.805,0.722,1.091,0.882,1.023,0.759,0.845,1.187,0.775,0.761,1.275 +NM_022819,1.116,1.138,1.163,1.112,1.132,0.911,1.277,0.945,1.169,1.005,0.994,1.113,1.117,1.166,0.796,1.108,0.994,1.036,0.95,1.071,1.064,1.045,1.143,1.098,1.026,1.046,0.992,1.087,1.219,0.915,0.97,1.115,0.998,0.936,0.92,1.146,0.992,0.953,1.021,0.989,0.978,0.996,1.064,1.048,1.043,1.007,0.963,1.072,0.986,1.056,0.961,1.291,0.989,1.018 +NM_022821,1.23,0.772,1.055,0.85,1.107,0.998,0.454,0.707,1.376,1.568,0.791,1.048,0.856,0.634,0.987,1.636,0.728,1.258,1.925,0.633,0.904,1.449,0.971,1.961,0.653,1.539,0.997,1.13,0.572,0.906,1.253,0.932,1.501,1.222,0.296,0.646,0.894,0.97,1.723,0.59,1.071,0.86,0.484,1.621,1.62,0.695,1.035,1.284,0.629,1.292,1.005,0.627,1.162,0.913 +NM_022823,2.259,0.869,1.171,0.982,2.123,1.012,0.695,3.079,2.665,1.556,0.951,1.673,2.492,1.491,1.908,1.32,1.97,1.058,1.931,0.907,0.986,3.984,0.956,1.99,0.773,1.786,1.005,2.492,0.798,0.964,3.811,1.378,0.881,1.062,3.912,0.793,0.825,1.687,0.998,0.752,1.246,0.966,0.687,0.691,1.607,0.717,1.181,3.826,0.761,1.212,0.875,1.072,1.435,0.884 +NM_022824,0.792,1.081,1.592,0.706,1.046,0.823,0.819,0.897,0.738,0.902,0.977,0.975,1.009,0.798,1.033,1.199,1.102,1.28,1.077,0.8,0.7,1.406,0.788,1.211,0.826,0.87,1.016,1.282,0.987,1.0,1.306,0.871,1.22,0.853,0.862,0.747,1.253,1.894,1.578,0.663,1.0,1.196,0.847,0.661,0.929,1.056,1.154,1.236,0.959,0.848,1.001,0.924,0.673,1.03 +NM_022825,1.705,0.975,0.997,0.879,1.007,1.238,0.704,3.045,2.069,0.763,0.81,1.023,1.62,2.355,2.137,1.547,1.842,1.1,1.193,0.64,1.204,2.066,0.662,1.049,0.764,2.961,0.862,1.32,0.921,1.052,1.573,1.108,1.291,0.931,6.382,0.72,0.87,4.161,1.015,0.649,2.294,0.762,0.734,1.004,0.768,0.693,0.998,1.644,0.795,0.96,1.043,1.019,1.031,0.876 +NM_022826,2.035,0.799,1.872,1.071,2.531,0.725,0.696,1.93,3.236,1.125,0.783,1.022,1.503,1.642,1.929,1.06,1.162,1.273,1.933,0.751,0.89,1.652,0.802,1.298,0.621,1.501,1.516,2.768,0.601,0.744,2.176,0.875,1.26,0.857,6.152,0.743,0.76,2.11,0.84,0.74,2.257,0.9,1.124,0.934,1.491,0.937,1.234,2.155,0.991,1.14,0.925,0.897,1.409,1.375 +NM_022827,0.584,2.077,0.808,1.061,0.566,2.208,0.99,0.46,0.609,0.775,1.123,0.477,0.51,0.6,0.983,1.526,0.662,1.273,0.853,2.071,0.42,0.566,1.614,0.852,1.601,0.736,0.905,0.609,1.308,1.457,0.62,1.752,0.804,3.293,0.387,1.147,1.433,0.575,1.288,0.804,0.603,2.021,1.031,1.069,0.686,1.41,0.76,0.61,0.666,0.536,0.959,0.497,0.796,1.056 +NM_022828,0.986,1.0,1.129,0.987,1.172,0.993,0.91,0.981,1.074,0.988,0.934,0.882,1.0,1.014,0.99,1.333,1.037,1.108,0.944,1.222,0.96,0.884,1.15,0.953,0.953,0.936,0.874,1.068,0.975,1.079,0.989,0.859,1.207,0.98,0.865,0.768,0.942,0.878,1.078,0.948,1.003,1.022,1.035,0.98,0.998,1.191,0.923,0.933,1.14,0.977,0.972,0.922,1.28,1.293 +NM_022830,0.637,1.378,1.518,0.738,0.891,0.961,0.871,0.585,1.204,1.066,0.665,0.913,0.663,0.846,0.925,1.213,1.017,0.827,0.874,1.241,0.652,0.977,1.143,1.156,0.85,0.719,1.425,0.806,0.582,1.315,1.083,1.802,2.259,1.182,0.402,1.547,0.931,1.049,1.377,1.035,1.124,1.285,0.617,1.189,0.924,0.807,1.118,0.782,0.891,0.738,1.171,0.858,0.713,1.279 +NM_022831,0.661,1.127,0.95,0.828,0.999,1.086,0.735,0.568,1.31,1.001,1.182,0.749,0.7,0.768,1.197,1.291,0.894,0.8,1.298,1.144,0.67,0.668,1.125,0.981,0.751,0.756,0.979,1.255,1.012,1.196,1.069,1.391,2.774,1.158,0.649,1.26,1.037,0.996,1.022,0.843,1.157,1.071,0.747,1.103,0.877,1.353,0.871,0.65,0.899,0.782,1.161,0.839,0.765,1.898 +NM_022832,1.157,0.968,1.263,0.855,1.195,0.89,0.755,1.141,1.762,1.097,0.914,1.228,0.93,1.132,1.032,0.847,1.033,0.989,1.064,0.962,0.964,1.119,0.923,1.356,0.864,0.94,1.303,1.602,0.6,1.052,1.522,1.072,0.987,1.058,1.161,0.894,0.921,1.124,0.929,0.826,1.324,0.975,1.04,0.837,1.126,0.882,0.978,0.92,0.843,0.966,1.157,0.903,0.986,0.963 +NM_022834,0.414,1.217,1.735,1.006,0.419,0.977,0.613,0.396,0.628,0.556,0.808,0.319,0.512,0.368,0.546,0.731,1.572,0.94,1.412,0.816,0.375,0.356,1.209,0.462,0.474,0.712,1.532,0.34,0.463,1.231,0.364,1.691,1.84,1.503,0.336,0.936,0.886,0.416,1.917,2.391,0.921,1.265,0.516,1.977,0.981,0.646,0.848,0.514,1.234,1.819,0.762,1.84,0.853,2.882 +NM_022835,1.023,0.922,1.161,1.005,0.864,0.976,1.136,0.88,0.945,0.884,1.023,0.835,0.901,0.742,0.716,1.032,1.366,0.926,1.29,0.819,1.07,0.912,1.156,0.877,0.829,0.926,1.035,0.751,1.042,0.955,0.903,1.344,1.356,1.11,1.12,0.851,0.952,0.98,1.321,1.343,1.222,0.768,0.86,1.188,1.124,0.912,0.764,0.991,0.856,1.387,1.001,1.106,1.494,1.128 +NM_022838,0.708,0.974,1.124,0.837,0.864,1.291,0.837,0.745,1.155,0.729,1.212,0.817,0.731,0.871,1.163,1.854,0.924,0.976,1.124,1.014,0.71,1.212,1.05,0.987,0.82,0.729,0.99,0.793,1.025,1.143,1.003,1.02,1.882,1.475,0.656,0.724,1.164,0.937,1.118,0.667,1.007,1.042,0.806,0.973,0.938,0.974,1.011,0.822,1.047,0.746,1.011,0.81,0.849,1.319 +NM_022839,0.75,0.974,1.198,0.784,0.939,1.122,0.604,0.403,1.128,1.078,1.061,0.635,0.648,0.639,0.987,1.383,1.186,1.048,1.014,0.856,0.564,0.769,1.52,1.12,0.683,0.8,1.144,0.788,0.619,1.11,0.949,1.287,0.988,1.238,0.398,0.873,1.084,0.927,1.807,0.666,1.176,1.038,0.701,0.947,1.093,1.074,1.197,0.689,1.442,0.782,1.088,0.768,0.643,1.309 +NM_022841,0.911,1.091,1.025,0.974,1.134,1.205,0.678,0.825,1.053,0.951,0.999,0.993,0.926,0.83,0.857,0.88,1.025,0.877,0.896,0.98,0.916,0.971,1.178,1.027,0.846,0.921,1.043,0.978,0.842,1.197,0.794,0.919,1.059,0.911,0.883,1.028,0.972,0.909,1.215,0.965,1.134,0.969,0.813,1.039,0.905,1.076,1.104,1.027,1.205,0.952,0.934,0.873,1.029,0.886 +NM_022842,0.775,1.144,0.949,0.828,0.793,1.461,0.985,0.537,0.893,1.23,1.107,0.727,0.518,0.501,0.541,0.884,0.903,0.998,0.889,1.206,0.931,0.763,1.229,0.612,0.968,0.846,0.916,0.829,0.968,1.834,0.732,0.867,0.891,1.333,0.808,0.734,1.043,0.685,1.955,1.386,0.756,1.19,1.168,1.297,1.078,0.999,0.758,0.672,1.146,0.888,1.057,0.944,1.251,1.65 +NM_022845,0.703,1.118,1.253,0.849,0.977,1.191,0.796,0.669,1.481,1.32,0.866,1.362,1.1,0.742,0.743,1.067,0.746,0.98,1.242,0.869,0.55,0.893,0.959,1.475,0.45,0.751,1.712,0.969,0.502,1.027,1.108,1.71,2.306,1.249,0.263,1.017,0.824,0.799,1.43,1.793,1.191,0.953,0.709,1.567,1.079,0.752,0.966,0.863,0.535,0.872,0.953,1.303,1.06,2.745 +NM_022893,2.034,0.384,4.202,0.844,2.293,0.483,0.459,1.334,3.482,1.747,0.497,2.443,2.069,2.352,1.752,1.246,2.197,1.613,2.398,0.931,1.028,2.42,1.112,2.69,0.5,1.838,5.028,2.832,0.399,0.414,2.777,0.341,1.032,0.501,0.411,0.608,0.73,2.784,0.429,1.45,2.372,0.637,0.432,0.395,2.559,0.494,1.085,1.391,0.753,1.859,0.698,0.879,1.182,0.624 +NM_022894,0.965,1.106,0.975,0.805,1.18,0.998,0.921,1.096,1.088,0.969,1.016,1.008,1.034,0.893,0.887,1.023,1.009,0.855,0.895,1.061,0.889,1.04,0.988,1.042,0.957,1.07,1.059,1.0,1.033,1.02,1.091,1.005,0.843,1.119,0.988,1.018,0.933,0.978,1.077,1.118,0.956,0.957,1.182,0.836,1.125,0.912,1.086,1.035,1.057,0.953,1.039,0.899,0.866,1.138 +NM_022897,0.889,0.91,1.055,1.033,0.919,1.043,1.165,1.241,1.022,0.803,0.962,1.015,1.005,1.065,1.223,0.956,1.074,0.895,0.871,0.983,1.006,0.9,0.903,1.069,0.924,1.129,1.084,0.949,0.657,1.049,1.038,0.922,1.002,1.099,0.913,0.997,1.034,0.927,0.998,0.913,1.006,1.049,0.838,0.988,1.094,1.004,0.977,1.101,1.183,1.001,0.956,1.004,1.086,0.99 +NM_022899,0.917,1.141,0.939,1.071,0.97,1.09,0.888,0.842,0.963,0.926,1.073,0.982,0.887,1.039,1.007,0.923,1.007,0.957,1.057,1.014,0.882,0.94,1.053,0.999,0.987,0.882,0.918,1.057,0.862,1.019,0.983,1.005,1.044,0.996,0.854,1.116,0.974,0.859,1.054,1.071,0.894,0.905,1.002,1.089,1.027,0.967,1.004,0.895,0.935,1.038,0.996,1.022,0.993,1.109 +NM_022900,0.958,0.876,0.904,1.082,0.992,0.905,0.894,0.831,1.055,0.955,1.17,1.009,1.002,0.85,0.788,1.105,0.917,0.939,1.064,0.975,1.056,0.897,1.002,0.943,0.949,0.919,1.054,1.105,0.815,1.103,0.807,1.032,0.977,1.021,0.915,0.962,0.874,0.797,0.895,0.993,1.007,1.013,1.092,1.067,1.0,1.193,0.98,1.0,1.213,0.964,0.973,1.019,0.915,1.174 +NM_022902,0.711,0.96,0.873,0.867,0.77,1.102,0.642,0.509,1.127,1.004,1.285,0.639,0.639,0.705,0.911,1.46,0.684,0.95,1.104,1.116,0.677,0.602,1.39,0.883,0.853,0.784,1.232,0.824,0.387,1.17,0.84,1.201,1.411,1.161,0.414,0.893,1.216,0.749,1.37,0.659,0.96,1.069,0.788,0.864,0.929,1.614,0.922,0.54,1.224,0.727,1.151,0.782,0.815,1.313 +NM_022903,1.061,1.037,1.208,0.837,0.892,1.056,0.705,0.715,0.985,0.878,1.12,0.857,1.052,0.975,0.853,1.358,1.151,0.946,1.41,0.759,0.898,1.382,0.911,1.209,0.81,1.092,1.185,0.805,0.863,1.225,1.126,0.921,0.759,1.186,0.628,0.712,0.989,0.996,1.511,0.902,1.087,1.093,0.638,1.165,0.944,0.911,0.865,1.231,0.873,1.025,0.968,0.89,1.105,0.974 +NM_022906,0.912,1.061,0.951,0.972,0.993,0.96,1.203,0.935,1.004,0.778,0.876,1.042,0.863,1.183,0.814,0.935,0.935,0.926,0.922,0.907,0.86,1.181,1.083,0.932,1.001,0.921,1.002,0.993,1.019,1.059,0.962,0.962,0.828,0.986,0.966,1.207,1.083,0.999,0.969,1.008,1.021,1.098,1.047,1.016,0.943,1.022,0.903,1.03,1.114,0.846,1.005,0.905,0.916,1.094 +NM_022907,0.924,0.838,0.985,0.98,0.999,0.964,1.075,1.094,1.123,1.025,1.083,0.981,1.013,1.043,0.922,1.037,0.831,0.965,1.015,1.032,1.05,1.003,0.916,1.039,1.037,0.915,1.045,0.919,0.878,1.011,1.02,0.944,0.979,0.963,1.012,1.019,1.111,0.866,1.071,0.9,1.001,0.913,0.898,1.108,1.015,0.889,1.038,0.925,0.93,0.872,0.944,1.007,1.02,1.101 +NM_022908,1.785,0.694,1.135,0.998,1.45,0.694,0.478,1.396,1.798,1.47,0.56,2.231,1.803,0.946,0.97,1.027,0.831,1.377,2.808,0.634,1.141,1.925,0.84,1.832,0.472,2.763,1.09,1.277,0.443,0.605,1.33,1.326,1.819,0.574,0.482,0.62,0.533,1.903,1.738,1.002,1.245,0.679,0.499,0.981,1.398,0.497,0.926,1.977,0.706,1.77,0.662,0.872,1.383,0.86 +NM_022910,1.173,0.78,2.69,1.028,1.932,0.732,0.791,1.073,1.774,1.605,0.732,2.759,1.065,1.598,1.301,1.022,0.875,1.21,1.919,0.896,1.091,1.571,0.72,1.526,0.849,1.331,1.624,1.573,0.916,0.758,2.214,1.012,1.18,0.931,1.186,0.721,0.743,2.818,0.851,1.058,1.9,0.859,0.651,0.668,1.406,0.719,1.046,1.985,0.812,1.249,1.033,0.983,1.15,0.869 +NM_022912,0.95,1.208,0.969,0.946,1.108,1.189,0.968,1.195,0.952,0.947,0.903,0.958,1.063,0.932,1.076,1.078,0.886,0.996,0.832,1.232,0.972,0.917,0.86,0.946,0.927,0.922,0.833,0.982,0.91,1.384,0.943,0.843,1.782,1.378,0.959,1.224,1.029,1.007,1.108,0.958,1.127,1.112,0.994,0.833,0.971,1.193,1.023,0.9,0.928,0.899,1.452,0.908,1.027,1.0 +NM_022913,0.696,1.036,1.031,0.761,0.957,1.06,0.564,0.576,1.441,0.944,1.077,0.663,0.615,0.846,1.001,1.289,0.916,0.738,1.266,0.892,0.647,0.687,1.059,0.976,0.675,0.736,1.267,1.16,0.425,1.258,1.286,1.139,1.675,1.422,0.917,0.702,1.093,1.122,1.274,0.987,1.158,1.1,0.813,0.955,0.786,1.134,0.952,0.744,0.896,0.719,0.999,0.661,0.932,1.436 +NM_022914,0.464,1.209,0.986,0.527,0.748,1.367,0.59,0.409,0.838,1.18,0.793,0.907,0.47,0.561,0.662,0.989,0.859,0.852,0.797,1.128,0.514,0.594,1.545,1.069,0.493,0.562,1.674,0.757,0.376,1.104,0.811,2.368,3.629,1.165,0.232,1.399,1.007,0.953,1.243,1.326,1.106,1.127,0.77,1.295,0.785,0.969,1.119,0.474,0.721,0.56,1.084,1.133,0.768,3.848 +NM_022915,0.621,0.837,1.149,0.803,0.833,1.128,0.784,0.666,1.103,0.947,0.994,0.763,0.639,0.734,0.98,1.814,0.983,1.07,1.134,0.897,0.7,0.785,1.492,1.017,0.599,0.788,1.418,0.917,0.499,1.029,0.984,1.323,2.027,1.117,0.507,0.89,1.228,0.97,1.267,0.917,1.153,0.926,0.727,1.367,0.909,1.192,1.207,0.631,1.368,0.758,1.081,0.818,0.987,2.578 +NM_022916,0.771,0.862,1.127,0.732,1.117,1.345,0.776,0.721,1.049,0.997,0.987,0.999,0.682,0.703,1.044,1.301,0.946,0.933,1.053,1.132,0.587,0.784,1.289,0.987,0.586,0.742,1.346,0.961,0.553,0.905,0.992,1.292,0.993,1.146,0.573,0.987,1.172,1.021,1.117,0.904,0.998,1.035,0.689,0.954,0.974,1.108,1.105,0.765,1.223,0.758,1.016,1.025,0.857,1.428 +NM_022917,1.053,1.075,1.06,1.115,0.869,0.936,0.906,0.829,1.097,1.062,0.98,1.011,1.0,0.945,0.901,0.896,1.199,0.976,1.154,1.069,1.017,1.082,0.977,0.813,1.035,1.013,0.935,0.928,0.927,1.003,0.976,1.029,0.95,0.979,1.062,1.154,1.005,0.97,1.161,0.921,0.962,1.079,0.845,1.104,0.893,0.926,0.887,1.09,1.171,1.173,1.063,0.989,1.093,0.889 +NM_022918,0.589,1.295,0.913,0.916,0.596,1.95,1.001,0.668,0.76,0.574,1.267,0.708,0.668,0.584,1.189,3.643,0.679,1.08,0.765,1.572,0.53,0.677,1.874,0.771,0.747,0.657,1.011,0.684,0.674,2.203,0.658,1.224,1.593,1.694,0.587,0.999,2.195,0.768,1.524,1.037,0.717,1.627,1.108,0.744,0.682,1.695,1.355,0.596,1.637,0.691,1.592,0.726,0.723,1.197 +NM_022963,1.29,2.068,1.318,1.6560000000000001,1.3729999999999998,2.502,1.8090000000000002,1.413,1.468,1.3900000000000001,1.897,1.6,1.3900000000000001,1.488,1.887,3.582,1.4120000000000001,1.8619999999999999,1.4329999999999998,2.4139999999999997,1.494,1.2959999999999998,4.182,1.5499999999999998,1.564,1.4440000000000002,1.393,1.482,1.772,1.996,1.5539999999999998,6.664,9.099,2.989,1.335,2.645,2.197,1.468,4.34,5.264,1.387,2.9479999999999995,1.962,1.633,1.4569999999999999,2.231,3.56,1.33,2.627,1.3679999999999999,2.874,2.099,1.4309999999999998,3.734 +NM_022965,1.548,0.54,4.242,0.757,2.632,0.534,0.221,0.788,3.633,2.784,0.424,2.132,1.089,1.179,1.378,0.955,4.046,1.529,2.956,1.223,1.259,1.915,0.369,2.926,0.291,2.159,4.224,2.215,0.264,0.492,2.33,0.985,1.312,0.64,0.128,0.237,0.38,1.722,0.891,0.816,3.927,0.574,0.301,0.493,3.397,0.543,2.303,1.676,0.432,3.53,0.801,0.734,2.471,2.436 +NM_022971,1.017,1.036,1.023,0.94,0.921,1.03,1.052,0.988,1.122,0.849,1.162,1.071,0.913,1.381,1.131,0.941,1.083,0.957,1.027,1.052,1.019,1.036,1.158,0.934,1.02,1.032,0.91,1.076,1.523,0.942,0.969,1.001,0.998,0.921,0.856,0.97,0.885,0.93,1.099,0.941,1.152,1.125,0.978,1.15,1.106,0.897,1.101,0.909,0.984,1.083,1.055,0.914,0.989,0.955 +NM_022976,1.111,0.932,0.998,0.999,1.068,0.986,0.83,0.993,1.027,1.079,1.027,1.018,1.032,0.866,0.882,1.01,0.954,1.045,1.066,0.941,0.951,0.967,0.974,1.018,1.171,0.987,1.101,0.943,1.424,1.135,1.226,1.053,1.164,0.969,0.966,0.919,0.933,1.286,0.999,0.974,0.923,0.971,0.987,1.142,1.075,0.892,0.951,0.973,1.168,1.058,0.937,1.06,1.015,1.015 +NM_022977,0.996,0.905,0.994,1.056,1.272,1.094,1.147,0.903,0.888,1.055,0.937,1.12,1.117,0.926,0.806,1.259,1.068,0.944,1.008,0.9,1.134,0.905,0.999,1.002,0.996,1.061,0.989,1.158,1.073,0.954,1.137,0.977,1.201,0.885,1.15,0.927,1.042,1.042,1.109,0.938,1.149,0.993,0.938,0.943,0.909,1.117,1.052,0.944,1.018,0.963,0.954,1.137,1.265,0.923 +NM_023001,0.928,1.009,1.163,0.933,0.924,0.993,1.003,0.898,1.266,0.767,1.284,0.999,0.762,0.832,1.012,0.982,0.949,1.122,0.856,1.17,0.682,0.976,0.983,0.981,0.882,0.925,1.271,0.981,0.704,1.16,1.016,1.048,1.114,1.096,1.026,0.847,0.954,1.174,1.18,1.269,0.91,1.16,0.639,1.255,1.066,0.982,1.001,0.884,1.008,1.02,1.056,1.044,0.847,1.236 +NM_023003,0.907,0.967,0.966,0.971,0.939,0.951,1.082,0.996,1.017,0.934,1.02,0.999,0.981,0.894,1.003,1.023,0.905,1.058,0.954,1.014,1.068,0.963,0.995,0.98,0.904,1.045,1.216,0.802,1.038,0.983,0.975,1.258,1.126,0.938,0.853,1.005,1.01,0.996,1.001,1.081,0.996,1.072,0.931,0.912,1.042,0.977,1.06,1.018,1.064,0.982,0.902,1.024,0.97,1.058 +NM_023004,0.883,1.086,0.868,1.018,0.915,1.179,0.823,0.794,1.035,0.98,1.324,1.033,0.837,0.86,0.937,1.535,0.971,1.072,0.845,1.151,0.779,0.83,1.43,1.022,0.826,0.831,0.976,0.882,0.646,1.079,0.863,1.077,1.018,1.015,0.811,0.935,1.223,0.899,1.478,1.109,0.853,0.966,1.452,1.11,0.936,1.633,0.99,0.901,0.838,0.841,1.532,0.842,0.986,1.342 +NM_023005,0.957,1.053,1.014,1.069,1.226,0.862,1.015,1.047,1.143,0.924,0.979,1.009,0.844,1.011,0.822,0.864,1.05,1.027,1.081,1.064,0.94,1.161,0.861,1.044,0.95,1.066,0.959,1.09,1.201,1.096,0.911,0.976,0.916,1.076,1.033,1.024,1.11,0.888,1.108,1.022,0.926,0.917,1.305,1.004,0.847,0.936,0.963,1.13,0.99,1.002,0.969,0.997,1.031,1.099 +NM_023009,0.259,1.35,0.313,0.883,0.256,1.913,0.668,0.218,0.265,0.261,1.564,0.253,0.253,0.251,0.72,1.19,0.324,0.739,0.303,1.153,0.27,0.238,1.766,0.274,0.86,0.256,0.321,0.239,0.739,1.387,0.241,1.018,2.595,1.872,0.278,0.871,1.161,0.255,1.944,1.014,0.266,1.665,0.887,2.827,0.283,1.194,0.794,0.242,0.876,0.3,1.293,0.673,0.393,1.878 +NM_023010,0.89,0.845,1.158,0.972,1.021,0.899,0.903,0.803,1.146,0.975,0.983,0.807,0.958,0.932,1.082,1.018,0.965,0.752,1.065,1.013,0.914,0.827,1.041,0.891,0.899,0.921,1.213,1.089,0.816,0.958,1.175,1.238,2.105,1.059,0.822,1.071,0.855,1.069,1.062,0.884,1.195,0.999,0.774,1.089,1.037,1.001,0.966,0.822,1.114,1.012,1.101,0.837,1.007,1.963 +NM_023011,0.862,1.006,1.326,0.738,0.963,1.062,0.704,0.687,1.279,0.893,1.07,0.989,0.842,0.915,0.995,1.468,0.882,0.9,0.798,0.981,0.714,1.166,1.068,1.001,0.785,0.831,1.31,1.036,0.769,1.425,0.999,1.847,1.383,1.28,0.675,0.866,0.978,1.191,1.074,0.926,1.018,1.082,0.867,1.19,0.845,1.08,1.172,0.678,1.119,0.881,0.952,0.899,0.919,1.47 +NM_023012,0.758,0.818,1.141,0.773,0.971,1.086,0.584,0.489,1.348,0.98,0.908,0.613,0.565,0.695,1.064,1.238,0.931,0.762,1.094,1.159,0.431,0.727,1.137,1.03,0.604,0.907,1.466,0.929,0.337,0.888,1.09,1.432,1.402,1.194,0.87,0.959,0.972,0.893,0.977,1.053,1.06,0.976,0.711,0.894,0.997,1.211,0.974,0.803,1.05,0.898,1.037,0.676,1.076,1.709 +NM_023013,1.001,1.013,0.877,1.025,1.164,1.049,1.038,0.973,1.005,1.085,1.121,1.003,0.993,1.051,0.904,1.035,1.008,1.025,1.072,0.988,1.055,1.033,0.815,1.046,0.993,0.909,0.989,0.903,0.999,0.99,0.88,1.009,1.088,1.035,0.993,0.983,0.951,0.815,0.833,0.899,1.119,1.073,0.884,0.965,1.142,1.073,1.095,0.918,1.101,1.099,0.961,1.054,0.999,1.069 +NM_023014,1.105,0.938,0.88,0.97,0.972,1.075,1.39,1.116,1.001,0.945,0.895,0.91,1.078,1.078,1.046,0.992,0.89,1.043,1.236,0.926,0.965,1.106,0.935,1.091,1.093,0.991,1.105,0.986,1.454,1.022,0.993,0.974,0.88,0.931,0.904,0.959,1.045,1.02,1.004,1.055,0.964,1.035,1.359,0.976,0.992,1.057,0.867,1.001,1.082,0.97,0.98,0.932,0.92,0.996 +NM_023015,0.804,1.018,1.166,0.916,0.916,0.791,0.554,0.383,0.99,0.937,0.848,0.891,0.525,0.861,0.846,1.145,0.989,0.882,1.297,0.652,0.773,1.104,1.154,0.957,0.8,1.097,1.553,0.548,0.587,1.118,0.728,1.744,1.486,1.1,0.276,0.89,1.056,1.056,1.546,1.306,0.99,1.049,0.719,1.462,0.922,0.695,0.843,0.833,1.05,1.078,0.962,0.948,0.982,1.642 +NM_023016,1.848,0.408,1.893,0.796,1.815,0.783,0.451,1.741,1.958,1.489,0.796,1.617,1.731,0.866,1.254,1.106,1.079,1.747,2.679,0.612,1.158,2.015,1.006,1.825,0.45,1.199,2.188,1.595,0.454,0.56,1.538,0.512,1.346,0.583,1.692,0.637,0.696,2.253,0.873,0.869,2.781,0.753,0.787,0.788,1.872,0.729,1.216,2.021,1.072,2.181,0.718,0.729,1.731,0.777 +NM_023018,0.28,1.884,0.739,0.646,0.463,2.442,1.179,0.252,0.588,0.511,1.145,0.411,0.374,0.325,0.969,2.016,0.53,1.488,0.416,2.069,0.219,0.417,1.891,0.573,0.591,0.348,0.834,0.479,0.936,2.519,0.511,1.314,0.805,2.056,0.211,0.697,1.538,0.621,1.927,1.152,0.668,1.891,0.726,0.826,0.55,1.439,0.92,0.397,1.031,0.32,1.305,0.623,0.349,1.691 +NM_023019,1.36,0.765,1.091,1.45,0.766,1.366,0.578,0.621,0.911,0.899,0.921,0.755,0.764,0.857,0.936,1.481,0.991,0.833,1.582,0.723,1.215,0.807,0.977,0.703,1.183,1.712,1.096,0.595,0.591,1.372,0.959,1.305,2.58,1.789,0.628,0.531,0.938,0.938,2.348,0.908,0.834,0.994,0.67,1.951,1.166,0.802,0.652,1.222,0.763,1.559,0.965,0.737,1.367,1.006 +NM_023033,0.851,1.039,1.007,0.834,0.889,0.828,0.585,0.616,1.343,1.522,0.81,1.339,0.939,0.666,0.831,1.068,1.004,0.671,1.073,0.759,0.612,0.916,1.214,1.739,0.717,0.845,1.164,0.803,0.405,0.961,1.007,1.464,1.733,0.88,0.316,1.738,0.929,0.848,1.475,0.98,1.376,1.116,0.86,2.482,1.419,0.835,1.264,0.787,1.027,0.847,0.952,1.456,1.151,1.953 +NM_023034,1.042,0.997,1.1,0.902,1.068,0.968,1.039,1.045,1.117,1.007,0.926,1.009,1.08,1.017,1.061,1.129,0.973,0.969,1.025,1.082,0.987,1.078,1.127,1.096,0.976,0.844,1.017,1.005,0.944,1.049,1.032,1.036,1.147,1.03,1.19,0.858,1.004,0.695,0.952,1.02,1.007,1.004,0.911,0.943,0.998,0.926,1.075,1.058,0.862,0.876,1.104,0.835,1.0,1.012 +NM_023036,1.055,1.066,0.93,0.796,0.956,0.926,1.011,1.003,0.925,1.023,0.936,1.049,0.944,1.03,0.951,1.072,1.08,1.174,1.009,1.067,1.03,0.904,1.046,1.05,0.964,0.997,0.89,1.156,0.914,0.97,0.925,1.023,0.997,1.014,0.986,0.974,0.987,0.96,0.938,0.935,1.03,0.836,0.85,0.91,1.05,0.949,1.016,0.904,0.948,1.025,0.996,0.999,0.741,0.874 +NM_023037,0.7,1.568,0.979,0.811,0.82,1.545,1.059,0.826,0.633,0.693,1.295,0.727,0.685,0.651,1.029,1.297,0.85,1.068,0.881,1.779,0.729,0.761,1.041,0.782,1.237,0.676,0.861,0.764,0.757,2.034,0.714,2.557,0.862,1.702,0.685,0.846,1.201,0.893,1.395,0.895,0.739,1.504,0.719,0.81,1.022,0.878,0.781,0.783,0.781,1.13,1.453,0.916,0.667,0.934 +NM_023038,1.068,1.0,0.982,1.1,0.847,0.952,0.788,0.918,0.999,0.958,0.908,1.049,0.889,0.795,0.908,1.069,1.002,0.969,1.0,0.911,1.054,1.03,1.154,1.017,1.065,0.947,0.916,0.968,0.728,1.06,1.041,0.888,0.953,0.946,0.814,0.976,1.184,0.814,0.842,0.953,0.925,1.145,0.918,1.179,0.832,0.998,0.952,0.866,0.874,0.894,1.013,1.102,1.05,1.106 +NM_023039,0.968,1.187,1.165,1.004,0.964,1.153,0.822,0.781,1.152,0.876,1.193,0.872,0.936,0.87,1.222,1.232,1.094,0.962,1.039,1.107,0.851,0.765,1.072,0.979,0.746,0.911,1.106,0.901,0.856,1.129,0.943,0.823,1.087,0.98,0.928,0.917,1.076,0.832,0.863,0.888,0.968,1.005,0.818,1.032,0.813,1.197,0.958,0.792,0.897,0.831,1.149,0.865,0.958,1.264 +NM_023067,0.868,0.981,0.971,0.849,0.956,1.093,0.922,0.993,1.005,1.044,0.826,0.94,0.863,0.982,0.896,1.049,1.131,1.015,0.903,0.94,0.95,0.955,0.958,1.057,0.829,1.142,1.197,0.944,0.781,0.979,1.048,1.069,1.328,1.163,1.181,0.935,1.012,1.009,1.102,1.096,1.051,1.016,0.825,0.881,1.134,0.914,0.934,0.983,1.078,1.024,1.1,0.913,0.835,1.627 +NM_023068,1.081,0.966,1.19,1.061,1.029,1.185,0.859,0.931,1.055,1.25,1.089,1.019,0.954,0.973,1.143,0.942,1.072,1.183,1.086,0.934,0.94,1.2,1.14,1.045,1.041,1.033,1.017,0.976,0.932,0.978,0.898,0.942,1.004,1.092,1.008,1.101,0.98,1.138,1.025,1.005,1.034,0.903,0.954,0.912,0.895,0.979,0.968,1.051,1.071,0.963,1.013,0.963,0.984,0.933 +NM_023070,0.854,1.091,0.935,1.018,1.067,0.972,1.116,1.092,1.047,0.967,0.975,1.019,1.052,1.012,0.951,0.968,1.034,0.924,1.066,1.015,0.936,0.93,0.955,1.137,1.138,0.973,0.969,0.893,0.887,1.006,0.901,0.935,1.129,0.974,0.968,0.95,0.9,0.899,1.106,0.948,0.88,1.002,0.895,1.08,0.96,1.135,0.989,1.028,1.036,1.115,0.913,0.938,1.114,1.108 +NM_023071,0.823,1.146,0.966,0.745,0.884,1.193,0.789,0.744,1.032,0.859,1.07,0.846,0.728,0.81,0.871,1.058,0.851,0.919,0.816,0.982,0.809,0.808,1.129,0.909,0.797,0.791,1.311,0.821,0.71,1.226,0.924,1.215,1.313,1.239,0.682,1.035,1.139,0.974,1.241,0.937,0.86,1.592,1.141,1.483,0.814,0.998,1.105,0.739,1.025,0.751,1.207,0.851,0.898,1.35 +NM_023073,1.003,0.984,1.031,1.049,1.073,0.907,0.881,1.13,1.041,1.046,0.988,0.94,0.934,0.945,1.202,0.968,1.016,0.898,1.019,1.106,1.096,1.035,1.056,0.999,1.01,1.0,1.071,0.813,0.906,0.979,1.047,1.209,1.242,1.047,0.972,1.009,0.992,1.057,0.934,0.974,0.929,0.951,1.095,0.996,0.93,1.054,0.936,0.999,0.857,0.982,0.948,0.972,1.067,0.899 +NM_023076,1.026,0.935,1.026,1.035,0.971,0.992,0.925,0.994,1.145,1.031,0.949,0.965,0.867,0.94,1.297,0.955,1.132,0.966,0.965,1.046,1.008,0.934,0.971,1.153,1.034,0.939,1.209,0.996,0.654,1.102,0.964,1.716,1.107,1.098,0.978,1.072,1.004,0.883,0.965,1.041,1.149,0.904,0.931,1.047,0.88,0.907,1.127,0.904,1.046,1.063,0.956,0.96,0.986,1.07 +NM_023077,0.902,1.03,1.094,0.72,0.939,1.015,0.655,0.734,1.127,1.53,1.149,1.059,0.844,0.695,0.848,1.163,0.895,0.709,0.912,1.009,0.678,0.788,1.382,1.039,0.808,0.725,0.923,0.898,0.556,1.09,0.836,1.262,2.156,1.001,0.537,1.073,0.928,0.933,1.336,0.937,0.906,1.047,0.765,1.045,0.959,1.221,0.901,0.617,1.203,0.752,1.16,1.063,0.952,1.977 +NM_023078,0.586,1.268,0.977,0.606,0.97,1.222,0.789,0.491,1.176,1.297,0.89,1.082,0.687,0.437,0.898,1.142,1.194,0.795,0.753,0.911,0.393,0.743,1.361,1.216,0.677,0.541,1.366,0.761,0.555,1.219,0.599,2.671,2.507,1.006,0.357,1.03,0.897,0.826,1.222,1.772,1.22,1.077,0.679,1.311,1.1,1.551,1.346,0.526,2.218,0.788,1.222,0.863,0.703,1.825 +NM_023079,0.699,1.029,1.156,0.712,0.711,0.979,0.543,0.295,0.855,0.912,1.077,0.54,0.541,0.618,0.885,1.555,0.795,0.899,1.06,1.0,0.475,0.727,1.152,1.037,0.657,0.797,1.355,0.688,0.461,1.144,0.892,1.726,1.247,1.327,0.16,0.7,1.24,0.78,1.818,0.715,0.956,1.169,0.824,1.822,0.882,0.945,1.025,0.747,1.115,0.892,1.052,1.038,1.031,1.941 +NM_023087,1.031,0.988,0.992,0.99,0.906,1.096,0.945,0.97,1.037,0.989,1.021,1.064,0.948,1.039,0.852,0.834,1.016,0.954,1.269,0.846,1.003,0.995,0.856,1.098,0.953,0.981,0.944,1.098,0.882,1.023,1.012,0.985,1.043,1.028,1.031,0.944,0.997,0.908,1.004,1.063,0.907,0.85,1.204,1.006,0.928,1.049,0.963,1.004,0.892,0.982,1.019,0.951,1.008,0.943 +NM_023110,2.05,1.9929999999999999,2.093,1.9049999999999998,1.987,1.785,1.764,2.285,2.089,2.058,2.169,2.072,1.9049999999999998,2.0700000000000003,2.407,2.032,2.016,2.068,2.25,1.976,1.9989999999999999,2.076,2.033,2.116,2.022,2.027,2.1529999999999996,2.023,1.93,2.019,2.013,2.048,2.159,1.967,2.198,1.788,2.113,2.167,1.995,2.2009999999999996,2.023,1.816,2.275,2.033,1.978,2.045,1.85,2.154,1.823,2.0460000000000003,2.021,1.979,1.673,1.951 +NM_023112,0.954,0.924,1.486,0.84,1.468,1.06,0.886,1.134,1.072,1.411,0.868,0.975,0.998,1.027,1.083,1.336,1.905,1.067,1.306,0.816,0.933,1.375,1.0,1.39,0.816,1.043,1.271,1.075,0.689,0.973,1.193,0.953,0.93,0.953,0.992,0.941,0.899,1.359,1.407,1.229,1.276,0.795,0.895,1.615,1.21,0.886,1.092,1.244,1.096,1.098,0.985,0.979,1.185,0.985 +NM_023914,1.106,1.059,0.942,0.926,1.166,1.016,0.942,1.154,1.187,0.988,0.953,1.045,0.995,0.99,1.153,0.918,0.906,0.827,1.11,0.987,0.958,1.043,0.913,1.021,0.981,1.166,1.005,0.975,0.801,1.122,1.029,1.116,0.96,1.095,1.008,1.08,1.137,0.94,0.864,0.971,0.971,1.023,1.145,0.906,1.097,0.954,0.985,1.054,0.937,0.899,1.059,0.883,0.943,1.07 +NM_023915,1.981,0.536,3.95,1.217,2.529,0.521,0.577,1.376,3.562,2.707,0.588,2.098,1.834,1.764,1.681,1.139,2.684,1.659,3.446,0.948,1.362,1.959,0.501,3.059,0.545,2.369,3.335,2.637,0.377,0.648,2.7,0.467,1.794,0.544,0.842,0.544,0.473,2.032,0.55,0.51,3.211,0.596,0.405,0.591,2.784,0.575,1.751,2.207,0.585,1.99,0.803,1.33,3.29,1.144 +NM_023917,1.069,0.911,1.007,1.118,1.014,1.038,0.993,1.089,1.009,1.052,0.978,0.915,1.0,1.019,0.916,0.846,0.998,0.807,1.007,0.979,0.979,0.938,1.013,0.959,1.102,1.031,1.166,0.935,1.164,1.047,1.032,1.067,0.908,0.987,1.048,0.899,0.875,1.064,1.146,0.97,1.007,0.994,0.969,0.99,0.98,0.959,0.925,1.036,0.985,0.955,1.061,1.02,1.0,1.004 +NM_023918,0.919,0.866,1.193,0.932,1.039,1.041,0.923,0.86,1.012,0.944,0.933,1.052,0.989,1.207,0.734,1.085,0.91,0.834,1.148,1.016,0.96,0.969,1.133,1.292,0.936,0.978,1.055,1.185,1.342,0.965,1.155,0.956,0.858,0.87,1.109,1.073,1.131,0.792,0.798,1.021,1.059,1.053,0.882,0.824,1.017,0.973,1.035,1.031,0.91,0.863,0.964,1.043,1.029,0.986 +NM_023919,1.077,0.98,0.967,1.015,0.787,1.065,1.246,0.968,0.878,1.14,0.888,0.981,1.049,0.969,1.014,1.097,1.013,0.976,1.037,0.91,1.048,0.986,1.072,1.063,1.111,0.832,1.039,0.978,0.802,0.982,0.919,1.038,1.022,0.996,1.006,1.099,0.933,0.899,1.003,1.102,0.946,1.303,1.192,1.055,1.106,1.073,0.974,0.96,0.995,1.222,0.969,1.201,1.084,0.839 +NM_023920,1.153,1.013,1.09,1.095,1.138,1.136,0.999,1.057,0.898,0.962,0.982,0.961,0.974,0.939,1.11,0.954,1.028,1.089,1.083,0.968,0.992,0.995,1.018,1.028,1.067,0.847,0.83,1.063,1.366,1.056,0.944,0.858,0.991,1.017,0.957,1.005,0.925,1.025,1.002,0.986,0.981,0.968,1.133,0.965,0.983,0.935,0.981,1.036,0.96,1.004,1.05,0.952,0.913,1.078 +NM_023921,1.049,0.848,1.05,1.033,1.028,1.024,0.953,0.898,0.997,0.95,0.9,1.011,1.104,0.972,1.213,0.96,0.973,0.914,0.91,1.265,1.002,1.127,1.043,1.1,0.87,0.991,0.868,0.964,0.966,1.072,1.047,0.937,1.012,0.939,1.086,0.909,0.934,1.034,1.005,0.852,0.909,1.044,1.058,0.99,0.921,1.088,1.052,1.164,1.014,1.064,0.976,0.991,1.033,1.085 +NM_023922,0.966,0.936,0.968,1.001,0.961,0.924,1.241,0.957,1.025,1.068,0.822,0.976,1.005,1.093,0.874,0.92,0.93,1.081,0.936,1.142,0.998,0.989,0.993,0.951,0.974,1.038,0.881,1.146,0.677,1.012,1.116,1.023,0.975,1.017,1.085,0.933,0.918,1.025,1.077,0.971,1.099,0.906,0.804,0.919,1.214,0.816,0.934,1.046,1.106,1.074,0.925,0.87,0.982,1.322 +NM_023923,1.928,0.902,1.988,0.943,2.315,0.907,0.672,1.427,2.006,1.564,0.899,0.873,1.333,1.255,1.831,1.229,1.701,1.031,1.504,0.886,1.129,1.196,0.91,1.281,0.838,1.504,1.639,1.475,0.513,0.994,1.931,0.856,1.19,0.711,5.533,0.798,0.741,2.378,1.083,0.753,1.839,1.066,0.634,0.904,1.833,0.871,1.342,1.865,0.958,1.569,0.977,0.797,1.251,1.067 +NM_023924,0.882,0.943,0.924,0.948,0.845,1.133,0.723,0.578,0.888,0.962,1.092,0.889,0.684,0.698,1.009,1.296,0.901,0.857,0.891,0.893,0.814,1.018,1.08,1.06,0.733,0.85,1.223,0.768,0.814,1.314,0.796,1.752,1.677,1.387,0.648,1.35,0.906,1.059,1.483,1.673,1.021,1.119,0.85,1.637,0.901,1.012,0.942,0.791,0.918,0.847,0.93,0.948,0.991,1.444 +NM_023925,2.076,1.767,2.169,1.959,2.1559999999999997,2.078,2.028,1.8459999999999999,2.176,1.861,2.138,2.098,1.83,1.746,2.284,2.2489999999999997,2.021,1.8290000000000002,2.009,2.348,2.008,1.762,1.778,1.9589999999999999,1.935,1.9659999999999997,2.107,1.9660000000000002,1.742,1.97,1.8679999999999999,2.431,2.653,1.843,1.862,2.128,2.061,2.012,2.12,2.017,1.911,2.104,2.214,2.394,1.764,1.854,1.971,1.876,2.1479999999999997,2.143,1.956,2.104,1.9629999999999999,2.7830000000000004 +NM_023927,0.81,1.085,0.827,0.966,0.861,1.643,0.827,0.712,0.946,0.724,1.09,0.918,1.056,0.661,1.399,1.48,0.669,1.117,0.819,1.644,0.765,0.8,0.984,0.62,1.065,1.018,0.827,0.714,0.818,1.75,0.832,0.964,0.876,1.652,0.748,0.632,1.603,0.726,1.105,0.733,0.717,1.614,0.824,0.663,0.926,1.434,1.111,0.777,1.211,0.746,1.19,0.74,0.754,1.262 +NM_023928,1.007,0.76,1.363,0.894,1.023,1.002,0.607,0.759,1.259,1.069,0.812,0.976,0.778,0.759,0.809,1.119,0.979,1.208,1.625,1.092,0.733,1.111,1.079,1.05,1.055,1.273,1.244,0.917,0.558,1.075,1.099,0.818,0.808,1.504,0.399,0.933,1.056,1.128,0.707,0.646,1.124,0.91,0.433,0.684,1.189,0.666,0.784,1.116,0.616,1.323,1.07,0.544,0.846,0.705 +NM_023929,1.054,0.953,1.084,1.023,1.026,1.108,0.863,0.893,0.834,1.043,1.095,0.986,1.097,1.251,0.998,0.98,0.98,0.956,1.026,1.043,1.029,0.98,1.047,0.981,1.084,0.957,0.943,1.059,0.872,1.101,0.987,0.971,1.198,1.093,1.207,0.941,1.125,0.943,0.911,1.123,0.91,1.075,0.983,1.029,0.935,0.927,1.005,1.056,0.958,1.006,0.958,0.901,1.006,1.007 +NM_023932,1.941,0.713,2.646,1.163,2.25,0.734,0.872,1.332,1.803,2.678,0.749,2.017,1.261,1.389,1.337,0.872,2.051,1.864,2.621,1.151,1.429,1.574,0.763,3.072,0.765,1.999,1.751,1.488,0.585,0.766,1.482,0.748,1.277,0.651,0.781,0.855,0.739,1.673,0.822,0.751,2.941,0.762,0.807,0.737,2.836,0.754,2.1,1.777,0.797,1.715,0.983,0.997,2.055,0.926 +NM_023933,0.71,1.04,0.721,1.088,0.746,1.308,0.85,0.495,0.782,0.812,1.478,0.744,0.796,0.57,0.913,2.121,0.66,0.998,1.278,1.326,0.578,0.703,1.529,0.873,1.042,0.948,0.778,0.642,0.687,1.136,0.655,1.462,1.561,1.814,0.248,1.627,1.293,0.577,2.035,0.761,0.736,1.421,0.719,1.694,0.904,1.236,1.079,0.954,0.828,0.677,1.228,0.884,0.858,1.096 +NM_023934,0.815,1.144,0.899,0.964,0.747,1.094,0.788,0.531,0.685,0.74,1.334,0.863,0.886,0.492,0.82,1.164,0.655,1.008,1.082,1.119,0.577,0.741,1.129,0.935,1.439,1.058,0.808,0.769,0.53,1.102,0.594,1.295,2.299,1.779,0.325,1.309,1.232,0.765,1.628,0.813,0.864,1.447,0.691,2.123,0.941,0.91,0.844,1.03,0.772,0.758,1.001,1.285,1.0,1.111 +NM_023935,0.777,0.86,1.1,0.861,0.795,1.171,0.68,0.623,0.988,1.033,0.947,0.76,0.669,0.762,0.935,1.637,0.76,0.942,1.048,1.014,0.871,0.791,1.702,1.234,0.71,0.864,1.123,0.745,0.672,1.477,0.734,0.946,4.36,1.256,0.501,0.965,0.895,0.914,1.509,1.497,1.04,1.092,0.699,1.975,1.039,1.043,0.789,0.764,0.845,0.98,0.988,1.087,1.146,2.301 +NM_023936,0.879,0.843,0.881,0.933,0.779,1.369,0.607,0.605,0.913,0.887,1.111,1.341,0.972,0.6,0.727,1.727,0.851,1.116,1.336,0.775,0.816,0.93,1.116,1.005,0.956,1.105,1.198,0.74,0.623,1.166,0.715,1.142,2.178,1.479,0.208,0.933,1.132,0.999,2.139,0.862,0.996,0.933,0.557,1.469,0.954,0.858,1.136,1.02,0.947,0.925,0.987,0.954,0.92,0.972 +NM_023937,0.686,1.257,0.761,0.828,0.758,1.49,0.628,0.659,1.0,0.825,1.79,1.08,0.96,0.629,1.061,2.191,0.851,0.893,1.087,0.912,0.738,0.747,1.669,0.863,0.842,1.091,0.963,0.788,0.681,1.089,0.825,1.027,0.829,1.469,0.506,1.17,1.209,0.762,1.178,0.837,0.846,1.248,0.816,1.455,0.776,1.035,0.82,0.727,0.976,0.727,1.162,1.088,0.703,1.507 +NM_023938,2.596,0.9,1.911,0.963,2.648,0.943,0.735,1.982,3.554,2.484,0.585,1.538,1.825,1.586,1.46,0.967,2.426,1.786,1.865,0.767,0.875,2.157,0.473,2.091,0.679,3.192,1.707,3.14,0.597,0.904,3.626,0.787,1.162,1.143,6.199,0.69,0.707,2.773,1.288,0.255,3.906,0.765,1.107,0.786,2.131,0.856,1.747,3.671,0.734,1.627,0.91,0.63,2.008,0.803 +NM_023939,0.994,0.734,0.969,1.048,0.937,1.1,0.836,1.284,1.052,0.902,0.798,1.158,0.928,0.872,0.907,1.346,0.934,1.032,0.812,1.065,0.765,1.093,1.185,0.912,0.935,1.173,0.903,1.616,0.72,1.117,1.066,1.158,1.552,1.197,4.389,1.03,0.91,1.177,1.144,1.306,1.016,1.19,0.917,1.206,0.916,0.851,0.892,1.215,0.829,0.942,1.022,0.776,0.9,1.315 +NM_023940,1.016,1.438,1.055,1.115,0.932,1.237,0.915,0.902,0.872,0.899,1.027,1.02,0.944,0.784,0.923,0.888,0.854,1.056,0.885,0.975,1.089,0.884,0.997,0.961,1.085,0.964,1.004,0.935,0.962,1.116,0.979,1.346,1.569,1.364,0.857,0.843,1.096,1.159,1.044,0.858,0.947,1.104,1.0,1.071,0.97,0.926,0.861,0.789,0.818,1.035,0.863,1.025,0.801,0.918 +NM_023942,1.14,1.22,1.033,1.045,0.966,1.031,1.046,0.83,0.85,0.972,1.125,0.914,1.023,0.925,0.874,1.087,0.912,0.964,1.064,1.062,1.075,0.939,1.084,0.944,0.932,1.076,1.097,0.869,0.891,0.98,0.899,0.845,1.019,1.165,0.931,0.957,0.986,1.008,1.026,0.984,0.923,1.037,0.976,1.173,0.868,0.908,0.996,1.051,0.925,1.161,0.919,0.977,1.064,0.946 +NM_023943,0.92,0.986,0.865,0.886,0.974,1.208,0.867,1.048,1.082,0.932,1.132,1.043,0.975,0.829,0.857,0.952,0.955,0.931,0.866,1.055,1.045,0.925,1.025,0.987,1.0,0.995,0.928,1.108,0.874,0.953,0.81,1.004,1.017,1.058,0.867,0.963,1.027,0.998,1.072,0.948,1.126,1.193,0.861,0.919,1.0,1.061,0.996,0.908,1.072,1.04,0.966,0.907,0.986,0.879 +NM_023944,0.652,0.897,0.812,1.537,0.768,2.322,1.594,0.654,1.112,0.857,1.703,0.759,0.803,0.771,1.893,5.091,0.742,1.321,0.972,1.516,0.696,0.985,3.443,0.816,0.878,0.685,0.946,0.938,0.873,1.933,0.898,0.582,0.552,2.845,0.521,0.87,1.757,0.91,1.582,0.477,0.929,2.018,1.226,0.838,0.695,1.643,0.848,0.818,2.187,1.302,1.818,0.897,0.992,0.738 +NM_023945,0.997,1.052,1.047,1.001,1.113,0.888,1.345,1.044,0.998,0.938,0.868,0.981,1.001,1.079,0.781,1.033,1.021,0.99,0.973,0.891,1.007,1.059,0.986,1.076,0.948,1.159,0.885,1.055,0.747,1.075,1.089,0.834,0.966,0.947,1.076,0.979,0.944,1.103,0.907,0.992,1.094,0.962,1.142,1.073,0.926,0.869,0.933,1.095,1.063,0.915,0.972,0.933,1.007,0.936 +NM_023948,0.871,0.81,1.53,0.664,1.34,1.285,0.527,1.022,1.506,1.409,0.879,1.217,0.811,1.0,1.07,0.915,1.1,1.013,1.76,1.16,0.753,0.964,0.994,1.295,0.601,1.025,1.264,1.272,0.738,1.837,1.237,1.359,1.173,1.258,0.519,0.65,0.829,1.388,1.021,1.115,1.142,0.911,0.673,0.847,0.976,0.793,1.019,0.97,0.601,0.911,0.855,0.857,1.24,0.946 +NM_024003,1.068,1.068,0.939,1.139,0.902,1.018,0.753,1.106,0.952,0.845,0.836,0.943,0.875,1.097,1.003,1.0,0.851,0.969,0.93,0.951,1.0,1.152,1.209,0.956,0.961,0.991,0.971,0.945,1.334,0.946,1.16,0.901,1.373,1.033,0.996,1.22,1.076,0.994,0.931,0.955,0.9,1.031,1.029,1.032,1.047,0.894,0.945,1.124,1.193,0.989,1.049,0.901,0.94,1.076 +NM_024005,1.901,1.702,2.284,1.871,2.135,1.8170000000000002,1.952,1.779,2.016,2.5389999999999997,2.063,2.132,1.8719999999999999,2.495,1.889,2.088,2.209,2.094,1.8679999999999999,1.83,1.963,1.891,1.666,2.277,1.853,1.988,2.2699999999999996,2.3129999999999997,1.6070000000000002,2.097,2.26,1.914,2.1109999999999998,1.78,2.09,1.994,2.0620000000000003,2.085,2.311,1.8889999999999998,2.397,2.129,1.952,2.234,2.1790000000000003,1.97,2.144,1.807,1.963,2.137,1.839,2.2279999999999998,2.455,1.936 +NM_024006,0.434,1.424,0.908,0.718,0.641,1.103,0.649,0.518,0.733,0.653,1.148,0.874,0.614,0.6,0.824,1.154,0.51,0.709,1.116,1.0,0.402,0.618,1.593,0.874,1.03,0.586,1.133,0.688,0.324,1.559,0.675,3.017,2.236,2.198,0.174,0.773,1.186,0.802,1.368,1.886,0.817,2.022,0.652,1.342,0.635,0.759,0.893,0.537,0.526,0.521,1.122,0.853,0.806,1.769 +NM_024007,0.967,0.925,1.102,0.916,0.964,1.054,0.772,0.978,0.938,1.024,1.109,1.082,0.893,0.907,0.936,0.958,1.116,0.87,0.978,0.899,0.909,0.977,1.012,1.142,0.901,1.089,0.912,1.032,0.585,1.136,0.788,1.356,1.107,1.168,0.913,0.917,0.982,1.003,0.935,1.129,0.83,1.144,0.98,1.029,0.951,1.005,1.007,0.862,0.946,0.911,1.076,1.168,0.778,1.033 +NM_024009,1.04,0.835,1.343,1.097,0.877,0.813,0.991,0.912,0.923,1.242,0.867,1.159,0.969,0.938,0.759,1.023,1.47,1.205,1.062,0.98,1.108,1.005,1.051,1.163,0.939,0.935,1.155,0.982,0.854,0.848,0.9,0.87,1.12,0.895,1.051,0.958,0.846,0.864,0.999,0.978,1.373,0.873,0.853,0.764,1.372,0.61,1.119,1.057,1.033,1.374,0.908,1.063,1.144,1.184 +NM_024010,0.91,0.901,0.972,0.977,1.049,0.886,1.053,1.031,1.07,1.049,1.015,0.963,0.975,0.872,0.859,0.863,0.888,0.955,1.01,0.972,0.903,1.048,0.909,1.073,1.126,1.163,1.033,1.048,1.1,1.025,0.964,1.055,0.887,1.078,1.002,0.977,0.973,0.978,0.939,1.035,0.998,1.002,0.992,1.002,1.058,1.144,0.977,1.121,0.985,1.088,1.198,0.984,0.936,0.891 +NM_024012,1.0,1.066,0.983,0.869,1.024,1.107,0.993,1.028,1.067,0.982,1.228,0.885,1.004,1.144,1.036,0.916,1.052,1.113,1.017,0.959,1.071,0.913,1.064,0.95,1.016,1.009,0.935,1.142,1.585,1.006,0.979,0.881,0.888,0.916,1.114,0.917,0.987,1.067,1.007,1.073,1.084,0.885,1.258,0.954,1.095,0.999,1.016,0.971,0.93,0.953,0.879,1.014,1.112,0.983 +NM_024013,1.053,1.002,0.988,1.18,0.89,0.818,1.054,0.946,0.905,0.91,1.258,1.064,1.02,1.149,1.195,1.122,1.019,0.945,1.068,1.148,1.1,1.079,1.075,0.972,1.036,0.99,0.956,1.052,1.038,0.975,0.988,1.044,1.086,0.97,1.057,0.929,1.011,1.013,1.015,0.91,1.013,0.956,1.392,1.086,0.972,1.157,0.95,0.979,1.062,1.065,0.948,1.0,0.935,0.944 +NM_024014,0.998,1.014,0.998,0.827,0.984,1.042,1.314,1.106,1.057,0.925,0.842,1.173,0.914,1.02,1.251,0.893,0.903,0.857,0.963,1.085,0.919,0.834,0.959,1.057,0.882,1.001,1.001,1.041,1.477,0.948,0.995,0.903,1.247,0.95,1.046,1.198,0.999,1.222,1.087,1.025,1.128,0.924,1.177,1.522,0.935,0.872,1.038,0.939,1.037,0.942,0.941,0.96,0.972,1.189 +NM_024015,0.929,1.164,0.913,1.022,0.964,1.028,0.905,0.922,1.086,1.003,1.023,0.953,1.109,1.475,0.803,1.08,0.934,0.971,1.069,1.142,1.011,0.976,1.111,0.91,0.954,0.968,0.844,0.773,0.715,1.025,1.043,1.247,0.851,1.08,0.914,0.941,0.99,1.048,1.383,1.133,0.989,1.037,1.382,1.136,0.956,1.085,1.143,1.087,0.934,0.976,1.088,1.013,0.925,1.028 +NM_024016,0.866,4.032,0.952,1.008,1.183,1.225,1.127,1.032,0.927,0.805,1.29,0.961,0.998,0.862,1.503,1.024,0.797,0.876,0.789,2.777,0.826,0.918,2.162,0.91,0.978,0.948,0.869,0.851,1.018,0.872,0.987,2.54,1.768,1.421,1.025,1.329,0.844,0.924,3.317,2.508,0.759,1.893,1.353,2.91,0.789,2.43,0.986,0.923,0.857,0.966,1.002,1.467,0.747,0.957 +NM_024017,0.852,1.92,0.88,1.039,0.931,1.34,1.036,0.91,0.993,0.977,1.119,0.888,1.005,0.736,0.923,1.344,0.849,0.921,0.836,1.022,0.765,0.832,1.296,0.782,0.858,0.825,1.019,1.021,1.14,0.84,0.753,2.794,1.085,0.939,0.995,1.44,1.237,0.839,2.091,2.557,0.925,1.45,1.553,3.135,0.944,1.227,1.249,0.832,0.873,0.974,1.414,1.378,0.847,1.203 +NM_024018,0.959,0.887,0.945,1.016,1.142,0.997,1.384,1.078,1.097,0.955,0.989,1.19,0.918,1.059,0.884,1.162,1.068,1.053,1.016,0.999,1.019,1.048,1.033,1.044,0.963,0.979,1.064,0.987,1.152,1.04,1.079,1.023,0.907,0.968,0.926,0.956,1.107,1.098,0.953,0.929,0.967,1.28,1.365,0.934,0.868,0.931,1.128,0.994,0.987,0.931,0.996,1.008,0.905,0.928 +NM_024019,1.135,0.998,1.013,1.081,0.975,1.012,0.811,1.059,0.984,1.03,1.014,0.971,0.923,1.051,0.844,1.124,0.954,1.006,0.938,1.08,0.929,1.086,0.893,1.065,0.966,1.152,0.918,0.909,1.034,0.999,1.085,0.997,0.995,0.937,0.916,0.966,1.108,0.968,1.028,0.992,0.967,1.035,0.92,1.246,0.965,1.103,1.082,1.114,0.987,0.985,0.998,0.981,1.03,0.979 +NM_024025,0.998,0.963,0.885,0.977,1.144,0.98,1.102,0.952,1.033,0.998,1.058,1.008,0.793,0.994,0.785,0.998,1.033,1.146,1.059,1.064,1.06,0.837,0.971,0.966,1.025,1.05,0.826,0.922,0.965,0.965,0.992,1.074,0.893,1.323,0.99,0.903,0.971,1.026,1.094,1.061,1.019,1.046,0.851,1.154,1.0,0.988,1.006,0.884,0.901,1.05,1.024,0.964,1.063,0.897 +NM_024027,0.945,1.07,1.056,0.888,0.861,1.079,1.012,0.937,0.726,0.822,1.081,0.855,0.928,0.768,1.107,0.989,0.953,0.754,0.853,1.016,0.859,0.908,1.14,0.783,1.238,0.936,0.941,1.018,1.378,1.266,0.908,1.371,1.005,1.434,0.898,0.984,1.117,0.907,0.905,0.966,1.021,1.174,0.98,1.087,0.888,1.129,0.891,0.933,0.93,0.937,0.914,1.044,0.895,0.978 +NM_024029,0.695,1.188,1.2,0.699,1.023,1.406,1.054,0.819,0.989,0.939,0.868,0.841,0.813,0.517,0.898,1.604,1.179,1.141,0.72,1.17,0.459,0.935,1.56,1.258,0.698,0.737,1.182,0.873,0.619,1.37,0.937,1.635,1.062,1.176,0.513,0.741,0.77,1.209,1.448,1.078,1.129,1.138,0.716,0.771,1.154,1.197,1.02,0.89,1.052,0.867,1.251,1.084,0.598,1.15 +NM_024031,0.91,0.936,1.135,0.873,0.87,1.096,0.829,0.653,0.815,0.915,0.744,0.887,0.737,0.665,0.713,0.805,0.885,1.005,0.982,0.938,0.899,1.027,1.004,0.912,1.024,1.01,0.985,0.727,0.817,1.251,0.827,1.359,1.638,1.112,0.621,0.883,0.844,1.049,1.463,1.443,0.873,1.056,0.774,1.149,0.952,0.84,0.965,0.959,0.994,0.898,0.863,0.824,0.799,1.109 +NM_024032,0.806,1.069,1.163,0.866,0.902,0.942,0.905,0.724,1.063,1.352,0.897,1.093,0.87,0.848,0.985,1.08,1.091,0.958,1.119,0.825,0.803,0.867,1.205,1.318,0.738,0.936,2.059,0.794,0.795,1.046,0.885,1.472,2.629,0.787,0.613,1.674,0.954,0.959,1.372,1.368,1.156,0.804,1.177,1.532,0.97,0.963,1.024,0.771,1.083,0.988,0.996,1.17,1.073,1.863 +NM_024033,0.773,0.955,1.273,0.831,0.928,1.203,0.793,0.733,0.779,0.939,0.956,0.971,0.827,0.76,1.008,1.222,0.99,1.021,1.117,1.011,0.785,0.866,1.201,1.038,0.973,0.851,1.159,0.957,0.963,1.085,0.85,1.21,1.072,1.129,0.539,0.909,1.074,0.948,1.166,0.804,1.021,0.979,0.871,1.211,0.879,1.02,0.916,0.786,0.871,0.877,0.918,0.955,1.051,1.575 +NM_024034,0.982,1.037,1.056,0.972,1.065,1.184,1.012,1.019,0.864,0.934,1.094,1.044,0.943,0.975,1.182,0.833,1.086,1.058,0.914,0.952,0.898,1.028,1.055,0.906,0.899,0.954,0.965,1.005,0.904,0.909,1.027,1.012,0.97,0.895,1.027,1.005,1.022,0.998,1.011,0.99,0.905,0.923,1.098,0.971,1.113,1.09,1.0,1.028,0.934,1.032,0.8,1.001,1.224,1.041 +NM_024035,0.895,1.03,1.049,0.837,0.947,0.981,0.853,1.104,0.866,0.978,1.0,1.122,1.0,1.025,0.841,0.957,0.952,1.103,0.996,0.879,0.907,0.987,0.93,0.955,1.023,0.903,1.014,1.061,0.755,1.095,0.988,1.324,1.005,1.152,0.935,0.866,1.0,1.078,1.003,2.206,0.99,0.976,0.937,0.979,0.856,0.895,1.069,0.98,0.955,1.007,1.097,0.866,1.062,1.39 +NM_024036,0.883,1.102,0.911,0.901,0.838,1.158,0.927,0.618,0.778,0.987,1.099,0.892,0.862,0.729,0.945,1.96,0.845,0.866,0.765,1.003,0.967,0.837,1.603,0.948,0.942,0.96,0.869,0.774,0.658,1.737,0.843,2.297,2.414,0.957,0.807,3.725,1.021,0.759,2.484,2.076,0.823,0.98,1.13,2.194,0.872,1.087,0.854,0.914,1.216,0.974,1.047,1.644,0.999,2.247 +NM_024037,0.911,1.001,0.922,0.975,1.074,1.214,0.997,0.805,1.159,1.176,0.789,1.094,0.901,0.906,1.073,1.192,0.92,0.93,1.059,0.921,1.006,0.911,1.264,1.192,0.776,0.905,1.44,0.833,1.163,1.034,0.868,1.091,2.247,0.961,0.763,2.32,0.932,0.917,1.317,1.049,0.947,0.904,0.917,1.455,1.057,0.984,1.115,0.976,1.081,0.982,0.915,1.539,1.015,1.702 +NM_024038,0.705,0.785,1.116,0.762,0.782,1.327,0.659,0.858,0.897,0.873,1.424,0.989,0.971,0.67,0.86,1.692,0.854,0.896,1.624,0.98,0.909,0.896,1.731,1.134,0.477,0.912,0.983,0.853,0.395,0.916,0.993,1.079,1.576,1.46,0.56,1.219,1.032,0.877,1.227,1.208,1.039,1.267,0.692,1.209,1.02,0.772,0.77,0.973,0.902,0.869,0.955,1.208,1.347,1.606 +NM_024039,0.596,0.789,1.069,0.729,0.747,1.17,0.644,0.633,1.231,0.881,1.088,1.01,0.762,0.55,0.871,1.271,0.719,0.847,0.936,1.087,0.443,0.644,1.215,1.159,0.752,0.682,1.436,0.86,0.504,1.024,0.803,1.346,1.75,1.115,0.348,1.32,1.052,0.564,0.937,1.191,1.033,1.193,0.895,1.064,0.893,1.15,0.947,0.603,1.214,0.688,1.113,0.874,0.835,2.213 +NM_024040,0.621,1.252,0.998,0.735,0.798,1.172,0.764,0.595,0.902,0.881,0.752,0.896,0.836,0.612,0.737,1.549,0.89,1.036,1.14,1.162,0.695,0.691,1.203,1.041,0.721,0.967,1.047,0.752,0.498,1.24,1.022,2.242,3.827,1.64,0.368,1.099,0.705,1.023,1.442,0.774,0.932,1.063,0.654,1.637,1.005,0.742,0.944,0.782,0.776,0.861,0.919,0.723,1.269,1.062 +NM_024041,0.717,1.074,1.061,0.811,0.94,1.102,0.748,0.666,1.067,1.015,0.851,0.837,0.795,0.657,0.97,1.23,0.913,1.005,1.083,0.895,0.716,0.792,1.165,1.052,0.732,0.872,1.05,0.904,0.759,1.088,0.965,1.785,2.587,1.369,0.599,1.699,0.809,0.997,1.544,1.502,1.111,1.128,0.671,1.653,0.96,0.827,1.119,0.881,0.903,0.855,0.847,1.053,1.009,1.823 +NM_024042,0.811,1.341,0.716,0.834,0.848,1.655,0.922,1.008,0.899,0.794,1.521,1.001,0.895,0.704,1.191,1.518,0.741,1.068,0.999,0.943,0.849,0.985,1.139,0.811,1.418,0.961,0.816,0.858,1.261,1.25,0.855,1.189,1.092,1.989,0.727,1.33,1.017,0.916,1.624,1.461,0.72,1.178,0.926,1.505,0.753,1.163,1.085,1.082,0.824,0.704,0.945,0.941,0.81,0.774 +NM_024043,1.874,0.991,1.331,0.902,1.325,1.098,0.597,1.736,1.319,1.044,0.702,1.303,1.185,1.223,0.95,1.06,1.191,0.974,2.265,0.776,1.427,1.592,0.908,1.323,0.624,2.386,1.009,1.203,0.725,0.691,1.539,0.938,3.281,1.128,1.371,0.723,0.67,1.429,1.527,0.772,1.145,0.74,0.516,1.321,1.347,0.73,0.871,2.351,0.604,2.143,0.688,0.598,1.612,1.378 +NM_024044,0.719,1.011,0.869,1.047,0.786,1.725,0.761,0.632,0.957,0.801,1.078,0.695,0.672,0.71,1.357,2.084,0.775,0.873,0.77,1.481,0.831,0.666,1.494,0.927,1.019,0.738,0.879,0.714,1.119,1.44,0.821,0.989,1.884,1.299,0.765,1.318,1.195,0.722,1.729,1.301,0.777,1.389,1.165,1.288,0.947,1.152,0.921,0.76,0.891,0.828,1.269,0.748,0.932,1.397 +NM_024045,0.894,0.822,1.195,0.747,0.94,0.863,0.48,0.421,1.323,1.09,1.119,0.789,0.774,0.732,0.86,1.16,0.809,0.774,1.263,0.827,0.684,1.077,1.228,1.114,0.534,1.107,1.183,0.876,0.468,0.974,0.992,1.448,1.433,1.136,0.324,1.243,0.845,1.233,1.377,0.659,1.298,1.073,0.568,1.749,0.995,0.808,1.052,0.996,0.799,0.807,0.968,0.814,0.978,2.002 +NM_024046,0.982,0.936,1.073,0.896,0.996,0.893,0.862,1.005,1.087,1.096,0.972,1.019,1.12,1.155,1.121,1.256,0.892,1.027,0.918,0.981,1.175,1.027,0.83,1.021,1.029,0.889,1.116,0.981,1.367,1.076,1.109,0.893,0.891,0.905,1.133,1.045,0.937,1.041,0.928,1.006,0.857,1.104,1.0,0.963,0.999,1.093,0.946,0.888,1.093,1.071,1.049,0.958,0.977,1.034 +NM_024048,0.913,1.032,0.847,1.062,0.984,1.192,0.921,0.811,0.982,0.991,1.043,0.978,0.898,0.946,1.061,1.014,0.941,0.945,0.833,0.893,0.897,0.982,0.939,1.071,1.294,1.09,0.847,0.99,1.025,1.052,0.904,1.061,0.917,0.988,0.953,0.942,1.049,1.187,0.943,1.177,0.851,0.941,1.163,0.918,0.88,1.028,1.084,0.962,0.787,0.834,0.937,0.994,0.844,0.907 +NM_024052,0.924,1.043,1.008,1.083,1.007,0.898,0.845,1.13,0.961,1.063,0.937,0.95,0.995,1.24,0.784,1.068,1.023,1.047,0.972,0.924,1.108,1.044,1.032,0.973,0.947,1.021,0.896,0.959,0.957,1.022,1.101,0.933,0.948,0.998,1.027,0.957,0.947,0.962,1.025,1.019,0.999,1.036,0.971,1.126,1.021,0.948,0.988,1.115,1.02,1.098,1.019,0.973,1.191,0.934 +NM_024053,0.807,1.108,0.875,1.135,0.722,1.357,0.67,0.602,0.923,0.811,0.73,0.882,0.927,0.646,0.826,1.464,0.753,1.123,1.003,0.831,0.655,0.975,1.56,1.102,0.844,0.747,1.494,0.632,0.669,0.907,0.642,1.001,1.91,1.319,0.544,1.084,1.192,0.814,2.256,0.731,0.766,0.786,0.961,1.789,0.736,0.987,0.846,1.045,1.277,0.781,1.419,0.855,0.764,1.932 +NM_024054,0.725,1.025,1.161,0.764,0.97,1.308,0.834,0.621,1.146,0.847,1.244,0.837,0.806,0.774,0.947,1.312,0.989,0.818,1.126,1.042,0.712,0.82,1.403,0.985,0.774,0.744,1.111,0.828,0.768,1.163,0.999,1.141,2.165,1.193,0.59,0.923,1.144,0.981,1.099,0.797,0.978,1.086,0.86,1.262,0.806,1.192,1.058,0.769,0.99,0.85,1.14,1.144,0.97,1.483 +NM_024055,0.677,1.069,0.95,0.874,0.855,1.441,0.846,0.694,0.938,0.939,1.36,1.298,0.971,0.643,0.901,1.323,0.807,0.958,0.993,1.049,0.585,0.924,1.574,1.063,0.946,0.86,0.992,0.968,0.739,1.366,0.945,1.155,1.264,1.248,0.418,1.089,1.132,0.896,1.881,0.662,0.989,1.304,0.911,0.927,1.007,0.968,0.856,0.94,1.258,0.716,1.127,0.841,0.765,1.432 +NM_024056,0.359,0.986,0.689,0.686,0.544,2.174,0.655,0.419,0.738,0.614,2.176,1.102,0.672,0.439,1.276,3.546,0.349,0.945,0.757,1.292,0.328,0.55,1.443,0.916,0.489,0.436,0.999,0.53,0.63,2.105,0.539,1.298,1.733,1.409,0.112,1.705,2.145,0.631,1.488,1.28,0.729,1.675,1.23,1.965,0.555,1.426,2.426,0.485,1.451,0.429,1.746,1.283,0.494,1.634 +NM_024057,0.575,0.854,1.374,0.738,1.007,1.07,0.679,0.462,1.353,0.99,0.861,0.958,0.674,0.525,0.894,1.656,0.937,1.005,0.968,1.136,0.475,0.792,1.595,1.268,0.432,0.604,1.74,0.843,0.459,1.063,0.875,0.989,2.218,1.058,0.2,1.786,1.106,0.787,1.41,0.98,1.29,0.833,0.705,1.238,1.237,0.995,1.128,0.623,1.278,0.778,1.207,1.197,0.907,2.208 +NM_024058,1.004,1.016,1.007,1.07,1.096,1.074,0.911,0.972,0.957,0.94,0.869,0.984,0.946,1.2,0.886,1.011,1.032,1.005,1.084,1.089,1.042,0.912,1.059,1.083,0.934,0.907,1.027,0.929,0.971,0.939,1.018,1.09,1.14,0.839,1.137,1.081,0.962,0.906,1.131,0.928,0.995,1.008,1.296,0.956,1.122,1.092,0.941,1.009,0.995,1.093,0.866,1.03,0.919,1.007 +NM_024059,1.099,0.983,1.057,1.002,1.028,0.956,0.744,0.895,1.075,0.888,1.106,0.976,0.956,1.05,0.823,0.863,0.959,0.946,1.007,1.021,1.023,0.997,0.924,0.951,1.03,0.947,0.975,0.919,0.696,0.92,1.045,1.147,1.033,0.999,1.141,1.159,1.006,1.026,0.959,1.235,0.883,0.922,0.9,1.138,1.014,0.926,1.084,0.986,0.821,0.994,0.983,1.157,1.048,1.068 +NM_024060,1.389,0.628,2.245,0.861,1.927,1.235,0.739,1.679,2.533,1.319,0.868,1.516,1.772,1.78,1.562,0.996,1.551,1.516,1.636,0.989,1.069,1.907,1.049,1.956,0.688,2.205,1.361,3.335,1.083,1.07,2.561,0.786,0.911,1.709,3.445,0.595,0.8,2.735,1.393,0.572,2.665,0.668,0.58,0.513,1.913,0.739,1.0,2.458,0.651,1.648,0.73,0.682,1.235,0.684 +NM_024061,2.111,1.512,2.706,1.954,2.1189999999999998,1.9740000000000002,1.5710000000000002,2.15,2.3440000000000003,2.01,1.589,2.194,2.467,1.9860000000000002,1.999,2.26,2.157,2.133,2.31,1.912,1.7389999999999999,1.9129999999999998,1.897,2.5149999999999997,1.51,2.5149999999999997,2.3890000000000002,2.247,1.486,1.811,2.537,2.088,1.835,2.156,3.504,1.58,2.0460000000000003,2.243,1.3519999999999999,1.4140000000000001,2.463,1.555,1.32,2.505,2.261,1.784,2.109,2.287,1.204,2.568,1.37,1.877,2.517,1.621 +NM_024062,0.842,0.886,1.388,0.805,1.037,1.04,0.832,0.823,1.198,1.073,0.846,1.037,0.731,0.853,1.046,1.082,0.939,0.861,1.212,1.184,0.776,0.912,1.125,1.162,0.782,0.861,1.274,1.037,0.607,1.037,0.995,1.207,2.273,1.063,0.507,0.795,0.901,1.049,1.063,0.875,1.198,0.958,0.741,1.155,0.982,0.932,0.936,0.825,0.783,0.818,1.053,1.039,1.162,2.69 +NM_024063,1.496,0.827,1.822,0.935,2.221,0.767,0.698,0.884,1.833,1.549,0.737,1.608,1.357,1.117,1.12,1.338,2.109,1.178,2.697,0.769,0.968,1.445,1.335,1.456,0.599,1.331,1.92,1.296,0.63,0.784,1.844,0.67,2.113,0.754,1.765,0.738,0.919,2.204,1.031,0.738,1.647,0.719,0.638,0.792,1.693,0.899,1.195,1.168,1.327,1.487,0.879,0.852,1.461,2.104 +NM_024065,0.828,1.012,1.375,0.789,0.969,0.845,0.595,0.527,1.392,1.171,1.136,0.793,0.65,0.814,0.89,1.226,0.909,0.91,1.306,0.893,0.855,0.686,1.176,1.152,0.687,0.918,1.247,1.144,0.468,0.852,0.923,1.538,2.013,1.327,0.403,0.864,0.884,0.844,1.237,0.871,1.604,1.0,0.763,1.212,1.158,0.941,1.036,0.752,1.078,0.916,1.087,0.864,1.384,1.654 +NM_024067,1.14,0.76,0.929,0.903,0.796,0.902,0.573,0.655,0.891,0.793,0.987,0.828,0.938,0.795,0.779,1.242,0.885,0.795,1.265,0.826,0.952,1.127,1.306,0.942,0.935,1.312,1.045,0.689,0.763,1.158,0.804,1.351,2.288,1.22,0.433,1.1,0.861,0.928,1.679,1.17,0.838,1.102,0.885,1.802,1.012,0.781,0.875,1.236,0.776,1.029,0.872,1.038,0.914,1.397 +NM_024068,0.838,0.886,0.765,0.908,0.746,1.458,0.607,0.573,0.768,0.911,1.323,1.072,0.858,0.588,0.854,1.453,0.945,0.98,1.07,0.812,0.787,0.893,1.35,0.996,0.944,0.936,1.138,0.576,0.62,1.308,0.665,1.245,1.757,1.154,0.416,1.223,1.136,1.027,2.097,1.041,0.887,1.08,0.717,2.776,0.92,0.944,1.135,0.727,1.186,0.823,1.15,1.162,0.847,1.343 +NM_024069,0.944,0.995,0.873,1.086,0.836,1.487,0.67,0.723,0.854,0.833,1.249,0.977,0.838,0.761,0.797,1.425,1.015,0.88,1.259,0.875,0.827,0.983,1.339,0.972,0.949,1.135,1.066,0.711,0.661,1.138,0.772,1.109,1.446,1.405,0.464,0.893,0.954,0.896,1.476,0.84,1.008,1.046,0.814,1.509,0.996,0.912,0.886,0.983,0.96,0.915,1.041,0.927,0.897,1.5 +NM_024071,0.938,0.865,1.321,0.746,1.13,1.17,0.646,0.88,1.623,0.883,1.062,1.363,0.944,0.806,1.153,1.145,1.139,0.893,1.678,1.018,0.953,1.028,0.975,1.238,0.504,1.233,1.093,1.16,0.455,1.245,1.192,1.39,1.343,1.329,0.456,0.528,0.853,1.278,0.966,0.515,1.402,1.013,0.53,0.91,1.044,0.947,0.872,0.993,0.753,0.942,0.876,0.561,1.169,0.936 +NM_024072,0.944,0.787,0.923,0.966,0.906,0.94,0.812,0.868,0.947,0.943,0.979,0.915,0.871,0.946,0.947,1.093,1.073,0.903,0.996,0.982,0.906,1.031,1.291,1.07,1.032,0.939,1.134,0.873,0.878,0.996,1.046,1.111,1.131,1.188,0.715,1.208,0.917,0.884,1.248,0.82,1.034,1.116,0.937,0.969,1.033,0.824,0.952,0.952,1.093,0.976,1.089,0.911,0.877,1.527 +NM_024074,0.881,1.536,0.776,0.973,0.986,1.77,1.09,0.956,0.97,0.843,0.986,0.927,0.852,0.975,1.098,0.888,0.949,1.19,0.827,0.92,0.982,1.037,1.071,0.837,1.141,0.985,0.89,0.963,1.591,1.342,0.857,1.176,1.042,1.537,0.982,0.883,1.112,1.056,1.672,0.835,0.972,1.064,1.018,1.065,1.013,1.102,0.919,0.93,1.006,0.959,1.002,0.895,0.975,1.326 +NM_024075,0.787,1.219,0.894,0.889,0.725,1.184,0.602,0.64,0.887,0.838,0.999,1.007,0.875,0.63,0.769,1.172,0.81,0.871,1.014,0.922,0.92,0.981,1.487,0.988,0.823,1.124,0.926,0.794,0.598,1.056,0.869,1.287,1.718,1.297,0.553,1.001,0.953,0.916,1.459,2.166,0.772,1.083,0.729,1.817,0.89,0.835,1.087,1.064,0.724,1.011,0.828,1.024,0.918,1.698 +NM_024076,1.27,1.117,1.25,0.975,1.04,0.874,0.845,0.898,1.183,1.161,0.873,1.211,1.112,0.963,0.922,1.052,1.232,1.073,1.359,0.803,1.124,1.185,0.862,1.611,0.94,1.253,1.339,0.935,0.925,0.897,1.031,1.301,1.144,1.053,0.969,0.736,0.862,1.233,0.984,1.008,1.204,0.959,0.78,1.122,1.462,0.948,0.997,0.963,0.82,1.238,0.865,1.0,1.152,1.0 +NM_024077,0.757,0.73,0.974,0.982,0.818,1.119,0.689,0.663,1.196,0.809,1.221,0.764,0.661,0.7,1.048,1.506,0.825,0.846,0.964,1.576,0.69,0.715,1.408,0.977,0.613,0.858,1.034,0.889,0.468,0.99,0.866,1.445,1.159,1.204,0.418,0.993,0.935,0.748,1.014,1.13,0.956,1.312,1.05,1.087,0.912,1.468,0.858,0.674,1.125,0.702,1.294,0.73,0.969,1.475 +NM_024078,0.855,0.832,0.926,0.939,0.86,0.944,0.762,0.726,1.144,0.849,0.983,0.881,0.801,0.749,0.915,0.919,0.921,1.003,1.181,0.89,0.982,0.934,1.075,1.028,0.911,0.919,1.07,0.667,0.885,1.053,0.909,1.138,1.785,0.999,0.629,1.415,0.91,1.057,1.284,1.174,0.796,1.056,0.794,1.606,1.108,0.934,0.939,1.013,1.032,0.942,1.024,1.265,1.033,1.324 +NM_024079,0.728,1.275,0.796,0.816,0.851,1.166,0.662,0.461,0.978,0.891,1.077,0.701,0.546,0.67,0.973,2.288,0.594,0.971,1.211,1.124,0.604,0.882,1.518,0.893,0.741,0.655,0.919,0.72,0.602,1.384,0.816,1.592,3.064,1.51,0.32,1.925,1.256,0.868,1.655,1.365,0.972,1.482,0.692,1.028,0.87,1.107,1.223,0.676,1.244,0.693,1.395,1.022,0.917,1.344 +NM_024081,0.981,0.623,2.107,0.643,1.548,0.96,0.742,1.241,1.905,1.763,0.666,1.515,1.191,1.262,1.25,1.08,1.523,1.367,1.684,0.777,1.138,1.248,0.842,1.826,0.534,1.116,1.772,1.651,0.633,0.934,1.825,0.745,1.357,0.75,0.988,0.737,0.722,1.26,1.006,0.736,2.227,0.87,0.745,0.694,1.762,0.745,1.844,1.019,0.863,1.428,0.989,1.349,1.711,1.224 +NM_024082,1.047,0.947,0.957,1.213,0.851,1.069,1.027,1.003,0.97,0.986,0.935,0.93,1.018,0.993,0.867,1.06,0.987,0.977,0.925,1.064,1.125,1.06,1.023,0.975,0.971,1.045,0.917,1.035,1.101,0.968,1.091,0.991,1.052,1.039,1.068,0.988,1.107,0.845,0.878,0.923,0.919,1.082,1.108,0.98,1.079,1.045,1.074,0.934,0.944,1.132,0.997,0.958,1.095,0.974 +NM_024083,0.997,1.025,0.863,1.004,0.926,0.956,0.792,1.05,0.94,1.028,0.908,1.049,1.055,1.051,0.884,1.012,0.971,1.022,1.08,1.119,0.841,0.886,1.028,0.938,0.962,0.997,0.915,0.85,0.856,0.917,1.005,1.061,1.122,1.07,0.889,0.956,0.894,0.934,1.222,0.963,0.926,1.173,0.956,1.776,1.013,0.903,0.922,1.107,0.874,0.865,1.031,0.829,1.056,1.036 +NM_024085,1.133,0.796,0.885,0.802,0.893,1.174,0.672,0.667,0.85,0.8,0.724,0.865,0.828,0.69,0.668,1.174,1.015,1.03,1.227,0.843,0.812,1.653,0.974,1.014,0.83,1.709,1.203,0.707,0.797,1.091,0.814,1.294,1.172,1.121,1.135,0.813,1.015,1.639,1.743,1.512,0.901,1.153,0.659,1.843,1.001,0.72,0.887,1.944,0.832,1.431,0.988,0.849,0.726,1.401 +NM_024086,0.994,1.042,1.133,0.995,1.095,0.867,0.915,1.022,1.058,1.059,0.949,1.025,0.896,0.933,0.922,1.014,1.116,1.079,0.88,1.041,0.966,1.044,0.976,0.99,0.922,1.1,1.033,0.931,1.082,0.981,1.062,1.023,0.95,0.943,1.056,1.013,0.972,0.846,0.91,1.106,0.927,0.999,0.971,1.098,0.998,0.978,0.989,1.052,0.954,1.071,0.972,1.023,1.018,1.061 +NM_024087,0.829,1.24,1.385,0.79,0.926,0.983,0.786,0.879,0.935,1.022,1.193,0.905,0.979,0.8,1.141,1.186,0.887,1.134,1.093,0.993,0.799,0.711,1.461,0.915,1.144,0.799,1.139,0.732,0.559,1.042,0.843,0.943,2.292,0.938,0.724,1.355,1.003,0.871,1.253,1.214,0.911,0.921,0.828,0.918,0.845,1.026,1.035,0.757,1.075,1.094,0.951,1.106,0.958,1.767 +NM_024089,0.835,0.946,0.909,1.072,1.01,0.893,0.905,1.026,1.087,0.974,1.13,0.912,0.931,0.997,0.782,1.017,0.942,0.938,0.979,0.972,1.045,0.903,1.095,0.958,0.893,0.864,1.112,0.961,0.744,1.194,0.874,2.233,1.173,1.054,0.782,1.023,0.96,0.979,0.971,0.932,0.91,0.997,0.855,0.918,0.924,0.827,1.009,0.93,0.906,0.904,0.999,1.061,1.005,1.104 +NM_024090,0.54,1.186,1.494,0.946,0.986,2.43,1.587,0.566,1.067,0.873,1.154,1.126,0.746,0.406,0.82,1.776,2.228,1.769,0.874,1.463,0.215,0.989,1.535,1.013,0.829,0.542,1.126,0.848,0.877,2.133,1.033,0.41,0.632,2.124,0.149,0.327,1.714,0.673,1.424,0.606,1.167,1.028,0.677,0.51,1.68,1.242,1.152,0.861,1.137,1.513,1.623,0.377,0.759,0.251 +NM_024091,0.842,0.984,0.985,0.77,0.752,1.101,0.946,0.727,1.162,0.796,1.076,0.912,0.75,0.964,0.932,1.181,0.896,0.907,1.179,1.085,1.023,0.826,1.059,0.908,0.978,1.016,0.869,0.99,0.727,1.007,1.015,1.012,2.047,1.22,0.824,1.482,0.994,0.9,1.069,1.035,0.904,0.952,1.303,1.102,0.965,1.07,0.857,0.928,1.093,1.02,1.016,1.159,0.94,1.489 +NM_024092,1.472,0.774,1.77,0.733,1.246,0.48,0.463,0.901,2.289,1.334,0.379,0.823,1.326,1.041,0.985,0.913,1.301,1.007,2.252,0.496,1.043,1.493,0.912,1.509,0.575,2.478,1.635,1.439,0.296,0.712,1.729,1.9,2.276,0.899,0.566,0.891,0.468,1.621,1.374,0.953,1.726,1.05,0.387,1.041,1.667,0.394,0.833,1.939,0.475,1.3,0.694,0.913,1.604,1.514 +NM_024093,0.75,1.118,1.109,0.805,0.698,1.149,1.011,0.569,0.935,0.913,1.301,0.958,0.704,0.62,0.714,1.146,0.845,1.03,1.205,0.989,0.7,0.688,0.935,0.935,0.801,0.799,1.0,0.868,0.579,0.962,0.773,1.306,1.514,1.093,0.836,1.131,1.149,0.751,1.385,1.245,0.83,1.041,0.867,1.655,1.188,1.022,1.198,0.87,0.943,0.838,1.007,1.012,0.944,1.948 +NM_024094,0.839,0.994,0.9,0.975,0.916,0.962,0.905,0.73,1.017,0.864,1.05,1.008,0.989,0.781,0.929,1.114,0.895,1.011,1.205,0.807,0.75,0.979,1.454,1.101,0.85,0.9,1.325,0.844,0.754,0.949,0.94,1.245,2.402,1.025,0.748,2.021,0.975,0.952,1.244,1.735,0.981,0.802,0.816,2.086,1.058,1.262,1.025,0.994,1.261,0.889,1.001,1.013,1.121,2.069 +NM_024095,0.885,0.794,1.298,0.985,0.773,1.293,0.718,0.596,1.087,0.747,1.287,0.951,0.925,0.887,1.045,1.412,0.891,1.073,1.542,0.763,0.616,1.098,0.953,1.07,0.999,1.09,1.156,0.755,0.709,1.21,0.932,0.954,0.947,1.265,0.413,0.726,1.393,1.016,1.279,0.734,1.025,1.219,0.542,1.01,0.921,0.895,0.995,1.099,0.815,1.058,1.097,0.762,0.937,0.991 +NM_024096,0.643,1.306,0.69,0.97,0.551,1.192,0.667,0.469,0.675,0.837,1.788,0.788,0.694,0.437,0.888,2.62,0.52,0.866,0.895,1.051,0.466,0.545,1.729,0.848,0.657,0.738,0.792,0.48,0.52,1.118,0.617,1.512,3.579,1.654,0.19,1.265,1.553,0.561,1.991,1.265,0.806,1.11,0.862,1.991,0.77,1.172,1.034,0.591,1.385,0.674,1.232,0.898,0.813,2.123 +NM_024097,0.756,1.341,1.183,0.759,1.06,0.884,0.702,0.624,1.005,1.046,1.159,0.998,0.768,0.625,0.802,1.119,0.878,0.939,1.108,1.149,0.591,0.775,1.128,1.184,0.672,0.895,1.121,1.028,0.509,1.077,0.811,1.572,1.367,1.162,0.43,1.014,1.135,0.879,1.157,0.714,1.065,1.075,0.785,1.633,0.959,0.996,1.1,0.881,0.721,0.734,0.959,0.885,1.012,1.21 +NM_024098,0.952,0.882,1.049,0.992,0.852,0.864,0.757,0.811,1.0,1.289,0.792,0.96,0.897,0.955,0.767,0.901,1.08,0.999,1.17,0.794,1.086,0.891,0.993,1.034,0.888,1.27,0.949,0.964,0.707,0.914,0.902,1.333,1.688,0.997,0.653,1.023,0.888,1.016,1.591,1.079,1.135,0.91,1.018,2.047,1.228,0.91,1.004,0.916,1.091,1.118,1.009,1.001,1.068,1.397 +NM_024100,0.595,1.381,1.286,0.593,1.17,0.928,0.565,0.384,1.259,1.627,0.951,1.283,0.538,0.541,0.644,1.06,0.923,1.081,1.644,0.946,0.384,0.938,1.878,1.421,0.452,0.958,1.563,1.116,0.502,1.087,0.808,1.35,2.015,0.871,0.162,1.754,0.943,0.994,1.398,2.231,1.284,1.038,0.64,1.951,1.735,0.969,1.415,0.87,0.909,0.968,1.391,1.169,0.954,1.371 +NM_024101,0.116,2.222,0.129,1.309,0.106,2.391,1.62,0.124,0.136,0.113,2.593,0.135,0.129,0.114,0.639,1.95,0.227,1.409,0.156,2.935,0.133,0.141,2.415,0.123,1.279,0.14,0.127,0.157,0.958,2.093,0.152,1.285,0.744,3.405,0.123,1.469,1.482,0.127,2.397,0.332,0.152,2.424,1.267,1.758,0.158,1.72,0.356,0.124,1.12,0.144,2.161,0.412,0.165,0.315 +NM_024102,0.682,1.441,1.037,0.855,0.682,0.998,0.802,0.399,0.829,1.152,0.945,0.854,0.641,0.475,0.685,1.104,0.864,0.927,0.762,1.265,0.53,0.67,1.333,0.924,0.771,0.724,0.986,0.668,0.533,1.132,0.702,1.055,1.826,1.234,0.332,0.978,1.272,0.642,1.793,1.137,0.863,1.26,0.75,1.372,1.182,0.928,1.065,0.681,1.086,1.114,1.083,1.145,1.26,2.394 +NM_024105,0.799,1.063,0.854,1.092,0.752,1.067,0.753,0.91,0.958,0.847,0.861,0.807,0.969,0.929,1.065,1.327,1.007,1.044,0.979,1.067,1.005,1.243,1.148,1.023,0.988,0.998,1.047,0.86,0.806,0.914,1.052,1.002,1.224,1.023,0.796,0.944,0.875,0.917,1.529,0.807,0.909,1.086,0.716,1.088,1.062,0.927,0.947,1.005,1.06,1.155,0.926,0.937,0.948,0.887 +NM_024106,2.739,0.759,2.202,0.954,3.717,0.841,0.63,3.744,4.142,1.506,0.799,1.795,3.312,1.752,2.542,1.3,2.429,1.895,3.16,0.798,1.333,3.21,0.868,2.991,0.676,2.766,1.718,2.324,0.612,0.887,4.223,0.91,1.726,0.872,7.227,0.711,0.838,3.717,1.066,0.826,2.999,0.783,0.623,0.771,2.515,0.724,1.708,4.748,0.865,2.445,1.139,0.797,1.687,1.095 +NM_024107,0.619,1.482,1.261,0.674,0.94,1.072,0.717,0.606,1.153,0.892,0.851,0.777,0.639,0.798,0.77,0.838,0.952,1.257,0.917,1.236,0.444,0.844,1.159,0.805,0.563,0.876,1.359,0.926,0.509,1.628,0.937,2.539,1.44,1.287,0.88,0.777,0.957,0.892,1.213,1.174,1.093,1.231,0.96,1.765,0.742,0.919,1.233,1.006,1.005,0.724,1.076,1.14,0.898,1.393 +NM_024108,0.827,2.796,0.896,0.912,0.793,1.387,0.756,0.654,0.876,0.847,1.079,1.037,0.85,0.67,0.971,1.221,0.713,0.941,1.111,1.317,0.572,0.9,1.132,0.99,1.2,0.981,0.884,1.036,0.796,1.778,0.846,1.87,1.941,1.819,0.463,0.984,0.925,0.943,1.815,0.989,0.862,1.193,0.873,1.442,0.813,1.09,1.051,0.931,0.622,0.694,0.937,0.78,0.823,1.241 +NM_024109,0.992,0.789,0.964,1.123,0.862,0.913,0.637,0.765,1.075,0.957,0.933,0.989,0.89,0.883,1.096,1.25,0.982,0.889,1.424,0.767,0.87,0.969,0.905,1.245,0.798,1.179,1.329,0.9,0.588,1.01,0.984,1.625,1.723,1.237,0.551,0.88,0.989,0.724,1.249,0.911,1.192,1.035,0.758,1.647,1.075,1.01,1.072,0.999,0.828,1.031,0.878,1.091,1.214,1.439 +NM_024110,1.271,0.909,1.255,1.006,1.115,0.854,0.835,0.944,1.287,1.204,0.754,0.838,1.151,1.033,1.28,0.801,1.303,1.01,1.479,0.837,1.005,1.295,0.826,1.296,0.837,1.354,1.14,1.027,0.616,0.871,1.072,1.108,1.022,0.949,1.213,0.988,0.785,1.099,1.003,0.882,1.251,0.895,0.834,0.908,1.36,0.918,0.994,1.133,1.03,1.2,0.832,1.176,1.266,0.951 +NM_024111,3.088,0.521,3.248,0.962,6.861,0.786,0.523,4.596,3.31,0.68,0.915,2.433,4.218,1.135,1.482,1.24,7.372,1.796,4.2,0.389,1.64,0.863,0.621,0.726,0.455,2.179,3.312,2.096,0.406,0.373,5.689,0.7,1.376,0.389,5.408,1.1,0.433,4.391,1.002,0.73,3.925,0.532,0.506,0.952,2.625,0.996,2.587,2.652,0.998,2.01,0.525,1.245,1.97,1.298 +NM_024112,1.18,0.918,1.117,1.041,1.044,1.1,0.544,1.27,0.899,0.925,0.969,1.115,1.266,0.834,0.912,1.358,1.203,1.013,1.759,0.694,0.951,0.971,0.868,1.036,0.762,1.411,1.082,0.746,0.549,0.882,0.916,1.339,5.262,1.316,1.713,1.095,0.755,1.239,1.618,0.98,0.903,0.926,0.583,2.207,1.067,0.723,0.877,1.685,0.697,1.227,0.857,0.741,0.949,0.945 +NM_024113,0.756,1.149,0.745,1.116,0.626,1.584,0.672,0.618,0.65,0.688,1.361,0.721,0.636,0.707,0.874,1.827,0.707,1.107,0.858,1.054,0.738,0.773,1.296,0.729,1.047,0.848,0.796,0.588,0.892,1.625,0.695,1.04,1.47,1.7,0.448,1.064,1.29,0.86,1.849,1.041,0.699,1.254,0.702,1.675,0.73,1.009,0.951,0.696,0.743,0.676,1.111,0.68,0.757,0.855 +NM_024114,1.074,1.125,0.877,1.053,0.939,0.994,0.963,0.914,1.015,1.157,1.021,0.979,1.014,0.9,0.883,0.923,1.115,0.963,0.926,0.929,1.131,0.844,0.966,1.036,0.93,1.223,0.902,1.092,0.803,1.034,1.033,0.925,0.989,0.938,1.091,1.228,1.033,1.097,0.901,1.007,1.026,1.042,0.786,1.165,0.927,0.948,1.014,0.888,1.008,0.963,1.189,0.862,1.006,0.774 +NM_024116,1.055,1.107,1.16,0.914,0.848,1.229,0.755,0.952,1.178,0.911,1.141,0.936,0.961,0.95,0.937,1.241,1.019,1.0,1.2,0.93,0.937,0.909,0.966,1.202,0.936,1.02,1.313,0.938,0.608,1.021,1.001,1.262,1.438,1.052,0.805,1.131,1.115,0.934,0.977,1.22,0.885,1.007,0.75,0.889,0.873,1.0,0.78,0.872,1.005,0.871,1.031,0.919,0.892,1.298 +NM_024117,0.878,1.307,1.153,0.641,1.118,1.181,0.499,0.53,1.18,1.119,0.917,1.123,0.841,0.611,0.931,1.187,1.122,0.951,1.276,0.882,0.497,0.939,0.991,1.233,0.704,0.96,1.175,0.932,0.606,0.885,0.875,2.044,1.919,1.115,0.358,0.684,0.868,1.018,1.831,0.918,1.226,0.927,0.712,1.19,1.251,0.915,1.21,1.159,0.921,1.039,0.931,0.911,0.875,1.185 +NM_024119,0.726,1.489,1.425,0.77,0.659,1.351,0.994,0.555,0.658,0.712,1.055,0.615,0.605,0.614,1.338,1.036,1.374,0.814,0.785,1.075,0.663,0.66,1.298,0.693,0.939,0.614,0.972,0.625,0.536,1.111,0.612,1.394,1.545,1.647,0.452,0.99,1.424,0.529,1.403,0.793,0.835,1.248,0.863,2.146,0.808,1.107,0.752,0.52,0.629,0.702,1.221,0.908,1.295,2.878 +NM_024120,0.962,0.943,1.089,0.996,1.211,0.915,0.882,1.089,0.936,1.076,0.96,1.049,1.062,0.928,0.904,1.014,1.072,0.948,0.956,1.198,0.875,1.109,1.052,0.978,0.912,1.062,1.137,1.087,1.059,1.16,0.927,1.086,1.039,0.967,1.076,0.968,0.877,1.05,1.263,0.964,1.011,1.121,1.066,0.939,1.042,0.967,1.135,1.015,0.895,1.013,0.853,0.987,0.917,0.979 +NM_024123,0.918,0.984,0.991,1.087,1.036,0.968,0.931,1.01,0.925,1.08,1.048,1.086,1.0,0.92,0.92,1.036,1.018,0.91,0.925,1.262,1.085,0.905,1.076,1.047,0.915,0.986,0.988,0.992,1.004,0.936,1.062,0.937,0.91,0.964,1.14,0.945,0.995,0.922,1.032,1.026,1.012,1.017,1.038,0.986,0.984,0.808,0.913,0.947,0.895,1.19,0.908,1.046,1.004,1.057 +NM_024164,0.871,1.435,0.799,1.101,0.786,0.92,0.908,0.868,0.897,0.948,1.313,1.111,0.996,0.787,0.997,1.27,0.993,0.961,0.95,1.086,1.027,0.887,1.318,0.88,1.397,0.691,1.014,0.849,0.87,1.238,0.921,1.21,1.356,2.539,0.933,0.883,1.033,0.815,2.24,0.817,0.849,1.363,0.923,1.001,1.015,1.252,0.772,1.055,0.952,0.858,1.109,1.194,1.216,1.309 +NM_024165,0.966,1.008,0.969,0.898,0.962,1.013,0.978,0.877,1.28,0.904,0.985,0.948,1.007,0.767,1.042,0.939,1.032,1.073,1.142,0.886,1.056,1.066,1.176,0.977,0.854,0.955,1.014,1.165,0.913,1.027,0.876,1.072,1.02,1.038,1.031,1.004,1.032,1.012,1.162,1.034,0.886,1.068,0.789,0.91,0.956,0.98,1.023,1.129,0.975,0.942,0.899,0.92,1.017,1.12 +NM_024293,0.776,1.168,0.879,0.644,0.801,1.168,0.755,0.632,0.76,0.717,1.214,0.791,0.814,0.808,0.721,1.037,0.877,1.079,1.033,0.968,0.717,1.201,1.048,1.009,0.987,1.088,0.959,0.716,0.77,1.314,0.827,1.796,1.16,1.445,0.605,1.027,1.0,1.095,1.168,1.26,0.817,1.287,0.603,2.265,0.695,0.768,0.918,1.14,0.729,0.891,0.886,0.868,0.785,2.388 +NM_024294,1.001,0.992,0.904,0.927,0.955,1.268,0.974,0.771,1.402,1.042,1.007,0.961,1.093,0.857,0.85,1.057,0.995,0.837,0.839,1.036,1.047,1.039,0.912,0.946,1.034,1.117,1.1,1.306,0.947,0.971,1.322,1.018,1.48,0.779,1.772,1.19,0.78,0.999,1.146,0.722,1.01,0.967,0.895,1.257,0.909,1.068,1.376,0.97,1.148,1.164,0.951,1.033,1.116,1.221 +NM_024295,0.707,0.83,1.165,0.923,0.857,0.892,0.879,0.605,0.974,1.126,0.908,0.856,0.768,0.674,0.827,1.406,1.006,1.207,1.504,1.031,0.865,0.733,1.093,0.917,0.711,0.933,1.093,0.758,0.602,0.978,0.74,1.386,1.449,1.177,0.559,1.066,0.938,0.795,1.67,1.445,0.914,1.008,0.753,1.38,1.186,1.272,1.14,0.84,1.349,1.156,1.093,0.937,1.203,1.147 +NM_024296,0.902,1.076,0.914,0.921,0.947,0.969,1.072,0.931,1.249,1.026,1.02,0.959,0.969,0.909,1.147,1.397,0.796,1.035,0.999,0.87,0.822,0.781,1.19,0.868,0.868,0.7,1.057,0.933,0.954,1.629,0.874,2.466,1.313,1.153,0.814,1.037,0.963,0.861,1.461,1.494,1.014,1.134,0.801,1.225,0.935,1.151,1.07,0.896,0.804,0.974,0.896,1.302,0.992,1.359 +NM_024297,0.659,0.732,1.102,0.62,1.002,1.372,0.746,0.998,1.262,1.385,1.119,0.939,0.767,0.749,0.949,1.343,0.995,0.911,1.195,0.851,0.681,1.283,1.009,0.965,0.369,0.935,1.059,1.177,0.473,1.267,1.243,1.063,1.075,0.935,1.336,0.645,1.045,1.344,0.871,0.951,1.263,1.05,0.596,0.697,0.945,1.091,1.412,1.094,1.095,0.821,0.902,0.703,1.248,1.184 +NM_024298,0.817,0.84,0.727,0.95,0.69,1.503,1.115,0.526,0.763,0.705,2.013,0.659,0.586,0.6,1.141,1.835,0.701,0.755,0.887,1.058,1.105,0.86,1.322,0.937,1.079,0.956,0.957,0.596,0.997,1.283,0.734,1.071,1.994,1.01,0.559,1.001,1.136,0.994,1.775,1.808,0.831,1.161,0.959,2.452,0.78,1.326,1.358,0.882,1.018,0.736,1.205,1.002,0.779,1.093 +NM_024299,0.893,0.919,1.377,0.567,1.647,1.223,0.536,1.462,1.683,1.09,0.931,1.371,0.899,0.916,1.089,1.387,1.307,0.973,1.437,1.136,0.906,1.399,1.142,1.475,0.459,1.205,0.891,1.826,0.5,1.411,1.523,0.611,1.427,1.369,2.037,1.029,0.654,1.664,0.894,0.774,1.342,0.756,0.483,0.916,1.068,0.869,1.146,1.403,0.663,0.782,0.929,0.826,0.917,0.649 +NM_024300,0.637,1.285,0.917,0.907,0.849,1.059,0.6,0.524,0.928,0.743,1.16,0.672,0.638,0.639,0.789,1.148,0.712,0.88,0.703,1.287,0.54,0.55,1.262,0.575,0.927,0.642,0.88,0.681,0.489,1.583,0.63,1.714,1.507,1.718,0.447,2.403,1.006,0.755,1.124,1.387,0.805,1.136,0.651,1.86,0.661,1.436,0.976,0.624,1.065,0.571,0.959,0.798,0.893,1.307 +NM_024302,0.594,0.776,0.735,1.167,0.705,3.073,1.11,0.429,0.671,0.736,4.083,0.588,0.515,0.435,1.29,3.814,0.638,2.005,0.685,4.47,0.446,0.494,3.488,0.973,0.612,0.755,1.076,0.866,0.801,1.641,0.695,1.169,0.414,3.212,0.287,1.537,1.918,0.797,2.268,0.294,0.859,2.191,0.816,2.112,0.736,3.188,1.244,0.51,1.313,0.446,2.38,1.106,0.364,1.64 +NM_024303,0.919,0.947,1.107,0.839,0.972,1.083,0.695,0.98,0.986,0.809,0.989,1.0,0.939,0.909,1.304,1.206,0.971,0.961,1.173,0.959,0.94,1.008,1.279,1.21,0.923,0.951,0.981,0.835,0.858,0.927,0.962,0.928,1.403,0.913,0.702,1.093,1.098,1.038,1.073,1.037,0.941,1.129,1.213,1.018,1.044,1.112,1.1,0.882,1.186,0.903,1.069,0.947,0.889,1.551 +NM_024306,0.236,1.598,0.178,1.482,0.183,2.313,1.898,0.147,0.336,0.246,1.558,0.149,0.256,0.247,0.836,1.181,0.133,1.555,0.196,0.91,0.14,0.291,1.01,0.212,1.752,0.162,0.279,0.244,1.461,2.387,0.238,0.963,1.206,3.385,0.186,1.203,1.583,0.177,4.571,0.211,0.326,1.457,1.152,1.433,0.199,0.849,0.883,0.251,0.943,0.128,1.387,0.677,0.129,0.67 +NM_024307,0.745,0.288,0.819,1.001,1.601,1.315,0.863,0.975,2.338,1.275,1.238,0.914,0.64,0.826,1.316,3.211,0.746,1.606,1.695,1.137,0.378,1.287,1.252,1.84,0.311,1.309,0.769,1.999,0.445,1.554,1.525,0.283,0.656,1.084,0.908,1.717,1.612,0.904,1.079,0.131,1.634,1.076,0.678,0.25,1.54,1.377,1.581,1.406,1.75,1.248,1.331,0.64,1.013,0.278 +NM_024308,0.908,1.161,0.859,1.253,0.876,2.315,0.746,0.905,1.158,0.915,2.769,1.001,0.965,1.049,2.67,8.441,0.847,0.896,0.999,1.775,0.658,1.04,1.883,0.924,0.817,1.275,0.845,0.802,0.936,1.56,1.043,0.773,2.327,1.373,1.044,1.047,4.374,0.989,1.756,0.659,0.991,3.113,3.214,1.161,0.905,2.821,1.387,1.072,2.587,0.936,1.303,0.721,0.87,0.946 +NM_024309,0.836,1.079,0.87,1.071,0.806,1.062,0.974,0.774,0.832,0.775,1.231,0.845,0.912,0.849,1.018,1.28,1.136,0.88,1.047,0.945,0.875,0.79,1.071,0.909,0.951,0.932,1.048,0.791,0.82,1.047,0.89,1.118,1.238,1.283,0.759,1.109,0.991,0.876,1.398,1.16,0.993,1.114,0.895,1.332,0.854,0.982,1.001,0.921,1.009,0.936,0.966,0.832,1.101,1.024 +NM_024310,1.046,0.929,1.249,0.945,0.979,1.003,0.913,1.409,1.092,0.906,0.728,0.782,1.309,1.254,1.046,1.004,1.444,1.191,1.317,0.828,1.089,1.491,0.971,1.112,0.917,1.144,1.111,0.987,1.197,0.91,1.451,1.273,1.192,0.944,1.838,0.93,0.856,1.238,0.965,0.93,1.373,1.07,0.855,0.928,1.194,0.902,1.03,1.387,0.772,1.26,0.837,0.944,1.051,1.096 +NM_024313,0.805,0.722,1.104,0.948,1.016,0.976,0.716,0.701,1.168,1.223,0.812,0.887,0.956,0.791,0.921,1.384,1.19,0.824,1.303,0.796,0.986,1.016,1.001,1.129,0.635,1.109,0.931,0.9,0.56,0.868,1.138,0.923,1.533,0.874,0.665,0.992,0.84,1.064,1.272,0.864,1.179,0.791,0.928,1.101,1.195,0.785,0.959,1.238,0.93,0.921,0.947,0.881,1.19,1.241 +NM_024314,1.042,0.971,0.97,0.966,0.983,1.059,0.928,1.122,1.248,1.044,1.007,1.051,1.159,0.976,0.845,1.083,0.979,1.178,1.033,0.963,0.892,0.946,1.1,0.915,1.018,1.027,0.942,0.937,0.834,1.003,1.157,1.336,0.91,0.898,1.05,1.036,1.21,0.941,0.947,0.914,1.082,1.098,0.946,1.163,1.165,1.004,0.976,1.012,0.973,0.962,1.107,0.996,0.969,0.996 +NM_024315,0.639,1.3,0.912,0.952,0.717,1.284,0.989,0.724,0.87,0.738,1.365,0.763,0.782,0.685,0.906,1.661,0.702,1.074,1.024,1.059,0.756,0.85,1.778,0.843,1.047,0.723,1.054,0.762,0.667,1.779,0.82,1.437,2.146,1.765,0.503,0.756,1.415,0.769,1.171,0.846,0.931,1.405,0.772,1.865,0.686,0.938,0.953,0.623,0.717,0.731,1.012,1.005,0.904,1.617 +NM_024316,0.926,0.981,0.97,0.806,0.79,1.104,0.884,0.783,1.023,0.762,0.914,0.843,0.849,0.875,0.804,1.028,0.923,0.855,0.768,1.218,0.867,0.882,1.215,0.901,0.99,0.796,0.927,0.804,0.7,1.098,0.898,1.426,1.514,1.509,0.697,1.169,0.88,0.892,1.405,1.086,0.871,1.186,1.113,1.174,0.799,0.922,1.05,0.865,0.999,0.891,1.012,0.905,0.927,1.334 +NM_024317,1.19,0.984,1.049,0.856,1.109,0.926,0.917,0.961,1.016,1.102,1.017,1.297,0.969,1.175,1.182,0.985,1.034,1.11,0.967,1.111,1.036,0.95,1.052,0.947,0.997,1.028,1.006,0.998,1.086,0.883,1.105,1.112,0.981,0.965,1.12,1.077,1.087,0.952,0.93,0.89,0.952,1.066,1.031,0.869,0.913,1.021,1.156,1.032,1.141,1.047,0.955,0.834,0.989,1.094 +NM_024318,1.14,1.134,0.98,0.953,0.978,1.06,0.848,0.95,0.987,0.873,0.935,0.972,1.045,0.971,0.959,1.006,0.919,1.079,0.876,1.146,1.106,0.962,0.969,0.939,1.086,0.978,1.021,0.859,0.916,0.996,1.152,1.178,0.911,1.014,1.039,1.058,1.016,1.18,0.973,1.037,0.929,0.939,0.776,1.019,1.099,0.909,1.036,1.108,0.93,1.165,0.974,1.028,1.028,1.018 +NM_024319,0.843,1.028,1.016,0.789,0.853,1.004,0.817,0.773,1.237,0.943,0.886,0.96,0.892,0.888,1.061,1.165,0.861,0.876,0.957,0.941,0.824,1.235,1.021,1.203,0.828,1.113,0.965,1.138,0.732,1.026,0.885,1.56,1.732,1.208,0.655,1.106,0.935,1.109,1.212,0.955,0.863,1.061,0.717,1.776,0.855,1.032,0.936,0.983,0.856,0.756,0.928,0.773,0.758,1.834 +NM_024320,0.145,1.516,0.158,0.765,0.162,3.172,0.887,0.132,0.304,0.0897,3.482,0.137,0.202,0.193,1.848,3.321,0.117,0.838,0.222,2.096,0.109,0.146,2.619,0.265,0.75,0.212,0.193,0.221,0.431,2.476,0.192,1.319,0.971,1.414,0.133,2.171,2.929,0.201,2.422,0.747,0.245,2.506,1.064,2.798,0.162,2.722,1.221,0.19,2.733,0.124,3.032,0.972,0.131,1.613 +NM_024321,0.706,0.888,1.003,0.767,0.717,1.212,0.592,0.484,0.865,0.841,1.099,0.754,0.745,0.625,0.819,1.332,1.362,0.811,1.266,0.764,0.904,1.028,1.523,1.063,0.678,1.06,1.15,0.599,0.573,1.025,0.776,0.935,2.887,1.329,0.452,1.077,1.039,0.832,1.881,0.833,0.883,0.943,0.596,1.602,0.908,0.752,1.057,0.953,1.066,1.15,0.814,0.938,1.147,1.479 +NM_024322,0.909,0.957,0.96,0.857,0.996,1.001,0.976,0.931,1.165,0.92,0.992,1.023,1.01,1.042,0.763,0.805,0.947,0.86,0.939,0.987,0.893,0.834,1.249,0.951,0.865,0.921,1.212,0.872,0.993,0.845,1.101,0.985,1.16,1.047,0.881,1.004,0.927,1.038,1.11,0.969,1.152,1.005,1.077,1.23,1.0,0.999,1.0,1.074,1.04,0.862,1.051,1.197,0.965,1.239 +NM_024323,1.048,0.931,1.099,1.092,0.921,1.025,0.954,0.974,1.022,1.123,0.955,0.981,1.165,1.147,0.952,0.871,0.865,1.149,1.16,0.97,1.02,1.034,1.051,1.097,1.045,0.9,0.958,1.091,0.856,1.041,1.05,0.934,1.205,1.18,0.882,0.976,0.985,0.98,0.999,1.021,1.022,1.028,1.008,0.896,0.967,0.951,1.1,1.022,1.017,0.978,0.974,1.035,0.921,1.072 +NM_024324,0.427,1.241,0.595,1.156,0.464,1.712,0.856,0.281,0.627,0.464,1.203,0.481,0.393,0.34,0.819,2.051,0.629,0.687,0.788,1.027,0.479,0.561,1.447,0.701,1.953,0.549,0.968,0.412,0.48,1.304,0.518,1.146,1.216,2.177,0.147,0.852,1.503,0.454,1.968,0.413,0.703,1.335,1.011,1.507,0.617,1.198,0.692,0.362,2.096,0.592,1.69,0.517,0.717,1.889 +NM_024325,0.977,0.903,1.03,0.969,0.957,1.125,0.817,0.98,0.963,0.866,1.006,0.918,0.897,0.955,0.84,1.025,0.924,0.973,0.975,0.96,0.785,0.859,1.369,1.03,0.965,1.017,0.947,0.971,0.879,1.416,0.965,1.216,1.336,1.298,0.843,0.928,0.962,0.944,1.26,1.076,0.911,1.177,0.921,1.124,0.975,0.843,0.864,0.93,0.87,0.825,0.992,0.954,0.854,1.724 +NM_024327,0.97,0.957,0.994,0.889,0.898,0.996,0.712,0.666,0.951,0.99,0.976,0.988,0.845,0.988,0.874,1.137,0.907,0.94,1.179,1.006,0.885,0.741,1.143,0.929,0.834,1.069,1.078,0.86,0.678,0.999,0.965,0.976,1.441,1.052,0.716,1.131,0.915,0.853,1.078,1.156,0.94,0.876,0.874,1.049,1.016,0.906,1.125,0.9,1.008,0.935,1.06,1.003,0.944,1.149 +NM_024329,0.326,1.225,0.62,0.855,0.28,1.785,1.005,0.154,0.485,0.528,1.646,0.251,0.299,0.249,0.742,2.122,0.533,0.995,0.416,1.402,0.253,0.34,1.459,0.416,0.848,0.382,0.672,0.365,0.977,1.945,0.445,1.005,0.516,1.964,0.145,1.125,1.35,0.271,2.408,1.191,0.687,1.281,0.851,1.486,0.718,1.059,0.891,0.367,1.104,0.436,1.368,0.933,0.526,1.713 +NM_024330,0.39,1.438,0.942,0.682,0.707,1.572,0.783,0.361,0.685,0.78,1.236,0.587,0.476,0.474,0.683,1.042,0.57,1.137,0.508,2.65,0.39,0.648,1.167,0.443,0.627,0.583,0.864,0.515,0.838,2.464,0.456,3.11,1.02,1.774,0.24,1.748,0.916,0.769,1.544,1.724,0.714,1.719,0.847,1.438,0.672,1.503,0.987,0.525,0.558,0.582,1.737,0.951,0.551,0.982 +NM_024331,0.926,1.11,1.118,0.873,0.996,0.933,0.835,0.676,1.044,1.412,0.842,0.865,0.718,0.877,1.185,1.199,0.921,0.883,1.046,0.92,0.877,0.802,1.061,1.322,0.938,0.751,1.066,0.791,1.224,1.069,1.135,1.308,1.462,1.003,0.869,0.641,0.855,0.821,1.04,0.882,0.926,1.011,1.209,1.354,1.101,0.906,1.193,0.868,1.099,0.965,1.016,1.104,1.317,1.962 +NM_024333,0.988,1.206,1.017,1.103,0.919,0.963,1.082,1.117,0.929,1.114,1.041,0.984,1.056,1.078,0.909,1.089,1.005,1.087,0.927,0.892,0.907,1.237,0.963,0.94,0.943,1.015,0.945,0.946,1.124,0.904,1.006,1.16,0.908,0.901,0.941,1.062,1.105,0.812,1.018,1.097,0.976,1.065,0.99,0.964,0.971,0.976,0.811,0.964,1.059,0.925,1.123,1.014,1.155,1.118 +NM_024334,1.064,0.837,1.582,0.707,1.217,0.612,0.515,0.539,2.0,1.439,0.593,0.761,0.974,1.018,1.196,0.949,0.963,0.877,1.608,0.761,0.941,1.119,0.99,1.259,0.435,1.404,1.589,1.044,0.307,0.877,1.72,1.914,1.454,1.13,0.289,0.838,0.553,1.256,1.01,0.965,1.378,1.195,0.55,0.927,1.681,0.551,0.84,1.119,0.478,1.019,0.785,0.987,1.405,1.587 +NM_024335,1.2,1.045,1.176,0.962,1.005,1.018,1.073,0.968,1.005,1.063,0.966,0.725,1.136,1.003,1.095,1.104,0.942,0.932,0.986,0.991,0.97,1.2,0.976,1.077,1.046,0.857,0.756,1.016,1.157,0.918,0.943,0.868,1.075,0.898,0.996,0.985,0.936,1.023,1.191,1.18,1.324,0.936,1.242,1.103,0.913,0.849,1.072,1.07,0.905,1.091,0.961,1.017,1.218,0.862 +NM_024336,1.234,1.101,3.122,0.854,1.317,0.608,0.854,0.723,1.944,1.53,0.546,1.515,1.035,1.003,1.116,0.67,1.611,0.839,1.769,0.825,1.11,0.936,0.482,1.84,1.057,1.187,2.875,1.203,0.568,0.844,1.51,1.531,0.989,1.3,0.473,0.427,0.649,1.355,0.551,0.431,1.704,1.147,0.545,0.529,2.506,0.515,0.712,1.036,0.392,1.785,0.812,0.664,1.617,1.177 +NM_024339,0.725,0.915,1.172,0.845,0.884,0.846,0.691,0.642,1.03,1.012,0.946,1.404,0.934,0.696,0.824,1.476,0.937,0.948,1.195,0.8,0.67,0.825,1.501,1.292,0.754,0.866,1.52,0.709,0.743,0.865,0.737,1.385,3.177,1.026,0.401,1.21,0.945,0.845,1.309,1.32,0.971,0.945,0.832,1.284,1.204,0.831,1.167,0.822,1.003,0.987,1.068,1.296,1.068,1.302 +NM_024341,0.924,1.073,1.114,1.104,1.118,0.965,0.923,0.993,0.92,0.915,1.003,0.981,0.97,0.784,0.789,0.934,1.105,0.952,0.906,0.894,0.854,1.06,1.036,1.196,0.896,0.958,1.0,0.913,0.714,1.079,1.024,0.989,1.099,1.097,0.896,0.961,1.046,0.933,1.093,1.084,1.071,0.837,0.846,0.976,1.079,1.013,1.048,1.003,0.881,0.978,1.036,0.83,0.98,0.99 +NM_024342,1.019,0.91,0.985,1.07,1.135,1.041,0.906,1.024,0.978,0.931,0.91,0.949,0.915,1.233,0.878,0.985,1.072,0.884,0.818,0.921,0.996,0.97,0.984,1.085,1.015,1.012,1.058,0.861,0.906,1.032,1.019,1.183,0.937,1.101,0.844,0.886,1.041,1.01,1.061,0.889,0.992,0.936,0.879,1.149,1.049,1.059,0.911,0.92,1.024,0.998,1.04,1.064,0.934,0.883 +NM_024348,1.049,0.972,1.009,0.984,1.18,1.001,1.041,1.067,0.849,0.946,1.019,1.153,0.949,1.161,1.021,0.975,0.977,1.155,1.102,1.08,0.908,1.054,0.791,1.008,0.869,0.852,0.969,1.067,0.941,0.999,0.943,0.842,1.036,0.974,1.039,0.937,1.006,1.025,0.955,1.112,1.021,1.015,0.916,0.843,1.01,1.008,1.134,0.932,0.942,1.203,1.035,1.034,1.05,1.025 +NM_024407,0.656,1.067,1.211,0.667,1.157,1.177,0.796,0.494,1.114,1.196,1.203,1.388,0.714,0.397,0.782,1.382,1.079,1.3,1.092,1.176,0.484,0.822,1.766,1.195,0.768,0.98,1.318,1.256,0.558,1.217,0.762,0.777,1.447,1.136,0.184,1.088,1.339,1.021,0.97,0.585,1.206,0.949,1.286,0.81,1.378,1.369,1.055,0.798,1.114,0.733,1.017,0.672,0.878,0.851 +NM_024408,1.152,0.845,1.701,0.909,1.228,0.769,0.893,1.17,1.238,1.155,0.989,0.901,1.045,1.277,1.156,0.87,1.025,1.063,1.26,1.051,0.982,1.293,1.1,1.154,0.924,1.087,1.351,0.991,1.498,0.932,1.049,1.087,1.187,1.018,0.917,0.848,0.921,1.367,1.019,1.033,1.154,1.114,0.88,0.977,1.357,0.821,0.781,1.092,0.84,1.324,0.961,0.978,0.944,1.223 +NM_024409,1.093,1.158,1.121,0.999,1.124,0.935,1.023,1.215,1.187,1.113,0.959,1.14,1.086,1.122,1.108,1.021,0.872,1.118,0.963,0.916,1.027,1.062,1.071,0.917,1.078,1.159,1.165,0.901,1.061,1.013,1.119,0.938,1.115,1.101,1.062,0.884,1.2,0.959,0.92,0.783,0.903,1.0,1.661,1.005,1.046,1.091,1.19,1.153,1.016,0.903,0.907,0.95,1.017,1.048 +NM_024410,1.128,0.974,1.045,1.097,0.855,1.045,1.062,1.0,0.861,0.978,1.13,0.963,0.844,0.909,0.72,1.066,1.0,1.151,0.98,0.95,1.079,0.938,0.908,1.108,0.985,0.828,0.915,1.058,1.149,1.031,0.801,0.835,1.053,1.097,1.111,1.01,0.988,0.95,1.122,1.053,1.125,0.952,1.111,0.994,1.04,1.063,0.96,0.977,0.91,1.109,0.905,0.87,1.04,0.951 +NM_024411,0.985,0.891,0.979,0.925,0.946,0.949,0.868,0.928,0.919,0.943,1.001,1.205,1.007,0.861,1.045,0.987,0.965,0.942,0.88,0.907,1.02,1.027,1.009,1.016,1.141,1.033,1.059,1.051,0.644,1.006,1.006,1.078,0.914,0.875,1.055,1.054,1.063,1.071,1.127,1.044,0.934,1.024,0.923,0.912,1.172,1.035,0.993,0.992,0.921,1.004,0.962,1.121,1.126,0.969 +NM_024415,1.074,1.111,0.968,1.069,1.007,0.975,1.02,1.022,1.081,0.909,0.891,0.854,0.953,0.952,0.986,0.963,1.03,0.97,0.998,1.0,0.971,0.973,1.026,1.032,0.994,1.067,0.862,1.141,0.785,1.005,1.029,0.901,1.034,0.987,1.146,0.923,1.047,0.982,0.945,0.959,1.017,0.898,1.188,1.059,0.947,0.97,0.958,0.983,0.901,1.01,1.07,1.039,1.044,0.892 +NM_024417,0.999,0.633,1.97,0.716,1.685,0.6,0.403,0.742,1.999,1.804,0.817,1.737,0.979,0.882,1.1,1.503,1.408,1.147,2.717,0.624,0.735,1.033,1.325,1.487,0.322,1.611,2.265,1.327,0.316,1.011,1.051,0.746,1.372,0.657,0.186,0.909,0.64,1.493,0.622,0.339,1.97,0.95,0.628,1.182,1.591,0.686,1.487,1.034,0.57,1.421,0.747,0.848,1.916,1.001 +NM_024419,0.771,0.966,1.198,1.178,0.778,0.999,0.816,0.709,0.972,0.92,1.028,0.86,0.826,0.81,1.058,1.462,0.974,0.953,1.03,0.968,0.849,0.876,1.085,0.864,0.853,1.009,1.14,0.875,0.911,1.07,1.057,1.642,1.454,1.403,0.606,0.98,0.955,0.773,1.654,1.552,0.963,1.113,0.921,1.161,0.895,0.926,0.906,0.79,1.174,1.057,0.931,0.971,1.145,1.823 +NM_024420,0.689,1.046,1.097,0.771,1.003,1.076,0.841,0.7,1.184,1.196,1.141,0.824,0.699,0.775,0.889,1.611,0.908,1.037,1.329,0.964,0.728,0.89,1.247,1.039,0.6,0.775,1.141,0.942,0.507,1.093,0.894,0.997,4.031,1.132,0.504,0.842,1.184,0.922,1.239,0.549,0.956,1.031,0.586,1.301,1.033,0.912,1.06,0.781,1.576,0.815,1.055,1.209,0.948,1.014 +NM_024421,1.089,1.007,1.055,1.064,1.075,0.991,1.116,1.006,1.044,0.923,1.118,0.962,1.144,1.207,1.122,1.02,0.91,0.982,1.075,1.0,1.076,0.992,0.968,1.085,0.974,0.931,1.103,0.874,1.59,0.906,1.13,0.909,1.07,0.957,1.065,1.04,0.859,1.22,0.982,1.005,1.005,1.008,1.036,0.983,1.002,0.982,1.007,0.967,0.985,0.87,0.87,0.922,0.986,0.875 +NM_024422,1.513,0.244,1.583,0.541,2.487,0.65,0.291,0.779,2.213,2.364,0.944,1.64,0.583,1.087,1.214,2.118,0.723,1.247,2.282,0.681,1.006,1.179,0.646,1.842,0.307,1.518,1.02,1.754,0.31,0.707,1.615,0.153,1.24,0.648,0.258,0.407,0.919,2.175,0.982,0.218,2.009,0.533,0.726,0.524,1.737,1.488,2.029,1.1,1.022,1.941,1.17,0.81,1.704,1.018 +NM_024430,0.795,1.306,1.807,0.684,0.96,1.113,0.946,0.861,1.21,0.973,0.88,0.908,0.941,0.649,0.817,1.215,1.419,0.946,1.03,0.954,0.68,0.934,1.066,1.107,0.73,0.869,1.552,0.843,0.987,2.028,1.083,1.838,1.587,1.385,0.795,0.524,0.958,0.957,0.845,1.005,1.027,0.991,0.809,1.346,1.082,1.109,1.024,0.84,0.876,1.094,0.768,1.426,0.982,1.471 +NM_024482,0.86,0.976,1.072,0.857,0.907,0.908,0.798,0.83,1.153,1.076,0.927,0.912,0.813,0.674,0.763,1.051,0.828,0.794,1.051,0.891,1.01,0.913,1.287,1.092,0.906,0.884,1.1,1.07,0.611,0.876,0.962,1.051,1.183,1.053,0.851,1.224,1.01,0.941,1.241,1.158,1.093,0.981,0.898,1.231,1.05,0.846,0.951,0.881,1.017,0.934,1.003,0.917,1.006,1.025 +NM_024490,0.969,1.077,1.087,0.904,1.149,0.987,1.083,1.087,1.039,0.956,0.938,1.048,1.022,0.988,0.918,1.05,0.996,0.959,1.109,0.947,1.01,1.072,0.858,1.032,1.003,1.005,1.161,0.982,1.037,1.091,1.051,1.108,0.979,1.049,0.926,0.873,0.912,1.007,1.083,0.968,0.904,0.958,0.909,0.819,0.944,1.018,0.91,0.969,1.074,1.083,0.985,0.92,1.057,0.943 +NM_024491,0.897,1.358,1.315,0.947,0.844,1.261,0.896,0.945,0.977,1.015,1.349,0.851,0.922,0.803,1.058,1.391,0.876,1.039,1.051,1.076,0.729,0.876,1.427,1.035,0.88,0.811,1.003,0.972,0.819,1.143,0.83,1.951,1.664,1.067,0.71,0.866,1.34,0.986,1.092,0.759,0.983,1.325,1.154,1.59,0.875,0.976,0.748,0.765,0.858,0.956,1.027,1.048,1.196,1.907 +NM_024492,0.88,0.991,0.932,1.275,0.993,1.06,0.969,0.972,1.068,0.921,1.144,1.04,1.027,1.25,0.772,0.884,1.119,0.927,1.012,1.275,1.087,0.863,1.076,1.118,0.937,1.071,1.058,0.9,1.22,1.032,0.953,1.145,0.956,1.131,1.038,1.125,1.043,1.0,0.979,0.873,1.144,0.978,0.996,1.167,0.96,0.949,0.956,1.131,1.146,0.891,0.916,0.989,1.108,1.0 +NM_024493,0.763,0.93,0.956,1.041,0.885,1.085,1.075,0.672,1.184,0.865,1.122,1.119,0.903,0.926,1.242,1.163,1.003,0.91,1.06,0.881,0.827,0.856,1.053,0.959,0.872,0.876,1.194,0.917,0.763,1.096,1.036,1.085,1.44,1.231,0.952,0.801,1.016,1.008,0.959,0.937,0.983,1.062,0.861,0.857,0.886,1.052,1.006,0.88,1.018,0.912,1.047,0.855,0.986,1.278 +NM_024494,2.2159999999999997,1.8479999999999999,2.391,2.042,1.951,1.724,1.8250000000000002,2.204,2.614,2.199,1.873,1.948,2.108,2.718,2.234,1.9889999999999999,1.996,1.9899999999999998,2.482,1.771,1.944,2.7,1.859,2.198,1.95,2.0949999999999998,2.149,2.536,2.105,1.892,2.496,3.153,1.92,2.205,1.952,1.755,1.857,2.442,1.9580000000000002,1.916,2.254,1.899,2.112,1.774,2.041,1.783,1.866,2.168,1.865,1.924,2.08,1.9100000000000001,2.116,2.317 +NM_024496,0.631,0.909,1.131,0.523,0.948,1.38,0.506,0.644,1.078,0.838,0.843,0.84,0.643,0.517,0.854,1.061,0.7,1.566,1.047,1.11,0.406,0.852,1.215,1.247,1.071,0.664,1.182,0.886,0.818,1.851,0.926,1.983,0.931,1.63,0.367,0.539,1.158,0.925,1.25,2.753,1.129,1.546,0.569,1.144,1.061,0.653,1.076,0.514,0.705,0.952,0.985,1.466,0.938,1.113 +NM_024501,0.798,1.117,1.117,0.874,1.041,0.956,1.241,0.919,1.133,0.821,0.928,0.915,0.85,1.18,0.821,1.084,0.88,0.986,1.18,1.046,1.03,0.981,0.996,1.01,0.943,1.029,0.923,0.835,0.892,0.976,1.168,1.062,1.328,1.1,1.268,1.011,1.018,0.944,0.989,0.837,1.103,0.937,0.889,1.018,0.989,1.13,0.89,0.97,1.214,1.032,0.782,0.871,1.179,1.476 +NM_024503,0.925,0.944,1.099,0.817,1.03,0.954,1.112,0.944,1.013,1.073,0.943,1.085,1.001,0.947,1.03,0.878,0.892,1.128,0.945,1.022,0.917,0.909,1.065,0.994,1.058,0.917,0.953,0.856,1.347,1.049,1.018,1.168,1.004,0.994,1.009,0.913,0.965,1.03,0.915,1.074,1.062,1.046,0.899,1.118,1.085,0.955,0.93,0.875,0.953,1.105,0.913,0.992,0.95,1.26 +NM_024505,0.901,1.001,1.01,0.922,0.989,0.893,1.028,1.346,1.244,0.913,0.811,1.0,0.877,0.958,0.896,1.006,0.982,1.211,1.075,0.938,1.097,1.231,0.946,0.932,0.964,1.164,0.972,1.298,1.115,0.9,1.024,0.956,0.793,0.901,1.041,0.896,1.029,1.033,1.303,0.969,1.047,1.068,1.137,1.008,0.805,1.004,0.987,1.017,0.906,1.132,0.965,0.934,0.966,1.042 +NM_024506,0.944,1.026,0.868,1.024,1.086,0.952,0.842,0.874,0.936,1.068,1.18,0.945,0.925,0.798,0.798,1.024,0.943,0.915,0.91,0.855,0.968,0.794,0.973,0.911,0.995,0.96,1.093,1.187,0.736,1.179,0.957,2.21,1.242,0.972,0.878,0.88,1.103,1.074,1.237,1.723,0.922,0.974,0.966,1.383,0.948,1.023,1.228,0.931,0.984,0.905,1.118,1.047,0.915,1.109 +NM_024507,1.001,1.043,0.827,1.026,0.997,0.984,1.127,0.736,1.105,1.053,0.99,1.036,0.981,1.255,1.226,1.063,1.055,0.957,0.972,0.864,1.347,0.921,1.028,0.952,0.898,1.097,1.156,1.025,0.797,0.917,0.899,0.939,1.086,0.933,0.944,0.95,0.997,1.132,1.112,2.312,0.983,1.044,0.909,1.074,0.91,0.936,1.047,0.966,0.948,0.965,0.952,0.876,1.089,0.883 +NM_024508,1.79,0.718,1.271,1.036,2.572,0.664,0.61,3.424,4.35,1.956,0.75,2.895,1.871,1.624,3.19,1.298,1.177,1.157,2.362,0.742,1.479,2.499,0.77,1.36,0.817,1.714,1.104,3.701,0.612,0.847,2.984,0.766,1.165,0.848,2.304,0.805,0.797,6.002,0.813,0.829,1.847,0.812,0.734,0.8,1.494,0.791,1.079,3.168,0.859,1.248,1.059,0.795,2.007,0.906 +NM_024509,0.611,1.449,1.083,0.614,0.732,1.432,0.74,0.398,0.889,0.961,1.022,0.705,0.523,0.578,0.867,1.429,0.863,1.018,0.982,0.927,0.468,0.688,1.918,1.021,0.766,0.732,1.338,0.69,0.734,1.389,0.725,1.787,0.77,1.388,0.25,0.628,1.197,0.757,1.613,1.059,0.962,1.389,0.873,1.047,1.004,0.922,0.769,0.75,0.829,0.874,1.185,0.814,0.81,1.093 +NM_024510,0.9,0.92,1.153,1.354,0.786,1.429,0.818,0.651,0.776,0.847,1.052,0.809,0.994,0.794,0.776,0.778,1.407,0.964,1.097,0.808,0.931,0.97,0.845,0.961,1.049,0.921,1.26,0.582,1.197,1.179,0.686,1.965,1.042,1.363,0.582,0.729,0.95,0.871,1.827,1.244,0.836,1.019,0.803,1.99,0.897,0.836,0.946,0.991,0.857,1.283,0.836,0.858,0.938,1.373 +NM_024511,1.015,0.954,1.234,0.99,1.11,1.029,1.122,0.945,1.063,1.149,0.887,0.843,0.875,0.886,1.099,1.03,0.953,0.873,1.143,0.958,0.962,1.082,1.046,1.061,1.043,0.852,1.191,1.016,0.934,0.972,1.019,0.901,0.957,0.994,0.972,0.935,1.033,0.988,1.056,1.073,1.06,1.005,1.091,0.973,0.956,1.12,0.924,0.971,1.085,1.02,1.062,1.002,0.996,1.022 +NM_024512,1.064,1.061,0.892,1.063,1.012,0.95,0.838,1.065,0.942,0.969,1.119,0.908,1.116,1.117,1.078,1.051,0.909,1.026,0.997,1.083,1.077,1.085,1.004,1.088,0.906,1.036,0.961,1.054,0.843,1.076,0.998,1.0,0.915,0.948,0.922,1.0,0.864,0.927,1.044,1.042,0.981,0.918,0.97,1.185,0.954,1.127,1.083,1.059,0.943,1.055,0.901,1.037,1.123,0.925 +NM_024513,0.707,1.58,1.353,0.619,1.08,1.219,0.748,0.585,1.034,0.867,1.215,0.648,0.545,0.721,1.151,1.113,0.902,0.799,0.993,1.49,0.643,0.683,1.264,0.886,0.726,0.767,1.063,0.966,0.514,1.686,1.065,1.42,1.164,1.404,0.464,0.494,0.962,0.92,1.361,0.553,1.154,1.371,0.61,0.637,0.987,1.032,0.745,0.684,0.805,0.794,1.232,0.656,0.845,1.418 +NM_024514,1.069,1.059,0.976,1.029,1.008,0.906,0.778,0.901,1.041,0.926,0.969,0.98,1.029,0.998,0.94,1.06,1.006,0.944,1.035,1.084,1.009,0.923,0.939,0.902,0.87,0.96,1.057,1.071,1.05,1.087,1.021,1.073,0.936,0.973,0.843,0.934,1.0,1.056,0.966,1.066,1.033,0.906,0.912,0.836,0.971,0.988,1.103,1.04,0.932,1.061,1.0,0.993,1.035,0.983 +NM_024516,0.78,0.888,1.106,0.665,0.731,0.824,0.591,0.683,0.906,1.098,0.751,1.106,0.985,0.602,1.022,1.702,0.846,0.958,1.589,0.761,0.527,0.826,1.436,1.384,0.601,0.775,1.259,0.682,0.328,0.83,0.875,1.466,5.434,1.065,0.267,0.901,0.882,1.0,1.416,1.001,1.069,1.123,0.529,1.844,1.119,0.836,1.119,1.0,0.76,1.072,0.99,0.851,0.752,2.094 +NM_024517,0.801,1.096,1.303,0.79,0.871,1.038,0.627,0.591,1.187,0.885,0.957,0.78,0.779,0.938,0.845,0.957,1.026,0.794,1.108,0.833,0.863,0.95,1.042,1.075,0.833,1.007,1.309,0.856,0.707,1.065,0.904,1.985,1.139,1.218,0.582,0.729,0.922,1.018,1.14,0.996,1.116,1.18,0.756,1.049,0.894,0.965,0.842,0.887,0.806,0.89,0.884,0.819,0.88,1.571 +NM_024518,0.85,0.989,1.013,0.928,1.181,0.962,1.061,1.062,1.0,1.045,1.001,1.082,0.905,1.055,1.338,0.951,1.025,0.99,0.749,1.095,0.959,0.859,1.045,0.98,1.039,1.011,1.057,0.973,1.049,1.05,1.011,1.078,1.005,1.104,0.935,0.943,0.842,0.962,0.907,0.944,0.942,0.93,1.089,1.064,0.952,0.9,0.879,0.96,0.991,0.911,1.126,0.998,0.673,0.948 +NM_024519,1.082,1.006,0.983,1.051,1.063,0.963,0.906,0.832,1.096,1.17,0.796,0.875,0.858,1.094,1.253,0.907,1.124,1.131,0.839,0.899,0.859,1.119,1.111,1.022,0.997,1.0,1.134,0.848,0.848,0.964,0.958,1.539,1.256,1.045,1.017,1.022,0.833,0.969,1.316,1.307,1.016,0.876,0.843,1.37,1.019,0.885,0.875,0.98,0.876,1.126,0.899,1.112,0.768,1.67 +NM_024520,0.503,1.065,0.945,0.707,0.781,1.343,0.659,0.676,0.992,0.887,1.164,0.762,0.656,0.601,1.099,2.453,0.841,0.906,1.252,0.965,0.479,0.9,1.499,1.036,0.533,0.588,1.121,0.676,0.459,1.092,0.908,1.167,3.302,1.346,0.315,0.84,1.548,0.735,1.555,0.835,0.939,1.059,0.951,1.42,0.841,1.294,0.999,0.629,1.7,0.671,1.151,0.793,0.726,4.82 +NM_024522,1.062,0.911,1.013,0.87,0.845,1.024,0.819,1.283,0.884,0.997,0.958,1.079,0.951,1.055,0.85,0.934,1.007,0.843,1.152,0.823,1.16,0.964,0.959,1.05,0.924,1.107,1.055,1.062,0.993,0.994,0.933,1.024,1.04,0.984,0.967,1.043,0.945,1.08,0.968,0.856,0.959,0.957,1.027,0.982,1.21,0.834,0.923,0.928,0.952,1.053,1.0,0.877,1.012,1.007 +NM_024523,0.665,1.167,1.095,0.75,0.847,1.219,0.688,0.49,0.985,0.998,1.189,0.702,0.539,0.661,0.793,1.219,0.742,0.984,0.985,1.179,0.576,0.783,1.68,0.916,0.369,0.741,1.016,0.767,0.654,1.701,0.859,1.29,1.198,1.005,0.328,0.756,1.096,0.925,1.467,0.929,0.901,1.309,0.925,1.092,0.871,1.259,0.985,0.707,1.081,0.823,1.229,0.942,0.705,1.326 +NM_024524,1.104,1.052,0.954,0.908,1.072,0.996,0.98,1.123,1.009,0.935,1.042,0.974,0.975,1.0,0.943,1.081,1.008,1.015,1.034,0.993,1.031,1.052,0.89,0.982,0.932,0.96,1.035,1.046,1.0,1.051,0.912,0.922,1.336,1.008,1.062,0.924,0.903,1.071,1.018,0.941,0.979,1.021,1.25,0.987,1.013,1.05,1.053,1.032,1.081,0.99,0.966,1.064,1.024,1.075 +NM_024525,0.609,1.201,0.823,0.888,0.728,1.042,0.74,0.616,0.85,0.93,0.916,0.798,0.67,0.607,0.921,1.445,0.78,0.908,0.791,1.231,0.626,0.837,1.325,0.97,1.061,0.738,1.116,0.747,0.762,1.01,0.752,1.489,2.457,1.121,0.596,1.672,1.095,0.738,1.698,1.226,0.867,1.023,1.13,1.261,0.988,1.246,0.818,0.676,0.987,0.824,1.244,0.99,0.737,1.319 +NM_024526,0.432,1.002,0.452,1.386,0.441,1.74,1.173,0.51,0.457,0.461,1.406,0.461,0.439,0.447,0.981,1.865,0.443,0.734,0.434,1.708,0.403,0.404,1.756,0.469,0.759,0.466,0.49,0.459,0.989,1.651,0.546,0.961,1.481,1.654,0.481,1.256,1.312,0.465,2.026,0.818,0.502,1.226,1.455,1.354,0.44,1.292,0.878,0.496,1.593,0.529,1.317,0.848,0.477,1.384 +NM_024527,0.909,1.046,1.015,1.197,0.966,1.116,1.004,1.028,1.02,1.071,0.991,0.945,1.186,0.79,0.879,1.007,1.342,1.161,1.088,0.922,0.968,1.234,1.041,0.968,0.993,1.057,1.08,0.929,0.82,1.014,0.931,1.075,0.989,0.93,0.959,0.897,0.985,0.986,1.137,0.977,0.902,1.078,0.942,1.304,0.871,1.003,1.113,1.089,0.873,1.039,1.05,1.036,1.074,0.989 +NM_024528,0.721,0.876,1.062,0.878,0.912,1.259,0.775,0.655,1.108,0.919,1.142,0.832,0.695,0.738,0.968,1.559,0.775,0.928,1.132,0.906,0.928,0.804,0.967,0.907,0.694,0.991,1.287,0.836,0.74,1.141,0.862,1.297,2.308,1.237,0.405,1.125,1.001,0.99,1.212,0.811,1.008,1.23,0.702,1.281,0.824,0.979,1.015,0.905,1.016,0.834,1.101,1.039,0.984,1.334 +NM_024529,0.751,0.932,1.294,0.698,1.008,1.249,0.932,0.815,1.338,1.112,0.858,0.774,0.822,0.895,1.09,1.724,1.038,1.04,0.951,0.97,0.625,0.95,1.053,1.391,0.678,0.665,1.334,1.078,0.51,0.972,1.358,1.108,2.675,1.115,0.714,0.912,0.98,1.23,1.494,0.94,1.078,0.916,0.878,0.97,1.1,0.938,1.031,0.963,1.237,0.925,1.113,0.746,0.805,1.52 +NM_024530,1.26,0.669,1.406,0.642,1.392,1.044,0.671,1.142,1.587,1.111,0.812,1.215,0.969,1.208,1.119,1.116,1.186,1.425,1.613,0.863,0.538,1.607,0.919,1.419,0.615,1.541,1.142,1.764,0.772,1.15,1.574,0.768,0.686,1.061,2.638,0.654,0.871,1.789,0.895,1.093,1.612,0.851,0.825,0.6,1.365,1.132,1.142,1.883,0.8,1.094,0.842,0.851,0.877,0.683 +NM_024531,0.706,1.123,0.531,0.928,0.573,1.196,0.722,0.446,0.746,0.724,1.176,0.6,0.646,0.421,0.754,2.05,0.641,0.816,0.936,0.759,0.774,0.781,1.125,0.818,0.846,0.903,0.67,0.568,0.748,1.126,0.661,1.412,2.692,1.06,0.298,1.586,1.157,0.843,2.656,2.833,0.596,1.035,0.807,2.635,0.856,1.61,0.999,0.872,1.742,0.907,1.178,1.129,0.815,1.416 +NM_024532,0.961,0.935,1.002,1.093,0.918,0.969,1.082,1.029,0.968,0.993,0.992,1.037,0.995,1.057,1.004,0.946,1.003,0.979,0.899,1.098,1.08,0.886,1.024,1.068,1.056,1.003,1.115,1.155,1.014,1.132,1.034,1.018,1.078,1.129,1.043,0.957,0.998,1.053,0.942,0.898,0.958,1.015,0.971,0.876,0.939,0.973,0.812,0.902,0.858,1.097,1.168,1.083,1.036,0.971 +NM_024533,0.857,1.055,0.899,1.112,0.938,1.134,0.962,0.986,0.847,1.024,1.091,1.053,1.115,0.97,1.077,1.066,0.91,0.967,1.037,0.89,1.055,0.925,1.065,0.962,1.045,1.006,0.963,0.922,1.156,0.955,0.961,0.925,1.03,0.977,0.974,0.907,1.067,1.053,1.044,0.902,1.033,1.04,1.231,0.927,1.061,1.049,0.942,0.953,1.057,1.091,1.019,1.137,0.864,0.935 +NM_024534,0.908,0.958,1.108,0.878,1.022,0.817,0.808,0.802,0.937,1.131,0.951,1.134,0.933,1.02,1.045,0.87,0.964,0.916,1.086,0.832,1.11,1.043,0.876,1.044,0.916,0.971,1.49,0.827,1.017,0.959,1.002,0.939,2.943,0.865,0.918,0.863,0.877,1.002,1.241,1.417,1.143,0.921,0.822,1.528,1.224,0.884,1.145,0.853,0.98,1.272,0.937,1.07,1.311,1.409 +NM_024535,0.868,0.956,0.872,0.846,0.765,1.266,0.832,0.71,0.886,0.879,1.041,0.886,1.017,0.829,1.126,1.141,0.887,1.089,0.915,0.885,0.806,0.924,1.061,1.028,1.02,0.936,0.935,0.821,1.11,1.003,0.847,1.264,1.634,1.144,0.835,0.892,1.041,0.981,1.44,1.407,0.8,1.0,1.162,1.29,0.896,0.936,0.854,1.076,0.999,0.875,0.952,0.968,0.852,1.156 +NM_024536,0.742,1.112,0.608,1.138,0.606,1.305,0.655,0.599,0.6,0.702,1.148,0.651,0.756,0.649,0.709,1.312,0.563,0.99,0.649,1.093,1.034,0.818,1.246,0.788,1.56,0.958,0.858,0.545,0.882,1.157,0.698,2.783,1.637,1.187,0.487,1.143,0.977,0.698,1.787,1.944,0.64,1.245,0.855,3.582,0.816,1.039,1.135,0.989,0.745,0.777,1.216,0.918,0.787,3.108 +NM_024537,0.661,1.231,1.107,0.724,0.94,1.144,0.65,0.471,1.261,1.113,0.875,1.233,0.684,0.529,0.809,2.109,0.615,1.014,1.391,1.349,0.533,0.985,1.583,1.174,0.55,0.693,0.942,0.937,0.359,1.75,0.928,1.672,2.325,1.353,0.168,1.329,1.203,1.044,0.791,0.768,1.192,1.163,0.719,1.259,1.142,1.109,1.189,0.738,1.453,0.528,1.358,0.717,0.769,1.587 +NM_024539,1.363,2.605,1.672,2.033,1.419,2.742,2.0140000000000002,1.213,1.409,1.534,3.1799999999999997,1.2,1.355,1.3719999999999999,2.177,4.064,1.23,2.4749999999999996,1.432,2.995,1.399,1.405,2.999,1.471,2.023,1.432,1.204,1.218,2.099,3.213,1.339,1.94,1.5950000000000002,3.415,1.26,2.621,3.471,1.44,3.8440000000000003,1.3539999999999999,1.3359999999999999,2.853,2.2039999999999997,2.691,1.262,3.612,2.024,1.298,2.377,1.304,3.03,1.655,1.279,1.675 +NM_024540,0.59,1.582,0.801,0.772,0.771,1.156,0.692,0.356,0.866,0.809,1.043,0.773,0.617,0.463,0.808,1.447,0.884,0.795,1.317,0.892,0.622,0.507,1.765,0.857,0.754,0.883,1.001,0.722,0.451,1.228,0.61,1.846,2.47,1.543,0.161,1.461,1.146,0.538,1.765,0.621,0.885,1.422,0.695,2.01,0.931,1.071,1.167,0.539,1.242,0.557,1.014,0.961,1.036,1.798 +NM_024541,0.919,0.924,1.236,0.743,1.092,1.057,0.691,0.686,1.231,1.116,0.983,0.939,0.643,0.844,1.22,1.704,0.968,0.934,2.161,0.786,0.95,1.19,1.148,1.134,0.766,1.157,1.39,0.781,0.765,1.155,1.063,0.949,1.189,1.39,0.546,0.762,0.903,1.168,1.213,0.583,1.126,0.989,0.744,0.963,1.061,0.864,0.887,0.911,0.863,0.996,1.026,0.666,1.315,1.099 +NM_024544,0.779,1.069,0.99,0.88,0.909,1.159,0.923,0.918,1.018,1.046,1.002,0.797,0.963,0.958,0.924,1.267,0.965,0.998,1.238,0.887,0.949,1.024,1.071,1.009,0.707,1.078,1.021,0.87,0.717,0.961,0.996,1.267,2.058,1.16,0.913,0.797,0.997,1.034,1.378,0.976,1.013,1.022,1.001,1.302,1.017,0.909,0.979,1.064,0.92,0.999,0.912,0.84,1.043,1.405 +NM_024545,0.647,0.841,1.32,0.701,1.023,0.966,0.606,0.69,1.093,1.027,1.033,0.808,0.524,0.862,1.004,1.196,0.777,0.872,1.145,1.156,0.59,0.968,1.386,1.083,0.602,0.854,1.499,0.911,0.528,1.147,0.986,1.511,2.414,1.157,0.862,0.779,1.041,1.017,1.068,0.986,0.925,1.057,0.597,1.299,0.848,1.034,0.837,0.881,1.04,0.853,1.1,0.803,0.93,1.634 +NM_024546,0.772,0.991,1.18,0.898,0.83,1.104,0.748,0.658,1.178,0.873,1.151,0.724,0.78,0.755,0.956,1.928,0.791,0.794,1.101,1.026,0.714,0.833,1.413,0.91,0.633,0.771,1.172,0.921,0.753,1.349,0.956,1.225,1.893,1.055,0.603,1.274,1.003,0.811,1.241,1.029,0.939,1.043,0.753,1.698,0.899,0.982,1.052,0.793,1.214,0.901,0.946,0.95,0.812,1.442 +NM_024549,0.782,1.183,0.908,0.811,0.925,1.143,1.052,0.77,0.932,1.03,1.064,0.956,0.846,0.756,0.904,0.942,0.884,0.962,0.866,1.418,0.935,0.941,1.757,0.866,0.778,0.841,0.894,0.87,0.675,1.312,0.83,2.663,1.312,1.582,0.603,0.892,1.011,0.991,0.82,0.881,0.901,1.601,0.65,1.301,0.909,1.069,0.701,0.736,0.699,0.77,1.172,1.201,0.985,1.578 +NM_024551,0.767,1.256,1.022,0.588,1.168,1.423,0.748,1.265,2.061,0.847,0.732,0.808,0.909,0.737,1.007,1.411,0.792,1.113,0.801,1.334,0.416,1.587,0.854,1.102,0.639,1.088,0.981,1.416,0.744,1.552,1.688,0.817,1.689,1.686,1.584,0.91,1.092,1.406,1.119,0.712,1.263,1.005,0.711,0.506,0.882,1.09,1.206,1.377,1.02,0.55,0.947,0.558,0.54,0.859 +NM_024553,1.099,0.937,0.973,1.004,0.995,1.113,1.216,1.137,1.098,0.819,0.976,1.095,0.964,0.927,1.108,1.05,0.874,1.002,0.947,0.964,0.934,1.08,0.973,0.924,0.986,0.892,1.112,1.01,1.808,0.912,0.893,1.05,1.048,0.995,0.935,0.926,1.127,0.921,0.942,1.082,1.098,0.947,1.196,1.13,0.923,0.961,1.051,0.991,1.0,1.051,1.068,1.055,1.044,1.013 +NM_024554,0.984,1.095,1.21,0.866,1.233,1.053,0.987,1.051,0.963,1.245,0.855,0.962,0.918,1.043,0.957,1.029,0.921,0.915,1.045,1.183,0.957,0.962,0.971,0.913,1.027,0.847,1.229,0.822,0.991,1.034,1.077,0.894,1.323,0.987,1.126,0.907,1.038,0.973,0.853,1.003,1.106,1.0,1.082,0.742,1.147,1.051,1.014,1.041,0.965,0.972,0.815,0.985,1.233,1.12 +NM_024555,0.789,1.138,0.876,0.932,0.753,1.405,0.885,0.748,0.753,0.856,1.263,0.802,0.741,0.672,1.233,2.897,0.792,0.862,0.96,1.141,0.814,0.828,1.247,0.936,0.78,0.968,1.071,0.742,0.765,1.091,0.786,1.117,1.837,1.015,0.593,1.446,1.298,0.672,2.235,1.766,0.742,1.2,1.117,1.489,0.924,1.66,0.856,0.844,0.908,0.877,1.246,0.805,0.983,1.32 +NM_024556,0.82,1.147,0.828,1.246,0.811,1.739,1.006,0.88,1.007,0.78,1.165,0.812,0.808,0.857,1.023,1.579,0.934,1.157,1.001,1.177,0.868,0.843,1.443,0.955,0.943,0.832,0.994,0.844,1.149,1.351,0.741,1.07,0.861,1.306,0.835,1.294,1.109,0.83,1.613,1.097,0.805,1.16,0.968,1.098,0.809,1.382,1.035,0.815,1.242,0.907,1.247,0.888,0.931,1.079 +NM_024557,1.102,1.048,1.049,1.082,0.97,0.92,1.061,1.142,0.91,0.914,0.913,0.999,1.039,0.948,0.971,1.079,0.954,0.941,0.841,1.028,0.941,1.194,0.962,1.087,0.924,0.916,1.17,1.016,1.098,1.005,1.318,0.944,1.031,0.955,1.166,0.819,0.826,0.993,0.956,0.965,1.026,1.081,1.03,0.834,1.007,1.134,1.005,0.927,1.024,0.964,0.996,0.925,1.017,0.895 +NM_024558,0.886,1.004,1.402,1.133,1.089,1.316,0.88,1.206,1.37,0.984,0.894,1.024,0.934,1.372,1.013,0.989,0.956,0.869,0.944,1.008,0.881,1.361,1.006,1.293,0.951,0.859,1.162,1.056,0.895,0.976,1.269,1.211,1.311,0.95,1.134,1.053,0.895,1.018,0.917,1.109,1.148,1.158,0.876,0.82,1.112,0.937,1.001,1.104,0.986,0.8,1.044,0.845,0.741,1.466 +NM_024560,1.058,1.068,1.04,1.055,0.896,1.022,0.919,0.95,1.008,1.108,1.064,0.962,1.007,0.96,0.993,1.098,0.909,1.056,0.967,0.911,0.873,0.988,1.025,0.945,1.06,1.055,1.018,1.026,0.729,1.12,0.96,1.392,0.998,1.238,0.965,0.991,0.89,0.966,0.941,0.966,1.076,0.947,0.84,0.902,0.952,0.999,1.238,1.062,0.912,1.087,0.983,0.969,0.993,0.918 +NM_024561,0.996,0.963,1.201,0.991,1.006,1.128,0.755,0.948,1.426,0.929,0.955,0.972,0.936,0.872,1.168,1.368,0.989,1.157,0.916,1.015,0.724,1.15,1.13,1.058,0.827,0.899,1.305,1.086,0.783,1.189,1.026,1.255,1.306,1.226,0.832,0.86,0.961,0.998,1.234,1.895,1.035,1.07,0.818,0.907,1.03,0.964,0.916,1.041,0.944,0.912,0.999,0.946,0.841,1.478 +NM_024565,1.004,0.911,0.968,0.863,1.028,0.955,1.269,0.93,0.933,0.838,1.164,1.036,0.982,1.15,1.043,0.988,1.005,0.877,1.033,1.175,1.081,0.902,0.921,1.11,0.957,1.038,1.259,1.081,0.827,1.028,1.013,0.991,0.972,0.929,0.931,1.026,0.934,1.08,1.122,1.073,1.143,0.924,0.828,0.804,1.083,1.037,0.948,1.003,1.025,0.938,0.904,0.984,0.981,0.998 +NM_024567,0.945,0.879,1.006,0.831,0.839,1.133,0.762,0.74,1.251,0.707,0.99,0.886,0.829,0.933,1.253,1.307,0.764,0.99,1.198,0.933,0.89,1.218,1.087,0.772,1.003,0.997,1.3,0.93,0.899,1.328,1.026,0.96,1.99,1.386,0.624,0.809,1.095,0.953,1.301,0.932,1.111,1.244,0.759,1.121,0.96,1.147,0.855,0.879,1.229,0.882,1.03,0.865,0.763,1.154 +NM_024569,0.782,1.073,1.169,0.827,0.812,1.077,0.64,0.483,0.895,0.73,1.165,0.693,0.628,0.676,0.848,1.561,1.159,0.808,1.148,0.958,0.694,0.585,1.257,0.904,0.777,0.879,1.183,0.613,0.485,1.001,0.894,2.194,2.116,1.226,0.301,1.073,1.023,0.638,1.262,1.23,0.878,1.207,0.655,1.451,0.855,0.865,0.838,0.65,0.673,0.904,1.068,0.839,0.933,1.29 +NM_024570,0.598,1.226,1.129,0.671,0.793,1.209,0.638,0.596,1.165,0.934,1.092,0.767,0.702,0.714,0.895,1.677,0.665,0.521,1.142,0.851,0.744,0.8,1.345,1.007,0.712,0.806,1.458,0.814,0.499,1.478,0.988,1.582,2.785,1.601,0.279,1.423,1.02,1.003,2.416,0.689,1.05,1.426,0.624,1.503,0.829,0.812,1.133,0.661,1.078,0.621,1.022,1.169,0.849,2.442 +NM_024571,0.701,0.982,0.73,1.357,0.525,2.04,0.707,0.464,0.842,0.713,1.275,0.95,0.719,0.509,0.767,1.642,0.655,0.959,1.385,0.872,0.542,0.574,1.747,0.856,1.074,0.963,1.026,0.521,0.766,1.741,0.602,1.655,3.01,2.0,0.192,0.885,1.294,0.633,2.04,0.621,0.827,1.118,0.753,1.862,0.701,0.881,0.964,0.715,1.144,0.746,1.156,0.661,1.091,1.017 +NM_024572,1.306,0.882,1.726,1.038,1.594,0.83,0.889,1.354,2.02,1.733,0.799,1.361,1.387,1.051,1.071,0.951,1.322,1.345,1.351,0.764,1.123,1.693,0.802,1.963,0.901,1.205,1.588,1.831,0.61,0.847,2.276,0.738,2.134,0.755,1.937,0.982,0.784,1.466,0.821,1.176,1.559,0.741,0.609,0.842,1.784,1.085,1.169,1.834,0.865,1.332,0.925,1.172,1.134,0.946 +NM_024573,0.766,0.97,1.043,0.895,0.951,1.153,0.982,0.733,1.001,0.899,1.254,0.762,0.836,0.866,1.102,1.405,0.968,1.021,0.982,1.053,0.732,0.769,1.284,0.991,0.777,0.743,0.858,0.874,0.683,1.006,0.884,1.015,1.173,1.199,0.859,0.927,1.292,0.809,1.34,0.927,1.016,1.092,1.122,1.057,0.877,1.108,0.848,0.833,1.233,0.833,1.214,0.981,1.102,1.058 +NM_024575,0.994,1.003,1.006,1.07,0.988,0.994,0.866,1.07,1.051,0.921,0.891,0.875,0.978,0.88,1.008,0.911,1.065,0.9,0.882,1.015,0.945,1.029,0.946,1.018,1.04,1.098,1.161,0.92,1.04,1.073,1.05,0.996,0.898,1.033,0.852,0.949,0.916,0.984,1.161,1.208,0.881,1.281,0.986,0.828,1.138,0.852,0.91,0.904,0.808,1.007,0.944,1.115,1.15,1.313 +NM_024576,1.092,0.938,1.488,0.823,1.457,0.902,0.809,1.169,1.365,1.127,1.038,1.142,1.128,1.091,0.947,1.059,1.123,1.272,1.443,0.886,0.946,1.176,0.826,1.186,0.839,1.132,1.188,1.438,0.969,0.899,1.146,0.936,1.057,0.849,1.0,0.886,0.811,1.315,0.888,1.073,1.162,0.885,1.238,0.83,1.076,0.899,0.984,1.207,0.915,1.065,0.908,0.995,1.052,1.03 +NM_024577,1.079,1.01,0.911,0.951,1.06,0.999,0.984,0.983,1.276,0.897,1.022,0.944,0.946,0.98,1.128,1.293,0.99,1.008,0.955,1.04,0.988,0.949,0.971,1.248,0.909,0.993,1.048,1.148,0.895,0.925,0.982,1.004,1.004,0.999,0.992,0.951,1.041,0.998,1.049,0.972,0.963,0.987,0.922,0.938,1.086,1.237,1.25,1.014,0.87,1.038,0.948,1.093,0.961,1.034 +NM_024580,0.842,1.027,1.043,0.99,0.912,1.234,0.815,0.647,0.981,0.916,0.999,0.733,0.741,0.715,1.012,1.445,0.871,0.833,1.108,1.121,0.783,0.808,1.459,0.973,0.811,0.815,1.067,0.915,0.546,1.066,0.879,0.948,1.275,1.253,0.635,1.069,1.115,0.857,1.737,0.876,0.925,1.168,1.09,0.955,1.001,1.119,1.058,0.807,1.247,0.964,1.074,0.947,0.926,1.107 +NM_024581,1.061,1.012,0.968,0.904,0.998,1.031,1.049,1.135,0.97,0.994,1.072,0.887,1.049,0.913,0.912,0.935,0.961,0.891,1.0,0.996,1.043,0.853,0.921,0.997,0.992,0.989,1.019,0.898,0.85,1.022,1.157,0.993,0.946,0.96,0.937,1.145,0.96,0.892,1.119,1.096,1.025,1.044,1.593,1.014,0.956,1.081,0.965,0.943,0.913,1.068,0.979,1.022,1.085,1.385 +NM_024583,0.922,1.049,1.12,0.946,1.0,1.277,0.997,0.777,1.166,0.959,0.938,1.134,1.173,0.881,1.174,0.952,0.864,0.983,0.983,0.924,1.0,1.067,0.906,0.946,0.967,0.894,0.915,1.042,1.081,1.084,0.847,1.136,1.138,1.155,1.085,0.884,0.917,1.054,1.032,0.897,0.931,1.068,1.135,0.998,1.014,1.218,1.241,1.123,0.999,0.977,1.151,0.995,1.059,1.142 +NM_024584,0.938,1.131,1.138,0.953,0.962,1.1,0.901,0.792,0.858,0.951,1.114,0.903,0.922,1.028,0.99,1.121,0.953,0.846,1.062,0.973,0.754,0.922,1.254,0.92,0.928,0.862,1.236,1.09,1.055,1.005,1.025,0.942,1.27,0.973,0.96,0.964,1.043,0.88,0.845,0.896,1.109,1.024,1.054,1.091,0.845,1.199,1.025,0.878,0.905,0.872,0.933,0.902,0.968,1.18 +NM_024585,0.775,1.134,0.941,1.148,0.624,1.289,0.764,0.559,0.749,0.741,1.18,0.791,0.765,0.664,0.95,1.367,0.74,0.923,0.929,1.13,0.714,0.925,1.248,0.943,1.019,0.986,0.998,0.808,0.76,1.228,0.839,1.463,0.947,1.556,0.555,0.99,1.017,0.867,1.75,0.897,0.895,1.322,0.755,1.952,0.782,0.987,0.899,0.914,0.933,0.958,0.841,0.93,0.86,1.493 +NM_024587,0.716,1.33,0.813,0.924,0.904,1.284,0.873,0.788,0.795,0.832,1.349,0.724,0.744,0.603,1.129,1.603,0.888,1.2,0.873,1.554,0.672,0.719,1.49,0.806,0.85,0.683,0.803,0.845,0.934,1.513,0.848,1.141,0.98,1.364,0.736,1.393,1.406,0.913,1.422,1.103,0.91,1.315,1.156,1.34,0.734,2.029,1.555,0.728,1.95,0.721,1.546,0.752,0.828,1.114 +NM_024588,0.861,1.205,1.118,0.696,0.879,1.013,0.787,0.606,0.919,0.791,0.9,0.757,0.69,0.747,1.061,1.015,1.042,0.777,0.981,1.002,0.809,0.797,1.089,0.877,0.946,0.961,1.186,0.739,0.598,1.055,0.865,1.207,1.266,1.464,0.685,0.838,0.846,0.76,1.222,1.001,0.99,1.189,0.824,1.164,1.039,1.047,0.814,0.927,0.729,0.881,1.106,0.941,1.054,1.687 +NM_024589,1.417,0.807,1.279,0.965,1.159,1.054,0.595,1.255,1.258,1.185,0.817,1.094,1.495,0.862,1.036,0.971,1.172,0.996,1.215,1.004,1.096,1.715,0.647,1.33,0.893,1.525,1.269,1.055,0.554,1.008,1.07,1.043,1.045,1.185,1.148,0.598,0.7,1.341,1.112,0.68,1.028,0.818,0.563,0.906,1.034,0.677,0.955,2.187,0.575,1.091,0.974,0.793,1.023,0.741 +NM_024590,0.803,1.0,0.988,0.788,0.841,1.254,0.89,0.767,0.963,0.985,1.555,0.863,0.986,0.802,0.974,0.788,0.836,0.915,0.91,1.438,0.829,0.827,1.642,0.877,1.006,0.892,1.159,0.965,0.846,1.065,0.935,1.459,0.967,1.078,0.764,0.788,1.078,0.71,1.36,0.834,0.915,1.218,0.844,1.414,0.905,1.162,0.962,0.765,0.893,0.715,1.643,1.132,1.018,1.381 +NM_024591,1.0,0.992,0.837,1.03,0.98,1.036,1.092,0.94,0.941,0.962,0.889,0.932,0.907,0.877,0.948,1.05,1.084,1.043,1.049,0.864,1.009,0.898,1.048,1.018,0.971,1.014,1.105,0.987,1.09,1.135,0.944,1.152,1.058,1.066,0.962,1.003,0.954,0.952,1.197,0.922,0.929,1.113,0.962,1.101,1.046,0.83,0.999,1.142,1.047,0.935,0.894,1.0,0.859,0.95 +NM_024593,1.167,1.087,1.019,1.025,0.883,1.064,0.977,1.028,0.799,1.041,1.038,1.07,1.004,1.077,0.916,0.892,0.801,1.03,1.011,1.041,1.27,1.019,1.153,1.089,0.95,1.211,0.965,0.99,1.251,0.967,0.984,1.106,0.985,0.83,1.053,0.936,0.985,1.011,0.941,1.026,0.857,0.996,0.907,0.958,0.997,0.934,0.94,0.911,0.89,0.994,1.063,0.988,0.944,0.859 +NM_024594,0.976,0.965,1.038,0.887,1.036,1.202,0.756,0.884,0.894,1.081,1.597,0.813,0.805,0.9,0.939,1.375,1.136,0.942,1.033,1.355,1.025,0.861,1.141,0.96,0.821,0.889,1.026,0.905,0.881,1.1,1.005,1.024,0.998,1.178,0.729,0.804,1.301,0.847,1.067,0.875,1.092,1.036,1.016,0.868,0.951,1.095,0.966,0.866,1.051,0.891,1.113,0.879,1.004,0.988 +NM_024595,0.822,1.02,0.87,0.793,0.861,1.171,0.794,0.683,1.115,0.992,1.091,0.817,0.847,0.656,0.984,1.352,0.908,1.062,0.963,0.831,0.732,0.848,1.205,0.958,1.009,0.836,1.01,0.76,0.923,0.955,0.764,1.404,1.608,0.98,0.864,0.9,1.134,0.848,1.528,1.279,0.921,1.033,1.409,2.052,0.838,0.905,1.059,0.747,1.022,0.968,0.946,0.963,0.844,1.315 +NM_024598,0.434,1.244,1.143,0.686,0.538,1.55,0.807,0.333,0.738,0.912,1.277,0.686,0.409,0.378,0.751,1.543,0.878,0.864,0.787,1.005,0.404,0.481,1.294,0.784,0.565,0.604,1.229,0.497,0.78,1.348,0.62,1.932,1.284,1.482,0.233,0.808,1.267,0.663,1.907,1.546,0.81,1.241,0.739,1.263,0.858,1.135,1.066,0.486,0.981,0.763,1.131,0.99,1.018,2.521 +NM_024599,1.162,0.932,1.303,0.772,1.087,0.759,0.724,0.697,1.141,1.294,0.643,0.854,0.798,0.8,1.003,0.852,1.546,0.719,1.771,0.744,1.448,1.171,0.916,1.152,0.659,1.001,1.512,0.774,0.74,0.647,1.115,1.461,1.959,0.72,0.696,0.999,0.734,1.06,1.334,1.292,1.305,0.921,0.876,1.476,1.234,0.68,0.961,1.053,0.692,1.519,0.781,1.093,1.701,1.994 +NM_024600,0.913,1.013,0.859,0.909,0.991,1.039,0.989,0.842,0.88,0.935,0.909,0.877,0.847,0.94,0.916,0.911,0.955,0.876,1.01,0.941,0.894,0.887,1.057,0.92,1.042,0.848,0.95,0.91,0.904,1.115,0.882,1.822,1.29,1.263,0.894,0.969,0.93,0.798,1.304,1.351,1.052,1.255,1.002,1.048,0.97,1.014,0.983,0.979,0.877,1.063,1.023,1.008,0.915,1.086 +NM_024603,0.793,1.168,0.853,0.998,0.881,1.149,1.093,0.918,0.936,0.779,1.247,1.048,1.038,0.967,0.982,0.891,0.927,0.982,0.886,1.154,0.793,0.922,1.198,0.963,1.064,0.965,0.83,1.027,0.802,1.154,1.027,1.738,0.983,1.862,0.859,0.886,1.116,1.01,1.043,0.973,0.997,1.226,1.041,0.868,0.988,1.074,0.974,0.868,1.05,0.896,1.183,1.002,1.017,0.849 +NM_024604,0.959,0.944,1.118,0.8,0.961,0.897,0.598,0.668,1.304,0.932,1.082,0.772,0.65,0.867,0.988,1.168,0.859,0.886,1.284,0.845,0.781,0.763,1.113,0.978,0.678,0.901,1.394,0.897,0.483,0.983,1.07,1.094,1.662,1.057,0.496,1.446,1.143,0.961,1.394,1.067,1.076,0.917,0.842,1.32,1.008,0.963,1.142,0.816,0.879,0.8,1.025,0.899,0.959,1.38 +NM_024605,2.668,0.714,2.054,1.004,4.057,0.771,0.76,2.289,4.321,1.902,0.71,2.443,2.486,1.419,1.648,1.068,2.451,1.668,3.397,0.628,1.334,2.989,0.753,2.861,0.712,3.758,1.996,3.213,0.744,0.838,3.85,1.125,1.582,1.112,9.268,0.776,0.554,2.813,0.949,0.775,2.525,1.02,0.381,1.045,2.356,0.551,1.487,5.218,0.553,2.621,0.976,0.696,1.842,0.923 +NM_024607,0.991,0.955,1.026,1.0,1.05,1.039,0.751,0.895,1.081,1.06,1.007,0.974,1.056,1.042,1.027,0.847,1.119,0.993,1.13,1.057,0.981,1.232,1.015,1.01,0.984,0.999,0.994,1.156,0.878,1.059,1.261,0.863,1.044,1.016,1.69,0.914,0.97,0.978,0.947,0.939,1.191,1.087,0.807,0.83,1.09,0.959,1.187,1.511,1.115,1.044,0.952,1.079,1.11,0.976 +NM_024608,0.999,1.319,1.062,1.039,0.902,1.116,0.769,0.787,1.109,0.76,0.97,0.777,0.824,0.868,1.139,1.218,0.923,1.007,0.841,1.258,0.727,0.84,1.231,0.874,0.849,0.971,1.046,1.086,0.719,1.299,0.977,1.143,0.73,1.279,0.718,0.902,1.081,0.968,1.157,0.924,0.957,1.197,1.024,0.853,0.935,1.09,0.912,0.799,0.879,0.805,1.201,0.723,1.044,1.249 +NM_024610,0.655,1.529,0.908,0.851,0.818,1.389,0.973,0.546,0.868,0.668,1.168,0.855,0.698,0.773,0.854,1.263,0.692,0.912,0.69,1.597,0.611,0.735,1.189,0.813,0.99,0.711,1.052,0.703,0.934,1.475,0.808,1.445,1.811,1.571,0.544,1.183,1.142,0.831,1.861,1.015,0.774,1.382,0.874,1.352,0.768,1.181,0.937,0.628,0.832,0.714,1.21,0.931,0.769,1.342 +NM_024611,0.776,1.333,1.173,0.848,1.013,1.107,0.919,0.807,1.233,1.132,0.953,0.887,0.853,0.833,0.99,1.209,0.816,0.929,1.05,1.051,0.855,0.817,1.25,0.998,0.865,0.825,1.118,0.948,0.815,1.205,1.048,1.074,1.911,1.303,0.575,0.778,0.901,0.886,1.131,0.717,1.074,1.062,0.812,1.222,0.927,0.789,0.941,0.643,0.884,0.897,0.886,0.83,0.985,2.045 +NM_024612,0.773,1.292,1.104,0.79,0.923,1.161,0.72,0.753,1.076,0.909,1.092,0.955,0.771,0.782,0.936,1.086,0.782,0.808,1.072,1.306,0.611,0.659,1.129,0.845,0.887,0.922,0.894,0.895,0.361,1.23,0.954,1.851,1.682,1.645,0.585,1.372,0.938,0.753,1.213,0.963,0.872,1.23,0.736,1.903,0.806,0.99,0.825,0.722,0.712,0.86,0.954,1.14,1.114,2.08 +NM_024613,0.892,1.02,1.388,0.751,1.163,1.006,0.76,0.83,1.446,0.916,0.985,0.839,0.86,0.921,1.033,1.319,0.762,1.0,1.299,1.061,0.584,0.873,0.985,1.08,0.775,0.836,1.2,1.342,0.533,1.058,1.165,0.877,1.5,1.043,0.676,0.722,1.029,1.152,1.073,0.884,1.167,1.098,0.852,0.947,1.085,1.141,1.003,0.894,1.184,0.996,0.962,0.785,0.714,1.319 +NM_024614,1.024,0.975,0.969,1.025,1.13,1.048,1.146,0.86,0.949,1.002,1.047,0.943,0.919,0.911,1.157,1.177,0.845,0.917,0.891,0.862,1.004,1.162,1.186,1.036,1.14,1.006,0.996,0.991,0.753,0.928,0.979,0.934,1.094,0.971,1.125,0.985,0.958,0.96,1.146,1.0,0.997,1.005,1.167,0.934,1.075,0.874,0.955,1.018,0.942,0.919,1.123,1.057,0.947,1.037 +NM_024616,0.511,1.373,0.562,0.996,0.615,1.695,1.251,0.524,0.525,0.638,1.186,0.509,0.546,0.526,0.929,1.28,0.47,1.195,0.556,1.436,0.564,0.507,1.597,0.532,0.995,0.53,0.654,0.531,0.918,1.851,0.582,0.778,1.891,1.873,0.51,0.958,1.284,0.497,1.698,0.908,0.56,1.331,1.521,1.393,0.441,1.244,1.004,0.459,1.093,0.529,1.136,0.78,0.682,0.951 +NM_024618,1.681,0.8,2.119,0.957,1.652,0.896,0.676,1.245,1.811,1.665,0.673,1.403,1.147,1.16,1.189,1.107,1.838,1.289,2.46,0.735,1.252,1.858,0.846,1.7,0.749,1.793,2.066,1.624,1.043,0.894,1.26,0.779,1.14,0.995,1.181,0.689,0.777,1.49,0.913,0.576,1.589,0.841,0.702,0.747,2.029,0.702,1.187,1.829,0.724,2.534,0.896,0.758,1.635,0.796 +NM_024622,0.669,0.95,1.129,0.618,1.14,1.601,0.736,0.825,1.275,0.873,1.117,0.777,0.8,0.826,1.28,2.257,0.998,0.944,0.662,0.767,0.534,1.128,1.32,1.401,0.582,0.575,1.61,0.898,0.41,1.242,1.106,1.071,2.02,1.23,0.422,0.69,1.29,1.02,1.124,1.137,1.093,1.026,1.023,0.688,0.838,1.36,1.113,0.747,1.633,0.757,1.254,0.719,0.533,2.317 +NM_024624,0.988,1.002,1.227,0.885,0.965,1.053,0.809,0.654,1.182,1.079,1.109,0.752,0.916,0.887,1.049,1.078,0.862,0.8,1.075,1.053,0.788,0.785,1.358,1.072,0.74,0.875,1.434,0.843,0.844,1.127,0.992,1.083,2.666,1.091,0.682,1.068,0.954,0.893,1.218,0.906,0.976,1.148,0.963,1.074,0.924,1.199,0.998,0.686,0.99,0.925,1.081,0.858,1.062,1.557 +NM_024625,1.005,0.928,1.213,0.836,1.012,0.984,0.862,0.673,1.335,1.093,0.865,0.763,0.69,0.961,1.079,0.938,1.281,0.923,1.106,0.819,0.942,0.836,1.078,1.006,0.73,0.87,1.264,0.971,0.733,1.144,1.069,0.975,1.556,0.981,0.672,0.932,0.944,0.94,1.164,0.782,1.261,0.966,1.056,0.996,0.911,1.078,1.115,0.854,1.166,1.02,0.851,1.091,1.096,1.761 +NM_024626,0.85,3.638,0.738,1.622,0.732,2.497,1.212,0.953,0.737,0.717,1.186,0.816,0.772,0.919,0.924,0.753,0.8,1.975,0.764,3.263,0.816,0.799,0.877,0.798,0.944,0.795,0.893,0.759,0.956,2.231,0.803,2.509,1.059,2.482,0.907,1.286,1.06,0.91,2.062,1.035,0.955,2.11,0.923,1.12,0.854,0.964,0.882,0.871,0.826,0.779,2.297,1.145,0.908,2.529 +NM_024627,0.955,0.85,1.513,0.794,1.005,0.867,0.853,0.72,1.477,1.22,0.783,1.06,0.742,0.968,1.072,1.174,1.022,0.907,1.804,0.808,0.73,1.038,0.84,1.323,0.645,0.874,1.115,1.011,0.717,1.027,1.122,1.021,1.448,1.051,0.617,0.85,0.918,1.084,0.942,0.904,1.162,1.108,0.907,0.916,1.323,0.93,1.016,0.864,0.965,0.935,0.978,0.86,1.316,1.382 +NM_024628,1.07,1.146,0.92,1.064,1.121,0.927,0.851,0.915,1.003,1.042,1.098,1.037,0.867,0.928,1.022,0.828,1.015,1.065,0.975,0.852,1.005,0.946,1.139,1.035,1.019,0.894,1.047,1.012,0.916,0.993,0.87,1.027,0.986,1.005,1.097,0.861,0.981,1.017,1.023,0.93,0.86,1.028,0.962,1.075,0.928,0.86,1.18,1.135,0.945,0.939,0.925,0.932,0.932,1.073 +NM_024631,0.99,1.083,0.957,1.095,0.868,1.022,0.975,0.669,1.03,0.939,0.899,1.032,0.754,0.891,1.022,1.296,0.943,0.994,0.982,0.986,0.747,0.868,0.962,0.985,0.969,0.883,1.126,0.843,0.919,0.984,1.124,1.568,1.098,1.107,0.818,1.053,0.987,0.896,1.159,1.222,0.899,1.192,1.011,1.035,0.867,0.92,0.883,0.825,1.082,0.952,1.25,0.729,1.008,1.357 +NM_024632,0.785,0.936,1.11,0.931,1.056,1.497,0.985,0.839,1.056,0.883,0.937,0.837,0.979,0.729,1.287,1.379,1.251,1.103,0.979,1.146,0.693,1.193,1.171,1.215,0.904,0.793,1.115,0.777,0.801,1.01,0.9,1.431,3.111,1.345,0.697,0.738,1.195,1.106,1.496,0.886,0.991,0.902,0.852,0.987,1.022,1.038,0.946,1.035,1.215,0.933,0.975,0.826,0.717,1.91 +NM_024633,0.925,1.041,0.986,0.858,0.89,1.103,1.004,0.888,1.016,0.951,1.113,0.887,1.035,1.044,1.032,1.22,0.824,0.945,0.879,1.035,0.845,0.927,1.214,0.968,0.988,0.852,1.16,1.059,0.941,1.177,0.875,1.305,1.261,1.254,0.949,1.048,0.997,0.967,1.003,1.088,0.953,1.21,0.89,1.018,0.922,0.805,0.907,0.883,0.982,0.738,0.946,0.906,0.91,1.077 +NM_024635,0.864,0.998,1.365,0.923,1.076,1.026,0.835,0.871,1.131,1.125,1.155,0.94,0.886,0.803,1.01,1.276,0.924,0.916,1.015,1.074,1.034,0.852,1.046,1.144,0.873,0.872,1.152,0.953,0.901,1.035,1.043,1.583,1.335,1.041,0.746,1.083,1.024,0.851,0.944,0.988,0.926,0.966,0.897,1.12,1.045,1.194,0.966,0.778,1.17,0.855,0.856,0.834,1.1,1.622 +NM_024636,1.08,1.016,1.303,1.103,1.67,0.847,0.82,1.134,0.927,1.156,0.872,1.035,1.013,1.233,0.901,1.138,1.905,0.972,1.466,0.929,1.08,1.034,0.91,1.11,0.882,0.948,1.647,0.974,0.728,0.833,1.29,0.993,1.436,0.92,1.144,1.007,0.984,1.078,0.818,1.074,1.773,0.873,0.974,0.832,1.719,0.857,1.29,0.937,1.208,1.682,0.913,1.371,1.392,0.984 +NM_024637,0.845,0.895,1.684,0.844,1.325,0.756,0.713,0.801,1.247,1.596,0.805,1.372,0.895,0.943,1.017,0.997,1.017,1.126,1.248,0.912,0.762,1.004,1.148,1.534,0.719,1.026,1.247,1.287,0.725,1.273,1.395,2.276,0.885,0.977,0.623,0.841,0.857,1.553,0.853,1.357,1.613,1.052,0.738,0.763,1.14,0.883,1.262,0.919,0.738,0.739,1.003,1.032,1.099,1.219 +NM_024639,0.89,1.071,1.009,0.873,0.851,1.129,0.938,0.923,1.018,0.975,1.372,0.884,1.007,1.001,0.928,1.434,0.731,1.009,0.923,0.96,0.698,0.935,1.032,1.056,0.846,0.85,1.191,0.919,0.782,1.121,0.95,1.228,1.224,1.238,0.642,0.818,1.133,0.944,1.03,1.037,0.978,1.091,0.875,1.119,0.922,0.952,0.951,0.953,0.886,0.802,1.115,0.858,0.871,1.649 +NM_024640,0.821,0.794,1.257,0.799,0.773,1.106,0.738,0.748,1.075,0.805,1.507,0.906,0.874,0.662,0.913,1.566,0.831,0.782,0.979,0.924,0.649,0.786,0.959,1.233,0.664,0.827,0.999,0.862,0.52,0.954,0.821,1.288,2.212,1.077,0.438,1.028,1.061,0.783,1.222,1.001,1.169,0.774,0.741,1.812,0.99,1.579,1.087,0.637,1.593,0.831,1.031,0.974,0.913,2.565 +NM_024642,0.64,1.043,1.167,1.043,1.001,1.3,0.742,0.537,1.31,0.85,1.379,0.604,0.645,0.843,0.982,1.442,0.783,1.014,1.161,1.387,0.675,0.717,0.881,0.926,0.921,0.79,0.785,0.999,0.666,1.682,1.088,1.706,1.268,2.178,0.517,0.702,0.94,0.788,1.458,0.686,1.142,1.291,0.892,0.972,0.93,0.993,0.812,0.798,0.647,0.896,1.489,0.629,0.853,1.361 +NM_024643,0.868,1.226,0.808,0.923,0.894,1.403,0.845,0.733,0.959,0.823,0.986,0.959,0.705,0.836,0.852,1.317,0.876,1.003,0.953,1.53,0.709,0.742,1.233,1.118,0.933,0.818,0.82,0.946,1.048,1.139,0.819,1.319,1.187,1.347,0.726,1.076,1.043,1.034,1.28,1.131,0.825,1.165,0.703,1.277,0.79,1.028,0.915,0.876,1.285,0.763,1.274,0.631,0.813,2.487 +NM_024644,0.772,0.955,0.979,0.845,0.979,1.078,0.881,0.698,1.111,1.068,0.973,0.931,0.772,0.828,0.961,1.272,1.019,0.846,1.111,0.87,0.875,0.958,1.139,1.047,0.782,0.916,1.205,0.971,0.626,0.988,0.94,1.242,1.453,1.003,0.71,1.051,0.987,1.051,1.08,0.989,1.032,0.986,0.882,1.38,0.973,0.869,0.999,0.814,1.037,0.867,1.079,1.007,1.131,1.437 +NM_024645,1.111,0.951,0.944,0.863,1.033,0.993,1.016,0.94,1.018,0.996,1.169,1.088,0.92,0.904,1.069,0.909,0.983,1.081,1.072,0.913,0.996,1.005,0.994,0.976,0.961,1.032,1.017,1.046,0.761,0.92,1.128,0.953,0.939,1.035,1.048,0.919,0.967,0.961,1.179,0.943,1.02,0.981,1.157,1.045,1.038,0.852,0.895,0.946,0.964,0.951,0.987,1.0,0.982,1.017 +NM_024647,0.83,1.179,0.964,1.056,0.886,1.081,1.09,1.003,0.978,0.901,0.834,0.934,0.945,0.806,0.915,1.451,0.915,1.019,0.85,1.073,0.768,0.939,1.15,0.937,0.897,0.911,0.9,0.92,0.83,1.063,0.91,1.085,1.111,1.041,0.816,0.782,1.175,0.783,1.296,0.821,0.852,1.376,1.293,0.938,0.805,1.072,1.024,0.895,1.239,0.866,1.058,0.86,0.904,1.126 +NM_024648,0.652,1.378,1.109,0.774,0.914,0.963,0.91,0.532,1.11,0.909,0.776,0.776,0.761,0.572,1.0,1.206,0.833,0.961,0.966,1.493,0.536,0.797,1.329,1.011,0.685,0.722,0.983,0.767,0.583,1.82,0.785,1.487,0.684,1.347,0.35,1.025,1.209,1.043,1.691,0.639,1.237,1.458,0.865,1.747,0.979,1.282,1.158,0.759,1.179,0.726,1.287,0.841,0.717,1.449 +NM_024650,0.826,0.953,1.48,0.74,1.509,0.894,0.742,0.9,1.148,1.579,0.74,1.361,1.087,0.879,0.782,1.369,1.212,1.162,1.239,1.526,0.788,1.113,1.006,1.76,0.431,1.051,1.625,1.346,0.699,1.292,1.148,1.081,1.377,1.002,0.622,1.969,0.747,1.218,1.029,1.122,1.621,1.075,0.679,1.065,1.424,0.947,1.364,0.953,0.869,0.945,0.933,0.921,0.99,0.99 +NM_024652,0.903,0.958,1.348,0.926,0.846,1.06,0.88,1.013,1.178,1.04,0.999,0.996,0.908,1.001,1.061,1.454,1.12,0.96,0.851,0.993,0.849,0.963,1.319,1.05,0.763,1.027,0.989,0.873,0.7,1.093,1.009,1.186,1.267,1.443,0.89,0.819,0.885,0.947,1.212,1.004,0.998,1.222,0.815,0.95,0.993,1.007,0.926,0.926,0.953,0.97,1.051,0.995,1.008,1.237 +NM_024653,0.759,1.101,1.33,0.731,0.945,1.197,0.777,0.702,1.123,0.92,0.688,0.845,0.741,0.762,1.03,0.915,0.966,0.906,0.84,1.192,0.734,1.116,1.187,0.993,0.885,0.898,1.38,0.966,0.602,1.331,1.012,2.042,1.356,1.098,0.512,0.846,0.738,0.85,1.346,1.332,1.079,1.087,0.709,1.132,0.971,0.753,0.992,0.754,0.729,0.802,0.81,1.272,0.796,1.611 +NM_024654,1.107,0.938,1.043,0.835,1.044,0.906,0.985,0.862,0.999,1.063,0.96,0.985,0.934,0.817,0.929,1.031,0.964,0.936,1.14,0.959,0.956,1.088,0.943,0.992,1.062,0.962,0.897,1.084,0.75,1.144,0.899,1.029,1.026,1.125,0.83,1.08,0.975,0.836,1.104,1.09,0.911,1.131,1.268,1.016,1.082,0.77,0.885,0.987,1.002,0.852,1.049,1.187,1.131,1.167 +NM_024658,0.954,0.721,0.908,0.936,1.042,0.768,0.549,0.675,1.201,1.19,0.716,1.221,0.83,0.853,0.864,0.913,1.133,0.891,1.254,0.785,0.979,1.034,1.214,1.476,0.793,1.274,1.235,1.0,0.77,0.833,1.057,0.94,2.274,0.848,0.449,0.778,0.736,1.085,1.394,0.751,1.204,0.972,1.018,2.082,1.29,0.884,1.044,0.832,1.047,1.145,0.865,0.885,1.493,1.277 +NM_024659,0.93,1.096,1.098,0.88,0.922,1.0,0.835,0.883,0.962,1.039,1.189,0.884,1.015,0.828,0.836,1.172,0.904,0.775,0.985,1.086,0.934,0.892,1.162,1.041,0.84,0.907,0.948,0.929,0.725,1.0,0.79,1.496,1.438,1.231,0.761,0.831,0.953,1.09,1.342,0.893,1.055,1.198,1.003,1.0,0.933,0.994,1.006,0.874,1.092,0.875,1.002,0.861,0.779,1.142 +NM_024660,0.8,1.205,0.957,0.776,0.794,0.918,0.822,0.755,1.032,0.849,0.845,0.853,0.895,0.929,1.046,0.79,0.91,0.741,0.858,0.752,0.896,0.777,1.137,0.829,1.019,1.044,1.347,0.9,0.967,1.305,0.904,1.478,1.6,1.174,0.732,0.916,1.047,0.973,1.535,1.015,0.946,1.046,0.846,1.687,0.867,0.847,0.899,0.998,0.867,0.914,1.05,0.89,1.076,1.681 +NM_024661,0.774,0.973,1.54,0.758,0.852,1.096,0.678,0.553,1.001,0.84,0.811,0.957,0.816,0.734,0.877,1.853,1.137,0.932,1.503,0.876,0.822,0.92,1.328,1.19,0.668,0.785,1.249,0.96,0.676,0.85,0.857,1.189,1.915,0.997,0.421,1.59,0.85,0.923,1.543,0.679,1.244,1.099,0.626,0.974,1.076,1.033,0.996,0.902,1.263,1.1,1.066,0.999,0.809,2.454 +NM_024662,0.742,1.16,1.151,0.524,0.905,0.658,0.523,0.313,1.244,1.392,0.671,0.906,0.458,0.621,0.816,0.875,0.837,0.787,1.12,0.811,0.759,0.729,1.251,1.175,0.563,0.892,1.304,0.868,0.46,1.238,1.024,1.268,1.614,0.846,0.219,1.797,0.892,0.996,1.524,1.361,1.246,1.098,0.621,1.663,1.336,0.767,1.154,0.651,1.161,0.77,1.017,1.4,1.009,1.744 +NM_024663,0.967,1.558,1.576,0.8,1.229,0.786,0.613,0.776,1.416,1.28,0.784,1.104,0.897,0.939,1.111,1.045,1.099,0.862,1.582,0.819,0.595,1.016,1.317,1.25,0.658,1.101,1.383,1.192,0.479,1.271,1.154,1.439,0.876,1.149,0.426,0.708,0.69,1.321,0.917,0.641,1.189,0.907,0.664,0.576,1.192,0.958,0.771,1.114,0.781,0.975,0.929,1.029,1.194,1.391 +NM_024665,0.518,1.237,1.45,0.442,0.708,1.464,0.923,0.52,1.054,0.758,1.002,0.802,0.659,0.493,0.763,1.375,0.516,1.486,0.963,1.185,0.383,0.844,1.773,1.087,0.657,0.43,1.277,0.815,0.634,1.941,0.792,1.105,1.436,1.229,0.333,0.944,1.44,0.8,1.801,1.212,0.716,1.614,0.589,1.434,0.891,1.338,0.862,0.437,1.043,0.479,1.556,1.169,0.758,1.155 +NM_024666,0.868,1.198,1.018,1.045,0.874,1.09,0.905,0.83,0.819,0.982,1.346,0.884,0.934,0.844,0.906,1.143,1.036,0.953,0.977,1.122,0.808,0.934,1.164,0.876,1.098,0.949,0.892,0.943,0.838,0.919,0.961,1.102,1.014,1.109,0.87,1.261,1.057,0.924,1.164,1.039,0.892,1.003,0.843,0.969,0.867,1.056,0.94,1.018,1.079,0.862,1.076,0.886,0.974,1.418 +NM_024667,1.11,0.829,1.379,0.816,1.807,0.897,0.638,0.667,2.133,1.343,0.769,0.988,0.981,0.989,0.987,0.819,1.513,1.174,1.217,1.0,0.389,1.12,0.957,1.31,0.44,1.436,1.36,1.853,0.452,0.702,1.657,1.077,0.683,1.092,2.245,1.29,0.746,1.475,1.042,0.847,2.292,0.868,0.97,0.764,1.607,1.0,1.321,1.906,0.936,0.992,1.019,0.925,1.043,1.361 +NM_024668,1.633,1.5150000000000001,2.0460000000000003,1.784,1.9569999999999999,2.235,1.88,1.1389999999999998,2.536,2.254,1.7570000000000001,1.7610000000000001,1.363,1.679,1.8050000000000002,2.3760000000000003,1.73,2.324,2.252,1.772,1.246,1.89,2.375,2.3129999999999997,1.5110000000000001,1.868,1.961,2.008,1.463,2.178,1.952,1.814,3.31,2.2590000000000003,1.751,1.5070000000000001,2.338,2.062,2.977,1.8519999999999999,2.361,1.93,2.51,1.517,2.649,2.11,2.208,1.7610000000000001,2.524,2.0469999999999997,2.023,1.784,2.025,2.248 +NM_024669,1.019,1.072,1.092,0.933,1.062,1.009,1.103,1.088,0.926,0.94,1.135,1.089,1.089,1.133,1.089,0.888,1.087,1.05,1.017,0.963,1.007,0.992,0.955,0.913,0.981,1.084,1.095,1.113,0.905,1.006,1.076,0.96,1.021,0.899,1.071,0.996,0.998,1.055,0.935,1.125,0.89,0.932,1.199,0.917,1.049,0.943,1.092,1.019,1.081,0.986,0.988,1.22,1.065,0.925 +NM_024671,0.539,1.373,0.766,0.773,0.682,1.722,0.682,0.62,0.703,0.778,1.023,0.755,0.796,0.602,0.944,1.659,0.741,0.863,0.827,1.077,0.708,0.992,1.29,0.854,0.77,0.779,1.018,0.654,0.774,1.47,0.805,2.14,2.357,1.839,0.453,0.805,1.0,1.0,1.646,2.049,0.733,1.401,0.779,1.595,0.628,0.859,1.093,0.825,0.833,0.695,0.87,0.726,0.753,2.425 +NM_024672,1.062,0.979,0.91,1.014,1.261,1.153,0.943,1.02,1.044,0.894,0.838,1.131,1.035,0.992,0.727,0.903,1.001,1.046,0.985,0.911,1.103,1.047,0.939,1.0,1.088,1.015,0.952,0.866,0.98,1.04,0.95,0.891,1.064,1.026,1.178,1.028,0.921,1.017,1.007,0.984,1.046,1.056,1.112,0.946,1.098,0.811,1.031,1.032,1.003,0.946,1.024,1.048,0.804,1.006 +NM_024674,0.923,0.988,0.965,0.992,0.977,0.998,0.854,1.057,0.901,1.064,0.975,1.034,0.872,0.961,0.851,0.896,0.978,0.952,0.863,1.038,1.0,0.928,0.931,0.993,1.005,1.051,0.863,1.031,0.835,1.044,0.96,1.026,1.055,1.016,1.066,1.014,1.031,1.014,0.918,1.132,0.921,0.879,1.128,1.002,1.016,1.129,1.112,1.052,1.029,0.864,0.976,1.001,1.008,0.893 +NM_024675,0.869,1.12,1.224,0.821,0.886,0.991,0.762,0.824,1.07,0.98,0.969,0.969,0.829,0.925,0.975,1.124,1.055,0.839,1.008,1.029,0.883,0.863,1.165,0.967,0.78,0.904,1.215,0.882,0.651,1.066,1.072,1.075,1.399,1.077,0.639,1.006,0.906,0.971,1.202,0.913,0.984,0.997,0.818,1.135,1.057,0.94,0.98,0.81,0.94,0.996,1.073,0.87,1.182,1.165 +NM_024676,1.004,1.086,1.121,1.058,1.182,1.002,1.521,1.005,1.027,1.034,1.014,1.008,0.946,0.797,0.974,1.038,0.951,0.939,1.013,1.019,0.848,1.042,1.038,1.0,0.844,1.005,0.949,1.021,1.075,0.876,1.077,1.0,0.994,1.151,1.037,0.866,1.088,0.931,1.042,1.014,1.051,0.977,0.904,1.043,1.242,1.015,1.163,1.041,1.083,1.029,0.952,0.986,0.944,0.905 +NM_024677,1.086,1.13,0.85,0.807,0.9,1.06,0.755,0.825,1.034,0.861,0.977,0.89,1.018,1.088,1.004,0.994,0.91,0.992,1.03,1.068,0.861,0.904,1.029,0.959,0.945,0.936,1.011,1.027,0.785,1.003,1.032,1.225,1.152,1.347,0.897,0.897,0.9,0.757,0.838,1.034,1.078,0.883,0.873,1.14,0.929,1.168,1.039,0.881,1.023,1.103,0.997,0.95,0.911,1.114 +NM_024678,0.803,1.365,1.02,0.791,0.864,1.056,0.814,0.695,1.203,1.108,0.856,0.816,0.821,0.872,0.973,1.231,0.944,0.878,1.14,1.024,0.704,0.804,1.435,1.235,0.774,0.756,1.184,0.951,0.79,1.34,0.921,1.181,2.749,1.351,0.581,1.275,1.002,0.794,1.235,0.929,1.24,1.066,0.98,0.961,0.998,1.038,1.229,0.691,1.229,0.837,0.916,0.911,0.956,1.602 +NM_024680,1.003,1.059,1.162,1.098,0.923,1.082,1.031,0.723,1.297,0.987,0.962,0.851,0.986,0.818,0.737,0.925,0.92,0.847,1.162,0.895,0.868,0.983,1.439,0.885,0.877,0.991,1.206,0.889,0.742,1.866,0.918,0.898,1.383,0.947,0.905,1.198,0.895,0.977,1.414,0.801,0.956,1.051,0.79,1.351,1.015,0.972,0.86,0.937,1.081,1.036,1.1,0.968,0.903,1.91 +NM_024681,1.092,1.039,0.968,1.056,1.027,0.98,0.981,0.923,0.975,0.988,1.008,1.133,0.977,0.858,1.0,1.0,1.101,1.119,0.994,1.014,1.114,1.049,1.129,0.941,0.874,1.113,0.951,0.996,1.197,1.054,0.867,1.237,0.944,1.054,0.949,0.955,1.015,1.276,0.996,1.111,0.999,1.015,1.148,0.919,0.891,0.961,0.904,1.2,0.886,0.947,0.972,0.944,1.083,1.049 +NM_024682,1.085,1.051,0.895,1.03,0.918,0.936,1.02,1.074,0.997,1.047,0.96,0.805,0.971,1.176,0.925,0.837,1.049,0.945,0.886,1.034,1.088,0.967,1.028,0.894,0.936,1.145,0.895,0.932,1.136,0.828,0.996,1.053,1.204,1.179,0.978,0.928,0.795,1.105,1.34,1.063,1.012,1.012,1.228,1.197,0.952,1.052,0.884,1.075,0.929,1.03,0.899,0.881,0.953,1.051 +NM_024683,0.649,1.018,1.122,0.813,1.001,1.25,0.8,0.755,1.122,0.936,1.078,0.87,0.834,0.681,0.999,1.713,0.792,0.91,1.205,1.004,0.784,0.662,1.233,0.917,0.688,0.73,1.208,0.759,0.683,1.024,0.979,1.282,1.577,1.384,0.582,0.812,1.188,0.883,1.114,0.679,0.995,0.995,0.72,1.309,0.975,1.004,1.027,0.748,1.184,0.873,0.987,0.769,0.89,1.574 +NM_024684,0.542,2.726,1.214,0.779,0.847,1.982,0.803,0.563,0.935,0.849,1.444,0.696,0.634,0.794,0.915,1.489,0.78,1.024,1.4,1.582,0.802,0.793,1.189,0.751,1.341,0.752,0.997,0.875,0.677,2.311,1.042,1.866,2.066,3.448,0.428,1.26,1.337,0.821,1.102,0.868,0.984,1.95,0.89,0.781,0.702,1.029,0.863,0.749,0.676,0.619,0.9,0.872,0.73,0.998 +NM_024685,1.075,1.015,1.026,0.924,1.047,0.853,1.063,0.969,0.924,0.919,0.931,0.904,0.865,0.988,0.833,1.014,0.884,0.956,0.964,1.042,0.923,0.893,0.794,0.95,1.06,1.014,1.001,1.011,1.003,1.102,0.945,1.024,1.216,1.005,0.887,1.037,1.043,0.929,1.03,0.963,0.946,0.86,0.869,0.909,1.199,0.874,1.016,1.037,1.04,0.939,1.021,0.866,0.999,1.054 +NM_024686,0.888,0.99,1.218,0.954,1.076,1.019,1.033,0.981,0.864,1.115,1.037,0.864,1.084,0.925,1.094,0.9,1.045,1.135,0.969,0.947,0.918,0.966,0.973,1.016,1.004,0.975,0.886,0.903,1.071,1.225,0.967,0.928,0.954,1.086,1.15,1.082,0.919,1.019,1.103,0.93,1.092,1.226,0.992,1.153,0.935,0.943,0.998,0.962,0.909,0.912,0.923,1.061,0.98,1.007 +NM_024687,1.129,1.184,0.988,1.061,0.941,0.911,0.923,1.018,1.12,0.932,0.948,0.945,0.911,1.053,1.032,0.945,0.992,1.181,1.067,1.014,0.973,1.032,1.124,1.107,1.009,1.006,0.919,1.058,1.031,0.976,0.917,1.044,0.932,0.827,1.027,0.945,0.921,1.038,1.293,1.063,0.971,0.824,1.139,0.734,0.835,0.888,1.067,0.999,0.91,1.047,1.035,1.092,1.096,1.291 +NM_024688,1.084,1.127,1.044,0.991,1.115,0.972,1.01,1.116,1.049,0.977,1.07,1.106,0.916,1.234,0.873,1.031,0.996,1.111,1.189,1.126,0.949,0.881,1.036,0.974,1.018,1.116,1.172,0.978,0.793,1.05,0.886,1.0,1.038,0.77,1.133,1.084,0.955,0.942,1.099,1.049,1.041,1.019,0.951,0.911,0.947,1.126,0.827,0.936,0.975,0.99,1.034,0.805,1.007,1.051 +NM_024689,0.971,0.908,1.104,0.931,0.883,0.997,0.999,0.904,0.864,0.957,0.885,0.919,1.032,0.86,1.008,1.111,0.946,0.954,0.947,0.928,1.136,1.029,0.949,0.88,1.047,1.015,0.967,1.093,0.756,0.986,0.976,1.038,1.073,1.157,0.981,0.973,1.194,1.141,0.999,0.999,1.089,1.01,0.85,0.823,0.951,1.082,0.912,1.036,1.023,1.034,1.022,1.085,1.029,0.88 +NM_024693,1.482,0.924,2.136,1.192,1.994,0.768,0.617,1.202,2.204,1.507,0.66,1.461,1.894,2.348,1.831,0.557,2.463,0.577,0.598,0.623,1.105,0.576,0.597,1.869,0.909,0.809,2.163,0.679,1.301,0.657,1.928,1.077,3.742,1.153,1.668,0.95,0.931,1.414,0.549,0.646,2.998,0.831,0.98,0.539,1.68,0.601,1.249,0.559,0.577,1.49,0.646,0.679,1.868,0.527 +NM_024696,0.984,1.13,1.063,1.019,1.03,0.881,0.974,0.895,1.156,1.062,0.798,1.024,1.055,0.934,0.919,0.926,1.022,0.973,0.965,0.896,0.895,0.964,1.002,1.06,1.103,0.969,1.225,0.925,0.834,0.946,0.984,3.062,1.11,1.084,0.798,0.969,0.973,1.132,1.032,1.411,1.077,0.933,1.191,1.069,0.997,0.826,1.139,0.925,0.833,1.041,0.973,1.05,0.967,1.601 +NM_024697,0.833,0.945,0.979,1.09,1.183,1.071,1.067,0.829,1.167,0.912,0.863,0.973,0.953,1.122,0.96,0.974,0.852,0.899,0.96,1.016,0.985,0.83,1.149,1.139,1.074,0.874,0.999,0.866,1.08,0.779,0.947,1.09,0.946,0.932,0.839,1.104,0.907,0.937,1.153,1.296,1.056,1.299,1.163,0.934,1.075,0.928,1.038,1.124,0.832,0.881,1.057,1.328,1.253,0.919 +NM_024698,1.013,0.907,0.91,0.976,0.784,0.986,1.005,0.881,0.951,0.938,0.904,0.831,0.902,0.943,1.034,1.236,0.852,0.895,0.99,0.774,0.903,0.889,0.889,0.97,1.106,1.039,1.023,0.735,1.015,1.237,0.9,1.195,1.5,1.215,0.665,1.229,0.987,0.867,1.967,1.03,0.78,1.063,0.882,2.125,1.013,0.833,0.869,0.902,1.051,0.956,0.918,0.922,1.245,1.611 +NM_024700,0.691,1.083,1.185,0.894,0.827,1.048,0.809,0.607,1.001,0.939,0.847,0.808,0.684,0.665,0.827,1.029,1.011,1.061,0.955,1.138,0.58,0.799,1.284,0.838,0.754,0.69,1.349,0.744,0.826,0.811,0.907,1.456,1.862,1.059,0.508,1.264,1.088,0.822,1.225,1.065,1.064,0.991,0.76,1.438,0.987,1.073,1.113,0.801,1.035,0.952,1.011,1.134,0.992,1.963 +NM_024701,0.886,1.037,0.971,0.932,0.936,1.135,0.809,0.802,0.864,0.889,1.36,0.915,0.788,0.705,0.94,1.35,0.959,0.973,0.944,1.143,0.794,0.802,1.187,0.871,0.912,1.04,0.937,1.011,0.814,1.06,0.969,1.182,1.025,1.033,0.864,1.122,1.3,1.073,1.067,0.961,0.916,1.212,0.886,1.107,1.017,1.152,0.947,0.949,1.028,0.883,1.086,0.963,0.859,0.981 +NM_024702,4.447,0.255,4.122,1.605,5.667,0.257,0.244,1.491,9.706,8.996,0.257,5.606,3.007,2.617,1.932,0.944,3.488,1.745,4.483,0.494,2.402,6.218,0.223,7.102,0.217,3.751,6.195,5.567,0.198,0.289,4.174,0.254,3.15,0.251,1.042,0.264,0.219,4.712,0.234,0.29,6.586,0.326,0.193,0.261,4.32,0.204,3.07,2.995,0.415,4.712,0.813,0.958,4.865,0.798 +NM_024703,0.79,1.09,0.681,1.104,0.747,1.93,1.064,0.619,0.815,0.712,1.624,0.607,0.614,0.509,1.337,2.595,0.63,1.126,0.686,1.489,0.541,0.612,1.97,0.636,1.007,0.651,0.804,0.663,1.224,1.216,0.688,1.136,0.993,1.838,0.679,0.934,1.533,0.734,1.613,0.712,0.63,1.47,1.344,0.942,0.639,1.96,0.915,0.758,1.312,0.712,1.567,0.729,0.634,0.941 +NM_024704,0.914,0.863,1.042,0.871,1.102,1.046,1.103,0.903,0.892,1.016,0.983,1.044,1.031,1.003,1.071,1.104,0.949,0.887,1.016,1.05,0.927,0.808,1.269,1.169,0.956,1.039,1.055,1.015,0.994,0.967,1.104,1.024,1.113,1.0,0.977,1.001,0.901,0.883,1.023,0.908,0.922,1.004,1.087,0.885,0.957,1.011,1.025,0.978,0.989,0.868,1.0,0.865,0.989,1.129 +NM_024705,0.892,1.182,1.037,1.093,0.796,1.129,0.681,0.708,1.073,0.854,1.11,0.763,0.929,0.837,0.94,1.498,0.942,0.826,1.045,1.189,0.744,0.842,0.935,0.937,1.058,0.959,0.865,0.863,0.688,1.293,1.013,1.945,1.078,1.785,0.653,1.2,0.945,0.856,2.124,0.839,0.855,1.368,0.798,1.254,0.998,0.925,0.823,0.851,0.678,0.939,0.955,0.817,0.959,1.318 +NM_024706,0.771,0.986,1.116,0.914,0.779,0.916,0.698,0.718,0.882,1.019,0.911,0.879,0.841,0.74,0.876,1.141,0.787,1.007,0.991,0.922,0.743,0.887,1.241,0.958,0.815,0.787,0.917,0.751,0.635,1.138,0.786,2.193,1.585,1.089,0.652,1.015,1.027,0.817,1.329,1.521,0.968,1.106,0.917,1.133,1.013,0.814,0.978,0.803,1.134,1.034,0.991,1.02,0.95,1.789 +NM_024707,0.961,1.03,1.014,1.195,0.985,1.027,0.937,0.946,1.101,0.946,1.114,1.094,0.915,1.024,0.78,0.969,0.975,0.939,1.003,0.796,1.093,1.021,1.082,1.131,0.975,0.943,0.958,1.194,1.134,1.001,1.028,0.959,1.064,1.028,0.976,0.897,0.988,0.895,1.014,0.907,0.93,0.86,1.057,1.079,1.104,0.951,1.032,1.01,0.944,0.916,0.963,0.945,1.159,0.797 +NM_024708,1.958,2.077,2.138,1.963,2.054,2.002,1.763,2.113,2.199,2.164,1.748,2.016,1.898,1.7109999999999999,1.922,2.196,2.1399999999999997,1.9889999999999999,2.297,1.953,1.936,1.9569999999999999,2.05,2.268,1.6800000000000002,2.04,2.099,2.012,1.705,1.9869999999999999,2.197,2.076,2.443,2.05,2.082,2.0069999999999997,1.9869999999999999,1.974,1.972,2.0229999999999997,2.0060000000000002,1.908,2.152,1.7839999999999998,2.245,1.8619999999999999,2.152,2.0540000000000003,2.0999999999999996,2.0149999999999997,1.8980000000000001,2.173,1.863,2.141 +NM_024709,0.456,1.152,0.423,0.983,0.418,2.888,1.017,0.374,0.431,0.342,2.824,0.396,0.407,0.405,1.466,4.104,0.411,0.876,0.455,1.95,0.407,0.478,1.618,0.477,1.49,0.456,0.494,0.463,0.898,2.193,0.484,0.981,0.785,2.134,0.336,0.913,3.287,0.485,1.483,0.578,0.427,2.461,1.574,0.667,0.456,1.667,1.238,0.387,1.247,0.353,1.985,0.65,0.459,1.087 +NM_024710,0.615,1.134,0.671,0.873,0.758,1.146,0.574,0.719,0.679,0.951,1.015,0.985,0.914,0.571,0.815,2.296,0.818,1.118,1.401,0.749,0.661,1.0,1.678,1.114,0.963,0.98,1.118,0.663,0.431,0.9,0.786,1.134,2.248,1.462,0.219,1.012,1.09,0.746,2.062,0.76,0.888,0.965,0.772,1.73,0.828,0.918,0.856,1.0,1.31,0.902,1.064,0.758,0.98,1.621 +NM_024711,0.769,1.256,1.359,0.669,0.834,1.526,1.217,0.933,0.821,0.825,1.167,0.889,1.075,0.821,0.864,1.515,0.868,1.014,0.701,1.102,0.718,0.88,1.24,1.202,1.151,0.765,1.14,0.781,0.629,1.83,0.801,1.462,1.524,1.723,0.687,0.838,1.026,0.89,1.299,0.929,1.0,2.06,1.006,0.78,0.807,0.863,0.915,0.728,0.89,0.839,1.101,1.034,0.732,1.812 +NM_024712,0.841,1.28,1.055,1.129,0.642,1.368,0.672,0.545,0.834,0.703,1.437,0.696,0.695,0.565,0.99,1.633,0.681,0.945,0.996,1.203,0.819,0.844,1.144,0.746,1.182,1.004,0.812,0.563,0.842,0.917,0.684,0.977,1.891,1.753,0.454,1.254,1.094,0.892,2.025,0.557,0.765,1.404,1.218,1.489,0.695,1.231,0.828,0.749,0.76,0.823,1.127,0.638,0.791,1.399 +NM_024713,0.789,0.956,1.439,0.66,1.356,1.204,0.907,1.475,1.298,0.98,0.707,1.437,1.041,0.926,1.004,1.319,1.09,1.065,0.996,1.122,0.8,1.346,1.1,1.52,0.739,0.653,1.479,1.079,0.613,0.983,1.744,1.097,1.344,1.138,0.812,0.539,0.877,1.162,1.114,0.895,1.35,1.033,0.466,0.646,1.391,0.701,1.342,1.18,0.926,0.884,1.015,0.665,0.605,1.16 +NM_024718,0.851,0.937,0.881,0.779,0.802,1.408,0.572,0.685,0.967,0.767,0.907,0.967,0.883,0.689,1.004,1.281,1.056,0.9,1.199,0.875,0.951,1.341,1.099,1.148,0.892,1.178,1.073,0.751,0.852,1.261,0.757,1.417,1.339,1.289,0.55,1.696,0.874,1.008,1.783,0.879,0.895,1.129,0.709,1.757,0.862,0.855,0.947,1.165,0.831,0.964,0.917,0.715,0.813,1.513 +NM_024719,0.799,0.92,1.021,0.959,0.897,1.217,0.87,0.784,1.035,0.939,1.007,1.025,0.798,0.919,1.008,1.018,0.918,0.948,1.064,0.885,1.022,0.962,1.054,0.994,1.048,0.726,1.092,0.943,0.968,1.067,0.901,1.226,0.915,1.11,0.877,0.921,1.039,0.736,1.05,1.106,0.829,1.051,0.848,1.588,1.032,1.146,1.087,0.919,0.869,0.972,0.951,0.931,0.972,0.989 +NM_024721,1.046,1.009,1.037,0.916,1.012,0.963,0.981,1.106,0.939,0.864,1.016,0.944,0.898,0.946,1.019,1.033,1.079,1.028,0.958,0.956,0.954,1.048,1.017,1.04,1.047,0.915,1.09,0.856,0.848,1.015,1.088,1.16,0.929,1.012,1.086,0.984,1.003,1.003,0.857,1.002,0.903,1.057,0.858,1.241,0.972,0.987,0.918,0.947,1.03,0.971,1.05,0.94,0.942,0.972 +NM_024722,1.096,1.064,1.055,1.126,0.873,1.132,0.892,0.844,1.203,1.013,0.924,0.936,0.909,0.881,1.1,1.09,1.009,1.018,0.89,0.97,0.974,1.011,0.95,1.032,0.928,1.063,1.085,1.13,0.975,0.997,0.952,0.937,1.112,1.278,1.011,0.784,1.033,0.914,1.024,0.935,0.925,1.05,0.959,0.971,0.88,1.147,0.91,0.99,0.982,1.001,0.979,1.086,1.068,0.865 +NM_024723,0.811,0.96,0.837,0.967,0.871,1.252,1.037,0.765,0.783,0.83,1.173,0.851,0.8,0.902,0.845,1.188,0.939,0.951,0.893,1.089,0.874,0.911,1.239,0.86,1.135,0.941,1.029,0.887,0.954,1.495,1.012,1.394,0.984,1.401,0.744,1.168,1.013,0.893,1.763,1.127,0.792,1.159,0.979,1.253,0.879,1.146,1.058,0.876,0.952,0.841,1.102,0.976,0.82,1.151 +NM_024725,0.918,1.021,0.937,0.996,1.122,0.975,0.998,0.932,0.933,0.992,1.153,1.033,0.951,1.004,1.112,0.892,1.004,1.004,1.083,1.067,1.003,0.946,1.087,0.842,1.101,0.881,0.971,0.997,0.826,0.946,1.168,0.967,0.993,1.053,0.883,1.006,1.13,1.012,1.101,0.937,0.925,0.937,1.058,0.956,0.944,1.045,0.919,1.041,0.933,0.881,1.042,1.141,0.819,0.85 +NM_024726,0.872,0.89,1.044,1.064,0.99,1.064,1.063,1.063,0.875,1.041,1.158,0.997,1.16,1.044,1.152,0.873,0.927,0.875,0.978,1.041,1.246,0.985,1.003,0.986,1.17,0.896,0.838,0.969,1.143,1.026,1.101,1.079,1.028,0.981,1.077,0.918,1.014,1.067,0.947,1.065,1.001,0.88,0.972,0.936,0.947,0.91,0.929,0.963,0.96,0.991,1.007,1.005,1.191,0.975 +NM_024727,0.556,2.703,0.606,1.359,0.58,5.568,1.08,0.565,0.51,0.592,4.869,0.687,0.596,0.568,1.701,3.12,0.565,2.15,0.574,2.357,0.656,0.59,2.206,0.526,1.022,0.522,0.886,0.528,0.935,5.22,0.689,0.721,0.722,3.978,0.617,0.669,3.36,0.547,1.82,0.58,0.576,2.849,2.101,0.602,0.556,4.163,0.913,0.566,1.166,0.604,2.99,0.621,0.571,0.978 +NM_024728,0.942,1.051,1.317,1.016,0.988,1.004,1.123,1.165,0.851,1.209,0.97,1.064,0.962,0.978,0.955,0.881,1.231,0.946,0.914,0.978,1.008,0.938,0.837,0.968,0.888,0.954,1.275,1.034,1.265,0.923,1.106,3.626,3.939,0.924,0.864,0.865,1.029,0.992,0.822,0.998,1.053,0.864,0.985,0.756,1.034,1.009,1.233,0.907,0.801,1.199,0.982,1.273,1.406,1.311 +NM_024729,0.678,1.251,1.163,0.61,0.928,1.292,0.849,0.359,1.318,0.93,0.787,0.542,0.297,0.545,1.063,1.749,0.654,1.239,0.764,1.905,0.473,0.681,2.574,0.788,0.51,0.864,0.793,0.782,0.549,1.536,0.811,0.68,2.299,1.163,0.272,1.617,1.495,0.939,2.02,1.005,1.063,1.495,1.279,1.142,0.988,1.478,1.275,0.728,2.451,0.657,1.627,1.272,0.72,1.636 +NM_024730,0.935,1.088,0.809,0.923,0.996,1.217,1.19,0.962,0.993,1.057,1.214,0.962,1.025,1.029,0.874,1.247,0.876,0.844,0.968,1.045,0.927,0.858,1.085,0.903,1.15,0.852,1.024,1.46,0.948,0.98,0.925,1.206,0.968,1.418,0.855,1.007,1.155,1.183,0.966,0.905,0.995,1.862,0.91,0.901,0.919,1.206,1.306,0.95,0.966,0.943,1.047,1.048,0.988,0.829 +NM_024731,0.932,1.174,1.129,0.947,0.897,1.096,0.638,0.752,1.207,0.962,0.871,0.969,0.803,0.923,0.953,0.93,0.927,0.896,1.178,0.947,0.627,0.747,1.026,1.037,0.672,0.989,1.198,0.837,0.58,1.013,0.873,1.496,1.543,1.04,1.019,0.758,1.039,0.941,1.41,1.18,1.001,0.88,1.002,1.739,0.903,1.056,1.126,0.984,0.88,0.904,1.009,0.825,1.191,1.647 +NM_024734,0.331,1.333,0.437,0.904,0.339,2.006,1.605,0.341,0.431,0.394,1.755,0.373,0.323,0.302,1.003,1.649,0.379,1.139,0.375,1.943,0.362,0.441,1.81,0.384,0.94,0.336,0.535,0.369,1.574,2.002,0.31,1.988,1.34,2.843,0.349,1.301,1.72,0.453,1.92,0.624,0.477,1.969,1.465,1.654,0.421,1.215,1.174,0.322,1.546,0.325,1.898,0.921,0.418,0.989 +NM_024735,0.853,1.129,0.974,0.814,0.626,1.375,0.842,0.643,0.713,0.965,1.272,0.77,0.803,0.601,0.962,1.468,0.893,0.832,0.837,1.195,0.863,0.75,1.359,0.887,0.899,0.916,0.752,0.661,0.718,1.428,0.86,1.753,1.654,1.215,0.612,0.951,1.235,0.837,1.493,1.268,0.658,1.603,0.92,1.34,0.838,1.122,1.185,0.692,1.101,0.865,1.138,0.946,0.841,1.263 +NM_024736,0.506,0.824,0.593,0.959,0.412,1.562,0.941,0.396,0.584,0.448,1.662,0.471,0.511,0.407,0.82,1.848,0.486,0.855,0.531,1.059,0.502,0.523,1.042,0.607,0.721,0.495,0.672,0.41,0.533,1.128,0.459,1.183,1.544,1.507,0.302,1.235,1.501,0.446,1.459,1.281,0.472,1.432,0.972,1.546,0.609,1.253,1.062,0.469,1.653,0.461,1.17,0.714,0.76,1.12 +NM_024738,0.768,1.003,0.931,0.86,0.706,1.562,0.936,0.798,0.935,0.798,1.59,0.747,0.758,0.77,1.02,1.758,0.813,0.988,1.071,1.207,0.734,0.772,1.131,0.934,0.937,0.761,0.886,0.894,0.882,1.393,0.886,1.044,1.147,1.493,0.616,0.772,1.272,0.802,0.99,1.266,0.997,1.278,0.944,1.129,0.961,1.116,1.036,0.757,1.316,0.8,1.263,0.736,0.861,1.268 +NM_024740,0.642,1.039,1.12,0.632,0.899,1.149,0.802,0.525,1.147,1.042,0.858,0.889,0.622,0.595,0.939,1.647,0.771,0.923,1.117,1.101,0.509,0.904,1.59,1.175,0.72,0.748,1.102,0.915,0.559,1.671,1.0,1.267,1.665,1.474,0.309,1.102,1.107,1.096,1.289,0.783,1.003,1.204,0.791,0.762,1.017,1.134,1.044,0.713,1.131,0.736,1.266,0.884,0.749,0.765 +NM_024741,1.018,0.941,0.92,1.03,0.889,1.078,0.977,0.882,0.968,0.884,0.952,0.894,0.986,0.912,0.989,1.14,0.925,0.861,1.133,0.95,0.898,0.927,0.948,0.97,0.944,0.98,1.127,0.864,0.728,1.133,0.919,1.103,1.971,1.096,0.928,1.158,0.918,0.871,1.256,1.117,0.931,1.105,0.978,1.405,0.818,0.978,0.875,1.012,1.043,1.086,1.035,1.018,1.022,1.218 +NM_024742,1.021,0.953,1.084,0.992,1.097,0.987,0.819,0.782,1.038,1.003,0.826,0.906,0.864,0.965,0.77,1.194,1.072,0.948,1.077,0.988,1.01,1.143,0.925,1.163,0.822,1.043,1.178,0.87,0.885,0.94,0.981,1.027,1.919,1.048,0.869,0.882,0.942,1.026,1.196,1.118,1.04,1.017,0.901,0.899,1.103,0.8,0.842,1.004,0.918,1.206,1.02,0.796,0.899,1.244 +NM_024743,0.963,1.094,0.906,0.931,0.862,1.032,1.24,0.882,0.855,0.905,1.161,0.866,0.98,1.002,1.264,4.359,0.938,0.984,0.895,1.213,0.909,0.998,3.258,0.885,1.163,0.981,1.078,0.889,0.795,0.968,0.975,0.931,0.868,2.088,0.921,1.054,3.469,0.781,0.898,0.84,0.925,3.235,1.849,0.881,0.829,1.642,1.061,0.831,1.573,0.89,1.321,0.861,0.9,2.199 +NM_024744,0.985,1.044,0.934,0.875,1.065,0.952,1.186,1.175,0.92,0.939,0.993,1.055,0.995,0.823,2.951,1.017,0.945,0.957,0.914,0.997,1.104,1.061,1.045,1.263,1.002,1.073,1.008,0.825,1.15,0.769,0.946,0.988,0.96,1.191,1.095,0.919,0.912,0.981,0.958,0.943,1.094,1.239,1.346,1.248,1.065,1.07,0.952,0.784,1.198,0.942,1.159,0.991,0.91,0.938 +NM_024746,1.052,0.941,0.922,1.011,1.042,0.97,1.071,1.079,1.034,1.013,1.025,0.973,1.103,1.055,1.068,0.955,1.033,0.945,0.88,0.926,0.887,1.178,0.96,1.003,1.014,1.037,1.014,1.177,0.993,1.108,1.079,0.983,0.956,1.001,1.118,1.05,1.023,0.99,1.134,0.864,0.945,0.897,0.969,1.01,0.882,0.979,1.142,0.987,1.035,1.05,0.999,0.818,1.093,1.003 +NM_024747,0.613,1.359,1.298,0.653,0.922,1.009,0.676,0.279,0.978,1.114,1.205,0.548,0.455,0.53,0.714,1.255,0.811,1.079,1.137,0.974,0.451,0.667,1.329,0.823,0.546,0.848,1.252,0.883,0.562,1.331,0.605,1.506,0.784,1.329,0.182,1.223,1.123,0.737,1.36,0.68,1.177,1.152,0.947,1.187,1.053,1.129,0.94,0.67,0.963,0.808,1.119,0.859,0.946,1.057 +NM_024748,0.876,1.004,0.882,0.919,0.806,1.002,1.159,1.075,1.093,0.98,1.12,0.798,1.001,0.953,1.318,1.036,0.951,0.951,1.012,1.026,1.026,0.89,0.864,0.959,0.862,0.92,1.097,1.146,1.129,0.997,1.056,0.846,1.061,0.958,0.954,0.934,1.133,0.903,1.169,0.885,0.944,1.035,0.989,0.942,0.866,0.842,1.188,1.028,1.056,0.878,0.973,1.214,0.97,1.096 +NM_024749,1.075,0.994,0.976,1.189,0.997,0.945,0.997,0.957,1.011,1.061,0.93,0.965,1.06,0.877,1.416,1.144,0.977,0.968,1.115,0.975,0.95,1.085,1.075,0.914,1.096,0.969,1.024,1.116,1.413,1.125,1.007,0.969,1.205,1.06,0.928,0.956,0.933,1.066,0.953,1.097,1.064,0.995,1.051,1.01,1.033,0.985,1.033,0.97,0.939,1.105,0.929,1.009,1.003,1.088 +NM_024750,0.834,0.978,1.052,1.017,1.069,1.014,1.044,0.969,1.003,0.874,1.031,0.918,1.062,0.878,1.17,0.863,0.978,1.035,0.939,1.028,1.157,1.037,0.917,0.918,0.938,0.992,1.005,0.9,1.075,1.101,0.94,0.986,1.124,1.038,1.115,1.085,1.003,0.96,0.846,0.913,0.987,1.058,0.928,1.058,0.913,1.034,0.931,0.978,0.917,1.047,1.017,0.894,0.975,0.952 +NM_024751,1.137,1.106,1.085,0.813,0.967,1.085,1.012,0.888,1.016,0.899,1.0,1.115,1.195,0.923,0.938,1.074,0.995,0.968,1.021,1.306,1.109,0.917,1.13,0.915,0.932,1.042,0.938,1.036,0.994,1.061,1.158,1.013,1.234,0.933,1.2,1.134,1.081,0.955,0.887,0.999,1.004,1.095,0.991,0.901,0.921,0.957,1.016,0.942,1.049,0.997,0.895,1.099,1.087,1.155 +NM_024755,0.815,1.044,1.271,0.88,0.853,1.313,0.554,0.458,1.343,0.819,0.9,0.695,0.574,0.702,1.13,1.134,0.739,0.767,0.998,1.055,0.559,0.963,1.437,1.088,0.614,0.994,1.237,0.919,0.633,1.09,0.996,1.02,1.049,1.858,0.276,0.652,0.922,0.929,1.129,0.733,0.96,1.244,0.582,0.806,0.951,0.892,0.758,0.814,0.993,0.889,1.159,0.629,0.863,1.584 +NM_024757,0.931,0.978,0.854,0.9,0.937,0.959,1.095,1.021,1.048,0.868,0.973,0.938,1.025,0.873,0.827,1.122,1.065,0.888,1.108,0.922,1.085,0.938,0.903,1.043,0.975,1.055,1.002,1.11,1.125,1.077,0.919,1.178,1.1,1.069,0.884,1.192,0.926,1.069,1.158,0.972,0.926,1.053,0.906,1.054,0.953,0.994,1.111,0.937,1.04,0.999,0.982,0.948,1.059,1.021 +NM_024759,1.122,0.941,1.084,0.933,1.211,0.938,0.874,0.935,0.906,1.033,0.996,1.008,1.245,0.904,1.056,1.025,1.001,1.038,1.07,1.12,1.014,0.912,1.076,0.984,1.052,1.063,0.925,1.006,1.144,0.927,1.326,0.958,0.952,0.946,1.205,0.961,0.957,1.027,0.906,1.09,1.078,1.065,0.973,1.0,0.974,1.035,1.091,1.24,0.931,0.963,0.951,0.976,1.071,0.883 +NM_024760,1.082,1.076,0.945,0.871,1.069,0.966,0.878,0.846,1.061,1.055,0.998,0.987,0.991,0.847,0.914,0.97,0.905,0.929,0.814,0.958,0.893,1.017,1.062,1.038,1.0,1.139,0.807,1.083,0.75,1.125,0.957,0.987,1.084,1.128,1.038,0.854,0.909,1.055,1.268,1.161,0.855,0.925,0.911,1.162,0.986,1.074,0.905,1.068,0.86,0.879,0.926,0.987,0.989,1.399 +NM_024761,0.603,0.751,0.795,0.871,0.578,2.466,0.999,0.489,0.541,0.461,2.877,0.539,0.491,0.472,1.668,3.965,0.58,1.364,0.723,2.328,0.586,0.605,3.336,0.646,0.949,0.531,0.903,0.593,1.001,1.927,0.626,0.845,0.718,1.695,0.328,0.67,3.305,0.756,1.588,0.758,0.624,2.466,1.207,1.087,0.549,2.048,0.71,0.502,2.157,0.552,2.536,1.675,0.543,1.775 +NM_024763,1.11,1.069,0.851,0.889,0.989,1.205,0.918,0.975,0.916,0.961,1.104,0.932,0.965,0.929,1.257,1.088,0.993,1.016,0.948,1.081,0.923,1.021,0.904,0.945,1.076,1.109,1.195,1.068,1.211,1.072,0.896,1.051,1.034,1.051,0.968,0.873,1.117,0.958,0.931,1.122,1.136,1.028,1.087,1.049,1.086,1.007,1.0,0.99,1.113,1.03,1.017,0.933,1.09,0.977 +NM_024764,0.938,0.972,1.146,1.045,0.976,1.02,0.99,0.792,1.181,1.025,1.082,0.93,1.132,1.021,1.001,0.954,1.067,1.082,0.985,1.161,0.941,0.864,0.973,0.93,0.873,1.106,0.878,1.034,1.184,0.95,0.929,1.269,1.008,0.95,0.92,1.067,0.902,1.003,1.052,0.894,0.858,1.128,1.164,1.02,1.007,1.02,0.943,1.03,1.017,0.88,0.959,0.968,0.919,0.954 +NM_024766,1.007,1.12,0.898,1.031,0.966,1.061,0.955,0.98,0.893,0.914,1.029,1.057,1.018,1.038,0.972,1.053,0.886,0.96,0.949,0.973,1.062,0.961,1.095,0.969,1.07,1.078,0.945,0.946,1.265,0.9,1.027,0.97,1.199,0.889,0.965,1.072,1.024,1.052,1.0,0.958,1.009,1.015,0.915,1.176,0.872,1.094,0.951,0.884,1.128,0.925,0.942,1.101,0.973,1.079 +NM_024767,1.9769999999999999,2.033,1.9869999999999999,1.961,1.9769999999999999,2.142,2.008,2.0469999999999997,1.979,2.001,2.184,1.773,2.058,1.9969999999999999,1.732,1.962,2.06,2.025,2.159,1.845,1.885,1.87,2.0629999999999997,1.915,2.054,1.889,1.858,2.027,1.844,2.152,1.754,2.232,1.963,1.985,1.733,1.952,2.2670000000000003,1.887,2.003,2.128,1.972,2.161,1.975,2.146,2.0469999999999997,2.215,1.8359999999999999,2.102,2.098,1.959,2.198,2.195,2.033,1.899 +NM_024768,1.051,1.031,0.797,0.822,1.08,0.773,0.969,0.833,0.836,0.874,0.813,0.811,1.001,0.759,0.99,1.008,0.866,0.826,0.863,1.019,0.888,0.932,1.613,0.79,0.853,0.897,0.95,0.927,0.756,1.127,0.868,3.101,1.051,1.288,1.033,0.934,0.955,0.822,0.977,0.859,0.779,1.19,1.119,0.994,0.841,1.159,0.86,0.977,1.077,0.915,1.059,0.881,0.704,1.268 +NM_024769,0.761,0.873,0.874,1.081,1.014,1.121,0.949,1.078,0.813,1.022,1.117,1.255,1.014,0.87,0.968,0.794,1.009,0.997,0.885,0.801,1.173,0.983,1.07,0.865,0.99,0.985,1.064,1.181,1.241,1.067,0.913,1.347,1.102,1.039,0.947,1.09,0.943,1.12,1.02,1.17,1.055,0.993,0.807,0.733,0.92,1.035,1.072,0.959,0.866,0.945,0.9,0.996,1.189,1.091 +NM_024771,0.754,0.993,1.126,1.039,0.975,1.267,0.909,0.937,1.152,0.904,1.006,1.053,0.822,0.939,1.111,1.136,0.975,0.87,0.949,0.995,0.946,0.873,1.049,1.022,0.963,1.232,1.227,0.745,0.841,1.244,0.953,1.104,1.426,0.956,1.198,1.024,1.062,0.904,1.2,0.945,1.075,1.137,0.981,1.167,0.913,0.807,0.914,0.817,1.116,0.959,0.946,0.944,1.049,1.143 +NM_024774,0.983,1.007,1.085,1.067,1.051,0.94,1.002,0.924,1.105,1.093,0.993,0.917,0.983,0.974,0.975,0.955,0.948,0.95,0.898,1.083,0.963,1.001,1.011,1.039,0.946,1.094,1.0,0.947,1.188,0.956,0.946,0.946,1.072,1.004,0.925,1.058,0.996,1.099,1.096,0.932,1.204,1.002,1.047,0.969,0.895,0.893,0.818,0.977,0.925,1.033,1.064,1.114,0.937,0.89 +NM_024775,0.743,1.245,0.896,0.963,0.762,1.252,0.812,0.604,0.841,0.89,1.593,0.764,0.696,0.577,0.961,1.847,0.737,1.009,0.948,1.043,0.592,0.67,1.539,1.029,0.703,0.692,0.964,0.704,0.555,1.452,0.714,1.116,2.344,1.51,0.358,1.118,1.435,0.675,1.38,0.854,0.941,1.15,0.777,1.986,0.885,1.0,1.175,0.661,1.133,0.613,1.229,1.081,0.791,1.822 +NM_024778,0.868,0.965,0.859,0.895,0.873,1.333,0.924,1.052,0.883,0.794,1.311,0.896,0.926,0.944,1.143,1.435,0.867,0.92,0.844,1.098,0.944,0.69,1.061,0.838,0.989,0.883,0.903,0.926,1.226,1.052,0.842,1.109,1.613,1.162,0.94,0.997,1.236,0.871,1.847,0.942,0.855,1.003,1.231,1.152,0.879,1.22,1.068,0.902,1.376,0.91,1.081,0.937,0.888,1.301 +NM_024779,0.551,1.189,1.088,1.101,0.755,1.861,1.292,0.458,0.879,0.917,0.977,0.661,0.463,0.651,1.011,1.511,0.852,1.407,0.951,1.169,0.513,0.711,1.147,0.94,0.87,0.653,1.219,0.624,1.266,1.666,0.854,1.379,0.919,2.288,0.445,0.944,1.417,0.84,2.487,0.796,0.76,1.265,0.785,1.573,0.967,1.139,0.879,0.526,1.197,0.8,1.276,0.782,0.857,1.806 +NM_024780,0.207,1.999,0.38,0.928,0.262,1.895,0.796,0.261,0.221,0.236,1.545,0.234,0.247,0.298,1.33,1.971,0.326,0.76,0.388,1.375,0.214,0.261,1.406,0.268,0.549,0.258,0.435,0.231,0.715,2.116,0.236,1.568,1.984,1.689,0.23,0.888,1.799,0.262,1.52,0.789,0.28,1.791,2.041,1.198,0.302,1.442,1.095,0.236,1.959,0.34,1.422,1.085,0.344,0.639 +NM_024783,0.982,1.035,0.908,1.138,1.113,0.953,1.024,1.038,0.972,0.997,1.067,0.968,1.003,1.014,1.015,1.1,1.044,0.996,0.994,0.975,1.037,1.041,1.034,0.848,1.114,1.14,0.996,1.009,1.296,0.893,0.931,0.913,0.835,1.061,1.021,0.943,1.026,1.107,1.018,0.932,1.041,1.091,0.891,1.086,0.962,0.955,0.947,0.953,0.975,0.934,0.889,1.07,0.951,1.113 +NM_024784,0.739,1.255,1.064,0.866,0.916,1.177,0.81,0.724,0.916,0.92,1.008,0.864,0.695,0.641,0.812,1.071,0.909,1.086,0.921,1.441,0.668,0.805,1.2,0.96,0.851,0.759,1.06,0.934,0.652,1.284,0.747,1.07,1.416,1.446,0.618,1.252,1.002,1.116,1.084,0.948,0.967,1.2,0.858,0.855,0.799,0.968,1.061,0.821,1.03,0.808,1.174,0.84,0.668,0.824 +NM_024785,0.971,1.175,1.113,0.888,1.137,1.009,1.06,1.156,1.158,0.933,0.98,1.167,0.952,1.182,0.989,1.096,1.014,1.134,1.019,1.001,1.007,0.979,0.996,0.944,1.037,0.911,0.913,0.998,0.995,1.125,0.994,1.237,0.864,1.065,0.878,0.994,0.991,1.148,1.006,0.992,1.126,1.076,0.957,0.947,0.979,1.077,1.021,0.996,0.883,0.93,0.971,1.168,0.911,1.035 +NM_024786,0.824,1.01,0.946,0.971,0.95,1.131,1.113,1.093,0.938,0.97,0.992,0.988,0.97,0.813,1.171,1.101,0.993,0.89,0.912,0.963,0.939,1.037,0.895,0.9,1.046,1.181,1.001,0.917,0.946,0.97,1.013,1.156,0.799,0.936,0.994,1.088,0.965,1.126,1.015,0.97,0.885,0.962,1.291,0.906,1.049,1.069,0.987,0.959,1.102,0.96,0.954,0.93,1.041,1.027 +NM_024787,0.937,1.075,1.022,0.916,0.986,0.915,1.061,0.898,0.924,0.947,0.927,1.054,0.941,1.027,1.008,0.907,0.877,0.939,1.017,0.99,0.912,0.911,0.725,0.964,1.054,1.14,1.201,0.881,0.958,1.125,0.855,1.484,1.131,1.186,0.881,1.16,0.894,0.998,1.054,1.333,0.989,1.179,1.007,0.91,0.909,0.917,1.003,0.86,0.889,1.033,0.916,0.98,1.321,1.294 +NM_024788,0.933,0.939,1.393,1.034,1.094,1.106,1.007,1.119,0.962,0.907,1.021,1.091,0.94,0.864,1.094,1.101,0.947,0.836,0.949,1.132,0.897,1.247,1.038,0.977,0.957,1.054,1.123,0.864,0.773,0.929,0.936,1.163,1.11,1.018,0.775,0.819,1.009,1.286,0.973,1.17,0.978,1.267,0.988,0.968,0.967,1.029,1.099,1.049,0.931,0.87,0.96,1.038,1.051,1.709 +NM_024789,0.873,1.199,1.008,0.992,0.84,1.245,0.842,0.81,0.774,0.913,1.093,0.938,0.829,0.75,0.937,1.239,0.842,0.841,1.084,1.301,0.771,0.774,1.273,0.814,0.891,0.968,0.932,0.818,1.033,1.388,0.897,1.382,1.528,1.242,0.775,1.361,0.896,0.922,1.512,1.299,0.975,1.137,1.174,2.025,0.917,1.021,0.872,0.828,1.182,0.881,1.054,1.107,0.862,1.196 +NM_024790,0.813,1.125,0.901,0.985,0.806,0.986,0.8,0.599,1.284,1.028,1.233,0.889,0.863,0.737,1.304,1.074,0.865,0.718,0.854,1.048,0.891,0.871,1.056,1.041,0.918,1.009,1.097,0.959,1.005,1.09,0.907,1.456,2.118,1.172,0.722,1.003,1.063,0.776,1.105,1.085,0.934,1.172,0.847,0.967,0.893,1.194,0.97,0.854,1.029,0.759,1.039,0.943,0.908,1.987 +NM_024791,1.065,0.966,0.994,1.01,0.996,1.097,0.896,0.986,0.921,0.853,1.243,0.917,0.972,0.916,1.241,1.277,0.967,0.939,0.798,1.004,0.908,0.902,0.934,1.001,1.062,1.096,1.064,1.082,0.741,1.112,0.879,1.117,1.019,0.979,1.005,1.047,1.15,0.979,1.034,1.08,0.935,1.105,0.908,0.911,0.895,1.107,0.974,1.032,1.071,0.974,1.088,0.999,0.843,0.934 +NM_024792,0.68,0.955,1.557,0.823,1.121,0.829,0.6,0.626,1.386,0.996,0.81,0.916,0.698,0.786,0.852,0.995,0.829,0.891,0.82,1.086,0.53,0.916,1.827,1.221,0.51,1.109,1.111,1.278,0.367,0.834,1.104,1.62,1.123,1.148,0.219,1.273,1.027,1.161,0.74,0.788,1.16,1.491,1.0,1.22,1.003,0.65,0.949,0.678,0.775,1.045,1.261,0.659,1.209,1.195 +NM_024793,0.953,1.305,0.898,1.046,0.999,1.043,0.904,0.825,1.046,0.986,1.027,0.889,0.903,0.791,0.878,0.977,1.031,0.864,1.025,0.915,0.861,0.937,1.136,0.829,0.976,1.076,1.073,1.023,0.823,1.339,0.856,1.372,1.577,1.127,0.861,1.149,1.158,0.917,1.071,1.025,1.288,1.064,0.855,1.126,0.927,0.879,0.995,0.829,1.061,0.969,0.98,1.128,0.736,1.14 +NM_024794,2.293,0.858,4.339,0.708,3.914,0.219,0.238,1.837,3.509,3.984,0.185,1.963,1.672,1.583,1.08,0.655,5.541,2.557,6.138,0.709,1.637,2.528,0.263,3.797,0.235,3.12,4.094,3.294,0.231,0.381,2.339,0.33,1.257,0.254,1.698,0.232,0.26,2.317,0.353,0.259,5.289,0.235,0.252,0.641,4.464,0.235,2.42,2.876,0.392,3.936,0.618,1.06,4.028,0.542 +NM_024796,1.137,1.015,0.985,0.991,0.988,1.021,0.939,0.923,0.987,1.08,1.104,1.12,1.035,1.054,1.06,0.835,1.021,0.939,0.905,0.96,1.002,0.91,1.005,0.953,0.966,0.964,0.955,0.836,0.986,1.01,1.056,1.107,1.088,1.084,1.197,1.019,0.953,0.93,1.122,0.963,0.92,1.042,0.794,0.94,0.953,0.998,0.872,1.131,0.902,1.006,0.914,0.972,0.993,0.9 +NM_024799,1.013,0.896,0.903,1.087,1.028,1.002,1.11,1.104,0.871,0.973,0.844,1.147,0.888,0.996,0.994,1.067,0.991,1.041,0.838,0.853,1.099,0.932,0.918,0.936,1.038,1.069,1.03,1.008,1.019,1.064,1.064,1.062,0.926,0.957,0.936,0.925,1.076,0.814,1.02,1.077,0.967,1.075,0.841,0.966,1.095,0.997,0.886,1.019,0.977,1.075,1.001,0.952,0.861,0.978 +NM_024800,0.876,1.243,1.092,1.04,0.973,1.084,0.752,0.934,0.78,0.809,0.966,0.897,0.84,0.705,1.263,1.202,1.029,0.954,0.897,1.023,0.811,0.862,1.343,0.823,0.81,0.855,0.855,0.816,0.642,0.846,0.952,1.592,2.083,1.217,0.718,0.818,0.885,0.986,1.146,0.886,0.83,1.008,1.253,1.504,0.837,1.378,0.81,0.803,0.787,0.937,1.182,0.891,1.315,1.417 +NM_024803,0.909,0.957,0.905,1.037,1.034,2.063,1.133,0.832,0.871,0.768,3.552,0.757,0.864,1.205,3.823,9.647,0.822,0.793,0.897,1.681,1.114,1.013,2.079,0.838,1.113,1.045,0.873,0.954,1.183,1.328,0.756,0.824,0.781,1.188,0.825,1.139,5.425,0.877,1.239,0.919,0.926,2.541,3.154,0.938,1.085,3.507,2.17,0.887,3.809,0.938,2.389,0.793,0.795,1.025 +NM_024805,0.91,0.809,0.92,0.933,0.936,1.16,0.794,0.988,1.053,1.122,0.986,1.096,0.899,0.919,0.991,1.195,0.943,1.034,1.167,0.999,0.981,1.05,1.211,1.113,0.854,1.028,1.079,0.946,0.949,1.174,0.884,1.186,1.252,1.072,0.852,0.973,0.895,1.022,1.145,0.913,1.133,0.989,0.883,1.388,0.875,1.078,0.931,0.957,0.986,0.908,0.975,1.122,0.978,1.115 +NM_024807,1.015,0.943,0.908,0.898,0.98,0.904,0.907,0.973,1.089,0.953,1.034,1.131,0.89,0.853,0.936,0.818,1.073,0.968,0.832,0.986,0.782,1.06,1.015,0.978,1.097,1.058,1.085,1.166,1.174,0.938,0.898,1.239,0.938,0.953,0.926,2.417,0.844,1.093,1.187,1.056,0.97,0.988,0.89,0.989,1.068,0.982,1.03,0.925,1.057,0.992,1.056,1.072,0.875,1.038 +NM_024808,0.729,0.836,1.05,0.949,0.749,1.223,0.853,0.647,0.875,0.908,1.163,0.894,0.808,0.747,1.102,1.573,0.776,0.942,1.159,0.926,0.675,0.896,1.567,1.157,0.747,0.753,1.196,0.734,0.701,1.488,0.809,1.0,2.198,1.002,0.583,1.494,1.224,0.822,1.162,1.099,0.967,0.873,0.724,1.572,0.979,0.976,1.206,0.67,1.303,0.897,1.174,0.827,0.823,1.837 +NM_024810,0.881,0.972,0.948,1.13,0.85,1.057,0.998,0.871,1.009,1.163,0.936,0.834,1.1,1.035,1.7,0.952,0.769,1.03,0.935,1.089,1.083,0.968,1.095,0.933,1.01,0.905,1.109,1.082,0.955,1.085,1.132,1.042,1.185,0.888,1.126,0.985,1.102,1.06,0.883,0.855,1.091,1.062,1.612,1.019,0.995,0.992,0.987,1.016,1.01,0.928,0.937,0.87,1.148,1.018 +NM_024811,1.042,0.932,0.933,1.013,1.026,1.104,1.114,0.887,0.899,0.954,1.107,0.888,0.935,1.179,1.096,1.07,0.978,1.016,0.935,0.939,0.925,0.936,1.089,0.965,1.018,1.064,0.792,1.136,1.206,1.013,0.975,0.996,1.032,0.845,1.145,0.935,0.935,1.027,1.054,1.036,0.949,0.902,1.176,0.844,1.212,1.041,0.963,1.052,0.916,1.029,0.989,0.985,1.045,0.966 +NM_024812,0.999,1.088,0.999,1.137,0.958,1.144,1.228,0.806,0.759,1.09,1.05,0.807,0.985,0.887,0.957,1.094,1.094,0.975,1.037,0.922,0.936,0.98,0.964,1.071,1.095,0.919,0.837,0.906,0.971,1.042,0.892,1.037,1.103,0.995,1.063,1.004,0.971,0.985,1.043,1.031,1.021,1.055,1.04,1.018,1.056,1.023,1.046,1.04,0.952,1.006,1.054,0.972,0.883,1.06 +NM_024813,0.917,1.078,1.231,0.812,0.941,1.096,1.052,0.715,1.207,1.004,0.921,1.059,0.825,0.862,0.821,1.288,1.009,0.916,0.96,1.29,0.801,0.873,1.122,1.077,0.812,0.86,1.242,0.878,0.949,1.082,0.957,1.028,2.407,1.02,0.676,0.955,0.81,1.186,1.141,0.747,0.963,0.928,0.822,0.726,0.943,0.884,1.026,0.827,1.215,0.957,1.031,0.897,0.856,1.296 +NM_024814,1.043,0.966,0.991,0.998,0.856,0.891,0.813,0.891,0.992,1.036,1.043,0.803,0.947,1.038,0.813,0.998,0.971,1.014,0.928,0.82,0.958,0.851,1.249,1.057,1.023,0.938,0.985,1.04,0.744,1.044,0.963,1.095,1.496,1.003,0.989,1.022,0.959,0.961,1.203,1.101,0.799,1.035,0.86,1.435,0.993,0.999,0.926,1.001,0.951,0.942,0.976,1.033,0.872,1.225 +NM_024815,0.828,0.928,0.985,0.89,0.831,1.316,0.862,0.687,0.834,0.677,1.729,0.885,0.9,0.884,1.14,2.181,0.802,1.113,1.587,1.071,0.668,0.923,1.203,0.905,1.004,1.253,0.913,1.264,0.688,1.638,0.913,1.484,0.944,1.818,0.723,0.813,1.269,0.673,1.489,0.661,1.184,0.978,0.654,1.189,0.959,1.072,0.923,1.236,0.928,0.917,1.195,0.643,1.069,1.101 +NM_024816,0.696,1.03,1.177,0.722,0.852,1.084,0.525,0.519,1.229,0.937,0.931,0.801,0.61,0.756,0.948,1.159,0.89,0.861,1.094,1.368,0.498,0.765,1.186,1.073,0.704,0.828,1.331,0.988,0.548,1.233,0.897,1.623,1.314,1.407,0.33,0.663,1.035,0.889,1.125,0.803,1.059,1.219,0.827,1.06,0.896,1.307,0.921,0.705,0.949,0.783,1.177,0.6,0.86,3.746 +NM_024817,1.671,0.926,2.218,0.989,1.507,0.928,0.78,1.122,1.578,1.835,0.851,1.324,1.205,1.493,1.422,1.09,1.909,1.226,1.621,0.975,1.365,1.565,0.911,1.348,0.952,1.143,1.201,1.089,0.82,1.117,1.704,1.27,0.929,1.014,0.828,0.824,0.917,1.727,0.838,0.98,1.615,1.058,0.844,0.905,1.713,0.879,0.934,1.157,0.943,1.234,1.072,0.975,1.479,0.873 +NM_024818,0.859,1.038,1.102,0.817,0.987,1.133,0.767,0.772,1.203,0.881,0.993,0.914,0.782,0.662,1.044,1.782,0.859,1.097,1.13,1.135,0.651,0.987,1.448,0.994,0.989,0.726,1.006,0.964,0.842,1.492,1.113,1.21,1.489,1.212,1.267,0.769,1.179,0.981,1.199,0.702,0.992,1.09,0.903,1.12,1.043,1.14,0.896,1.032,1.142,0.81,1.215,0.788,0.922,1.103 +NM_024820,0.684,0.631,0.89,0.93,0.813,1.512,0.885,0.537,0.766,0.916,1.732,0.89,0.511,0.557,1.9,2.528,0.773,1.003,0.904,1.059,0.548,0.758,1.396,1.001,0.536,0.771,0.999,0.664,1.102,1.151,0.654,1.12,0.728,0.795,0.406,0.894,1.871,0.791,1.556,2.091,0.904,1.115,1.496,1.33,0.859,2.48,1.925,0.781,3.224,0.859,1.786,1.362,0.953,3.473 +NM_024823,0.946,0.901,0.941,0.998,0.937,0.987,0.999,1.0,0.998,1.019,0.95,1.002,0.889,0.881,0.898,0.869,1.157,0.89,0.996,0.909,0.966,0.931,0.916,0.983,1.076,1.061,1.184,0.868,1.077,1.024,1.003,1.013,1.009,1.184,0.919,1.041,1.012,1.124,0.878,1.075,0.995,0.969,1.072,0.911,1.043,1.146,0.917,1.203,0.983,1.166,1.105,1.068,0.922,1.024 +NM_024824,0.962,0.874,1.251,0.947,0.843,0.989,0.671,0.707,1.21,0.976,1.018,0.853,0.796,0.961,0.944,1.177,0.931,0.802,1.356,0.914,0.795,0.944,0.902,1.059,0.781,1.135,1.012,0.967,0.616,1.063,1.172,1.357,1.854,1.197,0.903,1.174,0.804,0.896,1.216,1.019,1.057,1.027,0.592,1.694,0.951,0.939,0.924,0.908,0.814,1.042,0.878,0.857,1.155,1.159 +NM_024825,1.064,0.964,0.988,1.016,1.069,0.924,0.824,0.918,1.069,1.058,1.014,1.095,1.074,0.909,1.037,0.947,1.008,1.128,1.159,0.903,0.811,1.051,0.933,1.048,0.885,0.996,1.096,1.122,0.903,1.012,1.022,1.285,0.981,0.925,1.008,0.926,0.974,1.032,0.956,1.004,0.932,0.993,1.214,1.039,0.988,0.841,1.01,1.02,0.975,1.105,1.046,0.961,0.876,0.815 +NM_024826,1.032,1.057,1.141,0.997,0.659,0.953,1.252,1.091,0.828,0.996,1.062,0.96,0.939,0.879,0.966,1.145,1.023,1.105,0.969,1.22,1.119,1.042,1.132,0.952,1.006,0.912,1.07,1.116,1.319,0.932,0.905,0.885,1.261,0.981,1.152,0.954,1.063,1.115,0.975,0.83,1.005,0.913,0.922,1.114,0.842,1.032,1.157,0.959,1.124,0.96,1.128,1.035,0.958,1.04 +NM_024827,0.874,1.007,1.358,0.79,1.029,1.091,0.655,0.941,1.103,1.093,1.16,1.0,0.949,0.852,0.899,1.288,1.149,1.045,1.208,1.129,0.723,0.964,0.959,0.89,0.637,1.066,1.416,1.082,0.608,1.2,1.041,0.989,0.915,0.979,0.991,0.743,0.956,1.251,0.936,0.751,1.214,0.911,0.781,0.703,1.001,1.41,1.318,1.173,0.973,0.997,1.024,0.795,1.023,0.973 +NM_024828,0.783,0.919,0.904,0.999,0.865,1.418,0.722,0.742,1.156,0.89,1.608,1.126,0.831,0.717,1.199,2.008,0.757,1.168,1.018,1.307,0.477,0.9,1.469,1.137,0.802,0.76,1.186,0.876,0.595,1.075,0.886,0.733,0.785,1.172,0.354,0.948,1.677,0.832,1.027,0.663,0.954,1.008,0.878,1.615,0.894,1.367,0.751,0.806,1.408,0.77,1.258,1.204,0.807,1.477 +NM_024829,0.866,0.843,1.203,0.594,0.939,1.774,0.373,0.579,0.975,0.603,1.059,0.633,0.856,0.473,0.878,1.61,1.157,0.865,1.879,1.023,0.502,0.813,1.375,0.984,0.234,0.931,1.184,0.873,0.398,0.895,1.083,0.517,2.002,1.317,1.278,0.365,1.148,0.698,2.38,0.471,1.353,1.34,0.434,1.013,1.185,1.015,1.211,1.035,0.777,1.159,1.197,0.551,1.012,1.866 +NM_024830,0.489,1.144,0.608,0.875,0.484,1.386,0.601,0.384,0.51,0.532,1.123,0.491,0.467,0.409,0.824,1.671,0.594,0.761,0.568,0.948,0.478,0.475,1.704,0.608,0.539,0.451,1.024,0.443,0.428,1.386,0.396,4.412,2.015,1.222,0.398,1.968,0.988,0.568,2.15,3.246,0.527,1.279,0.92,2.581,0.509,1.326,1.151,0.503,2.63,0.605,1.722,1.836,0.58,2.03 +NM_024833,1.057,1.284,1.187,0.891,0.914,0.859,1.16,0.92,1.157,0.9,0.754,1.03,1.156,0.829,1.043,0.933,0.986,1.313,1.023,0.985,0.98,1.073,0.871,0.986,0.908,0.93,1.98,1.116,0.589,1.199,0.874,2.065,1.758,1.262,0.756,1.248,1.194,1.166,1.028,1.037,1.291,1.356,0.659,0.876,0.797,0.922,0.993,0.801,0.721,0.874,0.969,0.903,0.963,1.197 +NM_024834,0.858,1.038,1.052,0.837,0.991,1.009,1.003,0.953,0.93,0.868,0.94,0.943,0.972,0.924,1.096,1.313,0.876,0.978,1.067,1.142,0.942,0.818,0.945,0.985,0.842,1.021,1.056,1.035,1.154,1.033,0.906,1.041,0.973,1.054,0.907,0.955,0.993,0.927,1.007,1.058,1.131,1.042,0.993,0.865,0.909,1.045,1.174,1.0,1.059,1.009,1.009,0.955,1.02,1.066 +NM_024835,0.813,0.863,1.172,0.82,0.774,1.178,0.587,0.414,1.004,0.793,1.135,0.769,0.619,0.857,0.983,1.426,0.859,0.792,1.052,0.998,0.651,0.86,1.109,0.921,0.751,0.801,1.41,0.783,0.559,1.144,0.835,1.444,2.214,1.219,0.365,0.904,1.012,0.881,1.328,0.819,0.982,1.109,1.165,1.018,0.835,1.074,0.818,0.797,0.993,0.823,1.142,0.751,0.862,1.348 +NM_024836,1.087,0.978,0.908,0.735,1.043,0.838,0.764,0.951,0.923,0.914,0.862,0.919,1.134,0.79,0.745,1.177,1.116,0.898,1.193,0.78,0.828,1.151,0.962,0.843,0.854,1.402,0.964,1.097,0.625,0.826,1.302,0.997,1.234,0.931,2.75,1.439,0.883,1.232,1.405,1.344,1.562,0.958,0.827,1.351,1.001,0.858,0.847,1.578,0.769,1.205,0.955,0.772,0.933,1.188 +NM_024838,1.044,1.362,0.997,1.037,0.924,1.182,0.946,0.79,1.026,1.093,1.105,1.088,0.817,1.054,0.807,1.315,0.932,0.851,0.997,1.064,0.973,1.009,1.102,0.978,1.024,0.917,0.986,0.906,0.908,1.365,0.904,1.097,1.682,1.046,0.899,0.973,1.122,0.966,1.204,0.912,0.998,1.11,0.852,1.194,0.854,0.96,0.891,0.95,0.906,1.002,1.111,0.827,0.876,1.031 +NM_024839,0.703,1.204,1.271,0.69,1.106,0.904,0.55,0.547,1.164,1.237,0.985,1.324,0.898,0.712,0.8,1.156,1.001,0.899,1.458,1.104,0.478,0.784,1.231,1.428,0.527,1.042,1.322,1.103,0.349,1.056,0.865,1.283,1.979,1.254,0.39,1.79,0.902,0.999,1.639,0.776,1.323,0.991,0.754,1.279,1.294,0.941,1.127,0.958,0.849,0.787,0.88,0.849,0.888,1.931 +NM_024840,0.829,1.131,1.27,0.837,0.966,1.216,0.887,0.816,1.163,0.883,1.101,1.067,0.999,0.918,0.907,0.741,0.857,1.028,1.182,1.525,0.687,1.151,0.79,0.99,0.832,0.869,1.135,0.98,1.049,1.302,0.993,1.152,1.701,1.655,0.726,1.047,1.114,0.968,1.142,0.803,1.1,1.348,0.71,0.825,0.929,0.909,1.109,0.95,0.832,0.839,0.89,1.021,0.887,0.665 +NM_024841,0.999,1.191,0.945,0.984,1.033,0.87,0.899,0.959,1.062,0.978,1.03,0.973,1.027,1.143,0.88,1.126,1.017,1.074,0.838,1.029,0.929,0.906,1.01,1.147,0.996,1.055,0.908,1.025,0.986,1.043,0.954,0.991,1.003,1.056,0.953,0.99,1.048,0.862,1.003,0.867,0.977,0.936,1.055,0.997,0.899,0.967,1.004,1.078,1.053,0.979,0.937,0.975,1.126,0.984 +NM_024843,0.563,2.409,0.985,0.958,0.833,1.259,0.882,0.609,0.753,0.726,1.176,0.661,0.687,0.717,2.964,0.923,0.59,0.682,0.891,2.202,0.771,0.657,1.905,0.707,1.116,0.63,0.855,1.003,0.482,2.531,0.813,6.031,1.478,2.913,0.409,0.541,4.311,0.895,1.27,0.714,0.994,3.165,0.785,0.548,0.675,1.994,1.326,0.581,0.538,0.56,1.239,1.154,0.738,3.077 +NM_024844,0.826,1.068,1.006,1.025,0.755,0.877,0.565,0.445,1.067,0.986,0.918,0.69,0.561,0.684,0.892,1.249,0.966,0.831,1.02,0.769,0.689,0.848,1.402,1.149,0.69,0.841,1.251,0.765,0.521,0.999,0.847,1.415,1.82,1.099,0.316,0.959,1.11,0.972,1.745,0.824,1.117,0.974,0.699,2.07,1.012,0.979,1.102,0.703,1.322,0.901,1.074,1.039,0.929,1.709 +NM_024845,0.838,0.93,0.851,0.822,0.911,1.252,0.775,1.055,0.799,0.941,1.013,1.064,0.922,0.779,0.863,1.239,0.989,0.829,1.077,0.99,0.936,1.023,1.083,0.922,1.027,1.032,0.863,0.916,0.727,1.005,0.908,1.208,1.299,1.201,0.892,1.018,0.864,0.787,1.275,0.938,0.913,1.075,0.873,1.201,0.984,0.899,1.024,1.078,0.881,0.847,0.964,1.0,0.974,0.985 +NM_024847,0.94,1.002,0.811,0.869,1.051,1.057,1.104,0.872,0.985,0.902,1.045,0.833,0.887,1.228,1.01,1.088,0.923,0.819,0.845,1.154,0.847,0.962,1.268,0.999,0.95,0.869,0.775,0.947,1.475,0.888,0.874,0.962,1.247,0.932,0.838,1.128,0.968,0.835,1.262,1.255,0.964,1.059,1.394,1.161,0.88,1.22,1.379,0.789,1.161,0.88,1.072,1.106,0.72,0.927 +NM_024848,1.04,0.985,1.072,0.897,1.063,0.978,0.873,0.945,0.989,0.949,0.959,1.042,1.097,0.969,1.088,0.933,1.001,0.995,0.964,0.999,0.968,0.858,0.913,1.006,1.141,1.047,1.084,1.067,0.887,1.037,1.016,1.21,1.906,0.966,1.08,1.021,1.019,1.002,0.972,1.058,1.264,0.915,1.261,0.824,1.039,0.888,1.014,0.916,0.924,0.971,1.072,0.913,1.03,1.198 +NM_024849,0.998,0.958,1.039,0.943,1.041,0.894,1.204,1.134,1.061,0.993,1.089,1.036,1.058,0.967,0.927,1.211,0.945,0.951,0.861,1.024,0.883,0.925,0.844,0.932,1.059,0.919,0.86,0.831,1.393,0.966,1.056,1.054,0.974,0.9,1.056,0.896,1.088,1.038,1.017,0.995,1.021,0.956,0.935,0.856,1.021,0.902,1.028,0.969,1.033,1.119,0.951,0.906,0.887,1.125 +NM_024850,0.838,2.335,0.837,3.737,0.798,4.769,2.189,0.858,0.766,0.77,8.077,0.842,0.811,0.772,2.988,6.454,0.819,2.009,0.834,4.81,0.783,0.932,7.599,0.863,0.859,0.822,0.813,0.74,3.534,8.202,0.788,0.868,1.499,0.809,0.93,0.818,4.481,0.832,6.155,0.665,0.781,4.06,3.166,0.826,0.838,5.234,2.851,0.84,3.639,0.778,3.888,0.909,0.823,1.003 +NM_024852,0.993,1.018,1.058,0.938,1.094,1.011,0.871,0.871,1.043,0.999,0.919,0.991,0.972,0.855,0.883,1.087,1.015,0.95,1.018,0.898,1.001,0.983,1.009,1.008,0.971,1.024,1.033,0.859,0.862,0.876,0.999,1.045,0.938,0.897,0.954,0.949,0.987,1.026,1.043,0.876,0.986,1.054,0.991,1.01,1.024,1.06,0.971,1.015,1.069,0.956,1.011,1.008,1.073,1.224 +NM_024853,0.918,1.09,1.08,1.051,1.099,0.948,0.896,0.918,1.141,1.177,1.151,0.951,1.11,1.122,0.804,1.008,1.103,1.124,0.958,0.931,0.932,0.986,0.857,0.958,1.1,1.055,1.133,1.037,0.915,1.073,1.038,1.189,0.796,1.017,1.031,1.027,0.824,1.145,1.083,0.959,1.014,0.869,0.901,1.093,1.103,0.981,1.28,0.854,0.991,1.089,0.994,0.881,1.152,0.974 +NM_024855,0.871,1.0,1.131,0.898,1.038,0.952,0.912,0.691,1.085,0.998,0.938,0.951,0.756,0.818,0.938,1.044,1.012,0.94,1.049,0.895,0.752,1.054,1.179,1.166,0.696,0.964,1.158,0.877,0.979,1.182,0.904,1.812,1.777,1.026,0.563,1.189,0.977,0.944,1.172,1.253,1.206,0.995,1.003,1.226,1.136,1.038,1.024,0.843,1.058,0.917,0.953,1.059,0.899,2.195 +NM_024857,1.003,0.959,1.027,1.276,1.022,0.969,1.185,0.926,1.05,1.029,0.927,1.069,1.008,1.276,0.912,1.072,1.147,0.909,0.926,1.093,0.905,1.002,1.07,0.999,1.001,0.827,1.132,1.028,1.425,1.073,0.903,1.09,1.354,0.918,1.045,0.941,0.951,1.025,0.95,0.93,1.007,0.98,0.959,0.931,0.925,0.908,0.978,0.894,0.933,1.137,0.923,1.209,0.887,1.085 +NM_024860,0.79,1.1,1.195,0.83,1.018,0.772,0.828,0.768,1.469,1.072,1.05,1.122,0.901,0.848,0.953,1.115,0.912,0.904,1.189,1.01,1.061,1.019,1.126,1.458,0.758,0.831,1.124,1.222,0.915,0.901,1.055,0.758,2.29,1.201,0.622,0.993,0.918,1.05,0.923,0.885,1.201,0.991,0.692,0.881,1.055,1.026,0.885,0.823,0.886,0.83,0.85,0.839,1.083,2.152 +NM_024861,1.21,0.87,1.234,1.032,1.159,0.879,0.817,1.243,1.505,1.121,0.882,0.945,1.404,1.217,0.824,1.064,2.527,1.231,1.373,0.898,1.299,1.607,0.91,1.287,0.882,1.534,1.202,1.121,0.918,0.94,1.607,0.877,1.23,0.932,1.413,0.832,0.876,1.396,0.773,0.947,1.234,1.002,0.989,0.906,1.502,0.935,1.054,1.67,1.027,1.53,1.073,0.969,1.043,1.092 +NM_024862,0.867,0.975,0.845,1.072,1.044,1.14,0.863,0.942,1.047,0.915,1.135,1.1,0.979,0.926,0.779,0.946,1.0,1.022,0.899,1.175,0.976,1.059,0.901,1.127,1.13,0.89,1.056,0.994,0.924,1.184,0.825,1.166,1.033,0.974,0.95,1.205,0.974,0.901,1.126,1.148,0.997,0.926,0.901,0.98,0.8,1.282,1.036,0.914,1.03,1.028,0.993,1.266,0.863,1.215 +NM_024863,0.815,1.339,1.041,0.595,1.023,0.919,0.548,0.613,1.627,1.135,1.051,1.25,0.749,0.993,1.019,0.9,0.721,0.715,1.103,0.676,0.659,0.963,1.133,1.355,0.739,1.126,1.427,1.306,0.327,1.415,1.296,3.647,1.667,2.179,0.168,0.522,0.684,1.521,0.846,0.656,1.463,1.637,0.441,1.236,1.206,0.549,1.021,0.744,0.343,0.667,1.004,0.897,1.244,1.567 +NM_024864,0.997,1.008,1.138,1.036,0.877,0.936,0.905,0.814,0.971,0.93,0.91,1.003,0.918,0.92,0.873,1.224,1.011,0.888,1.095,0.827,0.809,0.967,1.028,1.02,0.904,1.006,1.191,0.99,0.862,0.931,0.911,1.19,1.19,0.97,0.803,1.05,0.905,0.919,1.269,0.832,1.009,1.041,0.926,1.311,0.907,0.968,1.025,0.992,1.044,1.039,0.988,0.97,0.84,1.223 +NM_024866,1.054,1.051,1.102,1.105,0.9,1.135,1.013,0.875,1.088,0.805,1.026,1.006,0.948,0.873,1.129,1.153,0.952,1.028,1.085,1.005,0.965,0.954,1.096,0.877,1.064,0.822,1.037,0.825,1.739,0.952,1.007,0.803,1.068,1.016,1.044,0.914,0.997,1.196,0.962,1.026,0.991,1.098,1.18,1.058,1.198,0.91,1.011,1.113,0.978,0.696,1.006,0.858,0.953,0.932 +NM_024871,1.291,0.949,1.385,0.949,1.551,0.867,0.882,0.772,1.235,1.208,0.741,1.283,0.982,1.067,0.854,1.015,1.171,1.061,1.188,0.872,1.0,1.034,1.015,0.992,0.795,0.888,1.247,1.189,0.766,0.806,0.971,1.09,1.344,0.863,0.767,1.004,1.008,1.286,0.842,1.093,1.237,0.908,0.938,1.0,1.081,0.859,0.999,1.148,0.881,1.264,0.88,1.062,1.339,1.559 +NM_024872,1.015,1.052,1.063,1.171,0.98,1.07,0.927,0.838,0.894,0.884,0.887,1.005,1.017,0.926,1.162,0.889,0.936,1.047,1.03,1.049,0.951,1.135,1.087,1.058,1.092,0.973,1.005,0.969,0.998,1.008,0.902,0.992,0.931,0.976,0.921,0.973,0.954,1.138,0.998,1.003,0.934,0.866,0.974,0.991,0.94,0.994,1.044,0.938,1.062,0.968,0.978,1.188,0.967,1.06 +NM_024874,1.846,2.633,1.834,2.134,1.603,2.379,1.501,1.282,1.5030000000000001,1.521,2.721,1.3860000000000001,1.527,1.593,1.832,2.7119999999999997,1.6480000000000001,1.938,2.011,2.36,1.4460000000000002,1.579,2.435,1.541,2.866,1.96,1.734,1.451,1.2650000000000001,2.839,1.4860000000000002,2.521,2.54,3.1550000000000002,1.22,1.556,2.269,1.8079999999999998,3.7889999999999997,1.604,1.6059999999999999,2.887,1.81,3.466,1.5499999999999998,2.23,1.962,1.766,1.701,1.709,2.436,1.35,1.6,1.8159999999999998 +NM_024875,2.547,0.848,1.734,1.453,10.03,0.794,0.871,11.13,7.345,1.385,0.811,2.359,3.038,1.697,5.108,2.079,2.254,3.175,1.937,0.911,1.531,10.73,0.819,3.27,0.851,2.437,1.367,7.9,1.613,0.885,5.442,0.9,1.217,0.96,21.17,0.873,0.759,4.916,0.898,0.876,3.419,0.957,0.979,0.869,1.135,0.861,3.871,4.482,0.964,1.06,1.131,0.862,1.303,0.785 +NM_024876,1.138,0.91,0.924,1.048,0.903,1.201,0.61,0.753,0.936,0.792,1.031,0.864,0.981,0.855,0.795,1.179,0.99,1.123,1.046,0.961,1.064,1.012,1.178,0.914,1.153,1.041,1.113,0.847,0.948,1.076,0.733,1.142,1.278,1.141,0.707,0.898,0.906,0.908,1.5,1.108,0.797,1.043,0.8,1.093,0.825,0.819,0.808,0.923,0.811,1.174,0.945,0.804,0.983,0.825 +NM_024877,1.052,1.03,1.014,0.979,1.067,1.036,0.958,0.92,0.924,0.888,0.952,0.969,0.944,1.108,1.215,1.247,1.025,1.136,1.031,0.953,0.934,1.083,1.074,0.94,1.037,0.982,1.11,0.998,0.88,1.015,1.023,0.924,1.081,0.86,0.993,1.176,1.03,0.867,1.106,1.046,0.989,1.022,0.905,1.108,1.058,0.835,0.929,1.002,1.051,0.895,0.995,0.93,1.164,0.874 +NM_024878,0.942,0.963,1.024,1.178,0.951,1.017,0.923,0.835,0.938,1.234,0.939,0.986,1.029,0.997,0.93,1.079,0.944,1.0,1.107,1.071,1.058,1.055,1.028,0.914,0.93,1.0,0.867,1.117,0.788,0.969,0.865,0.975,1.104,1.116,1.277,1.145,0.94,0.998,0.905,0.893,1.055,0.915,1.0,0.945,1.037,1.045,0.982,1.057,1.048,0.96,1.145,0.991,1.283,0.994 +NM_024880,0.908,2.291,0.88,0.957,1.046,1.344,1.093,0.865,1.097,0.917,1.044,0.881,0.991,0.745,1.312,0.988,0.849,0.917,0.92,1.033,0.911,0.985,0.964,0.917,4.648,0.908,0.874,0.736,0.931,1.456,0.933,1.067,1.027,0.948,1.01,1.174,1.544,0.821,0.992,1.692,0.793,0.936,1.498,1.049,0.791,0.846,0.95,0.844,1.27,0.767,1.008,1.026,0.932,1.173 +NM_024881,0.616,1.277,0.928,0.703,0.908,1.411,0.632,0.813,1.037,0.886,0.997,0.806,0.66,0.653,0.723,1.414,0.793,0.818,1.278,0.819,0.679,0.897,1.331,1.198,0.86,0.766,1.014,0.883,0.602,1.648,0.873,1.422,1.61,1.476,0.542,0.82,1.178,1.138,1.107,1.359,0.925,1.038,0.742,0.838,0.9,1.062,0.923,0.775,1.068,0.705,1.175,1.12,0.733,1.446 +NM_024882,1.149,0.747,0.995,0.899,0.937,0.92,0.954,1.104,0.893,1.041,0.94,1.015,1.055,1.005,0.983,1.122,1.019,0.821,1.057,0.829,1.042,0.907,1.064,0.997,1.222,1.046,0.973,0.832,0.82,1.041,0.985,1.175,0.95,0.932,1.15,0.965,1.027,0.952,0.982,0.953,0.962,1.099,0.807,1.052,0.965,1.076,0.956,0.995,0.815,1.011,0.997,1.196,1.003,0.944 +NM_024883,1.168,1.195,1.023,0.924,0.959,1.012,1.023,0.83,1.093,1.151,1.102,0.956,1.029,0.944,0.969,1.096,1.059,1.05,0.956,0.868,0.896,0.772,0.993,1.093,1.056,0.916,0.93,0.922,0.792,1.179,0.983,1.247,1.224,1.046,0.998,0.947,0.862,0.831,1.132,1.034,1.04,1.141,0.883,1.043,1.236,1.013,0.954,1.001,1.008,0.993,0.938,0.977,0.968,0.989 +NM_024885,1.038,1.017,1.026,0.898,1.102,0.924,0.934,1.054,1.132,1.019,1.143,0.973,1.089,1.071,1.019,0.879,1.084,1.005,0.959,1.084,1.033,0.936,1.208,1.113,1.076,0.905,0.933,1.043,1.772,0.948,1.107,0.927,0.867,0.9,1.222,0.954,1.037,1.076,0.894,1.041,0.962,0.993,1.013,0.768,1.004,0.975,0.921,0.965,0.931,1.021,0.921,1.104,0.886,1.01 +NM_024886,0.928,0.8,0.903,0.97,0.94,1.016,0.924,1.031,0.906,0.98,0.948,0.911,1.02,0.91,0.842,1.072,1.006,1.045,1.077,0.946,1.151,0.91,1.078,1.084,0.951,0.946,1.063,1.045,1.116,0.929,1.115,0.942,0.939,1.03,0.813,0.955,0.99,1.02,1.145,0.92,0.979,0.942,1.014,0.981,0.947,1.005,0.887,1.027,1.004,1.124,0.916,0.869,0.9,0.989 +NM_024887,0.849,0.94,1.072,0.742,1.114,1.29,0.795,0.456,1.22,1.093,0.939,0.625,0.556,0.589,1.125,1.435,0.692,1.328,1.303,1.221,0.411,0.724,1.577,1.226,0.785,1.087,0.945,0.869,0.66,1.605,0.983,1.13,0.897,1.319,0.445,0.923,1.469,0.88,1.605,0.555,1.135,1.372,1.01,0.967,1.279,1.837,1.122,0.935,1.584,0.803,1.333,0.872,1.055,1.158 +NM_024888,1.081,0.958,1.092,0.919,0.961,0.936,1.058,1.206,0.905,1.006,1.045,0.919,0.972,0.88,0.937,0.917,0.981,1.131,1.024,1.167,1.071,0.983,1.006,1.075,1.069,1.129,0.922,0.885,1.007,1.044,1.106,1.059,1.119,0.903,1.086,1.068,0.992,1.069,1.028,0.899,1.01,0.946,1.012,0.96,0.928,1.064,1.188,1.037,1.028,1.017,0.983,0.955,0.953,1.061 +NM_024889,0.645,2.177,0.67,0.926,0.742,1.964,1.001,0.743,0.635,0.7,1.694,0.7,0.666,0.751,1.521,3.218,0.634,0.826,0.693,3.261,0.791,0.701,3.752,0.764,0.648,0.659,0.668,0.834,0.622,1.298,0.749,2.605,5.531,1.098,0.723,1.369,2.338,0.67,2.581,0.946,0.674,2.572,1.632,3.206,0.714,2.502,1.333,0.646,2.336,0.707,3.111,1.232,0.639,1.301 +NM_024891,1.016,1.041,0.945,1.07,0.997,1.042,1.015,0.914,1.048,1.029,1.025,1.104,0.952,0.862,1.059,0.954,0.99,1.008,0.989,0.938,0.935,0.929,1.067,0.991,1.085,0.886,1.02,0.96,0.667,1.043,1.115,1.106,1.051,0.874,0.935,1.081,1.111,1.041,0.901,1.147,0.922,0.887,0.809,1.043,1.014,1.055,0.872,1.095,0.98,0.993,0.964,1.147,0.952,0.883 +NM_024893,0.911,1.108,1.147,0.98,0.98,1.014,0.946,0.998,1.039,0.899,0.844,0.851,0.939,0.937,1.302,1.077,0.99,0.922,1.016,1.064,1.01,0.92,1.028,0.977,1.149,0.956,1.053,1.092,0.891,0.943,0.945,3.817,1.23,1.033,0.89,0.963,0.956,1.106,1.019,1.049,0.888,0.979,0.947,0.9,1.001,0.996,0.999,0.966,1.071,0.92,1.016,0.993,1.093,0.968 +NM_024895,1.099,0.983,0.998,0.869,1.081,1.048,0.967,0.961,0.98,0.943,1.0,1.007,1.051,1.078,0.941,0.993,1.0,1.053,1.044,0.976,1.018,0.942,1.075,1.0,0.982,1.029,1.055,0.995,0.793,0.966,0.895,1.029,0.952,1.056,0.95,1.171,0.904,1.042,0.984,0.949,1.156,1.004,0.871,0.907,1.127,0.809,0.93,1.048,1.024,0.93,0.92,0.939,1.108,1.055 +NM_024897,0.851,1.097,1.056,0.983,0.857,0.959,1.107,1.012,0.989,1.026,0.986,0.946,0.968,0.842,0.765,1.373,1.021,1.03,0.964,0.996,0.805,0.784,1.362,1.0,1.026,1.112,1.085,0.917,1.0,1.074,1.036,1.131,1.042,1.042,1.002,1.036,0.915,1.132,0.793,1.305,0.943,1.002,0.904,0.976,0.823,1.35,0.974,1.147,1.033,0.917,0.906,0.896,0.962,1.005 +NM_024898,0.84,1.046,1.173,0.839,0.77,0.995,1.074,1.104,1.172,0.947,0.978,0.85,1.038,0.813,0.878,0.9,1.118,0.876,0.885,0.977,0.808,0.921,0.916,0.952,0.957,0.933,1.27,0.903,1.17,1.146,1.055,1.211,1.105,0.918,0.969,0.91,0.835,1.024,0.86,1.309,1.034,0.877,0.854,0.972,1.101,0.792,0.947,1.104,1.051,0.833,0.889,1.046,1.196,1.17 +NM_024899,1.117,1.092,1.308,0.901,1.058,0.881,0.81,0.949,1.624,1.066,0.927,1.022,0.85,0.984,1.024,1.346,0.893,1.0,1.5,0.884,0.836,1.003,1.139,1.044,0.755,1.083,1.111,1.215,0.632,0.948,1.158,1.104,1.298,0.836,0.831,0.984,1.075,1.345,1.034,0.815,1.23,0.815,0.807,1.509,1.155,1.109,1.147,1.055,0.943,1.06,1.063,0.923,0.853,1.4 +NM_024900,0.824,1.278,1.0,0.767,1.127,1.039,0.82,0.721,1.079,0.844,1.026,0.955,0.796,0.899,0.903,0.954,0.934,0.88,1.092,0.993,0.715,0.937,1.031,0.871,1.087,0.961,1.16,1.059,0.654,1.358,0.945,2.131,1.039,1.336,0.627,0.813,1.03,1.121,1.301,0.76,1.086,1.427,0.649,1.126,0.901,0.871,1.034,0.874,1.0,0.751,1.009,0.824,0.852,0.869 +NM_024901,0.99,0.843,1.618,0.899,1.003,1.215,1.018,0.833,1.263,0.984,0.958,1.246,0.817,0.71,0.979,1.705,1.002,1.211,1.164,1.075,0.483,1.488,0.998,1.487,0.643,0.89,0.969,0.927,0.762,1.348,1.539,0.638,1.353,1.426,0.447,0.349,1.049,1.16,1.578,0.566,1.335,1.182,0.564,0.52,1.034,0.952,0.94,0.991,1.059,1.177,1.206,0.65,0.713,1.725 +NM_024902,0.402,0.899,0.434,1.023,0.465,1.965,0.805,0.558,0.473,0.545,2.002,0.52,0.515,0.495,0.927,1.916,0.453,1.159,0.393,1.409,0.478,0.477,1.664,0.545,0.893,0.528,0.442,0.477,0.746,1.442,0.467,1.097,0.768,1.668,0.497,1.499,1.528,0.487,2.366,1.076,0.415,1.601,1.286,2.177,0.501,1.529,0.904,0.451,1.183,0.46,1.799,0.771,0.488,0.71 +NM_024903,0.991,0.98,1.029,0.923,0.941,1.037,0.893,0.911,1.03,0.947,0.908,0.911,1.013,1.032,1.083,0.97,1.03,0.981,0.947,1.063,0.939,0.92,0.987,0.925,1.067,1.049,1.007,0.965,1.704,0.97,1.031,1.108,1.136,0.862,0.888,1.028,1.032,0.941,1.064,1.131,0.943,0.967,1.281,0.958,0.983,0.859,1.034,1.012,0.958,0.942,1.204,0.946,0.87,1.221 +NM_024906,0.931,0.853,1.142,1.036,1.079,0.979,0.948,0.861,1.019,1.029,1.075,1.182,1.083,0.925,0.959,1.192,0.958,0.97,0.873,1.093,0.929,1.066,1.051,0.998,1.067,1.002,0.954,0.803,1.481,0.994,1.09,1.169,0.932,0.955,1.047,0.856,1.045,1.106,0.941,1.005,0.957,1.029,1.074,0.899,1.017,1.012,1.038,0.976,1.054,1.108,1.03,1.002,0.831,1.045 +NM_024907,0.968,1.059,1.004,0.944,1.011,0.916,0.987,0.86,1.031,1.0,0.826,0.869,0.999,0.918,1.291,1.03,1.075,1.063,0.849,0.956,1.129,0.981,1.057,1.044,0.888,0.993,0.984,1.089,1.239,0.967,1.042,1.096,1.108,1.048,0.854,1.037,0.858,1.009,1.087,0.956,0.878,0.987,0.857,0.914,1.082,1.004,1.0,1.148,1.003,0.99,0.943,1.023,1.007,1.169 +NM_024909,1.01,1.005,1.028,0.855,0.854,1.08,0.968,0.902,1.046,0.925,0.97,1.064,0.895,0.946,1.065,1.061,1.068,0.948,0.995,0.913,0.82,0.921,0.877,1.059,0.939,0.892,0.842,1.009,0.817,1.1,0.886,1.305,1.386,0.967,1.03,0.869,0.817,0.866,0.926,1.087,1.014,0.969,1.116,1.104,0.951,1.011,0.869,0.967,1.038,1.029,0.917,1.051,1.041,1.134 +NM_024911,0.564,1.34,1.064,0.908,0.741,1.556,0.969,0.393,0.97,0.803,1.24,0.537,0.545,0.642,0.921,1.404,0.505,1.234,1.031,1.168,0.595,0.793,1.571,0.925,0.889,0.635,0.863,0.746,0.809,1.796,0.779,1.667,0.996,1.779,0.187,0.555,1.252,0.873,1.541,1.086,0.859,1.538,0.486,1.196,0.764,1.136,0.734,0.676,0.967,0.634,1.37,0.863,0.809,0.914 +NM_024913,0.69,1.406,0.827,0.773,0.737,1.441,1.225,0.814,0.767,0.757,2.08,0.754,0.717,0.664,1.289,1.568,0.739,0.832,0.688,1.267,0.868,0.602,1.659,0.748,1.024,0.763,0.923,0.946,0.794,2.53,0.795,3.601,1.269,2.844,0.73,0.898,1.267,1.06,1.303,0.809,1.294,2.017,0.837,0.789,0.681,1.075,0.855,0.737,0.645,0.732,1.384,1.032,0.793,1.144 +NM_024914,0.838,0.915,1.014,0.983,0.879,0.921,0.774,0.814,1.013,1.015,1.044,0.961,1.005,0.985,0.864,0.85,0.982,1.146,1.009,1.161,1.045,1.188,1.087,1.162,0.912,0.834,1.243,1.15,0.806,0.986,0.882,1.526,1.225,1.011,0.944,1.014,1.206,0.838,1.013,1.592,0.949,0.891,0.94,0.814,1.1,0.921,0.999,0.941,1.077,1.11,0.987,1.324,0.982,0.837 +NM_024917,1.014,1.002,1.106,0.913,0.828,0.932,1.064,0.932,0.974,0.992,1.033,0.882,0.918,1.151,0.775,0.998,0.931,0.944,0.891,0.943,0.913,0.798,1.051,0.979,0.996,0.914,1.155,0.859,0.747,0.983,0.88,1.123,1.309,1.124,1.003,1.088,1.143,0.87,0.99,0.983,1.019,0.94,0.983,1.244,0.912,1.04,0.814,0.946,1.149,0.989,0.988,0.918,1.043,1.14 +NM_024919,1.034,0.937,0.959,0.886,0.896,1.216,0.992,0.991,1.074,0.962,1.046,1.084,0.985,1.03,1.085,1.001,1.177,0.913,0.947,1.049,0.887,0.993,1.038,0.943,1.088,0.95,1.002,0.966,1.234,1.161,0.986,1.037,0.993,1.0,0.982,1.008,0.916,0.965,1.114,0.979,0.952,0.951,1.156,0.841,1.01,0.889,1.052,0.935,0.93,1.019,1.08,0.971,1.014,0.893 +NM_024920,0.887,1.079,1.254,1.002,0.976,1.528,1.353,1.116,0.903,0.88,0.982,1.107,0.978,0.913,1.134,1.692,1.134,0.883,0.793,1.076,0.781,1.196,0.935,1.098,0.823,0.789,1.545,0.861,0.921,1.13,1.058,1.332,1.32,1.026,0.842,0.801,1.047,1.167,1.27,1.079,0.931,1.055,0.828,0.865,1.034,1.151,1.123,0.855,1.202,0.982,1.262,0.903,0.815,1.047 +NM_024923,0.949,1.072,1.55,0.814,1.067,0.763,0.756,0.652,1.237,1.029,0.546,0.877,0.662,0.873,0.961,0.619,1.068,0.85,1.286,0.698,0.757,0.77,1.557,0.967,0.889,1.036,1.941,0.613,0.75,1.141,0.74,1.727,2.121,1.111,0.529,2.018,0.799,0.91,0.861,2.649,1.315,0.934,0.641,2.947,1.349,0.59,1.47,0.942,0.742,1.184,1.046,1.173,1.724,3.729 +NM_024926,0.959,1.054,1.093,0.915,1.048,0.998,0.978,0.931,0.958,1.113,1.0,1.0,0.938,0.929,0.955,1.157,0.987,0.948,0.966,1.062,0.84,1.07,1.01,1.06,0.83,1.067,1.157,1.036,0.932,1.031,0.999,1.104,1.376,1.078,0.789,0.967,0.962,0.992,1.082,0.901,0.994,1.132,1.085,1.215,0.952,0.969,0.968,0.955,1.061,0.934,1.075,1.028,1.24,1.162 +NM_024927,1.163,0.867,1.212,0.967,0.821,1.21,0.722,0.951,1.15,0.871,0.838,1.017,1.091,0.965,1.068,1.048,1.051,1.015,1.181,0.816,1.276,1.72,0.704,1.167,1.022,1.235,1.056,1.114,1.208,0.897,1.293,1.218,1.459,0.994,1.134,0.701,0.851,0.995,1.089,0.818,0.893,0.846,0.749,1.042,1.202,0.826,0.879,1.137,0.71,1.161,0.809,0.871,1.161,1.088 +NM_024928,1.555,0.643,1.634,1.022,2.008,1.069,0.417,2.173,3.315,1.166,0.997,1.785,2.057,1.344,1.545,1.285,1.475,1.27,2.089,0.698,0.798,2.174,0.69,1.44,0.562,2.855,1.154,2.296,0.47,0.807,2.47,0.511,0.847,1.157,4.999,1.048,0.709,2.399,1.053,0.352,1.651,0.697,0.513,0.885,1.351,0.748,1.163,3.259,0.613,1.048,0.869,0.54,1.143,0.857 +NM_024929,0.991,0.848,0.86,1.07,1.138,0.925,0.961,1.173,0.828,1.04,1.038,1.058,0.827,1.292,1.052,0.999,1.053,0.973,0.964,1.038,1.014,0.848,0.778,0.826,1.004,0.94,1.097,1.074,0.707,0.918,1.106,1.02,0.905,1.067,0.997,0.887,1.058,0.931,0.946,1.07,0.947,0.889,0.994,1.149,0.892,1.024,1.251,1.081,0.889,1.113,0.871,0.765,1.314,1.103 +NM_024933,0.874,1.131,1.039,0.95,1.156,0.965,1.18,0.978,0.88,1.036,1.112,0.931,0.956,1.039,1.018,0.993,1.073,1.029,0.954,0.95,0.924,1.01,0.94,0.959,0.97,0.974,0.942,1.03,1.228,0.935,1.135,0.988,1.084,1.016,1.095,1.075,0.956,0.987,0.98,0.969,0.944,0.876,0.877,1.093,0.919,1.137,0.982,1.201,0.953,0.963,1.029,1.016,1.001,1.034 +NM_024934,0.991,0.932,1.056,1.047,0.991,1.044,0.962,0.997,0.794,0.86,0.939,0.885,1.033,0.999,1.109,0.959,1.112,1.037,1.119,1.059,1.014,1.002,0.907,0.957,1.091,0.956,0.993,0.975,1.026,0.971,1.159,1.072,1.093,1.016,0.909,1.204,1.119,1.029,1.14,1.017,0.856,0.991,0.819,0.975,1.043,0.987,1.028,1.067,0.993,0.962,0.875,1.006,1.013,1.093 +NM_024935,1.015,1.092,1.028,0.993,1.031,0.928,0.895,1.085,0.877,1.02,0.902,0.972,1.018,1.08,0.943,0.795,1.001,1.002,0.933,0.984,1.129,0.849,0.961,1.175,1.138,0.977,1.116,0.919,1.031,1.124,1.048,0.921,0.998,0.952,1.017,1.055,1.051,0.887,1.011,0.988,1.044,1.087,1.114,0.928,1.015,1.072,0.999,0.942,0.989,0.908,0.958,0.91,1.039,0.995 +NM_024938,1.023,1.088,0.992,0.99,0.998,0.876,0.876,0.927,0.996,1.064,0.967,0.981,0.949,0.822,1.078,0.967,0.998,0.938,1.057,0.928,0.923,0.959,1.121,1.117,1.046,1.19,1.058,0.889,0.971,1.181,1.049,1.154,1.153,1.02,0.843,1.137,0.957,0.993,0.911,1.085,1.003,0.957,0.939,1.552,0.964,1.016,0.96,0.908,0.938,1.016,1.098,0.965,1.022,1.002 +NM_024939,1.068,0.668,1.758,0.751,1.336,0.882,0.579,0.679,2.465,1.791,0.921,1.176,0.625,1.02,1.086,0.998,1.397,1.114,1.779,0.9,0.782,1.506,1.052,2.111,0.458,1.248,1.722,1.408,0.554,0.678,1.326,0.419,0.961,1.09,0.368,0.414,0.733,1.451,0.873,0.36,1.902,0.908,0.524,0.45,1.906,0.955,1.018,1.097,0.836,1.082,1.002,0.552,1.323,1.036 +NM_024940,0.913,0.913,0.935,0.982,0.744,1.382,0.965,0.872,0.82,0.89,1.323,0.889,0.778,0.867,1.028,1.224,0.922,1.075,0.895,1.136,0.946,0.845,1.138,0.985,1.019,0.908,0.947,0.969,0.695,1.143,0.837,1.072,1.224,1.239,0.822,1.151,1.176,0.826,1.318,0.963,0.813,1.082,1.011,1.385,0.878,1.558,1.034,0.811,1.577,0.892,1.287,0.973,0.769,1.403 +NM_024941,0.866,1.032,1.064,1.066,0.911,1.089,0.856,0.905,1.05,1.011,1.27,0.994,0.979,0.785,1.0,1.146,0.837,0.973,0.925,1.092,0.859,0.813,1.13,0.898,0.956,0.879,0.941,0.946,0.998,0.994,0.92,1.08,1.009,1.082,0.875,1.066,1.079,0.876,0.853,0.884,1.049,1.047,0.777,0.933,0.989,1.155,0.953,0.896,1.04,1.162,1.142,0.97,0.963,1.245 +NM_024942,0.745,1.25,1.118,0.848,0.898,1.457,0.922,0.736,1.101,1.02,1.099,1.087,0.895,0.884,0.895,1.322,0.936,0.971,0.867,1.103,0.757,0.946,1.029,1.14,0.841,0.777,0.999,0.947,0.626,1.144,1.028,1.423,1.371,1.105,0.769,0.865,1.054,0.962,1.09,0.953,0.979,1.19,0.684,1.044,0.889,1.001,1.011,0.909,1.062,0.879,0.999,0.965,1.028,1.571 +NM_024944,0.926,0.838,1.182,0.976,1.088,0.943,1.019,0.886,0.947,1.067,0.96,1.139,0.892,0.994,0.862,0.947,1.106,0.882,0.969,0.859,0.992,0.956,1.015,1.114,0.869,1.038,1.145,1.107,0.728,0.995,0.92,1.187,0.876,1.025,0.911,0.951,1.087,1.119,1.104,1.054,1.162,0.998,0.747,1.08,1.034,0.916,1.235,1.048,0.911,1.078,1.035,0.814,1.036,1.006 +NM_024947,0.952,1.042,0.915,1.0,1.006,0.98,0.842,0.945,1.113,0.877,0.95,0.963,0.767,0.907,0.92,0.943,1.095,0.832,1.09,0.861,0.976,0.963,0.855,0.942,1.121,1.119,1.035,0.896,0.922,1.098,1.002,1.082,1.086,1.029,0.931,1.099,0.998,0.951,0.931,0.913,0.895,0.948,0.884,1.0,0.952,1.219,1.049,0.971,0.891,0.951,0.966,0.858,1.01,1.47 +NM_024948,0.614,1.095,1.125,0.796,0.931,1.829,1.092,0.801,1.262,0.918,1.092,1.102,0.782,0.708,1.216,1.752,0.953,1.392,0.974,1.253,0.475,1.073,1.239,1.214,0.676,0.565,1.213,0.885,0.773,1.403,1.165,1.384,0.856,1.789,0.449,0.526,1.277,0.944,1.053,0.819,1.054,0.991,0.677,0.808,0.978,1.26,0.953,0.773,0.881,0.655,1.081,0.727,0.679,1.525 +NM_024953,1.067,1.013,1.005,1.118,1.051,0.909,1.003,0.951,1.106,1.021,0.988,1.04,0.999,0.882,0.799,0.885,1.042,1.128,0.986,0.914,1.09,1.059,0.958,1.151,0.775,0.953,1.157,0.94,0.835,0.92,1.085,1.002,1.155,0.921,0.858,0.96,0.982,1.04,0.913,1.073,1.078,0.829,0.764,1.001,1.083,1.055,1.018,1.033,0.795,1.012,0.938,1.07,1.168,1.386 +NM_024954,1.105,1.018,0.972,0.867,0.881,0.94,0.75,1.014,1.122,0.803,0.956,0.961,0.933,0.771,0.949,0.926,0.978,0.941,1.157,0.825,1.204,1.083,0.854,1.021,0.917,1.365,0.994,0.925,0.627,1.045,0.895,2.372,1.076,1.144,1.127,0.962,0.774,1.186,1.22,1.319,0.905,0.892,1.046,1.661,0.941,0.828,1.058,1.429,0.823,1.269,0.95,0.996,1.115,1.161 +NM_024956,0.631,0.917,0.82,0.908,0.603,1.426,0.891,0.478,0.794,0.684,1.52,0.589,0.604,0.414,0.961,1.564,0.712,1.084,0.859,1.309,0.568,0.638,1.999,0.668,0.807,0.626,0.648,0.631,0.67,0.819,0.605,1.141,1.585,1.503,0.399,1.161,1.456,0.72,1.827,1.192,0.823,1.332,1.009,1.417,0.851,1.404,1.126,0.618,1.489,0.677,1.32,1.167,0.593,1.957 +NM_024958,0.92,1.127,0.938,1.004,0.858,1.001,1.138,0.817,0.838,0.963,0.843,0.82,0.892,0.887,0.996,1.007,0.923,0.97,0.842,0.96,0.822,0.801,0.96,1.023,1.096,0.96,0.992,0.997,0.685,1.24,0.913,2.56,1.415,1.404,0.876,1.101,1.027,0.9,1.213,1.997,0.999,1.276,1.068,1.629,0.97,0.985,1.066,0.886,0.851,0.956,0.945,1.293,1.048,1.686 +NM_024959,0.827,0.776,1.103,0.935,0.838,1.07,0.693,0.569,1.006,0.895,0.896,0.67,0.675,0.659,0.986,1.089,1.093,0.824,0.978,0.896,0.8,0.82,0.974,0.823,0.624,0.829,1.11,0.705,0.605,0.989,0.752,1.327,0.87,1.075,0.623,1.242,1.081,0.689,1.55,1.425,0.952,1.15,0.671,1.287,1.042,0.894,0.781,0.854,1.057,0.961,1.129,1.118,1.005,1.246 +NM_024960,1.026,1.106,1.117,0.978,0.859,1.0,0.967,1.1,1.0,0.971,1.073,1.038,0.924,0.992,0.82,1.083,0.934,1.097,1.127,0.869,0.984,1.076,1.013,1.026,1.108,0.929,0.813,1.059,1.376,1.007,0.951,1.005,0.978,1.019,0.933,1.023,0.97,0.976,0.99,0.927,1.087,1.087,1.169,1.011,0.906,0.927,1.121,1.144,0.975,1.08,0.937,1.107,0.814,0.988 +NM_024961,0.906,0.971,0.979,1.121,0.992,1.029,0.93,0.96,1.021,0.681,1.211,1.042,1.063,1.035,1.034,0.89,1.033,0.972,1.132,0.948,1.117,1.128,1.072,1.074,1.007,1.138,1.255,0.995,1.0,0.911,0.966,0.989,1.176,1.026,0.973,1.124,1.048,1.158,1.202,1.068,0.977,0.981,0.937,1.166,0.954,1.119,1.031,0.915,1.063,0.978,1.104,1.136,1.126,0.971 +NM_024963,0.932,1.207,1.015,1.036,0.876,0.941,0.979,1.05,0.932,1.139,0.986,0.931,1.184,0.984,1.015,1.062,1.041,1.02,1.035,0.946,1.229,0.947,1.107,1.103,0.936,1.101,1.0,1.001,0.909,1.052,0.936,0.908,0.935,1.065,1.037,1.041,0.985,0.88,1.162,1.009,1.039,1.099,0.864,0.853,1.039,0.897,1.09,1.039,0.92,0.943,1.003,0.869,1.076,1.12 +NM_024966,1.057,1.005,1.017,0.993,0.989,1.066,1.184,1.07,0.998,0.954,0.965,1.011,1.118,1.122,0.911,1.044,0.993,0.947,1.209,1.05,0.955,0.933,1.029,0.958,1.091,0.929,1.043,1.105,1.009,1.046,0.971,0.946,0.908,0.974,1.092,1.073,1.005,0.932,0.956,1.054,0.972,0.945,0.88,0.933,0.945,0.98,1.036,1.075,1.046,0.866,1.049,1.01,0.989,1.115 +NM_024967,1.253,0.922,1.195,0.902,1.034,0.941,0.916,0.975,1.105,1.002,0.919,1.028,1.041,1.059,1.049,1.069,1.084,0.823,1.06,0.895,0.956,0.992,0.98,1.105,0.96,1.049,1.125,1.016,0.881,1.028,1.162,0.954,0.827,0.961,1.105,0.96,1.01,1.126,1.025,1.069,1.139,0.913,0.876,0.9,1.247,1.06,0.976,1.043,0.967,0.845,1.033,0.874,1.056,1.279 +NM_024969,0.937,0.982,1.111,0.982,1.004,0.97,0.872,0.875,1.052,0.9,1.087,1.039,1.126,1.089,0.914,0.906,1.11,0.931,0.895,0.932,0.952,0.911,0.994,0.99,1.048,1.092,1.016,1.136,0.825,0.934,0.999,1.135,0.919,0.992,0.945,1.07,0.922,0.949,0.946,1.098,0.934,0.97,0.77,1.08,1.025,0.985,0.949,1.134,0.887,0.996,0.983,1.098,0.924,0.896 +NM_024971,2.3360000000000003,1.938,2.0250000000000004,2.177,1.94,2.057,2.1550000000000002,2.021,1.9689999999999999,1.846,2.067,1.986,2.052,1.865,1.984,1.879,1.9049999999999998,1.986,2.367,2.16,1.93,1.8569999999999998,1.9889999999999999,2.136,2.309,2.027,1.9929999999999999,1.9629999999999999,1.7109999999999999,2.024,1.839,1.931,1.932,1.9460000000000002,2.126,2.2439999999999998,2.0469999999999997,1.83,1.8479999999999999,1.9849999999999999,2.198,2.177,1.927,2.005,1.9889999999999999,2.045,2.158,2.01,2.005,2.135,1.9900000000000002,2.133,2.057,2.1180000000000003 +NM_024976,1.02,1.005,0.891,1.005,1.022,1.055,1.032,1.04,1.003,0.938,1.004,0.899,0.984,0.89,0.971,0.889,1.007,1.034,1.0,0.973,1.035,1.126,0.861,0.949,0.925,1.074,0.92,1.02,1.119,0.997,1.067,1.026,0.94,0.955,0.93,0.998,1.025,1.008,1.023,0.963,0.981,1.006,1.111,0.991,1.056,1.048,0.926,1.074,1.061,1.026,0.988,1.073,0.886,0.951 +NM_024979,0.944,1.03,0.877,0.906,1.063,1.138,1.339,0.962,0.988,0.959,1.007,1.11,0.916,0.938,1.044,0.842,0.937,1.054,0.913,0.909,1.012,0.94,1.019,1.107,1.002,0.997,1.084,1.111,0.796,1.032,0.949,1.011,1.053,1.104,1.091,0.935,1.055,1.126,1.042,0.926,1.167,0.915,0.959,0.967,0.96,0.955,1.04,1.174,0.988,0.985,0.999,0.905,0.973,0.963 +NM_024980,1.082,1.066,1.092,0.975,1.109,0.88,0.908,1.13,1.042,0.926,1.027,1.008,1.023,0.947,0.709,0.933,0.966,1.028,0.926,0.875,0.858,1.001,0.917,1.013,1.103,1.091,0.965,1.012,0.977,0.944,1.107,0.982,1.024,0.985,0.929,1.058,0.849,0.903,0.985,1.192,0.929,0.946,1.052,0.881,1.209,0.983,1.03,1.159,1.017,0.785,0.796,0.885,0.923,0.943 +NM_024988,0.923,0.967,0.847,0.923,0.933,1.009,0.886,0.9,0.973,1.049,1.146,1.092,0.992,1.079,0.858,0.995,0.958,1.052,0.991,1.113,1.01,0.944,1.213,0.957,1.002,0.942,0.908,0.968,0.759,1.135,1.018,1.0,0.897,1.152,0.855,0.948,1.061,1.003,1.058,1.123,0.917,1.105,1.052,0.893,1.001,0.949,1.084,0.982,1.193,0.941,1.13,0.846,0.807,0.943 +NM_024993,1.043,0.945,1.062,0.98,0.888,1.063,0.814,1.039,1.193,1.115,1.094,1.157,0.941,1.115,1.11,1.054,1.106,0.959,1.033,1.164,1.034,0.865,1.057,1.17,1.017,1.042,0.959,0.964,0.93,0.999,0.999,1.034,1.296,0.971,0.985,1.034,0.898,0.906,1.1,0.838,1.097,0.91,0.907,1.084,1.02,1.049,0.992,0.909,1.011,0.953,0.952,1.122,0.979,1.089 +NM_024994,0.927,1.025,1.002,0.973,1.023,1.037,1.227,0.917,1.036,1.179,1.002,1.036,1.15,1.127,1.062,1.101,0.908,1.002,0.917,0.979,1.021,0.982,1.098,1.045,1.009,0.994,0.806,1.001,0.956,1.104,0.946,1.032,1.092,0.793,1.105,1.25,1.059,0.889,0.92,0.899,1.025,0.999,0.928,0.976,0.937,1.054,0.952,0.94,0.911,0.854,0.956,1.205,1.123,0.954 +NM_024996,0.455,1.229,0.712,0.805,0.763,1.389,0.733,0.31,1.091,1.096,1.051,0.749,0.434,0.482,0.743,1.925,0.702,1.158,0.753,1.346,0.33,0.767,1.72,0.937,0.866,0.508,1.282,0.504,0.535,1.585,0.748,1.77,2.152,1.539,0.155,0.691,1.68,0.671,1.776,0.879,0.639,1.774,0.996,1.616,1.135,1.782,0.707,0.678,1.333,0.795,1.333,0.993,0.742,1.858 +NM_024997,0.593,1.515,1.003,0.911,0.623,1.941,1.001,0.536,0.7,0.596,1.576,0.655,0.579,0.719,1.089,1.385,0.689,0.827,0.709,1.542,0.478,0.877,1.276,0.796,0.863,0.606,1.088,0.581,0.648,1.587,0.629,1.739,1.557,2.039,0.492,0.605,1.828,0.574,1.31,0.836,0.767,1.574,0.921,0.645,0.69,1.147,1.032,0.596,1.678,0.612,1.388,0.88,0.686,1.438 +NM_025000,1.007,1.051,1.111,0.754,0.924,1.133,0.951,1.125,0.964,1.032,0.944,0.904,0.925,0.877,1.146,1.461,1.011,0.975,0.835,0.961,0.87,0.963,1.0,1.091,1.047,0.874,1.115,1.14,0.648,1.073,0.965,1.013,1.314,1.041,0.911,0.916,0.966,0.892,1.188,0.952,1.037,0.966,1.029,0.871,0.945,1.038,0.974,0.989,1.046,0.976,1.119,0.884,0.929,1.186 +NM_025002,1.036,0.998,0.933,0.997,0.869,0.986,0.934,1.081,0.896,0.884,1.088,1.016,0.977,0.858,1.135,1.04,0.889,1.051,1.03,1.018,1.047,0.898,0.9,0.895,0.965,1.13,1.028,0.983,0.848,0.986,1.058,1.061,0.93,1.041,0.92,1.011,0.977,1.104,0.982,1.121,1.002,1.082,1.196,0.96,0.964,0.951,0.941,0.98,0.938,1.044,1.117,0.959,1.01,0.961 +NM_025003,1.113,1.143,1.028,1.204,0.974,1.06,0.934,0.969,1.089,1.116,0.954,1.322,1.027,0.894,0.994,1.025,0.878,0.983,0.744,1.111,0.966,1.073,0.985,0.979,0.975,0.919,0.942,1.082,0.998,0.923,0.915,0.928,0.958,0.88,1.087,1.016,0.957,0.864,1.031,0.859,1.008,0.976,1.002,1.083,1.014,0.922,0.967,1.021,0.873,1.107,1.01,0.953,1.251,1.162 +NM_025004,0.975,0.816,0.997,1.014,0.991,1.074,0.936,0.965,1.102,0.962,1.09,0.977,1.01,1.029,0.807,0.963,0.981,1.01,0.942,0.783,0.928,0.959,1.032,0.966,0.967,0.947,0.931,1.017,1.134,1.058,0.871,0.938,1.2,0.929,1.02,0.868,1.057,0.873,0.982,0.987,0.942,1.028,0.799,1.012,1.039,0.91,1.047,0.928,1.017,0.959,0.888,1.083,1.168,0.906 +NM_025005,1.101,1.009,0.816,1.044,1.062,1.07,1.19,1.009,0.952,0.783,0.964,1.045,0.907,1.022,0.751,1.072,0.947,0.88,1.084,0.976,0.949,0.918,1.1,0.838,1.001,0.941,1.0,0.873,1.084,1.025,1.245,0.934,0.93,1.047,1.168,1.02,1.062,1.052,1.022,0.901,0.978,1.026,1.008,0.843,0.97,0.929,0.913,1.017,0.995,0.899,1.066,1.066,0.946,1.031 +NM_025008,0.944,0.988,1.127,0.944,0.887,1.11,1.228,1.152,1.038,0.916,0.952,0.977,0.926,0.896,0.942,0.969,0.969,1.016,0.946,1.037,1.096,0.971,0.993,0.981,1.065,1.077,1.038,0.907,0.802,0.808,1.061,0.876,0.967,0.969,1.145,1.041,1.038,1.01,0.845,1.025,1.051,1.125,0.846,0.912,1.208,1.025,0.99,0.979,1.026,0.978,0.958,0.989,1.223,1.005 +NM_025010,0.941,0.936,0.998,1.013,0.95,0.942,1.038,1.002,0.975,0.954,1.035,1.041,0.975,0.934,1.039,0.868,1.062,0.861,0.983,0.899,0.993,0.901,0.934,0.977,0.992,1.018,1.091,1.035,0.881,1.041,1.035,0.795,0.888,1.074,1.102,0.931,1.156,0.988,1.063,1.03,1.011,1.133,1.06,0.999,1.023,1.001,0.854,1.043,1.038,0.991,0.909,0.969,1.022,1.046 +NM_025021,1.056,0.989,0.989,0.913,1.033,0.933,0.873,1.028,0.996,0.9,0.967,0.819,0.759,0.927,1.213,1.177,0.906,0.987,1.029,1.178,0.913,0.968,1.079,0.784,1.093,1.019,0.981,0.767,1.069,1.122,0.943,1.223,1.411,1.107,0.881,0.986,0.942,0.969,1.209,1.134,0.781,1.009,1.093,1.226,0.934,0.958,0.879,0.949,0.92,0.879,1.044,0.911,1.157,1.136 +NM_025023,1.034,0.966,1.017,0.946,0.92,1.087,0.915,1.0,0.916,0.843,1.046,1.03,1.09,0.993,0.987,0.897,1.005,1.016,1.083,1.049,0.882,0.936,0.945,1.125,0.956,0.948,1.171,1.013,0.786,1.125,1.045,0.903,1.01,1.009,1.017,1.001,1.01,1.118,0.958,0.927,1.206,0.943,0.958,1.018,0.76,1.017,0.954,0.993,0.992,0.978,1.081,0.935,1.134,1.055 +NM_025024,1.109,1.23,1.044,0.959,0.933,1.25,1.465,0.976,1.057,1.139,0.979,0.989,1.04,0.966,1.106,1.037,1.026,1.117,1.03,0.715,0.963,1.039,0.911,1.094,0.985,1.02,0.971,0.91,0.803,0.862,1.059,1.056,1.22,1.049,0.904,0.994,1.049,0.951,1.177,0.965,0.957,0.864,1.017,0.941,1.045,0.998,0.947,0.912,1.0,0.898,1.067,1.041,0.836,1.247 +NM_025025,1.002,0.925,1.142,0.942,0.897,0.969,0.923,0.952,1.107,1.096,0.99,1.036,0.993,0.962,1.11,1.03,0.955,1.11,1.149,0.935,1.067,1.099,0.928,1.012,1.037,0.946,0.932,0.986,0.948,1.013,0.895,1.082,1.014,0.998,0.901,1.006,1.047,1.038,0.976,0.878,0.973,1.09,1.034,1.014,0.947,0.982,0.962,1.077,1.004,0.886,0.972,1.072,0.996,1.054 +NM_025026,1.232,0.978,0.94,1.04,0.929,0.856,1.339,1.238,1.094,1.113,0.918,0.896,1.017,1.006,0.947,1.047,0.874,1.041,1.12,0.894,1.052,1.085,1.192,0.992,1.051,0.897,0.906,0.889,1.211,1.056,0.994,0.931,0.996,1.099,0.909,1.006,1.151,1.042,0.983,1.034,0.896,1.066,1.025,1.039,0.921,0.968,1.086,1.045,1.121,1.118,1.04,1.035,0.865,0.849 +NM_025027,0.89,1.156,1.144,0.947,0.989,1.04,1.016,0.854,1.114,0.975,0.948,0.937,0.887,0.888,0.855,0.962,1.024,1.046,1.068,1.06,0.965,1.06,1.001,1.036,0.981,0.965,1.11,1.097,1.128,0.942,1.086,1.166,1.643,0.978,0.949,1.068,1.025,1.062,1.005,1.063,1.032,1.049,0.85,0.977,1.047,0.892,0.868,0.999,0.835,0.937,0.984,1.103,0.992,0.993 +NM_025034,0.796,1.157,0.943,1.302,0.983,1.075,0.893,0.775,1.156,0.961,1.168,0.944,0.986,0.964,1.124,1.282,0.89,0.972,1.012,1.064,1.024,0.963,0.904,0.886,1.078,0.88,0.913,0.942,1.105,1.088,0.939,0.94,1.04,0.976,1.047,1.078,1.336,1.072,1.065,1.445,1.024,1.135,1.127,0.936,0.885,0.927,1.045,0.891,0.987,0.855,0.952,1.053,0.968,1.15 +NM_025040,0.971,1.025,1.099,1.06,1.038,0.99,0.807,0.941,0.905,0.831,1.217,0.915,0.883,0.906,1.167,1.098,0.933,1.073,1.133,1.335,1.018,1.013,1.088,0.957,1.047,0.904,1.106,0.997,0.748,1.094,0.828,1.123,1.137,0.987,0.977,1.004,1.048,1.026,1.017,0.951,1.074,1.003,0.962,0.965,1.057,0.977,0.942,1.052,0.889,1.005,1.047,1.081,1.021,1.079 +NM_025041,0.852,1.162,0.877,1.028,1.078,0.955,1.008,1.022,0.823,0.936,1.012,0.973,0.834,1.172,0.888,1.294,0.85,0.96,0.815,1.076,1.151,0.956,0.994,1.214,1.008,0.901,0.957,1.011,1.426,1.107,1.023,0.951,1.031,1.111,0.939,0.878,0.908,1.07,0.965,1.002,0.969,0.975,0.876,0.898,0.83,0.825,0.833,0.902,1.041,1.04,0.98,1.024,1.238,0.932 +NM_025044,0.942,0.994,1.007,0.87,0.973,1.015,0.868,1.203,0.983,1.117,1.145,0.981,0.815,1.131,0.902,0.895,1.039,1.11,1.013,1.101,1.172,1.116,1.157,0.86,0.965,1.023,1.127,0.977,2.092,1.067,0.926,0.887,0.993,0.979,0.979,1.205,0.897,0.812,1.06,0.996,1.096,1.095,1.166,0.893,1.154,0.965,0.986,1.05,1.004,1.2,0.927,1.306,0.858,0.898 +NM_025045,0.243,0.299,0.998,0.552,1.203,1.409,0.591,0.31,1.437,0.408,2.142,0.889,0.212,1.435,1.806,3.047,0.347,0.659,0.418,1.411,0.549,1.003,1.82,0.321,0.165,0.34,0.883,0.458,0.261,1.222,0.441,0.438,0.497,0.653,2.941,1.044,1.698,2.905,1.51,0.377,1.496,1.563,1.65,0.674,0.432,1.565,1.081,2.393,1.256,0.906,1.791,0.569,1.541,0.431 +NM_025047,0.416,2.662,0.396,1.019,0.436,3.919,2.217,0.507,0.597,0.455,1.425,0.432,0.367,0.423,1.061,2.045,0.496,1.451,0.44,1.786,0.362,0.473,1.62,0.445,0.981,0.434,0.53,0.514,1.477,2.076,0.474,0.93,0.918,3.117,0.436,1.211,2.104,0.466,3.386,0.657,0.384,1.253,2.123,0.64,0.377,3.568,0.799,0.451,1.478,0.432,1.257,0.722,0.433,1.879 +NM_025048,2.38,0.796,1.699,1.165,2.467,0.823,0.874,2.036,5.689,0.942,0.906,2.688,3.138,3.313,1.592,1.009,4.914,1.09,1.558,0.921,1.071,1.581,0.865,1.275,0.91,5.351,1.58,4.519,0.991,0.839,4.416,0.784,1.299,0.808,5.878,0.773,0.912,2.52,1.181,0.76,2.598,0.834,0.697,0.973,1.979,0.872,2.019,2.965,0.97,2.068,1.054,0.957,1.172,1.3 +NM_025049,1.005,1.109,1.012,1.213,0.941,0.999,1.105,0.969,0.95,1.033,1.117,0.927,0.978,0.947,1.209,0.98,0.947,0.932,0.985,0.929,0.91,1.07,1.086,0.959,1.002,1.027,0.918,1.025,1.121,1.002,0.942,0.992,0.97,1.034,1.088,0.993,1.002,1.029,1.087,0.986,0.958,0.94,0.953,1.048,0.983,0.989,0.907,1.065,1.095,1.032,0.937,0.988,0.957,0.922 +NM_025052,0.957,0.928,0.934,0.903,1.032,0.97,1.008,0.892,0.909,1.079,0.927,1.018,0.912,0.986,0.839,1.011,0.998,1.176,0.923,1.084,0.885,1.234,0.968,1.028,0.933,1.006,1.045,0.867,1.462,1.0,1.088,0.968,0.988,1.014,1.13,1.256,0.788,1.093,1.325,1.11,1.102,0.967,0.716,1.052,0.927,1.106,1.145,0.935,0.964,0.938,1.023,0.94,1.046,1.101 +NM_025054,0.928,1.15,1.084,0.817,0.987,1.017,1.025,0.84,1.032,0.89,1.021,0.808,0.878,1.049,1.027,1.27,0.873,1.103,0.927,1.049,0.856,0.907,1.068,0.84,0.777,0.919,1.0,0.913,0.836,1.055,1.032,1.16,1.434,1.089,0.792,0.93,1.169,1.134,1.021,1.069,0.982,1.04,1.006,1.036,1.112,1.051,0.922,0.813,1.358,0.945,0.933,0.856,0.897,1.588 +NM_025056,1.055,1.119,0.948,0.932,1.088,0.962,1.001,0.918,1.017,1.09,0.999,1.012,1.064,0.902,1.007,0.992,1.061,1.095,0.998,1.003,1.086,0.993,1.058,1.106,0.914,1.025,0.978,1.063,1.928,0.991,0.959,1.096,0.919,0.921,0.948,0.977,1.13,0.826,1.052,1.129,0.968,0.927,1.031,1.149,0.994,0.879,1.035,1.082,1.11,1.154,0.937,0.965,0.882,0.875 +NM_025057,1.11,0.981,1.254,0.873,1.09,1.235,0.829,0.821,0.959,1.108,1.045,1.014,0.993,0.781,0.968,1.307,1.325,1.1,1.356,1.077,0.948,0.908,1.131,1.159,0.819,0.964,1.216,1.064,0.821,1.102,0.932,1.158,1.366,1.241,0.92,0.823,0.984,0.805,1.061,0.79,1.073,1.151,0.796,0.827,1.057,1.29,0.898,0.862,0.751,1.098,1.012,0.929,1.339,1.379 +NM_025058,0.958,1.014,1.023,1.078,0.912,1.027,1.044,0.965,0.954,0.907,1.094,0.96,0.988,0.855,0.821,0.89,1.003,1.089,1.083,1.008,1.064,1.012,0.89,1.059,0.961,0.939,1.025,0.959,1.058,1.012,1.003,0.999,0.97,1.049,1.057,0.99,1.04,1.033,0.985,1.039,0.949,1.027,1.055,1.005,1.112,1.189,0.997,1.055,1.037,1.056,0.925,0.877,1.004,0.929 +NM_025059,0.952,0.946,0.979,0.96,0.988,0.964,0.927,1.032,1.069,1.03,1.067,1.022,0.976,1.174,1.035,1.199,0.936,1.023,1.036,1.111,1.0,0.975,0.962,0.946,0.991,0.964,0.921,1.084,1.115,1.135,1.017,1.0,1.305,0.917,1.035,0.962,0.983,1.075,0.918,0.967,1.004,1.076,0.98,0.955,1.098,1.068,0.866,1.037,0.942,1.019,1.007,0.946,1.005,0.965 +NM_025063,1.087,1.13,0.99,1.031,0.997,0.827,1.01,0.969,0.924,1.034,1.042,0.914,0.981,0.791,0.882,1.151,1.087,1.09,0.913,0.863,0.917,1.014,1.047,0.994,0.999,1.124,0.973,1.044,1.32,1.009,1.088,0.923,0.992,0.926,0.925,0.953,0.984,0.943,1.035,0.995,1.136,1.03,0.969,1.034,0.984,1.152,0.936,0.941,0.971,1.157,1.004,1.03,1.021,1.078 +NM_025067,0.95,1.036,0.956,1.098,1.068,0.995,1.27,0.902,0.856,1.196,1.13,1.007,1.021,0.831,1.097,0.922,1.147,0.965,1.161,0.9,1.179,1.075,0.936,1.035,1.045,0.96,1.045,1.115,0.973,1.022,1.018,1.022,1.06,0.926,1.127,0.945,0.843,0.98,0.936,0.844,0.951,1.003,1.037,0.957,0.899,0.835,1.041,0.866,1.121,1.016,1.022,1.028,0.849,0.888 +NM_025071,1.047,1.129,0.985,1.172,0.976,1.096,0.869,0.954,0.943,0.892,0.929,1.046,0.984,0.907,1.074,1.144,1.047,1.009,0.974,1.135,0.999,0.914,0.986,0.944,1.095,0.907,1.125,0.926,0.951,1.018,0.971,1.035,1.117,1.022,1.077,0.979,1.048,0.983,0.981,0.966,0.944,1.143,1.101,0.889,1.031,1.127,0.905,0.979,1.188,0.99,0.941,1.044,1.19,1.103 +NM_025072,0.917,0.887,0.943,0.963,0.851,1.135,0.664,0.5,0.833,0.821,1.055,0.899,1.055,0.756,0.794,1.418,0.86,0.98,1.347,0.846,0.893,0.966,1.135,1.019,0.858,1.211,1.104,0.728,0.733,0.892,0.991,1.261,3.325,1.124,0.554,1.366,0.973,0.788,1.626,1.018,0.925,0.999,0.784,2.234,1.064,0.859,0.839,1.001,1.175,1.133,0.84,1.013,1.204,1.634 +NM_025073,1.007,0.99,0.992,1.044,0.914,1.119,0.91,0.946,1.014,0.952,1.115,0.949,0.971,0.93,0.99,1.0,1.014,1.038,1.103,0.907,1.058,0.956,0.987,0.982,0.993,0.976,0.951,1.003,0.986,0.99,0.94,0.865,0.978,0.967,1.023,1.012,1.038,0.935,1.025,1.087,0.927,1.075,0.863,1.072,1.213,1.065,1.012,1.042,0.836,0.993,1.016,1.056,0.883,1.019 +NM_025074,0.972,1.077,1.032,1.01,1.13,0.841,1.016,0.923,0.953,0.976,0.907,0.861,1.048,0.986,0.867,0.959,1.043,0.999,1.194,1.009,1.033,0.987,1.054,0.924,1.153,1.011,0.942,0.962,1.184,1.123,0.996,1.155,0.985,1.008,1.054,0.817,1.058,1.106,0.897,0.915,0.906,1.092,0.87,0.936,1.06,1.068,1.118,0.985,0.877,1.144,0.93,1.0,0.834,1.012 +NM_025076,0.63,1.213,0.981,0.817,0.754,1.223,0.756,0.537,1.082,0.828,1.205,0.53,0.589,0.719,0.899,1.306,0.645,0.887,1.038,1.272,0.619,0.524,1.206,0.753,0.654,0.65,0.964,0.79,0.577,1.517,0.91,1.923,1.973,1.768,0.562,1.037,0.955,0.776,1.396,0.954,1.026,1.15,0.59,1.273,0.77,1.198,1.063,0.593,0.81,0.695,1.039,0.815,0.858,1.802 +NM_025077,0.841,1.004,0.756,1.007,0.748,1.374,0.764,0.575,0.973,0.952,1.402,0.756,0.691,0.831,0.904,1.317,0.804,0.822,0.977,1.014,0.716,0.888,1.435,0.964,0.792,0.807,1.054,0.648,0.827,1.29,0.894,1.346,3.767,1.401,0.574,1.25,1.154,0.845,1.549,0.968,0.917,1.475,0.861,2.486,0.992,0.965,0.901,0.795,0.963,0.707,1.125,0.896,0.986,2.075 +NM_025078,1.421,0.608,1.325,0.641,1.219,1.104,0.441,0.839,2.265,0.999,0.914,0.999,1.011,1.463,1.208,1.825,0.966,1.211,1.59,0.838,0.494,1.276,0.865,1.175,0.395,2.18,1.271,1.801,0.372,1.073,2.388,1.254,1.181,1.083,2.66,0.546,0.838,1.105,0.882,0.837,1.206,1.083,0.603,1.488,1.121,0.767,1.188,2.027,0.59,0.885,0.836,0.878,1.112,0.916 +NM_025079,0.918,1.029,1.959,2.21,0.761,1.037,0.878,0.775,0.754,0.899,0.767,0.982,0.82,0.72,0.833,1.312,2.51,0.878,1.069,0.884,1.027,0.765,0.895,0.804,0.758,0.776,2.994,0.792,0.614,1.055,0.945,1.22,1.807,1.244,0.753,0.964,0.902,0.785,2.274,1.68,1.098,1.09,0.818,2.589,1.577,0.945,0.877,0.857,0.97,3.253,0.959,1.048,2.037,1.722 +NM_025080,0.631,1.36,0.582,1.231,0.545,1.364,1.161,0.546,0.599,0.616,1.747,0.577,0.52,0.554,1.041,1.174,0.574,1.096,0.61,1.116,0.631,0.59,2.253,0.707,0.788,0.493,0.644,0.563,0.82,1.306,0.624,1.636,2.007,1.907,0.606,0.741,1.473,0.589,1.918,0.84,0.601,2.156,1.433,1.539,0.684,0.971,1.264,0.569,1.447,0.583,1.541,1.128,0.734,1.009 +NM_025082,0.951,0.857,1.203,1.008,1.056,1.005,0.792,0.99,1.126,0.91,0.906,0.934,0.858,0.928,1.213,1.172,1.031,1.155,1.368,1.051,0.811,0.774,1.092,0.999,0.801,1.209,1.079,0.935,0.832,0.862,1.133,1.214,1.7,1.156,0.82,1.012,0.927,0.955,1.157,0.954,1.051,1.127,0.92,0.911,0.956,0.833,0.902,1.175,0.775,0.982,0.9,0.96,1.218,1.611 +NM_025083,0.835,1.069,1.279,0.769,0.946,0.9,0.634,0.476,1.197,1.039,0.87,0.802,0.631,0.676,0.872,1.044,1.0,1.085,1.045,1.0,0.604,0.909,1.622,1.056,0.535,0.904,1.347,0.819,0.48,1.523,0.921,1.333,1.425,1.279,0.295,1.064,1.346,0.99,1.318,0.845,1.295,1.196,0.73,1.053,1.038,0.986,0.95,0.685,0.915,0.766,1.017,0.937,0.868,1.648 +NM_025084,1.129,0.87,1.155,1.269,0.975,1.11,0.811,0.929,1.082,0.983,0.942,1.18,0.922,1.006,1.085,1.158,1.103,1.05,1.463,1.035,0.846,0.933,0.843,1.089,1.005,1.177,1.285,0.852,0.852,1.105,1.0,0.816,1.143,1.415,0.889,1.119,0.726,0.923,1.417,0.797,1.061,0.817,0.679,0.986,0.968,0.797,0.936,1.402,0.792,1.277,0.833,0.762,0.885,0.959 +NM_025085,0.874,1.095,1.025,0.925,1.108,0.954,0.867,0.813,1.234,1.171,0.968,0.963,0.822,0.947,0.95,1.244,0.992,0.915,1.171,0.85,1.008,0.976,1.123,1.198,0.834,0.965,1.211,0.927,0.857,0.839,1.182,1.097,1.696,0.859,0.677,1.008,1.029,0.888,1.151,0.945,1.008,1.057,1.036,1.309,1.152,0.873,0.879,1.0,1.11,0.913,1.041,0.903,1.221,1.392 +NM_025086,1.035,1.139,0.886,0.938,0.945,1.126,0.924,1.047,1.027,1.041,0.905,1.066,0.834,1.013,1.233,0.948,0.872,0.909,0.965,0.957,1.077,0.992,0.953,1.177,0.955,0.978,1.171,1.074,1.194,1.171,1.083,0.842,0.896,0.895,0.914,1.048,1.019,1.036,1.047,1.06,0.891,0.876,0.922,1.169,1.072,1.314,0.98,1.0,0.938,1.162,0.956,1.013,1.007,1.025 +NM_025087,1.988,0.492,2.346,0.818,3.383,0.32,0.52,1.599,3.794,2.747,0.329,1.619,1.192,3.08,1.909,1.008,1.435,0.834,4.64,0.417,1.224,2.722,0.33,2.873,0.784,2.153,1.928,3.329,0.739,0.369,3.383,0.286,1.672,0.666,0.396,0.333,0.443,3.3,0.315,0.313,2.443,0.312,0.312,0.335,2.21,0.334,1.854,2.546,0.332,0.992,0.91,1.236,2.309,0.466 +NM_025088,1.071,1.014,0.794,1.025,0.946,0.915,0.94,0.912,0.987,0.865,1.093,0.961,1.003,1.355,1.221,0.938,1.138,0.979,0.864,1.139,0.922,0.978,0.864,1.103,0.986,1.002,0.986,0.943,0.83,0.857,1.072,1.062,0.955,1.253,1.066,0.93,1.188,1.063,1.062,1.195,0.902,0.964,0.769,1.101,0.922,0.962,1.049,1.043,1.141,1.146,0.957,1.146,0.915,0.917 +NM_025090,1.001,0.958,1.05,0.898,0.984,1.119,1.254,1.229,1.228,1.143,0.885,1.025,0.924,0.964,0.732,0.859,0.888,1.033,0.889,1.076,0.906,0.892,1.026,1.041,0.98,0.957,0.894,1.082,1.258,1.015,1.218,1.116,1.545,0.78,0.922,0.912,0.874,0.969,1.236,1.017,0.996,1.176,1.088,0.793,1.005,0.893,0.99,1.054,0.947,0.977,0.747,0.953,1.106,1.105 +NM_025092,0.975,1.053,0.955,1.034,0.838,1.058,0.923,0.967,1.022,0.978,1.002,1.019,0.901,0.944,0.803,0.943,1.108,1.076,1.083,1.027,0.875,0.999,1.054,1.06,0.901,0.98,0.783,1.004,1.07,1.007,0.993,1.017,1.134,0.982,0.943,1.299,0.977,0.956,0.892,2.023,0.923,0.829,0.992,1.097,0.902,0.921,1.039,1.007,1.013,0.957,1.002,1.091,1.016,1.214 +NM_025099,0.751,1.014,1.071,0.773,0.943,0.926,0.733,0.563,1.03,0.996,0.787,0.899,0.603,0.808,1.076,0.77,0.951,0.973,1.004,1.107,0.737,0.772,1.156,1.054,0.614,0.837,1.186,0.843,0.754,1.663,0.962,1.565,1.493,1.186,0.587,1.233,0.905,0.909,1.099,1.293,1.037,1.287,0.691,1.144,0.945,0.957,1.541,0.71,0.792,0.798,0.906,0.927,1.034,1.937 +NM_025100,1.063,1.02,1.072,1.14,1.097,1.12,1.202,0.992,1.02,1.049,1.023,1.032,1.112,1.166,0.951,1.015,1.088,0.957,0.98,0.961,0.997,0.977,0.925,1.005,1.086,0.973,0.975,0.888,0.831,0.954,1.156,0.931,0.969,1.059,1.09,1.03,1.161,1.037,1.014,1.057,0.993,1.012,0.897,0.913,0.957,0.943,0.977,0.97,1.072,1.029,0.984,1.128,0.951,0.982 +NM_025103,0.719,1.134,1.427,0.713,1.055,1.428,0.943,0.973,1.256,1.054,1.05,1.256,0.872,0.895,1.434,1.932,1.065,1.054,0.932,1.475,0.715,1.412,1.283,1.055,0.709,0.705,1.529,1.002,0.79,1.348,1.165,1.186,1.74,1.363,0.569,0.637,1.119,1.174,1.032,0.959,0.943,1.046,1.067,0.763,0.911,0.998,0.975,0.791,0.835,0.781,1.21,0.901,0.628,1.52 +NM_025104,2.058,2.1559999999999997,2.058,2.3,1.927,2.197,1.826,2.0060000000000002,2.04,2.1020000000000003,2.174,1.9449999999999998,2.059,1.939,2.064,1.93,1.886,2.246,1.653,1.93,2.041,2.1159999999999997,2.0359999999999996,2.137,1.896,2.125,2.045,2.0700000000000003,2.627,1.9300000000000002,1.6869999999999998,2.121,2.2880000000000003,2.016,2.1470000000000002,1.9529999999999998,1.9649999999999999,2.104,1.8279999999999998,2.248,2.084,1.861,2.225,2.181,1.964,1.888,2.019,2.143,1.866,2.286,2.203,1.947,1.978,2.0949999999999998 +NM_025106,0.954,0.724,1.385,0.861,1.049,0.847,0.681,0.968,1.641,1.214,0.748,0.909,1.01,1.089,1.425,1.127,0.983,0.947,1.49,1.098,1.043,1.29,0.845,1.168,0.75,1.226,1.618,1.337,0.577,0.877,1.4,3.691,1.198,0.909,0.884,0.802,0.887,1.142,1.071,1.414,1.252,0.825,0.918,0.88,1.181,0.837,0.891,0.998,0.878,1.074,0.832,0.873,1.318,2.079 +NM_025107,0.929,1.013,0.929,1.077,0.999,1.156,1.076,1.057,1.046,0.674,1.007,1.007,0.976,0.863,0.861,1.089,0.9,1.028,1.072,1.123,0.839,0.854,0.901,0.936,1.023,1.087,0.918,1.057,0.833,1.035,0.978,0.935,0.899,1.123,0.965,0.892,0.983,1.001,0.994,1.171,0.928,1.062,0.992,1.139,0.762,0.863,1.032,0.976,1.032,1.144,0.967,1.28,1.062,1.051 +NM_025108,0.948,1.085,0.882,1.0,0.927,1.065,0.968,0.746,1.06,1.008,0.723,1.0,0.895,0.821,0.878,0.998,0.975,1.104,1.022,0.861,0.978,0.87,1.543,1.136,1.007,0.968,1.411,0.879,0.685,0.949,0.977,1.418,2.027,1.083,0.72,1.364,0.84,0.902,1.613,0.965,0.95,0.97,0.872,1.808,1.191,1.028,1.032,0.914,1.07,0.99,1.042,1.234,0.931,1.567 +NM_025109,0.908,0.936,1.175,0.937,0.945,0.893,0.717,0.729,1.381,1.165,0.777,0.902,0.743,0.779,1.065,0.978,1.016,0.969,1.238,0.837,0.757,0.892,1.087,1.484,0.916,1.106,1.496,0.817,0.598,0.864,1.127,1.272,2.177,1.072,0.576,0.903,0.878,1.187,1.547,0.804,1.195,0.76,0.656,1.776,1.299,0.92,0.885,0.994,0.882,1.276,0.908,0.877,1.138,1.73 +NM_025112,1.03,1.125,1.04,0.997,0.937,0.849,0.889,0.883,1.116,0.851,0.91,0.972,0.897,0.714,1.061,1.037,1.107,1.001,1.173,0.984,0.884,0.996,1.156,0.907,0.881,1.145,1.062,1.058,0.589,0.932,0.938,1.234,1.566,1.005,0.761,0.975,0.964,1.027,1.111,1.003,1.057,0.98,0.856,1.437,1.027,0.9,0.833,1.107,0.951,1.104,0.95,0.915,0.921,1.368 +NM_025113,1.085,0.997,0.995,1.018,0.984,0.903,0.855,1.055,0.911,0.929,0.959,0.968,0.94,0.889,1.123,1.096,0.935,0.952,0.949,0.993,1.049,0.912,1.068,0.92,1.122,0.932,1.218,0.873,0.922,0.836,1.056,1.452,1.129,0.896,1.157,1.01,0.981,1.022,0.917,2.118,0.951,1.088,1.083,0.962,0.965,1.152,0.987,1.053,1.048,0.958,1.058,1.149,0.984,1.102 +NM_025114,0.808,0.998,0.972,0.85,0.826,1.398,0.948,0.885,0.842,0.802,1.028,0.902,0.982,0.854,0.898,0.912,1.015,0.9,1.002,1.199,0.948,0.826,1.029,1.077,0.977,0.879,0.976,0.936,0.887,1.143,0.906,1.185,1.369,1.141,0.86,0.962,1.073,0.837,1.089,1.106,0.989,1.07,1.047,0.887,0.961,0.935,1.006,1.028,0.959,0.942,1.119,0.841,0.809,1.206 +NM_025117,0.925,0.97,1.13,0.994,0.903,1.02,1.027,1.136,1.099,1.04,1.003,0.863,0.946,1.03,0.989,0.994,1.001,0.968,1.173,1.086,1.107,0.84,1.001,0.994,0.982,1.105,1.152,1.062,0.874,1.085,1.152,0.954,0.945,0.899,1.062,0.952,1.158,1.134,0.978,0.969,1.029,1.0,1.257,0.991,0.937,1.035,0.932,0.718,1.068,0.933,0.991,0.981,0.98,1.138 +NM_025124,1.348,1.099,1.172,1.004,1.03,1.132,0.46,1.117,1.358,1.006,0.824,1.394,1.571,0.973,0.901,1.097,1.131,0.979,1.762,0.558,0.951,1.567,0.6,1.43,1.013,1.906,1.077,0.971,0.831,1.099,1.032,1.011,1.374,1.563,0.671,1.186,0.691,1.613,1.251,0.405,1.334,0.802,0.443,1.136,1.02,0.57,0.774,1.684,0.517,1.064,0.65,0.45,0.882,0.837 +NM_025125,0.896,0.896,1.687,0.587,1.749,0.906,0.557,1.257,2.169,1.635,0.708,1.415,0.919,1.029,1.237,1.207,1.189,1.228,1.893,1.027,0.78,1.629,0.961,1.458,0.56,1.23,1.276,1.832,0.524,1.063,1.998,0.914,1.2,1.089,0.733,0.659,0.738,1.374,0.836,0.466,1.612,1.157,0.624,0.545,1.651,0.718,1.022,1.323,0.624,1.278,0.95,0.632,1.045,0.937 +NM_025126,0.58,0.875,1.013,0.739,0.702,1.446,0.705,0.447,0.913,0.776,1.413,0.813,0.516,0.645,1.033,1.812,0.824,0.788,0.93,1.144,0.474,0.685,1.389,0.929,0.57,0.554,1.416,0.626,0.52,1.342,0.796,1.394,1.565,1.299,0.288,1.227,1.498,0.843,1.104,0.934,0.89,1.295,0.937,0.771,0.721,1.353,1.075,0.532,1.372,0.591,1.346,0.863,0.74,1.526 +NM_025128,0.445,1.239,0.903,0.827,0.583,1.58,0.816,0.322,0.757,0.906,1.229,0.641,0.507,0.491,1.006,1.303,0.638,0.851,0.719,1.241,0.382,0.609,1.4,0.919,0.705,0.553,0.967,0.622,0.649,1.461,0.603,1.796,1.364,1.462,0.223,1.585,1.277,0.641,1.769,1.115,0.796,1.317,1.12,1.39,0.62,1.376,1.077,0.521,1.053,0.548,1.176,0.689,0.874,1.697 +NM_025129,0.972,1.13,0.959,0.949,1.148,0.904,1.176,1.118,1.065,1.021,0.875,0.991,0.914,0.976,0.936,1.087,1.007,1.114,0.864,0.919,1.018,0.977,0.905,0.926,1.14,1.202,1.205,1.037,1.085,1.025,0.886,1.16,1.023,1.044,0.844,0.923,0.932,1.074,1.011,0.97,1.075,1.16,0.909,1.099,1.069,0.815,0.854,1.007,0.835,1.15,0.91,0.899,1.011,1.044 +NM_025130,0.598,1.082,0.532,0.915,0.597,2.264,0.588,0.607,0.574,0.5,3.382,0.572,0.526,0.513,2.504,6.175,0.664,0.76,0.565,1.898,0.458,0.628,3.877,0.556,0.676,0.55,0.53,0.688,0.747,1.503,0.549,0.941,1.697,1.051,0.648,2.915,4.452,0.706,3.684,1.451,0.472,2.323,2.447,3.183,0.612,3.82,2.707,0.55,6.158,0.516,3.091,1.267,0.579,3.68 +NM_025132,0.797,1.018,1.416,0.784,1.107,0.94,0.914,0.889,1.156,1.259,0.897,0.958,0.913,0.96,1.154,0.857,1.108,1.099,0.962,1.082,0.969,0.969,0.972,1.003,0.827,0.78,1.514,1.07,0.67,0.968,1.071,1.821,1.426,1.231,0.703,0.849,0.844,1.153,0.875,1.037,1.068,1.021,0.993,0.996,0.973,0.94,0.974,0.914,0.674,0.859,0.983,0.948,1.099,1.271 +NM_025133,0.794,0.883,1.363,0.697,0.999,1.085,0.617,0.643,1.222,1.054,0.896,0.843,0.579,0.87,1.017,1.116,0.808,0.925,1.064,0.987,0.581,0.762,1.323,1.046,0.662,0.781,1.425,1.055,0.412,1.119,1.098,1.11,1.496,1.075,0.58,0.889,0.918,0.908,1.295,1.114,1.107,0.957,0.794,0.97,1.04,1.02,0.994,0.797,1.015,0.978,1.067,0.853,0.843,1.596 +NM_025134,0.86,1.003,1.239,0.604,0.9,1.463,0.807,0.773,1.113,0.77,1.504,1.064,0.771,0.733,1.076,1.391,0.623,1.064,1.162,1.415,0.705,1.025,1.063,1.168,1.0,0.861,1.224,0.816,0.561,1.236,0.962,0.996,1.11,1.205,0.288,0.785,1.116,0.979,1.232,0.747,0.887,1.293,0.631,0.928,0.815,0.932,0.679,0.748,0.756,1.066,1.106,0.825,0.895,1.362 +NM_025136,1.024,1.005,0.944,0.886,0.9,1.043,0.971,0.806,0.995,1.02,0.969,0.964,0.984,0.926,0.936,1.058,1.135,0.981,0.951,0.916,0.973,1.109,1.014,1.017,1.032,1.138,1.128,0.899,0.87,0.978,0.945,0.948,0.941,0.922,0.802,1.021,1.033,1.196,1.299,1.06,1.039,1.009,0.972,1.133,1.076,1.058,1.009,0.956,0.946,0.957,0.993,0.869,0.969,0.922 +NM_025137,0.83,1.352,1.403,0.996,0.78,0.973,0.813,0.636,0.934,0.889,1.013,0.709,0.683,0.859,1.125,1.235,0.946,0.928,1.019,1.335,0.834,0.765,1.469,0.83,0.872,0.786,0.913,0.909,0.845,1.174,1.009,1.004,1.298,1.426,0.652,0.756,1.101,0.78,1.252,0.825,1.094,1.171,0.902,1.02,0.967,1.158,0.957,0.758,1.098,0.854,1.023,0.84,1.013,1.591 +NM_025138,1.015,0.911,1.076,1.045,0.793,1.164,0.995,1.01,1.152,1.069,1.069,0.976,1.002,1.194,1.084,1.016,0.924,1.184,1.104,1.118,1.092,0.964,0.91,0.994,1.203,1.083,0.873,0.99,1.103,1.021,1.003,1.085,1.086,1.132,1.031,1.003,0.978,1.083,0.939,1.147,0.985,1.103,1.01,1.163,1.02,0.89,0.982,0.912,1.106,0.899,0.929,0.929,0.986,0.722 +NM_025140,0.908,0.791,1.018,0.899,0.837,1.483,0.65,0.743,0.865,0.858,1.053,0.729,0.727,0.884,0.854,1.17,0.938,0.846,1.029,0.998,0.868,1.007,1.217,0.966,0.935,0.902,1.186,0.802,0.535,0.995,0.86,1.937,1.305,1.543,0.617,1.131,0.925,1.026,1.299,1.006,0.776,1.299,0.93,0.969,0.797,0.963,1.143,0.926,0.709,0.879,0.851,0.803,1.032,1.133 +NM_025141,0.48,1.227,1.08,0.836,0.626,1.382,0.598,0.5,1.018,0.798,1.498,0.682,0.617,0.683,1.144,2.103,0.66,0.643,0.954,1.102,0.456,0.595,1.708,0.864,0.7,0.583,1.215,0.763,0.377,1.106,0.947,1.808,1.493,2.077,0.196,0.652,1.093,0.586,1.664,0.982,0.931,1.468,0.599,0.77,0.712,1.203,0.826,0.487,0.896,0.654,1.095,0.722,0.923,2.313 +NM_025145,1.061,1.18,1.001,0.997,1.121,1.187,0.91,1.099,0.967,0.912,0.976,1.051,0.895,1.093,0.98,1.111,1.053,0.989,0.979,0.961,1.03,1.038,0.905,0.983,0.985,1.099,0.834,1.011,0.995,0.884,0.959,1.039,1.006,0.996,0.96,1.277,0.914,0.977,1.02,0.957,0.916,0.999,0.972,1.032,1.154,1.08,0.901,0.987,1.119,1.004,1.01,1.036,0.983,1.101 +NM_025146,0.835,0.873,0.99,0.878,1.115,0.987,0.87,0.814,1.052,1.119,0.92,1.051,0.838,1.131,0.955,1.162,0.953,0.953,1.069,0.785,0.886,0.854,0.904,1.236,0.721,1.037,1.079,0.981,0.688,0.866,1.255,0.956,1.889,0.939,1.037,1.024,1.07,0.936,1.259,0.805,1.199,0.899,0.866,1.355,1.093,0.919,1.041,0.923,1.173,1.033,1.055,0.885,1.131,1.404 +NM_025147,0.669,1.458,1.002,0.838,0.769,1.345,0.796,0.752,1.023,0.665,1.095,0.856,0.788,0.601,0.984,1.237,0.759,0.965,0.827,1.01,0.397,0.726,1.153,0.91,0.851,0.832,0.939,0.925,0.536,1.151,0.938,1.555,1.471,1.395,0.95,0.857,1.311,0.767,1.485,1.608,0.789,1.06,1.01,1.214,0.981,1.545,0.846,0.795,1.209,0.879,1.089,1.015,0.901,3.161 +NM_025150,0.894,1.107,0.959,0.746,0.971,1.238,0.806,0.789,1.195,1.066,0.811,0.96,0.885,0.989,0.985,1.011,0.913,1.055,0.992,1.112,0.736,1.002,1.071,1.226,0.787,0.814,1.141,0.865,0.857,1.155,0.863,1.464,1.591,0.987,1.085,1.022,0.868,1.005,1.506,0.98,1.062,0.911,0.722,1.22,1.041,0.706,1.116,0.87,0.993,0.954,1.009,0.734,0.942,1.059 +NM_025151,1.142,1.063,0.913,0.893,1.583,1.065,0.706,0.846,2.64,1.509,0.826,0.609,0.662,1.449,1.067,0.829,0.989,0.874,0.832,0.856,0.838,0.858,0.914,1.087,0.697,1.377,1.089,1.954,0.623,1.208,1.65,0.852,1.052,0.998,3.198,0.58,0.882,1.071,1.633,0.517,1.34,0.966,1.154,0.842,0.999,1.181,1.541,0.938,1.359,0.789,1.071,0.811,0.874,1.463 +NM_025153,0.802,0.905,0.95,0.994,0.853,1.55,0.885,0.961,0.994,0.844,1.065,0.838,0.917,0.991,1.383,1.235,0.911,1.168,0.896,1.056,0.954,1.062,0.95,1.036,1.051,0.94,0.824,0.941,0.797,0.957,1.05,0.749,1.248,0.918,0.816,0.947,1.553,0.867,0.873,1.09,1.037,0.981,1.111,0.903,0.941,1.075,1.026,0.932,1.624,1.01,1.172,1.094,1.059,1.275 +NM_025155,0.67,1.287,1.283,0.946,1.002,1.055,0.668,0.511,1.175,1.289,1.0,1.093,0.745,0.936,1.162,1.514,1.027,0.861,1.281,1.184,0.707,0.688,1.168,0.972,1.152,0.953,0.863,0.935,0.633,1.295,0.93,1.442,2.545,1.846,0.342,0.983,1.086,0.863,0.734,0.589,0.825,1.258,0.781,0.887,0.74,0.947,0.765,0.539,0.731,0.78,1.2,0.902,1.138,0.939 +NM_025158,1.054,0.847,1.376,0.83,1.179,0.918,0.634,0.795,1.453,1.435,0.698,0.773,0.655,1.119,1.109,1.196,1.127,0.924,1.249,0.981,0.57,1.478,1.093,1.47,0.655,1.136,1.405,1.151,0.463,0.967,1.336,1.988,3.412,1.257,0.556,0.579,0.809,1.354,1.166,0.768,1.241,1.106,0.806,0.826,1.128,0.864,1.071,1.125,0.792,1.013,1.234,0.745,1.196,1.931 +NM_025159,0.892,0.918,0.988,1.113,0.939,1.006,0.988,0.851,0.867,0.835,1.026,1.114,1.081,1.034,0.974,1.019,0.967,0.944,0.962,0.789,1.014,1.022,1.03,1.025,0.98,0.902,1.247,1.001,1.252,1.047,0.912,1.075,1.061,1.024,1.093,1.105,1.004,1.057,1.112,1.061,0.914,1.079,1.255,0.972,1.085,0.947,0.864,1.033,0.919,1.204,1.014,0.88,1.016,0.956 +NM_025160,1.722,0.773,1.459,0.976,1.99,1.055,0.692,1.301,2.191,1.351,1.03,1.031,1.24,1.185,1.538,1.172,1.047,1.192,1.66,0.891,0.957,1.329,0.895,1.178,0.758,1.677,1.07,1.765,0.721,0.997,1.755,0.884,1.245,0.884,3.196,0.998,0.916,1.918,0.968,0.881,1.648,0.872,0.834,0.862,1.439,0.885,0.934,2.041,0.973,1.284,0.798,0.791,1.203,1.079 +NM_025161,0.666,1.167,1.138,0.597,1.08,0.996,0.658,0.398,1.458,1.151,0.807,0.953,0.605,0.669,0.753,0.985,1.019,0.919,0.96,1.177,0.415,0.913,1.18,1.217,0.539,0.826,1.342,0.955,0.558,1.276,0.794,2.579,0.819,1.078,0.194,1.371,0.954,1.075,1.124,0.964,1.399,1.131,0.873,1.331,1.172,1.255,1.243,0.79,1.005,0.72,1.016,0.741,0.948,0.923 +NM_025164,0.559,1.153,1.38,0.618,0.884,1.033,0.877,0.616,0.968,0.957,0.865,0.813,0.557,0.672,0.966,1.219,1.017,0.859,0.857,1.09,0.789,0.827,1.163,0.949,0.674,0.662,1.339,0.855,0.709,1.563,1.004,2.26,1.524,1.378,0.558,0.94,0.921,1.044,1.165,1.036,1.177,1.481,0.958,0.855,0.969,0.721,0.966,0.606,0.99,0.9,1.08,0.953,1.051,1.864 +NM_025165,0.752,1.11,1.286,0.797,1.022,1.146,0.669,0.777,1.414,0.947,1.315,1.081,0.955,0.847,1.228,2.152,0.825,1.099,1.187,1.19,0.86,0.94,1.793,1.049,0.683,0.859,1.064,0.804,0.631,0.876,1.215,0.943,0.965,1.105,0.499,0.99,1.131,1.016,1.429,0.553,1.008,1.169,0.876,0.756,0.966,1.068,0.992,0.79,0.865,0.943,1.096,0.772,0.692,1.021 +NM_025168,1.81,2.023,2.218,2.0010000000000003,2.115,2.4450000000000003,1.8880000000000001,1.921,1.96,2.027,1.937,1.798,1.986,2.294,2.349,2.1390000000000002,2.2,2.052,1.931,1.867,1.899,2.086,2.263,2.075,1.972,2.0149999999999997,2.094,2.022,1.7770000000000001,2.077,2.126,2.298,2.2190000000000003,2.201,2.043,1.678,2.375,2.075,2.099,1.849,1.94,2.069,2.109,1.92,1.896,2.276,2.156,2.06,2.3289999999999997,1.895,1.926,1.91,1.993,2.102 +NM_025170,0.939,0.787,0.963,0.88,0.942,1.078,1.421,0.988,0.993,0.87,0.777,0.849,1.085,1.091,0.998,1.044,1.12,1.033,0.933,0.829,1.014,0.757,1.204,1.01,0.922,1.037,0.831,1.034,1.33,0.908,0.999,0.718,0.946,0.888,1.285,0.937,0.899,1.055,0.943,0.971,1.04,1.078,1.011,1.15,0.849,0.86,1.009,1.205,1.11,1.589,0.778,0.863,1.095,0.97 +NM_025180,0.959,1.042,0.988,0.908,1.001,1.057,1.04,0.976,0.928,0.85,0.933,0.934,0.904,1.024,1.053,0.963,0.99,1.018,0.998,1.108,0.879,1.118,1.035,0.872,1.138,1.039,0.993,0.894,1.195,1.01,0.938,1.015,0.95,1.063,0.83,0.893,0.964,1.142,1.04,0.968,0.99,0.984,1.63,1.13,0.937,1.277,0.859,1.071,1.04,0.936,1.112,0.914,0.862,1.025 +NM_025181,0.881,0.954,1.075,0.735,0.976,1.374,0.832,0.844,1.394,1.036,0.988,0.683,0.778,0.792,1.161,2.31,0.751,1.07,1.229,1.305,0.566,0.829,1.316,1.228,0.612,0.699,0.98,1.124,0.604,0.853,1.161,0.859,1.439,1.307,0.749,0.563,1.469,1.004,1.091,0.706,0.996,1.093,0.837,0.977,1.007,1.371,0.982,0.854,1.222,0.674,1.178,0.63,0.661,1.286 +NM_025182,1.106,0.83,0.928,0.937,0.718,1.357,0.712,1.205,0.859,1.114,1.008,1.073,1.104,0.809,0.944,0.968,1.278,0.92,1.269,0.781,0.884,1.116,0.81,0.882,0.843,1.241,1.148,0.752,0.571,1.183,0.836,1.166,0.812,0.976,1.159,0.689,1.004,1.268,1.619,0.928,1.006,0.848,1.454,0.914,1.103,1.238,0.919,1.023,1.108,1.182,1.001,0.844,0.821,0.88 +NM_025184,0.848,1.098,1.273,0.93,1.099,1.051,1.0,0.953,0.979,0.963,1.269,1.132,1.116,1.067,1.175,1.695,0.913,1.048,1.155,1.141,1.069,0.949,1.25,1.017,0.919,0.788,1.082,1.322,0.982,1.075,0.838,0.987,1.309,1.02,0.738,0.767,1.102,1.067,1.373,0.711,0.965,1.108,1.185,1.041,0.864,1.341,0.85,0.842,0.985,0.827,0.999,0.972,0.813,0.944 +NM_025187,1.044,1.03,1.198,0.949,1.026,1.002,0.889,0.977,1.16,0.976,0.887,0.993,1.021,0.902,1.076,1.285,1.059,0.889,0.978,0.906,1.113,1.004,1.023,0.897,0.929,1.026,1.188,1.127,0.919,0.987,1.217,1.094,1.266,0.915,0.935,0.921,0.959,1.026,1.126,0.888,1.044,0.868,0.773,1.199,0.955,0.891,1.014,0.986,0.844,1.056,0.941,0.934,0.947,1.549 +NM_025188,0.855,1.157,0.973,1.039,0.784,1.025,1.0,0.699,0.863,1.01,1.176,1.01,0.922,0.684,0.917,0.917,0.855,0.991,1.04,0.987,0.973,0.864,0.975,0.931,0.911,0.85,1.063,1.227,0.962,0.92,0.935,1.154,1.358,1.151,1.162,1.167,0.781,1.016,1.119,1.074,0.983,1.021,0.885,1.075,0.925,1.153,0.891,1.033,0.846,0.763,1.001,0.774,0.935,1.131 +NM_025191,0.516,1.793,0.966,0.959,0.768,2.639,1.741,0.542,0.667,0.681,2.109,0.718,0.628,0.531,1.237,2.709,0.726,1.775,0.514,2.086,0.413,0.739,1.946,0.8,0.981,0.554,0.925,0.635,1.079,2.635,0.802,1.432,1.268,2.156,0.483,0.735,2.187,0.799,3.302,1.157,0.612,1.801,0.798,0.711,0.818,1.99,0.977,0.619,1.966,0.693,2.235,0.762,0.507,1.136 +NM_025193,0.63,1.123,1.093,0.724,0.674,1.02,0.703,0.472,0.699,0.739,0.853,0.731,0.839,0.55,1.029,1.511,0.772,0.753,1.697,0.937,0.808,0.635,1.241,0.705,0.973,0.771,0.747,0.665,0.494,0.926,0.649,1.96,3.627,1.407,0.405,1.425,1.054,0.771,1.861,1.83,0.726,1.094,1.034,2.946,0.678,0.994,0.971,0.749,1.179,0.986,0.901,1.122,1.205,2.354 +NM_025194,1.397,0.868,1.202,1.134,1.616,0.914,0.835,1.228,1.895,1.287,0.915,1.008,1.247,1.528,1.264,0.872,1.924,1.104,1.627,0.87,1.079,1.237,0.959,1.274,0.928,1.827,1.363,1.372,1.078,0.93,1.943,0.98,1.036,0.823,3.184,0.735,0.922,1.582,1.092,0.96,1.377,0.805,0.97,0.908,1.008,0.911,1.214,1.739,0.913,1.491,0.88,1.015,1.368,0.993 +NM_025195,0.355,1.497,0.714,0.421,0.452,1.101,0.903,0.332,0.442,0.502,1.094,0.343,0.373,0.288,0.432,0.977,0.719,0.464,0.315,1.544,0.332,0.293,1.962,0.337,0.905,0.348,0.852,0.371,0.505,1.0,0.378,1.534,1.161,1.1,0.463,1.516,1.629,0.375,1.853,5.41,0.45,1.569,2.709,1.723,0.565,3.411,0.678,0.41,2.657,0.664,0.815,1.185,0.478,1.99 +NM_025196,0.756,1.023,1.165,0.763,0.859,0.976,0.66,0.646,1.033,1.044,0.89,0.895,0.763,0.62,0.968,1.551,0.967,0.725,1.424,0.756,0.804,0.775,1.145,1.139,0.68,0.808,1.153,0.772,0.486,0.919,0.996,1.067,2.656,1.261,0.585,0.832,0.856,0.848,1.326,1.223,1.18,0.822,0.818,1.299,1.04,0.882,1.054,0.706,1.07,1.016,0.849,0.708,1.292,1.743 +NM_025198,0.844,0.939,1.005,1.157,0.943,0.884,1.037,1.079,0.803,0.995,1.151,0.982,1.013,0.968,0.905,1.125,1.126,0.823,1.14,0.897,1.009,1.102,1.039,1.079,0.883,1.182,1.027,0.883,0.87,0.981,1.015,0.925,1.048,1.042,0.962,1.115,1.092,0.877,1.064,0.947,1.007,0.956,0.974,1.095,1.145,1.264,1.104,0.869,1.135,1.241,0.914,0.935,0.882,1.009 +NM_025201,0.845,0.907,1.037,1.118,0.796,1.119,1.025,0.906,1.011,0.853,0.86,0.82,1.148,0.885,0.76,0.85,1.047,0.882,0.976,0.897,0.886,1.059,1.044,0.878,0.797,0.936,1.319,1.03,0.82,1.005,0.942,1.997,1.245,1.003,0.886,0.793,0.948,0.919,1.38,1.936,1.114,1.136,0.882,0.98,1.24,0.792,0.845,0.997,0.939,1.173,1.075,1.387,0.968,1.51 +NM_025202,0.976,1.052,0.977,0.867,0.837,1.092,0.979,0.786,0.929,0.814,1.107,0.924,0.965,0.938,1.135,1.182,0.87,1.001,0.728,1.049,1.133,0.869,1.134,0.862,1.088,0.865,0.88,1.117,1.083,1.143,0.896,3.88,1.099,1.853,0.928,0.969,1.034,0.954,1.201,0.909,1.065,1.824,0.787,0.908,0.88,1.026,0.886,0.769,0.867,0.812,1.095,1.129,1.043,1.27 +NM_025204,0.877,1.084,0.827,1.033,0.915,1.321,0.821,0.775,0.979,0.818,0.981,0.895,0.899,0.77,0.851,1.521,1.088,1.031,1.305,0.873,0.987,1.141,0.839,1.074,0.941,0.922,1.198,0.668,0.997,1.294,0.846,1.01,0.966,1.039,0.57,1.003,1.11,0.996,2.001,0.869,0.965,1.327,1.043,0.943,0.979,1.159,0.861,1.122,0.978,0.853,0.967,0.782,0.798,1.039 +NM_025207,0.833,0.978,0.858,0.934,0.724,1.107,0.67,0.671,1.012,1.033,1.032,0.92,0.879,0.642,0.958,1.421,0.831,0.882,1.268,0.82,0.817,0.996,1.18,1.014,0.786,0.97,1.029,0.622,0.756,0.994,0.796,1.188,3.461,1.239,0.539,1.597,0.891,0.768,1.674,1.248,0.925,1.036,0.745,2.096,0.975,0.784,0.955,0.935,0.983,0.83,0.844,1.133,1.112,2.169 +NM_025209,1.03,1.06,1.306,0.895,0.91,0.935,0.837,0.81,1.156,0.846,1.15,0.983,0.905,0.885,1.006,1.069,0.954,0.889,1.088,0.996,0.94,0.872,0.994,0.936,0.797,0.866,1.084,0.981,1.001,0.976,0.935,1.065,1.104,1.052,0.822,0.892,0.999,0.853,0.937,1.06,1.202,1.09,0.923,1.164,0.984,0.994,1.086,0.822,1.075,0.952,0.99,0.907,0.996,1.135 +NM_025210,1.106,1.155,0.958,0.994,0.975,0.987,1.145,0.966,1.22,0.983,1.078,1.048,1.049,1.06,1.001,1.118,0.979,0.813,0.972,1.062,0.962,0.934,1.039,0.97,0.93,1.144,1.123,1.045,1.172,0.921,0.855,0.845,1.002,1.067,0.953,1.086,0.908,0.999,0.982,1.037,1.157,0.999,1.033,1.04,1.083,1.15,1.052,0.9,1.045,1.098,0.912,0.912,1.034,0.84 +NM_025211,0.769,1.152,1.133,0.923,0.812,1.068,1.127,0.974,0.929,0.964,0.892,1.04,1.044,0.838,1.0,1.374,0.837,1.126,0.851,1.11,1.08,1.022,1.043,1.055,0.782,0.837,1.003,1.101,1.147,1.064,1.028,1.333,2.166,1.117,0.964,0.766,1.038,1.056,1.011,0.757,1.071,1.16,0.863,0.851,0.971,0.951,1.037,0.937,1.003,0.905,0.969,0.97,0.934,1.113 +NM_025212,0.864,1.03,0.85,0.97,0.964,1.246,1.041,0.923,0.902,1.045,1.449,0.944,0.691,0.937,0.981,1.132,0.915,0.869,0.84,1.381,0.999,0.863,1.255,0.871,0.932,0.905,0.863,0.824,0.832,1.066,0.933,1.235,1.0,1.371,0.872,1.086,1.235,0.87,1.175,1.298,0.891,1.242,1.071,1.285,0.877,1.112,1.187,0.929,1.026,0.943,1.374,0.905,1.079,0.971 +NM_025213,0.934,1.151,0.988,0.925,0.996,0.973,0.881,1.095,0.967,0.962,1.065,1.029,1.124,1.012,0.799,1.224,1.025,1.034,0.875,0.988,1.021,0.976,1.073,0.951,1.044,1.193,1.034,1.174,1.388,0.953,1.125,0.975,0.899,0.858,1.053,0.932,0.934,1.09,0.928,0.892,0.975,1.105,0.805,0.924,0.89,1.092,1.182,1.002,1.024,1.168,0.964,0.858,1.164,1.074 +NM_025215,0.781,0.735,1.142,0.747,0.978,0.752,0.639,0.394,1.465,1.687,0.824,1.005,0.575,0.637,0.749,1.087,0.945,0.671,1.008,1.0,0.52,0.741,1.636,1.417,0.529,0.731,1.16,0.874,0.366,0.86,0.889,1.45,2.188,0.946,0.255,2.369,0.851,0.738,1.032,1.529,1.192,0.996,1.147,1.627,1.26,0.906,1.096,0.617,1.377,0.787,1.259,1.322,1.016,2.526 +NM_025216,1.097,0.903,1.137,0.95,1.176,0.945,0.677,0.885,1.241,1.817,0.899,1.239,1.089,0.925,0.845,0.809,1.224,1.194,0.964,1.011,0.851,1.087,0.809,1.543,0.989,0.974,1.161,1.181,0.761,0.862,1.139,2.219,1.203,0.988,0.969,1.012,0.845,1.28,0.973,0.93,1.359,1.012,0.916,1.032,1.327,0.797,1.182,0.99,0.828,0.887,1.007,1.202,0.991,1.066 +NM_025217,0.959,0.614,1.516,0.632,1.288,0.625,0.624,1.343,1.248,1.621,0.697,1.042,1.046,0.924,0.775,0.915,1.374,1.237,2.064,0.77,0.996,1.059,0.699,1.245,0.661,1.371,1.387,1.045,0.621,0.641,1.457,0.728,1.721,0.758,0.875,1.03,0.741,1.328,1.147,1.457,1.392,0.724,0.795,0.659,1.482,0.746,1.295,0.968,0.75,1.288,0.995,1.403,1.911,1.567 +NM_025218,1.013,1.047,0.953,1.076,0.954,0.9,1.031,1.067,1.086,0.972,0.922,1.071,1.047,1.122,0.906,0.934,1.009,1.054,0.879,0.99,0.913,0.834,1.026,0.997,0.983,0.955,0.959,1.065,1.798,1.086,0.941,0.934,0.929,0.904,1.072,1.212,0.959,0.908,0.981,1.022,1.131,0.985,1.0,1.011,0.916,1.13,1.165,1.051,0.951,1.085,0.932,1.089,1.245,1.015 +NM_025220,1.137,0.999,1.112,0.993,1.065,1.037,1.021,1.022,1.072,1.049,0.995,1.027,0.856,1.137,0.835,1.148,0.901,1.019,1.072,0.997,0.99,0.987,1.085,1.039,0.957,1.068,0.871,1.009,0.974,0.999,1.006,0.924,1.053,0.924,1.112,0.937,1.1,0.888,0.905,1.0,0.988,0.946,0.815,1.154,1.09,1.044,0.972,1.032,1.0,1.127,0.908,1.053,1.118,1.045 +NM_025221,0.94,1.186,0.987,0.997,1.05,1.001,0.832,0.951,0.892,0.923,1.106,1.081,1.009,0.986,0.97,0.999,1.121,0.954,1.071,1.164,1.118,0.994,1.049,0.968,0.972,1.036,1.008,1.065,0.809,0.994,0.913,0.972,1.007,1.04,1.066,0.961,0.853,1.032,0.923,0.948,0.966,1.1,0.982,0.887,1.144,1.017,0.978,1.026,1.06,0.907,0.97,0.993,0.974,1.009 +NM_025228,1.02,1.032,1.304,0.826,0.883,0.912,1.032,0.91,1.053,0.935,0.783,1.04,0.887,1.05,1.029,0.936,0.981,0.962,0.931,1.072,0.843,1.008,1.001,1.081,1.184,0.898,1.118,0.954,1.197,1.073,1.043,1.077,0.997,1.253,0.829,0.89,0.887,0.96,1.045,0.992,1.135,1.145,0.706,0.963,1.109,1.026,0.841,0.849,0.844,0.894,0.992,1.013,1.06,1.328 +NM_025231,0.745,1.416,1.039,0.907,0.793,1.633,0.792,0.629,0.94,0.68,1.595,0.91,0.684,0.664,0.932,1.989,0.816,1.005,0.946,1.188,0.959,0.872,1.27,0.883,0.822,0.847,0.809,0.982,0.756,1.44,0.822,1.043,2.539,1.421,0.526,1.022,1.413,0.952,1.03,0.79,0.912,1.102,1.016,0.862,0.815,1.01,0.786,0.807,0.95,0.643,1.083,0.82,0.877,2.019 +NM_025232,1.128,0.608,2.139,0.855,1.219,0.776,0.508,1.459,1.599,1.213,0.723,0.883,1.07,1.175,1.283,1.524,1.382,1.036,2.576,0.697,0.924,1.554,0.93,1.452,0.537,1.767,2.121,1.184,0.491,0.922,1.555,1.074,2.365,0.942,1.094,0.515,0.672,1.787,1.28,0.44,1.539,0.692,0.487,0.717,1.439,0.87,1.019,1.52,0.845,1.425,0.998,0.789,1.44,1.598 +NM_025233,0.66,0.941,1.153,0.776,0.908,0.946,0.671,0.343,1.148,1.002,0.888,0.757,0.529,0.506,0.872,1.56,0.997,1.139,1.04,1.048,0.465,0.751,1.111,1.033,0.645,0.848,0.988,0.709,0.507,1.124,0.831,1.217,1.751,1.097,0.257,0.95,1.117,0.804,1.433,1.046,1.133,0.974,0.838,1.86,1.16,1.148,1.119,0.742,1.292,0.766,1.074,0.998,0.85,1.184 +NM_025234,1.001,1.073,1.246,0.821,1.079,0.802,0.582,0.553,1.468,1.093,0.874,0.793,0.848,0.7,1.009,1.566,0.808,1.011,1.726,0.939,0.56,0.868,1.56,1.158,0.67,1.162,1.094,1.067,0.37,0.89,1.033,1.134,1.324,1.331,0.227,1.079,0.989,1.002,1.543,0.555,1.237,0.956,0.614,0.777,1.391,0.859,1.002,0.917,0.773,0.95,0.97,0.901,1.245,1.283 +NM_025236,0.999,1.02,1.139,1.086,1.078,1.07,1.042,1.101,1.23,0.953,0.906,0.971,1.221,0.864,0.903,1.001,1.145,1.186,1.164,0.981,1.044,0.982,1.225,0.98,1.027,1.154,0.88,0.992,1.08,1.027,1.135,1.08,1.032,1.087,1.208,0.925,1.026,1.085,0.901,0.984,0.952,0.872,0.933,0.919,0.987,0.988,0.939,0.95,0.937,1.092,0.893,0.941,1.13,0.978 +NM_025237,0.922,1.046,0.891,1.177,1.178,1.145,1.001,1.309,1.132,1.118,0.905,0.872,0.986,0.989,1.421,1.055,1.113,0.674,1.11,1.385,1.047,1.101,0.721,0.867,1.007,0.773,1.081,0.923,0.9,0.919,0.951,0.904,1.065,0.923,1.01,1.075,1.171,1.056,0.823,1.168,1.032,0.911,0.954,1.119,1.068,0.909,1.003,1.27,1.005,0.894,1.173,1.18,0.966,0.77 +NM_025238,0.955,1.03,0.944,0.873,1.001,1.114,0.493,0.567,1.341,1.039,1.276,0.668,0.655,0.81,1.205,1.487,0.781,0.794,1.088,0.931,0.546,0.771,1.482,0.996,0.631,0.853,1.03,0.939,0.431,1.198,1.137,0.829,1.228,1.267,0.743,1.14,1.303,0.866,1.271,0.775,1.13,1.064,0.955,0.952,0.943,1.541,0.954,0.774,1.034,0.753,1.057,0.698,0.923,1.431 +NM_025239,0.995,0.958,0.996,0.91,0.938,1.097,1.04,1.022,0.928,0.97,1.048,0.912,0.987,1.052,1.02,0.94,0.953,0.969,0.955,1.061,1.022,1.068,1.062,1.172,1.058,1.101,0.959,0.981,1.386,1.055,1.054,1.191,1.118,0.96,1.056,1.0,1.003,1.178,0.899,1.025,1.018,0.955,0.936,0.908,0.971,0.911,0.898,0.95,1.008,0.999,0.88,0.886,1.096,0.913 +NM_025240,0.98,0.936,0.956,1.128,0.934,1.082,1.029,0.943,0.819,0.95,1.077,1.006,0.988,0.977,0.832,1.019,0.969,0.977,0.892,0.98,0.956,0.948,0.928,1.008,0.924,0.974,0.801,0.944,1.073,0.899,0.955,1.211,1.022,1.102,1.015,1.03,1.12,0.895,1.051,1.061,0.87,1.04,0.85,1.011,0.941,1.084,0.969,0.929,1.097,1.024,1.128,1.002,0.914,0.949 +NM_025241,0.729,1.049,1.159,0.751,1.033,1.011,0.533,0.756,1.19,1.003,1.003,1.093,0.894,0.665,0.885,1.0,1.115,1.03,1.335,1.084,0.578,0.878,1.198,1.16,0.653,1.292,0.962,1.384,0.509,1.218,0.917,1.154,0.779,1.268,0.842,0.923,0.837,1.529,0.867,0.944,1.401,1.182,0.671,0.953,1.162,0.858,1.104,1.031,0.6,0.955,0.825,0.677,0.891,1.125 +NM_025244,0.98,1.033,0.906,0.822,0.902,1.005,0.966,1.253,1.072,0.917,0.913,1.006,0.997,1.14,1.038,0.944,0.999,0.817,0.976,1.111,1.015,0.979,1.058,0.93,0.838,1.015,1.186,0.905,1.312,0.959,0.918,0.996,1.098,1.003,1.091,1.14,1.058,0.872,0.913,1.018,1.013,0.981,1.155,0.942,1.016,1.221,1.027,0.928,1.084,0.855,1.045,0.836,1.03,0.814 +NM_025245,0.936,1.101,1.02,1.032,1.079,1.105,1.124,0.896,1.046,0.741,1.221,1.049,0.954,1.051,1.186,1.079,0.922,0.851,0.899,1.009,0.961,0.929,0.95,0.894,0.883,0.917,1.102,0.966,0.671,1.088,0.976,0.98,1.076,1.062,1.123,1.072,0.971,0.911,1.163,1.234,0.844,0.848,0.991,1.025,1.035,0.737,0.882,0.998,0.944,1.056,0.974,0.951,0.981,1.214 +NM_025247,1.115,0.958,0.967,1.16,0.979,1.02,0.914,0.83,1.234,0.872,0.981,0.986,0.923,1.084,0.927,1.089,1.066,0.96,0.877,0.979,1.22,0.885,1.058,0.98,1.006,1.003,1.058,1.016,0.858,1.17,0.974,1.007,0.984,0.83,0.995,1.173,1.046,0.961,1.091,0.941,0.961,1.103,0.907,0.996,0.893,0.986,0.986,1.026,0.956,1.055,0.988,0.986,0.878,1.097 +NM_025252,0.966,1.048,1.035,1.043,0.986,1.116,0.899,0.969,0.97,1.038,1.073,1.044,0.931,0.996,1.014,1.033,0.929,1.032,1.091,1.104,0.904,0.975,0.904,1.087,0.938,0.932,0.957,0.933,1.252,1.098,0.991,1.112,1.103,0.846,1.041,1.188,1.023,0.943,1.086,1.121,0.884,0.951,1.228,1.085,0.945,1.051,0.993,0.955,1.327,1.002,0.986,1.004,1.034,1.018 +NM_025256,1.17,1.052,1.155,0.847,1.009,1.012,0.844,0.841,0.902,0.978,0.943,0.86,0.946,1.122,1.072,1.198,0.993,0.987,1.148,0.807,0.926,0.909,0.941,0.993,0.899,0.961,1.441,0.843,1.121,1.012,1.001,1.564,2.685,1.166,0.908,0.875,0.872,1.053,1.194,1.071,0.87,0.982,0.866,1.263,1.094,0.823,0.865,1.076,0.829,0.968,1.026,0.964,1.247,1.275 +NM_025257,0.0946,1.199,0.114,1.09,0.117,2.249,0.994,0.114,0.12,0.101,1.572,0.117,0.118,0.135,0.959,2.21,0.113,1.387,0.118,1.684,0.101,0.116,1.599,0.128,1.006,0.122,0.101,0.0902,0.933,2.598,0.111,1.473,0.888,1.679,0.165,0.506,1.917,0.112,3.404,0.522,0.135,1.869,1.008,1.366,0.103,1.749,0.767,0.115,1.66,0.117,1.65,0.578,0.115,0.425 +NM_025259,1.03,0.935,1.081,0.893,1.017,1.0,0.901,0.962,1.009,1.065,0.99,0.941,0.964,1.18,0.857,0.925,0.969,0.882,0.978,0.93,1.022,1.071,0.953,1.032,1.162,1.167,0.994,1.063,0.701,1.015,0.948,0.984,0.883,1.136,0.933,1.023,0.952,1.116,1.035,1.119,0.893,1.004,0.835,0.887,1.043,1.042,1.015,1.03,0.942,0.902,1.102,0.96,1.0,0.99 +NM_025261,4.706,0.871,1.287,1.749,2.671,0.843,1.095,3.273,3.894,2.142,0.639,2.459,2.062,4.453,3.771,1.253,0.938,1.614,2.542,0.815,1.381,5.723,0.839,3.699,0.801,4.449,2.421,4.904,0.775,0.779,4.888,0.795,1.93,0.813,5.183,1.153,0.738,4.996,0.793,0.791,1.098,0.749,0.807,0.809,1.917,0.68,1.192,7.987,0.744,0.941,1.101,0.738,1.22,0.764 +NM_025262,0.867,1.25,0.915,1.01,0.902,0.922,0.904,0.903,0.884,0.939,1.049,0.959,0.991,0.86,0.97,0.876,0.88,0.976,1.06,1.218,0.911,1.008,1.045,0.82,0.92,0.96,0.903,0.957,0.87,1.0,1.017,1.384,1.265,1.114,0.874,1.202,0.999,0.977,1.016,1.04,0.94,1.184,0.845,1.081,0.978,1.119,0.911,0.811,0.879,0.974,1.228,1.048,0.728,1.113 +NM_025263,0.891,1.194,1.052,0.771,0.933,1.025,1.18,0.837,0.916,1.074,0.907,1.01,0.907,0.869,0.946,0.963,0.948,0.907,0.854,1.026,0.842,0.928,0.975,1.049,0.912,1.103,1.064,1.025,0.735,1.099,0.908,2.529,1.278,1.057,0.755,1.003,0.992,0.844,1.299,1.252,1.047,1.048,0.885,1.199,0.943,0.783,0.932,0.771,0.955,1.059,0.89,1.039,1.053,1.674 +NM_025264,1.009,1.009,1.071,1.052,0.925,1.032,0.997,0.799,1.08,1.177,0.951,0.998,0.998,0.929,0.974,0.916,1.043,1.099,1.036,0.996,1.007,0.904,1.077,0.967,0.81,0.932,1.003,0.959,0.745,0.947,0.95,1.155,1.668,1.029,0.762,1.027,0.909,0.895,0.939,1.108,1.247,0.787,0.959,1.159,1.104,0.891,0.899,0.889,0.791,0.999,1.015,0.862,1.011,1.268 +NM_025265,0.915,1.0,0.993,1.012,0.95,0.903,0.977,0.957,1.154,1.181,0.88,1.014,0.906,0.887,0.897,1.113,0.995,0.949,1.064,0.996,1.032,0.981,0.985,1.152,0.979,1.019,1.132,0.9,0.971,0.998,1.111,1.129,1.151,1.134,0.853,0.998,0.946,1.055,1.11,0.904,1.031,0.995,0.943,1.031,0.955,1.032,0.942,1.0,1.014,0.987,0.974,1.005,0.948,1.577 +NM_025267,0.779,1.276,1.077,0.914,0.85,0.932,0.738,0.706,1.139,1.051,1.042,0.755,0.762,0.779,0.783,1.302,0.891,0.944,1.121,1.05,0.919,0.883,1.187,1.168,0.793,0.983,0.931,0.9,0.598,1.338,0.955,1.503,2.947,1.273,0.443,1.213,0.961,0.909,1.389,0.827,0.998,1.159,0.753,1.478,0.957,0.85,0.951,0.87,1.072,0.773,0.993,0.961,0.909,1.329 +NM_025268,0.89,1.333,0.884,1.062,1.062,0.946,0.953,0.885,0.962,0.985,0.928,1.089,1.02,0.918,0.704,0.87,1.078,0.964,0.806,0.851,0.921,0.952,1.011,1.074,0.94,1.099,1.087,0.965,1.201,1.068,0.924,1.998,0.816,1.234,0.959,1.049,0.891,1.054,1.02,1.159,0.958,1.022,0.896,0.905,0.988,0.808,0.934,0.996,0.921,1.062,0.928,1.091,1.004,1.073 +NM_030568,0.952,1.105,0.983,1.025,0.878,0.951,1.164,1.008,0.875,1.057,1.018,0.858,0.941,1.045,1.189,1.186,0.859,1.174,0.999,1.166,0.932,0.958,1.181,0.922,1.034,0.909,0.956,0.997,1.123,1.042,1.089,0.864,0.968,1.091,1.059,0.921,0.793,1.029,0.973,0.917,0.903,0.878,1.093,0.969,1.105,1.01,0.95,0.953,0.995,0.946,1.016,0.912,1.107,1.16 +NM_030569,1.088,1.02,1.017,0.997,0.92,1.036,1.192,0.935,1.091,1.052,1.225,1.064,0.994,0.875,1.214,0.814,1.006,0.979,0.92,0.933,0.877,1.144,1.089,1.013,0.967,0.855,0.925,0.942,1.396,0.981,0.898,0.921,1.004,1.123,1.02,1.164,1.179,0.944,0.891,1.151,0.906,1.033,1.076,1.086,0.99,1.072,0.822,0.998,0.889,1.005,1.104,1.049,0.994,0.88 +NM_030570,0.965,0.944,0.978,0.919,1.012,1.154,1.092,0.999,1.101,1.091,1.04,0.949,0.96,1.02,1.007,1.018,0.976,1.048,1.064,1.051,0.92,1.135,1.095,0.896,0.984,0.989,0.923,0.849,1.098,1.096,1.05,1.048,1.042,0.892,1.145,1.002,0.924,1.109,1.04,0.952,1.112,0.969,1.067,0.877,1.063,0.963,0.948,1.022,1.04,1.072,0.993,1.081,0.863,0.981 +NM_030572,1.108,0.961,0.941,1.036,0.982,0.958,1.05,0.863,1.0,1.029,0.994,0.946,0.971,0.902,1.084,1.062,1.059,1.133,0.808,0.921,1.084,1.094,0.922,0.941,1.032,1.023,0.89,0.97,0.763,1.0,0.905,1.145,1.051,1.032,1.08,0.959,0.992,0.948,1.017,0.885,0.988,1.077,0.977,0.956,1.099,1.088,0.91,1.024,1.031,0.961,1.05,0.982,1.276,1.05 +NM_030573,0.828,1.088,1.059,0.845,0.781,1.123,0.797,0.811,1.001,1.1,0.903,0.946,0.943,0.75,0.99,1.298,0.993,0.948,1.144,0.937,0.885,0.937,1.088,1.169,0.981,0.87,1.171,0.838,0.663,0.84,0.992,1.287,2.232,1.435,0.604,0.951,0.822,0.716,1.448,1.033,0.839,1.116,0.677,1.249,1.105,0.771,0.798,0.924,0.835,1.069,1.075,0.816,0.903,1.64 +NM_030574,1.273,0.706,1.977,0.671,1.033,0.95,0.735,1.147,1.349,0.937,1.695,1.028,1.087,0.676,1.035,1.805,1.737,0.801,1.36,1.071,0.864,0.833,1.134,0.798,0.474,1.286,2.166,1.003,0.673,0.744,1.062,0.618,1.168,0.741,1.389,0.827,0.959,1.206,0.933,0.458,1.159,1.117,0.749,0.604,1.06,1.303,0.983,1.298,0.955,1.537,1.015,0.618,1.585,0.861 +NM_030575,0.834,1.167,1.207,0.611,1.386,1.112,0.683,0.737,1.592,1.027,1.098,0.942,0.724,0.727,0.993,1.158,1.055,1.082,1.277,0.882,0.343,1.059,1.006,1.409,0.616,1.064,1.089,1.616,0.572,1.374,1.118,0.717,0.902,1.102,0.876,0.64,1.029,1.316,1.103,0.76,1.397,1.024,0.931,0.89,1.317,1.168,1.279,1.302,1.085,0.934,1.041,0.571,0.79,1.208 +NM_030576,0.87,1.055,1.203,0.995,1.035,0.983,0.932,0.912,1.186,1.059,0.9,1.072,0.916,1.015,0.899,1.141,1.005,1.005,0.976,0.928,0.989,1.064,0.918,1.039,1.083,1.004,0.919,0.995,0.6,1.02,1.237,0.975,1.057,1.062,1.013,1.039,0.929,0.946,0.956,0.95,1.037,0.976,0.973,0.898,0.942,0.968,0.864,1.01,1.073,0.897,0.949,1.06,1.03,1.053 +NM_030577,0.831,0.994,0.977,0.884,0.863,1.103,0.935,0.698,0.982,0.923,1.151,1.041,0.916,0.701,1.11,1.443,0.951,0.87,0.968,1.001,0.869,0.796,0.987,0.911,0.94,0.909,1.086,0.873,0.883,1.022,0.866,1.265,1.266,1.231,0.811,1.301,1.229,0.987,1.368,1.638,0.864,1.112,0.876,1.353,0.882,1.024,1.017,0.934,1.01,0.905,0.976,1.004,1.052,1.333 +NM_030579,0.414,1.112,0.877,0.635,0.603,1.778,0.621,0.465,0.765,0.747,1.599,0.765,0.52,0.43,0.951,2.776,0.538,0.729,1.174,0.96,0.415,0.525,1.744,0.981,0.552,0.58,0.947,0.662,0.431,1.323,0.672,1.016,3.297,1.566,0.0946,1.708,1.662,0.594,1.361,1.313,0.797,1.163,0.746,1.749,0.787,1.496,1.387,0.527,1.343,0.588,1.42,0.839,0.828,3.228 +NM_030580,1.003,1.098,0.835,0.947,0.868,1.062,0.821,1.021,0.945,0.983,1.021,1.091,0.861,0.989,0.865,0.969,0.965,0.86,0.941,1.033,0.924,0.943,1.078,1.039,1.024,0.921,1.082,0.978,0.914,1.129,0.995,1.366,1.056,1.241,0.903,0.9,0.883,1.247,0.944,1.152,0.876,1.07,0.823,1.018,0.93,1.047,1.073,0.914,0.936,0.875,0.982,0.916,0.932,1.015 +NM_030583,0.564,1.386,1.046,0.809,0.773,1.855,0.807,0.521,0.79,0.995,2.882,0.635,0.451,0.73,1.483,4.272,0.577,0.899,0.755,2.26,0.647,0.658,3.305,0.719,0.689,0.531,0.803,0.762,0.575,2.113,0.672,3.107,0.798,2.807,0.385,0.771,2.032,1.108,1.735,0.596,0.819,3.239,2.761,0.89,0.606,4.444,1.791,0.567,1.401,0.592,1.977,0.871,0.777,1.059 +NM_030588,0.689,1.117,0.84,0.811,0.888,0.982,1.046,0.626,0.747,0.835,0.976,0.651,0.71,0.665,0.651,1.189,0.788,0.853,0.961,1.013,0.903,0.678,1.605,0.803,0.884,0.876,1.045,0.7,0.849,1.158,0.755,1.659,2.245,1.171,0.568,2.089,1.2,0.806,2.123,1.961,0.731,1.336,0.993,2.543,0.893,1.076,0.916,0.797,1.294,0.98,1.161,1.063,1.18,1.785 +NM_030589,0.911,0.915,1.091,0.891,1.051,0.918,0.86,1.045,0.912,1.131,1.14,1.029,0.918,1.104,0.959,0.967,1.07,0.931,0.884,0.921,0.884,1.014,1.078,1.068,0.888,0.948,1.027,1.025,1.031,1.02,0.933,1.165,0.944,1.019,0.958,0.849,0.965,1.153,1.019,0.897,1.061,1.131,1.21,0.945,0.927,0.956,0.974,0.978,0.869,1.065,1.076,0.992,0.946,1.016 +NM_030592,1.289,0.959,1.011,1.168,1.287,1.065,0.714,1.189,0.956,1.026,0.995,0.953,0.834,1.057,0.811,1.002,1.004,0.865,1.083,1.006,1.248,0.978,1.038,1.102,0.996,0.843,1.079,0.869,1.026,0.946,1.095,1.001,1.185,0.966,0.964,1.075,0.854,0.818,0.935,1.087,0.747,0.928,0.903,1.118,0.979,0.992,0.975,1.07,1.245,0.871,1.059,1.059,0.873,0.882 +NM_030593,1.188,0.907,1.017,0.812,0.897,1.109,0.749,1.024,1.153,0.914,0.868,1.053,1.078,1.029,0.788,1.235,1.12,0.993,1.224,0.826,1.073,1.124,1.055,1.07,0.982,1.163,1.288,0.868,0.805,0.93,0.912,0.99,1.672,1.063,0.772,0.905,0.927,1.153,1.121,0.891,1.072,0.842,0.783,0.971,1.068,0.794,0.932,1.073,0.896,1.088,0.953,0.854,0.999,1.104 +NM_030594,1.0,1.023,0.967,0.894,1.067,0.881,0.994,0.934,0.963,1.006,1.077,0.892,0.981,0.897,0.665,0.886,1.054,0.993,1.021,0.847,0.82,0.979,0.891,0.931,1.027,1.025,1.125,0.898,0.829,1.151,0.833,1.124,0.934,0.955,1.215,0.887,0.939,1.165,0.989,0.994,1.202,1.131,1.088,1.12,1.046,0.925,1.096,1.074,1.202,0.879,0.918,1.059,0.967,0.906 +NM_030615,1.036,1.011,1.003,0.912,0.933,1.092,1.059,1.285,0.999,0.986,1.015,1.042,0.972,1.063,1.072,1.02,0.915,0.976,1.063,1.038,0.865,0.841,0.806,1.122,1.13,1.05,1.056,0.914,0.756,1.108,1.058,0.989,0.814,1.069,1.021,0.958,0.891,0.985,0.94,1.053,1.252,0.935,1.16,0.898,0.945,1.169,0.964,0.971,0.949,1.032,0.998,0.946,0.971,1.012 +NM_030621,1.887,1.819,2.815,1.948,2.221,2.03,1.327,1.7429999999999999,2.4989999999999997,2.276,1.843,1.9500000000000002,1.678,1.8780000000000001,2.114,2.1109999999999998,2.137,1.824,2.295,2.049,1.944,1.724,1.9769999999999999,1.962,1.781,2.105,2.3970000000000002,2.386,1.337,2.04,2.278,2.16,2.179,2.073,1.741,1.676,1.976,1.905,1.975,1.947,2.513,1.934,1.68,1.734,2.329,2.012,1.8980000000000001,1.7469999999999999,1.861,2.4459999999999997,2.141,1.803,2.33,2.165 +NM_030622,0.661,1.906,0.78,3.159,0.705,2.467,2.568,0.553,0.699,0.649,1.485,0.562,0.635,0.692,0.774,1.588,0.884,1.704,0.74,1.039,0.934,0.673,1.638,0.694,3.498,0.828,0.923,0.591,1.787,2.599,0.566,0.663,1.012,4.388,0.608,0.949,1.868,0.759,5.853,0.71,0.768,1.61,1.213,2.03,0.797,1.134,0.902,0.596,0.814,0.875,1.116,0.685,0.814,0.891 +NM_030625,1.024,0.869,0.925,1.034,0.936,0.925,1.299,0.927,1.111,0.893,1.084,1.141,0.93,1.008,1.101,0.925,0.974,1.003,1.008,1.079,1.106,1.069,1.054,0.989,1.014,0.94,1.0,1.043,1.247,1.063,1.004,0.967,1.009,0.997,1.114,0.892,1.094,0.845,0.982,0.892,0.959,1.043,1.132,0.952,1.167,1.009,0.928,1.029,0.906,0.965,1.122,0.982,0.959,1.168 +NM_030627,0.834,1.009,1.082,0.956,0.844,1.019,1.052,0.848,1.183,0.98,0.902,0.944,0.977,0.988,0.77,1.02,0.882,0.873,1.058,1.254,1.086,0.924,0.921,0.876,0.772,0.972,0.882,1.151,1.003,1.092,1.039,0.942,0.927,1.188,1.273,0.952,0.903,0.968,1.092,0.989,1.206,1.166,1.173,0.909,0.919,1.132,1.015,0.986,0.843,0.936,1.07,1.01,0.911,0.943 +NM_030628,0.83,0.943,0.917,0.846,0.886,1.01,0.81,0.738,1.034,1.129,0.869,0.956,0.797,0.826,0.83,1.149,1.019,0.943,1.257,0.778,0.962,0.871,1.028,1.058,0.798,1.066,1.215,0.862,0.75,0.991,0.91,1.306,2.37,1.187,0.615,1.067,0.913,1.041,1.493,1.024,0.984,1.122,0.969,1.36,1.089,0.822,0.937,0.86,1.016,1.06,0.931,0.849,0.976,1.008 +NM_030629,0.96,0.893,1.024,0.858,1.03,1.048,1.094,1.024,0.976,0.973,0.992,1.075,0.888,0.817,1.005,1.056,1.02,0.911,0.902,0.907,0.966,1.184,0.984,0.982,0.916,0.93,0.91,1.134,1.262,1.054,1.101,0.995,1.071,0.95,0.999,0.912,1.157,1.042,1.05,0.849,1.133,1.02,0.947,0.929,1.121,0.878,0.815,1.067,0.98,1.174,0.997,0.95,0.989,0.907 +NM_030630,0.381,1.696,0.49,0.914,0.507,1.816,0.986,0.428,0.476,0.531,1.622,0.389,0.496,0.454,1.022,2.292,0.408,1.024,0.448,1.825,0.517,0.499,1.437,0.499,1.241,0.587,0.438,0.428,0.972,1.862,0.44,1.824,1.057,1.479,0.472,0.827,1.525,0.455,3.173,0.669,0.413,1.93,1.129,1.797,0.487,1.288,0.938,0.478,1.107,0.428,1.585,1.021,0.471,0.796 +NM_030631,0.967,0.877,0.962,1.006,1.034,1.06,0.999,1.143,1.015,1.018,1.011,1.022,1.055,1.004,0.849,0.975,0.78,1.005,0.958,0.884,1.002,0.903,1.174,1.049,0.9,1.088,1.062,1.012,1.884,1.003,1.117,0.839,1.051,1.002,0.885,1.045,0.945,1.19,1.093,0.927,1.049,0.943,0.954,0.975,0.958,1.078,1.123,0.982,1.114,0.948,1.059,0.984,0.863,1.131 +NM_030633,0.963,1.047,1.085,0.917,0.953,1.053,1.04,0.798,0.982,0.967,1.245,1.021,0.895,1.201,1.214,1.077,1.036,0.792,1.214,1.13,1.002,1.017,1.015,1.254,0.99,1.012,1.064,0.952,1.275,1.12,0.903,1.141,0.816,0.988,0.926,0.967,0.952,0.963,0.896,0.852,0.824,0.875,1.056,1.066,1.072,1.024,0.925,0.975,1.0,1.098,1.07,1.029,1.005,0.986 +NM_030634,1.17,1.049,1.472,0.98,1.229,0.901,0.627,0.847,1.219,1.151,0.917,0.884,1.074,1.082,1.329,1.083,1.1,1.193,1.204,0.912,0.847,1.158,0.987,1.358,0.764,1.368,1.093,1.296,1.028,1.025,1.171,1.519,0.963,1.067,0.709,0.822,0.917,1.283,1.068,0.84,1.298,1.043,0.791,0.863,0.986,0.907,0.93,1.172,0.839,1.011,0.988,0.777,1.096,1.043 +NM_030636,0.928,0.998,0.832,0.903,0.735,0.971,0.955,0.775,0.882,0.867,1.013,0.817,0.735,0.817,0.9,1.037,0.728,0.874,1.164,1.258,0.856,0.828,1.357,0.909,0.999,0.845,0.866,0.969,1.145,1.33,0.962,1.139,1.286,1.209,0.768,1.185,1.042,1.141,1.314,1.087,1.108,1.166,1.134,1.705,0.953,0.849,1.056,0.923,0.898,0.805,0.905,1.135,1.001,1.525 +NM_030637,0.934,0.987,0.992,0.999,0.893,1.051,1.091,0.923,1.008,0.97,0.939,0.996,1.0,0.885,0.941,1.006,1.102,0.841,0.838,0.953,0.841,0.973,0.967,0.941,1.058,0.927,0.844,1.067,1.474,1.078,1.093,1.018,1.054,1.141,1.062,0.844,1.04,0.998,0.985,1.013,1.019,0.887,1.137,0.977,0.829,0.943,0.954,1.019,0.9,1.03,0.92,0.917,0.924,1.126 +NM_030639,0.845,1.296,1.168,0.953,0.996,1.049,0.864,0.968,1.19,0.964,0.937,1.157,0.992,0.919,0.943,1.078,0.967,0.909,1.096,1.091,0.846,0.955,1.138,1.031,0.84,0.925,1.232,0.999,1.098,1.158,1.107,1.144,1.635,1.265,0.896,1.06,0.965,1.141,0.992,0.93,0.948,0.968,0.772,1.013,0.941,0.936,0.972,0.997,0.894,0.919,1.057,0.966,1.08,1.504 +NM_030640,0.957,0.944,1.229,0.797,1.238,0.933,0.763,1.128,1.559,1.335,0.825,0.966,0.86,0.914,1.104,1.111,1.022,0.968,1.12,0.799,0.678,1.246,0.897,1.292,0.789,1.209,1.065,1.609,0.672,0.851,1.434,0.678,2.071,1.109,1.751,0.991,0.929,1.787,1.086,0.835,1.211,0.771,0.801,1.035,1.169,1.031,1.045,1.414,0.856,0.948,1.09,0.946,1.126,0.893 +NM_030642,0.973,0.919,1.124,1.058,0.918,0.936,0.919,0.96,0.93,1.181,1.129,1.0,1.089,0.925,0.646,0.969,0.948,0.769,0.92,0.994,0.973,0.957,0.843,1.058,1.215,0.998,0.851,0.929,0.965,0.95,0.955,0.913,1.048,0.992,1.062,0.938,1.072,0.942,0.973,1.014,0.939,0.942,1.106,1.159,1.22,1.082,1.055,0.997,1.078,1.198,0.942,0.985,1.006,1.11 +NM_030645,1.259,0.812,1.113,0.828,1.154,0.794,0.583,0.763,1.203,0.913,0.718,0.849,1.063,1.164,1.028,0.979,1.339,1.038,1.566,0.669,0.853,1.439,0.919,1.038,0.77,1.676,1.224,1.022,0.677,0.867,1.497,1.094,1.168,0.978,2.48,1.039,0.722,1.115,1.574,1.151,1.373,0.864,0.547,1.599,1.173,0.694,0.868,2.331,0.727,1.39,0.769,0.6,0.921,1.255 +NM_030648,1.058,1.235,1.089,1.003,1.158,0.942,1.14,1.012,0.968,1.057,0.931,0.911,1.024,1.056,0.823,1.003,1.071,0.961,0.992,0.886,1.074,0.971,0.818,1.054,0.915,0.941,0.914,1.041,1.086,0.944,1.095,1.05,0.966,1.005,0.939,0.987,1.005,0.914,1.058,0.969,1.109,0.972,1.055,1.153,1.097,0.999,0.984,0.972,0.99,0.996,1.066,0.899,1.027,1.223 +NM_030649,1.025,1.03,0.949,1.052,1.084,0.981,0.912,0.948,0.947,0.956,0.883,1.023,1.144,0.907,0.859,0.976,1.139,0.991,1.175,1.013,1.285,0.91,0.944,1.058,1.08,1.228,1.165,0.988,0.831,0.983,0.888,1.034,1.039,0.893,0.982,0.817,1.019,0.973,1.179,0.997,0.986,0.93,0.99,1.121,0.971,0.981,0.998,1.056,0.877,0.983,0.924,0.902,1.051,1.001 +NM_030651,1.053,1.063,1.004,0.998,1.107,0.994,0.999,1.017,0.955,0.967,1.193,0.95,0.885,1.017,1.063,1.015,0.99,1.082,1.058,1.025,0.973,0.996,0.965,0.933,0.963,1.098,0.98,1.076,1.372,1.029,1.088,1.041,0.964,1.204,1.031,0.95,1.038,0.973,1.099,1.01,0.959,0.974,1.06,1.061,1.045,0.917,0.997,1.022,0.946,0.933,0.959,1.01,1.117,1.192 +NM_030657,0.982,0.965,0.889,1.024,1.051,0.935,1.138,0.889,1.057,1.176,1.011,0.874,0.793,0.902,1.001,0.986,1.051,0.961,1.194,0.993,1.184,1.037,1.112,1.126,0.988,1.024,0.861,0.967,0.868,1.024,1.166,0.787,0.965,0.925,0.936,1.012,1.012,1.221,0.827,0.95,0.717,1.021,1.069,1.01,1.018,0.847,0.975,0.906,1.032,0.863,0.939,1.011,0.883,1.02 +NM_030660,0.752,1.098,1.459,0.723,1.209,1.372,0.88,1.157,1.326,1.006,1.044,1.623,1.09,0.811,0.985,1.211,1.089,1.08,1.136,1.015,0.74,1.223,0.9,1.405,0.605,0.762,1.268,1.169,0.732,1.033,1.226,1.346,1.797,1.17,0.632,0.57,0.868,1.182,1.226,0.971,1.272,1.041,0.575,0.758,1.266,1.042,1.224,1.115,0.884,0.945,0.946,0.773,0.886,0.826 +NM_030661,0.965,1.005,0.944,1.021,1.074,1.243,0.926,1.025,1.035,1.065,1.044,0.964,0.99,1.091,1.131,0.991,0.96,1.054,1.029,0.939,1.011,1.007,0.943,0.905,0.967,0.98,1.137,1.053,1.053,0.969,0.945,0.92,1.06,1.025,0.962,1.085,0.962,1.054,1.12,0.875,0.864,1.067,0.962,0.942,1.001,1.1,0.978,1.083,1.002,1.033,0.87,1.076,1.056,0.921 +NM_030662,0.847,0.845,1.263,0.661,1.008,1.087,0.416,0.53,1.135,0.999,1.275,1.08,0.712,0.666,1.014,1.507,0.974,0.909,1.328,0.943,0.368,0.759,1.291,1.156,0.569,1.07,1.067,0.988,0.377,1.169,0.723,0.919,1.047,1.054,0.451,1.24,1.238,1.055,0.98,0.617,1.21,1.02,0.842,1.309,0.977,1.278,1.034,0.979,1.282,1.159,1.021,0.669,0.969,0.992 +NM_030663,1.026,1.214,1.09,1.031,1.004,0.937,0.851,0.732,1.045,1.048,0.856,1.106,0.987,0.901,0.861,0.932,1.061,1.085,0.827,0.961,0.823,1.048,1.056,0.899,0.943,0.911,0.92,1.077,0.993,1.118,0.994,1.093,0.985,1.065,0.979,0.919,0.975,1.165,1.175,1.098,1.112,1.203,0.748,1.037,1.11,0.93,1.183,1.181,0.953,1.136,0.962,0.969,0.993,0.915 +NM_030664,0.423,1.849,0.968,1.107,0.495,3.858,1.987,0.515,0.611,0.4,1.892,0.79,0.658,0.817,1.524,1.758,0.364,1.605,0.764,1.662,0.456,0.869,1.499,0.904,1.3,0.455,1.047,0.456,1.34,2.382,0.48,0.623,1.744,1.399,0.361,0.501,2.869,0.826,0.862,1.046,0.842,1.671,1.089,1.935,0.601,1.731,1.12,0.41,0.495,0.358,1.601,0.856,0.739,1.278 +NM_030665,1.287,1.171,1.148,0.928,1.003,0.89,1.386,0.889,0.687,1.025,0.755,1.039,0.955,0.962,0.856,1.123,1.169,0.878,1.017,0.86,1.023,1.121,0.972,0.785,1.112,0.846,0.996,0.764,0.845,0.947,0.925,1.031,0.741,1.246,1.389,1.048,0.978,0.845,0.842,0.934,1.075,1.115,0.78,1.245,1.065,0.997,0.919,0.96,0.912,0.894,1.023,1.14,1.18,1.014 +NM_030666,1.372,0.41,2.693,0.604,1.708,0.887,0.305,1.448,3.071,2.021,0.653,1.287,1.109,0.806,1.385,1.69,2.308,1.264,2.646,0.67,1.088,2.754,0.766,2.583,0.184,1.453,2.514,2.581,0.29,0.523,2.196,0.147,1.278,0.606,1.891,0.285,0.913,1.676,0.796,0.219,2.413,0.617,0.477,0.721,2.297,0.748,1.663,1.741,0.968,2.197,0.998,0.703,1.558,0.964 +NM_030668,0.965,0.73,1.198,0.963,0.881,0.883,1.157,1.062,1.327,0.992,1.031,1.052,0.922,0.945,0.927,1.059,1.012,1.061,0.901,0.991,1.125,1.096,1.006,0.939,1.089,0.867,1.006,0.986,0.946,1.011,0.945,0.983,35.24,1.032,0.974,0.87,1.019,0.842,0.86,1.058,1.003,0.886,0.933,0.997,1.053,1.031,0.823,1.162,0.865,1.009,1.059,1.071,1.012,1.042 +NM_030674,0.597,0.598,1.007,0.461,0.897,0.775,0.316,0.512,1.232,1.31,1.192,0.811,0.731,0.605,1.423,2.471,0.681,0.645,0.962,1.156,0.508,0.933,2.08,1.638,0.397,0.676,1.181,0.676,0.217,0.993,1.04,0.969,2.41,0.429,0.211,1.942,1.34,0.666,1.595,2.121,0.983,1.289,0.852,1.527,1.015,1.942,1.395,0.405,1.959,0.581,1.572,1.495,0.853,2.614 +NM_030751,1.064,1.035,1.097,1.066,1.021,1.104,0.788,1.095,0.928,0.9,0.899,1.014,0.894,1.357,0.871,1.136,1.008,0.993,1.1,0.914,0.932,1.03,0.995,0.949,1.025,0.988,0.973,1.062,0.699,0.993,0.869,1.317,0.878,0.951,1.096,0.968,1.113,1.07,0.975,0.974,1.03,0.876,0.964,0.923,0.885,0.994,1.103,1.026,0.962,0.996,1.025,1.037,0.905,0.933 +NM_030752,0.793,0.932,1.174,0.824,0.857,0.703,0.719,0.315,1.377,1.348,0.841,0.584,0.486,0.677,0.931,1.228,0.971,0.855,1.483,0.553,0.864,0.877,1.213,1.227,0.6,1.001,1.707,0.833,0.506,0.985,1.02,0.899,1.633,0.956,0.257,0.808,1.178,1.114,1.782,0.905,1.427,1.016,0.707,1.197,1.29,1.141,1.249,0.773,1.811,0.999,1.105,1.2,1.047,1.411 +NM_030753,1.061,0.909,1.056,0.971,1.316,0.852,0.89,0.755,1.103,1.147,0.937,1.22,0.98,0.959,1.023,0.953,1.065,1.043,1.233,0.891,1.083,0.964,0.808,1.019,0.923,1.166,1.106,1.013,0.782,0.98,1.001,1.21,1.014,0.928,0.925,0.88,1.02,1.303,0.913,0.956,1.131,0.909,0.982,1.25,1.231,1.128,1.282,1.014,1.067,0.978,0.868,1.058,1.054,1.276 +NM_030755,0.594,1.172,1.216,0.672,0.853,1.304,0.724,0.654,1.002,0.804,1.686,1.141,0.736,0.616,0.865,1.899,0.655,1.24,1.152,1.127,0.394,0.928,1.112,1.146,0.625,0.613,1.487,0.757,0.596,1.188,0.7,0.793,1.413,1.196,0.112,1.269,1.459,0.798,1.356,0.578,0.896,0.996,0.777,1.3,0.956,1.04,1.086,0.623,0.879,0.768,1.022,0.889,0.787,1.548 +NM_030758,1.165,1.003,0.928,1.166,1.054,0.921,0.827,1.115,1.05,1.054,0.867,1.067,0.911,0.9,0.908,0.932,0.968,0.938,1.069,1.081,1.119,1.166,0.926,1.218,0.944,1.144,1.027,1.21,0.98,0.979,0.971,0.947,0.875,0.89,1.404,0.988,0.794,0.8,1.133,1.054,1.059,0.929,0.683,1.138,1.039,0.928,0.923,1.058,0.846,1.082,0.953,0.903,1.004,1.012 +NM_030761,1.821,0.749,1.653,1.045,1.772,0.604,0.55,1.247,1.557,1.711,0.801,1.674,1.792,1.359,1.13,1.05,1.231,1.667,2.542,0.752,1.355,2.588,0.995,1.933,0.792,2.814,1.153,1.825,0.643,0.864,1.822,0.814,1.644,0.868,1.271,0.969,0.766,2.036,0.95,0.733,1.397,0.848,0.781,0.774,1.953,0.813,1.134,2.956,0.751,1.735,0.888,0.927,1.305,0.942 +NM_030762,0.775,1.093,0.811,0.987,0.811,1.903,0.937,0.784,0.871,0.814,2.598,0.803,0.876,0.85,1.377,2.617,0.897,0.953,0.715,1.724,0.89,0.881,1.772,0.777,0.749,0.747,0.827,0.76,0.956,1.215,0.706,1.053,1.002,1.288,0.852,1.062,1.373,0.813,1.457,0.985,0.83,1.858,1.521,1.634,0.914,1.91,1.048,0.893,1.159,0.809,1.58,1.02,0.835,0.969 +NM_030765,0.934,0.923,1.107,1.048,0.983,0.876,0.864,1.006,1.057,0.958,0.993,0.97,0.998,1.002,1.082,0.99,1.004,0.991,1.16,0.892,1.058,1.099,0.796,1.07,0.823,1.133,1.304,1.119,0.671,0.909,1.115,0.95,1.007,0.933,0.89,1.03,1.023,0.921,0.953,1.027,1.092,0.969,0.955,0.905,1.23,0.898,1.115,0.978,0.914,1.131,1.066,0.992,0.896,1.143 +NM_030766,0.894,0.895,1.075,1.021,0.998,0.922,0.854,1.038,0.889,0.953,0.855,1.06,1.089,0.966,1.026,0.901,0.987,1.039,1.124,1.084,0.996,1.065,0.957,0.875,1.027,1.027,0.881,0.978,0.772,1.024,0.887,0.906,1.038,1.04,0.983,0.864,1.096,0.901,1.102,0.973,1.057,0.974,0.946,1.006,1.057,0.975,1.121,0.986,0.924,0.942,1.249,0.954,1.046,0.94 +NM_030767,0.747,1.207,1.064,1.001,0.748,1.198,1.023,0.586,0.766,0.777,0.957,0.777,0.783,0.711,0.978,1.123,0.878,0.992,0.806,1.169,0.834,0.705,1.084,0.759,1.037,0.703,1.047,0.733,1.024,1.503,0.644,1.409,1.213,1.567,0.673,0.831,0.975,0.651,1.531,1.546,0.737,1.243,0.881,1.069,0.848,0.861,0.867,0.733,0.999,0.717,0.991,0.767,0.995,1.399 +NM_030768,0.849,1.095,1.07,0.981,0.852,0.879,0.617,0.381,1.148,0.996,0.898,0.82,0.712,0.685,0.812,1.232,1.116,0.913,1.047,0.853,0.683,0.808,1.387,1.093,0.74,0.964,1.263,0.715,0.526,0.992,0.756,1.329,2.412,1.089,0.461,0.921,0.995,0.973,1.427,0.888,1.018,0.889,0.79,1.796,1.095,0.947,1.008,0.917,1.027,0.818,0.962,0.917,0.819,2.276 +NM_030769,0.926,1.122,1.445,0.776,1.048,1.145,0.761,0.706,1.349,1.171,0.992,0.972,0.866,1.187,0.952,1.29,1.308,1.053,1.402,0.983,0.92,0.889,1.068,1.143,0.735,1.022,1.38,0.903,0.709,0.82,1.08,1.185,1.383,1.225,0.798,1.171,0.861,0.94,0.886,0.991,1.329,0.879,0.776,0.688,1.164,1.106,0.984,0.904,0.777,1.0,0.878,0.824,1.186,1.155 +NM_030772,0.976,1.123,0.976,1.025,1.187,0.969,1.061,1.077,0.959,1.175,1.051,1.002,0.874,0.989,0.997,1.032,1.116,1.147,0.977,1.053,1.078,1.048,1.266,1.031,1.094,0.901,1.136,0.757,2.363,1.07,0.915,0.919,1.053,1.14,1.124,0.987,1.051,1.029,1.26,0.891,0.986,1.058,1.273,0.881,0.934,1.062,0.94,1.004,1.006,0.853,0.97,0.928,1.105,1.175 +NM_030773,1.108,0.906,0.874,0.888,1.017,1.189,0.828,1.02,0.972,0.851,1.202,1.059,1.091,1.158,1.066,1.075,0.94,0.956,1.152,0.872,0.825,1.064,0.996,1.325,1.194,0.931,1.083,0.981,1.066,1.119,0.996,1.025,0.905,0.885,1.086,1.075,1.007,0.909,0.984,1.074,1.052,1.047,0.82,0.925,0.936,1.088,1.087,0.951,1.113,0.974,1.023,1.108,0.962,0.986 +NM_030774,1.075,0.955,0.975,0.93,1.035,0.922,0.821,0.996,0.939,0.999,1.065,1.055,0.981,1.068,1.041,0.993,1.086,1.039,1.037,1.043,1.119,1.016,1.0,0.954,0.942,1.123,1.089,1.039,0.689,1.087,1.056,0.951,0.995,1.055,0.926,1.018,0.894,1.049,1.01,1.059,1.13,1.003,0.999,0.996,1.021,1.042,1.169,1.089,0.935,0.909,0.994,0.926,1.053,0.826 +NM_030775,2.0999999999999996,1.556,3.575,2.105,2.056,2.917,1.7650000000000001,1.931,2.542,1.8359999999999999,1.486,2.043,2.292,2.49,1.838,2.232,2.159,1.994,2.2439999999999998,2.633,1.885,2.629,2.0149999999999997,2.348,1.8719999999999999,2.564,2.515,2.778,1.744,2.2300000000000004,2.567,3.077,2.4210000000000003,1.588,1.3679999999999999,1.4289999999999998,1.7389999999999999,2.742,1.81,1.9020000000000001,2.901,2.384,1.8849999999999998,1.759,2.153,1.802,2.003,2.191,1.5670000000000002,2.0300000000000002,2.219,2.254,1.6640000000000001,2.9770000000000003 +NM_030781,1.095,0.985,0.988,1.017,0.97,1.012,0.938,0.837,1.017,1.011,1.03,0.888,1.021,1.091,0.911,0.972,0.895,0.898,1.002,0.893,1.08,0.913,0.937,0.966,0.926,0.889,0.914,1.065,1.069,1.004,1.227,1.016,1.017,1.015,0.975,0.975,1.07,0.886,0.957,1.0,1.1,1.031,1.183,1.16,1.12,1.013,1.213,1.0,0.921,0.82,0.929,1.014,1.043,0.966 +NM_030782,0.368,1.228,0.751,0.741,0.635,1.425,1.036,0.316,0.722,0.679,0.945,0.521,0.377,0.372,0.561,1.33,0.646,0.895,0.575,1.209,0.355,0.419,1.298,0.712,0.985,0.484,0.884,0.454,0.575,1.66,0.551,1.788,1.982,2.071,0.157,1.413,1.087,0.631,1.955,1.31,0.706,1.469,0.65,1.74,0.729,1.004,0.685,0.406,0.991,0.532,1.379,0.901,0.597,1.576 +NM_030783,0.753,0.986,0.943,0.903,0.871,1.146,0.766,0.939,0.97,1.019,1.173,0.878,0.879,0.789,0.912,1.513,0.808,1.102,1.599,0.919,0.882,0.906,1.244,0.932,0.968,0.91,0.984,0.771,0.528,1.375,1.039,1.364,1.419,1.547,0.549,0.997,0.946,0.951,1.452,1.052,0.984,1.161,0.714,1.333,0.887,0.856,0.917,1.158,1.203,0.805,0.992,0.874,0.907,1.642 +NM_030784,1.036,1.051,0.949,0.93,0.897,1.028,1.022,0.981,1.023,1.015,1.082,1.066,0.956,0.894,0.975,0.916,0.991,1.015,0.962,0.764,1.065,1.097,1.024,0.993,0.939,0.977,1.009,0.884,0.726,1.143,0.9,0.949,1.239,0.953,0.994,0.981,0.861,1.0,1.033,1.04,1.002,0.979,1.178,1.087,0.919,1.06,1.105,1.039,0.995,1.104,1.027,0.856,0.921,1.108 +NM_030785,2.478,0.446,3.202,1.114,3.303,0.818,0.887,2.507,2.396,2.372,1.109,2.549,3.023,0.701,1.644,1.747,4.828,2.287,3.761,0.496,1.98,0.809,0.478,2.158,0.711,1.518,2.364,1.503,0.478,0.748,3.014,0.385,1.17,1.588,4.814,0.278,0.714,2.192,1.0,0.252,2.055,0.567,0.34,0.408,5.889,0.614,2.942,1.802,0.558,6.712,0.786,0.924,4.568,0.55 +NM_030786,0.941,1.082,1.162,0.863,0.848,1.069,1.0,0.925,1.204,0.981,1.186,1.019,0.903,0.956,1.016,1.052,0.933,0.938,0.865,0.884,0.914,0.789,1.124,0.876,1.01,0.945,0.939,1.041,0.907,1.265,0.879,3.212,1.239,1.243,0.969,1.625,0.938,0.945,0.973,0.926,1.319,1.221,0.928,0.761,0.852,0.973,0.969,0.897,0.822,0.827,1.056,1.195,0.991,0.975 +NM_030788,1.029,0.986,0.9,1.079,0.957,1.084,1.089,1.173,0.839,0.892,1.046,1.155,1.06,0.937,0.886,0.965,0.95,1.214,1.199,1.049,1.034,1.049,1.001,0.968,0.904,0.979,0.997,1.0,0.899,0.9,1.163,0.937,1.093,0.957,0.996,1.063,1.109,0.883,0.936,1.019,0.949,0.91,1.059,1.002,1.062,0.999,0.948,0.95,1.021,1.276,1.035,0.973,0.926,1.098 +NM_030789,1.084,0.914,1.157,1.025,0.952,0.804,0.67,0.765,1.241,0.929,1.116,0.713,0.796,0.982,0.924,1.028,0.977,1.033,1.314,0.838,0.889,0.605,1.109,0.739,0.852,1.028,0.873,0.947,0.62,1.05,0.993,1.006,1.748,0.965,1.085,0.995,0.794,0.743,1.109,1.24,1.158,0.791,0.765,1.85,1.007,0.9,1.068,0.919,1.061,1.098,0.896,0.977,1.26,1.325 +NM_030790,0.976,1.031,1.021,1.028,0.904,1.087,0.906,1.172,0.97,0.964,0.902,1.246,0.939,0.918,0.945,1.17,1.243,0.967,0.982,1.006,1.107,0.99,0.973,1.078,0.92,0.955,1.136,0.979,0.814,1.013,0.98,0.939,0.995,0.994,0.914,0.98,1.105,0.981,1.0,1.197,1.13,0.987,1.23,1.079,1.025,0.968,0.985,1.057,1.008,1.077,1.122,0.919,0.959,1.137 +NM_030791,1.007,1.013,1.036,1.175,0.943,1.125,0.943,1.036,1.041,0.761,0.943,0.964,1.096,0.976,0.882,1.032,0.919,0.962,0.955,1.047,0.895,1.048,0.989,1.045,0.968,1.093,1.083,0.956,0.794,0.943,0.986,0.868,1.047,1.046,1.089,0.835,1.005,0.929,0.952,1.045,1.043,0.93,1.049,1.138,1.072,0.798,1.133,0.896,0.927,0.999,0.897,1.146,1.148,0.948 +NM_030792,0.879,1.185,0.892,0.769,0.76,0.941,0.965,0.741,0.833,0.944,0.98,0.824,0.954,0.778,0.829,0.93,0.835,0.917,0.95,1.009,0.895,0.84,1.449,0.85,0.879,0.811,1.005,0.899,1.055,1.371,0.842,2.223,2.407,1.135,0.856,3.167,0.949,0.896,1.162,3.123,0.873,1.085,0.807,1.261,0.852,1.043,1.417,0.909,0.988,0.87,1.103,0.996,0.946,1.133 +NM_030793,0.712,0.862,1.064,0.711,0.781,1.004,0.839,0.604,1.102,0.955,0.988,0.708,0.569,0.805,0.964,1.06,0.849,1.101,1.13,1.044,0.799,0.745,1.095,1.044,0.685,0.916,1.201,0.811,0.588,1.168,0.952,1.259,1.824,1.244,0.497,0.662,1.168,0.86,1.075,0.966,1.022,0.997,0.732,0.87,0.972,0.978,1.059,0.673,0.786,0.848,1.123,0.959,1.043,1.59 +NM_030794,0.673,0.965,1.195,0.755,0.894,1.285,0.789,0.821,1.446,0.842,1.269,1.081,0.682,0.777,0.991,1.744,0.869,0.797,1.138,1.165,0.657,1.02,1.324,1.044,0.804,0.767,1.245,1.026,0.66,1.466,1.001,1.061,1.677,1.629,0.58,0.973,0.987,1.21,0.802,0.68,1.233,1.159,0.611,0.863,0.848,1.162,0.991,0.704,1.036,0.612,1.042,0.774,0.832,1.012 +NM_030795,0.941,1.047,0.893,0.876,0.975,1.069,1.021,1.097,1.065,0.928,0.921,0.929,1.12,1.002,1.058,1.02,0.971,1.098,0.891,0.937,0.858,0.942,1.032,0.876,1.023,1.034,1.035,1.024,1.063,1.021,0.988,0.892,0.896,0.968,0.951,1.02,0.936,0.985,1.091,1.065,0.914,1.016,1.04,1.004,0.937,0.847,1.173,0.958,1.057,1.13,1.091,1.069,0.939,0.96 +NM_030796,0.346,0.981,0.481,0.608,0.329,1.882,0.704,0.31,0.456,0.301,1.601,0.326,0.362,0.376,0.899,1.778,0.408,0.829,0.502,1.148,0.246,0.396,1.504,0.402,0.647,0.446,0.546,0.344,0.743,1.933,0.393,2.299,1.665,2.042,0.204,0.936,1.329,0.411,1.459,30.73,0.422,1.509,0.748,1.893,0.465,1.256,1.207,0.383,0.903,0.355,1.129,1.117,0.479,1.57 +NM_030797,0.983,0.866,0.994,1.126,0.946,1.247,0.94,0.874,0.963,0.932,0.988,1.023,0.898,0.942,0.917,0.805,0.933,1.102,1.059,0.887,1.001,0.879,0.971,1.068,1.172,1.077,0.959,1.018,0.867,0.961,0.938,1.092,1.066,0.921,1.177,1.043,0.938,0.95,1.237,2.174,0.97,1.065,0.927,0.971,1.051,0.998,0.986,0.919,0.963,0.87,0.999,1.157,1.114,1.147 +NM_030798,1.69,2.003,2.169,1.911,1.942,1.9709999999999999,1.4729999999999999,1.339,1.8239999999999998,2.099,1.821,1.5739999999999998,1.794,1.624,1.994,2.929,2.097,2.358,2.1660000000000004,1.805,1.513,1.786,2.601,2.277,1.9300000000000002,1.759,2.786,1.5590000000000002,1.6469999999999998,2.485,1.8559999999999999,2.387,3.055,1.9939999999999998,1.333,1.7,2.146,1.752,3.285,1.887,2.233,1.814,2.003,3.042,2.174,1.895,1.938,1.923,2.022,1.796,2.055,2.158,1.874,2.459 +NM_030800,0.785,1.321,1.098,0.855,0.8,1.103,0.752,0.54,0.977,1.027,0.876,0.905,0.684,0.704,0.82,1.09,0.929,0.997,0.882,1.269,0.673,1.063,1.682,0.984,0.711,0.862,1.291,0.705,0.722,1.014,0.812,1.005,1.505,1.276,0.477,1.122,0.989,1.025,1.798,0.92,0.923,1.169,0.764,1.169,0.935,0.896,0.92,0.871,0.97,0.823,1.078,0.851,0.887,1.998 +NM_030802,0.904,1.03,1.209,1.096,0.989,1.037,1.112,0.795,0.985,0.944,0.892,0.812,1.034,1.034,0.869,1.095,0.995,1.006,0.974,0.989,0.894,0.964,1.095,0.964,0.957,0.907,1.011,0.847,0.761,1.255,0.932,1.073,1.124,1.277,0.968,0.768,0.954,1.268,1.117,0.924,0.956,1.228,0.767,1.168,0.946,0.883,1.054,0.91,0.833,0.935,1.007,0.93,0.97,1.03 +NM_030803,0.736,1.087,0.898,0.983,0.614,1.236,0.991,0.592,0.894,0.688,0.98,0.906,0.596,0.685,0.857,1.229,0.778,1.046,0.803,1.09,0.674,0.87,1.333,1.014,0.92,0.982,0.735,0.693,0.983,1.348,0.78,1.097,1.579,1.397,0.439,1.149,1.052,0.8,1.514,0.895,0.752,1.267,1.019,1.659,0.754,1.017,0.986,0.836,0.926,0.665,1.01,0.821,0.689,2.863 +NM_030805,0.717,1.106,0.881,0.762,0.835,1.209,0.798,0.536,0.943,0.819,0.732,0.725,0.629,0.713,0.782,1.109,0.731,1.221,0.888,1.275,0.519,0.74,1.545,0.805,0.896,0.755,0.991,0.821,0.67,1.815,0.909,1.681,1.261,1.351,0.385,0.656,1.181,0.788,1.209,1.2,0.969,1.158,0.686,1.279,0.739,0.92,1.039,0.579,0.818,0.653,1.119,0.932,0.657,2.009 +NM_030806,0.963,0.924,1.034,1.014,1.12,0.894,0.773,0.863,1.151,1.039,1.036,1.045,0.935,0.893,0.796,0.966,1.007,0.863,0.966,1.039,1.008,0.977,1.044,0.988,0.88,0.943,1.04,1.117,1.038,1.126,1.061,1.365,0.945,1.311,0.78,1.003,0.895,1.025,0.995,0.908,1.104,1.151,0.898,0.91,1.098,0.985,1.005,0.903,0.937,0.91,1.003,0.92,1.159,0.816 +NM_030807,1.013,0.993,0.942,0.979,1.048,1.052,1.173,1.139,0.895,0.975,1.001,0.953,1.072,1.101,0.967,0.966,0.8,0.939,0.961,0.9,0.899,0.886,0.859,0.98,0.976,0.974,1.07,0.978,0.906,1.031,1.061,0.974,0.994,1.027,0.896,1.011,1.293,1.001,1.025,0.946,0.877,0.966,0.891,0.883,1.161,0.921,0.864,1.143,1.017,0.944,1.021,0.98,0.956,0.889 +NM_030808,0.988,0.537,1.529,0.72,1.785,0.914,0.347,1.174,1.664,1.493,0.787,1.357,0.807,1.037,1.35,1.022,1.624,0.882,1.633,0.714,0.884,1.104,0.764,1.418,0.369,1.045,2.275,1.117,0.307,0.883,1.819,0.995,1.011,0.951,2.022,0.604,0.666,1.576,0.596,0.944,1.849,0.795,1.191,0.406,1.518,1.117,1.269,1.432,0.829,1.118,0.81,0.652,1.763,1.09 +NM_030809,0.855,0.999,0.981,0.963,0.843,1.021,0.885,0.889,1.146,0.918,1.038,0.936,0.958,0.874,1.029,1.09,0.938,0.86,0.89,1.076,1.004,1.0,1.1,1.004,0.968,0.916,1.084,0.934,0.766,0.995,1.035,1.381,1.173,1.019,0.942,0.903,1.04,0.958,0.937,1.191,0.947,1.0,0.886,1.07,1.003,1.016,0.974,0.926,0.995,1.087,0.949,0.941,0.979,1.302 +NM_030810,0.392,1.507,0.708,0.619,0.736,1.934,1.823,0.298,0.617,0.651,0.539,0.579,0.405,0.304,0.885,1.321,0.616,0.734,0.704,1.141,0.257,0.585,1.961,1.026,0.883,0.357,0.915,0.546,0.363,1.602,0.638,1.497,2.365,2.287,0.129,0.669,1.4,0.869,2.475,0.895,0.736,2.837,0.422,1.528,0.795,1.022,0.786,0.496,1.205,0.537,1.887,0.61,0.427,2.713 +NM_030811,0.91,0.602,0.958,0.916,0.972,1.062,0.578,0.699,1.091,0.998,0.961,1.016,1.006,0.669,0.813,1.194,0.959,0.865,1.318,0.858,0.899,0.941,1.437,1.198,0.621,1.222,1.217,0.829,0.571,1.123,0.96,1.147,1.963,1.122,0.42,1.192,0.947,1.001,1.076,0.909,1.054,1.063,0.796,1.635,1.059,0.837,0.901,0.964,0.869,0.918,0.86,0.882,0.89,2.015 +NM_030812,0.971,1.074,0.89,1.13,0.936,0.919,0.949,0.896,1.001,1.014,0.866,1.066,0.905,0.897,0.964,0.885,1.162,0.907,0.857,0.977,1.017,0.95,0.961,1.043,0.94,1.07,0.894,1.064,0.911,0.97,1.038,1.044,1.065,0.941,1.027,0.885,0.858,0.941,17.78,0.966,0.899,0.93,0.904,0.918,1.013,1.038,1.197,1.049,1.049,1.094,1.06,0.962,1.078,21.22 +NM_030813,0.936,1.304,1.053,1.084,0.942,1.277,1.064,0.892,0.861,0.92,0.942,0.935,1.01,1.111,1.09,0.98,0.943,1.275,0.802,1.273,0.931,0.97,0.861,0.915,1.264,1.023,0.957,1.011,1.244,1.329,0.922,0.825,0.965,1.559,1.009,1.073,1.183,0.908,0.99,0.988,0.875,1.335,1.189,0.89,1.015,0.986,0.814,0.94,0.891,0.989,1.018,1.172,0.968,1.107 +NM_030814,1.532,0.807,1.682,0.885,1.578,0.809,0.711,0.871,2.21,1.396,0.803,1.207,0.872,1.408,1.479,0.88,1.167,1.173,1.656,1.015,1.052,1.487,1.013,1.742,0.794,1.395,1.51,1.44,1.038,0.764,1.583,0.993,1.804,0.833,0.833,0.812,0.922,1.858,0.833,1.062,1.752,0.921,0.881,0.765,1.4,0.984,0.938,1.19,0.869,1.101,0.919,0.853,0.951,1.067 +NM_030815,0.808,1.008,1.178,0.623,0.917,1.053,0.533,0.491,1.194,1.057,0.9,0.871,0.671,0.731,0.959,1.376,1.108,0.701,0.977,1.115,0.62,0.97,1.675,1.064,0.506,0.902,1.349,0.974,0.421,1.384,0.982,1.672,2.115,1.212,0.216,1.007,0.784,0.903,1.338,1.608,1.197,0.837,0.943,1.377,1.095,0.845,1.37,0.824,0.741,0.855,0.918,1.051,0.836,2.967 +NM_030816,0.85,1.161,1.015,0.949,1.109,1.239,0.945,0.826,1.062,1.004,1.0,1.055,0.806,0.809,0.933,1.239,0.863,0.925,0.987,0.969,0.868,0.699,1.189,1.021,0.951,0.912,1.117,0.925,0.642,1.0,0.941,0.962,1.545,0.968,0.81,0.915,1.029,0.913,1.331,0.915,0.948,0.982,0.723,0.972,1.106,1.043,1.019,0.919,1.133,0.966,1.044,0.824,0.957,1.381 +NM_030817,1.053,0.959,0.894,0.908,0.951,1.05,0.891,1.11,0.949,0.997,0.952,1.038,0.91,0.889,0.854,1.061,1.091,0.895,0.857,0.98,0.754,0.921,1.106,0.969,0.894,0.886,0.944,0.961,0.831,1.0,0.906,1.571,1.948,0.98,0.861,0.897,1.186,1.054,1.234,1.512,0.888,1.147,0.885,0.827,0.873,1.15,1.029,1.087,1.037,0.947,1.051,1.306,1.119,1.356 +NM_030818,0.656,1.114,1.065,0.768,0.955,1.157,0.666,0.625,1.379,1.028,0.96,0.9,0.611,0.774,1.0,1.251,1.135,0.84,0.996,1.288,0.572,0.935,1.297,1.355,0.602,0.808,1.359,0.979,0.606,1.307,1.0,1.635,0.906,1.195,0.573,0.961,0.954,0.997,1.056,1.475,1.249,1.111,0.933,0.857,0.818,1.025,0.9,0.765,0.916,0.667,1.013,0.864,0.735,1.354 +NM_030819,0.903,1.11,1.529,0.657,1.982,0.922,0.629,1.352,1.681,1.468,0.912,1.633,1.159,0.773,0.799,0.983,1.508,1.099,1.356,0.997,0.673,1.243,0.944,1.593,0.517,1.336,1.407,2.201,0.393,0.788,1.208,1.274,0.85,0.915,1.479,0.764,0.963,1.413,0.914,0.747,1.673,0.928,0.806,0.844,1.807,1.11,1.618,1.894,0.769,1.387,0.744,0.9,0.828,1.326 +NM_030821,0.82,1.106,1.198,0.836,1.144,1.128,0.952,1.091,1.175,1.057,0.953,1.293,0.954,0.861,1.273,1.279,0.968,1.004,1.241,0.993,0.799,1.196,1.026,1.333,0.737,0.843,1.194,1.045,0.754,1.111,1.031,1.24,1.386,1.036,0.746,1.004,1.018,1.237,1.064,0.72,1.082,0.892,0.735,0.858,1.014,0.942,1.133,0.951,1.037,0.99,0.984,0.978,1.074,1.021 +NM_030876,0.88,0.966,0.944,1.042,0.999,0.91,1.004,0.902,1.054,1.007,1.004,1.0,0.836,1.188,1.281,1.014,1.074,0.982,1.048,1.102,0.949,0.943,0.903,1.087,0.991,0.982,1.024,0.946,1.809,1.039,0.938,1.0,1.026,0.803,1.084,0.996,0.951,1.001,0.973,0.915,0.948,0.943,1.218,1.011,0.863,0.977,0.93,1.024,0.893,1.004,0.913,1.189,1.036,1.115 +NM_030877,0.435,0.667,0.649,0.792,0.579,2.033,1.347,0.431,0.668,0.627,1.519,0.565,0.416,0.403,0.683,1.125,0.55,1.24,0.887,1.07,0.534,0.735,1.364,0.722,1.096,0.502,0.788,0.464,1.501,1.85,0.5,0.848,2.092,3.034,0.21,0.951,1.259,0.758,1.411,0.832,0.663,1.359,0.65,1.119,0.558,0.88,0.863,0.489,0.722,0.448,1.187,0.757,0.852,1.655 +NM_030879,1.038,1.014,1.109,0.983,0.969,1.077,0.919,0.935,1.099,0.982,0.924,1.083,0.918,1.102,0.919,1.132,1.11,1.097,0.888,1.005,1.021,0.946,0.97,0.942,1.136,0.892,1.09,0.998,0.97,1.004,0.985,0.927,0.856,0.946,1.059,1.011,0.985,1.018,1.058,0.904,1.035,0.983,0.959,1.039,1.008,1.132,0.883,1.049,0.977,0.934,1.023,1.053,1.153,0.886 +NM_030881,1.516,1.996,2.089,1.591,1.907,1.956,1.92,1.462,2.709,2.053,2.049,1.71,1.209,2.0229999999999997,1.9660000000000002,2.3120000000000003,1.876,1.889,2.342,1.8379999999999999,2.125,1.604,2.263,2.493,1.41,1.573,2.355,1.76,1.3279999999999998,2.3280000000000003,2.398,2.221,2.439,2.3,1.319,1.843,2.467,1.8599999999999999,1.902,1.972,2.176,2.266,2.05,1.649,1.993,1.936,1.795,1.49,1.959,1.6139999999999999,2.0,1.8599999999999999,2.242,2.681 +NM_030882,1.482,1.94,1.968,2.302,1.7360000000000002,2.96,3.084,1.5979999999999999,1.762,1.66,2.004,1.706,1.58,1.519,2.4,2.11,1.8479999999999999,2.891,1.6909999999999998,2.6109999999999998,1.678,1.6949999999999998,2.31,1.879,1.6469999999999998,1.634,2.291,1.698,1.942,2.38,1.693,1.656,3.098,2.6189999999999998,1.544,1.799,2.057,1.686,3.5909999999999997,1.9620000000000002,1.963,3.003,1.6400000000000001,2.051,2.1390000000000002,2.252,1.909,1.582,3.441,1.7320000000000002,3.112,2.232,1.928,4.001 +NM_030883,1.116,0.865,0.959,1.149,1.009,0.935,0.822,1.195,1.139,1.121,0.892,1.044,1.026,0.98,1.026,1.016,1.093,1.16,0.943,1.043,0.929,1.085,1.074,1.001,1.09,1.007,0.96,0.951,1.031,0.95,1.16,0.997,1.041,0.975,1.046,0.972,0.849,0.806,1.071,0.847,1.001,1.0,1.197,1.028,1.021,1.018,0.922,0.983,1.177,1.068,0.835,0.942,1.005,0.886 +NM_030891,0.938,1.131,0.978,0.821,1.195,1.038,0.963,0.898,1.042,1.078,0.981,1.105,0.935,0.76,0.862,0.91,1.04,1.181,0.959,1.012,1.047,0.981,0.864,1.058,0.954,1.071,1.224,1.079,0.723,1.004,0.975,1.065,0.965,1.086,0.992,0.933,1.179,1.117,1.084,1.031,1.029,0.773,0.863,1.032,1.006,0.927,1.088,1.047,0.92,0.996,1.011,0.867,0.943,0.939 +NM_030893,1.044,0.969,0.97,0.955,0.988,0.963,1.016,1.059,1.037,1.111,1.149,1.136,0.947,1.021,0.834,1.181,0.961,1.028,0.981,0.917,0.95,0.977,0.954,0.822,1.027,0.957,1.014,1.068,1.072,0.947,0.92,0.957,0.973,1.167,1.002,0.938,0.986,1.006,0.996,1.063,1.006,1.056,0.991,1.191,0.957,0.857,1.026,1.077,1.038,1.016,1.128,1.045,1.134,0.901 +NM_030901,1.04,1.053,1.02,1.05,0.928,0.892,0.985,1.173,0.969,0.992,1.171,1.04,1.006,1.022,1.089,1.034,1.064,1.012,0.916,1.047,1.062,0.999,1.048,1.092,0.917,1.098,0.974,0.888,1.381,0.944,0.997,0.893,0.963,1.131,0.941,0.967,0.919,0.989,0.928,0.991,1.049,0.953,0.86,0.989,1.141,0.938,0.899,1.028,0.962,1.15,0.996,0.972,1.044,1.173 +NM_030903,1.097,1.031,0.941,1.042,1.005,1.237,1.111,1.07,0.788,1.037,1.007,0.994,1.02,1.01,1.047,1.183,0.931,1.036,0.998,1.029,1.084,0.955,0.998,0.971,1.067,0.974,0.866,0.953,0.968,1.062,0.978,0.965,1.088,0.996,1.019,0.953,1.044,0.926,0.931,0.921,1.089,1.144,0.88,1.075,1.23,1.071,1.0,0.954,1.205,1.048,0.973,0.924,1.075,1.107 +NM_030905,1.086,1.101,0.936,1.183,1.057,0.989,0.824,0.98,0.793,1.172,0.998,0.981,0.878,1.028,0.909,1.129,1.095,1.082,0.887,0.961,1.241,1.034,0.862,1.083,1.086,0.815,0.915,0.97,0.95,0.915,1.04,1.036,1.0,0.922,1.013,0.999,0.955,0.9,0.913,0.964,0.958,1.052,1.201,1.103,1.082,1.085,0.903,0.924,1.46,0.98,1.047,0.823,1.121,0.744 +NM_030906,1.025,1.127,0.884,1.003,0.956,1.037,1.021,0.892,1.086,0.901,0.926,0.884,0.987,0.847,1.002,0.952,1.05,0.944,1.051,1.046,0.979,0.918,1.204,0.929,1.026,0.935,0.975,1.007,0.858,1.075,1.007,0.98,0.983,1.005,1.01,1.047,0.944,0.935,1.029,0.86,0.959,1.107,0.948,1.006,0.986,1.153,1.134,0.913,0.995,0.905,1.037,0.964,0.976,0.942 +NM_030907,1.0,0.983,0.965,1.118,0.993,0.918,0.807,0.952,0.997,0.884,1.025,1.083,0.866,0.991,1.139,0.83,1.168,0.954,0.889,1.06,0.963,0.93,0.959,1.026,1.043,1.082,1.286,1.113,0.731,1.055,0.959,1.051,0.781,1.03,0.946,0.905,1.003,0.963,1.076,1.081,0.95,0.992,0.849,1.031,1.003,1.004,1.117,1.02,1.003,1.002,1.058,1.02,1.055,0.921 +NM_030908,0.956,1.022,1.009,0.926,1.134,0.895,0.775,0.977,0.898,1.054,0.953,1.033,0.919,0.91,1.028,0.939,1.047,0.982,0.848,0.934,0.979,0.887,0.856,0.975,0.902,0.936,1.117,0.999,0.838,1.015,1.095,1.014,0.812,1.024,1.063,0.863,1.002,1.005,1.065,1.068,1.025,0.894,1.074,1.045,0.982,0.907,1.01,1.008,0.991,1.078,1.018,1.004,1.063,1.133 +NM_030911,0.99,1.122,0.895,0.993,1.014,0.958,0.877,1.039,1.036,1.157,0.998,1.059,1.04,0.901,1.224,1.019,1.084,1.329,0.928,0.86,0.848,1.039,1.014,1.072,0.985,0.932,1.025,0.993,1.233,0.972,0.938,1.039,1.047,1.028,0.96,0.862,0.913,1.031,0.946,0.799,1.108,0.956,1.18,0.785,1.032,0.989,1.007,0.985,0.905,1.147,0.944,0.742,0.959,0.945 +NM_030912,0.693,1.478,0.963,0.819,0.738,1.097,0.834,0.448,0.872,0.649,0.99,0.571,0.718,0.846,0.894,1.014,0.817,0.868,0.846,1.268,0.41,0.678,1.091,0.62,0.759,1.158,0.655,0.865,0.532,1.368,0.973,2.567,0.978,1.832,1.147,0.95,0.877,1.041,1.495,0.829,0.821,1.509,0.896,1.73,0.701,0.977,0.824,0.806,0.693,0.625,1.03,0.919,0.856,1.023 +NM_030913,1.09,0.857,1.106,0.875,0.962,0.918,0.939,1.049,1.01,1.047,0.906,1.055,1.046,0.818,1.137,1.162,0.977,0.89,0.95,1.172,0.926,1.04,0.87,0.911,0.897,0.984,1.057,0.966,0.947,1.0,1.079,1.011,0.915,0.912,0.966,0.836,1.171,1.121,0.883,1.329,1.096,0.912,1.19,0.907,1.054,1.101,0.944,1.015,0.972,0.922,0.988,1.058,1.159,1.015 +NM_030914,0.779,0.795,0.798,1.2,0.498,1.348,0.686,0.544,0.54,0.524,1.873,0.549,0.737,0.603,1.115,2.525,0.617,0.764,1.505,0.868,0.614,0.507,1.175,0.822,1.19,0.948,1.004,0.474,0.61,1.414,0.627,1.457,2.277,2.712,0.249,1.132,1.202,0.435,2.112,0.817,0.657,1.124,0.611,1.627,0.762,0.779,0.706,0.705,0.792,0.83,0.996,0.883,1.067,2.151 +NM_030915,0.721,1.82,0.836,0.774,0.659,0.99,1.355,0.68,0.643,0.775,0.982,0.717,0.767,0.684,0.762,0.874,0.783,0.993,0.758,1.039,0.705,0.698,1.539,0.731,1.097,0.725,0.98,0.743,1.182,1.485,0.728,7.981,2.073,2.197,0.632,0.89,1.189,0.826,1.814,2.249,0.731,1.576,1.058,1.42,0.757,0.881,1.288,0.611,0.658,0.666,1.304,1.976,0.895,2.412 +NM_030916,1.387,0.859,1.737,0.978,1.348,0.898,0.796,1.287,1.812,1.449,0.617,1.109,1.297,1.162,1.084,1.037,1.29,1.221,1.655,0.77,1.394,1.644,0.706,1.489,0.801,1.182,1.576,1.521,0.772,0.795,1.624,0.985,0.863,0.973,1.757,0.861,0.755,1.417,1.12,1.011,1.496,0.87,0.802,0.886,1.84,0.796,1.193,1.01,0.86,1.32,0.951,0.994,1.516,0.808 +NM_030917,0.94,1.086,0.989,0.875,1.062,0.859,0.811,0.649,1.041,1.182,0.947,0.645,0.701,0.877,0.833,1.014,0.928,1.024,1.102,0.963,0.758,0.892,1.032,0.833,0.926,1.006,0.991,0.865,0.702,1.151,0.739,0.924,1.224,1.252,0.605,1.074,0.924,0.791,1.389,1.111,0.992,0.994,1.045,1.528,0.942,1.157,1.212,0.77,0.972,0.847,1.023,0.969,1.009,0.93 +NM_030918,0.532,1.149,1.164,0.742,0.684,1.399,0.746,0.372,0.942,0.851,1.041,0.584,0.43,0.601,0.838,1.267,0.645,1.038,0.786,1.292,0.451,0.57,1.531,0.736,0.593,0.696,0.954,0.698,0.481,1.748,0.711,2.309,1.42,1.333,0.3,1.147,1.271,0.668,1.418,1.087,0.864,1.463,0.963,1.546,0.803,1.304,0.966,0.551,0.928,0.664,1.315,0.922,0.851,2.025 +NM_030919,2.874,0.405,2.414,1.162,3.272,0.456,0.365,1.153,3.056,1.93,0.365,1.458,1.96,2.184,1.752,1.351,4.616,2.161,2.98,0.365,0.986,1.346,0.859,1.532,0.308,2.197,2.881,1.949,0.249,0.509,3.415,0.68,2.446,0.38,3.328,0.558,0.458,3.816,0.845,0.519,5.164,0.354,0.277,0.748,3.389,0.4,1.882,2.906,0.685,2.347,1.109,1.015,2.164,1.232 +NM_030920,1.133,0.944,1.023,0.979,1.129,1.028,0.9,0.941,0.914,1.08,1.032,1.006,0.962,1.221,1.083,1.125,0.97,1.047,1.022,0.997,1.012,0.966,0.957,1.046,0.965,1.011,0.961,0.939,0.781,1.002,1.093,0.945,0.908,0.945,0.915,1.001,0.944,1.22,0.935,1.061,1.023,0.912,0.956,1.01,0.966,0.998,1.035,0.974,1.031,0.98,1.057,1.034,0.934,0.919 +NM_030922,0.527,1.039,0.817,0.944,0.61,1.678,0.76,0.376,0.902,0.814,1.694,0.604,0.465,0.569,1.007,1.892,0.546,0.921,0.914,1.255,0.406,0.536,2.568,0.865,0.755,0.677,1.03,0.662,0.444,1.513,0.829,1.834,1.623,1.656,0.476,1.348,1.683,0.506,1.955,0.863,0.625,1.345,1.045,1.468,0.909,1.346,0.882,0.53,1.54,0.652,1.502,0.965,0.954,1.968 +NM_030923,0.554,1.264,0.542,1.178,0.55,1.892,1.081,0.612,0.553,0.582,2.406,0.588,0.535,0.532,1.522,1.481,0.695,0.912,0.551,1.014,0.572,0.586,0.944,0.661,0.807,0.599,0.585,0.62,1.354,2.689,0.628,1.187,0.994,2.359,0.662,1.836,2.681,0.567,1.814,1.484,0.559,1.329,1.373,1.607,0.596,1.229,0.877,0.542,1.188,0.571,1.701,0.804,0.675,1.853 +NM_030924,0.983,1.066,1.149,0.819,1.003,1.091,0.993,0.842,1.08,1.001,1.075,0.975,1.0,0.98,0.898,1.047,1.095,1.013,0.894,0.901,1.218,0.94,0.991,0.928,1.152,0.86,0.86,1.061,1.282,1.029,0.908,1.066,1.188,0.94,0.876,0.877,1.06,0.931,0.9,0.892,0.929,1.027,0.861,0.999,1.129,1.025,0.958,1.087,0.958,0.9,1.016,1.108,1.126,1.185 +NM_030925,1.115,0.95,1.023,0.916,1.163,0.914,0.882,1.004,1.273,1.082,0.953,1.1,1.104,0.763,0.924,1.054,0.942,1.019,1.215,1.005,1.002,1.001,1.17,1.049,1.046,1.031,0.999,1.006,1.489,1.032,1.002,0.925,0.978,0.956,0.861,0.824,0.949,1.128,1.064,0.967,1.016,1.179,0.737,0.942,0.926,0.915,0.839,1.135,0.915,1.051,0.907,0.902,0.986,1.021 +NM_030926,0.203,1.163,0.245,0.643,0.196,1.479,1.023,0.192,0.244,0.211,2.124,0.185,0.232,0.188,1.905,4.048,0.195,0.626,0.282,2.243,0.296,0.229,1.833,0.275,0.9,0.214,0.281,0.284,0.584,1.002,0.202,1.489,1.769,2.352,0.163,2.556,1.388,0.248,1.514,1.572,0.426,2.536,0.818,1.574,0.271,2.826,0.824,0.189,1.118,0.203,1.779,0.445,0.313,4.505 +NM_030927,2.258,0.582,1.541,0.8,1.522,0.896,0.425,1.467,1.309,1.001,0.617,0.831,1.487,1.351,1.181,1.184,1.881,1.163,2.302,0.704,0.939,2.092,0.733,1.434,0.52,1.9,2.337,1.03,0.353,0.892,1.616,0.866,1.581,0.82,3.221,0.547,0.754,1.841,1.226,0.777,1.307,0.704,0.47,1.241,1.184,0.586,1.038,2.832,0.635,1.368,0.771,0.706,1.146,0.739 +NM_030929,0.808,1.659,0.922,0.932,0.711,2.118,1.119,0.663,0.779,0.799,1.211,0.752,0.821,0.792,0.948,0.947,0.824,1.304,0.754,1.338,0.838,0.692,1.248,0.71,1.241,0.71,0.771,0.719,0.931,1.769,0.767,1.478,0.939,2.553,0.73,1.764,1.189,0.726,1.126,0.991,0.619,1.532,0.784,1.72,0.687,1.09,1.124,0.757,0.905,0.714,1.404,0.803,0.813,1.498 +NM_030930,1.061,1.002,1.049,1.164,0.922,0.915,0.799,1.043,0.918,0.903,0.954,0.771,0.906,0.957,1.08,1.146,1.118,0.897,0.969,0.882,0.968,0.755,0.959,0.89,0.926,0.934,0.828,0.847,0.898,1.275,0.895,1.312,1.15,1.092,0.961,0.927,1.014,0.884,1.743,0.99,0.737,1.236,0.836,1.59,0.986,0.862,1.016,1.042,0.814,0.998,1.043,0.961,0.775,0.987 +NM_030931,0.97,0.995,1.249,0.965,1.016,0.997,0.964,0.983,1.041,1.042,1.035,0.933,1.035,0.907,1.021,0.94,1.081,0.929,1.004,1.111,0.983,1.01,1.054,1.019,1.104,1.008,0.992,0.981,1.307,0.958,0.942,0.971,1.112,0.904,0.96,0.932,1.04,1.129,1.0,0.877,1.075,0.857,0.924,0.864,1.05,0.976,1.185,1.098,1.041,1.056,0.976,1.104,1.074,1.035 +NM_030932,1.03,1.045,0.91,1.107,0.935,1.06,1.047,1.0,0.987,1.124,0.954,1.156,0.914,0.875,0.775,1.037,0.897,1.094,1.014,1.054,1.148,1.014,1.13,0.978,0.941,0.898,0.841,0.8,0.964,1.027,0.79,1.065,1.261,1.068,0.951,1.19,1.065,1.032,1.127,0.897,0.877,1.046,1.118,1.147,1.011,0.892,0.955,0.873,1.247,1.07,0.962,0.936,1.079,1.196 +NM_030933,0.964,0.951,1.014,1.083,1.066,0.846,1.295,1.001,0.932,0.801,1.138,0.935,1.108,1.142,0.956,1.002,0.947,1.116,1.058,0.985,0.91,1.013,0.943,1.054,0.979,0.987,0.96,0.884,1.083,1.189,1.237,1.084,1.198,1.023,1.069,1.138,1.034,1.046,1.031,1.02,1.069,1.117,0.921,1.046,1.084,1.001,1.09,1.013,0.952,0.963,0.898,0.989,1.032,0.766 +NM_030934,1.102,0.915,1.175,0.988,1.002,1.096,1.087,0.906,1.171,1.042,0.943,1.06,1.014,1.254,0.918,1.195,1.09,1.299,1.13,1.084,0.858,0.902,0.933,1.008,0.993,0.99,0.943,0.996,1.067,1.05,0.918,1.12,1.344,0.867,0.948,0.937,1.053,1.059,1.025,1.025,0.938,0.973,0.992,0.93,1.095,1.12,0.998,0.9,0.937,1.004,0.971,0.953,0.981,0.77 +NM_030935,0.893,0.733,1.501,0.586,1.532,1.008,0.561,0.937,1.842,1.272,0.535,1.1,0.88,0.93,0.961,0.894,1.644,1.118,1.397,1.002,0.355,1.41,1.039,1.268,0.326,1.332,1.394,1.693,0.37,1.432,1.722,1.498,0.806,0.798,1.521,0.618,0.649,1.168,1.21,1.244,1.589,0.922,0.37,1.057,1.345,0.71,1.454,1.571,0.758,0.917,0.783,1.201,0.882,0.793 +NM_030936,0.869,1.12,0.941,1.134,0.952,1.031,0.999,0.861,0.979,1.061,0.945,1.003,1.031,1.018,0.938,0.949,1.116,1.065,1.002,0.886,1.0,0.942,1.181,0.903,1.022,0.952,1.011,1.038,1.109,1.092,1.058,0.818,1.411,1.047,0.943,0.865,0.92,1.024,0.93,0.954,0.981,0.957,1.106,1.173,0.958,0.976,0.884,0.916,0.91,1.005,1.075,1.125,0.931,0.996 +NM_030937,0.909,1.036,1.308,1.138,0.931,0.973,0.74,0.528,1.709,0.873,0.91,0.791,0.643,1.138,1.257,0.935,1.153,0.82,0.975,1.227,0.678,0.781,0.881,1.665,0.684,0.877,1.349,0.933,0.539,1.059,0.983,1.746,1.279,1.157,0.532,1.2,0.752,0.83,1.103,2.51,1.083,0.905,0.944,0.79,1.096,1.113,0.93,0.811,0.934,0.706,0.955,0.85,1.064,2.245 +NM_030938,0.667,1.021,0.805,0.877,0.897,1.237,0.857,0.972,1.071,0.775,1.153,0.923,0.829,0.639,1.005,1.569,0.891,0.852,0.919,1.149,0.616,0.656,0.938,1.003,0.824,0.746,0.892,0.805,0.733,1.162,0.839,1.365,1.239,1.101,1.067,0.903,1.399,0.967,1.279,1.625,0.844,1.183,1.011,1.269,0.991,0.979,0.999,0.781,1.111,0.753,1.03,1.043,0.8,1.653 +NM_030939,0.785,1.154,1.425,0.788,0.839,1.163,0.636,0.493,1.067,1.009,1.066,0.705,0.544,0.646,0.996,1.231,0.717,0.994,1.383,0.958,0.503,0.718,0.912,1.041,0.746,0.73,1.347,0.804,0.35,1.34,0.929,0.955,2.338,1.413,0.405,0.476,1.124,0.631,0.912,0.606,1.004,0.954,0.507,1.05,0.833,1.051,0.795,0.587,0.825,0.831,0.934,0.777,0.82,1.907 +NM_030940,0.642,1.404,1.054,0.78,0.683,1.312,0.634,0.589,0.839,0.717,2.055,0.785,0.865,0.733,1.233,2.051,0.645,0.797,1.178,1.08,0.5,0.692,1.368,0.899,1.056,0.72,1.202,0.69,0.666,1.117,0.813,1.905,2.002,1.674,0.319,0.685,1.604,0.821,1.1,0.912,1.013,1.448,0.934,1.04,0.782,1.307,0.733,0.595,0.965,0.777,1.195,0.921,0.99,2.705 +NM_030941,1.038,1.156,1.16,0.953,0.871,0.961,0.978,0.831,0.814,0.951,1.038,0.916,1.038,0.916,0.804,1.037,0.979,0.872,0.886,0.965,0.866,1.066,0.987,0.963,1.086,0.925,1.114,0.942,1.087,1.003,1.138,1.119,1.125,1.056,0.851,1.049,1.004,0.996,1.199,0.833,0.899,1.141,0.923,1.182,0.894,1.033,1.042,1.015,1.004,0.931,0.822,1.01,0.931,1.354 +NM_030943,0.968,0.926,0.939,0.989,0.954,0.943,1.115,0.948,1.063,1.078,1.052,0.912,0.953,1.019,0.769,0.989,1.008,1.074,1.03,1.033,1.016,0.959,1.113,1.076,1.066,0.973,0.913,1.064,1.301,1.001,1.106,0.952,0.901,0.953,1.13,1.061,0.947,0.885,0.964,0.887,1.205,1.062,0.81,1.129,1.017,1.079,1.008,1.019,1.004,0.862,0.998,0.954,0.896,1.081 +NM_030945,1.992,1.9809999999999999,2.192,2.027,1.94,1.955,2.124,1.9849999999999999,2.151,2.031,2.036,2.035,2.167,1.8489999999999998,1.797,1.924,2.028,2.0999999999999996,2.319,1.971,2.1310000000000002,1.914,2.13,1.867,1.908,1.952,2.1189999999999998,2.0780000000000003,2.1,2.026,2.268,3.886,1.924,2.182,2.127,1.987,1.9649999999999999,1.98,1.825,2.028,2.347,2.059,1.9169999999999998,2.061,2.074,2.1020000000000003,1.987,1.763,2.025,2.097,2.043,2.192,2.035,2.069 +NM_030949,1.01,0.78,1.787,1.072,1.105,0.792,0.696,1.132,1.808,1.268,0.581,1.538,0.962,0.908,1.091,1.217,1.687,1.084,1.252,1.251,0.858,1.081,1.019,0.939,0.674,1.163,1.903,0.934,0.434,0.838,1.087,0.904,1.33,0.624,0.698,1.386,0.891,1.23,0.963,1.387,1.355,0.686,0.668,0.685,1.386,1.061,1.444,0.744,0.869,1.937,0.967,1.117,1.616,1.154 +NM_030950,0.556,1.437,0.912,0.703,0.685,1.067,0.776,0.441,0.786,0.916,0.905,0.682,0.525,0.594,1.028,1.281,0.783,0.945,0.696,1.289,0.489,0.736,1.639,0.787,0.924,0.675,0.918,0.668,0.52,1.25,0.771,1.86,1.87,1.305,0.292,1.258,1.146,0.873,1.498,1.481,0.814,1.648,0.939,1.358,0.817,0.998,0.774,0.62,0.798,0.623,1.249,0.87,0.701,1.604 +NM_030952,1.191,0.931,1.221,0.865,1.042,0.952,1.027,0.86,1.329,1.131,1.096,0.794,0.908,1.409,1.315,0.892,1.056,0.949,1.311,0.998,1.043,1.024,0.994,1.225,0.778,0.978,0.946,1.15,0.837,0.904,1.142,0.903,1.433,1.006,0.88,1.015,0.878,0.926,0.888,1.021,1.217,0.992,1.019,0.879,1.142,0.883,1.104,0.868,0.969,1.093,0.989,0.949,1.47,1.002 +NM_030953,1.007,1.041,0.945,0.983,1.216,1.01,0.764,0.842,0.992,1.051,0.947,0.995,0.918,0.829,1.05,0.935,1.023,1.074,0.888,1.006,0.747,1.048,0.914,1.104,1.019,1.031,0.958,1.012,1.013,1.012,1.015,1.245,0.919,0.937,0.979,0.868,1.022,1.052,1.128,0.931,1.134,1.06,0.866,1.047,1.014,1.07,0.928,1.098,1.076,1.049,0.984,0.99,0.917,1.077 +NM_030955,0.935,0.925,1.057,0.962,1.102,1.012,0.939,1.07,1.043,1.059,1.111,1.009,0.919,1.053,0.933,1.119,0.939,0.919,0.969,0.925,1.045,0.991,1.012,0.958,1.052,0.981,0.877,1.125,1.304,1.012,0.977,0.983,1.056,0.895,0.888,1.175,1.095,1.028,1.054,0.937,1.041,0.905,1.147,0.741,0.993,1.027,0.928,1.102,1.16,1.069,0.974,0.903,0.876,1.086 +NM_030956,1.135,0.933,1.078,1.051,1.144,1.03,1.107,0.913,1.043,1.156,0.999,0.968,1.178,0.873,1.077,1.074,0.943,0.876,1.006,0.98,1.038,0.94,0.875,0.975,1.01,1.02,1.047,1.049,0.84,0.921,1.071,0.98,0.922,0.908,1.058,0.909,0.897,1.014,0.947,0.916,0.936,1.133,0.91,1.038,1.054,0.886,0.98,1.062,0.975,0.91,1.052,0.868,0.863,1.13 +NM_030957,1.023,1.021,0.853,0.899,0.989,0.966,0.787,1.004,0.923,1.082,1.02,1.037,0.996,0.922,0.988,0.97,1.003,1.005,1.001,0.965,1.06,1.03,0.947,1.0,1.143,1.077,1.014,1.006,0.561,1.037,0.913,1.065,0.936,1.087,1.036,1.083,0.961,1.178,0.935,1.019,0.975,0.933,1.019,0.968,1.033,0.926,0.928,1.072,1.003,1.017,1.073,0.962,1.0,0.881 +NM_030958,0.948,0.856,0.879,1.229,0.879,0.959,0.874,0.891,1.129,1.122,1.287,1.001,0.922,1.137,0.947,1.027,1.0,0.775,0.985,1.264,1.253,0.979,0.953,1.042,0.972,0.968,0.864,0.959,1.744,0.996,1.037,1.161,1.285,0.876,0.938,1.153,0.824,1.0,0.891,1.145,1.209,1.111,0.97,0.954,0.907,1.132,0.935,0.999,0.885,0.84,0.867,1.268,1.028,0.901 +NM_030960,1.086,0.954,0.93,1.035,1.072,0.959,0.956,1.038,1.021,1.028,1.08,0.83,1.093,0.987,0.849,0.934,0.947,1.009,0.87,1.112,1.021,1.026,0.942,0.878,1.147,0.957,0.925,1.19,0.838,0.902,1.026,0.973,1.125,0.944,1.109,1.16,0.864,0.891,1.057,0.994,0.991,1.118,0.902,0.82,1.015,1.004,0.881,1.085,1.06,1.114,1.049,1.028,1.141,1.145 +NM_030961,1.123,0.731,1.447,0.685,1.293,0.834,0.722,0.596,1.34,0.743,0.598,0.621,0.696,0.883,0.982,0.817,1.604,0.785,1.092,0.762,0.798,1.138,1.197,1.261,0.7,1.802,1.063,1.239,0.451,0.931,1.433,1.363,1.172,0.949,1.285,0.651,0.695,1.103,1.622,1.252,1.194,0.795,0.593,1.23,1.173,0.766,1.033,1.466,1.172,1.283,0.897,1.082,0.8,1.333 +NM_030962,0.916,0.952,0.994,0.843,0.985,0.903,0.991,1.108,0.971,0.985,0.932,1.034,1.066,1.081,0.877,0.998,0.927,0.972,1.021,1.032,1.195,0.932,0.869,1.067,1.088,1.084,1.079,1.065,0.77,1.018,1.09,1.03,0.963,1.024,0.936,1.024,0.987,1.177,0.931,1.04,1.019,1.062,0.994,0.904,0.958,1.038,0.844,1.006,0.908,0.885,1.055,0.835,0.912,0.99 +NM_030963,0.899,1.127,1.186,0.894,1.059,0.898,0.933,0.756,1.01,1.017,1.344,0.89,0.865,0.926,0.987,1.14,0.977,1.122,1.004,0.892,0.808,0.752,0.955,0.993,0.948,0.905,0.916,1.016,0.74,0.958,1.119,1.292,1.003,1.279,0.714,0.831,1.108,0.979,1.097,0.933,1.343,1.114,0.835,1.046,1.002,0.979,0.978,0.955,0.993,1.092,0.938,1.04,0.89,1.611 +NM_030964,1.022,0.961,0.844,0.962,0.858,1.003,1.153,0.984,0.877,0.835,0.977,0.979,0.983,1.005,1.129,1.072,0.952,0.988,0.889,0.893,1.098,0.965,1.121,0.919,0.92,0.902,0.901,1.071,1.02,0.982,0.91,1.14,1.161,0.99,0.876,1.001,1.283,0.982,1.254,1.288,0.818,0.999,1.152,1.099,0.923,0.941,0.97,0.844,0.922,0.91,1.028,1.121,0.915,1.002 +NM_030965,1.017,0.896,1.033,0.824,1.031,1.005,1.221,1.053,0.876,0.974,1.056,1.066,0.95,0.874,0.971,1.02,1.008,1.004,1.121,0.987,0.923,0.847,0.993,0.888,0.972,1.04,0.981,1.006,0.961,0.995,1.015,1.303,1.004,0.942,0.942,1.068,0.933,1.315,1.097,0.963,1.006,0.911,0.989,0.904,1.028,0.984,0.931,0.903,0.953,0.946,1.081,0.882,0.89,0.999 +NM_030966,0.964,0.961,0.957,1.016,1.027,1.003,0.991,0.883,0.912,1.103,0.99,0.919,1.11,0.948,0.983,0.971,1.062,0.968,0.941,1.105,1.032,0.922,0.977,0.972,1.065,0.986,1.15,0.841,1.058,0.874,1.013,0.893,0.923,0.86,1.023,1.007,1.078,1.094,1.057,0.966,0.931,0.991,0.902,0.925,1.001,0.999,1.038,1.01,1.066,1.036,1.098,1.037,1.081,1.04 +NM_030967,1.268,0.966,0.928,1.073,1.132,1.006,0.749,1.119,0.902,1.074,0.875,1.026,1.053,0.98,0.89,1.148,0.938,1.075,0.97,0.957,1.027,0.961,0.908,1.134,0.971,1.136,1.071,1.062,1.102,0.899,1.09,1.002,1.048,1.04,1.13,1.112,1.026,1.053,0.989,0.925,1.055,1.032,1.008,1.009,0.968,0.942,0.945,1.145,1.112,1.024,1.005,0.955,0.99,1.16 +NM_030969,0.659,1.303,1.006,0.765,0.851,2.048,0.994,0.981,1.159,0.854,1.238,0.966,0.989,0.727,1.07,2.671,0.849,1.061,0.87,1.155,0.478,0.956,1.259,1.228,0.772,0.641,1.335,0.823,0.531,1.382,1.126,1.421,4.253,1.443,0.511,0.553,1.403,1.213,1.37,0.927,0.941,1.247,0.81,0.981,0.822,1.148,1.052,0.818,1.084,0.708,1.225,0.931,0.528,2.287 +NM_030970,1.129,0.864,0.982,1.131,1.061,1.103,1.37,1.159,0.981,1.055,1.076,0.933,0.992,1.137,0.941,1.074,1.002,0.959,1.021,1.026,1.049,0.877,0.985,0.903,1.12,1.044,1.038,1.004,0.958,1.038,1.045,1.182,1.021,0.921,0.98,0.977,1.026,0.979,0.988,1.098,1.093,1.057,1.087,0.913,0.903,1.071,1.018,1.04,0.93,0.801,1.041,0.992,1.047,1.069 +NM_030973,0.599,1.109,1.12,0.546,1.007,0.999,0.691,0.789,1.132,0.934,0.747,0.763,0.501,0.661,0.79,1.382,1.308,1.003,1.11,1.334,0.654,0.692,1.479,0.839,0.54,0.952,1.244,0.935,0.493,1.155,1.248,1.041,2.571,0.997,1.1,1.164,0.977,0.986,1.257,1.157,1.168,0.902,0.571,1.096,0.909,0.778,1.355,1.001,1.022,0.643,0.857,0.742,0.866,1.355 +NM_030974,0.745,1.064,0.783,0.859,0.794,1.303,0.722,0.786,0.937,0.761,1.073,0.863,0.736,0.706,0.885,1.37,0.889,1.075,1.073,0.944,0.561,0.801,0.946,0.927,0.852,0.94,1.061,0.734,0.888,1.278,0.924,1.479,2.558,1.326,0.469,1.05,1.041,0.964,1.552,1.389,0.903,1.056,0.702,1.365,0.847,1.298,1.009,1.07,1.126,0.794,0.972,0.726,0.739,1.343 +NM_030978,0.659,0.819,1.281,0.775,1.006,1.009,0.704,0.487,1.119,1.314,0.953,1.104,0.592,0.66,0.91,1.335,0.978,0.951,1.632,0.747,0.764,0.747,0.799,1.249,0.482,1.135,1.387,0.913,0.398,1.097,0.976,1.07,1.607,1.161,0.536,0.692,0.824,0.968,1.568,1.257,1.271,0.834,0.587,1.166,1.642,0.748,0.918,0.935,1.018,1.202,0.935,0.828,1.615,1.558 +NM_030979,1.6,0.825,2.129,0.532,2.463,1.084,0.434,1.459,2.824,1.306,0.416,0.873,1.604,0.954,1.097,1.065,2.443,0.858,0.752,1.024,0.362,1.829,1.555,1.704,0.37,0.714,1.55,2.045,0.244,0.905,2.2,1.033,2.704,1.038,2.808,0.38,0.529,2.22,1.499,1.343,1.621,1.046,0.434,0.481,1.74,0.843,1.168,1.195,1.354,1.319,1.087,0.437,0.466,2.113 +NM_030980,0.911,0.932,1.017,0.788,0.752,1.035,0.677,0.518,1.04,1.17,1.007,0.767,0.754,0.672,0.749,0.864,0.968,0.825,1.048,0.664,0.904,0.988,1.169,1.123,0.847,0.949,1.311,0.749,0.716,1.242,0.865,1.496,1.843,1.098,0.482,1.094,0.967,1.057,1.621,1.401,0.963,1.027,0.874,1.867,1.015,0.93,1.037,0.752,0.917,0.968,0.947,0.881,0.833,1.46 +NM_030981,1.296,0.878,1.042,1.014,0.942,1.22,0.696,0.967,0.958,0.915,1.114,0.942,0.992,0.817,0.856,1.586,1.017,1.052,1.406,0.893,0.994,1.035,0.893,1.135,0.902,1.459,1.092,0.991,0.635,1.023,1.032,1.027,1.499,1.251,1.091,0.963,1.048,1.086,1.632,0.86,0.901,0.974,0.774,0.937,1.004,0.812,0.913,1.408,0.787,1.214,1.036,0.744,0.942,0.853 +NM_030983,1.075,0.966,1.203,0.792,1.041,0.96,0.686,1.0,0.942,0.978,0.852,1.074,0.964,0.682,1.063,1.073,1.159,0.807,1.019,1.018,1.026,1.137,0.944,1.127,0.961,0.813,1.3,1.008,0.571,0.981,1.063,1.108,1.291,1.029,0.832,0.772,0.863,1.214,1.329,1.008,1.135,0.895,1.018,1.167,1.065,0.784,0.997,0.979,0.955,0.886,1.089,0.964,0.789,1.051 +NM_030984,0.842,1.054,0.884,1.015,0.714,0.968,1.027,0.945,0.864,0.861,0.975,0.787,0.761,0.806,0.862,0.992,0.847,0.838,0.957,0.924,0.777,0.679,1.367,0.79,0.942,0.94,0.93,0.79,0.994,1.434,0.804,1.347,0.951,1.35,0.732,1.236,0.991,0.774,1.371,1.469,0.922,1.213,1.178,1.698,0.784,1.036,0.984,0.75,0.959,0.788,1.041,1.445,1.006,0.99 +NM_031157,0.862,1.157,0.898,0.775,0.874,0.922,0.898,0.912,0.934,1.001,1.008,0.918,0.816,0.85,0.924,1.114,0.911,0.829,0.929,1.066,0.921,0.859,1.261,0.978,0.858,0.941,0.984,1.054,0.899,1.074,0.92,1.21,1.148,1.128,0.858,1.068,1.119,0.881,0.984,1.146,0.985,1.145,1.086,1.092,0.902,1.088,0.837,0.863,1.082,0.931,1.036,0.934,0.964,0.961 +NM_031203,0.773,0.752,1.283,0.715,0.77,0.82,0.616,0.213,1.158,1.054,0.903,0.611,0.403,0.579,0.885,1.485,0.919,0.914,1.41,0.848,0.518,0.578,1.543,0.857,0.595,0.909,1.46,0.782,0.299,0.995,0.943,1.043,1.618,1.253,0.0925,1.122,1.054,0.682,1.636,1.061,0.967,0.979,0.549,1.469,1.214,0.844,0.882,0.642,1.318,1.151,1.349,0.9,1.121,1.653 +NM_031205,0.808,1.086,1.054,1.15,1.078,1.064,1.03,1.077,1.003,0.957,0.935,0.952,1.064,1.114,1.074,1.204,0.967,0.859,0.94,1.107,1.035,1.015,1.027,0.967,1.001,1.038,1.087,0.933,1.004,0.968,1.094,1.061,1.135,1.038,1.116,0.975,1.019,1.147,0.906,0.951,0.946,1.039,1.3,1.006,1.131,0.997,0.994,0.956,1.126,1.003,1.256,0.901,0.837,1.037 +NM_031206,0.947,1.107,1.109,0.653,0.903,0.775,0.586,0.557,1.008,1.205,0.671,0.983,0.832,0.581,0.852,1.131,0.911,0.909,1.172,0.944,0.664,0.921,1.368,1.237,0.816,0.947,1.338,0.842,0.795,0.833,0.94,1.312,1.712,1.042,0.357,1.342,0.951,0.783,1.254,0.856,1.014,1.299,1.077,1.902,1.132,0.762,0.949,0.887,0.904,1.003,0.95,1.533,1.181,1.476 +NM_031207,0.499,1.142,0.998,0.938,0.737,1.409,0.856,0.516,0.833,0.662,1.279,0.666,0.939,0.682,1.146,1.889,0.6,0.8,0.969,1.111,0.669,1.005,1.301,0.762,1.064,0.806,0.801,0.912,0.811,1.465,0.855,4.843,2.701,2.841,0.387,1.259,1.271,0.787,1.086,0.897,1.036,1.618,0.88,1.829,0.698,1.27,0.946,0.601,0.995,0.652,1.088,0.92,0.628,1.525 +NM_031209,0.969,1.126,0.946,1.045,0.975,1.011,0.814,0.911,1.052,0.972,0.93,0.928,0.942,0.925,1.056,1.512,1.087,0.965,1.033,0.912,0.879,0.995,1.452,1.064,0.934,0.994,1.138,0.922,0.618,1.024,0.948,1.195,0.933,1.017,0.679,1.975,0.963,0.961,1.206,2.862,1.086,1.092,0.9,0.966,0.986,1.014,0.974,0.884,0.994,0.927,0.948,1.096,1.056,1.125 +NM_031210,0.555,0.973,0.99,0.61,0.772,1.144,0.575,0.688,1.309,0.969,1.293,1.008,0.585,0.608,0.945,2.236,0.766,1.011,1.574,0.839,0.611,0.834,1.197,1.262,0.518,0.706,1.393,0.888,0.4,1.261,0.896,0.847,2.238,1.501,0.0501,1.268,1.377,0.996,1.263,0.667,1.18,1.004,0.653,1.33,0.953,1.006,1.15,0.632,1.283,0.65,1.152,0.784,1.004,2.024 +NM_031211,1.131,1.03,1.039,1.108,0.891,1.078,0.844,0.899,1.079,1.076,1.088,0.971,0.953,1.03,1.126,0.967,1.019,0.747,1.104,1.01,0.903,0.946,0.997,0.932,0.927,0.826,1.021,0.967,0.823,1.048,1.037,1.196,1.085,1.098,0.999,1.076,0.951,0.891,1.012,1.165,1.163,0.922,0.983,1.065,1.1,1.063,1.119,0.835,0.852,0.843,0.954,0.992,1.127,1.599 +NM_031212,0.72,1.015,2.069,0.697,0.896,1.117,0.777,0.554,1.258,1.261,0.826,1.148,0.78,0.844,1.005,0.988,1.801,0.758,1.219,0.871,0.567,0.939,1.005,1.379,0.531,0.765,2.537,0.912,0.378,1.061,0.994,1.598,1.312,1.187,0.203,0.957,0.935,0.824,1.074,0.54,1.409,1.013,0.78,1.105,1.103,0.868,0.957,0.74,0.911,1.072,0.942,0.908,1.609,1.966 +NM_031213,1.136,1.021,0.943,1.054,0.962,0.991,0.98,1.131,1.037,0.916,1.024,0.971,1.203,0.883,0.827,1.132,1.067,1.001,0.972,0.92,0.793,1.111,0.953,0.907,0.97,1.026,0.9,0.961,0.799,0.981,0.841,1.134,0.928,1.128,0.866,0.93,1.135,1.243,1.357,1.025,0.9,0.924,0.842,0.901,1.033,0.857,0.92,1.129,0.926,1.142,0.902,0.977,0.71,0.825 +NM_031214,0.926,1.095,1.071,1.045,0.874,1.15,0.761,0.836,1.127,0.96,1.119,0.906,0.929,0.908,1.116,1.215,0.911,1.147,1.007,1.026,0.894,0.915,1.053,0.927,1.067,0.887,1.031,0.821,1.039,1.161,1.172,1.083,1.052,0.968,0.869,0.846,1.143,1.024,0.978,1.153,1.219,1.138,0.968,0.877,0.991,0.902,0.954,0.939,0.965,0.915,1.054,1.073,0.945,1.172 +NM_031216,0.908,1.329,0.964,0.845,0.835,1.033,0.742,0.649,1.297,1.167,1.122,0.891,0.844,0.999,0.958,1.601,0.775,0.776,1.121,0.901,0.867,0.677,1.308,1.252,0.792,0.917,1.096,0.919,0.491,1.176,1.154,1.075,1.346,1.192,0.475,1.989,0.876,0.74,1.242,0.851,1.022,1.195,0.968,1.516,1.097,1.009,0.806,0.707,1.009,0.741,1.055,0.809,1.001,1.286 +NM_031217,0.965,0.918,1.031,1.002,1.01,1.061,0.819,1.004,0.984,1.028,0.952,0.92,0.846,0.83,0.778,1.18,1.009,1.096,0.909,0.96,0.911,1.002,1.319,1.121,0.837,0.945,1.58,0.936,0.579,0.942,0.888,0.905,1.591,0.905,0.898,1.458,1.145,0.992,1.509,1.08,0.914,0.832,0.766,1.069,0.992,0.884,0.99,0.995,1.203,0.847,1.073,1.114,0.956,1.692 +NM_031219,0.602,1.084,0.965,1.093,0.736,1.718,1.146,0.464,0.547,0.609,1.209,0.632,0.521,0.554,1.375,1.736,0.742,1.22,0.773,1.726,0.446,0.505,1.497,0.839,0.794,0.643,0.678,0.578,0.748,1.579,0.679,1.052,1.009,1.539,0.722,0.82,1.387,0.583,1.865,1.042,0.745,1.367,1.118,1.425,0.673,1.225,0.818,0.719,1.357,0.628,1.372,0.775,0.659,1.3 +NM_031220,1.039,1.019,0.949,0.85,0.998,0.972,1.022,1.043,1.105,0.91,0.999,1.091,0.996,1.215,1.018,0.965,1.059,1.053,1.108,1.028,0.866,0.918,0.981,0.932,0.998,0.951,1.016,1.026,1.01,1.128,0.976,1.008,1.234,0.987,0.9,0.839,1.065,0.949,0.988,0.877,1.108,0.953,1.66,1.095,1.005,1.117,1.036,0.97,1.165,0.908,0.961,1.194,0.944,0.942 +NM_031226,1.004,1.0,0.947,0.849,0.897,0.905,0.967,1.007,1.111,0.911,0.941,1.082,0.954,1.195,0.934,1.065,1.04,1.036,0.981,0.985,1.03,0.998,1.142,0.938,1.002,1.094,1.126,1.007,0.711,1.014,1.073,0.809,0.983,0.961,0.985,1.063,0.991,0.948,1.071,1.08,1.105,0.969,0.762,0.916,0.957,0.953,1.05,1.075,0.901,1.023,0.94,0.94,0.946,0.888 +NM_031227,0.704,0.725,1.184,0.703,0.815,1.132,0.686,0.912,1.114,0.899,0.682,0.79,0.695,0.548,1.075,1.298,1.03,0.785,1.144,0.996,0.635,0.946,1.287,1.071,0.581,0.902,1.27,0.832,0.467,1.079,1.168,1.365,2.213,1.471,0.472,1.288,0.809,0.825,1.186,1.223,0.92,1.095,0.647,1.509,0.957,0.784,0.858,0.809,0.966,0.785,0.884,0.861,1.113,2.075 +NM_031231,1.045,1.128,0.925,0.953,1.031,0.904,1.399,0.936,0.901,0.751,0.865,1.002,1.014,1.022,0.92,0.913,0.973,1.102,0.891,1.119,1.047,1.012,0.873,0.977,0.92,1.011,1.095,1.033,1.215,1.072,1.021,1.038,1.039,1.049,0.943,1.115,0.993,0.979,0.912,0.895,1.127,0.898,0.867,0.86,0.901,1.073,1.072,0.894,1.047,0.999,0.99,0.839,1.094,0.909 +NM_031232,0.813,1.268,0.873,0.938,0.925,1.338,0.872,0.604,0.784,0.859,1.377,0.833,0.819,0.693,0.874,1.58,0.722,0.943,0.876,1.039,0.594,0.682,1.432,0.738,1.258,0.884,0.887,0.907,0.682,2.072,0.879,1.956,1.096,1.928,0.654,0.947,1.128,0.773,1.197,0.852,0.83,1.494,0.824,1.205,0.939,1.083,0.912,0.87,1.232,0.784,0.924,0.792,0.671,2.433 +NM_031244,0.984,0.925,1.145,0.839,0.963,1.141,1.004,0.835,1.044,0.865,0.882,0.97,0.938,0.881,1.13,0.975,1.057,0.983,0.904,1.205,0.958,1.113,1.149,1.063,0.894,0.987,1.119,0.932,0.819,1.117,0.987,1.153,1.268,1.079,0.81,0.92,1.224,0.84,1.107,1.011,0.806,1.063,1.067,0.796,0.86,1.241,1.081,0.831,0.931,0.811,0.914,1.115,0.835,1.226 +NM_031246,1.004,0.875,0.908,0.862,1.062,1.054,1.164,1.194,0.929,0.952,0.994,1.055,0.973,0.999,1.121,1.089,1.041,0.985,1.074,0.941,0.905,0.911,0.903,0.957,1.039,0.947,1.153,0.961,1.378,0.946,0.982,1.069,0.823,0.892,0.907,1.03,1.077,0.926,1.006,0.989,0.989,1.04,1.133,1.058,0.998,0.956,1.114,1.131,1.035,1.002,1.127,0.92,0.997,0.943 +NM_031263,0.669,0.846,1.581,0.648,0.881,1.788,0.831,0.822,1.235,0.813,0.9,0.919,0.768,0.727,1.225,2.316,1.002,0.932,0.674,1.006,0.523,1.376,1.117,1.563,0.66,0.629,1.385,0.902,0.671,1.394,1.257,1.413,2.429,1.263,0.535,0.479,1.304,1.569,1.513,0.846,0.893,1.282,0.678,0.617,1.215,1.198,1.001,0.731,1.528,0.999,1.372,0.798,0.528,1.46 +NM_031266,0.718,0.864,0.937,0.924,0.761,1.229,0.673,0.414,1.221,1.338,1.204,0.681,0.58,0.614,0.948,1.683,0.981,0.851,0.918,1.021,0.765,0.552,1.694,1.172,0.695,0.782,1.183,0.813,0.336,1.159,0.883,1.127,3.064,1.209,0.29,0.76,1.089,0.672,1.409,0.657,1.164,1.128,1.175,0.913,1.145,1.287,1.03,0.511,1.116,0.849,1.312,0.842,1.156,2.125 +NM_031267,0.812,0.89,1.306,0.735,1.156,0.99,0.914,0.526,1.292,1.105,0.852,0.871,0.68,0.777,0.954,1.0,0.841,0.912,1.074,0.902,0.874,0.93,1.133,1.022,0.692,0.807,1.264,1.071,0.662,1.055,1.0,1.376,1.163,1.025,0.636,0.928,0.878,0.886,1.113,0.937,1.308,1.0,0.618,1.316,1.171,1.039,1.207,0.903,0.991,1.092,1.001,0.91,0.777,1.263 +NM_031271,1.047,0.993,1.003,1.08,1.022,1.025,0.954,0.903,1.009,1.038,0.994,1.09,1.011,1.269,1.23,1.048,0.995,0.977,1.039,1.135,0.921,0.952,0.992,0.978,1.049,0.976,1.032,0.952,1.474,1.018,0.973,1.085,0.91,1.076,0.964,1.039,0.979,0.929,1.12,0.998,0.988,0.899,0.953,1.244,1.056,0.929,1.098,1.146,0.969,1.113,0.995,1.082,1.0,1.004 +NM_031272,1.133,1.021,1.304,0.972,0.859,1.016,0.829,0.834,1.042,0.993,0.924,1.088,0.981,0.872,1.038,0.98,1.127,0.888,0.856,0.972,0.977,0.917,1.031,1.021,1.021,0.898,0.846,0.956,1.118,0.91,1.107,0.95,1.003,0.933,1.113,0.97,1.133,1.036,1.043,1.004,0.935,0.899,1.091,1.0,0.903,0.984,0.885,1.0,1.046,1.013,0.935,0.986,1.02,0.941 +NM_031273,0.923,1.038,0.935,0.79,0.977,0.996,0.933,0.887,0.927,1.039,0.944,1.128,0.984,1.04,0.934,1.014,0.991,1.043,1.001,0.904,0.968,0.934,1.014,0.963,0.936,1.179,1.164,0.972,1.141,1.076,1.156,1.156,0.972,0.899,0.943,1.001,0.937,0.946,1.044,1.16,1.059,1.201,1.019,0.947,1.047,0.863,0.99,0.877,1.039,1.056,1.195,0.931,0.884,0.82 +NM_031274,1.123,0.892,0.951,0.934,0.937,1.08,1.156,0.909,1.201,1.071,0.91,1.098,1.038,1.022,1.04,1.328,0.98,1.245,0.923,1.041,0.921,0.99,1.032,0.932,1.006,1.129,1.057,1.0,1.163,0.911,1.085,1.11,0.969,1.081,1.176,0.748,0.996,1.339,0.949,0.924,1.087,0.974,1.017,0.845,1.266,0.97,1.154,0.924,1.024,1.128,0.889,1.049,1.072,1.268 +NM_031276,0.92,1.077,0.874,1.165,0.777,3.844,1.068,0.88,0.905,0.867,2.73,0.933,0.811,0.807,1.08,1.623,0.899,1.142,0.925,2.386,0.914,1.032,1.127,0.902,0.868,0.941,0.863,0.979,0.802,1.975,0.942,0.906,1.053,1.975,0.941,1.031,1.681,0.862,1.736,0.982,0.962,1.991,0.947,0.936,0.877,2.021,1.004,0.996,0.957,0.893,2.632,1.037,0.712,1.059 +NM_031277,1.065,1.126,1.065,1.036,0.848,1.033,0.947,0.926,0.959,0.951,1.0,0.944,0.936,1.225,0.925,1.162,0.859,1.077,0.979,0.966,1.109,1.089,0.974,0.964,0.99,1.063,1.091,1.078,0.97,1.091,0.958,0.997,1.015,0.912,1.108,1.001,0.851,1.022,1.049,1.155,0.944,0.926,0.941,0.959,1.052,1.024,0.995,0.954,0.908,0.919,1.011,0.978,1.009,0.999 +NM_031279,1.024,1.486,0.902,0.998,1.138,0.935,1.054,0.923,1.136,0.867,0.972,1.073,1.155,1.039,0.954,0.885,0.967,1.262,1.084,0.947,1.042,1.0,0.918,0.986,2.066,0.91,0.978,1.079,0.925,0.962,0.985,0.955,0.988,1.332,1.039,1.008,1.205,0.989,0.786,0.928,1.192,1.004,0.934,0.894,1.058,0.86,1.071,1.072,0.982,0.97,0.91,1.01,1.11,0.946 +NM_031280,0.511,1.011,1.165,0.527,1.131,1.03,0.533,0.729,1.242,1.239,0.761,1.601,0.686,0.419,0.759,1.401,0.927,0.957,1.477,1.004,0.414,0.807,1.315,1.502,0.451,0.725,1.355,1.181,0.283,1.015,0.88,1.451,1.946,1.005,0.116,1.277,0.892,1.06,1.14,0.575,1.444,0.853,0.492,1.655,1.178,1.035,1.41,0.697,1.118,0.841,0.904,0.949,1.131,2.06 +NM_031281,0.987,1.081,1.013,0.925,0.97,1.025,1.049,0.974,0.972,0.967,0.965,1.129,1.014,1.123,0.856,0.978,1.026,1.242,1.034,1.052,0.942,0.98,0.995,0.937,1.096,0.901,1.073,1.048,0.952,1.08,1.058,0.957,0.962,1.014,1.049,0.952,1.025,0.912,1.1,1.04,0.943,0.952,0.843,1.0,0.966,1.072,0.958,1.091,0.906,1.012,1.065,1.011,0.94,0.964 +NM_031283,0.909,0.939,1.063,0.705,0.903,0.818,1.052,0.687,1.086,0.973,0.997,0.802,0.757,1.023,1.193,1.067,0.959,0.82,1.031,1.031,0.946,1.061,1.028,0.91,0.928,1.025,1.417,1.059,0.791,1.276,0.962,1.964,1.168,1.377,0.727,0.848,0.773,1.066,1.003,1.359,1.236,1.602,0.743,0.774,1.003,0.951,0.943,0.936,0.821,1.108,1.044,1.1,1.197,1.016 +NM_031284,0.857,1.083,0.929,0.868,0.743,1.015,0.871,0.647,0.847,0.779,0.99,0.824,0.683,0.717,0.887,1.173,0.756,0.867,0.837,1.186,0.82,0.66,1.539,0.87,0.757,0.742,1.029,0.812,0.463,1.304,0.734,1.738,1.263,1.451,0.632,1.144,1.077,0.736,1.476,1.292,0.985,1.12,0.88,1.044,0.834,1.01,1.022,0.728,0.98,0.744,1.149,0.98,0.847,2.463 +NM_031285,0.733,1.095,1.564,0.655,1.069,0.781,0.6,0.671,1.305,1.462,0.675,0.756,0.568,0.972,1.022,0.879,1.136,0.772,1.166,0.786,0.646,0.995,1.054,0.909,0.592,0.84,1.538,0.889,0.427,1.468,0.9,5.594,1.188,1.362,0.389,0.876,0.928,0.988,0.977,1.691,1.112,1.292,0.651,0.873,1.121,0.919,1.29,0.843,0.642,1.014,0.855,1.64,1.316,1.114 +NM_031286,0.697,0.827,1.01,0.621,1.075,1.326,0.709,0.677,1.014,1.367,1.021,1.128,0.542,0.446,0.769,1.945,0.878,1.001,1.263,1.178,0.601,0.754,1.38,0.856,0.417,0.886,0.796,1.038,0.397,1.047,0.779,0.719,0.793,1.346,0.395,1.025,1.011,1.047,1.336,0.708,1.19,1.027,1.109,0.999,1.108,1.388,1.351,0.796,1.355,0.961,1.436,0.846,1.253,0.912 +NM_031287,0.82,0.996,1.003,1.024,0.808,1.048,0.519,0.553,0.964,1.006,1.136,1.167,1.013,0.484,0.819,1.503,0.852,1.119,1.289,0.794,0.587,0.982,1.047,1.195,0.719,1.158,0.941,0.844,0.498,0.945,0.712,0.811,1.287,1.376,0.111,0.575,1.165,1.017,1.459,0.711,1.073,0.958,0.716,1.409,1.15,0.915,1.053,1.112,0.997,0.849,0.995,0.834,0.909,1.112 +NM_031288,0.857,0.894,1.069,0.772,0.843,1.067,0.765,0.897,0.99,1.121,0.952,0.875,0.884,0.743,0.924,1.155,0.82,0.975,1.2,1.003,1.045,0.931,1.031,1.129,0.896,0.976,0.997,0.725,1.077,1.096,1.05,1.506,1.781,1.328,0.738,1.125,0.848,0.862,1.238,1.292,0.944,1.144,0.801,1.335,0.944,0.74,0.882,1.075,0.833,0.903,0.857,0.777,1.338,1.159 +NM_031289,2.069,2.043,1.8820000000000001,2.224,1.935,2.26,1.8519999999999999,2.189,1.93,2.143,2.0389999999999997,1.983,2.0679999999999996,1.994,1.9859999999999998,1.926,1.95,1.95,2.01,2.268,2.019,2.175,2.01,2.036,2.032,1.782,1.995,2.0460000000000003,2.2859999999999996,2.051,2.089,1.863,2.141,1.9809999999999999,2.136,2.182,2.03,1.8599999999999999,2.025,2.074,2.041,2.042,1.929,1.9649999999999999,1.8370000000000002,2.1350000000000002,2.03,2.028,2.071,2.108,2.089,1.741,2.363,1.926 +NM_031290,1.031,1.013,1.162,0.851,0.919,0.846,1.047,1.02,0.935,0.931,0.999,0.901,0.918,1.016,0.96,0.876,1.08,1.024,1.078,0.857,0.944,0.963,0.761,0.991,0.892,1.043,0.912,0.886,0.961,1.008,1.192,1.273,1.02,0.938,0.885,0.973,0.994,1.001,1.107,1.055,1.017,0.889,0.976,0.984,0.937,0.979,0.974,1.041,0.943,0.998,0.949,1.009,1.003,1.109 +NM_031291,0.985,1.026,0.94,0.995,0.964,1.167,0.82,0.816,1.106,0.914,1.142,1.079,0.96,0.917,1.041,0.904,0.953,0.955,0.988,0.94,0.979,0.974,0.962,0.968,1.02,0.973,0.851,1.041,0.88,0.976,0.892,1.008,0.934,1.037,1.097,0.862,1.071,1.099,1.034,0.963,1.038,1.052,1.381,0.94,1.072,0.921,0.968,1.117,0.963,1.071,1.112,1.044,0.944,1.033 +NM_031293,0.974,0.956,1.013,0.935,1.023,1.106,0.76,0.905,1.02,0.997,0.998,0.958,1.126,1.008,1.17,1.012,1.001,1.051,0.912,0.857,1.03,0.899,0.904,0.969,1.177,0.935,0.946,1.032,0.882,1.092,1.011,1.008,1.119,0.944,0.901,1.168,1.009,1.008,0.977,0.94,0.98,0.983,0.986,0.911,0.999,1.076,1.156,0.882,0.997,0.956,1.074,0.89,1.037,0.926 +NM_031294,1.07,1.012,1.023,0.943,1.186,0.952,1.04,1.041,0.911,0.939,0.899,1.074,1.072,1.201,1.089,1.056,0.967,0.919,1.083,1.025,1.093,0.998,1.0,1.101,0.95,1.072,1.027,1.041,1.061,1.062,0.912,0.934,0.974,1.061,0.955,0.882,0.832,1.032,1.056,1.054,1.025,0.934,0.881,0.8,1.069,0.919,1.107,0.886,0.983,1.079,1.164,0.875,0.808,1.17 +NM_031295,1.003,0.967,0.855,1.086,1.048,0.99,0.947,1.254,1.035,0.943,0.921,1.059,1.12,0.957,0.844,1.016,0.974,0.995,0.826,0.822,0.941,0.914,1.018,0.974,0.971,1.088,1.078,0.94,1.151,0.999,1.114,1.011,1.006,0.917,1.085,0.946,1.101,0.922,0.961,0.99,0.922,1.006,1.089,1.144,0.88,1.054,1.044,0.962,1.042,0.951,0.869,1.069,1.249,0.947 +NM_031296,0.885,0.869,1.007,0.962,0.892,0.968,0.812,0.885,1.067,0.952,0.94,1.142,1.023,0.896,1.056,1.289,1.077,1.139,1.008,1.043,1.116,0.989,0.991,1.056,0.908,0.948,1.03,0.997,1.446,0.885,0.836,1.099,0.854,0.918,0.966,1.001,1.071,1.153,0.994,1.123,1.011,1.012,0.982,0.824,1.138,0.941,1.037,1.0,1.097,1.058,1.057,0.928,1.052,0.958 +NM_031297,1.551,0.934,1.063,0.705,1.204,0.821,0.741,1.496,1.01,1.118,0.754,1.208,1.142,1.184,1.005,1.043,1.141,0.872,1.503,0.862,1.379,1.422,0.774,1.303,0.975,1.755,1.146,1.214,0.541,0.946,1.34,0.873,1.262,1.037,1.526,1.022,0.866,1.362,1.104,0.946,1.116,0.783,0.645,1.01,1.221,0.774,0.943,1.781,0.721,1.37,0.871,0.783,1.305,1.001 +NM_031298,0.761,0.893,0.99,0.906,1.012,0.977,0.751,0.631,1.068,1.152,0.966,0.933,0.84,0.701,0.807,1.213,0.892,0.936,1.055,0.959,0.727,0.724,1.282,1.081,0.86,0.958,0.941,0.95,0.519,1.003,0.859,1.088,1.41,1.1,0.521,1.119,1.095,0.931,1.14,0.872,1.097,0.938,0.769,1.379,1.205,0.879,0.971,0.97,1.176,0.808,0.917,0.772,1.058,1.73 +NM_031299,0.785,0.766,0.986,0.964,0.948,1.148,1.003,0.785,1.046,0.985,0.645,1.022,0.931,0.669,0.935,1.927,0.773,1.023,1.414,0.809,0.899,1.054,1.521,1.101,0.703,0.807,1.661,0.713,0.652,0.984,0.965,0.864,6.483,0.953,0.557,1.426,1.128,0.866,2.1,1.309,1.001,0.732,0.745,1.732,1.128,0.958,1.473,0.826,1.641,0.932,0.885,1.184,0.931,1.747 +NM_031300,0.984,0.905,1.15,1.047,0.851,0.971,0.737,0.991,0.921,0.894,0.889,0.821,1.22,0.868,0.929,1.039,0.905,0.88,1.046,0.98,0.883,1.025,1.153,1.056,0.941,1.014,1.244,0.9,0.892,1.018,0.935,1.315,1.844,1.095,0.651,1.06,0.867,1.052,1.381,0.989,0.971,0.836,0.83,1.258,1.033,0.811,1.031,1.029,1.017,0.949,0.936,0.823,0.916,1.28 +NM_031301,0.544,1.547,0.899,0.832,0.662,0.974,0.875,0.591,0.656,0.723,0.92,0.811,0.599,0.551,0.714,1.012,0.654,0.825,0.737,1.128,0.63,0.615,1.801,0.77,0.841,0.566,0.833,0.657,0.429,1.391,0.611,2.933,1.309,1.588,0.504,1.245,0.988,0.696,1.376,3.676,0.657,1.358,1.012,1.475,0.67,1.233,1.521,0.576,0.741,0.616,1.066,1.699,0.925,1.617 +NM_031302,0.973,1.013,0.944,0.873,0.957,0.968,0.953,0.972,0.903,1.041,0.899,0.966,0.911,1.085,0.894,1.033,1.113,0.907,1.043,0.82,0.916,1.097,1.119,0.953,1.028,0.938,0.942,1.084,0.953,1.216,0.949,2.489,0.836,1.052,0.891,1.041,1.102,1.059,1.088,0.988,0.937,1.093,1.265,1.105,0.998,0.883,0.98,0.93,1.085,0.863,0.936,0.983,0.963,1.07 +NM_031304,0.62,1.155,1.101,0.535,0.965,0.672,0.693,0.507,1.146,1.8,0.712,0.761,0.484,0.574,0.612,0.984,1.097,0.882,1.288,0.843,0.593,0.761,1.989,1.319,0.583,0.842,1.515,1.063,0.474,1.065,0.917,0.971,0.885,1.025,0.254,2.055,0.836,1.085,1.156,1.075,1.565,1.026,0.697,1.269,1.334,1.084,1.311,0.681,1.454,0.727,1.071,0.833,1.018,1.587 +NM_031305,0.979,1.358,0.9,0.874,0.911,1.108,0.875,1.159,0.884,0.886,1.03,1.019,1.128,0.956,0.897,1.007,0.938,1.025,0.924,0.988,0.979,0.966,0.973,1.158,1.201,1.001,0.948,0.982,0.988,1.134,1.027,1.009,1.033,1.305,0.974,0.904,0.961,1.009,1.052,1.002,0.911,1.208,1.004,0.984,1.026,0.917,0.928,0.906,0.912,0.846,1.112,0.947,0.942,1.079 +NM_031307,0.732,1.145,1.075,0.791,0.8,1.133,0.694,0.599,0.889,0.938,1.128,0.744,0.814,0.625,1.049,1.714,0.906,0.933,1.108,1.068,0.709,0.722,1.196,0.95,0.777,0.763,0.964,0.827,0.617,1.267,0.858,1.488,1.264,1.418,0.401,1.442,1.23,0.917,1.416,0.969,0.922,1.284,1.003,1.068,0.944,1.042,0.872,0.628,1.073,0.783,1.032,0.916,1.13,1.344 +NM_031309,0.988,1.062,1.049,1.072,1.151,1.046,0.811,0.991,1.239,1.027,0.914,1.072,0.864,0.979,1.379,0.907,1.068,0.964,0.933,1.083,1.036,0.97,0.947,1.039,0.987,0.997,1.073,1.035,0.792,1.097,1.05,1.041,0.852,1.077,0.963,1.027,0.963,1.002,1.019,0.899,0.981,0.979,1.124,0.9,1.0,0.909,1.073,0.977,0.958,0.926,1.084,0.925,0.955,0.965 +NM_031310,0.266,1.73,0.309,0.262,0.381,0.797,1.357,0.326,0.247,0.697,0.957,0.239,0.257,0.207,0.433,0.869,0.199,0.934,0.463,0.526,0.276,0.295,2.018,0.535,1.442,0.291,0.539,0.338,0.352,3.641,0.181,3.93,1.351,2.527,0.119,2.232,1.342,0.885,4.197,4.449,0.588,2.558,0.525,0.819,0.656,1.396,1.432,0.247,1.33,0.417,2.481,4.032,0.492,1.427 +NM_031311,0.973,0.927,1.106,0.696,1.072,0.791,0.737,0.57,1.051,1.178,0.909,0.583,0.869,1.054,0.903,1.35,0.89,0.846,0.939,0.811,0.64,1.222,2.481,0.965,0.679,0.835,1.328,1.032,0.404,1.55,1.15,1.476,1.52,1.14,0.435,0.588,0.878,0.925,1.532,1.517,1.346,1.639,0.616,2.099,0.962,1.847,1.377,0.984,0.943,0.56,1.744,1.325,1.079,2.041 +NM_031313,1.01,1.057,1.017,1.011,1.05,0.94,0.958,1.043,0.998,0.767,1.128,0.877,0.967,0.851,0.927,1.579,0.927,0.973,0.999,0.902,0.991,0.914,1.165,0.943,0.938,1.031,0.987,0.962,0.781,0.805,0.879,3.386,14.1,0.982,0.917,9.431,0.94,1.018,1.029,1.223,0.871,0.962,0.897,1.466,0.915,1.087,1.038,1.037,1.546,1.053,0.999,0.999,1.087,3.167 +NM_031361,0.955,0.775,1.201,0.619,1.185,1.202,0.81,0.756,1.389,0.839,0.976,1.051,0.786,0.668,0.816,1.023,0.885,1.114,0.892,1.211,0.573,1.284,1.184,1.327,0.621,0.776,1.425,1.236,0.913,1.333,1.147,0.893,0.911,0.956,1.506,0.92,1.006,1.192,1.383,0.621,1.196,1.191,0.666,0.842,0.777,1.23,1.101,0.678,1.048,0.816,1.172,0.83,0.715,1.047 +NM_031366,0.871,0.885,1.062,1.059,0.909,1.118,0.893,0.933,0.974,0.941,0.918,0.938,0.962,1.096,1.017,1.088,0.927,0.956,1.091,0.967,1.135,0.998,0.859,0.923,1.034,0.959,1.085,0.938,1.015,1.057,0.977,1.022,0.974,0.906,1.112,1.116,1.058,0.933,0.989,1.108,0.993,1.049,1.188,0.891,1.146,0.907,1.009,0.998,0.823,1.019,1.025,0.933,1.139,0.908 +NM_031371,0.774,1.084,1.076,0.907,0.814,1.171,0.83,0.578,1.121,0.779,1.017,0.629,0.641,0.863,0.984,1.15,0.68,0.96,0.86,1.01,0.664,0.843,0.916,0.76,0.9,0.824,1.285,0.742,0.489,1.39,1.074,1.652,1.719,1.299,0.441,1.088,1.026,0.733,1.22,1.482,1.014,1.094,0.576,1.287,0.8,0.939,0.713,0.767,0.789,0.726,0.928,0.82,0.831,1.704 +NM_031372,0.795,1.52,0.998,0.877,0.808,1.134,0.578,0.56,1.355,0.661,1.002,0.79,0.715,0.684,1.107,1.695,0.733,0.827,0.907,1.18,0.59,0.638,1.495,0.992,0.848,0.879,1.43,0.802,0.435,1.318,1.073,1.833,1.4,1.787,0.441,0.674,1.087,0.824,1.074,0.83,1.008,1.335,0.687,1.214,0.889,0.925,0.848,0.718,1.15,0.785,1.103,0.744,0.918,1.024 +NM_031407,1.27,1.071,1.224,1.034,1.107,0.915,0.79,0.871,1.212,1.037,1.006,0.765,0.76,0.944,0.852,1.044,0.952,0.826,0.981,0.72,0.826,0.999,0.986,0.871,1.172,0.845,1.11,0.703,0.828,1.058,0.902,1.496,1.449,0.974,0.707,0.794,1.041,1.013,1.615,0.99,1.147,1.134,0.948,1.066,1.003,1.015,0.882,0.915,1.031,1.099,0.988,1.096,0.855,1.092 +NM_031409,1.081,0.948,1.049,0.851,0.974,0.995,0.917,1.06,0.969,1.019,0.983,0.964,1.073,0.961,0.943,1.257,0.941,1.023,0.835,0.891,1.119,1.013,0.966,0.902,0.936,1.0,1.126,1.001,0.974,1.098,1.065,0.868,0.876,0.926,1.054,0.955,1.101,0.963,0.94,0.993,0.89,1.043,1.073,1.081,0.909,0.892,0.876,1.039,0.958,0.954,0.96,1.0,1.109,1.008 +NM_031410,2.169,2.123,1.8769999999999998,1.984,2.2199999999999998,1.851,2.005,2.141,1.659,1.862,2.276,2.008,2.053,2.027,2.356,2.258,1.875,1.9689999999999999,2.015,1.6560000000000001,2.085,1.8119999999999998,2.419,1.9209999999999998,2.0869999999999997,2.051,2.0780000000000003,2.045,2.2409999999999997,2.1100000000000003,2.287,2.1260000000000003,2.168,1.968,1.9569999999999999,1.705,1.879,1.929,2.133,2.043,1.909,2.117,2.495,2.043,2.004,2.036,1.811,2.215,2.205,1.825,1.8519999999999999,2.0020000000000002,1.959,1.8900000000000001 +NM_031412,0.726,1.88,1.168,0.837,0.784,1.432,1.049,0.86,0.98,0.762,0.897,0.665,0.786,1.021,1.071,0.712,0.916,0.987,0.783,1.376,0.755,0.783,0.914,0.854,2.183,0.881,0.974,0.765,0.727,1.527,1.452,3.362,1.21,2.305,1.359,1.223,1.118,0.814,1.291,1.338,1.007,1.742,0.846,0.877,0.702,0.818,0.858,1.011,0.644,0.669,0.907,0.917,0.95,1.554 +NM_031414,2.021,1.911,1.782,1.851,1.8719999999999999,2.032,2.12,2.192,1.9449999999999998,1.883,1.9340000000000002,2.048,1.88,1.963,1.7389999999999999,1.892,1.8860000000000001,2.002,2.0869999999999997,1.9409999999999998,2.024,1.81,2.2359999999999998,2.013,1.984,1.722,2.058,1.922,2.7249999999999996,1.9769999999999999,1.893,2.19,2.078,2.081,2.069,1.988,1.871,2.181,2.076,1.882,2.173,2.0090000000000003,2.032,2.105,1.987,2.186,2.303,1.726,2.018,2.043,1.956,2.011,2.112,2.287 +NM_031415,2.244,0.596,3.022,1.11,2.321,0.552,0.698,1.837,6.139,3.086,0.685,1.754,1.265,1.71,2.542,1.216,4.107,2.235,4.757,0.59,1.579,3.245,0.642,3.884,0.531,2.195,4.744,3.388,0.548,0.675,3.424,0.623,1.633,0.597,0.74,0.587,0.514,1.589,0.584,0.56,3.754,0.574,0.511,0.591,3.924,0.612,1.744,3.472,0.606,5.325,0.84,1.179,3.261,1.135 +NM_031416,1.121,0.969,1.007,0.923,1.042,0.898,1.025,0.989,1.033,0.978,0.938,1.012,0.969,0.984,1.006,1.084,0.964,1.036,1.185,1.004,0.841,1.034,0.9,1.046,0.99,0.894,0.85,1.031,0.853,0.962,1.16,0.865,1.013,1.014,0.95,1.019,0.979,1.053,1.026,0.953,1.002,1.0,1.072,1.059,0.96,0.994,1.125,0.989,0.993,1.0,1.131,1.1,0.954,0.941 +NM_031417,1.016,0.974,0.979,1.094,0.861,0.85,1.053,0.955,1.026,0.891,0.891,0.934,1.091,1.085,0.896,1.349,0.847,0.94,0.875,0.905,0.91,1.026,0.926,1.146,1.028,1.018,1.123,1.02,1.366,1.091,1.015,1.082,1.024,1.091,1.02,0.871,0.982,1.006,1.17,1.001,0.893,1.019,1.028,0.992,1.093,0.905,0.936,0.963,0.995,1.033,0.978,1.015,0.937,0.951 +NM_031418,1.066,1.059,1.091,1.122,0.845,0.944,1.032,0.834,1.123,0.986,1.401,1.1,1.038,0.867,1.076,1.091,1.01,1.085,1.12,1.175,1.015,0.99,0.982,0.934,0.87,0.979,1.025,0.835,1.136,1.111,0.964,0.955,0.908,0.927,0.997,0.986,1.018,0.981,1.014,0.987,1.002,1.065,1.171,1.086,0.936,1.0,0.925,0.975,1.177,1.121,0.906,1.152,0.948,1.003 +NM_031420,0.73,1.04,1.265,0.806,1.064,0.772,0.683,0.62,1.185,1.122,1.039,0.672,0.759,0.691,1.002,1.252,0.901,0.802,1.245,0.821,0.906,0.542,1.276,0.971,0.712,0.784,1.553,0.973,0.617,0.99,0.997,1.882,2.659,1.203,0.601,1.55,0.914,0.775,1.14,0.939,1.29,1.151,0.63,1.566,0.98,0.86,1.187,0.642,1.064,0.864,0.912,0.882,1.203,2.866 +NM_031421,0.948,1.081,0.98,0.878,0.995,0.936,0.809,0.89,0.878,1.014,1.031,1.067,0.981,1.104,0.981,0.856,0.944,1.004,0.862,0.98,1.008,0.969,0.971,0.924,1.069,0.901,1.067,0.974,1.056,1.066,1.0,1.151,1.519,1.0,0.956,1.032,0.973,0.879,1.018,1.026,0.94,0.982,1.009,1.02,1.014,0.976,0.995,1.047,1.058,1.156,1.05,0.943,1.086,1.064 +NM_031422,0.951,1.041,1.124,1.376,1.089,0.954,1.304,1.058,1.013,0.937,1.024,1.008,0.987,1.038,0.899,1.002,1.056,1.234,1.006,2.172,1.022,0.981,0.948,1.058,1.034,0.901,1.017,0.899,1.0,0.895,0.971,0.898,0.904,1.049,1.022,0.907,0.98,1.042,1.079,0.94,0.943,2.152,1.032,0.942,1.054,1.093,0.888,0.9,0.973,1.101,0.954,1.002,0.941,1.044 +NM_031423,0.829,0.999,1.084,1.052,1.278,1.007,0.95,0.982,1.001,0.908,0.851,0.939,0.917,0.958,1.046,0.941,1.02,0.877,1.003,0.841,0.962,0.883,1.111,1.097,0.94,0.911,1.631,0.957,0.995,0.984,1.097,1.282,2.418,1.105,0.88,0.945,0.856,1.02,1.187,1.044,1.02,0.997,1.167,1.009,0.982,1.009,1.255,0.809,1.167,0.869,1.133,1.062,0.97,1.609 +NM_031424,0.766,0.647,2.685,0.61,1.588,0.787,0.514,0.584,1.613,1.661,0.534,1.533,0.725,1.124,1.062,0.747,2.319,1.105,2.061,0.814,1.034,1.181,1.051,1.782,0.339,0.988,2.05,1.626,0.341,1.102,1.208,0.943,1.13,0.725,0.426,1.08,0.691,1.636,0.847,1.609,2.166,0.842,0.542,0.891,1.599,0.79,1.237,0.851,0.765,1.167,0.817,0.816,1.49,1.728 +NM_031425,0.835,1.323,0.693,0.915,0.601,1.165,1.017,0.712,0.729,0.632,1.143,0.66,0.693,0.603,0.917,1.512,0.673,0.917,0.571,1.323,0.632,0.582,1.357,0.682,1.134,0.733,0.583,0.642,1.076,1.388,0.703,1.306,0.974,1.801,0.694,0.84,1.079,0.704,1.352,1.086,0.682,1.247,1.04,1.0,0.664,1.012,0.74,0.688,1.0,0.596,1.133,0.931,0.757,1.64 +NM_031426,3.53,0.291,3.539,1.131,6.63,0.162,0.175,5.548,5.789,3.574,0.151,4.219,4.014,3.148,3.308,1.85,3.599,3.802,4.551,0.169,1.516,3.916,0.196,4.749,0.198,6.005,1.696,6.686,0.148,0.185,6.269,1.32,1.736,0.285,6.956,0.266,0.167,5.29,0.333,0.318,5.529,0.299,0.122,0.558,3.673,0.134,3.261,6.6,0.409,3.021,1.116,0.579,1.946,1.085 +NM_031427,0.927,1.053,1.017,0.771,1.056,0.918,0.987,1.014,0.949,0.98,0.984,1.091,1.016,0.953,1.057,1.086,0.967,0.929,1.028,1.101,0.999,0.873,1.108,0.975,0.906,1.19,1.073,0.972,0.638,1.051,0.909,0.998,1.192,0.969,0.766,1.116,1.092,1.1,1.009,1.006,0.891,1.086,0.948,0.966,1.02,0.927,0.939,0.957,1.008,0.913,1.001,0.849,1.023,0.953 +NM_031429,0.842,1.016,0.95,0.987,1.088,0.996,1.257,0.967,0.846,0.923,0.798,1.086,1.06,0.859,0.923,0.798,0.965,0.846,0.866,0.959,1.049,1.036,1.009,1.025,0.992,1.007,1.091,1.04,0.753,0.983,1.185,0.961,0.948,1.064,0.955,1.003,1.181,0.899,0.943,1.072,0.916,1.066,0.943,0.951,1.012,1.095,1.021,1.012,1.049,1.027,0.862,0.85,0.977,0.833 +NM_031430,0.824,1.196,0.825,1.391,0.824,1.408,0.916,0.615,0.75,0.869,1.417,0.782,0.811,0.684,1.061,1.332,0.856,0.935,0.949,1.116,0.812,0.854,1.077,0.814,1.106,0.794,0.873,0.713,0.924,1.398,0.837,0.964,0.748,1.489,0.991,1.293,1.192,0.859,1.332,0.845,0.807,1.391,1.02,1.043,0.922,1.158,0.983,0.824,1.247,1.066,0.999,0.738,0.898,1.147 +NM_031431,0.793,1.023,1.053,0.809,0.808,0.859,0.746,0.656,0.969,0.846,1.125,0.606,0.701,0.749,1.026,1.157,0.865,0.896,0.865,1.18,0.71,0.641,1.086,0.854,0.886,0.799,1.116,0.78,0.554,1.144,0.738,1.242,1.131,1.028,0.599,1.115,0.9,0.652,1.151,1.938,1.017,1.157,0.938,1.382,0.982,1.227,0.974,0.657,1.221,0.819,1.055,0.988,1.021,1.687 +NM_031432,1.18,0.887,1.125,0.879,0.714,1.063,0.687,0.826,0.875,0.718,1.22,0.977,1.0,0.775,1.066,1.0,0.958,0.923,1.186,0.939,0.858,1.116,0.938,0.969,1.039,1.202,1.227,0.836,0.615,1.287,0.987,1.608,1.349,1.379,0.65,0.774,0.839,0.978,1.135,0.9,1.048,1.038,0.578,1.139,0.984,0.752,0.873,1.22,0.841,0.971,0.873,0.709,0.905,1.285 +NM_031433,0.808,1.046,0.948,0.896,1.018,1.104,1.004,1.14,0.977,1.079,0.963,1.064,0.94,0.971,0.986,1.083,1.127,0.919,0.967,0.932,1.007,1.131,0.966,1.064,1.003,1.009,1.056,0.984,1.009,1.064,0.942,0.966,1.065,0.884,1.06,1.035,0.867,1.02,0.988,0.968,0.934,1.058,0.789,0.736,1.064,0.985,0.904,0.954,0.85,0.977,0.969,0.922,1.004,1.055 +NM_031434,0.775,0.79,0.719,0.907,0.619,1.514,0.625,0.769,0.702,0.653,1.264,0.607,0.765,0.591,0.998,2.01,0.632,1.136,1.402,0.855,0.626,0.749,1.645,0.675,1.028,1.187,0.805,0.5,0.659,1.608,0.772,0.968,1.258,1.744,0.609,0.729,1.045,0.798,3.057,1.122,0.589,1.064,0.639,1.502,0.754,0.79,0.886,1.313,0.961,0.996,0.96,0.675,0.883,1.337 +NM_031435,0.974,0.986,1.052,1.074,1.075,0.998,0.847,0.959,1.016,1.0,0.926,1.001,1.166,0.93,1.034,0.783,0.974,0.943,1.181,0.965,0.919,1.035,0.896,1.025,1.1,0.891,1.054,1.083,0.899,0.903,1.001,1.05,1.008,1.014,1.116,1.053,0.959,0.995,0.908,0.83,1.043,1.011,0.851,0.844,1.03,0.915,1.199,0.917,1.002,0.932,1.047,0.989,1.009,1.008 +NM_031436,1.046,0.98,1.099,0.921,0.867,0.882,1.018,0.873,0.898,0.976,1.041,0.974,0.99,1.043,0.973,0.915,0.941,0.999,1.112,1.102,1.013,0.854,1.13,0.95,0.908,1.024,1.236,1.012,0.879,0.866,0.878,0.846,1.027,1.017,0.816,1.025,0.965,0.908,1.247,0.983,1.033,0.941,1.046,1.33,0.866,1.079,0.87,0.98,1.164,0.996,1.022,0.936,0.944,1.196 +NM_031438,1.13,1.103,0.955,0.969,0.98,1.19,1.121,0.964,0.942,0.894,1.088,0.995,1.098,1.145,0.984,1.202,0.981,1.0,1.113,1.091,1.041,0.992,1.046,1.021,0.926,0.994,1.035,0.956,1.119,1.03,0.984,0.996,0.925,1.096,1.058,0.855,0.947,0.864,0.966,0.89,0.878,0.939,1.42,0.888,1.107,0.992,1.015,1.001,1.116,0.915,1.178,1.045,0.908,0.927 +NM_031439,2.179,0.729,2.822,1.086,1.928,0.65,0.616,0.962,2.62,2.281,0.688,1.382,1.176,1.375,1.18,1.299,1.789,1.486,2.836,0.898,1.441,1.092,0.768,1.834,0.647,1.678,3.307,1.837,0.649,0.805,1.755,0.972,1.33,0.784,0.663,0.763,0.687,1.437,0.852,0.783,1.949,0.839,0.543,0.902,2.737,0.752,1.407,1.592,0.615,2.786,1.014,1.441,3.323,0.93 +NM_031440,1.066,0.97,0.963,1.179,1.067,1.106,0.924,0.949,1.008,1.138,0.948,0.983,0.997,0.901,0.986,1.001,1.009,0.991,0.904,1.015,1.117,1.006,1.135,1.015,0.954,0.928,0.997,0.998,0.772,1.091,0.999,0.896,0.969,0.948,1.057,1.052,1.001,0.956,0.935,1.04,0.931,1.098,1.102,1.098,1.076,1.031,0.99,1.065,0.914,1.019,0.985,0.959,1.046,0.929 +NM_031442,0.763,1.587,0.556,0.994,0.636,1.504,1.367,0.884,0.572,0.592,1.65,0.545,0.624,0.728,1.077,1.685,0.571,0.715,0.491,1.219,0.61,0.668,2.322,0.52,1.459,0.643,0.59,1.053,0.554,2.269,0.589,7.4,1.161,4.022,0.619,0.72,1.099,0.971,1.619,1.303,1.538,2.519,0.987,0.579,0.585,0.806,0.708,0.541,0.629,0.593,1.609,1.48,0.626,0.942 +NM_031443,0.422,1.064,0.968,0.642,0.72,1.126,0.997,0.429,0.596,0.819,1.003,0.642,0.453,0.47,0.785,1.179,0.819,1.019,0.656,1.115,0.321,0.579,1.734,0.765,0.566,0.533,1.144,0.604,0.63,1.64,0.581,2.32,1.261,1.453,0.287,1.403,1.153,0.607,1.703,1.192,0.862,1.109,0.535,1.678,0.772,1.103,1.335,0.627,1.149,0.669,1.278,1.195,0.657,1.889 +NM_031445,0.941,1.01,1.192,0.939,0.808,1.034,0.93,0.694,1.071,0.86,0.959,0.709,0.821,0.665,1.097,1.082,0.84,0.937,0.824,1.156,0.803,0.92,1.2,0.94,0.852,0.979,0.997,0.809,0.803,1.058,0.998,1.744,1.74,1.184,0.603,1.006,0.907,1.037,1.537,1.625,0.935,1.091,0.917,1.05,1.111,1.08,0.956,0.767,0.795,0.95,1.005,1.002,0.983,1.514 +NM_031446,0.612,1.008,1.28,0.745,0.927,1.224,0.775,0.944,1.111,1.026,1.031,0.971,0.829,0.811,1.055,1.757,0.947,0.971,1.141,1.105,0.776,0.92,1.278,1.034,0.718,0.623,1.147,0.852,0.705,1.196,1.012,1.075,1.804,1.314,0.533,0.757,1.2,1.04,1.155,0.616,0.952,1.135,0.851,1.103,0.798,0.841,1.11,0.804,1.056,0.766,0.928,0.898,0.831,3.96 +NM_031447,0.691,0.999,1.078,0.8,0.668,1.051,0.79,0.511,0.833,0.805,1.193,0.635,0.546,0.855,1.095,1.38,0.8,0.738,0.764,1.341,0.599,0.782,1.48,0.851,0.8,0.696,1.056,0.749,0.691,1.15,0.763,1.773,1.971,1.485,0.395,1.394,1.074,0.861,1.038,1.61,0.778,1.285,0.91,1.508,0.773,1.214,0.882,0.577,0.836,0.73,1.088,0.966,0.709,2.087 +NM_031450,0.815,1.32,1.214,0.761,1.061,0.821,0.603,0.902,1.124,0.921,0.812,1.05,0.753,0.827,0.889,0.914,0.861,0.844,1.32,1.217,0.593,0.848,1.014,0.892,0.685,1.03,0.997,1.417,0.436,1.058,1.156,1.835,1.186,1.31,1.424,1.212,0.712,1.288,1.05,1.061,1.167,1.13,0.676,1.166,0.787,0.84,0.805,1.127,0.659,0.693,0.863,0.616,1.11,1.202 +NM_031451,1.37,0.872,2.041,0.943,1.126,0.815,0.9,0.979,1.625,1.259,0.757,1.416,1.083,0.998,0.92,1.002,2.679,1.058,1.759,0.813,1.238,1.129,0.841,1.097,0.966,1.219,2.263,1.195,0.735,0.853,1.246,0.866,0.988,0.86,1.042,1.036,0.888,0.984,0.934,0.886,1.693,0.744,0.94,0.929,1.566,0.94,1.53,1.236,0.872,1.796,0.937,1.008,1.621,0.961 +NM_031452,0.648,0.788,1.142,0.764,1.061,1.028,0.685,0.699,1.271,1.17,1.023,0.699,0.598,0.827,0.944,1.191,0.844,1.056,1.235,0.931,0.744,0.7,1.159,1.152,0.559,0.836,1.037,1.078,0.431,0.913,1.229,0.762,1.363,1.208,0.527,1.12,1.011,0.752,1.291,0.676,1.237,0.781,0.752,0.905,1.038,1.019,1.115,0.782,0.845,0.803,0.852,0.751,1.188,1.738 +NM_031453,0.599,2.857,0.739,1.28,0.797,2.468,1.772,0.923,0.525,0.314,1.551,0.555,0.899,0.395,1.008,1.136,0.635,1.678,0.689,2.806,0.422,0.294,1.28,0.374,1.92,0.449,0.653,0.504,0.732,2.447,0.862,3.016,2.13,3.381,2.676,0.644,1.304,0.769,1.83,0.76,0.674,1.861,1.14,1.318,0.448,1.181,0.582,0.598,0.73,0.703,1.563,0.818,0.569,2.201 +NM_031454,1.024,0.846,1.033,1.007,0.839,0.984,0.523,0.695,1.133,0.982,0.868,0.724,0.802,0.982,1.056,1.364,0.99,0.804,1.768,0.933,0.761,1.074,0.98,0.967,0.939,1.216,1.412,0.744,0.459,0.998,1.108,1.09,1.547,1.187,0.539,0.788,0.85,0.996,1.412,0.72,0.86,1.058,0.6,1.052,1.091,0.737,0.689,1.265,1.095,0.98,0.978,0.844,1.26,1.154 +NM_031455,0.764,0.537,1.066,0.744,1.428,0.716,0.575,0.807,1.249,1.386,0.594,1.147,0.724,0.676,0.821,0.967,0.651,0.917,1.097,1.238,1.118,1.077,1.403,1.935,0.45,1.126,1.067,2.292,0.357,1.076,1.023,2.141,1.136,1.308,0.372,1.112,0.439,1.938,1.287,1.267,2.733,2.119,0.546,0.475,1.26,0.551,0.86,1.007,0.554,0.973,0.952,1.574,1.198,0.955 +NM_031456,1.062,0.89,0.927,0.941,0.972,1.091,0.841,1.166,0.979,0.94,0.907,1.067,0.904,1.288,0.97,1.1,1.011,0.911,1.036,1.057,0.921,1.052,0.878,0.946,1.104,0.959,0.906,0.994,1.147,0.979,1.091,1.046,1.002,1.009,0.933,0.977,1.124,0.898,0.936,0.912,0.991,1.009,1.171,0.962,1.074,0.941,0.886,1.002,1.13,1.013,1.035,0.924,0.908,0.883 +NM_031457,0.649,1.548,0.559,1.209,0.677,1.946,1.049,0.677,0.532,0.665,1.488,0.637,0.598,0.547,1.127,2.11,0.72,1.03,0.4,3.654,0.572,0.675,1.024,0.697,0.833,0.633,0.568,0.741,1.364,1.272,0.578,0.773,0.745,3.213,0.66,0.813,3.732,0.595,1.791,0.679,0.659,3.104,2.492,1.049,0.519,2.265,1.233,0.707,0.976,0.567,2.543,0.642,0.647,0.713 +NM_031458,0.666,0.645,2.107,0.669,0.496,1.839,1.279,0.472,0.758,0.625,1.158,0.377,0.594,0.489,1.73,1.929,2.046,0.904,1.012,0.857,0.707,0.501,1.462,0.789,0.505,0.431,1.861,0.507,0.487,0.791,0.744,1.274,4.795,1.411,0.292,0.594,1.508,0.574,1.704,0.953,1.439,1.318,0.814,1.366,0.94,1.124,0.889,0.417,2.184,0.937,1.38,0.948,1.422,3.528 +NM_031459,1.477,0.763,0.973,1.021,2.4,0.916,0.568,4.244,2.1,1.056,1.017,0.8,0.995,0.674,2.315,1.829,0.808,1.064,1.143,1.135,0.61,1.869,1.616,0.812,0.47,1.419,0.688,2.539,0.396,1.074,1.762,0.816,0.781,0.706,13.08,0.507,1.127,2.065,1.24,0.993,1.749,1.38,0.541,1.163,1.179,1.113,1.362,6.196,0.994,1.096,1.101,0.632,1.023,1.049 +NM_031461,0.942,1.093,1.12,0.978,1.066,1.031,0.875,0.992,0.936,1.113,0.95,0.905,1.063,1.038,1.009,1.011,0.955,0.965,1.146,1.095,0.964,0.912,0.981,1.045,1.049,0.934,1.368,0.993,1.024,0.995,1.182,3.035,1.155,0.983,1.019,0.921,1.005,1.0,0.971,0.938,1.008,1.025,1.009,1.102,0.864,1.039,0.884,0.928,0.927,0.841,0.94,1.15,1.061,0.896 +NM_031462,0.78,1.338,0.881,0.758,0.871,1.263,0.72,0.723,0.771,0.846,0.945,0.854,0.89,0.605,0.843,1.147,0.816,0.897,0.931,0.874,0.867,0.873,1.384,0.942,0.975,0.848,1.058,0.983,0.63,1.498,0.774,2.744,1.974,1.749,0.561,1.007,0.921,0.923,1.671,1.076,0.952,1.635,0.676,1.171,0.764,0.914,0.993,0.787,0.832,0.736,1.014,1.006,0.852,1.142 +NM_031464,0.869,1.087,0.831,0.806,0.833,0.98,0.789,0.839,0.969,1.086,1.099,1.0,0.781,0.915,0.91,1.108,0.985,0.868,0.778,1.154,0.757,0.925,1.402,0.951,0.854,0.882,1.0,0.815,0.932,0.867,1.009,1.571,2.105,1.027,0.887,1.523,1.016,1.081,1.261,1.803,1.005,1.11,1.332,1.398,0.895,1.127,1.12,0.896,1.214,0.891,1.044,1.055,1.077,1.751 +NM_031465,0.996,0.942,1.396,0.891,1.09,0.968,0.813,1.0,1.34,0.994,0.998,1.107,1.062,0.849,1.018,1.165,0.992,1.04,1.172,1.015,0.924,0.952,1.199,1.203,0.932,0.916,1.105,1.078,0.621,0.95,1.07,1.12,1.938,0.856,0.855,1.068,0.922,1.069,1.228,0.953,1.128,0.964,0.997,1.16,1.176,1.042,1.055,1.026,0.838,0.982,1.089,1.031,0.87,1.272 +NM_031466,0.952,1.048,0.998,0.939,0.869,1.047,0.669,0.671,0.855,0.877,0.989,0.679,0.751,0.956,1.002,1.713,0.707,0.873,1.787,1.03,0.79,0.9,1.314,0.81,1.055,1.227,1.068,0.784,0.586,0.884,0.79,0.94,1.578,1.719,0.588,0.861,0.867,1.021,1.718,1.348,0.792,1.267,0.831,1.619,0.932,1.051,0.914,1.042,0.844,1.065,0.967,0.697,1.133,0.939 +NM_031467,1.076,0.963,0.869,1.049,1.004,0.992,0.978,1.017,0.986,0.945,1.139,1.012,0.976,1.124,0.774,0.829,1.087,0.932,0.924,1.009,0.852,0.959,0.893,1.105,1.015,0.99,1.13,1.053,1.045,0.97,0.93,0.935,0.897,0.918,1.063,1.032,0.97,1.0,1.007,0.927,1.03,0.925,1.058,0.896,1.003,0.958,0.905,1.106,1.073,1.067,0.943,0.949,0.84,1.037 +NM_031468,1.048,0.997,0.807,0.993,1.024,0.998,1.214,1.051,1.03,0.96,0.995,1.044,1.083,0.853,0.88,0.985,1.046,0.839,0.962,1.059,1.181,0.983,0.849,1.002,0.956,0.925,1.014,1.049,1.599,1.082,0.92,1.062,0.867,1.045,1.059,1.049,1.086,1.045,0.961,0.928,1.098,0.897,1.062,0.957,0.914,1.083,0.834,0.958,0.796,1.017,1.073,0.85,0.908,1.07 +NM_031471,0.55,1.667,0.751,1.664,0.551,1.629,1.25,0.561,0.603,0.54,1.564,0.523,0.533,0.632,1.041,2.325,0.654,1.093,0.642,1.031,0.565,0.491,1.324,0.579,0.892,0.513,0.766,0.568,1.208,2.459,0.555,1.093,0.791,3.218,0.676,3.598,1.64,0.465,3.086,1.187,0.525,2.267,0.754,1.69,0.669,0.686,0.611,0.561,0.649,0.599,1.063,0.932,0.768,1.271 +NM_031472,0.834,1.012,1.016,0.997,0.712,1.281,0.588,0.833,1.016,0.893,1.123,0.783,1.032,0.636,0.938,1.58,0.81,1.188,1.08,0.829,0.631,1.035,1.114,0.849,1.034,0.724,0.786,0.764,0.682,1.731,0.837,1.462,1.74,1.576,0.675,0.952,0.818,0.986,1.429,0.977,0.912,1.061,0.785,1.433,0.932,0.815,0.742,1.05,0.952,0.959,0.815,0.731,0.824,0.946 +NM_031473,0.84,1.093,0.956,0.971,1.151,1.113,1.066,1.012,0.977,0.945,1.06,1.032,0.969,0.994,0.841,1.048,0.955,0.882,1.047,0.988,0.897,0.933,1.042,1.033,0.97,0.989,1.021,1.021,0.936,0.993,1.106,1.107,1.055,0.984,1.121,0.999,0.978,0.865,0.933,1.012,1.033,1.043,1.047,1.025,0.996,1.012,1.139,0.968,1.028,0.967,1.136,0.952,1.026,1.111 +NM_031474,0.998,0.994,1.013,0.869,0.897,1.057,1.003,0.902,1.128,0.919,1.085,1.022,1.058,1.138,0.858,0.939,0.927,0.946,0.968,1.011,1.024,1.034,0.941,0.983,1.018,1.044,1.075,1.002,0.893,1.078,1.004,1.183,0.933,1.163,0.847,1.009,0.924,0.855,0.982,1.094,1.052,1.052,1.011,0.863,0.964,1.045,0.993,0.943,0.925,0.913,1.029,1.08,0.992,0.867 +NM_031475,1.021,0.913,0.766,0.936,1.047,1.36,0.969,0.832,0.867,0.806,1.157,0.975,0.92,0.987,0.886,1.884,0.958,0.855,1.001,1.15,1.052,1.012,0.973,1.04,0.951,1.056,1.022,0.887,0.748,1.183,0.785,0.879,1.161,0.861,0.876,1.01,1.049,0.944,1.592,1.431,0.941,1.256,1.193,0.947,0.96,1.244,0.995,1.033,1.018,0.868,1.096,1.026,1.133,0.986 +NM_031476,0.564,1.231,0.538,0.929,0.489,1.168,1.046,0.611,0.638,0.7,0.956,0.57,0.532,0.429,0.858,0.69,0.513,0.665,0.569,1.005,0.654,0.525,1.294,0.605,1.04,0.512,0.663,0.672,0.81,2.174,0.631,5.767,1.301,2.716,0.471,0.677,1.199,0.526,1.405,2.043,0.701,2.899,1.158,1.172,0.8,1.181,0.714,0.562,0.68,0.573,1.49,1.139,0.739,1.282 +NM_031478,0.982,1.0,0.972,0.961,0.985,0.955,1.012,1.038,0.91,0.974,1.058,0.955,0.968,1.164,0.931,1.06,1.046,1.019,0.947,1.101,1.064,0.886,0.998,1.069,0.982,0.961,1.017,1.164,0.987,1.015,1.083,1.239,1.064,0.951,1.046,0.943,1.032,0.884,1.04,0.937,1.052,1.178,1.377,0.94,1.017,0.956,0.954,0.954,0.864,1.085,1.035,1.089,0.868,0.974 +NM_031480,1.017,1.018,1.018,1.023,1.215,0.911,0.931,1.017,0.866,0.984,1.0,0.804,0.903,0.899,1.015,1.318,0.78,0.942,1.06,0.965,0.873,0.977,1.165,0.953,1.127,1.076,1.116,0.809,0.922,1.002,0.925,0.96,1.553,0.904,0.921,1.013,0.961,1.001,1.084,1.097,1.008,0.983,0.781,1.007,0.898,0.953,1.059,1.026,1.036,1.188,1.048,0.856,1.225,1.278 +NM_031484,0.683,1.798,1.004,0.806,0.851,0.848,0.997,0.681,0.693,1.108,1.01,0.723,0.694,0.768,0.997,1.031,0.811,0.814,0.79,1.09,0.786,0.8,1.418,0.768,0.672,0.986,1.154,0.8,0.679,1.442,0.727,6.534,0.998,1.533,0.622,1.926,0.723,1.129,1.018,2.111,1.197,1.486,0.737,1.733,1.026,0.987,1.002,0.739,0.712,0.745,0.961,1.458,1.389,1.556 +NM_031485,0.861,1.049,1.011,0.872,0.927,0.906,0.739,0.63,0.929,1.215,0.834,0.995,0.938,0.713,0.936,1.221,1.101,0.875,1.466,0.818,0.76,0.763,1.455,1.146,0.765,0.994,1.123,0.767,0.598,0.872,0.871,1.115,3.656,1.271,0.469,1.161,0.804,0.725,1.622,1.217,0.872,0.958,0.735,1.761,1.185,0.747,1.005,0.924,0.873,1.148,0.887,0.908,1.152,1.364 +NM_031488,0.621,0.993,1.133,0.803,0.895,1.012,0.725,0.601,1.153,0.9,0.786,0.933,0.733,0.626,0.842,1.29,0.968,0.84,1.061,1.019,0.709,0.921,1.394,1.046,0.724,0.792,1.292,0.806,0.629,1.168,0.94,1.397,1.675,1.166,0.502,1.035,0.961,0.857,1.396,0.828,1.113,0.882,0.808,1.129,1.077,0.904,0.852,0.833,1.043,0.866,1.109,1.015,1.007,1.744 +NM_031490,0.764,1.013,1.244,0.849,0.813,1.209,0.736,0.424,1.068,0.936,1.271,0.714,0.574,0.706,0.913,1.591,0.894,0.902,1.144,1.025,0.698,0.758,1.238,0.871,0.787,0.838,1.206,0.805,0.648,1.275,0.913,1.114,1.383,1.213,0.453,0.904,1.333,0.833,1.402,0.6,0.954,1.197,0.831,1.301,0.805,1.127,0.989,0.741,1.218,0.771,1.252,0.802,0.939,2.319 +NM_031491,0.813,1.319,0.803,0.894,0.904,0.836,1.172,0.886,1.019,0.944,1.009,0.865,0.957,0.829,0.783,1.085,0.888,1.061,0.858,0.875,0.872,0.747,0.778,0.855,1.527,0.822,0.733,0.85,1.536,1.348,0.761,1.053,0.947,1.929,0.826,1.095,1.051,0.931,1.813,1.029,0.931,1.124,0.922,0.794,0.904,0.925,1.037,0.75,0.955,0.882,1.049,1.248,0.891,1.28 +NM_031492,0.783,1.148,1.293,0.78,0.959,1.008,0.71,0.716,1.076,0.939,1.22,1.006,0.695,1.184,1.167,1.155,0.961,0.815,1.196,1.196,0.76,0.749,1.121,0.835,0.684,0.671,1.233,0.89,0.728,1.495,0.917,1.753,2.337,1.389,0.529,1.2,0.977,0.795,0.823,0.725,0.987,1.135,0.86,1.033,0.919,0.932,0.827,0.652,0.809,0.776,1.215,0.77,0.836,1.352 +NM_031495,2.006,1.862,1.961,1.98,2.307,1.8679999999999999,1.936,2.178,2.037,2.013,1.905,1.919,2.05,1.845,1.875,2.0250000000000004,1.7389999999999999,2.2110000000000003,1.855,1.823,2.099,2.096,2.0020000000000002,2.011,1.963,2.082,1.8860000000000001,2.061,1.7069999999999999,2.298,2.009,1.8649999999999998,1.986,1.8889999999999998,1.891,2.003,1.951,1.886,2.007,2.126,2.144,1.9489999999999998,1.925,1.815,1.779,1.871,1.8900000000000001,2.048,2.07,1.931,2.301,2.197,2.169,2.113 +NM_031496,1.06,0.94,0.988,1.0,1.026,0.941,0.985,0.989,0.967,0.989,1.093,1.009,0.85,0.934,1.03,1.035,1.017,0.961,0.989,1.042,0.95,1.068,0.92,1.077,1.044,0.898,1.005,1.015,1.073,0.992,0.953,0.964,1.152,1.115,0.867,1.004,0.917,1.006,1.084,0.924,1.006,1.034,1.324,0.94,0.841,1.103,0.923,0.907,1.037,0.852,1.106,0.965,1.169,1.166 +NM_031497,2.067,1.953,1.8599999999999999,2.273,1.818,2.065,2.263,2.0149999999999997,2.035,1.7650000000000001,2.219,1.946,1.831,1.728,1.967,2.016,1.9169999999999998,2.201,2.282,1.806,2.263,2.163,1.916,1.908,2.14,2.222,1.968,2.2,2.2969999999999997,2.064,2.136,1.873,2.063,1.9809999999999999,2.1550000000000002,1.9769999999999999,2.1799999999999997,2.0340000000000003,2.0220000000000002,2.149,2.202,1.9100000000000001,2.0340000000000003,2.188,2.308,2.035,2.1029999999999998,1.9860000000000002,2.061,1.849,2.05,1.776,2.0789999999999997,2.052 +NM_031498,0.99,0.988,0.969,1.086,0.928,0.999,1.399,1.228,0.87,0.907,1.021,0.964,0.988,1.218,0.879,0.944,1.09,0.799,0.949,0.933,1.075,0.957,1.148,0.966,0.995,1.18,1.111,0.95,0.893,0.951,1.07,0.983,0.983,1.025,0.884,1.139,1.08,0.937,1.145,1.016,0.993,1.101,1.151,0.976,0.972,0.9,0.745,1.058,0.884,1.114,1.114,0.993,1.074,1.209 +NM_031500,0.981,1.133,1.123,0.893,1.009,1.145,0.852,1.08,0.999,1.114,1.102,1.042,1.056,0.835,0.746,1.027,1.012,1.18,1.172,0.937,0.943,0.946,1.102,0.922,0.918,1.076,1.007,0.997,0.871,1.107,0.851,0.98,0.932,1.108,0.989,0.971,1.087,1.019,1.012,1.098,0.922,1.002,0.926,0.95,0.903,0.998,0.926,1.001,1.234,0.89,1.008,0.951,1.183,0.934 +NM_031501,2.152,2.002,2.036,2.15,2.097,2.108,2.022,1.726,2.2279999999999998,1.794,2.026,1.936,1.927,2.553,2.3040000000000003,1.939,1.9780000000000002,1.936,2.018,2.035,1.9729999999999999,2.066,1.979,2.053,1.98,2.29,2.058,2.138,2.2270000000000003,2.0519999999999996,1.7530000000000001,1.912,1.824,2.064,2.028,2.088,1.8980000000000001,1.854,2.06,1.905,1.631,2.054,2.2249999999999996,2.136,2.036,1.95,2.286,2.14,1.9140000000000001,1.7690000000000001,2.1790000000000003,2.103,2.082,1.854 +NM_031844,1.027,1.001,0.911,1.087,0.986,0.987,1.069,0.929,0.926,0.979,0.969,1.06,1.024,0.895,0.798,1.068,1.094,1.022,1.077,1.055,1.033,0.942,1.018,1.072,0.942,1.091,0.899,0.969,1.137,0.957,0.948,0.991,0.782,1.06,1.008,1.029,1.011,1.157,1.019,0.869,0.899,0.943,1.069,1.039,1.042,1.082,1.082,1.085,0.976,0.947,1.01,0.918,0.964,0.913 +NM_031848,0.959,1.024,0.958,1.041,1.032,1.0,1.435,0.979,1.028,1.013,1.014,0.997,1.056,1.059,1.073,0.964,0.978,1.037,1.123,1.066,1.041,0.979,0.987,0.914,0.955,1.16,1.031,1.072,0.946,0.854,1.02,0.985,1.018,1.14,0.869,0.973,0.974,1.0,1.013,0.924,1.025,0.833,1.079,1.101,0.981,1.042,0.968,0.969,0.985,0.943,0.967,0.886,1.215,1.016 +NM_031852,0.916,0.944,1.028,1.001,0.99,0.983,1.065,0.894,0.96,0.956,1.108,0.862,0.901,0.895,1.003,0.932,1.031,1.215,1.075,1.063,1.086,0.908,0.955,1.073,1.008,1.01,1.184,0.936,0.894,0.873,1.122,1.054,0.999,1.002,1.042,0.919,0.981,0.918,0.996,0.898,0.975,0.93,1.332,1.105,0.999,0.842,1.006,0.858,0.912,1.061,1.061,0.95,1.036,0.999 +NM_031854,1.149,0.972,1.108,0.863,1.119,0.982,1.107,0.928,0.972,1.016,1.035,0.999,0.9,0.909,1.497,1.094,1.087,0.925,0.978,1.06,0.882,0.773,1.159,0.989,1.006,0.948,0.956,1.096,0.879,0.935,0.896,1.102,1.075,0.993,1.177,1.075,1.345,1.101,1.029,1.012,1.212,1.114,0.93,0.911,0.99,0.867,0.958,1.047,1.001,0.975,0.931,0.888,1.118,0.936 +NM_031856,2.1959999999999997,2.166,1.871,2.0309999999999997,1.958,2.056,2.146,1.987,2.2409999999999997,1.746,2.188,2.018,2.034,1.784,1.917,2.101,2.005,2.026,1.998,2.004,1.908,2.008,2.051,1.899,2.109,1.9949999999999999,2.102,2.037,1.9260000000000002,1.9489999999999998,1.944,2.101,1.84,2.051,2.0940000000000003,2.112,2.033,1.9929999999999999,2.325,1.8719999999999999,2.1799999999999997,1.803,1.947,1.991,2.082,2.08,1.9569999999999999,1.8900000000000001,2.061,2.041,1.935,1.871,2.046,1.846 +NM_031857,1.002,0.926,0.957,1.024,0.958,1.103,0.992,1.131,0.909,1.1,0.995,0.947,1.07,1.009,0.888,1.098,0.942,1.015,1.001,0.955,1.108,1.062,0.92,0.961,1.072,0.988,1.006,0.98,1.003,0.994,1.017,1.031,1.027,0.87,1.064,1.186,1.047,1.107,0.909,0.999,0.889,0.977,1.126,1.013,1.054,0.99,0.947,0.996,0.95,0.933,0.945,0.931,1.078,1.002 +NM_031858,0.944,0.978,1.055,0.908,0.955,0.988,1.142,1.108,1.01,0.918,1.008,0.922,1.076,0.905,0.698,0.906,0.943,1.094,1.033,1.099,0.897,1.055,0.919,1.014,1.039,1.116,0.969,1.076,1.005,1.017,0.983,0.916,0.919,1.109,1.015,0.842,0.89,0.99,1.122,1.071,1.001,1.028,1.101,0.967,1.031,0.945,0.889,1.053,1.101,1.232,0.999,1.154,0.844,1.069 +NM_031859,2.0869999999999997,2.1550000000000002,2.2119999999999997,2.23,2.1399999999999997,2.1020000000000003,1.928,1.729,2.208,1.9609999999999999,2.183,1.934,1.928,1.875,1.7429999999999999,1.9100000000000001,2.003,1.916,2.11,2.036,2.112,1.9969999999999999,2.065,1.929,1.9020000000000001,1.883,2.073,2.016,2.2439999999999998,2.019,2.081,2.0999999999999996,1.876,1.8980000000000001,2.103,1.9449999999999998,2.149,1.97,1.995,1.885,2.2350000000000003,1.827,2.181,1.867,1.826,2.094,1.931,2.089,2.064,2.261,2.005,2.095,2.097,1.7999999999999998 +NM_031861,0.994,0.94,0.868,0.775,0.939,1.011,1.005,0.968,1.069,1.053,1.271,1.067,1.081,0.808,0.824,1.092,0.975,1.007,1.075,1.147,0.9,0.97,1.043,0.961,1.021,1.07,1.048,1.137,0.65,0.912,0.98,0.927,0.969,0.916,1.084,0.936,1.099,0.889,1.085,0.952,1.007,0.881,0.921,1.092,0.901,0.965,0.926,1.001,1.067,0.964,1.039,1.1,1.088,1.016 +NM_031862,0.77,1.76,1.008,0.856,0.859,1.116,0.717,0.465,0.928,0.712,1.076,0.682,0.588,0.624,0.896,1.147,0.908,1.553,0.888,1.637,0.575,0.844,1.155,0.579,1.053,1.323,0.982,0.715,0.791,1.459,0.771,1.42,1.097,1.547,0.918,1.224,1.254,0.889,1.564,1.001,0.832,1.279,0.701,1.36,0.677,0.937,1.081,1.253,1.013,0.796,0.972,0.719,0.821,0.809 +NM_031864,0.927,1.231,0.97,0.958,0.939,0.923,0.933,1.168,1.109,0.971,0.972,0.944,0.947,0.968,0.853,1.031,0.937,0.967,0.906,1.004,0.975,1.094,1.096,1.132,1.01,1.142,1.199,1.063,1.022,1.222,1.105,1.031,0.911,1.01,0.959,1.102,1.019,1.002,1.083,1.053,1.283,1.01,0.961,0.885,0.978,0.998,1.04,1.014,1.018,1.085,1.264,1.002,0.824,1.141 +NM_031865,0.931,0.88,0.963,0.842,0.963,1.086,1.101,1.24,0.9,0.931,1.132,1.015,0.95,0.946,0.775,1.057,0.939,0.932,1.015,0.968,1.135,1.087,0.978,1.001,0.95,1.019,0.999,0.979,1.114,1.065,1.211,1.023,0.941,1.042,0.974,0.916,1.036,1.24,1.049,0.997,0.985,1.076,0.921,0.997,1.166,0.931,0.994,1.083,1.08,1.082,0.96,0.939,1.041,1.005 +NM_031866,0.713,1.213,0.926,0.852,0.981,1.099,1.188,1.208,0.933,0.856,0.821,1.111,0.948,0.914,0.957,1.199,0.884,0.948,0.889,1.225,1.11,1.114,1.208,1.168,1.201,1.011,0.911,0.866,2.083,0.905,0.963,1.945,0.88,1.127,1.034,1.059,1.078,0.848,1.191,1.01,0.922,1.171,0.907,0.948,0.94,0.943,0.956,1.114,0.819,1.129,1.118,0.722,0.927,0.966 +NM_031882,1.8940000000000001,2.137,2.2030000000000003,2.1189999999999998,1.906,2.074,2.2169999999999996,1.9419999999999997,2.176,2.085,2.1189999999999998,2.023,2.0389999999999997,1.871,1.904,2.081,2.1390000000000002,2.0949999999999998,1.72,2.202,2.075,2.026,2.053,2.069,1.9969999999999999,1.98,2.051,1.804,1.979,2.226,1.81,1.9829999999999999,2.05,1.9,1.966,2.005,2.085,2.23,2.117,1.9209999999999998,2.0940000000000003,1.935,2.164,2.105,2.124,2.098,1.929,2.072,1.689,1.96,2.012,1.9289999999999998,2.117,1.981 +NM_031883,2.1550000000000002,2.1660000000000004,1.927,2.051,1.943,2.11,1.8250000000000002,1.838,1.99,2.129,2.034,2.265,1.9060000000000001,2.0780000000000003,2.043,2.113,1.8690000000000002,2.1189999999999998,2.0389999999999997,1.85,1.927,2.033,1.787,2.041,1.8579999999999999,2.142,2.1550000000000002,1.935,1.791,2.002,1.9889999999999999,2.091,1.9580000000000002,1.9369999999999998,2.125,2.277,1.938,2.074,2.3529999999999998,1.9129999999999998,1.914,2.029,1.798,2.047,2.085,1.93,2.055,2.041,2.12,1.956,1.963,1.8980000000000001,2.048,1.902 +NM_031885,0.78,1.221,1.091,0.821,0.933,1.114,0.607,0.674,1.586,1.017,1.033,1.034,0.79,1.067,1.621,1.249,0.86,0.71,1.285,1.336,0.774,0.934,1.224,1.081,0.608,0.749,0.956,1.1,0.509,1.121,1.324,1.764,1.687,1.467,0.625,0.621,0.96,1.202,0.903,0.515,1.126,0.998,0.694,0.959,0.857,1.097,1.058,0.78,0.818,0.779,0.901,0.521,1.009,1.818 +NM_031887,0.942,0.962,0.912,0.973,0.984,1.048,1.11,1.071,0.954,0.902,0.999,1.007,1.099,1.049,0.886,1.037,0.928,1.162,1.005,0.917,1.022,1.015,1.082,0.957,1.032,1.026,1.059,0.861,0.934,1.069,0.952,1.064,1.043,1.082,1.015,0.922,0.883,1.001,0.901,0.875,0.82,0.999,0.949,1.141,1.081,1.017,0.904,1.061,1.029,0.998,0.987,1.271,1.035,1.015 +NM_031889,1.022,1.076,0.775,1.031,0.778,0.994,1.307,0.997,0.783,0.887,1.036,0.985,0.945,1.206,0.845,0.969,0.97,1.0,0.888,1.016,1.214,0.959,1.034,0.847,1.173,1.097,1.07,0.79,1.018,1.117,0.914,1.022,0.926,1.221,0.982,1.064,1.073,1.089,0.957,0.942,0.934,0.949,0.775,0.859,1.034,1.136,1.219,0.875,0.772,1.0,1.118,0.835,1.153,1.195 +NM_031890,0.97,1.047,1.029,1.041,1.043,0.927,0.93,1.234,0.966,1.064,1.035,1.073,0.996,1.04,0.926,0.856,0.91,0.992,0.947,0.965,0.933,0.928,1.065,1.079,0.973,1.114,0.955,0.926,1.065,0.931,0.967,0.998,1.027,0.997,1.029,0.83,1.147,1.06,1.001,1.009,0.943,1.075,1.032,0.816,1.044,1.006,1.018,1.09,1.061,0.945,1.038,0.925,0.907,0.952 +NM_031891,1.028,0.938,0.944,1.065,0.955,1.037,0.865,0.911,0.854,1.105,0.971,1.122,0.985,0.843,0.848,0.939,0.884,1.022,1.111,0.947,1.069,1.07,0.894,1.076,1.005,1.06,1.071,1.045,1.226,0.932,1.179,0.834,0.924,0.817,0.927,0.896,0.919,1.03,1.0,1.017,0.963,0.94,0.984,1.056,1.024,0.94,1.004,0.981,1.188,1.009,1.066,0.919,0.827,0.984 +NM_031892,0.24,1.542,0.464,0.748,0.281,1.698,0.866,0.171,0.294,0.292,2.383,0.249,0.286,0.222,1.009,1.709,0.301,0.526,0.262,1.381,0.274,0.264,1.577,0.32,0.584,0.258,0.465,0.301,0.66,2.028,0.267,1.835,1.955,1.535,0.233,1.665,1.497,0.287,2.494,1.154,0.349,1.284,1.073,1.273,0.335,1.534,0.64,0.233,1.671,0.257,1.605,1.766,0.474,1.432 +NM_031894,1.11,1.088,1.048,0.961,0.954,0.967,1.029,0.933,0.972,1.024,0.919,1.081,0.968,1.158,1.005,0.934,0.973,0.942,0.979,1.068,0.827,1.063,0.874,1.034,0.811,1.083,0.879,0.856,1.22,0.935,0.882,1.002,1.003,1.047,1.124,1.046,1.059,1.008,1.011,1.073,0.888,0.959,0.993,1.031,0.968,0.92,1.013,1.101,0.976,0.979,0.886,0.993,1.128,0.966 +NM_031895,0.976,0.946,1.012,0.89,0.966,0.98,0.981,1.108,0.868,0.963,1.012,1.027,1.022,1.005,1.015,1.147,0.917,1.018,0.901,1.041,0.982,0.873,0.813,1.033,1.036,1.116,1.096,1.086,1.081,0.955,1.019,1.028,1.055,0.92,1.193,0.987,1.031,1.018,1.117,0.924,0.999,0.86,0.985,1.089,1.054,0.954,0.872,1.046,0.933,0.962,0.868,1.06,1.046,1.179 +NM_031896,1.122,0.964,1.012,1.084,1.053,1.171,0.887,0.941,0.968,0.901,1.274,1.171,1.1,0.93,0.687,1.065,0.985,0.995,0.945,1.028,1.226,0.889,0.92,0.968,0.996,0.916,1.093,1.149,0.949,0.935,1.082,1.212,1.019,0.902,1.031,0.995,1.045,1.08,1.025,1.099,0.949,0.942,1.014,0.971,1.179,0.893,0.986,1.05,1.046,1.096,1.024,1.065,0.997,1.043 +NM_031897,0.888,1.014,1.096,0.829,1.023,1.036,0.941,0.927,0.956,0.856,0.994,1.14,0.857,0.966,1.046,0.81,1.073,0.833,1.004,0.962,1.031,1.062,0.959,0.977,0.974,0.936,1.098,0.953,0.966,1.068,0.961,2.85,1.014,1.099,0.935,0.938,0.846,0.978,1.107,1.112,1.001,0.913,1.139,1.135,0.956,0.816,0.949,1.006,0.976,1.035,1.071,0.999,0.983,1.769 +NM_031898,1.013,1.101,0.958,1.027,1.075,0.954,0.956,0.893,0.965,0.98,1.032,1.028,0.91,0.941,1.051,1.279,1.004,0.981,1.003,1.013,1.0,0.88,0.998,0.973,1.059,1.035,0.911,1.19,1.008,1.087,1.06,1.051,1.115,1.064,1.086,0.965,1.144,0.826,1.028,1.118,0.822,1.022,0.906,0.93,0.889,0.962,1.056,1.0,1.013,0.987,0.919,1.192,1.117,0.922 +NM_031899,0.883,0.865,1.037,1.04,0.935,1.227,0.792,0.728,1.209,0.807,1.151,0.78,0.801,0.669,1.111,1.538,1.132,0.95,1.102,1.084,0.649,0.884,1.312,0.906,0.737,1.032,0.931,0.89,0.729,1.498,0.959,1.148,1.153,1.505,0.949,0.946,1.134,0.712,1.389,0.793,0.976,1.287,0.967,0.975,0.99,1.138,0.834,0.912,1.162,0.919,1.058,0.816,1.007,1.894 +NM_031901,0.428,1.035,1.084,0.393,0.909,1.576,0.406,0.979,1.271,1.017,0.741,1.369,0.581,0.451,0.95,2.094,0.715,1.034,1.051,1.026,0.365,1.012,1.276,1.391,0.345,0.699,1.173,0.899,0.364,1.072,1.123,1.196,2.597,1.486,0.122,0.503,0.828,1.248,1.243,0.743,1.101,1.082,0.462,0.981,0.866,0.835,0.857,0.812,0.997,0.441,0.986,0.681,0.695,2.154 +NM_031902,0.546,0.914,1.133,0.685,0.977,1.077,0.654,0.532,1.169,0.948,1.044,0.94,0.604,0.582,0.833,1.577,0.763,0.895,1.476,0.938,0.668,0.684,1.41,1.166,0.55,0.79,1.402,0.88,0.38,1.003,0.879,1.416,2.566,1.092,0.325,1.565,0.976,0.81,1.288,1.062,1.115,0.982,0.766,1.892,1.015,1.002,1.252,0.728,1.209,0.691,0.951,0.876,1.059,2.0 +NM_031903,0.663,1.037,1.028,0.858,0.912,1.384,0.889,0.835,1.102,0.902,1.027,1.008,0.84,0.72,1.048,2.061,0.993,0.96,0.894,1.033,0.557,1.012,1.326,1.255,0.693,0.689,1.53,0.853,0.545,1.174,0.995,1.472,2.614,1.189,0.597,0.81,1.157,0.945,1.219,0.747,1.138,1.065,0.741,1.032,0.87,1.054,1.258,0.752,1.209,0.767,1.068,0.88,0.727,2.239 +NM_031904,0.678,0.833,1.894,0.59,1.065,1.023,0.615,0.502,1.536,1.46,0.872,0.715,0.554,0.7,0.809,0.933,1.462,1.035,0.993,0.995,0.695,0.723,1.007,1.03,0.336,0.81,1.856,0.912,0.496,1.092,1.182,1.819,1.034,0.844,0.823,1.344,0.897,1.019,1.005,0.992,1.799,0.97,0.957,1.269,1.415,0.862,1.809,0.962,0.746,1.144,1.1,0.918,0.858,1.553 +NM_031905,0.758,1.005,1.178,0.727,0.93,1.189,0.735,0.717,1.191,0.933,1.187,1.013,0.829,0.778,1.014,1.388,0.905,0.892,1.148,0.83,0.744,0.838,1.535,1.285,0.812,0.828,1.244,0.903,0.616,1.785,0.936,1.68,1.612,1.487,0.345,0.7,1.184,1.122,0.982,0.843,1.105,1.08,0.905,1.197,0.995,0.854,0.95,0.715,0.83,0.76,1.013,1.313,0.871,1.537 +NM_031907,0.862,0.901,0.881,0.944,1.075,0.955,0.998,0.882,0.932,1.007,1.164,0.95,0.953,0.977,0.937,0.926,0.941,0.761,1.03,0.898,0.928,0.888,1.052,1.132,0.937,1.067,0.986,0.927,0.794,0.911,0.957,1.175,0.937,1.101,0.94,0.95,1.113,0.978,1.154,1.18,1.064,1.057,0.778,1.13,1.006,0.988,1.037,1.111,0.988,1.035,1.018,0.939,1.126,1.159 +NM_031908,1.029,0.887,0.953,0.935,1.21,1.012,1.116,0.882,1.004,1.147,0.914,0.98,1.008,0.901,1.01,0.957,1.037,0.902,1.123,0.912,0.978,1.101,0.988,0.917,1.103,1.178,1.035,1.052,1.261,0.959,1.164,1.128,0.924,1.135,0.895,1.013,0.963,1.097,1.01,0.839,1.068,1.037,0.952,0.986,0.966,1.034,0.978,1.105,1.011,1.099,1.104,0.776,0.883,0.879 +NM_031909,1.007,1.014,1.059,1.03,0.962,1.054,1.112,0.969,0.987,0.948,1.049,1.163,0.985,1.108,1.288,0.919,1.015,0.862,0.897,0.965,0.979,0.967,1.008,0.948,1.037,0.885,0.962,0.994,0.822,0.972,1.016,1.433,1.035,1.104,1.061,0.898,1.007,1.07,1.104,0.978,1.153,1.19,0.829,0.952,0.89,0.959,1.216,0.918,0.971,0.986,0.931,1.044,0.873,1.019 +NM_031910,1.052,1.281,0.892,1.033,1.064,0.97,1.083,1.032,1.027,0.988,0.92,1.006,1.193,1.303,0.924,0.968,1.09,0.861,1.049,0.938,0.861,0.994,0.96,0.906,1.095,1.018,0.927,1.042,0.78,1.08,1.072,1.135,0.993,0.947,0.983,0.948,1.069,1.147,1.123,1.181,0.896,0.969,1.167,1.04,1.085,0.996,1.111,1.034,0.882,0.974,1.058,0.89,1.092,0.962 +NM_031911,1.016,1.206,0.801,1.086,0.888,1.027,0.888,0.82,0.94,1.043,1.078,0.993,1.007,1.081,0.953,0.955,1.092,0.981,1.101,1.064,0.987,1.058,1.017,0.923,0.98,1.119,0.899,1.127,1.159,1.129,0.854,1.502,1.072,1.326,0.968,0.892,0.987,1.023,1.07,1.113,0.892,1.087,1.045,0.982,0.882,0.946,0.864,0.852,0.81,1.226,1.103,0.968,0.959,0.999 +NM_031912,1.106,0.989,0.988,1.002,1.079,1.036,0.872,0.961,1.018,1.081,0.867,1.032,0.999,1.102,1.058,1.08,1.052,0.893,1.154,0.956,0.948,1.127,0.972,1.009,1.078,0.986,1.088,1.094,2.658,1.009,1.078,0.962,0.984,0.99,0.851,0.953,1.158,1.282,0.97,0.945,1.005,1.04,2.784,0.92,1.112,1.103,0.88,1.05,0.872,1.057,1.029,0.918,0.84,0.983 +NM_031914,1.003,1.039,0.95,1.081,0.933,1.01,0.984,0.854,1.185,0.957,1.135,1.038,1.084,1.022,0.898,1.08,1.131,1.064,1.008,1.01,0.994,1.047,0.983,1.15,0.855,0.966,1.007,0.974,0.781,0.927,1.022,0.937,1.099,1.072,1.026,0.946,0.973,0.916,0.999,1.004,0.922,1.012,0.865,0.973,0.978,1.095,1.03,1.029,0.899,0.959,0.973,0.933,1.192,1.09 +NM_031915,0.769,1.06,1.156,0.819,0.699,1.2,0.761,0.77,1.111,0.778,0.953,1.047,0.791,0.933,0.914,1.311,0.836,0.754,1.179,1.256,0.59,0.895,1.178,0.959,0.921,0.758,1.186,0.952,0.575,1.458,0.925,1.34,1.154,1.533,0.53,0.962,0.908,1.147,1.077,0.794,1.076,1.039,0.711,1.237,0.766,0.923,1.078,0.762,0.795,0.822,1.01,0.933,0.782,2.033 +NM_031916,0.918,1.017,1.056,1.119,0.965,0.933,0.876,1.085,0.868,0.976,0.92,1.002,1.058,1.055,0.879,1.008,0.991,1.04,1.007,0.971,1.062,1.063,1.001,0.96,0.976,1.015,1.086,1.051,0.638,1.055,0.989,1.101,1.246,0.936,1.112,1.063,1.034,1.064,1.019,1.162,1.034,0.984,1.0,1.022,1.082,0.952,0.884,0.916,0.893,0.998,1.344,0.85,0.918,1.0 +NM_031917,1.088,1.021,0.857,1.001,0.896,1.128,1.016,1.043,0.997,0.845,1.045,1.028,0.933,1.086,1.044,1.009,0.912,0.969,0.989,1.131,0.919,0.984,0.9,0.903,1.155,0.849,0.879,0.915,0.858,1.328,0.873,0.899,0.997,1.25,0.946,0.978,1.058,0.851,1.11,0.966,0.895,1.015,1.018,0.97,0.913,0.973,0.968,1.015,0.953,0.833,1.07,0.935,1.191,1.057 +NM_031918,0.861,1.04,0.871,0.962,0.973,1.236,0.966,0.696,0.758,0.933,1.144,0.98,0.932,0.94,0.955,1.343,1.041,0.853,1.24,0.994,0.919,1.05,1.238,0.998,0.861,0.937,1.022,0.777,1.193,0.859,0.88,0.979,1.693,1.029,0.851,0.955,0.891,1.171,1.675,1.322,0.804,1.054,1.236,1.549,0.988,0.982,0.933,1.076,1.045,0.987,0.906,0.82,1.23,1.22 +NM_031919,1.125,1.257,0.933,1.084,1.178,1.221,1.088,0.933,1.085,1.032,0.892,0.996,1.077,0.899,1.3,1.194,0.852,0.982,1.275,0.989,0.787,0.842,0.84,1.014,1.037,0.798,0.82,0.857,0.816,1.102,1.059,1.021,1.058,1.012,0.86,1.318,1.084,0.987,1.006,0.967,0.962,1.034,0.866,1.137,1.049,1.072,1.02,1.028,0.963,1.212,0.9,0.964,1.06,0.942 +NM_031920,2.061,1.9300000000000002,1.814,1.909,1.7149999999999999,2.008,1.8050000000000002,1.772,1.9,1.911,1.842,1.916,1.771,2.105,2.293,1.834,1.916,1.871,1.971,1.9689999999999999,1.994,1.799,1.815,2.113,2.057,1.855,2.096,1.9529999999999998,1.8650000000000002,2.195,1.776,2.2359999999999998,1.725,2.0789999999999997,1.8980000000000001,2.777,2.1020000000000003,1.905,2.333,2.029,2.077,1.976,2.036,1.9020000000000001,2.0220000000000002,2.269,2.0629999999999997,2.085,2.1020000000000003,2.0949999999999998,2.02,1.858,2.057,1.959 +NM_031921,0.946,0.963,1.028,1.045,0.863,0.92,1.061,0.752,1.009,0.927,0.985,0.941,0.884,0.794,0.896,1.077,0.988,1.043,0.885,1.082,0.827,0.738,0.961,0.969,0.811,1.007,0.927,1.025,1.017,0.938,0.925,0.996,1.498,1.005,0.897,1.176,0.967,0.966,1.312,1.005,1.062,1.078,0.845,1.035,0.872,0.97,1.13,1.153,1.012,0.92,0.961,1.221,0.879,1.551 +NM_031922,1.148,0.713,1.633,0.744,1.109,0.841,0.589,0.77,2.21,1.169,0.913,0.837,0.749,1.001,1.342,1.117,1.239,0.873,1.884,0.798,0.817,1.245,1.108,1.267,0.619,1.052,1.267,1.195,0.535,0.912,1.254,0.71,1.688,1.061,1.385,0.657,0.84,1.128,0.91,0.747,1.428,0.824,0.59,1.109,1.046,0.984,1.054,1.033,0.921,1.108,0.957,0.718,1.057,0.998 +NM_031924,0.861,0.732,1.328,0.687,1.662,1.264,0.56,1.315,1.385,1.578,0.941,0.882,0.761,0.853,1.255,1.236,1.116,0.84,1.805,1.043,0.809,1.339,0.929,1.694,0.667,1.15,1.354,1.498,0.581,0.868,1.432,0.693,1.325,0.911,1.059,0.778,0.817,1.56,0.895,0.817,1.43,0.93,0.711,0.726,1.153,0.987,1.278,1.305,0.846,0.913,0.998,0.789,1.205,1.011 +NM_031925,0.64,0.814,0.745,0.846,0.881,1.813,0.697,1.077,1.015,0.654,1.509,0.72,1.239,0.52,1.079,3.22,0.786,1.277,1.032,1.521,0.465,1.545,1.438,1.11,0.835,0.916,0.782,0.787,0.778,1.644,0.984,0.996,0.837,1.765,1.243,0.459,1.51,1.129,2.184,0.806,0.916,1.521,0.856,1.157,0.762,1.292,1.268,1.712,1.264,0.68,1.093,0.806,0.481,0.81 +NM_031926,0.991,1.214,1.083,0.969,1.036,1.086,0.959,1.076,1.207,1.1,1.073,1.02,1.022,0.828,0.97,0.92,1.077,1.116,1.192,0.874,1.026,0.964,0.961,1.064,1.004,1.173,0.847,1.096,0.864,0.952,0.952,0.875,0.972,0.778,0.993,0.946,0.985,1.085,0.925,0.903,1.013,0.982,0.958,1.179,0.918,1.02,1.143,1.115,0.793,0.97,0.933,1.135,1.024,0.939 +NM_031933,1.062,0.953,1.021,1.064,0.976,0.94,1.082,1.129,1.082,1.081,0.885,0.916,1.032,1.037,0.886,1.078,1.054,0.991,1.13,1.144,1.043,0.994,0.982,0.996,1.148,0.99,1.099,0.991,0.959,0.96,0.942,0.964,0.886,0.845,1.086,0.952,1.074,0.864,1.079,1.084,1.108,1.032,0.972,1.0,0.895,1.091,0.962,1.038,1.043,1.0,1.001,0.967,1.164,0.926 +NM_031934,0.659,1.418,1.154,0.659,0.779,1.869,0.59,0.542,0.985,1.119,1.024,0.994,0.729,0.613,0.862,0.691,0.675,0.831,1.238,0.411,0.624,0.838,0.577,1.178,0.424,0.752,1.652,0.724,0.317,3.23,0.945,3.603,0.955,1.009,0.276,0.453,1.695,1.078,3.221,1.615,1.102,1.607,0.346,3.307,1.121,0.614,1.031,0.759,0.535,0.743,0.768,1.193,1.349,0.584 +NM_031935,1.001,0.893,1.014,1.029,0.96,0.996,1.17,1.019,0.987,0.848,0.957,0.977,0.983,0.953,0.857,0.968,0.941,1.077,1.033,1.08,1.039,1.043,0.927,1.062,0.987,1.192,0.999,1.075,0.571,1.065,1.065,1.082,1.068,0.929,1.033,0.97,0.984,1.009,0.925,1.122,0.889,1.02,0.888,1.075,0.91,1.019,1.013,0.959,0.978,0.955,1.018,0.94,0.948,0.952 +NM_031936,0.957,0.994,1.036,1.049,0.968,0.911,0.912,1.007,1.005,1.053,0.976,1.081,0.951,1.051,0.864,1.085,1.052,1.001,1.13,1.03,1.011,1.105,1.214,1.11,1.063,1.037,0.841,0.996,0.973,0.947,0.969,1.029,1.177,0.911,1.114,1.002,0.95,1.054,1.263,0.957,0.943,0.988,0.879,1.266,1.072,1.024,1.132,0.992,0.93,0.989,1.11,0.969,1.147,1.051 +NM_031937,1.306,0.975,1.297,0.996,0.99,1.077,0.864,0.974,1.198,1.002,0.877,1.038,1.069,1.151,1.098,1.061,1.206,1.19,1.348,0.708,1.138,1.524,0.891,1.276,0.84,1.577,1.184,1.06,1.151,1.192,1.067,0.919,0.685,1.138,0.72,0.62,0.862,1.436,1.351,0.893,1.177,0.896,0.742,0.902,1.138,0.868,0.983,1.842,0.867,1.381,0.85,0.787,1.122,0.643 +NM_031938,1.346,1.044,1.408,1.101,1.39,0.962,0.837,1.408,2.047,0.921,0.769,0.985,1.079,1.223,1.051,1.019,0.985,1.166,1.1,1.011,1.307,1.314,0.892,1.338,0.865,1.069,1.043,1.138,1.002,0.773,1.79,0.929,1.049,0.878,1.557,0.926,0.998,1.367,0.996,1.106,1.46,1.03,1.056,0.843,1.358,0.988,1.255,0.853,1.073,1.228,0.998,1.121,1.384,0.875 +NM_031939,1.032,1.065,0.976,1.016,0.995,0.976,0.937,0.943,0.925,0.94,1.06,1.064,0.962,0.997,0.844,0.878,1.179,1.057,0.781,0.856,0.887,1.036,0.952,1.094,1.009,1.018,1.104,1.092,0.87,1.121,0.874,1.082,0.97,1.03,0.956,0.858,0.988,1.079,1.114,1.043,1.079,0.939,1.09,1.001,1.133,1.031,1.044,1.008,1.168,0.996,0.971,0.905,0.957,1.124 +NM_031940,1.05,0.954,1.04,1.014,0.996,1.047,0.943,1.004,1.066,0.911,1.029,0.961,0.848,1.016,0.958,1.007,0.921,0.999,1.155,0.986,0.948,0.868,1.01,0.905,0.769,0.957,1.045,1.047,1.046,1.094,1.144,1.005,0.973,0.931,1.533,0.822,1.083,0.937,1.232,0.786,1.193,0.906,1.188,1.004,0.895,1.027,1.133,1.0,1.167,1.002,0.966,0.737,1.205,1.451 +NM_031941,1.099,1.072,1.109,0.939,1.017,1.049,1.033,0.99,1.336,1.079,1.003,0.979,0.909,0.989,0.854,0.856,0.908,1.024,1.076,1.015,0.937,0.896,0.971,1.043,0.967,0.996,1.032,1.072,1.026,1.074,1.004,1.103,1.03,1.026,1.0,1.018,0.844,0.935,1.014,0.941,1.115,1.132,0.8,1.186,1.003,0.907,1.044,1.084,0.966,1.037,0.839,1.014,0.934,0.964 +NM_031942,1.041,0.991,1.056,1.028,1.037,1.129,1.043,1.051,1.015,1.143,0.957,0.859,1.009,1.029,0.961,1.024,0.914,1.203,1.012,1.151,1.104,1.088,1.152,1.038,0.994,1.154,1.009,1.161,0.79,1.091,0.907,1.032,1.126,0.941,0.9,1.146,1.094,1.104,0.994,0.961,0.875,0.916,0.843,1.005,0.958,0.959,0.877,1.049,0.964,1.128,0.95,0.968,1.026,1.153 +NM_031943,0.661,0.997,1.969,0.627,1.118,1.584,0.967,1.086,1.153,0.974,0.786,1.255,1.223,0.591,1.223,1.885,1.533,0.975,0.564,1.384,0.485,1.527,1.305,1.898,0.61,0.509,2.315,1.015,0.675,1.432,1.522,1.471,1.539,1.204,0.463,0.53,0.937,1.821,1.428,0.816,1.171,1.252,0.759,0.389,1.365,0.875,1.205,0.843,1.45,0.935,1.439,0.763,0.512,1.532 +NM_031944,0.913,1.162,1.082,0.824,1.042,1.119,0.938,0.981,0.865,1.032,1.08,0.97,1.159,0.965,0.999,1.058,1.036,1.058,0.749,1.074,0.958,0.908,1.053,0.898,1.07,1.045,0.92,1.081,0.99,1.048,0.911,1.069,0.92,1.081,1.204,1.165,0.96,1.001,1.144,0.935,1.029,1.016,1.217,0.818,0.978,0.978,0.934,1.033,1.019,0.976,0.973,1.051,0.895,1.014 +NM_031945,0.938,1.652,2.089,1.004,1.296,0.875,0.783,1.097,1.099,1.211,0.828,0.987,0.95,1.274,1.174,0.869,2.082,1.198,1.129,0.914,0.904,0.879,0.911,1.026,0.883,0.999,2.863,0.966,0.798,1.16,1.488,1.693,1.858,0.876,1.963,0.82,0.752,1.395,1.105,0.965,1.598,0.949,0.743,1.069,1.486,0.889,1.835,1.306,0.927,1.554,0.985,1.429,1.446,1.603 +NM_031946,1.365,0.849,1.238,0.787,1.16,0.994,0.603,0.702,1.317,1.282,0.605,0.92,1.001,0.644,1.002,1.058,1.162,0.841,1.579,0.874,0.999,1.552,0.867,1.309,0.72,1.208,1.33,0.954,0.628,1.07,1.067,1.3,1.374,0.813,0.54,0.704,0.774,1.308,1.121,0.996,1.047,1.022,0.783,1.076,1.159,0.622,0.995,1.422,0.758,1.098,0.783,0.766,1.008,1.539 +NM_031947,0.984,0.915,0.963,1.023,0.914,1.07,1.029,0.961,1.001,0.936,0.973,0.98,1.186,0.934,1.069,0.979,0.921,1.029,0.989,0.956,1.148,0.948,0.947,0.987,0.861,1.056,0.954,1.036,1.074,1.018,0.94,1.02,1.008,0.999,1.082,1.068,0.973,1.149,1.012,1.072,0.954,1.006,1.002,0.888,1.099,0.955,1.12,1.016,0.848,1.062,1.014,0.999,1.023,0.922 +NM_031948,10.65,0.175,6.383,2.432,6.019,0.222,0.183,9.667,7.889,3.657,0.186,2.55,9.907,3.148,4.283,1.831,8.727,2.285,10.03,0.296,4.931,5.222,0.185,4.495,0.215,10.6,5.958,4.847,0.194,0.228,8.2,0.218,6.124,0.194,20.01,0.199,0.237,4.592,0.306,0.222,7.228,0.227,0.2,0.215,7.198,0.186,2.469,13.2,0.613,9.087,0.736,1.071,7.309,0.685 +NM_031949,0.987,1.042,1.005,0.873,1.072,1.031,0.95,1.002,1.08,1.042,0.923,1.097,0.93,1.031,1.23,0.914,1.004,0.949,0.997,1.107,1.01,0.991,0.927,1.071,1.08,0.953,1.291,1.044,0.963,0.908,1.033,0.916,1.02,0.814,1.187,1.117,1.037,0.873,0.933,1.08,1.018,0.984,0.775,1.29,0.894,0.83,1.033,1.001,1.046,0.981,0.879,1.124,1.216,0.861 +NM_031950,0.908,1.091,0.955,0.943,0.843,1.523,0.913,1.039,0.865,0.994,1.311,0.857,0.918,0.86,0.924,0.91,0.933,0.957,1.16,1.074,1.007,0.986,1.522,0.894,0.966,0.865,1.01,1.523,1.129,2.603,0.877,1.13,1.039,1.796,0.887,0.846,1.234,0.94,1.035,0.909,0.979,1.321,1.083,0.985,0.953,0.832,0.97,0.999,0.886,0.931,1.127,1.09,1.018,1.047 +NM_031953,0.909,0.935,1.153,0.824,0.89,0.888,0.949,0.928,0.983,0.892,1.002,1.021,0.932,0.902,1.171,0.984,0.926,0.934,1.026,1.136,0.964,0.831,1.018,0.96,1.006,0.758,1.189,1.063,1.056,0.998,1.014,1.327,1.16,1.066,1.104,0.912,0.952,1.042,0.871,1.215,1.167,0.989,0.922,0.917,0.978,0.951,1.085,0.778,0.883,0.934,0.985,0.861,1.009,1.338 +NM_031954,1.08,0.776,1.518,0.795,1.058,0.898,0.693,0.744,1.024,1.176,0.903,0.905,0.891,0.876,1.0,1.197,1.165,1.061,1.323,0.786,0.769,1.0,1.103,1.082,0.657,1.071,1.18,1.088,0.77,1.094,1.096,2.003,0.866,1.197,0.57,0.814,0.859,1.355,0.952,1.054,1.225,1.036,0.886,0.785,1.152,0.838,0.95,1.034,0.725,1.17,0.967,1.054,1.342,1.064 +NM_031955,1.012,1.043,1.132,1.137,0.936,1.068,1.265,0.997,1.073,0.903,1.019,0.931,0.95,0.932,1.251,1.181,0.938,1.049,0.984,1.0,0.953,1.021,0.899,1.178,1.049,0.964,0.845,1.07,0.905,0.826,1.0,0.923,0.972,1.101,1.117,1.216,0.9,0.954,0.982,0.943,0.908,0.887,1.16,1.178,0.973,0.98,1.119,1.063,1.134,1.235,0.991,0.995,0.78,0.985 +NM_031956,1.065,0.816,0.967,0.935,1.038,1.067,0.878,1.16,1.121,0.828,1.189,1.025,0.986,0.869,1.092,0.912,0.953,1.048,1.153,1.006,0.932,0.912,1.109,1.079,1.071,1.013,0.996,0.987,1.0,1.084,1.144,0.937,0.923,0.998,1.017,0.958,0.913,0.983,1.062,0.966,0.944,0.89,1.054,1.024,1.067,0.946,1.003,1.035,1.02,1.083,0.901,0.986,0.912,0.955 +NM_031957,1.187,0.905,0.875,0.983,0.91,1.033,0.787,0.965,0.972,1.154,0.951,1.026,0.963,1.211,1.034,1.075,1.126,1.056,1.179,0.81,0.995,1.177,1.045,0.936,0.923,1.146,0.875,1.038,1.1,1.068,1.089,1.032,0.947,0.877,0.869,0.963,0.922,1.183,0.988,0.797,0.999,1.007,0.89,1.13,0.903,0.732,0.945,0.906,0.952,1.115,0.852,0.992,0.988,1.035 +NM_031958,1.02,0.976,0.942,0.974,1.185,1.081,1.208,0.996,0.942,0.851,1.082,0.959,1.037,1.202,0.899,1.075,1.067,1.014,1.071,1.006,1.028,0.894,0.862,0.98,0.957,0.935,0.957,1.023,1.001,1.079,0.937,0.943,1.942,0.91,0.994,0.871,0.887,1.146,0.849,1.009,0.927,0.981,0.873,1.051,1.031,1.167,0.876,1.005,0.973,0.872,0.989,0.993,0.942,0.955 +NM_031959,2.709,0.878,0.953,1.278,8.306,0.956,0.868,8.486,1.81,0.903,0.847,2.659,1.576,1.651,11.99,1.522,1.017,1.346,1.888,0.866,0.815,1.894,0.957,1.017,1.116,1.327,1.0,7.515,1.118,0.978,9.667,0.983,1.057,1.034,27.73,0.849,0.979,16.59,1.001,1.032,1.797,0.934,1.263,0.883,1.107,1.029,1.739,7.217,1.079,1.553,1.162,1.019,1.074,0.943 +NM_031961,0.887,0.913,1.037,1.104,1.257,0.922,0.998,1.019,0.949,1.118,1.024,1.034,0.944,0.934,1.005,2.257,1.041,1.096,1.205,1.004,1.026,1.037,0.944,0.933,0.994,1.035,1.451,0.914,0.799,0.986,1.069,0.752,1.592,0.961,0.978,1.008,0.882,1.014,0.884,1.029,1.049,1.062,0.824,1.131,1.239,1.065,1.389,1.057,0.895,2.172,1.195,1.003,0.995,1.043 +NM_031962,0.984,0.976,1.045,0.999,1.007,1.085,1.023,0.967,0.985,1.044,0.855,1.009,0.778,0.767,0.95,1.343,1.094,0.858,1.05,0.931,0.945,1.05,1.138,0.949,1.083,1.033,1.191,1.189,0.865,1.1,0.87,0.902,1.485,1.186,0.957,1.082,0.944,0.898,1.02,0.988,1.001,0.876,0.695,1.181,0.968,0.93,1.115,0.94,0.965,1.133,0.958,0.903,1.063,1.016 +NM_031964,1.15,0.944,1.028,1.138,0.896,0.979,1.006,1.181,0.942,1.067,1.01,1.054,0.992,1.021,1.199,0.974,0.945,0.862,1.011,1.022,0.972,0.939,0.852,1.036,1.0,1.064,1.057,0.967,1.492,0.918,0.934,1.129,1.027,0.857,0.956,1.085,1.009,0.944,1.097,1.023,0.946,0.964,1.042,0.921,1.028,1.001,1.055,0.842,0.936,0.996,0.977,1.049,0.973,0.863 +NM_031966,0.512,0.742,1.372,0.774,0.962,1.186,0.757,0.453,1.095,1.187,0.803,1.067,0.676,0.566,1.005,1.955,1.038,1.145,1.32,0.697,0.708,0.919,2.151,1.725,0.379,0.414,2.65,0.762,0.492,1.009,0.921,0.682,3.204,0.768,0.214,1.397,1.212,0.987,1.812,0.668,1.196,0.553,0.689,0.859,1.237,0.967,1.353,0.625,1.852,0.632,1.648,1.085,0.814,2.448 +NM_031988,0.944,0.812,1.091,0.954,0.906,0.948,1.627,0.989,1.225,0.947,1.05,1.072,1.056,1.05,0.843,0.999,0.963,1.049,0.953,0.868,1.09,1.022,0.984,1.034,0.977,0.989,1.063,0.909,0.904,1.004,0.967,0.926,0.987,1.071,1.125,1.058,1.113,0.956,0.934,1.165,0.926,1.204,0.938,0.925,1.051,0.963,1.04,0.959,1.129,0.851,1.132,0.932,0.838,0.891 +NM_031989,1.001,1.034,1.459,0.693,1.066,0.909,0.391,0.469,1.184,1.191,0.718,0.759,0.934,0.742,0.889,1.049,1.238,0.914,1.418,0.552,0.669,1.109,0.999,1.514,0.703,1.098,1.111,0.861,0.339,0.946,0.859,1.334,1.414,1.223,0.489,0.776,1.044,1.631,1.662,0.892,1.351,1.273,0.587,1.328,1.218,0.77,1.136,1.015,0.802,1.174,0.8,0.774,0.925,1.19 +NM_031992,0.767,0.697,1.169,0.565,1.182,1.228,0.465,0.604,1.475,1.026,0.79,0.589,0.706,0.638,1.131,1.485,1.288,1.062,1.4,0.508,0.634,0.723,1.207,1.211,0.555,0.853,1.512,0.923,0.379,1.181,1.209,0.946,2.173,1.264,0.922,0.463,0.858,1.244,1.458,0.646,1.357,1.035,0.534,1.054,1.131,0.746,1.245,0.941,1.047,1.025,0.801,0.8,0.834,1.189 +NM_031993,2.075,2.064,1.935,1.9969999999999999,1.8130000000000002,2.0919999999999996,1.923,1.8820000000000001,1.9899999999999998,2.013,1.875,2.091,2.125,2.202,2.374,1.755,1.975,1.815,2.138,2.001,1.834,1.9220000000000002,2.182,2.1399999999999997,1.854,2.0839999999999996,2.1950000000000003,1.698,2.089,2.065,2.068,1.854,2.1769999999999996,1.944,2.048,2.04,2.205,1.955,1.944,1.81,2.049,2.018,2.434,2.059,2.149,2.0469999999999997,1.936,2.117,1.816,2.17,2.01,2.045,2.364,2.102 +NM_031994,1.908,2.1879999999999997,1.958,2.1879999999999997,1.9289999999999998,2.059,1.76,1.924,2.157,2.06,1.7469999999999999,2.07,1.966,1.996,2.085,2.183,2.024,1.9949999999999999,2.282,1.928,2.003,1.903,2.189,2.016,1.995,2.1550000000000002,2.061,2.125,1.576,2.1310000000000002,1.962,2.1100000000000003,1.9860000000000002,2.05,2.26,2.091,1.9809999999999999,1.76,1.9740000000000002,2.2,1.65,2.114,1.899,2.104,1.983,1.791,2.009,2.13,1.9699999999999998,1.9989999999999999,2.1310000000000002,2.0060000000000002,1.966,1.976 +NM_032009,1.011,1.044,0.996,1.067,0.992,1.16,0.824,0.955,1.061,0.938,1.056,1.011,0.978,0.906,1.28,0.993,0.951,1.044,0.948,0.859,0.962,0.851,1.127,0.817,1.02,1.013,1.066,1.043,1.078,0.945,1.03,1.011,1.006,1.098,0.852,1.0,0.988,0.933,1.108,0.982,0.919,0.914,0.909,0.934,1.153,1.085,0.992,1.012,0.901,1.021,1.024,1.138,1.119,0.936 +NM_032010,1.8409999999999997,1.964,1.898,1.694,1.8969999999999998,1.898,1.889,2.207,1.858,1.73,2.505,1.9729999999999999,1.859,1.883,2.129,1.9700000000000002,1.8719999999999999,1.8969999999999998,2.01,1.8219999999999998,2.058,1.846,2.247,1.967,2.02,2.037,1.8319999999999999,2.04,2.029,2.359,1.915,2.409,1.9689999999999999,2.558,1.842,1.885,2.1319999999999997,1.971,2.043,2.45,2.2969999999999997,3.1,1.8599999999999999,2.4770000000000003,1.755,2.042,1.922,1.938,1.912,1.698,2.177,2.1670000000000003,1.9789999999999999,1.93 +NM_032011,2.358,2.047,1.9049999999999998,1.826,2.258,1.944,1.98,1.723,1.857,2.0,2.038,2.17,1.9660000000000002,2.039,2.0949999999999998,1.951,1.9,1.881,2.042,2.032,1.919,2.234,1.87,1.9460000000000002,2.168,2.043,1.904,2.089,1.939,1.9140000000000001,2.001,2.145,1.88,2.019,2.094,1.901,1.858,2.2270000000000003,1.6949999999999998,2.226,1.758,1.927,2.249,1.7570000000000001,2.3600000000000003,2.036,2.087,1.97,1.966,2.121,2.178,2.1849999999999996,2.102,2.047 +NM_032012,0.683,1.442,0.928,0.769,0.651,1.077,0.707,0.595,0.809,0.495,1.278,0.578,0.666,0.613,0.84,1.418,0.647,0.765,0.795,1.654,0.569,0.714,1.063,0.804,1.003,0.599,0.956,0.785,0.481,1.584,0.791,2.719,2.367,1.891,0.334,0.548,1.086,0.796,1.631,1.105,1.006,1.574,0.587,0.96,0.779,1.356,0.593,0.628,0.878,0.812,1.051,0.937,0.638,3.029 +NM_032014,0.664,0.586,0.919,0.586,1.003,0.854,0.428,0.599,1.189,1.034,0.945,1.145,0.803,0.672,0.822,1.577,1.054,0.945,1.948,0.735,0.783,1.012,1.445,1.223,0.401,1.121,1.205,0.999,0.346,1.031,0.936,1.2,2.273,1.18,0.62,1.353,0.858,1.012,1.12,0.519,1.221,0.916,0.531,1.577,1.021,0.748,1.221,0.96,1.139,0.789,0.7,0.992,1.094,1.701 +NM_032015,0.858,1.093,0.992,0.964,0.787,1.098,0.713,0.666,0.76,0.827,0.809,0.815,0.847,0.726,0.808,1.121,0.918,0.922,1.352,0.903,0.963,1.018,1.121,1.022,0.972,0.994,1.323,0.651,0.656,1.425,0.756,1.417,1.458,1.163,0.359,1.462,1.019,0.92,1.863,1.272,0.936,1.051,0.572,1.347,0.888,0.726,0.868,0.985,0.851,1.031,1.052,0.873,0.986,1.557 +NM_032016,0.725,1.111,1.009,0.859,0.781,1.047,0.918,0.614,0.736,0.815,1.345,0.82,0.759,0.678,0.991,1.484,0.765,0.869,0.758,1.032,0.609,0.689,1.362,0.858,0.876,0.611,0.932,0.891,0.757,1.525,0.783,1.401,2.233,1.425,0.838,1.334,1.131,0.74,1.295,1.083,0.746,1.083,0.689,1.623,0.73,1.186,1.301,0.754,0.871,0.817,1.063,1.223,1.075,1.827 +NM_032017,1.223,0.773,0.686,0.879,0.801,1.275,0.493,1.459,1.58,0.797,0.852,0.566,1.383,0.834,1.104,1.195,0.839,0.577,1.326,0.554,1.466,1.463,0.944,0.864,0.853,1.718,0.973,0.879,0.673,0.79,1.421,1.263,3.02,1.181,1.377,0.823,0.737,1.162,1.502,1.008,0.894,0.891,1.059,1.014,0.932,0.66,0.736,1.359,0.584,1.022,0.716,0.539,1.004,1.94 +NM_032018,0.921,1.052,1.083,1.058,1.061,0.951,0.994,0.873,1.006,1.097,1.143,0.867,1.039,0.789,1.081,1.052,0.813,1.091,1.177,1.149,0.867,1.03,1.127,1.27,0.942,0.935,0.927,1.03,0.728,0.956,1.079,1.054,1.816,0.905,0.963,1.195,0.875,0.913,1.011,0.859,1.0,0.873,1.042,0.966,1.01,0.993,0.934,1.005,0.762,1.03,0.977,0.908,0.879,1.254 +NM_032019,1.047,0.935,0.936,0.992,0.939,0.866,1.062,0.833,0.922,1.019,0.976,0.996,0.962,0.964,0.992,1.071,1.068,1.098,1.101,0.91,1.064,0.963,0.893,0.901,0.954,0.864,1.017,1.04,0.923,1.001,0.903,1.063,0.983,0.885,0.964,1.026,0.934,1.105,1.026,0.99,0.88,1.034,1.017,0.946,1.054,0.969,1.002,1.082,0.951,1.123,0.964,0.851,0.937,0.981 +NM_032020,0.394,1.048,0.476,0.851,0.469,1.738,0.662,0.291,0.401,0.491,1.416,0.381,0.326,0.358,0.766,2.111,0.493,0.822,0.57,0.865,0.391,0.414,1.553,0.545,0.928,0.459,0.661,0.389,0.583,1.464,0.395,1.123,1.528,1.778,0.275,0.921,1.511,0.514,2.237,1.081,0.475,1.327,0.928,2.034,0.477,1.56,1.068,0.394,1.41,0.465,1.274,0.822,0.562,1.418 +NM_032021,0.747,1.045,0.862,0.906,0.773,1.4,0.972,0.805,0.762,0.749,1.2,0.715,0.882,0.893,1.001,1.329,0.724,1.02,0.778,1.108,0.834,0.732,1.166,0.753,1.21,0.843,0.914,0.747,0.78,1.441,0.8,1.176,1.424,1.363,0.717,1.016,1.214,0.745,1.478,0.94,0.785,1.325,1.138,0.883,0.851,1.101,0.913,0.752,0.954,0.85,1.071,1.051,0.716,1.823 +NM_032023,0.957,1.18,0.97,0.995,0.978,1.06,0.834,1.038,0.909,1.062,1.072,0.966,0.902,1.041,0.857,1.152,0.985,0.976,0.928,1.127,0.961,1.015,0.914,1.0,1.013,0.942,0.979,1.014,0.854,1.112,0.964,1.069,1.038,1.111,0.934,0.962,1.046,0.92,1.07,0.998,1.07,1.122,0.974,1.076,1.13,1.056,0.999,0.937,1.039,0.834,1.11,0.989,0.994,1.028 +NM_032024,0.951,1.752,0.772,1.027,0.915,1.325,1.261,0.962,0.857,0.85,1.184,0.874,0.958,0.716,1.007,1.117,0.806,0.975,0.8,0.953,0.92,0.825,1.284,0.986,1.318,0.851,0.974,0.937,0.719,1.864,0.953,2.094,2.137,1.9,0.864,0.83,1.202,0.983,1.261,1.024,1.031,1.241,0.987,1.113,0.922,0.95,1.142,0.871,0.9,0.873,0.9,1.096,0.899,0.987 +NM_032025,0.653,1.119,0.896,0.699,0.821,1.026,0.451,0.406,1.225,1.046,1.275,0.947,0.756,0.613,0.935,1.042,0.644,0.602,1.091,1.08,0.476,0.5,1.087,1.127,0.743,0.569,1.032,0.996,0.34,1.562,0.824,1.116,2.138,1.241,0.231,1.214,0.997,0.888,1.205,0.628,1.199,1.13,0.806,1.254,0.823,1.648,0.998,0.456,1.145,0.652,0.868,0.585,1.055,1.335 +NM_032026,0.656,1.09,1.271,0.624,0.94,1.623,0.871,1.055,1.216,0.951,0.913,1.437,1.2,0.591,1.025,1.73,1.0,0.99,0.707,1.073,0.519,1.405,1.039,1.524,0.681,0.634,1.503,1.0,0.653,1.144,1.328,1.578,3.832,1.117,0.511,0.582,0.92,1.371,1.618,1.391,1.103,1.055,0.527,0.691,1.021,0.959,1.076,0.848,1.376,0.762,1.031,0.832,0.542,1.678 +NM_032027,0.751,1.264,0.946,0.845,0.902,1.072,0.825,0.742,1.181,0.841,1.221,0.81,0.721,0.763,1.062,1.329,0.914,0.724,0.957,1.123,0.658,0.691,1.184,0.926,0.877,0.783,1.04,1.0,0.5,1.15,1.048,1.872,2.783,1.517,0.714,0.789,0.849,0.796,1.25,0.817,0.962,1.105,0.916,1.532,0.936,1.109,0.893,0.73,0.844,0.829,0.878,0.911,1.122,3.087 +NM_032028,0.956,0.921,0.975,1.012,1.191,1.112,1.249,0.94,0.929,0.906,0.868,0.8,0.925,1.036,0.828,1.125,0.914,1.166,0.932,1.112,1.048,1.007,1.028,1.01,1.008,1.113,0.965,0.948,1.061,1.074,0.894,0.922,1.005,1.031,1.132,1.086,1.001,1.079,0.921,1.0,1.133,1.205,1.044,0.943,0.883,0.993,0.98,1.087,1.135,0.981,0.951,1.077,1.107,0.948 +NM_032029,0.89,0.999,0.969,0.866,1.077,1.001,0.864,1.116,0.901,0.974,0.928,1.058,1.026,1.083,1.029,1.059,0.973,0.945,0.94,0.971,1.003,1.009,1.058,0.932,0.955,0.968,1.15,0.989,0.853,1.14,0.925,1.088,0.953,1.092,1.015,0.977,1.06,0.984,0.965,0.958,1.0,0.977,0.919,1.005,1.075,0.912,1.077,1.016,0.994,0.881,1.037,0.821,0.925,1.061 +NM_032030,1.024,0.917,0.952,1.014,1.06,0.935,0.999,1.125,1.198,0.99,0.95,1.119,1.043,0.956,1.235,1.242,1.069,0.99,0.887,0.915,0.978,0.979,0.971,0.981,0.967,0.972,1.046,0.973,1.71,0.997,1.011,1.037,1.063,1.203,0.981,1.018,0.954,0.907,0.963,0.865,1.078,0.966,1.196,0.954,0.993,0.82,0.955,0.997,1.057,0.982,1.125,1.051,1.073,1.05 +NM_032032,0.958,0.98,1.012,1.029,0.996,0.982,0.958,1.044,0.935,1.004,0.997,1.169,1.066,0.921,0.849,0.956,0.999,1.115,0.929,0.916,1.041,0.96,0.944,1.048,0.944,1.16,0.786,1.026,0.856,1.032,0.982,1.02,0.907,1.055,0.956,1.044,0.932,1.127,1.08,0.971,0.907,0.938,0.851,0.839,1.139,0.947,1.021,1.083,1.081,0.989,1.125,0.855,0.983,0.977 +NM_032033,1.04,0.991,0.97,1.035,0.994,1.164,1.041,0.992,0.972,1.083,1.008,0.976,1.015,0.866,1.118,0.985,0.929,1.13,1.006,0.929,1.034,0.913,0.976,1.053,0.891,1.121,0.976,0.962,0.814,0.958,1.097,0.915,0.961,0.988,1.111,0.849,1.006,1.105,1.105,0.923,1.033,1.136,0.825,1.143,0.984,0.879,1.098,1.076,0.975,1.084,0.879,0.997,1.135,0.937 +NM_032034,1.172,0.747,1.111,0.959,1.007,0.93,0.692,0.757,1.092,1.074,0.811,0.835,0.768,1.046,0.976,0.992,1.0,1.363,1.582,0.877,0.948,0.966,1.307,1.34,0.634,1.233,1.261,0.74,0.698,1.183,0.991,0.91,1.67,0.901,1.007,1.564,0.717,1.054,1.445,2.404,0.964,1.029,0.572,2.497,1.108,0.714,0.787,1.044,0.649,1.306,0.861,1.0,1.323,2.107 +NM_032036,0.736,0.759,1.773,0.564,1.467,0.776,0.893,1.104,1.86,1.049,0.336,1.597,1.696,0.511,1.064,1.53,0.964,1.586,0.464,1.533,0.576,1.598,1.08,2.254,0.342,0.507,2.256,1.606,0.613,1.34,1.026,2.684,0.958,1.04,0.266,0.632,0.703,1.355,1.11,0.886,1.893,1.142,0.532,1.232,1.34,0.83,1.747,0.878,0.912,1.013,0.967,1.063,0.652,1.099 +NM_032037,0.966,1.039,1.141,0.902,1.05,1.306,0.768,0.739,1.031,0.807,1.04,0.952,0.865,0.907,0.953,0.788,1.045,0.85,0.885,1.438,0.826,1.0,1.133,0.954,0.878,0.904,1.116,1.087,1.016,1.338,1.024,1.154,0.988,1.313,0.775,0.924,0.913,0.901,0.873,1.4,0.958,0.857,0.848,1.038,0.884,1.044,0.834,0.986,0.776,1.078,0.93,0.986,0.875,1.178 +NM_032038,0.607,1.218,1.015,0.539,0.912,0.893,0.631,0.388,1.027,1.235,0.735,0.71,0.556,0.493,0.701,1.136,0.958,1.188,0.944,1.034,0.404,0.777,1.284,0.96,0.514,0.695,1.314,0.752,0.521,1.335,0.772,2.613,1.32,1.157,0.209,1.247,0.948,0.979,1.417,1.799,0.999,1.012,0.878,1.378,1.03,0.964,1.64,0.612,1.337,0.663,1.04,1.389,0.744,3.344 +NM_032039,0.791,0.897,0.966,0.637,0.772,1.471,0.538,0.749,0.898,0.817,1.607,0.721,0.726,0.672,1.407,3.079,0.737,0.78,1.44,1.115,0.878,1.323,1.162,0.96,0.824,1.113,0.873,0.752,0.71,1.443,0.999,1.785,2.639,1.54,0.385,0.657,1.318,0.997,2.37,0.948,0.848,1.263,0.806,1.334,0.869,0.986,1.443,1.058,0.788,0.91,1.033,0.543,0.822,1.528 +NM_032040,0.931,1.017,0.894,1.005,1.098,1.043,0.91,0.948,0.923,0.962,1.077,1.036,1.078,0.889,1.063,1.015,0.999,0.895,0.899,1.122,0.954,0.997,1.03,0.97,0.933,0.997,1.032,0.955,0.863,1.111,0.916,1.416,1.061,1.179,1.008,0.921,0.914,0.954,0.902,1.075,0.974,1.107,0.947,1.069,1.093,0.877,1.041,1.017,1.003,0.862,0.987,1.193,1.1,0.979 +NM_032041,0.967,0.976,0.921,0.94,0.958,1.082,0.782,0.893,0.918,1.095,1.018,0.967,0.877,1.05,1.034,0.988,0.986,1.021,0.871,0.999,0.92,0.95,1.304,0.861,0.966,1.042,1.066,1.054,1.103,1.294,0.943,1.502,1.217,1.41,0.819,1.046,1.012,1.27,0.969,0.692,0.91,1.179,1.056,0.902,0.864,0.977,1.129,0.946,1.024,0.88,1.145,0.994,1.027,1.062 +NM_032042,0.807,1.09,1.872,0.707,1.261,0.98,0.692,0.887,1.351,1.156,1.028,1.539,0.951,0.947,1.003,1.074,1.1,1.046,1.649,0.951,0.768,1.048,1.059,1.211,0.639,1.168,1.598,1.36,0.588,1.058,1.247,1.735,1.202,1.577,0.39,0.568,0.813,1.562,0.9,0.593,1.519,1.367,0.554,0.751,1.117,0.88,0.885,0.825,0.77,0.994,0.941,0.847,0.901,0.736 +NM_032044,0.336,1.212,0.361,5.962,0.323,44.68,0.929,0.33,0.411,0.443,67.24,0.378,0.349,0.379,29.8,74.82,0.416,0.682,0.33,49.8,0.335,0.425,32.7,0.438,0.443,0.364,0.475,0.373,0.642,14.69,0.357,0.343,6.829,3.138,0.355,18.82,36.36,0.348,23.21,0.312,0.351,32.89,18.69,24.66,0.537,55.46,14.63,0.359,25.64,0.381,44.8,1.071,0.603,1.948 +NM_032045,0.979,0.976,1.092,0.878,1.033,0.918,1.048,1.008,0.996,0.885,0.778,0.957,1.033,1.05,0.807,0.93,1.1,0.967,1.006,0.946,0.97,1.083,1.092,1.046,1.009,1.033,0.904,1.055,0.859,0.994,1.075,1.07,1.177,0.866,1.002,1.073,1.034,1.02,0.934,1.068,0.934,1.008,1.068,0.965,0.954,0.96,0.991,0.952,0.986,1.05,1.075,0.837,0.971,0.983 +NM_032046,1.207,1.025,1.001,1.06,1.353,0.969,0.845,1.2,1.139,1.263,0.999,1.213,1.289,0.977,0.922,0.884,1.006,0.969,1.102,0.84,1.12,1.31,0.961,1.238,0.916,1.163,0.849,1.17,1.094,1.068,1.2,0.962,1.028,0.863,1.127,1.027,0.981,1.259,0.896,1.113,1.071,0.832,0.938,0.876,0.911,0.856,1.063,1.042,0.944,1.084,0.949,1.052,1.175,0.871 +NM_032047,0.897,0.755,1.162,0.769,1.21,1.306,0.529,0.646,1.276,1.431,0.884,0.933,0.824,0.623,0.802,1.416,0.872,0.932,1.082,1.048,0.663,0.816,0.928,1.047,0.574,0.714,1.35,1.172,0.567,1.092,1.022,0.609,1.092,0.739,0.578,0.995,1.232,0.926,1.233,0.729,1.17,0.754,1.871,0.912,0.905,2.022,1.493,0.669,1.756,0.925,0.981,0.813,1.162,0.866 +NM_032048,0.602,1.769,0.79,0.782,0.645,1.013,0.923,0.6,0.729,0.674,0.857,0.595,0.59,0.545,0.764,1.44,0.7,0.781,0.661,1.357,0.63,0.527,2.093,0.75,0.693,0.627,1.004,0.738,0.508,1.25,0.557,2.333,1.039,1.111,0.554,1.513,0.898,0.647,1.481,3.81,0.754,1.219,0.934,1.825,0.799,1.43,0.97,0.601,1.182,0.654,1.244,1.758,0.872,2.153 +NM_032049,0.901,0.925,1.025,0.937,0.977,1.086,0.956,1.169,0.946,1.043,1.126,1.159,1.138,0.916,1.062,1.102,0.988,0.958,0.994,0.887,1.09,1.036,0.972,1.186,0.99,0.97,1.184,0.939,0.943,1.047,1.047,1.009,0.898,0.876,1.106,1.08,1.093,1.077,0.97,0.988,1.099,1.047,1.439,0.988,1.0,0.961,1.074,1.09,0.972,1.088,0.97,0.969,0.904,0.847 +NM_032051,1.794,2.489,1.944,1.6600000000000001,1.7759999999999998,2.004,2.011,1.908,1.904,1.849,1.861,1.709,1.795,2.078,1.667,2.203,2.066,1.776,1.909,2.1310000000000002,1.674,1.875,2.249,1.608,1.946,1.771,1.979,1.642,2.128,2.2110000000000003,1.665,2.2520000000000002,2.289,2.543,1.888,1.9939999999999998,2.1399999999999997,1.908,2.158,2.016,1.9940000000000002,2.511,1.964,2.533,1.943,1.936,1.91,1.785,2.139,1.771,1.992,1.83,1.83,2.266 +NM_032053,2.021,2.096,2.053,1.8659999999999999,1.897,1.9849999999999999,2.034,1.88,1.799,1.951,2.191,2.031,1.9620000000000002,1.991,1.7679999999999998,1.892,1.9409999999999998,2.0010000000000003,2.202,2.06,2.216,1.946,2.339,2.03,2.0860000000000003,2.0789999999999997,1.878,1.801,1.8399999999999999,1.898,2.04,2.062,1.754,1.856,2.116,1.996,2.002,2.026,2.107,2.064,1.789,1.78,1.77,2.2359999999999998,1.966,1.968,2.317,1.978,1.9909999999999999,1.869,1.971,2.088,2.311,1.9100000000000001 +NM_032054,1.09,1.005,0.938,0.95,0.924,0.917,0.862,1.17,1.052,1.066,0.969,1.052,0.86,0.956,1.033,0.854,0.949,1.008,0.94,0.995,0.94,0.941,0.895,0.891,0.876,1.088,0.813,0.852,1.083,0.943,1.01,0.838,1.033,1.035,1.171,0.966,0.92,1.069,1.019,1.045,1.044,1.012,0.871,0.958,1.014,0.899,1.039,1.121,0.983,1.065,1.043,1.017,0.878,0.735 +NM_032086,1.076,1.166,0.991,0.782,1.005,0.954,0.897,0.967,1.048,1.018,0.896,1.066,1.058,1.125,0.99,1.047,1.027,0.957,0.926,1.137,0.895,1.114,1.062,0.941,0.994,0.908,0.964,1.047,1.307,0.975,1.032,0.937,0.826,0.977,0.978,0.913,1.038,0.973,1.007,1.074,1.063,1.005,1.017,0.853,0.954,0.975,1.017,0.993,0.914,0.918,0.973,0.923,0.914,1.044 +NM_032087,1.9779999999999998,1.714,1.8769999999999998,2.0700000000000003,1.827,2.012,1.935,2.3550000000000004,2.125,1.9899999999999998,2.0599999999999996,1.932,2.2809999999999997,2.354,1.827,1.9609999999999999,2.016,1.866,1.9140000000000001,2.017,1.932,1.951,2.0149999999999997,1.962,1.8010000000000002,2.045,1.979,1.9709999999999999,2.097,2.114,1.938,1.866,1.95,2.1319999999999997,2.145,2.253,2.012,1.935,1.855,1.93,2.032,1.873,2.009,2.016,2.35,2.12,2.016,2.189,1.926,1.874,1.8599999999999999,1.972,2.113,1.894 +NM_032089,1.095,0.854,0.95,0.91,0.879,0.999,1.193,1.315,0.944,0.894,1.083,1.016,0.94,1.013,0.837,1.037,0.954,0.848,1.023,0.975,0.972,0.957,1.012,0.977,0.966,0.976,1.026,0.999,0.746,1.078,1.108,0.906,0.813,0.917,1.206,1.138,1.137,0.94,1.0,1.151,0.998,1.023,0.941,1.136,1.062,1.02,0.965,1.146,0.996,0.932,0.952,1.028,1.061,0.805 +NM_032090,1.975,1.844,2.0909999999999997,1.937,2.0010000000000003,2.104,2.005,2.172,1.971,2.0229999999999997,1.951,1.9949999999999999,2.092,2.013,2.672,2.268,2.041,1.996,2.0700000000000003,1.779,2.0140000000000002,1.9969999999999999,2.3899999999999997,2.099,1.809,2.045,2.039,2.071,2.022,1.901,2.189,1.874,2.094,1.9929999999999999,2.283,2.241,1.936,2.0229999999999997,2.3,2.122,1.974,2.146,2.018,2.031,1.992,1.979,1.8399999999999999,2.183,1.807,2.027,1.8279999999999998,1.5790000000000002,1.9419999999999997,1.807 +NM_032091,1.988,2.142,1.953,2.133,2.031,2.053,2.197,2.278,2.132,1.877,2.1740000000000004,2.013,2.1109999999999998,2.657,1.6989999999999998,1.884,2.02,2.174,1.997,1.869,2.144,1.948,2.181,1.893,2.005,2.062,1.971,1.9089999999999998,2.057,2.102,2.112,2.096,1.791,1.984,2.252,1.815,2.02,2.088,2.149,2.105,1.7930000000000001,2.2270000000000003,2.14,1.759,2.116,2.037,1.962,1.996,2.116,1.697,1.968,2.045,2.149,1.812 +NM_032094,0.943,1.072,1.018,1.022,0.999,1.057,1.237,0.997,1.01,0.805,1.109,0.868,1.069,0.982,0.948,1.13,0.925,0.754,1.069,0.732,1.03,1.188,0.874,1.037,1.057,1.024,0.889,0.967,1.071,0.968,1.191,0.964,1.06,0.982,1.022,0.983,0.999,1.038,0.971,0.992,0.84,0.932,0.945,1.105,0.94,0.987,1.043,1.005,1.095,1.102,1.035,0.938,0.931,1.027 +NM_032095,0.928,0.976,0.938,0.967,1.029,1.079,0.816,0.957,1.006,0.981,0.989,1.085,1.102,1.174,1.024,1.063,1.009,0.992,0.932,1.112,1.081,0.971,0.985,0.937,1.059,1.038,0.963,1.039,0.822,1.104,0.971,0.974,1.173,0.975,1.031,1.001,0.984,1.028,0.936,0.989,1.069,1.059,0.865,0.971,0.962,1.016,1.008,0.999,0.913,0.962,1.115,1.097,0.993,1.168 +NM_032096,1.053,0.875,0.977,0.985,1.009,1.057,1.141,1.162,0.884,1.138,0.99,0.94,1.149,1.053,0.872,1.127,0.945,1.05,0.889,1.013,0.946,0.843,0.98,1.014,1.172,1.138,0.968,0.942,1.203,0.899,0.973,0.913,0.955,0.907,1.092,0.98,1.07,1.009,0.961,1.01,0.949,0.865,0.895,0.823,1.021,0.975,1.081,1.0,1.087,1.038,1.038,0.895,1.064,0.967 +NM_032097,0.971,0.908,0.947,1.071,0.911,1.02,0.804,1.211,0.888,0.906,0.958,1.009,1.059,0.841,1.074,0.855,0.908,0.867,1.04,0.898,1.039,0.898,0.861,0.935,0.999,1.023,1.135,0.914,0.753,1.019,1.148,0.991,0.99,0.889,0.951,1.018,1.076,0.966,0.865,1.034,1.009,0.883,0.995,1.124,1.047,0.936,0.998,1.144,0.873,0.963,1.005,0.988,1.045,0.922 +NM_032098,0.99,1.186,0.974,0.944,0.966,1.05,1.04,1.219,1.087,1.081,0.923,1.077,1.19,0.965,1.008,0.973,0.949,1.034,0.921,1.016,1.002,0.907,0.876,0.905,0.993,1.008,1.085,1.092,1.049,1.021,1.043,1.055,1.037,0.955,1.011,0.923,1.08,1.026,0.933,1.005,1.01,1.033,0.913,0.972,0.979,0.99,0.883,1.062,1.068,1.065,1.106,0.886,1.054,0.944 +NM_032099,2.09,2.018,1.882,2.034,1.992,2.355,2.152,1.979,1.952,1.749,2.07,2.1660000000000004,2.044,1.827,1.956,2.197,2.0140000000000002,1.9289999999999998,2.258,1.9539999999999997,1.901,1.9540000000000002,2.199,2.1319999999999997,2.0549999999999997,1.935,1.9969999999999999,2.112,2.561,2.0309999999999997,2.181,1.987,2.0020000000000002,1.94,2.145,2.0540000000000003,2.146,1.875,2.0389999999999997,1.7690000000000001,1.962,2.0869999999999997,2.266,1.799,1.992,2.077,1.973,1.8519999999999999,2.134,2.126,1.951,1.959,2.082,2.117 +NM_032100,0.98,0.876,0.938,1.067,1.078,1.014,1.125,0.819,1.026,0.973,0.974,0.869,1.035,1.176,1.193,0.986,1.021,0.958,0.982,0.984,0.903,1.022,1.065,1.195,0.977,1.065,0.985,1.029,1.363,1.016,1.045,1.018,0.937,1.128,0.947,0.965,0.929,1.067,0.959,1.025,0.946,0.839,1.072,0.912,0.986,1.183,1.093,1.013,1.182,1.046,0.977,1.001,1.195,0.988 +NM_032101,2.2060000000000004,2.086,1.83,1.815,1.843,2.0460000000000003,1.895,2.085,2.024,2.173,1.9,2.1689999999999996,2.0060000000000002,2.001,2.125,1.851,2.025,1.737,1.905,1.861,1.878,2.223,1.797,2.113,2.052,1.752,1.8980000000000001,1.7930000000000001,1.745,2.091,1.918,1.795,1.767,1.893,1.988,2.188,1.891,1.9769999999999999,2.002,1.7610000000000001,1.919,1.975,1.705,1.984,2.035,1.81,2.1079999999999997,2.048,1.897,2.062,2.1029999999999998,1.947,1.7839999999999998,1.966 +NM_032102,0.853,1.107,1.299,0.904,1.039,0.877,0.639,0.448,1.42,1.084,1.078,0.701,0.725,0.827,1.021,1.43,0.8,1.02,1.456,1.075,0.643,0.784,1.243,0.893,0.699,0.906,1.158,0.953,0.456,1.001,0.934,0.928,2.469,1.344,0.285,1.077,1.018,0.934,1.165,0.641,0.982,1.096,0.841,0.944,0.977,1.227,0.987,0.768,0.971,0.786,1.032,0.598,1.064,1.082 +NM_032103,1.047,1.005,0.896,0.936,0.985,1.025,1.047,0.893,0.792,1.021,0.976,1.004,0.865,1.163,1.1,0.814,0.918,1.064,1.039,0.991,1.005,0.89,1.064,1.002,1.036,1.143,0.983,0.991,1.084,0.97,0.955,0.993,0.941,1.015,1.116,1.014,0.947,0.996,0.973,1.013,0.992,1.156,0.842,1.081,0.886,0.883,0.979,0.97,1.151,1.091,0.999,1.031,1.056,0.872 +NM_032107,2.173,1.9169999999999998,2.061,1.968,2.081,1.889,1.6800000000000002,2.3449999999999998,1.986,2.241,1.9969999999999999,1.9499999999999997,1.892,2.447,1.885,2.033,1.9529999999999998,2.043,1.928,1.874,2.2169999999999996,1.836,2.088,2.11,2.112,2.093,2.0149999999999997,2.2169999999999996,1.5790000000000002,1.913,2.008,2.0460000000000003,2.158,1.83,1.92,2.327,1.8730000000000002,1.9260000000000002,2.053,2.101,1.887,1.94,2.085,2.051,1.989,1.9129999999999998,2.084,2.011,1.9589999999999999,1.919,2.028,1.746,1.7890000000000001,1.9579999999999997 +NM_032108,0.989,0.989,1.016,0.942,0.879,0.933,0.883,0.947,1.072,1.074,0.95,0.795,0.925,1.185,0.852,0.977,1.001,1.064,0.984,0.985,0.822,0.935,0.967,0.943,1.047,1.002,1.053,0.998,1.175,0.956,1.041,1.103,1.075,0.92,1.025,1.095,0.857,1.107,1.071,0.993,0.921,0.817,1.115,0.982,1.033,0.873,0.947,0.972,1.002,0.966,1.003,1.0,0.919,1.063 +NM_032109,0.979,1.213,0.976,1.172,0.977,0.913,0.999,0.958,0.918,0.99,1.054,0.987,0.923,0.86,0.832,0.843,0.996,0.954,0.862,0.992,0.965,0.969,1.086,0.962,1.073,1.016,1.103,1.143,1.082,1.093,1.008,0.967,0.781,0.868,0.956,1.084,1.051,1.048,1.071,1.051,0.962,1.03,1.004,1.075,1.005,1.094,1.111,0.945,0.878,1.048,1.05,0.949,0.863,1.023 +NM_032111,0.585,0.989,0.849,0.749,0.689,1.493,0.788,0.526,0.778,0.957,0.869,0.707,0.668,0.618,0.833,1.621,0.776,1.276,1.027,1.15,0.53,0.735,1.138,0.859,0.54,0.729,1.072,0.684,0.601,1.183,0.832,1.48,1.982,1.367,0.446,1.233,1.156,0.751,1.759,1.012,0.783,0.863,0.68,1.374,0.898,0.79,1.044,0.683,1.011,0.625,1.087,0.703,0.815,1.453 +NM_032112,0.852,1.187,0.795,0.923,0.769,1.284,0.6,0.505,0.823,0.974,1.211,0.929,0.887,0.628,0.838,1.324,0.611,0.974,1.04,0.983,0.672,0.937,1.055,0.996,0.856,0.97,1.052,0.709,0.579,1.24,0.598,1.212,1.669,1.667,0.215,1.514,1.123,0.9,1.471,0.518,1.036,1.096,0.742,1.603,0.825,0.954,0.871,0.699,0.971,0.563,0.999,0.902,1.062,1.219 +NM_032115,0.966,1.055,1.057,1.066,0.972,1.076,0.841,0.919,1.03,1.028,0.969,0.914,0.985,1.071,1.065,0.892,0.996,1.023,0.935,1.094,0.812,0.982,0.86,0.89,0.948,0.839,0.997,0.715,1.039,0.917,0.972,1.031,1.053,1.167,1.103,1.079,0.871,1.04,0.93,0.951,0.889,0.862,0.918,0.967,1.011,1.036,1.126,0.987,1.053,1.04,0.936,0.932,1.111,0.827 +NM_032116,1.088,1.171,1.055,0.927,1.063,1.113,0.93,0.893,0.954,0.983,1.008,0.943,0.887,1.008,0.959,0.97,0.879,0.949,1.04,0.908,0.772,0.886,1.102,0.997,0.897,1.103,1.101,0.989,0.949,0.91,0.98,1.069,1.388,1.098,1.006,1.044,1.031,1.053,1.001,1.03,1.033,1.004,0.949,1.095,0.984,1.043,1.108,0.968,0.981,0.821,0.87,0.966,1.056,1.126 +NM_032117,0.808,1.121,0.929,0.996,1.019,0.945,0.84,1.009,0.966,0.995,1.01,1.259,1.096,0.859,1.037,1.119,0.912,1.012,1.051,1.042,0.765,1.078,1.326,1.178,0.862,0.958,1.157,0.931,0.83,0.998,1.002,1.318,1.856,1.003,0.743,1.05,0.996,0.93,1.319,0.905,0.974,0.904,0.815,1.243,0.95,0.991,1.013,1.022,1.038,0.906,1.194,0.933,1.033,1.288 +NM_032118,0.408,1.381,0.707,0.777,0.748,1.244,0.965,0.472,0.532,0.996,0.988,0.761,0.544,0.468,0.674,1.086,0.567,0.919,0.751,1.216,0.486,0.544,1.358,0.906,0.769,0.561,1.039,0.526,0.464,1.749,0.597,2.896,4.979,1.7,0.302,1.241,0.984,0.68,1.575,2.076,0.643,1.267,0.64,1.523,0.542,1.098,1.512,0.465,0.572,0.518,1.251,0.951,0.914,1.59 +NM_032119,0.917,1.028,1.874,0.913,0.907,1.361,0.721,0.768,1.11,1.329,0.798,1.19,1.696,0.657,0.725,1.2,0.95,0.795,1.867,0.766,0.744,1.454,0.582,1.475,0.751,1.455,1.39,0.771,0.768,0.795,1.275,0.876,1.061,0.793,1.338,0.857,0.782,0.922,1.999,1.088,1.476,0.889,0.774,0.842,1.409,0.724,1.522,0.896,0.777,1.19,1.2,0.786,1.145,1.043 +NM_032122,0.82,1.267,1.184,0.993,0.821,1.084,0.653,0.671,0.937,0.913,0.944,0.72,0.782,0.723,0.813,0.954,0.932,0.978,1.11,0.87,0.792,0.683,1.39,0.828,0.875,0.729,0.922,0.763,0.543,1.108,0.837,1.385,1.333,1.223,0.774,0.743,1.05,0.902,1.342,1.191,0.971,1.061,0.834,1.241,0.861,0.993,1.047,0.737,1.098,0.874,1.08,0.721,0.866,1.626 +NM_032123,0.904,0.981,1.064,1.071,1.025,0.991,1.039,1.084,0.828,1.014,1.026,0.916,0.923,1.092,0.946,0.938,0.95,0.942,0.928,0.966,1.087,1.032,1.047,1.094,0.956,0.967,1.049,1.093,0.804,1.12,1.117,1.069,0.879,1.065,0.929,1.036,1.03,0.975,0.951,0.94,1.036,0.919,1.014,1.0,0.947,1.03,0.863,1.03,0.855,1.026,0.936,1.046,0.914,0.985 +NM_032124,0.737,0.951,1.215,0.752,0.952,1.477,0.744,0.825,1.184,0.968,0.858,1.027,0.846,0.721,1.125,1.968,1.2,0.991,0.831,1.385,0.421,1.149,1.109,1.303,0.899,0.767,1.275,1.015,0.802,1.674,1.016,0.993,1.111,1.347,0.435,0.692,1.093,1.147,1.402,0.634,1.211,1.217,0.735,0.743,1.142,1.259,0.863,0.93,1.121,0.857,1.188,0.68,0.709,0.963 +NM_032125,1.006,0.967,0.942,1.042,0.993,1.033,0.691,0.903,0.886,0.798,0.928,0.918,1.009,0.93,1.124,1.105,1.022,0.96,1.268,0.882,1.212,1.145,0.96,1.134,1.17,1.388,1.024,0.91,0.778,0.999,0.904,0.999,1.026,1.256,0.856,0.883,0.934,0.989,1.423,0.845,0.957,0.939,0.725,1.242,1.078,0.915,0.966,1.336,0.868,1.065,0.812,1.018,1.074,1.103 +NM_032126,1.079,1.251,0.942,1.109,1.065,1.078,0.963,1.096,1.063,1.055,1.047,0.981,0.985,1.164,0.919,1.002,1.012,1.067,0.877,0.987,0.94,1.156,1.208,0.963,1.094,0.923,0.946,1.008,0.879,1.006,1.004,0.927,0.856,0.905,1.078,1.209,0.902,0.959,1.117,0.979,1.096,1.206,0.961,1.028,1.052,0.986,1.069,0.899,0.951,0.994,0.884,0.984,1.002,0.779 +NM_032128,0.945,1.132,1.024,0.961,1.066,1.083,0.886,0.944,0.954,1.081,1.148,0.96,0.917,1.045,0.781,0.957,1.189,1.014,0.971,0.904,1.201,0.893,0.992,1.05,1.039,0.924,0.944,1.013,1.189,1.021,0.945,0.911,0.894,0.854,0.975,0.983,1.0,0.961,1.114,1.071,1.066,1.022,0.895,0.952,1.064,0.913,1.009,1.0,0.988,1.264,1.038,0.945,1.174,0.945 +NM_032129,2.108,0.786,1.676,0.996,1.439,0.897,0.877,1.469,2.367,1.52,0.789,1.388,1.5,1.596,1.362,1.004,1.481,1.299,2.301,0.727,1.643,2.655,0.879,1.748,0.73,2.068,1.509,1.639,0.684,0.813,2.01,0.786,1.073,0.8,1.46,0.95,0.873,1.772,1.323,0.848,1.666,0.919,0.769,0.949,1.854,0.728,0.904,2.009,0.763,2.017,0.905,0.836,1.545,0.843 +NM_032130,0.962,0.965,0.936,0.972,0.921,0.965,0.986,0.909,0.952,1.079,0.889,1.127,1.059,0.937,1.003,1.103,1.014,0.937,0.979,1.045,1.065,0.878,0.875,1.045,0.964,1.115,1.052,0.938,1.001,1.017,0.983,0.976,1.075,1.058,1.019,0.997,0.919,1.066,0.996,0.955,1.144,0.92,1.007,0.959,0.817,1.011,1.066,1.063,1.029,1.031,1.085,1.085,0.866,0.953 +NM_032131,0.984,1.066,0.978,1.157,0.939,0.907,1.084,0.998,0.836,0.893,1.007,0.903,1.113,1.099,1.044,0.811,1.045,0.852,1.024,0.974,0.914,0.949,0.993,1.014,1.117,1.079,1.079,1.115,1.083,1.078,1.082,1.017,0.912,0.927,0.993,0.963,0.961,0.99,0.993,0.907,0.997,0.745,1.175,1.098,1.045,0.922,0.841,1.019,1.073,0.993,0.886,1.052,1.103,0.973 +NM_032132,1.018,0.887,1.199,0.954,1.005,0.927,0.92,1.028,0.851,0.997,0.923,0.994,1.034,0.934,1.167,0.959,1.008,0.764,1.173,0.993,1.073,0.867,0.988,1.313,0.954,1.067,1.393,0.95,1.114,1.008,1.074,0.905,1.147,1.033,1.061,1.023,0.914,0.89,1.053,1.065,1.027,0.885,1.108,1.128,0.986,0.822,0.983,1.107,1.062,1.041,0.943,0.838,0.86,2.069 +NM_032133,1.132,0.901,0.891,1.053,0.922,1.005,1.093,0.906,0.973,0.909,1.137,0.986,0.862,1.215,1.1,1.0,1.0,1.152,1.031,1.183,1.061,0.876,0.97,1.087,1.021,1.053,0.917,1.004,0.978,0.875,0.939,0.954,1.055,0.989,1.016,1.107,0.892,1.093,1.091,0.949,0.982,0.908,0.87,0.918,1.049,0.911,0.953,1.019,1.004,0.896,1.06,0.952,0.92,0.974 +NM_032134,1.223,1.026,1.086,1.011,0.879,1.099,0.99,0.995,1.051,1.023,1.125,1.237,0.926,0.936,0.994,0.867,0.92,1.114,1.029,0.929,1.206,1.01,0.934,1.028,0.974,0.908,1.124,0.823,0.703,0.903,0.975,1.123,0.835,1.012,0.869,1.041,1.042,0.864,0.99,0.918,1.144,1.068,0.925,1.0,1.041,0.866,1.006,0.905,1.119,1.156,1.071,1.029,1.02,1.007 +NM_032135,1.064,0.976,0.991,0.957,0.965,1.045,1.091,0.957,1.131,0.949,1.015,1.13,0.968,0.989,0.993,0.994,0.884,1.097,0.933,0.841,1.119,1.004,1.07,1.043,1.159,0.834,1.061,0.943,0.98,0.887,1.17,0.969,1.087,0.832,1.087,0.994,1.033,0.976,1.055,0.939,1.002,1.0,1.065,1.216,1.102,1.018,1.028,1.024,1.119,1.112,1.177,0.943,0.93,1.011 +NM_032136,1.039,0.941,1.076,1.024,0.95,1.035,0.895,1.082,0.903,1.031,0.849,1.061,0.998,1.15,1.219,0.849,1.221,0.983,1.044,1.104,1.061,1.03,1.035,1.223,0.843,1.062,0.942,1.029,1.064,0.99,0.962,0.828,1.025,1.052,1.085,1.103,1.156,0.934,1.079,1.029,1.152,0.923,1.405,1.015,1.073,0.96,0.98,0.965,1.045,1.1,0.901,1.041,1.072,1.015 +NM_032137,0.905,0.965,0.759,1.059,1.082,1.015,1.136,0.892,1.035,1.158,1.065,0.966,1.27,0.781,0.869,0.957,0.953,1.227,0.89,1.071,0.937,1.244,0.995,1.063,1.047,1.097,0.878,0.862,1.011,0.827,0.877,1.004,1.218,1.02,0.967,0.976,0.957,1.148,0.941,1.098,1.119,1.073,1.016,1.0,0.97,0.88,1.177,1.024,1.107,0.883,1.019,0.9,1.144,1.11 +NM_032138,0.909,1.145,1.036,0.987,0.768,1.144,0.986,0.852,0.937,0.924,0.989,0.761,0.801,0.937,1.032,1.721,0.843,1.007,0.909,1.045,0.78,0.801,1.431,0.833,0.892,0.806,1.07,0.921,0.897,1.215,0.963,1.148,1.292,1.159,0.628,0.922,1.226,0.937,1.204,1.074,1.033,1.167,0.803,0.993,1.019,0.943,1.089,0.901,0.967,0.896,1.159,0.871,0.781,1.319 +NM_032139,0.743,1.255,1.173,0.584,1.076,0.887,0.634,0.688,1.277,1.086,0.974,0.821,0.725,0.808,0.828,1.147,0.866,0.93,1.24,1.061,0.435,1.21,1.439,1.193,0.631,1.034,1.34,0.831,0.67,1.087,1.191,1.166,2.51,1.382,0.726,0.533,0.782,0.972,1.015,1.227,1.038,1.304,0.463,1.321,0.957,0.844,1.205,1.132,0.643,0.927,0.706,0.746,0.826,2.105 +NM_032140,0.63,1.388,1.074,0.787,0.844,1.378,0.686,0.614,0.808,0.776,0.767,0.87,0.628,0.563,0.986,1.059,0.81,0.985,0.649,1.669,0.503,0.739,1.501,0.832,0.601,0.624,1.003,0.924,0.361,0.929,0.83,2.479,1.879,1.259,0.451,1.051,0.906,0.993,1.496,1.219,0.9,1.359,0.845,1.41,0.76,0.997,0.962,0.554,0.806,0.662,1.465,0.91,0.74,2.565 +NM_032143,1.038,1.009,1.11,1.007,1.019,1.0,0.89,0.842,1.024,1.053,1.162,0.872,0.992,1.0,1.104,1.001,1.025,1.038,1.042,1.016,1.04,0.912,0.81,0.876,1.204,0.925,0.966,1.045,0.707,1.08,0.946,1.011,0.906,1.049,0.843,1.0,0.895,1.138,1.127,0.891,1.187,1.304,0.927,1.074,1.003,1.183,0.994,0.961,1.096,1.131,0.845,1.11,0.997,0.824 +NM_032144,0.998,0.847,1.368,0.766,1.082,1.715,1.163,1.713,1.286,0.848,0.899,1.2,1.46,0.964,1.117,2.123,1.142,1.173,0.675,1.107,0.61,1.371,1.048,1.808,0.714,0.666,1.715,0.849,0.567,1.203,1.555,1.165,2.322,0.985,0.851,0.638,1.203,1.483,1.148,0.82,1.17,0.898,0.68,0.639,1.108,1.08,0.967,1.128,1.254,1.075,1.137,0.877,0.712,1.093 +NM_032145,0.901,1.093,1.001,0.958,0.788,1.035,0.757,0.77,1.097,1.052,1.138,0.933,0.762,1.087,0.784,1.319,0.764,0.923,1.09,0.817,0.909,0.868,1.106,1.036,0.76,0.969,1.094,1.082,0.553,0.998,1.071,1.049,1.346,1.193,0.687,0.829,0.985,0.944,0.952,0.845,1.27,1.124,0.864,0.86,1.061,0.967,0.91,0.837,0.912,0.881,0.965,1.068,0.999,1.082 +NM_032146,1.085,0.963,0.888,0.956,0.991,1.101,1.081,0.835,0.934,1.016,1.068,0.955,0.975,1.118,1.052,0.887,1.002,1.064,1.026,1.187,0.822,0.847,1.053,0.896,1.06,0.979,0.961,0.921,0.958,0.94,1.058,0.799,0.878,0.936,0.932,0.973,1.073,0.885,0.951,0.912,0.913,1.102,0.97,0.958,0.982,0.965,0.929,0.962,1.24,1.165,0.994,1.011,1.142,1.047 +NM_032147,1.024,0.963,1.076,1.027,0.97,0.998,1.192,1.09,1.061,0.988,0.846,0.987,1.029,1.094,0.901,0.963,0.985,1.103,0.888,0.978,1.019,0.804,0.957,0.933,0.993,0.908,1.03,0.976,1.059,1.045,1.015,1.051,0.869,0.938,1.065,1.035,0.957,0.963,0.903,0.937,1.102,0.96,1.096,0.972,1.106,0.991,0.863,1.072,0.963,1.011,0.979,0.999,1.048,1.044 +NM_032148,0.651,1.376,0.678,1.047,0.639,1.913,1.368,0.589,0.678,0.711,1.466,0.636,0.613,0.638,1.362,2.11,0.584,1.043,0.714,1.269,0.688,0.549,1.356,0.577,1.028,0.62,0.768,0.596,0.792,1.882,0.615,1.31,0.953,2.059,0.757,1.356,2.153,0.742,1.534,0.685,0.553,1.561,0.926,0.906,0.727,1.645,1.005,0.678,1.325,0.589,1.461,0.962,0.614,1.237 +NM_032149,1.08,0.949,0.922,1.045,1.245,1.059,0.883,1.062,0.809,0.936,1.006,1.033,0.9,0.872,0.821,1.039,1.077,0.981,1.031,0.874,0.982,0.912,1.251,1.023,0.935,1.023,1.01,0.939,1.023,1.041,0.972,0.789,1.128,1.046,1.155,0.881,0.918,0.867,1.014,0.984,1.034,1.197,0.929,0.959,0.972,1.001,1.084,0.976,0.951,1.211,0.865,1.052,0.992,0.894 +NM_032151,0.926,0.723,1.363,0.815,1.116,1.077,0.673,1.033,1.139,1.106,1.161,1.02,1.08,0.926,0.994,1.473,1.133,1.057,1.84,0.84,0.836,0.956,1.087,1.364,0.598,0.998,1.541,1.008,0.551,0.812,1.116,0.712,1.696,1.149,0.679,0.657,1.029,0.979,1.099,0.643,1.231,0.83,0.601,1.098,1.096,0.873,1.278,1.237,0.889,0.999,1.058,0.621,1.183,1.348 +NM_032152,0.935,0.846,1.018,1.043,1.085,1.085,0.908,0.812,0.916,1.037,0.888,1.075,1.082,1.195,0.9,0.999,1.179,1.006,1.014,0.922,1.043,0.948,0.942,0.964,0.939,1.022,0.949,1.151,1.034,0.822,1.015,0.847,0.87,0.931,0.955,0.976,0.909,0.983,1.159,1.072,0.983,1.031,0.912,0.828,0.954,0.986,0.973,0.991,0.922,1.035,0.956,1.149,1.235,1.0 +NM_032153,0.784,1.01,0.992,0.932,1.08,1.047,0.867,1.001,0.99,1.074,0.816,1.102,1.08,0.967,0.853,1.101,1.226,1.095,0.971,0.999,1.006,1.0,1.163,0.988,0.923,0.785,1.144,0.891,0.966,0.947,0.861,0.992,1.146,0.737,1.021,1.138,0.992,0.951,1.162,0.906,1.118,0.883,0.973,0.992,1.006,1.217,1.186,1.082,1.008,0.91,0.92,1.09,1.016,0.859 +NM_032154,0.84,0.903,1.175,0.886,0.877,1.03,1.016,0.645,1.104,0.967,1.254,0.855,0.825,0.923,1.209,0.956,0.982,0.971,1.057,0.852,0.94,0.713,1.165,0.873,0.791,0.896,1.068,0.96,0.889,1.018,0.94,1.117,1.308,1.06,0.914,1.147,1.016,0.999,1.105,0.922,1.139,0.904,0.901,1.03,0.946,1.089,0.943,0.792,1.002,0.906,1.024,1.109,0.943,1.543 +NM_032155,1.067,0.977,0.976,1.042,1.068,1.004,0.957,1.132,1.004,0.988,1.005,1.031,1.088,1.158,1.171,1.044,0.976,1.028,0.93,1.058,1.005,0.959,1.018,0.905,0.999,1.034,1.072,1.021,0.739,1.05,1.071,0.992,0.891,1.104,1.126,0.974,1.066,0.855,1.027,0.997,1.059,0.974,0.845,1.005,0.933,0.988,0.977,0.966,0.965,0.939,1.056,0.833,0.926,1.016 +NM_032156,1.003,1.057,1.1,0.996,1.077,0.996,0.862,0.833,1.111,1.119,1.035,1.107,1.023,1.093,0.832,0.965,1.03,1.052,1.109,0.891,0.963,0.949,1.128,0.968,1.073,1.106,0.923,0.829,0.927,1.147,0.937,1.074,1.102,1.007,0.93,1.054,1.014,1.126,1.022,1.147,0.95,0.949,1.002,1.472,0.936,1.085,0.907,0.881,0.936,1.085,0.92,0.903,1.055,1.111 +NM_032164,0.906,0.903,1.158,0.836,0.827,1.189,0.664,0.673,1.202,0.958,0.852,0.764,0.823,0.843,1.048,1.18,1.042,0.974,1.242,0.816,0.719,1.14,1.2,1.113,0.689,0.887,1.195,0.868,0.578,1.227,1.159,1.148,1.388,1.168,0.809,0.748,1.089,1.11,1.175,0.955,1.257,0.969,1.001,1.153,1.02,0.918,1.058,1.007,1.025,0.997,0.906,1.117,0.801,1.25 +NM_032167,0.928,1.152,1.107,0.859,1.04,0.968,1.141,0.99,1.268,1.029,1.009,0.911,0.965,0.954,1.104,0.786,0.952,1.116,0.812,1.139,1.004,1.025,0.96,1.069,0.941,1.036,1.073,0.93,1.146,1.194,0.891,1.097,0.937,1.162,1.035,0.844,0.949,1.031,0.966,0.99,1.057,0.932,0.851,0.857,1.19,0.798,0.896,0.995,0.874,1.007,1.005,0.939,0.898,0.91 +NM_032168,0.651,1.446,1.081,0.516,0.913,0.932,0.653,0.569,1.267,0.924,1.01,1.112,0.592,0.696,0.947,1.371,0.876,0.727,1.31,0.97,0.675,0.814,1.279,1.2,0.624,0.661,1.334,0.755,0.516,1.165,0.908,1.494,4.157,1.04,0.282,1.361,1.103,0.848,1.151,1.048,1.158,0.893,0.663,1.898,0.972,0.885,0.937,0.596,1.246,0.67,0.928,1.04,1.104,3.822 +NM_032169,0.838,0.93,0.912,0.891,0.86,1.022,0.767,0.819,1.317,1.174,1.044,1.027,0.743,0.799,1.09,2.552,1.04,0.872,1.031,1.267,0.965,0.83,1.179,1.086,0.758,0.901,1.011,1.07,0.794,1.194,1.252,1.378,1.526,0.991,0.805,0.843,1.522,0.87,0.995,0.89,0.924,1.188,1.171,0.85,1.001,1.062,1.125,0.891,0.957,0.867,1.131,0.672,1.07,1.354 +NM_032174,0.743,0.868,1.037,0.654,0.775,1.547,0.647,0.678,0.941,0.818,1.331,0.773,0.889,0.704,1.235,3.088,1.106,1.0,1.071,0.838,0.573,1.085,1.263,1.262,0.634,0.625,1.411,0.764,0.666,1.256,0.909,1.843,1.484,1.313,0.414,0.714,1.563,0.951,1.19,1.582,1.081,1.054,0.696,0.819,0.906,1.219,1.305,0.742,1.314,0.858,1.04,0.706,0.671,2.081 +NM_032175,0.951,0.936,0.966,0.986,1.055,0.941,0.893,1.061,0.884,0.983,0.927,1.021,0.974,1.051,1.032,1.124,0.982,0.984,0.811,0.847,0.866,0.939,1.055,0.881,0.993,1.128,0.901,1.011,1.02,1.112,0.941,1.043,0.867,0.874,1.004,0.984,1.027,1.077,1.125,0.932,0.936,0.855,0.974,1.0,0.991,1.096,1.081,1.0,1.037,0.983,0.98,0.976,0.953,1.014 +NM_032177,0.931,0.908,1.096,0.859,0.786,1.247,0.66,0.83,1.158,0.963,0.984,1.032,0.92,0.899,1.003,1.06,0.945,0.847,0.996,1.136,0.932,1.064,1.001,1.115,0.92,0.821,1.353,0.88,0.704,1.093,1.009,1.128,1.332,1.012,0.784,0.786,0.819,1.006,1.122,0.706,1.204,0.976,0.928,1.027,0.928,0.95,0.948,0.875,0.823,0.934,0.996,0.78,0.957,1.427 +NM_032178,0.971,1.113,1.097,0.998,0.934,1.092,0.898,0.853,1.073,0.903,1.146,0.975,0.871,0.895,0.742,0.986,0.875,0.899,1.125,0.973,0.939,0.932,1.044,0.892,0.903,0.819,0.984,0.891,1.086,0.929,0.937,1.215,1.354,1.053,0.945,1.013,0.88,0.81,1.182,0.901,0.982,1.18,0.868,1.191,0.949,1.171,1.043,0.957,1.012,0.911,1.126,0.91,0.888,1.536 +NM_032179,0.874,1.169,0.883,0.997,0.921,1.341,0.666,0.619,1.144,0.881,0.944,0.744,0.835,0.689,0.976,1.254,0.927,0.96,1.089,0.9,0.845,1.1,1.149,0.999,0.911,1.347,0.732,0.744,0.753,1.088,0.988,1.001,2.054,1.235,0.596,0.949,0.914,0.994,1.843,0.897,0.831,1.227,0.73,1.639,0.924,0.887,0.917,0.997,0.675,0.955,1.032,0.751,0.778,1.588 +NM_032181,0.873,0.96,0.948,1.074,0.937,1.134,0.906,0.947,0.904,1.065,1.05,1.169,1.041,0.988,0.96,0.995,1.05,0.893,0.92,1.161,0.874,0.967,1.409,1.155,0.916,0.857,1.106,0.966,1.222,1.04,0.978,2.109,0.976,0.936,0.915,0.906,1.23,0.962,1.019,1.7,0.998,1.124,1.002,2.034,0.98,0.971,1.097,1.068,1.052,0.979,1.214,1.072,0.819,2.187 +NM_032182,0.72,1.068,1.247,0.583,1.023,1.13,0.705,0.609,1.183,0.995,0.87,0.913,0.712,0.706,1.169,1.264,0.778,0.86,0.936,1.058,0.575,0.701,1.041,1.037,0.696,0.773,1.132,1.011,0.646,1.256,1.016,1.638,2.436,1.152,0.366,1.085,1.197,0.889,1.222,0.766,1.199,1.065,0.708,0.939,1.047,0.969,1.062,0.755,0.988,0.74,1.036,0.904,0.834,1.438 +NM_032188,0.712,1.182,1.14,0.933,0.718,0.999,0.651,0.502,0.904,0.917,0.929,1.008,0.774,0.751,0.952,1.011,0.901,0.815,0.979,1.41,0.791,0.892,1.221,1.017,0.832,0.851,1.076,0.922,0.54,1.201,0.867,2.337,1.836,1.537,0.47,1.087,0.981,0.879,1.22,1.405,1.128,1.596,0.68,1.582,0.937,0.796,1.185,0.79,0.8,0.715,0.922,0.828,1.053,1.679 +NM_032192,1.006,0.974,1.217,1.013,0.994,0.972,1.006,0.792,0.853,0.96,0.944,0.912,0.816,1.173,1.22,1.094,1.038,1.027,1.133,1.059,1.026,0.915,0.861,0.954,0.877,1.02,0.999,0.919,0.854,1.034,1.144,0.947,1.004,1.074,0.979,0.978,0.973,1.001,1.047,0.851,0.946,1.046,0.993,1.097,0.972,0.941,1.038,0.979,1.025,1.049,1.067,1.02,1.004,1.098 +NM_032193,0.751,1.327,0.844,0.916,0.742,1.2,0.789,0.611,0.779,0.653,1.383,1.008,0.799,0.576,0.712,1.171,0.523,0.779,1.089,1.229,0.495,0.737,1.341,0.954,1.38,0.966,0.751,0.732,0.607,1.437,0.815,1.64,2.806,2.331,0.335,1.661,1.178,0.655,1.463,1.201,0.757,1.797,0.703,1.594,0.879,0.967,1.001,0.875,0.757,0.626,0.866,0.826,0.938,1.255 +NM_032194,0.6,0.994,1.39,0.51,1.108,1.469,0.727,1.306,1.358,1.335,0.872,1.648,0.881,0.786,1.057,1.68,1.279,0.752,0.6,0.984,0.387,1.471,1.026,2.09,0.446,0.449,2.148,0.991,0.427,1.305,1.404,1.284,3.303,0.905,0.296,0.452,0.94,1.741,1.494,1.21,1.328,1.022,0.599,0.534,1.063,1.006,1.599,0.689,1.509,0.649,1.165,0.815,0.462,2.802 +NM_032195,1.054,1.064,1.15,1.026,1.053,0.994,0.962,0.9,1.145,1.115,0.959,0.928,0.864,1.161,0.987,0.89,0.938,1.174,1.0,1.059,0.805,0.995,1.04,0.831,0.848,1.011,1.199,0.939,0.726,1.079,1.081,1.08,1.157,0.986,1.0,0.744,1.075,1.035,1.176,0.883,1.155,0.974,1.077,0.803,0.899,1.106,0.964,0.848,0.758,1.053,0.892,0.93,1.151,1.123 +NM_032196,0.933,0.915,1.109,0.906,0.945,0.956,0.901,0.806,1.018,0.983,0.933,0.806,0.839,0.932,1.029,1.016,1.051,0.888,0.992,1.15,0.885,0.765,1.12,0.98,0.953,0.915,0.979,0.771,0.683,1.014,1.018,1.234,1.411,1.125,0.794,1.112,0.91,0.88,1.052,0.896,0.897,1.11,0.824,1.143,1.018,0.964,0.88,0.813,0.945,1.045,1.003,0.858,1.24,1.401 +NM_032204,2.005,0.94,1.942,1.001,2.465,1.221,0.726,1.478,3.053,1.473,0.727,1.574,1.127,1.043,1.022,0.906,2.851,1.283,1.49,0.999,0.666,1.54,0.94,2.213,0.615,1.222,1.359,2.135,0.599,1.478,1.958,0.777,0.592,1.216,3.774,0.56,0.85,1.167,0.998,0.5,2.137,0.885,0.682,0.546,1.922,0.874,1.765,2.087,0.788,1.462,0.947,0.642,1.447,1.249 +NM_032205,0.994,0.896,1.033,1.07,1.104,0.967,1.018,1.101,0.858,1.066,0.838,1.082,0.995,0.965,0.994,0.977,0.954,1.095,0.93,1.049,1.024,1.052,1.083,1.256,0.965,0.959,0.946,0.955,1.094,0.991,0.891,1.055,0.9,0.868,0.94,1.233,1.027,0.92,0.869,1.12,1.145,1.012,0.892,1.012,1.106,1.102,1.03,1.065,1.083,0.935,0.924,1.116,0.983,1.108 +NM_032206,0.907,0.878,0.997,0.795,1.061,0.98,1.009,1.123,0.912,1.047,0.94,1.149,0.97,1.035,0.995,1.11,0.999,1.025,1.012,0.87,0.858,0.991,1.087,0.992,1.04,0.926,1.149,0.983,0.801,1.018,1.01,0.987,1.075,1.096,1.013,0.92,0.994,0.984,1.073,1.126,1.045,1.072,0.91,1.023,0.95,0.886,1.007,0.861,1.039,1.046,0.981,0.857,0.994,1.24 +NM_032207,0.852,1.08,1.221,1.031,1.139,0.969,0.99,0.886,1.039,0.81,1.042,0.977,0.875,0.752,0.976,1.059,0.999,0.941,0.9,1.136,0.989,0.994,1.092,1.017,0.879,0.966,1.048,0.915,0.93,1.181,1.006,1.389,1.001,1.008,0.903,1.037,1.011,0.999,1.021,1.095,1.047,0.937,0.812,0.983,1.007,1.111,0.876,0.88,0.893,0.943,1.006,1.019,1.032,0.975 +NM_032208,0.508,1.756,1.52,0.52,0.854,1.812,0.897,0.533,0.853,0.94,0.884,0.902,0.723,0.585,1.101,1.755,0.873,0.608,0.564,1.344,0.561,0.728,2.61,1.074,0.687,0.496,2.1,1.253,0.333,3.436,0.759,14.78,3.694,3.3,0.392,0.535,0.832,1.538,2.09,1.88,1.456,3.061,0.606,0.502,0.988,1.024,0.949,0.717,0.614,0.644,1.391,1.491,0.743,1.267 +NM_032211,0.992,1.198,1.584,1.072,0.919,0.85,0.885,0.764,0.867,0.964,0.86,0.873,0.964,0.786,0.787,0.822,0.909,1.116,0.838,2.714,0.682,0.929,0.952,1.478,1.015,0.817,1.615,0.892,0.642,1.13,0.852,4.003,1.731,1.172,0.808,1.32,0.914,1.173,1.088,1.169,2.011,1.806,0.899,1.835,0.98,0.919,0.987,0.915,0.89,1.01,1.083,1.153,0.959,1.518 +NM_032213,1.052,0.977,1.009,1.044,1.024,1.155,1.459,0.91,0.864,1.088,1.019,1.016,0.988,1.271,1.401,1.17,0.912,0.961,1.051,0.983,1.013,1.044,0.926,1.044,0.908,0.937,0.951,0.84,3.545,1.061,0.863,1.043,1.473,0.915,0.822,0.901,0.984,1.046,1.234,0.958,0.973,1.126,1.857,1.026,0.792,0.915,0.845,0.984,0.967,0.937,1.089,0.895,1.078,1.043 +NM_032217,0.891,1.022,1.403,0.784,1.025,1.061,0.808,0.794,1.269,1.093,1.135,1.001,0.85,0.785,0.992,1.375,0.996,1.09,0.866,1.013,0.676,1.063,1.156,1.074,0.773,0.657,1.444,0.968,0.666,1.053,1.163,1.258,1.792,0.999,0.647,0.781,0.949,1.343,1.168,1.135,1.057,1.204,0.825,0.762,1.044,0.96,0.939,0.818,1.068,0.881,1.176,0.926,0.736,1.184 +NM_032221,0.909,1.022,1.199,0.87,0.968,0.916,0.832,0.917,1.049,1.139,0.913,0.857,0.923,0.966,1.04,0.961,1.121,0.861,0.956,1.102,0.944,0.851,1.031,0.965,1.0,0.908,1.027,1.073,0.906,1.003,0.96,1.625,1.394,1.039,0.816,0.925,0.985,0.961,0.891,1.078,1.053,0.894,0.846,1.036,0.908,0.981,1.163,0.816,0.885,0.963,0.979,0.893,1.254,1.501 +NM_032222,0.855,1.068,0.767,1.003,0.852,0.912,0.863,0.852,0.782,0.867,1.015,0.986,0.858,1.005,0.973,1.081,0.791,1.017,0.962,1.021,0.76,0.812,1.148,0.809,0.905,0.977,1.008,0.812,0.936,1.138,0.84,1.285,1.484,0.992,0.849,1.291,1.033,0.708,1.079,1.271,0.924,1.104,0.914,1.439,0.978,1.036,0.988,0.815,0.878,0.964,1.245,1.273,0.804,1.661 +NM_032226,0.665,1.029,1.059,0.701,0.91,1.217,0.873,0.734,1.019,0.818,1.195,1.251,0.945,0.748,1.007,1.375,0.649,0.961,0.902,1.44,0.459,0.94,1.29,1.066,0.742,0.673,1.116,0.884,0.489,1.64,0.883,1.153,1.572,1.597,0.362,0.912,1.095,0.841,0.927,0.906,0.927,1.369,0.58,1.265,1.034,1.027,0.815,0.748,0.869,0.67,1.008,1.486,0.651,2.123 +NM_032227,0.591,1.19,0.996,0.676,0.879,1.393,0.571,0.546,0.988,0.83,2.234,0.579,0.467,0.698,1.358,2.97,0.641,0.912,0.944,1.983,0.555,0.773,2.25,0.804,0.633,0.926,0.721,0.915,0.644,1.62,0.892,1.421,1.345,1.396,0.362,1.662,2.04,0.88,1.773,0.811,0.835,1.741,1.411,1.237,0.666,2.356,1.488,0.695,1.681,0.617,1.758,1.066,0.748,1.225 +NM_032228,0.876,0.941,1.383,0.865,1.248,0.967,0.933,1.003,1.389,1.123,0.909,1.046,0.935,0.884,0.911,1.098,1.169,1.137,1.217,0.89,0.929,1.261,0.91,1.424,0.899,0.894,1.353,1.002,1.108,1.057,1.17,0.832,1.618,1.03,0.828,0.976,0.912,1.217,1.085,0.932,1.128,1.05,0.905,0.776,1.245,1.008,1.147,1.031,0.991,1.107,1.092,0.999,1.052,1.184 +NM_032229,0.878,0.849,1.012,0.943,1.15,0.976,1.281,0.85,1.083,0.724,1.178,1.15,0.837,0.833,1.152,1.013,0.858,1.244,1.182,4.529,0.82,0.834,1.268,1.176,0.851,0.785,1.289,0.845,0.917,1.917,0.979,0.936,1.116,1.705,0.735,0.683,0.999,0.829,1.002,0.716,1.243,2.766,0.795,1.619,0.986,0.987,1.083,0.888,0.675,1.007,1.311,0.679,0.874,0.945 +NM_032230,0.804,0.809,1.339,0.953,1.167,1.107,0.691,0.925,1.239,0.91,1.23,0.976,0.81,0.982,1.108,1.22,0.999,0.921,1.297,1.15,0.748,1.054,1.148,1.199,0.707,0.959,1.458,1.096,0.919,1.173,0.972,1.239,1.02,1.335,0.651,0.908,1.001,1.152,0.921,0.71,1.477,1.103,0.767,0.781,0.993,1.023,0.979,0.87,0.953,0.848,0.948,0.785,1.022,1.18 +NM_032231,0.415,1.249,0.78,0.747,0.563,1.693,0.609,0.414,0.767,0.592,1.514,0.616,0.643,0.467,0.943,2.879,0.5,1.009,1.007,1.045,0.325,0.442,1.799,0.717,0.646,0.488,1.167,0.461,0.366,1.166,0.596,0.865,1.96,1.66,0.175,1.167,2.027,0.555,1.683,0.726,0.641,1.053,0.712,1.159,0.601,1.323,0.994,0.392,1.301,0.516,1.084,0.763,0.636,2.263 +NM_032233,0.767,1.127,1.046,0.931,0.926,0.992,0.662,0.502,1.205,0.949,1.204,0.725,0.585,0.7,0.943,1.483,0.862,0.855,0.942,1.077,0.683,0.597,1.406,0.817,0.829,0.806,0.965,0.905,0.61,1.363,0.863,1.66,1.301,1.299,0.585,1.046,1.134,0.77,1.304,0.771,1.069,1.36,0.904,1.505,0.946,1.228,1.129,0.736,1.232,0.81,1.101,0.774,0.946,0.925 +NM_032234,0.87,1.144,0.857,0.682,1.155,1.658,1.181,0.851,1.602,1.27,0.94,1.143,0.988,0.71,0.781,0.743,0.781,0.694,0.796,1.363,0.769,1.092,0.901,1.446,1.094,0.817,1.24,1.102,1.085,1.448,0.652,1.12,1.145,0.825,0.69,1.102,0.807,1.151,1.64,0.873,1.31,1.024,1.093,1.194,0.792,1.854,1.357,0.777,1.699,0.761,0.964,0.788,0.844,1.139 +NM_032236,0.879,0.946,1.25,1.055,0.931,0.999,0.955,0.92,0.895,1.105,0.912,0.932,0.899,0.958,0.746,1.147,1.029,0.861,1.058,0.985,1.048,0.847,1.095,1.165,0.912,0.939,1.055,0.863,0.836,1.232,0.962,1.138,0.847,1.169,0.864,1.082,0.96,0.85,1.035,0.862,0.999,1.17,1.108,1.034,1.36,0.975,0.953,1.129,1.055,1.102,1.077,1.028,1.028,1.551 +NM_032237,1.118,0.975,0.938,0.84,0.964,1.025,1.167,1.37,0.997,0.941,1.107,1.067,0.88,1.1,0.912,0.989,1.041,1.01,1.029,0.848,1.015,1.004,1.09,1.065,0.983,1.105,1.175,1.058,1.169,1.009,1.098,0.919,1.003,1.019,0.958,0.898,0.949,0.973,0.934,1.093,0.904,1.026,1.151,1.028,0.934,0.876,0.943,0.93,1.115,0.923,1.163,0.904,1.015,0.898 +NM_032238,1.116,0.868,1.111,0.823,0.994,0.974,0.952,0.932,1.04,1.033,1.111,0.926,1.199,0.864,1.108,1.133,1.012,0.959,0.908,1.017,1.018,0.943,0.99,1.011,1.07,0.863,1.148,1.025,1.0,0.836,1.047,0.92,1.076,0.977,1.012,1.062,1.054,1.014,1.058,0.964,1.102,0.824,0.965,1.033,1.187,0.965,1.047,1.031,1.085,0.982,0.916,0.985,1.114,1.107 +NM_032239,0.777,1.042,0.943,1.056,0.944,1.091,0.904,0.824,1.196,0.988,0.962,0.925,0.986,0.761,0.942,1.223,0.742,0.788,0.781,1.122,0.733,0.99,1.002,1.062,1.191,0.821,0.906,0.878,0.755,1.042,0.984,1.051,1.186,1.008,0.848,0.762,1.346,0.744,1.516,0.851,1.042,1.154,1.016,0.864,1.008,1.367,0.848,0.848,1.34,0.997,1.047,0.881,0.966,0.988 +NM_032243,1.008,1.059,0.947,1.099,0.918,0.933,1.087,0.953,0.974,1.084,1.043,0.917,1.003,1.06,1.072,1.071,0.831,1.01,0.984,1.043,0.963,0.897,1.021,1.096,0.905,0.99,0.881,0.954,1.232,0.907,1.025,0.992,1.096,0.914,1.215,1.065,0.824,1.02,0.938,1.043,1.065,0.838,0.999,0.913,1.006,1.129,0.989,0.963,0.862,1.017,1.097,1.01,1.087,0.895 +NM_032245,0.922,1.019,1.259,0.998,0.9,0.974,0.871,0.859,1.229,1.025,1.031,0.852,0.92,0.753,0.948,1.145,1.044,0.842,1.056,0.869,0.88,0.967,1.196,0.865,0.878,0.992,1.142,0.87,0.805,0.879,1.007,1.232,1.286,0.897,0.859,0.893,1.005,0.943,1.189,1.523,0.836,0.991,0.905,1.096,1.14,1.002,0.875,1.008,0.935,1.148,0.895,1.124,1.041,1.336 +NM_032248,1.087,1.065,0.944,0.943,1.163,0.947,0.8,0.908,0.965,0.908,0.959,1.074,0.987,0.751,0.922,0.988,1.053,1.001,0.948,1.001,1.023,0.915,0.909,0.943,1.046,1.112,1.009,1.109,0.755,1.128,0.945,0.963,0.834,1.17,1.015,0.864,0.989,1.063,1.108,0.989,0.976,1.0,0.875,0.987,1.014,1.026,0.853,1.072,1.083,1.048,0.952,0.898,1.183,0.889 +NM_032251,0.321,1.496,0.638,1.15,0.555,1.458,1.26,0.365,0.594,0.587,2.391,0.416,0.413,0.482,0.958,1.94,0.724,0.997,0.467,2.22,0.317,0.479,1.603,0.514,1.047,0.517,0.811,0.439,1.203,1.861,0.49,0.774,0.602,2.319,0.381,3.064,1.125,0.397,1.961,1.36,0.684,1.053,1.067,1.331,0.594,1.682,0.832,0.532,1.201,0.4,1.121,1.207,0.609,1.195 +NM_032253,1.011,0.91,1.084,0.912,1.038,1.053,1.132,0.99,0.99,0.971,0.959,0.992,0.94,0.954,0.801,1.075,0.957,1.0,0.881,0.846,1.115,1.024,0.928,1.135,0.88,0.936,0.965,0.972,1.179,1.027,1.112,1.023,1.141,1.028,0.985,0.971,0.913,1.057,1.004,1.074,0.967,1.074,1.045,0.966,0.889,0.986,0.888,1.009,0.952,0.969,1.032,0.95,0.995,1.11 +NM_032254,1.02,1.029,0.953,0.852,0.926,1.047,0.994,1.166,0.996,1.129,0.847,1.02,1.003,0.907,1.145,0.999,1.0,1.093,1.028,0.97,1.218,1.0,0.866,1.034,0.959,1.093,1.04,1.005,0.698,1.106,0.962,1.053,0.917,0.971,0.864,0.916,1.092,0.965,1.104,1.089,1.027,1.108,1.152,0.938,1.065,0.971,0.903,1.019,0.897,0.903,1.078,0.828,1.017,0.911 +NM_032255,0.99,0.935,1.047,0.771,1.054,0.871,0.943,0.953,0.942,0.973,0.928,1.071,1.018,0.847,1.072,0.956,0.997,0.862,1.124,0.905,1.001,0.938,0.986,0.961,1.021,0.904,1.008,0.929,0.763,1.053,0.899,1.151,0.865,1.115,0.925,0.99,1.166,1.015,0.92,1.139,1.021,0.922,0.825,1.089,1.105,1.025,0.849,0.998,1.157,0.987,0.955,0.826,0.873,1.012 +NM_032256,0.921,0.731,1.735,0.619,1.512,0.936,0.604,1.027,1.557,1.222,0.827,1.338,1.031,0.731,0.757,1.189,1.017,1.13,1.572,0.934,0.689,1.317,0.964,1.4,0.629,1.034,1.477,1.532,0.643,0.92,1.213,1.207,1.394,0.931,0.636,0.928,0.911,1.463,0.799,0.735,1.595,0.87,0.654,1.004,1.586,0.768,1.55,1.311,0.836,1.431,0.731,1.042,0.963,0.945 +NM_032257,0.824,1.313,0.804,0.973,0.999,1.677,0.993,0.844,0.889,0.957,1.19,0.872,0.983,0.99,1.046,1.444,0.926,1.229,0.823,1.237,0.976,0.864,1.166,0.883,1.055,0.888,0.989,0.848,1.282,1.161,0.904,0.906,1.051,1.352,0.867,0.91,1.014,0.834,1.252,0.939,0.813,1.263,1.184,1.001,0.878,1.046,0.948,0.967,1.0,0.806,1.242,0.912,0.865,1.036 +NM_032258,0.969,0.988,0.988,0.982,1.083,0.873,0.838,1.05,1.021,0.96,1.114,1.031,1.033,0.933,1.013,1.053,0.91,0.948,0.975,0.975,1.0,0.965,0.971,1.059,0.949,1.013,1.018,0.933,1.046,1.046,1.036,1.096,1.332,1.03,0.95,0.976,1.039,0.799,0.886,1.093,0.964,0.957,1.005,0.949,1.162,0.88,1.003,0.981,1.084,0.968,1.023,0.954,0.917,1.172 +NM_032259,1.086,1.184,1.268,1.151,1.182,1.054,0.883,0.972,0.797,1.041,1.02,1.107,0.914,1.104,0.977,0.89,1.104,0.903,1.261,0.931,1.118,1.073,0.853,1.025,1.11,0.918,0.877,0.811,0.86,1.182,0.863,1.323,1.027,0.994,1.037,0.921,0.946,0.982,1.14,0.891,0.92,0.968,0.947,1.234,1.095,0.914,0.994,0.898,0.901,0.963,0.901,0.909,0.843,0.877 +NM_032260,1.006,1.149,0.947,0.864,0.915,0.942,0.895,0.838,0.973,1.043,1.022,0.979,1.068,0.849,1.112,0.853,1.044,1.013,0.971,1.028,0.878,1.046,1.156,1.133,1.029,0.926,0.876,1.183,0.888,1.011,0.956,1.003,1.183,0.906,1.175,0.954,0.898,1.038,1.096,0.979,1.075,1.036,0.912,1.004,0.974,1.274,1.092,0.864,1.21,1.04,1.012,0.889,0.967,1.137 +NM_032263,0.929,1.1,1.098,0.791,0.942,1.122,0.998,0.906,0.975,0.937,1.002,0.879,0.886,1.045,0.858,1.013,1.038,0.971,1.124,1.126,0.862,0.974,0.992,1.042,0.862,0.926,1.148,0.997,0.792,1.093,0.98,1.488,2.119,1.194,0.856,0.823,1.042,1.14,1.164,0.997,1.161,1.016,0.758,1.094,1.043,0.907,0.915,0.865,0.901,0.877,1.016,0.944,1.092,1.798 +NM_032266,1.14,1.167,0.988,0.921,1.145,0.858,1.094,1.2,0.94,0.972,0.984,1.122,0.929,0.939,1.016,0.911,0.99,1.041,0.868,0.939,0.975,1.143,0.925,1.008,1.006,1.096,0.955,0.909,1.261,0.92,1.015,1.036,1.039,0.892,1.275,1.014,0.977,1.0,1.107,1.004,0.973,1.05,1.073,0.941,1.01,1.036,1.049,1.072,1.07,1.016,1.047,0.964,1.081,1.032 +NM_032267,0.842,1.045,0.983,1.062,1.091,1.03,1.151,0.949,0.999,1.034,0.836,0.891,0.92,1.06,1.113,1.157,1.077,1.187,1.089,0.922,1.011,0.853,1.026,0.969,0.902,0.833,1.265,0.949,1.001,1.011,0.892,1.002,1.219,1.046,1.085,1.014,0.975,0.963,1.013,0.881,0.9,1.022,1.001,0.925,0.988,1.082,1.054,1.064,0.979,1.133,1.002,0.952,0.987,1.031 +NM_032269,0.988,1.124,0.941,1.031,1.095,1.12,0.957,0.911,0.994,1.118,0.837,1.084,1.028,0.918,1.02,1.356,1.077,0.966,0.889,1.07,0.925,0.839,1.053,1.003,0.985,0.95,1.026,0.991,0.61,1.042,0.98,0.982,1.055,1.033,0.944,0.954,0.948,1.027,0.975,0.933,0.933,0.926,0.899,1.207,1.064,1.136,1.05,0.927,1.09,1.003,1.028,0.956,0.958,1.05 +NM_032270,0.909,0.952,1.173,0.811,0.879,0.938,0.989,0.886,0.903,0.909,0.969,0.849,0.907,0.924,0.981,0.807,0.937,0.89,0.818,0.793,0.903,0.854,1.169,0.937,0.893,0.887,1.239,1.005,1.116,1.176,0.902,1.744,2.261,1.036,1.022,1.048,1.011,0.981,1.315,1.68,0.937,1.205,1.083,1.056,0.96,0.923,1.009,0.895,0.966,0.958,1.077,1.656,1.271,1.549 +NM_032271,0.713,0.807,1.412,0.559,1.026,1.4,0.601,0.886,1.134,1.069,1.296,1.075,0.855,0.86,1.099,2.207,1.164,1.075,2.1,0.93,0.594,0.865,0.949,1.325,0.462,0.911,1.404,0.924,0.558,1.006,1.155,1.289,4.743,1.227,0.655,0.835,0.918,1.146,1.371,0.869,1.168,0.861,0.749,1.073,1.092,0.783,1.237,1.096,0.95,0.957,0.89,0.637,1.01,0.717 +NM_032272,0.812,0.986,0.941,0.85,0.695,1.087,0.746,0.785,0.818,0.748,0.846,0.941,1.117,0.584,0.842,1.524,0.885,0.852,1.269,1.028,0.872,0.947,0.969,1.085,0.82,1.091,1.118,0.833,0.622,0.923,0.991,1.55,2.227,1.27,0.629,1.022,0.887,1.006,1.347,1.238,0.851,1.096,0.679,1.543,0.914,0.835,1.018,1.232,0.825,1.051,0.86,0.732,0.85,1.156 +NM_032273,0.633,1.168,1.087,0.824,0.822,1.282,0.568,0.675,1.269,0.879,1.59,0.921,0.687,0.67,1.066,2.134,0.864,0.877,1.702,0.832,0.71,0.643,1.213,1.156,0.673,0.722,1.196,0.85,0.412,1.627,0.997,1.006,3.15,1.791,0.235,1.28,1.246,0.794,1.576,0.503,1.141,1.017,0.698,0.824,1.003,1.074,0.935,0.703,1.064,0.641,0.935,0.785,1.064,2.115 +NM_032276,0.798,1.085,1.048,0.797,0.958,0.973,0.965,0.702,0.814,0.976,1.047,0.917,0.742,0.657,0.952,1.191,1.033,0.872,1.195,0.873,0.853,0.875,1.097,1.052,0.799,0.752,1.168,0.763,0.713,1.02,0.859,1.311,2.193,1.173,0.57,1.079,0.969,0.965,1.042,1.331,1.073,1.055,0.905,1.635,1.078,1.006,0.909,0.76,1.037,0.83,1.056,0.839,0.946,2.262 +NM_032280,0.816,0.839,1.317,0.8,1.012,1.149,0.686,0.736,1.235,0.994,1.157,0.901,0.775,0.798,1.0,1.315,0.909,0.913,1.369,0.996,0.788,0.801,0.963,1.138,0.56,0.925,1.338,0.873,0.431,0.972,1.082,1.173,1.518,1.278,0.614,0.936,0.927,1.029,1.394,0.721,1.316,0.911,0.561,1.118,1.123,0.923,0.881,0.767,0.889,0.879,1.031,0.721,1.073,1.487 +NM_032281,2.35,0.853,3.806,1.172,2.795,0.75,0.742,2.899,1.656,3.468,0.759,2.786,3.023,0.86,1.181,1.175,5.181,1.484,2.322,0.732,1.649,1.391,0.757,2.015,0.747,0.933,3.08,2.033,0.677,0.801,1.995,0.753,1.497,0.718,6.273,0.823,0.786,2.172,0.834,0.675,2.642,0.813,0.669,0.791,4.844,0.758,2.981,1.537,0.958,5.502,1.155,1.451,3.257,1.01 +NM_032283,1.17,0.887,1.21,1.065,0.85,1.058,0.874,0.936,1.064,1.014,0.834,0.986,0.962,1.011,0.89,0.869,1.086,0.997,1.271,0.824,1.156,1.165,0.919,1.425,0.815,1.169,1.102,0.967,0.666,1.007,1.024,1.014,1.054,0.852,0.862,0.891,0.8,1.097,1.245,1.359,1.275,1.007,0.987,0.993,1.246,0.95,0.924,1.165,0.828,0.95,0.884,1.119,1.205,1.356 +NM_032286,0.762,0.845,1.305,0.76,0.878,1.102,0.931,0.537,0.978,0.974,1.096,0.705,0.696,0.648,0.844,1.282,0.858,0.984,1.039,1.027,0.558,0.754,1.204,1.009,0.698,0.879,1.078,0.911,0.64,1.087,0.935,1.359,2.028,1.693,0.33,1.504,0.998,0.717,1.015,1.3,1.156,0.994,0.706,1.857,1.064,1.098,1.091,0.816,0.811,0.844,0.976,1.558,1.001,1.822 +NM_032288,0.861,0.757,1.898,0.623,1.365,1.295,0.83,1.621,1.35,1.017,0.789,1.284,1.361,0.8,1.212,1.954,1.325,1.044,0.527,0.95,0.406,1.701,0.892,1.936,0.521,0.494,1.539,1.303,0.5,1.191,2.381,1.409,2.819,0.922,0.53,0.376,0.991,2.015,1.435,0.749,1.108,0.902,0.584,0.458,1.234,0.817,1.156,1.156,1.033,0.961,1.104,0.763,0.425,1.559 +NM_032289,1.019,1.048,1.051,0.969,0.968,0.974,1.138,1.08,1.044,1.017,0.82,0.974,1.022,1.019,0.913,1.164,1.068,1.017,0.915,0.899,0.891,1.087,0.947,0.935,1.026,1.038,0.791,1.023,1.201,1.134,1.076,1.03,0.869,0.948,0.976,0.913,0.927,0.87,0.963,0.999,0.979,0.851,1.125,1.038,0.985,1.111,0.942,1.112,1.051,1.088,1.037,0.849,1.002,0.974 +NM_032290,0.989,1.065,1.008,0.875,0.986,1.015,0.878,0.936,0.937,1.152,0.992,0.933,0.975,1.005,1.061,0.952,1.118,0.947,1.167,0.927,0.882,0.882,0.992,0.934,1.006,0.955,1.369,0.964,1.345,0.818,0.944,0.983,1.56,1.012,0.897,0.935,0.932,0.931,1.166,1.015,1.059,0.854,1.118,1.003,0.95,1.06,1.239,1.058,1.382,0.929,1.094,1.025,0.928,1.221 +NM_032291,0.928,0.968,0.993,0.983,1.138,1.058,0.835,0.943,1.12,1.003,0.937,0.959,1.075,0.983,1.033,1.364,1.114,0.927,1.003,1.044,0.956,1.057,1.111,0.882,0.874,0.957,0.97,1.122,0.728,0.999,1.037,1.666,1.005,1.17,1.072,0.966,0.987,0.943,0.963,0.939,1.134,1.203,0.877,0.843,0.946,1.075,1.076,1.26,0.955,1.06,0.999,0.865,0.975,0.979 +NM_032292,0.995,0.992,1.03,0.999,1.008,0.803,1.511,0.799,0.972,1.008,1.105,0.924,1.131,0.828,1.141,0.844,1.011,1.027,1.125,0.977,1.077,0.962,1.167,1.037,1.003,0.941,1.077,0.956,1.331,0.912,1.013,1.118,1.399,0.939,1.04,1.097,0.972,0.953,1.005,1.329,1.001,1.043,1.286,1.157,0.904,0.91,0.99,0.858,1.021,1.045,1.042,0.877,0.917,1.06 +NM_032293,1.025,1.349,0.993,1.053,0.974,0.958,1.031,0.985,1.102,0.952,0.93,1.0,0.986,0.839,1.032,0.913,0.972,0.834,0.983,1.237,0.971,1.065,1.059,1.021,1.108,1.125,0.983,0.978,1.252,1.087,0.866,1.385,1.174,1.368,0.955,1.032,0.973,1.072,0.921,1.327,1.031,1.335,0.968,0.993,1.056,0.91,0.879,1.0,0.989,1.044,0.851,0.857,0.99,1.008 +NM_032295,0.41,0.87,0.822,0.663,0.513,1.453,0.732,0.476,0.594,0.636,1.824,0.531,0.488,0.636,1.299,2.395,0.511,0.978,0.88,1.112,0.523,0.433,1.826,0.635,0.645,0.42,0.866,0.471,0.562,1.546,0.569,1.292,1.087,1.83,0.293,0.796,1.566,0.525,1.129,0.825,0.565,1.55,1.001,1.145,0.655,1.452,1.051,0.527,0.991,0.538,1.29,0.857,1.077,1.721 +NM_032296,0.882,0.872,1.262,0.755,1.065,1.038,0.74,0.627,0.996,0.796,0.708,0.827,0.975,0.779,1.003,1.403,1.154,0.999,1.177,0.986,0.895,0.87,0.972,0.798,0.884,1.001,1.494,0.906,0.751,1.015,0.812,1.737,1.953,1.245,0.675,0.761,0.875,1.111,1.367,1.003,1.008,1.033,0.698,1.363,1.073,0.725,0.774,0.807,0.793,1.12,0.955,0.916,1.13,1.203 +NM_032297,1.026,1.193,0.971,0.881,1.037,0.964,1.209,0.988,0.974,1.029,0.892,0.914,0.953,0.848,0.907,0.888,1.142,0.964,0.981,1.034,0.967,1.025,1.042,0.976,0.961,1.085,1.02,1.065,0.737,0.962,1.02,1.212,0.858,1.015,1.074,0.978,0.906,1.062,1.046,1.056,1.054,0.994,0.981,0.973,0.974,0.95,1.072,1.069,1.096,0.942,0.926,1.02,0.956,0.954 +NM_032298,0.916,1.057,0.98,1.045,1.051,0.982,1.107,0.926,1.027,1.011,1.015,0.972,0.953,0.917,0.963,0.776,1.083,1.001,0.892,1.001,0.9,0.984,1.017,0.992,0.886,1.146,0.86,1.013,1.123,1.06,0.922,1.08,0.905,1.106,1.157,1.085,1.009,1.051,1.066,1.019,1.018,0.931,0.99,1.142,0.956,0.87,0.874,0.85,1.134,0.991,1.054,0.904,0.882,1.006 +NM_032299,0.688,0.919,1.246,0.622,1.2,0.986,0.718,0.802,1.491,1.766,0.718,1.664,0.942,0.552,0.806,1.524,1.059,1.169,1.067,0.838,0.548,1.049,1.242,1.756,0.484,0.787,1.488,0.911,0.528,0.674,1.15,0.932,2.091,0.865,0.376,1.931,0.952,1.049,1.481,1.17,1.256,0.745,0.571,1.023,1.515,0.733,1.408,0.967,0.955,0.959,0.905,1.104,1.041,1.724 +NM_032300,1.101,0.849,1.375,0.97,1.112,0.913,0.764,0.893,1.323,1.155,0.94,0.871,0.941,1.046,0.835,1.03,1.385,0.96,1.515,0.804,1.286,1.003,1.112,1.315,0.74,1.063,1.509,1.183,0.738,0.93,1.305,0.819,1.481,0.89,0.978,0.84,0.816,0.964,0.876,0.923,1.386,1.117,0.812,1.02,1.397,0.991,1.084,1.103,0.875,1.317,0.865,1.077,1.218,1.062 +NM_032301,0.928,1.016,1.165,0.834,1.117,0.8,0.655,0.702,1.138,1.063,0.836,0.999,0.827,0.814,1.019,1.031,1.02,1.058,0.942,0.957,0.766,0.808,1.452,1.157,0.679,1.134,1.262,0.96,1.009,0.978,1.004,1.216,0.918,1.063,0.608,0.974,0.88,1.261,0.936,0.776,1.001,0.994,0.759,1.062,1.094,0.988,0.982,0.948,1.008,1.088,1.123,1.081,1.066,1.166 +NM_032302,0.695,0.693,0.85,0.917,0.737,1.33,0.542,0.523,1.043,1.081,1.091,0.952,0.822,0.569,0.812,1.487,0.746,1.013,1.223,0.748,0.669,1.007,1.514,1.152,0.615,0.851,1.075,0.692,0.571,1.109,0.847,1.238,2.276,1.161,0.351,1.142,0.993,1.011,1.731,1.11,0.902,0.927,0.62,1.843,1.063,0.878,1.05,0.866,0.957,0.814,1.151,1.084,0.958,1.753 +NM_032305,0.452,1.628,1.097,0.622,0.878,2.064,0.909,0.767,1.102,0.711,1.104,0.858,0.744,0.593,1.015,1.989,0.736,1.151,0.966,1.65,0.475,0.816,1.133,0.787,0.66,0.639,1.013,0.894,0.845,1.541,0.861,1.78,1.635,2.252,0.321,1.136,1.218,0.927,1.416,0.756,0.873,1.435,0.572,1.031,0.67,1.077,0.98,0.743,0.589,0.566,1.299,0.552,0.62,1.857 +NM_032306,0.717,1.134,1.033,0.659,0.99,1.224,0.487,1.064,1.131,0.872,1.434,0.998,1.337,0.473,0.983,2.1,0.835,1.031,1.521,1.034,0.556,1.119,1.599,1.364,0.657,1.101,0.981,1.006,0.423,0.891,1.039,0.963,1.728,1.447,0.649,0.853,1.272,1.125,1.105,0.533,0.991,1.473,0.538,0.897,0.909,0.744,0.846,1.446,0.876,0.845,0.9,0.439,0.74,1.002 +NM_032308,0.579,1.061,1.342,0.807,0.838,1.717,0.823,0.56,1.086,0.912,1.04,1.219,0.671,0.644,0.99,1.314,0.711,1.162,1.082,1.298,0.448,0.796,1.417,0.886,0.722,0.587,1.286,0.706,0.531,1.475,0.826,1.563,1.285,1.949,0.297,0.745,1.168,0.923,0.957,0.887,0.96,1.173,0.976,0.701,0.719,1.046,1.04,0.549,0.839,0.639,1.174,0.701,0.94,2.18 +NM_032309,0.845,0.781,0.891,0.884,0.829,1.044,0.604,0.673,0.891,0.877,1.125,0.956,0.961,0.601,0.898,1.421,0.981,1.037,1.36,1.046,0.846,0.947,1.267,1.106,0.723,1.252,0.888,0.817,0.582,0.935,0.753,1.294,1.084,1.342,0.492,1.017,0.873,0.941,1.325,1.137,0.953,1.09,0.532,1.927,1.238,0.774,0.976,1.179,0.72,0.972,0.972,0.794,1.021,1.472 +NM_032310,0.363,1.06,0.765,0.796,0.746,1.735,0.657,0.317,0.545,0.928,1.352,0.714,0.438,0.441,1.031,1.378,0.55,0.734,0.536,1.597,0.368,0.516,1.175,0.642,0.651,0.505,0.758,0.629,0.508,1.206,0.499,3.171,1.134,1.285,0.178,1.021,1.284,0.694,2.158,1.553,0.835,1.09,1.571,1.071,0.711,1.497,1.231,0.51,1.964,0.577,1.277,0.836,0.847,2.44 +NM_032311,1.08,1.111,1.19,0.97,1.015,0.898,0.989,0.954,1.06,1.002,1.083,0.849,0.982,0.762,0.894,1.081,0.851,1.14,1.271,1.077,0.867,0.95,1.077,1.047,0.987,1.12,0.952,1.158,0.939,0.935,1.044,1.026,0.982,1.032,0.998,0.962,1.113,0.802,0.962,1.005,0.969,1.084,0.887,1.084,1.13,0.895,1.069,0.859,0.882,1.049,1.02,1.121,0.975,0.965 +NM_032312,0.697,0.78,1.849,0.541,1.742,1.379,0.679,2.03,1.614,0.873,0.749,1.024,1.253,0.617,1.392,2.029,1.361,1.028,0.983,0.963,0.427,1.592,1.132,1.24,0.406,0.578,1.374,1.158,0.396,0.992,2.346,0.994,2.448,1.14,1.868,0.492,0.78,1.703,1.185,1.091,1.224,0.999,0.5,0.642,1.279,0.86,1.254,1.492,1.005,1.035,1.087,0.564,0.538,1.57 +NM_032313,0.698,1.081,1.209,0.844,0.879,1.286,0.708,0.663,1.098,0.94,1.402,0.904,0.778,0.915,0.979,1.295,0.907,0.929,1.309,1.071,0.691,0.774,1.565,1.13,0.616,0.901,1.326,0.951,0.472,1.233,0.925,1.198,1.637,1.455,0.449,0.777,1.101,1.083,1.115,0.952,0.972,1.239,0.713,1.016,0.928,1.001,0.932,0.706,0.924,0.829,1.075,0.692,1.037,1.111 +NM_032314,0.716,0.841,1.111,0.821,0.871,1.339,0.739,0.53,1.075,0.77,1.218,0.82,0.696,0.774,1.143,2.07,0.902,0.871,1.145,1.079,0.599,0.649,1.351,0.858,0.843,0.799,1.254,0.712,0.498,1.263,0.918,1.009,1.456,1.584,0.405,1.196,1.26,0.686,1.352,1.217,1.017,0.963,1.131,1.019,1.015,1.239,0.991,0.639,1.14,0.773,1.227,0.9,0.827,1.262 +NM_032315,0.803,1.364,0.9,0.874,0.852,1.041,0.919,0.575,0.986,1.172,1.252,0.885,0.783,0.739,0.956,1.479,0.755,0.825,0.842,1.194,0.551,0.77,1.472,1.121,0.718,0.806,0.906,0.88,0.574,0.948,0.852,1.376,1.992,1.172,0.407,1.112,1.163,0.67,2.265,1.56,0.871,1.287,1.505,1.819,0.855,1.273,1.323,0.675,1.129,0.711,1.347,0.994,1.374,2.259 +NM_032317,1.055,0.902,0.937,0.74,0.929,0.964,0.95,0.938,1.091,0.965,1.07,0.879,1.01,1.003,0.889,1.011,1.027,0.885,1.011,0.912,0.817,1.045,0.963,1.169,0.999,1.043,1.002,1.034,0.827,1.177,0.836,1.059,1.038,1.005,0.819,0.902,1.003,0.945,1.004,0.967,0.906,0.973,0.951,1.019,1.004,0.932,1.11,0.973,0.941,0.897,0.955,0.983,0.968,1.074 +NM_032318,1.145,1.04,1.076,1.003,1.047,1.161,0.83,1.184,1.293,1.131,0.994,1.021,1.107,0.827,1.035,1.144,0.876,1.01,1.254,0.923,0.759,1.066,0.997,1.117,0.814,0.914,1.0,1.345,0.778,1.038,1.206,1.09,1.016,1.028,1.524,0.671,0.928,1.163,1.198,0.934,1.32,0.952,0.807,0.96,1.138,0.954,1.052,1.194,0.91,0.937,0.873,0.763,1.118,1.428 +NM_032319,0.648,1.113,0.998,0.657,0.777,1.388,0.743,0.818,1.116,0.929,1.02,1.098,1.102,0.585,0.803,2.339,0.799,1.01,0.985,0.897,0.507,1.077,1.646,1.108,0.808,0.766,1.181,0.878,0.653,0.892,1.008,1.155,2.199,1.488,0.419,0.73,1.087,1.092,1.802,0.788,0.869,1.371,0.696,0.858,1.008,0.92,1.054,0.881,1.113,0.996,1.002,0.667,0.713,1.268 +NM_032320,0.852,0.875,1.617,0.804,1.096,1.172,0.651,0.638,1.507,1.285,0.895,0.773,0.757,0.753,0.852,1.252,1.171,1.084,1.323,0.849,0.59,1.184,0.972,1.624,0.517,0.91,2.191,0.986,0.522,1.474,1.363,0.771,1.36,1.183,0.663,0.816,0.833,1.192,1.121,0.723,1.387,0.81,0.637,0.855,1.227,0.994,1.175,1.009,1.092,0.972,1.013,0.888,0.806,1.211 +NM_032321,0.679,2.733,0.93,1.389,0.79,2.884,0.969,0.916,0.961,0.637,2.431,0.72,0.676,0.886,2.915,3.916,0.754,1.44,0.654,3.362,0.68,0.879,2.828,0.814,0.712,0.802,0.865,0.766,0.755,2.353,0.801,2.284,1.144,2.942,0.702,0.907,5.385,0.889,1.284,0.833,0.819,3.12,2.493,4.17,0.802,3.527,1.342,0.83,3.056,0.738,3.939,0.925,0.799,3.22 +NM_032322,0.982,0.999,0.928,0.839,0.975,1.044,0.858,0.959,1.03,1.203,1.06,0.992,0.847,1.067,0.808,0.933,0.949,1.068,1.122,0.872,0.936,0.929,1.067,1.077,0.936,1.049,0.949,0.909,1.037,0.965,1.081,0.988,1.185,1.011,0.988,1.004,0.879,1.079,1.182,0.878,1.081,1.221,0.958,1.15,0.895,1.094,0.982,0.926,1.052,0.927,0.91,0.925,1.021,1.028 +NM_032324,0.634,1.027,1.158,0.657,0.949,1.477,0.311,0.746,1.397,1.041,1.117,0.997,0.495,0.604,1.127,1.184,0.939,0.536,1.636,1.044,0.439,0.684,1.262,1.08,0.443,0.716,1.446,0.808,0.459,1.151,1.221,1.665,3.823,0.879,0.41,1.23,0.976,0.981,1.621,0.645,1.067,1.121,0.529,1.319,0.588,0.773,0.945,0.82,0.956,0.791,1.029,0.544,0.7,2.373 +NM_032326,0.611,1.221,1.261,0.749,0.918,1.399,0.942,0.481,1.121,0.986,0.877,0.732,0.585,0.555,0.939,1.126,0.97,0.886,1.026,1.234,0.516,0.717,1.226,0.836,0.845,0.708,1.196,0.797,0.784,1.587,0.741,1.532,1.437,1.607,0.375,0.786,1.12,0.859,1.481,0.832,0.942,1.445,0.794,1.066,1.039,1.181,1.205,0.681,0.844,0.674,1.183,0.696,0.913,1.031 +NM_032329,0.938,1.068,1.429,0.7,1.172,0.904,0.804,0.923,1.419,1.038,0.894,0.869,0.952,0.865,1.232,0.914,1.193,0.832,0.881,1.0,0.711,1.021,1.369,1.0,0.798,0.857,1.548,1.028,0.568,0.936,1.357,1.789,2.134,1.103,0.854,0.845,0.817,0.975,1.155,1.113,1.19,1.063,0.921,1.118,0.944,0.911,0.923,0.89,0.798,0.84,0.892,0.913,0.805,4.141 +NM_032330,1.947,0.358,7.784,1.118,5.056,0.32,0.357,2.707,5.469,3.575,0.357,5.515,2.912,1.669,2.322,1.203,2.919,2.573,4.705,0.396,1.924,5.785,0.424,2.733,0.382,2.292,3.219,4.469,0.371,0.386,4.125,0.344,1.69,0.401,0.432,0.384,0.342,4.887,0.307,0.427,6.03,0.386,0.381,0.356,3.268,0.403,2.163,2.899,0.41,2.966,0.968,0.794,1.76,0.802 +NM_032331,0.638,1.402,0.876,0.55,0.938,0.978,0.559,0.452,1.109,1.474,1.301,1.307,0.621,0.511,0.879,1.347,0.794,0.782,1.271,0.863,0.509,0.669,2.035,1.357,0.438,0.668,1.067,0.768,0.321,0.917,0.759,1.804,2.964,0.938,0.229,1.704,1.211,0.709,1.27,0.857,1.055,1.004,0.768,1.857,0.952,1.284,1.698,0.589,1.117,0.727,1.097,1.518,1.175,3.767 +NM_032332,0.987,1.13,0.951,0.841,1.062,0.914,0.93,0.727,1.005,0.97,0.882,0.865,0.999,0.719,0.768,1.069,0.859,0.857,0.939,0.957,0.857,0.86,1.188,0.998,0.893,0.992,1.013,0.806,0.888,1.001,0.87,1.429,1.189,1.225,0.842,1.385,0.938,0.824,1.115,1.722,0.998,1.076,0.832,1.5,0.81,1.032,0.998,1.091,1.096,0.92,0.932,1.278,0.919,1.495 +NM_032334,0.762,1.031,0.967,1.023,0.969,1.003,0.792,0.703,0.987,1.149,0.99,0.764,0.997,0.916,0.992,0.929,0.932,0.821,0.8,1.109,0.857,0.832,1.057,0.881,0.806,0.919,1.243,1.029,0.861,1.038,0.881,1.514,1.741,0.87,0.674,1.223,0.953,0.925,1.243,1.166,1.174,1.034,1.007,1.412,0.98,1.308,1.116,0.877,1.253,0.812,0.909,0.953,0.876,1.38 +NM_032335,1.7890000000000001,2.214,1.6800000000000002,2.012,1.9929999999999999,2.151,1.935,2.068,2.158,1.813,1.867,1.8719999999999999,2.0,1.755,2.052,1.809,2.023,2.135,1.918,2.013,1.9569999999999999,1.998,2.126,1.944,2.162,2.166,2.158,1.976,1.625,2.048,2.105,1.862,2.0949999999999998,2.005,1.911,2.011,1.9369999999999998,2.175,2.1959999999999997,2.0140000000000002,2.0860000000000003,2.0340000000000003,1.822,2.15,2.088,1.831,2.197,2.061,1.935,1.992,2.077,2.149,2.0,2.022 +NM_032336,1.121,0.989,1.067,0.982,1.108,0.903,0.944,0.949,1.082,0.955,0.943,0.981,0.993,0.979,1.002,1.079,0.891,0.876,0.893,0.887,1.042,0.831,1.2,0.926,0.893,1.0,1.229,1.001,0.605,1.045,0.939,1.141,2.317,1.008,0.875,0.986,1.069,1.026,1.15,1.086,0.91,0.91,1.169,1.159,0.994,1.077,1.126,0.915,1.404,0.951,1.21,1.082,0.905,1.456 +NM_032339,0.875,1.1,0.975,1.168,0.882,1.384,0.797,1.022,0.921,0.683,1.075,1.059,1.175,0.656,0.871,1.372,0.917,0.951,0.846,0.924,0.734,1.011,0.882,0.978,0.932,0.881,0.936,0.846,0.772,1.099,1.106,1.143,3.757,1.545,1.317,0.893,1.001,1.003,1.689,0.64,0.899,1.112,0.687,1.364,0.994,0.85,0.812,1.105,0.961,0.754,0.948,0.858,0.775,0.892 +NM_032340,0.924,1.048,0.874,1.038,1.037,1.089,0.594,0.532,1.285,1.031,0.909,1.021,0.982,0.598,0.826,1.175,0.888,1.05,1.626,0.838,0.627,1.129,1.044,1.363,0.883,1.204,0.931,0.788,0.739,0.709,0.82,1.373,2.156,1.309,0.519,1.115,0.732,1.021,2.013,0.933,1.003,0.987,0.504,2.006,1.067,0.593,0.756,1.522,0.691,0.938,0.896,0.687,1.023,1.58 +NM_032341,1.095,0.99,1.098,0.887,1.024,0.923,0.879,0.992,1.049,1.039,1.008,1.077,1.017,1.025,0.968,1.129,0.998,1.068,0.915,0.948,0.916,0.974,1.083,1.03,0.967,0.959,1.17,1.086,0.849,1.153,1.039,1.001,1.014,1.081,0.982,0.949,0.921,1.111,0.995,1.178,1.067,0.981,0.97,1.027,0.877,0.993,1.101,1.036,0.996,1.118,1.072,0.918,0.977,0.937 +NM_032342,0.616,1.078,0.848,0.673,0.964,1.621,0.801,0.558,1.074,0.93,1.288,0.866,0.631,0.654,0.944,1.991,0.645,1.388,1.204,1.529,0.422,0.91,1.561,1.374,0.638,0.62,0.759,0.924,0.75,1.776,0.8,1.798,1.124,2.029,0.209,0.975,1.133,0.741,1.311,0.311,0.947,1.364,0.552,0.965,0.639,1.397,0.819,0.822,1.005,0.555,1.264,0.616,0.622,0.988 +NM_032343,0.831,1.117,1.07,0.879,1.025,1.03,0.775,0.712,1.085,0.898,0.846,1.175,1.059,0.73,0.975,1.275,0.878,0.974,1.091,0.894,0.654,0.893,1.206,1.084,0.825,1.048,1.077,1.023,0.777,0.912,1.106,1.479,3.368,1.466,0.658,0.926,0.794,1.047,1.305,0.935,0.943,0.96,0.861,1.004,1.142,0.734,0.869,0.985,0.794,0.884,0.901,1.054,1.209,1.174 +NM_032345,0.983,0.648,1.415,0.679,1.15,1.096,0.462,1.157,1.411,1.006,0.763,1.566,1.138,0.938,1.222,1.463,1.181,0.947,1.799,0.745,0.857,1.648,0.858,1.581,0.447,1.184,1.16,1.097,0.477,0.711,1.092,0.548,1.441,0.821,0.457,0.704,0.798,1.228,1.087,0.642,1.521,0.765,0.499,1.215,1.13,0.673,1.023,1.3,0.839,1.178,0.74,0.477,0.941,1.186 +NM_032346,0.703,1.255,0.798,0.816,0.838,1.051,0.753,0.567,0.906,1.045,0.976,1.054,0.891,0.719,0.751,1.03,0.844,0.822,0.968,1.152,0.861,0.649,1.518,1.023,0.818,0.737,0.826,0.766,0.747,1.0,0.769,0.991,2.684,1.292,0.517,1.584,1.11,0.863,1.707,0.873,0.883,1.073,0.95,2.088,1.0,0.822,1.036,0.75,0.929,0.818,1.091,1.198,0.999,1.882 +NM_032348,0.79,1.204,0.898,1.011,1.014,1.038,1.038,0.757,0.911,0.781,0.991,0.749,0.887,0.88,0.905,0.854,0.873,0.784,0.791,1.103,0.859,0.792,1.455,0.852,1.057,0.739,0.763,0.756,0.961,2.104,0.931,12.27,1.102,1.538,0.842,0.95,1.061,0.982,1.45,2.578,1.033,1.564,0.964,0.926,0.902,1.189,0.832,0.782,0.813,0.866,1.215,1.346,0.861,1.137 +NM_032349,0.708,1.067,0.786,0.847,0.831,1.164,0.902,0.501,0.873,0.873,1.163,0.69,0.689,0.532,0.753,1.435,0.755,0.846,1.145,1.082,0.845,0.753,1.668,0.862,0.939,1.227,0.818,0.698,0.68,1.221,0.723,1.69,1.611,1.435,0.664,0.999,1.275,0.761,1.426,0.973,0.762,1.173,0.811,1.702,0.911,1.115,0.948,0.93,1.316,0.844,0.968,0.899,0.897,1.098 +NM_032350,0.587,1.015,0.873,0.468,0.841,1.282,0.659,0.48,1.084,1.008,0.833,1.141,0.581,0.486,0.468,1.425,0.745,1.069,1.339,0.726,0.415,0.653,1.537,1.017,0.611,0.805,0.977,0.741,0.444,1.61,0.788,2.208,2.608,1.588,0.128,1.089,0.809,0.845,1.298,1.0,0.866,1.17,0.525,2.479,1.127,0.794,1.732,0.704,0.654,0.625,1.001,1.362,0.863,2.102 +NM_032351,0.466,1.462,1.208,0.55,1.006,1.09,0.704,0.698,0.886,0.922,0.892,1.001,0.731,0.462,0.945,1.302,0.87,0.865,1.133,1.18,0.499,0.945,1.554,1.126,0.63,0.655,1.468,0.847,0.614,1.108,0.941,1.724,2.361,1.331,0.316,0.954,1.036,0.918,1.818,0.892,1.004,1.38,0.562,1.381,0.905,0.918,0.948,0.716,1.324,0.844,0.967,0.788,0.701,2.246 +NM_032353,1.047,0.833,0.933,0.97,0.897,1.087,0.481,0.732,1.138,1.112,1.234,1.099,0.966,0.762,0.945,1.365,0.859,0.974,1.383,0.782,0.716,1.007,0.835,1.252,0.673,1.42,1.074,0.891,0.562,0.943,0.919,1.092,1.373,1.206,0.269,0.589,0.993,1.025,1.422,0.774,1.222,0.948,0.744,1.659,1.089,0.894,1.053,1.295,0.871,0.789,0.813,0.685,1.07,1.06 +NM_032355,0.722,1.002,0.97,0.81,0.807,1.201,0.715,0.512,1.054,1.259,1.567,0.925,0.76,0.62,0.935,1.964,0.953,0.898,1.072,0.867,0.635,0.768,1.677,1.108,0.83,0.811,0.874,0.662,0.782,1.477,0.782,1.291,1.278,1.201,0.39,1.136,2.209,0.898,1.654,0.765,1.011,1.412,1.245,1.097,1.185,1.682,0.931,0.724,1.379,0.879,1.369,0.948,0.921,2.082 +NM_032356,0.712,0.806,0.979,0.903,0.75,0.96,0.609,0.561,0.814,0.953,1.406,1.138,1.313,0.489,0.697,1.496,0.894,1.322,1.592,0.793,0.634,1.081,1.28,1.183,0.827,0.881,1.35,0.668,0.413,1.274,0.677,1.26,1.418,1.586,0.159,1.324,1.011,1.006,0.991,0.777,0.959,1.193,0.498,1.139,0.971,0.688,0.989,1.225,0.905,0.731,0.867,0.905,1.076,1.307 +NM_032358,0.913,1.185,1.268,0.946,0.978,0.943,0.809,0.832,1.181,0.946,0.94,0.962,0.743,0.985,1.001,1.02,1.04,0.692,1.169,1.177,0.954,0.944,1.12,1.154,0.845,0.896,1.776,0.914,1.457,1.026,0.941,1.181,2.946,1.106,0.703,1.19,0.942,0.999,1.205,1.034,0.989,0.877,0.876,1.231,1.409,1.026,0.911,0.939,0.987,1.113,1.001,0.895,1.072,1.382 +NM_032359,0.793,1.261,1.022,0.874,0.929,0.824,0.637,0.634,1.064,1.302,0.873,1.137,0.772,0.701,0.859,0.944,1.019,0.783,0.962,0.834,0.709,0.924,1.379,1.35,0.854,0.855,1.394,1.12,0.624,0.755,0.896,1.991,4.622,0.997,0.431,1.859,0.874,1.181,1.771,0.912,1.324,1.094,0.718,2.134,1.251,0.897,1.155,0.8,1.24,0.908,1.109,1.367,1.324,1.785 +NM_032360,0.85,1.125,1.0,0.77,0.935,0.894,0.666,0.599,0.909,1.148,1.047,0.936,0.79,0.546,0.875,1.164,0.91,0.989,1.081,0.803,0.853,0.835,1.381,1.035,0.766,1.04,1.133,0.921,0.544,0.919,0.792,1.275,2.45,1.271,0.511,1.591,0.899,1.055,1.292,1.22,0.871,1.067,0.627,1.507,1.003,0.927,1.2,0.858,0.731,0.903,0.866,0.928,1.183,1.164 +NM_032361,1.24,1.012,1.587,0.682,1.018,0.734,0.399,0.671,2.485,1.299,0.603,0.959,0.958,0.783,0.758,1.367,2.291,0.995,1.98,1.15,0.515,1.823,1.388,2.618,0.58,1.369,2.132,2.973,0.276,1.156,1.525,1.222,3.05,0.903,0.182,1.28,0.72,1.815,0.933,1.146,2.304,0.916,0.495,1.03,2.093,0.754,1.022,1.073,0.985,0.979,1.111,1.072,0.973,1.801 +NM_032362,1.104,1.01,0.943,0.872,0.987,1.032,0.965,1.086,1.118,0.954,0.984,0.95,0.938,0.89,0.997,1.03,0.927,1.135,1.058,1.107,0.966,1.025,0.997,1.004,1.156,1.048,0.85,0.999,1.121,0.973,0.995,0.98,0.902,0.846,0.958,1.09,1.039,1.048,1.054,0.906,0.865,0.996,0.937,1.068,0.97,0.974,1.102,0.958,1.063,1.171,0.997,0.942,1.254,0.975 +NM_032364,0.865,1.178,1.034,1.009,0.68,1.267,0.733,0.609,0.965,0.775,0.999,0.714,0.738,0.814,0.954,1.181,0.876,0.888,0.94,0.961,0.813,0.893,1.022,0.983,0.893,0.79,0.973,0.714,0.742,1.25,0.797,1.228,1.247,1.4,0.611,0.978,1.12,0.874,1.328,1.204,0.928,1.084,0.961,1.353,0.891,0.98,0.865,0.801,0.966,0.885,1.001,0.912,0.859,1.495 +NM_032366,0.823,0.924,0.816,0.877,0.792,1.273,0.807,0.677,0.888,0.853,1.007,1.021,0.879,0.694,0.731,1.464,0.881,0.924,1.187,0.817,0.838,0.883,1.095,1.058,0.982,0.981,0.993,0.837,0.647,1.12,0.893,1.454,3.045,1.663,0.587,0.989,0.908,0.958,1.642,1.108,0.778,1.203,0.607,1.445,0.895,0.825,1.03,1.009,0.894,0.855,0.928,0.978,0.899,0.923 +NM_032367,0.903,1.028,0.922,0.861,0.964,1.108,0.976,0.789,0.939,0.862,1.018,0.855,0.999,0.835,0.855,1.076,0.959,0.997,0.727,1.011,0.848,1.047,1.204,0.972,1.366,0.88,0.937,0.865,0.856,1.079,0.902,1.38,1.4,1.046,0.869,0.975,0.956,1.03,1.25,0.907,0.974,1.188,1.19,1.025,0.937,1.026,0.988,0.908,1.014,0.937,0.991,0.957,0.801,1.325 +NM_032368,0.827,1.03,1.003,0.882,1.007,1.177,0.719,0.755,1.005,0.926,1.688,0.901,0.759,0.872,1.2,1.509,0.899,0.805,1.088,0.998,0.8,0.785,1.116,1.001,0.793,0.922,1.112,0.926,0.579,1.1,0.891,0.76,1.332,1.255,0.705,0.939,1.118,0.885,1.335,0.885,1.122,1.085,1.121,1.044,0.926,1.373,1.24,0.866,1.261,0.917,1.256,0.789,0.825,1.113 +NM_032369,0.95,1.167,1.107,0.858,0.954,0.983,0.992,1.003,0.875,0.912,1.028,0.902,0.924,0.97,1.037,1.035,0.858,0.922,0.999,0.999,0.876,0.79,1.063,0.957,0.994,0.945,1.116,1.12,0.683,1.293,0.88,1.754,0.922,1.183,0.861,1.056,0.953,0.946,1.101,1.574,0.934,1.354,0.707,0.764,0.922,1.01,0.814,0.824,0.93,0.89,1.063,1.355,0.927,1.272 +NM_032370,1.03,1.031,1.067,1.041,1.104,0.78,1.0,0.996,1.044,1.147,0.916,1.054,0.977,0.984,0.907,0.918,1.044,1.054,1.025,1.078,0.84,1.003,0.947,1.114,0.894,1.047,1.095,1.051,0.717,0.941,1.01,1.115,0.889,0.944,0.894,0.969,0.896,1.055,1.128,0.935,1.108,0.918,0.713,0.918,0.986,1.155,1.01,0.975,1.072,1.162,0.912,1.018,1.117,0.932 +NM_032371,0.528,0.846,0.502,0.948,0.422,2.028,0.746,0.582,0.579,0.448,2.035,0.738,0.863,0.423,1.06,3.432,0.517,1.125,0.62,1.228,0.535,0.579,1.62,0.615,1.342,0.772,0.654,0.428,0.669,1.199,0.602,1.246,3.928,2.054,0.272,1.372,1.793,0.588,4.06,0.717,0.553,1.419,1.011,1.938,0.536,1.028,1.12,0.746,1.438,0.61,1.264,0.798,0.577,1.484 +NM_032372,1.082,1.031,0.925,0.929,1.002,0.976,0.979,1.193,0.922,1.054,1.062,0.928,0.999,0.967,0.912,0.898,1.114,0.966,0.988,0.867,1.009,0.937,1.052,0.978,0.987,1.018,1.001,0.987,0.765,1.036,1.107,1.025,1.261,0.979,1.143,0.861,0.971,1.041,1.038,1.034,0.995,0.786,0.947,0.999,1.126,0.923,0.97,0.991,0.982,1.04,1.012,1.184,1.001,0.954 +NM_032373,0.84,1.173,1.071,0.881,0.976,1.166,0.946,0.963,1.03,0.807,1.234,0.875,0.825,0.864,0.892,1.223,0.914,0.997,0.905,1.036,0.865,0.94,1.062,0.921,0.978,0.926,0.945,0.864,0.851,1.092,0.919,0.993,2.168,1.302,0.861,1.071,1.163,1.04,1.082,0.912,0.969,0.968,1.119,1.009,0.863,1.039,1.115,0.8,1.034,0.758,1.099,0.83,0.923,1.094 +NM_032375,0.744,1.146,1.195,0.703,0.997,0.988,0.569,0.708,0.872,1.215,0.853,0.95,0.658,0.769,0.931,1.375,1.041,0.903,1.338,1.092,0.47,0.767,1.717,1.274,0.649,1.067,1.125,0.984,0.437,1.047,0.984,1.128,1.473,1.135,0.54,1.277,0.892,1.128,1.515,1.082,0.951,0.901,0.713,1.227,1.194,1.003,1.159,0.913,0.984,0.913,1.07,0.955,1.063,1.342 +NM_032376,0.666,1.198,1.052,0.796,0.822,1.058,0.726,0.658,0.877,0.747,1.205,0.884,0.786,0.68,0.852,1.457,0.834,1.005,1.347,1.032,0.684,0.917,1.412,1.057,0.685,1.019,1.112,0.761,0.575,1.382,0.778,1.4,1.519,1.723,0.354,0.82,0.964,0.959,1.171,0.846,0.927,1.349,0.527,1.688,0.893,0.628,0.841,0.912,0.779,0.853,0.891,0.82,0.896,1.593 +NM_032377,0.84,1.033,0.958,0.841,0.924,1.226,0.737,0.884,0.967,0.98,0.848,1.0,1.058,0.716,0.792,1.149,1.105,1.028,1.098,0.863,0.813,1.057,1.281,1.113,0.804,1.079,0.972,0.806,0.877,1.066,0.907,1.163,1.261,1.25,0.574,0.811,0.826,1.128,1.408,0.85,0.978,1.008,0.619,1.331,0.981,0.8,0.898,1.088,0.985,0.885,0.852,0.909,0.956,1.222 +NM_032378,1.095,0.982,1.021,1.034,0.895,1.092,1.193,0.947,1.087,1.032,0.906,0.962,0.885,0.815,1.152,0.966,0.969,0.957,1.034,0.999,0.908,0.978,1.089,0.957,1.026,0.947,0.924,1.153,1.336,0.939,0.91,1.004,1.019,0.905,0.897,0.876,1.163,1.042,0.994,1.057,0.91,1.001,0.916,1.055,1.021,1.155,1.02,1.014,1.136,0.897,1.07,1.134,1.217,0.877 +NM_032379,1.2040000000000002,3.26,1.179,1.9009999999999998,1.117,5.451,3.053,0.9440000000000001,1.035,1.278,3.872,1.131,1.24,1.082,2.084,2.7030000000000003,1.063,2.9000000000000004,0.958,3.5469999999999997,1.1689999999999998,1.255,3.2880000000000003,1.221,2.644,1.1729999999999998,1.236,1.151,2.964,6.603,1.2710000000000001,2.223,1.82,5.893,1.133,2.2319999999999998,4.036,1.028,3.077,1.486,1.249,4.755,2.4210000000000003,1.4380000000000002,1.096,3.2909999999999995,1.49,1.2160000000000002,2.465,1.076,3.141,1.53,1.098,1.5710000000000002 +NM_032382,0.948,1.018,0.938,1.049,0.916,1.0,0.881,0.977,1.035,1.133,1.135,0.938,0.789,0.909,0.79,1.021,1.0,1.042,1.082,0.923,0.858,0.948,1.028,0.974,1.02,0.855,0.9,1.014,0.772,1.079,0.904,1.094,1.112,0.869,0.846,0.957,1.0,1.034,1.148,0.874,0.995,1.111,1.01,1.101,0.988,1.081,1.142,0.924,0.986,1.045,0.979,0.848,1.014,1.2 +NM_032383,0.988,1.0,1.043,0.895,0.999,0.967,0.999,1.182,0.855,0.916,0.902,1.05,1.034,0.849,1.096,1.042,1.017,0.867,1.037,1.123,0.985,0.901,0.992,0.911,1.072,0.949,1.036,0.938,0.763,0.99,0.952,1.547,1.021,0.944,1.235,1.101,1.023,1.02,0.929,1.287,0.901,1.073,0.983,1.011,0.992,0.867,1.034,0.957,1.087,0.976,1.097,0.993,1.026,1.04 +NM_032385,0.988,1.186,1.074,1.128,0.89,0.92,0.87,0.993,0.85,0.889,1.011,0.958,0.951,1.048,1.038,1.027,0.803,1.132,0.913,0.991,0.955,1.05,0.976,1.1,1.01,0.98,1.05,0.96,1.059,0.948,0.96,1.018,1.084,1.115,1.026,1.017,1.023,1.014,1.072,0.926,0.975,1.088,1.147,0.881,0.999,0.884,1.1,0.961,0.884,1.016,1.078,1.002,1.169,0.908 +NM_032387,1.169,0.841,0.888,1.003,1.133,1.056,0.892,1.085,1.321,1.039,1.273,0.997,1.361,1.324,1.17,1.225,0.854,0.95,1.258,1.217,1.256,2.221,1.266,0.984,0.881,1.509,0.849,1.294,0.723,0.83,1.365,0.855,0.916,0.776,0.89,0.854,0.933,1.461,0.85,0.996,1.259,1.222,1.05,0.903,0.788,1.122,0.889,1.727,0.958,0.818,1.153,0.945,0.87,0.9 +NM_032389,0.984,0.765,1.055,0.955,0.77,1.057,0.785,0.572,0.96,0.891,0.939,0.847,0.884,0.811,0.897,1.209,1.005,0.99,1.55,1.002,0.917,1.02,0.946,1.092,0.914,1.484,1.068,0.887,0.547,1.225,0.923,0.892,1.401,1.283,0.578,1.243,0.827,0.95,1.694,0.861,0.98,1.083,0.637,1.529,1.072,0.789,0.766,1.111,0.861,1.208,0.882,0.801,1.01,1.264 +NM_032390,0.85,1.031,1.109,0.766,0.917,1.102,0.553,0.637,1.2,1.28,1.242,1.036,0.798,0.633,0.849,1.448,0.741,0.692,1.231,0.889,0.709,0.606,1.451,1.222,0.509,0.785,1.053,0.8,0.462,0.908,0.881,1.372,3.856,1.207,0.388,1.22,0.859,0.8,1.155,0.97,1.018,1.002,0.724,1.617,1.02,0.926,0.928,0.699,1.099,0.849,1.024,0.903,1.001,2.054 +NM_032391,1.185,0.902,1.136,1.016,1.061,0.98,1.023,0.941,0.918,1.408,1.014,0.968,0.988,0.857,0.979,0.981,0.886,1.055,1.136,1.059,0.972,0.954,1.089,1.209,0.985,0.982,1.294,1.104,1.005,0.979,0.921,1.068,1.058,1.145,0.996,0.809,0.919,0.857,0.92,0.89,0.965,1.074,0.963,1.031,0.874,0.979,1.247,1.05,1.066,0.92,1.124,0.892,0.866,1.104 +NM_032401,1.003,0.906,1.052,1.004,0.901,1.016,1.056,1.058,1.039,0.963,1.023,0.919,0.958,0.816,1.157,0.979,1.074,1.034,0.954,1.026,0.975,1.121,0.965,0.969,0.944,0.988,0.972,1.1,1.403,0.998,0.927,1.101,0.917,1.026,1.068,0.922,0.906,1.054,0.92,0.932,0.837,0.89,1.172,0.982,0.916,0.893,0.997,0.931,1.001,0.972,1.026,1.037,1.046,0.847 +NM_032402,1.068,0.971,1.03,0.911,0.975,1.166,0.885,0.937,1.049,1.11,1.035,1.006,1.102,1.041,0.963,0.911,0.967,0.927,0.844,0.847,0.945,0.968,0.91,1.003,0.958,1.006,0.929,1.102,1.124,1.068,1.036,1.028,0.849,1.058,1.081,1.076,1.008,1.074,1.01,1.065,1.086,0.982,1.158,1.027,1.072,0.858,1.056,0.99,1.075,1.022,1.023,0.952,0.908,1.0 +NM_032403,0.985,0.968,1.119,1.039,0.955,0.967,1.288,1.154,1.004,1.05,1.024,1.006,1.004,0.88,0.944,1.085,0.944,1.052,0.894,0.992,1.052,0.918,1.051,1.006,1.054,1.004,1.001,0.995,0.746,1.062,0.957,1.119,1.164,0.999,0.991,1.102,0.997,1.048,0.944,1.161,0.949,1.012,0.759,0.894,1.135,1.167,0.954,1.064,0.974,1.011,1.095,0.921,1.164,0.977 +NM_032404,0.967,1.027,1.054,0.973,1.095,1.046,1.207,1.026,1.064,0.914,0.95,0.99,0.854,1.102,1.077,0.989,0.873,1.102,1.0,0.878,1.062,0.946,0.989,1.104,0.943,0.909,0.91,0.983,1.15,1.051,0.907,0.953,1.066,1.111,1.143,0.961,1.193,1.114,0.916,0.933,0.968,1.042,0.924,0.945,0.969,1.048,1.086,1.073,1.007,1.108,1.034,0.925,0.869,1.029 +NM_032405,0.687,1.365,0.703,1.284,0.615,1.713,1.762,0.642,0.549,0.615,1.504,0.61,0.591,0.512,0.811,0.954,0.556,1.197,0.676,1.348,0.65,0.71,2.237,0.628,1.018,0.757,0.62,0.597,0.785,1.789,0.689,1.718,0.938,2.056,0.673,1.379,1.704,0.636,1.496,1.784,0.679,1.892,1.053,1.541,0.676,0.908,0.603,0.75,0.825,0.608,1.256,0.982,0.628,1.392 +NM_032406,1.881,2.0780000000000003,1.964,1.855,2.071,1.87,1.912,1.855,2.06,1.855,2.088,1.948,2.028,2.075,1.9420000000000002,2.051,2.045,1.982,2.059,2.367,2.231,2.0389999999999997,1.8519999999999999,1.932,1.935,1.861,2.269,2.0469999999999997,1.9809999999999999,2.088,2.1470000000000002,1.8079999999999998,1.947,1.967,2.051,2.049,2.143,2.042,2.0469999999999997,1.971,1.9369999999999998,1.999,2.127,2.067,2.075,2.065,1.903,1.892,1.87,1.938,2.05,2.159,1.884,2.0620000000000003 +NM_032407,2.1159999999999997,2.0869999999999997,2.1020000000000003,2.042,1.956,2.106,2.3179999999999996,2.109,2.0300000000000002,1.802,2.072,1.809,2.0309999999999997,1.9689999999999999,1.771,2.246,2.042,1.932,2.042,2.309,1.825,1.954,2.032,2.2030000000000003,1.8119999999999998,2.101,1.8780000000000001,1.932,2.222,2.206,2.034,2.007,1.8809999999999998,2.091,2.221,1.94,2.1710000000000003,2.04,2.105,1.893,1.941,1.996,2.177,2.056,2.073,1.83,2.165,2.08,2.02,1.9129999999999998,2.12,2.058,1.963,2.079 +NM_032408,0.833,0.915,1.21,0.676,0.753,1.022,0.852,0.577,0.955,0.981,0.687,0.812,0.684,0.655,0.799,1.074,0.782,0.868,1.022,1.074,0.832,0.755,1.686,0.909,0.83,0.914,1.049,0.775,0.574,1.195,0.878,1.394,2.685,1.228,0.516,1.034,0.81,0.882,1.735,1.436,0.991,1.104,0.648,2.289,0.925,0.903,0.873,0.659,0.954,0.918,1.181,1.252,0.946,1.813 +NM_032409,1.031,0.982,2.168,0.754,0.686,0.609,0.406,1.076,1.729,1.328,0.773,0.902,0.992,0.615,1.547,1.304,1.253,0.525,1.995,1.389,0.419,1.511,0.873,1.297,0.628,1.415,0.832,1.393,0.342,0.858,1.669,1.474,1.36,1.251,1.047,0.424,0.841,1.629,0.796,0.641,1.46,0.558,0.407,0.6,1.627,0.942,1.284,1.341,0.771,1.843,1.23,0.774,0.714,1.114 +NM_032410,1.128,0.81,1.031,1.001,1.366,0.859,0.985,1.025,1.419,0.874,0.927,1.08,1.094,1.201,1.288,1.099,1.009,1.18,0.974,0.817,1.092,1.149,0.876,1.198,0.789,1.087,1.077,1.085,0.819,0.86,1.206,0.995,1.163,0.955,1.265,0.914,0.929,0.961,0.993,0.995,1.133,0.909,0.865,1.063,1.218,0.869,1.154,1.264,0.979,1.016,0.879,1.043,1.092,1.157 +NM_032411,1.088,1.041,1.101,1.092,0.945,1.229,1.005,0.834,0.856,1.098,1.324,1.06,1.101,0.974,0.868,1.25,0.911,0.958,0.982,0.911,1.279,1.019,1.342,0.949,1.087,1.001,0.968,1.955,1.264,1.242,0.907,1.387,0.992,3.383,0.868,0.961,0.947,1.428,0.803,0.898,2.241,3.962,0.97,0.825,0.951,1.019,0.975,0.779,0.805,0.856,0.95,0.843,1.117,0.912 +NM_032412,0.0658,4.226,0.0857,2.795,0.0615,5.072,3.498,0.0636,0.066,0.0814,3.433,0.0872,0.0684,0.0648,0.862,2.81,0.0761,3.638,0.066,2.75,0.0849,0.0685,1.557,0.101,3.922,0.0746,0.0932,0.072,2.396,4.689,0.0699,1.338,1.622,7.32,0.0713,1.323,3.539,0.0717,4.902,0.205,0.0741,2.989,1.161,1.484,0.0696,1.731,0.515,0.0617,0.808,0.0928,2.529,0.629,0.106,0.918 +NM_032413,0.884,0.885,1.247,0.816,1.446,1.343,0.728,0.826,1.004,0.726,1.261,0.72,0.975,0.649,1.257,2.168,1.318,1.088,1.122,1.407,0.673,0.718,1.383,0.739,0.593,0.995,1.306,1.554,0.54,0.89,1.855,0.63,1.152,1.2,2.069,0.728,2.014,0.66,0.832,0.811,1.502,1.163,1.021,0.549,1.253,1.324,1.483,0.925,0.815,1.228,0.963,1.178,0.975,1.926 +NM_032414,0.915,0.849,0.94,0.978,1.068,0.942,0.982,1.231,1.069,0.958,0.925,1.064,1.017,0.861,1.126,0.94,0.911,0.874,0.998,1.029,0.896,1.023,0.912,0.961,0.965,0.967,0.926,0.979,1.148,0.9,1.033,1.11,1.003,0.906,1.011,0.993,1.067,1.118,1.063,0.861,1.014,0.935,1.109,0.877,0.916,0.999,0.84,0.981,1.041,1.016,0.929,1.037,0.98,1.027 +NM_032415,0.633,0.913,0.788,1.164,0.597,1.535,1.005,0.499,0.649,0.56,0.988,0.613,0.594,0.521,0.839,1.037,0.627,1.019,0.526,1.549,0.489,0.535,1.296,0.632,0.649,0.575,1.032,0.592,0.601,2.222,0.564,3.992,0.828,1.609,0.524,3.194,1.04,0.536,1.562,2.934,0.813,0.851,1.062,5.925,0.748,1.609,1.731,0.601,0.644,0.624,2.289,1.038,0.771,2.49 +NM_032417,1.186,1.012,1.05,1.167,0.874,1.044,0.987,1.015,0.931,1.01,1.055,0.917,1.141,1.083,0.985,0.99,0.931,1.01,1.185,1.135,0.98,1.056,0.998,0.98,1.054,0.94,0.963,0.985,1.115,0.936,1.053,0.901,0.985,1.218,1.036,0.929,0.998,0.946,1.057,0.854,0.992,0.877,0.952,1.068,0.865,0.969,0.785,0.946,1.048,1.002,1.177,1.331,0.96,1.008 +NM_032419,0.859,0.983,1.085,0.978,0.787,1.294,0.805,0.941,1.037,0.87,0.928,0.976,0.809,0.875,0.881,1.28,0.92,0.977,1.003,0.984,0.89,0.96,1.223,1.012,1.061,0.87,1.008,0.701,0.719,1.15,0.894,1.177,1.683,1.126,0.734,0.927,0.938,0.994,1.583,0.844,0.927,1.1,0.859,1.131,0.853,1.157,0.906,0.8,1.121,0.838,1.072,0.894,1.152,1.235 +NM_032420,0.859,0.908,1.025,0.902,0.935,1.199,0.999,1.149,0.949,0.949,1.063,0.818,0.862,0.923,0.868,1.27,1.344,1.171,1.066,1.132,0.849,0.805,1.035,0.888,0.802,0.991,0.938,0.931,0.911,1.142,1.175,1.106,0.788,1.263,1.54,0.952,1.023,1.121,1.509,0.868,1.175,1.06,0.846,1.323,0.847,1.097,1.018,1.212,1.156,1.015,0.915,1.067,1.001,0.894 +NM_032421,0.402,1.237,0.674,0.715,0.517,2.043,1.164,0.353,0.545,0.643,1.239,0.492,0.353,0.454,0.643,1.576,0.481,1.0,0.496,1.255,0.507,0.476,1.391,0.784,0.919,0.512,0.768,0.462,1.461,3.369,0.579,2.053,2.146,2.944,0.351,0.729,0.959,0.662,2.285,1.956,0.648,1.609,0.671,1.499,0.611,0.686,0.634,0.411,0.47,0.465,0.865,1.487,0.863,1.082 +NM_032422,0.988,1.05,1.032,1.004,0.86,0.946,0.831,0.888,0.986,1.099,0.986,0.996,0.96,0.937,0.946,0.969,0.965,1.074,1.02,1.06,1.065,0.995,1.07,1.023,1.069,1.088,0.829,0.797,1.157,1.055,1.112,1.002,0.918,0.901,1.156,1.037,1.132,1.038,0.978,1.101,1.011,0.972,1.005,0.862,1.073,0.969,1.009,0.963,1.12,1.161,1.091,1.016,0.988,0.99 +NM_032425,0.89,0.953,0.928,0.941,1.002,1.07,1.097,1.037,1.164,0.994,1.015,1.096,1.025,0.875,1.078,0.984,1.118,1.004,0.944,0.949,0.971,1.044,0.89,0.948,1.077,0.9,1.209,1.069,0.988,0.961,1.057,0.935,1.083,1.085,1.0,0.964,1.01,1.053,1.067,1.111,0.961,0.86,0.985,1.084,1.049,0.915,0.914,0.916,0.943,0.946,1.015,0.918,0.968,1.057 +NM_032427,1.078,0.959,1.046,0.951,1.107,1.012,0.993,0.992,1.115,0.998,1.079,1.074,1.083,0.854,0.975,1.168,0.942,1.083,0.943,1.031,0.889,0.975,0.951,1.028,1.005,1.083,0.877,1.115,1.038,0.952,0.863,0.959,1.282,0.893,1.032,1.12,1.004,1.097,0.968,1.106,1.034,1.152,1.027,0.993,1.018,1.003,1.029,0.97,1.109,1.007,0.981,1.064,1.007,1.045 +NM_032429,0.941,1.05,1.012,0.866,0.81,0.979,0.944,0.751,0.969,0.895,0.817,0.809,0.804,0.953,0.963,0.967,0.942,1.003,1.097,0.919,0.911,0.988,1.03,1.017,1.077,1.031,1.097,0.786,1.123,1.006,1.09,1.599,1.336,1.262,0.731,1.387,0.937,0.909,1.111,1.093,1.003,1.084,0.72,1.486,0.923,0.769,0.792,0.894,0.908,0.943,0.951,1.094,0.984,1.377 +NM_032430,1.01,1.056,1.062,1.098,1.215,1.071,0.8,0.919,1.062,1.028,0.888,1.025,1.066,0.983,0.973,0.932,1.031,1.087,0.962,0.926,0.991,0.994,1.012,1.007,1.025,1.149,0.788,0.976,0.788,1.058,0.821,1.102,0.966,0.949,1.046,1.013,1.037,0.978,1.05,0.939,1.023,0.932,0.916,0.929,0.961,1.063,1.025,1.027,1.143,1.085,0.9,0.881,0.987,0.955 +NM_032431,0.588,1.006,1.178,0.663,0.712,0.909,0.88,0.397,1.046,0.938,0.632,0.446,0.416,0.533,0.928,0.992,0.876,0.894,0.796,0.974,0.359,0.867,1.305,0.791,1.077,0.672,1.318,0.635,0.551,1.722,0.832,2.577,1.413,1.326,0.46,1.064,1.263,0.761,1.609,1.068,0.821,1.856,0.758,1.122,1.063,1.191,1.117,0.721,1.335,0.892,1.5,0.876,0.692,1.685 +NM_032432,1.355,0.797,1.992,0.825,1.2,0.754,0.669,1.133,1.806,1.075,0.863,1.007,1.255,1.032,1.213,1.392,1.66,0.903,2.432,0.867,0.965,1.325,0.712,1.029,0.779,1.344,1.178,1.134,1.419,0.801,1.458,1.201,2.448,0.997,0.939,0.911,0.674,1.402,0.874,1.135,1.591,0.777,0.86,1.132,1.46,0.745,1.071,1.522,0.841,2.207,0.688,1.139,1.461,0.808 +NM_032434,1.043,1.074,1.144,0.999,1.029,0.964,0.951,0.841,1.266,0.964,0.99,0.827,0.86,0.995,0.919,0.847,1.02,0.943,1.052,1.053,1.045,0.811,1.111,0.881,0.989,0.915,0.945,0.967,1.193,1.009,0.943,1.457,1.489,1.251,0.804,0.864,1.02,1.03,1.039,0.963,1.063,1.212,1.011,1.116,0.95,0.99,0.941,0.867,0.814,0.786,1.031,0.93,0.944,1.559 +NM_032435,0.982,1.05,0.927,0.88,0.866,1.058,0.998,1.009,0.856,0.92,0.973,1.153,1.002,0.796,0.745,1.028,0.918,1.019,0.946,1.035,0.928,1.007,1.009,0.883,1.028,1.085,0.931,1.011,1.367,1.127,1.016,0.978,1.05,0.913,0.954,1.066,1.027,0.975,1.012,1.064,0.976,0.984,1.177,1.06,1.003,0.995,0.946,1.024,0.989,0.958,1.082,1.064,0.808,0.998 +NM_032436,0.548,0.917,1.034,0.786,0.704,0.927,0.688,0.586,0.798,0.782,0.815,0.736,0.568,0.785,0.757,1.36,0.769,0.925,1.151,0.87,0.728,0.822,1.429,0.719,0.832,0.938,1.201,0.592,0.772,1.084,0.826,1.407,1.572,1.253,0.444,1.466,1.097,0.785,1.062,1.048,0.8,1.313,0.869,1.296,0.793,1.042,0.889,0.717,0.838,0.838,1.062,0.756,1.137,1.345 +NM_032440,0.801,0.954,1.172,0.614,0.906,1.46,0.924,0.952,0.898,0.812,1.043,0.627,0.778,0.732,0.979,1.575,0.86,1.092,1.223,1.351,0.743,0.784,1.296,0.871,0.681,0.757,1.047,0.821,0.672,1.094,0.939,0.867,1.894,1.335,0.982,1.004,1.234,0.75,1.354,1.065,0.916,1.231,0.833,0.915,0.915,1.521,0.92,0.965,1.623,0.918,1.156,0.77,0.844,1.451 +NM_032442,1.054,0.953,1.02,0.798,0.849,1.044,0.904,1.166,0.884,0.875,0.889,1.129,0.984,0.943,1.082,1.241,0.889,0.798,1.08,1.03,1.031,1.181,1.012,0.978,0.945,1.009,1.052,0.916,0.963,0.733,0.916,1.201,1.083,0.856,0.886,0.783,0.938,0.956,1.159,1.007,0.929,1.038,0.87,1.148,1.057,0.932,0.901,1.115,1.019,0.789,0.903,0.88,0.895,1.148 +NM_032444,0.784,0.918,1.439,0.782,1.173,0.957,0.797,0.676,1.165,1.154,0.796,0.857,0.643,0.76,0.87,0.984,1.436,1.015,1.207,1.027,0.773,0.842,1.171,1.044,0.792,0.711,2.017,0.871,0.562,1.088,0.917,1.601,1.498,0.958,0.698,1.131,0.929,0.961,1.064,1.382,1.246,0.949,0.784,0.929,1.053,1.099,1.275,0.751,1.274,1.067,1.112,0.89,1.056,1.035 +NM_032445,0.902,1.06,0.965,1.0,1.216,0.934,1.141,1.089,1.073,0.852,0.974,1.0,1.008,0.967,0.952,0.951,0.921,1.06,0.944,1.001,1.023,0.917,0.939,1.048,1.033,0.9,0.872,1.091,0.967,1.144,1.064,0.934,1.149,1.06,1.246,0.94,0.895,1.055,0.992,0.907,0.987,1.399,0.856,0.945,0.888,1.089,0.951,0.947,0.913,0.88,1.08,0.992,0.953,1.074 +NM_032446,0.878,1.177,1.003,1.103,0.903,1.101,1.021,0.982,0.984,0.937,0.833,0.943,1.029,0.962,1.223,0.962,1.068,1.088,1.111,1.034,1.047,0.998,0.827,1.016,0.991,0.929,1.059,1.131,1.054,1.053,0.969,1.378,1.03,1.013,1.053,1.205,0.949,0.896,0.955,1.123,1.064,1.209,1.084,1.145,1.078,0.921,0.989,1.061,0.859,0.912,1.188,0.927,0.979,1.037 +NM_032447,1.059,0.941,1.046,1.016,1.061,1.061,0.981,1.021,0.99,0.976,0.924,1.079,0.977,0.999,0.902,1.095,0.98,1.091,1.034,1.119,1.028,1.046,0.96,1.016,0.892,1.047,1.078,0.957,1.163,0.884,0.968,1.078,1.028,0.972,0.948,1.047,1.024,1.127,1.03,0.95,0.979,1.024,0.964,1.031,1.161,1.146,0.869,1.002,0.914,1.025,1.022,1.067,1.114,1.03 +NM_032448,0.685,1.159,1.307,0.874,0.921,1.013,0.704,0.449,0.969,1.004,1.05,0.707,0.609,0.784,0.926,1.382,1.245,0.935,1.017,1.046,0.453,0.766,1.119,0.842,0.647,0.855,1.033,0.772,0.644,1.368,0.691,1.116,0.852,1.217,0.365,0.585,1.081,0.851,1.248,0.98,0.978,1.424,1.179,0.992,0.868,1.094,0.793,0.815,0.954,0.844,1.093,0.679,0.836,0.813 +NM_032456,1.073,1.034,0.97,1.09,0.944,1.047,1.043,1.022,1.017,1.006,1.089,0.991,0.896,1.028,0.928,0.991,0.976,0.823,1.103,1.019,0.947,1.024,0.921,1.084,0.968,1.097,0.975,0.991,1.116,0.941,0.901,1.043,1.111,0.976,1.023,1.035,0.936,1.029,0.992,1.155,0.924,0.981,1.346,0.992,1.035,0.974,1.027,0.927,1.092,1.039,1.062,0.923,0.969,0.961 +NM_032457,0.936,0.906,1.181,0.914,0.897,1.134,1.061,0.91,0.916,0.827,1.163,0.85,0.904,0.868,1.073,0.972,1.001,0.795,1.206,0.865,1.232,1.041,1.161,0.979,1.244,1.131,1.159,0.979,0.89,1.734,1.004,2.585,1.338,1.915,0.801,0.923,0.918,0.977,1.074,1.073,1.067,1.37,0.871,1.561,0.915,0.827,0.956,0.788,0.727,1.008,1.124,1.558,1.419,0.983 +NM_032458,0.876,0.983,1.081,0.931,1.126,0.99,0.894,0.725,1.027,0.979,0.976,0.763,0.962,1.009,0.944,1.343,0.97,0.938,1.005,1.162,1.118,1.0,1.05,1.0,0.823,0.987,1.086,0.999,0.717,1.195,0.871,0.906,2.033,1.102,0.901,1.198,1.158,1.008,1.394,0.901,0.918,0.965,1.013,1.423,0.936,1.07,1.007,0.804,0.969,0.997,1.017,0.952,0.986,1.234 +NM_032459,2.103,0.812,2.45,1.19,1.744,0.927,0.713,1.159,2.044,1.525,0.837,1.713,1.757,1.575,1.495,0.967,1.824,1.217,2.019,0.805,1.771,2.348,0.716,1.933,0.849,2.52,2.4,1.6,0.727,0.884,1.843,1.171,1.486,0.973,0.908,0.862,0.834,2.214,0.786,0.757,2.071,0.949,0.948,0.813,2.057,0.896,1.284,2.015,0.725,1.987,0.954,0.997,1.857,1.217 +NM_032464,0.728,1.111,1.033,1.065,0.874,1.0,1.039,1.005,1.001,0.929,0.813,0.85,1.0,0.669,0.894,0.996,0.84,0.988,0.891,0.84,0.762,0.811,0.866,0.944,0.933,0.851,1.089,1.037,0.997,1.037,0.9,1.603,1.096,1.068,0.829,1.033,0.93,0.851,1.131,1.763,0.973,1.216,0.865,0.95,0.868,0.835,0.924,0.907,0.852,0.844,0.996,1.04,1.13,1.279 +NM_032466,0.408,1.549,0.656,1.174,0.543,1.468,0.812,0.35,0.784,0.578,2.306,0.348,0.387,0.485,0.92,2.099,0.509,1.212,0.687,1.788,0.411,0.382,1.483,0.5,0.923,0.491,0.785,0.633,0.345,1.677,0.592,0.964,1.436,2.04,0.349,4.622,1.746,0.479,2.136,0.833,0.617,1.59,1.866,2.127,0.591,5.05,0.739,0.397,3.076,0.515,1.856,0.626,0.663,0.98 +NM_032470,1.732,2.339,1.721,2.06,2.017,1.97,1.911,1.6560000000000001,1.642,1.726,2.007,1.5779999999999998,1.8010000000000002,1.847,2.1980000000000004,2.1100000000000003,1.6469999999999998,1.746,1.684,2.4859999999999998,1.8319999999999999,1.643,2.377,1.988,2.242,1.93,1.7389999999999999,2.0629999999999997,1.948,3.1990000000000003,1.654,2.9210000000000003,1.986,3.314,1.88,1.933,2.155,2.322,2.566,2.058,2.068,3.1,1.829,1.831,1.631,1.9249999999999998,1.8559999999999999,1.95,2.042,1.8359999999999999,2.7859999999999996,1.9449999999999998,1.742,2.13 +NM_032471,0.704,2.943,0.796,1.589,0.956,3.834,2.534,0.887,0.881,0.711,2.056,0.824,0.855,0.789,1.759,0.889,0.857,1.711,1.004,1.556,0.753,0.786,0.623,0.799,1.736,0.685,0.815,0.982,2.239,2.43,0.996,0.797,0.752,4.261,0.715,2.215,1.614,0.938,2.776,1.164,1.006,2.036,0.912,0.815,0.798,1.302,1.143,0.743,2.029,0.754,1.352,0.958,0.901,0.754 +NM_032476,0.579,0.871,1.032,0.526,0.801,0.796,0.642,0.486,1.068,1.123,1.059,1.399,0.626,0.461,0.847,1.752,0.764,0.787,1.017,0.952,0.703,0.782,1.073,1.642,0.471,0.641,1.619,0.946,0.486,0.98,0.797,1.709,2.472,1.074,0.105,0.935,1.06,1.06,1.318,2.406,1.558,0.888,0.635,1.077,1.074,0.769,1.497,0.709,0.75,0.89,1.085,1.054,0.919,1.549 +NM_032477,0.546,1.179,0.796,1.076,0.764,1.227,0.796,0.52,0.765,0.978,1.683,1.114,0.777,0.516,1.107,2.749,0.573,1.323,1.1,1.207,0.61,0.758,1.994,0.833,0.879,0.923,0.875,0.738,0.671,1.418,0.868,1.415,2.352,1.707,0.433,4.742,1.617,0.954,2.089,0.817,0.694,1.165,0.697,1.192,0.879,1.435,0.959,0.921,1.709,0.702,1.242,0.862,0.773,2.113 +NM_032478,0.645,1.001,0.808,0.715,0.787,1.117,0.76,0.749,0.957,0.911,0.768,0.911,1.06,0.508,0.916,1.946,0.832,0.979,1.39,1.064,0.747,1.293,1.372,1.23,0.629,0.872,0.999,0.771,0.575,1.002,0.944,1.548,2.291,1.379,0.44,0.801,0.901,0.98,2.429,0.924,0.977,0.926,0.606,1.727,0.945,0.671,0.928,1.046,1.162,0.802,0.836,0.708,0.644,1.877 +NM_032479,0.437,0.966,1.556,0.415,1.158,1.485,0.688,0.959,1.339,1.301,0.674,1.528,0.85,0.435,0.968,2.101,1.239,0.997,0.724,1.067,0.38,1.171,1.469,1.746,0.352,0.376,1.53,1.034,0.419,0.895,1.358,2.14,3.668,1.003,0.27,0.697,0.864,1.506,1.316,1.619,1.298,0.897,0.547,0.723,1.21,0.716,1.207,0.763,1.274,0.742,1.003,0.843,0.554,1.858 +NM_032482,0.768,0.871,1.027,1.014,1.051,1.095,1.064,0.837,1.0,1.033,0.879,1.037,0.884,0.869,0.955,1.122,0.984,0.953,0.934,0.962,1.265,1.145,1.113,0.873,1.05,1.135,1.073,0.958,1.006,0.889,0.943,0.955,1.095,1.164,0.937,0.928,0.922,1.049,1.146,1.086,0.893,0.97,0.938,1.073,1.067,0.962,0.887,1.095,1.13,1.038,0.996,0.835,0.837,1.22 +NM_032483,0.644,1.268,0.757,1.065,0.716,1.312,1.226,0.516,0.884,0.781,1.277,0.537,0.605,0.538,0.908,1.478,0.649,1.088,0.843,1.172,0.717,0.722,1.484,0.886,1.33,0.632,0.875,0.703,0.736,1.818,0.685,1.245,1.111,1.99,0.455,0.834,1.389,0.697,1.479,0.546,0.875,2.072,0.917,1.053,0.77,1.485,1.021,0.581,1.299,0.617,1.32,0.921,0.813,1.306 +NM_032487,0.82,1.011,0.982,0.936,1.09,0.951,0.823,0.95,1.002,1.033,0.983,0.95,1.008,0.852,0.994,1.065,1.084,0.871,1.112,1.113,0.876,0.947,1.061,1.086,0.93,0.879,0.992,1.058,0.99,1.124,1.06,1.101,1.382,0.971,0.868,1.033,0.917,1.112,1.107,0.947,0.873,1.041,0.859,0.939,0.957,1.085,0.958,1.066,1.04,1.081,1.054,0.875,1.013,1.227 +NM_032488,5.475,0.0401,5.317,1.208,6.634,0.0366,0.0411,5.937,6.375,4.776,0.0418,4.514,4.899,2.345,3.404,1.495,5.238,3.019,5.725,0.0677,2.679,4.673,0.0422,5.661,0.0323,6.122,3.864,7.214,0.0292,0.0386,5.113,0.035,1.869,0.0386,7.501,0.0379,0.0727,6.208,0.112,0.0454,6.061,0.0474,0.0528,0.0392,5.23,0.0371,3.064,7.659,0.565,4.336,0.934,0.824,4.172,0.287 +NM_032489,0.971,1.016,1.013,1.01,1.133,0.978,0.835,0.825,0.805,0.927,1.098,0.796,0.99,1.069,0.952,1.32,0.789,0.812,0.884,1.126,0.827,0.951,1.159,0.891,1.006,0.945,0.93,0.815,0.931,0.904,0.801,1.006,1.043,1.101,1.093,1.053,0.89,0.807,1.141,1.013,0.885,1.133,0.872,1.038,0.971,1.009,1.313,0.938,1.157,0.887,1.028,1.313,0.998,0.95 +NM_032490,0.556,1.438,0.971,0.75,0.779,1.961,1.001,0.676,0.863,0.808,1.349,0.888,0.772,0.55,1.145,2.865,0.782,1.118,0.955,1.278,0.562,0.837,1.452,0.872,0.662,0.504,1.271,0.821,0.972,1.407,0.798,1.521,1.966,1.7,0.446,0.924,1.611,0.894,1.482,0.816,0.922,1.293,0.914,1.155,0.779,1.26,0.999,0.704,1.362,0.679,1.416,0.812,0.643,1.506 +NM_032491,1.017,0.978,0.993,1.1,0.885,1.097,0.836,1.065,0.99,0.965,1.045,0.955,0.984,0.935,1.091,0.956,0.999,0.897,0.902,1.095,1.001,0.918,0.908,0.932,1.173,1.035,0.95,1.218,1.187,0.992,1.065,1.064,1.037,0.95,0.932,1.011,1.148,0.962,1.004,1.021,1.011,1.036,1.081,0.928,0.99,0.94,1.05,1.013,0.98,1.062,0.982,1.023,0.926,1.052 +NM_032493,0.908,0.956,1.036,1.0,1.087,1.006,0.801,0.869,0.997,1.028,0.93,0.937,0.945,0.778,0.818,1.17,1.093,1.011,1.138,0.929,0.794,1.101,1.232,1.079,0.933,1.09,0.849,0.964,0.643,1.264,0.977,1.607,1.34,1.09,0.89,0.924,0.924,0.986,1.228,1.171,0.984,0.954,0.775,1.053,1.1,1.115,0.965,1.039,1.084,0.9,0.829,1.299,1.289,1.496 +NM_032495,0.983,1.058,1.093,0.993,1.043,0.959,1.079,1.223,1.007,0.973,0.974,0.975,1.133,1.012,0.915,1.091,1.038,1.007,1.275,1.09,1.014,0.946,0.947,0.989,1.039,1.026,0.982,0.959,0.898,0.962,1.188,1.165,0.954,1.08,0.909,1.005,0.933,1.022,0.944,1.028,0.917,1.0,1.017,0.97,0.982,0.889,0.885,0.95,1.062,1.018,1.01,0.93,1.034,0.896 +NM_032496,0.859,0.983,1.344,1.291,0.906,0.862,1.062,0.821,1.208,0.918,0.841,0.841,0.919,0.914,1.186,0.822,1.125,0.88,0.96,0.787,0.946,0.873,0.864,1.075,1.084,0.863,1.613,0.834,0.657,1.227,0.901,1.329,1.226,1.222,0.707,0.841,1.035,0.8,1.255,2.412,0.962,1.377,0.839,1.017,0.979,0.928,0.91,0.793,0.858,0.744,0.84,1.334,1.493,2.617 +NM_032497,0.861,1.12,1.171,0.995,1.061,0.986,0.906,1.028,1.014,0.91,0.766,0.992,1.0,0.897,1.111,0.853,1.048,0.944,0.922,1.221,0.837,0.986,0.807,1.147,1.052,0.832,1.156,1.079,0.634,1.37,0.956,1.367,1.847,1.202,0.802,0.994,1.183,1.135,0.838,1.148,1.056,1.225,0.813,0.801,1.016,0.943,1.005,0.935,0.848,0.916,0.99,0.821,0.863,0.905 +NM_032498,0.967,0.938,1.028,0.877,0.996,1.087,0.932,1.058,1.065,0.898,0.962,1.006,0.97,0.906,0.906,1.065,0.947,0.916,1.016,0.931,0.975,1.018,0.983,0.885,0.856,1.008,1.113,0.958,0.707,0.992,1.076,1.019,0.98,0.789,1.003,1.093,1.154,0.964,0.939,1.092,1.041,1.017,1.1,1.074,0.971,0.862,0.967,1.0,0.924,0.864,1.079,0.958,0.988,1.0 +NM_032499,0.96,0.757,1.338,0.827,1.083,0.956,0.663,1.025,1.25,1.076,0.964,1.026,0.902,0.955,1.053,1.323,0.936,0.854,1.287,1.011,0.802,0.857,1.586,1.197,0.745,0.899,1.139,1.108,0.469,1.069,1.139,0.91,1.406,1.096,0.659,0.743,1.03,1.008,1.098,0.623,1.19,1.092,0.668,0.902,1.236,0.996,0.872,0.998,0.81,0.908,0.99,0.902,0.904,0.937 +NM_032501,0.407,1.677,0.453,0.744,0.433,1.71,0.753,0.304,0.63,0.405,1.39,0.353,0.367,0.562,0.963,1.666,0.258,0.815,0.395,1.624,0.298,0.619,1.852,0.33,1.805,0.645,0.321,0.531,0.944,3.084,0.539,1.154,0.8,2.415,0.168,1.066,1.707,0.501,1.41,0.576,0.321,1.684,0.889,1.492,0.273,1.318,0.775,0.436,0.542,0.278,1.378,0.453,0.337,2.298 +NM_032503,1.131,0.965,0.95,1.223,0.981,0.995,0.909,1.118,0.978,1.037,1.202,1.33,1.011,1.146,1.273,1.002,0.99,1.144,1.128,1.104,1.137,0.899,1.018,0.923,1.03,0.908,1.0,1.048,2.081,1.032,0.971,1.128,0.917,1.0,0.972,0.968,1.02,0.999,0.923,0.943,0.873,0.793,1.089,0.992,1.013,0.902,0.893,0.991,0.924,0.907,0.886,0.842,1.089,0.859 +NM_032505,0.888,1.051,1.007,1.043,0.966,0.93,0.998,0.935,0.989,1.026,1.055,0.951,1.028,1.165,0.877,1.006,0.998,0.97,0.964,0.924,0.992,0.985,1.043,0.891,0.942,0.932,0.859,1.008,0.878,0.988,0.971,0.886,1.099,0.965,1.117,1.07,0.971,0.903,1.142,1.032,1.091,1.024,0.898,0.993,0.874,1.012,1.033,0.899,1.138,1.113,1.072,1.014,1.058,1.032 +NM_032507,1.012,1.104,1.019,0.908,0.995,0.943,1.182,1.19,0.916,1.033,1.069,1.014,0.994,1.092,0.996,1.002,0.873,1.122,1.067,0.946,0.955,1.098,1.134,1.165,0.907,0.947,0.833,1.045,0.862,0.916,0.971,1.235,1.352,0.96,0.889,1.074,0.904,1.215,0.839,0.96,1.045,0.949,0.889,0.914,1.068,0.939,0.916,1.111,0.973,1.009,0.956,1.036,1.111,1.197 +NM_032508,1.246,0.733,1.705,0.81,1.028,0.932,0.815,0.529,1.233,0.798,0.908,0.938,0.871,0.988,1.021,0.997,1.08,1.167,1.437,1.019,0.705,1.095,0.732,1.253,0.649,1.296,1.093,1.189,0.504,1.137,1.01,1.94,0.871,1.106,0.479,0.793,0.807,1.003,0.92,0.905,1.649,0.958,0.576,2.174,1.476,0.746,1.154,1.425,0.676,1.421,0.933,1.101,0.957,0.985 +NM_032509,0.759,0.775,1.205,0.742,0.944,0.834,0.656,0.673,1.266,1.401,0.907,1.074,0.903,0.682,0.852,1.291,0.978,0.933,1.191,0.937,0.89,0.843,1.129,1.28,0.715,0.847,1.313,0.792,0.604,0.928,1.092,1.097,2.109,1.224,0.505,0.895,0.853,1.008,1.47,0.792,1.175,1.136,0.773,1.169,1.287,1.001,0.861,0.729,1.175,0.812,0.928,0.972,1.216,2.275 +NM_032510,0.969,1.007,0.964,1.018,1.033,1.062,1.013,0.835,0.999,1.074,0.865,1.106,0.994,0.968,0.97,0.87,1.089,1.019,1.039,0.875,1.054,1.072,0.981,0.897,1.085,0.967,0.922,1.245,1.089,1.076,1.058,0.953,1.16,0.846,1.209,0.841,0.942,0.955,1.127,1.001,0.957,0.965,1.005,0.938,1.056,1.024,1.046,1.02,0.879,0.948,0.931,1.081,1.221,1.064 +NM_032511,1.081,1.017,0.987,0.925,0.849,0.808,0.946,0.874,1.125,0.949,0.909,1.035,1.131,0.839,1.127,0.973,1.055,1.046,0.895,1.052,1.028,0.946,1.047,1.024,0.848,0.949,1.097,1.033,0.805,1.069,0.924,1.052,1.177,1.154,0.957,1.026,0.945,1.002,0.958,0.805,1.142,1.105,0.964,0.97,1.002,1.061,0.942,1.035,0.835,1.038,0.886,1.087,1.237,1.786 +NM_032513,0.849,1.008,1.05,0.935,1.007,0.986,1.009,0.871,1.11,1.052,1.158,0.927,0.969,1.171,0.9,0.927,0.944,1.007,0.838,1.068,0.993,0.912,0.873,0.924,0.896,1.029,0.998,1.024,1.095,0.956,1.049,1.068,0.912,1.013,1.057,1.008,0.979,0.991,1.064,0.883,0.931,1.043,0.943,0.99,1.066,0.994,1.039,1.01,0.965,1.027,1.028,1.023,0.933,1.04 +NM_032514,0.922,1.051,1.162,0.975,0.97,0.979,0.928,0.981,1.296,1.032,1.022,0.963,1.076,0.994,0.835,1.219,0.893,0.848,0.913,1.033,1.048,0.988,1.046,0.931,0.985,1.042,0.944,0.925,0.911,0.962,1.064,0.999,1.062,1.226,1.332,0.961,1.06,1.034,1.224,0.88,1.084,0.893,0.99,1.123,0.951,1.007,1.075,0.97,1.064,1.112,0.994,1.006,1.073,0.915 +NM_032515,1.499,1.027,0.977,0.877,0.948,0.79,0.74,0.917,1.077,1.23,0.911,1.254,1.155,0.792,0.814,1.201,1.258,0.832,1.0,0.882,1.188,1.833,0.864,1.379,0.814,1.477,1.212,0.993,0.656,1.082,0.971,1.516,0.905,1.007,0.806,0.867,0.762,1.26,1.435,1.236,1.115,0.902,0.793,1.963,1.176,0.734,1.008,1.592,0.653,1.239,0.866,0.759,1.01,1.702 +NM_032517,1.008,0.982,0.934,0.885,1.079,1.053,0.977,0.932,0.927,0.867,1.005,1.226,1.136,0.813,0.782,1.123,1.0,1.14,1.013,0.943,0.957,1.08,1.104,1.06,1.07,0.997,1.056,0.969,1.139,0.972,1.191,1.001,0.874,0.997,1.043,0.931,0.96,1.034,1.033,0.996,1.072,0.957,0.951,0.98,1.098,1.087,0.945,1.061,1.0,0.916,0.92,1.271,1.035,1.005 +NM_032519,0.775,1.393,0.983,0.713,0.818,1.532,0.585,0.588,1.07,0.747,1.328,0.803,0.699,0.767,0.872,1.566,0.712,0.869,1.028,1.111,0.599,0.927,1.324,0.858,1.031,0.782,1.296,0.911,0.544,1.52,0.827,0.805,1.069,1.566,0.436,0.705,1.513,0.871,1.233,0.707,0.82,1.313,0.823,0.943,0.799,1.391,0.824,0.619,1.184,0.799,1.164,0.654,0.826,1.523 +NM_032520,0.747,1.284,0.82,0.867,0.697,1.3,0.652,0.498,0.652,0.62,1.916,0.618,0.827,0.552,0.917,1.518,0.552,0.787,1.11,1.041,0.629,0.702,1.014,0.644,1.171,1.072,0.89,0.629,0.485,1.613,0.672,1.687,1.292,2.178,0.424,0.822,1.358,0.659,1.769,0.57,0.752,1.753,0.82,2.127,0.843,1.007,0.709,1.003,0.548,0.664,1.048,0.721,0.988,1.058 +NM_032522,0.987,1.016,1.017,1.121,1.081,1.026,1.071,1.102,0.981,0.909,1.047,1.036,0.965,0.995,0.963,1.198,1.06,1.049,1.161,0.889,1.078,0.991,0.947,0.987,1.032,0.966,1.042,1.186,1.043,1.035,1.18,0.898,0.917,1.03,1.023,1.011,0.879,0.923,0.813,1.004,1.23,0.905,0.819,0.993,0.925,1.06,0.921,0.842,1.024,0.977,1.028,1.055,0.874,1.009 +NM_032523,0.848,1.148,1.029,1.091,0.977,0.881,0.848,0.863,0.928,1.191,1.106,0.965,0.942,0.908,0.837,0.851,0.978,1.225,0.962,0.917,0.931,1.08,0.982,0.989,1.098,0.923,1.035,0.948,1.166,1.099,1.104,0.997,0.999,1.073,1.038,1.043,0.975,1.108,1.031,0.905,0.974,1.089,1.036,1.156,1.168,1.058,1.074,0.957,1.09,1.041,1.043,0.995,0.946,1.135 +NM_032524,1.128,0.896,1.141,1.011,0.93,0.911,0.974,1.074,0.996,1.057,0.995,1.023,1.071,0.794,1.008,1.155,0.986,1.004,0.954,1.035,1.077,1.006,0.892,0.965,0.886,0.981,1.137,0.944,0.965,0.97,1.187,0.93,0.862,1.069,0.937,0.925,1.108,1.083,0.888,1.05,0.999,1.022,1.151,0.961,1.201,1.005,0.877,0.988,0.976,0.877,1.052,0.843,0.895,0.993 +NM_032525,3.286,0.316,2.951,0.772,2.541,0.252,0.234,1.841,3.659,2.924,0.273,1.551,2.496,1.89,1.447,0.874,4.767,1.901,4.037,0.255,2.208,2.36,0.294,2.52,0.251,3.865,2.827,2.595,0.209,0.332,3.491,1.641,1.824,0.439,3.242,0.524,0.214,3.587,0.315,0.472,3.138,0.389,0.264,0.68,3.638,0.241,1.944,4.002,0.318,3.758,0.612,1.312,3.618,0.667 +NM_032526,1.049,0.967,1.03,1.235,1.073,1.098,1.168,0.976,0.987,0.967,1.221,0.999,0.875,0.863,0.983,1.116,0.951,0.836,1.061,0.901,0.973,0.98,0.964,0.97,1.124,1.009,1.083,0.903,0.97,1.1,0.858,1.008,0.938,1.073,1.204,0.95,0.936,0.896,1.02,0.926,0.918,1.101,0.823,1.183,0.969,0.872,0.874,1.008,1.12,0.983,0.961,0.997,1.115,0.854 +NM_032527,1.047,0.954,0.96,1.002,1.044,1.121,0.897,1.062,0.964,0.962,1.058,0.984,0.962,0.886,1.337,0.979,0.904,1.137,0.854,0.825,0.997,0.892,1.023,0.944,1.002,1.17,1.071,1.189,1.156,1.164,1.046,1.025,1.015,1.02,1.043,0.875,1.005,0.985,0.851,0.96,0.966,0.914,1.075,0.912,0.988,1.126,1.019,0.847,0.859,0.986,0.938,0.96,1.167,0.943 +NM_032528,1.039,0.986,1.185,1.225,0.815,1.104,0.877,1.132,0.93,1.119,0.995,0.963,1.144,1.038,1.009,0.951,1.096,0.955,0.906,0.957,0.864,0.898,0.982,1.016,1.032,0.926,0.907,1.08,2.028,0.949,0.996,0.964,1.016,1.094,1.009,0.941,1.025,0.996,1.026,1.053,1.015,0.949,1.044,0.987,1.065,1.074,1.01,0.999,0.986,1.006,0.909,0.929,0.979,1.014 +NM_032531,0.961,0.965,1.091,1.085,0.95,0.904,1.015,1.033,1.061,0.893,1.029,0.997,0.884,1.15,1.129,1.117,0.98,0.89,1.097,0.992,1.04,0.909,0.922,1.076,1.167,0.903,1.088,1.028,1.563,0.993,0.969,0.955,0.971,0.867,1.033,0.954,1.067,0.972,1.013,1.005,1.055,1.341,1.23,0.984,1.11,1.064,0.936,0.967,1.026,1.149,1.081,0.989,1.043,0.995 +NM_032536,0.882,1.048,0.856,0.974,0.942,0.962,0.992,0.963,1.108,0.977,0.981,0.943,1.077,0.838,1.052,0.913,0.944,0.892,0.983,0.912,0.993,1.053,0.964,0.968,1.043,0.873,0.864,1.071,0.866,0.977,1.057,1.598,0.91,0.978,1.085,0.985,1.001,1.103,1.027,1.083,0.925,0.975,1.125,0.87,0.968,1.013,1.013,1.013,0.959,0.981,1.09,1.151,0.995,1.018 +NM_032545,0.97,1.308,1.036,1.15,0.981,0.951,1.815,0.919,0.969,1.062,1.03,1.018,0.949,1.014,0.994,0.992,0.972,1.137,1.118,1.146,1.064,0.906,0.944,0.96,2.449,1.054,0.95,1.053,0.952,1.039,0.849,0.972,0.888,6.585,0.992,0.997,1.879,1.065,0.774,2.034,0.889,1.075,1.877,0.961,1.038,1.043,1.589,0.984,0.989,1.014,0.971,0.928,0.957,0.896 +NM_032547,0.854,1.388,0.991,1.131,0.964,2.036,0.908,0.963,1.239,0.786,1.917,0.951,0.982,0.632,0.994,2.399,0.686,1.435,1.102,1.143,0.389,1.306,1.513,1.127,0.737,0.716,1.161,0.977,0.953,1.37,1.13,0.955,1.129,1.688,0.67,0.276,1.863,1.216,1.696,0.585,0.955,0.97,0.823,0.435,0.819,1.453,0.951,1.002,1.174,0.813,1.446,0.525,0.617,1.191 +NM_032549,0.833,1.197,0.921,0.85,0.851,1.13,0.865,0.858,0.986,0.914,1.162,0.82,1.059,1.004,0.779,1.294,0.801,0.767,0.938,0.979,0.722,0.836,1.235,1.059,0.808,0.868,1.098,0.906,0.745,1.189,0.948,1.701,2.022,1.562,0.701,0.642,1.073,1.014,1.09,0.746,1.007,1.169,0.767,1.078,0.857,1.027,1.072,0.832,0.89,0.856,0.978,0.734,0.762,1.111 +NM_032550,0.827,1.09,1.179,0.802,0.981,1.294,0.704,0.749,1.226,0.923,1.011,0.841,0.833,1.067,1.031,1.026,1.326,0.703,1.135,1.056,0.738,0.825,1.218,0.899,0.517,0.683,1.762,0.982,0.502,1.345,1.271,0.989,1.179,0.921,1.297,1.427,0.98,0.991,1.127,0.817,1.188,0.887,0.705,1.262,0.995,1.117,0.937,0.852,0.73,1.186,1.24,1.311,1.461,1.222 +NM_032551,1.047,0.941,1.071,1.018,0.998,0.909,0.982,0.86,0.966,0.894,0.952,0.954,1.027,1.048,0.99,0.82,1.088,0.924,1.058,0.954,1.042,1.003,1.014,1.001,1.004,1.129,1.039,0.996,1.074,0.938,0.806,0.927,1.074,1.052,1.069,1.029,1.005,1.044,0.984,3.249,1.038,0.999,1.123,1.385,1.038,1.036,1.249,0.94,0.954,1.21,0.973,1.05,0.98,2.519 +NM_032552,0.843,0.881,0.926,0.961,0.781,1.321,0.754,0.647,0.968,0.835,1.043,0.743,0.805,0.758,1.185,1.361,0.91,0.978,0.93,1.157,0.801,0.909,1.176,0.81,0.985,0.783,1.026,0.779,0.873,1.086,0.819,1.251,1.38,1.175,0.699,0.744,0.988,0.945,1.87,1.081,0.789,1.151,0.677,1.299,0.965,0.957,0.818,0.927,0.999,0.891,1.113,0.942,0.931,1.234 +NM_032553,0.935,1.009,1.095,0.984,1.29,1.078,1.055,1.096,1.018,0.903,1.029,1.03,1.0,1.05,0.858,1.07,1.175,1.008,0.929,0.947,1.005,0.969,1.076,1.027,1.029,0.917,1.092,1.051,0.993,1.069,1.074,0.766,1.003,1.186,1.062,0.892,0.915,1.252,0.967,0.925,0.864,1.151,0.925,0.895,1.041,0.968,0.976,1.0,0.898,1.141,0.984,1.062,1.04,1.052 +NM_032554,0.964,1.104,1.056,0.808,0.921,1.097,1.102,1.024,0.76,1.096,1.02,1.026,0.958,0.875,0.926,1.073,0.817,1.111,0.976,1.013,0.734,0.954,0.881,1.044,0.961,0.832,0.791,0.849,1.127,1.158,0.906,1.28,0.972,1.254,1.243,1.401,1.002,0.953,1.192,2.686,0.988,0.938,1.051,1.035,0.968,0.859,0.997,0.929,0.904,0.783,1.008,0.916,0.896,1.132 +NM_032556,1.057,0.986,0.933,0.916,0.795,1.066,0.898,0.973,0.933,0.83,0.947,1.039,1.114,1.018,1.093,0.924,1.049,1.03,0.928,1.065,1.141,1.063,1.026,1.021,0.996,1.053,1.007,1.0,1.143,1.101,1.073,0.984,1.041,0.96,1.2,0.988,1.113,1.008,0.998,1.004,0.926,1.128,1.031,0.938,1.095,1.022,0.84,1.065,1.091,0.981,0.992,1.046,0.922,0.922 +NM_032557,0.744,1.002,1.247,0.621,1.244,1.24,0.77,0.785,1.072,0.841,1.283,0.949,0.803,0.517,1.087,1.842,0.894,1.201,0.996,1.113,0.392,0.766,1.632,0.995,0.514,0.653,1.17,0.882,0.497,1.351,1.194,1.164,1.249,1.19,1.721,0.448,1.75,1.403,1.341,0.734,1.155,1.07,0.517,0.888,1.075,1.199,1.191,1.056,2.021,0.933,1.133,0.909,0.58,0.927 +NM_032558,1.292,1.162,1.68,0.572,1.435,1.257,0.885,0.9,1.894,0.915,0.825,0.751,1.032,0.749,1.011,1.365,1.041,0.98,1.4,0.244,0.668,1.445,0.907,1.836,0.614,0.615,1.704,1.299,0.854,0.329,0.899,1.809,1.947,1.309,0.25,0.588,1.243,0.586,1.477,0.53,0.852,1.127,0.599,1.22,0.917,0.825,0.716,1.408,0.606,1.121,1.122,0.48,1.073,2.005 +NM_032559,0.939,1.062,1.0,1.221,1.182,0.894,0.991,1.041,1.127,1.085,1.005,1.032,1.167,1.069,1.238,0.912,1.035,0.976,1.031,0.904,1.009,0.992,1.092,0.995,1.08,1.039,0.923,0.977,0.865,1.061,1.012,1.037,1.112,1.017,0.908,1.132,0.982,0.921,0.925,1.038,0.95,0.991,0.937,0.891,1.074,0.898,0.941,0.899,1.096,0.972,1.104,0.947,1.0,1.045 +NM_032560,1.062,1.014,1.028,1.022,0.913,1.069,0.786,1.085,0.89,0.858,0.966,1.057,1.172,0.85,1.175,1.056,0.918,1.153,0.824,0.926,0.828,1.128,1.032,1.022,1.091,0.984,1.012,1.023,0.935,0.907,0.91,1.221,1.001,0.959,1.065,0.916,0.974,1.042,1.036,0.97,1.125,1.037,1.036,0.922,1.099,0.999,0.985,1.075,0.964,1.027,1.1,0.964,0.928,0.929 +NM_032561,1.024,0.992,1.001,0.913,0.998,0.934,0.986,0.999,1.01,1.075,1.03,0.956,1.061,0.991,1.123,1.055,0.957,0.966,1.067,1.093,0.975,0.935,0.852,0.949,0.98,1.035,1.11,1.026,1.052,0.796,1.012,0.926,1.156,1.11,1.155,0.889,1.085,1.058,0.931,1.034,0.913,1.022,0.783,0.84,1.045,0.999,0.878,0.966,1.119,1.151,0.958,1.008,1.026,0.954 +NM_032562,0.847,1.0,0.875,0.985,1.176,1.018,0.85,1.139,1.104,0.804,1.042,0.991,1.028,0.925,1.099,1.221,0.963,0.824,1.244,0.917,0.938,0.98,0.988,0.942,0.944,1.019,0.817,0.954,0.866,1.116,0.888,0.878,0.923,1.017,0.891,0.918,2.039,1.054,1.024,1.267,0.953,1.022,1.026,1.075,0.991,1.089,1.644,0.996,0.977,0.958,1.089,0.88,0.921,1.0 +NM_032563,2.01,0.519,4.705,1.774,23.82,0.59,0.682,6.29,0.682,1.035,0.595,5.707,1.319,0.666,8.111,7.229,3.05,4.742,9.955,0.641,5.935,2.976,0.658,0.936,0.616,3.388,10.06,3.861,0.608,0.601,1.49,0.688,10.43,0.653,8.196,0.511,0.592,10.44,0.899,0.697,23.08,0.7,0.554,0.54,6.995,0.686,10.56,12.84,1.414,26.24,3.63,0.715,1.882,0.698 +NM_032564,1.45,0.933,0.888,0.929,1.392,1.609,0.621,0.782,1.487,0.939,1.275,0.932,1.092,0.915,0.813,0.783,1.963,1.034,1.921,0.657,0.835,1.305,1.008,1.554,0.854,1.233,1.346,0.988,0.903,1.929,1.259,0.667,2.447,1.562,0.878,0.5,0.765,1.014,1.201,0.796,1.354,1.328,0.611,0.818,1.238,0.717,1.22,1.493,0.509,1.194,0.707,0.787,1.094,0.927 +NM_032565,1.308,0.685,1.889,0.895,1.096,0.52,0.451,0.83,1.486,1.536,0.813,1.423,1.23,1.231,1.119,1.624,0.979,1.162,2.826,0.704,0.97,0.955,1.289,1.013,0.407,1.821,1.525,1.476,0.167,0.598,1.595,0.949,1.845,0.832,0.189,1.259,0.759,1.38,0.987,0.534,1.661,0.997,0.448,2.019,1.578,0.579,1.003,1.067,0.846,1.612,0.841,1.753,1.846,1.546 +NM_032566,3.519,0.0519,1.42,0.98,5.162,0.178,0.144,6.482,3.855,3.084,0.0729,5.724,3.023,2.274,3.534,2.806,1.764,2.743,3.005,0.12,2.008,3.641,0.0199,4.676,0.14,4.63,1.797,4.303,0.264,0.0951,4.8,0.0224,2.307,0.248,4.914,0.0296,0.109,7.668,0.112,0.0264,5.099,0.0616,0.0301,0.0241,3.154,0.0267,3.051,3.533,0.853,3.261,1.396,1.112,1.834,0.329 +NM_032567,1.148,0.958,1.026,1.025,0.966,1.12,0.932,1.216,0.989,0.976,0.961,0.992,1.091,1.0,1.053,1.108,1.066,0.967,0.989,0.895,1.077,1.121,1.109,1.123,1.157,0.931,1.102,1.117,0.985,0.894,0.981,1.015,0.926,1.011,0.93,0.931,1.029,0.983,1.013,1.061,1.021,1.045,0.99,0.98,0.959,1.083,1.033,0.984,0.9,1.021,1.062,0.999,0.942,0.991 +NM_032570,1.013,0.958,0.984,1.085,0.997,0.978,1.068,1.034,1.064,1.054,0.969,1.11,0.82,1.008,1.422,1.143,1.004,0.999,1.127,0.906,1.042,1.063,0.909,0.955,0.87,0.967,1.123,0.99,0.603,1.01,0.983,0.95,1.066,1.016,1.079,0.953,0.959,0.9,0.979,1.073,1.148,1.072,0.893,0.91,0.877,0.967,0.868,1.099,0.908,1.014,0.973,0.889,1.096,0.913 +NM_032573,1.006,0.875,1.061,0.936,0.93,1.083,1.043,1.119,0.947,0.964,1.006,0.999,1.023,1.068,0.861,1.102,0.921,1.009,0.981,1.107,1.001,0.936,0.904,0.923,0.93,0.912,1.12,0.934,0.953,1.042,1.046,1.029,1.039,0.868,1.151,0.925,1.021,0.858,0.763,0.999,0.984,0.864,1.175,0.943,1.028,0.989,0.937,0.963,0.908,0.959,0.99,1.014,1.176,1.008 +NM_032574,0.703,0.918,1.229,0.78,0.867,1.28,0.476,0.749,1.378,0.965,1.49,0.97,0.978,0.999,1.066,1.696,0.896,1.001,1.778,0.911,0.615,0.996,1.069,1.097,0.649,0.859,1.386,0.936,0.425,1.109,1.123,1.079,2.96,1.615,0.47,0.964,1.346,1.029,1.022,0.676,1.157,0.922,0.673,1.517,0.887,0.988,1.183,1.01,0.693,0.714,0.817,0.819,1.098,1.644 +NM_032575,0.904,1.052,1.01,1.125,0.926,1.16,0.879,0.914,1.087,1.091,1.012,0.949,1.058,0.988,0.991,0.895,1.085,0.99,0.957,1.015,1.189,1.051,0.991,1.122,0.987,1.068,0.966,0.956,0.915,0.846,1.046,1.026,0.985,0.945,0.986,1.126,1.029,1.026,1.086,1.039,1.027,1.05,1.136,0.924,0.981,0.996,1.043,0.905,0.907,0.984,1.051,0.989,1.02,0.933 +NM_032576,1.018,0.87,1.054,0.74,0.879,1.06,0.868,1.107,1.238,0.984,0.967,0.9,1.048,0.935,1.22,0.99,1.098,0.808,0.91,0.905,0.895,0.749,0.909,0.838,1.096,0.95,1.307,0.906,1.019,1.105,1.088,1.104,0.973,1.23,0.859,0.928,1.177,1.065,0.872,0.93,0.941,0.933,0.856,0.809,0.975,0.992,0.898,1.052,1.019,0.971,1.258,0.952,0.871,0.992 +NM_032577,1.085,1.0,0.969,1.04,0.953,0.976,0.837,1.087,1.274,0.952,1.012,0.952,1.062,0.845,1.096,1.032,1.181,1.082,1.017,1.109,1.018,0.982,0.914,0.876,1.008,0.951,0.779,1.172,0.925,1.083,0.933,0.863,0.941,0.981,1.063,1.074,0.992,0.947,0.904,0.959,0.911,0.937,0.947,0.94,0.868,1.045,1.045,1.058,0.922,0.973,1.041,1.24,0.893,0.914 +NM_032578,0.91,1.162,0.96,1.08,0.966,1.536,1.211,1.095,0.907,0.916,1.062,0.872,1.015,1.005,0.978,0.969,1.042,0.992,0.973,1.081,0.823,0.941,1.07,1.005,0.948,1.022,0.954,0.902,1.385,1.019,0.933,0.98,1.176,1.142,0.871,0.91,1.076,0.967,1.245,0.866,1.081,1.081,0.979,0.927,0.953,0.952,1.06,1.054,0.907,1.024,1.042,0.879,0.994,0.929 +NM_032579,1.079,1.1,1.025,1.028,1.226,1.033,1.022,0.994,0.877,0.974,0.911,0.991,0.965,0.96,1.023,1.034,1.0,1.022,1.058,1.09,0.983,0.908,0.915,1.018,0.95,0.987,1.067,1.135,0.785,1.074,1.098,0.969,0.988,0.928,1.077,1.158,0.991,1.087,1.122,1.155,1.16,0.91,1.269,0.953,0.99,1.133,1.026,1.059,0.994,0.948,0.911,0.83,0.851,1.056 +NM_032580,0.916,0.981,1.107,1.152,0.893,1.011,1.01,0.966,1.114,1.28,1.1,0.898,0.973,1.262,0.85,1.266,1.024,1.047,0.999,0.983,1.164,1.093,0.911,1.071,1.08,0.991,1.013,1.096,1.2,0.988,1.07,0.955,0.999,1.059,1.08,0.978,1.113,0.926,0.956,0.94,0.907,1.006,1.082,0.952,0.883,0.931,1.052,0.994,0.961,1.166,1.082,1.025,0.96,0.89 +NM_032581,0.961,1.009,1.066,0.831,1.034,0.894,0.902,1.176,1.013,1.181,0.839,0.918,0.852,1.019,1.009,0.952,0.948,1.075,1.183,0.94,1.017,1.022,0.873,1.127,0.907,0.971,1.108,0.942,0.761,0.918,1.016,1.03,1.064,0.906,1.024,1.151,0.997,0.87,1.038,1.028,0.987,0.916,1.111,1.046,1.118,1.032,0.928,1.113,0.956,0.9,0.918,1.082,1.168,0.973 +NM_032582,0.915,0.936,1.372,0.696,1.447,0.921,0.649,0.787,1.796,1.848,0.725,1.238,0.759,0.704,1.015,0.838,1.257,1.057,1.184,0.874,0.665,1.115,0.945,1.839,0.592,0.952,1.374,1.065,0.509,0.916,1.36,1.755,1.312,0.891,0.607,1.003,0.742,1.159,1.289,1.276,1.359,0.735,0.716,1.205,1.808,0.884,1.276,0.962,0.837,1.199,0.917,0.902,1.529,1.067 +NM_032584,1.078,0.989,1.022,1.043,0.908,0.87,1.14,0.949,1.169,1.19,0.931,0.983,0.912,1.044,0.808,0.907,0.984,1.0,0.922,0.977,1.019,0.868,0.972,1.078,0.989,0.886,1.046,1.183,0.942,1.028,1.0,1.047,1.088,1.082,1.003,1.11,1.01,0.934,1.002,1.063,1.173,0.915,1.072,0.98,0.984,0.868,1.0,1.113,0.966,0.972,0.85,1.038,1.071,1.048 +NM_032587,0.91,0.935,1.142,0.886,1.018,1.12,0.759,0.792,0.86,1.019,1.06,1.061,0.844,0.837,0.901,1.112,1.05,1.006,1.064,0.988,0.806,0.898,1.068,1.148,0.967,1.027,1.124,0.906,0.748,1.189,0.887,0.993,0.846,1.246,0.655,0.828,0.994,0.954,1.143,0.973,1.03,0.955,0.762,1.036,1.049,0.953,0.919,1.026,1.074,1.009,1.175,0.926,0.907,0.859 +NM_032588,0.933,1.114,0.988,0.945,0.999,0.98,0.937,1.227,1.074,0.991,0.952,0.843,0.948,1.073,0.877,0.993,1.024,1.016,0.906,0.928,0.969,1.102,0.932,0.982,1.133,1.061,1.04,1.11,1.133,1.141,1.001,1.07,0.853,1.128,1.209,1.011,0.999,1.063,1.042,0.974,1.09,1.058,1.387,0.932,1.079,1.064,0.988,0.986,0.991,1.059,0.978,1.126,1.051,1.089 +NM_032589,1.009,0.947,0.857,0.874,0.978,1.048,1.091,0.867,1.143,0.795,1.062,0.976,0.909,0.939,1.1,0.948,1.1,1.051,1.139,1.012,1.072,0.942,0.931,0.802,1.085,0.966,0.86,1.032,1.314,1.033,0.976,1.012,0.966,0.973,0.977,1.007,0.936,0.888,1.75,0.972,0.919,0.955,1.185,0.934,1.029,0.996,1.01,1.012,1.044,1.025,0.882,0.937,0.902,1.031 +NM_032590,1.072,0.972,1.001,0.999,0.99,0.949,0.876,1.168,0.954,1.013,1.002,1.112,1.055,0.963,0.83,0.945,0.989,1.091,1.243,0.885,0.978,0.964,1.072,1.082,1.086,0.967,1.039,1.106,0.679,1.157,1.122,0.964,0.929,1.126,0.999,0.92,0.929,1.069,0.957,0.963,0.975,0.853,0.892,1.058,0.96,1.071,0.91,0.854,0.931,0.862,1.089,1.024,1.006,1.052 +NM_032591,0.972,0.989,1.014,1.064,0.863,1.104,1.105,1.149,1.064,1.035,1.158,0.986,0.958,0.973,0.928,1.089,1.0,0.883,0.952,0.989,1.152,1.003,1.149,0.908,1.057,1.024,1.011,0.885,0.896,1.067,1.029,1.033,0.843,0.918,1.203,0.934,0.879,0.999,0.865,0.932,0.94,0.977,1.122,1.036,1.016,1.022,0.922,0.954,0.921,1.054,0.929,1.042,1.017,1.001 +NM_032592,0.959,1.057,1.042,1.211,1.063,0.925,0.78,1.032,0.995,1.028,1.021,0.981,1.014,1.008,0.805,1.081,1.127,1.165,0.949,1.09,0.9,0.985,0.894,1.0,1.042,0.989,0.959,0.976,0.959,1.133,0.957,1.081,0.861,1.208,0.952,0.937,1.022,0.918,1.116,1.011,1.046,0.987,1.11,0.967,0.917,1.102,0.951,1.078,1.016,1.003,1.189,0.928,0.915,0.972 +NM_032593,0.549,1.116,0.783,0.896,0.575,1.558,0.691,0.387,0.564,0.624,1.68,0.535,0.549,0.486,1.103,1.857,0.567,1.091,1.183,1.073,0.506,0.535,1.226,0.54,1.182,0.859,0.961,0.444,0.628,1.722,0.506,1.605,1.502,2.447,0.233,0.753,1.45,0.654,1.645,0.541,0.637,1.412,0.624,2.568,0.566,1.015,0.685,0.712,0.885,0.652,1.112,1.18,0.775,2.427 +NM_032594,1.076,0.93,1.04,0.898,0.901,1.019,1.045,0.799,1.025,1.152,0.984,1.057,1.048,0.89,1.008,1.043,1.03,0.93,1.006,1.098,1.052,1.182,1.097,1.044,1.073,1.046,0.998,1.075,1.373,1.047,1.127,0.973,1.089,1.016,1.068,1.001,0.993,1.121,1.024,0.916,0.84,0.984,0.923,0.939,1.083,0.814,1.137,1.018,0.999,1.03,1.001,0.82,1.018,1.005 +NM_032595,1.019,0.93,0.983,0.921,0.934,0.925,0.896,0.768,1.224,0.938,1.003,1.084,1.029,1.055,0.991,1.09,1.003,1.055,1.04,0.938,0.956,1.007,1.045,1.168,0.999,1.024,1.104,1.011,0.737,1.059,0.992,0.989,0.94,1.135,0.911,0.901,0.881,0.997,1.018,0.987,0.937,1.001,0.952,0.991,1.024,0.839,0.997,0.993,0.927,1.034,1.011,1.0,0.867,0.907 +NM_032596,1.009,1.114,0.99,0.985,1.148,0.906,0.873,0.807,0.961,1.215,1.014,1.082,1.083,0.886,0.899,0.97,1.091,0.992,0.918,0.89,0.759,0.99,0.828,1.071,1.044,1.056,1.049,1.105,0.928,1.131,0.913,1.1,0.848,0.959,1.038,1.092,0.933,1.117,1.17,1.072,1.055,1.083,0.939,1.08,1.002,0.956,1.04,1.25,1.012,0.998,0.918,0.915,0.874,1.09 +NM_032597,0.92,0.928,0.947,1.086,1.01,1.174,1.155,0.877,1.0,0.885,1.08,0.855,0.917,1.068,0.918,1.181,0.946,1.131,0.962,1.064,1.12,0.895,1.041,0.938,0.971,0.966,1.019,0.912,0.805,1.005,1.006,1.234,0.987,0.956,0.951,0.84,0.979,0.903,1.022,1.829,0.991,0.926,0.909,0.975,0.95,0.946,1.094,0.955,0.979,0.844,0.969,0.99,1.099,1.042 +NM_032598,1.002,0.967,1.067,0.996,0.871,1.003,0.913,1.001,1.122,0.976,1.085,1.251,1.009,0.807,0.811,1.092,1.063,1.098,0.958,1.089,1.1,1.009,0.905,1.038,0.858,0.938,0.878,0.899,0.923,0.969,0.873,0.976,0.965,0.886,1.041,1.121,1.034,1.028,0.933,1.02,1.04,1.065,0.877,1.116,0.98,1.053,0.919,1.126,1.357,1.181,0.939,0.988,1.114,0.945 +NM_032599,1.071,1.103,0.956,0.951,0.883,1.007,0.829,1.405,0.912,1.01,0.721,1.11,0.926,0.855,1.152,1.017,0.992,0.942,1.066,0.861,1.189,1.017,0.981,0.993,0.998,0.925,1.011,1.172,0.652,1.222,1.212,0.916,1.1,0.914,1.08,0.958,0.944,1.0,0.957,0.939,0.907,0.986,0.855,1.169,1.179,0.95,1.058,0.944,1.228,0.987,0.894,0.999,0.852,1.102 +NM_032600,1.155,1.022,0.816,0.983,1.02,1.012,0.899,0.849,0.995,0.867,1.038,1.066,1.004,1.043,0.888,1.135,1.109,0.971,0.946,1.119,0.928,1.049,1.033,1.042,1.016,0.963,0.97,1.063,0.889,0.999,1.067,0.955,0.935,1.004,1.066,1.032,1.118,0.976,0.947,0.97,1.0,0.826,1.004,0.977,1.067,1.024,0.864,1.064,0.962,0.837,0.991,0.986,1.051,1.048 +NM_032601,0.657,1.045,1.975,0.767,1.275,0.991,0.57,1.125,1.227,1.343,0.908,1.344,0.907,0.794,1.056,1.281,0.96,1.368,1.876,1.182,0.476,1.159,1.036,1.037,0.683,0.858,1.158,1.105,0.456,0.996,1.031,0.958,1.262,1.182,0.227,0.614,1.257,1.353,0.847,0.454,1.134,0.946,0.641,0.591,1.049,1.004,0.838,0.839,0.677,0.736,0.996,0.622,0.773,1.134 +NM_032602,0.925,1.083,0.878,1.055,1.012,1.142,0.949,0.992,1.034,0.992,0.979,0.968,0.924,1.002,1.2,1.042,1.057,1.359,1.005,0.994,0.942,0.991,1.047,0.962,1.021,1.15,1.049,0.958,0.991,0.976,0.932,0.966,1.1,0.98,1.137,1.061,1.001,0.93,1.038,0.973,1.082,1.028,0.869,1.021,1.08,0.982,1.112,0.951,1.072,1.105,1.12,1.0,1.049,1.046 +NM_032603,0.816,1.015,0.858,1.08,0.88,0.897,0.874,0.752,0.887,1.113,0.977,1.046,1.016,0.899,0.947,0.91,0.793,0.904,1.054,0.896,0.907,1.043,1.142,1.063,1.102,0.876,0.966,0.886,0.859,1.093,0.88,1.687,1.169,0.852,1.015,1.014,0.819,1.043,1.196,1.233,0.934,1.2,0.796,0.91,1.014,1.043,0.964,0.894,0.974,0.875,0.994,1.055,0.888,1.158 +NM_032606,1.06,1.033,1.118,0.978,1.04,0.971,1.036,1.065,0.874,0.929,1.112,1.196,1.053,0.898,0.933,1.008,1.046,0.86,0.91,0.977,0.977,1.026,0.99,1.172,0.99,1.011,1.041,1.04,0.836,0.939,0.966,1.166,0.892,0.984,0.909,1.0,0.942,1.058,0.941,0.934,1.128,0.945,0.939,1.076,1.033,1.003,1.122,0.994,1.0,1.001,1.074,0.912,0.855,0.988 +NM_032607,0.883,1.48,0.788,1.118,0.966,1.056,1.188,0.833,0.941,0.982,1.418,1.134,0.883,0.993,1.547,3.478,0.967,0.986,1.006,1.386,0.785,1.096,1.139,0.905,1.022,0.924,0.879,0.82,0.768,1.671,0.906,1.0,0.975,1.095,0.948,1.238,5.009,0.825,1.449,0.897,0.958,2.406,2.408,1.021,0.845,1.196,1.689,0.968,1.6,1.01,1.455,1.022,1.003,0.903 +NM_032608,0.984,1.036,0.951,0.959,0.931,0.98,0.987,1.021,0.984,0.879,1.179,0.941,0.906,0.889,0.839,0.913,0.995,1.062,0.896,0.897,1.081,0.967,1.045,1.008,0.849,1.048,0.964,1.099,1.262,0.965,0.953,0.996,0.885,0.961,1.036,1.074,1.111,1.009,2.0,1.025,1.162,0.909,1.015,0.951,1.089,1.03,0.888,1.001,0.976,1.034,0.906,0.964,0.998,1.071 +NM_032609,0.822,0.959,0.897,0.92,0.854,1.015,0.915,1.177,0.789,0.993,1.073,1.046,0.954,0.889,1.113,1.198,0.878,1.043,0.904,0.903,0.934,1.005,0.967,0.932,1.143,0.927,0.83,0.994,0.727,1.11,0.915,1.405,1.051,1.095,0.91,0.951,0.841,0.928,1.269,0.875,0.846,1.171,0.94,0.953,1.21,0.861,0.914,0.875,0.834,1.036,1.046,1.036,1.02,1.036 +NM_032620,0.818,1.098,1.169,0.803,1.073,1.044,0.724,0.762,1.415,1.078,0.749,1.256,0.854,0.919,1.126,0.977,1.23,0.891,1.0,1.02,0.754,1.059,1.162,1.427,0.816,0.974,1.457,1.078,0.697,1.081,0.982,1.322,1.385,0.96,0.595,1.086,0.853,1.16,0.838,1.249,1.25,0.982,0.687,1.108,1.133,0.792,0.907,0.828,0.782,1.002,0.962,1.199,0.956,1.725 +NM_032622,1.052,0.846,1.071,0.877,1.095,1.132,0.889,1.007,1.243,0.893,1.295,0.857,1.094,1.186,0.975,1.108,1.152,0.999,1.025,1.123,0.809,0.964,1.012,0.868,1.008,1.021,0.98,0.991,1.097,1.067,0.973,0.873,0.923,1.027,1.13,1.042,1.181,0.825,1.135,0.888,0.919,1.071,0.884,0.911,0.905,1.114,0.962,0.897,0.999,1.067,1.08,0.958,1.103,0.935 +NM_032625,1.045,1.016,1.054,0.909,0.789,0.942,0.907,0.836,1.065,0.998,1.061,0.96,1.056,0.85,0.946,0.898,1.058,0.943,0.825,1.071,1.002,0.964,0.933,0.87,1.005,0.846,0.942,0.948,0.804,1.058,0.99,1.097,1.107,1.182,0.993,0.981,1.024,0.948,1.233,0.935,1.028,1.112,0.9,0.996,1.012,1.094,0.967,0.887,0.911,1.042,0.926,1.028,0.964,1.008 +NM_032626,1.9,1.8639999999999999,2.097,1.8719999999999999,2.121,2.108,1.888,2.1479999999999997,2.207,1.994,1.811,2.066,2.133,1.7069999999999999,1.9740000000000002,1.969,1.934,1.9769999999999999,2.027,1.901,1.7730000000000001,2.053,1.8579999999999999,2.0460000000000003,1.9569999999999999,2.001,2.002,1.924,1.697,2.015,2.0149999999999997,2.347,2.857,1.947,2.2190000000000003,1.764,2.162,2.125,1.934,2.225,1.8319999999999999,1.928,1.7850000000000001,1.97,2.061,1.863,2.104,1.9009999999999998,1.9849999999999999,2.144,1.846,1.8119999999999998,1.748,1.992 +NM_032627,0.604,1.268,0.859,0.881,0.708,1.042,0.761,0.502,0.668,0.738,1.157,0.788,0.695,0.555,0.812,1.41,0.686,0.822,0.827,1.145,0.54,0.512,1.659,0.922,1.017,0.718,1.224,0.581,0.494,1.522,0.754,2.506,1.54,1.926,0.326,1.287,0.967,0.814,1.688,1.705,0.777,1.268,0.705,1.708,0.932,0.719,0.686,0.673,0.809,0.785,1.144,1.105,1.168,2.175 +NM_032630,0.869,1.151,1.346,0.739,1.256,1.079,0.721,0.813,1.28,1.428,0.846,1.711,0.879,0.676,0.852,1.221,0.99,1.241,1.339,1.129,0.62,0.97,1.215,1.555,0.707,1.034,1.312,1.252,0.478,1.271,0.938,1.397,1.205,1.166,0.33,1.056,0.98,1.25,1.33,0.725,1.342,0.914,0.753,1.108,1.234,0.863,1.493,1.002,1.155,0.848,0.962,0.809,1.074,1.14 +NM_032631,0.846,1.079,0.977,1.007,0.942,1.076,0.903,0.872,0.908,0.887,0.945,0.939,0.785,0.836,0.857,1.0,1.133,1.036,0.949,0.903,0.897,1.095,1.314,0.937,1.001,0.966,1.094,0.943,0.785,1.093,0.824,1.223,0.943,1.007,0.893,0.934,0.983,1.047,1.312,1.119,0.92,1.063,0.928,1.266,0.885,1.006,0.9,1.079,0.993,0.997,1.073,0.808,0.952,1.011 +NM_032632,0.417,1.092,1.353,0.534,1.011,1.515,0.97,0.711,1.151,0.753,0.924,1.277,0.639,0.477,0.962,1.498,0.804,1.073,0.75,1.238,0.319,0.831,1.418,1.13,0.498,0.446,1.03,0.905,0.548,1.499,0.822,1.233,1.78,1.39,0.351,0.769,1.163,0.734,1.17,1.034,1.011,1.179,0.857,0.781,0.824,1.257,1.172,0.767,1.414,0.68,1.095,0.801,0.553,2.065 +NM_032633,0.928,1.093,1.052,0.888,0.915,1.107,1.057,0.953,1.048,0.953,1.136,1.108,0.984,0.905,1.289,1.083,1.007,0.972,0.927,1.094,1.138,0.888,0.997,1.09,1.025,0.948,1.0,1.084,1.745,1.148,0.969,1.191,1.011,1.003,0.842,1.082,0.828,1.039,0.938,0.856,1.0,1.007,0.904,0.952,0.886,1.032,1.056,1.174,1.039,0.89,0.961,1.02,0.92,0.883 +NM_032634,0.946,0.918,0.991,0.988,0.966,0.813,0.871,1.027,1.08,0.841,1.026,0.831,1.065,0.894,1.001,0.934,0.923,1.002,0.944,0.962,0.959,0.843,0.87,0.927,0.959,1.011,1.073,0.925,0.792,1.053,0.946,1.1,1.067,1.048,0.918,0.99,0.94,1.089,1.12,0.949,0.878,1.033,1.053,1.362,0.911,1.013,1.086,0.883,1.085,1.052,1.024,0.994,0.88,1.101 +NM_032635,1.263,0.91,1.092,0.789,0.958,1.002,0.472,0.771,1.405,1.046,1.001,1.184,1.064,0.809,0.882,1.45,0.899,0.897,2.043,0.645,0.809,1.34,1.336,1.548,0.697,1.384,1.29,1.015,0.422,0.996,1.172,0.921,2.046,1.353,0.244,0.998,0.757,1.383,1.608,0.727,1.133,0.998,0.511,1.207,1.367,0.67,0.999,1.261,0.824,1.16,0.843,0.824,1.289,1.13 +NM_032636,0.82,0.772,1.281,1.066,0.976,0.978,0.899,0.677,1.063,0.898,0.968,0.956,0.995,0.676,0.836,1.092,0.86,1.179,1.056,0.922,0.854,0.869,1.461,1.017,0.8,0.885,1.462,0.865,0.599,1.188,0.882,0.991,2.802,1.028,0.516,0.934,0.996,1.014,1.352,1.194,1.18,0.989,0.56,1.154,1.072,0.891,1.156,0.853,1.043,0.787,1.308,1.025,0.788,2.167 +NM_032637,1.745,1.701,2.34,1.393,1.9569999999999999,2.173,1.1960000000000002,1.5539999999999998,2.227,1.964,1.6800000000000002,2.671,1.806,1.805,1.7530000000000001,2.545,1.78,1.907,2.886,1.892,1.736,1.95,2.319,2.238,1.32,1.901,2.935,1.899,1.069,2.1260000000000003,2.0149999999999997,2.092,10.486,1.806,1.089,2.865,2.114,2.224,2.082,2.234,2.223,1.691,1.342,2.564,2.014,1.7679999999999998,1.9849999999999999,1.77,1.938,1.929,2.066,2.3200000000000003,2.157,3.0410000000000004 +NM_032638,0.91,1.173,0.938,0.987,1.009,1.047,1.17,0.9,1.089,0.851,0.98,0.932,0.975,0.869,1.113,0.989,0.871,0.995,1.056,1.006,1.102,0.914,1.09,0.94,0.948,0.911,0.941,1.074,0.881,1.142,1.034,0.949,1.027,1.319,1.155,0.903,0.919,0.957,1.108,0.855,1.043,1.108,0.87,0.861,0.843,0.9,0.907,0.95,0.796,0.991,1.03,0.921,0.84,1.112 +NM_032641,0.564,0.707,0.863,0.709,0.686,1.829,0.834,0.61,1.107,0.997,1.547,0.66,0.496,0.622,0.791,1.172,0.644,1.502,0.613,2.027,0.467,1.076,1.557,0.696,0.491,0.733,1.003,0.917,0.599,1.52,0.559,1.962,1.835,1.003,0.303,3.176,0.868,0.808,1.318,1.595,0.838,1.568,0.7,1.608,0.892,1.229,1.554,0.448,0.76,0.652,1.7,0.843,0.602,1.469 +NM_032642,0.969,0.933,1.006,1.063,0.86,1.015,0.92,0.968,0.939,1.068,1.042,1.018,1.038,1.038,1.119,0.987,1.001,1.031,1.021,1.044,0.962,0.976,0.984,1.064,0.994,0.93,0.901,0.941,1.001,1.106,0.925,1.049,0.961,1.122,1.131,1.022,0.992,0.994,0.999,1.031,0.921,1.15,0.971,0.862,0.997,1.056,0.793,1.018,1.092,0.992,1.066,1.088,1.047,0.883 +NM_032643,1.102,1.149,1.267,1.177,1.092,1.051,0.868,0.918,0.96,0.915,0.914,1.125,1.007,0.756,0.839,0.953,1.137,1.101,0.939,0.882,1.02,0.766,0.999,1.052,0.956,1.165,1.025,0.966,0.866,0.974,0.96,0.896,0.961,1.006,0.958,1.099,0.99,1.07,1.061,0.931,1.194,1.08,1.031,0.95,1.044,1.067,1.015,1.17,0.966,0.95,0.946,0.925,0.871,0.993 +NM_032644,0.927,0.943,1.107,0.932,0.959,0.912,0.793,0.842,1.075,0.856,1.488,0.742,0.752,0.845,1.011,1.367,0.899,0.77,0.84,1.044,0.812,0.775,1.115,0.914,0.861,0.909,0.876,1.002,0.694,1.208,0.944,1.137,1.32,1.154,0.74,0.892,1.199,0.882,1.21,0.859,0.918,1.167,1.056,0.924,0.968,1.249,1.006,0.825,1.131,0.824,1.154,0.941,0.916,1.038 +NM_032645,0.933,0.981,0.904,1.072,1.008,1.103,1.035,1.043,0.895,0.984,1.026,0.925,0.999,1.172,1.071,1.011,0.894,1.022,0.986,1.141,0.93,0.965,1.094,0.867,1.087,0.863,0.968,0.928,1.485,0.876,1.054,1.079,0.923,1.086,1.088,0.962,1.023,0.94,1.173,1.069,1.031,1.051,0.995,0.996,1.059,0.954,1.015,0.992,1.001,1.007,1.097,0.916,1.073,1.039 +NM_032646,1.013,0.901,0.925,0.99,1.073,1.03,0.937,1.067,0.985,0.957,0.923,0.802,0.952,1.149,0.883,1.021,0.876,0.894,1.004,0.96,0.929,1.067,1.073,0.989,0.945,1.011,0.954,1.105,1.021,1.005,0.939,1.35,1.01,1.084,0.984,1.078,0.947,0.969,0.977,1.044,0.996,0.992,1.058,0.767,0.946,0.917,0.944,0.852,0.955,0.877,0.927,0.935,0.814,1.03 +NM_032647,0.978,1.01,0.92,1.221,0.98,1.014,1.156,1.04,0.979,1.037,0.922,1.008,1.048,0.947,0.938,1.04,1.035,0.949,0.882,1.025,1.035,0.999,1.027,0.862,1.048,1.022,0.982,0.964,0.991,0.977,1.051,0.908,0.957,1.069,1.054,1.049,1.044,0.944,0.969,0.968,0.926,0.989,1.049,0.923,0.996,0.993,0.974,0.972,1.009,0.982,0.96,0.93,1.023,1.143 +NM_032648,1.046,1.057,1.014,0.925,1.034,0.971,0.95,0.862,0.854,1.063,0.949,1.223,1.002,1.051,0.921,0.964,0.875,0.818,0.921,0.987,0.851,0.906,0.956,1.04,0.927,0.982,0.859,0.933,0.982,1.039,0.932,1.373,1.09,1.054,0.889,1.04,0.913,1.016,1.325,1.17,1.074,0.952,0.935,0.998,1.017,0.933,0.847,1.06,1.055,1.02,1.024,1.276,1.004,1.059 +NM_032649,0.959,1.014,0.952,0.89,0.904,1.156,1.047,1.0,0.947,0.948,1.48,0.948,0.911,1.225,1.401,1.912,0.924,1.071,1.022,1.25,0.917,0.886,1.273,1.066,1.01,0.842,1.0,0.851,1.18,1.111,0.785,1.018,1.138,0.954,0.988,0.867,1.355,1.059,1.103,0.912,1.051,1.393,1.486,1.056,0.877,1.191,0.867,0.87,0.981,0.955,1.079,1.157,0.987,1.239 +NM_032653,0.84,0.925,1.203,1.026,1.099,0.999,1.207,0.874,1.126,0.861,0.922,0.95,0.902,1.001,1.153,0.998,0.839,0.89,1.032,0.972,0.98,1.108,0.971,0.821,0.998,1.058,1.026,1.061,1.546,1.072,1.073,0.951,0.977,1.028,0.942,1.059,1.087,0.97,0.862,0.88,1.098,0.991,0.938,0.883,1.04,1.056,1.024,1.01,0.853,1.021,1.073,0.865,0.995,1.072 +NM_032654,1.013,1.601,0.939,1.277,0.964,2.433,1.102,0.926,0.998,0.91,1.604,1.018,0.982,0.814,0.971,1.296,0.82,0.979,0.823,1.531,0.853,0.857,2.48,0.897,0.859,0.801,0.783,0.959,1.032,1.418,0.971,1.811,0.926,1.217,0.896,1.965,1.802,0.911,2.903,0.805,0.924,1.698,1.016,1.561,0.863,1.403,0.925,0.964,1.597,0.893,1.435,0.909,0.984,1.022 +NM_032656,0.743,0.985,1.039,0.731,1.003,0.721,0.853,0.451,1.042,1.397,0.659,0.901,0.582,0.582,0.73,0.854,1.054,0.975,0.953,1.04,0.62,0.917,1.196,1.193,0.608,0.936,1.177,0.894,0.607,1.151,0.827,1.543,1.406,0.99,0.356,1.336,0.879,0.932,1.25,1.476,1.232,0.947,0.828,1.158,1.309,1.033,1.209,0.712,1.109,0.861,1.061,1.301,0.865,1.598 +NM_032658,1.065,1.01,1.153,1.018,1.136,0.972,1.01,1.019,1.09,0.97,0.918,0.962,0.967,1.118,1.045,1.108,0.987,1.056,0.961,1.125,1.113,1.096,1.165,0.999,0.906,0.944,0.941,1.039,0.967,0.887,0.982,0.998,1.098,0.902,1.09,1.009,1.053,0.947,0.814,1.177,1.057,0.901,0.937,1.089,0.927,1.048,0.99,1.082,0.999,1.001,1.11,0.987,1.121,0.847 +NM_032661,0.904,0.974,1.157,0.771,1.006,1.144,0.915,0.877,0.903,1.0,0.898,0.904,1.0,0.79,1.091,1.141,1.037,0.855,1.012,1.18,0.783,0.939,1.353,1.013,1.0,0.968,1.127,0.924,0.663,1.052,1.062,1.545,1.896,1.114,0.737,0.829,0.968,1.112,1.066,1.06,0.982,1.103,0.602,0.98,0.985,0.837,1.118,0.96,0.953,0.905,0.977,0.945,0.818,1.262 +NM_032663,0.829,1.002,1.084,1.054,0.931,1.058,0.85,0.861,1.097,1.124,1.077,0.898,0.924,0.848,0.821,1.202,0.914,1.148,1.02,1.171,0.845,0.881,1.072,0.9,0.795,1.052,1.041,0.982,0.713,0.998,1.029,1.137,1.162,0.952,0.812,1.081,0.982,0.936,0.982,0.928,1.052,1.018,0.983,0.789,1.156,1.119,1.076,0.99,0.961,1.03,1.068,0.906,1.067,1.167 +NM_032664,0.925,0.852,1.089,0.974,1.08,1.102,0.854,1.021,1.0,0.988,0.9,0.925,1.018,0.953,0.734,1.023,1.038,1.045,0.814,1.039,1.023,1.02,0.808,0.943,1.053,1.121,1.094,1.021,0.828,0.957,1.026,1.038,0.978,0.998,0.906,0.999,1.003,1.176,1.011,0.999,1.088,0.953,0.963,1.003,0.883,0.934,1.034,1.063,0.987,1.0,0.94,0.929,0.897,1.012 +NM_032667,1.109,1.401,0.904,0.743,1.087,1.191,0.849,0.545,1.051,0.948,0.873,0.889,0.586,0.5,0.632,1.007,0.722,1.0,0.97,1.287,0.459,0.833,1.354,0.868,0.905,0.959,0.736,0.88,0.424,1.653,0.801,1.786,1.767,1.394,0.379,1.966,1.025,0.885,1.789,0.58,0.913,1.861,0.642,1.722,0.939,1.107,1.044,0.906,0.834,0.689,1.295,0.906,0.777,0.848 +NM_032668,0.974,1.05,1.0,1.151,1.04,0.969,1.08,0.867,0.911,0.926,1.084,1.051,0.98,1.084,1.001,1.076,0.945,0.915,0.969,0.998,1.071,0.876,1.144,1.004,0.989,1.066,0.948,1.202,1.0,0.991,1.052,1.166,1.113,0.849,1.145,0.964,0.96,1.043,0.915,1.072,1.036,1.038,0.98,0.952,0.92,1.307,1.163,0.966,1.039,0.961,0.995,0.9,0.977,1.132 +NM_032673,1.022,0.818,1.018,0.909,0.782,1.132,0.746,0.798,0.854,0.84,1.04,0.899,0.979,0.787,0.91,1.258,0.842,0.826,1.227,1.054,0.759,0.851,0.991,1.144,1.017,0.955,1.093,0.771,0.666,0.918,0.817,1.427,1.817,1.415,0.552,0.797,0.876,0.757,1.324,1.283,0.693,1.052,0.654,1.183,1.003,0.654,0.819,0.935,0.667,1.062,0.948,0.87,1.074,1.411 +NM_032681,1.153,0.943,0.957,0.788,0.98,1.102,0.96,1.206,0.995,0.901,0.996,0.886,1.019,1.006,0.893,1.121,1.031,0.934,0.848,1.008,0.987,0.879,1.127,1.148,0.973,0.999,1.079,0.94,0.978,1.076,1.078,0.869,0.899,1.029,0.991,1.026,0.971,0.911,1.009,1.127,1.018,1.079,0.804,1.025,1.089,0.985,1.055,1.053,1.001,0.978,0.985,0.958,0.957,0.987 +NM_032682,0.451,1.521,1.163,0.527,0.814,1.376,0.701,0.501,0.977,0.624,0.944,0.889,0.687,0.625,0.929,1.22,0.549,0.854,0.84,1.66,0.356,0.764,1.537,0.801,0.896,0.538,1.191,0.893,0.616,1.293,0.668,1.409,1.278,1.487,0.128,1.702,1.212,1.002,1.432,1.221,0.941,1.6,0.933,0.672,0.709,1.29,0.816,0.539,0.915,0.727,1.383,0.953,0.867,1.372 +NM_032683,0.774,1.039,0.895,0.937,0.786,1.11,0.691,0.595,0.821,0.948,1.296,0.915,0.651,0.704,0.878,1.968,0.824,0.855,0.958,0.824,0.607,0.745,1.934,0.799,0.997,0.894,1.101,0.674,0.705,1.054,0.805,1.186,1.371,1.218,0.496,1.319,1.413,0.727,1.526,1.098,0.875,1.003,0.832,2.031,0.958,1.152,0.871,0.761,1.291,0.812,1.374,1.319,0.81,1.572 +NM_032685,1.059,0.964,0.87,1.051,1.037,0.879,1.147,0.883,0.998,0.803,1.083,1.267,0.898,0.971,1.077,1.058,0.943,1.024,1.181,0.837,0.964,1.07,1.121,1.031,0.917,1.048,0.97,1.075,1.283,0.871,0.937,1.127,1.801,0.929,0.951,0.938,1.02,0.826,0.999,0.873,1.102,0.878,1.111,1.102,1.112,1.011,0.997,1.03,0.947,0.965,0.903,0.976,1.114,0.939 +NM_032686,1.013,1.011,1.055,0.908,1.061,0.924,1.071,0.914,1.049,1.019,0.846,1.006,1.042,1.115,1.067,1.052,0.933,1.014,1.028,1.023,1.071,0.926,0.96,0.936,1.15,0.889,1.01,0.858,1.242,1.033,0.894,0.861,0.882,1.115,0.938,0.867,0.95,1.033,0.934,1.058,1.092,1.043,1.301,0.97,0.997,0.806,1.016,1.029,1.027,1.062,0.999,1.085,0.923,0.787 +NM_032687,0.687,2.579,1.143,0.792,0.888,1.214,0.759,0.622,1.17,0.841,1.168,0.976,0.755,0.709,0.889,1.23,0.764,1.0,1.038,1.005,0.54,0.93,1.302,1.139,0.933,1.068,1.036,0.918,0.684,1.664,0.899,2.041,1.463,1.473,0.265,1.507,0.962,1.166,1.307,1.185,1.18,1.227,0.867,1.073,0.75,1.109,0.875,0.923,0.858,0.6,1.016,0.743,0.818,1.042 +NM_032689,0.963,1.142,1.154,0.933,1.0,0.802,1.0,0.893,1.128,0.844,1.03,0.994,1.039,1.261,1.126,0.917,1.007,0.899,1.034,1.314,0.884,1.007,0.981,0.995,0.934,1.08,1.107,1.065,0.828,0.921,0.897,1.226,1.273,0.999,0.811,0.953,1.001,0.936,0.974,0.876,1.037,1.071,0.914,0.897,0.891,1.02,1.184,0.943,0.847,0.866,0.97,1.024,0.777,1.069 +NM_032690,0.829,1.172,1.318,0.811,1.007,0.959,0.742,0.699,1.208,0.914,0.901,0.739,0.789,0.707,0.876,0.878,1.024,0.844,0.829,0.937,0.647,0.915,1.163,0.872,0.859,0.876,1.212,0.985,0.888,1.068,0.966,1.594,1.961,1.287,0.426,0.771,0.901,0.926,1.304,1.346,1.113,1.021,0.805,1.229,1.052,0.837,1.18,0.92,0.996,0.834,0.926,1.059,0.844,1.64 +NM_032691,0.994,0.918,0.835,1.158,0.915,1.041,1.003,1.002,0.903,0.935,0.991,0.966,0.933,0.94,1.087,1.102,1.002,1.051,0.962,1.013,0.942,0.975,0.933,1.049,1.097,0.905,0.784,1.024,1.06,0.98,1.135,0.876,1.124,0.979,0.99,0.995,1.003,1.067,1.004,0.979,0.942,1.036,0.891,0.968,1.125,1.12,0.882,1.04,0.982,1.104,0.982,1.036,1.102,1.016 +NM_032694,1.2,1.016,1.012,1.172,1.022,0.997,0.827,1.135,1.121,1.046,1.219,0.91,0.849,1.006,0.991,1.065,1.096,1.243,0.954,0.897,0.935,1.093,1.099,0.935,0.937,1.013,0.726,0.918,0.952,1.073,0.968,1.052,1.128,0.958,0.989,1.033,1.18,0.997,0.901,0.85,0.969,0.898,0.835,1.072,0.981,1.079,0.956,1.03,0.982,1.074,1.113,0.923,1.208,1.057 +NM_032701,0.881,1.118,0.889,0.745,0.7,1.637,0.778,0.697,1.061,0.77,1.033,0.784,0.796,0.83,1.043,1.161,0.907,0.964,1.08,1.099,0.644,0.823,1.496,0.868,0.708,0.967,1.306,0.795,0.706,1.63,0.904,1.128,1.274,1.192,0.743,0.926,1.173,0.97,1.677,1.522,0.881,1.056,0.954,1.279,0.837,1.164,1.172,0.812,0.849,0.853,1.264,0.718,0.801,1.282 +NM_032704,0.891,0.606,0.904,0.931,1.022,0.724,0.387,0.321,1.123,1.504,0.584,0.775,0.605,0.446,0.698,1.332,0.862,1.246,1.383,0.504,0.865,1.082,1.226,1.246,0.393,1.574,1.218,0.753,0.537,0.662,0.767,1.066,1.4,0.86,0.107,1.605,0.797,1.446,2.009,0.88,1.124,0.879,0.711,2.304,1.443,0.784,1.364,1.199,1.158,1.316,0.941,0.902,1.181,1.122 +NM_032706,0.657,1.006,1.748,0.526,1.512,0.994,0.531,0.917,1.442,1.031,0.812,1.309,0.822,0.996,1.049,1.182,1.202,1.0,1.534,0.843,0.567,1.345,1.229,1.512,0.492,0.854,1.619,1.404,0.525,1.092,1.297,1.367,1.757,1.128,1.109,0.692,0.836,1.428,0.965,0.819,1.432,0.896,0.542,1.065,1.086,0.807,1.573,1.203,0.662,1.094,0.862,0.974,0.738,1.646 +NM_032709,0.834,1.988,0.952,1.502,0.822,1.346,1.217,0.875,0.936,0.93,1.264,0.787,0.92,0.883,0.885,1.21,0.83,1.158,0.831,1.127,0.97,0.816,2.138,1.019,1.017,0.917,1.099,0.869,1.687,1.927,0.863,3.149,0.994,1.648,0.759,1.116,1.479,0.726,0.965,0.792,0.88,1.259,0.972,1.295,0.845,1.463,0.799,0.761,0.933,0.936,1.578,1.085,0.871,0.831 +NM_032711,0.934,1.014,0.863,0.976,1.117,0.898,0.977,0.842,0.982,0.9,1.007,1.08,1.009,1.002,0.903,1.024,0.875,1.007,1.003,0.822,1.156,1.134,0.991,1.075,0.946,0.951,0.943,0.993,0.917,1.109,1.089,1.167,0.997,0.992,1.206,1.031,0.941,0.987,1.228,0.992,1.005,0.969,1.093,0.989,1.014,0.817,1.11,1.056,1.045,1.123,0.938,0.869,0.982,1.135 +NM_032717,0.962,0.94,0.771,1.278,1.207,1.182,1.198,0.68,1.355,0.783,1.5,1.017,1.569,0.947,1.617,5.099,1.049,0.925,1.077,0.496,0.725,0.782,0.811,0.781,0.71,0.786,1.865,1.039,0.702,1.427,2.787,0.66,0.486,0.49,3.975,0.528,3.942,2.919,2.768,0.825,2.423,0.921,1.416,0.813,0.895,2.26,3.295,1.258,5.139,1.567,0.956,0.957,0.556,0.955 +NM_032718,1.005,0.991,0.984,1.109,0.849,1.279,0.947,0.855,0.977,0.793,0.997,0.975,0.976,0.831,1.206,0.868,0.815,0.978,0.951,1.177,0.922,0.95,0.836,1.005,1.098,1.065,0.964,0.876,1.097,1.127,0.875,1.129,0.929,1.004,1.054,0.985,0.964,0.937,1.322,0.871,1.153,1.173,1.457,1.002,0.886,1.1,1.11,0.893,1.111,1.094,1.104,1.015,0.902,0.971 +NM_032721,1.03,1.152,0.901,0.944,0.969,1.015,1.181,1.047,0.994,0.757,1.243,0.874,1.077,0.919,1.01,1.066,0.975,1.032,1.115,0.98,0.875,0.891,0.919,1.11,0.976,1.043,1.107,0.952,0.939,1.002,0.954,0.899,0.952,1.085,1.194,0.902,1.028,1.242,0.967,1.302,0.877,0.908,0.959,0.83,1.106,1.11,1.019,0.83,0.898,1.113,0.943,1.032,0.991,1.155 +NM_032725,0.647,0.989,1.03,0.66,0.852,1.083,0.599,0.723,1.107,0.921,0.872,0.927,0.589,0.782,0.932,1.246,0.833,0.714,0.973,1.074,0.695,0.807,1.169,1.122,0.595,0.711,1.162,0.814,0.412,1.67,0.893,1.518,1.74,1.406,0.366,1.5,1.028,0.835,1.071,1.02,1.116,1.018,0.763,0.632,0.862,1.028,0.964,0.692,1.116,0.642,0.998,0.74,0.828,1.47 +NM_032726,1.142,0.973,1.142,0.992,1.13,1.1,1.078,1.122,0.965,1.172,1.054,1.069,0.922,1.079,0.993,1.038,1.092,0.97,1.087,0.951,1.004,1.01,0.965,1.054,0.907,1.1,1.117,1.06,1.174,0.997,1.069,1.158,0.975,1.007,0.948,0.923,0.933,0.957,0.947,0.958,1.098,1.03,0.959,0.855,1.059,0.996,0.951,1.061,1.049,1.037,1.107,1.043,1.216,0.955 +NM_032727,1.53,1.002,1.274,1.208,1.039,0.882,0.815,0.975,1.366,1.359,0.977,1.414,0.913,1.186,0.8,0.85,1.313,1.086,1.69,0.803,1.314,1.188,0.865,1.481,1.121,1.35,1.507,1.343,0.918,0.994,1.247,0.898,0.884,1.364,1.13,0.945,0.92,0.853,0.854,1.037,1.073,0.878,1.067,0.89,1.449,0.871,1.165,1.075,0.883,1.368,0.873,1.006,1.556,0.898 +NM_032728,1.007,1.142,1.011,0.954,1.086,0.97,0.906,0.892,1.039,0.825,0.995,0.943,0.956,1.011,1.032,1.007,1.009,0.979,1.047,0.947,0.93,0.893,1.048,1.0,1.024,1.139,0.976,0.937,0.895,1.137,1.03,1.389,1.145,1.011,1.034,1.173,1.003,1.026,1.036,0.992,1.054,1.024,1.065,0.924,0.987,1.107,0.889,0.808,0.882,0.951,1.12,1.021,1.043,1.062 +NM_032730,0.767,1.108,0.915,0.926,0.874,1.143,0.771,0.518,0.901,0.805,1.213,0.766,0.745,0.615,0.805,1.98,0.826,0.962,1.042,0.996,0.742,0.695,1.453,0.814,0.847,0.727,1.012,0.734,0.576,1.233,0.879,0.882,1.808,1.249,0.457,0.943,1.406,0.859,1.913,1.049,0.954,1.016,0.947,1.321,0.925,1.127,1.004,0.738,1.293,0.807,1.22,0.871,0.936,2.294 +NM_032731,0.638,0.416,1.54,0.549,1.271,1.232,0.46,1.143,1.604,1.192,1.017,1.259,0.974,0.658,1.153,2.347,1.056,1.151,1.675,1.209,0.497,1.256,1.051,1.579,0.319,0.876,1.323,1.282,0.296,0.894,1.676,0.426,1.401,0.907,0.795,0.576,1.402,1.091,0.67,0.332,1.33,0.708,0.475,0.493,1.103,1.235,1.423,1.287,0.997,0.752,1.38,0.749,0.865,1.023 +NM_032732,0.954,1.083,0.96,1.0,1.038,1.006,1.062,0.901,0.972,0.969,1.085,0.945,1.096,1.053,1.155,1.009,0.996,0.955,0.891,1.096,0.973,0.862,0.954,1.029,1.056,1.167,0.994,1.072,0.88,1.058,1.143,1.011,1.038,1.011,1.086,0.891,1.018,0.931,0.926,0.945,1.016,0.867,0.991,0.982,1.076,1.013,1.118,0.96,1.061,1.094,1.139,0.933,0.942,1.049 +NM_032737,0.826,0.819,1.255,0.894,0.954,0.667,0.467,0.336,1.346,1.384,0.592,0.926,0.764,0.65,0.803,0.967,1.007,1.018,1.402,0.657,0.627,0.868,2.397,1.319,0.457,0.977,1.923,0.785,0.305,0.721,0.826,1.144,3.406,0.74,0.157,1.89,0.76,0.728,1.492,1.868,1.22,0.748,0.591,3.008,1.534,0.77,1.012,0.961,1.051,1.141,1.124,0.873,1.221,2.35 +NM_032739,0.9,0.983,0.993,0.908,0.985,1.004,0.792,0.941,1.012,1.101,1.162,0.931,0.946,0.869,1.061,0.96,1.034,0.955,1.094,0.924,1.041,0.965,1.093,1.035,0.893,1.039,1.114,1.022,0.879,1.0,1.015,0.933,0.991,1.16,0.911,0.949,0.893,1.009,0.903,1.04,1.028,0.921,0.931,0.955,1.033,0.94,1.012,0.995,1.073,1.031,0.982,0.987,0.9,1.015 +NM_032740,0.88,0.952,1.082,0.905,0.891,1.128,0.79,0.81,0.978,0.893,1.117,0.939,0.867,1.073,0.995,1.011,0.956,0.843,0.911,1.161,0.727,0.881,1.345,0.89,0.857,0.93,0.967,0.857,0.765,1.144,0.82,1.424,1.214,1.264,0.665,1.031,0.959,0.907,1.157,1.339,0.955,1.228,0.838,1.23,0.902,1.054,0.816,0.853,0.866,0.932,1.161,0.932,0.948,1.413 +NM_032741,1.694,2.7039999999999997,1.6019999999999999,1.988,1.335,2.614,1.5339999999999998,1.562,1.669,1.62,2.206,1.3439999999999999,1.645,1.482,2.237,3.032,1.391,1.838,1.75,1.877,1.6,1.5779999999999998,2.2640000000000002,1.6480000000000001,2.257,1.677,1.78,1.686,1.365,2.3609999999999998,1.474,2.895,2.993,2.754,1.331,1.73,2.191,1.593,3.37,2.082,1.6500000000000001,2.441,1.607,2.743,1.614,2.08,2.003,1.4660000000000002,1.835,1.7169999999999999,2.213,1.6320000000000001,1.684,2.114 +NM_032747,1.272,1.491,1.045,0.795,0.875,1.003,1.19,1.265,2.287,1.735,1.508,0.808,1.543,1.293,2.406,2.871,2.377,1.888,1.892,0.854,0.907,0.885,1.445,0.907,0.997,0.844,2.372,1.655,0.819,0.742,0.841,1.901,0.836,1.582,0.75,0.736,2.01,1.774,0.846,0.813,0.808,0.913,0.731,1.565,0.928,0.914,2.044,0.993,0.941,1.31,1.71,0.743,0.813,0.905 +NM_032750,0.876,1.301,0.795,0.878,0.535,1.742,0.668,0.502,0.64,0.634,2.166,0.707,0.788,0.585,1.248,2.661,0.534,0.885,1.687,1.05,0.468,0.643,1.073,0.689,1.047,1.201,0.729,0.572,0.754,1.719,0.769,0.825,1.369,2.486,0.285,0.996,0.974,0.789,3.081,0.396,0.63,1.797,0.722,1.421,0.892,1.075,0.59,0.971,0.907,0.922,1.423,0.58,0.821,1.356 +NM_032752,0.987,1.019,0.921,1.124,0.973,1.049,0.885,0.976,1.092,0.808,1.063,0.99,1.135,1.08,0.924,0.951,0.929,0.929,1.15,1.057,1.148,1.14,1.072,0.968,1.054,1.004,1.17,1.002,0.867,0.997,1.065,0.975,1.323,1.025,0.998,1.119,1.009,1.025,0.917,1.079,1.01,0.971,0.948,1.295,0.891,1.109,0.909,1.096,0.984,0.926,0.921,0.941,1.09,0.984 +NM_032753,0.943,1.219,0.948,0.885,0.993,0.993,0.937,1.194,1.134,0.979,1.066,1.097,1.092,0.953,0.822,0.909,0.92,0.998,0.892,0.895,1.026,1.048,1.074,1.037,0.941,1.045,1.152,1.044,0.702,1.0,1.009,1.099,0.754,0.899,0.963,0.946,0.962,1.092,1.067,0.924,1.123,0.843,1.115,0.851,0.987,0.954,1.038,1.061,0.904,0.931,1.021,0.981,1.0,0.979 +NM_032755,1.013,0.985,0.971,1.114,1.041,0.957,1.086,0.841,1.006,1.034,0.99,1.077,1.039,0.782,0.816,0.935,0.981,1.215,0.924,0.933,1.027,1.096,1.006,0.846,1.042,0.995,0.93,1.08,0.873,1.005,1.025,0.813,0.943,1.115,0.947,0.921,1.095,0.891,1.076,0.929,0.938,0.974,0.96,0.826,0.945,1.046,0.868,0.945,0.984,1.091,1.079,1.069,0.864,1.095 +NM_032756,1.012,1.444,0.709,0.84,0.878,1.246,0.899,0.713,0.867,0.908,1.225,0.924,0.811,0.746,0.932,1.06,0.879,0.809,0.799,1.199,0.708,0.83,1.615,0.682,0.864,0.859,0.895,0.837,0.814,1.319,0.767,1.086,2.541,1.029,0.811,1.574,1.096,0.878,1.645,1.116,0.905,1.237,1.017,3.456,0.956,1.27,1.157,0.783,1.489,0.888,1.425,1.022,0.805,2.864 +NM_032757,0.888,1.11,1.076,1.109,1.169,1.002,0.868,0.903,0.995,1.029,0.964,0.934,0.926,0.929,0.754,0.853,0.951,1.102,0.922,1.081,0.999,0.977,1.003,0.988,0.931,0.971,1.08,1.025,1.165,1.039,1.051,1.012,1.082,0.842,1.076,1.055,1.035,1.14,0.976,1.173,1.122,1.12,1.031,1.044,0.903,0.975,1.047,0.918,1.062,1.214,0.994,1.018,0.921,0.79 +NM_032758,0.731,1.293,0.804,0.883,0.907,1.419,0.725,0.619,0.918,0.797,1.496,1.358,0.92,0.565,0.955,1.503,0.729,0.995,0.972,1.084,0.531,0.609,1.25,1.47,0.641,0.831,1.099,0.856,0.517,1.268,0.699,1.291,1.281,1.432,0.408,1.193,1.078,0.715,1.508,0.9,0.981,1.032,0.89,1.147,0.896,0.918,1.209,0.589,0.972,0.68,0.873,1.006,0.723,2.359 +NM_032762,0.976,1.025,0.929,1.003,1.123,1.091,0.889,1.096,0.91,0.983,1.035,1.043,0.92,0.923,1.011,1.147,0.887,0.811,1.006,1.011,1.031,0.975,0.904,0.948,1.083,0.992,1.049,1.088,0.79,0.942,1.076,1.266,0.989,1.034,0.953,1.097,0.904,0.986,1.116,1.127,0.844,0.911,1.059,0.949,1.073,0.828,0.966,0.871,0.91,0.889,1.013,0.804,0.967,1.094 +NM_032763,0.989,0.966,1.042,0.941,1.001,0.95,0.962,1.053,0.978,0.944,0.919,0.942,1.006,1.032,1.158,0.821,0.954,0.947,0.974,0.981,1.16,0.986,0.844,1.024,1.013,0.987,0.989,1.006,0.879,1.077,1.075,0.862,0.936,1.03,0.975,0.953,1.057,1.198,1.001,1.009,0.958,0.873,0.967,0.853,1.208,0.994,1.12,0.93,1.005,1.069,1.054,0.941,0.995,0.952 +NM_032765,0.85,1.107,0.957,1.16,0.931,0.935,1.011,0.883,0.867,0.966,0.855,0.955,1.165,0.949,1.05,0.994,0.987,0.885,0.96,1.137,0.985,0.893,1.081,1.0,1.044,0.957,1.03,1.023,1.216,1.049,1.016,0.989,1.072,1.044,1.044,1.024,0.964,1.102,0.927,0.936,1.041,1.055,0.901,1.02,1.153,1.013,0.942,1.015,0.912,1.043,1.089,0.955,1.109,0.928 +NM_032766,1.053,1.085,0.98,0.952,0.859,1.059,0.882,1.135,0.944,0.916,1.009,1.074,0.982,0.888,1.065,1.111,1.036,1.074,0.954,0.85,1.03,0.888,1.075,1.092,0.994,1.077,1.078,0.949,0.972,1.133,1.044,0.996,1.235,1.101,1.004,1.011,1.146,0.962,1.003,1.05,0.938,1.137,0.989,0.929,0.92,0.923,0.88,0.915,0.933,1.016,0.968,0.851,1.15,0.924 +NM_032772,1.095,0.875,1.5,0.739,0.833,0.914,0.691,0.775,1.051,1.119,0.653,0.925,0.956,0.965,0.835,1.142,0.949,0.91,1.68,0.57,0.965,0.968,0.768,1.241,1.165,0.926,1.338,0.913,0.451,1.226,1.307,2.459,2.927,1.82,0.493,0.449,0.834,0.91,0.991,1.425,1.081,1.12,0.576,3.134,1.328,0.439,0.73,0.625,0.427,1.202,0.89,1.202,1.676,1.399 +NM_032773,0.976,1.003,1.169,1.069,0.971,0.964,0.932,0.938,1.049,0.992,0.849,0.847,1.023,0.959,1.025,0.931,0.992,0.979,1.015,1.12,0.841,0.899,0.939,1.032,0.925,0.955,0.965,0.938,1.199,0.998,0.983,1.08,1.0,0.933,0.912,1.209,0.9,0.891,1.161,1.046,1.1,0.952,0.936,0.998,1.065,0.902,0.939,0.954,1.065,1.0,1.031,1.165,1.017,1.002 +NM_032775,0.68,1.561,1.089,0.687,0.774,1.091,0.822,0.545,1.132,0.841,0.808,0.827,0.715,0.676,0.818,0.862,0.839,1.076,0.79,1.261,0.554,0.799,1.608,0.944,0.953,0.757,1.299,0.821,0.864,1.714,0.846,2.187,0.894,1.453,0.588,0.835,1.021,0.905,1.308,1.072,1.243,1.299,0.794,0.698,0.825,1.119,0.94,0.691,0.798,0.71,1.121,1.018,0.799,0.993 +NM_032777,0.855,1.06,0.808,0.94,0.889,1.053,0.948,0.89,0.742,0.835,0.996,0.913,0.866,0.661,1.251,0.962,0.967,0.887,0.973,0.994,1.002,0.855,1.272,0.932,1.149,0.887,0.747,1.053,0.69,1.617,0.965,4.033,1.231,1.683,0.769,0.915,0.936,1.124,1.375,1.783,1.227,1.64,0.885,0.926,0.928,0.87,0.901,0.791,0.915,0.807,1.134,1.063,0.887,0.998 +NM_032778,0.944,0.792,1.655,0.653,1.281,0.809,0.503,0.782,1.692,1.638,0.82,1.066,0.88,0.997,0.964,1.041,1.356,0.803,1.427,0.816,0.736,0.927,1.165,1.517,0.635,0.792,1.298,1.435,0.328,0.659,1.225,1.131,2.186,0.731,0.474,0.926,0.746,1.179,1.123,0.651,1.52,0.949,0.656,1.239,1.467,0.896,1.082,0.835,1.01,0.995,1.022,0.759,1.216,1.492 +NM_032779,0.932,0.97,1.004,1.117,0.865,1.018,1.225,0.903,0.843,1.1,1.029,0.903,0.915,1.183,1.098,1.027,0.933,1.046,1.087,0.951,1.187,0.961,0.965,1.075,1.027,1.013,0.964,1.012,0.85,1.093,0.987,0.923,0.957,0.878,1.042,0.969,1.187,1.04,1.09,1.086,1.063,1.089,0.943,0.949,0.931,1.027,1.002,0.915,1.128,0.849,1.093,0.896,0.994,0.816 +NM_032780,0.919,1.134,0.932,1.02,0.799,0.894,1.0,0.843,1.0,0.986,0.936,1.0,1.028,1.105,1.005,1.632,1.155,0.961,1.03,1.053,0.942,0.892,0.934,1.04,0.939,0.98,1.015,1.042,0.806,1.038,1.0,1.371,0.906,1.098,0.969,0.833,1.144,0.898,1.131,0.88,0.996,1.179,1.161,1.039,0.961,0.835,0.898,0.928,0.869,0.92,0.882,0.864,1.027,0.935 +NM_032781,0.872,1.114,0.976,1.137,0.998,0.951,0.914,1.118,0.909,0.977,0.993,0.999,1.074,0.963,0.94,0.972,1.121,1.14,0.902,1.022,0.77,0.896,1.062,1.003,0.87,0.951,0.989,1.054,1.05,1.017,1.283,1.143,0.965,0.999,1.078,1.092,0.891,1.063,0.924,0.834,0.975,1.01,0.942,0.927,0.99,0.902,1.043,1.051,1.033,1.054,0.804,1.073,1.089,1.056 +NM_032784,0.916,1.044,0.9,0.918,0.874,1.028,1.112,1.061,0.868,0.879,1.098,0.971,0.912,1.023,0.776,0.992,0.995,0.885,1.075,0.923,0.912,0.911,1.235,0.93,1.085,1.02,0.978,1.032,1.466,1.152,0.948,2.886,1.084,1.515,0.933,1.014,0.956,1.023,1.01,0.953,1.241,1.296,0.956,1.092,1.077,1.065,1.065,0.951,0.896,0.995,1.066,1.101,1.016,0.949 +NM_032785,1.015,0.918,0.924,1.026,0.951,1.073,1.05,1.231,1.069,0.873,1.01,1.133,0.962,0.914,1.084,1.194,1.128,1.0,1.095,1.002,0.918,1.047,0.92,1.066,0.953,1.058,0.988,1.036,0.781,1.031,0.96,0.891,0.898,0.917,0.912,0.935,1.012,1.212,0.984,0.956,0.943,1.062,0.827,1.048,1.165,0.978,1.012,1.031,0.971,1.098,0.883,1.006,0.963,1.106 +NM_032786,0.823,1.001,1.081,0.876,0.788,1.294,0.964,0.8,0.991,0.879,0.987,0.965,0.953,0.831,1.121,1.146,0.865,0.907,1.232,0.991,0.847,0.922,1.001,1.085,0.813,0.973,1.043,1.001,0.81,1.082,0.927,1.343,1.098,1.279,0.764,1.014,0.998,0.963,1.036,0.923,0.856,1.064,0.845,0.969,0.874,1.004,0.898,1.073,0.882,1.039,1.047,0.885,0.959,1.182 +NM_032787,0.922,1.072,0.798,1.034,0.981,2.405,0.993,1.025,0.942,0.878,3.287,0.869,0.801,0.896,3.259,9.018,0.828,0.767,0.854,2.409,0.872,0.862,1.21,0.838,0.961,0.848,0.819,0.85,0.965,1.472,0.873,0.84,1.675,0.889,0.943,1.092,4.866,0.932,1.401,1.07,0.918,2.984,2.222,0.874,0.995,4.362,2.184,0.82,6.924,0.919,2.304,1.081,0.829,1.159 +NM_032789,0.609,1.225,1.803,0.651,0.846,1.099,1.218,0.47,0.954,0.763,0.617,0.654,0.522,0.551,1.004,1.006,1.331,0.825,0.713,1.212,0.467,0.825,1.425,0.707,0.573,0.656,1.397,0.72,0.55,1.196,0.816,2.085,1.398,1.237,0.358,0.879,1.004,0.849,1.409,1.474,0.977,1.243,0.924,1.705,0.718,1.1,0.812,0.628,1.491,0.743,1.066,0.796,0.79,3.084 +NM_032790,0.854,1.101,1.105,1.026,0.886,1.109,0.946,0.858,0.995,0.89,0.866,0.807,0.999,0.911,0.871,1.024,0.917,0.986,1.015,0.693,1.006,0.992,0.962,0.965,1.219,0.913,1.217,0.891,1.093,1.194,0.893,1.411,1.214,1.141,0.784,0.955,0.938,0.863,1.654,1.268,1.004,1.094,1.138,1.44,0.941,0.913,0.959,0.95,0.819,1.02,0.926,1.164,0.932,1.371 +NM_032792,0.76,1.126,0.998,0.732,1.002,1.101,0.669,0.645,1.083,1.034,0.966,0.964,0.716,0.899,0.889,1.201,0.997,0.83,1.01,1.101,0.734,0.862,1.378,1.031,0.66,0.833,1.011,1.057,0.586,1.255,0.947,1.225,1.617,1.083,0.524,0.997,0.929,1.173,1.142,1.082,1.098,0.984,1.013,0.824,0.817,1.279,1.163,0.756,0.97,0.726,1.058,0.721,0.919,1.088 +NM_032797,1.146,1.016,0.915,1.016,0.909,1.009,1.068,0.878,0.917,0.875,0.885,1.046,1.039,0.839,0.946,1.13,1.071,1.015,0.834,0.94,0.94,1.069,0.906,0.941,0.974,0.907,1.018,0.979,0.774,1.05,1.074,1.318,1.171,0.96,0.918,1.096,0.893,1.154,1.242,1.136,0.948,1.0,0.857,1.076,0.94,1.023,0.974,0.95,1.0,0.884,1.004,0.887,1.084,1.179 +NM_032799,0.923,0.828,0.966,1.0,0.762,1.493,0.711,0.707,0.763,0.801,1.343,0.772,1.092,0.526,0.861,1.942,0.742,1.098,1.247,1.027,0.73,1.05,1.192,0.881,0.863,1.032,0.948,0.581,1.031,1.219,0.732,1.12,1.393,1.528,0.42,0.862,1.059,0.874,2.337,0.78,0.805,1.141,0.577,1.37,0.815,0.889,0.815,1.19,0.925,1.036,1.029,0.683,0.786,0.957 +NM_032800,0.746,1.704,1.2,0.648,1.031,0.922,0.847,0.589,1.347,1.194,0.777,0.915,0.702,0.718,0.684,0.937,0.825,0.935,0.819,1.392,0.598,0.861,1.544,1.051,0.627,0.866,1.041,1.101,0.544,1.101,0.948,3.303,2.392,1.059,0.488,1.887,0.96,0.967,1.16,1.052,1.111,1.162,1.009,1.672,1.298,0.952,1.059,0.684,0.777,0.827,1.14,0.957,0.914,2.298 +NM_032801,0.752,1.265,0.74,0.879,0.684,1.159,1.049,0.688,0.618,0.746,1.18,0.663,0.692,0.579,0.887,1.202,0.663,0.736,0.632,0.92,1.047,0.634,1.693,0.791,1.126,0.601,0.751,0.88,0.878,2.699,0.7,6.482,1.428,3.359,0.647,0.806,0.976,0.991,1.306,1.434,1.382,2.682,0.784,0.659,0.763,0.943,0.932,0.627,0.745,0.745,1.347,1.409,0.903,1.004 +NM_032802,0.446,1.149,1.11,0.9,0.645,2.201,0.674,0.429,0.655,0.651,3.696,0.469,0.506,0.464,2.004,4.737,0.629,0.99,0.952,2.25,0.384,0.472,1.828,0.68,0.707,0.5,1.026,0.681,0.45,1.495,0.627,0.736,1.318,1.789,0.381,0.829,4.005,0.576,2.53,0.895,0.676,2.11,1.411,0.913,0.718,3.496,1.379,0.512,2.656,0.639,1.84,1.025,0.756,1.537 +NM_032803,1.128,1.036,1.067,1.079,0.885,0.954,0.959,0.889,1.0,0.968,0.919,1.12,1.098,0.909,0.955,0.942,0.837,0.922,0.987,1.215,0.936,0.942,1.164,1.054,1.042,1.02,0.961,1.01,1.255,0.925,1.137,0.878,0.975,1.108,1.126,1.096,1.028,0.959,1.024,0.947,0.964,0.918,1.039,1.0,1.024,0.954,1.145,1.148,1.05,0.947,1.098,0.969,0.947,0.947 +NM_032804,0.729,1.264,1.22,0.705,0.784,1.079,0.859,0.742,0.925,0.913,0.996,0.987,0.902,0.717,0.946,1.768,0.725,0.815,0.964,1.141,0.655,0.962,1.23,1.051,0.769,0.757,1.083,0.818,0.831,1.148,0.963,1.201,2.29,1.2,0.537,1.033,1.043,1.056,1.128,0.761,0.928,1.142,0.805,1.089,0.873,0.93,0.837,0.87,1.007,0.84,1.126,0.993,0.821,2.497 +NM_032805,1.004,1.019,1.062,0.938,0.969,0.884,0.998,0.904,1.038,1.086,0.963,1.127,0.853,1.024,0.799,0.845,1.049,1.006,1.024,0.953,0.995,1.062,1.069,1.041,1.025,1.118,0.868,0.952,0.76,0.984,1.033,0.91,1.024,0.955,0.922,1.027,0.933,0.919,1.142,1.0,0.875,1.06,1.109,0.964,0.941,0.928,0.837,1.099,0.828,0.974,1.103,0.961,1.12,1.047 +NM_032806,0.834,1.109,1.01,1.134,0.892,1.186,0.824,0.84,0.772,0.966,0.873,0.866,0.86,0.941,0.886,1.08,0.884,0.982,0.904,0.937,0.769,1.058,1.243,0.823,1.185,0.919,1.003,0.883,0.98,1.224,1.0,1.279,1.773,1.387,0.746,0.869,0.838,1.122,2.03,0.923,0.895,1.203,1.056,1.376,1.014,0.966,0.86,0.991,0.94,0.952,0.941,1.039,1.043,1.82 +NM_032807,0.983,1.167,0.889,1.094,0.971,0.951,1.166,0.933,0.983,1.06,0.984,0.974,0.857,0.992,0.933,0.972,0.994,1.02,1.173,1.015,0.88,0.982,0.844,1.021,0.995,0.999,1.039,1.102,1.686,1.008,0.999,1.012,0.966,1.051,1.088,0.993,1.049,1.002,0.959,0.991,0.989,1.006,0.979,1.127,1.036,1.051,1.138,1.059,0.915,1.078,1.057,1.204,1.165,0.908 +NM_032809,1.172,0.799,0.946,0.95,0.916,1.381,0.686,0.721,1.073,1.002,1.104,0.804,0.896,0.899,1.19,1.886,0.976,1.032,1.258,0.863,0.864,1.333,0.975,1.028,0.985,1.326,0.92,0.821,0.692,1.145,1.243,1.013,1.205,1.216,0.661,0.824,1.154,0.706,1.365,0.821,0.839,0.998,0.786,1.168,1.089,0.879,0.752,1.307,1.046,1.094,1.016,0.741,0.905,1.143 +NM_032810,0.709,1.129,1.242,0.689,0.852,1.699,0.829,0.927,1.063,0.805,1.01,0.954,0.853,0.857,1.029,1.905,0.804,0.882,0.819,1.034,0.565,0.983,1.106,1.177,0.801,0.679,1.501,0.897,0.655,1.309,1.066,1.487,0.953,1.362,0.571,0.691,1.092,1.04,1.611,1.115,0.957,1.282,0.67,0.767,0.994,1.051,1.124,0.795,1.218,0.766,1.118,0.752,0.648,1.805 +NM_032812,1.158,0.568,2.049,0.741,2.323,0.711,0.58,1.296,2.24,2.733,0.545,1.795,1.015,1.357,1.207,1.161,1.362,1.286,2.648,0.679,1.209,2.139,0.8,2.072,0.591,1.22,2.193,1.899,0.662,0.947,2.225,3.08,1.477,0.829,0.617,0.688,0.638,1.991,0.827,0.853,2.32,0.765,0.602,0.598,2.197,0.683,1.718,1.497,0.652,1.361,0.887,0.932,1.626,1.007 +NM_032813,0.835,1.404,1.148,0.757,0.729,1.098,0.744,0.751,0.972,0.89,1.076,0.963,0.857,0.859,0.806,2.087,0.755,0.883,0.914,1.134,0.805,0.859,1.124,0.785,1.03,0.944,0.744,0.886,0.766,1.402,0.828,1.999,1.391,1.506,0.729,0.989,1.018,0.887,1.107,1.288,0.902,1.039,0.877,1.467,0.806,0.991,1.002,0.918,0.947,0.844,1.203,0.713,0.752,1.368 +NM_032814,1.04,1.046,0.983,0.889,0.972,1.001,0.949,1.133,1.076,0.901,1.061,0.935,0.883,1.164,1.209,0.948,0.93,0.972,0.978,1.022,0.934,0.925,1.121,1.025,0.981,0.99,1.018,0.923,1.062,1.017,0.967,0.911,1.143,0.971,0.964,1.03,0.875,1.007,1.172,0.999,1.039,1.015,1.151,0.995,0.99,1.013,0.89,1.015,1.031,0.992,1.044,1.059,1.199,1.095 +NM_032816,0.869,0.911,0.936,0.945,0.872,1.013,1.026,1.055,1.226,0.877,1.18,0.857,0.923,0.996,1.005,0.711,1.025,1.035,0.852,1.137,0.926,0.893,1.131,1.001,0.951,0.953,1.209,0.992,0.899,1.063,1.063,1.184,1.233,0.949,0.844,0.931,1.165,0.925,0.92,0.869,1.031,1.198,0.988,0.948,1.191,0.998,1.023,0.843,0.969,1.127,0.999,0.967,0.993,0.937 +NM_032818,1.003,1.044,0.9,0.948,0.746,1.033,0.944,0.957,0.981,1.021,0.97,0.981,0.96,0.895,0.907,1.126,0.947,0.928,0.853,1.098,0.925,0.886,1.227,0.981,1.084,0.901,1.131,1.02,0.938,1.054,0.92,1.3,1.324,1.155,0.932,1.057,1.008,0.931,1.312,1.058,0.993,0.804,0.962,1.147,0.933,1.021,0.934,0.995,0.951,0.923,1.091,1.173,1.046,1.544 +NM_032819,0.902,1.016,1.016,1.105,0.951,0.921,0.991,0.915,1.058,1.087,1.014,1.151,1.127,0.866,0.927,1.016,1.165,0.878,0.878,0.987,1.003,0.9,1.001,0.873,1.003,1.046,0.877,0.899,1.193,1.145,0.953,1.119,1.036,0.867,0.96,0.971,1.078,0.845,1.011,1.012,0.964,1.022,0.958,1.008,1.021,0.936,0.958,1.095,1.122,0.956,1.098,0.89,1.024,0.804 +NM_032822,0.709,1.004,1.026,0.85,0.761,1.336,0.839,0.576,1.057,0.938,0.966,0.954,0.809,0.591,0.904,1.377,0.887,0.889,0.735,1.143,0.481,0.714,1.634,0.981,0.738,0.741,0.933,0.774,0.549,1.223,0.891,1.483,2.359,1.283,0.534,1.274,1.204,0.753,1.622,1.362,0.962,1.08,0.768,1.656,1.178,0.936,1.182,0.682,1.47,0.676,1.1,0.865,0.771,3.323 +NM_032823,1.054,0.687,2.431,0.914,1.433,0.831,0.621,0.882,1.689,1.616,0.839,1.73,1.498,1.087,1.091,0.959,1.435,1.434,1.684,0.855,0.935,1.586,0.978,1.454,0.592,1.144,2.306,1.548,0.511,0.787,1.687,2.355,1.54,0.891,0.527,0.76,0.618,1.695,0.965,0.564,1.766,0.834,0.689,0.722,1.386,0.748,1.16,1.216,0.715,1.266,0.805,0.887,1.06,1.609 +NM_032824,0.743,1.23,0.959,0.883,0.92,1.215,0.801,0.882,0.89,0.884,1.032,0.861,0.766,0.811,0.89,1.43,0.864,0.971,0.927,0.938,0.818,0.889,1.112,0.92,0.834,0.851,1.007,0.907,0.995,1.157,0.992,1.376,1.458,1.167,0.769,0.851,1.12,0.887,1.433,1.169,0.86,1.094,1.218,1.203,0.969,1.197,1.089,0.846,1.274,0.998,1.096,0.911,0.816,1.304 +NM_032826,0.898,1.042,1.306,0.882,0.903,0.946,1.003,0.927,1.071,0.972,0.991,0.869,0.946,0.857,0.837,1.134,1.122,0.96,1.136,0.791,0.958,1.113,0.969,1.042,0.799,1.019,1.002,0.922,1.031,1.036,0.986,1.393,1.034,0.998,0.745,0.891,1.001,1.155,1.234,0.916,1.232,1.095,0.927,1.097,1.129,1.014,0.882,0.841,0.956,1.0,0.811,0.983,1.095,1.009 +NM_032827,0.632,2.083,0.62,1.001,0.626,1.371,1.266,0.658,0.652,0.59,1.439,0.645,0.651,0.564,0.936,1.182,0.693,1.106,0.636,1.47,0.766,0.552,1.284,0.755,1.483,0.6,0.619,0.746,1.031,2.219,0.709,2.438,1.428,3.718,0.501,0.807,1.061,0.652,1.819,0.713,0.787,3.178,0.882,3.875,0.698,0.999,0.749,0.586,0.799,0.745,1.31,0.972,0.732,1.157 +NM_032829,1.151,0.736,1.418,0.847,0.729,0.96,0.788,0.81,0.612,0.827,1.405,1.041,0.961,0.745,1.064,1.123,1.435,1.035,2.024,0.951,0.849,0.746,0.98,0.723,0.943,0.891,0.964,0.664,0.652,0.724,0.747,0.846,1.557,1.534,0.915,0.76,1.129,0.731,1.093,0.86,1.039,1.198,1.182,1.126,1.442,0.949,0.954,0.755,0.954,3.069,1.215,0.815,1.97,1.166 +NM_032830,0.642,1.062,1.056,0.604,0.933,0.874,0.53,0.516,1.473,1.829,0.687,1.206,0.705,0.717,0.749,1.124,0.922,0.71,1.17,0.933,0.796,0.791,1.444,1.422,0.54,0.808,1.198,0.78,0.456,0.991,1.101,1.736,5.614,1.097,0.26,1.469,0.757,0.892,1.315,1.081,1.144,0.981,0.828,1.807,1.271,0.754,1.104,0.545,1.197,0.789,1.007,1.08,1.324,4.028 +NM_032831,0.881,0.937,0.793,1.005,0.965,0.989,0.954,0.883,0.989,0.858,1.21,0.879,0.874,0.92,0.775,0.842,0.87,1.093,0.906,0.867,0.943,0.863,1.038,0.94,1.087,0.786,0.967,0.874,0.969,1.282,0.833,1.795,1.338,1.152,0.789,1.02,1.023,0.837,1.334,1.97,0.881,1.258,1.066,1.872,0.902,1.057,1.184,0.902,0.858,1.102,1.063,1.245,0.894,1.187 +NM_032832,0.821,0.916,1.93,0.759,1.307,1.202,0.623,0.738,1.507,1.199,0.861,0.725,0.699,1.031,0.994,1.267,0.914,1.136,1.785,1.086,0.701,0.697,1.214,1.223,0.597,0.765,1.269,1.22,0.427,1.29,1.383,1.195,1.851,1.29,0.496,0.759,0.892,1.039,1.036,1.002,1.34,0.948,0.659,0.79,1.107,1.099,1.189,0.837,0.806,1.08,0.957,0.871,0.948,3.04 +NM_032833,1.038,0.918,0.861,0.844,1.257,0.812,0.934,1.031,1.462,0.998,0.844,0.865,0.976,0.791,1.31,1.243,0.947,1.062,0.843,0.828,0.685,0.877,1.124,0.959,0.75,0.929,1.155,1.29,0.705,1.034,1.706,1.126,1.548,0.929,2.401,0.925,0.998,1.023,1.439,1.218,1.228,0.843,0.882,1.135,1.017,0.972,1.0,1.129,1.2,0.905,0.978,0.768,0.88,1.247 +NM_032838,0.906,1.122,0.983,1.171,0.998,1.051,0.816,0.957,1.003,1.046,1.108,0.912,0.923,1.032,0.963,0.977,0.808,1.017,0.905,0.976,1.117,0.943,0.927,1.139,0.92,0.883,1.018,0.98,1.144,1.081,1.068,0.987,1.12,1.027,1.019,0.918,0.998,0.896,1.084,0.986,1.002,1.155,1.093,1.022,0.976,1.03,0.862,1.121,0.826,1.13,0.958,0.983,1.115,1.17 +NM_032839,1.19,0.783,1.413,0.63,1.355,1.03,0.362,0.848,1.926,0.854,1.06,0.828,1.238,1.437,1.126,1.22,1.079,0.916,1.848,0.89,0.581,1.37,0.675,1.088,0.381,1.524,1.308,1.632,0.471,0.792,2.049,1.0,1.587,0.953,1.901,0.7,0.9,1.697,0.873,0.481,1.594,0.852,0.556,0.967,1.052,0.935,0.894,1.637,0.623,1.041,0.865,0.634,0.975,1.007 +NM_032840,0.748,0.79,1.013,0.918,0.715,1.091,0.667,0.395,0.922,0.752,1.663,0.556,0.565,0.684,1.181,1.752,0.638,0.936,1.742,0.754,0.722,0.672,1.207,0.917,1.095,0.968,0.995,0.635,0.602,1.293,0.874,0.975,1.546,2.451,0.208,0.942,1.15,0.694,1.482,0.695,0.933,1.628,0.568,1.311,0.901,0.893,0.826,0.816,0.77,0.793,1.166,0.836,1.364,1.395 +NM_032842,0.829,1.043,1.125,0.819,0.915,0.955,0.774,0.543,0.939,0.895,1.099,0.665,0.739,0.749,0.895,1.386,0.682,0.832,1.168,1.01,0.776,0.958,1.811,1.017,0.891,0.726,1.189,0.866,0.778,1.595,0.891,1.079,2.661,1.335,0.414,0.958,1.142,0.996,1.442,0.959,0.931,0.95,0.71,1.71,0.926,1.053,0.93,0.619,1.033,0.835,1.082,1.238,0.91,1.825 +NM_032843,1.026,0.884,0.943,0.96,0.938,0.95,0.898,1.094,0.903,1.02,1.094,0.983,1.011,1.221,1.02,1.059,0.958,1.12,1.083,1.036,0.818,0.965,1.045,0.991,1.127,0.788,0.877,0.998,1.356,1.03,1.001,1.3,0.969,0.814,1.003,1.295,0.926,1.047,1.001,1.44,1.083,0.997,1.137,2.876,1.134,0.864,1.702,0.962,0.916,0.96,1.0,0.905,0.964,0.95 +NM_032845,1.017,1.041,0.96,0.896,1.061,1.087,0.776,1.126,0.959,0.992,0.968,1.137,0.875,0.993,0.933,0.937,1.0,0.881,0.995,1.084,1.031,1.17,0.94,0.967,1.141,1.22,1.12,1.015,0.751,1.044,1.117,0.995,0.915,0.996,1.03,0.952,1.136,1.011,1.0,1.064,1.056,0.945,0.798,0.972,1.025,0.944,0.997,1.021,1.055,0.933,0.915,1.008,1.026,0.9 +NM_032846,0.687,1.469,1.415,0.818,0.956,1.209,0.702,0.788,1.264,0.795,1.122,0.983,0.729,0.88,1.112,1.152,0.961,0.724,0.948,1.307,0.772,0.927,0.907,1.312,0.861,0.808,1.275,1.005,0.606,1.131,1.042,1.97,1.223,1.411,0.457,0.916,0.885,0.864,0.977,1.026,1.098,1.091,0.822,0.988,0.99,1.164,0.834,0.683,0.847,0.771,0.996,0.8,1.15,1.811 +NM_032847,0.834,0.831,1.106,0.71,0.876,1.026,0.536,0.833,1.536,0.91,1.407,0.729,0.97,0.776,1.032,1.46,0.869,0.899,1.074,0.957,0.562,0.743,0.999,1.067,0.443,0.859,1.105,0.817,0.365,0.908,1.151,1.421,1.518,0.999,1.001,1.465,1.042,0.655,1.162,1.261,1.255,0.834,0.892,0.984,1.061,1.418,1.109,1.125,1.557,0.867,0.921,0.793,0.994,1.266 +NM_032848,0.851,0.749,0.937,0.608,0.858,1.534,0.536,0.576,0.917,1.03,1.592,0.815,0.687,0.73,1.061,2.188,0.841,0.788,1.073,1.218,0.632,0.819,1.272,1.202,0.54,0.842,0.927,0.838,0.335,1.226,0.943,1.214,1.359,1.132,0.278,1.397,1.359,0.967,1.033,1.022,1.069,1.169,1.15,0.885,0.925,1.423,0.931,0.655,1.142,0.732,1.344,0.693,0.817,1.815 +NM_032849,0.998,1.062,1.185,0.965,1.151,1.025,1.156,1.096,1.234,0.907,1.015,1.007,0.856,0.91,1.004,1.055,0.868,1.01,0.911,0.932,0.993,0.878,0.954,0.978,0.996,0.898,0.756,1.023,0.763,0.985,0.988,1.887,1.03,1.098,0.89,1.007,0.954,1.016,1.109,1.295,0.909,1.007,1.109,0.836,0.996,1.069,1.071,1.053,0.963,1.016,0.947,1.112,1.002,0.977 +NM_032850,0.926,1.121,1.247,0.896,1.195,1.104,0.969,0.862,1.355,0.968,0.88,0.997,0.973,0.849,1.091,1.106,1.079,0.949,1.023,0.958,0.726,0.965,1.197,0.943,0.811,1.086,0.998,1.25,0.852,1.058,1.481,1.18,1.036,1.158,1.518,0.869,0.867,1.173,1.337,0.829,0.98,0.902,0.939,0.924,1.109,0.705,0.861,1.462,0.871,0.99,0.875,0.734,0.704,1.485 +NM_032853,0.662,1.149,0.88,0.762,0.615,1.246,0.658,0.535,1.053,0.788,1.116,0.729,0.572,0.799,1.161,1.082,0.771,0.716,0.873,0.978,0.566,0.745,1.4,0.791,0.725,0.803,0.887,0.764,0.522,1.404,1.006,2.82,1.793,1.346,0.361,0.727,0.997,0.843,1.346,1.905,1.0,1.291,0.737,1.085,0.889,0.99,0.657,0.654,0.775,0.641,1.216,0.595,0.972,1.365 +NM_032854,0.988,0.855,1.156,0.824,0.867,1.037,0.958,0.877,0.927,0.841,1.045,0.895,1.091,0.877,1.034,1.255,0.98,0.943,1.053,1.158,0.974,1.024,0.929,0.99,1.239,1.007,1.275,0.881,1.723,1.0,1.002,0.823,1.177,1.015,1.014,1.016,0.991,0.705,1.136,0.966,1.159,0.975,0.762,1.085,0.949,1.075,1.106,1.0,1.003,0.988,0.984,0.998,0.83,0.874 +NM_032856,0.939,0.775,1.033,0.912,0.819,1.233,0.928,0.853,1.1,0.951,1.046,0.902,0.998,1.007,1.093,1.022,0.777,0.891,0.854,0.98,0.934,1.012,1.328,1.081,0.951,1.055,1.071,0.878,1.002,1.024,0.906,1.275,1.451,1.129,0.736,1.254,0.915,0.928,1.202,1.046,0.909,1.115,0.829,1.114,0.952,0.872,0.91,0.781,0.991,0.837,0.974,0.994,1.033,1.312 +NM_032857,0.763,1.201,0.947,0.808,0.849,1.114,0.708,0.507,1.163,0.784,1.413,0.662,0.615,0.786,1.324,1.609,0.784,0.845,0.999,1.189,0.554,0.652,1.737,0.734,0.7,0.718,0.92,0.824,0.491,1.157,0.818,1.396,0.856,1.158,0.467,0.668,1.552,0.662,1.465,0.898,0.797,1.241,1.313,1.057,1.001,1.378,0.809,0.647,1.076,0.797,1.183,1.161,1.074,1.607 +NM_032858,1.123,0.921,0.912,0.912,0.92,1.107,1.039,0.943,1.039,0.995,1.054,1.002,0.989,0.915,1.131,1.188,0.959,1.134,1.132,0.928,0.851,1.031,1.094,0.975,0.956,1.028,0.947,1.065,1.16,1.072,0.956,1.169,1.203,1.0,0.896,0.965,0.988,1.151,1.059,0.982,0.933,1.023,0.972,1.12,1.0,1.009,0.972,0.845,0.932,1.158,0.938,1.051,1.062,1.142 +NM_032859,0.883,1.501,0.978,1.083,0.878,1.446,1.089,0.902,1.001,0.861,0.882,0.973,0.965,0.978,0.983,1.054,1.104,1.51,1.024,1.414,0.949,0.806,1.049,0.96,1.215,0.799,0.962,0.999,1.232,1.27,1.018,1.025,0.927,1.601,1.093,1.037,1.158,0.915,1.137,1.011,1.058,1.152,1.102,0.91,0.968,1.024,0.944,0.952,1.018,0.819,0.92,0.827,1.118,1.044 +NM_032860,0.662,1.08,1.256,0.709,1.128,0.818,0.626,0.772,1.504,1.329,0.615,1.041,0.764,0.666,1.006,1.497,0.913,0.744,1.182,0.929,0.693,1.145,1.386,1.297,0.644,0.788,1.252,0.77,0.735,0.844,1.244,1.111,2.157,0.956,0.415,0.978,0.934,0.96,1.342,0.956,1.184,1.001,0.821,1.34,1.379,0.816,1.031,0.8,1.351,0.873,0.857,0.841,1.007,2.117 +NM_032861,0.933,0.889,1.089,1.032,1.019,1.023,0.854,0.943,1.176,1.1,0.984,0.898,0.99,1.059,1.135,1.186,0.991,0.962,1.128,0.901,1.089,1.057,0.907,1.319,0.906,1.079,1.101,0.983,0.784,1.058,1.19,0.943,1.086,0.968,1.008,0.919,0.983,1.122,1.027,0.938,1.158,0.934,1.032,0.894,1.003,0.922,0.93,0.913,1.111,1.011,0.914,0.757,1.009,0.991 +NM_032862,0.77,1.258,1.248,0.72,0.964,0.914,0.784,0.676,1.206,1.398,0.74,1.209,0.801,0.793,0.746,1.179,0.906,1.037,0.93,0.924,0.664,0.896,1.178,1.039,0.643,0.87,1.115,1.155,0.521,0.983,0.947,1.63,1.465,0.966,0.57,1.583,0.918,1.095,0.867,1.781,1.055,0.93,0.898,1.508,1.225,1.001,1.212,0.845,1.305,1.131,0.863,1.144,1.281,1.322 +NM_032864,0.792,1.019,1.045,0.848,0.973,1.02,0.77,0.906,1.12,1.061,0.886,1.083,0.797,0.786,0.897,1.233,0.853,0.897,1.039,0.937,0.838,0.904,1.173,1.04,0.787,1.001,1.169,0.978,0.597,0.93,1.072,1.256,1.833,1.052,0.697,0.896,0.99,1.049,1.346,0.984,1.058,0.877,0.906,0.79,0.967,0.923,0.826,0.813,1.018,0.869,1.06,0.82,0.9,1.549 +NM_032865,0.979,0.999,1.046,1.084,1.006,0.985,0.943,0.814,0.975,1.192,1.1,0.887,0.905,0.861,1.03,0.929,1.018,0.813,0.78,0.987,1.018,1.142,1.145,1.042,0.978,0.924,1.001,0.872,0.826,0.968,1.028,1.009,1.379,0.98,0.992,1.568,0.969,1.087,0.94,0.899,0.945,0.967,0.97,1.682,0.935,0.877,1.197,1.053,1.067,1.269,0.91,1.098,1.484,1.206 +NM_032866,2.344,0.968,1.546,0.853,3.999,0.445,0.513,2.158,4.348,1.959,0.393,2.279,1.361,1.632,1.403,1.062,1.549,1.635,2.542,0.592,1.045,3.077,0.601,1.673,1.178,1.728,1.911,3.53,0.349,0.5,3.157,1.486,0.592,0.77,7.39,0.286,0.412,3.399,0.43,0.499,2.507,1.961,0.392,0.439,1.876,0.368,1.033,3.979,0.374,2.754,0.791,0.556,1.548,0.817 +NM_032867,0.904,0.872,1.188,0.867,0.873,1.06,1.212,0.871,1.063,0.877,1.045,0.997,0.805,0.693,0.88,1.184,0.955,1.014,1.058,0.962,0.812,0.941,1.347,0.854,0.938,0.829,1.058,0.822,0.696,1.088,0.802,0.974,1.037,1.062,0.804,1.331,1.166,0.927,0.898,1.326,0.907,1.15,1.104,0.885,1.092,1.079,1.023,0.715,1.054,0.968,1.073,1.544,0.961,1.013 +NM_032868,0.91,1.304,0.993,0.879,0.664,1.541,0.737,0.652,0.845,0.841,1.635,0.83,1.117,0.678,1.141,2.574,0.942,0.911,1.294,1.374,0.811,1.086,1.816,0.999,1.14,1.273,0.968,0.697,0.648,1.533,0.857,0.969,1.215,1.796,0.447,0.668,1.507,1.115,1.508,0.67,0.966,1.745,1.007,1.181,0.868,1.33,0.625,1.325,0.858,0.837,1.051,0.715,0.837,0.778 +NM_032869,0.899,1.04,1.005,1.081,1.074,1.11,1.025,0.821,1.007,0.827,1.004,0.899,0.99,1.094,1.155,1.195,0.986,0.754,0.907,1.018,0.929,0.991,1.155,1.122,0.821,0.931,1.031,0.983,0.817,1.001,1.055,1.158,1.29,1.039,0.997,0.949,1.072,1.126,1.068,1.252,1.048,0.898,0.891,1.02,0.903,0.999,1.127,0.773,1.219,0.996,0.864,1.016,0.948,1.222 +NM_032870,0.685,1.196,1.508,0.811,1.116,1.061,0.763,0.678,1.546,1.113,1.064,0.986,0.696,0.951,1.213,1.261,1.082,0.919,0.978,1.135,0.705,0.978,1.115,1.289,0.662,0.649,1.654,0.973,0.589,1.159,1.143,1.501,2.536,1.401,0.576,0.712,0.871,1.07,1.0,1.042,1.133,1.058,0.846,0.841,0.831,0.969,0.916,0.746,0.954,0.769,1.062,0.926,0.949,2.353 +NM_032872,1.445,0.729,1.997,1.07,1.505,0.995,0.545,1.385,1.743,1.531,0.651,1.543,1.69,1.333,1.054,1.059,1.201,1.37,2.898,0.93,0.953,1.857,0.78,1.609,0.718,2.308,1.256,1.221,0.447,1.135,2.027,0.384,0.786,1.627,0.425,0.529,0.447,1.102,1.236,0.301,1.388,0.856,0.216,0.581,1.503,0.392,0.589,1.995,0.24,1.404,0.72,0.488,1.44,0.767 +NM_032873,1.109,1.024,1.065,0.806,0.986,1.147,1.147,1.178,1.07,1.017,1.0,0.883,0.997,0.985,1.123,0.975,1.098,1.079,1.018,1.017,0.907,1.02,1.267,0.964,1.169,0.925,1.08,0.995,1.515,1.056,1.0,0.998,1.193,0.95,1.022,0.967,1.0,0.89,1.047,1.002,1.138,1.151,1.32,0.902,1.014,1.034,0.839,1.034,0.891,1.031,1.003,0.994,0.975,1.063 +NM_032874,0.926,1.066,1.043,1.003,1.051,0.97,0.995,0.95,0.934,1.009,0.919,0.931,0.965,1.023,0.736,1.109,0.958,1.045,0.958,1.123,1.082,0.99,0.984,0.965,1.021,1.093,0.81,1.028,0.538,0.918,0.999,0.987,0.97,1.125,1.047,0.868,1.022,0.883,1.005,1.161,1.068,0.888,0.858,1.185,0.946,1.006,1.014,0.944,0.981,0.925,1.009,0.933,1.092,0.957 +NM_032875,1.052,0.992,1.311,0.907,1.38,0.861,0.746,0.901,1.431,0.996,0.876,1.273,1.001,1.149,1.107,1.036,1.316,1.095,1.372,1.133,0.973,1.153,0.805,1.023,0.725,1.218,1.242,1.494,0.538,0.928,1.572,1.594,1.806,1.09,1.528,0.737,0.861,1.304,0.915,0.999,1.398,0.821,0.758,0.954,1.202,0.85,1.276,1.239,0.762,1.127,0.879,0.767,1.03,1.132 +NM_032876,0.974,0.806,0.954,1.038,1.035,1.064,1.03,0.952,1.079,0.906,0.997,1.008,0.975,0.951,1.047,0.946,0.958,0.937,1.06,0.9,1.009,0.954,1.018,0.972,1.06,1.021,0.999,0.893,0.992,1.016,1.012,0.911,0.951,1.028,0.98,1.002,1.054,1.014,0.956,0.994,1.138,0.978,0.939,1.0,1.054,0.991,1.054,1.085,0.948,1.046,1.0,1.054,0.986,1.084 +NM_032878,0.664,1.333,1.062,0.882,0.987,1.193,0.885,0.586,1.117,1.079,0.906,0.903,0.656,0.791,0.867,0.996,0.978,1.002,0.883,1.278,0.679,0.775,1.389,1.003,0.738,0.793,1.188,0.881,0.655,1.676,0.769,1.663,1.209,1.169,0.563,0.933,1.024,0.953,1.197,1.288,1.06,1.078,0.747,1.24,0.884,1.145,1.208,0.775,0.926,0.748,0.933,1.082,0.903,1.551 +NM_032880,1.001,1.039,0.986,1.027,1.014,0.977,1.114,1.019,0.997,1.059,0.955,0.998,0.978,0.761,1.094,0.91,0.973,0.895,0.937,1.019,0.97,0.951,1.089,0.956,0.887,1.053,1.069,1.14,0.764,1.008,0.973,1.07,1.232,1.242,0.981,0.973,0.944,1.135,0.999,1.015,0.957,1.153,0.914,1.032,0.946,0.898,1.069,1.081,0.968,0.997,0.952,1.02,1.001,0.986 +NM_032883,0.777,1.235,0.97,0.838,0.715,1.144,1.221,0.903,0.724,0.746,0.958,0.785,0.767,0.814,0.725,0.974,0.78,0.816,0.782,1.008,0.86,0.639,1.2,0.851,1.19,0.847,0.852,0.93,0.907,1.671,0.765,2.39,0.894,1.896,0.833,0.928,0.789,0.907,1.518,1.192,1.028,2.2,1.192,0.812,0.839,1.377,0.964,0.736,0.886,0.72,1.272,0.999,0.963,2.483 +NM_032884,0.966,0.931,0.995,1.105,0.922,0.962,0.896,0.955,0.967,0.9,1.055,0.814,1.064,0.906,0.833,1.171,1.107,1.141,0.934,1.078,1.024,1.103,1.018,0.987,1.132,1.004,0.906,0.947,0.862,0.973,0.94,1.171,0.984,1.012,1.167,1.094,0.894,0.941,0.92,0.981,1.089,1.032,0.913,1.145,1.009,1.194,1.119,0.803,0.979,0.919,0.819,1.003,1.14,0.851 +NM_032885,1.089,1.03,1.04,1.022,0.949,1.079,0.969,0.985,0.811,0.917,0.953,1.06,1.144,0.982,1.066,1.142,1.066,0.942,0.847,0.833,0.947,1.048,1.002,1.132,1.014,0.99,1.009,1.072,1.09,0.994,1.025,0.96,1.026,1.035,0.88,0.846,1.067,1.151,1.167,0.895,1.015,0.938,1.214,0.873,1.037,0.977,0.913,1.044,0.979,1.065,0.998,0.887,0.861,1.14 +NM_032886,0.979,0.91,1.038,1.103,0.982,0.901,0.883,0.993,1.006,1.083,0.92,0.901,0.909,0.904,1.052,1.164,1.044,0.913,1.079,1.005,0.932,1.025,0.863,0.973,0.862,0.995,1.038,0.946,0.838,1.02,0.911,1.019,1.027,1.109,1.001,0.939,0.968,1.028,1.021,0.98,1.039,1.047,1.048,0.975,1.17,0.786,1.002,0.984,1.086,0.903,0.997,1.033,0.901,0.993 +NM_032888,0.998,0.997,1.086,0.885,0.756,1.01,0.822,1.067,1.082,0.975,1.015,0.985,0.885,0.905,1.05,1.187,1.005,1.146,1.089,1.002,1.096,1.053,1.022,0.909,0.97,0.852,1.044,1.033,0.713,0.943,1.026,0.997,1.052,1.022,1.077,1.228,0.889,0.957,1.136,1.012,0.917,0.908,1.208,0.771,1.022,1.146,1.131,0.92,0.946,1.006,0.906,1.008,1.098,1.077 +NM_032889,1.596,0.558,1.232,0.872,1.398,0.746,0.602,0.888,1.743,1.477,0.904,1.158,0.858,1.357,1.48,1.336,0.938,1.252,2.434,0.577,0.919,1.473,0.749,1.801,0.506,1.816,1.259,1.193,0.574,0.753,1.73,0.787,1.211,1.091,1.002,0.743,0.64,1.143,1.174,0.706,1.264,0.89,0.487,1.346,1.637,0.504,1.056,1.97,0.636,1.425,0.757,0.82,1.81,1.27 +NM_032890,0.837,1.746,0.877,1.057,0.911,2.298,1.473,0.844,0.777,0.735,1.081,0.747,0.875,0.8,0.907,1.026,0.761,1.642,0.912,1.586,0.804,0.861,1.026,0.77,1.178,0.888,0.962,0.975,1.316,2.313,1.015,1.293,1.442,2.514,0.66,0.789,1.485,0.931,1.487,0.912,0.796,1.523,0.988,0.948,0.711,1.119,0.838,0.743,0.852,0.722,1.122,0.719,0.803,0.962 +NM_032892,0.971,0.959,0.886,1.122,0.955,1.169,0.772,1.013,0.941,1.016,0.986,0.955,0.968,0.959,0.932,0.822,0.908,0.977,0.982,0.969,0.87,0.881,0.978,0.979,0.982,1.182,1.059,1.04,1.07,1.051,0.962,1.093,1.069,0.978,1.05,1.131,1.011,1.127,1.165,1.254,0.967,1.058,1.075,1.313,0.974,0.933,1.048,1.016,0.935,1.069,0.982,1.064,1.142,1.19 +NM_032900,0.982,0.966,1.034,0.94,0.966,1.012,1.169,1.057,1.002,1.182,1.113,1.05,0.914,1.117,1.069,0.946,0.983,1.048,0.97,1.034,1.05,1.074,0.898,0.939,0.951,0.953,1.002,1.03,0.932,1.049,0.963,1.003,1.004,0.888,0.839,0.909,0.895,1.005,0.914,0.931,1.148,1.1,0.88,1.057,0.903,0.943,0.948,0.84,1.077,1.068,0.952,0.959,1.105,0.876 +NM_032901,0.447,1.234,0.944,0.688,0.591,1.649,0.674,0.415,0.692,0.785,1.542,0.886,0.612,0.408,0.849,1.871,0.725,0.904,0.895,1.334,0.426,0.545,1.361,0.675,0.851,0.679,1.056,0.623,0.501,1.505,0.623,1.627,1.001,1.788,0.077,1.165,1.781,0.549,1.195,0.91,0.78,1.357,0.805,1.307,0.739,1.226,0.941,0.589,1.211,0.671,1.208,0.85,0.86,1.91 +NM_032902,0.344,2.012,0.72,0.74,0.748,1.535,0.569,0.258,0.867,0.624,1.444,0.548,0.295,0.417,0.856,1.973,0.466,0.95,0.511,1.856,0.237,0.575,1.657,0.698,0.696,0.511,0.509,0.736,0.473,2.006,0.544,1.19,0.712,1.595,0.124,1.206,1.622,0.778,1.142,1.352,0.727,1.594,1.382,0.906,0.52,2.74,1.287,0.454,2.744,0.349,1.436,0.393,0.344,0.983 +NM_032903,1.189,1.066,1.017,0.841,0.857,0.946,1.181,0.85,0.955,0.886,1.208,0.997,0.901,1.16,0.97,0.961,0.914,1.09,0.909,1.049,0.957,0.765,0.952,1.09,1.023,1.01,1.069,1.001,0.933,1.033,0.977,1.069,1.24,1.073,0.988,1.071,0.856,0.947,0.983,0.963,0.884,1.032,0.899,1.14,1.023,1.014,0.995,0.987,0.907,0.949,0.952,0.903,0.895,1.216 +NM_032905,0.663,1.029,1.41,0.663,1.105,1.348,0.857,0.831,1.122,1.027,0.567,1.101,0.824,0.628,0.823,1.707,1.129,1.016,0.801,0.93,0.567,1.183,1.17,1.329,0.623,0.622,1.588,0.999,0.741,1.061,1.286,1.409,2.791,0.988,0.581,0.724,0.859,1.1,1.253,1.001,1.057,1.059,0.813,0.761,1.004,0.755,1.21,0.76,1.259,0.886,1.014,0.815,0.693,1.885 +NM_032906,0.813,1.214,1.32,0.672,0.919,1.34,0.561,0.767,1.339,0.929,1.506,0.942,0.946,0.857,1.146,2.218,0.764,0.846,1.765,0.921,0.717,0.937,1.187,1.111,0.498,0.952,1.182,1.037,0.392,1.155,1.118,1.155,1.753,1.617,0.141,0.573,1.286,1.205,1.017,0.537,1.314,1.107,0.615,0.898,1.01,0.914,0.921,0.846,0.842,0.887,0.979,0.631,1.048,1.03 +NM_032907,0.862,1.028,1.111,0.936,0.984,1.268,0.874,0.768,1.06,0.797,0.975,0.793,0.879,0.676,0.913,1.607,0.923,1.078,1.214,1.034,0.717,0.84,1.532,0.991,0.841,0.925,1.013,0.844,0.689,1.322,0.957,1.0,1.781,1.732,0.613,0.929,0.918,0.777,1.766,0.679,0.972,1.176,0.792,1.161,1.081,0.766,0.941,0.973,0.795,0.882,1.004,0.723,0.912,1.221 +NM_032910,0.81,1.239,1.027,0.998,0.996,1.016,1.046,0.842,0.873,0.991,1.124,1.074,0.891,0.928,0.902,1.057,0.885,1.057,0.896,1.087,0.873,0.936,0.9,0.94,0.961,0.967,0.886,0.882,0.874,0.943,1.002,0.975,1.745,1.036,1.036,1.032,0.879,1.046,1.136,1.039,0.997,1.136,1.12,1.143,1.079,0.943,0.887,0.981,0.776,1.062,0.94,0.852,0.968,1.062 +NM_032916,1.094,0.901,0.924,0.879,0.955,1.031,0.871,0.829,0.955,1.16,1.017,1.157,0.853,1.069,1.09,1.242,0.965,0.951,1.161,0.928,1.078,0.893,0.99,0.914,0.964,1.05,0.973,0.825,1.162,1.027,1.113,1.057,1.516,0.995,0.883,1.012,0.997,0.977,1.171,0.84,0.993,1.011,1.019,0.892,0.971,0.929,0.967,0.924,0.956,1.166,1.093,0.936,1.049,0.964 +NM_032918,0.899,0.878,1.179,0.902,0.97,1.1,0.94,0.964,1.116,1.412,0.981,1.178,1.157,0.93,0.945,1.191,0.77,1.077,1.156,1.153,0.958,1.091,1.242,0.964,0.811,0.984,1.173,1.18,1.085,0.954,0.943,1.786,1.672,1.368,1.048,0.812,0.844,1.046,0.946,0.839,1.1,1.325,0.82,0.957,0.958,0.863,1.037,0.994,0.859,1.142,1.035,1.069,1.053,0.925 +NM_032921,0.879,0.851,0.997,1.02,0.933,1.254,0.844,0.77,0.993,0.906,1.233,0.816,0.961,0.71,1.029,1.437,1.07,1.019,1.138,1.058,0.87,0.928,1.011,1.074,0.974,1.043,0.819,0.775,0.929,1.291,0.826,1.657,0.944,1.326,0.647,0.819,1.275,0.927,1.284,0.921,0.892,1.115,0.793,0.915,0.913,1.182,0.94,1.076,1.114,0.93,0.97,0.807,0.796,0.947 +NM_032924,0.791,0.878,0.852,0.757,0.604,1.421,0.828,0.748,0.899,0.761,1.112,0.749,0.826,0.632,1.013,1.591,0.677,0.928,0.892,1.095,0.762,0.778,1.605,0.87,1.0,0.965,0.969,0.798,0.63,1.66,0.859,1.28,1.143,1.436,0.538,0.894,1.197,0.791,1.473,1.638,0.761,1.291,0.891,1.421,0.923,0.885,0.964,0.726,1.012,0.713,1.164,1.334,0.78,1.216 +NM_032926,0.653,1.989,0.7,0.832,0.683,1.462,1.049,0.68,0.719,0.716,1.025,0.639,0.645,0.535,0.763,0.984,0.631,0.921,0.652,0.998,0.712,0.624,1.704,0.767,1.101,0.705,0.742,0.857,1.209,1.846,0.757,3.759,0.99,2.478,0.606,0.732,1.033,0.847,1.241,0.952,1.091,2.253,0.595,1.667,0.742,0.795,0.874,0.637,0.689,0.614,1.22,0.839,0.922,1.459 +NM_032928,0.789,0.825,0.766,0.718,0.897,1.586,0.486,0.926,1.082,0.748,1.489,1.38,1.226,0.54,1.11,1.864,0.629,1.414,2.205,1.226,0.73,0.999,0.771,1.453,0.631,1.423,0.901,0.826,0.395,1.09,1.001,1.17,1.115,1.958,0.214,1.828,0.88,0.909,1.475,1.104,1.049,1.545,0.609,1.222,0.749,0.577,0.8,1.291,0.538,0.686,1.177,0.519,0.955,0.773 +NM_032930,0.914,1.061,0.838,1.214,0.937,1.262,0.98,0.872,0.945,1.001,1.118,1.003,1.005,0.997,1.16,0.932,0.963,0.991,0.835,0.944,1.106,0.889,1.009,0.918,0.825,0.809,0.885,0.942,0.703,1.146,1.051,1.212,3.307,1.03,0.812,1.052,0.938,0.957,1.07,1.107,0.817,0.821,1.014,1.299,1.054,0.904,1.145,0.946,0.901,0.987,1.067,0.906,1.092,1.374 +NM_032932,0.81,1.258,0.95,0.915,0.84,1.072,0.681,0.634,0.974,0.684,1.368,0.619,0.66,0.803,1.139,1.699,0.704,1.023,0.921,1.61,0.651,0.745,1.79,0.706,0.912,0.979,0.64,0.775,0.897,1.501,0.845,1.106,1.358,1.403,0.551,0.988,1.19,0.899,1.469,0.826,0.785,1.138,0.944,1.871,0.759,1.343,0.877,0.679,1.183,0.77,1.351,0.956,0.738,1.529 +NM_032933,0.773,1.386,1.693,0.661,1.071,1.143,0.745,0.706,0.922,1.055,0.837,1.095,0.806,0.795,0.83,1.098,1.086,0.903,1.245,0.818,0.858,0.877,1.281,1.292,0.745,0.809,1.231,0.878,0.606,1.165,0.896,0.908,0.809,1.075,0.672,2.277,0.961,1.305,1.117,1.723,1.104,0.966,0.726,1.147,1.217,1.047,1.075,0.74,0.936,0.827,0.921,1.043,1.405,2.177 +NM_032936,0.654,0.906,1.021,0.661,0.911,1.277,0.623,0.743,1.41,0.764,1.156,0.997,0.768,0.641,1.04,1.346,0.568,0.777,0.902,0.987,0.583,0.683,1.317,1.088,0.669,0.808,0.963,1.065,0.443,1.719,0.969,1.486,1.653,1.651,1.03,0.808,1.064,1.013,1.009,0.915,1.087,0.99,0.679,1.76,0.837,1.047,0.921,0.764,0.823,0.497,1.142,1.019,0.765,1.527 +NM_032937,0.87,0.939,0.921,0.723,0.987,1.045,0.837,0.71,1.223,0.863,0.927,0.981,0.869,0.864,0.954,1.034,0.873,1.025,1.005,1.119,0.905,0.984,0.931,1.123,0.829,0.938,1.03,1.039,0.793,1.014,0.744,1.223,1.173,1.126,0.82,2.774,1.032,1.052,1.039,1.038,1.02,1.078,0.897,1.075,1.078,1.115,0.81,0.833,1.027,0.848,1.053,0.938,0.878,0.997 +NM_032938,1.084,0.955,0.936,0.783,0.98,1.002,0.852,1.03,0.831,0.826,0.905,1.043,0.94,0.96,1.004,1.109,0.98,1.068,0.983,0.924,0.905,0.963,0.967,1.045,0.978,1.118,1.171,1.103,0.757,0.941,1.015,0.938,0.962,1.128,0.984,1.03,1.007,0.939,1.054,0.956,1.03,0.993,0.921,0.992,1.066,1.02,0.957,1.091,1.171,1.1,1.104,1.02,1.022,0.93 +NM_032940,0.998,0.994,0.841,0.978,0.718,1.051,0.571,0.632,0.985,0.797,0.965,0.815,1.069,0.802,1.038,1.147,1.039,0.899,1.154,0.772,0.727,1.205,0.916,1.074,0.992,1.123,1.278,0.565,0.807,1.019,0.681,1.261,1.585,1.15,0.393,0.677,1.002,1.066,1.808,0.742,0.945,0.769,0.845,1.81,0.83,0.745,0.992,1.141,0.951,0.848,0.745,0.749,0.964,1.908 +NM_032941,1.822,1.03,1.215,0.75,1.27,0.711,0.725,0.867,1.073,1.161,0.734,0.823,0.628,0.904,1.004,1.66,0.871,0.932,1.175,0.805,3.139,0.969,1.081,1.113,0.717,2.23,1.28,1.975,0.931,0.854,0.97,1.502,2.746,1.015,0.86,1.047,0.864,4.446,1.118,0.885,2.243,0.869,0.823,0.934,0.903,0.911,1.048,1.497,0.906,1.105,0.788,0.909,1.131,1.383 +NM_032944,0.991,1.016,0.934,1.042,1.05,0.948,1.238,0.978,1.027,1.003,0.918,0.982,0.911,0.972,0.833,0.919,1.077,1.0,1.036,1.149,0.944,0.956,1.072,1.068,1.18,1.062,1.072,0.957,1.208,1.05,0.867,0.962,0.935,1.0,0.964,0.983,1.161,0.977,1.005,0.903,1.0,0.921,1.148,0.957,1.005,1.106,0.977,0.914,0.919,1.009,0.996,1.072,0.888,1.181 +NM_032947,1.003,0.934,0.892,0.983,1.02,0.862,1.004,0.999,0.808,0.983,1.033,0.872,0.91,0.734,0.933,1.193,0.964,0.939,0.91,1.001,1.039,0.965,1.071,0.946,0.931,1.032,1.081,0.984,1.085,1.064,0.893,1.413,1.394,0.974,1.053,1.009,1.056,0.995,1.095,1.206,0.972,0.968,1.098,0.929,0.989,0.979,1.012,1.022,0.997,0.945,0.989,0.989,1.364,1.259 +NM_032949,0.924,1.126,0.989,1.069,0.991,0.98,0.995,0.886,1.122,1.148,0.889,1.002,0.987,0.725,0.959,1.141,0.964,1.11,1.151,1.064,0.907,1.051,1.095,1.077,0.967,0.981,0.888,0.957,0.951,1.025,1.027,0.99,0.87,0.885,1.12,0.923,0.995,1.058,1.215,0.967,0.89,0.897,0.823,1.056,0.983,1.117,1.043,1.073,1.057,0.951,0.883,1.09,0.857,1.224 +NM_032950,0.903,0.884,1.017,0.979,0.9,0.971,1.099,1.144,1.068,1.029,0.967,0.981,1.094,1.104,1.204,1.077,1.051,1.055,1.169,0.904,1.076,0.972,1.067,0.954,0.916,0.942,1.117,1.08,0.816,1.004,1.05,1.057,0.976,0.981,1.042,0.935,0.941,1.064,0.892,0.97,1.021,0.987,1.076,0.992,0.872,0.98,1.059,0.936,0.995,0.933,1.055,1.105,0.981,1.144 +NM_032955,1.736,1.861,2.195,1.669,1.779,1.947,1.705,1.876,2.135,1.8239999999999998,1.852,1.822,1.861,1.501,1.901,1.849,2.082,1.802,2.192,1.603,2.01,1.785,2.06,2.1,1.686,1.803,3.0060000000000002,2.021,1.383,2.856,1.9789999999999999,3.416,2.325,2.436,1.5910000000000002,1.491,2.054,1.931,2.298,3.9210000000000003,2.21,2.4989999999999997,1.565,1.7159999999999997,1.94,1.925,1.837,1.714,1.5,1.699,1.828,2.7190000000000003,2.705,3.1399999999999997 +NM_032957,1.002,0.992,0.987,1.087,1.104,1.053,0.823,0.926,1.071,1.005,0.812,1.126,0.873,1.0,0.837,0.993,1.04,0.933,1.102,0.926,0.846,1.004,1.037,1.113,0.927,1.198,1.078,1.02,0.864,1.069,0.895,0.985,0.92,0.822,1.001,1.07,0.916,1.155,1.216,1.199,0.996,0.913,0.876,1.041,1.069,0.934,1.125,1.002,1.111,1.101,0.883,1.009,0.965,1.053 +NM_032958,0.782,0.987,1.445,0.776,0.998,1.554,0.462,0.644,1.318,0.997,0.993,0.793,0.886,0.589,0.928,1.641,1.629,0.926,0.954,1.081,0.359,0.993,1.403,1.156,0.661,0.65,1.596,0.7,0.459,1.442,1.112,1.535,1.628,1.547,0.357,0.266,0.88,1.278,2.249,0.728,1.154,1.297,0.687,1.051,0.931,0.86,1.199,0.977,0.841,0.734,1.01,1.221,0.517,1.168 +NM_032960,0.954,0.975,1.013,0.788,0.775,1.064,0.701,0.662,0.898,0.868,0.9,0.683,0.8,0.594,0.698,1.131,1.174,0.83,1.031,0.682,0.78,1.156,1.005,1.181,0.918,1.168,1.472,0.54,0.835,0.938,0.811,1.579,1.257,0.995,0.607,0.929,1.061,1.249,1.602,1.271,1.026,1.096,0.756,1.75,1.143,0.789,0.853,1.304,0.754,1.1,0.797,0.766,1.073,1.026 +NM_032961,0.956,1.004,1.007,0.954,1.167,0.971,1.293,1.032,1.067,0.909,0.997,1.065,1.146,1.032,0.966,0.999,1.033,1.184,0.953,0.815,0.957,1.071,0.976,0.999,0.972,0.989,0.805,0.854,0.913,0.914,1.048,0.924,1.0,1.069,1.096,1.146,1.018,0.936,0.977,0.99,1.051,1.035,1.07,0.981,0.913,1.008,0.973,1.117,0.901,1.05,0.932,1.081,1.047,0.843 +NM_032963,0.759,1.105,0.882,0.818,0.877,1.297,0.836,0.976,0.863,0.951,1.004,0.786,0.768,0.991,1.062,1.339,0.901,1.008,0.994,0.906,1.23,0.757,1.283,0.926,1.013,0.996,1.051,1.253,0.921,1.508,0.934,0.96,0.895,1.908,0.881,1.058,0.991,0.865,1.039,0.952,1.213,2.842,1.019,0.905,0.96,1.069,1.017,0.814,1.035,0.945,1.075,0.872,1.076,0.874 +NM_032965,1.029,1.03,0.921,0.976,0.88,1.214,1.131,1.072,1.03,1.009,1.312,0.854,1.006,0.95,1.107,1.089,0.919,0.918,0.933,1.208,0.955,0.857,1.263,0.955,1.059,0.955,1.038,0.934,1.293,1.025,0.963,1.005,0.998,1.005,0.941,0.868,1.098,1.009,1.067,0.987,0.891,1.148,1.433,1.005,0.956,1.321,0.993,1.011,0.991,0.988,1.208,0.923,0.954,0.972 +NM_032966,1.011,1.038,1.023,0.99,1.068,1.107,0.942,1.265,0.868,0.87,0.987,0.979,0.849,1.083,1.013,0.841,0.968,0.918,1.109,0.848,1.124,0.909,0.977,0.976,0.986,1.084,1.021,0.996,0.953,1.099,0.969,0.879,0.997,1.013,1.015,0.952,1.143,1.104,0.88,0.857,1.077,0.975,0.93,1.047,1.048,1.001,0.952,1.002,1.145,0.943,0.954,0.924,1.015,0.913 +NM_032970,1.755,2.177,1.845,2.243,1.611,2.331,1.8599999999999999,1.759,1.8090000000000002,1.722,2.293,1.5750000000000002,1.514,1.772,1.785,2.447,1.744,1.774,1.5939999999999999,1.858,1.589,1.5270000000000001,2.143,1.767,2.104,1.6150000000000002,2.112,1.732,1.395,2.57,1.748,2.624,2.383,2.63,1.508,1.915,2.569,1.53,2.9779999999999998,1.924,1.6179999999999999,2.523,1.831,2.257,1.8610000000000002,2.463,2.007,1.605,1.801,1.806,2.3070000000000004,2.074,2.072,2.902 +NM_032971,1.9689999999999999,1.935,2.04,2.1820000000000004,1.9729999999999999,2.051,1.899,1.9740000000000002,2.152,2.159,1.889,1.9529999999999998,2.362,2.058,2.023,2.314,1.8559999999999999,2.143,2.091,1.9809999999999999,2.0620000000000003,1.979,2.2270000000000003,1.9609999999999999,1.9769999999999999,2.052,1.899,1.9889999999999999,2.346,2.242,1.9929999999999999,2.1369999999999996,2.1390000000000002,1.8780000000000001,2.318,2.203,2.174,1.883,2.0789999999999997,1.88,2.015,2.104,1.892,1.8849999999999998,2.076,2.247,2.005,2.1310000000000002,1.903,1.883,2.1260000000000003,2.172,1.924,1.94 +NM_032973,1.016,0.942,0.996,1.0,0.768,0.92,1.221,0.996,0.884,1.005,1.046,1.137,0.778,1.048,0.993,1.169,0.933,1.288,1.085,1.207,1.099,0.892,1.024,0.845,1.076,0.914,0.951,0.936,1.741,1.009,0.936,1.158,1.086,0.948,1.053,0.946,1.231,1.193,0.967,0.81,0.987,1.1,1.915,1.038,0.973,1.158,0.76,1.063,1.054,1.209,1.211,0.838,1.033,1.201 +NM_032974,1.6800000000000002,1.932,2.0620000000000003,1.708,2.058,2.088,1.601,1.73,2.068,1.982,1.5899999999999999,2.101,1.705,1.395,1.659,2.408,1.8290000000000002,2.066,2.014,1.758,1.646,2.133,2.167,1.9809999999999999,1.5510000000000002,2.104,1.714,1.997,1.3490000000000002,1.9,2.081,2.0,2.247,2.099,1.9909999999999999,2.059,1.862,2.234,2.4509999999999996,2.036,1.746,1.9869999999999999,1.592,2.178,2.396,1.832,2.074,2.214,2.213,1.9300000000000002,2.107,1.722,1.908,2.185 +NM_032984,0.921,0.835,1.141,0.942,0.915,1.003,0.892,0.803,1.128,1.001,1.015,0.95,0.837,0.894,0.835,1.083,0.856,0.961,0.947,0.894,0.929,0.741,1.236,0.981,0.871,0.946,1.171,0.866,0.792,1.082,0.994,1.059,2.208,1.242,0.755,0.796,0.965,0.845,1.024,0.934,0.963,1.034,0.681,1.173,1.049,1.115,0.928,0.828,0.889,1.063,0.968,0.876,1.026,1.185 +NM_032985,0.493,0.717,1.124,0.634,0.867,1.062,0.689,0.446,1.127,0.993,0.877,0.564,0.463,0.525,1.027,1.623,0.821,1.079,1.112,0.823,0.464,0.664,1.966,0.946,0.659,0.629,1.007,0.684,0.504,1.211,1.079,0.813,1.846,1.218,0.429,0.733,1.363,0.764,1.282,0.989,1.175,1.288,0.628,1.21,1.272,1.135,0.773,0.646,1.509,0.775,1.255,0.991,0.984,2.28 +NM_032986,0.858,0.933,0.907,0.911,0.941,1.063,0.97,0.893,1.082,1.036,1.081,0.962,0.996,1.136,0.97,1.109,1.013,0.986,1.125,0.923,1.09,1.032,1.042,1.005,1.073,1.066,0.952,0.951,0.923,0.926,0.989,1.075,1.143,0.917,0.945,1.038,1.072,0.956,0.957,0.94,1.101,0.916,0.871,1.057,0.959,1.067,1.057,1.009,0.92,1.171,0.945,0.911,1.096,0.891 +NM_032989,0.657,1.22,0.851,0.81,0.942,2.372,1.049,0.934,1.167,0.71,0.989,0.878,0.97,0.581,0.78,1.845,0.636,1.504,1.06,1.207,0.547,0.978,1.14,0.911,1.138,1.072,0.883,0.868,0.907,2.276,1.026,1.842,1.41,2.528,1.527,0.848,1.007,0.923,2.106,0.765,0.823,1.235,0.492,1.271,0.914,0.659,0.94,1.38,0.613,0.736,0.877,0.661,0.698,1.018 +NM_032991,0.735,1.174,1.1,0.763,0.638,2.218,0.912,0.79,1.107,0.599,1.589,0.755,0.777,0.68,1.284,2.254,1.217,1.037,0.992,1.65,0.349,0.701,1.329,0.806,0.751,0.819,1.139,0.981,0.584,1.313,0.931,1.666,0.756,1.04,0.604,0.735,2.555,0.607,1.373,0.891,0.943,1.009,0.739,0.807,0.827,1.035,0.643,0.815,0.927,0.946,2.446,1.019,0.783,1.429 +NM_032992,0.522,1.315,1.203,0.809,0.773,3.6,1.7,0.788,0.639,0.779,1.613,0.904,0.839,0.577,1.342,4.419,0.865,1.15,0.42,2.503,0.473,0.86,1.82,1.001,0.806,0.523,1.037,0.784,0.921,2.226,0.766,1.983,2.294,1.856,0.459,0.591,1.912,1.045,2.008,1.44,0.796,1.735,1.166,0.561,0.697,2.159,1.902,0.604,2.876,0.761,2.563,0.716,0.561,1.062 +NM_032993,0.763,1.758,0.8,0.814,0.838,1.51,1.157,0.766,0.752,0.807,1.538,0.801,0.789,0.942,0.721,0.873,0.828,0.77,0.711,1.319,0.805,0.873,2.421,0.852,1.261,0.858,0.918,0.758,1.209,1.719,0.733,2.242,0.822,1.949,0.799,1.621,1.593,0.826,2.619,1.452,0.691,1.791,1.346,2.8,0.772,1.835,0.802,0.768,1.584,0.814,1.042,1.015,0.847,1.057 +NM_032994,0.991,1.087,0.887,1.095,1.034,0.927,0.939,1.084,0.929,0.942,1.053,1.011,0.955,1.121,1.169,1.208,0.999,1.015,0.968,1.057,0.891,0.881,1.144,1.026,0.968,1.125,0.835,0.994,0.85,0.931,0.977,0.962,1.892,0.887,0.993,0.938,0.85,1.097,1.042,1.085,0.939,0.963,1.184,2.008,0.97,0.956,1.171,1.175,1.145,1.058,1.005,1.061,0.815,0.955 +NM_032995,0.935,0.9,0.896,1.049,1.007,1.101,1.086,0.932,0.988,0.898,1.007,0.97,0.936,0.983,1.005,0.891,0.889,1.054,0.944,1.02,0.899,0.937,0.904,1.002,0.994,1.194,1.043,0.99,1.107,0.947,1.094,0.926,0.862,1.073,0.95,0.879,0.93,1.013,1.207,0.992,1.474,0.99,1.058,1.001,0.879,1.061,0.946,1.121,1.132,0.968,0.96,0.855,0.933,1.141 +NM_032997,0.998,1.153,1.049,0.943,1.02,0.995,1.155,1.143,0.912,0.901,1.03,1.032,1.075,1.022,1.129,1.066,1.005,1.012,0.923,0.975,1.178,0.827,0.884,1.112,1.165,0.996,0.887,1.068,1.06,0.976,0.893,0.998,0.987,1.012,0.94,0.994,1.114,0.939,1.02,0.809,1.061,0.941,1.227,1.062,0.994,0.931,0.933,1.034,1.019,0.916,0.983,0.914,1.228,1.081 +NM_032998,0.799,0.876,1.062,0.8,0.928,1.16,0.732,0.675,1.117,1.104,1.032,0.914,0.706,0.963,1.015,1.265,0.84,0.922,1.153,0.987,0.553,0.801,1.079,1.109,0.617,0.822,1.144,1.015,0.625,1.128,1.136,1.601,1.29,1.177,0.546,0.94,1.148,0.955,1.266,0.982,1.037,0.943,0.841,1.171,1.022,0.982,0.935,0.902,0.841,0.811,0.895,0.768,0.867,1.708 +NM_033003,0.899,1.06,1.08,0.869,0.966,1.042,0.915,0.988,1.098,1.102,0.923,0.816,0.875,0.899,0.959,1.029,0.956,0.947,1.169,0.861,0.836,0.831,1.196,0.907,0.978,0.927,1.03,0.984,0.743,1.1,1.031,0.816,1.098,1.012,0.806,0.938,0.869,1.116,1.259,1.107,1.003,0.821,0.826,1.11,0.973,1.051,1.017,0.93,0.936,1.0,1.115,0.894,1.115,1.024 +NM_033007,0.95,0.881,1.149,1.089,0.945,0.998,1.013,1.014,1.153,0.849,0.975,0.983,1.113,0.948,1.017,0.926,0.972,1.052,0.856,1.014,1.038,0.932,0.869,0.954,1.078,0.986,1.177,1.249,0.958,0.968,1.075,0.848,1.063,1.0,0.953,1.053,0.936,1.1,0.945,1.103,1.083,0.901,1.025,0.952,0.898,1.001,1.007,0.935,0.967,0.941,1.012,0.831,1.015,0.944 +NM_033008,0.979,1.011,0.924,0.897,1.018,1.039,1.014,0.987,1.075,0.968,1.012,0.944,0.994,1.136,1.114,1.064,0.993,1.083,0.834,1.002,1.163,0.971,0.992,0.953,1.027,0.93,0.865,0.945,0.748,0.974,0.983,0.964,1.075,1.05,1.071,0.998,1.004,0.916,0.989,0.958,1.085,1.078,0.824,1.124,0.9,1.17,0.876,1.046,0.996,0.918,1.08,0.933,1.055,0.99 +NM_033010,0.761,1.135,0.874,0.864,0.944,1.869,0.681,0.765,0.901,0.813,1.021,0.985,0.882,0.723,1.143,1.583,0.82,0.952,0.973,1.206,0.817,0.897,1.27,0.936,0.917,0.782,0.97,0.753,0.78,1.791,0.924,1.49,1.564,1.725,0.633,1.145,1.053,0.952,1.556,1.256,0.771,1.257,0.833,1.125,0.806,1.186,0.953,0.885,0.828,0.817,0.967,1.011,0.899,1.458 +NM_033012,0.966,1.077,1.098,0.99,1.125,1.023,0.704,1.006,0.963,1.1,0.904,1.164,1.0,0.699,0.9,0.886,1.131,0.937,1.091,0.878,0.952,0.87,0.884,1.057,0.926,1.01,1.229,1.043,0.8,0.894,0.94,1.21,0.883,0.93,1.08,0.978,0.947,0.998,1.191,0.942,0.939,0.863,1.003,0.968,0.958,0.875,1.097,1.005,1.051,1.007,1.049,0.986,0.991,0.992 +NM_033014,0.957,0.894,1.053,1.099,1.063,1.027,0.869,1.005,0.901,0.895,0.903,1.01,0.949,0.961,0.77,0.799,1.075,0.911,0.921,1.014,1.03,0.96,0.901,0.93,1.157,1.003,1.103,1.008,1.233,1.032,1.069,0.932,1.217,0.906,1.067,1.002,1.097,0.914,1.053,0.862,0.884,0.822,0.892,0.885,0.925,0.923,1.02,0.942,1.065,1.063,0.922,1.013,0.851,0.865 +NM_033016,0.951,0.983,0.891,0.972,0.764,1.052,0.873,1.145,0.815,0.867,1.255,0.895,1.038,0.93,0.894,0.91,0.935,0.827,1.046,1.004,0.947,1.004,0.937,0.885,1.18,1.117,0.956,0.929,1.707,0.982,0.737,1.079,1.046,1.2,1.037,0.985,0.851,1.134,1.161,1.928,0.986,1.033,1.171,0.984,1.033,0.986,0.966,0.903,0.81,0.967,0.887,1.177,1.145,1.294 +NM_033018,1.035,0.99,0.948,1.04,0.859,1.06,1.088,0.966,0.92,1.045,0.916,1.004,0.989,0.856,0.96,0.901,0.959,0.994,1.033,1.079,1.073,0.847,1.089,0.985,0.894,0.985,0.991,1.045,1.166,1.021,1.093,0.932,0.954,0.978,1.022,0.91,1.051,0.865,0.992,0.942,0.973,0.981,0.83,0.996,1.001,1.151,1.027,0.986,1.064,1.037,0.894,1.058,1.08,0.964 +NM_033019,0.805,1.054,0.863,0.853,0.85,1.112,0.669,0.795,0.935,0.79,1.081,0.821,0.776,0.759,1.07,1.356,0.792,0.895,1.008,0.913,0.606,0.837,1.236,0.917,0.851,0.922,1.048,0.814,0.776,1.234,0.87,1.278,0.959,1.282,0.563,1.131,1.053,0.947,1.409,0.906,0.854,0.942,0.997,0.942,0.859,1.121,0.873,0.821,0.981,0.81,1.089,1.055,1.061,1.401 +NM_033020,0.608,0.942,1.537,0.443,1.275,1.046,0.621,0.722,1.359,1.004,0.699,1.065,0.493,0.707,0.921,1.13,0.881,0.942,1.441,0.999,0.626,1.393,1.158,1.39,0.523,0.644,1.364,1.035,0.613,1.241,1.081,1.082,2.095,1.066,0.506,0.539,1.017,1.467,0.967,1.306,1.306,1.05,0.636,0.573,0.936,0.762,1.062,0.721,0.955,0.844,0.861,0.833,0.803,2.035 +NM_033025,1.102,1.037,0.867,0.977,0.862,1.111,1.001,1.09,0.804,0.933,0.854,0.855,0.939,0.922,0.888,1.004,1.003,0.867,0.9,0.949,0.925,0.883,1.023,0.941,0.986,0.83,0.896,0.905,0.987,1.23,0.834,2.777,1.297,1.357,0.955,1.021,0.923,0.998,1.253,1.453,0.952,1.278,0.874,0.886,0.868,0.904,0.876,0.909,0.9,0.849,1.097,1.196,0.976,1.172 +NM_033027,1.045,0.546,1.2,0.723,1.501,0.605,0.646,1.687,1.28,0.884,0.758,1.231,1.328,0.852,0.957,1.05,1.464,0.884,1.337,0.71,0.484,0.812,0.64,0.759,0.499,1.059,0.84,1.03,0.381,0.941,1.355,1.134,0.971,0.607,2.791,0.606,0.86,1.38,1.598,3.763,1.565,0.892,1.858,0.59,1.411,1.835,1.115,1.476,1.069,0.964,0.51,1.19,1.937,1.02 +NM_033028,0.736,1.226,0.929,0.988,0.865,1.232,0.99,0.763,0.839,0.845,1.2,0.772,0.759,0.755,0.922,1.342,0.922,1.043,0.755,1.356,0.641,0.675,1.558,0.838,1.057,0.779,0.909,0.75,0.915,1.158,0.764,1.669,1.183,1.428,0.701,1.059,0.954,0.984,1.443,1.006,0.866,1.377,1.049,0.946,0.748,1.336,0.937,0.649,1.003,0.727,0.988,0.993,0.733,2.203 +NM_033029,0.971,1.095,1.059,0.932,0.779,0.954,0.919,0.954,0.958,0.972,1.042,0.999,0.869,1.023,1.054,0.996,0.914,1.045,1.029,1.028,1.028,1.038,1.043,1.037,0.976,0.98,1.085,0.945,0.659,1.102,0.927,0.96,1.003,0.883,0.996,1.015,1.015,1.002,1.132,1.039,0.943,0.872,0.972,0.975,0.997,1.024,0.99,0.805,0.942,0.924,0.971,1.055,0.921,1.084 +NM_033030,0.995,0.98,0.828,1.067,1.029,1.009,0.808,0.878,0.89,0.853,0.961,1.051,0.969,0.856,1.042,1.055,0.946,1.112,1.118,1.108,1.166,1.037,1.099,0.973,0.959,0.999,1.092,1.159,1.209,0.968,0.954,0.962,1.039,1.057,1.082,1.125,0.924,0.795,0.985,1.022,0.931,1.072,0.857,0.943,1.047,0.887,0.926,1.009,0.96,0.948,0.898,0.935,1.042,0.976 +NM_033031,0.982,0.988,1.192,0.939,1.049,1.005,1.074,0.94,0.824,0.989,1.148,0.889,1.1,0.866,1.184,0.936,1.127,1.045,0.891,0.965,1.014,1.225,1.062,0.958,1.022,1.102,0.933,0.896,0.971,1.005,1.163,1.151,0.942,0.891,1.209,0.916,1.076,0.96,0.985,1.036,0.982,1.067,1.001,1.031,0.948,1.161,0.911,0.967,0.933,0.983,1.025,1.101,0.954,1.055 +NM_033033,1.091,1.117,1.112,0.981,0.725,1.111,1.243,1.223,1.13,0.83,0.77,0.977,0.989,1.075,1.171,1.044,0.93,0.872,0.83,1.244,1.012,1.023,1.084,0.961,1.001,0.859,0.954,0.864,1.168,0.967,0.903,0.843,1.154,1.02,0.85,1.207,1.127,1.041,1.018,0.896,0.854,0.932,0.885,1.111,1.159,1.061,1.086,0.992,0.869,0.977,0.888,0.937,1.22,0.761 +NM_033035,1.056,0.955,1.009,1.094,0.941,1.007,1.069,1.364,1.148,0.981,0.954,1.107,0.954,1.264,1.041,1.214,1.043,0.987,1.008,1.028,1.117,1.087,1.239,0.939,0.941,0.913,1.105,0.975,1.133,1.012,1.027,0.927,1.045,0.901,1.209,1.058,1.085,1.025,0.978,0.968,1.021,1.064,1.035,0.886,0.995,0.872,0.912,0.89,1.19,1.046,0.986,1.177,0.995,1.076 +NM_033036,1.05,1.01,1.049,0.926,0.791,1.006,1.206,1.014,0.944,0.9,0.964,1.064,0.947,1.051,0.988,1.095,0.996,0.923,0.921,0.947,1.071,0.952,1.132,0.926,0.866,1.028,1.117,0.973,1.253,0.906,0.93,0.944,0.959,1.025,0.998,0.988,0.944,1.043,1.019,1.138,0.925,1.082,1.146,0.913,0.948,0.807,1.031,1.058,1.068,0.952,1.145,1.009,0.951,0.946 +NM_033043,1.006,0.969,1.049,0.975,1.057,0.956,0.807,0.934,1.08,1.041,0.969,0.929,1.009,1.048,1.092,0.989,1.089,0.961,0.885,0.943,0.835,1.042,0.878,1.069,0.919,0.979,0.95,1.069,0.906,0.853,1.046,0.977,1.098,1.076,0.907,0.942,1.029,1.173,1.087,0.914,0.807,0.914,1.182,1.057,0.944,0.995,1.031,1.097,0.968,0.99,1.018,0.982,0.865,0.858 +NM_033044,0.899,1.01,1.033,0.973,1.027,0.99,1.029,1.007,1.071,0.865,0.983,1.004,0.94,0.941,1.033,1.144,1.068,1.048,0.935,0.995,0.971,0.99,0.94,1.037,1.084,0.985,1.111,1.079,1.223,1.182,1.007,0.974,1.022,1.128,1.122,0.991,1.109,1.165,0.842,1.035,1.019,0.937,1.067,0.982,0.945,0.925,0.967,1.143,0.904,0.936,0.93,0.854,1.029,1.09 +NM_033046,0.691,0.909,1.065,0.607,0.925,0.904,0.505,0.402,1.427,1.591,1.007,0.835,0.569,0.605,0.886,1.814,0.626,0.656,0.898,1.24,0.561,0.653,1.862,1.181,0.605,0.804,1.278,0.663,0.387,1.0,0.986,1.879,2.82,0.846,0.318,2.071,1.133,0.721,1.081,2.874,1.104,1.049,1.062,2.823,0.9,1.076,1.501,0.531,0.923,0.763,1.271,0.968,0.981,1.93 +NM_033048,1.071,0.893,0.979,1.091,1.115,1.005,1.091,1.02,1.017,0.992,0.829,0.916,1.093,0.969,0.772,0.916,1.004,1.243,0.849,1.123,0.989,1.187,1.248,1.023,0.996,1.062,0.987,1.245,0.979,0.973,0.954,0.992,1.053,1.021,1.12,0.936,0.92,0.999,1.125,1.106,0.989,1.022,0.786,1.078,0.903,1.077,1.071,0.982,1.085,0.962,0.944,1.164,1.0,1.086 +NM_033049,0.104,1.31,0.111,0.702,0.115,3.111,0.549,0.0998,0.116,0.1,3.021,0.112,0.118,0.0981,2.436,5.371,0.116,1.21,0.108,2.4,0.103,0.106,4.457,0.113,0.329,0.109,0.0981,0.112,0.341,3.807,0.104,1.117,2.094,0.942,0.153,4.329,3.79,0.106,3.735,2.108,0.0966,2.78,4.098,1.664,0.176,3.832,1.069,0.107,5.51,0.118,2.872,1.064,0.138,1.08 +NM_033050,0.93,0.898,0.965,1.055,1.201,0.906,0.967,1.056,0.983,1.039,1.044,0.98,0.946,1.002,1.137,0.936,0.957,0.926,1.087,0.972,0.908,0.799,0.962,1.007,1.122,0.923,0.869,1.011,1.086,0.997,1.058,1.424,1.086,1.083,1.025,1.012,1.219,0.952,0.902,0.994,1.046,0.94,1.148,1.045,1.138,0.985,0.905,0.865,0.986,1.073,0.855,1.028,1.177,1.067 +NM_033051,0.999,0.88,1.063,0.928,1.021,0.978,0.883,1.035,1.186,1.149,0.958,0.903,0.937,0.996,1.09,1.066,0.986,0.94,1.071,0.963,0.987,1.237,0.928,0.943,0.936,1.076,1.052,1.169,1.081,1.072,1.165,1.071,0.944,1.047,0.927,0.858,0.985,1.403,0.933,1.038,1.057,1.126,1.088,1.077,1.016,0.888,0.939,1.111,0.917,0.958,0.977,0.868,1.031,0.973 +NM_033052,1.229,1.006,0.971,1.025,0.937,1.088,0.885,0.932,0.971,1.048,1.078,0.918,1.141,0.767,0.689,1.086,1.244,0.86,0.858,1.026,0.887,1.133,1.105,0.924,0.974,0.969,0.904,1.056,0.869,1.024,1.179,1.103,0.966,0.994,0.911,0.954,0.982,1.044,1.142,0.864,0.909,0.979,1.048,0.993,1.11,0.922,1.239,1.086,0.905,1.091,0.989,1.151,1.009,0.939 +NM_033053,1.187,1.001,0.908,0.846,1.041,0.959,0.856,0.988,1.082,1.05,0.936,1.077,0.975,0.941,1.075,1.164,0.989,0.927,1.012,0.996,1.171,0.928,0.991,1.011,0.98,1.034,1.052,1.195,0.99,0.911,1.102,1.406,1.153,1.037,0.975,1.092,1.037,1.026,0.928,0.962,1.054,1.072,1.074,1.072,0.921,0.985,0.983,0.955,1.054,1.078,0.997,0.997,1.029,0.986 +NM_033055,0.656,1.008,1.098,0.713,0.879,1.274,0.887,0.791,1.568,0.935,0.884,0.888,0.819,0.731,1.016,1.439,0.682,1.004,1.123,0.92,0.58,0.801,1.462,1.289,0.589,0.572,1.263,1.082,0.536,1.101,1.024,1.336,2.357,1.222,0.548,0.716,1.047,0.82,1.229,0.668,1.092,1.26,0.7,0.831,0.895,0.943,1.021,0.656,0.926,0.865,1.052,0.982,0.872,2.412 +NM_033056,1.04,1.118,0.948,0.949,0.965,1.003,0.873,0.948,0.973,0.922,0.859,0.988,0.939,1.132,1.213,0.909,1.013,1.093,0.978,1.09,0.972,0.987,1.119,0.995,1.008,0.887,1.105,0.92,1.354,0.866,0.974,1.087,0.933,0.983,0.971,0.898,1.023,1.027,1.19,0.967,0.955,0.925,1.198,1.056,1.05,1.0,0.904,1.067,1.036,1.026,0.925,1.087,0.918,0.941 +NM_033057,0.94,0.973,1.105,0.894,0.897,1.07,0.708,1.012,1.005,1.022,0.982,1.152,1.023,1.052,0.893,1.07,1.003,0.995,1.045,0.992,1.159,0.847,0.981,0.932,0.955,1.017,1.138,1.081,0.945,0.937,0.886,0.943,1.117,1.156,1.053,0.947,1.024,0.975,1.03,0.941,1.052,0.939,0.733,1.028,0.953,0.753,0.958,0.881,1.097,0.991,1.084,0.921,1.027,1.01 +NM_033058,0.919,0.996,0.974,0.925,0.959,1.017,0.963,0.945,0.928,0.947,0.977,0.994,1.011,0.989,1.064,0.81,1.1,1.045,1.012,1.002,1.135,0.937,0.939,0.973,1.02,1.066,0.966,1.045,0.836,1.116,0.938,0.825,1.002,1.04,1.0,0.991,1.134,1.001,1.006,0.996,1.04,0.804,0.911,0.996,1.05,0.918,0.956,0.954,1.049,0.907,0.966,0.825,0.949,0.957 +NM_033059,1.035,0.974,0.979,0.943,1.001,1.09,1.035,1.005,1.022,0.877,0.999,1.107,1.028,0.971,1.019,1.031,0.96,1.108,1.096,1.094,0.96,0.933,0.995,1.078,0.998,0.986,1.026,1.011,1.225,0.998,1.127,1.062,1.065,1.074,0.991,1.009,1.047,1.065,0.868,1.041,0.97,1.08,1.093,0.96,0.951,1.079,0.978,1.045,0.955,1.168,0.969,0.855,1.098,0.966 +NM_033062,1.008,0.938,0.999,1.092,0.903,0.918,1.202,0.807,0.997,0.988,0.914,1.008,1.121,1.249,1.013,1.06,1.223,0.927,0.87,1.183,1.22,0.867,1.071,0.936,0.948,0.879,1.115,0.96,1.464,0.924,0.955,1.011,1.062,0.997,1.195,0.969,0.973,0.752,1.02,0.937,1.06,0.943,1.015,1.011,0.97,1.179,0.911,0.977,0.995,1.087,1.029,1.055,0.96,0.933 +NM_033066,1.066,0.8,0.967,1.027,0.907,1.086,0.917,0.902,1.013,0.863,1.009,1.13,0.986,0.946,0.964,0.781,1.058,0.999,1.016,1.049,1.046,1.046,1.054,1.115,1.056,0.951,0.861,0.966,0.965,1.108,0.904,0.971,0.971,0.847,0.981,0.913,0.877,1.014,1.082,1.034,0.872,1.119,1.086,0.977,0.912,0.953,0.931,1.062,1.077,1.132,0.997,1.117,0.853,0.919 +NM_033067,1.184,0.963,1.068,1.125,1.032,1.012,0.865,0.923,1.046,1.139,1.092,0.933,1.004,0.854,1.077,0.939,0.962,0.919,1.065,0.848,1.018,0.989,0.966,0.968,0.956,1.13,0.99,1.087,0.747,0.994,0.915,1.126,0.923,1.013,0.981,1.143,1.095,0.982,1.136,1.067,1.119,0.901,0.914,0.983,1.04,0.916,0.949,1.16,1.063,1.033,0.988,0.984,1.076,0.889 +NM_033069,1.047,1.123,1.094,0.902,1.164,0.97,1.079,1.154,0.956,1.038,0.933,0.999,1.031,0.883,1.026,1.07,1.022,0.921,0.976,1.022,0.889,1.063,0.976,0.953,0.971,0.968,0.828,0.94,1.262,1.012,1.044,1.105,0.93,0.943,0.992,1.013,0.954,1.061,0.929,0.872,0.992,1.149,1.198,0.91,0.931,0.943,1.024,1.114,0.981,1.143,1.0,0.962,0.948,1.341 +NM_033071,1.064,1.017,1.014,1.081,1.001,1.032,0.936,0.938,0.968,1.042,0.938,1.044,1.007,1.162,0.872,1.044,1.097,0.889,1.05,1.006,0.905,1.039,1.243,1.062,0.979,0.887,1.048,0.946,1.011,0.919,0.882,0.96,1.118,1.066,0.97,0.95,1.071,0.983,0.889,0.888,1.088,0.967,0.833,1.089,1.056,0.936,0.858,0.974,1.001,0.756,1.155,1.161,1.398,0.899 +NM_033082,0.761,0.833,1.216,0.85,0.977,1.332,0.572,0.727,1.29,1.058,1.121,1.265,0.848,0.709,1.037,1.668,0.824,1.046,1.33,1.133,0.455,0.922,1.065,1.27,0.604,0.859,1.362,0.916,0.338,1.138,0.978,1.301,1.499,1.316,0.324,1.158,1.044,0.883,1.205,0.908,1.181,0.896,0.609,1.462,1.053,0.975,1.201,0.906,0.91,0.75,0.938,0.875,1.19,1.331 +NM_033083,0.955,1.008,1.003,1.058,0.909,1.142,1.058,1.015,0.958,0.999,0.906,1.059,0.977,0.915,1.083,0.961,1.064,0.968,0.984,0.974,1.085,0.959,1.071,1.007,0.921,0.966,0.986,1.036,1.246,0.915,0.982,1.003,1.061,1.044,1.056,0.866,1.064,1.094,1.065,1.016,1.101,1.113,0.977,1.072,0.945,0.976,1.083,0.883,1.076,1.031,1.057,0.905,0.986,1.144 +NM_033086,0.993,0.836,1.353,1.093,0.995,0.952,0.89,0.876,0.945,0.818,0.905,0.88,1.134,1.079,0.905,0.957,1.046,0.937,1.003,0.895,0.872,1.003,0.939,0.942,0.999,0.86,1.115,1.037,0.778,0.999,1.164,1.239,1.184,1.08,0.874,1.52,0.854,0.932,1.266,1.29,0.993,1.055,1.034,1.132,1.058,0.946,0.885,0.985,0.905,0.973,0.888,0.979,1.099,1.897 +NM_033087,0.504,1.373,0.79,0.946,0.662,1.469,0.848,0.351,0.709,0.776,1.183,0.715,0.525,0.397,0.898,1.858,0.634,0.987,0.844,1.324,0.391,0.598,1.672,0.949,0.698,0.527,0.965,0.677,0.508,1.487,0.577,2.369,1.589,1.541,0.144,0.854,1.573,0.561,1.529,0.874,0.732,1.518,0.734,1.107,0.94,1.339,0.753,0.585,1.294,0.589,1.552,1.175,0.594,1.853 +NM_033088,1.032,1.044,1.033,1.203,0.891,0.938,1.05,0.905,1.016,1.133,1.128,1.006,1.078,0.938,1.047,1.104,1.001,1.092,0.907,0.977,1.053,0.981,1.018,0.874,0.969,0.948,1.097,0.809,1.187,0.912,0.87,0.946,1.036,0.93,0.97,1.003,1.0,1.141,1.202,0.833,1.059,1.073,0.976,0.924,1.003,0.998,0.995,1.041,0.879,1.093,0.927,1.045,0.885,1.074 +NM_033089,0.832,0.931,0.861,0.842,1.049,0.948,0.981,0.728,0.998,1.05,0.999,0.748,0.873,0.699,0.882,1.023,0.916,0.9,0.902,0.964,0.749,0.957,1.301,0.97,1.015,0.903,0.893,0.896,0.821,1.18,0.852,1.335,1.72,1.335,0.897,0.946,1.001,1.115,1.103,1.393,0.876,1.243,0.765,1.291,0.934,1.05,0.905,0.906,0.954,0.817,1.021,0.929,0.911,1.568 +NM_033090,1.121,0.92,0.99,0.981,0.853,0.927,0.971,0.872,0.909,1.031,1.091,0.977,1.007,1.049,0.78,1.025,0.887,1.199,0.912,0.992,1.133,0.972,0.897,0.925,1.019,0.837,0.918,1.01,0.787,1.055,0.968,1.042,0.825,0.999,1.041,1.094,1.028,1.238,1.09,0.984,1.121,0.956,0.78,1.169,1.074,0.915,1.14,1.037,1.014,0.964,1.03,1.056,0.913,1.138 +NM_033091,0.707,1.214,1.642,0.522,0.861,0.778,0.918,0.597,0.866,0.903,1.227,0.932,0.621,0.593,1.006,1.4,0.71,1.011,0.964,1.202,0.646,0.761,1.791,1.071,0.707,0.644,1.323,0.837,0.508,2.116,1.046,1.626,1.967,1.073,0.237,0.82,1.405,1.015,0.992,1.163,1.132,1.74,0.785,0.971,0.778,1.389,0.821,0.622,0.646,0.719,1.319,1.097,0.889,1.217 +NM_033092,2.0060000000000002,2.0220000000000002,1.866,2.019,1.964,2.0,2.005,1.94,1.778,1.927,2.105,1.949,2.0940000000000003,1.878,1.972,2.112,2.0,1.964,1.971,2.027,2.16,1.862,2.02,2.1319999999999997,1.738,1.8719999999999999,2.07,1.991,2.0869999999999997,2.043,2.009,1.763,2.033,2.0389999999999997,1.812,1.8860000000000001,1.973,1.946,2.115,2.061,1.992,2.157,2.191,1.876,2.117,2.3920000000000003,2.1479999999999997,1.948,2.207,1.877,2.122,2.2880000000000003,2.05,2.155 +NM_033100,1.096,0.866,1.451,0.885,1.066,0.86,0.819,0.905,0.909,1.377,0.922,1.221,1.031,0.999,1.276,1.015,1.199,1.104,1.153,1.063,1.087,1.138,0.966,1.132,0.915,1.122,1.19,1.015,0.936,0.958,1.1,0.877,0.961,0.921,1.05,0.848,0.855,1.358,0.948,0.914,1.006,0.949,0.858,0.929,1.166,0.932,1.077,1.28,0.928,1.031,0.99,0.882,1.149,0.929 +NM_033101,1.153,0.966,0.89,1.057,1.039,0.948,1.05,0.882,1.069,0.852,0.974,0.984,1.048,1.014,0.929,0.991,0.937,1.106,1.018,1.008,1.019,1.067,0.954,0.936,0.958,0.869,0.989,1.098,1.209,0.941,1.142,0.926,0.965,0.943,1.151,1.01,0.982,0.89,0.957,0.964,0.972,1.017,1.199,1.057,0.949,1.065,1.036,1.034,0.882,0.955,1.026,1.088,1.065,0.997 +NM_033102,0.548,1.735,0.654,1.316,0.501,3.049,1.743,0.461,0.629,0.564,1.719,0.574,0.577,0.487,0.999,1.88,0.845,1.948,0.584,2.202,0.457,0.542,3.152,0.582,1.472,0.621,0.639,0.617,1.711,3.661,0.607,1.362,0.635,3.356,0.561,1.149,1.939,0.576,3.066,0.854,0.585,2.074,0.962,0.976,0.633,2.068,0.731,0.504,1.655,0.604,2.091,0.811,0.529,0.848 +NM_033103,0.118,1.172,0.129,0.88,0.123,2.21,1.084,0.0988,0.136,0.116,1.176,0.123,0.0998,0.122,0.646,1.657,0.0983,1.057,0.139,1.398,0.118,0.133,2.148,0.117,0.727,0.113,0.123,0.111,0.743,1.579,0.126,0.644,1.518,1.856,0.117,1.02,1.418,0.101,2.026,1.124,0.121,1.319,3.395,1.376,0.141,1.897,1.04,0.114,1.834,0.112,1.213,0.766,0.133,3.38 +NM_033104,1.03,0.906,1.065,0.815,0.992,0.936,0.991,1.164,1.072,1.096,1.025,0.915,1.029,1.217,0.996,0.932,1.189,1.036,0.9,0.98,0.999,1.024,1.177,0.981,1.02,0.988,0.884,1.014,1.267,1.027,1.154,0.927,1.001,1.037,1.09,1.054,0.986,0.998,0.894,0.95,0.995,0.967,1.452,1.029,1.291,0.973,1.041,1.07,0.91,0.954,1.062,0.963,0.908,1.003 +NM_033105,1.061,0.906,1.136,0.997,1.086,0.935,1.126,1.152,1.14,0.892,0.952,0.939,1.031,1.076,0.992,1.009,0.93,0.873,1.006,0.887,0.985,0.931,1.077,1.043,0.995,1.0,0.835,1.087,1.263,0.97,0.928,1.029,1.03,0.97,1.0,1.078,0.972,1.096,0.893,1.178,0.93,1.044,1.043,1.119,0.966,1.019,0.869,0.933,0.911,1.12,0.88,1.046,0.937,1.084 +NM_033106,0.921,0.89,1.089,1.003,1.004,0.892,0.948,0.989,1.079,0.882,1.007,1.001,0.994,0.938,1.169,0.967,0.981,1.016,1.033,0.902,1.029,1.1,0.934,1.11,1.011,0.859,0.963,0.871,1.674,1.173,1.024,1.066,1.037,0.986,1.093,0.971,0.966,0.971,1.069,0.998,1.01,1.227,1.034,1.132,0.998,0.966,1.132,0.971,1.161,0.958,1.015,0.973,0.956,0.918 +NM_033109,0.944,0.98,1.016,0.861,0.927,1.089,0.891,0.938,0.996,1.016,1.002,0.895,0.953,0.922,0.824,1.08,0.946,1.054,0.967,0.98,0.843,0.965,1.303,1.052,0.925,0.892,1.069,0.965,0.955,1.037,0.911,1.041,1.167,1.208,0.849,1.136,1.144,0.956,1.02,0.992,0.923,1.021,0.977,0.954,1.019,1.051,0.928,0.893,1.193,0.792,1.009,1.024,1.039,1.629 +NM_033110,0.737,1.466,0.91,0.847,0.812,1.475,0.906,0.695,0.708,0.741,1.245,0.792,0.803,0.623,0.949,1.79,0.835,1.622,0.688,1.335,0.663,0.755,1.707,0.863,0.845,0.706,1.058,0.822,0.759,1.624,0.758,1.121,1.062,1.278,0.655,1.159,1.339,0.731,0.994,0.782,0.808,1.221,1.0,1.074,0.945,1.602,1.145,0.669,1.266,0.783,1.265,0.746,0.829,1.128 +NM_033111,0.942,0.926,1.698,0.972,1.046,0.982,0.794,0.863,1.124,1.169,0.843,1.009,0.841,1.072,1.176,1.137,1.256,0.751,0.951,1.245,0.833,0.905,0.949,1.041,0.852,0.982,1.17,0.769,0.699,1.072,0.911,3.133,1.194,0.94,0.707,0.86,0.86,1.313,0.98,1.451,0.951,1.069,0.791,0.797,0.801,0.755,1.284,0.755,1.005,0.998,1.012,1.134,1.236,1.574 +NM_033112,0.552,0.974,1.163,0.69,1.126,1.003,0.599,0.524,1.184,1.286,0.755,1.274,0.618,0.538,0.768,1.28,0.952,0.933,1.06,0.991,0.452,0.828,1.33,1.37,0.479,0.727,1.112,0.899,0.414,0.919,0.748,1.507,1.506,1.014,0.266,1.323,1.096,1.033,1.519,1.092,1.066,0.877,0.769,1.341,1.34,1.037,1.331,0.711,0.938,0.918,1.126,1.05,1.065,2.258 +NM_033115,0.751,1.408,1.538,0.787,1.275,1.145,0.795,0.86,1.189,1.189,1.043,1.169,0.933,0.822,0.779,1.282,1.034,0.805,1.317,1.127,0.672,1.817,1.032,1.257,0.783,0.699,1.575,1.589,0.649,1.142,1.126,1.425,1.191,1.105,0.414,0.774,1.178,1.089,1.255,0.892,1.452,0.96,0.769,0.951,0.891,0.938,0.796,0.707,0.834,0.697,1.001,1.106,0.899,0.927 +NM_033117,0.647,0.769,1.077,0.894,0.89,1.073,0.845,0.686,1.088,1.1,0.997,0.817,0.72,1.012,1.07,1.652,0.959,1.05,1.44,0.672,0.821,0.818,1.066,1.161,0.633,0.739,1.229,0.929,0.554,1.059,1.03,1.152,2.604,1.143,0.586,0.781,1.117,0.847,1.271,0.748,1.038,0.85,0.766,1.107,0.918,1.123,1.301,0.756,1.155,0.761,1.026,0.9,1.259,1.838 +NM_033118,0.929,0.975,1.016,1.057,1.049,1.137,1.009,0.872,1.055,1.161,0.878,1.084,1.046,0.948,1.02,0.924,1.114,1.03,1.026,1.166,0.914,1.058,1.004,1.018,0.854,0.953,0.897,0.992,1.139,1.017,0.906,1.11,1.149,1.002,1.015,0.928,1.074,1.016,1.086,0.887,1.04,0.87,0.876,1.075,1.079,0.897,1.017,1.084,0.966,0.946,0.981,1.055,0.984,1.038 +NM_033119,0.938,0.944,0.962,1.038,0.988,1.016,1.044,0.911,0.906,1.003,0.936,1.044,0.99,1.102,0.778,0.824,0.988,1.001,1.007,0.933,1.034,1.022,0.888,1.046,0.841,0.926,0.878,1.108,1.139,1.028,1.009,1.079,1.223,0.885,0.929,1.094,1.037,0.926,0.933,0.839,1.066,0.92,1.11,1.173,0.868,1.076,0.85,0.809,1.122,0.971,1.019,0.987,1.015,1.077 +NM_033120,0.829,1.226,0.925,1.136,0.702,1.009,0.971,0.855,0.999,0.932,0.977,0.859,0.913,0.875,0.742,0.898,0.902,1.108,0.764,1.307,0.858,0.977,0.996,0.957,0.818,0.945,0.905,0.773,0.615,1.495,0.717,6.638,9.711,1.504,0.924,2.339,1.286,0.981,1.142,4.693,0.876,1.269,0.739,3.82,0.982,0.746,0.996,0.92,1.001,0.844,0.969,1.165,0.839,1.635 +NM_033121,0.681,0.598,2.181,0.594,1.473,0.99,0.519,1.358,2.181,0.802,0.68,1.004,1.16,0.878,1.425,1.305,1.468,0.832,1.853,0.834,0.744,1.07,0.857,1.15,0.414,0.991,1.863,1.468,0.391,1.024,1.967,1.216,1.629,0.976,2.781,0.51,0.765,1.45,0.636,0.932,1.628,0.78,0.51,0.545,1.228,0.609,1.138,1.521,0.695,1.168,0.86,0.664,1.18,1.511 +NM_033122,1.064,0.912,0.995,1.089,0.871,1.096,1.237,1.017,1.071,1.0,0.976,0.995,0.978,0.83,0.877,0.95,0.881,0.95,0.97,1.107,1.026,1.07,1.061,0.979,0.922,1.003,1.053,1.003,0.976,1.162,0.986,0.973,0.923,1.027,0.959,1.041,1.056,0.904,0.918,1.008,1.066,1.054,0.987,0.938,1.041,1.067,1.096,0.911,1.061,0.964,1.031,1.185,1.092,0.9 +NM_033123,0.938,0.87,1.004,1.032,0.977,0.941,0.856,1.175,0.834,0.943,0.988,1.066,1.095,1.172,0.825,1.015,0.988,0.954,0.907,0.988,1.194,1.028,1.001,0.951,1.061,0.952,1.066,1.047,1.499,1.104,1.053,1.048,0.953,1.082,0.973,0.974,0.958,1.051,0.902,0.907,0.85,0.977,1.206,0.999,0.915,1.061,0.989,1.052,1.133,0.912,0.931,1.054,0.857,0.973 +NM_033124,0.942,1.01,1.135,0.961,1.076,0.95,0.902,1.009,0.974,0.984,1.184,1.103,0.976,1.021,0.925,0.826,0.97,1.111,1.078,0.927,1.107,0.981,0.929,1.113,1.022,1.031,0.974,0.938,0.803,1.067,1.077,1.014,0.97,1.068,0.991,0.974,0.991,1.118,1.011,0.933,1.154,0.946,1.079,0.9,0.797,0.975,0.97,0.999,0.94,1.088,1.069,0.88,0.952,1.026 +NM_033125,0.884,1.043,1.132,0.906,1.14,1.011,0.987,1.085,1.058,0.926,1.089,1.056,0.99,1.021,1.127,1.075,1.019,0.932,0.914,0.993,0.957,1.036,0.935,1.112,0.943,0.958,1.045,1.071,1.16,1.185,1.168,0.938,1.0,0.939,1.189,0.993,1.11,0.975,0.983,1.069,1.081,1.033,1.232,1.128,0.971,1.114,0.918,1.059,0.968,0.989,0.937,0.817,0.92,0.97 +NM_033126,1.015,1.059,0.973,1.039,0.768,1.006,1.003,1.027,0.958,1.098,0.934,0.933,0.919,1.008,0.84,0.851,0.957,1.034,1.087,1.014,1.087,0.951,1.223,1.126,1.038,1.005,0.881,1.024,0.833,0.932,1.035,0.933,0.958,0.954,1.025,0.981,1.112,1.0,1.073,0.965,0.91,1.001,1.135,1.102,1.076,1.0,0.977,0.977,0.934,1.052,0.987,0.929,1.029,1.072 +NM_033127,0.928,1.086,0.911,1.012,1.039,1.11,0.917,0.822,0.862,0.827,1.402,0.919,0.9,0.984,1.039,1.364,0.92,1.031,0.896,1.001,0.886,0.983,1.289,1.059,1.026,0.874,0.91,0.879,1.148,0.969,0.929,1.06,1.015,1.123,0.968,0.837,1.217,0.931,1.077,1.079,0.993,1.159,1.201,0.89,0.993,1.222,1.063,0.944,1.097,0.829,1.139,0.963,0.979,1.102 +NM_033131,1.236,0.984,1.125,0.982,1.337,0.913,1.053,1.058,1.309,1.454,0.949,1.191,1.085,1.163,1.001,1.12,1.258,1.149,1.534,0.865,1.062,1.195,0.833,1.395,0.849,1.398,1.495,1.181,0.713,0.84,1.308,0.828,1.121,0.916,0.809,0.862,0.948,1.214,0.879,0.929,1.49,0.897,0.914,0.925,1.508,0.995,1.442,1.365,0.961,1.307,0.849,0.923,1.249,1.041 +NM_033132,1.069,1.117,0.96,1.041,0.988,0.999,0.942,0.978,0.982,1.201,0.966,0.902,1.037,0.955,0.845,1.082,0.969,1.006,1.174,1.063,0.926,1.04,1.146,0.966,0.993,1.036,0.898,1.001,1.016,0.942,1.015,0.986,1.107,0.936,1.035,0.944,1.016,1.088,1.029,0.955,1.236,0.916,1.141,1.158,0.875,1.246,1.051,1.12,1.069,0.863,1.156,0.992,0.915,1.098 +NM_033133,0.862,0.831,1.376,0.849,0.805,1.311,0.77,0.414,0.789,0.99,0.943,0.756,0.692,0.546,0.765,0.944,1.077,0.855,1.293,0.957,0.908,0.663,1.208,0.75,0.735,1.169,1.395,0.82,0.605,1.4,0.679,1.961,2.089,1.713,0.366,0.91,1.152,0.691,1.662,0.824,0.894,1.203,0.587,2.652,1.072,0.734,0.825,0.844,0.789,1.066,0.886,1.114,1.443,1.891 +NM_033135,0.762,1.843,0.893,1.022,0.768,1.382,1.37,0.87,0.83,0.822,1.177,0.926,0.783,0.656,1.146,0.999,0.707,0.852,0.891,1.256,0.757,0.876,1.467,0.784,1.931,0.681,0.826,0.857,0.78,3.658,0.831,1.801,0.966,2.266,0.809,0.783,1.54,0.835,1.185,0.802,0.825,2.152,1.055,1.001,0.855,1.605,0.811,0.893,0.766,0.77,1.136,0.978,0.842,0.91 +NM_033138,0.719,1.211,0.834,0.8,0.783,1.443,1.177,0.952,0.766,1.062,2.059,0.8,0.706,0.869,0.914,1.329,0.875,0.886,0.816,1.504,1.027,0.842,2.071,0.828,0.968,0.834,0.889,3.005,1.011,2.597,0.809,2.975,1.567,2.216,0.901,1.054,0.75,1.63,1.691,1.107,4.794,3.542,1.151,0.762,0.808,1.169,1.176,0.78,0.991,0.848,1.582,1.114,0.881,0.864 +NM_033140,0.808,0.947,0.852,0.753,0.75,0.979,0.936,0.871,0.889,0.994,0.919,0.927,0.861,0.757,0.817,1.186,0.904,0.841,0.868,0.855,1.016,0.767,1.935,0.975,1.021,0.837,1.244,1.215,0.917,1.681,0.999,6.603,1.866,1.596,0.643,0.891,0.828,1.071,1.242,1.705,1.406,2.441,0.839,0.892,1.038,0.986,1.021,0.764,0.858,0.927,1.458,1.595,1.133,0.941 +NM_033142,1.091,1.017,0.933,1.033,0.955,0.978,0.898,0.967,0.924,0.935,1.119,0.997,0.996,1.059,1.005,1.142,0.948,1.006,0.935,0.98,1.091,1.045,1.076,1.029,1.004,1.067,0.904,0.972,1.389,1.094,1.102,1.082,0.928,0.854,0.905,1.079,1.012,0.999,0.9,1.054,0.945,0.926,0.994,0.928,1.108,1.075,1.022,1.003,1.012,0.995,0.973,0.95,0.871,0.93 +NM_033143,1.083,1.004,0.996,0.904,1.227,0.859,1.139,0.945,0.935,1.065,0.904,1.092,0.989,1.064,0.891,0.974,0.973,0.926,0.97,0.973,1.074,1.178,1.115,0.983,1.077,1.023,0.881,0.88,1.231,1.002,1.079,1.138,1.003,0.944,1.245,0.988,1.104,1.002,1.112,0.831,1.052,1.042,1.155,1.022,1.179,1.121,1.103,0.99,1.068,0.926,0.971,1.107,0.964,0.872 +NM_033148,0.94,1.451,1.563,0.702,1.026,0.791,0.676,0.911,1.118,1.234,0.735,1.072,0.994,0.971,0.692,0.738,0.994,0.952,1.211,1.06,0.813,0.872,0.702,0.98,1.337,1.026,1.189,1.06,0.489,0.733,0.972,1.054,2.535,1.18,0.815,0.596,0.641,1.364,0.678,1.451,1.041,1.686,0.592,0.847,0.996,0.577,1.009,1.063,0.608,1.017,0.735,0.728,1.239,1.56 +NM_033150,0.981,1.326,0.813,0.653,0.955,1.081,1.014,1.244,1.111,1.175,0.988,1.002,0.87,0.755,1.181,0.837,0.898,0.94,0.964,0.921,0.932,1.168,0.88,1.209,2.812,0.932,0.81,0.982,0.811,1.247,1.01,1.128,1.007,2.005,0.892,0.939,1.19,0.742,1.06,2.847,0.854,0.984,1.104,0.855,0.906,0.811,1.063,1.018,0.962,1.172,0.875,1.095,0.872,1.021 +NM_033151,1.05,0.937,1.074,0.988,1.088,1.04,0.857,0.856,1.067,0.93,1.019,1.002,1.014,1.063,0.833,0.926,0.977,1.037,1.152,1.239,0.877,0.995,0.899,1.073,1.012,0.95,0.913,1.097,0.885,0.972,1.071,1.094,0.993,0.988,0.987,0.956,1.033,0.968,0.903,1.176,0.958,0.873,0.983,1.056,0.991,1.01,1.053,1.056,0.974,0.907,1.043,0.859,1.029,0.965 +NM_033154,0.886,1.071,1.091,0.944,1.008,1.199,0.992,0.968,0.999,1.02,1.064,1.033,1.03,1.172,0.887,1.046,0.919,1.074,1.205,0.963,1.024,0.934,0.964,1.025,0.957,1.022,1.056,1.108,0.681,1.021,1.032,0.995,1.185,1.04,1.126,0.929,1.077,1.0,0.992,1.0,1.014,1.009,0.987,1.083,1.095,0.962,1.177,1.06,0.958,0.999,0.997,1.091,0.972,0.916 +NM_033160,1.036,0.898,1.405,0.983,1.077,1.049,0.936,1.032,1.161,1.03,1.112,1.203,1.222,1.078,1.043,1.166,0.962,0.858,1.108,0.932,0.781,1.104,1.018,1.225,0.948,0.909,1.28,1.087,1.003,0.864,1.14,1.111,1.281,1.063,0.815,0.798,0.921,1.145,0.961,0.737,1.136,1.164,0.776,0.846,1.082,0.906,0.831,0.847,0.903,0.967,0.911,0.862,0.957,1.466 +NM_033161,0.588,0.851,0.751,0.998,0.512,1.212,0.703,0.302,0.827,0.668,1.669,0.404,0.478,0.447,1.305,2.406,0.604,1.038,1.058,0.962,0.384,0.499,1.515,0.689,0.974,0.892,0.859,0.548,0.428,1.493,0.614,1.719,1.075,1.453,0.13,1.177,1.914,0.565,1.857,1.142,0.775,1.394,0.906,1.437,0.758,1.328,0.986,0.718,1.215,0.749,1.356,1.022,0.741,1.265 +NM_033165,1.033,1.069,0.972,0.994,0.888,0.961,1.157,0.921,1.017,1.098,1.16,1.051,0.926,0.986,1.053,1.102,1.122,1.035,0.986,0.815,1.012,1.014,1.073,1.072,1.054,0.965,0.938,0.89,0.897,0.991,1.099,0.962,1.0,0.963,0.906,1.037,1.193,0.93,1.002,1.04,0.992,0.974,1.009,1.038,1.034,1.14,0.933,1.048,1.078,1.077,1.071,1.088,1.157,0.978 +NM_033168,0.958,1.088,1.033,0.965,0.944,0.966,0.986,0.998,1.106,1.034,1.078,1.023,1.098,1.031,0.976,0.941,1.185,1.013,1.171,1.126,0.971,0.977,1.01,0.872,0.978,0.988,0.877,0.934,1.02,0.963,1.0,0.948,1.052,1.059,0.976,0.993,1.11,0.995,0.927,1.09,1.056,0.831,1.207,0.923,1.052,0.96,0.889,0.993,0.999,0.849,0.977,1.291,0.953,1.059 +NM_033169,1.998,2.2569999999999997,1.756,1.935,1.794,1.814,1.875,2.025,2.2359999999999998,1.599,2.1020000000000003,2.13,1.9969999999999999,1.871,1.968,2.158,2.082,1.816,2.027,1.999,1.7970000000000002,1.867,2.181,1.8239999999999998,2.074,2.0869999999999997,2.211,2.118,2.8680000000000003,2.166,2.0629999999999997,2.27,2.5380000000000003,2.06,1.8479999999999999,2.3040000000000003,1.7930000000000001,1.6840000000000002,2.26,2.133,1.9220000000000002,2.067,2.454,1.847,2.124,1.851,1.904,2.157,1.803,2.005,1.9689999999999999,2.043,1.778,2.149 +NM_033170,0.81,0.892,0.898,1.273,0.931,1.518,1.509,0.913,0.894,0.653,1.62,0.83,0.971,0.868,0.99,1.724,0.857,1.188,0.761,1.535,0.762,0.705,1.683,0.794,0.901,0.937,0.81,0.73,1.074,1.26,0.773,0.85,0.737,1.632,0.911,1.526,1.551,0.939,1.932,0.759,0.742,1.525,0.882,1.025,0.689,1.73,1.01,0.923,0.849,0.932,1.99,0.945,0.669,0.885 +NM_033173,1.002,0.946,1.107,0.886,0.998,0.979,0.938,1.039,0.998,1.155,1.006,1.19,0.922,0.919,1.06,1.025,1.01,1.055,0.939,0.928,1.107,0.933,0.877,0.967,1.107,1.033,1.112,1.006,0.738,0.982,1.032,1.038,0.938,1.179,0.971,1.051,0.973,0.929,0.993,1.032,0.889,1.032,0.939,1.066,1.069,0.976,1.079,0.991,1.144,1.12,1.173,0.972,0.958,0.893 +NM_033177,1.079,1.047,0.88,1.067,1.0,1.0,0.911,0.797,0.947,0.877,0.923,0.926,0.861,0.996,0.93,0.897,1.058,1.122,0.85,0.854,1.015,1.066,0.927,0.935,0.938,0.799,0.99,0.839,0.829,1.033,1.002,0.974,1.218,1.203,1.091,0.965,0.944,0.949,1.141,1.063,0.957,1.132,0.978,1.045,1.032,1.014,0.945,1.062,0.897,0.949,1.006,0.911,0.909,1.13 +NM_033178,0.888,1.066,1.055,1.071,1.091,1.077,1.018,0.945,0.902,1.039,0.917,0.802,0.974,0.964,0.925,1.003,1.05,1.103,0.873,1.055,1.024,0.908,1.094,1.052,1.061,0.918,0.87,0.984,0.967,1.062,0.948,1.127,1.093,0.931,1.04,0.905,1.038,1.059,0.989,1.069,0.99,1.041,0.915,0.917,0.964,0.878,1.048,1.12,0.977,1.022,0.983,1.023,0.951,1.052 +NM_033179,0.936,1.012,1.082,1.07,1.102,0.94,1.142,0.964,0.794,1.104,0.878,0.913,0.974,0.796,0.902,1.002,1.062,0.959,0.827,1.012,1.126,1.091,0.989,0.924,0.864,0.892,0.982,0.93,0.828,0.955,1.049,0.896,0.885,0.88,1.042,1.001,1.06,0.904,1.043,0.923,1.154,1.044,1.22,0.994,1.009,0.966,0.953,1.04,0.998,1.146,0.949,1.038,0.871,0.979 +NM_033181,1.037,1.199,1.052,0.963,0.98,1.02,1.002,0.998,0.951,1.111,0.929,0.931,1.04,0.951,1.013,0.959,1.017,0.959,0.971,1.016,0.996,1.004,0.963,1.027,0.961,1.018,1.055,1.103,0.774,0.943,1.034,0.935,1.037,0.959,1.097,0.838,1.085,1.06,1.003,1.074,1.153,0.993,0.942,1.053,1.014,0.989,0.977,1.124,1.002,1.053,1.139,1.042,0.935,0.995 +NM_033182,0.962,1.01,0.98,1.033,1.073,1.013,1.141,0.959,1.065,0.945,0.971,0.95,0.961,0.957,1.053,1.047,0.999,1.014,1.003,0.997,0.986,0.99,0.91,1.172,0.934,0.903,0.863,0.956,0.813,1.08,1.047,0.987,1.02,1.013,1.036,1.0,1.067,0.939,0.998,0.983,0.973,1.029,0.992,1.052,0.986,1.043,1.01,1.0,1.032,0.988,1.003,1.084,1.084,1.062 +NM_033183,1.003,0.939,0.937,1.157,0.959,1.007,1.109,1.053,1.16,0.964,0.884,0.896,1.017,0.88,1.009,0.961,0.93,1.008,1.022,1.05,1.063,1.027,0.927,0.836,1.012,0.961,1.027,0.996,0.809,0.949,1.007,0.934,0.863,0.853,1.0,1.103,1.012,1.078,1.025,1.08,1.077,0.881,1.101,0.9,0.94,1.007,1.121,0.885,0.962,1.0,1.041,0.938,1.029,1.043 +NM_033184,1.082,0.859,1.041,0.976,0.934,0.954,0.925,1.175,1.069,1.064,1.022,0.967,0.949,1.051,0.806,1.095,0.961,0.939,1.097,1.018,1.017,1.115,1.025,0.944,1.182,1.022,0.971,0.993,0.907,0.983,0.89,0.874,1.018,0.948,1.066,1.03,0.916,1.01,1.041,0.898,0.841,1.097,1.045,1.15,1.028,1.068,0.817,1.075,1.05,1.023,1.028,0.975,0.993,0.954 +NM_033185,0.998,1.145,0.89,0.939,0.909,0.898,1.076,0.902,0.942,1.021,1.028,1.066,0.992,0.874,0.847,1.116,0.967,1.085,1.099,1.068,1.021,0.999,1.051,0.869,1.143,1.038,0.953,1.044,1.045,1.074,0.995,0.956,0.855,0.936,1.052,1.117,1.069,1.011,1.029,0.954,0.902,0.908,1.257,1.105,0.886,1.069,0.982,1.051,0.987,1.048,0.986,1.069,1.041,0.969 +NM_033188,1.036,0.925,0.997,1.006,1.017,1.031,1.007,1.04,0.989,1.024,1.182,1.058,0.95,1.051,0.768,0.987,1.035,1.022,1.009,1.023,0.963,1.12,0.881,0.998,0.976,0.97,0.993,1.03,1.289,0.891,1.073,0.979,0.923,0.92,1.106,1.056,0.921,0.88,0.946,1.02,1.025,1.132,1.0,1.053,1.06,1.047,0.964,0.924,0.989,1.072,1.019,1.12,1.086,1.038 +NM_033191,1.045,0.988,1.071,1.02,1.172,0.974,0.88,1.063,0.933,1.037,1.078,1.009,0.899,1.07,0.904,1.116,0.942,1.085,1.055,1.067,1.098,1.099,1.13,1.187,0.984,0.79,0.911,0.999,1.11,0.946,0.998,1.035,1.331,1.041,0.896,0.983,0.972,0.927,1.002,0.918,1.092,1.013,0.881,0.911,0.986,1.033,0.921,1.015,0.953,1.301,1.024,0.936,1.151,1.008 +NM_033194,0.985,1.04,1.081,0.988,0.879,1.121,0.942,0.957,1.068,0.891,0.951,1.003,0.879,0.939,1.208,0.981,1.009,0.857,0.986,0.972,1.009,1.037,0.989,1.008,0.996,0.931,1.065,0.984,0.752,1.051,0.993,0.946,0.952,1.156,0.952,0.941,1.08,1.048,1.026,1.046,0.838,0.929,0.79,1.037,0.987,1.018,0.969,0.926,1.007,0.948,0.956,0.922,0.996,0.996 +NM_033195,1.072,0.973,0.928,1.155,0.916,0.931,1.057,0.963,1.038,0.897,0.938,1.029,0.953,0.812,0.987,0.934,0.993,0.879,1.05,1.004,1.024,0.884,0.989,1.098,0.98,0.978,0.812,1.053,1.298,1.026,1.044,0.961,1.014,1.014,0.967,1.059,0.921,0.998,1.081,1.09,0.953,0.937,1.049,0.986,1.008,1.038,0.889,0.945,0.953,0.96,1.061,1.062,0.964,1.151 +NM_033196,0.839,1.044,1.084,0.861,1.02,1.06,0.924,0.952,0.951,1.008,0.956,1.012,0.925,1.034,0.817,1.155,1.05,1.072,0.96,0.94,0.992,1.15,1.097,1.018,0.907,0.98,0.839,0.963,1.618,0.868,1.21,1.142,0.863,0.859,1.054,0.867,1.171,0.91,0.956,1.023,0.938,1.1,0.936,0.951,1.066,1.27,0.992,1.089,1.009,1.088,0.986,1.071,1.23,0.958 +NM_033197,0.673,102.1,0.595,82.67,0.706,6.067,50.43,0.603,0.679,0.63,0.917,0.665,1.523,0.605,0.667,0.632,0.646,55.1,0.591,63.0,0.622,0.691,0.656,0.638,6.208,0.793,0.706,0.574,3.176,30.05,0.687,7.913,5.117,103.4,0.589,0.704,18.68,0.749,4.251,0.601,0.684,91.39,0.708,1.699,0.625,0.64,2.486,0.586,0.696,0.691,3.405,1.651,0.611,3.287 +NM_033198,0.701,0.949,1.137,0.773,0.763,1.13,0.727,0.723,0.968,0.942,1.129,0.562,0.597,0.786,0.976,1.582,0.916,0.994,1.389,0.954,0.823,0.854,1.018,0.77,0.748,1.022,1.085,0.737,0.763,1.274,0.853,1.279,1.605,1.479,0.606,0.853,1.223,0.948,1.422,0.768,0.858,1.128,0.58,1.472,1.002,0.823,0.921,0.795,0.624,0.828,1.082,0.714,0.994,0.981 +NM_033199,0.98,1.017,1.005,1.001,1.019,0.99,0.813,0.905,0.96,0.932,0.901,1.006,0.852,0.851,1.013,0.803,0.97,0.995,0.981,1.074,1.02,0.948,0.923,0.991,1.082,0.939,1.033,0.98,0.985,0.946,1.106,1.069,0.872,0.965,0.906,1.044,0.906,1.068,1.047,1.159,0.888,0.957,0.963,0.93,1.002,1.033,1.013,1.085,1.015,1.016,0.969,0.964,0.906,0.988 +NM_033200,0.66,1.083,1.586,0.562,0.764,1.008,0.513,0.359,1.124,1.153,0.748,0.683,0.506,0.66,1.036,1.399,0.928,1.041,1.246,1.241,0.44,0.734,1.387,1.037,0.452,0.646,1.727,0.615,0.238,1.492,0.648,1.579,0.719,0.918,0.0914,0.968,1.449,1.163,1.425,0.753,1.079,1.16,0.957,0.731,0.934,1.245,0.923,0.611,1.227,0.828,1.494,1.166,1.024,1.107 +NM_033201,0.937,1.075,0.887,0.878,0.86,1.297,0.793,0.832,0.8,0.856,1.024,0.834,0.811,0.92,0.977,0.946,0.883,0.981,0.842,1.106,0.961,0.807,1.138,1.027,1.059,0.766,0.731,0.959,0.779,1.402,0.837,1.79,1.136,1.613,0.977,0.88,1.025,1.052,1.199,0.885,0.972,1.343,1.061,1.34,0.864,1.144,0.882,0.859,0.767,0.923,1.184,1.002,1.061,0.893 +NM_033204,1.197,0.97,0.995,0.941,1.68,1.048,0.82,1.825,1.834,1.096,0.94,1.162,1.057,1.293,1.113,1.057,0.939,0.978,0.983,0.852,0.903,1.524,0.944,1.14,0.863,1.278,0.992,1.316,0.767,0.999,1.347,0.97,0.884,1.057,2.425,1.244,0.926,1.334,0.928,1.153,1.245,0.942,1.05,0.94,1.077,0.901,1.235,1.627,0.994,0.967,0.991,1.055,1.022,1.092 +NM_033208,1.02,0.993,0.897,1.225,1.097,1.117,1.05,1.121,0.978,0.866,1.026,0.98,1.022,0.953,1.275,0.908,1.036,1.085,0.87,1.204,0.793,0.949,0.99,0.995,1.17,0.898,0.945,1.126,0.977,1.381,0.95,1.482,3.021,1.256,1.133,0.906,1.009,1.034,0.937,1.062,1.026,1.066,0.954,1.003,0.903,1.034,0.707,0.942,0.813,0.905,0.979,0.874,1.044,1.229 +NM_033209,0.8,1.083,0.923,1.033,0.982,1.202,0.832,0.835,0.795,0.909,1.026,0.771,0.894,0.811,1.025,1.182,0.825,0.76,1.051,0.985,0.901,0.767,1.332,0.948,0.965,0.702,0.858,0.832,0.635,1.466,0.837,11.26,1.618,1.524,0.945,1.175,0.911,0.898,1.464,2.202,0.887,1.181,0.834,0.855,0.922,1.234,1.021,0.835,0.798,0.744,0.96,1.439,0.895,1.155 +NM_033211,0.631,1.414,0.845,0.974,0.769,2.635,1.457,0.634,0.705,0.731,1.714,0.78,0.709,0.577,1.435,1.958,0.642,1.272,0.755,1.899,0.603,0.779,1.307,0.78,1.317,0.695,0.853,0.669,1.381,1.903,0.652,0.813,0.997,1.688,0.558,0.827,1.71,0.716,1.581,0.558,0.609,1.906,1.393,0.645,0.712,1.405,0.774,0.684,1.69,0.798,1.689,0.92,0.711,1.003 +NM_033212,0.892,1.235,1.121,0.783,1.03,0.838,0.818,0.817,1.122,1.098,0.787,1.037,0.906,0.859,0.833,0.841,0.902,0.805,0.862,0.947,0.921,0.913,0.922,1.044,0.917,1.022,1.067,1.068,0.95,1.109,0.938,3.593,2.074,1.134,0.659,0.873,0.787,1.099,1.13,1.071,1.136,1.295,0.765,1.193,0.975,0.845,0.996,0.919,0.83,0.969,0.872,0.964,1.049,2.405 +NM_033213,0.999,0.911,1.123,1.08,1.021,0.921,0.89,1.038,1.019,0.976,1.027,0.91,1.11,1.086,0.983,0.945,0.992,0.969,0.821,0.995,0.914,1.113,0.953,1.057,1.087,1.092,0.983,1.106,0.829,0.893,1.074,0.935,1.038,0.773,1.214,1.148,1.0,0.965,1.153,0.875,0.946,0.915,1.145,0.978,0.993,0.979,0.904,0.949,0.981,1.016,0.888,1.289,1.008,1.166 +NM_033214,1.036,1.048,0.979,0.893,1.043,0.975,0.915,1.051,0.957,0.962,1.048,1.04,0.954,1.07,0.873,0.985,1.122,0.99,1.024,1.086,1.009,0.937,0.938,1.088,0.996,0.977,0.869,1.029,0.989,1.089,0.943,1.06,0.803,0.914,1.06,0.932,1.026,1.15,1.089,0.958,0.962,0.88,0.863,0.946,0.89,1.03,1.03,1.076,0.972,0.885,0.997,0.931,1.084,1.022 +NM_033219,0.887,1.318,1.082,0.913,1.015,0.947,0.915,0.832,1.135,1.0,1.148,0.932,0.991,1.103,1.022,0.99,1.232,1.059,0.901,0.968,1.097,1.047,1.015,0.994,1.05,0.984,0.858,1.165,0.912,0.908,0.745,1.014,1.147,0.996,0.893,0.834,0.975,1.004,0.878,1.073,1.014,0.991,0.975,1.054,1.049,1.228,1.006,0.993,0.985,1.038,0.884,1.151,1.004,0.813 +NM_033222,0.62,1.004,0.962,0.836,0.73,1.202,0.785,0.812,0.976,0.884,1.57,0.976,0.929,0.931,1.096,1.592,0.777,0.835,1.009,1.227,0.745,0.75,1.266,1.117,0.827,0.651,1.219,0.963,0.572,1.244,0.735,1.421,2.032,1.8,0.551,1.051,1.1,0.775,0.88,0.756,1.143,1.483,0.777,1.581,0.834,0.887,0.903,0.683,0.853,0.681,1.112,1.214,1.046,2.532 +NM_033223,0.95,1.087,0.875,0.912,0.973,0.954,1.096,1.067,1.007,1.045,1.011,0.927,0.872,1.001,1.501,1.055,0.996,0.954,1.262,1.066,0.942,0.971,1.013,0.991,0.953,0.948,1.045,1.093,1.145,0.888,1.027,1.114,1.021,1.074,0.998,1.013,1.009,0.992,1.064,0.921,0.979,0.96,0.894,0.94,0.949,1.082,0.963,0.958,0.967,0.976,1.045,1.083,0.864,0.99 +NM_033224,1.017,1.011,0.887,0.951,0.924,0.902,1.266,1.069,1.032,0.813,0.951,0.882,0.827,1.263,0.92,0.915,0.897,1.188,0.831,1.104,0.941,0.981,1.049,1.007,1.048,0.832,0.952,1.02,1.511,1.003,1.075,0.845,0.997,0.96,1.046,1.008,1.064,1.054,0.998,1.006,1.039,0.865,1.311,1.121,0.93,1.051,0.971,1.102,1.073,0.973,0.893,0.758,1.117,0.908 +NM_033228,0.972,0.913,1.063,0.896,0.892,0.975,1.134,1.084,1.058,0.968,1.08,0.988,0.938,0.845,0.812,0.909,1.108,1.0,0.907,1.014,1.029,1.016,0.985,1.074,0.979,1.051,1.145,0.985,1.233,1.106,0.899,1.082,0.938,1.039,1.14,0.916,0.961,1.014,0.904,0.937,0.827,0.838,1.147,0.951,0.952,1.02,1.024,0.857,1.006,1.196,1.155,1.067,1.17,0.924 +NM_033229,0.61,0.94,0.604,0.957,0.617,2.387,1.195,0.588,0.627,0.613,2.505,0.605,0.641,0.548,2.438,4.24,0.691,0.772,0.706,1.799,0.623,0.691,2.799,0.619,0.563,0.794,0.675,0.661,0.625,1.618,0.794,1.463,2.832,1.062,0.645,1.349,2.468,0.745,3.123,2.53,0.588,1.988,3.192,2.596,0.656,3.356,1.609,0.68,4.289,0.596,2.531,1.455,0.672,1.218 +NM_033238,0.961,0.981,1.352,0.837,0.864,1.185,1.168,0.822,0.989,0.873,1.004,0.889,0.795,0.836,1.153,1.14,1.183,1.269,0.96,0.972,0.824,0.942,1.19,1.0,0.843,0.805,1.657,0.804,0.913,1.035,1.175,1.574,1.461,1.252,0.67,0.773,0.963,0.993,1.736,0.799,1.022,1.003,0.777,0.851,1.017,0.867,0.859,0.895,0.842,1.276,0.921,0.93,1.0,1.765 +NM_033247,0.925,1.039,1.071,0.943,0.886,1.083,0.842,1.103,0.925,0.953,1.063,0.938,1.064,0.87,0.841,1.162,1.027,1.063,1.033,0.998,0.965,0.959,0.876,0.899,1.003,0.958,1.058,0.989,0.875,0.971,0.933,1.081,0.978,1.071,0.771,0.938,1.194,0.942,1.199,1.008,0.989,0.936,1.005,1.197,1.08,1.003,1.091,1.142,1.006,1.0,1.01,0.936,1.011,0.976 +NM_033251,1.056,1.041,1.007,0.952,1.077,0.851,0.688,0.788,0.995,1.14,1.03,0.796,0.788,0.823,0.9,1.093,1.153,1.13,1.149,0.693,1.069,0.746,1.103,0.995,0.787,1.204,1.155,0.933,0.611,1.016,0.942,0.901,1.611,0.885,0.668,0.876,0.861,1.06,1.845,0.753,1.177,0.844,0.675,1.402,1.19,0.839,1.135,0.986,1.06,1.124,0.887,0.877,1.188,0.977 +NM_033252,0.853,0.993,1.666,0.855,1.102,1.274,0.925,1.195,1.191,0.969,0.908,0.814,0.893,0.717,1.123,1.823,0.88,1.228,0.764,0.778,0.556,1.496,0.978,1.394,0.718,0.61,1.085,1.156,0.781,1.085,1.699,1.172,1.779,1.102,0.659,0.565,1.106,1.265,1.724,1.245,0.951,0.952,0.978,0.696,1.128,1.001,0.872,0.982,1.339,0.923,1.15,0.765,0.648,1.289 +NM_033253,0.965,0.944,0.954,0.898,0.874,1.062,1.105,0.967,1.144,1.033,1.14,1.065,1.17,0.851,1.133,1.09,0.899,1.046,1.005,0.778,1.191,1.028,1.03,1.105,0.968,1.028,0.904,0.989,1.12,0.976,0.916,1.034,1.1,1.014,1.058,0.995,1.007,1.123,1.17,1.043,1.122,1.052,1.082,0.915,1.033,1.093,0.971,1.025,1.1,0.968,0.927,0.971,1.003,1.043 +NM_033254,1.224,0.892,1.415,0.871,1.219,0.937,0.813,0.952,1.41,1.143,0.949,1.292,1.245,1.122,1.173,1.02,1.18,1.148,1.387,0.876,1.359,1.266,0.962,1.298,0.741,1.323,1.018,1.469,0.645,0.914,1.492,1.543,1.054,1.224,0.726,0.771,0.856,1.783,0.949,0.913,1.445,1.367,0.968,0.881,1.383,0.941,1.018,1.252,0.759,1.296,1.035,0.866,1.135,1.031 +NM_033255,0.682,1.067,1.545,0.476,0.381,2.385,2.039,0.345,0.448,0.478,1.78,0.365,0.27,0.329,1.203,2.487,0.931,0.978,0.388,1.0,0.401,0.272,1.541,0.475,0.742,0.312,0.689,0.368,0.337,0.925,0.384,1.405,2.959,1.505,0.255,0.774,2.163,0.301,1.547,3.736,0.792,1.0,0.937,3.3,0.539,0.837,1.419,0.366,1.148,0.474,1.616,1.655,1.735,7.49 +NM_033256,0.741,0.931,1.074,0.7,0.914,1.125,0.825,0.751,0.83,0.906,0.899,1.375,1.008,0.654,1.16,1.035,0.779,0.973,0.979,1.027,0.855,0.835,1.277,1.017,0.762,1.045,0.994,1.339,0.585,1.191,0.976,1.993,1.303,1.585,0.498,0.996,0.832,1.056,1.309,0.962,1.433,1.541,1.031,0.994,1.013,0.967,1.067,1.151,0.914,0.893,1.167,0.899,0.932,1.071 +NM_033257,0.705,1.439,1.43,0.461,1.384,0.957,0.635,0.86,1.324,1.345,0.602,1.607,1.126,0.55,1.003,1.021,1.246,1.059,1.417,1.24,0.455,1.272,1.052,1.725,0.561,0.962,1.563,1.22,0.392,1.084,1.101,1.663,1.46,1.399,0.208,0.571,0.671,1.494,1.035,0.42,1.724,1.118,0.563,0.624,1.071,0.759,1.066,1.077,0.559,0.871,0.87,0.639,0.911,1.11 +NM_033258,0.883,0.904,1.005,1.086,0.914,0.969,0.986,0.98,1.137,0.98,1.132,1.048,0.905,0.969,1.016,0.974,0.894,1.079,1.015,1.069,0.853,1.052,1.142,1.015,1.049,0.98,0.981,1.048,1.226,1.017,1.073,1.104,0.91,1.047,0.96,0.985,0.962,0.927,1.041,1.089,1.008,1.01,0.949,1.018,0.942,1.087,0.864,1.016,0.98,0.909,1.08,0.951,0.955,1.078 +NM_033259,1.016,1.001,1.032,0.973,0.999,0.909,0.922,0.833,1.048,1.156,1.019,1.005,1.041,0.96,1.038,0.951,1.034,1.021,0.809,0.912,0.928,1.019,1.023,0.945,0.927,1.196,1.076,0.96,0.957,1.021,0.982,0.975,0.869,1.052,0.887,0.971,0.929,1.184,1.114,0.974,0.972,0.916,0.95,0.966,1.072,0.992,1.054,1.089,0.886,1.033,1.031,1.057,0.953,0.984 +NM_033260,0.335,2.639,0.889,1.322,0.555,3.743,2.387,0.188,0.836,0.661,1.699,0.421,0.329,0.356,0.464,0.813,0.431,1.985,0.611,2.061,0.241,0.34,1.853,0.871,1.625,0.37,0.816,0.516,1.864,5.345,0.472,1.407,2.649,5.45,0.158,0.567,2.68,0.464,2.207,0.945,0.609,2.709,1.263,2.51,0.656,1.669,0.59,0.341,0.3,0.473,1.704,0.987,0.55,0.94 +NM_033261,0.997,1.052,1.051,1.02,1.042,0.892,0.955,0.89,0.962,1.072,1.094,1.049,1.23,1.073,0.881,0.948,1.165,1.059,1.083,1.154,1.044,0.933,0.779,0.967,0.946,0.988,0.934,1.059,0.883,1.005,1.091,1.017,1.035,1.062,0.995,0.942,0.969,1.26,1.011,0.947,0.969,0.926,0.951,1.025,0.954,0.882,0.883,1.032,1.085,1.055,1.03,1.14,1.016,0.951 +NM_033262,0.896,0.963,0.927,1.011,0.919,1.106,1.242,1.121,0.989,0.905,0.974,1.085,0.945,0.899,1.426,1.027,1.036,1.045,1.106,1.014,1.051,1.012,0.913,1.018,0.852,1.001,1.05,1.042,1.038,0.986,0.973,1.011,1.016,1.007,1.054,1.026,0.869,1.072,0.898,1.014,1.075,1.025,1.128,0.912,0.914,1.21,0.878,1.0,0.957,1.056,1.058,0.947,1.028,0.929 +NM_033267,0.529,1.152,0.856,0.801,0.651,2.0,0.852,0.473,0.947,0.801,2.504,0.61,0.525,0.615,1.331,2.135,0.59,1.04,0.675,2.022,0.535,0.549,2.624,0.726,1.15,0.586,0.901,0.646,0.877,1.983,0.751,1.137,0.543,2.698,0.389,1.545,1.798,0.636,1.596,0.85,0.791,1.398,0.859,0.429,0.733,2.062,0.64,0.508,1.299,0.576,1.933,0.774,0.664,0.558 +NM_033272,1.055,1.05,1.069,1.026,0.996,0.906,1.01,0.951,0.899,0.972,0.907,0.997,1.037,0.781,1.17,1.086,0.8,1.103,1.116,0.986,1.045,1.068,1.025,0.897,1.032,1.1,0.956,0.971,1.077,0.948,0.98,0.986,1.153,1.007,1.127,0.996,1.12,1.0,1.007,1.076,1.042,0.973,0.959,1.023,1.077,1.118,1.034,0.972,0.796,1.025,0.98,0.928,1.091,1.029 +NM_033274,1.09,0.836,1.298,0.973,0.569,0.661,0.79,0.689,1.412,0.647,0.755,0.616,1.265,0.887,1.257,0.756,1.056,0.779,1.019,0.643,0.842,1.153,0.939,0.761,0.721,1.216,1.746,0.836,0.363,1.27,1.137,5.056,1.767,1.289,0.487,0.684,0.962,1.326,1.357,2.314,0.977,0.942,0.867,0.606,1.042,0.694,0.709,0.874,0.675,1.244,1.012,1.91,1.81,1.369 +NM_033276,0.811,0.799,1.272,0.735,0.897,1.274,0.734,0.663,1.281,0.941,1.297,1.052,0.771,1.005,1.037,1.452,0.877,1.018,1.356,1.072,0.802,0.99,1.222,1.008,0.718,0.92,1.212,0.937,0.534,1.093,0.96,0.966,1.281,1.273,0.538,0.711,1.154,0.946,0.94,0.695,1.116,0.895,0.578,1.031,0.79,1.153,1.026,0.666,0.895,0.861,1.015,0.732,0.936,1.523 +NM_033277,1.077,1.067,0.94,0.946,1.372,0.954,0.946,1.164,0.996,1.067,1.011,0.907,0.966,1.112,1.18,0.791,1.097,1.014,1.035,1.131,0.993,1.011,0.906,1.092,1.233,1.168,1.17,0.98,1.138,1.036,0.992,0.848,1.03,0.928,0.857,1.046,1.006,1.116,0.934,0.978,1.084,1.021,0.824,0.933,1.167,0.975,0.895,0.994,1.164,0.975,0.929,0.979,0.838,1.069 +NM_033278,0.913,0.977,0.915,1.084,0.91,1.174,1.072,0.764,0.989,0.833,1.317,0.93,0.877,0.762,1.142,1.734,0.819,1.036,0.993,1.355,0.994,1.032,1.543,0.945,1.058,0.931,0.862,0.877,0.9,1.14,1.001,1.282,1.022,1.158,0.999,1.258,1.271,0.86,1.095,0.956,0.852,1.318,1.223,0.967,0.848,1.047,0.936,0.84,1.128,0.93,1.211,1.019,0.905,1.038 +NM_033280,0.447,1.127,1.2,0.651,0.712,1.995,1.374,0.597,0.917,0.633,1.31,0.712,0.581,0.332,1.203,3.567,0.77,1.127,0.869,1.169,0.306,0.847,1.549,0.841,0.8,0.4,0.864,0.753,0.548,1.742,0.91,1.021,1.908,2.322,0.15,0.497,1.331,0.836,1.978,0.364,1.012,2.047,0.79,1.136,0.937,1.137,1.063,0.645,1.957,0.682,2.058,0.674,0.449,1.257 +NM_033281,0.619,0.88,1.051,0.676,0.855,1.62,0.61,0.937,1.175,0.865,1.501,1.397,0.837,0.667,1.196,2.127,0.724,0.961,1.362,1.267,0.466,1.031,1.069,1.223,0.62,0.778,1.144,1.131,0.598,1.012,1.07,0.907,1.237,1.641,0.694,0.735,1.464,1.075,1.047,0.366,0.972,1.103,0.847,0.611,0.734,1.288,1.004,0.996,1.272,0.554,1.121,0.675,0.872,1.39 +NM_033282,1.084,1.18,1.018,1.135,1.053,1.008,0.906,0.867,1.024,1.093,1.078,0.87,0.944,0.924,1.007,0.962,1.017,1.109,1.05,0.931,0.969,0.983,0.962,0.926,1.118,1.004,0.857,1.009,0.943,0.941,1.127,0.978,1.13,0.918,1.098,1.078,0.865,1.09,1.139,0.892,0.881,0.982,1.052,1.062,1.108,0.959,0.943,0.992,1.123,1.103,1.069,0.995,1.004,1.03 +NM_033285,0.778,0.9,1.415,0.621,0.935,1.395,0.901,0.872,0.98,0.662,0.965,1.017,0.742,0.77,1.249,1.354,1.05,0.93,0.821,1.811,0.501,1.028,1.263,0.806,0.666,0.738,0.973,1.211,0.42,1.204,1.014,1.261,0.626,1.42,0.658,0.407,0.935,1.077,1.408,0.74,0.795,1.961,1.018,0.457,0.839,1.267,0.727,1.118,0.65,0.919,1.08,0.658,0.702,1.784 +NM_033290,0.845,0.997,1.397,0.763,1.07,0.972,0.671,0.701,0.958,0.902,1.041,0.65,0.727,0.932,1.055,1.48,0.892,0.934,1.22,1.045,0.808,1.046,1.143,0.913,0.607,0.873,1.497,0.967,0.621,0.952,0.892,0.941,2.758,0.958,0.457,0.755,0.933,1.085,1.228,0.685,1.007,1.006,1.087,0.929,0.991,1.125,1.035,0.804,1.151,0.853,1.233,0.85,1.493,0.911 +NM_033292,1.105,1.07,0.97,1.042,1.148,0.904,1.221,1.004,1.028,1.119,1.024,1.027,1.15,1.045,0.749,0.853,0.816,0.766,1.088,1.063,0.945,0.967,1.017,1.089,0.967,1.0,1.027,1.092,0.843,0.898,1.002,0.927,1.005,0.954,1.082,0.876,1.037,1.16,1.172,0.961,1.037,0.872,0.949,0.887,0.962,0.96,0.988,0.98,1.035,1.222,1.149,1.156,1.054,0.791 +NM_033295,0.943,0.964,1.093,0.858,1.146,1.072,1.154,0.958,0.895,0.924,0.941,0.974,0.97,1.07,0.838,1.169,0.941,1.088,1.029,0.962,1.134,0.915,1.044,1.031,0.909,1.069,0.974,1.13,1.026,0.941,1.024,1.021,0.966,1.093,0.908,0.917,1.141,0.981,0.962,1.05,1.007,0.872,1.07,0.836,1.039,1.015,1.126,1.144,1.007,0.84,1.048,1.221,1.067,0.998 +NM_033296,0.704,0.373,1.172,0.768,1.139,0.847,0.38,0.361,1.482,1.421,1.213,0.726,0.546,0.757,0.944,1.665,1.002,0.976,1.878,0.848,0.625,0.574,1.036,1.312,0.213,1.0,1.349,1.036,0.277,1.088,1.033,1.29,2.062,1.107,0.331,0.679,0.77,0.97,1.3,0.751,1.518,1.067,0.835,1.447,1.0,0.972,1.175,0.676,0.872,0.79,0.982,0.766,1.281,1.165 +NM_033297,1.887,1.968,1.775,2.203,1.851,1.967,2.1820000000000004,1.856,1.821,2.009,1.9209999999999998,1.755,1.8900000000000001,1.855,2.334,1.972,1.81,2.1630000000000003,2.066,1.839,2.017,2.03,1.9899999999999998,1.9020000000000001,2.088,2.086,1.99,2.1580000000000004,1.9049999999999998,1.978,1.807,2.092,1.8860000000000001,1.7570000000000001,2.344,1.923,2.041,1.916,2.096,2.394,1.9869999999999999,2.073,2.1559999999999997,2.138,1.788,2.01,2.006,2.105,2.131,1.9769999999999999,2.011,2.159,2.075,1.8719999999999999 +NM_033301,1.034,0.945,0.975,0.869,1.074,0.775,0.699,0.727,1.178,1.1,0.887,0.883,0.922,0.736,1.04,1.106,0.984,1.022,1.232,0.836,0.88,0.634,0.982,1.003,0.867,1.059,1.144,0.962,0.59,0.792,0.897,1.145,1.437,1.059,0.748,1.079,0.941,0.949,1.098,1.132,0.968,0.902,0.836,1.883,0.978,0.969,1.203,0.849,1.234,1.07,0.967,0.916,0.992,1.161 +NM_033302,0.918,1.024,0.951,1.111,0.896,1.002,1.005,1.091,1.143,1.065,1.057,0.967,1.069,0.902,0.824,1.0,1.049,1.057,1.036,0.839,1.086,0.884,1.117,0.986,1.081,0.965,1.064,0.876,1.077,1.168,0.891,0.954,0.925,1.039,1.002,1.048,1.034,1.113,1.084,1.072,0.935,1.101,0.843,0.865,0.901,0.963,1.051,1.19,1.082,1.242,1.153,0.903,0.991,0.952 +NM_033303,1.014,1.021,0.985,1.04,1.05,0.89,0.89,0.92,1.0,0.965,0.975,1.097,0.969,0.996,0.841,0.88,1.0,1.021,1.046,0.921,0.967,0.904,1.027,1.075,1.007,1.044,1.172,0.83,0.652,1.061,1.076,0.941,1.029,0.938,1.021,0.987,1.042,1.029,1.122,0.986,0.924,1.02,1.062,0.976,1.06,0.878,0.966,1.008,0.87,1.042,1.044,0.876,1.07,1.005 +NM_033304,1.9689999999999999,2.0229999999999997,2.029,1.941,2.05,1.9489999999999998,2.093,2.017,2.207,1.9649999999999999,2.046,1.995,1.966,2.027,1.976,1.9899999999999998,1.9569999999999999,2.299,2.059,1.867,1.9899999999999998,1.9580000000000002,2.023,2.024,2.034,1.976,2.004,2.091,2.058,2.1109999999999998,1.978,1.904,2.0540000000000003,1.964,2.061,2.076,2.059,2.1029999999999998,1.904,1.9929999999999999,1.9899999999999998,1.9060000000000001,1.952,2.0839999999999996,1.934,1.913,2.121,1.832,2.175,1.9669999999999999,1.9689999999999999,1.908,2.161,2.028 +NM_033305,0.895,1.155,1.245,0.889,0.97,1.328,0.88,0.959,1.183,0.97,1.099,0.945,0.794,1.153,1.333,1.628,0.877,0.837,1.125,1.258,0.901,0.774,0.921,0.879,0.978,0.954,1.125,0.843,0.848,1.379,0.959,0.95,1.857,1.479,0.839,0.829,1.13,0.854,1.036,1.06,0.863,1.086,0.91,0.906,1.002,0.951,0.807,0.711,1.209,0.972,1.168,0.864,0.913,1.37 +NM_033306,1.14,0.972,0.971,0.948,1.063,0.938,0.954,0.819,0.906,1.124,1.088,0.953,0.89,0.992,0.848,1.13,1.185,1.07,1.089,1.077,1.019,1.064,0.929,0.963,1.075,1.028,1.101,1.12,0.908,1.165,1.042,0.862,0.977,1.143,0.883,0.955,0.816,0.9,0.861,1.105,0.948,1.19,0.969,0.831,1.004,1.294,1.042,0.859,1.169,1.057,1.077,0.929,1.158,1.071 +NM_033307,1.091,1.129,0.966,1.008,1.002,1.006,0.789,1.13,1.069,1.069,1.094,0.906,1.067,1.066,0.954,1.11,0.968,1.061,1.048,0.981,1.02,0.992,1.038,1.076,1.046,1.111,0.916,1.077,0.853,0.96,0.867,0.845,0.93,0.903,1.107,1.002,0.81,0.89,0.966,1.008,1.022,0.961,0.987,1.112,1.191,0.99,0.96,1.03,1.03,1.029,0.865,0.998,1.148,1.0 +NM_033308,2.032,2.037,2.492,1.981,2.0540000000000003,1.833,1.884,1.971,1.958,2.121,1.874,1.822,1.736,1.888,2.061,1.5630000000000002,2.501,1.8319999999999999,2.196,2.136,1.876,1.9,1.9380000000000002,2.098,1.977,1.996,2.293,1.8940000000000001,1.831,1.967,2.02,2.269,2.722,1.798,1.8900000000000001,2.1559999999999997,1.874,2.1390000000000002,2.2329999999999997,2.985,1.802,1.859,1.7109999999999999,2.034,2.048,1.865,1.955,1.914,1.7930000000000001,1.9649999999999999,2.078,2.023,2.194,2.0090000000000003 +NM_033309,0.939,1.52,0.939,1.279,0.886,1.343,0.877,0.848,0.768,0.7,1.124,0.877,0.901,0.885,0.842,0.696,0.985,0.956,1.181,0.778,0.862,0.949,1.141,0.954,1.182,0.916,1.098,0.773,0.704,1.621,0.951,1.923,1.649,1.373,0.703,0.849,0.987,0.929,1.503,0.962,0.85,1.327,0.829,1.427,0.719,0.897,0.818,0.748,0.885,0.939,1.092,0.89,0.852,1.573 +NM_033310,2.025,2.019,1.9539999999999997,1.866,1.976,1.9420000000000002,2.016,1.8090000000000002,2.202,2.09,2.096,2.231,2.058,1.908,1.957,1.958,2.263,1.858,1.863,2.003,2.136,1.988,1.835,2.059,2.1559999999999997,2.023,2.0149999999999997,1.975,1.8010000000000002,1.922,1.95,2.092,2.113,2.134,2.085,2.186,2.031,2.049,2.1580000000000004,1.8250000000000002,1.9180000000000001,2.0060000000000002,2.2640000000000002,1.988,2.1870000000000003,2.0709999999999997,1.964,1.9779999999999998,2.126,1.991,2.1239999999999997,1.98,2.1790000000000003,1.842 +NM_033311,0.928,1.084,0.902,0.817,1.009,0.92,0.891,1.126,1.099,0.984,1.007,1.008,1.005,0.991,0.947,1.008,0.928,1.037,0.903,1.017,0.859,1.005,0.842,0.96,0.849,0.922,1.024,1.002,0.908,0.943,1.108,1.101,0.774,0.895,1.085,0.936,0.916,0.973,1.196,1.013,0.884,1.043,0.89,0.826,0.996,1.012,1.056,1.056,0.985,1.058,1.05,0.954,1.081,1.055 +NM_033312,1.021,0.905,1.026,1.006,1.036,1.039,0.858,0.993,0.95,0.982,1.106,0.912,0.921,1.084,1.215,1.12,0.989,0.858,1.18,1.101,1.089,0.957,0.95,0.987,1.094,1.051,0.992,1.07,0.779,0.984,1.049,0.87,0.845,0.926,1.046,1.167,0.956,0.975,0.867,1.05,0.886,0.916,0.973,0.924,1.168,0.893,0.968,1.01,0.992,1.043,1.054,0.921,1.048,0.936 +NM_033313,2.049,2.122,1.832,1.903,2.068,2.048,1.831,2.008,2.011,2.151,2.002,2.1079999999999997,1.763,2.247,2.1689999999999996,2.247,1.842,1.8410000000000002,1.892,2.045,2.0949999999999998,2.043,1.809,1.9300000000000002,2.232,2.125,2.05,2.316,1.935,1.976,2.232,2.046,1.896,1.946,1.895,2.1959999999999997,1.9529999999999998,1.9900000000000002,1.93,2.109,1.876,1.823,2.033,2.268,2.0,1.911,1.8820000000000001,2.024,1.884,1.8399999999999999,1.8010000000000002,2.1550000000000002,1.83,1.771 +NM_033315,1.034,0.984,1.072,0.952,1.07,0.973,1.133,0.881,1.079,0.886,0.942,0.951,0.988,1.168,1.111,0.942,1.009,0.877,0.874,1.016,1.025,0.983,0.951,0.874,0.969,1.13,0.977,1.028,1.438,0.935,1.004,1.555,1.548,1.094,0.903,0.878,1.033,1.03,0.976,1.315,0.982,0.905,1.218,1.152,1.103,0.928,1.067,0.944,0.876,1.159,1.041,0.998,0.99,1.111 +NM_033316,1.93,1.889,1.965,1.679,1.8780000000000001,2.061,2.019,1.98,1.97,1.76,1.884,2.0,1.807,1.825,1.798,1.907,2.044,1.71,1.947,1.8719999999999999,2.233,1.984,1.9579999999999997,1.8490000000000002,1.9129999999999998,2.067,2.126,2.074,1.484,1.998,1.96,2.528,2.161,2.075,1.9020000000000001,2.036,2.083,1.9489999999999998,2.202,2.831,1.9009999999999998,2.029,1.9489999999999998,2.417,1.843,1.889,2.206,2.094,2.097,1.885,2.021,1.737,1.857,2.707 +NM_033317,3.025,0.209,3.742,0.969,4.208,0.291,0.151,1.708,3.77,4.572,0.213,3.026,1.615,1.829,1.731,1.343,2.534,2.395,4.813,0.232,0.814,1.908,0.559,4.062,0.173,2.092,3.286,2.281,0.122,0.322,4.078,0.609,2.261,0.304,3.221,0.417,0.179,2.311,0.202,0.22,2.789,0.284,0.134,0.38,4.445,0.518,3.387,2.584,0.336,4.132,1.031,1.602,4.727,2.391 +NM_033326,0.995,0.993,0.878,1.136,1.017,1.025,1.108,0.937,0.964,1.051,0.902,0.865,1.058,1.05,1.026,1.219,1.05,0.984,1.09,1.0,0.947,1.015,0.996,0.987,0.979,0.879,1.07,1.0,1.143,0.933,1.15,1.091,1.084,0.951,0.99,0.933,0.999,1.026,0.984,0.788,1.007,1.105,1.096,1.011,0.938,1.055,1.002,1.034,1.111,0.902,0.971,1.006,0.846,1.015 +NM_033328,0.95,1.209,1.123,1.131,1.083,0.847,1.325,1.094,1.022,1.015,0.957,0.971,1.003,1.042,1.027,1.002,0.958,0.984,1.049,1.285,0.85,0.863,0.96,1.051,0.968,0.93,0.898,0.929,0.934,1.106,0.955,0.996,1.102,0.992,0.906,1.118,1.09,0.885,1.076,0.997,0.989,0.999,0.934,1.036,0.919,0.971,0.959,0.976,0.981,1.046,1.066,1.07,1.167,1.021 +NM_033329,2.0389999999999997,1.906,1.93,1.966,2.056,1.9569999999999999,2.096,2.015,1.976,1.992,1.955,2.037,2.038,1.843,2.08,2.017,2.0389999999999997,2.0709999999999997,2.113,2.221,1.844,1.9620000000000002,1.972,1.8519999999999999,2.091,2.0380000000000003,1.99,2.193,1.7269999999999999,1.956,1.8159999999999998,1.787,2.1390000000000002,1.9089999999999998,1.9009999999999998,2.052,1.892,1.984,2.215,2.086,1.939,1.928,1.707,2.028,2.018,1.806,2.0629999999999997,2.045,2.0300000000000002,1.793,2.059,1.916,2.05,2.077 +NM_033331,0.931,1.002,0.913,1.111,0.847,1.194,0.708,0.922,1.048,0.863,1.24,0.725,0.919,0.847,1.112,1.03,0.993,0.87,0.835,1.159,0.793,0.726,0.983,0.793,1.162,0.889,0.882,0.906,1.011,1.191,0.907,1.357,1.151,1.359,0.836,0.927,1.117,0.922,1.117,0.998,0.858,0.982,1.075,1.142,0.867,1.122,0.992,0.823,1.184,0.815,1.041,0.881,0.911,1.2 +NM_033332,0.899,0.871,1.06,1.026,0.949,1.007,0.811,1.059,0.929,1.046,1.004,0.881,0.903,1.082,0.984,1.17,0.94,1.077,0.909,0.83,1.019,0.956,1.218,0.93,1.035,1.021,1.035,0.898,1.141,0.892,1.08,1.076,1.042,1.149,1.018,1.063,0.99,0.931,0.937,1.07,1.015,0.884,1.124,1.312,0.901,0.952,0.888,0.928,0.992,0.974,1.123,0.998,1.051,1.046 +NM_033337,0.972,1.015,1.032,0.849,1.0,1.0,0.963,0.966,0.999,0.988,0.933,1.085,1.073,1.113,1.081,1.281,1.007,0.949,0.856,0.979,0.942,0.967,1.115,1.056,0.975,1.147,1.144,1.103,1.209,1.119,1.301,0.942,0.723,0.995,0.957,0.844,0.932,1.044,1.049,0.983,1.084,1.042,0.884,0.903,1.002,0.821,0.905,1.119,0.94,0.894,1.04,0.918,1.157,1.012 +NM_033340,0.997,1.105,0.954,0.966,0.959,1.028,0.993,1.223,1.001,0.969,0.945,0.944,1.037,1.009,0.868,0.958,1.054,1.014,0.875,1.074,1.032,1.048,0.928,1.007,0.992,0.866,1.002,0.937,1.273,0.994,0.999,0.988,0.978,0.868,0.968,1.053,0.943,0.994,0.942,1.035,1.004,1.08,1.139,0.887,0.934,0.937,1.087,1.066,1.019,1.026,0.92,1.096,0.903,0.979 +NM_033341,1.083,0.911,1.009,0.885,1.0,0.869,0.963,0.973,0.899,1.024,1.002,0.965,1.022,1.017,1.137,0.969,1.05,1.054,0.976,1.007,0.98,0.904,1.042,1.03,1.01,1.111,0.943,0.891,1.11,1.057,0.997,1.03,0.886,1.011,1.039,1.114,0.89,1.063,1.026,1.132,1.046,0.904,0.76,1.011,0.921,1.004,0.986,0.919,0.978,1.047,0.876,1.048,0.963,1.004 +NM_033343,0.961,1.028,0.97,0.984,0.924,1.03,0.993,0.843,0.879,1.18,1.035,0.938,0.88,1.354,0.978,1.047,0.903,0.963,1.208,0.973,1.048,0.99,0.923,1.028,1.033,1.046,0.964,1.123,0.901,0.94,1.123,1.107,0.979,1.006,1.149,0.98,0.96,0.977,0.981,0.847,1.057,0.969,1.068,0.912,0.914,1.006,0.909,0.976,1.02,0.979,1.107,1.09,0.905,1.099 +NM_033345,1.226,0.98,0.915,1.023,0.953,0.982,0.893,1.172,1.017,1.077,0.867,1.173,0.994,0.963,0.852,0.919,1.137,0.938,1.003,1.101,1.081,0.909,0.925,1.052,0.951,0.996,0.962,1.05,1.333,1.021,1.222,0.881,1.118,0.976,1.002,0.96,1.026,0.917,1.035,1.036,1.064,0.834,1.183,0.999,1.05,0.999,0.909,0.98,0.95,0.944,1.045,1.018,1.037,1.028 +NM_033346,0.86,1.057,1.188,0.635,0.884,0.958,0.816,0.715,0.98,0.869,0.851,0.838,0.802,0.784,0.643,0.906,0.957,1.08,0.901,1.038,0.72,0.82,1.311,0.877,0.867,0.662,1.16,0.935,0.718,1.175,0.828,1.681,1.282,1.139,0.638,1.016,0.91,0.841,1.703,1.295,1.078,1.366,0.99,1.85,0.914,1.271,1.205,0.68,0.93,0.966,1.035,1.147,0.781,1.283 +NM_033347,1.632,0.837,1.264,1.046,1.55,0.962,0.826,1.23,1.824,1.309,0.902,1.576,1.713,1.271,1.394,1.08,0.922,1.54,2.087,0.746,1.168,2.144,0.889,1.994,0.875,2.035,1.228,1.379,0.673,1.058,1.416,0.871,1.021,0.81,0.992,1.011,0.857,2.186,0.823,0.872,1.321,0.856,0.79,0.889,1.545,0.903,1.178,1.669,0.843,1.551,0.92,0.94,1.056,1.025 +NM_033356,1.016,0.887,0.937,1.089,0.946,0.954,1.312,1.061,0.879,0.884,0.881,0.892,0.921,1.012,0.914,0.914,1.0,1.141,0.996,0.841,1.137,0.974,1.168,0.956,0.972,1.044,0.916,0.943,1.558,1.09,0.949,0.921,1.199,0.944,1.115,1.046,1.045,1.041,1.061,0.986,1.082,1.0,1.043,1.145,1.018,1.081,1.039,1.021,1.039,0.971,0.987,1.158,0.97,1.005 +NM_033358,1.035,0.977,1.258,1.333,1.114,0.981,1.089,1.125,0.93,0.966,0.907,1.03,1.149,1.032,0.866,1.038,0.805,0.943,0.921,1.103,1.073,0.883,1.096,0.958,1.155,0.886,0.955,0.976,0.792,1.015,1.042,0.881,1.183,1.101,1.244,1.085,0.958,0.939,1.155,0.92,1.046,0.983,0.999,0.946,1.072,0.838,1.022,1.001,1.056,0.848,0.997,1.274,1.163,1.149 +NM_033360,1.203,0.959,1.079,1.006,1.202,1.056,0.997,0.996,1.023,1.103,1.085,0.879,0.896,0.899,1.006,0.91,1.11,1.175,1.096,1.09,1.005,0.954,0.906,1.009,1.029,1.002,0.832,0.972,0.788,0.949,1.067,1.106,0.923,1.093,1.048,1.089,1.014,1.03,0.939,0.929,1.029,1.092,1.261,1.02,1.007,0.998,1.046,1.021,1.058,0.926,0.873,1.069,1.051,0.866 +NM_033362,1.0,1.098,0.995,1.008,1.027,1.06,0.945,0.981,1.05,0.916,1.066,1.064,1.053,0.947,0.811,1.066,1.018,1.067,0.94,1.025,0.865,0.928,0.966,1.049,1.121,1.133,0.88,0.9,1.112,0.936,0.952,0.88,1.032,1.067,1.129,0.926,0.891,1.011,0.993,0.872,0.864,1.049,1.039,1.049,0.968,1.012,0.926,0.955,1.011,1.113,0.941,0.855,1.224,0.868 +NM_033363,0.604,1.147,0.981,0.662,0.787,0.885,0.622,0.377,0.927,1.174,1.068,1.014,0.643,0.582,0.728,1.414,0.681,0.801,1.023,0.9,0.412,0.627,1.897,1.121,0.664,0.865,1.135,0.752,0.417,1.156,0.68,0.989,3.209,1.049,0.105,1.647,1.156,0.61,1.425,0.901,1.112,1.027,0.914,2.064,1.032,1.202,1.426,0.739,1.349,0.67,1.005,1.128,1.108,2.157 +NM_033364,0.922,1.066,1.02,0.906,1.06,1.014,1.093,0.967,0.995,0.93,1.119,0.944,1.004,1.136,1.072,0.933,0.958,1.024,0.968,0.901,0.987,0.867,1.11,1.028,1.052,1.031,0.971,1.0,1.314,0.992,0.955,0.973,1.032,0.968,1.129,0.935,1.012,1.086,1.083,1.039,0.848,1.0,1.069,1.024,1.012,0.98,0.915,1.034,1.079,0.977,1.135,0.837,0.757,1.044 +NM_033377,0.931,0.929,1.046,0.85,0.968,0.955,0.879,0.884,1.157,1.045,0.898,1.053,1.016,0.827,0.779,1.203,0.95,1.025,1.157,1.05,1.031,1.125,1.048,1.071,0.8,0.983,1.131,1.083,0.649,0.879,1.182,1.145,1.049,1.026,0.805,1.053,0.951,1.321,1.109,0.959,1.019,1.166,0.954,1.17,1.073,0.749,1.187,0.979,1.097,0.885,0.945,0.889,1.103,1.075 +NM_033378,1.223,1.09,1.041,1.238,0.97,1.007,0.762,1.134,0.869,1.134,1.036,0.961,1.035,0.899,0.837,1.031,0.896,0.842,0.946,0.986,1.021,1.044,1.239,0.935,0.915,1.17,1.109,0.956,1.276,0.97,1.176,1.026,1.061,1.042,1.451,1.11,1.007,1.104,1.072,0.938,1.146,0.965,1.028,0.848,0.856,0.878,1.002,0.986,0.87,1.011,1.072,0.943,1.023,0.854 +NM_033379,0.541,1.093,1.373,0.959,0.879,1.088,0.866,0.668,1.28,1.029,0.666,0.763,0.812,0.638,0.858,1.482,0.842,0.995,0.969,0.795,0.541,0.871,1.826,1.447,0.541,0.538,2.79,0.902,0.449,0.941,1.051,1.176,4.71,0.869,0.327,1.555,0.99,0.814,2.048,0.669,1.41,0.596,0.741,4.627,0.953,1.251,1.3,0.612,1.56,0.766,1.505,1.128,0.683,5.409 +NM_033386,1.026,0.999,1.143,0.972,0.998,0.952,1.077,1.08,1.04,1.065,1.049,0.946,1.013,0.947,0.774,0.896,0.939,1.196,1.131,0.976,0.853,1.031,1.122,1.113,1.033,0.886,1.035,0.969,0.919,1.039,1.012,0.946,0.984,0.849,1.023,0.943,0.938,0.906,0.941,0.922,0.927,1.065,1.019,1.133,1.186,1.0,0.953,0.918,0.942,0.903,0.827,0.902,1.009,0.928 +NM_033389,0.774,0.904,1.001,0.981,0.711,0.981,0.805,0.579,0.93,0.796,0.918,0.744,0.692,0.749,0.957,0.999,0.782,1.011,1.054,1.09,0.715,0.745,1.168,0.862,0.876,0.828,0.935,0.794,0.82,1.186,0.774,1.106,1.356,1.053,0.642,1.033,1.085,0.704,1.442,1.283,0.855,1.206,0.831,1.236,0.78,1.299,0.941,0.797,0.821,0.94,1.251,1.196,1.062,1.204 +NM_033392,1.016,0.802,1.292,0.905,1.363,0.908,0.47,0.723,2.025,1.289,0.625,0.854,0.62,1.413,1.501,1.054,1.432,0.704,0.824,1.108,0.548,1.307,0.831,1.411,0.634,1.264,1.476,1.02,0.501,0.907,1.238,2.407,0.918,0.869,1.184,1.167,0.732,1.224,0.816,2.252,1.051,0.784,1.02,0.797,0.985,0.919,1.228,0.977,0.775,0.8,0.928,0.672,0.957,0.995 +NM_033396,0.983,0.841,1.459,0.616,1.137,1.06,0.72,0.675,1.463,1.529,0.818,0.806,0.497,0.912,0.974,1.2,0.793,1.202,1.481,0.977,0.774,1.112,0.767,1.351,0.636,1.203,1.054,1.024,0.546,1.458,1.516,1.226,1.23,1.327,0.433,0.956,0.76,1.098,1.388,0.766,1.23,1.173,0.558,0.875,1.362,0.855,0.907,0.99,0.548,1.235,1.12,0.767,1.09,0.895 +NM_033397,1.876,0.848,2.013,1.039,1.712,0.863,0.948,1.835,1.405,1.254,0.894,1.068,1.332,1.45,1.215,0.976,2.181,1.022,1.624,0.839,1.429,1.685,0.812,1.616,0.934,1.731,1.786,1.344,0.67,0.768,1.886,1.019,1.259,0.952,3.391,0.794,0.62,1.618,0.994,1.31,1.578,0.9,0.704,0.797,1.512,0.871,1.407,1.76,0.755,1.708,0.829,0.898,1.803,0.977 +NM_033401,1.15,0.974,0.986,1.029,0.843,1.061,0.94,1.02,0.88,1.055,1.101,0.98,0.834,0.893,0.79,0.889,0.962,0.942,0.992,0.94,0.85,1.071,1.098,1.099,0.982,1.024,1.088,0.967,1.132,0.887,1.091,0.885,0.975,1.09,1.216,0.954,1.0,1.04,1.073,1.054,0.932,0.966,1.277,0.946,0.963,1.041,1.26,1.157,1.033,0.923,0.962,0.993,1.09,1.083 +NM_033405,0.763,1.102,1.407,0.665,0.802,0.948,1.301,0.529,0.97,0.934,0.774,0.416,0.538,0.545,0.931,0.801,1.401,1.105,0.731,0.899,0.672,0.517,1.419,0.535,0.606,0.547,1.506,0.605,0.678,1.243,0.769,1.163,1.728,1.108,1.025,1.078,1.145,0.525,1.759,2.41,0.941,0.922,1.485,2.117,1.013,0.666,1.074,0.821,0.784,0.998,0.949,1.562,1.163,4.448 +NM_033406,0.959,0.882,1.119,0.999,1.24,0.984,0.859,0.991,1.693,1.014,1.125,0.84,0.707,1.141,1.207,1.453,0.832,0.953,1.131,0.925,0.84,0.8,0.965,1.102,0.779,1.008,1.105,1.095,0.661,1.128,1.452,1.019,1.561,1.141,1.751,1.004,1.052,1.092,1.081,0.776,1.384,0.968,0.95,0.953,1.033,0.973,1.048,0.932,0.852,0.869,0.911,0.825,1.102,1.151 +NM_033409,0.711,0.862,1.551,0.887,0.521,1.214,0.698,0.645,0.528,0.584,0.909,0.538,0.628,0.612,0.978,1.61,2.397,0.777,1.07,0.731,0.702,0.626,1.432,0.808,0.597,0.603,1.594,0.516,0.723,1.837,0.56,0.825,1.567,1.396,0.59,1.035,1.118,0.776,1.562,1.812,1.026,1.063,0.712,1.556,1.163,0.914,0.989,0.682,1.363,1.623,0.832,1.049,0.782,2.337 +NM_033411,0.706,1.194,0.859,0.882,0.776,1.831,0.964,0.719,0.888,0.704,1.623,0.884,0.856,0.803,1.104,1.521,0.756,0.927,0.701,1.434,0.581,0.832,1.224,0.788,0.811,0.686,0.87,0.653,0.623,1.569,0.878,1.432,1.059,1.415,0.65,1.052,1.516,0.667,1.057,1.081,0.79,1.448,0.909,0.923,0.721,1.419,0.858,0.64,1.166,0.69,1.321,0.881,0.711,1.53 +NM_033413,1.029,0.972,0.982,1.088,1.129,0.931,1.125,0.945,1.05,1.094,0.996,0.928,0.956,0.819,1.034,0.996,0.992,1.036,1.005,1.086,1.041,0.971,0.851,1.092,1.037,0.97,0.84,1.134,0.952,0.993,0.986,1.072,1.134,1.083,1.043,0.995,0.991,1.138,1.04,1.105,1.119,0.974,0.952,0.927,1.001,1.025,1.077,1.086,1.093,1.061,1.047,0.985,1.06,1.101 +NM_033414,0.383,1.185,1.174,0.649,0.875,1.382,0.783,0.495,0.852,1.056,1.136,0.866,0.496,0.412,0.814,1.714,0.789,1.029,0.88,1.301,0.375,0.788,1.483,0.983,0.519,0.512,1.034,0.76,0.523,1.311,0.818,1.13,3.696,1.274,0.375,1.466,1.066,0.955,1.086,1.257,1.038,1.25,0.876,0.941,0.89,1.226,1.083,0.65,1.314,0.648,1.17,1.139,0.584,1.362 +NM_033415,0.668,1.332,1.029,0.641,1.042,0.896,0.555,0.595,1.25,1.331,0.772,1.093,0.683,0.585,0.79,1.144,0.977,0.898,1.197,0.98,0.618,0.88,1.648,1.237,0.534,0.791,1.092,0.884,0.589,0.999,0.822,0.996,1.587,1.173,0.331,1.145,1.019,1.024,1.308,0.829,1.358,1.156,0.729,1.002,1.121,1.001,1.023,0.751,1.095,0.66,1.062,1.086,0.887,1.371 +NM_033416,0.715,0.841,0.912,0.762,0.634,0.929,0.658,0.516,0.996,1.039,0.815,0.77,0.644,0.568,0.89,1.503,0.804,0.823,1.076,0.841,0.661,0.714,1.719,1.203,0.669,0.893,1.134,0.635,0.485,1.083,0.829,1.598,3.096,1.131,0.192,1.308,1.031,0.702,1.779,1.182,1.034,1.107,0.686,2.533,1.189,0.803,0.923,0.724,0.858,0.801,1.126,1.002,0.996,2.986 +NM_033418,0.77,1.17,1.274,0.751,0.838,1.221,0.797,0.961,1.252,0.874,1.171,0.947,0.807,0.7,0.83,0.97,0.917,1.012,1.077,1.0,0.578,0.997,1.051,1.131,0.729,0.759,1.236,1.0,0.575,1.297,1.075,1.654,3.172,1.675,0.524,1.023,1.048,0.874,1.193,1.066,1.012,1.221,0.685,0.858,0.988,0.741,0.926,0.84,0.854,0.768,1.113,0.821,0.717,1.906 +NM_033419,0.791,1.056,1.093,0.662,1.183,0.919,0.468,0.5,1.547,1.068,0.831,0.666,0.649,0.755,0.773,1.185,0.819,1.217,1.172,1.519,0.36,1.077,0.836,1.174,0.584,1.423,0.546,1.129,0.567,1.331,0.96,1.288,0.941,1.165,0.566,0.651,0.992,1.31,1.463,1.181,1.064,1.307,0.804,1.317,1.312,0.776,1.161,1.337,0.78,0.803,1.022,0.634,0.756,0.56 +NM_033420,0.978,1.072,0.872,1.1,0.897,1.042,0.734,0.875,0.98,0.955,1.348,0.783,0.879,0.868,0.9,0.875,1.453,1.077,0.99,0.886,0.947,1.406,1.062,1.116,0.954,1.15,0.985,0.803,1.226,1.141,0.87,1.058,0.889,0.912,0.732,0.811,0.929,1.124,1.375,0.972,0.901,1.083,1.003,1.255,0.84,1.023,1.047,1.331,1.082,0.947,0.823,0.891,0.821,0.927 +NM_033421,0.964,0.962,1.028,1.044,0.941,1.078,0.85,0.925,0.917,1.084,0.966,1.033,1.055,0.947,1.139,0.98,1.075,1.013,0.975,0.995,1.032,1.067,0.907,1.157,0.918,1.132,1.059,1.029,0.68,1.212,0.876,1.176,0.934,1.019,0.972,0.873,0.843,1.083,1.05,1.016,0.95,0.983,1.117,0.979,1.157,1.082,0.98,1.1,0.929,0.962,1.0,0.983,1.052,0.976 +NM_033423,0.87,1.165,1.405,0.904,0.942,1.15,1.129,0.94,1.029,1.054,0.904,0.956,0.93,0.806,0.859,0.852,0.787,0.809,0.841,0.954,0.782,1.049,1.535,1.156,1.211,0.82,1.14,1.039,0.786,1.172,0.883,1.264,1.038,0.834,0.891,0.827,0.845,0.942,1.085,0.867,1.094,1.015,1.108,0.853,0.886,0.977,0.946,1.019,0.794,0.865,0.916,0.959,1.174,2.386 +NM_033426,1.142,0.792,1.477,0.866,1.688,0.942,0.65,0.803,2.013,1.182,0.94,0.756,1.099,1.259,1.31,1.371,0.851,0.997,1.602,1.226,0.781,0.762,1.163,1.005,0.693,1.129,0.923,1.469,0.53,0.842,1.745,0.806,1.25,1.075,1.224,0.737,0.986,1.081,0.924,0.86,1.196,1.074,0.556,0.904,1.161,0.969,1.01,1.523,0.849,0.898,0.862,0.641,1.149,1.508 +NM_033427,0.989,0.999,1.147,0.985,1.048,1.02,1.014,0.992,1.227,1.019,1.128,1.109,0.948,0.922,1.113,0.937,1.1,0.882,0.991,1.038,0.899,1.069,1.104,0.929,0.97,1.03,0.98,0.931,0.993,0.865,1.081,1.078,1.06,1.106,1.271,0.979,0.907,0.893,0.963,0.984,0.819,1.025,1.044,0.907,1.06,1.244,0.941,1.001,1.029,0.896,1.071,0.913,1.066,1.024 +NM_033430,0.994,0.985,0.903,1.045,1.012,1.022,1.039,0.984,0.972,1.144,0.943,1.202,0.999,1.07,0.932,1.133,0.989,0.966,0.961,1.022,0.932,0.938,1.005,0.969,1.006,1.06,0.97,1.028,0.872,0.999,0.902,0.805,0.968,0.834,1.108,1.018,0.957,1.071,1.034,1.04,0.938,1.076,1.052,0.934,1.088,1.173,0.915,1.047,0.898,1.109,0.993,1.023,0.955,0.89 +NM_033438,1.068,1.045,1.013,1.079,0.982,0.981,0.919,0.943,0.991,1.0,1.01,1.057,1.113,0.849,1.13,1.044,0.987,0.957,1.04,0.927,1.077,1.136,0.985,0.901,0.973,1.054,1.0,0.951,0.889,1.223,1.019,1.336,0.977,0.986,0.963,1.028,1.036,0.9,1.007,2.89,1.003,1.021,1.09,1.049,0.944,0.982,1.124,0.933,0.921,0.938,0.941,1.166,1.034,0.939 +NM_033439,0.751,2.479,1.232,0.963,0.795,1.169,1.293,0.762,0.803,1.121,1.183,1.025,0.732,0.892,1.057,0.979,0.911,0.815,0.869,0.994,0.792,0.685,0.887,1.511,2.047,0.734,1.918,0.952,0.85,1.364,0.902,0.895,1.273,3.564,0.738,1.175,1.451,0.819,0.899,1.804,1.142,1.443,1.275,0.769,1.018,0.846,1.013,0.617,0.809,0.931,0.822,1.023,2.229,1.041 +NM_033440,0.929,0.904,0.879,69.29,0.964,0.88,1.083,1.069,1.147,1.019,1.032,0.944,1.032,0.914,1.083,1.044,1.015,0.989,0.976,0.988,0.943,0.958,0.924,1.084,1.109,1.078,1.187,1.153,0.758,1.196,1.025,0.973,0.808,0.969,0.871,1.165,1.015,1.166,1.005,1.051,0.98,0.982,1.201,1.032,0.999,0.904,1.092,0.985,0.776,0.999,0.958,1.004,0.87,0.953 +NM_033445,0.779,2.571,1.388,0.682,1.067,0.855,0.654,0.82,1.542,0.896,1.201,0.899,0.893,1.166,1.106,0.979,1.363,0.915,1.06,0.772,0.884,0.867,1.042,1.035,0.701,0.898,1.69,1.296,0.477,0.677,1.169,2.053,1.147,0.827,1.961,0.827,1.081,1.19,1.048,0.818,1.523,0.943,0.722,1.736,1.093,0.826,1.258,0.984,0.919,0.804,0.896,0.875,0.819,0.718 +NM_033448,0.879,0.988,1.008,0.956,0.927,0.984,1.231,1.092,1.003,0.897,1.024,0.97,0.85,0.998,1.047,1.005,0.981,0.934,0.913,0.961,1.235,0.982,0.939,1.091,1.001,1.145,1.24,1.027,0.674,1.007,1.056,0.882,0.97,0.915,0.972,1.024,0.937,1.026,1.055,0.958,0.876,1.023,1.135,1.012,0.916,0.942,0.947,0.92,0.967,0.943,0.974,1.015,1.127,0.999 +NM_033449,1.06,1.031,0.997,1.228,0.981,0.984,0.995,1.129,1.171,1.006,0.966,1.02,1.061,0.972,1.183,1.053,0.994,1.067,1.014,0.982,1.093,1.002,1.033,0.948,1.199,0.983,1.178,0.941,1.064,1.038,1.052,0.978,1.009,0.993,1.095,1.137,0.982,1.08,1.074,1.033,1.016,0.976,0.98,1.019,0.975,0.979,0.946,0.904,0.9,0.989,1.046,1.017,1.04,0.943 +NM_033450,0.654,1.221,1.351,0.743,0.769,0.939,0.871,0.583,1.07,0.76,1.259,0.674,0.566,0.892,1.166,1.81,0.775,0.918,1.206,0.984,0.624,0.756,1.447,0.971,0.67,0.824,1.371,0.714,0.614,1.57,0.768,1.32,1.675,1.419,0.419,1.172,1.395,0.839,1.324,1.386,0.972,1.139,0.765,1.368,0.95,1.328,0.991,0.702,0.994,0.8,1.643,0.764,0.938,1.445 +NM_033452,0.565,1.01,0.951,0.815,0.756,1.549,0.868,0.496,0.734,0.862,1.129,0.747,0.515,0.62,0.966,1.531,0.715,0.914,0.792,1.261,0.731,0.613,1.348,0.705,0.639,0.715,0.995,0.7,0.752,1.217,0.752,1.601,1.207,1.263,0.435,1.384,1.132,0.819,2.657,1.416,0.976,1.266,1.097,1.948,0.74,1.234,0.73,0.584,1.329,0.692,1.598,1.363,0.871,1.462 +NM_033467,0.989,1.374,0.887,1.104,0.915,1.191,0.909,1.37,1.105,0.724,0.941,0.813,1.052,0.839,1.033,1.113,0.873,1.129,1.063,1.065,1.021,1.031,1.012,0.732,1.035,0.982,0.816,1.141,1.031,1.234,0.968,1.058,0.801,2.011,1.619,0.93,0.906,1.208,1.402,0.824,0.863,1.033,0.862,0.824,0.851,0.897,0.841,1.23,0.843,0.937,0.965,0.742,0.687,0.768 +NM_033468,0.997,1.07,0.93,1.065,0.951,0.973,0.972,1.076,1.04,1.091,1.097,1.076,1.038,0.969,1.083,0.968,0.91,0.905,0.947,0.843,0.947,0.925,1.053,1.003,1.078,1.006,0.955,0.916,1.129,1.134,1.033,1.1,1.031,1.003,0.887,0.905,1.119,0.917,1.182,1.118,1.028,0.831,1.165,1.039,0.974,1.035,0.855,0.974,0.978,0.969,1.068,0.958,0.97,0.967 +NM_033481,1.002,1.073,0.984,1.05,0.983,0.984,1.052,0.97,0.993,0.902,0.95,1.0,1.154,0.98,1.101,0.854,1.252,1.182,0.994,1.205,0.966,0.987,1.046,1.029,1.053,0.956,1.001,0.906,1.045,1.131,1.057,0.951,0.973,0.946,0.93,1.009,1.077,1.091,1.095,0.994,1.094,1.085,0.897,0.985,0.879,1.0,1.005,0.986,0.88,0.963,1.056,0.958,1.081,0.909 +NM_033487,1.008,1.17,0.9,0.965,0.828,0.969,0.745,0.594,1.061,0.851,0.911,0.779,0.855,0.884,0.975,1.108,1.001,0.859,0.94,0.881,0.888,0.873,1.023,1.072,0.841,1.151,1.234,0.853,0.536,1.018,0.778,1.161,1.347,1.023,0.783,0.972,1.056,0.933,1.553,1.227,1.122,1.097,0.924,1.55,0.94,0.971,1.038,0.848,1.214,0.986,0.931,0.771,0.888,1.166 +NM_033495,1.054,1.129,0.908,0.976,0.921,0.971,0.947,1.228,1.078,0.86,0.97,1.054,0.968,1.073,0.961,0.978,1.17,1.105,1.043,0.996,1.177,1.043,0.832,0.913,1.029,0.991,0.989,0.976,1.484,1.182,1.07,1.009,0.91,0.967,0.985,0.994,0.944,1.182,0.941,0.966,0.92,1.103,0.846,1.004,1.074,0.843,0.949,1.117,1.001,1.0,1.07,0.983,0.882,0.929 +NM_033496,0.995,0.962,1.068,0.999,0.996,1.078,1.002,0.935,0.852,1.0,0.962,0.936,0.893,0.977,0.935,0.975,0.978,1.095,1.012,1.006,1.056,1.06,1.05,0.955,0.921,0.976,1.273,1.043,0.922,1.0,1.092,0.975,1.093,0.898,0.887,0.97,1.182,0.987,0.97,1.062,0.866,1.036,1.008,0.883,0.991,0.965,1.054,0.956,1.148,1.048,0.916,0.96,0.962,0.989 +NM_033500,1.007,0.872,0.995,0.848,1.107,0.974,1.142,1.18,1.023,1.121,0.989,1.001,1.034,1.108,1.089,0.909,0.933,0.899,1.063,1.056,1.15,0.941,0.995,1.069,1.182,1.012,1.013,0.971,1.021,1.035,0.98,1.121,1.046,0.939,0.926,0.93,1.0,0.981,1.093,0.937,0.912,1.004,1.074,1.146,0.966,0.911,0.973,1.045,1.133,0.954,0.985,0.958,1.103,0.947 +NM_033501,0.936,0.835,1.167,0.716,1.031,0.961,0.636,1.156,1.011,0.86,0.798,0.842,0.845,0.897,0.871,1.119,0.999,1.0,1.082,0.875,0.751,1.074,1.036,0.864,0.728,0.978,1.084,0.966,0.531,1.163,1.085,0.985,1.354,0.977,1.755,1.103,0.827,1.124,1.471,1.096,1.244,0.985,0.649,1.244,1.148,0.945,0.93,1.151,0.966,1.0,1.02,0.698,0.766,1.078 +NM_033503,1.089,1.119,0.899,0.96,1.047,1.011,0.982,0.918,0.998,1.02,0.973,1.107,1.035,1.003,1.277,0.826,0.912,1.048,0.952,0.988,0.976,0.914,0.994,0.94,1.005,1.059,0.856,1.006,1.0,1.021,0.889,1.073,1.156,1.009,1.102,0.935,0.85,1.134,1.005,1.125,1.081,1.107,0.916,0.866,1.106,1.105,0.96,0.941,1.131,0.999,1.127,1.177,0.971,1.055 +NM_033504,0.63,0.738,0.645,1.413,0.442,2.801,0.998,0.504,0.504,0.481,3.014,0.546,0.701,0.346,1.32,3.883,0.548,1.283,1.118,1.868,0.45,0.609,2.106,0.735,1.056,1.01,0.709,0.543,0.846,1.283,0.536,0.29,1.279,2.618,0.669,0.869,1.785,0.476,2.646,0.467,0.622,2.026,1.076,1.518,0.616,1.7,0.87,0.945,2.121,0.973,1.626,0.716,0.782,0.725 +NM_033506,1.045,0.89,0.949,0.968,0.911,1.037,1.183,1.02,1.013,0.861,1.106,1.056,0.862,1.057,0.924,0.862,0.979,0.918,0.963,0.962,1.081,0.903,1.077,0.999,1.021,0.973,0.987,0.925,0.933,1.069,1.038,1.108,1.03,1.044,0.943,0.951,1.063,1.166,1.007,0.976,1.172,0.967,1.038,0.926,1.055,0.901,1.134,0.992,0.87,1.049,1.177,0.988,1.001,1.028 +NM_033507,0.966,0.986,1.001,0.968,1.037,0.937,0.811,0.964,1.088,0.875,0.996,1.004,1.004,0.807,0.991,0.965,0.93,1.049,0.894,1.045,1.042,0.873,1.142,0.977,0.96,1.002,0.951,1.238,0.985,0.893,0.911,1.017,1.036,1.149,0.942,1.075,1.018,1.043,0.98,1.063,1.121,1.083,1.074,0.995,1.004,0.827,1.043,1.024,0.861,1.091,0.882,1.074,1.055,0.901 +NM_033510,0.916,0.883,0.922,1.097,0.777,1.453,1.097,0.943,0.87,1.081,1.718,0.891,0.919,0.935,1.068,1.712,0.841,1.014,0.782,0.996,0.698,0.954,2.113,0.832,1.141,0.98,0.867,0.681,1.396,0.95,0.752,0.939,0.99,1.345,0.915,1.182,1.277,0.878,1.701,0.931,0.793,0.98,1.031,1.231,0.876,1.641,0.945,1.043,1.046,0.856,1.18,1.072,0.857,1.718 +NM_033512,0.992,1.157,0.975,1.004,0.861,1.097,1.14,0.818,1.31,0.986,0.978,0.906,0.934,0.858,1.213,0.886,0.876,1.003,0.903,1.15,1.147,1.04,0.953,0.921,1.053,0.948,0.996,0.9,0.936,1.368,1.013,3.719,1.336,2.688,1.003,0.841,0.973,0.791,1.059,0.949,0.925,1.472,0.981,0.876,0.988,1.114,0.762,0.909,0.836,0.988,0.899,1.214,1.116,1.247 +NM_033514,0.978,1.008,0.911,0.908,1.04,1.064,0.931,1.064,1.038,0.975,0.98,1.031,0.978,1.501,1.058,0.953,0.87,1.015,0.924,1.01,1.054,1.005,1.038,0.943,1.029,0.976,1.026,1.006,0.965,1.004,1.01,0.904,1.114,0.879,0.953,1.02,1.094,0.943,1.045,1.062,0.908,0.998,1.71,0.937,1.019,1.003,1.072,1.077,0.9,0.901,1.03,0.89,0.94,0.955 +NM_033515,0.657,1.751,0.938,1.013,0.781,1.93,1.281,0.594,0.837,0.709,1.486,0.75,0.808,0.611,1.125,2.099,0.976,0.817,0.653,1.305,0.644,0.706,1.453,0.757,0.963,0.578,1.068,0.825,0.989,2.036,0.78,1.386,1.495,1.952,0.649,0.649,1.371,0.695,1.751,1.166,0.823,1.306,0.885,0.843,0.803,1.303,1.169,0.669,1.338,0.887,1.48,0.767,0.667,1.925 +NM_033516,1.044,0.936,0.9,0.82,0.991,1.023,1.098,1.039,1.092,0.944,0.862,1.066,0.897,1.013,1.172,1.054,1.018,0.926,0.936,1.106,0.995,1.001,0.919,1.065,0.824,0.874,1.136,0.988,1.517,1.074,1.024,0.904,1.04,0.841,0.927,0.96,1.037,0.981,1.007,0.781,0.895,1.048,1.114,0.99,1.022,0.959,0.975,1.005,1.094,1.066,1.043,0.863,1.044,1.021 +NM_033518,1.018,1.129,0.794,0.979,1.029,0.924,0.855,0.739,1.056,0.839,0.996,0.813,0.913,0.915,0.807,0.871,0.846,1.01,1.058,0.95,0.843,0.861,1.024,1.128,1.046,1.094,1.373,1.083,0.896,1.025,0.924,1.121,1.142,1.084,0.932,0.856,0.857,1.069,2.389,1.122,0.906,0.959,0.97,1.542,1.097,0.846,0.994,0.975,0.915,1.004,1.168,1.281,1.029,1.089 +NM_033519,1.013,0.954,1.223,1.052,1.006,1.008,1.074,0.959,1.021,0.854,1.004,0.928,1.006,1.011,1.073,0.798,0.915,1.085,1.068,1.049,0.974,1.048,0.896,1.032,1.118,1.082,0.999,0.947,1.031,0.992,1.113,1.029,1.206,1.065,0.868,0.967,1.113,0.987,0.948,1.12,0.867,1.073,0.977,1.174,1.015,1.005,0.973,1.065,0.852,0.929,0.972,1.025,0.98,1.086 +NM_033540,1.067,0.903,1.077,1.004,0.994,0.978,1.025,0.894,1.043,1.006,1.008,0.927,1.086,0.997,0.904,0.934,0.965,1.023,0.966,0.938,0.984,1.019,1.056,1.003,0.936,0.982,0.968,1.158,0.782,0.948,0.944,1.18,0.935,0.89,1.121,1.091,1.005,1.138,1.017,0.997,1.005,0.902,1.003,0.952,0.915,1.08,0.917,1.073,1.065,0.869,1.079,1.022,1.198,0.891 +NM_033543,1.041,0.95,1.202,1.188,1.039,1.014,1.132,0.875,1.077,0.959,1.04,0.966,0.971,0.919,0.943,1.038,1.013,0.909,0.963,0.947,0.896,0.971,1.031,0.961,1.0,0.996,1.008,0.997,1.385,1.032,1.165,1.071,0.88,1.057,1.133,1.014,1.095,0.86,0.989,0.909,1.075,1.006,0.927,0.922,1.207,0.897,1.149,0.943,0.999,1.189,1.012,0.959,0.999,1.053 +NM_033546,0.844,1.214,0.921,0.904,1.014,1.388,0.677,0.913,1.082,0.846,1.357,1.006,0.838,0.668,0.986,2.164,0.775,1.189,1.36,1.128,0.635,0.843,1.067,1.054,0.602,1.119,0.964,1.007,0.584,1.355,0.957,1.003,1.074,1.38,1.097,0.835,1.476,1.07,1.03,0.712,1.014,1.102,0.844,1.08,0.887,1.135,1.131,1.2,0.977,0.812,1.179,0.744,0.919,0.864 +NM_033547,1.031,0.927,1.0,1.0,0.971,0.861,1.073,0.961,1.174,0.961,1.089,1.02,0.925,1.146,0.984,1.061,0.922,1.105,0.946,1.202,1.155,0.866,0.868,0.975,1.096,1.051,1.043,0.942,0.913,1.073,1.028,0.959,0.954,1.03,0.954,1.041,1.053,0.952,0.976,0.947,1.282,1.165,1.105,0.916,0.968,1.091,0.972,0.89,0.982,0.946,1.041,0.874,1.226,0.923 +NM_033549,1.089,1.056,1.188,0.895,0.8,1.015,0.676,0.952,1.018,0.932,1.227,0.81,1.042,0.882,1.072,1.137,1.072,0.828,1.608,0.796,0.844,1.096,0.999,0.949,0.928,1.111,1.378,0.81,0.647,1.001,1.138,1.205,3.221,1.401,0.772,0.562,0.865,1.193,1.647,0.852,1.164,0.976,0.56,1.006,1.015,0.853,0.824,1.148,0.792,1.122,0.83,0.781,0.996,1.494 +NM_033553,0.935,0.974,0.975,1.214,1.014,1.112,0.965,0.907,0.979,0.942,1.365,0.902,1.0,0.912,4.91,3.091,0.899,0.896,0.968,1.261,1.012,0.87,2.726,1.04,0.907,1.129,0.873,0.824,1.219,0.961,0.892,0.892,1.021,0.981,1.067,2.011,1.871,1.037,1.081,3.725,0.931,0.962,3.046,0.89,0.97,0.883,5.286,0.945,1.252,0.927,1.03,1.183,0.862,1.111 +NM_033554,0.635,2.755,1.918,0.375,0.91,1.121,1.906,0.379,1.2,0.826,0.502,0.569,0.813,0.472,1.039,0.657,0.871,0.438,0.878,0.482,0.521,0.699,1.528,1.161,0.623,0.636,1.76,0.844,0.145,2.234,0.84,3.8,1.113,2.044,0.0819,0.251,0.95,0.81,1.648,0.511,1.147,2.224,0.338,1.463,0.81,0.61,0.49,0.503,0.572,0.549,0.812,1.962,1.806,2.695 +NM_033557,0.7,0.947,1.202,0.709,1.069,0.988,0.857,0.666,1.118,1.164,0.777,1.084,0.843,0.603,0.807,1.583,0.936,1.211,1.211,1.064,0.594,1.01,1.538,1.284,0.581,0.747,1.14,0.902,0.488,0.937,0.865,1.195,3.417,1.045,0.397,0.823,0.857,1.01,1.642,1.262,1.0,0.887,0.795,0.855,1.19,0.969,1.206,1.051,1.341,1.005,0.979,1.052,0.861,1.286 +NM_033625,0.689,1.12,1.002,0.755,0.968,1.203,0.544,0.721,1.593,1.312,1.235,1.142,0.856,0.635,1.138,2.072,0.981,1.379,1.763,0.838,0.847,1.128,1.189,1.29,0.51,1.211,1.365,0.927,0.483,0.828,0.843,0.998,1.693,0.86,0.353,0.816,1.054,1.535,1.466,0.646,1.253,0.866,0.827,1.502,1.077,0.687,1.214,0.939,0.836,0.955,1.148,0.786,1.257,1.205 +NM_033626,1.018,0.643,2.448,0.632,1.651,0.792,0.447,1.176,2.371,2.257,0.502,1.342,0.878,1.143,1.426,1.001,1.946,1.175,1.882,0.88,0.666,1.775,0.702,2.119,0.36,1.223,2.238,1.768,0.461,0.924,1.952,1.06,1.21,0.747,1.01,0.81,0.575,1.475,0.769,0.487,2.323,0.724,0.699,0.481,1.981,0.722,1.26,1.483,0.695,1.4,0.74,0.745,1.554,1.318 +NM_033629,0.881,0.999,1.055,1.155,0.844,0.722,1.024,0.864,1.102,0.981,0.854,1.147,0.972,0.771,0.905,1.024,0.927,0.973,1.189,0.986,0.926,0.958,1.36,0.875,0.796,0.98,1.143,0.815,0.868,0.839,0.901,1.267,1.365,0.854,0.636,1.119,0.789,0.848,1.23,0.998,0.898,1.073,0.837,1.154,1.007,0.9,1.037,0.864,0.95,1.059,0.771,0.993,1.037,1.385 +NM_033630,0.555,1.008,1.007,0.653,0.78,1.232,0.793,0.441,0.918,0.946,1.023,0.627,0.656,0.451,0.789,1.876,0.734,1.116,1.126,0.975,0.631,0.705,1.911,0.838,0.695,0.77,0.768,0.722,0.566,1.377,0.833,2.369,1.658,1.54,0.573,0.903,1.082,0.899,1.638,1.431,0.882,1.121,0.624,1.327,1.006,0.786,0.991,0.917,0.975,0.786,1.129,0.843,0.8,1.766 +NM_033632,1.29,1.127,0.713,0.834,1.048,1.153,0.794,0.761,1.655,1.095,0.686,0.972,1.242,0.782,0.619,0.735,0.916,0.664,0.692,0.961,0.723,1.138,0.73,1.298,1.041,0.92,1.141,1.195,1.001,1.059,0.742,1.12,0.999,0.794,1.253,1.138,0.761,0.967,1.383,0.873,1.209,0.868,1.236,1.356,0.784,1.016,1.522,0.898,1.092,1.124,0.837,0.708,0.855,1.207 +NM_033634,1.034,1.121,1.033,1.042,0.803,0.973,0.968,0.994,1.141,1.163,1.032,0.957,0.954,1.039,0.919,0.91,1.049,1.053,0.988,1.069,1.036,1.149,0.926,1.15,1.102,0.922,0.937,0.918,0.966,1.062,1.054,1.022,1.029,0.919,1.202,0.785,0.871,1.107,0.994,0.975,0.976,0.914,0.87,0.942,0.859,1.142,0.941,0.999,0.99,1.141,0.998,0.991,0.927,0.864 +NM_033635,1.04,1.098,0.905,1.058,1.099,0.921,0.896,1.042,1.011,1.004,1.073,1.032,0.925,0.918,0.811,1.018,0.954,1.005,0.827,1.004,0.995,1.002,0.965,1.061,0.987,1.104,0.997,1.029,0.845,0.972,0.899,1.008,0.958,0.947,1.024,0.997,0.954,1.007,1.057,1.119,0.985,0.928,1.014,0.88,0.989,1.021,0.925,0.999,0.953,1.02,1.005,0.946,1.058,1.122 +NM_033637,1.052,0.97,1.043,1.046,1.031,0.943,1.06,1.291,1.094,1.035,1.11,1.031,0.964,0.95,0.94,1.025,0.986,1.222,0.987,0.877,1.207,0.956,1.039,0.945,0.982,1.026,0.952,0.939,1.271,0.911,0.921,0.979,1.15,0.807,1.106,0.936,1.003,1.091,0.94,0.977,0.851,0.792,1.28,0.928,1.109,0.979,0.998,0.952,1.028,1.021,1.053,1.095,1.153,0.959 +NM_033640,1.113,0.85,1.061,0.969,0.982,1.111,0.879,1.084,1.07,1.212,0.975,0.911,1.027,0.907,0.829,1.005,0.875,1.074,1.02,1.047,1.056,1.0,0.906,0.929,0.97,0.898,1.028,0.796,1.032,0.899,1.034,0.933,1.021,0.973,1.0,0.958,0.945,1.088,1.031,1.016,1.056,0.947,1.395,1.016,0.975,0.898,1.05,0.934,1.047,0.944,1.009,0.923,0.91,1.14 +NM_033641,0.931,1.018,1.014,0.869,0.944,0.956,1.171,0.971,1.238,0.905,1.041,1.283,0.986,1.077,1.021,1.127,0.997,1.079,0.942,0.914,1.152,0.981,1.064,1.118,1.104,0.927,0.884,0.998,1.295,1.046,0.889,1.006,0.985,0.923,0.915,0.901,0.942,1.056,1.004,0.88,0.958,1.09,0.941,1.016,0.942,1.018,0.992,1.073,1.043,0.859,0.968,0.963,0.975,0.99 +NM_033642,1.888,2.214,2.008,1.8980000000000001,1.83,2.2990000000000004,1.903,1.879,2.158,1.9369999999999998,2.0229999999999997,1.871,2.173,2.286,1.9329999999999998,2.385,2.007,2.0380000000000003,1.9340000000000002,2.135,1.8119999999999998,1.876,2.4130000000000003,2.009,2.069,1.786,1.8719999999999999,1.915,1.955,2.138,1.8519999999999999,2.068,1.923,2.227,2.18,2.057,1.8,1.874,2.225,1.8860000000000001,2.026,2.5629999999999997,2.104,1.902,1.936,2.3019999999999996,2.287,1.988,2.036,1.7839999999999998,2.125,1.978,2.197,1.854 +NM_033643,0.656,0.938,1.537,0.545,1.1,1.073,0.596,0.939,1.238,1.025,0.745,1.338,1.041,0.462,0.941,1.613,0.828,1.085,1.14,1.185,0.434,0.948,1.671,1.398,0.457,0.912,1.324,1.163,0.259,0.877,1.201,0.954,1.285,1.18,0.304,0.994,0.752,1.189,1.233,0.895,1.061,1.198,0.394,1.084,1.371,0.512,0.943,1.033,0.938,0.915,0.965,0.642,0.737,1.422 +NM_033644,1.06,0.896,0.993,1.1,1.136,1.026,0.823,0.821,0.912,0.919,1.038,0.989,0.99,0.9,0.945,0.831,0.932,1.09,1.032,1.074,0.968,1.019,1.133,1.056,1.005,0.917,0.926,0.99,0.891,0.932,0.881,0.815,0.999,0.945,1.037,1.027,1.034,1.112,0.88,0.93,1.096,0.959,1.049,1.022,1.055,1.134,1.028,0.907,0.98,1.043,1.059,0.987,0.92,0.907 +NM_033645,0.9,0.865,1.581,0.814,1.124,1.057,0.706,0.741,1.704,0.936,0.768,0.792,0.925,0.996,1.091,1.002,1.39,0.78,1.378,0.798,0.595,0.64,0.787,1.395,0.661,0.9,1.57,1.091,0.335,1.086,1.617,1.597,2.15,1.381,1.413,0.446,0.818,0.708,1.195,0.61,1.282,0.97,0.804,0.705,1.809,0.847,1.01,0.769,0.746,1.279,0.983,0.641,1.387,2.27 +NM_033646,1.9,2.074,1.943,1.917,1.956,2.204,2.0949999999999998,2.419,1.988,1.886,1.9209999999999998,2.231,1.909,1.976,1.9340000000000002,1.94,1.8519999999999999,1.85,2.226,1.9939999999999998,2.332,1.912,1.94,1.774,1.979,2.3600000000000003,2.056,1.9489999999999998,1.4889999999999999,1.8860000000000001,2.0869999999999997,2.205,2.239,1.986,2.122,2.121,2.008,1.976,1.78,1.959,1.9969999999999999,1.913,1.959,2.003,1.991,2.057,2.005,1.827,2.13,2.026,2.082,1.929,1.936,2.04 +NM_033647,0.984,0.962,0.994,1.047,0.973,1.011,1.113,0.959,1.066,0.983,1.008,1.049,0.949,1.032,0.925,0.997,1.018,1.002,0.992,0.957,1.036,0.956,0.941,0.997,1.021,0.867,1.137,0.956,0.97,0.923,1.101,1.014,0.968,0.887,1.001,1.07,0.946,0.923,1.005,1.081,1.084,0.963,1.035,1.18,0.96,1.014,0.881,0.95,1.102,0.94,1.099,1.004,1.129,0.972 +NM_033649,0.881,1.07,0.974,1.001,0.849,1.128,0.866,1.195,0.997,1.016,0.943,0.964,1.086,0.871,0.971,0.976,0.941,0.875,0.929,1.06,0.971,0.948,1.128,0.932,0.902,1.131,0.999,0.87,1.122,0.99,0.979,2.08,1.898,0.929,1.074,1.233,0.919,0.999,0.963,1.07,0.929,0.91,1.156,0.996,0.91,1.074,0.95,1.023,0.827,0.922,1.058,0.918,0.822,1.045 +NM_033655,1.048,1.006,1.261,0.912,0.943,1.005,0.851,1.006,1.042,0.915,1.268,1.094,0.986,1.028,0.926,1.06,1.033,1.065,1.027,1.004,0.948,0.894,1.141,0.916,0.913,0.841,1.062,0.99,0.797,0.924,1.023,0.903,0.944,1.051,0.947,1.006,0.949,1.014,1.087,0.89,1.112,1.052,1.01,0.933,0.896,0.919,0.959,0.971,0.907,1.01,1.131,1.076,0.921,1.403 +NM_033656,0.911,0.977,1.064,0.848,1.01,1.17,0.949,0.7,1.166,0.811,1.22,0.948,0.914,0.802,0.86,1.132,0.893,1.062,0.855,0.826,0.824,0.896,1.064,1.094,0.871,0.853,0.911,1.091,0.867,1.216,1.098,1.008,1.063,1.172,0.835,0.8,1.203,0.945,1.064,1.362,1.088,1.164,0.884,0.981,1.248,1.206,1.065,0.86,0.799,0.96,1.03,1.078,1.038,0.899 +NM_033660,1.023,1.102,1.197,0.936,1.012,1.021,0.991,1.041,1.103,1.078,0.974,0.908,1.108,0.939,0.911,1.011,1.016,1.024,0.874,1.006,1.031,0.92,1.01,0.972,1.03,1.046,1.093,1.099,1.054,0.891,1.004,0.924,0.996,0.969,1.054,0.968,0.951,1.208,1.002,0.915,0.922,0.924,1.074,0.917,0.961,0.964,0.864,1.114,0.979,1.086,1.064,0.916,1.073,0.915 +NM_033661,0.927,0.822,1.079,0.806,0.797,0.94,0.758,0.685,1.018,1.126,0.958,0.933,0.718,0.771,0.974,1.517,0.938,0.963,1.399,0.801,1.055,0.939,0.926,1.285,0.75,0.931,1.062,1.084,0.615,0.845,0.926,0.747,2.791,1.07,0.698,1.074,0.908,1.031,1.237,1.046,1.108,0.983,0.719,1.624,1.403,0.994,1.057,1.03,1.092,1.099,0.971,0.938,1.257,0.96 +NM_033664,1.094,0.996,0.837,0.98,1.102,1.044,0.819,0.875,1.036,0.937,0.994,0.95,0.878,0.893,0.998,1.054,1.07,0.987,0.955,0.91,0.962,1.055,0.991,1.071,1.044,0.898,1.136,1.092,1.594,1.133,1.014,1.147,1.036,0.99,0.992,0.923,0.99,1.166,0.978,1.014,1.211,0.773,0.984,1.037,1.092,1.023,0.905,1.013,0.912,0.897,1.067,1.026,0.973,1.102 +NM_033668,1.571,2.151,1.686,1.637,1.609,2.006,1.4649999999999999,1.5230000000000001,1.809,1.585,2.681,1.452,1.458,1.5750000000000002,1.7610000000000001,2.4509999999999996,1.538,1.623,1.519,2.2489999999999997,1.583,1.368,2.2729999999999997,1.552,1.542,1.571,1.653,1.9020000000000001,1.71,2.3280000000000003,1.818,3.816,3.519,2.315,1.661,2.1310000000000002,2.02,1.329,2.534,2.101,1.951,2.022,2.065,3.4399999999999995,1.541,3.3099999999999996,2.765,1.326,2.481,1.5299999999999998,2.351,1.932,1.869,2.831 +NM_033670,0.943,1.012,1.007,1.055,1.091,1.042,1.019,0.976,1.013,1.059,1.092,0.958,0.941,1.149,0.969,1.016,0.994,1.02,0.922,0.924,1.089,1.078,1.029,0.934,0.986,0.976,0.942,1.064,1.083,1.044,0.961,1.008,0.863,0.946,0.834,1.044,1.058,1.014,1.02,1.011,0.883,1.028,0.952,0.979,1.057,0.81,1.025,0.926,0.918,0.981,1.05,0.881,0.941,1.047 +NM_037370,2.057,2.33,2.4219999999999997,1.99,2.2880000000000003,2.253,1.561,1.334,2.536,1.9220000000000002,2.183,1.406,1.658,2.2640000000000002,2.173,2.0919999999999996,2.442,1.958,2.225,2.176,1.721,1.581,2.099,2.012,1.673,2.054,2.069,2.208,1.641,1.911,2.824,1.585,2.134,2.846,3.036,1.714,2.091,1.637,2.044,1.5270000000000001,2.315,2.009,1.5979999999999999,1.407,1.804,2.106,2.02,1.858,1.7349999999999999,1.655,1.918,1.561,2.018,1.8479999999999999 +NM_044472,1.914,1.4809999999999999,2.507,1.466,2.565,1.616,1.351,2.053,2.711,2.15,2.118,2.121,1.8370000000000002,2.007,1.892,3.182,2.033,2.388,3.0829999999999997,1.876,1.767,2.0340000000000003,1.9260000000000002,2.253,1.4829999999999999,2.4989999999999997,2.472,2.582,1.177,1.443,2.41,1.4769999999999999,3.242,1.79,2.963,1.7799999999999998,1.8849999999999998,2.368,2.346,1.967,2.336,1.4940000000000002,1.7770000000000001,1.581,2.498,2.043,2.6310000000000002,2.392,2.165,2.219,1.858,1.8499999999999999,2.523,2.606 +NM_048368,0.688,0.998,1.152,0.819,1.01,1.016,0.675,0.55,1.076,1.149,0.995,0.752,0.611,0.799,0.949,1.262,1.071,0.891,0.835,1.391,0.653,0.775,1.143,0.967,0.62,0.842,1.118,0.942,0.656,1.694,0.769,1.265,0.839,1.119,0.594,1.044,1.106,0.893,1.128,1.166,1.154,1.172,1.651,1.555,1.072,1.431,0.852,0.757,1.247,0.82,1.146,1.027,1.091,0.929 +NM_052811,1.149,1.021,1.05,1.027,0.997,0.988,0.857,0.829,1.201,1.086,0.934,1.34,1.051,0.759,1.007,0.954,0.919,0.998,1.012,0.981,0.835,1.009,0.97,1.018,1.057,0.855,1.004,1.068,0.599,1.016,0.874,1.059,1.094,0.919,1.075,1.108,0.869,0.941,0.903,0.977,1.108,0.787,0.937,1.408,0.787,0.939,0.951,1.066,1.108,0.976,1.017,1.138,0.977,1.1 +NM_052812,0.788,1.012,0.756,0.762,0.774,1.88,1.131,0.838,0.81,0.733,1.459,0.882,0.794,0.878,1.498,2.286,0.747,0.714,0.77,2.296,0.724,0.848,2.489,0.816,0.814,0.849,0.798,0.736,0.756,1.542,0.875,1.501,1.845,1.187,0.817,1.795,2.158,0.707,2.639,2.368,0.807,2.112,3.063,1.84,0.864,4.351,1.957,0.756,8.043,0.743,2.082,1.339,0.757,1.287 +NM_052814,1.174,1.001,1.246,0.811,1.075,0.81,0.874,0.837,1.16,0.955,0.809,0.966,1.031,0.956,1.031,0.715,1.286,1.091,1.158,0.798,0.921,0.993,0.92,1.242,0.738,1.054,1.499,1.173,0.74,1.163,1.145,1.244,1.015,0.85,0.923,2.713,0.855,1.037,0.911,1.964,1.103,0.939,0.878,1.297,1.28,0.909,0.874,1.098,0.832,1.141,0.883,1.358,0.95,1.107 +NM_052816,0.578,1.081,0.646,1.565,0.498,2.992,1.169,0.633,0.605,0.573,0.73,0.645,0.625,0.629,1.896,2.125,0.583,1.264,0.604,0.842,0.577,0.579,1.63,0.622,0.929,0.586,0.535,0.496,0.908,3.017,0.592,1.786,1.104,2.801,0.74,0.889,1.484,0.58,5.787,0.997,0.625,1.774,0.829,1.485,0.689,3.155,1.972,0.598,2.513,0.639,2.885,1.623,0.542,3.925 +NM_052817,1.386,0.885,1.694,0.879,1.683,0.812,0.745,1.354,2.017,1.481,0.654,1.392,1.146,1.354,1.219,1.008,1.407,1.134,1.918,0.78,1.239,1.646,0.818,1.912,0.888,1.526,1.269,1.543,0.796,0.793,1.612,1.167,1.031,0.847,1.135,0.827,0.737,1.491,0.69,0.881,1.546,0.84,0.846,0.903,1.777,0.725,0.979,1.646,0.723,1.33,0.939,1.13,1.395,1.06 +NM_052818,0.786,0.958,1.7,0.751,0.92,1.424,0.951,0.947,1.332,0.715,1.226,0.849,0.828,1.227,1.225,1.23,1.136,0.856,0.743,1.094,0.826,1.094,1.109,0.945,0.803,0.856,2.019,1.173,0.557,0.938,1.048,1.77,0.826,1.294,0.656,0.815,1.22,1.025,0.738,2.009,1.178,1.154,0.961,0.735,0.977,0.725,1.513,0.81,0.904,0.826,0.876,0.883,0.913,1.653 +NM_052819,2.226,2.064,1.9649999999999999,2.058,2.043,1.988,1.768,1.8940000000000001,2.07,2.165,2.0460000000000003,1.895,2.2510000000000003,2.067,2.048,1.993,2.003,1.9500000000000002,1.978,1.9460000000000002,1.9380000000000002,1.975,2.024,2.0140000000000002,1.923,2.029,2.153,2.097,1.8599999999999999,1.9169999999999998,2.049,1.813,1.83,1.951,2.26,1.9609999999999999,2.166,2.152,2.011,1.8980000000000001,2.135,1.876,2.42,1.9500000000000002,2.0149999999999997,1.934,1.976,2.147,1.88,1.9500000000000002,1.787,1.968,2.1479999999999997,2.1020000000000003 +NM_052820,0.542,0.822,1.169,0.919,0.61,1.462,0.725,0.56,0.912,0.441,1.407,0.441,0.745,0.711,1.438,2.208,1.176,0.642,0.961,0.925,0.515,0.698,1.401,0.772,0.651,0.616,1.107,0.557,0.756,1.235,0.706,1.751,0.832,1.077,0.853,0.557,1.591,0.655,1.937,0.468,0.929,1.396,1.15,1.182,0.736,1.274,1.22,0.677,1.64,0.764,1.442,0.83,0.741,0.727 +NM_052821,0.947,1.051,1.083,0.926,0.809,0.887,0.679,0.686,1.265,1.405,0.762,1.223,0.846,0.781,0.749,0.995,1.076,0.932,1.034,0.911,0.722,0.834,1.304,1.159,0.834,0.962,1.269,1.051,0.654,0.913,1.145,1.438,2.165,0.913,0.509,1.77,0.877,0.911,1.514,1.314,1.155,0.803,0.814,1.259,1.543,0.979,0.966,0.796,1.001,1.131,1.187,1.014,1.153,1.563 +NM_052822,0.581,1.6,1.298,0.63,0.971,1.383,0.824,0.7,1.219,0.969,1.064,0.692,0.546,0.707,0.868,1.438,0.727,1.294,1.217,1.329,0.413,0.697,1.345,0.871,0.813,0.716,1.101,0.966,0.596,1.841,0.824,1.126,1.437,1.644,0.332,0.541,1.165,0.741,1.264,0.509,0.968,1.282,0.768,0.601,0.829,1.222,0.868,0.639,0.684,0.792,1.08,0.648,0.994,1.306 +NM_052827,0.784,1.095,1.051,0.868,0.784,0.972,0.78,0.544,1.099,1.099,0.851,0.818,0.824,0.916,0.925,1.139,0.77,0.952,1.078,0.681,0.567,0.776,1.293,1.142,0.862,0.83,1.406,0.837,0.644,1.211,0.897,1.714,2.161,1.145,0.553,1.097,1.019,0.78,1.57,1.483,1.036,0.952,0.791,2.62,1.097,0.871,1.011,0.678,0.953,1.061,1.035,1.332,1.087,2.624 +NM_052828,0.776,0.853,0.835,0.957,0.781,1.199,0.827,0.739,0.83,0.809,1.496,0.936,1.076,0.741,0.867,1.361,0.825,0.924,1.017,1.346,0.875,0.76,1.326,0.886,0.921,0.975,0.935,0.946,0.822,1.255,0.915,0.819,1.107,1.208,1.038,1.313,1.143,0.712,1.393,1.342,0.873,1.333,1.062,1.088,0.866,1.221,0.997,0.848,0.996,0.932,1.274,1.013,1.149,1.146 +NM_052832,0.988,1.092,0.875,0.9,0.878,0.99,1.144,1.104,1.02,0.952,0.959,1.074,0.998,0.875,0.918,0.967,0.975,1.004,0.904,1.267,0.895,0.946,0.951,0.885,1.239,1.014,1.156,1.091,0.834,0.94,1.086,1.08,0.848,1.056,1.052,1.045,0.974,1.002,1.044,1.133,1.045,0.927,0.957,0.995,1.019,1.014,0.975,1.12,1.173,0.9,1.12,0.924,0.994,1.064 +NM_052834,0.793,1.005,1.126,0.872,0.853,1.063,0.766,0.63,1.049,1.008,0.947,0.775,0.8,0.861,0.899,1.383,0.996,0.901,0.999,1.179,0.81,0.87,1.192,0.943,0.949,0.879,1.262,0.777,0.787,1.5,0.871,1.147,1.175,1.304,0.608,0.812,1.168,0.961,1.468,0.787,0.993,1.193,0.842,1.371,0.947,1.133,0.804,0.815,0.799,0.92,1.002,1.021,1.027,0.993 +NM_052836,2.118,1.776,1.885,2.002,1.9899999999999998,1.943,1.7650000000000001,1.863,2.0949999999999998,2.1029999999999998,2.19,1.964,1.814,1.874,2.137,2.051,2.044,1.831,2.0540000000000003,2.082,1.996,1.892,2.1580000000000004,1.964,1.97,2.116,2.018,2.1029999999999998,1.822,2.004,2.044,1.954,2.3609999999999998,1.973,2.015,1.8410000000000002,1.998,2.023,2.0919999999999996,2.1550000000000002,1.9809999999999999,2.043,1.797,2.067,2.08,2.234,1.9049999999999998,2.025,1.9140000000000001,2.0140000000000002,2.075,2.1109999999999998,1.8539999999999999,2.0229999999999997 +NM_052837,0.657,1.133,1.173,0.677,0.779,0.82,0.567,0.41,1.163,1.141,0.726,0.734,0.528,0.595,0.754,1.11,0.94,0.84,1.063,1.095,0.44,0.679,1.254,1.099,0.569,0.888,1.083,0.789,0.375,1.161,0.825,2.436,1.45,1.133,0.197,1.901,0.91,0.847,1.552,1.345,1.001,1.015,0.727,1.513,1.198,0.947,1.124,0.717,0.974,0.839,0.999,1.299,1.114,2.027 +NM_052838,0.834,0.89,1.928,0.756,1.074,0.867,1.015,0.789,1.192,1.264,0.603,1.283,1.036,1.01,0.765,0.751,1.172,1.073,1.065,0.927,0.845,1.101,0.853,1.503,0.893,0.819,1.803,1.13,0.578,1.154,0.979,1.259,1.39,1.273,0.507,0.654,0.78,1.323,0.974,1.115,1.431,1.162,0.818,0.698,1.197,0.693,0.872,0.889,0.638,0.896,0.811,0.814,1.425,1.222 +NM_052840,0.98,0.953,0.891,0.854,1.032,0.946,1.04,1.318,0.94,1.005,0.94,1.015,1.003,1.172,0.895,0.956,1.109,0.953,0.877,1.047,1.002,0.875,0.959,1.049,1.074,0.974,0.977,1.097,0.825,1.051,0.932,1.029,0.943,1.127,0.999,2.007,1.073,0.915,1.109,1.008,0.922,1.001,0.89,0.81,1.011,1.005,1.034,0.927,0.979,0.957,1.072,0.876,0.945,1.046 +NM_052841,1.045,0.924,0.927,0.996,1.043,1.013,0.942,0.905,1.05,0.799,0.847,0.92,0.926,0.973,1.041,0.993,0.852,1.108,0.965,0.98,1.065,1.1,1.118,0.951,0.993,1.164,0.96,1.106,1.357,1.029,0.938,1.032,1.0,1.0,0.897,1.053,0.99,1.016,1.155,1.021,0.799,1.149,1.039,0.934,0.972,0.915,1.105,0.946,0.917,1.065,1.012,0.93,1.005,0.955 +NM_052842,0.599,1.073,0.97,0.845,0.754,1.037,0.671,0.512,0.95,0.986,0.938,0.96,0.762,0.586,0.761,1.245,0.799,0.925,0.988,0.939,0.56,0.684,2.417,1.041,0.625,0.786,1.32,0.67,0.432,1.027,0.814,1.057,3.297,0.991,0.329,2.103,1.055,0.653,1.872,1.859,0.888,0.886,0.831,2.667,1.009,0.957,1.285,0.679,1.143,0.805,1.169,1.136,1.106,2.727 +NM_052843,0.862,0.92,0.89,1.117,0.966,0.965,1.119,1.178,1.004,0.926,0.967,0.922,0.993,1.244,0.854,0.92,0.962,0.878,0.899,1.173,0.994,1.096,1.059,0.933,1.076,1.002,0.968,0.924,0.773,1.01,1.05,1.167,1.056,1.011,0.985,1.382,1.001,1.031,0.905,1.23,0.904,1.003,1.209,0.946,1.056,0.973,0.963,1.023,1.261,0.956,1.059,1.089,0.916,1.077 +NM_052844,0.481,1.171,1.079,0.741,0.98,0.999,0.613,0.277,0.834,1.151,0.86,0.986,0.51,0.399,0.645,1.343,0.724,1.059,0.775,1.224,0.245,0.602,1.567,1.005,0.392,0.553,1.292,0.832,0.369,1.111,0.529,2.809,1.805,0.911,0.151,2.572,0.876,0.886,1.866,1.168,0.991,1.001,0.965,2.23,0.776,1.263,1.322,0.607,1.612,0.659,1.286,1.468,0.706,2.062 +NM_052845,1.034,0.906,1.049,1.013,0.986,0.955,0.979,1.114,1.007,0.956,0.957,0.949,0.961,0.942,1.017,1.016,0.999,0.946,1.172,1.015,1.086,1.166,1.047,0.887,0.999,1.033,0.999,1.035,0.853,0.985,0.978,1.17,1.119,0.96,0.832,1.086,0.927,0.976,0.916,1.278,0.974,0.951,0.852,1.08,1.099,0.945,0.791,1.043,0.994,0.868,0.948,0.885,1.057,1.052 +NM_052846,0.959,1.04,1.085,1.122,1.127,1.155,1.027,1.037,1.123,1.057,1.06,1.002,0.999,1.076,0.941,1.046,1.021,1.014,1.0,0.978,0.956,1.018,0.956,0.973,1.043,0.959,0.766,0.994,0.926,0.968,1.101,0.998,1.236,0.943,1.042,1.055,1.25,0.829,1.152,0.922,1.0,1.08,1.108,1.149,1.045,0.99,1.027,1.163,0.924,0.965,1.035,1.094,0.967,0.983 +NM_052847,0.993,1.846,0.818,0.922,0.772,1.64,1.238,0.835,0.867,1.087,1.573,0.802,0.918,0.758,0.938,1.102,0.951,1.035,0.747,1.017,1.003,0.796,1.474,0.963,1.354,0.79,1.085,1.62,1.206,1.956,0.81,1.447,0.789,3.283,0.741,0.841,1.173,1.032,0.997,0.857,2.003,3.977,1.195,0.754,0.854,0.918,0.929,0.843,0.779,0.9,1.301,0.925,1.151,0.945 +NM_052849,0.343,1.378,0.701,0.872,0.488,2.08,1.195,0.402,0.532,0.443,2.083,0.66,0.442,0.452,0.89,1.77,0.528,0.862,0.651,1.594,0.411,0.466,2.096,0.467,0.896,0.439,0.76,0.541,0.687,1.681,0.511,1.227,0.975,2.513,0.307,1.048,1.664,0.519,1.506,0.936,0.635,1.556,0.911,0.86,0.516,1.357,0.974,0.467,1.041,0.47,1.117,0.643,0.578,1.988 +NM_052850,0.989,1.07,1.201,0.997,1.003,1.025,0.951,1.102,0.881,1.057,0.847,1.03,1.081,0.878,1.123,1.258,0.981,1.054,1.19,1.042,0.813,1.117,1.09,1.124,1.079,0.958,1.067,0.997,1.025,1.02,1.158,1.007,1.625,1.045,0.938,0.99,0.904,0.955,1.003,0.939,1.181,1.01,0.904,0.904,0.919,0.993,0.951,1.046,0.968,1.062,0.994,0.985,0.832,1.231 +NM_052853,0.973,1.1,1.159,0.771,1.089,0.847,0.555,0.588,1.205,1.045,0.755,0.74,0.995,0.669,0.795,1.306,0.735,1.211,1.21,0.959,0.525,1.02,1.941,1.149,0.681,1.316,1.314,1.036,0.482,1.577,0.901,0.966,0.87,1.349,0.317,0.555,0.862,1.121,0.967,0.569,1.232,1.037,0.565,0.925,1.349,0.923,0.903,1.264,0.818,1.034,0.852,0.667,0.845,1.281 +NM_052854,0.556,1.059,0.575,1.7,0.64,2.474,1.311,0.575,0.527,0.587,1.843,0.576,0.548,0.8,0.953,2.102,0.542,1.065,0.63,1.253,0.625,0.572,2.066,0.592,1.701,0.503,0.568,0.585,0.909,1.907,0.512,1.117,1.197,2.356,0.653,1.295,1.193,0.606,3.11,0.915,0.586,1.97,1.298,2.299,0.533,1.363,0.903,0.644,1.214,0.666,1.664,0.619,0.505,1.004 +NM_052855,0.816,1.081,0.944,0.759,0.999,1.418,0.769,0.834,0.916,0.869,1.078,0.939,0.772,0.704,0.924,1.254,0.784,0.779,0.942,0.982,0.853,0.745,1.163,0.929,0.696,0.676,0.925,0.855,1.193,1.155,0.955,1.629,1.297,1.415,0.774,0.98,0.962,0.939,1.42,1.066,0.862,1.201,0.847,1.432,0.904,1.142,1.095,0.836,1.137,0.744,0.945,0.675,1.001,1.545 +NM_052857,0.686,1.049,1.106,0.74,1.004,0.932,0.768,0.512,1.263,1.17,1.011,0.619,0.801,0.673,0.736,1.07,0.822,0.789,0.967,0.996,0.648,0.861,1.327,1.043,0.709,0.64,1.158,0.995,0.591,1.151,0.905,0.981,1.622,1.168,0.428,0.769,0.787,0.731,0.962,0.973,1.309,1.044,0.83,1.398,0.882,1.009,1.089,0.668,1.099,0.765,1.053,0.789,0.924,1.227 +NM_052858,0.941,0.852,0.839,0.796,0.746,1.845,0.67,0.86,0.989,0.779,1.783,0.813,0.81,0.615,1.723,2.486,0.93,0.804,0.807,2.361,0.79,0.856,2.153,0.945,0.694,0.876,1.11,0.927,0.51,0.981,0.881,1.363,1.848,0.866,0.999,1.494,1.999,0.797,1.898,0.893,0.959,1.576,2.262,1.596,0.755,3.421,2.055,0.817,2.831,0.669,1.912,0.87,0.83,1.726 +NM_052859,1.047,0.918,1.007,0.965,1.164,0.865,0.836,1.127,0.914,1.058,1.03,1.053,1.083,0.887,0.97,0.907,0.978,1.011,0.981,0.994,0.812,0.908,1.075,0.988,0.954,1.043,1.16,1.084,1.198,0.943,0.885,1.014,0.92,1.078,1.018,0.906,0.932,1.071,1.083,0.985,1.093,0.994,0.927,1.065,1.067,1.029,0.986,1.0,0.991,0.991,1.091,0.967,0.831,0.932 +NM_052860,0.884,0.982,1.101,0.943,1.089,0.973,0.812,0.779,1.322,1.03,1.08,1.148,1.027,1.134,1.25,1.144,1.024,1.077,1.106,1.111,0.851,0.94,1.065,1.288,0.854,1.007,1.086,1.02,0.743,1.189,1.003,1.628,3.156,1.135,0.797,0.691,0.702,0.898,1.0,1.033,1.184,1.07,0.814,0.725,0.976,0.887,0.965,0.867,0.826,0.983,0.971,0.792,0.955,0.83 +NM_052861,0.973,0.932,1.022,0.892,1.121,1.052,1.111,0.776,1.016,0.831,0.938,0.773,0.944,1.05,1.099,1.047,1.048,1.017,0.886,0.979,0.845,0.803,0.81,1.018,0.944,1.02,0.999,0.978,0.634,0.966,1.011,1.098,1.147,0.932,1.029,0.851,1.024,1.077,1.061,1.058,1.021,0.914,0.813,1.07,1.015,0.933,1.009,0.784,0.854,1.025,1.003,1.01,1.043,0.897 +NM_052862,0.834,1.17,1.146,1.028,0.718,1.171,1.299,0.74,0.823,0.846,1.041,0.737,0.83,0.864,0.88,0.858,0.951,0.898,0.853,0.992,0.791,0.824,1.027,0.785,1.056,0.87,1.082,0.995,0.874,1.632,0.823,1.38,0.869,1.788,0.727,0.93,0.991,0.818,1.162,1.507,1.05,1.651,0.771,0.845,0.98,0.987,0.866,0.672,0.933,0.897,1.152,1.042,1.199,1.415 +NM_052863,0.942,1.649,0.919,23.12,0.868,0.946,11.26,0.892,0.978,1.05,1.585,0.956,4.489,1.035,1.1,0.786,0.937,4.344,0.841,47.22,0.982,0.804,1.023,0.824,1.187,0.823,1.08,0.929,0.982,0.899,0.881,2.149,0.946,93.7,0.877,0.852,0.998,1.025,1.2,0.951,0.819,94.1,1.016,0.877,0.754,0.999,0.815,1.025,0.891,0.913,10.68,1.161,1.026,0.749 +NM_052864,1.145,0.927,1.134,1.196,1.351,1.086,1.045,0.9,1.047,1.004,1.081,0.999,1.137,1.211,1.151,1.058,1.083,0.88,1.431,0.919,1.027,1.113,1.077,1.072,0.911,1.162,1.113,1.069,0.966,0.926,0.995,0.797,1.027,1.202,0.813,0.915,0.935,0.948,0.895,1.019,1.002,0.947,0.946,0.936,1.181,0.808,0.941,1.137,0.927,0.842,0.904,0.929,1.008,0.987 +NM_052865,0.752,0.767,1.46,0.906,0.878,1.395,0.656,0.516,1.028,0.771,1.136,1.006,0.715,0.708,0.944,1.086,0.918,0.88,0.947,1.157,0.57,0.803,1.409,0.963,0.594,0.777,1.408,0.775,0.514,1.498,0.765,0.944,1.882,1.187,0.304,1.207,1.032,0.89,1.165,1.33,0.961,0.916,0.598,1.208,0.886,1.16,0.817,0.713,0.878,0.74,1.12,0.856,1.0,2.622 +NM_052866,1.952,2.197,1.9979999999999998,2.018,2.134,2.125,2.061,2.053,1.93,1.909,1.79,2.09,2.055,2.018,2.114,2.035,1.998,1.8900000000000001,2.036,2.13,2.024,1.891,1.9209999999999998,2.074,1.9709999999999999,1.9869999999999999,2.126,2.159,1.752,1.9949999999999999,2.005,2.175,2.183,1.883,2.0629999999999997,1.877,2.186,2.099,2.097,2.309,1.8399999999999999,1.887,1.95,2.065,2.024,1.9549999999999998,1.9449999999999998,1.975,2.0140000000000002,1.986,2.129,2.173,2.1849999999999996,2.0389999999999997 +NM_052867,0.869,1.183,1.001,1.017,1.097,1.066,0.98,0.968,0.986,0.971,1.127,0.977,0.905,1.002,1.099,0.93,0.94,1.131,1.073,0.976,0.852,1.046,0.854,1.06,0.942,0.991,1.021,0.948,1.508,0.968,0.947,0.986,1.109,0.948,1.006,1.016,1.195,1.032,1.12,0.895,0.921,0.991,0.976,0.933,1.079,1.272,0.915,0.975,0.996,1.006,1.147,0.941,0.957,1.064 +NM_052868,0.899,0.875,0.864,1.147,0.943,1.132,0.808,0.715,0.916,0.888,1.195,0.904,0.973,0.987,0.965,1.375,0.828,0.858,0.973,1.162,1.249,0.875,1.09,0.948,0.861,0.971,1.123,0.891,0.814,0.88,1.103,1.53,1.796,1.169,0.76,1.077,0.9,0.904,1.151,1.1,0.9,1.094,0.854,1.272,0.935,0.998,1.083,0.923,0.93,0.965,1.132,0.94,1.218,1.159 +NM_052870,0.971,0.978,0.856,0.852,1.054,0.939,1.065,1.311,0.885,1.022,1.046,0.956,0.98,0.956,0.905,0.971,0.885,0.986,0.95,1.182,0.963,1.01,0.986,0.982,0.941,1.078,1.001,1.02,1.132,1.011,1.237,1.023,1.064,1.045,0.953,0.945,1.021,1.132,1.205,0.955,1.126,1.005,1.312,0.972,1.104,0.954,1.009,1.026,1.026,0.981,0.923,0.873,0.983,0.99 +NM_052871,0.964,0.883,0.893,1.358,0.988,1.074,0.967,1.201,1.022,0.96,1.017,1.043,0.848,1.157,1.496,1.023,0.973,0.931,1.082,1.06,1.0,1.072,1.156,1.051,0.925,1.123,0.999,0.988,0.894,1.061,1.05,1.042,0.918,0.934,1.076,0.981,0.961,0.814,0.918,1.122,0.932,0.999,1.458,1.004,1.046,1.006,1.078,0.792,0.874,1.087,0.984,0.893,0.951,1.134 +NM_052872,1.08,0.973,1.807,1.077,0.98,1.135,0.963,1.071,0.935,1.044,0.98,0.901,1.023,1.17,0.788,1.076,2.398,0.991,1.082,0.891,1.002,0.956,1.083,0.952,0.894,0.98,2.053,1.01,1.154,0.98,0.972,0.919,1.099,0.909,1.06,0.932,0.994,0.963,1.0,1.122,1.244,1.036,1.067,1.025,2.059,1.044,0.892,0.868,0.922,1.776,0.892,1.054,1.198,0.952 +NM_052873,0.73,1.103,0.907,0.902,0.779,1.153,0.701,0.536,0.892,0.936,1.359,0.727,0.677,0.63,1.02,1.71,0.826,0.876,0.992,1.131,0.598,0.646,1.136,0.848,0.729,0.769,0.805,0.66,0.575,1.175,0.758,1.261,1.738,1.238,0.41,0.792,1.244,0.895,1.247,0.942,0.856,0.889,1.06,1.644,0.746,1.168,1.081,0.715,1.245,0.683,1.047,1.122,1.088,1.834 +NM_052874,1.1,0.943,0.888,0.882,1.069,0.866,1.269,0.964,1.147,1.124,1.118,0.987,1.099,1.24,1.023,1.093,1.06,1.054,0.964,0.81,0.956,0.846,0.955,1.1,0.948,0.957,1.005,1.005,0.954,1.111,1.008,1.018,1.055,1.026,0.887,1.079,1.083,0.897,0.942,1.01,1.002,0.903,1.083,1.12,0.984,1.069,0.907,0.989,0.894,0.987,0.974,0.974,1.127,1.021 +NM_052875,0.754,1.149,1.029,0.884,0.845,1.426,0.858,0.727,0.872,0.901,1.399,1.059,0.764,0.796,0.835,1.426,1.021,1.037,1.166,1.083,0.864,0.853,1.014,0.976,0.896,1.026,1.055,0.8,0.969,1.144,0.848,1.166,1.021,1.193,0.74,1.041,1.039,0.877,1.029,0.758,0.938,1.077,0.752,0.792,0.973,1.019,0.99,0.902,0.892,0.8,0.949,0.787,1.015,0.941 +NM_052876,0.968,0.911,1.004,0.913,1.047,0.959,1.18,1.297,0.917,1.109,1.104,1.067,0.957,0.919,0.798,0.954,1.07,1.075,0.847,0.826,1.16,0.988,0.89,1.07,0.968,1.009,1.098,0.991,0.707,0.973,1.071,1.027,0.951,1.053,1.032,1.037,0.893,1.088,1.098,0.981,0.978,1.025,0.859,1.16,0.948,1.002,0.976,0.965,1.0,1.103,0.95,1.021,1.142,0.988 +NM_052877,0.609,1.18,1.237,0.614,1.093,1.181,0.65,0.746,1.482,0.931,1.033,1.21,0.625,0.788,0.994,1.239,0.806,0.885,1.482,1.122,0.759,0.901,1.03,1.545,0.612,0.826,1.458,1.113,0.457,1.724,0.87,1.312,1.883,1.281,0.26,0.992,0.974,0.997,0.962,0.533,1.326,1.098,0.631,0.817,0.994,1.003,0.861,0.888,0.768,0.636,0.895,0.79,1.142,1.476 +NM_052878,1.148,1.016,0.886,0.97,1.001,1.089,1.069,1.03,1.052,0.997,0.981,1.281,1.126,0.967,1.095,1.048,0.865,1.027,1.004,1.051,1.026,0.962,0.972,1.074,0.833,1.075,1.026,0.903,1.003,0.998,0.904,1.248,0.866,1.091,1.063,0.965,1.024,1.232,1.049,0.973,0.901,1.047,1.1,0.955,0.939,0.996,0.914,1.031,0.91,1.085,0.91,0.95,0.936,0.866 +NM_052880,0.685,1.881,2.053,0.809,0.594,1.264,0.469,0.857,1.022,0.533,0.929,0.545,0.894,1.053,1.152,0.864,1.466,0.711,1.361,1.732,0.403,0.883,1.219,0.654,0.663,1.18,1.59,0.699,0.375,1.834,1.004,2.1,0.892,1.694,1.664,0.529,0.76,0.891,0.996,0.878,0.862,1.487,0.376,0.664,1.101,0.764,0.91,1.068,0.446,1.331,0.828,0.551,1.427,1.25 +NM_052885,1.038,0.982,0.838,0.736,0.863,1.302,1.245,0.877,0.997,0.843,1.354,0.726,0.768,0.824,0.981,1.11,0.793,1.301,0.972,0.969,0.989,0.774,1.083,0.841,1.077,0.858,0.852,0.831,1.014,1.068,0.893,1.083,0.84,1.25,0.846,1.045,1.257,0.863,1.182,0.84,0.871,1.24,1.271,0.892,0.908,1.286,1.024,0.856,1.13,0.732,1.289,1.326,0.887,0.923 +NM_052886,0.731,1.148,1.312,0.698,1.231,1.361,0.497,0.808,1.868,1.183,0.953,0.74,0.762,0.767,1.089,1.244,0.708,1.376,2.66,0.873,0.654,0.773,0.792,1.194,0.349,0.983,1.048,1.548,0.435,0.94,1.36,0.662,1.454,1.21,0.19,0.894,1.045,1.467,1.194,0.544,1.727,0.705,0.459,0.798,1.246,1.228,1.08,0.902,1.247,0.955,1.027,0.556,1.046,0.77 +NM_052888,0.941,1.005,1.173,0.956,1.119,0.949,0.924,0.755,1.354,1.035,0.868,1.031,0.987,0.951,0.988,1.036,0.946,0.925,1.004,0.991,0.987,1.082,0.967,1.045,0.87,0.957,1.105,1.016,0.755,1.13,1.132,1.288,1.288,0.985,0.945,1.059,1.012,0.971,0.955,1.1,1.115,1.03,0.804,1.08,0.934,1.044,0.891,0.827,1.011,1.009,0.866,0.88,0.862,1.598 +NM_052890,0.908,1.059,1.111,0.91,1.081,0.966,1.067,0.952,1.042,0.942,0.98,0.945,0.882,0.892,0.971,0.893,1.078,0.983,1.109,1.091,0.96,1.0,1.028,1.01,1.075,1.104,1.044,0.948,0.753,0.978,1.083,1.074,0.959,1.113,1.04,0.872,1.082,1.089,0.975,0.884,0.99,1.046,1.14,1.171,0.939,0.972,1.025,0.953,1.025,0.983,1.075,0.992,0.891,1.242 +NM_052891,0.931,0.923,1.216,0.955,1.41,0.962,0.889,1.065,1.087,1.108,0.928,0.907,0.978,0.916,0.98,1.083,0.996,1.281,1.442,1.0,1.119,1.099,0.926,1.249,0.99,1.271,1.283,1.352,0.921,0.969,1.141,0.925,0.904,0.945,1.093,0.896,0.956,1.277,1.165,0.892,1.229,1.032,0.832,0.941,1.285,0.841,1.173,1.127,0.838,1.464,1.016,1.035,1.124,0.992 +NM_052892,1.012,0.996,1.068,1.256,0.974,1.008,0.965,0.936,0.934,0.889,1.096,1.038,0.999,0.996,0.864,1.014,1.11,0.93,0.914,0.996,1.002,0.996,0.868,0.924,1.036,0.882,0.872,1.022,1.075,0.889,1.067,1.022,1.004,1.104,1.121,1.072,1.078,1.071,1.008,1.092,0.936,1.024,1.048,0.943,1.079,1.113,1.227,1.056,0.928,1.042,0.894,1.084,0.858,1.011 +NM_052896,0.997,0.966,1.163,0.957,1.081,0.966,1.082,1.052,1.081,1.078,1.004,1.063,1.249,0.881,0.897,1.086,0.807,1.239,0.984,1.043,0.898,1.056,0.899,0.84,0.952,0.994,1.04,1.107,1.047,0.987,0.968,1.409,1.265,0.892,1.111,1.208,1.445,0.947,1.095,1.103,0.957,1.032,0.995,0.89,1.176,0.976,0.882,0.843,0.806,1.115,0.95,0.982,0.899,1.444 +NM_052897,1.148,1.018,0.983,0.921,0.935,0.994,1.019,0.928,0.923,0.944,0.854,1.056,0.93,0.94,1.079,0.978,1.021,1.119,1.07,1.013,0.941,0.952,0.948,1.114,1.106,0.963,0.977,0.953,0.698,0.938,1.154,1.063,1.158,0.96,0.941,0.853,1.093,1.019,1.164,0.961,0.998,1.068,0.932,0.916,1.061,1.102,0.892,0.913,0.969,0.933,1.112,1.012,0.985,1.024 +NM_052899,0.968,0.949,1.039,0.955,1.014,0.894,0.935,1.006,1.314,1.005,0.887,0.935,0.982,0.932,1.051,1.143,0.992,1.002,1.114,0.882,1.032,0.954,0.997,1.077,0.94,0.839,0.915,0.929,1.207,0.913,0.959,1.03,1.35,1.076,0.882,1.082,0.945,1.035,1.128,1.004,0.97,0.901,1.041,1.249,0.998,0.846,0.997,0.855,0.937,0.839,1.038,1.007,1.122,1.205 +NM_052900,1.155,1.098,1.032,0.939,1.081,0.948,1.069,0.899,0.963,0.927,1.007,0.969,1.006,0.868,0.846,0.915,0.998,0.919,0.939,0.892,0.973,0.941,1.019,0.982,1.125,1.069,1.019,1.209,1.008,1.034,1.021,0.913,1.05,1.006,1.024,1.006,0.925,1.021,0.886,1.04,0.926,1.097,1.019,0.961,0.961,1.031,0.97,1.071,1.017,1.051,0.947,0.949,1.072,1.087 +NM_052901,1.027,0.831,0.876,0.775,1.127,0.772,0.655,1.128,1.03,1.253,0.91,0.821,1.03,0.883,1.056,1.2,1.044,0.834,1.432,0.754,0.794,0.963,0.998,0.783,0.635,0.875,0.922,0.908,0.49,0.887,1.408,1.621,1.923,0.962,1.565,1.346,1.035,1.302,1.28,1.717,1.045,0.881,2.088,1.472,0.935,1.021,1.161,1.239,0.908,1.024,0.816,0.998,1.435,1.124 +NM_052902,0.8,0.712,1.271,0.872,0.965,0.887,0.77,0.551,1.319,1.348,0.882,0.788,0.586,0.729,0.953,1.119,0.927,1.041,0.973,0.978,0.665,0.855,1.644,1.088,0.567,0.935,1.236,0.799,0.632,0.851,0.797,1.3,1.249,0.955,0.559,1.015,1.068,1.085,1.353,1.158,0.835,1.074,0.998,1.2,1.034,1.149,1.094,0.906,1.208,0.907,1.125,0.853,1.002,2.581 +NM_052903,0.996,1.01,1.187,0.946,1.028,0.969,0.894,1.048,1.125,1.006,1.025,0.781,0.979,0.946,1.054,0.869,0.964,0.94,1.137,0.881,0.851,0.826,1.111,1.021,0.891,1.009,0.923,1.024,0.923,1.003,0.947,1.105,1.098,0.979,0.939,1.006,0.989,1.107,1.06,0.954,0.927,0.904,0.919,0.986,1.111,1.02,1.006,0.951,0.947,0.852,1.135,0.853,1.045,1.207 +NM_052905,0.866,1.144,1.045,0.812,0.856,0.937,0.985,0.921,0.858,0.862,1.088,0.883,0.928,0.934,0.858,1.078,0.841,0.936,0.816,1.119,0.886,0.799,1.226,0.965,1.002,0.755,1.063,0.799,0.964,0.966,0.998,1.495,1.459,1.15,0.823,1.084,1.05,0.843,0.961,1.247,0.876,1.104,0.884,1.119,0.941,1.005,0.862,0.864,1.027,1.038,1.019,1.07,0.893,2.446 +NM_052909,0.97,1.0,0.965,0.881,0.936,0.988,0.979,1.049,1.165,1.029,1.219,0.995,0.892,0.991,0.977,1.054,0.908,1.089,0.971,1.023,0.937,1.053,0.863,1.04,1.081,1.041,0.936,1.053,0.784,1.03,0.955,1.049,1.012,1.005,1.056,0.996,1.147,1.063,1.007,0.986,1.05,1.06,0.853,1.168,1.195,0.971,1.084,0.956,1.13,1.114,0.955,0.963,0.999,1.151 +NM_052910,0.994,0.987,1.005,0.796,1.004,1.021,0.976,1.141,0.843,0.9,0.985,1.086,1.014,1.379,1.011,0.954,0.963,0.881,0.978,0.948,0.961,0.884,1.14,1.094,1.135,1.064,1.113,1.049,0.659,1.171,1.072,0.923,0.919,0.929,1.002,0.974,0.919,1.072,0.977,0.905,0.927,0.965,1.435,0.817,1.027,0.922,1.092,0.992,0.897,0.956,1.167,0.934,1.056,1.022 +NM_052911,0.964,1.092,1.243,0.947,0.942,1.202,0.866,0.845,1.114,0.921,1.075,0.891,0.858,0.943,1.128,1.372,0.976,0.989,0.873,1.094,0.895,0.979,0.986,1.002,0.907,0.799,1.054,1.059,1.097,1.013,1.086,1.014,1.285,1.158,1.026,0.921,0.811,0.96,1.074,1.048,1.092,1.153,0.835,0.946,1.037,0.928,0.766,0.974,1.027,1.048,0.943,0.984,0.988,2.721 +NM_052913,0.893,1.668,1.049,1.036,0.809,0.977,0.939,0.883,0.934,0.761,1.054,0.764,0.967,0.893,1.024,1.192,0.921,0.962,0.832,1.268,0.715,0.921,3.295,0.925,2.508,0.88,1.092,0.814,0.91,1.31,0.778,4.842,4.324,1.473,0.779,1.353,1.29,0.972,1.222,1.06,0.963,1.077,0.883,0.748,0.973,0.868,0.9,0.757,3.432,0.88,1.211,1.029,0.933,3.435 +NM_052918,1.0,0.905,0.806,0.982,1.016,1.057,0.869,0.987,0.966,1.057,1.16,0.895,0.919,0.76,0.852,1.246,1.143,1.219,0.864,1.048,0.786,1.013,1.19,1.029,1.143,0.979,0.98,1.147,0.799,1.115,0.969,1.076,1.054,1.219,0.983,0.783,0.893,1.084,0.959,0.883,0.875,1.288,0.943,0.859,1.016,0.894,0.989,0.961,0.856,1.138,0.994,1.051,0.936,0.767 +NM_052924,0.951,1.029,0.911,0.935,0.881,1.104,0.909,0.902,0.973,1.014,0.916,1.021,0.941,0.994,0.915,0.999,1.043,0.829,1.06,0.943,0.907,0.99,0.922,0.997,1.0,0.906,0.899,0.951,1.134,1.011,0.86,1.06,1.104,1.027,0.943,1.01,1.045,1.03,1.101,1.281,0.887,1.0,1.017,1.295,1.017,0.93,1.096,0.978,1.047,0.919,0.956,0.855,1.047,1.008 +NM_052925,1.044,0.975,0.974,1.04,1.019,1.042,1.02,0.877,0.937,0.903,1.043,1.048,1.073,1.034,1.176,1.1,1.074,0.903,0.948,0.931,0.96,1.134,1.006,1.069,0.919,0.952,0.997,1.012,1.183,0.932,0.942,0.94,1.02,0.934,0.891,1.009,1.038,1.105,1.13,1.091,0.983,1.016,1.28,0.969,0.991,0.973,0.916,1.099,0.938,0.955,0.939,1.018,0.912,1.07 +NM_052926,1.054,0.869,0.937,1.005,0.834,1.016,1.063,1.142,1.006,1.091,1.038,0.982,0.999,1.0,0.98,0.935,0.946,1.169,1.091,0.905,1.053,1.008,1.022,1.076,0.96,1.0,0.971,1.073,0.731,1.095,0.989,0.962,1.125,0.931,1.205,0.903,1.037,0.91,1.029,1.167,0.905,0.917,1.201,0.878,0.996,1.085,0.893,1.134,1.044,1.024,1.086,0.959,0.962,0.93 +NM_052932,0.568,1.759,0.96,0.775,0.737,0.964,0.799,0.453,0.802,0.684,1.56,0.579,0.635,0.444,0.955,1.593,0.444,0.857,1.02,1.713,0.381,0.325,1.535,0.797,0.992,0.593,0.963,0.73,0.279,1.374,0.639,1.309,4.508,1.918,0.166,1.762,1.157,0.517,1.611,1.208,0.816,1.439,0.594,1.267,0.797,0.955,0.8,0.358,0.819,0.669,1.107,0.984,1.136,2.101 +NM_052933,1.088,1.124,0.892,0.759,1.131,1.042,0.869,0.905,1.012,0.997,1.089,1.01,1.044,1.125,1.005,0.92,0.988,1.15,1.131,0.754,1.029,0.921,1.034,1.083,1.178,1.005,0.946,0.992,0.964,1.002,0.833,1.072,1.108,0.954,1.218,0.822,0.94,0.942,1.075,1.063,1.018,1.046,1.018,0.935,0.955,0.907,1.024,1.055,0.967,1.053,0.962,0.928,1.113,1.028 +NM_052934,0.919,1.036,0.955,0.892,0.935,0.979,0.847,0.983,0.948,1.013,1.045,1.023,0.86,1.044,1.004,0.898,0.966,1.011,0.918,0.976,1.001,1.11,0.941,0.922,1.145,0.997,1.016,0.974,0.766,0.991,0.961,1.023,0.877,0.931,1.035,0.997,1.061,1.096,0.937,1.064,0.919,1.057,0.829,0.908,1.04,0.902,0.901,0.958,1.055,0.879,1.058,0.93,0.827,0.999 +NM_052935,0.859,1.038,1.264,0.786,0.874,0.902,0.863,0.641,1.207,1.23,1.149,1.109,1.002,0.752,0.966,0.972,0.718,0.972,1.017,0.831,0.649,0.798,1.57,1.096,0.896,0.934,1.045,0.976,0.544,1.222,0.976,2.41,3.636,1.195,0.518,0.767,0.829,0.922,1.179,1.128,1.047,1.184,0.592,1.058,1.076,0.628,0.907,0.686,0.695,0.775,0.928,1.419,0.999,0.572 +NM_052939,1.052,1.019,1.289,0.969,1.047,0.915,1.247,1.033,1.089,0.974,0.896,0.908,0.943,1.097,1.331,1.184,1.017,1.028,1.031,1.196,1.041,0.914,1.034,1.092,0.935,1.043,0.853,0.937,1.204,1.027,1.052,0.968,0.976,0.937,1.096,0.968,0.996,0.935,1.081,0.95,0.967,0.903,0.902,0.944,1.075,0.933,0.957,1.001,0.948,1.069,0.998,0.964,1.072,1.059 +NM_052940,0.633,1.118,1.14,0.594,0.888,1.008,0.553,0.501,1.238,1.045,1.054,0.845,0.569,0.691,0.908,1.237,0.705,0.822,1.243,0.904,0.702,0.846,1.111,1.03,0.479,0.752,1.09,0.844,0.394,1.114,0.991,1.612,3.342,1.071,0.343,0.796,1.131,0.807,1.052,0.831,1.107,0.918,0.745,1.131,0.942,1.085,0.979,0.816,0.862,0.769,0.959,1.011,1.182,2.034 +NM_052942,1.04,1.001,1.288,0.941,1.075,1.073,1.142,0.953,1.109,1.129,0.761,0.791,0.954,0.847,1.222,0.827,0.978,0.965,0.993,0.681,0.972,0.954,0.919,1.089,0.976,0.866,1.382,1.034,0.699,1.008,0.974,1.355,1.209,1.025,0.994,0.847,1.096,0.885,1.094,1.617,0.987,1.094,0.719,0.915,1.062,0.786,0.977,0.986,1.004,0.999,0.98,1.181,1.879,4.944 +NM_052943,4.419,0.382,4.937,1.301,4.332,0.358,0.379,3.071,5.18,4.571,0.344,4.022,3.298,3.571,2.983,1.754,3.294,2.075,6.613,0.478,2.639,3.579,0.423,4.46,0.392,6.526,3.424,4.105,0.364,0.418,7.836,0.438,3.028,0.384,6.51,0.442,0.368,4.61,0.851,0.393,4.438,0.497,0.47,0.519,5.748,0.36,2.191,6.858,0.428,6.242,0.846,1.029,5.566,0.904 +NM_052944,1.104,1.0,0.861,0.889,1.002,0.963,1.077,0.947,1.057,0.958,0.892,1.014,1.142,0.893,0.984,1.002,1.034,1.035,0.942,0.954,0.938,1.003,0.884,1.032,0.933,1.033,0.779,1.042,0.83,1.064,0.957,1.058,1.046,0.992,0.901,1.086,1.149,0.918,0.887,1.063,0.796,0.938,0.943,0.885,0.927,0.982,1.019,1.12,1.008,0.914,1.098,0.832,1.063,0.932 +NM_052946,0.3,2.537,0.252,0.887,0.313,2.56,1.217,0.327,0.274,0.294,1.699,0.301,0.286,0.315,1.193,2.827,0.27,0.68,0.31,2.254,0.28,0.261,2.94,0.31,1.165,0.249,0.338,0.298,0.949,1.772,0.286,0.753,1.348,3.483,0.279,1.036,1.411,0.311,1.795,0.521,0.264,2.279,1.959,0.837,0.298,1.733,0.865,0.283,1.873,0.29,1.903,0.964,0.281,1.966 +NM_052947,0.875,0.995,1.006,0.865,1.09,0.939,0.923,1.094,0.931,0.92,1.053,1.057,0.978,0.826,0.94,1.05,1.0,0.91,0.94,0.895,1.074,0.964,0.893,1.018,1.149,1.09,0.992,0.945,0.896,1.113,0.852,1.244,1.014,1.037,0.962,1.059,0.937,0.966,1.05,1.313,0.911,0.905,0.898,0.942,0.925,0.889,1.011,0.892,1.05,0.899,1.004,1.102,1.006,0.869 +NM_052948,1.106,1.035,0.946,1.066,0.96,0.986,0.951,0.979,1.024,1.033,1.259,1.053,0.961,1.072,0.82,0.823,1.006,0.929,1.014,0.913,0.999,1.041,0.905,0.931,0.987,1.002,0.788,0.917,0.9,0.901,0.941,1.007,1.159,1.005,1.005,1.06,1.058,0.906,1.0,0.903,1.084,0.87,0.774,1.184,1.0,0.895,0.923,1.097,1.082,0.859,0.968,1.117,0.896,1.008 +NM_052949,0.881,0.962,1.022,1.054,0.926,0.839,1.087,1.12,0.871,0.994,1.256,1.023,0.933,1.189,0.965,1.237,1.042,0.952,0.937,1.001,1.204,1.014,1.035,0.974,0.781,0.916,0.868,0.933,1.164,1.073,1.048,0.813,1.212,1.066,0.969,1.042,0.988,1.137,0.938,0.946,0.949,0.994,0.933,1.077,1.038,1.119,0.863,0.876,0.907,0.961,1.028,1.095,0.976,1.095 +NM_052950,1.241,0.904,1.722,0.88,1.409,0.892,0.773,0.911,1.851,1.716,0.722,1.349,1.0,0.974,1.208,1.07,1.394,1.327,1.867,0.792,1.052,1.165,0.859,1.669,0.845,1.4,1.51,1.263,0.494,0.854,1.25,0.934,1.134,0.815,0.995,0.895,0.723,1.558,0.942,0.742,1.535,0.786,0.662,0.961,1.486,0.833,1.234,1.242,0.813,1.495,0.894,0.969,1.5,0.931 +NM_052951,0.63,1.025,0.999,1.04,0.703,1.099,0.743,0.437,0.82,0.78,1.03,0.453,0.618,0.577,0.972,1.481,0.851,0.934,0.867,0.88,0.542,0.772,1.436,0.668,0.632,0.791,1.059,0.607,0.531,1.434,0.739,1.703,2.687,1.225,0.501,1.129,0.823,0.754,1.928,2.479,0.893,1.144,0.828,3.036,0.9,0.973,1.496,0.742,1.038,0.773,1.001,1.4,0.976,2.457 +NM_052953,1.078,1.011,1.092,0.868,1.074,0.876,0.981,1.062,0.935,1.003,1.094,1.081,0.864,1.124,0.929,0.975,0.959,0.999,0.881,0.903,0.957,0.867,1.009,1.039,1.144,0.983,0.986,0.977,1.057,1.134,1.089,1.016,1.013,1.371,1.021,0.922,0.902,1.062,1.056,0.957,0.877,1.048,1.073,1.021,1.046,1.078,1.091,1.033,1.043,0.999,0.959,0.935,0.953,0.865 +NM_052954,0.877,1.118,1.104,1.073,0.978,1.051,0.877,0.801,0.952,0.823,1.173,0.927,1.0,0.852,1.128,1.087,0.919,0.867,0.827,0.872,0.882,0.821,1.149,1.048,0.957,0.892,1.114,0.98,0.851,1.314,0.91,1.364,1.171,1.458,0.696,1.196,1.056,1.174,1.335,1.003,0.909,1.463,0.876,0.939,0.918,0.99,0.965,0.919,0.958,0.96,1.149,1.211,1.059,1.086 +NM_052956,0.945,1.043,1.109,0.961,0.96,1.022,0.803,0.85,0.925,1.043,1.082,1.277,1.011,0.943,0.921,1.105,0.947,1.117,0.808,1.168,0.853,0.932,1.082,0.955,0.869,0.895,0.912,1.079,1.627,1.224,1.028,1.186,1.174,0.937,0.953,0.786,0.877,0.805,1.002,0.933,0.79,1.148,1.008,1.022,1.026,1.055,1.0,0.968,1.107,0.95,1.012,0.915,1.075,1.013 +NM_052957,1.027,0.884,0.941,0.954,0.883,0.94,0.832,1.044,0.959,0.977,1.0,0.969,0.944,0.947,1.196,1.049,1.065,1.103,1.006,1.052,0.922,0.985,1.0,1.08,0.942,1.011,1.257,0.922,1.261,1.047,0.982,1.052,1.193,1.094,0.921,1.138,0.954,1.017,0.982,1.098,1.182,1.015,1.058,0.991,0.988,0.971,1.009,1.051,1.095,0.96,1.04,1.028,0.977,1.047 +NM_052958,1.055,0.937,0.941,1.073,0.909,1.037,1.047,0.958,0.781,0.849,0.885,0.979,1.033,1.289,0.846,0.972,1.107,0.999,0.68,0.887,0.716,1.089,1.086,1.07,1.069,0.885,1.07,0.975,1.151,0.929,1.089,1.347,1.026,1.126,1.109,0.71,1.003,0.904,0.942,1.044,0.916,0.81,0.993,0.805,1.048,0.906,0.951,1.047,0.88,1.059,0.991,0.863,1.187,0.997 +NM_052959,1.042,1.025,1.03,1.001,0.852,1.027,0.838,0.989,0.916,0.936,0.982,1.08,1.006,1.003,1.026,1.004,0.964,1.034,0.999,0.936,0.967,0.96,0.983,1.079,1.065,0.98,1.078,0.904,0.855,1.028,0.954,1.035,1.05,0.979,0.857,0.954,0.952,1.015,0.931,1.041,0.974,1.058,1.071,0.854,1.084,1.013,1.112,1.027,1.071,0.982,1.066,1.045,0.958,0.89 +NM_052960,2.507,0.763,2.487,1.026,5.338,0.618,0.605,3.575,6.491,2.566,0.615,3.238,2.754,2.378,2.109,0.998,1.995,2.332,3.299,0.599,1.248,4.977,0.564,4.408,0.625,3.236,1.337,4.812,0.467,0.679,3.671,0.685,0.985,0.778,3.954,0.585,0.585,3.167,0.691,0.769,3.986,0.943,0.605,0.565,2.493,0.591,2.043,3.696,0.635,1.779,1.006,0.8,1.896,1.746 +NM_052961,0.823,0.91,1.096,0.938,1.179,1.237,1.092,0.998,1.038,0.955,0.924,1.173,1.161,1.146,0.958,1.128,0.92,0.984,0.962,1.018,0.992,1.14,1.24,1.061,1.085,1.072,1.061,0.987,1.164,0.967,0.836,1.071,1.003,1.123,0.809,0.89,1.069,0.938,1.006,0.828,1.046,1.035,1.075,1.125,1.008,0.751,0.896,1.068,1.023,1.017,0.916,1.105,0.931,0.91 +NM_052963,1.048,1.179,0.981,0.955,0.997,0.759,0.711,0.696,1.172,1.06,0.874,0.766,0.97,0.836,0.911,0.89,1.095,0.964,1.312,0.681,0.857,1.104,1.097,1.23,0.718,1.257,1.383,0.918,0.608,1.067,0.856,1.109,1.654,1.107,0.602,0.955,0.887,1.341,1.13,1.419,1.178,1.35,0.747,1.562,0.969,0.783,0.988,1.24,0.833,1.153,0.754,0.92,0.955,1.266 +NM_052965,0.787,1.58,1.0,0.768,0.859,1.419,0.874,0.585,1.294,0.888,1.226,1.144,0.662,0.671,0.842,1.097,0.798,0.941,1.031,1.131,0.536,0.698,1.414,1.082,0.595,0.666,1.348,0.948,0.545,1.379,0.827,1.766,2.917,1.382,0.406,1.302,1.174,0.834,1.142,0.725,1.101,1.159,0.668,1.383,0.973,1.14,0.962,0.583,0.786,0.634,1.118,0.95,0.753,1.215 +NM_052966,0.681,1.099,2.761,0.664,1.52,0.674,0.629,1.053,1.088,1.546,0.634,1.08,0.769,0.715,0.867,0.951,1.58,1.017,1.773,0.847,0.792,1.375,1.123,1.729,0.811,0.782,2.962,1.679,0.303,0.971,1.131,1.223,1.403,1.25,0.402,0.565,0.604,1.866,1.261,1.333,2.134,2.217,0.424,0.951,1.595,0.712,0.753,1.269,0.447,1.287,1.192,0.938,1.008,1.615 +NM_052967,0.971,0.954,1.005,0.914,0.964,0.931,1.102,1.043,0.975,1.091,0.952,0.968,1.037,0.964,0.937,1.019,0.967,0.935,1.015,0.887,0.893,1.031,1.043,0.937,0.89,1.118,1.158,1.093,0.648,0.953,0.956,1.1,0.902,1.028,0.917,1.012,1.0,1.101,1.166,1.05,0.937,1.038,0.988,0.937,1.071,0.955,1.091,1.069,1.035,0.983,1.081,0.969,1.068,0.926 +NM_052968,1.134,0.929,0.876,0.903,1.085,1.025,0.929,1.031,0.994,0.957,0.934,0.868,0.893,0.916,1.28,0.912,0.906,0.888,0.957,0.962,0.902,1.008,0.932,0.912,1.03,1.245,1.085,1.117,0.687,1.049,1.114,0.915,0.945,0.93,0.932,0.911,0.953,1.074,1.059,1.069,0.975,0.954,1.099,1.007,1.102,1.053,0.96,1.035,0.99,1.0,1.02,0.907,1.028,0.957 +NM_052969,0.844,1.064,1.089,1.03,1.094,1.021,0.909,0.831,1.052,1.115,0.939,1.128,0.947,0.821,0.919,1.038,1.123,0.908,1.045,0.97,0.893,0.913,1.07,1.176,0.853,0.803,0.997,0.915,0.633,1.114,0.841,1.673,3.465,1.009,0.755,1.347,0.981,1.058,1.182,0.97,0.901,1.034,0.867,2.101,0.899,1.004,0.981,0.783,0.92,0.792,1.046,1.047,1.136,1.637 +NM_052971,1.022,1.063,1.028,1.095,1.235,1.018,1.023,1.219,1.006,0.891,1.075,0.975,1.034,0.897,0.992,1.425,0.936,1.241,0.944,1.205,0.991,1.012,1.085,1.091,1.174,0.935,0.926,0.911,0.974,0.988,1.063,0.998,1.105,0.828,1.069,0.849,1.109,0.879,0.95,1.022,1.035,0.966,0.984,1.017,0.977,1.04,0.917,0.963,1.122,0.928,1.105,0.941,0.933,1.054 +NM_052972,0.964,1.244,5.173,0.985,1.378,0.787,0.474,0.88,1.336,0.929,0.72,0.913,1.878,0.566,0.66,0.894,8.754,1.012,2.994,0.819,0.532,0.878,0.812,1.054,0.502,0.923,5.356,0.752,0.44,1.153,1.677,0.998,0.991,1.165,2.556,1.135,1.242,0.484,1.905,1.427,4.062,0.777,0.789,1.017,3.596,0.623,1.859,1.257,2.122,5.436,0.974,0.858,2.371,2.331 +NM_052978,2.196,2.19,2.012,2.136,2.092,1.9260000000000002,2.075,1.8319999999999999,1.884,2.17,2.1109999999999998,2.208,1.9849999999999999,1.775,1.8679999999999999,1.998,2.109,1.9900000000000002,1.868,1.9829999999999999,1.771,1.9020000000000001,1.903,1.953,2.006,2.101,2.1029999999999998,2.099,1.7970000000000002,1.936,1.8780000000000001,2.058,1.9829999999999999,1.7999999999999998,2.0860000000000003,1.862,1.896,2.226,1.9949999999999999,2.112,1.8980000000000001,1.9569999999999999,1.9489999999999998,1.817,1.992,2.1660000000000004,1.962,2.129,1.9300000000000002,2.028,1.885,1.991,1.883,1.9769999999999999 +NM_052984,0.59,0.984,0.831,0.696,0.682,1.381,0.46,0.648,1.162,0.914,0.884,1.411,0.904,0.603,0.988,1.885,0.64,0.662,1.548,0.799,0.872,0.688,1.618,1.62,0.659,0.703,1.744,0.651,0.282,1.163,1.017,1.75,4.685,1.85,0.167,1.579,0.931,0.848,1.673,1.751,1.023,1.212,0.496,2.249,0.963,0.844,1.115,0.638,1.002,0.819,1.007,0.928,1.36,3.332 +NM_052985,0.987,0.985,0.997,0.966,1.057,0.922,1.0,1.092,1.093,1.005,0.863,0.883,1.042,0.838,0.91,1.099,0.967,1.011,0.93,0.94,1.018,0.865,1.051,1.046,1.012,1.166,0.898,1.009,1.03,1.028,0.923,0.951,1.129,0.93,1.049,1.132,1.031,1.078,1.113,0.983,0.937,0.989,1.168,0.888,0.977,1.18,0.935,0.947,1.259,1.029,1.001,1.055,1.071,0.968 +NM_052987,0.562,1.411,1.163,0.803,0.924,0.835,0.748,0.352,1.013,0.845,1.079,0.979,0.653,0.45,0.898,1.226,0.932,1.125,0.717,1.849,0.485,0.725,1.362,1.047,0.581,0.72,0.943,0.779,0.552,1.428,0.632,1.822,1.07,1.342,0.212,1.011,1.189,0.786,0.94,0.957,1.038,1.117,1.085,1.099,0.837,1.202,1.313,0.643,0.894,0.595,1.085,0.685,0.686,1.014 +NM_052988,1.149,1.18,1.204,0.902,1.068,0.809,0.88,1.07,1.036,1.153,0.962,1.036,1.045,0.986,0.906,1.019,1.133,0.965,0.837,1.059,1.026,0.972,1.008,0.897,0.986,1.285,1.169,1.014,1.247,1.004,0.992,0.911,0.902,0.9,1.302,1.136,0.906,0.903,0.93,0.987,0.946,1.032,1.329,1.052,0.833,0.99,1.298,0.928,0.827,0.936,0.891,0.891,1.052,1.019 +NM_052990,0.892,1.157,0.983,0.939,0.801,1.029,0.691,0.744,1.014,0.907,1.041,0.882,0.883,0.957,1.043,1.126,0.919,1.035,1.001,0.996,0.95,0.946,1.116,0.963,0.861,1.002,0.921,0.832,0.727,1.25,1.02,1.415,1.831,1.51,0.76,0.914,0.954,0.902,1.056,0.901,0.843,1.334,0.764,1.333,0.883,0.966,0.812,0.952,0.924,1.021,1.011,0.762,0.927,1.098 +NM_052995,0.989,0.93,0.974,0.948,1.05,0.956,1.151,1.021,1.047,1.042,1.019,0.981,1.031,1.02,1.084,0.953,0.96,0.972,0.892,1.078,1.005,0.947,0.938,1.002,1.063,0.944,1.002,1.092,0.904,1.122,1.13,1.007,1.024,1.028,0.925,0.914,1.052,0.89,1.01,0.867,0.837,0.959,0.867,0.967,0.985,1.159,0.995,1.137,0.962,1.001,1.052,1.073,1.059,1.051 +NM_052997,0.933,0.793,0.928,0.777,1.024,1.125,0.892,1.042,0.881,1.069,0.933,0.949,0.828,0.885,0.866,1.183,1.056,1.06,1.076,1.011,1.048,1.039,1.02,1.071,0.902,0.917,1.174,0.919,1.159,0.965,1.194,1.022,1.001,1.04,0.89,1.05,0.894,1.082,1.002,0.912,0.971,0.924,0.829,0.999,1.149,0.917,0.882,1.021,1.195,0.97,1.098,1.091,1.148,0.885 +NM_052998,1.069,1.088,0.972,1.081,0.854,1.037,0.878,1.012,0.962,1.156,1.203,0.899,0.983,0.897,0.964,0.897,1.137,0.937,0.914,0.895,0.891,1.129,1.108,1.025,1.119,0.999,0.889,1.03,1.114,1.018,0.875,1.197,1.199,1.046,0.941,1.073,0.915,1.221,0.913,0.793,1.046,1.197,1.076,1.121,0.755,0.908,1.022,0.992,1.106,1.052,1.075,0.964,1.012,0.827 +NM_053000,0.604,1.277,1.519,0.666,0.766,1.305,0.522,0.777,1.139,0.895,1.344,1.051,0.834,0.94,1.05,1.277,0.897,0.816,0.951,1.486,0.504,0.869,1.726,1.087,0.672,0.721,1.468,0.946,0.367,1.472,1.068,2.092,0.925,2.496,0.17,0.668,1.046,1.579,1.013,0.654,1.058,2.058,0.649,0.628,0.895,1.018,0.845,0.688,0.849,0.774,0.958,0.586,0.935,1.877 +NM_053001,0.816,0.916,0.711,0.81,0.821,1.352,0.748,0.663,0.745,0.751,1.125,0.786,0.816,0.852,1.024,1.295,0.75,0.771,0.768,1.002,0.855,0.87,1.903,0.787,0.799,0.682,0.711,0.951,0.796,1.177,0.695,5.662,4.06,1.527,0.867,1.266,1.116,0.87,1.185,1.271,1.108,1.646,1.044,1.526,0.8,1.472,1.21,0.745,1.034,0.644,1.495,1.103,0.937,2.974 +NM_053002,1.141,1.05,1.046,1.066,0.925,1.004,1.052,1.112,1.078,1.043,1.007,0.901,0.867,1.034,0.829,0.921,1.0,0.884,1.108,0.981,0.885,1.178,1.173,0.96,1.009,1.1,0.856,1.137,1.114,0.875,1.032,0.842,0.996,0.825,0.96,1.021,1.029,1.051,0.946,0.881,0.917,1.041,1.176,1.031,1.073,1.129,1.031,1.049,1.171,1.015,0.974,1.017,0.928,0.929 +NM_053003,0.999,0.793,1.025,1.184,1.008,0.954,1.066,1.108,1.032,0.852,0.98,0.994,1.0,1.001,0.953,0.894,1.157,0.837,1.009,0.944,1.199,1.046,0.983,0.851,0.881,1.05,1.026,1.04,1.623,1.02,1.075,1.021,0.912,0.999,1.181,1.2,0.906,0.886,0.974,0.827,0.964,0.923,0.956,0.949,0.971,1.032,1.018,1.091,1.033,1.047,1.04,0.946,1.051,0.947 +NM_053004,0.794,1.001,1.318,0.863,1.086,0.653,0.752,0.657,1.177,1.449,0.81,1.238,0.784,0.893,0.699,1.156,1.107,1.164,1.074,0.978,0.695,0.708,1.115,1.036,0.552,1.067,1.629,0.964,0.777,0.788,0.969,1.534,1.56,0.658,0.486,1.68,0.829,1.087,1.191,1.053,1.335,0.78,0.993,1.299,1.112,0.816,1.409,0.944,1.064,0.884,0.959,1.308,1.059,1.322 +NM_053005,1.001,0.909,1.167,0.873,0.932,1.137,0.567,1.216,1.088,0.789,0.998,1.082,1.256,0.803,1.201,1.268,1.067,0.843,1.934,0.906,0.849,1.033,0.78,0.855,0.765,1.132,1.144,0.997,0.63,1.202,1.131,1.126,1.592,1.367,1.39,1.253,0.801,0.945,1.126,0.987,0.973,0.944,0.688,1.271,1.139,0.746,0.789,1.446,0.704,1.642,0.771,0.6,1.064,1.103 +NM_053006,1.028,0.913,0.851,0.985,1.189,0.957,0.865,0.895,1.061,1.018,0.979,1.014,1.068,0.81,1.015,0.844,1.19,1.017,0.91,1.111,0.805,0.943,1.012,0.956,0.984,1.193,0.983,1.123,0.86,1.095,0.914,0.998,0.863,0.996,0.962,1.073,0.955,1.118,1.015,0.975,0.965,0.899,0.751,1.192,1.126,0.891,1.063,1.23,1.051,1.002,1.046,1.009,0.974,1.025 +NM_053013,0.923,1.017,0.91,0.973,0.96,0.999,0.777,0.892,1.09,1.027,0.93,0.875,0.927,0.881,1.046,0.921,0.934,0.804,0.887,1.055,0.894,0.914,0.897,0.927,1.004,0.945,1.033,1.032,0.619,1.058,1.046,1.052,1.204,1.097,0.826,1.188,0.97,1.075,1.287,1.632,0.952,0.992,0.761,0.877,0.93,0.937,1.048,0.842,1.001,0.986,1.04,0.899,0.891,1.34 +NM_053016,1.034,1.126,0.985,1.068,0.979,1.069,1.022,1.042,0.995,1.033,1.174,0.989,1.052,1.06,1.041,0.933,1.089,1.033,0.826,0.951,0.989,1.137,1.138,1.006,1.057,0.991,0.918,1.037,0.863,0.866,1.067,1.149,1.149,0.974,0.993,0.945,0.942,0.983,0.945,0.989,0.957,0.821,0.915,1.07,0.914,0.987,0.932,0.944,1.05,0.852,0.879,0.919,0.971,1.074 +NM_053017,1.07,0.899,0.996,0.841,1.038,1.094,0.972,1.163,1.011,0.946,1.052,0.913,1.01,1.084,1.031,0.964,0.878,0.855,0.999,0.782,0.967,0.92,1.016,0.91,0.999,0.972,1.047,1.064,0.822,1.043,1.016,1.386,0.849,1.003,0.957,0.871,0.903,1.136,1.313,1.168,0.986,0.885,0.936,0.929,0.948,1.022,1.062,1.001,0.92,0.882,0.969,0.894,0.902,1.014 +NM_053023,0.641,0.86,1.047,0.609,0.719,1.11,0.577,0.465,0.99,1.1,1.084,0.832,0.611,0.576,0.936,1.367,0.649,0.884,0.964,1.088,0.502,0.736,1.204,1.034,0.629,0.769,1.185,0.817,0.5,1.154,0.891,1.497,1.192,1.135,0.301,1.444,1.23,0.781,1.262,1.136,0.935,1.049,0.944,1.349,0.945,1.021,0.887,0.672,1.017,0.813,1.066,0.895,0.889,1.68 +NM_053024,1.023,0.937,0.951,0.871,1.294,0.976,0.993,0.969,0.978,0.908,0.922,1.035,0.973,1.064,0.901,0.964,0.936,1.035,1.068,1.02,1.06,0.99,1.009,0.968,1.187,1.005,1.044,1.11,1.255,1.081,1.017,1.11,0.857,0.974,0.959,1.004,1.068,1.048,1.063,0.932,0.946,0.92,1.042,1.097,0.986,1.028,1.121,0.937,0.888,1.062,0.978,0.981,0.87,1.145 +NM_053031,0.944,1.062,1.0,0.908,0.801,1.271,1.15,0.851,0.831,0.891,1.2,0.939,0.786,0.875,1.0,1.372,0.873,0.786,0.709,0.957,0.941,0.94,1.542,0.885,0.821,0.867,1.001,1.161,1.15,1.287,0.931,2.851,1.136,1.791,0.869,0.808,1.028,1.271,1.178,1.069,1.347,2.189,1.202,0.845,0.939,0.987,0.959,0.875,0.917,0.912,1.293,0.971,0.921,1.156 +NM_053034,2.057,2.114,2.033,1.842,1.9289999999999998,2.306,2.19,2.292,1.939,1.833,1.713,2.224,2.036,2.0460000000000003,1.912,2.135,2.269,1.9249999999999998,2.065,2.1550000000000002,2.2430000000000003,1.884,1.722,2.1550000000000002,1.8519999999999999,2.09,1.926,1.9899999999999998,2.27,2.109,2.008,2.591,2.162,1.78,2.219,2.1029999999999998,1.955,1.8439999999999999,1.965,2.031,1.823,1.941,1.91,2.089,1.994,2.026,1.94,1.991,2.05,1.844,1.964,2.0140000000000002,2.069,1.907 +NM_053035,0.725,0.917,1.02,0.778,0.845,1.216,0.523,0.613,0.882,1.007,1.345,1.254,0.793,0.536,0.961,1.968,0.721,0.968,1.378,0.987,0.566,0.892,1.788,1.075,0.67,0.871,1.073,0.781,0.414,1.286,0.768,0.704,1.323,1.367,0.152,0.698,1.44,0.98,1.119,0.582,0.996,1.333,0.612,1.187,0.812,0.948,1.073,0.831,1.332,0.765,1.074,0.692,1.064,1.415 +NM_053036,1.114,0.955,0.943,0.984,1.029,1.138,0.889,1.017,0.893,1.004,0.994,1.036,0.952,1.102,0.951,0.839,0.946,1.184,1.033,1.018,1.125,0.876,1.026,1.07,1.045,1.031,0.922,1.0,1.149,0.99,1.012,1.13,1.133,1.088,1.06,1.123,0.973,0.968,1.046,0.996,0.954,0.997,0.896,1.016,0.93,0.878,0.954,1.025,1.13,0.932,1.037,0.971,0.846,0.904 +NM_053039,0.965,0.903,0.867,0.992,0.999,1.444,1.04,0.824,0.869,0.905,1.445,0.867,0.921,0.83,1.121,2.379,0.951,1.126,0.99,1.74,0.871,0.791,1.259,0.916,0.966,0.967,0.768,0.865,1.275,1.145,1.174,1.058,1.015,1.327,1.001,1.012,2.085,0.936,1.338,1.072,0.938,1.401,1.247,0.788,0.955,2.004,1.755,0.95,1.657,0.816,1.105,0.904,0.751,1.338 +NM_053041,0.57,1.045,0.814,1.014,0.571,1.596,0.773,0.451,0.911,0.651,1.546,0.658,0.749,0.475,0.841,1.427,0.537,0.822,0.684,1.175,0.33,0.569,1.789,0.636,0.77,0.796,0.824,0.558,0.519,1.804,0.714,2.045,2.515,1.925,0.178,1.141,1.22,0.593,1.423,1.475,0.687,1.255,0.742,1.695,0.696,1.116,0.703,0.661,1.002,0.526,1.214,0.973,0.643,2.184 +NM_053043,1.107,1.027,1.079,0.963,1.248,1.0,0.98,1.005,0.999,0.899,1.077,0.977,0.954,1.165,0.834,0.954,1.005,0.814,1.024,1.045,1.059,1.003,0.943,0.989,1.019,1.008,1.004,1.058,1.058,1.041,1.079,0.929,0.971,1.003,1.284,0.94,1.146,1.089,0.963,0.998,0.989,0.923,0.863,1.028,0.957,0.946,1.002,1.014,0.96,1.015,0.939,1.099,1.045,0.925 +NM_053045,0.816,1.155,0.973,0.807,0.874,1.016,0.629,0.524,0.928,0.904,1.056,0.924,0.858,0.646,0.871,1.28,0.715,1.032,1.241,0.927,0.623,1.129,1.103,1.026,0.772,1.069,0.998,0.809,0.738,1.249,0.81,1.574,1.529,1.367,0.291,2.374,1.002,0.978,1.439,0.994,0.972,1.062,0.524,1.529,0.959,0.76,0.787,0.948,0.756,0.732,0.831,1.045,0.875,1.36 +NM_053047,0.909,0.856,1.859,0.711,0.795,0.898,0.598,0.953,1.029,0.938,0.759,0.894,0.868,0.622,0.759,0.998,1.572,1.033,1.978,0.78,0.778,0.954,1.0,1.138,0.564,0.938,2.182,0.776,0.559,0.88,0.796,1.451,1.795,0.996,0.628,0.728,1.027,1.198,1.729,0.825,1.353,1.135,0.863,1.27,1.365,0.695,0.976,1.068,1.282,2.476,0.961,1.123,1.76,2.05 +NM_053049,0.93,1.014,0.946,1.098,0.89,1.076,0.812,0.812,1.042,0.946,1.023,1.084,1.204,1.07,1.037,0.894,1.095,1.113,0.978,0.898,1.036,1.099,1.018,0.917,1.001,1.072,1.166,1.038,0.763,0.896,0.986,1.035,1.029,0.903,0.984,1.027,0.971,0.864,0.949,0.933,1.067,0.925,0.852,0.929,0.973,0.956,1.054,0.867,0.99,0.931,1.062,1.029,0.931,0.895 +NM_053050,0.878,0.862,0.957,0.815,0.756,0.947,0.544,0.412,1.031,1.085,1.269,0.639,0.735,0.654,0.845,1.176,1.151,1.14,1.587,0.837,0.534,1.16,0.891,1.285,0.719,1.043,1.217,0.924,0.542,1.14,0.804,1.614,1.492,1.384,0.296,1.083,0.998,1.322,1.466,0.851,1.152,1.146,0.668,1.321,0.987,0.731,1.165,1.098,0.676,0.733,0.913,0.768,0.968,1.13 +NM_053051,0.976,0.932,1.308,0.999,0.857,1.029,0.755,0.739,1.105,0.929,1.031,0.857,0.971,0.836,0.901,1.089,0.956,0.854,1.103,0.9,0.876,1.001,1.153,1.067,0.902,0.988,1.27,0.745,0.638,1.019,0.996,1.218,1.733,1.122,0.642,0.848,0.908,0.934,1.155,1.24,0.848,0.948,0.789,1.133,1.084,0.857,0.807,1.024,0.83,1.041,1.095,0.884,1.111,1.553 +NM_053052,0.652,1.198,1.033,0.613,0.848,1.393,0.626,0.676,1.086,0.937,0.9,1.001,0.605,0.752,0.891,1.141,0.902,0.945,1.043,1.02,0.712,0.818,1.135,1.21,0.746,0.796,1.278,0.999,0.418,1.323,0.906,2.178,2.167,1.396,0.393,1.119,0.887,0.829,1.22,1.149,1.08,1.124,0.655,1.472,0.79,0.855,0.934,0.724,0.877,0.64,0.954,0.859,0.871,2.222 +NM_053053,0.878,0.983,1.159,1.116,1.038,1.005,1.287,0.842,1.024,0.981,0.919,1.102,1.014,1.155,1.505,1.071,0.951,0.893,0.829,1.054,0.914,0.984,1.024,0.99,0.909,0.874,0.984,0.893,1.032,0.914,1.001,1.148,1.306,1.064,0.933,1.086,0.933,0.755,0.995,0.967,0.961,0.878,1.166,0.997,1.006,0.913,0.919,0.89,0.976,1.113,1.094,0.982,0.963,1.141 +NM_053054,0.821,0.948,0.874,1.227,1.007,1.045,0.965,1.074,1.086,0.926,1.06,0.875,0.844,0.816,1.018,0.891,1.041,1.192,0.966,1.14,1.028,1.084,0.988,1.042,0.931,0.932,0.89,0.808,1.053,0.999,0.85,1.02,1.043,0.932,1.117,1.456,1.004,0.91,0.933,2.068,1.049,1.018,0.781,0.913,0.987,0.921,1.044,1.01,1.001,1.03,1.11,0.9,1.126,0.988 +NM_053056,0.872,0.929,0.883,0.775,1.101,1.048,0.665,0.445,1.41,1.14,0.706,0.677,0.686,0.653,0.83,0.891,0.77,0.893,1.15,1.035,0.87,1.154,1.446,1.277,0.791,1.23,0.878,0.807,0.899,1.305,1.472,1.863,2.138,1.544,0.127,0.603,0.678,1.224,1.451,0.711,1.251,0.98,0.494,3.062,0.883,0.682,0.533,0.831,0.562,0.473,0.791,0.801,1.064,1.768 +NM_053067,0.825,0.962,1.211,0.836,1.189,0.937,0.766,0.767,1.839,1.373,0.809,0.898,0.848,0.921,0.916,1.181,1.143,1.093,1.22,1.035,0.997,0.84,1.179,1.459,0.796,1.003,1.21,1.088,0.635,0.959,1.335,1.563,2.466,0.953,0.875,0.851,0.871,1.005,1.166,0.996,1.595,0.872,0.784,1.433,1.191,1.078,1.16,0.854,1.089,0.972,1.178,0.964,0.954,1.846 +NM_053274,0.988,1.119,1.246,0.875,1.072,1.065,0.793,1.015,1.112,1.029,0.872,1.097,0.914,0.807,0.904,1.002,1.099,1.154,1.001,1.001,0.98,1.084,1.074,0.934,0.935,0.849,0.958,1.133,0.686,0.948,1.085,1.015,1.073,1.006,0.978,0.812,0.956,1.101,1.069,0.966,0.984,1.001,0.861,0.989,1.056,1.073,1.17,1.06,1.01,1.0,0.924,0.913,0.918,0.963 +NM_053275,1.104,0.656,1.35,0.978,1.134,0.76,0.289,0.418,1.342,1.108,1.399,0.561,0.878,1.057,0.892,1.259,1.153,1.311,2.667,0.431,0.854,0.577,1.514,1.17,0.583,1.738,2.037,0.871,0.356,0.909,0.905,0.894,0.805,1.029,0.382,0.919,1.194,1.819,1.429,0.503,1.518,0.998,0.74,1.226,0.832,0.726,1.316,1.126,1.19,1.356,0.816,0.893,1.117,0.974 +NM_053276,1.106,0.811,1.073,1.178,0.743,1.134,1.303,0.85,1.106,0.89,1.078,0.962,1.223,1.051,1.154,1.225,0.884,0.956,1.068,0.943,1.035,0.997,1.199,1.076,1.045,1.066,0.944,0.832,0.934,0.915,0.793,0.951,1.124,1.172,1.107,1.217,1.114,1.022,1.056,0.949,1.379,1.116,1.414,0.888,1.018,0.851,0.931,0.894,1.047,0.833,0.978,0.985,1.13,1.304 +NM_053277,0.317,2.057,0.276,1.245,0.296,3.296,2.332,0.307,0.364,0.271,1.175,0.302,0.317,0.269,0.449,0.498,0.384,1.965,0.276,1.957,0.303,0.337,2.189,0.277,8.54,0.27,0.388,0.348,1.734,5.038,0.366,4.762,0.469,5.677,0.295,0.53,2.586,0.287,1.609,1.409,0.387,2.618,1.426,4.123,0.315,0.969,0.507,0.292,0.563,0.295,2.446,0.867,0.299,2.31 +NM_053278,1.094,0.821,0.916,0.894,1.029,1.058,1.074,1.004,0.811,1.049,0.958,0.998,1.14,0.849,0.981,0.999,0.887,1.028,1.204,0.993,1.1,0.97,0.891,1.144,1.026,1.006,1.05,1.05,0.871,1.112,0.978,1.05,0.928,0.939,0.995,1.01,0.933,1.075,0.933,0.934,0.962,0.998,1.148,0.993,1.002,1.069,0.901,0.917,0.915,0.972,1.065,1.027,0.942,0.98 +NM_053279,0.862,1.178,1.323,0.791,0.946,0.67,0.859,0.944,0.812,0.913,0.762,1.284,0.905,0.911,0.893,0.791,2.421,0.997,1.622,0.885,0.867,0.834,0.816,0.853,1.205,0.729,1.635,0.945,0.664,0.792,1.006,3.756,1.066,1.234,0.729,1.4,0.915,1.047,1.123,0.92,1.28,0.798,1.476,0.733,1.569,1.07,1.122,0.759,0.873,1.855,0.89,1.617,1.577,0.907 +NM_053280,1.045,1.088,0.936,0.999,0.98,1.034,1.313,1.293,1.034,0.986,0.997,1.121,1.104,1.083,1.057,1.153,0.999,0.915,0.889,1.145,0.957,0.992,1.002,1.039,0.925,1.021,1.049,1.035,1.169,0.963,1.057,0.979,1.091,1.072,1.04,0.901,1.145,0.945,0.981,1.037,1.113,0.872,1.226,0.962,1.072,0.988,1.003,0.87,0.864,0.914,1.063,1.08,1.106,0.92 +NM_053281,1.0,1.096,1.075,0.988,0.999,1.083,1.282,1.171,0.996,1.002,1.024,0.839,0.825,0.902,0.941,0.909,0.882,1.117,1.021,1.086,0.921,0.898,0.912,1.159,0.994,1.0,1.135,1.114,1.135,1.035,0.999,0.946,1.011,1.06,1.116,1.094,1.027,1.108,0.834,1.037,0.953,1.003,0.95,1.109,1.073,1.028,1.085,1.02,0.836,0.938,1.056,1.003,1.203,1.219 +NM_053283,0.895,0.878,0.999,1.097,1.067,1.004,1.136,0.948,1.038,1.154,1.038,0.947,0.991,1.289,1.068,1.048,0.989,1.112,0.951,0.914,0.959,1.045,1.031,1.069,1.055,0.943,1.022,1.076,0.745,0.915,1.026,1.034,1.019,1.035,1.08,1.083,1.047,0.887,0.856,1.062,1.129,1.065,1.043,0.998,1.066,0.921,1.045,1.075,1.008,0.848,0.921,1.002,0.99,0.942 +NM_053284,0.912,0.813,1.042,1.079,0.975,1.086,0.889,0.996,1.046,1.109,1.005,1.032,0.898,1.04,1.021,0.927,1.022,0.976,1.095,1.084,1.167,1.035,0.921,1.051,0.896,1.063,0.998,0.994,1.043,0.984,1.01,0.927,1.094,1.0,0.996,0.935,0.979,0.953,1.059,1.035,0.966,1.044,1.044,1.021,0.979,1.0,1.11,0.924,0.997,1.005,0.979,1.169,1.087,1.035 +NM_053285,0.814,1.001,0.986,0.832,1.071,0.998,1.048,1.196,0.957,0.895,0.999,1.135,1.015,1.028,0.966,0.939,1.033,0.934,0.927,1.182,1.114,0.971,0.954,0.958,1.006,0.934,1.135,0.898,1.085,1.026,1.123,0.947,1.161,0.984,1.144,0.951,0.831,1.033,0.816,1.143,0.895,0.865,0.918,0.948,1.184,0.997,0.865,0.985,0.97,0.869,0.987,0.992,1.066,0.968 +NM_053286,0.994,0.873,0.889,1.018,1.069,1.153,1.039,0.917,0.981,0.878,1.0,1.0,0.992,0.946,0.861,0.977,0.988,0.928,0.917,1.003,1.057,0.998,0.924,1.07,1.079,0.915,0.998,1.108,1.059,0.989,1.077,1.029,1.037,0.937,1.037,1.027,0.989,1.123,1.079,1.038,0.934,0.985,0.944,1.04,1.099,1.031,1.027,0.954,1.133,0.957,0.992,0.893,0.882,1.024 +NM_054013,1.011,1.053,0.942,1.14,1.004,1.037,0.819,0.775,0.852,0.999,0.994,1.049,0.969,0.992,0.839,1.069,1.045,0.988,0.949,0.983,1.019,1.095,0.967,1.063,1.029,1.12,0.9,0.864,0.986,1.072,1.064,1.027,0.963,0.92,1.042,0.991,1.177,1.077,0.984,1.146,0.979,0.96,1.174,1.107,0.959,0.889,0.855,1.024,1.06,1.081,1.041,0.961,0.981,0.974 +NM_054014,1.819,1.576,2.5220000000000002,1.9649999999999999,2.133,1.855,1.8649999999999998,1.6440000000000001,2.523,2.443,1.655,1.847,2.0629999999999997,1.5390000000000001,1.892,2.6870000000000003,2.122,1.8090000000000002,2.508,1.807,1.792,1.471,2.271,2.5919999999999996,1.799,2.295,2.3970000000000002,2.275,1.572,2.156,3.096,1.807,5.119,2.064,1.68,1.867,1.556,2.449,2.301,2.8899999999999997,2.269,1.318,1.637,2.74,2.2670000000000003,1.2429999999999999,1.737,2.077,2.441,2.052,2.374,2.217,2.485,3.617 +NM_054017,0.95,0.927,1.006,0.978,1.044,0.925,1.037,1.02,0.923,1.066,0.957,0.958,0.914,0.951,0.996,1.202,0.939,1.127,0.918,0.979,0.997,1.089,0.851,0.884,1.121,1.025,1.181,1.017,0.852,0.939,0.997,1.046,0.917,0.96,0.943,0.985,1.047,1.143,0.962,1.054,0.986,1.072,0.895,1.139,1.007,1.172,1.064,1.006,1.055,1.066,0.909,0.857,0.998,1.108 +NM_054021,1.119,1.039,1.041,0.999,1.083,1.087,1.096,0.823,1.05,1.065,1.027,0.893,0.933,1.046,0.943,1.043,0.996,1.04,0.991,1.077,0.81,1.051,1.256,1.087,0.841,0.974,1.147,0.943,1.24,1.045,1.075,0.987,1.045,0.934,0.792,0.908,0.938,0.911,1.102,0.975,0.899,1.01,0.97,0.998,1.033,0.972,1.123,0.994,0.825,1.135,0.922,1.015,0.92,0.924 +NM_054022,0.729,0.951,1.017,0.799,1.0,1.051,0.829,0.695,1.1,0.984,1.003,0.859,0.738,0.763,1.105,1.362,0.85,0.974,0.911,1.097,0.684,0.841,1.147,1.108,0.853,0.868,0.876,0.799,0.706,1.179,0.826,1.381,0.817,1.042,0.565,0.794,1.131,0.745,1.137,0.895,1.063,1.119,1.0,0.99,1.132,1.28,1.037,0.734,1.157,0.902,1.08,0.974,0.886,1.432 +NM_054023,1.175,1.063,0.988,1.049,0.909,0.941,1.042,0.898,1.014,0.999,0.945,0.95,1.026,0.904,0.966,1.064,0.933,1.024,0.964,0.869,0.965,0.986,1.048,1.003,0.938,1.077,1.198,0.992,1.085,1.098,0.983,1.186,1.007,1.456,0.944,0.907,0.978,1.218,0.979,0.977,1.106,1.195,0.891,1.008,1.107,1.065,0.896,1.024,1.06,0.829,0.973,1.027,0.941,1.06 +NM_054024,1.006,0.995,0.978,0.858,1.001,1.922,1.085,0.773,0.783,0.913,1.127,0.888,1.012,0.964,0.85,1.166,1.114,0.86,1.03,1.501,0.857,0.902,1.021,0.883,1.24,0.87,0.789,1.124,1.526,1.401,1.054,0.946,0.866,1.018,0.884,0.959,1.283,0.95,1.205,1.014,0.748,1.107,1.256,1.018,1.022,1.587,1.191,0.918,1.588,0.953,0.986,1.002,0.858,1.048 +NM_054025,0.932,1.079,1.032,1.054,1.067,1.127,1.302,0.938,0.953,1.068,1.027,0.867,1.016,0.998,1.13,1.094,0.914,1.094,0.871,0.919,0.991,0.882,1.003,1.094,0.969,1.056,0.934,0.984,1.174,1.027,1.093,1.043,0.869,0.872,1.266,0.945,1.072,1.075,1.188,0.967,0.983,1.009,1.062,0.948,1.036,0.992,1.038,0.943,0.971,0.99,1.122,0.785,0.915,0.992 +NM_054026,1.4289999999999998,1.958,2.19,1.594,2.049,2.2190000000000003,1.585,1.552,2.189,2.0279999999999996,1.762,1.948,1.639,1.521,1.826,2.65,1.9700000000000002,2.054,2.092,1.709,1.463,2.202,2.099,2.5330000000000004,1.4,1.6480000000000001,2.239,1.944,1.369,2.2119999999999997,2.048,2.597,3.29,2.346,1.588,1.328,1.9689999999999999,2.299,2.606,1.746,2.279,2.301,1.466,2.037,1.959,2.052,1.984,1.656,2.718,1.728,1.923,1.7349999999999999,1.672,2.8810000000000002 +NM_054027,0.817,1.019,1.031,0.718,0.978,1.044,0.741,0.717,0.866,1.081,1.181,0.845,0.892,0.929,1.005,1.47,0.721,0.89,0.947,1.286,0.783,1.024,1.298,0.893,1.018,0.809,0.98,0.956,0.664,1.046,0.856,2.313,2.604,1.302,0.63,1.04,1.125,0.877,1.144,1.842,0.825,1.15,1.048,0.967,0.925,1.162,0.953,0.846,1.215,0.925,1.081,0.89,0.939,1.171 +NM_054028,1.169,0.987,1.03,1.011,0.966,0.89,1.018,0.985,0.943,1.087,1.079,0.924,1.038,0.95,0.948,0.927,0.983,0.892,1.05,0.899,1.017,1.112,0.985,0.87,1.074,1.033,1.006,1.171,0.794,1.09,1.028,0.979,0.929,1.049,0.946,0.947,0.998,1.059,1.031,1.133,0.953,0.857,1.205,1.08,1.027,1.027,1.238,1.057,1.069,1.084,1.004,0.96,1.03,1.042 +NM_054029,0.856,1.0,1.001,0.961,0.898,0.944,1.089,1.1,1.004,1.1,0.906,1.065,1.064,0.878,0.816,1.071,1.029,0.918,1.19,0.938,1.077,1.035,0.987,1.052,1.04,0.941,0.823,1.012,0.795,0.919,0.992,1.008,1.081,1.019,1.044,0.873,1.086,1.149,1.016,1.047,0.991,0.885,0.845,0.952,0.967,0.895,1.035,0.909,0.9,1.014,1.048,0.977,0.98,1.006 +NM_054030,1.013,0.94,1.145,1.086,0.975,0.979,1.064,1.092,1.007,0.98,0.851,1.054,1.009,1.121,1.225,1.016,0.978,1.058,1.084,0.934,1.121,1.011,0.942,0.944,1.03,1.09,1.029,0.9,1.099,0.968,0.955,1.023,1.058,0.999,1.115,1.047,1.002,1.006,1.089,0.955,0.938,0.936,0.977,0.963,0.957,1.05,0.869,0.998,1.019,0.926,1.017,0.968,1.036,0.942 +NM_054031,1.044,0.899,1.088,0.954,0.949,0.849,0.912,0.987,0.95,1.073,0.944,0.995,1.053,1.333,1.292,0.858,0.997,1.0,1.176,0.938,0.901,1.061,1.001,0.935,0.992,1.05,0.941,0.876,1.694,0.855,1.148,0.982,0.97,0.997,0.874,0.947,1.008,1.015,0.862,1.011,1.063,0.943,1.109,0.942,0.972,1.024,0.901,0.939,1.074,0.889,1.092,0.955,0.894,1.111 +NM_054032,1.062,0.975,1.004,0.976,1.089,0.981,0.995,1.074,0.972,0.873,0.993,0.941,0.953,0.907,1.0,0.959,0.991,0.987,0.972,0.939,0.893,1.097,0.993,1.054,0.988,1.084,1.107,1.018,1.34,1.012,0.94,1.057,1.023,0.896,0.869,0.996,1.178,1.049,1.077,1.187,1.07,1.047,1.446,1.014,1.112,1.088,1.006,0.904,0.889,1.053,1.046,0.93,1.01,1.087 +NM_054034,2.142,1.928,1.891,1.976,1.991,1.9769999999999999,1.996,2.068,2.01,1.996,1.976,2.069,1.853,2.496,1.798,2.029,1.935,2.011,2.0,2.064,2.159,1.934,1.758,2.051,2.061,2.032,1.839,1.9180000000000001,2.545,1.988,1.93,2.099,1.995,2.072,2.058,2.073,1.895,1.908,2.02,2.1399999999999997,2.121,1.9860000000000002,1.899,1.942,2.013,2.003,1.863,1.98,1.988,2.078,1.938,1.9869999999999999,1.9020000000000001,2.153 +NM_054108,1.158,1.047,1.069,0.967,1.161,0.901,0.987,0.964,1.055,1.055,1.141,1.058,0.891,0.886,1.01,1.08,1.011,1.019,0.999,1.056,1.066,0.996,1.013,1.014,0.965,1.064,1.229,0.988,1.012,1.044,1.055,1.025,1.058,1.039,1.319,0.956,0.996,1.013,0.995,0.946,1.095,0.997,1.168,1.031,1.109,0.969,1.001,1.095,0.917,1.037,0.954,0.853,0.959,0.969 +NM_054111,0.863,1.109,0.783,1.061,1.078,1.019,1.122,0.883,0.806,0.978,0.949,1.176,0.88,0.887,1.352,1.004,1.0,0.885,0.825,0.97,1.016,1.032,1.029,0.92,0.994,0.92,0.983,0.933,1.491,1.018,1.051,1.03,0.94,0.955,0.964,0.954,0.874,1.044,0.961,1.16,1.004,1.035,1.182,0.884,1.026,0.967,1.043,1.082,1.021,0.915,1.02,1.047,1.03,0.841 +NM_054112,1.012,0.942,1.02,1.156,1.093,0.986,1.071,0.894,1.106,1.079,0.996,0.905,0.919,1.078,1.044,1.226,0.986,1.032,0.949,1.196,1.005,1.055,0.911,1.051,0.969,0.97,0.931,1.033,1.413,0.985,0.952,1.099,1.133,0.911,1.149,1.167,0.938,1.008,0.924,1.039,1.003,0.912,1.059,1.078,0.997,1.082,0.96,0.96,0.785,1.023,0.997,0.863,1.212,0.923 +NM_054113,1.02,0.962,1.01,1.139,1.331,1.042,0.838,0.971,1.106,0.811,1.371,0.969,0.828,1.12,0.962,1.018,1.044,0.901,0.935,0.96,1.011,0.976,1.347,0.914,1.086,0.773,1.097,0.787,0.924,0.988,0.897,0.962,0.979,1.159,0.964,0.985,0.911,0.933,0.906,0.795,0.912,0.896,0.999,0.821,1.071,1.058,0.936,1.032,0.831,0.961,1.001,0.881,0.98,1.063 +NM_057088,1.005,1.024,1.007,1.056,1.045,0.914,1.064,0.848,0.84,1.142,0.938,1.167,1.042,0.921,0.982,1.256,0.897,0.954,1.052,0.934,1.106,1.158,1.126,1.032,0.864,1.296,0.815,0.98,1.441,0.988,0.934,0.995,1.01,1.011,0.969,0.813,0.899,1.218,0.917,0.796,0.879,1.0,0.945,0.984,0.937,0.927,0.988,1.279,0.958,1.137,0.986,1.014,1.175,1.009 +NM_057089,0.722,0.943,0.609,1.046,0.612,2.18,0.499,0.487,0.646,0.652,2.716,0.856,0.71,0.569,1.127,3.045,0.798,1.046,1.434,0.815,0.536,0.759,1.743,0.645,0.809,0.79,0.941,0.377,1.174,2.159,0.557,1.121,0.703,1.675,0.204,0.467,1.682,1.051,2.833,1.589,0.704,1.095,0.855,2.173,0.558,1.518,1.96,0.791,1.401,0.68,1.019,1.489,0.563,0.797 +NM_057091,1.127,1.04,0.979,0.904,1.056,0.998,0.959,1.068,1.184,0.959,0.983,0.996,0.954,0.967,0.811,1.022,1.016,1.056,0.859,0.996,0.912,1.034,1.054,1.004,0.941,1.074,1.023,1.002,0.999,1.001,0.895,0.98,1.085,1.035,0.83,0.885,0.945,1.056,1.054,0.984,0.986,0.901,1.116,1.038,1.103,1.048,0.991,1.064,1.127,1.057,0.912,1.143,0.834,1.09 +NM_057092,2.073,1.9779999999999998,2.004,2.0700000000000003,1.899,1.853,2.025,1.817,2.08,2.057,2.058,1.912,2.011,1.955,2.034,1.9489999999999998,1.951,2.051,2.143,2.088,1.808,1.9769999999999999,2.1079999999999997,1.8639999999999999,1.823,2.128,2.045,2.004,2.1229999999999998,2.146,1.927,2.167,1.92,2.123,1.9769999999999999,1.8729999999999998,2.186,2.001,2.1550000000000002,2.193,2.067,2.0869999999999997,1.794,1.9329999999999998,2.0460000000000003,1.9899999999999998,2.049,2.1020000000000003,2.008,2.236,1.9340000000000002,2.0709999999999997,1.9180000000000001,2.159 +NM_057093,0.862,1.016,0.815,0.998,0.795,1.167,1.231,0.875,0.935,0.879,1.003,0.82,0.774,0.797,1.068,1.431,0.746,1.072,0.758,1.071,0.784,0.947,1.342,0.845,0.831,1.05,0.873,0.777,1.008,1.01,0.814,0.992,1.343,1.106,1.045,1.258,1.194,0.813,1.726,1.089,0.877,1.214,0.897,1.211,0.793,0.913,1.118,0.909,1.373,0.693,1.088,0.957,0.831,1.303 +NM_057096,1.097,0.862,0.883,0.881,1.057,0.996,1.062,0.945,0.994,1.095,1.001,1.047,0.93,0.978,0.798,0.849,1.008,0.928,1.149,0.917,1.26,1.051,0.975,0.912,0.946,1.105,0.979,0.935,0.682,0.974,1.279,1.147,1.065,0.932,0.971,1.104,1.017,0.952,0.926,1.049,1.063,0.909,0.853,0.901,1.002,1.044,1.019,1.092,1.07,1.126,1.028,0.998,1.027,0.948 +NM_057157,1.069,0.99,0.921,0.983,0.927,0.968,0.934,1.024,1.122,1.053,1.176,1.106,1.009,0.935,0.917,0.952,0.986,0.994,0.915,1.068,0.967,1.073,0.877,0.988,1.049,1.072,1.099,1.065,0.961,1.136,0.971,1.195,0.913,1.005,1.02,0.977,1.026,0.978,1.18,0.986,0.973,1.019,0.869,0.891,0.852,0.947,1.023,0.92,0.93,1.016,1.067,1.028,0.99,0.919 +NM_057158,1.12,0.938,0.983,1.073,0.971,1.133,0.966,0.945,0.838,1.078,1.066,1.056,0.891,1.095,0.972,0.902,1.079,1.058,0.972,1.0,0.989,1.159,0.986,0.951,1.03,0.905,1.166,0.993,0.859,1.014,0.869,1.036,1.009,0.935,0.894,1.137,1.08,0.979,1.111,1.026,1.092,1.008,1.206,1.084,0.98,0.82,0.964,0.906,1.162,0.985,1.082,0.998,0.914,0.862 +NM_057160,2.043,1.9979999999999998,1.786,1.896,2.263,1.885,2.442,2.027,1.79,1.826,2.15,1.871,1.968,1.919,1.936,2.222,1.96,2.033,2.037,1.992,1.9409999999999998,2.014,2.081,1.971,2.085,2.0069999999999997,1.47,1.895,1.939,2.0,1.8739999999999999,2.058,1.887,1.894,2.024,2.157,2.363,2.202,2.063,1.9820000000000002,1.9220000000000002,1.956,2.0789999999999997,2.295,2.021,1.9249999999999998,1.861,2.1159999999999997,1.706,1.827,1.752,1.996,1.8170000000000002,2.126 +NM_057161,0.596,1.279,1.402,0.599,0.911,1.147,0.682,0.599,1.231,0.962,0.869,1.134,0.783,0.669,0.809,1.259,0.82,1.177,1.339,1.297,0.417,0.707,1.204,0.87,0.622,0.932,1.239,1.061,0.487,1.402,0.968,1.742,2.283,1.291,0.638,1.274,1.006,0.848,0.991,1.25,1.149,1.046,0.563,1.485,1.074,0.795,1.356,1.012,0.896,0.631,0.748,0.687,0.872,1.689 +NM_057162,1.002,1.064,0.969,0.978,1.004,1.017,1.196,1.002,0.967,0.961,0.942,0.933,0.954,0.912,0.935,0.934,1.054,0.973,0.978,1.081,0.972,0.967,0.96,0.929,1.019,1.065,1.096,0.969,0.847,0.988,1.025,1.006,0.988,1.153,1.051,1.124,0.921,1.015,0.97,1.149,0.985,1.046,1.128,0.981,1.098,0.967,0.879,0.997,1.063,1.074,1.058,1.153,1.074,1.148 +NM_057163,0.935,0.956,0.847,0.884,1.153,1.096,1.004,0.968,0.939,1.06,0.879,1.015,1.018,1.178,1.037,0.99,1.037,0.949,1.007,1.082,0.985,1.018,1.051,1.157,1.062,1.027,1.085,1.007,0.934,1.031,0.96,1.03,0.961,0.873,1.128,0.919,1.047,0.944,1.022,0.883,0.893,1.005,0.919,0.978,0.87,1.107,0.953,0.932,1.092,1.074,0.985,1.121,0.986,0.994 +NM_057167,0.424,1.276,0.575,0.644,0.637,1.45,1.085,0.457,0.481,0.763,1.07,0.56,0.506,0.487,1.232,1.371,0.527,0.575,0.559,0.87,0.677,0.437,2.866,0.596,0.745,0.533,0.554,0.588,0.617,2.368,0.529,16.79,3.879,1.547,0.446,1.012,0.943,0.664,2.889,6.771,0.806,1.953,0.914,0.791,0.602,2.354,0.975,0.509,0.851,0.631,1.996,2.726,0.674,2.622 +NM_057168,1.046,0.898,1.015,0.942,0.978,0.934,0.841,1.091,0.883,1.014,1.103,0.822,0.97,0.907,1.041,0.939,0.965,0.89,0.996,0.869,0.996,1.037,0.979,0.97,0.988,1.076,1.115,0.991,0.752,0.985,1.153,1.133,0.874,1.244,0.876,0.994,1.058,0.998,1.091,1.092,1.045,0.98,0.938,1.144,1.124,1.008,0.983,0.99,0.887,0.957,1.036,0.947,0.897,1.003 +NM_057174,0.926,1.01,1.085,1.039,0.962,1.007,0.974,0.928,0.924,0.949,1.148,0.983,1.012,0.961,1.014,0.974,0.985,1.037,0.895,1.025,0.856,0.945,0.908,1.04,1.02,0.981,1.052,1.118,0.818,1.005,1.001,1.154,1.016,1.088,0.932,1.209,0.985,1.064,0.982,1.025,0.871,0.938,1.418,1.054,1.079,0.913,0.92,0.988,1.145,0.972,0.961,0.966,1.088,1.019 +NM_057176,0.998,0.924,0.974,0.941,0.929,0.973,0.902,1.081,0.883,0.948,0.975,0.907,0.98,1.101,0.926,0.923,0.949,1.006,1.039,0.894,0.981,0.972,0.807,0.889,0.921,1.032,1.009,1.032,0.787,1.041,0.896,0.923,1.009,1.081,1.082,1.016,1.172,1.058,1.057,0.983,1.047,0.975,1.175,0.896,1.003,1.182,0.955,0.945,0.841,0.946,1.002,0.893,1.028,0.983 +NM_057177,2.021,1.9169999999999998,2.0860000000000003,1.96,1.978,1.931,1.992,2.096,2.082,2.128,1.918,2.1479999999999997,2.138,1.9289999999999998,1.9749999999999999,1.9100000000000001,1.88,1.894,2.059,2.092,1.994,1.912,2.046,1.925,2.021,1.932,1.9989999999999999,2.0410000000000004,1.589,2.077,2.0869999999999997,2.153,1.827,1.974,2.0309999999999997,2.13,1.9449999999999998,1.9829999999999999,2.051,1.867,1.94,1.9729999999999999,2.027,1.972,2.116,2.094,2.0359999999999996,2.084,1.8279999999999998,1.877,1.927,2.057,1.95,2.1390000000000002 +NM_057178,0.95,1.014,0.981,0.937,1.124,1.143,1.131,1.126,0.954,0.997,1.115,1.041,1.097,1.058,1.046,1.172,0.934,1.009,1.193,1.004,0.96,1.0,0.958,1.028,1.032,1.141,0.907,0.856,1.334,0.991,0.924,0.796,1.068,0.879,1.047,0.903,1.039,1.021,0.937,0.901,0.974,0.998,0.969,0.976,1.036,0.97,0.875,1.175,1.125,1.018,0.962,0.971,1.033,0.924 +NM_057179,0.83,0.976,0.962,0.816,0.846,1.09,0.868,0.85,0.885,0.969,0.959,0.928,0.802,0.849,1.157,1.085,0.799,0.914,0.818,0.882,1.023,0.88,0.951,0.986,0.956,0.887,1.023,1.031,0.802,1.438,0.958,2.245,1.957,1.325,0.855,0.935,0.928,0.893,1.273,2.731,1.004,1.38,0.935,0.938,1.171,1.172,0.938,0.838,0.879,1.001,1.027,2.01,1.228,1.562 +NM_057182,1.048,1.093,0.935,0.968,0.999,1.016,0.931,1.015,1.022,1.002,0.94,0.913,1.035,1.002,1.289,0.922,0.968,0.907,0.969,1.03,0.973,1.079,1.121,0.986,0.929,0.965,0.975,0.986,1.039,0.978,1.023,0.963,1.201,1.002,0.988,1.123,0.998,0.966,1.06,1.168,1.021,0.974,1.113,0.912,0.966,1.024,0.88,0.91,0.951,1.219,0.981,1.04,1.061,1.21 +NM_058004,1.047,1.265,1.027,1.196,1.031,0.993,0.917,0.88,0.922,0.865,1.026,0.91,0.984,0.99,1.221,1.114,1.074,0.984,0.896,1.045,0.88,1.09,1.009,1.004,0.945,0.928,1.001,0.976,1.264,0.946,0.948,0.982,0.988,1.139,1.097,1.117,0.995,0.957,1.178,0.999,0.953,1.141,1.051,1.038,1.055,1.077,0.942,0.943,0.944,1.125,0.993,1.174,1.174,1.089 +NM_058163,0.653,1.077,1.105,0.629,0.902,1.135,0.631,0.686,1.205,0.941,0.826,1.023,0.675,0.672,0.913,1.284,0.899,0.985,1.07,1.007,0.479,0.942,1.093,1.238,0.641,0.91,1.226,0.951,0.526,1.339,0.944,1.432,1.671,1.543,0.234,1.078,0.947,1.023,1.298,0.807,1.149,1.164,0.631,0.64,1.002,0.784,1.096,0.912,0.795,0.752,0.97,0.994,0.884,1.312 +NM_058165,0.902,0.963,0.953,0.971,0.963,0.95,1.258,0.96,0.957,0.909,1.008,1.033,1.055,0.998,1.124,0.902,0.899,1.144,1.073,0.924,1.0,0.957,0.99,1.119,0.981,0.997,0.988,0.899,0.832,1.025,1.0,1.017,1.014,1.063,1.14,1.061,0.967,0.872,1.039,1.072,1.077,0.981,0.857,0.958,0.915,0.992,0.951,1.093,1.062,1.11,0.978,0.85,1.113,0.898 +NM_058168,1.035,0.943,0.933,1.168,1.092,1.003,1.076,1.113,0.958,1.061,1.05,0.97,1.152,0.902,0.908,1.055,0.935,0.96,1.142,0.99,1.012,0.98,0.994,1.044,1.037,1.16,1.06,0.908,0.906,1.029,0.88,0.85,1.159,1.097,1.081,1.175,0.867,1.069,1.062,0.928,0.918,0.919,0.78,1.041,0.904,0.973,1.005,0.906,1.054,0.954,0.851,1.085,0.975,0.966 +NM_058169,1.083,0.865,1.041,0.967,1.048,0.988,1.096,1.023,1.055,0.992,0.864,1.048,0.889,1.138,1.019,1.114,1.036,0.96,0.912,1.028,0.929,1.096,0.903,1.009,1.021,1.024,1.186,1.078,0.645,0.953,0.919,0.961,1.072,1.114,0.864,0.933,1.028,1.069,1.273,0.979,0.955,1.067,0.799,0.952,1.052,1.005,0.918,1.113,0.975,0.927,1.107,0.99,0.924,0.888 +NM_058171,1.004,1.102,0.981,0.992,1.045,0.949,1.142,0.901,0.963,1.033,1.109,1.019,0.96,0.838,1.001,1.167,0.984,0.856,0.994,1.133,0.846,1.09,1.036,0.877,0.923,1.067,0.874,1.071,1.102,1.067,1.035,1.143,1.067,0.894,0.91,1.118,1.163,0.984,0.936,0.897,0.958,1.022,0.795,1.111,1.06,0.978,0.816,1.048,0.924,1.038,0.978,0.927,1.074,1.132 +NM_058172,0.355,0.915,0.513,0.604,0.362,1.833,0.665,0.367,0.331,0.344,1.866,0.362,0.366,0.334,1.452,2.314,0.393,0.616,0.371,1.331,0.513,0.335,1.604,0.394,0.643,0.365,0.649,0.512,0.31,1.97,0.336,2.564,0.634,1.779,0.33,1.219,1.44,0.461,2.166,2.336,0.692,1.785,2.044,2.558,0.455,2.12,1.461,0.331,1.665,0.356,2.009,1.025,0.464,0.995 +NM_058174,0.798,1.127,0.773,1.13,0.739,1.154,0.917,0.708,0.96,0.771,0.853,0.804,0.808,0.827,1.243,1.027,0.7,0.794,0.782,0.907,1.026,0.814,1.386,0.758,1.209,0.826,0.721,0.734,0.777,2.399,0.718,7.89,1.091,1.777,0.704,0.833,1.022,1.041,2.686,2.916,0.791,1.715,0.963,0.953,0.828,1.207,0.809,0.821,0.802,0.822,1.208,1.151,0.779,1.073 +NM_058175,1.022,0.859,0.845,0.963,0.988,0.927,0.913,0.958,0.985,0.825,0.922,1.03,1.024,1.006,0.945,0.993,1.008,1.07,1.142,0.853,1.126,0.967,0.84,0.995,1.05,0.95,0.872,1.049,1.044,1.084,1.045,1.036,1.029,0.911,1.027,0.994,0.792,0.95,1.003,1.042,1.019,0.954,1.057,0.891,1.034,1.017,0.938,1.045,1.046,0.969,1.016,0.896,1.035,0.977 +NM_058177,2.125,1.954,2.036,2.115,1.905,2.064,2.042,2.02,2.0549999999999997,1.792,1.9180000000000001,1.8769999999999998,1.987,2.2119999999999997,1.654,2.029,2.0220000000000002,2.3049999999999997,2.129,2.1399999999999997,2.07,2.064,2.056,2.028,2.007,2.1950000000000003,1.979,1.8609999999999998,2.221,2.0540000000000003,2.089,1.93,1.764,1.6749999999999998,2.09,2.1,1.944,2.1180000000000003,1.839,1.9779999999999998,2.025,2.027,1.836,1.795,2.068,2.039,2.0060000000000002,2.083,2.096,2.064,1.9689999999999999,1.845,2.045,2.4050000000000002 +NM_058178,0.995,1.044,1.034,0.976,0.982,1.121,1.053,0.912,0.871,0.878,1.023,1.023,0.952,0.956,0.867,0.884,0.863,1.053,1.041,0.999,0.911,1.043,0.826,1.061,0.962,1.015,0.997,0.84,1.063,0.918,0.958,1.058,1.421,0.993,1.037,0.857,0.995,1.04,1.093,0.99,1.027,1.017,0.941,1.076,1.091,0.952,0.85,0.896,1.027,1.016,1.06,1.009,0.977,1.103 +NM_058180,1.106,1.122,1.174,1.062,0.94,1.004,0.927,0.959,1.055,0.863,0.913,1.091,1.116,0.994,1.159,0.921,0.932,1.104,1.053,1.027,1.063,1.017,0.993,0.964,1.065,0.982,0.912,0.96,0.973,1.015,0.997,0.992,0.964,1.13,1.15,1.058,1.059,0.869,1.041,0.964,1.0,0.951,0.946,0.929,0.915,0.989,1.039,1.036,1.024,0.976,0.896,1.014,1.007,1.098 +NM_058182,0.995,1.353,0.893,1.037,0.95,1.017,1.051,0.977,0.929,0.95,0.903,0.895,0.908,0.859,0.886,1.138,1.029,0.918,0.993,0.786,0.967,1.022,0.951,0.992,1.717,0.884,1.064,1.03,0.972,1.292,1.024,1.273,1.42,1.227,0.823,0.936,1.082,1.139,1.032,1.139,1.127,1.096,1.021,0.958,0.955,0.919,0.988,0.856,0.96,1.0,0.995,0.898,1.12,1.246 +NM_058183,1.04,1.02,1.19,1.047,0.973,1.021,0.943,1.026,0.998,0.983,0.992,0.965,0.885,0.998,0.893,0.873,1.078,1.052,1.147,1.023,0.946,0.85,0.955,1.026,0.992,0.861,1.239,0.932,0.951,0.969,1.089,0.869,1.211,1.009,0.978,1.079,0.934,1.118,0.99,1.111,0.894,1.128,1.102,1.101,1.083,1.033,1.159,1.052,1.244,1.092,1.029,0.956,0.917,0.89 +NM_058186,0.638,1.967,1.188,0.943,0.682,3.438,1.18,0.578,1.23,0.477,2.366,0.432,0.682,0.607,1.557,2.906,0.92,1.312,1.227,2.072,0.435,0.954,1.542,0.684,0.956,0.748,0.648,0.696,0.82,3.081,0.868,1.05,0.474,3.621,0.171,0.745,2.653,0.756,1.794,0.85,1.231,1.863,0.864,0.461,0.942,1.447,0.229,0.927,0.618,0.821,1.581,0.319,0.593,0.542 +NM_058187,0.939,1.1,1.553,0.937,0.985,0.886,0.464,0.732,1.361,1.382,0.721,1.124,1.152,0.922,0.883,0.776,1.36,0.939,1.785,0.809,0.825,0.91,0.814,1.715,0.624,0.983,1.912,0.933,0.562,0.863,1.137,1.903,5.628,1.202,0.569,0.813,0.665,0.988,1.103,0.879,1.232,1.281,0.799,1.764,1.219,0.82,0.81,0.968,0.589,1.614,0.815,1.326,2.365,1.244 +NM_058188,0.974,1.0,1.004,1.045,1.026,1.045,1.153,0.918,0.911,0.917,0.958,1.195,0.995,1.016,1.058,1.108,1.085,1.099,0.896,1.005,0.914,0.944,0.888,0.91,0.977,1.052,0.955,1.001,0.669,1.034,0.984,0.919,0.833,0.991,1.043,0.941,1.093,0.974,0.984,0.983,0.912,1.066,1.197,0.965,0.909,0.853,1.015,1.021,1.023,1.018,0.941,1.003,0.813,0.995 +NM_058189,0.881,1.255,1.052,0.87,0.968,1.089,1.084,0.822,1.03,0.919,1.077,0.948,0.959,1.042,1.07,1.058,1.086,1.076,0.883,0.974,1.001,0.926,0.998,1.041,1.039,1.001,1.057,1.082,1.001,1.113,0.98,0.968,1.04,0.995,0.906,0.938,0.985,0.853,1.018,1.064,0.928,1.153,1.069,1.109,0.86,0.982,1.032,0.951,0.934,1.036,0.88,0.914,1.092,1.329 +NM_058190,0.866,0.967,0.956,0.911,0.833,1.005,0.762,0.695,0.903,0.965,0.997,0.769,0.815,0.833,1.242,1.176,0.87,0.894,1.002,1.014,0.929,0.805,1.196,1.008,0.891,0.868,1.127,0.916,1.277,1.014,0.967,1.088,1.282,1.006,0.723,1.104,0.998,0.884,1.099,1.083,0.983,0.998,0.938,1.378,1.058,1.039,1.06,0.805,0.829,0.88,1.036,0.868,1.059,1.082 +NM_058191,1.002,1.072,1.021,0.991,1.155,0.878,0.906,1.242,1.178,0.901,0.992,0.993,1.094,1.053,0.94,1.09,0.873,0.996,1.107,1.031,0.944,1.143,0.919,0.913,1.002,0.922,1.038,1.067,0.864,1.01,1.245,0.896,1.27,1.036,0.989,0.866,1.037,1.045,0.788,0.873,1.249,1.02,0.817,1.069,1.193,1.027,0.975,1.04,0.863,0.973,0.975,1.001,1.008,1.001 +NM_058192,0.885,0.806,1.005,1.008,0.752,1.188,0.882,0.599,0.893,0.959,1.167,0.911,0.908,0.796,0.981,1.46,0.863,0.958,1.382,0.958,0.814,0.739,1.198,0.939,0.935,1.273,0.917,0.694,0.694,0.995,0.858,1.488,3.041,1.48,0.525,0.958,0.902,0.758,1.852,0.921,0.887,1.078,0.976,1.925,0.9,0.968,0.932,0.899,0.994,1.183,0.98,1.037,1.038,1.438 +NM_058193,5.089,1.782,5.119999999999999,2.399,3.755,1.4649999999999999,1.528,2.074,4.417,3.92,1.4729999999999999,2.336,3.108,3.982,2.23,2.069,4.9830000000000005,3.068,6.109,1.48,4.742999999999999,2.298,1.4769999999999999,3.859,1.5150000000000001,5.899,4.714,2.583,1.378,1.346,3.2409999999999997,1.617,2.3280000000000003,1.42,2.145,1.737,1.4849999999999999,5.1579999999999995,1.692,1.262,4.843,1.5370000000000001,1.499,1.725,3.771,1.43,2.534,3.549,1.388,5.356,1.71,2.157,3.875,1.704 +NM_058195,0.883,1.376,1.17,1.037,0.977,0.939,1.082,0.795,0.865,0.909,1.569,1.008,0.857,0.996,0.992,0.983,1.347,0.878,1.003,0.944,1.002,0.887,0.858,0.915,0.955,1.152,1.055,0.943,0.904,1.028,0.974,1.26,1.124,1.028,1.049,0.973,0.918,0.907,1.911,0.839,1.046,1.133,0.907,3.915,0.973,0.812,1.541,0.891,0.822,1.067,0.703,1.264,1.218,2.241 +NM_058196,0.903,2.155,1.411,0.968,1.102,0.779,0.93,0.822,0.904,1.15,1.915,1.162,0.854,0.789,0.986,0.834,1.889,1.224,0.721,1.196,0.793,0.921,0.755,1.236,0.741,0.881,1.184,0.97,0.695,0.891,0.78,2.854,1.348,1.038,1.034,0.802,0.867,0.998,2.283,0.992,1.085,1.337,0.916,7.903,1.34,0.949,2.526,0.861,0.827,1.211,0.924,2.746,1.11,2.644 +NM_058197,0.917,0.96,0.927,0.935,0.944,1.089,1.045,1.209,1.09,0.913,0.93,1.043,1.062,0.949,0.798,1.04,1.142,0.987,0.863,0.944,0.884,1.065,0.949,1.042,0.92,1.07,0.862,1.01,1.101,1.111,1.0,1.025,1.1,0.965,1.114,0.963,0.932,1.081,1.047,1.117,0.928,1.027,1.028,0.966,1.195,1.064,0.952,1.149,0.997,0.9,0.837,1.129,0.921,0.976 +NM_058199,1.9129999999999998,2.0599999999999996,2.051,2.056,2.261,1.97,1.9899999999999998,2.1159999999999997,1.874,2.117,2.002,2.23,1.914,2.1310000000000002,2.474,1.9939999999999998,2.0,1.974,1.824,2.042,2.1550000000000002,2.091,2.05,2.216,1.947,1.9739999999999998,2.003,1.8490000000000002,2.457,1.9769999999999999,2.103,1.952,1.884,1.9689999999999999,2.289,1.979,1.845,2.02,2.091,2.057,1.782,2.0709999999999997,1.988,2.1849999999999996,2.1799999999999997,2.066,1.9,1.9369999999999998,1.887,1.972,1.996,2.073,1.889,2.008 +NM_058203,1.169,0.93,1.018,1.044,0.998,0.87,1.04,1.078,1.095,0.851,1.045,0.95,0.967,0.903,0.961,1.033,0.982,1.064,0.98,1.1,0.936,0.979,1.053,0.935,0.897,1.108,1.111,0.959,1.029,1.036,0.919,1.011,1.072,0.982,1.015,1.026,1.032,1.024,0.995,1.03,1.104,0.862,0.955,0.934,0.999,1.059,0.977,1.05,1.027,1.083,1.065,0.882,0.921,0.914 +NM_058216,0.804,1.046,1.225,0.953,1.082,0.939,1.031,0.731,1.036,1.001,0.985,0.936,0.86,0.951,1.126,1.088,0.957,0.892,1.024,0.844,0.843,0.835,1.123,1.122,0.926,1.006,1.014,0.999,0.639,0.915,0.995,1.452,2.387,1.106,0.792,0.988,0.84,0.721,1.101,0.846,1.202,1.02,0.878,1.145,0.955,0.846,0.973,0.91,1.033,0.93,0.995,1.015,1.172,1.382 +NM_058229,1.957,0.817,1.275,0.884,1.545,0.817,0.865,1.354,2.193,0.95,0.932,0.966,1.012,1.633,1.429,1.099,1.107,0.995,1.165,0.963,1.069,0.903,1.004,1.043,0.894,1.512,1.252,2.494,0.76,0.785,2.256,1.145,1.146,0.874,5.553,0.846,0.877,1.878,0.755,0.921,1.86,0.817,1.12,0.772,1.03,0.974,1.584,1.547,1.033,1.159,1.026,0.906,1.053,1.195 +NM_058230,1.133,0.935,1.153,0.995,0.955,0.977,0.96,0.793,1.079,1.203,1.102,1.163,0.95,1.251,0.989,1.06,1.036,0.802,1.063,1.138,1.003,0.902,0.996,1.064,0.967,0.949,1.086,0.857,1.453,1.048,1.081,1.173,1.154,1.05,0.945,0.938,0.989,1.09,0.98,0.982,1.011,0.909,0.919,1.052,0.927,1.045,1.014,0.995,1.182,0.881,0.892,1.002,0.992,1.261 +NM_058237,0.956,1.078,1.064,1.091,1.0,1.022,1.095,1.054,1.025,1.017,0.98,0.858,0.935,1.135,0.952,0.964,0.897,1.187,1.112,1.027,1.028,0.96,1.028,0.958,1.052,1.049,0.893,0.963,1.145,0.974,1.09,0.913,0.943,0.991,0.995,0.944,1.081,1.003,1.015,0.93,0.963,1.052,1.228,1.036,1.0,0.902,0.882,1.095,1.134,0.999,0.97,1.167,0.983,0.928 +NM_058238,1.106,0.756,1.225,0.805,0.91,0.837,0.879,0.822,1.115,1.109,0.886,1.085,0.949,1.032,0.775,0.953,1.409,1.05,1.387,0.974,1.118,0.992,1.062,0.99,0.901,1.109,1.059,0.955,1.467,0.917,1.11,1.06,1.115,1.048,1.068,0.998,0.902,1.153,0.942,0.983,1.053,0.885,0.896,1.151,1.379,1.035,1.044,1.059,0.828,1.39,0.882,1.394,1.105,1.552 +NM_058241,1.063,1.021,1.012,0.936,1.08,1.116,1.188,0.843,0.994,0.99,1.069,0.937,1.087,1.025,0.971,0.96,0.936,1.006,1.129,1.035,0.991,1.115,0.94,0.994,1.043,1.058,0.914,0.993,1.008,0.965,1.12,0.979,0.874,1.039,1.015,1.031,1.038,1.069,0.999,1.069,0.86,0.995,0.927,1.179,1.126,1.004,0.941,0.841,0.936,1.008,1.015,0.868,0.935,1.121 +NM_058246,1.422,0.556,2.894,0.67,1.513,0.597,0.426,0.616,1.319,1.645,0.559,1.221,1.026,0.808,0.819,1.065,2.444,1.104,2.94,0.532,1.201,1.332,0.953,1.455,0.444,1.782,1.926,1.116,0.333,0.814,0.972,1.012,1.727,0.733,0.713,0.384,0.808,1.858,0.795,0.7,2.539,0.746,0.563,0.615,2.498,0.677,1.401,1.501,0.635,3.36,0.775,0.931,1.461,1.852 +NM_058248,2.2649999999999997,1.951,1.995,2.005,1.879,2.05,1.88,2.183,1.827,1.874,2.219,2.145,1.8039999999999998,1.931,1.647,2.045,1.8170000000000002,1.8639999999999999,1.984,2.096,2.1719999999999997,2.0789999999999997,2.1470000000000002,1.858,2.1189999999999998,1.8820000000000001,2.08,1.923,1.9729999999999999,1.8849999999999998,2.323,2.089,2.166,2.067,1.8279999999999998,1.758,1.975,1.8559999999999999,1.948,1.99,1.876,2.107,2.051,2.032,1.916,1.795,2.08,2.096,2.0,2.02,1.9729999999999999,1.8900000000000001,1.9769999999999999,2.096 +NM_078467,0.936,1.065,0.975,1.036,1.016,1.18,1.104,0.94,0.901,1.111,1.027,0.884,0.968,1.096,0.908,0.94,1.03,0.827,1.024,0.911,0.96,1.015,1.198,1.013,0.949,0.836,0.91,0.998,0.997,0.966,1.149,1.054,1.091,0.972,0.996,1.0,0.994,1.0,0.904,1.102,1.102,0.947,1.153,1.076,0.938,0.833,0.995,0.994,1.024,1.016,1.014,1.039,1.061,1.005 +NM_078468,1.435,2.277,1.75,1.6360000000000001,1.641,2.257,1.362,0.9279999999999999,2.164,2.307,1.9249999999999998,1.667,1.3940000000000001,1.33,1.712,2.4450000000000003,1.4929999999999999,1.6829999999999998,1.897,1.8780000000000001,1.2080000000000002,1.2530000000000001,2.657,2.354,1.615,1.448,2.129,1.6360000000000001,1.074,2.208,1.724,2.886,3.284,2.762,0.828,2.662,2.19,1.591,3.339,1.572,2.105,2.069,1.626,3.231,1.992,1.96,2.0789999999999997,1.301,2.699,1.4449999999999998,1.992,1.8519999999999999,1.9009999999999998,4.527 +NM_078470,0.807,0.916,1.196,0.916,0.951,0.93,0.84,0.952,0.973,1.095,1.029,0.815,0.721,0.82,1.12,1.132,1.097,0.999,1.283,0.93,0.873,0.734,1.036,0.978,0.682,0.928,1.261,0.959,0.683,1.001,0.932,1.049,0.913,1.088,1.088,0.995,1.046,0.771,0.985,0.793,1.18,0.893,0.869,1.469,1.077,1.142,1.265,0.8,1.373,0.866,1.168,0.825,0.961,1.057 +NM_078471,1.235,1.071,0.96,0.918,1.014,0.894,0.905,0.849,0.979,1.027,1.011,1.002,1.011,0.982,1.107,0.926,0.98,0.928,0.984,1.025,0.98,0.983,1.013,0.997,1.022,1.11,0.996,0.988,1.072,1.059,0.876,1.028,1.02,0.909,1.021,0.864,1.043,1.04,1.172,0.977,1.044,0.934,0.914,1.066,0.896,1.016,1.059,1.086,0.924,1.015,1.045,1.01,0.938,0.98 +NM_078473,0.656,1.066,0.968,0.578,1.033,1.192,0.677,0.965,1.112,0.751,1.118,0.782,0.701,0.846,1.056,1.699,0.931,0.898,1.514,0.853,0.728,0.738,1.049,0.83,0.509,0.544,1.284,0.887,0.527,1.524,0.982,1.505,1.758,1.198,1.785,0.636,1.458,1.044,1.255,0.637,1.624,0.941,0.721,0.837,0.652,1.297,1.437,0.813,1.241,0.704,0.955,0.876,0.733,2.311 +NM_078474,0.852,1.004,0.975,1.006,0.95,0.946,0.841,0.862,0.901,1.045,1.206,0.921,0.898,0.835,0.917,0.992,0.895,1.047,1.0,1.111,1.066,0.96,1.028,0.915,1.057,0.926,0.902,0.87,1.026,1.071,0.959,1.215,1.042,1.024,0.843,0.95,0.989,1.001,1.098,0.988,0.983,0.987,1.033,1.077,0.997,0.894,0.993,0.849,1.011,0.988,1.037,0.976,0.836,1.129 +NM_078476,1.225,0.865,1.01,1.085,1.075,1.002,0.956,1.219,1.067,0.947,1.232,1.0,0.937,1.101,0.97,1.021,1.068,0.962,0.947,1.004,1.092,1.08,1.048,1.113,1.076,1.154,0.921,1.073,0.925,1.097,1.09,0.935,0.967,1.027,1.109,0.9,1.04,1.07,0.849,1.155,0.932,0.993,1.016,0.902,0.898,1.098,1.125,1.058,0.998,1.059,0.94,0.919,1.07,0.926 +NM_078481,1.129,0.927,0.994,0.844,1.268,1.103,1.035,0.98,0.962,1.101,1.262,1.084,0.896,1.051,0.919,0.935,1.018,0.869,1.007,0.945,1.197,0.923,1.067,1.025,0.974,1.022,1.023,0.931,1.219,0.866,1.014,0.884,1.166,1.07,0.902,0.939,0.903,1.095,0.989,1.116,0.883,0.843,0.928,0.898,0.868,1.007,1.083,1.061,1.157,1.077,0.992,1.029,0.946,1.018 +NM_078483,0.957,0.954,1.071,0.962,0.817,1.055,0.94,1.101,0.916,0.994,1.136,1.054,0.834,1.089,0.8,1.062,0.972,1.049,1.063,1.066,1.052,0.97,1.125,0.973,1.045,1.205,0.917,0.923,1.078,0.971,0.981,0.98,0.952,0.99,0.939,1.115,1.04,0.978,1.167,0.993,1.098,1.119,0.924,1.012,0.967,1.028,1.099,0.964,1.043,0.997,0.943,0.931,1.197,1.152 +NM_078485,1.958,2.075,1.9489999999999998,1.817,1.662,2.274,2.205,2.045,1.9169999999999998,1.846,2.36,1.8250000000000002,1.749,1.835,1.9689999999999999,2.037,1.859,1.863,1.73,2.676,1.857,1.8370000000000002,2.215,1.941,1.891,1.8969999999999998,1.861,1.9709999999999999,2.143,2.018,1.885,36.827999999999996,2.223,2.422,2.013,2.019,2.2569999999999997,1.863,1.98,1.845,2.037,2.285,2.349,1.9289999999999998,1.8449999999999998,2.4530000000000003,1.905,1.9340000000000002,2.238,2.029,2.295,1.8479999999999999,2.235,1.907 +NM_078487,0.99,0.984,1.017,0.998,1.014,0.941,0.993,1.032,1.002,0.948,1.014,1.014,1.139,1.149,1.174,0.963,0.893,0.883,0.945,1.06,0.923,0.972,1.102,1.023,1.052,1.072,0.914,1.131,1.828,1.108,1.029,0.999,0.897,1.009,0.959,0.86,0.978,0.955,1.206,0.931,1.097,0.924,1.137,0.858,0.806,1.015,0.94,1.105,1.32,0.983,0.963,0.819,1.024,1.0 +NM_078488,1.225,0.932,1.024,1.064,0.958,1.067,1.057,0.957,0.936,1.015,1.073,1.027,1.066,1.14,1.036,0.999,0.94,1.034,1.03,0.898,0.996,1.042,1.006,1.204,1.118,1.011,1.086,1.035,0.841,0.951,1.033,1.03,0.887,0.885,1.133,1.049,0.936,1.154,0.876,1.067,0.958,0.881,1.172,0.887,0.906,0.894,0.838,0.92,1.106,0.965,0.999,0.945,1.083,0.935 +NM_078625,0.985,1.02,0.922,1.001,1.118,0.946,0.901,1.054,1.014,0.988,0.987,1.082,1.109,0.973,0.953,0.892,1.114,1.137,0.971,0.9,1.102,1.16,0.909,0.988,1.027,1.004,1.032,0.995,0.809,1.056,1.214,0.909,0.962,1.056,1.047,1.21,1.123,1.011,0.891,1.051,0.994,0.952,0.884,1.038,1.041,1.121,1.033,0.953,1.028,0.99,1.103,1.01,0.915,0.925 +NM_078626,1.8239999999999998,2.082,2.33,1.927,2.5389999999999997,2.184,1.936,1.915,1.942,1.843,2.851,1.7469999999999999,2.058,1.6640000000000001,1.698,2.235,1.6709999999999998,2.0469999999999997,2.299,2.266,1.755,1.911,3.097,1.89,1.642,1.895,2.537,2.159,1.5590000000000002,2.069,1.846,3.373,3.1980000000000004,2.179,1.7109999999999999,1.5990000000000002,2.3609999999999998,2.038,2.442,1.625,2.351,2.117,1.6099999999999999,3.021,1.875,1.8199999999999998,1.7189999999999999,1.7200000000000002,1.716,1.884,2.4059999999999997,1.833,1.612,2.239 +NM_078630,1.056,0.984,0.991,0.982,1.063,0.905,1.007,0.98,1.135,1.127,1.123,0.903,0.923,0.935,1.08,0.865,0.939,0.921,1.067,1.02,1.048,0.965,0.83,0.969,0.961,0.965,1.14,0.907,1.117,0.9,1.007,1.109,1.148,0.926,1.079,0.964,0.884,1.051,1.101,0.976,1.048,0.858,0.99,0.997,0.979,0.917,1.14,0.875,0.9,1.003,0.918,0.923,1.134,1.005 +NM_079421,0.926,1.061,1.304,1.317,1.015,0.982,0.688,0.813,0.852,0.71,0.979,1.169,0.946,0.911,0.943,0.974,0.947,0.938,1.353,0.767,0.891,1.157,1.045,0.931,0.873,0.989,1.063,1.083,0.796,0.764,0.897,1.419,1.273,0.885,0.704,1.117,0.81,1.01,1.197,2.276,1.23,0.871,0.794,0.997,1.048,0.915,0.899,1.052,0.86,1.286,0.988,1.189,1.022,1.169 +NM_079423,0.713,0.902,1.211,0.674,1.084,1.077,0.467,0.556,1.192,1.197,0.696,0.72,0.783,0.494,0.905,1.808,0.989,1.151,1.109,0.873,0.503,1.084,1.043,1.229,0.45,0.959,1.214,0.961,0.376,1.024,0.854,1.534,1.086,1.082,0.443,0.711,1.142,1.506,1.526,0.822,1.361,1.176,0.565,0.891,1.122,0.932,1.471,1.21,1.103,1.011,1.081,0.825,0.652,1.234 +NM_079836,1.022,1.133,1.058,0.946,0.853,1.001,1.172,0.878,0.986,0.928,0.898,0.931,1.084,1.03,0.916,0.975,1.073,0.99,0.9,1.088,1.003,1.029,0.985,1.084,0.955,1.083,0.968,1.137,0.954,1.177,0.943,1.082,1.006,1.026,1.054,1.235,0.979,1.044,0.968,0.954,1.07,1.029,0.874,0.969,1.148,1.109,1.136,0.939,0.957,1.067,1.019,0.887,1.285,0.958 +NM_079837,0.829,0.847,1.116,0.818,0.87,0.989,0.903,0.744,1.469,0.884,0.78,0.938,0.855,0.792,0.882,0.929,0.983,1.024,0.857,0.926,0.826,0.889,1.182,1.117,0.84,0.737,1.098,0.907,0.71,1.188,0.935,1.552,1.278,1.176,0.808,1.082,1.092,0.946,1.154,1.393,0.946,1.277,0.789,1.378,0.978,1.039,1.007,0.716,0.858,0.787,1.126,1.034,0.867,1.241 +NM_080282,1.029,0.908,0.963,0.968,1.085,1.075,0.843,1.162,0.943,0.933,1.055,1.013,0.911,0.891,1.116,1.097,0.88,0.955,0.935,0.885,1.052,1.091,0.901,1.151,1.113,1.027,0.89,1.0,1.063,1.06,0.952,0.872,0.905,0.943,0.919,1.126,0.968,0.874,0.962,1.055,0.968,1.065,1.105,1.022,1.148,0.917,0.913,0.988,0.889,1.065,1.047,0.908,1.057,0.857 +NM_080284,1.13,1.03,0.948,0.949,1.028,1.065,0.867,0.999,0.988,1.001,0.963,0.844,0.906,0.927,0.973,0.937,1.023,1.067,0.928,1.133,0.989,0.959,1.127,0.933,1.053,1.006,1.013,0.85,0.847,1.042,0.974,1.455,1.032,1.181,1.13,1.063,1.126,0.914,1.087,0.896,1.156,1.075,1.042,1.207,0.943,1.153,1.052,0.993,0.945,1.108,0.917,1.114,0.939,1.194 +NM_080385,0.915,1.047,0.966,0.917,1.054,0.969,1.097,1.311,0.969,0.983,0.962,1.025,0.948,1.052,1.14,1.088,0.96,1.06,0.942,0.906,1.108,0.991,0.932,0.999,1.06,1.0,0.93,1.029,1.165,1.027,0.973,0.978,0.863,1.018,0.953,1.031,1.062,0.948,1.156,0.812,1.024,1.056,1.107,1.014,1.023,0.998,1.002,0.925,1.072,1.035,1.055,1.01,1.071,1.049 +NM_080387,1.016,1.049,0.985,0.907,1.019,0.973,1.12,1.043,1.109,0.951,1.105,0.938,1.186,1.229,0.982,1.16,1.019,1.122,1.002,0.929,0.947,0.989,0.858,1.009,1.028,0.885,1.004,1.138,1.059,0.94,0.969,0.908,1.048,0.957,1.093,1.168,0.869,1.007,1.133,1.086,0.898,1.142,1.274,0.884,1.011,0.965,1.003,0.972,0.862,1.09,1.021,0.992,1.016,0.954 +NM_080389,1.047,0.896,1.096,0.989,1.075,1.018,1.03,1.335,1.125,1.077,1.061,0.921,1.145,1.199,1.0,1.152,1.069,1.169,0.984,1.033,0.912,1.022,0.842,1.061,0.921,0.957,1.488,0.905,1.084,1.019,1.081,0.897,1.088,0.954,0.863,0.862,0.987,1.328,0.88,0.954,1.115,0.965,1.042,1.034,1.225,1.058,0.989,1.0,0.977,1.09,0.955,1.161,1.236,1.158 +NM_080390,0.962,1.313,0.983,1.103,0.906,0.905,1.085,1.167,1.014,0.945,0.957,1.075,0.996,1.035,1.236,0.853,0.897,1.024,0.995,1.039,1.142,0.954,1.031,1.015,1.096,1.022,0.934,1.344,0.929,0.969,1.037,1.572,0.865,1.269,1.078,0.979,0.956,1.255,1.006,0.92,1.358,1.905,0.961,1.029,0.937,0.83,0.969,0.951,0.991,0.876,1.063,1.119,0.967,0.935 +NM_080392,0.502,1.735,1.134,0.678,0.797,2.424,1.122,0.595,0.715,0.656,0.984,0.734,0.803,0.522,0.987,2.938,0.631,1.406,0.557,1.421,0.396,0.839,1.741,0.997,0.753,0.417,1.537,0.649,1.094,1.969,0.889,1.908,3.899,1.887,0.389,0.51,1.518,0.832,2.791,1.329,0.804,1.626,0.819,0.627,0.902,1.375,1.189,0.58,1.607,0.638,1.704,1.192,0.449,2.777 +NM_080414,1.5139999999999998,2.144,2.418,1.812,1.992,1.784,1.835,1.168,1.933,2.0469999999999997,1.889,1.709,1.334,1.639,1.8519999999999999,2.154,1.651,2.274,1.765,2.265,1.534,1.829,2.878,1.809,1.714,1.677,1.8760000000000001,1.7639999999999998,1.8850000000000002,2.809,1.607,2.067,2.209,1.9909999999999999,1.1840000000000002,2.109,2.2729999999999997,1.821,2.644,2.573,2.162,2.271,1.987,2.4779999999999998,1.945,1.9420000000000002,1.93,1.795,2.0789999999999997,1.549,1.924,2.038,1.806,2.292 +NM_080415,1.008,0.832,1.0,1.071,1.053,1.102,1.055,0.982,1.162,1.096,1.018,0.97,1.023,1.206,0.95,1.018,1.035,0.975,1.047,1.0,0.924,0.91,1.041,1.002,0.831,1.115,1.03,0.958,0.829,0.876,0.916,0.811,1.103,0.871,1.332,0.982,1.116,0.98,0.872,0.972,0.933,0.864,1.005,1.09,1.081,0.955,1.014,0.993,0.979,1.092,0.934,0.792,0.967,1.213 +NM_080416,1.008,1.205,0.991,0.956,0.816,0.951,0.803,0.984,1.094,1.095,0.988,1.133,0.942,1.001,0.89,0.992,0.959,0.838,1.118,0.849,0.892,0.96,1.02,0.935,1.091,0.892,0.917,0.974,0.6,1.087,1.052,1.553,1.104,1.132,0.96,1.038,0.968,1.047,0.992,0.921,1.028,1.105,0.806,0.911,1.039,0.916,1.109,1.001,1.015,1.059,0.916,1.119,1.105,1.126 +NM_080417,0.972,1.057,1.029,1.009,1.171,0.987,0.893,0.948,1.13,1.217,0.987,0.98,1.029,0.892,1.204,0.854,0.948,0.934,0.943,1.072,1.03,0.782,0.982,0.809,0.838,1.068,1.027,1.121,0.769,1.066,0.937,0.983,0.957,0.82,0.944,1.034,0.94,1.127,1.092,0.922,0.843,0.944,0.846,0.978,1.106,0.949,0.901,1.064,1.042,0.941,1.258,0.969,1.099,0.966 +NM_080423,0.874,1.313,0.958,0.885,1.089,1.0,0.81,1.064,1.14,1.015,0.862,0.855,0.821,0.809,1.078,1.104,0.988,0.905,1.138,0.989,0.875,0.866,0.988,1.015,0.814,1.095,1.375,1.066,0.679,1.143,0.966,1.171,1.27,1.004,0.867,0.836,0.942,0.765,1.159,0.899,1.156,1.034,1.045,1.212,0.837,0.904,1.083,0.845,1.078,0.973,0.968,0.878,0.978,1.623 +NM_080424,0.843,1.251,0.992,1.143,0.887,0.935,1.202,0.89,1.024,0.746,0.869,0.902,0.814,0.753,1.223,1.01,1.045,0.904,0.944,1.169,1.066,0.97,0.872,0.913,1.148,0.935,0.819,1.146,1.632,0.8,1.105,1.072,1.221,0.897,1.042,0.855,1.241,0.752,1.176,1.131,0.801,1.021,1.048,0.908,0.89,1.104,0.82,0.876,0.975,1.203,1.233,1.275,1.372,1.25 +NM_080425,0.919,0.93,1.019,0.948,1.068,1.014,1.035,1.011,1.199,1.089,1.032,0.984,1.056,0.922,1.046,1.035,1.049,1.034,0.909,0.989,1.069,1.048,0.867,1.052,1.011,0.906,1.039,0.941,0.942,1.044,1.098,0.888,0.883,0.956,0.916,1.11,1.046,0.997,1.024,0.914,1.232,1.055,0.977,0.865,1.036,0.92,1.081,1.039,1.001,0.94,0.97,0.926,1.028,1.137 +NM_080426,1.083,0.943,1.141,0.903,0.842,1.68,0.669,0.706,1.498,0.928,0.843,0.491,0.784,0.708,0.978,1.243,0.843,0.978,1.007,0.893,0.583,0.752,1.334,0.862,0.86,1.046,1.143,1.016,0.429,1.844,1.379,1.114,2.232,1.82,1.14,0.391,0.977,1.189,1.615,0.746,1.185,1.16,0.37,1.358,0.883,1.005,0.705,0.793,0.661,0.992,1.109,0.718,0.834,1.244 +NM_080429,0.993,0.978,0.968,0.932,1.046,0.96,0.957,0.89,0.91,1.025,1.078,1.002,1.051,1.14,0.804,0.809,0.992,0.992,1.022,1.043,0.959,0.987,0.98,1.054,1.02,1.012,1.004,0.968,0.924,1.065,0.863,0.963,0.919,1.097,1.01,0.949,1.075,1.13,1.033,0.993,1.025,1.045,1.012,1.037,0.962,0.85,0.994,1.045,0.923,1.045,1.104,1.073,1.001,0.981 +NM_080430,0.419,1.64,0.461,0.95,0.363,1.303,1.068,0.398,0.343,0.447,1.591,0.406,0.428,0.481,1.025,1.568,0.286,0.566,0.344,0.81,0.487,0.32,2.059,0.52,1.054,0.383,0.439,0.697,0.421,1.721,0.475,6.249,1.979,2.635,0.381,1.376,0.995,0.656,1.66,3.622,0.776,3.227,0.721,1.9,0.467,0.836,0.644,0.435,0.785,0.4,1.573,1.864,0.709,1.484 +NM_080431,1.059,1.064,1.072,0.985,1.162,0.938,1.079,0.968,0.881,1.033,0.906,1.061,0.979,0.694,0.959,0.898,1.015,1.114,0.852,0.989,0.877,0.916,1.002,0.902,1.049,0.971,1.077,0.953,1.087,1.182,1.078,1.148,0.883,0.981,1.11,1.095,1.029,1.006,1.169,1.012,0.971,1.048,0.947,1.019,1.068,1.017,1.089,1.031,0.967,0.985,0.976,0.897,0.97,1.072 +NM_080432,0.672,1.136,0.975,0.619,0.959,0.909,0.761,0.369,1.021,0.83,0.85,0.534,0.464,0.783,0.73,1.305,0.773,1.144,1.09,0.862,0.561,0.638,1.721,0.808,0.654,0.93,1.294,0.782,0.605,1.248,1.067,1.259,0.618,1.048,1.047,1.463,1.032,0.716,1.353,1.317,0.964,1.135,0.944,0.962,0.91,1.012,1.243,0.768,0.915,0.84,0.937,1.233,0.786,1.414 +NM_080473,1.06,0.975,0.881,1.488,0.923,0.924,1.694,1.045,0.925,0.88,0.847,0.9,0.933,0.897,1.006,0.767,0.827,1.465,1.127,1.022,1.067,0.955,0.864,0.894,2.084,0.985,1.065,0.962,1.203,1.557,0.91,1.081,1.02,1.411,0.876,0.89,1.959,0.913,1.939,0.985,0.937,0.984,0.815,1.123,0.735,1.063,0.906,1.014,1.011,0.994,1.022,0.92,0.932,0.945 +NM_080474,1.143,0.973,1.099,0.918,1.122,0.976,0.868,0.94,1.394,0.907,1.056,1.296,1.0,0.871,0.835,0.757,1.04,0.971,1.044,1.05,1.249,0.785,0.921,1.177,0.929,1.083,0.907,0.997,0.898,0.842,0.987,0.924,1.091,0.989,1.471,0.913,1.065,1.172,0.908,1.076,0.966,1.199,0.822,0.954,1.338,1.0,0.9,1.294,1.01,0.964,0.973,1.208,1.171,0.834 +NM_080475,3.18,1.031,1.234,1.2,0.992,0.868,0.929,0.889,3.29,1.091,1.03,1.157,2.54,1.833,0.97,1.509,1.005,1.092,0.98,1.206,0.988,2.104,0.879,1.059,0.957,2.724,1.826,3.217,1.083,0.993,3.097,0.875,1.538,0.913,0.959,0.969,0.978,0.944,0.929,0.927,1.0,0.925,0.968,1.019,2.146,1.119,1.527,0.98,0.893,2.848,0.95,0.913,1.085,1.536 +NM_080476,0.588,1.061,1.133,0.533,0.998,0.829,0.63,0.609,1.055,1.115,0.583,0.852,0.633,0.464,0.753,1.268,0.952,1.002,0.789,1.116,0.494,0.882,1.83,1.145,0.62,0.826,1.22,0.938,0.464,1.19,0.853,1.703,1.789,1.085,0.24,0.86,0.736,0.91,1.955,2.097,1.089,0.802,0.583,1.638,1.226,0.702,1.523,0.987,1.224,0.805,1.037,1.45,0.662,2.171 +NM_080489,1.162,0.615,0.854,1.237,1.045,0.864,0.596,0.468,1.164,0.817,1.474,0.361,0.5,0.825,1.09,1.2,1.784,1.007,1.187,0.696,0.666,0.408,1.035,0.629,0.623,1.088,1.224,0.756,0.476,1.65,0.983,0.463,0.593,1.222,1.567,0.604,1.484,1.283,2.077,0.46,1.715,1.13,1.333,1.058,0.71,1.145,1.154,0.904,1.507,0.838,1.065,0.538,0.802,1.038 +NM_080491,2.127,1.969,2.1630000000000003,1.5739999999999998,2.159,2.035,1.407,1.773,2.104,2.01,2.141,2.049,1.537,1.78,1.615,1.998,1.784,1.71,2.1580000000000004,2.067,1.858,2.045,1.9980000000000002,2.016,1.6760000000000002,2.031,1.924,2.481,1.3079999999999998,2.599,1.946,2.7409999999999997,2.319,2.465,1.899,2.021,1.854,2.5780000000000003,1.9569999999999999,2.8579999999999997,2.174,2.1790000000000003,1.471,1.7,2.046,1.921,2.232,2.081,1.7999999999999998,1.887,2.019,1.5910000000000002,2.145,2.26 +NM_080538,0.978,0.801,0.969,1.042,0.937,1.044,0.821,1.261,0.853,1.251,0.857,1.217,0.958,1.074,1.24,0.824,1.001,0.952,0.944,1.004,1.154,0.979,0.999,0.901,0.959,0.963,0.946,1.051,0.981,1.073,1.067,0.986,0.988,0.901,1.05,1.085,0.946,1.04,0.994,1.147,0.882,1.033,0.998,0.96,0.999,0.962,0.967,1.08,1.083,0.997,1.03,1.107,0.968,0.975 +NM_080542,1.031,0.944,1.0,1.152,0.953,0.92,0.998,0.99,1.106,1.072,0.892,0.871,0.926,1.177,0.959,0.988,1.028,0.992,1.007,1.127,1.022,0.971,1.001,1.057,0.979,0.935,0.84,1.031,0.902,1.016,1.016,0.975,0.95,0.976,1.247,1.079,1.143,0.921,1.059,0.985,1.197,1.012,0.877,1.115,1.105,0.946,0.954,0.934,0.914,0.952,0.959,1.088,1.042,0.939 +NM_080544,0.971,1.081,1.001,0.943,0.914,0.977,1.051,0.873,1.01,1.037,0.945,0.921,1.107,1.086,0.9,1.073,1.066,0.933,0.943,1.026,0.937,1.05,0.983,0.988,0.981,1.264,0.978,1.03,0.83,1.005,0.928,1.166,0.916,0.949,1.047,0.839,0.941,0.957,1.042,0.995,1.089,1.038,1.036,0.906,0.892,0.906,0.943,1.062,0.891,1.041,1.03,0.976,1.085,1.014 +NM_080545,1.028,1.102,0.964,1.015,0.996,1.076,1.291,0.965,0.985,1.001,1.014,0.908,1.058,0.847,1.023,1.05,1.092,0.977,1.206,0.951,1.007,0.97,0.913,1.133,1.053,1.048,1.008,1.142,0.799,0.984,0.795,0.879,1.033,0.958,1.021,1.042,0.815,1.082,1.042,0.997,1.026,0.856,0.926,0.983,0.958,0.983,1.041,0.962,0.93,0.947,0.959,1.013,0.96,0.963 +NM_080546,0.377,1.124,1.076,0.671,0.676,1.794,0.779,0.337,0.675,0.829,2.645,0.865,0.374,0.477,1.339,2.08,0.458,1.167,0.92,1.563,0.288,0.442,1.81,0.591,0.574,0.352,0.862,0.549,0.56,1.837,0.498,1.298,1.114,1.766,0.0532,0.646,1.882,0.819,1.196,1.177,0.721,1.429,1.004,0.943,0.666,1.542,0.876,0.406,1.138,0.499,1.748,0.813,0.746,1.385 +NM_080548,1.8010000000000002,1.99,2.142,2.287,1.835,2.209,1.891,1.6909999999999998,1.7730000000000001,1.7970000000000002,2.119,1.7930000000000001,1.744,1.581,1.838,2.444,1.73,2.009,1.839,1.94,1.906,2.1180000000000003,2.077,1.815,1.96,1.945,2.221,1.6549999999999998,1.996,2.1879999999999997,1.871,2.17,2.245,2.388,1.601,2.239,1.938,1.634,2.971,2.919,1.8439999999999999,2.1559999999999997,1.6589999999999998,2.416,1.8599999999999999,1.81,1.822,1.7229999999999999,1.849,1.865,1.8239999999999998,2.065,1.952,2.423 +NM_080549,1.041,1.02,1.083,1.057,0.986,0.993,0.934,0.947,1.003,0.974,1.004,0.771,0.969,0.824,1.025,1.057,1.094,1.083,0.982,0.99,1.287,1.018,0.977,0.981,1.111,1.022,1.103,0.949,0.818,1.017,1.049,0.913,0.972,0.908,1.047,1.008,0.956,0.985,0.978,1.049,0.939,1.061,1.228,0.915,0.867,0.997,1.005,1.08,1.083,0.927,0.987,1.026,0.864,1.026 +NM_080551,0.954,1.05,1.052,0.985,1.122,1.028,1.04,1.032,1.062,1.002,0.986,1.027,0.926,1.196,0.875,0.946,1.109,1.011,1.06,0.951,0.972,0.96,0.968,1.012,0.985,0.972,0.898,0.96,0.807,0.917,0.898,0.99,1.045,1.071,1.141,1.172,1.058,1.046,0.938,1.071,1.032,1.052,0.944,0.847,1.024,0.851,0.958,1.055,0.938,1.056,0.93,0.973,1.281,1.12 +NM_080552,0.971,0.998,0.943,1.102,1.147,1.007,0.925,0.922,1.085,1.0,1.081,1.092,0.839,0.932,1.097,0.768,1.089,1.152,1.088,1.069,0.955,1.079,0.948,0.935,1.056,1.037,1.041,0.895,1.254,1.01,0.918,1.076,1.015,1.114,1.014,0.963,0.993,1.081,0.94,0.985,0.949,1.058,0.936,0.949,0.837,1.078,0.981,0.925,1.175,1.143,1.035,0.854,0.991,0.826 +NM_080564,1.0,0.89,1.069,1.027,1.008,0.999,1.002,0.999,1.002,0.859,1.081,0.919,1.005,1.155,0.985,1.074,0.91,1.007,1.139,1.035,1.129,0.902,0.926,0.96,0.969,0.885,1.061,1.17,1.254,1.018,1.022,0.925,1.115,0.953,0.979,1.02,1.085,0.972,0.951,0.967,0.892,1.182,1.15,1.0,1.16,0.797,0.867,0.977,1.105,1.051,1.027,1.066,0.973,1.078 +NM_080574,1.092,0.878,0.946,1.103,0.97,1.062,0.97,1.058,1.001,1.041,0.99,1.062,0.891,0.988,0.906,0.825,0.906,1.019,0.968,0.985,0.925,0.999,0.977,1.129,0.945,0.991,0.818,0.982,1.184,1.033,0.914,0.933,1.043,1.014,0.997,1.087,1.027,0.999,1.027,0.943,1.075,0.94,1.056,0.966,1.015,1.001,0.998,0.936,0.961,0.92,0.986,0.861,0.856,1.084 +NM_080588,1.149,1.016,0.99,1.047,0.992,0.949,0.904,1.026,1.201,1.11,0.917,1.012,0.956,1.001,0.896,0.877,1.041,1.015,1.118,0.946,0.958,0.96,0.984,1.027,1.012,0.929,1.002,0.965,1.006,1.041,1.0,0.923,0.906,0.959,0.92,1.107,1.098,1.01,1.065,0.906,1.02,1.015,1.267,1.064,0.971,1.005,1.049,0.94,0.932,0.862,1.002,1.118,1.195,1.024 +NM_080589,1.016,1.062,1.151,0.916,0.886,0.971,0.975,0.829,0.819,0.991,1.118,0.924,0.91,1.082,1.07,0.847,0.995,0.86,0.866,0.922,1.047,0.942,1.17,1.016,0.959,1.071,0.931,0.921,0.794,0.992,0.93,1.086,1.057,1.132,1.001,1.048,1.0,1.002,1.126,0.932,1.084,0.963,1.096,1.27,1.215,0.937,1.083,0.979,0.878,0.989,0.882,0.943,1.039,1.446 +NM_080590,0.688,2.2,0.693,1.352,0.868,1.332,0.799,0.65,1.355,0.479,1.594,0.726,0.632,0.699,0.736,0.555,0.684,1.468,0.565,1.923,0.494,0.97,0.974,0.597,1.344,0.739,0.764,0.949,1.006,4.232,0.641,1.892,0.458,2.806,0.769,0.459,1.75,0.671,1.458,2.478,0.683,1.584,0.609,1.824,0.564,1.209,1.009,0.969,0.547,0.584,1.709,1.081,0.504,6.114 +NM_080592,0.558,1.117,1.043,0.641,0.728,1.175,0.496,0.521,1.007,0.756,1.177,0.876,0.724,0.612,0.859,1.88,0.701,0.766,1.377,0.937,0.494,0.592,1.449,0.921,0.677,0.709,1.247,0.846,0.325,1.533,0.871,1.51,3.022,1.83,0.0984,0.813,1.199,0.887,1.146,0.935,1.143,1.562,0.615,1.695,0.794,0.993,1.073,0.569,0.78,0.641,1.094,0.758,0.876,1.831 +NM_080594,0.766,0.894,0.887,0.997,0.751,1.036,0.554,0.487,1.003,0.996,0.703,0.764,0.722,0.655,0.75,1.222,1.068,0.834,1.08,0.617,0.8,0.822,1.045,1.06,0.831,1.093,1.329,0.639,0.517,1.066,0.823,1.564,3.877,1.19,0.414,0.704,0.808,1.065,2.013,0.954,1.016,1.115,0.85,2.009,0.853,0.756,1.092,0.751,0.986,0.868,0.757,0.806,0.977,1.265 +NM_080596,1.071,0.822,1.496,0.634,1.405,1.276,0.574,1.042,1.501,1.168,0.922,1.007,1.444,0.689,0.883,1.272,1.514,1.646,1.655,0.66,0.615,1.546,0.836,1.146,0.443,1.359,1.206,1.417,0.604,0.838,1.576,0.579,1.772,1.118,3.437,0.372,0.928,1.54,1.08,0.9,1.48,0.856,0.371,0.68,1.276,0.751,1.288,2.142,0.753,1.472,0.866,0.616,0.904,0.464 +NM_080598,0.57,0.836,0.998,0.793,0.666,1.384,0.512,0.518,1.097,0.752,1.198,1.139,0.674,0.58,1.045,2.276,0.75,0.741,1.82,0.691,0.909,0.782,1.323,1.132,0.515,0.778,1.254,0.561,0.462,1.01,0.765,1.106,4.305,1.422,0.138,0.983,1.166,0.688,1.615,1.154,0.957,1.001,0.638,1.435,0.806,0.965,0.93,0.673,1.355,0.654,0.982,0.789,1.085,2.121 +NM_080599,1.102,1.073,0.983,0.742,0.873,1.114,1.141,0.991,0.942,1.068,0.935,0.994,0.844,0.794,1.159,0.96,1.073,1.159,0.839,0.987,1.092,0.97,1.109,1.023,0.944,1.061,1.225,1.025,0.609,1.034,0.866,1.036,0.896,1.05,1.017,0.93,1.051,1.072,0.861,1.185,1.096,0.943,0.774,0.946,0.878,0.931,1.077,0.91,1.037,0.989,0.983,0.803,1.051,0.993 +NM_080603,0.99,1.036,1.026,1.082,0.968,0.975,0.968,1.015,0.949,1.015,0.94,0.887,0.983,0.952,1.004,0.905,0.916,0.952,0.92,0.92,0.98,0.992,1.016,1.0,1.026,0.974,1.019,1.032,0.814,1.103,0.968,1.095,1.147,0.907,0.927,0.849,1.043,0.942,1.007,1.071,0.986,0.996,0.991,1.183,0.994,0.96,1.04,0.984,0.967,1.128,1.017,1.025,0.98,1.103 +NM_080604,0.662,1.307,0.968,0.799,0.871,1.048,0.762,0.597,0.895,0.919,0.865,0.669,0.604,0.781,1.074,0.981,0.906,0.792,0.699,1.347,0.516,0.715,1.348,0.925,0.833,0.779,1.101,0.784,0.586,1.355,0.723,3.065,1.861,1.254,0.524,1.497,1.044,0.793,1.366,1.68,0.978,1.431,0.989,1.34,0.842,0.936,0.975,0.655,0.959,0.634,1.142,1.01,0.743,3.152 +NM_080605,0.695,1.686,1.324,0.658,0.763,0.945,0.612,0.526,1.013,0.947,0.778,0.922,0.715,0.708,0.88,1.02,0.987,0.644,1.118,0.822,0.585,0.782,1.301,1.097,0.723,0.745,1.238,0.91,0.383,1.274,0.891,2.594,1.568,1.459,0.256,1.131,0.838,0.938,1.356,1.545,1.232,1.162,0.553,1.497,0.891,0.889,1.049,0.69,0.665,0.86,1.019,1.029,0.982,2.371 +NM_080607,0.931,1.137,0.997,1.091,0.805,0.991,1.366,0.945,0.911,1.088,1.349,0.949,0.941,0.961,1.15,0.878,0.931,1.05,0.874,0.957,0.81,1.014,1.158,0.969,1.026,1.076,1.0,0.924,0.923,1.015,0.968,1.403,1.235,1.218,1.203,1.089,1.064,0.874,0.814,0.963,0.855,1.096,1.142,0.871,0.975,0.914,1.134,0.988,1.037,1.0,1.119,1.384,0.947,1.389 +NM_080608,1.016,1.017,1.034,0.784,0.881,1.049,0.964,1.119,0.82,0.962,0.942,1.182,0.991,1.02,1.086,1.058,0.973,0.881,1.022,0.987,1.01,1.107,0.885,0.911,0.99,1.003,1.028,0.955,0.814,0.908,0.905,1.002,1.123,0.998,1.009,0.924,1.072,1.052,0.921,0.93,0.793,0.933,0.942,1.044,1.037,0.978,0.97,0.894,1.089,1.042,0.932,1.007,1.114,1.049 +NM_080610,0.896,0.995,0.966,1.059,1.09,1.024,0.957,1.063,1.055,1.05,0.92,0.862,0.874,0.958,0.976,1.057,1.111,1.074,0.958,0.917,1.04,1.011,1.102,1.095,0.875,1.056,1.09,1.098,0.953,0.947,1.159,0.972,0.977,0.854,0.86,0.892,1.005,1.107,1.054,1.035,1.066,1.0,0.898,1.008,1.019,1.02,1.125,1.001,1.104,1.031,1.0,0.792,0.852,0.81 +NM_080611,0.996,0.899,0.95,1.078,1.079,0.961,0.921,1.006,0.935,0.922,1.014,1.092,1.025,1.019,0.92,0.923,1.061,1.047,0.939,0.958,1.017,0.955,1.009,0.924,0.993,1.031,1.053,1.132,0.7,1.016,0.782,0.864,0.771,0.999,1.049,0.93,1.015,0.958,0.903,1.034,1.021,0.925,1.192,0.912,1.008,1.025,0.935,0.994,0.995,0.942,0.921,0.925,0.904,0.998 +NM_080612,0.9,1.015,1.051,0.976,0.977,0.99,0.974,1.078,0.941,1.002,0.796,0.959,1.029,1.108,1.016,1.005,1.022,0.958,0.884,1.037,1.073,1.041,1.033,1.171,0.984,0.988,1.057,0.897,0.86,0.953,0.99,1.099,0.94,0.946,1.038,0.88,1.049,0.84,1.042,1.175,0.946,1.046,0.849,0.959,1.128,1.113,1.071,0.957,1.079,0.96,1.101,0.95,1.077,0.928 +NM_080614,1.037,0.991,1.01,0.918,0.967,0.829,0.928,1.189,1.011,0.821,1.14,1.023,1.191,0.929,1.349,1.016,0.863,1.014,0.957,1.189,1.043,1.189,0.915,0.89,0.934,1.1,0.93,1.046,1.403,1.156,0.971,0.934,1.28,0.886,1.067,1.179,0.892,0.936,0.99,1.045,1.053,0.886,1.237,1.009,1.054,1.005,1.118,1.138,0.929,1.053,0.928,1.002,1.104,0.873 +NM_080616,0.873,1.123,0.806,0.949,0.827,1.195,1.122,0.833,0.782,0.73,1.085,0.725,0.787,0.83,0.893,1.116,0.851,0.999,0.734,1.22,0.856,0.684,1.028,0.856,0.908,0.83,0.795,0.835,1.444,1.204,0.944,1.188,1.362,1.12,0.859,0.994,1.106,0.795,1.189,1.815,0.746,1.134,0.957,1.245,0.838,1.066,0.858,0.844,1.061,0.853,1.018,1.058,0.817,1.169 +NM_080617,0.819,1.114,1.162,0.945,1.027,0.931,0.85,0.971,0.908,1.034,0.863,1.146,0.988,0.751,0.868,0.922,0.984,1.079,0.878,1.041,0.771,1.032,0.93,0.866,0.797,1.016,1.035,1.135,0.806,1.004,1.001,1.088,0.94,1.014,0.994,1.005,1.067,1.218,1.145,1.057,0.948,1.123,0.736,1.286,1.066,0.94,1.021,1.03,0.942,1.034,0.891,0.872,1.102,0.817 +NM_080618,1.091,1.011,0.945,1.092,0.97,1.157,0.967,1.269,0.935,0.967,0.966,0.982,0.943,1.012,0.901,1.088,0.865,0.847,0.887,1.077,1.0,1.008,0.97,0.992,1.024,1.014,0.892,0.964,1.101,1.152,1.112,0.947,0.978,0.968,1.088,0.966,1.002,0.837,1.034,0.946,0.861,0.82,1.618,1.025,0.96,1.078,1.009,1.001,0.977,0.937,0.94,1.154,1.155,0.954 +NM_080621,1.001,1.158,1.111,0.981,1.251,1.093,1.205,0.966,0.78,1.067,1.064,0.918,0.945,1.047,0.773,1.019,0.962,0.982,1.135,0.988,1.033,0.993,0.89,0.909,1.144,1.116,0.936,1.069,1.175,0.93,1.014,1.009,0.995,1.004,1.087,0.909,0.791,1.243,0.958,1.064,1.056,1.051,0.971,0.963,1.084,0.879,0.999,1.102,0.955,0.865,0.962,0.905,0.856,0.972 +NM_080622,0.929,0.963,0.997,0.85,1.171,1.004,0.826,1.091,0.962,1.054,0.942,0.993,0.92,0.936,0.951,1.145,1.074,1.067,1.22,0.946,1.086,0.895,1.168,1.104,0.975,0.96,1.012,0.933,1.268,0.973,1.062,1.103,1.05,0.937,0.985,1.036,0.958,0.831,1.018,0.811,0.892,1.006,0.793,0.966,0.976,0.987,1.032,1.067,0.845,1.012,0.913,0.806,0.914,0.974 +NM_080626,0.703,1.033,0.966,0.895,0.751,1.01,0.763,0.483,0.896,0.776,1.111,0.509,0.612,0.656,1.069,1.529,0.814,0.831,0.81,1.137,0.72,0.55,1.577,0.926,0.915,0.66,1.129,0.865,0.586,1.295,0.788,1.205,1.562,1.08,0.482,1.405,1.295,0.772,1.942,0.888,0.965,1.376,0.871,1.226,0.767,1.459,0.954,0.677,1.586,0.83,1.522,0.78,0.679,1.874 +NM_080629,1.15,1.072,1.033,1.061,0.912,1.207,0.968,0.939,0.921,0.946,0.995,0.957,1.0,1.173,1.094,1.044,1.024,1.022,1.072,1.021,1.035,0.989,1.005,1.023,1.042,1.053,0.856,1.018,1.015,1.032,0.953,1.0,1.099,0.929,1.113,1.047,0.952,0.883,1.183,1.027,0.946,0.949,0.84,0.918,1.019,1.013,0.905,0.945,0.97,1.11,1.023,0.955,1.291,1.073 +NM_080630,0.98,0.942,1.112,0.954,0.942,0.91,1.085,1.056,0.873,1.023,1.078,1.007,1.095,0.865,1.032,1.0,0.871,0.955,1.067,0.838,0.924,0.849,1.092,1.056,1.008,0.989,0.802,0.872,1.827,0.975,1.009,10.42,1.028,0.827,0.979,1.04,0.89,0.986,0.923,1.983,1.032,0.926,1.071,1.068,0.956,0.901,1.083,0.955,0.914,0.887,0.999,1.072,1.001,0.825 +NM_080631,0.794,0.983,1.037,0.763,0.911,1.086,0.649,0.69,1.148,0.799,0.995,0.729,0.684,0.711,1.02,1.241,0.861,0.921,1.12,0.918,0.607,0.687,1.36,0.886,0.613,1.059,1.004,0.79,0.612,1.263,1.094,1.585,1.867,1.571,0.571,1.077,0.995,1.021,1.447,0.536,0.934,1.03,0.741,2.444,1.023,0.772,0.942,0.858,0.728,0.775,0.996,0.752,1.0,1.781 +NM_080645,0.881,0.872,1.011,0.811,0.786,0.777,0.826,0.886,0.83,0.917,1.006,0.822,0.857,0.862,0.928,0.949,0.918,0.921,0.967,1.118,1.011,0.774,1.289,0.935,0.958,0.928,1.064,0.945,0.856,1.173,0.977,13.05,2.164,1.153,0.86,1.041,1.079,0.998,1.86,2.896,1.091,0.96,0.897,0.928,0.902,0.985,0.897,0.816,0.897,1.049,1.165,1.77,0.93,1.333 +NM_080646,0.921,1.002,0.999,1.006,1.138,1.106,1.06,1.053,1.209,1.093,1.101,1.0,1.176,0.944,0.826,1.118,0.997,0.903,1.161,1.072,0.894,1.051,1.125,1.034,0.992,0.911,0.911,0.875,0.885,1.078,1.086,0.941,1.06,0.958,1.173,0.996,0.965,1.058,1.117,1.068,0.868,0.99,1.019,0.893,1.028,1.083,1.072,1.034,0.93,1.191,0.962,0.931,1.054,0.925 +NM_080647,1.077,0.952,0.926,1.057,0.955,0.968,1.037,0.947,1.023,1.082,1.096,0.96,1.001,1.153,1.131,0.973,1.003,0.999,0.969,1.13,1.002,0.936,0.919,1.017,1.085,1.011,1.077,1.079,1.133,1.083,0.959,1.024,0.939,0.937,0.941,0.937,1.052,0.998,1.028,1.041,0.888,0.987,1.055,0.912,0.991,0.989,0.877,0.994,1.061,1.027,1.076,0.98,0.912,0.948 +NM_080648,0.77,1.215,1.014,0.738,0.621,1.377,0.534,0.568,0.899,0.919,1.374,0.93,1.01,0.612,0.803,1.481,0.627,0.768,1.225,0.887,0.65,0.762,1.628,1.071,0.706,1.01,1.115,0.607,0.32,1.244,0.81,1.386,1.859,1.437,0.0897,0.925,1.251,0.818,1.289,0.907,0.908,1.381,0.818,2.095,0.851,0.829,0.864,0.736,1.098,0.883,1.087,0.537,1.154,1.643 +NM_080651,0.765,1.143,1.151,0.869,0.755,0.952,0.648,0.547,0.948,0.705,1.25,0.836,0.816,0.789,0.965,1.327,0.757,0.906,1.051,0.952,0.666,0.791,1.075,1.001,0.707,0.79,1.344,0.954,0.547,1.085,0.905,1.695,2.281,1.391,0.484,1.196,1.082,0.782,1.12,1.632,1.08,1.009,0.647,1.441,0.979,1.352,1.276,0.742,1.102,0.71,0.91,0.91,0.958,1.626 +NM_080653,0.884,1.068,0.993,0.919,1.063,0.937,1.031,0.865,1.117,0.956,0.842,1.054,0.941,0.743,0.851,0.946,0.852,0.906,0.832,1.1,1.005,0.978,1.125,1.003,1.028,0.906,0.92,1.113,0.809,0.877,0.914,1.106,1.449,1.105,0.827,0.967,0.978,0.924,1.135,1.075,0.991,1.178,0.703,1.036,1.013,1.011,0.873,0.873,0.894,0.9,0.997,0.922,1.088,1.248 +NM_080654,0.991,0.942,1.069,1.089,1.13,0.983,0.909,0.968,0.985,1.0,1.187,1.09,1.07,0.87,0.789,1.111,0.995,1.127,0.896,1.073,1.048,1.046,0.898,0.935,1.11,1.0,1.012,1.096,0.98,0.909,1.011,0.981,0.907,1.119,0.971,1.102,1.116,0.969,1.158,1.131,1.049,0.793,1.152,1.001,1.052,1.113,1.089,0.965,0.949,0.943,1.002,0.923,0.945,0.998 +NM_080655,0.772,1.069,1.14,0.972,0.875,0.977,0.829,0.753,0.939,0.928,1.102,0.887,0.91,0.84,0.833,1.095,0.935,1.041,1.028,0.904,0.76,0.833,1.03,0.927,0.896,0.94,0.969,0.866,0.772,1.111,0.879,2.087,2.598,1.319,0.723,0.83,0.889,1.063,1.487,1.784,1.217,0.939,0.872,1.3,0.945,0.965,0.893,0.855,0.789,0.894,0.866,1.236,1.158,2.032 +NM_080659,0.808,1.269,1.005,0.936,1.005,1.478,1.034,0.988,0.874,1.037,1.139,0.937,0.85,0.923,1.057,0.957,0.876,1.12,1.028,1.167,0.862,0.945,1.043,0.989,1.003,0.93,0.96,0.901,1.329,1.326,0.9,1.36,0.881,1.333,0.851,1.052,1.001,0.989,1.022,0.818,0.983,1.095,1.073,0.908,0.94,0.944,0.846,0.959,0.946,0.922,1.071,0.905,0.808,0.891 +NM_080660,0.987,1.045,0.902,0.896,0.989,1.029,0.993,1.055,0.937,0.907,0.854,0.958,1.027,1.054,0.801,1.137,1.005,1.045,0.93,0.935,1.082,0.909,0.976,1.075,0.956,1.107,1.125,0.909,0.743,1.024,1.051,1.02,0.955,1.081,0.944,1.094,1.026,1.053,1.031,1.109,0.967,1.101,1.089,0.837,1.012,0.913,0.955,0.949,0.911,1.091,1.2,1.112,0.976,0.958 +NM_080661,0.98,0.926,0.909,0.94,0.91,1.139,1.059,0.861,1.138,0.905,0.977,0.951,1.043,1.004,1.093,0.978,0.984,0.98,1.067,1.067,1.094,1.005,1.045,1.088,1.047,1.011,1.016,1.078,1.037,1.135,0.901,0.908,0.947,1.139,0.966,0.935,1.03,0.801,0.998,0.993,1.058,0.98,0.999,0.954,1.214,0.993,0.891,0.969,0.999,1.007,0.848,0.966,0.991,1.169 +NM_080662,0.941,1.208,1.081,0.931,0.954,1.368,1.007,0.789,0.976,1.102,1.058,0.931,0.859,0.948,0.969,1.326,0.858,0.992,1.117,1.189,0.892,0.886,1.152,0.866,0.977,0.998,0.747,0.879,0.937,1.178,0.913,1.002,1.145,1.443,0.803,0.934,1.076,0.873,0.944,0.802,0.827,1.159,0.833,1.065,0.902,1.026,0.815,0.902,1.105,0.841,1.155,0.83,1.039,1.041 +NM_080665,0.948,1.087,0.854,0.937,0.87,0.898,0.735,0.788,0.876,0.959,1.034,1.041,0.867,0.826,0.841,1.205,0.927,0.877,1.305,0.887,0.874,1.042,1.213,1.037,1.072,0.918,0.984,0.864,0.608,1.015,0.902,1.481,1.784,0.996,0.709,1.337,0.83,0.856,1.422,1.053,1.064,0.92,0.697,1.451,1.13,0.806,1.033,1.0,1.028,1.0,0.948,1.368,1.147,1.512 +NM_080666,1.177,1.118,0.838,0.981,1.106,0.946,0.982,0.99,1.134,0.842,0.953,0.864,0.921,1.227,0.831,1.005,1.018,1.054,0.854,0.997,0.804,1.036,1.01,1.012,0.892,1.079,1.121,1.073,1.53,1.047,1.024,1.21,1.032,0.972,0.899,0.944,0.871,1.041,1.275,1.083,0.964,1.026,1.002,0.972,0.994,0.972,0.986,1.094,1.065,1.007,0.929,0.917,1.049,1.061 +NM_080667,0.781,1.112,1.133,0.897,0.932,1.698,1.058,1.0,0.976,0.866,1.037,0.982,0.966,0.971,1.005,1.638,0.886,1.115,0.796,1.276,0.781,0.961,1.196,0.98,0.974,0.831,1.037,0.827,0.771,1.196,1.051,1.191,1.977,1.394,0.864,0.709,1.041,1.192,1.237,0.884,1.004,1.059,0.849,0.77,0.966,1.184,1.087,0.899,1.298,0.919,1.219,0.983,0.825,1.282 +NM_080668,0.912,0.963,1.046,0.844,0.84,1.123,0.78,0.741,0.972,0.927,0.801,1.061,0.908,0.736,1.049,1.021,1.005,0.943,1.132,0.754,1.014,0.748,1.248,1.244,0.787,0.843,1.708,0.947,0.718,1.087,0.96,1.679,3.578,0.844,0.749,2.092,0.938,0.865,1.458,1.542,0.964,0.874,1.026,1.649,1.032,0.918,1.127,0.83,1.269,0.889,0.942,1.022,1.066,2.295 +NM_080670,1.043,0.849,0.825,1.156,0.784,1.187,0.755,0.71,0.853,0.964,1.169,0.883,0.863,0.736,0.921,1.378,1.027,0.955,1.225,0.917,1.0,0.913,1.042,1.045,1.053,1.287,1.04,0.748,0.603,1.112,0.911,0.97,1.789,1.505,0.582,0.685,0.858,0.837,1.592,0.786,0.896,1.138,0.856,0.941,1.086,0.756,0.72,0.746,0.936,1.085,0.878,0.684,1.214,1.161 +NM_080671,0.949,0.96,0.939,1.026,1.029,1.056,1.151,1.035,1.033,0.886,0.985,1.0,0.996,0.99,1.057,1.073,1.026,0.985,1.101,1.024,1.054,0.882,0.992,0.999,1.108,0.997,0.954,1.029,1.128,1.007,0.942,1.071,1.141,1.212,1.097,0.901,0.953,1.028,0.942,0.967,1.066,0.975,0.952,1.04,0.941,1.14,1.0,1.019,1.026,1.094,0.985,0.87,1.094,0.999 +NM_080674,1.065,1.077,0.815,0.988,1.046,1.233,0.858,0.913,0.971,0.958,1.017,1.016,1.261,0.891,1.211,1.006,1.049,0.955,1.045,0.855,0.951,0.97,1.044,1.112,1.111,0.983,0.914,0.995,1.073,1.003,1.121,1.004,0.9,1.006,0.988,0.931,1.019,1.017,0.845,0.874,1.086,0.902,0.941,1.044,1.171,0.838,0.949,0.946,1.034,1.133,1.018,0.936,0.964,1.17 +NM_080675,1.204,1.068,0.937,0.872,0.967,1.059,0.992,0.951,1.014,1.067,1.114,0.923,1.031,0.836,0.868,0.952,1.082,0.976,0.998,0.986,1.019,0.916,0.895,1.149,0.975,1.09,0.947,1.132,0.726,0.924,0.909,1.069,0.931,0.989,1.077,1.069,1.06,1.014,0.968,1.077,0.979,0.964,0.934,1.032,0.947,1.082,1.034,1.108,0.95,1.062,1.085,1.073,1.144,0.997 +NM_080677,0.803,1.083,0.958,0.721,1.256,0.822,0.656,0.633,1.282,1.221,0.902,0.962,0.911,0.861,1.075,1.255,1.104,0.959,1.068,1.127,0.867,0.96,0.937,1.002,0.679,1.159,0.918,1.258,0.749,0.882,1.107,1.03,0.912,0.897,0.932,1.05,1.005,1.019,1.143,0.862,1.374,0.956,0.933,1.454,1.014,1.158,1.259,1.031,1.008,0.82,0.777,0.889,1.286,1.362 +NM_080678,1.009,0.808,1.78,0.586,1.907,0.798,0.685,1.169,1.552,1.196,0.737,1.401,1.364,0.735,1.045,1.42,2.222,1.302,1.499,0.941,0.406,0.977,0.959,1.327,0.408,0.907,1.728,1.398,0.449,0.893,1.737,1.341,1.96,1.001,2.324,0.823,0.79,1.215,0.872,0.777,1.795,0.859,0.626,1.074,1.725,0.768,1.578,1.368,0.884,1.268,0.904,1.124,1.228,2.364 +NM_080680,0.957,1.013,0.928,1.07,0.946,1.113,0.784,0.904,1.061,0.921,1.0,0.936,1.093,0.916,0.941,1.188,0.944,1.062,1.038,0.896,0.925,1.088,1.249,1.091,0.91,1.082,0.892,0.998,1.237,0.908,0.912,1.012,1.236,0.876,1.229,1.049,0.907,0.882,0.949,1.084,0.981,1.045,0.935,0.962,0.962,1.08,1.007,1.037,1.07,1.084,0.921,0.973,0.805,0.934 +NM_080682,0.562,1.674,0.74,0.883,0.61,1.378,1.191,0.738,0.646,0.586,0.744,0.537,0.61,0.427,1.126,1.299,0.598,0.841,0.545,1.062,0.527,0.489,2.107,0.701,0.902,0.584,0.963,0.788,0.667,2.028,0.556,10.97,2.042,2.376,0.493,0.956,1.011,0.684,2.121,1.016,0.622,2.175,0.883,0.709,0.615,1.087,0.881,0.592,0.759,0.608,1.068,1.705,0.895,2.198 +NM_080684,1.837,0.613,2.615,1.022,1.889,0.681,0.745,1.146,2.621,1.858,0.748,1.593,1.432,1.705,1.4,0.971,1.921,1.167,2.128,0.909,1.615,1.105,0.676,1.801,0.765,1.399,2.802,1.624,0.654,0.678,1.719,0.935,1.899,0.873,1.129,0.693,0.804,1.371,0.826,0.776,2.4,0.729,0.671,0.715,2.244,0.758,1.561,1.484,0.688,2.079,1.042,1.24,2.639,1.026 +NM_080687,1.054,0.95,1.376,0.97,1.083,0.905,0.627,0.714,1.262,0.966,0.815,0.813,0.755,0.888,1.145,1.549,1.032,0.936,1.084,1.045,0.823,1.074,0.987,1.058,0.79,0.998,1.089,1.12,0.734,0.948,0.973,1.885,1.181,1.486,0.497,0.864,0.911,1.07,1.012,0.742,1.122,1.046,0.668,1.419,1.026,0.955,1.094,0.843,0.969,1.068,0.831,0.758,1.257,1.639 +NM_080702,0.813,0.842,1.242,0.703,0.851,0.964,0.496,0.527,1.006,0.924,0.657,0.787,0.716,0.559,0.879,1.495,1.173,0.962,1.094,0.807,0.762,1.215,0.919,1.088,0.765,1.075,1.377,0.688,0.624,0.887,1.033,1.534,2.226,1.102,0.664,0.566,0.887,1.249,1.798,1.338,0.827,1.095,0.575,1.234,1.105,0.656,0.792,1.012,1.062,1.074,0.932,0.653,0.856,1.429 +NM_080705,0.983,1.139,0.911,0.851,1.03,1.077,0.998,0.981,1.047,0.938,0.925,0.978,1.002,1.107,0.996,1.108,0.998,1.088,1.013,1.156,1.115,1.056,0.986,1.178,1.053,1.187,0.971,1.058,1.213,1.005,0.853,0.921,1.009,0.921,1.065,0.898,1.002,0.898,0.827,0.981,0.989,0.959,1.103,0.949,1.043,0.968,0.935,0.972,0.898,1.137,0.975,1.165,0.927,1.003 +NM_080706,0.978,1.023,0.958,1.06,1.041,0.943,0.953,0.922,0.974,1.034,1.357,0.993,1.052,0.896,1.278,0.885,0.925,0.985,0.91,1.041,0.834,1.058,1.032,0.968,1.056,1.006,0.934,0.932,1.069,1.033,1.081,0.938,1.118,0.982,1.056,0.942,0.963,0.972,1.082,1.005,1.277,1.081,1.196,0.96,1.141,1.157,0.936,1.122,1.032,0.902,1.109,0.943,0.91,0.929 +NM_080718,0.976,0.951,1.189,1.166,0.942,0.962,0.808,1.068,1.012,0.958,0.934,1.056,0.979,0.874,0.939,0.993,0.987,1.057,0.941,0.999,1.134,0.89,0.955,1.049,0.919,1.159,0.981,1.17,0.825,1.014,1.038,1.052,0.944,1.024,1.16,1.053,1.009,1.004,1.03,1.218,0.959,1.198,0.902,1.053,1.08,0.884,1.043,0.912,1.06,1.013,1.112,1.039,0.926,1.019 +NM_080719,1.114,0.968,0.893,0.899,0.956,1.092,0.95,0.969,1.084,1.08,0.98,1.173,0.887,0.953,0.85,0.991,0.984,1.113,0.994,1.006,1.1,0.999,1.191,1.124,1.013,1.212,0.843,0.924,0.985,1.023,1.089,1.061,1.062,0.928,1.034,1.187,1.014,1.376,1.023,0.979,0.948,0.924,1.073,0.903,0.983,0.935,0.855,0.989,0.888,1.031,1.036,1.063,1.013,1.017 +NM_080722,1.018,0.969,0.981,1.133,0.955,1.041,0.82,1.106,0.94,0.841,0.922,0.936,1.053,1.183,0.838,1.053,1.001,1.237,1.106,0.89,1.103,0.937,0.988,0.975,0.992,0.921,0.843,1.043,0.836,1.019,0.92,0.897,1.015,0.878,1.144,1.038,0.945,0.957,0.998,0.997,0.747,0.882,1.027,1.312,1.117,1.152,0.992,1.022,1.012,1.017,1.02,1.122,1.017,0.891 +NM_080723,0.957,0.913,1.007,0.971,0.929,1.03,0.883,1.021,0.984,1.227,1.009,1.006,0.929,0.904,1.026,0.867,0.922,1.001,1.007,0.941,1.049,1.012,1.104,1.152,1.023,0.991,1.058,0.996,1.293,0.925,0.869,1.032,1.063,1.0,1.016,0.955,1.14,0.913,1.159,0.977,0.944,1.079,0.689,0.957,1.093,0.988,0.973,1.011,0.916,0.927,0.969,1.077,0.978,1.011 +NM_080731,1.705,1.8279999999999998,2.019,1.876,2.013,2.078,1.978,2.013,2.06,1.941,1.986,1.7759999999999998,1.8980000000000001,1.803,1.9740000000000002,2.1399999999999997,1.876,1.809,1.9140000000000001,1.919,1.794,2.122,2.25,1.861,1.865,1.849,1.9729999999999999,1.813,1.6920000000000002,2.29,1.7690000000000001,3.811,2.0469999999999997,2.315,1.882,1.9769999999999999,2.165,1.844,1.991,2.835,1.846,2.287,2.616,2.213,2.029,1.959,1.754,1.9340000000000002,1.914,1.973,1.7799999999999998,2.268,1.8559999999999999,2.613 +NM_080732,0.903,1.293,0.676,1.093,0.756,1.312,0.809,0.707,0.911,0.703,1.05,0.772,0.928,0.962,0.861,1.071,0.938,1.133,0.796,0.888,0.651,1.513,1.152,0.89,0.986,1.324,0.665,0.87,1.061,1.323,0.825,1.276,0.834,1.449,1.546,0.829,1.142,0.989,2.086,1.152,0.701,1.064,0.983,1.51,0.741,0.755,0.911,1.675,0.851,0.816,0.814,0.863,0.795,0.991 +NM_080733,1.004,0.957,0.959,0.876,0.956,1.051,0.793,1.167,0.72,0.954,1.021,0.931,0.92,1.113,0.914,0.942,1.076,0.787,0.951,1.021,0.982,0.889,0.874,0.863,1.037,1.006,1.063,1.046,0.687,0.995,0.948,1.115,0.901,0.958,0.847,1.11,1.058,1.059,1.183,1.068,1.019,1.028,0.859,1.086,0.827,0.956,0.984,0.997,0.928,1.024,1.143,0.963,0.92,1.156 +NM_080735,0.953,1.069,0.983,1.002,0.987,1.065,1.164,1.13,0.84,1.111,1.194,1.027,0.822,0.965,0.814,1.088,0.981,1.086,1.05,1.041,0.965,1.088,1.027,1.044,0.892,1.067,0.94,1.105,1.063,0.973,1.111,1.034,1.072,1.031,0.978,0.971,0.915,1.126,0.971,1.025,0.88,1.001,1.007,1.132,1.118,0.956,0.875,0.892,1.118,1.026,1.248,0.877,1.107,0.922 +NM_080736,1.508,2.943,1.202,3.792,1.4849999999999999,2.1950000000000003,2.076,1.5899999999999999,1.423,1.383,3.0109999999999997,1.3359999999999999,1.717,1.7870000000000001,1.605,2.1879999999999997,1.343,2.088,1.389,6.526,1.397,1.561,2.586,1.492,1.854,1.322,1.506,1.588,1.5110000000000001,2.883,1.713,6.246,1.6019999999999999,2.987,1.482,1.5699999999999998,2.23,1.453,3.375,2.931,1.59,5.312,1.891,3.2529999999999997,1.395,2.273,1.7369999999999999,1.636,2.261,1.653,4.272,4.711,1.589,3.605 +NM_080737,0.866,1.131,0.775,0.962,0.873,1.373,1.114,0.76,1.151,0.592,1.402,0.78,0.82,0.727,1.037,1.163,0.655,1.195,0.639,1.721,0.478,1.119,0.987,0.922,0.937,0.888,1.041,1.146,1.106,1.236,1.022,1.013,0.658,1.675,0.958,1.594,1.038,0.816,1.471,0.539,0.668,1.484,0.925,0.868,0.591,1.031,0.83,1.122,1.056,0.63,1.245,0.751,0.644,0.499 +NM_080738,1.056,0.91,1.192,0.834,1.196,0.93,0.976,1.195,1.287,1.129,0.781,1.109,1.13,1.063,1.201,1.161,1.149,0.998,1.092,0.863,1.162,1.171,0.879,1.235,0.827,1.074,1.233,1.352,1.19,0.941,1.498,0.995,1.104,0.935,1.207,0.874,0.879,1.244,0.939,0.926,1.024,0.798,0.747,0.81,1.31,0.868,1.213,1.063,1.003,1.171,1.017,0.741,1.176,0.961 +NM_080739,1.111,1.001,0.996,1.108,1.077,0.938,1.073,0.883,1.085,1.045,1.087,1.053,0.993,1.02,0.858,0.981,0.994,0.915,1.093,0.916,0.972,1.095,1.033,0.862,1.237,0.914,0.909,0.874,1.001,1.023,0.895,1.013,1.12,0.946,1.084,1.036,1.077,1.112,0.935,0.958,1.043,1.054,1.196,0.955,1.027,0.903,0.766,0.993,1.012,1.113,1.032,0.944,1.075,0.922 +NM_080740,1.032,0.962,0.812,1.043,0.902,0.939,1.112,0.931,1.003,1.025,1.1,0.976,1.101,0.848,0.957,1.083,0.928,1.065,0.969,1.026,1.052,0.966,1.0,0.861,1.117,0.999,1.007,1.03,1.031,1.085,1.113,0.944,1.21,0.974,1.125,1.089,1.045,0.953,0.952,0.977,1.059,0.976,1.136,1.115,1.1,0.934,1.103,1.006,1.03,0.959,1.167,0.866,0.97,1.199 +NM_080741,0.871,1.097,0.845,0.878,0.933,1.038,0.991,0.994,0.942,0.772,1.391,0.838,0.951,0.974,1.362,1.866,1.032,0.904,0.862,1.848,0.985,0.812,2.486,0.97,0.866,0.96,0.907,1.009,0.984,0.879,0.919,1.031,1.244,0.872,0.965,2.878,2.0,0.915,0.827,1.289,0.761,1.463,1.627,1.598,1.039,3.141,2.106,0.896,0.883,1.039,1.388,1.057,1.001,1.062 +NM_080742,1.311,0.997,0.917,0.848,0.958,0.923,0.876,1.199,0.9,0.859,0.931,0.992,1.156,1.081,1.287,1.075,1.03,1.066,1.084,1.102,0.992,1.115,1.041,1.05,0.997,1.019,0.889,0.82,0.971,0.946,0.834,0.873,1.306,1.028,0.865,1.342,0.825,0.727,1.017,1.032,0.909,1.154,1.005,1.022,0.981,0.955,0.97,1.022,0.98,1.024,0.873,0.839,1.159,1.128 +NM_080743,1.101,0.956,0.968,0.92,0.966,0.973,1.304,0.871,1.053,1.088,1.012,0.946,0.955,1.007,0.783,1.08,0.977,1.165,1.101,1.012,1.035,1.238,0.796,0.969,0.942,0.951,0.98,1.157,0.749,0.897,1.077,0.854,1.013,0.912,0.89,0.905,0.976,1.028,0.92,1.086,0.946,1.029,1.249,1.205,1.03,1.05,0.747,0.881,1.016,0.991,0.989,0.997,1.11,1.315 +NM_080744,0.976,0.99,1.177,0.889,1.025,0.936,0.802,0.812,0.962,1.325,0.849,1.073,0.992,1.001,1.055,0.891,0.924,1.028,1.085,1.006,0.969,1.013,1.108,1.077,1.208,0.908,1.096,1.053,1.068,1.153,0.88,1.131,1.132,1.066,0.891,1.004,0.884,0.956,0.822,1.085,1.131,0.967,1.074,0.945,1.07,0.743,1.005,0.947,0.999,0.989,0.972,0.953,1.099,1.182 +NM_080745,1.005,0.93,0.97,1.055,1.108,0.945,1.075,1.099,1.036,0.862,1.033,0.978,0.999,1.02,0.971,0.998,1.133,1.001,1.123,1.17,1.141,1.012,0.914,0.999,0.996,1.002,0.918,1.028,1.249,1.005,0.909,1.01,0.907,0.928,1.005,0.852,0.943,0.994,0.96,0.963,0.914,1.031,1.37,0.921,0.979,1.091,1.03,0.964,1.065,1.065,0.945,0.954,0.972,1.295 +NM_080746,0.954,1.109,1.085,0.974,0.945,0.924,0.982,1.072,1.028,0.928,1.282,0.935,0.944,1.213,0.978,0.947,0.963,1.002,0.984,1.019,0.878,1.116,1.089,0.891,1.073,1.037,0.915,0.994,0.753,0.928,1.022,0.942,1.092,0.979,1.101,0.978,1.046,1.018,0.886,1.069,0.977,1.014,1.35,0.909,0.843,1.125,0.927,0.866,1.047,1.085,1.034,0.979,0.839,0.989 +NM_080747,1.19,0.971,1.188,0.799,1.003,1.0,1.026,1.026,0.87,0.77,1.017,0.848,0.994,1.121,1.261,0.994,0.974,1.158,1.033,0.752,1.061,1.128,1.164,1.044,1.187,0.844,0.952,0.785,0.807,1.053,0.94,1.202,1.081,1.099,1.267,1.04,1.12,0.954,0.903,0.986,0.7,0.832,1.001,1.14,0.922,0.915,0.795,1.193,1.149,0.915,1.076,1.127,1.093,1.08 +NM_080748,0.887,0.763,0.879,0.829,0.945,1.116,0.531,0.931,1.164,0.898,1.43,1.242,0.928,0.619,0.922,1.749,0.721,1.217,1.585,0.939,0.745,0.995,1.489,1.148,0.805,1.328,0.826,0.892,0.358,1.422,0.825,1.263,1.579,1.228,0.347,1.062,1.337,0.959,1.026,0.89,0.905,1.045,0.579,1.005,0.967,0.927,1.186,1.464,0.819,0.912,0.986,1.455,0.953,1.412 +NM_080749,1.026,1.003,0.946,1.088,0.999,0.95,1.078,0.875,1.061,0.862,1.215,0.985,0.933,0.946,0.951,1.131,0.96,0.901,1.081,1.122,1.041,0.994,1.053,1.009,1.004,0.863,1.001,0.968,1.087,0.972,0.925,1.177,1.099,0.969,0.921,0.959,0.953,0.876,0.922,1.099,1.011,1.017,0.946,1.122,0.929,0.911,1.073,0.914,1.195,0.967,0.958,1.168,0.958,1.345 +NM_080750,0.959,1.087,1.025,1.014,0.837,0.951,0.929,0.926,1.135,0.923,0.986,1.11,1.002,1.007,1.099,1.099,0.963,0.922,1.077,0.92,0.936,1.098,0.957,1.025,0.918,0.954,1.004,0.954,1.064,1.001,1.006,1.01,0.903,1.02,1.06,0.985,0.966,0.991,0.898,0.991,1.026,1.067,1.24,0.822,1.034,1.043,0.968,1.013,0.939,0.966,1.028,1.065,1.029,1.185 +NM_080751,1.104,0.954,1.07,1.203,1.142,0.954,0.89,0.954,1.078,1.226,0.911,1.032,1.05,1.167,0.963,1.016,1.001,1.102,0.939,0.909,0.99,1.09,1.024,0.924,0.984,1.139,1.012,0.999,1.328,1.022,0.962,1.064,0.841,1.062,1.093,1.074,0.928,1.031,1.272,0.908,0.98,0.95,1.068,1.065,0.941,0.958,1.0,1.121,0.985,1.051,1.068,0.933,1.01,0.963 +NM_080752,0.801,1.069,0.885,0.919,1.004,0.906,0.822,0.919,1.138,0.858,0.843,0.854,0.892,0.825,1.133,1.311,0.928,1.099,0.887,1.073,0.905,1.015,1.008,0.894,0.91,0.998,1.152,0.787,0.942,1.209,0.841,1.043,1.214,1.137,0.923,0.957,1.128,0.973,1.125,1.258,0.793,1.015,0.929,1.061,0.968,0.833,0.883,1.014,0.834,0.812,0.97,1.152,0.977,1.273 +NM_080753,1.056,1.071,0.9,1.039,0.83,0.922,0.91,0.889,0.984,0.962,1.11,1.028,1.111,1.033,1.115,0.929,1.007,1.096,1.098,1.098,1.043,0.87,0.989,0.993,0.989,0.926,0.988,0.972,0.991,0.982,1.046,0.932,1.042,1.097,1.043,0.999,1.148,1.019,1.016,1.055,0.991,0.954,1.035,0.86,1.13,0.994,1.012,0.961,1.189,1.017,1.145,0.891,1.156,0.913 +NM_080758,1.128,1.047,1.116,1.255,0.915,1.118,1.05,0.886,0.97,0.833,1.047,0.84,0.899,0.959,0.853,1.196,1.118,0.953,0.954,1.021,0.917,1.453,0.895,0.901,1.082,1.063,1.057,1.13,1.337,0.912,0.87,0.887,0.896,0.989,0.841,1.043,0.974,0.947,1.185,1.169,0.887,1.02,1.116,0.823,1.087,1.095,0.997,0.918,0.848,1.208,1.034,1.023,1.049,0.971 +NM_080759,0.961,0.951,1.155,0.905,1.063,1.058,0.989,0.962,1.023,0.902,1.12,1.14,1.046,0.946,1.142,1.085,1.095,1.225,0.882,0.973,1.001,0.94,1.142,1.051,0.981,1.172,0.984,0.882,0.655,1.038,0.898,0.881,1.011,0.996,0.933,1.044,1.165,0.821,0.94,1.007,1.03,1.03,1.098,1.092,1.019,1.054,1.052,0.897,1.074,0.952,1.105,1.097,1.056,1.053 +NM_080791,0.947,1.02,0.971,0.913,0.874,0.904,1.099,0.943,1.146,0.905,1.024,0.999,1.024,1.3,1.007,1.072,0.98,1.015,1.033,1.011,0.927,1.013,0.95,1.133,0.964,1.023,1.25,1.058,1.092,1.089,1.026,0.97,0.991,0.986,1.024,1.005,1.103,0.961,0.945,1.001,1.051,0.859,1.384,0.949,1.101,1.121,1.071,1.054,0.952,1.076,1.053,1.086,1.012,0.945 +NM_080792,0.623,0.749,1.566,0.628,1.279,0.59,0.548,0.428,1.004,1.378,0.868,0.763,0.524,0.436,0.67,0.715,1.622,0.722,0.996,0.775,0.542,0.541,2.407,1.097,0.39,0.637,2.471,0.606,0.206,1.292,0.813,3.369,2.203,0.951,1.743,0.91,0.586,0.957,1.336,4.322,1.343,1.35,0.56,0.595,1.712,0.841,1.735,0.729,0.398,1.734,1.098,2.773,1.692,2.946 +NM_080794,1.094,0.94,0.868,1.152,0.925,1.117,1.026,1.109,0.992,1.099,1.04,0.993,1.025,1.054,0.947,1.115,0.89,0.905,1.005,0.949,0.972,1.03,1.043,1.004,0.975,1.059,0.948,0.95,0.973,1.111,0.929,1.068,1.041,0.969,1.173,1.099,1.069,1.121,0.99,0.962,1.188,0.964,0.966,1.006,1.076,1.0,0.984,0.931,0.98,0.948,0.938,1.056,1.116,0.917 +NM_080796,1.065,0.974,0.93,0.968,1.195,1.041,1.039,0.975,1.123,1.072,0.79,0.766,0.941,0.98,0.84,0.98,1.049,0.845,0.807,1.124,0.803,0.886,0.972,0.898,0.881,1.114,1.047,1.111,1.344,0.923,1.109,0.971,0.834,1.052,1.07,0.984,0.814,0.955,1.006,0.866,0.876,0.932,1.132,0.822,0.921,0.925,1.011,0.883,1.008,1.142,1.0,0.936,1.007,0.755 +NM_080797,0.873,0.974,1.412,0.764,1.063,0.967,0.673,0.667,1.386,1.005,0.867,0.818,0.588,1.126,0.986,0.877,0.98,0.961,1.122,0.859,0.695,0.812,1.345,0.911,0.864,0.865,1.359,0.863,0.595,1.639,1.133,1.183,1.202,1.121,0.939,0.828,1.035,0.965,1.154,1.603,1.03,1.222,0.562,1.559,1.02,0.879,0.806,0.888,0.627,0.624,0.91,0.811,1.094,1.736 +NM_080815,1.027,0.958,1.062,0.94,0.954,0.91,0.741,1.02,0.852,0.849,1.099,1.048,1.018,0.799,0.66,0.897,0.958,0.895,0.813,0.898,0.989,0.879,1.072,0.918,0.993,0.955,1.111,1.041,0.789,1.23,0.956,1.344,0.973,1.077,0.865,1.21,0.975,1.062,1.316,1.286,0.895,1.105,0.798,0.829,1.029,0.849,0.946,0.951,0.933,0.883,0.956,1.07,0.955,0.988 +NM_080816,1.041,0.968,1.344,0.983,0.919,1.099,0.81,1.045,1.084,1.117,0.977,0.94,0.98,1.142,1.123,0.815,0.847,0.894,1.089,1.025,0.985,0.991,1.06,1.0,0.983,0.939,1.059,1.024,0.897,1.077,1.015,1.014,0.987,0.908,1.143,1.014,0.988,1.053,0.929,0.901,0.883,1.124,0.989,1.0,1.082,0.993,0.953,1.003,1.087,1.115,0.924,1.047,1.039,1.391 +NM_080817,0.902,0.999,1.0,1.0,0.917,0.97,0.908,0.918,1.073,1.107,1.163,0.952,0.908,0.962,1.039,0.971,1.035,0.908,1.076,0.857,0.884,0.938,0.898,1.017,0.927,1.059,1.151,0.974,0.622,1.137,0.885,1.061,0.903,0.93,0.882,0.973,1.098,0.887,1.076,0.978,1.074,1.093,0.935,1.005,1.058,0.89,1.015,1.077,0.875,0.904,1.015,1.037,1.016,1.162 +NM_080818,0.989,0.993,0.999,1.007,0.98,0.926,0.96,1.042,0.964,0.923,0.914,1.04,0.928,1.063,0.929,1.121,1.168,0.862,0.972,1.032,1.025,1.049,1.003,1.02,0.973,1.086,1.099,0.845,1.128,1.001,1.089,0.97,1.074,0.743,1.039,1.13,0.982,1.063,0.944,1.004,1.018,1.002,1.007,0.809,0.876,0.905,0.981,0.984,1.007,0.937,0.95,1.127,1.147,0.939 +NM_080819,0.89,1.079,1.127,1.014,0.959,0.995,1.294,0.946,1.029,1.046,0.996,0.899,0.809,0.986,1.23,1.077,1.043,0.957,1.085,1.005,1.008,0.991,0.84,1.147,0.997,1.015,1.045,0.886,1.37,0.919,1.151,0.924,0.966,0.992,0.949,0.817,0.96,1.088,1.003,1.091,1.065,1.13,0.791,1.025,0.991,1.19,1.004,0.903,1.035,0.995,0.9,1.024,1.004,1.026 +NM_080820,0.695,0.736,0.967,0.78,0.981,0.994,0.691,0.74,1.267,1.22,0.941,1.24,0.896,0.666,0.933,1.199,0.826,1.024,0.827,0.999,0.645,0.953,1.167,1.179,0.649,1.005,1.05,0.999,0.504,1.05,1.069,1.039,2.441,1.026,0.474,1.177,0.885,1.258,1.08,0.691,1.027,0.881,0.752,1.44,0.946,1.053,0.947,0.87,0.819,0.942,1.099,1.015,1.195,1.472 +NM_080821,0.709,1.911,1.888,0.639,1.02,1.538,0.695,0.93,1.026,0.904,0.907,1.079,1.228,0.741,1.207,1.603,0.781,0.888,0.797,1.505,0.501,1.161,1.94,1.034,0.79,0.669,0.964,0.9,0.616,1.486,1.302,1.539,1.33,1.531,0.366,0.58,0.951,1.635,0.922,0.522,1.004,1.576,0.721,0.659,0.933,0.842,0.712,0.997,0.719,0.862,1.127,0.692,0.807,1.861 +NM_080822,0.966,0.818,1.097,1.246,1.051,0.948,0.829,0.65,1.081,1.135,1.221,0.652,0.825,0.908,1.061,1.221,1.001,1.064,1.282,0.792,0.801,0.671,1.11,0.951,0.684,1.044,0.94,0.912,0.74,1.062,0.95,1.022,0.875,0.999,1.053,0.874,1.081,0.916,0.99,0.798,1.204,0.967,0.853,1.235,1.031,1.033,1.172,0.945,1.133,1.07,1.053,0.874,0.954,1.207 +NM_080823,0.989,0.98,0.93,1.135,1.061,1.119,1.317,0.965,1.017,0.932,0.922,0.955,0.957,1.016,0.987,1.079,1.012,0.867,1.057,0.958,0.973,0.962,0.941,1.001,1.009,1.065,1.026,1.064,1.033,0.906,0.959,1.043,0.943,1.024,1.047,0.985,0.937,1.075,1.004,1.01,0.958,1.031,0.948,1.002,0.963,0.993,1.062,1.06,0.946,1.036,1.044,0.978,1.142,0.879 +NM_080825,0.994,0.861,0.958,1.085,0.986,0.929,1.001,0.978,0.989,1.096,1.025,1.039,0.938,0.972,0.782,0.849,0.949,0.991,1.223,1.038,1.045,1.144,0.839,0.914,1.125,0.988,0.847,1.102,0.829,0.999,1.01,1.007,1.072,0.979,0.91,1.054,1.054,1.015,0.98,1.06,0.993,1.03,0.964,0.972,0.957,0.912,0.98,1.121,0.944,1.071,0.982,1.028,1.031,1.217 +NM_080827,1.138,0.874,0.85,1.108,0.864,1.001,0.884,0.917,1.016,1.061,1.036,0.978,0.915,0.832,0.914,0.999,1.027,1.081,1.045,0.898,1.062,1.045,1.0,0.986,1.087,1.098,1.185,0.949,1.016,0.994,1.085,1.056,1.0,1.055,0.95,1.072,0.997,0.929,0.975,1.041,1.12,1.063,0.914,0.998,0.95,0.892,0.885,1.002,0.923,0.993,0.951,1.004,1.02,1.033 +NM_080828,1.075,1.153,1.033,1.097,1.241,1.162,0.847,1.026,0.909,0.935,0.986,1.032,0.963,0.936,0.948,1.073,0.95,0.957,0.891,1.13,0.843,1.0,1.032,0.924,1.075,1.115,0.964,1.163,1.027,0.911,1.204,0.934,1.212,0.961,1.033,0.976,1.05,1.186,1.218,0.905,0.967,0.855,1.057,1.231,0.889,1.126,1.175,0.846,0.77,0.956,1.0,0.858,1.033,1.065 +NM_080829,1.015,0.894,1.027,1.132,0.975,1.066,0.86,1.105,0.903,1.05,0.959,1.0,1.133,1.328,1.417,1.02,0.829,1.111,0.926,0.81,1.072,0.989,0.923,1.016,1.036,1.018,0.944,1.0,0.938,1.127,1.018,0.989,0.953,1.163,1.143,1.241,0.924,0.975,1.136,1.064,1.163,0.995,0.864,1.093,0.929,0.923,0.823,1.009,0.878,0.935,1.035,1.067,1.004,0.869 +NM_080830,1.15,0.947,1.0,1.003,1.152,0.939,1.462,1.292,0.92,0.94,0.989,1.093,1.304,1.267,1.279,0.972,1.185,0.973,1.178,0.829,0.919,1.068,1.089,0.938,1.203,0.949,0.824,1.128,1.069,0.939,1.286,1.058,1.151,1.01,1.413,1.169,0.98,1.203,0.986,0.923,0.869,1.09,0.947,0.926,1.096,0.942,0.942,1.32,0.952,1.118,1.015,1.081,0.951,1.043 +NM_080831,0.926,0.828,0.928,0.995,1.126,0.916,1.285,1.01,1.241,0.999,0.892,0.91,0.988,0.687,1.056,1.129,1.008,1.001,0.85,0.814,1.038,1.033,1.113,1.037,0.987,1.022,1.161,0.915,0.798,1.004,1.016,1.074,1.046,1.005,0.888,1.244,0.957,0.983,1.0,1.015,0.718,0.95,1.342,1.121,0.911,1.001,1.19,0.856,1.078,0.909,0.83,1.131,1.045,0.961 +NM_080832,0.951,0.956,0.895,0.912,0.934,0.928,0.991,0.944,1.053,1.014,0.985,1.031,0.969,0.907,1.041,1.076,0.922,1.022,1.035,1.121,1.074,1.047,0.836,0.999,1.032,0.932,1.028,0.956,0.994,1.059,0.995,1.026,1.001,1.142,1.118,0.973,1.092,1.057,0.972,1.123,0.899,1.086,1.264,0.947,1.194,0.992,1.1,0.906,0.997,1.081,1.015,0.892,0.93,0.99 +NM_080834,0.982,0.914,0.939,0.949,0.955,0.997,1.011,0.97,0.925,1.124,0.983,1.061,0.984,1.259,0.803,0.876,1.071,1.14,1.25,0.958,1.209,0.987,1.06,0.948,1.031,0.986,0.923,1.021,0.825,1.009,0.924,1.087,0.996,0.975,1.08,1.192,0.94,1.384,1.033,1.011,1.01,0.976,1.155,1.276,0.952,1.156,0.881,0.976,0.94,1.092,0.966,0.969,1.051,1.116 +NM_080836,0.68,0.715,1.037,0.618,0.885,1.128,0.571,0.522,1.03,0.95,0.977,0.63,0.569,0.645,0.944,1.14,0.905,0.849,1.509,0.849,0.799,0.717,1.395,1.036,0.541,0.872,1.327,0.824,0.506,1.311,0.94,1.157,2.513,1.429,0.578,0.841,0.893,0.701,1.389,1.482,0.984,1.049,0.678,1.309,0.946,1.066,0.784,0.704,1.016,0.922,0.897,0.812,1.156,2.405 +NM_080838,0.996,1.051,1.062,0.863,0.974,1.005,0.772,1.012,0.98,1.028,0.922,1.035,0.92,0.869,1.112,0.996,1.072,1.053,1.11,0.969,0.976,0.793,0.925,0.881,1.011,0.914,0.891,1.099,1.007,0.976,0.947,1.16,0.813,1.099,0.997,0.987,0.963,1.166,1.123,1.078,1.001,0.994,0.88,1.134,1.128,1.008,1.087,0.883,0.933,0.946,1.189,1.067,0.898,0.881 +NM_080839,0.833,1.092,0.834,1.163,0.79,0.992,0.783,0.751,0.769,0.932,1.837,0.828,0.765,0.746,1.342,1.054,0.845,1.224,0.937,0.823,0.867,0.701,1.329,0.909,1.385,0.775,0.834,0.785,0.789,1.632,0.759,0.915,0.629,0.921,0.758,0.875,2.345,0.818,2.77,1.4,0.853,1.517,1.604,1.607,0.866,1.056,1.116,0.901,0.956,0.773,1.102,1.628,1.065,0.866 +NM_080840,1.096,1.034,1.087,0.844,1.001,1.098,1.029,0.96,1.141,0.903,1.078,1.105,1.07,0.869,0.884,0.856,1.004,0.829,0.819,1.002,1.094,0.936,0.94,1.087,0.986,0.891,1.032,1.046,0.899,1.092,0.853,0.952,1.025,0.956,1.004,1.141,0.888,1.103,1.052,0.996,0.906,0.808,0.972,1.204,0.872,1.006,1.043,0.944,1.022,0.958,0.943,0.984,0.907,0.941 +NM_080841,2.065,2.004,1.989,1.738,1.916,2.141,1.6350000000000002,1.917,1.982,1.62,1.926,2.037,1.8139999999999998,1.8170000000000002,1.828,2.3970000000000002,1.749,1.9249999999999998,2.137,2.07,2.019,1.786,2.356,2.142,1.709,2.021,2.141,1.829,1.513,2.332,1.849,2.2809999999999997,3.0140000000000002,2.42,1.718,2.1029999999999998,1.888,1.9209999999999998,2.303,2.514,1.839,1.855,1.48,2.249,2.222,1.842,1.8730000000000002,1.9420000000000002,1.682,1.976,1.9969999999999999,1.765,2.167,2.353 +NM_080860,0.743,1.594,0.786,0.889,0.795,1.877,0.753,0.713,0.712,0.874,1.545,0.976,0.758,0.853,1.237,2.27,1.02,0.76,0.844,1.42,0.799,0.687,1.401,0.823,0.865,0.836,0.776,0.662,0.629,1.428,0.76,0.916,1.754,1.368,0.824,0.994,1.293,0.764,1.929,0.824,0.676,1.298,0.865,1.169,0.871,1.474,1.064,0.818,1.103,0.791,1.316,0.793,0.909,1.674 +NM_080861,2.004,1.06,1.127,1.038,1.712,0.844,0.589,1.567,2.045,0.866,0.818,0.955,1.527,1.513,1.672,0.912,1.735,1.116,1.683,0.815,0.99,1.564,0.85,1.182,0.866,2.466,1.15,1.54,0.908,0.884,1.989,1.445,1.341,0.915,6.387,0.715,0.766,2.465,1.171,0.881,1.458,0.962,0.664,1.127,0.993,0.726,1.192,2.766,0.77,1.113,0.701,0.764,0.933,0.906 +NM_080862,1.141,0.839,1.032,0.985,0.946,0.828,0.774,1.11,0.904,1.102,1.086,1.156,1.018,0.795,0.874,0.964,1.153,0.999,0.923,0.964,0.934,0.958,0.881,1.105,1.059,1.018,0.983,1.059,0.957,0.948,1.136,1.127,0.923,1.038,0.941,1.086,0.907,1.014,1.032,0.99,0.969,0.919,0.873,0.943,0.994,1.116,1.111,1.063,1.064,0.934,1.036,1.094,0.989,1.049 +NM_080863,1.095,1.086,0.864,0.969,0.843,1.004,1.27,1.013,1.007,0.996,1.069,0.963,1.053,0.897,0.936,0.927,0.952,1.064,0.957,1.068,1.197,1.122,1.037,0.968,0.927,1.015,1.099,1.119,1.246,0.996,0.851,0.78,0.898,0.994,1.123,0.992,1.29,1.199,1.109,1.025,1.047,1.216,1.023,0.941,1.048,1.136,0.838,1.149,0.936,0.972,1.145,1.067,1.15,0.933 +NM_080864,0.953,0.958,1.103,0.964,1.165,0.905,1.05,0.899,0.961,0.909,0.862,1.044,1.008,0.749,0.814,0.957,1.031,0.908,1.005,0.928,1.01,1.148,0.975,1.0,0.926,1.003,0.986,1.041,0.719,0.99,1.085,0.953,0.793,0.982,0.964,0.993,0.952,0.924,1.19,0.969,1.157,0.943,1.135,1.172,1.012,1.0,1.046,1.071,1.034,0.981,0.983,0.857,0.983,0.991 +NM_080865,0.996,1.051,0.977,0.975,0.936,1.18,1.09,0.998,1.224,1.208,1.052,1.148,1.045,1.097,0.788,0.859,1.034,1.058,0.89,0.972,0.953,1.025,0.96,1.021,0.954,1.089,0.972,1.216,1.334,0.961,0.901,1.073,0.954,0.903,0.985,1.059,1.003,1.03,1.031,0.985,0.985,0.893,1.148,0.97,0.982,1.079,0.984,1.007,0.99,1.017,0.993,1.158,0.921,1.161 +NM_080866,0.972,0.877,0.908,0.993,1.116,1.068,0.779,1.096,1.008,0.95,0.953,1.023,0.999,1.038,0.924,1.122,0.943,0.83,0.882,0.941,0.98,1.088,0.871,0.961,1.118,1.089,1.089,1.021,0.49,0.983,0.992,1.002,0.861,1.029,1.091,1.031,0.962,1.001,0.883,1.105,0.978,0.982,0.951,1.122,0.958,0.795,0.911,0.936,0.864,1.107,1.047,1.146,1.008,0.935 +NM_080867,1.069,1.053,1.076,0.965,0.886,1.076,0.951,1.083,0.932,0.899,1.028,0.992,0.897,0.999,1.089,1.073,1.077,0.925,0.911,0.847,1.093,1.0,1.023,1.013,0.939,0.829,1.13,0.863,1.149,1.021,1.009,1.035,0.972,1.014,0.847,1.116,1.05,1.092,1.194,1.037,1.021,0.909,0.856,1.267,1.005,1.071,1.078,1.067,0.984,0.974,0.981,0.958,0.921,1.151 +NM_080868,1.084,0.962,1.038,0.824,0.914,1.175,0.919,1.103,0.93,0.825,0.99,1.028,1.039,0.862,1.275,0.858,0.987,1.013,0.948,0.983,1.007,1.005,0.945,1.003,0.974,0.938,0.926,0.861,1.014,0.889,1.001,0.956,0.959,1.041,1.023,0.973,1.049,0.947,0.882,1.034,1.04,0.906,1.001,0.971,1.105,0.973,0.957,0.89,1.025,1.059,0.937,1.091,1.116,0.958 +NM_080870,0.861,10.21,0.557,24.47,0.823,18.33,20.36,0.808,0.822,0.871,5.234,0.867,0.578,0.641,0.784,0.656,0.578,39.11,0.618,15.32,0.768,0.85,2.569,0.666,12.53,0.901,0.5,1.021,5.601,25.34,0.836,5.991,0.842,23.51,1.267,0.632,6.139,0.98,37.23,0.603,0.707,6.567,0.613,0.67,0.769,0.877,0.762,0.818,0.662,0.625,11.31,1.146,0.567,1.399 +NM_080871,1.015,0.857,1.004,1.147,1.151,0.991,0.923,0.933,0.927,1.019,1.045,0.875,0.968,1.024,1.011,0.952,0.951,0.893,0.996,1.305,0.961,1.217,1.088,0.95,1.059,0.851,1.012,1.006,0.947,1.044,0.986,1.153,1.153,0.986,1.096,0.96,1.026,0.938,0.999,0.999,0.981,1.039,1.002,0.994,1.098,0.967,0.99,0.948,0.968,1.088,1.097,0.977,1.066,0.845 +NM_080872,1.02,1.02,0.932,1.063,1.132,1.018,1.05,0.923,1.108,1.13,1.054,1.069,1.031,0.95,0.963,0.929,0.968,0.961,1.018,0.961,0.892,0.912,0.886,0.96,1.048,1.113,1.161,0.972,0.979,1.076,0.976,1.12,0.821,1.173,1.1,0.837,0.956,1.0,1.246,0.953,0.995,0.892,1.207,1.0,1.093,0.974,0.995,1.169,0.936,1.094,0.993,1.057,0.956,0.883 +NM_080873,1.012,0.968,1.167,1.072,1.045,0.982,1.06,0.983,1.146,0.98,1.12,0.994,1.043,1.039,0.878,0.902,0.97,0.973,1.09,1.091,0.944,1.128,0.906,1.048,0.974,0.974,0.953,0.942,1.148,0.951,1.008,0.97,1.283,0.856,0.998,0.994,0.968,0.908,0.97,0.955,1.104,0.935,0.994,1.111,1.012,1.013,1.056,0.989,0.947,1.044,1.015,0.997,1.001,1.14 +NM_080874,1.132,1.016,1.046,1.029,1.028,1.147,0.814,0.981,1.095,0.935,1.062,1.026,1.0,0.854,1.111,1.073,1.07,0.974,0.908,1.039,0.93,0.979,0.98,0.985,1.164,1.069,0.934,1.185,0.702,0.992,1.031,1.047,1.124,1.032,1.067,0.952,0.955,0.989,0.959,1.098,1.145,0.919,0.933,1.063,1.148,0.904,1.027,0.929,0.902,0.976,1.065,0.966,1.061,0.884 +NM_080875,1.266,0.541,1.726,0.695,1.158,0.632,0.306,1.142,1.377,1.241,0.593,2.117,1.356,0.944,0.919,1.141,1.083,1.226,2.243,0.737,1.174,1.663,0.661,1.884,0.482,1.784,1.728,1.158,0.416,0.61,1.229,0.666,1.859,0.778,0.415,3.113,0.446,1.274,1.836,1.185,1.35,0.718,0.698,2.496,1.647,0.697,1.13,1.539,0.643,1.571,0.596,0.516,1.77,2.435 +NM_080877,1.054,1.022,1.139,1.022,0.944,1.036,1.024,1.009,1.236,1.161,0.987,0.936,0.914,1.002,1.159,1.165,1.022,1.022,1.09,1.055,1.044,1.047,1.054,0.935,0.98,0.98,0.884,0.947,0.84,0.95,0.861,0.89,0.884,0.886,1.169,0.843,1.1,1.094,0.948,0.998,0.988,1.275,0.952,1.101,0.988,0.98,1.252,1.122,0.994,1.012,1.051,1.191,1.004,1.01 +NM_080878,1.014,0.963,0.852,1.254,1.095,0.899,0.814,0.926,1.101,1.05,1.35,0.952,0.886,0.994,1.649,2.936,0.924,0.93,0.936,1.076,0.931,0.943,0.968,0.943,1.042,1.122,0.88,0.913,1.403,1.042,1.103,1.141,0.981,0.923,0.93,1.056,1.561,1.066,1.107,1.059,0.976,1.099,1.248,0.977,1.143,0.89,1.711,0.921,11.47,1.014,2.024,0.915,0.814,1.045 +NM_080879,0.957,0.899,1.026,0.95,1.078,1.019,0.998,0.998,1.064,0.973,0.902,1.204,1.022,1.029,0.928,1.026,1.071,1.1,1.021,0.954,1.155,0.984,0.878,1.05,0.953,1.008,1.051,0.948,0.902,0.96,1.18,1.002,1.041,1.008,1.024,0.992,0.872,1.009,1.018,1.031,0.864,0.974,1.044,0.921,0.875,0.834,0.955,1.006,0.955,1.169,0.987,0.897,1.053,0.894 +NM_080881,1.007,0.97,0.958,0.925,0.865,1.142,0.873,1.047,1.002,1.027,0.958,1.033,0.963,0.985,0.867,0.949,1.112,0.992,1.026,0.923,0.934,1.007,0.934,0.95,1.031,1.033,1.018,1.012,0.661,0.952,0.998,1.034,0.987,1.004,1.08,0.963,1.098,1.177,1.077,1.067,1.018,0.912,0.927,0.908,1.029,0.991,0.991,0.974,0.818,0.944,1.067,0.975,0.833,0.91 +NM_080911,2.0620000000000003,1.982,2.108,2.016,1.9460000000000002,2.06,1.951,2.062,2.242,1.904,1.839,1.96,2.133,1.9979999999999998,2.049,2.022,1.939,1.795,1.939,2.097,1.788,1.78,2.218,2.073,1.865,1.9989999999999999,1.8,1.956,2.323,2.064,2.286,2.354,2.955,2.045,2.162,2.2199999999999998,2.017,2.3310000000000004,2.3609999999999998,1.8860000000000001,2.269,2.284,2.5170000000000003,2.17,1.923,1.754,1.74,1.927,2.11,2.166,2.114,2.032,2.139,3.491 +NM_080914,0.896,0.893,1.007,0.965,1.016,0.986,0.729,1.097,1.075,1.006,0.953,0.865,1.154,0.904,0.99,0.858,0.954,0.797,1.098,0.972,1.065,1.003,0.956,1.005,0.954,0.951,1.203,1.148,0.823,1.096,0.932,1.114,0.933,1.187,1.006,0.947,0.929,1.12,1.068,1.091,1.069,0.926,1.092,1.039,0.955,0.966,0.876,0.994,0.919,0.893,0.934,1.166,1.103,1.012 +NM_080920,1.07,0.909,1.101,0.992,1.071,1.111,1.12,1.017,1.0,0.857,1.056,0.94,0.872,1.029,0.906,1.032,1.067,0.953,1.054,1.124,1.039,1.093,0.932,0.943,0.965,0.992,1.18,1.186,1.069,0.964,0.904,0.835,1.013,1.053,1.112,1.078,1.101,0.938,0.917,0.98,0.892,1.063,0.95,0.926,1.205,1.109,1.022,0.966,1.136,1.058,1.038,0.872,1.122,0.986 +NM_080923,1.942,2.072,2.11,2.032,2.1479999999999997,2.062,2.149,1.721,2.0860000000000003,2.11,1.774,2.089,1.894,1.839,2.1430000000000002,1.54,1.923,1.698,1.8529999999999998,1.7890000000000001,1.9660000000000002,1.742,2.064,2.025,1.896,1.879,2.505,2.088,1.979,2.287,2.064,2.269,1.8359999999999999,1.798,1.957,1.838,1.681,1.7770000000000001,2.498,2.824,2.643,2.059,1.893,2.0789999999999997,2.019,2.152,2.226,1.775,1.813,1.964,2.055,2.393,1.8860000000000001,2.3890000000000002 +NM_080926,1.966,0.659,2.095,0.985,4.021,0.794,0.44,3.582,4.184,1.871,0.766,1.577,1.795,2.304,1.71,1.443,2.409,1.015,1.969,0.628,1.461,2.894,0.686,3.297,0.46,4.32,1.268,3.925,0.324,0.824,7.063,0.674,2.084,0.924,5.952,0.658,0.713,5.353,1.065,0.529,3.567,0.663,0.56,0.735,1.693,0.705,1.293,3.848,0.78,0.833,0.84,0.729,2.112,1.032 +NM_080927,1.11,0.779,1.193,0.792,0.91,0.937,1.041,0.769,1.158,1.163,1.0,0.917,0.887,0.906,0.966,0.732,0.966,0.772,1.007,1.054,0.884,1.0,1.081,0.825,1.131,1.02,1.375,0.914,0.796,1.006,1.062,2.063,0.926,1.118,0.697,1.182,0.958,0.853,1.042,0.939,1.02,1.068,0.709,2.216,0.984,1.137,0.845,0.865,0.833,0.828,0.878,1.531,1.182,0.954 +NM_080928,0.987,0.989,0.944,0.941,0.946,1.038,1.125,1.102,0.879,1.002,0.895,1.139,1.009,0.821,0.88,1.049,1.048,0.886,1.048,1.013,0.943,0.952,1.0,0.842,0.978,0.976,0.964,1.054,0.822,0.922,1.141,0.994,1.132,1.007,1.098,1.091,0.995,0.873,0.959,1.007,1.028,1.016,0.908,0.96,1.045,1.024,0.921,0.939,1.16,0.93,1.004,1.015,1.199,1.07 +NM_100264,1.153,1.053,0.99,1.369,0.932,1.116,0.948,0.793,1.011,1.013,0.911,0.981,1.034,1.151,0.978,1.034,0.955,0.874,1.034,1.072,1.035,0.909,0.949,1.047,1.022,1.06,1.052,0.981,0.99,0.982,0.984,0.809,0.891,0.848,0.821,1.031,1.028,1.051,1.038,1.0,0.84,1.18,0.937,0.952,1.043,0.947,1.126,0.992,1.019,1.028,0.885,1.211,0.873,0.966 +NM_100486,0.667,1.0,1.18,0.676,1.245,1.131,0.632,1.054,1.463,1.006,0.897,0.878,0.629,0.67,0.964,1.0,0.905,0.85,0.814,1.172,0.411,1.007,0.953,1.061,0.585,0.681,1.203,1.27,0.362,1.293,1.292,1.556,2.022,1.27,1.434,0.581,1.042,1.222,1.071,0.839,1.275,1.23,0.63,0.879,0.934,1.081,1.19,1.052,0.901,0.704,0.973,0.631,0.71,1.512 +NM_106552,0.501,1.152,0.886,0.551,0.634,1.462,0.7,0.436,0.731,0.58,1.093,0.666,0.423,0.564,0.914,1.394,0.777,1.116,0.811,1.277,0.475,0.621,1.347,0.597,0.598,0.567,0.919,0.744,0.692,1.316,0.593,1.448,1.943,1.403,0.337,1.057,0.995,0.855,1.172,1.254,0.823,1.3,0.649,1.225,0.588,1.395,1.269,0.55,0.878,0.575,1.33,0.771,0.608,1.307 +NM_130386,0.914,1.096,0.976,0.921,1.001,1.007,1.069,0.903,0.795,0.8,1.003,0.822,0.998,0.775,1.004,0.957,0.884,0.842,0.749,0.991,0.961,0.9,1.187,0.938,1.15,1.013,0.915,1.011,0.635,2.329,0.997,6.232,0.915,1.77,0.849,0.823,1.114,0.971,0.845,0.995,1.194,1.842,1.108,0.744,0.985,1.196,0.901,0.931,0.781,0.893,1.27,1.058,0.883,0.861 +NM_130388,0.894,1.036,0.96,0.998,0.907,1.017,0.935,1.19,0.792,1.069,0.994,1.036,0.875,0.846,0.993,1.026,1.043,1.193,0.992,0.919,0.866,0.997,1.092,0.968,1.031,1.192,1.0,0.943,0.927,1.01,0.888,1.043,1.079,1.001,0.889,0.974,1.078,1.1,0.97,1.058,1.122,1.038,0.94,1.0,1.051,0.915,0.916,1.05,1.052,1.039,1.024,1.106,0.933,1.106 +NM_130390,2.016,2.067,1.952,2.3609999999999998,2.007,1.849,2.018,1.73,1.991,1.9939999999999998,2.0090000000000003,2.002,1.915,2.019,1.9420000000000002,1.947,2.104,1.9620000000000002,1.815,2.186,1.9929999999999999,2.056,1.988,1.9709999999999999,2.091,1.909,2.028,2.032,2.677,1.911,1.826,2.024,1.89,2.002,1.882,2.093,2.123,1.881,1.8860000000000001,1.9829999999999999,1.963,2.2880000000000003,1.956,2.018,1.974,2.069,1.654,1.986,2.008,2.191,2.026,2.21,2.167,1.8170000000000002 +NM_130393,1.087,1.04,0.96,0.921,0.948,0.916,0.893,1.323,0.93,0.839,1.011,1.187,1.048,1.205,1.002,1.099,1.022,0.902,1.044,0.99,1.03,0.969,1.012,1.005,1.16,0.988,0.978,1.061,0.82,0.979,1.034,1.194,0.905,1.037,0.995,1.07,0.948,1.191,0.97,1.143,1.002,0.92,0.885,1.07,1.114,0.814,0.963,0.929,1.151,0.975,1.098,0.949,1.026,1.031 +NM_130395,0.676,0.901,1.694,0.873,0.947,0.741,0.568,0.403,1.531,1.094,0.993,0.626,0.49,0.754,0.955,1.358,1.095,0.786,1.088,1.013,0.566,0.619,1.182,1.184,0.443,0.816,1.794,0.985,0.339,1.126,1.163,1.204,2.299,1.071,0.305,0.627,0.885,0.808,0.792,0.931,1.383,0.954,0.718,1.299,1.119,0.886,1.121,0.626,0.816,0.988,1.007,0.835,1.047,1.919 +NM_130396,0.88,1.094,0.947,0.93,1.012,1.181,1.04,0.977,0.986,1.038,1.697,0.9,0.957,0.934,0.899,2.019,1.017,1.006,1.05,1.717,1.047,0.932,2.173,0.875,0.917,0.921,0.981,0.969,1.214,1.002,0.919,1.011,1.003,0.95,0.874,1.157,0.959,0.998,1.362,1.12,0.971,1.16,1.233,1.879,0.854,1.318,0.947,0.885,0.958,1.111,1.325,1.101,1.107,1.726 +NM_130398,0.899,1.03,1.02,1.022,0.897,0.953,0.88,0.981,0.995,0.93,1.008,1.051,1.011,1.015,0.802,1.073,0.967,1.067,0.929,0.963,0.957,0.908,1.025,0.909,1.091,0.926,0.93,1.095,0.751,0.948,1.02,1.086,0.992,0.959,1.021,0.935,1.01,0.952,1.036,0.981,1.015,0.949,1.005,0.968,0.958,1.053,0.999,1.01,1.01,1.033,1.039,1.003,1.156,1.142 +NM_130435,1.814,1.999,2.147,1.8370000000000002,2.115,1.762,2.082,2.3289999999999997,2.128,2.109,1.813,1.919,1.83,1.984,2.199,1.959,2.0229999999999997,1.947,2.2039999999999997,1.8780000000000001,2.0220000000000002,1.995,2.118,1.891,1.983,1.8769999999999998,2.261,1.8210000000000002,1.796,1.876,2.106,2.088,1.979,1.8599999999999999,1.702,2.067,1.873,2.035,2.163,3.342,1.883,2.234,1.6589999999999998,1.9969999999999999,2.175,1.839,1.762,1.916,1.976,2.082,2.1500000000000004,2.375,2.559,2.144 +NM_130436,1.082,0.877,1.011,0.975,1.281,1.044,1.029,0.919,1.054,1.009,1.081,0.938,0.939,0.859,0.922,0.889,1.031,1.112,1.037,1.012,1.033,0.959,0.912,0.987,0.964,1.051,0.866,0.988,1.02,1.064,1.074,1.043,0.971,0.978,1.032,1.113,1.121,0.996,1.066,0.991,0.911,1.042,0.79,1.137,0.971,0.945,1.116,1.05,0.892,1.028,1.013,1.065,0.947,1.005 +NM_130438,0.6,1.152,1.419,0.575,0.903,1.267,0.842,0.713,1.127,0.837,0.876,0.985,0.711,0.579,1.047,1.603,0.784,1.098,0.913,1.133,0.445,0.839,1.236,1.22,0.623,0.634,1.137,1.033,1.031,1.134,1.038,1.229,1.948,1.295,0.475,0.583,1.071,0.994,1.101,1.175,1.113,1.254,0.723,0.726,1.08,0.988,0.813,0.751,0.736,0.763,1.089,0.688,0.697,1.509 +NM_130439,1.055,1.102,1.092,0.905,1.109,1.107,0.74,0.903,1.014,1.202,1.086,1.017,0.853,1.056,0.842,1.002,0.887,1.144,0.958,1.188,0.866,1.158,0.985,0.97,1.152,1.015,0.841,1.139,0.944,1.034,0.921,0.96,1.214,1.033,1.227,1.101,0.926,1.002,1.042,0.98,1.127,1.006,0.784,1.134,0.902,1.156,0.963,1.096,0.911,1.207,0.922,1.0,1.178,1.157 +NM_130440,0.953,0.895,1.308,0.601,0.83,0.837,0.338,0.304,1.14,0.807,1.075,0.518,0.498,0.683,1.042,1.588,0.79,0.805,1.567,1.002,0.892,1.153,1.166,0.724,0.635,1.259,1.323,0.706,0.499,1.313,0.89,1.295,1.566,1.268,0.182,0.524,1.077,1.209,1.182,0.643,1.179,1.246,0.712,1.123,0.96,1.041,0.931,0.908,0.868,1.022,0.811,0.599,0.863,0.655 +NM_130441,1.148,1.076,0.935,1.17,0.982,1.033,1.12,1.472,1.31,1.151,1.03,0.954,1.008,1.166,0.877,1.004,1.113,0.889,1.083,1.103,0.967,0.998,1.021,0.971,0.938,1.017,1.181,1.024,1.016,0.917,0.855,0.954,1.122,1.09,0.946,0.957,0.866,0.897,1.111,1.035,0.866,0.955,1.584,0.968,1.175,0.915,0.906,1.008,0.899,1.125,1.006,0.995,0.967,0.946 +NM_130442,1.909,2.023,1.9949999999999999,1.992,1.928,1.901,2.223,1.818,2.2279999999999998,1.92,2.012,1.7879999999999998,1.923,1.745,2.234,2.0140000000000002,2.0180000000000002,1.9,1.577,1.936,1.881,1.73,2.065,1.955,2.0140000000000002,2.007,2.282,1.9979999999999998,1.855,2.205,1.741,2.465,2.0709999999999997,2.4619999999999997,2.052,2.1550000000000002,2.0229999999999997,2.222,2.552,2.5380000000000003,1.904,2.445,1.77,1.795,1.8639999999999999,1.998,1.742,1.855,1.8090000000000002,1.8980000000000001,1.996,2.48,2.0389999999999997,2.526 +NM_130445,2.034,1.999,2.164,1.659,2.3600000000000003,1.681,1.538,1.6920000000000002,1.9740000000000002,2.1959999999999997,1.674,1.814,1.73,1.712,1.8689999999999998,1.796,2.152,1.7029999999999998,1.8319999999999999,1.865,2.195,2.0549999999999997,2.174,2.008,1.883,2.7489999999999997,1.8399999999999999,1.6560000000000001,1.556,2.138,2.191,4.510999999999999,2.8289999999999997,2.058,1.633,1.959,1.786,2.231,2.936,3.6849999999999996,1.676,2.2510000000000003,1.672,2.553,2.068,2.072,1.679,2.2560000000000002,1.771,2.089,2.1229999999999998,2.723,2.74,2.373 +NM_130446,0.889,0.987,0.935,1.076,0.954,1.019,1.236,0.823,0.992,1.082,0.894,0.929,1.066,1.173,0.818,1.008,0.98,0.951,0.931,0.927,0.922,0.981,0.934,0.88,0.95,1.04,1.245,0.965,0.924,1.269,0.981,1.336,0.949,1.376,0.815,1.023,1.001,0.803,1.043,1.069,0.917,1.173,1.013,0.896,0.788,0.972,1.012,0.878,0.971,0.941,1.029,1.012,0.999,1.579 +NM_130459,0.951,0.918,0.961,0.876,0.798,1.041,0.78,0.983,0.915,0.833,1.119,0.955,0.912,0.765,1.043,1.465,0.821,0.957,1.246,0.968,0.879,0.911,1.081,0.899,0.986,1.206,1.099,0.959,1.008,1.203,0.825,1.161,1.342,1.286,0.894,1.087,1.04,0.922,1.131,1.006,0.891,0.933,1.183,1.182,0.909,1.073,0.98,0.947,1.008,0.914,0.902,0.773,0.819,0.928 +NM_130463,1.04,1.031,1.084,0.948,1.101,1.032,1.104,1.067,0.997,1.182,0.97,0.993,0.994,0.974,0.879,0.995,1.061,0.953,1.22,0.999,0.967,0.944,0.988,1.077,0.98,0.974,0.902,0.946,0.731,1.088,1.045,1.053,0.955,0.989,0.989,0.983,1.05,1.036,0.954,1.02,1.036,1.038,1.078,1.101,1.071,1.011,0.994,1.095,1.222,1.032,0.991,0.966,1.06,1.119 +NM_130465,0.934,0.99,0.763,0.882,0.855,1.26,0.803,0.661,0.976,0.986,1.258,1.041,1.044,0.666,0.793,1.206,0.69,1.369,1.17,1.095,0.65,0.994,1.197,1.17,0.895,1.21,0.822,0.861,0.778,1.067,0.849,1.868,2.287,1.229,0.523,0.955,1.087,1.253,1.411,1.001,0.866,1.12,0.895,1.41,0.928,0.774,0.997,1.146,0.755,0.828,0.91,1.043,0.81,1.898 +NM_130468,1.003,1.139,1.014,0.89,0.839,0.905,0.934,1.138,1.048,0.909,0.911,0.927,0.963,0.936,0.872,0.85,0.951,0.929,1.193,0.932,1.039,0.972,1.124,0.961,0.995,1.293,1.186,1.03,0.689,1.115,0.945,2.244,0.971,1.196,0.778,0.854,0.92,1.001,1.139,1.245,0.991,1.043,0.901,1.068,0.987,0.755,0.912,1.026,0.883,1.038,0.981,1.078,0.995,1.505 +NM_130469,0.932,1.088,1.002,0.961,0.85,1.388,0.885,0.677,0.966,0.908,1.122,0.957,1.047,0.723,0.866,1.073,0.898,0.952,0.79,1.273,0.672,1.01,1.13,0.967,0.783,0.978,0.979,0.95,0.722,1.446,0.952,1.921,0.876,1.178,0.809,0.989,1.071,1.116,1.178,1.231,0.924,1.13,0.915,1.203,0.913,1.213,1.134,0.892,0.891,0.932,1.051,0.962,0.881,1.074 +NM_130470,0.938,0.892,0.9,0.925,1.119,0.997,1.035,1.114,0.845,1.059,0.992,0.926,1.047,0.868,1.078,1.036,0.955,0.976,0.993,1.069,0.929,1.032,1.171,0.994,0.961,1.0,1.01,1.009,1.186,1.03,1.039,1.008,1.067,0.968,0.917,0.958,1.004,0.886,1.015,0.952,1.008,0.957,0.95,1.065,0.962,1.037,0.85,0.98,0.893,1.041,0.89,1.009,1.0,0.951 +NM_130759,0.841,1.069,1.241,0.872,0.936,0.953,1.125,1.001,1.008,0.897,1.034,0.771,0.961,0.992,0.72,0.972,1.012,0.942,0.907,0.913,0.843,1.006,1.183,0.848,1.031,0.834,0.896,0.896,0.837,1.185,0.87,1.357,0.99,1.297,0.908,0.939,1.005,0.835,1.053,1.113,0.913,1.559,0.746,0.818,0.958,0.919,0.902,0.834,1.088,0.999,0.947,1.267,0.947,1.192 +NM_130766,1.224,1.019,1.002,0.995,1.035,0.983,1.17,1.031,0.989,0.912,0.875,0.933,1.072,1.07,0.901,0.993,0.986,1.057,0.986,0.975,0.92,1.08,1.019,1.027,1.028,1.005,1.156,0.897,0.939,0.942,1.048,0.949,1.014,1.001,1.085,0.912,1.106,1.032,1.07,0.969,0.991,1.201,0.909,0.885,0.984,1.046,0.927,1.128,1.173,1.059,0.999,1.084,1.165,1.095 +NM_130767,1.015,0.872,1.015,0.988,0.869,1.043,0.939,0.954,0.965,0.989,0.944,0.888,0.918,1.024,0.921,1.088,1.025,1.076,1.074,0.89,1.058,1.138,1.077,1.05,0.863,0.813,0.904,0.888,0.897,1.01,0.967,0.833,0.997,0.955,1.024,0.922,0.917,0.981,1.128,1.038,0.843,0.951,0.946,0.997,1.059,1.039,0.869,1.022,0.94,1.03,0.973,0.936,0.91,0.935 +NM_130768,0.941,1.041,1.012,0.989,1.084,0.975,1.057,0.989,1.058,1.013,1.004,1.003,1.045,0.917,0.871,0.913,1.043,1.048,1.042,0.95,0.942,0.948,1.14,0.875,1.142,1.011,0.962,1.057,0.848,1.027,1.005,1.062,1.078,1.046,1.131,0.989,0.984,0.904,0.988,0.942,1.014,0.949,1.115,0.953,0.986,1.049,1.1,0.999,1.004,1.137,0.956,0.919,1.057,1.011 +NM_130769,1.176,1.093,1.055,1.225,1.101,1.037,0.997,0.998,0.915,0.871,1.01,1.139,0.99,1.07,0.87,1.041,1.011,1.075,0.829,1.048,0.962,0.984,0.922,1.142,1.054,1.054,0.921,0.916,0.997,1.022,0.843,1.062,1.043,1.034,0.915,1.26,1.047,0.977,1.031,0.896,1.148,0.994,0.987,0.851,1.152,0.961,0.948,1.087,1.073,1.126,0.904,1.017,0.969,0.971 +NM_130770,1.042,1.147,0.993,1.072,1.005,1.039,0.921,0.898,0.887,0.792,1.052,1.068,1.121,1.27,1.165,0.996,1.063,1.142,0.95,0.97,1.052,0.989,1.052,0.973,0.988,0.918,0.926,1.007,0.92,1.038,1.098,0.945,0.982,0.968,0.959,0.952,1.139,1.084,1.127,1.072,0.893,0.994,1.274,0.867,0.944,0.951,1.094,0.976,0.93,0.918,1.099,0.927,1.0,0.95 +NM_130773,1.007,0.968,1.096,1.092,0.998,1.044,0.912,1.02,0.966,0.988,1.015,0.981,0.944,0.782,0.88,0.931,1.047,0.896,1.061,1.018,1.028,1.03,0.976,1.043,1.078,0.968,0.976,0.969,0.789,1.048,1.193,1.213,0.988,0.992,1.04,1.03,1.04,1.014,0.963,0.988,0.998,0.86,0.983,1.003,1.064,1.034,0.907,1.109,1.015,0.986,0.958,1.096,1.126,0.961 +NM_130775,1.021,0.972,1.055,0.997,1.018,0.909,1.089,1.055,1.054,1.153,0.982,0.937,1.088,0.903,1.25,0.989,0.983,1.206,0.839,1.031,0.951,1.09,0.96,0.977,0.899,1.072,1.015,0.865,0.839,0.939,1.096,0.973,0.963,1.155,0.995,0.957,1.039,1.107,1.015,1.08,1.04,1.055,0.996,0.993,1.017,1.104,1.11,0.988,1.071,0.807,0.945,1.089,1.025,1.082 +NM_130776,2.1550000000000002,1.807,1.745,1.96,1.987,2.178,2.003,2.023,1.986,2.05,2.04,2.0069999999999997,2.013,2.121,1.835,2.017,2.1239999999999997,2.18,2.018,2.186,2.2039999999999997,2.0549999999999997,2.042,1.933,1.9739999999999998,1.9869999999999999,1.987,2.1239999999999997,1.787,2.035,2.203,1.833,1.931,1.858,2.121,2.044,1.784,1.971,2.088,2.234,1.928,1.823,1.866,1.9569999999999999,1.945,2.1870000000000003,1.95,2.2190000000000003,1.98,2.034,2.144,2.021,1.9449999999999998,1.715 +NM_130777,0.935,1.313,0.983,0.906,1.177,1.031,0.979,0.948,1.165,1.008,0.949,1.029,1.051,0.996,0.802,1.057,0.953,1.094,0.944,1.093,0.758,1.205,0.926,1.018,0.977,1.078,0.841,1.137,1.034,1.008,1.01,1.17,3.783,0.895,1.066,0.985,0.871,1.041,0.819,1.034,0.954,1.096,0.977,0.897,0.968,0.928,1.045,1.004,1.185,1.097,0.979,1.043,1.079,0.938 +NM_130778,0.803,0.296,1.607,0.739,1.089,1.445,0.394,0.354,0.584,1.887,1.423,0.78,0.48,0.401,1.232,2.221,1.06,1.509,0.617,2.503,0.558,0.655,1.459,1.182,0.399,0.783,1.143,0.669,0.539,1.147,0.773,0.113,0.598,1.042,0.0859,1.822,1.779,1.789,1.572,0.139,1.037,1.466,0.72,0.796,1.57,1.969,1.558,0.863,1.83,1.252,1.736,1.196,0.96,0.59 +NM_130781,0.972,0.577,1.988,0.754,1.195,0.975,0.574,1.289,1.82,1.063,0.771,1.221,1.522,0.827,1.164,1.15,1.636,1.103,2.223,0.795,0.663,0.974,0.812,1.4,0.495,1.121,2.439,1.321,0.387,0.814,1.506,1.625,1.593,1.144,1.888,0.481,0.744,1.078,0.912,1.074,1.619,0.87,0.446,0.441,1.868,0.672,1.094,1.554,0.636,1.943,0.729,0.755,2.091,2.236 +NM_130782,0.886,0.986,1.229,1.105,1.007,0.966,1.092,0.757,1.088,0.979,1.024,0.895,1.076,1.165,0.995,1.153,1.037,1.086,0.875,0.746,0.862,1.008,1.096,0.974,0.955,0.905,1.266,0.872,0.993,1.112,0.833,1.328,1.068,1.032,0.762,1.099,1.067,0.763,1.269,1.741,0.983,0.981,0.904,0.855,0.883,0.99,1.102,0.773,0.888,0.856,0.936,1.341,0.987,1.207 +NM_130783,0.834,1.155,0.842,0.903,0.76,1.03,0.916,0.86,0.749,0.917,1.111,0.976,0.891,0.861,0.752,1.029,0.835,0.825,0.891,0.851,0.919,0.822,1.117,0.829,1.057,0.848,0.9,1.216,1.619,1.529,0.889,2.937,1.17,1.389,0.868,1.19,0.916,1.081,1.399,1.47,1.332,1.782,1.039,0.973,1.063,0.959,1.043,0.833,0.983,0.877,1.26,1.058,0.915,0.839 +NM_130784,1.16,0.98,1.024,1.03,1.155,1.061,0.972,0.916,1.005,1.15,0.995,1.01,0.971,0.969,0.924,1.055,0.968,1.011,1.124,1.092,0.999,0.944,0.998,0.97,0.957,1.021,1.09,1.031,1.201,0.905,0.908,1.216,1.073,1.018,1.096,1.048,0.931,0.887,0.95,0.963,0.89,0.999,1.117,0.933,0.983,1.08,0.964,1.066,0.942,1.05,0.954,1.057,1.094,1.136 +NM_130786,1.061,0.977,1.121,0.822,1.062,1.075,0.937,0.949,0.978,1.079,1.053,1.12,0.942,1.167,0.696,0.902,0.95,1.041,0.75,1.102,1.01,0.987,0.986,0.823,1.205,0.953,0.905,0.912,0.995,1.009,1.069,1.079,0.82,0.864,1.052,1.016,0.924,1.154,0.93,1.133,1.012,0.991,1.088,1.059,1.001,0.984,1.127,0.899,1.023,1.115,0.988,1.165,0.919,0.966 +NM_130787,1.035,0.862,1.027,0.983,0.996,0.921,0.866,0.96,1.0,0.908,0.931,0.975,0.956,0.961,0.95,1.561,0.942,1.0,1.523,1.016,1.128,1.008,1.125,0.928,0.963,1.497,0.98,0.821,0.535,0.989,1.244,1.089,1.665,0.95,1.224,1.115,1.044,0.987,1.615,1.063,0.798,0.984,0.826,1.523,0.937,0.826,0.981,1.436,0.971,1.222,0.954,0.836,1.124,1.116 +NM_130791,1.02,0.775,1.037,1.154,0.933,0.9,0.958,1.141,0.898,1.014,1.298,1.087,0.971,0.963,1.096,1.137,0.931,0.971,0.957,1.018,0.996,1.007,1.206,0.857,0.988,0.983,0.933,1.01,1.277,0.987,1.077,0.972,1.065,1.008,1.076,0.915,1.002,1.012,0.866,1.13,1.046,0.847,0.858,0.829,0.829,0.999,0.81,1.074,1.336,1.123,1.076,1.005,0.824,1.062 +NM_130794,0.978,1.071,0.903,1.081,0.913,0.993,0.932,0.986,0.947,1.012,1.007,0.922,1.069,0.85,0.947,1.036,1.041,1.01,1.242,0.921,0.951,1.036,1.164,0.989,1.057,1.104,1.029,1.006,1.265,1.109,0.908,0.978,0.96,0.888,1.154,0.985,1.118,1.105,0.96,1.007,0.946,1.022,1.122,1.027,0.922,1.107,0.946,1.116,0.97,1.093,1.018,1.096,0.967,0.977 +NM_130795,0.913,0.932,1.22,1.114,0.983,1.006,0.955,0.969,0.862,0.852,0.881,1.092,0.874,1.001,0.975,1.054,0.959,0.914,1.037,1.285,0.987,1.206,1.068,0.939,0.961,1.039,0.962,0.889,1.777,1.03,0.971,0.967,0.938,1.04,1.002,0.938,0.939,0.994,1.029,0.924,1.04,0.872,1.045,1.074,1.137,0.902,0.894,0.897,0.92,0.967,1.038,1.038,1.019,0.929 +NM_130797,1.017,1.088,1.182,1.026,0.992,1.012,1.028,1.035,1.029,0.935,1.038,1.062,1.029,0.948,0.838,0.941,1.061,0.856,0.829,0.827,1.1,0.854,1.109,1.028,0.967,1.082,1.012,1.019,0.911,0.96,0.94,1.012,0.911,0.901,0.962,0.909,1.026,0.976,1.037,1.102,0.992,1.091,1.281,0.973,0.898,0.985,1.053,1.048,0.901,1.048,0.909,0.946,1.057,0.924 +NM_130798,0.525,1.306,1.138,0.576,0.901,2.827,1.552,0.869,0.975,0.683,1.133,1.001,0.773,0.624,1.435,2.73,1.052,1.044,0.527,1.724,0.439,1.138,1.722,1.092,0.537,0.449,0.999,0.718,0.908,1.151,1.141,1.382,1.504,1.491,0.465,0.479,1.408,0.914,1.914,1.196,0.962,1.326,0.752,0.449,0.861,1.313,1.295,0.73,1.745,0.582,1.593,0.896,0.389,1.46 +NM_130801,0.99,1.063,1.056,0.785,0.904,1.043,0.753,0.749,0.847,0.805,0.911,0.807,0.81,0.797,0.86,1.401,0.851,0.887,1.291,0.947,0.822,1.07,1.208,1.013,0.859,0.933,1.373,0.69,1.099,1.259,0.902,1.534,2.228,1.221,0.688,1.164,0.92,0.896,1.254,1.198,0.797,0.985,0.722,1.29,0.903,0.706,0.925,0.951,0.662,1.23,1.042,0.87,1.029,1.263 +NM_130802,0.895,0.932,1.061,1.07,0.981,0.831,0.896,1.064,1.018,0.978,0.912,0.915,1.079,1.242,0.841,1.019,1.092,1.201,1.008,1.288,1.0,1.075,1.059,1.059,0.939,0.827,0.951,0.987,0.834,0.995,1.042,0.885,1.007,0.908,1.124,0.843,0.923,1.164,1.003,0.893,0.854,0.973,1.097,0.848,0.949,1.11,1.15,1.06,1.006,1.061,0.965,1.026,1.113,1.042 +NM_130803,1.005,0.925,1.084,0.931,1.057,0.908,1.124,1.437,0.952,0.953,0.971,0.938,0.998,0.906,1.285,0.984,0.973,1.043,0.973,0.892,1.026,1.06,1.068,0.974,1.042,1.067,0.847,0.883,0.931,0.916,0.975,1.055,0.921,0.891,1.088,0.887,1.092,0.984,1.173,0.956,0.944,1.099,0.96,1.057,0.923,1.134,0.853,1.006,0.977,1.081,1.023,1.011,1.144,1.073 +NM_130806,1.068,0.959,1.099,1.001,1.039,1.194,1.03,0.951,0.97,1.085,1.067,0.994,0.985,0.967,1.097,1.046,0.983,1.019,1.143,0.935,1.049,1.052,1.005,1.122,0.933,1.008,0.966,0.944,1.42,0.988,1.232,0.995,1.034,1.144,0.97,0.988,1.15,1.064,0.961,0.918,0.994,0.991,0.988,1.015,0.949,1.075,1.009,1.069,0.967,0.955,0.92,1.06,0.958,1.132 +NM_130807,0.892,0.836,1.176,0.907,0.825,0.912,0.878,0.861,0.855,0.84,0.96,0.78,0.948,0.834,1.042,1.113,0.995,0.978,1.103,0.868,0.986,0.867,1.12,1.012,0.838,1.067,1.149,0.866,0.769,1.038,0.943,1.21,1.212,1.281,0.795,0.699,0.947,0.923,1.489,1.465,0.919,1.164,0.801,1.017,1.099,0.781,0.803,1.125,0.783,1.066,0.899,0.889,1.158,1.115 +NM_130808,0.998,0.788,1.061,0.985,0.895,0.991,0.937,1.213,0.898,0.873,0.95,1.006,0.862,1.003,1.205,0.855,1.127,0.978,0.812,0.973,1.132,0.95,1.011,1.094,0.996,0.991,1.042,0.857,0.921,1.081,1.197,0.979,1.007,1.073,1.132,1.021,0.981,1.114,0.976,0.996,0.914,1.067,0.931,0.961,0.831,0.945,1.059,0.881,1.073,1.079,1.097,0.916,0.983,0.787 +NM_130809,0.549,1.169,1.237,0.833,0.764,1.332,0.829,0.392,1.046,0.73,1.269,0.513,0.483,0.628,1.23,2.058,0.706,1.282,0.955,1.625,0.412,0.725,1.976,0.73,0.643,0.534,1.359,0.7,0.51,1.464,0.848,1.323,1.226,1.688,0.28,0.615,1.902,0.778,1.472,0.675,0.817,1.802,0.751,0.588,0.869,1.981,0.929,0.637,1.792,0.744,1.67,0.951,0.573,1.611 +NM_130810,0.825,1.05,0.841,1.005,1.038,1.115,0.988,0.805,0.973,0.882,1.229,1.124,0.919,0.967,1.067,1.192,0.874,0.967,0.929,1.158,0.86,1.039,0.984,0.913,1.035,0.92,1.092,1.0,1.032,1.001,0.888,1.303,1.16,0.994,1.016,0.996,1.052,0.967,1.076,0.97,0.799,1.046,0.99,1.089,0.949,0.918,0.999,0.899,1.005,0.937,1.037,1.122,1.001,1.083 +NM_130811,0.968,1.165,1.035,0.957,1.043,1.018,1.127,0.973,0.922,1.166,0.939,1.086,1.117,1.172,1.254,0.875,1.115,1.109,1.003,0.991,0.975,1.104,0.893,0.957,1.066,0.956,0.841,0.988,0.847,0.998,0.945,0.89,1.225,1.143,1.029,1.021,0.911,0.893,0.912,0.913,0.964,1.027,0.942,0.941,0.87,1.088,0.887,0.864,0.971,0.953,1.062,1.006,0.959,0.967 +NM_130830,0.9,0.949,0.949,0.87,1.027,1.019,0.889,1.041,1.115,0.959,0.951,1.096,0.903,0.915,0.934,1.258,0.972,1.085,1.014,1.039,1.117,0.926,0.83,0.928,0.93,1.019,0.946,0.991,0.912,0.962,0.953,1.067,0.98,1.001,1.026,1.071,1.047,0.884,0.889,1.172,1.048,0.982,0.921,1.081,1.034,0.966,0.973,1.0,1.193,1.173,1.0,1.081,1.047,0.981 +NM_130831,0.74,0.937,1.122,0.829,0.848,1.028,0.767,0.596,1.161,0.907,1.186,0.77,0.729,0.869,1.049,1.603,0.818,0.776,1.188,0.944,0.816,0.661,1.097,0.808,0.834,0.829,1.179,0.888,0.697,1.321,0.997,1.251,1.822,1.484,0.631,1.128,0.996,0.808,1.096,0.799,1.003,1.183,0.831,1.383,0.863,1.127,0.832,0.85,1.121,0.79,0.951,0.977,1.343,2.142 +NM_130838,0.728,1.123,1.204,0.637,0.907,1.078,0.608,0.594,1.078,0.966,1.329,0.848,0.618,0.748,1.041,1.583,0.786,0.819,0.966,1.411,0.527,0.984,1.58,0.94,0.63,0.703,1.373,0.951,0.458,1.21,1.011,0.936,1.164,1.253,0.292,0.986,1.26,1.041,1.09,0.752,1.165,1.284,0.758,0.538,0.968,1.566,0.93,0.72,1.223,0.719,1.228,0.834,1.014,1.172 +NM_130839,1.012,1.153,1.002,0.961,0.882,0.974,1.146,1.067,1.068,1.014,0.98,1.039,1.029,1.087,0.9,0.951,1.032,0.913,1.056,1.068,1.021,0.933,1.016,0.867,1.135,0.961,1.026,1.11,1.113,0.981,1.089,1.04,1.135,0.979,0.935,1.042,1.033,0.924,1.034,1.108,1.033,0.966,0.988,1.01,1.005,1.307,1.027,1.059,1.003,1.012,1.016,0.892,0.966,0.844 +NM_130840,2.021,0.752,3.072,1.072,2.817,0.738,0.696,2.255,4.918,2.744,0.68,1.219,1.365,1.452,1.615,1.016,6.931,1.585,3.367,0.808,1.355,3.544,0.656,1.143,0.829,2.0,2.949,4.067,0.624,0.657,3.862,0.841,1.874,0.845,2.798,0.832,0.777,2.286,0.828,0.74,5.906,0.804,0.84,0.735,3.276,0.79,1.374,2.508,0.956,2.62,0.972,1.902,2.451,0.984 +NM_130841,1.105,1.233,0.916,1.075,0.985,1.008,0.873,1.018,1.043,1.029,1.009,0.935,0.91,1.03,0.964,1.14,0.933,1.034,0.897,0.989,1.285,1.04,0.964,0.916,1.103,1.016,1.036,1.084,0.815,1.15,1.0,0.95,1.124,0.998,0.92,0.903,1.043,1.108,0.947,0.967,1.048,0.891,0.766,0.948,1.098,0.924,0.996,1.085,0.911,0.803,1.119,1.066,1.125,0.946 +NM_130843,0.459,2.537,0.57,1.485,0.466,4.255,1.317,0.522,0.518,0.457,2.346,0.454,0.491,0.482,0.948,1.278,0.485,2.232,0.524,3.649,0.545,0.491,5.44,0.501,2.643,0.447,0.493,0.463,1.753,4.893,0.512,1.107,0.693,7.425,0.511,0.851,2.043,0.526,2.128,0.632,0.507,5.644,0.762,1.584,0.592,1.796,0.893,0.482,0.823,0.506,2.252,0.695,0.517,1.284 +NM_130844,1.912,2.089,1.875,1.7160000000000002,1.839,1.934,1.7890000000000001,2.039,2.172,2.074,2.187,2.041,1.924,2.343,2.117,1.654,2.0229999999999997,2.126,1.745,2.158,2.11,2.165,1.7069999999999999,1.9939999999999998,2.014,1.97,2.184,1.883,2.99,2.2439999999999998,1.991,2.117,2.4,2.0549999999999997,2.194,1.975,1.899,2.207,2.067,1.875,1.988,2.071,2.017,2.009,2.074,1.8450000000000002,1.931,1.8250000000000002,1.994,2.0140000000000002,1.955,1.98,1.859,1.8409999999999997 +NM_130846,1.7960000000000003,1.975,1.647,1.9380000000000002,1.744,3.8930000000000002,2.936,1.439,1.661,1.604,2.9669999999999996,1.711,1.617,1.569,2.423,2.5540000000000003,1.7120000000000002,2.039,1.448,2.062,1.446,1.653,2.107,1.659,2.032,1.6829999999999998,1.643,1.7439999999999998,2.083,2.456,1.557,1.9120000000000001,1.7919999999999998,3.12,1.661,2.021,2.61,1.767,2.718,2.238,1.721,2.395,1.635,2.079,1.5699999999999998,2.373,2.213,1.867,2.427,1.826,2.5090000000000003,1.869,1.545,1.694 +NM_130847,1.061,1.05,1.058,1.09,0.953,1.221,1.067,1.016,1.013,1.024,1.035,0.914,0.961,1.074,1.033,1.108,0.871,0.983,1.074,0.976,1.061,1.045,0.915,0.945,0.898,0.934,0.853,0.968,1.218,0.924,1.073,1.026,1.009,0.985,1.07,1.236,0.999,1.046,0.986,0.978,0.885,0.92,0.986,0.948,0.967,1.024,0.952,1.034,0.985,0.915,1.097,1.097,0.9,0.894 +NM_130848,1.144,0.822,1.035,0.886,0.974,0.903,0.852,1.085,1.009,0.918,0.939,1.036,0.969,0.856,1.199,1.069,1.166,1.0,1.18,0.91,0.985,1.01,1.051,1.109,0.956,0.87,1.476,1.071,0.574,1.079,1.095,0.921,0.995,0.999,0.957,0.949,1.004,0.984,1.024,0.912,1.076,1.028,0.721,0.946,1.189,1.016,0.829,0.947,0.916,1.099,1.005,1.055,1.178,1.076 +NM_130849,1.642,2.907,1.595,1.669,1.549,2.6959999999999997,1.508,1.393,1.82,1.813,3.333,1.304,1.5150000000000001,1.252,2.59,4.648,1.522,1.597,1.859,3.011,1.4209999999999998,1.522,2.5,1.9529999999999998,1.6520000000000001,1.7570000000000001,1.742,1.494,1.3250000000000002,2.334,1.778,2.8529999999999998,3.8179999999999996,2.3,1.191,3.645,3.2279999999999998,1.5390000000000001,3.347,6.204000000000001,1.6480000000000001,2.497,3.327,3.686,1.764,3.0309999999999997,3.086,1.471,2.685,1.283,2.593,1.813,1.6179999999999999,1.5710000000000002 +NM_130851,1.471,2.489,1.509,1.787,1.4260000000000002,2.4139999999999997,2.0780000000000003,1.569,1.568,1.4020000000000001,2.174,1.521,1.54,1.3860000000000001,2.098,2.372,1.4929999999999999,1.4609999999999999,1.709,2.137,1.72,1.4420000000000002,2.7560000000000002,1.565,2.1799999999999997,1.5150000000000001,1.448,1.506,2.051,3.8920000000000003,1.433,6.401999999999999,4.479,3.8000000000000003,1.296,2.716,2.1319999999999997,1.629,3.387,2.627,1.649,2.917,1.5739999999999998,10.109,1.501,2.214,1.606,1.5959999999999999,1.73,1.538,2.4370000000000003,1.6,1.8119999999999998,2.839 +NM_130853,1.09,0.986,0.955,1.009,0.98,0.956,0.807,0.916,0.953,1.086,0.95,0.928,0.939,1.105,1.156,0.928,0.981,1.015,1.025,0.829,0.886,1.015,1.083,0.863,0.981,0.942,1.134,0.916,0.832,0.95,1.02,1.043,0.982,1.036,0.973,1.018,1.006,1.127,1.111,1.009,1.092,0.906,0.88,0.937,0.968,0.918,0.913,1.035,1.037,0.924,1.046,0.921,0.939,1.042 +NM_130896,0.931,1.046,0.957,0.993,1.126,0.997,1.078,1.078,0.869,1.01,0.966,1.088,1.1,0.862,1.124,0.963,0.894,1.052,1.048,1.055,0.998,0.931,0.856,0.87,0.977,1.019,1.052,0.989,1.431,0.863,1.134,1.163,0.849,0.997,1.266,1.017,0.854,0.975,1.01,1.008,1.172,0.978,0.958,0.998,0.969,1.066,0.911,1.028,0.901,1.027,0.986,1.076,0.92,1.054 +NM_130897,1.143,0.949,1.15,1.019,1.018,1.0,0.841,0.953,0.923,0.937,0.836,1.183,1.038,0.952,1.027,1.134,0.943,0.921,1.092,0.907,1.077,1.046,0.857,0.957,0.924,1.056,0.86,1.113,0.556,1.028,1.016,0.914,1.727,1.22,0.948,1.007,1.054,1.282,1.024,1.173,1.0,0.949,0.755,0.787,1.097,1.103,1.018,0.988,1.039,0.987,0.883,0.903,1.129,0.99 +NM_130898,0.583,2.064,0.832,1.026,0.591,1.42,0.858,0.417,0.771,0.634,1.364,0.65,0.618,0.56,0.976,1.394,0.581,1.07,0.796,1.219,0.456,0.606,1.374,0.571,1.623,0.727,0.818,0.588,0.478,1.475,0.697,1.903,1.68,2.548,0.353,1.326,1.264,0.732,1.272,0.889,0.685,2.556,0.751,1.819,0.54,0.851,0.743,0.505,0.711,0.65,1.576,0.579,0.621,1.387 +NM_130899,1.005,1.02,1.113,1.013,0.977,1.04,0.882,0.982,0.918,0.882,1.034,1.0,1.049,1.0,0.988,1.098,1.006,0.89,0.95,1.029,0.946,1.088,0.97,0.98,0.946,1.046,0.994,1.08,1.052,0.954,0.909,1.004,1.094,1.073,0.95,1.032,0.876,1.148,0.845,0.918,0.956,1.176,1.178,0.931,0.926,1.008,0.982,0.953,1.035,0.887,1.022,0.936,1.082,0.98 +NM_130900,1.366,0.753,1.928,1.023,1.689,0.937,0.903,1.42,2.246,1.839,0.739,1.014,1.482,1.245,1.558,1.198,1.258,1.633,1.729,0.88,1.264,0.93,0.901,1.44,0.819,1.475,1.328,1.401,0.995,0.839,2.021,0.893,1.572,0.828,1.314,1.108,0.847,1.852,0.899,0.851,1.964,0.93,0.791,0.872,1.743,0.924,1.402,1.107,0.889,1.708,1.0,1.091,1.529,1.044 +NM_130901,0.955,0.897,0.917,1.036,1.123,1.0,1.183,1.206,1.022,0.971,0.971,1.015,1.061,0.943,0.891,0.938,0.893,1.161,0.867,1.109,0.919,1.053,0.986,0.989,1.012,0.901,1.018,1.021,1.493,0.978,1.06,0.972,0.994,1.014,1.012,1.08,0.905,1.081,0.969,1.003,0.872,0.91,1.045,1.073,1.084,1.073,0.836,1.035,0.957,0.988,0.947,0.879,0.956,0.986 +NM_130902,0.868,1.022,1.052,0.974,1.062,1.16,1.036,0.97,1.037,0.981,1.051,1.047,1.046,1.215,1.04,1.265,1.063,0.941,0.936,1.0,0.985,0.985,1.194,0.833,1.027,1.076,0.921,1.01,0.783,0.924,0.943,0.954,1.141,0.87,1.063,0.909,0.994,0.985,1.493,0.995,1.131,0.983,0.884,0.95,1.051,0.931,1.122,1.068,1.101,1.0,0.881,1.076,0.941,1.111 +NM_130906,0.799,1.191,1.516,0.882,0.888,1.683,0.434,0.846,0.938,1.046,1.4,1.68,0.638,0.889,0.932,1.755,0.926,0.842,1.049,1.218,0.369,0.9,1.282,0.906,0.548,0.873,1.521,1.104,0.336,1.374,0.765,1.131,1.7,1.682,0.193,0.465,1.401,0.844,1.035,0.709,1.341,0.686,0.771,1.306,0.847,1.256,0.928,0.698,0.98,0.629,1.217,0.784,0.979,2.143 +NM_131916,0.969,0.864,1.095,0.919,0.977,1.132,0.956,0.903,1.015,0.998,1.045,0.942,0.974,0.859,1.077,0.963,1.025,1.034,0.922,0.83,0.952,1.006,0.991,1.039,1.232,0.833,1.037,1.086,1.154,1.275,1.231,0.959,1.034,1.11,1.117,0.977,0.902,0.748,0.964,1.133,1.021,1.037,1.148,0.922,1.039,0.927,1.004,1.007,1.146,1.019,0.98,0.829,0.94,1.069 +NM_131917,0.746,0.992,1.165,0.637,1.031,0.935,0.556,0.684,1.375,1.169,0.553,1.145,0.8,0.643,0.88,1.262,0.903,0.899,1.288,1.073,0.674,0.998,1.37,1.212,0.584,1.002,1.056,1.026,0.471,0.83,1.069,1.295,3.819,1.166,0.463,0.848,0.665,1.028,1.904,0.815,1.047,0.987,0.652,1.397,1.253,0.674,0.818,0.95,0.79,0.959,0.865,0.731,1.061,1.631 +NM_133168,0.847,0.792,0.989,1.129,1.099,1.188,0.85,1.062,0.807,1.186,0.946,1.103,1.007,0.999,0.746,0.97,0.89,1.138,0.961,0.908,1.001,1.069,1.047,0.971,0.864,1.132,0.801,1.014,0.934,0.858,0.911,1.133,1.1,0.772,1.154,1.028,1.04,1.08,1.091,1.253,1.023,1.006,0.765,0.768,0.937,1.052,1.0,0.855,0.759,1.005,0.896,1.083,1.277,1.109 +NM_133170,0.881,0.896,1.055,0.795,1.039,0.943,1.426,0.875,1.194,1.338,0.922,1.061,0.881,0.898,0.946,1.005,1.018,1.028,0.971,0.92,1.021,0.76,0.997,0.941,0.925,1.097,1.012,0.958,1.102,0.94,1.051,0.97,1.084,0.996,1.08,0.969,0.847,1.051,0.969,1.039,1.064,0.995,1.244,0.922,0.865,0.982,0.974,1.11,1.015,0.976,1.003,1.123,0.89,1.097 +NM_133174,0.99,0.932,1.297,1.134,0.99,1.184,0.808,0.733,1.258,1.051,0.984,0.853,0.775,1.269,1.152,0.915,1.216,1.001,0.975,1.206,0.845,0.735,0.721,1.234,0.787,0.883,1.49,0.839,0.571,1.206,1.002,1.445,1.589,1.296,0.665,0.762,0.912,0.834,0.787,1.261,1.048,0.894,0.848,0.83,0.999,0.876,0.684,0.751,0.847,0.9,1.011,0.931,0.955,1.515 +NM_133178,1.071,1.23,0.932,1.024,0.9,0.881,0.991,0.842,0.874,1.005,0.901,1.025,0.875,0.921,0.858,0.836,1.041,1.004,0.812,1.083,0.794,0.941,0.899,0.965,1.115,0.932,1.119,1.049,0.797,1.059,0.862,1.546,1.22,0.926,0.982,1.022,0.909,0.907,1.091,1.044,0.957,1.091,1.09,1.071,0.994,1.081,0.897,0.991,0.942,0.974,0.899,1.094,0.936,0.986 +NM_133179,1.147,0.921,0.948,0.941,0.944,0.913,1.015,0.966,0.843,0.909,1.023,0.951,0.847,0.911,0.93,0.814,0.927,1.043,1.123,1.126,1.046,1.008,1.121,0.842,1.031,0.949,0.99,0.827,1.067,1.145,0.988,0.934,0.912,0.97,1.006,1.016,1.188,0.941,1.026,1.023,1.092,1.083,1.163,0.975,0.925,0.892,1.06,0.963,1.111,1.066,0.933,0.864,0.897,0.968 +NM_133259,0.807,1.197,0.888,0.856,0.844,0.975,0.71,0.553,0.969,0.931,0.929,0.871,0.664,0.738,0.789,1.12,0.749,0.897,0.875,1.17,0.626,0.664,1.516,0.871,0.906,0.902,0.976,0.871,0.856,1.181,0.807,1.04,1.877,1.245,0.459,1.355,1.071,0.811,1.486,1.444,0.937,1.195,1.081,1.749,1.086,1.051,0.887,0.68,1.448,0.802,1.093,0.85,0.974,2.255 +NM_133262,1.054,0.973,0.882,1.01,1.097,0.91,0.878,0.974,1.034,0.908,1.042,0.956,1.006,1.077,1.192,1.062,1.096,1.051,1.053,0.898,1.087,1.014,1.004,1.035,0.988,0.944,1.011,0.993,1.029,1.078,1.104,0.986,0.996,0.949,0.886,0.948,0.966,0.964,1.072,1.035,0.9,0.927,0.825,0.975,0.973,0.887,1.105,1.0,1.087,1.074,1.223,1.086,1.246,0.923 +NM_133263,0.932,1.038,1.088,0.836,0.986,1.25,0.858,0.936,1.124,0.992,0.958,0.956,0.798,0.991,1.011,1.305,1.001,0.976,1.0,0.96,1.047,1.018,1.126,1.06,1.011,0.753,1.352,0.92,0.791,1.167,1.072,1.047,1.229,1.227,0.84,0.889,0.956,0.914,1.306,0.94,0.845,1.016,1.012,0.893,0.928,1.053,0.87,0.968,1.205,0.911,1.04,0.917,0.855,1.408 +NM_133264,0.892,0.952,1.106,0.728,0.865,1.283,0.739,0.707,0.954,0.873,1.138,0.805,0.66,0.762,0.852,1.261,0.969,1.1,1.41,0.81,0.691,1.107,0.973,1.0,1.037,1.12,1.042,0.767,0.934,1.4,0.871,1.195,2.118,1.351,0.69,0.668,1.194,1.088,1.433,0.678,0.89,1.187,0.815,1.34,0.859,0.873,0.825,1.016,0.923,0.986,0.969,0.937,0.936,0.923 +NM_133265,0.559,2.34,1.428,0.919,0.668,1.3,1.062,0.503,0.623,0.615,1.026,0.528,0.747,0.624,0.751,1.011,0.953,1.24,0.943,1.328,0.543,0.609,1.26,0.553,0.793,0.558,0.59,0.67,0.622,1.674,0.617,1.158,2.391,1.864,0.422,1.176,1.027,0.687,1.69,0.805,0.924,1.81,0.652,1.638,0.629,1.167,0.749,0.56,0.74,1.131,1.441,0.803,0.753,0.892 +NM_133266,1.945,1.9529999999999998,2.226,1.822,1.911,1.931,2.189,2.0629999999999997,1.9729999999999999,1.7429999999999999,1.976,2.2009999999999996,1.991,1.9200000000000002,2.213,2.221,2.1470000000000002,2.0869999999999997,2.106,1.762,1.971,1.907,1.972,2.0220000000000002,2.155,1.9260000000000002,1.74,2.068,2.176,1.98,1.9889999999999999,2.134,2.2430000000000003,1.862,1.9669999999999999,2.013,1.9529999999999998,2.246,2.059,1.865,2.122,1.979,1.939,1.9489999999999998,1.903,1.9569999999999999,1.9,2.113,1.987,2.018,1.755,1.8940000000000001,2.157,2.0229999999999997 +NM_133267,1.233,0.898,1.005,0.969,1.164,1.017,0.893,1.188,0.948,1.056,0.98,0.956,0.943,0.851,0.891,0.929,1.171,1.075,1.048,1.061,0.984,0.999,0.903,0.982,0.925,0.976,0.991,1.017,0.778,0.914,1.084,0.946,1.123,0.951,1.143,1.095,0.96,0.826,1.031,0.994,1.013,1.006,1.293,0.884,1.206,1.095,1.144,1.234,1.072,1.027,1.03,0.931,1.026,0.916 +NM_133280,1.041,1.051,1.023,1.283,0.84,0.912,0.752,1.096,0.873,1.231,0.981,1.024,1.001,1.081,1.118,1.187,0.885,1.122,1.001,1.094,1.077,0.92,0.945,0.925,0.91,0.894,0.826,0.884,0.829,1.025,0.904,0.909,0.905,1.026,0.909,1.039,0.934,1.009,0.844,1.28,0.976,0.819,1.045,1.028,1.071,1.014,0.919,1.054,1.021,1.092,0.898,1.037,1.157,0.935 +NM_133328,0.977,0.965,0.943,0.907,0.91,1.027,0.634,0.799,0.973,0.733,0.84,0.904,0.99,0.841,0.978,1.26,1.079,0.842,1.151,0.985,0.959,0.861,0.903,0.793,0.836,1.071,1.022,0.87,0.7,0.825,1.275,1.151,1.471,1.113,1.319,1.078,0.904,1.059,1.069,1.063,1.147,0.996,1.079,0.926,0.95,0.957,1.005,1.061,0.902,1.035,0.848,0.828,1.067,1.354 +NM_133334,1.039,1.024,1.041,0.904,0.974,1.015,1.019,1.106,1.068,1.068,1.009,1.178,0.997,1.046,1.276,0.924,0.904,0.963,0.968,0.808,1.131,1.043,1.071,1.056,0.986,1.006,1.006,1.07,1.201,0.972,0.978,1.002,0.931,0.833,0.878,0.877,0.897,1.067,0.939,1.021,1.156,0.944,0.932,0.976,1.054,1.129,0.982,1.113,0.927,1.111,0.944,0.79,1.025,1.181 +NM_133336,1.044,0.958,0.963,0.9,0.996,0.882,0.824,0.851,1.08,1.038,0.942,0.943,0.928,0.941,0.929,0.913,0.941,1.118,1.17,1.085,0.969,0.963,1.052,1.081,0.942,0.991,0.967,0.973,0.825,1.043,0.963,1.089,1.166,1.035,0.798,1.019,0.994,1.02,1.015,1.052,0.884,0.982,0.953,1.009,1.024,1.138,0.985,0.991,0.99,0.991,1.146,0.949,0.974,1.007 +NM_133337,0.706,0.726,1.992,0.681,0.769,0.948,0.377,0.306,1.017,0.939,1.282,0.682,0.364,0.527,1.003,0.793,0.856,0.742,1.117,1.413,0.523,0.517,2.191,0.764,0.359,0.783,1.413,0.698,0.307,1.13,0.919,1.41,1.483,0.856,0.194,2.248,0.816,0.821,1.701,0.472,1.0,1.097,0.721,2.535,0.956,1.212,1.018,0.437,1.223,0.653,1.626,1.481,1.327,2.297 +NM_133341,0.898,1.0,0.817,1.076,0.79,1.065,1.097,0.878,0.881,0.978,1.017,0.863,0.91,0.864,1.208,1.032,0.784,0.855,0.877,1.227,0.929,0.835,1.105,0.986,1.132,0.909,0.954,0.802,0.983,1.091,0.873,1.174,1.225,1.074,0.742,0.863,1.13,0.943,1.158,0.931,0.883,1.138,0.888,1.187,0.856,1.116,0.723,0.809,1.055,0.947,1.018,0.892,0.861,1.228 +NM_133343,0.922,0.842,0.93,1.105,1.103,0.965,1.055,0.979,1.012,1.034,0.914,0.894,1.031,0.837,1.039,1.055,0.843,0.998,1.13,1.084,1.015,0.894,1.059,1.0,1.054,0.932,1.223,1.005,1.111,0.985,0.879,1.053,0.954,0.969,1.156,1.04,0.977,0.928,0.952,0.931,1.024,1.007,0.986,1.012,1.0,1.113,1.09,0.992,1.018,1.003,0.974,0.929,1.019,1.051 +NM_133367,0.669,1.968,0.225,1.003,1.064,3.08,1.822,0.752,1.463,0.303,1.455,0.387,0.323,0.72,1.437,1.982,0.184,2.132,0.642,2.142,0.254,1.401,1.797,0.828,0.745,0.776,0.17,1.085,1.273,2.58,0.944,0.533,0.735,3.067,0.169,0.8,2.195,0.843,1.715,0.364,0.494,2.15,0.856,0.753,0.241,1.471,0.565,0.687,1.573,0.191,1.643,0.305,0.252,0.897 +NM_133368,0.632,1.161,1.21,0.618,0.724,1.323,0.864,0.499,0.727,0.772,1.296,0.834,0.595,0.612,0.983,1.814,0.708,1.291,1.036,1.224,0.483,0.78,1.618,0.856,0.757,0.698,1.1,0.716,0.63,1.529,0.693,1.175,1.843,1.15,0.283,0.737,1.871,0.732,1.359,1.056,0.856,1.3,0.973,1.112,0.829,1.338,0.969,0.45,1.225,0.655,1.293,0.954,0.859,1.9 +NM_133370,0.718,1.039,1.304,0.722,0.859,1.05,0.553,0.562,1.458,0.875,0.929,0.912,0.648,0.905,1.006,1.21,0.842,0.789,1.252,0.835,0.774,0.91,1.097,1.108,0.595,0.972,1.689,0.995,0.314,1.089,1.125,1.217,1.957,1.341,1.385,0.825,0.885,1.02,1.243,1.258,1.297,1.108,0.534,1.102,1.041,0.722,0.884,0.939,0.812,0.795,0.872,0.733,0.94,1.37 +NM_133371,0.919,1.093,0.909,1.064,0.965,0.962,1.023,0.878,1.009,0.913,1.028,1.046,0.927,1.033,1.103,0.942,0.928,1.0,1.05,0.865,0.861,1.039,0.981,0.965,1.085,1.062,0.874,1.015,0.975,0.983,1.067,1.208,1.009,1.257,1.04,0.967,1.088,1.013,1.026,0.913,0.909,1.061,1.105,0.955,0.987,0.881,0.826,0.911,1.083,0.86,0.829,1.019,1.02,0.97 +NM_133375,0.726,1.104,1.119,0.661,1.075,1.091,0.727,0.795,1.254,0.938,0.72,1.168,0.78,0.759,0.875,1.244,1.003,0.918,0.998,1.155,0.647,0.737,1.416,1.099,0.689,0.915,1.302,1.161,0.715,1.135,0.939,1.33,1.469,1.314,0.564,0.985,0.826,0.935,0.974,0.776,1.294,1.021,0.725,0.74,0.921,0.852,0.866,0.785,0.862,0.768,0.962,0.762,0.878,1.73 +NM_133378,0.947,1.115,0.995,1.058,0.936,1.03,1.035,1.137,0.911,1.086,1.107,1.098,1.151,1.035,1.048,0.94,0.989,1.041,1.167,1.025,0.984,1.004,1.12,0.989,0.951,1.124,0.916,0.937,1.189,1.013,1.018,1.011,0.877,0.998,1.065,0.952,0.989,1.012,0.94,0.907,0.941,1.072,1.045,1.085,0.992,1.252,1.13,1.067,0.956,0.888,0.995,0.993,1.073,1.083 +NM_133379,2.104,1.9929999999999999,1.992,1.934,2.216,1.869,1.8729999999999998,2.3289999999999997,2.026,2.068,1.967,2.068,1.85,1.863,2.0229999999999997,1.725,2.013,1.9289999999999998,1.847,1.852,2.138,1.914,1.976,1.9460000000000002,1.978,1.9729999999999999,2.0140000000000002,2.076,2.205,2.05,1.9220000000000002,1.947,2.134,1.979,1.92,1.88,2.107,2.059,1.913,1.979,2.015,2.141,1.829,1.8719999999999999,1.996,2.116,1.892,2.056,2.031,2.003,2.059,1.974,1.931,1.95 +NM_133430,1.139,1.004,1.034,0.89,0.966,1.058,0.958,0.876,1.048,1.113,1.022,1.036,1.005,0.853,0.968,1.095,0.963,0.845,0.853,0.902,0.976,0.878,0.991,1.024,0.93,0.886,1.072,0.95,0.681,0.905,0.951,1.035,0.973,0.896,0.891,1.066,1.0,1.087,1.294,0.978,1.048,0.991,0.879,1.045,0.995,0.934,0.962,0.914,0.967,1.014,0.957,0.927,0.939,1.013 +NM_133431,0.924,0.862,0.951,1.011,0.859,1.052,1.027,0.916,0.958,0.864,0.978,1.134,0.967,0.999,0.972,0.826,0.88,1.128,0.841,1.085,1.027,1.081,1.005,0.935,1.066,1.049,0.856,1.024,0.83,1.008,1.081,1.018,1.037,1.035,1.017,0.937,0.987,0.953,1.064,0.852,1.037,1.005,0.73,0.973,0.953,0.975,1.002,0.966,0.968,1.018,1.019,0.96,0.93,1.05 +NM_133432,0.932,1.153,0.936,0.895,1.102,0.965,1.083,0.951,1.141,1.165,1.043,1.025,0.856,0.895,0.921,0.946,1.05,0.926,0.878,1.014,1.122,1.049,0.984,1.097,1.05,0.964,0.856,1.065,1.056,1.104,1.004,0.963,0.913,1.025,1.038,0.908,0.945,1.018,1.152,0.854,1.111,1.117,0.827,1.083,1.07,0.95,1.091,0.999,0.947,1.132,0.91,1.075,1.11,1.089 +NM_133433,0.807,1.067,1.181,0.881,1.005,1.09,0.84,0.84,1.027,0.998,0.928,1.07,0.978,0.851,0.81,1.107,0.955,0.986,0.766,1.116,0.728,1.139,1.011,1.108,0.794,0.794,1.237,0.911,0.79,1.113,1.157,1.347,2.239,0.94,0.875,0.814,0.898,1.204,1.084,0.892,1.075,1.105,0.791,0.837,0.972,1.041,0.913,0.94,1.105,0.971,1.053,1.031,0.788,1.322 +NM_133436,1.104,1.024,1.03,0.978,1.008,1.047,0.934,0.823,1.034,0.974,1.157,1.015,1.049,0.912,0.877,1.011,1.04,1.081,1.001,0.945,1.031,1.04,1.022,1.198,1.124,0.985,1.127,1.027,1.044,0.933,1.212,0.847,0.976,0.851,1.086,0.869,0.966,1.03,0.947,0.966,1.198,0.952,0.912,0.978,0.926,1.029,0.921,1.144,0.999,1.131,0.967,1.094,0.974,1.143 +NM_133439,1.847,2.349,2.092,1.9929999999999999,2.0389999999999997,1.865,1.9,2.053,2.173,2.098,1.8579999999999999,1.9709999999999999,2.005,2.167,1.691,2.106,1.939,2.03,1.918,2.076,1.812,1.914,2.153,2.1529999999999996,1.935,1.847,1.895,2.208,1.96,1.9929999999999999,2.056,2.168,2.5620000000000003,1.9129999999999998,2.0789999999999997,1.934,1.924,2.08,2.101,1.95,2.057,1.846,1.8159999999999998,1.879,1.975,2.0999999999999996,2.186,2.218,2.006,1.983,1.962,2.06,2.1189999999999998,1.9249999999999998 +NM_133443,1.362,1.469,2.366,0.718,1.151,0.831,0.636,0.558,2.181,1.074,0.594,0.819,0.719,1.408,0.965,0.591,1.939,0.757,1.214,0.859,0.832,1.132,0.569,1.147,1.421,1.352,2.024,1.381,0.471,1.635,1.396,0.976,1.271,1.152,0.581,0.515,0.806,1.014,0.52,0.749,1.924,1.051,0.497,0.741,1.304,0.589,1.3,1.257,0.651,1.288,0.699,0.534,1.07,1.008 +NM_133445,1.113,0.985,0.97,1.153,0.958,1.167,0.89,1.041,1.018,1.082,0.959,1.154,0.953,0.928,1.032,0.941,1.212,0.999,0.978,1.049,0.934,1.026,0.969,0.999,0.982,0.915,1.05,1.058,0.863,1.005,1.016,1.028,0.942,1.034,1.035,0.852,1.218,1.071,0.98,1.101,1.0,1.07,0.962,0.893,0.988,0.87,0.944,1.087,0.99,0.946,0.956,1.003,0.998,1.224 +NM_133446,0.992,1.068,1.007,1.227,1.045,0.963,0.97,1.089,1.333,0.72,0.747,0.969,0.891,0.954,0.855,0.945,0.871,0.868,0.979,1.054,0.896,1.245,0.95,1.016,0.99,0.964,1.083,0.897,0.843,1.157,1.173,1.264,1.24,1.055,1.907,1.174,0.974,1.215,0.959,1.128,0.969,1.053,1.001,1.21,0.854,1.032,0.982,0.979,1.036,0.94,0.956,0.953,1.089,1.493 +NM_133448,0.951,1.027,1.024,0.984,1.057,1.063,0.872,1.098,0.994,1.025,1.125,0.886,1.127,1.112,1.194,1.115,0.975,1.109,0.982,0.908,0.9,1.103,0.993,0.935,0.966,0.952,1.182,0.905,1.111,1.055,1.019,1.016,1.465,1.097,0.952,1.129,0.967,1.016,0.977,0.874,0.993,1.05,0.891,1.047,0.868,0.924,0.966,1.092,1.0,0.951,1.04,1.002,1.068,1.092 +NM_133450,0.894,1.029,1.044,1.007,0.947,1.122,0.757,0.802,1.075,1.074,0.99,1.014,0.888,0.796,1.007,0.962,0.986,0.988,0.872,0.95,0.98,0.94,0.918,1.012,1.045,0.969,0.946,0.966,0.754,0.986,0.959,1.28,1.311,1.19,0.848,1.008,0.934,1.091,0.956,1.102,1.104,1.015,0.957,1.026,0.826,1.021,1.104,0.995,1.057,0.899,1.058,0.934,0.946,1.014 +NM_133452,0.837,0.934,0.899,0.746,0.846,0.916,0.768,0.751,0.885,0.857,1.063,0.903,0.709,0.717,0.995,1.401,0.894,0.922,1.086,0.947,0.759,0.867,1.593,0.856,0.9,0.912,1.122,0.666,1.008,0.967,0.739,1.16,1.478,1.049,0.774,1.265,0.986,0.774,1.527,1.205,0.772,1.241,1.052,1.543,0.768,1.085,0.785,0.815,1.204,1.005,1.2,1.177,0.925,1.249 +NM_133455,0.513,1.401,0.552,0.675,0.668,0.998,1.267,0.514,0.619,0.535,0.838,0.562,0.558,0.55,0.968,1.002,0.511,0.73,0.567,0.992,0.521,0.608,1.836,0.527,1.451,0.481,0.557,0.526,0.65,2.622,0.577,2.276,1.786,1.996,0.532,0.773,1.162,0.625,2.168,0.706,0.556,1.526,1.289,0.912,0.568,1.582,0.794,0.687,0.645,0.552,1.106,1.074,0.505,1.745 +NM_133456,0.904,1.095,0.883,0.977,0.939,1.073,1.01,0.887,0.864,0.877,1.247,1.0,0.868,0.923,1.156,1.016,0.929,0.948,0.982,1.098,0.921,0.941,1.111,0.951,1.087,0.863,0.871,0.95,0.944,1.144,0.848,1.246,1.014,1.172,0.816,0.9,1.129,0.807,1.299,0.937,0.954,0.979,1.105,0.945,0.969,1.178,0.916,0.899,0.995,0.923,1.007,1.147,0.983,1.023 +NM_133457,0.97,0.998,0.871,1.032,1.03,0.995,0.979,0.967,1.078,1.03,1.098,0.903,0.873,0.815,0.81,0.927,1.035,1.08,0.834,1.011,1.04,1.013,0.91,0.999,1.09,0.985,1.094,0.985,1.048,1.153,0.867,1.149,0.899,0.92,1.008,1.056,0.98,1.013,1.08,0.993,1.056,0.899,0.96,0.991,1.001,0.978,1.097,1.09,1.06,0.944,0.877,1.039,0.914,1.271 +NM_133462,0.974,0.948,1.255,0.804,0.882,1.166,1.03,0.923,1.045,0.801,1.056,0.867,0.986,0.918,1.076,1.336,1.005,0.969,0.95,1.114,0.993,1.042,1.057,1.005,0.837,0.937,0.996,0.958,0.951,1.079,1.124,1.35,0.954,1.135,0.75,0.945,1.103,1.036,1.047,1.022,0.948,1.208,0.941,0.977,1.051,1.03,1.079,0.805,1.011,0.78,1.22,0.915,0.901,0.876 +NM_133467,1.765,0.839,2.166,0.876,2.165,0.467,0.326,0.995,3.545,1.952,0.357,3.395,1.005,2.346,1.821,0.75,1.31,0.89,3.024,0.756,1.655,1.842,0.573,2.531,0.432,2.025,1.108,3.3,0.0944,0.485,2.591,1.048,1.897,0.875,0.136,0.403,0.35,1.975,0.413,0.559,4.721,0.991,0.456,1.978,2.995,0.238,1.416,2.075,0.315,1.316,0.635,1.102,1.775,3.106 +NM_133468,1.057,1.009,0.998,0.952,0.96,1.096,1.206,1.094,1.363,0.95,1.005,1.09,1.175,0.966,0.891,0.94,0.948,0.969,1.149,1.077,0.957,0.88,0.935,0.956,1.119,0.998,0.953,0.988,1.15,1.018,0.822,0.896,1.086,1.06,0.852,0.97,1.0,1.06,0.988,1.011,0.949,1.052,1.211,1.045,1.116,1.124,0.959,1.035,0.914,1.067,0.99,0.931,0.983,0.92 +NM_133476,0.924,1.073,1.04,0.89,0.931,1.332,0.692,0.741,0.899,0.87,1.012,0.885,0.904,0.747,0.846,0.964,1.0,0.936,0.979,0.996,0.788,1.006,1.072,1.051,0.93,0.867,1.178,0.761,0.879,1.142,0.821,1.177,1.862,1.148,0.697,1.071,1.008,0.883,1.306,1.282,0.883,1.019,0.751,1.021,0.92,0.984,0.969,0.991,0.971,0.914,0.985,1.013,0.852,1.182 +NM_133481,0.966,1.142,0.923,1.129,0.715,1.385,0.618,0.651,0.843,0.937,1.305,0.727,0.854,0.732,0.86,1.352,1.114,0.825,1.149,0.743,0.949,1.025,0.91,0.999,1.033,1.203,1.022,0.794,0.906,1.509,0.759,1.166,0.917,1.564,0.552,0.728,1.028,0.929,2.231,0.778,0.815,1.243,0.811,1.52,0.938,0.887,0.936,1.092,0.877,1.007,0.964,0.855,1.006,0.938 +NM_133482,0.949,1.067,0.902,0.971,1.248,0.944,0.959,1.139,1.058,0.865,0.912,0.893,0.946,1.056,1.083,1.19,0.997,0.948,1.006,0.827,1.129,0.857,0.979,0.977,1.057,0.968,1.239,1.016,1.256,1.106,0.942,0.886,1.018,0.996,0.842,1.037,1.03,1.109,1.0,0.934,1.046,0.896,1.057,0.952,0.981,1.013,1.087,0.901,0.897,0.935,1.057,0.848,0.961,0.895 +NM_133483,2.088,2.161,1.93,2.041,1.941,2.323,1.9569999999999999,1.891,1.7080000000000002,1.883,1.891,2.006,1.931,1.586,1.8210000000000002,2.114,2.051,1.792,1.811,2.068,1.839,1.759,2.0549999999999997,1.867,1.999,1.852,2.003,2.079,1.7530000000000001,2.1879999999999997,2.314,3.2220000000000004,1.964,2.518,1.705,1.884,1.998,2.172,2.074,2.2880000000000003,2.161,2.383,2.057,2.024,1.853,2.114,2.02,2.041,2.226,1.9740000000000002,2.149,2.212,2.037,1.9939999999999998 +NM_133484,1.917,1.6560000000000001,2.146,1.704,2.158,2.291,1.831,1.72,2.167,2.034,2.1020000000000003,2.3970000000000002,1.851,1.87,1.936,2.58,2.308,1.986,2.291,1.9529999999999998,1.568,2.147,2.187,2.557,1.634,1.721,2.5949999999999998,2.154,1.466,1.7839999999999998,2.11,1.926,2.045,2.053,1.548,1.625,1.976,2.058,1.9619999999999997,2.066,2.21,1.8159999999999998,1.6560000000000001,1.6829999999999998,2.106,1.887,1.98,1.986,2.29,1.8359999999999999,2.0860000000000003,1.955,1.9180000000000001,2.827 +NM_133486,2.0149999999999997,1.946,1.9569999999999999,2.029,2.225,2.09,2.023,2.055,1.851,1.9889999999999999,1.8599999999999999,2.1319999999999997,1.9740000000000002,1.9180000000000001,1.895,2.091,1.8519999999999999,1.843,1.857,2.246,1.817,2.186,1.853,2.06,2.094,2.051,2.034,2.0869999999999997,1.983,2.274,2.186,1.916,2.008,1.7530000000000001,2.063,1.8170000000000002,1.8119999999999998,1.959,2.37,1.8809999999999998,2.089,1.806,1.9689999999999999,2.601,2.128,2.105,2.118,2.012,1.901,2.1769999999999996,2.0149999999999997,1.943,2.07,1.7069999999999999 +NM_133490,0.949,1.061,0.991,1.007,0.986,0.997,1.057,0.938,1.159,1.119,0.987,1.07,1.071,1.133,1.212,0.812,1.077,1.124,0.97,0.97,0.826,1.122,1.003,0.98,0.991,0.955,1.0,1.037,0.898,1.006,0.868,1.063,1.014,0.875,1.088,1.093,1.054,0.948,0.968,0.95,1.028,1.071,1.064,0.972,1.09,0.951,0.964,1.035,1.111,0.933,0.925,1.086,1.059,0.916 +NM_133491,0.568,0.968,1.283,0.762,0.803,1.542,0.569,0.68,1.121,0.998,1.159,0.883,0.814,0.675,1.057,2.008,0.852,0.869,1.024,1.209,0.634,1.01,1.602,0.985,0.654,0.664,1.099,0.743,0.578,1.189,0.866,1.008,1.644,1.397,0.356,0.807,1.438,0.983,0.873,0.867,0.958,1.485,0.993,0.809,0.722,1.013,1.321,0.779,1.002,0.702,1.054,0.625,0.858,1.24 +NM_133493,1.117,0.953,1.515,0.945,1.176,0.85,0.889,1.014,1.151,1.232,0.97,1.067,0.895,1.239,1.142,0.942,1.05,1.094,1.264,0.9,0.9,1.118,1.065,1.034,0.827,0.92,1.277,1.102,0.843,0.869,1.117,0.963,1.235,0.978,0.887,1.323,0.834,1.334,0.941,1.005,1.238,0.902,0.853,1.443,1.388,0.791,1.303,1.083,0.881,1.288,0.912,1.035,1.293,1.105 +NM_133494,1.025,0.924,1.129,0.808,0.914,1.129,0.96,1.495,1.166,0.863,0.988,1.062,0.885,0.995,1.022,1.061,0.915,0.957,1.011,0.848,0.887,1.003,0.879,1.04,0.987,1.067,1.094,1.06,0.698,1.07,1.003,1.031,0.944,0.968,0.914,1.001,0.959,1.053,1.178,1.022,1.012,0.985,1.167,0.996,1.086,0.867,0.976,1.031,0.966,0.96,1.079,0.864,0.909,1.143 +NM_133496,0.838,1.109,0.933,0.927,0.798,1.127,0.872,0.777,1.165,0.955,1.302,0.881,0.7,0.838,1.238,1.283,0.886,1.05,1.147,1.076,0.771,0.87,1.257,0.895,0.926,0.839,0.968,0.957,0.742,1.185,0.924,0.953,1.461,1.256,0.736,0.931,1.25,0.824,1.258,1.065,0.874,1.137,0.868,0.938,0.856,1.204,1.1,0.922,1.163,0.85,1.278,1.057,1.061,1.339 +NM_133497,0.905,1.141,0.982,1.015,0.881,0.964,0.804,0.987,0.994,0.997,0.882,1.126,1.04,1.015,1.046,0.902,1.074,1.003,0.918,1.08,0.967,0.909,1.052,1.051,0.929,1.032,1.052,1.11,0.688,0.96,0.954,1.132,1.225,0.794,1.008,1.082,0.992,1.095,0.926,0.981,0.926,0.834,1.009,0.965,1.109,1.276,0.899,0.983,0.964,1.047,1.066,0.946,0.965,1.006 +NM_133498,1.04,0.852,0.929,1.034,1.076,0.93,0.8,0.797,0.958,1.15,0.821,1.037,1.03,0.902,0.987,0.901,1.053,0.931,1.045,0.918,1.005,0.927,0.892,0.948,0.94,1.036,1.007,0.894,1.117,1.135,1.065,0.991,1.042,1.051,1.127,1.017,0.995,1.119,0.927,1.025,1.029,0.833,1.133,0.897,1.171,0.931,1.088,1.033,1.011,0.996,1.036,0.981,1.024,0.935 +NM_133499,0.82,0.99,1.005,0.986,1.013,0.982,1.354,0.86,1.05,0.93,1.06,0.861,1.009,1.079,1.119,1.096,1.11,1.006,1.005,0.981,1.092,0.986,0.866,0.816,0.769,1.054,1.07,0.868,0.955,0.998,1.003,0.89,0.984,0.93,0.868,0.965,0.966,1.043,1.021,0.857,0.857,0.996,1.144,1.035,1.003,1.026,0.952,1.091,1.048,1.005,0.935,0.971,1.157,0.962 +NM_133502,1.074,0.891,0.985,0.907,1.05,0.876,0.936,0.89,0.941,0.95,1.022,0.958,1.004,1.266,0.885,1.03,1.066,0.996,1.166,1.062,1.209,0.973,0.889,0.974,1.007,1.133,1.011,0.991,0.905,1.09,1.01,1.141,0.929,0.975,0.934,1.135,0.987,1.046,1.011,0.984,0.937,1.084,0.783,1.18,1.023,1.025,0.958,0.958,1.021,1.112,0.922,0.927,0.951,0.956 +NM_133507,0.267,1.933,0.534,0.771,0.252,1.803,1.178,0.241,0.255,0.239,1.131,0.454,0.165,0.17,1.215,1.331,0.125,0.312,0.197,1.558,0.316,0.181,1.896,0.479,1.1,0.238,0.17,0.626,0.242,3.324,0.25,10.95,2.088,4.057,0.0844,0.639,0.852,0.729,1.991,2.452,0.846,3.488,0.855,0.462,0.351,1.035,0.683,0.185,0.275,0.237,1.442,1.875,0.558,1.893 +NM_133510,0.982,1.053,0.93,0.833,0.888,0.974,0.931,0.882,0.861,0.971,0.984,0.939,1.086,1.016,1.066,1.014,0.99,1.179,0.985,0.975,1.035,0.951,0.893,0.992,0.966,0.957,0.899,0.983,1.045,0.923,0.926,1.037,1.083,1.037,0.87,0.927,1.148,1.056,1.129,1.098,0.923,1.114,1.0,1.214,0.957,0.975,0.912,0.952,1.071,1.048,0.826,0.858,1.061,0.955 +NM_133625,1.9939999999999998,2.039,2.0919999999999996,1.982,2.117,1.9889999999999999,1.818,1.869,1.9569999999999999,2.1399999999999997,2.066,1.814,2.029,1.962,2.13,1.9699999999999998,2.27,2.188,1.801,1.888,2.082,2.13,2.013,2.136,2.1399999999999997,1.773,2.146,2.153,1.496,1.99,2.161,1.914,1.9,1.976,2.019,2.007,1.867,1.9899999999999998,2.0359999999999996,2.171,1.892,1.74,1.603,2.036,1.913,2.092,1.983,1.8719999999999999,2.231,2.128,1.936,1.971,2.206,1.932 +NM_133629,0.912,1.205,0.962,0.947,1.109,1.18,0.937,0.865,0.957,0.928,0.868,1.105,0.923,1.089,1.095,0.962,0.898,0.899,0.884,0.996,0.914,0.962,1.098,1.129,0.762,0.939,1.061,1.052,1.105,0.969,0.8,1.374,1.254,1.112,0.869,0.989,0.999,0.912,1.07,1.063,1.14,1.05,0.9,1.15,0.92,1.133,1.005,0.866,1.047,0.95,0.948,1.032,0.808,1.471 +NM_133631,0.917,0.897,1.02,0.901,1.078,1.096,0.818,0.91,1.161,1.044,1.032,1.128,0.991,0.949,0.906,0.933,0.9,0.981,1.024,1.152,1.024,0.841,0.927,1.092,1.071,1.097,1.075,1.024,0.819,0.972,1.147,1.084,1.006,0.905,0.825,1.053,1.003,1.085,1.041,0.941,0.902,1.032,0.841,1.07,0.98,1.039,1.021,0.943,0.912,1.005,1.102,0.981,1.037,0.944 +NM_133633,0.876,1.11,0.804,1.043,1.062,0.88,0.924,0.963,0.916,0.9,1.031,0.98,1.002,1.001,1.196,0.812,0.939,1.065,1.093,0.814,1.015,1.034,1.076,0.99,1.078,0.97,0.958,1.081,1.238,0.912,1.078,0.945,0.975,0.957,0.97,0.982,1.123,1.013,0.989,0.959,0.997,0.974,1.102,0.984,0.961,1.249,0.95,1.013,0.919,1.053,0.919,1.082,1.086,1.099 +NM_133635,0.774,1.277,0.879,1.11,0.718,1.073,0.893,0.824,0.819,0.811,0.942,0.662,0.728,0.763,0.789,0.947,0.838,1.074,0.797,1.017,0.708,0.788,1.395,0.797,0.909,0.761,0.936,0.812,0.783,1.636,0.951,1.941,1.226,1.437,0.688,1.048,1.174,0.815,1.202,1.61,0.761,1.132,0.934,1.212,0.871,0.806,0.89,0.709,0.772,0.701,0.988,0.913,0.852,1.877 +NM_133636,0.94,1.082,1.23,0.975,0.994,0.955,0.792,0.815,1.176,0.875,1.022,0.98,0.8,1.08,1.041,0.953,0.908,0.967,1.042,1.027,0.819,1.087,0.862,1.038,0.886,0.993,1.439,0.947,0.975,1.102,1.017,1.468,1.38,1.182,0.764,0.831,1.072,1.149,1.028,1.104,1.104,1.054,0.744,0.844,1.027,0.844,0.964,0.924,0.775,0.964,0.881,0.816,0.94,1.301 +NM_133637,0.834,1.133,0.955,1.068,0.91,1.564,0.823,0.754,0.894,0.898,1.188,0.844,0.895,0.891,1.132,1.849,1.083,1.062,1.097,1.091,0.846,0.969,1.285,1.017,0.879,0.775,1.027,0.928,1.007,1.196,0.99,0.754,1.014,1.243,0.88,1.056,1.556,0.852,1.151,0.88,0.957,1.647,1.27,0.853,0.898,1.525,1.027,0.9,1.543,1.064,1.339,0.838,0.973,0.768 +NM_133638,0.931,0.882,0.916,1.034,1.043,1.042,0.865,0.929,0.99,1.066,1.122,1.063,0.946,1.042,1.17,1.078,0.981,0.968,0.994,1.078,1.054,0.967,1.069,0.886,1.002,0.936,0.957,1.045,0.884,0.936,0.962,0.902,1.037,1.001,0.992,1.043,1.003,1.002,0.925,1.145,1.055,0.873,0.894,1.16,0.95,1.068,0.914,1.103,0.769,0.956,1.108,1.001,1.082,0.937 +NM_133639,2.021,0.907,1.983,1.16,1.754,0.889,0.855,1.06,2.132,1.565,0.865,1.285,1.409,1.897,1.204,0.947,2.275,1.086,2.354,0.859,1.545,1.271,0.886,2.168,0.783,2.003,2.224,1.685,0.835,0.811,1.694,0.894,1.26,0.831,0.925,0.839,0.71,1.801,0.858,0.819,2.522,0.872,0.934,0.848,1.668,0.97,1.47,1.49,0.818,1.822,0.936,1.005,1.36,1.023 +NM_133640,0.631,1.157,1.026,0.566,0.858,1.218,0.729,0.391,1.104,1.055,0.745,0.62,0.456,0.493,0.921,1.086,0.821,0.787,0.748,1.099,0.421,0.725,1.39,1.144,0.625,0.671,1.228,0.772,0.675,1.765,0.794,2.242,1.987,1.366,0.31,1.205,0.982,0.793,1.486,1.348,1.195,1.288,0.684,1.259,0.905,0.924,0.968,0.598,0.989,0.622,1.058,1.053,0.585,1.447 +NM_133642,0.439,1.574,0.644,0.991,0.468,1.954,0.881,0.55,0.479,0.512,1.568,0.565,0.51,0.395,1.079,1.92,0.467,1.098,0.617,2.19,0.481,0.389,1.81,0.556,1.009,0.422,0.579,0.505,0.733,1.997,0.476,1.481,0.939,2.1,0.345,0.971,1.387,0.567,1.208,0.733,0.777,2.014,0.973,1.059,0.462,1.353,0.93,0.564,0.921,0.512,1.574,0.868,0.538,0.768 +NM_133644,1.008,0.959,0.872,1.084,0.975,1.096,1.036,0.999,0.864,0.887,0.959,0.933,0.963,0.938,0.958,1.004,1.053,0.922,1.001,0.899,1.013,1.044,0.945,0.97,1.126,1.095,1.004,0.892,0.865,1.011,1.021,0.984,1.066,1.105,1.072,1.114,0.985,0.942,1.142,0.957,0.989,1.031,0.961,1.078,1.077,0.943,0.943,1.057,1.021,1.116,1.034,1.097,0.932,1.142 +NM_133645,0.971,1.01,0.856,0.945,0.933,0.971,0.878,0.937,0.874,1.183,0.985,1.029,0.892,1.059,1.032,0.999,0.963,0.967,0.97,0.95,1.065,1.077,1.08,0.986,0.916,1.031,1.215,1.006,1.02,0.965,1.086,1.085,0.981,0.944,0.973,0.983,1.016,1.177,1.04,0.91,0.978,1.036,1.007,0.944,0.953,1.14,0.904,1.001,0.971,0.984,1.024,1.027,1.0,0.986 +NM_133646,0.671,1.111,1.104,0.811,0.91,0.972,0.919,0.661,0.838,1.001,1.347,0.798,0.709,0.738,1.052,1.3,0.584,0.886,0.726,0.853,0.923,0.704,2.546,0.944,0.758,0.661,1.007,1.45,0.687,1.448,0.822,2.428,3.666,2.052,0.75,0.968,0.874,0.898,1.321,1.393,1.562,2.561,0.937,1.424,0.947,1.023,0.98,0.756,0.745,0.836,1.205,1.01,1.044,1.649 +NM_133650,1.811,2.0309999999999997,2.529,1.9949999999999999,2.039,2.016,1.9129999999999998,1.7850000000000001,1.783,1.9,2.06,1.633,1.966,2.153,2.025,1.7999999999999998,2.007,1.903,1.9820000000000002,1.907,1.827,1.975,2.199,1.9769999999999999,2.162,1.952,1.9340000000000002,1.8969999999999998,1.6869999999999998,2.3890000000000002,1.711,4.213,2.326,2.529,1.884,1.6110000000000002,1.982,1.979,2.1790000000000003,2.094,2.1239999999999997,2.722,1.951,1.8780000000000001,1.7269999999999999,1.9420000000000002,1.8559999999999999,1.947,1.885,1.799,2.1719999999999997,1.901,2.3289999999999997,2.3899999999999997 +NM_134259,0.986,1.022,0.978,1.01,0.915,1.009,0.958,0.952,1.185,1.138,0.93,0.999,1.134,1.15,0.94,1.128,1.133,1.063,1.033,0.974,0.929,1.081,0.989,1.034,0.937,1.065,0.985,1.061,1.09,0.966,1.013,0.988,0.917,1.016,1.053,0.902,1.014,0.882,0.941,1.027,0.91,0.949,0.928,0.864,1.017,1.019,0.904,0.992,0.967,0.925,1.014,0.906,1.024,1.082 +NM_134261,1.088,1.002,0.964,0.901,0.917,0.967,0.849,0.98,0.96,0.902,0.95,1.017,1.021,0.912,0.992,1.2,0.938,0.992,0.945,0.873,1.001,1.027,0.982,1.001,0.953,1.01,1.076,0.911,1.039,1.013,1.128,1.111,1.004,1.071,0.958,0.954,1.073,0.958,0.984,1.047,1.041,0.937,1.093,0.921,1.021,0.882,0.935,0.904,1.019,0.957,1.142,0.931,0.999,1.04 +NM_134262,1.932,0.844,2.206,1.219,3.207,0.953,0.935,5.395,2.695,2.047,0.855,2.609,2.038,1.731,2.267,1.141,1.692,1.465,2.739,0.704,1.352,3.867,0.805,2.091,0.844,3.041,1.474,3.25,1.061,0.816,2.531,0.918,0.995,0.743,8.813,0.773,0.755,3.484,0.787,0.921,1.782,0.867,0.628,0.836,1.94,0.819,1.43,5.681,0.899,1.878,0.931,0.77,1.806,0.894 +NM_134264,0.961,1.138,0.942,1.143,1.007,0.951,0.951,1.084,1.079,1.063,0.884,1.125,1.07,1.04,0.998,0.891,0.991,1.023,1.0,1.027,0.957,0.93,1.103,1.082,1.0,1.146,0.955,0.88,1.067,0.98,0.986,0.899,1.063,0.988,1.03,1.05,1.059,0.953,0.947,0.901,1.002,0.976,1.028,0.866,1.012,1.109,0.986,1.022,0.992,0.865,0.908,0.967,1.147,0.835 +NM_134265,0.692,1.021,1.197,0.801,0.999,1.406,0.916,1.001,1.248,0.705,0.899,1.055,0.804,0.714,1.488,1.386,1.137,0.929,0.613,1.366,0.498,0.989,1.18,1.63,0.663,0.645,1.651,0.888,0.763,1.085,0.901,2.06,2.287,1.208,0.609,0.672,0.858,0.924,1.344,1.441,0.847,1.016,0.681,0.746,0.852,1.035,1.474,0.757,1.572,0.734,0.941,0.884,0.632,2.07 +NM_134266,1.987,1.9049999999999998,1.881,1.979,1.821,2.331,1.937,1.732,2.157,1.925,2.074,2.076,2.191,1.7280000000000002,2.121,2.359,2.085,2.191,2.104,2.036,2.057,2.059,2.0759999999999996,2.0599999999999996,2.161,1.857,2.035,1.843,2.621,2.208,2.182,2.116,2.221,1.9979999999999998,1.869,1.9769999999999999,2.151,1.9409999999999998,2.021,1.9020000000000001,1.815,1.9260000000000002,2.4850000000000003,2.242,1.952,1.9619999999999997,1.9540000000000002,1.885,1.827,1.798,2.198,2.123,2.0789999999999997,1.97 +NM_134268,0.697,1.346,0.765,0.866,0.709,1.544,1.133,0.6,0.749,0.702,1.183,0.737,0.781,0.754,0.97,1.288,0.7,0.775,0.727,1.193,0.784,0.688,1.758,0.76,1.089,0.673,0.719,0.615,0.737,2.855,0.661,4.982,1.744,3.235,0.625,0.97,1.012,0.679,1.733,1.968,0.69,2.409,0.812,0.88,0.663,1.382,0.817,0.779,0.739,0.582,1.348,1.364,0.812,1.251 +NM_134269,0.86,1.053,0.842,0.912,0.62,0.908,0.791,0.636,0.786,0.84,0.98,0.572,0.743,0.761,0.981,1.31,0.643,0.8,0.882,0.824,1.223,0.719,1.563,0.651,1.336,0.968,0.961,0.896,0.846,1.342,0.674,2.14,2.211,1.281,1.21,0.931,0.883,0.977,2.419,1.442,1.509,1.326,0.917,1.18,0.812,0.949,0.929,1.027,1.012,1.228,1.1,0.96,1.107,0.886 +NM_134325,0.892,3.226,0.943,1.49,0.734,2.55,2.677,1.02,0.804,0.905,0.748,0.928,0.913,0.885,0.714,0.804,1.414,2.301,1.107,1.75,0.84,0.716,0.849,0.825,4.239,0.836,1.721,0.845,3.671,3.828,0.882,2.926,0.922,6.105,0.817,1.133,1.667,0.763,2.438,0.909,0.854,1.286,0.94,1.017,0.807,0.904,0.893,0.871,0.798,1.435,0.821,1.015,1.076,1.179 +NM_134421,1.194,0.976,0.874,1.179,1.043,1.044,1.339,0.937,0.951,0.943,0.907,1.042,1.118,1.002,0.89,0.878,0.98,0.963,1.031,0.896,1.067,0.917,0.961,0.936,0.982,1.006,0.998,0.895,1.047,1.031,0.987,1.063,0.972,1.009,0.991,1.04,0.971,0.959,0.87,1.033,1.041,1.052,1.034,1.037,0.99,0.977,0.981,1.037,1.019,0.996,1.096,1.01,0.92,1.037 +NM_134422,1.119,1.071,0.96,1.046,1.314,1.012,1.007,0.996,1.088,1.064,1.023,1.055,0.928,1.037,1.041,0.988,0.833,1.013,0.991,0.981,1.033,0.968,1.014,0.989,1.021,0.917,0.883,0.966,1.219,0.992,1.047,0.831,1.165,0.909,1.08,1.107,0.875,1.099,1.011,0.946,1.008,1.023,0.989,0.871,0.981,0.894,1.024,0.961,1.182,1.062,1.003,1.015,0.83,0.935 +NM_134423,1.1,0.921,0.864,1.005,0.925,0.96,1.081,1.002,0.976,0.945,1.156,1.049,0.969,1.61,1.07,1.225,0.994,1.103,1.08,0.909,1.024,0.85,1.171,0.935,1.002,0.956,1.033,1.002,0.987,0.992,0.97,0.995,1.066,0.983,1.155,1.134,1.023,0.983,1.005,1.053,0.858,1.079,1.381,0.978,1.039,0.932,1.071,1.101,1.016,1.051,1.029,1.045,1.052,0.933 +NM_134425,1.067,1.024,0.807,1.09,1.165,1.079,0.991,1.068,1.047,0.956,1.149,1.039,1.034,1.269,0.869,1.193,0.773,0.961,1.029,1.01,0.8,0.861,0.984,1.098,1.016,0.914,1.098,0.979,0.783,0.96,0.929,1.135,1.04,0.958,1.001,1.061,0.991,1.131,1.105,1.144,0.958,0.845,1.017,0.967,0.881,0.958,1.26,0.929,0.99,1.178,1.07,1.178,0.999,1.022 +NM_134426,0.731,1.181,0.841,0.909,0.695,1.331,0.792,0.749,0.806,0.718,1.402,0.777,0.824,0.779,1.146,1.992,0.718,0.839,0.768,1.327,0.601,0.818,1.657,0.703,0.743,0.707,0.898,0.602,0.88,1.276,0.679,1.489,1.443,1.265,0.716,1.152,1.429,0.785,1.436,1.655,0.611,1.421,0.974,1.134,0.772,1.327,1.005,0.728,1.269,0.901,1.344,1.026,0.843,1.264 +NM_134427,1.363,2.515,1.448,1.831,1.385,2.068,1.678,1.234,1.526,1.357,1.9489999999999998,1.564,1.215,1.474,2.081,2.062,1.3159999999999998,1.573,1.4569999999999999,2.742,1.304,1.2730000000000001,2.651,1.4829999999999999,2.231,1.206,1.322,1.469,1.608,2.463,1.238,6.611,2.165,2.2190000000000003,1.2930000000000001,2.175,2.006,1.393,2.964,4.218,1.468,2.52,1.9249999999999998,2.227,1.3659999999999999,2.267,1.928,1.191,2.308,1.323,2.262,2.891,1.452,2.875 +NM_134428,2.1079999999999997,2.246,1.867,1.908,1.956,1.99,1.818,2.126,2.189,2.043,1.835,1.9369999999999998,1.833,2.086,2.026,2.025,1.853,1.884,2.043,2.019,2.182,2.078,2.055,1.9700000000000002,1.992,1.865,2.056,2.093,1.9939999999999998,2.018,2.0709999999999997,1.861,2.1159999999999997,2.066,2.2569999999999997,2.238,2.0380000000000003,2.0380000000000003,1.96,1.9779999999999998,2.16,1.939,2.069,2.016,2.162,1.947,2.201,1.947,1.8599999999999999,1.7799999999999998,2.1029999999999998,1.88,2.216,2.104 +NM_134431,1.014,1.045,1.055,1.075,0.889,0.852,0.996,0.894,0.851,1.01,0.954,0.952,1.115,0.98,1.182,1.041,1.019,0.946,0.898,1.153,1.004,1.087,0.944,1.017,0.969,1.044,1.136,0.993,0.834,0.988,1.105,0.997,0.912,0.977,1.113,0.975,1.014,0.968,1.081,1.019,1.044,0.939,1.158,0.916,1.083,0.946,1.064,0.911,0.833,0.956,1.083,1.11,1.025,1.071 +NM_134433,1.035,1.017,0.972,1.026,0.959,1.004,0.838,1.331,0.835,0.912,1.058,0.894,0.925,0.776,0.962,0.929,0.945,0.9,1.016,1.021,1.002,1.101,0.906,0.885,1.082,1.131,0.944,0.952,0.662,1.007,0.981,0.98,1.106,0.956,0.954,0.944,1.072,0.984,0.958,1.0,1.051,0.866,1.024,1.055,0.993,1.101,1.063,1.02,1.083,1.052,1.062,1.0,1.062,1.071 +NM_134434,0.822,1.041,0.991,1.028,0.814,0.93,0.917,0.803,1.039,1.001,0.931,0.907,1.061,1.052,0.96,1.07,0.967,0.991,1.0,0.939,1.02,0.879,1.112,0.945,0.969,0.876,1.178,0.876,0.855,1.066,1.089,0.991,1.844,0.919,0.926,1.192,0.957,1.127,1.177,1.007,0.924,1.014,0.981,1.179,1.001,1.015,1.058,0.903,1.06,1.016,1.006,0.914,0.945,1.611 +NM_134440,0.824,1.065,1.094,0.739,1.112,0.948,0.659,0.712,1.036,1.001,0.87,0.947,0.919,0.657,0.838,1.148,0.912,0.959,1.215,0.898,0.796,0.89,1.272,1.059,0.748,1.052,1.141,0.898,0.6,1.049,1.026,0.914,1.318,1.179,0.731,0.929,0.791,1.117,1.459,0.948,1.014,0.945,0.525,1.312,1.097,0.715,0.85,1.049,0.754,0.928,0.884,1.065,1.081,1.401 +NM_134441,0.906,0.968,1.099,0.923,0.852,0.992,0.827,1.28,0.998,1.029,1.046,1.079,0.943,0.848,1.01,1.061,0.932,1.072,1.122,0.951,1.087,0.872,1.048,0.958,1.032,1.014,0.848,1.062,1.025,1.028,1.008,0.987,1.134,0.999,1.14,0.971,0.952,0.955,0.908,0.843,0.974,1.294,0.879,1.063,1.178,0.773,1.052,0.911,0.945,0.967,0.942,1.207,1.11,1.064 +NM_134444,1.062,0.97,1.018,1.175,0.913,0.996,1.089,1.002,0.963,1.006,1.082,0.899,1.056,1.086,0.939,0.992,1.065,1.022,0.878,1.123,1.101,1.143,1.153,1.033,0.915,0.982,1.007,1.028,1.208,0.9,0.864,1.015,0.957,0.91,0.979,0.996,1.026,1.041,0.854,1.021,0.942,0.927,1.085,0.924,1.02,1.117,1.103,1.02,0.998,1.012,0.943,0.919,0.882,0.936 +NM_134447,0.689,1.377,1.158,0.643,0.874,1.104,0.562,0.584,1.052,1.068,1.238,1.152,0.719,0.776,0.82,1.189,0.758,0.901,1.339,1.237,0.509,0.971,1.575,1.111,0.663,0.839,1.064,0.892,0.483,1.267,0.877,0.991,2.299,1.409,0.134,1.143,1.119,0.88,1.144,0.635,1.102,1.115,0.605,0.972,0.981,0.982,1.071,0.86,0.802,0.754,0.98,1.016,1.006,1.597 +NM_134470,2.086,2.128,1.955,2.011,2.059,1.7610000000000001,2.053,1.854,2.1189999999999998,2.105,1.897,2.013,2.059,1.963,1.692,2.085,1.819,1.9779999999999998,2.183,1.809,1.896,2.014,1.938,2.013,2.049,1.822,2.154,2.1639999999999997,1.679,2.203,2.223,2.072,2.159,2.1950000000000003,2.013,1.979,2.1,2.1260000000000003,1.951,2.213,2.1479999999999997,2.009,2.035,2.003,1.964,2.098,2.397,1.8170000000000002,2.081,1.978,1.855,2.3289999999999997,2.019,2.1399999999999997 +NM_138270,0.712,1.213,1.396,0.704,0.949,1.207,0.742,0.666,1.151,0.932,0.818,0.983,0.721,0.885,1.046,1.116,0.868,0.804,0.779,1.252,0.625,0.654,1.219,0.84,0.846,0.664,1.258,0.842,0.474,1.435,1.067,1.861,2.343,1.493,0.552,0.872,0.971,0.863,1.264,1.018,0.852,1.191,0.642,0.94,0.868,0.991,0.875,0.67,0.803,0.805,1.16,0.959,0.809,1.608 +NM_138275,1.054,1.015,0.902,1.068,1.081,0.971,1.115,0.939,0.979,0.908,0.954,0.953,1.127,1.002,1.12,1.082,1.032,0.988,0.99,0.982,1.037,0.935,0.865,0.982,1.03,1.08,1.007,1.042,1.12,0.911,1.08,0.984,1.024,0.93,1.162,1.012,0.938,0.961,1.075,1.04,0.982,0.963,0.944,1.053,1.046,0.864,1.02,0.836,0.933,0.933,0.996,1.135,1.248,1.051 +NM_138276,1.046,1.025,0.857,0.898,0.812,1.001,1.226,0.878,1.075,1.139,1.127,1.133,0.948,1.141,0.919,0.991,1.003,0.902,1.02,1.098,1.003,0.999,0.956,0.864,1.281,1.016,1.029,0.924,1.194,0.978,0.958,0.933,1.126,0.907,0.871,0.876,1.025,0.94,0.919,1.05,0.841,1.051,0.912,0.971,0.905,1.035,0.948,1.065,1.022,1.038,1.017,1.067,0.929,0.965 +NM_138277,1.06,1.011,1.075,1.038,1.12,0.938,0.945,0.958,1.009,0.996,0.92,1.007,0.926,0.947,0.902,1.011,1.054,0.999,0.991,0.938,1.065,1.032,0.959,1.043,0.995,0.99,1.063,0.97,0.98,0.946,1.108,1.023,0.856,0.924,1.132,1.008,0.928,1.028,1.038,1.014,1.026,1.159,1.551,0.924,1.051,0.958,1.123,1.047,1.055,1.052,1.071,1.162,0.969,0.958 +NM_138278,4.94,0.201,5.506,1.395,5.239,0.167,0.208,4.415,7.989,5.052,0.168,5.085,3.212,4.519,3.266,1.322,4.337,2.656,5.957,0.273,2.467,5.289,0.155,5.588,0.199,6.003,3.727,6.649,0.146,0.186,7.075,0.186,1.63,0.202,4.335,0.174,0.17,6.291,0.197,0.176,6.271,0.193,0.162,0.186,4.955,0.173,3.207,5.658,0.371,3.147,0.881,0.759,3.148,0.337 +NM_138279,2.6959999999999997,2.052,2.819,2.169,2.612,1.859,1.859,2.2359999999999998,3.052,2.52,1.9329999999999998,2.1239999999999997,2.003,2.469,2.4909999999999997,2.1319999999999997,2.27,2.084,2.5700000000000003,1.813,2.3659999999999997,2.13,1.795,2.541,1.867,2.644,2.282,2.729,1.6949999999999998,1.899,3.051,1.96,2.146,1.785,2.598,1.784,1.763,2.336,2.005,1.9180000000000001,2.9219999999999997,1.873,1.735,1.9260000000000002,2.542,1.923,2.33,2.068,1.732,2.087,1.875,1.915,2.337,1.979 +NM_138281,0.949,1.008,1.068,0.889,0.898,0.902,1.085,1.007,1.024,1.007,0.908,1.084,0.815,0.94,0.927,0.951,0.972,0.966,0.918,1.019,1.103,0.993,1.128,1.035,1.007,1.096,1.25,0.965,0.727,0.97,1.111,1.039,0.954,0.983,0.982,1.001,1.019,1.106,1.047,1.02,0.932,1.133,1.227,0.993,1.059,0.972,0.926,1.005,1.048,0.913,0.975,0.9,0.91,1.007 +NM_138282,1.068,0.949,1.008,1.18,1.018,0.88,1.187,1.034,1.172,1.02,1.033,0.992,0.939,0.93,0.761,0.889,0.874,0.836,0.998,1.164,0.866,1.121,0.953,1.117,1.025,1.084,0.905,1.027,1.423,1.049,0.988,1.025,1.19,1.022,0.938,0.758,0.929,0.888,1.128,0.702,1.01,1.155,0.865,0.847,1.029,0.989,0.984,0.856,0.722,0.973,0.936,1.047,1.039,0.932 +NM_138283,0.954,1.028,1.021,1.092,1.034,1.023,0.809,1.107,1.048,1.059,0.978,0.833,0.996,0.95,0.961,0.933,1.042,1.189,0.904,1.026,1.096,1.031,0.984,0.932,1.034,0.96,0.985,0.878,1.029,0.993,1.057,1.039,0.909,0.972,1.103,1.03,0.994,1.017,1.105,0.912,0.886,1.083,1.083,0.92,0.987,0.909,0.875,0.903,1.052,1.088,0.944,1.055,0.888,1.052 +NM_138284,0.966,1.059,1.046,1.054,0.926,0.986,1.07,0.895,0.909,0.828,0.923,0.924,1.019,0.868,0.875,0.948,0.991,0.82,0.975,0.955,0.999,0.891,1.101,1.007,0.959,0.936,1.071,0.925,1.075,1.07,0.997,1.596,1.314,1.245,1.039,1.241,0.965,1.121,0.973,1.107,1.13,0.983,1.025,0.934,0.966,1.066,1.011,0.846,0.987,1.008,1.046,0.969,0.982,0.985 +NM_138285,0.835,0.998,0.978,0.897,0.949,1.093,1.087,0.702,1.261,0.966,0.99,1.097,0.955,0.766,0.862,1.294,0.776,1.051,1.223,0.909,0.76,0.962,1.373,1.281,0.757,0.791,1.102,0.921,1.002,1.064,1.014,1.06,2.042,1.089,0.587,0.977,1.316,0.876,1.249,0.903,1.043,0.932,0.843,1.165,1.135,1.043,0.919,0.774,1.155,0.704,1.109,0.745,0.979,1.846 +NM_138288,0.938,0.961,1.576,0.939,1.042,0.698,0.581,0.52,1.018,0.955,0.845,0.674,0.926,0.724,1.009,1.475,0.916,1.014,1.372,0.838,0.721,0.569,0.906,0.766,0.685,0.897,1.42,1.057,0.555,0.686,1.001,1.143,0.864,0.931,0.829,1.193,1.334,0.974,1.177,1.385,1.211,0.837,1.363,2.125,0.999,1.297,1.731,0.688,1.493,2.29,1.075,1.055,1.52,0.825 +NM_138289,1.046,0.959,1.012,0.993,0.816,0.94,0.842,0.931,0.982,0.889,0.941,1.071,0.912,1.009,0.98,0.846,1.073,0.941,0.926,0.93,0.997,0.879,1.012,1.019,0.955,1.11,1.052,1.027,1.087,1.124,1.02,1.035,0.858,0.868,0.956,1.023,0.968,1.076,1.12,1.009,1.049,0.933,0.955,1.028,0.996,1.046,1.082,1.073,1.02,1.023,0.965,1.055,0.975,0.963 +NM_138290,1.073,1.016,1.342,0.969,1.067,1.02,0.88,1.062,0.958,1.22,0.871,1.062,1.013,0.927,0.884,1.261,0.999,0.993,0.885,0.893,0.886,0.973,1.045,1.048,0.882,1.273,0.948,0.923,0.849,1.173,0.994,1.186,1.06,1.055,1.018,0.994,0.995,1.293,1.107,1.371,0.963,1.199,1.042,0.988,1.058,1.091,0.967,0.971,1.185,0.993,1.01,0.925,0.961,1.034 +NM_138293,1.062,0.924,1.031,0.966,0.978,0.989,0.97,1.008,0.986,0.97,0.891,0.996,1.006,0.981,0.892,0.985,1.033,1.01,0.927,1.01,1.077,1.001,0.965,0.951,0.914,0.987,0.901,1.042,0.995,0.977,1.013,1.011,1.086,0.842,0.907,0.977,0.987,0.927,1.049,1.056,0.954,1.126,1.038,0.953,1.035,0.931,1.016,0.974,1.09,1.18,1.003,1.037,1.057,0.945 +NM_138294,1.03,0.869,1.041,0.902,0.976,0.922,1.111,0.847,0.957,0.937,1.112,1.001,1.13,1.143,0.932,1.051,1.036,0.923,0.93,0.991,1.053,0.978,1.004,0.908,0.98,0.985,0.902,0.949,0.756,1.002,1.103,1.011,0.908,0.966,1.004,1.271,1.046,1.072,0.871,0.989,0.913,0.865,0.965,1.01,1.008,1.014,0.904,0.937,0.942,0.974,0.969,0.923,1.217,1.061 +NM_138295,1.027,1.0,0.913,0.935,1.05,0.957,0.961,1.124,0.948,0.937,0.973,1.025,0.994,0.9,1.117,0.963,0.969,0.857,0.877,1.076,1.112,1.098,0.863,0.945,1.162,1.012,1.078,1.051,1.006,0.942,1.074,0.949,1.013,0.983,1.096,0.884,0.995,1.006,1.076,0.96,0.981,0.998,1.262,0.929,0.947,1.04,0.975,0.909,1.154,0.934,1.055,0.941,1.056,1.096 +NM_138296,1.07,0.896,1.022,0.999,1.132,0.996,0.751,1.023,1.206,0.666,0.908,1.091,0.961,1.247,0.885,1.044,1.24,0.928,0.965,1.014,1.101,1.108,1.04,0.942,0.903,1.07,1.122,1.074,1.091,1.008,0.959,1.14,0.972,0.899,1.039,0.993,0.917,1.064,1.021,1.015,1.254,0.89,1.376,0.807,0.792,1.07,1.042,1.016,1.139,1.069,1.043,1.13,1.165,1.474 +NM_138297,1.952,0.701,1.541,1.314,0.722,0.578,0.806,0.591,1.996,0.834,0.861,0.636,2.513,1.282,1.02,0.632,6.882,0.768,1.598,1.275,0.961,1.017,0.955,1.36,0.526,1.557,4.686,0.532,0.731,0.575,0.757,4.346,2.024,0.533,1.279,1.138,0.693,0.612,0.892,1.601,2.809,0.76,0.72,0.995,1.674,1.153,0.982,1.14,1.247,3.064,0.833,1.355,2.027,1.019 +NM_138300,0.79,0.71,1.305,0.677,1.039,1.172,0.74,0.53,1.077,0.96,1.165,0.838,0.61,0.919,0.838,1.378,0.841,0.968,1.378,1.112,0.749,0.832,1.175,0.932,0.505,0.916,1.335,0.999,0.716,1.235,0.943,2.046,1.783,1.565,0.341,1.528,0.818,0.935,1.327,1.212,1.055,1.203,0.624,1.341,0.909,0.844,0.955,0.764,0.715,0.892,0.971,0.957,0.912,1.835 +NM_138316,1.064,1.054,0.889,0.65,1.336,1.63,0.626,0.78,1.351,0.708,1.706,1.26,0.727,0.878,1.585,3.765,0.669,0.853,1.162,1.522,0.494,1.167,1.839,1.524,0.844,0.867,1.121,1.129,0.365,1.394,1.146,0.797,2.579,1.038,0.334,0.803,2.054,0.966,0.847,0.767,1.025,1.291,0.844,0.838,1.001,1.112,1.722,0.799,2.086,0.936,1.269,0.72,0.441,0.929 +NM_138317,1.015,1.046,1.06,1.009,1.041,1.144,1.03,1.168,0.869,1.007,1.02,1.031,1.028,0.956,1.264,0.996,0.956,1.023,1.022,0.995,0.967,1.1,1.026,1.102,1.081,1.045,1.018,1.105,0.846,0.884,1.123,0.882,0.968,1.033,0.999,0.958,1.122,0.99,0.954,0.944,0.978,1.103,0.893,1.181,0.903,0.87,0.976,0.977,0.95,1.013,1.024,0.9,1.241,0.922 +NM_138318,0.955,1.08,1.117,0.909,1.0,1.372,0.906,0.853,1.005,1.0,1.437,0.936,0.789,0.893,0.832,1.108,0.933,1.395,0.972,0.959,1.043,0.896,1.033,1.203,0.962,0.942,0.868,1.094,0.909,1.568,0.915,0.959,0.93,1.573,0.884,0.96,1.131,0.969,0.943,0.895,1.146,1.484,0.819,0.979,1.008,1.297,0.963,0.841,0.914,0.967,1.247,0.746,1.001,0.87 +NM_138322,1.988,2.146,1.959,1.9869999999999999,1.996,2.145,2.347,2.218,2.384,2.0789999999999997,1.838,2.3369999999999997,1.806,1.8929999999999998,2.026,2.012,1.952,2.013,1.728,2.03,1.968,1.9580000000000002,1.892,1.822,1.977,1.908,2.1260000000000003,2.098,1.9820000000000002,2.168,1.791,1.853,1.944,2.162,2.226,2.0949999999999998,1.8780000000000001,1.58,2.178,2.207,2.142,1.886,2.194,2.0789999999999997,2.285,1.984,2.098,1.6280000000000001,1.8610000000000002,1.904,2.0380000000000003,2.1879999999999997,1.7690000000000001,2.112 +NM_138326,0.869,1.065,1.078,1.066,0.982,1.0,1.036,0.978,0.872,0.996,1.386,0.969,0.902,0.848,1.446,1.556,0.907,1.067,0.795,1.205,0.994,0.96,1.037,1.165,1.003,0.981,0.891,0.904,0.987,0.992,1.107,0.834,1.089,1.055,0.924,1.0,2.935,0.953,1.14,1.115,1.106,0.979,1.438,1.027,1.016,1.136,1.541,1.033,1.014,0.963,1.127,1.026,0.85,0.899 +NM_138327,0.912,1.047,0.98,0.958,0.988,1.197,1.017,1.03,1.025,1.062,1.004,1.14,0.834,0.97,0.898,1.025,1.024,0.973,1.05,0.998,0.996,0.874,0.891,0.968,1.063,0.966,1.062,0.985,1.263,0.876,1.059,1.047,0.903,0.955,1.02,0.894,0.969,1.081,0.892,0.996,0.972,1.021,1.074,0.842,0.928,0.98,0.948,1.036,0.978,1.017,1.077,1.013,0.996,0.972 +NM_138328,1.05,0.898,1.059,0.858,1.031,1.039,0.817,0.907,1.124,0.876,0.982,1.011,1.001,0.961,0.965,0.985,0.978,1.007,1.114,0.9,1.015,0.941,0.899,0.972,1.028,0.994,1.001,0.958,0.731,1.015,1.17,0.96,0.882,1.126,0.789,0.88,0.946,1.024,0.999,1.083,0.902,0.919,0.812,1.024,1.035,0.899,1.091,1.025,1.001,1.016,0.957,0.931,0.845,1.008 +NM_138329,0.927,1.011,0.98,1.134,0.938,1.101,1.149,0.967,0.929,0.994,0.96,1.057,1.003,1.004,0.975,1.111,0.994,0.982,0.91,0.978,0.957,0.959,1.069,0.88,1.152,1.062,0.978,1.017,1.14,1.011,1.03,1.214,0.982,1.021,1.05,0.968,0.918,1.049,1.105,1.002,1.059,1.007,1.249,1.058,0.988,1.145,0.96,1.099,0.984,0.969,0.962,0.906,0.979,0.927 +NM_138330,1.164,0.983,1.066,0.988,1.106,1.019,0.893,1.006,1.015,1.095,0.82,1.004,0.965,1.245,1.1,0.986,0.996,1.086,0.929,1.045,0.983,1.02,0.928,1.192,0.847,1.009,0.873,1.003,1.236,0.99,1.124,1.065,0.979,0.967,0.863,0.961,0.979,1.137,1.0,1.044,0.963,0.892,0.85,1.028,1.018,0.969,1.013,0.98,0.961,0.989,0.987,1.115,1.0,0.97 +NM_138331,1.045,0.975,0.917,1.004,0.922,1.038,1.058,1.218,0.902,0.907,0.931,1.07,0.989,0.957,1.072,0.98,0.927,1.045,1.111,1.038,0.98,0.853,1.022,1.006,1.161,0.926,1.04,1.007,1.67,1.025,1.171,0.893,1.108,0.966,0.966,1.085,1.075,1.007,0.961,1.029,0.966,0.997,1.063,0.888,1.024,1.184,1.043,1.094,0.96,0.999,1.152,0.97,0.931,0.961 +NM_138332,1.056,1.105,1.115,0.994,0.922,1.089,0.941,0.891,1.014,1.234,1.002,0.971,0.987,0.94,1.108,1.04,0.981,0.984,0.914,1.005,0.966,1.185,0.948,0.959,1.004,1.151,1.16,1.097,1.949,1.03,0.969,1.158,1.089,0.936,0.932,1.059,1.084,1.117,0.944,0.998,0.955,0.909,1.155,0.991,1.026,0.957,0.967,0.928,0.933,1.048,1.096,0.98,0.871,1.001 +NM_138333,1.012,0.893,1.264,0.95,1.112,0.965,0.614,0.818,1.218,1.176,0.871,1.038,0.933,0.93,0.928,1.006,0.941,1.113,1.318,0.872,0.831,0.956,1.01,1.426,0.765,1.3,1.092,0.995,0.62,0.781,0.992,1.083,1.715,0.986,0.757,0.981,0.812,1.144,1.024,1.012,1.103,0.835,0.717,1.273,1.158,0.777,1.041,1.035,0.836,1.171,0.972,1.079,1.142,1.329 +NM_138334,0.928,0.921,1.117,0.976,0.773,1.37,0.767,1.588,0.823,0.87,1.502,0.915,1.118,0.72,1.034,2.125,0.838,1.004,2.492,0.987,1.329,0.738,1.383,0.901,0.926,1.206,0.848,0.734,0.672,0.959,1.107,1.03,2.48,2.136,0.563,0.957,0.979,0.686,1.503,1.102,0.929,1.062,0.471,1.194,0.905,0.893,0.806,1.343,0.74,1.091,0.843,0.857,1.497,1.02 +NM_138335,0.861,1.082,1.031,0.722,0.864,1.184,0.808,0.825,0.924,0.855,1.305,0.873,0.84,0.723,1.065,1.539,0.82,0.907,1.028,1.056,0.843,0.756,1.077,0.924,0.987,0.866,1.224,0.899,0.725,1.18,0.899,1.71,1.364,1.418,0.67,1.045,1.05,1.117,1.263,0.814,1.038,1.173,0.786,1.27,0.897,0.978,0.92,0.731,0.919,0.831,1.014,0.913,0.958,1.479 +NM_138336,1.04,0.902,1.1,1.011,1.075,1.024,0.99,0.877,0.997,1.068,1.006,1.006,0.994,0.82,1.194,1.0,0.951,1.035,0.969,0.998,0.947,0.992,0.983,0.969,0.982,0.966,1.1,1.014,0.748,1.044,1.019,1.015,0.991,1.029,0.967,0.964,0.946,1.086,0.968,0.921,1.061,1.042,0.891,1.041,1.035,1.101,1.04,0.943,0.916,1.234,0.878,1.037,1.0,1.0 +NM_138338,0.999,1.102,1.021,0.876,0.956,1.066,0.793,0.97,1.1,1.178,0.792,1.267,0.979,0.857,0.688,1.138,0.999,0.933,1.2,1.006,1.139,1.113,0.93,1.288,0.847,1.077,1.079,0.93,0.949,0.945,0.947,1.079,1.526,0.888,0.763,0.873,0.877,1.252,1.442,0.918,1.22,1.09,0.756,1.186,1.021,0.907,1.044,1.026,0.846,1.047,0.934,0.939,1.114,1.547 +NM_138339,1.099,1.251,0.908,1.017,0.964,1.099,1.024,1.05,1.038,0.959,0.98,1.076,0.931,0.97,0.937,0.935,1.219,1.016,0.996,1.173,1.087,1.094,0.932,0.985,1.041,1.034,0.869,0.868,0.978,0.847,0.973,1.091,1.175,1.1,1.11,1.187,0.988,0.927,1.013,1.015,1.037,0.928,1.109,0.938,1.052,1.066,0.948,1.001,0.92,1.065,0.973,0.989,1.222,0.989 +NM_138340,0.588,2.052,0.738,0.979,0.787,1.627,1.059,0.603,1.483,0.765,1.175,0.591,0.571,0.618,1.039,1.588,0.625,1.41,0.604,1.253,0.534,0.643,1.244,0.572,0.669,0.617,0.802,0.914,0.979,1.496,0.904,0.747,0.863,1.702,1.103,1.227,1.672,0.917,1.657,0.645,0.887,1.432,0.955,1.56,0.608,1.533,0.767,0.832,1.126,0.626,1.193,0.696,0.621,2.358 +NM_138341,1.033,1.037,1.089,0.879,0.987,1.223,1.088,0.77,1.097,0.865,1.096,0.868,0.87,1.083,0.891,1.082,0.897,1.249,1.252,0.969,0.795,0.847,0.827,1.337,1.189,1.1,0.909,1.074,0.618,0.994,1.087,1.128,0.985,1.498,0.737,0.884,1.387,0.995,0.863,0.801,1.049,1.03,0.846,0.815,1.005,0.79,0.803,1.024,0.731,0.894,0.906,0.714,0.77,1.437 +NM_138342,0.516,1.174,0.406,1.194,0.408,1.72,0.801,0.296,0.469,0.377,3.127,0.43,0.519,0.379,1.059,3.788,0.373,0.938,0.495,1.339,0.446,0.428,1.857,0.493,1.095,0.679,0.418,0.414,0.618,1.709,0.424,0.526,2.914,2.075,0.354,2.748,1.428,0.433,3.125,0.848,0.428,1.342,0.742,1.956,0.53,1.599,0.552,0.491,1.176,0.394,1.89,0.637,0.498,1.009 +NM_138343,1.036,0.932,0.9,1.088,0.862,1.136,0.956,1.13,0.972,0.909,1.152,1.011,1.029,0.935,0.985,1.165,0.944,0.921,0.918,0.999,0.937,1.081,1.019,0.884,0.938,0.945,1.017,1.048,1.122,1.024,1.01,0.989,1.025,1.055,0.997,1.058,1.086,0.915,1.021,0.98,0.917,1.21,1.114,0.911,0.929,1.061,1.101,0.857,0.847,0.985,0.959,1.047,0.941,0.968 +NM_138344,1.081,1.026,0.972,1.059,1.047,1.086,1.13,1.068,0.872,1.117,1.077,0.918,1.029,0.903,0.989,0.912,1.017,0.838,0.978,1.018,0.981,0.907,0.947,0.9,1.009,0.951,0.846,0.985,1.263,1.025,1.081,1.106,1.067,1.015,1.027,0.872,1.031,0.829,1.051,1.04,1.023,0.979,0.971,1.005,0.996,0.823,1.156,1.068,0.983,0.91,0.903,0.895,1.0,1.243 +NM_138346,0.704,1.199,0.901,0.772,0.697,1.321,0.621,0.528,0.796,0.735,1.814,0.546,0.721,0.587,1.224,2.787,0.796,0.805,1.61,1.01,0.626,0.798,1.438,0.703,0.58,0.973,0.904,0.542,0.542,0.98,0.634,0.943,1.239,1.243,0.372,0.814,1.649,0.815,1.978,0.997,0.782,1.429,0.832,1.646,0.798,1.224,1.302,0.995,1.172,0.907,1.129,0.708,0.947,1.609 +NM_138348,0.965,0.835,1.316,0.808,0.973,0.904,0.75,0.785,1.22,1.119,0.98,1.001,0.737,0.889,1.003,1.138,0.967,0.887,1.154,0.953,0.76,0.979,1.058,1.047,0.683,0.815,1.197,0.969,1.008,1.031,1.155,1.258,2.321,0.946,0.752,1.084,0.964,0.885,0.975,1.405,1.131,0.937,0.95,1.033,1.034,1.111,1.042,0.784,1.004,0.967,0.999,1.144,1.158,1.467 +NM_138349,1.107,1.152,0.739,1.106,0.757,1.114,0.843,0.726,1.167,0.824,0.896,0.946,1.184,0.872,0.729,0.959,0.87,0.949,0.9,0.942,0.893,0.988,1.028,0.883,1.206,1.101,0.839,0.887,1.134,1.403,0.649,1.794,1.589,1.223,0.716,1.136,0.915,0.949,1.689,1.128,0.863,0.995,0.887,1.725,0.825,0.952,0.935,1.004,0.939,0.978,0.924,1.03,0.784,1.032 +NM_138350,0.978,0.877,0.938,0.95,0.944,0.963,1.113,0.96,1.103,1.129,0.976,0.952,0.967,1.125,0.749,0.916,0.957,1.061,0.947,1.131,0.911,0.802,1.1,1.02,1.023,0.889,0.983,1.108,1.566,0.994,0.957,0.942,1.047,1.035,1.066,0.989,0.915,0.865,0.868,0.928,1.112,1.052,0.833,0.934,0.966,0.977,1.063,1.002,1.004,0.904,1.077,0.949,0.989,1.279 +NM_138352,1.008,0.971,0.986,0.868,0.942,1.201,0.775,1.049,0.908,1.072,0.91,0.985,1.018,0.895,0.7,0.847,1.072,0.985,0.949,0.838,1.032,1.035,1.067,1.193,0.948,1.039,1.005,0.828,0.765,1.058,0.933,1.006,1.147,1.129,0.858,0.848,0.884,0.936,1.684,0.989,0.96,0.949,0.74,1.532,0.966,0.893,0.939,1.004,1.01,1.208,0.927,0.978,1.061,1.087 +NM_138353,1.134,0.895,1.084,1.01,1.006,0.926,0.916,1.068,0.938,1.028,0.859,0.872,1.141,1.145,1.055,1.112,0.952,0.888,1.071,1.044,0.957,1.061,1.063,1.019,0.97,1.036,0.93,0.821,0.932,0.973,1.065,0.977,1.339,1.014,0.771,0.969,0.885,1.023,1.711,1.126,0.917,0.968,1.426,1.494,0.942,0.868,0.853,1.233,0.822,0.928,0.977,0.853,0.967,1.217 +NM_138355,0.467,1.05,1.25,0.777,0.93,1.672,1.129,0.334,1.306,1.083,1.202,0.848,0.619,0.614,0.983,2.09,0.809,1.27,0.588,1.682,0.289,0.731,1.521,0.862,0.578,0.798,1.073,0.993,0.742,2.564,0.681,2.153,0.638,1.794,0.273,0.912,2.3,1.107,1.197,0.516,1.146,2.023,1.275,0.952,0.946,2.498,1.109,0.58,1.273,0.712,1.565,0.729,0.87,0.599 +NM_138357,0.473,1.767,0.431,1.341,0.373,2.077,0.987,0.39,0.528,0.268,1.632,0.366,0.608,0.299,0.704,1.048,0.487,1.48,0.386,1.307,0.309,0.372,1.644,0.313,1.03,0.464,0.471,0.527,0.937,1.909,0.453,0.786,0.601,2.258,1.241,1.345,1.877,0.557,2.491,0.388,0.651,1.547,1.069,1.354,0.396,1.59,0.661,0.516,1.375,0.393,1.504,0.975,0.351,1.349 +NM_138358,0.84,0.921,1.263,1.008,0.918,1.031,0.718,0.553,1.064,0.957,1.319,0.88,0.762,0.774,0.925,1.171,0.89,0.896,1.256,0.926,0.903,0.695,1.393,0.888,0.854,1.04,1.143,0.93,0.461,1.049,0.816,0.85,1.151,0.975,0.615,1.225,1.009,0.862,0.982,0.983,1.039,0.987,0.831,1.305,1.097,1.131,0.845,0.69,0.913,0.999,1.098,1.084,1.14,1.121 +NM_138360,1.095,1.066,0.92,1.009,1.08,1.031,1.031,0.879,1.213,0.967,1.059,0.859,1.18,1.228,0.976,1.019,1.06,0.993,1.327,1.005,0.946,1.028,0.981,1.02,0.974,1.013,1.109,1.033,0.842,1.031,0.973,1.26,0.949,1.13,0.943,1.097,0.962,1.028,0.913,0.964,1.03,0.963,0.833,1.122,1.01,1.113,1.023,1.279,0.997,1.013,1.035,1.086,1.046,1.031 +NM_138363,0.658,1.118,1.069,0.725,0.796,1.012,0.663,0.7,1.231,1.04,0.934,0.897,0.717,0.818,1.033,1.065,0.901,0.805,1.09,1.016,0.724,0.918,1.148,1.002,0.703,0.778,1.21,0.805,0.472,1.118,1.02,1.699,1.855,1.106,0.597,1.088,0.774,0.842,0.999,1.12,1.02,1.09,0.978,1.36,0.871,1.018,0.923,0.729,0.999,0.794,0.911,0.918,0.781,2.119 +NM_138364,0.81,1.036,1.197,0.754,1.168,1.167,0.799,0.845,1.376,1.007,0.887,0.878,0.784,0.749,0.986,1.211,0.997,1.039,1.202,0.988,0.722,1.135,1.09,1.193,0.792,0.882,1.42,1.003,0.841,0.971,1.066,1.24,0.997,1.176,0.711,0.793,1.022,1.15,1.18,0.738,1.117,1.025,0.822,0.843,1.183,0.986,1.191,0.995,0.882,0.944,1.1,0.812,0.897,1.259 +NM_138368,0.996,0.982,0.971,0.765,1.198,1.096,1.028,0.835,1.089,0.956,0.914,0.974,1.019,0.769,0.955,1.082,1.031,0.932,0.922,0.977,1.008,0.954,1.02,0.968,0.966,1.032,1.047,1.065,1.055,0.984,0.868,1.123,1.041,0.96,0.864,1.029,1.014,0.979,1.0,1.194,0.941,0.9,0.797,0.882,1.199,0.759,1.047,0.976,0.892,1.121,0.961,0.882,0.956,0.928 +NM_138369,0.682,1.14,1.144,0.653,0.882,1.194,0.695,0.877,1.021,0.931,0.769,1.011,1.017,0.65,1.0,1.608,0.972,0.917,1.062,0.944,0.652,1.164,1.411,1.427,0.675,0.644,1.454,0.887,0.551,1.193,1.123,1.89,7.227,1.343,0.55,0.644,0.856,1.265,1.214,0.899,1.139,1.227,0.636,0.814,0.976,0.821,1.225,0.85,0.983,0.799,1.009,0.619,0.766,3.16 +NM_138371,0.795,0.948,1.349,0.917,1.08,0.94,1.033,0.944,1.045,0.904,0.924,0.86,0.937,1.075,1.009,0.887,0.924,0.818,0.935,0.932,0.984,0.949,1.014,0.987,0.905,0.928,1.14,0.877,0.59,1.18,0.993,1.725,0.843,0.981,0.789,1.249,0.957,0.854,1.105,3.873,1.003,1.212,0.946,1.531,1.161,0.851,1.265,0.93,0.899,0.919,0.94,1.102,1.022,1.431 +NM_138375,0.791,2.372,0.466,0.843,0.446,2.238,1.162,0.44,0.631,0.523,1.418,1.364,0.468,0.504,0.859,1.315,0.564,1.519,0.726,1.28,0.478,0.537,1.589,0.749,1.044,0.766,0.398,0.633,1.626,3.015,0.467,0.727,1.104,2.562,0.654,1.021,1.218,1.0,1.482,0.656,0.57,1.267,0.55,1.915,0.527,0.973,0.654,0.609,0.579,0.49,1.147,0.644,0.537,5.38 +NM_138376,0.871,1.27,1.159,0.693,0.761,1.109,0.772,0.666,0.909,0.739,1.31,1.082,1.102,0.758,0.9,1.235,0.854,0.958,1.131,1.001,0.597,0.844,1.111,1.016,0.8,0.825,1.147,0.775,0.716,1.02,0.832,1.552,1.102,1.227,0.337,0.561,1.138,0.913,1.204,0.915,1.022,1.135,0.69,1.525,0.901,0.823,1.132,0.707,0.733,0.724,1.106,0.88,0.793,1.404 +NM_138379,0.899,1.096,1.067,1.199,0.981,1.04,1.119,1.003,1.072,0.817,0.882,0.989,1.052,1.008,1.006,0.92,1.248,1.045,0.947,1.129,1.1,1.01,0.959,1.104,0.864,0.938,1.119,1.213,0.916,0.981,0.912,0.962,0.94,0.987,0.964,0.865,1.043,1.049,0.986,1.021,0.938,1.256,0.823,0.985,0.991,0.785,1.072,1.044,0.947,0.944,0.939,1.056,0.951,1.056 +NM_138381,0.823,1.127,1.08,0.743,0.892,1.109,0.988,0.781,1.049,1.08,1.044,0.837,0.994,0.883,0.968,1.638,1.044,0.972,1.157,0.959,0.792,0.892,1.056,0.941,0.913,0.916,1.057,0.856,0.669,1.184,0.999,0.991,1.217,1.134,0.664,1.055,1.302,0.897,1.257,0.988,1.039,0.984,0.944,0.9,1.02,1.029,0.923,0.853,1.036,0.888,1.032,0.794,1.147,1.052 +NM_138384,0.96,0.97,1.105,0.946,1.045,0.996,0.872,0.904,1.024,0.965,1.095,0.99,0.957,0.893,0.849,0.93,1.092,1.133,1.124,1.098,0.889,0.927,0.997,0.957,1.003,1.051,1.221,1.023,1.303,1.162,0.963,0.969,1.018,1.024,0.905,1.001,0.915,1.158,1.141,0.987,0.889,1.141,1.009,0.98,0.95,0.89,1.008,1.051,1.16,0.916,1.003,0.905,0.903,1.034 +NM_138385,0.879,1.065,0.78,1.02,0.727,1.185,0.612,0.487,0.759,0.711,1.763,0.792,0.848,0.638,0.783,1.358,0.858,0.845,1.111,0.925,0.668,0.773,1.434,0.85,1.247,1.142,0.917,0.755,0.672,1.263,0.826,1.486,1.059,1.947,0.526,0.863,1.235,0.776,1.711,0.974,0.804,1.36,0.814,1.501,0.894,1.129,0.851,0.934,0.803,0.875,1.061,0.869,0.828,0.983 +NM_138387,0.504,1.284,0.763,0.747,0.505,1.12,0.747,0.365,0.752,0.724,1.168,0.601,0.507,0.486,0.855,1.903,0.562,0.734,0.975,1.004,0.402,0.533,1.554,0.789,0.956,0.71,0.83,0.503,0.503,1.343,0.544,2.067,3.591,1.633,0.156,1.152,1.087,0.599,1.887,1.225,0.72,1.317,0.709,2.06,0.859,1.066,1.065,0.516,0.99,0.512,1.357,1.388,0.957,1.452 +NM_138389,0.883,0.982,1.233,0.929,1.147,1.154,0.98,0.918,1.053,1.249,0.957,0.856,0.836,1.043,1.09,1.017,0.982,1.141,1.1,1.316,0.954,1.156,1.067,1.079,0.844,1.013,1.129,1.002,0.726,0.973,0.955,1.108,0.901,1.042,0.943,0.782,0.925,1.045,1.219,0.766,1.032,1.138,0.819,0.971,1.037,1.064,0.975,1.068,0.997,0.915,1.168,0.883,0.796,0.953 +NM_138390,1.249,0.959,1.069,1.006,1.095,0.988,1.121,0.892,0.966,1.085,1.006,0.966,0.879,0.941,1.003,1.021,1.035,1.082,1.005,0.977,0.942,0.808,0.856,1.424,0.88,1.153,1.023,0.971,1.275,0.967,0.94,1.071,1.06,0.983,1.069,0.976,0.922,0.915,0.915,1.134,0.997,1.113,0.91,1.12,1.096,0.903,0.897,1.015,1.026,0.848,1.024,0.848,1.045,1.081 +NM_138391,0.633,0.805,1.157,0.595,1.009,1.281,0.516,0.771,1.131,1.152,0.891,1.362,0.944,0.479,0.813,1.657,0.841,1.182,1.359,1.07,0.394,0.943,1.332,1.22,0.53,0.842,1.302,0.991,0.4,1.154,0.87,1.107,1.187,1.075,0.385,1.074,1.098,1.035,1.141,1.23,1.165,0.98,0.761,1.076,0.973,0.957,0.825,0.826,1.413,0.785,0.912,0.658,0.832,1.343 +NM_138392,1.234,0.877,0.933,1.155,0.892,1.28,0.975,0.852,0.937,0.887,1.069,0.835,0.978,0.743,0.758,1.046,0.927,0.997,1.248,0.996,1.03,0.916,1.158,0.942,1.167,1.435,1.063,0.754,1.003,1.069,0.885,0.977,1.762,1.245,0.648,1.022,0.971,0.787,2.104,1.142,0.874,0.885,0.68,2.077,1.065,0.804,0.898,1.372,0.789,1.235,0.831,0.842,1.003,1.121 +NM_138393,1.004,0.976,1.149,0.839,0.789,0.903,0.581,0.972,1.118,0.924,1.081,0.858,0.989,0.963,1.333,2.731,1.024,0.725,2.05,0.806,1.051,1.353,1.021,0.999,0.587,1.441,0.896,0.981,0.604,0.924,1.182,0.746,1.358,0.915,0.662,1.137,1.656,1.072,0.799,1.949,0.887,0.946,1.303,1.204,1.001,1.004,1.262,1.166,0.851,1.008,0.895,0.556,1.2,1.415 +NM_138394,0.694,1.047,1.091,0.793,0.997,1.601,1.03,0.886,1.044,0.861,1.168,0.895,0.944,0.729,1.226,2.036,0.864,1.149,0.821,1.159,0.612,0.967,1.533,0.919,0.718,0.784,1.251,0.705,1.025,0.978,1.078,1.27,2.121,1.25,0.557,0.783,1.007,1.052,1.546,0.908,0.95,1.132,0.753,0.899,0.843,1.03,0.991,0.812,1.369,0.94,1.131,0.795,0.699,1.386 +NM_138396,0.843,1.025,1.067,0.892,0.733,1.325,0.859,0.61,0.891,1.047,0.921,0.923,0.846,0.709,0.954,1.308,0.935,1.132,1.045,1.067,0.885,0.91,1.139,0.897,1.05,0.858,1.071,0.825,0.676,1.261,0.817,1.111,1.143,1.28,0.654,0.913,0.889,0.929,1.57,1.154,0.771,1.149,0.742,1.392,0.89,0.852,0.976,0.984,0.776,1.004,0.924,0.83,1.075,1.231 +NM_138397,0.957,1.017,1.066,0.998,1.104,0.953,0.887,0.947,1.028,1.058,0.965,1.061,1.007,1.273,1.051,0.919,1.076,1.024,0.933,1.01,1.069,0.942,0.934,0.956,0.974,1.034,0.956,0.809,0.833,0.888,0.958,1.078,1.111,1.02,0.991,0.874,1.025,0.943,1.128,1.8,0.85,1.029,0.82,1.053,0.97,0.92,1.022,0.877,0.921,1.004,0.944,0.988,0.999,1.907 +NM_138399,0.523,0.965,1.197,0.838,0.848,0.569,0.743,0.511,0.934,0.992,1.119,0.684,0.572,0.708,0.856,0.944,1.102,1.082,1.172,1.149,0.605,0.817,1.108,0.817,0.561,0.794,0.891,0.72,0.804,1.397,0.687,1.733,1.051,1.618,0.432,1.636,0.876,0.615,0.912,1.486,0.854,1.157,1.005,1.264,0.743,1.18,1.257,0.827,0.967,0.904,0.947,0.943,0.993,1.258 +NM_138403,1.006,0.949,1.103,0.953,0.968,0.954,1.083,0.99,1.146,0.827,1.09,1.07,0.979,1.008,1.182,1.1,0.957,0.999,1.018,0.958,1.022,0.93,1.1,1.017,1.124,0.991,0.975,1.086,1.087,1.095,0.949,0.992,0.959,1.035,0.924,0.927,1.009,0.936,1.092,0.973,0.976,0.972,1.116,1.094,0.984,1.017,1.009,0.954,0.926,0.906,0.945,1.017,0.863,1.013 +NM_138409,0.567,1.921,0.563,1.817,0.608,3.573,1.147,0.531,0.639,0.546,2.182,0.472,0.619,0.719,0.976,1.673,0.555,1.208,0.626,2.072,0.495,0.552,2.91,0.527,1.077,0.53,0.954,0.595,1.036,2.537,0.59,0.651,0.621,3.488,0.466,0.96,2.074,0.557,3.2,0.465,0.642,2.396,1.335,0.805,0.537,1.919,0.647,0.564,1.464,0.574,2.422,0.679,0.592,0.892 +NM_138410,0.926,1.074,1.004,1.111,0.84,0.951,0.89,0.845,0.881,0.846,0.902,0.85,0.902,0.875,1.027,0.774,0.87,0.872,1.019,0.964,0.994,0.914,0.972,0.885,1.101,1.006,0.918,0.87,0.683,1.003,0.964,1.47,1.23,1.093,0.933,1.128,1.023,0.782,1.134,1.158,0.977,0.955,0.992,1.367,0.849,0.919,1.0,0.839,0.928,0.833,1.005,1.159,0.859,1.555 +NM_138412,1.13,0.767,0.727,0.985,1.042,0.968,0.774,1.086,1.311,1.047,0.871,0.825,0.92,0.97,0.99,1.128,1.17,0.973,1.113,0.701,0.95,1.161,1.175,1.043,0.891,1.57,1.216,0.971,0.756,0.909,1.307,0.931,1.66,0.989,1.56,0.782,0.864,1.02,1.628,0.793,1.039,0.848,1.22,1.052,1.221,0.926,1.127,1.477,1.178,1.132,0.882,0.79,0.862,1.158 +NM_138413,1.098,0.983,1.088,0.939,1.192,1.02,1.001,0.961,1.199,1.152,0.981,1.116,0.921,0.898,0.909,1.059,1.02,1.078,1.154,1.028,1.041,1.076,1.049,1.234,0.983,1.158,1.003,1.043,0.869,0.94,1.065,0.925,1.014,0.827,1.006,0.937,0.927,1.046,0.898,0.902,1.057,0.83,0.857,0.978,1.17,1.158,1.151,1.006,1.023,0.936,0.924,0.798,1.023,0.985 +NM_138414,0.959,0.998,1.016,0.868,0.987,1.02,0.728,0.783,0.976,0.886,1.061,0.791,0.958,0.875,0.852,1.225,0.979,0.971,1.084,1.0,0.943,0.83,1.156,1.06,0.84,0.928,1.0,0.859,0.796,1.072,0.853,1.327,2.139,1.324,0.669,0.997,0.866,0.906,1.178,0.952,0.964,1.201,0.762,1.227,0.963,0.932,0.864,0.919,1.012,1.053,0.951,0.957,0.924,2.12 +NM_138415,1.002,0.852,1.007,1.072,1.13,1.073,1.282,0.822,0.963,0.902,0.923,1.059,1.003,1.197,0.921,1.01,0.99,1.014,1.016,0.886,1.007,0.956,0.889,1.019,1.014,0.955,0.956,0.958,1.2,1.086,1.072,1.064,1.117,1.072,1.03,1.113,0.927,1.057,0.99,0.997,0.899,0.924,1.13,0.974,0.904,0.968,0.908,1.125,0.922,1.144,0.97,0.981,0.988,0.93 +NM_138416,1.037,0.908,1.096,1.174,1.04,1.146,1.109,1.065,0.903,1.252,0.967,1.062,0.918,1.092,1.038,1.172,0.829,0.979,0.896,1.093,0.914,0.997,0.847,1.137,1.007,1.144,0.884,1.083,0.994,1.078,1.048,0.898,0.884,0.956,1.045,1.025,0.872,1.187,0.88,1.035,0.949,0.879,1.185,1.104,1.086,0.939,1.031,1.149,1.002,1.066,0.982,1.013,1.051,1.028 +NM_138417,0.813,0.981,0.989,0.871,0.962,1.075,0.78,0.766,0.911,1.082,1.245,0.921,0.783,0.69,0.82,1.408,0.928,0.865,1.128,0.952,0.897,0.877,1.136,1.004,0.748,0.806,1.225,0.763,0.868,1.161,0.91,1.419,2.723,1.216,0.538,1.011,1.093,1.041,1.262,0.721,0.951,1.088,0.746,1.037,0.871,0.933,0.859,0.752,0.987,0.829,1.049,0.977,1.058,1.496 +NM_138418,0.652,0.984,0.669,1.043,0.606,1.379,0.752,0.658,0.726,0.817,1.521,0.697,0.878,0.658,0.903,1.713,0.629,1.112,0.817,0.934,0.705,0.842,1.246,0.69,1.299,0.878,0.798,0.678,0.841,1.026,0.67,1.058,1.719,1.363,0.519,1.049,1.495,0.791,3.702,0.78,0.727,1.33,1.115,1.886,0.632,1.14,1.144,0.892,1.35,0.718,1.034,0.915,0.64,1.206 +NM_138419,0.913,0.907,1.062,0.953,0.852,0.953,1.085,0.957,0.832,0.949,1.026,0.911,0.86,0.889,0.913,1.044,1.004,0.967,1.013,0.958,0.956,0.928,1.141,0.891,0.906,1.028,1.039,0.911,0.794,0.97,0.861,0.933,1.402,0.884,0.885,1.051,1.103,0.931,1.078,1.095,0.951,1.113,1.187,1.145,1.008,1.042,0.962,0.993,1.193,0.884,1.143,1.06,0.86,1.193 +NM_138421,0.598,0.8,0.974,0.704,0.682,1.36,0.769,0.56,1.017,0.902,1.317,0.963,0.657,0.621,1.001,1.703,0.75,0.822,1.125,0.86,0.604,0.764,2.013,1.144,0.745,0.633,1.482,0.679,0.436,1.271,0.748,0.939,2.152,1.387,0.35,1.718,1.319,0.773,2.071,0.89,0.888,1.204,0.727,0.791,0.982,1.191,1.073,0.557,1.148,0.594,1.253,1.105,0.941,1.692 +NM_138422,0.927,0.765,1.023,1.035,0.829,1.288,0.695,0.809,0.925,0.921,1.153,0.871,0.79,0.699,1.206,1.791,0.984,0.953,1.421,1.083,0.89,0.959,1.129,0.935,0.797,1.023,1.041,0.881,0.613,0.885,0.949,0.747,2.179,1.107,0.707,0.933,0.996,0.854,1.396,1.575,0.921,1.138,1.135,1.168,0.954,1.054,0.868,0.853,1.273,1.313,1.036,0.733,1.131,1.01 +NM_138423,0.988,0.922,1.072,0.914,0.932,0.962,0.974,1.148,1.083,1.026,1.088,0.924,0.967,1.01,0.973,1.074,0.992,1.02,0.893,1.142,0.988,0.987,1.126,0.975,0.96,1.089,0.955,1.014,0.837,1.055,0.984,1.009,1.097,1.032,1.049,0.985,1.041,0.878,0.972,0.863,0.957,0.913,0.891,1.012,1.043,1.129,1.051,0.994,1.074,1.088,1.048,1.08,0.863,1.052 +NM_138424,1.063,1.001,0.852,0.987,0.98,0.847,0.855,1.328,0.843,0.998,1.099,0.84,0.893,0.98,1.173,1.071,0.935,0.909,0.764,1.058,0.918,0.857,1.061,0.841,0.915,1.167,0.917,0.969,1.234,1.231,0.931,1.103,0.824,1.032,0.854,0.865,1.009,1.143,1.058,1.048,0.905,0.919,0.909,0.845,0.914,1.018,0.897,1.037,1.109,0.819,1.136,0.99,0.762,0.956 +NM_138425,0.525,1.581,0.825,0.91,0.666,1.515,0.846,0.457,0.717,0.7,1.755,0.841,1.001,0.421,0.874,1.886,0.518,1.075,1.117,1.26,0.602,0.62,1.982,0.938,1.185,1.061,0.723,0.783,0.517,1.573,0.593,1.819,1.345,2.095,0.136,1.304,1.153,0.977,1.806,0.722,0.92,1.77,0.566,1.11,0.71,1.071,1.159,0.786,0.906,0.617,1.076,0.803,0.676,0.963 +NM_138429,1.8239999999999998,1.8820000000000001,1.893,2.326,1.988,1.9249999999999998,2.234,1.982,1.9779999999999998,1.999,2.067,2.027,1.81,2.181,2.249,3.632,1.7639999999999998,1.857,1.8820000000000001,2.372,1.942,1.842,2.2489999999999997,2.054,1.94,1.8599999999999999,1.8479999999999999,1.804,2.198,1.972,1.8239999999999998,2.041,1.615,2.0629999999999997,2.133,2.0420000000000003,2.661,2.092,1.884,1.814,1.891,1.988,2.617,1.939,1.867,2.137,2.16,1.821,2.371,2.21,2.299,1.7810000000000001,2.038,1.9329999999999998 +NM_138430,0.915,0.987,1.122,1.048,0.866,0.914,0.949,1.029,0.954,1.105,1.108,1.03,1.074,0.913,1.211,1.155,1.094,1.011,1.053,0.947,0.89,0.905,0.877,0.927,1.096,1.094,0.877,0.984,0.916,0.953,1.067,0.943,1.126,1.027,1.033,1.338,1.033,0.938,1.039,0.985,1.092,0.913,0.992,1.022,0.836,1.0,0.934,0.965,0.812,0.918,1.047,0.727,0.862,1.024 +NM_138431,0.636,2.307,0.908,0.765,0.992,1.396,0.776,0.323,1.056,1.059,1.305,0.764,0.47,0.539,0.869,1.315,0.719,1.394,1.115,1.592,0.324,0.67,1.762,1.051,0.716,0.872,1.235,0.952,0.662,1.838,0.653,1.828,0.534,1.358,0.185,1.16,1.364,0.981,1.319,1.581,1.008,1.548,0.852,1.01,1.057,2.676,1.567,0.746,1.916,0.658,1.332,0.568,0.633,0.528 +NM_138432,0.285,1.464,0.342,0.866,0.362,1.793,1.135,0.202,0.355,0.396,2.124,0.443,0.23,0.268,0.865,1.784,0.371,0.806,0.33,1.991,0.268,0.234,1.939,0.453,1.078,0.321,0.396,0.232,0.681,2.121,0.277,1.396,0.338,1.647,0.195,1.402,2.01,0.356,1.48,0.956,0.354,1.736,1.519,0.754,0.537,1.942,0.536,0.228,1.385,0.214,1.977,1.221,0.4,1.55 +NM_138433,0.958,1.044,1.035,0.972,1.102,0.994,0.959,0.911,1.024,0.923,0.875,1.006,0.965,1.037,0.93,1.035,1.024,0.866,0.94,0.944,1.219,1.041,1.049,0.948,0.988,0.93,0.781,1.073,1.16,1.019,0.848,1.065,1.004,0.953,1.003,1.0,0.987,1.027,1.003,0.869,1.212,1.0,1.096,1.03,0.995,0.94,1.027,1.025,0.958,1.127,0.953,1.058,1.049,0.912 +NM_138434,0.78,0.927,1.018,0.779,0.796,1.13,0.855,0.822,0.871,0.886,1.05,0.862,0.866,0.942,1.031,1.137,0.898,1.011,0.85,1.195,0.724,0.848,1.486,0.989,0.829,0.848,1.085,0.849,0.764,1.614,0.85,1.078,0.893,0.916,0.834,1.011,1.233,0.893,1.06,1.101,0.923,1.047,1.044,1.381,0.959,1.077,1.034,0.867,0.992,0.982,1.033,0.987,1.345,1.89 +NM_138435,0.685,1.005,1.142,0.847,0.947,1.604,1.155,0.527,0.828,1.266,1.092,1.176,0.741,0.595,0.869,1.174,0.882,1.225,1.155,1.147,0.707,0.813,1.142,1.007,0.784,0.97,0.886,0.946,0.973,1.627,0.724,0.36,0.693,1.663,0.544,0.687,0.997,1.122,1.014,0.59,1.0,1.011,1.537,0.721,1.134,1.265,0.947,1.031,1.162,1.048,0.899,0.564,1.201,1.386 +NM_138436,0.581,1.45,1.111,0.731,0.772,1.835,0.598,0.764,1.138,0.757,1.326,0.907,0.893,0.657,0.932,1.631,0.559,0.873,0.91,1.323,0.515,0.826,1.428,0.859,0.635,0.778,1.011,0.925,0.445,1.536,1.012,1.127,2.822,2.292,0.361,0.735,1.04,0.972,1.162,0.335,0.941,1.623,0.628,1.273,0.645,1.854,0.803,0.646,1.011,0.515,1.209,0.538,0.673,1.188 +NM_138437,0.864,1.016,1.426,0.853,1.104,0.895,1.048,0.841,1.212,1.022,0.917,1.281,1.039,0.994,0.881,1.139,1.017,0.9,1.187,1.001,0.914,1.113,1.037,1.227,0.868,1.02,1.346,1.028,0.718,1.013,1.146,1.692,1.744,1.248,0.634,0.949,0.923,1.082,0.879,0.828,1.209,1.088,0.9,1.023,1.118,0.929,0.899,0.95,0.89,0.85,0.858,0.895,1.138,0.922 +NM_138439,0.813,0.956,1.217,0.789,0.788,1.22,0.544,0.514,1.239,1.007,1.035,0.926,0.815,0.793,0.927,1.044,1.214,0.809,1.001,0.833,0.546,0.879,1.108,0.872,0.705,0.901,1.133,0.796,0.434,1.272,0.968,1.673,1.19,1.535,0.431,0.581,0.935,0.782,1.133,1.05,1.223,1.161,0.84,1.272,0.985,0.999,0.931,0.763,0.778,1.008,1.06,0.803,1.011,1.056 +NM_138440,3.815,0.656,1.87,0.975,2.853,0.293,0.322,3.544,3.105,1.377,0.282,1.192,1.938,1.744,2.094,0.822,1.823,1.292,3.933,0.297,1.947,3.12,0.374,1.32,0.563,4.256,2.011,2.233,0.186,0.697,3.276,4.691,1.598,0.624,7.15,0.315,0.322,4.365,0.989,1.353,2.189,0.6,0.33,0.397,3.4,0.345,1.708,4.061,0.381,1.982,0.665,0.982,2.266,1.078 +NM_138441,0.931,1.02,0.908,0.927,0.939,1.14,0.87,1.186,1.047,0.967,0.889,1.043,0.826,0.714,0.941,0.936,1.067,0.92,0.959,0.955,0.859,0.853,0.958,0.942,0.978,1.002,1.2,0.946,0.739,1.099,0.924,0.935,1.01,1.058,0.978,1.097,1.033,1.076,1.174,1.202,0.994,1.002,0.969,1.061,1.072,1.067,0.97,0.97,1.001,1.025,1.177,0.972,1.089,1.39 +NM_138442,0.523,1.27,0.913,0.625,0.839,1.396,0.994,0.526,1.005,0.82,0.783,1.009,0.576,0.446,0.812,1.466,0.596,0.978,0.918,1.177,0.497,0.805,2.009,1.036,0.572,1.002,0.766,1.042,0.793,1.382,0.813,1.07,1.339,1.837,0.467,1.187,0.882,0.845,1.494,0.861,1.005,0.986,0.668,1.37,0.768,0.904,0.79,0.87,1.117,0.618,0.927,1.057,0.777,1.309 +NM_138443,0.71,0.909,1.169,0.82,1.062,1.043,0.808,0.728,1.108,0.964,1.353,0.892,0.788,0.643,1.068,2.115,0.772,1.032,1.38,0.962,0.737,0.924,1.354,1.084,0.735,0.748,1.251,0.962,0.521,1.631,0.864,1.031,3.602,1.328,0.698,0.975,1.156,0.837,1.138,0.799,1.086,1.034,0.817,1.636,0.92,1.295,1.031,0.754,0.842,0.833,1.052,0.889,0.98,1.159 +NM_138444,0.783,1.064,0.906,0.901,0.905,0.896,0.927,0.822,0.941,1.095,1.031,0.883,0.844,0.847,1.034,1.107,0.85,0.778,0.822,0.998,0.954,0.698,1.646,0.955,0.805,0.782,1.095,0.868,0.657,1.082,0.837,1.739,1.052,1.09,0.828,1.082,1.063,0.802,1.234,1.002,1.042,1.198,1.237,1.035,0.846,1.047,1.164,0.834,1.247,0.907,1.24,1.03,1.06,1.221 +NM_138445,0.91,1.042,0.898,1.039,0.955,0.893,0.857,0.919,0.893,0.863,1.087,0.952,0.99,1.073,1.43,1.01,0.887,0.876,1.177,0.852,1.076,0.959,1.056,0.868,1.219,0.901,0.872,0.973,0.862,1.08,0.81,1.414,1.274,1.244,0.958,1.035,1.007,0.999,1.317,0.981,1.03,1.256,0.858,1.083,0.903,0.858,0.99,0.904,0.898,1.003,1.029,0.92,0.918,1.034 +NM_138446,0.513,0.763,1.136,0.491,1.006,0.984,0.546,0.506,1.286,1.086,1.214,0.924,0.562,0.744,0.91,1.703,0.774,0.809,1.484,0.646,0.621,0.831,1.596,1.264,0.432,0.688,1.245,0.826,0.336,1.256,1.139,1.531,3.174,1.304,0.171,1.224,1.016,0.921,0.931,0.699,1.26,0.913,0.525,1.549,1.085,0.799,1.33,0.638,0.885,0.654,0.954,1.406,1.167,2.499 +NM_138447,0.653,1.498,0.839,0.677,0.699,1.301,0.644,0.588,0.682,0.711,1.148,0.729,0.756,0.508,0.736,1.28,0.7,0.888,0.656,1.311,0.558,0.7,1.408,0.809,0.815,0.634,1.107,0.808,0.595,1.167,0.673,1.843,1.478,1.342,0.368,0.922,1.668,0.815,1.606,1.309,0.745,1.442,0.919,1.177,0.756,1.213,0.914,0.539,0.989,0.687,1.4,0.869,0.7,0.46 +NM_138448,0.959,0.882,1.004,1.139,0.9,1.042,0.877,1.074,1.007,0.955,1.065,0.918,1.172,0.853,0.99,1.11,1.017,0.986,0.959,0.998,0.952,1.248,0.927,1.022,1.118,1.015,0.991,0.844,1.202,1.024,0.869,1.104,0.888,0.921,1.009,0.977,1.062,0.984,0.914,0.947,1.016,0.999,1.182,0.903,0.948,1.021,0.981,0.896,0.924,0.902,0.932,1.052,1.177,0.889 +NM_138450,1.012,0.99,1.189,1.055,1.028,0.99,1.124,1.099,1.117,0.972,0.855,1.088,1.105,0.987,0.926,0.97,0.972,1.226,0.998,0.933,0.97,1.049,0.885,1.002,1.097,1.002,1.0,0.905,0.992,0.947,1.067,0.991,1.062,1.011,0.93,1.057,0.974,0.884,0.969,0.962,0.926,0.791,0.986,0.902,0.864,1.055,1.066,0.875,1.082,0.819,1.081,0.841,0.972,1.128 +NM_138451,1.084,0.931,1.132,0.902,0.992,1.023,0.786,1.111,1.145,1.209,0.925,0.971,0.938,0.961,0.831,0.985,1.237,0.997,1.027,0.863,1.141,1.025,0.941,1.119,1.025,1.093,1.106,1.124,0.665,0.932,1.038,1.142,0.899,1.127,0.967,0.92,1.027,0.954,0.977,1.034,1.022,0.849,1.148,0.964,1.272,0.831,1.117,1.133,0.919,0.972,0.912,0.934,1.024,1.003 +NM_138452,1.211,0.584,2.055,0.532,2.659,0.808,0.286,1.726,3.533,2.438,1.099,1.496,0.709,1.035,1.795,1.747,1.584,1.244,3.189,0.987,0.686,1.456,0.674,2.639,0.353,1.862,2.235,2.681,0.466,1.168,1.138,0.626,1.164,0.96,0.385,0.219,0.835,3.065,0.553,0.211,2.361,0.698,0.895,0.299,1.266,1.013,2.212,1.272,0.727,0.731,0.953,0.634,2.427,0.56 +NM_138453,0.97,1.272,0.914,0.803,0.971,0.961,1.155,0.877,1.177,1.061,1.147,0.816,0.938,0.8,0.83,0.841,0.905,0.872,1.071,1.034,0.787,0.939,1.226,0.997,1.04,0.956,0.983,0.961,0.74,1.343,0.97,1.092,1.054,1.247,1.035,0.986,1.019,0.874,1.272,0.933,1.004,1.08,0.999,1.123,0.864,0.949,1.328,1.008,0.884,0.904,0.877,0.982,0.95,1.076 +NM_138454,1.098,1.042,1.033,0.957,1.032,0.945,0.975,0.962,1.022,0.88,1.003,1.027,1.085,1.032,0.962,1.0,0.991,0.945,1.138,0.919,0.977,0.951,1.09,1.003,0.937,0.965,0.941,1.062,1.097,0.974,0.98,0.957,0.911,0.995,1.085,1.161,1.053,0.924,1.0,0.996,0.905,0.982,1.094,1.01,1.113,1.024,1.064,0.998,1.037,0.987,0.945,0.962,1.075,0.9 +NM_138456,0.861,1.105,0.785,0.925,0.899,1.092,1.107,0.918,0.918,1.012,0.902,0.861,0.808,0.838,1.263,1.014,0.855,0.884,0.797,1.057,0.877,0.866,0.824,0.794,1.044,0.885,0.915,0.853,0.805,1.108,0.983,1.137,1.001,1.108,0.864,1.145,1.194,0.856,1.389,1.349,0.711,1.147,1.104,1.109,0.857,1.015,0.924,0.745,1.351,0.951,1.21,0.914,1.002,2.345 +NM_138457,0.697,1.042,0.747,1.02,0.848,1.381,1.154,0.77,0.689,0.876,1.195,0.699,0.68,0.719,0.852,1.402,0.737,1.01,0.708,1.174,0.751,0.84,1.418,0.704,1.16,0.787,0.696,0.742,1.444,1.207,0.853,1.507,2.246,2.24,0.689,1.149,0.931,0.736,1.823,1.174,0.76,1.354,0.962,1.616,0.844,1.013,0.777,0.759,0.8,0.682,1.171,0.911,0.761,0.947 +NM_138458,0.938,1.024,1.149,0.874,0.932,1.041,0.688,0.607,0.993,1.017,0.94,1.155,0.924,0.745,0.814,1.029,1.043,0.878,1.045,1.074,0.827,0.816,1.288,0.932,0.827,0.919,1.194,0.931,0.561,1.051,0.976,1.341,1.93,0.961,0.564,1.252,0.894,0.871,1.234,0.982,1.026,1.104,0.622,1.099,0.97,1.146,0.953,0.773,1.036,0.793,1.052,0.787,0.825,1.513 +NM_138459,0.566,1.219,0.913,0.851,0.864,1.189,0.788,0.429,1.025,0.931,1.101,0.49,0.527,0.681,0.799,1.478,0.708,0.936,1.224,0.88,0.507,0.589,1.163,1.071,0.754,0.649,1.252,0.793,0.486,1.276,0.736,0.927,2.118,1.513,0.285,0.816,1.299,0.895,2.029,0.757,1.07,1.27,0.972,1.261,0.923,1.308,1.064,0.562,1.24,0.815,1.105,0.886,1.085,2.265 +NM_138460,0.906,1.011,0.932,0.889,0.908,0.987,1.115,1.027,1.003,0.953,1.015,1.085,0.869,1.02,1.092,0.832,1.028,0.964,0.954,1.018,0.785,1.054,0.902,1.078,1.035,1.033,0.98,1.025,0.935,0.956,1.025,1.118,0.819,1.137,1.058,0.997,1.03,1.158,1.135,0.971,0.859,0.975,1.102,0.981,0.93,0.905,1.002,1.101,1.032,0.948,1.022,1.114,0.949,0.936 +NM_138461,0.933,0.925,0.993,1.011,1.015,1.031,1.044,0.825,0.966,1.101,1.112,0.999,0.865,1.043,1.215,0.952,0.863,0.949,1.213,1.032,0.904,1.095,1.075,1.002,0.948,0.879,0.978,1.108,0.825,1.033,0.95,0.904,0.992,1.007,0.92,1.145,1.001,1.124,0.928,1.251,1.06,0.999,0.882,1.061,1.031,1.082,1.083,1.026,1.01,0.986,0.901,1.022,1.155,1.046 +NM_138462,1.006,0.902,1.114,0.774,1.068,0.813,0.751,0.797,1.215,1.344,0.839,0.95,0.899,0.84,0.932,0.955,0.875,0.923,1.224,0.762,0.839,0.904,1.168,1.11,0.713,1.267,1.296,1.101,0.655,0.828,0.996,1.499,1.617,1.013,0.517,3.779,0.753,0.982,1.242,1.009,1.235,0.875,0.746,1.699,1.44,0.746,1.043,1.082,0.818,1.117,0.939,1.135,1.347,2.438 +NM_138463,0.923,1.261,0.874,0.91,0.835,1.103,0.757,0.855,0.942,0.951,1.053,0.942,0.968,0.87,1.005,1.023,0.915,0.943,1.214,1.03,0.937,0.98,1.059,1.03,0.875,1.147,0.943,0.798,0.97,1.222,0.888,1.073,2.704,1.497,0.658,1.809,0.989,0.855,1.627,0.837,0.829,1.17,1.096,1.914,1.039,0.869,1.069,0.957,0.98,1.016,0.988,1.118,0.97,1.236 +NM_138465,0.864,1.224,1.395,0.89,0.975,0.938,0.746,0.755,1.077,0.855,0.963,0.873,0.802,1.118,1.39,0.999,1.07,0.854,1.28,1.222,0.669,0.884,0.988,0.906,0.82,1.055,1.47,0.913,0.544,0.941,0.97,1.6,1.331,1.173,0.515,1.865,0.674,0.874,1.027,1.303,1.146,0.94,0.771,1.277,0.973,0.992,0.744,0.819,0.814,0.822,0.797,0.613,1.021,1.685 +NM_138467,0.831,1.076,1.096,0.821,1.049,1.105,0.975,0.999,1.449,0.926,0.851,1.145,1.004,0.839,0.93,1.117,0.835,0.984,0.819,1.144,0.867,0.825,1.12,1.256,0.857,0.832,1.133,1.121,0.928,1.111,0.991,1.054,1.28,1.13,0.882,0.869,0.842,0.919,1.271,1.024,1.196,1.143,0.956,0.931,1.016,1.118,1.154,0.776,1.071,0.85,1.1,0.91,0.707,1.3 +NM_138468,0.91,1.001,1.093,0.986,0.919,1.093,0.978,1.188,0.961,0.88,1.018,0.975,0.944,0.838,0.879,1.01,0.936,1.053,1.224,0.966,1.018,0.904,1.047,0.996,1.159,0.955,1.004,1.021,0.734,0.973,0.991,1.172,0.947,1.152,1.045,0.988,0.879,1.019,0.877,0.919,0.995,1.036,0.917,0.941,0.939,0.892,0.979,1.066,0.945,0.848,1.084,0.953,1.09,0.996 +NM_138470,1.006,1.081,0.909,0.882,1.044,1.013,0.902,0.889,1.145,0.942,0.921,1.124,0.928,0.771,1.038,0.933,0.987,1.022,0.881,0.95,0.893,1.013,0.918,0.894,0.968,1.017,0.857,1.129,0.692,1.058,0.996,1.009,0.976,0.963,0.932,0.95,1.116,1.214,1.114,1.121,1.058,1.016,1.194,1.062,0.902,0.977,1.069,1.054,1.052,0.996,1.187,0.878,0.896,0.916 +NM_138471,1.091,0.953,1.098,1.024,1.07,0.876,1.046,0.89,0.982,0.98,0.897,1.09,0.898,0.924,1.128,1.035,0.999,1.049,0.899,1.049,1.092,1.019,0.966,0.968,0.928,0.858,1.051,1.016,0.937,0.931,0.913,1.276,1.67,1.112,0.937,0.937,0.902,1.013,1.112,1.374,0.965,1.063,1.41,1.058,0.951,1.005,0.855,1.105,1.008,0.99,0.824,0.968,1.013,1.116 +NM_138473,0.816,0.856,1.638,0.921,0.788,0.897,0.711,0.58,1.042,0.898,0.873,0.659,0.56,0.846,0.737,1.308,0.82,0.984,1.226,1.279,0.701,0.561,1.6,0.748,0.844,0.857,1.294,0.763,0.348,1.107,1.074,1.437,1.948,1.358,0.579,1.019,0.581,0.769,1.351,1.2,0.965,1.373,0.774,1.37,1.008,0.755,0.816,0.617,0.975,1.07,1.15,1.092,1.239,2.019 +NM_138476,0.799,0.932,1.173,0.977,0.915,0.985,0.93,0.672,0.934,0.975,1.336,0.926,0.894,0.791,0.973,1.129,0.819,1.016,1.206,1.027,0.783,0.835,1.119,0.924,0.975,0.941,0.992,0.946,0.737,1.113,0.848,1.416,1.173,1.469,0.546,0.819,1.112,0.938,1.098,0.886,1.142,1.378,0.694,1.542,0.759,1.013,1.174,0.972,0.743,0.744,0.983,0.917,0.827,1.089 +NM_138477,0.887,1.103,1.296,0.893,0.958,1.014,0.896,0.813,1.091,0.998,1.012,1.085,0.808,0.939,0.958,0.887,1.1,0.937,1.234,1.106,0.99,1.005,1.545,1.083,0.721,0.997,1.558,0.897,0.63,0.918,1.179,1.278,1.289,1.166,0.603,0.968,0.895,0.872,1.113,0.958,0.992,1.182,0.678,0.924,1.043,0.857,0.957,0.814,0.861,0.852,1.039,0.89,0.941,1.749 +NM_138479,0.983,0.868,1.082,0.96,1.036,1.057,0.911,1.014,1.231,1.027,0.847,1.0,0.849,0.847,0.768,1.145,1.008,0.979,1.144,0.898,1.016,1.196,1.032,0.975,0.856,0.894,1.112,1.17,1.02,0.94,1.028,1.059,1.223,0.978,1.087,0.954,0.974,1.231,1.294,0.907,0.893,1.039,0.919,1.093,1.021,1.012,1.048,1.19,0.957,1.061,1.055,0.866,1.18,1.185 +NM_138482,0.801,1.344,0.844,0.924,0.866,1.585,1.048,0.958,0.762,0.768,1.155,0.841,0.744,0.864,1.057,1.34,0.774,0.962,0.776,1.287,0.694,0.837,1.429,0.847,1.047,0.793,0.744,0.769,1.56,1.203,0.826,1.284,1.301,1.541,0.796,1.196,1.127,0.661,1.22,1.399,0.806,1.331,1.007,1.229,0.704,1.058,0.785,0.859,0.858,0.876,1.237,0.903,0.778,0.965 +NM_138484,1.011,0.892,1.006,1.095,0.933,1.01,1.017,0.885,0.949,0.861,0.911,1.024,1.107,0.797,1.269,0.985,1.044,0.92,0.862,0.927,0.974,0.9,1.191,0.931,0.978,0.956,1.244,0.943,0.902,0.999,1.059,1.035,1.559,0.889,0.982,1.346,0.902,1.003,1.196,0.998,1.049,0.816,0.851,1.153,0.925,1.127,0.915,0.838,0.995,0.953,1.032,0.961,0.934,1.342 +NM_138490,0.968,0.955,1.119,0.808,0.979,1.073,1.06,0.778,0.926,1.089,0.949,0.886,0.955,0.92,1.002,0.937,1.0,0.949,1.0,0.972,0.862,0.931,1.081,1.021,0.904,0.886,1.112,0.95,0.799,1.079,1.079,1.134,0.936,1.011,0.805,0.871,0.937,0.952,1.004,0.896,1.1,1.008,0.85,0.975,1.071,1.01,1.138,0.768,1.326,1.006,1.178,0.973,0.824,0.937 +NM_138492,1.419,2.159,1.442,1.655,1.38,3.607,2.123,1.378,1.476,1.504,3.695,1.3860000000000001,1.504,1.516,2.1849999999999996,4.7059999999999995,1.358,1.751,1.444,2.56,1.397,1.339,3.0020000000000002,1.6829999999999998,1.853,1.362,1.52,1.176,1.9529999999999998,2.407,1.325,1.9249999999999998,3.315,2.383,1.417,2.279,3.005,1.423,2.425,2.294,1.524,2.127,3.1639999999999997,1.968,1.365,2.6470000000000002,2.4530000000000003,1.516,3.523,1.465,2.784,1.877,1.463,2.503 +NM_138494,0.903,0.839,1.851,0.978,0.983,0.952,0.848,0.739,1.557,1.047,0.672,0.875,1.009,0.8,1.064,1.207,1.101,1.033,1.149,1.232,0.859,1.098,1.217,1.335,0.882,0.861,1.679,1.04,0.656,1.051,1.238,1.864,0.829,1.256,0.581,0.62,0.962,0.918,0.614,0.703,1.284,0.9,0.562,0.972,1.165,0.866,0.809,0.905,0.543,0.957,0.654,0.861,1.158,0.856 +NM_138497,1.05,1.095,0.898,1.005,1.017,0.953,0.98,1.169,0.95,0.964,1.089,0.899,1.026,1.052,1.029,0.952,0.954,0.929,1.096,1.035,0.975,0.907,0.964,0.892,1.048,1.151,0.911,0.873,1.282,0.968,0.968,1.062,0.955,0.983,1.221,1.009,0.928,1.107,1.107,0.921,1.113,0.893,1.153,0.981,1.033,1.041,0.908,0.912,0.954,0.918,0.997,1.154,0.936,1.01 +NM_138499,1.405,0.905,0.722,1.042,1.067,1.486,0.652,0.978,1.188,0.578,0.973,0.807,1.287,0.75,1.003,1.136,0.979,1.199,1.04,0.912,0.881,1.286,1.05,0.929,0.996,1.901,0.674,1.073,0.925,1.235,1.012,0.874,1.257,1.528,2.418,0.787,0.731,0.962,1.726,0.58,1.053,0.931,0.546,1.305,0.961,0.791,0.817,1.981,0.526,1.053,0.805,0.651,0.99,1.218 +NM_138501,2.36,0.548,2.23,1.168,1.963,0.588,0.287,1.254,2.817,2.233,0.689,0.745,1.1,1.818,1.427,1.503,2.183,1.253,3.415,0.446,1.297,0.982,0.92,2.018,0.483,2.942,1.789,1.372,0.225,0.875,2.449,0.62,2.223,1.004,1.79,0.494,0.575,2.067,1.047,0.528,2.333,0.686,0.395,1.365,1.714,0.373,1.366,1.449,0.536,2.474,0.85,0.809,2.173,0.859 +NM_138551,2.124,1.939,3.231,2.041,2.067,1.893,1.913,1.9939999999999998,2.557,2.265,2.0860000000000003,2.2409999999999997,2.27,2.4139999999999997,2.545,2.221,2.32,2.206,2.941,1.9020000000000001,2.1239999999999997,2.364,1.974,2.4130000000000003,1.815,1.938,3.2,2.253,2.455,2.0700000000000003,2.202,2.073,2.202,1.9449999999999998,2.05,1.834,1.8849999999999998,2.692,2.1109999999999998,1.815,1.901,1.767,2.4290000000000003,1.717,2.283,1.863,1.8860000000000001,2.2779999999999996,2.034,2.521,1.8319999999999999,1.9569999999999999,2.287,1.995 +NM_138555,1.204,1.145,1.002,0.782,1.024,0.986,0.871,0.898,0.89,0.914,0.998,0.743,0.848,0.91,0.867,0.91,0.738,0.977,1.174,0.91,0.923,1.018,1.112,0.93,1.02,1.096,0.92,0.916,1.146,0.866,1.109,1.162,1.131,0.979,1.04,1.014,0.886,0.846,1.0,0.941,1.296,1.029,1.042,1.025,0.937,1.094,1.013,1.035,1.078,0.95,0.933,1.158,0.775,0.987 +NM_138559,1.083,1.099,1.044,1.033,1.009,0.933,1.039,1.077,1.135,1.047,0.987,0.955,1.139,1.085,0.8,1.052,0.953,0.964,1.034,0.824,0.993,1.162,0.885,1.069,0.876,1.107,1.155,1.0,0.901,0.901,1.117,0.985,0.982,1.027,0.859,1.005,0.93,1.173,0.804,0.841,1.037,1.03,1.019,0.95,1.1,0.919,1.081,1.151,0.79,1.079,0.965,1.059,1.06,0.976 +NM_138564,0.957,0.93,0.972,0.871,0.961,1.149,0.985,1.013,0.901,0.995,1.172,0.95,0.988,1.089,1.221,1.242,1.042,1.027,1.004,1.34,0.966,0.906,1.104,0.998,0.961,0.986,1.05,0.974,1.11,1.091,0.907,0.877,0.857,0.912,0.936,1.138,1.312,1.025,0.979,1.097,0.94,1.194,1.113,1.004,1.016,1.114,0.847,1.12,1.19,1.013,1.215,1.005,0.975,1.006 +NM_138565,0.784,0.831,1.165,1.011,0.848,1.281,0.56,0.374,1.198,1.043,1.037,0.691,0.484,0.652,1.012,1.636,0.898,1.092,1.556,1.079,0.614,0.602,0.98,0.95,0.689,1.282,1.123,0.681,0.374,1.647,0.884,1.286,1.047,1.301,0.379,1.434,0.999,0.846,1.409,0.392,0.936,1.084,0.662,2.225,0.967,1.139,0.882,0.823,1.045,0.923,1.147,0.603,1.183,1.216 +NM_138566,1.093,0.841,1.055,0.915,1.166,0.934,0.833,1.002,1.218,1.179,0.917,1.136,0.972,1.114,0.954,0.989,0.91,1.028,1.016,0.856,1.039,0.998,0.967,1.248,0.897,1.215,1.239,1.115,0.999,0.968,1.257,1.016,1.18,1.09,0.78,0.951,0.965,1.199,0.883,1.305,1.055,0.817,0.865,0.869,1.212,0.831,0.988,1.018,0.846,0.994,0.955,0.993,1.093,1.196 +NM_138567,1.056,0.788,0.907,1.013,0.885,1.022,0.885,1.106,0.967,0.897,0.953,0.928,0.891,0.939,0.869,0.815,0.996,1.115,1.014,1.296,1.005,0.932,1.081,0.938,0.959,1.219,0.978,0.982,0.753,1.055,1.094,1.098,0.963,1.176,0.891,1.087,0.886,0.895,1.234,1.07,0.962,1.188,0.789,0.981,1.055,0.991,0.996,1.406,0.858,0.954,1.025,0.811,1.004,1.52 +NM_138568,1.102,1.025,0.919,0.918,0.858,1.066,0.825,1.01,0.886,0.961,0.894,0.941,0.812,0.988,0.998,1.041,1.02,1.02,1.013,0.978,0.93,1.003,1.027,0.984,0.925,0.833,1.082,0.942,0.929,0.899,1.012,1.049,0.978,0.968,1.136,1.097,1.04,1.099,1.157,0.967,1.009,0.95,1.046,1.049,1.013,0.924,1.083,0.973,0.808,0.897,0.968,1.107,0.921,1.02 +NM_138570,1.707,0.729,3.42,0.939,3.308,0.799,0.756,3.291,2.567,2.353,0.822,2.85,3.298,1.198,1.454,1.643,5.637,2.46,2.32,0.683,1.676,1.415,0.831,2.388,0.939,1.461,2.65,1.592,0.857,0.851,3.646,0.787,1.578,0.718,4.429,0.839,0.762,2.854,0.897,0.761,2.007,0.777,0.932,0.845,6.733,0.891,2.586,2.176,0.959,5.742,1.072,0.911,2.329,0.984 +NM_138571,0.854,0.965,1.187,0.934,1.092,1.124,1.102,1.274,1.37,0.985,1.112,1.069,0.883,1.233,0.931,1.153,1.321,1.128,1.395,0.807,0.85,1.049,0.819,1.099,0.894,0.977,1.178,1.055,0.878,1.029,1.318,0.845,1.408,1.021,0.968,0.934,1.007,0.89,1.022,0.811,1.035,0.889,1.046,1.032,1.0,0.948,1.062,1.135,0.923,1.149,0.857,0.929,1.311,1.44 +NM_138572,1.097,0.932,0.997,1.232,0.706,1.02,0.989,1.029,1.242,1.027,0.874,0.996,0.969,0.849,0.777,1.008,0.876,1.017,1.188,1.109,0.906,0.998,1.01,1.173,0.875,1.074,0.973,0.95,1.088,1.013,0.875,1.088,0.844,1.1,0.975,1.068,0.935,1.2,1.024,1.088,0.906,1.217,1.152,0.839,1.033,0.965,0.974,0.838,0.966,0.953,0.98,0.879,1.208,1.014 +NM_138573,0.87,2.579,1.22,1.381,0.901,1.748,1.066,0.834,0.834,0.883,1.752,0.875,0.799,0.994,0.841,0.842,0.99,1.464,1.314,1.638,0.747,0.904,1.045,0.859,1.426,1.025,1.094,1.023,1.421,1.788,0.9,0.897,0.815,2.051,1.414,1.123,1.169,0.844,2.52,0.784,0.965,1.08,0.877,0.775,1.24,1.173,0.78,0.971,0.676,0.829,1.34,0.767,0.768,0.9 +NM_138574,1.057,0.992,0.899,1.0,1.148,0.964,0.785,1.002,1.027,0.981,0.884,1.11,1.142,0.867,1.178,1.224,1.015,0.892,1.012,1.021,1.048,1.079,1.018,0.976,0.937,1.21,1.072,1.102,1.156,1.019,1.014,1.065,0.907,1.041,0.938,1.013,0.979,0.941,0.988,0.979,0.93,0.95,0.979,1.126,0.987,0.998,1.022,1.112,0.953,1.005,0.956,1.007,1.023,1.06 +NM_138576,1.056,1.117,1.048,1.073,1.1,1.0,0.877,0.929,1.036,1.041,0.905,0.979,0.995,1.142,1.183,0.79,1.103,0.973,0.87,0.868,0.887,1.036,1.143,1.113,0.895,0.995,0.967,1.159,0.907,0.994,0.889,1.109,0.812,1.027,1.108,0.951,0.954,1.154,1.109,1.173,1.092,0.99,0.988,0.974,1.04,1.07,1.171,0.852,0.986,1.06,0.886,1.021,1.139,1.022 +NM_138578,0.959,1.116,1.003,0.822,0.957,0.937,0.887,0.918,0.884,0.799,1.104,0.849,0.84,0.957,1.027,1.011,1.082,1.033,1.164,0.921,0.914,0.943,0.998,0.957,0.928,1.007,0.86,0.868,1.002,0.916,0.939,0.906,1.286,1.022,1.284,0.892,1.067,0.977,1.262,0.884,1.179,0.973,0.971,1.624,1.105,0.948,1.271,0.917,0.885,1.124,0.944,0.93,0.924,1.214 +NM_138609,1.875,1.5619999999999998,2.3,1.6440000000000001,2.0460000000000003,2.161,1.283,1.3780000000000001,3.371,1.9380000000000002,1.9289999999999998,1.479,1.548,1.5859999999999999,2.129,3.365,2.055,1.9289999999999998,2.545,2.118,1.2120000000000002,1.94,2.155,2.2,1.075,1.85,2.071,2.459,0.806,2.368,2.654,2.045,4.1979999999999995,2.654,4.195,1.577,2.075,2.106,2.966,1.7650000000000001,2.394,2.428,1.611,1.541,2.188,2.5380000000000003,2.0759999999999996,1.968,1.964,1.725,2.4050000000000002,1.7309999999999999,2.007,2.048 +NM_138612,2.008,1.859,1.859,2.265,1.794,1.849,1.706,1.96,2.234,2.0989999999999998,1.915,1.952,2.09,2.1079999999999997,1.904,2.032,2.223,1.937,2.3529999999999998,1.936,1.961,2.033,1.982,1.931,1.871,1.892,2.0549999999999997,2.0,2.116,1.925,2.167,1.724,1.806,2.017,1.821,1.8130000000000002,2.245,2.1390000000000002,2.269,2.0620000000000003,2.01,2.084,2.2809999999999997,2.209,1.9289999999999998,1.992,1.961,1.94,1.894,2.088,2.143,1.98,2.229,1.892 +NM_138614,1.8010000000000002,2.042,1.94,1.798,1.721,1.847,1.682,1.498,2.154,2.159,1.7679999999999998,1.794,1.499,1.7149999999999999,2.406,2.22,2.283,2.046,2.532,1.654,1.933,2.279,2.126,2.278,1.886,2.022,2.562,1.762,1.4849999999999999,1.869,1.699,2.456,2.379,1.7759999999999998,1.405,1.787,1.9249999999999998,2.306,3.142,1.933,2.161,2.0629999999999997,1.7570000000000001,2.278,2.184,1.766,1.7389999999999999,2.009,2.138,1.9140000000000001,1.903,1.816,2.1879999999999997,3.011 +NM_138616,0.988,0.977,0.942,1.011,1.12,1.204,1.49,0.958,0.913,0.947,0.95,0.946,0.978,1.354,0.984,0.936,0.996,1.107,0.851,0.929,0.99,0.867,0.973,1.16,1.101,1.052,1.051,1.026,1.097,1.04,0.872,1.054,1.028,1.009,0.935,0.961,0.994,0.837,1.138,1.061,0.838,0.89,0.931,0.838,1.177,0.975,1.004,1.059,0.945,1.031,1.007,0.879,1.109,0.966 +NM_138619,1.15,1.065,0.989,1.017,0.927,0.861,0.914,1.068,0.863,1.136,0.991,0.87,1.095,1.107,1.061,1.002,0.955,0.999,0.952,1.09,1.026,0.946,1.009,0.937,1.0,1.009,1.093,0.946,1.027,1.002,0.946,0.945,1.078,0.904,1.007,0.909,0.986,1.058,1.068,1.021,1.097,1.113,1.032,0.986,0.984,0.967,1.02,0.948,0.988,0.991,1.054,0.874,0.911,0.923 +NM_138620,1.873,1.9929999999999999,2.018,1.9500000000000002,2.125,1.861,1.899,1.905,2.141,1.9409999999999998,2.0380000000000003,1.933,1.9969999999999999,1.9769999999999999,1.798,2.024,1.924,2.0869999999999997,2.101,1.901,2.166,2.162,2.044,2.053,1.925,2.058,1.985,1.883,2.195,2.0149999999999997,2.025,1.682,2.034,1.8570000000000002,1.9409999999999998,2.0700000000000003,2.148,1.968,2.237,2.033,1.985,1.766,2.25,2.04,2.122,2.0709999999999997,1.8969999999999998,2.129,1.999,1.797,1.8900000000000001,1.838,2.092,1.812 +NM_138627,0.944,0.93,1.056,0.893,0.933,1.001,0.916,1.024,0.992,1.142,0.901,1.053,0.918,0.888,0.887,0.89,1.029,0.999,0.964,1.02,0.984,1.041,1.074,1.097,1.025,1.124,1.06,1.157,0.848,1.047,0.905,1.201,0.963,1.001,1.003,0.931,1.007,1.028,0.967,1.051,1.046,1.071,0.793,1.028,0.958,0.914,1.029,1.04,1.013,0.991,1.018,0.938,1.006,1.081 +NM_138632,1.159,1.0,0.917,1.007,0.939,1.021,1.059,0.839,1.199,0.94,0.89,0.792,0.97,0.867,0.999,1.034,1.262,1.058,1.102,1.005,0.932,0.88,0.833,1.031,0.908,1.3,0.851,0.929,0.771,1.112,1.18,1.085,1.124,1.232,0.91,0.938,1.014,1.16,1.554,0.808,1.157,1.023,1.094,1.216,0.923,0.89,0.933,0.939,0.99,1.001,0.921,0.864,0.968,0.855 +NM_138633,0.946,0.998,0.978,1.051,1.109,1.06,1.047,1.03,1.07,0.933,1.121,1.031,1.006,1.036,1.172,0.878,0.942,0.884,1.217,1.047,1.105,0.966,1.231,0.94,0.997,0.954,1.151,1.014,0.82,0.983,1.029,1.056,0.972,1.004,1.1,1.085,0.948,0.968,1.04,0.998,0.899,0.979,0.983,1.036,1.053,1.068,0.989,1.04,1.015,0.987,1.003,0.99,0.985,0.979 +NM_138634,0.806,40.73,0.681,1.385,0.707,24.27,8.193,0.872,0.71,0.684,0.86,0.688,0.798,0.909,0.661,5.51,0.77,9.46,0.707,13.59,0.729,0.801,2.451,0.736,9.28,0.824,0.776,0.742,22.87,20.2,0.703,4.012,1.289,40.3,0.731,0.739,7.211,0.761,0.787,0.71,0.776,28.04,2.586,0.869,1.084,2.182,0.897,0.704,0.916,0.856,0.892,1.379,0.735,0.711 +NM_138635,0.7,0.887,0.873,0.885,0.893,1.067,0.816,0.595,0.942,0.83,1.067,0.736,0.642,0.815,0.806,1.24,0.771,0.752,0.85,1.205,0.753,0.694,1.631,0.865,1.004,0.711,1.026,0.948,0.631,1.287,0.73,1.71,1.284,1.515,0.566,1.208,0.931,0.717,1.011,0.931,1.03,1.08,1.058,1.211,0.771,1.012,0.714,0.69,0.985,0.809,1.19,0.801,0.882,2.058 +NM_138636,1.053,1.015,0.963,0.974,1.087,0.936,0.848,0.92,0.981,1.037,0.804,0.978,1.096,1.005,0.941,0.984,0.942,1.106,0.907,1.223,1.125,0.907,0.918,1.052,1.022,0.994,0.981,0.93,0.761,0.987,0.966,1.047,0.968,1.206,1.122,1.051,0.952,0.971,1.143,1.209,1.006,0.913,0.901,0.929,0.9,1.016,1.013,0.861,1.089,0.892,0.935,0.956,1.256,1.097 +NM_138638,1.042,1.0,1.037,0.868,1.126,0.989,0.87,1.004,1.019,0.954,0.951,1.001,0.993,1.034,0.957,1.095,0.913,0.996,1.052,1.039,1.056,0.987,1.037,0.988,1.045,0.979,1.038,0.994,0.633,1.012,0.817,1.077,1.025,0.954,1.121,1.015,1.028,0.961,0.987,0.994,1.025,0.914,0.924,0.979,0.939,0.982,1.011,1.024,0.976,0.93,0.947,0.955,1.044,1.07 +NM_138640,1.79,2.3739999999999997,2.391,1.741,1.847,1.8170000000000002,1.729,1.6709999999999998,1.958,1.833,1.8399999999999999,1.654,2.045,2.107,2.1020000000000003,1.849,2.043,1.762,1.8820000000000001,1.8719999999999999,1.839,2.0439999999999996,2.245,1.817,2.282,1.952,2.455,1.9169999999999998,1.6829999999999998,2.779,2.1959999999999997,2.674,3.31,2.589,1.5939999999999999,2.123,1.834,2.291,2.435,1.778,1.9,2.3019999999999996,1.928,1.803,1.746,1.685,2.06,1.659,1.591,1.821,1.7959999999999998,1.933,2.018,2.1399999999999997 +NM_138687,0.851,0.987,1.05,0.901,0.981,0.893,0.862,0.98,0.984,0.875,0.91,1.027,0.981,0.993,0.752,1.001,0.972,0.987,1.189,1.03,0.955,1.028,1.07,0.98,1.005,1.007,1.147,0.849,0.783,1.094,0.955,1.088,1.293,1.174,0.835,0.965,1.03,1.053,0.998,1.064,0.99,0.952,0.917,1.138,1.07,0.981,0.925,1.058,0.952,1.052,1.09,0.912,0.927,1.115 +NM_138688,0.976,1.0,1.005,1.016,1.07,0.898,1.134,1.169,0.936,0.962,0.869,1.084,0.842,0.85,1.186,1.014,0.981,1.235,1.01,1.016,0.88,0.947,0.829,0.863,0.844,1.019,1.05,1.02,1.017,1.093,1.02,1.14,1.039,1.027,1.092,0.904,1.0,1.116,1.18,1.046,1.043,1.036,1.002,0.988,1.074,0.939,0.958,0.938,0.864,1.071,0.966,0.976,0.977,0.884 +NM_138691,1.026,1.012,1.008,0.963,1.046,1.006,0.896,0.973,0.939,0.888,1.115,1.042,0.898,0.911,0.905,1.201,1.063,0.904,1.001,0.893,1.11,0.961,0.868,0.882,0.897,1.152,0.968,1.122,0.929,1.06,0.857,1.044,1.031,1.064,0.978,1.04,0.929,0.982,0.973,1.139,0.907,1.1,0.827,0.919,1.065,0.988,0.965,1.054,0.924,1.026,1.095,0.898,1.053,0.955 +NM_138693,1.229,0.894,0.784,1.203,0.906,1.039,0.796,1.043,1.057,1.363,1.063,0.924,1.003,1.006,0.937,1.116,1.048,0.999,1.004,0.918,1.2,0.949,0.976,0.957,1.021,1.212,0.912,0.957,0.963,0.977,1.035,0.954,1.048,1.001,1.154,1.135,1.01,0.885,1.06,0.971,0.809,0.953,0.944,1.065,1.007,1.002,0.814,0.97,1.024,1.011,0.927,0.976,1.065,0.868 +NM_138694,1.001,0.955,0.979,1.042,0.916,1.041,1.017,1.046,0.936,1.0,0.907,1.012,1.043,1.05,0.949,1.028,1.078,0.942,0.903,1.038,1.133,1.029,0.977,1.088,0.805,1.012,0.986,1.076,0.999,1.049,1.0,1.046,1.033,0.955,1.09,1.083,0.907,0.97,1.083,1.037,1.072,1.026,1.083,0.968,0.968,0.97,1.185,0.906,1.059,1.048,0.853,1.019,0.926,0.997 +NM_138698,1.073,1.103,1.061,0.809,0.869,1.04,0.816,0.942,0.98,0.899,1.173,0.935,1.074,0.974,0.897,1.164,1.17,1.133,0.922,1.064,0.975,0.987,1.03,1.127,0.872,1.066,1.254,0.995,0.951,0.952,0.806,1.135,1.024,0.863,1.07,1.006,1.046,1.022,0.989,1.183,1.139,0.917,0.697,0.984,0.848,0.99,0.978,0.865,0.949,0.892,0.932,0.964,1.057,0.984 +NM_138699,0.863,1.176,1.036,0.954,0.869,1.093,0.821,0.743,1.191,0.862,0.896,0.841,0.798,1.013,0.875,0.833,0.927,1.024,1.024,1.023,0.78,1.187,1.08,0.955,0.962,1.023,0.934,0.804,0.982,1.204,0.916,1.371,1.478,1.373,0.568,1.009,0.827,0.928,1.252,1.255,1.012,1.219,0.879,1.274,0.991,1.01,0.893,0.848,0.743,0.806,1.095,0.806,0.861,1.319 +NM_138700,1.061,1.021,0.992,0.988,0.997,0.988,1.022,0.971,1.041,0.968,0.942,0.921,0.91,1.068,1.036,1.252,1.009,0.973,1.069,1.061,0.972,0.971,1.035,1.001,0.944,0.987,0.839,0.999,1.156,0.97,1.06,1.045,1.082,0.919,1.012,1.015,0.983,0.851,1.126,0.942,1.013,1.087,0.96,1.066,1.062,1.035,0.939,0.848,1.161,0.988,0.934,0.912,0.958,0.875 +NM_138701,0.573,0.898,1.178,0.686,0.834,1.097,0.622,0.578,1.309,1.015,1.082,0.758,0.731,0.784,0.988,1.752,0.777,0.933,1.326,0.775,0.705,0.817,1.625,1.017,0.47,0.678,1.189,0.809,0.46,1.352,1.171,1.474,1.76,1.387,0.378,0.905,1.237,0.878,1.277,0.74,1.044,0.955,0.794,1.818,1.003,0.997,1.222,0.654,1.208,0.72,0.955,1.101,1.132,2.289 +NM_138702,1.029,0.952,0.923,0.97,0.937,1.14,1.114,0.975,1.12,1.047,0.848,0.968,1.011,0.969,0.862,1.156,1.0,1.161,0.881,0.938,1.091,0.968,0.87,1.021,1.07,1.022,0.988,0.943,0.74,1.018,0.914,1.003,0.855,0.997,0.925,1.042,1.152,1.149,0.92,1.0,1.014,1.004,1.022,1.027,1.074,0.957,0.966,0.974,1.062,1.158,1.055,1.016,1.221,0.913 +NM_138703,1.086,1.05,0.996,1.0,0.831,1.097,1.131,1.172,1.021,0.982,0.901,0.948,1.039,0.893,1.111,0.938,0.958,1.073,0.959,1.045,0.968,1.016,1.201,0.997,0.952,0.949,0.918,0.995,0.819,1.036,1.128,1.025,1.033,0.953,1.089,0.992,0.829,1.05,0.886,1.023,0.992,0.901,0.855,1.028,0.969,0.882,0.98,0.816,1.072,0.932,1.113,1.034,1.101,1.0 +NM_138704,0.839,1.086,0.909,0.862,0.882,1.043,1.175,0.789,0.972,1.007,0.962,0.97,1.012,0.736,0.856,1.052,1.045,0.976,0.985,1.131,0.878,0.896,1.417,0.932,1.004,1.02,1.036,0.955,0.858,1.12,1.005,1.353,1.201,1.298,0.905,0.936,1.063,0.957,1.234,0.922,0.988,1.206,0.91,1.075,0.93,1.096,0.949,0.849,0.883,0.977,1.096,1.126,0.886,1.304 +NM_138705,1.074,1.004,0.998,1.218,1.016,0.929,0.808,1.034,1.15,1.008,1.012,1.048,1.054,1.085,0.911,0.998,0.931,1.008,1.108,0.919,1.084,1.024,1.188,1.016,0.908,1.114,0.966,1.01,0.92,1.025,0.958,1.049,1.008,1.072,1.015,0.985,1.067,1.018,0.947,1.0,1.094,1.005,0.907,1.033,1.099,0.974,1.009,1.186,1.074,0.941,0.982,0.873,0.894,1.096 +NM_138706,1.079,0.866,1.047,1.043,0.952,0.968,1.04,0.917,1.13,0.955,1.088,0.927,0.9,0.942,0.894,0.925,1.183,1.007,1.189,1.051,1.276,0.778,1.042,1.097,1.198,1.006,0.883,0.872,0.719,0.964,0.905,0.897,0.888,1.317,1.043,0.82,1.034,0.892,1.255,0.958,1.1,1.042,1.132,0.922,1.012,0.923,0.969,0.941,1.072,1.078,1.062,1.071,1.001,0.899 +NM_138707,0.832,0.703,0.897,1.082,0.649,1.354,0.696,0.804,0.743,0.763,1.634,0.679,0.892,0.714,1.223,1.869,0.784,0.75,1.314,0.73,0.699,0.733,1.372,0.825,0.877,1.072,0.884,0.66,0.717,1.299,0.906,1.062,2.895,2.019,0.512,0.624,0.974,0.73,2.228,0.837,0.774,1.081,0.819,2.075,0.773,0.881,0.919,0.91,0.806,1.005,0.987,0.828,1.223,1.729 +NM_138709,1.051,0.997,1.027,0.954,1.024,0.965,0.917,1.052,1.066,0.958,0.975,0.981,0.981,0.887,0.893,1.09,1.031,0.906,0.914,0.991,1.033,0.991,1.016,1.042,0.94,1.02,1.096,1.013,1.023,1.083,0.942,0.902,0.867,0.818,1.199,0.92,0.915,0.912,1.03,0.898,0.977,1.074,1.052,1.061,1.006,0.959,1.129,1.049,0.932,1.034,0.928,1.116,0.911,1.046 +NM_138715,0.931,1.012,0.936,0.891,0.97,0.861,1.016,1.052,0.959,1.046,1.0,1.045,0.879,1.17,0.951,1.024,0.975,0.848,0.989,1.114,0.939,1.149,0.973,0.894,1.129,1.044,0.913,0.915,1.125,1.038,1.155,1.176,1.024,1.059,0.979,0.998,0.879,0.917,1.079,1.026,0.978,0.959,1.28,0.93,1.169,0.862,0.949,1.103,1.112,1.07,0.892,0.957,1.039,1.073 +NM_138717,2.225,2.005,2.007,2.097,2.1980000000000004,1.9529999999999998,1.7269999999999999,1.663,2.214,2.053,2.084,2.0,1.825,1.709,1.974,1.943,2.072,2.019,2.2910000000000004,1.811,2.303,1.948,1.7770000000000001,2.207,2.1310000000000002,1.895,1.872,1.944,2.067,2.151,2.002,2.133,2.0380000000000003,1.849,1.9060000000000001,1.9380000000000002,1.899,1.8599999999999999,1.877,2.024,2.133,1.928,2.04,2.1399999999999997,2.1710000000000003,2.0549999999999997,1.949,1.8599999999999999,1.7719999999999998,1.923,2.088,1.955,1.9899999999999998,2.095 +NM_138718,1.115,0.966,1.07,0.861,1.05,1.091,1.002,0.97,1.111,0.897,0.852,1.114,1.075,0.812,1.148,0.97,0.935,1.12,0.998,0.981,0.957,1.096,1.012,1.027,1.022,0.993,0.953,1.021,0.984,1.183,0.98,0.993,0.916,0.95,1.129,1.205,0.954,0.987,1.055,1.043,1.213,1.178,0.894,0.856,0.848,1.016,1.097,0.896,1.144,0.962,1.14,0.989,1.201,0.847 +NM_138720,0.554,2.455,1.117,0.623,0.853,2.096,0.997,0.668,1.123,0.504,1.632,0.717,0.6,0.869,1.025,1.626,1.135,0.85,0.943,1.531,0.48,0.583,0.92,0.909,0.568,0.485,0.922,0.607,0.601,1.067,1.165,1.147,1.185,1.683,0.82,1.296,1.248,0.574,1.251,0.277,0.778,1.522,0.511,1.161,0.49,0.901,1.313,0.624,0.343,0.583,1.467,0.54,0.751,1.6 +NM_138723,1.027,1.107,0.95,1.029,1.033,0.981,0.861,0.923,0.932,0.904,1.026,1.081,0.972,0.967,0.943,0.906,1.05,1.08,1.092,0.964,0.897,0.945,0.963,0.977,1.146,1.196,1.068,0.951,0.817,1.106,0.949,0.915,0.909,0.982,1.07,0.936,1.011,1.222,1.008,0.909,0.894,1.014,0.827,1.075,0.92,0.923,0.987,0.957,1.168,0.93,1.059,0.941,0.929,0.847 +NM_138724,0.99,0.916,0.935,1.031,1.014,0.882,1.308,1.008,0.996,0.935,0.932,1.075,1.017,0.868,0.707,0.919,0.836,0.942,1.04,1.18,1.037,0.971,1.023,0.982,1.036,0.845,0.977,1.028,1.252,1.107,1.012,0.971,0.953,0.808,1.139,0.895,1.054,1.055,0.977,0.992,1.125,1.005,1.173,0.976,0.975,1.028,1.083,1.117,1.117,0.986,1.066,1.107,1.172,1.023 +NM_138726,0.935,0.895,0.913,1.173,0.827,1.066,1.102,0.914,1.023,0.934,1.089,0.959,1.008,1.136,1.122,1.152,0.913,0.934,0.952,1.053,1.031,1.064,0.986,0.942,1.075,0.957,0.832,0.967,1.17,0.949,0.967,0.968,0.993,0.906,0.942,1.015,1.114,0.923,1.136,1.032,1.152,1.084,0.953,0.933,1.013,0.949,1.058,0.991,1.124,1.047,1.127,1.009,0.922,0.903 +NM_138729,1.9380000000000002,2.191,2.072,1.859,1.978,2.073,1.9020000000000001,1.675,1.992,2.008,2.176,1.817,1.933,1.8479999999999999,2.11,2.54,1.939,1.831,1.916,2.097,1.82,1.97,1.988,1.99,1.903,1.831,1.924,1.788,2.293,2.16,1.817,1.744,2.737,2.2640000000000002,1.9699999999999998,1.9660000000000002,2.022,2.108,2.1879999999999997,1.92,2.2409999999999997,1.776,1.9169999999999998,2.1660000000000004,1.893,2.036,1.915,1.96,1.918,1.971,2.066,1.826,2.122,2.4699999999999998 +NM_138731,0.916,0.975,1.18,0.92,0.959,1.131,0.945,0.788,0.98,1.013,1.023,0.988,1.073,0.864,0.95,1.001,0.943,1.104,0.999,0.983,0.822,1.02,0.948,0.99,0.917,1.068,1.146,1.12,0.892,0.961,1.103,1.029,1.319,1.166,0.74,0.998,0.961,1.075,1.12,0.916,1.026,1.007,0.741,1.47,0.988,1.114,0.987,0.93,0.841,0.856,1.052,0.869,0.939,1.097 +NM_138733,0.985,0.904,1.022,0.934,1.008,1.053,0.881,1.131,1.071,1.054,1.048,1.07,0.929,1.107,0.867,1.013,0.998,0.836,0.947,0.992,0.986,1.067,1.0,0.914,0.927,1.17,1.111,0.962,0.939,1.039,1.066,1.091,0.935,0.931,1.093,0.923,0.937,1.039,1.073,0.99,1.013,0.961,1.036,0.96,1.139,0.848,1.017,0.964,1.012,0.995,1.078,0.949,0.966,1.035 +NM_138734,1.001,0.961,0.94,0.951,1.048,0.892,1.237,1.058,0.869,1.074,0.978,0.998,0.935,1.189,0.829,1.204,1.162,0.827,0.981,0.99,1.092,0.904,1.023,1.134,1.089,0.999,1.011,1.059,1.494,0.955,0.849,1.02,1.081,0.937,1.044,0.991,0.929,1.016,1.09,1.09,0.945,0.977,1.039,0.924,1.004,0.79,1.021,1.006,0.934,1.019,1.115,1.016,1.145,1.001 +NM_138735,1.921,1.894,1.9169999999999998,1.885,1.8319999999999999,1.927,1.7610000000000001,2.061,1.642,1.9449999999999998,1.897,2.0,1.811,2.317,2.5469999999999997,1.978,2.011,2.125,2.207,1.9529999999999998,2.06,1.83,2.133,1.758,2.282,2.1929999999999996,2.09,2.028,2.175,2.007,1.911,2.018,1.794,2.1079999999999997,1.922,2.1,1.9329999999999998,1.6909999999999998,1.931,2.056,2.089,2.019,2.281,2.2190000000000003,1.855,2.2169999999999996,2.028,2.097,2.053,1.956,2.1109999999999998,2.199,1.6400000000000001,1.803 +NM_138736,0.999,1.204,0.949,0.991,0.869,1.008,1.018,0.988,1.089,0.932,1.142,0.882,0.944,0.806,1.064,0.907,0.986,1.096,1.018,0.997,1.045,1.05,1.191,0.913,1.047,0.988,1.022,1.069,1.072,1.004,1.046,1.058,0.984,0.973,0.914,0.986,0.938,1.044,0.987,0.923,1.053,0.945,0.863,1.035,0.978,1.077,1.123,0.926,1.13,0.928,0.912,0.913,0.957,0.971 +NM_138737,1.036,1.035,0.849,0.991,0.973,0.987,1.039,1.135,1.076,0.846,1.11,1.051,0.98,0.86,0.882,0.851,1.143,0.965,1.184,0.936,1.075,0.895,1.062,0.97,0.901,0.967,0.997,0.944,1.23,0.983,0.904,0.908,0.944,0.998,0.975,1.044,1.042,1.047,1.062,1.032,0.984,1.01,0.973,1.092,1.035,1.057,1.063,1.098,1.012,1.004,1.03,1.07,0.938,1.04 +NM_138739,2.11,1.9009999999999998,1.963,2.012,1.936,2.231,1.809,1.734,1.811,2.162,2.064,1.9260000000000002,1.884,2.138,1.786,2.056,1.928,1.964,1.992,2.108,2.052,1.951,1.928,2.164,1.988,2.026,2.042,2.0389999999999997,2.27,2.154,2.026,1.9609999999999999,1.605,2.024,2.223,1.698,1.893,2.026,2.083,2.044,2.011,2.074,2.156,1.995,1.9209999999999998,1.869,2.065,2.036,1.968,2.1029999999999998,2.084,2.106,1.8439999999999999,2.145 +NM_138769,0.647,0.804,1.256,0.877,0.841,1.136,0.605,0.314,1.239,0.956,0.987,0.751,0.422,0.637,1.001,1.659,0.999,0.889,1.042,1.077,0.384,0.704,1.22,1.019,0.584,0.794,1.266,0.704,0.44,1.194,0.731,1.569,1.46,1.338,0.222,0.755,1.233,0.754,1.466,0.825,1.007,1.162,0.904,1.211,0.876,1.396,1.179,0.685,1.104,0.738,1.206,0.644,1.015,1.457 +NM_138770,0.998,1.042,0.921,1.002,1.032,1.049,0.836,0.935,0.835,0.933,0.899,1.032,1.083,0.76,0.873,0.95,1.035,1.05,0.922,0.772,1.065,0.916,1.104,1.115,0.882,0.87,0.871,0.771,0.977,0.871,1.062,1.52,2.023,0.902,1.111,0.871,1.031,1.18,1.166,0.904,0.994,0.837,1.048,1.175,1.047,0.837,0.992,1.041,0.887,0.916,0.894,1.023,1.025,1.375 +NM_138771,1.085,0.979,1.086,1.086,1.053,0.961,0.827,0.913,1.163,1.0,1.068,1.087,0.964,1.132,1.101,1.107,1.113,1.048,1.079,1.192,0.956,0.951,1.006,1.101,0.929,0.901,0.907,1.091,0.836,0.931,1.09,1.106,1.082,0.907,1.021,0.802,1.027,1.057,1.049,1.0,0.887,0.967,0.897,0.822,1.008,0.941,1.257,0.894,0.908,1.018,1.055,0.905,0.933,1.169 +NM_138773,0.668,0.94,1.237,0.897,0.97,2.328,1.231,0.862,1.398,1.127,1.615,1.115,0.718,0.582,1.633,2.854,0.875,1.413,1.556,1.057,0.599,0.909,1.393,1.368,0.651,0.618,1.523,0.786,0.766,1.563,0.998,0.981,1.804,1.733,0.429,0.668,1.224,0.708,1.476,0.512,1.002,1.137,0.866,0.619,1.208,1.833,1.111,0.765,1.994,0.813,1.467,1.095,0.944,1.359 +NM_138774,1.17,0.902,0.975,0.93,1.138,1.008,1.036,0.995,1.065,0.995,1.024,1.076,1.042,1.163,0.999,0.944,1.193,0.938,0.891,1.053,0.966,0.879,1.07,1.0,1.016,1.129,1.136,1.057,0.97,0.939,1.059,1.023,0.895,0.926,0.93,0.936,1.064,1.12,1.083,0.916,1.008,0.982,1.059,1.076,1.104,0.994,1.016,1.021,1.07,0.996,0.933,1.02,0.93,0.931 +NM_138775,0.843,1.081,1.166,0.871,0.912,0.951,1.021,0.944,1.124,0.883,0.935,1.07,0.956,0.938,1.001,1.016,0.882,1.048,1.007,1.015,0.957,0.962,1.029,0.97,0.942,0.859,1.025,1.152,0.972,1.101,1.193,1.115,0.999,1.288,0.842,1.064,1.085,1.003,1.209,1.031,0.992,1.05,1.019,0.886,1.076,1.001,0.945,0.901,0.966,0.891,0.989,0.993,0.952,1.062 +NM_138777,0.742,0.872,1.139,0.721,0.834,1.204,0.582,0.512,0.983,1.035,1.531,1.084,0.696,0.728,1.272,1.677,1.039,0.819,1.034,1.039,0.642,0.681,1.124,1.08,0.554,0.727,1.155,0.837,0.416,0.998,0.758,1.04,2.365,1.206,0.34,0.858,1.069,0.708,1.194,0.665,1.097,1.08,0.894,0.964,0.983,1.088,0.789,0.534,1.118,0.721,1.169,0.853,1.036,1.731 +NM_138778,0.688,1.109,1.081,0.781,0.782,0.823,0.624,0.412,1.223,0.999,0.875,0.859,0.697,0.661,0.983,1.02,0.873,0.813,0.872,1.043,0.503,0.722,1.619,1.068,0.765,0.832,1.255,0.798,0.427,1.06,0.81,2.03,1.723,0.96,0.309,4.2,1.068,0.777,1.454,1.349,0.896,1.171,0.744,1.162,0.871,0.942,1.036,0.733,1.12,0.838,1.139,1.103,0.833,3.134 +NM_138779,0.734,0.911,1.401,0.889,0.994,1.087,0.817,0.96,1.259,1.132,0.805,1.178,1.155,0.98,1.195,1.293,1.015,0.97,1.006,0.911,0.721,1.305,1.084,1.386,0.692,0.78,1.587,1.018,0.719,1.014,1.271,1.321,2.072,0.925,0.542,0.818,0.831,1.313,1.286,0.864,1.129,0.917,0.627,0.98,0.973,0.816,1.19,1.021,1.057,0.936,0.926,0.992,1.167,1.924 +NM_138780,0.979,0.944,0.999,1.033,1.043,1.164,1.0,0.973,0.914,1.13,0.943,0.94,1.007,1.095,0.919,0.909,0.941,1.075,1.068,0.987,1.196,0.966,0.947,1.084,0.971,0.964,1.169,0.899,1.262,1.001,0.989,0.966,1.04,1.088,0.964,1.088,1.019,0.919,1.002,1.054,0.891,0.894,1.045,1.147,1.065,1.057,1.003,1.114,1.117,1.173,0.97,1.163,0.895,0.963 +NM_138783,0.687,1.257,1.142,0.955,0.935,0.979,0.865,0.625,0.926,0.915,0.966,0.848,0.756,0.848,0.976,1.153,0.85,0.954,0.879,1.19,0.625,0.819,1.382,1.05,0.788,0.896,0.866,0.94,0.924,1.046,0.841,1.179,0.935,1.144,0.595,1.161,0.868,0.925,1.16,1.503,1.066,1.15,1.239,1.102,0.847,1.223,0.917,0.841,1.003,0.814,1.136,0.971,1.0,1.29 +NM_138784,1.247,0.896,1.24,1.38,1.055,0.962,0.782,2.233,1.305,1.121,0.915,0.96,1.345,1.192,1.055,1.243,1.561,0.994,1.186,0.935,1.071,1.683,0.827,1.0,0.902,1.722,0.922,1.72,0.859,1.026,1.847,0.93,0.787,0.878,1.28,0.911,0.977,1.435,1.048,1.0,0.983,0.976,0.989,0.979,1.103,0.895,1.195,2.492,0.852,0.949,1.097,0.837,0.945,0.831 +NM_138785,0.639,1.182,1.09,0.524,0.971,1.409,0.547,0.642,1.417,0.956,1.093,0.897,0.765,0.793,0.844,1.354,0.685,0.815,1.142,1.006,0.509,0.836,0.967,1.161,0.643,0.712,1.243,1.056,0.5,1.346,0.84,1.751,1.306,1.32,0.578,0.507,0.915,1.116,1.259,0.701,1.157,1.184,0.55,0.944,0.735,1.193,1.15,0.58,0.689,0.747,0.974,0.705,0.75,1.359 +NM_138786,0.962,1.038,0.935,1.113,0.937,0.876,0.936,1.021,0.759,1.09,0.973,0.885,0.899,0.92,0.798,1.108,0.93,0.908,1.009,1.0,1.071,0.871,1.04,0.928,1.025,0.767,0.915,0.954,1.091,1.254,0.911,1.749,1.164,1.245,0.776,1.352,0.842,0.878,1.262,1.584,0.942,1.191,1.047,1.071,0.943,1.158,0.993,0.874,0.998,0.956,1.18,1.683,0.903,1.14 +NM_138787,0.745,1.343,1.148,0.905,0.979,1.163,0.856,0.729,0.968,0.844,1.554,0.864,0.82,0.889,0.901,1.248,0.773,1.156,1.233,1.063,0.658,0.839,0.986,0.916,1.044,0.744,1.075,0.928,0.686,1.496,0.772,1.325,1.529,1.527,0.543,1.357,1.328,0.879,1.424,0.839,0.881,1.18,0.87,1.507,0.783,0.841,0.915,0.875,0.796,0.786,1.005,1.203,1.014,1.521 +NM_138789,1.158,0.984,0.903,1.043,1.274,0.991,0.98,1.153,1.128,0.918,0.959,1.037,1.021,1.057,1.119,1.048,0.967,0.955,0.982,1.088,0.924,1.087,1.114,1.039,0.965,0.962,1.0,1.218,0.996,1.036,1.041,0.929,1.247,0.974,1.424,1.102,0.993,1.278,1.027,0.892,0.937,1.0,1.035,0.92,1.05,0.914,0.94,1.177,0.84,1.024,0.975,0.779,1.014,1.054 +NM_138790,0.996,1.065,1.036,1.196,1.111,0.986,0.937,0.933,0.969,1.034,1.025,0.905,0.986,0.856,0.835,0.971,1.005,1.054,0.908,0.907,0.956,0.99,0.898,0.925,1.065,1.006,0.937,1.086,1.425,1.049,0.983,1.003,0.997,0.909,1.049,0.938,0.946,1.0,1.11,1.05,1.038,0.93,0.997,1.014,1.048,1.005,0.901,1.027,0.884,1.02,0.903,1.025,0.903,0.881 +NM_138791,1.11,1.007,0.871,1.207,0.925,0.965,0.875,1.0,0.902,1.038,1.07,1.159,1.02,1.351,0.923,0.809,0.97,1.014,1.174,0.804,0.912,1.06,1.0,1.051,1.121,1.118,0.782,0.96,1.109,0.982,1.083,0.919,1.087,0.966,1.032,0.975,0.986,0.934,0.966,0.951,0.944,0.896,0.876,1.048,1.149,0.966,0.924,1.092,1.118,1.009,1.132,1.034,1.133,0.956 +NM_138792,0.799,0.904,1.176,0.9,0.973,1.035,0.804,0.744,0.998,0.876,1.117,0.811,0.825,0.903,1.06,1.475,0.942,1.072,0.999,1.32,0.907,0.905,1.495,0.918,0.768,0.85,1.11,0.953,0.889,1.108,1.006,1.071,1.476,1.139,0.693,1.014,0.933,0.909,1.24,0.93,1.062,1.079,0.962,0.984,0.915,1.109,1.001,0.791,1.364,0.925,1.364,0.769,0.919,1.685 +NM_138793,0.914,1.065,0.659,1.016,0.65,1.498,0.644,0.607,0.873,0.804,1.555,0.474,0.676,0.586,1.013,1.955,0.811,1.076,0.801,1.178,0.538,1.192,1.747,0.711,0.912,1.189,0.878,0.625,0.776,1.121,0.859,0.898,0.903,1.484,1.07,0.998,1.623,0.837,2.057,0.708,0.646,1.641,0.799,2.676,0.702,1.289,0.932,1.715,1.292,0.71,1.342,0.652,0.521,0.855 +NM_138794,0.98,1.021,1.641,0.723,1.044,0.955,0.655,0.664,1.376,1.179,1.307,0.897,0.904,1.129,1.179,1.794,1.056,1.135,1.853,0.736,0.606,1.19,0.943,0.982,0.559,0.906,1.662,1.143,0.454,0.97,1.353,0.945,2.166,1.377,0.299,0.656,1.342,1.216,1.076,0.523,1.246,0.912,0.499,1.162,1.189,0.778,1.104,0.924,0.741,0.855,0.98,0.741,1.088,1.436 +NM_138795,1.007,0.968,1.044,1.002,0.891,1.114,0.938,0.908,0.948,0.934,0.997,1.176,0.915,0.879,0.942,1.16,0.922,0.897,0.918,1.035,1.038,1.104,0.931,1.014,0.924,0.95,0.949,0.966,1.111,0.948,1.038,1.032,1.421,1.007,1.006,0.983,0.885,1.067,1.178,0.882,0.883,1.053,0.816,1.045,1.127,0.997,1.017,1.01,0.883,0.903,0.945,0.98,1.245,0.956 +NM_138796,1.109,1.003,0.992,0.977,1.008,0.905,0.747,0.976,0.99,1.048,0.915,0.966,0.993,0.965,0.908,1.085,1.107,0.99,1.042,1.01,0.928,1.064,0.959,0.95,0.905,1.065,0.866,0.909,0.716,0.898,0.946,1.095,1.545,1.035,0.912,1.052,0.96,1.209,0.973,0.987,1.162,1.174,1.104,1.001,1.034,0.916,0.993,0.968,0.935,0.938,0.943,0.894,1.097,1.159 +NM_138798,0.672,1.03,1.212,0.762,0.98,1.251,0.825,0.804,1.401,0.883,0.828,0.78,0.715,0.666,1.094,1.812,0.916,1.175,1.521,1.125,0.615,0.94,1.499,1.023,0.63,0.669,1.218,1.042,0.614,1.04,1.043,1.284,1.835,1.082,0.593,0.876,0.915,1.009,1.273,0.883,1.326,1.044,0.727,1.269,0.949,0.916,1.158,0.801,1.211,0.664,0.965,0.863,0.921,1.727 +NM_138799,1.491,0.409,2.077,0.92,1.473,0.679,0.478,1.312,1.874,1.698,0.859,1.272,1.058,1.077,1.189,1.342,1.118,1.508,2.579,1.0,0.98,1.322,0.846,2.147,0.36,1.548,1.373,1.987,0.334,0.777,1.603,0.728,1.763,0.852,1.229,0.915,0.595,1.342,0.725,0.281,2.151,0.591,0.391,0.881,2.053,0.705,1.654,1.825,0.517,1.53,0.924,1.141,1.287,0.816 +NM_138800,0.978,1.067,0.874,0.927,0.917,0.99,1.045,1.191,1.036,1.2,0.949,0.993,0.802,0.969,1.084,1.017,1.001,1.066,1.055,1.012,0.957,0.992,0.877,0.992,0.998,0.946,1.197,1.029,0.881,1.088,0.953,1.082,0.973,1.075,0.964,0.929,0.989,1.018,1.07,1.09,0.988,1.016,0.872,0.855,1.104,0.916,0.97,1.001,0.984,0.99,0.896,1.02,1.067,0.908 +NM_138801,0.393,1.28,0.512,0.797,0.44,2.339,0.756,0.332,0.373,0.332,2.672,0.344,0.399,0.352,1.126,2.806,0.585,0.815,0.441,1.326,0.418,0.39,3.158,0.426,0.82,0.375,0.488,0.33,1.001,1.615,0.361,0.895,1.033,1.441,0.357,1.07,3.341,0.381,1.746,0.713,0.423,1.974,2.08,1.449,0.334,2.391,1.426,0.372,2.227,0.419,2.018,0.949,0.44,1.146 +NM_138802,1.095,0.673,0.863,0.811,0.887,1.395,0.597,1.202,0.981,0.776,1.407,1.119,0.931,0.833,1.083,1.678,0.72,0.907,1.72,0.909,0.963,1.103,0.929,1.096,0.742,1.333,0.885,0.938,0.678,1.034,1.002,0.901,2.967,1.738,0.897,0.785,1.026,1.038,1.535,0.84,1.018,0.982,0.598,1.547,0.918,0.81,0.887,1.664,0.857,0.926,1.057,0.637,1.01,1.472 +NM_138803,0.999,1.074,0.999,0.891,1.086,1.076,1.06,1.009,0.866,1.026,1.13,1.114,0.97,0.976,1.261,0.978,1.058,1.126,1.024,1.096,1.118,1.084,0.966,0.948,1.032,1.015,0.964,0.96,0.929,1.049,1.017,0.968,1.041,0.971,1.112,0.885,1.027,0.974,0.998,0.906,0.922,0.946,1.225,1.127,1.087,0.977,0.974,1.067,1.008,0.952,0.892,1.076,1.161,1.001 +NM_138804,0.954,1.101,0.893,0.946,1.047,0.966,0.903,0.96,1.124,1.214,1.069,1.062,1.012,0.893,1.006,1.165,1.036,0.82,0.772,1.076,0.958,1.071,1.113,0.983,0.854,1.068,1.015,0.927,1.033,0.978,0.859,1.107,1.035,0.987,1.026,1.035,0.783,0.96,1.223,0.907,1.179,1.029,0.855,0.988,0.973,0.962,0.964,0.993,1.157,1.268,0.91,1.0,0.916,1.017 +NM_138805,0.946,0.878,1.042,0.587,1.088,1.456,0.452,0.962,1.508,0.743,0.999,0.899,1.366,0.539,1.054,1.745,1.51,0.857,1.405,1.216,0.447,1.23,1.438,0.89,0.253,1.355,0.713,1.223,0.374,0.798,1.2,0.0574,0.381,1.197,0.918,0.746,1.143,0.754,1.075,0.305,1.273,1.763,0.49,0.207,1.032,1.101,1.162,1.755,0.875,1.028,1.218,0.273,0.725,0.494 +NM_138807,1.007,1.053,1.151,1.019,1.12,0.995,0.877,0.678,1.086,1.147,1.018,0.876,0.853,0.987,0.949,1.007,1.122,0.964,1.237,0.824,0.925,1.053,1.093,0.788,0.843,1.036,1.374,0.896,0.763,1.092,0.929,0.995,1.462,0.991,0.756,0.971,1.0,1.036,1.09,0.869,1.222,0.957,0.77,1.265,1.156,0.988,1.148,0.934,0.988,1.006,0.994,0.917,1.119,1.082 +NM_138809,0.124,1.668,0.131,1.313,0.114,3.752,0.939,0.124,0.111,0.145,3.24,0.137,0.116,0.113,1.067,3.121,0.116,1.513,0.147,2.759,0.124,0.117,2.264,0.136,1.313,0.128,0.13,0.113,1.708,3.306,0.116,0.903,1.528,3.477,0.0964,1.44,3.66,0.137,3.079,0.164,0.136,2.428,1.811,0.845,0.141,2.987,0.836,0.106,2.13,0.13,2.224,0.625,0.141,0.822 +NM_138810,2.125,2.0100000000000002,1.8050000000000002,1.936,2.2969999999999997,2.101,1.944,1.86,2.064,1.881,1.641,1.954,1.85,2.056,1.932,2.125,1.903,2.1189999999999998,1.839,2.057,1.858,1.8250000000000002,2.077,2.008,1.873,1.994,1.812,2.01,2.196,2.105,2.048,2.121,2.109,1.812,1.895,2.0060000000000002,2.017,2.053,1.919,3.416,1.944,1.862,2.276,1.9020000000000001,2.293,2.065,2.2729999999999997,1.861,1.884,2.0629999999999997,2.0389999999999997,2.2729999999999997,2.226,1.991 +NM_138811,1.096,0.988,0.909,0.849,0.983,0.978,0.887,0.892,0.992,1.006,1.016,1.016,0.9,0.856,1.179,0.889,0.802,1.003,0.844,0.908,0.98,0.95,1.097,0.954,1.02,1.087,0.964,1.091,0.826,1.194,0.892,1.027,1.186,1.02,0.96,1.07,1.191,1.005,0.94,0.974,0.965,0.993,0.824,1.008,1.051,0.828,1.015,0.888,0.956,0.999,0.987,1.047,1.0,1.138 +NM_138812,1.034,1.105,0.972,0.968,1.062,1.041,1.037,1.106,1.024,1.0,0.929,0.791,1.033,1.057,1.021,0.866,0.916,1.115,0.985,1.134,0.899,0.893,0.996,1.056,1.079,0.985,0.981,0.989,0.972,1.181,1.078,1.048,1.054,0.868,0.983,0.866,0.906,0.99,1.076,0.896,0.949,1.01,1.123,0.975,0.972,1.119,0.966,0.926,1.001,0.993,1.042,0.972,1.025,1.0 +NM_138813,0.949,0.999,0.936,1.045,1.014,0.991,1.124,1.024,1.129,1.07,0.935,1.086,1.093,0.808,0.968,0.877,0.969,0.908,1.018,1.001,1.056,0.957,1.081,0.965,1.002,0.978,1.096,0.996,1.027,1.046,1.104,1.203,1.381,0.903,0.994,1.011,0.814,0.944,1.074,1.45,0.985,0.918,0.865,1.273,1.019,0.906,0.933,0.999,0.9,0.861,0.966,0.984,0.904,1.139 +NM_138814,0.901,1.043,1.183,1.057,0.914,0.929,1.158,0.981,1.066,1.03,0.93,1.093,1.076,0.943,0.829,0.915,1.002,0.962,1.03,1.061,0.814,1.011,0.914,1.072,1.069,1.057,0.906,0.895,1.238,0.987,0.993,1.046,0.983,0.956,1.076,1.06,0.926,1.055,0.958,0.862,0.94,0.932,0.975,0.99,0.876,0.979,1.059,1.099,1.016,1.035,0.945,1.002,1.018,0.968 +NM_138817,1.107,1.035,1.001,1.043,1.041,1.054,0.895,1.226,1.048,0.882,0.93,1.16,0.981,0.962,0.865,0.987,0.986,1.065,0.993,1.054,0.975,1.057,0.936,0.934,1.013,1.061,1.053,1.258,1.14,0.964,1.223,0.999,1.05,1.074,0.939,0.97,1.057,0.947,0.912,1.067,0.896,0.907,0.915,0.972,1.147,0.831,1.318,0.994,0.919,1.063,1.094,1.236,0.974,0.932 +NM_138818,0.996,0.982,0.899,0.788,0.979,1.055,1.032,1.102,0.904,1.033,0.977,1.065,1.019,0.991,0.922,0.973,1.014,0.971,1.043,0.936,0.907,0.937,0.982,0.975,1.034,1.053,1.072,1.102,0.844,1.03,1.104,0.979,0.935,1.032,1.06,1.078,1.087,0.937,0.95,1.091,0.924,0.905,1.562,1.116,0.97,0.86,1.058,0.963,1.046,1.02,1.094,0.974,0.986,1.126 +NM_138819,1.054,0.954,1.004,0.86,1.115,0.916,1.056,1.322,1.334,1.039,1.052,0.905,1.086,0.982,0.973,0.879,1.075,1.005,0.851,0.982,1.071,0.86,1.071,1.147,0.922,1.116,0.988,0.935,1.115,0.993,1.1,1.204,1.013,0.935,1.193,0.821,0.86,1.022,0.94,0.945,0.945,0.965,0.897,1.216,0.913,0.982,0.913,0.959,1.202,0.982,1.013,1.067,0.938,1.208 +NM_138820,0.666,1.196,1.014,0.936,0.709,1.362,0.694,0.422,0.703,0.773,1.298,0.747,0.965,0.486,0.854,1.731,0.775,1.01,1.143,1.314,0.599,0.666,1.378,0.999,0.829,1.058,0.9,0.789,0.682,1.021,0.653,1.371,2.466,1.929,0.317,0.951,1.111,0.791,2.202,0.567,0.886,1.608,0.753,1.356,0.823,0.914,0.915,0.853,1.082,0.666,1.08,0.721,0.864,1.46 +NM_138821,0.484,1.277,0.601,1.095,0.391,1.029,0.657,0.436,0.718,0.492,1.824,0.519,0.394,0.413,1.005,1.381,0.355,0.741,0.62,2.135,0.274,0.475,1.55,0.499,0.916,0.444,0.759,0.689,0.236,1.382,0.565,3.976,1.45,2.002,0.467,0.73,1.465,0.634,1.127,0.832,0.462,2.635,1.476,1.075,0.682,1.948,0.861,0.498,0.821,0.572,1.665,0.769,0.701,0.995 +NM_138923,0.999,1.065,1.121,0.997,0.871,0.897,0.87,0.912,1.001,0.993,0.977,1.041,0.91,0.868,0.868,0.925,1.069,1.01,0.83,0.915,0.908,0.875,1.151,1.027,0.979,0.986,1.134,1.058,0.628,0.933,1.065,1.183,1.232,1.108,0.868,1.039,0.883,1.028,1.186,1.015,1.004,1.185,0.857,1.197,1.108,0.777,0.998,0.922,0.751,1.069,1.012,0.836,0.826,0.95 +NM_138924,2.487,1.866,2.411,2.284,2.064,1.819,1.879,1.972,2.225,2.567,2.104,2.38,2.242,1.961,1.9740000000000002,1.923,2.412,2.044,2.428,1.8439999999999999,2.186,2.253,1.758,2.3289999999999997,2.6100000000000003,2.35,2.395,1.8239999999999998,2.019,1.7360000000000002,2.1310000000000002,2.537,2.059,2.3099999999999996,2.016,1.978,1.553,3.004,2.095,1.695,1.96,2.012,1.898,1.8699999999999999,2.3520000000000003,1.879,2.161,2.678,1.966,2.551,1.8039999999999998,1.75,2.297,1.928 +NM_138925,0.543,0.915,1.323,0.418,0.842,1.316,1.113,0.523,1.614,0.978,1.039,0.911,0.509,0.469,0.741,1.018,0.734,0.844,0.675,1.49,0.524,0.805,1.649,1.19,0.727,0.306,1.346,0.848,0.595,1.605,0.797,1.228,1.391,1.15,0.413,1.085,1.098,0.957,1.554,1.695,1.1,1.843,0.979,0.934,0.857,1.348,1.003,0.261,0.962,0.465,1.551,1.154,0.761,1.144 +NM_138926,0.932,1.151,1.041,0.957,1.117,0.989,0.936,1.031,0.997,1.06,0.895,0.919,0.925,0.808,1.099,0.859,0.996,0.965,1.015,0.919,1.05,1.033,0.963,1.006,1.013,1.041,0.954,1.046,0.81,1.064,1.048,0.989,0.825,0.916,0.936,1.05,0.996,0.946,0.95,1.0,1.036,0.863,0.986,1.035,1.069,0.893,1.183,0.955,0.883,0.839,1.06,1.062,1.126,1.142 +NM_138928,1.036,1.016,0.897,0.956,0.95,0.961,0.97,0.878,1.026,0.929,0.921,0.893,1.041,1.203,0.876,1.351,1.005,0.999,0.876,1.092,1.086,0.963,0.858,1.022,1.149,1.124,1.103,0.99,1.116,0.985,1.133,1.107,1.183,1.163,0.952,1.028,1.002,0.979,0.995,1.116,1.037,1.142,1.209,0.881,1.054,1.032,0.883,0.836,1.002,1.182,1.075,1.152,0.992,1.006 +NM_138929,0.688,0.854,1.219,0.732,0.73,1.61,0.955,0.858,0.797,0.804,1.029,1.19,0.962,0.631,1.083,1.754,0.967,0.857,0.737,1.191,0.533,1.081,1.131,1.457,0.717,0.592,1.361,0.729,0.705,0.95,0.96,1.593,1.762,1.399,0.434,0.629,1.098,1.085,1.274,1.365,0.924,1.097,1.043,0.695,0.987,1.07,1.548,0.754,1.275,0.771,1.22,0.924,0.631,1.991 +NM_138930,1.075,0.89,1.008,0.983,1.005,0.96,0.926,0.823,0.926,0.901,1.033,1.138,0.992,0.892,1.016,1.129,0.914,0.851,0.902,1.158,0.85,0.877,0.907,1.001,1.064,0.959,0.907,0.939,0.78,0.959,0.875,1.037,0.998,1.088,0.931,0.987,1.091,1.078,1.16,1.024,1.074,1.016,1.072,1.037,0.981,1.139,0.996,0.825,1.012,1.018,0.949,1.186,0.973,1.412 +NM_138931,0.991,1.059,1.128,1.2,1.027,1.027,1.018,1.107,0.958,0.975,1.016,0.928,0.961,1.117,0.966,0.998,0.996,0.873,1.253,0.945,1.008,1.091,1.103,1.089,1.001,0.873,0.99,0.835,1.053,0.984,0.953,0.864,0.919,0.981,1.059,1.09,0.951,1.121,0.95,1.074,1.019,0.996,1.02,1.268,1.035,0.96,1.243,1.114,0.897,0.944,1.105,1.121,1.033,0.932 +NM_138933,1.028,1.063,0.974,1.18,1.09,0.976,0.978,1.044,0.94,1.028,1.189,1.004,1.012,1.017,0.991,1.095,1.02,0.946,0.877,1.098,1.087,1.177,1.099,0.981,0.97,0.973,0.908,0.993,1.194,1.005,1.015,1.093,1.007,0.988,1.017,1.159,0.983,1.039,1.141,0.953,0.9,1.019,1.131,0.968,0.965,1.019,1.043,0.998,0.953,0.963,0.981,0.842,0.871,1.07 +NM_138934,1.077,0.922,1.026,1.017,0.969,0.972,0.861,1.092,1.448,1.097,1.044,1.039,0.88,1.111,1.134,1.072,0.96,1.026,1.019,0.92,0.988,1.156,0.924,1.383,0.935,1.077,0.978,0.955,0.895,1.196,1.062,1.115,0.997,1.189,0.834,0.989,0.83,0.954,1.087,1.144,1.024,0.857,0.862,0.845,1.0,0.912,1.028,1.074,0.9,1.062,0.938,0.875,1.121,1.024 +NM_138937,0.73,5.42,0.718,69.23,0.791,1.426,10.77,0.684,0.791,0.764,2.557,0.743,0.737,0.775,32.0,4.079,0.77,0.934,0.768,2.312,0.795,0.752,0.752,0.712,1.058,0.697,0.845,0.825,0.844,3.4,0.844,0.902,8.591,1.508,0.749,38.42,22.26,0.766,1.663,47.94,0.788,7.473,8.403,0.972,3.739,0.993,2.621,0.706,84.2,0.645,17.13,1.859,0.813,1.493 +NM_138938,1.113,0.997,0.892,1.262,1.089,1.007,0.94,0.948,0.952,0.943,1.049,1.066,1.186,0.896,1.256,0.867,0.955,1.004,0.939,0.897,0.856,1.045,0.938,0.915,1.193,1.0,0.851,1.016,1.263,1.053,1.028,1.031,0.881,0.997,0.971,0.957,1.025,1.08,1.006,0.953,1.134,0.95,0.867,0.814,1.004,1.118,0.916,1.017,0.976,1.041,1.032,1.01,1.106,0.941 +NM_138940,0.954,0.956,1.24,1.111,0.957,1.109,0.838,1.062,0.906,1.026,0.961,0.982,0.908,1.147,1.055,0.905,0.972,1.073,0.942,1.001,1.189,1.045,1.017,1.026,0.976,0.976,1.057,1.01,0.888,0.956,1.028,0.775,0.981,0.819,1.024,1.073,0.976,0.967,0.904,1.053,0.882,0.938,1.154,1.017,1.007,0.937,1.011,1.007,0.98,1.105,1.039,0.925,1.023,0.881 +NM_138957,1.756,1.776,2.848,1.803,2.6029999999999998,1.96,1.613,1.896,3.036,2.858,1.821,2.048,1.722,1.918,2.112,2.524,2.58,2.202,2.7969999999999997,1.689,1.711,2.3680000000000003,2.2939999999999996,2.365,1.315,1.923,2.428,2.431,1.302,2.043,2.505,1.847,2.544,1.8679999999999999,1.639,1.638,1.871,1.835,2.546,1.893,2.76,1.924,1.717,1.556,2.663,1.924,2.3289999999999997,1.966,1.748,1.99,2.003,1.859,2.407,1.943 +NM_138958,1.232,0.842,1.098,0.672,1.174,1.137,0.441,0.959,1.462,1.068,0.909,0.807,1.021,1.196,1.081,2.03,0.778,1.105,1.69,0.888,0.561,1.509,0.694,1.193,0.415,1.468,1.006,1.535,0.268,0.946,1.483,1.046,1.939,1.123,1.745,0.471,1.042,1.464,1.221,0.378,1.226,1.146,0.736,0.792,0.96,1.111,1.079,1.906,0.796,1.133,0.873,0.428,0.849,1.371 +NM_138959,0.985,1.129,1.072,1.138,1.0,0.956,0.709,0.966,1.011,0.991,1.044,0.913,0.885,0.968,0.749,0.937,1.082,1.17,1.082,0.97,0.868,1.175,1.12,1.165,0.984,0.884,0.952,0.767,1.361,0.979,1.011,1.064,1.139,1.01,0.981,0.973,0.974,0.98,1.118,1.09,1.113,0.885,0.99,1.162,0.955,1.011,1.114,0.86,1.04,0.988,1.076,0.888,1.071,1.189 +NM_138960,0.98,1.077,0.959,1.029,1.025,0.986,0.985,1.29,0.877,1.118,1.053,0.957,0.868,0.927,0.99,0.99,0.87,0.921,0.916,1.045,1.001,0.916,1.13,1.019,0.943,1.011,0.973,0.969,0.932,0.91,0.953,1.102,1.007,0.979,0.975,0.885,1.013,0.988,0.943,0.855,0.888,0.982,1.127,1.086,1.074,0.942,1.115,1.001,0.92,1.097,0.934,1.032,1.058,1.073 +NM_138961,1.537,1.289,0.665,0.571,1.429,1.244,0.738,2.467,1.932,0.529,0.616,1.234,1.448,1.228,1.926,1.105,1.092,0.761,1.318,0.409,0.766,1.112,0.758,0.804,0.653,1.252,0.675,2.432,0.555,2.035,2.594,1.644,0.998,1.664,4.965,1.069,0.817,2.929,2.356,1.87,2.74,1.084,0.301,0.728,0.693,0.435,0.919,1.832,0.45,0.685,0.781,1.083,0.511,1.071 +NM_138962,1.752,2.34,2.092,1.662,1.952,2.0599999999999996,1.762,1.903,1.8929999999999998,2.059,2.045,1.891,1.724,1.729,1.917,2.299,2.096,1.835,1.942,2.037,1.8170000000000002,1.87,1.905,1.857,1.7229999999999999,1.706,2.16,1.8439999999999999,1.629,2.053,1.7850000000000001,2.621,4.625,1.9779999999999998,1.846,2.734,1.932,1.848,2.773,2.461,1.858,1.947,1.984,3.095,2.1319999999999997,1.9809999999999999,2.448,1.8279999999999998,2.191,2.034,1.936,2.1710000000000003,2.003,2.158 +NM_138963,0.952,0.113,1.735,0.096,0.11,1.718,0.111,0.114,2.121,1.735,1.92,0.113,0.118,1.018,1.613,1.33,1.176,1.473,0.0976,0.11,0.0916,0.13,2.079,0.163,0.979,1.179,2.389,0.127,0.0631,2.026,1.692,1.146,0.849,2.345,0.23,0.161,1.678,2.205,0.816,0.323,1.942,2.122,0.0853,0.117,1.203,0.83,1.244,0.867,1.172,1.182,1.507,0.657,0.0715,0.641 +NM_138964,1.084,1.074,0.95,0.9,0.959,0.878,1.193,1.006,1.03,1.094,1.013,0.868,1.11,0.832,1.008,0.957,1.001,1.046,0.802,0.983,0.907,1.104,1.023,0.964,1.013,1.066,0.892,1.003,1.415,1.023,0.972,0.847,0.869,1.07,0.941,1.058,1.036,0.885,0.91,0.904,1.066,0.894,0.997,1.044,0.979,0.903,0.894,0.93,1.034,1.059,1.003,1.126,1.014,0.877 +NM_138966,1.029,1.001,1.012,1.139,1.159,0.906,1.015,1.091,0.926,1.098,1.031,1.022,0.948,0.863,1.07,0.811,0.967,0.98,0.984,1.266,0.858,0.939,0.933,1.118,1.068,0.909,1.019,0.96,1.371,1.135,0.924,1.092,0.895,0.903,1.043,1.03,1.003,1.177,0.913,0.902,1.04,1.039,0.894,1.084,1.079,1.058,1.083,0.878,1.114,0.915,1.047,1.036,1.168,0.761 +NM_138967,0.947,1.234,0.828,0.663,1.031,1.225,1.033,0.972,0.885,0.81,0.985,1.108,0.878,0.883,0.757,0.783,1.002,0.93,0.925,0.715,0.763,0.946,1.372,0.881,1.245,0.899,0.779,0.843,1.795,1.145,0.95,1.302,1.221,1.517,0.914,1.091,1.273,0.839,2.271,1.097,0.891,1.023,1.106,1.076,0.773,0.938,0.699,0.912,0.817,0.917,0.888,1.239,0.961,1.018 +NM_138969,0.912,0.821,1.411,0.757,1.111,1.323,0.905,0.6,1.119,1.042,1.077,0.864,0.751,0.668,1.028,1.169,1.375,1.419,1.345,0.929,0.627,0.939,0.691,0.746,0.679,0.882,1.246,0.97,0.484,1.095,1.296,0.58,0.721,1.365,0.445,1.046,1.094,0.971,1.848,0.397,1.11,1.108,0.663,0.549,1.333,1.227,1.205,0.783,1.234,1.211,1.154,0.863,0.871,0.518 +NM_138970,1.798,2.019,1.841,2.005,2.074,1.857,1.984,1.942,1.938,1.912,2.0229999999999997,1.818,1.888,1.964,1.703,1.755,1.9729999999999999,1.943,1.896,1.9060000000000001,1.9980000000000002,1.9300000000000002,2.367,2.084,2.1710000000000003,2.1029999999999998,1.77,1.994,2.167,2.201,2.048,3.7139999999999995,1.749,2.303,2.0460000000000003,2.001,1.89,2.104,1.996,2.1390000000000002,2.259,2.3369999999999997,1.8860000000000001,1.876,1.9329999999999998,1.9060000000000001,2.086,2.003,2.041,2.096,2.225,2.0359999999999996,2.1449999999999996,1.9260000000000002 +NM_138973,0.842,1.032,1.299,0.843,1.178,0.732,0.795,0.736,1.301,1.328,0.874,1.035,0.798,0.835,1.103,0.884,1.097,0.926,1.045,0.945,0.76,1.058,1.169,1.005,0.815,0.882,1.392,1.166,0.604,1.039,1.11,3.778,1.34,1.223,0.608,0.973,0.751,1.465,1.006,0.802,1.246,1.046,0.848,0.904,1.139,0.757,1.002,0.921,0.681,1.089,0.965,1.015,1.012,1.281 +NM_138980,1.044,0.995,0.87,1.085,1.054,0.944,0.964,0.95,0.992,1.059,0.986,1.0,0.982,1.108,1.111,0.956,0.921,1.048,0.914,1.061,1.05,1.006,0.923,0.883,0.968,0.865,0.938,1.035,1.065,1.042,0.868,0.943,0.929,0.931,1.089,1.064,0.894,1.199,0.92,0.982,1.127,0.99,0.803,0.994,1.104,0.974,0.98,1.036,1.066,1.003,0.937,1.09,1.165,1.028 +NM_138981,1.931,2.5789999999999997,1.7069999999999999,1.92,1.693,2.472,2.198,1.7959999999999998,1.783,1.641,2.247,1.675,1.733,1.6520000000000001,2.336,2.5410000000000004,1.8679999999999999,2.276,1.919,2.4450000000000003,1.698,1.645,2.456,1.6909999999999998,2.0869999999999997,1.718,1.9689999999999999,1.686,2.072,2.525,1.76,2.564,1.9049999999999998,2.95,1.877,2.147,2.395,1.725,2.83,1.7120000000000002,1.873,2.6319999999999997,1.729,2.159,1.913,2.0060000000000002,1.834,1.746,2.0069999999999997,1.674,2.4050000000000002,1.909,1.859,2.141 +NM_138983,0.799,1.005,0.883,1.342,1.023,0.875,1.074,0.931,1.057,1.133,1.003,1.163,1.096,1.064,0.978,1.108,1.165,1.101,1.073,0.987,1.052,1.079,0.805,0.967,1.003,0.977,0.826,1.003,1.85,1.039,0.97,1.034,0.924,0.906,0.995,0.985,0.926,0.867,0.869,0.925,1.047,0.945,0.893,1.053,0.907,1.029,1.087,0.9,0.945,1.012,1.058,0.945,0.976,1.176 +NM_138992,0.306,2.066,0.63,0.851,0.441,2.835,1.093,0.371,0.496,0.433,1.461,0.391,0.373,0.305,0.736,1.885,0.568,1.722,0.678,1.982,0.214,0.443,1.613,0.39,0.627,0.367,0.602,0.387,1.055,2.982,0.448,1.205,1.014,2.955,0.352,0.799,1.868,0.499,1.682,1.093,0.54,2.323,0.831,1.776,0.382,1.74,0.901,0.379,0.947,0.361,2.066,0.916,0.378,0.489 +NM_138993,1.106,0.894,1.184,0.969,1.098,0.923,0.994,0.817,0.975,1.085,1.173,1.087,1.065,0.902,1.104,1.013,0.976,1.079,1.082,1.143,0.85,0.824,0.95,1.005,1.009,1.018,0.985,1.106,0.832,0.975,1.02,0.877,0.835,1.094,1.181,0.888,0.966,0.94,1.132,1.005,1.044,0.992,0.983,1.081,0.913,1.294,0.901,0.995,0.718,1.016,0.984,0.939,1.213,1.133 +NM_138994,1.834,2.116,1.9460000000000002,1.931,1.803,1.885,2.078,1.999,2.033,2.1550000000000002,2.25,2.2140000000000004,1.971,2.008,1.966,2.085,1.968,1.8519999999999999,2.13,2.016,1.901,1.6560000000000001,1.9009999999999998,2.065,2.099,1.984,1.8170000000000002,2.175,1.779,1.9329999999999998,2.018,1.995,2.451,1.905,2.085,2.0149999999999997,1.822,2.1020000000000003,2.083,1.9140000000000001,1.827,1.9329999999999998,2.1109999999999998,2.069,2.194,2.135,1.9819999999999998,2.085,2.101,2.106,1.929,2.143,2.1229999999999998,1.871 +NM_138996,0.95,1.015,1.051,1.162,1.056,1.038,0.947,1.103,1.023,1.01,1.007,0.957,0.92,0.854,0.749,1.036,0.934,0.94,0.896,0.975,1.121,1.022,1.086,1.052,1.0,0.997,1.026,0.886,0.835,0.916,1.014,1.063,1.062,1.038,0.998,1.08,0.901,1.0,0.98,0.993,0.828,1.112,1.006,0.961,1.061,0.937,0.917,1.116,0.917,1.055,0.868,1.006,0.97,1.002 +NM_138998,1.139,0.978,1.014,1.092,0.906,1.029,1.072,0.926,0.982,0.898,1.103,1.056,1.003,0.96,0.891,0.947,1.001,0.927,1.03,1.056,0.951,1.053,0.935,1.04,0.942,0.981,0.847,0.9,1.039,1.046,0.917,0.896,0.963,0.899,1.054,1.067,0.961,1.034,0.972,0.925,0.916,1.03,1.194,0.878,1.231,0.93,0.997,0.965,0.955,1.077,1.004,1.048,1.039,1.034 +NM_138999,2.0759999999999996,2.168,2.07,2.0780000000000003,1.977,1.955,1.862,2.1420000000000003,1.865,2.0060000000000002,1.9500000000000002,2.078,1.974,1.633,1.899,2.028,2.07,1.9289999999999998,1.8780000000000001,1.935,2.048,2.2439999999999998,2.058,1.97,1.994,2.073,1.916,1.928,1.9020000000000001,2.012,1.975,2.088,2.202,1.874,2.183,2.16,1.904,1.951,1.9,2.112,2.017,2.0709999999999997,1.63,2.043,2.037,2.039,2.082,2.0700000000000003,1.966,2.0620000000000003,1.83,1.9909999999999999,2.266,2.156 +NM_139011,0.898,1.149,1.127,0.977,1.022,0.911,0.904,1.264,1.052,1.02,1.054,1.003,1.059,1.272,1.338,0.804,0.994,0.996,1.0,0.955,1.044,0.903,0.995,0.954,0.967,0.904,0.808,1.018,0.851,0.947,1.036,0.901,1.09,0.997,0.873,0.938,0.975,1.003,1.135,0.895,0.945,1.091,1.05,1.066,1.079,0.96,1.139,1.045,0.912,0.862,1.043,1.006,1.095,1.062 +NM_139013,2.021,1.974,2.127,2.032,1.927,1.926,1.83,1.8860000000000001,1.98,1.939,2.127,1.9180000000000001,1.858,1.811,1.661,1.984,2.078,2.1189999999999998,2.0300000000000002,1.884,2.1929999999999996,2.0949999999999998,1.9140000000000001,1.834,1.8399999999999999,2.001,1.988,2.067,1.992,2.022,2.059,2.313,2.294,1.9449999999999998,2.193,1.935,1.887,1.907,1.88,2.123,2.099,2.1719999999999997,1.7850000000000001,1.8479999999999999,2.158,1.9209999999999998,2.023,2.004,1.999,2.035,2.091,1.8090000000000002,2.053,1.83 +NM_139015,1.124,0.911,1.157,0.896,0.999,0.836,0.638,0.729,1.072,1.156,0.75,1.019,0.955,0.922,0.99,0.925,1.031,1.093,1.078,0.903,0.776,1.08,1.025,0.946,0.81,1.057,1.236,1.032,0.746,1.056,0.796,1.116,1.295,1.003,0.808,0.791,0.854,1.268,0.931,0.956,1.094,1.083,0.692,0.956,1.156,0.778,1.105,1.097,0.832,1.033,0.858,0.843,1.054,1.383 +NM_139016,0.939,0.993,0.918,1.056,0.874,1.127,0.908,0.806,1.07,1.015,1.078,1.021,0.841,0.84,0.952,1.073,1.043,0.974,0.887,1.021,0.755,0.896,1.147,0.963,0.937,0.945,0.963,0.864,0.961,1.133,0.971,1.152,1.453,1.079,0.787,0.884,0.966,0.965,1.0,1.238,0.964,0.869,0.811,1.29,1.022,0.914,1.063,0.875,0.7,0.835,0.927,1.063,0.943,1.725 +NM_139017,1.046,0.985,0.995,0.947,1.016,0.993,1.132,1.028,1.087,1.12,0.989,1.108,0.873,0.957,0.973,1.036,1.1,1.065,0.87,1.004,0.937,0.977,1.006,0.94,1.055,1.134,0.988,1.03,0.974,0.984,0.924,0.955,0.778,0.987,0.813,0.896,0.956,1.122,1.209,0.937,1.05,1.012,1.228,0.933,0.918,0.94,1.018,0.986,1.061,1.18,0.972,0.97,1.143,1.011 +NM_139021,1.013,1.015,1.058,1.03,0.899,0.907,1.257,1.016,0.999,0.886,0.912,0.929,0.93,0.922,1.084,0.977,1.119,1.053,0.92,1.233,1.053,0.932,1.046,0.986,1.046,1.017,0.944,1.074,1.228,0.994,0.971,0.989,1.098,0.912,0.96,1.015,0.967,0.806,1.214,1.1,1.006,1.052,0.906,0.953,1.078,0.986,0.973,0.979,0.996,0.972,1.017,0.934,0.921,1.15 +NM_139025,1.007,0.93,0.999,1.108,0.914,1.1,0.931,0.887,1.07,1.029,1.018,1.052,1.001,0.933,1.018,0.994,0.887,1.013,0.914,1.102,0.959,0.952,1.019,0.946,0.946,1.031,1.03,1.037,0.673,0.966,1.139,0.944,1.029,0.971,1.03,0.972,0.979,0.969,1.164,0.959,1.203,0.956,0.994,1.008,0.919,0.99,1.116,0.82,0.964,1.149,1.007,0.927,0.827,1.14 +NM_139028,2.008,2.1029999999999998,1.9000000000000001,1.986,2.181,1.956,2.083,1.988,1.9629999999999999,2.02,2.023,2.122,1.8980000000000001,1.911,2.0620000000000003,1.9659999999999997,2.21,2.061,2.103,1.9249999999999998,1.826,2.18,1.835,1.978,1.966,2.1820000000000004,2.067,2.036,1.94,2.127,1.8900000000000001,2.134,1.835,2.162,1.9740000000000002,2.057,2.059,2.3049999999999997,2.187,2.013,2.043,2.222,2.005,1.823,2.091,2.003,2.036,2.071,1.9300000000000002,1.9809999999999999,1.8639999999999999,1.884,1.875,2.435 +NM_139032,1.46,0.522,1.47,0.969,1.25,0.944,0.624,0.977,1.473,1.597,0.699,0.897,0.845,1.517,1.198,1.098,1.201,0.836,1.768,0.859,0.683,1.387,0.874,1.641,0.595,1.464,1.256,1.395,0.497,0.86,1.402,1.081,0.786,1.063,0.518,0.643,0.741,1.119,0.902,0.983,1.337,0.858,0.794,1.065,1.908,0.953,0.736,1.346,0.951,1.417,1.036,0.573,1.568,1.002 +NM_139035,0.623,2.003,1.108,0.925,0.789,1.481,0.937,0.607,1.039,0.938,1.106,0.787,0.86,0.735,0.935,0.975,0.836,0.947,0.893,1.156,0.704,0.795,1.294,0.851,1.087,0.748,1.213,0.733,0.891,2.301,0.925,3.124,0.875,1.994,0.515,0.624,1.31,1.041,1.209,1.208,0.958,1.812,0.753,1.665,0.799,1.006,0.926,0.74,0.735,0.86,1.068,0.957,0.967,2.709 +NM_139045,0.948,0.883,1.586,0.661,0.942,1.225,0.664,0.503,1.028,0.956,1.391,0.958,0.645,0.817,0.756,1.723,0.811,1.038,1.481,1.442,0.513,1.073,1.293,0.885,0.814,0.912,1.333,0.84,0.839,1.519,1.184,1.325,0.898,1.588,0.339,0.421,1.343,1.027,0.939,0.452,1.099,1.57,0.861,0.957,0.804,1.173,0.504,0.879,0.674,0.952,1.614,0.825,0.853,1.093 +NM_139048,0.769,1.576,1.079,0.916,0.838,1.25,0.755,0.665,0.813,0.881,0.995,0.784,0.858,0.749,0.98,1.263,0.761,0.96,0.822,1.09,0.82,0.84,1.471,0.806,1.094,0.855,1.127,0.817,0.656,1.581,0.941,1.812,5.054,1.486,0.734,0.971,1.006,0.719,1.565,0.805,0.848,1.176,0.903,1.617,0.75,1.054,0.832,0.734,0.779,0.798,1.134,0.983,0.747,1.95 +NM_139049,0.934,0.862,0.907,0.922,1.174,0.913,0.831,1.049,1.118,1.066,1.012,0.843,0.91,0.958,0.898,0.963,0.934,1.008,1.176,0.952,1.031,0.768,0.927,0.972,0.953,1.188,1.005,0.821,1.041,1.061,0.999,1.013,0.93,1.063,1.278,1.015,1.012,0.975,1.053,0.975,0.979,1.046,1.054,1.004,0.915,1.077,0.98,1.036,0.968,1.098,0.926,1.006,1.012,1.039 +NM_139052,0.958,0.928,1.099,0.844,0.874,1.017,0.748,0.846,0.914,1.004,1.121,0.76,0.936,0.846,1.047,1.129,0.882,0.952,1.137,1.093,0.727,0.914,1.157,1.008,0.87,0.808,1.356,0.789,0.656,1.135,0.844,1.036,1.397,1.066,0.838,1.248,1.17,0.737,1.051,0.94,1.168,1.003,0.79,0.992,0.995,0.966,0.979,0.886,1.099,0.867,0.983,0.954,0.989,1.367 +NM_139054,1.022,0.881,0.995,1.057,1.0,1.081,0.989,1.123,0.856,1.035,1.079,1.045,1.09,1.061,1.048,0.934,1.304,1.083,0.848,0.951,1.009,0.923,0.852,0.965,1.129,1.019,0.925,0.902,0.828,1.031,0.954,1.074,1.043,1.006,0.971,1.007,0.976,1.176,0.968,1.118,1.118,0.827,0.786,1.037,1.097,0.85,0.868,0.984,0.924,1.097,0.925,0.916,1.181,1.179 +NM_139055,1.126,0.916,1.009,1.079,1.0,0.862,0.928,0.836,1.066,0.994,1.001,0.976,0.891,1.019,0.859,1.05,0.927,0.989,0.921,0.922,0.841,0.944,0.941,1.003,1.085,0.986,1.038,1.003,0.961,0.985,0.901,1.093,0.907,1.116,1.028,1.071,0.989,1.031,0.885,0.988,1.02,1.068,0.876,0.997,1.071,0.948,0.929,1.042,1.025,0.973,1.116,1.184,1.013,0.914 +NM_139056,0.942,1.065,0.94,0.976,1.038,0.999,0.911,1.032,1.1,0.944,1.052,1.014,1.098,1.096,0.855,1.061,1.076,1.027,1.025,0.924,0.972,1.015,1.026,1.077,0.957,0.932,0.868,1.122,1.575,0.968,0.985,0.922,0.918,1.099,1.035,1.019,1.098,0.844,0.946,0.959,1.143,0.975,1.274,0.982,0.933,1.064,0.902,0.936,0.956,1.087,1.184,1.14,1.027,1.017 +NM_139057,1.116,1.077,0.996,1.165,0.991,1.018,0.849,0.918,1.092,0.999,1.0,0.966,1.089,0.96,0.959,0.94,1.029,1.025,1.019,1.04,0.929,1.061,1.057,0.981,1.068,1.046,0.877,0.946,0.704,0.989,0.93,1.05,1.134,0.984,1.015,1.086,0.959,1.007,0.969,1.103,1.035,1.057,0.82,1.032,0.946,1.018,0.966,1.097,1.026,1.134,0.965,1.101,1.081,0.924 +NM_139062,0.995,0.935,1.111,0.998,0.772,1.139,0.751,0.719,1.212,0.987,0.793,0.714,0.86,0.856,1.224,1.049,1.131,0.926,1.177,0.716,0.711,0.823,0.908,0.947,0.735,1.318,1.076,0.76,0.878,1.191,0.996,1.304,1.071,1.126,1.47,0.622,1.009,0.853,1.664,0.631,0.821,1.008,1.012,1.726,0.8,0.927,0.965,0.976,0.864,1.11,1.029,0.765,0.826,1.222 +NM_139067,2.223,1.737,2.221,1.9220000000000002,1.9020000000000001,1.9340000000000002,1.9169999999999998,1.604,2.051,1.718,2.025,1.833,1.666,1.968,1.91,2.4130000000000003,2.088,1.933,2.694,1.906,1.996,1.877,2.0629999999999997,1.9060000000000001,1.842,2.241,2.215,1.8969999999999998,1.766,2.434,2.141,2.119,2.9139999999999997,2.615,1.804,1.856,2.098,1.833,2.479,1.689,1.8449999999999998,2.1479999999999997,1.8399999999999999,2.743,1.871,1.595,1.649,1.834,1.4660000000000002,1.983,2.0309999999999997,1.835,2.1470000000000002,2.7640000000000002 +NM_139070,0.755,1.043,1.115,0.881,0.779,1.164,0.755,0.648,1.171,0.926,1.336,0.764,0.69,0.858,1.23,1.194,0.799,0.852,1.211,1.065,0.676,0.695,1.169,0.981,0.81,0.798,1.103,0.858,0.496,1.371,0.874,1.84,4.239,1.343,0.699,0.741,1.067,0.776,1.157,0.911,1.058,0.92,0.695,0.957,0.85,1.154,1.154,0.677,0.944,0.79,1.029,0.931,0.892,1.888 +NM_139071,0.657,0.868,1.32,0.498,0.836,1.097,0.644,0.549,0.9,1.046,0.916,0.757,0.678,0.557,0.967,1.737,0.995,0.836,1.229,1.041,0.567,0.939,1.315,1.076,0.576,0.837,1.104,0.709,0.441,0.961,0.88,1.45,1.833,1.13,0.281,1.599,1.04,0.916,1.272,1.401,0.889,1.188,0.75,2.407,0.907,0.781,1.119,0.745,0.779,0.872,1.006,0.961,0.935,1.808 +NM_139072,0.949,1.13,1.018,0.953,1.06,1.21,0.928,0.987,0.935,0.966,0.978,1.003,0.977,0.779,1.115,1.277,1.038,1.05,0.901,1.072,1.02,0.952,0.987,1.065,3.068,0.947,1.083,1.037,0.904,0.89,1.023,1.028,0.92,1.463,0.977,0.945,1.163,0.984,0.87,1.121,0.933,0.916,0.784,0.814,1.103,0.825,1.077,0.897,1.013,0.908,1.062,0.982,0.888,1.03 +NM_139074,1.024,0.947,1.135,0.981,0.815,1.068,1.136,1.057,0.966,1.206,1.069,0.875,0.934,0.833,0.881,1.199,1.018,1.111,1.018,1.093,1.274,0.891,1.0,1.095,1.0,0.97,0.925,1.105,1.013,0.937,1.105,0.934,1.07,0.951,1.028,0.908,1.025,0.911,0.997,0.875,0.915,1.126,1.037,0.951,0.934,1.002,1.102,1.117,0.987,1.166,1.068,0.961,1.018,1.052 +NM_139075,0.551,1.311,0.69,0.875,0.659,1.144,1.105,0.548,0.663,0.842,0.988,0.75,0.563,0.533,0.814,1.2,0.721,1.11,0.626,1.408,0.543,0.616,1.645,0.684,0.777,0.666,0.936,0.655,0.904,1.823,0.643,1.953,1.23,1.222,0.472,1.705,1.629,0.686,2.067,1.383,0.712,1.426,1.393,1.405,0.852,1.83,0.999,0.595,1.525,0.658,1.018,0.949,0.819,1.741 +NM_139076,0.878,1.192,1.089,0.864,0.971,1.003,0.893,1.008,1.09,1.011,0.999,1.049,0.977,0.944,0.962,1.148,0.982,0.96,1.1,0.882,0.936,0.952,1.154,1.036,0.907,1.076,1.11,0.961,0.668,0.977,0.976,1.242,0.964,1.152,0.914,0.744,0.949,0.983,1.006,0.994,1.102,1.082,0.864,0.953,0.968,1.022,0.952,0.904,0.915,1.105,0.962,0.95,1.17,0.992 +NM_139121,1.051,0.99,1.091,1.168,1.014,0.96,0.894,0.986,0.89,1.095,0.841,0.971,1.126,1.154,0.866,1.03,1.026,1.094,0.963,0.834,0.971,1.041,0.963,0.931,1.086,0.919,1.012,1.044,1.042,0.885,1.033,1.022,1.033,0.98,1.015,0.972,1.026,1.014,0.972,1.034,1.159,1.05,0.893,0.939,0.935,1.046,1.016,0.901,1.096,1.149,1.037,0.945,0.973,0.933 +NM_139122,0.921,0.887,0.924,1.035,0.873,1.138,0.875,1.053,0.957,0.9,0.999,0.762,0.877,0.846,1.027,1.067,0.925,0.798,1.098,0.874,1.026,0.924,0.92,0.855,0.971,0.973,0.864,0.777,0.967,0.981,0.803,1.291,1.209,1.272,0.813,0.89,0.816,0.95,1.732,1.061,0.875,1.038,0.921,2.132,0.89,1.034,0.847,0.866,0.884,1.106,1.012,1.213,1.167,1.162 +NM_139124,1.016,0.923,1.094,0.863,0.784,0.899,0.824,0.947,0.802,3.74,1.172,1.027,0.806,0.735,0.895,1.101,0.933,0.929,1.02,0.822,1.04,0.86,1.346,1.094,0.888,1.264,1.029,0.764,0.75,1.212,0.958,1.437,1.01,1.168,0.766,0.769,1.067,0.947,1.666,0.855,1.011,1.052,1.002,1.305,1.104,0.815,0.998,1.175,0.946,0.954,0.926,1.085,1.433,1.927 +NM_139125,1.7730000000000001,1.986,1.676,1.764,1.787,2.0869999999999997,1.68,1.6520000000000001,1.7730000000000001,2.069,2.145,1.672,1.847,1.987,1.883,2.0220000000000002,1.682,1.896,1.575,2.1879999999999997,1.867,1.655,2.415,1.7639999999999998,1.841,1.806,1.693,1.95,1.57,2.69,1.885,2.01,3.636,2.817,1.8519999999999999,2.0469999999999997,2.202,2.011,2.307,1.729,2.02,2.8339999999999996,1.819,2.005,1.947,2.082,2.105,1.861,1.7970000000000002,1.75,2.3739999999999997,4.263999999999999,2.1550000000000002,3.024 +NM_139127,0.988,0.849,0.954,1.065,1.031,0.98,0.894,1.036,0.899,0.932,1.004,1.153,0.873,0.985,0.961,0.839,1.01,1.032,0.931,0.963,1.075,1.036,0.947,1.041,1.033,1.036,1.216,0.915,0.745,1.062,1.111,1.059,0.861,1.067,0.854,0.961,1.08,1.062,0.941,1.055,0.944,0.975,1.116,0.898,0.977,0.999,0.855,1.036,1.046,0.912,1.136,0.808,0.983,1.023 +NM_139131,1.897,1.852,2.0599999999999996,1.659,2.379,1.79,1.545,1.695,2.6109999999999998,2.617,1.804,1.662,1.7069999999999999,2.12,1.8519999999999999,1.988,1.94,1.809,2.363,1.73,2.064,1.788,1.9700000000000002,2.0380000000000003,1.6219999999999999,2.0469999999999997,2.364,1.9499999999999997,1.302,2.069,2.585,1.9569999999999999,3.3049999999999997,1.854,2.148,2.963,1.8090000000000002,1.8119999999999998,2.0999999999999996,2.1399999999999997,2.16,1.972,2.108,2.045,2.248,2.0789999999999997,2.26,1.9409999999999998,2.524,1.6829999999999998,2.01,1.8079999999999998,2.001,2.3200000000000003 +NM_139137,1.9169999999999998,2.039,1.771,1.954,1.8900000000000001,2.121,1.853,1.9939999999999998,1.9100000000000001,1.899,2.0469999999999997,2.121,2.1069999999999998,2.273,2.0309999999999997,2.123,1.971,2.2510000000000003,2.114,2.061,2.2110000000000003,2.226,2.0,1.9820000000000002,2.4059999999999997,2.144,2.066,1.946,2.089,2.069,1.9020000000000001,1.936,1.884,1.962,2.178,2.067,1.905,2.14,1.916,1.998,1.988,1.755,1.6920000000000002,2.101,1.859,1.895,2.02,2.112,2.251,2.129,1.911,2.029,2.0780000000000003,1.891 +NM_139156,1.716,1.852,1.834,1.991,1.743,1.955,1.637,1.425,1.782,1.829,2.096,1.716,1.377,1.67,1.802,2.636,1.6320000000000001,1.82,1.919,2.24,1.722,1.613,2.546,1.779,1.726,1.8119999999999998,1.765,1.61,1.686,2.318,1.751,2.664,2.77,2.456,1.576,1.7309999999999999,2.132,1.677,2.69,2.84,1.7029999999999998,2.287,2.019,1.961,1.7959999999999998,2.0749999999999997,1.996,1.681,1.827,1.975,2.271,2.1470000000000002,1.6640000000000001,3.059 +NM_139157,0.819,1.095,1.159,0.92,0.905,1.309,0.718,0.776,0.976,0.854,0.805,0.922,0.861,0.697,0.839,1.214,1.505,0.891,1.643,1.0,1.0,0.993,0.911,0.87,1.119,1.078,1.334,0.702,0.63,1.654,0.928,1.681,1.496,1.627,0.462,0.799,0.861,0.856,1.127,0.988,1.242,1.181,0.587,0.893,0.974,0.637,0.726,1.019,0.764,1.506,0.91,0.754,1.435,0.798 +NM_139158,0.927,0.987,0.928,1.08,1.018,1.048,0.907,0.972,1.071,1.016,1.025,1.019,1.058,0.933,0.879,0.922,1.032,1.058,0.995,1.0,1.13,0.898,1.07,1.012,1.048,0.899,1.037,1.184,0.88,0.944,0.96,0.993,1.04,0.869,0.93,0.99,0.902,1.008,0.952,0.889,0.911,0.926,0.886,1.0,1.043,1.115,1.003,1.056,0.981,1.121,1.089,1.089,0.976,0.89 +NM_139159,0.861,0.896,0.87,0.996,0.815,1.286,0.801,0.768,1.049,0.865,0.955,0.876,0.896,0.938,0.887,1.213,1.081,0.983,0.836,0.878,0.93,1.059,1.522,0.967,0.974,1.06,0.973,0.763,0.893,1.166,0.815,1.263,1.357,1.166,0.799,1.417,1.004,0.853,1.848,1.348,0.811,1.017,0.705,2.121,0.889,0.92,0.898,0.918,1.379,1.023,0.937,0.99,0.894,1.764 +NM_139160,0.978,1.064,1.26,0.807,1.023,0.994,0.94,0.868,0.952,1.039,1.066,1.035,0.926,0.974,1.098,1.198,1.135,1.046,1.065,1.209,1.019,1.152,1.091,0.951,0.909,0.909,1.124,1.158,1.087,0.957,0.877,0.915,1.103,0.92,0.967,0.99,1.077,1.098,0.998,0.964,1.153,1.007,0.864,0.981,1.166,0.98,1.298,1.07,1.169,1.027,0.953,0.943,1.084,0.96 +NM_139162,1.051,0.982,0.845,1.012,1.173,1.011,0.906,1.23,1.102,1.065,1.09,1.05,1.137,1.039,1.162,0.928,1.072,0.896,1.121,0.952,0.965,1.006,1.03,0.933,0.936,0.946,1.058,1.0,0.862,1.193,0.944,0.95,1.052,0.961,1.0,0.913,1.041,0.999,0.972,0.939,0.929,1.022,0.948,0.978,0.924,0.996,0.883,0.927,1.037,0.942,0.965,0.948,1.061,0.927 +NM_139163,0.943,1.082,1.093,0.909,0.8,1.093,0.83,1.095,0.991,1.049,0.979,0.998,0.99,0.941,1.234,1.039,0.976,1.157,0.997,0.905,1.02,0.911,0.897,0.989,1.047,1.182,0.972,1.015,1.138,0.946,1.058,0.989,1.017,0.988,1.006,1.082,1.199,0.962,0.93,1.086,1.073,0.947,0.898,1.026,0.884,0.833,1.042,0.89,0.819,1.142,1.081,1.085,0.97,1.04 +NM_139164,0.992,0.936,0.99,1.159,0.953,1.266,0.815,0.836,0.952,1.004,0.994,1.087,0.883,0.831,0.99,1.311,1.073,1.248,0.952,1.104,1.099,0.967,1.019,1.047,0.976,1.126,0.913,1.032,0.82,1.011,0.897,1.009,0.953,0.95,1.191,1.077,1.066,0.909,1.269,1.024,1.05,0.944,1.054,1.058,0.963,1.191,0.886,0.807,1.1,1.057,1.032,0.926,1.012,0.79 +NM_139165,0.97,0.959,0.925,1.021,1.144,0.949,0.91,0.999,1.062,0.974,1.002,0.857,1.053,1.319,0.838,0.885,1.104,1.136,0.991,0.946,1.015,0.845,0.959,0.906,1.051,1.003,1.147,1.183,0.868,0.796,0.971,1.039,0.816,1.056,1.029,1.081,1.096,1.027,1.201,1.109,1.069,0.908,1.095,1.0,1.076,1.002,0.915,1.021,0.884,1.012,0.948,1.0,0.854,0.906 +NM_139166,0.998,0.954,1.006,1.061,0.825,1.048,0.896,0.983,0.965,1.008,0.956,1.21,1.065,1.062,1.222,1.044,1.015,0.867,1.013,1.063,0.98,1.095,0.993,1.056,1.035,1.11,0.943,0.923,0.885,0.936,0.922,1.198,1.033,0.937,1.088,1.05,0.959,0.888,0.926,1.063,1.039,0.978,0.971,1.004,1.045,1.005,0.993,0.865,0.997,0.853,1.004,1.074,1.224,0.924 +NM_139167,0.987,1.096,0.95,1.119,0.978,0.966,1.063,0.982,0.922,1.046,1.268,0.975,1.142,1.233,1.093,1.117,1.078,0.988,0.905,1.011,1.052,0.937,1.13,0.98,0.919,1.048,1.006,1.06,1.144,0.96,0.897,1.018,1.076,1.125,1.141,0.864,0.998,1.287,0.926,0.961,1.041,1.086,1.097,0.962,0.954,1.147,0.997,1.032,0.921,0.946,0.933,1.136,1.155,0.948 +NM_139168,0.846,1.093,1.185,0.935,1.027,1.389,0.767,0.957,1.086,0.802,0.907,1.23,0.833,0.734,0.952,1.387,1.147,1.137,0.754,1.346,0.672,1.175,1.048,1.35,0.772,0.609,1.549,0.915,0.636,1.154,1.229,1.218,2.093,1.033,0.722,0.675,0.947,1.18,1.175,0.923,1.043,0.993,0.78,0.773,1.07,0.891,1.058,0.853,1.105,0.987,1.175,0.867,0.807,1.441 +NM_139169,0.824,1.154,1.248,0.867,0.855,0.991,0.696,0.812,0.923,0.881,1.258,0.849,0.788,0.878,0.989,1.437,0.818,1.09,1.418,1.046,0.734,0.751,1.2,1.023,0.82,0.8,1.117,0.85,0.621,1.079,0.863,1.041,2.416,1.093,0.665,1.252,1.259,0.914,1.258,0.793,1.029,0.964,0.929,1.403,1.06,1.199,0.931,0.853,1.052,0.978,0.985,1.002,0.983,1.735 +NM_139170,1.013,0.992,0.959,0.953,1.039,1.037,1.14,1.117,0.902,1.018,0.809,0.955,0.906,0.958,0.765,0.991,0.879,0.989,1.13,0.966,1.07,1.001,0.921,0.995,1.145,1.032,1.108,0.982,0.779,1.066,0.935,1.095,1.073,1.041,1.071,1.07,0.975,0.887,0.707,0.987,0.951,0.931,1.068,1.129,0.907,0.858,1.068,1.02,0.892,1.101,0.929,1.091,0.943,1.07 +NM_139171,1.055,1.024,1.122,0.922,1.041,0.931,0.948,1.244,0.879,0.874,1.043,0.88,1.035,0.971,1.077,0.945,0.814,0.866,1.112,0.956,1.104,0.933,0.992,0.963,1.166,1.07,1.032,0.98,1.014,1.098,1.048,0.986,0.95,1.016,0.946,1.061,0.939,0.931,0.941,1.152,0.913,0.994,0.9,0.923,0.981,0.994,1.031,0.996,1.129,0.964,1.142,0.932,0.99,1.0 +NM_139172,0.935,1.033,0.915,1.093,0.922,0.883,0.935,1.003,1.0,0.952,1.109,1.037,0.85,0.962,1.06,1.049,0.926,0.881,1.024,1.155,0.937,1.122,1.005,0.93,1.074,0.881,1.018,0.927,0.762,1.102,0.96,0.906,0.934,0.981,1.023,1.155,1.085,0.767,0.911,0.949,0.93,0.82,1.104,1.086,0.902,1.027,1.042,1.076,1.044,0.966,1.094,0.965,0.924,0.941 +NM_139173,1.03,0.87,1.024,1.046,0.908,1.245,0.906,1.005,0.776,0.97,0.946,1.026,0.991,0.947,1.046,1.032,1.039,0.975,1.017,0.85,0.959,0.988,0.792,1.085,0.983,1.095,0.973,0.985,1.08,0.987,1.115,0.953,1.029,1.132,1.079,1.034,1.065,0.982,1.083,1.084,0.854,1.083,0.995,0.951,0.993,0.877,1.188,0.938,0.892,0.967,0.975,1.068,1.003,0.964 +NM_139174,2.449,0.88,1.427,1.195,1.698,0.853,0.904,1.428,1.883,1.2,0.869,2.56,2.269,1.078,1.041,1.015,1.183,1.083,1.523,1.029,1.082,1.574,0.979,1.409,1.0,1.926,1.05,2.961,0.747,0.886,1.623,0.954,1.038,1.0,0.912,0.934,1.026,1.75,0.949,1.045,1.912,0.917,0.741,0.95,2.105,0.858,0.859,1.212,0.921,1.289,1.069,0.945,1.052,0.835 +NM_139175,0.973,0.998,0.944,1.159,1.072,0.967,1.018,0.879,1.066,0.999,1.041,1.041,1.067,1.18,1.085,0.909,0.955,0.982,0.973,0.981,0.928,0.879,0.942,1.113,0.924,1.073,0.855,1.024,0.78,0.989,1.098,0.982,0.853,0.999,0.983,0.904,1.016,0.886,0.969,0.965,1.031,1.111,0.905,1.106,0.99,1.011,1.181,1.105,0.866,0.984,1.009,0.796,0.923,1.096 +NM_139176,1.112,1.36,1.207,0.993,1.183,1.012,0.856,0.833,0.937,0.877,1.101,0.747,1.125,0.942,0.834,1.039,1.034,0.978,0.937,1.072,0.917,0.97,1.183,0.879,1.113,1.044,0.949,1.124,1.133,1.014,0.945,0.889,1.118,0.953,1.017,1.238,1.129,0.941,2.531,0.96,0.928,0.938,0.774,1.039,0.895,0.971,1.16,1.008,0.843,1.063,1.068,0.958,1.155,1.202 +NM_139177,0.599,1.728,0.913,0.819,0.717,1.754,0.625,0.602,0.782,0.672,1.52,0.409,0.502,0.572,1.039,1.691,0.757,0.97,1.394,1.687,0.456,0.585,1.428,0.675,0.989,0.742,1.027,0.553,1.248,1.609,0.74,1.402,1.465,2.998,0.464,0.631,1.203,0.803,1.79,0.656,0.704,1.736,0.679,1.174,0.649,1.111,0.664,0.774,0.72,0.693,1.081,0.539,0.686,0.687 +NM_139178,0.662,1.022,1.308,0.73,0.963,1.085,0.593,0.56,1.221,1.064,0.776,1.075,0.678,0.663,0.889,1.21,0.976,0.99,1.272,0.87,0.589,0.888,1.145,1.239,0.72,0.876,1.076,0.923,0.443,1.606,0.823,1.034,0.716,1.103,0.256,1.397,1.122,1.051,1.016,1.106,1.189,1.095,0.259,1.247,1.15,0.838,0.784,0.864,0.832,0.881,0.946,0.97,1.316,1.245 +NM_139179,0.732,1.272,1.075,0.565,1.008,0.99,0.826,0.485,1.005,0.895,0.73,0.645,0.532,0.65,0.749,0.794,0.904,1.093,0.655,1.195,0.481,0.886,1.335,0.839,0.684,0.865,0.932,0.88,0.649,1.945,1.065,1.649,1.237,1.2,1.141,1.006,1.078,1.031,1.618,1.843,1.085,1.09,0.638,1.408,0.929,0.931,1.429,0.848,0.751,0.813,0.982,1.33,0.643,1.464 +NM_139181,0.944,1.125,0.947,0.912,0.96,0.838,1.189,0.999,1.21,1.134,0.994,0.954,1.064,1.047,0.859,1.115,0.952,0.839,0.951,0.958,0.904,1.014,0.98,1.001,1.126,1.016,0.895,1.143,1.38,0.981,0.957,1.002,0.907,1.123,1.03,0.96,0.956,1.08,1.058,1.177,0.817,0.961,0.915,1.103,0.832,0.858,0.96,0.987,1.01,1.011,1.082,1.003,0.769,0.961 +NM_139182,2.169,1.83,2.537,1.9180000000000001,2.093,2.135,1.815,1.834,2.5,2.349,2.045,1.907,1.789,2.045,2.09,1.901,2.045,1.847,2.134,2.1310000000000002,2.0869999999999997,1.8290000000000002,1.935,2.0199999999999996,1.7799999999999998,2.073,2.44,1.881,1.9709999999999999,1.8769999999999998,2.21,2.067,2.3129999999999997,1.9409999999999998,2.017,1.805,1.8119999999999998,2.04,2.165,1.983,2.132,1.819,2.062,1.732,2.192,2.266,2.056,1.697,2.252,2.002,2.135,1.684,2.126,2.213 +NM_139199,0.858,1.118,0.986,1.032,0.936,1.037,0.903,0.963,1.11,1.069,0.978,0.981,0.911,0.903,0.96,1.156,0.992,0.958,1.028,1.021,0.892,0.954,1.091,1.002,0.975,0.967,0.911,0.974,1.002,1.208,1.015,0.99,1.21,0.951,0.945,1.081,0.883,1.14,1.018,1.116,1.202,0.94,0.988,0.994,1.035,0.942,1.131,1.003,0.885,1.009,0.971,1.114,0.823,0.968 +NM_139201,2.018,1.855,2.255,1.988,1.931,1.842,1.888,1.533,2.3369999999999997,1.8889999999999998,1.791,1.7610000000000001,1.756,1.797,1.817,2.1020000000000003,2.2119999999999997,1.833,2.225,1.944,1.9740000000000002,1.7429999999999999,2.091,1.9529999999999998,1.837,1.752,2.431,1.976,2.008,2.077,2.012,1.9089999999999998,2.0780000000000003,1.994,2.069,1.838,2.018,2.004,2.021,2.809,2.1390000000000002,1.983,1.629,1.9909999999999999,2.053,2.01,2.031,2.059,2.1799999999999997,2.0780000000000003,2.331,1.999,2.005,2.344 +NM_139202,0.963,1.236,1.045,1.082,0.982,0.975,0.93,0.827,1.057,1.108,1.1,1.042,0.955,1.102,0.84,1.14,1.083,1.087,1.103,0.926,1.0,0.981,0.888,0.932,0.93,1.025,0.993,1.075,1.009,0.946,1.128,0.94,0.898,1.022,1.0,0.977,0.994,1.036,0.986,1.167,1.209,0.968,1.138,1.019,1.012,1.027,0.974,1.046,1.152,0.955,0.958,1.018,0.908,0.944 +NM_139204,4.861000000000001,1.48,2.9450000000000003,2.566,4.705,1.858,1.6720000000000002,4.4719999999999995,5.219,2.391,1.762,2.3040000000000003,3.743,3.173,3.157,1.953,4.593999999999999,2.348,3.915,1.416,2.676,5.381,1.881,2.984,1.384,5.912,2.357,4.057,1.4169999999999998,1.561,5.501,1.689,3.033,1.892,14.484000000000002,1.4509999999999998,1.874,4.4559999999999995,3.597,1.383,3.527,1.7599999999999998,1.387,1.63,3.13,1.558,2.539,8.187999999999999,1.6920000000000002,3.38,2.044,1.7000000000000002,2.89,2.175 +NM_139205,1.056,0.856,1.029,0.923,1.04,0.869,0.942,0.95,1.047,1.035,0.93,1.156,0.944,0.875,0.907,1.097,0.807,1.1,1.146,0.957,0.879,1.046,1.097,1.133,1.068,1.202,1.126,1.047,1.465,0.987,0.993,0.956,0.944,0.928,0.983,1.054,1.023,1.118,0.95,0.838,1.167,1.029,0.95,1.011,1.124,1.039,0.762,0.958,0.958,0.864,0.968,1.092,0.958,1.082 +NM_139207,0.749,1.007,1.345,0.707,1.171,0.881,0.641,0.629,1.24,1.27,0.784,1.145,0.883,0.771,0.788,0.915,0.788,0.954,1.211,0.597,0.718,0.665,1.46,1.257,0.547,0.837,2.047,1.026,0.257,1.025,1.11,1.644,1.813,1.413,0.325,1.298,0.746,1.004,1.178,1.248,1.362,1.148,0.419,0.872,1.157,0.591,0.971,0.668,0.507,1.01,1.103,1.325,1.275,1.462 +NM_139208,1.9889999999999999,2.142,1.963,2.084,2.125,2.346,1.855,2.213,2.0090000000000003,1.9729999999999999,1.95,2.099,1.943,1.874,1.844,2.173,2.2720000000000002,2.434,2.033,1.963,1.947,1.954,2.063,2.292,2.067,1.903,1.763,2.018,1.92,2.017,1.858,2.07,2.102,1.971,2.128,2.136,1.748,1.898,1.968,1.9699999999999998,1.9889999999999999,1.912,1.835,1.946,1.968,1.987,1.914,2.009,2.037,2.105,1.976,2.282,2.258,1.9209999999999998 +NM_139209,0.998,0.947,0.901,1.006,1.062,0.904,1.085,1.266,1.041,0.984,1.058,1.048,0.999,0.973,1.117,0.939,1.051,1.108,1.029,0.948,1.129,0.956,0.978,1.024,1.043,0.971,0.954,1.148,0.79,0.892,0.978,0.76,1.146,0.873,1.078,1.014,1.067,1.092,1.018,0.975,0.959,0.948,0.762,0.978,0.993,1.016,0.875,1.023,1.008,0.927,0.903,1.133,0.984,0.964 +NM_139211,3.229,0.144,5.384,1.073,6.572,0.265,0.157,10.1,6.113,1.818,0.266,3.958,4.472,2.181,4.578,3.612,2.81,4.151,3.098,0.569,1.041,5.178,0.245,5.409,0.161,1.821,6.187,6.952,0.131,0.191,8.749,1.243,4.906,0.136,2.226,0.129,0.3,9.386,0.203,0.138,5.504,0.195,0.163,0.127,3.357,0.898,5.187,5.922,0.839,2.592,1.844,1.168,0.959,0.727 +NM_139214,0.923,1.033,0.914,1.191,0.891,1.156,0.922,1.08,0.807,1.048,1.067,0.79,0.786,0.998,0.884,0.988,0.991,1.003,0.96,0.823,1.01,1.186,1.05,0.957,1.088,1.088,0.93,0.985,0.908,0.981,1.024,0.956,0.903,0.996,1.104,1.198,1.038,1.147,0.942,1.012,0.853,0.971,0.744,0.979,0.792,1.063,0.939,1.112,1.061,0.976,1.082,1.023,1.18,1.038 +NM_139215,0.882,1.105,1.57,0.766,0.992,0.557,0.489,0.337,1.156,1.112,0.771,0.762,0.509,0.664,0.888,1.27,0.814,0.855,1.274,0.659,0.645,0.623,1.483,0.945,0.569,0.992,1.534,0.883,0.285,1.092,1.031,1.035,1.035,1.21,0.116,1.042,1.087,0.978,1.595,0.826,1.213,1.29,0.684,1.708,1.399,0.953,0.869,0.737,0.91,0.973,1.144,1.096,1.273,0.882 +NM_139235,0.882,0.864,1.085,0.958,1.018,0.866,1.046,0.826,0.983,1.331,0.994,1.016,0.866,0.892,1.3,0.901,0.99,0.847,0.988,1.014,0.975,0.972,0.989,1.244,0.934,1.222,1.207,0.99,1.254,0.8,1.233,1.095,0.953,0.949,0.773,1.049,1.062,1.093,1.072,0.911,1.033,1.022,1.453,1.198,1.347,0.791,1.025,0.915,0.927,1.103,1.02,1.18,1.184,1.586 +NM_139238,1.038,0.978,1.143,0.858,1.037,0.942,1.009,0.977,0.976,1.2,1.017,0.977,1.082,0.79,1.187,0.938,0.917,0.985,1.016,0.978,1.134,0.873,0.978,1.058,0.953,1.128,0.912,1.078,0.976,0.958,1.025,0.916,1.211,0.994,1.068,1.167,0.856,1.095,0.919,0.867,0.946,1.0,1.206,1.181,1.117,1.144,0.999,0.962,1.057,1.002,1.01,0.999,1.123,0.995 +NM_139239,1.022,0.922,1.026,1.085,1.128,1.15,1.057,1.097,1.001,0.997,0.954,0.963,0.971,0.92,0.94,1.066,1.039,1.041,0.928,1.048,0.878,0.911,0.825,1.003,1.037,1.058,1.056,1.101,1.037,1.069,1.004,1.082,0.926,0.883,0.931,1.049,1.033,1.184,0.933,1.14,1.083,1.067,0.853,0.992,1.2,0.963,0.869,1.022,1.008,1.069,1.004,1.021,1.001,0.987 +NM_139240,1.21,0.914,0.933,1.121,0.952,1.096,0.907,0.987,0.919,0.966,0.991,0.912,0.902,1.118,0.966,0.962,0.909,0.976,1.185,0.995,1.032,1.084,0.925,0.882,0.934,1.004,0.974,1.027,0.842,1.042,0.947,0.966,0.922,0.964,0.997,0.934,1.067,0.942,0.999,1.164,1.032,0.908,1.04,1.047,1.006,0.981,0.927,1.069,0.997,1.05,1.08,0.872,0.901,1.059 +NM_139241,0.881,0.923,1.004,0.955,1.154,1.01,1.269,0.948,1.048,0.97,1.191,1.099,1.007,0.905,0.795,0.986,1.101,1.05,1.0,0.984,0.96,0.953,0.962,1.022,0.988,1.017,1.094,1.039,0.863,1.0,1.006,1.021,1.175,1.003,1.116,1.056,0.893,1.026,1.016,0.937,1.009,1.076,0.947,0.99,0.96,1.12,0.941,0.89,1.092,0.957,1.038,0.903,1.13,0.888 +NM_139242,0.822,1.019,0.898,0.805,0.846,1.381,0.781,0.69,0.996,1.19,1.066,0.963,0.772,0.934,1.095,1.451,1.013,0.915,0.962,0.99,0.699,0.997,1.7,1.191,0.79,0.711,0.895,0.854,0.892,1.171,0.743,1.172,1.577,1.04,0.751,1.086,1.2,0.83,1.161,0.834,1.086,1.036,0.747,0.836,0.953,1.415,1.259,0.821,1.46,0.753,1.152,1.129,0.858,1.41 +NM_139243,0.887,0.978,1.003,1.14,1.089,0.987,1.034,0.971,1.012,1.104,1.026,0.94,0.906,0.854,0.948,1.011,0.825,0.951,1.021,1.146,0.969,0.935,0.977,1.04,1.027,0.913,1.034,1.003,1.094,0.927,1.064,1.081,0.923,0.971,0.888,1.122,0.954,1.048,1.149,1.105,0.897,0.921,0.995,0.942,0.856,0.982,0.971,0.95,1.025,1.068,1.099,1.007,1.028,0.97 +NM_139244,0.786,0.731,1.79,0.703,1.371,0.838,0.584,0.883,1.211,1.206,1.056,1.308,0.745,1.129,1.223,1.752,1.246,0.927,1.611,1.135,0.596,1.015,1.285,1.236,0.558,0.852,1.443,1.192,0.634,0.837,1.151,0.839,0.894,0.978,0.623,0.584,0.917,1.012,0.882,0.785,1.234,0.893,0.979,0.809,1.287,1.558,1.309,0.928,1.189,1.261,1.099,0.668,1.331,0.996 +NM_139245,1.003,0.894,1.02,0.884,0.997,1.007,0.864,1.061,1.1,1.025,0.833,1.019,1.009,0.917,0.881,1.002,1.057,0.875,0.913,0.957,1.022,0.915,1.011,0.954,1.0,1.048,1.058,1.032,0.786,0.939,1.143,1.071,1.233,0.919,1.122,0.886,0.937,1.006,0.874,1.007,1.073,0.913,0.903,1.117,0.974,0.99,0.927,1.06,1.0,0.981,0.982,0.955,0.931,1.078 +NM_139246,0.993,0.969,1.116,0.875,0.939,1.072,1.336,1.066,1.012,0.878,0.972,1.1,1.048,1.044,1.013,1.015,1.232,0.876,1.063,1.188,0.973,0.732,0.974,0.897,1.0,0.97,0.917,0.909,0.989,0.943,0.886,1.095,0.919,0.991,1.089,1.109,1.078,0.824,1.257,1.014,1.001,1.176,0.945,0.824,1.192,0.846,0.817,0.921,0.958,0.917,0.944,1.14,1.333,1.126 +NM_139247,0.978,0.899,0.987,0.824,0.787,1.147,1.051,0.827,0.911,0.782,0.922,0.917,0.825,0.838,0.9,1.061,0.873,0.861,0.852,1.311,0.843,0.892,0.921,0.843,0.917,0.804,0.871,1.156,0.848,1.182,0.812,2.073,1.053,1.262,1.018,1.102,1.023,0.981,1.226,1.23,0.953,1.313,1.104,0.982,0.871,0.957,0.746,0.991,0.953,0.821,1.039,1.362,0.872,1.295 +NM_139248,0.846,1.436,0.705,0.973,0.896,2.069,0.779,0.696,1.161,1.0,1.048,0.65,0.637,0.679,0.868,1.013,0.873,1.0,0.779,1.396,0.612,0.74,1.363,0.852,1.176,0.749,0.945,0.914,0.952,1.855,0.797,0.955,0.961,1.415,0.717,0.999,0.966,0.805,1.895,0.661,0.791,0.984,1.11,1.273,0.758,1.941,1.085,0.757,1.214,0.706,0.983,0.642,0.732,1.854 +NM_139249,0.933,1.073,0.986,1.011,0.996,1.094,1.02,1.135,1.001,0.908,0.919,1.081,0.94,1.118,0.966,0.945,1.079,0.906,0.833,0.865,1.312,0.922,0.957,1.051,1.076,1.09,1.087,0.994,0.53,1.017,0.943,0.943,0.949,1.025,0.909,0.987,0.943,0.915,0.925,1.047,0.941,1.073,1.001,0.764,1.019,1.097,0.971,0.895,0.927,0.953,1.012,1.032,1.146,1.077 +NM_139250,1.089,0.958,0.992,0.908,0.95,0.996,1.012,1.163,0.944,1.014,1.071,0.968,1.053,0.937,0.98,0.939,1.114,0.963,1.071,0.943,1.059,1.065,0.914,1.044,1.037,1.009,1.265,1.149,0.86,1.122,1.074,0.984,0.928,1.06,0.975,0.973,1.007,1.059,1.192,0.905,0.867,0.942,1.309,0.832,1.0,0.88,1.057,0.956,0.987,1.083,1.103,0.95,0.927,1.124 +NM_139264,1.084,0.973,1.108,1.119,0.907,1.063,1.413,1.075,0.994,1.064,0.859,0.98,0.999,1.355,0.987,0.997,0.985,1.115,0.814,1.229,1.151,1.004,1.071,1.095,0.965,1.025,0.82,0.851,0.891,0.959,1.191,0.854,1.043,0.956,1.021,1.028,1.311,0.738,0.839,0.921,0.915,0.904,0.85,0.876,1.078,1.076,1.025,0.96,0.929,1.031,0.967,1.032,0.969,0.858 +NM_139265,0.496,0.786,1.738,0.62,0.714,1.145,0.784,0.837,1.317,1.728,0.858,0.595,0.634,0.484,0.836,1.331,1.18,0.964,1.106,0.784,0.443,0.732,1.469,0.863,0.476,0.667,1.34,0.562,0.513,0.698,1.054,0.952,1.094,0.997,1.012,0.746,1.0,0.653,1.464,1.532,0.937,1.015,0.825,1.102,1.438,0.906,1.2,0.983,0.998,1.346,1.178,1.129,1.651,1.877 +NM_139266,1.674,2.532,3.5,1.233,0.91,2.467,5.368,0.821,1.367,1.25,2.475,0.813,0.794,0.775,3.134,1.892,2.2439999999999998,1.275,1.053,1.537,1.3450000000000002,0.891,2.6319999999999997,1.295,1.961,0.726,2.182,0.915,0.721,1.5379999999999998,0.895,2.5359999999999996,9.673,2.208,0.595,2.322,2.4619999999999997,0.9650000000000001,2.9829999999999997,2.911,1.956,2.056,1.2770000000000001,5.837,1.624,2.059,1.6099999999999999,0.8380000000000001,2.689,1.275,2.074,3.1870000000000003,6.2490000000000006,21.961 +NM_139267,0.475,1.194,0.997,0.56,0.677,1.038,0.638,0.318,0.951,0.846,1.065,0.751,0.52,0.455,0.738,1.46,0.736,0.918,0.849,1.151,0.328,0.678,1.566,0.91,0.683,0.593,1.017,0.641,0.435,1.46,0.636,1.36,1.706,1.227,0.199,1.36,1.303,0.764,1.167,1.221,0.997,1.122,0.822,1.516,0.819,1.117,1.197,0.567,1.127,0.605,1.109,0.951,0.75,2.279 +NM_139274,1.38,2.352,1.764,1.664,1.6260000000000001,3.268,2.0389999999999997,1.1880000000000002,1.9020000000000001,1.716,2.887,1.889,1.266,1.242,2.342,4.478,1.359,2.181,1.825,3.238,1.141,1.6480000000000001,4.823,1.838,1.76,1.5699999999999998,1.968,1.525,2.213,2.725,1.4220000000000002,1.865,1.705,2.4219999999999997,0.981,2.105,3.311,1.4580000000000002,2.6109999999999998,1.71,1.5699999999999998,2.639,3.01,2.016,1.718,3.473,2.416,1.526,2.8890000000000002,1.7069999999999999,3.43,1.534,1.467,1.976 +NM_139275,0.972,0.926,0.979,0.951,0.903,1.018,0.987,0.994,0.999,1.047,1.045,1.061,1.025,0.901,1.001,1.014,0.923,1.027,0.988,1.021,1.057,1.002,1.086,1.035,1.072,0.949,0.832,0.985,0.807,1.106,0.938,0.985,1.004,0.975,0.988,1.104,1.014,1.05,1.014,1.059,0.955,0.85,1.022,0.99,1.02,1.009,0.932,0.996,1.088,0.993,0.962,0.85,1.036,0.965 +NM_139277,0.775,0.391,7.463,0.387,2.674,0.388,0.117,2.5,3.3,3.964,0.139,3.652,1.27,0.35,1.126,2.082,4.431,2.451,5.569,0.149,1.167,0.745,0.131,2.268,0.118,0.882,4.393,0.99,0.101,0.271,1.417,1.002,3.299,0.144,1.286,0.213,0.181,4.956,0.699,0.125,5.778,0.126,0.169,0.517,5.393,0.302,3.785,0.691,0.563,6.513,0.998,2.554,2.704,1.13 +NM_139278,1.044,0.974,0.984,0.939,1.127,1.007,0.893,1.108,1.079,0.976,1.001,1.061,1.119,0.852,1.022,1.113,0.892,1.034,1.027,0.929,1.245,1.153,1.027,1.14,1.009,1.325,0.952,0.927,0.992,0.989,0.918,1.002,0.975,0.967,1.007,0.866,0.941,1.308,1.007,0.851,1.101,0.839,1.164,0.951,1.029,1.114,1.009,1.375,0.975,1.005,0.922,1.092,0.884,1.072 +NM_139279,0.698,0.926,0.946,0.647,1.043,0.879,0.71,0.744,1.202,1.493,0.879,0.605,0.761,0.737,1.134,2.049,0.849,0.87,1.172,0.858,0.692,0.757,1.149,0.9,0.702,0.692,0.973,0.954,0.488,0.89,1.585,1.517,2.199,1.116,0.944,0.773,1.078,0.932,0.882,1.145,1.108,1.291,0.618,1.171,1.198,0.747,1.125,0.748,1.005,0.733,0.779,0.805,1.078,1.465 +NM_139280,0.606,1.747,1.038,0.887,0.885,1.439,0.987,0.638,0.857,0.833,1.108,0.704,0.641,0.659,0.927,1.139,0.738,1.137,0.912,1.263,0.864,0.791,1.178,0.802,1.076,0.775,0.739,0.819,0.895,1.442,0.779,1.434,1.361,1.527,0.637,0.978,1.109,0.764,1.47,1.06,0.735,1.241,0.823,1.577,0.787,0.983,0.941,0.781,0.867,0.788,1.03,0.855,0.838,1.714 +NM_139281,0.89,0.918,1.116,0.903,1.088,0.919,0.843,0.818,1.203,1.202,0.774,0.967,0.852,0.898,1.136,0.944,0.944,0.924,1.05,1.059,0.848,0.961,1.023,1.345,0.814,0.933,1.231,1.053,0.654,0.953,0.97,1.079,1.301,0.821,0.681,1.017,0.741,1.067,1.426,0.829,1.197,1.014,0.714,1.024,1.002,0.909,1.138,0.863,1.187,0.905,0.967,0.836,0.999,1.368 +NM_139282,0.872,1.098,0.968,0.943,0.996,1.028,1.099,0.953,0.947,1.13,0.948,1.022,0.898,1.137,0.918,1.156,1.138,1.037,1.11,0.978,1.11,0.868,1.02,0.963,1.015,0.955,1.08,1.012,0.857,1.066,0.985,0.974,1.007,0.929,1.016,1.051,1.048,1.009,1.065,0.895,1.115,1.11,0.926,1.08,0.988,1.057,0.991,0.991,1.013,0.984,0.829,0.922,1.044,1.039 +NM_139283,0.914,0.757,1.256,0.723,0.906,1.037,0.86,1.081,1.114,0.969,0.942,0.961,0.891,0.991,1.127,1.05,0.86,0.84,1.0,0.972,0.919,1.011,0.978,1.068,0.848,0.915,1.12,0.963,0.637,0.998,1.147,1.035,0.876,1.185,0.901,1.155,1.013,0.815,1.162,1.088,0.998,1.101,0.891,0.912,1.021,0.968,0.957,0.833,0.987,0.93,1.059,1.132,1.017,1.281 +NM_139284,1.031,1.113,0.952,0.864,0.785,0.956,1.062,0.926,0.878,0.888,0.898,0.888,0.888,0.957,1.037,1.129,0.941,0.892,0.925,1.107,0.874,0.856,1.436,0.892,1.237,0.855,0.96,1.067,0.759,1.916,0.806,1.273,0.876,1.924,0.831,0.911,1.145,1.036,1.078,0.906,1.034,1.836,0.865,0.789,1.079,1.13,0.841,0.876,0.981,0.905,0.955,1.11,0.946,0.896 +NM_139286,0.491,1.166,1.107,0.59,0.863,1.246,0.648,0.603,0.995,1.04,0.913,0.8,0.644,0.598,1.04,1.848,0.751,0.869,1.242,0.998,0.686,0.794,1.182,1.031,0.562,0.747,1.367,0.788,0.422,1.145,0.917,1.352,2.218,1.35,0.301,0.837,1.034,0.827,1.574,1.168,1.196,1.237,0.654,1.202,0.919,0.89,0.769,0.682,0.9,0.86,0.923,0.815,1.002,1.55 +NM_139289,2.02,1.9209999999999998,2.1559999999999997,2.205,2.184,1.8860000000000001,1.9889999999999999,1.881,2.138,2.0789999999999997,2.0229999999999997,1.979,1.978,1.9129999999999998,1.853,2.141,1.924,2.255,2.058,1.983,2.201,1.9729999999999999,1.915,1.866,2.104,2.113,1.822,1.962,2.3419999999999996,2.04,2.108,2.029,1.967,2.078,2.1790000000000003,1.841,1.9889999999999999,2.109,1.931,2.04,2.02,2.1559999999999997,1.673,2.13,1.927,1.986,2.2359999999999998,2.146,2.005,2.043,2.0999999999999996,1.88,2.2039999999999997,2.005 +NM_139290,1.9809999999999999,2.192,2.142,1.767,2.0300000000000002,1.9889999999999999,1.8650000000000002,2.0780000000000003,2.246,1.97,1.9780000000000002,1.841,1.989,2.153,2.083,1.97,2.048,2.205,2.027,2.05,2.121,1.909,1.8170000000000002,1.896,2.107,1.987,1.962,2.17,1.842,2.1870000000000003,2.083,2.114,2.048,1.9369999999999998,2.069,1.865,2.051,1.994,1.9899999999999998,2.121,2.089,2.036,1.821,1.976,1.8279999999999998,2.021,2.033,2.237,1.839,2.173,1.974,1.999,2.1550000000000002,2.174 +NM_139313,0.81,1.004,1.162,0.809,1.041,0.808,0.586,0.587,1.604,1.228,1.084,0.701,0.659,0.988,0.959,1.246,0.869,0.911,1.321,0.739,0.763,0.574,1.027,1.157,0.715,0.824,1.293,1.234,0.409,1.069,1.114,1.376,2.147,1.03,0.793,0.705,0.951,0.908,1.223,0.669,1.336,0.92,0.83,1.235,0.942,1.307,1.232,0.62,1.302,0.842,1.199,0.743,1.102,1.383 +NM_139314,1.092,1.062,1.276,1.111,0.981,0.923,0.904,1.072,0.952,0.982,0.988,0.972,0.935,1.076,0.833,0.92,1.268,0.975,1.103,0.962,0.894,0.943,1.01,1.048,0.953,1.058,1.245,0.974,1.174,0.955,1.127,1.0,0.96,0.848,1.477,0.906,0.958,1.196,1.024,1.435,0.955,0.918,1.104,0.994,1.034,0.986,1.14,1.196,1.004,1.185,0.982,0.973,0.973,1.034 +NM_139316,0.967,0.949,0.991,0.951,1.124,1.057,1.03,1.094,0.96,1.005,0.989,1.035,0.877,1.033,0.871,1.109,1.107,0.946,1.041,1.025,0.952,0.828,0.891,0.962,0.98,1.025,1.106,0.949,0.881,1.175,1.006,1.553,0.993,0.979,0.861,1.058,0.96,0.975,1.021,1.145,1.098,1.293,1.337,0.971,0.934,1.106,1.089,0.978,0.997,1.002,1.059,0.962,1.055,1.0 +NM_139320,0.964,1.103,0.991,1.085,0.99,1.025,1.172,0.968,0.891,0.933,1.092,0.98,0.928,1.027,0.974,0.998,1.175,0.986,1.1,0.895,1.02,0.936,1.078,1.102,1.048,0.883,1.016,0.898,1.248,0.878,1.064,0.951,0.891,0.896,1.09,1.026,1.118,1.073,0.879,0.946,1.048,1.081,1.128,1.154,0.995,1.0,1.111,0.987,0.998,0.96,1.019,1.078,0.903,0.875 +NM_139321,0.789,1.167,1.004,0.958,0.86,1.013,0.834,0.713,0.937,0.856,0.925,0.672,0.736,0.795,0.795,1.27,0.779,0.983,0.709,1.636,0.875,0.698,1.38,0.887,1.061,0.862,0.998,0.834,0.95,1.517,0.913,1.253,1.531,1.416,0.772,0.915,1.364,0.917,1.351,1.059,0.899,1.069,0.899,1.119,0.976,1.116,0.906,0.779,0.946,0.908,0.961,0.918,0.86,1.799 +NM_139323,0.769,0.876,1.102,0.623,0.967,1.206,0.62,0.552,1.167,0.982,1.001,0.817,0.596,0.535,0.892,1.459,0.682,1.045,1.113,1.05,0.356,0.823,1.502,0.999,0.651,0.778,0.97,0.925,0.51,1.32,0.939,1.089,1.303,1.231,0.287,0.781,1.266,1.008,1.173,1.202,0.929,1.204,0.679,1.052,1.111,1.144,1.107,0.688,1.014,0.835,1.289,1.066,0.802,1.23 +NM_139351,0.495,1.087,0.609,0.849,0.493,1.635,0.832,0.36,0.439,0.433,1.162,0.378,0.411,0.372,0.632,1.252,0.636,0.826,0.417,1.161,0.497,0.465,1.639,0.363,1.107,0.383,0.614,0.362,0.811,1.862,0.43,2.478,1.642,1.925,0.381,1.525,1.18,0.584,1.805,2.012,0.565,1.397,1.016,2.38,0.542,0.869,0.707,0.473,0.836,0.564,0.944,0.93,0.579,1.865 +NM_139352,0.894,1.041,0.933,0.852,1.018,1.05,1.014,0.846,0.933,0.985,1.081,0.823,0.941,0.772,0.939,0.96,1.08,0.981,1.015,1.011,0.828,0.91,1.073,0.989,0.825,0.901,0.905,0.915,0.699,0.981,0.963,1.029,1.456,1.022,0.878,1.046,1.014,0.906,1.07,1.031,1.112,0.903,0.805,1.013,0.988,1.126,0.917,0.777,1.038,0.92,0.94,0.892,1.149,1.178 +NM_139353,0.832,1.061,1.319,0.628,1.022,0.945,0.707,0.631,1.533,1.088,0.78,0.869,0.585,0.843,1.283,1.013,0.968,0.861,1.115,1.163,0.557,1.032,0.878,1.369,0.698,0.817,1.631,0.922,1.038,1.03,0.984,1.986,1.921,1.013,0.432,0.764,0.774,1.045,1.279,1.047,0.958,0.912,0.899,0.911,1.03,0.858,0.905,0.774,0.808,0.734,0.757,0.786,0.982,1.881 +NM_139354,0.955,0.934,1.099,0.968,1.085,0.984,0.824,0.891,0.983,0.885,1.002,1.05,1.107,0.82,0.934,0.909,0.951,0.984,0.99,1.006,1.118,1.025,0.994,1.021,1.012,0.892,1.022,1.208,1.308,1.001,0.999,1.1,0.944,0.944,0.952,1.001,0.82,0.9,1.049,1.161,1.222,1.118,1.144,1.136,1.005,0.92,1.099,0.99,1.007,0.993,0.916,1.063,0.948,0.936 +NM_139355,1.046,1.0,0.85,0.96,1.126,0.968,0.764,0.861,1.03,0.907,0.934,1.078,1.051,1.08,1.197,0.968,0.9,1.102,1.041,0.953,0.916,0.833,1.018,1.043,0.943,1.06,0.939,1.097,1.033,1.025,0.996,0.911,0.837,0.858,1.002,1.057,0.92,1.135,0.996,0.942,0.889,1.011,1.033,0.889,1.033,0.959,1.0,1.091,0.996,0.998,1.027,1.021,1.003,0.921 +NM_144488,0.938,1.095,1.066,1.166,1.024,0.979,1.005,1.076,1.044,1.061,1.043,1.0,0.868,0.836,1.08,1.11,1.0,0.975,1.036,0.909,1.088,1.073,0.962,0.866,1.011,0.999,1.058,0.925,1.413,0.925,0.964,1.261,0.908,1.019,1.137,1.072,0.866,1.064,0.984,0.87,1.064,0.998,0.98,1.103,0.975,0.819,0.833,1.061,0.96,1.064,1.071,1.048,0.912,1.047 +NM_144490,1.048,1.081,0.981,0.845,0.993,1.113,0.879,0.959,1.34,0.931,1.066,1.016,1.005,0.981,0.906,0.797,0.955,1.012,1.053,1.058,0.982,0.954,0.892,0.906,1.011,1.002,1.094,0.928,0.774,1.205,0.903,1.033,1.058,1.026,0.93,0.943,1.036,1.041,1.142,0.96,1.065,0.94,1.047,1.0,0.899,1.108,1.017,0.998,0.91,1.0,1.083,0.936,1.035,0.993 +NM_144492,0.986,0.869,0.963,1.072,1.084,0.884,1.023,0.975,0.979,0.865,1.081,1.149,0.928,0.948,0.791,1.141,0.953,1.002,1.098,0.933,1.099,0.961,0.937,1.111,0.906,0.983,1.009,1.033,1.419,0.965,0.952,0.996,0.959,1.068,1.118,1.067,0.91,1.057,0.96,1.056,0.901,1.029,1.017,0.91,1.121,1.064,0.892,0.97,1.099,1.027,1.093,1.014,1.131,0.998 +NM_144494,1.055,1.007,0.982,1.025,1.026,1.014,1.202,1.02,1.063,0.99,1.029,1.118,1.001,0.916,1.103,0.922,1.085,1.064,1.189,1.031,1.019,1.159,0.999,0.973,1.054,1.056,0.981,1.06,0.785,0.929,1.065,1.052,0.995,1.129,0.976,0.931,0.96,1.088,0.966,1.062,1.001,0.957,1.104,1.113,0.923,1.097,0.916,0.86,0.939,1.019,0.911,1.027,0.9,0.96 +NM_144497,2.088,1.9929999999999999,1.87,1.888,1.9449999999999998,1.988,1.904,1.752,1.995,1.968,1.9649999999999999,2.059,1.943,2.016,1.839,2.255,1.992,1.9969999999999999,1.9809999999999999,2.091,1.9129999999999998,1.822,2.205,1.888,2.084,1.964,2.0060000000000002,2.009,1.807,2.134,1.881,2.772,2.037,2.141,1.831,2.025,1.983,2.0599999999999996,2.154,1.997,1.935,2.405,2.518,2.028,1.903,2.1399999999999997,1.854,1.821,1.9889999999999999,1.984,2.052,1.891,2.02,2.584 +NM_144499,1.053,0.822,1.059,1.016,1.056,1.012,1.001,0.869,1.015,1.135,0.993,1.138,1.011,1.109,0.742,1.059,1.05,1.144,0.956,0.927,0.942,1.181,1.056,1.115,1.045,0.919,1.012,0.943,1.076,0.996,0.902,0.911,0.932,1.039,0.911,0.962,1.024,1.066,0.926,1.093,0.916,0.886,1.204,0.829,0.906,1.087,0.989,0.901,0.938,0.997,0.96,0.913,0.865,1.103 +NM_144501,0.692,0.83,1.243,0.598,0.925,1.242,0.65,0.672,1.143,0.943,0.813,0.56,0.654,0.81,0.849,1.479,1.133,0.832,1.271,0.745,0.765,0.746,0.834,1.013,0.579,0.939,1.266,0.93,0.512,1.246,1.111,1.886,1.561,1.077,1.463,1.021,0.954,1.006,1.478,1.144,1.252,0.857,0.701,1.269,0.881,0.83,1.636,0.754,0.947,1.0,0.9,0.724,0.958,1.477 +NM_144505,1.254,0.783,2.63,1.204,1.255,0.698,0.673,1.002,1.709,1.74,0.761,0.92,1.066,1.097,1.188,1.105,3.61,1.357,4.813,0.679,1.799,0.924,0.783,1.106,0.652,1.374,1.684,1.088,0.611,0.66,1.24,0.883,1.263,0.69,1.663,0.753,0.744,2.276,0.744,0.728,3.616,0.835,0.806,0.998,2.312,0.814,2.643,1.592,1.002,2.669,0.601,1.787,3.204,0.907 +NM_144507,1.146,0.355,4.649,0.992,1.494,0.371,0.382,1.098,3.264,3.198,0.355,1.813,1.475,0.905,1.085,1.669,4.178,1.56,6.857,0.349,2.783,1.008,0.352,1.939,0.397,1.984,2.557,1.069,0.376,0.396,1.259,0.552,1.747,0.352,1.441,0.432,0.35,3.149,0.715,0.397,5.702,0.336,0.427,0.772,3.487,0.432,5.201,2.573,0.528,4.886,0.649,3.194,5.752,1.295 +NM_144563,0.999,1.097,0.902,0.925,0.754,1.239,0.687,0.604,1.561,0.671,1.021,0.706,0.756,0.808,0.983,1.665,0.751,0.655,1.162,0.918,0.599,1.143,1.216,1.205,0.726,1.247,1.089,0.843,0.566,1.456,1.055,1.121,2.397,1.42,0.44,0.775,0.983,0.767,1.208,1.107,0.876,1.158,0.622,1.588,0.78,1.0,0.932,0.824,0.913,0.722,0.92,0.552,0.686,1.491 +NM_144564,0.637,1.814,0.893,0.727,0.776,0.934,0.78,0.419,0.867,0.796,1.089,0.901,0.634,0.499,0.708,1.052,0.933,0.946,0.79,1.314,0.486,0.635,2.053,0.842,0.767,0.757,0.732,0.777,0.579,1.35,0.631,1.331,2.208,1.366,0.194,2.16,1.18,0.833,1.752,0.783,0.963,1.278,1.059,2.346,0.941,0.975,0.773,0.76,0.832,0.602,1.092,1.099,0.828,2.125 +NM_144565,2.811,0.479,3.43,0.855,2.962,0.582,0.679,1.958,2.917,2.766,0.523,1.867,1.514,1.38,1.531,1.077,2.118,1.893,3.247,0.72,1.982,2.597,0.472,3.281,0.485,2.337,3.871,2.283,0.524,0.551,2.772,0.838,1.629,0.525,1.02,0.651,0.485,2.878,0.87,0.833,3.348,0.459,0.47,0.983,2.699,0.496,2.021,2.804,0.557,2.843,0.982,1.3,2.492,0.71 +NM_144567,0.728,1.288,1.088,0.756,0.842,1.321,0.707,0.627,1.066,0.691,1.021,1.013,0.7,0.66,0.938,1.431,0.849,0.792,0.859,1.216,0.607,0.81,1.249,0.956,0.718,0.702,1.411,0.811,0.422,1.29,0.82,1.682,1.979,1.497,0.379,0.853,1.209,0.791,1.127,0.96,1.024,1.276,0.86,0.926,0.854,1.033,0.767,0.638,0.905,0.626,1.061,0.834,0.706,1.589 +NM_144568,0.615,1.141,1.113,0.762,0.871,1.471,0.772,0.494,1.035,0.791,1.179,1.138,0.648,0.72,0.873,1.183,0.803,1.017,0.643,1.111,0.292,0.679,1.16,0.904,0.606,0.82,0.985,0.826,0.707,1.778,0.821,1.588,0.601,1.285,0.465,1.002,1.443,0.902,1.048,1.086,1.048,1.241,1.002,1.033,0.902,1.66,1.452,0.809,1.11,0.696,1.119,0.744,0.808,1.586 +NM_144569,0.838,1.119,0.969,0.889,1.119,1.072,0.954,0.961,0.858,0.901,1.046,1.003,0.955,0.796,0.95,1.058,0.908,0.907,1.109,0.919,0.859,0.935,1.002,0.895,0.981,0.915,0.769,0.941,0.876,0.894,0.909,1.877,1.042,1.371,1.029,1.068,0.993,0.912,1.2,1.529,1.015,0.972,1.042,0.971,0.961,1.01,0.943,0.978,1.066,0.904,0.948,1.032,1.023,1.042 +NM_144570,0.827,1.053,0.983,0.95,0.841,1.089,0.608,0.543,1.115,0.845,0.973,0.792,0.771,0.796,0.842,1.302,0.741,0.859,1.364,0.955,0.746,0.712,1.209,0.917,0.649,1.215,1.073,0.792,0.454,1.177,0.998,1.384,3.232,1.441,0.405,1.354,0.959,0.883,2.016,0.922,0.938,0.904,0.529,1.906,0.91,0.821,0.977,0.84,0.779,0.814,1.229,0.769,0.848,1.529 +NM_144571,0.993,1.058,0.894,1.086,0.946,0.891,1.042,1.021,1.126,0.997,0.888,0.965,1.021,0.943,0.874,1.003,0.888,1.035,0.964,0.944,1.209,1.047,0.953,1.007,1.128,0.952,0.962,1.01,1.71,0.983,1.045,1.008,1.08,1.032,1.156,0.959,1.017,1.013,1.013,0.961,1.079,0.938,1.146,0.903,1.053,0.996,1.0,0.941,0.966,1.071,1.021,1.0,0.942,0.984 +NM_144573,1.057,1.0,1.0,0.921,0.881,1.105,1.023,0.877,0.926,0.963,1.06,0.811,0.787,0.991,0.81,1.177,0.946,0.977,0.896,0.913,0.89,0.789,1.476,0.925,1.044,0.962,0.921,1.146,0.874,1.326,0.965,3.059,1.092,1.679,0.936,0.844,1.14,1.008,1.16,0.947,1.657,2.125,0.759,1.027,0.958,1.028,1.02,0.951,1.009,0.87,1.224,1.067,0.891,1.137 +NM_144575,1.149,0.953,1.061,1.044,1.042,0.893,1.029,0.955,1.034,1.054,0.892,1.081,0.976,0.892,0.95,1.048,0.892,1.007,0.943,0.891,1.064,0.953,1.076,1.035,1.04,1.014,0.959,1.133,1.142,1.02,0.978,0.948,0.934,1.052,0.894,0.97,1.085,0.973,1.087,0.95,0.979,0.965,0.785,0.92,1.014,0.765,0.846,1.057,1.019,0.977,0.968,0.885,1.061,1.043 +NM_144576,0.917,1.098,0.932,0.962,0.965,1.072,0.799,0.979,1.036,0.896,1.085,0.95,0.853,0.92,1.179,1.088,0.921,0.901,1.083,0.946,0.977,0.931,1.167,0.954,0.875,0.956,1.082,0.859,1.404,1.096,0.952,1.19,1.212,1.023,0.902,1.055,1.132,1.007,0.964,0.963,0.925,1.1,1.155,0.93,0.848,0.964,0.939,0.745,0.922,0.913,0.957,0.908,1.106,1.216 +NM_144577,0.991,0.848,1.038,0.999,0.987,1.032,0.863,1.208,1.079,0.934,1.118,0.973,0.924,1.061,1.0,0.834,0.94,0.87,1.013,0.949,1.076,1.138,0.909,0.998,1.043,1.14,1.183,1.044,0.791,0.927,1.124,0.955,0.92,0.991,0.967,0.98,1.007,1.041,1.024,1.078,0.916,0.911,0.802,1.017,0.958,0.819,1.035,0.925,1.053,0.964,1.201,0.946,0.881,1.026 +NM_144578,0.705,0.853,1.501,0.676,0.983,1.034,0.757,0.535,1.264,1.193,0.804,0.714,0.625,0.741,1.084,1.567,0.907,0.825,1.128,0.945,0.62,0.755,1.232,0.957,0.498,0.727,1.548,1.047,0.395,1.083,1.015,1.404,1.607,1.088,0.507,0.763,0.997,0.847,1.129,0.725,1.124,1.03,1.025,1.068,1.017,1.163,0.946,0.693,1.328,0.902,1.234,0.937,1.138,1.523 +NM_144579,0.908,0.779,0.983,1.231,0.879,1.226,0.849,0.791,0.893,0.978,1.003,0.86,0.864,1.14,0.902,1.104,0.985,0.91,0.845,1.07,0.771,1.051,0.977,0.728,1.169,0.813,1.046,0.765,0.93,1.344,0.906,1.462,1.125,1.086,0.687,1.0,0.989,0.892,1.02,0.997,0.791,1.103,0.955,1.147,0.839,1.05,1.144,0.964,0.952,0.842,1.04,0.934,1.067,1.237 +NM_144580,0.514,1.19,0.883,0.605,0.708,1.549,0.729,0.547,1.062,0.568,1.452,0.398,0.634,0.69,0.882,1.281,0.696,1.234,0.725,0.993,0.355,0.616,1.406,0.779,0.486,0.771,1.007,0.75,0.597,1.884,0.754,2.86,0.862,1.372,1.281,1.929,0.972,0.591,1.041,1.257,0.807,1.339,0.701,1.459,0.706,1.217,1.514,0.86,0.564,0.547,1.148,0.744,0.658,1.274 +NM_144581,1.088,1.082,1.189,0.971,0.921,0.884,0.88,0.985,1.058,1.202,0.941,1.064,1.043,0.878,1.003,0.894,1.061,1.082,1.412,0.952,1.063,1.13,1.13,1.088,0.957,1.029,1.039,0.949,0.835,0.936,0.801,1.356,1.254,0.965,0.797,1.002,0.864,1.038,0.994,1.176,1.121,0.881,1.188,1.066,1.115,0.947,0.962,1.045,1.008,1.087,0.876,0.85,1.201,1.035 +NM_144583,1.622,0.814,1.33,1.019,2.174,0.805,0.975,1.935,2.063,1.351,0.869,1.471,1.98,1.381,0.988,0.823,1.625,1.011,1.541,0.792,1.051,1.714,0.806,1.004,0.899,1.689,1.243,1.978,0.993,0.93,1.908,1.041,1.086,0.889,3.793,0.964,0.87,1.669,0.854,0.932,1.511,0.71,0.883,0.802,1.321,0.856,1.106,2.236,0.864,1.257,0.902,0.95,1.146,1.018 +NM_144584,0.565,1.947,0.708,0.603,0.601,2.321,0.724,0.621,0.609,0.639,1.942,0.707,0.549,0.45,1.302,3.121,0.847,0.773,0.731,2.15,0.608,0.544,2.713,0.608,0.535,0.56,0.816,0.597,0.377,2.24,0.575,1.084,4.713,1.063,0.46,1.121,1.705,0.516,2.114,1.125,0.731,1.683,1.664,1.428,0.618,1.44,1.516,0.506,1.917,0.461,1.807,1.156,0.665,4.611 +NM_144585,1.181,1.049,1.022,1.083,1.097,0.952,1.116,1.183,1.041,0.996,1.07,0.954,1.005,0.943,1.028,1.041,1.133,1.012,0.999,0.958,1.033,1.041,0.966,1.047,1.1,0.984,0.927,1.014,1.249,1.027,0.87,0.973,1.003,0.911,1.043,0.978,0.973,0.903,1.015,0.945,0.925,0.863,1.08,1.036,1.124,0.955,0.894,1.013,0.973,1.047,0.906,1.001,0.988,0.998 +NM_144586,0.959,0.991,0.956,1.086,0.974,0.966,1.071,0.981,1.072,0.868,1.059,1.141,0.939,0.98,0.965,1.103,0.91,1.129,1.043,1.14,1.032,0.809,1.032,0.918,0.961,1.05,1.567,1.043,0.704,1.061,0.963,1.14,1.011,1.066,1.015,1.099,1.072,0.982,1.018,1.464,0.878,1.161,0.771,1.188,0.988,0.913,1.001,0.966,0.988,0.936,1.084,0.976,1.095,0.941 +NM_144587,0.824,4.331,0.825,0.944,0.836,1.074,0.945,0.913,0.846,0.936,1.406,0.876,0.842,0.795,1.043,1.253,0.927,0.862,0.89,1.059,0.934,0.861,1.083,0.86,0.919,0.881,0.835,0.916,1.069,1.796,0.961,1.385,1.15,1.161,0.8,13.32,1.038,1.017,1.759,1.442,0.83,1.018,0.996,1.453,0.901,1.001,1.087,0.916,1.082,0.924,1.085,1.159,0.957,1.446 +NM_144588,0.98,1.1,0.887,1.045,1.106,1.068,0.926,0.856,1.013,1.013,1.0,0.983,0.913,0.876,0.912,1.139,1.015,0.982,0.816,1.005,0.969,0.897,1.001,1.083,0.994,1.059,0.96,0.995,1.215,0.999,0.853,1.425,1.087,1.043,1.0,1.044,0.946,0.929,1.033,1.175,1.014,0.994,0.911,1.09,0.992,0.937,0.949,1.007,1.093,0.918,0.921,0.906,0.901,0.975 +NM_144589,1.263,0.548,1.411,1.069,1.097,0.874,0.464,0.9,1.121,1.0,1.116,1.452,1.43,0.742,0.946,1.52,0.979,1.15,2.023,0.707,1.025,1.467,0.813,1.597,0.737,1.799,1.208,1.243,0.455,0.749,0.959,0.478,1.695,1.151,0.744,1.261,0.847,1.18,1.209,0.6,1.221,0.69,0.462,0.81,1.395,0.968,0.978,2.042,0.73,1.231,0.645,1.058,1.269,0.86 +NM_144590,1.152,1.262,1.154,0.845,1.388,0.766,0.489,0.625,1.794,1.6,0.881,0.699,0.83,0.751,1.029,1.103,0.78,0.909,1.708,0.727,0.715,1.228,1.04,1.307,0.716,1.22,1.666,1.169,0.518,1.165,1.298,0.405,0.849,1.064,0.341,0.486,0.914,1.204,1.037,0.674,1.258,0.848,1.18,0.605,1.634,0.823,0.904,1.211,1.269,0.874,0.905,0.719,1.555,0.679 +NM_144591,0.712,1.304,1.057,0.754,0.887,0.818,0.724,0.582,1.076,0.907,1.096,0.62,0.778,0.755,1.101,1.758,0.848,1.342,1.07,1.05,0.63,0.757,1.282,0.983,0.928,0.958,1.078,0.865,0.539,1.04,0.788,1.911,0.969,1.565,0.46,1.253,1.273,0.923,1.362,0.732,0.891,1.328,0.895,1.001,0.829,0.992,1.117,0.777,0.855,0.764,1.159,0.737,0.886,1.037 +NM_144592,0.981,0.959,0.984,1.003,0.78,0.989,0.987,1.097,0.769,0.786,0.998,1.06,0.949,0.856,0.881,1.134,1.009,0.883,0.762,1.053,0.959,1.155,0.983,0.974,1.082,0.961,0.906,0.99,0.855,1.008,1.069,0.865,1.058,1.058,0.974,0.877,1.05,1.171,1.117,0.91,0.967,1.0,0.693,1.29,0.973,1.023,1.112,1.073,1.075,0.928,0.999,0.854,1.024,1.076 +NM_144593,0.953,1.0,1.011,0.889,0.993,0.952,0.847,1.047,0.904,1.039,0.838,0.894,0.855,1.009,0.978,0.984,0.889,0.892,1.027,0.851,0.864,0.966,0.856,1.044,1.042,1.072,1.081,0.999,0.577,1.066,0.964,1.224,0.955,1.055,0.911,1.151,0.955,0.935,1.038,1.302,0.966,0.899,0.759,1.201,1.011,1.01,1.049,1.0,0.892,0.971,1.104,1.014,0.892,1.467 +NM_144594,1.073,0.944,0.795,1.009,0.911,0.968,1.098,0.983,0.914,0.931,1.017,0.915,1.101,1.828,0.885,0.89,0.947,0.959,1.116,1.001,1.05,0.936,0.98,1.113,0.978,1.061,0.948,0.992,0.939,0.981,1.014,1.012,1.075,0.982,1.032,0.947,0.945,0.991,1.008,0.917,0.974,1.033,0.895,0.871,1.013,1.002,0.942,1.044,0.947,1.059,0.956,0.919,1.067,1.162 +NM_144595,0.969,0.993,0.907,1.063,0.893,1.326,1.087,0.786,0.996,0.813,1.184,0.9,0.918,0.877,0.8,1.232,0.96,1.029,0.853,1.091,0.899,0.969,1.118,0.914,1.067,0.845,0.935,0.921,0.914,1.329,1.022,1.021,1.029,1.194,0.918,0.949,1.07,0.842,1.228,0.864,0.92,1.121,1.089,1.134,0.958,1.149,0.86,0.938,0.965,0.933,1.108,0.943,0.952,1.016 +NM_144596,0.991,1.091,0.928,0.971,1.004,0.977,0.97,0.89,0.928,0.975,1.06,0.866,1.062,0.921,0.889,1.002,1.024,1.052,1.114,1.231,1.012,0.98,0.872,1.078,1.137,0.961,1.044,1.056,0.94,0.906,1.001,0.93,0.999,0.9,1.121,1.088,1.018,1.006,0.989,1.148,0.975,0.974,1.013,0.98,1.095,1.124,1.202,1.098,0.97,0.965,1.014,1.059,1.205,1.028 +NM_144598,0.814,0.934,1.192,0.864,1.018,1.088,0.821,0.739,1.058,1.107,1.212,1.009,0.824,0.832,0.942,1.857,0.824,0.952,1.385,0.961,0.89,1.202,1.124,1.103,0.741,1.198,0.973,1.027,0.637,0.905,0.935,0.895,0.989,1.052,0.679,0.787,1.227,1.119,1.387,0.624,0.97,1.181,1.405,0.776,1.01,1.161,1.117,1.119,1.06,0.988,1.077,0.777,0.85,0.899 +NM_144599,0.922,0.981,0.889,0.987,1.006,0.925,0.977,1.104,0.947,0.97,0.846,0.903,1.039,0.933,0.908,1.093,0.99,1.028,1.023,0.965,0.932,0.999,1.09,1.049,1.075,1.115,0.934,1.05,0.829,1.018,0.985,1.108,1.004,1.113,1.101,0.891,0.925,1.026,1.032,0.911,0.958,0.996,0.939,1.128,1.048,1.083,0.831,0.867,0.978,0.914,1.008,0.988,0.905,1.012 +NM_144600,0.782,1.001,1.338,0.639,1.119,1.028,0.516,1.06,1.683,0.98,1.057,1.143,0.952,0.994,1.172,1.337,0.805,0.999,1.85,0.743,0.774,1.341,0.979,1.549,0.463,1.022,1.318,1.269,0.378,1.054,1.336,0.815,2.589,1.276,0.272,0.537,0.907,1.333,0.955,0.628,1.449,0.857,0.543,1.001,0.988,0.785,1.041,1.049,0.794,0.773,0.823,0.685,1.025,1.689 +NM_144602,1.071,1.047,1.035,0.819,0.928,0.936,1.17,0.975,1.043,1.125,0.887,1.034,1.129,0.926,0.85,0.868,0.847,1.022,1.083,0.911,0.904,0.974,0.859,1.06,0.965,0.858,1.073,0.988,0.885,1.02,1.066,1.104,0.967,0.962,0.897,1.131,1.139,1.204,0.937,1.071,0.934,1.035,1.069,0.924,1.081,1.063,0.904,0.877,0.931,0.919,1.003,0.992,1.02,0.964 +NM_144603,0.937,1.104,1.019,0.806,1.0,1.906,0.707,1.068,0.865,0.957,1.428,0.871,1.176,0.602,1.185,2.553,1.01,0.977,1.723,0.854,0.829,0.963,1.263,1.106,0.709,1.311,1.084,1.062,0.484,1.185,1.145,1.122,3.074,1.11,1.21,1.819,1.134,0.988,3.367,0.915,0.836,0.869,0.618,0.891,0.682,1.099,0.969,1.401,0.611,1.0,0.958,0.987,0.973,1.207 +NM_144604,0.86,1.1,1.094,0.92,0.733,0.906,0.848,0.497,0.905,0.963,0.998,0.847,0.587,0.699,0.745,1.192,0.834,0.896,1.021,0.911,0.91,0.82,1.525,0.954,0.85,0.962,0.964,0.68,0.778,1.021,0.944,1.126,2.316,1.384,0.489,0.94,1.081,0.9,1.719,1.292,0.923,1.224,0.971,1.837,1.042,0.944,1.135,0.775,1.105,0.869,1.278,1.035,0.947,1.121 +NM_144605,0.933,0.972,0.949,0.971,1.017,0.909,1.077,0.989,1.014,1.002,1.188,1.143,1.154,1.099,0.85,1.063,0.886,0.957,1.029,0.865,1.0,1.07,0.978,1.013,0.859,1.093,1.029,0.912,0.904,1.043,1.097,1.04,1.033,1.009,1.012,1.011,0.987,1.016,1.014,1.159,0.952,0.955,1.163,1.08,0.977,1.046,0.935,0.925,1.093,1.014,1.077,0.92,1.0,1.032 +NM_144606,2.009,1.741,1.814,1.9009999999999998,2.001,2.1109999999999998,2.021,1.858,2.035,1.952,2.083,2.121,1.853,2.132,2.106,1.8809999999999998,1.767,2.027,2.043,1.9829999999999999,1.8090000000000002,1.944,1.988,2.303,1.787,1.8849999999999998,2.222,2.08,1.697,2.088,2.386,2.2720000000000002,2.275,1.911,2.071,2.232,1.9100000000000001,2.0469999999999997,2.058,3.125,1.737,1.871,2.904,2.125,2.086,1.993,2.298,1.764,1.784,1.943,2.0060000000000002,1.899,1.956,1.9979999999999998 +NM_144608,0.765,1.506,1.199,0.74,0.817,1.166,0.878,0.637,0.827,0.672,1.104,1.048,0.945,0.737,0.778,1.086,0.931,1.044,1.076,1.16,0.668,0.829,1.203,0.957,0.825,0.951,1.175,0.87,0.683,1.797,0.8,1.51,1.951,1.335,0.525,0.958,1.065,1.051,1.085,0.888,1.166,1.202,0.459,1.567,0.939,0.86,0.972,0.827,0.734,0.883,1.04,0.923,0.702,1.209 +NM_144609,0.647,1.101,1.222,0.73,0.798,1.064,0.649,0.556,1.215,1.04,1.106,0.975,0.661,0.661,0.87,1.198,0.881,0.832,0.984,1.068,0.54,0.858,1.225,1.147,0.684,0.72,1.391,0.804,0.374,1.069,0.855,1.384,2.098,1.25,0.313,0.952,1.048,1.031,1.366,0.718,1.186,1.03,0.791,1.413,0.97,1.134,0.994,0.607,0.94,0.737,1.081,1.017,0.932,1.685 +NM_144610,1.119,0.928,0.88,0.9,0.94,1.025,0.85,1.043,1.042,0.96,0.958,0.982,0.835,1.071,1.242,1.058,1.1,1.06,1.109,1.038,1.01,1.002,1.042,1.106,0.982,0.87,0.977,1.098,0.898,1.046,0.998,0.972,0.992,0.97,1.034,0.997,1.074,1.101,1.033,0.97,1.045,1.048,1.176,0.992,1.022,0.829,1.002,0.973,1.153,0.888,0.944,0.81,1.02,0.84 +NM_144611,0.607,1.033,1.186,0.778,0.77,1.726,0.682,0.71,0.823,0.817,1.145,0.834,0.813,0.871,1.217,1.408,0.937,0.909,0.988,0.975,0.799,0.914,0.997,0.957,0.983,0.734,1.477,0.875,0.641,1.558,0.788,1.166,1.562,1.885,0.581,0.902,1.096,0.86,1.003,0.67,0.96,1.345,0.832,0.767,1.003,1.093,0.867,0.736,0.907,0.968,1.123,0.65,0.97,1.176 +NM_144613,0.813,1.009,1.108,0.987,0.993,1.011,0.95,0.985,1.08,1.118,0.917,0.992,1.078,0.914,1.125,0.926,1.029,1.034,0.893,0.944,0.913,1.047,0.896,1.229,0.997,1.006,0.921,1.149,0.798,0.929,1.058,0.996,1.048,0.979,1.475,1.113,0.855,1.206,0.979,0.958,1.155,0.915,0.929,0.95,1.015,1.07,0.914,1.033,1.103,1.099,0.976,1.111,1.11,1.049 +NM_144614,1.12,0.956,1.104,0.911,1.161,1.07,0.842,1.048,1.117,0.95,0.884,0.963,0.996,0.964,1.042,1.106,1.009,0.971,0.919,1.101,1.09,1.099,1.082,0.963,1.077,1.04,0.803,1.044,0.776,1.098,0.828,0.948,0.941,0.935,1.097,1.133,1.141,1.124,0.951,0.815,1.003,1.003,0.973,1.162,0.888,1.061,0.926,0.992,1.048,0.955,0.804,0.934,1.052,0.904 +NM_144615,0.996,1.148,1.241,0.959,1.022,0.984,0.897,1.006,1.09,1.186,1.035,0.944,1.021,1.095,0.954,0.987,0.903,0.813,1.16,1.078,1.0,1.022,1.104,0.9,0.946,0.907,1.04,0.948,0.772,1.039,1.068,1.128,0.982,1.129,1.084,0.977,1.094,0.908,1.151,0.849,1.088,1.075,0.833,0.947,1.049,1.074,0.989,1.004,1.136,1.0,1.121,0.933,0.94,1.059 +NM_144617,0.925,1.023,1.007,0.781,0.954,1.079,1.195,0.783,0.917,0.91,1.281,0.926,0.926,0.842,1.09,1.018,0.941,1.092,0.855,1.006,1.434,0.847,1.48,1.024,0.991,0.942,0.963,1.113,1.592,1.164,1.027,1.229,1.427,2.236,1.237,0.929,1.021,1.059,1.137,0.989,1.292,1.552,1.212,1.033,0.816,1.002,0.885,0.992,0.913,1.085,1.072,0.764,0.826,0.944 +NM_144620,0.995,1.113,1.083,1.032,0.979,1.034,0.918,0.923,1.045,0.967,0.917,0.921,0.944,1.032,0.877,1.093,0.954,1.065,0.999,1.001,0.988,1.053,0.816,0.992,0.966,1.178,1.063,1.064,0.87,0.963,0.884,0.935,0.906,0.901,0.961,0.957,0.938,0.924,0.899,1.071,0.998,0.981,0.981,0.932,0.976,0.878,1.015,0.929,1.04,1.043,0.966,0.92,0.957,1.116 +NM_144621,0.879,1.213,1.034,0.753,0.815,1.054,0.859,0.751,0.975,0.85,1.008,0.947,0.876,0.988,0.947,1.033,1.007,1.022,0.908,0.985,0.886,0.946,1.174,1.017,0.905,0.886,1.169,1.078,0.697,1.171,1.002,1.286,1.258,1.167,0.852,0.975,1.072,0.956,1.171,1.026,0.945,1.17,0.826,1.095,0.906,1.084,1.007,0.746,0.939,0.848,1.02,0.904,0.75,1.08 +NM_144622,1.037,0.89,0.928,1.064,1.248,0.871,0.985,1.061,1.146,0.852,1.011,0.873,1.088,1.083,1.032,1.154,1.04,0.961,0.899,0.955,1.023,0.95,1.024,1.087,1.01,0.888,0.79,1.063,1.169,0.919,1.0,1.016,1.044,0.937,0.843,0.961,1.016,1.145,1.024,0.966,0.98,0.997,0.975,0.854,1.007,0.951,0.956,1.068,0.996,1.0,1.062,0.977,1.184,1.066 +NM_144624,0.932,0.976,1.037,0.97,1.014,1.041,1.016,0.998,1.009,0.86,0.876,0.943,0.722,1.056,0.993,0.995,0.978,0.929,0.841,1.036,0.948,0.81,0.878,0.931,0.967,0.897,1.186,1.128,1.536,1.097,0.974,0.927,1.398,1.053,1.191,1.039,0.963,0.986,1.009,1.086,1.122,0.896,0.999,1.037,1.098,1.058,1.149,0.913,1.2,1.133,0.993,0.918,1.049,1.164 +NM_144626,0.365,1.849,0.492,0.781,0.507,1.732,0.904,0.334,0.466,0.44,2.126,0.521,0.366,0.267,0.796,1.96,0.294,1.152,0.771,1.51,0.303,0.373,1.222,0.463,1.708,0.407,0.424,0.45,0.88,2.297,0.346,1.669,1.239,2.307,0.22,1.434,2.052,0.441,1.989,0.773,0.533,1.826,0.829,2.202,0.465,1.525,0.966,0.441,1.019,0.388,1.611,0.647,0.46,1.096 +NM_144627,0.84,1.163,1.033,0.949,1.014,0.982,0.779,0.922,1.109,1.036,0.973,1.199,0.914,1.051,1.072,0.931,0.992,1.088,1.037,0.855,0.998,0.897,0.999,0.946,1.021,0.959,0.982,1.153,0.853,1.003,0.986,1.024,1.368,0.941,0.852,1.275,0.922,1.037,1.05,1.001,0.998,0.92,1.054,1.098,1.083,1.083,1.194,0.997,0.961,0.9,0.979,1.057,1.125,1.249 +NM_144629,1.041,1.135,1.01,0.772,0.885,1.114,1.029,0.831,0.853,0.914,1.018,0.928,0.974,0.985,1.059,1.151,0.823,0.961,1.055,0.911,0.981,0.828,1.285,0.903,1.067,0.917,0.857,0.936,1.352,1.113,0.955,2.263,0.995,1.215,0.738,0.998,1.092,0.914,1.2,1.008,0.89,1.268,0.949,1.153,0.833,1.11,0.844,0.966,0.888,0.929,1.002,1.159,1.081,0.946 +NM_144631,0.869,0.874,0.954,1.02,1.019,1.065,1.032,0.882,0.931,1.113,1.029,0.979,0.95,0.978,0.893,1.124,1.095,0.924,0.901,1.128,0.739,0.93,0.988,1.164,0.907,0.962,1.029,0.941,0.852,0.866,1.106,1.051,1.114,1.059,0.921,0.881,1.149,1.127,1.199,1.113,1.013,1.088,0.861,0.873,0.919,0.85,1.075,1.077,0.9,0.99,0.91,0.803,0.881,1.115 +NM_144632,1.018,1.389,1.022,1.052,0.959,1.118,0.897,1.004,0.986,1.07,1.067,0.989,0.875,0.777,1.057,1.173,0.984,1.142,0.945,0.941,0.795,1.035,0.938,0.876,1.008,0.861,0.976,0.971,0.833,1.117,0.932,1.205,1.049,1.098,0.868,0.938,1.18,0.915,1.097,0.975,0.88,0.957,1.012,0.961,0.848,1.131,0.961,0.9,0.891,0.899,1.098,1.124,1.045,1.229 +NM_144633,1.15,1.125,0.978,1.006,1.122,1.067,1.19,0.895,0.994,0.944,0.938,1.096,0.93,1.026,0.87,0.896,1.115,0.838,1.039,1.005,1.151,0.881,0.955,1.037,0.946,0.94,1.001,0.939,0.687,0.937,0.929,1.02,0.95,1.092,1.177,0.902,0.954,0.984,1.019,0.773,1.112,0.97,0.911,1.061,1.019,1.123,1.015,1.124,1.098,1.026,0.999,1.028,0.945,1.032 +NM_144634,1.0,0.817,0.927,1.073,0.992,1.082,0.931,1.01,0.987,1.104,1.015,0.896,0.872,1.014,1.154,0.911,0.948,1.154,1.02,1.05,1.151,1.051,0.939,0.955,1.094,1.012,1.103,0.978,1.104,1.011,0.917,0.91,1.21,0.885,1.066,0.978,1.082,1.043,1.009,1.0,1.065,1.006,0.835,0.961,0.881,1.007,1.016,1.054,1.067,1.095,1.048,0.959,1.12,0.88 +NM_144635,0.585,1.18,0.98,0.625,1.163,1.326,0.74,0.876,1.342,1.26,0.726,0.836,0.638,0.726,0.818,0.943,0.763,1.04,0.815,1.0,0.635,0.882,1.021,1.088,0.635,0.724,1.012,1.025,0.579,1.18,1.235,1.977,1.229,1.196,0.944,0.977,0.813,1.025,1.055,1.024,1.2,0.977,0.974,1.087,0.959,0.849,1.387,0.77,0.892,0.808,0.877,0.921,1.119,1.659 +NM_144636,0.739,1.124,0.907,0.82,0.856,1.008,0.631,0.528,0.877,1.208,1.068,1.147,0.804,0.607,0.82,1.71,0.746,0.851,0.802,1.17,0.471,0.675,1.275,1.151,0.933,0.67,0.938,0.8,0.393,1.491,0.663,1.063,1.5,1.162,0.267,1.57,1.16,0.819,1.473,0.844,1.013,1.256,0.869,0.877,1.129,1.216,1.582,0.667,1.603,0.69,1.041,1.236,0.908,1.794 +NM_144638,0.83,1.48,1.389,0.97,0.796,1.008,0.726,0.763,0.931,0.886,0.968,0.947,1.069,0.925,1.009,1.249,0.943,0.997,1.163,1.052,0.818,0.953,1.054,0.89,1.018,0.942,1.313,0.862,0.63,1.626,0.869,1.717,1.121,1.42,0.457,0.723,0.992,0.962,1.198,0.728,1.054,1.148,0.632,1.028,0.97,0.864,0.756,0.823,0.751,0.819,1.114,0.902,0.927,1.803 +NM_144639,0.967,0.955,1.058,0.942,1.23,0.855,0.991,0.942,1.05,0.996,0.993,0.919,1.063,1.093,0.896,1.046,0.936,1.077,0.968,0.92,1.086,0.952,0.986,1.016,1.022,0.971,0.817,1.089,1.132,0.997,0.983,1.079,1.042,0.969,1.033,1.035,0.926,0.987,1.124,1.041,1.24,0.936,1.106,1.025,0.94,0.955,1.065,1.071,1.048,0.926,1.042,1.009,0.99,0.939 +NM_144641,0.923,1.145,1.762,1.01,0.808,0.875,0.805,0.833,1.037,0.948,0.785,0.98,1.159,1.028,0.907,0.939,1.07,0.859,1.296,1.096,0.713,1.047,0.866,1.055,0.747,1.397,1.23,1.048,0.552,1.662,1.174,2.011,0.737,1.525,0.522,0.596,0.623,1.285,0.874,0.967,1.441,1.189,0.55,0.626,1.081,0.686,0.864,1.091,0.468,0.773,0.587,0.941,1.099,1.312 +NM_144642,1.106,1.187,1.068,1.06,0.967,0.938,0.974,0.969,0.955,1.124,0.976,0.964,1.016,0.731,1.0,0.935,0.908,1.02,0.736,1.0,0.989,1.02,0.931,1.052,0.934,0.935,0.905,1.006,0.995,0.954,0.98,1.035,0.848,1.442,1.035,0.918,1.027,0.962,1.103,1.009,1.072,0.943,1.107,0.994,1.033,1.149,1.039,0.893,0.992,0.912,1.144,0.867,1.098,0.989 +NM_144643,0.975,0.958,1.146,0.937,1.104,1.176,1.05,0.936,0.99,1.025,1.11,0.92,0.892,0.89,1.014,1.165,0.981,0.994,1.122,1.205,0.788,1.03,1.164,0.964,0.821,0.89,1.35,0.923,0.827,0.928,1.054,0.985,1.561,0.939,0.951,1.188,0.887,1.106,1.184,0.935,0.966,0.985,0.843,0.973,1.035,1.035,1.03,0.982,1.223,0.967,1.072,0.888,0.983,1.062 +NM_144644,0.908,1.024,0.99,0.958,0.964,0.894,0.959,1.146,1.0,0.967,0.958,1.032,1.186,1.072,1.117,1.014,0.905,0.96,1.023,1.07,1.073,0.783,0.936,0.976,0.915,1.093,0.966,1.028,1.237,0.869,0.741,1.085,1.078,0.949,1.018,1.119,0.954,0.963,1.021,1.069,0.946,0.964,0.92,1.005,1.033,0.966,1.013,1.01,1.129,0.993,0.962,0.943,1.12,1.15 +NM_144645,1.0,1.135,1.103,0.996,1.035,1.093,0.9,0.843,1.108,0.974,0.952,0.904,0.901,1.022,0.833,1.026,0.872,0.997,1.084,0.865,0.952,1.046,0.986,1.12,0.978,1.072,1.013,0.99,0.866,0.986,0.916,0.841,1.049,1.105,1.0,1.019,1.003,1.0,1.097,0.788,1.135,0.886,1.067,1.018,0.911,0.979,0.847,0.985,0.897,1.13,1.216,1.024,1.067,1.023 +NM_144646,0.0971,7.856,0.624,5.984,0.152,8.191,13.0,0.208,0.421,0.136,1.988,0.105,0.383,0.142,1.561,2.936,0.134,2.892,0.101,5.28,0.176,0.122,3.987,0.435,4.169,0.14,0.134,0.335,0.588,7.45,0.106,0.354,0.189,13.2,0.115,0.744,12.81,0.596,12.43,0.158,0.268,13.43,0.601,0.138,0.142,4.165,0.977,0.126,0.358,0.101,12.37,0.9,0.158,6.573 +NM_144647,1.0,0.866,0.998,0.881,1.083,0.898,0.948,1.1,1.027,0.929,1.141,1.027,1.107,1.126,0.865,1.15,0.864,0.999,1.003,0.774,1.046,1.152,0.937,0.981,0.891,1.076,1.04,1.031,0.913,0.961,0.962,1.112,1.09,1.144,0.87,1.054,0.938,1.134,0.849,1.045,0.842,1.034,1.241,0.988,1.025,0.954,1.035,0.963,0.797,0.979,1.178,1.001,0.93,1.0 +NM_144648,1.165,0.922,0.956,0.97,1.048,1.029,0.899,0.932,1.022,1.066,0.998,1.157,0.956,1.07,1.004,0.982,1.019,0.933,1.151,1.286,1.03,0.999,1.16,1.003,1.014,0.955,0.889,0.851,1.056,1.069,0.954,1.075,1.143,0.995,1.085,1.155,1.078,0.755,0.994,0.872,1.006,1.036,0.842,1.093,0.898,1.124,1.154,1.007,1.166,0.889,0.971,1.046,0.893,1.083 +NM_144649,0.998,1.106,1.184,1.345,0.967,0.977,0.837,1.034,1.105,0.943,1.016,0.883,1.029,1.03,0.895,0.923,0.915,0.891,0.952,1.163,0.844,1.007,1.03,0.986,0.959,0.954,1.162,0.989,0.749,1.252,0.855,1.124,0.958,1.165,0.924,1.241,0.948,0.957,1.398,2.774,0.881,1.397,0.928,0.976,1.022,1.017,1.077,0.877,0.911,0.884,0.988,1.529,1.003,1.18 +NM_144650,0.98,1.605,1.067,1.079,0.948,0.935,0.917,1.093,1.072,1.028,0.863,1.0,1.016,0.948,1.102,0.965,1.124,1.036,0.989,1.042,1.018,1.181,0.74,1.068,1.566,1.168,1.162,1.148,0.72,1.184,1.131,0.983,1.098,1.344,0.841,0.963,0.994,0.997,1.012,0.906,1.011,1.15,0.828,1.019,1.119,0.871,0.948,0.925,0.914,0.923,0.953,0.952,0.961,1.073 +NM_144651,1.106,1.094,1.112,0.918,0.982,0.956,0.907,1.045,1.001,1.218,0.989,0.856,1.023,0.763,1.475,0.881,1.126,1.19,1.01,1.136,1.0,1.153,0.837,0.886,1.019,0.822,0.968,0.991,1.015,0.963,1.098,1.052,0.901,1.162,0.915,1.195,1.075,1.028,1.228,1.096,1.072,0.977,0.863,1.099,1.01,0.944,1.226,0.969,1.04,0.887,0.877,1.033,0.993,0.858 +NM_144652,0.897,1.098,0.917,0.968,0.926,1.225,1.013,0.8,0.829,1.181,1.121,0.931,0.853,0.89,0.895,1.0,0.887,1.088,0.842,1.047,1.004,0.92,0.839,0.906,0.976,0.816,0.944,0.806,0.903,1.305,0.929,1.026,0.951,1.359,1.039,1.353,0.976,0.86,1.504,1.097,0.802,0.876,0.902,1.073,1.088,1.014,1.072,0.823,1.064,1.086,1.067,1.289,1.173,1.239 +NM_144653,0.965,1.023,1.087,0.854,1.04,1.102,1.07,0.939,0.985,1.005,1.028,0.953,0.963,0.935,0.896,1.119,0.899,1.059,0.889,0.953,1.103,0.886,0.886,0.973,0.947,0.989,1.059,0.958,0.768,1.007,1.075,0.92,0.96,1.144,0.9,1.177,0.983,0.943,1.168,1.211,0.935,0.991,1.117,1.15,0.995,1.11,1.057,0.985,0.926,0.937,0.876,1.009,0.931,0.994 +NM_144654,0.696,1.373,0.924,0.793,0.812,1.358,1.029,0.859,0.928,0.927,1.118,0.846,0.643,0.642,0.812,1.102,0.833,1.061,0.845,1.103,0.661,0.65,1.759,0.808,0.722,0.622,0.943,0.793,0.626,1.273,0.751,2.51,4.168,1.384,0.757,1.496,1.101,0.8,1.179,1.229,0.741,1.025,0.792,1.603,0.738,1.196,0.987,0.702,1.031,0.729,1.176,1.199,0.796,2.704 +NM_144657,1.064,0.964,1.051,0.995,1.069,0.951,0.915,0.889,0.955,1.128,0.992,0.968,1.028,0.975,1.056,0.94,0.949,1.033,1.035,1.091,1.078,0.993,1.098,1.092,0.969,1.308,0.996,1.046,0.918,1.005,1.133,1.059,1.051,0.939,0.948,1.023,1.075,1.055,0.876,0.966,1.083,0.94,1.169,1.063,1.015,1.205,1.149,1.021,1.012,0.903,1.047,0.959,0.854,1.0 +NM_144658,0.824,1.286,1.071,0.776,0.796,0.97,0.866,0.835,0.953,0.88,0.788,0.892,0.779,0.79,0.926,0.791,0.963,0.941,0.868,0.82,0.847,0.83,0.947,0.942,1.026,0.821,1.392,0.964,0.632,1.336,0.836,1.943,2.433,1.358,0.72,0.784,1.024,0.948,1.172,1.298,0.873,1.128,0.842,1.373,0.876,0.948,1.285,0.847,0.888,0.901,1.002,1.048,1.19,1.457 +NM_144659,0.998,1.04,1.089,0.995,1.13,1.017,0.919,0.823,0.986,1.115,1.12,1.088,0.961,0.83,0.918,1.035,0.976,0.98,0.92,1.039,0.854,0.934,1.035,0.962,0.857,1.0,0.915,1.056,0.872,1.033,0.923,1.202,1.328,0.978,1.057,1.09,0.865,1.007,1.041,0.887,1.007,1.05,0.866,1.148,0.999,0.927,0.963,1.125,0.795,1.124,0.954,0.899,0.951,1.156 +NM_144660,1.165,0.837,1.046,0.987,0.916,0.957,0.909,0.99,1.046,1.019,1.027,0.984,1.049,0.846,0.911,1.051,0.937,0.968,1.109,1.186,0.963,1.152,0.93,0.999,0.975,0.953,0.935,1.052,1.063,1.019,1.112,0.915,1.088,1.105,0.899,0.955,1.084,1.008,0.929,0.948,1.052,1.081,1.481,1.054,1.043,0.937,0.91,1.006,0.907,1.013,1.047,0.961,1.05,0.976 +NM_144661,1.076,0.938,1.022,1.141,1.053,0.932,1.141,0.884,1.017,1.092,1.022,0.939,1.102,0.986,1.042,1.218,1.222,0.953,0.871,0.99,1.221,0.987,1.072,1.068,1.14,0.852,1.05,1.101,1.273,1.02,0.952,0.991,0.905,0.949,1.021,0.903,0.995,1.099,0.832,1.091,0.959,1.134,0.975,0.945,0.97,1.046,1.022,1.032,0.968,0.874,1.01,1.167,1.066,0.985 +NM_144662,1.098,0.9,0.896,0.872,0.987,1.047,0.984,0.905,0.963,0.886,1.07,0.914,0.954,0.94,0.94,0.948,0.921,0.911,0.855,1.039,1.106,1.03,1.109,0.966,0.909,1.054,0.938,1.135,1.16,0.998,0.929,0.968,0.91,1.018,0.881,1.026,1.002,0.857,1.028,1.028,1.031,1.161,0.985,1.009,1.029,1.088,1.02,0.939,0.968,0.956,1.052,1.054,1.054,0.976 +NM_144663,1.038,1.018,0.991,0.932,1.087,1.076,0.972,0.951,1.03,0.979,1.135,0.972,0.984,1.025,0.934,1.013,0.869,1.079,1.019,1.136,1.007,1.039,1.131,1.135,0.97,0.892,0.967,1.163,1.378,0.981,0.933,1.009,1.057,0.989,0.985,0.968,0.993,1.064,0.834,0.917,0.844,0.875,0.891,1.359,0.965,1.08,1.039,0.862,0.964,1.038,1.047,1.194,1.02,0.738 +NM_144664,0.904,1.096,0.994,0.877,0.954,1.185,0.952,1.158,0.716,1.008,1.31,0.888,1.083,0.999,0.853,1.075,0.882,1.003,0.91,1.016,0.983,1.135,0.805,1.046,1.032,0.983,1.06,1.121,1.341,1.026,0.852,0.984,1.261,0.763,1.251,0.985,0.997,1.008,0.859,1.052,0.92,1.045,1.155,1.032,1.093,1.02,1.131,1.086,0.889,1.12,0.886,1.225,1.253,0.861 +NM_144665,0.955,0.963,1.218,0.901,1.081,0.85,0.8,1.175,1.118,1.52,0.798,1.224,1.013,1.11,1.049,1.276,1.169,1.209,1.0,0.793,0.945,1.202,0.902,1.396,0.924,1.103,1.396,1.22,0.989,0.917,1.145,1.027,1.322,0.892,1.059,0.764,0.924,1.478,0.84,0.97,1.244,0.747,0.929,0.966,0.922,0.784,1.382,1.164,0.91,1.057,0.986,1.004,1.143,1.0 +NM_144666,0.988,1.035,1.004,0.894,0.986,0.926,0.936,0.94,0.975,1.039,1.089,1.074,0.971,0.905,0.882,0.939,1.095,1.017,0.914,0.927,0.999,1.077,1.079,0.945,0.987,1.012,1.038,0.899,0.907,1.0,1.044,1.078,1.151,0.902,0.985,1.072,1.077,0.964,0.948,1.061,0.904,0.967,0.941,0.999,0.948,1.197,1.013,0.997,1.076,1.009,1.051,1.067,1.092,0.848 +NM_144668,0.935,0.877,1.033,0.837,1.116,1.021,0.863,0.956,0.867,1.522,0.964,1.605,0.941,0.848,1.072,1.012,1.147,0.916,2.084,0.855,0.925,0.897,1.02,2.441,0.892,0.968,1.412,1.003,0.841,1.019,1.129,0.836,2.247,0.969,1.085,0.831,0.844,1.31,0.905,0.936,0.997,0.993,0.98,1.016,1.568,0.891,1.646,1.003,0.939,1.063,1.398,1.649,1.476,1.064 +NM_144669,0.988,1.006,0.956,1.26,1.365,0.925,0.835,0.967,0.922,0.957,0.922,1.12,0.92,1.111,0.961,0.807,0.998,1.026,1.105,0.94,0.857,0.875,0.988,1.102,0.889,1.032,1.413,1.048,1.026,0.956,1.019,1.079,1.066,0.965,1.056,1.02,0.972,0.973,1.446,2.915,1.074,1.054,1.14,1.021,1.243,0.94,1.071,0.918,1.047,1.046,0.858,1.525,1.066,1.177 +NM_144671,0.906,1.06,0.795,1.202,0.989,1.636,0.874,0.649,0.683,0.726,1.78,0.798,0.73,0.745,0.971,1.3,0.799,0.927,0.903,0.962,0.893,1.001,1.173,0.866,1.165,1.14,0.778,0.822,1.376,1.66,0.804,1.067,0.678,1.299,0.942,0.974,1.311,0.884,2.194,0.884,0.837,1.581,1.418,1.552,0.764,1.159,1.003,1.601,1.333,0.829,1.018,0.888,0.839,0.901 +NM_144672,0.85,0.956,0.79,0.964,0.993,0.988,1.325,1.288,1.083,1.079,0.846,1.005,1.084,1.088,0.735,0.988,1.169,1.258,1.008,1.176,1.125,1.027,1.007,0.947,1.095,0.998,0.886,0.799,0.919,1.2,1.218,1.002,0.986,0.954,1.048,1.11,1.054,0.987,0.871,0.929,0.803,1.092,1.153,1.211,1.058,1.108,1.005,1.053,0.922,0.882,0.847,0.894,1.085,0.934 +NM_144673,0.972,0.963,0.893,1.645,0.82,1.004,0.913,1.022,1.051,0.842,0.904,1.091,0.974,1.16,1.004,0.966,0.994,0.95,0.921,0.938,1.042,1.033,0.917,0.964,0.986,0.931,1.012,0.969,0.82,0.989,1.038,1.183,1.025,0.972,0.945,1.006,0.979,1.001,1.874,4.569,0.853,1.27,0.961,1.326,0.999,0.911,0.957,0.966,1.094,0.955,0.9,2.02,1.003,1.386 +NM_144674,0.871,1.249,0.905,1.078,0.979,1.356,1.001,0.931,0.95,0.975,1.345,0.973,0.944,0.87,0.99,1.192,0.836,1.167,1.066,1.031,1.081,1.004,0.881,0.948,1.013,1.091,0.828,1.056,1.064,1.94,0.972,0.819,0.809,1.437,0.903,0.816,1.209,0.83,0.959,0.903,0.738,1.111,1.176,0.875,0.976,1.146,0.938,0.833,1.016,0.85,1.056,1.026,1.016,0.839 +NM_144676,0.857,5.624,0.848,1.555,0.851,0.989,1.001,0.877,0.799,0.823,1.307,0.823,0.894,0.676,1.197,1.626,0.823,0.802,0.851,1.479,0.846,0.859,0.906,0.881,1.584,0.936,0.76,0.827,0.57,1.38,0.718,1.49,0.977,4.943,0.954,1.05,2.592,0.934,1.014,0.997,0.977,1.378,0.975,1.075,0.832,1.586,0.955,0.862,0.944,0.851,0.893,0.889,0.824,1.066 +NM_144677,1.011,0.909,0.981,1.256,1.039,1.136,1.051,1.156,1.096,0.908,0.951,0.99,0.96,1.283,0.954,0.933,1.034,1.021,0.948,0.976,1.094,0.994,1.126,0.973,0.97,0.912,0.973,0.983,1.168,0.874,0.988,0.931,1.114,0.913,1.109,1.017,0.955,1.082,0.873,0.902,0.987,0.981,0.992,0.945,1.051,0.86,0.924,1.153,1.119,1.031,1.051,1.048,0.981,0.98 +NM_144678,1.565,0.589,2.306,0.884,3.055,0.934,0.581,2.17,3.24,2.754,0.608,1.726,1.184,1.335,1.672,1.245,1.648,1.59,1.957,0.682,0.654,2.424,0.634,2.974,0.464,1.691,1.948,2.514,0.518,0.737,2.065,0.694,1.02,0.634,3.471,0.588,0.744,2.826,0.784,0.704,2.686,0.779,0.651,0.653,2.764,1.11,2.256,3.07,1.124,1.366,0.992,0.705,1.261,1.084 +NM_144679,0.689,1.113,0.973,0.716,0.843,1.082,0.73,0.702,0.883,1.015,0.993,0.823,0.633,0.821,0.746,0.99,0.889,0.958,0.867,1.195,0.752,0.766,1.256,0.825,0.874,1.008,1.203,0.717,0.701,1.543,0.791,1.851,0.909,1.255,0.466,1.35,0.95,0.817,1.695,1.115,0.824,1.145,0.921,1.595,0.769,1.061,0.845,0.829,1.021,0.763,1.046,0.794,0.844,1.607 +NM_144681,1.123,0.992,0.995,1.039,0.909,1.036,0.812,1.182,0.947,1.062,1.019,1.005,1.091,1.064,0.933,0.915,1.024,0.982,1.091,0.919,0.938,1.048,1.069,0.92,1.0,1.091,1.069,0.9,1.114,0.947,1.0,1.028,1.059,1.005,1.025,0.966,1.071,0.964,0.941,0.997,0.863,0.803,1.312,0.907,1.065,1.044,0.928,0.85,0.881,0.974,0.963,1.077,0.859,0.98 +NM_144685,0.949,1.036,1.091,0.786,0.897,1.169,1.092,0.981,1.053,0.994,0.969,1.074,1.037,0.932,0.898,0.962,0.944,0.933,1.024,0.897,1.038,0.977,1.017,1.089,0.89,0.922,0.908,0.924,1.18,0.925,0.86,1.052,1.062,0.894,1.067,1.077,0.973,1.067,1.033,0.988,0.88,1.051,1.005,0.936,0.969,1.088,0.966,1.012,0.967,0.997,1.183,0.801,0.939,1.164 +NM_144687,1.004,1.047,0.89,0.938,0.955,0.889,0.911,1.172,1.042,1.04,0.892,0.984,0.914,0.93,0.831,0.804,0.984,1.074,0.833,1.011,1.024,1.211,0.757,0.93,0.944,1.032,1.084,1.001,1.018,0.918,0.915,0.973,0.905,1.016,1.0,0.972,0.941,0.871,0.982,1.005,1.004,0.955,1.175,0.896,1.044,1.0,1.137,1.018,1.1,0.929,1.095,1.168,1.072,1.044 +NM_144688,1.161,0.945,1.165,0.976,0.987,1.053,1.234,1.15,0.987,1.083,0.953,1.052,1.086,0.962,1.081,0.983,1.096,1.059,0.953,0.936,0.973,1.078,0.94,0.942,1.014,1.124,1.147,0.97,0.87,0.942,1.094,1.066,0.93,0.939,1.171,0.986,1.026,1.222,1.087,1.25,1.14,0.963,0.976,1.043,1.076,0.939,1.066,1.006,0.89,1.026,0.941,0.941,0.962,1.079 +NM_144690,1.004,1.039,1.063,1.021,0.907,1.02,0.876,1.209,1.006,1.059,0.998,0.964,1.008,0.992,0.89,0.866,0.921,0.998,1.014,0.994,1.013,1.043,1.011,1.037,1.208,0.995,1.086,1.081,0.949,1.028,1.041,1.02,1.074,1.052,1.002,0.955,1.113,0.975,1.098,1.109,0.958,1.084,1.022,0.926,0.891,1.007,1.032,0.985,0.924,0.975,0.953,0.956,0.944,0.979 +NM_144693,0.825,1.106,1.213,0.871,0.823,1.154,0.602,0.72,1.175,0.814,0.831,1.04,0.878,0.938,0.934,1.347,1.046,0.849,1.141,1.107,0.861,1.001,0.964,1.093,0.775,0.936,1.235,0.869,0.62,1.149,0.935,1.401,1.229,1.258,0.605,0.997,1.055,1.078,1.007,1.206,0.931,0.927,0.753,1.162,0.982,0.978,0.83,0.855,0.919,0.855,1.03,0.843,0.986,0.77 +NM_144695,0.96,0.986,1.219,0.87,1.218,0.941,0.904,1.172,1.16,1.156,1.006,0.948,0.994,0.911,1.086,1.123,0.948,0.962,1.274,0.977,1.02,1.078,0.906,1.045,0.896,0.879,1.06,1.14,0.877,1.066,1.199,0.91,1.514,0.941,1.42,1.039,1.044,1.092,0.891,0.953,1.147,0.915,1.117,0.916,1.194,1.061,0.991,1.017,1.028,1.135,1.101,1.027,0.988,1.282 +NM_144696,0.965,1.053,1.038,0.953,0.912,1.052,0.883,1.036,0.892,1.003,1.007,1.025,1.003,1.211,0.814,1.013,1.032,0.942,0.929,0.89,1.05,0.941,1.029,1.014,1.014,1.151,0.866,1.009,1.676,1.027,0.975,1.032,0.91,0.893,1.028,0.925,1.109,0.993,1.181,1.027,0.975,0.95,0.789,1.06,1.151,0.98,0.968,1.122,0.939,1.044,1.007,1.043,0.976,0.825 +NM_144697,0.867,0.927,0.956,1.002,0.855,0.965,0.969,0.922,1.709,0.903,1.01,1.073,1.195,1.077,0.889,0.818,1.034,1.009,1.046,0.803,1.0,0.912,1.016,0.935,0.975,1.04,0.947,0.98,1.032,1.07,1.499,1.404,2.627,1.127,0.853,0.84,1.161,1.03,1.37,0.823,0.841,1.138,0.717,1.504,1.1,0.904,0.926,0.973,0.824,1.235,0.948,0.79,0.992,1.0 +NM_144698,1.696,0.866,1.21,0.853,1.352,0.825,0.809,1.219,1.782,1.485,0.814,1.277,1.021,1.129,1.057,1.064,1.085,1.166,1.086,0.782,1.031,1.466,0.762,1.357,0.907,1.778,1.463,1.51,0.609,0.97,1.532,1.318,0.929,1.001,0.875,0.843,0.804,1.627,0.967,0.932,1.53,1.108,0.687,0.843,1.192,0.842,1.135,1.283,0.774,0.999,0.964,0.944,1.062,0.928 +NM_144699,1.032,1.026,1.111,1.073,0.928,1.029,0.868,0.949,1.05,0.94,1.186,0.922,0.946,0.986,0.9,1.113,0.93,0.914,0.959,1.025,1.089,0.98,1.151,0.86,0.947,1.102,0.967,0.908,0.834,1.172,1.183,0.912,0.962,0.897,1.124,0.99,1.021,1.11,0.95,1.019,0.983,1.074,1.014,1.067,0.943,0.962,0.867,0.988,1.143,1.068,1.062,1.074,0.843,0.96 +NM_144702,0.982,0.994,0.955,1.026,0.886,1.048,1.277,0.699,1.024,1.042,0.903,1.008,0.955,1.063,0.872,1.022,1.033,1.145,0.952,0.985,1.129,1.016,1.124,0.952,0.993,0.898,0.905,0.838,1.287,1.099,1.111,0.994,1.052,1.064,1.023,1.1,1.061,1.023,0.944,1.08,0.964,0.888,1.037,1.063,0.942,0.904,0.971,1.037,1.018,0.984,1.001,0.957,0.924,1.24 +NM_144704,0.898,0.985,1.006,0.913,1.05,1.032,0.937,0.887,0.981,1.046,1.008,1.063,0.96,1.045,0.922,0.985,0.967,1.0,0.862,1.094,0.934,1.002,0.905,1.045,0.967,1.008,1.023,1.16,1.198,1.166,0.876,0.941,1.203,1.076,1.0,0.922,0.955,1.097,0.965,0.971,1.062,0.931,1.054,0.944,1.019,0.876,1.011,0.923,0.947,1.044,1.034,0.977,1.01,0.916 +NM_144705,0.917,1.066,1.156,0.982,0.924,1.055,1.151,0.99,0.898,1.008,0.981,0.986,0.85,0.857,0.988,0.974,1.015,1.029,1.21,1.123,1.032,1.052,1.068,0.98,0.826,1.029,1.074,0.999,0.967,1.069,1.102,0.965,0.957,1.161,0.881,1.034,1.034,1.065,1.185,1.114,1.076,1.049,0.97,0.968,1.079,0.961,1.068,1.17,1.007,0.923,0.997,1.086,1.05,0.984 +NM_144707,0.657,1.049,1.666,0.7,1.135,1.063,0.604,0.585,0.891,1.012,1.1,0.874,0.52,0.695,0.756,1.289,1.181,1.134,1.449,1.35,0.494,0.956,0.707,0.981,0.704,0.994,1.2,0.785,0.755,2.198,0.891,0.788,0.644,1.534,0.233,0.292,0.905,1.178,1.213,0.261,1.37,1.05,0.625,0.206,0.953,1.101,0.657,1.031,0.704,1.139,1.054,0.839,1.132,0.52 +NM_144709,0.957,1.131,1.086,0.874,0.941,0.989,1.159,0.962,1.0,0.844,0.972,0.954,0.984,1.051,1.03,1.199,1.093,0.995,1.17,1.0,1.038,1.056,0.966,1.027,0.921,0.963,1.238,0.99,0.98,0.899,0.984,0.908,0.945,0.936,1.045,1.008,1.107,0.937,0.893,1.097,0.85,1.015,0.866,0.914,0.943,0.934,1.118,0.933,0.974,0.892,1.039,0.856,0.991,1.083 +NM_144710,1.057,0.897,0.955,0.853,0.932,0.943,0.971,1.176,1.134,1.064,1.073,1.125,1.145,0.772,0.958,0.843,1.051,0.793,0.94,1.057,0.961,1.04,0.949,0.973,1.041,1.042,1.042,0.96,0.993,0.922,1.2,1.05,1.206,0.899,0.91,1.015,1.009,1.022,0.959,1.046,1.222,0.913,0.966,0.883,1.079,0.954,1.04,0.964,1.042,0.957,0.989,1.083,1.0,0.988 +NM_144711,0.901,0.985,1.003,0.861,0.846,1.115,0.755,0.723,0.913,0.826,1.397,0.845,0.934,1.002,1.185,1.779,0.901,0.978,0.971,1.237,0.941,0.865,1.282,0.908,0.872,0.72,1.101,0.759,0.787,1.003,0.867,1.132,1.429,1.315,0.682,0.956,1.204,0.902,0.947,0.998,0.884,1.374,1.333,0.948,0.893,1.147,0.945,0.712,1.315,0.942,1.076,0.735,0.78,1.93 +NM_144713,0.956,0.88,0.908,0.963,0.941,1.018,0.818,0.865,1.216,0.969,1.011,0.949,0.903,1.0,1.145,0.969,1.059,0.857,1.163,1.087,1.02,0.97,0.848,1.153,1.012,1.002,0.896,1.085,1.505,0.926,1.089,1.074,0.896,0.958,1.148,0.969,1.185,1.264,0.95,1.09,1.117,0.948,0.736,0.895,0.912,0.925,1.036,0.981,1.089,1.017,0.897,1.104,1.13,0.972 +NM_144715,0.971,0.996,1.0,1.037,0.928,1.089,0.954,1.004,0.992,1.089,1.117,0.959,0.961,1.06,1.24,0.974,0.908,1.105,0.959,1.199,1.104,1.031,1.095,1.08,1.006,0.95,0.963,1.128,1.065,0.97,1.166,0.94,0.889,0.98,0.942,1.035,0.933,1.074,0.836,0.944,0.887,0.984,1.323,1.054,1.105,1.065,0.876,0.951,1.14,1.207,0.902,1.07,1.123,1.031 +NM_144716,0.688,1.087,1.181,0.589,0.988,1.102,0.588,0.632,1.487,1.341,0.716,0.854,0.683,0.728,0.899,0.997,1.396,0.853,1.136,1.101,0.587,0.99,1.145,1.263,0.563,0.877,1.124,1.023,0.408,1.501,1.177,1.029,0.956,1.216,0.248,0.768,0.857,0.865,1.213,0.859,1.408,1.003,0.777,0.846,1.226,0.8,1.078,0.768,0.896,0.65,1.087,0.759,0.953,1.692 +NM_144717,4.499,0.311,2.979,1.086,4.039,0.263,0.293,1.579,5.52,3.505,0.265,3.406,2.218,3.618,2.687,1.144,3.714,2.131,4.64,0.368,2.636,3.804,0.305,4.937,0.287,5.036,4.46,3.768,0.227,0.281,4.784,0.383,1.747,0.3,2.582,0.296,0.3,3.604,0.32,0.322,5.508,0.253,0.251,0.455,3.017,0.283,2.624,4.547,0.282,2.771,0.729,0.939,3.014,0.736 +NM_144718,0.965,0.971,1.097,0.887,0.923,0.871,1.003,0.755,1.138,0.951,0.963,1.02,0.868,0.825,1.034,1.18,1.027,1.018,0.792,1.146,0.801,0.899,1.211,0.921,0.931,0.885,1.246,0.921,0.8,1.113,0.961,0.883,1.404,1.057,0.945,1.052,1.036,0.835,1.022,0.992,0.945,1.015,0.809,1.133,0.886,1.171,1.087,0.85,1.008,0.994,0.98,1.084,1.077,1.265 +NM_144719,0.987,1.068,0.914,1.108,1.127,1.025,1.232,1.066,0.948,0.961,0.966,1.16,1.074,0.885,0.921,1.083,0.964,0.822,0.901,1.296,0.935,0.989,0.983,1.018,1.071,1.029,1.081,1.089,0.8,0.947,0.922,1.036,1.049,0.846,0.959,1.05,0.965,1.087,0.997,1.035,0.991,1.056,1.103,1.075,0.963,0.947,1.03,1.023,0.934,0.977,0.934,0.94,1.083,1.082 +NM_144720,1.015,0.966,1.206,0.981,0.802,1.085,0.811,1.048,1.0,0.921,0.945,1.093,0.925,0.975,0.962,0.953,0.947,1.01,0.969,0.998,0.99,1.031,1.007,0.913,1.029,1.07,1.249,0.975,0.74,0.972,0.943,1.176,1.022,0.988,0.908,0.911,1.0,1.025,1.111,1.054,1.11,1.038,0.941,0.984,0.825,0.844,1.01,1.002,1.006,0.89,1.118,0.949,1.033,1.74 +NM_144721,0.913,1.229,1.138,0.787,0.939,1.423,0.964,0.842,1.09,0.955,1.162,1.235,1.028,0.799,0.704,1.059,1.065,1.153,0.828,1.544,0.7,1.201,1.051,1.211,0.941,0.684,1.068,1.111,0.742,1.311,0.887,1.091,1.17,1.022,0.612,0.79,0.986,1.314,1.377,0.812,0.961,1.488,0.741,1.137,0.738,1.268,1.184,0.809,1.134,0.813,1.016,0.995,0.688,1.233 +NM_144723,0.795,0.926,1.332,0.636,1.224,0.882,0.625,0.787,1.273,1.034,1.028,1.015,0.841,0.824,0.925,1.13,1.401,1.0,1.546,0.922,0.728,0.905,0.926,1.227,0.559,1.246,1.043,1.2,0.541,1.205,1.183,1.163,2.337,1.395,0.571,0.746,0.755,1.116,1.004,0.837,1.561,0.969,0.55,0.986,1.226,0.641,1.1,0.882,0.728,0.925,0.784,0.834,1.449,1.297 +NM_144724,0.721,1.197,1.051,0.601,0.941,1.584,1.053,0.644,0.945,0.965,0.974,0.799,0.763,0.672,1.084,1.57,1.05,1.133,0.914,1.939,0.64,0.979,1.704,0.971,0.877,0.645,1.017,0.885,0.809,1.251,1.131,0.858,1.19,1.471,0.665,0.752,1.357,0.911,1.641,0.741,0.989,1.269,1.122,0.885,1.061,1.105,1.033,0.646,1.519,0.833,1.197,0.889,0.757,1.011 +NM_144725,1.07,1.176,0.969,1.045,0.961,0.913,0.932,1.038,0.929,1.005,1.024,1.084,0.996,0.848,1.139,1.1,1.011,0.945,1.037,0.969,0.946,0.992,0.865,1.075,1.048,1.037,1.062,0.966,0.639,0.973,1.05,0.941,1.075,0.919,0.953,0.988,0.935,0.924,1.154,1.041,1.024,1.034,0.745,1.013,1.068,0.99,1.026,0.949,1.098,1.024,1.089,0.965,0.863,0.912 +NM_144726,1.074,0.706,1.791,0.768,1.284,0.496,0.546,0.446,0.945,0.83,1.093,0.528,0.847,0.766,0.888,1.16,0.943,1.342,1.255,0.732,0.68,0.56,1.405,0.902,0.527,1.049,1.233,1.247,0.368,0.884,1.146,1.067,0.923,0.774,1.135,0.687,0.863,0.999,1.847,0.88,1.182,1.093,1.204,0.79,1.171,1.159,1.186,1.143,1.043,1.431,0.954,1.157,1.061,1.001 +NM_144727,1.039,0.891,0.972,1.049,1.084,0.914,1.045,1.262,0.959,1.05,0.91,1.061,0.981,0.899,0.897,0.911,1.153,0.998,1.019,1.17,0.957,1.133,1.035,0.974,0.999,0.736,1.029,0.988,0.764,1.063,0.939,0.907,0.956,1.096,1.084,0.892,1.127,1.094,1.108,0.913,0.886,0.918,1.095,1.009,1.079,1.034,0.852,0.79,1.156,0.897,1.084,1.057,1.001,0.983 +NM_144728,0.947,1.072,1.041,1.181,0.944,1.205,0.97,0.939,1.09,1.0,0.928,1.024,1.005,0.888,0.858,0.908,0.957,0.965,1.028,1.113,1.098,1.0,0.992,1.044,1.06,0.984,1.154,1.008,0.932,0.845,1.036,1.077,0.909,0.92,0.976,0.905,1.061,0.995,0.817,0.884,0.988,0.937,0.902,1.039,0.948,0.964,0.839,1.048,0.917,0.974,1.054,1.047,0.87,1.036 +NM_144729,0.748,1.029,1.196,0.887,0.867,0.968,0.694,0.882,0.913,0.774,0.865,0.709,0.876,0.884,0.965,1.01,1.126,1.071,1.081,1.092,0.921,0.778,0.912,0.902,0.812,0.835,1.232,1.02,1.173,0.997,0.944,1.132,1.423,0.933,0.767,1.012,0.894,0.8,0.922,1.098,0.96,0.965,0.806,0.944,0.846,0.93,1.144,0.816,0.876,1.02,0.903,1.28,1.086,2.168 +NM_144734,0.662,0.995,1.228,0.736,0.743,1.18,0.515,0.409,1.005,0.932,1.003,0.902,0.587,0.656,0.81,1.249,0.809,0.822,1.306,0.645,0.675,0.69,1.662,1.037,0.647,0.946,1.234,0.707,0.422,1.344,0.667,1.119,2.022,1.427,0.276,1.038,1.002,0.707,1.54,1.119,1.069,1.313,0.617,1.643,0.918,0.971,1.075,0.875,1.097,0.832,0.992,0.864,0.998,0.977 +NM_144736,0.937,0.994,1.024,1.033,0.965,0.939,1.027,1.014,1.046,0.978,0.933,0.986,0.835,0.796,0.879,0.97,0.997,1.019,0.891,1.076,0.932,0.86,1.048,1.011,1.097,0.898,0.948,0.917,0.948,1.12,0.934,1.007,1.452,0.899,0.979,1.041,0.884,0.964,1.014,1.057,1.051,0.907,1.028,0.985,0.973,1.134,0.972,0.89,1.074,1.068,0.991,0.871,1.091,1.222 +NM_144765,2.694,1.803,6.513,1.9889999999999999,4.1690000000000005,1.274,1.046,2.1790000000000003,4.732,3.8200000000000003,1.454,3.5229999999999997,2.113,2.545,2.091,2.234,4.343999999999999,2.5060000000000002,5.494,1.845,2.363,2.762,1.4809999999999999,4.3740000000000006,1.065,2.3,4.937,3.5090000000000003,1.214,2.245,3.4699999999999998,1.6059999999999999,2.833,1.782,1.3039999999999998,1.185,1.388,3.9370000000000003,1.649,1.0750000000000002,5.077,1.3250000000000002,1.153,0.8260000000000001,4.423,1.5030000000000001,2.6719999999999997,2.713,1.439,4.0600000000000005,1.9529999999999998,1.845,5.061,1.843 +NM_144766,0.848,1.239,1.022,1.015,1.064,1.003,1.257,1.276,0.851,1.05,1.026,0.875,0.891,0.821,0.756,1.037,0.878,0.909,1.002,1.179,1.214,0.975,1.24,0.865,1.032,0.907,0.855,0.868,0.861,0.969,0.836,0.96,0.843,1.068,0.784,1.02,0.903,1.133,0.797,0.899,1.0,1.042,1.017,1.015,0.969,1.008,0.882,1.035,0.806,0.867,0.865,0.98,0.951,1.114 +NM_144767,0.644,1.295,1.37,0.672,0.935,1.187,1.028,0.395,0.898,0.773,0.996,0.581,0.379,0.584,0.81,0.836,0.713,1.188,0.773,1.456,0.554,0.81,1.774,0.616,0.778,0.696,0.98,0.871,0.847,2.189,0.764,1.836,0.716,1.766,0.654,1.369,0.914,1.029,2.233,1.12,0.978,1.683,1.067,0.675,0.676,1.321,0.95,0.789,0.869,0.716,1.241,0.917,0.679,0.98 +NM_144769,0.937,0.967,0.937,0.951,1.039,0.968,1.259,1.119,0.98,0.992,1.068,1.014,1.013,0.924,1.14,1.022,0.95,0.996,1.007,1.114,0.947,0.897,1.1,0.94,0.975,1.003,1.128,0.954,1.107,1.013,0.872,0.966,0.807,0.968,1.11,1.158,1.003,1.072,1.459,0.815,1.003,1.098,0.98,1.006,0.974,1.031,1.034,0.953,1.006,0.891,1.174,0.971,1.017,1.01 +NM_144770,1.085,0.987,1.254,1.001,0.961,0.932,0.91,0.999,1.362,0.994,0.962,1.04,0.965,0.892,0.879,0.915,1.046,0.986,0.985,0.89,1.028,0.925,0.99,0.996,1.046,0.958,1.239,1.109,0.73,1.151,1.199,1.001,0.929,1.015,1.066,1.036,0.956,1.098,0.859,0.968,1.028,1.019,0.849,0.931,0.998,1.017,0.926,0.973,0.988,0.979,0.95,1.054,0.988,0.897 +NM_144773,1.024,0.961,0.98,1.066,0.975,0.987,0.845,0.996,1.023,1.092,1.049,0.916,1.015,1.18,0.955,1.023,0.896,1.017,0.962,0.922,0.927,1.09,1.002,1.123,1.066,0.964,0.952,0.915,1.286,0.964,1.04,1.147,0.928,1.09,1.158,0.954,0.874,1.07,1.101,0.986,1.094,1.013,0.938,1.056,1.117,0.959,0.861,1.005,1.049,0.963,1.146,1.123,0.963,1.107 +NM_144775,1.279,1.056,1.026,0.998,0.936,1.036,0.934,1.056,0.984,1.102,0.956,1.147,0.864,0.957,0.892,0.958,1.148,0.987,0.991,0.981,1.05,1.059,1.12,1.154,0.948,0.89,0.751,1.138,1.079,1.042,1.046,1.058,1.128,1.196,0.988,0.997,0.996,0.872,1.068,0.994,0.939,0.936,1.191,1.04,1.02,1.055,0.981,1.06,0.953,0.987,0.977,0.982,0.927,1.061 +NM_144776,1.244,0.814,1.021,1.007,1.047,0.893,0.836,0.957,1.552,0.735,1.025,0.998,1.004,1.068,1.587,1.749,1.362,0.995,1.084,1.284,0.787,1.165,0.917,1.141,0.891,1.541,1.032,1.002,0.736,0.922,1.213,0.749,0.885,0.828,2.446,1.364,0.861,0.79,3.423,0.883,0.896,1.316,1.146,0.837,0.932,5.38,1.078,1.151,0.892,0.924,0.91,0.93,0.937,0.903 +NM_144778,0.514,1.547,1.831,0.716,0.839,2.425,1.252,0.672,0.846,0.512,1.149,0.915,0.888,0.503,0.928,2.604,0.833,1.225,0.659,1.847,0.307,0.821,1.324,0.826,0.934,0.382,1.681,0.784,0.893,2.17,0.819,1.386,1.329,1.679,0.298,0.408,1.566,1.114,1.823,0.873,0.902,1.703,0.58,0.625,0.773,1.256,1.117,0.694,1.064,0.859,1.441,0.741,0.528,1.498 +NM_144780,0.868,0.927,1.754,0.553,1.637,1.052,0.704,0.699,1.105,1.33,0.944,1.896,0.896,0.95,1.208,1.294,1.027,0.74,0.904,1.021,0.537,1.245,1.461,0.975,0.62,0.827,1.355,1.354,0.283,1.097,1.135,2.683,2.226,0.928,0.162,0.869,0.999,1.312,0.808,1.036,1.194,1.298,0.467,0.724,1.247,0.747,1.14,1.137,0.538,1.024,0.907,1.023,0.713,1.066 +NM_144781,0.816,1.06,1.066,0.893,0.899,0.944,0.738,0.714,1.08,0.828,1.422,0.934,0.935,0.87,0.983,1.327,0.904,0.855,1.033,0.748,0.861,0.9,1.133,1.069,0.9,0.907,1.391,0.899,0.622,1.352,0.898,1.167,1.521,1.458,0.496,1.058,0.933,1.012,1.401,1.309,0.983,0.956,0.713,1.265,0.864,1.007,1.263,0.937,1.055,0.857,0.993,0.965,0.973,1.341 +NM_144782,1.193,0.821,1.331,0.921,0.606,1.628,0.535,0.732,0.848,1.173,1.579,0.406,0.927,0.767,1.288,2.548,0.732,1.309,2.416,1.193,0.455,0.58,1.049,0.64,1.174,2.178,0.467,0.581,0.416,1.23,1.622,1.361,1.162,0.848,1.927,0.567,1.161,0.683,0.995,0.585,0.779,1.249,0.812,1.24,0.93,0.764,0.558,1.075,0.91,0.657,1.23,0.438,0.481,1.082 +NM_144947,1.853,0.815,1.36,1.154,1.714,0.812,0.825,0.946,1.656,1.429,0.852,0.96,1.034,1.117,1.236,0.851,1.542,1.321,1.894,0.711,1.294,0.875,0.796,1.201,1.019,2.15,1.406,1.47,0.878,0.898,1.358,1.02,0.943,0.974,1.73,1.168,0.786,1.514,0.941,0.722,2.105,1.018,0.789,0.969,1.168,0.729,1.246,1.181,0.931,1.566,0.86,1.0,1.548,0.877 +NM_144949,1.05,0.859,0.942,0.969,1.037,1.012,0.946,1.148,1.068,1.025,1.047,0.885,0.953,0.937,0.753,1.08,1.128,1.047,1.054,1.121,0.99,1.003,1.062,1.076,1.072,0.979,0.892,0.895,0.685,0.983,0.899,0.899,0.964,1.055,1.034,0.931,0.904,0.945,0.869,1.074,1.145,0.908,0.915,1.021,1.032,0.799,0.796,0.945,1.103,0.897,1.125,0.896,1.011,1.0 +NM_144957,0.988,1.104,0.95,0.995,0.954,0.965,0.94,0.89,1.062,0.963,0.985,0.986,0.999,0.992,1.464,0.949,0.997,0.872,0.791,0.885,0.944,1.012,0.954,0.963,0.979,1.117,1.141,0.88,1.031,0.914,0.924,1.408,1.001,1.074,0.974,1.293,1.041,1.152,3.398,0.806,0.848,1.044,1.561,1.907,1.04,0.952,1.289,0.9,1.311,1.022,1.285,1.449,1.055,0.916 +NM_144962,1.117,0.908,0.839,0.943,1.025,1.031,0.932,1.073,1.035,1.019,0.936,0.937,1.035,1.006,1.021,1.032,0.883,0.789,1.193,0.999,1.08,1.08,0.858,0.962,2.209,0.903,0.894,0.914,1.178,1.012,0.988,1.128,1.124,1.276,1.03,1.446,0.939,0.801,0.939,1.025,0.992,0.923,0.942,0.97,0.908,1.099,1.125,0.993,1.133,0.823,1.12,1.029,1.064,1.046 +NM_144963,0.812,0.833,0.929,0.837,1.038,1.09,0.842,1.28,1.127,0.915,1.043,1.011,0.848,1.107,1.084,1.087,0.998,0.914,1.037,0.847,0.774,0.998,0.896,1.163,0.765,0.952,1.056,0.969,0.759,1.005,1.131,0.792,2.407,0.996,1.134,1.227,1.047,0.972,1.29,1.218,1.018,0.886,0.89,1.049,0.949,1.334,1.213,1.036,1.124,1.025,1.031,0.902,0.953,1.169 +NM_144964,0.952,1.076,1.013,0.962,0.904,1.047,0.983,0.964,1.162,1.09,0.86,1.036,0.964,0.826,0.955,0.989,0.893,0.809,1.078,1.025,0.917,1.075,1.067,0.898,1.054,0.915,1.031,0.958,0.675,1.107,1.008,1.302,1.01,1.108,0.925,0.947,0.958,0.922,1.006,1.068,0.921,1.003,0.858,1.085,0.905,1.142,0.887,0.925,0.933,0.88,1.008,0.998,0.993,1.366 +NM_144965,1.13,1.081,0.99,0.904,1.06,1.009,1.225,0.953,0.908,0.815,1.088,1.137,0.886,0.901,1.074,0.792,1.033,1.075,0.897,1.086,1.005,1.022,0.98,0.998,0.939,0.971,1.09,0.992,0.923,1.116,1.019,0.923,0.844,0.926,0.965,1.003,1.002,0.943,0.967,1.024,0.92,0.815,1.276,1.03,0.993,1.007,1.001,0.891,0.972,1.056,1.037,1.084,1.093,0.883 +NM_144966,0.986,0.998,0.939,0.966,0.907,0.889,1.09,0.912,0.935,1.02,1.025,1.024,0.982,0.913,0.86,1.136,1.029,0.914,1.209,1.024,1.063,1.026,1.022,0.956,0.969,0.952,1.04,0.931,1.276,1.071,1.017,1.072,0.998,0.943,1.039,0.839,1.115,0.867,1.018,1.088,1.01,1.087,0.913,1.016,1.039,0.941,1.118,1.133,1.096,1.015,1.014,0.99,1.05,1.197 +NM_144967,0.944,0.977,0.964,1.049,1.022,0.877,1.007,0.989,1.054,0.969,0.91,0.934,1.072,1.209,0.931,0.909,0.86,0.968,1.139,0.95,0.975,0.931,1.139,1.103,1.111,0.959,0.981,1.04,1.123,0.981,0.984,0.921,1.042,1.059,1.01,1.118,0.944,1.021,1.019,1.0,0.924,0.904,0.896,1.013,1.037,0.977,1.084,0.993,1.089,1.012,1.078,0.984,1.107,0.964 +NM_144969,1.023,0.982,1.055,0.913,0.973,1.056,0.863,1.092,1.061,0.95,0.866,1.01,1.023,1.051,1.014,0.916,0.978,0.878,1.166,0.963,0.878,1.021,0.902,1.05,0.944,1.198,0.95,1.118,1.09,1.003,1.173,1.031,0.997,1.002,0.936,1.159,0.945,1.112,1.055,1.018,0.852,0.972,0.758,0.958,0.984,0.926,0.93,0.918,0.841,1.129,1.192,0.993,0.95,1.153 +NM_144970,0.766,0.93,1.103,1.025,0.824,1.244,1.037,0.742,1.04,0.871,1.054,0.89,0.739,0.753,1.076,1.096,0.881,0.759,0.946,1.103,0.862,0.789,0.931,1.002,0.879,0.788,0.997,0.854,0.811,1.095,0.711,1.44,2.127,0.996,0.941,1.365,1.03,0.792,1.568,1.063,0.895,0.784,1.256,0.934,0.972,1.294,1.263,0.734,1.481,0.825,0.927,0.985,1.138,1.825 +NM_144972,1.045,0.913,0.904,1.014,1.131,1.134,1.072,1.134,0.895,0.972,0.891,1.026,0.956,0.997,1.027,1.004,0.974,1.044,0.816,1.054,1.143,1.015,0.968,1.062,1.027,1.206,0.967,1.039,1.251,0.894,1.009,1.035,1.045,0.949,1.072,0.956,1.04,0.941,0.926,0.805,1.073,0.891,0.959,0.969,1.09,0.944,0.982,1.077,0.994,0.964,0.966,1.003,1.025,0.968 +NM_144977,0.967,0.954,0.98,1.048,0.998,1.022,0.934,1.109,0.814,0.901,0.965,1.02,1.131,1.005,1.412,1.102,1.072,1.032,0.958,1.061,1.109,0.851,0.839,1.065,0.977,1.037,1.132,1.094,0.883,1.036,0.995,0.967,0.952,0.897,0.924,1.004,0.922,1.003,0.978,0.915,0.951,1.17,1.147,0.944,1.05,1.03,0.962,1.053,0.876,1.018,1.056,1.081,1.06,0.974 +NM_144978,0.815,0.922,1.225,0.807,0.94,0.917,0.934,0.766,1.189,1.033,1.072,1.069,0.985,0.997,0.936,1.1,0.963,1.015,1.013,1.077,0.897,1.006,1.148,1.079,0.852,1.003,1.083,0.952,0.913,0.949,0.971,1.127,2.94,1.004,0.799,1.401,0.937,0.95,0.952,0.972,1.133,1.026,0.93,1.493,1.052,1.046,1.037,0.892,1.028,0.978,0.97,1.01,1.019,1.831 +NM_144979,1.066,1.0,0.989,0.903,0.922,0.976,0.991,1.035,1.077,0.937,1.113,1.141,0.946,0.884,0.844,1.111,0.963,1.221,0.907,0.982,1.06,1.071,0.973,0.942,1.163,1.131,0.818,0.959,1.013,1.115,0.924,0.916,0.783,0.984,0.995,1.008,0.981,1.072,0.958,0.931,0.932,1.119,1.199,1.145,0.902,1.074,0.938,1.012,0.989,0.997,0.985,1.004,1.085,1.124 +NM_144980,0.995,1.097,0.969,1.022,0.967,1.025,0.82,0.854,1.079,0.982,0.99,0.993,1.143,0.818,0.941,1.029,0.888,0.955,1.005,0.996,0.908,1.131,1.107,1.032,0.984,1.036,1.019,0.832,0.88,0.899,1.077,1.271,1.007,0.976,0.966,0.892,1.13,0.999,0.941,1.022,1.097,0.933,0.993,0.971,0.925,1.218,0.906,1.013,1.001,0.891,0.91,0.896,0.974,0.999 +NM_144981,0.78,0.925,1.003,0.84,1.01,1.127,0.856,0.831,1.108,0.911,1.422,0.875,0.909,0.91,1.012,1.694,0.941,0.983,1.083,1.066,0.728,0.822,1.24,1.008,0.857,0.855,1.011,0.897,0.808,1.252,1.007,0.92,1.531,1.182,0.72,1.409,1.057,0.861,1.463,0.83,1.164,0.983,0.873,1.353,0.909,1.237,1.051,0.881,1.021,0.793,1.094,0.915,0.874,1.719 +NM_144982,0.871,0.855,1.301,0.815,0.943,1.056,0.7,0.634,1.61,0.776,0.881,1.008,0.645,0.88,1.182,1.071,1.021,0.909,1.091,1.015,0.761,0.989,0.902,1.51,0.728,0.801,1.91,0.848,0.572,1.283,1.046,1.282,1.56,1.178,0.515,1.096,1.028,0.954,1.164,1.157,1.105,0.976,0.822,0.805,0.969,1.002,0.913,0.765,0.819,0.804,0.955,0.978,0.809,1.862 +NM_144984,0.94,1.144,0.997,1.015,1.068,0.955,0.945,0.978,0.918,0.957,0.919,0.98,1.099,1.185,0.888,0.982,1.09,1.04,1.025,1.028,0.928,1.028,0.857,0.97,1.03,0.99,1.003,1.194,0.806,0.932,1.095,1.058,1.293,1.006,1.077,1.078,0.816,0.959,1.041,0.953,1.12,0.886,0.962,1.071,0.87,0.902,1.09,1.169,0.935,1.252,0.919,0.869,0.872,1.033 +NM_144985,0.993,0.886,0.906,1.234,1.205,0.988,0.823,0.958,0.951,1.289,0.997,1.077,0.91,0.888,0.975,0.962,1.055,0.955,1.047,1.092,0.94,1.062,1.032,1.086,1.006,0.93,0.916,0.986,1.049,1.021,0.881,1.042,1.002,1.019,1.004,1.161,0.952,0.874,0.967,0.978,1.034,1.071,1.146,1.092,1.108,1.092,1.062,1.186,1.085,0.904,0.986,0.876,0.959,0.962 +NM_144987,1.069,1.04,0.992,0.975,0.816,1.039,0.945,0.888,0.866,0.965,0.903,1.116,0.943,1.151,1.018,1.015,1.231,0.976,0.874,1.093,1.02,0.919,1.052,0.969,0.947,0.894,1.07,1.009,1.131,0.901,0.996,1.195,1.445,1.157,0.934,1.153,0.955,1.161,1.164,0.985,0.988,0.964,0.984,1.034,0.986,0.999,0.995,0.956,1.018,0.965,0.925,0.917,1.035,1.301 +NM_144988,0.682,0.994,0.948,0.87,0.773,1.328,0.646,0.579,1.064,0.793,1.706,0.822,0.717,0.729,1.109,2.235,0.688,0.87,1.294,1.031,0.539,0.813,1.402,1.097,0.843,0.853,1.18,0.698,0.509,1.367,0.768,0.938,2.665,1.524,0.242,1.274,1.486,0.859,1.678,0.616,0.997,1.378,0.832,0.921,0.954,1.278,0.972,0.714,1.24,0.705,1.28,0.923,0.86,1.153 +NM_144990,0.911,1.015,0.962,0.969,0.962,1.032,0.69,1.102,0.954,0.925,1.06,1.047,0.896,0.852,0.859,1.087,0.917,1.075,0.887,0.977,1.105,1.015,0.963,1.065,1.032,1.178,1.047,1.017,1.105,0.98,0.993,0.932,0.946,0.916,1.001,0.926,0.992,1.015,0.984,0.956,1.007,0.961,0.985,0.876,1.021,0.996,1.052,0.991,0.987,1.01,1.054,0.958,0.967,0.857 +NM_144992,1.046,1.092,0.989,1.122,1.025,0.986,0.982,0.895,1.128,1.132,1.01,0.861,0.942,1.022,1.121,1.052,0.947,0.824,1.177,0.953,1.016,0.983,1.002,0.865,0.932,0.961,0.873,1.147,0.96,1.057,0.869,0.968,1.132,0.905,1.101,0.923,1.006,0.971,1.083,1.017,0.974,1.132,0.916,0.951,0.904,0.994,0.981,1.007,0.892,0.972,1.037,1.038,1.224,1.02 +NM_144994,1.037,1.044,0.925,1.026,0.941,1.181,0.989,0.992,1.078,0.954,1.124,0.957,0.929,1.085,0.999,0.85,1.17,0.933,0.951,1.196,1.205,0.988,1.042,1.022,0.991,1.056,1.101,1.129,0.912,1.056,0.922,1.067,1.004,1.088,1.028,0.997,1.074,1.018,0.966,1.135,1.005,1.072,0.855,0.985,1.01,0.948,1.076,1.174,1.163,0.973,1.04,0.912,0.88,0.92 +NM_144996,1.797,2.173,2.242,2.1149999999999998,2.1109999999999998,2.043,1.873,1.9669999999999999,1.9540000000000002,1.8689999999999998,1.875,2.056,1.991,1.907,1.789,2.026,2.0460000000000003,1.9779999999999998,1.758,2.069,1.879,1.8940000000000001,2.064,2.074,2.024,2.125,2.132,2.024,1.926,2.048,1.83,2.597,2.946,2.285,1.935,1.9020000000000001,1.73,2.1710000000000003,2.261,2.122,1.866,2.046,1.8319999999999999,2.149,2.019,1.9249999999999998,1.854,1.969,1.9249999999999998,2.03,1.972,1.923,2.066,2.1189999999999998 +NM_144998,0.526,0.995,1.046,0.964,0.726,1.541,0.75,0.41,0.856,1.025,0.798,1.274,0.807,0.39,0.696,1.748,0.681,1.299,1.129,1.429,0.305,0.715,1.289,0.959,0.67,0.69,1.212,0.769,0.432,1.134,0.713,1.093,1.077,1.479,0.149,1.2,1.16,0.735,1.912,0.494,0.937,0.921,0.797,1.826,0.864,1.219,1.087,0.718,1.66,0.801,1.168,0.616,0.843,1.479 +NM_145000,0.944,1.015,0.956,0.89,1.013,0.875,0.989,0.918,0.797,1.024,0.759,0.936,0.993,1.18,1.027,0.875,1.036,0.998,0.991,1.126,1.188,0.939,0.967,1.001,1.05,0.987,1.017,0.956,1.11,1.046,1.053,0.845,0.941,1.168,1.075,0.925,1.072,0.937,1.09,1.043,1.042,0.889,1.219,0.971,1.129,1.043,0.822,0.981,0.922,1.016,0.937,1.202,1.031,1.007 +NM_145001,0.99,1.074,0.974,0.958,0.974,1.01,0.933,0.913,0.972,1.079,1.009,1.22,1.003,0.971,0.977,1.144,1.016,1.01,1.105,1.09,1.151,0.92,0.777,0.981,0.898,1.032,1.102,0.917,0.856,1.033,0.86,1.166,1.006,0.982,1.047,1.167,1.119,0.915,1.094,1.082,0.954,1.097,1.105,1.072,1.019,0.942,0.951,0.887,0.943,0.984,1.027,0.908,1.049,1.025 +NM_145004,1.055,0.904,0.949,0.798,0.845,1.079,0.813,0.962,1.008,0.912,0.951,0.986,0.923,0.966,0.903,0.981,0.993,0.841,0.984,0.992,1.082,0.917,0.926,1.034,1.053,1.13,1.122,0.959,0.684,1.021,1.136,1.049,1.086,1.031,0.902,1.082,1.103,1.027,0.974,1.02,0.951,1.001,0.821,1.117,1.046,0.936,1.013,0.953,0.977,0.949,0.999,0.983,0.911,1.081 +NM_145005,0.974,1.119,0.914,1.033,1.084,1.079,0.847,1.073,0.97,0.953,0.976,1.055,0.957,1.134,0.979,0.979,0.974,1.029,1.229,0.89,1.049,0.991,0.857,0.913,0.991,0.906,1.012,0.954,0.742,1.019,1.062,1.031,0.959,0.974,1.123,0.955,1.058,1.064,0.943,1.0,0.887,0.83,0.8,0.965,1.079,1.04,1.015,0.995,1.082,0.912,1.06,1.045,1.008,1.087 +NM_145006,1.174,0.966,1.363,0.809,1.071,1.073,0.915,0.819,0.999,0.979,0.923,0.911,0.993,0.997,0.984,0.965,1.19,0.87,1.094,1.11,1.118,0.983,0.82,0.931,1.068,1.001,1.267,0.959,0.823,1.186,1.117,1.128,1.098,1.107,0.916,0.915,0.975,1.059,1.251,0.999,1.088,1.237,0.66,1.12,1.15,0.806,0.994,0.941,0.769,1.082,0.923,0.982,1.206,1.759 +NM_145007,0.798,0.964,1.024,0.989,0.97,1.143,1.007,1.072,1.069,0.999,0.953,0.943,1.03,1.059,1.0,0.898,1.015,1.079,1.08,0.9,0.926,0.95,1.049,0.997,1.097,0.979,1.116,1.032,1.15,0.979,1.006,0.943,1.098,1.005,1.039,1.065,1.036,1.006,1.06,0.932,1.158,0.874,0.887,0.882,0.923,1.124,0.985,0.921,0.846,1.087,0.938,1.244,0.981,1.059 +NM_145008,0.982,1.044,0.987,0.866,0.941,1.021,0.948,1.216,1.089,0.989,1.182,1.14,1.092,1.072,1.237,0.923,1.025,1.052,0.987,1.019,1.005,0.886,0.982,1.033,1.116,1.0,0.912,0.965,0.93,1.001,0.903,1.263,1.035,0.99,1.0,1.098,1.166,1.086,0.945,1.176,0.847,0.953,1.016,0.984,1.047,1.082,0.953,0.983,0.953,1.056,1.003,1.033,0.985,0.997 +NM_145012,0.609,1.427,1.091,0.506,0.7,1.481,0.939,0.604,0.927,0.704,1.515,0.764,0.649,0.489,0.892,1.868,0.649,1.14,0.924,1.395,0.562,0.682,1.709,0.876,0.762,0.495,1.046,0.755,0.8,1.255,0.753,1.839,0.955,1.768,0.376,0.698,1.201,0.679,1.263,1.437,0.825,1.861,0.835,1.361,1.001,1.185,1.078,0.484,1.035,0.571,1.388,1.037,0.868,0.851 +NM_145013,0.978,0.854,1.146,0.886,0.968,1.023,1.054,1.116,1.212,0.944,0.898,1.02,1.123,1.116,1.126,0.768,1.035,1.075,0.992,0.941,1.09,1.145,0.961,1.016,0.831,0.954,1.131,0.987,1.439,0.974,1.04,0.937,1.016,1.011,0.815,0.967,0.916,1.015,0.892,0.845,1.179,1.097,0.944,1.003,1.084,0.985,0.988,0.893,0.793,1.019,1.035,0.968,1.134,1.085 +NM_145014,0.781,1.318,0.937,0.973,0.932,1.424,0.908,0.891,1.006,0.834,1.144,0.985,0.875,0.783,0.907,1.319,0.798,0.995,0.954,0.995,0.8,0.721,1.134,1.088,0.83,0.794,1.478,0.82,0.717,1.593,0.907,1.399,2.278,1.51,0.579,1.718,1.176,0.905,1.35,0.84,0.996,0.975,0.857,0.835,0.828,0.999,0.905,0.841,0.827,0.854,1.129,0.92,0.868,1.587 +NM_145015,0.913,1.039,0.838,0.945,0.873,1.135,0.999,0.868,0.859,0.841,1.083,0.928,0.825,0.661,1.087,1.008,0.791,0.919,0.767,0.935,1.162,0.958,1.31,0.956,1.199,1.012,0.755,1.17,0.814,1.526,0.749,3.658,1.169,1.926,0.795,1.013,1.005,1.099,1.41,1.001,1.298,1.659,0.789,0.977,0.891,1.062,0.908,0.813,0.923,1.011,1.255,1.085,0.869,1.116 +NM_145017,1.011,1.007,1.0,0.899,1.053,1.071,0.994,0.982,0.929,1.022,0.872,0.98,1.008,1.132,0.924,0.886,0.974,1.129,1.055,1.006,1.181,0.896,0.88,1.027,0.996,1.0,1.022,0.828,1.257,1.024,1.048,0.893,1.213,0.884,1.094,0.965,0.835,0.995,1.051,0.915,0.956,0.928,1.017,1.079,0.904,1.159,0.984,1.022,0.954,0.938,0.911,0.942,0.996,1.016 +NM_145018,1.078,0.985,1.133,1.019,0.913,0.783,1.363,0.918,1.067,1.089,0.853,1.038,1.009,0.944,1.098,0.915,1.014,0.811,1.13,0.786,0.821,0.832,1.054,1.278,0.791,0.992,1.48,1.012,0.788,0.846,1.01,1.052,3.385,0.73,0.659,1.724,0.86,0.937,1.549,0.995,1.103,0.804,0.723,1.151,1.236,0.723,1.04,0.844,0.919,1.087,1.005,1.198,1.081,1.902 +NM_145019,1.0,1.09,0.881,1.224,1.038,0.984,0.994,1.113,1.037,1.112,0.779,0.947,1.018,0.875,1.056,0.847,0.987,1.023,1.078,0.903,0.9,1.097,0.889,1.166,0.976,1.112,0.949,1.015,1.163,0.869,1.074,1.12,1.148,0.903,1.307,1.001,0.988,0.89,1.207,0.972,1.083,1.038,0.912,0.816,0.849,1.077,1.059,1.087,0.947,0.889,1.086,0.916,1.143,0.994 +NM_145020,1.018,1.061,1.139,0.999,0.913,0.948,1.2,0.959,0.898,0.894,0.966,1.051,1.038,1.075,0.926,1.068,1.115,1.2,0.946,0.982,0.995,0.89,0.91,1.097,1.045,1.039,0.772,0.931,1.012,0.941,0.975,0.969,1.16,1.076,0.92,0.986,1.084,0.929,0.936,1.051,1.044,0.97,0.897,1.052,1.039,1.135,1.005,1.029,0.984,1.065,1.057,0.997,0.956,0.958 +NM_145023,1.082,0.966,0.983,0.934,0.989,1.034,0.826,1.088,0.986,0.923,0.903,1.133,0.991,1.268,1.03,1.061,0.909,0.919,0.936,0.919,0.936,0.933,0.943,0.994,1.089,1.095,0.966,1.054,0.999,1.061,0.887,0.903,0.837,1.076,1.086,1.103,0.969,0.861,1.063,0.985,1.004,0.957,0.923,1.074,0.877,0.857,1.04,1.008,1.024,1.004,1.001,0.854,0.882,1.081 +NM_145024,1.325,1.075,0.87,1.0,0.99,0.909,0.949,0.835,1.146,1.054,0.984,0.962,1.036,1.356,1.031,1.035,1.005,0.996,1.108,0.915,0.968,1.0,1.028,0.921,1.132,0.909,1.063,1.102,1.397,1.032,0.904,0.825,1.125,0.958,0.955,0.905,1.056,1.087,0.946,0.919,0.925,1.003,1.056,0.932,0.999,1.028,0.897,0.953,1.014,0.912,0.922,1.175,1.031,0.946 +NM_145026,1.066,1.088,0.977,1.006,1.043,1.081,1.022,0.877,0.998,1.081,1.059,0.91,0.889,0.926,0.956,1.251,0.982,1.119,1.023,0.911,1.014,0.876,1.009,1.064,1.042,1.001,0.873,0.979,0.932,1.123,1.048,0.987,0.975,1.019,0.899,1.129,1.038,0.98,0.998,1.176,0.966,0.987,1.005,1.005,0.907,1.097,0.993,1.281,0.949,0.983,0.957,1.084,1.03,0.999 +NM_145027,0.944,1.062,1.024,1.078,0.861,1.059,0.866,0.768,0.931,0.902,1.018,1.076,1.022,0.952,1.156,0.953,1.012,1.056,1.166,0.983,1.023,1.097,1.004,0.954,1.049,0.944,1.169,1.187,1.156,1.023,0.939,0.973,0.923,1.012,1.003,1.005,1.0,1.046,0.994,0.942,1.036,0.994,0.982,1.004,0.865,0.993,0.82,1.047,0.927,0.759,1.035,0.995,0.912,0.976 +NM_145028,1.074,0.938,1.185,0.83,1.03,1.118,1.131,0.966,0.937,0.893,0.971,0.932,0.924,1.078,0.821,0.91,0.905,0.948,0.913,0.964,0.989,1.126,0.976,0.971,1.052,1.014,0.992,1.139,1.176,0.909,0.98,1.01,0.878,0.895,1.079,1.236,0.944,1.051,1.086,1.022,0.866,0.874,1.165,0.979,1.001,1.095,1.089,1.006,1.35,0.935,1.059,1.142,0.959,1.273 +NM_145029,0.559,0.991,0.955,0.767,0.822,1.275,0.742,0.511,1.024,0.74,1.099,0.711,0.532,0.572,1.318,1.759,0.803,0.778,0.847,1.405,0.566,0.692,1.592,0.81,0.651,0.6,1.082,0.839,0.579,1.039,0.842,1.385,1.592,1.328,0.548,1.227,1.328,0.688,1.673,1.062,0.878,1.153,0.973,1.246,0.85,1.46,0.888,0.713,1.731,0.678,1.197,0.714,0.728,2.437 +NM_145030,0.651,1.147,1.025,0.753,0.808,1.097,0.813,0.552,0.999,0.754,1.136,0.96,0.707,0.559,0.956,1.363,0.874,0.957,0.977,1.272,0.52,0.769,1.844,1.033,0.578,0.827,0.986,1.001,0.557,1.479,0.769,1.91,1.069,1.224,0.26,1.399,0.908,0.948,1.436,1.665,1.088,0.985,0.758,2.077,1.032,0.976,1.484,0.726,0.995,0.715,0.989,2.045,0.763,1.775 +NM_145032,0.945,1.804,0.943,0.987,1.077,1.133,0.98,0.95,0.947,1.011,0.945,0.955,0.913,0.908,1.315,0.958,0.983,1.173,0.918,1.124,0.964,0.93,1.058,0.93,1.22,1.048,1.007,1.081,1.572,1.252,1.016,1.036,0.925,1.381,0.902,1.054,1.108,0.93,1.038,0.948,0.77,0.991,1.345,0.882,0.97,0.999,0.865,1.008,1.061,1.092,0.883,0.932,0.909,0.971 +NM_145034,1.007,0.948,0.907,1.023,1.258,0.945,0.762,1.248,1.35,1.001,0.973,0.886,0.928,1.11,0.983,1.208,0.929,1.11,1.203,0.791,0.929,1.031,0.834,1.139,0.864,1.116,1.059,1.504,0.897,0.942,1.328,0.953,1.116,0.97,1.986,1.005,0.987,0.951,0.942,1.019,1.142,0.858,1.12,0.983,1.122,0.892,1.224,1.125,0.923,0.976,0.967,0.925,1.036,0.843 +NM_145035,1.062,2.435,1.154,1.52,1.262,5.08,4.758,1.146,1.375,0.967,1.365,1.166,1.217,0.841,1.0,0.978,0.895,2.849,0.777,1.62,0.677,1.369,0.964,1.755,1.623,0.626,0.99,1.245,2.436,6.924,1.394,0.996,0.716,6.723,0.764,0.602,2.962,1.701,3.342,0.619,0.931,1.399,0.709,0.789,0.878,0.95,0.869,1.198,0.671,0.841,1.173,0.786,0.6,0.758 +NM_145036,0.873,1.05,0.988,1.068,0.956,0.929,0.951,0.97,1.137,0.987,1.136,1.094,1.084,1.005,0.802,1.024,0.995,0.956,1.107,1.027,1.145,0.93,0.947,1.029,1.101,0.879,0.989,1.017,0.701,0.999,0.962,1.162,4.256,1.113,1.178,1.137,1.028,1.001,0.967,1.048,0.948,0.889,1.211,1.159,1.144,1.04,1.064,1.053,1.033,0.996,0.966,1.164,0.885,0.983 +NM_145037,1.048,0.985,0.909,0.975,0.986,0.962,0.951,0.964,1.089,0.876,0.866,1.077,0.994,1.105,0.993,0.867,0.993,0.927,0.842,1.09,1.089,1.013,1.061,0.905,1.123,1.017,1.15,1.018,0.927,0.981,1.065,1.16,0.976,0.895,1.174,1.114,1.167,0.875,1.121,1.03,1.001,1.071,0.923,0.865,0.918,1.091,1.003,0.975,0.921,0.988,1.036,1.0,1.095,1.146 +NM_145038,0.997,0.9,0.939,0.934,1.063,1.027,0.931,1.41,1.028,1.053,1.196,0.989,1.01,0.984,0.79,0.976,0.934,1.003,1.044,1.115,1.059,0.965,0.927,1.145,1.032,1.148,1.246,0.927,0.943,0.987,0.887,0.977,1.105,0.935,0.93,1.003,0.946,0.97,0.989,1.177,0.993,0.828,0.937,1.005,1.047,1.091,1.039,0.976,0.966,0.825,1.152,0.981,0.912,1.179 +NM_145040,0.377,1.182,0.457,0.881,0.513,1.062,0.917,0.409,0.408,0.55,1.143,0.511,0.399,0.465,0.705,0.919,0.392,0.747,0.535,1.228,0.614,0.442,2.757,0.439,1.067,0.461,0.578,0.647,0.483,2.808,0.439,5.886,0.961,2.447,0.492,10.61,0.672,0.594,1.713,2.083,0.833,1.708,0.572,1.831,0.617,1.152,0.9,0.461,0.515,0.492,1.825,2.128,0.615,2.98 +NM_145041,0.884,1.05,0.795,1.084,0.966,0.919,1.04,0.794,0.912,0.973,0.861,1.007,1.0,0.775,0.903,0.925,0.952,1.06,0.802,1.001,0.722,0.775,1.032,0.887,1.085,0.953,0.833,0.797,0.905,1.145,0.888,1.286,0.898,1.142,0.937,0.799,1.16,0.874,1.325,1.16,0.848,1.159,0.799,1.221,0.952,1.045,1.063,0.913,1.04,0.923,1.098,1.218,0.903,1.084 +NM_145043,0.851,1.061,1.022,0.889,0.844,0.908,0.839,0.845,0.974,0.986,0.972,1.01,0.872,0.854,1.025,0.867,1.061,0.814,0.933,0.924,0.933,0.911,1.32,1.008,0.91,0.973,0.914,1.0,0.608,1.05,0.945,1.655,2.102,1.117,0.751,0.927,0.878,0.878,1.377,1.011,1.013,1.33,0.673,1.0,1.103,0.992,0.842,0.896,1.447,1.002,0.968,1.574,1.151,1.625 +NM_145045,1.016,1.271,1.04,0.984,0.766,0.928,0.972,0.896,0.882,0.963,0.993,0.887,0.924,0.891,1.133,1.056,0.933,1.131,0.906,0.986,1.086,0.961,1.007,0.952,1.038,0.907,0.991,0.945,0.909,1.188,1.07,1.075,1.045,1.341,0.92,1.044,1.029,0.992,1.035,1.737,0.844,1.192,0.86,0.882,0.876,1.001,0.871,0.981,0.86,0.91,1.0,1.009,0.879,0.939 +NM_145046,1.002,0.952,0.822,0.875,1.106,0.952,0.81,0.892,0.97,0.886,1.077,0.973,1.012,1.208,0.842,1.059,1.04,0.818,1.11,1.008,0.911,0.94,0.971,0.919,0.958,1.007,1.149,1.09,0.916,0.933,0.974,1.034,0.956,0.808,0.947,0.987,0.968,0.856,1.05,1.075,1.01,1.025,0.919,1.047,1.161,0.919,1.009,1.11,0.952,0.959,0.986,1.063,0.99,0.918 +NM_145049,0.958,0.848,1.736,0.8,1.282,1.139,0.682,0.6,1.638,1.359,1.009,0.956,0.869,0.828,0.959,1.255,1.206,0.957,1.524,0.962,0.645,1.395,1.182,1.426,0.561,1.018,1.736,1.166,0.463,1.12,1.23,0.997,1.569,0.933,0.431,0.586,1.017,1.188,1.173,0.682,1.454,1.015,0.645,0.794,1.344,0.886,0.88,1.206,0.718,1.111,1.003,0.932,1.031,2.052 +NM_145051,0.728,1.079,2.118,1.288,0.658,1.172,0.989,0.652,0.712,0.553,1.187,0.738,0.797,0.559,0.907,0.707,1.552,1.313,1.412,1.35,0.666,0.597,1.046,0.82,0.965,0.677,1.545,0.681,0.826,1.524,0.627,0.994,0.669,1.585,0.583,0.817,1.07,0.656,1.499,1.545,1.009,1.125,0.806,1.279,0.801,0.862,0.822,0.57,0.775,1.895,1.207,0.743,0.997,0.628 +NM_145052,0.865,1.138,1.102,0.753,1.014,0.8,0.767,0.813,1.186,0.773,1.105,0.73,0.848,1.152,1.212,1.335,1.063,0.896,0.962,0.928,0.561,0.708,1.01,1.002,0.892,1.209,0.957,1.253,0.411,1.211,1.35,1.105,1.234,1.659,1.285,0.687,1.017,0.897,0.833,0.682,1.118,1.198,0.613,0.865,0.975,0.953,0.807,0.839,0.761,0.836,0.873,0.772,0.953,1.157 +NM_145053,0.973,1.053,0.905,1.07,0.941,0.855,1.008,0.88,1.015,0.92,0.919,0.979,0.973,1.212,1.09,0.981,0.98,0.995,0.938,1.075,1.057,1.109,1.061,0.927,0.904,1.043,0.914,1.038,0.982,1.097,0.964,1.01,0.936,1.03,1.083,0.982,1.027,1.009,1.079,0.901,1.01,0.967,1.104,0.955,0.859,0.915,1.012,0.943,0.939,0.985,0.986,0.97,1.098,1.187 +NM_145054,1.029,1.005,1.027,0.995,1.126,1.015,0.879,0.848,1.026,1.14,1.055,1.054,1.048,0.966,1.011,0.908,0.957,0.918,0.999,0.981,0.888,0.918,1.06,1.069,0.978,0.981,0.988,0.955,1.197,0.969,0.79,0.996,0.95,1.043,0.892,1.007,0.92,1.105,0.962,1.033,1.006,1.004,0.867,1.158,1.058,1.034,1.001,0.976,0.997,1.054,1.008,0.963,1.018,1.564 +NM_145055,3.256,0.674,1.67,1.176,4.053,0.793,0.879,3.286,5.271,1.281,0.715,1.826,2.055,1.785,2.93,1.401,1.725,1.541,2.828,0.776,1.632,2.841,0.771,2.174,0.621,2.702,1.456,5.175,1.119,0.848,4.161,0.71,1.889,1.005,11.95,0.713,0.827,4.262,0.713,0.673,3.229,0.726,0.799,0.935,2.036,0.771,1.482,3.367,0.831,1.132,1.04,0.874,1.917,0.977 +NM_145056,0.844,0.948,0.899,1.107,0.858,1.084,0.984,0.869,1.059,0.894,0.997,0.96,1.005,1.057,1.399,1.197,1.034,1.037,0.905,0.96,1.042,0.993,1.05,1.057,1.003,0.889,0.943,0.753,1.026,0.982,0.964,1.359,1.021,1.013,1.038,1.021,1.054,0.949,1.105,0.968,1.1,1.044,1.186,1.035,1.131,1.16,0.926,0.959,0.961,0.924,1.039,0.989,1.071,0.985 +NM_145057,0.2,1.788,0.424,1.22,0.227,2.753,1.288,0.194,0.422,0.188,2.242,0.208,0.688,0.254,1.264,4.014,0.816,1.513,0.702,2.765,0.206,0.187,2.701,0.253,0.588,0.218,0.652,0.3,0.947,1.558,0.464,0.819,0.826,2.459,0.785,1.616,1.878,0.161,3.211,0.672,0.545,2.098,1.668,1.964,0.408,1.764,0.755,0.395,1.639,0.368,1.707,0.504,0.351,1.241 +NM_145058,0.751,1.226,0.973,1.024,0.849,1.125,0.816,0.811,0.782,0.833,1.093,0.804,0.838,0.749,0.988,1.059,0.82,0.905,0.938,0.973,0.841,0.859,0.981,0.836,0.842,0.835,1.231,0.754,0.658,1.087,0.788,1.725,1.284,1.42,0.714,0.996,0.925,0.832,1.282,1.767,0.869,1.5,0.868,1.172,0.882,0.844,0.911,0.797,0.813,0.758,0.844,1.138,1.128,1.575 +NM_145059,0.875,0.955,1.0,0.917,0.921,1.174,0.763,0.787,1.095,0.906,1.175,0.818,0.91,0.876,1.277,1.461,0.992,0.991,1.051,0.963,0.83,1.126,1.245,0.859,0.901,1.015,0.935,0.83,0.836,0.933,1.057,0.97,1.843,1.202,0.746,0.977,1.317,0.944,1.462,0.903,0.919,1.242,0.801,1.432,1.039,0.891,1.052,1.043,1.008,0.938,0.941,0.746,0.861,0.932 +NM_145062,0.71,0.999,0.875,0.696,0.863,1.406,0.903,0.762,1.134,1.02,0.915,1.017,0.778,0.842,1.232,1.814,0.926,0.813,0.956,1.218,0.712,0.885,1.214,1.206,0.714,0.86,1.221,0.885,0.647,0.916,1.02,1.104,1.309,1.319,0.632,0.821,1.247,1.008,1.026,1.174,0.956,1.27,0.952,0.937,0.772,1.193,0.976,0.746,1.233,0.679,0.905,0.805,0.981,2.15 +NM_145063,0.81,1.111,1.155,0.76,0.658,1.304,0.661,0.662,1.116,0.842,1.014,0.812,0.752,0.732,1.119,1.606,0.708,0.791,1.001,1.343,0.452,0.753,1.025,0.841,0.854,0.777,0.947,0.892,0.539,1.248,0.95,1.036,1.574,1.557,0.337,0.795,1.071,0.86,1.523,0.757,0.971,0.968,0.741,1.115,0.856,1.096,0.732,0.789,1.04,0.724,1.26,0.64,0.595,1.878 +NM_145064,0.864,1.004,0.943,0.961,0.98,1.082,1.057,0.991,0.875,1.035,0.887,1.094,1.04,1.102,1.114,0.987,0.923,1.023,0.964,0.988,0.934,0.956,1.06,1.133,0.96,1.09,1.051,1.037,1.277,1.0,1.027,1.03,0.884,0.986,1.009,1.0,0.858,0.944,1.188,1.017,1.033,1.06,1.019,1.011,0.956,1.034,1.06,1.09,1.097,0.911,1.0,1.02,0.919,1.19 +NM_145068,0.97,0.976,1.272,1.079,1.001,0.984,1.13,0.936,1.006,1.108,1.111,0.915,0.863,0.898,0.993,1.013,1.126,1.053,0.959,1.011,1.064,0.988,0.871,0.806,1.118,1.019,0.922,0.893,0.814,1.119,0.963,0.849,1.027,0.999,0.991,1.13,0.923,1.004,1.075,1.137,0.861,0.961,0.897,0.84,1.056,1.116,0.906,1.003,0.976,0.836,0.931,1.08,0.929,1.026 +NM_145071,1.017,0.949,0.964,0.931,0.942,1.223,0.832,1.137,1.09,0.897,1.031,0.913,1.096,0.906,0.904,1.066,1.025,0.914,1.027,0.95,1.046,1.132,1.01,0.898,0.956,1.07,1.287,0.916,1.131,1.235,0.946,0.955,0.988,1.054,1.163,0.779,1.141,1.208,1.096,1.0,1.012,1.014,0.897,0.898,1.059,0.991,0.897,1.069,0.906,0.902,0.912,0.891,0.978,1.028 +NM_145074,0.898,0.905,0.997,1.0,0.824,1.06,0.801,0.611,0.842,0.977,0.964,0.831,0.851,0.96,1.0,1.254,0.975,1.009,1.369,0.856,0.853,0.831,1.138,0.999,0.95,0.921,0.908,0.767,0.601,1.171,0.798,1.728,1.68,1.244,0.619,0.862,1.077,0.857,1.305,1.174,1.039,1.153,0.743,1.273,0.937,0.878,1.01,0.883,0.854,0.946,0.967,0.931,1.039,1.114 +NM_145102,0.899,0.846,1.015,1.039,1.121,1.018,0.919,0.884,1.005,1.001,1.069,0.856,0.907,0.848,0.888,1.045,1.001,1.105,1.231,0.855,1.083,1.08,1.162,0.943,0.835,1.079,1.012,0.984,0.985,1.019,0.962,1.038,1.049,0.908,0.94,0.963,1.04,1.056,0.976,1.068,1.029,0.841,0.929,1.043,1.061,1.106,0.842,0.961,0.802,0.891,0.876,1.089,1.146,1.205 +NM_145109,2.127,1.814,2.01,2.1710000000000003,1.88,1.992,1.616,1.888,2.177,2.106,1.992,1.821,1.9809999999999999,1.8090000000000002,2.2030000000000003,2.589,2.294,1.917,2.224,1.74,1.829,1.63,2.2350000000000003,1.8330000000000002,1.9849999999999999,2.028,2.197,1.7930000000000001,1.416,1.911,1.95,1.8639999999999999,2.401,2.0069999999999997,2.299,1.827,1.8739999999999999,2.189,2.52,1.9460000000000002,2.167,2.028,1.944,2.245,2.078,2.15,1.944,2.022,2.146,2.463,1.982,1.807,2.263,1.991 +NM_145114,1.213,0.88,0.916,0.959,1.365,0.991,0.879,1.152,1.53,1.091,1.081,1.188,1.162,1.367,1.038,1.055,1.013,1.001,1.022,0.964,0.888,1.197,1.03,1.028,0.797,1.103,1.083,1.803,0.786,0.911,1.662,0.882,0.887,0.881,2.253,0.981,1.224,1.286,0.973,0.814,0.993,1.131,0.788,0.901,1.108,1.001,1.232,1.266,1.076,1.182,0.952,0.865,1.018,1.187 +NM_145115,1.173,0.996,0.958,1.176,0.899,0.948,0.923,0.929,0.934,0.964,0.944,1.01,1.033,0.975,0.906,1.005,0.967,1.153,1.001,0.983,0.842,1.034,1.142,1.05,1.177,0.918,0.879,1.14,0.938,1.07,1.011,0.868,0.853,0.918,0.766,1.082,0.964,1.076,1.02,1.006,0.999,0.985,0.875,1.133,0.979,1.118,0.931,1.064,0.995,0.991,1.037,1.1,1.031,1.187 +NM_145116,1.004,0.954,0.936,0.915,1.078,0.872,0.886,1.055,1.048,1.014,1.008,1.013,0.969,0.983,1.227,0.952,0.987,1.111,0.991,1.017,1.003,0.977,1.043,1.088,1.045,0.957,0.92,1.084,0.676,1.01,0.983,1.009,1.106,1.202,0.998,1.213,0.968,0.929,0.836,1.077,0.803,0.96,0.949,1.027,1.082,1.03,1.022,0.845,0.907,0.851,1.077,1.045,1.018,0.853 +NM_145117,0.961,1.197,2.352,0.666,1.227,0.798,0.824,0.736,1.461,1.22,0.697,1.678,0.819,0.872,1.241,1.008,0.965,1.178,1.381,0.682,0.983,1.741,0.954,1.301,0.644,1.162,2.043,1.363,0.635,1.296,1.34,1.459,2.763,0.87,0.499,1.137,0.909,1.369,1.279,1.215,1.606,0.929,0.623,0.603,1.186,0.698,0.831,1.311,0.826,1.15,1.026,0.835,1.751,0.886 +NM_145119,0.843,0.97,1.127,1.105,1.038,0.898,0.853,1.036,1.109,1.073,1.139,1.164,1.034,0.782,0.909,1.014,0.862,0.985,1.016,0.811,0.89,0.985,0.894,1.138,1.069,0.912,1.175,0.957,1.269,1.179,0.878,0.855,1.08,1.017,1.208,1.127,0.905,0.974,1.096,1.093,0.901,0.908,0.814,1.01,0.851,1.092,1.1,0.884,0.841,0.922,0.924,1.097,0.947,1.181 +NM_145159,1.196,0.843,1.617,0.912,0.965,0.612,0.65,0.907,1.511,1.931,0.711,1.001,0.873,1.101,0.945,0.792,1.362,1.072,1.301,0.923,1.111,1.047,0.804,1.753,0.734,1.497,1.522,0.961,0.608,0.83,1.261,2.092,1.797,0.823,0.668,0.939,0.625,1.221,1.079,1.847,1.334,0.972,0.603,1.021,1.804,0.711,1.133,1.268,0.587,1.319,0.915,1.239,1.928,1.886 +NM_145162,0.779,1.228,1.167,0.858,0.956,1.038,0.583,0.709,0.932,0.905,1.075,0.826,0.81,0.753,1.004,1.442,0.908,0.824,1.107,1.093,0.747,0.83,1.449,0.847,0.899,0.995,1.092,0.773,0.789,0.998,0.911,1.085,1.217,1.323,0.591,0.902,1.073,0.997,1.081,1.008,0.874,1.167,0.778,0.924,0.9,0.924,0.994,0.85,0.974,0.979,1.001,0.815,1.094,1.221 +NM_145166,1.022,1.043,0.981,0.955,1.083,1.101,0.975,0.871,0.942,0.967,0.898,0.953,0.947,0.861,0.774,1.1,0.901,0.966,1.008,1.023,1.107,0.934,1.16,1.065,1.075,1.005,1.061,0.938,1.354,1.065,0.987,1.224,1.044,1.185,0.893,1.031,0.833,1.061,0.938,1.12,1.037,0.898,0.828,1.07,0.9,1.128,0.851,0.934,0.967,0.927,0.846,0.969,1.02,1.046 +NM_145167,0.641,1.147,1.28,0.731,0.933,1.018,0.759,0.497,0.959,0.811,1.144,0.777,0.776,0.615,0.824,1.513,0.842,0.894,1.248,1.005,0.597,0.922,1.236,0.829,0.732,0.718,1.02,0.715,0.575,1.274,0.772,2.343,2.772,1.27,0.355,1.055,1.076,0.885,1.171,1.255,0.905,1.324,0.642,1.72,0.923,0.932,1.001,0.793,0.828,0.7,1.126,0.897,0.754,1.586 +NM_145168,1.1,1.088,1.176,0.989,0.941,0.881,0.927,0.934,1.205,1.199,1.091,0.935,0.875,0.856,0.978,1.079,0.999,0.974,1.053,0.957,1.153,0.907,0.962,0.962,0.77,0.974,1.143,1.052,0.73,1.071,1.001,1.042,0.983,1.112,1.057,1.04,0.884,0.978,0.942,1.033,1.033,0.996,1.033,1.256,0.914,0.853,1.122,0.94,0.922,0.928,0.912,1.009,1.042,1.108 +NM_145169,0.472,1.061,0.934,0.861,0.57,1.422,0.659,0.374,0.997,0.753,1.545,0.515,0.531,0.548,0.859,1.774,0.724,1.061,0.882,0.939,0.461,0.603,1.215,0.868,0.555,0.642,1.096,0.608,0.523,1.402,0.675,0.943,1.243,1.603,0.153,0.721,1.447,0.572,1.224,0.988,0.867,1.226,0.828,0.99,0.808,1.294,1.245,0.554,1.164,0.618,1.134,0.808,0.815,1.562 +NM_145170,0.899,0.952,1.068,1.176,1.037,0.985,0.897,0.924,1.009,0.976,1.076,1.033,1.034,1.098,1.095,1.088,0.978,0.973,1.151,0.956,0.893,1.024,0.874,1.043,1.03,0.881,1.12,0.879,1.213,1.069,0.948,0.977,1.05,0.825,0.963,1.033,1.047,0.87,0.994,0.986,0.98,1.126,0.787,0.881,1.116,1.049,0.867,0.956,0.851,0.983,0.962,0.828,1.004,1.134 +NM_145171,1.12,1.049,0.941,1.017,0.958,1.022,0.777,0.994,0.86,0.931,1.198,1.055,1.095,1.134,1.032,0.983,0.988,0.873,1.134,1.002,1.057,0.914,0.849,0.924,1.067,1.06,1.116,1.002,0.6,1.062,1.024,0.949,0.937,1.005,0.867,0.973,1.027,1.005,0.872,1.102,0.843,0.936,1.084,1.103,1.147,1.01,1.242,0.944,0.967,0.999,1.018,0.921,0.964,1.135 +NM_145172,1.043,0.973,0.984,1.061,1.01,1.178,0.944,1.053,0.922,0.881,1.082,1.093,0.958,0.976,1.098,0.914,1.095,1.035,0.941,0.982,0.983,0.978,1.065,1.069,1.067,0.997,1.045,1.054,1.325,1.16,0.982,0.88,0.866,1.023,0.94,0.952,0.966,1.027,0.922,1.057,0.931,0.968,0.947,0.925,0.986,0.861,0.934,1.038,1.002,0.965,1.01,0.964,0.978,1.181 +NM_145173,0.874,1.233,0.888,1.047,1.062,1.113,1.353,0.81,0.899,0.929,1.432,0.952,0.878,1.006,0.907,1.215,0.862,0.839,0.868,0.909,1.181,0.89,1.136,0.952,1.424,1.032,0.909,1.072,0.962,1.284,0.841,1.151,0.896,2.304,0.949,0.911,1.009,0.833,1.089,0.768,1.467,1.961,0.991,0.817,0.816,1.056,0.972,0.903,0.803,1.003,0.955,1.144,1.0,1.03 +NM_145174,1.049,1.012,0.874,1.111,0.79,0.977,1.075,1.402,1.046,0.992,0.973,1.021,0.931,1.002,0.998,1.047,0.911,0.89,0.996,1.213,1.032,0.825,0.976,1.081,1.102,0.837,0.955,1.061,1.023,1.098,0.931,1.085,1.111,0.993,1.111,0.823,0.924,1.01,1.086,1.071,1.036,1.183,1.03,1.035,0.972,0.842,1.008,1.01,1.177,1.244,0.909,0.981,1.029,0.987 +NM_145176,1.069,1.503,1.647,1.004,1.08,0.842,0.918,1.223,1.506,0.874,0.882,0.838,1.337,1.287,0.872,0.895,0.975,0.895,0.998,1.03,0.962,1.25,0.906,0.892,1.76,0.96,1.289,1.392,0.759,0.866,1.352,0.879,1.408,1.116,0.911,0.748,1.173,1.095,0.704,1.478,1.257,0.917,0.758,0.88,0.938,0.919,0.927,1.147,0.844,1.071,0.793,0.996,0.931,2.082 +NM_145177,0.937,0.953,0.961,0.984,0.844,1.148,1.219,1.171,0.893,0.864,1.13,0.947,1.003,0.922,0.977,1.371,0.975,0.965,1.018,1.086,0.825,0.869,1.237,0.88,1.057,0.915,0.94,0.805,0.915,1.142,1.039,1.076,1.051,1.291,0.929,0.877,1.189,0.855,1.24,0.866,0.894,1.17,1.251,0.948,0.979,0.887,0.887,0.87,0.903,0.806,1.059,0.952,0.863,1.047 +NM_145178,1.049,0.93,1.003,0.974,0.885,1.018,0.867,1.085,0.803,1.042,0.937,1.058,1.121,1.173,1.001,0.963,1.075,1.078,0.861,1.072,1.034,1.128,0.935,0.979,0.999,1.011,1.005,0.943,1.243,1.151,1.062,0.874,0.975,0.997,1.075,0.973,0.992,0.999,0.909,1.011,0.942,1.055,1.132,1.089,1.066,0.871,0.935,0.941,1.034,0.984,0.952,1.04,0.968,0.9 +NM_145179,0.937,1.039,1.118,1.114,0.925,1.056,1.039,1.062,0.947,0.915,0.958,0.905,0.967,0.924,1.056,1.04,1.011,0.864,0.987,1.02,0.933,0.981,1.055,1.12,1.061,1.104,0.857,0.814,1.215,1.053,0.937,0.913,0.87,0.92,1.01,1.043,1.083,1.075,0.883,1.044,1.157,0.958,1.007,1.113,1.102,1.138,1.023,0.916,0.895,0.933,1.009,0.825,1.102,0.93 +NM_145180,1.175,0.823,0.983,1.07,0.909,0.937,0.781,1.027,0.919,0.934,1.057,1.01,1.149,0.924,0.853,0.903,0.967,0.897,1.071,1.046,1.12,1.134,0.818,1.029,0.924,0.897,1.044,1.218,1.134,1.045,0.942,0.919,1.026,0.993,1.099,1.015,1.032,1.226,0.916,1.123,0.989,0.848,0.885,1.144,1.096,1.088,0.833,1.072,0.962,0.906,1.026,1.203,1.053,0.982 +NM_145183,0.698,0.69,1.246,0.619,1.072,0.889,0.523,0.349,1.158,1.145,1.062,1.081,0.722,0.482,0.78,2.01,1.023,1.004,1.125,1.361,0.353,0.629,1.192,0.957,0.244,0.741,1.144,0.922,0.218,1.447,0.722,1.569,0.908,0.835,0.0613,2.196,1.242,0.57,0.951,0.989,1.173,0.967,0.952,0.832,0.965,1.604,1.635,0.64,1.299,0.755,1.006,1.568,1.057,2.749 +NM_145185,2.0389999999999997,2.124,1.92,1.877,1.9249999999999998,2.079,1.943,1.937,1.995,2.04,2.034,1.875,1.942,2.211,2.285,2.2279999999999998,2.0149999999999997,2.02,1.956,2.017,1.865,1.919,2.113,2.1740000000000004,1.9789999999999999,1.959,1.926,1.965,2.3850000000000002,2.051,1.987,1.867,1.8359999999999999,1.9579999999999997,2.0999999999999996,2.078,2.0999999999999996,1.955,1.931,1.889,2.19,1.858,1.8519999999999999,1.996,2.012,2.134,2.089,2.074,1.923,2.08,1.9809999999999999,1.75,2.09,1.968 +NM_145186,1.053,1.036,0.95,0.995,1.06,0.91,0.917,0.902,1.041,1.053,1.034,1.042,1.124,0.954,0.992,0.869,0.963,0.913,0.821,1.037,0.949,0.963,1.016,0.924,1.019,0.921,0.922,1.14,1.009,1.01,1.028,0.97,0.841,1.0,1.11,1.041,0.971,1.129,0.987,1.07,0.993,1.062,1.164,0.961,0.993,0.951,1.137,1.099,1.019,1.064,1.0,0.94,1.08,1.064 +NM_145188,1.143,0.981,1.027,1.113,1.017,0.981,1.028,1.284,0.942,1.026,0.973,1.137,0.982,0.961,1.027,0.922,0.995,0.965,0.929,1.125,1.194,1.025,1.207,1.051,1.009,0.811,0.796,1.023,0.992,0.881,1.031,0.913,1.099,0.943,0.989,1.075,1.106,1.0,0.881,1.015,1.123,1.03,0.941,1.038,1.021,0.979,0.937,0.993,1.022,1.065,1.03,0.994,0.864,0.935 +NM_145196,0.89,1.173,1.072,0.91,1.045,0.941,0.926,1.053,1.088,1.088,0.973,1.03,0.982,0.857,1.141,0.918,0.983,1.048,0.927,1.044,0.937,0.881,0.885,1.008,1.055,1.038,0.932,1.018,0.831,0.98,0.907,1.139,0.941,0.881,1.051,1.111,1.016,1.009,0.854,0.819,0.924,1.015,1.06,1.001,1.026,1.005,1.086,1.039,1.021,1.019,0.984,1.056,0.933,1.037 +NM_145197,1.0,1.196,0.973,1.138,1.075,1.11,1.003,1.07,0.923,0.985,0.99,0.989,1.003,1.01,0.875,0.883,1.012,1.07,0.982,0.948,0.928,0.931,0.901,1.089,1.057,1.066,1.051,0.973,1.052,1.002,1.098,0.921,1.014,0.893,0.954,0.925,1.057,1.035,0.988,1.033,0.905,1.035,1.27,0.995,1.007,1.114,0.912,0.888,1.077,0.935,0.92,0.963,1.262,1.087 +NM_145199,0.873,0.978,0.955,0.949,0.904,1.063,0.862,0.839,1.047,0.962,1.238,0.975,0.962,0.955,0.874,1.244,0.9,0.87,1.01,1.076,0.899,0.801,1.084,0.948,1.012,0.874,1.107,0.894,1.017,1.068,1.09,1.183,2.107,1.232,0.828,1.121,1.169,0.927,1.03,0.955,0.982,1.161,0.952,0.991,0.9,0.818,1.003,0.919,0.888,0.847,1.131,0.921,0.989,1.329 +NM_145200,1.051,0.929,0.967,1.178,1.049,0.9,0.855,0.925,1.024,1.199,0.935,1.096,0.927,1.043,1.084,1.013,0.983,1.036,1.002,0.953,1.069,0.954,1.099,1.067,1.052,0.909,0.964,1.116,1.16,0.95,0.998,1.097,1.077,0.856,0.967,0.906,0.983,0.934,0.99,0.987,0.958,0.919,1.178,1.02,0.868,1.038,1.009,0.938,1.088,1.108,1.033,1.152,0.915,1.031 +NM_145201,0.724,1.167,1.261,0.639,0.927,0.957,0.67,0.664,1.397,0.796,1.077,0.83,0.762,0.496,0.841,2.15,1.4,1.377,1.087,1.224,0.335,1.042,0.919,0.792,0.323,1.182,1.382,1.019,0.49,1.405,0.898,0.869,1.026,0.741,0.706,1.065,0.998,0.822,1.449,1.045,1.369,1.161,1.111,0.404,0.965,2.305,1.437,1.237,0.957,0.913,1.046,0.615,0.731,0.7 +NM_145204,0.999,1.065,1.02,0.932,1.09,1.103,0.99,0.977,0.872,0.947,1.037,1.055,1.041,0.903,0.837,0.992,0.96,1.092,1.178,1.13,0.903,1.03,0.953,1.065,0.936,0.931,1.209,0.961,0.994,1.059,1.045,0.941,1.167,1.133,1.064,0.947,1.028,0.901,1.172,0.865,1.074,1.072,1.037,0.932,0.993,1.167,0.923,0.95,0.929,0.891,1.002,0.935,0.951,0.918 +NM_145205,0.874,0.977,0.922,0.966,0.958,0.973,1.102,1.084,0.95,1.15,1.037,1.045,1.077,1.045,0.965,1.004,1.152,1.027,1.044,1.202,0.993,1.072,0.975,1.05,0.937,0.938,0.972,0.868,0.97,1.009,1.008,0.994,1.054,0.874,1.063,1.089,0.974,0.951,1.024,1.004,1.064,0.943,1.141,1.077,1.031,0.982,0.964,1.011,0.946,1.27,0.948,1.003,1.045,0.865 +NM_145206,0.977,0.93,1.006,1.0,1.107,1.026,0.766,0.889,1.01,1.0,1.042,1.05,0.914,0.964,1.039,1.031,1.035,0.944,0.872,0.997,0.925,0.923,0.908,1.081,0.952,1.056,1.225,1.022,0.606,1.102,1.011,1.003,1.115,1.085,1.077,1.058,0.939,1.026,1.035,1.159,0.964,1.078,0.813,1.004,1.029,0.811,1.033,0.988,0.932,0.936,0.918,0.923,0.892,1.059 +NM_145214,0.721,0.899,1.221,1.006,0.714,1.014,0.878,0.688,0.801,0.769,1.038,0.703,0.577,0.689,0.882,1.288,1.137,0.851,0.896,0.898,0.631,0.602,1.11,0.773,0.817,0.884,1.042,0.654,0.639,1.095,0.839,1.26,1.749,1.227,0.819,1.15,1.073,0.692,1.328,1.291,0.841,1.002,0.854,1.486,0.919,0.987,0.777,0.733,0.88,0.964,1.064,0.904,1.045,1.771 +NM_145231,1.014,0.95,0.996,1.166,1.017,1.089,1.017,1.013,0.86,1.081,0.934,0.687,0.956,0.954,1.405,1.013,0.928,0.966,1.131,0.903,1.096,0.893,0.895,0.919,1.043,1.041,0.824,0.976,1.095,1.009,1.018,1.06,0.87,0.975,1.135,0.877,0.943,0.897,1.154,1.026,0.843,1.04,0.904,1.032,1.076,0.868,1.023,1.089,0.931,0.892,1.069,0.916,0.902,0.779 +NM_145232,0.882,1.245,1.263,0.835,1.216,1.075,0.819,0.749,1.11,1.322,0.842,1.145,0.753,0.659,0.955,1.077,1.201,0.943,0.781,1.147,0.633,1.139,1.17,1.216,0.749,0.822,1.406,0.921,0.665,1.196,1.0,1.345,1.484,1.016,0.672,1.085,0.889,1.502,1.418,1.143,1.059,0.913,0.943,1.08,1.063,0.976,1.207,0.945,1.039,0.816,1.082,0.996,0.668,1.37 +NM_145233,1.004,1.071,1.081,0.867,0.907,0.931,1.13,0.925,1.036,1.084,0.846,1.218,1.018,1.163,0.93,1.094,0.977,0.845,0.878,1.13,1.195,1.096,0.795,0.854,0.955,1.281,0.892,1.066,0.75,0.931,1.009,1.075,1.106,1.002,1.171,0.894,0.971,0.949,1.032,1.049,1.042,1.106,1.068,1.162,0.966,1.02,1.259,1.129,0.968,0.957,0.916,0.84,1.185,0.959 +NM_145234,1.15,1.107,0.995,1.161,1.079,1.023,1.159,0.974,1.119,0.9,1.069,0.969,0.963,1.217,0.861,0.904,0.988,1.078,1.007,0.999,1.077,1.02,1.069,1.02,0.845,1.063,0.955,0.981,1.076,1.006,1.028,0.954,0.89,0.836,0.969,1.12,1.109,1.088,0.932,1.015,1.136,0.931,0.92,0.957,0.976,1.137,0.978,1.069,1.051,0.923,1.009,0.963,0.991,0.86 +NM_145235,0.827,1.073,1.532,0.865,1.417,1.297,1.037,1.18,1.074,0.969,0.928,1.168,0.923,0.866,0.985,1.108,1.489,1.218,0.913,1.247,0.951,1.278,0.795,1.206,0.846,0.935,1.072,1.091,1.032,0.967,1.148,1.41,1.01,1.154,1.095,0.932,1.008,1.233,0.957,0.919,0.943,0.939,0.77,0.724,1.041,0.904,1.077,1.162,0.896,1.034,0.894,0.914,0.89,1.167 +NM_145236,1.029,1.022,0.995,0.984,0.998,1.083,0.863,0.939,1.002,0.962,0.925,0.964,0.971,0.883,0.889,0.9,1.072,1.118,1.049,0.853,0.985,0.965,1.085,1.048,1.022,1.116,0.877,0.93,0.692,1.003,0.999,1.057,1.068,0.93,0.954,1.066,1.105,0.93,1.055,0.977,0.943,1.04,0.773,1.025,0.979,1.092,1.05,0.906,1.056,1.039,1.001,1.068,0.953,0.963 +NM_145238,0.997,1.138,0.954,0.903,0.988,1.008,1.042,0.986,0.967,0.901,0.949,0.884,0.952,0.972,0.982,0.988,1.119,0.967,0.851,1.124,1.09,0.989,0.981,0.893,0.951,1.041,1.063,0.929,0.917,0.984,1.004,0.934,0.912,1.003,1.049,1.0,0.957,1.137,0.971,0.796,0.871,1.032,1.144,0.963,1.041,1.051,1.071,1.11,1.034,1.016,1.1,1.028,1.034,0.908 +NM_145239,0.876,0.965,0.922,1.047,1.029,0.998,0.973,0.864,0.816,0.956,0.947,1.122,1.053,1.055,0.921,0.971,1.026,0.9,0.886,0.88,0.831,1.041,0.894,0.893,1.054,1.012,0.884,1.053,0.992,1.145,0.954,1.111,1.024,1.013,1.102,1.014,0.922,1.13,1.085,0.998,1.047,1.118,0.933,0.989,0.898,1.061,1.047,1.043,0.973,1.034,1.043,0.984,0.93,0.957 +NM_145241,1.077,1.203,1.17,1.02,0.98,0.883,0.948,1.042,1.069,1.107,0.917,1.121,0.962,0.944,0.989,0.892,0.965,1.079,0.93,1.129,0.939,1.071,1.077,0.94,0.884,1.195,1.054,1.243,0.847,0.94,0.971,1.014,0.927,0.991,1.01,0.793,0.897,1.078,1.133,0.998,1.077,0.96,0.854,0.937,0.983,1.049,1.119,0.993,0.916,0.985,0.989,0.873,0.992,0.954 +NM_145243,0.799,1.176,1.218,0.947,1.004,1.23,0.798,0.431,1.16,0.921,1.283,0.69,0.759,0.815,0.87,1.248,0.996,1.005,1.216,1.092,0.753,0.953,1.183,0.898,0.852,0.781,1.172,0.922,0.544,1.391,0.92,0.905,1.721,1.501,0.406,0.652,1.16,0.804,1.307,0.587,1.089,1.21,1.033,0.909,0.942,1.23,0.787,0.624,1.048,0.781,1.272,0.689,0.992,1.122 +NM_145244,1.006,1.352,0.925,0.98,1.075,0.975,1.323,1.019,0.927,1.052,0.974,0.911,1.02,1.118,0.987,0.996,1.178,0.769,1.079,1.042,0.827,0.945,0.812,0.987,0.898,1.018,1.205,1.047,1.068,1.182,1.018,1.519,0.923,1.212,1.052,1.615,0.783,1.034,0.978,1.001,1.096,0.9,0.8,0.906,1.081,1.002,0.931,1.109,0.981,0.925,1.089,0.829,0.993,1.0 +NM_145246,0.911,0.991,1.019,1.089,1.003,1.127,0.86,1.114,0.971,0.919,0.967,1.069,0.881,1.168,1.141,0.981,1.0,1.193,1.086,1.057,0.98,0.989,0.952,1.094,1.108,1.067,1.075,0.984,1.206,0.934,0.956,1.263,0.983,1.018,1.007,0.955,1.097,1.044,0.967,0.947,1.062,1.056,0.893,1.035,1.054,0.899,0.924,1.025,0.875,0.959,0.971,0.854,1.054,0.95 +NM_145248,0.948,0.983,1.034,0.858,0.999,0.971,0.94,1.171,1.018,1.009,1.027,0.809,1.003,0.919,0.887,0.98,1.039,0.948,1.015,1.106,1.0,1.129,1.002,0.928,0.948,0.922,1.033,1.025,1.118,1.0,0.964,0.88,1.066,1.033,0.985,0.981,1.055,1.075,0.86,1.047,0.882,1.021,0.97,1.046,0.963,0.947,1.003,1.057,0.901,1.191,1.008,0.967,1.051,0.944 +NM_145249,0.486,1.35,0.887,0.823,0.682,1.6,1.405,0.502,0.947,0.759,1.671,0.858,0.82,0.449,1.558,2.693,0.52,1.483,1.107,1.477,0.656,0.545,1.023,0.7,0.827,0.641,0.693,0.855,0.806,1.713,0.61,1.989,0.838,1.409,0.305,1.608,2.136,0.651,1.74,0.682,0.589,1.059,1.148,5.269,0.672,1.367,0.876,0.747,1.319,0.361,1.33,0.718,0.877,0.73 +NM_145250,1.085,0.884,0.958,0.929,1.004,0.953,1.025,0.863,0.99,1.004,1.104,1.104,1.055,1.07,1.006,0.945,0.944,0.884,1.091,1.138,0.953,1.12,0.985,0.899,0.978,0.935,0.906,0.894,0.961,1.014,0.936,1.047,0.974,1.015,0.98,1.123,1.022,0.951,1.033,0.971,1.018,0.954,1.138,1.066,0.903,0.982,0.901,1.0,0.892,1.01,1.041,0.971,1.094,0.95 +NM_145252,0.102,3.219,0.0911,1.277,0.104,1.856,1.613,0.0681,0.0693,0.0598,1.745,0.0807,0.249,0.0882,0.767,2.337,0.645,2.33,0.154,3.129,0.0752,0.0904,2.097,0.0775,0.307,0.0631,0.311,0.0699,0.706,1.806,0.0617,0.991,1.607,3.653,0.102,2.353,1.904,0.0812,2.238,1.143,0.116,5.958,1.28,1.973,0.131,0.789,1.234,0.0873,0.615,0.178,1.873,0.579,0.202,0.321 +NM_145253,1.158,0.969,0.873,1.133,0.87,0.995,0.847,1.341,0.879,0.92,1.136,0.864,1.197,1.021,1.193,1.199,0.867,0.841,1.205,0.879,1.379,0.987,1.001,0.896,1.158,1.575,0.982,1.094,0.722,0.845,1.102,1.238,1.954,1.116,1.736,0.916,0.839,0.932,1.817,0.999,0.885,1.227,0.946,1.364,0.922,0.931,0.803,1.498,0.869,1.122,0.946,0.801,1.185,1.009 +NM_145254,0.969,1.043,0.943,0.821,0.961,1.104,1.11,0.976,0.973,0.983,1.014,1.045,0.907,0.869,0.983,1.363,1.036,1.093,0.875,0.926,0.915,0.978,1.026,0.971,0.867,1.036,0.973,0.88,0.888,0.982,1.161,1.058,1.399,1.009,1.175,0.963,1.104,1.219,1.222,0.998,0.95,1.145,1.025,0.955,1.001,0.937,1.049,0.916,1.021,1.12,1.076,0.925,0.881,1.021 +NM_145255,0.575,1.316,0.967,0.617,0.786,1.239,0.919,0.401,0.86,0.941,0.769,0.88,0.584,0.473,0.818,1.173,0.906,1.167,0.792,1.206,0.424,0.592,1.584,0.924,0.654,0.707,1.23,0.794,0.512,1.435,0.78,1.741,1.085,1.41,0.517,1.187,1.197,0.714,1.329,0.886,1.061,1.295,0.783,1.755,0.91,0.95,1.184,0.546,1.39,0.548,1.037,0.984,0.762,1.939 +NM_145256,1.072,1.009,1.096,1.128,0.984,0.998,1.074,1.141,0.958,1.032,0.986,1.141,1.035,0.995,1.037,0.982,0.981,1.018,1.034,0.958,0.942,0.906,0.979,1.035,0.985,0.936,1.028,0.962,0.885,1.013,1.004,1.091,0.854,0.977,0.885,0.944,1.005,1.147,1.167,0.975,0.947,0.874,0.907,0.938,1.052,0.939,1.038,0.863,0.951,1.059,0.912,1.136,1.16,0.994 +NM_145257,0.98,0.971,0.782,1.156,1.002,0.97,1.062,1.019,1.011,1.141,1.03,1.104,1.041,1.236,0.829,0.908,0.998,0.982,0.88,1.028,0.88,0.953,0.953,1.154,0.906,0.985,0.958,1.137,0.786,0.897,0.871,0.92,1.079,1.037,1.012,1.026,0.939,0.888,1.001,0.878,1.095,1.01,0.855,1.05,1.037,0.928,0.971,1.033,1.032,0.936,0.941,0.99,1.004,0.983 +NM_145258,0.94,0.948,1.082,0.814,1.007,1.07,0.884,1.004,0.896,0.936,1.03,1.033,0.885,1.25,0.953,1.135,0.967,1.008,1.08,0.97,0.964,0.895,0.988,1.135,1.074,1.145,1.07,0.974,1.208,1.142,1.071,0.998,0.854,0.905,0.887,0.911,1.055,0.994,0.913,1.083,1.037,0.979,1.056,0.971,0.976,0.875,0.979,1.163,0.823,0.884,1.015,0.916,0.992,0.887 +NM_145259,0.969,0.96,1.131,1.044,1.009,1.073,1.027,0.991,1.021,0.927,1.095,0.896,0.927,0.998,1.17,1.072,1.013,0.906,0.915,1.079,0.83,1.026,0.926,1.001,0.999,1.02,0.946,0.95,1.098,1.061,0.941,1.065,1.229,1.086,0.864,0.869,0.955,1.035,0.974,1.011,1.009,1.004,0.982,0.999,1.015,1.097,1.053,0.971,1.044,0.854,0.936,0.923,0.994,1.147 +NM_145262,0.742,0.988,0.849,1.367,0.73,1.736,0.94,0.837,0.73,0.76,1.901,0.852,0.811,0.737,1.095,2.81,0.804,1.121,0.986,1.252,0.856,0.71,1.422,0.82,1.265,0.84,0.905,0.766,1.215,1.99,0.812,0.852,0.79,1.766,0.677,1.038,1.713,0.785,1.921,0.881,0.749,1.367,1.133,0.786,0.734,1.506,1.086,0.818,1.051,0.786,1.3,0.857,0.82,1.028 +NM_145263,0.692,0.952,1.466,0.777,1.195,1.473,0.815,0.979,1.181,1.18,1.197,1.298,0.879,0.878,1.039,1.422,1.088,0.968,1.064,1.314,0.723,1.019,2.157,1.244,0.652,0.786,1.201,1.019,0.681,1.939,1.199,0.894,1.028,1.44,0.528,0.641,1.126,1.203,0.845,0.626,1.174,1.726,0.84,0.935,0.995,1.221,0.848,0.896,1.043,0.793,1.44,0.734,1.041,0.846 +NM_145265,1.254,0.948,0.676,0.909,1.268,1.015,0.725,0.927,1.244,0.699,0.789,1.171,1.697,0.897,1.21,1.159,0.994,1.125,1.248,1.058,0.615,1.129,1.111,0.829,0.738,1.597,0.737,2.394,0.472,0.683,1.347,1.714,1.458,1.1,4.004,1.057,0.926,1.338,1.095,0.924,1.258,0.984,0.767,1.701,1.044,0.903,0.824,1.727,0.928,0.83,0.921,1.309,0.757,1.172 +NM_145266,0.71,1.259,1.46,0.623,1.069,1.132,0.821,0.923,1.252,1.125,0.995,1.04,0.932,0.585,1.063,2.142,1.084,1.122,0.918,0.916,0.515,1.355,1.172,1.241,0.609,0.53,1.661,1.046,0.722,1.025,1.17,1.591,3.337,1.299,0.396,0.448,1.117,1.453,1.263,0.669,1.231,1.009,0.73,0.582,0.933,0.835,1.261,0.783,1.311,0.785,1.151,0.657,0.588,1.805 +NM_145269,0.957,1.447,1.136,0.996,1.09,0.94,1.226,1.046,1.001,0.963,1.127,0.996,1.104,0.962,1.171,1.031,0.859,0.965,0.99,1.006,1.109,0.939,0.965,0.931,1.4,0.809,0.938,0.926,0.995,1.027,1.107,1.0,0.978,1.052,1.063,1.05,1.117,1.059,0.835,1.025,1.045,1.014,0.894,0.892,1.093,0.965,1.292,0.98,1.035,0.971,0.959,1.046,0.975,0.89 +NM_145270,1.08,1.146,1.091,0.886,1.155,1.07,1.047,0.872,0.972,1.046,0.897,0.948,1.005,0.915,0.947,1.046,0.942,1.019,1.087,1.098,0.907,1.083,0.885,1.06,0.94,0.969,0.994,1.034,0.976,1.133,0.946,0.867,1.098,0.965,1.086,0.996,0.903,0.938,1.09,1.039,1.06,1.244,0.982,1.07,1.087,0.931,1.009,1.138,1.135,1.016,0.99,0.88,1.021,1.001 +NM_145271,0.826,0.973,1.006,0.91,0.786,1.2,0.973,0.799,0.798,0.732,1.264,0.939,1.041,0.804,0.893,1.371,0.791,1.037,1.073,1.003,0.743,0.933,1.008,0.928,0.956,1.059,0.991,0.794,0.645,1.31,0.785,1.471,1.323,1.589,0.641,0.823,1.055,0.915,1.084,1.012,0.983,1.312,0.782,1.204,0.811,0.831,0.981,0.963,0.813,0.815,1.037,0.736,0.911,1.22 +NM_145274,0.68,1.197,1.617,0.701,1.214,1.083,0.748,0.636,1.09,1.274,0.691,1.214,0.788,0.646,0.77,0.916,1.076,1.268,1.325,1.172,0.64,0.934,1.761,1.076,0.725,0.825,1.246,1.039,0.574,1.031,0.931,1.136,3.633,1.119,0.357,1.067,0.962,1.251,0.656,0.92,0.989,1.464,0.775,1.555,1.01,0.609,0.833,0.96,0.608,0.832,1.007,0.723,1.121,1.938 +NM_145275,2.3280000000000003,1.816,2.017,1.919,2.0389999999999997,1.847,1.8,1.7389999999999999,2.199,1.995,1.9089999999999998,2.077,2.078,1.771,2.12,2.154,2.144,2.056,2.5250000000000004,1.817,2.0629999999999997,1.9140000000000001,1.652,1.98,1.845,2.1799999999999997,2.117,2.061,1.7249999999999999,1.915,2.045,2.096,2.008,2.153,1.99,1.9020000000000001,1.992,2.13,2.08,2.013,1.859,1.9340000000000002,1.701,2.061,2.037,2.052,1.9569999999999999,2.141,2.2960000000000003,2.0199999999999996,1.859,2.0389999999999997,1.9609999999999999,1.992 +NM_145277,1.278,0.998,0.961,1.216,1.02,0.98,1.064,0.886,1.046,1.009,0.966,0.89,0.88,1.081,0.974,1.039,0.914,1.085,1.123,0.838,1.015,1.029,0.864,1.169,0.911,1.104,0.938,1.047,0.859,1.034,1.201,1.045,1.099,0.966,0.861,1.023,0.904,0.936,0.935,0.965,1.083,1.012,1.009,0.998,1.209,1.034,0.979,1.067,1.072,0.933,1.002,0.88,1.051,0.952 +NM_145282,1.023,1.026,1.063,0.866,0.986,0.966,1.136,1.047,1.055,0.937,1.015,1.097,1.053,1.132,1.198,1.144,0.919,0.867,1.024,0.978,1.231,0.889,0.923,0.962,1.007,1.077,1.246,0.952,1.091,0.999,1.13,0.883,1.038,1.001,0.831,0.976,1.015,1.029,0.925,0.972,0.985,0.993,1.145,0.96,1.069,0.968,0.996,1.02,0.952,1.071,1.021,0.835,1.021,1.043 +NM_145283,1.151,0.944,0.969,0.897,0.869,1.021,1.035,0.986,0.943,1.054,0.937,1.097,1.028,0.954,1.134,1.104,0.912,0.909,1.001,1.052,1.065,1.077,0.97,0.919,0.93,1.007,1.078,0.949,1.293,0.958,0.88,1.034,1.044,1.059,0.876,0.947,1.021,1.087,0.929,0.991,1.087,0.982,1.55,0.845,1.0,0.807,1.042,0.851,1.043,1.107,1.11,0.879,0.943,1.045 +NM_145284,0.838,0.953,0.887,0.631,1.647,1.031,0.741,1.29,1.49,0.902,1.002,1.065,0.718,1.077,1.286,1.265,0.844,1.034,0.947,1.028,0.467,1.141,1.017,1.034,0.725,1.007,0.837,1.74,0.796,0.954,1.362,1.441,2.905,1.292,5.234,0.963,0.987,1.265,1.47,1.236,0.712,0.993,0.698,1.523,0.77,0.902,1.577,1.894,0.896,0.648,0.92,1.035,0.704,1.189 +NM_145285,0.939,1.606,0.861,0.954,0.744,0.997,1.72,1.143,0.757,0.927,1.539,0.904,0.871,0.806,1.098,0.967,0.881,1.331,0.829,0.939,1.105,0.89,0.957,1.024,1.221,0.813,0.906,0.849,0.764,3.161,0.866,1.153,0.918,3.048,0.764,1.053,1.959,1.316,2.325,0.718,0.805,1.263,0.85,0.966,0.918,1.315,1.305,0.809,1.416,0.866,1.493,0.886,0.907,1.159 +NM_145286,0.853,0.983,0.987,1.156,1.135,0.773,0.865,0.998,1.26,0.91,1.299,1.054,1.107,1.356,1.009,0.96,0.939,1.148,0.884,1.125,1.008,1.093,1.148,1.09,0.931,0.964,1.028,0.895,1.062,1.098,1.041,0.982,0.872,1.018,0.847,1.023,1.186,0.863,0.963,0.952,1.188,1.087,0.808,0.803,0.837,1.084,0.739,1.067,1.116,0.958,0.662,1.087,0.907,1.108 +NM_145287,0.955,1.079,1.046,1.077,1.117,0.938,0.82,0.946,1.332,1.003,1.007,0.849,1.132,0.994,1.038,1.108,1.11,1.068,1.066,0.988,1.001,1.218,0.993,1.137,0.999,1.077,1.116,1.121,0.756,0.854,1.093,1.022,1.282,0.846,1.117,0.981,0.985,1.168,0.947,0.986,1.218,0.986,0.881,0.927,0.956,1.002,0.959,1.026,0.935,0.951,0.964,1.044,1.209,0.956 +NM_145288,1.131,1.099,1.677,0.752,1.241,0.911,0.8,0.914,1.671,1.684,0.719,1.004,1.021,1.027,0.977,0.846,1.034,1.141,1.72,0.935,0.858,1.065,0.9,1.755,0.675,1.8,1.179,1.35,0.697,1.331,1.063,0.483,1.318,1.002,0.328,1.488,0.862,1.363,1.099,0.81,1.392,0.865,0.548,0.822,1.78,0.663,0.782,1.262,0.766,1.256,0.699,0.655,1.767,1.169 +NM_145291,1.053,0.984,1.024,1.035,0.989,0.95,1.046,1.184,1.064,0.982,0.979,0.958,0.984,0.88,0.865,0.866,1.01,1.048,0.944,0.945,0.892,0.922,1.044,1.105,1.0,1.034,1.01,1.012,0.992,0.985,0.927,0.967,0.947,1.013,0.998,0.961,0.834,1.086,0.999,0.862,0.987,1.101,1.049,0.998,0.987,1.1,1.019,0.98,1.0,1.064,1.026,1.071,0.829,1.099 +NM_145292,0.858,1.152,0.995,1.023,0.883,1.002,0.929,0.968,1.084,1.05,0.877,1.055,0.993,1.305,1.191,0.921,1.06,0.836,1.042,0.894,0.921,0.915,0.941,1.157,1.161,1.013,1.046,1.035,0.75,1.006,0.997,0.924,0.966,0.919,1.023,0.984,1.108,0.915,1.172,0.893,0.846,1.001,1.183,1.074,0.974,0.905,0.981,0.928,0.931,0.896,0.972,1.01,1.121,0.966 +NM_145293,0.945,1.075,1.001,0.99,1.129,1.051,1.07,0.985,0.797,0.876,1.086,1.147,0.915,0.865,0.896,1.095,1.001,0.943,0.957,1.056,0.929,0.974,0.979,1.055,1.137,1.019,0.884,0.927,0.698,1.237,0.882,1.022,0.795,0.995,0.987,1.108,1.215,1.057,1.082,1.019,0.834,1.138,1.032,0.879,1.185,1.024,0.967,0.89,0.941,1.139,0.983,0.87,1.053,1.0 +NM_145294,0.871,1.076,0.963,1.023,0.859,1.104,1.001,0.727,1.047,0.823,0.854,0.814,0.766,0.893,1.034,1.189,0.883,1.01,0.976,1.077,0.753,0.881,1.313,1.094,0.824,0.859,1.071,0.845,0.707,0.979,0.853,1.676,1.724,1.185,0.722,1.001,1.088,0.944,1.159,1.051,0.91,0.99,1.272,1.22,0.817,1.112,1.08,0.823,1.096,0.953,1.05,0.899,1.017,1.13 +NM_145296,1.317,1.108,0.982,0.92,0.968,0.961,1.038,1.074,1.121,1.002,0.917,1.126,1.098,1.025,1.062,1.003,1.303,0.928,1.135,0.886,0.889,1.265,0.984,1.069,1.084,1.134,1.207,1.016,1.291,1.035,0.944,0.973,1.138,0.946,1.005,0.98,0.994,1.029,0.989,0.955,0.991,1.107,0.945,1.079,1.04,0.89,0.887,1.294,0.937,1.133,0.979,0.917,1.024,0.956 +NM_145299,1.091,0.974,0.913,0.914,0.979,0.963,0.997,1.073,1.105,1.047,0.896,0.891,1.111,0.975,0.77,1.154,0.952,1.085,0.918,0.924,1.02,0.95,0.987,1.284,0.919,0.978,1.029,1.066,0.782,0.981,0.952,1.032,1.083,0.927,0.993,0.974,1.012,1.014,1.145,1.143,1.046,0.96,0.861,0.919,1.068,0.91,1.175,1.004,0.892,0.988,0.946,1.074,1.111,0.956 +NM_145301,1.196,0.921,0.992,1.085,1.009,1.017,0.981,0.953,1.069,1.068,1.186,1.029,1.036,1.007,1.063,1.171,1.073,1.095,0.967,0.938,1.062,0.963,0.99,1.003,1.031,0.912,0.946,0.833,0.858,0.901,1.057,1.023,1.019,1.015,1.228,0.983,1.03,1.118,0.965,0.965,0.934,0.88,0.881,0.952,1.083,0.903,0.971,1.129,0.993,1.011,0.925,1.068,1.118,1.092 +NM_145303,0.986,0.955,1.094,0.996,0.891,1.06,1.158,1.075,0.879,0.918,0.99,0.815,0.857,0.935,1.0,1.291,0.913,0.951,1.047,1.066,1.212,1.015,0.986,1.104,0.93,1.195,0.933,1.06,1.145,0.972,1.026,0.968,1.131,1.08,0.935,1.168,1.17,0.98,1.233,0.957,0.934,0.93,0.985,1.009,1.045,0.852,0.922,0.983,1.072,0.961,1.086,0.967,0.882,1.085 +NM_145304,0.993,0.945,1.012,0.96,1.111,0.937,1.031,0.965,0.841,0.993,1.031,0.982,1.03,0.899,1.022,1.047,0.969,1.117,1.187,1.034,0.949,1.016,0.958,0.956,1.1,1.002,0.924,1.026,1.078,1.087,1.04,0.956,1.142,0.841,0.933,1.099,0.929,0.925,1.02,1.104,1.003,1.017,1.012,1.175,1.082,1.086,0.946,0.993,0.989,0.907,1.046,0.988,0.955,0.949 +NM_145305,1.22,0.634,2.028,0.66,1.477,1.122,0.402,1.023,2.571,1.619,1.001,1.06,1.165,1.07,1.086,1.627,0.994,1.188,1.625,0.853,0.588,1.398,1.0,1.649,0.415,1.283,1.815,1.715,0.336,1.023,1.575,0.929,1.647,0.777,0.938,0.653,0.995,1.312,0.785,0.415,1.578,0.696,0.475,0.627,1.44,1.209,1.046,1.199,0.809,0.985,0.876,0.978,1.141,1.041 +NM_145307,1.064,0.967,1.006,0.93,1.047,1.013,0.999,0.785,1.018,1.031,0.876,0.956,0.881,0.844,0.937,1.144,0.979,1.051,1.056,1.16,1.029,0.97,1.039,1.08,0.955,1.095,1.151,0.972,0.997,0.941,1.032,1.126,1.485,0.894,0.925,1.033,0.911,0.954,1.098,1.005,1.445,0.839,0.953,1.431,0.909,1.059,0.97,1.082,1.063,1.109,1.004,0.911,0.973,1.211 +NM_145309,0.886,1.075,0.918,0.912,1.144,1.142,0.953,0.999,0.861,0.871,0.876,0.995,0.855,1.009,0.957,1.058,0.853,1.001,1.009,1.104,0.895,0.958,1.083,1.011,1.066,1.047,0.886,0.943,0.629,1.25,0.904,1.064,1.681,1.124,0.905,1.184,1.098,0.93,1.142,0.918,0.949,1.103,0.846,0.983,0.839,1.011,1.087,0.857,0.75,0.817,1.18,0.891,0.942,1.001 +NM_145310,0.967,1.032,0.873,0.923,0.871,1.019,1.149,1.064,1.184,0.976,1.098,1.15,1.094,1.063,1.251,1.052,0.955,0.976,0.99,1.068,0.861,0.955,0.907,0.905,0.964,1.028,0.891,0.901,1.155,0.986,1.07,1.066,0.944,0.916,0.997,1.206,0.982,1.009,1.082,0.936,1.07,0.898,0.983,0.949,0.999,1.007,0.993,1.2,1.017,0.99,1.041,1.072,0.852,1.12 +NM_145311,0.911,0.845,0.967,1.054,0.848,1.074,0.907,0.986,0.961,0.832,0.969,1.091,0.936,1.09,1.014,1.107,0.918,0.961,1.134,1.12,0.936,0.923,1.007,0.947,1.011,0.937,1.047,0.963,1.007,1.037,1.022,1.069,1.053,0.973,0.788,1.035,0.958,1.002,1.041,1.09,1.068,1.046,0.862,0.846,0.998,0.872,0.865,0.951,0.805,0.844,0.954,0.911,0.993,1.128 +NM_145313,1.076,1.064,1.085,1.008,1.018,0.894,0.786,0.952,0.963,0.995,1.07,0.926,1.006,1.177,0.746,1.222,0.951,0.958,1.138,0.881,0.889,0.989,0.894,0.898,0.888,1.123,0.868,1.018,0.964,0.91,0.937,1.221,1.768,1.01,1.024,0.879,0.943,1.2,1.271,0.945,1.023,1.089,0.879,0.957,0.975,1.094,1.088,0.967,1.04,0.948,1.141,1.094,0.945,1.251 +NM_145314,1.033,1.068,1.103,1.013,0.927,1.121,1.104,1.128,0.935,1.094,0.924,0.941,1.08,1.054,1.052,0.917,0.987,1.033,1.113,1.039,0.948,0.969,1.086,1.034,0.947,1.103,1.094,1.06,1.001,0.924,1.04,1.033,0.951,0.945,1.081,1.081,0.951,0.979,1.017,0.937,1.006,0.952,0.93,1.082,0.983,0.972,1.185,0.847,1.097,0.952,1.05,0.978,0.982,1.031 +NM_145315,0.767,1.172,1.091,0.952,0.936,1.096,0.794,0.695,0.891,1.055,1.131,0.977,0.819,0.866,0.862,1.136,1.059,1.026,1.08,1.147,0.757,0.9,1.119,1.051,0.852,0.884,1.216,1.075,0.78,1.111,0.836,0.892,1.173,1.338,0.87,0.982,1.258,0.902,1.122,0.94,0.967,1.167,0.801,1.346,0.982,0.996,1.023,0.9,0.816,0.978,1.073,0.816,1.167,1.433 +NM_145316,1.018,0.86,1.002,0.919,0.959,1.077,0.792,0.974,1.255,1.052,0.881,0.998,1.023,1.205,1.003,0.907,1.081,0.954,1.071,1.044,0.834,0.95,1.033,0.907,0.952,1.215,1.006,1.101,0.907,0.888,1.148,1.026,0.989,1.062,0.947,0.989,0.983,1.24,0.974,1.083,1.057,0.947,1.012,0.952,1.102,0.853,1.028,1.095,0.868,0.912,0.964,1.048,1.021,1.037 +NM_145318,0.983,1.003,0.982,1.024,0.947,0.944,0.952,0.923,1.011,0.945,0.94,0.923,0.974,1.013,0.709,0.849,0.967,0.974,0.992,0.957,0.919,1.159,0.937,0.9,1.21,0.896,0.946,1.054,1.083,1.018,1.129,0.863,1.048,0.949,1.01,1.09,1.127,0.912,1.025,1.007,0.882,1.084,0.969,1.139,1.056,1.057,0.979,0.941,1.058,0.89,1.022,1.024,1.009,0.959 +NM_145319,1.359,0.858,4.822,0.752,2.145,0.755,0.509,0.701,2.148,2.617,0.507,1.683,1.003,0.937,1.202,1.041,3.955,1.221,2.788,0.997,0.927,1.489,1.027,2.76,0.409,1.205,2.6,1.292,0.472,0.723,1.668,1.496,1.677,0.902,0.445,0.808,0.64,2.542,1.384,0.787,2.814,0.785,0.504,0.975,2.847,0.633,1.382,1.257,1.096,3.624,0.962,1.188,2.129,0.893 +NM_145322,0.962,1.085,1.06,0.935,0.837,1.005,1.111,0.758,1.066,0.928,0.894,0.959,0.972,0.854,0.931,0.953,1.13,1.088,0.934,1.142,0.745,0.861,1.67,0.857,0.801,0.892,0.901,0.877,1.242,1.388,0.897,1.379,0.993,0.992,0.875,1.475,0.944,0.875,1.635,0.92,0.95,0.996,1.212,1.116,0.963,0.942,0.9,0.892,0.895,0.87,1.236,1.364,0.855,1.202 +NM_145325,0.95,1.082,1.055,0.883,1.073,1.075,0.819,0.967,1.028,1.085,0.899,0.988,1.001,0.868,0.934,0.88,1.031,0.997,0.923,0.932,1.075,0.983,0.912,1.06,0.966,1.056,1.122,0.999,0.931,1.021,1.007,0.975,0.993,0.999,0.882,0.854,1.046,1.065,1.073,0.998,1.075,1.149,0.964,1.026,1.074,0.976,1.055,0.924,1.053,0.826,1.022,0.923,0.891,1.026 +NM_145330,0.611,1.124,0.923,0.836,0.682,1.163,0.65,0.456,0.987,0.873,1.259,0.639,0.643,0.684,0.77,1.385,0.781,0.93,0.911,1.079,0.435,0.672,1.327,0.864,0.849,0.794,1.036,0.723,0.484,1.235,0.721,1.139,1.617,1.736,0.294,1.124,1.15,0.813,1.221,1.142,0.926,1.257,0.839,1.093,0.74,0.938,0.858,0.749,1.015,0.54,0.975,1.08,0.805,1.632 +NM_145333,0.814,1.07,1.144,0.814,0.894,1.106,0.896,0.592,1.153,0.993,1.143,0.916,0.771,0.747,0.977,1.263,0.817,0.894,1.184,1.04,0.674,0.823,1.12,1.221,0.751,0.785,1.304,0.835,0.562,1.165,0.976,1.31,1.448,1.17,0.419,0.927,1.272,0.953,1.0,1.352,1.017,1.14,0.639,1.248,1.084,0.892,1.0,0.746,0.875,0.762,1.022,0.997,0.988,2.01 +NM_145341,0.922,1.126,1.104,1.154,0.878,1.032,1.144,1.026,0.943,0.943,1.204,1.117,0.854,0.84,0.923,1.067,0.959,1.032,0.96,1.178,1.001,0.868,0.865,0.929,1.053,1.035,1.002,0.956,1.531,1.037,0.961,1.032,0.919,1.0,0.94,0.97,1.015,1.032,0.963,1.118,0.929,0.91,1.116,1.09,1.064,0.93,0.964,1.002,1.076,0.917,1.11,1.056,1.081,1.043 +NM_145343,1.13,1.095,1.029,0.876,1.113,1.0,1.044,1.159,0.978,1.032,0.974,0.845,0.903,0.8,1.004,1.2,1.052,0.96,0.942,1.072,0.996,0.895,1.01,0.98,0.845,0.917,0.996,0.99,0.88,1.058,0.946,1.075,1.013,1.081,1.051,1.016,1.079,1.087,1.234,1.002,1.017,1.068,1.369,0.924,0.995,1.002,0.999,0.989,1.205,0.867,0.986,1.041,0.959,0.999 +NM_145344,0.566,1.165,0.785,1.176,0.458,2.996,1.302,0.273,0.343,0.41,0.71,0.31,0.359,0.349,0.744,0.484,0.603,2.595,0.449,2.809,0.399,0.281,1.172,0.5,1.181,0.379,1.231,0.353,0.561,1.857,0.348,0.969,1.98,2.181,0.334,0.455,1.002,0.354,2.069,0.43,0.697,3.167,0.794,0.828,0.486,0.918,0.747,0.318,1.479,0.597,2.101,1.354,1.009,3.843 +NM_145345,0.976,0.985,1.039,1.197,0.937,1.015,1.255,0.932,0.853,0.974,0.891,1.044,0.953,0.903,1.05,1.089,0.998,0.965,1.012,0.951,1.097,1.054,1.267,1.106,1.036,0.957,0.948,0.867,0.761,0.94,0.909,0.923,1.557,0.919,0.877,1.231,0.979,0.726,1.286,1.04,0.912,0.971,0.881,1.252,0.746,0.871,1.002,0.957,1.148,0.944,0.917,1.033,1.091,1.527 +NM_145348,0.988,0.93,1.111,1.156,1.231,0.947,1.103,0.941,0.999,0.97,0.933,1.027,0.963,0.96,0.724,1.027,1.028,0.754,1.069,1.025,1.025,0.929,1.083,1.04,0.942,0.973,0.908,1.102,0.872,0.891,0.982,0.898,1.07,1.008,0.897,1.077,0.852,1.074,1.059,0.995,0.993,0.921,1.015,0.99,0.975,1.005,1.017,0.912,0.922,0.929,0.917,1.08,1.035,1.113 +NM_145351,0.919,0.845,0.857,1.068,1.052,1.046,1.223,0.988,1.09,0.953,0.816,1.006,0.81,0.885,1.057,1.108,0.971,1.109,0.905,0.971,1.016,0.947,0.997,0.985,0.849,0.972,0.937,0.951,0.855,1.053,0.973,0.935,0.929,1.027,1.07,1.024,1.024,1.023,0.98,1.026,1.015,0.933,1.25,0.864,1.036,0.876,0.923,0.896,1.168,0.988,1.023,1.073,1.077,0.811 +NM_145352,1.03,0.957,1.02,1.029,0.963,1.096,1.058,0.977,0.996,0.99,1.055,0.985,0.87,1.019,0.891,1.065,0.925,0.855,0.964,1.018,1.095,0.957,1.014,0.93,1.12,0.993,1.02,0.96,1.243,1.003,1.012,1.204,0.905,1.089,1.024,0.911,0.943,1.036,0.956,1.128,0.959,0.955,1.049,1.086,1.002,1.015,0.848,0.955,0.908,0.976,0.965,1.149,1.043,1.078 +NM_145637,0.962,1.237,1.032,0.951,1.214,1.017,0.906,1.004,1.065,1.024,0.984,1.129,1.027,1.013,1.041,0.904,0.978,0.871,0.866,1.045,0.839,0.971,0.892,0.969,1.09,1.014,0.95,1.047,0.687,1.031,1.018,0.879,0.963,0.935,0.908,0.946,0.956,0.998,1.055,1.018,1.043,0.989,0.934,0.975,0.926,1.032,1.097,0.958,1.012,0.992,0.999,1.056,0.955,0.94 +NM_145638,0.859,1.047,1.034,0.819,0.944,0.955,0.741,0.633,0.992,0.861,1.032,0.999,0.761,0.731,1.186,1.65,0.82,0.889,0.853,1.085,0.799,0.838,1.151,0.823,0.853,0.997,1.266,0.757,0.855,1.323,0.897,1.848,1.072,1.074,0.736,1.793,1.016,0.876,1.094,1.175,0.863,1.435,1.411,1.104,1.034,1.305,0.841,0.809,1.046,1.001,1.223,0.897,0.868,0.918 +NM_145644,0.708,0.998,1.012,0.747,0.948,1.262,0.611,0.476,1.067,0.834,0.926,0.926,0.643,0.617,1.046,2.25,0.707,0.924,1.03,1.333,0.525,0.805,1.565,0.88,0.741,0.734,1.075,0.886,0.415,1.289,0.835,1.14,1.571,1.156,0.255,0.941,1.36,0.674,1.215,0.754,1.149,1.337,1.101,0.786,0.931,1.597,0.888,0.662,1.734,0.781,1.083,0.636,0.76,1.45 +NM_145645,0.607,1.086,1.015,0.745,0.817,0.791,0.723,0.408,1.049,1.081,0.898,0.871,0.572,0.523,0.775,1.021,0.744,0.869,0.928,1.133,0.567,0.667,1.843,0.991,0.685,0.708,1.18,0.722,0.484,1.454,0.654,1.383,2.814,1.161,0.292,1.785,1.027,0.722,2.087,1.343,1.001,1.024,0.904,3.3,1.226,1.015,1.343,0.577,1.248,0.601,0.986,1.494,0.917,2.113 +NM_145647,0.885,1.18,1.166,0.974,1.026,0.944,0.862,0.682,1.113,0.773,1.06,0.823,0.798,0.767,0.797,1.053,0.966,0.872,0.963,1.041,0.836,0.93,1.292,0.902,0.761,0.797,1.418,0.827,0.739,1.135,0.776,1.372,2.118,1.031,0.604,1.334,1.059,0.989,1.096,1.556,1.049,0.944,0.857,1.229,0.974,1.312,0.998,0.744,1.19,0.85,1.161,1.12,0.912,1.561 +NM_145649,0.986,1.169,1.138,0.891,1.052,1.037,1.094,0.911,0.964,0.985,1.047,1.089,1.06,0.994,1.114,0.962,1.014,1.213,0.977,1.056,0.998,1.16,0.844,1.043,1.068,0.939,1.022,0.959,0.995,1.032,0.909,0.943,0.984,0.942,0.927,0.96,1.016,0.924,1.014,0.885,1.088,1.152,0.925,0.979,1.01,0.945,0.949,1.0,0.968,1.085,1.022,1.085,1.141,1.254 +NM_145650,1.543,0.924,2.293,1.004,1.891,0.784,0.669,1.02,2.452,1.982,0.693,1.101,1.161,1.331,1.156,1.005,1.416,1.437,2.145,0.73,1.305,1.311,0.696,1.626,0.879,1.369,1.761,1.881,0.672,0.852,1.71,0.736,1.076,0.916,0.918,0.794,0.904,1.564,0.844,0.838,1.964,0.874,0.945,0.742,1.987,0.946,1.482,1.359,0.865,1.55,0.882,0.991,1.438,0.898 +NM_145651,0.94,1.02,1.062,1.052,0.998,1.004,0.983,0.973,0.847,1.119,0.915,1.109,0.991,0.96,1.072,0.94,1.159,0.955,0.851,1.045,1.13,1.038,1.001,0.976,0.973,0.968,0.988,0.958,0.998,1.019,0.922,0.938,0.959,0.963,1.05,0.992,0.855,0.944,0.903,1.018,1.096,1.082,1.286,0.959,1.005,0.946,0.923,0.999,1.016,0.979,1.073,1.081,1.196,1.065 +NM_145652,1.242,0.812,1.332,1.087,1.261,0.833,0.827,1.05,1.056,1.068,0.877,1.098,1.105,1.114,0.888,1.094,1.102,1.15,1.28,0.829,1.154,1.068,0.851,1.262,0.892,1.136,2.069,0.943,0.794,0.935,1.058,0.849,1.217,0.919,0.923,0.888,0.944,1.065,0.876,0.859,1.263,0.808,0.817,0.827,1.409,0.78,1.478,1.179,0.797,1.702,1.173,1.188,1.466,1.002 +NM_145653,1.078,0.95,1.088,1.034,1.057,1.148,0.904,0.909,0.936,1.158,0.835,0.902,1.035,0.952,1.009,1.092,0.962,1.149,0.986,1.114,1.059,0.914,1.029,0.993,0.953,1.012,0.91,1.09,0.931,0.953,1.034,1.03,0.948,0.912,0.932,1.043,0.953,0.903,1.102,0.966,0.921,0.888,0.847,0.879,1.075,1.198,1.024,0.961,1.02,1.111,0.915,1.019,1.043,1.038 +NM_145654,1.001,1.019,0.957,0.905,1.012,0.999,0.935,0.923,0.931,1.061,0.959,1.036,0.826,0.956,0.964,1.019,1.01,0.828,1.162,0.935,1.06,0.87,1.117,0.964,0.913,0.953,0.964,0.98,1.007,0.959,0.91,1.165,1.092,0.971,0.918,0.988,1.097,1.131,0.988,1.017,0.94,0.977,1.012,1.163,0.815,0.987,1.074,0.924,1.136,0.903,1.104,1.09,1.022,0.978 +NM_145655,0.999,1.023,1.003,1.145,1.049,1.068,0.948,0.893,1.032,1.021,1.077,0.997,0.986,0.977,1.275,1.012,0.914,1.132,0.935,0.932,0.979,1.058,0.993,1.045,0.942,1.026,1.061,1.073,0.901,1.065,1.102,1.052,0.949,1.0,1.074,0.857,1.003,0.836,0.977,1.133,0.938,1.04,1.333,1.034,0.973,1.025,1.018,0.976,0.979,1.056,0.973,0.947,0.985,0.965 +NM_145656,1.008,1.025,0.91,0.9,0.982,0.837,0.984,1.011,1.132,0.801,1.033,1.089,0.993,0.945,0.966,0.946,1.049,0.939,1.038,0.964,0.903,0.968,0.968,1.016,1.116,1.122,0.979,0.99,0.768,1.02,1.045,0.903,0.966,1.189,0.937,1.082,0.978,1.045,0.965,1.185,0.91,1.053,0.894,0.933,1.044,0.976,0.907,1.069,1.06,0.981,1.07,1.004,1.127,0.938 +NM_145657,1.066,1.11,0.948,1.051,1.001,1.037,0.999,0.847,1.017,0.933,1.162,1.02,1.034,1.129,1.101,0.958,1.034,0.938,1.04,1.057,1.223,0.938,1.084,1.107,1.025,0.976,0.927,1.079,0.945,0.899,0.862,0.896,0.978,0.966,1.196,0.941,1.02,0.927,1.043,0.83,1.036,1.04,1.327,0.924,1.048,0.99,0.881,1.117,1.037,0.961,1.026,0.955,1.054,0.945 +NM_145658,1.06,1.011,0.82,1.139,1.132,1.288,1.019,0.958,0.854,1.316,1.195,1.108,0.865,1.052,1.578,0.943,1.167,0.997,0.938,1.048,1.057,1.088,0.927,1.003,1.343,1.121,0.926,0.944,1.408,0.993,0.936,0.848,1.15,1.004,1.168,1.206,1.0,0.861,1.029,0.818,0.999,1.165,1.033,0.911,0.935,0.969,1.04,1.018,1.049,1.086,1.0,0.963,0.914,1.082 +NM_145659,1.048,1.132,0.923,1.028,0.972,1.067,0.922,0.849,1.096,1.205,1.0,1.052,0.978,1.131,1.006,0.947,0.885,0.999,0.966,0.942,1.065,0.853,0.984,1.02,0.959,1.048,0.973,1.004,1.35,0.865,0.987,0.884,1.101,1.077,0.998,1.072,1.003,0.958,0.977,0.953,0.896,0.904,1.105,1.018,0.939,0.934,1.025,0.972,0.974,1.012,1.052,0.871,0.922,1.11 +NM_145661,0.965,0.919,0.956,1.02,0.957,0.969,1.042,0.987,1.03,0.996,1.0,1.058,0.996,1.046,0.923,1.021,0.916,0.956,1.001,1.052,0.948,0.926,0.944,1.01,0.927,1.165,1.056,0.973,0.59,0.919,1.0,1.041,1.003,0.951,0.98,0.932,1.054,0.966,0.944,1.042,0.997,0.905,1.012,1.05,0.983,1.003,1.056,0.989,0.918,1.011,1.078,0.976,0.843,1.082 +NM_145663,1.109,1.096,1.15,0.947,0.863,0.81,1.106,0.959,0.717,1.104,1.098,1.137,0.998,1.269,0.977,0.96,0.954,0.935,0.929,1.086,0.935,0.868,1.012,1.081,0.971,0.958,1.015,0.921,0.901,1.049,1.381,1.032,1.091,1.241,0.903,0.987,0.866,0.977,1.044,0.899,0.88,0.799,0.996,1.004,0.876,1.004,1.085,1.019,0.963,0.876,1.054,1.233,0.881,0.905 +NM_145664,0.97,1.094,0.878,1.261,0.849,0.899,1.499,1.372,1.373,0.827,1.095,1.032,0.869,1.047,1.041,1.131,0.999,1.378,0.978,0.877,0.866,0.783,1.11,1.049,1.167,0.892,0.953,0.859,1.194,0.972,0.858,0.92,1.022,1.172,1.136,0.849,1.019,1.075,1.202,1.073,0.998,0.856,0.89,0.97,1.148,0.935,0.944,0.919,1.043,0.901,1.009,0.986,1.365,1.213 +NM_145665,0.897,1.026,1.039,0.916,0.943,0.999,0.926,1.027,1.121,0.927,1.023,0.966,0.972,1.024,1.172,0.844,0.961,0.96,0.916,0.904,1.016,0.986,1.033,0.956,0.94,1.085,1.05,1.055,0.958,0.949,0.919,1.059,1.0,1.039,1.048,1.067,0.991,0.943,1.034,0.867,0.981,0.977,1.087,0.987,0.953,1.088,0.969,0.979,0.994,1.16,1.036,1.085,1.102,1.046 +NM_145686,1.077,0.968,1.054,0.907,1.014,1.015,1.001,1.205,1.039,0.88,0.984,0.992,0.999,1.037,0.877,0.979,1.018,1.0,0.888,1.089,1.198,0.945,1.141,1.096,1.096,1.009,0.728,1.14,0.705,0.974,0.926,1.025,0.977,1.074,0.9,0.964,1.045,0.958,1.066,1.078,0.883,1.045,0.834,0.792,0.981,0.878,1.01,1.076,1.099,0.945,0.991,1.026,0.975,1.091 +NM_145689,1.918,2.208,2.174,1.9869999999999999,1.971,2.0,1.936,2.1799999999999997,2.097,1.775,1.8690000000000002,1.877,2.04,1.8299999999999998,2.043,1.8570000000000002,1.942,2.473,2.149,1.835,2.264,2.239,2.317,2.177,1.98,1.839,1.739,1.865,1.853,2.0149999999999997,2.039,2.349,1.9260000000000002,2.1470000000000002,2.001,1.71,1.9009999999999998,2.072,1.827,2.178,2.023,2.1159999999999997,1.839,1.885,1.785,1.729,2.052,1.849,1.871,1.953,1.888,1.956,2.1719999999999997,2.121 +NM_145691,0.787,0.952,0.989,1.023,1.099,1.136,0.804,0.73,1.099,1.135,0.85,0.921,0.913,0.921,1.059,1.426,0.936,1.005,1.29,1.116,0.782,0.8,1.13,0.957,0.917,1.122,0.955,0.795,0.752,1.262,0.939,1.051,1.233,1.405,0.698,0.92,0.953,0.877,1.056,0.721,0.995,1.133,0.839,1.223,0.879,0.962,0.941,1.024,0.872,0.907,0.984,0.732,1.202,1.163 +NM_145693,1.873,0.468,1.542,1.29,2.947,0.611,0.434,2.705,6.103,0.904,0.584,1.243,1.217,2.324,2.662,1.187,2.189,1.252,1.738,0.63,0.982,1.855,1.639,1.296,0.443,1.942,1.89,3.567,0.173,0.772,4.425,0.927,1.792,0.598,5.45,0.522,0.857,1.841,0.818,0.721,2.012,0.728,0.773,0.532,1.417,0.907,1.471,2.518,0.777,1.93,1.413,0.549,0.979,1.037 +NM_145695,1.097,0.882,0.894,1.003,0.918,1.038,0.86,0.911,0.933,1.049,1.007,1.033,1.006,1.017,0.805,1.063,1.015,1.014,0.892,1.13,1.067,0.997,0.94,0.946,0.981,0.86,1.046,1.025,0.836,0.914,1.186,1.222,1.078,0.999,1.113,1.055,0.991,0.859,1.147,0.858,1.003,1.107,0.819,0.859,1.084,0.945,0.936,0.99,0.959,1.116,0.982,0.948,1.08,0.842 +NM_145696,1.8399999999999999,2.6,2.176,1.7189999999999999,2.049,1.8820000000000001,1.8849999999999998,1.527,2.0949999999999998,2.089,1.755,1.846,1.6589999999999998,1.972,1.6640000000000001,1.805,1.989,1.8639999999999999,1.935,2.163,1.637,1.986,2.476,1.833,1.683,1.8940000000000001,2.4109999999999996,1.919,1.5270000000000001,2.499,1.728,3.348,2.105,2.3120000000000003,1.432,1.8619999999999999,1.9709999999999999,1.772,2.048,2.0,2.084,2.246,2.107,2.229,1.925,2.3810000000000002,2.137,1.704,2.042,1.729,2.0949999999999998,1.9020000000000001,1.709,1.924 +NM_145697,0.949,0.958,0.943,0.995,0.982,0.835,0.924,0.964,1.043,0.925,1.092,1.14,0.991,1.128,0.825,1.015,1.002,1.054,1.013,0.95,0.992,0.978,1.074,1.022,0.975,1.11,0.928,1.022,0.943,0.968,0.921,1.104,1.187,0.978,1.166,1.227,1.045,0.916,0.994,1.019,1.018,0.997,0.979,1.055,0.859,1.058,1.041,0.918,1.065,1.021,0.881,0.986,1.006,1.047 +NM_145698,0.997,0.981,0.934,0.939,1.059,1.114,0.968,1.001,0.836,0.908,1.01,0.94,0.854,1.039,1.058,0.883,1.047,1.004,1.097,0.949,0.898,0.937,0.971,1.005,0.932,0.939,1.111,0.816,1.478,1.019,1.01,0.93,1.146,1.145,0.97,0.868,0.998,0.932,1.022,0.957,1.012,0.984,1.103,1.035,0.878,1.143,1.101,0.893,1.126,0.959,0.999,0.872,1.007,0.996 +NM_145701,0.962,0.692,1.458,0.798,1.148,0.711,0.598,0.76,1.547,1.216,0.673,1.445,1.075,1.253,0.988,0.964,1.183,1.031,1.645,0.582,0.96,1.562,0.869,1.879,0.516,1.07,2.444,1.116,0.479,0.728,1.315,1.444,1.674,0.738,0.718,0.803,0.598,1.308,0.959,1.089,1.587,0.582,0.683,1.247,1.282,0.59,1.226,1.19,0.628,1.153,0.689,0.926,1.219,1.36 +NM_145715,0.785,1.135,1.098,1.021,0.863,1.221,0.769,0.703,0.897,0.844,1.041,0.753,0.953,0.928,1.015,1.041,0.879,0.889,1.214,1.02,0.802,0.895,1.208,0.951,0.907,0.812,1.069,0.871,0.697,1.13,0.877,1.086,1.639,1.133,0.836,0.877,1.23,0.911,1.008,0.906,0.972,1.103,0.774,1.096,0.862,1.06,1.069,0.792,0.88,0.965,1.092,0.836,1.162,1.063 +NM_145716,0.93,1.104,1.11,0.719,0.873,1.302,1.134,0.83,0.901,0.807,1.204,1.036,0.888,0.767,1.156,1.479,0.753,1.137,1.098,0.998,0.464,0.995,1.223,0.86,1.72,0.911,0.918,0.981,1.19,1.321,1.009,1.06,1.657,1.94,0.68,0.605,1.325,1.141,1.33,1.004,0.786,1.427,0.83,0.745,0.862,0.725,0.724,0.856,0.811,0.944,1.362,0.767,0.636,0.633 +NM_145718,0.701,0.958,1.211,0.567,1.415,0.909,0.633,0.503,1.518,1.236,0.603,1.038,0.588,0.677,0.911,0.804,0.913,0.872,1.093,1.096,0.425,0.988,1.184,1.252,0.474,0.68,1.697,1.566,0.57,1.134,1.006,1.413,1.41,0.967,0.511,2.762,0.68,1.038,1.339,1.691,1.232,0.89,0.527,1.077,0.947,0.78,1.374,1.044,0.883,0.786,0.97,1.239,0.708,2.502 +NM_145719,0.997,1.031,0.865,1.016,1.0,0.952,1.047,1.093,1.136,1.161,0.989,0.95,1.007,1.203,0.884,1.047,1.035,0.958,0.952,0.939,1.038,0.975,0.901,1.066,0.93,1.139,1.019,0.98,0.966,1.038,0.996,0.957,1.038,1.069,0.923,0.972,0.982,1.069,1.167,0.942,1.122,0.931,1.03,1.019,1.025,1.007,0.995,1.088,0.997,1.143,1.022,0.915,0.988,1.041 +NM_145720,1.027,0.99,0.945,1.071,0.967,0.952,1.101,1.219,0.986,0.991,1.034,0.92,0.912,0.963,0.989,1.028,1.08,0.934,1.167,1.068,1.057,1.004,0.962,1.039,1.117,0.908,1.1,0.925,1.168,0.995,0.939,0.977,0.989,0.935,1.086,1.142,1.034,0.921,1.036,0.921,0.984,1.014,1.043,1.025,0.998,1.065,0.977,1.077,0.957,1.027,1.023,1.047,1.079,0.87 +NM_145727,0.928,1.098,1.034,1.041,0.923,0.975,1.158,1.045,1.062,1.028,0.88,1.078,1.136,0.837,0.806,1.154,1.114,1.027,1.241,0.835,0.961,0.977,1.043,0.88,0.935,0.981,0.946,1.132,0.978,0.994,1.075,0.92,1.218,0.872,0.967,1.005,0.826,0.956,1.024,0.959,0.98,1.013,0.934,1.077,1.119,0.847,0.91,1.172,0.9,0.996,1.103,1.016,1.076,1.176 +NM_145728,1.085,0.947,1.004,1.006,1.141,0.868,1.007,0.923,0.97,1.088,0.982,0.937,1.082,1.011,0.913,0.99,0.937,1.092,0.973,1.011,0.963,0.983,0.981,1.042,1.022,1.18,0.935,1.032,1.403,1.012,0.949,0.914,1.017,1.039,1.134,0.96,1.018,1.027,1.085,0.975,1.039,0.879,1.083,1.116,1.163,0.924,0.966,1.004,0.979,1.021,1.0,0.995,1.0,0.944 +NM_145730,0.917,0.798,1.152,0.784,0.748,1.152,0.654,0.508,1.268,1.181,0.909,0.923,0.593,0.737,0.998,1.552,1.02,1.176,1.282,0.818,0.521,0.962,1.153,1.145,0.739,0.908,1.272,0.847,0.512,1.199,0.914,0.82,0.893,1.031,0.363,0.544,1.272,0.933,1.4,0.722,1.068,1.002,0.691,0.766,1.155,1.034,0.87,0.914,1.412,1.06,1.287,0.831,1.061,1.012 +NM_145734,0.982,1.06,0.925,1.008,1.072,0.845,0.745,0.885,0.96,1.26,1.161,0.959,1.026,0.83,0.997,0.894,1.106,1.037,0.712,0.893,0.705,1.098,0.983,0.827,0.933,0.962,1.152,1.077,0.956,1.003,1.028,1.229,1.309,0.979,0.987,0.956,0.87,1.186,1.239,1.01,1.003,0.94,1.27,0.975,1.153,0.94,1.119,1.044,0.979,1.085,0.959,0.955,0.816,1.107 +NM_145735,1.018,0.906,1.094,0.934,0.933,0.972,1.053,1.013,0.989,0.99,1.14,1.092,0.997,0.877,1.16,0.983,1.043,0.926,0.881,0.919,1.077,1.038,0.993,0.925,1.005,0.921,1.055,0.995,0.991,0.936,1.089,1.066,1.029,1.256,0.874,1.023,1.017,1.01,0.985,0.93,1.063,0.886,1.375,0.874,0.971,1.106,0.963,0.897,1.094,1.005,0.982,0.99,1.039,1.182 +NM_145738,2.55,1.6749999999999998,2.7800000000000002,2.118,2.973,1.781,1.5619999999999998,2.9059999999999997,3.037,2.783,1.627,2.5839999999999996,2.866,2.238,2.5629999999999997,2.052,2.847,2.659,4.141,1.83,2.566,3.08,1.547,3.638,1.77,3.051,2.787,2.528,1.7000000000000002,1.686,2.758,1.751,2.0229999999999997,1.957,2.38,1.7670000000000001,1.876,3.367,1.766,1.735,2.715,1.783,1.883,1.518,2.844,1.697,2.4379999999999997,3.0549999999999997,1.51,3.298,1.8490000000000002,1.7169999999999999,2.644,2.142 +NM_145739,2.202,1.9660000000000002,2.233,1.798,2.2969999999999997,1.963,2.0570000000000004,1.754,2.05,2.3179999999999996,1.842,2.2039999999999997,2.145,2.114,1.762,1.893,2.17,2.3689999999999998,2.24,1.8809999999999998,2.115,2.046,1.912,2.424,1.991,2.129,2.465,2.091,1.908,2.181,2.1270000000000002,2.3449999999999998,2.309,2.049,1.908,1.9089999999999998,2.0300000000000002,2.457,2.036,1.705,2.045,1.988,1.968,1.726,2.313,1.896,2.102,1.8679999999999999,1.844,2.544,1.958,2.073,2.471,1.791 +NM_145740,0.593,12.37,0.392,3.718,0.461,1.45,0.565,0.54,0.667,0.464,3.821,0.494,0.438,0.555,1.418,16.59,0.42,2.871,0.73,1.338,0.385,0.99,1.942,0.654,7.545,0.507,0.531,0.487,4.673,1.921,0.438,1.079,0.641,14.71,0.465,0.505,10.2,0.549,3.26,0.431,0.452,7.264,4.657,0.548,0.466,1.836,3.653,0.931,0.494,0.48,2.426,0.432,0.459,0.44 +NM_145748,1.9609999999999999,2.152,2.019,1.922,1.892,2.07,1.8860000000000001,1.724,1.883,1.92,1.885,1.775,1.869,1.94,2.0540000000000003,1.9769999999999999,2.2359999999999998,2.178,1.862,1.9689999999999999,2.0300000000000002,2.0090000000000003,1.916,1.9700000000000002,2.164,1.9609999999999999,1.804,1.768,2.161,2.143,1.919,2.1790000000000003,2.2489999999999997,2.2359999999999998,1.992,1.8599999999999999,2.0140000000000002,1.979,2.4059999999999997,1.97,1.8010000000000002,1.9889999999999999,2.374,2.239,1.947,1.8159999999999998,2.1260000000000003,1.986,1.947,1.9929999999999999,1.961,1.9060000000000001,2.0300000000000002,2.026 +NM_145751,0.638,0.934,0.836,1.032,0.717,1.469,0.84,0.613,0.726,0.536,1.252,0.578,0.877,0.64,0.883,1.556,1.096,1.009,0.862,0.866,0.682,0.733,1.083,0.558,0.788,0.872,0.831,0.736,0.979,1.132,0.847,1.469,1.057,1.307,1.728,0.914,1.145,0.819,2.039,1.021,0.7,1.024,0.999,2.573,0.575,1.01,1.245,1.085,0.938,0.782,0.905,1.029,0.804,1.08 +NM_145752,0.902,0.919,1.033,1.024,0.938,1.183,1.112,1.003,1.054,0.978,0.934,1.036,0.876,0.797,1.011,1.032,1.007,1.034,0.864,1.078,0.941,0.869,1.034,0.919,1.012,0.854,1.096,1.176,0.868,0.891,0.971,0.971,1.065,1.114,0.803,0.922,0.984,1.058,1.173,1.027,0.922,0.897,1.127,0.979,0.97,0.842,0.914,1.038,1.067,1.005,1.119,1.103,0.84,1.063 +NM_145753,1.035,1.067,1.035,0.863,0.897,1.045,0.954,0.896,0.807,1.104,1.015,0.86,0.995,0.868,0.827,0.991,0.904,1.091,0.944,0.981,0.91,0.947,1.2,0.876,1.211,0.847,1.358,0.919,1.029,1.257,0.894,1.324,1.998,1.337,1.0,0.948,0.978,0.961,1.161,1.091,0.925,1.086,0.808,0.973,0.856,1.253,0.943,0.978,0.784,0.976,1.368,0.947,1.225,1.116 +NM_145754,1.284,0.822,0.966,0.929,0.855,0.963,0.529,0.949,1.471,1.024,0.866,1.279,0.965,0.959,1.164,1.162,0.918,0.725,1.51,1.125,0.941,1.239,1.001,1.704,0.801,1.315,1.113,0.94,0.582,1.09,1.089,1.656,1.297,1.084,0.761,1.084,0.899,1.017,1.1,2.218,0.915,0.98,0.722,1.107,0.969,0.934,0.987,1.079,0.89,1.018,0.761,0.82,1.223,1.324 +NM_145755,1.021,0.97,0.889,1.025,0.974,0.941,0.852,1.11,1.073,0.981,0.97,1.157,1.127,0.881,1.039,1.0,1.049,1.069,0.891,0.953,1.049,1.016,1.014,0.926,1.011,1.004,1.163,1.064,0.888,0.934,1.029,1.022,0.909,0.931,1.215,1.1,0.941,0.965,0.989,1.11,1.0,0.903,1.165,0.868,0.846,1.106,0.888,1.202,0.891,1.026,1.037,0.907,0.945,0.933 +NM_145756,1.049,1.096,1.059,1.03,1.06,1.031,0.979,0.996,1.063,1.045,1.101,0.956,1.015,1.177,0.854,1.052,1.014,1.029,1.042,0.91,1.001,0.885,0.906,0.891,0.932,0.91,1.062,0.95,0.79,1.015,1.016,1.142,1.038,0.955,0.858,0.87,1.106,1.032,1.0,0.992,0.937,0.995,0.891,1.046,0.921,0.945,1.068,1.04,0.804,0.942,1.06,1.029,0.897,1.044 +NM_145759,1.548,2.134,1.846,2.105,1.676,2.376,1.823,1.483,1.928,1.5979999999999999,1.979,1.6680000000000001,1.6,1.599,1.8900000000000001,2.261,1.7389999999999999,1.986,1.72,2.013,1.7109999999999999,1.491,2.408,1.7610000000000001,2.064,1.7189999999999999,2.186,1.849,1.8299999999999998,2.6479999999999997,1.664,2.947,4.755,2.507,1.633,2.633,2.149,1.744,2.266,2.6109999999999998,1.802,2.287,1.8439999999999999,2.19,1.972,1.799,1.972,1.643,1.897,1.553,2.133,1.635,1.859,3.3129999999999997 +NM_145791,1.0,0.903,1.02,1.09,1.063,0.919,0.972,1.0,1.058,1.19,1.034,1.073,0.936,1.088,1.155,1.042,0.819,0.966,1.067,0.949,0.923,1.02,0.933,0.953,0.871,0.973,1.08,1.075,0.914,0.886,0.965,0.909,1.196,1.134,0.93,1.024,0.9,0.917,1.002,0.889,0.88,0.979,1.318,1.122,1.128,0.956,0.946,1.013,0.843,0.938,1.071,1.027,0.966,0.945 +NM_145792,1.118,0.835,1.315,0.912,1.131,1.088,0.621,0.374,1.006,1.27,1.368,0.408,0.741,0.929,1.172,1.697,0.666,1.388,1.973,0.889,0.343,0.847,1.385,1.448,0.633,1.269,1.354,1.401,0.328,1.066,1.704,0.507,2.044,1.171,0.404,1.305,1.153,0.425,1.46,0.51,0.51,0.629,0.49,1.145,0.517,0.819,1.238,0.627,1.231,0.96,1.114,0.782,1.264,0.964 +NM_145793,0.958,1.167,0.913,1.212,0.951,0.927,1.144,1.071,1.061,1.008,0.98,1.005,0.823,0.978,0.954,0.803,0.998,0.968,0.908,1.156,0.862,0.859,0.994,1.002,1.082,1.045,0.929,0.926,0.91,1.14,0.992,0.893,1.162,1.155,0.959,0.848,1.033,0.896,0.993,1.015,0.819,1.755,1.19,1.142,0.995,0.877,1.053,0.944,0.884,0.9,0.992,1.071,1.059,0.961 +NM_145795,0.881,0.983,1.07,0.921,1.031,1.07,0.791,0.829,1.13,1.011,0.969,0.862,0.842,0.724,0.838,1.327,0.97,1.0,1.216,0.989,0.836,0.801,1.044,1.225,0.714,0.772,1.456,0.875,0.671,1.015,0.939,1.292,2.641,1.111,0.715,1.03,0.955,0.899,1.563,1.06,1.163,0.927,0.9,1.336,1.05,0.986,0.882,0.782,0.869,0.921,1.034,0.926,1.197,1.262 +NM_145796,0.686,1.22,1.344,0.686,0.838,1.006,0.633,0.456,0.91,0.705,0.862,0.765,0.476,0.691,0.89,0.877,0.747,0.853,0.739,1.408,0.548,0.836,1.329,0.871,0.839,0.74,1.235,0.764,0.524,1.207,0.817,2.178,1.46,1.252,0.327,1.349,1.124,0.753,1.403,1.962,0.916,1.25,0.834,1.279,0.97,0.917,0.951,0.701,0.881,0.765,1.143,0.833,0.752,1.847 +NM_145798,1.161,1.157,0.915,0.962,0.92,1.196,1.057,0.919,0.977,0.937,1.239,0.96,1.058,0.996,0.939,1.066,0.949,1.071,1.082,1.087,1.21,1.026,1.002,1.025,0.999,0.964,0.904,0.849,1.045,1.215,0.975,1.069,0.833,1.126,0.991,0.945,1.117,1.039,1.287,0.913,1.021,1.04,0.937,0.996,0.98,0.921,0.949,0.977,0.961,0.896,1.019,0.923,0.863,0.941 +NM_145799,0.93,0.998,1.014,0.87,0.955,0.909,0.828,1.035,1.08,0.948,0.923,0.892,0.941,0.972,0.775,1.026,0.91,0.993,0.927,1.017,0.979,0.968,0.873,0.999,1.223,0.964,1.187,0.878,0.706,1.06,0.9,1.095,1.08,1.084,0.923,0.974,1.042,1.03,1.096,1.125,0.908,1.011,0.851,1.002,1.026,0.869,1.067,0.888,0.925,0.937,0.969,0.992,1.111,1.023 +NM_145802,0.95,0.837,1.041,0.972,0.937,1.076,0.845,0.976,0.898,1.011,0.94,0.972,0.847,0.903,0.833,0.976,0.979,0.981,0.863,0.919,1.105,0.973,0.851,1.035,1.009,0.777,1.017,0.935,0.838,0.938,1.0,1.32,1.106,0.919,0.824,0.8,1.012,1.002,1.084,1.045,1.141,1.139,0.841,0.876,0.841,0.856,1.104,0.958,1.116,0.76,1.07,0.883,0.937,1.087 +NM_145803,0.892,0.988,1.033,0.861,0.966,0.974,1.177,0.984,0.988,0.893,0.794,0.973,1.069,0.838,1.016,1.01,1.07,1.052,0.955,1.001,0.822,0.919,0.977,0.992,0.915,0.989,0.917,1.012,0.864,1.081,1.028,0.856,0.93,1.048,1.205,1.147,1.146,1.033,1.123,1.062,1.035,1.036,0.924,1.06,1.181,0.931,1.047,1.136,1.321,1.075,1.093,1.0,1.005,0.893 +NM_145804,1.939,0.693,0.887,0.712,1.959,0.874,0.591,1.144,1.767,0.741,0.795,0.783,1.243,0.722,1.458,1.333,1.818,0.814,1.257,0.888,0.709,1.241,0.991,0.734,0.666,2.311,0.888,1.073,0.472,0.818,2.121,0.945,1.647,0.93,4.443,1.142,0.941,2.109,1.67,1.138,1.327,0.795,0.744,1.585,0.989,0.996,1.169,1.615,1.102,0.897,1.048,1.01,1.076,1.901 +NM_145805,1.082,1.057,1.021,0.977,0.926,1.063,1.149,0.995,1.015,1.03,0.885,0.93,0.919,0.765,0.975,0.968,1.132,1.038,0.937,0.962,0.875,0.992,1.128,1.006,0.928,0.992,0.925,0.844,0.906,1.058,0.97,1.225,1.041,1.062,0.977,1.057,0.98,0.944,1.171,1.016,0.934,1.047,0.941,1.009,1.135,0.899,1.07,0.94,1.081,0.993,1.054,0.937,0.947,1.216 +NM_145806,0.794,1.013,0.91,0.918,0.731,1.368,0.62,0.615,0.74,0.781,1.798,1.01,1.003,0.574,0.818,2.191,0.605,0.87,0.934,1.29,0.543,0.781,1.925,0.963,0.764,0.88,0.837,0.708,0.466,1.119,0.743,1.405,2.596,1.255,0.35,2.351,1.229,0.76,2.036,0.92,0.81,1.436,0.963,1.043,1.0,1.008,1.13,0.793,1.085,0.878,1.321,1.156,0.889,1.473 +NM_145808,0.864,0.665,2.103,0.523,1.823,1.181,0.645,1.35,2.066,1.765,0.684,1.448,1.031,0.836,1.611,2.476,1.152,1.357,0.921,0.898,0.407,1.148,1.127,2.885,0.378,0.485,1.783,1.607,0.43,1.367,2.558,0.915,2.32,1.041,0.663,0.316,0.759,1.736,1.065,0.722,1.981,0.806,0.662,0.403,1.639,0.906,1.814,1.021,1.211,1.243,1.11,0.793,0.598,1.267 +NM_145809,1.105,1.051,0.963,1.037,0.89,1.026,0.917,0.939,1.09,0.821,1.123,0.974,1.009,0.924,1.264,0.986,1.091,0.954,1.214,0.918,1.093,0.982,0.944,0.935,1.015,0.907,1.098,0.97,1.332,0.971,0.994,1.129,1.039,1.035,1.084,0.983,1.153,1.05,1.155,1.173,0.988,1.018,0.82,1.073,0.959,0.989,1.027,1.135,1.009,1.091,1.035,1.135,1.101,0.941 +NM_145810,0.686,1.499,0.997,0.922,0.765,1.296,0.655,0.466,0.988,0.921,1.292,0.978,0.68,0.696,1.12,2.046,0.649,0.821,0.821,1.681,0.547,0.613,3.193,0.802,0.546,0.648,1.292,0.725,0.387,0.949,0.654,2.105,2.284,1.252,0.368,1.267,1.515,0.597,1.189,1.536,0.936,1.491,1.268,2.16,0.862,1.273,1.077,0.606,1.8,0.656,1.769,0.961,0.764,4.018 +NM_145811,1.726,2.0140000000000002,1.9509999999999998,1.959,2.0389999999999997,1.8490000000000002,1.783,2.123,1.881,1.994,2.157,2.152,1.8519999999999999,1.626,1.729,2.104,2.028,2.217,1.8010000000000002,1.875,1.9949999999999999,1.991,1.904,2.207,1.9820000000000002,1.934,1.9889999999999999,1.881,2.4939999999999998,1.968,2.0149999999999997,1.964,2.054,1.875,2.109,2.115,2.1710000000000003,2.083,2.227,2.014,2.052,2.178,2.622,2.001,1.88,1.847,1.966,2.269,1.91,2.457,2.127,1.779,2.024,1.954 +NM_145812,0.995,1.007,0.824,1.089,0.873,0.998,1.069,1.134,1.01,1.062,1.086,0.954,0.941,0.966,1.201,0.941,1.088,1.097,1.017,0.891,0.969,0.945,1.069,0.984,1.013,0.861,0.992,1.004,1.048,0.972,1.075,0.903,1.003,1.128,1.171,1.009,0.932,1.106,0.982,0.914,0.888,0.873,1.022,1.031,0.851,1.107,0.973,1.042,1.032,1.11,1.002,0.983,0.96,0.883 +NM_145813,0.636,1.141,0.956,0.889,0.88,1.421,1.125,0.633,0.934,0.927,0.989,0.715,0.664,0.713,1.029,2.143,0.901,1.038,0.788,1.197,0.504,0.786,1.543,0.849,1.031,0.743,1.118,0.732,0.76,1.417,0.772,1.344,1.998,1.393,0.461,0.821,1.436,0.873,1.862,0.801,0.851,1.294,1.128,1.388,0.849,1.371,1.122,0.766,1.564,0.796,1.345,0.979,0.683,1.399 +NM_145814,1.082,0.916,0.926,0.822,0.827,1.0,0.869,0.91,0.925,1.1,0.948,0.885,0.998,1.114,1.079,0.966,1.026,0.969,1.001,1.052,1.128,0.978,0.94,1.021,0.956,0.992,0.895,0.897,0.924,1.039,1.077,0.945,1.004,0.962,0.902,0.919,1.026,1.028,0.992,1.006,0.977,0.954,0.844,1.048,1.003,0.955,0.932,1.001,1.012,0.946,0.958,1.016,1.11,0.903 +NM_145818,1.022,0.993,0.898,1.06,1.052,0.941,0.839,1.31,1.111,1.099,0.841,0.968,0.934,0.989,1.142,0.98,0.989,1.169,1.062,1.371,0.977,1.037,0.997,1.03,0.92,1.142,1.328,1.101,0.911,1.126,1.005,0.932,1.039,1.041,0.894,0.874,1.105,1.019,0.968,0.888,0.919,0.988,1.014,0.886,1.229,1.112,1.101,1.031,1.111,0.926,0.997,0.9,0.923,0.942 +NM_145858,1.061,0.991,1.037,0.917,0.968,0.873,1.146,1.082,0.958,0.95,1.098,1.063,1.04,0.97,1.246,1.236,0.927,0.971,0.798,0.936,0.887,0.903,1.019,1.032,1.003,1.033,0.953,1.121,1.015,0.921,0.951,1.025,0.937,0.984,0.992,0.908,0.939,0.982,0.96,1.039,0.988,1.086,0.84,0.942,1.002,0.999,0.951,0.955,1.043,0.975,1.092,0.933,1.026,0.968 +NM_145859,0.951,0.922,0.931,0.844,1.064,1.197,0.996,0.955,1.362,1.182,1.008,0.918,0.918,1.036,0.962,1.74,0.928,1.161,0.809,0.991,0.705,0.926,0.99,1.057,0.795,0.738,1.126,0.894,0.816,1.139,1.143,1.044,1.316,1.023,0.854,0.785,1.288,0.957,1.084,0.802,1.027,0.92,0.97,0.892,0.998,1.272,1.2,0.801,1.422,0.9,1.069,0.832,0.877,1.871 +NM_145860,0.629,0.907,1.012,0.763,1.0,1.112,0.561,0.675,1.387,0.932,1.088,0.589,0.654,0.724,1.062,1.964,0.799,1.069,1.171,0.887,0.656,0.706,0.973,0.939,0.586,0.733,1.181,1.0,0.613,1.081,1.301,1.044,1.792,0.978,0.765,1.031,1.147,0.83,1.161,0.59,1.226,0.795,0.678,1.155,0.823,1.336,1.197,0.76,1.264,0.742,1.017,0.756,0.95,2.465 +NM_145861,2.224,2.0,2.656,1.9170000000000003,2.092,1.884,1.694,2.1189999999999998,2.157,2.008,1.7149999999999999,2.131,1.974,1.996,1.885,1.916,2.229,2.2,1.983,1.956,1.859,2.2910000000000004,1.885,2.406,2.193,2.007,3.137,2.039,1.51,1.954,2.149,2.175,1.984,1.8719999999999999,1.907,1.8479999999999999,1.767,2.26,1.881,2.476,2.356,1.9860000000000002,1.782,1.797,2.402,1.8769999999999998,1.922,1.9529999999999998,1.737,2.065,1.9819999999999998,1.733,2.2030000000000003,2.162 +NM_145862,0.937,1.082,1.016,0.923,0.817,0.952,0.81,0.774,1.04,0.997,0.882,0.763,0.788,0.756,1.007,1.049,1.012,0.85,1.123,0.857,0.895,0.785,1.026,1.099,0.885,0.927,1.171,0.832,0.685,0.989,0.981,1.091,1.334,1.057,0.687,0.958,1.11,0.946,1.146,1.116,1.05,1.086,0.788,1.003,1.058,1.019,1.004,0.739,1.029,0.966,1.141,0.852,0.992,1.311 +NM_145863,1.146,1.101,1.169,0.878,0.978,0.958,0.762,0.727,1.375,0.776,0.78,0.831,0.802,0.847,1.218,0.898,0.885,1.003,1.13,0.965,0.701,0.824,0.955,1.093,0.802,1.051,1.418,0.946,0.501,1.139,0.919,1.485,1.731,1.262,0.738,0.983,0.916,0.919,1.154,1.228,0.874,1.037,0.695,1.136,0.978,0.907,1.034,0.751,0.779,0.795,0.988,0.891,1.023,1.326 +NM_145864,2.006,2.0309999999999997,2.262,1.834,2.0300000000000002,1.968,2.109,2.266,1.8940000000000001,1.918,2.018,2.1559999999999997,2.098,2.085,1.959,1.909,1.778,1.74,2.081,2.0629999999999997,1.968,1.9140000000000001,2.1020000000000003,1.8780000000000001,1.9769999999999999,1.952,2.05,1.9859999999999998,2.194,1.857,1.9729999999999999,2.114,2.0140000000000002,2.085,2.0460000000000003,1.853,2.066,2.09,2.004,1.91,2.07,1.8980000000000001,1.9580000000000002,2.108,2.209,2.173,1.958,1.9609999999999999,2.123,1.9660000000000002,1.886,2.191,1.87,1.8820000000000001 +NM_145867,0.889,1.577,1.089,0.886,0.82,0.997,1.028,0.711,1.431,0.904,0.855,1.254,1.175,0.77,1.178,0.718,0.754,0.967,0.863,1.069,0.738,0.919,0.97,1.259,0.921,1.035,1.07,1.101,0.576,1.579,0.906,1.579,0.859,1.676,0.602,0.593,0.834,1.546,1.318,0.787,1.365,1.744,0.766,0.673,1.028,1.236,0.742,0.962,0.662,0.734,1.029,0.93,0.893,0.929 +NM_145871,0.856,1.02,1.009,0.689,1.15,0.943,0.633,0.783,0.821,1.002,0.891,1.215,0.93,0.966,0.954,1.319,0.875,1.02,1.165,1.131,0.791,0.819,0.94,1.091,1.003,1.093,1.053,0.998,0.781,0.981,0.854,0.816,0.753,1.154,0.571,0.786,1.048,1.006,1.245,0.925,0.997,1.042,0.868,0.991,0.957,1.079,0.846,1.186,1.005,0.871,1.107,0.671,0.887,0.895 +NM_145872,1.085,1.073,1.081,0.96,0.995,1.072,0.819,0.964,1.125,0.856,0.985,0.982,1.054,1.274,1.124,1.102,0.952,1.105,0.975,1.148,1.0,1.007,0.908,1.031,1.092,1.068,0.96,1.163,1.251,0.874,1.125,0.965,1.107,0.968,0.939,1.0,1.163,0.989,1.174,0.929,1.01,1.055,0.953,0.875,0.925,0.936,0.95,1.08,0.854,0.896,0.84,1.638,1.141,1.092 +NM_145887,0.776,1.023,1.097,0.945,0.938,1.146,0.832,0.743,1.183,1.002,0.837,0.895,0.812,0.823,1.121,1.036,1.124,1.049,1.025,0.967,0.739,0.911,1.394,1.112,0.824,0.808,1.448,0.805,0.693,1.301,1.025,1.209,1.203,1.0,0.752,1.641,0.978,0.887,0.936,1.0,1.087,0.904,0.932,1.369,1.026,0.985,1.108,0.881,1.009,0.878,0.888,0.804,0.84,1.766 +NM_145888,0.857,0.424,2.11,0.708,2.264,0.42,0.192,2.981,2.607,2.296,0.217,2.103,2.146,0.993,1.022,1.821,2.156,2.45,5.92,0.295,1.782,2.651,0.243,3.482,0.21,2.663,2.23,0.861,0.255,0.323,1.667,0.798,3.281,0.254,4.471,0.692,0.22,3.694,1.401,0.228,3.872,0.222,0.206,1.143,2.659,0.307,3.638,4.39,0.336,5.039,0.609,2.353,2.132,0.957 +NM_145895,5.701,0.154,0.666,2.251,1.575,0.194,0.112,11.29,10.46,9.852,0.281,5.451,7.1,4.596,3.404,5.561,0.378,9.591,21.59,0.282,1.767,11.11,0.261,12.33,0.12,8.569,8.451,4.527,0.142,0.129,3.948,0.107,0.928,0.131,4.797,0.38,0.238,10.07,0.142,0.116,9.824,0.655,0.493,0.242,5.584,0.872,5.484,1.816,0.943,5.851,2.814,3.89,5.607,1.057 +NM_145897,0.646,1.007,1.296,0.568,1.098,1.153,0.689,0.897,1.118,1.007,0.639,1.213,0.986,0.447,0.792,1.535,0.926,1.108,1.218,1.099,0.469,1.039,1.123,1.203,0.6,0.873,1.041,1.08,0.389,1.147,1.072,1.456,1.132,1.32,0.504,0.78,1.085,1.421,1.245,0.741,1.158,1.273,0.462,0.924,1.089,0.703,1.065,1.307,0.817,0.796,0.881,0.764,0.675,1.541 +NM_145898,1.0,1.112,1.078,0.925,0.94,0.918,0.945,0.915,0.92,0.982,1.118,0.984,1.003,0.922,0.936,1.062,0.956,0.944,0.869,0.928,0.895,0.928,1.093,1.045,1.024,0.992,1.048,0.949,1.081,1.086,1.0,1.026,1.075,1.003,0.85,0.973,0.954,1.001,1.2,1.081,0.977,1.218,0.861,0.924,0.974,1.009,0.921,0.909,1.137,0.891,1.111,0.978,1.062,1.042 +NM_145903,1.745,0.704,0.907,1.231,0.915,1.059,0.527,1.272,1.46,0.942,0.871,0.907,1.299,1.136,0.964,0.982,1.148,0.821,1.445,0.573,1.931,1.275,0.719,0.998,0.695,1.825,1.03,1.076,0.643,0.8,1.143,0.727,2.546,0.897,2.955,0.961,0.698,1.432,2.68,0.884,1.069,0.672,0.819,3.282,0.934,0.789,1.061,1.501,1.099,1.24,0.744,0.694,0.921,1.519 +NM_145905,0.93,0.913,1.123,0.921,1.016,0.999,0.915,0.939,1.049,1.018,0.968,0.977,1.0,0.904,1.09,1.081,1.014,1.055,1.025,0.921,0.903,0.963,0.949,1.043,1.007,1.076,0.946,1.082,0.76,1.05,0.996,1.02,1.048,1.034,0.971,1.066,1.105,1.025,1.055,1.104,1.107,0.92,0.924,0.809,0.942,1.018,1.073,1.048,0.978,0.888,0.997,0.934,0.986,1.067 +NM_145906,1.114,1.008,0.954,0.996,1.077,1.017,0.878,1.169,0.947,0.893,0.993,1.135,0.884,1.142,0.956,0.872,0.879,0.91,0.954,0.994,1.006,1.054,0.874,0.931,1.086,1.077,1.061,0.998,0.737,1.084,0.952,0.849,0.903,1.039,0.913,0.914,0.98,0.986,0.99,1.039,0.894,0.816,0.861,1.057,0.918,1.02,1.011,1.036,0.965,1.053,1.085,0.848,0.849,1.153 +NM_145909,0.78,1.332,1.599,0.921,1.162,1.24,0.729,0.877,0.875,1.048,1.46,1.658,1.569,0.719,1.033,1.557,0.975,1.282,1.345,1.412,0.692,0.902,0.827,1.269,0.668,0.802,2.205,0.898,0.768,1.484,0.962,0.726,1.682,1.679,0.563,0.52,0.863,1.013,1.081,0.533,1.118,1.052,0.815,0.59,0.718,1.169,1.36,0.994,0.643,1.107,0.842,0.645,0.686,1.134 +NM_145910,1.192,1.007,1.066,0.947,1.018,0.918,0.948,1.114,1.051,0.975,1.029,1.001,0.963,1.015,0.975,1.099,1.017,1.22,1.04,1.008,1.056,1.025,0.929,0.891,1.028,1.046,1.014,0.887,0.859,1.031,0.998,1.058,1.045,0.898,1.016,1.094,0.916,1.009,1.01,1.007,0.961,1.137,1.065,0.971,0.957,1.06,0.999,0.981,0.985,0.984,1.06,0.983,0.926,0.891 +NM_145911,1.044,0.968,1.056,0.887,0.821,1.097,0.809,0.943,1.255,0.925,1.037,0.952,0.839,0.806,0.876,1.167,1.065,0.92,1.006,0.888,0.974,1.018,1.038,1.038,0.935,1.066,0.928,0.983,1.033,1.053,1.085,1.173,1.757,1.126,0.834,0.968,0.849,0.986,1.073,0.928,1.032,0.993,0.882,1.218,0.933,0.855,1.028,0.987,0.952,1.028,0.979,0.946,1.026,1.386 +NM_145912,1.087,0.942,0.91,0.918,0.942,0.898,0.951,1.076,0.869,1.036,0.967,1.0,0.983,0.895,0.966,1.125,0.922,0.933,1.007,1.125,1.056,0.975,1.053,0.929,1.103,1.083,0.85,1.089,1.087,0.819,0.941,0.861,0.969,0.935,0.971,1.071,0.891,1.035,0.984,1.04,1.118,0.977,0.897,1.019,1.013,1.06,0.942,0.986,1.004,1.004,1.071,1.094,0.887,0.952 +NM_145914,0.733,1.321,1.08,0.753,0.88,1.118,0.769,0.707,0.889,0.841,0.985,0.912,0.718,0.741,0.836,1.0,0.884,0.902,0.793,1.301,0.728,0.836,1.471,0.896,0.921,0.866,1.124,0.958,0.659,1.685,0.826,1.59,1.183,1.473,0.485,1.0,1.026,0.966,1.168,1.35,0.944,1.213,0.777,1.419,0.863,0.85,0.977,0.77,0.823,0.814,1.024,1.414,0.818,1.279 +NM_145918,0.378,1.507,0.691,0.678,0.42,0.701,0.797,0.416,0.447,0.586,0.783,0.475,0.332,0.383,0.666,1.079,1.374,0.689,0.681,1.219,0.482,0.361,1.594,0.493,0.707,0.356,1.417,0.514,0.473,1.216,0.428,7.52,2.734,1.672,0.309,1.622,0.781,0.425,1.412,7.584,0.751,1.931,0.801,0.773,0.838,1.029,1.473,0.397,0.785,0.83,1.023,6.341,1.596,6.923 +NM_146387,1.086,0.79,0.994,0.937,0.869,0.994,0.803,0.905,0.999,1.052,0.914,0.892,0.912,0.967,0.978,1.158,1.02,1.021,0.833,0.869,0.894,1.072,1.245,1.119,1.0,1.115,1.122,0.796,0.65,0.927,1.15,1.0,1.337,0.995,0.836,0.956,1.029,0.926,1.48,0.851,0.989,0.987,1.058,1.308,1.22,0.906,1.016,0.917,1.049,1.008,0.948,1.104,1.054,1.403 +NM_146388,0.948,1.039,1.008,1.082,0.98,1.042,0.959,1.118,1.142,0.952,1.033,1.187,1.031,0.846,1.209,0.891,1.002,0.993,0.899,1.172,0.906,1.175,0.967,0.959,0.956,1.089,0.891,0.901,1.024,0.984,0.918,0.889,1.076,1.233,0.943,1.042,1.271,1.07,1.063,1.099,0.774,0.972,0.991,0.945,0.912,0.844,0.757,1.079,0.981,1.006,1.061,0.889,1.191,1.172 +NM_146421,2.028,0.916,2.357,1.893,1.029,0.976,1.209,1.16,1.595,1.004,1.039,1.122,0.984,0.924,1.585,0.931,0.854,2.681,3.911,1.045,5.439,0.911,0.919,2.099,0.907,1.019,0.843,0.781,1.1,0.862,1.682,0.867,0.761,0.944,0.985,1.2,0.934,0.917,0.908,0.909,1.064,0.939,0.793,1.279,0.969,1.139,1.301,0.913,0.808,0.931,0.981,0.858,1.42,0.898 +NM_147127,1.051,1.129,1.099,0.887,1.087,0.919,0.843,1.031,0.897,1.041,1.015,0.97,1.036,0.925,0.971,0.948,0.788,0.942,0.913,1.083,1.13,0.964,0.939,1.037,1.012,1.222,0.945,0.936,1.114,0.922,1.1,1.027,0.933,1.019,1.074,1.033,1.101,1.006,1.11,0.968,1.036,0.984,1.139,1.015,0.985,0.902,1.083,1.037,0.929,0.912,1.059,0.899,1.289,1.0 +NM_147128,0.518,0.915,1.623,0.728,0.882,1.639,0.866,0.898,1.15,0.792,1.318,0.91,0.971,0.544,1.049,1.834,1.005,1.148,1.283,1.13,0.367,0.844,1.251,0.891,0.527,0.654,1.287,0.839,0.611,1.196,1.012,0.759,1.477,1.494,0.579,0.673,1.431,0.739,1.415,0.514,1.006,0.96,0.663,0.632,1.118,1.441,1.334,0.877,1.098,1.046,1.095,0.805,0.735,1.419 +NM_147130,1.191,0.94,1.634,0.92,0.865,0.963,1.017,0.983,0.893,0.913,1.053,1.027,1.041,0.894,1.054,1.053,0.884,0.841,0.94,1.068,1.017,1.141,1.021,0.93,0.904,0.964,0.998,0.959,1.179,1.071,0.807,1.065,0.962,1.437,1.01,0.991,0.873,1.069,0.988,0.954,0.944,0.978,0.919,1.023,1.031,0.919,0.911,0.907,0.925,1.011,0.897,1.084,0.997,1.271 +NM_147131,1.086,1.021,1.012,0.87,0.919,0.952,0.996,0.929,1.06,1.068,0.977,1.127,1.084,1.149,1.077,1.06,1.036,1.093,0.795,0.996,0.955,0.917,1.042,0.992,0.942,0.994,1.173,0.994,0.903,0.934,0.95,0.929,1.097,0.944,1.055,0.961,1.025,1.114,0.974,0.955,0.939,1.0,1.0,0.956,0.915,1.021,0.958,1.043,0.986,1.095,1.04,0.908,1.003,0.925 +NM_147133,2.1719999999999997,1.969,2.335,2.06,2.107,2.029,1.892,1.694,2.034,2.284,2.022,1.859,1.88,2.138,1.923,1.888,1.8559999999999999,1.955,1.947,1.8940000000000001,1.8399999999999999,1.807,2.003,2.121,1.7109999999999999,2.024,2.367,1.909,1.621,2.134,1.8820000000000001,2.088,2.17,1.77,1.509,1.737,1.819,1.927,1.776,1.988,2.281,1.8319999999999999,2.098,2.223,1.833,1.8719999999999999,2.053,1.808,2.035,2.013,1.7690000000000001,2.318,1.95,2.4160000000000004 +NM_147147,2.13,2.0700000000000003,1.771,1.73,2.254,2.104,2.371,1.995,2.1740000000000004,2.05,2.053,2.118,1.874,1.962,1.688,2.079,1.9809999999999999,1.8529999999999998,1.927,1.948,1.8409999999999997,2.149,2.333,2.0300000000000002,2.241,1.847,1.677,1.687,1.947,1.983,1.786,1.9849999999999999,1.865,2.025,2.124,2.178,2.129,1.894,1.808,2.097,1.9659999999999997,2.234,1.96,2.086,2.106,2.081,1.9700000000000002,1.879,2.043,1.85,2.041,1.935,2.241,1.975 +NM_147149,0.956,0.972,0.999,1.056,0.802,1.217,0.936,0.77,0.823,0.87,1.434,0.793,0.833,0.914,0.991,1.647,0.837,0.754,1.181,0.851,1.192,0.843,1.256,0.872,1.081,1.236,0.885,0.774,0.964,1.08,0.779,0.948,2.235,1.379,0.713,0.813,1.307,0.905,1.403,0.846,0.922,0.881,1.167,1.421,0.847,1.149,0.916,0.784,1.324,0.91,1.028,0.948,0.848,1.551 +NM_147150,0.856,1.146,0.81,0.889,0.665,0.744,1.619,0.725,1.029,0.788,0.861,0.764,0.877,0.744,0.654,0.943,0.85,0.748,0.661,0.946,0.884,0.772,1.261,0.801,1.145,0.778,0.663,0.887,1.055,1.276,0.831,1.636,1.486,1.681,0.897,1.211,1.168,1.128,1.251,1.939,0.932,1.702,0.892,1.263,0.838,1.0,0.96,0.892,0.97,0.766,1.231,1.65,0.942,1.874 +NM_147152,2.098,2.116,2.128,2.002,2.106,1.942,1.8800000000000001,2.0410000000000004,2.252,2.024,2.0300000000000002,2.159,1.967,1.794,1.875,2.018,1.895,1.837,2.035,1.818,1.962,1.9969999999999999,2.0300000000000002,1.9140000000000001,2.1719999999999997,2.027,1.932,1.855,1.647,2.0220000000000002,1.892,1.861,2.112,2.013,2.044,2.034,2.142,2.082,2.1950000000000003,1.934,2.082,2.0199999999999996,1.991,2.13,1.9369999999999998,1.778,2.061,2.181,1.835,2.074,2.045,2.1100000000000003,2.041,1.9899999999999998 +NM_147156,0.921,1.033,1.146,1.001,1.032,1.02,1.098,1.029,0.892,0.882,1.093,0.869,0.959,1.033,0.936,1.037,0.903,0.884,0.915,1.032,1.006,0.984,0.992,0.929,0.897,0.961,1.148,0.909,0.689,1.118,0.833,0.959,1.144,1.046,0.943,0.992,1.025,1.007,0.965,0.95,1.03,1.068,1.007,1.125,0.998,0.93,0.953,0.945,0.999,1.114,0.955,0.883,1.053,1.036 +NM_147160,1.018,0.914,1.091,1.123,0.944,0.992,0.896,1.082,0.798,1.066,0.864,0.939,0.941,1.158,1.0,1.071,1.154,1.064,1.019,0.952,0.977,0.883,0.884,1.016,0.868,0.901,1.034,1.012,1.16,0.991,1.03,0.974,1.101,0.967,1.01,0.943,1.139,0.973,0.841,0.889,0.963,0.813,1.004,0.983,0.999,0.846,0.97,1.006,1.026,0.988,1.136,0.977,1.119,1.127 +NM_147161,0.694,0.792,1.098,1.137,0.989,1.441,1.315,0.423,1.674,0.843,1.546,0.645,0.577,0.707,1.461,2.778,0.925,1.45,1.389,1.577,0.345,1.022,1.744,1.086,0.483,1.054,0.938,1.007,1.004,1.852,0.889,0.349,0.507,1.58,0.437,0.549,2.048,0.714,1.669,0.633,1.0,1.369,1.339,0.575,1.223,1.98,1.17,1.0,2.005,0.726,1.592,0.609,0.747,0.746 +NM_147162,1.972,2.19,1.874,1.796,1.91,2.1310000000000002,1.974,2.216,1.853,2.082,1.8439999999999999,1.919,2.335,1.891,2.383,2.0460000000000003,2.033,1.942,1.903,1.8699999999999999,2.232,2.083,1.839,1.903,2.112,2.1029999999999998,1.946,2.0780000000000003,2.1999999999999997,2.152,2.01,2.072,1.8210000000000002,2.07,1.981,1.885,2.1630000000000003,2.055,2.093,2.0300000000000002,2.113,1.932,1.855,1.741,2.043,1.76,1.74,1.96,2.074,2.009,2.2270000000000003,1.995,1.907,2.088 +NM_147164,0.96,1.04,1.122,1.096,1.203,1.031,0.936,0.97,0.978,0.951,0.994,1.127,0.958,1.024,0.906,0.975,1.035,0.922,0.914,0.986,0.982,1.081,0.994,0.917,1.03,0.97,0.985,1.003,0.845,1.023,0.901,0.972,1.065,0.862,1.164,0.99,0.994,1.059,0.958,1.123,0.969,0.905,0.93,0.918,0.988,1.043,1.151,0.994,1.05,1.078,1.117,1.056,1.009,0.939 +NM_147166,1.976,2.016,2.0229999999999997,2.001,1.992,2.013,1.923,1.817,2.152,2.0309999999999997,2.138,2.013,1.916,2.224,1.765,2.009,2.074,2.058,2.112,1.9140000000000001,1.987,1.905,2.0940000000000003,1.985,2.238,1.934,2.002,2.043,1.532,2.066,1.9699999999999998,2.166,1.999,2.113,2.108,1.979,1.963,2.207,1.95,1.9220000000000002,2.114,1.923,1.8359999999999999,2.106,2.0220000000000002,2.064,1.773,2.041,2.15,1.9140000000000001,1.924,2.0469999999999997,2.015,2.023 +NM_147169,0.845,1.002,0.97,0.989,0.943,1.12,0.812,0.842,0.893,0.958,1.213,0.914,0.972,1.033,0.882,1.43,0.977,1.003,0.975,1.064,0.876,0.924,1.333,1.08,1.088,0.956,0.882,0.925,0.848,1.042,0.904,1.337,0.712,1.315,0.825,0.971,1.167,0.998,1.198,0.819,1.05,1.1,1.097,1.508,0.905,1.313,0.867,0.896,0.955,0.879,1.783,1.095,0.854,0.968 +NM_147173,0.663,0.847,1.087,0.91,0.924,1.127,0.825,0.851,1.06,0.972,1.19,0.942,0.867,0.681,0.926,1.352,0.972,0.638,1.387,1.315,0.727,0.957,1.15,1.167,0.746,0.864,1.28,0.828,0.676,0.802,0.804,0.841,1.425,1.774,0.534,0.563,1.092,1.18,1.436,0.849,1.008,0.907,0.516,1.637,1.078,0.996,0.968,0.966,0.917,0.795,1.088,1.015,0.946,2.391 +NM_147174,0.852,0.918,1.129,1.0,1.137,0.895,0.747,1.251,1.19,1.107,1.101,1.194,0.977,1.016,1.049,0.997,1.073,1.132,1.255,0.856,1.003,1.099,0.78,1.311,0.912,1.133,1.204,1.12,0.866,0.987,1.15,1.0,3.026,1.009,0.939,1.032,0.895,1.213,0.997,1.159,1.207,1.006,0.896,0.82,1.163,0.898,1.022,1.185,0.901,0.98,1.034,0.929,1.055,0.959 +NM_147175,1.011,0.985,1.081,1.035,1.277,1.022,1.073,0.991,1.061,1.254,0.912,0.929,1.008,1.235,0.922,1.058,1.013,1.072,1.246,0.954,0.998,1.032,0.885,1.244,1.006,0.944,1.192,1.237,1.186,1.108,1.132,0.94,2.226,0.923,1.072,0.918,0.868,0.998,0.952,1.168,1.041,0.964,0.803,0.727,1.152,0.943,1.301,1.0,0.992,1.174,0.968,0.958,0.975,1.085 +NM_147180,1.27,0.926,0.923,0.842,1.033,1.243,1.053,1.067,1.133,0.985,1.057,1.065,1.133,0.858,1.019,0.956,0.921,0.924,0.986,0.998,1.201,1.03,0.904,1.065,0.855,1.229,0.95,0.977,1.2,1.25,0.944,1.107,1.25,1.029,0.996,1.222,0.893,0.957,0.815,0.953,1.042,0.946,1.167,0.937,0.991,1.326,1.054,1.105,1.125,1.03,0.978,0.778,1.107,0.982 +NM_147183,2.115,1.893,2.002,2.207,2.121,1.916,1.987,2.4690000000000003,2.117,1.983,1.8479999999999999,1.939,1.791,1.8719999999999999,1.94,1.95,1.9809999999999999,1.985,1.981,2.085,2.001,1.9809999999999999,1.936,2.049,1.961,2.16,1.936,1.9929999999999999,2.253,2.217,1.859,1.9,1.947,1.896,1.937,2.113,1.9449999999999998,2.1470000000000002,2.106,2.02,2.084,2.124,2.1260000000000003,1.9780000000000002,2.2199999999999998,1.919,1.85,2.015,2.081,1.827,2.013,1.9329999999999998,2.238,2.067 +NM_147184,1.518,0.498,1.273,0.797,2.18,0.847,0.317,1.249,1.981,1.221,0.998,1.659,1.28,1.236,1.592,2.286,1.539,1.022,3.395,1.002,0.72,2.477,0.908,4.131,0.323,2.333,0.701,2.034,0.258,0.661,1.806,0.71,0.833,0.822,1.544,0.546,0.943,1.584,0.723,0.495,2.184,0.679,0.622,0.692,1.398,0.978,1.166,2.102,0.721,1.147,1.226,0.592,1.126,0.725 +NM_147187,0.375,0.72,0.678,0.715,0.481,1.139,0.648,0.342,0.56,0.654,1.176,0.489,0.363,0.436,0.796,1.357,0.678,0.708,0.471,1.509,0.418,0.425,1.303,0.638,0.471,0.378,0.991,0.438,0.497,1.317,0.461,2.473,1.51,1.058,0.238,1.295,1.018,0.445,1.604,1.27,0.519,1.118,1.991,1.377,0.553,2.072,1.115,0.381,1.449,0.462,1.285,1.506,0.787,2.18 +NM_147189,0.906,1.114,0.979,1.072,0.929,1.124,1.114,0.965,0.996,0.819,0.892,0.769,0.842,1.043,0.812,1.127,0.865,1.017,0.967,1.09,0.985,0.906,1.113,0.905,1.319,0.905,1.132,0.973,1.143,1.165,0.849,1.287,1.018,1.573,0.957,0.942,0.924,0.956,1.04,1.059,0.945,1.279,1.001,1.113,0.891,0.928,0.875,0.848,0.92,1.004,1.067,0.939,0.909,0.942 +NM_147190,0.853,1.092,1.438,0.795,1.075,0.897,0.631,0.719,1.25,1.214,0.685,1.059,0.877,0.803,0.748,0.84,0.981,0.901,1.061,0.959,0.983,0.904,0.897,1.152,0.843,1.137,1.407,1.0,0.789,1.056,0.996,2.628,0.768,0.974,0.664,1.293,0.903,1.146,0.934,2.415,1.314,1.064,0.858,1.483,1.298,0.967,1.221,0.932,0.765,0.993,0.905,1.574,1.499,1.383 +NM_147191,1.069,1.002,1.098,1.11,0.956,0.969,0.944,0.954,1.055,1.021,0.983,1.089,1.054,0.991,1.15,1.078,0.972,1.062,1.104,1.127,1.036,1.054,0.953,1.108,1.1,0.977,0.988,1.013,1.042,0.84,0.832,0.968,0.995,0.908,1.112,0.977,1.08,0.861,0.966,0.995,1.083,1.263,1.087,1.008,1.067,1.274,0.978,0.909,1.037,1.049,0.982,1.056,1.005,1.003 +NM_147193,0.971,0.985,1.021,1.05,1.057,1.144,1.152,1.006,0.986,1.139,0.907,1.034,1.056,0.958,0.936,1.001,0.911,0.946,1.074,0.981,1.067,0.992,0.88,1.02,1.015,1.049,1.129,1.013,1.233,0.859,1.039,1.014,0.992,1.054,1.216,0.928,0.986,1.033,1.011,1.063,0.986,0.992,1.145,1.005,1.028,0.98,1.005,0.93,0.962,0.999,0.996,0.98,1.177,1.356 +NM_147196,1.034,1.071,1.108,0.956,1.044,0.999,1.152,0.934,1.0,1.164,1.147,1.105,1.1,0.909,0.917,0.91,0.935,1.085,1.097,1.0,1.068,0.899,1.094,1.031,0.937,0.92,1.029,1.077,0.922,1.001,1.054,1.121,0.98,0.966,1.105,0.973,0.823,1.001,1.016,0.94,1.023,0.988,0.934,1.192,0.91,1.025,0.899,0.997,0.979,0.961,0.939,0.994,1.037,1.012 +NM_147197,1.053,1.036,1.105,1.011,0.99,0.904,1.018,1.026,0.934,0.934,1.045,0.992,1.103,1.211,0.766,1.023,1.037,1.053,1.149,1.064,1.056,1.023,1.033,0.924,0.929,0.952,1.078,1.082,1.047,1.121,0.903,1.041,1.035,0.914,0.994,1.101,1.007,0.973,0.996,0.902,1.052,0.993,1.176,0.97,1.073,0.989,0.847,0.95,0.982,1.072,1.065,0.893,1.053,0.824 +NM_147198,1.007,0.978,1.036,0.958,0.996,1.084,0.973,1.082,0.889,0.957,1.155,0.862,1.016,1.09,0.893,1.001,0.966,1.014,0.969,0.899,1.018,1.049,1.012,0.934,1.06,0.907,0.917,1.028,1.357,0.933,1.089,1.023,0.971,1.011,1.101,1.102,1.031,1.048,0.909,0.905,1.1,0.849,1.179,1.002,0.978,1.132,1.069,1.068,0.929,0.975,1.07,0.954,0.975,1.14 +NM_147199,0.952,0.918,1.021,1.059,1.01,1.041,0.897,0.927,0.875,0.934,0.933,0.889,1.062,1.02,1.046,0.918,1.117,1.039,0.945,1.122,0.949,0.971,1.023,1.042,0.965,1.073,0.961,0.897,1.071,0.995,1.013,1.271,1.054,0.987,0.973,1.019,1.04,0.98,0.966,0.934,1.136,0.979,0.829,0.965,0.913,1.007,1.159,1.074,1.016,0.98,0.916,1.002,1.009,0.873 +NM_147200,1.8239999999999998,1.6239999999999999,2.064,2.02,1.9620000000000002,2.285,1.726,1.6840000000000002,1.979,1.995,2.428,1.6709999999999998,1.801,1.567,1.992,2.536,2.001,2.0380000000000003,2.057,2.205,1.688,1.9169999999999998,2.2439999999999998,2.1100000000000003,1.485,2.012,2.442,1.722,1.347,2.294,1.897,1.6149999999999998,1.884,2.266,1.688,1.693,1.9929999999999999,1.9460000000000002,2.492,1.584,1.834,2.1319999999999997,1.686,1.7839999999999998,2.088,1.802,1.651,1.626,1.807,1.7879999999999998,2.133,1.5150000000000001,2.271,2.254 +NM_147202,0.941,1.036,1.013,1.111,0.737,0.922,0.941,0.817,0.927,0.855,1.085,0.795,0.941,1.056,1.084,1.2,0.951,0.998,1.081,0.815,0.869,1.033,1.027,0.966,0.967,0.955,0.894,0.909,0.829,0.999,0.982,1.458,1.549,1.229,0.698,0.883,0.961,1.002,1.146,1.223,0.97,0.941,0.834,1.001,0.899,1.072,0.86,0.919,0.853,1.07,1.028,1.1,1.014,1.638 +NM_147203,2.058,2.138,1.853,2.226,1.923,1.963,1.814,1.897,1.8729999999999998,2.042,1.931,2.107,1.9329999999999998,2.178,1.823,2.306,1.9289999999999998,2.032,1.917,1.955,1.869,1.9180000000000001,1.924,1.9369999999999998,2.0460000000000003,1.847,1.947,1.943,2.183,1.999,1.863,2.843,2.377,1.866,2.0359999999999996,1.778,2.066,1.964,2.0140000000000002,2.1550000000000002,1.928,1.9529999999999998,2.2569999999999997,1.939,1.967,2.0140000000000002,2.009,1.932,2.043,1.926,1.912,1.855,2.213,2.149 +NM_147204,1.002,0.723,5.737,0.78,1.507,0.549,0.51,2.336,2.234,1.27,0.504,1.238,1.768,0.998,1.216,0.816,5.914,1.449,3.403,0.874,0.857,1.936,0.543,1.277,0.423,1.584,3.278,1.524,0.463,0.704,1.33,1.859,1.168,0.676,3.463,0.467,0.506,2.011,0.697,1.177,2.425,1.342,0.425,1.603,2.188,0.46,1.464,2.031,0.498,2.07,0.838,0.981,1.71,1.095 +NM_147223,1.082,0.958,1.763,0.73,1.287,1.122,0.77,1.237,1.413,1.165,0.824,1.09,0.97,0.947,1.05,1.336,1.484,1.179,0.999,0.85,0.737,1.772,0.874,1.769,0.858,0.832,1.239,1.029,0.939,0.887,1.348,0.951,1.23,0.877,1.084,0.63,0.878,1.629,0.945,1.056,1.203,1.015,1.013,0.787,1.389,0.772,1.105,1.092,1.072,1.426,0.943,0.772,0.793,1.111 +NM_147233,1.091,0.872,1.543,0.83,1.268,0.861,0.678,0.868,1.134,1.064,0.666,0.979,0.863,0.786,0.88,1.009,1.241,0.99,1.394,0.952,0.85,1.34,1.006,1.365,0.808,1.336,1.099,1.031,0.61,0.711,1.197,0.947,0.977,0.916,1.317,0.74,1.0,1.295,0.973,1.087,1.115,1.04,0.788,1.126,1.52,0.872,0.792,1.179,1.0,1.685,0.926,0.781,1.49,0.915 +NM_147686,1.07,0.838,0.833,1.347,1.003,0.89,0.793,0.87,1.214,1.253,1.053,1.37,1.098,1.116,0.749,0.936,0.934,1.212,0.916,1.217,0.991,1.061,1.119,0.978,1.109,1.088,0.798,0.844,0.969,0.966,1.105,1.006,0.917,1.048,1.184,0.986,0.871,0.889,0.91,0.982,1.002,1.156,1.154,0.999,0.912,1.077,0.989,1.06,0.995,1.032,1.007,1.026,1.057,0.893 +NM_148169,1.042,1.01,0.961,1.083,1.069,0.999,0.915,0.841,1.107,0.983,0.966,0.986,1.003,0.971,0.797,0.963,0.989,0.836,1.018,0.919,0.935,1.075,0.798,1.002,0.937,1.14,0.977,1.17,1.082,1.081,0.933,1.626,0.955,1.037,0.904,0.87,0.862,1.299,1.028,0.888,1.213,1.028,0.943,1.012,1.13,1.026,0.887,1.161,0.894,1.128,0.965,0.961,0.993,1.004 +NM_148170,1.107,2.317,2.551,1.362,1.52,2.346,2.117,0.713,1.794,1.745,2.868,1.137,1.0939999999999999,0.926,1.7429999999999999,3.6420000000000003,1.558,1.2719999999999998,1.495,2.284,1.319,0.888,3.816,1.969,1.245,0.914,6.1129999999999995,1.2309999999999999,0.6739999999999999,3.224,1.404,7.121,3.072,3.108,0.688,1.313,2.4530000000000003,1.543,2.867,1.347,1.7269999999999999,2.9770000000000003,1.355,1.746,1.7309999999999999,1.9449999999999998,2.148,0.852,2.1020000000000003,1.419,3.3049999999999997,2.125,2.4210000000000003,3.646 +NM_148172,1.106,1.034,1.147,0.942,1.078,0.795,0.945,0.8,1.063,0.91,1.008,0.895,0.913,0.949,1.078,0.956,0.965,0.9,1.174,0.836,0.877,0.807,1.03,1.059,0.966,1.039,1.073,1.077,0.808,1.017,1.043,1.11,0.998,1.167,0.807,0.949,0.946,0.997,0.947,0.82,1.185,0.875,1.26,1.21,1.015,0.929,0.957,0.735,0.966,0.969,0.968,0.899,1.071,1.191 +NM_148173,0.817,0.921,0.913,0.827,0.841,0.944,0.686,0.607,1.038,1.068,1.055,1.035,0.884,0.714,0.898,1.175,0.771,0.93,1.517,1.038,0.839,0.861,1.075,1.147,0.766,1.213,0.997,0.868,0.579,1.009,0.865,1.122,1.87,1.732,0.353,1.57,0.784,0.968,1.012,0.796,1.003,1.328,0.827,1.461,1.304,0.76,0.86,0.976,0.686,0.851,0.824,0.85,1.391,1.531 +NM_148174,0.714,1.089,1.032,0.839,0.943,0.892,0.775,0.539,1.0,0.864,1.29,0.648,0.688,0.798,0.864,1.38,0.607,0.908,0.996,1.022,0.652,0.525,1.086,0.837,0.704,0.673,0.939,1.042,0.516,1.462,1.059,1.034,2.082,1.185,0.826,1.185,1.364,0.724,1.136,1.307,1.039,1.07,0.737,1.743,0.843,1.518,1.002,0.69,1.308,0.772,1.179,0.921,0.838,2.87 +NM_148175,1.091,0.923,1.135,0.848,0.959,1.117,0.807,0.861,0.929,1.13,0.955,1.009,0.822,1.068,0.924,1.062,1.259,0.945,1.022,1.048,1.18,0.862,1.009,1.128,0.982,1.026,1.148,1.257,0.973,1.143,0.991,0.959,1.125,0.976,0.883,1.023,0.816,1.23,1.19,1.044,1.061,1.106,0.984,0.984,1.049,0.96,0.834,1.258,0.894,1.202,0.952,1.085,1.12,1.126 +NM_148177,3.702,1.433,3.5519999999999996,1.595,3.5170000000000003,1.5219999999999998,1.173,5.955,4.2330000000000005,1.674,1.5419999999999998,2.877,3.0780000000000003,2.4189999999999996,3.358,1.9449999999999998,2.5300000000000002,2.073,2.95,1.5550000000000002,1.9809999999999999,3.637,1.387,2.379,1.234,3.612,2.977,4.335,1.12,1.4969999999999999,3.949,2.428,1.99,1.657,11.398,1.583,1.697,5.779999999999999,1.6749999999999998,2.089,3.995,1.863,2.106,1.435,2.588,1.705,2.85,5.534,1.545,2.238,1.834,1.444,2.301,1.962 +NM_148178,0.899,0.852,1.009,0.899,0.679,1.007,0.632,0.553,0.798,1.028,1.704,0.828,0.851,0.722,1.155,2.059,0.893,0.839,1.414,1.1,0.754,0.724,1.192,0.982,0.764,1.145,1.122,0.752,0.663,0.927,0.837,1.023,1.155,1.456,0.456,0.885,1.036,0.74,1.19,0.692,1.001,1.171,0.804,2.188,1.067,0.966,0.822,0.862,0.795,0.796,1.05,0.892,1.043,1.823 +NM_148179,1.008,0.997,1.252,0.96,1.053,0.984,0.893,1.036,1.004,0.863,1.156,0.938,0.966,0.901,0.955,0.914,1.056,1.079,1.088,0.958,1.002,0.945,0.917,1.006,0.914,0.935,1.069,1.059,0.891,0.993,1.024,0.986,0.941,1.142,0.931,0.941,0.907,0.846,1.002,0.957,1.273,0.899,1.448,1.118,1.007,0.945,1.016,1.094,1.191,1.014,0.96,1.159,0.979,1.015 +NM_148570,0.874,0.93,1.011,0.881,1.038,0.841,1.032,1.461,0.944,0.888,0.838,0.85,0.843,0.983,1.392,1.054,0.934,1.057,1.003,0.886,1.008,1.045,0.92,0.929,0.976,0.972,1.048,1.125,1.281,1.01,0.905,1.027,1.096,0.904,1.076,1.204,1.113,0.933,1.064,0.992,1.153,0.855,1.078,1.23,0.883,0.969,0.94,1.051,1.034,1.037,1.012,0.854,1.027,1.019 +NM_148571,0.982,0.989,1.004,1.001,0.955,1.147,1.002,1.199,1.25,0.948,0.983,1.05,1.0,1.044,0.841,1.02,0.907,0.875,0.784,1.286,1.009,0.897,1.042,1.11,0.917,0.932,1.011,0.948,1.161,1.004,1.062,1.017,1.0,1.071,0.881,1.142,0.905,0.89,0.903,0.89,1.005,1.001,1.188,0.808,1.044,1.081,0.951,1.017,1.012,1.023,0.932,0.939,1.157,1.009 +NM_148672,0.825,1.677,0.806,0.876,0.838,2.664,1.496,0.708,0.739,0.858,1.385,0.981,0.671,0.85,1.303,2.036,0.868,1.331,0.775,1.447,0.795,0.817,1.065,0.8,0.804,0.742,1.016,0.883,0.999,1.825,0.792,1.107,1.025,1.467,0.755,1.36,1.433,0.759,2.394,0.801,0.858,1.754,1.28,0.847,0.796,1.718,0.835,0.823,1.764,0.749,1.8,0.798,0.904,0.847 +NM_148674,1.107,0.994,0.994,0.9,1.007,1.134,1.004,1.191,0.959,0.911,0.994,1.221,0.963,1.039,1.322,1.086,0.939,0.959,1.06,0.804,1.169,0.885,0.854,0.967,1.075,1.0,1.099,1.072,0.694,1.112,1.031,1.087,1.237,0.925,0.874,0.966,1.005,1.048,1.141,0.932,0.962,1.024,0.955,0.938,1.096,0.87,0.931,1.013,1.017,0.899,1.048,1.008,1.007,0.957 +NM_148675,0.939,0.88,0.897,0.942,1.036,1.003,0.984,0.975,1.069,0.951,0.755,0.975,0.895,0.891,0.9,1.104,1.056,1.103,1.014,1.072,0.984,1.112,1.008,0.885,1.162,1.044,0.894,1.183,0.937,0.987,1.075,1.066,1.152,0.984,0.958,0.895,1.144,0.934,1.074,1.202,1.026,1.11,0.926,1.159,0.999,1.096,1.087,0.952,1.003,0.987,1.067,0.921,0.953,1.014 +NM_148676,1.001,0.954,0.895,0.944,1.147,0.974,0.887,0.975,0.924,0.876,1.127,0.997,0.923,0.776,1.064,0.953,1.029,0.997,1.014,0.93,0.937,1.043,0.966,1.038,0.866,1.051,0.871,1.006,1.047,0.927,1.062,1.023,0.856,1.114,0.896,0.908,1.034,0.953,1.036,0.958,1.052,1.073,0.954,0.925,0.982,0.994,0.967,1.019,1.007,0.998,1.082,1.0,1.002,1.11 +NM_148842,0.969,0.99,1.054,1.01,0.934,1.12,1.001,1.128,0.957,1.039,1.012,0.959,1.027,1.084,0.837,1.178,1.044,0.842,0.819,1.073,0.951,1.0,1.0,0.918,0.94,0.838,1.107,0.941,0.808,0.941,1.101,1.032,1.115,1.012,1.089,0.985,1.043,1.06,1.043,0.913,0.887,0.765,0.897,1.003,0.975,1.004,0.853,0.911,0.938,0.932,1.122,0.845,1.05,0.868 +NM_148886,1.299,0.775,1.049,0.919,1.127,0.936,0.823,1.424,1.535,0.767,0.844,1.121,1.136,1.166,1.147,1.004,0.959,1.216,1.411,0.994,0.818,1.18,0.993,1.022,0.896,1.395,1.049,1.329,0.894,1.009,1.206,0.962,1.279,1.106,1.846,0.795,0.709,1.545,0.929,0.808,1.212,0.943,0.773,0.994,1.035,0.733,0.872,1.541,0.847,1.209,0.985,0.88,1.266,1.15 +NM_148888,1.088,1.632,1.034,2.309,0.827,1.022,1.043,0.724,1.001,0.916,1.057,0.85,1.015,1.0,1.0,1.251,0.952,1.083,0.848,1.359,0.872,1.114,1.013,0.988,0.951,0.925,0.986,0.905,1.065,0.971,0.915,0.992,2.071,0.9,1.034,1.056,16.23,0.927,0.831,0.782,1.11,0.947,5.289,0.906,0.767,1.44,1.67,1.038,6.672,0.94,1.261,0.87,0.914,0.875 +NM_148894,1.095,0.93,0.897,0.92,1.099,0.858,0.792,1.02,1.089,0.958,0.982,1.157,1.014,1.011,1.0,0.993,1.0,0.974,0.925,1.077,0.912,0.896,0.969,0.965,0.927,1.065,1.017,1.031,0.991,1.028,0.977,0.972,0.972,0.815,1.053,1.05,1.068,1.058,1.149,1.022,0.935,1.026,0.879,1.046,0.941,1.045,1.12,1.02,0.955,0.943,0.937,0.93,1.003,1.1 +NM_148896,0.999,0.92,1.01,1.14,1.029,1.202,1.004,0.955,1.076,0.922,0.924,1.052,1.093,0.896,0.982,1.066,0.985,0.982,1.025,0.858,1.102,0.926,0.932,0.984,1.077,0.996,1.114,0.955,0.839,1.145,0.992,0.969,0.869,1.063,0.942,0.961,0.918,1.103,1.487,0.977,1.005,0.955,1.031,1.372,0.996,1.013,1.104,1.093,1.079,1.029,0.914,1.0,0.95,0.891 +NM_148897,0.999,0.946,1.152,0.964,1.281,0.968,0.854,0.93,1.397,1.286,0.953,1.01,0.984,1.149,1.037,1.088,0.966,1.126,1.304,1.061,0.835,0.98,0.895,1.316,0.939,0.984,1.178,1.165,0.839,0.888,1.001,0.789,1.103,0.977,1.065,0.94,0.97,1.065,0.961,0.822,1.343,0.943,0.89,0.929,1.368,0.867,1.063,1.064,1.227,1.204,1.049,0.983,1.165,0.96 +NM_148903,0.832,1.0,1.047,1.109,0.878,0.898,0.991,1.088,1.032,0.933,1.109,0.968,0.968,1.014,1.034,0.909,0.963,0.946,1.021,0.999,0.916,0.929,1.027,1.055,1.006,0.892,0.894,1.025,0.915,1.014,0.885,0.944,1.064,1.012,1.088,0.98,1.04,1.053,1.055,0.992,0.956,1.018,1.067,0.91,0.856,0.993,1.014,0.918,1.08,1.059,0.991,1.039,0.921,0.942 +NM_148907,0.873,0.984,1.078,0.949,0.905,1.241,0.825,1.163,1.003,0.847,1.071,1.043,0.879,0.903,0.946,1.145,0.982,0.863,0.983,0.98,0.863,0.972,1.107,1.071,0.974,0.968,1.118,0.938,0.791,1.054,1.133,1.107,1.371,1.108,0.811,0.989,0.943,0.941,1.101,1.027,0.925,0.999,0.866,1.046,0.945,1.049,1.103,1.001,1.078,0.921,1.08,1.089,0.904,1.004 +NM_148910,0.99,0.875,0.849,1.051,0.988,1.04,1.221,1.281,0.955,0.906,1.134,1.046,0.795,0.883,0.857,0.818,0.821,0.942,0.905,1.126,0.962,1.01,0.906,1.112,1.047,1.009,0.907,1.028,1.406,1.061,0.911,1.137,0.948,1.014,1.123,1.095,0.981,0.935,1.113,0.762,0.861,0.884,1.054,0.842,0.939,0.923,0.967,0.88,0.913,1.029,0.98,1.056,1.075,0.766 +NM_148911,0.93,0.963,0.945,1.077,0.982,1.104,1.119,0.865,0.939,0.873,0.938,0.957,0.918,0.857,0.994,1.058,0.939,1.064,0.989,0.985,1.048,0.986,0.948,0.928,0.992,1.036,0.881,0.985,1.08,0.888,1.011,0.995,0.988,1.086,1.104,0.91,0.901,1.079,1.021,0.923,1.129,1.063,1.265,0.863,0.997,1.064,1.073,0.952,0.981,0.98,1.053,0.961,0.985,0.989 +NM_148914,0.901,0.999,0.909,0.925,0.892,1.129,0.889,0.779,1.091,0.753,1.223,0.744,0.823,0.808,1.2,1.262,0.845,0.864,0.853,0.907,0.859,0.813,1.388,0.856,0.814,0.992,0.879,0.998,0.692,1.274,1.009,1.168,1.667,1.032,0.858,0.979,0.908,0.759,1.326,1.007,1.137,1.163,1.013,1.752,0.873,1.118,1.282,0.913,1.32,0.731,1.337,0.957,0.946,1.828 +NM_148916,0.994,1.089,1.062,1.008,0.971,1.006,0.964,0.986,0.944,1.118,0.926,1.018,0.952,1.172,0.982,1.123,0.93,0.936,1.129,0.997,0.904,0.912,1.137,0.99,1.011,0.949,1.027,0.945,1.089,0.928,1.083,0.785,1.035,0.944,1.011,1.126,0.946,0.902,0.897,0.904,1.002,0.921,1.248,0.904,1.121,0.843,0.891,0.998,1.129,1.011,1.121,0.945,1.164,1.015 +NM_148918,0.955,0.655,2.1,0.802,2.095,0.76,0.445,1.0,2.425,1.821,0.52,1.651,0.942,1.346,1.278,1.35,1.135,1.458,2.416,0.908,0.654,1.281,0.926,2.066,0.452,1.575,1.742,2.042,0.264,0.714,1.419,0.545,1.469,0.841,0.307,0.684,1.084,1.752,0.63,0.597,1.909,0.856,0.719,1.039,1.852,0.973,1.365,1.11,0.903,1.594,1.082,0.706,1.41,1.185 +NM_148919,1.131,2.083,1.854,1.705,0.817,2.526,2.005,0.5579999999999999,0.9219999999999999,1.158,2.898,0.827,0.8220000000000001,0.713,1.526,3.388,1.1260000000000001,1.782,1.05,1.9449999999999998,1.036,0.8540000000000001,2.9109999999999996,1.14,1.845,0.96,1.7080000000000002,0.962,0.9380000000000001,2.232,0.784,2.48,1.081,2.946,0.508,2.216,3.54,0.8640000000000001,4.543,1.993,1.7080000000000002,2.816,2.489,4.188000000000001,1.121,2.437,1.773,0.958,4.73,0.9969999999999999,2.458,1.7389999999999999,1.995,5.359999999999999 +NM_148920,0.863,0.876,0.872,1.017,0.914,1.658,0.704,0.704,0.882,0.962,1.127,1.012,0.891,0.883,0.938,1.141,0.989,1.042,1.016,1.103,0.96,1.226,1.135,0.805,1.001,1.102,0.963,0.856,0.946,1.225,0.799,1.419,1.883,1.388,1.015,0.951,0.848,0.99,1.538,0.994,0.885,1.061,0.967,1.592,0.741,1.059,0.947,1.28,0.804,0.951,0.912,0.818,0.96,1.05 +NM_148921,1.234,0.818,1.365,0.853,1.175,0.875,0.667,1.009,1.39,1.066,0.776,1.234,1.094,1.076,1.112,0.959,1.197,0.936,1.838,0.811,1.19,1.527,0.889,1.224,0.763,1.462,1.171,1.248,0.498,0.824,1.385,1.485,1.116,0.912,0.662,0.785,0.791,1.381,0.883,0.99,1.445,1.003,0.827,1.062,1.251,0.78,1.004,1.373,0.791,1.241,0.816,0.83,1.071,1.05 +NM_148936,1.193,0.913,0.941,1.033,0.945,1.034,1.098,0.677,1.054,0.911,0.882,0.932,0.901,0.957,1.018,0.978,0.968,0.939,1.141,0.859,0.997,1.06,1.171,0.962,1.071,0.771,1.065,0.905,1.0,1.094,0.91,1.118,2.154,0.982,0.909,1.107,0.948,1.039,1.567,1.015,1.009,0.856,0.973,1.693,0.916,0.94,1.066,0.936,1.189,0.928,0.958,0.958,1.033,1.131 +NM_148954,0.407,0.972,0.899,0.746,0.262,1.954,2.2,0.209,0.271,0.379,1.42,0.28,0.269,0.206,1.08,1.95,0.371,0.892,0.449,0.886,0.286,0.245,1.489,0.523,1.309,0.255,0.752,0.322,0.403,1.248,0.254,1.684,0.832,1.354,0.121,1.291,1.631,0.271,2.24,1.228,0.596,1.659,1.435,2.327,0.525,0.889,0.966,0.309,2.075,0.415,1.582,1.474,1.519,4.981 +NM_148955,0.855,1.157,1.249,0.896,0.965,1.308,0.665,0.625,1.305,1.017,0.957,0.878,0.766,0.844,1.037,1.403,1.236,0.855,1.2,0.981,0.925,0.816,1.133,0.918,0.834,1.07,1.33,0.86,0.474,0.995,0.985,1.069,1.181,1.299,0.843,0.807,0.865,0.815,1.142,0.725,1.124,1.011,0.694,0.857,1.08,0.91,0.878,0.935,0.77,0.895,0.957,0.756,1.228,1.231 +NM_148956,0.923,0.916,1.025,0.875,0.835,1.012,0.813,0.644,0.865,0.967,0.917,0.996,0.777,0.617,0.931,1.178,0.991,0.852,1.007,0.887,0.86,0.948,1.29,1.048,0.8,0.973,1.123,0.691,1.041,1.032,0.84,1.072,3.967,1.165,0.577,1.156,0.825,0.914,2.228,1.121,1.007,0.916,0.814,2.708,1.117,0.854,1.001,0.816,0.972,0.999,0.927,1.116,0.981,1.668 +NM_148957,1.206,0.945,2.044,0.622,1.234,0.841,0.753,0.819,1.326,0.836,0.868,1.378,1.326,1.283,2.197,0.602,0.924,0.64,1.16,0.732,1.355,1.036,0.948,0.907,0.778,1.128,1.455,1.365,0.449,1.476,1.43,4.356,5.787,1.928,0.499,0.54,0.902,2.443,0.697,1.019,1.538,1.653,0.664,0.889,1.056,0.617,0.561,0.879,0.494,1.297,1.052,0.687,2.417,4.496 +NM_148959,0.939,1.117,1.016,0.892,1.065,0.943,0.921,1.106,1.082,1.006,1.005,0.999,1.021,0.991,0.926,1.013,1.131,1.027,1.013,0.92,0.985,1.017,1.047,0.938,0.926,1.071,1.012,0.963,0.782,1.102,1.063,1.001,0.965,0.966,0.972,0.964,0.997,0.92,1.088,1.055,1.037,0.98,0.895,1.043,1.12,0.902,0.948,1.012,1.041,0.965,0.925,0.925,0.95,0.967 +NM_148960,1.047,1.068,0.982,0.979,0.938,0.974,1.024,0.979,1.077,0.956,1.062,1.063,1.042,0.966,1.029,1.037,0.989,0.993,0.918,1.018,0.858,1.046,1.068,0.983,0.94,0.985,0.916,1.068,0.87,1.091,1.148,1.004,1.077,1.11,0.955,0.906,1.052,1.017,1.081,1.103,0.961,0.998,0.97,0.932,1.13,1.099,1.128,1.052,1.117,1.118,0.985,0.792,1.058,1.124 +NM_148961,1.071,0.965,1.023,1.058,1.052,0.974,1.337,1.067,0.997,0.875,0.97,0.907,1.057,0.907,0.887,1.003,1.05,1.068,0.983,0.902,0.928,1.024,1.067,1.067,0.961,0.964,1.152,0.924,0.855,0.93,1.074,0.947,1.016,0.958,0.993,0.849,1.033,1.104,0.97,1.285,0.983,0.843,1.328,1.018,1.183,1.019,0.996,1.099,0.967,1.062,1.002,1.084,1.004,0.935 +NM_148962,1.0,0.825,0.906,0.986,0.888,0.928,1.27,1.144,0.773,0.934,0.878,1.012,1.015,0.912,1.267,1.007,1.05,1.074,0.944,1.034,0.981,0.945,1.205,1.058,1.134,0.948,0.924,0.95,0.989,0.838,0.862,1.082,1.056,0.821,1.035,1.03,0.989,1.122,0.77,1.11,0.989,1.006,1.056,1.021,0.987,0.944,1.054,1.072,1.191,0.96,1.0,0.938,1.132,1.038 +NM_148963,1.073,0.855,1.048,1.012,0.917,0.975,0.91,0.847,0.949,1.042,1.002,1.11,1.049,0.785,0.929,0.873,0.92,1.074,0.9,0.957,1.141,0.987,0.926,0.903,1.055,0.978,0.914,1.035,0.975,0.981,1.037,1.093,1.019,1.056,0.902,1.159,0.998,0.988,1.016,0.973,1.094,1.008,0.948,0.822,0.952,0.92,1.054,0.955,0.914,1.041,0.959,0.892,0.956,0.801 +NM_148970,1.053,0.93,2.018,0.997,1.079,0.921,0.898,0.697,2.364,1.077,0.796,1.088,0.831,1.206,1.419,0.895,1.787,0.713,1.012,1.179,0.766,1.1,0.789,1.778,0.696,1.201,2.882,1.065,0.545,1.052,1.347,1.873,1.199,0.796,0.601,1.002,0.746,0.819,0.968,2.936,1.372,0.866,0.996,0.998,1.162,0.774,1.409,0.798,0.92,1.1,0.722,1.031,0.978,3.294 +NM_148975,0.949,0.876,1.059,0.939,0.97,0.875,1.007,0.916,0.825,1.168,1.01,1.098,0.828,0.923,0.781,0.975,0.98,1.148,0.897,0.926,0.993,1.047,1.006,0.978,0.977,0.878,0.899,1.05,1.335,0.964,1.045,1.147,1.028,1.069,1.113,1.109,1.069,1.001,0.983,0.865,0.927,1.164,0.984,0.918,0.998,1.071,1.06,1.02,1.003,0.933,1.053,1.155,0.861,1.089 +NM_148976,0.969,1.038,0.964,0.953,0.842,0.956,0.997,1.061,0.94,0.999,0.91,1.035,0.776,1.059,1.063,1.097,0.96,0.893,0.995,0.955,1.02,0.802,0.875,1.097,1.08,0.926,0.999,1.01,0.769,1.061,1.165,0.994,1.185,1.03,1.075,0.988,0.994,0.979,1.039,1.104,0.938,1.101,0.867,0.943,0.996,0.961,0.971,0.857,1.087,0.87,1.089,0.964,0.858,1.048 +NM_148977,0.974,0.874,0.946,0.94,0.875,0.901,0.938,0.975,1.107,1.054,1.024,1.068,0.98,0.866,0.909,1.146,1.097,0.903,0.978,0.93,0.927,0.824,1.155,0.926,0.927,0.844,1.109,1.056,1.093,1.035,0.979,0.938,1.214,0.944,0.895,1.0,1.037,1.003,1.0,1.024,0.894,1.12,0.956,0.931,1.065,0.978,1.107,1.049,1.171,1.01,1.01,0.981,0.978,1.009 +NM_148979,0.621,1.954,0.625,1.222,0.675,2.301,1.19,0.446,0.432,0.503,1.329,0.547,0.46,0.346,0.521,1.143,0.66,1.467,0.689,1.063,0.502,0.439,2.085,0.675,1.113,0.464,0.599,0.554,0.993,3.115,0.416,2.096,1.3,1.828,0.836,0.925,1.298,0.562,2.477,1.175,0.62,1.459,0.557,1.928,0.665,0.489,0.821,0.702,0.712,0.69,0.921,1.143,0.784,1.288 +NM_148980,0.851,1.083,0.999,1.0,0.898,1.061,0.869,1.05,0.953,0.966,1.103,1.01,0.988,1.0,0.92,1.03,0.976,0.903,0.942,1.042,1.023,1.013,1.114,1.014,0.973,0.934,1.008,0.959,1.016,1.133,0.94,1.035,0.908,1.003,0.826,0.993,1.016,0.995,1.194,0.917,0.917,1.036,0.846,0.966,1.033,1.184,0.988,1.022,1.144,0.959,1.148,0.958,1.187,0.949 +NM_149379,1.047,0.849,0.982,1.009,0.93,0.879,1.09,0.93,1.104,0.95,0.996,0.901,0.857,0.967,1.383,1.155,1.023,1.025,1.0,0.942,0.939,1.0,1.066,1.044,1.049,0.993,0.964,0.928,1.085,0.973,0.978,0.982,1.043,1.061,1.073,0.855,0.949,0.874,0.948,1.04,1.038,1.028,1.089,0.991,1.013,1.005,1.028,0.978,0.952,1.141,1.03,0.853,1.055,1.069 +NM_152219,0.868,0.945,1.069,0.959,1.096,0.955,0.907,0.894,0.916,1.058,0.889,1.097,1.014,0.998,1.327,0.919,0.934,1.046,0.938,1.087,1.119,1.024,0.886,0.907,0.902,0.977,0.992,0.973,1.65,1.071,0.866,0.962,0.99,1.101,1.007,1.107,0.957,1.159,1.109,0.937,0.901,0.973,1.038,0.977,0.909,1.006,0.932,1.008,1.027,1.026,1.078,0.959,1.013,1.047 +NM_152222,2.028,2.0869999999999997,1.9729999999999999,2.109,2.0149999999999997,1.9649999999999999,1.866,1.8539999999999999,1.89,2.133,1.968,2.002,2.1470000000000002,1.7269999999999999,2.132,2.154,2.0940000000000003,2.046,1.94,2.012,1.892,2.017,2.084,1.9889999999999999,1.821,1.8279999999999998,2.028,2.013,1.85,2.05,2.11,1.959,1.974,2.021,2.009,1.749,2.0300000000000002,1.959,1.956,2.137,2.075,2.0380000000000003,2.0620000000000003,1.972,2.034,2.181,2.101,1.9829999999999999,1.9769999999999999,2.067,1.974,2.004,2.015,2.027 +NM_152225,0.871,1.004,1.038,1.141,1.015,0.874,0.967,0.866,1.022,1.108,0.98,0.97,0.819,0.847,0.907,0.94,1.058,1.017,0.858,0.921,1.025,1.029,0.95,1.058,1.062,1.058,0.878,1.046,1.001,1.124,0.967,1.101,0.899,0.922,0.905,0.953,0.951,1.087,1.106,0.965,0.986,1.173,1.063,1.012,0.951,1.152,1.041,1.106,0.976,1.045,0.968,0.96,1.074,0.904 +NM_152227,0.95,0.852,0.871,0.966,0.915,0.974,0.951,0.88,0.986,1.323,1.195,0.765,0.941,0.898,0.95,0.896,0.852,1.081,1.123,0.972,0.932,0.739,1.279,1.052,0.8,0.862,0.87,0.904,1.243,1.274,0.936,0.911,1.183,1.025,0.877,1.083,0.852,0.942,1.098,0.969,1.161,0.865,0.937,1.456,0.985,1.183,1.006,0.793,1.037,0.95,1.064,1.294,1.104,1.735 +NM_152230,0.964,0.854,1.028,0.915,1.019,0.987,1.147,0.869,1.119,0.964,1.016,0.899,1.117,0.97,0.937,1.022,1.103,0.981,1.015,1.018,1.084,0.923,0.883,1.012,0.934,1.09,0.931,1.108,1.405,0.968,1.242,0.944,1.195,0.923,1.097,0.959,1.01,1.001,1.184,0.83,0.995,0.95,1.722,1.044,0.99,0.86,0.907,1.029,0.823,0.768,0.882,1.033,0.843,1.01 +NM_152232,1.081,1.068,1.016,0.862,0.963,1.05,1.098,1.013,1.152,1.066,0.942,0.822,0.964,1.01,1.111,1.047,1.054,1.102,1.021,0.895,0.95,1.016,1.036,1.062,0.995,0.913,1.008,1.095,1.016,0.944,0.969,1.015,1.008,1.078,1.035,1.059,0.879,0.86,1.145,0.967,0.948,1.032,0.921,0.918,1.075,0.896,0.987,1.009,0.996,0.948,0.903,1.068,1.015,0.976 +NM_152233,1.015,1.002,1.256,0.654,0.935,1.119,0.593,0.599,1.026,0.94,1.09,0.968,0.753,0.815,0.957,1.261,0.981,0.815,1.366,0.904,0.696,0.953,0.928,1.089,0.759,1.029,1.171,1.002,0.453,1.15,0.867,1.341,1.398,1.176,0.34,0.695,1.031,1.054,1.379,0.99,1.116,1.019,0.743,1.687,0.988,1.057,0.875,0.868,0.862,0.997,0.959,0.772,1.02,1.747 +NM_152236,1.006,1.156,1.634,0.909,0.994,0.898,0.494,0.781,0.966,1.15,0.851,1.123,0.843,0.753,1.027,1.615,1.048,0.811,1.982,0.685,1.449,0.999,0.805,1.125,0.651,1.358,1.275,0.88,0.444,1.083,1.063,1.229,1.902,1.057,0.396,0.757,0.762,1.286,2.015,0.655,1.164,0.883,0.633,0.759,1.244,0.837,0.702,1.051,0.758,1.55,0.845,0.763,1.748,1.267 +NM_152237,1.028,0.904,1.028,0.841,0.89,1.036,1.086,0.921,0.949,1.032,0.992,1.151,1.065,0.862,0.979,0.891,1.027,1.127,0.956,1.06,0.865,1.021,0.825,1.064,0.951,1.063,1.113,0.992,1.196,0.951,1.075,0.979,1.092,0.914,1.091,1.279,0.855,1.036,0.922,0.756,1.003,0.985,1.083,1.025,0.972,1.034,0.995,0.977,1.153,0.979,1.053,0.867,1.168,1.03 +NM_152238,1.581,1.964,2.278,1.7650000000000001,1.855,3.622,1.8649999999999998,1.893,2.223,1.8599999999999999,2.292,1.907,1.789,1.5110000000000001,2.502,3.94,1.94,1.9329999999999998,1.922,2.4250000000000003,1.255,1.9619999999999997,2.7030000000000003,2.232,1.478,1.532,2.599,1.784,1.463,2.675,2.129,2.068,3.137,3.056,1.39,1.358,2.6609999999999996,2.013,2.357,1.462,2.064,2.5389999999999997,1.693,1.69,1.8050000000000002,2.372,2.193,1.657,2.6,1.719,2.3739999999999997,1.571,1.3359999999999999,3.0970000000000004 +NM_152244,0.99,1.014,1.074,1.127,1.022,1.22,1.021,1.084,0.919,1.001,1.156,0.998,1.03,1.095,1.1,0.991,0.993,0.98,1.313,1.098,1.208,0.923,0.999,0.976,0.96,0.99,0.919,1.086,0.966,1.007,1.057,0.776,1.09,1.096,0.986,0.993,0.885,0.998,0.975,0.969,1.03,0.951,0.904,1.128,1.061,0.964,0.816,1.057,1.08,1.099,0.898,0.858,1.136,1.085 +NM_152246,0.969,1.052,1.29,0.956,0.907,1.078,1.033,0.869,1.075,0.879,1.128,0.924,1.037,1.001,0.915,1.008,0.988,1.095,0.955,0.97,0.881,0.957,0.913,0.956,1.045,0.905,0.871,1.036,1.13,0.995,0.999,1.154,0.934,1.107,0.975,0.849,1.03,1.008,1.037,0.856,1.061,1.063,0.943,1.117,0.972,1.007,1.014,0.962,1.037,1.001,0.987,1.168,1.027,1.147 +NM_152250,0.993,0.984,0.943,0.9,1.023,0.888,0.982,0.887,1.047,0.92,0.968,0.972,0.964,1.004,0.862,0.858,0.953,0.982,1.007,0.94,0.924,0.992,0.904,1.049,1.152,1.124,1.073,1.11,1.11,1.012,1.08,1.049,0.941,1.139,0.925,0.967,1.014,1.069,1.103,1.103,0.942,0.987,1.02,0.998,1.077,1.122,0.943,0.954,0.954,1.161,0.985,0.917,0.95,0.971 +NM_152251,1.073,0.898,0.96,1.125,0.897,0.987,1.19,1.276,1.08,0.955,0.967,0.935,1.017,0.96,0.756,1.156,0.998,1.004,1.043,0.975,1.075,0.887,1.151,0.953,1.035,0.972,0.823,0.939,1.097,0.885,1.036,0.917,0.915,0.999,0.964,0.843,0.941,1.156,1.073,1.059,0.878,1.036,1.012,1.09,1.0,1.063,0.953,0.875,1.066,1.139,1.107,0.854,1.025,1.141 +NM_152255,0.957,0.879,0.95,0.86,1.053,0.968,1.015,1.048,0.944,0.932,0.985,0.873,0.951,1.056,1.116,0.962,1.003,1.107,1.235,1.012,1.09,1.119,1.203,1.076,1.058,0.92,0.988,1.0,0.896,0.998,1.05,1.211,1.109,1.0,1.136,1.06,1.008,1.006,0.987,0.928,0.859,0.926,0.802,0.941,0.974,0.918,0.92,1.123,1.023,0.952,1.075,1.049,1.069,0.967 +NM_152256,1.227,0.957,0.928,0.943,1.153,1.018,1.146,0.979,0.829,0.965,0.985,1.195,1.071,0.877,1.186,1.169,0.956,1.048,1.301,1.187,1.115,0.988,1.145,1.1,0.994,0.961,0.982,1.075,1.933,1.32,1.206,0.959,1.052,1.15,0.967,1.092,0.928,1.084,0.98,0.858,1.234,0.975,1.215,1.008,1.013,0.94,0.907,0.972,0.905,0.99,0.997,0.904,1.042,0.911 +NM_152257,1.192,0.969,0.922,1.075,1.06,0.96,0.955,0.958,1.073,1.057,0.982,1.018,1.192,1.054,1.134,0.875,0.989,1.329,0.952,0.945,0.86,1.068,0.829,0.985,0.887,1.094,1.058,1.131,1.16,0.995,0.975,1.084,1.142,0.996,1.031,0.937,0.98,1.17,1.091,0.917,0.916,0.805,0.7,0.867,0.988,1.126,0.998,0.89,1.001,1.069,0.87,1.015,0.915,0.965 +NM_152259,0.922,0.959,1.568,0.883,1.057,0.827,0.724,0.791,1.264,1.158,0.791,1.147,0.824,1.024,0.956,0.95,1.26,1.096,1.22,0.847,0.837,0.95,1.49,1.104,0.813,0.911,2.391,1.164,0.807,0.839,1.177,0.954,2.166,0.847,0.762,1.655,0.842,1.134,1.181,1.173,1.132,0.864,0.745,1.103,1.23,0.836,1.31,0.926,1.185,1.068,1.121,1.078,1.147,1.362 +NM_152260,0.759,1.16,1.17,0.691,0.986,0.896,0.597,0.534,1.238,1.25,1.042,1.045,0.746,0.794,0.733,1.194,0.835,0.834,1.106,0.996,0.603,0.909,1.695,1.089,0.683,0.793,1.342,0.786,0.397,1.174,0.9,1.177,1.644,1.045,0.288,1.277,1.014,0.971,1.157,0.927,1.102,1.102,0.604,1.14,1.011,0.81,1.035,0.714,1.037,0.803,0.962,1.161,0.95,2.378 +NM_152261,0.307,1.609,0.467,1.178,0.311,1.928,1.279,0.271,0.363,0.326,1.777,0.316,0.311,0.369,0.762,1.613,0.347,1.58,0.301,1.858,0.235,0.306,1.556,0.346,1.371,0.26,0.52,0.34,1.269,2.432,0.286,1.654,0.724,2.191,0.23,1.017,1.956,0.377,1.569,0.739,0.407,1.983,0.982,0.502,0.3,1.5,0.59,0.295,1.267,0.298,1.925,0.896,0.449,1.287 +NM_152262,0.983,1.098,1.241,0.881,1.083,0.841,1.005,1.083,1.449,0.929,1.066,1.144,1.14,0.993,1.132,1.04,0.929,1.124,1.111,1.189,0.996,1.099,1.044,1.032,0.983,0.972,1.07,1.007,0.671,0.86,1.183,1.087,1.437,1.109,1.07,0.894,0.954,1.092,0.978,1.356,0.95,0.985,0.716,0.88,1.047,0.876,0.831,1.022,0.862,0.875,0.916,1.038,1.066,1.004 +NM_152263,1.7919999999999998,1.9869999999999999,1.705,1.912,1.858,2.463,1.987,1.2309999999999999,2.342,2.008,2.3040000000000003,1.754,1.557,1.582,1.33,1.873,1.734,1.6709999999999998,1.443,2.209,1.444,1.7650000000000001,2.181,1.931,1.9769999999999999,1.464,2.125,2.144,1.895,2.34,1.488,2.276,2.681,1.975,1.487,4.287,1.725,1.6219999999999999,3.454,2.645,2.105,2.1500000000000004,2.441,4.272,1.567,3.357,3.0589999999999997,1.467,3.3609999999999998,1.8159999999999998,2.16,2.457,1.665,2.5090000000000003 +NM_152264,0.791,1.066,1.06,1.003,0.886,1.039,1.012,0.73,0.838,0.927,1.206,0.925,0.884,0.889,0.759,1.041,1.01,0.958,1.123,0.937,0.928,0.852,0.996,0.915,1.075,0.763,0.979,0.899,0.829,1.273,0.919,1.551,1.252,1.208,0.778,1.225,1.173,0.952,1.547,1.313,0.99,1.132,0.845,1.335,0.926,0.988,1.026,0.967,0.994,0.936,1.025,0.997,0.832,1.289 +NM_152267,0.912,1.038,1.163,0.971,1.042,1.116,0.848,0.857,1.168,1.022,0.946,1.001,0.951,0.74,1.117,1.286,0.903,0.959,1.134,1.051,0.899,1.168,0.974,1.11,0.885,0.899,0.956,0.911,0.902,1.007,1.025,1.092,1.146,1.079,1.0,0.851,0.977,1.07,1.016,0.95,0.971,1.004,0.886,1.031,1.049,0.891,0.98,0.988,0.961,0.83,0.87,0.88,1.26,1.0 +NM_152271,0.811,0.92,1.1,0.837,1.083,0.95,0.844,0.988,0.984,1.069,1.151,0.982,0.989,1.019,1.014,1.005,0.886,1.01,1.039,0.857,1.003,0.965,1.216,1.124,0.768,0.974,1.241,0.881,0.731,1.046,1.126,1.37,1.84,1.271,0.701,0.815,0.949,1.219,0.876,0.929,1.09,1.048,1.24,0.754,0.881,0.896,0.923,0.934,1.035,1.095,1.042,1.253,1.287,1.334 +NM_152272,0.852,0.893,1.028,0.973,0.625,1.125,0.681,0.643,0.834,0.727,1.333,0.868,0.789,0.565,1.017,1.459,0.793,0.946,1.038,0.92,0.769,0.755,1.154,0.847,0.886,0.967,0.991,0.682,0.69,1.176,0.826,1.788,1.399,1.522,0.504,0.869,1.126,0.81,1.752,0.771,0.923,1.224,0.781,1.263,0.889,1.387,0.867,0.735,1.198,0.853,1.118,0.931,0.895,1.777 +NM_152274,0.921,0.835,0.757,1.049,0.696,1.087,0.646,0.545,0.743,0.779,1.525,0.828,0.957,0.545,0.978,1.685,0.698,0.939,1.077,0.976,0.702,0.836,1.558,0.97,0.748,1.0,0.942,0.719,0.633,1.063,0.678,1.398,2.604,1.287,0.399,1.37,1.249,0.677,1.864,0.823,0.873,1.096,0.919,1.89,0.913,0.932,1.12,0.917,0.935,0.971,1.12,1.206,0.812,1.635 +NM_152275,0.896,1.007,0.992,0.93,0.974,1.11,0.716,0.738,0.991,0.895,1.176,1.015,0.92,0.858,0.955,0.98,0.991,1.083,1.087,1.021,0.977,0.968,1.137,1.032,0.852,0.984,1.158,1.082,0.657,1.188,0.865,1.127,1.739,1.143,0.897,1.136,1.103,0.878,0.828,1.13,1.019,0.994,0.86,1.237,0.897,0.748,1.013,0.86,0.976,0.841,1.119,1.072,1.144,1.523 +NM_152277,0.819,0.995,0.896,0.919,0.999,1.207,0.895,0.888,0.968,0.933,1.057,0.93,0.8,0.761,0.854,1.099,0.849,0.842,0.843,1.143,0.649,0.784,1.12,0.999,0.831,0.843,1.041,0.913,0.627,1.113,0.853,1.794,1.594,1.053,0.977,0.869,1.103,0.925,1.334,1.15,0.898,1.019,0.969,1.04,0.863,1.209,1.186,0.868,1.025,0.977,1.07,0.713,0.855,1.472 +NM_152279,0.901,0.846,1.183,0.984,0.982,0.889,0.754,0.964,1.174,1.056,0.95,0.951,1.03,1.028,1.023,0.975,1.19,0.943,1.056,1.121,0.945,1.085,0.915,1.01,0.884,1.113,1.25,1.094,0.874,0.921,1.161,0.973,1.125,1.02,1.032,0.863,0.932,1.14,0.948,0.9,1.108,0.854,0.763,0.909,1.135,1.006,0.997,0.969,1.143,1.012,0.98,0.87,0.919,1.05 +NM_152280,0.82,1.04,1.057,0.885,0.816,1.08,0.86,0.861,0.791,0.919,0.923,0.898,0.839,0.673,0.921,0.994,0.854,0.821,0.899,1.079,0.863,0.907,1.253,1.016,1.049,0.918,1.052,1.027,0.794,1.309,0.898,3.186,1.118,1.637,0.742,0.901,1.022,1.064,1.64,2.236,1.01,1.389,0.817,0.939,0.915,0.976,1.004,0.889,0.871,0.928,1.09,1.203,0.967,1.452 +NM_152281,1.031,0.91,0.885,1.022,1.127,1.061,0.948,0.999,1.068,0.905,1.091,0.98,0.898,0.708,0.948,0.941,0.931,0.966,0.897,1.087,1.012,1.049,1.097,0.995,0.972,1.043,1.148,0.95,1.517,1.04,0.834,1.064,1.241,0.998,0.871,1.081,1.014,1.146,1.033,1.088,0.977,0.893,0.934,1.035,1.001,1.041,0.988,0.881,0.946,0.986,0.985,1.07,0.879,1.132 +NM_152282,0.775,1.725,0.764,0.832,0.835,1.73,0.896,0.725,0.776,0.691,1.67,0.771,0.691,0.692,1.143,2.31,0.74,0.759,0.718,1.361,0.755,0.76,2.309,0.812,0.847,0.662,0.94,0.726,0.705,2.291,0.82,2.1,2.741,1.962,0.811,0.906,1.296,0.751,1.524,0.978,0.894,1.348,0.786,1.014,0.796,1.268,0.875,0.687,1.046,0.804,1.271,0.966,0.818,1.727 +NM_152283,0.922,0.954,1.131,0.742,1.001,1.098,0.564,0.863,1.766,0.618,1.22,0.979,0.999,0.947,1.293,1.31,0.848,0.811,1.075,1.243,0.531,0.895,1.152,1.059,0.717,0.877,1.077,0.894,0.411,1.269,1.311,0.964,2.899,1.342,2.051,0.687,1.117,0.857,0.969,0.681,1.136,1.213,0.635,0.789,0.825,0.931,0.942,1.194,0.902,0.757,0.974,0.793,0.693,2.199 +NM_152284,1.022,1.089,1.008,0.697,1.132,1.384,0.555,0.798,1.697,0.886,1.297,0.735,0.723,0.811,1.196,1.463,0.702,1.005,0.929,1.356,0.433,0.78,1.389,0.631,0.707,0.609,0.857,1.191,0.616,1.078,1.198,0.869,1.293,1.566,0.887,0.861,1.184,1.198,1.22,1.007,1.066,1.464,1.041,1.179,0.839,1.806,0.698,0.751,1.354,0.628,1.118,0.555,0.753,1.674 +NM_152285,1.097,0.967,0.736,1.09,0.691,1.393,0.618,1.07,0.859,0.73,1.02,0.788,1.04,0.783,1.206,1.309,1.051,0.924,1.383,0.859,0.946,1.015,0.991,0.842,0.977,1.088,0.903,0.717,0.984,0.917,0.886,1.196,1.207,1.223,1.641,4.501,0.933,0.986,2.142,0.813,0.779,1.022,0.729,1.435,0.794,0.971,0.728,1.555,0.762,1.053,0.951,0.825,0.723,1.742 +NM_152287,0.995,0.953,1.023,0.897,0.993,0.939,0.909,0.982,0.903,1.078,0.969,0.876,1.024,0.948,0.864,0.968,1.152,1.106,1.213,0.853,1.023,0.965,1.061,1.176,0.927,0.992,1.271,0.994,0.737,0.814,0.957,1.18,0.906,0.989,0.908,1.046,1.052,0.97,1.098,1.035,1.085,1.101,1.001,1.065,0.981,0.925,1.026,0.936,0.887,1.157,1.052,1.208,1.021,0.982 +NM_152288,0.797,1.189,1.113,0.783,0.673,1.354,0.71,0.65,0.712,0.616,1.367,0.743,0.826,0.675,1.164,1.494,0.771,0.913,0.998,1.336,0.564,0.73,1.303,0.761,0.878,1.028,0.949,0.804,0.527,1.5,0.696,1.472,0.714,1.655,0.64,0.864,1.002,1.163,1.205,1.181,0.876,1.557,0.594,1.443,0.728,1.018,1.042,0.866,0.505,0.687,1.303,0.631,0.759,1.649 +NM_152290,1.042,1.044,0.995,0.934,1.1,1.006,0.874,0.943,1.073,1.071,1.125,0.98,0.971,1.082,1.003,0.832,0.97,0.86,0.946,0.991,1.096,0.904,1.084,0.852,0.9,0.937,1.19,1.001,1.16,0.898,1.132,0.908,0.943,1.043,0.972,1.074,1.015,1.118,0.969,1.028,0.878,1.063,0.893,1.036,1.032,1.06,1.074,1.024,1.04,1.087,0.963,0.916,0.961,0.967 +NM_152295,0.733,0.642,1.156,0.563,1.006,1.141,0.666,0.463,1.508,1.392,0.85,0.783,0.467,0.557,0.887,1.626,0.73,1.118,1.219,0.77,0.574,0.833,1.141,1.678,0.579,0.643,0.959,1.004,0.355,0.793,1.052,1.124,3.275,0.894,0.443,1.568,1.185,1.271,1.479,1.412,1.269,1.02,0.612,1.871,1.181,1.08,1.003,0.708,1.162,0.929,1.011,1.027,0.917,1.853 +NM_152296,1.0,1.1,0.931,0.91,0.878,1.103,1.095,0.86,0.825,0.856,0.987,1.007,0.988,0.883,0.805,0.943,0.861,1.039,0.93,0.963,0.954,1.0,1.386,1.051,0.978,0.966,0.955,1.023,0.891,1.035,0.914,0.856,4.073,1.029,1.047,1.129,0.964,1.06,1.425,1.489,1.067,1.105,0.982,0.959,1.107,0.95,0.979,1.03,0.955,1.06,0.976,0.861,1.063,2.139 +NM_152298,0.817,1.242,0.944,0.788,0.777,1.025,0.741,0.671,0.956,0.909,0.961,0.887,0.758,0.792,0.773,1.121,0.805,0.858,0.871,1.1,0.726,0.861,1.167,1.004,0.755,0.763,1.523,0.846,1.411,1.273,0.913,2.344,1.0,1.312,0.609,1.067,0.974,1.013,1.303,0.931,0.93,1.11,0.819,1.568,1.017,1.034,0.79,0.827,1.28,0.901,1.101,1.005,0.822,1.61 +NM_152299,0.954,0.998,0.82,0.891,0.777,1.288,0.725,0.764,0.932,0.965,0.897,1.092,0.983,0.766,1.026,1.042,0.971,1.051,1.015,0.891,0.976,1.023,1.092,1.205,0.903,1.034,1.276,0.766,0.705,1.092,0.756,1.058,1.74,1.305,0.675,0.996,0.913,1.09,1.829,0.82,0.918,1.057,0.929,1.244,0.971,0.788,0.98,1.033,0.962,1.002,0.921,0.956,0.935,1.368 +NM_152300,0.993,0.969,1.021,0.741,0.989,0.985,0.695,1.009,1.447,1.061,0.991,0.895,0.897,1.057,1.18,1.668,0.86,0.929,1.404,0.85,0.884,1.181,1.045,1.302,0.682,1.018,1.366,0.962,0.623,1.022,1.258,0.994,1.689,0.974,0.796,0.842,1.118,0.992,1.282,0.886,1.132,0.942,0.873,1.189,1.002,0.932,0.981,1.249,1.166,0.884,0.96,0.863,1.025,1.513 +NM_152301,0.823,0.7,0.938,0.541,0.718,1.279,0.789,1.29,1.758,0.672,0.847,1.134,0.967,0.881,0.695,1.929,1.165,1.027,1.363,1.059,0.668,2.223,0.61,1.405,0.907,0.508,1.602,1.008,0.765,1.236,1.281,0.924,2.811,1.247,0.575,0.526,0.909,1.384,1.897,1.099,1.168,0.742,0.873,1.112,1.038,0.612,0.711,1.393,0.872,0.607,0.727,0.71,0.695,1.084 +NM_152302,0.774,0.921,1.148,0.871,0.943,0.968,0.718,0.642,1.121,0.857,0.873,0.783,0.642,0.807,0.978,1.107,0.903,0.896,0.985,1.079,0.71,0.802,1.365,0.84,0.742,0.813,1.002,0.919,0.685,1.202,0.941,1.156,1.928,1.106,0.594,1.064,0.966,0.75,0.995,1.171,1.091,1.042,1.007,1.154,0.917,1.11,1.073,0.678,1.359,0.906,0.998,1.179,0.888,1.382 +NM_152304,1.058,1.03,0.925,1.007,0.897,1.224,1.025,1.015,1.104,0.905,0.901,0.817,0.903,0.958,0.848,1.192,1.021,1.06,0.952,0.93,0.943,0.939,0.896,0.959,0.981,0.924,1.097,1.032,1.014,1.221,1.061,1.441,1.02,1.139,1.617,1.059,1.05,0.841,1.007,0.95,0.813,1.085,0.988,0.987,0.99,0.795,0.97,0.97,0.924,0.863,0.911,1.049,0.961,1.331 +NM_152306,0.988,0.908,1.03,0.997,1.189,1.077,1.062,0.924,1.069,1.024,0.901,0.912,0.844,0.964,1.043,1.01,0.895,0.988,1.071,0.919,1.058,0.974,1.134,1.026,0.995,1.009,0.975,0.994,0.798,0.984,0.985,0.998,1.002,1.015,0.97,1.039,0.997,1.005,1.035,0.977,0.953,1.025,0.877,0.917,0.883,1.057,1.054,0.872,1.038,0.976,0.978,0.969,1.166,0.977 +NM_152307,0.992,1.116,0.987,0.848,0.942,0.989,1.026,0.794,0.928,0.953,0.91,0.958,0.88,0.754,0.811,1.032,0.972,0.832,0.973,0.994,0.943,0.896,1.164,1.144,1.066,1.024,1.146,0.84,0.754,0.953,0.914,1.394,1.925,1.144,0.728,1.005,0.921,1.016,1.284,1.133,0.743,0.96,0.796,1.594,1.063,0.996,1.067,1.022,0.996,0.994,0.955,1.034,0.898,1.301 +NM_152309,0.86,0.954,0.884,0.85,0.915,1.048,1.074,0.848,0.873,0.917,1.057,0.979,0.934,1.072,1.086,0.99,1.063,0.955,0.946,0.979,0.914,1.034,1.164,0.843,1.015,0.998,0.825,0.938,1.049,0.944,0.92,0.827,1.183,0.975,1.021,1.263,0.981,1.048,1.027,1.0,1.032,1.025,1.323,1.554,1.056,1.129,0.969,0.968,1.147,1.0,1.056,1.059,0.948,1.165 +NM_152310,1.092,1.014,1.022,1.258,0.987,1.152,1.004,0.923,0.951,0.917,1.009,1.058,0.904,0.991,0.905,1.067,1.068,0.908,1.015,0.995,0.959,0.932,0.958,1.099,0.934,0.963,0.929,1.071,0.972,0.876,1.028,1.108,1.147,0.917,0.991,1.047,0.99,0.938,0.958,1.112,0.993,1.063,1.056,0.978,0.959,0.829,1.077,0.933,1.009,0.999,1.067,0.982,0.92,1.177 +NM_152311,0.437,1.128,0.424,0.884,0.384,7.014,0.63,0.39,0.387,0.384,5.046,0.42,0.431,0.34,4.419,13.24,0.463,0.664,0.444,7.057,0.381,0.408,9.264,0.417,0.432,0.452,0.408,0.433,0.482,5.33,0.391,0.806,1.982,1.546,0.44,5.204,6.021,0.408,4.909,3.507,0.394,7.454,4.383,2.643,0.428,8.022,5.133,0.401,10.25,0.368,7.77,2.027,0.439,2.683 +NM_152312,1.059,1.36,1.963,0.68,1.195,0.711,0.55,0.694,1.688,1.701,0.539,2.07,1.027,1.287,1.047,0.563,1.207,0.794,1.057,0.631,0.607,1.114,0.913,1.617,0.775,0.958,1.308,1.188,0.484,0.974,1.403,0.999,1.439,0.699,0.417,0.498,0.571,1.852,0.795,3.162,1.54,0.874,0.606,1.139,1.825,0.573,1.24,0.995,0.459,0.998,0.767,1.031,1.521,4.438 +NM_152313,0.85,0.988,1.028,0.792,0.797,0.986,0.881,0.725,1.087,0.984,1.143,0.973,0.891,0.871,0.911,1.273,0.792,0.929,0.995,0.824,0.769,0.952,1.13,1.204,1.013,0.868,1.077,0.8,0.873,1.059,0.874,1.152,1.874,1.088,0.764,1.384,1.005,0.91,1.313,1.111,1.033,0.989,1.101,0.955,0.956,0.959,0.935,0.782,1.056,0.99,1.107,0.829,1.025,1.511 +NM_152314,0.993,0.87,1.081,0.941,1.056,0.897,0.927,0.926,1.048,1.054,0.843,1.119,0.88,1.089,1.008,0.889,1.016,0.977,0.921,0.935,1.008,1.017,0.811,1.113,0.896,1.077,0.999,1.011,0.903,0.916,1.092,0.864,1.078,0.965,0.964,1.187,1.018,0.962,0.911,1.125,1.087,0.881,0.965,0.884,0.987,1.063,1.092,1.301,0.798,1.233,1.026,1.216,1.005,1.396 +NM_152315,0.966,0.973,1.016,0.894,1.078,1.035,0.936,1.126,1.005,0.972,1.044,1.036,0.947,1.16,1.285,1.081,0.943,1.098,0.987,0.973,1.01,1.081,1.115,1.073,0.989,0.989,0.962,0.994,1.085,1.063,1.077,0.836,1.083,0.922,0.939,0.814,0.967,0.953,0.94,1.32,1.055,0.857,1.138,1.077,1.041,0.963,0.957,1.028,0.947,0.894,1.05,0.873,1.011,1.024 +NM_152318,0.723,1.08,0.985,0.781,0.775,1.107,0.812,0.699,1.052,1.17,1.013,0.714,0.714,0.668,0.921,1.324,0.939,0.942,1.137,0.934,0.809,0.785,1.363,0.986,0.726,0.747,1.368,0.789,0.718,1.178,0.924,1.377,2.102,1.461,0.411,1.163,1.186,0.897,1.045,0.762,1.029,1.188,0.931,1.099,0.913,0.92,0.932,0.67,0.847,0.767,1.038,1.031,0.996,2.186 +NM_152319,1.676,1.019,4.429,1.081,1.523,0.79,0.813,1.481,1.714,2.431,0.823,1.027,1.166,1.534,0.855,0.943,2.298,1.302,2.106,0.998,1.335,1.212,0.965,1.439,0.838,1.219,3.17,1.539,0.716,0.827,1.481,0.789,1.31,0.94,0.865,0.794,0.784,1.624,0.813,0.737,2.831,0.746,0.816,0.806,2.243,0.891,1.123,1.404,0.885,1.678,0.981,1.489,3.298,1.164 +NM_152320,0.809,0.979,1.041,0.695,1.063,1.034,0.79,0.706,1.047,1.163,0.688,1.064,0.817,0.609,0.812,1.078,0.879,1.153,1.072,0.997,0.604,0.961,1.106,1.059,0.615,0.987,1.05,1.214,0.634,1.009,1.112,1.204,1.001,1.141,0.929,0.98,0.761,1.176,1.668,1.088,1.072,1.144,0.723,1.245,1.165,0.837,1.059,1.146,0.999,0.907,0.937,0.839,0.964,1.081 +NM_152321,0.875,1.129,0.865,8.99,0.995,0.871,0.958,1.087,0.801,1.096,0.894,1.239,0.884,0.845,0.92,1.076,0.872,0.752,1.501,1.079,0.957,0.73,0.945,0.904,1.875,0.711,1.895,0.877,0.814,0.978,0.873,1.021,2.141,1.255,0.785,0.814,1.054,0.883,0.756,1.985,1.23,1.186,0.968,1.086,1.017,0.931,1.292,0.914,1.539,1.539,0.92,1.359,1.561,0.917 +NM_152322,2.672,0.545,5.078,1.076,3.234,0.555,0.439,1.397,3.984,3.385,0.425,2.689,1.621,2.527,1.914,0.924,3.325,2.012,4.734,0.68,1.728,2.305,0.505,3.617,0.527,3.312,3.437,3.516,0.574,0.492,3.264,0.504,1.187,0.592,0.548,0.685,0.517,2.63,0.436,0.67,4.296,0.587,0.439,0.428,3.771,0.335,1.627,2.52,0.536,3.437,0.766,1.15,4.188,0.715 +NM_152324,1.093,0.864,0.993,1.076,1.06,0.926,1.032,0.899,1.039,0.992,0.926,1.004,0.926,0.865,0.908,0.915,0.935,0.991,1.047,0.961,1.063,0.854,1.025,0.951,0.99,0.948,0.967,0.981,1.477,1.015,1.017,0.981,1.09,0.981,0.996,0.982,0.97,0.916,1.074,1.054,1.1,0.973,1.016,0.998,0.978,1.03,1.009,1.034,0.964,0.899,0.852,1.333,1.126,1.042 +NM_152325,1.027,1.014,0.97,1.037,1.099,1.054,1.121,0.937,1.123,1.08,0.976,0.998,1.169,0.802,0.894,0.894,0.918,1.036,0.92,1.112,0.968,0.881,0.962,0.986,1.053,1.007,0.886,1.162,1.038,1.052,0.843,0.928,1.31,1.039,1.204,0.887,0.977,0.978,0.954,0.881,0.953,0.757,1.074,0.864,1.121,0.984,0.902,0.916,1.138,1.042,1.052,0.991,1.113,0.936 +NM_152326,0.772,1.046,1.009,0.886,0.878,1.347,0.647,0.749,0.83,0.779,1.999,0.724,0.79,0.989,1.498,2.797,0.862,0.884,1.511,0.888,0.466,0.735,0.935,0.979,1.122,0.99,0.957,0.724,0.697,1.243,0.995,1.03,1.15,1.5,0.812,0.559,2.351,0.703,1.82,0.78,0.746,1.44,0.855,1.248,0.825,1.061,1.103,1.653,1.068,1.183,1.037,0.552,1.143,1.461 +NM_152327,0.83,1.122,1.042,0.94,1.005,1.026,0.831,0.767,1.281,0.909,0.94,0.92,0.938,1.179,0.84,1.003,1.035,1.018,1.07,0.897,0.945,0.857,1.031,0.895,1.131,1.028,0.984,0.998,0.703,0.956,0.987,1.019,0.948,0.996,1.034,0.982,0.955,0.989,1.054,0.997,0.976,0.967,0.956,1.163,1.06,1.314,1.028,1.007,1.16,0.906,1.194,1.077,0.872,0.963 +NM_152328,0.955,1.081,1.287,0.859,1.182,0.874,0.788,0.94,1.267,0.944,0.853,1.034,1.049,0.847,1.405,0.863,0.95,0.862,1.382,0.971,1.199,1.261,0.89,1.058,1.185,1.2,0.846,1.196,0.801,0.906,1.217,1.354,1.239,1.312,0.973,0.758,0.76,1.166,1.143,0.815,1.123,1.114,0.854,1.098,1.013,0.887,1.282,0.969,0.773,1.319,0.83,0.721,0.934,0.839 +NM_152329,0.723,0.902,1.045,0.908,0.85,1.05,0.831,0.689,1.09,1.05,1.412,0.827,0.682,0.73,0.999,1.945,0.798,1.024,1.001,0.894,0.68,0.656,1.385,1.067,0.668,0.856,1.478,0.902,0.706,0.976,0.855,0.958,2.34,0.915,0.611,1.448,1.371,0.876,1.554,1.56,0.991,0.95,0.898,2.149,0.929,1.184,1.478,0.748,1.579,0.938,1.102,0.985,0.998,1.344 +NM_152330,1.673,0.45,3.155,0.771,3.055,0.472,0.5,1.793,4.646,2.48,0.604,2.222,1.438,2.269,2.051,1.185,1.262,2.037,3.186,0.535,1.409,2.944,0.702,3.124,0.456,1.59,2.825,3.879,0.306,0.638,3.69,1.258,1.346,0.751,0.956,0.377,0.496,2.3,0.474,0.956,3.128,0.822,0.499,0.495,2.68,0.577,1.782,1.66,0.43,1.035,1.016,1.237,1.916,0.719 +NM_152331,0.948,0.92,0.805,0.878,1.038,1.21,0.845,1.132,1.198,0.828,0.983,0.995,0.948,1.121,1.119,1.571,1.098,0.88,0.96,1.184,0.884,1.148,1.084,1.12,0.949,1.42,0.793,1.014,0.734,1.225,1.292,0.974,1.766,1.414,1.202,0.834,1.258,0.929,1.537,0.814,0.92,0.965,0.772,1.694,0.971,1.129,1.157,1.07,1.137,0.793,1.415,0.762,0.788,1.119 +NM_152332,0.745,1.124,1.16,1.026,0.748,1.679,1.003,0.715,0.868,0.784,1.378,0.643,0.757,0.898,1.102,1.729,0.792,1.048,0.927,1.483,0.736,0.698,1.395,0.951,0.767,0.646,0.977,0.792,0.695,1.456,0.91,1.081,1.31,1.543,0.625,0.873,1.372,0.701,1.269,0.7,0.785,1.337,1.03,1.051,0.782,1.217,0.734,0.64,1.336,0.811,1.245,0.77,0.737,1.11 +NM_152333,0.703,1.363,1.721,0.897,1.229,0.85,0.556,0.714,1.531,1.191,0.904,1.087,1.165,0.921,0.902,1.151,0.704,0.983,1.11,1.242,0.499,1.03,1.249,1.324,0.539,1.226,1.142,1.367,0.43,1.018,1.305,3.22,0.776,0.772,0.392,0.639,0.731,1.385,0.92,1.596,1.147,0.968,1.048,1.083,0.908,1.011,1.142,0.895,0.695,0.8,0.961,0.835,0.744,0.741 +NM_152334,0.748,1.009,1.06,0.875,0.78,1.007,0.712,0.638,1.104,0.866,1.052,0.967,0.843,0.733,0.861,1.02,0.83,0.832,0.934,1.004,0.873,0.834,1.238,0.863,0.923,0.875,1.207,0.713,0.632,1.016,0.93,1.464,1.57,1.242,0.645,1.067,1.011,0.929,1.025,1.024,1.001,1.145,1.0,0.749,0.907,1.007,1.008,0.734,0.941,0.944,0.852,0.88,0.964,1.226 +NM_152336,0.995,0.931,0.898,1.021,0.944,1.062,1.131,1.018,1.118,0.97,1.142,0.991,1.117,0.972,1.04,1.095,0.979,1.033,0.971,1.144,0.969,0.946,1.08,1.096,1.001,1.071,0.867,1.001,0.99,0.924,0.807,0.866,1.008,0.868,1.097,0.918,1.144,0.928,1.064,0.874,1.007,0.977,1.055,0.939,0.94,0.854,0.983,0.999,1.131,1.117,1.095,1.001,1.249,1.045 +NM_152338,0.897,1.021,0.975,7.505,0.742,3.649,0.999,0.941,0.92,1.021,19.02,0.959,1.049,0.843,26.74,29.94,0.976,0.962,0.814,55.62,0.96,0.83,6.561,0.959,0.825,1.034,0.998,0.97,0.907,1.029,0.92,0.961,0.922,2.565,1.098,0.901,28.48,0.823,2.074,0.817,0.962,11.12,10.32,1.005,0.945,16.76,1.581,0.964,89.04,1.057,10.9,0.83,0.874,1.041 +NM_152339,0.639,1.14,0.931,0.626,0.819,1.535,0.857,0.811,0.864,1.09,1.057,0.836,0.673,0.618,1.022,2.094,0.814,0.883,0.809,1.238,0.55,0.754,1.357,0.746,0.621,0.674,1.202,0.755,0.677,1.332,0.993,1.328,1.385,1.17,0.609,0.828,1.316,0.977,1.378,1.074,0.827,1.157,1.187,0.867,0.741,1.253,1.261,0.78,1.586,0.63,1.016,0.673,0.776,1.124 +NM_152340,0.927,1.08,0.963,0.863,1.001,1.046,1.062,1.102,0.947,0.938,0.953,1.049,0.888,1.035,0.931,1.085,0.995,0.904,1.046,1.112,1.011,0.926,1.049,1.106,1.068,0.946,0.991,1.05,0.87,1.012,0.917,1.113,1.094,1.154,0.963,0.933,1.144,0.945,0.986,0.973,1.101,1.012,0.981,1.018,0.972,1.12,0.871,1.125,0.95,0.989,0.939,1.091,1.076,1.037 +NM_152341,0.664,1.427,0.948,0.733,1.217,0.871,0.725,0.85,1.025,0.818,0.724,0.909,0.76,0.565,0.832,1.03,0.804,0.862,1.145,0.79,0.456,0.89,1.708,0.899,0.687,0.705,1.179,0.906,0.564,1.067,0.774,2.668,3.365,1.022,2.074,2.055,0.994,1.213,1.616,2.061,0.86,0.978,0.833,2.555,0.997,1.005,1.944,1.381,0.899,0.903,1.236,1.018,0.659,1.629 +NM_152342,1.043,1.024,1.114,1.076,1.053,0.945,0.908,1.035,1.081,1.001,1.006,1.038,0.974,1.229,1.108,0.937,1.132,0.862,0.997,1.101,0.989,1.011,0.936,0.888,0.879,0.979,1.008,1.01,1.094,0.988,1.112,1.167,0.943,1.062,1.025,1.201,0.897,0.875,0.96,1.078,0.87,1.054,1.131,0.908,0.99,1.071,0.952,1.066,1.069,1.047,0.983,1.12,1.006,0.899 +NM_152343,0.999,1.028,1.017,0.97,1.073,0.949,1.091,0.987,0.924,0.942,0.896,1.022,0.953,1.347,1.099,1.061,0.884,1.005,0.876,1.069,0.936,0.96,1.12,1.009,0.997,1.018,1.059,0.893,0.911,1.08,0.831,0.942,0.955,0.987,0.971,1.064,0.769,0.903,1.013,1.066,1.026,0.975,0.778,0.979,1.01,1.104,1.013,1.084,1.064,1.014,1.098,1.152,1.055,1.103 +NM_152344,0.537,1.097,0.988,0.596,0.762,1.396,0.657,0.701,0.885,0.929,1.058,1.115,0.712,0.507,0.792,1.412,0.634,0.986,1.102,0.822,0.521,0.568,1.341,1.151,0.541,0.81,1.068,0.804,0.496,1.105,0.778,1.34,2.771,1.289,0.294,1.231,1.042,0.713,1.709,1.102,0.919,1.041,0.611,1.545,0.893,0.864,0.842,0.632,1.133,0.81,1.064,1.266,0.971,1.548 +NM_152345,1.053,0.885,1.084,1.023,0.94,0.874,1.259,1.216,1.056,1.059,1.114,0.919,1.115,1.054,0.983,1.047,0.98,1.098,0.988,0.946,1.258,1.05,0.788,0.92,0.967,0.939,0.927,1.024,1.17,1.123,1.129,0.982,1.018,0.797,1.06,0.929,1.054,1.046,0.985,1.027,0.961,0.936,1.181,1.031,1.028,0.952,0.943,0.999,0.855,0.839,0.989,0.996,1.004,1.052 +NM_152346,0.295,1.611,0.804,0.874,0.313,1.486,1.076,0.228,0.295,0.348,1.024,0.274,0.272,0.33,0.491,1.548,0.595,0.767,0.277,1.492,0.229,0.278,2.095,0.324,0.662,0.334,0.73,0.301,1.199,3.417,0.334,2.111,0.706,1.984,0.2,1.013,2.021,0.336,1.355,3.877,0.443,2.179,0.731,2.079,0.408,0.802,1.338,0.288,1.059,0.419,1.026,1.461,0.438,1.85 +NM_152348,1.006,0.98,0.916,0.849,0.976,0.941,1.005,0.884,0.832,0.882,1.04,0.806,0.788,0.977,0.954,0.943,1.05,0.841,1.042,0.897,0.985,1.005,1.078,0.89,0.932,0.968,1.138,0.778,1.157,1.186,0.821,1.4,1.125,1.223,0.862,0.91,0.959,1.146,1.407,1.07,0.94,1.189,0.828,1.354,0.978,0.866,0.759,0.867,0.862,1.055,0.963,0.843,1.011,1.066 +NM_152349,1.082,1.02,1.22,0.897,1.012,1.039,1.04,1.033,1.128,0.995,1.068,1.028,1.125,1.096,0.945,1.029,0.903,1.0,0.948,0.937,1.002,1.02,1.052,0.98,1.186,0.894,1.091,0.997,1.668,1.049,0.891,0.903,0.95,1.039,1.051,0.894,0.859,1.199,1.135,0.977,0.97,1.108,1.096,1.074,1.027,1.029,0.913,1.024,0.948,1.164,1.008,1.057,0.999,0.919 +NM_152350,0.614,0.76,1.357,0.738,0.879,0.998,0.363,0.644,1.15,0.961,1.412,1.177,1.126,0.688,1.136,1.457,0.689,1.116,1.446,1.013,0.516,0.771,2.114,1.193,0.654,1.052,1.507,1.044,0.308,1.028,0.967,1.029,0.816,1.365,0.179,0.802,1.4,1.591,1.034,0.469,0.952,1.121,0.518,1.398,0.807,0.911,0.785,0.709,0.968,0.806,1.145,0.45,0.823,1.117 +NM_152351,0.971,0.974,1.11,0.942,1.225,0.897,0.795,0.958,1.199,1.454,1.109,1.2,1.038,0.877,0.882,1.116,0.961,1.168,1.188,0.999,1.059,1.016,0.958,0.984,0.798,1.075,1.033,1.105,0.857,0.876,0.917,0.995,0.898,1.124,1.011,0.942,0.911,1.533,0.918,0.911,1.078,1.02,0.844,0.918,1.112,0.965,1.017,1.02,0.92,1.232,0.901,0.992,1.187,1.063 +NM_152352,0.921,0.939,1.166,0.789,1.201,0.885,0.765,0.913,1.621,1.166,0.931,0.997,0.924,0.988,1.059,1.342,0.809,1.004,1.199,0.812,0.864,0.96,0.995,1.258,0.673,0.94,1.229,1.662,0.618,1.024,1.084,1.118,1.07,0.856,1.287,2.128,0.969,1.126,1.047,0.994,1.242,0.928,0.914,1.505,1.088,1.107,1.634,0.876,1.14,0.978,0.967,1.016,1.022,1.138 +NM_152353,1.029,1.32,0.944,0.824,1.014,1.109,1.103,1.097,0.933,0.969,1.018,0.926,1.019,1.084,1.365,0.998,1.073,0.945,1.093,1.133,1.036,1.033,1.056,1.006,0.872,0.978,0.999,0.826,0.854,1.207,1.119,0.93,1.132,1.018,0.977,1.013,1.011,0.939,1.004,1.011,1.06,0.999,0.979,0.836,1.053,0.985,0.905,1.022,1.006,1.018,0.911,0.856,1.035,0.929 +NM_152356,1.141,0.951,1.015,1.022,0.979,0.956,0.946,1.046,0.846,0.944,1.03,1.065,0.847,1.253,1.112,0.901,0.98,1.087,1.1,0.934,1.055,0.849,0.902,0.952,1.002,0.932,0.989,0.959,0.905,0.933,0.917,0.945,0.993,0.856,0.966,0.994,0.947,0.927,1.118,0.985,0.912,0.909,0.979,1.07,0.915,1.035,1.0,1.029,1.017,0.928,1.063,1.083,1.017,0.863 +NM_152358,0.923,0.954,0.954,0.864,0.874,1.146,0.854,1.047,1.054,0.991,1.1,0.919,0.967,0.868,1.13,1.133,1.171,0.868,1.029,0.967,1.091,0.954,0.971,0.99,1.126,0.896,0.877,1.152,0.904,0.935,1.0,1.054,0.978,0.897,0.876,1.09,1.112,1.06,0.981,1.012,0.923,1.118,0.976,0.975,1.07,1.064,1.09,1.093,0.955,1.055,1.04,0.953,0.919,1.035 +NM_152359,1.026,0.947,1.041,0.928,1.032,0.961,0.859,0.996,0.985,0.991,0.962,1.046,1.126,1.028,1.299,1.016,0.993,0.907,0.923,1.01,1.02,1.015,1.088,1.123,0.841,1.022,1.22,0.98,1.291,0.949,1.059,1.33,0.849,1.033,0.918,1.115,0.873,1.084,0.911,1.348,1.032,1.033,1.067,1.0,0.96,0.829,0.917,1.032,0.979,1.098,0.904,1.257,1.355,0.939 +NM_152360,0.929,1.109,1.201,0.976,0.909,1.009,1.046,0.967,1.186,0.927,0.882,0.896,0.861,0.916,1.082,1.05,0.914,0.978,0.929,1.099,0.978,1.041,1.129,1.146,0.954,0.874,1.219,0.935,0.71,1.194,1.168,1.295,1.72,1.237,0.651,0.963,1.066,1.121,0.992,1.02,0.931,1.155,0.828,0.911,0.998,1.011,0.941,0.729,0.994,0.797,1.119,0.922,0.883,1.566 +NM_152361,1.062,1.018,1.065,0.927,0.953,1.034,0.903,1.008,0.926,1.015,1.042,1.022,0.81,1.095,0.974,0.983,1.079,1.113,1.072,1.043,1.081,1.044,1.171,0.987,1.024,1.009,0.885,0.893,1.305,0.985,0.957,1.119,1.547,0.884,0.968,1.024,0.953,0.766,0.939,1.062,0.988,1.003,1.084,0.954,0.934,0.97,1.035,0.888,1.169,0.979,0.94,0.959,0.835,1.022 +NM_152365,1.023,0.899,1.033,1.116,0.783,1.269,0.768,0.737,0.988,0.971,1.024,0.944,1.006,0.949,0.893,1.278,1.066,0.947,1.182,1.068,0.707,1.067,0.946,1.008,0.914,1.131,1.063,0.873,0.81,1.11,0.962,0.728,1.288,1.164,0.764,0.892,0.996,1.018,1.653,0.73,0.904,0.912,0.939,1.236,1.011,0.948,0.855,1.196,0.909,1.129,0.963,0.83,0.817,1.054 +NM_152366,0.882,1.33,1.057,0.951,0.887,1.486,0.968,0.701,0.857,0.865,1.312,0.978,0.832,0.942,1.076,1.547,0.829,1.007,1.202,1.3,0.833,0.837,1.047,0.801,0.976,0.811,0.838,0.821,0.958,1.352,0.848,1.37,2.35,1.387,0.798,1.326,1.121,0.941,1.023,0.682,0.842,1.322,1.029,1.372,0.764,1.11,1.001,0.88,0.921,0.873,1.199,1.008,0.908,0.919 +NM_152369,0.516,1.062,0.635,0.987,0.698,1.739,0.736,0.554,0.812,0.404,1.527,0.551,0.489,0.476,1.056,2.148,0.741,1.114,0.748,1.403,0.366,0.551,1.874,0.661,1.119,0.634,0.589,0.709,0.779,1.322,0.71,1.013,2.382,2.671,0.34,0.756,1.565,0.528,1.93,0.609,0.608,1.63,0.917,0.878,0.642,1.397,0.785,0.736,0.757,0.818,1.346,0.613,0.551,1.055 +NM_152372,0.921,0.96,0.767,1.006,1.054,1.103,1.114,0.835,1.055,1.032,1.0,1.039,0.889,1.0,0.976,1.035,0.898,1.067,1.179,1.116,1.048,0.997,1.138,0.986,0.84,0.964,0.95,0.993,1.081,0.977,0.937,1.016,1.192,0.944,0.993,1.148,0.903,1.054,1.161,1.445,0.959,1.154,0.914,1.008,1.024,1.217,1.021,1.056,0.982,0.949,0.955,0.954,0.97,0.912 +NM_152373,0.739,1.095,1.051,0.93,0.888,1.232,0.876,0.761,0.849,1.103,1.086,1.051,0.918,0.933,0.94,1.455,0.92,0.914,0.86,0.982,0.786,0.912,1.062,0.898,0.974,0.825,1.179,0.87,1.096,1.169,1.011,1.398,1.528,1.13,0.926,0.938,1.042,0.996,1.246,1.048,0.945,1.117,0.996,0.803,0.932,1.076,1.08,1.051,0.984,0.809,1.215,1.024,0.834,1.409 +NM_152374,1.022,1.088,0.983,0.935,1.035,0.926,0.847,0.731,0.72,1.059,1.013,1.005,0.804,0.815,0.794,0.902,1.016,1.046,0.803,0.994,1.003,0.827,1.239,0.961,1.083,0.813,1.028,0.824,1.233,1.186,0.765,2.324,1.564,1.04,0.775,1.197,0.878,0.999,1.307,1.024,1.026,1.185,1.043,1.976,0.963,0.801,1.023,1.061,0.832,0.921,1.048,1.154,0.915,1.767 +NM_152375,0.983,1.044,1.134,0.745,1.059,1.398,0.943,0.941,1.181,1.014,0.926,0.955,0.832,1.476,1.546,1.083,0.956,0.994,1.016,1.269,1.066,1.039,1.187,1.023,0.943,0.998,1.099,1.135,1.078,0.983,0.927,0.842,1.208,0.951,0.888,0.869,1.025,0.984,1.011,0.974,0.796,1.23,0.91,1.15,1.058,1.272,1.032,0.943,0.782,1.203,1.099,0.921,1.046,0.977 +NM_152376,0.742,1.074,0.923,0.904,1.153,1.123,0.833,0.875,1.086,1.009,0.931,0.932,0.959,0.733,0.762,1.152,0.99,1.1,0.998,1.19,0.948,0.88,1.158,0.82,0.739,0.85,1.026,0.949,0.823,0.914,1.009,0.951,1.318,1.087,1.718,1.015,1.073,0.854,1.326,0.877,0.906,1.059,0.768,1.118,1.163,0.853,1.1,1.047,0.911,0.979,1.04,0.928,0.98,1.218 +NM_152377,1.043,0.911,1.086,1.048,1.176,0.989,1.119,1.234,0.795,1.041,1.065,1.04,1.07,0.869,0.922,0.929,0.989,0.907,1.074,0.946,0.961,1.022,0.983,0.907,1.08,1.074,0.918,1.184,1.193,1.054,0.914,0.903,1.079,0.88,0.985,1.03,1.05,1.082,1.084,0.856,0.956,0.996,1.259,0.994,1.033,1.07,0.98,1.086,1.02,0.963,0.986,0.982,1.104,0.885 +NM_152378,0.952,1.099,1.189,0.965,0.996,0.896,1.102,0.919,1.053,1.076,0.785,0.933,0.894,1.026,0.885,0.87,1.097,0.975,1.114,1.017,0.847,0.917,1.0,1.226,0.98,0.874,1.438,0.966,0.789,1.011,0.994,1.129,2.212,1.104,0.836,0.935,0.786,1.082,1.023,1.338,1.142,0.944,0.956,1.072,1.133,0.865,1.038,0.912,0.85,1.321,0.942,1.107,1.084,1.433 +NM_152379,0.486,1.04,1.067,0.711,0.74,1.402,0.59,0.557,0.861,0.694,1.571,0.698,0.598,0.57,0.859,2.305,0.701,0.786,1.131,1.115,0.614,0.699,1.117,0.693,0.59,0.659,1.237,0.629,0.474,1.113,0.626,1.456,3.115,1.401,0.288,1.09,1.283,0.447,1.255,0.795,0.827,1.074,0.603,1.608,0.767,1.125,0.919,0.601,1.135,0.691,1.04,0.675,0.754,2.137 +NM_152381,1.225,0.986,0.959,0.938,0.783,0.941,0.864,1.158,1.05,1.079,0.927,1.012,1.013,1.088,0.718,1.004,1.028,0.842,1.098,0.938,1.115,0.902,0.922,1.01,1.001,0.971,0.973,0.919,0.63,0.915,1.027,1.022,0.924,0.834,0.854,0.915,0.882,0.978,1.025,1.08,0.891,1.005,0.973,0.951,0.982,0.989,1.129,0.873,1.028,1.061,1.054,0.913,1.061,0.985 +NM_152382,0.863,1.036,0.929,0.915,0.897,0.962,1.129,1.083,0.809,1.018,0.959,0.872,0.905,1.113,0.832,1.074,0.999,0.979,0.89,1.154,0.992,1.108,1.101,0.89,0.899,1.016,0.985,1.218,1.363,1.127,0.973,0.952,1.323,0.924,1.129,0.938,0.976,1.136,1.001,0.891,1.009,1.032,1.07,0.783,0.966,0.969,1.128,0.903,0.972,1.006,1.017,0.945,0.991,1.024 +NM_152383,1.226,0.962,0.925,1.179,1.122,0.983,0.813,0.975,1.187,1.128,0.96,0.933,1.045,0.901,0.938,1.041,0.969,1.002,1.121,0.895,0.996,1.344,0.952,1.255,0.931,1.474,1.089,0.988,0.801,1.068,1.163,1.132,1.178,1.031,0.918,0.892,0.936,1.313,1.158,0.805,1.106,0.806,1.002,1.115,1.051,0.875,0.967,1.356,0.994,1.045,0.833,0.877,1.158,1.134 +NM_152385,1.012,0.999,0.973,0.989,0.935,1.201,1.07,0.957,1.001,1.002,1.219,1.044,0.977,0.846,1.052,1.076,0.938,0.84,0.946,1.014,0.831,0.961,1.175,1.162,1.122,1.093,0.946,0.965,1.165,0.913,1.143,0.88,1.19,0.98,0.914,0.95,1.024,0.947,0.824,1.308,1.01,1.143,0.957,0.956,1.01,1.054,1.119,0.965,0.931,0.919,0.908,0.909,0.998,1.101 +NM_152386,0.785,0.806,1.011,0.899,0.786,1.428,0.881,0.617,0.848,0.976,0.973,0.782,0.663,0.749,0.738,1.98,0.984,0.901,1.375,0.968,0.754,0.731,1.19,1.254,0.797,1.012,1.142,0.704,0.818,0.98,0.765,1.0,1.655,1.088,0.601,0.794,1.226,0.809,1.373,0.878,0.899,1.117,1.056,1.55,1.06,1.153,0.93,0.757,1.218,1.012,1.298,0.728,0.967,1.507 +NM_152387,0.98,1.057,0.841,0.94,0.962,1.097,1.165,1.021,1.084,0.982,1.019,0.988,0.911,1.056,1.098,1.057,0.976,1.142,1.062,0.998,1.073,1.092,0.992,0.987,0.943,0.893,0.976,1.13,0.966,0.895,0.923,0.961,1.147,0.934,1.031,1.053,1.005,1.029,0.962,0.901,1.022,0.972,0.9,0.933,1.144,1.097,1.035,1.045,1.003,0.981,1.028,0.958,0.961,1.029 +NM_152388,1.054,0.891,2.072,0.83,1.373,0.771,0.549,0.852,1.507,1.308,0.859,1.276,1.047,1.077,1.328,1.042,1.174,0.933,1.709,0.793,0.957,0.832,1.168,1.289,0.628,1.105,1.51,1.311,0.483,0.719,1.395,1.331,2.778,1.092,0.463,1.114,0.729,1.158,1.056,0.867,1.488,0.701,0.669,1.546,1.355,0.819,0.901,0.819,0.757,0.934,0.942,0.899,1.48,3.286 +NM_152390,0.829,0.959,0.894,1.007,0.823,0.994,1.001,1.104,1.009,0.969,1.113,0.97,1.016,1.075,1.044,0.957,0.956,0.951,0.916,1.014,0.957,1.13,0.898,1.003,1.046,0.926,0.961,0.974,1.198,1.017,0.938,1.157,0.981,0.936,1.078,0.969,1.083,0.976,1.012,0.955,1.01,1.172,1.005,0.945,0.884,0.903,0.959,1.006,0.942,1.054,0.985,0.958,1.055,0.899 +NM_152392,0.855,1.134,1.052,0.947,0.972,0.978,0.806,0.948,1.198,0.849,0.853,1.014,0.812,1.021,1.257,0.988,1.04,0.764,1.009,1.046,0.9,0.987,0.975,1.445,0.958,0.91,1.348,1.025,0.638,1.13,1.222,2.026,1.628,1.067,0.976,0.918,1.049,1.05,0.954,1.505,0.916,0.953,0.859,1.019,0.911,1.084,1.094,0.995,1.001,0.871,0.925,0.873,0.936,1.98 +NM_152394,0.948,1.0,1.058,0.963,0.929,1.041,1.046,0.799,0.914,0.745,1.03,1.005,1.027,1.013,0.969,0.897,1.06,1.008,1.035,0.938,1.168,1.098,0.921,1.181,0.809,1.085,0.987,1.15,0.926,0.928,1.087,1.039,0.965,1.069,1.002,1.163,0.953,0.891,0.915,0.926,1.057,0.956,0.916,1.025,1.035,1.119,1.05,0.959,1.058,0.909,0.878,1.006,1.023,0.995 +NM_152395,0.866,1.096,0.964,0.96,0.874,1.347,0.871,0.846,0.972,0.848,1.049,0.895,0.79,0.859,1.024,1.562,0.814,0.936,0.847,1.304,0.787,0.827,1.356,0.836,0.951,0.876,0.914,0.87,1.063,1.6,0.867,1.533,1.642,1.664,0.735,0.88,1.203,0.722,1.404,0.791,0.96,1.268,1.267,1.238,0.838,1.248,0.822,0.812,1.114,0.751,1.171,0.848,0.835,0.997 +NM_152396,0.897,0.93,1.13,0.735,0.899,1.1,1.016,0.891,1.098,0.902,1.033,0.926,0.848,0.875,1.093,1.158,1.025,0.936,1.218,0.891,1.083,0.89,1.101,1.144,0.792,0.924,0.934,0.88,1.079,1.12,0.971,1.137,1.387,1.124,0.749,0.954,1.006,1.085,1.24,0.858,0.985,0.95,0.852,0.997,1.026,0.934,0.913,0.907,0.969,0.96,0.866,1.039,1.029,1.231 +NM_152397,0.909,1.067,0.999,0.951,1.33,1.034,0.88,1.009,0.875,0.896,1.03,1.086,1.022,1.107,1.343,1.192,0.82,1.133,0.95,0.867,0.886,0.945,1.138,1.03,1.107,0.821,1.16,1.146,1.135,1.159,1.067,0.99,1.074,1.064,0.972,0.912,1.179,0.949,0.977,1.143,1.094,0.935,1.011,1.033,1.227,1.373,0.975,1.084,0.912,0.841,0.992,1.098,1.138,0.966 +NM_152398,0.477,0.757,0.783,1.204,0.49,3.654,1.515,0.553,0.529,0.606,3.133,0.679,0.562,0.395,1.007,5.183,0.552,0.981,0.552,1.18,0.434,0.608,1.139,0.642,0.695,0.503,0.865,0.573,0.999,2.207,0.524,1.027,3.932,1.753,0.303,1.602,2.956,0.991,4.766,1.053,0.532,1.431,1.334,1.566,0.706,1.294,1.448,0.555,1.075,0.567,3.151,1.403,0.587,0.994 +NM_152399,1.015,0.872,0.915,1.198,1.095,0.981,1.018,0.838,1.031,0.871,1.04,1.025,0.968,1.076,0.889,0.917,0.931,0.947,1.094,0.916,1.065,0.86,1.115,1.121,0.79,1.009,1.004,1.074,1.088,0.998,1.168,0.992,1.011,0.959,1.0,0.903,1.024,0.957,1.112,1.089,0.938,1.086,0.971,1.037,0.917,1.179,0.997,1.037,0.978,0.973,1.114,0.942,0.994,1.06 +NM_152400,0.769,1.326,0.996,1.072,0.909,1.826,1.518,0.762,1.004,1.141,1.245,1.086,0.747,0.754,0.721,1.023,0.914,1.387,0.939,1.014,0.748,0.81,1.053,1.345,1.159,0.861,1.222,0.889,1.214,1.568,0.839,1.164,0.852,2.425,0.578,0.89,1.377,0.948,1.481,0.911,1.02,1.112,0.851,0.951,1.093,0.902,1.197,0.777,1.026,0.913,1.038,0.88,1.128,0.903 +NM_152401,1.04,0.875,1.133,1.093,1.061,0.858,1.255,0.973,0.944,1.124,0.916,0.952,0.951,0.763,0.905,1.001,0.892,1.089,1.099,0.805,1.156,1.06,0.913,0.828,0.991,1.073,1.022,1.08,0.861,0.965,1.022,0.998,0.978,1.04,1.192,0.922,1.052,0.919,0.956,1.119,1.064,1.158,0.986,1.03,0.832,1.008,0.98,1.054,1.005,1.219,1.148,0.968,0.804,1.074 +NM_152402,0.914,1.141,0.916,0.915,1.106,1.008,1.178,0.961,1.092,0.946,0.988,0.975,0.946,1.007,1.017,1.048,0.98,0.814,0.922,0.991,1.025,1.016,0.961,0.923,1.059,1.027,1.08,0.912,1.005,1.08,1.029,1.504,0.887,1.071,1.072,0.961,0.926,1.071,1.027,1.144,0.904,1.092,1.116,0.885,1.163,1.123,0.956,0.859,0.906,0.843,1.084,0.941,0.838,1.212 +NM_152403,1.048,1.146,0.867,0.877,1.032,0.983,0.945,0.921,0.96,0.975,0.923,1.064,1.027,1.195,0.966,1.038,1.071,1.068,0.977,0.989,1.132,0.98,0.896,1.026,1.077,0.971,1.313,1.085,0.856,0.915,0.927,0.979,1.038,0.962,0.997,0.994,1.081,0.914,0.974,0.968,0.945,1.013,0.828,1.051,0.963,1.054,1.051,1.016,1.112,0.999,0.924,0.998,0.98,1.071 +NM_152404,1.078,0.966,0.904,0.967,1.227,0.996,1.13,1.101,0.975,0.994,0.966,1.056,0.946,1.168,1.199,0.929,1.033,0.887,1.036,1.113,1.026,0.951,0.978,1.109,1.001,0.913,1.054,0.99,0.986,1.0,1.089,1.072,1.107,0.937,0.923,1.0,0.915,1.059,1.085,1.12,1.011,0.878,1.072,1.049,1.011,1.07,0.921,1.025,0.923,0.902,0.997,1.109,0.966,0.964 +NM_152405,1.06,0.977,1.206,0.947,1.084,0.947,0.798,1.187,1.069,1.093,0.847,1.106,0.908,1.253,0.925,1.036,1.058,0.947,1.14,0.917,0.954,1.049,1.139,1.077,0.75,1.026,1.141,0.998,0.626,0.972,1.09,0.991,1.521,1.089,1.109,0.877,0.937,1.138,0.888,0.936,1.03,1.028,0.799,0.999,1.066,0.947,1.046,0.941,0.862,1.13,0.89,0.869,1.152,1.483 +NM_152407,3.146,0.637,2.542,0.942,4.73,0.676,0.485,8.092,5.235,2.626,0.608,3.096,2.327,1.221,2.389,1.928,1.651,2.735,3.433,0.53,1.185,2.908,0.725,2.961,0.474,1.787,2.471,2.893,0.411,0.728,4.288,0.803,2.717,0.712,5.703,0.535,0.762,3.827,0.834,0.479,2.516,0.628,0.475,0.526,3.339,0.547,2.247,3.69,0.752,1.408,0.864,0.917,1.161,1.31 +NM_152408,0.834,1.174,1.064,0.995,0.928,1.197,0.955,0.701,0.961,0.831,1.061,0.842,0.809,0.768,1.034,1.139,0.85,0.898,0.974,1.027,0.849,0.821,1.041,0.91,0.927,0.752,1.203,0.866,1.235,1.132,0.846,1.275,1.535,1.263,0.775,1.21,1.011,0.768,1.166,0.835,0.939,1.106,0.838,1.36,0.896,1.106,1.0,0.877,0.966,0.813,0.939,0.989,1.015,1.6 +NM_152410,1.134,0.836,1.16,0.855,1.024,0.98,0.937,1.052,1.054,1.03,1.133,1.063,0.984,1.114,1.131,1.017,1.058,0.984,0.89,0.873,0.938,0.905,1.08,0.967,0.986,1.044,0.928,1.014,1.097,0.991,0.83,1.011,0.891,0.881,0.977,0.944,1.025,1.044,1.129,0.927,1.068,0.865,1.253,1.071,0.88,1.035,1.036,1.111,0.966,0.934,1.0,0.912,0.896,1.029 +NM_152412,0.835,1.075,1.001,0.86,1.035,0.892,0.845,0.91,0.866,1.116,0.951,1.056,0.878,1.097,0.823,0.808,0.876,1.007,0.944,1.145,0.909,0.927,1.075,0.891,1.061,0.994,0.995,1.163,1.522,1.005,0.945,1.242,1.034,1.08,1.116,0.924,0.795,1.196,1.286,1.082,0.981,0.98,1.18,0.858,0.832,0.842,1.197,0.966,0.788,1.086,0.953,0.865,0.821,1.054 +NM_152413,1.065,0.99,0.903,0.978,0.965,0.967,0.916,0.963,1.04,0.911,1.119,1.035,0.967,0.894,0.814,0.858,0.997,0.943,0.972,1.012,1.14,1.128,0.965,1.073,0.89,1.026,0.902,0.987,1.035,0.876,0.992,1.071,0.917,1.075,1.047,1.084,1.145,0.884,0.979,0.962,1.01,1.06,0.979,1.037,1.064,1.061,0.914,1.048,1.023,1.057,1.016,1.051,1.23,1.002 +NM_152414,0.93,0.953,1.085,0.956,0.846,0.956,0.875,0.998,0.979,1.009,1.197,0.957,0.982,0.898,0.907,0.972,1.096,1.075,1.061,0.916,1.165,0.842,0.778,1.076,1.025,0.939,1.091,1.096,0.698,1.089,1.004,0.96,1.002,0.993,0.895,1.0,1.01,1.007,1.036,0.981,0.934,1.056,1.13,0.964,1.133,1.072,0.936,0.867,0.943,1.063,1.17,1.07,0.954,0.937 +NM_152415,1.208,0.82,0.943,0.99,0.838,1.04,0.89,1.006,0.95,0.994,1.017,0.992,1.103,0.959,1.121,1.233,1.013,1.083,1.036,0.907,0.873,0.939,1.007,1.081,1.087,1.045,1.084,1.113,0.905,1.145,1.2,1.016,1.035,1.057,1.094,0.914,1.07,1.05,0.923,0.9,1.13,0.917,0.901,0.937,0.939,0.977,0.918,0.981,1.129,1.022,1.02,1.099,1.09,0.981 +NM_152416,0.812,1.076,1.074,0.692,0.882,1.423,0.825,0.765,1.027,0.893,1.09,0.893,0.806,0.73,1.284,1.871,0.779,0.906,1.263,0.987,0.735,1.022,1.16,1.045,0.669,0.841,1.022,0.787,0.623,0.975,0.937,1.089,5.052,1.26,0.61,0.913,1.025,0.979,1.246,0.942,0.918,0.946,0.798,1.119,0.992,1.228,0.932,0.846,1.307,0.886,0.902,0.819,0.802,2.772 +NM_152417,0.79,1.015,0.997,0.842,0.826,1.166,0.717,0.644,0.955,0.682,1.181,0.916,0.901,0.761,0.985,1.557,0.878,1.071,1.021,1.222,0.612,0.787,1.039,0.883,0.794,0.823,0.996,0.786,0.701,1.276,0.88,1.191,1.869,1.461,0.587,0.979,1.04,0.854,1.34,1.42,0.867,1.114,0.758,1.007,0.887,1.619,0.991,0.774,1.262,0.806,1.19,0.819,0.746,1.374 +NM_152418,1.126,1.047,0.973,0.987,0.933,1.017,0.843,1.176,1.02,0.963,0.973,0.967,0.982,0.784,1.153,0.937,0.964,1.083,0.926,0.934,1.079,1.188,0.88,1.093,0.96,0.868,1.093,0.94,1.17,1.068,0.972,0.907,1.125,0.931,1.093,1.01,1.119,1.111,1.034,0.934,0.973,1.034,1.278,0.944,1.006,1.103,1.045,0.905,0.917,0.969,1.073,1.116,0.937,1.104 +NM_152421,0.968,1.751,0.853,0.9,0.929,1.017,0.956,0.852,0.838,0.948,1.01,0.954,0.909,0.767,0.919,0.962,0.976,1.001,1.067,0.853,0.836,0.939,0.969,0.746,1.043,0.964,1.01,1.073,0.584,1.266,0.943,4.053,0.914,1.461,0.786,1.191,1.068,1.051,1.293,2.742,1.117,1.484,0.888,0.871,1.021,0.901,1.105,0.919,0.954,0.955,1.036,1.242,0.908,0.997 +NM_152422,1.8900000000000001,2.06,1.8820000000000001,1.7770000000000001,1.838,2.307,1.822,1.977,1.8359999999999999,1.8840000000000001,2.152,2.023,1.849,1.7730000000000001,1.958,2.099,1.892,1.755,1.903,2.0279999999999996,1.7799999999999998,1.925,1.967,1.779,2.104,2.0789999999999997,1.9020000000000001,2.026,1.9769999999999999,2.051,1.9060000000000001,2.76,2.409,2.155,1.7570000000000001,2.051,2.195,2.126,2.029,2.246,2.005,2.031,1.635,1.963,2.0100000000000002,1.9580000000000002,1.866,1.9249999999999998,1.897,1.8539999999999999,2.023,1.8170000000000002,1.737,2.389 +NM_152423,1.205,0.91,1.102,1.16,0.802,1.119,1.011,1.043,0.94,1.169,1.116,0.922,0.927,1.042,0.887,0.988,0.961,0.93,1.005,0.918,1.013,0.933,0.879,0.944,1.274,0.996,0.989,0.999,1.009,0.993,1.017,1.691,1.047,1.036,0.866,1.044,1.069,0.97,0.948,1.024,1.188,1.045,1.039,1.002,1.012,0.766,1.089,1.087,0.973,0.983,1.097,1.054,0.96,0.856 +NM_152424,1.364,0.905,1.405,0.946,1.136,0.876,0.807,0.801,1.532,1.334,0.96,1.081,0.927,1.423,1.064,0.914,1.06,0.887,1.365,0.765,0.884,1.368,0.899,1.182,1.003,1.534,0.966,1.258,1.02,0.967,1.331,1.231,1.276,1.038,0.844,0.853,0.87,1.071,1.083,0.776,1.15,0.915,1.079,0.928,1.189,0.854,0.95,1.139,0.925,0.96,0.845,0.694,0.901,1.096 +NM_152425,0.894,0.999,1.146,0.802,0.965,1.082,0.937,1.007,0.994,1.03,0.996,1.098,1.031,0.94,1.111,1.093,0.87,1.177,0.983,0.973,0.934,1.038,0.908,1.088,0.906,1.006,1.142,1.05,0.672,0.93,0.957,1.017,1.151,1.105,0.846,1.055,0.886,1.039,1.15,0.942,1.184,0.941,0.832,0.959,0.982,0.954,1.038,1.014,1.007,1.031,0.849,0.874,1.021,1.067 +NM_152426,1.093,0.931,0.931,1.06,1.054,0.985,0.981,0.85,1.053,0.92,0.942,1.067,1.034,1.1,1.086,0.887,1.011,0.985,0.972,1.001,0.907,0.96,0.958,1.067,0.94,1.105,1.047,1.065,1.034,1.146,1.042,1.113,0.792,0.958,0.931,1.048,0.925,1.215,1.12,0.999,1.023,0.965,1.039,0.976,1.123,0.937,1.087,1.124,1.183,1.09,1.045,0.96,1.052,0.859 +NM_152428,1.073,0.888,0.955,0.933,0.976,0.954,1.044,1.158,0.965,0.978,1.015,1.047,1.007,0.871,1.054,1.112,0.988,1.128,0.927,0.944,1.0,1.0,1.003,0.966,1.033,1.115,1.112,1.04,1.543,0.967,1.012,1.006,1.118,1.088,1.126,1.077,0.883,1.122,1.011,0.993,0.789,0.959,1.134,0.886,1.211,0.832,0.859,0.929,1.02,1.077,1.021,0.889,1.026,0.873 +NM_152430,0.988,1.014,0.956,0.985,0.847,0.794,1.17,1.093,0.938,1.022,0.867,1.003,1.0,0.984,0.996,1.213,1.001,0.883,0.915,0.923,1.049,1.015,0.939,1.286,0.979,0.942,1.199,1.06,1.071,1.015,1.174,0.966,0.986,1.103,0.978,1.105,0.922,0.812,0.919,0.891,0.947,1.0,0.96,0.932,0.887,1.239,0.895,0.874,1.147,0.87,1.004,0.914,1.013,1.013 +NM_152431,1.001,1.026,0.92,0.92,1.097,1.103,0.91,0.97,0.905,0.879,1.231,0.981,0.886,0.927,0.999,1.019,0.968,0.982,0.952,1.012,0.947,0.828,1.331,0.906,1.028,0.824,0.816,0.9,1.065,1.024,0.935,0.911,1.105,1.104,1.036,1.097,1.076,0.906,0.981,0.917,0.856,1.062,1.222,0.895,0.884,1.068,1.045,0.882,1.054,1.054,1.043,0.867,1.15,1.208 +NM_152433,0.829,1.198,1.012,1.008,1.01,0.961,1.164,0.871,1.045,1.045,1.056,0.99,1.24,0.684,1.094,1.132,1.054,1.0,0.921,1.126,0.931,1.012,0.915,0.962,1.0,0.864,1.009,0.958,0.689,1.288,1.022,1.086,0.915,0.96,0.917,0.901,0.935,0.824,1.003,0.915,0.994,1.023,0.836,0.899,0.882,0.997,1.14,0.905,0.932,1.031,0.992,0.922,0.813,1.146 +NM_152434,0.658,1.232,1.479,0.792,0.963,1.138,0.909,0.592,1.182,0.995,0.96,0.969,0.684,0.809,0.951,1.147,1.045,0.93,1.17,1.227,0.766,0.985,1.019,0.986,0.727,0.647,1.596,0.898,0.492,1.641,0.936,1.454,1.258,1.537,0.47,1.561,1.05,1.019,1.142,0.923,1.131,1.474,0.748,0.948,0.887,0.978,0.885,0.73,0.907,0.796,1.009,0.757,0.874,1.264 +NM_152435,0.914,0.91,0.999,1.008,1.078,1.014,0.864,1.185,0.887,1.014,1.031,0.979,1.039,1.025,0.945,0.886,0.939,1.101,1.125,0.972,0.985,1.014,1.002,0.964,1.083,1.01,0.941,1.145,0.789,0.896,1.018,1.205,0.899,1.055,0.999,0.988,0.995,0.976,0.913,0.907,0.935,0.919,0.891,1.099,0.941,0.863,1.033,1.071,0.945,1.129,0.973,0.981,1.377,1.201 +NM_152436,0.98,1.094,1.151,1.129,1.149,0.939,0.948,0.967,1.119,1.074,1.14,0.952,0.962,0.839,1.112,1.034,1.051,0.998,0.892,1.054,1.081,0.991,1.022,1.031,1.023,1.057,0.996,0.985,0.993,0.885,0.947,0.935,1.048,0.986,1.07,0.981,1.032,1.075,0.871,0.873,1.158,1.028,0.826,1.064,0.98,0.986,0.86,1.022,1.053,1.111,0.98,1.044,1.13,1.111 +NM_152439,1.0,1.084,0.991,1.042,1.005,0.966,0.783,0.918,1.085,1.225,0.838,1.04,1.033,0.857,0.796,1.044,1.025,1.0,1.144,0.974,1.015,1.051,1.073,1.056,0.923,0.977,0.948,0.939,1.08,1.027,0.792,0.985,1.003,0.9,1.269,1.131,0.905,0.96,1.034,0.998,1.096,1.336,0.926,1.091,1.003,0.872,0.892,1.158,0.982,0.955,0.986,0.838,1.027,0.894 +NM_152440,0.923,1.066,1.053,0.809,1.162,0.913,0.886,0.995,0.991,1.078,0.871,1.122,1.0,0.874,0.744,0.896,1.033,0.978,0.854,0.956,0.766,1.011,0.892,1.11,0.847,1.021,1.257,1.046,0.712,0.981,0.839,1.129,0.981,1.014,0.901,1.087,0.867,1.15,1.145,1.029,1.059,0.977,0.756,1.215,1.004,0.909,1.061,1.033,0.934,1.092,0.904,0.866,0.854,1.161 +NM_152441,0.986,1.233,0.995,0.927,1.128,1.118,0.965,1.029,0.918,0.899,0.941,1.046,0.981,1.11,1.186,1.044,1.0,0.891,1.088,1.005,1.039,1.169,0.917,1.051,1.0,0.975,0.997,1.037,0.954,1.105,1.016,1.117,1.042,1.115,1.098,1.121,1.004,1.01,1.051,0.875,1.069,1.135,0.89,0.927,0.881,0.907,0.993,0.969,0.844,1.003,0.974,0.962,0.974,1.069 +NM_152442,1.056,0.982,0.954,0.907,1.17,1.086,0.939,1.02,0.944,0.963,1.017,1.126,0.917,1.086,0.974,0.906,0.887,0.924,1.05,0.88,1.101,0.98,1.066,0.901,0.989,0.957,1.044,1.057,1.101,0.93,1.094,1.083,1.175,1.177,0.936,0.925,1.01,0.993,1.012,1.078,1.053,0.902,0.842,1.069,0.968,1.0,0.944,0.958,1.112,0.93,1.014,0.925,1.042,1.184 +NM_152443,1.993,0.944,1.17,1.202,1.779,0.877,1.919,1.146,2.157,3.196,0.368,1.838,1.258,0.967,1.143,1.014,0.657,2.463,3.002,0.473,1.575,1.816,0.394,3.261,1.403,1.856,1.244,1.432,2.103,1.214,2.19,0.4,0.815,2.686,0.414,0.423,0.972,1.365,0.429,0.389,1.452,0.456,0.422,0.388,3.675,0.414,1.199,1.977,0.408,1.808,0.737,0.669,1.32,0.395 +NM_152444,1.142,0.922,1.051,0.907,1.15,0.93,1.084,0.93,1.147,1.04,0.963,1.005,1.121,1.116,0.89,0.97,0.93,0.984,0.905,0.931,0.827,1.061,1.092,0.938,0.981,1.043,1.064,0.944,1.516,1.021,0.963,1.105,1.006,0.995,1.08,0.992,1.064,1.182,1.084,0.891,1.101,0.984,1.178,0.937,1.036,1.03,1.054,0.965,1.095,0.974,0.983,1.033,0.871,0.884 +NM_152445,1.059,1.08,0.982,0.981,1.033,0.998,0.962,0.931,0.99,1.075,0.996,0.972,0.964,1.127,0.868,1.104,1.043,1.092,1.092,1.107,0.926,1.063,0.785,0.936,0.935,1.073,0.964,1.327,1.014,0.973,1.032,0.974,1.027,1.017,1.168,1.098,0.973,0.982,1.039,0.954,0.927,0.88,0.981,1.061,1.049,0.947,0.886,0.925,1.094,1.002,0.966,0.978,1.038,0.992 +NM_152446,0.921,0.959,1.258,0.971,0.896,1.085,1.197,0.853,1.048,1.06,0.915,1.13,1.054,0.876,0.88,1.065,0.979,0.944,0.926,0.942,0.822,1.068,1.166,1.059,0.834,1.025,1.419,0.895,1.176,1.106,1.165,0.872,1.294,0.89,0.838,1.087,0.944,0.792,1.184,0.94,0.968,1.272,1.083,0.972,1.099,1.015,0.971,1.014,0.864,1.134,0.999,0.95,0.968,1.528 +NM_152447,1.1,1.0,0.995,0.937,0.991,1.086,1.095,1.095,1.065,1.146,1.194,0.997,0.866,1.076,1.103,1.021,0.907,1.027,0.995,1.166,1.061,1.071,0.777,1.013,0.861,0.968,0.938,0.94,0.923,0.96,1.003,1.242,1.21,0.954,0.983,1.047,1.067,1.046,0.989,1.075,0.972,1.235,0.903,0.88,0.996,0.912,0.953,0.945,1.035,1.013,0.993,1.0,0.879,1.188 +NM_152448,1.018,0.932,0.971,1.108,1.245,1.051,1.427,1.013,1.115,1.209,1.1,0.928,1.01,1.101,0.999,0.886,0.9,1.002,0.964,1.137,0.972,0.98,1.045,0.845,0.968,1.063,1.053,0.91,1.312,1.035,0.982,0.968,0.88,1.046,1.157,1.03,0.978,0.946,1.092,1.012,1.091,0.98,1.426,0.918,0.917,1.225,1.0,0.978,0.969,0.867,1.08,0.938,1.076,1.134 +NM_152449,0.749,0.908,1.36,0.829,1.082,1.199,0.848,0.855,1.312,1.059,0.873,1.18,0.807,1.009,0.953,1.08,1.067,0.881,1.187,1.068,0.88,1.043,1.056,1.32,0.701,0.867,1.928,1.001,0.965,0.972,1.06,0.844,1.136,1.058,0.724,0.849,0.871,1.096,0.926,0.717,1.293,1.028,0.859,0.66,1.017,0.978,0.933,0.83,0.817,1.117,0.917,0.773,1.089,1.152 +NM_152451,4.009,0.791,1.818,1.309,4.121,1.329,0.565,3.473,3.268,1.609,0.691,1.63,3.726,1.553,2.631,1.307,2.558,2.065,2.581,0.646,1.189,3.531,0.731,2.189,0.768,4.307,1.731,3.38,0.65,1.007,3.274,0.362,1.077,1.038,9.821,0.504,0.895,4.55,1.407,0.619,3.073,0.812,0.747,0.45,2.297,0.627,1.376,5.2,0.819,1.625,0.79,0.656,1.479,0.81 +NM_152452,0.846,1.444,1.796,0.819,1.015,0.65,0.805,0.612,1.091,0.99,0.668,0.729,0.702,0.95,0.815,0.785,0.942,1.004,1.051,1.27,0.841,0.694,1.298,0.762,1.36,0.897,1.515,0.992,0.83,0.818,1.097,1.455,1.336,1.561,0.578,0.723,0.828,0.902,0.884,1.765,1.122,1.384,0.891,0.756,1.188,0.765,1.053,0.731,0.593,1.256,0.827,0.982,0.952,1.681 +NM_152453,0.948,0.975,0.941,1.006,0.949,0.971,1.112,0.873,0.949,1.062,0.928,0.936,1.005,1.053,1.036,1.001,0.907,1.044,0.957,0.922,1.038,1.055,0.9,1.028,1.058,0.947,0.973,0.925,0.802,0.944,0.889,0.982,1.1,0.867,1.001,1.054,1.006,1.077,1.02,0.859,0.979,0.96,0.856,1.147,1.017,1.051,1.056,0.883,1.017,1.006,0.958,1.042,1.062,1.091 +NM_152454,1.0,1.087,0.973,1.045,0.957,1.015,0.976,0.957,0.998,1.123,1.122,0.981,1.024,1.021,0.881,1.053,1.024,1.025,0.895,0.972,0.945,1.002,1.077,1.088,0.996,0.923,0.969,0.993,1.022,0.989,0.942,0.901,1.044,1.0,1.096,1.106,1.033,1.045,0.865,0.962,0.907,0.941,1.13,1.058,0.893,0.99,0.97,0.905,1.111,1.044,1.009,1.09,1.074,0.875 +NM_152455,0.952,0.906,1.246,0.974,1.056,0.987,0.866,1.083,1.065,0.911,0.925,0.924,0.964,0.842,1.338,0.888,1.062,0.995,0.96,0.924,1.048,0.922,1.205,1.049,0.927,1.015,0.977,1.088,1.061,0.951,0.992,1.042,1.354,0.89,0.874,0.949,0.917,0.985,1.1,1.045,0.872,0.857,0.914,1.006,1.013,1.033,0.935,1.134,1.035,0.976,1.013,1.007,0.91,1.137 +NM_152456,2.769,0.838,1.353,1.08,2.238,0.839,0.687,1.956,3.144,1.202,0.714,1.485,1.989,1.911,1.124,1.094,0.992,1.488,1.917,0.683,1.131,3.209,0.703,1.734,0.868,4.418,1.058,2.308,0.849,0.949,2.495,0.928,1.002,0.897,1.169,0.766,0.821,1.47,0.998,1.051,1.49,1.038,0.759,0.743,1.528,0.757,1.081,3.47,0.748,1.018,0.819,1.025,0.899,0.893 +NM_152457,0.94,0.949,0.899,1.025,1.068,1.05,0.974,0.881,1.049,0.94,0.96,0.94,0.929,1.036,1.012,1.012,0.944,0.897,1.024,0.915,0.901,0.782,0.971,0.897,0.982,0.959,0.909,1.032,0.878,1.146,0.963,1.281,1.199,1.107,0.975,1.099,1.004,1.115,1.129,1.014,1.036,1.122,0.997,0.771,0.862,0.928,1.098,0.936,0.932,1.009,0.925,0.989,1.127,1.132 +NM_152459,0.74,4.256,0.812,5.491,0.849,1.266,2.592,0.941,0.993,0.998,1.178,0.865,0.939,0.969,0.989,1.042,0.938,1.815,0.829,3.758,1.002,0.909,0.858,0.926,23.82,0.948,0.807,0.811,1.055,5.804,0.85,1.061,1.026,18.98,0.976,0.946,4.473,0.924,1.018,0.87,1.025,1.653,0.968,0.807,0.896,0.85,0.868,0.818,0.937,1.064,1.417,0.931,0.876,0.917 +NM_152461,0.837,0.78,1.045,0.788,1.061,1.046,1.042,1.064,1.125,1.129,0.732,1.012,0.91,0.897,0.868,1.167,0.885,0.756,1.097,0.91,0.8,0.962,1.024,0.92,0.803,0.941,0.978,1.08,0.771,0.935,1.561,1.249,1.165,1.161,1.21,0.776,0.995,1.211,0.743,2.042,1.115,1.032,1.002,1.016,1.197,0.887,1.005,0.968,0.86,1.001,0.815,0.836,0.936,0.903 +NM_152462,1.102,0.91,1.019,1.17,1.244,0.897,1.022,0.827,1.016,0.913,1.297,1.014,0.905,1.14,0.897,0.945,0.988,1.013,0.97,0.891,0.885,0.932,0.948,0.883,1.05,1.206,1.143,0.996,1.093,0.957,1.069,1.037,1.182,0.981,0.861,0.968,0.934,0.996,1.067,1.038,0.994,1.057,0.945,0.983,1.024,1.031,1.121,1.042,1.058,0.94,0.963,0.933,1.04,0.958 +NM_152463,0.935,1.045,0.996,0.924,1.122,1.1,0.999,0.946,0.933,0.979,0.96,0.97,1.032,0.809,0.891,0.916,0.94,0.935,0.984,0.956,0.913,0.879,1.136,1.258,1.016,1.018,1.068,1.014,0.96,0.944,0.943,1.153,1.141,1.2,0.923,1.04,0.972,0.967,0.982,0.87,1.001,0.947,0.725,1.179,0.853,1.183,1.097,0.967,1.012,0.994,1.088,1.099,1.179,1.137 +NM_152464,0.703,0.908,1.193,0.645,1.024,1.083,0.734,0.686,0.981,0.99,0.819,0.864,0.792,0.71,0.861,1.533,0.988,0.742,1.258,0.901,0.777,0.919,1.005,1.271,0.663,0.777,1.057,0.879,0.551,0.893,1.07,1.252,1.644,1.104,0.593,0.679,0.959,0.93,1.443,0.955,1.074,0.916,0.656,1.267,1.044,0.945,1.094,0.76,1.157,0.815,0.851,0.867,0.822,1.892 +NM_152465,1.106,1.005,1.063,0.887,0.887,1.046,0.905,1.017,1.004,0.996,0.911,1.038,0.951,0.974,0.822,0.946,0.876,0.9,0.893,0.845,0.938,1.143,0.964,0.968,1.017,1.102,1.067,0.986,0.915,1.002,0.913,1.124,1.302,0.948,0.938,0.924,1.053,1.022,0.964,0.972,1.167,0.999,0.746,0.988,0.889,0.876,0.956,1.018,1.014,0.95,1.007,0.987,1.108,0.993 +NM_152467,0.938,0.915,1.02,1.081,1.06,1.055,1.102,0.961,0.979,1.224,0.975,0.947,0.9,0.977,0.868,1.071,1.012,1.27,1.14,0.916,0.913,0.94,1.198,1.067,0.981,1.043,0.912,0.913,0.943,1.015,0.977,0.948,1.058,0.994,1.214,0.969,0.945,0.993,0.997,0.989,1.03,1.22,0.976,0.917,1.063,0.823,0.971,0.943,0.846,1.14,0.881,1.089,1.105,0.876 +NM_152468,1.134,0.969,1.079,0.99,0.87,1.043,0.938,0.894,0.959,1.024,1.101,1.103,0.883,1.163,0.972,0.901,1.145,0.975,1.321,0.942,0.884,1.032,1.052,0.816,0.958,0.926,1.025,0.97,0.656,1.141,0.868,1.08,0.936,1.026,1.032,1.175,1.074,0.922,0.894,1.057,0.888,0.954,1.002,0.96,0.946,1.088,0.958,1.084,0.974,1.038,0.866,1.013,1.101,1.155 +NM_152469,1.076,0.906,0.994,1.018,1.104,1.1,0.97,1.039,1.065,1.008,1.341,0.994,0.954,0.938,1.154,1.186,0.984,0.988,1.037,1.001,0.925,0.997,0.835,1.126,0.963,0.988,0.841,1.006,0.883,0.875,1.004,1.06,0.859,0.983,1.163,1.063,0.962,0.927,1.061,0.983,1.114,1.008,0.956,1.052,1.066,1.106,1.061,1.053,1.095,1.044,1.069,1.018,0.944,1.04 +NM_152470,1.131,1.074,1.076,0.894,1.135,1.086,1.161,0.891,0.936,1.071,1.109,0.968,0.919,0.908,1.086,0.942,0.948,1.024,1.024,0.96,1.034,1.118,0.986,1.128,0.971,1.1,0.994,1.038,1.0,1.007,0.964,0.999,0.995,1.041,0.998,0.992,1.051,0.908,1.033,1.094,0.896,1.027,0.851,0.929,0.913,0.851,0.886,0.962,0.944,1.011,0.922,0.971,0.898,0.97 +NM_152471,0.713,1.389,0.952,1.12,0.813,1.44,0.964,0.879,0.868,0.628,1.683,0.9,0.791,0.761,1.851,1.848,0.985,0.829,1.003,1.358,0.884,0.756,1.334,0.832,0.987,0.866,0.898,0.842,0.879,1.174,0.778,1.235,1.523,1.445,0.819,0.8,1.718,0.845,1.187,0.843,0.822,1.439,0.869,1.209,0.887,1.464,1.104,0.741,1.36,0.86,1.499,0.965,0.807,1.178 +NM_152474,1.09,1.076,1.006,1.088,0.99,1.083,0.844,0.926,1.126,0.885,0.872,0.989,0.999,1.059,0.922,0.888,1.001,1.09,0.978,0.984,1.007,0.96,0.945,1.047,1.094,1.011,0.941,0.93,0.953,0.998,1.056,1.086,1.172,1.032,1.141,0.93,1.009,0.916,1.033,0.892,1.114,0.936,0.938,1.089,0.863,0.971,1.03,1.018,0.927,1.035,0.926,0.966,1.036,0.97 +NM_152476,0.952,1.062,0.969,0.983,0.93,0.978,0.812,1.093,1.103,1.059,1.108,1.074,1.069,1.159,1.01,1.072,0.951,1.033,1.046,1.079,1.257,1.023,0.846,1.035,1.029,0.931,0.926,1.006,1.287,0.924,1.035,0.919,0.902,1.04,0.964,0.946,0.979,1.108,0.954,1.003,0.926,0.918,1.003,1.161,0.992,0.989,0.966,1.205,0.964,1.071,1.08,1.017,1.068,0.957 +NM_152477,0.957,1.104,1.12,0.925,1.144,1.003,0.85,0.901,1.146,0.937,1.011,0.904,0.882,0.961,0.892,0.987,0.9,1.076,0.953,1.052,0.953,1.0,1.17,1.157,0.867,0.859,1.076,1.011,0.669,0.959,0.895,1.045,1.426,1.204,0.795,0.896,0.918,1.181,1.06,0.919,1.121,1.098,1.023,1.06,0.955,0.981,0.889,0.947,0.911,0.875,0.949,0.883,0.833,1.055 +NM_152479,1.007,1.039,1.03,0.928,1.125,0.945,0.784,1.096,1.011,0.871,1.004,1.02,0.91,0.921,1.027,0.91,1.023,0.907,1.026,0.924,0.981,0.915,0.913,1.148,1.062,1.127,1.021,0.87,0.746,0.965,0.98,0.925,0.827,0.936,1.073,0.97,0.971,1.028,1.057,0.959,0.904,1.029,1.281,1.032,1.14,0.893,0.91,1.016,1.017,0.983,0.927,0.832,0.972,1.074 +NM_152480,0.923,1.071,0.985,1.149,0.97,0.938,1.016,0.968,1.133,1.102,0.942,0.933,1.021,1.095,1.059,0.907,1.138,0.873,0.975,0.967,0.866,1.016,1.123,1.045,1.089,1.112,1.021,1.002,1.189,0.887,1.018,1.069,0.949,0.969,1.072,1.111,1.064,1.013,1.009,1.036,1.028,0.99,1.004,1.06,1.01,0.923,0.903,1.133,1.116,0.932,0.994,0.96,1.177,0.944 +NM_152481,1.023,0.89,0.985,0.893,0.882,1.063,0.927,0.941,0.984,1.048,1.115,1.087,1.095,1.065,1.004,1.168,0.973,1.007,1.052,1.079,1.019,0.925,0.865,0.867,0.999,1.033,0.972,1.048,0.744,0.935,1.052,0.801,1.368,1.01,1.141,0.902,0.983,1.1,0.722,1.028,1.01,0.883,1.203,0.916,1.008,0.989,1.092,1.068,0.907,1.001,0.957,1.024,0.849,1.042 +NM_152482,0.84,1.112,0.966,0.887,0.788,1.311,0.889,0.76,0.887,0.794,1.129,0.893,0.92,0.786,1.26,1.417,0.853,1.177,1.049,1.109,0.781,0.843,1.525,0.943,1.005,1.053,1.018,0.878,0.821,1.424,0.931,1.246,1.339,1.658,0.6,0.863,1.146,0.848,1.527,0.893,0.978,1.183,0.843,1.08,0.841,1.019,0.839,1.033,1.074,0.808,1.224,0.871,0.713,1.826 +NM_152483,1.117,0.972,0.955,1.069,1.083,1.133,0.93,1.07,1.066,0.957,1.031,1.016,1.102,1.129,0.87,0.979,0.914,1.094,0.884,0.858,1.039,0.936,0.847,1.115,1.064,1.28,0.968,0.992,0.786,1.063,1.018,1.121,0.907,1.108,0.996,1.02,1.055,0.995,0.997,1.168,0.986,1.161,0.957,0.952,1.031,0.852,1.198,0.895,0.987,0.861,1.082,1.204,0.887,0.987 +NM_152484,0.988,0.924,0.989,1.004,1.135,0.957,1.271,0.885,1.114,1.015,1.057,0.965,0.919,1.013,1.066,1.229,0.992,0.92,1.124,1.129,1.054,1.102,1.089,0.99,0.95,0.937,1.083,0.98,1.252,1.058,0.98,1.036,1.173,0.886,1.124,1.049,0.946,0.992,0.97,0.985,1.049,0.907,1.119,0.925,0.993,1.069,0.861,1.13,1.023,0.988,0.988,1.006,0.971,1.024 +NM_152485,1.0,0.963,0.985,0.945,0.897,0.968,0.782,0.796,1.196,0.994,0.924,1.096,0.909,0.778,0.872,1.18,0.961,0.949,1.215,1.004,0.654,0.914,0.832,1.178,0.806,0.912,1.635,0.926,0.7,1.016,0.995,1.097,1.589,1.021,0.659,1.179,1.047,1.0,0.934,0.887,1.101,0.819,0.771,1.212,1.083,1.075,1.155,0.861,0.834,0.931,0.966,1.133,1.342,1.068 +NM_152486,1.007,1.022,1.108,0.921,1.023,0.988,0.823,0.818,0.948,1.001,1.025,0.921,0.92,0.855,0.884,0.861,1.015,0.924,0.964,1.089,0.942,0.995,1.039,1.015,1.095,1.016,1.009,1.046,0.63,0.914,0.926,1.315,0.901,1.095,1.001,0.853,0.896,1.027,1.18,0.844,1.039,1.031,0.8,0.975,0.907,1.063,1.055,0.863,0.931,0.969,1.037,0.939,1.057,1.04 +NM_152487,1.02,1.05,0.959,1.111,0.776,1.147,1.043,0.802,0.974,0.811,1.091,0.99,0.961,0.962,0.623,0.901,0.97,0.773,1.122,0.96,1.084,1.19,1.153,1.08,0.877,0.967,1.037,0.907,0.698,1.16,0.862,0.998,1.607,0.815,1.0,0.971,1.317,0.931,1.157,1.051,0.899,0.977,0.941,1.056,1.003,1.057,1.058,0.893,0.908,0.819,1.082,0.939,1.072,1.111 +NM_152489,0.93,0.876,1.01,0.94,0.958,0.923,1.056,1.036,0.94,0.983,0.926,1.087,0.95,0.784,1.051,1.03,1.063,1.189,0.935,0.843,1.126,1.007,1.044,1.181,1.033,1.12,1.15,1.014,1.221,0.979,1.111,0.781,0.984,0.959,0.996,0.923,1.125,0.913,0.918,0.969,1.002,0.902,1.126,1.026,0.975,0.991,0.998,1.025,1.016,0.919,1.074,0.884,0.862,1.066 +NM_152490,1.054,0.938,0.938,0.86,0.956,0.894,0.849,0.903,1.218,1.035,0.849,1.187,0.866,0.891,0.876,1.05,0.936,0.86,1.012,0.924,0.99,1.009,0.992,1.155,0.863,1.096,1.085,1.221,0.831,0.854,1.108,1.053,1.523,0.945,0.935,1.097,0.959,1.052,1.073,1.137,1.062,0.899,0.734,0.999,1.156,1.079,1.122,0.921,0.891,1.001,0.919,0.883,0.998,1.328 +NM_152491,1.007,1.1,0.995,0.964,1.026,1.0,1.155,1.063,0.814,1.012,0.885,1.136,0.92,1.086,0.982,1.007,0.899,1.043,1.088,1.081,1.006,1.12,1.063,1.061,1.145,0.927,0.912,1.056,1.325,1.007,0.929,1.105,0.969,1.031,0.951,0.999,0.992,0.988,1.008,1.005,0.928,1.0,1.285,0.793,0.968,0.966,1.052,0.955,1.013,0.855,1.031,1.071,0.947,1.026 +NM_152492,0.977,0.925,0.984,0.938,0.918,0.942,1.171,1.116,0.993,0.931,1.174,0.88,0.924,1.168,0.923,1.002,0.954,0.884,0.925,0.913,1.143,1.169,1.036,0.938,1.077,0.88,0.975,0.943,1.26,0.995,1.0,1.142,0.922,0.998,1.074,1.051,1.137,1.042,1.022,1.008,0.909,0.886,0.941,0.955,0.97,1.263,0.842,1.042,0.889,1.046,1.105,0.992,0.954,1.003 +NM_152493,0.833,1.218,1.529,0.808,0.885,1.009,0.974,0.785,1.027,0.865,0.872,0.938,0.846,0.847,0.952,0.783,1.047,0.868,0.853,1.316,0.74,0.898,1.011,0.917,0.928,1.055,1.389,0.953,0.527,1.058,0.956,2.381,1.241,1.51,0.614,0.763,0.877,1.064,1.221,1.138,1.143,1.332,0.722,1.072,0.95,0.81,0.809,0.877,0.677,0.896,1.107,0.731,0.821,1.658 +NM_152494,1.067,0.906,0.92,1.074,1.084,1.0,1.027,1.019,1.114,1.243,0.966,0.994,0.889,1.071,1.104,1.108,1.101,0.862,1.149,0.976,1.076,0.761,0.921,1.039,1.039,0.941,1.175,1.158,0.712,1.1,1.099,0.991,0.985,1.057,1.073,0.966,0.901,1.104,0.856,1.016,0.924,1.083,0.98,1.09,0.917,0.962,0.986,1.073,0.938,0.967,1.062,0.987,0.91,0.949 +NM_152495,0.978,1.14,0.875,1.018,1.06,0.993,0.919,0.811,1.014,1.037,0.983,0.957,0.967,0.885,1.016,1.104,0.917,0.983,0.944,1.019,0.97,0.94,1.024,0.886,1.243,0.907,0.987,1.022,1.074,1.012,0.9,4.56,0.925,0.969,1.124,1.027,1.011,0.925,0.939,1.067,1.065,1.118,0.772,0.98,0.953,1.019,0.906,0.989,1.078,0.926,0.891,1.039,0.948,0.994 +NM_152496,0.804,1.457,0.799,0.742,0.74,1.21,0.671,0.484,0.896,0.854,1.099,1.13,0.869,0.554,0.848,1.63,0.802,0.75,1.004,1.514,0.717,0.834,2.758,0.977,0.668,1.08,0.963,0.932,0.559,1.401,0.653,1.973,2.212,0.992,0.425,0.831,1.388,0.761,1.19,0.649,1.209,1.307,1.135,2.081,1.077,1.798,1.521,0.537,2.055,0.68,1.474,0.918,0.703,4.302 +NM_152497,0.98,0.958,1.077,0.999,1.034,0.957,1.08,1.058,0.987,1.124,0.953,1.215,0.923,0.936,0.975,1.047,0.986,1.066,0.917,0.966,0.915,1.014,0.983,1.015,0.867,1.004,0.983,1.091,1.029,1.016,0.911,1.068,0.924,0.987,1.09,0.93,0.983,1.025,1.007,0.956,1.03,0.929,1.155,1.095,1.05,0.932,1.022,1.071,0.94,1.012,0.918,1.004,0.896,1.096 +NM_152499,0.683,1.484,0.798,0.667,0.734,1.533,1.423,0.689,0.807,0.782,0.96,0.797,0.729,0.878,0.763,1.688,0.767,1.173,0.767,1.384,0.657,0.706,0.977,0.756,0.921,0.69,1.191,0.687,1.291,2.04,0.768,3.014,1.706,1.63,0.652,1.607,1.058,0.747,1.574,1.197,0.89,1.207,1.113,1.4,0.789,1.074,0.909,0.686,1.057,0.797,0.945,0.961,0.743,1.962 +NM_152500,1.002,1.189,1.169,0.912,0.916,1.029,1.038,0.921,1.008,0.95,1.1,0.975,1.066,1.218,1.298,1.103,0.99,1.014,1.079,1.182,1.074,0.966,0.918,1.13,1.058,1.01,0.948,0.986,1.417,1.017,1.006,1.075,0.903,0.927,1.092,0.994,0.91,0.969,0.919,1.028,0.933,0.892,0.947,1.114,0.928,1.158,0.988,1.06,1.067,0.972,1.05,0.975,0.889,1.081 +NM_152503,0.962,1.043,1.071,0.854,0.882,1.123,1.029,0.801,0.943,0.763,0.999,1.118,1.05,0.861,1.02,1.196,1.018,0.942,0.926,1.001,0.975,0.877,0.969,0.835,1.073,0.94,1.099,1.057,0.905,0.993,1.03,1.079,0.878,1.033,0.92,1.008,0.885,0.932,1.074,0.926,0.985,1.019,1.144,0.992,1.237,0.994,1.172,1.006,1.065,1.034,1.069,0.884,0.962,1.003 +NM_152505,0.936,1.03,1.081,1.018,1.02,1.148,1.042,1.182,0.988,1.102,0.893,1.036,0.937,0.943,1.264,1.175,1.032,1.052,0.987,0.971,0.88,0.947,1.019,1.0,1.067,0.921,1.269,0.886,1.693,1.022,1.016,1.058,0.888,1.05,1.034,1.008,1.13,1.019,0.927,0.901,1.02,0.936,0.957,0.969,1.126,1.01,0.882,0.922,1.192,1.033,1.137,1.088,0.886,0.981 +NM_152507,1.029,1.004,0.932,0.849,1.051,0.995,0.926,0.924,1.034,1.083,0.984,1.06,1.153,1.044,1.096,0.972,1.134,1.055,1.035,1.069,1.068,1.024,0.943,0.997,0.998,0.961,0.946,1.211,0.891,0.872,1.006,0.993,0.895,0.877,0.915,0.989,1.037,0.963,1.104,0.97,0.936,0.748,1.015,0.982,0.963,1.054,1.048,0.952,1.017,1.074,0.939,0.917,0.922,0.976 +NM_152508,1.001,0.973,1.022,0.949,1.023,0.981,0.96,0.993,0.904,0.981,0.967,0.927,0.99,1.013,1.158,0.873,1.053,0.988,0.838,0.87,0.948,0.99,0.943,1.053,1.031,0.994,1.122,1.005,1.293,1.121,1.023,0.975,1.023,1.038,0.999,0.979,1.03,1.248,1.0,0.928,0.937,0.938,0.946,1.047,1.07,0.981,0.965,1.043,1.026,0.98,1.069,0.928,0.999,0.905 +NM_152510,0.944,0.919,0.948,0.95,0.903,0.961,1.069,0.947,1.021,1.076,1.011,0.943,1.03,1.163,0.809,0.99,0.886,1.047,1.012,0.934,0.929,0.873,0.973,0.98,1.112,1.021,1.018,1.06,1.26,0.994,1.0,0.919,1.044,1.054,1.082,1.0,1.07,1.117,0.886,1.09,0.893,0.968,0.961,1.007,0.992,0.997,0.974,1.056,0.937,0.946,0.848,0.914,1.057,1.135 +NM_152512,1.128,0.948,0.922,1.118,0.982,0.951,0.832,0.943,0.882,0.999,1.079,1.074,0.932,1.124,0.857,0.841,0.979,1.052,0.838,0.93,1.029,0.947,1.072,0.877,0.911,1.043,1.019,1.057,0.851,1.008,1.084,0.934,0.89,0.977,1.124,1.002,0.943,0.874,1.325,0.904,1.021,0.976,0.998,0.887,0.945,1.08,1.081,1.115,0.946,1.027,0.918,1.017,1.083,0.864 +NM_152515,0.921,0.95,1.096,1.051,1.06,0.982,0.747,0.816,0.999,1.058,0.856,0.968,1.04,0.8,0.906,1.059,0.902,0.906,1.043,0.876,0.878,0.783,1.136,1.278,0.69,0.894,1.455,0.85,0.857,0.906,0.938,1.048,2.085,0.917,0.616,1.461,0.918,1.176,1.246,1.456,1.14,0.85,0.685,1.396,1.155,0.772,1.159,0.906,1.021,0.884,1.014,1.116,0.948,2.225 +NM_152516,1.036,0.983,1.345,0.887,1.243,0.881,0.582,0.638,1.625,1.292,0.919,0.743,0.867,0.679,0.876,1.272,0.986,1.128,1.747,0.833,0.774,1.238,1.092,1.372,0.664,1.693,1.08,1.336,0.399,1.006,1.127,1.096,1.392,1.219,0.265,0.559,0.881,1.28,1.112,0.49,1.335,1.014,0.602,1.223,1.271,0.767,1.06,1.348,0.722,0.889,0.888,0.768,1.236,0.92 +NM_152517,0.967,0.918,1.135,0.955,0.936,0.955,0.935,1.312,1.164,0.997,1.001,1.229,1.045,0.788,1.093,1.075,1.026,0.921,1.012,1.037,0.925,1.017,1.051,1.066,0.944,0.885,1.035,0.923,1.546,1.116,0.992,1.006,0.896,0.965,1.008,0.818,0.894,1.078,0.93,0.994,1.056,1.104,1.105,1.038,0.981,0.951,1.06,0.974,1.125,1.079,1.147,0.953,0.741,1.078 +NM_152519,0.863,1.002,1.049,0.933,1.023,0.993,0.859,0.895,1.105,0.936,0.963,0.964,0.854,0.903,0.933,1.187,0.892,0.976,1.065,1.162,0.965,0.836,1.092,1.049,0.998,0.982,1.004,0.96,1.178,1.009,1.03,1.258,0.995,0.897,1.0,0.893,1.004,1.231,1.014,0.801,0.955,1.001,1.175,1.005,0.888,1.095,1.056,1.057,1.172,0.942,0.993,1.056,1.051,0.974 +NM_152520,0.912,1.274,1.013,0.934,1.061,1.022,1.114,1.064,0.88,0.825,1.017,1.085,0.8,1.294,0.94,0.977,0.958,0.898,0.92,1.129,1.05,0.994,0.986,1.009,2.355,0.973,1.123,0.944,0.68,1.014,0.905,2.007,0.906,1.502,1.005,1.114,1.272,0.993,1.081,0.89,0.849,1.157,0.954,0.942,0.996,0.987,1.064,0.929,0.894,0.986,1.191,1.052,0.882,0.911 +NM_152522,0.863,1.071,1.512,0.946,0.857,0.961,1.103,0.679,1.426,0.962,0.963,0.793,0.816,1.211,0.931,0.977,0.768,1.0,1.065,1.049,0.884,0.778,1.144,0.927,0.625,0.888,1.572,1.083,0.684,1.019,1.003,1.316,1.72,1.046,0.587,0.953,0.991,0.859,1.326,1.307,1.07,0.996,0.8,1.494,0.957,0.995,0.966,0.646,0.826,1.026,0.969,0.873,1.11,2.194 +NM_152523,1.038,0.748,1.27,0.749,2.017,0.824,0.625,1.421,2.065,1.474,0.866,1.037,0.847,1.145,1.231,1.278,1.157,1.853,1.403,0.65,0.978,1.2,1.034,2.167,0.662,1.494,0.969,1.548,0.558,0.876,1.205,0.754,1.019,0.767,1.716,0.836,0.839,1.253,0.848,0.857,1.48,0.793,0.899,0.996,1.193,0.845,1.782,1.656,1.143,1.101,1.006,0.761,1.453,1.006 +NM_152525,1.052,0.94,1.052,1.155,0.952,0.948,0.971,1.111,0.842,1.295,0.898,0.944,0.91,1.088,1.212,1.142,1.027,1.159,0.954,0.862,1.085,1.08,1.042,1.067,0.967,1.141,1.122,0.93,0.993,1.061,0.975,0.922,1.082,1.023,1.065,0.985,1.018,0.875,1.08,0.869,1.154,0.904,1.081,1.002,0.936,0.886,1.106,1.0,0.977,1.099,1.022,1.029,1.089,0.898 +NM_152526,0.984,1.162,0.996,0.964,0.91,1.207,1.007,0.779,1.015,0.935,1.182,0.811,0.921,0.98,0.866,1.052,0.86,1.187,1.081,1.195,0.988,0.82,1.13,1.006,1.087,0.86,0.842,1.04,1.019,1.146,0.868,1.136,1.25,1.044,0.936,0.981,0.972,1.002,1.089,0.935,0.946,1.34,0.986,0.954,0.877,1.123,1.026,0.834,0.998,0.964,1.109,0.967,0.984,1.131 +NM_152527,1.154,0.847,1.118,0.901,1.025,0.856,0.763,1.15,1.296,1.009,0.979,0.965,1.114,1.236,1.14,0.969,1.012,0.943,1.241,0.832,0.905,0.952,1.222,0.94,0.832,1.146,1.704,1.072,0.94,0.99,1.238,1.073,1.335,0.917,0.793,0.946,0.88,1.351,0.969,0.846,1.004,0.97,1.008,1.078,1.05,0.941,0.91,1.084,0.997,1.051,0.984,1.08,1.041,1.624 +NM_152528,0.831,0.99,1.024,0.751,1.272,1.156,0.768,1.004,1.311,0.737,0.887,0.969,1.005,1.106,1.176,1.105,0.917,1.001,1.201,1.185,0.753,1.024,1.09,1.059,0.688,0.775,1.337,1.167,0.627,1.065,1.475,1.405,1.403,1.5,0.643,0.768,0.867,1.131,0.918,0.854,1.162,1.203,0.813,0.705,0.81,1.115,0.802,1.072,0.976,0.885,0.817,0.809,0.803,2.187 +NM_152532,0.91,1.059,1.05,1.164,1.075,0.968,1.146,0.915,1.115,1.004,0.924,1.164,0.969,1.023,0.934,0.922,1.219,1.182,0.979,1.024,0.851,0.958,0.964,1.053,0.939,0.888,0.919,1.053,1.025,1.063,0.999,1.091,1.019,0.975,1.082,0.875,0.933,1.005,1.197,1.062,0.997,1.099,1.435,0.995,0.874,1.052,0.92,1.06,1.096,0.962,0.992,1.013,0.838,1.171 +NM_152533,0.975,0.95,0.872,1.073,0.949,1.029,1.089,1.057,1.011,0.999,1.174,0.983,0.982,0.875,0.91,0.916,1.083,0.911,1.049,1.031,0.989,1.007,0.975,1.179,1.032,0.958,1.117,1.015,0.965,0.929,0.979,0.909,1.041,0.914,1.03,0.904,1.014,1.104,0.972,0.969,1.047,0.955,1.059,0.987,0.925,0.877,0.907,1.038,1.075,0.964,0.923,0.979,1.077,1.056 +NM_152534,0.916,0.99,1.034,0.875,1.049,1.02,0.892,1.012,0.943,1.038,0.969,0.991,1.023,0.924,1.446,0.965,0.942,1.012,1.039,0.969,0.953,1.057,0.941,0.939,1.231,0.945,0.874,1.0,1.143,1.007,0.94,1.044,0.78,0.932,0.953,0.897,1.079,0.954,1.174,1.046,0.987,1.065,1.229,1.093,1.056,0.985,0.953,1.072,0.899,0.969,0.834,1.122,1.054,1.002 +NM_152538,1.108,1.004,1.074,0.916,1.191,0.956,1.138,1.157,0.996,1.147,0.847,0.948,1.163,1.086,1.302,0.999,0.977,1.084,1.021,1.093,1.052,1.015,0.934,1.206,0.949,1.011,0.999,1.045,0.952,1.112,1.05,1.013,1.048,0.959,1.112,0.96,1.127,1.18,1.047,0.946,0.898,1.06,1.391,0.961,1.019,1.013,0.931,1.046,1.093,0.951,1.052,0.86,0.971,0.932 +NM_152539,1.108,0.85,1.136,0.973,1.081,0.917,1.174,1.095,1.002,1.03,1.09,0.915,1.098,0.962,0.975,0.743,1.115,1.065,1.082,1.077,1.139,0.922,1.007,0.99,1.089,1.043,0.892,1.214,1.498,0.906,1.078,1.144,0.962,1.022,1.063,0.97,0.957,1.073,1.034,0.922,0.909,1.122,0.937,0.899,0.964,1.006,0.888,1.053,1.157,1.044,0.91,1.233,0.986,0.883 +NM_152540,0.772,1.234,1.192,0.815,0.984,1.195,0.646,0.48,1.06,1.07,0.932,1.2,0.592,0.608,0.896,1.3,0.876,0.93,1.407,1.013,0.543,0.886,1.407,0.931,1.017,0.918,1.069,1.065,0.449,1.184,0.846,0.987,1.316,1.316,0.207,0.516,1.233,0.844,1.954,0.876,1.067,1.203,0.675,1.045,1.446,1.039,0.796,0.753,0.845,0.888,1.19,0.811,1.107,0.57 +NM_152542,1.505,0.912,1.04,1.056,1.138,0.955,0.976,0.839,2.055,0.976,1.087,0.891,1.137,1.25,1.235,0.874,1.147,1.016,1.194,0.926,0.957,1.338,0.855,1.293,0.977,1.412,0.883,1.263,0.623,0.941,1.326,1.127,1.001,0.986,0.878,0.785,0.975,0.985,1.004,0.875,0.96,0.999,0.975,1.012,1.006,1.04,0.922,0.92,0.887,0.962,0.904,0.877,1.039,1.098 +NM_152543,1.141,1.026,0.983,1.09,1.008,0.909,0.837,1.433,0.905,0.983,0.976,1.208,0.825,0.836,1.025,0.903,0.942,0.953,1.077,0.923,1.117,0.922,0.953,0.956,0.949,1.043,1.089,1.167,0.738,0.939,0.925,0.915,1.071,1.001,0.911,0.952,0.854,0.9,1.102,1.098,1.063,1.199,1.066,1.048,0.954,0.955,1.0,1.127,0.99,1.03,1.017,1.041,0.978,1.049 +NM_152544,1.094,0.909,1.064,1.039,1.132,0.881,0.974,0.933,1.108,1.044,0.946,1.04,0.963,0.891,1.058,1.068,1.136,1.028,1.258,1.045,0.978,1.158,0.803,1.208,0.959,1.119,1.151,0.992,0.812,0.827,0.956,1.063,1.048,1.064,0.927,0.78,0.934,1.058,1.119,0.929,1.271,1.016,0.941,1.069,1.192,0.831,0.944,1.117,0.876,1.095,0.972,0.864,1.124,1.093 +NM_152545,0.983,1.184,1.037,0.853,1.439,0.993,0.979,1.491,1.41,1.031,0.873,1.102,0.891,1.065,1.015,0.987,1.004,0.953,1.149,0.873,0.93,1.079,1.109,0.929,0.901,0.954,0.767,1.273,0.841,1.103,1.47,1.005,1.067,1.049,2.184,0.867,0.976,1.395,0.942,0.987,1.121,1.021,0.65,0.781,1.104,0.847,0.945,1.177,0.927,1.0,0.955,0.85,0.876,0.949 +NM_152547,1.068,0.924,1.104,0.82,1.032,0.976,0.989,0.934,0.931,0.965,1.261,0.841,1.224,1.05,1.121,1.048,1.078,1.032,1.107,0.883,0.976,1.013,1.008,1.019,1.036,1.112,0.983,1.125,1.107,0.988,1.182,0.975,1.042,1.022,1.01,1.06,1.017,1.138,0.97,0.948,0.873,0.855,1.333,1.044,0.876,1.054,0.959,0.871,0.863,0.906,1.02,0.928,0.946,0.907 +NM_152548,0.996,0.988,0.973,0.917,1.003,0.966,0.989,0.922,1.027,1.086,0.945,0.918,1.064,1.057,0.856,0.84,1.061,0.902,1.018,1.071,0.947,1.061,0.828,1.185,1.055,1.119,1.033,0.891,0.817,1.007,1.034,0.999,0.811,0.984,1.02,0.961,0.978,1.034,0.931,1.0,0.98,1.008,0.737,1.034,1.044,0.962,0.953,0.956,1.11,0.97,1.011,1.182,1.043,0.868 +NM_152549,0.885,1.09,1.059,1.08,0.975,1.272,1.008,1.0,1.075,0.87,0.916,0.926,0.912,1.159,0.932,1.373,0.927,1.177,1.085,1.085,1.114,1.0,1.004,1.186,0.785,0.889,1.024,0.855,1.273,0.999,0.925,0.933,1.466,1.197,1.096,0.973,0.921,0.875,1.245,0.83,1.056,0.985,1.161,1.07,1.018,0.985,0.9,1.018,1.175,0.979,1.007,0.804,1.07,1.413 +NM_152550,1.014,0.974,1.171,0.776,1.295,1.421,0.585,0.712,1.775,1.083,1.083,1.155,0.987,1.0,0.968,1.148,0.893,0.995,1.09,1.222,0.588,1.126,1.326,1.268,0.721,0.981,2.482,0.901,0.532,1.665,1.475,0.39,0.878,1.056,0.401,0.575,1.0,1.348,1.16,0.314,1.353,0.872,0.566,0.638,1.172,0.925,1.073,1.132,0.769,0.629,1.491,0.507,0.945,0.924 +NM_152551,0.902,0.962,1.059,0.655,0.916,0.946,0.806,1.061,0.763,0.862,0.828,1.113,0.9,1.07,0.867,1.422,0.907,1.081,1.212,0.915,0.84,1.066,0.81,0.955,0.926,0.757,1.017,1.055,0.822,0.944,0.906,0.934,1.789,1.041,0.886,0.956,1.118,1.108,1.047,1.109,0.806,1.091,1.108,0.997,0.893,0.972,1.053,0.917,1.183,1.057,1.071,1.043,0.898,1.102 +NM_152553,1.036,0.961,1.119,0.945,1.049,0.922,0.958,0.979,1.387,1.259,1.013,1.034,1.017,1.218,0.905,1.047,1.105,1.056,1.043,0.828,1.027,0.987,0.888,1.191,0.859,0.959,1.084,1.128,0.848,0.954,1.004,0.997,0.852,1.084,0.857,1.047,0.972,1.011,0.935,0.96,1.072,1.018,1.156,0.907,1.221,0.878,1.043,0.973,1.018,0.951,0.917,0.971,1.315,1.034 +NM_152556,1.049,0.926,1.14,0.893,1.149,0.904,0.791,0.755,1.213,1.161,1.008,0.961,1.104,1.05,0.964,1.06,1.014,1.094,1.415,1.028,0.956,0.984,0.958,1.016,0.794,0.927,0.953,1.242,0.799,1.02,1.084,0.983,1.147,0.934,1.356,0.921,0.955,1.071,0.991,0.813,1.125,1.042,1.066,0.942,1.08,0.835,0.961,1.029,0.901,1.137,0.981,0.825,1.208,0.873 +NM_152557,0.903,0.908,1.042,0.956,0.86,1.032,0.827,0.872,1.104,1.123,0.828,0.843,0.771,0.767,0.851,1.118,0.988,0.953,1.161,0.864,0.794,0.865,1.34,0.978,0.705,0.88,1.089,0.801,0.715,1.225,0.861,1.185,1.113,1.001,0.666,1.043,0.92,0.984,1.262,1.12,1.016,1.126,0.962,1.033,0.981,0.938,1.017,0.786,0.874,1.01,0.95,0.935,0.96,1.429 +NM_152558,0.849,0.971,1.036,0.917,0.994,1.275,0.906,0.934,0.914,0.865,1.074,1.058,0.89,1.061,0.956,1.067,0.935,0.958,0.956,0.988,0.978,0.879,1.117,0.958,1.018,0.883,0.832,0.991,1.0,1.126,1.115,0.92,1.014,1.085,0.932,1.155,1.012,1.1,1.32,1.072,1.103,1.0,0.931,1.237,1.042,1.018,1.023,1.025,0.946,0.989,1.012,0.999,1.104,0.836 +NM_152559,0.91,1.078,0.999,0.929,0.882,1.191,0.871,1.08,1.008,0.981,1.299,0.863,0.973,1.081,1.258,1.481,0.941,1.054,0.902,1.024,0.99,1.055,0.946,0.951,1.012,0.888,0.947,0.992,0.963,0.875,1.01,1.417,1.178,1.196,0.892,0.996,0.89,0.973,1.602,1.026,0.968,1.025,1.295,1.207,0.977,1.103,1.338,1.052,1.03,0.959,1.032,0.857,1.072,1.033 +NM_152561,0.794,0.815,0.96,1.024,0.684,1.037,0.688,0.558,0.985,0.853,0.964,0.651,0.764,0.903,1.03,1.137,0.928,0.758,0.908,1.059,0.547,0.816,1.235,0.781,0.864,0.858,0.814,0.767,0.505,1.261,0.919,2.361,1.727,1.339,0.643,0.977,0.809,0.659,1.832,2.105,0.853,1.008,1.099,2.078,0.804,1.063,1.312,0.721,0.861,0.99,0.921,1.125,1.239,1.877 +NM_152562,0.727,0.853,1.014,1.059,0.891,0.943,0.876,0.865,1.316,0.914,0.924,1.101,0.834,0.772,0.886,1.043,1.01,1.051,0.913,0.91,1.097,0.919,1.44,0.846,0.777,0.882,1.245,0.843,0.888,1.013,0.856,0.917,1.677,0.828,0.757,1.521,1.071,0.743,1.629,1.199,0.89,0.755,0.781,1.167,1.0,1.225,1.065,0.91,1.381,0.937,1.253,1.016,0.94,2.17 +NM_152563,1.13,0.854,0.914,0.937,1.022,0.985,1.026,1.166,1.058,1.096,0.941,0.871,1.109,0.885,0.942,1.051,0.932,1.088,1.01,1.102,0.97,1.048,0.953,0.976,1.103,0.952,0.98,0.958,1.085,0.994,1.047,0.998,0.989,0.915,1.066,0.925,0.915,0.914,0.996,0.95,1.137,0.965,0.942,1.051,1.048,0.92,0.971,1.011,1.241,0.95,1.052,1.097,0.864,0.916 +NM_152568,1.154,0.965,1.007,1.036,1.035,1.107,1.12,0.941,0.938,1.022,0.908,0.997,0.994,0.904,1.045,1.056,0.993,0.95,0.954,1.015,0.921,0.844,0.987,1.049,1.039,1.131,0.86,1.027,1.062,0.986,1.018,1.08,0.957,1.02,1.024,1.024,0.873,1.035,0.981,1.062,1.061,0.951,0.917,0.961,0.948,0.973,1.148,1.089,1.116,0.899,1.041,1.011,1.034,0.983 +NM_152569,1.153,0.987,1.024,1.003,1.008,1.108,0.923,1.147,1.011,0.872,1.06,1.199,0.989,1.058,0.958,0.912,1.001,0.897,0.914,1.074,1.093,0.859,0.985,0.98,0.835,1.042,1.171,1.006,1.254,1.0,0.982,0.855,1.127,1.014,0.96,0.975,1.037,0.993,0.898,0.949,0.939,0.884,0.849,1.0,1.032,0.92,0.965,0.895,0.993,0.921,1.129,1.154,0.981,1.122 +NM_152570,1.066,0.995,0.927,0.98,1.031,0.983,1.027,1.076,0.922,1.11,1.05,0.984,1.025,1.081,1.076,1.049,1.012,1.03,0.948,1.037,0.997,1.068,1.059,1.005,0.892,0.969,1.13,0.959,0.965,1.031,1.127,0.92,0.95,0.972,1.066,0.922,1.033,1.019,1.007,0.969,1.067,0.936,0.916,1.171,0.955,0.947,0.911,0.879,1.052,1.047,0.955,0.95,0.899,0.973 +NM_152571,1.0,1.085,1.206,0.939,1.006,0.949,1.057,1.206,1.036,0.899,0.973,1.06,1.113,0.926,0.899,0.942,1.157,0.98,0.982,0.929,1.034,0.854,0.998,1.089,0.949,1.035,0.985,0.963,1.066,1.154,1.09,1.103,0.901,0.974,0.786,0.964,0.873,1.027,1.089,0.928,1.095,0.981,1.016,0.901,1.062,1.082,1.012,1.093,1.082,0.926,1.041,1.18,1.018,0.995 +NM_152572,1.003,0.966,0.953,0.988,1.073,1.122,0.89,0.972,1.028,1.001,0.864,0.885,1.031,0.826,1.136,0.963,0.956,1.044,0.785,0.93,0.936,1.087,0.971,0.894,1.001,1.036,0.976,0.999,0.897,1.604,0.814,1.031,1.231,1.423,1.015,1.008,0.947,1.112,0.879,1.122,0.924,1.005,0.92,1.03,0.979,0.881,0.955,0.939,0.933,0.978,0.978,1.058,0.845,1.045 +NM_152574,1.113,0.854,1.913,0.875,1.157,1.049,0.807,0.81,1.121,1.601,1.17,1.126,1.028,0.828,1.184,1.149,1.307,1.352,2.094,0.784,0.748,0.951,1.008,1.505,0.692,0.808,1.283,1.172,0.738,0.856,1.033,0.847,1.007,0.976,0.995,0.903,0.929,0.979,0.831,0.635,1.541,0.899,0.831,1.376,1.732,1.086,1.433,0.941,1.457,1.492,1.015,1.017,1.592,0.782 +NM_152575,0.965,1.075,1.133,0.917,1.027,0.977,0.837,0.947,1.055,0.965,0.997,1.032,0.855,0.871,1.25,0.923,0.96,1.136,0.984,1.056,1.009,1.039,0.92,0.945,1.104,1.037,1.037,0.971,0.981,1.043,0.935,1.058,1.05,0.993,0.989,1.045,1.076,1.045,0.973,0.995,0.982,0.972,1.055,1.132,1.003,0.945,1.108,1.087,1.019,1.04,1.088,0.979,0.906,1.034 +NM_152577,0.984,0.767,0.892,0.932,0.994,1.128,0.823,0.958,0.97,0.968,0.934,0.979,0.908,1.222,0.919,1.029,0.972,0.794,0.994,0.99,1.057,0.949,0.959,1.091,1.058,0.976,1.029,0.845,0.902,0.998,1.007,1.026,0.954,1.006,0.902,0.989,1.045,1.048,1.018,0.959,0.941,1.035,0.797,0.888,0.993,1.034,1.172,0.951,1.022,1.165,1.138,0.861,1.137,0.884 +NM_152578,0.928,0.839,1.12,0.941,0.997,1.096,0.929,0.937,1.074,0.864,1.136,1.071,1.075,1.192,0.942,1.021,1.015,1.011,0.876,0.896,0.84,0.999,1.039,1.019,0.968,0.896,0.866,1.125,0.988,1.06,0.889,0.878,1.159,1.166,1.023,0.95,1.09,0.966,0.945,0.982,1.031,0.937,0.898,0.947,0.955,0.939,0.968,1.021,1.002,1.001,0.941,0.997,1.112,0.878 +NM_152579,0.632,1.248,1.001,0.742,0.872,1.309,0.847,0.653,1.009,0.797,1.026,0.751,0.557,0.636,0.874,1.315,0.673,1.105,1.022,1.037,0.54,0.813,0.963,0.971,0.772,0.772,1.45,0.805,0.685,1.137,0.742,1.355,1.39,1.542,0.504,0.85,1.216,0.774,1.084,0.809,0.837,1.102,0.67,1.053,0.839,0.993,1.015,0.717,0.781,0.725,1.054,0.844,0.821,1.438 +NM_152580,1.195,1.048,0.92,0.974,0.888,0.944,0.85,0.975,1.149,0.988,0.956,0.959,0.988,0.997,0.839,0.93,1.062,1.179,1.035,1.001,1.028,1.018,1.02,0.934,1.0,1.144,0.87,1.017,1.21,0.946,0.965,1.029,1.129,0.918,0.927,0.999,1.109,0.951,1.048,1.026,1.05,0.975,1.165,0.972,1.034,0.753,1.185,1.029,1.146,0.944,0.92,1.07,0.967,0.919 +NM_152581,0.994,0.877,1.143,0.883,1.21,1.092,0.852,1.029,1.1,0.891,0.892,1.084,0.864,0.908,0.866,1.085,0.969,0.986,0.967,0.973,0.836,1.237,0.737,1.234,0.818,0.937,1.108,1.092,0.873,1.123,1.17,1.237,1.355,0.875,0.693,0.954,0.957,0.959,1.179,1.048,0.951,1.09,0.881,0.939,0.897,1.003,0.977,0.916,0.884,0.813,1.011,1.104,0.83,1.045 +NM_152582,0.975,1.012,1.004,0.952,0.984,1.05,1.033,1.169,0.856,1.052,1.024,0.826,0.924,0.776,1.248,0.971,0.969,1.0,1.008,1.015,0.898,1.036,0.796,1.027,1.04,1.044,0.885,1.121,0.776,0.962,0.924,0.855,0.97,0.91,1.065,1.001,0.889,1.127,4.518,0.961,1.021,1.233,1.026,0.941,0.929,0.877,0.95,0.861,0.965,1.004,1.027,1.096,1.096,1.176 +NM_152584,2.22,1.931,2.012,1.98,2.1390000000000002,2.0599999999999996,2.259,2.072,2.125,2.011,2.076,2.066,1.983,1.968,1.944,1.9009999999999998,1.859,2.069,1.779,1.975,1.867,2.072,1.94,2.104,1.9829999999999999,2.1029999999999998,1.7000000000000002,1.923,2.748,2.179,1.9700000000000002,1.843,2.2649999999999997,1.841,2.053,2.101,2.0620000000000003,2.052,1.897,2.0380000000000003,2.043,1.944,2.515,1.822,1.889,2.0549999999999997,1.928,2.1390000000000002,1.9209999999999998,2.002,2.0460000000000003,1.875,1.8860000000000001,1.861 +NM_152585,0.922,1.105,0.916,1.108,0.925,1.061,0.959,1.041,0.927,0.846,0.887,0.826,1.07,0.765,0.912,1.148,0.92,1.017,0.948,0.944,1.077,0.808,0.946,1.001,0.934,1.119,0.958,0.996,1.202,1.07,1.042,1.123,1.085,1.074,0.956,1.154,1.001,0.866,1.108,1.056,1.1,1.149,1.036,1.143,0.947,0.711,0.956,0.893,1.127,0.987,0.904,0.922,0.941,1.008 +NM_152586,0.793,1.331,1.194,0.995,0.93,1.753,0.879,0.561,1.259,0.67,1.558,0.56,0.567,0.661,1.138,1.321,0.88,1.094,1.107,1.564,0.577,0.671,1.308,0.935,0.75,0.814,1.301,0.822,0.771,1.64,0.987,0.522,1.394,1.992,1.057,0.864,1.061,0.892,1.342,0.603,0.896,1.56,0.598,0.932,0.962,1.254,0.713,0.736,0.687,0.904,1.105,0.77,0.924,1.67 +NM_152587,0.972,1.196,0.933,1.031,1.059,1.046,0.909,0.898,1.058,0.96,1.041,1.116,0.959,1.039,0.95,1.059,1.052,0.953,0.875,0.958,0.837,1.041,0.926,0.962,0.869,1.146,0.962,1.098,0.992,1.128,1.002,0.99,0.924,0.873,1.08,1.058,0.989,1.044,1.099,0.911,1.044,0.919,1.084,1.144,0.988,0.939,1.007,0.994,1.061,0.955,0.928,0.85,1.018,1.032 +NM_152588,0.93,1.037,1.218,0.994,0.959,0.915,0.967,0.823,1.037,0.997,0.854,0.803,0.879,0.986,0.911,0.964,1.06,1.018,1.228,0.979,0.804,0.931,0.938,1.014,0.952,0.96,1.089,0.985,0.805,1.08,0.995,0.863,1.022,1.378,0.879,0.954,1.017,0.972,1.168,0.905,1.034,0.976,1.16,0.982,1.071,1.109,0.873,0.928,0.889,0.908,1.12,1.028,0.933,1.01 +NM_152589,0.989,1.034,1.102,1.081,0.932,0.96,1.022,1.011,1.084,0.932,0.969,0.981,1.055,1.008,0.886,1.143,0.957,0.932,1.116,1.112,1.044,0.968,1.094,1.03,1.05,0.989,0.951,0.905,0.988,1.104,1.102,1.038,0.995,0.855,1.107,1.087,1.058,1.025,0.964,1.065,1.025,0.887,0.973,0.938,0.928,1.048,1.029,0.969,0.971,0.96,0.935,1.0,0.879,1.008 +NM_152590,1.096,0.985,0.87,0.958,0.96,1.03,1.041,1.067,0.81,1.027,0.855,1.017,0.972,1.105,0.932,0.88,1.102,1.049,0.866,1.101,1.084,0.833,0.994,0.961,0.842,0.927,0.989,1.016,0.776,0.944,1.02,1.036,0.979,0.995,0.89,0.95,0.913,1.087,0.969,0.95,1.008,0.914,1.111,0.955,0.976,0.99,0.991,0.978,0.964,1.006,1.039,0.928,0.907,1.111 +NM_152591,1.003,0.933,0.983,0.966,0.936,1.066,1.071,1.057,0.992,1.149,1.08,1.028,0.982,1.044,1.016,1.014,1.042,0.956,0.97,0.983,0.949,1.038,1.013,0.954,0.957,1.06,1.058,1.169,0.931,0.97,1.108,0.979,0.942,1.108,0.878,0.97,1.059,0.977,0.944,1.044,0.895,1.108,1.049,0.961,0.997,0.964,0.947,1.015,1.132,0.878,1.063,0.96,0.982,0.924 +NM_152592,0.99,0.983,1.005,0.996,0.998,1.019,1.24,0.97,1.076,1.09,1.144,1.095,1.089,0.938,1.084,1.006,1.031,0.963,1.055,0.929,0.938,0.996,1.108,1.024,1.0,0.983,0.888,0.994,1.097,1.108,1.149,0.944,0.999,1.065,1.032,1.074,1.147,1.022,0.979,0.93,1.03,1.152,0.955,0.962,0.867,0.937,1.027,1.045,1.046,1.106,1.055,1.082,1.086,0.927 +NM_152594,0.32,1.119,0.478,0.794,0.512,1.648,1.094,0.368,0.512,0.521,1.575,0.686,0.444,0.373,0.82,1.934,0.357,1.015,0.462,1.182,0.303,0.481,1.632,0.545,0.725,0.386,0.898,0.444,0.674,1.538,0.422,1.461,1.016,1.652,0.18,1.318,1.291,0.514,1.398,1.225,0.458,1.188,0.902,1.19,0.448,1.287,0.969,0.371,1.205,0.432,1.097,1.147,0.673,1.166 +NM_152595,1.0,1.081,1.139,0.932,1.072,1.158,0.786,0.944,1.017,0.965,0.895,0.981,1.024,0.919,1.108,1.106,0.977,0.889,1.005,1.043,0.941,1.053,0.955,0.96,0.943,0.947,0.889,1.142,1.021,0.986,1.088,1.054,1.021,0.97,0.877,0.989,1.0,1.037,1.062,0.933,1.134,0.96,1.079,0.998,0.913,1.027,1.078,0.943,0.989,0.946,1.06,0.888,0.969,0.976 +NM_152597,0.966,1.01,1.008,0.988,1.032,1.163,0.832,1.187,1.061,1.117,1.011,1.061,0.966,0.935,1.591,0.944,0.935,0.985,0.906,1.12,1.096,0.838,0.954,1.006,1.044,1.063,0.85,0.905,1.39,1.127,1.033,1.019,1.245,1.136,1.046,0.985,1.085,0.864,0.885,0.967,1.072,0.964,1.035,0.971,0.925,1.004,1.099,1.001,0.886,0.989,1.004,1.118,0.992,1.026 +NM_152599,0.942,1.196,0.812,1.078,0.987,0.896,0.836,0.777,0.949,0.878,1.15,0.895,0.864,0.773,0.754,1.0,0.987,1.149,0.983,1.487,0.841,0.876,1.888,0.821,1.252,0.961,0.945,0.915,0.746,1.002,0.928,1.035,0.94,1.586,0.79,1.427,1.335,0.838,1.179,1.1,0.948,1.355,0.904,0.955,0.969,1.026,1.04,0.988,0.975,0.962,1.23,0.817,1.014,0.825 +NM_152600,0.613,1.851,0.791,0.965,0.617,1.465,1.103,0.443,0.808,0.859,0.936,0.607,0.629,0.65,0.733,1.007,0.796,1.275,0.719,1.339,0.573,0.561,1.558,0.65,1.472,0.674,0.915,0.605,0.885,2.158,0.751,1.966,1.732,2.147,0.456,1.567,1.186,0.704,1.927,1.617,0.65,1.297,0.703,2.221,0.601,0.84,0.886,0.608,0.72,0.619,1.0,1.097,0.856,2.047 +NM_152602,0.935,0.9,1.193,0.854,1.158,0.998,0.901,1.152,1.453,1.086,0.897,1.051,1.108,1.216,1.203,1.059,1.299,0.968,1.428,1.033,0.848,1.263,0.842,1.337,0.838,1.016,1.076,1.314,0.99,1.119,1.63,1.11,1.311,1.218,1.461,0.785,0.95,1.236,0.842,0.9,1.303,0.807,0.988,0.882,0.909,0.855,0.928,1.155,0.81,1.032,0.915,0.859,1.152,1.411 +NM_152603,0.95,1.044,1.121,0.937,1.184,1.037,0.947,0.864,1.065,1.095,1.073,0.962,0.92,1.21,1.048,1.053,0.988,0.958,1.127,1.031,0.799,1.105,1.001,1.136,1.05,0.844,0.993,1.052,0.917,1.066,0.976,1.07,1.277,0.889,1.106,0.952,1.039,0.851,1.049,0.905,0.987,1.004,1.089,0.946,1.041,1.16,0.964,0.983,0.975,0.922,0.936,1.005,0.997,1.09 +NM_152604,0.862,1.118,1.051,0.799,0.951,1.046,1.203,0.872,0.96,1.038,0.785,1.085,1.013,0.902,1.105,1.177,1.013,0.927,1.012,1.052,1.023,0.86,0.946,1.148,0.876,0.929,1.145,0.895,1.075,0.903,0.941,1.052,1.346,0.96,0.946,0.914,0.961,1.025,1.048,1.181,0.951,0.902,1.082,1.045,0.938,0.92,0.992,0.942,0.743,1.038,0.842,0.93,0.892,1.086 +NM_152605,0.972,1.004,0.874,0.938,1.065,1.093,1.003,1.105,1.01,0.974,0.986,1.141,0.925,0.869,0.896,0.944,1.08,0.979,1.008,0.764,1.057,0.962,1.062,0.96,1.007,0.979,1.058,1.069,0.818,0.906,0.98,1.071,0.908,1.027,1.042,0.944,1.006,1.046,1.063,1.053,0.981,0.933,1.122,0.89,1.076,1.053,0.888,0.87,1.081,1.091,1.125,1.02,0.929,0.902 +NM_152607,1.42,0.924,1.012,1.003,1.708,0.906,0.744,1.606,2.127,1.244,1.022,1.587,1.3,0.989,1.225,1.096,2.006,1.191,1.908,0.914,1.343,1.489,0.854,1.567,0.924,2.128,1.47,1.582,1.029,0.926,1.395,0.932,0.996,0.948,2.568,0.934,0.881,1.284,0.963,0.917,1.593,1.007,0.927,0.96,1.695,0.917,1.243,1.805,1.12,1.588,0.896,0.909,1.461,0.88 +NM_152608,1.033,1.079,1.049,0.909,0.992,1.095,0.891,0.961,0.902,1.166,0.841,0.939,0.799,0.931,1.112,1.036,1.003,0.989,0.843,1.039,0.977,0.966,0.996,1.012,1.149,1.003,0.955,0.853,0.872,0.957,1.012,0.929,1.785,1.064,0.971,1.145,1.001,1.03,1.176,1.132,0.942,1.078,0.932,1.076,0.973,1.098,1.027,0.868,0.884,1.064,0.985,0.911,0.941,1.098 +NM_152609,1.404,0.76,1.023,0.644,1.831,1.066,0.675,3.457,1.729,0.595,1.009,1.286,1.435,0.715,1.502,1.253,0.693,1.221,1.348,0.78,0.568,1.484,0.924,0.999,0.636,0.669,0.937,1.198,0.389,1.055,1.499,1.027,0.905,1.177,4.225,0.889,1.261,1.992,0.983,1.597,1.272,1.301,0.774,0.792,0.887,0.736,1.004,1.208,0.737,0.675,0.919,0.944,0.815,0.862 +NM_152610,1.028,1.016,1.085,0.859,1.056,0.919,1.088,1.024,1.107,0.904,1.111,0.878,1.097,0.645,0.952,0.82,0.943,0.915,0.973,1.325,0.905,1.085,1.079,0.912,1.046,1.011,1.077,1.141,0.848,1.013,0.978,1.048,1.145,0.968,1.048,0.933,1.028,0.917,0.931,0.98,1.117,1.131,1.044,1.076,0.937,0.929,0.95,1.03,1.024,1.09,1.027,0.981,1.109,0.996 +NM_152611,1.045,0.905,0.938,0.909,0.89,0.976,0.992,1.119,1.053,0.939,1.001,1.0,0.991,0.947,0.956,1.117,1.025,0.87,1.083,1.049,0.978,1.014,0.922,0.953,1.011,1.127,1.057,0.827,1.072,1.0,1.16,1.015,1.183,0.994,1.098,0.999,1.005,0.846,0.933,1.008,0.812,0.981,0.886,0.971,1.017,1.049,0.927,0.935,0.959,0.969,1.014,1.017,1.03,1.25 +NM_152612,1.031,0.97,1.126,0.84,1.079,0.982,0.945,1.019,0.96,0.958,1.039,0.987,0.998,0.833,0.714,1.021,1.108,1.199,1.02,1.055,0.993,0.918,1.176,1.026,1.031,0.932,0.964,1.024,0.991,0.982,0.894,1.09,0.845,1.058,1.157,1.003,1.021,0.853,0.818,0.873,0.909,1.07,1.866,0.878,1.222,0.914,1.027,0.996,1.017,1.008,1.006,1.123,1.054,1.192 +NM_152615,1.048,1.047,0.896,1.005,0.952,1.152,0.954,0.944,1.102,0.939,1.045,0.979,1.009,0.992,0.914,0.96,0.884,0.893,0.989,1.001,0.889,0.912,1.05,0.934,0.916,0.962,0.996,0.993,1.248,0.971,0.941,0.913,1.164,1.066,1.026,0.954,0.891,0.978,1.075,1.064,1.009,0.977,1.023,1.049,1.034,0.978,0.913,1.018,1.028,1.047,1.055,0.933,0.893,0.972 +NM_152616,0.996,0.955,1.078,1.064,0.96,0.91,0.902,0.941,0.992,1.032,0.966,1.036,1.004,1.059,1.142,0.955,1.037,0.946,1.093,1.004,0.938,1.022,1.073,1.084,1.071,1.053,1.073,1.067,0.863,1.011,0.855,0.88,1.048,0.932,1.016,1.037,0.92,1.102,1.0,0.91,1.149,1.115,0.951,1.125,0.973,1.05,0.918,1.086,0.996,0.945,1.006,1.044,0.917,1.084 +NM_152617,0.997,1.059,1.153,0.865,0.92,0.982,0.802,1.049,0.868,0.94,1.026,1.181,0.965,0.88,0.852,0.988,0.869,0.93,0.963,1.009,1.004,0.967,0.931,1.061,1.032,1.107,0.998,1.007,0.887,0.913,1.3,1.064,1.053,1.027,0.935,0.944,1.027,1.013,1.055,1.228,0.965,1.302,0.906,1.033,0.983,1.028,0.974,1.028,1.021,0.911,1.087,0.894,1.074,0.935 +NM_152619,0.952,1.016,1.012,0.912,0.995,0.901,0.917,1.003,1.015,0.964,1.118,0.968,1.047,0.865,0.971,0.978,0.983,1.043,1.03,0.993,0.901,0.995,0.91,0.946,0.959,0.866,0.892,0.98,1.464,1.079,0.982,1.778,1.19,1.066,0.98,0.896,0.883,0.988,1.009,1.151,0.982,1.169,0.952,0.982,1.08,0.951,0.854,0.965,1.049,1.03,0.992,1.035,1.063,1.051 +NM_152620,1.063,0.98,1.155,0.844,0.904,1.062,0.793,1.157,1.006,0.965,1.133,0.916,1.109,1.049,0.927,1.033,1.054,0.969,1.021,0.91,1.026,0.916,0.96,1.131,1.028,1.073,1.072,1.05,0.771,0.902,1.095,0.959,0.896,1.054,1.004,0.937,0.992,0.939,1.104,1.032,1.093,0.983,0.753,1.023,1.02,0.991,0.945,0.977,1.028,0.869,1.043,0.941,0.903,1.006 +NM_152621,0.922,1.057,0.935,0.719,1.01,1.278,0.933,1.01,1.045,1.221,0.95,0.988,0.804,0.82,0.868,1.375,0.969,0.983,1.237,1.104,0.937,0.926,1.065,1.265,0.786,1.005,1.141,1.003,0.713,1.043,0.994,1.214,1.32,0.883,0.663,0.909,1.078,0.964,1.179,0.844,0.899,0.991,1.402,0.997,1.072,1.3,1.239,0.831,1.148,0.822,1.033,0.871,1.291,1.117 +NM_152622,1.137,1.052,1.034,0.923,0.953,0.995,1.094,1.104,0.937,0.906,1.088,1.085,1.072,1.091,1.014,1.121,1.032,1.05,0.955,1.097,0.878,1.015,1.101,1.118,0.924,0.891,0.929,0.939,1.031,1.1,0.996,0.906,1.02,1.195,1.037,1.028,0.92,0.933,1.038,0.993,0.909,0.899,0.87,0.87,0.969,0.965,1.127,0.969,0.95,1.033,0.916,0.936,0.909,0.969 +NM_152624,0.78,0.96,1.462,0.766,1.062,1.112,0.873,0.883,1.315,0.866,0.947,0.782,0.762,0.828,0.978,1.505,1.199,1.074,1.256,1.162,0.612,1.058,1.021,1.081,0.713,0.696,1.887,0.986,0.656,1.258,1.225,1.562,1.564,1.124,0.985,0.584,0.991,0.992,1.073,1.173,1.068,0.931,0.55,0.663,0.943,0.911,1.065,0.892,0.94,1.002,1.115,0.873,0.592,1.537 +NM_152625,0.899,1.021,0.985,0.93,0.977,0.975,0.999,0.8,0.985,1.219,0.996,0.965,0.926,0.964,0.872,1.004,1.041,1.015,0.933,0.925,0.985,0.853,1.02,1.104,0.839,0.998,1.051,0.987,1.166,1.065,1.08,1.067,1.017,1.051,1.043,0.904,0.882,0.918,1.102,1.029,1.107,0.959,0.873,0.942,1.068,0.975,1.052,0.936,0.906,1.041,0.995,0.905,0.997,1.005 +NM_152626,1.067,1.045,0.911,0.846,0.972,0.951,0.937,1.019,0.899,0.902,0.851,0.94,0.929,0.999,0.892,0.976,0.971,0.989,1.034,1.032,1.174,1.012,0.79,1.098,1.105,1.159,1.119,1.035,0.945,1.079,1.142,1.074,0.959,1.068,0.945,1.024,1.087,0.971,0.996,1.031,1.164,0.908,0.955,1.048,1.148,0.9,0.89,1.095,0.945,1.05,1.146,0.933,1.056,0.954 +NM_152628,1.3,0.934,1.896,1.108,1.41,0.913,0.923,1.497,1.607,1.024,0.819,1.009,1.519,1.944,0.896,1.083,1.841,1.308,1.659,1.002,0.958,1.718,0.988,1.171,1.004,1.384,1.175,1.261,1.169,0.915,1.823,0.84,1.231,0.984,1.155,0.938,0.914,1.088,0.773,0.835,1.871,0.923,1.285,1.04,1.142,0.842,0.826,1.741,0.786,1.396,0.996,0.894,1.417,1.157 +NM_152629,0.893,0.942,0.93,0.98,0.858,1.028,0.938,0.901,0.959,0.777,0.97,0.847,1.033,1.1,0.995,0.884,0.937,1.066,0.894,0.969,1.028,1.03,0.846,0.955,1.0,1.027,0.995,0.997,0.833,0.983,0.97,1.07,0.898,0.859,1.025,0.943,1.027,1.115,0.898,1.068,0.991,1.157,0.852,0.997,1.088,0.997,1.059,0.932,0.976,0.991,0.994,1.067,0.944,1.096 +NM_152630,0.987,0.988,0.995,0.784,0.931,0.988,0.833,1.089,1.024,0.939,0.901,1.099,1.037,1.221,1.019,1.027,1.218,0.894,0.865,0.957,1.055,1.062,0.84,0.964,1.025,1.123,1.05,1.091,0.905,1.249,1.19,1.039,0.963,0.929,0.929,0.926,1.206,1.137,1.103,1.081,0.96,0.907,0.781,0.93,0.991,0.964,0.991,0.992,0.958,0.953,1.141,0.996,0.885,0.993 +NM_152631,1.104,0.922,0.978,1.014,1.039,1.002,0.907,0.754,0.946,0.877,0.94,0.898,1.009,0.857,1.091,1.008,0.883,1.137,0.89,0.963,0.915,1.025,1.0,0.958,0.859,0.997,0.956,0.925,1.069,0.884,1.143,1.098,0.839,0.946,1.126,1.186,0.934,1.018,1.054,0.973,1.066,0.938,1.011,0.917,0.961,1.156,1.105,0.906,0.932,1.08,1.04,1.181,0.924,0.96 +NM_152632,1.039,0.991,1.043,1.106,0.94,0.892,0.934,0.914,1.0,0.998,1.306,0.939,1.106,0.863,0.924,0.936,0.965,1.128,0.965,0.888,1.011,1.037,1.039,1.086,1.082,0.955,1.14,1.066,0.941,0.969,1.006,1.03,1.062,0.929,0.998,1.068,0.91,0.976,1.0,1.008,0.99,1.002,1.029,1.124,0.833,1.051,0.996,1.034,0.925,0.979,0.959,1.013,1.011,0.922 +NM_152633,0.9,0.927,0.94,1.101,0.87,0.935,0.976,0.955,0.995,0.913,0.946,1.09,1.049,0.959,0.98,1.101,0.954,0.958,1.058,1.031,0.898,1.065,1.099,1.022,0.952,0.94,1.011,1.019,1.063,0.863,1.242,0.964,1.622,0.847,0.969,1.11,0.92,0.958,1.064,1.069,0.976,0.949,1.152,0.952,1.036,1.052,0.961,0.994,0.942,1.004,0.955,1.034,1.041,1.055 +NM_152637,0.576,0.953,0.603,0.878,0.506,2.663,0.868,0.547,0.643,0.565,2.899,0.645,0.512,0.635,1.545,6.708,0.554,0.91,0.503,1.534,0.6,0.584,2.556,0.532,0.691,0.528,0.483,0.52,0.935,1.963,0.627,1.259,3.013,1.702,0.617,1.394,2.746,0.571,2.106,1.033,0.561,2.907,1.628,3.833,0.571,1.647,1.627,0.516,1.132,0.624,2.196,0.965,0.599,1.837 +NM_152638,1.121,0.993,1.022,1.085,1.107,1.011,0.961,0.937,1.026,1.092,0.865,1.002,0.958,0.944,0.887,0.958,0.99,0.903,1.111,1.01,1.107,1.006,1.082,1.031,1.09,0.959,1.07,0.876,1.27,0.983,1.044,0.902,0.937,1.056,0.949,1.019,1.104,1.142,0.983,0.977,0.921,0.839,1.098,0.947,0.997,0.99,1.006,0.954,1.031,1.056,1.029,0.968,0.987,1.172 +NM_152639,1.005,0.938,0.957,1.128,1.077,1.162,1.228,1.011,1.071,0.954,1.15,1.052,1.098,0.998,0.98,1.11,0.963,0.892,1.088,0.998,1.041,1.244,1.043,0.984,0.957,1.118,0.944,0.946,0.906,0.899,1.0,0.917,0.943,1.057,1.009,0.957,1.0,1.036,0.876,0.945,0.939,1.159,1.151,0.854,1.071,0.935,0.909,1.031,1.055,0.965,1.107,0.93,0.829,0.953 +NM_152640,0.863,1.111,1.023,0.82,0.964,1.1,0.918,0.666,0.923,0.881,1.027,0.856,0.817,0.728,0.978,1.051,0.935,0.886,0.969,1.064,0.819,0.854,1.293,0.881,0.926,0.869,1.097,0.879,1.049,1.162,0.866,1.23,1.863,1.202,0.63,1.08,1.04,0.881,1.021,1.014,0.954,1.112,0.871,0.977,1.003,1.042,0.899,0.796,0.795,0.9,1.174,0.969,0.906,1.058 +NM_152642,1.091,1.028,0.916,0.907,1.002,1.094,0.792,0.997,1.016,1.062,1.014,1.053,0.984,0.849,0.83,0.896,1.004,1.137,0.809,1.015,1.068,0.912,0.919,0.913,1.001,0.96,0.941,1.034,0.721,1.054,0.95,0.988,1.087,1.09,0.922,0.949,0.971,1.134,1.062,1.017,1.01,1.006,0.868,0.97,1.007,0.882,0.98,1.129,0.967,1.021,1.065,0.919,0.898,0.966 +NM_152643,0.999,1.012,1.113,1.124,1.085,1.069,0.877,1.232,0.839,0.809,1.071,0.912,1.133,1.06,1.25,0.89,1.132,0.904,1.114,0.981,1.043,1.035,1.025,1.049,1.113,0.994,1.034,1.04,1.117,0.904,1.137,1.057,0.998,1.0,0.99,0.967,0.935,0.955,1.072,1.013,1.075,0.907,1.172,0.971,1.039,0.939,0.918,1.044,1.174,1.115,0.958,0.965,0.96,0.947 +NM_152644,0.953,0.799,0.828,0.938,0.875,0.863,1.002,0.846,1.027,1.005,1.075,0.827,1.216,0.98,1.132,1.131,0.916,1.013,1.138,0.883,0.813,0.882,1.04,1.033,0.913,0.938,0.994,1.104,0.861,1.07,1.033,1.473,1.203,1.053,0.972,1.066,1.083,1.198,1.142,1.23,0.922,0.954,1.001,1.165,1.137,0.974,1.045,0.909,0.931,0.999,0.995,0.895,0.851,1.335 +NM_152647,1.047,0.908,1.096,1.033,0.867,1.07,0.887,0.997,1.024,0.921,1.117,0.95,1.027,0.859,0.983,0.84,1.222,0.987,1.015,0.966,0.991,1.012,1.106,1.053,1.034,0.974,1.123,1.031,1.065,0.996,0.896,0.973,0.826,0.854,1.23,1.007,1.124,0.891,1.062,0.996,1.038,1.089,0.909,1.081,0.93,1.134,1.127,0.878,1.029,1.103,0.984,1.013,1.109,1.158 +NM_152652,0.934,0.937,0.916,0.857,1.043,1.0,0.937,0.952,0.947,1.185,0.904,0.981,1.048,0.951,1.008,1.091,1.034,1.021,1.132,0.948,1.134,0.961,1.143,1.0,0.985,0.941,0.978,0.974,0.745,1.003,0.884,1.006,1.112,0.946,0.864,0.966,1.074,0.98,1.027,1.19,0.877,1.016,0.964,1.014,0.834,0.98,1.093,0.975,1.091,1.08,1.004,1.05,1.054,1.128 +NM_152653,1.581,0.626,2.193,0.651,2.686,0.455,0.418,1.779,2.055,2.406,0.406,2.292,1.357,1.4,1.082,0.968,1.757,1.609,2.591,0.538,0.931,1.836,0.514,2.587,0.65,2.125,2.168,2.694,0.392,0.573,1.765,1.857,2.552,0.854,0.735,1.086,0.368,2.7,1.087,0.755,1.719,0.854,0.319,0.921,2.132,0.46,1.851,2.407,0.497,1.838,0.739,1.048,2.276,1.68 +NM_152654,1.057,0.926,1.069,0.994,0.911,0.971,1.281,0.953,1.029,1.119,0.924,1.096,0.937,0.69,0.862,1.098,0.915,1.028,1.15,1.118,1.035,0.97,1.288,1.175,0.927,0.966,1.064,1.017,0.928,0.883,0.956,1.01,1.091,0.98,0.989,1.089,1.029,0.898,1.09,0.904,1.027,1.003,0.906,0.936,0.947,0.872,0.765,0.866,1.038,1.034,1.134,1.137,1.06,0.78 +NM_152655,0.912,1.046,0.994,0.833,0.823,1.046,1.032,1.071,1.008,0.857,0.953,1.041,1.012,0.914,1.062,0.998,0.927,0.853,0.987,1.046,0.944,1.014,0.814,0.988,0.948,0.845,1.098,0.954,1.145,1.03,0.989,1.237,1.15,1.003,0.838,1.041,1.111,0.928,0.979,1.016,0.942,1.127,1.056,0.798,1.026,0.891,0.881,0.869,0.978,0.867,1.002,0.886,0.881,0.977 +NM_152657,1.162,1.166,0.901,0.977,0.974,1.014,0.951,0.967,0.751,0.991,0.972,1.006,0.897,0.92,0.997,1.026,1.124,1.063,0.943,1.088,0.954,1.047,1.047,1.07,1.008,0.881,0.822,0.942,2.022,1.017,0.898,1.0,1.074,1.032,0.939,1.063,1.127,0.891,1.23,0.895,0.895,0.986,1.135,1.058,1.159,0.918,1.046,0.979,1.061,0.95,0.961,1.014,0.992,0.839 +NM_152660,0.925,1.138,1.135,0.962,0.988,1.145,0.862,0.798,1.166,0.824,1.09,1.287,0.867,0.708,0.759,1.091,0.842,1.115,1.008,1.199,0.723,0.887,0.985,0.957,0.829,1.031,1.072,0.849,0.823,1.065,0.874,0.963,1.219,1.139,0.521,1.326,0.899,0.849,1.282,0.969,0.91,1.023,0.97,1.074,1.21,1.208,0.878,0.816,0.88,1.178,1.009,0.893,1.025,1.21 +NM_152661,0.878,1.179,0.912,1.094,0.849,1.03,1.069,1.148,1.048,1.01,0.928,0.949,0.951,1.056,1.256,0.931,0.835,1.08,1.077,1.008,0.999,0.861,1.085,0.862,1.71,0.824,1.144,1.001,1.085,0.972,0.821,1.105,0.866,1.345,1.19,1.076,1.061,0.942,1.01,1.109,1.046,0.98,1.278,0.882,0.987,1.111,0.96,1.186,0.826,0.999,0.838,0.952,0.851,1.003 +NM_152663,0.91,0.749,1.412,0.816,1.237,1.125,0.921,1.436,1.449,1.149,1.12,1.14,0.88,0.967,1.103,0.991,1.145,1.143,1.184,0.888,0.856,1.154,1.043,1.243,0.639,1.031,1.088,1.591,0.871,0.837,1.411,0.687,0.996,0.79,2.025,0.909,1.091,1.366,1.093,0.811,1.153,0.834,0.938,0.836,1.121,0.911,1.375,1.303,1.334,0.959,0.945,0.785,1.08,0.765 +NM_152665,1.096,1.003,0.976,0.892,1.1,0.963,0.813,0.982,0.922,0.902,0.982,1.029,0.879,1.084,0.873,1.092,0.894,1.062,0.989,1.08,1.061,0.977,0.961,1.038,0.918,0.91,1.154,1.008,0.931,1.014,1.021,0.995,0.917,1.142,0.968,0.964,1.094,1.092,1.014,0.984,1.076,1.116,0.934,1.0,0.906,1.029,0.897,1.113,0.87,0.938,0.881,0.931,0.934,0.952 +NM_152666,1.096,0.94,1.007,0.914,0.996,1.004,0.898,0.946,0.951,1.009,0.968,1.047,0.959,0.917,1.205,1.004,1.028,1.283,1.032,1.095,1.09,0.974,1.015,1.058,0.992,0.887,1.142,0.957,0.841,0.965,1.147,0.937,1.053,1.131,1.176,1.017,0.96,1.157,0.959,1.045,0.984,0.96,0.838,0.953,1.032,0.952,0.954,0.947,1.024,1.017,0.929,1.126,1.019,0.927 +NM_152670,1.002,0.897,0.9,0.915,1.048,0.911,0.906,0.966,0.941,1.112,1.008,1.113,0.96,1.238,1.115,1.089,1.009,0.887,1.079,1.003,1.03,1.007,0.977,1.059,0.94,1.053,1.013,0.95,1.02,1.095,0.866,0.819,1.154,1.067,0.929,1.155,0.883,1.001,1.031,0.854,0.995,0.961,0.863,1.088,0.913,0.922,0.999,1.057,1.13,1.047,1.023,0.95,0.913,1.314 +NM_152671,0.933,0.926,0.799,0.99,0.903,0.875,0.922,0.983,0.806,0.848,0.872,1.064,1.013,1.152,0.84,1.01,0.943,0.96,0.937,1.102,0.872,0.962,0.947,0.995,0.891,1.001,0.876,1.132,1.545,1.041,0.897,0.932,1.006,1.172,0.964,0.915,1.044,0.993,1.031,1.017,0.949,0.895,1.15,0.986,1.025,0.956,1.103,1.059,0.917,0.989,0.88,1.02,0.914,0.771 +NM_152672,0.786,0.848,1.055,1.335,0.981,1.014,0.931,0.881,0.937,1.044,1.031,0.97,0.902,0.932,2.885,1.434,0.933,0.906,0.882,1.167,0.853,1.052,0.98,0.906,0.942,0.9,0.897,1.064,1.055,1.099,1.013,1.059,0.888,1.063,0.944,1.007,3.485,1.066,0.938,1.671,0.843,1.017,1.822,0.91,0.908,1.281,0.925,0.975,2.177,0.927,1.475,1.066,0.993,1.079 +NM_152675,1.059,1.04,1.032,0.963,1.081,0.973,0.89,1.029,0.941,0.976,0.997,0.84,1.121,0.905,0.939,0.952,0.835,1.012,0.989,1.018,1.102,0.877,1.029,0.942,1.024,1.099,1.081,1.123,0.957,0.94,0.957,1.06,1.109,1.084,0.877,0.914,1.041,1.026,0.994,0.969,1.005,1.114,1.104,1.115,0.992,0.993,0.883,1.054,1.011,1.054,1.062,1.001,0.95,1.024 +NM_152676,0.952,1.051,1.109,0.988,1.021,0.965,1.038,0.902,1.011,0.961,1.068,1.041,0.863,0.928,0.798,0.996,1.122,0.933,1.025,1.121,1.094,0.995,0.975,0.952,1.082,1.031,1.012,1.012,0.916,1.003,1.011,1.462,1.087,1.08,0.926,0.941,0.984,1.058,1.004,1.035,1.031,0.999,1.06,0.911,1.015,0.933,0.838,1.0,0.96,1.012,1.081,0.995,1.053,1.026 +NM_152677,0.996,1.04,1.015,1.074,0.855,1.057,1.016,1.035,0.943,0.829,0.893,0.993,0.984,0.931,1.103,0.967,0.989,1.039,0.966,1.195,1.043,1.078,0.889,0.969,1.182,0.976,1.054,0.889,1.439,0.915,0.988,1.011,1.087,1.104,0.992,1.015,1.117,0.951,1.039,0.972,0.853,0.887,0.936,1.206,0.954,1.077,0.794,0.994,0.95,0.982,0.913,1.064,0.937,0.935 +NM_152678,0.688,1.084,1.505,0.692,0.874,1.828,0.869,0.864,1.045,1.017,1.052,1.01,0.944,0.743,1.066,2.008,0.914,1.119,0.799,0.955,0.535,1.123,1.087,1.16,0.745,0.556,1.717,0.897,0.569,1.18,1.132,1.313,2.56,1.344,0.55,0.501,0.971,0.97,1.752,1.032,0.974,1.051,0.633,0.542,1.075,0.846,0.885,0.867,0.975,1.007,1.199,0.814,0.604,1.679 +NM_152679,0.998,1.05,0.98,1.006,0.93,0.971,0.822,1.204,1.031,1.063,0.977,0.899,0.876,1.12,0.884,1.089,1.183,0.983,0.915,0.97,0.982,0.977,1.029,1.062,1.064,1.001,1.102,1.067,1.213,0.904,0.927,0.973,1.035,1.01,0.931,1.078,1.05,1.049,1.014,0.959,0.974,1.01,0.969,1.048,1.038,0.876,0.905,0.949,0.974,1.014,0.973,1.005,0.956,0.915 +NM_152680,3.021,0.425,3.234,1.029,3.18,0.389,0.402,2.427,5.107,3.609,0.326,2.169,1.843,2.262,1.556,1.019,2.074,1.618,2.43,0.389,1.512,2.924,0.363,3.037,0.285,2.469,2.825,2.919,0.254,0.668,3.618,0.664,1.633,0.482,0.977,0.359,0.441,2.428,0.479,1.122,3.515,0.461,0.342,0.733,3.324,0.34,1.787,2.48,0.352,2.135,0.718,0.997,2.828,0.568 +NM_152682,0.75,1.167,1.43,0.85,0.544,1.038,0.686,0.638,1.282,0.648,0.973,0.957,0.956,0.705,1.002,1.494,0.928,0.531,1.524,1.108,0.626,0.998,0.853,1.003,0.787,0.851,1.585,0.67,0.548,1.187,0.987,1.393,1.462,1.573,0.465,0.67,0.704,0.851,0.791,0.715,1.273,0.926,0.675,0.975,1.154,0.901,0.856,0.501,0.674,1.029,1.071,0.694,1.009,1.434 +NM_152683,0.961,1.103,1.095,0.98,1.061,1.069,0.936,0.974,0.992,1.017,1.05,0.878,0.899,0.984,0.859,1.118,0.947,0.966,1.022,1.062,1.082,0.951,1.066,1.042,1.026,0.987,1.136,0.871,1.044,1.11,0.935,0.927,1.086,1.028,0.893,0.942,0.975,1.04,0.997,0.906,0.977,1.098,1.025,0.894,0.898,0.987,0.969,0.809,1.085,0.901,1.092,0.888,0.974,0.993 +NM_152685,0.959,1.168,0.92,1.023,0.983,0.904,0.956,1.007,1.023,1.041,0.972,1.032,1.031,0.935,0.975,1.04,0.923,1.009,0.976,1.002,1.027,1.09,1.046,0.984,1.016,0.988,0.951,0.914,0.848,0.887,1.076,1.028,0.863,1.112,0.882,1.101,1.576,0.876,0.968,1.09,0.974,1.093,0.983,0.868,0.957,1.018,2.111,0.995,0.987,0.972,0.981,0.863,0.975,1.072 +NM_152686,1.086,1.054,0.935,1.057,0.988,0.968,0.995,0.884,0.891,0.954,1.034,0.977,1.028,0.946,0.883,0.983,0.968,0.959,0.875,0.925,0.836,1.019,0.944,0.922,1.016,0.937,1.04,0.941,0.874,1.049,0.873,1.188,0.974,1.049,1.051,1.033,0.924,0.961,1.128,0.939,1.114,1.096,0.991,1.134,0.979,0.858,1.016,1.078,1.036,0.882,1.024,1.057,0.962,0.819 +NM_152687,0.882,1.101,1.134,0.949,1.154,1.049,0.905,0.921,0.927,0.867,1.031,0.89,1.186,0.917,0.9,0.915,1.135,0.937,0.99,0.911,0.924,0.861,1.193,0.936,0.848,0.964,1.279,0.919,0.639,1.398,0.99,1.093,0.955,1.199,0.837,0.861,1.026,0.989,1.009,1.304,1.119,0.982,0.958,0.994,1.054,0.954,1.05,1.01,0.95,0.922,0.907,1.042,1.161,1.015 +NM_152688,1.056,0.969,1.052,1.087,0.99,0.96,0.977,1.176,1.034,1.001,0.946,1.026,0.854,0.92,1.024,1.054,1.032,1.0,1.192,0.943,1.011,1.0,0.957,0.82,1.003,1.06,1.285,1.107,0.971,1.06,1.013,1.063,0.95,1.036,1.023,1.19,0.966,1.053,0.959,1.1,0.9,0.886,1.059,0.953,0.986,1.069,1.054,0.771,1.073,0.881,1.051,0.987,0.98,0.912 +NM_152689,1.185,0.531,2.136,0.724,1.457,0.813,0.594,1.04,1.789,1.954,0.724,1.048,0.876,1.034,0.922,0.83,1.697,0.975,1.708,0.722,0.621,1.572,0.923,1.774,0.452,1.493,1.319,1.472,0.595,1.407,1.197,0.694,0.486,0.706,1.65,1.017,0.652,1.639,0.768,0.626,1.993,0.777,1.074,0.661,1.684,1.115,1.985,1.871,1.693,1.24,0.818,1.091,1.598,1.039 +NM_152690,0.883,0.917,0.941,0.948,0.954,1.006,0.928,1.191,0.89,1.037,1.048,1.0,0.957,1.153,1.141,0.904,1.027,0.987,0.89,0.934,1.022,0.914,1.132,1.029,1.024,1.05,1.055,0.991,1.192,1.181,0.914,0.98,0.995,1.133,0.901,0.99,0.812,0.952,1.197,1.081,0.96,0.965,1.101,1.095,0.971,0.878,0.981,0.976,1.075,1.094,1.091,0.898,0.944,1.063 +NM_152692,0.641,1.169,0.931,0.912,0.74,1.618,0.784,0.584,1.014,0.634,1.353,0.564,0.671,0.625,1.108,2.575,0.702,1.012,0.998,1.184,0.477,0.646,1.205,0.872,0.775,0.79,0.758,0.765,0.57,1.38,0.879,1.226,2.725,1.633,0.761,0.907,1.472,0.708,1.548,0.63,0.888,1.417,0.781,1.371,0.73,1.203,1.096,0.787,1.398,0.636,1.381,1.134,0.652,1.591 +NM_152695,0.894,1.251,1.114,0.934,1.031,1.38,0.979,0.818,0.949,0.956,1.033,0.984,0.998,0.835,0.788,1.13,0.971,0.971,0.989,1.07,0.934,1.054,1.117,1.008,0.966,0.899,0.899,0.963,1.072,1.15,0.958,1.474,1.54,1.414,0.813,1.065,0.837,0.992,0.997,1.002,1.038,1.074,0.794,1.011,0.769,1.015,0.829,0.902,0.927,0.893,0.886,0.869,0.826,1.209 +NM_152696,2.006,1.966,2.132,1.966,2.106,1.93,1.88,1.9180000000000001,2.005,2.067,2.044,1.886,2.086,1.9729999999999999,1.935,1.7160000000000002,1.8130000000000002,1.991,2.031,2.23,1.872,1.9969999999999999,2.05,2.07,2.121,1.934,2.2439999999999998,1.955,1.565,1.85,2.08,2.1719999999999997,1.998,2.061,1.83,2.024,2.132,2.028,2.247,2.049,2.075,2.033,1.935,2.246,2.14,1.875,1.968,2.051,2.0389999999999997,1.975,1.908,2.243,2.346,1.992 +NM_152697,1.019,0.865,1.071,1.044,1.199,0.947,0.725,0.889,1.018,1.079,1.077,1.14,1.057,1.081,0.945,1.03,1.136,0.879,1.055,0.99,1.014,0.969,0.979,0.943,1.087,1.07,1.12,1.105,0.927,1.053,0.836,0.959,1.25,0.942,1.519,0.879,0.956,1.003,0.987,0.924,0.968,1.011,0.765,0.952,1.053,0.887,0.959,0.969,1.08,1.086,1.035,0.903,1.085,1.003 +NM_152698,1.075,0.965,0.959,0.981,1.082,0.974,0.78,0.937,0.918,1.116,1.006,1.033,0.904,0.824,1.064,0.973,1.05,1.116,1.04,0.893,0.926,0.927,0.946,0.985,0.948,0.904,1.05,1.064,0.964,1.042,1.062,1.055,1.036,0.906,1.013,0.965,0.977,0.936,1.11,0.922,1.018,0.952,0.896,0.882,1.039,0.87,1.074,0.957,1.013,1.019,1.064,0.923,0.945,1.023 +NM_152699,0.924,0.916,1.235,0.847,1.21,0.886,0.683,0.956,1.253,1.117,0.903,0.97,1.057,0.991,1.022,0.989,1.141,0.957,1.061,0.676,0.888,0.977,0.981,1.239,0.766,1.171,1.171,1.14,0.921,0.987,1.151,1.178,1.541,0.984,1.107,0.883,0.926,1.167,1.018,1.036,1.247,0.896,0.876,1.303,1.104,1.013,1.22,1.138,0.904,0.795,0.874,0.942,1.275,1.692 +NM_152700,0.909,0.873,1.105,0.998,1.057,0.94,1.047,0.887,1.049,1.109,1.045,0.84,0.875,0.897,0.901,1.089,0.921,0.927,1.057,1.007,1.072,1.054,1.153,1.148,1.069,0.963,1.037,0.999,1.077,1.091,1.111,0.965,0.904,0.935,0.968,1.023,0.981,0.904,0.899,0.946,0.919,0.917,1.001,0.979,1.044,1.005,1.018,0.919,0.9,0.818,1.037,1.012,0.925,1.03 +NM_152701,0.898,1.035,1.252,0.991,0.825,0.959,0.884,1.177,1.304,1.19,0.904,1.17,1.097,1.036,1.089,1.05,1.326,0.991,0.967,1.084,0.978,0.778,0.755,1.121,1.115,0.914,1.427,1.144,0.892,0.942,1.079,0.85,0.891,0.909,0.948,0.987,1.09,1.011,0.946,0.954,1.07,0.967,0.987,0.958,0.999,0.949,0.788,1.088,1.134,1.091,1.586,1.292,1.01,1.26 +NM_152702,1.191,1.061,0.902,0.907,0.997,1.077,0.944,0.922,0.965,1.099,0.925,1.11,1.049,0.869,1.161,1.164,1.037,1.03,0.984,1.063,1.006,1.022,0.939,0.956,0.946,0.859,0.955,1.029,0.791,0.99,0.982,1.183,1.085,0.898,0.973,1.02,0.923,1.053,0.933,1.006,0.976,1.109,1.116,0.882,1.019,1.119,0.931,0.995,0.938,0.93,0.999,0.924,1.142,0.935 +NM_152704,1.042,0.86,0.962,1.099,1.024,0.976,0.784,0.949,0.981,0.902,1.118,1.066,1.072,1.279,0.859,1.073,1.038,1.036,1.208,1.063,0.9,0.822,0.997,0.942,0.933,1.113,1.049,1.039,1.082,0.991,0.995,0.977,1.011,0.945,1.013,0.993,0.963,1.037,1.017,0.901,0.96,0.976,1.055,1.071,1.02,1.086,0.938,0.904,0.944,0.984,1.031,0.943,0.991,1.09 +NM_152705,1.118,0.947,1.497,0.873,1.148,1.024,0.629,1.022,1.321,0.854,0.861,1.085,0.99,0.834,1.089,1.314,0.915,0.792,1.865,0.864,0.9,1.258,0.953,1.045,0.782,1.421,1.372,0.959,0.572,1.288,1.19,1.057,1.249,1.33,1.097,0.844,0.97,1.334,0.951,1.07,1.22,1.042,0.754,0.691,0.888,0.771,1.027,1.224,0.713,1.151,0.746,0.811,1.218,1.059 +NM_152706,1.003,1.031,0.952,1.067,0.888,1.046,1.512,1.081,0.986,0.744,1.12,1.11,1.011,0.899,0.991,1.057,1.096,0.948,1.048,1.165,0.91,0.971,0.979,1.008,1.095,0.96,1.198,0.988,1.588,1.053,0.942,0.98,0.949,0.96,1.062,0.975,0.999,1.048,0.846,1.164,1.058,1.046,1.094,0.827,1.123,1.15,0.841,0.96,1.2,1.244,1.167,1.113,0.896,0.874 +NM_152709,1.02,1.165,0.888,1.162,0.975,1.154,0.971,1.017,0.961,1.093,1.103,1.09,0.855,0.981,0.888,1.225,1.066,0.832,1.035,1.056,0.852,0.894,0.981,0.947,0.949,1.0,1.039,0.866,0.838,1.305,1.0,0.946,1.718,1.143,0.925,1.037,1.19,0.92,0.952,0.956,0.948,1.095,0.939,0.952,1.054,1.045,1.102,1.034,1.019,1.079,1.119,0.834,1.007,2.302 +NM_152710,0.936,1.109,0.944,0.891,1.087,0.903,0.948,0.875,1.096,1.168,0.868,1.097,1.008,0.786,0.932,0.949,1.097,0.848,0.972,0.999,0.856,0.968,0.935,1.07,0.876,0.817,1.007,1.071,0.959,1.048,0.932,1.104,1.011,1.002,1.08,0.915,0.889,1.001,1.091,0.832,1.078,1.041,1.101,1.063,0.911,0.993,1.19,1.087,1.034,0.935,0.926,0.932,0.809,0.991 +NM_152711,1.001,0.912,1.171,0.973,1.162,0.935,0.923,1.135,0.908,0.822,0.944,1.016,0.991,1.052,0.933,1.042,0.962,1.093,1.101,0.937,1.054,1.145,1.027,0.989,1.043,1.03,1.028,0.914,0.947,0.955,1.107,1.031,0.938,1.041,1.028,0.921,1.008,0.877,0.992,1.159,0.888,0.967,0.901,0.979,0.989,1.028,0.934,0.928,1.032,0.896,0.951,1.052,0.965,1.115 +NM_152713,0.583,1.228,0.852,1.065,0.614,0.932,0.969,0.171,0.702,0.754,1.046,0.305,0.381,0.399,0.718,1.601,0.66,1.26,0.769,1.052,0.365,0.616,1.828,0.664,0.944,0.578,1.099,0.507,0.821,2.404,0.544,1.372,1.535,1.493,0.128,1.979,1.226,0.703,2.269,0.933,0.775,1.754,0.648,1.252,0.787,1.365,0.904,0.596,1.409,0.714,1.533,1.03,0.534,0.985 +NM_152714,1.051,0.98,1.036,0.902,1.056,0.927,1.184,0.974,1.171,0.934,1.013,0.974,0.894,1.099,0.93,1.173,1.019,1.048,0.902,0.97,1.073,1.13,1.055,1.062,1.076,1.037,1.026,1.057,1.021,1.087,1.0,0.987,0.914,1.035,1.06,0.953,1.07,1.054,0.926,1.027,1.11,0.946,1.204,0.901,1.029,1.069,1.014,1.141,1.053,1.022,0.935,0.904,1.044,0.941 +NM_152715,0.984,0.827,1.039,0.984,1.005,0.862,0.86,0.94,1.122,0.964,0.989,0.886,0.776,0.923,0.834,0.772,1.032,0.917,0.879,0.912,1.054,0.922,0.756,0.979,1.018,1.018,0.945,1.013,1.004,1.129,1.101,1.313,1.049,1.042,0.881,0.849,0.953,1.118,0.987,1.062,0.954,1.094,0.745,0.883,1.066,1.157,1.03,0.94,1.014,1.008,0.971,1.022,1.091,0.843 +NM_152716,0.634,0.896,1.163,0.761,0.726,1.315,0.637,0.472,1.159,0.757,1.126,0.624,0.564,0.794,1.036,1.412,0.767,0.888,1.104,0.896,0.597,0.633,1.511,0.98,0.596,0.673,1.529,0.726,0.543,1.317,0.913,1.251,1.455,1.134,0.371,1.217,1.405,0.713,1.405,0.972,0.993,1.16,0.9,1.171,0.777,1.274,0.766,0.57,1.244,0.783,1.152,0.869,0.998,1.463 +NM_152717,0.778,1.092,0.923,0.94,1.067,1.098,1.452,0.991,1.232,1.057,0.855,0.87,1.076,0.914,0.84,1.208,1.025,1.009,1.05,0.977,0.948,0.956,1.104,0.923,1.005,0.985,0.927,1.054,1.116,0.871,1.051,0.949,1.052,0.905,0.941,0.977,0.949,1.023,0.979,1.017,1.041,0.991,0.947,1.084,1.075,0.995,0.995,1.029,0.999,0.935,0.964,0.86,1.045,1.153 +NM_152718,1.137,1.092,1.076,0.989,1.059,0.973,1.272,1.012,1.044,0.905,0.904,1.021,0.968,1.007,0.892,1.022,1.069,1.111,0.944,1.087,0.982,0.968,1.019,1.257,1.044,0.974,0.948,0.92,0.941,0.962,0.853,1.064,1.212,0.921,1.066,0.886,1.032,0.958,1.016,0.922,0.947,0.826,0.915,0.94,0.945,1.011,0.845,1.054,1.039,1.133,1.009,1.079,1.222,1.086 +NM_152720,1.066,1.095,1.01,0.947,1.014,0.89,1.103,0.877,0.939,0.867,0.939,0.976,1.073,0.932,0.999,1.075,1.1,0.953,0.93,1.104,0.941,1.012,1.077,0.946,1.007,1.101,1.0,1.0,1.306,0.969,1.025,1.02,0.978,0.981,1.0,0.907,1.065,0.903,1.051,1.057,1.069,0.956,1.01,0.836,0.887,0.974,0.98,0.972,0.955,1.006,1.009,1.038,1.002,1.051 +NM_152721,1.101,1.046,0.904,0.966,1.082,0.998,0.915,0.971,1.004,0.975,1.044,1.084,1.06,0.984,0.959,0.997,0.929,1.086,1.076,1.061,1.026,0.923,1.074,1.055,1.175,1.105,0.917,0.907,1.143,1.011,0.897,1.268,0.866,1.066,0.977,1.067,0.919,1.061,0.982,0.954,1.091,0.91,1.137,1.085,0.947,0.917,0.987,1.004,1.106,1.039,0.934,0.95,0.922,1.043 +NM_152722,1.024,0.974,1.045,0.853,0.941,1.083,1.016,1.202,0.98,1.006,0.965,0.923,1.001,1.232,1.159,0.947,0.919,0.93,1.036,1.157,1.076,0.916,0.939,1.143,0.983,1.107,1.059,0.966,1.097,1.039,1.112,0.983,0.908,1.034,1.006,0.988,0.957,1.007,1.066,1.033,1.039,1.0,1.199,0.93,1.035,0.937,0.985,0.973,0.907,1.095,1.117,0.786,0.866,0.936 +NM_152723,0.982,0.982,0.855,1.073,1.013,0.973,0.922,0.967,0.905,1.084,1.078,0.99,1.104,1.118,1.578,1.053,0.97,1.106,0.824,0.992,0.924,0.967,0.899,0.976,0.997,1.077,0.909,0.98,1.001,1.056,0.945,1.192,1.025,1.054,0.927,1.008,1.043,1.039,0.972,0.918,1.115,1.054,0.91,0.963,0.974,0.949,1.008,0.989,1.029,1.024,1.197,1.129,1.095,1.045 +NM_152725,1.107,1.0,1.062,1.04,0.887,1.064,0.948,1.078,0.941,0.943,0.884,1.086,0.934,1.042,1.019,0.921,0.999,1.104,1.058,0.992,1.09,0.963,1.142,1.142,1.069,0.95,0.902,0.915,1.074,0.962,1.001,0.821,0.951,1.042,0.757,1.145,1.074,1.044,1.073,1.011,1.038,1.062,2.145,1.03,1.021,0.89,1.065,1.042,0.891,0.936,1.032,1.024,1.172,1.06 +NM_152726,0.833,1.066,1.294,0.76,1.056,1.259,0.911,0.81,1.004,0.975,1.04,0.82,0.993,0.812,1.191,2.251,0.786,1.057,0.86,1.362,0.739,0.854,1.367,1.051,0.777,0.729,1.194,1.003,0.951,1.055,1.041,1.395,1.495,1.097,0.853,0.902,1.002,0.946,1.202,0.998,1.041,1.085,1.002,0.836,0.976,1.01,1.016,0.875,1.14,0.712,1.06,0.911,0.776,1.252 +NM_152727,0.851,0.737,1.164,0.8,0.922,0.742,0.571,0.92,1.473,1.015,0.713,1.11,1.031,1.128,0.817,0.955,1.305,0.759,1.098,0.901,0.887,1.158,0.822,1.015,0.704,1.196,1.148,1.144,0.547,0.938,1.4,2.23,2.138,1.003,0.684,0.866,0.704,0.804,0.906,1.578,1.011,0.931,0.745,1.221,1.082,0.817,1.236,1.112,0.594,0.978,0.868,1.015,1.163,2.878 +NM_152729,0.696,1.309,1.087,0.709,0.88,1.243,0.679,0.5,1.204,0.855,1.107,0.8,0.725,0.704,1.037,1.335,0.828,0.814,1.185,0.988,0.627,0.681,1.089,1.042,0.787,0.819,1.064,1.026,0.536,1.229,1.002,1.06,1.595,1.353,0.544,0.998,1.045,0.843,1.281,0.64,0.913,1.048,0.937,1.362,0.789,1.183,1.1,0.668,1.02,0.717,0.904,0.76,0.971,1.852 +NM_152731,1.04,0.983,0.965,1.054,1.033,1.075,0.924,0.852,1.11,0.939,0.96,1.155,1.018,0.985,1.032,1.296,0.949,0.99,1.177,1.001,0.94,0.964,0.986,0.846,0.97,0.934,1.006,1.029,0.964,1.075,0.999,1.249,1.19,1.032,0.96,0.999,1.043,1.036,1.009,0.942,1.018,1.183,1.07,0.999,1.114,0.992,0.996,1.022,1.012,0.982,0.946,1.007,0.948,0.785 +NM_152732,0.901,1.038,0.931,1.204,0.974,1.001,0.98,1.165,0.914,0.916,1.069,0.921,0.978,0.944,0.96,1.044,0.992,1.039,0.85,0.954,1.115,0.841,1.19,0.866,1.022,0.967,0.94,0.933,0.905,1.044,0.99,1.171,0.86,0.961,0.953,0.972,0.973,1.097,1.082,1.036,0.9,0.97,0.945,1.075,0.991,1.134,1.009,0.963,0.897,1.038,1.112,0.994,0.964,1.106 +NM_152733,0.982,1.073,0.916,0.942,0.903,1.0,0.84,0.878,1.029,1.024,0.997,1.033,1.022,1.069,0.916,0.869,0.893,0.896,1.048,0.868,0.957,0.952,1.044,0.894,1.035,1.003,0.961,0.958,0.952,1.207,0.962,0.98,0.882,0.951,0.966,0.953,1.073,0.992,1.049,1.05,1.012,0.922,0.908,0.915,1.086,0.989,0.91,0.962,1.072,0.902,1.072,1.035,0.954,1.005 +NM_152735,0.999,0.997,1.078,1.068,0.958,0.956,0.958,0.936,1.008,1.037,1.016,1.043,0.989,0.928,0.826,1.157,1.106,1.063,0.946,1.079,1.058,0.955,0.981,0.898,1.002,0.962,0.932,0.979,0.962,0.892,0.941,0.995,1.134,0.89,1.069,1.149,0.924,1.087,1.128,0.901,1.086,0.933,1.126,1.099,1.05,0.993,0.942,0.954,1.084,1.028,0.996,1.085,1.01,1.018 +NM_152736,0.996,1.253,1.019,0.816,1.04,1.27,0.878,0.79,0.953,0.72,0.949,0.916,0.902,0.717,1.076,1.063,0.919,0.852,0.983,1.248,0.836,1.118,1.002,0.976,0.966,0.952,1.138,0.993,0.728,1.372,1.082,1.384,1.868,1.44,0.804,1.081,0.995,1.201,0.957,0.753,1.071,1.146,0.636,0.874,0.831,0.893,0.901,0.876,0.689,0.813,0.971,0.852,0.835,1.269 +NM_152737,0.971,0.924,1.042,1.053,1.087,0.939,1.031,1.048,1.088,0.888,0.939,1.067,1.033,0.886,0.937,1.03,1.091,0.913,1.105,0.993,0.954,1.13,0.905,1.053,1.054,1.083,0.999,1.123,0.948,1.04,1.352,1.039,0.784,0.975,1.12,0.956,0.946,1.066,1.119,0.927,1.043,1.045,0.918,0.981,1.149,1.014,1.046,1.182,0.984,0.987,0.994,1.03,0.999,0.964 +NM_152738,0.909,0.917,0.913,0.949,1.022,1.143,0.921,1.107,1.1,1.111,0.941,0.911,1.04,0.981,1.098,1.114,0.963,1.004,0.828,1.038,1.025,0.92,1.126,1.109,0.963,0.907,1.025,0.943,1.193,0.91,0.84,0.983,1.107,0.98,0.924,1.054,0.982,1.02,0.971,0.934,1.03,0.999,1.011,1.012,0.913,1.02,0.937,1.02,1.038,0.935,1.084,0.928,1.103,0.993 +NM_152739,1.012,1.133,0.941,1.009,1.032,0.952,1.119,0.814,1.123,1.025,1.236,1.037,1.096,0.966,1.003,1.105,0.94,1.032,1.127,1.095,0.925,0.923,0.945,1.071,1.038,1.124,1.154,0.998,1.527,1.054,1.021,1.0,0.961,0.948,1.079,0.956,0.974,0.921,0.976,1.02,0.904,0.996,0.977,0.98,1.044,0.924,0.981,1.003,0.907,0.962,1.025,1.144,0.905,1.029 +NM_152740,0.673,1.053,0.783,0.813,0.658,1.064,0.896,0.58,0.708,0.632,1.313,0.762,0.673,0.706,0.851,1.699,0.74,0.787,0.74,1.23,0.562,0.654,1.842,0.635,1.153,0.692,0.787,0.631,0.666,1.336,0.694,1.278,1.151,1.5,0.575,0.989,1.292,0.664,1.343,0.765,0.716,1.203,1.328,1.904,0.658,1.52,1.351,0.714,1.106,0.634,1.075,1.031,0.61,1.391 +NM_152742,0.873,0.94,1.018,0.908,0.862,0.926,0.914,1.089,0.97,0.978,1.113,1.054,1.002,0.833,1.004,0.947,1.03,0.946,1.072,0.996,0.979,0.943,1.015,1.042,0.941,1.069,1.106,1.012,0.777,1.044,1.024,1.223,1.008,1.008,0.833,1.006,0.992,1.045,0.838,1.446,0.855,1.008,1.17,1.022,0.987,1.086,0.955,0.887,0.94,0.888,1.014,0.949,0.87,0.98 +NM_152743,0.456,1.328,1.01,0.611,0.852,0.868,0.75,0.269,0.874,1.004,0.729,0.667,0.464,0.419,0.803,1.187,0.71,1.038,0.678,1.179,0.329,0.631,2.12,0.778,0.636,0.545,1.296,0.617,0.496,1.568,0.672,2.573,1.435,1.262,0.228,1.257,0.971,0.864,1.85,1.653,0.812,1.238,0.732,2.173,0.884,1.057,1.356,0.552,1.19,0.62,1.162,1.348,0.691,2.616 +NM_152744,1.076,1.053,0.993,1.025,1.092,1.014,0.871,0.993,1.071,1.017,0.882,0.977,1.004,1.206,0.935,1.129,1.011,0.912,1.018,0.956,1.016,1.094,0.977,1.12,0.859,1.089,1.047,0.915,0.866,1.002,0.879,0.903,0.935,1.086,1.101,0.884,1.119,1.019,0.995,1.139,0.981,0.962,1.116,0.928,0.901,0.96,0.889,1.016,0.992,0.923,1.052,0.915,1.17,1.073 +NM_152745,1.104,0.949,0.946,0.982,0.96,0.933,0.861,0.966,1.011,1.09,0.991,0.954,0.96,0.959,0.96,1.104,0.957,1.033,0.96,1.156,1.079,1.049,0.958,0.982,1.078,1.068,1.152,1.03,1.205,0.971,1.066,0.992,1.141,1.119,0.793,1.007,0.954,1.016,0.959,1.039,1.16,0.975,1.197,0.926,1.093,0.906,0.968,0.932,1.032,1.055,1.097,1.008,0.953,0.999 +NM_152746,0.984,0.859,0.89,0.88,1.077,0.886,1.016,0.986,1.099,1.041,1.007,0.905,0.929,0.913,0.869,1.049,1.058,1.045,0.95,1.095,1.027,0.912,1.047,1.016,0.969,0.943,0.976,1.038,1.155,0.968,1.097,0.956,0.903,1.071,1.001,1.024,0.95,1.211,0.998,1.082,1.091,1.001,1.008,1.083,0.965,0.948,0.827,1.178,0.962,0.961,0.989,0.979,0.845,0.954 +NM_152747,0.901,0.778,1.127,0.873,0.822,1.183,0.856,0.96,1.018,0.864,0.915,1.083,1.001,0.849,1.001,1.13,0.714,1.099,0.968,1.191,0.812,1.041,1.27,0.907,0.935,0.863,1.063,0.755,1.017,1.185,0.962,1.179,0.881,1.286,0.702,1.099,1.032,1.051,1.009,0.934,0.829,1.007,0.721,1.035,0.87,0.917,0.991,0.779,0.974,1.205,0.898,0.981,0.983,1.508 +NM_152748,1.055,0.779,1.028,0.999,0.844,1.309,0.916,0.991,1.193,0.738,1.131,0.856,1.01,0.851,1.188,1.0,1.0,0.857,0.901,1.063,0.887,0.948,0.863,1.132,0.841,0.995,1.135,1.063,1.029,0.895,1.098,0.953,1.63,1.028,0.859,0.952,1.072,1.215,1.262,0.858,0.983,0.89,1.302,1.864,0.901,1.134,1.113,0.958,0.927,0.991,0.919,0.891,1.131,1.782 +NM_152751,0.966,1.022,0.946,0.902,0.935,1.063,0.835,0.864,1.069,0.933,0.867,0.977,0.991,1.025,1.062,1.035,1.04,0.906,1.163,1.13,1.17,1.073,1.009,0.952,1.069,0.891,1.187,1.102,0.762,1.031,0.945,1.025,0.916,1.08,1.126,1.11,0.986,0.96,1.013,0.996,1.062,1.22,0.927,0.887,1.063,1.153,0.89,1.132,0.926,0.923,1.054,0.95,0.977,0.971 +NM_152753,0.762,1.03,0.99,0.907,1.059,1.043,0.953,0.967,1.025,1.055,0.932,1.0,1.019,1.075,0.964,0.952,1.04,1.074,0.977,0.996,1.012,0.951,0.977,0.989,0.928,1.099,1.012,0.942,1.073,1.071,0.938,0.868,1.244,0.967,1.206,0.94,0.96,1.037,0.998,1.004,0.974,0.965,0.932,0.847,1.037,1.057,1.088,1.118,0.913,1.047,0.924,0.967,0.966,1.0 +NM_152754,0.922,1.009,0.932,1.013,1.074,1.079,0.821,0.961,0.909,0.966,0.896,1.007,1.016,1.004,1.209,0.998,1.144,1.027,1.177,1.1,1.057,1.039,0.972,0.945,1.009,0.983,0.816,1.065,0.932,0.97,0.953,1.019,0.971,1.065,1.134,0.966,0.916,0.904,1.098,1.007,0.972,0.934,0.99,1.037,0.982,0.882,1.06,0.954,0.957,0.896,1.044,1.064,0.833,1.084 +NM_152756,0.971,1.062,0.938,0.932,0.964,0.953,0.877,0.918,0.971,1.103,0.919,1.03,1.121,1.012,0.845,1.24,1.073,1.014,1.194,0.914,1.092,1.142,0.924,1.145,1.019,1.049,0.958,0.981,0.981,1.097,1.032,1.075,0.886,0.951,1.063,1.003,1.092,1.23,0.852,0.882,0.793,0.971,0.895,1.14,1.043,1.023,1.085,1.007,1.01,1.147,1.092,0.873,0.925,0.981 +NM_152758,0.741,0.747,1.067,0.849,1.049,0.97,0.53,0.918,1.013,0.845,1.069,0.919,0.724,0.7,1.097,1.461,0.963,0.867,1.031,0.916,0.555,0.774,1.2,0.932,0.563,0.964,1.071,1.005,0.534,1.012,0.944,1.019,2.096,1.015,1.569,1.44,1.141,0.958,1.444,1.485,0.931,0.961,0.994,1.194,1.027,1.487,1.117,1.103,1.449,1.01,1.032,0.953,0.873,1.497 +NM_152759,0.968,1.024,1.011,0.76,0.826,0.92,0.867,1.332,1.002,0.812,0.987,1.053,1.097,1.503,0.9,1.035,0.928,0.923,0.95,0.866,1.118,1.12,1.065,1.044,1.058,0.889,0.927,0.907,1.081,1.021,0.964,1.131,1.035,0.971,0.941,1.239,0.95,0.92,0.833,1.044,1.11,1.041,0.949,0.825,1.002,1.114,1.046,1.014,1.127,1.126,0.811,0.806,0.867,0.986 +NM_152760,1.072,1.118,0.976,1.058,1.159,0.965,0.878,0.831,0.999,1.142,0.998,1.157,1.187,1.064,1.221,0.885,0.945,1.101,0.734,1.006,0.997,1.211,0.912,1.176,1.023,1.067,0.997,0.995,1.126,0.998,0.886,0.915,1.003,0.908,1.052,0.868,0.908,1.159,0.96,1.011,1.013,0.942,1.163,0.915,1.108,1.197,1.023,1.086,1.165,1.059,0.991,0.923,0.852,1.007 +NM_152761,0.971,1.227,1.016,1.02,1.015,1.021,0.848,1.111,1.057,1.033,1.03,1.072,0.884,1.0,1.412,0.926,1.128,1.001,1.163,1.014,0.985,0.815,0.863,1.034,0.951,0.952,1.216,0.982,0.861,1.057,0.99,0.982,1.11,0.883,0.862,0.937,0.965,1.111,1.054,1.046,0.951,0.852,0.926,0.978,1.01,1.077,0.967,0.904,0.972,0.992,0.939,1.095,1.028,0.91 +NM_152762,0.974,0.932,0.923,1.007,1.009,0.896,1.097,0.792,0.899,1.026,0.933,0.896,1.001,1.046,0.969,0.966,1.035,1.074,0.881,0.968,0.917,0.904,0.928,0.975,1.083,1.0,0.951,0.967,0.976,1.144,0.954,1.181,1.019,0.919,1.103,1.106,0.89,1.158,0.953,0.876,0.958,1.074,1.019,1.02,0.871,1.083,1.066,0.932,1.024,1.088,0.998,1.057,0.821,0.972 +NM_152764,1.039,0.953,1.092,0.938,1.082,1.082,1.019,0.97,1.142,1.05,1.128,0.903,1.014,1.219,0.9,0.927,1.018,1.003,0.974,0.967,0.976,0.976,1.194,0.938,0.975,0.906,1.242,1.019,0.967,1.066,1.0,0.903,0.929,1.024,1.048,1.033,0.907,0.992,1.023,0.971,1.13,1.036,0.846,0.927,0.968,0.937,0.921,1.116,1.035,0.896,1.05,0.953,0.959,0.934 +NM_152765,1.021,0.872,0.967,1.138,1.055,1.033,0.895,0.865,1.064,1.006,1.009,0.997,0.958,1.214,1.014,0.906,1.101,0.966,0.85,0.988,0.964,0.968,0.991,0.991,0.838,0.887,0.799,1.005,1.111,0.988,1.111,0.907,0.926,0.923,1.073,1.123,1.029,0.94,0.997,1.07,1.151,1.007,1.015,0.953,1.145,1.033,1.038,1.029,1.019,0.912,0.975,0.938,1.03,1.039 +NM_152766,0.865,0.646,1.138,0.848,0.8,1.127,0.646,1.066,1.225,0.831,1.054,1.51,1.38,0.56,1.228,2.333,0.667,1.273,1.697,1.174,0.53,1.057,1.006,1.134,0.877,1.204,0.748,0.994,0.327,0.88,0.861,0.734,2.269,1.424,1.099,0.555,1.387,0.952,0.861,0.74,0.886,1.029,0.726,0.548,0.815,1.18,0.961,1.435,0.749,0.693,1.126,0.588,0.993,0.642 +NM_152768,1.115,1.052,0.993,1.076,1.003,1.121,1.086,1.067,0.991,1.026,1.069,1.049,1.039,1.19,0.981,0.955,1.056,1.0,0.899,1.007,1.02,1.238,0.962,1.077,1.108,0.982,1.165,0.917,1.076,1.072,1.096,1.054,0.931,1.027,1.072,1.069,1.033,0.962,1.039,1.054,1.008,0.941,1.442,0.907,1.075,0.848,0.871,0.97,0.981,0.987,1.048,0.934,0.859,0.977 +NM_152769,0.994,1.092,1.081,0.896,0.888,0.969,0.99,1.327,1.019,0.953,0.915,1.068,0.862,0.936,0.952,0.989,1.061,0.905,0.881,1.174,1.092,0.908,1.052,1.064,1.099,0.851,0.965,0.922,1.14,1.033,1.017,1.0,1.166,1.12,0.972,0.915,0.948,0.76,1.028,0.851,1.126,0.978,0.987,0.813,1.128,1.008,1.016,0.841,1.004,1.079,0.972,1.168,0.908,1.113 +NM_152770,1.067,0.976,0.934,1.3,0.997,0.921,1.413,1.031,1.026,1.044,0.808,0.962,1.005,0.867,1.021,0.689,1.14,1.036,0.999,1.218,0.958,1.053,1.106,1.098,1.116,0.921,0.799,1.073,1.478,0.824,0.97,0.928,1.034,0.998,1.015,1.057,0.9,1.078,1.116,0.993,1.058,0.964,1.445,0.854,1.119,1.097,0.911,0.798,1.116,1.052,0.944,1.013,0.856,1.039 +NM_152771,1.116,0.875,1.049,0.885,1.014,0.949,0.998,1.075,1.09,0.925,0.924,0.978,1.057,1.029,0.994,1.239,0.994,1.133,1.088,1.018,0.99,0.926,0.993,0.977,0.999,0.961,1.135,0.967,0.982,1.032,1.106,1.008,1.122,0.937,1.081,1.092,0.92,0.949,0.987,0.972,1.041,0.899,1.024,1.0,0.951,1.049,1.102,1.005,0.971,0.975,1.086,1.086,1.006,0.976 +NM_152772,1.596,0.931,1.355,1.113,2.572,1.041,0.879,1.989,2.842,1.171,1.001,1.481,1.48,1.267,2.145,1.207,1.46,1.463,1.65,0.934,1.081,2.094,0.843,1.161,0.916,1.619,1.104,2.826,0.76,0.941,2.495,1.075,0.968,0.968,3.976,0.963,0.789,3.553,0.991,0.928,2.249,0.933,0.811,0.871,1.487,0.984,1.518,2.791,1.036,1.134,0.953,0.961,1.244,0.918 +NM_152773,1.084,0.75,1.393,0.897,1.389,0.779,0.69,0.938,1.592,1.462,0.794,0.941,0.999,1.151,1.089,1.029,1.269,1.128,1.785,0.864,1.055,1.001,1.01,1.074,0.705,1.317,1.625,1.149,0.561,0.891,1.437,1.246,1.287,0.923,0.77,0.974,0.76,1.257,0.948,0.692,1.321,0.738,0.591,1.688,1.364,0.834,1.033,1.176,0.735,1.112,0.957,0.99,1.652,1.354 +NM_152774,1.005,1.081,1.092,0.875,1.059,1.047,0.745,1.047,0.894,1.019,0.885,1.028,0.947,1.097,0.977,1.001,0.905,0.912,0.987,0.995,0.916,1.038,0.967,1.032,0.874,0.978,1.092,1.0,0.595,1.017,1.097,0.965,1.168,1.237,0.944,0.998,0.906,1.132,0.968,0.884,1.157,1.14,0.792,0.804,1.029,0.862,1.054,1.085,0.925,0.872,0.998,0.98,0.892,1.053 +NM_152775,0.856,1.287,0.913,1.176,0.944,0.837,0.871,1.069,0.998,0.845,0.956,1.161,1.003,1.245,0.84,1.044,0.986,0.999,1.069,0.971,1.134,0.995,1.027,0.96,1.142,0.961,0.983,0.964,0.929,0.872,0.909,1.152,1.023,1.061,0.897,0.961,0.963,0.981,0.928,0.959,1.04,1.29,1.074,0.92,1.036,1.039,0.97,0.896,0.869,1.013,1.001,0.925,0.856,1.09 +NM_152776,0.999,1.03,1.211,0.929,1.016,1.058,0.952,0.786,1.271,0.978,1.191,0.765,0.854,0.814,0.86,1.093,0.91,0.981,1.161,1.141,0.775,1.107,1.39,1.068,0.788,0.854,1.039,0.969,0.749,1.279,1.009,1.055,0.931,1.169,0.808,0.757,1.403,0.951,1.305,0.898,1.037,1.103,1.033,1.181,0.985,1.327,1.004,0.938,1.053,0.963,1.179,0.908,0.874,0.929 +NM_152777,1.004,0.893,0.889,1.022,1.014,0.947,0.876,0.981,1.124,1.127,0.966,0.973,0.934,0.858,0.965,1.251,0.921,0.972,1.144,1.012,1.121,1.102,0.999,1.025,0.966,0.893,1.01,0.999,0.877,1.017,1.002,1.211,1.144,0.962,0.965,1.149,0.892,1.052,0.988,0.963,1.167,0.973,0.74,0.955,0.989,0.925,0.971,1.014,1.241,1.131,0.965,0.946,0.984,1.004 +NM_152778,0.869,0.943,1.1,0.826,0.953,0.934,0.767,0.625,1.181,1.099,1.065,0.782,0.752,0.948,0.845,1.158,0.97,0.934,1.172,0.828,0.98,0.988,1.073,1.181,0.909,0.996,1.283,0.856,0.571,1.079,0.996,1.166,1.098,1.098,0.633,0.852,1.082,0.883,1.08,0.801,1.091,0.91,0.791,1.035,1.215,0.855,1.096,0.986,0.974,0.962,1.133,0.832,1.057,0.971 +NM_152779,0.967,1.103,1.021,1.055,0.899,1.045,1.224,1.084,1.011,1.007,0.9,0.95,0.977,0.942,0.832,0.976,0.999,0.98,1.014,1.116,1.048,1.042,1.022,0.895,0.86,0.94,0.893,1.087,0.679,1.042,0.874,0.991,1.185,1.026,0.963,1.167,1.069,0.972,1.077,0.894,1.041,1.043,0.985,1.105,1.008,0.954,1.005,0.941,0.98,1.053,1.113,0.801,0.999,0.915 +NM_152780,1.008,1.562,0.988,1.176,0.978,1.113,1.294,0.867,1.026,0.886,0.875,0.992,0.971,0.921,0.894,1.0,0.921,0.998,1.128,0.892,0.85,0.921,1.057,0.922,1.241,0.996,1.081,0.832,1.141,1.161,0.869,1.109,0.995,1.531,1.0,0.91,1.151,1.067,1.069,1.011,0.97,1.15,1.177,1.024,1.008,0.944,0.817,0.942,0.866,1.151,0.906,1.414,0.949,0.924 +NM_152781,1.006,0.868,0.911,0.981,0.973,1.01,0.802,0.875,0.994,0.913,1.013,1.032,1.103,0.905,1.422,0.964,1.006,0.942,0.867,1.012,0.993,1.131,0.939,1.147,0.963,0.981,0.948,1.021,0.823,0.816,0.945,1.116,1.107,0.945,1.065,1.056,1.026,0.909,0.949,1.063,0.9,1.034,1.134,0.97,1.128,1.085,0.999,1.014,0.953,0.829,0.921,0.852,1.039,1.147 +NM_152782,0.879,1.024,0.96,1.086,0.992,1.046,0.988,1.062,1.111,1.063,0.99,0.996,0.927,0.989,0.884,0.889,0.993,1.138,0.948,1.032,1.004,1.173,0.863,1.16,0.938,0.904,0.906,1.072,1.045,1.035,1.017,1.135,1.072,0.981,1.149,0.959,0.891,0.894,0.826,0.981,1.166,0.923,0.872,0.893,1.098,0.986,0.933,0.966,0.898,0.916,1.132,0.81,0.862,0.888 +NM_152783,0.995,0.885,1.289,0.894,0.869,0.924,0.672,0.507,1.628,1.229,0.614,0.946,0.671,0.862,1.286,0.823,0.963,1.032,1.121,1.09,0.849,1.101,1.148,0.98,0.856,1.038,1.314,0.927,0.554,1.281,1.104,1.807,0.899,1.602,0.35,1.015,1.114,0.964,0.907,0.676,1.286,0.945,0.776,1.733,0.691,1.28,0.718,0.732,1.204,0.785,1.165,0.74,1.207,1.828 +NM_152784,0.949,0.995,0.918,1.02,0.964,1.016,0.972,0.875,0.847,1.161,0.913,0.881,1.009,1.202,1.019,0.997,1.11,1.084,0.935,0.977,1.045,0.891,1.018,1.018,1.008,1.136,0.952,1.045,0.739,1.007,1.042,0.946,0.887,0.986,0.981,1.058,0.931,1.044,0.988,1.016,1.013,0.975,1.022,1.161,0.884,1.084,0.898,1.019,0.982,1.017,1.035,1.034,1.051,1.029 +NM_152785,1.092,0.918,1.043,1.077,0.968,0.944,0.878,1.116,1.009,1.0,1.139,1.076,1.021,1.026,1.054,0.966,0.876,0.975,1.056,0.951,1.106,0.878,1.0,1.03,1.011,1.052,1.118,1.038,0.867,0.996,0.924,0.832,1.049,0.932,0.94,0.941,1.07,1.066,1.093,0.952,1.039,0.935,1.002,0.969,0.966,0.96,1.107,0.91,0.945,1.004,1.002,1.018,0.925,0.888 +NM_152786,1.033,1.126,1.115,1.029,0.922,0.985,0.903,1.064,1.099,1.042,0.959,1.051,0.981,0.912,0.965,1.006,1.002,1.036,0.94,1.107,0.967,0.946,1.071,1.036,1.016,0.997,1.041,0.948,0.955,1.004,1.041,0.948,1.174,1.016,1.085,1.027,1.028,1.074,1.043,0.917,0.927,0.978,1.112,1.015,1.006,0.94,0.998,0.99,1.021,1.03,0.908,0.915,0.997,1.073 +NM_152788,1.321,1.112,0.935,1.068,1.16,0.996,1.13,0.971,1.055,1.239,1.112,1.003,1.117,0.85,1.05,1.296,0.902,0.994,1.029,0.945,1.112,1.115,1.129,0.961,1.033,1.016,1.078,1.081,0.793,1.018,0.995,0.956,0.981,0.945,1.054,1.026,1.063,1.101,0.905,1.259,1.195,1.013,0.846,1.02,1.136,0.904,0.997,1.236,0.933,1.079,1.072,0.818,0.814,1.069 +NM_152789,0.902,1.002,1.12,0.854,0.94,1.037,0.822,0.813,1.294,0.97,0.954,1.023,0.949,1.015,0.907,1.091,1.032,0.919,0.954,1.095,0.768,0.969,1.377,1.1,0.852,0.859,1.311,1.022,0.613,1.173,1.112,1.334,1.502,1.177,0.581,0.776,1.092,0.885,1.106,0.985,1.05,0.946,0.924,0.902,1.086,0.865,0.865,0.811,0.911,0.888,1.004,0.966,0.813,1.29 +NM_152791,0.997,0.845,0.874,0.92,1.011,0.966,1.04,1.246,1.151,0.986,1.068,0.942,0.958,0.927,0.894,1.059,1.117,1.058,0.974,0.997,0.951,1.1,0.959,1.018,0.905,1.001,0.95,1.2,1.009,0.88,1.086,1.057,1.099,1.141,1.174,0.906,0.936,1.072,0.973,0.962,1.073,1.043,0.963,0.912,1.034,1.043,0.999,1.178,1.043,0.958,0.939,1.029,0.892,0.944 +NM_152792,1.053,0.941,0.908,1.048,1.046,1.302,0.88,0.957,0.819,0.924,1.143,1.011,0.855,0.869,1.078,0.982,1.01,1.005,0.804,0.983,0.861,0.988,0.977,0.917,0.938,0.829,0.886,0.852,1.096,1.038,1.03,0.86,1.115,1.005,1.098,1.117,1.054,0.989,0.978,1.03,0.996,1.094,1.082,0.863,0.908,1.233,1.065,1.003,0.968,1.02,1.088,0.905,0.957,2.117 +NM_152793,0.642,2.685,0.993,0.843,0.687,1.392,0.882,0.582,0.656,0.726,1.343,0.824,0.815,0.609,0.8,1.086,0.59,0.738,0.7,2.076,0.602,0.719,1.89,0.614,2.932,0.677,0.734,1.058,0.645,2.101,0.737,2.099,0.731,2.9,0.351,1.042,1.187,1.019,1.568,0.829,1.132,3.189,0.732,0.909,0.697,0.957,0.778,0.707,0.701,0.754,1.22,0.752,0.693,1.205 +NM_152794,1.05,1.059,0.987,0.957,0.999,1.126,1.269,0.923,0.9,0.97,1.033,1.039,0.988,1.102,1.152,0.974,1.061,0.935,1.07,1.049,0.882,1.012,0.839,0.885,1.097,0.88,1.092,1.019,1.01,1.039,1.064,0.957,0.968,1.006,1.074,0.958,1.0,0.966,1.152,0.986,1.02,0.92,0.706,0.976,0.981,1.026,0.968,1.055,1.142,0.995,1.145,1.059,1.094,1.04 +NM_152796,1.017,1.069,1.061,0.851,0.917,0.822,0.996,1.034,0.924,1.031,0.908,1.013,1.028,0.978,1.072,0.923,1.147,0.872,1.108,0.925,1.191,1.216,0.94,0.962,1.08,0.999,0.991,1.051,0.911,0.898,0.971,1.042,1.015,1.061,0.999,0.91,1.001,0.906,1.105,0.984,1.027,1.071,0.997,0.87,0.96,0.852,0.994,1.008,0.936,1.012,0.957,0.968,1.004,1.022 +NM_152827,0.868,0.843,1.216,0.564,1.316,1.376,0.626,0.968,1.273,1.206,1.106,1.509,0.921,0.678,0.886,1.318,0.951,1.095,1.407,0.944,0.499,1.02,1.151,1.426,0.552,1.081,1.119,1.368,0.403,1.166,1.171,0.886,1.024,1.145,0.363,0.438,1.11,1.394,0.998,0.637,1.245,1.016,0.406,0.623,1.271,0.869,0.973,1.043,0.834,0.859,1.182,0.695,0.863,1.708 +NM_152828,1.115,0.969,1.056,1.085,0.956,0.921,0.81,1.16,1.221,1.03,1.084,0.98,0.926,1.209,0.885,0.942,0.992,0.921,1.117,0.985,1.017,1.044,0.911,0.986,1.016,0.953,1.055,1.103,0.937,0.866,0.923,0.898,1.074,0.986,1.075,0.976,1.052,0.953,0.817,0.876,1.054,0.957,0.87,1.128,0.94,1.017,1.078,1.04,1.075,1.0,1.033,1.068,1.011,1.209 +NM_152830,0.987,1.058,1.103,0.816,1.075,1.062,0.97,0.861,1.096,0.977,1.089,1.098,1.011,0.799,0.946,1.091,1.041,0.995,0.955,1.013,1.019,1.016,1.06,0.991,1.007,0.968,1.041,1.037,0.735,0.943,0.978,1.017,1.052,0.833,0.901,1.019,1.064,1.0,1.052,0.952,0.865,1.139,0.97,1.027,1.101,0.998,1.0,1.03,1.02,0.928,0.917,0.986,1.134,0.979 +NM_152831,0.951,0.93,0.914,1.048,0.976,0.961,1.049,1.179,0.905,0.964,0.988,0.996,0.935,0.88,0.977,1.002,0.939,1.112,0.953,1.041,0.919,1.007,0.91,0.921,1.043,1.09,1.087,0.946,1.17,0.999,0.99,1.061,0.836,0.852,0.964,0.945,1.096,1.013,1.142,0.958,1.025,1.094,1.154,1.07,1.031,0.965,0.983,1.059,0.896,1.056,0.999,0.967,0.889,1.067 +NM_152832,0.948,0.847,1.333,0.824,0.96,1.025,0.537,0.992,0.711,0.975,0.85,1.477,1.264,0.999,0.769,1.055,1.015,0.78,1.398,0.796,1.014,1.113,0.732,0.973,0.85,1.302,1.069,0.828,0.493,0.803,1.12,1.741,1.776,1.09,1.662,0.826,0.775,1.096,1.35,1.165,0.917,0.844,0.628,1.015,1.064,0.609,0.791,1.555,0.604,1.395,0.754,0.82,1.095,0.916 +NM_152835,0.816,1.037,1.577,0.763,0.971,1.227,0.94,0.881,1.233,0.896,0.931,0.924,1.016,0.927,1.005,1.45,1.013,0.925,0.839,1.209,0.633,1.044,1.06,1.153,0.805,0.637,1.579,0.933,0.743,1.213,1.107,1.136,1.642,1.444,0.605,0.684,1.054,1.155,1.513,0.854,0.909,1.091,0.659,0.744,1.055,0.964,0.832,0.924,1.039,1.217,1.142,0.837,0.71,1.575 +NM_152837,0.972,1.051,1.62,0.871,1.124,1.196,0.782,1.01,1.411,0.903,0.962,1.258,1.016,1.116,1.103,1.23,1.007,1.022,1.151,1.295,0.646,1.129,1.008,1.234,0.673,0.936,1.556,1.146,0.601,0.896,1.469,1.193,0.857,0.953,0.621,0.698,1.099,0.948,0.909,1.341,1.15,1.098,0.779,0.703,1.08,1.161,0.865,0.918,0.877,0.96,0.945,0.967,0.809,1.191 +NM_152838,0.753,1.023,1.315,0.746,0.846,0.97,0.85,0.81,1.054,1.029,0.945,1.0,0.834,0.722,0.86,1.19,0.778,0.793,0.991,1.228,0.726,1.043,1.242,0.902,0.816,0.819,1.022,0.775,0.738,1.192,0.937,1.485,1.32,1.101,0.68,1.024,1.18,0.933,0.928,1.178,0.967,1.273,0.871,0.843,0.89,0.911,0.819,0.745,1.15,0.715,1.047,0.974,1.017,1.594 +NM_152840,0.969,0.957,0.964,0.882,0.923,1.09,1.031,1.162,1.029,1.005,1.106,1.05,0.96,1.052,1.082,0.924,0.972,0.982,0.962,0.91,0.925,1.088,1.082,0.997,0.895,1.02,0.911,1.024,1.208,1.069,1.017,1.212,1.033,1.118,0.936,1.094,1.042,0.978,0.981,1.109,0.874,0.923,0.848,1.009,1.085,0.921,1.018,0.983,1.0,0.908,1.04,1.004,0.982,1.01 +NM_152842,0.868,0.974,0.822,0.756,0.979,1.039,0.851,0.951,1.062,1.006,0.883,1.082,1.135,0.883,1.141,0.784,0.991,0.789,1.118,1.2,1.034,0.894,0.934,0.978,1.04,1.033,0.991,0.992,1.487,0.963,1.082,0.99,0.972,0.886,1.008,0.921,0.978,0.929,1.035,1.031,1.056,1.156,1.052,0.901,1.031,0.96,1.126,0.904,0.987,0.932,0.945,0.918,0.889,0.937 +NM_152843,1.065,1.006,1.019,0.905,1.092,1.019,1.005,0.968,0.958,0.958,1.038,1.024,0.936,1.013,0.927,0.985,0.957,0.928,0.98,0.997,1.135,1.051,1.045,0.985,1.035,1.132,1.021,1.018,1.138,0.913,1.016,1.014,0.902,1.04,1.157,0.951,1.028,1.07,1.002,0.985,0.98,0.951,1.046,1.021,0.855,1.033,1.033,0.988,0.886,0.916,0.953,0.891,0.907,0.91 +NM_152850,0.736,0.911,0.924,0.847,0.99,1.0,0.745,0.63,0.878,0.71,1.036,0.62,0.585,0.597,1.041,1.17,0.879,0.819,1.097,1.045,0.671,0.82,1.199,0.913,0.87,0.744,0.932,0.689,0.841,1.295,0.705,1.425,1.983,1.487,0.523,0.872,1.072,0.725,1.397,0.987,0.833,1.199,1.0,1.483,0.756,1.131,0.824,0.641,1.23,0.854,1.075,1.296,0.993,1.67 +NM_152854,1.1,0.956,1.119,0.891,0.945,0.833,1.003,0.927,1.052,0.961,0.848,0.911,0.913,0.999,1.087,0.941,0.947,1.082,1.068,0.913,1.043,0.947,0.984,1.012,0.841,1.078,1.022,0.925,1.07,1.048,0.937,1.171,0.89,1.12,0.909,0.884,1.006,0.991,0.974,1.169,1.164,1.009,0.897,0.908,1.004,0.909,0.925,1.001,0.941,0.975,0.887,1.167,0.956,0.974 +NM_152855,0.985,1.067,1.095,0.933,1.015,0.835,0.916,0.824,1.009,0.95,1.111,1.005,1.009,1.075,0.951,1.012,1.014,0.841,0.972,1.008,0.893,0.886,1.126,1.015,1.026,1.081,1.044,1.1,0.937,1.02,1.049,1.002,1.026,0.911,0.933,1.085,0.985,1.193,0.975,1.016,1.024,0.92,1.136,1.017,1.029,1.105,0.93,1.145,0.882,0.894,0.989,0.982,1.212,0.937 +NM_152856,1.213,0.785,1.133,1.071,1.199,0.949,0.615,0.747,1.414,1.094,0.754,0.874,0.847,0.799,0.896,1.014,1.341,0.987,0.892,0.816,0.778,1.249,1.008,1.091,0.756,1.28,1.193,1.043,0.552,1.021,1.136,1.166,1.485,0.896,2.68,0.732,0.854,1.271,1.516,0.918,1.242,0.902,0.762,1.013,1.131,0.804,0.931,1.553,0.948,1.169,0.896,0.936,0.764,1.104 +NM_152857,1.861,1.792,2.112,1.955,2.162,1.948,1.9169999999999998,1.681,2.4050000000000002,1.9289999999999998,1.822,1.8090000000000002,1.967,2.05,2.085,2.16,1.946,1.865,2.107,1.7810000000000001,1.8090000000000002,1.682,1.9180000000000001,2.178,1.873,1.658,2.154,2.371,2.027,2.084,2.488,1.989,2.6020000000000003,2.065,2.145,1.561,1.837,2.086,2.198,1.914,2.465,1.855,1.9669999999999999,2.065,1.781,1.9769999999999999,2.378,2.1109999999999998,1.881,2.088,1.8119999999999998,1.85,2.007,2.296 +NM_152860,1.005,1.015,1.003,0.906,0.959,1.129,0.964,0.938,0.904,0.858,0.885,1.109,0.921,0.982,1.127,0.974,0.887,1.015,0.974,0.988,1.04,0.777,0.881,0.9,1.013,1.075,1.077,1.058,1.064,0.904,0.997,1.091,1.026,1.052,0.92,0.905,1.082,1.056,0.99,1.01,1.058,1.003,1.031,1.026,0.997,1.048,1.214,0.895,0.829,1.124,1.034,0.791,0.896,0.841 +NM_152864,1.038,1.013,0.938,0.985,0.907,0.947,0.994,1.116,1.071,1.086,1.292,0.982,0.915,1.039,0.896,0.944,0.963,1.107,0.968,1.051,0.853,0.849,1.11,0.962,0.881,0.981,0.896,0.981,0.952,0.999,1.053,1.349,1.077,0.86,1.029,1.077,0.893,1.108,0.917,1.425,0.923,0.953,1.166,1.126,0.894,1.123,0.873,1.028,1.06,0.998,0.961,1.038,1.023,3.834 +NM_152869,0.929,1.27,0.875,1.095,1.018,1.066,1.165,0.907,0.935,1.038,0.987,0.911,0.953,0.804,0.861,1.004,1.002,0.96,0.862,0.957,0.888,1.013,1.232,1.017,1.306,0.922,0.88,0.863,0.929,1.208,0.981,1.695,1.064,1.51,1.016,1.086,1.401,1.14,0.973,0.91,1.033,1.065,0.913,0.971,0.788,0.982,0.945,0.808,1.067,0.956,1.021,0.995,0.839,1.22 +NM_152870,1.069,1.02,0.927,0.927,1.013,0.951,1.027,0.982,0.863,0.985,0.933,0.961,1.076,0.954,0.96,0.978,0.941,1.016,1.038,0.966,1.04,0.979,1.126,1.148,1.047,1.031,0.956,0.929,1.104,1.011,0.973,0.953,1.1,1.006,0.965,1.094,1.038,0.957,1.079,0.982,0.904,1.029,1.087,1.011,1.004,1.089,0.892,0.99,1.051,1.069,1.105,0.965,0.949,1.182 +NM_152876,0.917,0.95,0.976,0.904,0.969,0.957,1.0,0.834,0.916,0.957,1.103,0.889,1.0,0.921,1.123,1.19,1.076,0.96,1.039,1.051,0.83,1.017,1.073,0.889,1.069,0.962,1.092,0.881,0.848,1.031,0.949,0.987,0.924,1.021,1.087,0.854,1.074,0.955,1.113,1.0,0.854,1.237,1.173,1.129,0.847,0.998,0.773,0.895,0.969,0.846,1.194,0.825,0.997,1.062 +NM_152879,0.957,0.845,0.947,0.891,0.825,1.077,1.089,0.891,0.92,0.855,0.894,1.033,0.903,0.962,0.972,1.175,0.924,1.141,1.128,1.049,1.103,1.05,1.039,1.0,1.106,0.958,0.932,1.087,0.866,1.1,1.017,0.971,0.94,1.128,1.161,0.95,1.046,1.18,1.215,1.012,0.91,0.959,0.957,1.061,0.884,0.957,1.254,0.789,1.217,1.048,1.098,0.795,1.003,0.996 +NM_152881,0.924,1.034,1.041,0.999,1.016,0.859,0.706,0.967,1.032,0.956,0.946,0.938,1.01,1.092,0.787,0.915,1.064,1.005,1.229,0.873,1.185,1.25,0.91,1.128,0.891,1.164,1.393,0.918,0.707,1.035,0.969,2.452,1.656,0.958,0.793,0.891,0.954,1.315,0.965,1.85,1.032,1.046,1.103,1.74,1.078,0.962,0.957,1.094,0.743,0.995,0.971,1.361,1.141,1.081 +NM_152888,0.962,1.003,1.029,1.022,0.992,0.976,0.966,0.86,1.119,0.989,0.955,0.913,1.044,0.982,0.942,1.025,1.003,1.01,1.014,0.981,1.067,0.985,0.928,0.953,1.106,1.069,0.986,1.001,0.772,0.919,0.998,1.318,1.14,1.025,0.938,1.016,0.892,0.961,1.025,1.411,1.017,1.075,0.95,1.1,1.027,0.899,1.138,0.796,0.999,1.02,0.922,1.22,1.024,1.188 +NM_152889,0.91,1.369,0.912,0.875,0.944,1.006,1.118,0.829,0.977,1.043,0.978,0.982,0.901,0.892,0.808,1.058,0.979,0.942,0.944,0.945,0.85,0.984,0.957,0.944,0.951,0.855,0.831,0.831,1.487,0.944,0.964,3.384,3.595,1.028,0.973,1.612,1.029,0.996,2.222,1.692,0.879,0.895,1.233,1.03,1.096,1.103,0.971,0.888,0.878,0.966,1.062,1.395,1.004,2.228 +NM_152890,1.002,1.009,1.021,1.009,1.038,0.975,1.265,0.831,0.997,0.919,0.899,1.082,0.88,0.765,1.119,0.885,0.958,0.974,0.912,0.961,1.001,0.988,0.815,1.01,0.991,1.067,0.979,1.007,0.967,1.05,0.928,1.443,0.97,1.042,1.009,0.927,0.835,0.954,0.917,1.037,0.906,1.186,1.187,0.907,0.987,0.979,1.061,0.944,0.972,1.0,1.013,0.857,0.873,1.144 +NM_152892,0.759,1.029,1.046,1.037,0.965,0.903,0.943,0.417,1.163,1.279,1.114,0.841,0.653,0.718,0.867,0.859,1.018,1.005,0.994,1.001,0.698,0.867,1.735,0.999,0.649,0.8,1.136,0.931,0.739,1.15,0.782,1.706,1.206,0.898,0.576,0.989,0.99,0.936,1.513,1.119,0.976,1.129,1.052,1.643,0.932,1.184,1.357,0.712,1.355,0.863,1.113,1.759,1.039,1.637 +NM_152896,0.94,0.884,1.031,0.938,0.877,1.07,0.837,0.787,1.052,1.014,1.06,0.972,0.844,0.877,0.969,1.062,0.954,1.052,1.024,1.091,0.802,0.818,0.999,0.983,0.867,0.949,1.079,0.983,0.633,1.266,1.084,1.541,1.18,1.022,1.001,0.796,0.901,0.93,1.018,0.77,0.925,1.009,0.696,1.138,0.86,1.04,0.955,0.836,0.942,0.852,1.024,0.943,0.886,1.434 +NM_152897,0.999,0.907,1.068,0.884,0.943,1.083,0.86,1.17,1.006,0.993,0.965,1.006,1.005,0.918,0.898,1.0,0.734,0.955,1.019,0.865,0.949,1.084,0.969,0.923,0.914,1.255,1.02,0.974,1.629,1.049,1.13,1.407,1.089,1.339,1.006,1.081,0.996,0.912,0.923,1.029,0.805,0.81,1.031,1.01,0.806,1.016,1.043,1.089,1.16,0.949,0.899,1.104,0.755,0.814 +NM_152898,0.904,0.943,0.9,1.204,0.985,1.063,0.968,0.962,1.036,1.072,1.047,1.095,0.982,1.053,0.893,1.024,1.057,0.92,1.024,1.031,0.998,0.886,1.119,1.055,0.895,1.011,0.882,1.011,0.792,1.141,0.913,1.04,0.947,0.954,1.041,0.875,1.202,0.979,0.895,0.905,0.92,1.002,0.822,1.088,1.076,1.177,0.849,1.086,0.936,0.985,0.97,1.043,1.072,1.007 +NM_152899,1.876,2.2720000000000002,2.298,1.9909999999999999,1.634,1.8780000000000001,1.831,1.8050000000000002,1.7610000000000001,1.895,1.7229999999999999,1.6720000000000002,1.718,1.6680000000000001,2.3120000000000003,1.863,1.9889999999999999,1.65,1.9859999999999998,1.9899999999999998,1.674,1.81,2.216,1.744,1.8519999999999999,1.86,2.403,1.642,1.634,2.17,1.718,4.084,2.247,2.2,1.6680000000000001,1.877,2.0140000000000002,1.6429999999999998,2.823,8.32,1.858,2.214,1.712,2.558,2.064,1.927,2.099,1.697,1.806,2.263,2.0460000000000003,6.542000000000001,2.365,4.01 +NM_152900,0.993,0.958,1.079,0.986,1.155,0.998,1.067,1.005,1.007,1.007,1.012,1.136,1.063,0.971,1.08,1.037,1.117,0.871,0.881,1.12,0.997,0.918,1.177,0.979,0.935,0.985,1.05,1.094,0.949,0.96,0.95,1.068,0.913,0.956,1.088,1.015,1.146,1.15,1.0,0.927,1.056,1.018,0.897,1.029,1.03,0.854,0.874,0.989,1.237,1.113,0.97,1.076,1.141,0.924 +NM_152901,0.94,1.036,0.981,1.021,1.091,0.953,1.105,0.964,1.108,0.859,1.037,0.933,0.953,1.109,0.872,1.132,0.996,0.88,1.025,0.997,1.003,1.054,1.162,0.978,1.055,0.91,0.889,0.962,0.867,0.949,0.982,1.084,0.954,0.987,0.973,0.96,1.039,0.983,1.019,1.023,1.061,0.821,1.143,1.034,1.014,1.176,0.952,0.938,0.995,0.962,0.955,0.972,1.125,0.923 +NM_152902,0.776,0.91,1.056,0.853,0.883,1.397,0.804,0.887,1.324,0.815,1.234,1.003,0.852,0.87,0.895,1.302,0.774,0.943,0.803,1.139,0.729,0.948,1.299,1.0,0.906,0.744,0.938,0.807,0.718,1.412,0.922,1.489,1.0,1.274,0.618,1.406,1.157,0.757,1.141,1.339,0.93,1.622,0.809,1.24,0.848,1.387,1.01,0.796,1.268,0.759,1.104,0.955,0.973,1.428 +NM_152904,1.068,1.138,1.088,1.043,1.027,1.138,0.803,1.022,1.264,0.866,0.983,0.893,0.968,0.883,0.996,0.858,1.102,0.969,1.014,0.945,0.96,1.041,0.889,0.906,0.93,1.083,0.961,1.151,1.034,0.875,1.198,1.087,1.167,1.0,1.394,0.964,0.982,1.093,0.998,1.013,0.94,1.038,1.035,0.885,1.061,0.955,1.015,1.1,0.834,0.946,0.966,0.871,1.061,1.026 +NM_152905,1.122,0.947,0.91,0.976,1.046,0.916,0.838,0.897,1.173,1.082,1.151,0.924,0.98,0.928,1.175,1.17,0.98,0.948,0.972,1.149,1.179,0.93,1.01,0.815,0.979,0.95,0.972,0.87,0.829,0.999,0.981,1.086,1.295,1.124,1.001,0.994,0.989,0.975,1.035,0.976,0.846,0.852,0.852,0.89,1.002,1.135,1.092,0.792,1.176,0.972,1.028,0.839,0.948,1.299 +NM_152906,0.824,1.005,0.888,0.959,0.751,1.596,0.856,0.878,0.831,0.762,1.22,0.782,0.67,0.701,1.064,1.309,0.929,0.927,0.989,1.008,0.883,0.801,1.076,0.973,1.088,0.842,0.995,0.758,0.654,1.343,0.907,1.18,1.401,1.608,0.647,0.833,1.062,0.818,1.442,0.889,0.852,1.054,0.735,0.948,0.872,1.005,0.871,0.711,0.984,0.843,1.152,0.838,0.932,1.205 +NM_152908,1.156,0.942,1.493,0.989,1.018,0.933,0.886,1.031,1.064,0.959,1.154,0.923,0.975,0.967,1.139,0.902,1.12,0.864,0.945,1.085,1.527,0.887,0.978,1.082,0.851,1.138,1.182,1.039,1.004,0.935,0.999,0.881,1.012,1.044,0.932,1.043,1.012,1.206,0.911,0.998,1.16,0.953,0.769,0.945,1.116,1.044,0.987,1.001,1.006,1.215,0.937,1.07,1.178,0.906 +NM_152910,0.98,1.017,1.023,1.091,1.009,1.042,0.911,0.841,1.106,1.009,1.016,1.001,0.993,0.757,1.244,1.086,0.987,0.9,1.19,0.95,0.909,1.045,0.994,1.007,0.98,0.936,0.967,0.886,0.82,1.039,1.001,1.053,1.002,0.946,1.008,0.954,0.998,0.925,0.951,1.044,1.068,0.949,0.933,1.198,1.067,0.892,1.162,0.949,1.133,1.09,0.984,1.159,1.066,1.082 +NM_152911,1.216,0.951,1.053,0.913,0.987,0.901,1.064,0.838,0.924,1.094,0.898,0.926,1.123,0.983,1.147,1.096,1.087,0.989,2.047,0.986,1.007,1.489,0.924,1.501,0.734,1.524,1.192,1.241,0.879,0.839,1.101,0.883,1.017,0.86,0.99,0.906,1.034,1.101,1.059,0.745,1.205,1.043,0.809,1.116,1.398,0.901,0.833,1.536,0.883,1.34,0.893,1.068,1.204,0.822 +NM_152912,0.504,1.008,1.108,0.754,0.889,1.594,0.876,0.537,1.195,0.829,1.366,0.854,0.531,0.553,0.859,1.816,0.75,1.044,0.92,1.57,0.501,0.802,1.424,0.816,0.719,0.559,0.918,1.015,0.526,1.555,0.791,1.008,0.958,1.499,0.415,1.16,1.167,0.824,0.95,1.467,1.007,1.25,0.805,0.687,0.797,1.321,1.052,0.543,1.08,0.529,1.222,0.901,0.737,1.122 +NM_152913,1.124,0.951,1.025,0.989,1.092,1.047,0.849,0.947,0.999,0.958,1.094,0.919,1.027,0.872,0.9,0.858,1.011,0.928,1.104,1.034,0.972,1.084,1.041,0.924,0.989,0.995,1.163,1.146,0.823,1.006,0.881,4.801,0.848,1.001,1.033,0.943,0.955,0.887,1.014,1.048,0.902,0.964,0.87,0.867,0.909,1.108,0.986,0.972,0.967,1.109,1.11,0.849,1.003,0.93 +NM_152914,1.035,1.028,1.108,0.892,1.64,0.987,0.942,0.943,1.294,1.003,0.865,1.017,1.03,1.341,0.989,0.948,1.255,0.962,1.0,0.992,0.935,1.088,0.827,0.959,0.858,1.13,1.121,1.271,1.37,1.076,1.161,1.05,0.926,0.995,1.446,1.04,0.899,1.138,0.872,0.867,1.148,0.929,0.964,0.882,1.074,1.038,1.199,1.252,0.962,1.23,1.043,0.921,0.862,0.998 +NM_152918,0.924,0.965,0.925,0.858,0.757,1.024,0.898,0.892,0.858,0.941,0.946,1.009,0.88,0.914,1.009,0.992,1.15,0.927,0.806,0.885,0.985,0.83,0.957,0.776,0.944,0.939,1.336,1.009,0.725,0.941,0.909,1.214,1.023,1.096,0.929,0.904,0.979,0.945,1.404,2.628,0.775,1.144,1.131,1.155,0.989,1.056,1.02,0.893,0.967,0.958,0.944,2.125,1.09,1.416 +NM_152924,0.753,1.427,0.771,0.993,0.897,1.568,1.261,0.673,0.766,0.805,1.331,0.782,0.823,0.956,1.138,1.162,0.71,1.084,0.919,1.158,0.745,0.682,1.228,0.864,1.019,0.776,0.738,0.819,0.951,1.293,0.774,0.941,1.064,1.575,0.714,1.253,1.294,0.799,1.838,0.91,0.751,1.486,1.067,1.001,0.793,1.356,1.103,0.843,1.07,0.788,1.422,0.789,0.773,1.118 +NM_152926,0.975,0.884,1.119,0.92,0.561,1.064,0.402,0.358,0.98,1.095,0.785,0.881,0.731,0.677,0.598,1.487,1.362,0.834,1.306,0.751,0.838,0.904,1.629,1.314,0.409,1.31,0.997,0.674,0.39,1.466,0.923,2.114,3.309,1.165,0.415,0.999,0.795,1.073,1.928,1.661,1.134,0.621,0.513,2.647,0.981,0.555,1.14,1.019,0.34,1.081,0.629,1.444,1.171,1.227 +NM_152932,1.136,1.079,0.916,0.945,0.847,1.0,0.977,0.904,0.936,1.065,1.055,1.001,0.816,1.14,0.872,0.956,1.081,1.052,0.886,0.86,0.837,0.994,0.919,0.998,1.006,0.906,0.913,1.017,1.205,0.923,0.975,1.018,0.962,0.974,1.089,1.023,0.958,0.996,1.104,0.967,0.929,1.11,1.032,0.876,1.006,1.131,1.01,0.938,0.975,1.231,0.989,1.052,1.052,1.015 +NM_152939,0.824,1.039,1.207,0.934,1.033,1.015,0.852,0.848,0.99,0.969,0.842,0.972,1.03,1.006,0.926,1.026,1.018,0.925,1.101,0.99,0.83,0.992,0.95,0.962,0.89,0.984,1.038,1.156,0.608,0.976,1.199,0.999,0.954,1.019,1.148,1.036,0.915,1.014,1.239,1.34,1.112,1.008,0.851,1.168,0.948,0.919,0.892,0.968,0.795,1.019,0.885,0.986,0.873,1.095 +NM_152942,0.948,1.239,1.103,1.145,1.0,0.975,1.023,0.911,0.876,0.932,0.919,0.993,0.822,1.0,1.002,0.837,0.953,0.964,0.933,0.916,0.971,0.917,0.982,1.032,1.13,1.028,0.918,1.027,0.973,1.045,0.974,0.946,1.117,1.195,0.978,0.94,0.96,1.07,1.207,1.019,0.986,0.916,1.054,0.937,1.086,1.081,0.938,1.048,0.78,0.923,0.992,0.991,1.018,0.98 +NM_152945,0.641,1.116,1.095,0.822,0.948,1.273,0.845,0.734,1.21,0.882,1.112,0.904,0.639,0.599,0.919,1.681,0.919,0.853,0.839,1.012,0.635,0.843,1.231,1.075,0.67,0.746,1.269,0.821,0.581,1.156,0.891,1.077,2.632,1.078,0.507,1.059,1.015,0.918,1.13,0.821,1.079,1.071,0.735,0.966,0.966,1.183,1.09,0.67,1.297,0.691,1.071,0.668,0.945,1.687 +NM_152988,0.895,0.873,0.754,1.103,0.86,1.461,1.186,0.661,0.952,0.841,1.176,0.849,1.036,0.646,0.97,1.405,0.851,1.063,0.756,1.081,0.808,0.687,1.184,0.719,0.985,0.781,0.948,0.885,1.064,1.236,1.067,1.454,1.36,1.371,0.581,0.915,0.97,0.833,1.529,1.167,0.843,1.08,1.08,1.002,0.873,1.141,0.815,1.029,0.827,0.94,1.152,0.949,0.833,0.964 +NM_152990,1.047,1.153,1.048,1.12,0.94,1.03,0.986,0.95,0.935,1.044,1.023,0.849,0.913,0.826,0.985,0.833,0.962,1.003,0.988,1.045,1.078,1.059,1.026,1.057,1.048,0.967,1.0,0.921,0.848,0.941,1.018,0.944,1.08,0.855,1.073,1.041,0.993,0.929,1.103,1.066,1.179,0.965,1.115,0.964,0.952,1.161,0.878,0.943,0.952,1.004,1.002,1.049,1.174,0.978 +NM_152991,0.883,1.024,1.114,0.983,1.011,1.046,1.047,1.011,1.238,1.049,1.156,1.006,1.117,1.003,0.926,0.938,1.0,0.894,0.911,0.984,0.988,1.065,1.059,1.218,1.0,0.994,1.042,0.896,0.938,0.957,0.947,0.914,1.051,1.019,1.029,0.926,0.859,1.068,1.009,1.089,0.979,0.926,1.003,0.948,1.006,1.104,0.996,0.987,1.087,1.04,0.934,1.08,0.983,1.037 +NM_152994,0.872,0.969,1.127,0.881,0.955,1.14,0.66,0.741,1.014,1.011,1.053,0.955,0.656,0.906,1.08,1.123,0.91,0.811,1.164,0.881,0.799,0.881,1.0,1.05,0.823,1.015,1.192,0.915,0.721,1.005,1.037,1.055,1.593,1.39,0.584,0.768,0.891,0.952,1.035,0.865,0.984,1.101,0.718,1.039,0.931,1.011,0.981,0.91,0.821,0.904,1.058,0.683,1.112,1.405 +NM_152995,0.801,1.054,1.046,0.81,0.852,1.195,0.918,0.754,1.189,0.977,0.947,0.885,0.79,0.779,1.169,1.37,0.768,0.885,0.998,1.013,0.651,0.893,1.117,0.995,0.923,0.693,1.303,0.81,0.849,1.154,0.998,0.926,2.336,1.232,0.597,0.724,1.192,0.821,1.17,1.046,0.889,1.17,1.127,0.964,1.002,0.925,0.874,0.918,0.982,0.773,1.073,0.86,0.764,1.337 +NM_152997,0.882,0.912,0.883,0.963,1.084,0.89,1.16,1.113,0.915,0.941,0.847,0.888,0.968,0.92,1.065,1.056,0.929,1.086,0.912,0.965,0.942,0.82,0.95,1.009,0.878,0.864,1.047,0.867,0.907,1.007,0.892,0.88,1.328,0.901,1.083,1.055,0.995,0.936,0.934,1.268,0.918,4.885,1.018,0.972,1.088,0.87,1.013,0.863,0.801,1.08,0.925,1.11,1.451,1.104 +NM_152998,0.909,0.891,1.223,0.878,1.036,1.125,0.846,0.849,1.09,0.997,0.941,1.014,0.841,0.888,1.036,1.114,0.998,1.114,1.052,0.914,0.956,0.901,1.262,1.158,0.874,1.058,1.564,0.871,0.785,0.865,1.07,0.904,1.898,0.943,0.761,0.914,0.995,1.165,1.429,0.85,1.089,0.878,0.762,1.09,1.002,0.905,0.985,0.92,1.017,1.011,1.109,0.954,0.929,1.735 +NM_153000,1.233,0.779,1.952,0.717,2.127,0.546,0.573,0.993,2.369,2.285,0.492,2.326,1.314,1.403,1.233,0.898,0.908,1.32,2.36,0.758,1.661,1.434,0.938,2.441,0.649,1.597,1.547,1.598,0.32,1.142,1.801,2.722,1.46,1.574,0.336,0.577,0.525,2.691,0.669,0.824,1.918,0.855,0.379,2.301,2.334,0.59,0.866,1.082,0.412,1.297,0.891,1.188,1.87,0.864 +NM_153001,0.773,0.803,1.056,0.935,0.818,0.847,0.772,0.322,0.987,1.011,0.813,0.756,0.606,0.426,0.626,1.382,0.851,0.974,1.0,1.414,0.279,0.675,2.098,1.038,0.689,1.0,1.022,0.782,0.393,1.349,0.704,0.899,2.851,0.874,0.199,1.844,1.05,0.804,2.31,0.957,1.071,0.966,0.79,2.216,1.23,1.164,1.512,0.876,1.592,0.943,1.137,1.249,0.884,2.64 +NM_153002,1.047,1.048,0.961,1.026,1.189,0.939,0.978,1.054,1.071,0.984,1.195,1.072,0.917,0.97,1.017,0.946,1.155,0.928,1.008,0.877,0.912,1.059,1.059,1.078,1.067,1.051,0.937,0.977,0.98,1.089,1.04,1.064,0.943,0.954,0.98,0.952,1.001,1.001,1.057,1.01,0.993,0.976,0.944,1.031,0.898,1.042,0.921,0.934,1.086,1.17,0.911,0.941,1.004,0.926 +NM_153003,0.936,0.993,1.082,1.168,1.0,0.92,0.987,0.967,1.059,0.926,0.989,0.965,1.009,0.909,1.017,1.012,0.991,0.855,1.065,1.044,0.959,0.953,1.222,1.03,1.115,0.949,1.022,0.925,0.711,1.079,1.144,0.926,1.052,0.999,1.047,1.041,0.963,1.006,0.973,1.016,1.039,0.857,1.077,1.203,1.065,0.973,0.888,1.021,1.018,0.996,1.04,1.001,0.925,1.159 +NM_153005,1.738,2.081,2.2590000000000003,1.815,2.0700000000000003,2.1639999999999997,1.7389999999999999,1.6360000000000001,2.287,2.363,2.026,2.106,1.929,2.128,1.809,1.984,2.019,1.9,2.5410000000000004,2.007,1.824,2.098,2.371,2.323,1.682,1.8730000000000002,2.6069999999999998,1.829,1.9909999999999999,1.92,2.0629999999999997,2.165,3.933,2.0549999999999997,1.685,1.9140000000000001,2.0060000000000002,2.201,2.0380000000000003,1.996,2.344,1.823,1.952,1.96,2.427,1.95,1.957,1.787,1.9579999999999997,1.9689999999999999,2.089,1.7919999999999998,2.061,3.763 +NM_153006,0.94,1.092,0.997,1.026,0.888,0.982,1.028,1.146,1.058,1.001,0.888,0.958,1.057,0.951,1.26,1.055,0.91,1.136,1.003,1.134,1.026,0.978,0.885,1.008,1.087,0.988,1.032,1.065,1.034,0.98,1.07,1.053,0.951,1.122,0.808,1.023,1.051,1.169,1.027,0.962,0.847,1.076,0.986,1.116,0.935,1.191,1.048,0.891,1.015,1.075,0.965,0.846,0.97,0.909 +NM_153007,0.992,1.078,1.064,1.074,1.057,0.895,1.214,1.164,1.071,1.108,0.976,1.09,1.015,1.009,1.286,1.35,0.992,1.22,0.933,0.961,1.024,1.01,1.018,1.108,1.219,1.099,1.039,0.907,1.774,0.928,1.066,1.157,1.128,0.9,1.322,0.977,1.095,0.954,1.003,0.997,0.998,1.038,0.891,0.986,0.987,1.002,1.083,1.071,0.985,1.168,0.824,1.118,1.05,0.888 +NM_153008,1.008,0.86,0.888,0.916,0.963,1.038,0.792,0.988,1.042,0.981,0.889,0.985,0.98,1.13,0.861,0.876,1.114,0.924,0.914,0.944,0.968,1.104,0.77,1.035,1.01,1.062,1.046,1.198,0.709,1.107,1.077,1.023,0.976,0.902,0.939,0.885,0.994,1.116,0.997,1.045,1.087,1.088,0.813,0.931,1.011,0.887,0.963,1.087,0.973,1.044,0.995,0.891,1.33,1.075 +NM_153010,1.149,1.047,1.279,0.967,0.947,1.025,0.998,0.92,0.913,0.903,0.943,1.024,1.046,1.031,0.876,1.056,1.042,0.987,1.046,0.888,1.088,0.97,0.856,1.001,0.981,0.92,1.089,1.059,0.977,0.982,1.067,0.984,0.869,0.972,0.933,1.141,1.048,1.003,1.004,0.872,0.934,0.939,1.063,1.076,1.028,1.045,0.947,0.942,0.937,0.995,1.018,1.149,1.159,1.031 +NM_153011,0.987,1.031,1.029,0.819,0.887,0.975,0.896,1.221,1.213,1.089,0.974,1.011,1.05,1.053,1.132,0.911,1.051,0.955,1.021,0.947,1.044,1.087,0.93,0.954,1.112,1.098,0.956,1.062,1.43,1.224,1.041,1.166,0.897,0.959,0.902,1.009,0.947,1.05,0.967,1.015,0.952,0.964,1.189,0.969,0.969,1.006,1.021,1.038,0.941,0.919,1.065,1.013,1.023,0.894 +NM_153013,0.905,1.136,1.027,1.008,0.936,0.963,0.897,0.769,0.963,1.078,1.136,0.798,0.923,0.89,1.091,1.394,0.912,0.981,1.08,1.08,0.906,0.808,1.063,0.972,0.998,0.955,1.113,0.88,0.774,0.959,0.773,1.019,2.486,1.005,0.723,1.101,1.059,0.855,1.131,0.811,0.915,0.939,0.842,1.14,1.029,1.28,0.966,0.939,1.054,0.826,1.005,1.064,0.895,2.07 +NM_153014,1.195,0.925,1.321,1.022,0.914,1.031,0.956,0.55,1.239,1.177,1.083,0.859,0.705,0.81,1.0,0.921,0.971,1.14,1.051,1.119,0.739,0.946,1.183,0.892,0.757,1.0,0.98,0.814,0.663,1.48,1.274,0.98,0.806,1.355,0.436,0.824,0.921,0.899,1.317,0.825,1.105,1.154,0.736,0.775,1.157,1.026,0.672,0.795,0.621,1.2,1.105,0.774,1.143,0.623 +NM_153015,0.887,0.993,0.994,0.888,0.949,1.017,1.205,0.827,1.146,1.054,0.876,0.941,0.983,1.276,0.986,1.054,0.824,0.944,1.054,0.876,0.959,0.993,0.935,1.011,0.918,1.041,1.024,0.968,1.564,0.931,0.962,0.688,0.894,1.111,1.149,0.951,1.146,1.095,1.011,0.943,1.13,0.93,1.045,0.984,1.03,0.966,1.061,1.193,0.957,0.954,0.888,0.963,1.033,1.042 +NM_153018,0.899,0.948,1.131,0.872,1.032,1.048,0.988,0.93,0.959,0.934,1.076,0.989,1.073,0.907,1.088,0.826,1.047,1.056,1.035,1.213,0.922,0.872,0.939,0.961,0.897,0.869,1.213,0.904,0.903,1.067,1.032,1.222,1.436,1.443,0.814,0.74,1.23,1.062,0.758,1.099,0.931,1.307,0.937,0.744,0.9,0.924,0.951,0.896,0.951,0.878,1.0,0.762,0.904,0.897 +NM_153019,1.9489999999999998,2.0090000000000003,1.842,2.018,1.931,1.99,1.9660000000000002,2.198,2.004,2.0549999999999997,2.158,2.09,2.069,1.8980000000000001,2.183,2.06,1.983,2.1319999999999997,2.233,2.075,1.973,1.92,2.1,2.056,1.934,2.053,2.065,1.9769999999999999,1.795,2.181,1.9569999999999999,2.1479999999999997,1.9969999999999999,2.0789999999999997,2.017,1.973,1.966,2.0460000000000003,1.9649999999999999,2.078,1.713,2.107,1.952,2.088,1.8539999999999999,2.029,2.16,2.042,1.9089999999999998,2.0860000000000003,1.93,1.9849999999999999,2.283,1.838 +NM_153020,0.961,1.001,0.989,1.014,0.949,1.098,0.969,0.94,1.028,0.991,1.135,1.035,0.964,0.892,1.064,1.163,0.955,0.991,1.022,0.979,0.979,0.88,1.05,0.99,1.012,0.939,0.938,1.184,1.037,1.082,1.126,1.133,0.974,1.205,1.018,0.968,1.021,1.173,1.289,0.969,0.841,1.15,0.762,0.953,0.994,0.863,0.95,0.736,1.142,0.966,1.033,0.784,0.981,1.232 +NM_153022,0.87,0.94,1.059,0.952,1.005,0.905,1.002,1.04,0.851,0.794,0.871,1.051,0.943,0.922,0.986,0.793,0.981,0.954,0.977,0.922,0.981,1.043,0.95,1.024,1.044,1.169,1.11,1.045,1.672,1.025,0.851,1.32,0.916,1.027,0.883,1.048,0.954,1.029,0.951,1.198,1.012,0.846,0.864,1.076,1.092,1.016,0.953,0.984,0.929,1.148,1.018,1.018,0.955,0.849 +NM_153023,0.898,1.272,0.805,1.071,0.888,1.512,0.97,1.021,0.86,0.736,0.876,0.967,0.93,1.019,0.888,0.762,0.87,0.973,0.899,1.172,0.934,0.858,0.914,0.866,1.48,0.84,0.94,0.838,1.401,1.859,0.788,1.226,1.008,0.911,0.962,0.929,0.853,0.995,2.004,1.257,0.897,1.055,1.106,1.149,0.934,1.167,1.206,0.823,1.276,0.902,0.96,0.964,0.885,1.208 +NM_153026,0.864,1.116,1.071,1.225,1.044,1.259,1.083,1.014,0.883,1.216,0.863,0.859,0.895,0.843,0.889,0.943,0.902,1.039,1.135,0.905,0.878,0.868,1.082,0.939,1.271,0.929,1.004,0.892,1.354,1.353,0.868,2.517,1.115,1.867,0.889,0.931,0.998,1.139,1.301,0.891,0.811,1.52,0.852,0.925,0.859,1.013,0.905,0.96,1.004,0.808,1.076,1.048,0.844,0.935 +NM_153028,0.89,1.081,1.122,0.997,0.977,1.114,0.856,0.873,1.204,0.873,0.958,0.841,0.843,0.904,1.252,1.067,0.951,0.97,1.069,1.06,0.882,0.957,0.946,1.181,0.86,0.9,1.236,1.015,0.707,1.259,1.072,1.688,3.355,1.197,0.803,0.931,0.954,0.963,0.992,1.351,1.106,1.039,0.805,0.86,0.985,0.845,0.918,0.834,0.876,0.839,0.85,0.863,0.878,1.396 +NM_153031,1.051,0.938,0.998,1.23,0.97,0.97,1.137,0.815,1.062,0.975,0.882,1.019,1.179,0.89,0.926,0.912,0.879,0.925,0.839,0.831,1.227,1.032,1.091,0.945,0.944,0.939,1.034,1.169,0.989,0.925,0.978,1.005,1.004,1.031,1.067,0.883,0.913,0.921,1.109,1.113,1.041,0.888,0.777,0.817,1.183,1.073,1.021,1.072,1.197,1.122,0.955,1.02,1.131,0.901 +NM_153032,0.984,0.883,0.932,0.877,1.212,1.007,0.997,0.923,0.811,0.96,1.024,0.999,1.082,0.932,0.939,1.05,1.03,0.889,1.006,1.035,0.947,1.011,1.001,0.891,1.031,1.091,1.118,0.933,0.705,0.991,0.988,1.051,0.867,1.052,1.059,1.0,1.056,1.084,1.098,0.982,1.001,0.917,0.845,1.036,1.045,1.194,0.983,1.116,0.829,1.06,0.995,0.986,1.142,0.98 +NM_153033,1.004,0.942,0.989,1.044,0.952,0.994,0.837,0.882,0.945,0.923,0.808,0.912,1.203,0.969,1.069,0.941,1.052,0.944,0.978,1.027,1.024,1.042,0.939,1.005,1.184,0.91,1.13,1.061,0.696,1.136,0.981,1.151,1.014,0.924,1.034,1.074,1.018,0.963,1.092,1.024,0.892,1.027,0.918,1.188,0.97,1.005,1.09,0.99,0.857,0.809,1.005,0.848,0.91,0.922 +NM_153035,0.926,1.096,1.152,0.895,0.985,1.291,0.796,0.839,1.048,0.925,0.96,0.94,1.003,0.996,0.925,1.064,0.886,0.969,1.078,0.988,0.817,1.031,0.979,1.127,0.91,0.94,1.04,0.973,0.907,1.108,1.137,1.115,1.139,1.053,0.762,0.929,0.95,0.917,1.261,0.821,1.019,1.058,0.758,0.935,1.103,0.99,0.921,0.98,0.934,1.041,0.958,0.923,0.919,1.294 +NM_153038,1.008,1.066,0.991,1.058,1.036,0.96,1.005,1.16,0.958,0.959,1.034,1.08,0.989,0.811,0.858,1.008,0.936,0.936,0.887,0.958,1.083,0.922,1.124,0.959,1.008,1.025,0.898,1.024,0.598,1.145,1.085,0.99,1.075,1.009,0.941,1.11,1.072,1.111,0.945,0.942,0.975,0.978,1.188,0.898,0.911,1.026,1.13,0.925,0.919,1.115,1.1,0.932,0.968,1.05 +NM_153040,1.012,0.813,1.002,1.112,0.929,0.99,0.874,1.092,1.019,0.823,0.987,0.987,0.984,1.029,1.001,0.924,0.952,1.161,0.957,1.012,0.983,1.032,0.949,0.924,1.011,1.032,0.842,1.213,1.015,1.136,0.898,1.04,0.999,0.876,0.956,0.989,1.003,0.886,0.927,0.943,1.069,1.007,0.835,1.07,0.991,0.894,0.87,0.865,1.104,0.986,0.906,1.046,0.978,1.14 +NM_153041,1.002,0.965,0.893,1.219,0.937,1.165,1.121,1.091,0.973,1.062,0.962,1.06,0.998,1.217,1.201,1.081,0.998,1.176,0.998,1.033,0.956,1.024,1.083,1.018,1.015,1.018,0.947,0.961,1.184,1.127,0.991,0.973,0.992,1.03,0.951,1.067,0.943,0.987,0.938,0.99,1.186,1.014,0.932,1.006,0.946,0.963,0.914,1.075,0.982,0.963,0.953,0.911,1.12,0.874 +NM_153043,1.236,0.831,1.276,0.985,1.071,0.711,0.955,1.533,1.465,1.476,0.732,1.001,1.288,0.949,1.08,1.067,1.336,1.204,1.571,0.854,1.359,1.612,0.847,1.602,0.734,1.411,1.441,1.253,0.86,0.956,1.657,0.994,1.514,1.008,1.172,0.752,0.808,1.274,0.825,1.405,1.729,0.869,0.804,0.806,1.293,0.93,1.234,1.766,0.919,1.518,0.82,0.867,1.203,1.018 +NM_153044,0.966,0.975,1.065,0.901,1.038,0.844,1.012,0.966,0.855,1.034,1.022,0.87,0.922,0.94,0.998,1.2,0.944,1.096,1.071,1.071,0.904,0.775,1.11,0.972,0.998,0.896,0.879,1.063,1.13,0.954,1.01,1.079,1.234,1.247,0.95,1.032,1.048,0.938,1.027,1.148,1.188,1.126,0.926,0.993,0.975,0.942,0.99,0.924,0.994,0.998,1.115,0.997,1.054,1.166 +NM_153046,0.927,0.965,0.9,1.04,0.928,0.932,0.774,0.859,0.89,0.963,0.904,0.959,0.922,1.079,1.163,0.999,0.881,0.999,0.916,1.016,0.942,0.98,0.871,1.019,1.133,1.116,1.15,0.849,1.484,1.058,0.994,0.835,1.174,1.065,0.984,1.121,1.149,0.984,1.014,1.058,0.991,0.987,1.078,1.038,1.204,0.798,0.938,0.993,0.927,1.028,0.883,0.911,0.999,1.021 +NM_153047,0.909,1.071,1.239,0.832,0.945,0.972,1.155,0.961,0.813,0.954,0.965,1.117,0.983,0.808,0.889,0.987,1.006,1.102,1.008,1.027,0.898,1.004,1.046,0.973,0.973,0.995,0.987,1.01,0.975,1.091,0.995,1.05,1.105,1.108,1.041,0.732,0.854,1.173,1.082,0.928,0.948,1.003,1.01,1.025,0.913,0.988,0.944,1.0,0.935,1.11,0.9,1.0,0.959,1.146 +NM_153048,0.425,1.603,1.035,0.591,0.474,1.175,0.892,0.44,0.55,0.572,1.16,0.434,0.578,0.479,0.791,1.64,0.551,0.591,0.522,1.042,0.547,0.492,1.323,0.592,0.909,0.398,0.864,0.575,0.358,1.869,0.478,2.352,3.033,2.186,0.361,0.695,1.256,0.478,1.336,2.802,0.705,1.915,0.798,1.639,0.616,1.019,0.874,0.414,0.54,0.433,1.204,1.06,0.982,2.444 +NM_153051,0.841,0.895,1.433,0.759,1.207,1.064,0.668,0.854,1.757,0.9,0.694,0.684,0.727,1.012,1.181,1.065,1.312,1.028,1.759,0.783,0.723,1.235,0.763,1.222,0.506,1.006,1.263,1.157,0.473,1.183,1.336,1.026,1.306,1.319,1.366,0.472,0.835,1.137,0.974,0.681,1.216,1.043,0.604,0.623,1.012,0.72,0.913,1.142,0.688,1.125,0.751,0.624,1.047,1.762 +NM_153184,1.084,0.914,1.06,1.081,1.101,0.984,1.094,1.092,0.916,1.057,1.019,0.94,1.044,1.113,0.962,0.988,1.126,0.917,0.992,0.978,1.182,0.863,0.849,1.043,0.948,1.153,0.926,1.063,1.712,0.934,1.011,1.091,1.01,1.103,1.0,0.791,0.98,1.137,1.059,1.106,1.0,1.027,0.932,1.065,0.913,1.051,1.017,1.01,0.905,0.974,1.02,1.096,1.004,0.921 +NM_153186,0.976,0.976,0.991,0.934,0.986,1.056,1.005,0.986,0.99,0.919,1.201,1.099,1.057,1.047,0.941,1.013,1.017,0.93,1.011,0.931,0.943,0.774,0.981,0.972,1.092,1.095,1.14,0.967,1.037,1.013,0.866,0.877,0.876,0.923,1.195,0.913,0.975,1.006,0.979,1.03,0.887,0.994,1.164,0.984,0.989,1.155,1.027,1.055,0.893,0.942,1.097,1.031,1.119,0.917 +NM_153187,1.02,1.029,0.862,1.054,0.927,1.025,0.924,1.049,1.041,0.977,0.936,1.127,0.87,0.842,0.925,0.939,0.938,0.959,1.027,1.057,0.922,1.0,1.134,0.966,0.976,1.093,0.837,0.986,0.955,1.017,0.989,0.958,0.917,0.914,1.054,1.032,0.977,1.056,1.128,0.936,1.187,1.095,0.922,1.043,1.061,0.99,1.088,0.967,0.948,0.98,1.022,0.999,0.949,1.069 +NM_153188,1.81,2.183,2.1479999999999997,1.918,1.8499999999999999,2.467,1.901,1.525,1.9209999999999998,1.9549999999999998,1.671,1.692,1.6789999999999998,1.411,1.6099999999999999,2.1399999999999997,1.609,2.081,1.804,1.9449999999999998,1.5859999999999999,1.873,2.4370000000000003,2.1149999999999998,1.9849999999999999,1.7599999999999998,2.183,1.6320000000000001,2.099,2.0229999999999997,1.804,2.0869999999999997,2.224,2.324,1.649,1.8609999999999998,1.845,1.9060000000000001,3.178,1.951,1.8969999999999998,2.8099999999999996,1.925,2.489,1.9249999999999998,2.028,2.0940000000000003,1.8439999999999999,2.21,1.9860000000000002,1.972,1.726,1.752,2.102 +NM_153189,1.935,1.976,1.887,2.0629999999999997,1.9020000000000001,1.8439999999999999,1.998,1.8809999999999998,1.798,1.98,1.9100000000000001,2.339,2.0620000000000003,2.017,1.716,2.106,2.0789999999999997,2.1849999999999996,1.809,1.975,1.929,2.0300000000000002,1.78,1.952,1.992,2.007,2.161,2.078,1.55,2.031,1.931,1.925,1.901,2.0380000000000003,1.998,2.032,2.115,2.004,2.25,2.075,2.185,2.0759999999999996,1.822,2.115,2.029,2.165,2.257,1.963,2.153,2.1109999999999998,2.0460000000000003,1.871,1.992,1.866 +NM_153200,1.638,1.93,2.151,1.552,2.001,2.463,1.683,1.823,2.135,1.942,1.992,1.915,1.734,1.686,2.157,2.957,1.7639999999999998,1.8319999999999999,2.7590000000000003,2.154,1.722,2.041,2.076,2.177,1.516,2.141,1.809,2.0469999999999997,1.712,2.33,2.165,1.929,2.403,2.645,1.627,2.6310000000000002,2.0220000000000002,1.9969999999999999,2.064,1.411,1.998,2.2039999999999997,1.724,1.6680000000000001,1.941,2.069,1.988,1.9740000000000002,1.956,1.91,2.0229999999999997,1.5550000000000002,2.113,2.147 +NM_153201,0.835,0.961,0.979,0.843,0.807,0.625,0.482,0.371,1.108,1.486,0.624,0.925,0.587,0.495,0.713,1.278,0.92,0.857,1.28,0.971,0.541,0.731,1.214,1.196,0.514,0.988,1.343,0.658,0.206,0.695,0.979,1.353,1.922,1.0,0.234,1.625,1.36,0.739,2.033,0.808,0.836,1.309,0.757,1.084,1.451,1.384,1.013,0.644,1.317,1.072,1.27,1.0,0.934,1.935 +NM_153202,0.917,0.888,0.964,1.22,1.022,1.067,1.148,0.934,1.096,1.102,1.098,1.024,1.153,1.029,0.964,1.004,0.918,1.185,0.972,1.057,1.117,0.907,1.121,0.891,1.047,1.078,0.988,0.939,1.019,1.062,0.974,1.018,1.029,1.118,1.14,1.002,0.957,0.897,1.075,0.895,0.992,1.0,0.958,0.978,1.052,0.959,0.895,0.991,1.001,0.987,1.132,0.898,1.321,0.961 +NM_153205,1.0,1.029,1.0,0.852,1.168,1.048,1.043,0.924,1.058,0.953,0.975,0.942,0.947,1.02,0.937,1.061,1.051,1.024,0.918,0.848,1.053,0.949,0.987,0.899,0.954,1.007,1.039,1.087,1.886,1.083,1.002,1.155,1.009,1.04,1.035,1.046,1.024,0.989,0.951,0.965,0.994,0.964,0.837,0.93,0.995,0.987,1.029,0.994,1.014,0.949,0.917,0.92,0.891,1.076 +NM_153206,0.696,1.154,1.543,1.215,1.021,1.039,1.223,0.567,1.123,0.779,0.704,0.839,0.912,0.467,0.843,0.58,1.535,0.922,0.743,0.897,0.781,0.764,0.884,1.161,0.709,0.792,2.184,0.97,0.452,2.368,0.725,1.071,0.651,1.142,0.482,0.689,1.124,0.806,1.619,3.974,1.786,1.327,0.569,0.696,1.342,0.908,0.779,0.634,0.66,0.868,0.67,1.411,1.505,1.485 +NM_153207,0.97,1.0,1.348,0.797,1.211,0.908,0.88,0.767,1.39,1.269,0.89,1.191,0.979,1.005,0.919,1.112,1.012,1.061,1.121,0.941,0.835,1.175,0.952,1.179,0.714,1.028,1.843,1.13,0.668,1.079,1.016,0.851,1.689,1.056,0.613,0.795,0.867,0.995,1.104,0.893,1.364,1.03,0.723,0.908,1.382,0.869,1.066,0.849,1.056,1.147,0.89,1.058,1.168,1.296 +NM_153208,0.524,1.466,0.75,0.74,0.599,1.469,1.049,0.475,0.551,0.624,1.486,0.641,0.492,0.554,0.776,1.276,0.788,0.983,0.581,1.381,0.548,0.641,1.287,0.611,0.822,0.589,0.709,0.608,0.629,1.17,0.511,2.352,2.405,1.84,0.457,0.886,1.082,0.716,1.537,0.786,0.694,1.212,0.7,1.207,0.533,1.1,0.748,0.564,0.943,0.656,1.013,1.269,0.623,1.228 +NM_153211,0.945,1.477,1.469,0.917,1.103,0.718,0.673,0.801,1.175,0.948,0.861,1.122,0.848,0.924,0.856,1.002,1.03,1.066,1.221,0.95,0.827,0.928,0.879,1.066,0.693,1.054,1.499,1.026,0.56,0.993,1.014,1.078,1.026,1.069,0.7,0.837,0.826,1.084,1.151,1.136,1.202,0.998,0.874,1.589,1.04,0.764,0.919,0.958,0.845,1.062,0.915,0.887,1.198,1.358 +NM_153212,0.955,0.945,1.022,0.884,0.968,1.028,0.803,1.02,1.018,1.163,1.072,0.915,0.907,0.845,0.943,1.077,1.008,0.921,1.074,0.978,0.993,0.972,1.045,0.999,0.845,0.997,0.91,0.968,0.899,0.888,0.985,0.869,1.445,0.944,0.909,1.107,1.002,0.858,1.346,1.16,0.936,0.892,0.901,1.486,1.105,1.205,1.297,0.968,0.924,1.14,0.985,1.134,1.09,0.934 +NM_153213,0.892,0.869,1.955,0.821,1.139,0.763,0.701,0.758,1.397,1.176,0.706,1.115,0.987,1.027,0.98,0.98,1.451,0.972,1.472,0.723,1.004,1.227,0.881,1.558,0.686,1.405,2.133,1.172,0.637,0.987,0.97,1.092,1.098,0.83,0.915,1.107,0.728,1.284,0.853,1.037,1.448,0.768,0.645,1.355,1.168,0.754,1.266,1.027,0.875,1.327,0.715,1.02,1.452,1.331 +NM_153214,0.977,1.053,1.002,0.997,1.096,1.18,1.027,0.862,0.972,1.064,1.041,1.102,0.933,1.087,0.999,1.071,1.151,0.974,0.902,0.899,0.879,0.824,0.908,1.038,1.008,1.057,0.913,0.946,0.74,1.127,0.935,1.333,0.842,1.009,1.002,1.003,0.962,1.096,1.121,0.959,0.896,1.037,0.988,1.128,1.038,1.022,0.932,1.024,1.002,0.925,1.015,0.973,0.945,1.072 +NM_153215,1.178,0.976,1.013,0.967,1.001,0.999,0.883,0.923,0.924,1.044,1.044,1.008,1.1,1.023,0.856,0.998,0.985,1.014,0.996,1.078,1.097,1.094,1.017,0.963,1.07,0.917,1.007,1.025,0.873,1.065,1.038,1.119,0.947,1.018,1.065,1.207,1.012,0.865,0.878,1.028,0.966,0.973,1.101,0.96,1.059,1.043,0.979,0.954,0.954,0.918,0.919,0.946,0.982,0.944 +NM_153216,0.897,0.959,1.068,0.909,1.106,1.041,0.93,0.996,0.84,1.09,1.154,1.038,1.018,1.169,1.047,0.963,1.086,0.819,1.174,0.976,0.961,0.999,0.916,0.985,0.864,1.094,1.074,1.102,0.893,0.987,0.993,0.991,0.793,0.902,0.995,1.045,1.027,1.054,1.027,0.961,1.005,0.852,1.071,1.129,1.021,0.91,1.026,0.997,1.073,1.113,1.004,1.027,1.141,0.945 +NM_153217,0.939,0.949,0.968,1.006,0.879,0.916,1.032,1.003,1.032,0.975,0.999,0.982,0.972,1.005,1.073,1.264,0.896,1.191,1.124,0.962,1.068,1.016,1.035,0.986,0.868,1.048,0.981,0.996,1.258,1.052,0.927,0.985,1.059,1.146,1.129,1.0,1.0,0.975,1.011,0.995,0.901,1.007,0.915,1.074,0.961,1.142,1.156,1.155,1.042,0.985,0.981,0.973,1.046,0.949 +NM_153219,0.634,1.239,1.259,0.667,0.836,1.435,0.791,0.774,0.867,0.721,0.926,1.008,0.889,0.632,0.949,1.4,1.002,1.068,1.195,1.559,0.438,0.77,1.588,1.032,0.716,0.948,0.906,1.048,0.689,1.057,0.742,0.727,1.357,1.798,0.656,1.065,0.834,0.886,1.465,0.96,0.975,1.089,0.667,1.291,0.87,0.938,1.167,1.229,0.804,0.973,0.864,0.565,0.758,0.965 +NM_153221,1.084,1.067,0.936,0.923,1.06,1.024,1.146,0.926,1.012,0.787,0.959,1.019,0.913,0.947,0.895,1.172,0.973,1.217,0.913,1.027,1.179,0.943,1.111,0.965,0.999,1.114,0.86,0.86,0.74,1.118,0.923,1.054,0.862,0.977,1.014,1.022,1.097,0.889,0.981,1.101,1.118,0.946,1.089,1.174,1.133,1.132,1.022,1.018,0.955,1.149,1.0,0.841,0.764,0.996 +NM_153223,0.958,0.962,0.881,0.993,1.018,1.017,0.987,0.928,0.907,1.403,0.944,1.11,0.92,0.902,0.788,0.938,1.171,0.801,0.992,1.163,1.143,1.191,1.086,1.099,0.988,1.013,0.912,0.974,0.704,0.969,1.067,0.89,1.07,0.906,1.131,1.222,1.003,0.829,1.057,1.097,1.039,0.925,0.947,1.25,1.04,1.051,1.078,0.912,0.997,0.997,1.25,1.039,0.985,1.188 +NM_153224,0.999,1.019,0.967,0.984,0.975,0.959,0.88,1.125,0.89,0.995,0.957,1.059,1.157,1.144,1.033,1.072,1.071,1.012,0.979,1.092,0.989,1.05,0.959,0.877,1.003,0.996,0.972,0.944,0.705,1.057,0.949,1.137,0.99,1.148,0.99,1.053,1.172,0.986,1.101,1.064,0.792,0.991,0.961,0.995,1.168,1.005,1.006,0.984,1.101,0.952,1.071,0.885,0.875,1.042 +NM_153225,0.994,2.044,0.879,0.947,0.759,1.455,1.425,0.873,0.959,0.854,2.571,1.01,1.41,0.734,1.194,1.261,0.856,0.927,0.863,1.074,0.882,0.877,0.88,0.849,2.873,0.828,0.729,0.919,0.835,1.422,0.84,1.263,2.132,1.762,0.866,1.605,1.291,1.105,0.898,2.42,1.455,1.283,1.447,1.006,0.875,1.086,1.111,0.704,0.833,0.938,1.42,1.24,1.303,1.148 +NM_153226,0.86,1.147,0.802,1.156,0.707,1.241,0.876,0.783,0.851,0.751,1.713,0.787,0.814,0.699,1.424,6.342,0.732,0.829,0.835,1.303,0.778,0.706,1.405,0.73,0.957,0.728,1.027,0.794,0.854,1.616,0.826,0.839,1.05,1.07,0.717,1.726,6.162,0.789,1.42,0.905,0.814,1.892,2.883,0.856,0.762,2.153,1.223,0.746,6.303,0.797,1.319,0.844,0.854,1.586 +NM_153227,1.035,1.223,1.097,1.012,1.057,0.995,1.234,0.996,0.863,1.003,0.98,0.975,1.029,0.955,0.955,0.888,0.941,1.049,1.002,1.089,1.113,0.916,1.048,1.057,1.053,0.939,1.041,0.936,1.165,1.177,1.191,0.969,0.862,0.972,1.166,0.906,1.01,1.096,0.996,1.109,1.023,0.823,0.982,0.976,1.126,0.929,0.874,0.882,0.863,1.005,0.988,1.053,1.096,0.96 +NM_153228,1.076,0.972,0.952,1.029,1.147,1.113,0.889,1.181,1.247,0.924,1.169,0.943,0.957,0.859,0.919,0.885,0.901,1.0,0.754,1.056,1.072,1.171,1.112,1.109,0.884,0.973,0.974,1.115,1.142,1.033,1.031,0.868,1.013,1.028,1.162,1.023,0.857,1.0,0.93,0.971,0.941,1.005,1.058,0.842,0.878,0.879,1.08,0.959,0.873,0.951,1.09,1.026,0.755,0.95 +NM_153229,0.955,0.988,0.798,1.155,0.793,1.121,1.124,1.087,0.822,0.831,1.057,0.874,0.926,0.805,1.012,1.199,0.817,1.0,0.824,1.082,0.68,0.82,0.918,0.863,1.102,0.855,0.823,0.77,0.908,1.34,0.874,1.269,0.9,1.256,0.715,0.917,1.227,0.834,1.253,0.96,0.922,0.983,1.218,1.146,0.93,1.033,0.881,0.885,0.98,0.913,1.1,1.097,0.791,1.058 +NM_153230,1.134,1.016,0.949,0.847,1.094,0.925,0.84,0.879,0.985,0.962,1.041,1.163,0.988,1.088,1.242,1.143,0.991,0.944,1.063,1.125,0.998,1.002,0.978,1.028,0.871,1.133,1.035,0.897,0.715,0.999,0.997,1.045,0.974,1.109,0.946,0.944,0.939,0.946,0.978,1.021,0.909,0.924,0.847,1.091,1.074,0.985,1.027,1.038,0.946,0.919,0.968,1.062,0.986,0.99 +NM_153231,1.009,1.022,0.933,1.01,0.916,1.017,1.039,0.938,1.006,0.803,1.011,0.837,0.893,1.148,1.057,1.138,0.924,0.934,0.841,1.07,0.935,0.913,0.944,1.015,1.031,1.008,0.962,0.889,1.477,0.923,1.023,0.907,1.503,1.02,0.817,1.143,0.986,0.973,1.014,0.952,1.003,0.992,0.987,0.947,0.872,0.966,0.945,1.057,0.849,0.947,1.01,0.858,0.994,0.862 +NM_153232,0.873,1.196,1.298,0.801,1.206,0.922,0.728,0.647,1.05,1.064,1.132,0.818,0.857,0.905,1.114,1.549,0.904,0.903,1.66,0.936,0.787,1.049,1.342,0.982,0.688,0.892,1.22,1.063,1.201,1.011,1.097,0.987,3.259,1.225,0.756,0.704,1.258,1.167,1.112,0.674,1.401,0.982,0.748,0.809,1.098,0.942,0.918,0.932,0.748,1.178,0.819,0.909,1.053,1.01 +NM_153233,0.812,1.76,0.808,0.963,0.756,1.715,0.925,0.845,0.983,0.718,1.476,0.682,0.73,0.781,1.01,0.862,0.73,0.917,0.902,1.679,0.717,0.757,2.205,0.736,1.039,0.943,0.689,0.766,0.748,2.074,0.799,1.066,4.092,1.325,0.786,1.208,1.2,0.72,1.317,1.662,0.895,1.268,0.709,1.626,0.713,1.293,1.065,0.717,0.944,0.73,1.219,1.077,0.726,0.984 +NM_153234,1.05,0.889,0.954,0.814,1.036,1.116,0.829,1.115,0.907,0.815,0.967,0.917,0.99,0.922,0.865,0.852,0.992,0.906,1.0,0.924,0.951,1.176,1.396,1.013,0.971,1.02,1.224,1.108,1.192,1.037,1.004,0.846,1.023,1.011,0.983,0.975,0.971,1.414,0.865,1.121,1.025,0.907,1.233,1.053,0.808,1.004,1.061,1.077,1.043,0.998,1.054,1.089,0.972,1.128 +NM_153236,0.733,1.399,1.301,0.843,0.778,1.199,1.125,0.666,0.948,0.839,1.029,0.671,0.927,0.666,0.854,1.178,0.799,0.882,0.927,0.955,0.823,0.716,1.427,0.883,1.086,0.666,1.074,0.958,0.637,1.58,0.761,1.392,1.171,2.075,0.677,0.803,0.995,0.816,1.538,0.762,1.045,2.362,0.787,0.916,0.895,0.838,0.983,0.795,0.991,0.867,1.134,1.098,1.113,1.717 +NM_153237,1.044,0.957,1.056,1.015,1.157,0.998,0.998,0.971,0.97,0.928,0.886,1.087,0.916,0.861,1.144,1.001,0.99,0.831,1.115,1.024,1.013,0.957,0.879,0.941,0.97,1.027,1.09,0.915,0.977,1.081,1.134,0.999,1.035,0.913,0.89,0.889,1.11,0.956,1.093,1.044,0.939,1.063,0.789,0.974,0.976,0.921,1.081,1.011,0.945,0.875,1.048,0.964,0.952,0.886 +NM_153239,1.073,0.927,1.004,0.953,0.999,1.007,1.005,1.096,1.064,0.887,0.975,0.864,0.9,0.951,0.983,0.831,1.104,1.041,1.019,1.011,1.113,1.0,0.884,1.005,0.87,0.975,0.911,0.953,0.881,1.088,1.049,0.953,1.04,1.013,0.846,0.959,0.97,0.985,1.077,1.109,0.943,1.057,0.998,0.946,1.05,1.075,1.012,0.934,1.073,0.842,1.01,0.93,0.84,1.004 +NM_153240,1.126,0.945,1.026,1.054,0.99,1.008,1.183,1.008,1.166,0.889,1.129,1.063,0.918,0.997,1.086,1.093,1.037,0.911,0.979,0.974,1.089,0.99,0.937,1.111,0.953,1.011,1.01,0.973,0.835,0.913,1.065,1.419,0.992,0.992,0.96,1.033,1.0,1.023,1.027,1.048,1.037,0.956,0.955,0.872,1.002,0.883,0.884,0.933,0.949,0.941,0.915,0.9,1.082,1.324 +NM_153241,1.058,1.024,1.214,1.155,1.045,1.064,1.017,0.994,0.937,1.071,1.056,1.016,1.074,1.106,0.743,1.136,0.98,0.979,0.941,0.719,1.002,0.832,1.004,1.071,1.033,1.005,1.031,0.861,1.729,0.993,0.986,1.116,0.914,0.963,1.06,0.932,0.905,1.196,1.076,0.996,0.967,0.98,0.918,0.908,1.009,0.911,0.977,1.035,1.119,1.034,0.985,1.06,1.115,0.85 +NM_153244,1.038,0.843,1.006,1.066,0.93,0.918,0.805,1.006,0.869,0.936,0.976,1.056,1.133,0.966,0.975,0.986,1.016,1.093,1.077,1.086,1.12,0.923,0.974,0.962,1.065,1.085,1.09,0.991,0.704,1.079,1.01,1.059,0.998,1.02,0.957,0.906,1.101,1.051,0.943,1.195,1.014,0.856,1.021,0.9,1.043,0.968,1.053,0.969,1.069,0.896,1.123,1.028,0.977,0.9 +NM_153246,0.943,0.932,0.946,0.812,0.887,1.265,0.862,0.798,1.013,0.844,1.07,0.877,0.931,1.03,1.003,1.467,0.933,0.967,1.042,0.959,1.084,0.877,1.018,0.914,0.933,0.977,0.917,0.906,0.538,1.079,1.019,1.295,1.34,0.965,0.896,1.98,1.051,0.928,1.093,2.588,0.842,0.904,0.798,1.518,1.038,1.129,1.355,0.995,0.978,1.125,1.258,0.987,0.842,1.001 +NM_153251,0.599,1.132,1.149,0.669,1.447,1.027,0.621,0.673,1.401,0.901,1.503,0.612,0.668,0.79,1.043,1.649,0.592,1.069,1.553,1.024,0.58,0.484,1.013,0.918,0.499,0.735,1.114,1.471,0.368,1.732,1.177,0.966,1.003,1.679,0.647,1.207,1.18,0.788,0.799,1.125,1.271,0.949,0.892,0.598,0.86,1.193,1.158,0.662,0.871,0.75,0.993,0.696,0.862,1.299 +NM_153252,0.875,0.939,1.129,0.907,0.971,1.175,0.695,1.129,1.222,1.002,0.978,1.219,0.875,0.993,0.848,1.023,0.998,1.036,1.117,1.197,0.842,1.242,1.132,1.051,0.843,0.8,1.276,1.192,0.643,1.07,1.039,1.023,1.218,1.069,0.866,0.79,0.881,1.024,0.983,1.144,1.165,0.977,0.798,1.045,0.867,1.079,1.166,0.697,1.004,0.781,0.978,0.958,0.882,0.962 +NM_153253,1.114,0.864,0.975,1.029,1.034,0.965,0.879,1.165,1.103,0.976,1.046,1.01,1.039,1.266,0.848,1.144,1.068,0.824,0.94,0.916,0.872,1.019,1.022,1.005,0.919,0.94,0.889,1.01,1.002,1.017,0.935,0.978,0.905,0.862,0.905,1.138,0.984,1.124,1.198,0.973,0.976,0.877,0.762,1.047,1.147,1.105,0.974,1.059,0.931,1.211,1.043,0.996,0.902,0.788 +NM_153254,1.201,1.017,0.974,0.956,0.971,1.013,0.963,1.103,1.058,1.028,0.897,0.883,1.012,1.212,0.938,1.036,0.997,0.936,1.024,1.013,1.133,0.907,0.891,1.126,0.878,0.942,0.919,1.066,1.541,1.145,0.88,0.878,1.003,0.989,1.064,0.961,1.173,0.972,0.944,1.066,0.998,0.809,1.057,1.1,0.907,0.873,0.899,1.008,0.947,1.023,1.015,0.864,1.025,1.145 +NM_153255,1.062,1.037,1.041,0.999,1.001,0.984,1.16,0.909,0.989,0.963,1.227,1.166,1.008,1.016,0.874,1.008,1.025,1.076,0.964,1.223,0.973,0.868,1.042,1.087,0.948,0.979,0.96,1.087,1.007,1.041,0.974,0.996,0.957,1.017,1.05,0.926,1.155,0.995,0.896,1.006,1.155,0.992,0.97,0.995,1.04,1.044,0.978,1.035,0.967,1.112,0.856,1.028,0.89,1.123 +NM_153256,0.99,1.052,1.126,0.935,0.879,1.051,0.993,0.896,1.027,1.025,0.903,0.908,0.887,1.022,0.825,0.979,0.935,1.025,0.921,1.109,0.749,0.927,0.957,0.918,1.051,0.976,1.094,1.077,0.835,1.235,0.965,1.396,0.989,1.323,0.864,1.034,0.881,0.942,1.121,0.976,1.051,0.974,0.918,1.384,1.054,0.859,1.066,0.925,0.904,1.007,0.934,0.923,1.195,1.189 +NM_153257,1.049,1.083,1.035,1.077,1.128,0.988,0.798,0.873,1.108,1.013,0.894,1.085,0.876,1.037,1.041,1.041,1.011,0.983,0.965,1.035,0.978,1.011,0.974,0.962,1.032,0.924,1.017,1.022,0.863,0.951,1.016,0.988,1.304,0.899,1.058,0.961,0.968,1.081,0.894,0.784,0.985,1.068,0.921,0.956,0.925,1.036,0.986,1.022,1.025,0.796,0.942,1.051,1.039,0.978 +NM_153260,0.783,1.034,1.103,0.805,0.844,1.209,1.039,0.906,0.959,1.034,0.963,0.797,0.934,0.895,1.041,1.275,1.035,1.02,1.114,1.226,0.876,0.984,1.509,1.103,0.79,0.777,1.347,0.93,0.776,0.884,0.957,1.223,1.625,1.197,0.716,0.965,0.93,0.978,1.213,0.932,1.226,1.124,0.804,1.002,0.997,0.872,0.999,0.944,0.931,0.864,1.048,0.769,0.862,1.963 +NM_153261,0.813,0.875,1.405,0.888,1.149,1.19,0.871,0.953,1.686,0.85,1.081,1.036,0.936,0.971,1.265,1.433,0.982,0.954,1.336,1.023,0.725,0.725,0.94,1.147,0.608,0.793,1.224,1.24,0.541,1.16,1.289,1.331,1.585,1.445,0.66,0.603,1.074,0.983,0.932,0.747,1.261,0.938,0.694,0.676,1.339,0.969,1.084,0.891,0.959,1.154,0.975,0.959,0.97,3.037 +NM_153262,1.067,1.021,1.062,0.976,1.09,0.829,0.878,1.376,1.128,0.854,0.934,0.969,0.74,1.399,0.804,0.918,0.925,1.115,1.103,1.018,1.23,1.21,0.996,1.047,1.049,0.996,0.961,0.998,0.687,1.115,1.12,0.777,0.872,0.956,1.14,1.023,0.858,1.046,1.067,1.0,1.005,1.002,0.987,1.128,0.809,1.016,1.024,0.976,1.119,1.069,1.033,0.951,0.913,1.001 +NM_153264,0.917,1.013,1.029,1.111,0.949,1.001,0.958,1.07,0.981,0.929,0.968,1.043,0.923,1.091,0.857,1.023,0.876,0.975,1.033,0.927,0.999,0.812,0.967,1.006,1.058,1.017,0.931,0.899,1.298,1.244,0.796,1.029,0.934,1.552,1.142,0.933,1.015,1.15,1.011,0.93,1.068,0.98,0.96,0.905,1.036,0.919,1.018,0.854,0.894,0.997,0.976,1.072,0.926,0.952 +NM_153265,2.858,0.498,2.142,0.993,1.578,0.661,0.357,2.587,1.975,1.573,0.54,1.808,2.413,2.448,1.596,1.391,1.581,1.464,4.539,0.484,1.428,1.492,0.576,2.513,0.542,2.943,1.743,1.724,0.229,0.752,3.663,1.463,1.927,0.918,2.292,0.58,0.484,1.891,1.241,1.161,2.176,0.605,0.303,1.044,3.012,0.43,1.007,2.805,0.363,2.911,0.674,0.509,2.119,0.879 +NM_153266,0.892,1.666,0.914,1.178,0.871,1.188,1.448,1.005,0.863,0.843,0.903,0.945,0.854,1.232,0.985,1.003,0.917,1.146,1.067,1.029,0.951,0.804,1.25,0.904,2.746,0.997,0.904,0.933,1.989,1.636,0.966,2.101,1.485,1.649,0.953,2.894,1.035,0.908,2.453,0.966,0.947,0.926,1.191,1.037,0.974,0.98,0.995,0.955,0.895,0.925,0.95,0.994,0.948,1.537 +NM_153267,0.893,1.51,1.444,1.002,1.307,1.389,1.084,0.941,0.925,0.8,1.212,1.017,0.854,0.838,1.046,1.356,0.734,0.795,0.988,1.233,0.868,1.033,1.69,0.869,1.496,0.903,0.858,1.37,0.6,2.267,0.847,0.844,1.253,2.94,0.764,0.627,1.099,2.881,0.829,0.687,1.211,2.518,0.88,0.7,0.772,1.133,0.657,2.169,0.695,0.797,1.705,0.86,0.702,0.92 +NM_153268,1.093,0.895,0.949,0.97,1.049,1.005,1.143,1.077,1.109,0.941,1.029,1.117,0.942,0.877,0.936,0.923,1.018,1.05,0.942,0.953,1.107,1.078,1.041,0.943,0.983,0.993,0.936,0.875,1.31,1.007,0.875,1.051,0.897,0.911,1.023,1.067,0.974,1.037,1.091,0.975,0.937,1.028,0.908,0.954,0.877,0.92,1.108,0.926,0.902,1.064,1.041,0.951,0.91,0.896 +NM_153269,0.993,1.077,0.983,1.057,1.204,0.982,0.952,1.067,0.935,1.051,0.974,0.951,0.969,1.022,1.139,1.108,0.99,1.089,0.93,0.901,0.916,0.842,1.198,0.983,0.969,1.022,1.228,1.018,0.845,1.087,0.992,1.097,1.301,1.075,0.899,1.171,1.075,0.882,1.007,0.964,0.926,0.95,0.945,0.969,1.113,1.049,0.976,0.928,1.062,1.05,1.03,0.874,1.016,1.056 +NM_153270,1.176,1.063,1.035,1.002,1.215,1.181,0.981,0.958,0.816,0.925,0.995,1.115,1.065,1.356,0.879,1.189,1.167,0.998,0.946,1.006,1.138,0.981,1.152,1.01,0.883,0.921,1.109,1.027,1.162,1.008,0.925,1.025,0.984,0.89,1.065,1.089,0.968,0.904,0.965,1.108,1.017,0.94,1.174,1.014,1.058,1.059,0.99,1.099,1.102,1.028,0.949,0.924,0.9,1.176 +NM_153271,1.109,0.878,1.769,0.766,0.959,1.384,0.678,1.299,1.387,0.856,0.777,0.894,0.984,1.016,0.999,1.071,1.491,1.001,2.028,0.855,0.75,1.218,0.741,1.14,0.602,1.437,1.729,0.867,0.785,1.048,1.275,1.022,0.918,1.333,1.815,0.589,0.821,1.108,1.39,0.65,1.057,1.06,0.594,0.612,1.164,0.698,1.051,1.701,0.677,1.589,0.891,0.753,1.185,0.939 +NM_153273,0.818,0.963,1.175,0.898,1.145,0.916,1.011,1.025,1.152,1.093,0.949,1.057,0.962,0.832,1.012,0.918,0.969,1.096,0.978,0.947,0.867,0.999,0.943,1.021,0.818,0.92,1.11,1.121,0.515,0.958,1.111,1.184,0.874,0.9,1.353,1.058,0.856,0.939,1.072,1.062,1.136,1.083,0.841,1.04,1.066,0.952,1.131,0.938,0.867,0.891,0.982,1.045,1.026,1.563 +NM_153277,1.066,0.969,0.88,1.015,1.026,1.092,0.893,0.877,1.026,0.937,1.014,1.053,1.112,0.852,0.969,0.966,1.288,1.028,0.913,0.923,1.016,0.925,0.951,0.936,1.079,0.996,1.079,1.069,0.758,0.869,0.966,0.975,0.793,0.954,1.044,1.039,0.905,1.014,1.098,1.003,0.998,1.082,0.982,0.946,0.979,0.932,0.979,1.064,1.017,0.949,1.055,1.011,0.878,0.999 +NM_153280,1.971,1.766,2.08,2.093,2.053,2.151,1.445,1.517,2.091,2.075,1.703,1.7069999999999999,1.6219999999999999,1.641,1.835,2.571,1.931,1.8490000000000002,3.2219999999999995,1.708,2.05,2.035,1.94,2.017,1.633,2.303,2.177,1.699,1.643,1.891,1.942,1.931,3.46,2.159,1.677,1.867,1.912,2.151,3.2960000000000003,1.709,1.8239999999999998,2.049,1.6829999999999998,1.8559999999999999,2.099,1.677,1.952,2.2,1.956,2.292,1.954,1.9500000000000002,2.316,1.958 +NM_153281,0.851,1.058,0.955,1.029,1.114,0.94,1.264,0.898,1.045,1.021,0.937,1.073,0.987,1.068,0.806,1.067,1.105,0.889,0.935,1.064,1.167,0.981,0.877,0.966,0.959,0.906,0.894,0.975,1.162,1.02,1.0,0.891,1.016,1.091,1.126,1.038,0.972,0.956,0.93,0.956,0.978,1.109,0.979,1.164,0.982,1.031,1.031,0.993,0.937,1.115,1.102,1.133,1.186,0.856 +NM_153286,0.262,3.523,0.268,1.999,0.275,4.316,2.512,0.206,0.339,0.457,4.15,0.218,0.204,0.193,1.167,3.98,0.19,2.352,0.294,3.652,0.209,0.255,2.583,0.3,1.6,0.33,0.252,0.344,1.239,7.002,0.193,1.347,0.209,4.118,0.153,0.313,3.217,0.219,4.787,0.253,0.323,3.237,3.622,0.672,0.351,3.354,0.698,0.222,1.077,0.275,4.574,0.568,0.244,0.356 +NM_153289,0.973,1.039,0.882,1.045,1.034,0.959,1.009,0.897,0.96,0.862,1.024,1.107,0.779,1.11,1.045,0.975,1.164,1.036,0.89,0.953,1.2,1.165,1.035,0.942,1.127,1.052,1.186,0.966,0.917,1.039,0.879,1.118,1.112,0.887,0.985,1.032,1.06,1.106,1.033,0.959,0.988,0.898,0.971,0.934,0.97,1.075,0.944,0.991,0.861,1.095,1.022,0.904,0.971,1.001 +NM_153290,0.662,1.441,0.847,0.766,0.913,1.402,1.197,0.665,0.902,0.747,1.162,0.776,0.734,0.709,0.751,1.299,0.919,0.927,0.932,1.349,0.859,0.653,1.6,0.855,0.862,0.733,1.285,0.759,0.923,1.688,0.918,1.602,1.263,1.648,0.691,0.843,1.216,0.787,1.76,1.19,0.802,1.882,0.89,0.756,0.8,1.221,1.028,0.705,1.631,0.716,1.053,0.897,0.796,2.026 +NM_153291,0.807,1.124,1.564,0.783,1.089,1.054,1.014,0.863,1.076,0.911,0.847,1.005,1.036,0.833,1.011,1.327,1.19,1.028,0.963,1.125,0.626,1.046,1.061,1.11,0.721,0.769,1.531,1.003,0.616,1.066,1.233,1.269,1.315,1.206,0.763,0.602,0.712,1.438,1.438,0.811,1.182,1.126,0.815,0.671,1.215,0.948,0.877,0.824,1.095,0.988,1.07,0.855,0.663,1.255 +NM_153292,0.909,1.214,0.937,1.535,0.828,1.016,0.659,0.748,0.821,0.869,0.956,0.83,0.932,0.875,2.042,1.73,2.601,0.782,0.966,1.938,0.877,0.887,1.709,0.858,0.749,0.845,1.544,0.806,1.053,0.924,0.819,0.864,1.915,0.876,0.866,1.385,3.167,0.915,1.329,1.609,0.901,1.521,1.624,1.06,1.23,2.591,1.485,0.84,25.41,1.495,2.425,1.005,2.508,5.412 +NM_153320,0.876,1.123,1.044,0.954,1.207,1.012,0.94,0.886,1.004,0.981,1.019,1.054,1.132,0.939,0.944,0.963,1.06,1.148,0.768,0.762,1.055,0.966,0.976,1.058,1.045,1.072,1.036,0.993,0.911,0.892,0.939,1.037,1.056,0.917,0.897,0.904,1.006,1.097,1.008,0.916,1.012,0.976,1.099,1.186,0.89,1.065,0.913,1.028,1.005,0.993,1.131,0.862,1.136,0.886 +NM_153321,1.245,1.024,0.895,1.22,0.971,1.08,0.894,0.994,0.869,0.983,1.11,1.011,0.958,0.986,0.998,1.107,1.077,1.158,1.058,1.286,1.044,1.068,0.956,1.004,1.081,0.912,1.142,0.968,0.932,0.921,0.883,1.018,1.019,1.036,1.041,1.073,1.019,1.034,0.874,0.943,0.954,0.978,0.942,1.023,1.168,0.879,0.982,1.058,0.965,0.978,0.88,0.978,0.996,1.033 +NM_153322,0.314,1.002,0.403,0.63,0.327,1.015,0.761,0.282,0.374,0.401,0.631,0.298,0.373,0.259,1.181,2.229,0.303,0.382,0.285,1.142,0.393,0.273,1.693,0.399,0.838,0.314,0.485,0.563,0.323,1.985,0.283,6.17,1.243,2.208,0.312,2.911,2.038,0.504,0.96,2.335,0.638,1.768,3.308,0.806,0.377,1.01,1.219,0.324,1.034,0.385,1.368,2.13,0.559,1.356 +NM_153324,0.928,0.887,1.101,0.998,0.825,0.992,0.914,0.985,0.867,1.059,0.923,0.965,0.999,0.948,0.799,0.985,1.076,1.12,0.944,0.82,1.032,1.011,0.866,0.965,1.043,1.063,0.894,0.948,1.393,1.075,0.958,1.045,1.173,0.882,1.031,0.949,0.983,0.916,1.051,1.086,0.811,1.141,1.089,1.082,0.93,1.0,0.861,1.022,0.854,1.044,0.879,0.954,1.161,0.822 +NM_153325,0.976,1.074,0.967,1.069,1.034,0.926,0.797,1.094,1.003,1.111,1.077,1.012,1.064,0.906,0.992,1.26,0.995,1.07,1.093,1.102,1.162,0.982,1.03,1.089,0.974,0.959,1.041,0.906,0.795,0.994,1.036,0.822,1.053,1.126,1.064,0.921,1.089,1.082,0.921,0.907,1.083,1.079,0.986,1.11,1.141,1.015,0.915,1.123,0.811,0.903,1.093,0.991,1.079,1.058 +NM_153326,0.524,1.218,1.419,0.758,1.176,1.546,0.813,0.523,0.926,1.405,1.134,0.988,0.657,0.428,0.782,1.69,0.912,1.433,1.262,1.683,0.453,0.875,1.428,0.989,0.656,0.847,0.976,1.037,0.528,1.744,0.784,0.922,0.899,1.397,0.116,1.307,1.665,0.961,1.101,0.395,1.005,1.148,0.835,0.769,1.025,1.756,1.017,0.67,0.995,0.594,1.196,0.983,0.745,0.938 +NM_153328,0.729,1.08,1.28,0.874,0.937,1.156,0.645,0.817,1.026,0.938,1.291,1.045,0.931,0.964,0.972,1.322,0.806,0.783,1.089,1.151,0.661,0.858,1.392,0.889,0.77,0.858,0.99,0.801,0.864,1.666,0.821,1.358,1.244,1.285,0.476,0.74,1.239,1.118,1.238,0.782,0.923,1.115,0.762,1.102,0.865,1.041,0.658,0.882,0.806,0.808,0.988,0.972,1.202,1.437 +NM_153329,0.963,1.006,1.127,0.89,0.925,0.946,0.962,0.795,0.965,1.001,0.847,0.749,0.853,1.054,0.933,1.146,1.043,1.07,1.267,0.806,1.018,0.886,1.265,0.975,0.898,0.971,1.048,0.728,1.167,0.98,0.93,0.855,1.473,0.978,0.656,1.093,0.98,1.031,1.563,1.044,0.908,1.045,1.004,1.192,1.017,0.701,0.904,0.974,0.977,1.052,1.042,0.941,1.01,1.095 +NM_153330,0.991,0.913,0.927,0.894,1.098,0.985,0.974,1.079,1.08,0.896,1.049,0.925,1.048,0.969,0.998,0.987,1.104,1.112,1.042,0.91,1.001,0.991,1.12,1.039,0.905,1.117,0.928,1.071,1.261,1.015,1.053,1.022,0.829,0.94,1.041,0.997,0.963,0.956,0.959,0.936,0.851,0.993,1.077,0.949,0.999,0.944,1.004,0.968,0.982,0.933,0.934,1.12,1.111,0.856 +NM_153331,1.195,0.953,0.952,0.896,0.85,1.001,0.596,0.776,1.385,1.127,0.999,0.999,0.984,1.264,1.106,1.03,1.001,0.687,1.193,0.842,0.858,1.208,0.991,1.286,0.727,1.04,1.207,1.451,0.64,1.003,1.292,1.021,1.155,1.124,0.546,0.872,0.879,0.893,1.048,0.957,1.17,1.088,1.023,0.788,0.979,0.914,0.859,0.917,0.85,0.92,0.92,0.766,1.182,1.142 +NM_153332,0.944,0.984,1.216,0.917,0.926,1.266,1.185,1.112,0.936,0.948,1.022,0.967,1.074,0.963,1.072,1.293,1.278,0.904,0.905,0.903,0.953,1.173,1.042,1.107,0.738,0.873,1.192,0.877,1.162,1.023,0.988,1.087,1.648,0.9,0.852,1.002,1.062,1.029,1.298,0.985,0.935,1.0,0.932,1.182,1.024,1.199,0.989,1.025,1.741,0.997,1.041,1.085,0.85,1.191 +NM_153333,0.593,1.459,1.098,0.803,0.956,1.436,0.739,0.805,1.051,0.883,1.4,1.215,0.847,0.745,0.721,1.075,0.775,1.154,1.123,1.252,0.408,0.945,1.238,0.97,0.675,0.734,1.307,1.001,0.514,1.771,0.971,1.712,1.728,1.614,0.294,1.376,1.203,0.891,0.653,0.501,0.926,1.419,0.228,0.656,0.896,1.022,1.144,0.659,0.481,0.627,1.066,0.993,0.856,1.095 +NM_153335,0.881,1.154,1.474,0.837,1.146,1.208,0.714,0.671,1.218,1.213,0.804,0.899,0.713,0.888,1.014,1.062,1.296,0.994,1.073,1.036,0.726,0.892,0.912,1.148,0.715,0.895,1.396,0.997,0.6,1.015,0.971,1.599,0.894,1.106,0.637,0.948,0.824,0.991,0.979,0.859,1.209,0.856,0.789,1.168,1.132,0.847,0.948,0.887,0.82,0.881,1.012,0.88,1.102,1.041 +NM_153337,0.982,0.917,1.148,1.117,1.141,1.215,1.032,1.072,1.032,1.083,0.949,0.969,0.953,1.175,0.953,0.861,1.237,0.903,1.041,0.946,1.013,1.055,1.235,0.953,0.977,0.963,1.082,0.921,0.878,0.975,0.963,1.009,0.878,0.959,1.0,0.853,1.046,1.144,1.056,0.865,0.929,0.949,1.007,1.116,1.005,1.081,0.848,1.033,0.901,1.056,1.097,1.339,0.962,0.896 +NM_153338,1.372,0.566,1.723,0.906,1.374,0.68,0.399,0.984,2.073,1.264,0.761,1.025,1.066,1.092,1.353,1.773,1.095,1.227,2.176,0.913,0.781,1.583,0.598,1.894,0.654,2.131,1.714,1.724,0.474,1.115,1.572,0.279,1.176,0.998,0.603,0.215,1.267,1.704,0.521,0.398,1.719,1.043,1.002,0.466,1.695,0.982,1.198,2.022,1.134,1.441,0.904,0.489,1.249,0.917 +NM_153339,1.119,0.705,1.311,0.892,1.128,0.941,0.613,0.976,1.267,1.113,0.786,1.108,0.98,0.883,1.078,0.999,1.185,1.066,2.025,0.624,0.98,1.273,0.828,1.312,0.731,1.553,1.09,1.217,0.625,0.865,1.179,0.823,2.158,0.884,1.569,1.069,0.834,1.073,1.489,1.296,1.183,0.752,0.532,0.914,1.316,0.702,0.982,1.744,0.854,1.432,0.814,0.889,1.369,1.158 +NM_153340,0.996,0.891,0.947,1.052,1.11,0.942,0.829,0.965,1.091,1.069,0.884,1.058,0.831,0.741,0.937,1.03,0.923,0.888,0.912,1.035,0.906,0.937,1.102,1.138,0.985,0.906,1.152,1.031,0.85,1.033,0.998,1.062,1.835,0.941,0.823,0.935,0.908,0.976,1.094,1.125,1.096,1.031,0.977,1.059,0.949,1.093,0.892,0.935,1.104,1.033,0.922,0.86,1.005,1.509 +NM_153341,0.977,0.664,2.579,0.904,1.001,1.272,0.776,1.306,1.125,0.801,1.071,0.933,1.427,0.822,1.51,2.043,1.641,0.864,2.624,0.814,0.865,0.973,0.938,1.026,0.706,0.822,2.22,0.952,0.784,0.882,1.614,0.864,2.562,1.176,1.906,0.56,0.814,0.726,1.711,0.868,1.039,0.88,0.663,1.033,0.999,0.758,0.888,1.262,1.038,3.195,0.844,0.865,1.372,1.934 +NM_153342,0.869,1.092,1.084,0.818,0.957,0.837,0.949,0.731,1.327,1.033,0.95,0.945,0.89,0.743,0.845,1.175,0.996,0.883,1.255,0.876,1.002,1.03,1.414,0.815,0.876,1.166,1.091,0.896,1.071,1.005,0.967,2.503,1.084,1.038,0.873,0.902,0.856,0.963,0.873,1.267,0.947,0.976,0.751,1.48,1.197,0.897,1.318,0.867,0.776,1.247,0.812,0.913,1.234,1.395 +NM_153343,0.989,1.146,0.926,0.807,0.861,0.985,1.239,0.891,0.948,0.895,1.035,0.779,1.071,0.989,0.92,0.819,0.825,1.023,0.856,1.052,1.039,1.24,1.107,1.101,0.917,0.766,1.037,1.053,0.892,1.785,1.248,0.9,0.841,1.273,0.839,0.96,0.969,0.927,1.185,0.835,1.035,1.397,0.803,0.973,0.889,1.275,0.878,0.981,0.8,0.875,1.048,1.03,0.983,0.937 +NM_153344,0.856,0.924,1.019,1.014,1.006,1.429,0.939,0.869,0.927,1.024,1.17,0.8,0.849,0.83,0.973,1.197,1.06,0.886,0.896,1.175,0.891,0.885,1.008,0.884,1.014,0.854,0.84,0.981,0.663,1.22,0.842,0.832,0.92,1.173,1.02,1.045,1.052,0.869,1.103,1.113,0.845,1.118,1.207,0.97,1.004,1.374,1.097,1.041,1.044,0.953,0.943,0.974,0.994,1.553 +NM_153345,0.829,1.047,0.829,0.798,0.809,1.639,1.098,0.894,0.772,0.847,1.757,0.949,0.855,0.723,1.768,2.183,0.834,0.947,0.718,1.925,0.908,0.833,1.856,0.812,0.868,0.882,0.875,0.807,0.772,2.854,0.838,1.227,1.569,1.156,0.763,1.495,1.91,0.762,1.41,1.496,0.808,1.73,1.543,0.884,0.898,1.851,1.384,0.764,1.567,0.673,1.594,1.155,0.835,1.517 +NM_153350,1.517,0.975,1.273,1.026,1.544,1.19,0.814,1.466,1.962,1.221,0.837,1.488,1.461,1.524,1.119,0.856,1.163,1.169,1.803,0.896,1.573,2.418,1.001,1.958,0.984,2.041,1.491,1.442,0.826,0.865,1.659,0.842,0.988,0.94,1.669,1.175,0.747,1.894,0.834,0.758,1.484,0.882,0.792,0.865,1.354,0.999,1.101,2.11,0.823,1.229,0.882,0.812,0.966,0.942 +NM_153353,0.941,1.035,0.925,1.052,1.074,1.063,0.9,0.997,0.91,1.03,1.183,0.884,0.98,1.005,0.925,1.171,1.029,0.996,0.802,1.101,0.961,0.985,1.218,1.01,0.889,0.96,1.091,0.85,1.098,1.101,1.023,0.975,0.884,1.058,0.993,1.09,1.097,1.017,1.036,1.173,1.046,1.077,0.977,1.135,1.073,1.047,1.046,0.951,0.983,0.973,1.104,0.948,1.017,0.952 +NM_153354,0.967,1.153,1.049,1.026,0.969,1.188,0.954,0.927,1.166,0.974,1.141,0.972,0.981,1.013,1.212,1.011,0.995,0.982,1.069,0.974,0.804,0.922,0.953,1.107,1.184,0.896,1.008,0.991,1.06,1.019,1.065,0.751,1.044,1.035,0.896,0.942,1.071,1.112,1.062,1.001,1.116,0.99,0.889,0.882,0.906,1.057,1.014,1.056,0.974,0.936,1.076,0.95,0.865,1.056 +NM_153355,1.062,0.947,0.937,0.731,1.025,0.933,1.06,1.075,0.99,1.117,0.994,0.98,0.987,0.869,0.939,1.038,0.921,1.011,0.907,0.759,0.99,1.095,1.118,0.982,1.168,1.006,0.942,1.023,1.133,1.312,0.959,1.624,0.914,1.044,1.008,1.04,0.91,0.747,2.118,0.94,0.834,0.862,0.836,0.955,1.07,1.028,1.225,0.925,1.007,1.123,0.968,1.011,1.002,1.053 +NM_153356,0.951,1.061,1.154,0.872,1.074,1.047,0.905,0.852,0.97,0.931,1.225,0.976,1.043,0.811,0.922,1.05,0.923,1.109,0.856,1.076,0.844,1.046,1.155,0.927,0.946,0.967,0.94,1.032,0.868,1.006,0.898,1.091,1.075,0.945,0.907,1.036,1.015,0.826,0.935,1.181,0.958,0.889,0.938,1.048,1.024,0.987,0.958,1.041,0.912,0.965,1.005,0.966,1.1,0.852 +NM_153357,0.993,1.067,1.024,1.015,1.07,1.146,1.201,1.051,1.057,0.944,0.999,0.911,1.033,1.076,0.908,0.907,1.052,0.97,0.959,1.082,0.912,0.997,0.957,1.237,1.055,1.106,0.927,0.949,1.001,1.201,1.083,0.971,1.106,1.077,1.23,0.999,0.991,1.031,1.05,0.982,0.93,1.116,0.999,0.901,1.022,1.02,0.998,1.116,0.899,1.119,0.924,1.092,1.035,1.054 +NM_153359,1.098,0.992,1.07,0.899,0.897,1.005,0.794,0.778,1.116,1.198,0.862,1.107,1.009,0.892,1.095,0.927,1.101,0.928,0.938,1.067,0.932,0.979,1.253,1.29,0.954,1.062,1.446,0.951,0.85,0.945,0.855,1.012,1.023,0.969,0.839,1.08,1.019,0.942,1.093,1.227,1.154,1.035,0.979,0.96,1.091,1.094,0.951,0.859,0.931,0.917,0.977,0.982,1.068,1.173 +NM_153360,1.107,0.918,0.919,0.957,1.045,0.878,1.163,0.876,0.999,0.888,0.974,0.897,0.978,1.218,1.098,1.078,0.945,1.021,0.81,1.109,0.916,1.041,1.096,0.981,1.197,1.019,0.982,0.894,1.315,1.038,0.909,1.102,1.024,1.555,0.953,0.882,1.187,0.991,1.04,1.942,0.883,1.338,1.03,1.052,1.016,0.99,0.961,0.964,1.053,1.025,1.113,1.062,1.007,1.023 +NM_153361,0.985,1.078,0.988,0.86,0.981,0.976,1.187,1.092,0.944,1.019,1.065,0.93,0.957,0.895,0.906,1.023,0.949,1.074,1.101,1.042,0.909,0.952,0.903,0.924,1.208,0.998,1.05,0.977,1.146,1.12,0.933,0.99,0.984,1.121,1.084,0.98,1.046,0.869,1.001,0.936,0.863,1.004,1.211,1.029,0.99,0.976,0.897,1.015,1.041,0.911,1.003,1.099,1.19,0.999 +NM_153362,0.952,1.056,0.927,1.075,0.872,0.942,1.208,1.241,1.021,0.856,0.971,1.074,0.894,0.88,1.061,1.085,1.057,1.019,0.827,1.067,0.98,0.91,0.941,0.955,0.901,1.034,1.0,1.127,0.857,0.877,1.099,0.94,0.983,1.167,1.017,0.928,0.975,1.037,0.813,0.923,0.948,1.073,0.882,0.93,0.877,1.147,0.954,0.967,0.911,1.069,1.01,1.055,0.992,0.875 +NM_153363,1.023,1.006,1.003,1.131,1.265,1.063,0.959,1.022,0.881,1.027,1.223,0.967,1.055,0.98,1.197,0.962,0.923,1.079,1.006,0.963,0.923,0.95,0.94,0.942,1.05,1.005,1.018,0.915,0.892,1.028,0.943,1.089,1.004,1.046,1.153,1.084,0.937,1.058,0.93,1.131,1.021,0.951,1.0,1.031,0.901,0.937,0.939,0.896,1.0,1.094,0.895,0.97,0.912,0.919 +NM_153364,1.016,0.936,0.956,0.944,1.048,0.993,1.062,1.047,0.879,0.957,0.999,1.166,1.041,0.871,0.993,1.126,0.872,0.952,1.049,0.956,1.043,1.004,1.058,0.907,1.116,1.026,1.059,1.064,0.73,1.011,1.01,1.094,0.88,1.087,1.003,1.112,1.111,0.984,0.944,1.046,0.989,0.923,0.959,1.031,0.897,0.965,0.945,0.919,0.992,0.957,0.959,1.004,0.93,1.039 +NM_153365,0.908,1.207,1.247,0.765,0.945,1.223,1.145,0.78,0.94,0.904,0.993,0.977,0.805,0.83,1.089,1.529,0.818,1.192,0.995,1.277,0.694,1.111,1.057,0.905,0.984,0.787,1.311,1.011,0.967,1.187,1.08,1.128,1.553,1.46,0.695,0.708,0.984,1.059,1.384,0.863,0.955,1.174,0.933,0.919,0.939,1.087,0.863,0.858,1.417,0.91,1.119,0.82,0.898,1.278 +NM_153367,0.722,1.254,0.757,0.915,0.73,1.041,0.958,0.838,0.741,0.663,1.384,0.701,0.642,0.625,0.981,1.182,0.743,0.768,0.767,1.03,0.776,0.736,1.314,0.707,1.586,0.706,0.845,1.029,0.888,1.903,0.737,7.052,1.111,2.616,0.574,1.01,0.936,1.046,1.537,1.337,1.194,1.972,0.782,0.695,0.821,1.091,1.024,0.761,0.62,0.699,1.281,1.07,0.8,1.21 +NM_153369,1.151,0.907,1.212,1.003,0.99,0.92,1.044,0.962,0.996,1.124,0.918,0.87,1.062,0.931,0.828,0.968,1.034,1.011,0.972,1.133,0.955,0.944,0.963,1.073,1.111,0.919,0.937,0.933,0.788,0.805,1.037,0.975,0.994,1.034,1.069,1.036,1.014,0.975,1.055,1.092,1.089,1.025,0.868,0.915,1.045,0.92,1.115,0.972,1.167,1.047,1.05,1.063,0.965,1.089 +NM_153370,3.136,0.872,3.6,1.14,4.029,0.845,0.888,3.047,1.226,2.798,0.839,2.486,2.668,1.241,1.247,1.377,8.454,1.607,2.233,0.853,1.502,1.916,0.883,1.896,0.927,1.046,4.489,1.193,1.022,0.802,2.916,0.933,2.214,0.778,3.285,0.897,0.831,2.686,0.827,0.808,3.714,0.813,0.853,0.777,5.225,0.91,2.343,1.501,1.145,6.233,1.133,1.169,1.858,0.961 +NM_153371,0.868,0.742,1.183,0.859,0.983,1.373,0.828,0.945,1.388,0.661,1.083,0.975,0.832,0.74,0.949,2.088,0.705,1.21,1.205,1.309,0.429,1.109,1.12,1.19,0.796,0.94,0.974,0.995,0.501,1.318,1.093,1.155,1.375,1.062,1.376,0.715,1.44,1.301,1.24,1.426,0.759,1.02,0.699,0.675,0.859,1.119,0.897,1.097,1.171,1.065,1.088,0.735,0.622,1.174 +NM_153373,0.991,0.91,0.955,1.0,1.072,1.0,1.087,1.019,0.989,0.988,1.095,0.911,0.986,0.969,0.943,1.068,1.009,1.012,0.998,0.855,0.939,0.899,1.022,1.0,1.111,0.963,1.023,0.887,1.355,0.928,1.046,0.919,1.012,0.815,0.874,0.957,0.948,1.01,1.046,0.907,1.077,0.951,1.371,0.982,1.05,1.112,1.014,0.974,1.161,0.997,1.051,1.013,0.855,0.962 +NM_153374,0.658,1.849,1.609,0.828,0.896,0.923,0.893,0.691,1.118,0.828,0.822,1.001,0.797,0.693,1.058,1.243,1.012,0.764,0.951,0.933,0.607,0.83,1.573,1.01,0.652,0.788,1.57,1.047,0.494,0.954,0.998,1.988,1.476,1.265,0.439,0.942,0.971,0.98,1.565,1.282,1.411,1.128,0.855,0.826,0.985,0.937,0.995,0.693,0.931,0.745,0.969,1.184,0.917,3.736 +NM_153375,2.63,0.69,1.703,1.246,1.853,0.76,0.748,2.026,2.296,1.572,0.854,2.106,2.629,1.962,1.367,1.076,2.113,1.335,2.291,0.864,1.909,3.896,0.672,2.649,0.79,2.788,2.087,1.697,0.939,0.791,2.017,0.914,1.487,0.739,2.374,0.847,0.777,2.657,0.73,0.846,1.9,0.888,0.744,0.807,1.883,0.676,1.315,2.389,0.699,1.966,0.947,0.955,1.352,0.907 +NM_153376,1.048,0.949,1.387,0.929,1.165,1.013,0.756,1.087,1.082,1.037,0.99,1.039,0.949,0.909,0.863,1.084,1.467,1.061,1.071,0.915,0.958,0.942,1.106,0.987,0.911,0.763,1.298,1.088,0.75,1.023,1.245,1.016,1.306,1.068,1.319,0.901,0.829,1.313,0.934,0.936,1.118,0.94,0.813,0.919,1.094,0.954,0.924,1.07,0.747,1.259,0.998,0.889,1.26,1.076 +NM_153377,0.795,0.895,1.315,0.841,0.785,0.809,0.633,0.427,1.149,0.643,1.424,0.426,0.693,0.865,1.097,1.535,0.601,0.68,1.17,1.124,0.613,0.572,1.257,0.797,0.822,0.861,1.155,0.822,0.332,1.194,0.991,1.599,1.199,1.406,0.308,1.006,1.1,0.766,1.748,0.448,0.818,1.314,0.718,1.991,0.803,1.135,0.856,0.578,1.111,0.869,1.222,0.697,0.649,1.101 +NM_153378,0.999,0.889,0.997,1.082,0.99,1.07,1.045,0.986,1.052,1.011,1.13,0.898,1.032,1.058,0.998,0.975,1.105,1.128,0.876,0.898,1.06,1.093,0.803,0.991,1.105,1.035,1.145,0.969,1.064,0.98,1.048,1.004,1.018,0.992,1.024,0.924,0.873,1.052,0.935,1.14,1.097,1.059,1.049,1.001,1.007,0.911,1.004,1.028,1.022,1.164,1.013,0.922,1.01,0.998 +NM_153379,2.694,1.822,2.981,1.741,3.2720000000000002,1.658,1.544,2.075,3.266,2.668,1.856,2.359,2.5700000000000003,2.534,2.334,1.936,2.4379999999999997,2.251,2.98,1.873,2.139,2.468,1.6669999999999998,2.8529999999999998,1.7890000000000001,3.12,2.927,2.805,1.7469999999999999,1.842,2.509,1.724,1.934,1.724,2.3979999999999997,1.647,1.621,3.354,2.169,1.822,3.433,1.746,1.714,2.03,2.473,1.9689999999999999,2.425,2.851,1.784,2.892,1.732,1.8399999999999999,2.069,1.9260000000000002 +NM_153380,1.019,1.031,0.954,1.0,1.006,1.053,0.776,0.985,0.975,0.925,1.043,0.955,1.012,1.099,0.946,1.042,0.889,1.073,0.891,1.058,1.102,1.051,0.912,1.035,1.032,1.071,1.047,0.911,0.737,1.055,0.899,0.926,1.022,0.884,0.789,0.968,1.009,1.05,0.986,0.998,0.88,0.991,1.009,1.082,1.085,0.96,1.101,0.937,1.008,0.976,1.036,0.923,0.914,1.007 +NM_153381,1.003,1.188,1.143,0.951,0.863,1.09,1.011,0.999,1.036,1.053,0.939,0.977,1.087,0.905,0.902,1.015,1.007,1.093,0.988,0.993,0.942,1.096,1.092,1.124,1.031,0.946,1.031,1.093,0.751,0.978,1.002,0.997,1.005,0.999,1.122,0.848,0.951,0.932,0.875,0.892,1.078,1.037,0.91,0.963,1.067,1.123,0.968,0.976,1.024,1.125,1.001,1.065,0.982,0.971 +NM_153425,0.987,0.96,1.06,0.917,1.059,0.966,0.926,0.951,0.959,1.081,0.99,1.132,1.04,0.99,0.96,1.018,1.077,0.889,1.104,0.987,0.897,1.03,0.903,1.014,0.96,1.064,1.106,0.919,1.157,1.006,0.983,1.065,0.863,0.94,1.04,1.016,0.93,1.115,1.146,1.022,0.981,0.983,1.289,0.952,1.088,0.988,1.082,1.0,1.054,1.03,1.013,0.996,0.971,1.144 +NM_153426,0.993,1.01,0.889,1.051,1.146,0.93,0.994,0.898,1.044,1.033,1.046,0.915,1.063,0.814,1.104,1.089,1.034,0.965,1.089,1.007,0.866,1.142,0.936,1.025,0.937,1.035,0.861,1.045,0.977,0.831,0.917,1.009,0.851,1.012,0.856,1.012,0.873,1.044,1.012,0.915,0.85,0.847,0.897,0.921,1.021,1.116,1.138,1.006,1.063,1.005,0.954,1.07,1.062,0.926 +NM_153427,0.98,0.891,1.483,1.035,0.958,1.083,0.81,0.989,0.992,0.928,0.978,0.94,0.873,1.181,0.846,1.194,1.28,0.932,1.254,0.896,0.989,0.778,0.996,1.164,0.914,1.023,2.592,1.043,0.979,0.91,1.07,1.031,1.124,0.763,0.915,0.965,0.901,1.511,0.916,1.011,1.176,0.983,1.021,1.109,1.069,0.961,1.132,0.864,1.029,1.308,1.044,1.074,1.172,1.059 +NM_153437,1.885,1.932,1.939,1.79,1.972,1.876,2.001,1.816,1.759,2.1879999999999997,1.962,1.982,1.834,1.661,2.229,2.195,1.709,2.032,2.158,1.9820000000000002,1.803,1.7890000000000001,2.176,1.954,1.822,1.9989999999999999,1.8439999999999999,1.786,2.2190000000000003,2.101,2.135,2.272,2.592,1.9,1.789,2.302,1.951,1.838,2.372,2.346,1.857,1.9329999999999998,2.265,1.963,2.149,1.9609999999999999,2.02,1.911,2.062,1.954,1.857,2.289,2.152,2.268 +NM_153443,1.022,0.99,1.018,1.067,1.0,1.068,1.067,0.928,0.973,1.064,0.927,1.041,1.082,1.006,1.055,1.156,0.977,1.057,1.0,1.053,1.004,1.043,0.951,1.372,1.171,1.052,0.828,0.938,1.104,1.0,1.084,1.081,1.284,0.997,0.917,1.003,0.975,1.069,1.009,0.946,1.035,0.938,1.029,0.98,0.959,0.961,1.013,0.925,1.18,0.888,0.967,1.126,1.182,1.253 +NM_153444,1.0,0.859,0.933,1.02,1.193,1.073,1.285,1.073,1.062,1.124,1.038,1.042,1.077,0.787,1.022,1.054,0.987,0.926,1.346,1.015,0.935,0.931,0.968,0.975,1.017,0.904,0.857,0.956,0.948,0.996,1.107,1.021,1.112,1.076,0.994,0.875,0.972,1.042,0.947,0.957,1.052,1.085,0.959,1.077,0.988,0.901,1.059,0.963,0.991,1.017,0.932,1.103,1.035,0.84 +NM_153445,0.986,0.993,0.952,1.107,1.159,1.077,0.973,0.958,1.05,1.169,0.938,0.938,0.981,0.933,1.039,1.198,0.967,1.014,1.061,1.02,1.029,1.032,1.147,1.027,1.003,0.983,0.931,0.929,1.288,0.99,1.084,0.985,1.221,0.946,1.08,0.908,1.05,1.107,0.874,0.999,1.058,0.929,0.998,0.938,1.065,1.056,0.99,1.022,1.042,1.025,1.059,1.067,1.246,0.968 +NM_153446,1.048,0.93,1.013,0.958,1.211,1.092,1.091,1.153,0.888,1.088,0.911,1.033,0.961,0.995,1.208,0.84,0.994,0.965,1.145,0.965,1.014,1.099,1.136,1.053,0.999,0.975,0.939,0.994,0.821,0.875,0.955,1.04,0.987,0.979,0.975,1.087,1.022,1.036,0.978,1.01,1.174,0.951,0.931,1.021,1.061,1.027,0.727,1.103,0.816,1.001,0.934,1.084,1.044,0.914 +NM_153447,0.945,0.902,1.033,0.997,1.022,1.013,0.845,0.977,0.997,1.013,0.907,1.009,0.969,1.011,1.349,1.007,0.96,0.905,1.146,0.891,1.026,0.995,0.96,0.965,1.015,1.083,1.208,0.93,0.618,1.132,1.023,0.93,0.896,1.075,0.834,0.961,1.032,0.954,1.132,0.992,0.942,0.92,0.893,1.085,1.048,0.864,1.115,1.152,1.04,1.0,0.979,0.916,1.1,0.932 +NM_153448,0.97,1.057,1.043,1.097,1.107,0.892,0.97,1.041,1.226,0.925,1.028,1.108,0.895,0.909,1.01,1.055,1.092,1.124,1.066,1.106,1.028,0.912,1.197,1.053,0.996,0.963,1.213,1.098,0.928,0.97,1.124,0.936,0.947,0.994,1.323,1.249,1.048,1.006,0.83,0.998,1.005,0.894,1.055,0.963,0.961,0.888,0.915,0.925,1.047,0.941,0.986,1.081,0.995,0.878 +NM_153449,1.149,0.915,0.998,1.193,1.157,1.177,0.957,0.847,0.896,1.091,1.047,1.141,0.976,1.086,0.996,1.0,1.093,0.845,0.764,1.03,1.111,0.974,0.981,0.947,1.06,1.134,0.826,0.944,0.956,1.021,1.044,1.17,1.244,1.092,0.957,0.985,1.16,1.071,0.961,2.205,1.02,0.974,0.697,0.731,1.149,1.147,1.203,0.878,1.07,1.114,0.955,0.908,0.992,0.892 +NM_153450,0.776,0.995,1.004,0.837,0.885,1.091,0.555,0.656,1.007,0.982,1.035,0.974,1.042,0.915,1.102,1.289,0.897,0.877,1.246,0.97,0.694,0.801,1.116,1.113,0.698,0.908,1.091,0.875,0.581,1.162,1.103,1.492,1.386,1.285,0.67,1.647,1.003,0.878,1.419,0.798,0.999,1.008,0.79,1.306,1.001,0.939,1.004,0.92,0.904,0.936,0.978,0.897,0.99,1.462 +NM_153453,1.068,0.785,0.969,1.005,0.832,0.971,0.872,0.896,1.007,0.982,1.013,1.051,0.909,1.059,1.156,1.004,0.935,1.01,1.005,0.933,0.922,1.01,0.845,0.951,1.033,1.079,0.952,1.134,0.976,1.034,0.971,0.987,1.076,0.925,0.958,1.125,1.072,1.168,1.1,0.902,1.036,0.978,1.056,1.102,0.99,1.008,1.022,0.853,0.982,0.976,1.014,0.914,1.091,1.115 +NM_153454,0.967,0.981,0.954,1.038,0.97,1.007,0.918,1.184,1.02,0.957,1.173,0.906,0.931,1.145,0.983,1.046,1.006,0.998,1.074,1.147,1.177,0.875,0.931,0.958,0.998,0.996,1.034,1.029,0.981,0.99,0.913,0.854,0.971,1.008,0.998,0.897,1.113,0.884,0.931,1.068,0.872,1.027,1.059,0.95,0.888,0.942,1.041,0.98,1.087,0.857,1.053,1.019,1.018,0.907 +NM_153455,1.05,0.995,0.954,0.948,1.075,0.983,1.018,1.061,1.122,1.027,1.055,1.002,0.981,0.925,0.929,0.926,0.927,1.006,1.073,0.972,1.016,0.986,0.82,0.983,0.939,1.023,0.929,1.029,1.035,0.959,1.122,1.109,0.939,1.017,0.949,0.923,1.017,1.024,1.062,0.998,0.99,1.077,1.035,1.253,1.055,1.014,0.916,1.048,1.052,0.933,1.033,1.087,1.116,0.885 +NM_153456,1.027,0.947,0.923,0.977,1.03,1.06,0.902,0.882,0.976,1.065,0.979,1.006,1.078,0.846,1.146,0.97,1.138,0.996,1.089,0.902,0.932,0.922,0.996,0.998,0.972,0.976,1.145,0.96,1.12,0.975,1.084,0.958,0.935,1.044,1.039,0.987,1.0,1.109,1.103,1.071,1.101,0.904,0.96,1.095,1.095,0.999,1.12,1.042,1.005,1.087,0.903,1.013,0.996,1.017 +NM_153461,0.889,0.93,1.122,0.77,0.897,1.004,0.939,0.94,0.934,1.017,0.992,1.159,0.933,1.06,0.815,0.905,1.046,1.03,1.027,0.945,1.0,0.902,0.851,0.995,1.053,1.066,1.12,1.046,0.827,0.984,1.056,1.087,0.869,1.04,1.124,1.102,1.138,1.042,1.024,1.0,0.957,1.135,0.875,0.944,1.023,0.913,1.064,1.116,1.022,0.979,1.143,0.879,0.974,0.928 +NM_153463,2.181,1.7479999999999998,2.12,1.884,2.034,2.3449999999999998,1.6280000000000001,2.132,2.3789999999999996,1.887,1.988,1.8679999999999999,2.5010000000000003,2.032,2.178,2.291,2.0149999999999997,2.2249999999999996,3.5380000000000003,1.585,1.631,2.299,1.8179999999999998,2.057,2.122,2.548,2.137,2.096,2.065,2.018,2.186,1.9689999999999999,1.833,2.42,1.5550000000000002,1.572,1.819,2.207,2.024,1.4809999999999999,2.083,1.83,1.573,1.8679999999999999,1.978,1.589,1.8900000000000001,2.806,1.529,2.529,1.912,1.676,2.439,2.233 +NM_153464,0.952,0.808,1.092,1.09,0.942,0.982,1.097,0.723,1.146,0.997,0.896,0.931,0.828,0.967,0.988,1.055,0.926,0.987,1.079,0.956,0.973,0.906,1.21,0.952,0.976,0.838,1.015,0.919,1.238,0.941,1.049,1.154,1.699,0.981,0.79,1.033,0.853,0.692,1.077,1.076,0.904,0.969,0.828,1.319,1.001,0.846,0.993,0.831,1.14,1.007,1.026,1.018,1.255,1.491 +NM_153477,0.982,1.053,0.834,1.001,1.037,0.937,1.306,0.905,1.11,0.983,0.975,0.868,0.876,0.96,1.239,1.127,0.82,1.029,0.81,1.089,1.006,0.803,1.007,0.943,0.915,0.924,0.933,0.892,0.753,1.077,0.938,1.217,1.785,1.186,0.87,0.85,0.908,0.793,0.892,1.054,0.959,0.842,1.084,1.036,1.127,1.111,1.046,1.027,1.226,1.005,1.075,1.036,0.981,1.151 +NM_153478,0.933,1.045,1.1,0.945,1.229,1.035,0.906,0.972,0.918,1.084,1.045,1.03,1.148,1.022,0.986,0.806,0.8,1.11,0.971,0.82,0.936,1.093,1.14,0.976,0.975,1.056,0.962,1.126,0.916,0.957,1.006,0.993,0.954,0.79,0.975,1.02,1.194,1.079,0.865,1.017,1.197,1.212,0.807,1.017,1.179,0.928,0.903,0.856,0.965,1.031,1.001,0.915,0.879,1.248 +NM_153479,0.902,0.991,1.065,1.278,1.071,1.166,1.015,0.898,1.113,0.769,1.04,1.079,0.896,1.008,1.466,0.938,1.179,0.975,0.876,1.039,1.183,0.995,1.237,0.943,1.005,0.87,1.035,1.125,1.573,1.032,0.973,0.827,2.363,1.124,0.999,0.898,1.124,0.789,7.092,1.032,1.117,0.996,1.013,0.898,1.039,0.85,1.019,0.997,1.072,1.065,0.916,0.951,1.018,1.173 +NM_153481,0.901,1.053,0.989,0.835,0.94,1.05,0.989,0.837,0.941,0.949,1.078,0.998,0.888,0.907,0.921,1.116,0.913,0.956,0.875,0.919,0.854,0.947,0.951,1.0,1.0,1.214,1.065,0.923,0.712,1.225,0.82,1.0,0.833,1.132,1.035,0.876,0.939,1.079,1.178,0.97,0.925,1.098,0.882,0.957,1.128,1.083,1.032,1.004,0.999,0.996,1.101,0.918,0.826,0.834 +NM_153482,1.01,0.991,1.096,1.085,0.848,0.992,0.924,1.048,1.031,1.017,1.133,1.143,1.141,0.985,0.899,1.117,1.024,1.052,1.135,1.044,0.851,1.094,1.139,0.972,1.142,0.951,0.903,1.095,0.739,0.971,0.904,1.129,1.012,0.969,0.954,0.923,0.978,1.084,1.041,1.009,1.069,0.827,0.822,0.994,1.067,1.08,1.002,0.98,0.995,1.002,1.031,1.078,1.017,0.987 +NM_153483,1.01,1.021,1.057,0.874,0.941,1.04,0.896,1.09,0.96,0.914,0.944,0.966,1.034,0.94,1.074,0.959,0.915,0.932,1.027,1.033,1.059,1.105,0.878,0.917,1.025,0.986,1.027,1.104,0.9,0.931,0.994,1.036,0.882,1.019,1.046,0.999,1.071,1.312,1.034,1.024,0.943,0.939,1.227,0.915,0.992,0.881,0.93,1.033,0.891,1.002,1.186,0.895,1.246,0.88 +NM_153485,0.954,1.128,0.974,1.042,0.918,0.969,0.845,1.16,0.873,0.924,0.959,0.968,1.128,1.026,0.95,0.93,1.021,1.06,1.077,0.974,0.81,0.991,1.072,1.069,0.975,0.973,1.078,0.959,1.11,0.917,1.015,0.956,1.047,0.908,1.17,1.089,0.91,0.845,0.999,0.846,0.945,1.248,0.97,0.806,1.012,1.182,0.909,0.958,0.942,0.997,1.085,1.057,1.086,1.036 +NM_153486,1.105,1.03,0.958,1.055,0.948,0.947,0.979,0.917,0.96,0.966,1.059,0.928,0.991,1.076,1.053,1.087,0.986,0.974,0.969,1.058,0.846,0.999,0.954,1.026,1.003,0.926,1.15,0.915,0.762,1.118,0.815,1.113,0.965,1.111,0.976,0.962,1.09,1.043,1.086,0.883,1.001,0.998,1.059,1.026,0.961,0.93,1.027,0.859,1.042,0.891,1.052,0.985,1.087,1.265 +NM_153487,1.004,1.002,0.87,0.866,0.995,1.055,1.114,1.058,0.97,0.816,0.99,0.916,0.999,0.975,1.023,0.92,1.082,0.864,1.153,0.85,1.173,1.143,1.053,0.916,1.12,0.923,1.056,0.973,1.338,0.902,0.951,1.037,0.915,0.928,1.016,1.04,1.131,1.0,0.983,1.149,1.057,1.08,0.861,0.879,0.909,0.94,1.011,1.002,0.978,0.918,0.962,1.125,0.942,0.878 +NM_153488,1.088,1.149,0.989,0.937,0.951,0.971,0.872,1.034,1.043,1.067,0.898,1.026,0.862,0.98,0.899,0.856,0.982,0.981,1.084,0.889,0.88,0.928,0.989,1.026,1.143,1.173,0.984,0.968,0.721,1.017,0.873,1.242,0.936,1.101,0.97,0.831,0.993,1.025,1.186,1.041,0.933,1.029,1.096,1.09,0.926,0.992,0.881,1.108,1.03,1.024,0.982,0.927,0.893,0.984 +NM_153497,0.91,0.865,1.132,0.742,1.189,1.012,0.829,1.04,1.094,0.833,0.991,1.123,1.094,1.019,0.962,1.043,0.941,1.029,1.21,0.967,0.938,0.994,1.145,1.083,0.895,0.887,1.022,0.867,0.685,0.964,0.926,0.894,1.21,0.976,0.837,0.936,1.111,1.108,1.071,0.913,0.944,1.167,0.935,1.037,1.024,1.076,1.217,1.142,0.961,1.097,1.028,1.003,1.19,1.067 +NM_153498,1.466,0.62,2.966,0.852,1.657,0.64,0.712,1.376,1.893,1.983,0.537,1.882,1.007,1.985,1.583,0.776,1.164,1.341,2.769,0.776,1.315,2.027,0.643,2.102,0.55,1.393,1.652,2.113,0.438,0.837,2.061,1.191,1.162,0.755,0.56,0.493,0.703,2.432,0.767,1.36,2.421,1.15,0.497,0.665,1.7,0.602,1.153,1.333,0.516,1.553,0.894,1.001,1.436,0.915 +NM_153603,1.007,1.093,0.858,1.148,0.965,1.046,0.889,0.771,0.977,0.885,0.888,0.893,0.98,0.906,0.935,0.975,1.002,0.969,0.997,1.003,0.99,0.94,1.058,0.932,1.102,0.997,0.943,0.988,0.997,1.186,0.841,1.241,1.215,1.102,0.839,0.946,1.067,0.982,1.393,1.015,0.923,0.977,0.935,1.113,0.978,1.058,1.038,1.006,1.134,0.997,1.056,0.963,0.834,0.945 +NM_153604,1.085,0.991,0.965,0.906,1.031,1.029,0.979,1.084,0.957,0.922,1.063,1.043,0.878,1.081,1.301,1.124,1.029,1.097,1.095,1.079,0.955,0.997,0.975,0.996,1.091,1.06,1.056,1.0,1.055,0.946,1.179,1.145,1.131,1.057,1.081,0.989,0.998,1.0,1.052,0.98,1.161,1.064,1.157,1.041,0.955,1.011,0.906,1.044,1.043,0.908,1.047,0.976,0.999,0.986 +NM_153606,1.082,0.996,1.021,0.983,0.983,0.884,1.087,0.927,0.979,1.09,1.013,1.051,1.011,0.966,0.847,0.953,0.988,0.973,1.098,0.965,0.982,0.865,1.117,0.949,1.013,0.922,0.882,1.1,1.293,0.9,0.992,0.928,1.157,0.971,1.156,1.044,1.1,1.04,0.912,0.906,1.002,1.005,0.923,1.028,0.927,0.964,1.141,1.079,0.979,1.014,1.056,1.013,0.892,1.006 +NM_153607,0.757,1.104,1.008,0.793,0.864,1.138,0.796,0.892,1.041,0.734,1.125,0.82,0.848,0.806,1.128,0.981,0.882,1.002,0.937,1.072,0.79,0.804,1.025,0.891,1.173,0.758,0.924,1.021,0.904,1.179,0.85,1.37,1.777,1.427,0.856,0.79,1.077,0.814,1.081,1.324,0.901,1.526,0.763,0.94,0.932,1.052,0.989,0.803,0.779,0.877,1.057,1.007,0.876,1.325 +NM_153608,0.964,0.93,0.952,1.067,0.945,1.037,1.055,1.024,0.979,0.831,1.073,1.065,0.935,0.897,1.045,0.975,0.962,0.886,1.175,1.109,1.002,0.905,0.983,1.067,1.033,1.049,0.988,0.865,1.297,1.061,0.938,1.007,0.962,0.876,1.061,1.002,0.963,0.957,0.933,1.665,0.935,0.928,1.1,1.264,1.044,0.96,1.124,1.0,1.021,0.862,0.946,1.059,0.914,0.97 +NM_153609,1.023,0.999,0.96,1.012,1.075,1.135,0.838,1.035,1.033,0.965,1.199,1.267,0.865,0.925,0.877,1.003,0.938,1.087,1.003,1.018,1.043,0.929,0.94,0.971,1.027,1.098,1.007,1.022,0.892,1.023,1.104,0.983,0.926,1.192,0.969,0.974,0.892,0.912,0.956,0.989,1.028,0.921,0.996,0.921,1.064,0.952,0.955,0.898,1.168,0.98,0.907,1.021,0.944,1.094 +NM_153610,1.026,1.021,1.052,1.135,0.936,1.11,0.985,0.967,0.984,0.934,0.92,1.066,1.084,1.01,1.278,1.003,0.927,0.96,0.938,0.934,1.018,0.882,0.895,0.934,0.972,1.046,0.901,1.068,1.505,1.1,1.022,1.193,1.016,1.055,0.911,0.972,0.828,1.343,1.114,1.048,0.989,0.979,1.027,1.099,1.13,0.794,0.983,1.055,0.924,1.052,0.996,0.984,0.932,1.161 +NM_153611,0.824,1.072,1.191,0.805,0.717,1.084,0.738,0.721,0.763,0.856,0.985,0.994,0.906,0.645,0.816,1.363,0.968,1.122,1.096,0.926,0.776,0.919,1.235,0.901,0.721,1.007,1.167,0.769,0.666,1.283,0.62,1.233,2.049,1.248,0.377,1.211,1.029,0.983,1.566,1.118,0.944,1.088,0.807,1.497,0.836,0.951,0.863,0.922,0.843,1.082,0.883,0.978,1.024,1.125 +NM_153612,1.197,0.894,1.119,1.046,1.075,0.941,0.839,1.482,1.006,0.899,1.108,0.98,0.905,0.793,0.997,1.005,0.985,0.978,0.985,1.0,0.973,1.084,0.934,0.944,1.205,1.064,1.1,1.083,0.977,0.958,1.139,1.087,0.855,0.956,0.917,0.903,1.052,1.053,0.989,0.898,0.994,0.958,0.836,1.059,0.942,1.065,1.049,1.005,1.07,1.0,1.078,1.029,0.975,1.081 +NM_153613,0.535,1.133,0.923,1.338,0.552,2.345,0.997,0.4,0.803,0.527,1.525,0.421,0.401,0.562,1.291,2.146,0.711,1.103,0.676,2.158,0.389,0.569,2.272,0.631,0.746,0.584,0.817,0.6,0.857,1.759,0.865,1.222,1.003,2.52,0.646,0.989,1.119,0.524,2.801,0.375,0.611,1.87,0.943,1.196,0.661,1.516,0.799,0.692,1.382,0.446,1.848,0.676,0.546,1.128 +NM_153614,0.993,0.921,1.084,1.086,1.014,0.984,0.822,1.048,1.037,1.062,1.102,1.114,0.926,1.008,1.316,1.037,0.939,1.205,1.037,1.087,0.969,1.103,1.028,1.124,1.075,1.0,1.047,1.079,0.791,0.945,0.968,1.169,0.997,1.025,0.918,1.022,0.909,1.016,0.889,0.928,0.889,1.005,0.985,0.97,1.024,0.883,0.935,0.896,0.916,0.816,1.143,0.913,1.12,1.037 +NM_153615,0.79,1.106,1.482,1.068,0.967,0.799,0.983,0.767,0.799,0.778,0.997,1.003,1.089,0.809,0.947,0.855,1.069,0.929,1.011,0.972,1.107,0.997,0.842,1.124,1.04,1.008,1.36,0.839,0.776,1.254,0.993,1.186,0.921,0.86,0.954,0.928,1.036,0.779,1.018,2.096,1.1,1.391,0.814,0.932,1.042,0.801,1.041,0.938,1.042,0.938,0.971,1.378,1.367,1.327 +NM_153618,1.035,1.046,0.974,1.065,1.098,0.766,1.033,1.131,0.917,0.841,1.113,0.927,0.918,1.099,0.993,0.932,1.063,0.98,0.92,1.121,0.998,1.135,1.138,1.012,1.238,1.008,1.112,0.93,0.969,0.998,1.158,0.934,0.914,1.08,1.115,1.022,1.166,0.907,1.129,0.925,0.998,0.989,0.948,1.317,0.962,1.061,1.0,1.072,1.0,0.796,1.175,0.999,0.958,1.131 +NM_153620,1.05,1.022,1.114,0.927,0.9,1.077,1.016,1.045,0.864,0.998,0.979,1.194,0.952,0.928,0.876,0.944,1.058,1.063,1.037,0.998,1.054,1.03,1.052,0.871,0.892,1.077,1.137,1.0,1.245,0.9,1.015,0.952,0.985,0.932,1.002,1.028,0.984,1.099,1.001,0.974,0.992,0.976,1.151,0.895,1.0,1.053,0.976,0.816,0.937,1.076,1.019,1.0,1.026,0.85 +NM_153631,0.934,0.927,1.012,0.884,0.967,1.027,0.85,1.043,0.901,0.909,0.969,0.907,0.989,0.859,1.114,0.944,1.013,0.925,1.018,1.104,1.203,1.003,0.898,1.032,0.909,1.029,0.981,1.157,0.98,0.952,1.114,1.174,1.064,0.882,0.991,1.084,0.924,1.048,1.091,1.168,1.178,1.09,0.898,1.059,0.957,1.062,1.06,0.933,1.094,1.0,1.174,0.997,1.092,0.945 +NM_153632,1.9899999999999998,1.952,2.239,2.17,2.044,1.896,2.053,2.156,2.123,2.013,2.085,2.16,1.94,1.891,1.7269999999999999,1.971,1.973,2.153,1.846,1.876,2.017,2.208,1.996,2.0439999999999996,1.881,2.057,1.9289999999999998,2.051,2.081,2.012,2.002,2.1710000000000003,2.125,2.083,2.104,2.12,1.823,2.3,1.859,1.987,1.918,1.978,2.052,2.162,2.146,2.01,2.167,2.088,1.987,1.97,1.968,1.7109999999999999,2.035,2.2 +NM_153633,0.963,0.91,1.071,0.99,0.94,1.17,1.129,1.061,1.152,1.036,0.881,0.931,1.074,1.181,1.136,1.056,1.026,0.872,1.197,0.995,0.923,0.968,1.08,1.065,1.153,0.807,1.048,0.964,0.906,1.023,1.102,1.021,1.052,1.007,0.928,0.886,1.047,1.112,1.01,1.086,1.056,0.845,0.919,1.03,1.032,0.915,1.009,1.062,1.158,1.05,0.852,1.026,0.931,1.07 +NM_153634,0.86,1.104,1.327,0.965,0.81,1.186,0.938,0.777,0.812,0.902,0.959,0.873,0.853,0.866,0.862,0.888,1.17,0.908,1.204,1.074,0.905,0.723,0.873,1.074,0.931,0.865,1.362,0.812,0.623,1.207,0.789,1.347,1.081,1.395,0.793,0.91,0.807,0.734,1.44,1.261,1.043,1.151,0.747,1.221,1.047,0.936,0.87,0.8,0.729,1.184,1.19,1.214,1.092,1.528 +NM_153635,1.015,0.88,0.779,0.85,1.137,1.039,0.897,0.91,0.911,1.062,0.994,1.029,0.889,1.146,1.065,0.897,0.962,0.825,1.065,1.174,0.97,0.945,0.983,1.076,0.902,1.017,1.074,0.945,1.103,1.167,1.011,1.063,0.884,0.96,1.067,0.943,0.979,1.053,0.911,0.979,1.015,0.87,0.886,1.06,0.994,1.238,1.012,0.985,1.086,0.97,1.025,0.845,0.975,1.019 +NM_153636,1.025,1.387,1.13,0.943,0.868,0.929,0.947,0.911,0.968,0.874,1.065,1.257,0.979,0.875,0.916,0.986,1.061,0.995,1.04,1.237,0.895,1.005,0.933,1.093,0.969,1.01,1.164,0.913,0.769,0.959,0.856,0.938,1.148,1.08,0.996,1.208,1.019,1.105,1.043,1.214,1.0,0.982,0.855,0.966,0.967,1.075,0.972,0.93,1.116,0.854,0.943,0.855,0.973,1.337 +NM_153637,0.868,0.604,1.43,0.668,1.618,1.154,0.456,1.268,1.815,1.25,0.646,1.379,0.92,1.054,1.244,1.406,0.992,0.959,2.02,0.637,0.761,1.323,0.937,1.556,0.392,1.286,1.306,1.785,0.368,1.212,1.58,0.887,2.041,0.991,1.665,0.687,0.755,1.787,0.964,0.831,1.242,0.721,0.416,0.939,1.204,0.732,1.076,1.688,0.682,1.039,0.825,0.787,1.127,2.189 +NM_153645,0.993,0.984,1.45,0.954,1.347,0.988,0.782,0.881,1.432,1.397,0.853,0.968,0.802,1.146,1.276,1.17,1.442,1.041,1.578,0.962,0.85,0.986,1.047,1.071,0.735,1.159,1.706,0.894,0.704,1.036,1.137,0.869,1.53,0.905,1.115,0.938,0.796,0.944,1.359,0.789,1.2,0.793,0.883,1.007,0.959,0.981,1.392,1.571,0.975,1.443,1.075,0.887,1.352,1.452 +NM_153647,0.993,0.96,1.034,1.038,1.011,1.052,1.091,1.005,0.986,1.076,1.069,0.965,0.899,1.071,1.141,1.156,1.078,1.069,0.819,0.983,1.029,0.978,1.038,0.878,1.049,0.993,1.071,0.966,0.856,1.002,1.045,0.896,0.912,1.012,1.005,0.927,0.99,0.962,1.149,0.887,1.005,1.016,0.937,0.875,0.99,0.886,1.153,0.862,0.88,1.103,1.128,1.026,1.005,1.121 +NM_153648,1.098,0.809,1.02,0.93,0.86,1.019,0.865,0.915,0.918,0.974,1.072,0.8,0.949,1.066,1.011,1.127,1.001,0.986,1.018,0.955,0.951,1.066,1.177,1.012,1.001,0.902,0.99,1.057,1.396,0.936,1.065,1.141,1.174,1.116,0.762,0.918,1.056,0.878,1.011,1.058,0.825,0.801,0.963,0.999,0.934,0.861,1.005,1.015,1.031,0.98,0.836,0.94,0.975,0.911 +NM_153649,0.572,0.768,0.789,0.958,0.603,1.429,0.68,0.361,0.847,0.74,1.146,0.62,0.523,0.409,0.973,1.78,0.623,0.999,0.972,0.837,0.414,0.499,1.187,0.87,0.724,0.71,1.001,0.617,0.443,1.07,0.652,1.326,2.217,1.407,0.178,1.594,1.211,0.602,2.01,1.021,0.747,1.14,0.769,1.698,0.846,1.142,1.149,0.607,1.277,0.666,1.311,1.101,0.884,1.779 +NM_153675,1.169,2.5789999999999997,1.205,2.253,1.3,3.082,2.5300000000000002,1.362,1.187,1.202,2.526,1.141,1.287,1.157,1.588,1.807,1.196,2.419,1.16,2.285,1.3499999999999999,1.191,2.5540000000000003,1.164,3.083,1.372,1.351,1.2690000000000001,3.695,3.58,1.284,1.831,1.9820000000000002,4.767,1.592,2.538,2.6630000000000003,1.3760000000000001,3.287,2.14,1.254,2.493,2.331,3.12,1.308,1.733,1.387,1.2759999999999998,1.734,1.135,2.2800000000000002,1.7000000000000002,1.244,1.4649999999999999 +NM_153676,0.999,1.044,0.978,0.908,1.126,1.059,1.075,1.025,1.094,0.962,0.939,1.039,1.03,0.885,1.005,1.011,1.037,0.94,0.976,1.144,0.867,0.905,0.885,1.044,0.887,0.972,0.748,0.957,1.332,1.01,1.003,0.979,0.947,0.9,0.885,1.131,1.098,1.026,0.97,1.039,1.029,1.038,1.01,0.926,1.058,1.042,1.012,1.151,1.051,1.047,1.03,0.986,1.001,1.134 +NM_153681,1.103,1.107,1.046,0.922,1.0,0.992,0.797,0.889,1.249,1.092,0.946,0.917,0.959,0.924,0.821,0.957,0.988,1.106,1.181,0.902,0.905,0.957,1.132,1.028,1.108,0.967,0.965,0.983,1.022,0.962,0.861,1.173,0.923,1.2,0.952,0.987,0.939,1.004,0.988,1.085,1.064,1.05,0.87,0.864,1.0,0.968,1.049,0.993,0.936,0.951,1.02,1.019,1.011,1.055 +NM_153682,0.606,1.557,1.089,0.783,0.715,1.742,0.797,0.554,0.946,0.804,1.601,0.618,0.749,0.971,1.211,1.553,0.708,0.73,1.156,1.121,0.528,0.778,1.185,0.945,0.73,0.593,0.984,0.902,0.425,1.63,0.784,1.022,2.189,2.577,0.396,0.643,1.05,0.82,1.012,0.789,0.965,1.786,0.669,1.069,0.939,1.506,0.753,0.585,0.6,0.643,1.106,0.657,0.85,1.26 +NM_153686,0.958,0.894,1.041,0.908,1.038,1.01,0.894,1.014,0.993,1.062,0.914,1.006,1.001,0.919,0.998,1.226,0.919,1.04,0.867,1.038,0.945,1.111,1.066,0.99,0.963,1.021,0.905,0.924,0.781,1.034,1.161,0.929,0.995,1.017,0.838,0.925,1.04,1.154,1.033,0.96,0.957,1.061,0.975,0.968,0.907,1.014,1.038,1.097,1.022,1.083,0.954,1.034,0.905,1.072 +NM_153689,0.967,1.006,1.055,0.926,1.217,0.999,0.961,1.07,1.011,1.01,1.004,0.957,1.067,0.785,1.01,0.878,1.008,1.083,0.908,0.921,0.867,0.994,0.978,1.155,1.001,0.958,0.955,1.103,1.059,1.027,0.961,1.0,1.214,0.971,0.909,1.004,0.889,1.022,1.204,1.106,1.064,1.029,0.894,1.097,0.921,1.153,1.045,1.033,1.129,0.936,1.017,0.97,0.958,0.986 +NM_153690,1.443,0.732,2.229,0.765,0.964,0.966,0.735,0.963,0.907,1.696,1.0,1.537,1.014,0.837,0.826,1.228,1.98,0.949,2.183,0.595,1.199,1.021,0.699,1.05,1.002,1.273,1.716,0.816,0.691,1.265,0.852,0.918,1.71,1.105,0.783,0.841,0.772,1.144,1.12,1.616,1.186,1.077,0.573,3.004,1.62,0.599,0.947,1.151,0.681,5.03,0.787,1.061,2.209,1.107 +NM_153691,1.083,1.148,1.009,1.037,0.981,0.984,0.907,0.933,1.02,0.964,1.028,0.867,0.986,0.902,0.967,0.952,0.927,0.922,0.889,1.055,1.138,0.962,1.079,0.93,0.97,0.912,1.015,1.019,1.391,1.054,1.046,0.794,1.009,0.868,1.048,0.985,1.122,1.01,0.883,1.07,1.074,0.998,1.293,0.993,1.102,1.033,0.979,0.879,1.028,0.869,1.098,0.795,1.054,1.16 +NM_153692,1.089,1.033,1.036,1.058,0.984,0.884,1.138,0.872,1.124,0.964,1.024,0.946,0.99,1.046,0.958,1.082,1.021,1.027,0.923,1.044,0.946,1.02,0.835,1.03,1.058,1.102,1.054,1.138,1.017,0.989,0.904,1.095,0.909,1.078,0.968,1.118,0.922,1.004,1.089,0.805,0.981,0.983,1.033,0.947,0.959,1.11,1.061,0.947,1.023,0.954,0.961,0.905,0.949,1.012 +NM_153694,0.957,1.023,0.99,1.061,1.097,1.052,0.82,0.863,1.007,0.964,1.043,1.028,1.046,1.001,0.836,0.949,1.103,0.963,0.985,0.853,0.983,0.951,0.912,1.144,0.976,1.074,1.006,0.996,0.972,1.016,0.949,0.919,1.058,1.04,0.991,1.066,0.926,1.063,1.009,0.747,1.081,1.089,1.008,1.023,0.939,1.016,1.075,1.035,0.89,1.171,0.939,0.981,0.932,1.08 +NM_153695,0.943,0.896,1.137,0.905,1.07,1.227,1.038,1.152,1.001,0.95,0.834,1.011,1.189,0.784,1.044,0.958,0.984,1.092,1.018,1.01,1.216,0.888,1.105,0.979,1.026,0.971,0.983,1.07,0.994,0.824,0.941,0.963,0.959,0.944,1.027,1.084,1.024,1.108,1.147,0.872,0.862,0.902,1.27,1.014,1.107,0.854,1.143,1.109,0.969,1.03,0.938,1.088,0.99,1.124 +NM_153696,1.121,0.921,1.27,0.987,0.937,0.997,1.026,1.108,0.899,1.147,0.938,0.996,1.076,0.968,1.056,1.025,1.0,0.977,1.177,0.931,1.006,0.977,0.893,0.986,0.897,1.04,1.257,0.863,0.943,0.954,1.02,1.158,0.968,0.986,0.908,1.373,0.936,1.0,1.037,1.031,1.095,1.825,0.842,1.002,1.105,1.027,1.011,1.081,0.958,1.115,1.152,0.887,1.069,0.952 +NM_153699,0.888,2.745,0.872,1.944,0.857,1.364,1.023,0.791,0.856,0.645,1.987,0.848,0.818,0.808,1.374,9.231,0.778,1.999,0.832,1.202,0.77,1.145,1.162,0.96,1.597,0.814,0.905,0.808,3.312,1.485,0.862,0.909,0.844,5.382,0.783,0.795,4.563,0.822,2.259,0.741,0.71,3.322,2.099,0.855,0.787,1.417,2.269,0.926,0.982,0.854,1.9,0.788,0.829,0.854 +NM_153700,0.896,1.011,0.756,1.11,0.991,1.12,1.117,1.102,1.028,0.916,0.958,1.122,1.001,0.815,0.787,1.088,1.031,0.944,1.003,1.185,1.005,1.01,0.977,0.936,0.869,1.032,1.071,1.191,1.129,0.894,0.992,1.105,0.818,1.074,1.036,1.106,0.965,0.895,1.109,1.105,1.231,0.958,1.233,0.767,1.013,0.912,0.891,1.003,0.975,1.054,1.158,1.098,1.291,0.9 +NM_153701,0.837,1.205,1.052,0.995,0.995,1.027,0.889,1.032,0.912,0.874,1.007,0.993,0.882,0.962,0.957,0.796,1.054,0.952,1.139,0.942,1.077,0.869,0.947,1.074,0.925,1.011,1.081,1.076,0.606,0.967,0.97,1.062,1.016,1.028,0.904,0.998,0.988,1.047,0.993,1.072,1.012,0.883,0.829,1.08,1.087,1.032,0.986,1.063,0.91,1.035,0.987,1.052,1.021,0.988 +NM_153702,0.742,1.149,0.982,0.98,0.715,1.376,0.987,0.641,0.834,0.696,1.981,0.883,0.752,0.747,0.999,1.736,0.927,1.271,1.031,1.322,0.608,0.849,1.471,0.82,0.88,0.701,1.149,0.772,0.783,1.347,0.804,1.059,1.603,1.4,0.47,0.863,1.798,0.85,1.536,0.832,0.804,1.167,1.204,1.158,0.925,1.566,1.514,0.751,1.063,0.762,1.471,1.146,0.828,1.247 +NM_153703,0.833,1.386,0.791,0.958,1.023,0.991,1.301,0.697,0.853,0.902,1.095,0.844,0.772,0.745,0.981,1.049,0.745,0.942,0.67,1.151,0.807,0.803,1.648,0.801,1.249,0.852,0.856,1.247,0.702,2.035,0.592,16.92,2.075,3.426,0.821,0.98,1.013,1.175,1.496,0.901,0.96,2.634,0.977,0.738,0.83,0.901,1.01,0.87,0.798,0.911,1.193,1.008,0.826,1.355 +NM_153705,0.964,0.902,1.114,0.728,0.974,1.113,0.716,0.917,1.366,0.823,0.8,1.109,0.882,0.91,1.154,0.998,0.734,0.767,0.996,0.867,0.811,0.914,1.355,1.13,0.932,0.928,1.158,1.425,0.53,1.311,1.045,2.647,1.345,1.318,0.56,1.026,0.864,0.938,1.235,0.976,1.177,1.053,0.637,0.802,1.002,0.799,0.905,0.793,0.809,0.815,1.224,0.72,0.84,2.461 +NM_153706,0.939,1.08,1.231,0.855,0.963,1.528,0.733,0.971,1.178,1.027,1.154,0.938,0.798,0.831,1.307,2.005,0.584,0.891,0.78,0.754,0.797,1.235,1.047,0.591,0.77,0.851,0.9,1.105,0.803,0.849,0.966,0.726,1.727,1.094,0.69,0.976,1.439,1.289,1.275,0.797,0.988,1.184,0.827,1.009,1.113,1.125,1.029,0.922,1.188,0.698,1.21,0.766,0.932,1.767 +NM_153707,0.994,1.026,1.179,0.907,1.058,1.062,0.956,0.94,1.037,0.989,1.069,1.015,1.083,0.873,0.955,1.051,0.951,1.058,0.952,1.007,1.137,1.108,0.936,1.071,0.987,1.074,0.997,1.09,1.158,1.012,1.141,1.041,1.1,0.902,1.046,1.005,0.975,1.036,1.014,0.94,0.877,1.007,0.785,1.006,0.99,1.014,0.987,1.003,0.988,1.122,1.107,0.997,1.019,0.862 +NM_153708,1.02,0.861,1.039,1.052,1.037,0.942,0.903,1.115,0.936,1.053,1.07,1.06,0.953,1.006,1.085,1.061,1.112,1.084,1.036,1.065,1.033,0.936,0.998,0.965,1.009,0.961,0.941,0.852,1.034,1.0,1.057,1.139,1.006,1.026,0.992,0.881,1.109,0.948,1.039,0.961,1.072,0.865,1.178,0.871,0.965,0.928,0.948,1.017,0.886,0.991,1.02,0.919,0.933,0.977 +NM_153711,1.044,0.986,0.951,1.114,1.181,0.95,0.852,1.071,0.894,0.805,0.925,1.094,0.888,0.955,0.746,0.948,0.921,1.109,0.942,0.947,1.06,1.016,1.13,1.011,1.014,1.23,1.004,0.929,1.208,1.002,0.998,1.086,0.928,0.93,0.976,1.073,0.913,0.964,1.008,0.949,1.005,1.101,1.117,0.977,1.019,1.012,0.998,1.059,1.041,0.864,1.081,0.915,0.987,1.058 +NM_153712,1.014,0.861,1.09,0.958,0.977,1.065,0.964,0.976,1.027,1.046,1.088,1.052,1.153,1.346,0.941,0.861,1.016,1.083,0.936,0.911,0.989,1.054,0.955,0.88,1.0,0.927,0.849,1.088,0.832,0.986,0.872,1.032,0.994,0.923,1.095,1.11,1.027,0.944,1.193,0.972,1.031,0.956,0.924,0.976,1.01,0.962,0.973,1.072,0.926,0.977,1.081,1.001,1.127,0.932 +NM_153713,0.81,1.08,1.037,0.976,0.95,1.055,1.072,0.884,0.877,0.931,0.994,0.849,0.816,0.947,0.791,0.823,0.991,0.912,0.876,0.944,0.696,0.797,1.069,1.017,1.046,0.898,1.157,0.923,1.064,1.043,1.131,2.066,0.975,1.239,0.869,1.085,1.022,0.891,0.947,0.897,1.067,1.189,0.853,1.073,0.939,0.997,1.006,0.763,0.748,0.927,1.025,1.061,1.096,1.47 +NM_153715,1.799,2.734,1.816,1.814,1.9820000000000002,4.502,1.609,1.697,1.613,1.8010000000000002,6.915,1.736,1.767,1.8,3.255,6.468,1.7040000000000002,1.928,1.9369999999999998,4.328,1.825,1.754,7.771000000000001,2.138,1.831,1.657,1.66,1.617,1.67,2.621,1.717,1.542,5.009,1.911,1.77,3.5549999999999997,2.4299999999999997,2.09,4.051,4.607,1.8159999999999998,5.022,3.0709999999999997,5.896,1.751,6.017,3.7680000000000002,1.757,5.077999999999999,1.732,4.08,3.03,1.835,3.721 +NM_153716,1.091,0.908,1.001,0.951,1.126,0.897,1.102,1.054,0.962,0.931,1.016,1.012,1.059,1.086,1.083,1.009,1.084,1.021,0.973,1.024,1.187,1.001,1.061,0.909,0.894,1.064,1.122,0.951,0.858,0.904,1.019,1.02,0.975,0.963,0.887,0.853,1.064,1.048,1.032,1.012,1.076,0.976,1.024,1.101,1.105,0.999,0.884,0.927,0.925,0.886,1.083,0.99,0.935,0.908 +NM_153717,1.9699999999999998,1.956,2.149,2.133,2.17,1.927,1.973,1.999,1.904,1.9609999999999999,1.976,1.9929999999999999,2.0700000000000003,2.052,1.819,1.9380000000000002,1.967,2.167,1.9380000000000002,1.988,1.88,1.8239999999999998,1.888,2.001,2.0700000000000003,1.837,2.138,1.9849999999999999,2.254,1.923,1.901,2.3209999999999997,2.056,2.077,2.262,1.996,1.9449999999999998,2.2560000000000002,1.9329999999999998,1.947,2.067,2.024,1.9540000000000002,1.991,1.915,1.9509999999999998,1.8419999999999999,2.096,1.79,2.125,2.001,1.9020000000000001,1.959,2.032 +NM_153742,0.941,1.44,0.9,0.974,1.219,1.235,0.971,0.892,0.906,0.756,1.285,0.893,0.731,1.024,0.996,1.605,0.942,1.179,0.953,1.104,0.743,0.728,0.993,0.945,1.126,0.898,0.883,0.988,0.757,0.962,1.063,1.063,2.021,1.046,4.132,0.766,1.421,2.668,1.58,0.736,0.837,0.999,0.868,0.838,0.854,1.419,1.255,0.981,1.261,0.786,1.015,0.804,0.877,1.441 +NM_153746,0.638,1.579,0.553,0.79,0.641,1.004,0.982,0.511,0.435,1.232,0.884,0.897,0.718,0.307,0.566,1.22,0.745,1.262,0.516,1.021,0.466,0.479,1.363,0.605,0.982,0.439,0.98,0.547,0.691,1.626,0.432,1.151,0.808,1.722,1.21,1.168,1.102,1.139,1.391,1.271,0.575,1.221,0.759,2.026,1.278,0.698,1.031,0.671,0.598,1.459,1.3,1.178,0.701,1.15 +NM_153747,0.522,1.243,1.17,0.789,0.763,1.393,0.719,0.557,0.972,0.708,1.62,0.661,0.579,0.685,0.972,1.482,0.642,0.831,0.857,1.097,0.551,0.795,1.236,0.679,0.64,0.573,1.073,0.843,0.553,1.509,0.909,1.985,2.431,2.196,0.252,1.681,1.155,0.848,1.124,1.501,0.904,1.206,0.726,1.566,0.821,1.105,0.98,0.616,0.787,0.673,1.135,0.578,0.848,1.361 +NM_153750,1.057,0.985,1.603,1.025,1.412,1.047,0.991,1.383,1.137,1.173,1.061,0.986,1.175,1.08,1.48,1.058,1.316,1.172,1.262,0.883,1.079,1.17,0.883,1.131,0.941,1.423,1.033,1.397,0.905,0.922,1.165,0.923,1.197,0.928,1.591,0.858,0.932,1.173,0.967,0.949,1.389,0.971,0.947,1.023,1.09,1.035,1.06,1.39,0.95,1.22,0.899,0.897,0.941,0.9 +NM_153752,1.094,1.159,0.974,1.156,1.001,0.929,1.04,1.02,0.834,0.91,1.115,0.996,1.124,1.023,0.954,0.991,0.979,0.928,1.2,0.842,0.838,1.063,1.03,0.94,1.08,1.083,0.888,0.978,0.977,0.989,0.901,1.02,0.88,0.991,1.087,1.05,0.967,0.999,0.999,0.962,1.056,1.04,0.957,1.004,0.998,0.954,0.966,1.01,0.915,0.982,0.973,1.05,1.06,0.966 +NM_153753,1.055,1.045,0.974,0.983,1.069,0.984,0.984,0.919,1.065,1.038,0.934,0.916,0.988,1.054,0.906,0.832,1.144,1.06,1.014,0.936,0.917,1.044,1.017,1.004,1.084,0.931,0.886,1.06,0.735,0.99,1.022,1.041,1.078,0.962,0.981,0.946,1.012,0.93,1.015,1.175,1.078,0.915,0.903,1.02,0.919,0.925,1.151,0.982,0.918,1.099,0.991,0.981,1.131,1.056 +NM_153755,1.008,0.893,1.0,0.973,1.025,0.991,1.064,1.032,1.0,1.0,0.979,0.901,1.011,1.198,1.012,1.006,0.959,0.868,0.951,0.946,1.018,1.08,0.846,0.996,1.058,0.882,1.048,0.997,1.944,0.857,1.068,0.984,0.939,1.029,0.971,0.874,1.031,1.048,1.011,1.08,0.993,0.976,0.972,0.821,0.827,0.863,0.961,1.082,0.961,1.032,1.029,0.961,1.036,0.911 +NM_153756,0.913,1.309,1.042,0.951,1.133,0.846,1.037,0.889,0.989,0.971,1.152,0.879,1.033,0.757,0.789,0.975,1.053,1.024,0.921,1.045,0.914,0.948,1.044,0.87,2.152,0.921,0.947,1.076,1.032,1.03,0.873,1.158,0.974,1.052,1.156,0.925,1.046,1.061,1.022,0.872,0.828,1.111,0.905,1.082,0.981,0.95,0.822,0.893,0.941,1.008,0.99,1.107,0.995,1.067 +NM_153757,0.919,1.154,1.004,0.936,0.969,1.341,0.949,0.888,0.95,1.068,1.242,0.899,0.864,0.86,1.047,1.152,0.949,0.938,0.867,1.156,0.939,0.886,1.106,0.889,0.897,0.843,0.98,0.914,0.619,1.451,0.856,1.233,1.51,1.347,0.926,0.905,0.947,1.022,1.089,0.921,1.07,1.147,0.978,0.78,0.904,1.163,0.902,0.882,0.936,0.88,1.223,1.065,1.132,1.16 +NM_153758,2.042,1.944,3.54,2.292,2.056,2.024,2.218,1.924,1.919,2.0389999999999997,1.946,2.016,2.1109999999999998,1.8559999999999999,1.767,1.988,18.936,1.9729999999999999,2.552,1.993,2.026,2.054,1.926,2.1180000000000003,2.231,1.9169999999999998,21.617,1.7469999999999999,1.973,2.041,1.907,2.0410000000000004,2.0330000000000004,2.019,2.059,1.931,1.899,1.924,2.0869999999999997,2.021,2.032,2.0140000000000002,1.842,2.232,2.0,2.067,1.944,1.876,2.089,3.723,1.851,2.982,4.237,2.774 +NM_153759,0.921,1.081,0.845,0.974,0.988,1.003,0.967,1.038,1.026,0.932,1.095,1.129,1.135,0.908,1.089,0.906,1.076,1.102,0.899,1.011,1.011,0.971,1.167,0.971,1.021,0.917,1.012,0.975,0.838,0.926,0.872,0.877,0.967,0.98,1.075,1.062,1.009,0.944,0.93,0.997,0.908,1.217,0.904,1.02,1.008,1.122,0.979,0.933,1.134,0.937,0.96,0.993,0.986,0.954 +NM_153763,1.8599999999999999,1.918,1.976,1.87,1.936,2.101,1.844,2.048,2.248,2.23,1.924,1.97,1.955,2.1,1.8980000000000001,2.2110000000000003,1.959,1.915,1.984,1.894,1.9220000000000002,1.915,2.323,1.9009999999999998,2.03,1.827,2.081,1.915,2.425,2.005,1.994,2.0100000000000002,2.082,1.847,1.9100000000000001,1.647,2.013,1.846,2.215,2.2030000000000003,1.946,1.9100000000000001,2.302,2.16,1.928,2.092,2.081,1.8639999999999999,2.084,2.057,1.8780000000000001,1.8439999999999999,1.965,2.299 +NM_153770,0.988,1.819,0.956,0.857,0.939,1.06,1.045,0.964,0.933,0.917,1.162,1.024,0.886,1.028,1.04,1.091,0.984,0.948,1.073,1.079,0.818,0.942,1.109,0.875,0.862,0.94,0.959,0.948,0.929,1.547,0.941,2.213,1.462,1.043,0.898,0.967,1.014,0.822,1.522,1.458,0.92,1.18,0.794,1.271,0.91,1.006,1.051,0.932,0.933,0.946,1.198,0.863,1.084,4.45 +NM_153773,0.972,1.045,0.92,1.116,1.121,0.971,1.185,1.185,1.037,1.061,0.846,0.954,1.021,0.871,1.563,1.13,0.996,1.026,0.982,1.067,0.983,0.955,0.872,0.943,0.981,1.088,1.095,0.969,0.726,0.952,0.992,0.928,0.996,1.106,1.201,1.038,1.055,1.096,0.907,1.162,0.888,0.956,0.799,0.98,1.052,0.949,0.976,1.076,0.967,1.022,0.977,0.969,1.02,0.957 +NM_153809,1.015,1.117,1.051,0.999,0.998,0.92,0.978,0.948,1.196,1.026,1.05,0.917,0.871,0.769,0.911,1.023,0.908,0.873,0.989,0.987,1.0,0.858,1.083,0.886,0.976,1.028,0.932,1.0,0.931,1.089,1.047,1.187,1.039,1.194,0.827,1.042,0.915,1.04,1.108,0.995,0.946,1.055,1.251,1.042,1.096,1.025,0.996,0.801,1.04,1.077,1.05,0.836,0.871,0.992 +NM_153810,1.119,0.999,1.08,0.913,1.088,0.951,0.881,1.063,1.238,0.866,0.988,1.001,1.12,0.963,1.225,0.947,1.098,1.12,1.0,1.015,0.87,0.901,0.928,1.188,0.95,1.168,1.305,1.158,1.136,1.023,1.111,1.16,1.05,0.845,1.534,0.92,0.925,0.883,1.086,0.939,1.335,0.867,1.095,1.029,1.079,0.97,1.248,1.35,0.93,1.307,0.98,0.999,0.975,1.026 +NM_153811,0.846,1.04,0.995,0.904,0.84,1.045,0.944,0.796,1.051,0.944,1.257,0.97,0.801,0.741,0.757,1.208,0.85,1.075,1.019,1.09,0.751,0.782,1.35,0.99,0.857,0.84,1.047,0.815,0.927,1.284,0.802,1.221,1.289,1.154,0.628,1.224,1.109,0.784,1.202,1.101,0.813,1.053,0.968,1.797,0.835,1.187,0.901,0.79,1.001,0.881,0.958,0.93,0.843,1.512 +NM_153812,0.891,0.847,1.428,0.849,1.159,0.951,0.73,0.925,1.519,1.104,0.744,0.818,0.761,1.234,1.252,0.94,1.094,0.942,1.311,0.794,0.888,1.034,0.936,1.116,0.675,1.206,1.464,1.219,0.609,1.087,1.479,1.278,1.899,0.976,1.49,0.603,0.761,1.314,1.126,1.413,1.198,0.899,1.006,1.278,1.14,0.785,1.01,1.215,0.723,1.146,0.709,0.8,1.694,1.246 +NM_153813,0.754,1.34,0.77,1.192,0.708,1.681,0.952,0.608,0.7,0.68,1.18,0.578,0.677,0.6,1.001,1.616,0.681,0.891,0.988,1.025,0.884,0.782,1.047,0.581,1.392,0.92,0.726,0.69,1.063,1.556,0.836,1.249,1.899,2.552,0.725,0.764,1.179,0.735,2.665,0.589,0.706,1.363,0.745,1.962,0.804,0.795,0.593,1.037,0.727,0.899,1.161,0.608,0.997,0.773 +NM_153815,2.1020000000000003,2.293,2.215,2.15,2.019,2.128,2.207,2.032,1.9769999999999999,2.302,1.891,1.944,1.889,1.6400000000000001,1.825,2.017,1.954,2.0789999999999997,2.2199999999999998,1.995,1.871,1.819,2.157,2.133,2.153,1.9729999999999999,1.787,2.012,1.7429999999999999,2.149,2.033,2.206,1.958,2.076,2.286,1.916,2.078,2.066,2.064,1.893,2.077,2.011,2.167,2.091,1.918,1.975,1.947,1.875,1.91,1.905,2.02,1.9209999999999998,1.8900000000000001,2.235 +NM_153816,0.839,0.952,1.053,1.067,1.06,0.902,0.986,0.991,1.083,1.182,1.184,1.082,0.987,1.074,1.123,0.895,0.981,0.981,0.937,1.096,1.05,1.143,0.815,0.949,1.057,1.076,0.929,1.0,1.064,0.953,1.155,1.178,0.988,1.002,1.069,1.062,0.848,0.967,0.95,0.988,1.057,0.96,0.938,1.08,0.965,0.954,1.002,1.0,1.036,0.918,0.996,1.059,1.001,1.047 +NM_153818,0.893,1.108,0.993,1.043,0.809,0.884,0.95,1.041,1.002,0.937,0.957,1.204,0.983,0.973,0.911,1.013,0.988,0.988,1.028,0.913,1.104,0.95,0.826,1.071,0.993,0.972,0.911,1.006,0.736,1.081,1.098,0.87,0.999,1.018,0.976,0.923,0.928,1.147,0.951,0.87,1.059,0.992,1.056,1.199,1.033,0.961,1.15,1.026,0.936,1.078,1.131,1.021,1.074,0.954 +NM_153819,1.044,1.141,0.796,0.999,0.893,1.585,0.882,0.949,0.943,0.826,0.944,1.144,1.073,0.829,0.848,0.964,0.942,1.208,1.059,1.075,1.152,0.94,1.019,0.991,1.217,0.899,1.19,1.365,0.895,1.134,0.947,1.149,1.08,1.134,0.908,1.099,0.884,0.825,1.177,1.272,0.889,1.11,1.153,0.918,1.285,0.997,0.927,1.136,1.047,0.739,1.06,0.964,0.907,1.186 +NM_153822,1.015,0.892,0.927,0.924,0.902,0.914,1.063,1.001,0.929,1.229,1.095,1.114,0.97,1.02,1.005,1.163,0.995,1.163,1.105,1.049,1.152,1.048,1.125,1.008,0.934,0.965,1.066,0.906,1.443,0.841,1.017,0.828,1.017,1.021,0.97,1.069,1.035,1.031,1.072,1.1,0.895,1.088,1.013,0.96,1.08,0.935,0.916,0.913,1.091,1.06,1.035,0.982,0.917,0.946 +NM_153823,1.069,0.98,0.858,0.881,1.044,1.058,1.05,0.942,0.849,0.98,0.909,1.07,0.992,1.055,0.913,0.94,1.122,0.963,1.005,0.951,0.838,0.941,0.958,0.934,0.983,0.991,1.057,1.005,0.913,1.005,1.029,1.076,0.905,1.035,0.859,1.006,1.042,1.022,1.179,1.023,1.009,0.945,1.225,0.958,1.016,0.982,1.045,1.086,0.947,1.012,1.161,0.955,0.826,1.012 +NM_153824,0.323,1.525,0.26,1.174,0.301,1.813,0.837,0.261,0.387,0.356,1.467,0.391,0.382,0.233,0.544,1.579,0.233,1.064,0.719,0.97,0.325,0.353,1.613,0.589,1.613,0.46,0.28,0.285,0.761,1.708,0.32,1.242,1.87,2.151,0.153,1.005,1.111,0.277,2.512,0.896,0.365,1.551,0.511,2.759,0.344,1.016,0.774,0.385,1.054,0.295,1.186,0.479,0.297,2.015 +NM_153825,0.894,1.056,1.05,0.884,1.118,1.288,0.99,1.087,0.916,0.885,1.161,0.916,0.728,0.84,1.295,1.482,0.937,0.93,0.81,1.124,0.821,0.976,1.11,0.809,1.02,0.928,0.981,0.945,0.861,1.226,0.918,1.121,1.04,1.305,0.798,0.969,1.198,0.992,1.185,1.158,0.884,1.022,0.993,0.911,0.89,1.133,0.995,0.898,0.993,0.899,1.059,0.886,0.812,1.122 +NM_153827,1.176,0.91,0.972,0.987,1.13,0.906,1.251,0.889,0.999,1.026,0.838,0.985,0.886,1.163,1.079,0.969,0.932,0.904,0.912,1.047,1.055,1.003,0.952,0.926,0.976,1.053,1.014,1.073,0.774,1.117,0.985,0.945,0.86,0.991,1.067,1.116,1.122,1.075,1.033,0.959,0.927,1.02,1.087,0.878,1.069,1.116,1.108,0.937,1.044,1.049,1.04,0.934,1.03,0.986 +NM_153832,0.95,1.094,0.949,1.073,1.031,0.833,0.787,0.936,0.955,0.839,1.055,1.133,0.977,0.992,1.151,0.907,1.031,0.898,1.104,1.174,0.922,1.04,1.073,1.061,0.854,0.985,0.959,1.098,1.327,1.024,0.882,1.385,0.938,1.006,1.11,0.899,0.967,1.062,1.033,1.04,1.058,0.955,0.932,1.42,1.06,1.02,0.961,0.941,0.913,1.201,0.999,1.272,0.908,1.119 +NM_153833,1.156,0.986,1.135,1.185,0.896,1.024,0.958,1.083,0.964,1.053,1.11,1.12,0.969,0.967,0.985,1.023,0.929,1.061,0.977,0.882,1.049,1.068,0.933,0.986,0.968,1.087,0.87,0.978,0.977,1.043,0.981,0.901,0.948,1.138,1.348,0.844,1.118,0.887,1.017,0.918,1.13,1.09,1.0,0.895,1.057,1.075,1.132,1.026,0.875,1.043,0.894,1.07,1.099,0.993 +NM_153834,1.024,1.21,1.048,1.094,1.1,0.97,0.898,1.061,0.948,1.053,1.133,1.205,0.808,1.113,0.951,0.96,1.094,0.888,0.806,1.038,0.965,0.983,1.025,0.964,1.017,1.06,0.918,1.072,1.256,1.078,1.111,1.177,1.016,1.082,0.982,0.962,0.981,1.125,1.212,0.994,1.068,0.917,1.355,0.868,1.051,0.983,0.902,1.135,1.025,1.092,1.049,1.035,0.878,0.811 +NM_153835,0.984,0.958,0.948,0.947,1.095,0.975,0.95,0.865,1.055,0.986,1.078,1.0,1.187,1.13,1.011,0.985,1.034,0.964,0.916,0.943,0.821,0.859,1.058,0.955,0.987,1.005,0.995,1.034,0.997,1.019,0.996,0.965,0.881,0.914,1.031,1.04,1.027,1.034,1.133,0.879,1.033,0.838,1.114,1.126,1.011,0.94,1.065,1.046,0.993,1.217,0.985,0.903,1.015,1.026 +NM_153836,1.057,0.96,1.026,1.016,0.972,0.926,0.936,0.851,0.91,0.962,0.906,1.055,1.037,1.013,0.957,1.068,0.99,1.132,1.146,1.131,1.046,1.032,1.023,1.124,1.05,0.895,1.115,0.913,0.889,1.005,1.031,0.949,0.86,0.88,0.941,1.069,1.07,1.105,0.9,0.878,0.939,0.942,0.957,1.121,1.0,0.836,0.948,0.938,0.982,0.996,0.951,0.969,1.02,1.156 +NM_153838,1.146,0.997,1.326,0.91,1.156,0.94,0.836,0.964,1.381,1.247,1.038,0.899,0.953,1.36,1.148,0.972,1.168,1.196,1.219,0.879,1.126,1.095,0.865,1.225,0.819,1.078,1.347,1.111,0.775,0.836,1.183,0.817,1.018,0.829,1.084,0.954,0.97,1.231,0.982,0.846,1.551,1.011,0.87,1.111,1.173,1.035,1.165,0.835,0.905,1.015,0.938,1.028,1.131,1.007 +NM_153839,1.006,0.929,0.969,0.997,1.022,0.912,1.072,1.023,0.983,1.02,0.992,1.15,0.929,0.999,1.047,1.114,0.919,1.216,1.083,0.876,0.907,0.867,1.168,0.942,1.033,1.084,1.127,1.055,1.092,0.887,1.019,0.945,0.921,0.881,1.046,0.972,0.878,1.046,1.052,0.978,0.997,1.094,1.066,0.985,1.041,1.156,0.928,1.069,1.049,0.911,0.979,0.908,1.002,1.065 +NM_153840,0.969,0.752,2.296,0.906,1.424,1.627,0.847,0.893,1.845,0.909,1.357,0.654,1.303,1.064,0.687,0.751,3.628,1.748,2.498,1.12,0.945,1.308,0.857,0.856,0.435,1.349,2.271,0.901,0.762,1.151,1.713,0.547,1.317,0.804,2.201,0.613,1.434,0.828,1.804,0.374,2.444,0.798,0.404,0.937,1.833,0.694,1.412,1.092,0.692,2.35,1.545,1.126,1.476,1.158 +NM_156036,0.905,1.282,1.248,0.916,0.937,1.003,0.91,0.992,0.879,0.826,1.268,0.904,0.912,0.894,1.036,0.937,1.039,1.078,1.1,1.007,0.86,0.917,0.73,1.027,0.816,1.058,0.94,0.82,1.023,1.088,0.836,1.022,0.907,1.098,0.96,1.025,1.008,0.91,1.043,1.02,1.115,0.913,0.835,0.95,0.968,1.033,0.934,0.862,0.951,0.993,0.961,1.045,1.025,0.839 +NM_156037,0.773,3.334,0.695,1.095,0.716,1.875,1.296,0.848,0.726,0.718,1.575,0.719,0.681,0.853,1.001,1.055,0.716,2.718,0.783,2.365,0.745,0.704,1.212,0.835,0.818,0.726,0.843,0.825,0.776,1.385,0.666,2.339,0.858,3.088,0.846,0.871,1.828,0.757,4.005,0.931,0.729,1.934,1.439,2.354,0.809,1.862,1.003,0.834,0.771,0.735,1.353,0.999,0.658,0.818 +NM_156039,0.938,1.193,1.037,1.008,1.179,1.116,1.022,0.93,0.85,0.969,0.937,0.989,0.999,1.026,1.106,1.085,0.92,1.125,1.139,1.162,1.098,0.97,0.982,0.895,1.002,0.911,0.94,0.836,0.927,0.988,0.971,1.035,0.991,0.903,1.036,0.986,0.992,1.022,1.107,1.012,1.068,0.986,1.265,1.003,0.935,0.96,1.183,1.058,1.106,1.113,0.975,1.077,1.022,0.983 +NM_170587,1.053,0.955,1.006,0.913,0.89,1.012,0.953,0.999,0.938,1.021,1.037,1.171,1.05,1.026,0.783,0.987,0.956,0.965,1.156,0.947,1.037,0.945,0.896,0.917,0.963,0.994,1.038,1.043,0.771,0.922,0.99,1.072,1.055,1.064,0.99,1.026,0.947,1.043,0.918,1.043,0.965,1.104,0.892,0.914,0.911,0.969,1.038,0.937,1.053,0.964,0.915,0.978,0.941,1.051 +NM_170589,0.883,1.073,0.962,0.997,1.05,0.92,0.94,0.876,1.132,1.007,0.977,0.995,0.998,0.949,0.866,0.831,1.068,1.103,1.072,0.937,1.002,1.02,1.185,0.987,0.989,0.978,0.927,1.074,0.989,1.019,0.973,0.857,0.926,0.929,1.049,1.173,0.955,1.142,1.1,0.973,0.842,0.973,1.009,0.975,0.947,1.063,1.087,1.0,1.039,1.139,1.091,1.028,1.116,1.161 +NM_170600,1.002,1.156,1.167,1.056,0.954,0.765,0.892,0.929,0.773,0.931,0.855,0.848,0.92,0.764,1.088,0.788,0.953,0.946,0.931,0.887,0.88,0.923,1.045,0.939,0.934,1.029,0.997,0.832,0.775,0.99,0.893,1.638,1.037,1.1,0.76,1.054,0.881,0.945,1.34,1.637,0.884,1.356,1.012,1.0,1.058,0.896,0.961,0.762,0.815,0.992,1.061,1.367,0.943,1.287 +NM_170601,0.621,1.524,1.061,0.711,0.674,1.52,0.577,0.295,0.65,0.65,3.667,0.371,0.414,0.493,1.681,3.567,0.715,0.806,1.217,2.824,0.571,0.515,2.329,0.747,0.677,0.641,0.964,0.6,0.36,2.541,0.595,1.451,0.778,1.55,0.241,1.703,2.136,0.558,1.699,0.7,0.905,2.227,1.462,1.133,0.752,3.532,0.947,0.563,1.969,0.731,2.571,0.532,0.84,1.075 +NM_170604,1.994,2.049,1.881,2.051,1.8849999999999998,2.193,2.195,2.414,1.995,1.9489999999999998,2.127,1.8719999999999999,1.931,2.13,2.219,2.207,1.9769999999999999,2.134,2.282,2.323,2.286,1.9859999999999998,2.1340000000000003,1.922,2.154,2.1079999999999997,1.741,1.915,1.9300000000000002,1.996,2.12,2.1189999999999998,1.968,2.037,1.824,2.018,1.919,2.017,2.097,2.027,1.998,2.003,1.9869999999999999,1.9449999999999998,2.056,2.089,2.069,1.8439999999999999,1.899,1.987,1.875,1.952,1.967,1.968 +NM_170605,1.153,1.164,1.145,1.05,0.97,1.039,0.833,0.893,1.263,1.061,0.977,0.9,0.931,1.131,0.934,1.035,0.953,0.975,1.046,1.231,0.998,1.129,1.04,0.871,0.939,0.862,1.019,0.978,0.843,0.941,1.155,0.947,1.206,0.975,1.024,1.083,1.095,0.996,1.079,0.85,1.036,0.993,0.997,0.989,1.092,0.936,0.855,1.014,0.997,0.929,0.992,1.023,1.048,1.092 +NM_170606,1.029,1.013,0.88,0.986,1.009,1.007,0.961,0.98,1.043,0.983,0.889,0.968,1.009,0.927,1.098,1.021,1.004,0.92,0.963,1.143,1.13,1.014,1.013,1.043,1.061,1.099,1.009,1.158,0.765,1.064,1.057,0.909,0.899,0.982,0.938,0.978,0.988,1.04,1.069,0.959,0.969,1.008,1.025,0.862,0.989,1.041,0.956,1.192,1.033,0.954,1.067,0.963,1.051,0.968 +NM_170607,1.027,1.047,0.951,1.065,0.917,0.981,1.012,0.964,0.89,1.084,0.88,1.016,0.953,0.948,1.36,0.979,1.064,0.947,0.987,0.958,1.042,1.031,0.983,1.023,1.11,1.114,1.081,0.914,1.197,1.06,0.937,1.101,0.873,1.041,1.172,1.084,0.977,1.04,0.963,1.027,1.035,0.989,0.85,0.978,0.905,0.841,1.032,0.908,0.968,0.883,0.981,0.92,0.973,1.088 +NM_170609,1.007,0.946,0.934,0.913,1.053,1.017,1.123,0.916,1.062,0.947,1.141,0.975,0.928,1.077,0.908,0.946,1.043,1.109,0.978,1.034,1.041,0.988,0.989,0.993,0.914,0.951,0.815,1.186,0.723,1.018,1.051,1.117,0.945,0.884,1.03,0.909,0.958,1.035,1.018,0.879,0.97,0.916,1.186,1.081,0.95,1.012,0.955,1.193,1.117,0.924,1.005,1.022,1.034,0.904 +NM_170610,0.966,0.927,1.049,0.926,1.14,1.027,0.951,1.118,0.96,0.893,0.895,1.165,0.995,0.825,1.139,0.998,1.018,1.129,0.945,1.121,0.874,0.991,0.973,1.044,1.013,0.986,1.019,0.964,0.966,1.008,1.099,0.962,1.113,0.881,0.868,0.921,0.997,0.862,1.047,1.08,1.039,1.013,0.863,1.026,1.062,1.049,0.929,1.04,1.063,0.964,0.98,1.008,0.923,1.06 +NM_170662,0.413,1.422,0.858,0.814,0.484,1.924,1.163,0.34,0.444,0.455,1.506,0.485,0.385,0.44,0.827,0.967,0.61,1.052,0.561,1.547,0.4,0.386,1.096,0.583,0.936,0.445,0.911,0.445,1.349,2.083,0.443,1.467,1.259,1.854,0.295,1.058,1.497,0.543,1.763,1.338,0.557,1.651,0.836,1.027,0.518,1.248,0.749,0.392,1.072,0.503,1.305,0.85,0.582,0.885 +NM_170664,2.012,1.876,2.175,2.03,1.954,1.803,1.749,1.8860000000000001,1.976,2.038,2.075,2.019,2.1420000000000003,1.807,1.745,2.0389999999999997,1.935,1.923,1.8780000000000001,1.821,2.075,1.879,2.495,1.9979999999999998,1.854,1.8119999999999998,1.8880000000000001,1.908,1.851,1.9699999999999998,1.826,2.5700000000000003,2.035,1.814,2.025,2.098,1.998,1.91,2.018,1.912,2.133,2.293,1.7570000000000001,2.114,1.7810000000000001,1.892,2.192,1.8780000000000001,2.06,1.899,1.9859999999999998,2.263,2.1639999999999997,2.5540000000000003 +NM_170672,0.995,0.841,0.91,0.874,0.933,0.968,0.916,0.91,0.975,0.939,0.972,1.169,1.068,1.005,1.047,0.917,0.931,1.097,1.11,0.882,1.068,1.046,1.068,1.049,1.072,0.945,0.967,1.035,0.855,0.961,0.984,1.104,1.039,0.917,0.893,1.023,0.955,1.116,1.076,0.925,0.861,1.065,0.813,1.026,1.083,0.937,1.055,0.985,1.07,0.942,0.969,1.038,1.032,1.048 +NM_170678,0.876,1.012,0.951,0.942,1.042,1.081,0.988,1.058,1.096,0.97,1.307,0.888,0.995,1.194,0.99,1.019,0.937,1.322,0.979,0.988,1.239,0.951,1.155,1.123,1.102,1.112,1.145,0.961,1.514,0.834,1.011,1.017,0.831,1.051,1.014,1.106,1.058,0.924,0.831,1.033,1.051,1.062,0.97,1.001,0.852,1.176,1.068,1.056,0.801,0.882,0.996,1.105,0.802,0.949 +NM_170679,0.719,0.952,1.367,0.507,1.227,1.378,0.512,1.144,1.407,1.044,0.924,1.271,0.948,0.625,1.164,1.975,0.817,1.02,1.384,1.075,0.459,1.155,1.062,1.32,0.44,0.902,1.14,1.272,0.326,1.059,1.359,0.972,1.272,1.334,0.78,0.592,1.143,1.476,1.267,0.682,1.22,1.009,0.495,0.542,1.107,0.952,1.291,1.164,0.932,0.93,1.161,0.782,0.851,1.272 +NM_170681,1.911,2.002,2.008,1.9729999999999999,2.008,1.903,1.889,1.8889999999999998,2.069,1.923,2.183,1.9829999999999999,2.105,1.994,1.794,1.691,2.104,2.085,2.001,1.999,1.9809999999999999,2.07,1.783,1.9169999999999998,1.933,1.81,2.166,1.914,2.604,2.169,1.98,1.884,1.972,2.029,2.1,1.91,2.028,1.986,2.21,1.862,2.08,1.989,2.0389999999999997,2.017,1.839,1.9409999999999998,2.018,2.008,2.0309999999999997,1.914,2.026,1.8530000000000002,1.9620000000000002,2.085 +NM_170683,1.054,1.061,0.946,1.07,1.004,0.916,0.966,1.009,1.112,1.134,1.044,1.002,0.88,0.92,0.761,1.038,0.997,1.079,0.855,1.004,0.941,1.038,0.949,1.025,0.979,1.035,0.929,1.015,0.812,0.955,0.909,1.004,0.888,0.997,0.914,1.081,0.948,1.019,0.997,1.064,1.059,1.004,0.985,1.044,0.964,0.967,1.09,1.035,1.047,0.986,1.1,0.93,0.991,1.038 +NM_170685,0.918,1.009,0.961,0.922,0.961,1.026,1.099,1.197,1.002,1.115,1.064,1.024,1.012,1.076,0.915,1.044,0.936,1.027,0.888,1.02,0.912,1.076,1.023,1.101,0.992,1.151,0.975,0.951,0.711,0.989,1.068,1.007,0.975,1.0,1.1,0.982,1.16,1.035,1.042,0.957,1.014,1.025,1.029,1.062,0.993,1.078,0.878,1.077,0.942,1.024,0.976,1.013,1.022,1.029 +NM_170686,0.904,0.771,1.317,0.681,1.193,1.036,0.674,1.276,1.292,0.92,0.87,0.968,0.807,0.863,1.053,1.072,0.931,0.867,1.372,0.911,0.848,1.291,1.54,1.048,0.704,0.948,1.41,1.272,0.657,1.315,1.369,0.901,1.218,1.107,1.217,0.65,1.016,1.34,1.025,0.76,1.126,1.117,0.672,0.606,1.082,0.773,0.851,0.992,0.786,0.992,1.063,0.799,0.796,1.037 +NM_170692,3.0540000000000003,1.6949999999999998,2.474,1.8639999999999999,3.338,1.544,1.7069999999999999,2.871,3.6399999999999997,2.498,1.744,2.401,2.388,2.168,2.6950000000000003,1.8900000000000001,2.3289999999999997,2.463,2.752,1.593,2.151,2.481,1.6989999999999998,2.496,1.702,2.697,2.033,3.205,1.221,1.5779999999999998,3.4349999999999996,1.928,2.623,1.609,7.361000000000001,1.744,1.808,3.387,2.033,1.9669999999999999,2.873,1.7839999999999998,1.524,2.255,2.726,1.721,2.24,3.098,1.803,2.347,1.9300000000000002,1.967,2.433,2.263 +NM_170693,1.063,1.012,1.042,1.117,0.989,0.993,0.946,0.959,1.173,0.968,0.92,1.125,0.929,0.95,0.986,1.132,1.064,1.085,0.986,1.094,1.075,0.941,1.148,0.998,1.102,0.986,0.981,0.974,0.959,0.99,0.885,0.988,0.941,1.031,0.965,1.025,1.276,1.032,1.12,0.953,0.959,1.003,0.879,0.941,1.004,0.973,0.994,0.993,1.137,1.001,0.999,0.897,1.139,1.127 +NM_170694,1.026,1.53,1.119,1.147,0.934,0.908,2.229,0.848,1.24,1.052,0.948,0.969,1.024,0.947,0.909,0.765,0.926,1.097,0.857,1.165,1.021,1.257,0.849,1.111,1.15,1.202,0.988,1.426,0.982,1.205,1.104,1.337,1.069,1.743,0.876,0.896,0.949,1.03,1.033,0.972,1.139,1.407,0.75,0.76,1.043,0.706,0.881,1.085,0.8,0.769,0.837,1.001,0.884,1.279 +NM_170695,0.984,0.958,0.886,1.069,0.962,0.922,0.951,0.96,0.828,0.93,1.014,1.015,1.095,1.051,0.838,1.025,1.003,1.16,0.982,1.14,1.068,1.035,1.024,1.014,0.978,1.057,0.892,1.155,1.139,0.985,1.004,0.896,1.095,1.01,0.972,0.928,1.136,1.075,1.122,0.919,1.062,0.911,1.081,1.092,0.965,0.867,1.118,0.99,0.869,0.994,1.12,0.984,1.043,0.893 +NM_170697,1.002,1.195,0.945,1.028,0.898,1.206,1.109,0.988,0.989,1.038,1.13,0.835,0.912,0.82,1.418,1.169,0.891,0.879,0.931,1.363,0.971,0.995,1.05,1.034,1.073,0.967,0.793,1.004,1.305,2.525,0.962,0.83,1.305,2.69,0.926,8.114,1.102,0.993,1.173,1.09,1.009,1.359,0.918,0.903,0.942,1.309,0.824,0.892,0.964,0.907,1.13,1.034,0.737,0.967 +NM_170705,0.998,0.94,1.028,1.028,1.082,1.045,0.922,1.161,0.878,0.991,1.027,0.993,1.032,0.992,0.816,0.881,0.932,0.922,1.051,1.007,1.106,0.933,1.189,0.887,0.891,0.968,0.989,1.075,0.862,0.967,1.097,1.011,1.215,0.876,1.147,1.224,1.002,1.113,0.972,0.961,1.045,0.938,0.902,1.195,0.98,0.981,0.963,0.937,0.933,1.062,1.041,0.942,0.982,0.938 +NM_170706,1.963,2.1959999999999997,1.8279999999999998,1.9980000000000002,2.085,2.062,2.254,2.053,2.121,1.8940000000000001,2.548,1.96,1.9649999999999999,1.9060000000000001,1.741,1.927,1.9729999999999999,2.071,1.729,1.828,1.8170000000000002,2.125,2.795,1.881,1.891,2.009,1.7389999999999999,2.005,2.427,2.006,1.8010000000000002,4.431,2.841,2.099,1.8249999999999997,2.02,1.702,2.0709999999999997,2.401,2.371,2.066,1.983,2.196,1.962,2.0700000000000003,2.037,2.242,2.113,1.8450000000000002,2.02,2.437,2.245,2.004,3.0090000000000003 +NM_170710,1.076,1.051,1.068,0.995,1.036,0.946,0.965,0.949,0.892,0.946,1.014,1.047,0.95,0.988,0.908,1.139,1.07,1.157,1.126,0.966,1.001,1.055,0.979,1.136,1.127,0.832,0.966,0.949,0.794,0.991,0.898,1.078,0.984,1.135,1.06,0.948,0.957,1.071,0.946,1.032,1.068,0.824,1.086,1.103,1.028,1.001,0.928,1.027,1.077,0.932,1.03,0.985,0.913,0.943 +NM_170711,0.93,1.032,1.028,1.019,1.139,1.017,0.787,1.048,1.06,0.942,1.018,1.12,0.88,1.179,0.988,1.001,0.905,1.052,0.974,1.228,0.982,0.956,0.886,1.0,0.971,0.963,0.987,0.986,1.288,0.897,1.151,0.891,0.977,0.996,1.017,0.872,1.2,0.908,1.075,0.919,0.888,0.954,1.118,0.912,0.916,1.044,0.981,1.054,0.983,1.165,1.024,0.767,1.0,1.125 +NM_170712,1.8559999999999999,2.185,1.799,1.879,1.9060000000000001,2.4859999999999998,1.612,1.651,1.7799999999999998,1.548,1.9180000000000001,1.91,1.725,1.8439999999999999,2.0679999999999996,2.3049999999999997,2.017,1.8960000000000001,1.7349999999999999,1.92,1.853,1.9809999999999999,2.676,1.964,1.913,1.9449999999999998,2.277,1.693,1.535,2.5679999999999996,1.8329999999999997,2.44,2.102,2.4290000000000003,1.631,2.084,1.803,2.029,2.573,2.442,1.983,2.108,1.8359999999999999,1.933,1.948,2.335,1.915,1.827,1.991,1.818,1.9780000000000002,1.7109999999999999,1.774,3.402 +NM_170713,1.047,1.018,0.933,0.918,1.038,1.01,0.907,0.995,0.905,0.987,0.927,0.969,1.076,1.044,1.197,0.911,0.933,0.941,0.962,1.048,0.949,0.863,1.195,1.067,1.02,0.935,0.922,1.073,1.006,0.952,0.962,1.069,0.95,1.049,0.954,0.945,1.051,0.919,1.162,1.033,0.963,1.009,1.119,1.046,1.111,0.982,1.086,0.919,0.955,0.906,1.079,0.988,0.961,1.375 +NM_170719,0.877,0.866,1.195,0.882,0.81,0.941,0.711,0.649,1.014,0.78,1.05,0.68,0.563,0.842,1.072,1.446,0.856,0.749,1.143,1.001,0.801,0.717,1.165,0.867,0.79,0.872,1.261,0.723,0.875,1.201,1.007,1.135,1.494,1.28,0.625,0.931,0.96,0.795,1.092,2.543,0.903,1.136,0.766,1.913,0.87,1.119,0.999,0.817,1.011,0.846,1.106,0.948,0.878,2.034 +NM_170720,1.025,0.827,0.992,0.933,1.009,0.891,1.261,0.833,0.945,1.127,1.108,1.019,1.069,1.003,1.168,1.059,1.045,0.954,0.83,1.006,1.078,0.981,0.905,1.073,0.984,0.958,0.847,0.953,1.161,1.052,1.104,0.746,1.023,0.957,1.159,0.989,0.966,0.939,0.87,0.999,0.921,1.015,1.068,0.924,0.89,0.95,1.043,0.985,1.023,0.937,1.018,0.992,1.283,0.981 +NM_170721,0.932,1.073,1.018,0.88,1.003,0.989,1.126,0.847,0.997,0.926,0.982,0.827,0.858,0.941,0.953,1.259,0.96,0.866,0.984,0.958,0.959,0.871,1.07,1.091,0.871,0.865,1.106,1.117,1.066,1.21,1.056,1.477,1.097,1.066,0.993,1.126,0.932,0.882,1.102,0.926,0.921,0.899,1.042,1.037,1.095,1.1,0.905,0.874,1.302,0.913,1.048,0.97,1.164,1.205 +NM_170722,1.684,0.81,3.809,0.812,3.214,0.835,0.539,1.327,3.074,2.831,0.659,1.819,1.063,1.313,1.284,0.988,2.708,1.889,3.024,0.863,1.16,2.071,0.689,2.947,0.441,1.98,3.181,3.045,0.481,1.047,1.616,0.771,1.034,0.859,1.28,0.745,0.694,2.187,0.737,0.449,3.172,0.849,0.533,0.501,3.176,0.713,2.241,2.046,0.531,3.051,1.012,0.779,2.434,0.772 +NM_170723,2.057,2.056,2.152,1.985,1.813,1.8,2.147,2.03,1.862,1.8559999999999999,1.9949999999999999,2.029,2.104,1.9729999999999999,1.729,1.84,1.98,2.0949999999999998,1.9969999999999999,1.8519999999999999,2.298,2.026,1.8399999999999999,2.085,1.899,2.15,2.082,1.953,2.518,1.867,1.983,2.0140000000000002,2.088,1.911,1.9769999999999999,2.032,2.081,1.967,1.846,2.1710000000000003,1.8559999999999999,2.113,2.182,2.0540000000000003,2.282,1.8770000000000002,2.238,1.9580000000000002,1.666,1.7999999999999998,2.123,2.019,1.937,1.8719999999999999 +NM_170724,1.896,1.916,1.889,1.9689999999999999,1.9449999999999998,2.069,2.237,2.441,2.0250000000000004,1.8820000000000001,2.248,2.037,2.044,1.917,1.834,2.024,2.148,1.9100000000000001,2.06,2.149,2.109,2.078,1.931,1.8900000000000001,1.972,1.8719999999999999,1.7890000000000001,1.9809999999999999,2.029,2.049,2.133,1.9220000000000002,2.0060000000000002,1.996,2.096,2.049,2.183,1.9209999999999998,1.992,1.94,1.897,1.8559999999999999,2.186,1.8780000000000001,2.059,1.915,1.964,1.919,1.732,2.0949999999999998,2.1260000000000003,2.0839999999999996,1.9260000000000002,2.08 +NM_170725,0.764,1.152,0.981,0.805,1.024,1.159,0.83,1.041,1.0,0.902,0.898,0.967,0.971,0.899,0.922,1.088,1.02,1.002,0.925,1.131,0.882,0.974,1.166,1.146,0.915,0.903,0.948,0.927,0.857,1.064,1.022,0.916,1.245,1.125,0.875,0.982,0.982,1.104,0.973,1.077,1.082,1.094,0.804,1.067,0.946,1.09,0.968,0.987,0.997,0.887,1.059,1.0,0.748,1.272 +NM_170726,1.651,1.217,1.377,0.983,1.833,0.837,0.558,1.02,1.579,1.694,0.662,2.329,1.518,1.155,1.042,0.901,1.597,1.317,3.173,0.653,1.672,2.796,0.944,2.115,1.094,2.517,1.946,1.187,0.529,1.087,1.668,0.735,0.813,0.831,0.417,0.499,0.691,3.298,1.38,0.95,1.295,0.803,0.574,0.996,1.36,0.591,1.014,2.563,0.609,1.8,0.636,0.716,1.914,0.709 +NM_170731,1.025,0.972,0.95,1.098,0.883,1.009,0.949,0.907,1.002,1.061,0.965,1.107,1.089,1.067,0.952,1.014,0.965,1.023,1.153,0.975,0.952,1.228,0.864,0.951,1.016,0.873,0.911,0.972,1.15,1.03,0.991,0.948,0.913,0.906,1.195,0.938,1.053,1.039,0.993,0.852,0.907,0.943,1.174,0.906,0.993,0.998,0.913,0.978,1.026,1.022,1.059,1.053,1.023,0.911 +NM_170732,1.057,0.933,1.088,0.945,0.918,0.892,0.79,0.938,0.724,1.06,1.171,0.97,1.104,1.376,0.893,1.055,0.975,0.962,1.153,0.868,0.947,1.072,1.004,1.005,1.041,0.791,0.954,1.137,0.956,0.973,0.991,1.174,0.869,0.962,1.03,1.112,1.033,1.055,0.88,1.171,0.891,1.0,1.08,1.102,1.007,1.057,1.045,1.031,1.009,0.968,0.94,1.075,1.064,0.939 +NM_170733,1.001,1.069,1.106,1.028,1.14,0.896,1.024,1.095,0.99,0.992,0.998,0.94,0.977,1.057,0.994,1.025,0.968,0.938,1.072,0.859,0.921,1.153,1.213,0.96,0.813,0.889,1.064,1.074,1.558,1.026,0.93,1.134,0.925,0.945,0.996,1.0,1.19,1.04,1.166,1.052,0.861,1.026,1.444,0.911,0.958,0.945,0.886,1.091,0.919,1.0,0.975,0.929,0.89,1.089 +NM_170734,2.26,1.9460000000000002,2.086,2.162,1.859,2.165,1.931,1.877,2.281,2.1319999999999997,1.938,2.169,1.931,2.005,2.012,1.992,2.075,1.995,1.83,1.927,1.845,1.952,1.803,1.918,2.009,1.8369999999999997,1.9949999999999999,2.101,1.986,1.992,1.871,2.3970000000000002,2.034,1.8,2.042,2.1079999999999997,2.2510000000000003,2.149,2.234,2.004,1.9089999999999998,2.0389999999999997,2.1319999999999997,1.944,2.1689999999999996,2.096,1.9729999999999999,2.2359999999999998,2.017,2.104,1.8849999999999998,1.888,1.9889999999999999,2.0389999999999997 +NM_170735,0.959,1.018,1.039,1.081,1.024,1.071,0.921,1.079,1.097,0.965,0.963,1.0,1.157,0.889,0.848,0.98,0.992,1.038,1.085,0.951,1.223,0.921,1.008,1.04,1.024,1.03,1.038,0.904,0.803,0.956,0.967,0.93,1.06,1.066,1.082,1.071,0.943,1.1,0.911,0.918,1.011,0.957,0.978,0.961,0.98,0.988,0.914,1.05,1.05,1.049,1.066,0.958,1.093,0.864 +NM_170736,0.947,1.127,0.912,0.911,1.028,1.049,0.769,0.928,1.005,0.939,0.835,1.04,1.068,0.957,0.793,0.923,0.97,0.99,0.917,0.7,0.937,1.023,1.037,0.992,1.118,1.039,1.077,0.875,0.637,1.024,0.931,0.948,0.944,0.975,0.948,1.064,1.025,1.131,0.911,1.143,1.027,1.007,1.036,0.987,1.031,0.913,1.012,0.924,1.105,1.004,1.05,1.089,0.954,0.94 +NM_170737,1.051,0.909,1.488,1.234,0.969,0.896,0.956,0.851,0.904,0.876,0.898,1.121,1.147,1.004,0.814,0.73,1.106,0.978,1.329,0.939,1.02,1.1,0.86,1.025,1.329,1.15,1.327,1.162,1.069,1.539,0.987,0.975,0.837,1.216,1.013,0.871,1.0,1.165,0.949,1.269,1.163,1.036,0.68,0.845,0.984,0.864,0.894,1.094,0.893,1.353,0.908,1.022,0.901,1.01 +NM_170738,0.806,1.107,0.999,0.909,0.766,0.833,0.627,0.535,0.991,1.045,1.185,1.129,1.17,0.526,0.821,1.889,0.85,1.107,1.359,0.804,0.623,0.876,1.423,1.471,0.601,0.973,1.314,0.854,0.383,1.05,0.75,1.399,3.449,1.25,0.253,1.512,1.139,0.906,1.689,0.682,1.056,0.969,0.663,1.871,1.006,0.741,1.312,0.879,1.268,0.877,0.822,1.096,0.951,1.952 +NM_170739,1.06,0.901,1.061,1.299,0.964,0.848,0.971,0.875,1.002,0.958,1.025,1.03,0.896,0.932,0.952,1.097,0.989,0.884,1.144,0.94,1.078,0.899,0.896,1.193,0.953,1.052,1.173,1.036,0.739,1.022,0.849,0.932,1.376,0.938,0.86,1.211,1.137,1.05,1.087,1.113,0.939,0.965,0.875,1.057,0.921,0.986,1.036,0.935,0.959,0.914,0.991,0.958,0.983,1.135 +NM_170741,0.873,3.666,0.918,1.069,1.061,0.971,1.563,0.848,0.85,1.011,1.026,1.155,0.979,1.037,0.964,0.859,0.906,1.045,1.049,1.056,0.865,1.017,0.852,1.126,4.342,0.887,0.917,0.878,1.425,1.064,0.837,1.243,0.955,3.493,0.894,0.973,1.546,0.975,0.965,1.056,0.923,1.028,1.491,1.019,0.98,0.976,1.055,1.016,0.911,1.029,1.076,1.187,0.797,0.984 +NM_170742,0.995,0.931,1.082,0.994,1.108,1.055,0.967,0.988,0.956,0.961,0.789,1.0,0.943,1.098,0.912,0.955,0.914,1.035,1.08,1.07,1.001,0.929,1.089,0.951,0.884,1.051,1.323,0.962,1.273,0.962,1.071,0.951,0.997,0.981,1.226,0.828,1.093,1.137,0.867,0.824,1.023,1.017,1.132,0.96,0.973,1.008,0.863,0.962,0.886,0.929,0.908,0.946,1.021,1.05 +NM_170744,1.017,1.004,1.127,0.989,1.039,1.045,1.144,1.053,0.992,0.995,0.901,0.96,0.88,1.171,1.128,0.914,0.958,1.152,0.884,0.991,0.99,0.886,1.223,1.036,1.075,1.111,0.949,0.89,1.397,1.054,0.973,1.161,1.087,1.004,0.965,1.012,0.884,1.177,1.13,1.001,1.062,0.832,1.01,0.994,0.92,1.078,0.991,1.098,1.021,1.082,0.927,0.963,0.861,1.078 +NM_170745,0.928,1.01,1.018,0.962,0.989,0.87,1.238,1.038,0.957,1.01,0.949,0.951,0.94,1.119,1.237,1.047,0.823,1.099,0.922,1.1,0.954,0.949,0.876,1.01,1.013,1.065,0.892,0.852,1.013,1.008,1.067,0.97,1.124,1.046,1.02,1.003,0.97,1.002,1.009,1.005,1.071,1.056,1.253,0.906,0.937,1.063,1.081,1.044,0.928,1.087,1.05,1.067,0.822,1.136 +NM_170750,0.777,0.967,1.287,0.853,0.946,1.177,0.718,0.514,1.104,0.944,1.198,0.863,0.76,0.742,0.92,1.518,0.867,0.952,1.344,1.032,0.698,0.718,1.0,1.077,0.702,0.889,1.348,0.947,0.42,1.388,0.938,1.192,2.277,1.189,0.347,1.023,1.179,0.87,1.237,0.592,1.269,0.999,0.646,1.242,0.973,1.311,1.158,0.75,0.906,0.839,1.061,1.094,0.941,1.232 +NM_170752,0.748,0.914,1.22,0.783,0.885,1.131,0.55,0.665,1.583,1.059,0.873,0.829,0.673,0.954,1.039,1.241,0.858,0.844,0.991,1.006,0.693,0.766,1.16,1.191,0.575,0.717,1.016,0.924,0.394,1.118,1.33,1.197,2.144,1.074,0.624,0.689,0.837,0.739,0.961,1.006,1.15,1.02,0.576,0.98,1.036,1.197,1.091,0.742,0.984,0.801,1.042,0.966,0.956,1.716 +NM_170753,0.921,0.867,1.14,1.0,0.907,0.872,0.894,0.882,1.098,1.094,0.937,1.061,0.898,1.005,0.894,1.184,0.923,0.955,1.073,0.904,0.858,1.022,0.917,1.094,0.846,1.036,1.0,0.986,0.978,0.979,1.23,1.024,1.149,0.913,1.141,1.015,1.008,1.012,1.085,1.024,0.869,1.044,0.774,0.899,1.075,1.045,1.195,1.049,0.936,0.79,1.13,0.97,0.996,1.478 +NM_170754,1.904,2.042,1.8599999999999999,1.826,1.774,2.084,1.923,1.915,2.145,1.936,2.1790000000000003,1.883,1.9180000000000001,1.852,2.074,2.146,1.8199999999999998,1.837,1.843,1.9939999999999998,2.0949999999999998,2.014,2.436,1.8159999999999998,1.9729999999999999,1.793,2.115,1.931,2.117,2.473,1.7360000000000002,3.0309999999999997,1.869,2.955,1.76,1.915,2.048,1.8159999999999998,2.339,2.1189999999999998,2.1189999999999998,2.675,2.164,1.967,2.0300000000000002,2.057,1.93,1.797,1.967,2.004,1.962,2.001,1.8849999999999998,2.1390000000000002 +NM_170768,0.726,0.98,0.969,0.537,0.828,0.957,0.712,0.545,1.031,1.006,1.027,0.687,0.727,0.623,0.734,1.063,0.691,1.036,0.801,0.902,0.819,0.696,1.336,1.072,0.84,0.612,1.164,0.997,0.775,1.17,0.687,1.211,0.814,1.181,0.551,1.472,1.127,0.92,1.723,1.618,1.125,1.241,0.962,1.634,0.932,1.177,1.254,0.56,1.116,0.774,1.151,1.147,0.928,0.993 +NM_170770,1.525,0.915,0.994,0.997,1.877,0.941,0.693,2.946,1.743,0.93,0.77,1.275,1.752,1.764,1.183,0.896,1.484,1.08,1.044,0.672,1.056,2.285,0.744,1.003,0.855,3.508,1.209,1.485,0.796,1.395,2.632,1.111,1.28,1.115,3.562,0.705,0.76,3.174,1.482,0.769,1.57,0.836,0.698,0.846,1.187,0.688,1.468,2.36,0.731,1.347,0.831,0.921,1.266,0.651 +NM_170771,1.032,1.147,1.161,0.98,0.984,0.84,0.999,1.02,1.142,1.083,1.042,1.168,0.984,0.919,0.954,1.049,1.063,1.019,0.781,1.157,0.907,1.173,0.955,1.02,0.913,0.965,1.033,1.068,0.865,1.033,0.997,1.074,0.999,0.992,0.964,1.255,0.976,1.192,1.014,1.028,0.963,1.085,0.964,0.937,0.989,0.987,1.192,1.039,1.052,1.16,0.834,1.052,0.874,1.026 +NM_170773,1.931,1.967,2.057,1.83,1.9209999999999998,2.0949999999999998,1.776,1.759,1.916,1.984,1.8900000000000001,1.842,2.02,1.7639999999999998,1.908,1.671,2.093,2.058,2.007,1.674,2.0170000000000003,1.966,1.876,1.78,1.972,1.847,2.053,1.764,1.627,2.296,1.8730000000000002,2.9859999999999998,2.519,2.278,1.819,1.863,1.892,1.851,2.374,2.692,2.2329999999999997,2.428,1.7690000000000001,1.748,1.942,2.0309999999999997,1.8279999999999998,1.879,1.777,1.998,2.115,2.418,2.112,2.519 +NM_170775,0.854,1.044,1.111,1.132,0.991,0.982,1.139,1.061,1.054,0.952,0.882,0.997,1.05,0.849,0.998,1.02,0.97,1.035,1.029,1.187,1.125,0.92,1.009,0.99,0.882,0.979,0.95,0.999,1.174,1.09,0.95,1.042,1.003,0.903,1.117,1.186,0.972,1.126,0.944,1.106,1.001,1.094,0.91,0.962,1.121,1.002,0.923,0.977,1.178,1.069,0.96,1.11,1.088,1.013 +NM_170776,0.981,1.022,0.926,1.047,1.022,1.13,1.102,1.275,0.983,1.04,0.981,0.957,0.96,1.117,0.877,1.139,0.929,0.917,0.977,0.951,1.025,0.843,0.825,0.999,1.057,1.057,1.227,1.166,1.056,1.003,1.065,1.253,1.261,0.984,1.017,0.965,1.005,1.018,0.987,0.929,0.935,0.995,0.986,1.067,0.89,0.853,0.811,0.926,0.99,0.934,1.053,1.144,1.045,0.85 +NM_170781,1.05,1.037,0.967,1.05,1.031,0.947,1.065,0.924,0.96,1.124,0.935,0.996,1.08,0.918,0.849,0.985,1.069,1.023,0.961,0.919,0.935,1.041,1.062,1.109,1.174,1.012,0.973,1.032,1.148,0.952,0.975,0.954,1.076,0.904,0.988,0.911,0.961,1.074,1.083,1.001,1.054,0.997,1.073,0.931,0.986,0.961,1.095,1.034,1.193,1.093,1.005,1.017,1.051,0.941 +NM_170782,2.006,1.987,1.997,1.8820000000000001,2.051,2.066,1.9949999999999999,2.186,1.922,1.806,1.956,2.005,1.952,1.972,2.285,2.0389999999999997,1.972,1.762,1.8439999999999999,2.013,1.8820000000000001,1.947,1.956,2.012,1.903,2.121,2.093,2.112,1.473,2.284,2.094,2.017,1.718,2.13,1.7080000000000002,2.005,2.026,2.052,1.9249999999999998,2.028,1.952,2.1500000000000004,1.89,1.98,2.109,1.873,2.019,1.966,2.001,1.9020000000000001,2.151,1.83,1.979,2.099 +NM_170783,0.773,0.932,0.936,0.984,0.767,1.12,0.757,0.605,1.1,0.951,1.325,0.721,0.689,0.714,0.958,1.064,0.836,0.971,1.095,1.0,0.784,0.726,1.287,0.873,0.826,0.9,0.93,0.779,0.677,1.28,0.89,1.806,1.89,1.337,0.681,0.967,1.24,1.011,1.313,0.899,1.0,1.079,0.877,1.557,0.834,1.165,1.247,0.679,1.719,0.752,0.988,0.845,0.846,1.13 +NM_170784,1.4260000000000002,1.7080000000000002,2.255,1.65,1.9529999999999998,2.308,1.439,1.332,2.3440000000000003,2.011,2.2649999999999997,2.004,1.517,1.379,1.792,2.8689999999999998,1.5579999999999998,1.999,2.459,2.125,1.347,1.654,3.2190000000000003,2.1310000000000002,1.5,1.7469999999999999,2.067,2.032,1.067,2.419,1.934,2.088,4.071,2.4619999999999997,1.038,2.289,2.315,1.8940000000000001,2.328,2.308,2.4290000000000003,2.178,2.066,2.567,1.971,2.146,1.938,1.537,2.131,1.7029999999999998,2.2380000000000004,1.987,1.854,4.13 +NM_171825,1.036,1.027,1.008,0.997,1.101,1.054,0.931,0.938,1.169,1.003,1.008,0.97,0.935,0.914,1.039,0.949,1.058,1.061,0.973,0.814,1.027,0.999,1.009,1.014,1.111,0.965,1.057,0.982,0.835,1.13,0.947,1.081,0.855,0.892,1.083,0.978,0.942,0.879,1.069,1.047,0.974,1.15,1.323,0.952,1.126,1.036,1.032,0.954,1.064,1.072,1.015,0.927,1.21,0.92 +NM_171827,0.808,1.04,1.788,0.822,0.99,1.093,1.363,0.81,1.114,0.882,0.793,0.766,1.191,1.077,0.844,0.698,0.78,1.066,0.712,1.283,0.773,0.926,1.118,1.084,1.864,0.773,1.118,0.971,0.589,1.784,1.026,1.182,1.135,1.17,0.496,0.603,1.484,0.763,0.996,0.676,0.887,1.309,0.579,0.861,1.026,0.691,0.658,0.82,0.665,0.796,0.961,0.782,1.141,4.219 +NM_171828,1.9819999999999998,1.895,2.107,2.077,1.917,1.9949999999999999,1.601,2.208,2.032,2.01,1.9889999999999999,1.7469999999999999,1.908,2.02,1.766,2.015,1.915,1.952,1.729,1.939,2.067,1.9449999999999998,1.838,1.9969999999999999,1.981,2.113,1.9700000000000002,2.029,1.575,2.013,1.974,2.3209999999999997,2.053,2.0069999999999997,1.8699999999999999,1.947,2.154,2.051,1.9060000000000001,1.9689999999999999,2.008,1.979,2.037,2.285,1.92,1.964,2.013,2.021,1.881,1.9889999999999999,2.1239999999999997,1.9020000000000001,2.016,2.344 +NM_171829,1.023,1.093,0.9,1.033,1.283,0.97,0.962,0.832,1.007,1.029,0.935,1.067,0.995,0.865,0.635,1.027,1.194,1.01,0.973,0.989,1.043,0.99,1.062,0.876,0.865,1.023,1.214,1.051,0.998,1.146,0.913,0.929,1.104,0.919,1.155,0.962,0.902,1.179,1.112,0.918,1.207,0.848,0.935,1.091,0.996,1.57,1.012,1.14,0.96,0.87,1.02,1.122,0.984,0.902 +NM_171830,1.056,1.056,1.036,1.071,1.131,1.034,0.982,0.933,0.919,1.018,0.94,0.894,1.022,1.055,1.12,0.928,1.089,0.956,1.102,0.993,1.168,1.03,0.946,0.96,1.04,1.05,0.919,1.164,1.038,0.929,0.98,0.876,0.85,0.928,1.011,0.961,1.022,0.875,0.977,1.018,1.035,0.947,0.982,1.119,1.077,1.14,0.982,0.954,1.019,1.029,0.94,1.08,1.253,1.037 +NM_171846,0.801,1.078,1.142,0.92,0.982,1.144,0.763,0.833,1.176,0.941,0.887,0.785,0.861,0.787,1.059,1.479,0.966,0.897,1.046,1.116,0.839,0.889,1.296,0.98,0.768,0.733,1.152,0.927,0.672,1.147,1.114,1.318,1.225,1.158,0.871,0.776,1.115,0.949,1.328,0.842,1.204,1.198,0.812,0.895,1.019,1.091,1.065,0.791,1.275,0.817,1.007,0.868,0.826,1.706 +NM_171997,2.002,2.024,2.0010000000000003,2.169,2.155,1.892,1.982,1.707,2.144,2.2960000000000003,2.019,2.1959999999999997,1.7429999999999999,1.751,2.2,2.085,2.064,2.021,1.938,1.996,2.149,1.8719999999999999,1.996,1.968,2.019,2.035,2.057,2.001,1.639,2.007,1.826,1.8319999999999999,1.8780000000000001,1.919,2.727,1.985,1.867,1.955,2.221,1.96,1.6989999999999998,1.8439999999999999,2.165,1.845,2.034,2.508,1.954,2.053,2.67,2.4139999999999997,1.934,1.871,2.072,2.1399999999999997 +NM_171998,1.023,0.935,0.927,0.966,1.149,1.008,1.082,1.079,0.979,0.911,0.9,0.947,0.848,0.881,1.007,1.079,0.869,1.014,0.999,1.016,1.082,0.819,1.055,0.965,0.928,0.954,1.062,1.004,0.868,1.141,1.04,1.023,1.049,1.201,0.975,0.994,0.96,0.971,1.039,0.975,0.906,0.938,1.133,1.009,0.927,0.891,0.878,0.912,1.147,0.903,1.043,0.993,1.028,1.063 +NM_171999,1.145,1.05,0.89,0.885,1.035,0.976,0.855,0.991,0.908,1.071,0.94,1.007,1.06,0.88,1.004,1.078,1.102,0.989,0.917,1.035,1.005,0.997,1.115,0.956,0.99,1.032,0.902,0.969,1.038,0.94,1.1,1.087,0.982,1.259,1.137,1.093,0.984,0.979,1.039,0.862,1.212,1.096,1.073,1.094,1.084,1.121,0.984,1.063,1.07,1.016,1.009,1.071,1.146,1.01 +NM_172000,1.151,0.963,1.069,0.921,0.97,1.053,0.825,1.041,1.003,0.896,1.081,0.913,1.065,0.91,0.988,0.959,0.965,0.864,1.153,0.939,0.905,1.005,1.046,0.976,0.945,0.854,0.927,1.059,0.806,0.866,1.046,0.998,0.941,0.886,0.986,1.048,0.988,0.952,1.005,1.118,0.884,1.115,0.874,1.097,1.002,0.802,0.869,0.956,1.113,1.111,1.031,1.147,1.216,1.092 +NM_172003,1.073,0.946,0.899,0.986,0.93,1.025,0.875,1.104,0.87,0.937,1.118,1.122,1.132,1.172,0.969,1.104,1.079,1.107,0.884,0.952,1.013,1.113,0.992,1.023,0.989,1.042,1.02,0.908,1.173,0.887,1.121,0.929,1.157,1.011,0.985,1.146,1.025,0.918,1.053,0.881,1.036,1.053,0.997,0.816,1.002,0.674,0.981,1.024,0.91,0.894,0.993,1.163,1.015,0.962 +NM_172004,1.078,0.938,1.063,0.862,0.98,0.985,1.085,1.159,0.961,0.844,0.897,1.062,1.086,1.156,0.938,0.885,0.978,1.05,1.143,0.954,0.907,1.073,0.913,1.036,0.988,0.998,1.052,0.955,1.309,0.936,1.085,1.016,0.99,1.034,1.067,0.871,1.125,0.907,1.056,1.018,0.982,1.249,0.927,0.922,1.154,0.987,0.942,0.908,1.009,0.959,0.932,0.926,1.049,1.261 +NM_172006,1.058,0.887,1.015,0.875,0.847,1.099,0.777,1.075,1.055,1.025,0.956,1.195,1.073,1.014,0.801,0.793,1.027,1.128,1.017,1.204,0.9,0.974,1.226,0.983,0.995,0.971,0.931,1.045,1.009,0.856,0.951,0.91,1.168,1.005,1.048,1.037,1.044,1.043,1.073,1.017,0.837,1.005,1.193,0.938,1.153,0.848,1.112,0.974,0.983,0.939,0.867,1.112,1.173,0.923 +NM_172014,0.974,1.116,1.198,1.099,1.091,1.063,0.96,0.938,0.951,1.011,0.993,1.046,1.066,0.93,0.752,0.865,0.96,0.877,1.0,1.006,0.964,1.116,0.968,0.947,1.005,0.894,0.91,0.942,0.806,0.902,0.966,1.204,1.075,1.093,1.079,0.892,1.0,0.863,1.01,1.233,1.031,1.205,1.037,0.983,0.983,0.926,0.936,0.876,0.888,1.046,0.921,1.066,0.96,1.039 +NM_172016,0.943,0.969,1.193,0.795,0.983,0.958,0.689,0.702,1.191,1.009,0.832,0.939,0.729,1.067,1.071,0.946,1.183,0.789,1.091,0.929,0.673,0.783,0.94,1.272,0.758,1.174,0.979,1.018,0.462,1.049,1.109,1.59,1.487,1.242,1.143,0.859,0.784,1.047,1.106,1.096,1.164,1.142,0.805,0.869,1.155,0.884,0.879,0.988,0.726,1.034,0.925,0.832,0.957,1.532 +NM_172020,0.513,0.506,1.028,0.31,0.862,0.573,0.222,0.291,1.013,1.311,0.828,0.55,0.329,0.572,0.688,1.069,0.759,0.674,0.87,1.0,0.6,0.832,2.192,0.913,0.157,0.734,1.457,0.713,0.406,0.859,0.7,1.552,1.973,0.395,0.129,1.333,0.756,1.014,1.374,1.539,1.06,1.336,1.263,1.919,0.914,1.177,1.194,0.531,1.125,0.63,1.223,1.195,1.059,1.746 +NM_172025,1.089,0.964,1.062,0.983,1.009,1.078,1.01,0.938,0.873,0.875,1.229,0.918,1.062,1.075,0.969,1.243,0.948,0.936,1.06,1.135,1.012,0.924,0.957,1.0,0.946,0.927,0.879,1.012,0.708,0.952,0.954,0.901,0.937,0.948,1.042,1.018,1.085,0.976,0.936,0.983,0.933,1.009,1.008,1.065,1.069,0.972,1.049,1.114,1.249,1.133,0.912,0.967,0.885,1.0 +NM_172028,0.532,1.411,1.059,1.126,0.655,1.195,0.98,0.632,0.737,0.734,1.228,0.574,0.728,0.718,1.242,1.455,0.769,1.14,0.845,1.305,0.6,0.664,1.134,0.662,0.945,0.703,0.9,0.572,0.782,1.679,0.799,2.508,1.502,1.46,1.093,1.783,0.999,0.615,2.304,1.967,0.642,1.283,0.95,1.451,0.695,0.921,0.833,0.872,0.655,0.799,0.939,1.104,0.755,1.18 +NM_172037,0.689,0.845,2.27,0.99,0.73,0.919,0.817,0.676,0.608,0.709,1.225,0.64,1.058,0.792,0.661,1.083,4.146,0.905,2.221,1.027,0.798,0.58,1.134,0.664,0.923,0.726,3.223,0.748,0.875,1.212,0.714,0.716,1.022,1.269,0.617,0.881,1.042,0.733,1.309,1.008,0.92,0.88,0.977,1.439,0.811,1.467,1.033,0.724,1.036,2.433,0.895,1.086,1.732,1.089 +NM_172056,1.161,1.007,0.932,0.959,1.04,1.011,0.869,1.032,1.057,1.13,1.013,0.996,0.932,1.25,1.124,0.916,1.014,0.965,1.172,1.091,0.951,0.982,0.971,1.027,0.884,0.95,1.077,0.91,1.129,1.056,1.134,1.173,0.99,1.047,0.94,0.998,0.954,0.935,1.044,0.896,1.024,0.95,0.964,1.026,0.941,0.93,0.924,0.976,0.998,0.95,1.008,0.967,1.214,1.005 +NM_172057,0.792,0.926,0.996,0.904,1.012,0.98,0.923,1.02,1.132,0.968,0.849,0.847,0.84,1.009,0.817,0.995,1.094,0.981,0.997,1.178,0.793,1.042,1.032,0.893,0.89,1.072,1.301,1.099,1.469,1.25,1.107,1.077,1.088,0.862,0.959,0.876,1.008,1.157,0.962,0.93,1.044,0.896,0.86,1.108,1.032,0.829,0.879,0.98,1.032,1.024,0.971,1.079,1.022,0.997 +NM_172059,0.888,1.166,0.827,0.953,1.263,0.941,0.983,1.219,1.077,1.036,1.034,0.886,1.087,0.955,0.879,1.088,1.099,1.149,1.022,1.165,0.977,0.998,1.032,1.034,0.985,1.046,0.868,1.035,1.233,0.966,1.02,0.997,1.182,0.98,1.044,0.969,0.985,0.987,0.984,0.976,0.889,0.998,1.019,1.011,1.025,1.055,1.124,1.074,1.082,1.106,1.024,0.943,0.973,0.89 +NM_172069,1.035,0.962,1.05,0.899,0.922,0.941,0.815,1.01,0.984,0.973,0.954,1.013,0.895,0.921,1.309,1.02,0.958,0.888,0.935,0.915,0.977,0.875,0.939,1.004,1.065,0.965,1.011,1.018,0.735,1.029,1.002,1.099,1.017,1.072,0.953,1.047,1.079,0.981,1.128,1.228,0.841,0.964,0.954,0.895,0.908,0.831,1.147,0.866,1.01,0.956,1.185,0.857,0.991,1.187 +NM_172070,0.851,0.893,1.158,0.706,0.979,0.904,0.774,0.71,1.167,1.1,0.904,0.853,0.741,0.822,0.874,1.016,0.812,0.891,1.107,1.048,0.724,0.76,1.183,0.906,0.793,0.953,1.073,0.918,0.658,1.007,1.049,1.377,1.288,0.943,0.735,1.085,1.032,1.25,1.142,1.069,1.012,1.127,0.949,1.042,0.926,1.152,1.053,0.991,0.939,0.935,1.018,0.903,0.97,1.301 +NM_172084,1.026,1.174,1.031,0.967,0.751,0.981,0.887,0.978,1.058,0.94,0.919,0.928,0.939,1.287,0.887,0.831,0.834,1.029,0.999,0.904,0.976,1.082,1.123,1.122,1.064,1.098,1.023,1.172,1.082,0.91,0.994,0.829,0.963,1.04,0.97,0.9,1.119,1.09,0.925,1.076,1.033,1.012,1.144,0.952,1.04,0.954,1.02,1.092,0.903,1.058,0.945,1.033,1.138,0.929 +NM_172089,0.457,1.21,0.52,1.186,0.508,1.788,0.797,0.404,0.484,0.526,1.393,0.437,0.448,0.46,0.927,1.949,0.667,0.92,0.442,1.359,0.424,0.457,1.253,0.557,1.005,0.462,0.656,0.412,0.585,1.728,0.445,1.261,0.846,2.426,0.403,0.824,1.224,0.514,2.263,0.639,0.516,2.17,1.228,0.542,0.448,1.626,0.562,0.418,1.122,0.496,1.566,0.55,0.572,1.924 +NM_172097,0.852,1.046,1.088,0.823,0.998,1.104,1.112,0.857,1.149,0.835,1.205,0.926,0.89,1.031,0.796,1.007,1.064,0.891,0.713,0.996,0.839,0.928,1.022,1.072,1.027,0.988,0.927,0.955,0.712,0.853,0.99,1.148,1.253,0.928,0.848,1.172,1.06,0.94,0.96,1.358,1.045,0.925,0.763,0.977,1.304,0.954,1.056,0.848,0.943,1.14,0.871,1.073,0.966,1.234 +NM_172098,2.297,2.072,2.1719999999999997,1.8359999999999999,2.4050000000000002,1.955,1.8439999999999999,2.735,2.783,2.0780000000000003,1.838,2.056,1.9660000000000002,2.202,2.309,1.9689999999999999,1.955,1.887,1.947,2.032,2.113,2.478,2.034,1.975,1.912,2.366,1.8650000000000002,2.968,1.996,1.986,2.847,1.751,1.925,2.0629999999999997,3.9059999999999997,2.1239999999999997,1.7930000000000001,2.439,2.004,2.099,2.008,1.912,2.052,1.899,2.25,1.665,1.815,2.6029999999999998,2.225,2.098,1.919,2.05,2.5469999999999997,2.122 +NM_172100,1.003,0.936,1.012,0.995,0.867,0.934,0.984,1.036,0.9,1.03,0.926,1.083,0.921,0.969,1.019,0.652,1.007,1.032,1.065,0.795,0.945,0.968,0.893,1.099,0.978,0.978,1.026,1.162,1.047,0.961,0.91,1.095,1.002,0.98,0.96,1.07,0.946,1.136,1.011,1.107,1.071,0.849,0.837,0.879,1.0,0.938,0.993,1.107,1.0,0.961,0.953,0.993,1.001,1.048 +NM_172101,0.912,0.887,0.975,1.127,0.869,0.992,1.185,1.029,1.083,1.176,1.038,1.384,0.956,0.854,0.964,1.011,0.924,0.972,1.136,0.819,1.043,0.895,1.011,0.952,1.022,0.976,1.047,1.047,0.985,1.025,1.111,1.125,1.014,0.844,0.927,1.028,1.198,0.875,0.949,1.024,1.03,1.084,1.003,1.038,1.011,1.022,0.973,1.015,0.937,1.102,1.085,1.065,1.135,1.007 +NM_172104,1.075,1.05,0.95,1.131,1.049,0.988,0.921,1.029,1.01,0.995,1.055,1.039,0.939,1.037,0.986,0.901,1.06,0.991,1.02,0.956,0.806,1.103,1.086,1.066,1.002,1.129,0.802,1.004,0.694,0.888,1.118,1.459,0.835,0.958,1.193,1.098,0.929,0.853,0.948,1.064,0.998,0.979,0.813,0.931,0.88,0.946,0.966,0.93,1.081,1.035,1.112,1.033,0.999,1.179 +NM_172105,0.872,1.081,1.102,0.885,1.038,0.956,0.999,1.04,1.056,0.999,0.966,1.042,1.078,1.029,0.862,0.93,0.902,1.157,0.931,0.872,0.897,1.047,0.947,0.96,1.009,1.142,1.031,1.089,1.087,0.991,1.028,1.103,0.996,0.975,0.936,0.922,0.97,0.979,1.025,1.043,1.082,0.969,1.193,0.915,1.091,0.928,1.092,0.955,0.985,1.144,1.04,0.911,0.926,0.93 +NM_172107,0.947,0.909,0.966,0.901,1.047,0.935,0.935,1.03,1.081,0.962,1.03,0.886,0.995,1.037,0.905,1.028,0.873,0.817,0.925,0.958,1.077,0.983,1.012,0.955,0.972,0.856,1.011,0.859,1.005,0.862,1.026,1.017,1.005,1.132,0.955,1.138,1.136,1.079,0.98,1.113,0.925,1.019,0.929,1.095,0.874,0.918,1.181,0.967,1.102,0.88,1.027,0.931,0.924,1.041 +NM_172109,2.092,2.112,1.9769999999999999,1.9489999999999998,2.061,2.093,1.835,2.032,1.99,1.899,2.2,1.819,1.927,2.026,1.723,1.948,1.8679999999999999,1.9769999999999999,2.0789999999999997,1.87,1.7770000000000001,2.043,1.758,1.834,1.963,1.856,2.028,2.032,1.927,1.966,2.161,2.0869999999999997,1.888,1.9649999999999999,2.294,1.94,1.95,2.292,1.908,3.436,2.0140000000000002,1.987,1.898,2.008,1.873,1.9329999999999998,1.854,2.043,1.916,2.104,1.922,1.853,2.016,1.854 +NM_172110,0.902,2.636,2.459,1.303,1.583,0.773,0.824,0.638,2.034,1.49,0.612,1.076,0.993,0.8,0.88,0.362,1.713,1.799,2.389,1.391,0.81,1.466,0.406,1.343,0.42,1.842,1.053,1.592,0.528,1.426,1.213,1.602,0.599,1.805,0.854,0.182,0.72,1.602,0.989,0.246,1.982,0.919,0.634,0.939,1.449,0.211,0.736,1.705,0.443,1.268,0.855,0.757,1.361,0.344 +NM_172111,0.978,1.042,0.917,1.067,1.282,0.97,0.963,1.05,1.05,1.105,0.963,1.02,1.032,0.849,0.823,1.129,1.013,0.99,0.978,0.973,0.958,1.016,1.131,1.03,1.042,0.996,0.797,1.234,1.116,1.087,1.076,0.982,0.976,1.1,0.986,1.117,1.081,0.918,0.918,0.963,0.956,1.1,1.184,0.906,1.117,0.873,1.074,1.016,1.222,1.101,0.965,1.119,0.915,0.928 +NM_172112,1.039,1.162,0.897,0.981,0.786,1.128,1.301,1.128,1.077,1.024,0.846,0.916,0.983,0.928,0.903,1.085,0.878,1.004,1.01,0.948,1.079,0.923,1.099,0.986,0.862,0.835,0.947,0.959,1.36,1.121,0.953,1.009,1.166,1.15,0.972,0.934,1.065,1.081,0.994,1.062,0.893,0.872,1.292,0.972,0.947,1.02,0.916,1.007,0.961,0.796,0.995,1.008,1.179,1.005 +NM_172115,0.948,0.942,1.029,0.933,1.007,0.964,1.005,0.989,1.014,0.979,1.051,0.997,0.968,0.804,0.826,0.977,1.054,0.864,1.065,1.057,0.993,0.996,1.025,1.114,0.965,1.055,1.019,1.1,1.038,0.961,1.082,0.919,1.091,1.015,1.093,0.99,0.948,1.024,1.032,1.039,1.118,0.998,0.9,1.09,0.957,1.047,1.021,1.0,0.988,1.063,0.914,0.92,0.954,0.984 +NM_172130,0.966,1.049,1.003,1.074,1.023,1.165,1.095,0.807,0.964,1.191,1.086,1.027,1.072,1.066,1.018,1.229,1.063,1.024,1.049,0.91,1.218,0.778,0.875,0.987,0.955,1.097,1.065,0.96,1.216,1.017,1.096,0.916,1.084,1.095,1.082,0.982,1.048,1.059,0.997,0.961,1.076,1.053,0.834,1.05,0.969,1.081,0.984,0.987,0.967,0.964,0.979,0.927,0.884,0.965 +NM_172131,1.264,0.904,1.002,1.128,1.0,1.095,0.961,1.148,0.831,1.104,1.09,1.025,0.905,0.877,1.161,0.957,1.013,1.012,0.909,0.996,1.009,0.972,1.028,1.069,1.014,1.009,1.059,1.0,1.041,0.973,0.953,0.976,0.988,0.89,0.994,0.989,0.952,0.909,1.049,1.105,0.871,0.958,0.979,0.969,1.053,0.946,0.887,0.927,0.927,1.011,1.046,1.049,1.017,1.043 +NM_172136,1.103,0.937,0.976,0.968,0.838,1.133,0.74,1.069,1.097,0.959,0.896,0.963,0.953,0.887,1.028,1.154,0.999,1.03,1.077,1.066,0.948,0.91,1.042,1.026,0.88,0.908,0.891,1.024,0.629,1.013,1.085,1.017,0.941,0.883,0.918,0.99,1.083,0.977,1.149,0.967,1.022,0.905,1.298,0.986,0.988,0.88,0.978,0.92,0.972,0.898,1.096,0.949,0.955,1.015 +NM_172138,0.961,1.073,0.92,1.086,0.858,0.858,0.896,0.944,1.126,0.91,0.831,1.051,1.162,1.037,1.072,1.032,1.008,1.035,0.995,1.011,0.94,1.154,0.983,1.113,1.271,1.082,1.118,0.958,0.781,1.065,1.121,1.012,0.915,0.97,0.987,1.193,1.011,1.005,0.885,0.975,0.986,1.022,0.736,1.023,1.125,1.024,1.059,0.991,0.861,0.985,0.935,0.921,0.929,0.951 +NM_172139,0.887,0.965,1.184,0.976,1.049,1.118,1.135,0.986,1.079,0.867,0.835,0.947,0.994,1.178,1.074,1.085,1.026,0.951,1.059,0.917,0.969,1.102,1.134,0.995,1.069,0.929,1.086,0.94,1.321,0.937,0.886,0.927,1.085,0.884,0.969,1.008,0.902,1.019,0.898,1.0,0.928,0.914,1.203,0.941,0.979,0.881,1.061,1.015,0.931,0.958,1.095,1.0,1.046,1.223 +NM_172140,0.991,1.091,1.033,0.964,1.16,0.958,0.798,1.06,1.124,1.102,1.088,0.968,0.98,0.888,0.93,1.101,1.043,1.058,0.974,0.909,0.942,0.974,1.169,1.016,0.973,1.016,1.127,1.031,0.757,1.07,1.115,0.941,1.055,0.975,1.115,1.003,0.932,1.004,1.032,1.033,1.016,1.03,0.88,1.018,1.07,0.885,0.923,1.057,1.001,0.938,1.019,0.944,1.001,1.026 +NM_172159,1.104,1.167,1.033,1.051,1.174,0.885,0.788,0.999,0.962,0.973,0.882,0.965,0.945,0.812,0.972,1.259,0.979,0.954,0.932,1.015,0.941,0.983,0.987,0.991,1.071,0.883,1.018,1.195,0.932,0.967,0.965,1.111,0.974,1.05,1.037,1.083,1.166,1.146,0.975,0.988,0.959,1.105,0.693,0.993,0.987,1.059,0.959,1.09,0.94,1.097,0.992,0.979,0.977,0.904 +NM_172160,1.838,5.146,2.127,1.7999999999999998,2.3280000000000003,2.098,1.8339999999999999,2.572,2.484,1.839,1.789,2.068,2.37,1.979,1.879,1.904,2.0629999999999997,2.1550000000000002,2.306,1.9699999999999998,1.943,2.786,1.794,2.083,2.8310000000000004,2.476,1.721,2.714,1.681,2.696,2.523,1.744,1.732,2.638,1.815,1.521,1.984,2.847,1.663,1.726,2.441,2.3609999999999998,1.9779999999999998,2.386,1.912,1.809,1.971,2.272,1.678,1.904,2.1189999999999998,2.753,1.9509999999999998,1.781 +NM_172163,1.042,1.116,1.061,0.944,0.834,1.025,0.93,0.886,1.074,0.977,0.841,1.335,1.134,1.011,1.16,1.005,1.055,0.952,1.056,0.939,1.071,1.147,0.997,0.965,1.025,1.052,0.983,0.932,1.184,1.024,0.843,0.999,0.872,0.955,1.023,0.882,0.93,0.901,1.044,1.197,0.938,0.929,0.94,1.01,0.921,0.927,0.937,1.075,1.068,0.927,1.006,1.0,1.016,0.956 +NM_172166,0.896,0.892,0.876,0.885,0.94,1.038,0.934,0.952,1.028,1.001,1.037,0.889,0.902,1.035,1.201,0.966,0.958,0.82,0.97,0.95,1.058,1.069,0.949,1.054,1.05,0.95,1.046,0.892,0.856,0.938,0.949,1.001,1.198,0.929,0.859,1.074,0.977,0.92,0.916,1.038,0.858,1.056,1.035,0.939,1.007,0.938,0.999,0.9,0.964,0.933,1.092,1.014,1.047,1.146 +NM_172174,0.947,0.927,1.055,1.127,0.947,1.114,1.035,1.029,1.051,0.995,0.957,1.174,1.009,1.197,0.982,1.148,1.031,0.922,0.985,0.944,0.918,0.982,1.054,1.102,1.068,0.937,1.028,1.031,1.228,1.058,0.987,1.083,1.105,0.818,1.089,1.049,0.917,1.109,1.121,0.995,0.978,1.136,1.277,0.833,1.04,1.077,0.911,1.008,1.11,1.231,0.949,0.854,1.148,0.943 +NM_172193,1.006,1.07,1.058,1.048,0.876,1.226,0.88,0.908,1.017,0.931,1.179,0.905,0.959,1.055,0.95,0.99,0.873,1.1,0.96,1.065,0.872,0.907,0.95,1.001,1.208,0.944,1.062,0.929,0.822,1.188,0.925,1.134,0.992,1.181,0.884,0.925,1.052,0.937,0.957,0.947,0.955,1.145,0.851,1.164,0.932,1.046,0.981,0.883,0.861,0.949,1.023,1.041,0.957,0.97 +NM_172195,1.103,0.951,0.999,0.967,0.98,1.045,0.99,0.993,0.917,1.014,1.132,1.097,0.906,0.859,1.006,1.061,1.032,1.042,0.921,0.85,0.957,0.962,0.979,0.951,0.893,0.832,1.036,1.123,0.911,1.107,1.02,0.932,1.072,0.885,0.933,0.968,0.972,0.959,0.968,1.045,1.062,0.988,1.094,0.903,1.09,0.953,1.001,1.097,1.014,1.042,1.029,0.806,0.957,1.017 +NM_172196,1.9500000000000002,1.9409999999999998,2.067,2.003,2.077,1.976,1.956,2.061,1.7759999999999998,2.11,2.1319999999999997,2.181,1.976,1.799,2.444,1.979,1.92,1.7389999999999999,1.851,2.057,2.132,2.1310000000000002,2.1950000000000003,1.755,2.073,1.935,1.715,1.992,1.847,2.048,2.0759999999999996,2.0669999999999997,1.944,2.021,2.1189999999999998,2.247,2.1500000000000004,1.959,1.9220000000000002,2.064,1.9859999999999998,1.984,1.951,2.035,2.1870000000000003,2.1799999999999997,1.8359999999999999,2.274,2.028,1.9649999999999999,2.08,1.876,2.074,1.891 +NM_172197,0.987,0.963,1.04,1.105,1.012,0.921,0.916,1.111,1.063,0.98,1.052,1.022,0.977,0.996,0.956,1.104,1.108,0.945,1.117,1.094,0.899,1.017,1.008,1.069,1.048,0.992,1.003,0.912,1.229,1.031,0.908,1.105,1.077,0.972,1.027,0.942,0.928,0.88,0.997,1.057,0.973,1.209,0.81,1.148,1.022,1.134,1.094,0.945,0.969,0.995,0.988,1.059,0.884,1.127 +NM_172198,1.115,1.118,1.045,0.981,0.958,1.122,0.966,0.907,1.059,0.98,0.926,1.032,1.095,0.995,1.027,1.062,1.14,0.945,0.873,1.143,1.055,1.131,1.081,1.02,1.065,1.043,0.99,1.129,1.405,0.961,0.848,0.903,0.9,1.153,1.128,0.907,1.057,1.036,1.095,1.066,1.049,0.951,1.021,0.917,0.916,1.133,1.095,0.89,0.967,0.936,0.936,1.113,0.925,0.933 +NM_172199,0.658,0.95,0.983,0.696,0.748,1.2,0.542,0.583,1.086,0.888,1.208,0.651,0.599,0.658,0.98,1.958,1.056,0.879,1.336,0.961,0.722,0.745,1.186,1.245,0.715,0.861,1.405,0.924,0.413,1.238,0.96,0.813,3.704,1.579,0.22,0.724,1.185,0.77,1.267,0.612,1.377,0.999,0.742,1.203,0.996,0.88,1.579,0.636,1.106,0.758,1.076,0.747,1.029,1.675 +NM_172200,0.95,1.121,1.114,1.099,0.928,0.894,1.018,1.13,0.87,0.84,1.081,0.993,1.101,1.018,1.038,0.862,0.915,0.928,0.95,1.001,0.955,0.987,0.91,0.881,0.968,0.941,0.913,1.019,0.984,0.974,1.002,1.019,0.981,0.901,1.008,1.012,0.998,1.051,1.008,0.961,0.901,0.915,1.002,1.068,0.906,1.001,1.108,1.013,0.949,0.909,1.023,1.048,0.986,0.947 +NM_172201,0.957,19.96,0.946,2.029,0.834,4.407,5.943,0.959,1.002,0.925,1.39,0.956,0.996,1.024,0.97,0.929,0.963,1.178,0.808,1.282,0.853,0.924,0.954,0.926,42.66,0.992,0.788,0.984,3.21,5.0,1.056,0.994,1.084,19.02,0.974,0.944,7.794,1.074,2.477,0.861,0.988,2.552,0.91,0.898,0.997,1.02,0.85,0.885,1.03,0.969,1.073,0.888,0.947,2.72 +NM_172207,2.0860000000000003,1.955,2.046,2.015,1.959,2.112,2.0069999999999997,1.885,2.147,2.1799999999999997,1.958,2.089,1.9420000000000002,1.95,1.74,2.1260000000000003,1.9660000000000002,1.847,2.227,1.835,1.996,1.933,1.9289999999999998,1.987,2.12,2.109,1.897,2.19,1.947,2.122,1.963,1.8980000000000001,2.0279999999999996,2.056,2.117,1.929,1.952,2.052,2.062,2.055,2.1029999999999998,1.939,1.85,2.049,2.258,2.076,1.986,2.108,1.945,1.927,2.098,1.984,1.8279999999999998,1.784 +NM_172209,0.951,0.949,0.876,1.078,1.072,1.051,1.092,0.818,0.935,1.063,1.035,0.853,0.898,1.043,0.903,1.037,1.155,0.999,0.879,0.965,0.895,1.028,0.902,1.09,1.074,0.944,0.886,0.932,0.996,1.104,0.98,1.088,0.977,1.096,0.921,0.878,0.916,0.969,1.176,1.055,0.96,1.117,1.092,1.123,0.979,0.924,1.038,1.045,1.027,1.077,0.934,0.951,1.098,1.202 +NM_172215,0.853,1.13,0.929,0.893,0.678,0.87,0.892,0.67,1.047,0.752,1.05,0.784,0.669,0.888,0.757,1.765,0.699,1.06,1.003,1.14,0.781,0.922,1.363,1.174,1.08,0.766,0.856,0.677,0.933,1.156,0.845,1.718,1.253,1.272,0.595,1.484,1.174,0.716,1.466,1.048,1.083,1.414,0.842,1.14,0.879,1.114,0.991,0.697,1.199,0.829,1.018,1.058,0.969,0.997 +NM_172217,1.039,1.181,1.105,1.039,0.827,1.12,0.893,0.998,0.874,0.998,1.076,1.03,0.883,0.992,0.898,1.014,1.035,1.091,0.906,1.019,1.056,0.908,0.909,0.896,0.972,0.957,0.956,1.079,1.148,1.015,1.073,0.973,1.006,0.952,1.096,1.233,1.001,0.983,0.906,0.907,1.151,0.865,1.026,0.961,0.922,1.176,1.067,1.018,1.006,0.858,0.977,1.061,1.042,1.001 +NM_172218,1.8410000000000002,2.008,2.0469999999999997,2.009,2.069,2.036,2.04,1.942,2.381,1.896,2.132,1.823,1.96,1.896,1.984,1.842,1.979,2.102,1.935,2.037,1.7610000000000001,1.909,2.301,1.721,1.979,1.904,1.658,1.775,2.121,2.185,1.866,2.217,2.127,1.9020000000000001,2.1020000000000003,2.049,2.17,2.1180000000000003,1.992,1.8719999999999999,1.7690000000000001,1.983,1.9140000000000001,1.983,1.952,2.231,2.096,1.9539999999999997,2.019,1.791,2.019,2.072,1.98,2.5890000000000004 +NM_172219,0.872,1.023,0.961,1.076,0.993,1.029,0.871,1.027,1.106,0.961,1.219,1.086,1.055,0.981,0.789,0.949,1.12,0.939,1.103,0.845,0.992,1.013,1.13,0.952,1.162,0.881,0.869,1.021,0.904,1.053,0.894,0.956,1.895,0.865,1.05,1.232,0.988,0.891,1.59,8.523,1.049,1.044,0.932,1.085,1.167,0.907,0.959,0.937,0.971,0.955,0.926,1.752,1.056,1.11 +NM_172220,1.015,0.88,1.017,1.03,1.02,0.854,1.07,1.01,1.126,0.916,0.887,1.005,0.823,1.001,1.184,0.866,1.068,1.03,0.946,0.833,0.988,1.055,0.907,1.012,0.95,0.966,1.09,1.003,1.025,0.904,1.067,1.073,0.862,1.017,1.058,1.156,0.999,0.952,0.875,0.92,1.011,1.106,1.614,1.149,1.128,1.016,0.877,0.878,0.997,1.133,1.066,0.67,0.904,0.859 +NM_172225,1.071,1.076,0.857,1.049,1.073,1.024,0.893,1.061,1.098,1.04,0.93,1.008,0.974,0.857,0.785,0.828,1.096,0.934,0.94,0.911,1.007,0.921,0.943,1.114,1.1,0.953,0.934,0.912,0.765,0.982,0.956,0.848,1.266,0.998,1.091,1.077,1.018,1.048,1.02,1.026,0.799,0.867,0.947,1.036,1.059,1.106,1.065,1.002,1.028,0.929,1.017,1.143,1.103,0.936 +NM_172231,0.909,0.904,1.143,0.881,0.894,1.074,0.686,0.661,1.082,0.919,1.192,0.855,0.706,1.004,0.735,1.14,1.167,0.85,1.096,0.867,0.997,0.891,1.172,0.9,0.812,1.026,1.114,0.734,0.527,1.067,1.118,1.126,1.686,1.146,0.79,1.086,0.922,1.0,1.117,1.102,0.978,0.936,0.561,1.091,0.913,0.787,0.754,0.877,0.823,1.0,0.934,0.943,1.113,1.333 +NM_172232,2.026,2.1340000000000003,2.291,1.787,1.9220000000000002,1.8699999999999999,1.8559999999999999,2.053,2.153,2.022,2.169,2.237,1.8579999999999999,1.794,1.9709999999999999,2.425,2.029,1.9929999999999999,2.314,2.439,2.025,2.15,2.3529999999999998,2.12,1.712,1.8279999999999998,2.169,1.874,1.675,1.914,2.311,1.928,1.9449999999999998,2.057,1.758,1.878,1.9689999999999999,2.0380000000000003,1.889,1.9609999999999999,2.0090000000000003,2.0309999999999997,2.2560000000000002,1.963,2.011,2.2119999999999997,2.152,1.9180000000000001,2.019,1.8399999999999999,1.996,1.8719999999999999,2.143,1.979 +NM_172233,0.971,0.945,1.143,1.008,1.12,0.956,0.88,0.885,1.189,1.102,1.166,0.945,0.878,0.896,1.116,0.917,1.087,1.027,0.918,1.085,0.966,0.939,0.902,1.096,0.846,1.062,1.015,1.094,0.967,0.937,1.124,1.068,1.167,1.087,0.906,0.78,1.031,0.906,1.163,1.014,1.022,0.972,1.127,0.879,1.275,1.145,1.045,1.034,1.047,1.072,1.008,1.143,1.064,0.916 +NM_172236,2.165,2.012,1.897,2.143,1.84,1.919,1.779,2.033,1.8940000000000001,2.012,1.9,2.068,1.855,2.096,2.1029999999999998,2.1639999999999997,2.1029999999999998,1.951,1.956,1.8079999999999998,2.149,1.975,1.954,1.975,1.897,1.986,2.057,1.979,1.8599999999999999,2.17,2.0300000000000002,2.032,2.036,2.004,1.8039999999999998,1.9260000000000002,2.097,1.9809999999999999,1.983,1.934,1.9620000000000002,2.105,2.08,2.025,1.9819999999999998,1.9529999999999998,2.123,1.9129999999999998,1.819,1.875,2.0309999999999997,2.0069999999999997,2.1109999999999998,2.316 +NM_172238,0.942,0.965,0.914,0.897,0.946,0.806,1.121,1.405,1.023,0.997,1.067,1.025,0.975,0.964,0.782,1.171,0.981,0.923,1.088,0.993,1.139,1.003,1.036,0.982,1.043,1.027,1.132,1.033,1.492,0.996,0.991,1.172,1.069,0.871,0.949,1.031,0.921,1.068,1.055,0.999,1.006,0.915,1.295,0.938,0.888,1.1,1.098,0.956,0.915,0.996,1.073,1.014,0.959,1.11 +NM_172239,0.95,1.006,0.971,0.98,0.988,1.056,0.924,1.111,1.049,0.961,0.925,0.935,0.916,1.08,0.923,1.01,1.003,0.919,0.999,1.017,1.048,1.063,1.058,1.155,0.898,0.966,1.143,0.911,1.029,1.086,1.142,1.16,0.969,0.956,1.038,0.941,1.07,0.937,0.909,1.026,1.145,0.901,1.343,1.025,0.959,1.046,0.991,0.934,1.038,0.956,1.074,0.909,1.02,1.169 +NM_172240,0.811,1.019,1.058,0.902,0.947,1.485,0.932,0.739,1.092,0.919,1.061,0.995,0.931,0.799,1.041,1.933,0.9,0.948,0.821,1.125,0.587,0.897,1.247,1.01,0.756,0.741,1.034,0.87,1.047,1.149,0.928,1.118,1.573,1.093,0.745,0.812,1.132,0.912,1.66,1.038,0.967,1.232,0.886,0.874,0.929,1.001,0.895,0.881,1.209,0.921,1.171,0.881,0.787,1.21 +NM_172242,1.044,0.963,0.972,1.354,0.968,0.988,0.929,0.795,1.001,1.07,1.074,0.975,0.887,1.169,1.04,0.975,1.104,0.769,0.791,0.861,1.111,1.057,1.07,1.199,1.194,0.949,1.017,1.0,0.895,0.979,0.909,0.828,0.851,1.053,1.121,1.044,0.977,0.986,0.908,1.065,0.975,1.011,1.0,0.913,0.96,0.877,1.163,0.975,0.996,1.089,0.99,1.018,1.328,0.886 +NM_172244,1.9369999999999998,1.948,1.813,1.857,1.975,2.043,2.0149999999999997,2.052,1.9300000000000002,1.773,1.988,2.11,2.115,1.986,2.169,2.15,1.696,1.893,1.581,2.324,1.995,2.0010000000000003,2.097,1.948,2.135,2.137,1.9620000000000002,1.994,2.4530000000000003,2.08,2.057,3.26,2.36,2.1740000000000004,2.287,2.005,2.243,1.819,2.199,1.79,2.072,2.141,1.943,1.7570000000000001,1.8650000000000002,1.979,1.9260000000000002,1.9409999999999998,2.073,1.904,2.0199999999999996,1.9329999999999998,2.145,1.836 +NM_172249,0.96,1.024,1.194,0.836,1.02,0.85,0.873,0.872,1.018,1.095,0.887,1.055,1.109,0.878,0.751,0.743,1.694,1.025,0.814,0.825,0.966,1.019,0.863,1.101,0.898,1.028,1.483,1.022,0.934,1.089,0.88,1.339,0.943,0.965,1.0,1.112,0.898,1.015,1.208,1.302,1.384,1.029,0.923,1.013,1.14,0.935,1.067,0.99,0.964,1.057,0.919,1.514,1.079,1.14 +NM_172250,0.892,0.822,1.042,1.069,0.979,1.309,1.017,1.007,0.839,0.905,0.779,0.869,1.184,0.611,0.978,1.495,0.963,1.171,0.898,1.234,0.787,0.975,1.101,1.126,0.854,0.811,1.305,1.04,1.321,0.987,1.07,1.085,1.074,0.997,0.836,1.005,0.943,1.048,1.004,0.975,1.063,1.143,1.005,0.834,0.947,0.946,0.932,0.957,1.168,1.139,1.131,0.699,0.839,1.105 +NM_172251,0.627,1.168,1.031,0.807,0.903,0.927,0.609,0.507,1.155,0.941,1.233,0.74,0.828,0.532,0.847,1.936,0.88,1.109,1.464,1.04,0.591,0.771,1.912,1.157,0.631,0.978,1.27,0.77,0.454,0.956,0.721,1.165,1.268,1.375,0.195,1.351,0.972,0.996,1.394,0.684,1.272,1.21,0.702,1.151,1.2,0.831,0.988,0.92,1.17,0.907,1.004,0.59,0.934,1.14 +NM_172311,1.056,1.046,1.043,1.148,0.965,0.959,1.128,0.959,1.091,0.977,1.135,1.004,1.105,0.937,1.093,0.983,0.987,1.082,1.089,1.016,1.033,1.106,0.989,1.081,1.079,1.039,0.925,0.893,0.902,0.9,1.168,1.14,1.004,1.064,1.176,1.042,0.954,0.865,0.981,0.98,0.968,0.999,1.074,0.991,1.051,1.081,0.988,1.099,0.826,0.884,0.968,1.073,0.98,0.924 +NM_172312,1.007,0.827,0.97,1.041,1.003,0.985,0.719,1.027,0.94,0.978,0.859,1.038,0.967,0.862,0.993,1.177,1.051,1.007,1.071,0.892,1.031,1.006,0.892,1.028,1.011,1.014,1.174,1.183,0.716,1.118,1.051,1.261,0.945,0.911,0.919,1.032,1.036,1.076,1.021,0.877,1.105,0.965,0.857,0.928,0.955,0.95,1.041,1.025,0.839,0.995,1.037,0.956,0.955,0.937 +NM_172313,0.859,1.164,1.002,3.875,0.822,1.033,0.914,0.851,0.896,0.908,0.803,0.957,0.8,0.932,0.912,1.044,0.892,1.003,0.909,0.941,0.962,0.737,0.93,0.885,0.874,0.884,1.321,0.934,1.195,1.266,0.854,2.662,1.233,1.039,0.877,1.107,0.953,0.967,4.754,14.46,1.013,1.916,1.067,1.44,1.561,0.881,1.312,0.978,0.988,0.849,1.038,3.208,1.187,2.295 +NM_172314,0.857,0.962,1.071,0.816,1.099,0.996,0.967,0.824,1.082,1.06,0.78,0.989,1.035,1.017,0.923,1.192,0.957,1.125,0.945,1.007,1.097,1.124,1.14,1.043,0.933,1.026,1.099,1.09,0.807,0.935,0.981,1.175,1.003,0.885,0.903,1.035,0.967,1.052,1.238,1.021,1.138,0.932,0.885,0.989,1.029,1.022,0.917,1.064,0.91,0.999,0.979,1.135,1.166,1.051 +NM_172315,0.688,1.0,1.246,0.79,0.751,1.462,1.0,0.647,0.976,0.842,1.822,0.837,0.738,0.702,0.934,1.504,0.755,0.855,0.93,1.803,0.79,0.729,3.084,0.818,0.834,0.608,1.042,0.929,0.637,1.338,0.797,1.821,0.982,2.585,0.532,0.675,1.738,0.956,1.341,0.641,1.094,2.067,0.99,1.165,0.829,1.818,0.735,0.588,1.031,0.683,1.754,1.272,0.754,0.558 +NM_172316,0.954,0.943,1.016,0.863,1.081,1.153,1.162,0.957,1.01,0.978,1.107,0.937,1.017,0.786,1.076,1.138,1.02,1.026,0.988,1.021,1.044,0.976,0.965,1.094,0.921,0.864,0.884,1.073,0.867,1.034,1.126,1.072,1.023,1.039,0.924,0.982,0.983,1.085,1.067,0.965,1.136,0.951,0.841,0.909,0.999,0.929,1.011,1.027,1.072,1.124,1.074,0.967,1.005,1.099 +NM_172337,1.021,0.978,0.969,1.051,1.095,0.963,0.818,0.946,0.893,0.957,0.998,0.97,1.04,0.823,0.804,1.09,1.043,0.961,1.058,0.916,0.895,1.021,0.937,0.991,0.976,0.914,1.029,1.072,1.336,0.911,1.044,0.897,1.033,0.925,0.977,1.108,1.01,0.893,0.968,1.028,0.949,0.987,1.332,1.119,0.986,1.091,1.051,0.99,1.013,0.997,0.939,0.965,1.087,1.001 +NM_172341,0.936,0.87,1.01,0.965,0.864,1.528,0.6,0.795,1.002,0.945,1.142,0.773,0.854,0.704,0.814,1.349,1.229,0.947,1.035,1.024,0.674,0.803,1.428,1.192,0.672,1.129,0.925,0.761,0.483,0.912,0.986,0.934,2.72,1.324,0.859,0.833,1.023,0.929,1.822,1.209,0.956,1.044,0.862,1.427,0.957,1.056,1.078,1.026,1.141,0.906,1.108,0.796,1.001,1.353 +NM_172343,1.205,1.017,0.812,1.044,1.077,0.906,1.008,0.956,0.842,0.912,1.143,1.016,0.887,1.152,1.032,1.03,0.984,0.984,1.172,0.982,0.982,1.002,0.856,0.918,1.054,1.06,1.1,1.025,1.09,1.01,0.914,0.994,1.193,1.03,0.946,1.091,0.977,0.999,0.918,0.902,0.95,0.861,1.168,1.001,0.948,0.935,1.099,1.043,0.913,0.995,1.019,1.065,0.972,0.892 +NM_172344,1.023,0.938,1.02,0.844,1.006,0.982,1.027,1.059,0.928,1.078,0.958,0.934,1.012,0.982,0.868,0.922,1.032,0.898,0.839,1.029,1.045,0.888,0.857,1.104,1.034,0.94,1.129,1.053,0.706,1.029,1.051,1.003,1.005,1.033,1.005,1.057,1.189,0.867,0.992,1.057,0.909,1.081,0.939,1.007,1.067,0.896,1.107,0.964,0.981,0.949,0.964,1.242,1.019,1.194 +NM_172345,1.8449999999999998,1.972,2.0789999999999997,1.567,1.875,1.9609999999999999,1.6190000000000002,2.0940000000000003,1.948,1.85,1.8359999999999999,1.871,1.834,1.968,2.034,2.085,1.8820000000000001,1.76,2.223,1.752,1.911,1.988,1.88,1.94,1.835,1.925,2.108,2.021,1.395,1.947,1.915,2.218,1.9899999999999998,1.8849999999999998,1.779,1.932,2.099,1.932,2.015,2.057,1.847,2.051,1.889,1.9289999999999998,2.005,1.708,1.93,1.969,1.938,2.002,2.0309999999999997,1.879,1.828,2.519 +NM_172346,0.948,1.026,0.981,1.156,0.861,0.999,0.9,1.002,0.944,1.003,0.844,0.854,0.825,1.05,1.366,0.891,0.98,0.982,1.098,1.106,1.233,1.07,1.044,0.974,0.989,0.973,0.948,1.034,0.848,1.191,0.946,1.632,0.938,1.236,1.107,0.899,0.957,0.988,1.043,0.953,0.891,1.193,1.264,0.918,0.975,1.054,1.04,0.945,0.814,1.038,0.918,1.029,1.144,1.032 +NM_172347,2.13,1.8410000000000002,2.0180000000000002,1.807,1.839,1.894,2.2279999999999998,2.179,1.9689999999999999,2.0759999999999996,2.1609999999999996,2.021,1.9249999999999998,1.889,1.909,2.05,2.051,1.8439999999999999,1.837,1.732,1.951,2.0149999999999997,1.9459999999999997,2.13,2.061,2.2190000000000003,2.109,2.1109999999999998,2.0860000000000003,1.956,2.197,1.982,1.6800000000000002,1.891,2.0789999999999997,1.968,2.086,2.026,2.034,2.0999999999999996,2.023,2.027,1.895,2.037,2.0469999999999997,2.1559999999999997,2.009,1.907,2.1109999999999998,2.088,2.064,1.9,1.865,2.015 +NM_172348,0.933,1.008,1.133,0.985,0.907,0.858,0.862,0.954,1.226,0.884,0.906,0.969,1.227,0.915,1.05,0.946,0.992,1.207,1.242,1.026,1.032,0.916,0.985,1.047,1.079,0.795,1.015,1.092,0.857,0.926,1.081,0.985,0.951,0.923,1.196,1.058,1.044,1.111,0.888,0.839,1.027,1.052,0.844,1.128,0.966,0.893,0.814,1.023,1.057,0.88,0.925,1.085,1.01,1.111 +NM_172349,0.938,1.05,1.112,0.881,1.029,1.055,0.909,0.798,1.163,0.998,0.96,0.932,0.916,0.988,0.901,1.051,1.084,1.061,1.198,1.011,0.884,0.947,1.027,1.046,0.956,0.8,1.016,0.825,0.766,1.023,1.075,1.152,1.836,0.909,0.845,0.852,0.959,1.116,1.401,1.08,1.064,1.009,0.919,1.071,1.149,0.836,1.054,1.018,0.944,1.132,0.936,0.947,0.984,1.414 +NM_172350,0.65,1.12,1.692,0.989,0.702,0.867,0.513,0.325,1.211,0.615,1.222,0.309,0.768,0.85,0.724,1.597,1.44,0.811,1.441,1.157,0.472,0.37,1.146,0.618,0.729,0.584,0.924,0.715,0.291,1.124,0.967,1.532,3.121,1.31,0.552,1.135,1.049,0.413,1.175,0.855,1.107,1.006,0.674,1.326,0.972,1.134,0.785,0.517,0.771,1.007,0.977,0.748,1.287,1.564 +NM_172362,0.981,0.942,0.918,1.131,0.935,0.966,1.213,1.298,0.834,0.878,0.942,1.009,0.918,1.117,1.071,1.142,0.803,0.948,1.047,0.997,0.974,0.95,1.059,1.008,0.976,1.091,0.934,0.898,1.255,1.059,0.862,0.927,1.09,1.17,1.212,0.977,1.035,0.916,0.985,1.177,1.113,0.95,1.256,0.928,1.008,1.01,0.803,1.029,1.002,0.942,1.048,1.368,0.88,1.016 +NM_172363,0.535,0.797,1.669,0.542,0.921,1.476,0.769,0.842,1.171,0.892,0.777,1.178,1.004,0.467,1.007,2.495,0.781,1.039,0.725,1.046,0.242,1.17,1.366,1.452,0.504,0.324,1.506,0.917,0.391,1.291,1.08,1.637,1.959,1.234,0.151,0.533,1.072,1.115,2.047,1.795,0.979,0.961,0.613,0.519,1.149,0.958,1.35,0.676,1.35,0.648,1.393,0.931,0.407,1.671 +NM_172365,0.859,1.617,0.818,0.844,0.876,1.704,0.957,0.906,0.827,0.875,1.396,0.78,0.895,0.81,1.022,1.544,0.8,0.836,0.788,1.454,0.714,0.765,1.104,0.805,1.05,0.793,0.719,0.904,0.86,1.366,0.83,0.853,0.747,1.729,0.851,1.162,1.138,0.8,1.39,0.91,0.727,1.209,1.031,1.166,0.906,1.688,1.255,0.941,0.961,0.849,1.354,0.863,0.761,1.083 +NM_172366,1.044,1.001,0.889,0.98,1.068,1.156,1.504,0.976,0.975,0.783,1.31,1.031,0.842,0.928,1.275,1.225,1.082,0.963,0.948,1.054,0.915,0.906,1.128,0.875,1.047,0.962,1.007,0.828,0.845,1.262,0.915,1.063,1.324,1.104,1.331,1.008,0.997,1.013,1.247,1.024,0.892,1.008,0.925,0.855,1.028,1.179,1.024,0.915,1.073,0.879,1.031,0.852,1.083,1.503 +NM_172367,0.995,1.0,1.007,0.979,0.877,1.113,0.852,1.04,0.98,0.973,1.078,0.989,0.989,1.176,0.848,1.118,1.029,1.016,0.946,0.984,0.862,0.977,1.001,1.062,1.012,0.998,0.922,1.079,0.769,0.978,1.046,0.916,1.122,1.03,0.951,0.973,0.903,1.093,0.816,1.092,1.215,1.084,1.005,1.039,1.114,1.058,0.925,1.002,1.044,0.916,1.008,1.156,1.033,1.083 +NM_172368,1.014,1.007,1.078,0.888,1.08,0.878,0.918,0.957,0.996,1.111,0.935,1.056,0.934,1.198,1.15,0.896,1.003,0.998,1.183,0.943,0.982,0.92,0.94,0.989,1.023,1.045,1.087,0.889,1.02,1.077,1.02,1.002,1.052,0.972,0.958,1.032,1.013,0.955,1.019,1.005,0.978,0.991,0.832,1.079,0.986,0.949,1.011,0.992,1.108,1.104,1.034,1.029,0.929,1.008 +NM_172369,0.831,1.405,1.1,0.733,0.815,1.176,0.952,0.676,0.736,0.754,0.77,0.706,0.908,0.551,0.681,0.782,1.058,0.726,0.781,0.657,0.815,0.699,1.298,1.134,1.251,0.787,1.355,0.692,0.61,2.0,0.574,2.572,0.98,1.545,0.539,0.702,0.83,0.932,1.648,0.78,0.981,1.644,0.845,0.954,0.8,0.846,0.752,0.773,0.615,0.926,0.829,1.533,1.408,2.081 +NM_172373,0.628,0.871,1.384,0.655,0.914,1.284,0.68,0.455,1.126,0.781,1.019,0.699,0.601,0.54,0.788,1.702,0.778,0.985,1.051,1.142,0.54,0.623,1.237,0.77,0.519,0.843,1.249,0.923,0.347,1.518,0.748,0.929,0.89,1.246,0.503,0.839,1.357,0.645,1.384,3.206,1.031,1.517,0.757,1.431,0.964,1.347,1.194,0.708,1.067,0.778,1.086,0.824,0.927,1.266 +NM_172374,0.899,1.138,0.978,1.12,1.177,1.044,0.917,0.814,1.022,1.051,1.088,0.93,1.004,0.911,0.974,1.03,1.082,1.065,1.008,0.958,0.978,1.071,0.934,0.897,0.977,1.052,1.385,1.134,0.957,0.912,1.013,1.099,0.901,0.875,1.191,0.865,0.931,0.966,1.106,0.952,1.161,0.977,0.939,0.951,0.982,1.089,1.0,1.064,1.165,1.131,1.028,0.964,1.0,0.979 +NM_172376,0.922,1.014,1.031,0.95,1.02,0.967,0.862,1.064,1.023,1.117,1.07,0.905,1.101,1.055,0.97,0.804,1.023,1.058,0.839,1.014,1.148,0.988,0.875,1.008,1.08,1.016,0.892,0.997,1.274,1.035,1.015,0.934,1.014,1.118,0.98,0.994,1.104,0.999,0.884,0.824,1.054,1.094,0.957,1.001,1.063,1.119,1.022,1.089,1.128,1.062,1.031,0.968,1.06,0.892 +NM_172386,1.011,0.987,0.872,0.965,0.944,0.923,0.922,0.978,0.949,1.001,1.019,1.125,0.985,0.939,0.992,0.97,1.093,0.932,0.915,1.064,1.032,0.922,0.962,1.089,0.956,1.028,1.085,1.105,0.681,0.969,0.978,1.115,0.961,0.972,0.916,1.02,1.005,0.998,1.09,1.081,0.897,0.984,0.97,1.064,0.896,1.042,1.014,1.238,0.937,0.955,0.993,1.032,0.972,0.938 +NM_172387,0.921,1.029,0.969,0.834,1.059,1.081,1.12,1.365,1.011,1.005,1.134,1.182,0.92,1.07,0.849,1.04,0.973,0.92,0.95,1.135,1.113,0.893,0.98,0.934,0.925,1.001,1.056,1.025,1.462,1.092,0.932,0.968,1.082,0.789,1.18,0.93,1.006,1.124,1.205,0.886,1.104,1.145,0.994,1.258,1.048,1.107,1.156,1.15,0.984,0.999,1.09,0.817,0.863,0.922 +NM_172390,1.658,2.112,2.192,1.8439999999999999,1.9820000000000002,2.016,1.908,1.813,1.745,1.712,1.9649999999999999,1.791,1.876,1.703,1.759,1.957,1.629,1.8689999999999998,1.557,2.222,1.907,1.564,2.482,1.8290000000000002,2.024,1.821,2.135,1.659,1.62,2.051,1.962,2.825,2.127,2.053,1.855,2.844,2.1799999999999997,1.7429999999999999,3.3,3.075,1.9689999999999999,1.996,2.8360000000000003,2.247,1.811,1.8290000000000002,1.875,1.7189999999999999,1.811,2.0060000000000002,2.138,2.208,2.1,2.5789999999999997 +NM_173039,0.744,1.026,0.726,0.984,0.632,1.422,1.182,0.678,0.668,0.564,1.577,0.778,0.686,0.895,1.11,3.151,0.673,0.884,0.731,1.573,0.686,0.734,1.364,0.703,1.127,0.647,0.636,0.666,0.938,1.018,0.638,1.425,1.506,1.281,0.689,1.273,3.986,0.708,1.311,0.794,0.638,1.34,1.779,0.961,0.708,1.615,1.687,0.633,1.363,0.675,1.434,0.733,0.744,1.046 +NM_173041,1.062,0.993,1.077,1.115,1.047,1.008,0.938,1.018,1.061,0.971,1.058,1.036,0.968,1.118,0.779,1.025,0.966,0.936,1.197,0.997,0.947,1.055,0.914,0.942,1.077,1.12,0.974,1.009,0.812,1.046,0.982,1.132,1.056,0.805,0.957,1.044,0.895,0.859,0.979,1.058,1.086,1.102,0.794,1.027,1.005,1.153,1.044,1.131,0.974,0.909,1.012,0.936,0.985,0.884 +NM_173044,2.2119999999999997,1.917,2.1239999999999997,2.128,2.023,1.984,1.633,2.1719999999999997,1.851,1.869,1.915,1.9,1.888,2.402,1.7309999999999999,2.07,1.959,1.975,1.939,1.915,2.233,2.009,1.892,2.029,2.051,2.309,2.032,1.9649999999999999,2.225,2.133,2.083,2.18,2.067,1.9489999999999998,2.1310000000000002,1.8900000000000001,1.95,2.1550000000000002,2.036,2.003,2.0,1.938,2.235,2.005,2.06,2.072,1.8290000000000002,2.184,1.811,2.152,2.105,1.967,1.831,1.9089999999999998 +NM_173050,0.925,0.977,0.894,1.106,1.068,1.029,1.013,1.036,0.904,0.904,0.97,1.081,0.905,1.038,0.951,1.129,0.988,1.019,0.937,1.036,0.983,0.939,1.207,1.01,1.247,0.913,0.929,0.939,1.31,1.087,0.93,1.002,1.014,0.985,1.036,1.035,1.028,0.876,1.006,0.801,1.046,1.129,1.042,1.069,1.13,1.062,0.975,0.919,1.011,0.905,1.01,1.091,1.02,0.958 +NM_173054,0.835,1.149,0.91,0.98,0.988,0.997,1.115,0.984,1.031,0.898,1.076,1.021,1.005,0.958,0.832,1.067,0.979,1.086,0.889,1.144,0.904,1.124,0.948,1.024,1.073,1.031,0.906,1.024,0.985,0.814,0.983,0.951,0.991,0.985,0.983,0.984,0.974,1.047,1.02,1.023,1.001,1.122,1.106,0.987,1.003,1.077,1.015,0.987,1.067,1.049,1.103,0.921,0.993,0.843 +NM_173055,1.188,0.91,1.002,1.092,1.033,0.997,1.079,1.099,1.013,1.027,0.972,0.954,0.945,1.099,0.942,0.922,0.951,0.981,0.959,1.003,1.068,0.901,0.981,1.02,1.007,0.935,1.006,0.924,0.989,0.977,0.923,0.92,1.005,1.054,1.058,0.984,1.063,1.023,1.108,1.067,1.069,1.013,1.072,0.803,1.012,0.829,0.862,0.992,0.876,0.991,0.924,1.023,0.972,1.041 +NM_173059,1.025,0.97,0.969,1.006,1.092,1.023,0.928,1.072,1.007,0.976,1.011,0.9,1.009,1.076,0.818,0.988,1.007,1.027,0.966,0.892,0.954,0.98,1.241,1.233,1.227,0.948,0.958,0.979,0.856,1.212,1.321,0.841,1.041,1.058,1.135,1.082,1.134,1.057,0.943,0.994,1.0,1.037,0.925,1.099,1.023,1.004,1.244,0.946,1.145,0.929,1.021,1.18,0.969,0.972 +NM_173060,0.802,0.717,2.21,0.631,1.31,2.615,0.95,2.205,1.536,0.986,0.795,1.591,1.388,0.959,1.401,2.731,1.246,1.032,0.453,1.738,0.28,2.593,0.83,1.962,0.508,0.407,1.404,1.298,0.545,1.715,2.164,1.278,1.386,0.954,0.358,0.309,1.07,3.263,1.326,0.626,1.291,1.14,0.659,0.293,1.227,1.478,0.881,1.288,1.613,0.775,1.541,0.753,0.306,0.748 +NM_173061,2.002,1.328,3.543,1.543,3.6750000000000003,2.2729999999999997,1.5,3.1159999999999997,4.082,2.754,1.524,2.4290000000000003,1.875,2.146,2.74,3.012,2.8070000000000004,2.113,3.075,1.802,1.934,3.096,1.658,3.255,1.155,2.1559999999999997,2.896,3.544,1.443,1.721,4.517,1.562,3.216,2.052,3.279,1.3579999999999999,1.755,3.92,1.77,1.4060000000000001,2.92,1.6760000000000002,1.444,1.2850000000000001,2.712,1.702,2.367,2.685,1.924,2.221,2.1,1.5219999999999998,1.826,1.865 +NM_173062,1.173,0.989,1.073,0.926,1.027,1.062,0.904,1.151,1.059,0.987,0.993,1.181,0.914,0.934,0.917,0.92,0.969,0.914,0.876,0.903,0.925,0.767,0.95,0.971,1.032,1.073,0.97,1.039,0.834,1.072,0.987,0.825,1.015,0.84,1.087,0.926,1.073,1.0,0.951,0.973,1.081,1.141,0.947,1.103,1.095,1.077,1.181,1.077,1.167,1.0,1.126,1.03,0.996,1.125 +NM_173065,0.692,0.952,0.999,0.879,1.204,1.399,0.923,0.76,0.955,1.104,1.031,0.829,0.795,0.713,1.282,1.276,0.919,0.96,0.911,1.183,0.617,0.974,1.124,0.917,0.76,0.8,0.817,0.78,0.734,1.17,1.038,1.022,0.758,1.164,0.577,0.856,1.177,1.096,0.907,0.994,0.832,1.082,1.13,0.898,0.823,1.088,1.454,0.896,1.339,1.147,1.096,0.65,0.85,1.83 +NM_173073,0.901,1.002,0.988,0.865,0.99,1.005,0.823,0.601,0.901,1.029,0.872,0.919,0.884,0.785,1.009,1.435,0.823,0.941,0.998,1.09,0.747,0.873,1.507,0.99,0.87,1.005,0.981,0.81,0.652,1.255,0.802,1.95,2.08,1.423,0.453,0.971,0.879,0.867,1.369,1.141,0.909,0.962,0.835,1.513,1.019,0.898,0.828,0.848,0.884,0.938,1.134,1.113,0.997,1.659 +NM_173075,0.873,0.976,0.872,0.946,0.958,1.038,1.154,0.999,0.945,0.89,0.944,1.027,0.96,0.908,1.059,1.053,1.095,0.795,0.983,1.024,1.003,0.937,0.987,0.954,1.098,0.966,0.884,1.038,1.377,1.014,0.976,0.983,1.245,1.038,0.865,0.932,1.064,0.925,0.951,0.938,1.027,0.88,0.875,0.981,1.082,0.989,1.069,0.96,1.018,1.122,0.986,1.081,1.017,1.033 +NM_173076,0.998,1.13,0.964,0.902,1.061,0.84,0.978,0.984,0.875,1.104,1.017,1.076,1.02,0.81,0.787,1.121,1.148,0.861,0.927,0.948,0.956,0.885,0.872,0.98,1.042,1.116,1.186,1.218,0.58,0.961,1.049,0.931,0.842,0.943,0.98,0.94,1.015,0.986,1.04,1.044,1.066,0.98,0.923,0.996,0.908,0.851,1.104,1.05,1.224,1.195,0.897,1.203,0.907,1.014 +NM_173078,1.186,0.997,1.026,1.025,1.203,0.981,0.812,1.028,0.896,1.028,1.0,1.013,0.9,0.898,0.795,1.135,1.516,1.037,1.344,0.89,0.976,0.871,0.856,2.074,0.967,1.176,1.044,2.235,0.953,0.912,1.167,1.078,0.947,1.015,0.88,0.874,1.033,0.997,1.177,1.113,1.376,0.9,0.864,0.93,1.718,0.98,1.124,1.162,0.929,1.536,1.082,0.978,1.3,0.898 +NM_173079,0.494,1.228,0.817,0.783,0.68,1.473,0.924,0.471,0.763,0.624,1.524,0.629,0.508,0.624,0.941,1.565,0.705,0.785,0.733,1.175,0.519,0.747,1.249,0.844,0.726,0.577,0.987,0.671,0.627,1.629,0.703,1.798,1.65,1.828,0.374,1.003,1.12,0.714,1.373,0.818,0.863,1.323,0.978,1.373,0.591,1.242,0.773,0.551,0.968,0.609,1.247,0.923,0.722,1.535 +NM_173080,1.149,1.069,0.992,1.168,1.059,0.996,1.07,1.006,0.91,0.913,0.905,1.036,0.947,0.935,0.884,0.916,1.114,1.193,0.993,0.984,1.144,1.001,0.932,0.936,1.01,0.972,1.208,0.916,0.827,0.998,0.926,0.897,1.146,0.963,1.001,0.917,0.989,1.049,0.91,0.965,0.941,0.944,1.12,1.065,1.015,0.776,1.084,0.971,1.103,1.537,0.981,1.118,1.221,0.997 +NM_173081,1.043,0.929,1.09,1.292,0.923,1.077,1.304,0.997,0.941,0.773,1.025,0.974,0.98,1.003,1.054,0.88,1.024,1.024,0.919,1.086,0.834,0.86,0.862,0.868,1.087,1.095,1.086,1.278,1.67,1.063,1.15,1.033,1.465,0.877,1.037,0.834,0.954,1.081,0.856,0.955,0.922,1.29,1.167,1.162,1.02,1.006,0.924,1.133,0.953,0.994,0.967,0.961,1.051,0.893 +NM_173082,0.872,0.98,1.07,1.119,1.013,0.986,0.867,0.753,1.16,1.001,0.956,0.86,0.987,1.069,1.228,1.041,0.901,0.879,1.109,0.918,0.873,1.038,1.016,0.989,1.124,0.907,1.043,0.928,0.64,0.95,1.057,1.019,1.099,0.996,0.738,0.952,1.039,1.003,1.034,0.851,1.01,0.984,0.938,0.998,1.034,1.077,1.07,0.866,0.988,0.909,0.933,1.088,1.04,1.086 +NM_173083,0.864,1.034,0.959,0.868,0.825,1.276,0.934,1.047,0.931,1.026,1.235,0.918,0.863,0.803,0.897,1.26,0.841,0.945,0.917,1.258,0.804,0.823,1.164,0.966,0.87,0.818,1.08,0.865,0.901,1.003,0.94,0.989,2.03,1.32,0.746,1.196,1.106,0.802,1.206,1.062,0.783,1.084,0.948,1.092,0.83,0.947,0.899,0.876,1.051,0.827,1.049,1.147,1.032,1.863 +NM_173084,1.077,0.966,1.001,1.099,0.925,1.169,0.813,1.009,1.017,1.03,1.117,1.041,1.045,1.116,0.8,0.839,0.935,1.092,1.13,1.02,1.022,0.927,0.854,1.013,1.075,0.84,0.99,1.096,1.04,0.972,1.038,1.074,0.972,0.962,1.037,0.926,0.947,0.906,1.173,0.894,1.091,0.868,0.758,0.834,1.003,1.063,1.164,0.971,1.172,1.006,1.051,1.1,0.93,0.962 +NM_173086,1.946,0.0519,5.77,0.776,7.254,0.0528,0.0429,4.151,1.427,11.53,0.0456,3.925,0.468,2.645,3.784,8.03,11.25,7.142,5.992,0.0838,5.256,1.033,0.0533,5.895,0.053,2.146,7.45,4.542,0.0453,0.058,5.825,0.0463,6.988,0.0518,1.54,0.0593,0.0527,12.07,0.166,0.054,4.533,0.0485,0.0508,0.0488,12.83,0.044,4.424,4.553,1.429,9.995,0.967,2.085,9.309,0.61 +NM_173088,0.998,1.218,1.062,0.994,1.093,1.048,1.067,1.113,1.084,0.99,1.064,1.102,1.015,1.192,0.961,1.009,0.968,0.949,1.151,1.107,0.995,0.925,1.027,0.895,0.933,0.998,1.009,1.105,1.005,1.02,0.964,1.036,0.969,1.017,0.988,0.999,0.972,1.008,1.044,0.853,1.152,0.897,1.134,1.101,0.896,1.124,1.033,0.979,0.921,0.883,0.995,1.01,0.984,1.255 +NM_173089,0.917,0.939,1.141,1.293,1.147,0.943,0.992,0.964,1.111,1.109,0.843,1.021,1.087,0.98,0.961,1.074,1.078,0.888,1.02,1.269,1.035,0.998,1.15,1.082,0.898,0.983,1.006,0.959,1.284,1.048,0.927,1.196,1.021,0.927,0.986,0.968,1.007,0.952,0.866,0.94,1.25,0.861,1.065,0.853,0.978,1.105,0.944,0.853,0.899,1.039,0.964,0.905,1.573,1.231 +NM_173091,1.121,0.994,0.992,1.052,0.945,0.984,1.168,1.012,1.2,0.838,1.085,0.964,0.959,0.876,1.157,1.077,0.905,0.95,1.102,1.072,1.197,0.89,1.061,1.091,1.037,1.027,0.906,1.094,1.059,1.163,1.037,0.956,1.249,0.936,1.061,1.063,1.018,0.925,0.991,0.851,0.92,0.908,1.016,0.999,0.986,1.067,1.074,1.027,1.054,0.887,0.997,1.041,1.054,0.892 +NM_173092,0.922,1.11,0.953,0.938,1.224,1.086,1.195,1.096,1.052,0.984,1.001,1.104,1.036,0.853,1.024,1.032,0.911,1.016,0.99,1.047,0.976,1.034,1.056,1.08,0.896,0.874,1.104,0.94,1.28,0.983,0.933,1.175,0.978,1.054,1.039,0.945,0.876,0.931,1.045,0.927,0.987,1.069,0.977,0.905,0.951,1.205,1.075,0.925,0.847,1.055,0.879,0.971,1.233,1.094 +NM_173156,1.126,0.99,0.925,1.218,0.799,1.068,1.02,0.88,0.88,0.976,0.927,1.044,0.87,1.164,1.067,1.001,0.951,0.961,1.092,0.966,1.083,1.043,1.165,0.923,1.261,0.94,0.991,1.132,0.912,0.91,1.018,1.075,1.337,0.993,0.985,1.069,1.238,0.971,1.026,0.972,0.939,0.853,1.181,1.064,1.009,0.949,0.846,0.845,0.985,1.135,0.981,0.816,1.086,0.974 +NM_173158,2.067,1.982,1.991,2.016,1.948,2.065,2.118,1.8410000000000002,1.7429999999999999,1.788,2.23,2.1319999999999997,1.93,1.98,1.846,2.232,1.911,1.784,1.8689999999999998,1.873,2.108,2.008,1.772,2.19,2.0599999999999996,2.262,2.1390000000000002,2.105,2.423,2.153,1.9340000000000002,1.9649999999999999,1.845,1.92,1.846,2.22,1.934,1.935,1.9449999999999998,2.121,1.803,2.127,2.248,2.122,1.871,2.1870000000000003,1.967,2.121,2.027,1.794,1.9569999999999999,1.9449999999999998,2.0229999999999997,1.9529999999999998 +NM_173159,1.073,1.161,1.027,1.137,1.084,0.908,1.114,0.947,0.936,1.01,1.109,0.97,0.979,0.868,0.967,1.105,1.026,1.085,0.992,1.241,0.856,1.065,0.97,1.118,0.825,0.914,1.134,1.081,1.075,0.932,0.984,0.86,1.084,0.897,0.94,0.926,1.001,0.858,1.03,0.862,1.051,0.938,1.187,0.976,1.086,1.061,0.966,1.074,0.806,0.909,0.942,1.094,1.214,1.058 +NM_173160,0.969,1.994,0.802,0.981,0.999,0.957,1.083,0.97,0.916,0.967,0.919,1.09,1.077,1.112,0.841,1.206,0.927,1.038,1.014,0.988,1.093,0.972,0.956,0.962,1.673,0.929,0.981,0.955,1.378,1.023,1.001,1.073,0.988,1.244,0.919,1.781,1.036,0.983,1.027,0.944,0.975,0.966,0.964,1.407,0.948,1.037,1.04,1.031,1.017,0.994,0.978,0.877,1.117,1.11 +NM_173162,2.169,1.744,1.95,1.9849999999999999,2.165,1.897,1.7530000000000001,2.159,1.8980000000000001,2.226,1.9100000000000001,2.074,1.8639999999999999,2.082,1.925,1.9749999999999999,1.959,2.067,2.186,2.0759999999999996,2.085,2.1799999999999997,2.018,2.082,2.0620000000000003,1.956,2.0869999999999997,2.025,1.835,1.806,1.983,1.928,1.8820000000000001,2.017,2.092,1.952,2.096,2.041,1.861,2.253,2.084,1.9729999999999999,1.826,1.987,2.143,2.0469999999999997,1.9329999999999998,1.862,1.8250000000000002,1.945,1.847,1.984,1.8699999999999999,1.976 +NM_173163,1.025,1.027,1.037,0.97,0.984,0.971,0.794,0.863,0.916,1.055,1.056,0.998,1.025,0.861,1.008,0.972,0.95,0.946,0.969,1.09,1.119,0.962,0.99,0.978,0.9,0.95,0.955,0.923,0.749,0.817,0.829,0.974,1.115,0.918,1.029,1.042,1.086,0.943,1.025,1.109,0.994,0.879,1.007,1.041,1.033,1.03,1.017,0.98,0.957,1.112,0.987,0.963,1.173,1.102 +NM_173164,0.958,1.077,1.494,0.747,1.076,0.948,0.66,0.664,1.004,1.102,0.919,0.794,0.737,0.885,0.886,1.016,1.073,0.897,1.304,0.854,0.868,0.853,1.217,0.972,0.799,0.971,1.244,0.962,0.627,0.844,0.99,1.44,1.711,0.959,0.641,0.811,1.109,0.984,1.227,1.081,1.26,1.126,0.826,1.216,0.964,1.052,1.099,0.855,0.985,1.066,0.927,0.963,0.838,1.395 +NM_173167,1.04,0.952,0.989,0.958,0.926,0.843,1.079,0.975,0.818,0.96,1.369,0.851,0.932,0.948,0.829,1.059,1.094,1.166,1.053,1.133,1.072,0.991,0.91,1.117,1.001,1.031,1.082,1.042,1.674,0.967,1.186,0.97,1.133,0.98,0.928,1.08,0.974,0.88,0.885,1.052,1.049,1.231,0.772,0.98,0.971,1.116,0.782,1.038,1.01,0.984,0.95,0.979,0.931,0.897 +NM_173173,0.923,0.955,1.382,0.87,0.85,1.15,0.837,0.789,0.884,0.993,0.968,1.081,0.778,1.016,0.794,1.065,1.062,0.886,0.952,1.15,0.813,1.079,1.417,0.924,0.801,0.824,1.362,0.871,0.775,0.986,0.889,1.203,1.715,1.0,0.84,0.973,0.933,0.925,1.415,3.164,1.084,1.213,1.495,0.905,1.096,3.416,1.029,0.82,1.297,1.045,1.218,1.237,0.821,1.39 +NM_173174,1.059,1.129,0.953,0.908,1.068,0.973,1.005,1.145,1.148,0.97,0.966,1.0,1.064,1.151,1.039,0.878,1.063,1.097,0.91,0.992,0.964,1.122,0.924,0.999,1.005,1.072,1.111,1.014,0.852,0.943,0.909,0.989,0.993,0.947,0.958,0.916,1.005,1.156,1.016,1.042,1.013,0.973,0.827,1.123,0.9,0.986,0.915,1.053,1.09,1.044,1.016,1.048,1.074,1.195 +NM_173175,0.971,0.651,1.102,1.209,0.826,1.348,0.991,0.849,0.836,0.744,1.006,0.693,1.046,0.62,1.038,1.613,1.013,0.872,1.244,1.148,0.754,0.715,1.166,0.674,0.823,0.745,0.867,0.702,0.733,0.996,1.012,0.654,0.863,1.326,1.183,0.719,1.059,0.712,1.944,0.78,0.899,1.376,0.788,1.135,0.749,1.11,0.689,1.136,1.347,1.185,1.004,0.649,1.044,0.88 +NM_173177,0.883,0.712,1.234,0.814,0.782,1.788,1.045,1.038,1.393,0.981,0.99,1.031,0.831,0.897,1.099,1.263,0.875,1.188,1.107,1.434,0.833,0.722,1.19,1.005,0.891,0.837,0.937,1.174,0.723,0.845,0.814,1.277,2.492,1.61,0.854,0.707,1.238,0.985,1.098,1.154,0.912,1.057,0.818,0.933,1.029,1.029,0.995,0.784,0.961,0.842,0.744,0.858,0.827,1.358 +NM_173178,2.065,1.8639999999999999,2.3600000000000003,2.168,2.581,1.888,1.907,2.2039999999999997,2.597,2.3179999999999996,1.901,2.1879999999999997,2.282,2.2110000000000003,2.13,2.1879999999999997,2.341,2.245,2.282,2.078,2.008,2.022,1.9540000000000002,2.6,1.952,1.877,2.664,2.2249999999999996,1.863,1.776,2.854,1.799,2.338,1.98,3.1189999999999998,1.825,1.74,2.628,1.6880000000000002,1.8980000000000001,2.153,1.851,1.846,1.842,2.576,1.837,2.482,2.1710000000000003,2.192,2.569,1.692,2.056,2.3049999999999997,1.935 +NM_173179,1.081,1.05,1.095,0.841,0.985,1.1,0.897,0.927,0.986,1.064,0.938,1.035,0.927,1.03,0.829,1.002,1.15,0.912,1.118,1.076,1.009,1.025,0.862,1.135,0.943,0.912,1.149,0.954,0.794,0.964,1.019,0.932,1.003,1.035,1.104,0.933,0.956,0.852,1.037,1.116,0.93,1.11,0.87,1.061,1.023,0.938,0.934,0.991,1.096,1.114,1.003,0.998,0.982,0.843 +NM_173194,0.874,0.912,1.051,1.013,1.025,0.964,0.821,1.401,0.846,0.977,1.047,1.078,0.99,1.012,0.955,1.054,0.951,1.048,0.86,1.064,1.035,0.864,1.005,1.042,1.092,0.983,0.904,1.084,0.578,1.081,1.052,1.023,1.012,1.026,0.906,0.952,1.046,1.116,1.006,1.136,0.989,1.049,0.832,1.004,0.888,0.839,0.968,1.004,0.979,1.028,1.04,1.008,1.143,0.997 +NM_173197,0.957,0.973,1.0,0.938,0.826,0.997,0.985,0.949,1.105,0.813,0.982,1.093,1.072,1.008,1.031,1.184,0.964,1.054,0.986,0.892,0.956,1.135,1.043,0.899,0.96,0.936,0.767,1.036,0.797,0.953,1.114,0.939,1.331,1.136,1.223,0.905,1.061,0.994,1.1,0.906,1.086,0.929,0.989,1.138,1.109,0.995,0.966,1.035,1.189,1.028,1.003,1.008,0.997,0.968 +NM_173198,0.863,1.101,0.953,1.058,1.168,0.974,1.139,1.121,0.857,0.969,1.023,0.994,1.1,0.984,1.216,0.98,1.004,0.99,0.992,1.106,1.114,1.051,0.888,0.998,1.007,1.034,0.908,1.027,1.053,1.053,1.036,1.153,1.027,1.026,0.88,0.939,0.958,0.975,1.055,1.016,0.858,1.102,1.126,1.007,1.148,1.078,0.918,0.953,0.958,0.923,0.986,0.886,0.884,1.11 +NM_173199,1.835,2.785,2.138,1.821,2.0949999999999998,2.13,2.13,2.018,1.9100000000000001,2.015,1.767,1.924,2.229,2.0220000000000002,2.197,1.912,2.06,2.109,2.016,2.118,2.029,1.861,2.0540000000000003,2.146,4.084,2.122,1.764,2.026,2.029,2.218,2.041,1.866,2.036,2.199,1.768,1.979,2.366,1.9129999999999998,1.8579999999999999,2.266,1.9969999999999999,1.893,1.935,2.038,2.014,1.934,1.912,1.959,1.9779999999999998,2.16,1.9409999999999998,1.968,1.975,1.818 +NM_173201,0.979,1.066,0.979,0.978,1.021,1.189,1.07,1.011,0.962,1.063,0.925,1.013,0.923,1.134,0.926,0.925,0.856,0.866,1.183,0.989,0.999,1.028,0.958,1.089,1.074,0.92,0.982,0.994,1.24,0.969,1.014,0.895,1.036,0.994,0.991,0.897,0.999,1.027,0.958,0.883,1.059,1.047,1.088,1.042,0.983,1.051,1.081,0.955,1.039,1.032,0.984,0.933,0.957,1.019 +NM_173203,1.03,1.004,0.987,0.852,0.912,0.92,1.087,0.911,0.988,0.915,0.943,0.959,1.085,0.964,1.136,1.046,1.061,1.036,1.045,0.962,0.899,1.049,1.022,0.949,0.948,1.0,0.934,0.914,1.132,0.929,1.078,0.945,1.149,0.997,1.106,0.91,0.959,1.039,1.007,1.006,1.139,1.098,0.84,0.918,1.09,1.085,0.882,0.976,0.922,0.925,0.893,0.942,0.962,1.026 +NM_173205,1.085,1.158,0.939,0.835,0.93,0.974,1.206,1.029,0.991,0.987,1.014,0.997,1.038,1.242,0.828,1.21,0.864,1.166,1.036,1.021,0.926,1.049,0.839,0.999,1.016,1.026,0.886,1.032,1.045,1.015,1.017,0.816,1.102,1.032,0.941,1.062,1.056,1.007,0.993,1.055,0.931,0.804,1.023,1.046,1.132,1.139,0.812,0.902,1.035,0.982,1.034,0.95,1.094,1.17 +NM_173206,2.138,2.0540000000000003,2.075,1.911,1.9169999999999998,2.142,1.823,1.93,2.291,2.02,2.0949999999999998,2.1630000000000003,1.944,1.966,2.3600000000000003,2.481,2.144,2.019,2.333,1.964,2.053,1.896,2.112,2.099,1.916,2.144,2.201,2.18,1.7599999999999998,2.157,2.159,2.2009999999999996,2.51,2.13,1.965,1.964,1.943,1.964,2.115,1.9089999999999998,2.105,1.959,1.898,2.2110000000000003,2.084,1.9329999999999998,1.811,1.867,2.0,1.958,2.102,1.8679999999999999,2.27,2.2590000000000003 +NM_173207,1.12,1.161,1.037,0.863,1.042,0.905,1.006,1.024,1.115,0.981,1.067,1.014,1.03,0.921,1.023,0.945,0.94,1.056,1.056,1.079,1.075,1.015,1.024,0.978,0.976,0.997,1.012,0.933,0.868,1.001,1.078,0.759,0.903,0.967,1.156,0.947,1.135,0.935,0.913,0.952,1.022,0.955,0.85,0.944,1.032,1.075,0.984,0.854,0.978,0.809,1.073,1.072,0.886,0.946 +NM_173209,1.093,1.075,0.975,0.906,0.955,1.103,0.982,0.885,1.039,1.049,0.999,1.116,0.961,1.116,0.912,1.062,1.084,1.102,1.01,1.051,0.994,0.968,1.039,1.056,0.881,1.076,0.993,1.027,0.811,1.094,0.944,1.096,0.935,1.107,0.838,0.905,0.997,1.019,1.0,1.006,0.914,1.018,0.887,0.971,0.965,1.038,0.966,0.954,0.986,1.012,1.03,0.97,1.051,0.885 +NM_173211,0.59,1.714,0.872,0.756,0.552,1.192,0.581,0.654,1.101,0.388,0.872,0.591,0.908,0.705,0.892,1.44,0.715,0.743,0.802,1.197,0.598,0.593,1.06,0.683,0.555,0.657,0.758,0.995,0.306,1.328,1.094,1.786,3.148,1.255,0.729,0.834,0.884,0.846,1.268,1.118,0.857,1.093,1.113,2.301,0.574,1.046,1.07,0.567,0.752,0.609,1.028,0.832,1.013,1.883 +NM_173213,2.742,3.163,2.517,1.8849999999999998,4.324,1.752,1.984,2.225,2.983,2.495,1.56,1.625,3.2089999999999996,1.929,2.294,1.786,3.032,1.89,4.422,1.6019999999999999,1.9180000000000001,2.306,1.766,2.276,1.68,2.042,5.065,2.008,1.405,1.5630000000000002,2.525,2.2439999999999998,5.976,1.787,2.6079999999999997,1.548,1.763,1.873,1.933,3.015,3.0330000000000004,1.972,1.48,1.991,3.526,1.685,2.8120000000000003,1.9780000000000002,1.776,3.03,1.855,2.614,3.165,2.343 +NM_173215,1.169,0.998,0.98,0.915,1.344,1.205,0.777,0.721,1.412,1.3,0.714,1.16,1.097,0.746,0.625,0.746,0.993,0.784,0.803,1.146,0.749,1.375,0.908,1.471,0.819,0.902,1.486,1.278,0.794,1.082,0.843,1.745,1.853,0.833,1.12,1.066,0.863,1.309,1.172,1.213,1.146,1.064,0.805,1.246,0.826,1.011,1.098,0.949,0.931,0.959,0.881,0.816,0.778,1.454 +NM_173217,0.498,1.5,0.753,0.878,0.535,0.914,1.111,0.446,0.521,0.604,1.034,0.538,0.474,0.469,0.76,1.299,0.452,0.539,0.591,1.487,0.492,0.462,2.196,0.587,0.614,0.479,0.834,0.49,0.492,1.29,0.483,3.569,3.94,1.464,0.451,0.711,1.115,0.68,1.341,2.297,0.654,3.556,1.124,1.904,0.596,1.552,1.367,0.531,0.666,0.534,1.595,0.893,0.912,1.797 +NM_173341,1.0,0.899,1.138,1.059,1.174,0.948,0.904,1.012,0.954,1.059,1.154,0.965,0.913,1.151,0.978,1.182,0.892,1.052,1.178,1.118,0.97,1.173,1.084,1.09,0.96,1.09,0.974,1.054,0.808,0.986,0.968,1.0,0.963,0.945,0.879,1.0,0.914,1.004,1.105,1.017,0.955,0.952,0.892,1.043,0.874,1.033,0.991,0.954,0.967,1.108,0.873,1.006,1.141,1.667 +NM_173343,0.375,0.391,0.594,1.449,0.696,6.778,2.668,0.535,0.911,0.52,2.933,0.843,0.733,0.364,0.867,3.333,0.387,3.1,0.526,3.419,0.376,0.689,7.62,1.646,0.519,0.31,0.982,0.733,1.454,5.404,0.888,0.265,0.896,3.152,0.225,0.83,0.611,0.887,4.007,0.716,1.431,3.537,1.212,0.912,0.891,1.93,1.462,0.522,1.335,0.489,1.951,0.889,0.911,3.758 +NM_173344,1.009,1.101,1.338,0.723,1.114,0.53,0.692,0.713,1.314,1.087,0.522,0.677,0.965,0.872,0.792,0.596,1.897,0.539,1.007,0.553,0.798,1.563,0.606,0.926,1.28,1.508,1.336,0.668,0.569,0.793,0.756,4.043,1.942,0.763,0.783,1.54,0.639,1.23,1.528,2.523,1.029,0.806,0.608,2.867,1.158,0.514,0.876,1.117,0.519,1.405,0.592,1.645,1.284,0.816 +NM_173352,11.14,0.129,4.427,2.239,15.94,0.139,0.137,11.62,15.35,3.829,0.125,6.369,9.025,3.771,5.897,2.006,8.411,5.53,4.96,0.256,3.843,11.31,0.123,4.112,0.143,14.06,4.624,13.53,0.147,0.136,14.06,0.136,2.64,0.129,28.77,0.175,0.199,10.74,0.306,0.141,10.34,0.15,0.175,0.124,6.767,0.135,3.787,17.38,0.76,5.114,1.033,0.967,4.884,0.366 +NM_173353,1.026,1.041,1.079,1.065,1.15,0.975,0.902,1.003,0.946,0.877,1.068,1.118,1.064,1.074,0.922,0.989,1.082,0.98,0.941,0.966,0.912,0.913,1.11,0.926,0.872,1.022,0.87,0.978,1.147,1.009,1.022,0.939,0.824,1.071,1.053,1.013,1.008,1.053,0.953,0.879,0.94,1.04,1.154,1.107,1.156,0.877,0.932,1.057,0.984,0.891,1.041,1.099,1.132,1.025 +NM_173354,0.952,0.962,0.964,0.831,0.982,1.017,0.985,0.901,1.135,1.151,0.855,0.988,0.817,1.056,0.937,0.906,0.954,1.0,0.921,1.161,1.106,0.957,0.937,0.879,0.874,1.036,1.07,0.955,0.851,0.977,1.082,2.247,1.395,0.828,1.016,1.053,0.948,1.132,1.319,1.214,1.095,1.015,1.036,1.075,1.182,2.358,1.1,0.904,0.999,0.997,0.935,1.492,1.356,2.168 +NM_173355,0.949,0.913,1.068,0.92,0.904,1.002,1.322,1.004,1.01,0.883,0.992,1.039,0.982,0.985,1.181,1.019,1.116,1.019,1.025,1.135,1.139,1.039,1.022,0.976,1.004,1.051,0.947,0.999,1.077,0.999,0.965,1.028,0.96,0.879,1.216,1.087,1.068,0.996,0.924,0.852,1.034,0.915,0.934,0.985,0.929,0.909,1.116,1.046,1.074,1.128,1.001,1.001,1.171,0.967 +NM_173357,1.096,0.965,0.897,0.789,0.945,1.081,1.032,1.472,1.025,1.018,0.95,0.923,0.91,1.048,1.029,1.027,0.947,1.123,0.979,1.025,0.988,1.0,1.058,0.991,1.065,0.961,0.923,0.961,1.294,1.006,0.935,1.02,0.985,0.961,1.012,1.0,1.001,1.074,9.788,0.897,1.016,0.869,1.156,1.05,1.082,0.947,0.956,1.035,1.019,0.972,0.966,0.879,0.887,1.0 +NM_173362,0.98,1.098,1.003,1.018,0.889,0.958,1.119,1.065,1.202,1.129,0.926,1.091,1.082,1.114,1.175,1.043,0.947,1.067,0.921,1.092,0.968,1.037,1.063,1.089,0.903,0.978,0.957,0.99,1.497,0.877,1.057,0.978,1.11,0.932,1.088,0.993,1.026,1.05,0.994,0.91,0.99,0.952,0.965,0.915,1.099,1.079,1.011,1.023,0.921,0.979,1.125,1.065,0.895,0.927 +NM_173452,0.817,1.068,0.969,0.878,0.958,0.909,1.338,0.886,1.075,1.064,0.929,1.058,0.989,1.012,1.013,0.981,1.129,1.038,1.031,0.988,0.934,1.02,0.901,0.965,0.905,1.005,1.111,1.01,0.822,1.079,0.945,1.779,0.997,0.996,0.869,1.22,0.987,1.018,2.218,1.311,0.862,0.966,1.129,0.886,1.121,0.968,1.019,0.937,0.974,1.08,1.099,1.593,1.134,1.3 +NM_173459,0.967,1.112,1.028,1.112,1.037,1.005,0.977,0.993,1.122,1.205,1.011,1.017,0.92,0.995,1.037,1.046,1.089,0.807,1.017,0.941,0.97,1.074,0.836,1.033,1.082,0.977,0.918,0.841,0.825,0.999,1.044,0.88,0.945,0.93,1.128,1.009,1.04,1.038,1.088,0.921,1.069,1.084,1.005,1.008,1.198,1.083,0.997,1.016,0.947,1.017,1.018,0.964,1.003,0.959 +NM_173463,1.023,1.056,1.109,1.242,0.859,1.042,0.86,0.98,1.101,1.249,0.993,1.025,1.073,0.881,0.778,1.056,0.982,0.807,1.011,0.921,0.986,0.88,1.012,0.996,1.098,0.947,0.944,1.16,1.029,1.162,0.931,1.037,1.123,0.933,0.952,0.885,1.159,0.961,1.034,0.986,1.09,1.177,0.719,1.005,0.904,0.929,1.049,0.884,0.952,1.026,0.96,0.899,0.981,0.929 +NM_173464,1.001,0.89,0.977,1.046,0.862,1.17,1.082,0.897,0.974,1.061,1.008,1.012,1.072,1.14,1.023,1.011,0.957,1.087,1.073,1.028,0.975,1.04,1.041,0.851,0.979,1.047,0.994,1.021,0.842,1.012,1.03,0.92,1.023,1.005,0.956,0.999,0.898,0.938,1.012,0.949,1.006,0.978,1.078,1.095,1.045,1.13,1.148,1.028,0.943,0.884,1.038,0.985,0.968,0.815 +NM_173465,0.856,1.131,1.007,0.932,0.893,1.177,1.026,0.832,0.966,0.771,1.169,1.027,0.941,0.84,1.064,1.256,0.915,1.142,0.803,1.223,0.931,0.852,1.698,0.887,0.984,0.938,0.843,0.797,0.987,2.294,0.988,1.094,0.972,1.557,0.827,0.923,0.984,0.886,1.552,1.351,0.916,2.175,0.928,0.939,0.966,1.345,0.963,0.881,0.994,0.888,1.441,1.104,0.8,1.225 +NM_173466,0.981,0.948,1.053,1.116,1.05,0.996,1.045,0.988,1.008,0.937,0.969,0.923,0.912,1.175,0.881,1.011,1.11,0.962,0.997,1.103,1.051,1.105,0.918,1.037,0.99,1.12,0.947,1.084,1.011,0.984,1.009,1.044,1.121,0.964,1.075,1.071,1.015,0.967,1.029,0.956,1.068,0.914,0.91,0.932,1.044,0.969,0.972,1.03,1.019,0.96,0.908,0.822,1.041,1.297 +NM_173467,0.89,1.089,0.949,0.919,0.835,0.933,0.868,0.772,0.887,1.044,1.23,0.73,0.785,0.968,0.947,1.226,0.953,0.879,1.116,1.109,0.864,0.812,1.254,0.928,0.816,0.96,0.905,0.931,0.553,1.117,1.141,0.818,1.347,1.022,0.728,1.001,1.055,0.927,1.284,0.838,1.065,1.041,0.946,1.065,1.055,1.296,0.806,0.77,1.161,1.049,0.982,0.836,1.04,1.297 +NM_173468,0.899,0.996,1.441,0.81,1.008,1.135,0.955,1.073,1.172,1.128,0.944,0.999,0.849,0.908,1.038,1.247,1.016,1.039,0.893,0.956,0.814,1.218,1.104,1.212,0.87,0.806,1.499,0.974,0.854,1.088,1.331,1.477,1.319,1.151,0.745,0.737,0.849,1.268,1.249,1.242,1.272,1.202,0.892,0.792,1.005,0.998,0.96,0.836,1.209,0.963,0.984,0.849,0.97,1.273 +NM_173469,0.582,1.46,1.905,0.517,1.038,1.199,0.669,1.024,0.985,1.051,0.767,1.341,1.063,0.593,0.862,1.319,1.298,0.834,0.95,1.107,0.475,1.038,1.403,1.215,0.559,0.517,1.211,0.776,0.39,0.994,1.11,1.949,1.935,1.292,0.373,0.766,0.592,1.255,0.872,0.766,1.461,1.168,0.446,0.677,1.303,0.71,1.171,0.88,0.501,1.035,0.957,0.878,0.639,2.069 +NM_173470,0.685,1.106,1.145,0.648,0.722,1.066,0.557,0.639,1.039,0.837,1.406,0.906,0.658,0.732,1.011,1.84,0.717,0.818,1.502,0.802,0.606,0.751,1.198,1.194,0.687,0.777,1.426,0.721,0.428,1.148,0.868,1.591,2.479,1.608,0.253,0.979,1.34,0.845,1.507,0.683,0.948,1.134,0.634,1.847,0.972,0.957,0.87,0.792,0.854,0.802,1.006,0.966,1.036,1.442 +NM_173471,1.102,0.911,0.955,0.928,0.967,1.061,0.848,0.844,1.112,1.007,1.054,1.002,0.798,1.014,1.142,1.004,1.045,1.111,0.999,1.073,1.041,1.002,1.041,0.919,1.057,1.042,0.998,1.055,0.795,1.184,0.95,1.274,1.066,1.154,1.043,1.033,0.921,0.977,1.172,1.017,0.969,0.996,1.024,1.18,0.898,1.042,0.864,0.924,0.978,1.089,0.999,1.06,0.959,1.087 +NM_173472,0.866,0.956,0.887,1.017,0.922,1.029,1.142,1.152,1.283,0.921,0.858,1.064,1.205,1.121,0.772,0.932,1.001,0.946,0.846,1.283,1.174,1.088,1.128,1.049,1.022,1.012,1.104,1.004,1.03,1.002,1.072,0.923,0.979,1.102,1.162,0.956,1.103,0.913,1.186,0.96,0.912,1.027,1.018,1.028,1.081,0.933,0.926,0.966,1.049,0.969,1.074,0.911,0.952,0.891 +NM_173473,0.618,1.008,1.232,0.706,0.817,1.189,0.636,0.538,1.04,0.926,1.311,0.945,0.711,0.596,0.788,1.365,0.804,0.801,1.002,1.564,0.417,0.698,1.147,1.022,0.74,0.862,0.932,1.028,0.364,1.253,0.804,1.138,1.318,1.584,0.291,1.189,1.121,0.865,1.105,0.601,1.105,1.125,0.605,1.142,0.854,1.131,1.089,0.645,0.772,0.636,1.082,1.161,0.827,1.563 +NM_173474,0.824,1.233,1.57,0.594,1.44,1.443,0.586,0.971,1.281,1.121,0.712,1.374,0.951,1.023,0.964,0.913,0.953,0.977,1.57,0.809,0.48,1.006,0.741,1.271,0.674,1.025,1.093,1.286,0.507,1.433,1.201,1.335,1.207,1.621,1.102,0.411,1.067,1.066,0.784,0.947,1.13,1.085,0.44,0.514,1.167,0.82,1.025,1.234,0.846,0.872,0.707,0.904,0.99,1.484 +NM_173475,0.913,1.022,1.295,1.01,0.858,0.876,0.856,0.951,0.934,1.161,0.949,0.896,1.114,1.012,0.905,1.109,1.07,0.932,1.121,0.976,0.908,0.84,0.999,0.753,0.841,0.8,1.2,0.807,1.044,0.913,1.087,1.151,1.322,0.888,0.954,0.927,1.031,0.979,0.943,1.391,1.05,0.9,1.093,1.19,1.276,0.926,1.105,0.724,0.978,1.725,0.872,0.983,1.148,1.12 +NM_173476,1.034,0.972,0.93,1.047,1.075,0.892,0.957,0.845,1.022,0.871,0.962,1.005,0.847,1.044,0.938,0.839,1.079,1.206,0.951,0.945,1.293,1.098,0.873,0.978,0.918,1.047,0.977,1.17,0.784,0.965,1.041,0.968,1.013,0.838,0.965,0.848,0.87,0.993,1.036,1.077,1.013,0.88,0.945,1.151,1.045,0.938,1.037,1.021,1.043,1.024,1.102,1.251,0.942,1.033 +NM_173477,1.401,1.019,1.177,0.935,1.475,0.936,1.235,1.263,1.033,1.393,0.896,1.175,0.934,1.222,1.132,1.156,1.023,1.324,1.507,0.884,1.287,1.366,0.842,1.295,0.855,1.526,1.187,1.124,2.021,0.946,1.24,0.951,1.224,0.976,0.937,1.03,0.9,1.311,0.962,0.931,1.164,0.864,1.098,0.809,1.376,0.845,1.027,1.382,0.783,1.378,0.965,0.889,1.694,0.803 +NM_173478,1.04,1.011,0.902,0.941,0.977,1.018,0.876,1.071,0.905,1.0,0.918,1.0,1.08,1.076,0.943,0.928,1.061,0.951,1.174,1.048,0.964,0.892,0.879,1.02,1.545,0.943,0.982,1.024,0.962,1.014,0.989,1.016,0.836,0.916,1.058,0.948,1.167,1.101,0.977,1.024,1.035,1.076,0.919,1.063,1.001,1.007,0.912,0.972,1.023,0.945,0.891,1.052,0.959,1.116 +NM_173479,0.961,0.963,1.001,1.011,1.116,1.014,0.925,0.975,0.932,1.073,0.939,0.985,1.064,1.092,0.97,0.955,1.053,1.189,0.963,1.015,1.201,1.069,0.959,1.046,1.102,0.958,0.976,0.963,0.782,1.228,1.026,1.077,1.045,0.973,1.114,0.997,1.003,1.055,0.955,1.009,0.988,0.891,0.961,1.117,1.06,0.934,1.025,1.148,1.015,0.984,0.951,0.982,1.017,0.919 +NM_173480,1.017,0.982,1.221,0.848,1.139,1.307,0.863,0.95,0.945,0.943,0.933,1.058,0.896,0.922,1.236,1.351,0.853,0.923,0.984,1.073,0.842,0.914,1.447,1.011,0.91,0.98,1.084,1.053,0.734,1.036,1.334,0.959,1.108,1.255,0.823,0.919,1.46,1.066,1.261,0.933,0.959,1.222,0.813,0.864,1.053,0.996,0.896,1.004,1.079,1.025,1.136,0.849,0.953,0.867 +NM_173481,0.24,0.974,0.262,1.364,0.257,3.78,0.98,0.249,0.256,0.303,3.72,0.235,0.256,0.249,2.547,6.443,0.283,0.855,0.249,2.381,0.316,0.256,4.937,0.266,0.593,0.272,0.307,0.307,0.903,1.895,0.251,1.158,4.358,1.336,0.322,6.15,3.957,0.289,3.848,2.324,0.282,2.627,3.07,3.219,0.339,3.134,1.681,0.244,4.37,0.245,2.6,1.102,0.307,2.673 +NM_173485,0.917,0.869,1.247,1.035,1.01,1.049,0.849,1.295,1.011,0.908,0.873,1.121,1.078,1.167,1.125,0.986,0.918,1.004,1.029,1.001,1.057,1.233,0.931,1.01,0.946,1.013,0.935,1.06,0.595,0.894,1.296,1.564,1.124,0.907,1.062,0.965,0.769,1.733,0.852,1.056,0.943,1.068,0.841,0.971,1.063,0.895,0.924,1.0,0.974,1.0,0.912,1.066,1.023,0.773 +NM_173488,1.0,0.884,1.069,1.072,0.821,1.049,1.021,1.128,0.971,0.948,0.877,1.068,0.994,1.044,0.764,0.939,0.889,0.795,0.869,0.88,1.016,0.992,0.868,0.991,0.906,1.137,1.224,0.973,0.948,0.907,1.004,0.978,0.798,1.064,1.078,0.87,1.019,1.042,0.895,0.997,0.946,1.0,0.955,1.008,1.02,1.07,0.89,0.966,0.99,1.031,0.978,1.093,0.898,0.991 +NM_173489,0.92,0.951,0.947,0.931,0.863,1.089,0.876,1.065,0.921,0.86,1.094,1.148,0.978,0.93,0.845,0.877,0.983,0.975,0.936,0.921,1.0,0.906,0.962,1.011,1.055,0.995,1.253,1.077,0.881,1.122,1.107,0.967,1.103,1.106,1.022,0.925,1.092,1.003,0.915,1.014,1.129,1.003,0.751,1.013,1.098,1.03,0.9,1.07,1.118,0.851,1.041,0.894,0.978,1.037 +NM_173490,0.795,1.139,0.87,0.71,0.579,1.403,0.895,0.641,0.726,0.632,1.673,0.462,0.799,0.564,1.157,3.373,1.366,0.592,1.008,1.482,0.584,0.944,2.256,0.749,1.54,0.613,1.116,0.623,0.762,0.718,0.734,0.5,1.473,1.42,0.504,1.074,1.536,0.526,1.465,0.679,0.747,1.445,0.906,0.727,0.824,1.279,0.773,0.914,1.949,0.645,1.188,0.699,0.708,1.203 +NM_173491,1.138,1.055,1.022,1.046,0.872,1.015,1.237,0.835,0.995,0.961,1.006,0.909,1.042,0.907,1.0,0.945,1.02,0.916,0.939,1.108,1.093,0.926,1.062,0.979,1.1,1.019,0.993,1.058,1.168,0.981,1.025,0.976,1.124,0.965,0.833,1.266,0.922,1.0,0.934,1.022,1.102,1.023,1.068,1.044,1.015,0.91,1.086,1.012,0.93,1.111,0.906,1.148,1.055,0.909 +NM_173492,0.957,1.0,0.976,0.888,1.041,1.095,0.924,1.303,1.037,0.955,1.181,1.023,1.095,0.867,0.968,0.963,0.951,0.94,0.919,1.107,1.2,1.031,0.895,0.946,0.929,1.203,1.093,1.022,0.812,1.16,0.975,1.124,0.861,1.204,0.976,0.946,0.956,1.045,1.031,1.079,0.951,1.182,1.055,1.091,0.983,0.896,1.0,0.977,1.068,1.009,0.94,0.99,1.056,0.872 +NM_173493,1.129,1.024,0.935,1.048,0.949,1.027,0.936,0.989,0.967,1.031,1.076,0.987,1.145,1.077,1.093,0.949,1.147,0.911,0.963,0.981,1.085,1.066,0.948,1.021,0.941,0.964,1.067,1.003,0.909,0.975,1.132,0.999,0.915,1.037,1.011,0.893,1.0,1.063,1.048,0.963,0.963,0.962,0.889,1.091,1.0,1.199,1.031,0.945,1.181,0.874,1.069,0.974,1.027,0.882 +NM_173495,1.049,1.541,0.991,0.929,1.02,1.187,0.956,1.158,1.271,1.047,0.99,0.931,1.017,1.07,1.144,0.996,1.029,1.028,1.011,0.932,1.121,1.083,1.095,0.953,1.001,1.024,0.877,1.061,0.855,1.064,0.999,0.957,0.918,0.993,0.993,0.997,1.13,1.107,1.426,0.939,1.032,1.067,1.215,0.899,0.985,1.103,0.924,0.976,1.004,0.983,0.885,0.949,1.046,1.002 +NM_173496,1.17,0.946,1.205,0.911,1.168,0.961,0.767,1.043,2.255,1.318,0.98,1.318,0.956,1.083,1.075,0.949,0.924,0.934,1.272,0.987,1.036,1.007,0.966,1.509,1.108,1.073,1.551,1.393,0.526,0.968,1.119,0.97,1.24,0.903,0.941,0.949,0.942,1.04,0.891,0.947,1.368,0.825,0.951,1.103,1.038,0.924,1.143,1.12,0.94,0.988,1.151,0.856,1.02,0.91 +NM_173497,0.916,1.085,0.86,1.017,1.001,0.99,0.924,0.952,1.059,0.984,1.086,0.977,1.102,1.065,1.287,0.973,1.086,1.024,0.927,0.882,0.962,1.076,0.983,1.067,0.925,0.985,0.924,1.032,1.189,1.103,1.055,1.145,1.135,0.979,0.995,1.054,0.979,0.884,0.971,0.915,1.084,0.902,0.923,1.011,1.052,1.213,1.062,0.952,0.991,0.833,1.006,0.918,1.015,1.026 +NM_173498,0.842,0.994,0.859,0.861,0.858,1.019,0.848,1.185,0.962,0.792,1.335,0.952,0.872,0.843,1.304,2.249,0.847,0.88,0.907,0.939,0.966,0.911,1.026,0.948,0.879,0.872,1.11,0.899,0.748,1.415,1.026,1.053,2.655,1.842,0.799,1.236,1.838,0.726,1.096,2.056,0.904,1.106,1.091,0.874,0.923,1.128,1.526,0.826,1.081,0.887,1.139,1.458,0.948,1.728 +NM_173499,0.935,1.063,0.899,0.942,1.057,0.994,1.141,0.828,0.882,1.077,1.034,0.967,1.019,0.841,0.882,1.037,0.948,0.958,0.905,1.006,0.907,1.023,1.019,0.969,1.008,1.172,0.965,1.051,0.932,0.897,0.925,1.011,1.05,0.877,1.062,0.968,0.943,1.072,1.126,0.935,1.045,1.217,0.96,0.968,1.028,0.993,1.073,1.043,1.157,0.971,0.996,0.986,1.112,0.936 +NM_173500,0.943,1.012,1.091,1.098,1.052,0.943,1.119,0.867,0.947,1.151,1.027,0.975,0.999,1.138,0.941,1.087,1.008,1.094,0.933,0.937,1.089,0.897,0.96,1.012,1.067,1.001,0.957,0.994,1.583,1.074,0.998,1.033,0.972,1.158,1.049,1.149,1.04,1.116,0.878,0.891,1.003,0.904,0.967,0.804,0.977,0.998,1.021,0.902,0.953,0.954,1.081,1.061,0.98,0.919 +NM_173501,0.927,1.121,0.885,0.975,0.91,1.001,0.911,0.939,0.963,0.985,1.089,0.864,0.936,0.93,0.853,1.005,0.869,1.021,0.963,0.979,0.87,0.822,0.986,0.873,0.988,0.989,1.062,0.875,0.705,0.969,0.871,1.143,1.106,1.243,0.864,1.066,1.107,0.97,1.194,1.336,0.821,0.976,0.978,1.355,0.986,1.01,1.137,0.91,0.991,0.953,1.026,0.999,1.038,1.223 +NM_173502,0.822,0.973,1.059,1.039,0.95,1.029,0.812,0.848,0.918,1.081,1.174,1.076,1.085,0.907,0.995,1.338,0.997,0.926,0.836,0.924,0.915,0.912,0.99,0.908,1.048,1.013,0.978,0.839,0.848,1.072,1.03,0.859,1.019,1.149,1.044,0.921,1.136,1.003,1.134,1.251,1.03,1.013,0.976,0.98,1.02,0.868,1.079,1.01,0.957,1.048,1.057,0.844,0.961,0.978 +NM_173505,0.73,2.075,1.301,0.891,0.859,2.464,1.228,1.209,1.076,0.969,1.141,0.997,0.858,1.058,0.721,0.853,0.861,1.126,1.09,0.979,0.793,0.832,1.014,0.855,0.957,0.789,1.009,0.756,0.841,1.78,1.217,0.834,1.53,2.438,0.643,0.754,0.976,1.143,0.995,0.736,1.287,1.004,0.691,0.725,1.064,0.651,0.916,0.908,0.68,0.8,0.791,0.843,1.072,3.325 +NM_173506,1.025,1.168,0.825,1.101,1.022,1.008,0.992,0.762,0.963,0.991,1.003,0.976,0.793,1.116,0.834,1.103,0.824,0.98,1.011,1.083,0.956,0.947,1.09,0.846,1.069,1.12,0.982,0.971,1.105,1.035,1.095,1.089,1.028,0.994,1.121,0.909,0.935,1.21,0.972,0.995,0.853,0.988,1.119,1.0,0.979,1.019,1.079,1.035,1.089,1.066,1.079,0.943,0.92,1.055 +NM_173507,0.867,0.966,1.019,0.908,1.013,0.901,1.102,0.869,1.073,0.956,1.053,1.048,0.932,0.936,1.148,1.019,1.12,0.973,0.881,1.022,0.971,0.97,0.934,1.164,1.01,1.077,0.903,1.027,0.885,0.973,1.05,0.936,0.896,0.986,1.003,0.965,0.884,1.274,1.114,0.872,0.919,0.96,1.325,0.977,0.974,0.948,0.989,0.893,1.03,1.056,1.072,0.881,0.826,1.116 +NM_173508,0.956,0.913,1.483,0.888,1.061,0.933,1.045,0.891,1.027,1.407,1.026,1.157,0.924,1.157,1.306,1.084,1.059,0.866,1.174,0.821,1.035,0.947,0.853,0.923,0.983,1.094,1.431,0.898,0.973,0.823,0.904,1.108,1.025,1.139,0.911,0.933,0.9,1.745,0.797,0.816,1.005,1.015,0.934,0.804,1.208,0.884,1.021,1.124,0.834,0.976,0.863,1.134,1.305,1.025 +NM_173509,1.001,0.951,0.961,1.287,0.905,0.878,0.857,1.073,1.197,0.954,1.03,0.929,1.03,0.977,0.946,1.007,1.023,0.983,1.0,1.006,0.935,0.982,1.293,0.975,1.068,0.979,0.886,1.047,0.907,1.03,0.936,0.857,0.942,1.159,0.955,1.026,1.134,1.039,0.953,0.884,0.821,1.116,0.967,1.064,0.982,0.916,0.908,1.074,1.029,0.892,0.957,0.921,1.102,1.009 +NM_173510,0.737,1.188,1.098,0.866,0.783,1.07,0.771,0.597,1.045,0.845,1.112,0.763,0.707,0.86,0.966,1.336,0.726,0.926,1.209,1.115,0.612,0.645,1.169,0.876,0.737,0.68,1.481,0.905,0.607,1.106,0.883,1.292,1.657,1.145,0.455,0.755,1.252,0.812,1.291,1.058,0.968,1.27,0.668,0.811,0.926,1.16,0.794,0.663,0.931,0.984,0.994,0.96,0.82,1.743 +NM_173512,0.898,0.96,0.786,1.273,0.923,1.672,0.962,0.799,0.831,1.045,2.169,0.86,0.828,1.015,0.964,1.118,0.944,1.024,0.931,1.478,0.827,0.726,1.359,0.853,0.823,0.782,0.903,0.722,0.616,1.446,0.927,1.108,0.795,1.159,0.956,1.385,1.935,0.796,1.241,0.989,0.923,1.639,2.039,1.567,0.921,1.182,1.064,0.937,0.978,0.878,1.836,0.885,1.042,0.791 +NM_173513,0.906,0.942,0.994,0.959,0.934,1.158,0.906,1.182,1.104,0.935,1.067,0.993,0.897,1.153,1.077,1.127,1.173,1.009,0.99,0.891,0.978,1.09,1.025,0.952,1.071,0.871,0.955,1.015,0.898,1.084,1.002,1.044,1.011,0.935,1.087,1.162,1.019,0.877,1.035,0.902,0.978,0.973,1.162,1.004,1.07,0.998,0.941,0.94,1.026,0.992,0.942,0.987,1.012,1.067 +NM_173514,0.759,0.978,1.05,0.665,0.956,0.99,0.827,0.79,1.025,1.103,0.939,0.967,0.803,0.721,0.855,1.404,1.028,1.148,1.09,1.136,0.696,0.855,0.967,1.081,0.697,0.738,1.267,0.975,0.675,1.002,1.024,1.094,1.219,1.01,0.542,0.881,1.109,0.868,1.311,1.37,1.022,0.932,0.544,0.843,1.015,1.027,1.083,0.958,0.933,0.834,1.022,0.847,0.847,1.143 +NM_173515,1.312,0.829,1.679,0.677,1.857,0.83,0.526,1.723,2.482,1.209,0.655,1.384,1.351,1.116,1.645,1.35,1.326,0.926,1.944,0.845,0.946,1.514,0.716,1.578,0.525,1.375,1.544,2.373,0.389,0.779,2.013,0.673,1.053,0.818,1.28,0.525,0.929,2.211,0.764,0.689,1.586,0.743,0.603,0.531,1.578,1.048,1.162,2.053,0.666,1.092,0.794,0.72,1.434,0.861 +NM_173516,0.97,1.131,1.066,1.044,0.953,1.093,1.065,0.856,0.903,0.846,1.091,1.088,1.032,1.01,0.967,1.068,0.978,1.0,0.985,1.102,0.981,0.975,0.96,1.037,1.013,0.959,0.928,0.962,0.863,1.057,0.987,1.111,1.066,0.929,1.119,0.887,1.224,1.015,0.902,1.105,0.89,1.028,1.23,0.894,0.937,1.03,0.936,1.002,1.028,1.0,0.928,0.98,0.943,0.846 +NM_173517,0.764,0.927,1.11,1.073,0.859,1.211,0.821,0.644,0.99,1.027,1.116,0.812,0.751,0.864,0.898,1.269,0.773,1.002,1.123,1.014,0.754,0.85,1.451,0.993,0.746,0.894,1.01,0.811,0.758,1.137,0.791,0.954,2.196,1.287,0.581,1.354,1.189,0.783,1.39,0.99,0.949,0.947,0.76,1.849,1.083,1.101,0.963,0.903,0.9,0.868,1.137,1.094,0.883,1.311 +NM_173518,1.086,1.067,1.031,1.144,0.954,0.817,0.883,0.916,1.126,0.775,1.108,1.014,1.072,0.931,1.332,0.888,0.955,0.906,0.91,1.069,0.972,1.035,1.001,1.076,1.035,1.038,1.036,0.96,0.823,1.005,0.934,0.842,1.04,0.795,1.072,0.977,1.035,1.069,0.971,0.955,1.129,0.929,1.175,0.945,1.011,1.134,0.96,1.035,0.999,0.973,1.083,1.054,1.017,1.018 +NM_173519,0.88,1.129,1.107,1.005,1.322,1.093,1.047,1.116,1.031,1.095,1.062,1.175,1.154,1.611,0.992,1.12,1.111,1.217,0.945,0.952,0.807,1.245,0.837,1.176,1.001,1.017,0.883,0.9,0.957,0.917,0.943,0.905,1.162,1.009,1.13,1.036,1.135,0.959,1.127,1.054,0.902,0.983,0.933,1.258,0.972,1.073,0.939,1.177,0.888,1.018,0.914,1.081,0.912,1.023 +NM_173520,0.968,0.946,0.971,0.956,1.177,0.935,0.883,0.924,1.113,1.082,1.025,0.969,0.892,1.049,0.956,0.875,1.014,1.182,1.071,0.924,1.056,1.082,1.04,1.068,1.035,1.038,0.914,1.038,1.105,0.958,0.999,0.964,1.01,1.124,0.928,0.987,0.976,1.159,1.109,1.055,1.117,0.962,0.894,0.903,1.155,0.988,0.936,1.23,1.073,0.918,1.001,0.911,1.014,0.859 +NM_173521,1.068,1.033,0.973,1.136,1.214,0.958,0.893,1.025,1.023,1.077,0.918,1.077,0.996,0.869,1.111,1.024,1.042,1.051,1.129,1.038,1.065,1.178,0.847,1.041,1.004,1.023,0.998,1.001,1.15,0.898,1.144,1.034,1.009,0.834,1.108,0.911,1.007,0.832,0.995,0.886,1.025,1.122,1.217,1.013,0.972,1.014,1.031,0.999,0.865,1.19,0.961,0.885,0.956,0.924 +NM_173523,1.1,1.03,1.05,0.977,1.105,0.999,0.869,1.05,1.037,1.069,1.001,1.026,0.996,0.681,1.074,0.989,1.06,0.997,0.906,0.948,0.853,1.002,1.011,1.111,1.058,0.998,1.049,1.052,1.219,0.977,0.986,1.034,0.938,0.97,1.022,0.908,0.991,0.997,1.004,0.959,0.964,0.971,1.14,0.932,0.985,1.031,1.164,0.972,0.992,1.036,1.041,1.046,1.015,0.971 +NM_173524,1.009,1.036,1.025,0.872,0.999,0.959,1.0,1.018,1.146,1.052,0.838,1.123,0.959,0.87,0.99,1.127,1.029,0.907,0.992,0.919,1.037,0.931,1.061,1.003,1.055,1.088,0.895,1.101,1.049,1.016,1.108,1.046,1.118,0.892,1.05,0.967,0.909,1.027,1.036,0.849,1.161,0.944,1.036,0.961,0.889,0.969,1.037,1.158,1.06,0.973,0.986,0.864,0.976,1.045 +NM_173525,0.999,1.003,0.967,1.164,1.101,1.007,1.007,1.043,0.966,1.144,1.126,0.975,1.077,0.867,0.755,0.792,1.169,1.25,0.956,1.14,0.957,1.08,0.945,0.963,0.978,1.115,0.812,1.089,0.862,0.913,0.968,1.093,0.767,0.952,1.208,0.95,0.834,0.983,0.937,1.078,1.001,0.988,0.88,0.97,0.927,1.166,1.14,1.044,1.098,1.191,0.956,0.864,1.147,0.88 +NM_173526,0.968,0.909,0.941,1.107,1.027,1.081,0.988,0.919,1.07,1.065,0.854,0.984,1.066,1.065,0.955,1.132,1.021,1.043,1.038,0.985,0.9,0.901,0.902,1.061,1.011,0.961,1.019,1.081,0.801,1.028,1.008,1.044,1.012,0.972,1.1,1.064,1.036,1.048,0.939,0.964,1.073,0.97,1.028,1.107,1.008,1.051,0.967,1.009,0.901,0.91,1.185,0.855,0.848,0.929 +NM_173527,0.922,1.103,0.94,0.998,1.022,0.94,0.905,0.993,1.034,0.945,0.92,1.048,1.044,1.085,1.038,0.999,0.988,0.938,0.921,1.003,1.003,1.004,1.002,1.013,1.144,1.02,1.049,1.13,0.892,0.923,0.998,1.054,0.984,0.952,1.007,1.004,0.927,1.079,0.92,1.551,0.902,0.997,0.944,0.958,0.82,0.999,1.054,0.998,0.973,1.067,1.076,0.921,0.907,0.964 +NM_173528,0.982,1.13,0.905,0.885,1.023,1.004,1.168,0.942,0.937,1.008,0.887,0.971,1.059,0.937,0.821,1.103,1.02,0.88,0.981,1.059,1.003,0.958,0.832,1.097,1.083,1.004,1.082,1.139,0.566,0.902,0.967,0.87,1.078,0.886,0.964,1.131,1.058,0.983,1.037,1.033,0.908,0.999,0.967,1.011,1.013,1.036,0.945,0.963,1.001,1.032,1.037,0.98,1.024,0.86 +NM_173529,0.901,0.996,1.052,1.021,0.965,1.061,1.229,0.949,0.878,1.006,0.886,1.029,1.196,1.16,1.046,0.921,0.913,0.919,1.096,1.093,1.089,0.883,0.939,0.89,0.933,1.007,0.938,0.964,1.099,1.079,1.284,1.045,1.309,1.005,0.839,0.935,1.053,0.929,0.951,1.083,0.999,0.977,1.051,0.914,1.147,1.252,0.85,1.036,0.912,1.135,0.941,1.069,1.054,0.994 +NM_173530,0.989,0.929,1.008,0.977,1.036,1.012,1.31,1.048,0.948,1.022,0.961,0.867,1.035,1.115,1.058,0.926,0.968,1.002,0.902,1.025,1.014,0.878,1.024,0.87,1.007,1.037,1.013,0.851,1.416,1.027,1.007,1.022,0.939,0.993,0.892,0.943,0.952,1.028,1.023,1.128,1.081,1.033,1.161,0.912,1.07,1.068,0.888,1.024,0.99,1.101,0.965,0.84,1.038,0.88 +NM_173532,1.042,0.91,0.87,0.846,0.894,1.033,1.307,0.991,0.789,0.947,1.187,1.059,0.935,1.444,1.034,1.133,0.943,1.105,0.932,1.076,0.921,1.038,1.063,1.102,1.026,0.903,0.935,1.09,1.544,0.991,0.888,0.928,0.801,1.082,0.888,0.942,0.911,0.875,0.922,1.016,0.978,1.1,1.106,0.972,1.023,0.941,1.01,0.992,0.869,0.942,1.04,1.068,0.905,1.056 +NM_173533,1.048,0.993,1.041,1.053,0.799,1.002,0.907,1.233,0.982,0.911,0.881,0.942,0.915,1.0,0.974,0.918,0.877,0.912,0.894,0.858,1.006,1.0,1.246,1.161,0.948,0.809,1.065,0.869,0.951,1.144,0.954,1.004,0.791,0.987,0.936,1.832,0.937,1.02,1.375,0.869,1.021,0.988,0.972,0.779,1.141,0.919,0.762,1.03,0.893,1.013,1.026,0.951,0.844,1.441 +NM_173536,1.052,1.015,0.832,0.922,0.956,1.078,0.98,0.846,0.994,1.076,0.966,1.065,1.004,0.918,0.89,0.999,1.002,1.134,1.022,0.903,0.989,0.966,1.014,0.925,0.919,1.142,0.916,1.106,0.988,0.963,1.048,0.942,0.867,0.955,1.089,1.093,1.047,0.885,1.065,0.904,0.954,1.066,1.051,1.094,1.135,1.033,0.997,0.956,1.004,1.044,0.967,0.906,1.027,0.98 +NM_173537,1.011,0.99,1.064,0.818,1.023,1.031,0.97,1.033,0.905,1.109,1.167,0.969,0.943,0.972,0.968,1.032,1.044,1.172,1.141,1.021,1.015,0.982,1.056,0.983,1.048,0.932,1.124,0.938,0.882,0.968,0.924,1.085,1.015,1.033,0.986,0.914,0.956,0.972,1.102,1.187,1.054,0.918,1.003,0.978,0.957,0.91,1.148,1.017,0.943,0.899,1.01,0.924,1.026,0.997 +NM_173538,1.212,1.017,0.842,1.054,0.998,1.156,1.407,0.971,1.218,0.959,0.954,0.896,1.157,0.86,0.826,1.021,0.969,0.926,1.025,1.33,1.032,0.916,1.053,0.98,0.94,0.929,0.92,0.923,1.533,0.997,1.192,0.937,1.014,1.018,0.831,1.032,1.006,0.893,1.187,0.925,0.994,0.835,1.6,0.783,1.094,0.911,0.928,0.933,0.996,0.974,1.129,0.887,0.907,0.989 +NM_173539,1.108,0.943,1.005,1.064,0.893,1.005,1.06,1.017,1.222,0.771,0.998,1.043,1.045,0.907,1.121,0.949,0.918,0.912,0.928,0.973,1.06,1.027,1.151,1.033,1.023,1.152,1.012,1.01,0.661,1.043,0.801,0.969,0.984,0.837,1.147,1.083,1.096,0.93,1.035,1.133,0.933,0.918,0.899,0.97,0.98,1.086,1.01,0.916,0.955,0.924,1.057,0.919,0.898,1.039 +NM_173540,1.252,0.883,2.151,1.029,1.272,0.814,0.678,2.264,1.506,1.147,0.813,1.252,1.297,0.932,1.152,1.155,2.029,1.109,1.759,0.873,0.945,2.14,0.914,1.145,0.757,1.26,1.334,1.967,0.709,0.866,1.144,1.177,1.188,0.914,2.056,0.834,0.89,1.3,0.928,0.954,1.722,0.881,0.775,1.084,1.047,0.928,1.254,1.385,0.822,0.976,1.003,0.962,1.341,1.081 +NM_173543,1.125,1.057,0.986,1.035,1.095,0.879,0.831,1.011,0.944,1.0,1.038,0.927,1.051,0.953,1.159,0.935,0.965,1.057,0.955,1.042,0.857,0.895,0.978,1.002,0.989,0.982,1.159,1.096,1.289,0.99,1.033,1.067,1.025,1.057,1.026,0.972,0.971,1.107,0.908,0.988,1.025,1.001,0.985,1.118,0.855,0.966,0.97,0.976,1.001,1.054,1.004,0.973,0.869,1.03 +NM_173544,1.052,1.067,1.009,0.837,1.14,1.041,1.027,1.007,1.086,1.172,1.137,1.087,0.871,1.021,0.828,1.021,1.057,0.982,1.127,1.031,1.0,0.981,1.003,1.012,1.0,1.008,1.031,1.062,0.825,1.039,1.054,0.942,0.893,1.008,1.06,1.086,0.963,1.016,0.975,0.937,1.04,0.975,0.886,0.837,1.056,0.918,0.919,1.065,0.963,0.949,1.015,0.926,0.961,1.028 +NM_173547,0.962,0.892,1.088,1.028,0.869,1.068,0.739,0.916,1.029,0.869,0.921,0.959,1.083,0.772,1.013,0.995,0.928,1.096,0.961,0.922,1.046,0.894,0.963,0.979,0.963,1.01,1.1,0.962,1.018,1.023,1.071,1.237,1.162,1.044,0.967,1.136,0.899,0.909,1.194,0.955,0.937,0.972,0.642,1.037,0.98,1.035,0.856,1.013,1.058,1.096,0.93,0.916,0.857,1.0 +NM_173548,1.023,1.04,1.054,0.915,1.023,0.909,1.053,0.896,1.206,1.122,0.993,0.989,0.861,1.08,1.205,0.941,1.016,1.019,0.929,1.099,1.128,1.008,0.969,0.96,1.042,1.163,1.118,1.052,0.807,0.987,1.106,0.964,1.295,1.02,0.947,1.031,0.996,1.018,0.905,0.971,1.07,1.065,0.904,1.12,1.126,0.849,0.891,0.96,1.051,0.999,0.976,0.983,1.086,1.265 +NM_173549,0.827,1.615,0.986,0.936,0.954,1.44,1.004,0.966,0.9,0.755,1.193,0.844,0.784,0.88,1.057,1.781,0.789,0.947,0.954,1.628,0.817,0.908,0.989,0.851,1.115,0.864,0.956,1.026,1.126,1.571,0.923,1.741,0.902,2.936,0.87,0.892,1.251,0.981,1.57,0.935,0.904,1.228,0.836,0.962,0.947,1.609,1.001,0.932,0.939,0.855,1.454,1.021,0.731,1.039 +NM_173550,0.966,1.098,1.037,0.8,0.995,0.93,0.988,0.952,0.97,1.035,1.138,1.02,0.862,1.023,0.864,1.026,1.149,0.901,0.972,1.033,0.915,0.882,0.975,1.046,0.967,0.854,1.195,1.006,0.97,1.008,1.136,1.038,0.976,1.075,0.982,0.852,1.051,1.076,1.149,0.977,1.031,1.049,0.901,0.983,0.903,0.98,1.021,0.896,0.975,1.023,1.055,0.882,0.945,1.024 +NM_173551,1.025,1.042,0.915,1.055,0.822,1.013,1.164,0.922,1.108,1.148,0.962,0.943,0.993,1.181,1.042,0.98,1.001,1.033,0.94,1.032,1.003,0.87,1.028,0.968,1.007,0.971,0.992,0.915,1.093,0.949,1.015,1.089,1.054,0.966,0.815,0.889,0.982,0.907,0.958,1.045,1.07,1.055,1.002,1.036,0.983,1.147,0.947,0.91,1.081,1.2,1.052,1.099,0.9,1.033 +NM_173552,1.007,0.928,1.438,0.781,1.368,0.783,0.639,1.189,1.35,1.195,0.922,1.268,0.963,1.091,1.02,1.157,1.106,0.94,1.84,0.798,0.927,1.267,0.972,1.357,0.733,1.165,1.782,1.327,0.474,0.934,1.403,1.764,1.991,1.074,0.556,0.638,0.763,1.463,1.022,0.933,1.506,0.861,0.623,0.735,1.249,0.77,1.005,0.991,0.887,1.079,0.938,0.729,1.036,1.083 +NM_173553,0.984,1.0,0.972,0.92,0.988,0.921,0.887,0.984,1.082,1.024,0.989,1.009,1.006,0.915,1.148,1.002,1.008,0.994,1.226,1.026,1.126,1.107,1.108,0.978,0.837,1.068,1.072,1.064,0.957,1.064,0.971,0.977,1.016,0.989,1.078,1.009,0.992,1.023,1.013,0.915,1.073,1.01,0.881,0.918,0.959,0.911,1.069,1.104,0.97,1.05,1.06,0.977,1.058,1.012 +NM_173554,1.042,1.097,0.967,0.991,0.977,0.958,1.0,1.058,0.898,0.929,0.978,0.884,0.893,0.906,1.526,0.957,0.873,1.141,1.201,0.89,1.024,1.036,1.098,1.011,0.932,0.912,0.867,1.011,1.2,1.045,1.068,1.073,1.051,0.963,0.989,0.996,0.987,1.042,1.01,0.974,0.951,1.042,1.109,1.178,1.106,0.994,0.963,0.953,0.975,1.0,0.951,1.192,0.871,1.007 +NM_173555,1.185,1.158,1.712,0.799,1.468,0.635,0.47,0.812,1.714,1.576,0.81,1.384,1.027,1.142,0.9,0.841,1.283,1.16,1.637,0.79,0.598,1.349,0.992,1.514,0.471,1.379,1.639,1.353,0.429,0.99,1.236,1.47,1.138,0.85,0.394,1.196,0.745,1.582,0.789,0.534,1.59,0.73,0.578,1.154,1.621,0.861,1.402,1.157,0.776,0.996,0.839,1.148,1.414,2.831 +NM_173556,1.102,1.027,1.012,1.017,1.162,0.887,0.87,0.952,0.939,1.001,0.915,1.099,1.078,0.784,0.77,0.848,0.998,0.941,0.865,0.913,1.03,0.871,0.932,1.08,0.982,1.049,0.952,0.973,0.831,1.013,1.017,0.817,1.144,0.865,1.016,1.004,0.908,1.133,0.945,0.874,0.878,0.964,0.93,1.003,0.937,1.001,0.925,1.229,1.049,1.077,0.782,1.032,1.108,1.011 +NM_173559,0.948,0.971,0.912,0.889,0.919,0.956,0.884,0.916,1.028,0.91,0.914,1.103,0.872,0.894,0.911,0.979,0.925,1.019,1.076,1.101,1.063,0.921,0.853,1.058,1.013,1.104,1.001,1.017,1.008,0.934,0.907,0.975,0.941,1.117,0.947,0.91,0.999,1.094,0.997,0.939,0.959,1.054,1.078,0.968,1.151,0.92,1.047,1.034,1.085,0.983,0.979,0.804,1.021,0.949 +NM_173560,0.918,1.016,1.109,0.864,0.811,1.011,1.164,1.235,0.845,0.984,1.244,0.918,0.923,0.752,0.921,0.849,0.954,0.853,1.068,0.965,0.971,0.942,1.095,0.88,1.253,0.937,0.913,0.951,0.91,1.059,1.012,1.02,0.988,1.151,0.921,0.984,1.135,1.016,1.189,1.034,0.872,0.997,1.03,1.096,0.832,1.046,1.078,0.993,0.925,0.939,1.149,0.891,0.98,0.969 +NM_173562,0.946,0.765,1.295,0.668,1.314,1.065,0.645,0.944,2.306,0.995,0.75,0.989,1.122,1.054,1.062,1.111,1.181,0.946,1.505,0.758,0.949,1.552,0.996,1.267,0.51,1.198,1.356,1.52,0.489,0.952,1.235,1.706,1.964,0.849,1.32,0.845,0.739,1.701,1.022,1.072,1.444,0.878,0.749,0.843,1.083,0.664,1.217,0.946,0.727,0.972,0.817,0.758,1.073,1.337 +NM_173563,1.069,0.933,0.904,0.895,0.957,1.027,0.973,0.889,1.21,1.094,0.998,1.006,1.004,1.036,1.225,1.152,1.0,1.216,1.038,1.139,0.981,0.96,1.104,1.044,1.072,0.929,1.029,1.043,1.02,0.951,1.058,1.078,0.984,0.88,1.108,0.932,1.079,1.001,0.901,0.87,0.973,1.088,1.245,1.087,1.083,1.042,0.963,0.934,0.946,0.993,0.827,0.862,1.112,1.056 +NM_173564,1.112,1.036,0.901,1.021,0.948,1.02,0.884,1.052,1.099,0.976,1.065,0.991,0.959,0.888,0.996,1.049,1.041,1.016,0.987,1.005,0.99,0.905,0.884,0.983,1.107,0.929,0.982,1.11,0.618,0.917,0.945,1.011,0.864,1.064,1.069,1.146,1.052,0.956,0.935,1.073,1.059,0.93,0.835,1.158,0.956,1.02,1.037,0.994,0.871,0.998,0.941,1.068,1.023,0.95 +NM_173565,1.232,1.053,1.094,1.051,0.947,0.853,0.92,0.993,1.007,1.036,1.051,1.078,0.988,0.999,0.778,1.299,0.757,1.001,0.99,1.135,1.215,0.939,1.062,1.222,1.082,1.134,0.777,0.91,1.37,0.933,0.954,0.964,0.957,0.957,1.022,0.852,0.944,1.239,0.985,1.109,1.236,0.984,1.253,1.075,1.012,1.032,1.017,1.077,1.255,1.151,1.128,1.055,1.076,0.889 +NM_173566,0.939,0.967,1.009,1.015,1.019,1.042,1.007,0.909,0.984,1.153,1.04,1.001,0.931,1.078,0.937,1.026,0.974,1.065,1.173,1.031,0.947,1.062,1.031,0.882,1.014,0.925,0.899,0.915,1.396,0.999,1.027,0.939,1.027,0.954,0.965,0.981,0.93,0.947,1.108,0.913,0.914,1.009,1.112,0.95,1.126,0.994,0.975,1.06,1.147,1.238,1.006,1.037,0.967,1.048 +NM_173567,0.926,1.1,0.984,0.946,0.834,0.996,0.928,0.78,0.823,0.902,1.205,0.925,0.808,0.804,1.053,1.456,0.95,0.976,0.872,1.168,0.901,0.838,3.492,0.994,0.925,0.958,0.99,0.953,0.863,1.03,0.907,1.121,3.25,1.006,0.965,2.468,0.944,1.054,1.719,1.254,0.905,0.994,0.799,1.114,0.922,1.487,1.066,0.894,1.442,0.986,1.422,1.221,0.866,4.407 +NM_173570,0.66,1.522,0.712,0.903,0.735,1.024,0.89,0.516,0.712,0.606,1.329,0.631,0.577,0.692,1.014,1.321,0.693,0.897,0.802,1.131,0.606,0.73,1.37,0.694,1.036,0.753,0.812,0.688,0.882,1.428,0.801,1.978,3.326,1.489,0.82,1.143,1.375,1.056,1.531,1.007,0.662,1.195,0.84,1.5,0.717,1.29,0.69,0.836,0.962,0.739,0.981,0.836,0.677,3.05 +NM_173571,0.932,0.957,1.143,1.13,1.086,1.087,1.115,0.852,1.075,0.908,1.103,1.074,1.102,0.834,0.916,0.984,0.916,0.911,0.95,0.921,0.962,1.252,0.916,1.057,1.092,1.02,0.999,1.033,0.744,1.066,1.062,0.939,1.072,0.966,1.043,0.955,1.085,0.984,0.996,1.198,1.142,0.982,1.064,0.91,1.011,0.96,1.112,1.059,0.912,1.05,0.982,0.945,0.983,1.189 +NM_173574,1.097,1.091,1.04,1.009,1.065,0.99,0.873,0.927,1.048,1.177,0.879,0.91,0.929,1.024,0.954,0.891,0.961,0.961,0.87,0.985,0.892,0.972,0.958,1.059,1.282,0.983,1.194,0.948,1.026,1.356,0.942,1.206,0.914,1.084,0.875,0.815,1.01,0.995,0.986,0.852,1.099,1.365,0.936,1.152,1.167,0.965,1.01,1.022,1.021,0.927,1.021,0.943,0.915,1.361 +NM_173575,0.924,1.43,0.997,0.847,0.963,1.011,0.798,0.848,0.888,1.083,1.071,1.062,0.94,0.728,0.902,0.962,0.897,1.029,1.054,0.888,0.836,0.888,1.055,1.091,0.977,0.859,1.048,0.932,0.606,1.097,0.975,1.463,1.489,0.992,0.967,1.855,1.095,1.042,1.087,1.097,0.994,1.062,0.927,1.504,0.971,1.162,1.378,0.892,0.96,0.932,1.033,0.978,0.961,0.973 +NM_173576,1.076,0.834,0.998,0.963,0.941,0.99,0.931,1.084,1.153,1.014,0.955,1.055,0.921,0.957,1.085,1.075,0.957,0.905,1.099,1.02,1.053,1.027,0.98,1.124,0.948,0.982,1.296,1.058,0.758,0.907,0.99,1.73,1.46,1.11,1.038,1.072,1.007,1.07,0.921,0.95,1.09,1.003,0.966,1.087,1.016,1.068,0.969,0.838,1.006,0.932,0.967,0.881,1.151,0.853 +NM_173580,1.059,1.011,0.962,1.021,0.964,0.954,1.309,0.984,1.013,1.127,1.048,0.951,1.099,0.99,1.014,0.793,0.965,1.091,1.048,0.914,1.104,0.895,1.029,1.088,0.937,1.044,1.036,0.924,0.951,1.031,0.97,0.955,1.017,0.916,0.854,1.053,1.029,0.997,0.958,0.894,0.93,0.995,1.057,1.031,1.015,1.035,1.036,1.054,1.14,1.01,1.13,1.307,0.92,0.931 +NM_173581,0.963,1.28,0.951,1.171,0.997,1.137,1.318,0.876,0.871,1.014,1.018,0.966,0.973,1.184,1.237,0.998,0.898,1.073,0.835,0.994,0.935,0.749,1.068,0.877,0.902,1.046,0.933,1.065,1.255,0.95,1.017,1.009,1.125,0.846,1.071,1.049,1.051,0.922,0.978,0.907,0.816,1.022,0.969,1.022,1.049,1.045,1.113,1.235,1.058,1.195,1.013,1.038,0.942,0.876 +NM_173584,0.394,1.344,0.492,1.429,0.423,1.432,1.089,0.378,0.519,0.426,1.79,0.392,0.418,0.42,0.931,1.539,0.347,1.089,0.481,2.034,0.38,0.457,1.568,0.366,1.52,0.378,0.34,0.448,0.806,1.742,0.414,0.984,0.957,2.608,0.505,2.367,1.723,0.361,1.654,0.975,0.381,2.17,1.676,1.786,0.445,1.09,0.824,0.36,1.407,0.462,1.796,0.972,0.385,2.731 +NM_173587,0.907,1.082,1.054,1.158,1.074,1.023,1.058,0.854,0.887,0.946,1.027,0.855,0.935,0.844,0.942,1.11,0.953,0.99,1.041,1.02,1.052,0.858,0.987,0.95,1.033,0.904,1.09,0.976,1.101,0.999,0.922,1.059,1.02,1.116,0.873,1.222,0.947,0.95,1.013,0.996,1.015,0.902,1.047,1.031,0.992,0.979,1.063,1.021,0.976,0.933,1.016,1.042,0.995,0.959 +NM_173588,1.038,0.957,1.073,1.082,1.186,0.987,0.981,0.998,1.093,1.08,0.936,1.085,0.974,1.051,0.799,0.956,1.045,0.905,0.956,0.942,1.147,0.984,0.952,1.058,0.888,0.939,1.049,1.009,1.091,1.127,1.008,1.012,0.926,1.119,0.914,1.052,0.983,0.966,0.959,1.017,1.111,0.95,1.049,0.938,1.072,1.002,1.073,0.914,1.051,0.91,0.971,1.062,0.811,1.025 +NM_173589,1.079,0.964,0.977,1.025,1.021,0.884,0.894,1.04,1.047,1.088,0.875,0.866,0.895,0.939,1.124,1.11,0.911,0.933,0.969,1.044,1.036,0.946,0.853,0.986,1.022,0.907,1.134,0.941,1.082,0.954,0.931,1.081,1.02,1.039,1.073,0.987,0.891,0.98,0.93,1.055,0.944,0.987,0.86,1.112,0.924,1.235,0.983,0.877,0.873,0.933,0.92,1.04,1.215,1.031 +NM_173593,1.028,1.162,0.742,0.986,0.95,1.014,1.143,1.103,0.913,0.9,1.014,0.943,0.995,0.813,1.113,0.988,0.919,1.058,0.835,1.063,0.958,0.887,1.058,0.937,1.212,0.842,0.974,0.996,1.14,1.191,1.136,0.859,0.875,1.378,0.963,0.848,0.974,0.983,1.414,1.02,1.072,1.02,1.048,1.028,0.842,0.853,0.874,1.106,1.043,0.933,0.891,0.859,0.931,1.103 +NM_173596,1.028,1.012,0.972,1.327,0.923,1.965,1.001,0.78,0.873,0.821,5.609,0.879,0.942,0.875,2.658,10.31,0.903,0.906,0.792,2.206,0.918,0.935,2.179,0.944,0.892,0.869,0.939,0.941,1.102,1.271,0.841,0.915,1.126,1.083,0.876,3.249,4.606,0.839,1.508,2.4,0.878,5.302,4.04,0.977,1.032,3.885,3.126,0.908,2.384,0.874,3.26,0.806,0.922,1.035 +NM_173598,1.009,0.936,1.171,0.952,0.96,1.124,0.853,0.776,0.979,0.861,1.241,1.041,1.096,0.925,0.999,0.987,0.899,1.028,1.029,1.156,1.209,0.988,1.085,1.147,1.094,0.859,1.063,0.997,0.887,1.137,0.937,1.08,0.935,1.025,1.091,0.937,1.122,0.942,0.874,1.027,1.017,0.961,1.212,1.031,1.038,1.076,1.088,0.945,0.976,1.051,0.943,0.967,0.964,1.003 +NM_173599,0.906,1.023,0.972,0.972,0.914,0.947,1.102,1.048,0.989,0.875,1.0,0.97,0.944,0.887,0.88,0.904,1.003,0.979,1.003,1.071,1.055,1.07,0.861,1.076,0.946,1.043,0.94,1.027,2.24,1.13,1.055,1.032,0.975,1.075,1.037,0.956,0.966,1.041,0.953,0.999,0.893,1.037,0.868,1.249,1.003,0.98,0.904,1.01,1.14,1.171,1.0,1.08,1.191,1.07 +NM_173605,1.033,0.862,1.133,0.988,1.102,1.045,1.016,1.008,1.033,0.869,0.973,1.002,1.082,1.132,0.834,0.898,0.911,0.96,1.016,1.036,0.929,0.955,1.045,0.997,1.014,0.888,1.08,1.051,1.088,0.889,0.897,0.865,1.036,0.998,1.04,0.995,0.981,0.93,0.96,0.916,0.992,1.09,0.82,1.111,0.977,0.881,1.092,0.953,1.009,1.037,0.943,1.108,1.035,1.06 +NM_173607,0.598,1.244,1.187,0.749,0.756,1.695,0.929,0.853,1.175,0.665,1.438,0.892,0.704,0.687,1.002,2.167,0.68,0.957,1.024,1.476,0.597,0.695,1.271,0.9,0.677,0.575,0.939,0.843,0.819,1.521,0.884,1.346,1.037,1.657,0.428,0.872,1.406,0.893,1.033,0.912,0.996,1.381,0.94,0.987,0.892,1.799,1.183,0.681,1.5,0.74,1.026,0.773,0.756,1.66 +NM_173608,0.564,1.409,0.967,0.869,0.94,0.982,1.106,0.405,0.715,0.976,0.804,0.84,0.529,0.501,0.839,1.031,0.759,1.081,0.705,1.282,0.475,0.697,1.981,0.968,0.587,0.494,1.273,0.708,0.578,1.332,0.588,1.298,1.249,0.993,0.366,1.517,0.964,0.865,1.523,1.138,0.991,1.037,1.316,1.733,0.894,1.577,1.375,0.558,1.555,0.626,1.447,0.729,0.68,1.121 +NM_173609,1.011,0.954,1.067,0.96,1.01,1.077,1.087,0.86,0.903,0.819,1.072,1.013,0.946,0.928,1.022,1.065,0.97,1.085,1.005,1.251,1.023,1.059,0.901,1.02,1.052,0.936,1.015,0.992,0.906,0.932,1.064,0.996,1.065,0.884,0.982,0.858,0.974,0.956,1.108,1.171,1.093,0.943,1.064,1.016,1.034,0.94,1.011,0.941,1.167,0.967,1.028,1.145,1.034,1.073 +NM_173610,1.022,1.107,1.14,1.371,1.042,0.911,0.94,0.927,1.063,1.089,1.008,0.857,1.155,0.885,1.001,1.279,0.91,1.041,0.907,1.053,0.933,0.922,0.931,1.065,1.012,1.001,0.908,0.908,0.894,1.0,1.0,0.943,1.16,0.928,1.044,0.967,1.07,1.072,0.998,0.946,1.042,1.035,0.845,1.071,1.012,1.066,0.859,1.042,1.032,0.967,0.863,0.94,0.961,0.845 +NM_173613,1.004,1.122,0.974,1.031,0.896,0.97,0.949,0.91,0.996,0.939,0.971,0.964,1.001,0.967,0.99,1.021,1.073,0.985,0.976,0.936,1.051,1.053,0.97,0.877,1.044,1.094,1.04,1.178,0.904,1.205,0.995,1.009,0.872,1.005,1.035,0.999,0.955,0.909,1.018,1.05,1.01,0.956,0.962,0.974,0.998,1.056,1.068,0.895,0.952,1.067,1.075,0.964,1.039,1.077 +NM_173614,0.559,1.208,0.674,0.782,0.469,1.225,0.904,0.301,0.584,0.648,1.363,0.49,0.301,0.38,0.725,1.606,0.586,1.386,0.91,0.941,0.397,0.703,1.086,0.666,1.081,0.625,0.862,0.366,0.947,1.952,0.422,1.344,2.639,1.79,0.116,0.636,1.635,0.725,2.338,0.908,0.668,1.353,0.545,1.557,0.651,1.061,1.087,0.61,1.169,0.707,1.38,0.913,0.607,1.066 +NM_173616,1.156,1.057,1.008,1.164,1.048,1.21,0.932,0.958,0.91,0.969,0.994,1.135,1.0,1.346,0.962,0.901,0.994,1.0,1.0,1.023,1.025,0.989,0.998,1.065,1.042,1.033,1.048,0.96,1.035,1.0,0.895,0.954,0.906,1.025,1.103,1.073,1.004,0.96,0.977,0.971,1.015,1.124,0.842,1.088,1.017,1.073,0.955,1.079,0.986,1.062,1.027,1.0,0.951,0.998 +NM_173618,0.847,0.949,0.85,0.834,0.855,1.016,0.752,0.827,0.885,0.982,0.868,1.111,0.968,0.635,0.884,1.004,0.994,0.877,1.074,0.897,1.022,1.082,1.122,1.176,0.907,1.088,1.175,0.792,0.664,1.002,0.818,1.526,3.89,1.108,0.516,1.097,0.971,1.049,1.658,1.061,0.906,0.961,0.922,1.925,0.998,0.787,0.977,0.945,0.945,0.836,0.876,0.969,0.894,1.721 +NM_173619,1.034,0.87,1.008,0.885,0.964,1.058,1.135,1.111,0.863,0.996,1.063,0.971,0.984,1.0,1.03,0.919,1.003,0.93,0.905,0.944,1.129,0.96,1.032,0.989,1.093,0.999,1.109,1.051,1.511,0.886,0.971,1.021,0.913,1.001,0.945,0.925,1.071,1.094,0.976,1.053,1.003,1.066,0.932,0.973,0.899,1.051,0.934,0.876,1.049,0.893,1.1,0.842,0.891,1.028 +NM_173620,0.729,1.308,1.289,0.884,0.941,0.931,0.719,0.582,1.399,1.075,0.755,0.911,0.745,0.862,0.849,0.887,1.14,0.876,1.084,1.338,0.586,0.858,1.068,1.099,0.753,0.706,1.418,0.871,0.551,1.16,0.995,2.482,0.931,1.34,0.354,1.281,0.985,1.073,0.962,0.698,1.367,1.287,1.207,1.889,0.95,0.955,1.049,0.673,1.534,0.698,0.951,0.632,0.995,1.581 +NM_173622,0.922,0.972,1.312,0.939,1.063,1.018,0.853,0.909,0.932,0.861,0.85,0.989,0.839,0.967,1.348,1.103,0.947,0.962,1.149,0.971,0.862,1.012,1.013,1.084,0.978,0.977,1.21,0.933,0.971,1.043,1.134,1.232,1.128,1.251,0.903,0.872,0.942,1.102,0.83,0.88,1.149,1.017,0.693,0.895,1.031,0.866,1.033,1.028,0.86,1.038,0.971,0.953,1.301,1.337 +NM_173623,1.063,1.01,0.892,0.914,0.886,1.155,0.852,1.049,0.847,0.978,1.394,0.825,1.035,0.799,1.046,1.775,0.786,0.964,0.987,1.472,0.979,0.987,1.777,0.937,0.885,0.908,0.983,0.815,1.017,0.934,0.91,0.947,0.939,0.964,0.942,0.998,1.103,1.049,1.022,1.04,0.893,1.42,0.856,0.932,1.052,1.239,1.088,0.859,1.139,0.86,1.341,1.034,0.853,1.834 +NM_173624,0.791,0.893,0.921,0.993,0.908,1.131,1.21,0.948,0.958,1.216,0.986,1.058,0.841,0.678,1.096,1.701,0.794,1.286,0.776,0.875,0.782,0.925,0.997,0.922,1.022,0.78,1.174,0.638,1.193,0.991,0.83,0.947,2.654,0.877,0.876,1.105,0.962,1.048,2.579,1.411,1.017,1.158,0.811,1.488,1.082,1.037,1.545,0.81,1.492,1.551,1.183,1.228,1.087,1.435 +NM_173625,0.947,0.967,0.965,0.93,1.147,0.853,0.926,0.983,1.011,0.923,0.934,0.89,1.012,1.002,1.001,1.54,0.949,1.13,0.9,1.026,0.908,1.104,0.953,1.123,1.055,1.037,0.928,1.107,1.047,0.945,0.819,0.97,0.935,1.005,1.015,1.138,3.504,1.12,1.008,0.967,1.001,1.002,1.096,1.025,1.015,1.029,0.939,0.995,0.93,0.977,1.071,0.93,1.041,0.876 +NM_173628,1.011,0.978,1.118,0.977,0.965,1.01,1.075,1.001,1.169,0.981,1.068,1.04,0.951,0.814,0.862,1.038,0.875,0.97,1.065,1.085,1.091,1.077,0.895,1.075,0.868,0.989,0.943,1.105,0.836,1.004,1.092,0.968,1.233,0.839,1.232,1.049,1.009,0.907,1.016,0.994,0.937,1.069,0.959,1.172,0.856,1.043,1.05,1.059,0.997,1.096,1.033,0.972,0.987,0.942 +NM_173629,2.122,0.988,1.511,1.011,1.549,0.888,1.036,1.171,1.91,3.005,0.917,1.385,1.258,0.939,1.352,1.269,1.821,1.033,2.058,0.946,1.159,1.414,0.992,1.614,0.795,0.904,1.245,1.295,1.315,0.813,1.309,0.938,1.437,0.903,1.109,1.047,1.018,1.286,0.985,0.903,1.845,1.031,0.86,0.916,2.523,0.848,0.935,1.353,0.835,1.835,0.912,0.995,1.574,0.86 +NM_173630,0.938,0.912,1.152,0.939,1.038,0.906,0.788,0.928,1.094,1.041,0.95,0.937,0.851,1.209,1.259,1.065,0.912,0.986,1.011,1.072,0.865,1.028,1.118,0.988,0.946,0.964,1.129,1.023,0.943,1.138,0.979,0.948,1.325,1.062,0.906,0.973,0.98,0.903,0.97,1.031,1.043,0.879,0.873,1.3,1.052,0.903,0.903,0.901,0.903,0.996,1.165,1.053,0.936,1.021 +NM_173631,1.171,0.925,1.047,1.096,0.946,1.063,1.043,1.21,0.921,0.994,0.884,0.97,1.111,0.817,0.902,0.902,0.892,0.994,0.925,0.927,1.06,0.97,1.081,0.994,0.897,1.0,0.897,0.926,0.864,1.08,0.911,1.083,1.026,1.093,1.022,0.951,1.027,0.914,1.018,1.027,1.05,1.084,1.009,0.887,0.77,1.073,0.981,1.026,0.992,0.93,0.932,1.104,0.976,1.105 +NM_173632,0.905,0.86,1.107,1.004,1.146,1.018,1.026,0.852,0.903,1.013,0.915,0.871,0.929,1.012,1.002,1.015,0.934,1.059,0.832,1.012,1.127,1.028,1.013,1.062,0.925,0.805,0.884,0.955,1.42,1.004,0.982,1.011,1.09,0.892,1.039,0.974,0.985,0.92,0.905,0.871,0.998,1.12,0.965,0.915,0.927,0.995,0.949,0.95,1.046,0.906,1.04,0.892,1.086,1.187 +NM_173633,0.954,0.952,1.077,0.964,0.864,1.058,1.25,0.915,1.038,0.837,0.991,1.039,0.939,0.687,0.864,0.831,0.924,1.032,0.825,1.122,0.903,0.922,1.187,0.929,1.059,0.892,0.999,1.056,1.041,0.966,0.956,0.97,1.011,0.972,1.048,0.961,1.071,0.93,1.015,1.046,0.838,1.143,1.012,0.94,0.988,0.866,0.927,0.969,1.055,1.113,1.047,0.781,1.001,1.05 +NM_173635,1.13,1.008,0.97,1.094,1.008,0.96,1.044,0.902,0.931,0.973,1.006,0.886,1.063,1.002,1.178,1.093,1.012,0.894,0.862,1.004,1.042,1.036,1.034,1.032,1.099,0.946,1.036,1.158,0.802,0.96,1.012,0.946,0.976,0.952,1.116,1.012,1.113,1.015,0.867,1.078,1.039,0.955,0.944,0.872,0.898,0.947,0.961,0.989,1.089,1.195,1.011,0.937,1.184,1.051 +NM_173637,1.055,1.158,0.851,0.998,0.999,0.992,1.146,0.918,1.093,0.969,1.001,0.983,0.984,0.913,0.785,1.001,1.017,1.012,1.157,0.834,1.035,0.957,0.966,1.064,0.917,1.016,1.025,0.921,0.744,1.066,0.995,1.026,1.164,0.838,1.136,1.164,1.058,1.004,0.997,1.107,1.059,0.992,0.968,0.92,0.999,0.917,0.786,1.019,1.047,1.019,1.038,0.934,1.117,1.059 +NM_173640,0.883,0.959,0.98,0.989,1.017,1.059,0.902,0.775,0.918,1.022,1.101,1.023,1.036,1.152,0.992,0.97,1.17,1.086,0.977,0.91,1.032,1.016,1.037,1.059,0.894,1.008,0.829,0.905,0.928,1.123,0.899,1.016,0.999,1.042,1.008,0.941,0.921,1.154,1.068,1.199,1.044,1.095,1.066,0.902,0.968,0.951,1.001,0.882,1.135,1.008,0.989,0.988,0.924,1.057 +NM_173642,0.858,1.092,0.951,0.969,0.823,1.273,0.983,0.953,0.887,0.945,1.435,0.975,0.863,0.867,1.112,1.48,0.872,1.089,0.899,1.294,0.907,0.845,1.535,0.912,0.855,0.813,0.91,1.039,0.695,1.0,0.859,1.042,1.931,1.176,0.922,1.302,1.183,0.901,1.249,0.834,0.797,1.244,0.948,2.179,0.829,1.095,1.084,0.898,1.121,0.892,1.381,1.041,0.782,1.616 +NM_173645,1.038,1.041,0.957,0.86,0.979,0.938,0.987,1.232,1.016,0.994,1.129,1.082,0.893,0.952,1.021,0.987,0.941,1.052,0.864,0.986,1.05,1.074,0.807,1.052,0.983,1.057,1.006,1.073,0.671,1.02,1.222,1.077,0.979,1.049,0.806,0.881,1.005,0.945,0.976,1.05,0.968,0.883,0.854,0.944,0.977,0.867,1.051,0.859,0.903,0.981,1.104,0.948,0.848,0.993 +NM_173647,0.805,0.806,1.638,0.796,0.928,1.225,0.86,0.736,1.033,0.993,1.113,0.997,0.879,0.755,0.848,1.112,1.455,1.053,1.21,1.003,0.578,0.906,0.864,1.148,0.516,0.826,1.757,0.864,0.544,1.07,0.932,0.994,1.322,1.109,0.412,0.775,1.161,0.961,1.347,1.444,1.363,0.786,0.629,0.844,1.235,0.988,1.009,1.033,0.871,1.599,0.893,1.348,1.039,1.523 +NM_173650,0.974,0.944,0.932,1.19,1.044,0.992,0.986,1.014,0.781,1.013,1.096,1.064,1.228,1.132,0.975,0.934,0.998,1.037,0.956,1.03,1.063,1.152,0.941,1.2,0.994,0.971,0.803,0.983,0.841,1.003,0.937,0.948,1.083,0.793,1.024,1.032,1.051,1.024,0.966,1.231,1.09,1.09,1.0,0.899,0.976,0.943,1.118,1.048,0.993,1.009,0.873,1.075,1.159,1.152 +NM_173652,1.052,0.975,0.999,0.891,1.051,0.99,0.928,0.959,0.984,0.98,1.084,1.065,0.915,1.056,0.995,0.808,1.028,0.899,0.861,1.001,0.832,1.027,1.033,1.011,0.932,0.845,1.041,1.126,0.808,1.013,1.069,0.954,0.958,0.951,0.971,1.073,1.12,1.066,1.096,1.055,0.889,0.905,1.105,0.975,1.065,1.066,1.005,0.952,1.016,0.993,1.041,1.061,0.915,1.06 +NM_173653,0.99,0.87,1.303,0.97,1.133,0.909,1.078,0.965,1.319,1.265,1.046,1.057,1.201,1.005,0.987,0.831,1.127,0.97,1.287,0.922,1.076,1.088,0.878,1.222,0.888,1.286,1.192,1.271,1.042,0.941,1.235,0.999,1.239,0.965,1.039,0.947,0.847,1.076,0.87,1.007,1.172,0.867,0.887,0.883,1.198,0.951,0.883,1.016,1.03,1.134,1.001,0.765,1.184,0.93 +NM_173654,0.761,0.938,1.321,0.705,1.103,0.998,0.798,0.825,1.119,0.917,0.826,0.814,0.763,0.94,1.256,1.739,1.067,0.84,0.954,1.015,0.675,1.039,1.253,1.071,0.738,0.78,1.433,0.942,0.777,0.818,1.115,1.316,1.309,1.18,0.685,0.682,0.977,1.051,1.097,0.872,0.983,1.063,0.867,0.651,0.882,0.992,1.072,0.853,0.944,0.87,1.011,0.995,0.925,2.218 +NM_173655,1.071,1.047,1.001,1.013,1.025,1.123,1.207,0.854,1.058,1.014,0.989,1.107,0.944,0.918,0.856,1.069,1.055,1.096,1.05,1.037,1.132,0.915,0.964,1.031,0.97,1.055,0.944,1.024,0.998,0.904,1.002,0.942,0.968,1.049,0.974,0.96,0.931,1.052,0.955,0.97,0.985,1.013,0.859,0.878,1.245,0.938,0.966,1.075,0.989,0.953,1.007,0.899,1.101,1.064 +NM_173656,1.144,0.991,0.901,1.039,1.136,1.024,0.911,0.965,0.972,1.224,1.014,0.981,1.067,0.92,0.991,1.087,1.095,0.899,1.002,1.009,0.827,1.031,0.816,1.138,0.998,0.993,0.992,0.995,1.714,1.28,0.994,0.878,1.004,1.042,0.939,0.809,1.062,0.993,0.937,0.824,0.99,1.003,1.098,1.028,1.01,1.095,1.028,0.886,0.969,0.954,0.959,0.98,1.002,1.117 +NM_173660,1.074,1.033,0.854,1.09,0.992,0.995,1.098,0.967,1.011,0.928,0.985,1.01,1.021,1.077,1.156,1.022,0.899,1.031,1.026,1.0,1.005,1.024,0.95,0.918,1.11,1.038,0.876,0.864,1.021,1.128,0.932,1.328,1.403,0.971,1.069,0.912,0.843,0.868,1.319,1.04,0.943,1.102,0.925,1.517,0.902,0.993,1.072,0.97,1.007,0.988,1.026,0.972,0.961,1.0 +NM_173661,1.037,0.955,1.208,1.122,1.176,0.966,1.171,1.029,0.941,0.884,0.969,0.966,1.1,1.361,1.083,1.15,0.968,0.824,0.826,0.956,1.082,1.034,1.212,0.99,0.923,1.06,0.921,1.041,1.358,1.06,1.003,1.027,0.964,0.996,0.993,1.127,0.944,0.9,1.162,0.868,0.922,1.047,1.237,0.866,1.2,1.029,1.112,1.009,0.981,0.966,0.929,0.929,1.054,1.05 +NM_173662,1.218,0.999,0.955,0.925,1.024,0.835,1.162,1.241,1.014,1.011,0.962,0.923,0.899,1.169,0.98,0.954,0.975,1.135,0.985,0.935,1.054,1.179,1.065,0.98,1.105,0.895,1.023,0.895,1.121,0.917,0.922,1.054,1.021,0.869,1.044,1.028,1.109,0.976,0.964,0.939,1.042,0.936,1.074,0.972,1.074,0.831,0.911,0.983,1.092,0.937,0.985,1.061,1.028,0.857 +NM_173663,0.949,0.961,1.021,0.928,0.892,0.914,1.097,1.031,1.128,1.027,1.021,0.983,0.947,1.134,0.946,1.005,0.944,0.899,1.006,0.949,0.998,0.981,1.115,0.887,0.846,1.026,1.039,0.979,0.832,0.964,0.975,1.011,0.99,0.964,1.036,1.035,1.031,0.999,1.063,0.849,1.116,1.012,0.922,1.079,1.026,0.938,1.076,0.889,1.057,1.148,1.056,1.018,1.275,1.001 +NM_173665,0.914,0.979,0.993,0.965,1.027,0.898,1.047,1.075,0.993,0.991,0.978,1.099,1.07,0.945,1.018,1.032,0.926,1.106,1.068,1.118,0.93,0.963,1.035,0.949,0.92,1.135,0.861,0.972,1.005,0.919,1.12,0.93,1.06,1.007,0.904,0.934,1.02,1.163,0.965,0.949,1.033,0.865,0.887,0.846,1.059,0.889,0.993,0.97,1.096,1.007,1.019,1.008,1.195,1.092 +NM_173668,1.05,1.043,1.054,0.914,0.858,0.95,1.313,0.985,0.995,0.982,3.254,0.94,0.99,0.952,0.959,1.02,1.032,1.016,0.871,0.921,1.408,1.018,0.964,0.981,0.996,1.003,0.985,0.99,1.08,0.9,1.112,0.895,4.89,1.003,1.165,1.548,0.969,0.928,2.362,1.192,1.162,0.985,0.918,0.926,1.105,1.09,1.049,2.257,0.902,0.95,0.928,0.923,1.012,1.043 +NM_173670,1.11,1.018,0.886,1.069,1.064,0.998,0.769,0.914,0.949,0.941,1.177,1.037,0.961,1.073,1.047,1.009,1.022,1.011,1.052,1.011,1.02,0.941,1.023,0.984,1.117,0.969,0.95,0.97,1.0,1.006,1.064,1.103,1.209,0.883,0.955,1.084,1.215,0.991,0.955,0.853,1.068,0.96,0.858,0.889,0.946,0.953,1.009,1.019,1.076,0.963,1.079,1.078,0.994,1.037 +NM_173672,0.995,0.999,0.918,0.96,1.045,1.065,1.009,1.06,0.846,1.116,1.012,1.049,0.963,1.08,1.098,0.955,0.946,0.946,0.941,1.077,1.016,0.917,0.991,1.018,1.058,0.921,0.969,0.963,0.934,1.08,0.819,1.097,1.228,0.949,0.892,0.907,1.016,1.214,1.238,0.978,0.999,1.0,0.898,1.0,0.927,0.831,0.987,0.974,0.999,0.919,1.182,1.069,1.079,1.327 +NM_173673,1.007,1.129,1.013,1.038,0.883,1.047,0.996,0.982,0.927,0.947,0.996,0.905,0.991,1.055,1.104,1.273,0.997,1.107,0.899,1.127,1.046,0.997,0.95,1.014,1.021,1.073,0.932,0.963,0.91,1.153,1.097,0.923,1.044,1.056,0.925,0.954,1.01,1.095,1.116,0.971,0.996,0.964,0.95,1.065,1.019,0.765,0.922,1.202,0.933,0.896,0.939,0.942,1.074,0.923 +NM_173674,0.813,1.004,0.806,0.738,0.901,1.333,1.102,0.655,1.116,0.999,1.244,0.718,0.717,0.849,0.93,1.09,0.91,0.87,0.87,1.523,0.738,0.866,1.263,0.93,0.82,0.639,0.794,0.76,1.107,1.366,0.797,1.382,1.179,1.099,0.779,0.861,0.894,0.816,1.232,1.22,0.987,0.99,1.238,1.101,0.844,1.315,1.007,0.651,1.299,0.901,0.977,1.218,1.062,1.334 +NM_173675,1.01,0.926,0.844,1.001,1.023,1.025,1.338,1.002,1.008,0.943,1.192,0.831,1.023,0.829,0.714,1.038,0.838,1.01,1.033,1.139,0.861,1.013,1.201,1.059,1.029,1.002,0.916,1.096,0.874,1.033,1.088,0.953,0.909,1.072,0.985,1.139,0.994,1.043,0.956,1.088,1.003,0.909,1.061,1.158,0.961,1.062,0.946,1.001,1.042,0.998,1.015,1.083,0.952,0.922 +NM_173676,0.858,1.048,0.961,1.142,0.915,0.857,1.116,1.212,1.498,1.058,0.921,0.809,1.111,0.965,0.905,0.853,1.001,1.006,1.146,0.877,1.048,0.893,0.935,1.002,1.022,0.959,0.99,1.104,1.066,0.961,1.28,0.895,1.252,0.949,1.134,0.869,1.274,0.904,0.896,1.05,1.632,0.817,1.011,0.811,0.999,0.922,1.05,1.05,1.166,1.09,1.013,1.06,0.959,1.072 +NM_173677,1.065,1.031,1.142,0.896,1.116,0.934,0.972,0.807,0.956,1.077,0.95,0.959,1.022,0.781,0.957,0.929,1.176,0.993,0.923,1.036,0.814,1.061,0.948,0.977,0.936,0.958,1.124,0.89,0.789,1.187,0.873,1.005,0.859,0.924,1.003,0.795,0.829,1.098,1.147,0.892,0.992,1.05,0.969,1.128,1.049,0.881,0.986,1.039,0.923,1.048,1.131,0.902,0.781,1.078 +NM_173678,0.981,0.979,1.041,1.119,1.229,1.086,1.077,1.092,1.156,1.071,1.164,0.796,0.907,0.972,1.019,0.995,0.895,1.08,0.932,0.971,1.058,1.036,1.009,1.189,1.111,0.924,0.925,0.989,1.521,0.912,1.062,1.018,0.972,0.998,0.916,0.985,0.901,0.973,0.978,1.068,0.994,0.881,1.248,0.893,0.904,1.042,0.887,1.131,0.928,0.991,1.023,0.912,1.042,1.043 +NM_173679,0.981,1.047,1.005,1.004,0.871,0.954,1.133,0.994,1.042,0.979,1.053,1.004,1.025,1.087,1.165,1.303,1.042,0.982,0.901,1.06,0.944,0.928,0.955,1.081,1.084,0.937,0.977,0.909,1.266,1.03,0.972,1.057,1.281,0.92,0.992,1.012,1.056,0.882,0.989,0.995,0.912,1.055,1.289,0.934,0.947,1.06,1.031,1.078,1.086,0.805,1.0,0.851,1.085,1.412 +NM_173681,1.02,0.942,0.907,0.955,0.897,0.891,0.875,0.853,1.032,0.986,1.027,1.025,0.979,0.898,0.863,1.045,0.958,0.962,1.037,1.018,0.9,1.035,0.988,0.876,1.0,1.046,1.089,1.022,1.025,1.029,0.876,1.037,1.005,0.924,0.928,1.007,0.906,1.023,0.985,1.146,1.0,0.995,0.872,0.794,1.132,1.023,0.954,1.015,0.998,0.959,1.126,0.918,0.878,0.931 +NM_173682,1.062,0.981,0.99,1.007,1.101,0.887,1.033,1.212,1.037,0.99,1.053,1.087,1.005,1.102,1.05,1.071,0.952,1.055,0.941,1.043,1.177,0.915,1.123,1.042,1.026,0.97,1.148,1.097,1.304,1.068,1.186,1.049,1.08,0.946,0.878,0.975,0.959,1.061,0.976,0.931,1.0,1.025,0.876,0.987,1.114,0.882,0.841,1.028,1.075,1.057,1.062,0.948,0.978,1.17 +NM_173683,0.875,1.107,1.085,1.012,1.067,0.939,1.09,0.948,0.981,1.078,1.048,0.989,1.029,1.087,1.163,0.991,1.026,1.056,0.996,0.982,1.02,1.028,0.925,0.97,1.017,0.929,0.886,0.997,0.988,1.024,1.001,1.123,0.878,1.005,1.052,1.009,1.029,1.097,1.186,0.965,1.132,0.942,0.894,0.976,0.924,0.954,1.099,0.991,0.947,0.997,0.921,0.875,1.092,0.882 +NM_173685,0.741,1.073,0.999,0.744,0.873,0.948,0.701,0.763,1.023,0.903,1.13,1.002,0.984,0.645,0.77,1.174,0.934,1.077,0.942,1.145,0.615,0.855,1.036,0.927,0.845,0.948,1.034,1.1,0.644,0.913,0.882,1.178,1.779,1.267,0.557,1.299,1.006,0.833,1.301,1.127,0.976,0.937,0.748,1.508,0.959,1.25,1.196,0.861,1.007,0.801,0.891,1.051,0.83,1.24 +NM_173687,0.981,1.085,0.87,1.008,0.923,1.013,1.065,0.954,1.135,1.009,1.129,0.969,0.968,1.081,1.042,0.898,0.97,0.909,1.029,1.007,1.052,1.029,1.052,1.029,0.97,1.063,1.06,0.944,0.883,1.069,0.966,1.06,1.079,1.126,1.023,0.978,0.909,0.827,0.935,1.066,0.8,0.999,0.968,0.975,1.083,1.005,1.092,0.863,0.783,0.993,0.964,1.049,1.135,1.047 +NM_173689,0.917,1.012,1.079,0.963,1.021,0.985,0.991,0.962,1.093,0.98,1.128,1.019,0.928,1.017,0.881,1.011,1.035,1.085,0.974,1.09,0.945,0.997,0.884,0.957,0.95,1.084,1.018,0.952,0.753,0.918,0.961,1.103,1.118,0.966,1.109,0.939,0.966,1.219,1.043,0.947,1.02,0.963,0.907,1.06,1.075,0.996,0.972,1.05,1.19,1.076,1.072,0.898,0.995,1.067 +NM_173690,0.944,0.959,0.993,0.999,0.979,1.0,0.871,1.007,1.091,0.994,0.915,1.07,0.926,1.147,0.941,0.961,0.998,0.922,1.25,0.839,0.993,1.144,0.975,0.954,0.95,0.96,1.063,0.968,0.688,1.016,0.963,0.967,1.297,0.917,0.923,1.02,1.032,0.947,0.954,1.108,0.92,0.9,0.856,1.095,0.957,1.038,1.024,1.115,0.865,0.96,1.007,0.983,1.063,1.0 +NM_173691,0.79,1.014,1.001,0.761,0.919,1.654,0.968,0.625,1.097,0.665,1.758,0.713,0.631,0.712,1.699,2.731,0.831,0.987,1.345,1.157,0.405,0.768,1.475,1.042,0.618,0.999,0.789,1.017,0.879,1.75,0.982,1.144,1.4,1.253,0.612,2.986,1.641,1.096,1.615,0.955,1.119,1.202,0.997,1.712,0.837,1.12,1.089,1.117,1.869,0.75,1.251,0.742,0.608,0.927 +NM_173696,0.863,1.006,1.04,0.861,1.107,0.983,0.813,1.049,0.989,0.967,0.981,1.08,1.124,1.083,0.837,0.919,1.035,1.114,0.996,0.942,1.061,0.922,0.938,0.866,1.002,1.053,1.019,0.967,0.973,0.954,0.998,0.951,0.904,1.089,1.2,1.107,1.116,1.131,1.1,1.11,0.976,1.01,0.862,0.962,1.124,1.165,0.988,1.036,0.919,1.085,0.958,1.043,1.057,0.993 +NM_173702,0.645,1.06,1.069,0.346,0.723,1.806,0.336,0.939,0.846,0.897,0.932,1.012,0.53,0.633,0.876,1.546,1.103,0.485,0.89,1.114,0.605,0.824,1.142,0.874,1.319,0.59,1.577,0.599,0.349,1.386,0.976,1.371,2.508,1.702,0.26,1.001,0.919,1.188,1.479,1.13,0.756,1.09,0.718,0.668,0.876,0.941,0.739,0.605,1.078,0.752,1.163,0.845,0.918,1.696 +NM_173703,1.116,1.169,0.932,1.027,0.949,1.062,0.957,0.972,0.909,0.96,0.924,0.884,0.998,1.112,0.924,1.217,1.006,1.13,1.056,0.898,0.957,1.055,1.08,0.988,1.093,1.037,0.941,0.834,0.746,0.89,0.911,1.11,1.277,0.9,1.011,0.916,1.025,1.124,1.147,1.09,0.87,0.851,0.97,0.932,0.967,1.059,0.863,0.966,1.0,0.966,0.919,0.986,0.897,1.091 +NM_173704,0.896,0.878,1.334,0.395,0.901,1.011,0.381,1.173,0.963,0.891,0.848,1.099,0.807,0.807,0.784,1.281,0.559,0.723,1.229,0.902,0.662,1.271,1.018,1.101,1.083,1.139,1.269,0.926,0.268,1.203,1.299,1.227,0.946,1.014,0.774,0.774,0.945,1.54,1.022,1.208,0.922,1.051,0.646,0.409,0.96,0.926,0.843,1.187,0.785,1.033,1.308,0.897,0.753,1.004 +NM_173705,0.623,1.131,1.172,0.466,0.947,1.247,0.534,1.017,0.79,1.053,0.697,0.989,0.635,0.507,0.801,1.422,0.796,0.909,1.081,1.125,0.589,0.89,1.495,0.986,0.934,0.757,1.115,0.831,0.336,1.237,0.985,1.343,0.994,1.168,0.316,1.038,1.029,1.194,1.375,1.364,0.814,1.139,0.669,0.811,0.914,0.916,1.001,0.845,1.106,0.799,1.234,0.822,0.734,1.139 +NM_173708,1.249,0.708,0.645,0.693,0.454,2.219,0.334,1.921,0.525,0.554,1.539,0.571,0.826,0.599,0.732,1.822,0.486,0.294,0.685,1.126,1.067,0.293,1.1,0.427,3.439,1.133,0.513,0.904,0.29,1.232,1.179,1.742,3.301,1.74,1.734,1.384,0.663,0.513,1.905,1.753,0.498,1.119,0.513,1.898,0.848,0.86,0.796,0.908,0.807,1.227,0.969,0.92,0.86,2.506 +NM_173709,0.776,0.949,0.735,0.468,0.472,2.084,0.543,1.151,0.378,0.643,1.479,0.756,0.855,0.653,0.634,1.684,0.455,0.531,0.872,1.005,0.616,0.451,1.147,0.609,2.113,0.772,0.938,0.663,0.424,1.401,0.741,1.795,1.829,1.618,0.561,1.332,1.081,0.819,1.39,1.36,0.394,1.356,0.609,1.429,0.657,0.888,0.712,0.876,0.787,0.79,1.208,1.047,0.811,1.694 +NM_173710,0.776,1.324,1.01,0.566,0.82,1.198,0.691,0.911,0.826,0.839,1.039,1.022,0.815,0.525,0.716,1.098,0.641,0.936,0.876,1.311,0.532,0.81,1.176,0.972,1.259,0.809,0.94,0.691,0.379,1.385,0.792,1.263,1.009,1.243,0.454,1.235,1.106,1.039,1.145,1.424,0.716,1.28,0.737,0.837,0.868,0.917,0.979,0.86,0.916,0.632,1.173,1.067,0.725,1.263 +NM_173712,1.546,0.925,1.143,0.916,0.959,1.718,1.077,4.412,0.999,0.804,1.001,1.19,1.57,1.022,0.989,1.197,1.109,1.015,0.708,1.226,0.832,2.516,0.882,1.684,1.065,0.716,1.007,1.911,0.605,1.061,2.029,1.292,1.91,0.916,1.166,0.794,0.958,2.634,1.393,1.663,0.966,1.063,0.759,0.723,1.27,0.967,0.871,1.521,1.122,1.025,1.222,0.91,0.752,0.767 +NM_173713,0.869,1.163,0.772,0.399,0.758,1.661,0.439,1.334,0.551,0.948,0.96,0.811,0.577,0.775,0.764,1.873,0.478,0.608,1.125,1.246,0.773,0.691,1.199,0.869,2.07,0.82,1.361,0.602,0.405,1.138,0.968,1.264,1.459,1.7,0.424,0.983,1.05,0.997,1.399,1.877,0.504,1.599,0.82,0.583,0.619,1.273,0.679,0.538,0.76,0.735,1.366,0.803,0.885,1.389 +NM_173714,0.932,1.037,1.012,0.997,1.034,1.602,1.084,0.854,0.962,1.101,1.988,1.153,0.886,0.839,0.781,0.904,1.003,1.036,0.933,1.284,0.896,0.925,0.999,0.954,1.01,1.054,0.886,0.972,1.056,0.985,0.808,1.641,3.039,0.984,0.881,1.652,0.929,0.916,1.095,1.414,0.948,0.903,0.971,1.528,1.019,0.97,1.055,1.08,1.09,0.996,0.933,1.715,0.849,1.307 +NM_173728,0.962,1.0,1.031,0.834,1.015,1.047,0.978,1.03,0.969,0.987,0.888,0.984,1.03,1.035,0.81,1.036,1.03,1.0,0.919,1.042,1.02,1.041,0.891,0.937,0.968,1.048,0.934,1.083,0.704,0.992,1.047,1.088,1.081,0.989,0.937,0.936,0.963,1.093,0.968,1.114,0.824,1.022,0.944,0.929,1.169,1.086,1.022,0.989,0.852,1.033,0.993,0.928,0.983,0.958 +NM_173791,0.725,1.062,0.947,0.736,0.943,1.144,0.73,0.691,1.0,1.079,1.486,0.926,0.687,0.794,0.942,1.512,0.726,0.904,1.127,1.107,0.634,0.759,1.466,1.038,0.59,0.761,0.92,0.94,0.573,0.948,0.953,1.018,1.642,1.045,0.73,1.272,1.006,0.914,1.356,0.893,0.835,1.078,1.19,1.84,0.874,1.6,1.053,0.784,1.294,1.127,1.314,0.909,0.896,1.958 +NM_173794,0.583,1.546,1.229,1.094,0.807,2.359,1.252,0.882,1.036,0.708,1.078,1.032,0.704,0.689,0.944,1.786,0.887,1.138,0.689,1.734,0.463,0.816,1.114,1.077,0.743,0.477,1.335,0.862,0.691,1.48,1.049,1.352,2.334,1.967,0.527,0.487,1.336,0.75,1.365,0.651,0.915,1.327,0.737,0.565,0.817,1.174,0.981,0.673,0.961,0.725,1.55,0.687,0.622,1.429 +NM_173795,1.086,0.997,1.125,1.195,1.015,1.079,0.83,0.933,1.364,1.011,0.922,0.966,0.855,1.023,1.135,1.059,1.451,1.005,0.931,1.251,0.958,0.978,0.919,1.133,0.973,1.019,1.113,0.977,0.792,0.9,0.994,1.682,1.567,1.026,1.032,1.156,0.984,0.938,1.124,1.153,1.039,1.016,0.791,0.891,0.954,0.889,1.011,1.082,0.991,0.988,0.905,1.008,1.087,2.279 +NM_173797,0.688,1.097,1.343,0.864,0.981,1.299,0.845,0.727,1.302,0.742,1.208,0.855,0.752,0.865,1.056,1.589,0.852,0.973,1.226,1.12,0.755,0.975,1.224,0.995,0.648,0.737,1.349,0.817,0.523,1.135,0.919,0.99,1.634,1.338,0.472,0.695,1.306,0.803,1.081,0.657,1.029,1.034,0.924,0.721,0.992,1.15,0.863,0.811,1.025,0.798,1.017,0.699,0.865,1.313 +NM_173799,0.992,0.989,0.906,0.983,0.969,0.963,0.957,0.842,1.174,0.999,1.022,1.094,0.973,1.044,0.941,1.096,0.994,0.981,1.099,0.976,0.804,0.982,1.267,1.063,0.902,1.15,0.972,0.908,0.989,0.939,1.028,0.955,0.993,0.996,1.019,1.066,1.002,1.05,1.122,0.948,1.051,1.011,1.198,1.001,0.892,0.979,1.018,1.096,1.031,1.085,0.958,0.95,1.154,0.981 +NM_173800,0.995,0.998,1.129,0.918,1.183,0.994,0.836,1.048,0.911,0.912,1.017,1.082,1.142,1.006,0.862,1.232,1.008,0.993,1.008,1.083,0.929,1.086,0.921,1.162,1.082,1.069,1.213,0.948,0.884,0.872,0.955,0.893,0.951,1.029,0.95,0.819,0.972,0.916,1.045,1.116,1.022,1.026,0.999,0.954,1.017,1.106,1.005,0.955,0.975,0.998,1.087,0.849,1.056,0.862 +NM_173801,0.934,0.897,0.966,1.018,1.045,1.243,0.872,1.008,1.001,0.976,1.017,1.003,0.91,0.889,0.822,1.006,1.023,0.953,0.923,1.186,1.059,1.072,0.951,0.943,0.986,0.925,1.008,1.034,0.813,0.91,0.897,0.904,1.109,1.015,1.189,1.065,1.144,0.905,1.064,1.001,0.988,1.012,0.963,0.99,1.111,0.84,0.902,0.976,1.002,0.916,0.964,0.911,1.204,0.965 +NM_173804,1.214,1.216,0.986,1.165,1.04,1.016,0.969,1.122,0.848,0.947,0.833,0.896,1.042,0.926,0.748,1.081,0.892,0.976,0.818,1.106,0.738,0.997,0.965,0.966,1.405,0.866,1.058,0.91,1.718,1.102,1.047,0.915,0.94,1.073,0.935,1.03,1.109,0.855,1.102,1.059,1.006,0.91,1.406,0.906,0.973,1.002,0.803,0.997,0.9,0.938,1.094,0.906,0.943,1.023 +NM_173805,0.933,1.0,1.024,0.964,1.141,1.058,0.998,0.972,0.887,1.002,1.196,0.934,0.98,1.064,0.761,0.873,1.041,1.029,0.927,1.06,0.88,0.943,1.031,0.902,0.985,0.992,0.993,0.894,1.358,0.903,0.999,1.029,1.221,0.967,1.011,1.088,1.101,1.069,1.077,1.221,0.992,1.192,0.911,1.08,1.1,1.014,0.952,1.063,1.079,0.997,0.947,0.935,1.058,0.949 +NM_173806,1.124,0.943,0.863,1.136,1.026,0.909,0.933,0.974,0.901,1.079,0.918,1.105,1.013,0.752,0.954,0.937,1.0,0.949,0.924,0.983,1.119,0.936,1.066,1.072,1.002,1.144,0.95,1.121,0.772,0.987,0.953,0.975,0.993,1.051,1.037,1.015,0.923,1.019,1.077,1.099,0.811,0.855,1.013,1.044,1.018,0.929,0.989,0.903,1.054,0.951,1.057,1.051,1.1,0.996 +NM_173808,1.025,0.783,0.935,0.9,1.075,0.926,0.806,1.031,0.969,0.977,0.984,0.941,0.999,0.958,0.789,0.93,1.055,0.895,1.119,0.914,0.996,0.951,1.096,1.021,1.039,0.913,0.781,1.023,0.898,0.954,0.993,1.069,1.049,0.96,1.071,0.946,1.097,0.877,1.109,1.098,0.943,0.935,1.03,1.117,1.008,0.83,0.991,0.843,0.924,0.989,0.943,1.079,1.104,0.933 +NM_173809,0.785,0.868,1.501,0.603,1.191,1.084,0.404,1.043,1.455,1.202,1.003,1.711,0.898,0.883,1.003,1.647,0.587,0.922,1.819,0.815,0.694,1.047,0.844,1.368,0.365,1.243,1.35,1.187,0.31,0.939,1.3,1.147,1.836,1.058,0.127,1.237,0.785,1.362,0.911,0.552,1.443,0.715,0.452,0.913,1.1,0.799,0.713,1.072,0.521,1.014,0.917,0.679,1.254,0.732 +NM_173810,0.799,1.327,1.055,0.929,0.755,1.181,1.005,0.61,0.816,0.656,1.015,0.75,0.719,0.604,0.848,1.437,0.787,0.968,0.908,1.17,0.685,0.647,1.232,0.891,0.793,0.698,1.053,0.74,0.613,1.323,0.806,1.691,2.384,1.424,0.574,1.183,1.204,0.769,1.411,1.243,0.957,1.193,0.744,1.359,0.872,1.028,0.869,0.691,1.066,0.815,0.958,0.807,0.697,1.112 +NM_173811,0.771,1.116,0.952,0.965,1.155,1.023,1.095,0.914,0.996,1.071,1.1,0.901,0.775,0.733,0.901,0.884,1.039,1.166,1.111,0.861,0.87,0.94,1.211,1.022,0.917,0.767,0.882,0.942,0.703,1.216,1.096,0.976,1.214,1.134,1.094,0.981,0.99,1.017,1.478,1.364,0.955,1.121,0.78,1.135,1.185,0.792,0.994,1.137,1.08,1.015,1.005,0.949,1.126,1.172 +NM_173812,0.998,1.193,0.967,1.001,0.979,0.923,1.004,0.835,0.888,0.819,0.981,0.901,1.167,1.073,1.113,0.985,1.032,0.895,1.042,1.156,0.907,0.852,1.111,0.904,1.088,1.046,0.936,0.876,0.96,1.107,0.976,1.155,0.937,0.985,0.997,0.873,1.06,1.012,1.09,0.938,1.074,0.931,1.211,0.891,0.911,1.041,0.902,1.111,0.936,0.955,0.996,0.798,1.094,0.965 +NM_173815,0.89,0.891,0.969,0.972,1.067,1.028,0.873,1.018,1.004,1.15,0.904,1.092,0.986,0.97,1.257,0.766,1.232,1.139,1.025,0.78,1.022,0.88,1.017,1.214,0.916,1.052,1.084,0.914,1.221,1.114,0.973,1.291,1.183,1.122,0.986,0.919,1.006,0.92,0.896,0.832,0.974,1.014,1.102,0.8,1.234,1.096,0.883,0.884,1.111,1.13,0.882,0.918,1.119,1.002 +NM_173820,0.98,0.904,0.962,0.882,1.005,0.917,0.907,1.092,0.93,0.97,0.964,0.996,1.038,0.95,0.927,0.939,1.008,0.932,0.947,1.114,0.959,0.969,0.956,1.034,1.067,1.052,0.995,1.087,0.877,1.038,1.008,1.082,0.941,1.051,1.026,0.998,1.012,0.949,0.811,1.052,1.135,1.12,0.824,1.099,1.236,0.952,1.084,1.001,0.898,0.955,1.055,1.007,1.021,0.925 +NM_173821,1.112,1.005,1.025,1.124,1.006,0.968,1.05,0.951,0.961,0.975,1.002,1.084,1.072,0.988,0.983,1.028,0.906,0.959,1.079,1.135,1.154,0.903,1.035,0.999,0.991,1.034,0.91,0.943,1.068,0.952,0.948,0.861,0.892,1.063,1.028,1.013,1.049,1.035,1.018,0.998,0.998,0.827,1.021,1.017,1.044,0.923,1.095,1.129,0.829,1.021,0.975,0.893,0.981,1.035 +NM_173822,0.963,0.943,1.099,0.727,1.217,1.094,0.802,0.826,1.098,1.039,1.192,0.712,0.831,0.891,1.031,1.22,0.918,1.011,1.263,0.919,0.834,0.844,1.114,0.848,0.708,0.835,1.244,1.005,0.838,0.977,1.193,0.908,1.248,1.101,1.269,0.694,1.198,1.032,1.052,0.875,1.167,1.146,0.736,1.036,0.906,1.152,0.949,0.872,1.064,1.05,0.959,0.775,0.859,1.662 +NM_173824,0.661,1.032,1.05,0.757,0.981,1.084,0.839,0.862,1.26,1.134,1.154,0.81,0.802,1.002,0.982,1.739,1.001,1.03,1.504,0.891,0.689,0.883,0.954,1.088,0.5,0.752,1.255,0.922,0.557,0.827,1.237,0.867,1.561,1.13,0.89,1.007,1.182,0.932,1.011,0.647,1.217,0.827,0.729,1.04,1.052,0.886,1.05,0.801,1.068,0.77,0.754,0.816,1.071,1.617 +NM_173825,1.036,1.114,0.949,1.044,0.991,1.047,1.027,0.846,1.249,1.025,1.069,0.994,0.949,0.92,0.9,1.034,0.859,1.126,1.0,1.133,0.887,0.921,1.123,1.097,0.963,0.979,1.093,1.096,0.842,1.387,0.847,1.045,1.29,1.079,0.799,0.901,0.931,0.859,1.083,0.905,1.126,1.006,1.024,1.12,0.892,1.17,1.174,0.737,1.13,0.784,0.928,0.974,1.039,1.028 +NM_173826,1.08,0.998,1.05,0.964,0.887,0.96,0.862,0.805,0.909,1.003,0.911,0.995,0.91,1.083,1.205,1.188,1.013,1.116,0.962,1.152,0.875,1.01,0.842,1.026,1.085,0.857,0.963,0.924,1.034,1.036,0.958,1.128,0.993,1.035,0.988,1.073,1.02,1.031,1.051,0.894,0.952,1.044,1.128,0.967,0.866,0.99,0.936,1.049,0.901,0.925,1.118,0.975,1.123,0.885 +NM_173827,0.877,1.133,0.991,1.027,0.841,1.157,0.735,0.755,1.047,0.909,1.1,0.776,0.82,0.841,0.969,1.422,0.907,0.989,1.002,1.296,0.838,0.719,1.34,0.902,1.077,0.848,1.306,0.785,0.821,1.218,0.978,1.154,1.308,1.276,0.597,0.755,1.193,1.045,1.245,1.031,0.902,0.973,0.944,1.064,0.82,1.175,0.952,0.779,1.128,0.726,1.238,0.767,0.896,1.02 +NM_173829,1.055,0.962,1.107,1.071,1.012,1.011,0.921,1.094,1.258,1.073,1.162,1.06,0.959,0.956,0.913,0.915,0.962,1.03,0.934,1.026,0.919,0.921,1.062,0.862,0.932,0.862,0.949,1.089,0.724,0.965,1.079,0.981,0.997,1.003,1.147,1.008,0.979,1.116,1.011,0.902,0.996,1.065,0.883,1.043,1.076,0.987,0.972,1.057,0.962,1.074,0.881,1.033,1.118,0.912 +NM_173830,0.998,0.967,1.232,1.05,1.017,1.066,1.074,0.925,0.981,0.928,1.156,0.935,0.96,0.993,1.177,1.123,1.0,1.031,1.111,1.247,0.928,0.969,1.111,1.065,0.937,0.917,1.0,0.989,0.811,1.066,1.009,1.063,1.127,1.018,1.025,0.924,1.018,1.053,1.055,1.107,0.906,0.916,1.046,0.886,0.787,1.086,1.056,0.958,1.078,0.869,1.105,0.861,0.995,1.038 +NM_173831,1.024,0.983,1.056,0.992,1.05,0.946,1.006,1.208,1.117,0.908,1.02,0.885,0.908,0.9,0.784,1.162,0.953,1.021,1.055,1.123,0.952,0.962,0.84,1.022,0.964,1.116,1.101,1.115,0.821,0.99,1.033,0.929,1.022,1.075,1.077,0.985,0.936,1.053,0.835,1.194,0.901,0.803,1.076,1.155,1.107,0.862,0.959,1.023,0.95,1.259,0.918,1.035,0.762,1.06 +NM_173832,0.962,0.926,1.009,1.168,0.905,1.124,0.946,1.183,0.858,0.974,1.096,1.1,1.096,0.992,0.937,1.062,1.118,0.881,1.136,0.891,1.0,1.035,1.052,1.071,1.02,0.899,0.899,1.115,0.84,0.963,1.022,0.94,0.88,0.959,1.068,1.055,1.013,0.986,0.96,0.999,0.999,1.078,1.0,1.092,0.997,1.016,1.019,0.846,1.015,1.07,0.898,1.036,1.235,0.977 +NM_173833,0.976,0.931,0.997,0.836,1.068,0.871,0.969,0.857,0.979,0.917,1.035,0.968,1.008,1.054,0.858,1.139,1.01,1.14,0.905,1.016,0.899,0.892,0.847,0.941,0.994,1.027,0.855,0.994,0.925,0.998,0.982,1.056,0.855,1.107,0.828,0.895,0.928,1.016,1.053,1.018,0.993,1.001,1.216,1.018,1.009,1.058,0.899,1.012,0.918,0.914,1.009,1.079,1.006,0.99 +NM_173834,0.603,1.336,0.997,0.741,0.797,1.358,0.86,0.636,0.976,0.767,1.042,0.675,0.671,0.574,0.853,1.417,0.798,1.129,0.997,1.095,0.547,0.89,1.194,1.003,0.991,0.792,0.852,0.788,0.789,1.465,0.898,1.441,1.203,1.672,0.492,0.908,1.632,0.86,1.723,0.642,0.888,1.326,0.761,1.296,0.903,1.167,0.933,0.661,1.05,0.643,1.122,0.92,0.856,1.415 +NM_173842,1.004,1.128,0.854,1.067,1.151,0.925,0.818,0.932,1.0,0.959,1.034,1.049,1.09,1.068,0.98,0.929,1.096,1.036,1.038,1.058,1.068,1.028,0.916,0.87,0.96,0.932,0.906,0.948,0.953,1.049,0.817,1.128,0.913,1.062,1.14,0.961,0.975,1.0,1.051,1.021,1.09,1.061,0.914,1.133,1.095,1.006,0.947,1.035,1.031,1.03,0.958,1.051,0.954,1.085 +NM_173843,1.489,0.801,1.356,1.119,1.363,0.909,0.973,1.374,2.084,1.207,0.931,1.063,1.469,1.414,1.259,1.206,1.026,1.272,1.407,0.752,0.949,0.864,0.951,1.217,0.81,1.196,1.121,1.577,0.903,0.765,2.076,0.836,1.328,0.937,2.169,0.992,0.808,1.825,0.91,0.825,2.017,0.926,1.05,0.844,1.673,1.008,1.519,1.532,0.997,1.566,0.923,1.077,1.337,1.069 +NM_173846,0.931,1.125,1.085,1.056,0.909,0.905,1.215,0.981,0.984,1.002,1.032,0.946,0.938,0.89,1.169,1.126,1.074,1.265,1.101,0.993,1.19,1.063,1.039,1.022,1.101,1.093,1.172,0.963,0.861,0.864,1.036,1.11,0.996,0.999,0.986,0.918,0.984,0.979,1.032,1.194,0.877,1.053,0.858,0.951,0.986,1.053,1.177,1.015,0.949,0.857,1.082,0.948,0.981,0.899 +NM_173847,1.005,1.029,0.821,1.114,1.094,1.072,1.243,0.859,1.046,0.945,1.016,1.058,1.04,0.772,1.325,1.075,0.876,0.97,1.113,0.949,1.019,0.944,0.982,1.001,1.12,0.988,0.951,1.044,0.974,0.961,1.076,1.077,0.898,1.144,0.932,1.031,1.174,0.946,1.011,1.071,0.909,0.881,1.026,0.989,1.065,1.011,0.96,1.072,0.947,0.971,1.001,1.038,0.923,0.954 +NM_173848,0.924,1.07,0.978,0.997,1.009,1.12,1.023,0.995,0.978,0.935,1.071,0.997,1.038,1.367,1.225,1.103,0.948,0.98,0.872,0.978,0.871,1.039,1.066,1.128,1.008,0.891,0.945,1.039,0.919,0.911,0.919,1.094,1.051,1.089,1.168,1.044,0.972,1.085,1.063,0.926,0.966,1.0,1.069,0.946,0.985,1.033,1.108,1.051,1.203,1.095,1.172,1.098,1.044,0.956 +NM_173849,0.993,1.266,0.894,0.968,0.93,1.061,0.871,0.969,1.157,1.076,0.924,0.97,1.021,0.996,1.101,0.814,0.935,0.907,0.989,1.048,0.944,1.047,1.041,0.931,0.904,1.072,1.007,0.897,0.872,1.019,0.924,2.21,0.891,1.148,0.883,1.103,0.951,0.92,1.013,1.08,1.077,0.961,1.206,0.893,0.893,0.983,1.007,1.024,0.934,0.941,1.066,0.853,0.97,1.275 +NM_173850,1.077,1.121,1.056,0.981,1.081,1.019,0.91,0.991,1.152,1.211,1.11,1.06,1.123,1.099,1.123,0.929,0.968,1.047,0.986,0.867,0.951,1.018,0.928,1.004,0.938,1.034,0.919,1.044,0.996,1.008,0.949,0.919,0.961,0.965,0.988,0.913,0.971,0.944,1.06,0.897,0.965,1.051,1.095,0.948,1.032,1.062,0.908,1.143,0.984,1.001,1.061,0.966,1.102,0.842 +NM_173851,1.0,1.055,0.995,1.032,1.018,1.072,0.96,0.925,1.025,0.91,1.035,1.035,0.978,0.903,0.838,1.098,1.09,1.039,1.053,1.042,0.949,0.912,1.032,1.126,1.0,0.942,1.0,0.999,1.268,1.095,0.957,0.963,0.981,1.183,0.981,1.026,0.964,1.05,0.971,1.082,1.096,0.874,0.939,1.11,1.065,0.967,0.961,0.914,1.172,1.141,0.982,0.879,1.029,0.975 +NM_173852,0.552,1.219,0.738,0.897,0.534,1.396,0.852,0.42,0.693,0.612,1.291,0.577,0.561,0.428,0.659,1.311,0.655,0.846,0.784,1.294,0.489,0.514,1.437,0.754,1.078,0.731,0.834,0.662,0.486,1.27,0.598,2.065,2.63,1.813,0.258,2.135,1.045,0.558,2.048,1.262,0.671,1.593,0.597,1.809,0.814,0.895,0.84,0.531,0.752,0.605,1.184,1.104,0.764,1.485 +NM_173854,1.076,1.065,1.109,0.916,0.965,0.974,1.026,0.999,1.053,0.908,0.883,1.002,0.985,1.002,0.958,0.869,1.085,0.981,0.958,0.957,1.052,0.943,1.065,1.035,1.032,1.038,1.058,0.994,0.806,0.951,0.976,0.966,1.026,1.001,0.916,0.954,0.862,1.065,1.155,1.058,0.895,0.954,0.958,0.923,1.161,0.991,0.955,0.95,0.971,0.948,1.05,1.131,0.914,1.055 +NM_173855,1.206,0.857,0.892,1.046,0.986,0.983,0.992,1.116,0.912,1.152,0.894,0.86,0.876,1.011,0.912,0.931,0.89,1.062,1.026,1.11,1.025,0.938,1.065,1.014,0.884,1.106,0.968,0.879,1.185,0.952,0.83,1.03,0.894,0.974,0.869,1.089,1.058,1.016,1.018,1.496,1.135,1.04,1.12,1.122,0.929,0.988,1.0,0.907,0.941,0.889,1.036,1.008,1.118,1.42 +NM_173856,1.026,0.896,0.862,0.907,0.954,1.064,1.171,0.935,0.961,0.954,0.921,1.036,0.857,1.139,1.359,1.155,1.003,1.037,0.892,0.933,0.865,1.048,0.976,1.027,1.055,1.001,1.047,1.098,1.645,1.148,1.29,0.85,0.946,1.05,1.009,1.12,0.963,1.184,0.99,0.862,0.958,1.024,1.36,0.922,0.976,1.182,0.972,0.944,1.196,1.008,1.058,1.106,0.928,0.86 +NM_173857,1.085,1.004,1.204,1.152,1.101,1.146,1.097,0.918,1.039,1.308,1.049,0.991,1.11,0.895,1.103,0.91,1.246,0.991,0.834,1.043,0.891,0.876,0.987,1.036,0.837,1.063,0.942,1.1,0.835,1.094,1.07,1.009,0.998,0.879,1.032,1.173,1.067,1.151,1.008,1.122,0.968,0.88,0.896,1.052,0.915,1.066,0.935,0.841,1.182,1.01,0.87,1.001,0.946,0.893 +NM_173858,1.044,1.007,0.948,1.271,1.0,1.024,1.12,0.967,1.029,1.029,0.93,0.909,0.929,0.977,1.104,0.795,1.036,0.94,1.129,1.025,0.908,0.977,1.002,1.032,1.085,1.07,1.034,0.944,0.75,1.035,0.941,0.874,1.045,0.961,1.122,0.908,1.062,1.031,1.004,1.019,1.0,0.915,1.066,1.057,0.866,0.957,0.808,0.966,1.062,0.979,1.033,1.023,1.098,0.969 +NM_173859,1.022,0.866,0.87,0.974,0.933,1.004,0.949,1.074,0.921,1.075,0.967,0.955,0.952,0.98,1.096,1.021,1.03,0.939,1.046,0.918,1.108,1.062,0.881,1.134,0.945,0.985,0.986,0.922,0.993,0.955,1.109,1.015,0.79,0.957,0.938,0.964,0.924,1.167,1.147,0.957,1.127,1.227,0.897,1.034,1.236,0.852,1.051,1.003,1.024,0.948,1.079,1.074,1.043,0.94 +NM_173860,0.998,1.039,0.933,1.112,1.062,0.923,1.016,1.018,0.982,0.993,1.009,1.105,0.965,1.128,0.838,1.026,0.984,1.011,0.97,1.125,0.983,0.993,0.896,1.005,0.933,0.909,0.864,1.002,1.167,1.031,1.078,1.055,1.0,0.903,0.938,1.046,1.123,1.206,0.947,1.021,0.968,1.186,1.09,1.062,0.959,1.026,1.009,1.043,1.005,0.961,1.021,0.945,0.966,1.005 +NM_173872,1.073,1.049,1.142,0.973,1.086,1.119,1.104,1.132,0.954,0.898,1.016,0.964,1.005,0.826,0.876,1.072,1.138,1.055,0.958,0.999,0.859,1.225,0.957,1.151,1.02,0.937,1.202,1.066,0.68,0.988,0.963,0.904,1.059,1.029,1.066,0.98,1.01,0.945,1.069,0.99,0.98,1.218,0.976,1.041,1.0,1.003,1.034,0.878,1.168,1.0,1.072,1.056,1.064,0.869 +NM_174855,0.73,0.603,1.019,0.628,0.861,1.026,0.562,0.434,1.091,1.018,1.016,0.962,0.605,0.573,1.005,1.572,0.767,0.979,1.046,1.01,0.445,0.739,1.577,1.22,0.715,0.661,1.136,0.879,0.418,1.286,0.715,1.066,2.47,1.109,0.153,0.891,1.278,0.855,1.386,1.002,1.104,1.015,0.982,1.044,1.001,1.073,0.821,0.615,1.43,0.719,1.088,0.958,0.778,3.32 +NM_174856,0.9,1.232,0.899,0.932,1.071,1.008,1.096,0.831,1.029,1.002,1.112,0.983,1.064,1.064,0.89,1.067,0.943,1.011,0.95,0.889,1.067,0.875,0.835,1.129,1.059,0.984,0.974,1.064,1.176,0.995,1.169,0.965,0.902,0.976,1.087,1.044,1.018,1.039,1.037,0.97,1.012,0.939,0.842,0.862,1.013,1.015,1.062,0.848,1.069,0.979,0.968,1.024,1.024,0.99 +NM_174858,1.976,2.012,2.0789999999999997,1.916,1.9809999999999999,1.9529999999999998,1.8039999999999998,1.972,1.863,1.88,2.1710000000000003,2.158,2.058,2.068,2.199,2.009,2.054,1.839,1.967,2.629,1.917,2.044,2.165,1.984,1.933,2.166,2.114,2.001,2.012,2.173,1.976,2.112,1.7069999999999999,2.113,1.9020000000000001,1.988,2.0140000000000002,1.8599999999999999,2.354,2.1310000000000002,1.8370000000000002,2.167,2.5140000000000002,2.121,1.9509999999999998,1.802,1.865,2.035,2.049,2.088,1.942,1.972,2.0780000000000003,1.8519999999999999 +NM_174869,1.6909999999999998,1.674,1.9089999999999998,2.091,1.7349999999999999,2.447,1.698,1.561,1.826,1.887,2.287,1.924,1.665,1.358,2.7279999999999998,3.007,1.7959999999999998,1.8719999999999999,2.1719999999999997,1.99,1.75,1.8719999999999999,2.042,1.934,1.71,1.975,2.234,1.68,1.7600000000000002,2.349,1.7690000000000001,2.444,3.093,2.507,1.4060000000000001,2.059,2.3360000000000003,1.9329999999999998,2.6260000000000003,1.897,1.835,2.302,1.889,2.99,1.909,2.117,1.855,1.7879999999999998,2.174,1.846,2.175,1.936,1.977,2.388 +NM_174872,1.097,1.13,1.075,1.074,1.009,0.924,1.016,1.143,1.002,0.984,1.146,0.917,0.988,0.969,0.818,1.178,1.05,0.88,0.941,1.052,0.986,0.978,1.147,0.978,0.929,0.929,0.999,0.904,0.908,0.967,1.026,1.048,1.049,0.994,1.079,1.167,0.919,1.022,0.949,0.957,1.011,1.054,0.895,1.109,1.052,1.043,0.981,1.002,0.971,1.076,1.069,1.171,1.096,0.913 +NM_174878,1.145,0.97,1.005,0.85,1.008,1.244,0.97,0.974,0.895,0.893,1.162,0.943,1.049,0.979,0.918,0.944,1.046,0.945,1.106,0.895,1.167,1.03,0.816,1.122,1.065,1.203,1.118,1.056,0.723,0.956,1.127,1.006,0.872,0.917,1.022,0.883,1.049,1.122,0.964,1.0,0.912,0.984,0.92,1.054,0.955,1.087,1.039,0.88,1.207,1.025,0.901,1.103,1.096,0.967 +NM_174880,0.943,0.837,1.036,1.057,1.079,1.045,0.909,1.074,1.197,0.98,0.987,1.163,0.889,0.92,0.745,0.938,0.937,1.102,0.881,1.03,1.084,0.838,1.007,0.918,1.09,0.935,0.933,0.968,0.902,0.999,0.966,1.059,1.068,1.089,0.894,0.938,1.008,1.001,0.885,1.029,1.169,1.011,1.01,0.865,0.937,0.889,1.007,0.886,0.956,1.07,0.935,0.9,1.087,0.845 +NM_174881,1.059,0.784,0.962,1.111,0.923,1.226,0.686,1.343,1.21,0.701,1.56,0.744,1.386,0.97,1.012,1.539,0.656,1.077,1.422,0.712,0.514,0.909,1.016,0.845,0.748,1.116,0.824,0.977,0.642,0.881,1.106,0.612,1.267,1.815,2.531,0.998,1.082,0.667,1.468,0.528,1.002,0.827,0.712,1.398,0.911,0.9,0.974,1.956,0.779,1.053,0.921,0.632,0.984,1.578 +NM_174882,0.986,1.124,0.95,1.057,1.071,0.879,1.001,1.146,0.999,1.013,1.007,1.131,1.176,1.119,1.009,0.886,1.022,0.97,1.084,0.978,0.972,0.967,0.895,0.963,1.091,0.996,0.883,1.172,0.799,1.046,1.027,0.951,1.106,1.155,0.892,1.011,1.009,0.957,0.97,0.954,1.061,0.895,1.089,0.974,0.923,1.079,1.054,0.986,0.923,1.051,0.991,1.079,0.863,0.905 +NM_174887,0.471,1.286,0.876,0.902,0.673,1.775,0.807,0.631,0.81,0.686,1.656,0.857,0.669,0.594,1.194,1.88,0.703,1.053,0.823,1.558,0.496,0.677,1.414,0.726,0.866,0.587,0.89,0.629,0.666,1.541,0.66,1.407,1.53,1.838,0.34,1.361,1.494,0.721,1.476,0.741,0.789,1.398,0.848,1.179,0.556,1.199,0.879,0.618,0.998,0.564,1.208,0.837,0.697,1.688 +NM_174889,0.751,0.958,1.027,0.772,0.996,1.114,0.569,0.807,1.33,1.112,1.04,1.41,0.957,0.733,0.903,1.782,0.849,0.867,1.736,0.886,0.772,0.984,1.382,1.421,0.655,0.891,1.218,1.182,0.399,0.937,1.052,1.067,2.566,1.301,0.268,0.782,1.058,0.852,1.259,0.569,1.267,1.113,0.614,0.757,1.079,0.901,0.995,0.83,0.991,0.783,1.025,0.945,1.193,1.589 +NM_174890,0.872,0.89,1.086,0.999,0.914,1.007,1.007,1.09,1.224,1.016,1.008,0.903,1.116,1.044,0.934,0.992,0.905,1.079,0.876,0.937,0.983,0.929,1.18,1.031,0.993,1.049,1.072,0.969,0.764,1.071,0.988,1.246,1.051,0.993,0.842,1.023,1.063,0.89,0.964,0.935,1.012,0.957,0.92,1.219,0.926,0.98,0.955,0.959,0.975,1.023,0.945,1.028,0.96,1.097 +NM_174891,1.05,0.906,0.982,0.892,0.91,0.892,0.814,0.933,1.031,0.95,1.071,0.838,1.046,1.001,1.111,1.0,1.096,0.955,1.0,1.059,0.909,1.008,1.049,1.161,0.89,0.966,1.126,0.981,0.958,0.985,0.914,1.415,1.122,1.105,0.754,1.119,0.929,0.979,0.948,0.884,1.093,1.012,0.839,1.068,1.068,0.998,0.802,0.965,0.879,0.895,1.099,0.911,1.152,1.083 +NM_174892,1.065,0.934,1.009,0.831,0.968,0.911,0.837,0.897,0.964,0.981,0.844,1.128,0.996,0.831,0.857,0.959,0.931,0.919,1.054,0.998,0.985,0.92,0.987,1.196,1.038,1.061,0.993,1.015,0.893,1.039,1.0,1.018,1.006,0.932,0.934,1.055,0.928,1.003,1.008,1.029,1.148,1.035,1.025,1.009,1.002,1.1,1.009,1.002,1.091,0.958,1.074,1.146,1.0,1.124 +NM_174898,1.041,0.804,0.918,0.887,0.97,1.199,1.326,1.293,1.067,0.96,1.21,1.011,0.797,1.136,0.796,1.025,1.097,0.921,1.024,1.007,0.879,1.001,0.992,0.935,0.977,1.096,1.107,1.231,1.168,1.03,1.043,1.101,1.134,1.019,1.135,0.866,1.034,0.954,1.111,1.083,0.874,0.997,1.166,1.0,1.038,1.174,1.133,0.957,0.812,0.878,0.961,0.994,0.997,1.199 +NM_174899,0.914,1.099,0.946,1.078,1.172,0.938,1.114,0.932,1.096,1.065,0.926,1.046,0.836,1.017,0.833,1.09,1.042,1.018,1.012,0.874,0.839,1.003,1.039,1.045,0.999,1.077,1.035,0.942,1.103,1.075,0.986,1.184,1.075,0.991,1.049,0.881,0.985,1.084,1.049,0.899,1.064,1.076,0.908,1.306,1.006,0.923,1.035,1.056,0.898,0.972,1.022,0.921,1.034,1.412 +NM_174901,0.912,1.104,1.0,0.848,0.962,0.942,0.909,0.981,0.96,0.8,1.014,0.986,0.975,1.19,1.04,0.794,1.082,0.937,1.09,1.067,1.079,0.965,0.95,0.982,1.032,1.24,1.079,1.04,0.958,0.902,0.914,1.022,0.985,0.979,0.952,1.01,1.055,0.985,1.014,0.94,1.065,1.053,1.234,1.049,0.959,0.988,0.909,1.018,1.066,0.897,1.031,0.98,1.015,1.033 +NM_174902,1.213,0.936,1.22,0.996,1.193,0.75,0.831,1.121,1.028,1.063,0.853,1.256,1.117,1.081,0.916,1.054,1.042,0.795,1.17,0.787,1.074,1.192,0.819,1.171,0.925,1.132,1.287,1.346,0.622,1.01,1.206,1.024,1.193,0.992,0.881,1.205,0.874,0.977,1.004,1.135,1.52,0.917,0.765,0.84,1.277,0.844,0.982,1.027,0.873,1.145,0.85,1.051,1.133,1.153 +NM_174905,0.78,0.898,0.984,0.931,0.874,1.645,0.878,0.888,0.891,0.717,1.549,0.886,1.008,0.931,1.32,1.995,0.882,0.991,1.498,1.314,0.962,0.832,1.288,0.989,0.818,1.019,1.074,0.829,0.856,1.18,0.909,1.051,1.995,2.224,0.698,0.961,1.246,0.844,1.235,0.56,0.906,1.192,0.673,0.983,0.759,0.999,0.928,1.038,0.799,0.805,0.947,0.66,1.064,1.238 +NM_174906,0.985,1.059,0.857,0.912,0.939,0.994,0.997,0.986,0.84,0.952,0.896,1.031,1.051,1.004,1.077,1.04,1.148,1.003,1.153,1.089,1.035,1.022,0.997,1.065,1.025,1.006,0.851,1.084,1.451,1.081,0.973,1.08,0.961,1.011,0.994,0.957,0.92,1.069,1.022,1.144,1.033,0.97,1.122,0.904,0.849,0.923,0.918,1.104,0.97,1.088,0.997,1.03,1.032,0.851 +NM_174908,0.785,0.795,1.017,0.979,1.054,1.258,0.885,0.928,0.936,0.842,1.076,0.803,0.854,0.838,0.903,1.337,0.883,0.803,0.827,1.159,0.762,0.883,0.933,1.018,0.793,0.859,1.073,0.803,0.742,1.0,0.982,1.404,2.937,1.222,0.974,0.896,1.017,1.066,1.232,1.142,0.922,1.007,0.873,1.096,0.926,1.0,1.064,0.926,1.097,0.885,1.003,0.786,0.772,1.624 +NM_174909,0.57,0.853,0.999,0.74,0.884,1.234,0.785,0.544,1.001,0.897,1.403,0.648,0.584,0.718,1.168,2.31,0.758,1.225,1.452,1.287,0.758,0.619,1.209,0.935,0.547,0.697,1.103,0.758,0.773,1.124,0.885,1.076,1.956,1.362,0.382,0.992,1.498,0.659,1.298,0.623,0.999,1.199,1.139,1.155,0.799,1.433,1.018,0.631,1.46,0.716,1.338,0.832,1.187,1.723 +NM_174910,1.025,0.933,1.082,0.984,1.015,1.004,1.193,0.987,0.955,1.037,1.068,0.969,1.058,1.063,0.908,0.947,0.919,0.941,1.053,1.004,0.994,0.922,1.088,1.145,0.926,0.946,1.03,0.863,1.44,0.973,0.991,1.037,1.102,1.013,1.095,1.032,0.916,1.073,0.972,1.057,0.979,0.918,1.276,0.954,0.965,1.05,1.133,1.179,0.858,0.925,0.934,1.088,0.868,1.015 +NM_174911,1.096,0.976,1.027,0.897,1.1,0.93,0.907,0.949,0.946,1.141,1.077,1.079,1.042,0.986,0.778,1.004,0.988,1.021,1.019,0.998,0.971,0.959,1.176,1.128,0.959,1.237,0.957,1.089,1.022,0.909,0.824,0.933,0.978,1.009,1.063,0.991,0.984,0.972,0.894,1.058,0.989,1.165,1.021,1.077,1.062,0.901,0.933,1.11,1.015,0.932,1.054,1.038,1.003,0.877 +NM_174912,0.903,1.012,1.408,0.826,1.485,0.824,0.789,0.814,1.181,1.07,1.037,0.988,0.891,0.977,1.175,1.069,1.072,0.942,1.241,1.136,0.694,0.981,0.878,0.995,0.857,1.01,1.183,1.171,0.763,1.16,1.273,0.952,1.416,1.024,0.853,0.804,1.004,1.171,1.087,0.869,1.465,0.967,0.924,1.017,1.037,0.968,0.948,1.004,0.819,0.978,1.029,0.905,0.881,0.962 +NM_174913,0.998,0.929,0.963,0.925,0.916,1.026,0.704,1.081,1.063,1.161,0.959,0.945,0.849,0.913,0.986,1.041,0.984,0.954,0.977,0.946,1.05,0.875,0.96,1.08,1.043,0.93,1.177,0.965,0.938,1.145,0.958,0.996,0.926,0.981,0.773,1.0,1.044,0.963,1.129,0.974,1.007,0.901,0.942,1.284,1.157,0.974,0.985,0.996,0.984,1.177,1.05,0.784,1.015,0.937 +NM_174914,1.035,0.9,0.807,0.938,1.031,1.14,0.998,1.027,1.015,0.943,0.949,0.959,0.862,0.952,0.958,1.05,0.888,0.957,1.09,0.918,0.972,1.003,1.118,0.978,1.077,0.854,1.118,0.932,0.951,0.979,1.019,0.977,0.912,1.054,0.949,0.952,1.07,1.018,0.808,0.996,1.082,1.139,1.149,1.071,1.029,1.003,0.871,1.006,0.944,0.936,0.915,1.083,1.138,1.003 +NM_174916,1.169,0.96,1.09,0.899,1.052,0.943,0.822,0.906,1.066,1.067,1.0,0.963,0.911,0.957,1.082,1.103,1.096,0.909,1.113,1.154,0.944,0.999,1.098,0.987,0.918,0.963,1.094,0.924,0.928,0.984,0.888,0.939,1.115,0.903,0.838,0.925,1.046,0.996,1.176,1.035,1.024,0.949,1.063,0.959,1.061,0.979,1.011,0.98,0.957,0.96,0.9,0.963,1.015,1.011 +NM_174917,1.021,0.927,0.999,0.874,1.191,1.126,0.905,1.096,1.019,0.99,0.998,0.924,1.093,0.948,0.979,0.928,1.044,1.075,1.056,1.038,0.946,1.048,0.905,1.102,0.955,1.061,1.07,1.186,1.133,1.003,0.988,1.16,1.028,0.882,0.965,1.09,0.958,0.888,1.081,1.049,1.003,1.01,0.952,0.972,1.138,0.951,1.034,1.042,0.898,1.082,1.004,1.017,0.956,1.147 +NM_174918,1.033,0.759,0.946,1.06,1.007,1.05,0.932,0.935,1.016,0.907,0.961,1.019,0.861,0.975,0.845,0.813,0.913,0.95,1.025,0.857,1.058,0.929,0.92,0.937,1.032,1.025,1.085,1.087,0.692,0.942,0.972,1.307,0.966,0.94,0.938,1.017,1.096,0.96,1.359,3.292,0.738,1.001,1.108,1.001,1.113,1.013,1.149,0.999,0.923,0.891,0.875,1.563,0.87,0.957 +NM_174920,0.913,1.029,0.873,0.996,1.085,0.882,0.877,0.876,0.992,1.09,1.02,0.872,1.01,0.854,0.919,0.918,0.865,0.97,0.905,1.075,0.818,0.861,1.012,0.918,0.972,1.118,0.936,0.994,1.201,1.083,0.81,1.476,0.971,1.17,1.008,0.93,0.821,1.072,1.284,1.703,0.897,1.242,0.795,1.132,1.016,0.906,1.014,1.001,0.99,0.984,0.934,0.968,0.803,0.999 +NM_174922,1.074,1.007,1.009,0.943,0.871,1.178,0.699,0.827,0.742,0.981,1.211,0.809,0.845,0.787,1.064,1.392,0.907,1.025,1.291,0.996,1.045,1.119,1.164,1.035,0.901,0.975,0.87,0.716,0.844,1.042,0.972,0.982,0.979,1.027,0.837,0.932,1.002,0.929,1.41,1.175,0.925,1.077,0.965,1.159,1.069,0.996,1.078,1.206,1.113,0.805,1.045,0.807,0.897,1.074 +NM_174923,0.724,1.225,0.866,1.055,0.775,1.067,1.058,0.555,0.738,0.735,1.395,0.607,0.716,0.681,0.922,1.663,0.793,1.292,0.914,1.464,0.686,0.712,1.223,0.624,1.198,0.787,0.839,0.742,1.166,1.546,0.676,2.262,0.972,2.159,0.411,0.973,1.29,0.703,1.756,0.69,0.814,1.481,0.843,1.355,0.745,1.003,0.969,0.64,0.937,0.938,1.051,0.986,0.701,1.159 +NM_174924,0.974,1.415,1.078,0.962,1.016,0.895,0.981,0.946,0.965,0.922,1.243,1.021,1.008,0.892,0.83,0.899,0.974,1.222,1.072,0.941,1.035,0.966,0.953,0.957,2.926,0.836,1.136,1.033,0.734,1.055,1.02,1.003,1.149,1.105,1.084,1.132,1.141,0.906,0.962,0.889,1.005,0.942,1.042,1.083,0.949,1.152,1.111,1.082,0.856,0.862,0.951,0.918,0.927,0.953 +NM_174925,0.693,0.964,0.873,0.81,0.866,1.183,0.673,0.552,0.913,1.251,1.182,1.07,1.2,0.497,0.859,1.399,0.955,1.035,0.785,1.024,0.718,0.898,1.401,0.964,0.787,0.915,1.01,0.887,0.584,1.051,0.766,1.425,1.776,1.404,0.285,1.162,1.025,0.986,1.164,0.687,1.149,1.209,0.91,1.811,0.944,0.879,0.96,0.985,1.15,0.727,1.142,0.826,0.927,1.239 +NM_174926,0.948,1.072,0.971,1.005,1.027,1.079,0.885,0.833,1.054,0.968,1.082,0.889,1.072,0.956,1.056,1.113,0.879,1.086,0.961,1.097,0.922,0.994,1.056,1.026,0.997,0.938,1.148,0.966,1.136,1.036,0.936,1.384,1.0,1.098,0.961,1.092,1.045,0.965,1.029,1.106,0.944,0.947,1.03,0.921,0.97,0.77,1.066,0.949,0.956,0.931,0.977,0.952,1.075,0.965 +NM_174927,0.863,0.92,0.879,0.984,1.067,1.042,0.931,0.968,0.941,1.001,1.149,1.143,1.004,1.048,1.063,1.044,0.981,1.087,1.115,0.993,1.013,0.998,1.051,0.91,0.976,1.034,1.08,1.239,0.855,0.99,1.015,0.955,1.022,0.998,1.127,1.005,1.113,0.843,0.96,0.99,0.908,0.925,1.012,1.024,0.815,1.025,1.051,0.925,0.835,1.176,0.963,0.888,1.251,0.827 +NM_174928,0.75,1.088,1.173,0.773,0.916,1.054,0.759,0.727,0.961,0.965,0.996,1.327,0.798,0.698,0.819,1.496,0.959,0.867,1.212,0.861,0.731,0.964,1.103,1.2,0.717,0.792,1.392,0.919,0.543,1.06,0.934,1.48,2.097,1.403,0.479,1.215,0.868,1.025,0.928,1.737,1.097,1.235,0.828,0.799,0.939,1.053,1.073,0.838,0.895,0.776,1.03,1.043,1.036,1.351 +NM_174931,0.974,1.027,0.921,0.839,1.047,1.023,0.941,0.904,1.144,0.959,1.056,0.861,0.906,1.067,0.888,0.97,0.887,1.008,0.697,1.064,0.916,0.988,0.858,1.036,0.876,0.923,1.058,1.017,1.191,1.0,0.926,1.108,1.248,1.011,0.841,1.006,0.869,0.912,1.247,1.004,1.092,1.02,0.864,1.07,0.95,1.014,1.044,0.854,0.916,0.887,0.898,0.915,0.807,1.089 +NM_174932,1.14,1.04,0.997,1.0,1.007,0.983,1.324,0.772,1.051,0.942,1.009,0.917,0.979,1.142,1.125,1.022,0.95,0.837,1.048,1.037,0.923,1.053,0.991,0.891,0.92,0.93,1.083,0.982,1.264,1.05,0.882,0.973,0.845,1.013,0.951,1.136,0.921,0.93,1.105,1.229,0.986,0.976,1.223,0.943,1.086,1.062,1.006,0.961,1.05,1.013,1.005,0.928,0.99,1.008 +NM_174934,0.892,1.079,1.037,0.858,0.991,1.096,0.819,0.85,1.049,0.883,0.898,0.997,0.764,0.885,0.806,1.001,1.12,0.849,0.94,0.955,0.744,0.954,0.99,1.005,1.003,0.9,1.266,0.884,0.754,1.264,1.001,1.115,1.195,1.208,0.74,0.924,0.728,1.111,1.071,0.895,1.087,1.179,0.941,0.87,0.984,0.962,1.093,0.897,1.074,0.914,0.893,0.898,0.903,1.08 +NM_174936,0.86,0.902,0.863,1.226,1.04,1.117,0.998,0.803,0.948,0.894,1.133,0.935,0.692,0.724,1.032,1.989,0.875,1.098,1.107,1.438,0.759,1.058,2.778,0.843,0.887,0.837,1.642,0.945,0.787,0.977,0.889,2.305,2.728,0.884,0.761,1.595,1.481,0.88,1.546,1.243,0.813,0.924,1.045,1.273,0.97,2.146,1.212,0.969,1.192,0.911,2.31,0.922,0.872,1.706 +NM_174937,0.881,0.891,0.883,1.024,0.912,0.928,1.034,1.023,1.046,1.394,0.979,0.913,1.008,1.052,1.069,0.926,1.288,1.269,0.995,0.978,1.081,1.0,0.858,1.154,1.082,1.083,1.125,0.99,1.0,0.995,1.14,1.099,1.124,0.983,0.967,1.121,0.965,1.052,0.984,0.973,1.349,0.925,0.959,1.046,1.133,1.128,1.084,0.998,0.988,1.111,1.011,1.092,1.013,0.864 +NM_174938,0.878,1.001,0.911,0.852,0.812,1.588,1.058,0.785,0.813,0.812,1.592,0.886,0.811,0.748,1.526,1.313,0.79,1.203,0.793,1.565,0.834,0.865,1.961,0.894,1.016,0.93,0.975,0.809,0.75,1.211,0.952,1.01,0.945,1.684,0.94,0.888,1.605,0.796,0.992,0.882,0.943,2.031,1.036,1.218,0.718,1.08,1.063,0.837,2.318,1.011,1.214,1.02,0.833,0.817 +NM_174940,1.909,1.118,0.813,1.049,1.1,1.005,0.684,1.116,2.598,0.598,0.715,1.595,1.59,0.855,1.113,1.13,0.795,0.998,1.538,0.858,1.242,1.661,1.165,0.934,0.96,2.675,1.051,1.134,0.691,1.336,1.737,1.116,1.533,1.761,3.284,0.618,0.758,1.549,0.939,0.65,0.896,0.839,0.592,0.947,1.089,0.705,1.051,1.839,0.611,1.712,0.861,0.719,0.918,0.84 +NM_174941,0.656,1.084,0.868,0.902,0.908,1.014,1.228,0.816,0.959,0.809,1.003,0.874,0.822,0.877,1.078,1.108,0.812,0.98,0.889,0.882,0.758,0.715,1.852,0.969,1.073,0.735,0.982,0.801,0.592,2.247,0.83,0.922,1.282,1.98,0.863,1.902,1.593,0.903,2.05,1.064,0.946,1.403,0.802,1.005,0.834,0.836,0.807,0.782,0.808,0.697,1.413,1.302,1.029,1.117 +NM_174942,0.783,1.032,0.959,0.989,0.943,1.195,0.713,0.926,1.047,0.935,1.12,0.931,0.959,0.873,0.986,1.056,0.877,1.068,0.996,1.135,0.971,1.08,1.047,1.031,1.012,0.895,1.004,1.024,1.171,1.06,0.987,1.094,1.061,0.897,0.872,1.182,1.124,0.873,1.424,1.234,0.926,1.153,0.864,1.094,0.94,0.923,0.965,0.9,0.997,0.933,1.547,0.958,0.877,1.083 +NM_174943,1.008,1.058,1.065,1.086,0.975,1.071,1.203,1.051,1.167,0.768,0.919,0.983,1.094,1.09,1.156,0.991,1.174,0.979,1.073,1.033,0.873,1.0,0.955,1.025,0.795,0.946,1.153,1.119,1.671,1.019,1.223,0.989,0.943,1.045,1.037,1.028,1.112,1.115,0.905,1.002,0.857,1.238,0.904,0.925,0.949,0.953,1.106,0.965,1.031,1.171,0.851,1.025,0.886,1.243 +NM_174944,1.204,1.011,1.101,1.008,0.872,1.125,1.063,0.976,0.985,1.007,0.964,1.144,1.017,0.873,1.203,0.831,0.933,1.062,0.948,0.939,1.053,0.976,1.044,0.985,1.04,1.041,0.941,1.127,0.755,1.123,0.921,1.019,0.974,0.941,0.973,0.975,1.042,0.942,1.086,1.05,0.998,0.977,1.047,1.014,0.992,1.152,1.136,1.025,0.992,0.936,0.915,0.864,0.871,0.955 +NM_174945,0.944,0.934,1.031,0.991,0.969,0.982,1.076,0.879,0.931,1.011,0.997,1.129,0.883,1.053,0.821,0.971,0.938,0.94,1.056,0.886,0.994,1.0,1.131,0.969,0.98,1.003,1.099,1.079,0.77,1.1,1.036,1.046,1.136,1.105,0.815,0.859,0.926,1.059,1.152,1.084,1.0,0.853,0.851,1.109,0.963,0.963,1.001,1.008,1.169,0.949,1.013,0.984,1.079,0.959 +NM_174950,0.986,0.893,1.208,0.912,0.929,1.108,0.782,1.002,1.002,0.902,0.818,1.159,1.019,0.962,1.074,1.038,0.952,0.948,0.88,1.065,0.954,0.897,1.087,1.027,0.944,1.02,1.211,1.085,0.53,1.051,1.026,1.141,1.362,1.074,0.94,0.915,0.934,1.13,1.042,1.042,0.929,0.921,0.786,0.893,1.059,1.023,1.001,0.935,0.908,0.905,0.996,0.909,0.974,1.004 +NM_174951,0.961,1.042,1.003,1.061,0.984,1.009,0.785,1.154,1.057,1.019,1.176,1.179,1.027,0.899,1.045,0.983,0.966,0.966,0.916,0.982,0.917,0.979,0.896,0.976,1.013,1.014,1.095,1.007,0.737,0.945,1.04,1.039,0.871,1.184,0.931,1.046,1.096,0.967,1.132,0.924,0.956,1.076,0.978,1.014,0.987,0.997,0.973,0.943,1.071,1.119,1.103,0.873,1.013,1.035 +NM_174952,1.017,0.971,1.12,1.018,0.926,0.974,0.983,1.095,1.031,1.05,0.904,1.085,1.176,1.013,0.871,1.021,0.974,0.94,0.953,1.011,1.099,1.039,0.914,1.11,1.029,1.112,0.929,0.983,1.008,0.978,0.887,0.907,1.02,0.923,0.925,0.998,1.037,1.098,1.026,1.134,0.98,0.91,1.049,1.018,1.0,0.935,0.998,1.077,1.069,0.985,0.998,1.145,0.985,0.864 +NM_174958,0.437,1.235,0.537,2.322,0.544,3.801,1.726,0.519,0.534,0.372,2.967,0.499,0.516,0.462,1.143,2.448,0.502,2.376,0.531,1.962,0.459,0.373,3.143,0.528,3.135,0.412,0.601,0.457,4.059,3.941,0.432,0.627,0.588,3.882,0.514,0.754,2.63,0.609,3.481,1.208,0.499,5.008,1.45,1.663,0.539,2.427,0.859,0.545,0.852,0.509,2.839,0.97,0.48,0.67 +NM_174959,0.849,1.083,0.979,1.0,0.936,0.937,0.968,1.168,0.982,1.031,0.98,0.998,0.832,0.901,0.838,1.13,0.99,1.079,0.947,1.018,1.032,1.0,1.052,1.085,1.016,0.94,0.959,0.893,1.241,1.032,0.896,0.99,0.991,0.982,1.061,0.912,0.98,1.075,0.998,0.914,0.923,1.007,1.362,1.002,1.176,0.94,1.024,0.988,1.081,0.963,1.079,0.9,0.93,1.109 +NM_174961,0.911,0.982,0.996,0.978,0.9,0.857,1.112,1.261,0.899,0.984,0.962,0.999,1.03,1.054,1.001,0.941,1.142,0.942,1.06,1.143,1.066,0.992,1.285,0.945,0.963,0.984,0.956,0.927,1.327,1.121,0.948,1.023,1.06,0.899,1.059,0.804,0.969,1.042,4.249,1.01,0.801,0.963,1.126,1.055,0.964,1.08,0.999,1.091,1.053,0.916,0.966,0.951,1.04,0.883 +NM_174962,1.012,0.955,1.03,0.971,0.966,1.105,0.915,1.092,1.104,1.072,0.968,0.889,0.912,1.192,0.853,0.955,1.121,1.02,0.953,0.896,1.044,1.044,0.958,0.922,1.029,1.005,1.022,0.983,1.021,0.975,1.043,0.848,0.942,0.835,0.914,0.974,0.943,0.888,0.884,0.946,1.004,0.878,1.005,0.94,1.004,0.92,1.068,0.967,0.921,0.926,1.142,1.061,1.013,0.99 +NM_174970,0.935,1.149,0.862,0.986,0.963,0.885,0.855,0.942,1.005,0.796,0.938,1.013,0.967,0.878,0.858,1.01,0.822,0.989,1.025,0.924,1.025,0.878,0.979,1.036,1.153,0.847,1.001,0.9,0.849,1.036,0.86,1.997,1.187,1.191,0.891,1.017,0.947,0.997,1.143,1.092,0.877,1.059,0.802,1.153,0.974,1.007,1.048,0.875,0.925,0.956,0.914,1.003,0.939,1.349 +NM_174975,0.98,1.149,1.049,1.063,0.944,0.978,0.88,0.936,1.156,0.981,0.877,0.992,1.034,0.962,1.004,0.991,0.778,1.005,1.148,1.088,1.071,0.959,0.926,1.002,1.036,0.966,1.016,1.143,1.043,0.841,0.942,0.95,1.101,0.86,1.102,0.978,1.003,1.043,1.02,1.02,1.026,0.934,1.087,0.959,0.837,0.954,1.07,1.01,0.948,0.991,0.944,0.975,1.0,0.971 +NM_174977,0.905,1.03,0.9,0.962,1.036,0.986,0.924,0.993,1.032,1.144,0.959,1.003,0.989,1.031,1.27,1.004,1.0,0.977,0.91,0.967,0.899,0.938,1.024,0.92,1.09,0.908,1.024,0.953,0.998,1.1,0.926,1.096,1.031,1.263,1.09,0.98,1.0,1.147,1.053,0.857,1.065,1.056,0.898,1.05,1.095,0.968,0.935,1.027,1.28,1.064,0.993,1.214,1.092,1.035 +NM_174978,1.022,0.932,1.022,0.946,0.976,0.983,1.06,1.091,1.069,0.776,0.917,0.977,1.071,1.04,1.116,1.119,1.057,0.873,0.962,0.947,1.081,0.98,1.042,0.888,0.949,1.093,1.025,0.844,1.103,0.979,1.066,1.038,0.932,1.068,1.115,0.962,0.992,0.919,1.016,0.862,1.099,0.964,1.102,1.043,0.928,1.0,0.962,0.972,0.915,1.126,0.984,0.922,1.027,0.988 +NM_174979,0.948,0.912,1.323,1.029,1.0,1.009,0.823,0.691,1.379,0.945,0.853,0.712,0.879,0.872,0.986,1.159,1.465,1.062,1.314,0.891,0.814,0.773,0.902,1.054,0.761,1.13,1.184,1.019,0.933,1.265,1.038,1.184,1.43,1.214,0.875,0.734,0.927,0.893,1.271,0.681,1.52,0.99,0.758,1.546,1.318,0.837,1.169,0.89,0.961,1.733,0.882,0.841,0.886,0.749 +NM_174980,0.93,0.941,1.081,0.937,1.103,1.01,1.058,0.964,1.038,0.9,0.897,1.037,0.954,0.878,0.976,0.961,1.134,1.053,0.97,0.937,1.018,1.074,1.112,0.937,1.002,1.184,1.045,1.075,0.844,1.069,1.035,1.006,0.775,1.087,0.998,0.992,0.954,0.989,1.013,0.903,0.995,1.08,1.281,1.018,1.008,0.887,1.063,0.992,1.064,0.995,0.932,0.902,0.966,0.991 +NM_174983,0.869,0.876,0.756,0.95,0.727,0.923,0.788,0.796,0.829,1.016,1.091,0.817,0.722,0.634,0.886,1.089,0.863,0.893,0.94,0.997,0.966,0.802,1.211,0.958,0.927,1.109,0.901,0.842,0.716,1.119,0.748,1.36,1.496,1.03,0.72,1.185,0.994,0.87,1.54,1.908,0.92,1.042,0.989,1.291,1.007,0.764,0.99,0.821,1.042,0.899,1.019,1.106,1.204,1.413 +NM_175038,1.041,1.012,1.449,1.007,0.981,0.927,0.903,0.922,0.832,0.966,1.007,1.142,1.025,0.949,0.818,1.016,1.018,1.023,0.917,0.991,1.239,0.99,0.945,1.119,0.859,0.943,1.586,1.262,1.0,0.952,1.037,0.954,1.078,0.955,1.131,0.982,0.91,0.999,1.021,0.903,0.934,0.954,0.96,0.843,1.22,0.912,1.22,1.039,1.204,1.502,1.045,1.313,1.458,0.877 +NM_175039,0.554,1.4,0.707,0.646,0.708,1.456,0.702,0.413,0.804,1.0,1.891,0.789,0.522,0.426,0.968,2.407,0.506,0.837,0.694,1.654,0.447,0.445,2.052,0.972,0.472,0.743,0.71,0.66,0.338,1.83,0.502,2.443,0.766,0.925,0.337,2.077,1.531,0.732,2.006,1.465,0.938,1.61,1.768,2.247,0.798,2.68,1.355,0.537,1.672,0.56,1.861,1.622,0.661,1.236 +NM_175052,2.035,1.832,2.081,2.239,2.0140000000000002,2.202,2.152,1.888,1.944,1.992,1.8330000000000002,1.9869999999999999,2.175,2.0220000000000002,2.416,1.782,2.112,2.033,1.895,1.938,2.162,1.931,2.0180000000000002,2.108,1.897,2.023,2.0140000000000002,2.016,1.9580000000000002,2.371,1.7469999999999999,1.889,2.231,1.9729999999999999,2.035,1.947,1.99,1.853,2.076,2.429,1.78,2.115,2.087,1.9619999999999997,1.873,2.267,2.2279999999999998,2.151,1.988,2.027,1.948,1.9,2.206,2.088 +NM_175053,0.953,1.029,1.016,0.901,0.872,0.981,0.872,1.01,1.06,0.997,1.078,1.109,1.023,0.884,0.901,0.951,1.017,1.002,0.845,0.954,1.041,0.79,1.018,1.086,1.056,0.981,1.168,1.013,1.118,1.008,1.076,0.931,1.137,0.988,1.158,1.197,0.977,1.06,1.104,0.939,0.965,0.912,1.174,0.985,1.034,0.793,1.021,0.917,0.964,1.074,0.932,1.023,1.063,1.041 +NM_175054,0.905,1.0,1.03,0.995,1.07,1.002,1.333,1.194,1.059,1.101,1.077,0.862,1.121,1.056,0.983,1.19,0.964,0.889,0.93,1.177,1.16,1.067,0.978,0.929,0.985,1.047,1.038,1.051,0.913,1.109,1.172,0.976,0.924,1.082,1.044,0.924,0.898,0.929,0.895,1.031,0.945,0.975,1.348,0.953,0.996,1.183,1.055,0.975,1.064,1.0,1.152,0.932,0.956,1.073 +NM_175055,1.078,0.863,0.998,1.015,1.032,1.048,0.96,1.107,0.959,0.998,0.883,0.975,1.077,1.076,1.092,0.991,1.003,1.023,0.987,0.88,0.945,0.995,0.856,1.051,0.951,1.014,1.11,0.936,1.097,0.99,1.168,1.034,0.978,1.044,1.186,1.124,0.972,1.18,1.201,0.892,1.091,1.088,1.221,0.894,1.076,0.963,0.974,1.04,1.113,0.948,0.972,0.913,1.017,1.023 +NM_175056,1.141,1.126,0.912,1.03,0.92,0.866,0.966,0.945,0.967,1.099,0.987,1.14,0.985,0.89,1.05,1.071,0.979,0.914,1.141,0.914,1.083,0.895,1.052,0.98,0.891,1.017,1.008,1.081,0.893,0.998,0.928,1.069,1.042,1.021,1.009,1.085,1.098,0.982,0.96,0.994,0.988,1.056,1.128,0.969,1.036,0.992,0.978,1.008,0.923,1.039,1.167,0.993,0.992,0.928 +NM_175057,0.915,0.864,1.041,0.901,1.059,1.128,1.043,1.0,0.998,1.04,1.132,0.926,1.132,1.142,0.99,1.094,1.04,0.938,0.949,0.919,0.971,0.909,1.181,0.975,0.841,0.846,0.888,0.935,1.115,1.016,1.068,0.756,0.922,0.792,1.205,0.936,1.083,1.032,0.984,1.033,1.039,0.964,1.146,0.899,1.119,1.132,0.92,1.003,0.885,1.025,0.971,1.112,0.81,1.041 +NM_175058,0.877,0.701,1.675,0.819,0.869,1.397,0.962,0.687,1.705,1.008,0.965,0.716,0.679,0.898,0.99,1.376,1.243,1.118,0.839,1.282,0.573,1.298,1.196,1.079,0.665,0.906,1.271,1.026,0.975,1.306,1.102,0.647,0.919,0.95,0.572,0.723,1.042,0.83,1.177,0.603,1.157,1.128,0.719,0.727,1.244,1.133,1.082,1.011,1.161,0.87,1.454,0.829,0.76,1.051 +NM_175060,0.715,1.041,0.786,0.623,0.72,0.931,1.049,0.621,0.754,0.842,1.216,0.595,0.682,0.549,0.702,1.042,0.67,0.764,0.895,0.702,0.734,0.767,1.432,0.8,1.197,0.735,0.762,0.88,0.693,1.463,0.706,2.59,1.626,2.084,0.672,1.539,0.923,1.085,1.866,1.568,0.942,2.27,0.707,0.998,0.893,1.027,1.12,0.712,0.892,0.829,1.208,2.123,0.929,1.481 +NM_175061,0.842,1.072,1.022,0.84,0.926,1.204,1.15,0.771,1.102,0.786,1.052,1.029,1.032,0.748,0.986,1.054,0.921,0.86,0.909,1.059,0.823,0.881,0.996,1.047,0.92,0.901,1.106,1.054,0.814,1.306,1.077,1.767,1.422,1.392,0.927,0.88,0.969,0.843,1.162,1.114,0.912,1.338,0.723,0.894,0.881,1.139,0.909,0.802,0.826,0.944,1.005,1.341,1.018,1.411 +NM_175063,0.582,1.271,0.779,0.753,0.531,1.128,0.745,0.367,0.692,0.703,1.722,0.592,0.551,0.356,0.85,1.793,0.622,0.87,0.85,1.209,0.375,0.462,1.334,0.664,0.828,0.681,0.512,0.6,0.502,1.407,0.499,1.498,2.093,2.083,0.199,1.079,1.411,0.489,1.944,1.487,0.691,1.333,0.862,1.796,0.837,1.148,1.196,0.557,0.985,0.633,1.15,0.999,0.826,1.866 +NM_175064,0.903,0.999,1.055,1.108,0.955,0.953,1.05,0.876,1.018,1.01,1.033,1.065,1.086,0.935,0.852,1.069,0.939,1.045,0.919,0.916,1.054,1.03,0.948,0.985,1.033,0.937,0.879,1.076,1.213,1.027,0.858,0.99,1.087,1.05,0.832,0.885,1.019,0.843,0.977,0.936,0.979,1.042,1.017,1.071,1.129,1.003,0.932,1.027,1.03,1.06,1.091,1.053,0.855,0.833 +NM_175065,1.071,1.057,1.062,1.021,0.972,1.012,0.964,1.076,0.976,0.993,0.995,1.002,0.965,0.988,0.936,1.049,1.034,0.962,1.117,1.043,1.085,1.066,0.997,0.999,1.014,1.003,0.921,0.936,1.126,1.052,0.973,0.97,1.024,0.952,0.954,1.157,1.078,1.031,0.955,1.081,0.945,1.07,1.165,0.912,0.909,0.859,0.963,1.14,1.14,0.964,1.117,0.986,1.007,1.001 +NM_175066,0.907,0.875,1.148,0.762,1.057,0.806,0.733,0.544,1.382,1.241,0.963,0.887,0.66,0.644,0.898,0.821,0.926,0.796,0.863,0.93,0.741,0.885,1.569,1.23,0.806,0.841,1.13,0.837,0.721,1.256,0.848,1.284,1.556,1.0,0.533,1.532,0.826,1.031,1.073,0.895,1.317,1.026,0.853,1.849,1.108,1.082,1.117,0.769,1.284,0.859,0.882,1.19,0.955,1.73 +NM_175067,1.215,1.004,1.036,0.965,1.156,1.156,0.949,1.189,0.965,0.899,0.927,1.021,0.926,0.883,1.174,1.086,0.939,0.871,0.962,0.918,1.041,0.95,1.034,0.937,0.993,1.135,0.983,1.026,0.989,0.929,0.904,0.979,1.024,0.853,0.907,1.059,1.121,1.055,1.107,1.132,0.903,0.996,0.99,0.995,1.08,1.036,1.05,1.076,1.019,0.912,0.951,0.922,0.922,0.969 +NM_175068,1.015,0.933,0.947,1.141,0.974,0.963,1.107,0.935,1.08,0.888,1.076,1.066,1.126,0.853,0.95,0.962,0.893,1.057,1.078,1.008,1.156,0.985,0.87,1.052,1.103,1.152,0.9,1.199,0.988,0.93,1.027,0.821,0.866,0.909,1.178,1.099,0.931,0.96,0.958,0.979,0.805,1.016,1.278,0.954,0.91,1.045,1.04,0.914,0.9,0.99,0.945,0.881,1.191,0.967 +NM_175071,0.824,0.816,1.077,0.898,0.882,1.073,0.752,0.664,0.983,1.009,1.225,0.878,0.761,0.785,1.083,1.357,0.897,0.826,1.129,0.948,0.749,0.742,1.012,1.17,0.876,0.862,1.393,0.746,0.67,1.182,0.891,1.044,1.626,1.344,0.435,0.852,1.134,0.827,1.075,0.808,1.003,1.03,0.817,1.506,0.907,1.039,0.855,0.772,0.992,0.767,1.03,1.233,1.019,2.562 +NM_175075,0.923,0.928,1.001,1.237,0.988,0.979,0.869,0.911,1.032,1.089,0.999,1.012,0.99,0.965,0.925,0.951,1.084,1.212,0.979,0.864,0.943,1.04,0.991,1.053,1.001,1.046,0.897,1.102,0.899,0.995,1.028,1.167,0.988,1.052,1.136,1.037,0.835,1.1,0.941,0.943,0.947,0.882,0.922,1.038,1.069,0.918,0.972,1.114,1.103,1.076,0.99,1.076,1.078,0.951 +NM_175077,0.999,1.022,0.956,1.123,0.999,1.014,1.008,1.008,0.723,0.894,0.814,0.906,0.994,0.962,0.93,1.002,1.012,0.991,1.177,1.007,0.98,0.964,1.084,0.866,1.01,0.932,1.086,0.888,0.8,1.111,1.012,1.033,0.914,0.992,0.954,1.151,1.025,0.919,1.207,0.948,1.039,0.967,1.055,0.877,0.956,0.952,0.934,0.945,1.028,1.022,1.001,0.927,1.211,1.341 +NM_175078,1.023,1.167,0.902,1.178,0.983,0.897,1.042,1.04,1.217,1.255,1.122,1.188,0.939,1.082,0.927,0.902,0.959,1.001,0.91,0.948,1.203,1.004,0.915,1.149,1.018,1.107,1.066,0.776,1.181,0.979,0.947,0.804,0.835,1.061,0.954,1.043,1.076,1.013,1.071,0.864,0.992,0.746,1.01,1.003,1.009,1.152,0.941,1.115,1.046,1.018,0.947,0.755,0.996,1.04 +NM_175081,1.769,1.923,2.023,2.0869999999999997,1.8820000000000001,2.0789999999999997,1.995,1.972,2.029,1.974,2.108,2.0949999999999998,2.059,2.036,1.9220000000000002,2.092,1.943,2.152,2.252,1.9749999999999999,2.091,1.919,1.954,1.9859999999999998,2.04,1.977,1.907,1.9649999999999999,1.6320000000000001,2.04,1.976,1.88,2.162,1.907,2.032,2.056,2.2,1.746,2.059,1.9209999999999998,1.8290000000000002,1.979,2.029,2.0140000000000002,1.995,2.129,1.991,2.0149999999999997,2.49,2.178,1.986,2.276,2.0069999999999997,2.0149999999999997 +NM_175085,0.982,1.098,0.951,0.911,0.959,1.058,0.842,0.847,0.951,1.195,0.992,0.855,0.771,0.886,0.979,1.153,0.926,1.078,1.062,1.076,0.875,0.751,1.284,1.117,0.77,0.816,1.094,0.898,1.083,0.953,0.979,1.116,1.538,1.085,0.908,1.07,1.042,0.791,1.439,1.085,1.021,1.006,0.934,1.121,0.892,1.036,0.93,0.914,1.185,0.93,0.984,0.997,1.079,1.55 +NM_175566,1.162,1.025,0.956,1.081,1.014,0.94,0.988,0.996,0.967,1.088,1.0,1.014,0.991,1.08,1.103,0.928,0.957,1.096,0.922,1.028,1.023,1.022,1.119,1.033,1.222,0.922,1.078,1.039,1.57,1.066,1.044,0.891,0.898,0.897,0.999,0.903,1.034,0.996,0.998,0.996,1.032,0.935,1.285,0.974,1.027,1.057,1.014,0.925,1.105,0.953,1.077,0.985,0.874,1.021 +NM_175567,0.516,1.134,0.503,0.774,0.418,1.972,0.756,0.584,0.543,0.435,1.403,0.492,0.561,0.408,0.953,1.491,0.561,0.999,0.568,1.086,0.513,0.495,1.015,0.582,1.063,0.526,0.595,0.449,0.904,1.751,0.482,1.499,0.678,1.634,0.467,1.006,1.146,0.572,1.276,1.557,0.549,1.677,1.052,0.791,0.439,0.911,1.336,0.476,1.007,0.456,1.199,0.637,0.503,0.942 +NM_175569,1.871,0.599,2.531,1.056,3.72,0.659,0.611,2.47,2.878,2.255,0.665,2.409,1.379,1.335,1.703,1.157,1.829,1.68,4.088,0.602,1.743,2.665,0.567,2.768,0.641,2.085,2.257,2.968,0.459,0.617,2.376,0.66,1.185,0.587,2.289,0.883,0.586,2.411,0.492,0.773,2.611,0.567,0.686,0.635,2.388,0.688,1.932,2.828,0.645,2.38,0.933,1.055,2.778,0.681 +NM_175570,0.978,1.018,1.213,1.014,1.147,1.125,1.033,0.91,0.939,1.13,1.042,0.859,0.919,1.039,0.876,0.991,0.931,1.106,0.889,1.083,1.007,0.865,0.892,1.148,0.957,0.957,0.882,0.959,1.155,0.957,0.877,0.993,1.07,0.946,1.189,1.268,1.035,0.918,1.108,1.02,1.025,1.005,0.883,0.886,1.014,1.092,0.949,1.09,0.907,0.893,0.925,1.186,0.811,0.932 +NM_175573,0.632,0.692,1.163,0.56,0.729,0.9,0.609,0.777,1.032,0.948,0.694,0.738,0.714,0.614,1.086,2.228,0.886,0.811,1.565,0.572,0.534,0.889,1.548,1.201,0.474,0.799,1.245,0.87,0.456,0.815,1.307,0.967,4.564,1.275,0.483,1.159,0.791,0.999,2.339,1.114,0.967,0.877,0.46,1.731,1.17,0.56,1.004,0.944,1.021,1.086,0.898,1.015,0.882,4.043 +NM_175575,1.052,1.026,1.043,1.112,0.959,0.992,0.967,0.957,0.949,1.159,1.08,0.891,0.912,1.141,0.953,1.111,0.986,1.062,1.395,1.036,1.146,0.999,1.119,1.044,0.995,0.985,0.936,1.145,1.377,0.888,1.02,0.945,1.086,0.935,1.046,1.156,1.205,0.981,1.023,0.973,0.938,0.946,1.054,1.066,1.037,1.067,1.074,1.127,1.06,1.153,0.928,1.028,0.955,0.93 +NM_175607,0.932,1.105,0.992,0.958,1.005,0.999,0.993,1.072,1.006,1.127,1.179,0.933,0.958,0.912,0.906,0.856,1.042,1.151,0.887,0.909,1.088,0.976,0.975,0.864,0.977,0.946,1.015,1.014,0.888,0.964,0.945,1.066,0.941,1.003,0.998,1.07,1.052,0.879,0.948,0.937,1.038,1.016,1.151,0.901,1.041,1.192,0.981,1.063,1.024,1.007,1.12,1.076,0.99,0.906 +NM_175610,1.275,0.974,1.753,0.627,1.387,0.925,0.538,0.699,2.162,1.812,0.849,0.991,0.716,1.403,0.877,0.91,1.029,1.305,1.68,0.892,0.9,1.372,1.424,1.536,0.451,1.061,2.033,1.381,0.435,1.062,1.872,0.926,1.6,1.019,0.626,0.627,0.958,1.248,1.18,0.573,1.731,1.038,0.751,0.645,1.699,0.727,1.006,1.363,0.663,1.103,1.171,0.966,1.087,1.153 +NM_175611,1.003,1.07,0.905,1.068,0.936,0.892,1.145,0.983,1.036,1.052,0.965,0.943,1.192,1.007,0.875,1.02,1.029,1.007,1.07,0.96,1.028,1.064,1.093,0.895,1.06,1.012,0.975,1.001,1.071,0.849,1.068,1.108,1.068,1.059,1.066,0.864,1.218,0.973,0.983,1.099,0.909,0.963,0.996,0.97,1.003,0.966,0.942,1.059,1.051,0.992,0.948,0.925,0.992,1.035 +NM_175612,1.003,1.037,0.966,1.112,0.991,0.953,0.975,1.003,0.939,0.91,0.942,1.0,1.062,0.951,1.01,1.043,1.113,1.061,0.977,0.961,1.118,1.075,0.978,1.001,1.037,1.036,1.087,0.985,0.95,1.008,1.036,0.926,1.084,0.942,1.055,0.963,1.04,0.896,1.0,0.998,0.918,0.872,1.077,1.025,1.141,1.056,1.075,1.129,1.0,1.026,0.95,1.054,0.948,0.855 +NM_175613,0.972,1.038,1.007,1.007,0.94,0.95,0.947,0.992,1.023,0.981,1.056,1.036,0.917,1.022,1.063,0.923,1.025,0.982,0.998,0.911,0.989,1.002,0.948,0.887,1.007,1.055,1.141,0.907,1.031,1.036,0.978,1.155,1.02,1.128,0.94,1.067,0.984,1.01,1.035,1.067,0.897,0.954,0.861,0.943,1.03,0.993,1.052,0.946,0.837,0.963,1.069,0.932,1.066,0.908 +NM_175614,1.056,0.791,1.153,0.979,1.138,0.799,0.44,0.455,1.56,1.151,1.0,0.841,0.912,0.818,0.916,1.293,1.123,1.161,1.401,0.747,0.565,1.147,1.225,0.992,0.66,1.617,1.276,1.183,0.385,1.031,1.081,1.072,0.952,1.27,1.49,0.736,1.013,1.24,1.0,0.589,1.202,0.982,0.529,1.116,1.239,0.7,1.217,1.711,0.706,1.0,0.839,0.71,0.978,1.117 +NM_175616,1.008,1.0,1.105,0.923,1.005,0.943,1.134,1.152,1.004,0.923,1.172,1.1,1.082,1.375,1.204,1.035,0.923,0.831,0.957,0.968,0.977,0.788,0.838,0.941,0.988,0.953,0.971,0.969,1.155,1.009,0.912,0.934,0.921,0.868,0.955,1.0,1.028,0.971,0.939,1.067,0.912,1.166,1.252,0.906,1.101,1.107,1.041,0.938,1.081,1.049,1.188,0.935,0.918,0.976 +NM_175617,1.071,1.14,1.174,0.879,0.979,1.011,0.971,0.973,1.136,1.072,1.017,0.946,1.098,1.044,0.986,1.151,0.887,0.884,0.989,1.157,1.027,1.031,0.996,0.941,1.07,1.016,0.874,1.093,1.129,1.032,1.072,1.075,1.031,0.848,1.204,0.959,0.975,1.013,0.931,1.054,1.003,1.018,1.201,0.918,0.913,0.875,0.918,0.899,0.938,1.155,0.977,1.009,1.016,0.996 +NM_175619,0.909,1.019,0.991,0.933,0.947,1.023,0.931,0.857,1.012,0.961,1.054,1.088,0.911,0.964,1.0,0.891,0.979,0.913,0.955,0.893,1.036,1.005,0.981,1.013,1.042,1.168,1.224,1.042,0.79,0.953,1.139,1.147,0.969,1.078,0.898,0.95,1.171,1.108,1.111,1.044,0.978,0.987,0.831,0.828,1.031,0.759,0.978,1.051,0.95,0.934,0.986,0.983,1.004,0.911 +NM_175630,2.013,2.004,1.8250000000000002,1.935,2.125,1.957,1.6219999999999999,1.6629999999999998,1.9849999999999999,2.162,2.158,1.988,2.1109999999999998,1.858,1.792,1.838,2.077,2.0380000000000003,1.9460000000000002,2.023,2.15,1.75,1.779,2.109,1.916,1.984,2.031,2.08,1.8410000000000002,2.116,2.064,2.007,2.122,2.138,2.019,1.8519999999999999,1.925,2.088,2.02,2.151,1.909,2.021,1.931,2.053,1.89,1.9289999999999998,2.0229999999999997,1.984,2.01,2.123,1.867,1.9409999999999998,2.083,2.222 +NM_175634,1.883,1.851,1.838,1.9609999999999999,2.178,2.2169999999999996,2.366,2.1189999999999998,1.924,2.022,2.082,2.032,2.113,1.732,1.854,2.177,1.973,1.936,1.895,2.348,2.126,2.019,1.959,1.988,2.2089999999999996,2.0999999999999996,1.704,1.8119999999999998,2.388,1.9889999999999999,2.018,2.378,2.217,1.9569999999999999,2.16,1.9769999999999999,2.05,1.931,1.854,2.0140000000000002,2.08,2.274,1.9180000000000001,1.9289999999999998,2.065,1.9,1.988,2.082,2.0540000000000003,1.8929999999999998,1.938,1.959,1.934,2.043 +NM_175635,1.106,1.041,1.053,1.009,1.198,0.988,1.012,1.006,0.847,1.08,0.983,0.928,0.91,0.994,0.978,1.11,0.96,1.173,1.036,0.771,0.839,0.851,1.206,0.941,1.092,1.003,0.958,0.962,1.15,0.928,0.889,0.931,1.298,0.938,0.89,1.195,0.967,1.147,1.002,0.947,0.914,0.862,1.905,0.962,1.184,0.939,0.926,0.985,1.162,1.171,0.916,1.001,0.974,0.909 +NM_175636,0.992,1.003,1.101,0.999,1.035,0.949,0.792,0.986,1.008,1.041,1.112,0.987,1.11,1.052,1.088,1.11,0.964,1.058,0.908,1.128,0.982,1.009,1.016,1.117,1.035,1.066,1.057,0.89,0.676,1.014,1.216,1.002,0.994,1.07,0.979,0.948,1.021,1.001,1.006,0.853,0.965,0.919,0.973,1.001,0.986,0.91,0.991,0.938,0.921,1.054,0.939,0.9,1.058,0.889 +NM_175698,0.897,1.025,0.967,1.048,1.041,0.97,0.961,0.814,0.887,1.002,1.1,1.011,1.086,0.904,0.963,0.99,1.151,0.861,0.923,0.986,0.955,0.941,1.048,1.016,1.068,1.032,0.887,1.024,1.216,1.179,1.08,1.095,1.103,0.98,1.129,1.174,0.963,1.045,9.198,1.001,0.975,0.956,0.986,0.945,1.057,1.062,1.3,0.928,1.108,0.881,1.11,0.851,0.924,1.097 +NM_175709,0.883,1.634,1.111,1.055,0.899,1.03,0.891,0.76,0.906,0.803,1.048,0.767,0.94,0.931,0.84,0.848,0.972,0.912,0.789,1.222,0.844,1.167,1.008,0.891,1.426,0.883,0.92,0.938,0.786,1.166,0.877,1.634,1.1,1.976,0.685,0.749,0.996,1.129,1.487,0.831,1.058,1.544,0.819,1.004,0.845,0.793,0.827,1.022,0.704,0.852,0.834,0.778,0.808,1.202 +NM_175711,0.916,1.037,0.991,1.168,1.076,1.006,1.042,1.042,1.113,1.125,0.905,1.021,0.905,0.96,0.79,1.091,1.169,0.878,0.961,0.994,1.119,1.017,1.107,0.814,0.951,1.09,0.895,1.0,0.994,1.019,1.153,0.993,0.886,1.077,1.019,0.858,1.064,1.028,1.204,1.05,0.816,1.121,0.899,0.81,0.894,1.137,1.056,1.035,0.969,0.959,1.073,0.927,1.052,0.961 +NM_175722,1.011,0.983,0.934,0.749,0.949,0.985,1.038,1.063,0.999,0.859,0.913,1.16,0.856,0.714,0.862,0.928,1.016,0.961,1.113,0.905,1.023,0.902,1.1,1.039,0.96,1.033,1.05,1.02,0.748,1.074,1.122,1.031,0.936,1.136,0.996,2.705,0.986,0.914,0.892,1.002,0.954,1.138,1.031,0.915,1.006,0.903,1.046,0.968,3.809,0.926,1.079,0.932,0.982,1.089 +NM_175723,0.999,0.921,1.039,0.885,1.001,1.048,1.12,1.022,1.068,0.992,1.154,1.013,0.939,0.961,0.912,1.128,0.866,1.039,0.836,1.131,0.987,0.997,0.957,1.123,1.034,0.908,0.919,0.953,0.975,0.973,0.99,1.016,0.926,1.008,0.904,0.929,0.933,0.999,8.696,1.049,0.978,0.859,1.267,1.026,1.008,1.031,1.006,0.932,1.097,1.073,0.953,0.997,0.919,1.003 +NM_175728,1.009,1.002,0.98,1.112,0.773,1.07,1.031,0.889,0.773,0.892,1.074,0.879,0.903,0.813,0.881,1.091,0.802,1.066,1.071,1.106,1.039,0.907,1.245,1.023,1.105,0.837,0.734,1.099,1.041,1.069,0.944,0.85,0.986,0.998,0.889,1.199,0.927,1.003,1.101,1.06,0.896,1.207,1.179,0.85,0.991,1.125,0.924,0.99,0.986,0.847,0.965,1.089,1.178,1.15 +NM_175729,0.927,1.013,0.944,0.794,1.108,1.001,0.904,0.869,1.001,1.109,0.848,0.95,0.914,0.894,0.862,1.177,0.947,0.948,0.839,0.926,0.918,0.982,1.064,0.912,0.957,1.124,0.934,0.984,0.953,1.066,0.928,1.052,1.069,1.044,0.936,1.153,0.842,0.9,3.62,1.006,1.112,1.022,0.9,1.159,0.95,0.848,1.031,1.08,1.059,1.097,1.034,1.038,1.026,1.002 +NM_175733,0.967,0.96,1.329,1.038,0.708,1.093,1.317,0.94,0.948,0.964,1.054,0.871,1.015,1.145,0.964,1.137,0.946,0.83,1.05,1.015,0.962,1.142,1.108,0.816,0.953,0.838,0.906,0.908,0.968,1.087,1.169,1.014,0.885,0.994,0.964,0.897,1.126,0.872,1.055,0.798,1.413,0.89,0.998,1.006,1.247,1.177,0.974,1.059,1.123,1.067,1.004,0.868,1.169,1.009 +NM_175734,0.978,0.972,1.085,0.936,0.988,1.084,0.902,1.013,0.933,1.13,1.182,0.997,1.019,1.038,0.902,1.15,1.025,0.96,0.922,0.962,1.045,0.949,0.983,0.958,1.128,1.003,0.9,0.967,0.83,0.996,1.091,0.959,0.854,0.953,0.981,1.094,0.978,1.026,1.128,0.901,0.947,0.952,0.804,1.194,1.024,0.9,0.951,0.956,1.044,0.897,1.061,0.958,1.111,0.926 +NM_175735,0.883,1.11,1.107,1.021,0.955,1.003,1.108,1.031,0.903,0.974,1.035,1.034,0.955,0.93,1.162,1.123,0.895,0.962,1.03,1.078,1.012,1.061,0.99,0.97,0.936,0.954,1.064,1.051,0.9,0.976,0.995,0.922,1.115,0.988,0.99,1.059,1.014,0.962,0.988,0.976,0.994,1.095,0.868,0.896,1.142,1.109,0.797,0.822,1.046,1.088,0.925,1.115,1.054,0.843 +NM_175736,1.035,1.043,0.99,1.002,0.828,0.959,1.155,0.97,1.163,0.987,1.298,1.084,0.918,1.052,0.987,1.002,1.066,0.883,0.872,1.013,1.009,0.782,1.05,0.967,0.998,1.177,1.028,0.914,0.952,0.948,0.975,1.078,1.092,0.897,0.95,0.991,0.982,1.081,1.015,1.04,0.987,0.898,1.21,1.089,1.005,0.96,1.035,0.844,0.979,0.917,1.05,1.019,1.094,1.019 +NM_175737,1.014,0.977,1.078,0.961,1.076,0.97,0.883,0.965,1.119,1.027,1.008,1.087,1.008,1.054,0.866,1.052,0.988,0.813,1.214,0.928,1.138,1.051,1.085,1.322,0.993,0.923,0.957,1.0,0.788,0.949,1.015,1.172,0.939,1.115,1.098,1.019,0.977,1.069,0.961,0.937,1.03,1.002,0.841,0.94,1.084,0.955,0.983,1.011,0.977,1.0,0.889,0.886,1.0,0.996 +NM_175738,0.655,1.407,0.748,2.267,0.585,2.429,3.035,0.542,0.705,0.578,1.795,0.577,0.643,0.645,0.945,1.258,0.706,2.612,0.674,2.69,0.624,0.564,1.671,0.651,2.485,0.574,0.708,0.589,2.062,2.447,0.588,1.478,0.645,4.245,0.542,1.952,1.242,0.645,1.036,1.897,0.683,1.941,0.827,0.734,0.652,0.968,0.873,0.538,0.575,0.656,1.41,0.898,0.645,0.969 +NM_175739,1.056,0.935,0.906,1.001,1.077,0.967,0.984,1.052,0.961,1.077,1.062,1.066,0.964,0.909,0.781,1.089,1.062,1.013,1.107,0.919,0.947,0.985,1.108,0.953,0.998,1.072,1.043,1.012,0.787,1.031,1.04,1.108,0.896,1.032,1.046,1.153,1.057,0.939,0.825,1.012,1.012,1.031,0.98,0.978,1.058,0.942,0.946,0.959,0.901,1.021,0.877,1.043,1.045,0.96 +NM_175742,1.075,1.059,1.048,0.993,1.143,1.116,1.109,0.786,0.861,1.09,1.001,1.11,1.073,0.913,0.928,1.116,1.054,1.013,1.013,1.05,1.104,1.091,1.076,0.892,0.996,1.13,1.041,1.06,0.728,1.049,1.105,0.892,0.992,0.993,0.992,0.915,0.946,0.969,1.175,1.015,1.078,0.911,1.277,1.12,0.975,0.96,1.035,1.235,0.881,0.946,1.105,0.988,0.869,0.883 +NM_175743,0.921,1.018,1.005,1.094,0.983,0.954,0.92,1.061,1.12,0.969,1.186,1.13,1.097,1.017,0.985,1.133,1.069,1.062,1.131,1.035,0.942,0.895,1.153,1.236,0.97,1.041,1.002,1.213,1.169,0.881,0.942,0.915,0.875,0.804,1.069,1.049,0.95,0.992,0.883,0.975,0.977,0.947,1.056,1.16,1.192,0.966,0.926,0.908,0.995,1.16,1.023,1.037,1.079,0.992 +NM_175744,0.177,0.91,0.373,0.819,0.268,2.877,1.134,0.231,0.401,0.27,2.55,0.283,0.282,0.235,1.438,3.165,0.238,1.192,0.269,2.313,0.132,0.248,1.853,0.416,0.586,0.229,0.398,0.272,0.881,2.469,0.351,1.277,1.002,2.045,0.201,1.0,2.392,0.33,2.31,1.167,0.332,1.884,1.218,1.13,0.229,2.669,1.543,0.23,1.77,0.182,2.108,1.07,0.292,1.391 +NM_175745,1.187,1.073,0.961,1.141,1.011,1.011,1.061,1.069,1.041,1.077,0.916,1.083,1.012,0.952,0.993,1.091,0.995,0.98,0.995,0.997,1.158,1.085,0.96,0.905,0.886,0.934,0.995,1.002,0.867,1.137,0.95,0.936,0.927,0.857,1.197,0.988,1.114,0.925,0.824,1.011,1.007,0.991,0.99,1.027,1.318,1.071,0.96,1.076,1.043,0.969,0.999,1.049,1.073,0.852 +NM_175747,1.063,0.968,0.901,0.921,0.87,1.089,1.313,0.921,0.956,0.992,0.947,1.001,0.91,1.254,1.075,0.961,1.093,1.037,0.901,0.97,0.972,1.013,1.152,1.063,1.03,0.952,1.001,1.081,1.825,0.98,1.031,1.072,1.051,1.103,1.006,1.042,1.071,0.933,1.096,0.959,1.132,0.878,1.628,0.891,0.986,0.964,0.895,0.997,0.942,0.929,0.923,1.004,1.107,1.087 +NM_175748,1.9889999999999999,1.902,2.1799999999999997,1.932,2.083,2.002,1.877,1.913,2.025,1.936,1.887,1.908,1.714,1.833,1.96,1.881,1.9009999999999998,1.942,2.431,1.8319999999999999,1.892,1.88,2.202,2.099,2.122,2.049,2.073,1.843,2.012,2.0,2.169,2.077,2.458,1.93,2.079,2.113,1.908,2.0389999999999997,2.293,2.013,1.987,2.012,1.787,2.158,1.8940000000000001,1.944,2.033,1.7730000000000001,2.127,2.141,1.8519999999999999,1.562,2.0140000000000002,2.085 +NM_175767,0.973,0.878,0.993,0.9,1.089,0.926,0.948,1.079,1.135,1.044,1.023,0.986,1.118,1.044,0.999,1.011,0.877,1.054,0.857,1.027,0.949,0.968,1.067,1.126,1.066,0.949,1.111,1.215,0.754,0.968,1.099,0.896,0.996,0.975,1.291,1.065,1.027,1.021,1.069,0.909,1.119,0.926,0.816,1.065,0.971,1.179,1.006,0.985,0.98,1.131,1.001,0.861,0.975,1.007 +NM_175768,1.091,1.024,0.934,0.934,1.086,1.005,0.963,0.939,1.034,0.907,1.143,1.011,1.06,1.038,1.295,0.892,1.082,0.967,1.027,1.043,0.922,1.101,0.958,0.982,1.136,1.043,0.89,0.955,1.082,0.96,1.083,0.95,0.976,1.091,1.154,1.097,0.941,1.092,0.914,0.912,1.015,1.002,0.921,0.968,0.946,1.042,0.932,1.057,1.067,1.048,0.98,0.936,0.989,0.954 +NM_175834,1.08,0.896,0.968,1.087,1.047,0.985,1.081,1.087,1.044,1.017,1.126,0.994,1.022,0.977,1.047,1.031,1.003,1.008,0.95,0.982,0.981,1.153,1.003,1.065,1.174,0.962,1.029,0.976,0.732,0.94,1.117,1.01,0.93,1.141,1.133,0.976,0.983,0.97,1.023,0.936,0.877,1.081,1.045,0.99,0.925,0.848,1.095,0.929,1.203,1.023,0.983,1.004,0.952,0.932 +NM_175841,1.205,0.772,0.63,0.8,1.333,0.955,0.93,1.407,0.935,1.575,0.878,1.518,0.922,0.603,0.959,1.447,0.763,0.868,0.99,0.918,0.815,1.002,1.205,1.213,0.69,0.843,0.687,1.465,0.91,1.016,1.031,1.1,1.133,0.902,1.421,1.007,1.077,1.797,1.919,3.081,1.253,0.948,2.109,2.054,1.898,0.876,1.207,1.082,0.968,1.008,1.037,0.918,0.875,1.803 +NM_175847,0.828,0.79,1.244,0.714,0.931,0.83,0.438,0.354,1.169,1.215,0.86,0.86,0.475,0.664,0.844,1.141,0.904,0.81,1.148,0.866,0.563,0.811,1.38,1.224,0.481,0.91,1.433,0.8,0.28,1.056,0.77,1.179,1.788,0.82,0.158,1.299,1.142,0.971,1.241,1.237,1.168,0.903,0.984,1.801,1.223,0.878,1.084,0.812,1.357,0.958,1.033,1.168,1.08,1.741 +NM_175849,0.968,1.023,0.94,0.851,0.971,1.025,0.883,0.979,1.06,1.026,0.98,1.078,0.888,0.945,0.961,1.05,0.919,1.003,1.156,1.021,1.173,0.818,1.344,1.03,0.859,0.912,1.071,0.902,1.399,1.015,1.019,0.931,1.355,1.049,0.835,1.039,1.101,0.863,1.063,1.144,0.928,1.195,0.851,1.031,0.981,0.912,1.024,0.981,0.923,0.944,0.929,0.978,0.993,1.45 +NM_175850,0.947,1.249,0.913,1.004,1.005,0.939,0.926,0.897,0.908,1.117,0.966,0.966,1.0,0.963,0.8,0.884,1.009,0.995,0.867,1.007,0.945,0.976,0.972,1.02,1.065,0.925,1.022,1.073,1.322,0.991,1.012,1.087,0.836,0.943,1.013,1.017,1.009,1.127,0.94,0.916,0.956,0.991,0.892,1.032,0.942,1.123,0.915,1.046,1.005,0.976,0.939,1.028,1.058,0.882 +NM_175851,0.936,1.086,0.891,0.916,1.022,0.984,0.95,1.093,0.947,0.992,0.937,1.084,0.982,1.012,0.732,0.863,1.134,1.036,0.968,0.946,1.071,1.041,0.945,0.947,0.858,1.026,1.015,1.063,0.952,1.027,0.999,1.057,0.917,1.02,0.922,0.962,1.217,0.935,1.053,1.1,0.907,0.929,1.347,1.093,0.983,1.02,0.962,0.973,0.965,1.029,1.031,0.975,0.93,1.029 +NM_175852,1.06,0.926,1.094,1.111,0.96,1.202,1.03,1.18,0.926,1.059,1.003,1.175,0.981,1.04,1.144,1.03,0.915,0.794,0.859,0.973,0.888,0.939,0.972,0.995,1.049,1.066,1.003,0.948,1.343,1.136,0.912,1.008,0.966,1.063,0.955,0.936,0.866,1.066,1.009,1.084,1.128,1.14,1.103,1.092,0.994,1.0,1.021,1.119,0.962,0.978,0.999,0.975,0.859,1.084 +NM_175854,0.955,0.814,1.608,0.962,1.024,0.958,0.657,0.641,1.298,0.987,0.892,0.818,0.71,0.992,1.01,1.18,0.934,0.871,1.151,1.105,0.774,1.007,0.989,1.058,0.778,1.148,1.593,1.142,0.712,1.233,1.051,1.287,1.444,1.05,0.585,0.981,1.072,0.958,0.986,1.997,1.026,1.013,0.891,0.816,0.956,1.096,0.99,0.821,0.824,1.006,0.856,0.967,0.994,1.779 +NM_175857,0.826,1.067,1.106,1.056,1.052,1.043,0.972,0.999,1.028,0.871,1.054,0.914,1.059,1.137,1.002,1.002,0.938,0.911,0.888,1.038,0.999,0.797,1.014,1.141,1.049,1.034,0.946,0.945,0.896,1.154,1.15,1.095,0.993,0.946,0.98,0.786,1.056,1.074,0.882,0.888,1.013,0.822,1.938,0.899,0.956,0.911,0.857,1.118,1.108,0.9,1.032,1.073,1.04,1.047 +NM_175858,0.847,1.071,1.245,0.782,0.969,0.933,0.786,0.829,1.163,1.007,0.952,0.919,0.879,0.917,0.931,1.359,0.917,0.871,1.021,0.867,0.895,0.715,1.229,1.017,0.955,0.905,1.276,1.128,0.64,1.0,1.226,1.203,0.942,1.105,0.824,0.942,0.919,1.032,1.114,0.874,1.019,1.125,0.742,1.017,1.124,0.884,0.961,0.891,1.041,0.875,0.968,0.917,0.919,1.319 +NM_175859,0.973,1.009,1.089,0.801,0.948,0.971,1.16,1.082,1.07,0.865,0.912,0.841,0.945,1.115,1.03,1.035,1.014,0.94,0.992,0.941,1.075,0.97,1.017,1.073,1.024,1.082,1.118,1.044,0.983,1.129,1.051,1.07,0.957,1.019,0.879,1.094,1.041,1.143,0.969,1.024,0.964,0.858,1.094,0.95,1.072,0.928,0.89,1.069,1.276,1.019,0.985,0.893,0.997,0.949 +NM_175861,0.933,0.781,1.041,0.886,1.057,1.101,0.859,1.192,1.035,1.004,0.996,0.943,0.914,1.171,0.964,0.974,0.921,0.986,0.976,0.791,1.025,0.861,1.092,0.917,0.992,0.971,1.044,0.963,1.181,1.064,0.967,0.874,1.084,0.978,0.965,1.0,0.958,0.982,1.017,0.945,1.002,1.021,1.039,0.937,1.086,1.085,0.983,1.035,1.031,1.028,1.0,0.861,0.966,1.121 +NM_175862,2.1879999999999997,1.925,2.112,1.889,2.186,1.924,1.929,1.897,1.75,1.951,1.971,2.005,1.955,2.075,2.032,1.8940000000000001,2.05,2.005,1.837,1.926,2.0060000000000002,1.81,1.879,1.99,1.8370000000000002,2.04,2.434,1.919,1.725,2.2060000000000004,2.197,2.226,1.889,2.2329999999999997,1.88,1.87,1.996,2.037,2.138,2.8200000000000003,1.936,1.899,2.135,1.893,1.866,1.981,1.943,1.952,1.9089999999999998,2.029,1.9289999999999998,2.239,2.001,2.319 +NM_175863,0.824,0.924,1.491,0.994,1.251,1.11,0.908,1.051,1.062,1.112,0.865,0.848,0.989,0.941,1.246,1.009,1.052,0.96,0.769,1.153,0.877,0.786,0.99,1.188,0.831,0.8,1.178,1.009,0.714,1.153,1.292,1.194,1.347,1.098,0.846,0.764,1.062,1.255,1.319,0.868,1.02,1.17,0.824,0.706,1.218,0.949,1.047,0.853,1.112,1.065,1.143,0.914,0.86,1.1 +NM_175865,0.757,1.253,1.029,0.733,0.809,1.107,0.785,0.76,1.096,1.066,0.908,0.771,0.77,0.809,0.862,1.193,0.767,0.917,0.976,0.992,0.739,0.871,1.349,0.915,0.82,0.683,1.398,0.769,0.634,1.141,0.889,1.566,2.034,1.232,0.556,1.136,0.963,0.765,0.99,1.233,0.988,1.344,0.833,1.044,0.858,1.045,1.012,0.783,1.015,0.695,1.073,0.778,0.951,1.974 +NM_175866,0.853,1.037,1.069,0.76,0.887,1.027,0.844,0.779,1.071,0.874,1.238,0.798,0.902,0.783,0.783,1.101,0.84,1.17,0.955,0.991,0.885,0.854,1.394,0.916,0.867,0.738,0.999,0.92,1.062,1.081,0.848,1.058,1.348,1.024,0.757,1.016,1.313,0.918,1.244,1.137,1.063,1.109,0.786,1.187,0.958,1.097,0.951,0.761,1.109,0.975,1.128,1.019,0.896,1.143 +NM_175867,1.079,1.08,1.006,1.049,1.166,0.999,1.318,1.277,0.97,1.018,0.934,0.914,1.085,0.934,0.944,0.977,1.036,0.988,0.883,0.939,1.172,1.077,0.897,1.006,1.072,1.014,0.98,0.99,1.169,0.91,1.027,1.09,0.833,1.058,0.871,0.969,0.809,1.097,0.966,1.001,1.051,0.964,1.03,0.992,0.78,0.869,1.214,0.982,1.004,0.932,1.048,0.923,1.028,0.801 +NM_175868,1.022,0.894,0.948,0.959,0.841,1.055,0.911,1.039,0.991,1.048,0.851,0.978,1.012,1.015,1.154,0.856,1.036,0.875,1.025,0.94,1.028,0.944,0.915,1.069,1.062,0.957,1.084,0.937,0.939,1.094,0.998,1.057,0.86,0.943,0.929,1.028,0.964,0.984,1.005,1.127,1.085,0.901,0.879,0.879,0.993,0.955,1.088,0.884,1.062,1.065,1.072,0.901,0.847,1.073 +NM_175870,0.867,1.025,0.929,1.004,1.228,0.99,1.026,0.878,1.042,0.961,1.053,0.998,0.912,0.979,1.134,0.867,1.037,0.852,0.975,1.02,0.919,1.004,1.136,0.982,0.922,0.991,1.109,1.052,1.327,0.979,0.996,1.097,1.002,0.894,1.169,1.082,0.992,1.057,1.17,0.926,0.976,1.058,1.107,1.012,1.018,0.929,1.0,0.88,0.9,0.949,1.038,1.028,0.927,1.005 +NM_175874,0.879,1.042,1.06,1.04,0.973,1.032,0.979,1.077,0.948,1.026,0.964,0.913,0.93,0.837,0.959,1.086,1.023,0.938,0.971,1.032,1.02,1.181,1.071,0.991,0.944,0.908,1.053,1.0,0.986,1.06,1.012,1.022,1.824,0.989,0.896,0.961,0.979,0.921,1.022,1.039,0.928,1.001,0.957,0.854,0.933,0.846,1.013,0.993,0.867,0.987,1.039,1.144,1.012,0.98 +NM_175875,0.752,1.32,1.497,0.632,1.016,0.839,0.616,0.572,1.002,0.958,0.724,0.974,0.663,0.88,0.746,0.739,1.206,0.842,1.214,1.014,0.692,0.89,1.285,0.809,0.815,0.916,1.588,0.978,0.406,1.23,0.862,2.368,1.335,1.244,0.387,1.333,0.742,1.102,0.898,1.135,1.285,1.317,0.557,1.027,0.773,0.783,0.938,0.793,0.682,1.019,1.175,0.913,1.076,1.509 +NM_175876,0.902,1.007,1.3,0.885,1.12,1.064,0.905,0.94,1.128,1.056,0.924,1.047,0.917,1.038,0.891,1.227,1.124,0.948,1.033,1.16,0.958,1.075,1.061,1.188,0.919,0.782,1.275,0.896,1.004,0.974,1.249,1.259,1.776,0.993,0.792,0.794,0.964,1.034,1.201,1.017,0.908,0.932,0.827,0.74,1.047,0.966,0.903,0.965,1.232,0.955,1.155,0.931,0.91,1.351 +NM_175877,0.948,1.026,1.009,1.086,1.223,1.023,1.053,0.982,0.904,1.125,1.078,0.989,0.963,1.149,1.057,1.063,1.067,0.975,1.047,1.16,1.012,0.932,1.047,1.0,0.954,1.005,1.002,0.826,1.062,0.968,0.982,0.931,0.931,0.871,1.074,1.083,1.153,0.973,1.043,0.924,0.984,1.031,1.01,1.108,1.015,1.067,0.921,0.908,0.978,1.0,1.053,1.123,1.064,1.116 +NM_175878,0.968,0.975,0.921,0.994,0.989,1.105,1.065,1.227,1.088,1.107,1.041,0.995,0.956,0.987,1.166,1.062,0.928,1.053,0.937,1.039,1.06,0.836,0.931,1.013,0.908,1.004,0.949,1.096,1.066,0.904,1.062,1.037,1.195,1.051,0.959,1.039,0.949,0.924,1.049,1.027,1.059,1.101,1.008,1.021,1.05,1.006,1.084,0.991,1.079,0.868,0.962,1.09,1.063,0.99 +NM_175880,1.08,0.888,0.974,1.097,0.983,0.946,0.791,0.842,0.978,0.76,1.033,0.91,0.925,0.827,0.929,0.95,0.91,1.034,0.965,1.147,1.018,0.991,1.252,1.032,0.889,0.96,1.064,0.992,0.977,1.068,0.943,1.014,1.19,0.98,0.846,0.976,1.02,0.989,1.025,1.094,1.061,0.962,0.849,1.161,1.123,0.934,0.965,0.927,0.893,0.988,0.998,0.947,0.918,1.232 +NM_175881,1.089,1.091,0.99,0.994,0.985,0.997,1.011,1.024,0.978,0.858,0.957,0.929,0.989,1.138,1.076,1.0,1.004,1.013,0.881,0.824,0.979,1.155,1.061,1.029,1.09,1.038,1.035,0.944,1.308,0.968,0.973,1.128,1.093,0.897,1.03,1.04,1.0,0.907,1.019,1.028,1.018,0.955,0.987,0.933,1.191,0.925,0.954,0.888,0.985,0.85,0.953,0.967,1.048,0.919 +NM_175882,0.767,0.796,1.07,0.941,1.025,1.103,0.952,0.848,1.009,0.959,1.034,0.829,1.18,1.11,1.191,1.007,1.258,0.836,1.17,1.108,0.897,1.08,1.215,1.028,1.078,0.911,0.989,1.059,0.941,1.066,0.951,0.925,0.921,0.81,1.021,0.958,0.983,1.096,0.896,0.977,0.91,0.979,1.132,1.015,1.033,1.099,1.058,0.905,0.833,0.92,1.021,1.047,0.955,1.275 +NM_175884,0.817,0.958,0.892,1.074,0.812,0.975,0.884,0.702,0.931,0.919,1.209,0.735,0.742,0.774,0.946,1.313,0.995,0.84,0.896,0.986,0.839,0.857,1.133,0.937,0.786,0.998,0.876,0.967,0.764,1.06,0.745,1.628,1.26,1.038,0.79,0.882,1.092,0.777,1.318,1.621,0.938,0.922,1.481,1.753,0.892,1.224,1.081,0.836,1.261,1.133,1.063,1.047,0.876,1.02 +NM_175885,1.934,1.974,1.9489999999999998,2.127,2.0060000000000002,1.7690000000000001,1.653,2.1,2.359,1.9929999999999999,1.92,1.9969999999999999,2.127,1.9,1.984,1.954,2.205,1.876,2.26,1.716,2.0620000000000003,2.162,1.952,2.1790000000000003,1.972,2.343,2.315,2.0389999999999997,1.7429999999999999,1.9769999999999999,2.0789999999999997,2.009,1.912,2.0700000000000003,2.082,1.915,1.892,1.904,1.749,2.107,2.0309999999999997,1.981,2.142,2.2030000000000003,2.017,1.959,2.044,1.994,1.875,2.2439999999999998,1.9529999999999998,2.023,1.891,1.915 +NM_175886,1.019,1.043,0.957,1.187,1.027,1.001,1.149,0.984,1.102,1.04,0.975,1.111,1.061,0.934,0.941,1.189,0.904,1.051,1.016,1.246,1.12,0.945,0.818,1.094,0.859,0.982,1.044,0.999,1.084,0.911,0.931,0.931,1.076,0.98,1.059,1.132,1.144,0.958,0.965,0.966,1.069,1.017,0.943,1.131,1.036,1.073,1.006,0.939,0.904,1.135,0.985,1.025,0.967,0.995 +NM_175887,0.92,0.945,0.849,1.266,0.904,1.145,1.008,0.883,0.925,1.169,1.325,1.066,0.893,1.125,0.937,1.146,0.941,1.105,0.908,1.067,0.801,0.783,1.115,0.886,0.991,0.915,1.007,0.926,0.791,1.098,0.904,0.882,0.844,1.135,0.833,1.031,1.27,0.886,1.55,0.932,0.995,1.002,1.026,1.385,1.064,1.208,0.997,0.966,1.062,0.781,1.119,0.836,0.896,0.915 +NM_175892,1.625,0.82,1.354,0.948,1.244,0.906,0.913,1.182,1.574,1.02,0.999,1.214,1.347,1.362,1.142,1.07,1.085,1.098,1.582,1.028,1.162,1.418,0.924,1.175,0.922,1.469,1.162,1.667,1.51,0.946,1.248,1.031,1.044,0.971,1.019,0.973,0.937,1.18,0.85,0.886,1.552,0.904,0.933,0.801,1.099,0.891,0.898,1.139,0.874,1.032,0.842,0.909,1.256,0.998 +NM_175893,0.82,1.117,1.835,0.646,1.367,0.905,0.64,0.596,1.131,1.009,0.945,0.674,0.658,0.878,0.809,1.084,1.023,0.987,1.174,1.207,0.608,0.804,1.172,0.765,0.635,0.831,1.429,1.203,0.571,1.299,1.137,1.607,1.815,1.121,0.422,1.016,1.03,1.146,1.162,0.702,1.459,1.349,0.754,0.81,0.947,1.377,0.889,0.642,0.995,0.973,1.179,0.851,1.039,1.047 +NM_175894,1.066,0.826,0.943,1.027,1.0,1.093,0.909,1.198,0.723,0.934,1.162,0.955,1.043,0.858,0.916,1.082,0.967,0.917,0.818,1.189,1.126,1.0,1.172,0.829,0.967,0.941,0.959,1.025,1.014,1.067,1.014,1.134,0.925,1.099,1.304,1.155,1.024,0.994,1.029,0.85,1.001,0.806,1.169,0.943,0.781,0.992,1.008,0.837,0.919,0.834,0.867,0.967,0.966,1.223 +NM_175895,0.999,0.996,1.092,0.925,1.183,0.93,0.859,1.087,1.079,0.999,0.979,1.085,1.024,0.96,0.936,1.031,1.161,1.164,1.178,0.933,1.01,0.978,1.001,0.934,1.004,0.952,1.053,1.022,1.327,0.974,0.954,0.977,1.024,1.169,0.826,0.972,1.105,0.979,0.993,1.008,1.034,0.877,1.306,0.897,1.062,0.96,1.046,0.998,1.024,0.996,0.98,0.956,1.08,1.068 +NM_175896,0.984,0.915,0.901,0.89,1.005,0.948,0.811,1.168,0.906,1.031,1.116,0.898,0.993,0.823,0.934,0.928,0.93,1.026,0.966,1.043,1.038,1.113,1.102,1.05,0.974,0.983,0.993,1.11,1.216,1.053,0.874,1.623,0.964,1.055,0.94,1.487,0.948,0.994,1.047,0.988,1.108,1.084,0.977,1.043,1.097,0.941,1.043,1.0,0.954,1.032,0.975,1.054,1.048,0.86 +NM_175897,0.97,0.895,1.1,0.874,0.875,0.85,0.948,0.984,0.924,0.919,0.975,1.028,1.029,0.84,1.023,0.949,0.937,0.934,0.936,1.062,0.971,1.037,0.917,0.905,1.001,0.978,0.994,0.941,0.977,1.101,1.005,1.068,0.969,0.964,0.881,1.026,1.048,1.08,0.958,1.054,1.09,0.873,1.1,0.854,0.926,0.935,1.026,1.089,1.039,0.95,1.08,0.9,0.908,1.057 +NM_175898,0.924,1.021,0.884,0.918,0.832,1.331,1.186,0.968,1.186,1.083,0.973,0.928,0.905,0.962,0.836,1.016,1.003,0.979,0.977,1.123,0.972,1.004,1.153,0.984,0.812,0.969,1.209,1.186,1.108,1.068,0.931,1.235,1.083,1.241,1.07,0.941,0.943,1.081,1.014,1.103,0.997,1.098,0.706,0.945,0.976,0.955,0.757,0.88,1.002,1.194,1.168,0.798,0.997,1.118 +NM_175902,0.819,1.174,1.0,0.902,1.008,0.977,0.989,0.763,0.95,1.08,1.034,0.794,1.069,0.803,0.95,1.217,0.949,0.888,0.895,0.873,0.848,1.022,1.057,1.173,0.945,0.794,1.072,0.912,0.779,1.246,0.935,1.218,0.985,1.257,0.846,0.933,0.987,0.834,1.455,0.988,0.894,1.007,0.935,1.549,1.032,0.957,1.008,0.79,1.064,0.861,1.043,0.966,1.005,1.236 +NM_175903,0.875,1.003,1.206,1.056,1.09,0.968,1.031,1.077,1.071,1.239,0.9,0.867,1.041,0.867,1.013,0.99,1.043,1.154,1.107,0.877,0.974,0.938,1.097,1.012,0.946,1.1,0.908,1.012,1.055,1.033,0.97,1.025,1.108,0.967,1.147,0.976,0.877,0.954,0.975,0.941,0.951,1.121,0.971,1.13,0.997,1.038,0.888,0.966,0.983,1.139,1.026,0.813,0.952,0.954 +NM_175904,1.042,1.103,1.01,1.007,1.01,0.938,0.96,0.908,1.1,1.02,1.136,1.054,1.02,1.012,0.937,1.003,0.944,0.962,1.073,0.942,1.082,1.036,1.067,0.944,0.975,1.013,0.889,1.066,0.858,1.045,1.02,0.946,0.876,0.945,0.95,1.042,1.015,0.968,0.983,0.93,0.977,0.9,0.881,1.069,1.083,1.066,0.977,1.113,1.104,0.964,0.984,0.921,1.096,1.014 +NM_175906,1.08,1.051,1.113,0.967,0.948,0.998,1.013,1.043,0.977,1.137,1.15,0.882,0.894,1.315,0.995,1.179,0.89,0.977,1.073,0.974,0.97,0.959,0.962,1.068,0.944,1.084,1.112,0.996,0.899,0.93,0.965,0.872,0.926,0.884,1.027,0.989,1.04,1.099,1.015,0.959,0.895,0.875,0.978,0.976,0.975,1.057,1.118,1.066,1.01,1.104,0.928,0.846,0.917,1.031 +NM_175907,0.833,0.98,1.191,1.065,0.999,1.246,0.645,0.774,1.176,0.917,1.001,0.88,0.915,1.018,0.882,1.675,0.998,0.92,1.176,1.131,0.798,0.914,1.047,1.044,0.848,0.898,1.386,0.957,0.624,1.563,0.949,0.956,1.001,1.539,0.667,0.855,1.099,0.912,1.202,0.916,1.058,1.145,1.052,1.084,0.85,1.028,1.139,0.854,0.858,0.93,1.247,0.773,0.997,0.852 +NM_175908,1.103,1.092,1.08,1.096,1.003,0.99,0.831,0.985,1.026,1.034,1.032,1.064,0.896,0.983,0.988,0.851,0.935,0.87,1.003,0.989,0.952,0.871,0.984,1.063,1.027,1.069,0.969,1.112,1.168,1.005,1.013,1.092,0.997,0.967,0.811,0.907,1.038,1.028,1.101,1.154,0.894,0.979,0.891,1.053,0.914,1.101,1.062,1.203,0.943,0.996,0.98,1.099,0.892,1.013 +NM_175910,0.928,1.086,0.946,1.104,0.99,1.009,0.945,0.847,0.872,1.128,0.975,1.06,1.064,0.968,1.022,1.149,1.053,0.995,0.98,1.07,1.022,0.993,1.122,1.051,1.064,0.888,0.901,0.958,1.114,1.068,1.049,0.93,1.096,0.995,1.067,1.119,0.981,1.113,0.982,1.059,1.006,1.012,0.883,0.967,1.009,0.931,0.96,1.015,1.096,1.01,0.995,0.99,0.96,0.956 +NM_175912,0.95,0.998,0.994,1.076,1.0,0.917,0.903,1.092,0.983,1.173,0.839,1.026,0.964,1.011,1.281,0.807,1.132,1.054,0.906,1.231,0.988,0.928,1.033,1.039,1.041,1.127,0.923,0.845,1.069,1.209,0.866,0.942,0.958,0.958,1.0,1.067,1.004,1.352,0.981,0.949,0.909,1.109,0.851,0.98,0.854,0.895,1.006,1.211,1.098,0.815,0.918,1.111,1.013,1.072 +NM_175913,2.006,2.12,2.031,1.833,1.939,2.034,1.691,2.096,2.12,2.012,2.0069999999999997,1.907,2.05,1.973,2.099,1.83,1.819,1.95,1.907,2.135,1.992,1.926,1.9889999999999999,1.87,2.016,1.893,1.975,1.889,1.691,2.019,2.021,2.197,2.1470000000000002,2.0140000000000002,1.97,2.109,2.104,2.1950000000000003,1.9859999999999998,1.9100000000000001,1.9889999999999999,2.0,1.576,2.006,2.0060000000000002,1.943,2.14,2.0,1.9449999999999998,1.9020000000000001,1.966,2.129,2.121,2.0780000000000003 +NM_175914,0.949,0.986,0.898,1.074,1.106,1.059,1.038,1.014,1.104,0.888,1.005,0.929,0.96,0.985,1.267,1.058,1.046,1.065,0.857,0.948,0.972,1.033,0.985,0.884,0.968,1.057,0.967,0.91,0.763,1.22,1.057,0.944,1.048,0.894,0.943,1.055,1.109,0.963,1.125,1.175,1.163,0.998,0.964,0.902,0.975,0.95,0.941,1.072,0.962,1.083,1.018,0.991,0.982,1.148 +NM_175915,1.061,0.881,1.28,1.076,0.926,1.039,0.998,1.011,0.876,1.064,1.025,0.911,1.075,0.882,0.973,0.945,0.863,1.015,1.087,1.079,0.857,1.147,1.117,1.161,1.14,0.919,1.156,1.107,1.022,0.833,1.112,1.092,0.921,1.338,1.086,1.042,1.087,0.933,0.901,0.987,0.897,0.967,0.806,0.982,1.04,1.125,0.834,1.168,0.829,1.002,0.875,0.88,0.786,1.092 +NM_175916,0.822,1.198,1.519,1.106,0.974,0.93,0.783,0.778,1.429,1.01,0.896,0.919,0.85,0.998,1.027,1.052,0.915,1.017,1.183,0.973,0.866,0.913,1.036,0.943,0.85,0.997,1.301,1.038,0.749,1.044,1.117,1.168,1.361,1.211,0.682,0.899,0.977,0.971,0.945,0.806,1.078,1.083,0.938,1.042,0.922,0.915,0.955,0.767,1.054,0.904,0.9,0.925,1.037,1.876 +NM_175917,1.085,1.025,0.95,0.906,1.062,1.088,0.962,0.884,1.047,1.098,0.886,0.976,1.043,1.007,0.954,0.988,0.892,1.044,0.83,0.887,1.035,0.936,0.996,1.025,1.118,0.997,1.011,1.217,0.797,1.03,0.893,1.001,0.938,1.08,1.009,0.964,1.15,1.181,1.132,1.047,0.977,0.87,1.029,0.993,0.923,1.021,0.996,1.114,0.936,1.08,1.006,0.895,0.78,0.987 +NM_175918,1.122,0.807,1.284,0.877,1.001,0.888,0.713,0.925,1.243,0.853,1.088,0.837,0.846,0.992,1.052,1.101,1.168,0.947,1.358,0.918,0.971,0.907,0.973,0.937,0.9,1.057,1.166,0.926,0.91,0.971,0.978,0.993,1.335,1.634,0.703,0.75,0.849,1.01,0.838,1.139,1.025,1.059,0.722,0.854,0.91,1.012,1.021,1.146,0.855,1.081,1.059,0.798,1.006,1.314 +NM_175919,1.019,1.179,0.883,0.939,0.884,1.06,0.955,0.993,1.051,1.0,0.988,0.965,1.045,0.863,0.842,1.076,1.064,1.037,1.1,1.032,1.142,0.964,1.075,0.93,1.038,1.007,0.986,0.859,1.347,1.001,1.087,1.058,1.111,0.897,1.117,0.908,0.979,0.899,1.096,0.972,0.985,0.975,0.851,1.115,0.973,1.02,0.942,0.887,0.968,0.927,1.119,1.227,0.811,0.97 +NM_175920,1.187,1.114,1.042,0.886,1.127,1.191,0.876,0.799,0.998,0.932,1.295,1.235,1.077,1.198,0.914,1.129,1.166,1.247,1.316,0.977,0.812,0.862,1.027,1.076,1.001,1.036,0.781,1.179,0.804,1.091,0.996,0.93,1.064,1.046,0.793,0.858,1.08,0.945,0.932,0.9,1.024,1.036,0.822,0.805,1.212,0.986,1.112,1.239,0.97,0.959,1.27,0.856,1.023,0.777 +NM_175921,0.838,0.967,1.115,0.805,1.042,1.083,0.721,0.733,1.194,1.036,0.91,0.868,0.744,0.924,1.092,1.197,0.868,1.1,1.295,0.931,0.582,0.798,0.931,1.053,0.71,0.976,1.273,0.953,0.575,1.16,1.016,1.247,2.338,1.249,0.458,0.679,1.055,0.962,1.138,0.767,0.945,0.969,0.867,1.268,1.1,0.984,0.633,0.773,0.948,0.796,0.978,1.107,1.066,1.544 +NM_175922,0.918,1.051,0.978,0.95,0.999,1.001,0.963,0.923,0.943,1.064,0.964,1.003,1.199,0.983,0.814,0.991,1.093,0.933,1.026,0.96,1.044,1.042,1.151,0.971,0.968,0.998,0.979,0.948,0.608,1.042,0.957,0.958,1.079,0.902,0.941,1.071,1.041,1.038,0.958,0.995,0.861,1.017,0.846,1.031,1.118,0.964,1.202,0.947,0.993,1.002,0.976,0.884,1.026,1.15 +NM_175924,0.97,0.969,1.667,1.021,0.761,0.677,0.635,0.647,0.999,0.739,1.064,0.686,0.794,0.824,1.254,1.278,1.485,0.705,1.27,1.671,0.484,0.541,1.402,0.993,0.543,0.94,1.136,0.924,0.604,0.628,0.927,2.022,2.166,0.776,0.496,1.18,0.853,0.886,1.032,0.677,1.455,1.339,0.723,2.548,1.077,1.112,0.842,0.887,0.857,1.285,1.54,0.91,0.874,2.129 +NM_175929,1.073,0.903,0.877,0.987,0.998,0.962,0.731,1.219,0.897,0.936,0.91,1.091,1.09,0.867,0.988,1.086,0.988,1.03,0.876,0.952,0.793,0.835,0.715,1.079,0.904,0.961,0.965,0.962,1.221,1.057,1.023,1.114,0.872,0.93,0.934,1.043,0.862,1.22,1.002,0.889,1.002,1.147,0.942,0.933,1.045,1.332,0.994,1.14,0.924,1.003,1.119,1.142,1.036,1.06 +NM_175931,1.986,1.8359999999999999,2.333,1.98,2.044,1.95,2.118,2.008,2.1950000000000003,2.003,2.01,1.972,1.9729999999999999,1.826,2.012,1.7469999999999999,2.2350000000000003,2.039,2.097,2.165,1.818,1.968,2.279,1.971,1.921,1.857,2.205,2.04,1.8850000000000002,2.16,2.0,2.0629999999999997,1.77,2.086,2.051,1.858,1.979,2.112,2.085,2.145,2.012,2.324,2.003,1.818,1.8010000000000002,1.958,1.861,1.9809999999999999,2.1100000000000003,1.959,2.154,1.9449999999999998,2.021,2.135 +NM_175940,2.89,0.679,3.337,0.994,3.015,0.534,0.476,2.139,2.736,2.743,0.428,2.312,1.633,1.584,1.481,1.136,2.225,2.211,3.291,0.612,2.175,3.814,0.451,2.6,0.596,4.167,3.567,2.014,0.785,0.461,2.585,0.565,1.909,0.614,1.257,0.825,0.46,3.782,1.026,0.61,2.194,0.559,0.519,0.919,2.897,0.486,1.467,4.743,0.571,3.894,0.96,1.129,3.017,0.745 +NM_176071,1.129,1.105,1.016,1.136,1.058,1.266,0.969,0.842,1.23,0.968,1.011,0.877,1.029,0.947,0.839,0.91,1.203,1.183,1.035,1.123,1.217,0.981,0.912,0.876,0.856,0.945,0.941,1.0,1.161,1.026,1.021,0.967,0.891,0.926,1.181,0.871,0.846,1.116,0.975,1.202,0.971,0.921,1.162,0.78,1.001,0.901,0.98,1.07,1.059,1.175,0.889,0.99,1.004,0.968 +NM_176072,0.892,0.948,1.148,0.948,0.976,1.057,1.015,1.09,1.0,0.959,1.2,1.061,0.994,0.9,1.01,1.003,1.044,1.097,0.93,1.039,0.994,1.022,1.034,1.052,1.002,0.862,0.877,0.882,1.053,0.987,1.1,1.078,1.127,0.923,1.143,1.077,0.941,0.945,1.035,1.0,1.003,0.844,0.958,0.916,1.102,1.079,0.9,1.056,0.904,1.055,0.973,0.868,1.155,1.032 +NM_176095,1.026,1.0,0.883,0.959,1.0,0.907,0.926,0.939,1.068,1.092,1.007,0.929,1.098,0.986,0.826,1.015,1.031,1.089,0.882,0.884,0.889,0.956,0.925,0.969,0.919,1.009,1.204,1.033,0.875,0.998,1.019,1.095,0.995,1.012,1.079,1.018,0.936,0.898,1.091,0.917,1.156,0.928,0.968,0.886,1.003,0.985,0.986,0.99,1.11,1.045,0.91,0.928,1.004,1.053 +NM_176096,0.588,1.179,1.068,0.83,0.884,1.334,0.742,0.372,1.295,1.006,1.311,0.714,0.441,0.556,1.036,1.302,0.962,0.893,0.889,1.409,0.378,0.798,1.305,1.083,0.695,0.697,0.927,0.846,0.625,1.291,0.816,1.673,1.272,1.222,0.232,1.201,1.145,0.874,1.332,0.553,0.96,1.174,0.887,1.004,0.822,1.358,0.757,0.577,1.188,0.535,1.311,0.894,0.801,1.663 +NM_176782,1.069,0.903,0.922,1.154,0.806,1.001,1.285,1.107,1.105,0.907,1.145,0.909,1.017,0.909,0.864,0.919,0.951,0.876,0.857,1.128,0.873,0.993,0.994,0.858,1.081,1.052,1.146,0.972,0.816,0.958,1.059,1.0,1.15,1.109,0.932,0.865,1.0,1.097,0.975,0.985,1.012,1.022,0.814,1.01,0.973,1.011,1.159,0.917,0.935,1.154,0.935,0.832,0.908,0.938 +NM_176783,1.132,0.911,0.988,0.949,0.951,1.049,0.94,0.962,1.115,1.005,0.898,1.022,0.935,0.997,1.114,0.942,1.088,1.071,0.859,1.079,0.818,0.954,1.091,0.932,1.03,1.043,1.048,0.915,0.899,0.855,0.932,1.037,0.92,0.926,0.972,0.935,0.982,1.024,1.175,1.016,0.999,0.989,1.081,1.007,1.147,0.989,0.828,0.899,1.151,0.901,1.05,1.002,1.063,1.093 +NM_176786,0.903,0.945,1.13,1.044,1.061,1.177,1.012,1.147,1.127,0.953,1.262,1.016,1.021,0.985,1.06,1.027,1.116,1.032,0.941,1.084,1.027,1.016,0.819,1.136,0.967,0.989,0.891,0.92,0.972,1.008,0.975,0.927,0.885,0.853,0.9,1.089,1.004,0.935,1.002,0.886,0.922,1.021,0.919,1.069,1.089,0.973,0.877,0.934,1.113,1.193,1.12,0.908,1.181,0.963 +NM_176787,1.157,1.086,1.132,1.157,1.055,0.954,0.97,1.203,1.048,1.041,1.049,1.047,1.197,1.1,0.867,0.814,1.045,0.816,0.841,1.001,0.841,1.044,0.876,1.101,1.108,0.797,0.936,1.173,1.002,1.058,0.922,1.154,1.114,0.934,0.892,1.039,0.997,0.912,0.987,0.932,1.033,0.975,0.999,0.831,1.201,1.038,0.901,0.968,0.955,1.071,0.999,0.995,1.205,0.877 +NM_176789,1.274,0.894,1.018,1.183,1.292,0.962,0.921,1.405,1.273,1.065,0.956,1.028,1.145,1.003,1.177,0.936,1.094,1.089,1.233,0.766,0.967,1.12,0.991,1.109,0.847,1.225,1.033,1.439,0.934,0.978,1.205,1.072,1.019,0.927,2.67,1.219,0.845,1.454,0.992,0.998,1.323,0.847,0.753,0.923,1.207,0.798,0.958,1.555,0.896,0.999,1.052,0.984,1.19,0.947 +NM_176791,1.031,1.014,0.91,1.035,1.027,1.11,0.884,1.049,1.053,1.0,0.998,0.941,1.111,0.999,1.037,1.117,1.063,0.812,1.063,0.994,0.963,0.963,0.998,1.083,0.983,1.163,0.858,0.932,0.84,1.053,0.973,0.967,1.0,0.954,1.115,1.088,1.071,1.018,0.982,1.018,1.062,0.971,0.927,1.081,1.102,1.174,1.06,0.997,1.045,1.101,0.966,0.955,1.054,1.037 +NM_176792,1.017,0.961,1.121,1.011,1.043,0.982,1.033,0.872,1.17,1.001,1.005,0.962,1.04,0.796,1.066,1.164,1.061,0.965,1.066,0.877,0.977,0.941,1.144,0.85,1.029,1.013,1.018,1.023,1.014,1.14,0.977,1.195,1.231,0.937,1.271,1.02,0.941,0.895,1.126,0.974,0.993,1.114,0.943,0.989,0.902,0.985,1.048,1.141,0.974,0.994,0.943,1.004,1.109,0.792 +NM_176793,0.702,1.149,1.198,0.884,0.696,0.958,0.614,0.757,0.848,0.892,0.909,0.742,0.749,0.617,0.892,1.167,1.368,0.886,1.512,0.885,0.682,0.675,1.266,1.16,0.93,1.05,1.079,0.942,0.479,0.983,1.094,1.852,2.747,1.207,0.411,1.138,1.012,0.94,1.396,0.594,0.942,1.258,0.599,1.271,1.147,0.647,1.064,0.812,0.87,1.132,0.961,0.774,0.916,1.113 +NM_176794,0.973,1.098,1.191,1.065,0.859,0.892,1.039,1.017,1.133,0.988,0.915,1.001,0.889,0.867,0.98,0.927,1.539,0.952,1.177,1.012,1.05,0.85,0.99,1.108,1.055,1.269,1.081,1.115,1.044,0.999,1.132,1.482,1.501,0.966,0.912,0.946,0.962,1.171,1.083,0.961,1.006,1.06,0.987,1.003,1.323,0.832,1.06,1.132,0.827,1.232,1.002,0.933,0.919,0.888 +NM_176795,0.982,0.497,2.124,0.645,1.367,0.89,0.488,0.97,1.477,1.642,0.752,1.949,1.15,0.771,1.263,1.972,1.379,1.18,2.476,0.691,0.981,1.302,0.869,1.895,0.447,1.047,1.818,1.245,0.365,0.948,1.49,0.999,2.001,0.878,0.376,1.049,0.785,1.46,0.958,0.839,1.709,0.644,0.452,0.932,1.754,0.704,1.444,1.351,0.876,1.679,0.87,0.917,1.41,1.329 +NM_176797,0.995,1.003,2.739,0.891,0.852,0.906,0.796,0.826,0.895,0.936,1.094,0.672,1.106,0.816,0.83,1.012,3.234,0.756,1.211,0.904,0.939,0.804,1.163,0.9,0.909,0.855,1.327,0.921,0.692,1.135,0.883,1.295,1.524,1.068,0.918,1.17,0.999,0.973,1.346,3.21,0.927,0.968,0.751,0.963,1.224,1.025,0.923,0.888,1.046,6.622,0.921,2.497,2.107,2.161 +NM_176798,1.071,0.926,1.06,0.934,1.071,0.961,0.94,0.911,0.95,0.866,0.996,1.189,1.01,0.998,1.004,0.994,0.968,0.98,0.984,0.905,0.839,1.144,0.965,1.01,1.02,1.019,1.143,1.202,1.048,1.121,0.926,1.052,0.93,0.921,0.941,0.963,1.02,0.953,1.169,1.055,1.153,0.933,0.987,1.035,1.036,0.998,0.91,1.034,1.027,1.106,1.24,0.959,1.115,0.902 +NM_176799,0.968,1.012,0.964,0.927,0.859,0.939,0.821,0.957,1.1,1.029,1.155,1.086,0.888,0.886,1.044,0.858,0.897,0.972,1.132,0.927,0.982,1.017,1.027,1.013,0.995,1.045,1.002,1.048,0.87,0.937,1.067,1.065,0.966,0.905,0.976,0.951,1.076,0.978,1.136,0.908,0.993,0.911,1.166,0.971,1.136,1.037,1.008,0.98,0.995,0.977,1.117,0.924,0.881,0.993 +NM_176800,2.193,1.8849999999999998,1.927,2.072,2.1559999999999997,2.11,1.905,1.823,2.204,2.085,1.999,1.948,2.021,2.0540000000000003,2.089,2.012,2.192,1.927,2.134,2.149,2.117,2.1399999999999997,1.925,2.137,1.936,2.112,2.113,1.8940000000000001,1.84,1.981,1.904,2.085,2.318,1.956,2.173,1.844,1.881,2.106,1.8719999999999999,2.177,2.0860000000000003,2.0629999999999997,1.889,1.823,1.987,1.948,2.105,1.8780000000000001,2.067,2.207,1.931,1.9089999999999998,1.871,2.464 +NM_176805,0.764,0.779,1.051,0.807,0.797,1.155,0.567,0.534,0.995,0.999,1.107,0.954,0.798,0.6,0.839,1.379,1.066,1.001,1.384,0.848,0.55,0.794,1.454,1.147,0.702,1.042,1.246,0.702,0.434,1.011,0.785,0.982,1.093,1.247,0.241,1.48,1.022,0.809,1.952,0.552,1.146,0.936,0.695,1.145,1.224,0.96,1.008,0.985,1.13,0.899,0.983,0.87,0.967,1.323 +NM_176806,0.955,1.075,0.98,0.868,0.622,1.662,0.994,1.117,0.951,0.698,0.971,1.333,1.103,0.88,1.071,1.31,0.545,0.832,1.366,0.892,0.752,1.076,1.044,1.022,1.343,1.012,1.152,0.754,0.718,1.425,0.985,1.159,2.583,1.645,0.596,0.561,1.021,1.01,1.573,0.545,0.929,1.131,1.068,0.98,0.994,1.095,0.844,1.035,1.025,0.826,1.439,0.889,1.006,1.078 +NM_176810,0.891,1.098,1.08,1.0,1.022,1.096,1.118,1.0,1.217,1.059,0.915,0.933,1.004,0.956,0.789,1.036,1.07,1.098,1.113,0.963,0.969,0.922,1.104,1.037,1.038,1.028,0.847,1.057,1.297,0.98,1.053,1.111,1.113,1.071,1.0,1.174,0.924,0.958,0.909,1.052,0.941,1.095,1.168,1.001,1.108,1.04,0.856,0.993,1.086,1.089,0.973,1.106,1.034,1.047 +NM_176811,1.023,0.967,0.934,1.058,1.159,1.067,0.891,0.954,0.974,0.859,0.941,0.928,1.131,1.267,0.997,1.024,0.956,0.979,0.847,1.02,1.076,1.04,0.977,1.001,0.98,1.058,1.041,0.915,1.48,1.09,1.12,1.004,1.041,0.997,1.03,0.825,1.12,1.079,1.036,0.994,0.93,0.966,1.109,1.062,0.983,1.005,1.084,0.994,0.949,1.031,0.977,0.933,1.037,0.969 +NM_176812,0.823,0.787,0.996,0.762,0.737,1.291,0.629,0.552,1.194,0.864,1.336,0.736,0.672,0.73,1.203,1.713,0.839,0.837,1.15,0.91,0.555,0.773,1.313,1.041,0.637,1.041,0.909,0.906,0.454,1.619,1.031,1.362,2.2,1.762,0.275,0.635,0.92,0.808,1.096,1.011,1.118,1.172,0.637,1.18,1.023,0.784,1.04,0.767,0.871,0.72,1.004,0.659,1.067,1.539 +NM_176813,0.103,1.582,0.0893,1.516,0.0855,2.841,1.199,0.109,0.079,0.0899,3.171,0.0872,0.0871,0.0866,1.575,3.021,0.0933,1.64,0.0861,2.487,0.0932,0.097,3.794,0.106,0.543,0.1,0.0864,0.0918,1.103,2.914,0.0888,0.316,1.446,2.207,0.0875,2.031,2.95,0.0838,3.254,0.146,0.0854,2.068,2.379,0.954,0.109,3.183,0.981,0.0968,1.85,0.077,3.701,0.605,0.0941,3.196 +NM_176814,0.945,0.835,1.014,0.823,1.153,1.149,0.764,1.149,1.413,0.997,1.023,1.033,0.902,0.71,0.983,1.238,0.805,1.171,1.023,0.984,0.577,1.007,1.309,0.974,0.713,0.932,0.957,1.125,0.508,1.313,1.243,0.73,1.052,1.017,1.121,0.933,1.157,1.211,0.95,0.752,1.121,1.045,1.019,0.702,1.201,1.047,0.888,1.091,0.929,0.787,0.898,0.795,0.899,1.254 +NM_176816,0.928,1.059,0.914,1.115,0.904,0.95,1.035,0.947,1.044,0.887,1.1,0.868,0.9,1.179,1.14,0.914,0.93,1.012,0.999,1.092,0.816,0.921,1.101,0.907,1.089,0.946,0.973,0.796,1.505,0.977,0.89,0.79,0.981,1.032,0.908,0.779,0.973,0.805,0.947,0.953,1.078,1.036,1.568,0.929,0.879,1.09,0.93,0.965,1.138,1.058,1.128,1.007,1.174,0.927 +NM_176817,1.037,0.846,1.03,0.993,1.075,1.091,1.118,1.013,1.117,1.097,1.032,0.975,1.006,1.125,0.893,0.989,0.922,1.119,0.992,1.077,1.138,0.96,0.985,0.974,1.127,0.928,1.113,1.15,0.962,1.033,0.992,0.976,1.059,0.928,1.012,1.056,1.162,1.107,0.908,0.997,0.983,0.954,0.949,0.935,0.991,0.979,1.043,1.061,1.035,1.114,1.072,1.047,1.053,0.993 +NM_176820,1.182,0.961,0.844,0.93,0.982,0.839,1.183,1.055,0.846,1.214,0.857,1.084,0.98,1.006,1.294,0.967,0.868,0.993,1.135,1.077,0.836,0.967,1.065,1.082,0.902,1.029,0.96,1.008,1.049,1.156,0.943,0.976,0.873,1.02,1.003,1.034,1.1,0.866,0.889,0.938,0.961,1.049,1.612,0.875,1.06,1.053,0.868,0.979,1.044,0.847,1.038,0.951,0.973,0.993 +NM_176821,0.873,0.964,0.979,0.899,0.906,0.934,0.936,1.012,0.936,0.997,0.875,0.948,1.019,0.889,1.082,1.059,0.902,1.017,1.004,1.018,1.149,0.986,1.047,0.986,0.997,1.159,1.151,0.985,1.006,1.033,1.207,0.927,1.021,1.257,1.022,1.007,0.933,1.036,1.027,1.076,1.003,0.883,1.42,0.906,1.02,0.996,1.014,1.114,0.961,0.961,0.982,0.851,0.898,1.061 +NM_176822,1.106,1.07,0.994,1.1,1.094,1.009,1.069,0.955,1.042,1.063,1.05,1.001,0.891,0.797,0.947,0.965,0.905,1.066,1.178,0.964,0.965,1.058,1.074,1.084,0.996,0.906,0.948,0.957,0.872,0.895,1.138,0.972,1.058,0.852,1.049,1.011,0.904,1.085,0.913,0.935,1.051,1.024,1.143,0.999,0.977,1.043,1.086,0.936,1.117,1.092,0.911,1.067,0.943,0.903 +NM_176824,1.029,1.077,1.13,0.928,0.917,0.918,0.715,1.115,0.899,1.01,1.266,0.864,0.905,0.708,0.953,1.062,0.908,0.847,1.042,0.955,0.717,0.96,0.935,0.847,1.059,1.016,1.127,1.043,0.521,1.221,1.086,1.175,0.984,1.028,0.809,0.906,1.171,1.262,1.123,0.911,1.03,0.887,0.841,1.071,0.9,1.136,1.067,1.075,1.196,0.98,1.183,0.959,0.772,0.909 +NM_176826,1.755,1.967,1.971,1.9949999999999999,1.7519999999999998,2.105,1.516,1.44,1.79,1.928,2.245,1.576,1.654,1.561,1.8650000000000002,2.854,1.827,2.069,2.6310000000000002,1.846,1.595,1.9429999999999998,2.774,2.089,1.849,2.153,2.0949999999999998,1.583,1.81,1.75,1.706,1.863,2.1529999999999996,2.751,1.333,1.939,2.109,1.779,2.773,1.63,2.039,2.2110000000000003,1.626,2.521,1.741,1.6520000000000001,1.82,2.019,1.7120000000000002,2.026,1.9169999999999998,1.984,1.9889999999999999,2.042 +NM_176867,0.429,1.627,1.708,0.854,1.314,1.514,0.826,0.666,1.758,1.27,0.976,1.083,1.11,0.338,0.957,2.855,0.331,0.947,1.781,1.766,0.427,0.834,1.282,0.873,0.579,0.473,1.585,0.742,0.421,0.985,1.187,1.366,0.845,1.714,0.112,0.152,0.346,1.201,1.095,0.414,0.85,1.541,0.936,1.383,0.838,1.569,1.1,0.592,1.875,0.896,1.092,0.889,0.965,1.102 +NM_176869,0.896,1.029,0.945,1.084,1.166,0.923,0.94,0.935,0.995,1.09,1.098,0.998,1.042,0.918,0.787,1.024,1.064,0.932,1.033,0.996,1.061,1.061,1.044,1.016,1.152,1.078,1.055,1.091,0.585,1.009,1.12,1.005,1.005,0.97,1.111,1.127,1.038,0.908,0.959,0.946,0.881,1.074,0.992,0.996,1.162,0.986,1.01,1.074,1.234,1.091,1.088,0.991,1.031,0.908 +NM_176870,0.892,1.956,0.661,0.967,0.928,3.2,2.496,0.87,0.941,0.514,0.779,0.905,0.896,0.345,2.29,0.89,0.482,3.487,0.441,2.023,0.269,0.883,1.147,0.534,1.932,0.504,0.468,1.383,3.205,6.09,2.232,1.197,2.24,4.549,8.415,0.453,2.001,1.258,1.778,0.363,0.706,9.295,0.678,1.072,0.36,2.793,0.652,1.784,0.262,0.512,2.528,0.447,0.245,4.924 +NM_176871,1.017,0.973,1.13,0.915,0.995,0.913,1.325,0.922,0.889,0.928,1.031,1.024,1.075,0.895,1.204,1.052,1.062,0.943,0.967,0.979,1.045,1.144,1.132,1.108,1.119,0.925,1.036,1.024,1.195,0.977,0.973,0.802,1.141,0.917,1.133,0.836,0.987,0.924,0.902,1.215,0.866,1.025,1.105,1.037,0.988,0.953,1.065,1.116,0.775,1.029,1.028,1.143,0.997,0.868 +NM_176874,1.031,0.907,1.06,1.008,1.029,0.994,1.152,1.11,0.906,1.035,0.95,0.951,1.09,1.103,0.976,1.054,1.001,0.912,1.044,0.958,0.984,1.015,1.108,0.934,0.97,1.076,1.084,1.017,1.342,0.974,0.972,0.999,1.146,1.096,1.041,0.92,1.003,1.146,0.903,0.869,0.963,0.883,0.955,1.115,1.054,0.789,1.093,1.101,0.877,1.168,0.938,0.958,0.969,0.92 +NM_176876,0.956,0.945,0.943,1.026,1.046,0.955,1.082,1.039,0.966,0.967,1.166,0.97,1.042,0.897,1.031,0.963,0.962,0.959,1.019,1.013,0.847,0.842,1.006,0.812,0.979,0.993,0.992,1.089,0.824,1.046,1.054,0.955,1.087,0.992,1.074,1.012,1.07,0.884,0.913,0.883,1.059,1.016,1.142,1.0,1.075,1.048,0.981,1.025,0.998,0.932,0.941,0.96,0.864,0.992 +NM_176877,0.958,0.989,1.12,0.879,1.137,1.011,0.693,0.929,1.108,0.979,1.005,1.013,0.909,0.959,0.892,1.012,1.019,0.906,0.951,0.966,1.078,1.156,0.832,0.977,0.975,1.07,1.022,1.131,0.779,1.162,1.089,1.039,1.098,1.118,0.858,0.926,0.913,0.984,1.061,0.99,0.98,0.933,0.85,1.068,0.972,0.914,1.101,0.983,0.979,1.09,0.963,0.871,0.895,1.083 +NM_176880,1.017,1.21,0.98,0.99,1.075,0.976,0.811,0.811,0.905,1.136,0.993,0.956,1.006,1.088,0.999,1.029,0.967,0.98,1.144,0.827,0.987,0.873,1.179,1.139,0.898,1.069,1.116,0.749,0.754,0.966,0.866,1.05,1.232,1.047,0.626,1.168,0.93,0.938,1.425,0.916,1.176,0.923,1.083,1.864,1.011,0.899,0.992,0.926,0.862,0.856,0.962,1.093,0.926,1.375 +NM_176882,1.026,1.004,0.967,1.049,0.701,0.924,0.947,1.165,1.319,1.196,0.914,1.156,0.893,1.42,0.867,0.755,1.004,1.22,0.998,1.024,1.095,0.995,1.116,0.997,1.014,1.012,1.003,1.045,1.253,0.945,0.974,1.136,0.848,0.944,1.152,1.049,1.115,1.0,0.999,1.06,0.972,0.915,0.989,0.879,1.04,1.161,0.941,0.994,1.261,0.952,0.895,0.913,1.32,0.961 +NM_176884,0.81,1.015,0.888,1.085,0.963,1.127,1.038,1.092,1.171,1.096,1.059,1.022,1.047,0.812,0.943,0.795,1.09,1.107,0.939,0.92,0.993,0.94,1.02,1.055,0.997,0.973,1.069,1.062,1.348,1.0,0.891,0.827,1.07,0.966,0.926,0.934,0.981,0.956,0.947,0.985,0.847,0.958,0.879,1.018,1.004,1.02,1.031,1.057,1.257,0.932,1.08,0.982,1.073,1.06 +NM_176885,0.923,0.988,1.002,1.042,1.025,1.046,0.984,1.203,0.905,0.909,1.043,0.945,1.03,1.025,0.88,0.922,0.969,0.936,1.118,1.036,1.168,0.998,1.083,1.018,1.054,0.969,1.018,1.016,0.83,1.064,1.06,0.917,1.009,0.838,1.094,0.996,1.043,1.06,0.975,0.952,1.012,0.935,0.916,0.937,0.923,0.987,1.071,0.978,1.04,0.907,1.008,1.017,0.993,1.112 +NM_176887,0.915,0.93,0.937,0.989,1.01,0.921,0.963,1.024,0.973,0.954,0.956,1.054,0.961,0.977,1.004,0.948,0.98,1.127,0.964,1.075,1.036,0.876,1.006,1.054,0.955,1.103,1.091,1.065,0.783,1.129,1.024,0.984,0.867,1.016,1.028,0.946,1.1,1.007,1.152,0.986,0.941,1.085,0.964,0.948,1.018,0.963,0.901,0.991,0.928,0.97,0.989,1.037,1.17,0.942 +NM_176888,0.945,1.04,0.96,1.043,0.914,0.875,1.104,0.977,0.992,1.002,0.882,1.071,1.026,0.927,0.938,0.999,1.053,0.917,1.14,1.061,1.2,1.007,1.021,0.872,1.028,0.9,0.908,1.003,1.287,1.081,1.044,1.008,0.953,1.056,1.109,0.86,0.953,0.869,0.913,1.04,0.993,1.002,1.049,1.155,0.887,1.045,0.936,0.974,0.951,1.132,1.027,1.064,1.08,1.013 +NM_176889,0.959,1.218,1.239,1.086,0.937,0.988,0.846,0.992,1.032,0.968,0.951,1.06,1.14,1.058,1.051,0.95,1.003,1.079,1.034,0.958,1.088,0.982,0.931,0.915,1.052,1.079,1.048,0.971,0.993,0.933,1.0,0.904,1.015,0.851,1.072,1.043,0.952,1.049,1.078,0.997,1.268,1.016,0.907,1.052,0.991,0.935,1.089,0.912,0.958,0.878,0.916,0.991,0.988,1.025 +NM_176891,0.972,1.021,1.199,1.202,0.932,0.937,1.158,0.931,1.013,0.908,0.973,1.006,0.897,0.972,1.001,1.019,1.104,0.904,1.042,1.008,1.002,0.977,0.996,1.301,1.023,1.149,1.221,0.924,0.893,0.976,0.957,0.89,0.973,0.893,0.997,0.989,1.051,0.95,0.959,1.13,1.066,1.081,0.976,0.914,0.999,1.008,1.119,0.923,1.023,1.123,1.047,0.994,0.933,1.156 +NM_176894,1.874,2.307,2.367,2.385,2.284,1.934,2.128,1.8639999999999999,1.937,1.669,1.713,1.944,2.091,1.7599999999999998,1.938,1.975,2.044,2.008,1.9420000000000002,1.892,1.941,1.996,2.0060000000000002,2.117,1.927,2.019,2.066,2.2270000000000003,1.899,1.7730000000000001,1.965,2.149,1.906,2.013,1.8,1.7309999999999999,1.869,1.926,2.364,4.187,2.059,2.509,1.956,1.8820000000000001,2.0010000000000003,1.779,1.8849999999999998,2.1719999999999997,1.776,2.13,1.952,2.5869999999999997,2.4000000000000004,2.542 +NM_176895,1.098,0.948,0.927,0.978,0.927,1.013,1.059,1.108,0.883,0.978,0.951,0.829,0.964,1.169,1.178,1.091,0.9,1.0,0.798,0.966,1.007,1.15,1.102,0.87,0.918,0.958,0.919,0.979,1.181,1.092,1.124,1.044,1.142,1.078,1.018,0.815,1.08,1.086,0.962,1.006,1.075,1.163,0.877,0.971,0.956,0.973,1.093,0.956,0.84,1.027,1.124,1.239,1.033,1.022 +NM_177398,0.957,1.199,0.997,0.955,1.035,0.98,1.08,0.931,0.873,0.977,1.198,1.016,1.02,0.927,1.005,0.844,0.993,1.185,0.888,1.112,0.838,0.98,1.152,1.047,1.017,1.002,0.872,1.0,1.121,0.972,0.913,1.013,0.994,1.098,1.171,1.006,1.09,1.147,0.991,0.956,0.965,0.962,1.184,1.028,1.066,0.887,1.031,0.961,0.912,0.961,1.027,0.929,0.867,1.096 +NM_177400,0.998,2.469,0.888,1.505,1.028,1.717,1.065,1.211,1.23,0.928,1.033,0.957,1.122,0.939,0.852,0.949,1.002,2.247,0.986,1.049,0.907,1.139,1.028,1.066,1.032,1.199,0.886,1.042,1.328,1.09,0.967,0.829,0.995,6.066,1.548,0.823,1.245,0.884,1.107,0.876,1.014,2.048,0.953,1.116,0.939,1.03,0.855,1.211,0.91,1.063,0.917,0.918,0.946,0.897 +NM_177402,0.97,1.078,0.957,0.898,1.096,0.986,0.842,1.069,1.066,1.047,0.908,1.099,0.913,0.956,0.896,1.08,1.061,0.957,0.989,1.07,0.97,1.007,1.076,0.962,0.989,0.998,0.903,1.052,1.022,0.96,0.945,1.039,0.972,1.014,0.976,0.98,0.824,1.02,1.009,1.045,0.909,0.985,0.753,1.141,1.157,0.885,1.038,1.091,0.881,0.922,1.028,0.929,1.091,0.829 +NM_177404,2.0940000000000003,2.0949999999999998,1.8689999999999998,1.808,2.059,1.907,1.78,2.4779999999999998,2.159,1.876,1.9969999999999999,1.9220000000000002,1.959,1.9249999999999998,1.887,1.975,1.9100000000000001,1.996,1.988,2.136,1.935,1.995,2.0300000000000002,2.004,1.921,2.0,2.194,2.12,1.651,2.036,2.0020000000000002,1.9629999999999999,2.004,1.892,1.96,1.972,2.026,1.966,2.1870000000000003,1.884,1.9649999999999999,1.904,2.1390000000000002,1.798,2.1260000000000003,1.8719999999999999,1.77,1.959,2.062,1.7919999999999998,1.939,1.783,2.127,2.018 +NM_177405,0.944,0.971,0.994,1.078,1.015,1.005,0.808,0.839,0.957,1.103,1.008,0.952,1.073,0.928,0.842,0.898,1.062,0.865,0.988,0.929,0.809,0.942,0.925,0.948,0.962,0.97,1.083,0.905,1.098,0.887,1.129,0.968,1.095,0.978,1.044,1.095,1.099,0.98,0.929,1.05,0.972,1.043,0.894,0.995,0.925,0.925,0.957,1.143,1.126,1.095,1.006,1.038,1.233,0.999 +NM_177414,0.79,1.026,1.034,0.851,0.757,0.9,0.864,0.699,0.839,0.868,0.773,0.597,0.747,0.786,0.946,0.92,1.034,0.844,0.901,1.107,0.8,0.84,1.235,0.873,1.091,0.759,1.197,1.017,0.892,1.473,0.827,1.961,1.667,1.818,0.567,0.749,0.936,0.871,1.433,0.992,1.006,1.658,0.687,1.007,0.888,1.005,0.878,0.663,0.764,0.942,1.16,0.927,0.851,1.183 +NM_177417,3.521,0.279,4.175,0.923,4.804,0.273,0.263,1.744,5.549,5.953,0.255,3.865,1.634,2.257,1.347,1.127,1.701,3.425,5.551,0.281,1.319,3.684,0.268,5.571,0.278,4.397,3.474,4.548,0.295,0.278,3.863,0.481,1.569,0.29,1.071,0.34,0.294,5.012,0.321,0.328,3.576,0.349,0.225,0.454,5.578,0.254,3.101,3.693,0.296,3.204,0.826,1.618,2.404,0.651 +NM_177422,0.988,1.025,0.995,1.019,1.024,0.982,1.068,0.985,1.227,1.056,0.97,1.087,0.92,0.959,0.852,1.039,1.008,0.928,1.076,0.885,0.837,0.892,0.962,0.945,0.903,1.023,1.168,0.872,1.009,1.033,0.843,1.03,1.605,1.059,0.787,1.044,0.948,0.986,1.133,1.063,0.887,0.996,1.263,1.265,0.957,0.983,1.049,1.142,0.941,0.884,1.044,1.073,1.029,0.987 +NM_177423,1.788,1.904,2.051,1.913,1.932,1.855,1.8399999999999999,2.104,2.099,2.1449999999999996,2.277,2.041,1.734,2.065,1.803,1.9340000000000002,2.0090000000000003,1.759,1.887,1.766,1.6640000000000001,1.744,2.0629999999999997,2.157,1.7679999999999998,1.812,1.9769999999999999,1.964,1.828,2.0469999999999997,2.207,2.311,2.841,2.215,2.004,2.231,1.967,2.0060000000000002,1.959,2.197,1.942,1.994,2.1550000000000002,2.918,2.001,2.127,1.912,1.939,1.986,1.867,2.205,1.774,1.9449999999999998,2.302 +NM_177424,0.695,1.517,0.99,0.762,0.835,1.567,0.918,0.807,1.171,0.838,0.853,0.712,0.714,0.691,1.01,1.752,0.776,1.106,0.9,1.217,0.563,0.775,0.973,0.82,1.18,0.862,1.075,0.952,0.771,1.591,1.003,1.352,0.8,1.698,0.573,0.824,1.331,0.824,1.273,0.755,1.041,1.056,0.743,0.655,0.82,1.248,0.911,0.821,0.997,0.681,1.066,0.68,1.013,1.056 +NM_177433,1.107,1.034,1.062,0.983,0.926,1.01,1.037,0.879,1.02,0.861,0.91,1.023,1.055,0.928,1.005,1.084,1.054,0.898,1.002,0.936,0.981,1.006,0.947,1.032,1.058,0.965,0.843,0.956,0.953,0.988,1.038,1.016,1.164,0.956,0.88,1.175,0.97,0.988,1.129,1.018,0.871,0.989,1.021,0.901,0.914,0.906,0.947,0.891,0.961,0.98,1.15,1.043,1.021,1.033 +NM_177434,0.863,0.903,0.988,0.897,0.87,1.124,0.721,0.586,1.006,0.992,0.838,0.745,0.764,0.769,0.983,1.004,0.938,1.144,1.267,0.693,0.719,1.057,0.974,1.219,0.901,0.901,1.387,0.741,0.742,1.126,0.899,1.292,2.466,1.147,0.966,1.053,1.081,1.382,1.775,0.667,1.141,1.033,0.514,1.243,1.001,0.744,0.945,0.83,0.684,0.899,0.894,1.398,0.959,1.364 +NM_177435,1.9769999999999999,2.149,1.78,2.051,2.21,1.938,1.8079999999999998,1.9580000000000002,2.151,2.349,2.009,1.9779999999999998,1.982,1.9860000000000002,1.6680000000000001,1.918,1.875,2.0549999999999997,2.1310000000000002,1.987,1.9789999999999999,2.161,1.804,2.202,2.145,2.225,2.1189999999999998,1.814,1.802,1.954,2.117,1.846,1.847,1.801,2.093,1.87,2.1029999999999998,2.09,2.029,2.013,2.039,1.749,1.877,2.121,1.9889999999999999,1.8559999999999999,2.191,2.3659999999999997,1.7570000000000001,2.066,2.12,1.919,2.1340000000000003,1.685 +NM_177436,1.998,1.871,2.532,1.7610000000000001,2.171,1.775,1.9009999999999998,1.467,2.582,2.649,1.5699999999999998,2.417,1.851,1.782,1.838,2.043,3.018,1.853,2.556,1.577,1.78,2.3369999999999997,2.191,2.758,1.499,2.084,3.2430000000000003,2.239,1.482,1.8250000000000002,2.339,3.3600000000000003,4.3580000000000005,1.7850000000000001,1.295,2.06,1.6360000000000001,2.279,2.696,2.612,2.5069999999999997,1.647,1.399,2.911,2.768,1.798,2.315,2.3810000000000002,2.05,2.224,1.8239999999999998,2.851,2.183,3.449 +NM_177437,1.099,1.04,0.978,1.056,0.84,0.997,1.0,0.795,0.948,0.976,1.084,0.973,0.976,1.309,1.153,0.888,0.922,1.026,1.104,0.913,1.1,0.942,1.145,0.962,1.048,1.073,0.895,1.066,1.158,1.054,0.977,1.051,1.03,0.879,0.985,1.063,1.041,1.06,1.046,0.976,0.991,1.033,0.859,0.932,1.154,0.899,0.921,0.97,0.962,0.955,0.904,1.011,1.097,1.135 +NM_177438,1.073,0.994,1.223,1.266,1.192,0.83,0.952,1.265,1.098,1.26,0.978,0.992,1.097,1.0,1.296,0.992,1.016,1.105,0.962,0.894,1.18,0.907,0.922,1.062,1.0,1.217,1.06,0.79,1.32,1.132,0.979,0.918,0.944,1.037,1.118,1.159,1.03,1.231,1.111,0.877,0.936,0.948,1.178,1.112,0.941,0.931,0.827,0.958,1.027,1.017,0.946,0.927,0.903,0.814 +NM_177439,0.974,1.096,1.115,0.89,1.115,0.977,1.184,0.846,0.948,0.933,1.213,0.793,0.906,1.23,1.099,0.978,0.928,0.867,1.104,1.063,1.051,0.994,1.168,0.986,1.109,0.974,0.923,1.05,0.999,1.074,0.929,0.986,0.993,0.982,0.821,0.92,0.791,1.021,1.081,1.01,1.047,1.05,1.315,1.156,1.034,1.08,0.99,1.046,1.096,0.976,0.991,0.944,1.075,1.019 +NM_177441,1.071,0.893,0.927,1.131,0.989,1.284,1.035,0.854,1.086,0.956,1.064,1.004,0.926,0.998,0.939,0.945,1.052,0.899,0.888,0.941,0.917,0.805,0.998,1.029,0.821,0.925,0.983,0.95,0.815,1.093,1.014,1.136,1.102,0.947,1.083,1.128,1.026,0.882,0.902,1.062,0.966,1.013,0.877,1.088,0.947,0.983,1.02,0.951,1.034,1.07,0.964,0.985,0.964,0.971 +NM_177442,1.057,1.054,1.039,1.056,1.038,0.93,1.075,0.929,0.952,1.084,1.106,1.006,1.11,0.919,0.885,0.833,1.06,1.12,0.981,0.994,0.953,1.057,1.027,1.014,1.009,0.898,0.926,0.912,0.893,1.087,1.004,1.017,1.066,1.055,0.903,1.204,0.95,0.96,1.079,0.948,1.026,1.108,0.943,1.098,1.066,1.043,1.058,0.964,1.064,0.947,0.888,1.105,1.149,1.05 +NM_177444,1.87,2.073,1.891,1.611,2.087,2.446,1.7519999999999998,2.053,2.2649999999999997,2.005,1.9340000000000002,1.9129999999999998,2.013,1.823,2.137,1.937,1.8980000000000001,1.8479999999999999,1.933,2.149,1.763,1.996,1.8279999999999998,2.203,2.458,1.976,2.326,2.019,2.1310000000000002,2.25,1.991,2.2640000000000002,3.439,2.005,1.9529999999999998,2.2039999999999997,1.974,1.904,2.07,2.518,2.115,1.9740000000000002,1.814,2.191,1.797,1.9769999999999999,1.9740000000000002,2.0629999999999997,1.854,1.835,2.0359999999999996,1.89,1.7970000000000002,1.893 +NM_177453,0.918,0.895,1.031,0.735,1.053,1.168,0.836,0.83,0.929,1.084,1.106,0.91,0.853,0.802,1.216,2.885,0.898,0.944,1.039,1.252,0.631,0.764,1.206,1.211,0.698,0.796,1.343,0.975,0.469,0.952,0.999,1.298,1.56,0.864,0.521,0.775,1.897,1.145,1.138,0.924,0.955,1.181,1.044,0.815,0.997,1.348,1.058,0.793,1.308,0.792,1.33,1.018,0.904,1.141 +NM_177454,0.999,0.973,1.037,1.118,1.116,0.939,0.909,0.925,0.973,0.93,1.072,0.938,0.954,0.952,0.885,1.25,0.979,1.155,1.151,1.009,1.076,1.11,1.056,0.933,1.049,0.895,1.04,1.141,1.44,0.931,1.142,1.112,1.134,0.925,1.142,0.937,1.079,0.92,0.941,0.842,1.14,0.906,1.148,1.17,1.001,0.94,0.824,1.022,0.99,0.973,1.068,1.045,0.854,1.136 +NM_177455,1.095,1.222,1.119,1.005,0.886,1.149,1.011,1.028,0.941,1.044,0.944,0.966,0.991,1.201,1.081,0.929,1.045,1.199,1.112,1.028,1.041,0.825,0.873,0.905,0.983,0.987,1.064,0.989,0.789,0.926,1.142,0.993,1.012,1.076,1.021,1.126,1.086,1.095,0.957,1.02,0.885,0.977,0.879,0.937,0.912,0.91,1.02,1.05,0.946,1.07,0.855,0.967,0.869,0.944 +NM_177456,2.037,1.9899999999999998,1.956,2.008,2.001,1.958,1.847,1.972,2.052,1.9449999999999998,2.104,2.056,1.815,2.262,1.759,1.8450000000000002,2.151,1.959,2.009,1.96,1.978,1.9729999999999999,1.811,1.996,1.9689999999999999,1.9769999999999999,2.0300000000000002,2.136,1.7690000000000001,1.971,2.185,1.782,2.049,2.002,2.064,1.895,2.282,2.039,2.145,2.265,2.191,2.098,2.1420000000000003,1.8039999999999998,2.002,1.775,1.934,2.052,2.045,2.036,2.099,1.789,2.058,1.961 +NM_177458,10.439,0.1998,14.678,3.02,11.801,0.21159999999999998,0.2204,7.872999999999999,11.829,9.033000000000001,0.22449999999999998,7.73,8.285,5.733,4.615,3.7960000000000003,21.533,3.92,20.397,0.489,9.831,4.651,0.2037,10.927,0.2037,9.4,6.962,7.753,0.2124,0.2149,11.449,0.40900000000000003,7.133,0.1976,11.179,0.21650000000000003,0.2304,9.684000000000001,0.2733,0.2369,16.253999999999998,0.2275,0.2248,0.21589999999999998,17.333,0.22749999999999998,8.087,7.643,1.4729999999999999,18.639000000000003,1.5579999999999998,1.8860000000000001,18.805999999999997,2.067 +NM_177476,1.051,1.016,0.942,1.004,0.957,1.048,1.156,1.008,0.938,0.994,0.995,1.074,1.067,0.862,0.94,1.031,0.896,1.175,1.093,1.008,0.927,0.863,0.847,1.022,0.919,1.06,0.977,1.06,1.008,0.95,0.962,0.996,0.966,0.988,0.977,1.069,1.036,0.955,1.179,1.013,0.872,1.134,1.135,0.975,0.929,0.957,0.974,0.983,1.063,1.016,0.986,1.003,0.915,1.02 +NM_177477,1.07,0.938,0.913,0.965,1.004,0.902,0.857,1.071,0.923,0.967,0.857,0.98,0.95,0.974,1.048,1.065,1.017,0.966,0.965,1.045,0.999,1.034,1.0,0.995,1.0,0.967,1.008,1.009,0.906,0.899,1.048,0.968,1.092,1.025,1.138,1.106,1.018,0.93,0.898,0.977,1.041,1.108,0.898,1.097,1.163,0.983,0.989,0.979,0.994,0.93,1.007,1.113,0.993,0.981 +NM_177478,1.075,1.02,1.015,0.953,1.001,1.018,1.131,0.99,1.05,0.915,1.06,1.009,1.035,1.07,0.953,1.045,1.038,0.947,0.979,1.049,0.943,1.118,0.99,0.889,1.051,0.997,1.065,0.974,1.16,1.018,0.886,0.857,1.027,0.934,1.129,1.172,0.998,0.816,1.054,1.013,0.913,0.929,1.097,0.993,0.961,0.922,1.058,1.073,0.99,0.923,0.847,0.971,0.891,1.05 +NM_177483,2.132,2.1559999999999997,1.9509999999999998,2.084,1.928,1.9869999999999999,2.267,1.763,1.863,2.151,2.109,1.911,1.8929999999999998,2.154,1.548,2.088,2.067,2.0309999999999997,1.887,2.2039999999999997,1.954,2.056,2.015,2.032,2.084,2.107,1.916,1.924,1.981,1.98,1.7919999999999998,2.114,1.84,2.07,1.8479999999999999,2.135,2.176,1.948,2.0140000000000002,1.982,2.115,2.005,1.847,1.8940000000000001,2.0549999999999997,2.238,2.041,1.952,2.019,1.843,2.008,2.0839999999999996,2.0709999999999997,1.931 +NM_177524,1.0,1.149,0.937,1.146,0.823,1.005,0.989,1.028,1.029,1.089,0.975,0.932,0.982,1.067,0.973,1.077,0.918,1.019,1.1,1.008,1.228,1.039,1.126,1.071,1.054,1.092,1.052,1.113,0.818,1.028,0.991,0.932,1.226,1.006,1.005,1.081,1.019,0.996,1.065,0.894,0.93,0.95,0.84,1.11,1.035,1.264,1.112,0.796,0.997,0.897,0.955,0.997,1.083,0.96 +NM_177525,1.536,2.1149999999999998,1.769,2.0149999999999997,1.682,2.617,1.74,1.781,1.803,1.723,2.516,1.831,1.752,1.744,2.138,3.7439999999999998,1.573,1.879,1.7469999999999999,2.1310000000000002,1.597,1.861,3.8569999999999998,1.935,1.649,1.653,2.2510000000000003,1.7289999999999999,1.552,2.3979999999999997,1.6349999999999998,2.834,3.182,2.019,1.5190000000000001,2.578,2.3409999999999997,1.6840000000000002,3.6149999999999998,2.021,1.725,2.584,1.807,2.7590000000000003,1.8729999999999998,2.229,3.423,1.584,2.629,1.924,2.508,2.223,1.6099999999999999,3.652 +NM_177526,0.22,1.344,0.634,1.055,0.301,1.338,0.795,0.343,0.194,0.329,1.46,0.269,0.279,0.348,0.913,2.243,0.212,0.711,0.839,1.379,0.328,0.258,1.936,0.355,0.713,0.437,0.332,0.366,0.492,1.387,0.31,1.374,3.337,2.288,0.235,2.267,1.25,0.541,2.44,1.952,0.392,1.509,0.896,3.491,0.436,0.984,0.474,0.394,1.187,0.64,1.384,0.676,0.291,2.092 +NM_177527,1.083,0.951,0.99,1.057,0.984,0.929,1.145,0.936,1.009,0.931,1.021,1.098,0.984,1.015,0.943,0.915,0.957,0.943,0.99,0.986,0.902,0.915,0.975,0.991,0.973,1.12,1.115,0.938,1.128,1.068,1.063,1.067,0.876,1.028,1.016,0.902,1.063,1.069,1.104,1.057,0.993,1.134,1.034,0.98,0.983,0.96,0.887,1.156,0.981,0.93,0.979,0.887,1.103,1.096 +NM_177528,0.922,1.014,1.01,0.855,0.959,0.973,1.024,0.911,0.954,0.909,0.953,1.207,0.996,1.008,0.993,1.151,1.088,1.131,0.916,1.028,1.031,1.016,1.036,0.949,0.991,1.096,1.046,1.092,0.895,1.062,1.047,0.826,0.975,0.945,1.03,0.977,0.985,1.027,0.997,0.967,0.933,0.985,0.841,0.963,0.977,0.9,1.124,0.944,1.132,1.017,1.027,1.062,1.116,1.165 +NM_177532,0.726,1.197,0.764,0.869,0.763,2.496,1.206,0.642,0.814,0.742,1.594,0.79,0.767,0.735,0.789,1.034,0.766,1.058,0.682,2.118,0.716,0.744,1.121,0.81,1.06,0.703,0.9,0.86,1.233,2.011,0.819,0.97,0.689,1.459,0.738,0.965,1.213,0.833,1.874,1.102,0.871,1.29,1.34,1.027,0.726,2.08,1.408,0.671,1.592,0.758,1.173,0.765,0.69,0.997 +NM_177533,1.028,1.194,0.952,0.964,0.758,1.115,0.688,0.622,0.666,1.044,1.839,0.543,1.277,0.813,1.244,1.669,0.672,0.588,0.733,1.546,0.698,0.813,1.397,0.999,1.196,1.217,1.001,0.421,0.662,1.388,0.771,1.515,1.936,2.732,0.441,0.765,0.81,0.845,2.413,0.783,0.831,0.973,0.505,1.698,0.883,0.839,0.973,1.429,0.494,0.881,1.001,0.88,1.067,1.273 +NM_177535,0.857,1.242,0.932,1.077,0.763,0.8,1.033,0.871,0.887,1.071,0.914,0.996,0.879,0.904,0.949,0.85,0.744,1.054,0.952,1.073,1.01,0.831,1.091,1.038,1.153,0.953,1.06,0.881,1.027,1.15,0.965,6.059,1.233,2.258,0.716,0.963,0.826,1.114,1.12,1.925,0.792,1.397,0.863,0.763,0.804,0.91,0.972,0.762,0.821,1.101,0.974,1.177,1.139,0.936 +NM_177536,0.971,0.961,1.094,1.053,1.023,0.979,0.98,0.973,1.005,0.939,0.959,0.825,0.971,0.845,0.858,1.034,0.912,0.99,0.816,0.887,0.964,1.01,1.006,1.028,1.083,1.045,1.019,1.079,0.93,1.028,1.165,0.924,1.241,0.943,1.21,1.217,1.042,1.057,1.084,0.813,1.016,1.025,0.901,0.938,1.061,1.087,0.802,0.844,0.995,0.921,1.087,0.971,1.329,1.2 +NM_177538,0.973,1.06,1.019,0.991,0.943,0.992,0.914,1.0,1.105,1.065,0.896,0.997,1.031,0.936,0.969,0.982,1.048,0.869,1.069,1.116,1.086,1.06,0.864,1.059,1.111,0.93,1.129,1.068,0.616,1.009,1.02,1.105,1.077,0.943,1.009,1.082,0.911,1.053,1.052,0.958,1.011,1.13,0.963,0.952,1.038,1.0,1.125,0.998,1.157,0.887,1.111,0.968,0.987,0.965 +NM_177541,0.895,0.948,0.846,1.116,0.938,1.048,0.914,0.957,1.047,0.958,1.127,1.036,0.882,1.167,1.093,1.107,0.976,1.034,0.889,1.03,1.005,1.017,0.968,0.895,1.047,0.881,0.946,0.945,0.946,1.015,0.905,0.926,0.845,1.012,1.121,1.079,0.891,1.097,1.03,1.066,0.926,1.068,1.049,0.931,1.095,1.117,1.027,1.003,0.943,0.931,1.154,1.033,1.045,0.883 +NM_177543,0.971,0.826,0.978,1.039,1.013,0.988,1.037,0.867,0.949,0.921,1.062,0.953,0.897,0.976,0.958,1.053,1.096,1.01,1.068,1.031,0.959,1.036,1.063,1.077,0.994,1.124,1.158,0.982,0.977,0.947,1.072,0.975,1.07,1.022,1.152,1.048,1.11,0.954,0.971,1.023,0.985,1.023,1.133,0.896,0.961,1.348,0.844,1.049,0.965,0.939,0.94,0.865,1.097,1.069 +NM_177549,0.986,0.891,0.927,1.158,0.993,1.005,0.975,0.899,0.877,0.944,0.928,1.009,1.017,0.894,0.996,0.962,0.832,1.058,0.991,1.01,0.871,0.987,1.017,0.936,0.936,1.02,1.0,0.933,1.352,0.917,1.015,0.918,0.928,1.147,1.015,0.858,0.945,0.986,0.965,0.898,0.981,0.967,0.859,1.141,1.064,0.991,0.867,1.033,1.048,1.006,1.067,1.006,1.029,1.03 +NM_177551,1.431,0.723,1.639,1.007,1.331,0.691,0.698,1.116,2.167,1.662,0.692,0.864,1.258,1.192,1.294,1.211,1.248,1.093,2.083,0.779,1.17,1.015,0.747,1.662,0.765,1.44,1.642,1.852,0.663,0.755,1.947,0.791,1.862,0.756,1.384,0.721,0.851,1.419,0.819,2.029,1.665,0.881,0.791,0.908,1.7,0.854,1.299,1.488,0.84,1.574,0.83,1.031,1.376,0.956 +NM_177552,1.201,1.058,0.998,1.146,1.11,0.978,1.17,0.89,1.03,1.073,0.922,1.117,0.916,1.024,1.196,1.175,0.945,0.952,1.039,0.9,0.864,1.152,1.08,1.104,1.068,0.912,0.995,1.003,1.608,1.024,0.984,0.999,0.969,1.0,0.883,1.055,0.913,1.091,0.961,0.942,0.918,0.972,1.179,0.914,0.913,1.003,1.0,1.115,1.079,1.144,0.931,0.881,0.877,1.036 +NM_177553,1.043,1.062,1.096,0.903,1.006,0.926,1.14,1.047,0.842,0.937,1.002,1.007,1.096,1.065,0.913,0.954,0.954,1.116,0.876,1.085,1.015,1.017,0.952,0.988,0.927,0.937,1.022,1.086,0.976,0.986,1.105,1.089,1.124,1.064,0.919,0.968,1.055,1.031,1.004,0.906,0.917,0.923,0.915,1.023,0.934,0.927,1.106,1.019,1.123,1.022,0.974,0.913,1.044,0.956 +NM_177557,0.953,0.938,1.276,0.908,0.84,0.899,1.2,0.778,1.338,0.999,0.886,1.0,0.967,1.111,1.19,0.881,1.036,0.884,0.87,0.855,1.129,0.805,0.892,1.375,0.923,0.868,1.159,0.997,0.778,1.181,1.162,4.313,1.026,1.077,0.782,0.856,1.037,1.251,1.116,1.341,1.155,0.972,0.788,0.87,1.192,0.884,1.055,0.859,0.781,0.802,0.981,0.974,1.232,1.063 +NM_177559,0.919,0.766,1.137,0.869,1.021,1.067,1.007,0.864,1.087,0.897,1.003,0.885,0.829,0.71,1.236,1.09,0.837,1.087,0.904,1.22,0.778,1.094,1.161,0.906,0.852,0.91,0.955,1.028,1.045,1.122,0.982,0.796,1.082,0.946,1.046,1.093,0.998,0.856,1.067,1.103,0.989,1.266,1.047,1.033,1.025,1.145,0.932,0.725,1.219,0.837,0.939,0.937,0.945,1.443 +NM_177560,0.81,0.674,1.217,0.865,0.823,0.998,0.607,0.477,1.378,1.141,0.822,0.718,0.66,1.042,0.962,1.137,1.083,0.771,1.152,0.839,0.584,0.582,1.135,0.972,0.63,0.963,1.292,0.898,0.432,1.287,1.088,1.035,2.153,1.246,0.8,0.847,0.749,0.651,1.282,1.169,1.066,0.859,0.78,1.776,1.056,1.035,0.918,0.635,0.935,1.032,0.887,0.745,1.074,1.887 +NM_177924,1.612,1.542,2.706,1.512,2.608,1.839,1.123,1.3039999999999998,3.801,2.449,1.8860000000000001,1.258,1.432,1.922,2.286,2.839,2.166,2.028,2.975,1.814,1.397,1.606,2.524,1.938,1.119,2.6929999999999996,2.536,2.3040000000000003,0.9139999999999999,1.9929999999999999,3.443,2.9299999999999997,2.33,2.308,2.581,1.279,1.5790000000000002,2.439,2.596,1.3239999999999998,2.931,2.4290000000000003,1.2930000000000001,1.5390000000000001,2.553,1.563,2.14,1.9579999999999997,1.7229999999999999,1.932,1.904,1.505,2.574,3.158 +NM_177925,2.105,1.6349999999999998,3.268,1.463,2.8890000000000002,2.028,1.259,2.252,2.903,2.3810000000000002,2.092,1.607,2.351,1.658,2.043,2.527,3.274,3.268,3.496,1.504,1.425,2.657,1.612,2.26,0.974,2.761,2.448,2.758,1.161,1.777,3.261,1.169,4.37,2.3099999999999996,6.466,0.932,1.834,2.9749999999999996,2.13,1.9829999999999999,2.928,1.925,0.9890000000000001,1.512,2.7329999999999997,1.63,2.787,3.835,1.564,2.823,1.8719999999999999,1.411,2.107,1.126 +NM_177926,2.056,2.003,1.9980000000000002,1.964,1.7240000000000002,2.064,1.9289999999999998,1.962,1.836,2.0410000000000004,2.073,2.041,1.897,2.0700000000000003,1.9060000000000001,2.191,1.817,1.917,1.9769999999999999,2.008,1.875,2.083,2.056,1.899,2.189,2.088,1.821,1.873,2.8200000000000003,2.4210000000000003,1.935,2.02,2.143,2.6470000000000002,1.955,2.081,2.17,1.896,2.266,1.9169999999999998,1.835,2.124,2.3520000000000003,2.064,1.98,2.132,1.819,1.842,1.883,2.065,2.173,1.8,1.9020000000000001,1.919 +NM_177937,0.911,1.37,0.969,0.974,0.863,1.083,0.93,1.088,1.0,0.967,1.486,1.101,0.877,0.917,1.033,1.223,1.06,1.137,0.988,1.194,0.967,0.988,1.148,0.971,0.889,0.822,0.887,1.0,0.793,0.92,0.852,0.896,0.896,1.418,0.866,1.175,1.459,0.802,1.178,0.923,0.84,2.067,0.92,1.077,0.872,1.182,0.977,1.102,1.606,0.851,1.388,0.94,1.052,0.993 +NM_177938,0.663,1.797,0.899,0.798,0.637,1.24,0.63,0.528,0.733,0.698,1.752,0.61,0.638,0.554,0.937,1.736,0.51,0.949,0.739,1.371,0.566,0.615,1.847,0.597,1.205,0.729,0.602,0.727,0.777,2.14,0.683,2.471,2.0,1.718,0.354,1.366,0.854,0.704,1.358,0.872,0.729,1.018,1.253,2.001,0.636,1.194,0.912,0.629,0.92,0.519,1.004,1.194,0.666,1.797 +NM_177948,1.478,2.484,1.678,1.835,1.6829999999999998,2.202,2.149,1.645,1.6680000000000001,1.801,2.19,1.573,1.4700000000000002,1.704,1.992,1.771,1.8130000000000002,1.897,1.472,2.116,1.4500000000000002,1.677,2.3890000000000002,1.815,2.149,1.5759999999999998,2.0389999999999997,1.634,1.608,2.302,1.835,2.775,2.3930000000000002,2.464,1.637,2.146,2.457,1.688,2.342,1.877,1.797,2.505,2.008,2.237,1.706,2.166,1.798,1.5539999999999998,1.9129999999999998,1.762,2.167,2.0780000000000003,1.6600000000000001,2.444 +NM_177949,1.036,1.069,1.005,0.988,1.022,0.917,1.007,0.937,1.07,1.015,0.947,1.037,0.977,1.004,1.017,1.0,0.999,1.128,1.002,1.023,0.954,0.993,1.051,0.971,1.112,0.972,0.979,1.038,1.207,0.889,1.008,1.059,1.004,0.938,1.065,1.034,1.008,0.862,0.922,1.032,1.053,1.023,0.932,0.973,1.028,1.154,0.955,0.942,1.018,1.121,0.995,0.882,0.986,1.083 +NM_177951,1.763,1.7930000000000001,2.1100000000000003,1.8079999999999998,2.135,1.876,1.543,1.775,2.227,2.085,2.213,1.905,1.829,2.0780000000000003,2.03,2.183,1.9449999999999998,1.904,2.343,1.892,1.9809999999999999,1.6560000000000001,2.0149999999999997,2.186,1.931,1.9939999999999998,2.152,2.247,2.044,2.0309999999999997,2.4749999999999996,2.169,2.056,2.19,2.1550000000000002,1.899,2.037,1.9260000000000002,1.909,2.0149999999999997,2.2199999999999998,2.09,1.999,1.938,1.811,2.2279999999999998,2.151,1.784,2.106,1.8159999999999998,2.059,1.9929999999999999,2.12,1.9449999999999998 +NM_177952,0.973,1.002,1.032,0.877,0.986,0.88,1.088,0.945,0.96,1.047,0.866,1.097,1.067,0.817,1.055,1.042,1.028,0.985,1.022,0.973,0.948,0.961,1.056,0.958,1.026,1.113,1.172,1.173,0.789,1.044,1.016,1.035,0.954,1.085,1.056,0.993,0.966,1.06,1.106,0.991,0.977,0.9,1.171,1.099,1.083,1.034,1.019,1.068,0.935,1.102,1.073,0.954,0.962,1.099 +NM_177954,1.046,1.025,0.931,0.934,0.971,1.032,1.151,0.94,1.066,1.081,0.916,1.093,1.057,0.949,1.138,1.069,1.099,1.02,1.025,0.866,0.997,1.074,0.986,0.946,1.13,0.948,0.902,0.972,0.855,0.94,1.08,1.048,1.144,0.927,0.848,0.982,1.031,1.077,1.041,0.936,0.891,0.99,0.816,1.065,1.051,0.989,0.966,1.047,1.032,0.971,1.127,1.004,0.923,1.112 +NM_177959,0.996,0.91,0.809,1.027,0.864,1.019,0.8,1.07,1.186,0.847,1.285,1.065,0.964,1.026,0.912,1.211,1.038,0.936,1.149,1.004,1.083,0.959,1.073,0.988,1.099,1.086,1.058,0.903,0.797,1.133,1.022,1.357,0.91,0.97,0.988,0.924,1.089,0.986,1.044,0.96,0.797,0.931,0.823,1.14,1.009,0.984,0.884,0.914,1.049,0.911,0.87,0.953,0.896,1.089 +NM_177963,1.037,1.021,0.89,0.973,1.075,0.798,1.001,1.03,0.999,1.148,0.958,1.104,0.911,0.79,0.922,1.011,1.013,0.906,0.967,0.793,0.997,1.009,0.849,1.098,0.997,0.96,0.982,1.028,0.927,1.034,0.903,1.454,1.222,0.901,0.929,1.154,1.419,1.038,1.114,0.962,0.975,1.059,0.971,1.067,1.135,0.871,1.153,0.968,1.132,0.927,0.964,1.75,0.981,0.963 +NM_177964,0.576,2.726,0.524,1.555,0.581,3.109,1.732,0.521,0.655,0.539,1.637,0.573,0.568,0.489,0.752,1.704,0.517,1.634,0.68,2.067,0.474,0.587,0.762,0.597,1.628,0.586,0.655,0.529,2.698,3.14,0.668,1.884,0.742,5.125,0.585,1.11,2.027,0.557,1.711,0.655,0.491,1.923,1.16,1.307,0.591,2.074,0.624,0.605,0.726,0.53,1.733,0.962,0.629,1.38 +NM_177965,0.936,1.029,0.971,1.004,0.944,1.006,1.108,0.901,0.929,0.986,0.954,0.915,0.96,0.98,0.789,0.917,0.934,1.083,0.944,1.023,1.07,0.974,1.031,0.999,1.027,1.012,0.865,0.979,0.758,1.017,0.985,0.978,0.987,1.079,0.96,1.063,0.914,0.859,1.031,1.003,1.253,0.852,0.845,0.86,0.991,0.966,0.97,0.936,0.96,1.072,1.043,1.023,1.038,0.939 +NM_177967,0.804,0.796,1.286,0.757,0.982,1.042,0.472,0.522,1.539,0.991,1.015,0.538,0.697,1.012,1.111,1.803,1.334,0.804,1.944,0.599,0.759,0.78,0.973,1.181,0.578,1.026,1.17,0.905,0.523,1.496,0.958,1.538,1.477,1.214,0.613,0.584,0.86,1.222,1.073,0.804,1.543,0.914,0.613,1.341,0.919,0.84,1.381,0.879,0.92,0.948,0.823,0.644,0.973,1.009 +NM_177968,0.492,1.015,1.042,0.728,0.755,1.578,0.844,0.661,1.028,0.627,1.322,0.845,0.588,0.65,0.903,1.778,0.773,1.005,0.948,1.413,0.409,0.893,1.439,0.735,0.587,0.582,0.978,0.716,0.642,1.334,0.918,1.079,1.577,1.317,0.64,0.965,1.77,0.805,1.261,1.356,0.843,1.031,0.786,0.936,0.629,1.507,1.027,0.663,1.452,0.549,1.119,0.795,0.55,1.831 +NM_177969,0.791,1.033,0.817,0.985,0.821,0.934,0.712,0.788,1.124,0.999,1.089,0.819,0.769,0.979,0.973,1.23,0.76,0.929,0.906,1.098,0.902,0.722,1.151,0.871,0.923,0.878,0.83,0.897,0.608,0.97,1.172,0.996,1.68,1.092,0.936,1.112,0.981,0.74,1.024,1.004,0.896,1.018,1.153,1.073,0.899,1.218,0.952,0.739,1.001,0.776,1.06,0.73,1.109,1.394 +NM_177972,2.057,2.077,2.146,1.986,1.844,1.873,1.7040000000000002,1.9979999999999998,1.897,2.2750000000000004,1.9869999999999999,2.012,2.091,1.835,1.883,1.9939999999999998,1.856,2.135,1.98,1.907,1.9689999999999999,2.14,2.066,2.099,2.133,2.125,2.1710000000000003,2.026,1.513,1.851,2.1109999999999998,2.7030000000000003,1.964,2.093,1.963,2.015,1.908,2.021,2.029,1.9769999999999999,2.149,2.173,1.7,1.823,2.002,1.975,1.746,2.001,1.9609999999999999,2.0700000000000003,1.9929999999999999,1.8679999999999999,2.066,1.9809999999999999 +NM_177973,5.1739999999999995,0.867,4.404999999999999,1.8170000000000002,5.849,0.9740000000000001,1.025,5.331,6.328,8.212,0.984,3.776,3.3709999999999996,3.175,3.6510000000000002,2.6109999999999998,3.858,4.009,6.789,1.042,4.333,4.445,1.323,6.982,0.889,4.936,3.939,5.772,1.194,0.909,5.603,0.9329999999999999,2.42,0.9560000000000001,4.633,1.361,1.011,6.2059999999999995,1.13,1.299,5.768,1.04,0.982,1.6789999999999998,7.88,0.935,4.379,6.087,1.0310000000000001,3.627,1.706,2.214,6.245,1.141 +NM_177974,0.394,2.54,0.848,0.955,0.51,2.417,1.012,0.478,0.634,0.57,1.573,0.541,0.649,0.507,1.059,2.55,0.518,1.225,0.632,1.798,0.379,0.519,2.588,0.724,0.984,0.426,0.862,0.563,0.778,2.17,0.642,2.103,2.745,2.997,0.34,0.871,1.688,0.562,2.085,0.964,0.742,2.345,0.867,0.967,0.582,1.695,0.986,0.492,1.433,0.541,1.552,0.965,0.575,2.136 +NM_177976,1.879,2.097,2.261,1.775,1.7320000000000002,2.13,1.89,2.5060000000000002,2.229,1.784,2.05,2.1289999999999996,1.9260000000000002,1.569,2.138,1.873,2.004,2.056,2.269,1.861,2.1580000000000004,1.9889999999999999,2.167,1.9699999999999998,1.939,1.794,1.8860000000000001,1.967,2.2489999999999997,1.813,2.2649999999999997,1.9420000000000002,2.5140000000000002,1.714,2.06,1.861,2.106,2.083,2.069,1.724,2.133,1.904,2.121,2.047,1.926,2.207,2.261,1.874,1.829,1.963,1.891,2.029,1.8330000000000002,2.114 +NM_177977,1.015,1.064,1.007,1.056,1.047,1.085,1.094,1.132,0.975,1.149,0.981,1.173,0.945,0.917,1.057,0.919,0.908,1.133,1.0,1.046,0.967,1.043,0.98,0.996,0.97,1.03,0.976,0.806,1.142,0.898,0.927,1.003,1.546,1.08,0.968,0.986,0.924,1.091,1.096,0.939,1.035,1.214,1.019,1.038,0.928,1.016,0.863,0.93,0.838,1.026,1.012,0.868,1.14,0.938 +NM_177979,1.004,0.81,0.833,1.087,1.04,0.983,0.89,0.989,1.009,0.872,1.08,0.833,1.06,0.769,1.058,1.041,0.869,0.96,0.832,0.966,0.973,1.02,1.051,0.974,1.133,1.116,0.96,1.065,1.043,0.956,1.017,1.116,1.012,0.91,0.892,0.961,0.922,1.118,0.999,1.068,0.884,1.004,1.111,1.003,1.25,0.849,0.981,0.87,1.015,1.038,0.9,1.185,1.064,0.847 +NM_177980,1.032,0.928,1.236,0.889,0.972,1.148,0.91,0.893,1.649,0.979,0.994,1.073,1.03,0.894,1.223,0.948,1.213,1.156,1.155,1.049,0.919,0.942,0.93,1.014,0.977,1.057,2.643,1.053,1.038,1.002,1.076,0.875,1.057,0.951,1.063,1.056,0.903,1.147,1.07,1.029,1.041,0.916,1.108,0.954,1.219,0.897,0.958,0.962,0.972,1.015,1.003,0.994,1.092,1.079 +NM_177983,1.027,0.882,1.161,0.992,1.021,0.86,1.086,1.126,0.929,0.971,0.961,0.946,0.913,0.951,0.949,1.006,0.872,1.1,0.895,0.958,0.866,0.972,1.102,1.039,0.945,1.018,0.855,0.966,0.888,0.943,1.06,0.962,0.902,0.998,1.088,0.948,1.031,1.077,1.071,1.058,1.017,0.969,0.983,1.063,1.038,0.91,1.037,0.975,1.111,0.987,1.032,1.103,1.071,0.925 +NM_177985,0.82,0.828,1.529,0.549,1.167,1.63,0.708,1.472,1.343,1.186,0.848,1.496,1.195,0.649,1.113,2.026,1.054,1.162,0.995,0.878,0.474,1.678,1.093,2.125,0.667,0.546,1.764,0.986,0.649,1.0,1.624,1.0,1.47,1.263,0.581,0.419,1.01,1.507,1.316,0.893,1.088,1.013,0.504,0.563,1.345,0.773,1.084,0.943,0.89,1.063,1.01,0.641,0.64,1.436 +NM_177986,0.793,1.044,1.022,1.013,1.054,0.982,1.094,1.021,0.94,0.988,0.926,1.012,1.122,1.001,0.811,0.932,1.098,1.343,1.111,1.119,0.998,0.951,0.83,0.999,1.129,1.128,0.843,0.963,0.868,1.086,0.923,0.946,0.86,0.843,1.066,1.009,1.159,0.762,0.903,0.98,0.968,1.251,1.047,0.75,0.993,1.017,1.023,0.95,1.198,1.09,0.935,1.071,1.041,0.956 +NM_177988,0.629,0.99,1.328,0.657,0.921,1.521,0.806,0.704,1.323,1.242,0.989,1.102,0.758,0.533,0.719,2.288,0.699,1.049,0.94,1.1,0.36,0.986,1.568,1.071,0.509,0.343,0.952,0.906,0.473,1.436,0.723,1.781,4.62,1.283,0.197,0.894,1.327,1.055,2.001,1.01,1.328,1.193,0.743,1.17,1.348,1.3,1.395,0.801,1.674,0.797,0.952,1.045,0.703,4.274 +NM_177989,0.71,1.004,1.062,0.879,0.679,1.0,0.644,0.474,1.097,0.853,1.523,0.821,0.708,0.79,0.967,1.757,0.725,0.742,1.404,0.765,0.58,0.681,1.448,0.93,0.737,0.686,1.125,0.748,0.374,1.29,0.971,1.366,4.734,1.52,0.289,1.167,1.035,0.667,1.69,0.805,1.128,0.96,0.756,2.348,0.93,1.062,0.861,0.595,1.002,0.747,1.011,1.029,1.172,3.184 +NM_177990,1.002,0.99,0.989,1.223,1.046,0.995,1.041,0.896,0.894,0.936,1.004,1.191,1.0,0.969,1.012,0.948,0.995,0.911,1.157,0.892,1.171,1.043,0.904,1.072,0.968,1.06,1.052,0.94,1.023,1.0,1.005,0.949,0.978,1.013,0.925,1.011,1.046,1.049,0.974,1.022,1.024,0.944,0.924,1.036,0.973,1.112,0.982,1.039,0.959,1.026,0.978,0.87,0.976,1.107 +NM_177991,2.045,2.21,1.84,2.044,2.027,1.8679999999999999,1.8639999999999999,2.05,1.8370000000000002,2.144,2.0919999999999996,2.083,2.04,1.802,1.9769999999999999,2.0780000000000003,1.873,1.9729999999999999,1.998,2.001,2.067,2.139,1.84,1.9489999999999998,2.024,1.933,1.847,1.9889999999999999,1.992,2.044,1.893,2.207,1.9209999999999998,2.043,2.043,2.141,2.003,1.988,2.028,2.3810000000000002,2.139,2.077,2.083,1.923,1.8679999999999999,2.127,2.047,2.0709999999999997,2.093,1.911,1.961,1.833,1.767,2.609 +NM_177996,1.026,0.945,0.984,1.034,0.937,1.095,0.857,1.061,0.989,1.003,1.147,1.108,0.994,0.939,0.767,1.031,1.054,0.905,0.945,0.989,1.08,1.058,0.81,0.863,1.012,1.103,1.043,0.917,0.962,1.071,0.988,1.037,0.969,1.098,1.039,1.041,0.982,0.85,1.05,1.129,0.918,0.99,1.106,1.117,0.886,1.005,1.144,1.146,1.048,1.083,0.908,1.041,1.004,0.858 +NM_177998,0.974,1.037,1.094,0.958,1.071,0.933,0.882,1.032,0.86,0.962,0.981,1.036,0.896,1.041,1.192,1.044,1.123,0.952,0.815,0.92,0.918,1.069,1.034,0.971,0.995,1.026,1.119,1.023,0.95,1.043,0.99,1.014,0.842,0.932,1.114,1.014,1.123,0.996,1.146,1.067,1.0,0.937,0.942,0.942,1.076,1.256,0.958,1.067,1.039,1.078,0.932,1.0,0.956,0.972 +NM_177999,1.003,1.193,1.056,1.01,0.842,1.04,0.786,0.926,0.869,0.85,1.105,0.914,0.887,0.893,1.015,1.032,0.927,0.908,1.007,1.023,0.832,1.244,0.984,1.01,0.787,1.128,0.886,0.977,0.982,0.996,1.039,1.38,1.452,1.196,0.771,0.955,0.919,0.841,1.21,0.981,0.932,1.11,0.812,1.139,0.891,0.723,0.769,0.937,0.815,0.946,0.888,0.961,1.092,1.182 +NM_178003,0.756,1.159,1.399,0.765,0.988,1.154,0.611,0.588,0.984,1.148,0.962,0.855,0.722,0.612,0.898,1.481,1.137,1.177,1.224,1.258,0.398,0.804,1.187,1.169,0.777,1.012,1.155,0.829,0.469,1.467,0.975,1.477,1.619,1.202,0.303,0.861,0.966,0.95,1.612,0.835,1.156,1.056,0.602,1.363,0.998,0.793,0.819,1.035,0.931,0.979,1.079,0.619,0.647,1.598 +NM_178004,1.07,0.983,1.14,1.11,0.954,0.942,1.001,0.831,1.174,1.021,0.963,1.005,0.884,1.15,0.883,1.033,0.913,1.019,0.937,0.869,0.954,0.94,1.065,1.085,0.942,1.046,1.022,1.055,0.996,0.892,1.062,0.88,0.974,0.935,1.024,0.847,0.811,0.991,1.096,1.078,0.829,0.896,1.011,0.934,1.045,1.282,1.134,1.04,1.175,0.976,0.958,0.942,1.277,1.009 +NM_178007,1.046,0.958,0.876,0.996,0.899,1.118,0.829,0.995,0.94,1.067,1.003,1.147,0.885,0.937,0.93,1.207,1.221,0.925,0.972,0.971,1.152,1.015,0.858,1.051,1.011,1.0,1.19,1.107,0.619,0.938,0.906,1.038,0.969,1.052,1.22,0.949,0.941,1.073,0.987,1.134,0.98,1.105,0.99,1.005,0.922,1.133,1.043,0.909,1.078,1.16,0.857,0.975,1.065,1.124 +NM_178008,1.024,1.017,0.934,1.0,0.813,0.973,1.03,0.86,1.073,1.018,1.13,1.081,1.034,0.933,0.902,1.156,0.933,0.952,1.025,0.934,1.021,0.877,1.114,1.036,1.114,0.887,1.025,1.0,1.135,0.892,0.928,0.88,1.059,1.076,1.084,1.072,0.954,0.907,0.948,1.115,0.863,0.838,0.828,1.078,0.905,0.934,1.057,0.857,1.068,1.055,1.035,1.066,1.039,0.981 +NM_178009,1.018,1.071,1.036,1.061,1.136,0.97,0.772,0.945,0.834,0.994,0.859,1.107,0.955,1.052,0.839,1.144,1.011,1.007,1.099,0.919,0.908,0.937,1.001,0.894,0.94,1.002,0.825,1.01,1.246,0.877,0.952,0.893,0.918,0.885,0.951,0.934,1.026,0.868,1.135,1.106,0.88,1.03,0.796,1.196,1.079,1.086,0.994,1.176,0.912,1.032,1.243,0.852,1.049,0.999 +NM_178010,0.982,1.015,0.96,1.169,1.017,1.058,0.971,1.084,1.134,0.876,1.015,0.918,0.992,1.27,0.78,0.955,1.057,1.038,0.887,1.211,0.983,0.999,0.899,1.004,1.04,0.991,0.931,1.124,0.996,0.989,1.105,1.076,1.057,0.999,1.053,1.155,0.933,0.891,0.911,1.04,0.979,1.025,0.941,0.844,1.097,1.003,0.956,1.109,0.847,0.885,0.898,1.014,1.038,0.964 +NM_178011,0.919,1.007,1.17,1.023,1.073,0.943,0.974,0.912,1.029,1.004,1.203,1.224,1.055,1.219,0.982,1.001,1.002,0.901,0.879,1.091,1.116,1.066,1.051,0.996,1.013,1.006,0.984,0.923,0.875,0.853,0.872,0.938,1.099,0.896,0.935,0.877,0.953,0.976,0.944,1.006,0.875,0.868,1.219,1.002,0.946,0.98,1.071,1.038,0.883,0.908,1.02,0.923,1.035,1.05 +NM_178012,1.004,0.91,0.979,0.869,0.838,1.001,0.963,1.034,0.807,0.797,1.189,0.981,1.014,0.881,1.083,1.056,0.872,0.99,0.904,0.979,0.932,0.925,1.033,0.905,0.93,0.892,0.997,0.996,0.837,1.157,0.83,1.118,1.859,1.359,0.747,0.953,1.015,0.99,0.968,3.637,1.04,1.577,1.346,2.855,0.973,1.191,1.011,0.826,0.967,0.939,1.239,0.811,1.118,1.241 +NM_178013,0.898,0.923,0.973,1.036,1.142,0.847,1.103,1.033,1.076,0.945,1.105,0.925,0.95,1.01,0.974,0.926,0.994,0.976,1.073,1.022,1.24,1.0,0.931,0.955,1.032,1.055,0.988,0.96,1.186,0.975,0.874,0.998,1.038,0.916,1.089,1.036,0.903,0.998,0.86,1.155,1.224,1.013,1.351,0.964,0.85,0.897,0.99,1.023,0.878,0.991,1.06,1.073,1.128,0.841 +NM_178019,0.851,1.08,1.129,1.006,0.843,0.994,1.017,0.896,0.936,1.008,0.932,1.092,1.018,1.271,1.025,1.292,0.917,1.045,0.965,0.924,0.775,0.871,0.808,1.056,1.095,0.912,0.969,1.04,0.931,1.116,0.996,1.082,1.217,0.969,0.957,1.086,1.16,1.12,1.28,0.897,0.77,1.083,0.909,1.141,0.982,0.941,0.934,0.907,0.964,0.972,0.966,1.019,0.942,0.832 +NM_178025,1.024,1.161,1.101,1.008,1.013,0.89,1.066,1.006,0.989,1.062,1.039,1.189,1.187,0.987,1.33,1.286,0.958,1.13,0.988,1.049,1.005,0.924,0.96,0.918,1.051,0.94,0.993,0.996,0.966,0.957,1.053,1.168,0.867,0.992,1.08,1.052,0.95,1.148,1.107,1.087,0.968,0.99,0.984,1.046,1.002,1.025,0.941,0.934,1.055,0.863,1.001,1.124,0.891,0.903 +NM_178026,0.891,0.818,1.06,1.133,1.013,0.96,1.075,0.968,1.056,1.318,0.868,1.19,0.825,1.159,0.869,0.896,1.033,1.213,1.087,0.83,0.993,1.047,1.071,1.078,0.991,1.016,0.869,0.971,1.226,1.127,0.968,0.936,1.105,0.905,1.069,0.847,0.93,0.837,0.921,0.847,1.027,1.188,1.14,1.169,1.073,1.039,0.968,1.033,1.006,1.0,0.997,1.029,1.063,1.07 +NM_178031,1.005,1.391,1.25,0.934,0.764,0.816,0.73,0.812,1.101,1.0,0.843,0.76,1.165,1.005,0.814,0.889,0.965,0.966,1.121,0.829,0.988,0.92,0.766,1.114,1.362,1.034,1.458,1.0,0.564,1.138,1.219,2.408,1.994,0.985,1.642,0.823,0.771,0.937,1.738,2.343,0.972,0.798,0.805,1.782,0.982,0.771,0.965,1.285,0.734,1.022,0.917,1.85,1.581,1.475 +NM_178033,1.226,1.091,1.411,0.954,1.014,0.921,0.802,0.855,1.554,1.021,1.038,1.088,1.165,1.023,0.956,0.891,1.82,0.901,1.546,1.001,0.876,1.125,0.824,1.367,0.982,1.03,3.461,0.869,0.733,0.961,1.154,0.958,1.438,0.994,0.859,0.781,0.95,1.042,1.094,0.743,1.392,1.346,0.876,0.907,1.337,0.867,0.822,0.967,0.792,1.328,1.092,1.011,1.908,1.111 +NM_178034,0.998,1.12,0.946,0.922,1.018,0.932,0.855,0.964,1.022,0.918,0.953,0.961,0.969,0.831,0.871,1.043,1.005,0.993,0.89,1.086,0.918,1.059,1.003,0.89,0.941,1.105,0.954,1.012,1.156,1.062,0.962,0.946,0.953,0.863,1.049,1.112,0.974,0.955,1.115,1.047,0.979,0.994,1.211,1.09,1.061,0.865,1.074,1.079,1.119,0.966,0.996,1.204,1.029,0.998 +NM_178038,1.082,0.81,1.098,0.825,1.174,0.916,0.669,0.769,1.09,1.292,0.77,0.75,0.833,0.959,0.844,0.988,1.185,1.123,1.266,0.868,0.954,1.168,1.111,1.285,0.708,1.108,1.105,0.802,0.79,1.232,0.928,1.07,1.157,0.983,0.882,0.778,0.914,1.719,1.271,0.976,1.235,0.788,0.69,1.207,1.299,0.714,1.1,1.146,0.834,1.16,0.677,1.044,1.042,1.0 +NM_178040,0.909,0.919,1.282,1.054,1.088,0.96,1.299,1.055,1.03,0.91,1.071,0.961,1.042,1.038,0.952,0.983,0.98,1.15,1.038,0.94,0.997,0.956,0.809,0.919,1.157,0.875,0.919,0.933,1.176,0.97,1.13,1.048,1.04,1.032,0.836,1.022,1.016,1.012,1.003,0.917,1.054,1.008,1.169,1.012,1.024,1.072,0.972,0.956,0.812,1.04,1.125,0.879,1.124,0.988 +NM_178043,1.873,1.896,2.2279999999999998,2.0140000000000002,1.97,1.956,1.8780000000000001,2.113,2.109,2.088,2.069,1.9809999999999999,1.936,2.0,2.001,2.0220000000000002,1.8599999999999999,1.833,1.987,1.8559999999999999,1.897,1.709,1.898,2.012,2.032,2.056,2.037,1.8719999999999999,1.464,1.923,1.963,1.897,1.968,2.157,1.716,2.01,2.167,1.972,2.17,1.924,2.194,2.101,2.261,1.992,2.008,2.294,1.9180000000000001,1.876,2.2670000000000003,1.861,2.1879999999999997,1.894,1.9409999999999998,1.859 +NM_178044,0.269,0.905,0.753,0.816,0.425,3.139,0.945,0.385,0.748,0.613,1.407,0.615,0.391,0.302,1.518,3.915,0.47,1.06,0.735,2.567,0.284,0.388,2.098,0.766,0.766,0.456,0.804,0.396,0.473,2.364,0.577,1.058,3.233,1.673,0.357,1.38,1.632,0.47,2.129,2.286,0.57,1.756,1.266,1.069,0.773,1.504,1.037,0.404,1.027,0.476,1.666,0.62,0.561,2.147 +NM_178120,0.977,1.043,1.015,1.033,1.006,0.919,1.167,1.154,1.087,1.014,0.799,0.923,0.978,0.948,1.159,1.002,1.041,1.106,1.038,1.085,1.001,0.952,1.235,1.012,1.001,0.958,0.946,1.055,0.895,1.066,1.07,0.873,1.217,0.918,0.854,0.877,0.966,0.989,1.07,0.961,1.01,1.139,0.875,0.893,0.872,1.08,1.046,1.099,1.033,0.981,1.073,0.799,1.046,1.047 +NM_178121,0.707,1.369,1.336,0.59,1.238,0.713,0.559,0.477,1.136,1.135,0.631,0.723,0.63,0.784,0.785,0.973,1.009,1.004,1.2,0.955,0.589,0.987,1.839,1.006,0.806,0.935,1.458,1.048,0.588,1.012,1.004,2.052,1.533,1.048,0.835,0.937,0.903,1.253,0.938,1.446,0.962,1.315,0.68,1.313,0.98,0.814,1.272,1.136,0.781,0.941,0.868,0.863,1.075,1.638 +NM_178123,0.511,0.759,1.233,0.666,0.567,1.61,0.801,0.6,0.841,0.489,1.199,0.54,0.521,0.536,0.98,1.75,0.745,0.906,0.694,1.26,0.561,0.515,1.306,0.755,0.582,0.425,0.914,0.69,0.604,1.169,0.529,2.392,1.836,1.289,0.489,1.098,1.23,0.496,1.316,2.718,0.804,1.343,0.986,1.339,0.659,1.273,1.214,0.409,1.274,0.684,1.454,1.142,0.543,1.284 +NM_178124,0.755,1.026,1.108,0.941,0.646,1.268,0.673,0.535,0.938,0.843,1.416,0.719,0.719,0.763,1.086,1.593,0.916,0.86,1.22,0.977,0.587,0.838,1.222,1.01,0.768,1.005,1.115,0.788,0.596,1.333,0.825,1.39,1.876,1.341,0.413,1.079,1.343,0.887,1.348,0.654,0.99,1.025,0.767,1.803,0.88,1.104,1.217,0.826,1.026,0.804,1.067,0.995,0.929,1.265 +NM_178125,0.942,1.321,0.906,0.876,1.074,1.115,0.849,1.2,1.03,1.041,0.978,0.991,0.93,0.959,1.212,0.961,1.01,0.949,0.891,1.017,1.116,1.011,0.807,0.991,1.885,1.058,1.117,1.094,0.9,1.094,0.989,0.913,1.148,1.409,0.872,1.044,1.058,0.963,1.08,0.995,0.908,1.038,1.075,0.88,1.013,0.946,0.886,0.835,0.958,0.923,0.918,1.015,0.794,0.969 +NM_178126,0.73,1.364,1.355,0.704,0.986,0.911,0.613,0.459,1.105,0.873,0.809,0.744,0.697,0.729,0.743,0.988,0.864,1.275,1.582,0.912,0.58,0.941,1.051,0.859,0.745,1.292,1.037,0.996,0.549,1.592,0.854,1.373,0.945,1.447,0.476,0.958,0.938,1.078,1.106,0.834,1.162,1.308,0.507,1.488,0.948,0.788,1.079,1.269,0.631,0.983,0.788,0.919,0.931,0.971 +NM_178127,1.087,0.866,1.128,1.001,1.3,1.008,0.968,1.048,0.887,1.06,0.956,1.05,1.083,0.958,1.162,0.92,1.0,1.004,0.962,0.96,1.013,0.913,0.94,1.079,1.052,0.993,0.819,1.037,0.871,1.027,1.012,1.014,0.856,0.938,0.883,1.017,0.953,0.942,0.965,1.036,0.994,1.065,0.924,0.99,0.986,0.799,1.065,1.037,1.272,0.933,0.974,0.887,0.938,1.046 +NM_178128,0.982,1.044,1.008,0.929,0.975,1.023,1.041,1.024,0.911,0.994,1.079,1.003,1.093,0.866,1.008,0.882,1.037,1.015,0.985,1.071,0.946,0.994,1.026,0.958,0.921,1.002,1.134,1.052,1.057,0.918,0.973,0.909,1.011,0.992,0.896,0.942,1.055,1.043,0.973,1.049,0.975,0.976,0.938,0.808,0.987,0.963,1.065,1.0,0.873,1.022,1.19,0.829,0.989,0.947 +NM_178129,0.946,1.045,1.008,1.03,1.118,1.033,1.031,0.848,1.056,0.901,1.052,0.958,0.947,0.744,0.918,0.885,0.91,0.864,0.899,0.904,1.052,0.986,1.148,0.904,1.051,1.019,0.956,0.814,0.778,1.173,0.898,0.983,1.003,1.088,0.772,0.851,0.878,0.917,1.245,1.1,1.043,1.286,0.727,0.944,0.938,0.939,1.003,0.889,0.87,1.025,0.975,0.918,1.066,1.386 +NM_178130,1.06,0.936,0.955,1.008,0.793,0.914,0.893,1.084,0.927,0.882,0.933,1.064,0.885,1.159,0.997,0.988,1.04,1.367,1.141,0.936,1.077,0.904,0.803,0.987,1.014,1.004,1.222,0.977,0.615,0.912,1.011,0.985,0.903,0.907,0.955,0.929,1.198,0.985,1.005,1.084,0.917,0.917,1.207,1.125,1.027,0.973,0.962,0.925,0.962,0.953,1.016,1.136,1.202,0.982 +NM_178134,1.01,1.068,0.942,1.116,1.046,1.04,0.958,0.867,1.05,1.046,1.128,0.901,0.947,0.999,1.047,1.045,0.927,0.861,0.965,1.113,1.083,1.029,1.0,1.047,1.096,0.98,1.137,1.008,1.154,0.943,1.063,0.907,1.088,0.943,0.989,1.091,1.144,1.019,0.911,0.979,1.023,1.059,1.055,0.993,1.124,1.094,0.919,0.974,1.059,0.913,0.97,1.046,1.088,0.859 +NM_178136,0.725,1.035,1.022,0.82,0.741,1.186,0.751,0.73,1.014,0.748,0.995,0.756,0.763,0.857,1.09,1.459,0.852,0.967,1.216,0.996,0.679,0.918,1.085,0.962,0.726,0.966,1.239,0.892,0.546,1.336,1.179,1.175,1.458,1.847,0.701,0.827,0.988,0.914,1.445,0.864,0.902,1.217,0.571,1.046,0.84,0.722,0.695,0.939,0.863,0.745,1.1,0.715,0.733,1.625 +NM_178138,2.08,2.129,2.032,2.116,2.0869999999999997,1.8359999999999999,2.042,1.9060000000000001,2.193,2.028,1.952,2.282,2.138,1.901,2.145,1.87,2.1310000000000002,2.067,1.9420000000000002,2.117,2.044,1.9449999999999998,1.893,1.952,1.914,1.8780000000000001,1.987,2.299,2.199,1.8439999999999999,2.409,2.073,2.048,2.047,2.191,1.7810000000000001,1.992,2.34,1.976,1.794,2.104,2.097,1.925,1.947,2.052,2.013,1.983,2.1159999999999997,2.175,1.994,2.05,1.978,2.126,1.859 +NM_178140,1.095,0.988,1.125,0.907,0.985,1.024,0.944,0.98,0.885,0.971,1.101,0.898,0.915,0.951,1.097,0.918,1.034,0.925,0.832,0.973,0.905,1.017,0.978,0.976,1.042,1.023,1.069,0.962,0.868,1.031,1.124,1.159,0.934,1.08,0.974,0.97,0.969,0.993,1.103,1.016,0.988,1.166,1.105,0.988,1.024,0.988,0.942,0.93,1.1,1.065,1.039,1.001,0.905,0.904 +NM_178145,0.695,1.134,0.901,0.753,0.689,1.505,0.699,0.596,0.759,0.667,1.575,0.714,0.735,0.683,1.532,3.121,0.68,0.759,0.71,1.616,0.697,0.665,1.642,0.707,0.772,0.761,0.77,0.682,0.643,1.438,0.777,2.604,0.819,1.003,0.682,0.753,1.546,0.741,1.185,1.029,0.751,1.382,1.01,0.923,0.654,1.497,0.709,0.758,0.997,0.973,1.335,1.089,0.84,2.102 +NM_178148,0.436,1.324,0.474,0.918,0.434,1.805,0.588,0.384,0.527,0.539,1.199,0.547,0.618,0.487,0.717,1.588,0.432,1.192,0.663,0.991,0.543,0.565,1.295,0.622,1.06,0.604,0.755,0.379,0.903,1.748,0.531,2.146,1.991,1.843,0.344,1.594,1.254,0.56,1.766,1.389,0.441,1.4,0.721,2.188,0.555,0.858,0.968,0.487,0.752,0.532,0.993,0.982,0.669,1.826 +NM_178150,0.614,1.141,1.169,0.671,0.862,1.027,0.723,0.459,0.938,1.01,1.049,0.814,0.59,0.673,0.972,1.029,0.867,0.77,0.797,1.033,0.489,0.724,1.007,1.081,0.674,0.684,1.189,0.79,0.412,1.219,0.817,2.369,1.381,1.17,0.398,0.672,1.085,0.873,1.264,0.937,1.096,1.309,0.965,1.32,0.897,1.151,1.04,0.627,0.874,0.602,1.031,0.941,0.875,1.368 +NM_178151,0.858,0.942,1.117,1.197,1.107,1.045,1.0,1.099,0.879,0.855,1.029,1.136,1.038,1.183,0.809,0.962,1.147,1.051,0.938,0.931,1.062,0.973,1.032,0.884,1.025,0.991,1.038,1.018,1.192,0.89,1.002,1.095,1.093,0.885,0.933,1.0,0.997,1.056,0.838,0.952,1.079,1.035,0.947,0.792,0.968,0.852,1.085,1.065,0.96,1.15,1.029,0.856,1.0,1.026 +NM_178153,0.973,0.896,1.054,1.02,0.997,0.955,1.081,0.936,0.884,1.032,1.136,0.952,0.961,1.103,0.982,1.043,0.956,0.966,0.945,0.966,0.898,0.943,0.874,1.056,0.949,0.956,1.051,0.96,1.022,1.027,0.951,1.102,0.888,1.051,1.005,1.017,1.022,1.012,1.005,0.996,1.0,1.013,1.4,0.978,1.064,1.047,0.816,1.074,1.059,0.918,1.059,0.982,0.999,0.925 +NM_178157,0.392,2.197,0.56,0.826,0.427,3.046,1.459,0.501,0.61,0.464,1.473,0.501,0.439,0.351,0.838,2.192,0.482,1.245,0.477,1.906,0.512,0.562,2.11,0.527,0.829,0.371,0.501,0.508,0.877,2.738,0.455,1.887,1.803,2.614,0.334,0.674,1.638,0.558,2.379,0.947,0.411,1.828,0.957,1.429,0.397,1.222,1.199,0.351,1.32,0.452,1.969,0.732,0.472,3.24 +NM_178159,1.006,1.023,1.11,0.817,0.882,0.897,0.805,1.016,0.987,1.082,0.868,0.849,1.013,0.869,1.083,0.971,1.102,0.918,1.083,0.876,0.836,1.037,1.111,0.929,0.864,1.002,1.398,1.034,1.078,1.027,0.829,1.159,0.896,0.996,0.695,0.898,0.976,1.074,1.046,0.996,1.132,0.946,0.972,1.052,1.058,0.875,1.024,0.944,0.821,0.835,0.895,0.84,0.967,1.059 +NM_178160,0.916,1.005,1.022,0.99,0.947,0.96,1.034,1.092,0.992,1.049,0.992,1.029,0.971,0.992,0.925,0.94,0.981,0.97,0.976,1.011,1.189,1.266,1.138,0.966,0.971,0.949,0.968,1.105,1.181,1.088,0.853,1.178,0.996,0.785,0.951,1.006,1.022,1.167,0.929,1.034,0.951,1.054,1.263,1.053,1.057,0.811,1.002,0.999,1.035,1.002,1.025,0.907,1.033,0.964 +NM_178161,1.131,0.975,1.263,0.989,0.963,0.93,1.353,0.846,1.004,0.797,0.908,0.947,1.019,1.295,0.847,1.168,1.014,1.03,1.127,0.901,1.206,1.029,0.856,1.052,1.016,1.13,1.083,1.17,0.632,1.02,1.002,1.11,0.765,0.92,1.038,0.912,1.09,1.042,1.027,1.013,0.973,1.176,1.072,0.829,0.989,0.998,1.032,1.085,0.998,1.111,1.094,1.018,1.145,0.868 +NM_178167,1.056,1.059,1.052,0.798,1.151,0.953,0.99,0.939,0.824,1.056,1.073,0.979,0.95,0.912,1.193,1.097,1.011,1.066,1.168,1.086,0.985,1.057,0.793,1.168,0.916,0.993,1.188,1.034,0.991,0.993,0.97,1.066,1.055,0.968,0.945,1.023,0.902,1.033,0.94,0.846,1.05,1.079,1.005,1.069,0.956,0.9,1.03,1.166,0.993,0.939,1.082,1.019,1.034,1.074 +NM_178168,0.897,1.061,0.893,0.913,1.135,1.007,1.138,0.989,0.861,1.147,0.941,0.956,1.107,1.041,0.929,1.088,1.045,0.826,1.085,0.926,1.039,0.945,0.997,0.927,0.745,0.969,0.843,0.946,0.943,0.923,0.958,1.092,0.775,0.977,1.014,1.08,0.889,0.811,1.17,1.057,0.978,0.958,1.077,1.007,0.968,1.034,1.065,0.949,1.054,0.837,1.007,0.936,1.109,1.151 +NM_178169,0.847,0.932,1.09,1.045,0.989,0.952,1.212,0.903,0.904,1.036,0.884,0.903,0.947,0.984,1.089,0.938,1.01,0.927,1.277,1.073,0.972,1.008,0.964,0.901,0.824,0.989,0.955,1.025,0.934,0.968,1.078,0.97,1.0,0.996,1.071,1.046,1.007,1.199,0.986,1.227,1.136,1.177,0.748,1.217,1.058,0.928,1.131,1.027,1.049,1.016,0.938,0.985,0.983,1.05 +NM_178171,1.179,0.966,1.015,1.07,1.148,1.107,1.06,0.994,1.125,0.979,0.959,0.927,1.056,0.983,0.857,1.067,1.05,0.951,1.157,0.891,0.98,0.936,1.006,0.959,1.056,0.867,0.962,0.875,0.818,0.959,1.031,0.924,1.042,1.056,1.287,1.121,1.072,1.002,1.018,1.049,0.933,1.005,1.025,1.017,0.983,0.98,1.001,1.082,0.98,1.215,0.984,0.975,1.073,0.994 +NM_178173,0.96,1.087,1.199,1.065,1.084,0.939,0.871,0.872,1.009,1.039,0.932,0.968,0.959,0.86,0.974,1.104,1.037,1.085,1.165,0.962,1.106,0.891,0.816,0.918,0.959,1.112,1.019,0.998,0.76,0.908,0.907,0.9,1.042,0.895,1.151,1.036,0.856,0.87,0.97,1.069,1.09,1.244,0.976,0.939,1.008,1.08,1.01,1.145,1.094,0.897,0.979,0.852,1.006,0.9 +NM_178174,1.218,0.945,1.094,1.002,1.023,0.994,1.02,0.895,0.988,0.931,1.025,0.996,1.098,0.928,0.995,1.078,1.109,1.003,0.92,1.026,0.937,1.074,0.988,1.035,1.048,0.99,1.05,0.955,1.178,0.939,1.048,0.925,0.986,1.013,0.923,1.036,1.018,0.877,1.018,1.092,0.955,0.945,1.132,0.949,1.046,0.914,1.032,1.057,1.026,1.101,1.035,0.981,0.962,1.112 +NM_178175,0.988,0.879,1.11,0.844,0.95,0.889,0.854,1.211,1.149,1.278,1.344,0.961,1.017,1.12,0.845,1.012,1.165,0.862,0.999,1.098,0.94,1.126,1.119,1.172,1.071,1.043,0.912,1.025,0.861,1.029,1.168,0.976,1.04,1.024,0.949,0.858,1.083,0.991,1.037,1.117,1.033,1.001,0.843,1.106,1.081,0.723,1.065,0.931,0.997,0.933,0.821,1.123,0.857,0.852 +NM_178177,0.974,1.119,1.248,0.762,0.993,1.078,0.656,0.629,0.977,1.091,1.163,1.112,0.835,0.683,1.048,1.223,0.986,0.771,0.986,1.122,0.686,0.802,1.129,1.193,0.792,0.73,1.43,0.981,0.672,1.187,0.759,1.123,2.544,1.051,0.563,0.833,1.071,1.444,0.803,0.612,1.376,1.229,0.889,1.599,1.054,1.049,0.962,0.736,0.899,0.952,1.128,1.138,0.957,1.492 +NM_178181,1.911,2.145,2.412,1.787,2.061,2.1319999999999997,1.684,1.8039999999999998,2.157,1.9769999999999999,1.8860000000000001,1.937,1.8259999999999998,1.771,1.845,2.184,2.2199999999999998,2.058,2.1479999999999997,2.117,1.8650000000000002,1.7599999999999998,1.68,1.91,1.783,1.896,2.059,1.926,1.674,2.263,2.05,1.823,2.005,1.879,2.801,1.814,1.822,1.968,2.28,2.0629999999999997,2.265,1.988,1.8170000000000002,2.066,2.085,1.891,2.33,2.028,2.164,2.195,2.035,1.869,2.283,1.909 +NM_178191,0.94,2.117,1.165,0.826,1.348,1.6,0.775,0.682,1.378,0.728,0.973,1.042,0.635,0.832,0.901,1.312,0.847,1.039,1.178,1.159,0.686,0.959,1.862,0.797,0.775,0.697,1.471,1.287,0.873,1.109,0.841,1.055,1.406,1.543,1.205,0.751,1.502,1.161,1.112,0.665,0.813,1.212,1.086,0.935,0.995,1.021,0.944,0.826,1.275,0.773,0.832,0.601,0.904,1.166 +NM_178225,1.207,0.91,0.828,1.075,0.924,1.021,1.06,0.977,0.97,1.03,1.007,1.116,0.864,1.16,0.916,1.095,1.003,1.134,0.963,1.118,1.021,0.857,0.889,1.066,1.017,1.091,0.98,1.19,1.097,1.146,0.913,1.089,0.948,0.855,0.926,1.019,0.96,1.002,0.964,0.961,0.882,0.933,1.05,0.885,0.922,1.05,0.875,1.106,0.92,1.037,0.932,0.965,1.048,0.98 +NM_178226,1.055,0.683,0.792,1.066,0.725,1.486,0.53,0.723,0.837,0.579,1.322,0.957,1.184,0.522,1.091,1.818,0.71,1.068,1.392,0.953,0.78,1.391,0.921,1.179,0.69,1.437,0.892,0.707,0.76,1.133,0.683,1.106,1.181,1.503,0.741,1.655,1.16,0.928,2.264,0.889,0.832,1.101,0.779,1.485,0.867,0.906,0.711,1.429,0.803,1.13,0.999,0.628,1.062,1.234 +NM_178228,0.925,0.988,1.077,1.161,0.871,0.996,1.177,0.995,0.976,0.996,0.834,0.991,0.991,1.018,1.162,0.955,0.972,1.237,0.853,1.002,1.086,0.939,1.103,0.971,1.036,0.975,0.999,0.905,1.137,1.15,1.026,1.067,1.02,0.938,0.913,1.188,1.02,0.997,0.946,1.048,1.0,1.068,1.158,0.834,0.918,1.111,0.954,1.048,0.93,1.0,1.029,1.009,1.068,1.066 +NM_178229,0.638,1.175,0.992,1.18,0.782,1.071,0.881,0.458,0.769,0.762,0.911,0.899,0.634,0.617,0.887,1.197,0.665,0.999,1.001,0.886,0.704,0.641,2.3,0.851,0.826,0.585,1.642,0.569,0.672,1.191,0.751,2.137,3.571,0.997,0.403,3.954,1.217,0.602,2.415,2.377,0.791,0.808,1.151,2.68,0.854,1.086,1.198,0.604,1.819,0.748,1.872,1.625,0.848,3.482 +NM_178230,0.886,0.662,1.324,0.785,1.12,1.059,0.416,0.968,1.179,1.146,0.607,1.438,1.076,0.512,0.834,1.624,1.0,0.937,1.581,0.724,0.511,1.04,1.328,1.577,0.462,1.173,1.365,0.932,0.272,0.793,1.027,1.091,1.873,1.015,0.266,0.907,0.758,1.121,1.525,0.662,1.189,0.719,0.398,1.547,1.206,0.655,1.072,1.123,0.986,1.209,0.941,0.921,1.059,1.431 +NM_178232,1.062,0.952,1.16,0.91,1.095,1.019,1.149,1.154,1.19,1.129,0.907,1.065,0.946,1.227,1.084,1.022,0.996,0.833,0.959,1.124,0.941,0.99,1.029,0.959,1.086,1.022,0.984,0.893,0.897,0.909,0.847,1.04,1.078,0.926,0.869,0.958,0.967,0.971,0.979,1.056,0.945,1.254,1.138,0.928,0.994,1.165,0.968,0.945,1.001,1.104,0.878,0.969,0.932,0.898 +NM_178233,1.296,0.836,1.144,1.038,1.313,0.934,0.811,0.909,1.099,1.477,1.192,1.242,0.92,1.082,1.389,2.259,0.94,1.384,2.523,1.089,1.409,1.5,0.851,1.581,0.751,2.016,1.226,1.005,0.777,0.801,1.019,0.753,0.881,0.739,0.883,0.913,2.229,2.22,0.848,0.824,1.289,1.015,0.909,0.793,1.3,1.173,1.117,1.871,0.852,1.314,1.02,0.945,1.366,0.843 +NM_178234,1.03,0.691,1.33,0.977,1.212,0.717,0.778,1.09,1.442,1.579,0.654,1.327,1.043,0.944,1.121,1.052,1.067,1.21,1.641,0.916,1.127,0.88,0.869,1.634,0.812,0.929,2.157,1.088,0.519,0.999,1.185,1.45,1.431,1.323,0.751,0.67,0.775,1.237,0.764,0.895,1.151,0.927,0.75,0.722,1.135,0.739,1.512,0.914,0.64,1.189,0.806,1.31,1.609,1.132 +NM_178237,0.617,1.089,1.679,0.679,1.503,1.295,0.741,0.919,1.542,1.304,0.859,1.233,0.696,0.997,1.292,1.512,1.077,1.039,1.422,1.224,0.531,1.161,1.125,1.561,0.479,0.587,1.507,1.048,0.611,1.138,1.469,0.917,1.835,0.988,0.577,0.592,0.926,1.206,1.032,0.751,1.271,1.104,0.619,0.747,1.164,1.071,0.952,0.887,1.204,0.807,1.197,0.778,0.833,1.194 +NM_178271,1.009,0.968,0.989,0.951,0.814,1.162,1.042,0.963,0.866,1.025,1.051,0.934,1.04,1.08,1.003,0.96,0.924,1.03,0.968,1.136,1.094,0.975,0.827,0.991,1.01,0.976,1.011,1.02,0.937,0.961,1.14,1.072,0.971,0.856,1.151,1.012,0.867,1.035,1.011,1.001,0.954,1.086,1.125,1.009,1.058,1.016,0.97,1.03,1.119,0.974,1.042,0.947,0.903,0.971 +NM_178273,0.953,0.896,0.959,0.993,0.973,1.186,0.903,1.03,0.976,0.949,1.034,1.003,1.082,0.851,0.977,0.971,1.031,0.859,0.994,1.012,1.078,0.937,1.07,1.006,1.014,0.975,0.988,0.974,1.236,0.943,0.985,1.245,1.104,1.029,0.978,0.976,1.003,1.036,1.27,1.479,0.87,1.056,1.042,1.0,1.01,1.183,0.906,0.952,1.006,0.897,0.918,1.277,0.951,1.1 +NM_178275,0.903,0.918,1.07,1.104,0.926,0.913,1.004,0.938,1.109,1.038,1.004,0.959,0.955,1.105,1.16,1.078,1.032,1.061,1.027,0.938,0.942,1.05,0.911,0.89,0.986,0.995,0.983,0.917,1.383,1.004,1.053,0.891,0.947,0.983,0.921,1.073,1.017,1.02,0.803,0.902,1.127,0.857,1.297,1.036,1.0,1.107,0.877,0.869,0.915,0.873,0.897,0.961,0.907,1.092 +NM_178311,0.976,1.019,1.016,1.06,1.105,1.027,0.894,1.013,1.004,1.001,0.987,1.044,0.904,0.889,1.005,1.002,0.953,1.009,0.926,1.109,0.979,1.013,0.946,0.985,1.009,1.172,1.079,1.041,1.35,0.887,0.943,0.949,0.94,0.986,1.21,1.078,1.03,0.946,1.008,1.202,1.034,1.114,0.984,0.974,0.982,0.949,0.967,1.003,0.957,0.942,0.959,1.133,0.975,0.988 +NM_178312,0.979,0.985,0.908,1.017,1.084,0.927,0.801,1.076,0.934,1.137,1.034,1.058,0.895,0.874,1.134,0.964,0.903,0.918,1.047,0.925,0.915,1.068,0.988,0.986,1.007,1.033,0.952,1.048,1.256,0.937,0.923,1.131,0.981,0.828,1.094,0.97,0.976,1.093,1.081,1.108,0.915,1.032,0.878,1.115,1.002,1.039,0.948,0.96,0.927,0.958,0.877,1.035,0.943,0.869 +NM_178313,0.798,1.157,0.874,0.883,0.806,1.135,1.001,1.081,0.95,0.904,0.98,0.871,0.762,0.723,0.916,1.145,0.945,0.843,0.858,1.086,0.871,0.904,1.272,0.84,0.912,0.83,0.885,0.903,1.067,1.251,0.91,0.886,1.018,1.257,0.888,1.197,0.908,0.843,1.537,1.354,1.045,1.211,0.895,1.201,0.825,1.281,1.32,0.894,1.473,0.788,1.067,0.97,0.882,1.285 +NM_178314,1.179,1.026,1.08,0.871,0.942,0.933,0.864,0.958,0.997,1.04,0.962,1.036,1.076,1.033,0.867,1.091,0.906,1.099,0.963,0.805,1.125,0.879,0.972,0.997,1.032,1.037,1.028,1.038,1.295,1.073,1.11,1.226,1.178,0.956,0.841,0.948,0.901,1.167,0.916,0.979,0.974,1.083,1.006,0.912,0.939,0.838,0.922,0.939,0.912,0.926,1.072,1.055,1.012,1.003 +NM_178315,0.982,1.178,1.037,1.015,0.921,1.106,0.86,0.976,1.013,1.112,0.967,0.923,0.925,1.022,0.918,1.1,1.06,0.918,1.06,0.938,1.126,0.96,0.862,0.96,0.986,0.96,0.996,1.146,0.765,0.951,1.013,0.98,0.924,1.007,0.873,1.111,1.003,0.919,0.917,0.987,1.029,0.973,1.017,0.981,1.152,1.021,0.885,1.035,1.034,0.898,1.259,1.024,1.069,1.107 +NM_178324,2.659,1.5659999999999998,2.9749999999999996,1.842,3.035,1.827,1.5830000000000002,2.598,3.613,2.1180000000000003,1.624,2.089,2.66,2.771,2.3280000000000003,2.221,2.3529999999999998,2.3600000000000003,3.136,1.396,1.669,3.024,1.694,2.271,1.327,2.864,1.9569999999999999,3.759,1.6400000000000001,1.75,2.401,2.036,2.7430000000000003,1.7120000000000002,4.2059999999999995,1.565,1.525,3.555,2.043,1.613,3.032,1.603,1.4489999999999998,1.9529999999999998,2.5709999999999997,1.641,2.177,3.351,1.616,2.792,1.7930000000000001,1.581,2.1159999999999997,2.2169999999999996 +NM_178329,0.907,1.191,1.087,1.087,1.0,0.951,1.049,0.939,1.051,1.025,1.017,0.983,1.0,0.916,0.935,1.122,1.02,1.043,1.057,0.979,0.985,0.982,0.963,0.975,0.924,1.012,1.019,1.173,1.361,0.888,0.917,1.143,1.094,1.018,1.143,1.015,1.178,0.893,1.088,1.036,0.892,1.202,1.012,0.879,1.044,1.024,0.997,0.988,0.885,1.013,0.981,1.053,1.168,1.091 +NM_178332,0.982,1.058,0.928,0.831,1.071,0.991,1.037,1.048,0.947,0.874,0.998,0.846,1.232,0.967,0.91,0.835,0.961,1.009,1.081,1.098,1.019,0.949,1.103,1.028,0.966,1.025,0.929,0.961,1.101,1.192,1.179,0.973,1.147,0.955,0.998,1.203,0.933,1.093,1.048,0.892,0.958,0.917,0.821,0.963,0.944,0.977,0.944,1.0,1.079,0.937,1.066,1.007,0.933,0.95 +NM_178335,1.106,0.911,1.03,0.87,1.047,1.204,1.024,0.889,1.036,0.832,1.078,1.135,0.958,0.991,0.95,1.042,0.857,0.948,1.166,0.993,0.949,0.94,0.894,1.005,1.035,0.908,0.989,1.055,0.929,0.981,0.958,1.008,1.15,1.03,1.044,1.153,0.977,0.983,0.969,1.01,0.95,1.004,0.961,1.212,0.9,1.131,0.981,1.001,0.935,1.168,1.076,0.985,0.989,0.936 +NM_178344,1.117,1.014,0.948,1.08,0.997,1.037,1.057,0.961,1.137,0.997,1.055,1.07,0.87,0.991,0.913,0.99,0.959,1.022,1.098,0.936,1.07,0.97,1.013,1.003,1.015,1.156,0.868,1.017,1.045,1.14,0.961,1.074,0.992,0.933,1.108,0.861,0.985,0.947,0.96,1.035,0.99,0.957,1.071,0.983,0.927,0.828,0.888,1.107,0.983,1.065,0.948,1.021,1.029,1.053 +NM_178348,0.942,1.005,1.034,1.062,1.237,0.917,1.004,0.99,0.897,1.084,1.104,0.873,1.1,0.907,0.859,1.126,1.014,1.113,1.078,0.914,0.987,1.045,1.077,0.99,1.091,0.96,0.906,0.97,1.171,1.197,0.979,0.907,1.063,1.052,0.872,0.862,0.979,0.996,0.928,1.076,0.943,1.048,0.952,0.951,0.963,0.853,0.92,1.099,1.086,0.986,1.14,1.033,1.127,0.885 +NM_178349,1.134,0.922,1.012,0.964,1.005,1.065,0.864,1.076,0.966,0.946,0.918,1.059,1.01,1.216,1.177,0.897,0.918,1.104,1.176,0.853,1.018,0.888,0.837,1.018,1.037,1.063,1.099,0.954,0.963,1.085,0.911,0.895,0.985,0.923,0.941,1.099,1.147,0.818,1.032,0.989,1.002,0.831,1.006,0.917,0.906,1.041,1.036,0.811,0.997,1.092,1.05,0.987,1.227,0.87 +NM_178350,0.603,0.88,1.147,0.551,1.046,1.868,0.859,0.68,1.081,0.698,1.09,0.948,0.607,0.624,0.948,1.591,0.491,1.286,0.995,1.446,0.343,0.978,1.397,0.802,0.597,0.573,1.164,0.743,0.68,1.62,0.924,1.435,1.559,1.36,0.37,0.789,1.329,0.941,1.143,1.691,0.786,1.081,0.563,1.142,0.759,0.959,0.791,0.78,0.924,0.612,1.224,0.781,0.766,3.437 +NM_178351,0.963,1.002,1.104,1.06,1.008,0.982,0.975,1.12,0.983,1.07,0.891,1.15,1.014,0.937,0.999,1.067,1.088,0.872,1.043,1.089,0.96,1.024,0.976,1.054,0.965,0.924,1.096,1.217,0.827,0.975,0.907,0.957,0.945,1.113,0.999,1.104,0.942,1.148,1.013,1.0,1.008,1.025,1.089,1.001,1.076,1.02,1.09,0.974,1.034,0.992,1.024,0.985,1.132,0.921 +NM_178352,1.049,1.063,1.03,1.062,0.961,1.008,0.884,1.041,0.966,0.985,1.159,1.023,1.066,0.879,0.823,0.968,1.02,0.929,0.898,1.019,0.953,0.973,0.925,1.041,0.918,1.074,1.097,0.961,0.681,1.008,1.035,1.014,0.979,0.949,1.1,1.017,0.963,0.861,0.949,0.998,0.962,1.058,0.863,0.981,1.094,1.032,1.017,0.996,0.986,0.961,1.049,1.195,0.964,1.035 +NM_178353,1.161,0.962,0.966,1.059,1.047,1.094,0.934,0.94,0.977,1.014,1.034,1.039,1.029,0.934,0.873,0.861,0.951,0.98,0.994,1.0,1.216,1.01,1.051,0.978,1.006,1.109,1.023,0.981,1.408,1.037,0.893,0.923,1.0,0.906,1.072,0.917,1.025,0.962,0.96,1.007,1.0,1.007,1.286,1.064,1.183,1.074,0.924,1.074,0.951,0.959,0.983,1.103,1.044,0.927 +NM_178354,1.02,0.943,1.078,1.044,1.05,0.916,1.02,1.097,1.087,1.026,0.979,1.006,1.077,0.825,0.925,0.95,1.032,1.003,1.065,1.082,0.969,1.172,0.904,1.027,0.952,1.143,1.192,1.113,1.239,0.981,1.294,0.919,0.941,0.926,2.218,1.095,0.934,1.115,0.931,0.932,1.016,0.965,0.968,0.931,1.053,0.858,0.938,1.289,1.104,1.087,0.997,0.868,0.952,1.121 +NM_178356,1.112,0.87,1.034,0.984,0.964,1.053,0.822,1.111,0.916,0.938,0.917,0.979,1.124,0.961,1.101,1.114,0.996,0.88,0.997,1.008,1.024,0.974,0.919,0.942,0.994,1.143,1.184,1.059,0.626,0.965,1.082,1.03,0.938,1.071,1.312,1.041,0.998,1.173,1.057,1.228,0.993,0.871,0.974,0.88,0.973,0.915,1.026,1.04,0.987,1.023,0.935,0.947,0.974,0.935 +NM_178422,0.923,0.97,1.051,0.923,1.015,1.09,0.98,0.984,1.026,1.098,1.01,0.973,1.095,0.936,0.889,0.902,1.044,1.018,1.062,0.963,1.081,1.092,1.038,0.979,0.927,1.204,1.102,1.032,1.119,1.017,0.971,1.055,0.897,0.959,1.011,0.874,0.91,1.168,0.994,1.13,0.914,0.828,0.801,0.944,1.092,0.998,1.012,1.033,0.995,0.997,1.034,0.973,0.901,0.983 +NM_178423,1.019,1.11,1.14,0.867,0.986,0.894,0.862,0.767,1.125,1.129,1.17,0.822,1.078,1.017,0.897,1.047,0.867,1.069,1.212,0.996,0.853,0.968,1.074,0.969,1.023,0.998,0.99,1.011,1.224,1.167,1.257,1.022,0.972,0.884,0.817,1.03,1.018,1.035,1.135,0.942,0.876,0.807,1.371,1.041,1.0,1.177,0.929,0.916,0.97,1.068,0.884,1.011,0.927,0.942 +NM_178424,0.993,1.095,0.98,1.201,0.985,1.138,1.074,1.046,0.916,0.991,1.012,1.184,1.036,1.165,0.975,0.996,1.01,1.034,0.904,1.102,1.08,1.045,1.005,0.944,0.877,1.059,1.037,0.992,0.972,0.865,0.851,0.854,0.808,0.794,1.06,1.192,1.128,0.992,0.995,0.959,1.116,0.942,0.932,0.966,1.024,1.012,1.055,1.087,1.067,1.052,0.908,1.047,1.043,1.024 +NM_178426,0.805,1.183,1.235,0.988,0.827,1.047,0.705,0.704,0.762,0.681,1.179,0.738,0.613,0.674,0.935,0.965,0.677,1.0,1.133,1.036,0.67,0.899,0.926,0.791,1.163,1.279,1.143,0.741,0.801,1.445,0.84,1.63,0.978,1.572,0.588,0.979,1.013,0.744,1.55,1.28,0.789,1.675,0.72,1.219,0.889,0.855,0.715,1.082,0.839,0.74,0.926,0.772,0.797,0.947 +NM_178428,0.927,1.118,0.995,0.974,1.059,1.017,0.968,1.006,0.94,1.053,0.996,1.05,1.075,0.892,0.903,1.111,0.927,0.999,1.025,0.91,1.043,0.959,0.92,0.994,1.02,0.916,0.984,1.054,0.831,1.001,1.076,1.064,0.924,0.966,1.186,1.023,1.023,1.061,0.932,0.941,0.888,0.916,1.169,1.029,0.872,1.046,1.135,0.99,0.954,0.84,0.972,0.939,1.01,1.015 +NM_178429,0.976,1.066,0.95,0.977,1.122,1.121,1.089,0.941,0.999,1.091,0.844,1.104,0.953,0.82,1.235,1.038,1.086,1.067,0.989,1.019,1.061,0.968,1.012,1.069,1.058,1.0,1.03,0.86,0.814,1.032,0.939,0.9,0.993,1.0,1.09,1.076,0.896,1.024,0.932,1.121,0.762,0.848,0.839,0.984,0.976,1.146,1.051,0.942,1.053,0.903,1.057,0.881,1.017,0.826 +NM_178430,0.942,1.067,0.995,1.07,0.979,1.05,1.006,0.897,0.975,1.076,0.974,1.018,0.929,0.781,0.865,0.815,1.019,1.085,0.937,0.96,0.895,0.927,1.167,0.91,1.001,0.916,0.935,1.052,1.289,1.061,0.908,0.912,0.936,0.86,1.074,1.112,1.048,1.122,1.063,1.003,0.932,0.834,1.671,1.057,1.08,1.026,1.092,1.061,1.113,0.972,1.054,0.891,1.007,0.957 +NM_178431,1.104,0.979,0.884,0.959,1.976,0.792,0.799,2.796,1.129,1.041,0.947,1.353,1.112,0.873,0.868,1.266,1.416,1.094,1.27,0.762,0.87,1.012,0.77,0.992,0.88,1.0,1.821,1.088,0.972,0.947,1.037,1.054,1.806,0.919,3.184,0.89,0.798,1.222,1.076,1.035,0.962,0.972,0.826,0.973,1.072,0.978,2.475,1.295,0.976,2.691,1.361,0.873,1.041,0.938 +NM_178433,0.948,0.932,0.982,1.03,0.954,0.961,0.813,0.946,1.09,0.983,1.026,1.03,1.002,1.007,1.141,0.962,1.124,1.12,1.0,0.918,1.011,1.003,1.022,0.981,0.929,1.04,0.938,0.938,0.945,0.863,1.036,1.062,1.102,1.012,1.057,0.998,1.026,0.905,0.973,0.985,1.027,0.978,0.927,0.883,0.866,1.066,1.003,1.018,0.995,1.008,0.937,1.031,0.903,0.98 +NM_178434,1.051,0.937,1.032,1.005,1.003,0.927,1.303,0.906,1.095,1.086,1.13,1.024,1.006,1.066,0.982,1.06,1.028,1.03,1.021,0.992,0.939,0.975,0.898,0.917,1.008,1.005,0.81,0.987,0.862,0.939,1.116,1.039,1.084,0.908,1.082,0.889,1.046,1.066,0.923,0.974,1.075,0.86,0.869,1.096,0.995,1.061,0.897,0.973,1.01,0.824,1.001,0.754,0.965,0.949 +NM_178438,1.045,0.976,0.883,0.916,0.879,1.009,1.224,1.118,1.007,1.082,0.979,0.993,1.079,0.916,0.831,0.847,0.952,1.08,0.995,1.023,0.962,1.045,1.011,0.94,1.092,0.925,0.949,1.108,1.421,1.021,0.923,1.098,0.943,0.82,1.018,0.843,1.053,0.919,1.046,1.011,0.939,0.944,1.015,1.009,0.907,1.046,0.98,0.998,1.024,1.05,0.965,1.082,1.215,0.793 +NM_178439,0.822,0.969,1.08,0.884,1.039,1.164,1.028,1.024,0.925,1.009,0.918,1.093,1.085,1.101,1.074,1.336,1.046,1.013,0.932,0.944,0.772,1.126,1.126,1.226,0.861,0.816,1.155,1.006,0.907,1.058,1.058,1.074,1.751,1.085,1.033,0.739,1.028,1.259,1.114,0.997,0.976,0.999,0.998,0.808,0.899,0.96,1.127,0.988,1.284,1.018,1.041,1.017,1.003,1.106 +NM_178441,1.011,0.894,1.428,0.81,1.181,1.139,0.809,1.134,1.373,0.862,1.017,1.041,0.816,1.012,1.085,1.196,1.113,1.223,1.482,0.963,0.851,0.989,0.983,0.883,0.622,1.062,1.424,1.267,0.779,1.336,1.653,1.08,0.726,1.292,1.939,0.615,1.002,1.227,1.038,0.861,1.194,1.239,0.566,0.841,0.981,0.837,0.986,1.401,0.725,1.031,0.893,0.597,1.012,0.957 +NM_178445,1.071,0.823,1.178,0.939,1.01,1.086,0.983,1.429,1.123,0.936,0.949,0.994,1.083,0.998,0.895,0.931,1.033,1.053,0.9,1.066,0.947,1.091,0.846,1.073,1.04,1.014,0.838,0.91,1.084,1.051,1.039,0.984,1.105,0.894,1.076,1.028,0.904,0.974,0.96,1.053,1.067,1.024,1.154,0.957,1.114,1.121,0.993,1.032,1.043,0.97,0.929,0.956,1.165,0.902 +NM_178449,1.066,0.937,1.043,1.182,1.032,1.028,0.943,0.932,0.964,1.143,0.94,1.012,1.102,0.824,1.006,1.121,1.052,1.223,1.042,1.086,0.857,1.018,1.193,0.904,0.9,1.003,0.945,1.028,0.972,1.083,0.961,0.855,1.0,1.062,1.14,0.962,0.899,0.959,0.966,1.14,0.802,0.937,0.885,1.091,0.96,0.852,0.889,0.88,1.131,0.93,1.0,0.913,1.145,0.799 +NM_178450,0.658,1.386,0.862,0.828,0.65,2.042,1.0,0.641,0.715,0.827,2.089,0.714,0.743,0.723,1.48,2.166,0.846,1.059,1.0,1.683,0.633,0.654,2.433,0.74,0.771,0.667,0.903,0.544,0.735,1.405,0.59,0.885,1.195,1.561,0.544,1.067,1.509,0.782,1.418,0.775,0.833,1.881,2.189,0.754,0.759,2.536,1.36,0.693,2.082,0.978,2.002,0.869,0.767,0.979 +NM_178451,1.046,0.874,0.947,0.884,0.95,0.91,1.024,1.095,0.979,0.907,1.088,1.013,1.078,0.981,1.041,1.125,1.018,0.911,1.231,0.935,0.936,1.041,1.103,0.901,0.984,0.855,1.128,0.978,0.894,0.942,1.055,0.978,1.031,1.003,0.829,1.123,0.889,1.05,1.0,1.001,1.021,0.991,0.987,1.1,0.981,0.85,0.987,1.036,0.99,1.0,1.03,0.97,0.876,1.086 +NM_178452,0.999,0.979,0.986,0.902,1.044,1.045,0.961,1.108,0.883,0.978,1.027,1.034,0.989,0.979,1.132,1.015,1.014,0.876,1.029,0.983,0.98,0.906,0.921,1.034,1.133,0.906,0.909,0.94,1.303,0.961,0.883,0.932,1.052,0.958,0.898,1.044,1.066,0.906,1.032,1.06,1.044,1.027,0.922,1.043,1.0,0.893,0.96,1.039,0.932,1.097,1.01,1.054,1.001,1.03 +NM_178453,0.88,0.934,0.977,1.047,0.846,1.11,1.182,0.99,1.035,0.98,1.056,1.25,0.961,1.082,0.952,0.935,0.93,1.072,1.067,1.024,0.993,0.89,0.915,0.96,0.917,0.942,0.894,0.951,1.111,0.977,0.929,0.937,1.009,0.929,0.905,1.076,1.002,1.02,1.116,1.072,0.991,1.128,0.965,1.057,0.973,1.087,1.163,0.99,1.085,1.044,0.94,1.077,1.079,1.273 +NM_178454,0.708,1.094,0.911,0.812,0.674,1.475,0.892,0.677,0.79,0.616,1.665,0.708,0.671,0.635,1.047,1.976,0.786,0.954,0.981,1.199,0.508,0.649,1.213,0.781,0.905,0.797,0.89,0.907,0.62,1.347,0.913,1.142,2.242,1.675,0.53,0.89,1.557,0.757,1.194,0.979,0.798,1.226,1.324,1.0,0.779,1.402,0.815,0.739,1.287,0.759,1.17,1.028,0.89,1.542 +NM_178456,1.061,1.001,0.944,0.979,0.925,1.035,0.984,0.948,1.109,0.967,1.328,0.804,1.063,1.103,1.035,1.033,1.089,1.083,1.003,1.124,0.991,0.996,0.886,1.003,1.0,0.828,0.997,1.106,1.078,0.997,1.009,1.013,0.943,0.956,1.195,0.984,0.925,0.917,0.839,0.983,1.221,0.942,1.225,0.932,0.988,1.159,0.955,1.081,1.013,1.068,1.409,0.981,1.052,0.962 +NM_178460,0.751,0.908,1.306,0.779,1.236,1.151,0.811,1.168,1.021,1.0,0.793,1.178,1.102,0.774,1.047,1.397,0.896,0.932,1.174,0.946,0.771,1.0,1.213,1.214,0.693,0.792,1.421,1.046,0.604,0.983,1.199,1.109,1.19,1.052,0.735,0.877,0.873,1.176,1.13,0.853,0.964,1.122,0.715,0.788,1.125,0.757,1.08,1.028,0.942,0.896,1.001,0.915,0.762,1.089 +NM_178462,0.971,0.934,1.029,0.893,1.102,0.992,0.972,1.003,1.094,0.988,1.016,1.107,0.956,0.854,0.963,0.946,1.14,0.9,1.056,0.983,1.005,0.876,1.017,1.075,1.08,0.987,1.254,1.195,1.011,1.061,0.981,1.097,1.017,1.091,0.987,0.99,0.993,0.968,1.11,1.082,0.893,0.911,0.94,1.204,1.012,1.018,0.999,0.886,0.959,0.991,0.876,0.999,0.99,1.001 +NM_178463,1.222,0.959,0.96,0.935,1.02,0.933,1.0,1.146,1.075,0.891,0.971,1.03,0.979,0.902,0.902,1.022,0.985,1.097,0.949,1.108,1.007,1.143,1.039,1.087,0.918,1.001,0.981,1.087,1.036,1.053,0.966,0.964,1.087,1.069,1.082,0.911,1.026,0.963,1.053,1.011,1.031,0.863,0.996,0.881,1.154,1.094,0.992,1.052,0.934,0.972,1.017,0.986,1.023,1.0 +NM_178465,1.014,1.004,1.029,1.119,1.089,1.077,0.934,0.953,0.899,1.129,1.131,1.225,1.02,1.112,0.874,0.911,0.999,0.98,1.012,0.93,0.962,1.075,1.06,0.976,0.958,1.119,0.875,0.955,0.853,1.108,0.977,0.95,0.896,0.956,1.128,1.0,1.057,1.031,0.958,1.051,1.114,1.154,0.955,0.892,0.952,0.936,0.919,1.044,0.992,0.918,1.007,1.077,1.078,1.042 +NM_178468,0.852,1.0,1.145,1.02,1.181,0.913,0.916,0.885,1.079,1.146,1.126,1.152,1.186,1.112,0.921,1.0,1.052,1.081,1.177,0.927,1.189,0.963,0.818,1.085,0.97,1.04,0.994,1.124,0.99,0.916,1.059,1.021,0.98,1.081,1.024,0.917,0.907,1.119,0.896,1.115,1.077,1.024,1.103,0.963,0.955,0.902,0.905,0.948,0.955,1.181,0.911,0.926,1.174,0.969 +NM_178470,0.987,1.068,0.907,0.991,1.089,0.923,1.01,0.95,0.987,0.915,0.974,1.158,1.101,0.99,0.731,1.078,0.854,1.103,1.007,1.088,0.96,1.116,0.975,0.926,1.039,0.997,0.932,1.106,0.951,1.111,0.889,0.865,1.023,0.923,1.19,0.99,1.104,1.056,0.933,0.969,1.026,0.996,0.9,1.2,1.109,1.078,0.932,1.048,1.053,1.075,0.971,0.927,1.04,0.935 +NM_178471,0.88,1.097,0.793,1.024,1.015,0.879,1.02,0.992,1.141,1.133,0.848,0.901,1.153,1.107,0.933,0.869,1.122,0.956,0.938,1.031,0.996,0.979,1.03,0.978,1.041,1.111,1.141,0.819,1.127,1.026,0.984,1.053,1.08,0.925,1.162,1.006,1.098,1.042,0.942,0.96,0.968,0.96,0.971,0.901,1.048,1.0,0.985,0.923,1.0,1.138,0.994,0.969,1.053,1.018 +NM_178472,0.66,1.12,1.14,0.512,1.106,1.058,0.603,0.7,1.714,1.449,0.971,0.992,0.737,0.782,0.928,1.408,0.939,0.711,1.252,0.837,0.716,0.954,1.145,1.346,0.471,0.676,1.499,0.953,0.43,0.992,1.13,0.974,3.154,0.924,0.356,0.915,0.903,1.144,1.356,0.956,1.451,1.058,0.855,1.374,0.967,1.03,1.287,0.666,1.251,0.652,0.889,0.805,1.122,3.187 +NM_178477,1.067,0.866,0.941,0.932,1.039,0.946,1.032,0.899,0.993,0.839,0.97,0.963,1.058,0.91,1.16,1.01,0.99,1.067,0.976,1.028,1.079,0.962,0.915,0.958,0.997,1.214,1.136,1.074,0.799,1.024,0.964,1.12,0.984,1.06,0.946,1.089,0.992,0.978,0.989,1.157,0.889,0.969,1.159,1.094,0.942,0.989,1.082,1.114,1.001,0.962,1.045,1.027,1.006,1.107 +NM_178483,1.095,0.913,0.884,0.825,0.998,1.03,0.757,0.928,0.957,0.971,1.022,0.925,0.897,0.989,1.134,0.854,0.951,0.924,1.025,0.959,0.938,1.025,0.843,0.963,0.945,1.001,1.118,1.065,0.523,1.186,1.033,1.07,0.971,1.158,1.013,0.882,1.076,1.046,0.994,0.967,1.017,0.892,0.772,0.885,0.98,0.934,1.187,1.011,0.905,1.09,1.033,0.854,1.028,0.979 +NM_178491,1.083,1.119,1.045,1.001,0.988,0.935,0.785,0.961,0.971,0.937,0.93,1.073,0.845,0.782,0.773,0.951,1.063,1.131,1.029,1.011,1.028,1.052,0.964,0.865,1.014,1.01,1.048,1.007,1.129,1.044,1.099,1.011,0.899,1.106,1.038,0.936,0.962,0.996,1.114,0.973,0.982,0.924,0.88,0.921,0.955,1.089,1.046,1.154,0.932,1.094,1.059,1.024,0.903,1.015 +NM_178493,0.904,1.931,0.909,1.116,0.864,1.143,1.342,0.954,0.787,0.872,0.859,0.862,0.81,0.815,0.898,1.001,0.9,0.971,0.97,1.023,0.963,0.857,1.072,0.928,0.889,0.864,0.836,0.896,1.165,1.692,0.855,1.851,4.894,3.775,0.867,0.969,1.196,1.015,1.067,3.352,0.89,1.574,1.033,32.67,0.875,0.802,0.964,0.944,1.018,1.012,1.57,0.925,0.776,1.137 +NM_178494,1.066,0.94,1.143,0.928,1.058,0.984,1.17,1.014,1.035,1.06,0.86,0.966,0.93,1.061,0.999,0.85,1.219,1.209,1.056,1.016,0.81,0.876,0.94,0.889,0.912,1.12,0.99,0.963,1.078,1.006,0.976,0.925,0.954,1.099,1.147,0.975,1.065,0.902,0.991,0.918,0.985,1.105,1.24,1.162,1.226,1.194,1.074,0.863,1.083,0.991,0.965,0.967,0.833,1.156 +NM_178495,0.983,1.01,1.001,0.955,1.113,0.981,0.788,0.872,1.05,1.083,0.976,1.001,1.045,0.831,0.97,0.933,1.025,1.108,0.8,0.91,0.907,1.015,1.029,0.953,1.152,1.098,1.143,0.993,0.706,0.917,1.054,1.095,0.826,0.889,1.065,0.956,0.91,0.993,1.149,1.091,0.905,1.071,1.129,1.04,1.029,0.941,1.001,0.992,0.943,0.934,0.993,1.123,0.92,0.925 +NM_178497,0.972,0.998,1.007,1.0,0.903,1.001,1.122,1.096,1.064,0.91,1.06,0.955,1.02,1.119,0.835,0.97,0.999,1.059,1.072,1.045,0.969,1.186,1.017,0.912,0.963,1.01,0.979,0.927,1.013,0.921,1.136,0.906,0.977,1.037,1.036,1.003,1.047,0.994,1.089,0.996,0.995,1.061,1.124,0.973,1.023,1.098,0.927,0.992,1.077,0.951,1.007,0.928,1.12,1.073 +NM_178499,1.006,1.01,1.001,1.142,1.147,0.951,1.181,1.123,1.008,0.965,0.812,0.927,1.022,1.32,0.958,1.078,1.138,0.854,0.937,1.229,0.896,0.939,1.029,1.099,1.003,0.931,1.071,0.933,1.276,0.994,1.073,1.089,1.106,1.015,0.946,1.002,1.028,1.041,1.053,0.942,0.845,0.924,1.034,0.865,0.871,0.892,0.922,1.05,0.954,1.013,1.159,0.968,1.18,1.03 +NM_178500,1.048,1.053,1.008,1.007,1.015,1.058,1.039,0.789,1.092,1.155,0.817,0.898,1.029,0.866,1.235,1.041,1.015,1.111,1.057,1.109,1.105,0.943,1.014,1.023,1.01,0.998,0.838,1.042,0.893,1.017,1.002,0.925,1.075,0.897,1.059,0.929,1.061,1.071,1.112,0.974,1.017,0.95,0.819,1.017,1.009,0.99,1.064,0.881,0.987,0.951,0.987,1.119,1.091,0.975 +NM_178501,1.007,0.974,0.999,0.991,0.957,1.091,1.009,0.975,0.92,1.181,1.149,0.998,1.203,0.993,0.936,1.009,0.972,1.038,0.901,0.852,0.985,0.988,0.89,1.027,1.083,1.089,0.922,1.009,0.769,0.984,1.032,1.117,0.988,1.013,1.024,1.002,0.98,1.006,1.149,1.036,0.985,1.143,0.974,1.002,1.064,1.084,1.052,0.978,1.135,1.104,0.894,1.003,1.021,1.005 +NM_178502,0.952,1.531,1.147,0.904,1.089,1.106,1.096,0.933,1.122,0.942,0.93,0.692,0.811,0.745,0.96,0.946,1.056,0.958,0.796,1.078,0.807,0.802,1.561,0.832,0.841,0.796,1.231,0.824,0.758,1.74,1.014,5.015,1.084,1.71,0.843,1.136,0.988,1.025,1.281,1.337,1.176,1.567,1.085,2.228,0.843,0.853,0.914,0.842,0.815,0.751,0.997,0.926,1.227,1.013 +NM_178504,0.999,0.98,0.91,0.84,0.973,1.072,0.967,0.833,0.919,0.929,1.027,0.949,0.918,0.879,1.068,1.129,0.963,1.108,0.827,1.089,1.071,1.026,1.109,1.101,0.774,1.036,0.862,0.926,0.872,1.003,0.904,0.929,0.982,1.004,0.933,0.981,1.024,0.965,1.037,1.153,0.936,1.093,1.395,1.055,1.049,0.98,0.927,0.978,1.058,0.976,1.019,0.99,1.001,1.112 +NM_178505,0.991,0.997,1.009,0.956,1.022,0.989,1.082,1.065,1.038,0.962,0.99,0.939,1.076,1.156,1.182,1.155,0.892,0.918,1.149,0.867,1.019,1.025,0.979,0.908,1.128,0.928,1.081,1.004,1.037,1.037,0.838,1.061,0.984,1.079,0.852,0.985,0.923,0.966,0.904,1.067,0.989,0.883,1.253,0.946,1.182,0.892,0.895,1.026,0.977,1.055,1.015,1.136,0.936,0.908 +NM_178507,0.406,1.621,0.41,0.709,0.326,2.027,1.374,0.322,0.364,0.461,2.984,0.372,0.422,0.332,1.524,4.724,0.334,0.645,0.564,1.86,0.413,0.33,1.706,0.374,1.214,0.42,0.466,0.38,1.155,3.244,0.414,2.131,1.415,3.401,0.264,2.146,1.928,0.326,2.081,1.407,0.377,2.113,1.384,0.78,0.4,1.081,0.908,0.348,0.789,0.438,1.154,0.773,0.501,1.711 +NM_178508,0.952,1.089,1.369,0.637,1.522,0.887,0.529,0.992,1.821,1.742,0.746,2.3,1.082,0.882,0.979,1.004,1.253,0.861,1.424,0.832,0.854,1.182,0.828,1.492,0.506,1.023,1.358,1.488,0.399,1.169,1.265,2.232,1.29,1.135,0.714,0.913,0.591,1.904,0.749,1.229,1.98,0.773,0.413,1.098,1.518,0.716,1.094,0.983,0.487,0.788,0.655,0.796,1.297,0.936 +NM_178510,1.0,0.986,0.98,1.025,0.934,0.942,1.052,1.088,1.08,1.061,1.038,0.987,0.964,1.114,0.962,0.963,0.977,1.008,1.33,1.046,1.018,1.01,0.981,1.033,0.901,1.04,1.118,0.969,0.932,0.977,1.134,1.094,1.104,1.037,1.012,0.894,0.964,0.85,1.052,1.008,1.114,1.118,0.852,1.072,0.954,0.93,0.96,1.035,1.033,0.964,1.013,1.171,0.993,0.925 +NM_178511,0.621,1.487,1.295,0.661,1.211,0.774,0.759,0.36,1.154,1.24,0.76,0.56,0.43,0.712,0.834,0.964,0.825,0.757,0.854,1.238,0.499,0.674,1.559,1.097,0.555,0.751,0.977,0.94,0.418,1.409,0.899,4.041,1.343,1.417,0.22,1.115,0.915,1.084,0.951,1.354,1.079,1.187,0.921,1.068,0.872,1.179,0.968,0.597,0.679,0.841,1.106,0.879,0.979,1.037 +NM_178512,1.082,1.0,0.97,1.083,1.085,1.164,0.976,0.974,0.872,0.934,0.871,1.122,1.085,0.888,0.879,0.916,1.072,1.066,0.948,0.965,1.101,0.978,0.894,1.043,1.059,0.951,1.055,1.029,0.847,1.07,1.011,0.977,0.904,0.877,1.096,1.011,1.158,0.935,0.967,1.022,0.834,0.947,1.031,0.938,1.031,0.945,1.058,1.046,1.0,1.022,1.055,1.007,1.001,1.043 +NM_178513,0.758,0.996,0.684,0.948,0.848,1.537,0.831,0.674,0.648,0.724,1.334,0.794,0.751,0.614,1.031,1.005,0.78,0.882,0.612,1.317,0.715,0.691,1.077,0.693,1.144,0.725,0.766,0.726,0.805,1.392,0.649,1.358,1.695,1.387,0.81,1.051,1.205,0.697,1.062,0.915,0.733,1.273,1.173,1.099,0.672,0.834,1.004,0.744,0.94,0.703,1.16,0.967,0.731,1.425 +NM_178514,0.87,0.996,1.038,0.895,1.007,1.019,0.891,0.968,0.899,0.845,0.984,1.064,0.908,0.9,0.885,0.825,1.016,1.142,0.984,0.966,1.084,0.887,0.87,1.006,0.973,0.976,0.92,0.986,0.74,1.072,0.921,1.274,0.837,0.877,0.806,1.273,1.001,1.015,1.183,0.966,0.938,0.963,1.193,1.293,1.139,1.062,1.066,0.967,0.939,0.934,1.174,1.057,1.054,1.491 +NM_178517,0.964,1.045,1.007,0.885,0.921,0.918,0.808,0.759,1.187,1.233,0.945,0.841,0.966,1.069,0.949,0.93,0.89,0.998,1.079,0.741,0.949,0.901,1.136,1.049,0.837,1.028,1.155,0.929,0.661,0.995,1.022,0.934,1.702,1.015,0.74,0.938,0.827,0.91,1.198,0.792,1.139,0.96,0.891,1.317,1.077,1.083,1.063,0.878,1.125,0.994,0.991,1.031,1.323,1.483 +NM_178518,0.884,0.897,1.013,0.842,1.124,0.904,0.801,0.773,1.072,1.162,0.936,0.954,1.019,0.886,1.036,1.407,1.02,0.999,1.231,1.02,0.91,1.014,1.122,0.969,0.857,0.965,0.991,0.963,0.954,0.902,1.06,0.919,1.318,1.179,0.912,0.842,0.963,1.023,1.175,1.104,0.987,0.962,0.806,0.87,0.942,0.98,0.952,1.136,1.031,1.054,0.882,0.811,1.119,1.029 +NM_178519,0.992,0.92,0.922,0.977,1.006,1.051,1.051,0.887,1.071,1.024,1.033,1.028,1.021,1.041,0.889,1.085,0.969,0.996,0.956,1.018,0.875,1.115,0.939,1.15,0.95,0.905,1.069,1.018,1.115,1.067,0.951,0.997,1.002,1.008,1.057,0.92,1.147,1.075,1.104,1.0,0.895,0.845,1.01,1.033,0.997,0.981,0.948,1.021,0.981,0.908,0.945,1.024,0.963,1.061 +NM_178520,0.999,0.981,1.057,1.013,1.16,1.045,0.945,0.94,1.152,1.088,1.071,0.982,1.055,1.083,1.002,0.971,0.936,1.054,1.128,0.957,1.218,1.093,0.926,0.954,1.076,0.987,0.966,1.138,1.08,0.998,0.959,1.075,0.94,0.893,1.078,0.98,1.106,1.051,0.924,0.804,1.051,0.929,1.041,1.262,0.994,0.938,1.014,0.96,0.97,1.012,0.843,0.997,1.112,0.936 +NM_178523,0.882,1.04,1.001,0.844,0.905,1.382,0.828,0.82,0.941,0.854,1.075,0.982,0.927,0.846,0.943,1.111,0.936,0.972,0.704,1.103,0.965,0.955,1.022,0.959,0.8,0.944,1.01,0.889,1.019,1.184,0.906,1.136,1.069,1.096,0.798,1.003,1.059,1.012,0.987,1.108,0.913,1.022,0.694,0.836,1.006,0.985,1.042,0.905,0.847,0.796,0.926,0.846,0.902,0.957 +NM_178525,0.976,0.964,1.179,1.045,0.965,1.053,0.891,0.942,1.048,1.068,0.906,1.085,0.954,0.949,0.977,1.084,1.044,1.035,0.983,0.939,1.002,0.835,0.932,1.134,0.963,1.052,1.041,1.018,0.881,1.056,1.033,0.977,0.946,1.124,0.855,1.167,0.997,1.06,1.001,1.182,0.955,1.103,0.905,1.265,0.99,1.05,0.943,1.05,1.096,0.95,1.11,0.994,0.966,1.118 +NM_178527,1.131,0.913,0.722,1.25,0.987,0.777,0.658,0.925,0.858,1.147,1.193,1.182,1.155,0.994,1.119,0.8,1.021,0.893,0.975,0.916,1.025,0.97,0.891,0.976,0.922,1.078,0.989,0.917,1.129,1.175,1.137,0.902,1.058,1.0,1.114,1.027,0.955,1.132,1.072,1.07,1.122,0.843,1.334,0.827,1.015,1.001,0.694,0.942,0.945,1.086,1.06,1.141,0.792,1.051 +NM_178528,0.853,1.076,0.995,1.139,0.99,0.975,1.108,0.949,0.933,1.059,1.006,1.025,0.92,0.924,1.073,1.024,0.969,1.027,1.012,0.95,0.976,1.034,0.934,1.017,0.984,1.041,1.055,1.059,0.833,0.969,0.906,1.029,0.967,1.053,0.97,0.956,0.973,1.103,0.901,0.923,0.984,0.982,1.01,1.115,1.158,1.002,1.059,1.017,1.065,1.127,1.009,1.035,1.028,0.948 +NM_178529,1.046,0.85,1.02,0.949,1.022,0.963,0.881,1.232,0.987,1.139,0.897,1.099,1.018,1.148,0.825,0.998,1.147,0.981,1.04,1.028,1.018,0.861,0.856,0.958,0.944,0.947,1.131,1.002,0.806,1.086,0.85,0.979,0.948,1.04,1.002,1.003,1.246,1.004,1.02,1.002,1.048,0.863,1.054,1.005,1.103,0.827,0.919,1.084,0.864,1.013,1.035,0.864,0.831,0.834 +NM_178530,1.035,0.963,1.093,0.992,1.01,0.922,0.987,1.037,0.917,0.923,0.972,1.087,0.909,0.973,1.284,1.001,0.846,0.931,0.884,1.067,1.012,0.995,0.99,0.919,1.035,0.827,1.026,0.916,1.07,0.994,1.022,0.999,0.864,0.953,1.037,0.98,1.128,0.997,1.02,1.209,1.136,1.072,1.051,0.902,1.028,0.88,1.002,0.996,0.945,0.898,1.061,0.989,1.042,0.988 +NM_178534,1.066,0.937,1.119,1.104,1.094,1.112,0.952,1.173,1.01,1.164,0.925,1.025,1.098,0.919,0.969,1.043,1.123,1.033,1.034,1.095,1.013,1.034,1.179,0.978,0.969,0.936,0.951,1.164,1.187,0.932,0.948,1.19,1.093,0.917,1.106,1.04,0.984,0.871,1.092,0.997,0.995,0.965,1.077,0.991,0.953,0.915,0.938,1.007,1.114,1.075,1.076,0.942,0.939,0.935 +NM_178535,1.021,1.03,0.927,0.886,1.08,1.06,1.032,1.145,1.001,1.019,0.952,1.019,0.962,1.198,0.891,0.993,0.94,0.937,1.076,1.032,1.034,1.005,0.917,1.214,0.89,1.126,0.969,1.124,1.172,1.14,0.97,1.04,0.966,0.979,0.989,0.968,0.93,1.035,1.025,1.074,1.179,0.859,0.977,1.027,0.993,0.996,0.947,1.066,1.252,1.088,1.122,0.835,0.761,1.07 +NM_178536,1.02,1.032,0.945,0.976,1.12,0.983,1.088,1.031,0.95,0.991,0.951,1.2,0.966,1.016,0.999,0.98,1.054,0.945,0.892,1.193,0.913,1.073,0.961,0.986,1.092,1.008,1.198,0.988,0.819,1.056,1.053,1.319,0.98,1.006,1.021,0.947,1.014,1.009,0.999,0.969,0.952,1.167,1.217,0.93,0.915,1.101,1.023,0.939,0.967,1.049,0.856,1.178,0.798,1.159 +NM_178537,1.095,0.993,0.971,0.938,0.894,0.966,0.882,1.197,1.01,0.993,0.875,1.059,0.812,1.138,1.032,1.015,1.023,1.002,0.964,1.095,1.097,0.973,1.01,0.96,0.994,1.051,1.066,1.091,0.94,0.965,1.011,0.976,1.297,0.981,1.091,0.967,1.074,1.09,1.138,0.97,1.127,0.856,1.083,0.961,1.084,0.96,0.968,1.027,1.165,0.853,1.106,0.96,0.951,0.921 +NM_178538,0.789,1.005,0.972,0.888,1.063,1.346,0.873,0.806,1.428,0.771,0.87,0.96,0.75,0.969,0.997,1.122,0.992,1.02,1.015,1.485,0.953,0.948,0.894,1.354,0.955,0.869,1.308,1.021,0.616,1.038,1.005,1.741,1.048,1.009,0.858,1.141,0.989,0.82,1.035,1.041,1.003,1.067,1.024,0.883,0.832,0.956,1.006,0.744,0.893,0.929,0.89,0.728,0.78,1.569 +NM_178539,1.189,0.944,0.85,1.113,1.02,0.993,0.944,1.005,1.092,1.016,1.138,0.987,1.006,1.068,0.915,0.911,1.008,0.954,1.009,0.958,1.018,1.031,1.138,0.969,1.079,0.975,0.869,0.945,1.197,0.966,0.915,1.095,0.866,0.906,1.116,1.015,1.035,1.129,1.079,1.092,1.048,0.929,0.859,0.883,1.07,1.092,0.932,0.999,0.951,1.044,0.948,0.987,0.93,1.092 +NM_178540,1.091,1.041,1.15,1.012,0.894,1.07,0.949,1.073,0.943,1.391,1.004,1.056,0.978,0.955,0.944,1.137,1.0,0.924,1.158,0.956,0.975,1.016,0.939,0.975,1.001,0.905,0.958,0.959,1.02,1.032,0.99,0.972,0.937,1.06,1.158,0.97,0.777,0.953,1.043,1.006,1.058,0.996,1.172,0.941,0.859,0.998,1.017,0.875,1.087,0.954,0.879,0.889,1.036,0.935 +NM_178542,0.891,0.915,0.843,0.957,1.005,1.092,0.884,1.039,1.016,1.05,0.985,0.913,0.972,1.105,0.998,1.059,0.972,0.926,0.897,0.977,0.952,0.966,1.075,1.085,1.056,1.034,1.143,0.911,0.911,0.965,1.006,0.995,1.201,0.953,0.908,0.867,0.939,1.148,1.097,1.088,1.058,1.101,1.029,1.06,0.886,0.95,1.016,0.987,0.985,0.819,1.215,0.989,0.885,1.014 +NM_178543,0.973,1.163,1.127,1.077,0.954,1.092,0.924,1.258,0.973,0.757,0.952,1.09,0.863,0.864,1.425,1.096,0.996,1.04,1.062,0.922,1.008,1.115,1.087,1.076,1.008,1.095,0.854,0.992,1.043,0.956,0.916,1.016,1.021,1.006,1.011,1.012,1.089,0.837,1.042,1.092,1.048,1.022,1.082,0.949,1.001,1.051,0.842,0.847,0.938,1.042,0.952,1.009,0.954,0.892 +NM_178545,0.651,2.918,0.628,1.423,0.756,1.353,0.952,0.677,0.782,0.817,0.939,0.938,0.707,0.671,0.714,1.059,0.617,0.925,0.661,1.086,0.555,0.669,1.592,0.979,1.227,0.727,0.757,0.787,0.71,1.823,0.652,0.897,2.02,2.183,0.518,0.965,1.509,0.944,1.278,1.135,0.921,1.317,0.857,0.837,0.928,1.502,1.067,0.823,0.846,0.678,0.996,0.718,0.751,2.19 +NM_178546,0.966,0.964,0.913,1.152,0.948,1.012,0.989,1.108,0.786,1.049,0.996,0.919,1.027,1.071,0.976,0.907,0.975,0.997,0.99,1.093,1.163,0.949,1.012,1.076,1.064,0.947,0.871,0.998,1.062,1.121,0.982,0.896,0.978,1.012,1.082,1.084,1.016,0.896,0.855,1.011,1.012,0.932,0.909,1.064,0.965,1.007,0.961,1.004,1.135,0.968,0.989,1.021,1.051,0.961 +NM_178548,0.98,1.054,0.877,0.806,0.949,1.039,1.013,1.009,0.934,1.013,0.928,0.982,1.039,0.972,0.919,0.992,1.082,0.966,0.99,0.868,1.0,1.014,0.933,0.978,1.097,1.007,0.957,1.094,0.888,1.028,0.995,1.311,1.031,1.091,0.946,1.115,1.13,1.053,0.926,0.964,0.983,1.167,0.919,0.871,1.067,0.931,1.1,0.909,0.962,1.025,0.95,1.048,0.912,1.137 +NM_178549,1.091,0.962,1.042,1.066,0.936,1.004,1.025,1.056,0.865,1.113,1.108,1.207,0.947,1.135,1.001,0.918,1.015,0.939,1.052,1.093,1.106,1.008,1.053,1.05,1.03,1.019,1.078,0.885,0.883,0.953,0.956,0.923,1.046,0.975,1.052,1.02,1.036,0.918,1.095,1.047,1.065,0.982,0.991,0.921,0.927,0.971,0.933,1.022,0.929,0.971,1.055,1.084,0.963,1.092 +NM_178550,0.93,2.042,1.481,1.167,0.981,1.078,0.971,0.739,1.115,1.03,1.08,0.98,1.262,1.071,1.099,1.054,1.005,1.211,1.038,1.757,1.14,1.034,1.032,1.233,0.862,0.931,1.687,1.045,0.76,0.939,1.14,0.954,0.741,0.986,1.027,0.938,0.888,1.125,1.561,0.889,1.374,0.778,0.895,0.874,1.06,0.853,0.918,0.988,0.998,0.979,1.231,1.017,1.002,0.896 +NM_178552,0.941,1.026,0.998,0.917,1.144,0.995,0.929,0.971,1.038,0.981,1.056,0.961,1.052,1.259,0.858,1.002,1.042,1.014,1.005,0.921,0.962,1.058,1.076,1.059,1.117,1.087,1.259,0.969,1.003,1.034,0.902,0.965,1.04,0.985,0.934,1.012,1.015,0.986,1.046,1.069,0.942,0.984,1.0,0.93,0.938,0.92,0.997,1.016,1.023,0.999,1.072,1.035,0.907,0.992 +NM_178553,0.993,0.973,0.923,1.006,1.032,1.157,0.93,1.083,0.892,0.948,0.965,1.065,0.987,1.188,0.951,1.167,1.106,1.098,0.924,0.973,1.011,0.929,0.88,1.151,0.942,0.897,0.953,1.058,1.047,0.95,1.053,0.863,1.005,0.897,1.241,0.931,1.041,0.896,0.998,0.963,1.025,1.049,1.053,0.949,0.866,1.167,1.087,0.949,1.012,1.002,1.036,1.068,1.253,0.983 +NM_178554,1.073,1.021,1.064,1.037,1.214,0.947,1.058,0.877,1.141,1.053,0.887,1.018,1.032,0.929,0.958,0.976,0.957,1.232,1.025,1.025,1.028,1.203,1.031,1.043,0.975,0.926,1.021,0.996,0.888,1.065,0.987,0.938,0.952,0.991,1.193,0.885,0.96,0.897,1.028,0.861,0.945,0.992,1.053,1.045,0.825,1.041,1.045,1.103,0.979,0.92,0.949,0.961,1.052,1.013 +NM_178555,1.034,0.948,1.018,1.029,0.994,1.129,1.027,0.991,0.992,0.993,1.027,0.985,0.942,1.093,0.862,1.044,0.927,1.095,1.164,1.048,0.997,1.088,0.981,0.956,1.017,0.905,0.928,0.924,0.803,1.0,1.0,0.981,0.99,1.013,1.171,1.03,1.11,0.817,0.907,0.946,0.908,0.853,1.098,0.957,1.008,1.097,0.874,0.917,0.978,0.977,1.016,1.018,0.935,0.891 +NM_178556,0.996,1.09,0.957,1.07,1.003,1.076,0.966,1.051,0.87,0.843,0.923,1.223,0.956,0.99,0.999,1.006,1.07,1.009,1.102,1.019,0.945,0.945,0.946,1.004,0.996,1.122,1.027,1.055,0.969,0.926,0.886,1.018,0.966,0.949,1.013,0.89,1.045,1.015,1.092,0.926,0.974,0.915,1.147,0.942,1.008,1.086,1.089,0.905,0.824,0.985,1.047,1.076,1.09,1.002 +NM_178557,0.902,0.955,1.0,1.063,1.098,0.994,1.007,1.154,1.045,1.256,0.899,1.016,0.955,0.979,1.183,0.938,0.98,0.918,1.046,1.056,0.942,0.894,1.151,0.99,0.905,1.039,0.966,0.956,0.764,1.131,0.98,0.893,0.813,0.951,1.08,1.011,1.199,0.979,1.068,0.985,1.097,0.967,0.864,1.013,1.072,1.067,1.116,0.998,0.985,0.985,0.996,1.076,1.094,1.003 +NM_178558,0.857,1.319,1.022,0.854,0.822,1.177,0.852,1.037,1.03,0.911,0.748,0.909,0.947,1.062,1.056,1.35,0.876,1.024,0.938,1.202,0.793,1.037,1.14,0.934,1.028,0.825,1.093,0.958,1.277,1.253,0.994,1.146,1.7,1.106,0.766,0.94,1.07,1.021,1.23,1.244,0.876,1.119,0.907,0.919,0.902,1.184,0.949,0.873,0.976,0.886,1.079,0.966,0.829,1.579 +NM_178559,1.089,0.855,0.981,1.072,0.948,1.051,0.932,1.072,0.95,1.026,1.124,1.007,1.008,0.982,0.775,1.0,1.056,1.254,0.982,1.043,1.109,0.944,0.932,0.896,1.068,1.183,1.007,1.029,0.843,0.996,0.995,1.038,1.022,0.906,1.091,1.079,0.936,0.995,0.921,0.972,0.954,0.861,0.846,1.042,0.999,0.922,0.989,1.08,1.011,1.041,0.96,1.004,1.172,1.045 +NM_178561,0.814,0.77,1.057,1.178,0.994,0.797,1.027,0.816,1.194,0.84,1.161,1.004,0.782,0.843,1.058,1.302,1.001,1.081,0.906,1.229,0.987,0.87,0.859,0.899,0.915,0.822,1.233,1.029,0.921,1.448,1.26,1.495,0.976,1.245,0.942,0.718,1.107,0.945,0.847,0.744,1.298,0.849,1.026,1.083,0.786,0.897,0.996,0.814,1.194,0.993,1.186,1.18,0.995,1.435 +NM_178562,0.723,1.569,1.032,0.663,0.782,1.247,1.123,0.608,0.87,0.952,1.265,0.649,0.713,0.583,0.803,0.751,1.02,0.921,0.653,0.758,0.573,0.699,1.204,0.668,0.679,0.768,0.992,1.022,0.442,2.206,0.862,2.982,1.848,2.062,0.392,1.071,0.842,0.793,1.67,0.75,1.123,1.452,0.675,0.599,1.06,0.912,0.869,0.99,0.655,0.793,0.798,1.223,0.924,2.37 +NM_178563,0.941,1.105,0.963,0.961,1.028,0.938,1.071,0.874,0.938,1.102,1.08,1.081,0.984,0.874,1.15,1.013,0.961,0.958,1.123,0.979,0.998,1.002,0.914,0.991,1.142,0.903,1.127,0.992,1.001,0.994,0.972,0.953,0.967,0.835,1.014,0.876,0.967,1.006,0.958,1.083,1.041,0.975,1.031,1.117,1.015,1.128,1.078,1.047,0.909,0.941,0.936,1.061,1.099,1.027 +NM_178566,1.088,0.792,1.041,1.0,1.031,0.875,1.073,1.082,1.123,1.061,0.936,1.065,0.928,0.95,0.935,1.168,0.969,1.019,1.087,0.901,0.92,1.206,0.966,1.115,1.025,0.822,1.253,0.993,0.903,0.934,1.004,0.885,1.006,0.987,1.019,0.981,0.897,0.977,1.089,1.119,1.127,0.904,0.958,0.961,1.139,0.859,1.032,1.01,0.852,1.236,0.94,1.029,0.967,1.174 +NM_178567,1.069,1.146,0.938,0.989,1.096,1.03,1.221,1.259,1.192,0.999,0.969,1.08,1.101,1.05,1.109,1.082,0.921,0.964,1.041,0.991,0.899,0.951,0.98,1.079,0.949,1.054,0.907,0.909,0.983,0.983,0.902,1.196,1.026,1.062,1.12,0.998,0.938,0.988,1.028,0.916,1.191,1.113,1.013,0.999,0.983,1.115,1.0,1.015,1.164,1.216,0.98,1.017,1.055,0.858 +NM_178568,0.83,1.105,1.033,0.862,1.116,1.022,1.031,1.06,0.999,0.983,1.155,1.028,0.959,0.899,1.073,1.063,1.01,1.027,1.038,0.98,0.861,0.985,1.054,0.999,0.966,0.992,0.999,0.876,0.848,1.048,1.065,0.9,0.904,0.972,1.089,1.079,1.007,0.966,1.114,1.007,0.978,1.03,0.946,1.023,0.905,0.97,1.022,0.982,1.037,1.139,0.949,0.965,0.965,1.045 +NM_178569,0.85,0.934,0.993,0.862,0.881,1.147,0.872,0.84,1.005,0.891,1.141,1.175,0.976,0.893,0.858,1.118,0.793,0.954,0.932,1.117,0.861,0.975,1.118,0.97,1.298,1.207,1.028,0.827,0.823,1.311,0.823,1.293,0.715,1.344,0.826,0.914,0.949,0.886,0.953,1.23,0.928,1.086,1.033,0.934,0.924,0.736,0.911,1.032,0.866,0.943,0.918,1.032,0.894,0.761 +NM_178570,1.064,0.987,0.978,0.969,0.927,1.059,1.13,0.981,1.025,0.803,1.099,0.902,1.071,0.9,0.904,1.05,1.123,0.99,1.048,0.961,1.081,0.861,1.042,1.104,1.059,0.941,1.131,1.067,1.212,1.094,0.936,0.895,1.171,0.977,1.073,1.047,1.13,0.891,0.992,0.953,0.961,1.021,0.786,1.073,1.031,1.047,0.899,0.936,0.855,1.098,1.024,1.002,1.155,0.998 +NM_178571,0.976,1.11,1.121,1.082,1.032,1.024,0.968,1.25,0.967,0.933,1.041,1.065,0.99,0.915,0.946,1.064,0.921,1.017,1.109,0.895,1.016,0.949,1.06,0.947,1.011,1.101,1.006,1.077,0.905,1.043,0.958,1.067,0.994,0.997,0.998,0.894,1.041,0.878,1.019,1.099,0.871,0.923,0.911,0.916,0.997,0.983,0.907,1.058,1.014,0.918,0.868,0.956,0.938,1.185 +NM_178578,1.116,1.06,0.983,0.948,0.847,0.849,0.996,0.999,1.035,0.977,0.882,0.931,1.003,1.033,1.118,0.963,0.957,1.018,0.993,0.93,1.145,1.048,1.079,0.945,0.99,1.0,0.902,0.91,0.909,1.021,1.08,1.106,0.87,1.14,1.11,1.07,0.927,0.977,1.06,0.958,1.095,1.17,1.02,0.926,1.118,0.973,1.03,1.032,0.938,1.089,1.017,1.074,1.03,1.145 +NM_178579,0.438,1.132,0.839,0.564,0.748,1.238,0.736,0.415,0.805,0.749,1.016,0.72,0.514,0.536,0.776,1.449,0.616,0.813,0.854,1.298,0.404,0.666,1.659,0.875,0.738,0.539,0.743,0.814,0.572,1.941,0.586,1.538,1.817,1.581,0.178,1.285,1.369,0.84,1.274,0.95,0.978,1.342,0.938,1.378,0.739,1.212,0.802,0.483,1.075,0.503,1.097,0.613,0.699,2.468 +NM_178580,0.93,0.843,1.073,1.12,0.943,0.951,0.892,0.914,1.155,1.016,0.964,1.017,1.007,0.955,0.94,0.899,1.169,1.005,1.058,1.031,0.952,1.043,0.964,0.984,0.983,1.002,1.094,1.03,0.908,1.017,1.084,1.103,1.107,0.973,1.218,0.829,0.964,1.047,1.238,1.045,1.114,0.985,0.94,0.979,0.975,0.772,1.191,1.084,1.011,1.083,1.043,0.847,0.959,0.952 +NM_178582,0.848,0.916,0.98,0.823,1.197,1.037,0.983,0.928,0.929,1.03,1.032,0.966,1.099,0.96,0.994,1.024,0.94,0.843,1.006,0.985,0.814,1.106,0.912,1.029,0.951,1.078,0.881,0.982,1.012,1.067,0.924,1.155,1.133,0.955,0.969,0.97,0.994,0.825,1.268,1.085,1.022,1.106,1.254,1.044,0.937,1.0,1.152,1.015,1.031,0.95,1.017,0.876,0.849,1.156 +NM_178583,1.138,1.094,1.043,0.995,1.095,0.922,1.068,0.989,1.038,1.072,0.904,1.089,0.946,1.054,0.905,1.037,0.895,0.917,1.02,1.075,1.121,0.993,0.946,0.996,1.026,0.989,0.952,1.109,0.982,0.866,1.065,0.98,1.068,0.944,1.212,1.021,0.795,1.044,1.028,0.995,0.941,0.92,1.093,0.913,1.006,0.996,1.117,1.053,0.942,1.033,0.95,1.058,1.007,1.064 +NM_178584,0.984,0.722,2.292,0.744,1.854,1.458,0.607,2.08,2.03,1.221,0.925,1.892,1.548,0.886,1.259,1.543,1.266,1.344,1.207,0.943,0.342,1.825,1.049,1.937,0.407,0.71,1.658,1.616,0.458,0.937,2.015,1.126,1.857,1.081,1.666,0.424,0.804,1.949,1.089,0.979,1.439,0.98,0.506,0.52,1.624,0.88,1.341,1.792,0.968,1.14,0.942,0.687,0.463,1.045 +NM_178585,1.028,0.944,1.038,1.141,0.954,0.947,0.843,1.144,1.042,0.851,1.09,0.952,1.006,1.064,1.134,1.111,1.0,1.055,0.912,0.941,0.943,0.993,0.877,0.94,1.074,0.925,1.03,1.014,1.079,0.816,1.0,0.976,0.983,0.939,0.972,0.988,1.117,0.991,0.842,1.023,1.048,1.037,1.142,0.994,0.995,0.905,0.939,1.064,0.933,1.056,0.929,1.005,1.149,0.954 +NM_178587,0.968,0.953,0.954,1.085,0.965,1.016,1.235,1.028,0.978,1.04,0.912,0.895,0.893,1.081,0.835,0.833,0.867,1.038,1.064,0.988,1.119,1.002,1.213,1.029,1.029,1.068,0.884,0.959,0.979,1.0,1.099,0.888,1.034,0.982,0.839,1.002,1.041,1.171,0.967,0.983,1.077,0.95,0.962,0.968,0.834,1.006,0.939,1.072,0.951,0.807,1.03,1.037,1.136,0.873 +NM_178588,1.919,2.113,2.553,1.819,2.214,2.024,1.6909999999999998,1.5899999999999999,2.808,2.452,1.705,1.8570000000000002,1.596,1.706,2.662,2.12,2.3369999999999997,1.706,2.12,1.979,1.798,1.77,2.165,2.1470000000000002,1.687,1.687,2.474,2.178,1.374,1.8559999999999999,2.1950000000000003,2.183,2.965,1.8900000000000001,1.579,1.554,2.0250000000000004,2.059,2.0069999999999997,1.51,2.542,1.713,1.959,1.9769999999999999,2.051,2.719,2.5149999999999997,1.644,2.032,1.991,1.762,1.68,2.0869999999999997,2.269 +NM_178812,0.659,1.032,1.273,0.701,0.889,1.579,0.755,0.619,1.197,0.943,1.296,0.958,0.762,0.641,0.957,2.261,0.737,0.981,1.1,0.917,0.357,0.986,1.261,1.29,0.552,0.547,1.464,0.791,0.527,1.366,0.981,1.421,3.098,1.228,0.214,0.749,1.4,0.97,1.514,1.322,1.137,1.151,0.588,0.922,1.091,1.402,0.975,0.931,1.564,0.786,1.22,0.898,0.588,1.988 +NM_178813,1.033,1.06,0.988,0.996,0.981,0.931,1.061,1.059,0.981,0.875,1.221,1.043,0.99,1.05,0.819,0.92,1.05,1.396,1.071,1.065,1.083,1.142,0.961,1.13,0.984,1.139,0.912,0.943,1.607,0.873,0.912,0.937,0.87,1.04,1.085,0.951,0.994,1.07,0.981,0.924,0.813,0.896,1.295,0.933,1.072,1.049,0.903,1.062,0.868,0.835,1.121,1.119,0.924,1.0 +NM_178815,0.953,0.953,1.105,0.946,0.942,1.287,1.083,1.011,1.173,0.936,0.848,0.96,0.986,0.821,0.941,1.128,0.96,0.96,0.911,1.127,0.926,0.964,1.089,1.06,0.905,1.01,1.278,1.013,0.773,0.953,1.18,1.011,1.753,0.967,0.848,0.802,1.08,0.886,1.201,1.027,0.909,0.987,0.904,0.917,0.942,1.277,1.114,0.848,1.359,0.877,1.035,0.921,0.909,1.116 +NM_178816,1.241,0.961,1.019,1.06,0.933,1.036,0.91,1.316,0.909,0.914,1.064,1.089,1.02,1.099,0.928,0.93,1.084,0.96,1.087,1.075,0.962,1.002,0.884,0.957,1.191,0.993,0.84,1.112,0.552,1.083,1.069,1.17,0.914,0.958,0.988,1.035,1.117,1.076,0.969,0.947,0.858,1.014,0.801,0.982,0.923,1.137,1.125,1.127,1.253,1.257,1.267,1.062,0.908,1.029 +NM_178817,0.995,0.869,1.084,0.926,0.897,0.944,1.254,0.95,1.007,0.957,0.932,0.886,0.957,0.937,0.854,1.136,0.848,0.926,1.067,0.975,1.062,1.184,1.027,1.226,1.123,0.897,0.98,1.017,1.023,1.064,1.065,0.994,0.945,1.001,1.029,0.983,1.048,1.083,1.12,0.937,1.034,1.002,1.043,1.051,0.91,1.157,0.884,0.986,1.024,0.933,1.059,1.053,0.872,0.934 +NM_178818,0.308,1.802,0.418,1.101,0.323,1.359,0.795,0.256,0.465,0.353,1.685,0.279,0.277,0.349,0.915,1.718,0.319,0.902,0.344,1.708,0.213,0.371,1.447,0.382,1.81,0.407,0.396,0.348,0.886,1.939,0.425,1.799,1.805,2.519,0.196,1.042,1.811,0.355,1.642,0.809,0.341,1.664,0.651,0.874,0.378,1.665,0.505,0.332,1.297,0.342,1.493,0.449,0.273,2.072 +NM_178819,0.841,1.125,0.9,0.798,0.816,1.061,0.702,0.696,0.963,0.856,0.985,0.636,0.674,0.68,1.032,0.944,0.87,1.016,0.942,0.931,0.753,0.719,1.005,0.918,0.933,0.935,0.983,0.762,0.576,1.461,0.836,1.395,1.576,1.328,0.584,0.846,1.16,0.878,1.466,1.024,0.89,1.178,0.816,1.178,0.868,1.296,1.023,0.772,1.283,0.799,1.019,0.869,0.857,1.139 +NM_178820,2.635,0.857,5.469,1.065,2.375,0.785,0.965,2.043,2.107,2.619,0.617,3.09,2.026,2.285,1.886,1.177,2.214,1.644,3.423,0.76,1.183,2.339,0.837,3.058,0.897,3.779,2.632,2.104,0.771,0.712,1.956,0.881,1.259,0.94,0.87,0.709,0.834,3.294,0.736,0.932,3.269,0.812,0.461,0.595,3.308,0.567,1.393,2.202,0.672,2.495,0.867,1.005,1.743,0.893 +NM_178821,0.909,0.999,1.108,0.962,0.986,1.122,0.907,1.048,1.078,0.922,1.013,1.099,0.976,1.032,0.852,1.175,0.997,0.865,0.978,0.963,1.149,0.958,0.933,0.984,0.994,1.184,1.142,0.989,0.673,1.097,1.156,1.024,1.058,1.083,0.985,0.886,0.944,0.893,1.074,1.153,1.129,0.949,0.979,0.952,1.254,0.802,0.929,0.998,1.019,0.865,1.187,0.946,1.018,1.029 +NM_178822,1.19,1.026,1.085,1.016,1.089,1.013,1.011,0.851,0.922,1.13,0.909,0.893,0.963,1.045,1.175,1.008,1.066,1.073,0.896,1.012,0.896,1.044,0.989,0.984,0.953,1.089,0.892,1.028,1.035,0.947,0.932,0.942,0.938,0.991,0.885,1.129,1.029,0.982,1.027,0.95,1.108,1.197,0.904,1.066,1.022,0.804,0.965,1.031,0.96,1.041,1.018,0.9,0.864,1.077 +NM_178824,1.052,0.854,1.063,1.016,1.005,1.001,1.013,0.932,1.104,0.983,1.095,0.926,0.882,0.965,0.957,1.07,0.986,0.999,0.904,0.933,1.051,1.014,1.029,1.1,1.006,0.913,0.968,0.972,0.672,0.993,1.056,0.919,1.105,0.932,0.927,1.022,0.987,1.069,0.903,0.965,0.957,0.98,0.88,0.988,1.133,1.003,0.942,0.937,1.078,1.074,1.025,1.004,0.97,0.962 +NM_178826,1.047,1.032,1.08,0.928,1.029,1.101,0.959,0.985,1.001,1.015,1.044,1.088,0.847,1.238,0.891,0.964,1.065,1.049,1.038,1.077,1.014,0.905,0.988,0.958,0.824,1.05,1.044,0.977,0.725,0.935,0.919,1.081,0.966,0.973,1.097,0.866,0.998,0.97,1.0,1.061,0.892,0.921,0.865,1.008,1.057,1.128,0.988,1.048,0.972,1.017,1.058,1.036,0.868,1.109 +NM_178827,1.114,0.987,0.882,1.156,1.137,1.047,0.838,1.0,0.986,1.233,0.939,0.879,1.07,0.905,0.859,0.946,1.08,1.065,1.037,0.986,0.924,1.03,0.964,1.032,1.143,1.01,1.051,1.027,1.713,1.047,0.866,0.984,0.996,0.755,0.949,1.149,1.01,0.904,0.996,1.024,1.066,1.031,0.95,0.962,1.141,0.887,0.955,1.057,1.047,1.016,1.072,0.996,1.19,1.272 +NM_178828,1.0,1.128,0.933,1.072,0.938,1.012,0.826,0.883,1.036,0.824,0.927,0.993,0.889,1.05,1.03,1.161,1.096,1.134,0.792,1.093,1.038,1.017,1.017,0.943,1.048,1.162,1.064,0.912,0.86,0.894,1.246,0.955,1.051,1.154,1.064,0.903,1.039,1.059,1.088,0.944,0.885,1.043,0.988,1.003,1.002,0.983,1.018,1.002,1.103,0.955,1.097,0.85,1.0,1.006 +NM_178829,1.095,1.11,1.001,0.998,0.916,0.996,1.341,1.149,1.005,0.933,0.855,1.096,0.794,0.831,1.008,1.071,0.947,0.895,1.046,1.108,1.206,0.935,1.018,0.971,1.058,0.985,0.816,0.952,0.981,0.944,1.059,1.011,1.078,0.97,1.081,1.023,0.966,0.95,0.953,1.027,0.974,0.992,1.09,0.989,0.991,0.907,0.924,1.039,0.999,1.194,0.864,1.071,1.106,0.994 +NM_178830,0.902,0.922,1.168,0.839,0.915,1.065,0.787,1.159,1.058,1.016,0.888,0.94,0.877,0.986,1.01,1.141,0.93,0.985,1.113,0.873,0.84,1.242,0.991,1.32,0.816,1.034,1.266,0.897,0.828,0.961,1.147,1.168,1.251,1.042,0.795,0.827,1.02,1.138,1.287,0.983,1.04,0.964,0.978,1.071,1.156,0.995,0.969,0.933,1.034,0.994,0.833,0.868,0.884,1.276 +NM_178832,0.767,1.039,1.101,1.188,0.925,1.251,0.896,0.845,0.913,1.043,1.187,0.898,0.856,0.984,0.936,0.885,0.769,0.991,0.986,1.16,0.842,1.016,1.072,0.967,1.08,0.9,0.864,1.129,0.885,1.186,0.892,2.39,1.677,1.453,0.741,0.892,0.996,0.982,1.337,0.888,0.947,1.105,0.807,1.048,0.861,1.155,0.762,0.91,0.959,0.812,1.05,0.896,1.084,1.64 +NM_178833,0.906,1.341,0.894,1.128,1.02,0.967,1.016,0.975,1.095,1.0,0.957,0.835,0.926,0.921,0.938,0.951,0.793,1.036,1.056,0.895,0.947,0.774,0.969,0.908,0.9,0.88,0.818,0.87,1.195,0.939,0.896,1.333,1.077,1.23,0.926,1.014,1.056,1.0,1.39,0.866,1.08,1.009,1.073,1.77,0.947,1.078,0.86,0.944,1.514,0.986,1.071,1.08,1.004,1.037 +NM_178834,0.871,0.877,0.931,0.783,1.187,0.919,1.062,1.24,1.551,0.886,0.811,0.93,1.334,1.172,1.042,0.93,0.861,0.918,1.184,0.795,1.02,1.079,0.903,0.83,0.828,1.272,1.103,2.0,0.822,0.907,1.773,2.462,1.169,1.222,2.645,0.714,0.849,2.507,1.036,1.435,1.105,1.185,0.716,0.949,1.002,0.871,1.831,1.227,0.805,0.81,1.04,1.661,1.102,1.422 +NM_178835,0.659,1.271,1.371,0.726,0.715,1.268,0.877,0.72,0.643,0.793,1.207,0.619,0.735,0.568,0.956,1.581,0.72,0.954,0.83,1.145,0.695,0.668,1.158,0.743,0.862,0.913,1.048,0.655,0.686,1.42,0.619,1.913,1.471,1.325,0.585,0.875,1.233,0.613,1.207,1.217,0.878,1.071,1.053,1.355,0.72,0.876,1.02,0.666,0.73,0.728,1.178,0.886,0.826,1.218 +NM_178836,0.886,1.03,0.978,0.997,1.118,0.997,0.918,1.025,1.003,0.913,0.907,0.933,0.983,1.029,0.888,0.937,0.996,1.075,0.921,0.918,1.06,0.939,0.985,0.955,1.131,1.023,0.976,0.901,1.058,1.098,0.996,1.095,1.351,1.13,1.057,0.877,0.999,0.905,1.167,1.085,0.928,1.119,0.866,1.001,0.895,1.003,0.983,0.886,0.943,1.133,1.029,1.032,1.048,1.338 +NM_178837,0.951,1.018,0.949,1.047,1.029,0.999,0.99,0.88,0.915,1.034,0.961,1.056,0.975,1.012,0.898,0.923,1.075,0.993,0.902,0.97,1.044,0.904,0.987,1.224,1.006,1.001,0.997,0.926,0.917,0.955,1.06,1.066,1.163,1.026,1.047,1.035,1.044,1.07,1.024,1.133,0.921,0.919,1.042,1.164,0.987,0.883,1.02,0.986,1.038,0.928,0.968,0.898,0.942,0.94 +NM_178839,0.917,0.974,1.101,1.248,1.051,1.027,1.048,1.088,1.001,0.784,1.051,1.067,1.069,0.815,0.884,0.846,0.924,1.019,0.893,1.152,0.93,0.943,0.877,1.108,0.924,0.991,0.999,1.061,1.178,1.121,0.947,1.01,0.996,0.925,1.03,0.982,0.891,0.86,0.764,0.985,0.92,0.974,1.106,0.948,0.947,1.049,0.88,1.067,0.995,0.863,1.14,0.882,0.916,1.066 +NM_178840,1.028,1.087,1.038,0.988,0.854,1.099,1.058,1.141,1.002,1.048,1.001,0.958,1.201,1.133,0.739,1.082,0.95,1.084,0.988,0.967,1.072,0.937,0.962,1.08,0.94,0.999,0.871,0.915,0.735,1.022,1.149,0.969,0.96,1.246,0.98,1.015,1.054,1.02,1.116,0.898,0.951,1.165,0.822,0.895,0.964,1.074,0.797,0.981,1.079,1.03,1.053,0.927,1.067,1.008 +NM_178841,1.133,1.046,0.957,0.955,1.221,0.944,0.891,0.805,1.155,1.001,0.953,0.998,0.907,1.247,1.234,1.087,1.076,1.004,0.845,0.877,0.935,0.903,0.927,0.913,1.111,0.994,1.068,0.716,1.124,1.043,0.895,1.382,1.238,1.004,0.958,0.983,0.873,0.972,1.141,1.219,1.016,1.01,0.898,1.271,0.985,0.909,0.949,0.864,0.939,1.147,0.859,0.941,0.806,1.132 +NM_178842,1.41,0.76,2.134,1.016,1.826,0.893,0.816,1.138,1.809,1.821,0.807,1.34,1.38,1.136,1.056,0.948,1.725,1.411,1.619,0.794,1.179,1.702,0.822,1.809,0.785,1.406,2.33,1.776,1.221,0.878,1.489,0.881,1.086,0.8,0.851,0.787,0.753,1.485,0.917,0.785,1.983,0.792,0.805,0.713,1.941,0.856,1.63,1.699,0.781,2.281,0.925,0.932,1.43,0.868 +NM_178844,0.98,0.935,0.953,0.96,1.06,1.038,1.016,0.961,0.959,0.945,1.064,0.898,0.916,1.044,1.114,0.979,0.978,0.871,1.07,1.256,0.942,0.964,1.182,0.867,1.05,1.054,0.982,1.043,1.484,1.03,1.167,1.094,0.947,0.932,0.978,1.037,0.955,1.006,0.979,0.804,1.044,0.972,1.161,0.995,0.999,0.914,0.953,0.927,1.072,0.981,1.005,0.881,0.794,1.059 +NM_178850,1.109,1.108,1.002,1.058,0.974,0.934,1.152,1.077,1.181,0.792,1.05,0.937,0.995,1.144,1.077,1.142,0.926,0.916,0.892,0.875,0.911,0.949,1.014,1.042,1.014,0.965,0.936,1.041,1.158,0.947,1.098,0.985,1.015,1.013,1.044,1.071,1.078,0.777,1.097,1.075,1.087,1.055,1.023,0.921,1.014,0.99,0.932,0.997,1.113,1.089,0.927,1.043,1.041,0.948 +NM_178857,1.104,1.115,1.048,0.901,0.941,1.004,0.903,1.021,1.09,1.056,0.913,1.034,0.911,1.072,0.764,1.043,0.966,0.866,0.988,1.175,0.905,1.054,0.904,0.997,1.029,0.992,1.064,1.037,1.319,1.121,0.859,1.049,0.797,1.015,0.934,1.035,0.887,1.135,0.987,1.02,1.074,1.091,0.763,0.945,1.047,1.112,1.067,1.0,1.013,1.119,0.946,0.964,0.998,0.901 +NM_178858,0.802,1.12,0.847,1.021,0.695,1.109,0.868,0.443,0.717,0.683,1.016,0.692,0.707,0.709,0.566,1.319,0.698,0.975,0.983,1.493,0.592,0.641,2.113,0.99,1.118,0.812,0.931,0.785,0.634,1.817,0.616,1.449,1.673,1.612,0.47,1.74,1.27,0.617,1.649,0.654,0.878,1.594,0.942,1.658,0.719,1.397,0.741,0.612,0.869,0.794,1.793,0.811,0.791,0.984 +NM_178859,0.974,0.947,1.08,1.351,0.951,1.361,1.107,0.977,0.935,0.977,2.626,0.972,0.911,0.919,4.587,6.068,0.988,0.891,0.944,1.545,0.906,0.901,2.301,0.983,1.142,0.903,0.945,0.886,0.656,1.181,0.924,0.909,0.933,0.877,0.92,1.126,5.197,0.883,0.968,1.167,0.999,2.215,3.013,0.882,0.904,2.894,2.441,0.909,6.589,0.957,1.771,1.171,1.057,1.058 +NM_178860,1.147,0.977,1.001,1.159,1.34,1.005,1.245,0.943,0.845,1.053,0.997,1.125,0.951,0.984,0.791,0.966,1.007,0.995,1.21,0.862,1.116,0.921,0.945,1.062,0.925,0.999,1.05,0.98,0.876,1.086,0.866,0.89,1.004,0.94,1.11,0.795,0.91,0.923,0.992,0.902,1.048,0.836,0.851,1.101,1.031,0.929,0.889,1.012,0.907,1.119,1.106,1.027,0.993,0.944 +NM_178862,0.718,1.003,1.212,0.768,1.272,0.88,0.803,0.796,1.228,1.212,0.837,0.805,0.665,0.793,0.934,1.344,1.115,1.033,1.301,0.804,0.86,0.773,1.167,1.076,0.737,0.786,1.077,1.056,0.543,0.906,1.023,0.906,1.544,1.021,0.837,0.83,0.973,1.144,1.338,0.906,1.286,0.924,0.755,0.892,1.014,1.051,1.071,0.868,1.147,0.996,1.097,0.76,1.057,1.388 +NM_178863,1.012,1.004,0.902,1.088,0.926,1.062,0.993,0.937,0.852,0.886,0.999,1.022,0.79,1.067,0.986,0.93,0.999,0.874,1.016,1.076,1.024,0.862,0.959,1.042,0.889,0.827,1.048,1.01,1.256,0.951,1.127,1.299,1.441,0.982,0.9,1.087,1.137,0.933,0.938,0.999,0.891,1.003,1.045,1.032,0.889,0.925,0.999,0.853,1.062,0.935,1.02,0.957,1.115,1.056 +NM_178864,0.998,0.999,0.964,0.85,1.089,0.949,0.844,0.912,0.993,0.969,0.981,0.88,1.028,0.982,0.818,0.954,1.02,0.914,0.904,1.066,1.035,1.13,0.931,0.992,0.872,1.049,1.027,1.07,0.923,0.893,1.026,0.975,0.832,0.996,0.923,0.92,0.974,1.188,1.088,0.923,1.103,0.943,1.076,1.029,1.104,0.97,0.935,1.039,1.064,0.937,1.051,1.074,1.082,1.033 +NM_178865,0.99,0.757,0.927,1.272,0.541,1.514,0.459,1.212,0.682,0.625,1.418,0.548,0.979,0.833,1.05,1.944,0.779,0.68,1.424,1.079,0.873,1.09,0.713,0.75,0.782,2.387,1.029,0.713,0.594,1.243,1.119,0.712,2.47,2.168,3.648,0.696,1.212,0.661,2.545,0.706,0.623,1.41,0.62,2.609,0.827,0.925,1.091,1.569,0.765,1.277,1.337,0.93,0.9,0.643 +NM_178867,0.618,1.411,0.655,0.682,0.681,0.886,0.634,0.451,0.765,0.809,1.359,0.951,0.603,0.546,0.783,1.536,0.539,0.723,1.125,0.872,0.407,0.651,1.568,1.026,0.772,0.676,1.101,0.697,0.358,0.995,0.664,1.443,2.174,1.382,0.258,2.87,1.262,0.624,1.935,0.994,0.879,1.491,0.952,2.155,0.846,1.161,1.253,0.597,1.4,0.497,1.005,1.245,0.752,2.045 +NM_178868,0.425,1.957,0.332,0.796,0.313,1.396,0.889,0.354,0.452,0.385,1.457,0.326,0.375,0.44,0.793,1.423,0.355,0.883,0.439,1.36,0.426,0.399,1.612,0.466,0.956,0.465,0.33,0.433,0.992,1.71,0.362,1.441,1.166,2.619,0.275,1.169,1.393,0.494,1.311,1.005,0.462,1.49,0.8,1.389,0.369,1.266,0.844,0.398,0.881,0.371,1.231,0.771,0.35,1.782 +NM_180699,0.61,0.843,1.446,0.767,1.108,1.209,0.964,0.68,1.087,1.171,0.718,0.788,0.861,0.563,0.905,1.454,0.981,1.233,1.103,1.112,0.589,1.162,1.277,1.217,0.604,0.801,1.247,0.99,0.781,0.662,1.003,1.256,1.017,1.355,0.657,0.848,0.761,0.939,1.521,0.998,1.169,1.235,0.655,0.714,1.239,0.835,1.165,1.25,1.146,0.953,0.872,0.833,0.772,1.39 +NM_180977,0.867,0.894,1.055,0.87,0.809,1.124,0.67,0.702,0.892,0.936,0.789,0.913,0.719,0.827,1.157,1.417,1.025,0.983,1.175,0.805,0.782,0.934,1.097,0.978,0.766,0.882,1.487,0.724,0.634,1.24,0.947,1.516,2.923,1.098,0.585,0.852,1.306,1.029,1.446,0.754,0.975,1.043,0.767,1.162,0.795,0.939,0.951,0.906,1.076,0.893,1.02,0.709,0.802,1.496 +NM_181050,0.91,0.667,1.214,0.914,0.817,1.2,0.606,0.535,0.952,0.876,1.318,0.697,0.729,0.718,0.996,1.262,0.837,0.824,1.027,1.387,0.652,0.588,1.418,0.712,0.795,0.772,0.853,0.693,0.551,0.804,0.601,1.348,3.242,1.665,0.423,1.038,1.029,0.626,1.641,1.007,0.497,1.379,1.057,2.094,0.947,0.914,1.011,0.899,0.722,0.774,0.901,0.856,1.02,1.351 +NM_181054,0.789,0.72,2.525,0.574,1.239,1.004,0.862,1.345,1.013,1.03,0.618,1.209,1.022,0.84,1.068,2.253,1.405,1.123,0.547,0.879,0.448,1.717,0.89,1.852,0.501,0.503,1.876,1.005,0.536,0.851,1.571,1.369,1.525,0.728,0.492,0.448,0.893,1.875,2.252,1.896,1.088,0.793,0.722,0.515,1.384,0.935,1.08,1.151,2.203,1.136,1.14,1.015,0.493,1.107 +NM_181077,1.749,2.069,2.017,1.9909999999999999,1.943,2.5090000000000003,1.786,1.74,2.934,1.8399999999999999,2.984,1.821,1.749,1.907,3.049,1.948,1.973,1.7429999999999999,1.625,1.967,1.677,1.983,2.75,2.6980000000000004,1.913,1.63,2.684,1.9540000000000002,1.843,2.04,2.038,3.163,2.488,1.886,1.757,1.748,1.6640000000000001,1.758,5.101,2.148,1.841,1.777,2.284,1.7610000000000001,1.8729999999999998,1.798,2.064,1.7189999999999999,3.113,1.675,3.402,2.0540000000000003,1.674,2.274 +NM_181078,1.066,0.954,0.908,0.897,0.916,0.985,0.934,1.072,0.86,0.988,0.915,1.098,0.957,1.118,1.064,1.063,0.998,1.005,0.961,1.078,0.924,0.942,1.021,0.886,1.055,0.86,0.891,1.041,0.897,1.011,1.068,1.116,0.917,1.102,1.197,0.945,0.992,0.948,1.006,1.172,0.983,0.809,0.879,1.092,0.89,0.935,1.043,0.997,0.897,1.102,0.925,0.937,0.95,1.011 +NM_181093,0.988,0.913,1.012,1.082,1.121,0.901,1.088,0.988,1.035,1.011,0.983,0.983,1.036,1.117,1.009,0.929,0.904,0.981,0.855,1.066,0.958,0.958,1.017,0.996,1.021,0.953,0.887,0.977,1.047,1.013,1.138,1.028,0.829,0.98,0.974,1.132,0.886,0.909,1.011,0.906,0.984,0.926,1.141,0.966,1.01,1.007,0.978,0.956,0.956,1.219,1.016,1.206,1.004,1.019 +NM_181265,2.05,2.024,1.971,2.13,2.31,1.944,1.922,1.897,1.889,1.943,2.05,2.1020000000000003,1.928,2.09,1.839,1.939,2.1820000000000004,1.953,2.271,1.961,2.144,2.05,1.948,1.9689999999999999,1.8820000000000001,1.94,2.0780000000000003,2.2409999999999997,1.673,2.009,2.132,1.8699999999999999,2.056,2.036,2.145,2.081,1.9369999999999998,1.9809999999999999,2.174,2.0,2.0940000000000003,2.286,1.982,1.952,1.952,2.2439999999999998,1.903,1.9540000000000002,2.031,2.084,2.179,2.002,1.94,1.891 +NM_181289,0.918,0.923,0.96,0.867,0.868,1.027,0.806,0.883,0.943,0.871,0.971,0.897,0.899,0.901,0.816,0.985,0.96,0.949,0.947,0.921,1.072,1.052,0.993,0.945,0.865,0.946,1.005,1.041,0.663,1.018,0.923,1.348,1.149,1.0,1.001,1.115,0.987,0.956,1.016,0.984,1.07,0.969,0.853,0.997,1.031,1.011,1.051,0.915,1.107,0.874,1.074,0.908,0.977,0.981 +NM_181291,0.871,0.854,1.358,0.806,0.957,0.897,0.649,0.755,1.221,0.962,0.929,1.066,0.893,0.878,1.022,1.406,0.903,1.002,1.124,1.024,0.759,0.931,1.031,1.141,0.708,1.243,1.509,1.057,0.627,0.926,1.186,1.348,1.306,1.148,0.53,0.78,0.955,1.153,1.171,0.828,1.158,0.949,0.615,1.082,1.314,0.849,1.14,1.049,0.832,1.048,0.891,0.791,1.0,1.484 +NM_181302,0.883,0.973,0.963,1.009,1.032,0.942,0.744,0.93,1.245,0.99,1.429,0.843,0.985,0.942,1.069,1.381,0.901,0.957,1.023,0.971,0.901,0.763,0.904,1.049,0.733,0.91,1.033,1.098,0.751,0.984,1.059,1.235,1.119,1.075,0.911,0.908,1.068,0.905,1.071,0.931,1.128,0.927,0.873,1.027,0.938,1.335,1.065,0.808,1.024,0.871,0.991,0.923,0.956,1.295 +NM_181307,0.722,1.377,1.05,0.907,1.117,1.226,0.614,0.623,0.978,1.088,1.003,1.586,0.753,0.572,1.044,1.403,0.86,0.997,0.896,1.113,0.442,0.866,1.368,1.09,0.661,0.761,1.09,0.908,0.491,1.443,0.704,0.996,1.664,1.192,0.365,1.011,1.119,0.859,1.297,0.659,0.904,0.988,0.774,0.791,0.851,1.003,1.142,0.715,1.682,0.693,1.119,0.746,0.834,1.209 +NM_181310,0.91,1.029,0.905,0.988,1.067,1.003,0.83,1.016,1.186,1.026,1.02,1.133,1.101,0.99,1.209,0.968,1.119,1.181,0.797,0.951,0.964,0.989,0.825,0.939,0.9,1.101,0.951,1.182,1.33,1.071,0.887,0.951,0.97,1.008,0.958,0.862,0.819,0.986,1.028,0.964,1.04,0.92,1.011,0.938,1.009,1.062,1.139,1.086,1.058,1.128,0.999,1.101,1.016,0.967 +NM_181313,0.756,0.91,1.016,0.828,0.828,1.183,0.772,0.774,0.959,0.899,0.879,0.847,0.869,0.836,0.95,1.331,0.97,0.973,1.387,0.849,0.932,1.169,1.082,1.041,0.785,0.999,1.159,0.929,0.649,0.959,0.945,1.237,1.814,1.048,0.811,1.279,1.125,0.902,1.506,1.024,1.001,0.895,0.786,1.777,0.979,0.895,1.056,1.069,1.049,0.916,0.994,1.033,1.078,1.06 +NM_181314,1.031,0.983,1.155,0.823,1.044,1.016,0.843,1.065,1.144,1.095,0.855,1.069,0.896,0.811,0.961,1.124,1.103,1.093,1.029,0.765,0.735,0.958,0.886,1.119,0.842,1.062,1.099,1.076,0.79,1.006,1.192,0.907,0.866,1.0,0.989,0.948,0.956,1.131,1.237,0.871,0.943,0.921,0.94,1.0,1.035,0.884,1.006,1.102,0.913,1.196,0.947,0.781,0.87,0.969 +NM_181332,1.6829999999999998,2.0220000000000002,2.022,2.293,1.988,2.186,2.085,1.688,1.798,2.024,2.113,2.067,1.99,2.0020000000000002,2.126,1.9529999999999998,1.991,1.917,1.729,2.0549999999999997,2.035,1.7240000000000002,2.255,1.8559999999999999,2.2089999999999996,1.815,2.475,1.892,1.675,2.92,2.276,1.788,1.846,2.618,1.9769999999999999,1.8860000000000001,2.109,1.845,2.126,1.794,1.858,2.66,1.7109999999999999,1.833,2.007,2.162,2.0300000000000002,2.2119999999999997,1.818,2.073,1.9089999999999998,1.866,2.426,2.0909999999999997 +NM_181333,1.078,0.919,1.097,0.92,0.932,0.935,1.214,0.895,0.941,1.15,0.943,1.135,0.908,0.991,0.903,1.032,1.063,1.049,0.867,1.085,1.079,1.002,0.971,1.076,1.034,1.111,0.957,1.065,0.823,1.026,0.924,0.921,1.062,1.005,1.168,1.034,1.082,1.003,1.09,1.024,0.847,1.025,0.918,0.97,1.061,0.982,0.985,0.965,1.019,1.016,1.007,1.117,0.94,1.014 +NM_181334,0.901,0.904,1.041,1.002,0.962,0.959,0.96,1.176,0.895,1.007,1.124,0.863,1.018,0.987,0.944,1.002,0.972,0.938,1.006,0.959,1.106,0.976,1.072,0.856,0.996,0.931,1.161,0.959,1.425,0.969,0.947,0.98,1.199,1.027,1.103,0.974,1.0,0.983,0.912,1.086,1.001,0.831,0.91,1.026,1.023,1.128,0.9,0.908,1.164,0.969,1.079,0.917,0.836,1.211 +NM_181335,0.925,1.295,1.0,0.998,0.914,0.987,0.982,0.893,1.06,0.843,0.887,0.978,0.931,0.903,0.847,1.011,0.815,0.996,0.989,1.103,1.053,1.018,1.381,0.953,0.791,1.03,0.834,0.808,0.695,0.838,1.011,1.095,1.816,1.15,0.968,0.97,1.021,0.948,1.384,1.115,0.928,1.042,1.046,1.189,1.022,0.88,0.872,0.778,0.851,0.859,1.013,0.952,1.069,1.672 +NM_181336,0.866,0.99,1.362,0.813,1.136,1.166,0.841,0.744,1.414,0.928,0.843,0.989,0.836,0.663,0.901,1.157,1.114,1.019,0.921,1.218,0.69,0.914,1.286,1.072,0.616,0.869,1.312,1.289,0.536,1.094,1.104,2.249,1.376,1.163,0.487,0.837,0.965,1.179,1.259,1.04,1.277,0.947,0.644,0.851,1.18,0.976,1.13,0.97,1.019,0.96,1.094,0.72,0.639,1.785 +NM_181337,1.127,0.986,1.004,1.063,0.809,1.009,0.963,0.915,0.931,0.966,0.973,1.079,1.021,0.903,0.966,0.96,0.933,1.075,1.124,0.972,0.98,1.022,0.922,1.035,0.936,1.055,0.963,0.99,1.236,0.958,1.02,0.877,0.855,1.079,0.923,0.932,1.043,0.937,0.901,0.906,1.112,1.117,0.891,1.019,0.863,1.165,1.008,1.014,1.192,1.079,1.212,0.991,0.953,0.904 +NM_181339,0.977,0.908,0.999,0.978,1.028,1.068,1.107,1.019,0.886,1.033,1.079,0.849,0.919,0.954,0.768,1.057,0.978,1.071,1.097,0.957,0.943,0.94,0.894,1.083,0.928,1.111,1.077,1.082,1.004,0.949,1.038,1.135,0.863,0.998,1.055,0.853,1.06,1.082,1.006,1.044,0.987,0.989,0.971,0.942,1.082,1.012,0.979,0.916,0.946,1.016,1.068,1.212,1.119,0.991 +NM_181341,0.881,1.192,1.117,0.921,0.941,0.925,0.935,0.628,1.217,1.031,0.705,0.942,0.76,1.0,0.897,1.017,0.847,0.867,1.277,1.031,0.938,1.109,1.003,0.963,1.048,0.973,0.931,0.934,0.763,1.252,0.99,1.16,1.532,1.28,0.648,0.848,0.917,1.042,1.093,1.015,1.14,1.143,0.754,1.048,0.993,0.824,0.918,0.989,0.939,0.874,0.926,0.863,1.068,1.272 +NM_181342,0.879,1.206,0.927,0.98,0.806,1.097,0.954,0.974,0.946,0.844,0.983,1.101,0.855,0.84,1.244,1.19,0.8,1.066,0.915,1.105,0.986,1.06,1.27,1.052,1.08,0.893,1.047,0.9,0.943,1.061,1.004,1.744,1.544,1.188,0.879,0.953,0.982,0.959,1.179,0.816,0.848,1.232,1.095,0.909,0.802,0.986,0.866,0.985,1.132,0.967,1.063,1.047,1.054,1.047 +NM_181349,1.001,0.846,1.144,0.98,0.927,0.999,0.741,0.65,1.067,0.879,0.775,0.791,0.786,0.844,0.999,0.882,1.029,1.033,1.204,0.921,0.951,1.099,1.041,0.979,0.819,1.267,1.057,1.124,0.85,1.096,1.118,1.211,1.114,1.143,2.001,0.746,0.802,1.189,1.478,1.181,1.107,0.922,0.736,1.599,1.157,0.77,0.904,1.281,0.725,0.979,0.912,1.018,0.956,1.033 +NM_181351,1.052,1.153,0.943,0.876,0.951,0.967,0.937,1.151,0.928,0.934,0.971,0.961,0.856,0.928,0.928,0.959,0.91,0.882,0.942,1.016,0.965,0.978,1.028,0.986,1.283,0.945,0.989,0.935,1.146,1.057,0.912,0.879,0.934,1.073,0.904,0.946,1.189,1.065,0.945,1.008,1.0,1.183,0.979,0.957,1.037,0.874,1.043,0.902,0.868,1.043,0.985,1.011,0.984,1.033 +NM_181353,0.952,0.96,0.982,1.092,0.973,1.026,0.75,1.021,0.965,0.929,1.018,1.16,1.047,0.81,0.874,0.911,1.103,0.993,1.106,0.884,1.068,1.007,1.075,1.087,0.932,1.07,1.001,0.906,0.566,1.118,0.86,0.931,1.046,0.982,0.986,0.862,1.143,0.934,0.894,1.012,0.984,0.918,1.106,1.049,1.013,0.957,1.093,0.865,1.031,0.905,1.004,0.887,1.372,1.043 +NM_181354,1.352,0.991,1.527,0.842,1.743,0.857,0.732,1.324,2.059,1.156,0.849,1.187,0.995,0.943,1.216,1.134,0.862,1.089,1.59,0.777,0.809,1.63,0.79,1.543,0.691,1.194,1.179,1.778,0.567,1.01,1.529,0.952,1.252,1.093,2.743,0.765,0.804,1.756,0.869,0.935,1.374,1.005,0.628,0.801,1.228,0.874,1.143,1.711,0.839,1.204,0.981,0.778,0.933,0.973 +NM_181355,0.832,1.067,0.922,1.036,0.828,1.229,1.183,0.842,0.964,0.822,1.07,0.842,0.914,0.833,1.032,0.862,0.911,1.125,1.025,1.041,0.93,0.825,0.933,0.957,0.99,0.893,0.988,0.929,0.753,1.157,1.157,1.161,0.999,1.425,0.951,0.794,1.0,0.854,1.134,0.849,0.943,1.097,1.043,1.073,0.841,1.064,0.913,0.786,0.891,0.965,0.976,0.902,0.779,1.054 +NM_181356,0.967,1.234,1.05,0.891,1.006,0.999,0.891,1.049,1.012,0.86,0.911,0.878,0.956,1.044,0.971,0.89,1.014,0.887,1.028,1.022,0.967,1.012,1.017,0.929,1.064,0.975,0.967,0.881,0.794,0.945,1.045,1.468,1.156,1.18,0.829,0.869,1.057,0.918,1.156,1.007,1.054,0.92,0.92,1.076,1.005,1.008,0.965,0.906,0.903,0.954,1.097,1.02,0.965,1.076 +NM_181361,0.899,1.005,1.059,0.875,0.852,1.028,1.015,1.054,1.133,1.061,1.102,1.002,1.109,0.877,1.052,0.868,0.946,0.803,0.891,1.012,1.054,0.844,1.005,1.06,0.901,1.138,1.16,0.986,1.038,0.948,0.967,1.101,0.878,1.023,0.991,0.973,0.979,1.194,0.964,1.076,0.923,0.854,1.178,0.876,1.066,1.024,0.899,0.974,1.061,0.99,1.099,1.002,0.953,1.032 +NM_181428,0.484,1.671,2.239,0.881,0.693,2.552,1.956,0.568,0.747,0.764,0.261,0.5,0.939,0.404,0.946,2.105,2.128,2.037,0.311,1.474,0.205,0.999,1.561,0.99,1.014,0.152,1.657,0.593,0.761,2.507,1.007,0.445,1.299,1.935,0.195,0.346,1.351,0.32,4.759,1.543,1.051,1.533,0.748,0.241,1.001,1.173,1.215,0.897,2.101,0.229,2.025,0.962,0.262,1.534 +NM_181429,1.003,1.05,1.051,1.033,0.963,0.938,0.984,0.919,0.998,0.999,1.03,1.01,0.913,1.141,1.156,0.835,1.022,0.919,1.114,0.939,1.063,0.927,0.912,1.092,0.956,1.158,1.138,0.926,0.643,0.997,0.955,1.101,0.972,1.047,0.916,0.968,1.021,0.988,0.977,0.98,1.052,1.108,0.896,1.126,1.063,0.996,1.027,1.083,0.882,0.927,1.067,1.062,0.892,0.955 +NM_181430,0.948,0.98,0.991,0.969,1.031,0.993,0.695,1.162,0.818,1.07,1.096,0.931,0.952,0.875,0.796,0.904,1.002,0.94,0.959,1.019,1.105,0.899,0.979,1.015,1.009,0.982,0.895,0.937,0.596,1.019,1.05,1.022,0.947,0.838,0.958,1.079,1.053,0.884,0.95,0.891,0.963,0.919,1.156,1.015,0.974,1.018,0.953,1.026,0.898,1.143,0.927,1.024,0.91,0.982 +NM_181431,1.346,1.09,0.966,1.037,0.963,1.105,0.971,0.997,0.787,1.129,1.042,1.185,0.869,1.1,1.127,1.008,1.09,0.914,0.948,0.984,0.85,0.889,1.019,0.989,0.926,1.014,1.175,0.85,1.298,0.934,0.984,1.364,0.968,1.11,0.999,1.011,1.063,0.913,1.127,0.922,1.024,0.93,1.15,0.93,1.214,1.047,0.876,0.943,1.027,1.035,0.838,0.848,0.931,1.173 +NM_181435,1.106,0.958,0.887,0.893,0.915,0.93,1.17,0.925,1.069,1.042,0.885,1.068,0.975,0.849,1.051,0.919,0.913,1.037,1.064,1.237,1.03,1.105,1.162,0.943,1.089,1.068,1.039,0.965,0.971,1.047,1.003,1.024,0.974,1.365,1.044,1.023,1.085,1.07,0.968,1.041,0.968,1.052,0.888,1.048,1.14,0.993,1.11,0.962,0.951,0.97,0.873,0.967,1.151,0.85 +NM_181442,0.659,1.054,1.752,0.694,0.971,1.122,0.646,0.554,1.373,0.909,0.808,0.811,0.656,0.719,1.161,1.337,0.887,1.001,1.001,1.139,0.514,1.002,1.425,1.2,0.546,0.531,1.711,0.935,0.536,1.179,1.159,1.507,2.628,1.169,0.639,0.717,0.862,0.975,1.091,1.382,1.129,1.142,0.741,0.992,1.128,0.757,0.91,0.797,1.039,0.999,1.087,0.785,0.733,2.078 +NM_181443,1.596,1.9929999999999999,1.647,1.93,1.625,2.658,1.85,1.7600000000000002,1.5310000000000001,1.573,3.319,1.4420000000000002,1.487,1.541,1.917,2.857,1.569,1.863,1.626,2.258,1.53,1.6960000000000002,2.532,1.6709999999999998,2.248,1.4969999999999999,1.576,1.445,1.5350000000000001,2.806,1.479,1.964,2.674,2.883,1.6110000000000002,1.695,2.8739999999999997,1.447,2.427,2.145,1.553,2.452,2.231,2.166,1.629,2.651,1.64,1.575,2.2640000000000002,1.585,2.471,1.991,1.7530000000000001,2.551 +NM_181446,1.176,1.035,1.006,1.253,1.006,0.904,0.991,0.987,0.956,1.31,1.167,0.94,1.1,1.282,1.082,0.959,1.034,1.062,1.155,1.088,1.039,1.098,1.086,1.208,0.895,1.069,0.904,1.01,1.052,0.909,1.098,1.03,0.906,0.816,0.958,0.949,0.869,1.165,0.918,1.029,1.07,1.12,1.27,0.934,1.099,0.883,1.195,1.075,1.007,0.839,0.982,0.95,0.911,0.897 +NM_181449,1.029,0.972,1.097,0.792,0.994,0.963,0.826,1.027,1.162,0.923,0.982,1.063,0.836,1.089,0.975,1.097,1.133,0.892,1.046,1.027,1.113,0.973,0.954,0.945,0.994,1.094,1.18,0.995,0.807,1.059,1.013,1.048,0.851,0.968,1.0,1.069,0.924,1.063,0.792,0.992,0.947,1.207,1.094,0.997,0.95,0.951,1.008,1.058,1.027,0.921,1.089,0.971,0.913,0.992 +NM_181453,1.088,1.026,0.998,1.018,1.009,0.997,0.863,1.126,1.008,0.943,1.007,1.032,0.97,1.084,0.937,0.923,0.978,0.964,1.042,1.014,1.06,1.056,0.885,0.967,0.967,1.146,0.952,0.976,1.005,0.97,0.924,1.011,0.846,1.01,1.022,0.926,1.118,0.944,0.959,1.09,0.873,0.993,0.865,0.964,0.946,1.022,0.94,1.221,1.058,1.044,0.937,1.099,0.961,0.917 +NM_181462,1.032,0.924,0.998,0.993,0.942,0.995,0.976,1.019,1.025,1.06,0.873,1.051,0.943,0.831,0.933,1.056,1.138,1.023,0.979,0.938,0.986,0.965,0.958,1.004,0.971,1.06,1.247,1.151,1.02,1.043,0.995,1.044,0.865,0.93,1.277,0.933,0.97,1.13,1.141,1.064,0.946,1.02,0.938,0.988,1.171,1.096,1.206,0.944,1.016,1.001,0.927,1.011,1.059,1.06 +NM_181465,0.832,1.041,0.836,0.844,0.883,0.835,0.758,0.62,0.959,1.062,1.001,0.877,0.796,0.591,0.748,1.269,0.898,1.042,1.266,0.903,0.848,0.763,1.221,0.919,0.756,0.991,0.798,0.789,0.681,0.946,0.816,1.653,2.252,1.071,0.538,1.309,1.037,0.879,1.536,0.845,1.0,1.127,0.759,2.379,1.139,0.965,0.983,0.905,0.999,0.862,0.988,1.153,0.902,1.911 +NM_181466,1.11,1.01,0.935,1.159,1.001,0.907,1.06,0.938,0.883,1.084,0.919,0.96,1.033,1.155,0.82,0.922,1.05,1.009,0.976,1.037,0.856,1.12,0.883,0.991,0.884,0.933,0.996,1.053,0.941,1.086,0.973,1.082,1.024,0.978,1.164,0.974,0.976,1.07,0.947,0.91,0.959,1.079,1.114,1.041,1.059,0.984,0.967,0.935,0.929,0.986,0.936,0.902,0.921,1.047 +NM_181467,0.973,0.419,1.258,0.545,0.98,0.719,0.34,0.717,1.32,1.202,0.685,1.21,0.861,0.676,0.83,1.5,0.863,0.611,1.242,0.499,0.909,1.207,0.95,1.532,0.332,1.807,1.004,1.015,0.263,0.753,1.069,0.82,1.919,0.856,0.295,1.061,0.676,1.127,1.062,1.589,1.401,0.755,0.652,1.794,1.431,0.643,1.225,1.329,1.325,1.041,0.625,1.315,1.134,2.016 +NM_181471,1.002,0.847,1.255,0.884,0.9,0.916,0.891,0.883,1.132,1.125,1.003,1.016,0.88,1.211,0.995,1.034,1.024,0.823,1.074,0.8,1.019,0.747,1.031,1.062,0.925,0.912,1.395,0.938,0.811,1.103,1.169,1.173,2.216,1.278,0.821,0.868,0.969,1.107,1.04,0.992,1.214,0.875,0.822,1.046,1.031,1.022,0.998,0.936,1.093,1.029,1.105,0.839,1.197,1.413 +NM_181472,0.334,2.249,0.63,0.642,0.437,1.048,0.989,0.314,0.371,0.403,1.154,0.324,0.388,0.337,0.847,0.724,0.521,0.424,0.4,1.11,0.346,0.429,1.482,0.421,1.017,0.388,0.616,0.478,1.205,1.86,0.415,3.842,2.237,1.528,0.264,1.7,0.998,0.426,1.554,1.823,0.574,1.12,0.777,2.297,0.47,1.118,0.9,0.329,0.836,0.403,1.084,2.055,0.616,4.837 +NM_181484,1.22,1.114,1.001,0.975,0.948,0.853,1.371,1.442,1.021,0.821,0.979,0.78,1.21,1.202,0.819,1.201,0.926,1.232,0.848,1.059,1.163,1.109,0.915,1.209,1.345,0.912,0.941,0.963,2.302,1.02,1.113,1.022,1.179,1.138,0.905,0.945,0.871,0.944,1.02,1.08,1.105,0.987,1.046,1.143,0.868,0.992,1.172,1.048,0.968,0.944,0.906,0.924,1.132,1.083 +NM_181485,0.604,0.969,1.121,0.945,0.805,1.001,0.742,0.515,1.226,0.897,0.898,0.742,0.635,0.837,1.06,1.355,0.799,0.852,1.015,1.115,0.484,0.675,1.456,0.903,0.722,0.979,0.939,0.912,0.468,1.598,0.981,1.181,1.561,1.406,0.659,1.255,0.96,0.655,1.402,1.972,0.878,1.159,0.932,1.549,0.969,1.058,0.866,0.882,0.967,0.817,1.08,1.192,1.184,1.857 +NM_181486,1.12,0.996,0.988,0.991,0.962,0.97,0.968,1.05,1.188,1.023,0.98,0.93,0.854,0.904,1.196,1.023,0.976,1.204,1.221,0.839,0.824,0.96,0.896,0.966,0.973,1.037,0.965,0.965,1.088,1.039,1.019,1.023,1.187,1.092,1.052,0.997,1.002,1.121,0.97,0.947,0.943,0.958,0.938,1.061,1.02,1.007,0.96,0.932,0.922,0.975,1.009,1.069,1.16,1.106 +NM_181489,0.865,1.071,1.006,0.998,1.192,1.007,0.977,1.077,0.952,0.997,0.887,1.065,0.98,1.258,0.989,1.028,1.109,0.904,0.872,0.947,1.014,0.995,0.798,0.947,1.038,0.956,1.068,1.111,1.666,0.939,1.141,1.032,0.917,1.138,1.002,1.036,0.995,1.191,1.032,0.953,1.057,1.004,0.944,0.742,0.922,0.935,1.028,1.098,0.909,1.09,1.054,0.999,0.977,0.931 +NM_181491,0.93,0.893,1.084,1.045,0.952,0.928,1.125,0.851,1.032,1.059,0.913,0.966,0.886,1.455,1.194,0.902,1.012,0.917,0.825,1.018,0.88,0.953,1.062,1.042,1.04,1.097,1.029,0.979,1.178,1.108,0.923,1.061,1.049,1.032,1.147,0.957,1.174,1.105,1.048,1.055,0.809,1.115,1.091,0.857,1.071,1.047,1.101,0.904,0.987,0.998,0.911,0.901,1.067,1.002 +NM_181492,0.74,0.978,1.206,0.628,0.85,0.863,0.848,0.561,1.061,1.172,0.82,0.854,0.639,0.668,0.896,1.209,0.737,0.945,1.186,0.961,0.684,0.819,1.296,0.979,0.678,0.724,1.027,0.873,0.451,1.103,1.123,1.01,1.616,1.29,0.255,0.907,0.957,0.838,1.113,1.553,0.901,1.196,0.782,1.179,1.061,0.957,0.756,0.665,0.98,0.674,1.14,1.156,1.191,1.873 +NM_181493,0.959,0.745,1.203,1.074,0.844,0.894,0.514,0.491,0.917,0.944,1.118,0.93,0.699,0.682,0.98,1.757,0.512,0.86,1.598,0.881,0.512,0.82,1.546,1.167,0.599,1.11,0.994,0.599,0.446,1.046,0.696,1.111,2.533,1.352,0.202,0.875,1.036,0.834,1.402,1.402,0.876,1.148,0.699,2.245,1.136,0.937,0.784,0.782,0.955,1.093,0.982,0.933,1.182,3.216 +NM_181500,1.097,0.983,1.237,0.977,1.139,0.995,1.063,0.945,1.08,0.971,0.902,0.916,0.907,1.034,0.92,1.078,1.062,0.904,0.968,0.965,0.973,1.037,0.965,0.976,0.877,0.955,1.177,0.972,0.667,1.039,1.161,0.975,1.004,1.026,1.018,0.931,0.944,1.163,0.974,1.002,1.115,0.932,0.789,0.948,1.135,0.947,0.98,0.89,0.998,1.037,0.908,1.009,1.025,0.95 +NM_181501,1.012,0.894,0.931,0.97,0.928,0.954,1.186,1.118,0.914,0.995,0.891,0.914,0.777,0.865,0.965,1.116,0.912,0.902,0.875,1.039,0.914,0.847,1.018,0.869,0.982,0.912,0.917,0.93,1.387,0.947,0.94,2.033,1.128,1.004,0.877,1.201,1.125,0.916,1.235,1.548,0.91,0.999,1.255,1.049,0.865,1.043,0.999,0.901,1.065,0.942,1.052,1.125,0.89,0.998 +NM_181502,1.032,1.07,0.945,0.89,1.17,0.987,1.111,0.872,0.972,0.961,1.013,0.927,1.109,0.93,0.888,1.034,1.057,0.905,0.96,0.999,0.857,1.018,0.963,1.042,1.081,1.051,0.996,1.075,1.085,1.102,0.962,1.075,0.829,0.932,1.111,0.923,0.933,1.065,1.157,0.987,0.965,1.063,1.093,0.973,1.109,0.999,1.121,1.184,0.931,1.019,0.882,1.053,0.88,0.978 +NM_181503,0.438,0.802,1.173,0.572,0.846,1.176,0.578,0.5,1.219,0.926,0.992,1.176,0.522,0.522,0.855,1.955,0.766,0.863,1.101,0.864,0.505,0.743,1.305,1.447,0.413,0.466,1.538,0.882,0.348,1.217,0.75,1.27,2.291,1.154,0.175,1.234,1.009,0.915,1.079,1.621,1.268,0.884,0.663,1.264,0.926,1.085,1.676,0.458,1.175,0.593,1.012,0.994,0.827,2.366 +NM_181504,1.7559999999999998,2.015,1.996,1.514,1.778,1.968,1.611,1.588,1.8399999999999999,1.8519999999999999,2.053,1.903,1.762,2.012,2.0949999999999998,2.535,1.623,1.784,1.975,2.113,1.924,1.69,2.7169999999999996,1.947,1.8479999999999999,1.956,1.907,2.082,0.9279999999999999,2.488,1.9300000000000002,2.718,2.6420000000000003,2.665,1.283,1.737,2.146,2.349,2.133,1.806,2.16,2.79,1.4,2.109,1.874,1.711,1.952,1.6560000000000001,1.746,1.687,2.1719999999999997,1.415,1.748,2.0700000000000003 +NM_181505,1.262,2.868,1.37,2.0389999999999997,1.355,4.656000000000001,1.262,1.334,1.2599999999999998,1.105,6.035,1.192,1.3370000000000002,1.152,2.922,11.22,1.189,1.496,1.339,5.585999999999999,1.139,1.178,7.308,1.155,1.7189999999999999,1.2229999999999999,1.281,1.371,1.0270000000000001,2.249,1.177,1.524,8.784,3.697,1.344,3.162,4.075,1.264,4.966,2.385,1.192,7.005,3.702,6.328,1.2,2.592,3.7670000000000003,1.158,4.05,1.275,4.67,2.5999999999999996,1.342,4.763999999999999 +NM_181506,0.92,1.138,0.912,0.986,0.813,0.975,0.975,1.165,1.102,1.116,1.126,0.93,1.044,1.084,1.016,0.986,0.942,1.082,1.16,1.143,0.826,0.941,1.018,0.916,1.032,0.985,1.016,0.896,0.887,0.933,0.895,1.104,1.079,1.128,0.902,1.023,0.953,0.947,1.06,1.062,0.858,1.041,0.966,0.991,1.033,0.845,1.042,1.018,0.844,0.9,0.973,1.113,1.053,1.006 +NM_181507,1.075,1.004,1.083,0.877,0.963,0.92,1.024,1.07,0.992,0.946,0.87,0.926,1.026,0.916,1.002,1.043,0.886,1.179,1.078,0.86,0.955,0.963,0.822,1.011,1.008,1.046,1.0,1.059,1.152,1.058,1.024,1.014,0.945,0.949,0.951,0.948,0.945,1.034,0.857,0.932,0.92,0.9,1.009,1.188,1.028,1.114,1.004,0.969,1.067,0.86,1.171,1.009,1.019,0.935 +NM_181509,2.451,2.444,1.681,1.706,2.112,2.4299999999999997,1.451,2.376,2.717,1.6800000000000002,2.619,1.55,1.809,2.024,1.982,2.545,1.714,1.612,1.791,1.891,1.838,2.076,2.348,1.5230000000000001,1.4820000000000002,2.317,1.334,2.392,1.604,3.259,2.5010000000000003,2.1639999999999997,2.484,2.409,5.281,1.555,1.828,2.2439999999999998,2.4370000000000003,1.9809999999999999,2.096,2.4160000000000004,1.77,1.863,2.089,2.0410000000000004,1.893,3.442,1.6590000000000003,1.984,1.702,2.314,1.728,2.749 +NM_181512,0.873,1.065,1.037,0.76,0.928,0.99,0.959,1.053,1.025,1.132,0.853,1.01,1.071,0.927,0.839,0.96,0.949,0.901,1.045,0.958,1.038,0.976,1.147,0.937,1.025,1.111,0.918,0.954,0.92,1.055,1.095,0.975,1.013,0.963,1.17,1.09,0.978,0.958,1.122,1.008,0.967,1.01,0.976,0.872,0.997,1.0,1.008,1.053,1.127,0.964,0.964,1.145,1.015,0.876 +NM_181513,0.46,0.882,0.949,0.531,0.658,0.831,0.567,0.468,1.247,0.891,1.252,1.401,0.71,0.592,1.027,2.277,0.687,0.721,1.22,0.968,0.553,0.684,1.076,1.569,0.449,0.652,1.154,0.805,0.243,1.593,0.756,1.09,2.366,1.662,0.155,2.466,1.434,0.733,1.01,0.559,1.209,0.953,0.771,1.083,0.815,1.016,1.118,0.496,1.037,0.482,0.849,0.866,1.051,2.007 +NM_181521,1.926,2.385,1.616,2.12,1.922,2.314,2.029,1.705,1.819,1.9100000000000001,1.996,1.873,1.759,2.09,1.635,2.217,1.805,2.001,1.836,2.073,1.738,1.8719999999999999,2.017,1.909,2.25,1.998,1.932,1.861,2.5250000000000004,2.2649999999999997,1.908,2.045,2.771,2.777,1.967,2.101,2.13,1.858,2.26,1.9620000000000002,1.824,2.226,2.272,1.865,1.8359999999999999,2.089,1.823,1.784,2.316,2.279,2.027,1.991,1.787,2.073 +NM_181523,1.129,0.847,1.016,1.113,1.004,1.024,1.242,1.025,1.088,1.067,1.076,0.872,1.016,0.999,1.062,1.046,1.038,0.931,0.857,1.011,1.033,1.027,0.953,0.942,1.009,1.003,0.954,1.022,1.231,0.927,0.971,1.115,0.833,0.88,1.141,0.992,0.954,1.055,0.948,1.099,0.977,1.053,1.208,1.02,1.03,1.155,0.874,1.024,1.081,1.05,0.984,0.937,0.959,0.91 +NM_181524,1.042,0.937,1.116,1.026,1.068,1.0,0.909,0.991,0.922,1.02,1.014,0.996,1.073,1.04,0.912,0.948,0.927,1.117,0.978,0.948,0.888,0.933,0.891,1.033,1.077,0.967,1.026,1.061,0.967,1.014,1.056,1.22,0.813,0.97,1.022,1.027,0.967,1.012,0.988,0.855,1.104,0.931,0.849,0.955,1.021,1.017,1.026,0.959,1.127,1.128,0.939,1.134,0.844,0.981 +NM_181526,0.759,1.151,0.627,0.958,0.782,1.147,0.899,0.795,0.78,0.754,1.476,0.651,0.683,0.755,0.951,1.117,0.704,0.808,0.697,0.855,2.815,0.688,1.89,0.86,1.572,0.836,0.675,2.035,0.708,1.71,0.903,6.656,1.909,3.141,0.661,0.895,0.905,1.665,2.096,1.514,3.176,2.348,0.822,1.011,0.788,0.905,0.786,0.697,0.753,0.775,1.426,1.166,1.129,1.093 +NM_181527,1.082,0.943,0.987,1.038,1.064,0.945,0.983,0.966,1.03,0.947,0.902,0.936,1.062,0.994,1.17,1.021,0.962,1.025,0.92,1.096,1.034,1.01,0.99,0.992,1.124,1.04,0.992,0.966,1.054,1.078,0.881,1.028,0.932,0.94,0.844,1.111,0.938,1.052,1.065,1.001,1.03,0.951,1.042,0.93,1.111,0.953,0.991,1.031,1.006,0.947,0.934,1.093,1.02,0.997 +NM_181528,1.434,0.466,1.709,0.747,1.835,0.752,0.462,1.182,2.214,1.794,0.665,2.051,1.351,1.091,1.17,1.079,1.286,1.523,1.886,0.646,0.76,1.7,0.972,2.193,0.391,1.601,1.706,2.037,0.334,0.88,1.692,0.632,1.454,0.8,1.121,0.751,0.777,1.574,0.876,0.66,1.98,0.558,0.486,0.799,1.852,0.655,1.374,1.652,0.624,1.153,0.777,1.206,1.581,1.342 +NM_181530,0.736,1.654,0.688,1.123,0.855,1.209,0.692,0.894,0.768,0.745,1.019,0.877,0.889,0.747,1.069,0.82,0.994,1.24,0.785,1.207,0.867,0.768,0.759,0.849,1.067,0.857,0.697,0.969,0.777,2.607,0.838,1.291,1.081,1.498,0.769,1.525,0.878,0.786,1.163,4.515,0.931,1.027,1.352,2.109,0.916,1.168,1.243,0.867,1.098,0.843,0.954,0.821,0.748,1.297 +NM_181532,1.137,1.005,0.962,1.096,0.876,0.809,1.047,0.98,0.934,1.089,1.087,1.026,1.033,1.006,1.039,1.049,1.119,1.114,0.889,0.972,0.94,1.007,0.882,0.989,1.131,0.857,0.993,1.006,0.929,0.956,0.798,1.057,0.981,1.013,1.062,0.981,0.91,0.874,0.988,1.007,1.103,0.966,0.984,0.937,1.028,1.01,1.0,0.999,0.941,1.026,0.974,1.075,0.842,1.058 +NM_181533,0.955,1.127,0.976,1.032,1.143,1.003,0.852,0.89,0.892,1.065,0.959,1.008,0.934,0.995,0.911,1.039,1.129,1.139,1.202,1.012,0.737,1.138,0.971,1.001,0.949,0.961,0.967,0.989,1.135,1.011,1.049,1.047,0.971,0.935,1.251,1.095,1.086,1.059,0.988,0.906,0.943,1.117,0.969,0.966,1.015,0.98,1.022,0.939,0.929,1.058,0.941,0.964,1.254,0.913 +NM_181534,0.955,1.133,0.905,1.111,0.982,1.146,1.08,0.953,0.956,0.99,1.104,1.053,1.102,0.875,1.011,1.008,0.862,1.039,1.058,0.867,0.995,1.064,0.991,1.111,0.988,1.095,0.944,1.048,0.995,0.957,0.949,0.965,1.02,1.079,1.054,1.003,1.084,0.952,0.975,1.018,0.847,0.935,0.986,1.112,0.848,1.125,0.873,1.016,0.84,1.067,0.89,0.999,0.969,1.064 +NM_181535,1.083,0.95,0.873,1.312,0.913,1.115,0.983,0.975,1.014,1.017,1.076,0.976,1.022,0.963,0.795,1.135,1.048,1.024,1.098,0.915,0.943,0.981,1.08,0.988,0.993,0.922,0.987,0.854,0.959,1.019,1.07,0.957,1.099,0.937,0.879,0.957,1.13,0.983,0.968,1.082,0.973,1.096,0.997,0.91,0.825,1.194,1.041,0.93,1.094,0.986,0.987,0.999,1.111,1.254 +NM_181536,1.166,0.946,1.152,0.858,1.088,1.034,0.706,1.206,1.013,0.985,0.981,0.853,0.956,0.906,0.95,1.043,0.886,0.968,0.942,0.932,0.956,1.103,0.948,0.906,1.15,1.133,1.068,0.998,1.385,1.108,0.909,0.777,1.094,0.991,0.906,0.856,0.992,0.852,1.131,1.107,1.125,1.158,1.134,0.988,0.839,1.038,0.921,1.014,1.264,0.881,0.962,0.909,0.92,0.861 +NM_181537,0.919,1.062,0.865,0.916,0.994,0.999,1.021,1.022,1.033,1.025,0.92,1.015,1.063,1.02,0.82,1.038,0.942,0.996,1.016,1.062,0.957,0.961,0.992,0.791,0.993,0.919,1.042,1.02,1.034,0.95,0.901,0.941,0.991,0.987,1.104,1.093,1.021,1.102,0.938,1.037,1.246,0.907,1.087,0.989,0.855,1.006,0.92,1.082,1.039,0.96,1.047,0.867,0.979,1.173 +NM_181538,1.01,1.011,0.924,0.945,0.993,0.987,0.996,1.031,1.002,1.048,0.92,0.869,0.984,0.944,0.835,1.053,1.047,0.857,1.023,0.965,0.839,0.966,1.037,0.982,1.038,0.901,1.034,0.93,0.817,0.897,0.986,0.9,1.123,1.072,1.135,1.083,1.049,0.845,1.072,1.029,1.054,1.027,0.865,1.225,0.993,0.854,1.117,1.006,0.987,0.952,0.985,1.078,1.061,1.004 +NM_181539,0.959,0.93,0.931,1.109,1.095,1.197,1.297,0.929,1.091,1.27,0.968,1.103,0.973,0.975,0.889,1.079,0.936,1.014,1.205,1.081,0.947,1.063,0.949,1.115,1.147,1.008,0.947,1.007,0.86,0.952,0.974,0.974,0.922,1.013,1.032,1.192,1.012,0.931,1.056,1.005,1.095,1.067,1.083,1.092,0.917,1.064,1.053,0.838,1.135,0.988,0.984,0.805,0.914,0.937 +NM_181552,0.961,0.818,1.256,0.79,1.213,0.997,0.648,0.834,1.059,0.993,0.849,0.824,0.894,0.734,0.856,0.818,1.025,0.875,0.993,0.93,0.827,1.033,0.952,0.89,0.857,0.785,1.251,0.84,0.91,1.052,0.897,1.349,1.354,0.959,1.381,0.83,0.98,1.008,1.552,1.438,1.265,1.037,0.982,1.15,1.107,0.998,1.106,1.119,1.064,1.162,0.985,1.034,0.935,1.179 +NM_181555,0.696,1.054,1.34,0.669,0.798,1.034,0.823,0.754,0.735,0.991,0.734,0.704,0.794,0.67,0.84,0.924,1.105,0.658,0.916,0.718,0.747,0.778,1.098,0.836,0.883,0.748,1.412,0.741,0.392,1.39,0.832,7.783,1.113,1.863,0.536,0.668,0.836,0.915,1.353,2.419,1.027,1.481,0.591,1.252,1.017,0.774,0.894,0.667,0.586,0.838,0.932,1.276,1.206,3.297 +NM_181558,1.106,0.995,0.876,0.848,0.92,0.99,0.775,0.962,1.107,1.084,0.814,0.932,0.859,0.828,0.904,1.055,0.77,0.92,1.243,1.021,0.965,0.939,1.007,0.984,0.942,1.021,1.165,0.849,0.753,1.079,0.875,1.187,1.616,0.987,0.964,0.964,0.827,0.861,1.317,1.169,0.967,1.007,0.931,1.227,1.009,0.962,1.002,0.785,1.169,1.048,1.049,1.09,1.036,1.961 +NM_181572,1.085,0.964,0.959,0.856,0.985,1.002,0.77,1.017,0.947,0.937,1.078,0.951,0.957,1.353,1.02,1.001,0.934,0.934,0.884,0.971,1.054,1.01,0.895,0.986,1.116,0.931,1.02,0.915,1.041,0.95,0.98,1.077,0.978,0.943,1.033,0.999,0.894,0.929,1.18,1.128,0.957,0.934,0.962,1.063,1.043,0.959,1.026,1.046,1.095,1.061,0.919,0.914,1.003,0.894 +NM_181573,0.749,1.039,1.096,0.807,0.918,1.192,0.683,0.564,0.961,1.121,0.721,0.818,0.714,0.711,0.969,1.164,0.898,0.844,1.071,0.881,0.676,0.847,1.428,1.153,0.68,0.656,1.854,0.783,0.687,1.339,0.851,1.592,5.399,1.208,0.525,1.221,1.032,0.856,1.706,1.02,1.157,0.99,0.767,1.933,0.839,1.161,0.97,0.704,1.049,0.74,0.983,1.203,1.008,3.255 +NM_181575,0.583,0.92,1.099,0.712,0.838,1.368,0.815,0.837,0.972,0.835,1.154,0.964,0.832,0.582,1.08,2.598,0.719,0.962,1.242,0.935,0.625,0.913,1.286,1.189,0.613,0.77,1.206,0.871,0.506,1.215,1.052,1.556,3.84,1.709,0.498,0.896,1.005,0.955,2.126,1.095,0.989,1.162,0.47,1.123,1.023,0.786,1.096,0.905,0.971,0.842,0.992,0.781,0.851,1.824 +NM_181581,0.889,1.124,1.125,0.794,0.902,1.104,0.996,0.834,1.061,1.0,1.082,1.055,0.914,0.975,0.932,0.973,0.829,0.973,1.071,1.111,0.858,0.9,1.249,1.114,0.854,0.885,1.276,0.942,0.851,1.188,0.883,1.334,1.189,1.158,0.873,0.933,1.116,1.043,1.319,1.235,1.167,0.984,0.881,1.279,0.987,0.962,0.874,0.837,1.003,0.886,1.139,1.123,0.965,1.457 +NM_181597,1.007,0.945,0.915,1.068,0.945,0.936,0.953,0.886,0.934,0.903,1.065,0.996,1.025,1.011,1.152,0.841,1.156,0.848,1.013,0.979,1.023,0.98,0.964,0.827,0.933,1.086,0.894,1.039,0.943,0.977,1.041,0.95,1.084,1.001,1.097,1.234,0.908,0.972,1.06,1.017,1.047,1.088,0.745,1.021,0.974,0.893,0.962,1.112,1.019,1.064,0.987,0.949,1.057,0.998 +NM_181598,1.267,0.988,1.181,1.22,0.94,1.144,1.224,1.089,1.011,1.089,0.942,1.114,0.988,1.134,1.267,0.999,0.965,1.001,0.967,1.014,0.926,0.962,1.155,0.977,0.916,0.934,0.946,1.006,1.428,0.922,1.071,1.001,1.049,1.043,1.164,0.961,0.913,0.964,0.982,0.911,0.868,1.099,1.282,1.044,0.96,1.234,0.9,0.848,0.843,0.969,0.854,1.043,0.948,1.256 +NM_181599,1.045,1.001,0.975,0.952,1.092,0.975,0.965,1.064,0.9,1.116,1.177,0.928,1.058,0.991,0.933,0.963,1.026,1.017,1.005,0.798,0.976,0.917,1.04,1.066,0.997,0.93,0.816,0.883,1.231,0.836,0.877,0.808,1.039,0.963,1.026,0.997,1.053,1.126,0.972,0.97,0.961,0.969,1.066,1.026,1.006,1.055,1.099,0.916,0.917,1.022,0.97,1.098,0.993,1.095 +NM_181600,1.128,0.894,0.933,1.065,0.812,0.973,1.254,1.027,1.067,1.075,0.911,1.025,1.008,1.302,1.294,0.821,0.918,0.973,1.1,0.98,1.104,1.035,1.051,1.044,1.026,1.067,0.838,0.871,1.041,0.976,1.156,0.916,0.888,0.994,1.115,0.979,0.926,1.116,1.04,1.005,0.944,0.962,1.563,1.012,0.993,1.105,0.948,1.059,1.087,1.198,0.893,1.082,0.905,1.195 +NM_181602,1.031,0.959,1.009,1.052,0.944,1.062,0.97,0.868,1.032,0.967,1.036,1.082,1.028,1.19,1.131,1.01,1.18,1.009,1.084,1.194,1.011,0.91,0.914,0.916,0.964,1.179,1.029,0.94,1.175,0.934,0.882,1.018,0.958,1.014,0.95,1.023,0.972,0.932,1.044,1.059,0.903,1.024,1.052,1.012,0.955,0.988,1.005,0.994,1.131,0.914,0.983,0.851,1.008,1.034 +NM_181604,1.144,1.134,0.932,0.795,0.899,0.884,0.861,0.923,1.099,0.931,1.018,0.885,0.919,1.088,1.251,0.941,0.997,1.122,1.186,1.082,1.05,0.916,0.829,1.066,1.012,0.935,0.791,1.039,0.875,1.028,0.902,0.924,0.948,0.817,1.036,1.024,0.945,0.925,0.969,0.906,0.924,1.006,1.333,1.049,0.929,1.05,0.953,1.049,1.061,1.043,1.024,1.131,1.098,0.961 +NM_181606,0.962,0.891,1.101,0.927,1.05,1.036,1.033,1.202,1.033,1.136,1.209,0.936,0.887,0.896,1.225,1.077,1.125,0.988,1.043,0.93,1.088,1.077,1.061,0.977,0.882,0.915,0.953,0.969,0.795,0.909,0.98,1.038,1.044,0.9,1.035,0.879,0.967,1.001,1.093,0.938,1.007,0.932,1.015,0.964,1.008,1.175,0.979,0.975,1.072,0.819,0.964,1.169,0.944,0.975 +NM_181607,0.977,1.008,1.077,1.018,0.807,0.966,0.782,0.968,0.964,0.895,0.897,0.84,0.944,1.075,1.109,1.019,0.925,0.912,1.039,1.012,0.839,0.966,0.998,1.047,1.036,1.059,0.908,1.094,0.781,1.151,1.007,1.002,1.002,1.147,1.154,1.012,1.021,0.91,0.943,1.076,0.931,0.973,1.024,0.97,0.982,0.875,1.087,0.97,0.977,1.023,1.007,1.091,0.945,0.981 +NM_181608,1.032,0.869,0.931,1.0,0.937,0.868,0.894,0.928,0.899,0.985,1.111,1.064,1.096,1.216,1.121,1.0,1.006,1.089,1.183,0.956,0.957,1.088,1.061,0.984,0.986,1.141,0.89,0.884,2.01,1.028,1.044,1.005,0.98,0.982,0.955,1.064,1.01,1.022,1.013,0.978,0.84,0.887,1.009,1.074,0.947,0.938,1.059,1.061,1.222,0.981,1.13,1.061,0.985,0.861 +NM_181609,0.981,0.954,1.077,1.169,0.963,0.941,0.947,0.876,1.069,1.165,1.25,0.936,0.996,0.933,0.934,1.002,1.017,1.044,0.939,0.969,1.253,0.826,0.99,0.999,0.918,1.072,0.986,1.028,1.019,0.991,1.009,1.053,1.158,0.878,0.967,1.173,0.944,0.992,0.94,1.009,0.931,1.151,0.916,1.029,0.991,1.334,1.049,0.89,1.034,1.03,1.049,1.165,0.941,0.958 +NM_181610,0.92,1.078,1.028,0.955,0.937,1.095,1.058,1.131,0.857,0.917,1.026,1.078,0.935,1.076,0.957,0.987,0.923,1.024,0.842,0.941,0.968,0.95,0.972,0.981,0.943,1.126,1.031,1.004,0.889,1.009,0.994,0.822,0.97,1.008,0.969,1.1,1.123,1.03,0.877,1.043,1.039,0.942,0.844,0.918,0.979,0.891,0.996,1.068,0.923,1.041,1.168,0.929,0.915,0.97 +NM_181611,1.049,1.057,0.941,1.298,0.95,0.999,0.972,0.828,1.077,1.04,1.101,1.04,0.828,1.099,1.001,0.956,0.819,0.923,0.991,0.951,1.128,1.004,1.134,0.993,0.905,0.91,0.915,0.966,0.81,1.188,0.975,0.933,0.994,1.102,1.027,1.231,1.097,1.031,0.917,0.994,0.915,0.88,0.964,0.94,1.122,1.039,1.02,1.141,1.255,0.749,0.982,1.024,1.027,0.953 +NM_181612,0.932,0.996,1.078,0.986,1.09,1.035,0.939,0.997,1.128,1.137,0.813,0.917,0.929,1.033,0.935,1.118,1.119,1.007,1.039,1.029,0.981,0.946,0.947,0.996,0.986,1.013,1.032,1.082,0.974,0.883,1.063,0.848,1.039,1.04,1.035,0.854,0.91,0.932,0.932,1.069,1.066,1.006,0.986,1.022,1.162,0.868,0.957,0.943,1.093,1.096,0.936,1.081,0.939,0.998 +NM_181613,0.899,1.029,1.009,0.897,0.959,0.989,0.856,1.085,1.013,0.929,1.159,0.964,0.986,0.765,0.895,1.062,1.031,0.923,0.871,0.986,0.866,0.995,0.984,0.983,0.97,0.997,0.997,0.913,1.059,0.93,0.933,1.106,1.254,1.048,0.887,0.961,0.928,1.013,1.128,1.112,0.891,1.03,1.02,0.89,1.035,0.882,1.023,0.862,0.906,0.955,0.943,0.805,1.044,0.884 +NM_181614,1.111,1.0,0.931,0.921,1.004,0.895,1.034,0.838,0.973,0.982,1.114,1.042,0.943,1.156,0.969,0.985,0.963,1.065,0.941,0.915,1.022,1.003,0.861,0.939,1.046,1.124,1.113,1.042,1.026,1.006,1.037,0.939,0.939,0.949,1.097,1.058,1.079,1.131,1.084,0.935,0.982,1.026,0.994,0.799,0.879,1.028,0.885,1.042,1.123,0.95,1.013,0.995,0.905,1.095 +NM_181615,1.035,0.915,0.957,1.026,1.038,0.958,0.988,1.12,1.04,0.924,0.994,1.086,0.883,0.887,1.842,0.971,1.025,0.895,0.967,1.03,1.17,0.881,0.91,0.908,1.031,0.88,1.109,1.252,1.168,1.004,1.038,0.961,1.003,1.107,0.954,1.093,0.973,1.014,1.082,0.967,1.119,1.018,1.11,0.995,1.077,1.011,1.022,1.131,0.883,0.924,0.958,1.16,1.051,1.097 +NM_181616,0.962,0.864,0.942,0.915,0.911,0.911,0.887,0.939,0.889,0.914,0.961,0.976,0.882,0.905,0.952,0.922,1.055,1.115,0.883,0.923,1.02,1.105,1.005,1.01,0.93,1.042,1.124,1.037,0.921,1.0,1.003,0.952,1.024,1.081,1.084,1.183,0.881,0.874,1.155,0.962,0.969,0.83,0.786,0.977,0.982,0.803,1.015,1.07,0.979,0.955,1.064,1.039,1.019,1.045 +NM_181618,0.981,0.95,1.13,0.973,1.085,1.063,1.036,1.033,0.894,0.895,1.133,1.029,0.985,1.01,0.898,1.169,0.991,0.94,1.077,1.08,0.983,0.996,0.872,0.974,1.134,0.947,0.879,1.031,0.934,0.999,0.98,1.043,0.902,0.893,1.163,0.883,0.925,0.902,1.107,0.884,0.912,0.87,1.053,0.966,0.859,1.063,1.017,0.961,1.076,1.067,1.214,1.142,0.893,1.099 +NM_181619,1.031,1.129,0.952,1.009,1.089,1.193,0.975,1.038,1.165,1.057,1.051,0.841,1.048,0.933,1.125,1.039,0.94,0.986,1.029,1.078,1.026,0.961,0.916,0.973,1.013,0.987,1.076,1.076,1.149,0.981,1.053,1.072,0.909,0.95,0.954,0.906,0.999,1.083,0.999,1.014,1.107,0.99,1.093,1.074,0.953,1.126,1.053,1.009,1.038,0.986,0.964,0.912,1.15,1.049 +NM_181620,1.038,0.862,0.97,0.988,0.836,1.016,1.157,1.255,1.071,1.001,0.999,0.974,1.112,0.872,1.03,1.116,1.011,1.147,0.872,1.145,0.927,1.046,1.163,0.934,1.009,1.049,0.951,1.177,0.949,0.943,1.0,0.963,1.026,0.959,1.147,1.047,1.088,0.984,0.975,0.917,1.167,1.031,0.948,1.001,0.887,1.217,0.932,1.085,0.972,0.916,0.965,1.027,1.05,0.844 +NM_181621,1.093,1.076,1.101,0.852,0.991,0.96,1.054,0.892,1.035,0.847,0.964,0.947,0.998,1.007,0.984,1.175,1.0,1.015,0.903,1.04,1.12,1.041,1.025,1.1,1.063,0.899,1.055,0.891,0.91,1.247,0.99,1.076,0.869,1.164,1.004,0.932,1.025,0.995,0.963,0.999,1.036,0.939,0.759,1.054,0.871,1.001,1.042,1.139,0.96,1.013,0.992,1.173,1.078,1.044 +NM_181622,0.897,0.947,1.141,0.974,1.057,0.874,1.096,1.011,1.0,1.228,0.945,0.871,1.06,1.07,0.911,1.126,1.033,0.984,1.005,0.987,1.013,1.029,1.143,0.945,0.993,1.048,1.144,1.087,0.992,1.07,1.063,0.967,0.95,0.873,1.059,1.112,1.061,0.951,1.013,0.871,1.018,0.959,1.009,1.085,1.007,1.259,0.992,1.136,1.077,1.035,0.959,0.913,1.314,1.141 +NM_181623,1.0,0.951,1.03,1.068,0.907,0.886,0.801,1.151,0.87,0.93,0.973,0.89,1.0,1.019,0.902,0.956,1.103,1.043,0.9,0.989,1.103,0.995,1.102,0.912,1.157,0.962,1.062,0.957,1.219,0.883,0.969,0.95,1.137,1.02,1.141,1.003,1.079,1.077,1.176,0.988,0.962,1.143,1.038,0.915,1.144,0.919,0.982,0.935,1.01,0.913,1.097,0.957,1.024,1.016 +NM_181624,1.183,1.122,1.066,1.017,1.008,0.999,0.908,1.06,1.017,1.09,1.058,1.068,1.03,0.821,0.872,1.091,1.007,0.928,1.077,0.969,0.966,0.96,1.153,1.064,1.005,0.877,1.149,1.04,0.929,1.081,0.928,0.886,0.894,0.882,0.898,0.938,0.977,0.978,0.795,0.95,0.843,0.953,0.985,1.113,0.999,0.975,1.08,1.074,1.05,0.983,0.973,1.046,1.293,1.039 +NM_181643,0.785,1.207,0.96,0.97,1.105,0.951,1.033,0.877,0.989,1.123,1.058,1.059,0.954,0.866,0.842,0.851,0.896,1.0,1.138,1.113,1.048,0.966,1.095,0.931,0.934,0.876,0.991,1.068,1.028,0.991,0.853,1.148,1.57,1.203,0.935,0.753,0.964,1.023,0.965,0.909,1.102,1.25,0.973,0.981,0.916,0.876,0.993,0.958,0.968,0.976,1.131,0.994,0.994,2.025 +NM_181644,0.928,1.703,0.904,0.951,1.04,1.015,1.128,0.939,0.981,0.932,0.994,0.99,0.837,0.866,0.914,1.05,1.034,0.916,0.966,1.161,0.882,0.977,0.927,0.988,2.272,0.924,1.035,0.818,0.863,1.077,1.0,1.144,0.994,1.831,1.0,1.079,1.152,0.87,1.035,0.983,0.989,1.187,0.861,0.889,0.95,0.98,0.935,0.822,0.898,0.956,1.078,1.031,1.021,0.935 +NM_181645,1.0,1.025,0.945,1.061,0.915,1.022,1.043,0.996,1.184,1.058,1.058,1.072,1.056,1.052,1.213,0.948,1.007,0.858,0.997,1.102,1.008,0.999,1.138,1.118,0.895,0.993,0.954,0.94,0.861,1.03,1.09,1.098,0.997,1.018,0.974,0.981,0.935,0.981,0.962,0.903,0.878,0.94,0.954,1.006,1.148,1.069,1.029,1.105,0.981,1.013,1.117,0.858,1.033,1.027 +NM_181646,0.974,0.9,0.92,1.1,0.965,0.967,1.233,0.989,0.959,0.945,0.88,1.037,1.034,1.012,1.137,1.048,0.993,1.115,0.984,1.081,0.893,1.005,1.011,0.982,1.08,1.023,0.886,0.953,1.247,0.934,1.032,0.992,1.002,1.011,1.051,0.967,1.027,1.009,0.991,0.859,1.162,1.053,0.872,1.037,0.968,0.98,0.995,0.961,1.056,1.02,1.011,1.196,0.946,1.05 +NM_181654,0.974,1.009,1.074,0.9,1.044,1.128,1.096,0.988,1.175,1.041,1.004,0.999,1.02,1.003,0.873,1.018,0.993,0.877,0.897,1.07,0.917,0.952,1.069,1.104,0.998,0.96,1.145,0.984,0.662,1.065,1.078,0.935,1.023,0.872,1.097,1.012,1.023,1.12,0.913,0.951,0.97,0.946,1.061,0.892,1.011,1.02,0.945,1.047,1.073,0.954,1.068,0.999,1.141,0.931 +NM_181655,0.655,1.269,0.862,0.847,0.744,1.54,0.858,0.705,1.089,0.595,1.255,0.863,1.038,0.918,1.106,1.238,0.663,0.816,1.102,1.217,0.54,0.861,1.007,0.947,0.747,0.882,0.881,1.014,0.8,1.303,0.881,0.855,1.45,2.193,0.382,0.818,0.985,0.784,1.444,0.698,0.951,1.262,0.551,1.091,0.702,1.313,0.851,0.767,0.688,0.686,1.08,0.734,0.878,1.505 +NM_181656,1.156,0.975,1.095,0.992,1.052,0.994,0.972,0.888,1.136,0.946,1.276,0.989,0.909,0.919,0.825,1.298,1.219,1.171,0.889,1.07,0.803,0.921,0.872,0.93,1.207,1.165,0.958,0.802,1.017,1.058,0.969,0.956,0.981,1.01,1.121,1.209,1.121,1.096,0.868,0.923,1.063,0.848,1.006,0.886,1.021,0.944,0.996,1.066,1.055,1.019,1.022,0.906,0.939,1.017 +NM_181657,1.231,0.895,1.26,0.929,1.149,0.901,0.87,1.087,1.271,1.246,0.825,1.107,1.156,0.982,0.824,1.045,1.567,1.034,1.288,0.968,1.477,1.448,0.925,1.367,0.955,1.3,1.694,1.09,1.461,0.938,1.238,0.82,1.062,0.872,0.807,1.005,0.89,1.472,0.838,0.982,1.36,0.835,0.748,0.747,1.577,0.848,1.302,1.248,0.87,1.892,0.989,0.993,1.564,0.915 +NM_181661,1.145,1.077,0.915,0.988,0.982,0.969,1.004,1.058,0.983,1.011,0.902,0.961,1.005,1.167,1.005,0.974,1.02,0.887,1.163,0.858,1.004,1.041,0.978,0.978,1.027,0.981,0.897,1.075,1.091,0.929,0.997,0.898,0.844,0.919,1.005,1.035,1.047,1.103,0.927,1.069,0.983,0.926,1.004,1.045,1.119,1.031,0.929,0.984,1.077,0.96,1.081,0.938,1.07,0.921 +NM_181671,0.747,1.025,1.456,0.694,0.808,0.782,0.872,0.724,0.93,1.022,0.912,0.799,0.801,0.706,0.838,1.104,1.624,0.869,1.154,0.982,0.92,0.645,1.012,1.06,0.914,0.754,1.733,0.742,0.513,1.024,0.839,1.434,1.534,1.114,0.61,1.401,0.939,0.692,0.945,1.281,1.388,0.985,0.719,2.158,1.005,0.925,1.437,0.734,0.858,1.519,0.974,1.244,1.404,1.522 +NM_181673,0.589,1.222,1.007,0.696,0.629,1.45,0.917,0.383,1.299,0.676,0.993,0.676,0.506,0.726,0.975,0.999,0.724,1.04,0.655,1.674,0.504,0.688,1.255,0.922,1.028,0.54,1.43,0.664,0.659,1.408,0.887,1.894,1.328,1.569,0.342,0.962,1.204,0.759,1.318,0.965,0.879,1.387,0.875,0.873,0.766,0.891,0.775,0.556,0.883,0.58,1.046,0.674,0.538,1.726 +NM_181674,0.944,1.155,0.983,0.961,0.928,0.933,0.976,0.919,1.241,1.046,0.963,0.977,0.938,0.984,0.874,0.875,1.094,1.031,1.064,1.125,0.968,1.074,1.115,1.128,1.2,1.091,0.98,1.065,1.035,0.984,0.914,1.098,0.809,0.979,0.935,1.028,0.873,1.018,1.038,0.959,0.951,0.985,0.904,1.1,1.003,0.88,0.992,1.136,1.118,1.071,1.098,1.027,0.954,0.945 +NM_181675,0.913,1.03,0.965,1.126,0.897,1.076,1.319,0.909,1.111,0.863,1.06,0.977,0.896,0.985,0.989,0.948,1.095,1.071,1.084,0.906,1.009,1.015,0.971,1.126,0.986,0.888,1.011,0.984,1.134,1.02,1.152,0.998,0.942,0.891,1.016,0.909,1.011,0.919,0.913,1.059,0.926,1.144,1.224,0.984,0.839,1.081,0.944,0.955,0.875,0.977,1.099,1.084,0.974,0.988 +NM_181676,1.223,0.845,1.341,1.05,2.673,0.874,0.912,0.923,0.984,1.627,0.78,1.715,0.977,1.868,2.13,0.99,0.892,1.49,1.91,1.012,0.975,1.196,0.964,1.071,1.118,1.109,1.167,1.958,0.823,0.977,1.587,1.17,1.468,1.148,0.902,0.962,0.863,2.045,0.935,0.837,1.36,0.99,0.784,0.838,0.843,1.007,0.88,1.936,0.866,1.029,1.092,0.951,1.146,1.142 +NM_181678,0.892,1.006,1.05,0.927,0.998,0.998,1.278,0.872,0.946,1.0,1.059,1.002,1.026,1.06,0.911,1.011,0.825,0.967,0.947,0.899,1.027,1.029,0.872,0.954,0.983,0.961,0.875,0.991,0.891,1.011,0.937,0.953,0.937,0.929,1.023,1.066,0.961,1.046,0.886,1.006,1.106,0.882,1.119,0.94,1.206,1.101,1.0,0.884,1.069,1.056,1.029,1.074,0.77,1.219 +NM_181679,0.958,1.087,1.058,1.05,0.978,0.974,1.054,1.076,0.892,1.136,0.989,1.017,0.993,0.932,1.39,1.216,1.02,0.902,0.874,0.968,1.04,0.96,1.201,0.881,0.942,0.933,0.947,1.001,1.243,1.033,0.956,1.185,1.453,0.973,1.036,0.915,1.017,1.003,0.957,0.974,1.097,1.019,0.985,0.881,1.065,1.054,0.943,0.97,1.019,1.004,1.07,0.92,1.148,1.04 +NM_181684,1.067,1.049,1.058,0.893,0.87,1.087,0.984,0.763,0.992,1.028,1.006,1.043,0.916,0.848,0.946,0.831,1.139,1.031,1.057,0.879,0.886,1.11,0.934,0.885,0.952,0.987,0.863,0.877,0.879,1.018,1.023,0.982,0.852,0.961,1.139,0.989,0.978,1.025,1.051,0.967,0.976,1.133,0.903,1.146,1.128,1.104,1.019,1.171,0.99,1.037,1.1,1.089,0.984,1.046 +NM_181686,1.09,0.897,1.013,0.944,1.076,1.139,0.954,0.967,1.038,1.09,1.016,1.014,1.04,0.903,0.85,1.099,1.032,1.104,1.096,0.96,0.994,0.985,1.068,0.938,0.944,1.035,0.86,0.864,1.187,0.947,0.979,0.881,1.067,0.921,1.098,0.948,0.984,0.768,1.002,0.988,0.879,0.915,0.963,1.095,1.016,0.913,0.933,1.043,1.113,0.925,1.06,0.94,1.086,0.984 +NM_181688,1.018,1.069,0.952,1.028,1.043,0.919,0.93,1.133,1.014,1.042,1.119,0.96,0.93,0.97,0.864,1.026,0.981,0.946,0.895,1.043,1.15,1.082,1.053,0.981,1.026,1.173,0.931,0.95,0.905,0.981,0.895,0.987,1.095,0.94,1.1,1.196,1.025,1.12,1.015,1.079,0.992,0.977,1.004,0.915,1.034,0.989,0.919,1.084,1.009,1.147,0.99,0.888,0.95,0.885 +NM_181690,2.0469999999999997,1.807,1.955,2.163,2.032,2.041,2.086,1.865,1.861,2.13,2.226,2.0,1.918,1.879,1.702,2.084,1.9140000000000001,2.109,2.028,1.995,1.956,1.9589999999999999,2.0220000000000002,2.0949999999999998,1.849,1.9929999999999999,2.169,2.114,1.955,1.982,1.944,2.356,2.0869999999999997,2.044,1.912,1.9260000000000002,1.857,2.0549999999999997,2.077,2.056,1.935,1.903,2.062,1.967,1.899,2.0629999999999997,1.985,1.811,2.045,1.94,2.092,1.983,1.838,2.013 +NM_181697,0.869,1.014,1.338,0.726,1.137,1.015,0.712,0.527,1.183,1.278,0.786,1.159,0.785,0.614,0.728,1.046,1.049,1.176,1.179,0.928,0.62,0.974,0.858,1.1,0.569,1.215,0.935,1.192,0.598,1.201,1.143,1.082,0.972,1.089,0.488,1.18,1.236,1.257,1.343,0.596,1.329,0.843,0.562,1.07,1.251,0.823,1.209,1.098,0.968,1.004,0.861,1.082,0.934,1.009 +NM_181698,1.142,1.13,0.966,0.868,0.812,0.962,0.736,0.726,1.297,0.855,1.095,1.102,0.959,0.824,0.867,1.075,0.844,0.879,1.121,0.766,0.765,0.995,0.953,0.947,0.999,1.001,1.014,0.901,0.671,0.948,1.016,1.396,1.77,1.252,0.914,0.716,0.851,0.974,1.383,0.87,0.957,1.126,0.797,1.588,0.945,0.852,1.102,1.038,0.865,1.045,0.884,0.915,0.906,1.065 +NM_181699,1.88,1.908,2.544,1.968,2.292,1.967,1.574,1.7730000000000001,2.4400000000000004,2.3689999999999998,1.93,1.883,1.825,2.002,2.301,2.58,2.248,1.988,2.5410000000000004,1.8860000000000001,1.821,2.133,2.209,2.591,1.7,1.9380000000000002,2.027,2.028,1.6219999999999999,2.157,2.391,1.774,2.1340000000000003,1.9809999999999999,1.7919999999999998,1.749,2.208,2.084,2.1159999999999997,2.117,2.1109999999999998,2.028,1.964,1.647,2.4379999999999997,2.2880000000000003,2.14,2.1799999999999997,2.174,1.8820000000000001,2.1020000000000003,1.673,2.23,2.4909999999999997 +NM_181701,0.914,1.192,0.918,1.017,0.979,0.906,0.854,0.787,1.092,0.907,1.024,0.86,0.866,0.937,0.946,0.998,0.912,0.95,0.992,0.938,0.85,0.86,1.369,0.912,0.873,0.937,1.033,0.869,0.668,0.968,0.91,1.769,2.035,0.97,0.762,2.232,1.11,0.803,1.271,1.173,0.906,1.117,0.947,1.627,0.945,1.088,0.931,0.845,0.874,0.869,0.96,1.07,0.97,2.816 +NM_181702,0.893,1.16,0.987,0.927,0.9,0.951,1.082,0.804,0.845,0.928,0.99,0.922,0.861,0.931,1.043,0.942,1.087,1.062,0.931,1.105,0.9,0.784,1.058,0.888,1.058,0.794,0.977,0.858,0.905,1.039,0.91,1.687,1.211,0.981,0.888,1.25,1.173,1.159,1.209,1.315,1.252,1.103,0.984,1.124,0.921,1.291,1.039,0.9,0.828,0.941,0.994,1.029,1.234,1.204 +NM_181703,1.047,1.018,1.033,0.807,0.971,0.978,0.952,1.21,1.144,1.149,0.939,0.995,0.965,1.105,1.026,0.935,1.057,0.895,0.963,0.889,0.877,0.956,0.98,1.028,1.103,1.117,0.991,1.126,0.945,1.048,0.983,1.054,0.888,1.159,0.856,0.935,1.053,1.03,1.094,1.048,1.017,0.97,0.818,0.998,1.058,0.912,0.977,1.048,1.016,0.863,0.987,0.924,0.967,1.03 +NM_181706,0.952,1.152,0.993,1.118,0.962,1.108,0.799,0.873,1.136,1.007,0.978,0.89,0.834,0.895,0.861,1.189,1.044,0.92,0.894,1.124,0.992,1.031,1.151,0.981,0.782,0.981,1.069,0.977,0.939,1.074,1.07,1.263,1.044,1.089,0.951,0.953,1.064,0.984,1.112,0.871,1.018,1.037,0.826,0.967,1.052,1.066,1.012,0.929,1.103,0.914,1.014,0.868,0.953,1.224 +NM_181707,0.932,1.022,0.878,0.942,1.008,1.056,0.842,1.044,0.845,0.88,0.998,1.145,1.015,1.031,0.867,1.05,1.034,0.958,0.984,1.016,0.931,1.0,1.074,1.053,1.039,1.016,0.96,1.22,0.802,0.978,1.008,1.065,0.926,1.048,0.921,0.972,0.952,1.064,1.079,1.054,1.202,0.993,0.927,1.037,0.957,1.0,0.986,1.021,0.866,1.022,0.951,1.016,0.876,0.994 +NM_181708,0.868,1.092,1.104,0.814,0.855,1.035,0.936,0.742,0.985,0.876,0.981,0.999,0.737,0.736,0.87,1.072,0.954,0.96,1.084,1.154,0.621,0.782,1.111,0.97,0.87,0.941,1.061,0.949,0.867,1.133,0.858,1.081,0.983,1.201,0.495,1.216,1.104,0.846,1.232,0.727,1.06,1.19,0.923,1.001,0.982,1.034,0.959,0.812,0.844,0.869,1.112,0.932,0.801,1.368 +NM_181709,0.229,3.244,0.233,2.24,0.246,4.866,4.559,0.222,0.273,0.248,2.796,0.278,0.28,0.268,0.59,1.554,0.268,4.666,0.267,2.422,0.232,0.27,3.25,0.251,3.758,0.28,0.257,0.3,3.251,4.96,0.241,1.697,0.509,5.424,0.23,2.968,3.111,0.257,5.965,0.378,0.29,2.516,0.807,0.625,0.254,2.684,1.247,0.311,0.871,0.255,2.079,0.908,0.261,2.366 +NM_181710,0.886,1.17,0.893,1.073,0.891,1.553,1.064,1.018,1.035,0.857,1.303,0.912,0.812,1.069,0.892,1.246,0.858,1.125,0.87,1.18,0.978,0.89,1.478,0.846,1.21,0.806,0.896,0.798,1.1,1.662,0.975,0.929,0.931,1.241,0.987,1.065,1.091,0.882,1.226,0.943,0.798,1.074,0.969,0.847,0.918,1.159,0.931,0.811,1.243,0.916,1.518,0.867,0.919,1.012 +NM_181711,0.906,1.136,0.954,0.934,1.035,0.932,0.782,0.864,1.051,0.973,0.824,0.959,0.809,0.765,0.977,0.903,0.967,0.945,0.88,0.903,0.957,0.872,0.937,0.957,1.07,1.07,0.927,1.039,1.323,1.067,0.862,1.294,1.031,1.044,0.903,0.847,0.972,0.968,1.324,1.121,0.944,1.047,0.953,1.012,0.981,0.888,1.035,1.04,0.967,0.891,1.023,1.109,1.167,1.044 +NM_181712,0.918,1.952,0.757,1.215,0.976,1.098,1.223,0.949,0.89,0.891,0.954,0.926,0.968,0.982,0.919,1.053,0.818,1.085,0.852,1.308,0.933,0.947,0.934,0.888,1.676,0.907,0.852,0.829,0.875,1.898,0.974,3.233,0.961,1.975,0.905,0.948,1.219,0.977,1.011,0.934,0.954,1.955,0.796,0.969,0.901,0.811,1.025,0.951,0.992,0.991,0.941,1.18,0.914,1.008 +NM_181714,1.088,0.867,1.192,1.027,1.169,1.089,1.111,1.101,1.24,0.983,0.948,1.027,0.948,1.016,0.988,1.091,0.935,1.084,0.955,0.901,1.062,1.005,0.945,1.081,1.071,1.001,1.071,0.939,0.784,0.999,0.959,0.962,1.134,1.119,1.078,1.01,0.977,1.067,1.105,0.914,0.965,1.022,0.815,0.914,0.893,0.983,1.161,1.016,0.974,0.992,0.893,1.015,0.92,1.144 +NM_181715,0.909,0.695,1.004,0.838,0.824,1.209,0.638,0.801,1.046,0.716,1.185,0.778,0.656,0.984,1.205,1.065,0.79,0.74,1.234,0.996,0.794,0.882,1.033,0.882,0.726,1.012,1.213,0.856,0.685,1.226,0.997,2.072,2.927,1.27,1.003,1.292,0.696,0.884,1.403,1.589,0.813,1.121,0.656,1.807,0.9,0.846,0.906,0.886,0.701,0.907,0.88,0.995,1.123,2.278 +NM_181716,0.272,1.11,0.247,1.116,0.268,2.176,1.009,0.238,0.285,0.205,2.601,0.285,0.253,0.237,0.602,1.6,0.254,0.995,0.237,1.944,0.245,0.221,2.423,0.248,1.36,0.25,0.23,0.241,1.005,1.671,0.263,0.582,2.085,2.765,0.294,2.532,2.386,0.275,1.555,0.391,0.254,1.533,1.103,2.789,0.266,1.467,0.478,0.276,1.209,0.282,1.532,0.816,0.223,1.807 +NM_181718,0.681,3.114,0.751,0.821,0.7,0.878,0.883,0.736,0.788,0.938,1.507,0.705,0.764,0.639,0.668,0.914,0.739,0.792,0.689,0.984,0.744,0.705,3.03,0.718,1.369,0.733,0.847,0.73,0.636,2.401,0.623,8.999,2.8,1.368,0.781,2.527,1.0,0.774,1.633,2.144,0.685,1.884,0.791,5.2,0.684,0.8,1.478,0.784,1.13,0.79,1.159,2.224,0.768,2.67 +NM_181720,1.062,0.853,1.466,1.175,0.969,0.951,1.088,0.765,1.066,1.063,0.792,0.929,0.867,0.889,0.983,0.797,1.135,1.116,0.873,1.136,0.828,0.907,1.027,1.093,0.902,0.91,1.089,0.94,0.695,1.055,0.832,1.335,1.048,0.934,0.897,0.945,0.894,0.903,1.165,1.463,1.235,1.19,0.832,0.98,1.065,0.813,0.969,0.823,0.941,0.967,1.038,1.196,1.35,1.664 +NM_181721,0.978,0.97,0.906,1.151,0.947,1.059,0.922,0.986,1.035,0.944,1.043,1.103,0.995,1.201,0.931,0.966,0.968,0.999,0.961,0.964,0.903,1.075,1.071,1.062,1.078,1.092,1.04,0.906,0.75,0.992,0.919,1.019,1.061,0.915,1.023,0.935,1.01,0.932,1.001,0.912,0.811,1.026,1.321,1.08,0.832,0.919,1.011,1.169,1.044,1.112,0.986,1.001,1.042,0.933 +NM_181722,1.022,0.971,1.044,1.001,0.906,1.05,0.889,1.113,1.012,0.951,1.051,0.813,0.928,0.929,1.122,1.046,0.938,1.055,1.004,0.85,0.908,1.077,0.916,1.022,1.059,1.045,0.936,0.879,0.926,1.001,1.079,0.821,1.005,0.964,1.104,1.032,1.049,0.987,1.002,0.968,1.025,0.947,0.924,0.926,0.999,0.871,0.921,1.118,1.082,0.792,1.043,1.037,1.019,1.165 +NM_181723,1.085,1.155,1.007,0.903,1.038,1.007,0.921,1.058,0.845,0.992,1.051,0.897,0.914,1.048,0.989,0.817,0.956,1.121,0.807,0.989,1.057,1.135,0.88,1.015,0.931,1.039,0.783,1.105,1.058,0.981,0.999,1.03,1.002,1.263,1.099,1.124,1.041,0.832,1.02,0.944,1.031,0.987,0.938,0.896,1.263,0.873,1.087,1.109,1.001,1.117,1.037,1.06,1.062,1.056 +NM_181724,0.863,1.139,0.862,1.047,0.803,1.089,0.947,0.683,0.815,1.001,0.989,1.052,1.104,0.884,1.184,1.09,0.843,0.838,0.926,0.956,0.962,0.871,1.216,1.023,1.047,0.918,0.854,1.017,0.632,1.992,0.962,3.453,1.119,1.731,0.888,1.134,1.069,0.833,1.773,1.285,0.881,1.236,0.875,0.935,0.884,0.999,0.941,0.94,1.026,0.972,1.131,1.247,0.862,1.051 +NM_181726,2.04,0.574,1.827,1.633,6.265,0.593,0.404,7.05,6.957,1.181,0.752,1.612,1.795,1.328,3.064,1.732,1.771,1.85,5.484,0.877,1.447,6.42,0.448,1.953,0.524,3.324,1.708,3.949,0.279,0.572,1.585,0.569,0.854,0.712,27.72,0.456,0.709,9.088,0.612,0.817,1.588,0.74,0.486,0.411,1.145,1.045,3.57,9.013,0.912,0.825,0.925,0.552,2.631,0.557 +NM_181738,0.89,1.078,1.07,1.108,1.053,0.837,0.665,0.576,1.217,1.02,1.413,0.533,0.703,0.891,1.266,1.535,0.935,1.091,1.482,0.856,0.743,0.577,1.58,0.796,0.938,0.968,0.972,0.835,0.599,1.053,1.001,1.075,1.648,1.35,0.666,1.043,1.197,0.929,0.99,0.776,1.286,1.18,0.878,1.213,0.858,1.069,0.999,0.83,1.333,0.917,1.039,0.968,1.064,1.192 +NM_181739,0.913,0.954,0.913,1.136,1.062,0.94,0.981,0.933,0.964,0.961,1.141,1.058,1.006,0.908,1.091,0.984,1.024,1.046,1.015,0.968,1.096,0.999,0.943,0.972,1.089,0.973,1.096,0.997,0.92,0.997,1.014,1.143,1.251,0.965,1.096,1.051,1.048,0.981,0.998,1.106,0.85,1.021,0.897,1.05,1.0,0.966,1.036,1.0,1.014,1.146,1.086,1.079,1.281,1.047 +NM_181740,1.776,2.074,2.182,1.85,2.022,2.0679999999999996,1.7610000000000001,1.693,2.225,2.1189999999999998,2.002,1.7730000000000001,2.192,1.754,1.863,1.8900000000000001,1.8639999999999999,1.778,2.551,2.084,1.879,1.952,2.003,2.205,1.8359999999999999,2.102,1.9049999999999998,1.908,1.851,2.0469999999999997,1.788,1.8820000000000001,2.537,2.33,1.694,1.8439999999999999,1.843,1.8130000000000002,2.346,1.6720000000000002,2.032,2.061,1.873,1.877,2.146,1.713,1.935,1.974,1.858,1.9249999999999998,1.8170000000000002,2.003,2.174,2.201 +NM_181741,0.904,1.013,0.906,1.031,0.905,1.258,0.988,0.972,0.99,0.869,1.101,0.977,0.953,0.906,1.217,1.055,0.944,1.034,1.136,1.003,0.875,0.887,1.087,0.997,1.004,0.882,0.981,1.042,0.816,1.058,1.152,1.127,0.975,0.93,0.781,1.089,1.002,0.954,1.023,0.998,1.061,1.109,1.154,1.067,0.893,0.987,1.053,0.869,0.981,1.077,1.0,0.834,0.915,1.133 +NM_181744,0.973,0.936,0.968,0.788,0.933,0.964,0.916,1.198,1.012,1.003,1.054,1.15,1.056,1.082,1.109,1.102,0.972,1.135,0.891,0.923,0.953,1.013,0.919,0.977,1.041,1.066,1.106,0.906,0.799,1.088,1.038,0.971,0.998,1.072,0.978,1.001,1.141,1.113,1.019,1.003,0.899,0.983,0.91,0.952,1.045,0.902,0.851,0.938,0.98,1.002,0.988,0.964,0.951,0.941 +NM_181745,0.998,1.185,1.08,1.177,0.849,1.135,1.046,0.929,0.822,1.038,1.134,1.028,1.043,1.041,0.977,1.0,0.878,0.963,1.126,0.845,1.044,1.002,1.161,0.914,0.897,1.117,1.054,1.057,1.077,0.982,1.114,0.977,1.061,0.975,0.919,1.155,0.908,1.0,1.041,1.076,0.994,0.996,1.071,1.246,0.957,0.918,0.945,0.953,1.18,0.957,1.061,0.924,0.951,0.954 +NM_181747,1.979,2.089,1.9829999999999999,1.908,2.05,1.966,1.736,1.823,2.009,2.068,1.839,2.074,2.108,1.9140000000000001,1.674,2.0839999999999996,2.049,1.791,1.7389999999999999,1.9539999999999997,1.954,2.073,2.2,2.066,1.947,2.043,2.099,2.213,1.687,2.159,2.122,2.073,2.192,1.9889999999999999,1.965,1.875,1.9329999999999998,2.08,2.205,1.9089999999999998,1.966,1.893,1.9569999999999999,1.9929999999999999,2.214,1.947,2.03,1.9209999999999998,1.916,1.887,1.965,2.078,1.883,2.4130000000000003 +NM_181762,0.795,0.856,1.283,0.717,0.968,1.24,0.583,0.567,1.268,0.934,1.359,0.786,0.632,0.808,1.159,1.775,0.757,1.044,1.242,1.041,0.516,0.684,1.029,1.225,0.498,0.885,1.292,1.091,0.327,1.118,1.034,0.909,1.743,1.352,0.501,0.871,1.307,0.831,0.931,0.576,1.254,0.91,0.747,0.832,1.045,1.224,1.188,0.696,1.0,0.694,1.172,1.114,0.99,1.129 +NM_181773,0.989,0.857,1.014,0.956,0.891,0.997,0.958,0.974,0.937,1.0,1.056,0.934,1.086,1.088,1.072,1.023,1.017,1.139,0.93,0.986,0.975,1.022,0.964,1.097,1.112,0.824,1.015,0.995,1.355,1.063,0.853,1.037,0.986,1.068,0.969,1.047,1.02,0.987,1.03,0.848,1.058,0.971,1.199,1.064,1.048,0.963,0.995,0.919,0.972,0.966,0.944,1.082,0.956,1.308 +NM_181777,0.962,0.914,1.077,0.837,0.978,1.038,1.255,0.985,0.973,0.861,0.979,1.0,0.994,0.871,1.071,1.123,0.936,0.94,1.021,1.023,0.927,0.989,0.975,0.988,1.045,1.059,0.827,0.93,1.256,0.977,0.888,0.858,1.099,1.105,0.945,0.979,0.95,1.041,1.037,1.079,0.945,1.015,1.029,1.082,0.904,0.946,1.062,1.065,1.055,1.018,0.828,0.854,0.972,1.048 +NM_181781,1.187,0.973,1.11,1.102,0.929,1.011,1.17,0.842,0.897,0.94,1.045,0.899,1.028,1.007,0.902,1.086,1.159,0.953,1.056,0.967,0.987,1.012,0.959,1.068,1.077,0.844,0.791,1.085,1.208,0.961,1.063,1.131,0.94,0.966,0.991,1.029,1.219,0.913,0.999,0.965,1.132,1.048,1.439,1.056,0.986,0.951,0.927,1.111,1.006,0.861,1.014,0.844,0.985,1.163 +NM_181782,0.539,1.121,2.125,0.983,0.618,1.503,0.81,0.477,0.689,0.768,1.139,0.872,0.682,0.582,0.844,1.487,2.025,0.768,1.272,0.811,0.504,0.53,0.993,0.929,0.685,0.503,2.836,0.516,0.419,1.124,0.623,0.98,1.473,1.353,0.177,0.458,1.588,0.505,2.055,1.669,0.762,1.129,0.923,1.207,0.765,1.97,0.923,0.472,2.425,3.312,1.03,1.655,1.379,3.909 +NM_181783,0.776,0.894,1.436,0.875,1.244,0.97,0.885,0.966,1.23,1.154,1.014,1.054,0.924,0.842,0.929,1.099,0.98,1.004,1.083,0.995,0.971,0.975,1.074,0.948,0.876,0.921,1.483,1.131,0.789,0.948,1.162,0.892,1.113,0.943,0.943,0.953,1.05,1.016,1.093,1.051,0.975,0.922,0.817,0.772,1.205,1.001,0.99,1.081,1.029,0.966,0.866,1.139,0.925,1.034 +NM_181784,0.695,1.146,0.89,0.847,0.638,1.646,1.172,0.643,0.705,0.741,1.228,0.63,0.675,0.703,0.88,1.062,0.793,1.183,0.699,1.519,0.617,0.714,1.44,0.74,1.113,0.759,0.777,0.722,0.923,1.477,0.713,1.132,0.818,1.949,0.752,0.707,1.933,0.71,1.423,1.345,0.793,1.475,1.415,1.041,0.797,1.332,1.019,0.666,0.894,0.696,1.234,0.694,0.915,1.166 +NM_181787,0.666,1.253,0.969,0.753,0.729,1.157,0.815,0.663,0.928,0.791,1.157,0.57,0.753,0.709,0.837,1.447,0.681,1.081,0.87,1.16,0.597,0.733,1.081,0.801,0.929,0.628,1.231,0.709,0.573,1.344,0.827,1.453,2.005,1.426,0.738,1.122,1.172,0.654,1.026,1.447,0.675,1.138,0.822,1.197,0.87,1.297,1.033,0.586,0.857,0.701,1.028,0.999,0.702,1.453 +NM_181788,1.01,0.904,1.058,1.074,1.092,0.984,0.894,0.827,0.929,0.895,0.954,0.995,0.964,1.029,0.988,1.036,1.079,1.011,0.836,1.12,0.902,1.002,1.004,0.982,1.079,0.906,1.055,0.987,0.69,1.081,0.998,1.021,1.068,0.913,0.931,1.045,1.169,0.985,0.944,1.004,1.066,0.912,1.112,0.967,1.029,0.969,0.957,0.963,1.003,0.996,0.991,0.916,0.991,0.954 +NM_181789,1.038,1.251,1.02,1.004,1.005,1.772,0.975,0.818,0.883,0.999,4.058,0.945,0.876,0.89,0.94,1.019,0.894,0.861,0.989,1.784,0.755,0.807,2.504,0.874,1.068,0.859,0.883,0.959,1.004,2.364,0.878,1.581,1.275,1.449,0.889,1.155,1.839,0.912,2.225,0.903,1.001,2.016,1.335,0.835,0.863,1.117,1.008,0.974,1.015,0.838,1.395,0.925,1.029,0.896 +NM_181790,1.078,0.901,1.078,1.057,0.86,0.998,0.996,0.872,1.08,1.087,1.088,0.952,1.005,1.045,1.105,1.017,1.139,1.073,1.304,0.972,1.026,1.007,1.063,0.95,1.072,0.879,0.926,1.054,1.009,0.948,0.846,0.981,1.135,0.935,1.042,1.126,0.863,1.047,0.974,0.997,0.824,0.973,0.904,0.987,1.078,1.113,1.051,0.996,1.002,1.005,0.971,0.898,1.028,0.876 +NM_181791,0.971,0.888,0.961,1.164,1.115,0.884,0.984,1.121,0.947,0.824,0.94,1.089,0.942,1.05,1.151,1.01,0.929,1.177,0.938,1.058,1.151,0.957,1.071,0.965,1.065,1.131,1.106,1.028,0.961,0.956,0.931,0.932,1.016,0.992,1.08,1.029,0.949,0.848,0.921,1.034,1.006,1.099,0.962,0.968,1.11,0.998,1.049,0.971,1.141,0.978,1.027,1.097,0.999,0.995 +NM_181794,1.073,1.105,1.031,1.051,1.127,0.983,0.946,0.949,1.123,0.875,0.963,0.937,1.071,1.133,1.116,1.037,1.018,1.117,0.998,1.097,1.011,0.995,0.951,0.88,1.102,0.907,1.096,1.069,1.094,0.978,0.932,1.14,0.974,0.898,0.962,0.947,1.063,0.968,0.911,0.933,0.986,0.977,0.936,1.06,0.845,1.026,1.062,0.989,0.937,1.007,1.059,0.988,0.983,1.024 +NM_181797,1.8780000000000001,2.6449999999999996,1.842,2.019,1.889,2.173,1.642,1.908,1.568,1.7469999999999999,1.994,1.857,1.907,1.565,2.027,2.239,1.728,1.8399999999999999,2.0540000000000003,1.959,1.754,1.8399999999999999,2.0860000000000003,1.839,2.242,1.683,1.8559999999999999,1.8860000000000001,1.461,2.232,1.8539999999999999,1.918,2.99,2.0060000000000002,1.934,1.977,1.896,1.83,1.978,2.333,1.8980000000000001,1.9780000000000002,1.69,2.394,1.881,2.181,2.007,1.82,2.2809999999999997,1.9100000000000001,1.935,1.8619999999999999,1.8729999999999998,2.4080000000000004 +NM_181798,1.056,0.954,1.132,1.021,0.963,1.076,0.981,0.94,1.111,1.086,0.999,1.05,0.964,0.641,0.964,0.964,1.024,0.9,1.097,1.24,0.865,1.065,0.882,1.115,0.94,1.001,0.729,0.938,0.991,0.872,1.187,0.86,1.092,1.04,0.956,1.205,0.923,1.199,1.146,0.95,0.997,1.068,1.249,1.006,1.031,0.858,0.904,1.046,0.866,1.011,1.072,0.903,0.903,0.871 +NM_181799,0.974,1.01,0.922,0.985,1.089,1.001,1.011,1.037,0.999,0.957,0.864,0.924,0.948,0.912,0.804,1.003,0.987,0.964,1.013,0.997,0.927,0.963,1.189,0.985,0.976,1.032,1.056,1.024,0.86,0.984,0.874,0.924,1.768,1.028,0.933,1.112,0.868,0.948,1.186,1.107,1.092,0.812,0.854,1.185,0.932,0.982,1.078,1.046,0.93,0.898,1.04,0.991,1.033,1.274 +NM_181802,1.095,0.964,1.098,0.869,0.937,1.069,0.998,0.955,1.122,0.771,0.947,1.04,0.999,1.137,1.03,1.009,0.953,0.979,1.322,1.136,0.933,0.963,1.099,1.061,1.133,0.852,0.898,1.042,0.814,0.952,1.029,0.877,1.252,0.776,1.075,0.926,1.054,1.08,0.837,0.894,0.909,1.09,0.984,0.916,0.91,1.074,0.833,0.759,0.828,1.052,0.885,1.171,0.892,1.084 +NM_181803,0.573,0.954,1.172,1.041,0.874,0.899,0.764,0.565,0.975,1.161,0.632,0.947,0.744,0.502,0.819,1.262,0.784,0.946,1.144,0.776,0.693,0.685,2.93,1.206,0.411,0.626,1.94,0.716,0.446,1.17,0.866,1.892,5.515,0.805,0.314,2.928,0.913,0.67,2.428,3.544,1.176,0.661,0.662,3.299,1.049,0.829,1.846,0.64,1.667,0.724,1.272,2.343,0.986,5.013 +NM_181805,0.957,1.012,1.021,0.974,0.939,1.075,1.079,1.059,1.03,1.026,1.193,0.992,0.995,0.791,0.816,0.962,0.94,0.903,1.042,1.075,1.069,0.861,0.991,1.009,1.0,1.005,1.0,1.016,0.924,1.04,0.939,0.793,0.942,0.897,0.987,0.94,0.934,1.054,0.989,0.953,1.014,1.083,0.956,1.005,0.997,0.992,1.09,1.12,1.131,0.812,1.011,0.991,0.914,0.976 +NM_181806,1.04,1.083,1.273,0.981,1.022,1.112,0.73,0.659,0.986,0.975,1.029,0.798,0.786,1.077,1.083,1.101,1.101,0.964,1.316,1.193,0.888,0.773,1.028,0.936,0.784,0.907,1.429,0.945,0.867,1.136,0.945,1.091,1.697,1.254,0.629,0.718,0.942,1.01,1.253,0.802,1.218,1.085,0.858,1.051,1.006,0.968,0.905,0.793,0.831,0.916,1.053,0.739,1.072,1.203 +NM_181807,1.081,1.158,0.91,1.142,0.977,1.025,1.107,1.023,1.144,1.106,0.959,0.988,0.916,1.046,1.048,0.798,1.021,1.136,1.011,1.028,0.95,1.078,1.225,1.032,1.004,0.878,0.985,0.982,1.1,1.02,0.991,1.014,1.027,0.999,0.958,0.879,1.114,0.976,0.929,1.046,1.025,0.929,1.032,0.929,1.059,0.913,1.005,0.956,0.978,0.901,0.972,1.069,0.976,1.024 +NM_181808,1.056,0.855,0.981,0.897,1.05,0.967,1.122,0.937,1.006,1.112,0.958,1.022,1.06,0.93,1.127,1.387,0.901,1.015,1.158,0.908,0.984,1.161,1.143,0.888,1.154,1.24,1.081,1.396,0.983,1.003,1.091,1.247,2.251,0.996,1.294,1.008,0.914,0.858,1.077,0.911,0.963,1.014,1.491,1.038,1.123,1.012,0.924,0.972,0.959,1.172,0.997,0.893,0.919,1.066 +NM_181809,1.037,0.924,0.937,0.976,1.079,1.067,0.919,1.002,0.972,1.004,0.883,0.929,1.035,0.983,1.046,1.203,0.955,0.923,1.073,1.116,0.991,1.015,1.002,0.973,1.01,0.923,1.118,1.185,1.008,1.084,1.013,1.142,0.851,0.882,1.11,1.068,0.987,1.095,1.123,1.093,0.939,1.023,0.865,0.954,1.009,0.983,0.978,1.033,0.917,1.16,1.065,0.958,0.975,1.021 +NM_181814,0.947,0.912,0.967,0.993,1.039,0.902,1.094,1.049,0.972,1.048,0.818,0.897,0.92,0.975,0.931,0.973,1.143,0.958,1.083,1.022,0.932,0.907,0.878,0.942,0.976,1.196,1.068,1.09,1.349,1.088,1.025,0.926,0.857,1.011,1.033,1.039,0.969,0.991,0.909,1.082,0.849,0.982,0.949,1.043,1.106,0.938,0.897,1.076,1.071,0.899,1.0,1.234,0.886,4.794 +NM_181825,0.98,0.875,1.157,1.095,1.082,1.009,0.964,0.923,0.994,1.227,1.122,1.041,1.117,0.84,1.064,0.915,0.999,1.003,0.958,1.218,0.9,0.908,0.892,1.025,0.94,1.068,0.866,1.023,0.807,1.082,1.031,1.147,1.077,0.91,0.988,1.008,1.105,1.095,1.058,1.043,1.005,0.933,0.823,0.929,0.98,1.043,1.086,1.096,1.117,1.086,1.18,0.976,0.934,1.003 +NM_181831,1.006,1.034,0.919,1.038,1.104,0.9,0.897,0.936,0.921,0.983,1.003,1.037,0.959,1.128,0.983,1.098,1.01,1.039,1.043,1.017,1.116,0.992,1.101,1.082,1.018,1.045,1.056,1.022,1.002,0.953,0.941,0.852,0.973,0.868,1.046,1.046,1.002,1.015,0.928,0.985,1.016,0.979,0.973,1.06,0.946,0.953,1.044,0.859,1.089,0.953,1.011,0.92,1.034,1.007 +NM_181836,0.607,1.106,0.863,0.798,0.743,1.495,0.982,0.655,0.88,0.77,1.476,0.799,0.693,0.674,1.048,2.108,0.691,1.038,1.106,1.183,0.501,0.654,1.284,0.902,0.825,0.567,1.153,0.771,0.726,1.375,0.821,1.009,1.508,1.325,0.447,0.982,1.439,0.726,1.505,0.516,0.945,1.226,1.031,0.9,0.884,1.223,1.078,0.677,1.245,0.748,1.389,0.974,0.867,1.537 +NM_181837,0.723,1.088,1.11,0.767,0.963,1.193,0.914,0.804,1.152,0.916,1.016,0.933,0.848,0.84,1.07,1.301,0.936,0.785,1.225,0.975,0.842,0.851,1.094,0.999,0.791,0.985,1.259,0.845,0.618,1.224,0.931,1.285,2.523,1.486,0.604,1.219,1.04,1.047,1.206,0.738,0.909,1.123,0.65,1.269,0.829,0.896,0.944,0.893,0.955,0.8,1.032,0.803,0.838,1.682 +NM_181838,0.974,0.965,1.108,0.895,0.948,1.007,0.982,1.443,1.037,0.916,0.991,1.082,0.988,1.016,0.862,1.038,0.973,1.152,1.088,0.771,1.155,0.962,1.005,1.0,0.936,0.919,1.238,0.946,0.915,0.95,1.005,0.821,1.183,0.962,0.897,1.081,0.913,0.996,1.037,1.325,0.937,0.794,0.804,1.126,1.0,0.946,1.03,0.833,0.965,1.003,1.051,1.082,1.136,1.05 +NM_181839,0.973,0.829,1.927,0.943,1.592,1.027,0.699,1.384,1.148,1.043,0.945,1.296,1.193,1.027,1.062,0.964,1.573,1.216,1.24,0.954,0.711,1.338,0.754,1.56,0.756,0.953,3.169,1.079,0.856,1.322,1.66,1.173,1.162,0.972,0.764,1.236,0.795,1.342,1.125,0.873,1.517,0.956,0.717,0.809,1.36,0.836,1.11,0.973,0.87,1.23,1.188,1.0,1.092,0.689 +NM_181840,1.039,1.071,1.035,1.195,1.01,0.946,0.845,1.114,1.001,0.975,1.03,1.041,1.041,0.931,0.947,0.884,1.091,1.032,0.947,0.964,1.058,1.071,0.955,0.974,0.866,1.027,1.147,0.973,0.771,1.042,1.114,0.912,1.001,0.978,1.062,0.985,1.055,1.292,0.964,0.955,0.902,1.044,1.185,0.926,0.976,0.983,0.919,0.934,1.202,0.978,1.134,0.968,1.115,1.017 +NM_181842,0.934,1.0,0.952,1.08,1.004,0.989,0.96,0.892,1.138,1.164,0.915,0.901,0.933,0.867,0.93,1.057,0.931,1.052,0.88,0.987,0.73,1.097,0.956,0.966,0.998,0.969,0.942,1.071,0.94,0.974,1.115,0.946,1.047,1.013,1.067,0.924,1.025,1.039,0.994,1.096,0.995,0.946,1.128,1.127,1.094,1.098,1.06,0.994,0.945,1.022,1.033,1.04,0.954,0.971 +NM_181843,1.508,0.716,1.158,1.169,0.832,1.148,0.388,1.229,1.339,0.868,1.115,1.303,1.383,0.753,1.241,2.205,0.81,0.878,2.073,0.891,0.797,1.237,1.077,1.229,0.407,1.934,0.819,1.052,0.284,1.061,1.272,0.514,2.058,1.766,0.31,0.359,1.055,0.988,0.912,0.371,1.061,1.086,0.476,0.668,1.206,1.587,0.654,1.562,0.666,1.2,1.157,0.421,0.921,0.519 +NM_181844,0.853,1.279,0.872,0.89,0.918,1.003,0.862,0.91,0.79,0.882,0.987,0.846,0.849,0.827,0.739,1.012,0.873,0.859,0.927,0.861,1.078,0.945,1.012,0.917,1.045,0.997,0.93,0.904,0.798,1.153,0.832,2.198,1.241,1.229,0.95,1.111,0.946,1.081,1.226,1.984,0.997,1.166,0.919,0.948,0.929,0.905,1.057,0.947,0.919,1.033,0.911,1.455,0.874,1.012 +NM_181846,0.986,1.051,1.065,0.967,0.959,0.969,0.878,0.772,1.193,0.986,1.152,0.925,0.985,0.83,0.878,1.001,1.086,1.094,1.043,0.988,0.982,1.154,1.178,1.044,0.831,0.999,0.911,0.888,0.895,0.973,1.063,1.13,1.152,1.112,0.938,0.985,1.034,1.005,1.071,1.009,0.936,0.908,0.972,1.035,1.171,0.898,0.889,0.933,0.939,0.866,1.027,0.906,1.001,1.04 +NM_181847,0.869,1.046,1.056,0.945,1.009,0.852,0.794,0.967,0.985,0.957,0.888,0.832,0.884,1.046,0.908,1.007,0.967,0.88,0.865,0.951,0.952,0.885,1.223,0.943,1.009,0.952,1.125,0.978,1.147,0.993,0.955,3.414,1.179,1.134,0.967,1.259,1.001,0.962,1.065,2.801,0.912,1.061,1.001,1.917,1.07,0.862,1.155,1.028,0.999,0.977,1.023,1.169,0.962,1.233 +NM_181862,1.004,1.052,0.987,0.998,1.02,0.911,1.132,1.008,0.931,0.972,1.11,0.967,1.009,1.05,1.004,0.997,1.003,1.205,0.945,0.87,0.978,0.966,1.053,0.907,0.926,0.906,1.084,0.874,1.448,0.99,0.959,1.007,0.928,1.06,0.971,1.014,0.953,1.02,1.075,1.023,1.003,0.944,1.071,0.89,0.964,1.049,1.029,0.991,0.95,1.071,0.987,0.862,1.084,1.04 +NM_181864,1.11,0.866,1.038,1.098,0.985,1.031,1.011,1.03,0.974,0.923,1.073,0.9,1.158,1.31,1.036,1.083,0.9,1.055,0.95,1.116,0.922,1.023,0.865,1.045,0.997,0.999,0.962,0.921,1.128,1.103,0.988,1.123,0.878,1.052,1.049,0.946,0.873,0.996,0.96,0.939,1.121,0.936,1.069,0.95,1.038,0.889,1.086,1.075,0.899,1.056,1.06,0.826,1.014,0.974 +NM_181865,1.1,1.0,1.033,1.033,0.912,0.992,0.955,1.01,0.966,0.922,1.326,0.919,0.982,0.871,0.972,1.87,0.929,0.868,0.917,1.015,0.999,0.949,1.779,1.02,0.977,0.923,1.063,0.944,0.96,1.118,1.086,0.979,0.89,0.896,1.138,1.086,1.76,0.941,1.128,0.959,0.95,1.275,1.333,0.938,0.855,1.112,1.235,0.914,1.894,0.88,1.301,1.073,1.022,1.769 +NM_181866,1.5779999999999998,1.692,2.0,1.641,1.679,2.13,2.224,1.43,2.003,1.927,2.191,1.98,1.453,1.195,1.745,3.584,1.669,1.8039999999999998,1.742,1.913,1.556,1.459,3.4859999999999998,1.935,1.397,1.6749999999999998,2.132,1.5550000000000002,1.151,2.294,1.564,1.859,3.7969999999999997,1.9869999999999999,0.9329999999999999,2.299,2.519,2.044,3.3049999999999997,2.23,2.1260000000000003,2.505,2.4290000000000003,1.76,2.069,2.537,2.45,1.685,3.341,1.754,2.649,2.117,1.787,3.91 +NM_181869,0.497,0.926,0.947,0.904,0.612,1.802,1.112,0.476,0.645,0.481,1.336,0.652,0.522,0.512,1.122,1.768,0.651,0.974,0.687,1.808,0.495,0.616,1.799,0.66,0.607,0.464,0.997,0.531,0.747,1.566,0.596,1.174,1.507,1.512,0.434,1.324,1.522,0.502,1.572,1.447,0.683,1.468,0.996,0.942,0.539,1.768,1.012,0.526,1.656,0.544,1.716,0.805,0.571,1.779 +NM_181870,0.889,0.825,0.905,0.839,1.159,1.399,0.736,1.016,1.19,1.057,0.798,0.981,0.974,0.901,0.951,0.892,1.168,1.089,1.134,1.045,1.119,1.475,0.695,1.186,0.735,1.205,1.044,0.752,0.97,0.763,1.1,0.875,1.185,1.223,1.173,0.823,0.642,1.212,1.225,0.966,0.921,1.009,0.715,0.837,0.995,0.928,0.972,1.494,0.813,0.928,0.9,0.857,0.945,1.271 +NM_181871,1.955,2.056,2.13,1.994,2.008,1.909,2.0,1.987,2.09,2.074,1.919,2.35,1.879,1.971,2.2270000000000003,2.055,2.099,1.874,2.134,1.948,1.814,2.0380000000000003,1.8239999999999998,1.979,1.931,2.046,2.026,2.0300000000000002,2.34,1.949,2.284,1.772,1.979,2.081,1.7650000000000001,1.847,1.99,2.076,2.248,1.891,2.5839999999999996,1.9499999999999997,1.9129999999999998,2.098,1.888,2.053,1.968,2.0380000000000003,2.052,1.9500000000000002,1.807,1.792,2.089,1.689 +NM_181872,0.996,0.913,0.924,0.851,1.023,0.994,0.829,0.945,1.017,0.842,1.016,1.047,0.973,0.934,0.954,1.042,0.945,0.892,0.953,1.018,0.972,0.981,1.072,1.075,0.962,1.034,1.121,1.022,0.885,0.997,1.046,1.009,0.796,1.094,1.084,1.084,0.904,1.025,0.869,1.037,1.044,1.117,0.836,0.835,0.953,0.991,1.061,1.044,1.136,1.024,1.043,0.853,0.976,0.73 +NM_181873,1.456,2.004,1.891,1.951,1.444,3.386,1.82,1.43,1.4649999999999999,1.664,4.285,1.702,1.349,1.369,3.144,5.2940000000000005,1.543,1.759,1.746,3.915,1.421,1.54,2.888,1.6829999999999998,1.604,1.414,1.686,1.385,1.608,2.307,1.494,3.426,3.9059999999999997,2.198,1.501,5.479,3.687,1.666,2.711,3.8320000000000003,1.586,3.4090000000000003,3.168,2.4859999999999998,1.5790000000000002,3.378,2.748,1.344,4.723,1.6320000000000001,2.8899999999999997,1.826,1.544,2.9779999999999998 +NM_181874,0.956,0.956,1.08,1.0,0.983,1.014,1.063,1.1,0.977,0.886,0.878,1.013,1.232,1.12,0.965,0.974,0.953,0.859,1.032,1.051,1.109,1.078,0.919,0.988,1.085,1.131,0.952,1.077,1.062,1.091,0.845,1.085,1.095,1.053,0.98,1.062,1.069,0.969,0.994,1.193,0.934,0.891,0.884,1.135,0.971,0.976,1.04,0.942,1.129,0.847,1.06,1.007,0.855,0.889 +NM_181875,1.9500000000000002,2.175,1.819,1.8719999999999999,1.8239999999999998,1.976,1.802,1.926,1.863,2.122,2.207,1.901,2.042,2.1310000000000002,1.76,2.013,2.0069999999999997,2.017,1.78,2.093,2.1550000000000002,2.102,2.024,1.9869999999999999,1.964,1.9829999999999999,1.9969999999999999,2.0700000000000003,2.1479999999999997,2.002,2.2809999999999997,2.062,1.967,2.093,1.9,1.8399999999999999,2.12,1.995,1.9500000000000002,2.003,2.188,2.041,1.9969999999999999,1.9569999999999999,1.847,1.774,1.971,1.966,2.2060000000000004,2.0999999999999996,1.954,2.171,2.019,2.315 +NM_181876,2.819,1.228,6.516,1.676,4.212,1.345,1.271,3.509,3.9850000000000003,4.372,1.375,3.761,2.801,2.324,2.0170000000000003,2.018,5.955,2.691,4.936,1.5510000000000002,2.9939999999999998,3.7910000000000004,1.317,3.815,1.271,3.011,5.239,4.375,1.347,1.442,4.43,1.3439999999999999,2.181,1.298,2.542,1.205,1.375,4.9,1.3139999999999998,1.33,5.7219999999999995,1.278,1.643,1.412,4.986000000000001,1.385,2.91,3.6950000000000003,1.5590000000000002,5.301,1.6400000000000001,2.261,3.62,1.345 +NM_181877,0.96,1.0,0.951,1.159,0.942,0.896,1.001,1.073,1.075,0.831,1.112,1.017,0.959,1.121,0.855,1.056,1.071,1.178,1.06,0.976,1.006,1.094,0.902,0.886,1.076,0.863,0.964,0.947,1.12,1.114,1.076,1.028,0.933,1.186,1.141,1.038,1.058,1.001,0.989,0.99,0.894,1.063,0.961,0.921,0.954,0.897,0.861,1.117,0.984,0.935,1.071,0.882,0.972,0.938 +NM_181879,0.952,0.815,0.92,1.311,0.843,1.022,1.24,1.413,1.046,0.984,0.997,1.0,0.991,1.062,0.86,0.973,1.07,1.076,1.184,0.976,0.823,0.871,0.914,0.995,1.167,1.023,0.894,0.93,1.306,0.964,1.222,0.982,1.082,0.934,0.944,1.071,0.787,0.994,1.163,1.136,0.939,1.19,0.992,1.113,1.0,0.902,0.996,0.827,0.963,1.079,0.933,1.218,1.217,1.022 +NM_181882,0.958,1.007,1.046,0.977,1.004,0.984,1.093,0.889,0.998,0.975,0.966,1.07,0.975,1.038,0.918,0.968,0.985,0.946,0.965,1.046,1.078,0.992,1.192,1.019,0.834,1.019,1.035,0.848,0.809,0.991,0.903,1.285,1.114,1.033,0.91,1.048,0.914,0.881,0.992,1.032,1.026,1.0,0.966,0.928,0.905,0.887,0.936,0.964,0.975,0.956,0.93,0.901,0.883,0.988 +NM_181885,1.034,1.006,1.004,0.895,1.076,0.993,0.988,0.999,1.009,0.877,1.02,0.933,0.986,1.286,0.936,0.893,0.948,0.859,1.018,1.18,1.051,1.028,1.047,0.997,0.873,1.081,0.897,1.16,1.129,1.008,0.939,1.018,1.028,1.031,0.86,0.993,1.078,0.975,1.05,1.042,0.949,1.041,1.411,0.915,0.962,1.102,1.049,0.949,1.038,1.18,0.958,0.945,0.984,0.996 +NM_181889,1.096,1.179,1.104,0.933,0.996,0.986,1.0,1.074,0.974,0.921,1.001,0.881,0.94,0.893,1.362,1.006,1.042,1.1,0.882,1.005,1.036,1.033,0.996,0.989,0.929,0.871,0.978,0.988,0.784,0.971,0.873,1.097,1.13,1.045,1.13,1.018,0.87,1.146,0.944,1.059,1.086,0.944,0.842,1.063,1.083,0.957,1.084,1.033,1.032,0.928,0.973,1.076,0.884,0.987 +NM_181892,1.036,1.078,1.017,1.04,0.983,0.95,0.991,0.951,0.859,0.927,0.997,0.863,1.086,0.941,0.826,0.935,0.971,0.949,1.093,0.915,1.086,0.932,0.983,0.903,1.03,0.964,1.036,0.945,0.769,1.015,0.972,1.21,0.951,0.894,1.142,0.935,0.946,0.917,0.983,1.092,1.021,1.013,0.98,1.006,1.101,0.918,1.098,1.102,0.944,1.099,1.037,0.887,1.071,1.122 +NM_181893,0.722,1.113,1.26,0.76,1.014,1.359,0.732,0.605,1.18,0.951,1.099,1.087,0.799,0.654,0.929,1.254,0.931,1.088,1.053,1.093,0.375,0.973,1.047,1.089,0.626,0.811,1.395,1.004,0.506,1.298,0.997,1.135,1.111,1.535,0.615,0.452,1.167,1.137,1.194,0.901,1.197,1.289,0.697,0.862,0.976,1.009,1.069,0.924,0.946,0.786,1.143,0.736,0.886,0.716 +NM_181894,0.99,0.993,0.939,1.082,0.94,0.999,1.009,0.965,0.935,0.898,0.947,0.956,1.089,0.949,1.05,1.051,1.14,0.963,1.066,1.199,1.028,1.03,0.985,1.013,1.136,0.88,1.013,0.987,1.054,0.913,1.088,0.999,0.975,1.088,1.174,1.178,1.135,1.024,0.917,1.111,0.961,1.103,0.918,0.972,0.962,0.927,0.917,0.955,1.018,0.981,1.072,0.91,1.044,1.066 +NM_181897,0.853,0.984,1.024,0.931,1.224,1.033,1.115,0.995,0.95,0.999,1.073,1.103,0.925,0.973,0.798,1.053,0.931,0.973,1.033,0.903,1.038,1.056,0.991,1.128,1.056,1.178,0.92,0.936,0.862,0.938,1.001,1.131,0.972,1.011,1.358,0.977,0.899,0.918,1.095,0.943,1.027,0.976,1.135,1.11,1.095,1.022,0.979,0.935,0.952,1.04,1.017,0.979,1.043,1.019 +NM_181900,1.203,0.867,1.515,1.085,0.831,1.023,0.741,1.092,1.231,0.986,1.307,0.897,1.079,0.976,0.921,1.466,1.258,0.841,1.187,0.812,0.961,0.768,0.874,0.929,0.763,1.174,1.459,0.96,0.963,0.94,1.066,0.795,1.238,0.992,1.015,0.993,1.008,1.168,0.967,0.747,1.086,0.927,0.834,0.85,0.985,1.025,1.221,0.902,1.006,1.314,1.003,0.871,1.177,1.073 +NM_182314,0.991,1.032,1.078,0.947,1.178,1.064,0.97,0.92,0.979,0.989,0.916,1.082,0.78,1.016,1.237,0.954,1.032,0.99,0.952,0.997,0.964,1.049,0.971,0.925,1.027,0.921,1.035,0.903,1.053,1.021,0.882,0.939,0.982,0.983,1.085,0.901,1.031,0.937,0.928,0.974,1.067,1.0,1.126,1.137,1.085,1.002,1.219,1.024,1.0,1.032,1.004,1.178,1.082,1.011 +NM_182398,1.88,1.942,2.225,1.692,1.877,2.084,1.7890000000000001,2.093,1.867,2.045,2.282,2.072,1.915,2.036,1.746,2.142,2.013,1.991,1.805,1.907,2.059,1.911,2.0549999999999997,1.998,1.896,1.81,1.9169999999999998,2.135,1.813,1.883,2.001,1.8689999999999998,2.116,1.811,2.027,1.93,2.115,2.007,1.6720000000000002,1.808,2.24,1.9809999999999999,1.8619999999999999,1.895,1.9489999999999998,2.056,1.9260000000000002,2.0839999999999996,2.146,1.991,2.027,1.8969999999999998,2.232,2.051 +NM_182470,1.02,0.904,1.047,0.94,0.951,1.055,1.045,1.04,1.097,0.908,0.959,0.996,0.915,0.964,0.942,0.958,0.971,1.157,1.02,0.974,0.997,0.983,1.06,1.053,1.158,0.989,1.008,0.931,0.981,0.925,1.061,0.858,1.034,0.983,0.998,0.946,0.921,1.016,1.095,0.93,0.979,1.011,1.007,1.017,1.173,1.096,0.959,0.907,0.983,1.186,0.997,0.804,0.898,0.949 +NM_182472,1.102,0.959,0.953,0.914,1.171,1.168,1.074,0.875,0.923,0.989,1.081,0.976,1.043,0.956,0.943,0.933,1.026,0.961,0.999,1.046,1.138,1.038,0.92,0.9,0.919,0.819,0.943,0.892,0.983,0.898,1.029,0.93,1.025,0.902,1.042,0.931,1.091,1.165,0.967,1.139,1.046,1.044,0.904,0.92,1.234,1.091,1.057,1.076,1.026,1.146,1.009,0.967,1.106,1.032 +NM_182476,0.991,0.975,1.008,1.024,1.019,1.081,0.88,0.947,0.882,1.02,0.88,1.034,0.909,0.739,1.164,1.053,0.969,0.966,1.081,1.102,1.062,0.851,1.042,0.937,0.866,1.034,0.934,1.068,0.813,1.001,0.883,0.971,1.077,0.934,0.921,1.102,0.982,1.164,1.067,0.976,0.802,1.112,0.873,1.075,0.98,1.227,1.045,0.94,0.94,0.962,1.027,0.954,0.93,1.07 +NM_182477,1.006,0.901,0.933,0.937,0.881,0.854,0.909,0.965,1.007,0.91,1.024,0.973,0.993,1.065,0.911,1.028,1.282,0.861,1.196,0.952,0.945,0.904,0.911,1.072,0.997,0.865,1.07,1.012,0.692,1.028,0.971,1.189,1.005,0.914,1.012,0.988,1.028,1.043,0.977,1.168,0.917,1.13,1.009,0.99,1.019,0.954,0.976,1.091,0.97,0.955,0.804,0.958,1.043,0.927 +NM_182480,1.929,2.2030000000000003,1.862,2.135,1.581,2.292,1.617,1.588,1.7919999999999998,2.008,1.927,1.956,1.73,1.548,1.884,2.5389999999999997,1.892,2.094,2.0869999999999997,2.14,1.7269999999999999,1.751,1.998,2.084,2.097,1.876,2.309,1.795,1.195,2.394,1.744,2.007,1.732,2.308,1.5510000000000002,2.125,2.3280000000000003,1.95,2.456,1.7440000000000002,1.729,2.117,1.9849999999999999,2.5,1.9529999999999998,2.219,2.0469999999999997,1.717,1.953,1.962,2.2809999999999997,1.558,1.982,2.05 +NM_182483,1.158,0.773,1.192,0.879,0.804,0.922,0.602,0.596,1.219,0.84,0.808,1.045,0.926,0.968,1.001,1.246,0.94,0.841,1.333,0.835,0.651,1.076,0.953,1.039,0.982,1.289,1.344,0.818,0.687,1.103,0.931,1.175,1.67,1.353,0.466,0.893,1.09,1.318,1.451,0.695,0.985,0.904,0.687,1.088,1.147,0.829,0.703,0.888,0.82,1.108,0.978,0.81,1.341,1.583 +NM_182485,1.026,1.119,0.951,1.037,1.032,0.962,0.999,1.032,1.072,1.123,0.887,1.027,0.913,1.052,0.98,0.87,1.067,1.046,0.912,0.844,1.126,1.039,0.976,1.032,1.038,0.769,1.025,1.061,0.961,0.971,0.977,0.828,1.052,0.847,1.055,1.026,0.811,0.866,0.966,0.988,1.04,1.088,1.076,0.866,0.881,1.161,1.078,0.934,0.932,1.0,0.914,1.014,1.333,0.98 +NM_182486,0.929,0.996,1.011,0.919,1.004,0.879,1.02,0.933,0.893,0.931,0.876,0.853,0.952,0.9,1.008,0.906,0.992,0.971,0.967,1.072,0.873,0.697,2.034,0.894,0.901,0.774,0.987,0.981,1.328,1.628,0.858,3.978,1.105,1.211,0.933,1.091,1.019,0.985,1.556,3.612,0.935,1.005,1.089,0.895,0.75,1.308,1.043,0.952,1.124,0.966,1.058,1.36,0.905,8.111 +NM_182488,1.004,1.03,0.998,0.973,0.916,0.945,0.795,0.895,1.019,0.979,1.075,0.785,1.152,0.97,0.894,0.816,0.992,0.978,0.895,0.95,0.983,1.068,0.902,0.899,0.875,0.953,1.139,0.948,1.081,1.124,1.011,1.082,1.033,0.955,1.056,0.957,1.061,1.197,0.976,1.03,1.053,0.929,0.834,1.068,0.927,1.103,0.995,1.087,1.022,0.891,1.038,0.968,0.918,0.869 +NM_182489,1.04,1.084,1.028,0.947,0.889,1.319,0.953,0.874,0.84,0.893,1.151,0.975,0.906,1.009,1.446,1.463,0.902,1.059,0.986,1.132,0.972,0.967,1.409,0.886,1.071,0.985,0.804,0.971,1.37,1.043,0.847,0.797,0.812,1.178,0.843,1.012,1.18,1.022,0.973,1.059,0.836,1.016,1.113,0.997,0.906,1.077,0.844,1.186,1.225,0.837,1.038,0.918,1.01,0.984 +NM_182490,0.746,1.369,1.165,0.776,1.143,1.367,0.913,0.876,1.0,0.892,0.942,0.882,0.894,0.768,0.892,1.309,0.952,0.979,0.915,1.215,0.658,1.01,1.432,0.97,0.795,0.837,1.292,0.99,0.729,1.246,0.936,1.244,2.17,1.264,0.644,0.834,0.899,0.97,1.234,1.131,1.089,1.265,0.869,0.975,0.874,0.855,0.961,0.958,1.029,0.847,1.0,0.798,0.706,1.24 +NM_182491,1.177,0.541,0.562,0.871,0.847,1.744,1.382,0.683,1.006,0.739,1.404,0.532,0.523,0.369,1.332,1.307,0.463,1.365,1.082,1.255,1.368,0.684,1.676,0.665,0.92,0.853,0.813,0.637,0.853,3.947,0.68,1.113,1.041,1.588,0.866,1.744,1.26,2.349,2.316,1.426,4.263,0.931,1.144,1.005,1.182,2.153,1.235,0.889,1.243,0.445,0.971,1.576,0.652,1.313 +NM_182492,0.932,0.827,0.915,1.003,0.883,1.137,0.809,0.824,0.87,0.828,1.042,0.831,0.783,1.038,1.435,0.855,1.058,0.977,0.918,1.383,0.708,0.83,0.94,1.055,0.925,1.078,1.142,0.923,0.869,1.219,0.934,1.196,1.18,1.039,0.834,1.004,1.056,1.009,1.021,1.471,0.943,0.936,1.066,0.844,0.932,0.976,0.954,0.879,0.979,0.832,1.167,1.085,0.927,1.293 +NM_182493,0.974,1.121,0.999,1.015,1.198,0.947,0.856,0.933,1.033,1.014,0.924,0.998,0.98,0.915,0.897,0.991,1.087,0.984,0.997,1.013,0.962,0.88,0.843,1.019,1.03,0.96,0.941,0.947,0.857,1.055,1.012,1.06,1.042,0.93,0.943,1.097,0.886,0.989,0.98,0.919,1.079,0.888,1.053,1.103,1.076,0.993,1.053,0.978,1.026,1.091,0.945,0.996,1.155,0.985 +NM_182496,0.954,1.04,0.925,1.021,1.022,1.005,1.092,1.104,0.949,1.167,1.0,1.041,0.901,0.915,1.016,1.02,0.917,1.209,1.003,0.986,1.072,0.97,1.0,0.918,0.813,0.941,1.011,0.948,1.047,0.952,1.249,0.981,0.942,0.944,1.029,1.08,1.09,0.953,1.002,1.209,0.985,0.959,0.83,0.958,1.029,1.016,1.044,1.036,0.867,0.917,1.027,1.143,1.156,0.913 +NM_182497,1.375,1.141,0.889,0.777,1.324,1.147,1.112,1.341,1.29,0.97,0.919,0.976,0.968,1.017,0.988,1.311,1.226,1.015,0.833,0.728,0.938,1.091,0.863,0.944,0.963,1.109,1.029,1.335,0.754,0.99,1.036,0.974,0.919,0.791,1.002,1.013,1.074,0.927,1.051,1.032,1.106,0.935,0.818,1.004,1.023,1.422,1.154,1.031,0.97,0.977,0.938,0.902,1.418,0.891 +NM_182498,0.587,1.665,1.021,0.602,0.779,1.127,0.572,0.458,0.832,0.87,1.359,0.687,0.511,0.595,0.857,1.353,0.877,0.971,0.792,1.209,0.485,0.699,1.763,0.849,0.741,0.696,1.217,0.809,0.42,1.667,0.73,1.843,1.893,1.646,0.206,0.877,1.175,1.097,1.182,0.697,1.068,1.349,0.868,0.895,0.704,1.199,1.302,0.647,0.683,0.547,1.013,0.941,0.907,1.135 +NM_182499,0.929,1.031,1.076,1.301,0.917,0.915,0.982,1.116,1.017,0.958,1.085,0.955,0.977,0.961,0.928,0.894,0.885,0.958,0.932,0.938,0.912,0.988,1.292,0.943,1.015,1.032,1.033,0.991,1.35,0.978,0.89,1.094,1.0,0.975,0.962,1.148,0.988,1.018,1.061,1.073,1.017,1.06,1.402,0.999,0.942,0.964,1.029,0.976,0.986,1.163,0.96,1.015,1.137,0.884 +NM_182501,0.945,0.988,1.012,0.91,1.075,0.998,0.902,0.968,1.112,0.985,1.106,1.087,0.915,0.989,1.0,1.222,1.022,0.886,1.327,0.894,0.946,1.043,1.119,1.232,0.877,1.006,1.006,1.061,0.94,0.997,0.953,1.062,1.142,1.144,0.923,0.751,0.903,0.91,0.982,1.0,1.016,0.95,0.776,1.118,1.04,0.875,1.065,1.221,0.968,1.135,0.964,0.856,1.149,1.256 +NM_182502,8.794,0.174,6.595,2.412,14.15,0.159,0.16,16.36,16.77,4.034,0.174,7.447,13.48,6.62,7.281,2.871,5.936,5.248,10.71,0.285,2.646,11.54,0.148,5.976,0.146,7.138,4.667,12.77,0.186,0.151,13.53,0.134,4.872,0.153,15.23,0.179,0.277,10.49,0.254,0.161,8.047,0.201,0.158,0.147,6.715,0.14,3.333,12.62,0.695,4.507,1.868,0.799,2.658,1.022 +NM_182503,0.972,1.007,1.009,0.983,0.973,0.87,0.939,0.978,1.251,0.938,0.996,1.166,0.93,0.927,1.244,1.067,1.048,0.948,0.914,1.25,0.826,1.017,1.11,0.946,1.011,0.942,0.919,0.968,0.916,0.98,0.98,0.974,0.996,0.925,0.986,1.035,0.984,1.133,1.114,1.155,0.988,0.991,1.323,1.151,1.182,1.026,1.008,1.068,1.086,0.979,0.945,0.923,1.043,1.123 +NM_182504,0.995,1.181,0.968,1.025,0.99,0.864,1.014,1.016,0.903,0.974,1.037,1.024,1.045,1.155,0.884,0.92,1.0,0.965,0.929,1.03,0.919,0.944,1.057,0.999,1.179,0.968,1.062,0.922,1.106,0.855,1.02,1.023,1.126,1.034,0.97,0.987,0.862,1.1,0.973,1.107,0.949,0.948,0.887,1.137,0.861,0.968,1.059,0.957,0.863,1.057,0.988,0.988,1.039,1.04 +NM_182505,0.934,0.983,1.13,0.886,1.039,1.206,0.901,1.131,1.499,1.061,1.126,0.903,0.979,0.864,0.975,1.279,0.984,0.854,0.979,1.02,0.791,1.142,0.941,1.215,0.815,0.942,1.387,1.184,0.499,1.077,1.297,0.899,1.059,0.996,1.122,0.689,0.894,1.214,1.006,0.874,1.113,1.017,0.725,0.908,0.987,0.956,1.358,1.115,1.211,0.982,1.017,0.71,0.751,1.489 +NM_182507,2.583,0.177,2.586,0.884,3.059,0.129,0.133,2.54,4.9,2.428,0.142,1.311,2.147,3.208,2.05,0.99,3.206,1.629,3.239,0.183,2.106,2.009,0.138,2.507,0.131,3.125,4.675,3.691,0.132,0.162,4.387,0.435,2.75,0.136,5.565,0.252,0.148,3.702,0.484,0.649,5.551,0.17,0.177,0.587,4.255,0.133,2.967,3.208,0.642,3.832,0.665,1.01,2.767,0.983 +NM_182510,0.996,0.975,0.919,1.081,0.925,1.167,0.915,0.939,0.939,0.961,1.132,1.005,0.813,1.108,1.315,1.088,0.975,1.091,0.957,2.206,0.991,0.978,1.221,1.016,1.042,0.936,0.98,0.944,1.036,0.942,0.975,1.004,1.029,1.057,0.972,1.187,0.979,1.039,1.009,0.987,0.958,1.938,1.043,1.133,0.925,3.469,1.182,0.861,0.928,1.142,1.275,0.967,1.134,1.339 +NM_182511,1.071,1.024,0.952,0.976,0.978,1.03,0.958,1.043,0.933,1.026,0.819,0.992,1.028,1.057,1.131,0.936,1.01,1.039,1.059,1.037,0.949,0.933,0.983,1.029,1.0,1.071,1.0,1.264,0.794,1.133,1.059,1.013,0.792,0.939,1.029,0.947,1.11,0.972,1.037,0.967,1.014,0.888,0.995,0.95,1.063,1.028,1.123,0.974,1.077,0.857,1.016,1.127,0.9,1.034 +NM_182512,1.095,1.042,1.027,0.97,1.008,1.074,1.194,1.067,1.04,1.032,0.968,0.999,1.003,1.061,0.921,0.888,1.095,1.011,1.048,1.013,0.988,0.995,0.896,1.046,0.954,1.005,0.906,1.058,1.07,1.014,0.899,1.003,0.901,0.96,0.886,1.031,0.921,0.994,0.979,0.969,1.02,1.052,0.887,0.855,1.038,1.035,1.199,0.994,1.077,1.012,1.065,1.028,1.07,1.056 +NM_182516,0.954,0.97,0.921,1.028,1.077,1.095,0.925,0.949,1.063,1.065,0.774,0.894,0.919,0.869,0.93,1.235,0.97,1.05,0.955,0.992,0.974,1.052,1.003,1.086,1.047,0.927,0.926,1.065,0.832,0.918,1.075,0.947,0.91,0.966,1.067,0.954,1.105,0.938,1.114,1.012,0.903,0.923,0.97,0.966,0.93,1.031,1.003,1.049,0.968,0.993,0.916,0.952,0.917,0.901 +NM_182519,1.062,0.905,0.835,0.974,0.914,0.946,0.925,1.044,0.923,1.07,0.955,1.109,0.988,0.979,1.205,0.887,1.085,0.926,1.039,0.8,0.991,1.023,0.902,0.996,0.977,1.027,1.014,1.015,0.965,1.013,0.966,1.19,0.928,1.012,1.035,1.139,1.014,1.0,1.225,1.057,0.799,0.903,1.07,0.955,1.078,0.972,0.966,1.024,1.084,0.893,0.867,0.969,1.124,1.064 +NM_182520,1.145,0.945,1.199,0.91,1.018,1.016,1.119,1.275,0.939,0.917,0.995,0.997,1.077,0.942,1.344,0.984,0.96,0.855,1.092,0.972,0.92,0.932,1.062,0.945,0.939,1.122,0.941,1.072,0.967,1.127,0.872,0.909,0.807,0.976,0.974,0.862,1.075,0.949,1.004,0.976,0.975,0.985,0.927,1.079,0.879,0.943,0.991,1.029,1.115,0.965,1.06,0.819,0.82,0.973 +NM_182522,0.916,1.064,0.89,1.031,0.997,1.024,1.022,0.885,1.004,1.137,1.075,1.148,0.91,1.026,0.887,0.985,1.033,0.96,1.045,1.013,1.015,1.091,1.031,1.057,1.109,0.96,0.911,1.168,0.961,0.966,1.154,0.883,1.032,0.866,1.018,1.025,1.042,0.952,0.946,0.954,0.994,1.04,0.937,1.047,0.92,1.118,1.04,1.132,1.111,0.945,0.972,1.048,0.898,1.043 +NM_182523,0.637,0.95,0.88,1.112,0.699,1.164,0.761,0.632,0.891,0.769,1.388,0.692,0.751,0.786,0.67,1.752,0.785,1.075,1.074,1.198,0.621,0.666,1.094,0.729,0.785,0.751,1.003,0.682,0.669,1.257,0.782,1.053,1.293,1.06,0.434,1.251,1.024,0.686,1.851,0.761,0.75,0.926,1.074,1.359,0.785,1.071,1.132,0.659,1.292,0.671,1.253,1.056,0.956,1.278 +NM_182525,1.076,0.912,1.169,0.941,0.904,0.949,0.97,1.2,0.935,0.825,0.915,0.957,1.016,1.053,1.224,0.89,0.872,1.22,1.172,0.798,0.842,1.041,1.095,0.983,1.116,1.004,1.15,1.006,1.249,0.963,1.13,0.986,1.139,0.979,0.908,0.972,0.972,0.891,1.059,0.985,0.882,0.995,0.927,1.013,1.059,1.089,0.911,0.877,1.05,1.141,0.959,0.895,0.89,0.909 +NM_182528,0.985,1.042,0.944,1.166,0.976,0.861,1.323,0.963,0.847,1.109,1.051,0.991,1.038,0.965,0.83,0.92,1.053,1.102,0.902,0.948,1.115,1.197,1.181,1.018,1.094,0.998,0.662,0.937,1.017,1.04,0.942,1.069,0.865,1.052,1.079,1.057,1.031,1.059,0.962,0.966,0.859,0.937,1.243,1.036,0.955,1.172,0.997,0.948,1.046,1.025,0.889,1.029,0.91,0.915 +NM_182529,1.048,1.096,1.109,0.926,1.082,1.008,1.105,0.979,1.071,0.921,0.911,1.045,0.978,0.903,0.905,1.027,1.037,1.07,1.116,0.912,1.052,1.068,1.095,0.942,1.005,1.144,0.974,1.032,0.871,0.909,1.018,0.996,0.952,0.963,0.946,1.106,0.805,0.912,0.933,1.004,0.984,0.872,1.017,0.949,1.087,0.973,1.091,1.009,1.059,0.939,0.988,1.123,0.956,1.054 +NM_182530,1.034,0.981,1.002,1.095,0.887,2.0,0.984,0.938,0.984,1.182,3.261,1.017,0.845,0.955,2.255,4.875,0.993,1.089,0.818,2.591,0.96,0.917,1.959,0.933,0.956,1.026,0.949,0.956,0.944,1.151,1.149,0.875,0.957,1.265,0.887,1.235,2.415,0.909,1.352,0.872,0.875,1.55,1.933,0.881,0.925,4.038,1.166,0.968,2.424,0.879,1.917,1.041,1.108,1.014 +NM_182531,1.049,0.902,0.953,0.992,0.833,1.035,1.078,0.997,1.071,1.049,1.184,0.864,0.855,1.134,0.881,1.012,0.975,1.004,0.944,1.008,0.966,0.838,0.925,0.959,0.949,1.006,1.015,0.999,1.044,1.066,0.978,1.066,0.966,0.992,1.014,1.066,1.003,0.98,0.964,0.99,0.969,1.068,0.871,0.952,0.983,1.156,1.077,0.928,0.928,1.117,0.946,0.917,1.141,1.132 +NM_182532,1.106,0.973,0.998,0.934,1.152,0.886,0.857,0.914,0.964,0.884,1.151,1.048,0.874,1.138,1.302,1.084,0.989,0.951,0.913,1.069,1.136,0.992,0.994,1.091,0.959,0.98,1.014,0.935,1.013,0.958,0.998,0.971,1.034,1.037,0.85,0.919,1.051,1.094,1.071,0.978,1.177,0.979,1.193,1.037,0.871,0.925,0.969,0.991,1.047,1.016,0.994,0.838,0.802,1.069 +NM_182533,0.992,0.811,0.909,0.896,1.073,1.013,0.902,1.116,1.063,0.856,0.952,1.009,0.971,0.809,0.682,0.955,0.939,1.065,0.918,1.005,0.971,0.894,1.102,0.991,1.055,1.05,1.016,0.963,0.78,1.012,0.891,1.082,1.108,0.955,0.973,0.948,1.039,1.108,1.003,0.965,1.01,1.086,0.886,1.052,1.142,1.066,0.87,1.003,1.021,1.003,0.985,0.973,1.015,1.126 +NM_182534,0.924,0.923,1.08,1.25,0.968,1.061,1.092,0.687,1.047,0.921,0.967,0.875,0.878,1.001,1.004,1.053,1.284,1.087,1.011,0.999,0.978,1.038,1.068,1.052,0.911,0.95,1.008,1.001,1.037,0.949,0.956,0.954,1.078,1.283,1.033,1.079,0.903,1.086,0.924,1.017,0.942,0.951,0.967,0.976,0.99,1.007,0.992,0.997,1.018,1.029,1.068,0.785,1.121,1.074 +NM_182537,0.967,1.084,1.0,0.924,0.971,0.911,1.098,1.009,0.939,1.21,0.964,1.132,0.976,1.269,0.842,1.025,1.09,0.965,0.924,0.93,1.044,1.023,0.87,0.9,0.966,1.015,1.036,0.963,1.289,0.982,0.933,1.035,0.781,1.078,0.843,1.198,1.017,1.111,0.85,1.109,0.856,1.063,1.424,0.86,0.989,1.153,0.936,1.028,1.034,0.923,1.024,1.012,1.163,1.104 +NM_182538,0.981,0.894,1.056,1.037,1.039,0.969,1.172,0.974,1.158,1.184,0.99,0.964,1.168,0.847,0.98,0.846,1.069,1.025,0.959,1.046,1.028,1.011,1.093,0.944,0.821,1.078,0.978,1.075,0.905,0.886,1.112,0.981,1.199,0.877,1.304,1.582,0.901,0.979,0.926,0.958,1.067,1.005,1.05,0.944,0.937,0.956,1.033,1.078,0.959,1.093,1.041,1.005,0.973,1.746 +NM_182539,0.947,1.017,0.893,0.965,1.064,0.918,1.048,1.136,0.984,0.975,0.946,1.05,0.96,0.901,1.016,1.028,1.02,1.361,0.902,1.031,0.989,0.924,1.062,0.947,1.213,0.879,0.932,1.001,1.117,0.882,0.839,0.912,0.973,0.921,0.981,0.859,1.167,0.854,1.134,1.148,0.878,1.091,1.106,1.102,1.002,0.966,1.132,1.096,1.06,1.054,1.025,0.955,1.09,1.107 +NM_182540,1.085,1.036,0.94,1.163,1.026,1.096,1.009,1.048,1.231,0.906,0.947,0.962,1.057,0.988,0.932,1.011,0.966,0.973,0.924,1.029,1.033,0.993,1.012,1.015,1.029,1.09,0.834,0.955,1.165,1.087,1.053,0.998,1.187,1.045,1.025,0.956,1.079,1.04,0.992,0.968,1.064,1.012,0.902,0.966,1.045,0.988,0.962,1.018,1.092,1.105,0.972,1.018,0.985,0.992 +NM_182541,1.092,0.91,0.922,1.025,0.999,1.045,1.026,0.934,1.049,1.019,0.931,0.969,1.177,1.056,0.8,1.114,1.096,0.799,1.017,1.024,1.04,0.929,0.826,0.941,1.031,0.95,1.241,0.93,0.885,0.94,1.016,1.031,1.018,0.964,1.001,0.99,1.017,0.978,0.867,0.951,0.988,0.961,0.93,0.927,1.141,1.011,0.989,1.039,1.083,1.154,0.903,0.997,0.921,0.883 +NM_182542,1.034,1.007,0.95,1.174,0.972,0.94,0.835,0.972,1.059,0.866,1.126,0.958,0.769,0.996,0.853,1.022,0.876,0.961,1.11,1.092,0.991,0.951,1.011,1.089,1.096,1.021,1.007,1.037,0.678,1.095,1.019,0.966,0.998,1.063,0.916,0.991,1.029,0.974,0.961,0.851,1.016,0.992,1.285,0.995,0.977,0.931,0.93,0.986,1.015,0.934,1.073,0.928,1.058,0.897 +NM_182543,0.783,1.297,1.006,0.815,0.967,1.209,0.905,0.666,0.892,0.954,1.258,0.826,0.66,0.73,1.084,1.329,0.845,0.877,0.925,1.234,0.782,0.795,1.184,1.005,0.837,0.893,1.193,0.827,0.65,1.477,0.792,1.024,1.427,1.376,0.588,0.83,1.148,0.885,1.137,0.981,0.994,1.093,0.871,1.143,0.843,1.209,1.057,0.827,1.005,0.787,1.066,0.855,0.893,1.315 +NM_182546,1.016,0.937,0.93,1.057,0.96,1.082,1.035,0.947,0.905,0.95,1.131,1.052,1.024,0.904,1.052,1.093,1.008,1.294,0.808,0.944,0.985,0.909,0.995,0.996,1.195,1.073,0.918,1.039,1.248,2.152,1.081,1.054,0.88,1.33,1.095,0.902,1.088,0.872,0.955,0.889,0.97,0.936,0.973,0.915,1.01,1.324,0.847,0.797,0.961,1.103,1.073,0.996,1.037,0.979 +NM_182547,0.577,1.161,0.814,0.753,0.627,1.337,0.751,0.54,0.874,0.531,1.304,0.59,0.503,0.603,0.893,1.888,0.567,0.856,0.843,1.355,0.483,0.457,1.551,0.772,0.986,0.777,0.739,0.629,0.493,1.779,0.801,1.67,1.496,1.913,0.53,0.865,1.446,0.534,1.344,0.795,0.676,1.675,0.81,1.495,0.701,1.246,1.601,0.596,0.795,0.588,1.129,0.783,0.702,2.012 +NM_182548,0.985,1.043,0.966,0.989,0.939,0.961,0.774,1.128,0.926,1.077,0.93,1.095,0.961,1.001,0.745,0.999,1.037,0.961,0.83,0.967,1.012,1.045,0.974,0.925,0.972,1.063,1.008,1.082,0.621,1.036,0.933,1.119,1.006,1.048,0.938,1.017,1.021,0.994,1.111,1.22,1.091,0.86,0.988,0.96,1.062,0.842,1.078,1.066,1.05,0.97,0.959,0.861,0.835,0.969 +NM_182549,3.605,0.894,2.77,1.087,3.737,0.744,1.08,1.748,4.497,1.471,0.829,4.276,3.17,2.245,3.695,0.842,2.332,0.82,1.64,1.043,1.918,4.512,0.758,2.814,0.864,3.182,2.708,4.385,0.929,0.739,4.344,1.064,1.37,1.403,0.764,0.829,0.901,2.022,0.81,0.845,1.691,1.015,0.706,0.894,3.49,0.783,0.827,2.677,0.781,1.718,0.848,0.899,2.008,0.79 +NM_182550,1.12,1.042,1.041,0.846,0.869,1.016,0.917,1.068,1.124,0.979,1.016,1.089,0.947,1.085,1.028,0.932,0.882,0.939,0.874,0.926,1.01,0.9,0.963,0.907,0.997,1.077,1.134,0.93,1.369,1.02,1.0,0.989,0.841,0.904,0.983,0.966,0.931,1.055,1.092,1.055,0.929,1.036,1.126,0.921,0.966,1.162,1.023,0.98,1.03,0.927,1.011,0.973,0.986,1.0 +NM_182552,1.024,0.943,1.095,1.045,1.083,1.09,1.029,1.026,0.978,1.112,0.977,1.179,1.047,1.332,0.827,0.896,1.04,0.98,1.018,0.961,1.003,0.972,0.962,1.135,0.951,0.989,1.094,0.937,0.959,0.862,0.999,1.532,1.214,0.994,0.967,0.993,0.881,1.141,0.985,0.999,1.067,1.083,0.891,1.152,1.029,1.076,1.035,0.928,0.911,1.013,0.956,0.966,1.042,1.123 +NM_182553,0.895,0.916,1.128,0.987,1.064,0.989,0.787,1.056,1.019,0.85,1.107,1.139,1.091,0.892,0.92,0.978,0.836,0.74,1.068,1.191,0.967,0.998,1.307,0.997,0.975,0.97,0.946,0.997,0.698,0.924,1.046,1.102,1.224,1.388,0.809,1.004,1.138,1.334,1.026,0.995,0.85,0.775,1.362,0.996,1.028,1.633,0.93,0.963,1.146,0.943,1.124,0.802,1.064,0.969 +NM_182554,1.022,0.895,0.917,0.937,0.943,1.156,1.04,1.214,0.905,1.093,1.015,1.021,1.104,1.029,0.96,0.914,0.886,1.175,0.851,1.072,1.09,1.066,1.07,0.926,1.144,0.966,0.911,1.059,1.159,1.01,0.978,1.019,1.011,0.98,1.311,1.065,1.053,0.975,1.042,0.961,0.933,0.936,0.868,1.051,1.058,0.958,1.054,0.958,0.992,0.964,0.964,0.924,1.034,0.998 +NM_182557,1.074,0.885,1.077,0.908,1.014,0.972,0.906,0.785,0.957,1.075,0.853,1.049,0.97,0.92,0.81,1.193,0.957,0.857,1.216,0.812,1.219,1.114,1.003,0.878,0.969,1.189,0.982,1.017,1.025,1.019,1.14,1.357,1.298,1.1,1.238,1.156,0.874,0.996,1.612,0.996,1.062,0.892,0.843,1.094,0.919,0.923,0.834,1.039,0.856,1.134,0.909,0.978,0.937,1.024 +NM_182559,1.037,1.101,0.91,1.048,1.039,0.937,0.957,0.904,0.867,0.964,0.977,1.055,0.97,0.907,0.902,0.932,0.949,1.043,0.946,0.974,1.033,1.042,0.923,1.011,1.012,1.037,1.043,1.055,1.029,1.028,1.049,1.044,0.928,1.063,0.987,0.905,1.081,1.093,0.941,1.022,0.943,0.942,0.94,0.975,1.047,0.989,1.24,1.044,0.923,1.017,0.952,1.153,1.0,0.96 +NM_182560,0.944,1.046,0.954,1.102,0.984,1.145,0.974,0.924,1.093,0.929,0.931,1.071,1.065,0.973,1.025,1.0,1.016,0.992,0.949,1.051,1.051,0.966,0.924,1.045,1.084,0.953,1.123,1.052,0.936,0.974,0.967,0.872,1.082,0.965,1.083,0.976,1.012,0.982,0.935,0.929,0.806,0.991,1.195,0.983,0.899,1.069,0.885,1.038,1.023,0.952,0.989,0.956,1.116,0.834 +NM_182561,1.08,0.913,0.91,1.065,0.979,1.028,1.281,0.987,0.962,0.838,1.045,1.123,0.866,0.934,0.977,1.061,0.986,1.042,1.033,0.957,1.07,1.059,1.079,1.041,0.952,1.092,1.05,0.979,0.905,1.099,1.049,0.995,0.864,0.98,0.942,1.013,1.112,1.347,0.952,1.063,0.988,0.917,1.088,0.917,0.93,1.024,0.93,0.906,1.014,1.062,0.944,0.942,0.891,1.027 +NM_182562,1.112,0.993,1.014,0.993,1.124,1.007,0.863,1.055,0.92,1.151,1.125,1.045,1.062,0.858,0.95,1.01,0.881,1.036,1.15,0.857,0.953,1.011,0.998,0.943,1.047,0.997,0.871,0.856,0.859,0.986,1.218,0.972,1.096,1.172,0.952,1.181,0.873,0.873,1.145,0.934,0.936,1.112,0.812,1.096,1.052,0.983,0.975,1.255,1.119,0.9,1.072,0.948,1.26,0.939 +NM_182563,1.004,0.925,0.973,1.024,1.102,0.876,0.931,1.09,0.99,0.892,1.004,1.231,1.081,0.89,1.045,1.059,0.995,0.916,0.941,1.042,1.016,0.978,0.986,1.024,1.08,1.008,0.991,0.964,0.771,1.049,0.978,1.032,0.976,1.101,0.886,1.137,1.031,0.95,0.941,1.154,1.031,0.97,0.954,0.926,1.016,0.995,1.054,1.068,1.064,0.981,0.973,1.03,0.986,0.919 +NM_182564,1.103,1.229,0.905,0.888,0.932,0.996,0.925,0.937,1.043,1.104,0.912,0.986,1.008,1.059,0.882,0.937,0.975,0.878,1.006,0.864,0.964,1.01,0.984,1.057,1.043,0.926,0.918,0.947,1.08,0.895,1.191,1.09,1.008,1.044,1.082,0.884,1.061,0.969,1.013,1.054,0.936,1.333,0.84,1.068,0.908,0.984,1.038,0.923,0.97,1.088,0.969,0.995,1.013,0.939 +NM_182565,0.846,0.691,1.222,0.803,0.816,1.158,0.462,0.965,0.975,0.906,1.002,0.913,0.917,0.702,0.977,0.897,1.21,0.862,1.194,1.015,0.825,1.537,0.947,0.889,0.454,1.073,1.254,0.845,0.496,0.856,1.048,1.085,0.944,1.011,1.518,0.649,0.756,1.013,1.615,1.146,1.021,1.0,0.487,1.746,0.843,0.676,0.904,1.455,0.773,0.92,0.939,0.71,0.981,1.88 +NM_182566,0.923,0.936,1.191,1.0,0.796,1.193,0.942,0.91,1.003,0.84,1.201,0.996,0.939,0.908,0.866,1.182,0.871,1.0,0.998,1.006,1.005,0.988,1.05,1.128,0.957,0.857,0.895,0.744,0.848,1.127,0.865,1.291,0.829,1.07,0.817,1.239,1.057,0.875,1.113,1.592,1.0,1.045,0.831,1.18,0.942,0.86,1.027,0.895,0.957,1.0,0.993,1.274,0.841,1.291 +NM_182567,1.01,0.982,1.0,0.979,1.178,0.968,1.092,0.989,0.988,0.996,0.94,0.98,1.164,0.96,1.129,0.998,1.008,1.049,1.262,0.982,1.023,1.004,1.031,1.026,1.144,0.998,1.202,0.944,0.801,1.03,1.102,0.872,0.972,1.084,1.081,0.97,0.944,1.081,1.02,1.062,1.031,0.966,1.077,1.007,1.104,0.947,1.0,1.04,0.962,0.828,0.993,0.961,1.042,1.192 +NM_182572,0.864,1.047,1.007,1.138,0.985,1.04,0.828,0.796,1.204,0.901,1.081,1.008,1.0,1.25,0.939,0.852,0.94,0.939,1.175,1.228,0.979,1.077,0.996,1.069,1.106,0.949,1.052,1.227,0.793,1.066,0.818,0.924,1.088,1.031,0.931,0.913,1.023,0.894,1.036,1.021,0.908,0.961,0.888,1.037,1.04,1.004,0.973,0.928,0.952,0.984,1.05,1.1,1.195,1.092 +NM_182574,1.001,1.021,1.01,0.999,0.974,0.987,0.981,0.903,0.943,0.907,0.987,1.011,0.987,1.091,0.946,1.087,0.931,1.071,1.187,1.041,1.005,1.015,0.902,0.975,0.908,0.988,1.118,1.101,1.018,1.091,0.988,1.03,1.113,0.997,0.898,1.072,1.069,0.944,1.063,1.08,1.055,0.959,1.149,1.034,1.032,1.047,0.897,0.983,0.904,1.163,0.989,0.961,0.918,0.895 +NM_182575,0.991,1.033,1.14,0.836,1.057,1.055,0.885,1.168,1.048,1.077,1.142,1.237,1.021,0.898,0.917,1.065,0.995,1.066,1.131,1.046,0.952,1.02,1.101,0.933,1.002,0.989,0.998,1.039,1.134,0.956,1.123,1.017,0.961,1.009,1.163,1.056,1.078,0.911,0.9,0.921,0.922,0.918,1.155,1.157,1.029,0.896,0.972,0.959,1.084,0.995,0.931,1.009,0.983,0.978 +NM_182577,1.076,1.033,1.086,1.066,1.184,0.927,0.969,0.862,0.912,0.896,0.957,0.987,1.054,0.837,0.963,1.049,1.081,0.976,0.952,1.082,0.951,0.907,0.928,0.977,1.075,1.061,0.981,1.003,1.014,1.016,1.115,0.902,1.041,0.872,0.991,1.087,1.012,1.008,0.958,1.197,1.098,1.078,1.104,0.96,1.074,1.07,1.156,0.93,0.855,1.088,1.144,0.925,0.954,0.91 +NM_182579,1.05,1.01,0.968,0.906,1.08,0.967,0.899,1.136,1.0,1.111,0.958,1.049,1.133,1.122,1.003,0.987,1.023,0.996,0.981,1.082,1.004,0.984,0.922,1.181,1.064,0.93,0.884,1.058,0.687,0.965,1.001,1.104,1.009,0.913,1.035,0.953,0.906,1.138,1.113,0.904,1.228,1.026,0.848,1.079,1.156,1.077,0.891,1.039,1.021,0.983,0.88,0.966,1.089,1.084 +NM_182580,0.981,0.968,1.059,0.981,0.847,0.926,1.019,1.013,0.923,0.755,1.068,0.913,0.901,1.036,1.094,1.121,0.855,1.017,1.152,1.038,0.918,1.073,0.941,1.145,0.942,0.937,0.841,0.988,1.26,0.935,0.905,1.041,1.215,0.901,0.934,0.908,0.959,0.905,1.034,0.868,1.022,0.978,1.244,1.093,0.879,0.969,0.847,0.862,1.016,0.952,1.041,1.018,0.92,0.985 +NM_182581,0.966,0.925,0.926,1.02,1.087,0.927,1.047,0.901,0.901,1.175,0.89,1.026,0.835,0.987,0.845,1.083,1.004,0.983,1.075,0.924,1.023,1.011,0.776,1.035,0.965,1.028,0.718,0.924,0.772,0.903,1.071,1.111,0.976,1.089,0.951,1.067,1.011,0.894,1.109,1.056,0.879,1.037,0.868,1.027,1.07,1.047,1.153,0.975,0.959,0.9,1.034,1.162,1.354,1.069 +NM_182585,1.109,1.025,0.918,1.095,1.042,0.981,1.166,1.137,1.041,0.935,0.973,0.955,0.832,0.871,1.26,1.0,1.021,1.014,0.992,0.868,1.036,0.946,1.029,0.985,0.965,1.027,0.94,1.02,1.154,0.932,0.941,0.861,1.049,1.01,0.974,1.093,1.044,1.208,0.992,0.927,1.099,1.086,1.299,1.18,1.035,0.835,1.037,1.177,1.0,0.826,1.04,0.98,0.956,1.124 +NM_182590,1.078,1.0,0.89,1.143,1.11,0.951,1.288,0.968,1.026,1.011,0.872,0.927,1.082,1.135,0.916,1.0,0.955,1.032,0.99,0.962,1.044,1.164,0.926,1.01,1.088,0.974,0.987,1.051,0.836,0.982,0.863,0.955,0.995,0.895,1.024,0.947,0.989,1.09,0.948,1.04,1.078,0.967,1.126,0.903,0.976,1.114,0.913,1.021,0.998,1.043,0.91,0.928,1.062,1.06 +NM_182592,1.162,1.11,0.938,1.005,1.247,1.061,0.922,0.926,1.001,0.906,1.033,0.914,0.989,1.358,1.135,0.947,0.99,1.024,1.325,0.891,1.039,0.853,1.012,0.96,1.055,0.997,0.867,0.954,0.908,1.202,1.09,0.923,1.058,1.054,1.068,0.996,0.991,0.886,1.175,1.085,0.898,0.905,1.003,1.039,0.97,1.069,0.85,1.038,0.954,1.136,1.081,0.866,0.923,1.031 +NM_182595,0.966,0.909,1.143,0.991,0.915,0.934,1.054,1.063,1.012,0.998,0.845,1.178,0.925,0.962,1.59,0.94,1.001,1.007,1.059,1.103,1.043,0.909,1.163,0.901,1.013,1.05,1.015,0.951,1.237,0.906,1.096,1.07,1.033,0.931,1.127,0.972,1.093,0.987,0.967,1.099,1.041,1.001,1.043,0.957,1.011,0.99,0.942,0.946,0.995,1.315,0.999,0.811,1.122,0.968 +NM_182597,1.0,0.947,0.889,1.007,1.127,1.038,0.94,0.944,1.071,1.035,1.015,0.951,1.012,1.38,1.095,1.116,0.964,0.947,1.233,0.993,0.96,1.116,1.106,0.98,0.951,0.974,0.967,0.946,1.083,1.044,1.047,0.964,0.879,1.045,1.178,0.874,1.189,0.908,0.859,1.066,1.0,1.026,0.882,0.913,0.935,0.978,1.071,0.907,1.023,1.011,1.095,1.086,1.106,1.015 +NM_182599,1.088,0.993,0.953,0.909,1.013,0.954,0.939,1.177,1.06,1.0,1.021,0.986,0.781,1.101,1.469,0.979,0.943,0.98,0.929,1.035,1.032,0.858,0.915,0.946,1.021,1.009,0.859,1.026,0.837,1.067,0.997,0.946,0.886,1.03,0.974,0.934,1.015,1.002,1.139,0.936,0.956,0.917,1.466,1.054,1.123,0.959,0.887,1.0,1.003,0.95,1.012,1.034,1.053,1.083 +NM_182600,1.054,0.984,0.947,1.053,0.934,1.046,0.836,1.055,0.889,0.981,0.965,0.988,1.069,0.87,0.813,1.054,0.877,1.002,1.093,1.042,1.235,0.906,0.972,1.057,1.091,0.956,1.096,0.976,0.778,0.967,0.986,1.188,1.057,0.966,0.802,0.868,0.888,1.008,1.048,1.049,1.023,0.921,1.094,1.114,1.017,0.986,1.09,0.988,1.078,1.003,0.914,0.954,0.958,0.936 +NM_182603,0.831,0.882,0.858,0.927,0.909,1.176,0.833,1.046,0.781,0.864,0.937,1.187,0.995,0.796,0.85,0.913,0.792,0.959,0.915,0.999,1.033,1.052,1.008,1.012,1.031,1.089,1.175,0.919,0.868,1.006,0.938,0.965,1.009,0.996,1.06,0.908,1.031,0.954,1.009,0.977,1.002,0.91,1.205,0.882,1.0,0.985,0.891,1.077,1.0,1.048,1.022,1.1,1.091,0.978 +NM_182604,1.028,0.985,0.869,1.015,0.967,1.036,1.169,1.064,1.02,1.01,0.892,1.047,1.012,1.081,0.825,0.841,1.112,1.019,1.046,0.883,1.081,0.975,0.999,1.038,0.996,1.086,1.307,0.993,1.141,1.001,1.001,1.032,1.127,1.054,1.074,1.074,0.979,0.858,0.893,1.006,1.105,0.993,0.759,0.991,1.042,0.891,0.949,1.02,0.951,0.956,1.156,0.78,1.038,1.059 +NM_182605,1.082,1.023,1.017,0.91,0.977,0.872,1.043,1.081,1.064,1.097,0.88,0.854,1.035,1.07,0.86,0.932,0.937,1.278,0.978,0.951,0.876,0.991,0.935,1.034,1.101,1.087,0.927,1.007,1.079,0.947,0.964,0.996,0.903,1.088,0.977,0.98,1.123,0.984,1.022,0.97,0.96,1.104,1.081,1.131,1.08,0.878,0.843,0.908,1.018,0.907,1.116,1.044,0.919,0.884 +NM_182608,0.711,1.007,1.393,0.787,0.776,1.054,1.363,0.515,0.817,0.857,1.035,0.559,0.664,0.549,0.959,1.5,1.04,1.179,0.67,1.51,0.399,0.654,1.012,0.699,0.78,0.576,1.282,0.632,1.274,1.93,0.748,1.509,0.776,1.365,0.505,0.732,1.327,0.84,1.534,1.045,1.096,1.377,1.131,1.164,1.125,1.139,0.995,0.719,0.993,1.088,1.276,1.2,0.674,1.342 +NM_182609,0.954,1.06,1.05,0.84,1.204,1.005,1.366,0.85,1.008,1.029,1.062,1.003,0.913,0.677,0.97,0.979,1.102,0.917,1.019,0.983,0.823,1.062,0.95,1.149,0.994,1.117,1.202,1.117,1.133,1.017,1.194,1.076,0.958,0.954,1.131,0.819,0.916,0.94,0.951,1.257,0.957,0.93,1.066,0.96,1.152,0.943,0.761,0.895,0.872,1.026,0.903,0.879,1.111,1.179 +NM_182610,1.088,0.946,1.019,0.982,1.101,0.96,0.868,1.089,0.955,0.968,0.937,1.063,1.032,0.991,0.841,1.061,0.884,1.012,1.0,0.909,1.178,0.908,1.177,0.934,1.041,0.992,0.887,1.035,0.892,1.0,0.988,0.849,1.014,0.968,1.077,0.969,1.214,1.012,1.018,1.009,0.961,0.863,1.045,0.919,0.812,1.04,0.975,0.919,1.058,1.037,0.965,1.079,0.885,1.137 +NM_182611,1.132,0.993,1.282,0.938,1.006,0.989,0.968,1.009,1.08,0.957,1.006,0.945,0.918,1.099,1.362,1.0,0.926,0.946,1.004,1.008,0.994,0.888,1.026,0.962,1.07,0.935,0.888,1.088,1.354,1.066,1.082,1.057,0.899,0.988,1.03,1.101,1.083,1.048,0.918,1.048,0.919,0.908,1.191,1.151,1.0,0.992,1.024,1.016,0.856,0.888,1.054,0.858,1.035,0.895 +NM_182613,1.022,0.907,1.047,1.146,1.004,0.954,0.72,0.877,1.004,1.016,1.013,0.936,1.025,0.998,1.0,0.841,1.02,1.117,1.045,0.976,1.128,1.025,1.028,1.041,0.938,0.979,1.008,0.959,1.0,0.952,0.927,0.899,1.001,0.863,1.025,0.988,1.117,0.992,0.895,1.031,1.014,0.995,0.952,1.287,1.087,0.927,1.087,1.082,0.86,0.98,1.015,1.002,1.072,0.98 +NM_182614,1.132,0.98,0.912,1.046,1.069,0.952,0.834,1.108,1.139,0.861,0.962,0.901,0.976,0.997,0.931,1.031,0.996,0.919,1.048,0.902,0.935,0.977,0.913,0.903,1.088,0.963,0.973,1.008,0.569,1.034,0.944,1.091,0.953,0.98,0.963,1.026,1.004,1.096,1.053,1.196,0.961,0.947,1.153,0.952,1.035,0.967,1.136,0.992,1.036,1.001,0.933,1.069,1.051,0.898 +NM_182616,0.807,1.018,1.276,0.745,0.934,1.056,0.636,0.678,0.858,0.831,1.291,0.784,0.771,0.609,1.177,1.181,1.02,0.997,1.268,1.203,0.608,0.904,1.267,0.912,0.736,0.716,1.181,0.989,0.76,1.341,0.721,1.064,1.123,1.032,0.619,0.983,1.026,0.738,1.084,0.673,0.981,1.072,1.02,0.687,1.065,1.357,0.993,0.876,1.187,1.045,1.229,0.692,0.908,0.9 +NM_182617,1.066,1.044,1.026,1.103,0.985,1.04,1.058,0.919,0.997,1.16,0.943,0.997,1.024,0.851,1.152,0.94,0.947,0.812,1.003,1.038,0.851,1.005,0.881,1.033,0.928,1.008,0.912,0.984,0.864,0.995,1.004,0.977,1.03,0.893,1.205,1.009,0.977,0.955,1.007,1.058,0.963,0.88,1.247,1.087,0.988,0.95,1.008,1.014,1.04,0.937,1.026,0.995,0.868,1.064 +NM_182619,1.074,0.912,1.06,1.022,0.937,0.943,1.165,1.166,1.12,1.035,0.94,1.229,1.019,1.041,0.923,0.972,1.238,0.96,1.112,0.932,0.939,1.15,0.905,0.988,0.884,1.129,1.081,0.966,0.833,0.89,1.0,1.043,1.062,0.996,1.174,1.024,0.988,1.147,1.011,0.887,1.221,0.883,0.88,0.944,1.131,0.927,1.135,1.256,0.829,0.881,0.951,1.043,0.946,1.069 +NM_182620,0.907,0.934,1.036,0.879,1.184,1.028,0.862,1.051,0.931,0.987,1.023,1.244,0.925,0.9,1.004,1.002,0.92,1.087,1.147,0.911,1.012,1.04,0.919,1.031,0.927,1.002,1.116,1.087,0.548,1.143,1.041,1.238,1.296,1.094,0.798,0.935,0.931,1.073,1.077,1.013,0.991,0.765,0.792,0.957,0.891,0.894,1.141,0.961,0.936,0.99,0.998,0.837,0.978,0.935 +NM_182623,0.998,0.861,1.032,1.037,1.094,0.97,0.903,0.984,1.046,1.0,0.918,1.07,0.992,0.873,1.012,1.048,1.013,0.97,1.437,0.96,1.095,1.081,1.218,1.195,1.053,1.056,1.009,1.058,1.063,1.029,1.211,0.916,1.122,0.872,1.223,0.973,0.951,0.93,0.934,1.15,0.878,1.087,0.931,1.193,1.018,0.839,0.996,0.969,0.873,1.184,0.877,0.908,1.295,0.984 +NM_182625,0.987,0.996,1.035,1.157,1.244,0.834,0.87,1.04,1.19,1.06,0.951,0.995,1.072,0.81,1.059,1.014,0.926,1.118,0.955,1.076,0.905,0.948,0.944,1.135,1.095,0.907,0.856,0.996,0.936,0.963,0.952,0.931,1.174,1.069,1.003,1.058,0.862,0.962,1.004,1.042,0.9,0.992,0.94,0.962,1.006,1.017,1.153,0.933,1.075,1.037,1.175,1.178,1.045,1.063 +NM_182627,0.891,0.958,1.182,0.776,1.086,1.06,0.74,0.964,1.118,1.304,0.89,1.2,0.822,0.946,1.062,1.218,1.117,0.824,0.944,0.967,0.758,1.258,1.021,1.402,0.793,0.901,1.321,1.08,0.784,1.088,1.225,1.547,2.767,1.176,0.947,0.81,0.874,1.284,1.136,0.841,1.061,0.929,0.823,0.942,1.054,0.794,0.926,1.003,0.814,0.927,0.882,0.916,0.886,1.65 +NM_182628,1.001,1.04,1.046,1.002,1.085,1.054,0.895,1.029,0.999,0.997,0.961,0.963,0.928,1.119,1.054,1.075,0.972,0.929,1.071,0.923,1.043,0.971,1.131,0.947,0.848,1.068,0.929,1.007,0.838,1.106,1.061,1.095,1.132,0.979,1.119,0.916,0.945,0.979,1.073,1.061,0.893,0.899,0.953,1.037,0.884,0.972,1.053,0.977,1.087,1.061,1.091,0.93,0.828,1.186 +NM_182635,1.333,0.983,1.389,1.034,1.222,0.768,0.817,0.872,1.59,0.787,0.952,0.918,0.779,1.343,1.065,0.818,0.922,0.831,1.036,0.951,0.931,1.284,0.997,1.302,0.785,1.335,1.08,1.723,0.649,1.538,1.332,1.571,0.957,1.078,0.704,0.711,0.77,1.514,1.034,1.335,1.524,1.212,0.697,0.815,0.963,0.877,1.005,1.261,0.635,0.912,0.979,0.883,0.796,1.49 +NM_182639,1.8719999999999999,2.149,1.742,1.883,1.8210000000000002,2.453,2.0460000000000003,1.726,1.784,1.915,2.317,1.831,1.784,1.929,1.688,2.045,1.92,2.098,1.768,2.166,1.871,1.867,2.232,1.78,1.891,1.808,1.88,1.758,2.13,2.02,1.8210000000000002,2.217,2.034,2.2750000000000004,2.0389999999999997,2.428,2.373,1.692,2.4720000000000004,1.945,1.7930000000000001,2.068,2.217,2.074,1.834,2.078,1.8649999999999998,1.744,2.42,1.9140000000000001,2.039,2.107,1.785,2.359 +NM_182640,0.616,1.073,1.152,0.675,0.912,0.915,0.598,0.541,1.184,1.001,0.832,0.882,0.697,0.665,1.056,1.602,0.862,0.928,1.247,0.908,0.711,1.152,1.539,1.099,0.637,0.871,1.478,0.905,0.58,0.595,0.999,1.3,3.378,1.19,0.309,1.251,0.968,0.944,1.542,0.89,0.81,0.995,0.719,1.525,1.128,0.916,1.107,0.762,1.267,0.916,0.978,0.758,0.964,2.219 +NM_182641,0.925,0.877,1.214,0.96,1.08,0.922,1.15,1.061,0.983,1.092,0.979,1.04,1.0,0.925,1.077,0.953,1.006,0.904,1.01,1.056,1.153,1.014,0.985,1.069,1.085,0.961,1.011,1.098,0.959,1.001,0.913,0.919,0.982,0.967,1.143,0.901,0.873,0.937,1.031,0.999,1.016,0.962,0.944,1.112,0.932,0.944,1.22,1.053,1.041,1.105,1.123,1.054,1.047,0.785 +NM_182642,1.21,1.063,1.112,1.019,0.937,1.047,1.109,0.88,1.152,0.893,1.121,0.981,1.015,0.822,0.962,1.072,1.051,1.232,1.177,0.852,1.105,0.924,1.024,0.863,1.163,0.998,1.009,1.005,1.09,1.013,0.953,1.1,0.844,0.972,1.166,1.024,1.093,1.027,1.125,0.98,1.069,0.972,0.941,1.227,0.943,0.878,0.968,1.042,0.832,0.953,0.938,0.821,0.956,0.905 +NM_182644,0.968,1.189,0.999,1.02,0.921,0.962,1.083,0.844,1.119,0.955,0.881,1.08,0.988,1.083,1.024,1.184,1.043,0.998,0.985,1.05,1.123,0.948,0.824,1.02,0.895,0.988,0.963,0.947,0.94,1.048,0.845,1.181,1.018,1.1,1.038,0.988,1.049,0.851,0.918,0.951,0.991,0.987,0.954,1.208,1.098,0.885,0.955,0.95,0.927,0.859,1.074,0.825,1.023,1.086 +NM_182645,1.111,0.957,1.14,0.978,1.272,1.106,1.149,1.034,1.034,1.025,1.0,0.91,0.973,1.037,1.02,1.07,1.032,0.962,1.164,0.937,0.874,0.859,1.061,1.031,0.848,0.876,0.923,0.998,1.559,1.059,0.859,0.929,1.09,1.046,0.999,1.115,1.05,1.022,1.04,0.958,0.993,1.084,1.272,0.939,0.77,1.125,0.841,1.005,1.001,1.065,1.114,1.035,1.034,1.177 +NM_182647,0.976,1.093,0.935,0.999,1.095,0.92,0.965,0.97,1.174,1.043,1.095,1.071,0.989,0.924,0.737,1.034,1.169,0.908,1.001,0.985,0.909,0.978,0.89,1.168,0.929,0.993,1.069,1.004,1.356,0.968,0.79,1.013,1.026,0.969,1.099,1.003,1.053,1.075,1.096,0.956,0.954,1.132,0.955,0.965,0.938,1.066,1.073,1.047,1.014,1.122,0.978,0.948,0.792,0.994 +NM_182648,0.765,0.719,1.606,0.772,0.818,1.208,0.678,0.55,1.202,1.019,1.193,0.883,0.61,0.958,1.01,1.2,0.92,0.84,1.452,0.838,0.835,0.907,1.058,1.194,0.561,0.765,1.66,0.813,0.602,0.992,1.053,0.81,1.671,1.192,0.489,0.736,0.973,0.892,0.964,1.115,1.164,0.815,0.923,1.363,0.958,0.961,0.999,0.649,1.036,0.959,0.958,0.894,0.93,1.214 +NM_182649,1.548,1.5590000000000002,2.327,1.6400000000000001,1.748,1.5659999999999998,1.501,1.104,2.492,2.662,1.5390000000000001,1.217,1.193,1.5699999999999998,2.0309999999999997,2.553,1.637,1.82,1.9939999999999998,1.988,1.2469999999999999,1.166,3.774,1.7839999999999998,1.272,1.448,3.018,1.866,0.989,2.0940000000000003,2.2880000000000003,2.558,10.492,2.481,1.117,2.105,1.7839999999999998,1.6629999999999998,3.0780000000000003,2.1790000000000003,2.302,1.785,1.486,4.128,2.085,1.9129999999999998,2.566,1.249,2.415,1.794,2.361,2.144,1.873,7.41 +NM_182658,0.821,0.938,0.916,0.98,1.104,0.987,1.104,1.022,0.978,1.037,0.939,0.951,1.117,0.998,0.871,0.975,1.178,0.928,1.07,1.036,1.107,1.061,0.898,0.914,1.076,0.91,1.073,1.053,1.139,0.906,1.041,0.959,1.02,0.89,0.987,1.057,1.027,0.835,0.93,0.946,1.028,0.886,1.32,1.016,0.951,1.033,0.946,0.848,0.97,0.864,1.056,1.064,1.15,1.008 +NM_182659,1.139,0.823,1.029,0.984,0.973,0.965,1.019,0.979,1.077,0.927,1.035,0.888,1.011,0.789,0.944,0.939,1.105,1.235,1.072,0.94,0.855,0.925,1.023,0.985,0.998,1.034,0.999,1.079,1.553,1.017,1.133,1.155,0.866,0.988,0.986,0.835,1.069,0.89,1.073,1.01,1.139,1.048,1.331,1.05,1.004,1.21,0.87,1.263,1.127,1.041,0.874,1.023,0.884,0.944 +NM_182660,0.967,0.94,0.974,0.93,1.025,0.987,1.113,1.035,1.067,1.02,0.948,1.199,0.954,1.092,0.96,1.019,0.997,1.081,0.837,1.087,1.102,0.915,0.885,0.949,0.974,1.201,0.981,1.081,1.02,0.994,0.967,0.945,0.95,0.996,1.02,0.966,1.08,1.08,1.022,1.003,1.013,1.017,0.936,0.927,1.066,1.037,0.998,1.116,1.073,1.054,1.025,1.051,0.934,0.996 +NM_182661,0.879,0.882,1.212,0.792,0.733,1.11,0.614,0.467,0.817,0.74,1.36,0.745,0.767,0.906,1.103,2.507,0.832,0.835,1.189,0.958,0.669,0.845,1.237,0.669,0.903,0.902,1.079,0.781,0.682,1.079,0.84,2.367,1.201,1.389,0.368,1.222,1.322,0.842,1.546,1.157,0.987,1.2,0.758,1.014,0.932,1.117,0.886,0.868,0.993,1.007,1.158,0.867,0.92,1.079 +NM_182662,0.929,1.123,1.034,0.985,0.911,1.1,1.088,1.017,1.074,0.873,0.977,0.965,0.947,0.842,0.988,1.006,1.031,0.908,0.902,1.013,0.993,0.905,1.049,1.037,0.83,1.049,1.056,0.95,0.9,1.098,0.976,0.953,1.326,0.912,1.146,1.155,0.805,0.987,1.001,1.055,1.025,1.053,0.905,0.902,1.273,0.911,1.013,0.877,0.996,1.278,0.978,0.973,0.939,0.874 +NM_182664,0.858,1.069,1.246,0.867,1.13,0.943,0.903,1.025,1.074,1.051,0.889,0.938,0.934,0.983,1.017,0.836,0.958,1.04,1.219,1.021,1.009,1.135,0.982,0.969,0.876,1.081,1.038,1.109,0.787,0.948,1.06,1.049,1.075,0.972,1.054,1.031,0.9,0.889,1.01,0.963,1.044,1.06,0.813,1.049,1.05,1.085,1.037,0.97,1.0,0.949,0.952,0.884,1.037,1.124 +NM_182665,1.024,0.952,0.91,0.915,0.949,1.019,0.94,1.246,0.897,0.852,0.858,1.038,0.933,1.075,0.982,0.865,1.094,1.12,1.035,0.878,1.06,0.945,1.029,1.032,1.039,0.984,1.12,0.908,0.858,0.999,0.852,0.926,0.874,1.084,1.024,0.914,1.05,0.969,0.949,1.189,0.971,0.928,0.968,0.894,0.961,0.966,1.059,0.946,1.025,0.954,1.093,0.96,1.019,0.922 +NM_182666,0.933,1.232,1.411,0.95,1.395,0.902,0.861,0.846,1.279,1.141,0.998,0.866,0.897,0.989,1.095,1.288,1.036,1.076,1.304,0.885,0.969,0.867,0.973,1.222,0.777,1.052,1.218,1.292,0.722,1.02,1.278,0.941,1.214,1.092,0.846,0.783,0.999,1.071,1.03,1.0,1.398,0.922,0.801,0.866,1.238,1.027,1.252,0.867,1.004,1.0,0.923,0.954,1.037,1.005 +NM_182676,0.901,1.562,1.083,0.828,0.837,0.801,1.008,0.541,0.818,0.94,0.718,0.854,0.697,0.75,0.935,0.783,0.971,0.998,1.271,0.711,0.73,0.679,1.324,0.838,1.662,0.921,1.538,0.735,0.548,1.743,0.777,1.834,0.852,1.581,0.56,0.592,0.887,1.031,1.159,0.987,0.967,1.743,0.873,1.162,1.263,0.755,1.107,0.844,0.591,1.169,1.204,1.518,1.62,1.12 +NM_182678,0.718,1.477,1.118,0.916,0.604,1.591,0.721,0.565,0.95,0.681,1.757,0.664,0.644,0.638,1.135,1.82,0.754,0.843,0.787,1.215,0.523,0.706,1.532,0.85,0.8,0.612,1.129,0.602,0.557,1.195,0.853,1.245,2.202,1.773,0.275,0.864,1.335,0.705,1.642,0.697,0.922,1.128,0.75,1.642,0.828,1.045,0.775,0.637,0.708,0.74,1.323,0.596,1.006,1.638 +NM_182681,1.034,0.999,0.949,1.142,0.905,0.955,0.766,1.115,1.033,0.929,0.917,0.986,1.218,1.001,1.086,0.974,1.023,1.066,0.935,0.952,1.153,0.956,1.033,1.034,1.077,0.895,0.936,1.139,1.182,0.952,1.119,1.049,1.064,0.989,0.966,0.994,0.962,0.911,1.005,0.964,1.068,1.102,1.002,1.007,0.964,0.996,0.957,0.972,0.867,0.973,0.944,0.956,0.885,1.103 +NM_182682,1.012,1.002,1.22,0.884,0.999,1.063,0.887,1.02,1.157,0.986,1.042,0.959,0.839,1.061,0.939,1.236,1.098,0.967,1.12,0.938,1.009,0.87,1.03,1.032,0.836,1.024,1.29,1.019,0.633,1.096,1.147,1.054,1.111,1.081,0.937,0.819,1.0,0.935,0.903,0.897,1.027,1.049,0.97,0.795,1.025,1.016,1.041,0.961,0.992,1.021,1.209,0.848,0.974,1.092 +NM_182683,0.891,1.042,0.891,0.927,1.399,0.918,0.9,1.342,1.056,1.184,0.962,1.06,0.867,0.83,1.085,1.069,0.997,1.304,1.451,0.954,1.45,1.458,1.0,0.848,0.825,2.235,0.787,1.079,1.004,1.021,1.341,1.142,0.937,1.156,1.646,1.054,0.894,1.318,1.058,0.941,1.062,0.863,1.06,1.0,1.028,1.05,0.775,0.897,0.878,1.14,0.925,0.743,1.408,2.329 +NM_182684,1.005,0.921,0.933,1.013,1.04,0.939,0.977,1.251,1.142,1.116,0.971,0.893,1.048,1.009,1.234,1.005,0.974,1.019,1.197,0.836,1.457,1.12,0.838,1.157,0.927,2.04,0.938,1.037,1.107,1.001,1.189,0.931,1.009,0.919,2.087,0.856,0.876,1.173,0.88,0.957,1.066,0.961,0.882,0.979,1.062,0.969,1.0,1.014,0.831,1.013,0.978,0.939,1.004,1.41 +NM_182685,0.519,0.958,1.439,0.664,0.695,1.319,0.649,0.407,1.006,0.665,0.712,0.611,0.636,0.574,1.064,1.053,0.74,1.039,0.706,1.638,0.354,0.703,1.059,0.892,0.602,0.655,1.208,0.729,0.584,1.938,0.791,3.304,1.299,1.031,0.397,1.056,0.978,0.766,0.895,3.774,0.897,1.674,0.935,1.234,0.868,0.964,1.732,0.558,0.792,0.789,1.005,1.855,0.784,1.028 +NM_182686,1.02,0.896,1.001,0.984,0.973,0.924,0.818,0.975,0.926,1.011,0.935,0.954,1.04,0.966,0.86,0.937,1.089,0.907,0.928,1.069,0.95,0.92,1.01,1.038,0.871,0.934,1.1,1.152,1.089,0.928,0.898,0.857,1.117,0.963,0.997,0.978,0.958,1.198,0.987,1.109,0.988,1.023,0.991,1.001,0.897,0.97,1.137,1.002,1.007,1.124,1.001,1.06,0.891,0.953 +NM_182688,1.016,0.906,0.85,0.938,1.086,1.016,1.076,1.002,1.048,1.081,1.03,1.126,1.106,1.149,0.874,1.023,1.052,0.892,1.061,0.892,1.024,0.846,1.101,1.057,0.985,0.959,0.806,0.959,0.995,1.021,1.124,1.021,1.039,0.832,0.94,0.972,1.055,0.972,1.044,0.973,1.077,1.044,1.31,0.898,1.034,1.157,1.045,0.924,0.98,1.076,0.971,0.981,1.003,1.148 +NM_182689,0.876,0.917,1.066,0.867,0.774,0.972,0.633,0.674,1.074,0.78,1.199,1.044,0.788,0.901,1.001,1.507,0.857,0.884,1.531,0.815,0.807,0.871,1.079,1.034,0.695,1.157,0.981,0.819,0.57,1.125,0.932,1.261,2.786,1.035,0.441,1.2,0.834,1.027,1.066,1.229,1.001,1.018,0.663,1.486,1.15,0.693,1.073,0.954,0.713,1.171,0.863,0.863,0.935,1.177 +NM_182691,0.883,0.985,1.428,0.94,1.024,1.017,1.207,0.856,0.877,1.081,1.095,0.895,0.934,0.753,0.971,0.89,0.885,1.03,0.915,1.192,0.858,0.933,1.275,0.897,0.957,0.867,1.114,0.957,0.868,1.485,0.862,1.2,1.148,1.614,0.674,0.949,1.021,0.868,1.189,0.83,1.207,1.251,0.772,1.094,1.057,0.874,0.866,0.846,0.832,0.8,1.146,0.943,1.234,1.151 +NM_182692,1.005,0.934,1.027,0.871,1.033,0.979,0.937,1.17,1.005,1.125,1.065,1.02,0.87,1.073,0.904,1.165,0.922,0.959,0.836,1.132,1.263,0.835,0.962,0.953,0.856,1.031,1.234,0.971,0.521,1.105,1.017,1.207,0.943,0.994,0.952,0.991,1.069,1.001,1.079,1.008,0.913,0.869,0.999,0.985,1.069,0.862,0.935,0.84,0.93,0.999,1.054,0.975,1.093,0.956 +NM_182697,0.65,0.886,1.428,0.552,0.919,1.217,0.647,0.651,1.553,1.047,0.919,0.723,0.726,0.684,0.794,1.169,1.06,0.901,1.005,1.071,0.633,0.591,1.269,0.946,0.492,0.481,1.436,0.954,0.342,1.758,1.274,1.112,1.109,1.431,1.146,0.543,0.79,0.708,1.167,0.743,1.216,1.164,0.929,1.076,1.013,1.041,1.368,0.498,0.995,0.721,1.077,1.017,1.155,1.196 +NM_182699,1.005,1.071,1.001,1.074,1.007,1.101,1.078,1.046,1.077,0.871,1.057,1.104,0.904,0.778,0.849,1.01,0.991,0.898,0.946,1.017,0.988,0.967,0.913,1.094,0.999,1.046,1.278,0.955,1.129,1.068,1.126,0.955,0.797,1.012,0.902,0.806,0.871,0.936,0.985,0.986,1.14,1.024,1.228,0.972,0.945,1.001,0.906,1.049,0.946,1.104,1.007,1.05,0.953,1.095 +NM_182700,0.832,0.988,0.997,1.088,1.056,1.017,1.167,1.05,0.983,0.958,1.156,0.985,0.988,0.935,0.964,0.922,0.818,1.11,0.892,1.026,0.974,0.874,1.098,0.902,1.038,1.001,0.997,0.93,1.001,1.006,0.997,1.179,1.142,1.07,0.971,0.958,0.958,0.918,1.051,1.458,0.922,0.902,1.188,1.086,1.164,0.94,1.026,1.134,1.011,0.892,1.031,1.132,0.922,0.933 +NM_182702,1.009,0.976,1.133,0.873,0.994,1.046,0.765,1.014,1.081,0.946,1.06,1.001,1.065,1.049,1.049,1.226,0.999,0.849,1.039,1.042,0.997,0.806,1.031,0.898,0.967,0.962,0.793,0.968,1.118,0.965,1.087,0.994,1.083,1.112,0.828,1.026,1.086,0.937,1.155,1.064,1.069,1.017,0.852,1.006,1.091,0.887,0.976,1.061,1.167,1.032,1.092,0.926,1.015,1.249 +NM_182704,1.142,1.064,0.992,1.081,1.101,1.023,1.051,0.813,0.99,0.99,0.971,0.953,0.913,0.842,0.826,0.853,0.946,1.136,1.283,1.112,0.953,0.923,1.086,1.006,1.152,1.013,1.021,1.011,0.816,1.078,1.164,0.88,1.041,0.908,1.012,0.963,1.047,0.906,0.999,1.147,0.938,0.996,0.896,1.186,1.12,1.099,1.059,0.942,1.005,1.091,1.001,1.162,0.976,1.067 +NM_182705,0.604,1.091,1.354,0.703,0.625,0.847,1.476,0.608,0.755,0.672,1.106,0.674,0.691,0.647,0.814,1.001,0.804,0.97,0.715,0.856,0.813,0.705,1.93,0.867,0.82,0.599,0.956,0.697,0.611,1.85,1.286,4.795,0.979,2.011,0.535,0.975,1.15,0.654,1.594,4.332,0.903,1.983,1.029,0.893,1.243,1.17,0.849,0.64,0.953,0.612,1.16,2.336,1.27,0.852 +NM_182706,1.7930000000000001,1.927,3.325,1.8279999999999998,2.83,1.7069999999999999,1.544,1.661,3.175,3.011,1.4889999999999999,1.93,1.7610000000000001,1.851,1.904,1.939,3.0220000000000002,2.109,2.613,2.0060000000000002,1.686,2.343,2.234,2.646,1.46,2.362,3.0380000000000003,2.309,1.318,1.891,2.741,1.9929999999999999,2.572,1.806,1.742,1.717,1.666,2.554,2.341,2.557,2.431,1.945,1.379,2.4619999999999997,2.792,1.939,2.1310000000000002,2.3890000000000002,2.002,2.9,1.9929999999999999,1.81,2.301,2.307 +NM_182709,0.909,1.119,0.998,0.963,1.028,1.127,1.037,0.989,0.942,0.935,0.959,0.906,1.02,0.938,1.019,1.209,1.048,0.859,0.921,0.884,0.839,1.156,1.104,1.116,0.985,0.925,0.919,0.989,0.931,1.047,1.111,1.223,1.044,1.072,0.997,0.937,0.961,1.022,1.262,1.039,1.055,0.992,0.82,1.046,0.979,1.033,1.029,0.985,1.13,0.813,1.055,0.85,0.922,1.038 +NM_182710,0.98,1.067,0.978,0.923,0.98,0.982,1.0,0.963,1.027,0.862,1.051,0.894,0.912,1.214,1.046,0.905,0.998,1.084,0.937,1.056,1.009,0.974,1.082,1.133,1.011,1.006,0.821,1.008,1.064,1.083,0.904,0.945,0.902,1.021,1.007,1.087,0.932,1.002,0.873,0.918,1.064,1.079,0.866,0.978,1.135,1.069,0.955,0.931,0.965,1.138,1.04,0.932,0.971,1.032 +NM_182712,0.879,0.658,0.929,0.839,0.897,0.717,0.48,0.333,1.116,1.216,0.631,0.872,0.54,0.527,0.689,1.205,0.975,0.862,1.453,0.621,0.806,0.844,1.672,1.292,0.634,1.203,1.184,0.631,0.499,1.256,0.857,1.31,2.564,1.083,0.182,1.285,0.913,1.01,1.927,1.395,1.161,1.044,0.588,3.387,1.275,0.756,1.216,0.834,0.956,1.09,0.856,1.439,1.245,1.675 +NM_182715,1.7879999999999998,1.619,2.886,1.6640000000000001,2.238,2.02,1.736,1.7249999999999999,2.8739999999999997,2.227,1.736,1.5630000000000002,1.703,1.799,2.348,3.26,1.992,2.379,2.556,1.911,1.367,2.101,2.528,2.248,1.387,1.951,2.457,2.159,1.596,2.198,2.596,1.815,2.173,2.3979999999999997,1.2429999999999999,1.3780000000000001,1.871,2.239,2.512,1.3290000000000002,2.484,1.919,1.607,1.771,2.305,1.804,1.867,2.117,2.037,2.339,2.31,1.5539999999999998,1.7690000000000001,1.986 +NM_182728,1.803,2.3289999999999997,1.9409999999999998,2.1590000000000003,1.713,3.027,1.964,1.8860000000000001,1.839,1.962,2.303,1.805,1.7269999999999999,1.678,1.65,2.722,1.946,2.3819999999999997,2.442,1.8940000000000001,1.8699999999999999,1.827,1.679,2.0839999999999996,2.301,2.278,1.742,1.694,2.209,3.614,2.17,1.4140000000000001,2.1029999999999998,4.129,1.397,1.545,2.567,2.2039999999999997,2.249,1.4260000000000002,2.019,2.425,1.694,1.395,1.746,1.92,1.736,2.0869999999999997,1.7320000000000002,1.842,2.2089999999999996,1.522,2.006,1.6949999999999998 +NM_182734,0.836,0.989,1.13,1.142,1.068,0.954,1.036,0.915,0.994,1.148,1.128,0.992,0.919,1.028,1.11,0.958,0.882,1.295,0.986,0.862,0.833,1.197,1.027,0.881,0.983,0.804,1.198,0.961,1.337,0.89,1.03,0.897,0.93,1.057,1.112,0.958,1.062,0.74,0.996,1.03,1.04,0.966,1.216,1.078,0.993,1.181,1.017,0.94,1.034,1.097,0.872,1.0,0.999,0.935 +NM_182739,0.505,0.688,1.062,0.594,0.929,1.043,0.451,0.383,1.219,1.0,1.075,0.675,0.495,0.492,1.0,2.01,0.791,1.165,1.47,0.942,0.919,0.694,1.395,0.879,0.447,0.827,1.397,1.01,0.369,0.912,0.978,1.105,1.81,1.3,0.171,0.799,1.087,0.906,1.006,0.628,1.186,0.972,0.707,1.145,0.974,0.863,1.113,0.566,1.085,0.686,0.984,1.048,1.128,2.187 +NM_182740,1.004,0.936,1.067,0.958,0.994,1.071,0.926,0.949,1.038,1.062,0.948,1.0,0.9,0.95,1.117,1.032,0.992,1.255,1.067,1.0,0.996,1.114,1.032,0.981,1.028,0.903,0.952,1.046,1.327,1.034,1.093,0.973,1.116,1.0,1.027,0.78,1.042,1.13,0.957,0.929,1.036,1.059,0.943,1.019,0.903,1.055,1.075,1.046,1.039,1.159,1.019,1.058,1.02,1.025 +NM_182741,0.66,2.322,0.47,1.786,0.256,1.673,0.744,0.148,0.76,0.287,1.017,0.128,0.272,0.743,0.392,0.83,1.865,2.003,0.532,1.072,0.28,0.16,0.797,0.209,1.892,0.655,0.575,0.315,0.971,5.225,0.438,1.93,0.425,3.044,2.163,0.752,2.189,0.323,4.232,0.242,0.765,2.598,0.792,0.986,0.553,0.707,0.764,0.455,1.317,0.472,2.219,0.772,0.595,1.247 +NM_182743,0.324,1.06,0.434,1.003,0.295,1.735,1.408,0.343,0.351,0.305,1.005,0.359,0.437,0.358,0.679,1.263,0.792,0.967,0.32,1.014,0.358,0.302,1.101,0.358,0.816,0.38,0.607,0.439,0.646,1.957,0.706,1.486,0.955,1.807,0.581,1.918,1.402,0.379,4.042,1.341,0.583,1.022,1.03,1.287,0.403,1.11,0.764,0.263,1.404,0.389,1.255,0.93,0.421,2.706 +NM_182744,1.038,0.893,1.05,0.871,0.939,0.972,0.83,1.019,0.954,0.907,1.07,1.116,1.033,1.045,0.983,1.003,1.118,0.788,1.139,0.97,0.928,1.008,0.953,0.896,0.995,1.04,0.944,1.174,0.729,1.071,1.043,0.955,0.932,0.905,0.938,1.056,1.019,1.002,1.039,1.089,0.921,0.922,1.092,1.094,1.067,1.063,0.892,1.072,0.998,1.043,1.078,1.054,0.975,0.978 +NM_182746,0.797,0.929,1.417,0.791,1.042,0.83,0.585,0.475,1.373,1.325,0.743,0.953,0.742,0.929,0.875,1.266,0.874,0.989,1.426,0.785,0.797,0.661,1.615,1.238,0.611,0.97,2.231,0.916,0.436,0.871,0.896,0.979,3.93,0.978,0.41,2.242,0.971,0.787,1.736,0.672,1.307,0.964,0.714,1.786,1.17,1.44,1.163,0.846,1.805,1.105,1.197,1.15,1.198,2.625 +NM_182749,0.996,0.899,0.989,0.979,0.925,0.946,0.851,0.89,1.243,1.05,0.906,0.791,0.85,0.957,0.911,0.834,1.165,1.036,0.908,1.065,0.861,0.937,1.257,0.974,0.747,1.033,0.886,0.971,0.947,1.059,1.231,1.084,0.987,1.025,0.912,0.949,1.083,0.998,1.042,0.748,0.985,1.043,0.91,1.077,0.965,0.967,1.153,1.246,1.067,1.049,0.961,1.01,1.088,1.154 +NM_182752,0.664,1.271,1.21,0.71,1.028,1.303,0.46,0.515,1.014,0.953,1.236,0.6,0.521,0.741,0.938,1.783,0.826,1.14,1.474,1.136,0.625,1.085,1.102,0.881,0.666,1.189,0.935,1.013,0.524,1.297,0.943,0.827,1.328,1.468,0.467,0.833,1.397,1.174,1.465,0.671,0.856,1.157,0.633,1.014,1.057,1.237,1.058,1.171,0.935,0.952,1.222,0.506,0.924,0.967 +NM_182753,0.875,0.941,1.017,1.035,0.928,1.065,1.116,0.949,0.886,1.108,1.065,0.98,1.044,1.211,0.964,0.91,1.039,0.982,0.989,0.979,1.212,0.904,1.121,0.881,1.061,1.0,1.044,0.966,1.117,1.088,1.169,1.137,1.009,1.002,0.969,0.975,1.0,0.959,1.084,1.126,1.109,0.986,0.959,1.002,0.956,0.956,0.997,1.056,1.05,1.098,0.992,0.881,0.969,1.063 +NM_182754,0.938,1.011,1.046,1.039,0.972,0.991,1.163,0.983,1.019,1.02,0.879,1.09,0.996,0.892,1.07,0.963,1.001,0.995,0.942,0.99,0.966,0.948,0.948,0.945,1.041,0.959,0.935,1.125,1.081,1.054,1.123,1.049,1.164,1.021,0.921,1.039,0.917,1.253,1.078,0.961,0.958,0.938,1.213,0.82,0.842,1.021,0.984,0.926,1.094,1.01,1.075,0.927,0.887,1.239 +NM_182755,0.747,1.093,0.963,1.0,0.86,1.083,0.829,0.684,0.866,0.833,0.986,0.88,0.82,0.791,1.053,1.069,0.779,0.881,0.875,1.303,0.675,0.857,1.059,0.975,0.9,0.723,0.893,1.008,1.022,1.154,0.817,1.651,0.862,1.162,0.523,0.761,1.083,0.926,1.294,1.2,0.917,1.134,1.115,1.023,0.893,1.181,0.967,0.764,1.26,0.745,1.031,1.014,0.851,1.066 +NM_182756,1.175,1.027,0.973,0.969,1.105,1.083,0.971,0.951,1.07,0.89,1.071,0.968,0.986,0.945,0.965,0.961,0.98,1.083,0.981,1.082,0.99,1.132,0.895,1.037,0.968,1.063,1.029,1.097,1.182,0.997,0.989,0.957,0.823,0.921,0.917,0.967,0.956,1.054,1.06,1.162,1.117,0.918,1.077,1.03,1.001,1.005,0.979,0.98,0.897,0.932,0.939,1.002,1.02,1.014 +NM_182757,0.812,1.37,1.904,0.9,1.216,1.018,0.763,0.923,1.359,0.832,0.682,1.022,0.892,0.971,0.974,0.834,1.302,1.454,1.262,0.854,0.74,1.136,0.809,1.259,0.627,1.016,1.111,1.554,0.837,1.58,1.081,0.672,1.68,1.609,0.455,0.391,0.994,1.476,0.958,0.813,1.423,1.265,0.434,0.673,1.082,0.554,1.036,1.366,0.485,1.477,0.87,1.034,0.842,0.997 +NM_182759,0.947,0.994,0.961,1.05,1.097,0.895,0.869,1.069,0.984,0.815,1.107,0.996,1.043,1.038,1.069,1.075,1.011,1.027,1.0,1.028,1.094,0.967,0.992,1.236,1.064,0.938,1.036,1.0,1.386,1.074,0.942,1.027,0.977,1.065,0.884,0.874,1.067,0.911,0.993,0.848,1.033,0.983,0.954,0.915,1.095,1.067,0.869,1.045,0.989,0.849,1.101,1.065,0.974,1.025 +NM_182760,0.778,1.494,1.223,0.62,1.101,0.927,0.574,0.872,1.221,1.045,0.772,0.831,0.744,0.768,0.994,1.181,1.123,1.051,1.292,1.14,0.519,0.953,1.087,1.022,0.578,1.316,0.998,0.93,0.605,1.342,1.146,1.134,0.68,1.18,0.473,0.605,1.055,1.435,1.155,0.482,0.97,1.199,0.671,0.782,1.141,0.948,1.092,1.243,0.846,0.853,1.067,0.601,0.95,1.188 +NM_182761,1.049,1.039,1.0,1.106,0.963,1.069,1.131,0.864,1.001,1.156,0.792,0.961,0.973,0.979,1.039,1.065,0.941,1.039,0.96,0.977,1.107,1.026,1.057,0.995,0.993,0.99,1.065,1.048,0.993,1.026,0.947,1.098,0.981,1.037,1.286,1.014,1.0,0.905,1.112,1.143,0.923,1.1,0.949,0.918,1.018,0.923,0.984,0.887,1.097,1.009,1.048,0.951,1.185,0.842 +NM_182762,1.205,0.892,1.039,0.848,1.084,0.893,0.739,0.96,1.824,1.022,0.828,1.097,1.125,1.083,0.977,0.927,1.104,0.788,1.198,1.03,1.04,1.086,1.024,1.088,0.815,1.368,1.195,1.697,0.576,0.931,1.404,0.767,1.127,0.751,2.081,0.887,0.807,1.171,1.074,0.78,1.234,0.836,0.845,0.927,1.169,0.977,1.225,1.172,1.004,0.914,1.175,0.966,1.083,1.116 +NM_182763,0.625,0.711,1.813,0.571,1.094,1.047,0.681,0.868,1.462,0.9,0.548,0.757,0.8,0.515,1.176,1.539,1.22,1.091,1.226,1.072,0.48,2.051,1.023,1.113,0.355,0.641,1.572,0.926,0.497,0.776,1.601,1.643,1.294,0.983,1.221,0.478,0.714,1.398,1.605,1.222,1.054,1.059,0.753,0.753,1.015,0.697,0.906,1.174,0.866,1.008,0.909,0.628,0.763,1.714 +NM_182765,0.929,0.973,1.102,1.115,0.971,0.923,0.96,0.969,0.893,1.038,1.0,1.09,0.991,0.952,0.755,1.054,0.976,1.006,0.914,1.006,0.907,0.903,1.065,1.027,1.004,1.084,0.994,0.938,0.806,0.986,0.912,1.099,1.187,1.022,0.971,0.914,0.859,1.049,0.929,1.046,0.989,0.957,1.021,1.076,1.018,1.0,0.955,1.038,0.927,1.133,0.963,0.955,0.949,1.112 +NM_182766,0.756,1.383,0.799,1.346,0.801,3.255,1.352,0.933,0.721,0.785,3.704,0.71,0.75,0.838,1.53,4.427,0.86,1.868,0.766,2.508,0.771,0.841,1.54,0.639,1.52,0.692,0.736,0.794,2.343,2.68,0.775,0.8,0.752,3.031,0.813,1.349,3.056,0.698,3.241,0.729,0.876,2.083,1.576,0.704,0.823,2.665,0.819,0.761,1.802,0.724,2.763,0.706,0.647,1.383 +NM_182767,2.061,1.687,2.1,2.007,2.366,1.903,2.149,1.972,2.0060000000000002,2.0839999999999996,2.082,2.01,2.177,2.154,1.643,2.152,2.081,1.868,2.088,2.0,1.934,2.2350000000000003,1.794,1.976,2.068,1.956,1.924,2.007,2.401,2.24,2.177,1.906,1.8559999999999999,2.094,2.108,1.9489999999999998,1.979,2.08,1.836,2.004,2.1799999999999997,1.85,1.8900000000000001,1.938,1.85,1.714,2.154,2.144,1.9729999999999999,2.127,1.835,1.935,2.4859999999999998,1.963 +NM_182775,1.123,1.061,1.256,0.968,1.082,1.08,1.052,1.002,0.933,1.042,1.126,1.005,1.021,0.93,0.801,0.877,1.138,0.851,0.99,1.01,0.862,1.122,1.014,1.094,1.011,0.905,0.918,1.175,1.449,1.211,0.83,1.12,0.963,1.002,0.9,1.016,0.963,1.013,1.012,0.855,1.007,0.962,1.074,1.156,1.089,1.016,0.978,1.098,0.966,0.923,0.899,1.108,0.858,0.932 +NM_182776,1.119,1.01,1.102,1.152,0.991,0.994,1.152,0.881,0.851,0.98,1.009,1.033,0.986,1.101,0.96,1.016,0.97,0.96,1.144,0.898,1.04,0.968,1.126,1.111,0.973,0.825,1.02,1.123,0.998,1.035,0.905,1.018,1.005,0.99,0.972,0.984,1.056,0.914,1.03,1.028,0.892,1.003,1.229,0.915,1.002,0.909,1.074,1.002,1.078,1.026,1.017,0.962,1.024,1.005 +NM_182780,2.2439999999999998,1.842,1.999,1.93,1.905,2.229,1.8450000000000002,1.992,2.006,2.0789999999999997,1.9020000000000001,1.813,1.985,1.7080000000000002,2.253,2.172,2.0460000000000003,1.892,1.954,1.9849999999999999,2.004,2.068,1.988,2.2039999999999997,2.242,2.164,2.054,1.925,1.892,2.248,1.593,2.117,2.017,2.016,1.964,2.015,2.004,1.9889999999999999,2.82,2.016,1.788,1.9289999999999998,2.007,2.524,2.084,1.87,1.8,1.9529999999999998,1.9860000000000002,1.9340000000000002,2.0389999999999997,1.767,1.738,1.761 +NM_182790,2.288,1.826,2.893,2.282,2.713,1.725,1.729,2.338,3.233,2.136,1.5350000000000001,2.1479999999999997,2.283,2.0519999999999996,2.161,2.358,3.001,1.9140000000000001,2.271,1.786,1.6959999999999997,2.075,1.778,2.987,1.767,2.039,3.0909999999999997,2.565,1.694,1.876,3.8789999999999996,1.8599999999999999,2.378,1.8940000000000001,2.852,1.516,1.798,2.379,2.675,3.547,2.829,1.771,1.887,1.717,2.73,1.924,2.097,2.471,2.281,2.602,1.858,2.099,2.226,2.194 +NM_182791,0.985,1.061,1.043,0.965,0.979,0.993,0.997,1.093,1.074,0.893,1.004,0.984,0.949,1.122,1.009,0.846,0.977,1.145,1.064,1.033,0.951,0.871,0.803,1.081,1.013,0.954,0.963,0.926,1.151,1.03,1.235,1.018,0.951,1.007,1.007,1.024,0.981,1.039,1.031,0.973,0.991,0.967,1.106,1.088,0.952,0.975,0.968,1.005,0.987,1.052,0.922,1.027,0.968,1.029 +NM_182792,0.277,1.45,1.317,0.445,0.533,4.224,1.424,1.194,0.642,0.411,0.863,0.805,0.753,0.318,1.025,3.274,0.87,1.262,0.308,1.491,0.205,1.143,1.321,1.152,0.82,0.237,1.453,0.538,1.066,2.575,0.975,1.823,2.18,2.69,0.14,0.276,1.563,1.389,3.182,1.042,0.659,1.224,0.501,0.155,0.594,0.944,0.903,0.619,1.867,0.425,1.629,0.659,0.192,1.81 +NM_182795,0.913,0.819,0.958,0.884,0.914,1.089,0.879,1.022,0.955,0.889,1.106,0.995,0.921,1.047,1.197,1.047,0.952,1.002,0.909,1.019,0.928,0.807,1.2,0.997,0.98,0.992,1.02,0.972,0.786,1.251,0.943,1.099,1.203,1.115,0.807,1.112,1.088,0.947,1.131,1.044,0.859,1.002,1.175,0.971,1.034,1.164,0.833,0.962,1.001,0.991,0.913,0.691,0.951,1.821 +NM_182796,1.156,0.954,0.927,1.027,1.031,1.007,0.994,1.121,1.046,0.984,0.989,0.883,1.013,0.906,0.866,0.973,0.955,1.017,0.77,1.04,1.043,1.002,1.008,0.916,1.044,0.984,1.004,1.069,1.24,1.076,1.035,1.123,1.439,1.07,1.151,1.028,1.127,1.048,0.991,1.047,0.88,0.998,1.058,1.006,1.02,1.022,0.877,0.974,0.915,0.868,0.913,0.98,1.131,1.049 +NM_182797,0.494,1.856,0.46,1.091,0.438,2.465,0.997,0.504,0.525,0.523,2.88,0.576,0.587,0.447,0.818,1.322,0.563,1.177,0.413,1.823,0.618,0.433,4.116,0.456,1.478,0.406,0.443,0.607,0.786,3.357,0.439,0.712,3.802,2.619,0.474,1.444,1.622,0.555,1.933,0.915,0.907,3.677,1.369,2.236,0.479,1.59,0.7,0.547,1.029,0.55,2.45,0.798,0.572,0.784 +NM_182801,1.9929999999999999,2.042,1.8519999999999999,2.0919999999999996,1.769,2.067,2.2969999999999997,1.9409999999999998,1.875,2.096,1.935,1.8820000000000001,1.861,1.976,1.863,2.0309999999999997,1.975,2.215,2.121,2.144,1.867,2.223,2.11,2.081,1.994,1.988,1.7160000000000002,2.104,2.83,2.1310000000000002,2.0380000000000003,2.8659999999999997,2.15,2.064,1.936,2.147,2.23,1.88,2.6550000000000002,2.712,2.05,2.3890000000000002,1.9100000000000001,2.121,1.896,2.207,2.048,1.853,1.792,2.0140000000000002,1.991,2.761,1.854,1.936 +NM_182802,1.045,1.11,0.987,0.985,1.019,1.104,0.943,0.845,0.92,0.937,1.071,1.048,1.03,0.789,1.014,0.925,1.051,0.871,0.864,1.142,1.069,0.888,0.969,1.065,0.977,1.015,1.055,0.988,1.01,0.978,1.001,0.988,0.972,0.874,1.022,0.874,0.999,0.927,1.134,0.939,1.056,0.976,1.144,0.984,0.972,1.022,0.937,0.915,1.063,0.9,0.956,1.263,1.032,1.028 +NM_182810,1.096,1.056,0.895,0.998,0.868,1.162,0.501,0.565,1.067,0.872,1.113,0.564,0.55,0.965,1.002,0.82,0.961,0.921,0.876,0.629,0.676,0.608,0.769,1.439,1.347,0.785,1.008,0.761,0.422,1.115,0.791,1.222,1.048,1.267,0.923,0.866,1.03,0.936,1.427,0.793,1.179,1.085,1.128,1.302,0.764,1.136,0.881,0.774,0.747,0.763,0.862,0.676,0.88,2.067 +NM_182811,0.737,0.784,1.521,0.632,1.076,0.857,0.671,0.521,1.297,1.124,0.787,0.888,0.617,0.803,1.121,1.039,0.939,0.734,0.82,1.003,0.574,0.771,1.473,1.157,0.645,0.934,1.47,0.995,0.502,1.384,0.866,3.581,1.581,0.996,0.5,0.872,0.809,1.17,0.868,1.944,1.213,1.314,0.926,1.19,1.245,0.932,1.225,0.727,0.879,1.026,1.011,1.201,1.066,1.68 +NM_182812,0.923,0.957,0.909,0.847,0.869,0.974,1.022,1.058,0.981,0.966,1.017,1.113,1.021,1.008,1.364,0.98,1.041,1.067,0.953,0.897,0.917,1.015,1.047,1.013,1.135,1.0,1.136,1.129,0.928,0.956,0.96,1.164,1.011,1.012,1.055,0.906,0.977,1.025,0.987,1.052,0.899,0.954,1.245,0.859,1.031,1.141,0.916,1.031,0.972,1.009,1.032,0.928,0.966,0.903 +NM_182826,0.933,0.957,1.198,1.095,1.007,0.945,1.0,1.139,1.086,0.894,0.957,1.093,0.999,0.786,1.107,1.068,1.134,1.029,1.065,0.864,0.997,0.883,1.077,1.028,0.903,1.161,1.234,1.1,0.662,1.075,1.069,0.989,1.268,1.087,1.046,0.943,0.972,1.208,0.923,0.964,1.351,1.273,0.868,0.914,1.027,1.109,1.103,1.051,0.94,1.123,0.975,0.924,1.051,0.862 +NM_182828,0.973,0.968,0.985,0.991,1.192,1.26,1.001,0.789,1.064,1.135,0.917,0.902,0.998,1.218,1.056,0.921,1.077,1.001,1.012,1.021,1.113,1.039,1.103,0.822,0.951,1.013,0.916,0.971,0.985,0.863,0.985,0.993,1.15,0.991,0.988,1.195,1.197,0.979,1.019,0.835,1.084,1.052,0.948,0.896,0.959,1.074,0.903,0.982,1.103,0.966,0.996,0.943,1.115,1.026 +NM_182830,0.929,1.122,1.056,1.042,1.131,0.989,0.908,1.204,0.928,0.96,1.062,0.996,0.967,1.002,0.828,1.027,0.921,0.918,1.045,1.069,0.985,0.931,0.956,1.021,0.948,1.019,1.064,1.01,1.09,0.987,1.027,0.89,0.921,0.994,1.053,1.065,1.033,0.99,1.066,0.91,1.075,0.884,0.884,1.038,1.005,1.186,1.007,0.968,0.818,0.964,0.942,0.876,1.036,0.893 +NM_182832,1.398,1.197,0.772,0.974,1.247,1.014,0.879,1.318,0.866,0.9,1.163,1.015,1.26,0.857,1.689,0.968,0.987,0.898,1.059,0.689,1.35,1.058,0.783,0.946,0.962,1.128,1.004,0.809,1.059,0.97,1.22,0.816,1.028,0.963,2.003,1.081,0.775,2.023,0.947,0.893,1.152,1.015,1.754,0.886,0.999,0.83,0.8,1.142,1.124,0.956,0.787,0.902,1.071,1.122 +NM_182833,1.018,1.144,1.028,0.951,1.136,1.005,0.999,0.976,1.088,1.117,1.054,1.182,0.99,0.993,0.948,0.96,0.988,0.874,1.029,0.965,0.99,1.055,0.965,0.937,1.106,1.032,0.907,0.945,0.882,1.032,1.006,0.996,1.003,1.046,0.969,1.163,0.972,0.978,0.97,1.03,1.026,1.0,1.096,0.903,0.973,0.947,0.997,1.079,1.023,0.994,0.872,0.937,1.04,0.983 +NM_182835,0.798,0.839,1.248,0.926,0.906,1.331,0.654,0.582,1.422,0.854,1.546,0.712,0.683,0.762,1.126,1.505,0.825,0.895,1.253,0.896,0.508,1.157,0.988,1.11,0.725,0.93,1.012,0.95,0.439,1.306,1.023,0.898,1.149,1.458,0.406,0.728,1.245,0.857,1.034,0.498,1.14,1.076,0.729,1.503,1.028,1.468,0.97,0.756,1.037,0.744,1.118,0.654,1.015,1.242 +NM_182836,1.608,0.811,2.093,0.795,2.074,0.731,0.67,1.247,2.642,2.829,0.764,2.156,1.073,1.007,1.246,0.993,2.249,1.435,1.815,1.176,0.83,1.63,0.971,2.946,0.607,1.394,2.628,2.055,0.469,0.805,2.085,0.945,1.28,0.858,0.715,0.49,0.776,1.751,0.843,0.638,2.742,0.739,0.727,0.657,3.227,1.072,2.238,1.43,1.108,2.015,1.111,0.971,1.627,1.01 +NM_182838,1.926,2.031,1.948,1.919,1.953,1.9380000000000002,1.924,1.803,2.105,2.101,2.15,1.8290000000000002,2.029,2.006,2.045,1.8539999999999999,1.976,1.936,1.9129999999999998,2.199,1.928,1.8649999999999998,1.972,1.926,1.9449999999999998,2.0909999999999997,1.9460000000000002,2.0,1.926,2.117,2.1029999999999998,2.0839999999999996,1.995,1.787,2.243,1.905,2.0700000000000003,2.018,1.861,2.209,1.903,1.962,1.9829999999999999,2.05,1.988,2.0549999999999997,2.114,1.946,1.99,2.128,2.2960000000000003,2.0940000000000003,1.9340000000000002,2.033 +NM_182847,1.101,1.033,0.981,0.997,1.101,1.01,0.839,0.868,0.911,1.002,1.035,1.023,0.955,0.978,1.132,1.096,1.058,0.923,0.961,1.079,0.938,0.927,1.007,0.973,1.009,0.997,0.982,0.922,0.886,0.984,0.895,0.971,0.936,0.979,1.033,1.069,1.073,1.132,0.995,0.92,0.893,1.102,0.929,1.13,0.983,1.055,1.036,1.053,0.931,1.039,0.927,1.074,1.05,1.089 +NM_182848,1.088,0.91,0.924,0.895,0.976,0.868,0.994,1.067,0.882,0.875,0.872,0.998,0.972,0.962,0.905,1.007,1.062,1.017,0.961,1.054,1.013,0.918,0.963,0.999,1.01,0.975,1.171,1.036,1.287,1.044,1.011,0.981,0.913,1.11,0.9,1.076,1.004,1.03,0.975,1.142,1.03,0.938,0.98,0.992,0.913,0.845,1.019,0.983,0.954,0.984,1.054,0.859,1.001,0.99 +NM_182849,0.814,1.214,1.084,0.742,0.812,1.133,0.443,0.576,1.14,0.843,1.248,0.915,0.99,0.796,1.03,1.757,0.682,0.628,0.965,1.083,0.572,0.83,1.307,1.154,0.773,0.897,1.464,0.891,0.36,1.289,0.962,2.107,1.755,1.323,0.268,0.56,0.988,1.185,1.135,1.506,0.954,1.071,0.638,1.626,0.891,0.923,0.958,0.722,0.923,0.873,1.08,0.558,0.964,1.156 +NM_182852,1.063,1.059,1.215,1.031,0.976,0.957,1.022,0.88,1.098,1.091,0.909,0.953,0.774,1.081,1.098,1.052,1.004,1.115,0.925,0.925,1.013,0.982,1.204,0.902,1.011,1.072,1.016,1.045,0.861,1.021,0.954,0.953,0.909,1.037,1.113,1.024,0.87,0.995,1.203,1.23,0.97,1.046,0.974,0.826,0.97,1.18,1.047,1.066,0.985,1.038,0.929,1.056,0.86,1.072 +NM_182854,1.752,1.966,1.996,2.061,2.057,2.1710000000000003,1.9489999999999998,2.316,1.8820000000000001,1.869,2.005,2.439,1.765,2.207,2.011,2.0220000000000002,1.9249999999999998,1.905,2.1109999999999998,1.726,2.1020000000000003,1.7530000000000001,2.055,2.004,1.956,1.996,1.984,2.17,1.716,1.991,1.73,2.0549999999999997,2.123,1.877,1.903,2.237,2.034,2.283,1.82,1.94,2.184,1.8479999999999999,2.126,2.056,2.112,2.052,1.994,2.008,1.731,2.107,1.904,1.987,1.966,2.049 +NM_182894,1.096,1.053,0.954,0.96,0.883,0.943,0.867,1.151,0.885,0.988,0.994,1.084,0.935,1.063,1.145,0.922,0.992,0.966,1.187,0.902,0.959,0.719,0.876,0.98,0.979,1.015,1.048,1.084,0.997,0.979,1.069,1.175,0.872,0.987,0.923,1.006,1.112,1.069,0.906,1.12,1.029,1.001,0.993,1.071,0.999,0.993,0.934,1.025,0.947,0.981,0.982,1.041,1.089,0.953 +NM_182895,0.913,1.003,0.869,0.931,1.019,0.996,0.875,0.916,0.927,0.931,1.062,0.977,0.964,1.072,1.004,1.096,1.007,1.055,0.952,1.243,1.0,0.91,1.315,0.993,1.114,1.0,1.024,1.009,0.826,1.1,0.908,4.871,1.202,1.13,0.953,0.813,0.929,1.081,0.985,1.441,0.878,1.102,0.985,0.949,0.951,0.993,1.06,1.007,0.917,0.879,1.03,0.903,0.999,0.992 +NM_182900,0.995,0.974,0.999,1.007,0.886,1.004,0.914,0.817,0.96,0.97,1.162,1.026,0.908,0.85,1.132,1.066,1.001,1.081,1.124,1.173,1.06,1.062,1.048,1.02,0.954,0.989,1.073,1.111,0.725,0.942,0.91,1.03,1.179,0.975,0.911,0.972,0.923,0.968,0.978,0.977,0.869,0.856,0.945,1.108,0.948,1.027,1.013,0.929,1.056,0.917,0.982,1.047,1.011,1.208 +NM_182901,1.029,1.115,0.946,0.929,1.018,1.009,0.928,0.872,1.117,0.992,0.901,1.012,1.028,0.983,0.884,1.002,1.027,1.051,1.094,1.038,1.015,0.983,1.074,0.857,1.001,0.948,0.938,0.875,0.883,0.816,0.963,1.028,0.94,0.999,1.123,0.931,1.145,0.97,1.115,1.055,1.001,0.933,1.037,0.925,0.99,0.981,1.006,0.925,1.006,1.045,0.957,0.843,0.885,0.985 +NM_182903,1.8719999999999999,1.956,1.879,2.042,1.9409999999999998,1.87,1.8370000000000002,1.812,2.0380000000000003,2.162,2.1559999999999997,1.9300000000000002,2.0789999999999997,2.067,2.23,2.178,1.9849999999999999,2.208,2.0460000000000003,2.362,2.042,2.066,1.9409999999999998,2.0860000000000003,1.8860000000000001,1.957,1.9649999999999999,1.7610000000000001,2.386,1.966,1.945,1.878,1.978,2.056,2.217,1.992,1.888,1.996,1.954,1.9529999999999998,2.089,1.94,2.159,2.044,2.003,2.49,2.241,1.924,1.964,2.193,2.083,2.064,2.023,2.054 +NM_182904,1.075,0.968,0.825,1.098,1.012,0.928,1.009,0.97,1.042,1.0,1.001,1.019,0.998,1.113,0.922,0.961,0.974,1.054,0.981,0.947,0.907,1.12,1.038,1.077,1.011,0.981,0.997,0.955,0.851,1.014,0.858,1.147,1.02,1.149,0.862,0.966,0.973,0.988,0.969,1.025,0.96,0.976,1.025,0.912,1.168,1.036,1.113,0.996,0.899,1.018,0.915,0.9,1.111,0.858 +NM_182907,3.906,1.437,4.265,2.0149999999999997,4.5600000000000005,1.838,1.5979999999999999,5.482,4.547,3.519,1.609,2.974,3.2569999999999997,2.746,2.905,2.226,3.7969999999999997,2.84,5.428,1.5070000000000001,2.309,3.856,1.427,3.84,1.442,2.823,5.45,3.458,1.188,1.7189999999999999,5.380999999999999,2.668,2.481,1.7759999999999998,6.148000000000001,1.293,1.543,4.07,1.866,1.9620000000000002,3.4370000000000003,1.851,1.49,1.488,3.4259999999999997,1.502,2.818,3.921,1.807,2.896,1.968,1.823,4.795,2.0140000000000002 +NM_182908,1.062,0.981,0.997,1.045,1.18,0.866,1.171,0.912,1.001,1.103,1.181,0.923,0.793,0.892,0.939,0.986,1.032,0.922,0.856,0.998,1.027,0.975,1.054,1.037,1.289,0.884,0.781,0.961,1.177,0.973,0.951,0.892,1.295,3.053,1.237,1.315,0.977,0.969,1.849,1.002,0.878,0.959,0.961,1.113,0.94,0.901,1.172,0.963,1.072,0.951,1.156,1.084,0.772,0.94 +NM_182909,1.185,1.093,0.992,1.046,1.07,1.02,1.526,0.94,0.91,0.872,0.991,0.931,1.093,0.791,0.955,1.068,0.902,0.9,0.902,1.383,0.835,0.978,0.876,0.965,1.249,0.946,1.027,1.099,1.03,0.951,1.05,0.941,0.955,0.872,1.079,0.927,1.096,1.034,0.868,0.972,1.077,1.047,0.953,0.95,0.999,1.05,0.962,0.894,0.887,1.115,1.177,1.012,1.155,1.062 +NM_182910,1.012,0.944,0.95,0.913,0.919,0.965,1.017,1.026,1.04,1.043,0.977,1.069,1.019,0.835,0.974,1.025,1.001,1.085,1.127,0.932,0.979,1.012,1.064,1.101,1.009,0.879,1.172,0.921,0.715,0.991,0.999,1.047,0.907,1.088,1.002,0.927,1.045,1.06,0.954,1.014,1.015,0.938,0.983,1.039,0.904,1.042,0.888,1.151,1.057,0.919,1.057,0.953,1.026,0.996 +NM_182911,1.195,1.101,1.004,1.102,1.024,0.911,0.892,1.251,1.082,1.046,1.037,0.989,0.923,0.88,0.797,0.891,1.048,0.998,0.982,0.983,1.022,1.076,1.0,0.998,0.964,0.97,1.069,1.068,0.781,0.978,1.019,1.028,0.967,1.225,0.966,0.931,0.881,1.061,1.092,1.147,1.09,0.923,1.198,1.089,0.888,1.011,0.919,0.939,1.153,1.096,1.075,1.014,1.299,1.103 +NM_182913,2.2009999999999996,1.852,1.895,2.14,2.173,1.953,1.9729999999999999,1.608,2.182,1.787,2.081,2.168,2.117,2.769,1.584,1.8439999999999999,2.0359999999999996,1.6869999999999998,2.0460000000000003,1.815,1.827,2.122,2.0869999999999997,1.867,1.916,2.055,2.071,1.7189999999999999,2.192,1.85,1.996,2.034,2.2430000000000003,2.218,2.2,2.0229999999999997,2.113,2.307,2.176,1.77,2.183,1.8639999999999999,1.749,2.354,2.009,1.925,2.058,1.657,2.122,2.146,2.0460000000000003,1.748,1.712,2.091 +NM_182914,1.0,1.074,1.041,1.049,1.013,0.894,0.867,1.062,1.054,1.15,1.166,0.96,0.955,0.921,0.818,1.095,1.006,0.939,1.116,1.092,0.905,1.039,1.073,1.036,1.154,1.131,0.946,1.099,0.897,1.111,0.926,1.045,1.23,0.98,1.029,1.009,0.845,0.951,0.939,1.18,1.036,1.021,0.903,1.114,0.954,1.007,1.006,0.923,0.931,0.888,0.974,0.959,0.958,1.138 +NM_182915,1.051,0.954,1.036,0.947,0.953,1.156,0.987,1.058,0.954,0.892,0.935,1.007,0.861,1.049,1.014,1.112,0.944,0.886,0.951,0.925,1.122,0.968,1.005,1.028,0.981,1.036,1.074,1.117,0.818,1.013,0.945,1.039,0.927,1.184,0.72,1.01,1.078,0.995,0.955,1.061,0.916,1.054,0.946,0.881,1.048,0.949,0.909,1.012,0.995,0.913,1.076,0.889,1.012,0.891 +NM_182917,0.894,0.879,1.024,0.93,0.967,0.987,1.174,1.136,0.983,0.894,0.923,0.854,1.039,1.013,0.877,1.145,0.909,1.103,0.985,0.841,1.054,1.074,1.048,1.032,0.981,1.102,1.045,1.056,1.086,0.913,0.997,1.037,1.005,0.982,1.001,0.929,1.052,0.835,0.952,0.952,1.112,1.045,0.647,0.94,1.045,1.17,0.992,1.034,0.88,1.12,0.891,0.949,1.041,1.112 +NM_182918,0.89,1.185,0.901,1.094,1.241,0.923,1.251,0.854,0.946,1.063,1.025,0.951,0.96,0.792,1.292,1.111,0.972,0.936,1.109,1.297,0.934,1.005,1.016,1.055,1.068,1.03,0.987,1.025,0.998,1.002,1.073,1.0,0.889,0.893,1.255,0.935,0.903,0.984,0.915,0.974,1.138,0.916,1.107,0.926,1.048,0.964,0.994,1.218,0.985,0.924,1.019,1.182,1.043,1.182 +NM_182919,2.157,0.763,1.536,0.687,2.947,0.907,0.571,2.581,3.003,1.4,0.449,1.373,1.83,0.971,1.425,1.198,2.03,1.387,1.398,0.709,0.61,2.181,0.824,1.91,0.391,2.545,1.661,2.745,0.406,0.773,2.386,0.727,0.874,0.926,6.353,0.555,0.728,2.892,1.483,0.825,2.523,0.737,0.817,0.871,1.987,1.025,1.259,3.91,0.908,1.463,0.741,0.455,1.54,1.036 +NM_182920,0.869,1.0,0.777,0.902,0.837,1.01,1.007,0.888,0.873,0.849,0.99,0.788,0.877,0.852,0.932,1.035,0.996,0.902,0.834,1.06,0.88,0.862,1.158,0.802,0.931,0.889,0.852,0.914,1.085,1.067,0.857,1.669,0.991,1.071,0.922,1.08,1.004,0.957,1.494,2.156,0.929,1.084,1.11,1.133,0.942,1.169,0.931,0.921,1.072,0.817,1.358,2.091,0.981,1.216 +NM_182923,2.3129999999999997,1.8399999999999999,2.258,1.8639999999999999,2.2880000000000003,1.8249999999999997,1.8039999999999998,1.6400000000000001,2.589,2.706,1.7069999999999999,1.944,1.729,2.2030000000000003,2.0780000000000003,1.9859999999999998,2.564,2.128,2.568,1.713,1.916,2.479,1.7850000000000001,2.367,1.724,2.713,1.935,2.1310000000000002,1.6540000000000001,1.993,2.227,2.706,2.129,1.9979999999999998,1.9060000000000001,1.63,1.742,2.712,2.279,1.943,2.364,1.8980000000000001,1.8410000000000002,2.388,2.0709999999999997,1.752,1.897,2.346,1.802,2.141,1.636,1.8439999999999999,2.3529999999999998,1.841 +NM_182924,1.15,1.106,0.932,1.075,1.036,0.99,0.946,1.093,0.976,1.048,1.087,0.979,0.98,0.833,1.078,0.972,1.11,0.896,0.831,0.964,0.832,0.991,0.906,1.047,1.007,1.19,1.0,1.052,0.794,1.001,0.944,0.962,0.757,1.022,1.081,1.014,0.935,1.072,1.232,1.092,1.135,1.011,0.973,0.981,1.052,1.219,1.011,1.062,1.094,1.126,1.024,0.997,0.873,1.04 +NM_182925,1.097,1.051,0.956,0.992,1.054,0.895,0.994,0.969,0.927,0.997,0.91,1.182,1.078,1.053,1.284,0.969,0.854,1.011,0.988,0.922,0.915,1.041,0.999,0.831,1.058,0.92,1.0,0.869,1.355,1.003,1.099,1.004,1.062,0.822,1.0,0.915,1.095,0.939,0.996,1.07,1.054,0.944,0.974,1.128,0.9,0.981,1.053,1.031,1.041,1.003,0.941,0.882,1.038,1.094 +NM_182926,0.923,0.898,1.154,0.922,0.843,0.817,1.013,1.268,1.01,1.032,0.976,0.865,0.993,0.907,0.755,0.948,0.981,0.987,0.805,1.036,1.256,1.037,0.942,0.957,1.0,1.067,0.926,1.045,0.952,1.022,1.168,0.856,1.023,0.884,1.069,1.136,1.056,1.057,1.013,0.874,1.045,0.941,1.062,0.998,0.918,0.968,1.005,0.975,0.964,1.023,1.0,0.998,1.056,1.043 +NM_182931,0.993,1.002,1.036,0.985,0.915,1.049,0.892,1.175,1.202,1.028,1.081,0.958,0.846,0.889,1.109,1.048,1.002,1.047,0.966,1.045,0.992,0.966,1.056,0.972,0.984,0.952,0.989,0.929,0.906,1.052,1.143,1.013,1.073,0.946,0.978,0.882,1.089,0.887,1.084,0.867,1.038,1.096,0.983,0.851,1.112,0.892,0.77,1.024,1.043,0.996,1.011,0.969,1.052,1.033 +NM_182935,1.104,1.021,1.018,1.031,1.001,1.092,1.061,1.004,1.081,0.999,1.227,1.056,1.096,0.883,0.827,1.011,0.98,0.964,1.105,1.188,0.965,0.967,0.978,1.046,1.093,0.996,1.241,1.055,0.765,0.908,0.969,0.876,1.293,1.021,1.096,0.94,0.923,1.07,1.09,0.97,0.954,0.919,0.928,0.966,1.023,1.219,0.982,0.897,0.981,1.108,1.026,1.081,0.993,1.024 +NM_182936,1.047,0.932,0.981,0.888,0.952,1.1,0.955,0.885,1.186,0.928,0.866,0.906,0.89,1.026,1.151,1.133,0.991,0.927,1.007,0.93,1.025,0.941,1.031,0.99,1.009,0.96,0.867,0.935,1.232,1.176,1.002,0.842,1.158,1.071,1.003,1.051,0.972,0.991,1.04,1.085,1.113,1.002,0.859,1.069,1.004,1.127,0.89,1.0,0.981,0.978,0.948,1.124,1.144,0.891 +NM_182943,1.045,0.927,1.217,0.983,1.086,0.968,1.011,0.927,1.041,0.921,1.11,1.024,0.863,0.976,0.956,1.11,0.929,1.08,1.332,1.107,0.975,0.935,0.875,0.91,0.834,0.889,0.821,1.036,1.059,1.061,0.946,1.504,1.293,0.987,1.05,1.135,1.073,0.781,0.947,1.345,0.897,1.011,0.828,1.227,0.885,0.944,1.036,0.92,0.908,0.925,1.033,1.224,1.117,1.017 +NM_182944,1.021,0.862,1.041,0.879,1.077,0.949,1.125,0.933,1.081,0.795,0.97,1.097,0.891,0.94,1.058,1.03,1.074,0.938,1.097,0.875,1.017,0.909,0.93,1.015,1.01,1.067,1.162,0.995,0.67,0.963,1.084,1.015,0.898,1.002,0.971,0.92,1.04,0.99,0.978,0.986,0.919,1.053,0.993,0.746,1.126,0.887,1.098,0.832,0.845,1.013,0.952,0.9,1.098,1.143 +NM_182945,1.006,0.998,1.209,0.879,0.886,0.978,0.779,1.26,1.059,1.075,1.104,1.005,1.087,0.972,1.092,0.854,1.167,0.886,0.963,1.034,0.954,1.045,0.971,1.074,1.032,1.063,1.16,1.186,0.771,1.063,1.143,0.979,1.111,1.042,0.956,0.936,0.889,1.052,0.919,1.058,1.135,0.885,1.126,0.959,1.189,0.759,0.953,0.964,0.835,1.026,0.913,0.951,0.984,1.073 +NM_182947,0.957,0.95,1.145,1.103,1.087,1.034,0.982,1.317,0.937,0.99,0.967,0.961,0.961,0.991,0.852,1.017,0.966,0.914,1.053,1.051,0.931,1.181,0.908,0.963,0.98,1.098,0.818,1.043,0.95,1.064,0.912,0.981,1.005,1.004,0.931,0.924,0.911,1.147,1.046,1.138,0.987,0.94,0.981,0.999,1.003,0.972,1.196,1.052,0.998,1.037,0.908,1.075,1.187,1.0 +NM_182948,0.405,1.126,0.941,0.724,0.953,2.533,0.979,0.773,0.686,0.573,6.179,0.498,0.614,0.573,1.65,4.471,0.876,1.372,1.539,2.567,0.501,0.535,2.669,0.656,1.267,0.748,0.907,0.597,0.522,1.066,0.606,0.97,0.99,2.076,0.556,0.418,2.819,0.542,1.254,0.313,1.047,2.224,1.191,0.414,0.72,2.917,0.954,0.651,1.535,0.638,2.793,0.652,0.725,2.265 +NM_182961,1.046,1.021,1.069,0.936,1.064,1.15,0.953,0.832,0.91,0.998,0.807,0.837,1.054,0.81,0.865,1.243,1.026,1.022,0.92,1.1,1.066,0.989,1.024,1.087,1.073,0.812,0.919,1.012,1.223,1.098,1.087,0.976,1.083,0.922,1.204,1.219,1.063,1.112,1.06,0.928,0.878,0.973,1.026,0.924,1.001,0.942,0.955,1.05,1.184,0.871,0.977,1.078,0.923,1.063 +NM_182964,0.903,1.18,1.044,1.12,1.024,0.871,1.081,1.131,0.915,0.957,1.117,1.012,1.035,1.11,0.847,1.148,0.99,0.908,1.004,1.1,0.873,0.902,1.064,1.07,1.111,1.033,0.898,1.122,1.509,0.927,0.829,0.886,1.096,0.921,1.024,0.854,1.167,1.086,1.128,1.036,0.934,0.886,0.937,0.94,1.106,1.088,0.995,0.965,0.993,1.05,1.092,1.036,0.954,0.921 +NM_182965,1.186,0.922,1.028,1.005,0.966,0.991,1.003,0.962,0.956,1.041,0.943,0.988,0.921,1.072,1.024,0.99,1.066,0.945,1.052,1.02,1.017,1.087,0.958,1.112,0.951,0.987,1.023,0.862,0.955,1.0,0.956,1.008,0.919,0.975,0.93,1.0,0.901,1.0,0.964,0.954,1.112,0.966,0.863,0.944,1.107,0.891,1.024,1.147,0.997,1.008,0.964,0.907,1.036,0.984 +NM_182966,1.9489999999999998,2.1550000000000002,1.892,1.7879999999999998,1.8940000000000001,2.713,2.022,2.0789999999999997,1.854,1.6760000000000002,2.128,1.791,1.855,1.842,2.269,1.96,2.153,1.728,1.7069999999999999,2.127,1.845,1.88,1.9979999999999998,1.91,1.8639999999999999,1.928,1.842,1.9569999999999999,2.624,2.1109999999999998,1.6800000000000002,2.047,1.838,2.1470000000000002,1.903,1.8980000000000001,2.241,1.802,2.2800000000000002,2.229,2.036,2.209,2.263,1.935,1.9049999999999998,2.199,1.784,2.1529999999999996,2.0709999999999997,1.988,2.09,1.944,1.968,1.8599999999999999 +NM_182970,1.102,1.134,0.955,0.901,1.027,1.033,1.018,1.117,0.946,1.065,1.004,1.091,0.951,0.846,0.777,0.961,1.048,0.998,0.832,0.86,0.97,1.116,1.056,0.965,0.948,0.951,1.196,1.001,1.03,0.977,0.975,1.065,0.957,1.01,0.795,0.883,0.868,1.052,0.992,0.94,0.937,1.04,0.838,0.884,0.924,1.028,0.796,1.123,0.914,0.957,1.029,0.95,1.013,1.001 +NM_182971,0.998,1.021,0.988,1.033,0.9,0.881,0.996,1.287,1.0,1.0,1.006,0.996,1.049,1.138,0.949,0.987,1.026,1.141,1.145,1.08,1.145,0.964,0.9,0.966,1.046,1.012,1.087,0.992,1.046,0.946,1.089,0.87,1.232,0.824,1.189,0.961,0.953,1.056,0.954,0.953,1.076,0.936,1.112,1.241,1.048,0.943,1.009,1.168,1.003,0.935,0.91,1.144,1.042,1.04 +NM_182972,0.736,1.173,1.088,0.756,0.826,0.923,0.563,0.524,0.983,0.825,0.929,0.598,0.519,0.826,0.909,1.021,0.887,0.865,1.118,0.698,0.98,0.491,1.278,0.77,0.816,0.698,0.993,0.755,0.291,1.03,0.963,1.554,1.425,1.486,0.777,1.192,1.007,0.684,1.391,1.39,0.858,1.251,0.845,2.322,0.848,0.833,0.907,0.487,0.77,0.768,1.106,0.943,1.43,1.708 +NM_182973,1.051,1.035,1.091,0.971,0.969,1.212,0.876,0.92,0.975,0.847,1.026,1.235,1.145,1.102,0.762,1.033,1.146,0.989,1.069,1.047,1.049,1.063,0.881,1.268,1.001,0.907,0.976,1.107,0.795,1.218,0.914,1.082,1.004,0.864,0.998,0.945,1.013,0.935,1.085,0.964,1.053,1.01,1.213,1.079,1.018,1.026,0.959,0.952,0.945,1.061,0.983,0.905,1.086,0.976 +NM_182974,1.014,0.956,0.914,1.069,0.894,0.987,0.936,1.069,0.872,1.04,0.886,0.964,1.022,1.029,0.876,1.023,0.84,0.958,1.106,1.058,1.037,1.097,1.099,0.951,1.105,1.055,0.834,1.026,0.913,0.956,1.12,0.935,1.009,1.017,0.984,1.123,0.931,0.946,0.931,1.098,1.08,0.985,1.063,0.924,0.977,1.088,0.912,1.132,0.941,1.063,1.097,0.986,1.005,0.952 +NM_182975,1.883,1.9409999999999998,1.9779999999999998,2.0060000000000002,2.175,1.9949999999999999,1.992,2.083,2.224,2.2640000000000002,2.0839999999999996,1.961,1.876,2.096,2.24,2.105,1.9659999999999997,2.161,2.02,2.017,1.9209999999999998,2.043,2.1239999999999997,2.1189999999999998,1.955,1.891,2.322,1.9500000000000002,1.987,1.883,2.2960000000000003,2.039,2.0220000000000002,1.947,1.873,1.8159999999999998,2.054,2.041,2.298,1.865,2.171,1.908,2.0469999999999997,2.067,2.021,2.157,2.1260000000000003,1.915,2.1390000000000002,2.096,1.9709999999999999,1.839,2.2969999999999997,2.2590000000000003 +NM_182976,1.06,0.981,1.011,0.88,1.007,1.078,0.844,0.823,1.119,1.056,1.025,1.0,0.918,0.938,0.775,0.851,0.954,1.04,1.012,1.064,0.933,0.926,0.938,1.002,0.936,0.962,1.135,1.182,0.858,1.109,1.007,0.93,1.005,0.986,0.901,0.959,0.873,1.013,1.086,0.979,1.005,0.958,0.954,1.098,1.008,0.959,1.093,0.937,1.092,0.933,1.002,0.913,0.806,1.0 +NM_182977,0.652,1.05,0.959,0.89,0.717,1.06,0.791,0.536,1.132,0.919,1.176,0.535,0.62,0.857,0.853,1.541,0.716,0.83,0.915,1.254,0.575,0.664,1.433,0.693,1.341,0.723,1.067,0.838,0.883,1.127,0.681,1.468,2.943,1.688,0.576,1.265,1.124,0.653,1.124,0.868,0.771,1.131,1.114,1.411,0.906,1.387,0.962,0.568,1.337,0.719,1.331,0.867,0.911,1.247 +NM_182981,0.677,1.085,0.734,0.971,0.785,1.041,0.932,0.716,0.974,0.863,1.223,0.741,0.781,1.029,0.864,1.521,0.955,1.217,1.284,0.97,1.046,1.037,1.048,0.774,1.109,1.25,0.913,0.681,1.298,1.069,0.976,0.722,0.992,1.527,0.613,1.089,0.945,0.862,2.393,0.767,0.94,1.104,0.855,0.955,1.126,1.137,0.903,0.848,1.031,1.459,1.021,0.824,0.983,1.001 +NM_182983,1.022,0.892,0.988,0.929,1.052,0.996,1.06,0.88,1.036,1.031,0.949,1.018,1.15,0.968,0.993,0.839,1.019,0.978,1.03,1.013,1.124,1.004,1.073,0.888,1.067,1.033,1.005,1.115,1.28,0.925,0.91,1.033,1.059,0.919,1.1,0.985,1.022,0.964,0.9,0.887,0.977,0.944,0.913,1.06,0.963,1.271,0.935,0.998,1.127,0.883,0.97,1.086,1.142,1.108 +NM_182984,1.006,1.249,0.975,0.92,1.053,1.19,1.102,0.911,1.14,1.011,1.008,0.928,0.987,1.061,0.884,1.059,0.982,0.909,0.92,1.011,0.891,0.932,1.142,0.902,0.996,0.84,0.862,0.933,1.116,1.073,0.891,1.046,0.98,1.067,1.066,0.955,1.003,0.879,1.104,0.96,0.885,1.132,1.037,0.913,1.009,0.995,0.904,1.142,0.939,0.873,1.043,0.862,0.908,1.163 +NM_182985,1.074,1.009,1.045,0.958,0.922,0.87,0.762,0.983,0.998,0.925,1.122,1.036,1.038,1.067,0.997,1.066,1.093,0.859,0.918,0.964,0.917,1.053,0.971,1.137,1.073,0.948,1.053,0.984,1.162,1.109,0.925,1.152,1.048,1.028,0.898,1.079,1.008,1.08,0.922,0.952,0.886,0.914,0.95,1.13,1.043,1.207,1.08,1.027,0.953,0.965,1.038,0.904,1.082,1.057 +NM_183001,0.928,1.0,1.131,0.944,0.986,1.058,0.997,1.17,0.924,1.146,1.026,0.986,0.92,0.92,1.172,0.882,1.033,1.054,1.112,0.913,0.918,0.961,0.986,0.992,0.952,1.085,1.053,1.086,0.91,0.956,1.196,0.989,0.881,0.944,0.982,0.995,1.064,0.963,1.069,1.088,0.986,1.0,1.035,1.035,0.949,0.823,0.964,1.083,1.029,0.999,0.936,1.03,0.907,0.955 +NM_183004,0.925,0.856,1.018,0.984,0.998,1.021,1.031,1.13,0.92,1.002,0.956,1.08,0.975,0.971,1.038,1.022,1.002,1.006,0.961,0.921,1.081,1.081,1.035,0.895,1.052,1.136,1.025,0.975,1.032,0.89,0.953,1.017,0.901,1.088,0.973,0.961,0.916,1.082,0.909,1.018,0.922,1.043,0.972,1.006,1.003,1.04,0.981,1.028,0.931,1.021,1.134,0.95,0.927,0.987 +NM_183005,0.885,0.98,1.025,0.933,0.986,0.973,0.87,1.077,1.137,0.957,0.93,1.205,0.971,1.144,1.015,1.068,1.011,0.874,0.994,1.099,1.199,1.001,1.035,0.941,0.985,0.944,0.853,0.876,1.003,1.059,1.056,1.159,1.136,0.955,1.012,0.949,1.038,0.902,1.137,0.882,0.953,0.893,1.019,1.451,0.998,1.092,1.006,0.968,0.95,1.008,0.924,0.932,0.984,1.205 +NM_183006,2.098,1.7730000000000001,1.988,1.862,1.795,1.9500000000000002,1.6360000000000001,1.529,2.0100000000000002,1.763,2.035,1.718,1.667,1.605,2.073,2.347,1.729,1.95,2.355,2.077,1.8399999999999999,1.721,2.521,1.789,1.92,2.075,2.037,1.8769999999999998,1.555,2.023,1.874,3.329,3.34,2.144,2.03,2.137,1.7200000000000002,1.804,2.5220000000000002,2.5389999999999997,1.9140000000000001,2.168,1.831,2.582,1.694,1.847,2.164,1.8209999999999997,1.786,1.883,2.0629999999999997,1.8519999999999999,2.072,2.294 +NM_183009,1.77,1.952,1.8849999999999998,1.7839999999999998,2.3179999999999996,1.919,1.9749999999999999,1.7930000000000001,2.091,2.153,1.853,1.8599999999999999,1.9449999999999998,1.8399999999999999,2.068,2.208,1.68,1.7959999999999998,1.8639999999999999,1.7999999999999998,1.634,1.72,2.0060000000000002,1.744,1.732,1.726,1.98,1.7850000000000001,1.5499999999999998,2.198,1.874,2.093,2.442,1.887,1.7389999999999999,2.061,1.9729999999999999,1.8289999999999997,2.613,2.6470000000000002,1.692,2.2030000000000003,1.952,2.535,2.205,2.2430000000000003,1.859,1.9,2.1799999999999997,1.93,1.9609999999999999,1.942,1.9609999999999999,2.904 +NM_183040,0.884,0.927,0.956,1.01,1.053,1.097,0.91,1.038,0.893,0.977,1.026,1.098,0.878,0.845,1.005,1.06,0.89,0.934,0.988,0.918,0.874,1.019,0.884,1.005,0.99,1.001,0.974,1.051,0.841,1.076,0.97,0.973,1.071,0.982,1.118,0.932,1.07,0.986,0.98,1.131,0.91,0.899,1.041,0.985,1.005,0.958,0.96,0.925,0.936,0.91,1.148,0.909,0.926,1.058 +NM_183043,1.018,0.824,1.065,0.784,1.03,1.032,0.977,1.143,0.966,1.019,1.087,0.95,0.91,0.826,1.05,1.101,1.047,0.962,1.083,1.062,0.994,0.964,0.925,1.056,0.977,1.088,1.059,0.928,1.074,1.044,1.077,0.894,1.057,0.919,1.053,0.869,1.011,1.045,1.049,1.073,0.987,1.105,0.775,0.822,1.061,1.14,1.132,1.084,0.965,0.943,0.945,0.96,1.02,0.869 +NM_183044,1.062,1.041,0.81,1.05,1.087,1.028,0.95,1.184,1.005,0.935,1.127,0.95,1.099,0.993,1.001,0.853,1.074,1.089,0.928,1.094,0.981,0.996,1.158,0.888,0.945,0.856,0.862,1.113,1.25,0.948,1.069,1.06,0.923,1.185,1.048,1.107,1.064,0.988,1.039,1.063,0.969,0.976,0.989,0.938,0.899,1.052,1.058,1.07,1.04,0.937,0.941,1.03,0.999,1.072 +NM_183045,2.029,1.894,1.828,1.801,1.7389999999999999,2.215,2.084,2.132,1.8479999999999999,1.939,2.0549999999999997,2.043,1.92,1.571,2.085,1.9449999999999998,1.9629999999999999,1.994,2.184,2.037,2.107,2.094,2.174,2.0620000000000003,2.115,1.915,2.025,1.943,2.1799999999999997,1.991,2.006,1.955,1.6920000000000002,1.837,1.972,2.105,2.073,2.004,3.1049999999999995,2.078,1.968,2.161,1.88,1.8900000000000001,2.011,2.008,1.884,1.965,1.825,2.1189999999999998,2.0549999999999997,1.988,1.7309999999999999,1.951 +NM_183047,0.978,1.001,0.96,0.933,0.975,1.043,0.807,0.87,1.205,0.922,1.056,0.937,0.913,0.902,0.83,0.859,1.123,0.863,1.095,1.011,0.977,0.89,0.981,0.914,0.993,1.021,1.059,0.93,1.072,0.949,0.922,0.941,0.915,0.975,0.875,0.981,1.094,1.112,1.111,1.308,1.041,1.017,0.813,1.024,0.958,0.973,1.137,0.847,0.84,1.144,1.079,0.857,0.935,1.175 +NM_183048,0.687,1.063,1.382,0.745,0.781,1.052,0.669,0.517,1.307,0.674,0.832,0.615,0.519,0.772,0.96,0.96,0.999,1.018,1.003,1.194,0.655,0.733,1.317,0.867,0.733,0.666,1.262,0.863,0.541,1.593,1.026,1.077,1.375,1.338,0.598,0.789,0.902,0.854,1.045,2.31,1.053,1.258,0.553,0.94,0.92,0.97,1.195,0.637,0.941,0.895,1.215,0.741,0.832,2.604 +NM_183049,0.358,1.524,0.752,0.743,0.516,1.856,0.827,0.457,0.604,0.482,1.194,0.592,0.452,0.29,0.742,1.471,0.487,1.247,0.975,1.238,0.487,0.503,1.233,0.614,1.069,0.626,0.643,0.526,0.759,1.697,0.443,1.15,0.925,1.928,0.0888,1.214,1.386,0.652,1.734,0.877,0.735,1.223,0.657,0.366,0.547,1.058,0.846,0.609,0.996,0.504,1.03,1.072,0.676,1.327 +NM_183057,0.942,1.014,0.97,0.964,0.994,1.036,1.052,1.005,0.973,1.036,0.966,1.09,0.97,0.94,0.954,1.04,0.987,0.898,1.048,1.0,1.037,0.93,1.03,1.093,0.957,0.925,1.135,0.993,0.944,1.022,0.88,0.956,1.107,0.909,0.902,0.963,0.955,1.056,0.968,0.993,0.951,0.961,0.736,1.051,0.89,1.012,1.171,1.067,1.032,1.046,0.951,0.949,1.124,1.112 +NM_183058,0.99,1.179,0.942,1.104,1.042,1.014,0.835,0.922,1.064,1.169,1.08,1.048,0.948,1.148,0.854,0.912,1.009,0.969,1.03,0.935,0.961,0.956,1.221,0.932,1.002,0.871,0.973,0.932,0.967,1.04,0.998,0.94,1.108,0.938,1.087,0.955,1.073,0.964,1.094,1.086,0.975,1.05,1.251,0.946,0.919,1.05,0.966,0.99,0.952,1.149,0.97,1.007,1.071,1.124 +NM_183059,1.008,1.009,0.993,0.941,1.033,0.947,0.823,1.026,1.001,0.927,0.988,1.04,0.963,0.867,0.799,0.978,1.005,0.982,0.84,0.903,0.857,0.896,0.961,1.095,1.132,0.996,1.097,1.063,0.902,1.118,0.991,1.096,0.787,1.042,0.965,0.895,0.972,1.103,1.041,1.037,0.973,0.922,0.928,0.899,1.144,0.991,1.062,1.136,1.018,0.919,1.039,0.955,0.89,0.936 +NM_183062,1.104,1.077,0.867,1.071,1.126,0.896,1.239,1.004,1.007,0.93,1.144,1.008,0.977,1.124,0.868,1.076,0.978,0.997,0.949,1.001,1.039,0.994,0.91,0.999,0.921,0.932,0.919,1.097,1.074,0.947,1.043,1.008,1.139,1.086,1.107,1.036,0.947,0.872,0.903,0.963,0.971,1.004,1.007,0.916,0.928,1.011,1.022,1.05,1.032,1.068,0.974,0.97,1.12,0.92 +NM_183075,0.914,1.397,0.884,0.958,0.845,0.996,1.022,0.867,1.073,0.989,1.343,0.943,0.967,0.807,1.12,1.114,0.883,0.912,0.983,1.065,0.847,1.078,1.451,0.925,1.074,0.912,0.963,0.848,0.832,1.048,0.774,1.294,1.299,1.354,0.953,0.963,1.151,1.053,1.118,0.665,0.953,1.527,0.825,1.094,0.803,1.018,1.079,0.921,0.909,0.933,0.997,0.895,1.072,1.229 +NM_183078,1.087,1.141,1.011,1.012,0.928,1.071,0.855,0.89,0.844,0.997,1.469,0.928,0.984,0.942,0.798,0.94,1.188,1.14,0.954,0.954,1.142,0.984,0.845,0.936,1.111,1.179,0.967,1.004,1.14,0.952,0.918,1.124,1.289,0.853,1.195,0.922,1.104,0.98,1.097,0.917,0.984,1.069,0.87,0.957,1.003,1.051,0.945,0.981,0.893,1.184,1.126,1.044,0.714,0.911 +NM_183079,0.792,0.924,2.012,0.442,1.114,0.728,0.605,0.504,1.043,1.65,1.079,1.001,0.638,0.568,0.742,1.096,1.024,0.806,1.282,0.629,0.954,0.653,1.134,1.547,0.631,0.822,2.361,0.931,0.241,1.326,0.949,1.566,2.641,1.515,0.161,0.701,0.706,1.822,0.996,1.089,1.534,1.224,0.404,0.73,1.456,0.54,1.616,0.893,0.4,1.254,0.836,1.955,1.981,2.049 +NM_183227,1.84,2.102,1.987,1.8039999999999998,1.964,2.128,1.841,1.912,1.934,1.957,2.057,1.811,1.846,1.702,2.3529999999999998,2.093,2.008,2.0940000000000003,1.9619999999999997,2.186,1.891,1.771,2.257,1.974,2.17,1.822,1.958,1.996,2.09,2.279,1.862,3.488,2.537,2.604,1.855,1.9289999999999998,1.907,2.189,2.4,1.76,2.0919999999999996,2.287,1.877,2.412,2.059,1.925,1.8780000000000001,1.841,1.944,1.939,2.129,2.05,1.712,2.511 +NM_183231,1.012,0.968,0.971,0.79,0.941,1.021,0.889,0.89,1.082,0.971,0.906,0.923,0.941,0.958,1.043,0.973,0.919,0.853,0.965,0.931,0.909,0.846,0.86,0.911,0.94,0.967,1.078,1.097,0.708,1.05,0.899,1.058,0.91,1.093,1.115,0.991,0.933,0.929,1.016,0.952,1.001,1.076,1.018,1.016,1.046,0.966,0.982,0.973,0.996,1.032,0.976,0.872,1.065,1.092 +NM_183233,0.956,1.138,1.102,1.011,0.988,0.93,1.136,1.079,0.959,1.072,1.118,0.873,0.897,1.263,0.901,1.136,0.918,0.978,0.975,0.887,0.844,0.957,0.951,0.956,0.978,0.971,0.9,1.05,1.309,1.088,1.099,1.283,1.174,0.99,0.983,0.899,0.934,1.056,0.916,1.003,0.903,1.083,0.921,0.907,1.007,1.027,1.02,1.168,1.101,0.937,1.017,0.876,0.888,1.216 +NM_183235,1.023,1.15,1.013,1.223,1.075,1.014,0.799,0.93,0.89,1.088,1.137,0.92,0.926,1.095,0.799,1.011,0.974,1.027,0.818,1.028,0.934,1.051,0.963,0.967,1.135,0.982,0.805,0.961,2.119,1.191,0.872,0.938,1.034,1.19,1.073,0.921,1.026,0.86,1.06,0.959,1.133,0.995,1.141,1.092,1.069,0.99,0.982,0.96,1.055,0.971,1.113,0.971,1.078,0.991 +NM_183236,0.499,3.297,0.97,1.962,0.554,3.499,2.268,0.401,0.723,0.491,3.688,0.45,0.554,0.557,1.396,1.403,0.648,2.435,0.804,2.805,0.448,0.406,1.155,0.618,1.882,0.438,0.81,0.531,1.113,3.129,0.558,1.2,0.682,5.659,0.354,0.602,2.004,0.42,2.252,0.651,0.835,2.116,0.816,0.541,0.559,2.139,0.573,0.456,1.398,0.605,2.024,0.607,0.731,0.952 +NM_183239,0.592,1.685,0.989,0.752,0.816,1.173,0.858,0.534,1.159,0.754,1.478,1.177,0.699,0.744,0.819,1.285,0.618,1.203,0.82,1.112,0.489,0.639,1.271,0.97,0.628,0.833,0.793,0.827,0.493,1.669,0.755,1.135,1.404,1.718,0.402,1.856,1.157,0.969,1.577,0.267,0.997,1.33,0.804,2.287,0.928,1.511,1.162,0.749,1.045,0.479,0.845,0.843,0.852,1.11 +NM_183240,0.857,1.106,0.756,1.145,0.697,1.424,1.034,0.808,0.767,0.865,0.966,0.762,0.732,1.048,0.847,1.164,0.913,1.238,1.028,0.979,0.796,0.72,0.829,0.809,1.079,0.722,0.773,0.755,0.77,1.627,0.778,1.373,0.88,1.524,0.91,0.89,1.312,0.764,1.227,1.447,1.042,1.171,0.872,1.235,0.787,1.024,1.031,0.826,1.105,0.783,1.008,0.909,0.885,0.983 +NM_183241,0.74,1.001,0.827,0.885,0.563,1.284,0.634,0.632,0.972,0.823,0.934,1.033,0.882,0.455,1.015,1.262,0.701,0.746,1.409,0.869,0.696,0.65,1.162,1.065,0.892,0.905,0.845,0.626,0.541,1.083,0.777,1.515,2.118,1.596,0.27,3.585,0.776,0.709,1.947,0.991,0.961,1.071,0.666,1.854,0.945,0.75,0.724,0.768,0.713,0.909,1.057,0.999,1.036,2.275 +NM_183242,1.018,1.014,1.053,0.979,0.956,0.846,0.975,1.269,1.046,0.912,1.015,1.042,1.077,0.987,0.861,0.96,0.978,1.087,1.136,1.116,0.976,0.994,1.079,0.893,0.953,1.017,1.009,0.954,0.855,0.999,0.955,1.004,0.848,1.114,1.108,1.035,0.932,0.967,1.152,1.032,1.069,0.927,0.945,1.024,1.029,1.096,1.154,1.04,0.864,1.047,1.164,0.955,0.97,1.022 +NM_183243,0.435,1.165,1.061,1.425,0.679,1.82,1.251,0.294,0.744,1.256,0.691,0.856,0.424,0.404,0.562,0.613,0.72,0.956,1.049,0.688,0.327,0.406,1.462,1.002,1.331,0.732,1.148,0.555,1.364,5.313,0.573,1.192,1.258,2.446,0.177,1.772,1.267,0.646,2.484,1.026,0.703,1.265,0.461,1.413,1.045,0.997,0.725,0.47,0.531,0.788,1.048,0.873,0.905,1.506 +NM_183245,1.065,1.012,0.958,0.93,1.251,1.086,1.106,0.912,1.085,1.18,1.109,1.127,1.166,1.028,0.802,0.905,1.12,0.912,1.057,0.876,0.808,1.016,1.2,0.903,0.928,0.91,0.895,0.999,0.975,0.965,0.952,1.156,1.018,1.042,1.034,0.914,0.95,1.194,1.108,0.907,1.214,0.946,0.977,0.965,0.97,0.994,1.032,1.031,1.176,1.149,0.958,0.957,1.11,0.986 +NM_183246,0.871,1.009,1.019,0.804,0.973,1.093,0.831,0.985,1.146,0.882,0.928,1.049,0.849,0.932,1.029,0.969,0.984,0.873,0.979,1.081,0.886,0.797,1.02,1.089,1.096,1.033,1.026,0.999,1.269,1.067,1.031,0.945,1.345,0.998,0.948,1.866,0.996,0.882,0.996,1.209,1.086,0.976,0.858,1.143,0.931,0.979,1.366,0.823,0.957,0.918,0.897,1.177,0.783,2.946 +NM_183247,1.081,0.813,1.73,0.87,0.688,1.015,0.505,0.503,1.101,0.711,1.262,0.52,0.967,0.624,0.802,0.921,1.911,0.774,1.308,1.456,0.561,0.644,1.138,0.889,0.23,1.177,1.576,0.942,0.352,1.987,0.846,1.464,0.398,0.913,1.296,1.262,0.826,0.78,1.464,0.998,1.68,0.94,0.67,0.823,1.63,1.354,1.042,0.972,0.857,1.874,1.298,0.71,1.252,0.656 +NM_183323,0.532,0.995,1.202,0.628,0.708,1.333,0.448,0.743,1.205,0.699,1.269,0.739,0.644,0.787,1.005,2.047,0.608,0.702,1.871,0.765,0.8,0.978,0.922,1.067,0.515,0.738,1.192,0.804,0.379,1.006,1.016,1.319,5.03,1.479,0.33,1.167,1.11,0.972,1.076,1.023,1.074,0.931,0.546,1.162,0.729,0.919,0.782,0.725,0.697,0.687,0.838,1.083,1.049,2.456 +NM_183337,0.982,1.458,1.273,1.003,1.059,0.884,1.035,0.973,1.311,1.107,1.018,1.145,0.86,0.936,1.304,1.011,0.89,0.968,1.021,1.049,1.005,1.054,0.865,1.495,1.14,1.184,0.901,1.089,0.724,1.593,1.16,1.365,0.972,1.276,0.842,1.407,0.893,1.235,0.885,1.074,0.99,0.937,0.81,0.882,1.239,1.229,1.013,0.954,0.924,0.951,0.955,0.945,1.036,1.064 +NM_183352,0.509,1.179,1.0,0.772,0.808,2.12,0.866,0.469,0.951,0.961,1.078,0.953,0.593,0.287,1.066,2.871,0.798,1.355,0.91,1.642,0.51,0.953,1.823,1.249,0.691,0.639,1.114,0.747,0.589,2.029,0.807,1.187,1.536,1.624,0.243,0.656,1.365,0.889,2.424,0.653,1.081,1.736,0.91,0.905,0.941,1.524,1.582,0.826,1.952,0.914,1.711,0.855,0.685,1.39 +NM_183353,1.053,1.062,0.95,1.059,0.787,1.058,1.199,0.917,0.928,1.152,1.063,0.914,1.008,1.082,1.137,0.885,0.93,1.179,0.931,0.909,1.032,0.953,1.087,0.94,1.0,1.051,1.015,0.931,1.729,0.901,1.051,0.957,0.94,0.981,1.085,1.056,1.051,1.056,1.022,0.911,0.913,0.818,1.003,1.006,0.979,0.971,0.855,0.934,1.041,1.125,1.0,1.036,0.888,0.892 +NM_183357,1.114,0.945,0.978,0.941,1.119,0.904,1.153,0.891,0.891,0.953,1.123,0.962,1.014,1.019,0.802,1.143,0.905,0.992,0.901,1.1,1.072,0.958,1.037,0.909,1.058,0.999,0.94,0.945,1.437,1.001,0.93,1.03,0.99,1.064,1.037,1.011,0.95,0.877,0.914,0.941,1.072,1.035,1.349,0.879,1.093,1.008,1.021,0.969,1.029,1.092,0.897,1.037,0.951,0.96 +NM_183359,0.853,0.98,1.516,0.778,1.183,0.918,0.801,0.735,1.418,1.049,0.771,0.986,0.908,0.981,1.157,1.058,1.508,0.867,1.392,0.905,1.006,1.126,1.031,1.248,0.802,0.836,1.882,1.104,0.597,0.787,1.175,1.56,3.505,0.854,0.896,0.88,0.908,1.105,0.897,1.001,1.485,0.959,0.768,0.864,1.112,0.894,1.14,0.911,0.95,0.918,0.853,0.838,1.129,2.213 +NM_183373,0.609,1.498,1.055,0.812,0.887,1.8,1.113,0.864,0.947,0.549,0.97,0.768,0.515,0.621,0.735,0.605,0.877,0.783,0.599,1.722,0.384,0.699,0.95,0.594,0.615,0.785,0.639,1.04,0.74,2.105,0.898,2.407,0.896,1.509,1.125,0.55,1.177,1.433,1.277,1.62,0.81,1.641,1.389,1.093,0.647,1.342,0.806,0.643,0.64,0.514,1.044,0.933,0.677,1.902 +NM_183374,1.051,0.994,1.031,0.947,0.971,1.074,0.865,0.918,1.024,1.018,1.017,1.062,1.079,1.026,0.784,1.103,0.85,0.89,0.926,0.94,0.945,0.939,0.997,1.014,1.123,1.101,0.923,0.89,1.329,0.916,0.924,1.056,0.874,1.002,0.998,0.905,1.02,1.054,1.025,1.082,1.005,1.029,1.037,0.955,1.01,0.881,1.026,0.873,0.797,1.012,0.891,1.096,0.908,0.972 +NM_183375,1.033,1.105,0.879,1.051,1.028,0.99,0.851,1.08,0.941,0.959,1.028,1.012,0.945,0.991,1.047,0.882,0.989,1.129,1.03,1.073,1.024,1.0,1.112,1.028,0.889,0.923,1.103,0.977,1.051,0.941,1.026,1.001,0.823,0.986,0.972,1.047,0.974,1.037,0.989,0.949,1.038,1.059,0.989,0.932,0.969,1.003,1.073,0.955,1.123,0.888,1.08,1.06,1.064,0.991 +NM_183377,1.031,0.96,0.995,0.922,0.984,0.966,0.959,0.95,0.903,1.057,0.919,0.919,1.009,1.021,1.03,0.975,0.994,1.2,1.142,0.991,1.038,1.042,1.037,1.128,0.948,0.954,1.094,0.98,1.183,0.969,0.932,0.92,1.13,0.934,1.056,1.153,1.003,1.171,1.105,0.93,0.896,1.001,0.911,1.067,1.026,0.946,0.946,0.924,1.065,1.051,0.941,1.041,0.985,1.041 +NM_183379,0.913,1.288,0.869,1.121,1.052,0.988,0.98,1.0,0.998,0.945,1.084,0.977,1.061,1.004,1.067,1.158,1.083,1.135,0.877,1.062,1.094,1.067,1.08,0.97,1.164,0.961,1.054,1.096,0.989,0.968,0.943,0.9,1.072,0.805,0.984,1.005,0.946,1.014,1.009,0.983,1.108,0.906,0.82,1.002,1.102,0.974,0.97,0.988,1.139,1.033,1.056,0.874,1.211,1.079 +NM_183380,0.974,0.892,0.958,1.076,0.942,1.416,0.931,0.999,1.001,0.998,1.079,1.028,0.96,1.062,1.127,1.011,0.96,0.925,0.944,0.962,0.983,0.898,0.965,1.038,1.105,0.971,0.935,0.897,0.876,1.055,0.907,1.058,1.021,0.962,0.917,1.111,1.124,0.901,1.235,0.982,0.93,1.053,1.334,1.109,0.897,1.148,1.106,0.984,1.193,0.973,1.034,1.054,1.035,1.054 +NM_183384,0.637,1.501,1.099,0.733,0.737,1.184,0.615,0.576,0.957,0.658,1.295,0.621,0.764,0.584,0.827,1.744,0.606,1.069,1.048,1.057,0.447,0.724,1.055,0.759,0.817,0.585,1.158,0.78,0.508,1.547,0.757,1.699,1.956,1.419,0.28,0.738,1.318,0.847,1.287,0.893,0.784,1.306,0.543,1.004,0.693,1.17,0.654,0.603,0.683,0.662,0.933,1.062,0.665,1.366 +NM_183386,1.022,0.911,0.987,0.91,0.877,1.291,0.774,0.771,1.097,0.987,1.181,0.786,0.893,0.851,0.894,1.641,0.974,1.091,0.972,1.038,0.805,0.886,1.141,0.907,0.99,1.036,0.926,0.824,0.909,1.426,1.085,1.065,1.298,1.284,0.884,0.735,1.078,0.984,1.266,0.947,0.917,0.944,1.096,1.174,0.921,1.158,1.163,1.098,0.999,1.063,0.949,0.848,0.811,1.161 +NM_183387,0.976,0.907,0.971,1.03,1.009,1.004,1.026,0.906,1.015,0.952,1.026,1.108,1.048,0.972,0.845,0.997,0.961,1.029,0.985,1.025,0.932,1.018,1.075,0.949,0.949,0.926,0.979,1.054,0.803,1.051,0.982,0.9,0.973,1.048,0.963,1.154,0.965,1.01,0.869,1.044,0.927,1.025,1.064,1.132,0.915,0.94,1.0,1.003,0.966,0.957,1.008,1.105,0.946,0.954 +NM_183393,1.028,1.222,0.898,0.879,1.028,0.998,1.061,0.922,0.869,0.974,1.547,0.911,0.902,0.812,1.27,1.557,0.867,0.816,1.008,1.12,0.909,0.954,1.271,0.822,1.007,0.868,0.914,0.939,0.845,1.088,0.868,0.984,1.297,1.188,0.905,0.924,1.329,0.891,0.989,1.103,0.936,1.205,1.415,1.528,0.876,1.198,1.002,0.974,1.093,0.897,1.47,0.916,1.023,0.89 +NM_183394,1.042,0.954,1.0,0.98,1.058,1.036,0.854,1.195,0.88,0.983,0.937,0.976,1.034,1.074,0.994,1.0,0.916,0.891,1.0,0.872,1.0,0.867,1.05,0.865,1.069,0.947,0.965,1.134,0.885,0.934,0.957,0.728,1.124,1.004,1.165,1.095,1.029,0.884,1.023,0.955,1.136,1.027,0.954,0.971,1.032,0.976,1.016,1.058,1.021,0.894,0.975,1.006,0.952,0.974 +NM_183395,0.888,0.925,1.158,0.663,0.969,0.973,0.883,0.787,1.116,0.919,0.877,0.934,0.862,0.846,1.013,1.083,1.047,0.972,0.917,0.796,0.887,1.045,1.092,1.032,0.752,0.859,1.264,0.928,0.614,1.127,1.047,1.369,1.028,1.102,0.757,0.825,0.939,0.955,1.716,6.958,1.121,1.194,0.887,0.873,1.058,0.865,1.024,0.912,1.058,0.893,1.001,1.326,1.121,1.123 +NM_183399,0.76,1.316,1.086,0.684,0.739,1.496,0.837,0.562,0.879,0.64,1.336,0.742,0.649,0.591,1.08,1.972,0.729,0.881,0.999,1.081,0.468,0.743,1.289,0.926,1.052,0.621,1.229,0.722,0.727,1.513,0.808,1.096,2.278,2.02,0.355,0.575,1.354,0.779,1.609,0.854,0.955,1.328,0.557,0.754,0.872,1.329,0.974,0.674,0.989,0.694,1.335,0.761,0.646,1.231 +NM_183401,0.875,1.085,0.866,1.023,0.898,1.026,0.736,0.917,1.035,0.954,1.107,0.938,1.107,0.902,0.803,1.222,1.077,1.0,1.004,1.032,1.05,1.044,1.088,1.044,0.853,0.907,1.091,1.158,2.688,1.064,0.868,1.125,1.22,1.095,0.973,0.988,1.112,1.072,0.957,0.916,0.971,1.017,0.946,0.984,0.919,0.89,1.112,1.001,0.961,0.953,0.981,0.949,1.015,1.056 +NM_183404,2.186,1.9739999999999998,1.92,2.254,2.028,2.0620000000000003,1.7719999999999998,2.044,2.2,2.049,2.069,1.915,1.9689999999999999,1.987,2.05,1.9329999999999998,2.038,1.9499999999999997,1.862,1.765,1.9689999999999999,1.8969999999999998,2.175,2.166,2.117,2.1029999999999998,1.9660000000000002,1.948,2.159,2.049,2.048,2.067,2.16,1.917,1.775,2.1340000000000003,2.14,1.874,1.9169999999999998,1.8940000000000001,1.935,2.058,2.279,2.174,1.815,1.881,2.01,2.117,1.972,2.1390000000000002,2.029,2.1950000000000003,1.992,2.014 +NM_183414,0.806,0.993,1.217,0.969,1.041,1.125,0.955,0.95,0.957,0.901,0.973,1.065,0.995,0.92,0.956,0.956,0.947,1.11,1.19,1.047,1.051,1.002,0.883,0.937,0.918,1.058,0.888,0.982,1.045,0.966,1.018,1.056,0.973,0.98,0.969,1.058,0.929,1.004,0.955,0.968,0.935,0.972,1.047,0.928,1.001,1.067,1.133,1.089,1.063,1.035,1.024,1.055,0.978,0.993 +NM_183415,0.843,0.87,1.433,0.666,1.034,0.861,0.648,0.669,1.212,1.035,0.858,0.851,0.722,0.857,1.185,1.315,1.184,0.899,1.475,0.986,0.761,1.028,1.087,1.078,0.618,0.94,1.265,0.982,0.551,1.174,1.132,1.161,1.65,1.171,0.635,0.767,0.868,1.209,1.135,0.789,1.117,1.105,0.552,0.935,1.002,1.003,0.893,0.863,0.808,0.924,1.015,0.772,0.97,1.635 +NM_183419,0.951,0.866,0.98,0.94,0.946,1.183,0.917,0.924,1.321,1.106,0.77,0.934,0.891,0.797,0.873,1.018,0.907,0.883,0.785,1.305,0.903,0.995,1.11,1.074,0.888,0.832,1.205,1.089,0.832,0.986,0.864,1.553,1.338,1.005,0.961,1.614,0.843,0.97,1.267,1.072,0.952,0.955,1.219,1.147,0.822,1.241,0.979,0.849,1.149,0.863,0.993,1.053,1.056,1.639 +NM_183422,0.938,0.998,0.919,0.989,0.972,1.008,1.015,1.001,1.004,0.96,1.005,0.947,0.922,1.246,0.734,0.858,0.944,0.856,0.969,1.042,0.834,0.911,0.865,1.013,0.868,0.989,0.935,1.044,0.595,1.0,0.957,1.197,1.036,1.016,0.863,1.098,0.847,1.028,0.975,1.086,1.032,0.973,0.79,1.201,0.97,1.128,0.974,1.004,1.039,0.957,1.018,1.11,1.088,1.025 +NM_183425,0.47,1.655,1.58,0.514,0.663,1.5,0.727,0.319,0.797,0.899,0.89,0.694,0.505,0.354,0.696,0.944,1.079,0.732,0.634,1.057,0.491,0.442,1.624,0.673,0.527,0.479,1.238,0.777,0.424,1.41,0.614,1.313,1.964,1.096,0.244,1.267,0.794,0.85,1.506,1.603,1.052,1.199,2.661,2.085,0.839,0.952,1.359,0.526,0.913,0.979,1.069,1.443,1.384,2.57 +NM_184041,2.556,1.22,2.338,2.407,2.0709999999999997,1.826,0.849,1.406,2.956,2.028,2.084,1.492,1.62,1.658,1.844,3.3200000000000003,1.738,2.524,4.063,1.291,1.907,1.492,1.925,1.927,1.078,2.925,1.966,2.0629999999999997,0.514,1.7189999999999999,2.319,1.506,5.1899999999999995,2.105,3.802,1.483,1.9689999999999999,2.167,2.941,1.859,2.3979999999999997,1.543,0.87,3.349,1.907,1.3090000000000002,2.475,2.317,2.276,2.731,1.987,1.37,2.6479999999999997,2.7279999999999998 +NM_184042,1.231,1.054,0.962,0.976,1.005,0.981,0.937,1.142,1.435,0.801,0.952,1.045,1.083,0.919,0.934,1.197,0.986,1.013,1.034,0.987,1.045,0.996,0.976,0.979,1.08,0.854,1.103,0.926,1.09,0.954,1.005,0.903,1.191,0.88,1.041,0.889,1.042,1.004,0.969,1.134,0.819,1.021,0.88,0.943,0.858,1.029,1.166,0.93,1.105,1.109,1.108,0.883,1.023,0.919 +NM_184043,1.016,0.76,0.894,1.018,1.0,0.972,0.986,0.958,0.886,0.94,1.072,1.065,0.972,0.82,0.962,0.988,1.093,0.957,1.002,0.872,0.949,1.08,0.85,1.012,1.077,1.105,1.012,1.307,0.765,0.878,0.956,1.047,0.964,1.116,0.906,0.929,1.011,0.869,0.924,0.959,0.969,0.999,0.994,1.078,0.999,0.983,0.94,0.998,1.121,1.068,1.045,0.899,1.002,1.094 +NM_184087,1.095,0.931,1.014,1.167,0.991,1.153,1.065,0.945,1.005,1.064,1.023,0.983,0.893,1.147,1.044,1.01,0.918,0.974,0.975,1.002,1.134,1.001,1.003,0.866,0.945,1.042,1.03,1.087,0.989,0.922,1.001,0.857,1.078,1.166,1.219,0.955,0.83,0.947,1.023,0.939,0.851,1.102,1.205,1.052,0.892,0.938,1.01,1.072,0.96,1.018,0.878,0.976,1.112,0.934 +NM_184231,0.725,1.279,1.144,0.819,0.959,1.531,0.796,0.67,1.193,0.962,0.914,0.82,0.749,0.812,0.887,1.49,1.019,0.885,0.768,1.369,0.617,0.893,1.289,1.027,0.783,0.846,1.038,1.251,0.835,1.106,0.899,1.243,1.126,1.203,0.681,0.921,1.031,1.045,1.247,1.009,1.039,1.16,0.83,0.952,0.924,1.08,1.152,0.774,1.031,0.861,1.178,0.845,0.681,1.134 +NM_184237,0.956,1.07,0.999,0.896,1.079,1.011,0.857,1.054,1.047,1.053,1.033,1.113,1.081,0.853,0.852,1.061,1.092,0.987,1.162,0.961,0.902,0.933,1.092,0.901,0.882,0.969,0.933,0.925,0.863,1.172,1.049,1.128,0.928,1.014,1.008,1.009,0.944,1.015,0.922,1.004,1.024,1.069,0.975,1.017,0.951,0.946,0.894,1.08,0.936,1.055,0.972,1.128,0.95,1.136 +NM_187841,0.891,1.126,0.831,0.907,0.923,1.703,0.806,0.797,0.875,0.957,1.712,0.998,0.975,0.822,0.914,1.986,0.886,0.875,0.991,2.003,1.025,0.775,1.885,0.747,0.931,0.76,0.914,0.925,1.097,0.974,0.979,0.954,0.992,1.135,1.0,1.284,1.411,1.015,1.705,1.018,0.873,1.402,1.317,2.287,0.962,1.522,1.276,0.914,1.957,0.791,1.733,0.896,0.926,1.095 +NM_194072,1.079,1.017,0.973,0.934,0.921,1.047,0.872,1.018,1.037,0.917,0.886,1.082,0.934,0.997,0.894,0.967,0.923,0.951,1.347,0.899,0.977,1.054,1.036,1.058,0.94,0.961,1.082,1.036,0.578,0.959,0.943,1.131,0.801,1.035,0.966,1.011,0.985,0.904,1.008,1.092,1.102,1.2,0.82,1.105,1.021,1.142,0.981,1.026,0.966,1.118,0.936,0.925,0.944,0.955 +NM_194247,0.643,0.936,1.256,0.772,1.076,0.744,0.505,0.315,1.487,1.308,0.769,0.584,0.385,0.694,0.906,1.376,0.784,0.894,1.457,0.836,0.627,0.535,1.686,1.008,0.427,0.912,1.201,1.172,0.203,1.01,1.007,1.282,2.035,1.079,0.36,1.052,0.809,0.797,1.287,0.946,1.369,1.065,0.694,1.793,1.185,0.963,0.804,0.595,1.192,0.818,1.19,0.872,1.39,2.208 +NM_194248,0.963,0.902,1.051,1.035,0.954,0.887,0.964,0.98,0.958,1.008,1.135,1.034,1.029,1.059,1.031,1.03,1.102,1.0,0.942,0.997,1.061,1.116,0.967,1.019,0.912,0.983,1.087,1.179,0.807,0.981,0.959,0.98,1.081,1.019,0.998,1.048,0.958,0.925,1.055,1.012,0.899,0.904,0.882,0.981,1.007,1.156,0.941,1.073,1.126,1.03,0.982,1.216,1.142,0.945 +NM_194249,1.102,0.908,1.066,1.0,1.095,1.081,0.951,1.136,0.813,1.149,1.149,1.035,1.002,1.04,1.02,1.047,0.949,1.067,0.919,0.913,0.944,1.01,1.371,0.92,1.081,0.843,1.103,0.909,1.149,1.144,1.233,1.179,0.996,0.964,0.864,0.976,1.024,0.868,0.863,0.927,0.812,1.037,1.049,1.053,1.008,1.008,0.912,0.9,1.0,1.128,0.891,0.809,1.006,0.969 +NM_194250,1.19,1.195,0.925,0.968,0.931,1.038,0.97,1.071,1.011,0.955,1.041,0.96,1.093,1.064,0.918,0.875,0.956,1.097,1.147,0.958,1.079,1.053,1.087,0.918,1.162,0.948,1.112,1.038,1.034,1.075,1.098,1.063,1.159,0.961,1.042,0.979,0.95,0.949,1.06,0.959,0.888,0.92,0.909,1.239,1.113,0.885,1.067,1.098,1.129,0.967,1.085,0.907,0.983,0.975 +NM_194251,0.995,0.988,1.085,0.941,1.003,0.901,1.055,0.871,1.069,1.083,1.069,1.035,0.966,1.09,1.816,1.25,0.977,0.874,1.133,1.063,0.927,1.083,0.846,0.911,1.02,0.988,1.07,1.038,1.03,1.085,1.03,1.028,0.977,1.161,1.03,0.968,1.117,1.028,1.17,1.0,1.034,1.032,1.243,1.125,1.018,0.979,0.879,0.984,0.859,1.037,0.958,0.867,0.921,0.95 +NM_194252,0.927,1.053,0.92,1.132,0.965,1.064,0.951,0.905,0.964,0.938,0.933,0.928,0.966,1.022,1.057,1.117,0.89,0.852,1.141,1.045,0.925,0.984,0.921,1.011,0.97,1.088,1.122,1.109,0.83,1.151,0.961,1.149,1.01,0.961,1.591,0.997,1.022,1.207,0.974,0.989,0.958,0.924,0.914,0.982,1.064,1.0,1.012,1.028,1.05,0.976,0.98,0.959,1.0,1.204 +NM_194255,0.776,0.872,0.772,0.945,0.808,0.87,0.752,0.796,0.857,0.844,1.005,0.864,0.835,0.911,1.033,1.291,0.812,0.807,1.054,1.034,0.737,0.868,1.256,0.901,1.124,0.907,1.044,0.995,0.945,1.129,0.728,1.03,1.735,1.043,0.841,0.983,1.439,0.825,1.42,1.458,0.954,1.458,1.167,1.246,0.932,0.999,1.044,0.922,1.142,0.848,1.089,0.974,0.918,1.155 +NM_194259,1.019,0.934,0.958,1.054,1.033,1.008,0.95,1.22,1.144,1.092,0.948,1.073,1.084,0.909,0.854,1.056,0.952,0.988,0.982,1.186,0.978,0.917,0.955,1.02,0.964,1.145,1.018,1.069,0.837,1.072,1.05,0.931,0.918,0.869,0.918,1.046,1.086,1.125,1.064,1.0,0.935,0.956,0.945,0.913,0.955,1.06,1.006,0.887,1.091,1.01,0.961,1.088,0.937,0.996 +NM_194260,1.999,1.641,2.263,1.5739999999999998,2.055,1.923,1.616,1.526,2.271,2.1430000000000002,1.584,2.284,1.7850000000000001,1.77,1.5939999999999999,2.299,2.183,2.0140000000000002,2.072,2.0620000000000003,1.4340000000000002,1.682,2.1390000000000002,2.4930000000000003,1.371,2.021,2.198,1.977,1.366,1.778,1.876,2.454,3.2190000000000003,2.004,1.26,1.9,1.741,1.793,2.613,2.2329999999999997,2.455,1.796,1.8649999999999998,2.754,2.2889999999999997,1.968,2.601,1.721,1.98,1.804,1.932,1.8279999999999998,1.982,2.2510000000000003 +NM_194261,0.957,1.1,1.023,1.093,0.957,1.063,1.046,0.934,0.986,1.005,1.068,1.047,0.972,1.094,0.835,1.091,1.143,1.207,0.961,0.997,1.117,1.023,1.022,0.933,1.069,1.084,0.85,1.136,0.874,0.932,1.023,0.946,1.14,0.908,0.84,0.926,1.065,1.019,0.961,0.775,0.926,0.882,0.899,1.087,1.006,0.875,0.905,1.047,1.05,1.053,0.966,1.104,1.003,0.846 +NM_194270,1.123,0.977,0.964,1.064,0.913,0.951,1.194,0.835,1.074,0.766,0.955,0.951,1.056,0.902,1.022,1.097,0.956,0.897,0.895,1.113,1.022,1.003,1.088,1.014,0.968,1.0,1.015,0.949,0.903,0.956,0.934,1.027,1.287,1.221,0.995,1.154,0.956,0.902,0.954,0.961,1.044,0.941,1.191,1.027,1.1,1.089,0.975,0.94,0.967,1.079,0.904,0.919,0.952,1.008 +NM_194271,1.092,1.057,0.855,1.098,1.047,0.972,0.999,0.949,1.003,1.145,1.106,1.015,1.084,0.944,1.007,1.059,1.079,0.948,0.955,1.167,0.846,0.921,0.9,1.053,1.155,1.024,1.117,1.03,0.762,1.095,1.038,0.979,0.802,1.039,1.149,1.181,1.124,1.001,1.06,0.987,1.131,1.056,1.089,1.116,0.982,0.963,0.985,1.087,0.958,1.077,0.924,0.969,1.033,0.994 +NM_194272,0.753,2.036,0.807,0.827,0.783,0.994,1.554,0.928,0.791,0.805,1.227,0.795,0.647,0.953,0.926,0.992,0.712,0.862,0.781,0.968,0.958,0.807,1.257,0.689,3.152,0.759,0.636,2.136,0.744,1.365,0.805,2.33,1.046,2.085,0.794,0.868,1.049,1.08,1.688,1.103,3.111,2.366,0.908,0.739,0.668,0.977,1.228,0.823,0.694,0.711,1.109,1.233,0.776,1.908 +NM_194276,0.908,0.849,1.0,1.093,0.711,2.252,0.896,0.73,1.269,0.808,2.178,0.666,1.105,0.841,1.475,1.431,0.895,1.059,1.41,1.24,0.628,0.728,1.523,1.101,0.904,1.235,0.746,0.717,0.748,1.935,1.047,0.683,0.938,2.39,0.505,0.714,1.618,0.781,1.502,0.786,1.043,1.542,0.961,0.941,1.043,0.981,0.71,0.93,0.873,0.951,0.993,0.638,0.848,1.216 +NM_194277,1.139,1.068,1.004,1.174,0.842,1.017,0.868,1.017,1.366,0.993,1.061,1.0,1.014,1.211,0.837,1.178,0.946,0.895,1.327,0.801,1.032,0.963,0.966,1.071,0.987,0.987,0.874,1.316,0.917,0.962,1.011,0.922,0.93,0.949,0.902,1.035,1.075,1.13,1.012,0.872,0.985,1.048,1.106,1.143,0.904,1.136,0.973,1.078,1.063,1.035,0.983,0.964,0.898,1.152 +NM_194278,0.73,0.854,1.339,0.651,0.883,1.374,0.726,0.525,1.096,0.816,0.967,0.608,0.541,0.815,1.134,1.211,0.839,1.023,1.166,0.97,0.661,0.834,1.201,0.715,0.614,0.803,1.08,0.796,0.692,1.458,0.992,1.025,1.257,1.333,0.42,0.961,0.895,0.972,1.257,0.994,0.935,1.226,0.662,1.117,0.765,0.819,0.934,0.711,1.005,0.945,0.996,0.656,1.092,1.289 +NM_194279,0.519,1.203,0.938,0.738,0.713,1.609,0.77,0.533,0.928,0.596,1.479,0.907,0.582,0.615,0.849,1.809,0.693,0.948,1.006,1.353,0.43,0.657,1.331,0.931,0.754,0.637,1.227,0.777,0.579,1.372,0.764,1.118,1.174,1.8,0.282,0.932,1.56,0.59,1.067,0.893,0.942,1.193,0.712,1.823,0.681,1.302,1.154,0.613,0.935,0.525,1.195,0.636,0.749,1.543 +NM_194280,0.737,1.295,0.862,0.848,0.733,1.34,0.744,0.515,0.816,0.761,1.206,0.777,0.82,0.58,0.764,1.409,0.797,0.983,1.196,1.292,0.817,0.936,0.892,0.79,1.229,1.097,0.708,0.718,0.614,1.255,0.803,1.234,2.009,2.065,0.51,0.945,0.917,0.947,1.791,0.934,0.813,1.399,0.64,1.345,0.801,0.747,0.898,1.092,0.765,0.824,0.781,0.617,0.96,1.166 +NM_194284,0.252,0.975,0.205,1.61,0.26,3.915,1.914,0.338,0.244,0.302,2.565,0.188,0.244,0.314,1.783,2.201,0.256,1.513,0.15,1.811,0.213,0.353,2.215,0.254,0.943,0.286,0.489,0.277,1.093,1.462,0.36,1.786,0.904,3.734,0.163,0.471,2.511,0.32,5.81,0.45,0.367,4.481,2.785,0.613,0.3,3.968,1.348,0.479,2.131,0.208,4.431,0.687,0.387,7.122 +NM_194286,1.041,1.048,0.981,1.002,0.954,1.003,0.98,0.947,0.972,0.944,0.98,1.041,0.79,1.009,1.242,0.894,0.953,0.929,0.9,0.943,1.041,0.868,0.809,1.105,1.006,1.045,1.101,1.24,1.201,1.068,1.056,1.069,0.925,0.983,0.896,0.956,1.037,0.883,0.977,0.994,0.825,0.927,0.922,0.828,1.098,0.832,0.912,0.93,1.088,1.058,1.061,0.924,0.973,1.091 +NM_194287,0.959,1.0,0.999,1.068,1.021,1.055,0.961,0.902,0.89,0.959,1.155,0.983,1.001,1.058,0.956,0.966,0.958,1.099,1.088,1.164,1.157,0.95,0.962,1.009,1.023,1.018,0.981,0.98,0.835,1.065,0.954,0.899,0.991,1.155,1.079,1.027,1.083,1.055,0.913,1.057,1.131,0.991,1.007,0.898,0.978,1.024,0.957,1.091,1.068,1.088,0.988,1.051,0.997,1.066 +NM_194288,1.056,1.043,0.931,0.963,0.815,1.027,0.721,0.916,1.011,0.79,1.08,0.914,1.076,0.797,1.01,0.929,0.884,0.892,1.012,1.288,1.16,1.056,0.847,0.953,1.007,0.78,0.96,0.847,1.226,1.018,1.002,1.035,1.078,1.122,0.915,0.921,0.862,0.917,1.286,1.099,1.084,0.932,1.249,1.329,0.983,0.999,1.108,0.982,1.052,1.019,0.89,0.879,1.053,1.248 +NM_194290,1.021,0.989,1.002,1.032,0.942,1.067,0.991,0.843,1.043,0.942,0.948,0.938,1.034,0.879,0.871,0.847,1.033,0.995,1.003,1.036,0.975,1.073,0.856,0.955,0.987,0.879,1.08,1.049,0.865,1.019,0.97,1.159,1.025,1.092,1.061,1.074,1.025,0.925,0.975,1.142,1.016,1.194,0.811,0.948,0.911,1.052,1.048,0.957,0.911,1.221,1.108,1.086,1.185,1.033 +NM_194291,1.004,0.528,1.695,0.626,1.431,0.603,0.458,1.084,1.493,1.22,0.836,1.542,1.063,1.03,1.06,1.069,1.101,0.971,1.551,0.811,0.629,1.189,0.774,1.344,0.528,1.023,1.358,1.438,0.589,0.618,1.231,1.16,1.131,0.688,0.433,0.959,0.973,1.406,0.732,1.94,1.332,0.773,0.555,1.115,1.265,0.887,1.142,1.221,0.574,1.401,0.828,0.793,1.084,0.795 +NM_194292,0.958,1.07,1.109,0.959,0.904,1.208,0.847,0.928,1.175,1.05,0.905,1.0,1.046,0.909,0.903,1.12,0.868,0.824,0.993,1.096,0.878,1.081,1.145,1.185,0.946,0.926,1.217,0.906,0.765,1.182,1.133,0.929,1.924,1.036,0.881,0.913,1.119,1.064,1.336,0.948,0.953,0.973,0.757,1.102,1.014,1.0,0.971,0.951,1.076,1.153,0.96,1.032,0.911,1.621 +NM_194293,0.969,1.095,0.867,1.073,1.054,1.003,1.015,1.042,1.08,0.921,0.843,0.976,1.007,1.087,0.897,1.04,1.111,0.9,0.863,1.089,1.026,1.013,0.821,1.006,0.929,1.094,0.916,0.938,0.961,0.983,1.009,1.063,0.964,0.97,1.062,1.03,0.927,1.092,1.159,1.098,1.13,0.99,0.99,1.062,1.105,1.05,1.095,0.995,0.91,1.094,0.907,1.077,0.998,0.87 +NM_194294,1.044,0.876,1.022,0.802,0.918,1.139,0.921,0.978,0.977,0.893,0.849,0.996,0.938,0.824,1.129,1.048,1.019,0.928,1.155,0.857,1.006,0.859,1.034,1.039,1.084,0.845,1.243,1.092,1.412,1.077,0.928,1.127,1.001,1.02,0.865,0.992,0.887,1.002,0.968,0.957,1.004,0.993,1.278,0.886,1.073,0.999,0.999,0.974,0.95,0.976,1.158,0.961,1.083,1.084 +NM_194298,1.119,0.845,0.861,0.496,0.971,1.345,0.515,0.966,1.952,1.288,1.949,1.451,0.972,0.831,2.575,1.188,0.903,1.064,1.178,1.912,0.471,1.238,0.607,1.207,0.525,0.873,1.105,1.324,0.375,0.494,1.293,0.382,0.747,1.745,0.362,0.437,2.23,1.038,0.652,0.303,0.992,1.371,0.442,0.432,1.124,1.211,1.18,1.013,0.885,0.892,1.542,0.491,1.206,0.95 +NM_194299,0.945,0.957,1.021,1.119,0.99,0.944,1.033,1.095,0.979,1.09,1.106,1.112,0.889,1.09,1.22,1.175,0.989,1.084,0.986,0.994,0.956,0.967,1.029,0.941,1.084,1.032,1.024,0.869,1.23,0.948,1.117,0.966,1.089,1.062,0.998,0.964,0.921,0.956,0.808,0.919,0.994,1.03,0.934,1.013,0.928,1.11,1.088,1.022,1.129,0.895,0.977,0.853,1.126,1.171 +NM_194302,0.987,0.962,1.101,1.049,1.053,1.017,0.927,1.175,1.02,1.011,1.008,0.911,0.945,0.878,1.125,1.167,0.945,0.952,1.054,0.992,1.0,0.982,0.944,0.911,0.959,0.878,0.83,1.032,1.145,1.039,1.036,1.097,0.968,0.933,0.859,1.049,1.038,1.097,1.029,0.972,0.943,1.026,1.029,0.884,0.912,1.036,1.032,1.049,1.155,0.92,1.119,1.088,0.901,1.033 +NM_194305,1.036,1.027,1.045,0.999,0.988,1.14,1.123,0.997,0.989,1.078,1.087,0.985,0.991,1.129,0.966,1.066,1.115,1.001,0.92,0.961,1.086,0.97,0.922,0.989,1.054,0.978,0.956,1.009,1.199,1.263,0.966,0.917,0.911,0.977,1.072,1.002,0.927,1.002,1.01,0.923,1.11,1.047,1.039,1.121,0.994,1.017,1.114,1.052,1.157,0.965,0.992,1.043,1.197,0.91 +NM_194309,0.842,1.076,1.01,0.946,1.03,1.207,0.997,1.216,1.287,1.013,1.145,1.043,1.082,1.109,0.836,1.018,0.997,1.001,0.985,0.968,0.927,0.999,1.034,0.879,1.046,1.077,1.029,0.941,0.989,1.072,0.906,1.003,0.962,0.993,1.217,1.001,0.892,0.896,0.923,1.009,0.986,0.92,1.127,1.114,1.084,0.944,0.858,1.055,1.067,1.089,0.966,1.073,1.143,0.968 +NM_194312,0.869,1.251,0.993,1.018,0.844,1.098,0.885,0.935,0.878,1.05,1.152,1.022,0.824,0.941,1.044,1.029,0.904,0.893,0.913,0.946,0.926,0.964,1.099,0.966,1.086,0.985,0.958,0.879,0.881,1.211,1.021,0.972,0.958,1.315,0.986,0.939,0.936,0.907,1.489,1.056,0.939,0.987,0.964,1.049,1.091,1.155,1.128,1.067,1.089,0.916,0.924,1.552,0.91,1.937 +NM_194313,1.003,0.951,0.973,1.035,0.923,0.93,0.95,1.064,0.945,0.94,0.995,0.93,0.992,0.879,0.908,1.035,0.979,1.154,1.129,1.131,1.074,1.019,0.897,1.091,1.044,0.972,0.966,0.975,0.852,1.034,0.983,0.981,1.329,1.076,0.903,1.033,1.031,0.925,1.131,0.986,1.119,1.019,0.96,1.316,0.985,1.114,0.975,0.866,0.955,1.158,0.982,0.947,0.827,1.472 +NM_194314,0.942,0.93,1.007,1.112,1.105,1.044,1.156,1.038,1.018,0.856,1.14,1.026,1.119,0.984,1.281,1.009,0.955,1.059,1.103,1.068,1.002,1.01,1.015,1.19,1.049,0.862,0.998,1.032,0.699,0.938,0.903,0.898,1.063,0.908,1.055,1.099,1.039,1.026,1.023,0.951,0.941,1.068,1.005,0.961,0.944,0.973,0.982,0.921,1.03,1.164,0.947,1.006,1.006,0.845 +NM_194316,1.017,1.018,0.924,0.912,1.017,1.012,0.84,0.988,0.925,1.102,0.886,0.987,1.0,1.078,0.681,0.985,1.106,0.976,0.959,1.064,0.902,0.842,0.954,0.987,1.0,0.967,0.993,1.068,1.383,0.929,1.082,1.05,1.131,1.08,1.252,0.952,0.936,1.059,1.048,0.986,0.958,0.993,1.129,1.069,1.045,0.795,1.124,1.109,1.051,1.195,0.995,0.985,0.9,0.924 +NM_194317,1.015,1.127,0.889,0.897,0.674,1.174,1.034,0.93,0.965,0.901,0.994,0.997,1.008,1.061,0.966,1.05,0.912,1.005,0.865,1.096,0.933,0.836,1.014,0.89,0.966,1.017,0.865,1.001,0.79,1.041,0.795,1.044,1.252,1.215,0.924,0.949,0.997,0.829,1.124,0.909,0.882,1.005,0.92,1.064,0.948,1.223,1.021,0.835,0.919,0.886,1.018,0.944,0.996,1.219 +NM_194318,0.963,0.927,1.323,0.728,0.851,1.031,0.783,0.912,1.021,0.982,0.84,0.982,0.895,1.161,0.951,0.816,1.009,0.965,1.015,1.02,0.79,0.923,0.983,1.117,0.703,0.868,1.403,0.906,0.569,1.002,0.934,2.075,1.395,1.068,0.716,1.002,0.854,0.919,1.053,1.289,0.993,1.019,0.942,0.741,1.022,0.987,1.179,0.833,0.836,0.939,0.974,0.942,0.953,1.437 +NM_194320,1.102,1.017,0.996,1.008,1.022,0.997,0.936,1.114,0.992,0.921,1.016,1.063,0.889,1.023,1.287,1.026,1.086,1.005,0.848,1.057,1.057,0.954,1.07,1.008,1.047,0.922,0.871,1.007,0.987,0.911,0.946,1.125,0.93,0.99,0.995,0.982,0.902,1.077,1.092,0.99,0.951,1.056,0.938,1.043,0.885,0.923,1.008,0.893,1.005,0.926,1.049,0.945,0.875,1.002 +NM_194322,1.02,1.051,0.927,1.06,0.931,0.973,0.834,1.127,0.925,1.008,1.098,1.048,1.0,1.034,0.844,1.022,0.963,0.993,1.138,1.119,1.055,0.998,0.956,0.965,1.053,1.035,1.212,1.095,0.762,0.991,0.914,0.979,0.876,1.011,1.048,0.95,1.077,1.034,1.005,0.999,1.05,1.115,0.96,1.0,1.062,0.976,1.004,1.003,0.954,0.954,1.014,0.954,1.18,1.021 +NM_194323,1.065,1.051,1.068,1.045,0.89,0.969,0.949,0.993,1.112,1.088,0.975,0.939,0.964,1.132,1.01,1.1,1.001,0.902,1.033,0.877,1.004,0.896,1.015,0.93,1.03,1.061,0.897,1.008,1.932,0.915,0.848,0.929,1.156,1.084,0.962,1.108,1.004,0.867,0.952,1.081,1.035,0.974,1.48,0.801,0.973,0.97,1.08,1.024,0.688,0.975,0.908,0.885,0.865,1.038 +NM_194324,0.997,0.958,0.994,0.94,0.995,1.025,0.889,0.95,1.014,0.923,1.006,0.89,0.932,1.034,1.027,0.926,1.032,1.046,0.91,1.124,1.061,1.033,1.101,0.93,1.004,1.023,0.982,0.891,0.887,0.974,0.973,1.649,1.134,0.985,0.961,0.922,0.952,1.007,0.977,0.865,1.005,1.022,1.164,1.076,1.064,0.911,0.947,0.943,0.853,1.007,1.037,0.887,1.059,1.175 +NM_194325,0.92,1.191,1.044,1.062,1.002,1.152,0.887,0.807,1.171,0.94,1.016,0.95,0.94,0.933,1.094,1.219,0.92,1.102,1.046,1.102,0.887,1.129,1.235,0.934,0.971,1.0,0.911,1.0,1.009,0.984,0.988,1.215,1.583,1.117,1.015,1.031,1.111,1.142,1.047,0.959,0.971,0.93,1.02,0.936,0.95,0.981,0.913,0.898,0.961,0.84,0.877,0.885,0.913,1.223 +NM_194326,0.764,0.457,0.845,1.098,0.714,1.374,0.632,0.582,0.814,0.836,1.389,1.071,0.903,0.585,0.652,1.248,0.705,1.2,1.126,1.1,0.719,0.865,1.15,1.008,0.418,1.236,0.884,0.804,0.586,1.238,0.743,1.112,1.058,1.244,0.37,1.387,0.961,0.823,1.676,1.004,0.825,1.184,0.586,1.408,0.83,1.042,0.927,1.067,0.886,0.765,0.958,0.875,0.761,2.209 +NM_194327,0.928,0.898,1.017,0.894,1.038,1.081,1.02,0.958,1.259,0.843,0.885,0.845,0.911,1.118,1.131,0.985,1.154,0.799,0.997,0.99,0.972,0.97,0.963,0.919,0.859,0.861,0.896,1.013,1.055,1.043,0.932,0.983,0.99,0.868,1.307,1.049,0.956,0.95,0.867,0.971,0.967,0.948,0.973,1.113,0.965,1.002,0.829,0.937,0.913,1.035,1.059,1.071,0.961,1.013 +NM_194331,1.163,0.819,1.533,0.799,1.008,0.749,0.731,0.832,1.124,0.887,0.832,0.802,0.943,0.89,1.164,1.062,0.963,0.955,1.186,1.057,0.619,1.258,1.12,1.098,0.891,1.125,1.166,1.279,0.451,1.047,1.043,1.188,1.209,1.022,1.185,0.67,0.953,1.222,1.059,0.887,1.093,1.285,0.611,1.053,1.234,0.783,0.584,1.402,0.753,1.319,0.966,1.085,0.881,1.947 +NM_194352,0.968,1.038,0.963,1.048,1.119,0.89,1.195,0.872,1.023,0.946,1.146,0.98,0.987,0.964,1.169,0.984,1.02,0.891,0.987,1.03,1.106,0.967,0.948,0.991,1.071,0.919,0.909,1.013,0.924,1.064,1.07,1.04,0.831,1.068,1.14,1.149,0.948,0.974,1.123,1.063,1.025,0.98,0.904,1.175,1.015,1.032,1.026,1.032,1.048,0.935,0.972,0.948,0.908,1.102 +NM_194356,1.184,0.962,1.172,1.101,0.997,0.926,0.982,1.076,1.072,0.999,0.885,1.004,1.092,1.014,0.962,1.03,1.115,0.905,1.101,0.994,0.987,0.932,1.042,0.901,1.073,1.02,0.842,0.938,0.769,1.036,1.007,0.97,0.944,1.159,1.073,0.895,1.196,1.076,1.137,1.061,0.878,0.993,0.953,0.861,0.957,0.913,1.078,1.043,0.945,0.898,1.006,1.036,1.043,0.883 +NM_194358,1.0,0.914,0.918,0.974,1.128,1.026,0.986,1.039,0.992,0.909,1.063,1.106,0.992,0.941,1.047,0.91,0.966,1.103,1.086,0.949,0.958,0.917,0.973,0.98,1.084,0.966,1.167,1.129,0.622,1.011,0.877,0.993,0.897,0.969,0.948,1.03,1.008,1.02,1.032,1.116,0.973,1.042,0.864,0.874,1.005,0.959,1.093,1.092,1.009,0.864,0.966,0.9,1.03,0.95 +NM_194359,0.788,1.176,0.699,0.868,0.801,1.209,0.781,0.657,0.77,0.758,1.342,0.879,0.713,0.693,0.978,1.109,0.746,0.861,0.874,0.994,0.737,0.768,1.161,0.822,1.017,0.948,0.816,0.761,0.754,1.138,0.799,1.38,1.286,1.338,0.696,0.977,1.152,0.89,1.531,1.453,0.858,1.261,0.954,1.594,0.766,1.072,0.939,0.788,1.159,0.842,1.006,0.96,0.881,1.11 +NM_194428,0.918,1.302,1.055,0.916,1.037,1.031,1.056,1.071,0.995,1.025,1.156,0.976,0.975,0.975,0.83,0.931,1.046,0.913,1.007,0.867,1.07,0.923,1.088,1.086,1.091,0.929,0.917,0.957,1.672,0.968,1.075,0.967,0.996,1.006,1.066,1.028,0.872,1.047,0.914,0.894,0.957,0.973,0.963,1.003,0.889,1.054,0.964,1.049,0.932,0.905,0.955,0.909,1.147,1.096 +NM_194429,0.841,0.959,1.161,0.803,0.879,1.689,1.069,0.956,0.905,0.946,0.925,1.169,0.906,0.976,1.163,2.008,1.177,0.988,0.992,1.122,0.693,0.852,1.08,1.394,0.908,0.811,1.078,0.81,0.986,1.183,1.062,1.104,2.415,1.096,0.8,0.687,1.216,1.076,1.459,1.136,0.864,1.072,0.961,0.893,1.005,1.138,1.372,0.877,1.241,0.93,1.263,0.917,0.842,1.316 +NM_194431,1.07,0.971,0.984,0.89,0.984,0.957,0.941,1.061,1.03,0.988,0.86,0.977,1.064,1.148,0.926,0.886,1.158,0.918,1.002,1.152,0.944,1.023,1.006,0.947,1.115,1.007,1.078,1.128,0.94,0.859,0.973,0.914,0.974,0.974,1.019,1.079,1.016,0.991,1.001,1.058,0.919,0.978,0.832,1.089,1.044,1.008,0.994,1.034,1.131,0.965,0.967,1.003,0.911,0.926 +NM_194434,0.949,0.978,1.11,0.915,0.972,1.184,0.912,1.062,0.872,1.045,0.899,1.085,1.014,1.073,0.828,1.445,0.934,0.835,0.769,0.99,1.168,1.009,1.158,0.99,0.932,1.104,0.953,0.929,0.998,1.045,1.088,1.158,1.153,0.876,1.083,0.84,1.064,1.194,0.988,0.983,0.959,1.118,0.972,0.93,0.929,1.098,0.983,1.0,1.0,1.037,1.021,1.045,1.057,1.176 +NM_194435,1.019,0.953,1.042,0.963,1.015,1.041,0.816,1.19,0.969,0.97,1.017,1.073,0.915,1.074,0.975,1.15,1.007,0.984,0.922,0.906,1.015,1.007,1.194,0.992,0.98,0.938,0.944,0.908,0.912,0.982,0.867,1.01,0.881,0.998,1.184,1.071,1.014,0.97,0.902,0.941,0.967,1.037,1.487,0.973,1.001,0.994,1.001,1.038,0.991,1.001,0.867,1.021,0.885,1.044 +NM_194436,0.662,1.209,1.082,1.145,0.82,2.427,0.959,0.746,0.86,0.758,1.502,0.81,0.726,0.717,1.599,2.86,0.774,1.487,1.068,1.284,0.808,0.943,1.035,1.072,1.263,0.972,0.618,0.748,1.209,1.539,0.812,0.798,0.786,1.661,0.901,0.815,1.396,0.648,1.72,0.642,0.651,1.336,1.229,0.728,1.072,1.626,1.053,0.948,1.649,0.839,1.423,0.768,0.838,0.821 +NM_194441,0.881,1.178,1.113,0.945,1.057,1.032,1.239,0.997,0.911,1.046,0.875,1.013,1.069,0.967,0.894,0.957,1.174,1.002,1.029,0.9,0.925,1.035,0.999,0.958,0.961,1.121,0.844,1.011,1.045,0.936,0.973,0.967,1.143,1.009,0.991,0.894,0.92,1.217,0.932,0.935,1.031,1.046,0.954,0.91,1.031,1.026,1.087,1.115,1.169,1.035,0.94,0.815,1.005,0.962 +NM_194442,1.698,1.572,2.3609999999999998,1.646,1.786,1.916,1.6349999999999998,1.567,2.078,1.677,2.0220000000000002,1.8330000000000002,1.589,1.7999999999999998,2.076,3.445,1.7429999999999999,1.673,2.299,1.783,1.4329999999999998,1.692,3.242,1.8599999999999999,1.525,1.758,2.11,1.8679999999999999,1.034,1.931,1.8530000000000002,2.085,4.525,2.072,1.1796,2.813,2.604,1.564,2.258,3.287,1.9459999999999997,2.041,1.7469999999999999,2.154,1.6920000000000002,2.148,2.1239999999999997,1.6480000000000001,2.8760000000000003,1.8199999999999998,2.5380000000000003,1.724,1.79,3.957 +NM_194449,0.912,0.813,1.292,0.727,1.083,1.004,0.926,0.705,0.958,0.826,1.091,0.787,0.744,1.028,1.088,1.293,1.127,0.996,1.09,1.164,0.76,0.918,1.136,0.967,0.77,0.861,1.086,1.075,0.814,1.533,0.944,0.756,1.077,1.158,0.993,0.638,1.172,1.06,0.963,0.679,1.006,1.092,0.945,1.141,0.991,1.092,1.067,1.037,1.013,0.975,1.026,0.719,1.018,0.771 +NM_194451,0.996,0.889,1.19,0.758,0.955,1.1,0.731,0.851,1.118,1.051,1.046,1.078,0.991,0.809,1.052,1.105,0.956,0.974,1.005,1.085,0.891,1.091,1.105,1.07,0.818,0.853,0.997,1.149,0.694,1.02,1.071,0.93,0.94,1.174,0.773,0.906,0.817,1.238,1.181,0.848,1.032,1.022,0.79,0.963,1.072,0.914,0.979,0.981,1.054,0.826,1.049,0.883,0.936,1.13 +NM_194452,0.549,1.395,0.927,0.603,0.778,1.255,0.997,0.49,0.854,0.859,1.127,0.59,0.564,0.625,0.94,1.975,0.658,0.853,0.877,1.087,0.535,0.767,1.463,0.881,0.742,0.587,0.855,0.725,0.716,2.016,0.855,2.498,1.682,1.856,0.378,1.251,1.401,0.796,1.34,0.97,1.008,1.553,0.864,0.972,0.778,1.155,1.157,0.521,0.995,0.635,1.11,0.95,0.862,1.16 +NM_194457,1.027,1.044,0.871,1.243,0.98,1.091,0.885,0.92,0.901,0.859,1.108,0.901,1.059,0.804,0.836,0.906,1.062,1.107,1.053,1.119,1.067,1.172,1.059,1.107,1.047,0.947,0.897,0.896,0.895,0.822,0.967,0.943,1.09,1.093,0.851,0.888,0.999,0.974,1.482,1.057,1.01,1.005,0.811,1.172,1.07,0.78,0.976,1.098,0.967,1.146,0.994,0.932,1.01,1.195 +NM_194458,1.032,1.062,1.08,1.048,1.059,0.863,0.92,1.013,0.99,1.161,1.05,0.952,0.943,1.073,0.964,0.971,0.925,0.802,1.284,1.018,0.946,0.916,0.901,1.169,1.01,0.967,1.139,0.969,0.701,1.064,1.196,1.018,0.901,0.949,1.152,1.101,1.217,1.052,0.898,1.021,0.818,0.878,0.988,1.086,0.89,1.031,1.15,0.989,0.961,0.928,1.06,1.005,0.948,1.039 +NM_194460,1.161,0.763,0.853,0.881,0.737,1.265,0.55,0.755,0.787,0.976,0.947,0.993,0.93,0.761,0.931,1.009,1.035,0.796,1.04,0.82,1.098,1.084,1.117,1.295,0.897,1.316,1.088,0.728,0.75,0.88,0.791,0.747,1.397,1.128,0.664,0.914,0.921,1.2,1.73,1.108,0.959,1.007,0.92,1.544,1.081,0.859,0.922,1.343,0.823,1.223,0.841,0.752,1.134,1.147 +NM_194463,1.052,1.003,1.112,0.99,1.055,0.952,1.229,0.927,1.163,1.023,1.07,0.976,0.949,0.869,1.178,1.004,1.032,1.051,1.012,1.008,0.968,1.008,0.951,1.0,0.932,0.929,1.083,0.916,0.834,0.978,1.006,0.961,0.965,1.025,1.134,0.968,1.041,0.984,0.994,0.956,0.999,1.066,1.023,1.038,1.054,0.988,0.846,0.915,1.129,0.902,1.034,0.996,0.993,1.014 +NM_197941,1.037,1.13,1.109,1.183,1.131,1.008,0.942,1.053,1.052,0.957,1.073,1.107,0.936,0.892,0.681,1.052,1.034,1.001,1.079,1.135,0.832,1.133,1.056,0.991,1.071,1.155,0.914,1.029,0.869,1.027,1.044,1.245,0.954,0.888,0.828,0.982,0.979,0.933,0.937,1.073,1.256,0.929,1.017,0.963,0.978,1.08,0.864,1.0,1.056,0.889,0.902,0.895,1.067,0.859 +NM_197954,1.837,2.096,1.996,2.096,1.867,1.7690000000000001,2.566,1.881,1.988,1.968,2.171,1.902,1.832,2.1470000000000002,2.21,1.947,2.1,2.184,1.936,2.153,2.013,2.097,2.147,2.053,2.04,1.9780000000000002,2.11,1.892,2.098,1.888,1.949,2.143,2.019,1.7839999999999998,1.984,2.0709999999999997,2.038,1.992,2.093,2.136,2.044,1.971,2.123,2.1029999999999998,1.855,1.963,2.067,1.927,2.005,1.934,1.949,2.0620000000000003,1.8679999999999999,1.914 +NM_197955,0.933,0.683,1.377,0.498,1.611,1.86,0.338,1.269,1.198,0.404,0.847,0.765,1.475,0.367,1.087,1.932,1.588,0.894,1.645,1.124,0.528,1.137,1.02,0.933,0.306,1.095,1.333,1.228,0.53,0.923,1.692,0.35,1.137,1.301,1.952,0.328,1.549,1.098,0.868,0.494,1.376,1.091,0.547,0.11,1.115,1.168,1.586,1.682,0.445,1.289,0.817,0.826,0.812,1.571 +NM_197956,0.901,0.896,0.955,0.837,0.945,1.049,0.971,0.903,0.931,0.962,1.001,0.817,0.782,0.864,0.92,1.184,0.963,0.999,1.049,1.245,0.78,1.039,1.047,0.871,0.793,1.019,1.136,1.017,0.938,1.094,0.958,1.011,1.205,1.007,0.841,0.917,1.002,0.935,1.2,1.216,0.802,0.971,0.867,1.152,0.955,0.831,1.059,1.043,0.769,0.99,0.895,0.924,1.046,1.092 +NM_197957,2.018,2.099,2.076,1.97,1.935,2.006,1.77,2.252,2.1559999999999997,2.067,1.996,2.168,1.901,1.929,2.62,1.9849999999999999,1.802,1.784,1.881,1.879,2.1399999999999997,2.238,1.9529999999999998,1.974,1.944,2.075,1.908,2.3899999999999997,1.744,2.032,2.197,1.871,2.06,1.905,2.667,1.932,1.9060000000000001,2.17,2.0709999999999997,1.9,1.9809999999999999,2.035,2.159,1.915,2.0789999999999997,2.0940000000000003,1.9989999999999999,2.207,2.008,1.9329999999999998,1.9180000000000001,1.671,2.027,2.05 +NM_197962,1.471,1.951,2.16,1.629,2.0949999999999998,2.498,1.974,1.7970000000000002,2.245,2.008,2.09,2.057,1.729,1.549,1.951,4.239,1.819,2.039,1.7730000000000001,2.1029999999999998,1.3239999999999998,1.932,2.502,2.4210000000000003,1.4769999999999999,1.4969999999999999,2.5060000000000002,1.87,1.6280000000000001,2.201,2.245,2.682,5.304,2.136,1.327,1.939,2.025,2.254,2.5599999999999996,2.064,2.0220000000000002,2.04,1.4569999999999999,1.749,1.9369999999999998,2.282,2.241,1.835,2.798,1.641,2.267,1.608,1.472,2.335 +NM_197964,0.55,1.684,0.984,0.991,0.737,1.002,0.703,0.512,0.706,0.848,1.465,0.884,0.691,0.569,0.904,1.627,0.587,1.148,0.982,1.17,0.582,0.633,2.193,0.646,1.247,0.841,0.8,0.734,0.435,1.794,0.536,1.141,0.748,2.073,0.235,0.659,1.278,0.821,1.11,0.658,0.768,1.508,0.859,1.263,0.655,1.165,0.875,0.887,0.998,0.584,1.227,0.678,0.957,1.186 +NM_197965,1.023,0.871,1.057,0.998,0.991,0.878,0.862,0.966,0.978,0.931,1.005,1.073,0.852,1.08,0.91,0.901,1.163,1.02,1.001,1.048,0.93,1.052,0.977,1.072,0.992,0.869,1.078,1.21,0.77,1.076,1.102,0.954,0.926,1.117,1.005,0.954,1.165,0.92,1.146,0.957,1.222,1.082,0.882,0.967,1.108,0.973,1.076,1.026,1.053,0.923,0.97,0.935,1.009,0.866 +NM_197966,0.949,1.0,0.978,0.919,0.98,0.936,0.853,1.098,1.086,0.979,0.941,1.066,1.04,0.969,0.87,1.035,1.038,1.008,1.033,0.902,0.966,1.078,0.96,0.956,0.923,0.989,1.163,1.034,0.643,1.067,0.959,1.022,0.902,1.122,0.971,0.987,1.037,0.973,1.157,1.107,1.04,0.959,0.88,1.009,1.059,0.974,1.322,1.056,0.989,0.97,0.972,0.971,1.049,0.955 +NM_197967,0.695,1.161,0.837,0.81,0.741,1.162,0.7,0.604,0.892,0.879,1.023,0.767,0.655,0.662,0.961,1.287,0.949,0.963,0.9,1.074,0.678,0.729,1.395,1.093,0.784,0.691,1.379,0.665,0.579,1.422,0.695,2.137,1.568,1.257,0.514,1.022,1.157,0.661,1.763,1.596,0.8,1.025,0.82,1.183,0.933,0.915,1.345,0.659,1.144,0.711,0.985,1.235,0.772,3.471 +NM_197968,0.894,0.919,1.395,0.886,0.894,1.272,0.632,0.617,1.413,0.832,1.174,0.919,0.724,0.932,0.987,1.479,0.811,0.877,1.312,1.107,0.593,1.024,1.038,1.09,0.627,0.976,1.338,0.89,0.428,1.612,1.076,1.43,1.32,1.168,0.451,0.935,1.059,0.932,0.962,1.826,1.021,1.027,0.698,1.071,0.908,1.001,0.968,0.986,0.727,0.802,0.934,0.899,0.81,2.073 +NM_197970,2.077,2.222,2.082,2.0060000000000002,1.799,2.201,1.983,2.2880000000000003,1.8719999999999999,2.04,2.038,2.291,1.9929999999999999,2.232,1.8170000000000002,1.799,2.044,1.851,1.688,1.843,1.689,1.9369999999999998,2.151,2.122,2.042,2.232,2.06,2.0309999999999997,2.056,2.012,2.02,1.959,1.874,1.9209999999999998,2.0949999999999998,2.041,1.827,2.048,2.003,1.959,2.1719999999999997,2.024,2.278,1.998,1.9849999999999999,1.9900000000000002,2.034,2.048,2.168,1.8809999999999998,2.001,1.787,2.071,2.101 +NM_197972,0.915,1.058,1.059,0.873,0.838,1.143,0.828,0.831,1.095,1.049,0.835,1.186,0.889,0.803,1.093,1.281,0.913,0.99,0.983,1.127,0.854,0.874,1.018,0.876,0.727,0.802,0.903,0.98,0.67,0.961,1.072,2.074,2.902,1.28,0.729,1.059,0.897,1.077,1.017,1.073,0.937,0.942,0.828,1.247,0.887,1.007,1.106,0.766,0.902,0.772,0.884,0.952,1.104,1.667 +NM_197973,0.749,1.087,0.829,0.911,0.706,1.387,0.865,0.55,1.006,0.882,1.414,0.842,0.68,0.777,0.891,1.628,0.623,1.029,1.023,1.115,0.558,0.803,1.356,0.88,0.878,0.812,1.1,0.785,0.765,1.363,0.815,1.493,1.083,1.617,0.392,0.597,1.468,0.771,1.099,0.75,0.867,1.412,0.735,0.761,1.027,1.034,0.731,0.67,1.023,0.88,1.196,0.981,0.849,1.703 +NM_197974,0.824,1.172,1.368,0.864,0.767,1.392,1.17,0.622,0.876,0.772,0.955,0.813,0.677,0.674,0.95,1.265,0.864,0.806,0.837,1.181,0.742,0.634,1.398,0.778,1.058,0.76,0.902,0.737,0.647,1.199,0.725,1.276,0.886,1.348,0.545,0.878,1.046,0.738,1.015,0.643,0.77,1.35,1.065,0.893,0.758,1.126,0.815,0.657,1.037,0.805,1.325,0.84,1.183,1.892 +NM_197975,1.094,0.89,0.982,0.98,1.149,1.0,0.828,1.126,1.172,1.002,1.02,0.969,0.997,1.119,1.087,1.383,0.982,0.826,0.984,1.112,0.809,0.985,1.198,1.043,0.89,0.963,1.028,0.908,0.924,0.897,1.12,0.981,0.817,0.869,1.154,0.956,1.207,0.822,0.956,0.896,1.11,1.111,1.124,0.788,1.107,1.114,1.062,0.99,1.132,1.061,1.055,1.003,1.082,0.858 +NM_197976,0.99,1.137,1.067,0.866,0.973,0.897,0.731,0.912,1.091,0.983,0.792,0.953,0.874,0.947,0.942,0.959,0.974,0.917,1.032,1.299,0.795,0.88,1.093,0.946,0.865,0.973,1.139,0.958,0.672,1.02,0.981,1.359,1.151,1.052,0.722,1.02,0.851,1.032,1.12,1.373,1.067,1.175,0.987,1.021,0.973,0.859,0.971,0.866,0.925,0.743,1.046,0.983,0.889,1.032 +NM_197977,1.04,1.089,1.075,0.982,0.952,1.177,0.888,1.074,1.033,1.054,1.033,1.0,1.016,1.0,0.877,0.866,1.144,0.863,1.002,0.926,1.116,0.921,1.098,0.924,0.961,0.897,0.897,1.013,0.885,0.976,0.95,0.953,1.01,1.088,1.008,1.013,0.884,1.091,0.93,1.124,0.922,0.902,1.011,0.972,1.069,0.985,1.093,1.009,1.015,0.994,0.976,0.887,0.959,0.958 +NM_197978,1.082,0.912,1.062,0.954,0.987,0.922,1.368,0.9,0.835,0.949,1.12,0.914,0.856,1.126,1.045,0.925,1.055,1.001,0.966,0.9,0.934,1.03,1.032,1.071,0.976,1.037,0.989,0.975,0.651,1.02,1.073,1.028,0.983,0.934,1.074,0.996,1.081,0.993,1.046,1.026,1.038,0.91,1.036,1.054,1.049,0.942,1.083,0.969,0.997,0.943,1.053,1.026,1.024,1.059 +NM_198038,0.687,0.962,0.934,0.711,1.097,1.205,0.524,0.46,1.232,1.143,1.287,0.739,0.574,0.837,1.136,2.306,0.839,0.775,1.291,1.053,0.67,0.767,1.68,0.98,0.446,0.932,1.491,0.825,0.341,1.104,0.961,1.263,1.287,1.183,0.27,0.56,1.274,0.772,0.962,0.75,1.169,1.307,1.029,1.042,0.935,1.262,1.289,0.654,1.369,0.771,1.118,0.726,1.106,0.826 +NM_198040,0.994,0.826,0.915,1.006,0.944,0.954,0.866,1.374,0.988,1.055,1.122,1.008,0.928,0.936,1.008,0.906,1.002,1.099,0.967,0.958,1.161,1.013,0.983,1.11,0.959,0.996,1.036,1.128,0.968,0.916,0.901,1.137,0.972,0.792,1.068,1.032,0.907,0.939,0.937,1.075,1.045,1.069,1.266,1.047,0.999,0.971,0.97,0.93,0.925,0.98,1.11,0.921,1.084,0.936 +NM_198041,1.9940000000000002,2.082,1.894,1.8639999999999999,1.783,1.9340000000000002,1.895,1.9889999999999999,2.253,2.012,2.043,1.989,2.034,1.871,2.1660000000000004,2.229,1.815,1.795,2.104,2.077,1.863,1.771,2.09,1.943,1.946,1.726,2.405,1.907,2.032,2.126,1.927,2.3360000000000003,2.58,1.939,2.0010000000000003,1.999,2.141,2.105,1.8239999999999998,1.711,1.998,1.854,1.982,2.198,2.1390000000000002,1.9769999999999999,1.9220000000000002,1.8170000000000002,1.938,2.095,1.946,2.062,2.0709999999999997,2.12 +NM_198042,1.902,1.469,3.581,1.549,3.803,1.648,1.341,2.3569999999999998,4.075,3.024,1.5919999999999999,3.735,1.701,2.335,2.249,2.45,3.383,2.463,3.825,1.4460000000000002,2.287,2.981,1.504,3.839,1.301,2.3890000000000002,3.5300000000000002,4.118,1.053,1.442,3.5839999999999996,2.256,1.692,1.557,2.697,1.28,1.871,3.943,2.282,1.698,3.458,1.4809999999999999,1.776,1.4049999999999998,4.390000000000001,2.0869999999999997,2.155,4.368,1.9809999999999999,2.144,2.15,1.624,3.491,1.6480000000000001 +NM_198045,0.694,1.139,1.012,0.951,0.66,1.351,0.645,0.577,0.798,0.845,1.041,0.817,0.806,0.61,0.842,1.767,0.725,1.018,1.269,0.983,0.624,0.775,1.318,0.896,0.963,0.796,0.992,0.636,0.578,1.272,0.823,1.709,1.702,1.518,0.282,1.148,1.151,0.863,1.377,0.649,0.848,1.107,0.644,1.297,0.761,1.055,1.095,0.621,0.944,0.755,1.141,0.983,0.794,1.39 +NM_198046,0.951,0.999,0.779,1.14,0.979,0.855,1.019,0.778,1.027,1.054,0.994,1.202,0.944,0.945,0.893,1.094,0.898,0.944,0.91,0.951,0.908,0.966,1.061,0.905,0.855,1.053,0.853,0.907,1.492,1.079,1.053,1.024,1.141,1.064,1.089,0.951,1.221,1.098,1.119,1.061,1.0,0.95,1.102,1.143,1.179,1.048,0.957,0.834,1.089,1.017,1.175,1.045,0.915,1.03 +NM_198055,0.877,0.875,0.851,1.038,0.933,0.993,1.113,0.991,0.904,1.11,0.935,1.062,0.963,0.939,0.936,0.993,1.043,1.036,0.906,0.995,0.921,1.039,0.953,1.013,0.998,1.061,1.1,1.051,0.801,0.994,1.037,1.033,0.9,0.913,1.059,0.958,0.891,1.009,1.108,1.06,0.857,0.988,0.92,0.982,1.038,0.973,1.003,1.044,1.109,1.004,0.99,1.022,1.0,0.943 +NM_198057,0.983,1.115,0.954,0.955,1.021,1.036,0.996,0.956,0.947,1.016,1.061,1.114,1.105,1.0,1.166,0.982,1.019,0.973,1.153,1.024,1.158,0.922,0.952,0.952,1.072,1.082,1.012,1.297,0.826,1.034,0.999,1.016,1.065,0.988,1.029,1.028,1.038,0.868,0.967,0.809,0.968,0.91,0.852,1.075,0.978,1.076,0.826,0.936,0.982,1.101,0.997,1.087,1.07,1.039 +NM_198060,1.069,1.247,0.803,1.063,1.087,0.955,0.893,1.149,0.999,1.004,1.078,0.988,0.885,0.975,1.026,1.2,1.006,0.846,0.884,0.972,1.067,0.951,0.962,1.038,1.008,0.886,1.069,0.98,0.789,0.916,1.042,0.955,0.81,0.91,1.027,0.999,0.909,1.139,1.077,0.953,1.171,1.017,0.884,1.066,0.881,1.046,1.164,0.975,0.896,1.066,1.002,1.172,0.915,1.041 +NM_198061,0.727,0.671,1.003,0.621,1.124,1.548,0.561,0.486,1.271,1.175,2.328,0.696,0.355,0.55,1.579,4.377,0.409,0.82,1.037,2.168,0.517,0.527,1.675,0.896,0.242,0.779,0.685,1.133,0.335,1.895,0.83,0.277,2.03,1.273,0.143,0.483,2.715,1.097,0.997,0.118,0.813,1.901,1.907,0.213,0.565,2.241,2.078,0.638,1.613,0.766,1.973,0.422,0.776,1.005 +NM_198074,1.031,1.0,1.022,1.055,1.025,0.983,1.129,0.954,1.044,1.024,1.025,1.086,0.94,0.927,0.982,1.021,0.958,0.971,1.071,1.07,0.979,0.914,1.019,1.01,0.964,1.006,1.149,1.039,0.717,0.903,0.925,0.968,0.967,0.942,0.915,1.05,1.027,0.877,0.966,0.909,0.953,0.95,1.006,0.928,0.969,1.001,1.096,1.058,1.019,1.015,1.0,0.936,1.033,1.003 +NM_198075,0.956,1.007,1.131,0.917,0.937,0.939,0.951,0.984,1.001,0.681,0.942,0.876,0.991,1.089,1.053,0.895,0.995,1.086,1.159,0.98,0.922,0.803,0.995,0.973,0.999,0.983,1.127,0.895,0.644,1.268,1.054,0.966,1.101,1.208,1.004,0.889,1.015,0.87,1.063,1.17,0.941,0.936,0.964,1.005,0.845,1.005,1.051,0.83,0.913,0.885,1.011,0.856,0.941,1.451 +NM_198076,0.74,0.942,0.924,0.636,0.853,0.991,0.666,0.629,1.196,1.037,1.056,0.783,0.636,0.701,0.965,1.752,0.811,0.905,1.166,0.98,0.814,0.703,1.115,1.209,0.811,0.828,0.968,0.944,0.449,1.015,0.98,1.123,3.835,1.218,0.396,1.641,1.028,0.87,1.701,0.892,1.153,0.829,0.745,1.292,1.009,1.148,1.246,0.65,1.31,0.761,1.092,0.828,1.074,4.106 +NM_198078,0.954,1.022,0.847,1.121,1.005,1.051,1.085,0.89,1.152,1.039,0.948,0.989,1.025,1.025,1.021,0.984,0.945,1.038,1.107,1.084,0.968,1.142,1.122,0.898,1.053,0.874,0.966,0.981,1.04,0.954,1.047,1.043,0.914,0.955,1.079,0.935,1.04,0.934,1.009,0.998,1.096,1.032,1.052,1.002,0.946,1.049,0.986,1.084,0.897,0.893,0.955,1.004,0.977,0.947 +NM_198079,0.99,1.042,2.281,0.736,1.115,1.397,0.942,0.696,1.512,0.888,0.761,1.46,0.926,1.238,1.135,0.716,1.906,0.919,0.867,1.09,0.664,1.454,1.154,2.285,0.881,0.638,2.357,1.011,0.66,1.058,1.21,1.254,1.075,1.241,1.274,0.72,0.805,1.008,1.217,1.421,1.134,1.004,0.756,0.663,1.257,0.673,1.176,0.815,0.799,0.824,0.777,0.849,0.834,1.002 +NM_198082,1.009,0.899,0.923,0.913,1.046,0.843,1.011,1.088,0.832,0.886,1.086,1.091,1.053,1.073,0.901,0.932,1.013,0.957,0.988,1.103,0.998,0.96,1.03,0.913,0.996,1.019,1.259,0.989,1.24,1.068,1.043,0.744,1.034,1.129,0.945,1.023,1.056,1.053,0.989,0.973,0.904,0.966,1.374,0.952,1.033,0.984,1.019,1.032,1.021,0.951,1.038,0.982,0.788,0.968 +NM_198085,0.853,0.999,0.917,1.126,0.901,1.129,1.054,1.102,1.08,0.875,0.961,1.022,0.967,1.126,0.929,1.147,0.915,0.972,1.024,0.86,1.018,0.856,0.991,0.927,1.059,0.997,0.916,1.075,0.933,0.923,1.065,0.955,1.047,1.009,1.021,1.121,1.063,0.95,0.888,0.993,1.052,1.067,1.129,1.014,1.057,0.942,0.978,0.95,1.083,1.001,0.955,1.017,0.821,1.023 +NM_198086,1.859,1.794,3.3869999999999996,1.889,2.717,1.67,1.414,2.03,2.627,2.782,1.615,2.444,2.164,2.157,2.2,1.6320000000000001,2.401,2.4050000000000002,2.668,1.627,1.8559999999999999,2.358,1.964,2.42,1.596,2.112,3.327,2.338,1.534,1.8599999999999999,2.423,2.201,2.7,1.768,1.653,1.758,1.623,2.768,1.7389999999999999,2.006,2.468,1.7200000000000002,1.4449999999999998,2.315,2.524,1.7029999999999998,2.437,2.411,1.5499999999999998,2.355,1.768,2.143,2.49,2.282 +NM_198087,0.893,0.895,1.124,0.78,0.773,1.036,0.773,0.979,0.909,0.934,1.152,0.926,0.833,0.997,1.06,1.331,0.983,0.792,0.943,0.985,0.911,0.76,1.198,0.87,0.903,0.915,1.193,0.824,0.605,1.018,1.011,1.414,1.712,1.045,0.656,1.018,1.132,0.834,1.096,1.332,0.991,0.876,0.852,0.993,0.964,1.049,0.998,0.921,0.972,0.872,1.077,1.222,1.011,1.249 +NM_198097,0.62,0.737,1.245,0.674,0.921,1.162,0.536,0.454,1.324,0.866,1.282,0.673,0.673,0.696,1.194,1.882,0.908,0.877,1.863,0.914,0.589,0.776,1.61,1.047,0.453,0.77,1.168,0.95,0.344,1.445,1.009,1.289,2.302,1.53,0.409,1.116,1.164,0.782,1.196,0.753,1.107,0.995,0.611,1.188,0.852,1.054,1.19,0.803,0.916,0.776,0.957,0.838,1.106,1.951 +NM_198098,0.633,1.023,0.735,0.564,0.674,1.312,0.552,0.609,0.653,1.078,1.017,0.578,0.497,0.56,0.992,2.222,0.574,0.52,0.983,0.945,1.066,0.644,3.739,0.726,0.885,0.771,0.766,1.061,0.835,0.832,0.589,2.941,2.039,0.858,0.509,1.312,1.096,1.146,1.823,0.65,1.684,3.997,1.462,0.793,1.0,1.164,1.287,0.721,1.382,0.931,1.182,5.431,0.909,14.68 +NM_198120,1.56,2.172,1.861,1.6,1.5230000000000001,2.854,1.537,1.191,2.0460000000000003,1.693,2.767,1.909,1.7069999999999999,1.6199999999999999,1.9660000000000002,2.4459999999999997,1.5759999999999998,1.5150000000000001,1.9289999999999998,2.287,1.365,1.659,1.925,1.959,1.8439999999999999,1.641,1.967,1.8050000000000002,1.385,2.487,1.609,1.96,2.769,2.527,1.15,2.027,2.0989999999999998,1.884,2.291,2.109,1.893,2.1319999999999997,1.702,2.303,1.644,3.323,1.9180000000000001,1.524,2.06,1.58,1.995,1.5799999999999998,1.655,2.4859999999999998 +NM_198124,0.941,1.081,1.059,1.038,1.085,1.007,0.815,0.953,0.957,1.023,0.957,0.957,1.023,0.868,0.817,0.853,1.047,1.004,0.964,1.097,0.895,1.047,0.971,0.931,1.109,1.043,1.246,1.024,0.738,0.926,0.951,1.006,1.021,0.957,0.999,0.995,1.082,1.082,1.054,0.964,1.0,0.956,1.541,1.211,0.933,0.896,0.879,0.955,0.927,0.991,1.008,0.944,0.968,0.915 +NM_198125,0.659,1.308,1.158,1.101,0.639,1.05,1.142,0.471,0.806,0.611,1.001,0.535,0.76,0.409,0.752,0.844,1.007,0.695,0.756,0.648,0.697,0.649,1.328,0.84,0.845,0.682,1.665,0.628,0.349,2.191,0.565,3.517,1.184,1.899,0.325,0.662,0.999,0.686,2.457,6.259,0.946,1.804,0.632,0.907,0.914,0.827,0.753,0.645,0.481,0.615,0.752,3.377,1.475,3.77 +NM_198128,0.914,0.948,1.371,0.811,0.882,1.355,0.956,0.883,1.103,1.047,1.115,1.095,1.083,0.637,0.981,2.505,0.931,1.126,1.226,1.115,0.716,1.024,1.487,0.964,0.709,0.802,1.491,1.139,0.79,1.57,0.794,0.847,1.45,1.126,0.552,0.795,1.125,1.057,1.166,0.898,1.277,1.233,1.088,0.919,1.08,1.092,0.989,0.996,1.187,0.843,1.116,0.866,0.646,4.227 +NM_198129,1.054,1.03,0.982,0.812,0.936,0.98,0.966,1.027,0.881,1.014,1.195,0.998,1.047,0.856,0.927,1.337,1.018,1.014,1.082,0.952,1.0,0.969,1.142,0.959,1.11,1.119,0.714,0.961,1.234,0.922,1.14,0.946,0.983,1.096,1.115,1.009,1.055,0.974,1.055,0.98,0.911,1.059,1.012,1.035,0.952,0.924,0.962,0.892,1.16,0.987,1.066,0.98,1.18,0.806 +NM_198138,1.008,0.901,0.996,1.14,1.103,0.862,1.232,1.079,0.988,0.984,1.063,0.898,1.129,1.177,1.009,0.921,1.002,1.036,0.992,0.898,0.973,1.057,1.097,0.985,1.005,0.954,0.972,0.97,0.978,1.079,0.976,0.921,1.05,1.001,1.107,0.999,1.035,0.962,0.935,1.109,1.085,0.953,1.127,1.064,1.037,1.105,0.979,0.98,1.168,0.983,1.012,0.863,1.091,0.962 +NM_198139,1.005,0.88,0.966,1.175,0.991,1.158,0.928,0.933,0.83,0.919,0.944,0.895,1.138,0.932,0.885,1.189,1.05,1.163,1.014,1.006,0.905,1.013,1.062,1.073,1.078,1.021,1.085,1.022,0.915,0.883,1.032,0.893,0.895,0.979,1.12,1.089,1.126,0.909,0.906,1.085,1.265,0.924,0.902,0.961,1.042,0.832,1.022,1.177,1.132,0.964,1.129,0.981,1.025,1.116 +NM_198141,0.955,0.815,1.164,0.957,0.966,1.139,0.966,1.018,1.204,0.998,0.995,1.016,0.944,0.962,0.871,0.915,1.073,0.89,1.073,1.092,0.845,1.005,1.232,1.084,0.75,1.249,1.271,1.08,0.815,0.91,1.179,0.757,0.893,0.959,1.081,0.866,0.923,1.134,0.919,0.94,1.026,0.989,1.571,0.805,1.036,0.958,0.801,1.099,0.958,1.09,0.889,0.912,1.25,0.986 +NM_198147,0.817,1.217,1.17,0.761,0.995,1.217,0.99,0.834,0.996,0.842,0.797,0.833,0.916,0.828,1.106,2.287,0.946,1.138,0.975,1.004,0.817,0.995,1.476,0.982,0.843,0.793,1.118,0.887,0.828,1.264,1.03,1.585,1.434,1.566,0.834,0.857,1.058,1.11,1.438,0.913,0.908,1.209,0.927,0.911,0.862,0.989,1.218,0.873,0.974,0.848,1.13,0.866,0.782,1.715 +NM_198148,1.178,0.857,0.817,1.04,0.807,0.826,0.889,0.891,0.972,0.786,0.811,1.048,0.836,0.895,0.898,1.06,1.034,0.781,0.8,0.748,1.109,1.081,1.499,0.767,0.885,1.049,0.918,1.278,0.794,1.0,0.944,2.895,1.046,1.13,0.815,1.215,0.77,1.643,1.147,2.655,1.489,2.119,0.768,0.944,1.031,0.755,0.799,0.978,0.836,1.12,1.039,1.343,1.106,1.148 +NM_198149,0.897,0.98,0.955,0.879,1.066,1.048,1.006,1.027,0.997,0.97,0.856,1.01,1.008,0.996,1.359,0.897,1.097,0.972,0.959,0.993,0.916,1.042,1.027,1.222,1.112,0.937,1.008,1.15,0.954,0.971,0.974,1.125,1.003,1.095,0.984,0.939,1.001,0.933,0.973,1.041,1.026,0.996,0.972,1.02,0.998,0.865,0.945,1.095,0.979,0.944,0.987,0.97,0.969,1.058 +NM_198151,0.868,1.171,0.895,1.064,0.86,1.31,1.061,0.903,0.862,0.811,2.312,0.913,0.818,0.78,1.508,3.978,0.736,0.963,0.854,2.141,0.717,0.867,3.168,0.933,1.029,0.9,0.855,0.97,0.756,0.929,0.986,0.825,1.522,1.605,0.865,0.992,2.326,0.976,0.998,1.057,0.836,2.033,3.019,1.362,0.982,2.324,1.833,0.924,2.269,0.921,1.992,1.075,0.937,0.824 +NM_198152,0.993,1.014,1.024,1.059,0.931,1.034,0.895,0.898,1.018,1.137,0.898,0.896,1.051,1.03,1.15,0.997,0.949,1.162,0.884,1.083,0.923,1.046,1.084,1.006,0.973,0.9,0.899,1.018,0.984,1.036,0.959,1.005,1.01,0.912,0.92,0.824,1.029,0.979,1.249,0.971,1.0,1.016,1.268,1.094,1.062,1.006,1.027,1.013,0.988,1.032,0.979,1.064,0.954,0.891 +NM_198153,0.949,1.061,0.916,0.884,1.087,1.104,0.853,0.995,0.902,1.118,1.077,0.847,1.063,1.038,0.978,1.067,0.837,0.918,0.947,1.147,1.017,1.14,0.993,1.054,1.103,0.951,0.995,1.072,1.063,0.979,1.015,0.943,1.145,1.018,0.853,1.077,1.043,1.086,1.005,0.963,1.039,0.944,1.107,0.9,1.182,0.969,1.121,1.036,0.95,1.029,0.977,1.223,1.215,1.018 +NM_198154,1.104,1.07,1.006,1.042,1.006,1.118,0.996,1.049,0.852,0.898,0.962,1.014,1.055,1.104,0.92,1.008,0.976,0.898,0.853,0.94,1.04,0.965,1.003,0.923,0.979,0.953,0.886,0.932,0.926,0.975,0.902,0.979,1.157,0.97,1.187,1.02,1.102,0.825,1.02,0.992,1.081,1.0,1.264,0.936,0.971,1.068,1.038,1.042,1.078,0.996,1.128,1.137,0.982,1.063 +NM_198155,0.843,1.275,1.322,0.666,1.002,1.241,0.566,0.621,1.259,0.966,0.715,0.984,1.141,0.717,1.049,1.969,1.044,0.978,1.65,0.979,0.588,1.155,1.132,1.38,0.558,0.982,1.348,0.935,0.373,1.317,1.25,1.167,1.797,1.605,0.204,0.39,1.157,1.135,1.413,0.607,1.33,1.313,0.698,0.672,1.143,0.948,0.823,0.998,0.575,0.85,0.946,0.538,0.771,1.628 +NM_198158,0.876,1.42,0.969,1.163,0.9,1.4,1.159,0.746,0.937,0.84,1.231,0.857,0.869,0.676,0.953,1.183,0.91,1.344,0.891,1.405,0.746,0.825,1.637,0.882,1.416,0.955,0.829,0.916,0.936,1.294,0.842,1.96,1.067,1.838,0.603,0.741,1.179,0.796,1.872,0.805,0.878,1.529,0.655,0.837,0.898,1.465,0.891,0.645,0.809,0.771,1.393,0.884,0.766,1.418 +NM_198159,1.007,1.059,0.926,1.075,0.973,0.96,1.1,0.807,0.891,1.005,0.941,1.053,1.0,1.111,0.973,0.978,0.959,1.103,0.884,1.075,1.187,0.81,1.011,1.032,1.0,1.114,0.958,1.034,1.497,0.925,1.081,1.075,1.066,0.996,1.004,1.102,0.98,0.833,1.097,0.99,1.035,1.039,1.234,1.015,0.936,0.971,1.078,0.981,1.126,1.106,1.039,1.024,1.233,0.964 +NM_198173,1.015,1.09,1.22,0.999,1.222,1.001,0.931,0.999,1.336,1.061,0.964,0.899,0.899,0.936,0.957,0.956,0.848,1.183,1.274,0.913,1.004,1.016,0.896,0.971,1.052,1.124,1.067,1.11,0.851,1.056,1.197,1.041,1.052,1.055,0.822,1.049,0.964,1.075,0.907,0.968,1.219,1.014,0.985,1.067,1.03,0.914,0.854,1.176,1.036,0.932,1.071,1.058,1.26,1.002 +NM_198174,1.562,0.831,5.546,0.95,4.311,0.658,0.594,2.877,4.957,3.336,0.66,3.161,2.144,1.857,3.429,1.623,3.954,2.173,1.956,0.719,1.065,6.135,0.774,7.077,0.637,1.063,5.801,3.628,0.628,0.769,6.22,0.697,2.751,0.661,0.673,0.746,0.709,5.548,0.695,0.738,4.167,0.705,0.617,0.651,3.511,0.586,2.755,2.871,0.796,2.416,1.464,0.975,1.102,1.958 +NM_198175,1.038,0.888,1.064,1.148,1.019,1.11,0.871,0.95,0.99,1.077,1.077,0.967,0.91,1.213,1.003,1.138,1.135,0.934,0.945,0.917,1.062,0.969,0.925,1.207,0.991,0.867,1.247,1.137,0.738,0.953,0.893,1.027,1.397,0.822,0.906,0.935,0.873,1.038,1.134,0.851,1.106,1.04,0.902,1.491,0.986,0.897,1.144,0.829,0.966,1.103,0.951,1.034,0.958,1.119 +NM_198179,0.945,0.987,1.18,1.018,1.002,1.068,1.059,1.394,0.926,1.245,0.99,1.085,0.982,1.075,1.204,0.93,0.954,1.15,1.134,1.002,0.895,0.793,0.991,1.009,0.848,0.857,2.327,0.977,0.856,0.924,1.002,0.835,0.974,1.001,1.063,1.068,0.703,0.935,0.835,0.975,1.021,0.8,1.058,0.898,0.913,0.933,1.054,0.946,0.904,1.059,0.892,0.956,1.062,0.981 +NM_198180,0.901,0.879,0.897,1.071,1.003,0.981,0.804,1.074,1.077,0.953,1.082,0.947,0.904,0.988,0.703,1.067,0.956,1.129,1.041,0.945,1.021,0.954,1.072,0.831,0.983,0.95,1.096,1.092,1.039,0.918,0.996,1.007,0.915,1.019,1.015,0.934,1.0,0.892,1.009,0.93,0.839,0.893,1.273,1.082,1.036,1.073,0.942,1.0,1.116,1.012,1.043,0.918,1.027,1.127 +NM_198181,0.993,1.011,1.12,1.016,1.016,0.913,0.917,0.971,1.376,1.003,0.993,0.91,0.888,1.123,1.002,1.082,1.177,0.966,1.106,1.04,0.969,0.882,0.935,1.095,0.731,0.844,1.222,1.071,1.178,0.882,1.0,0.826,1.111,0.879,1.095,1.176,0.995,0.907,1.224,0.956,1.256,0.962,1.03,0.853,0.826,0.895,1.033,0.852,0.951,1.002,0.992,0.982,1.131,1.019 +NM_198182,1.164,0.932,1.508,1.003,1.177,1.034,1.114,1.23,1.28,1.098,0.986,1.081,0.99,0.904,1.215,1.077,1.053,0.995,1.187,0.982,0.965,1.617,1.049,1.57,0.961,0.901,1.665,1.102,0.892,0.978,1.69,1.193,1.17,0.992,0.969,0.96,0.969,1.449,0.985,1.019,1.222,0.962,1.002,1.042,1.243,1.059,1.1,1.08,0.964,1.16,1.024,0.986,0.961,1.024 +NM_198183,1.022,1.05,1.008,0.946,1.03,1.004,1.031,0.876,1.082,0.87,0.869,1.015,1.08,1.214,0.887,1.001,1.054,0.926,0.916,1.046,0.982,0.888,0.944,0.879,0.996,0.94,1.035,0.898,0.799,1.002,1.036,0.993,1.047,0.985,1.069,1.087,0.957,1.086,1.029,1.022,1.003,0.909,0.783,0.931,1.089,0.965,0.938,0.923,1.019,0.984,1.117,1.048,0.88,0.953 +NM_198184,0.843,0.919,1.091,1.047,1.023,0.966,1.139,1.027,0.892,1.024,0.985,1.029,1.0,1.009,1.025,1.215,0.941,1.036,1.064,1.182,0.984,1.063,0.948,1.046,0.977,1.026,1.01,0.851,0.967,0.938,1.067,1.038,1.121,0.937,0.931,1.017,0.979,1.042,1.061,0.973,1.021,1.032,1.007,1.089,1.096,0.893,0.966,1.0,0.847,0.926,1.065,1.097,1.116,0.902 +NM_198185,0.95,0.972,0.91,0.981,0.898,0.948,1.249,0.919,1.058,1.082,1.173,0.921,1.038,0.875,0.911,1.105,1.074,0.827,1.054,1.017,0.961,0.913,0.938,0.918,1.024,1.081,0.716,0.951,0.832,1.025,0.937,1.036,1.112,1.013,0.997,1.047,0.91,1.059,0.987,0.96,1.029,1.082,0.973,1.077,1.024,0.969,1.191,0.928,1.014,1.033,1.036,0.98,1.037,1.086 +NM_198188,0.813,1.136,0.823,0.658,0.899,1.009,0.881,0.906,0.754,0.839,0.9,0.953,0.842,0.931,1.109,1.047,1.065,0.98,0.959,1.017,0.816,0.764,1.181,0.873,1.283,0.836,1.008,0.982,0.7,1.165,0.824,1.283,1.021,1.202,0.783,0.962,1.241,0.86,0.969,0.753,0.953,1.104,0.865,1.035,1.007,1.06,1.0,0.95,0.958,0.887,1.066,1.004,0.906,1.152 +NM_198189,1.01,1.009,1.021,1.025,0.996,0.928,1.212,0.951,1.075,0.962,0.965,1.0,0.992,0.919,0.932,1.023,0.896,1.086,1.06,1.007,0.948,0.934,1.015,0.985,1.058,0.966,0.855,1.132,0.921,0.981,1.18,1.033,1.054,0.909,1.071,1.056,1.008,1.086,0.924,0.927,1.003,0.994,1.062,1.062,1.12,1.035,0.829,1.0,1.008,1.034,0.982,0.991,0.895,1.038 +NM_198194,0.318,0.686,2.269,0.369,0.42,0.906,0.484,0.353,0.571,0.502,0.56,0.515,0.453,0.335,1.546,2.432,1.341,0.375,0.794,1.109,0.489,0.461,0.949,0.659,0.33,0.358,2.205,0.454,0.266,1.09,0.465,2.237,1.377,1.145,0.114,0.546,1.163,0.569,1.462,2.287,1.444,1.983,1.029,0.469,0.927,1.448,1.917,0.416,2.171,1.586,0.816,1.276,1.09,1.795 +NM_198197,0.773,0.947,1.189,0.894,0.965,1.084,0.646,0.675,1.489,1.078,1.257,0.785,0.678,0.906,1.024,1.714,0.887,0.895,1.32,0.995,0.672,0.667,1.121,1.032,0.55,0.779,1.26,1.053,0.417,1.096,1.191,0.981,2.027,1.084,0.557,0.903,1.005,0.789,1.072,0.695,1.114,0.99,0.97,0.718,0.887,1.172,0.957,0.623,1.255,0.801,0.98,1.071,1.126,2.458 +NM_198202,0.777,1.048,1.211,0.867,1.01,1.294,0.654,0.683,1.126,0.945,1.041,1.056,0.772,0.621,0.928,1.627,1.168,1.01,0.895,0.975,0.657,1.131,1.415,1.122,0.697,0.648,1.253,0.807,0.582,1.142,1.021,1.441,1.31,1.213,0.516,0.971,0.924,1.067,1.916,0.752,1.234,0.903,0.638,0.775,0.847,0.992,1.027,0.921,1.282,0.77,1.085,0.861,0.747,1.343 +NM_198205,0.858,1.12,0.998,0.993,0.739,1.298,1.011,0.79,0.883,0.888,1.4,0.92,0.746,0.753,0.995,1.619,0.858,0.937,0.842,1.064,0.689,0.822,1.388,0.956,1.123,0.799,0.708,0.821,0.698,1.238,0.759,1.2,1.179,1.538,0.753,0.886,1.273,0.864,1.305,0.737,0.949,1.202,1.002,1.249,0.861,1.16,0.788,0.907,1.028,0.739,1.23,0.882,1.024,1.004 +NM_198215,1.022,1.156,0.927,1.075,1.0,1.109,1.073,0.962,1.012,0.967,0.989,1.179,1.058,0.981,1.095,0.882,0.992,1.066,1.068,1.055,1.055,0.941,0.936,1.013,0.893,0.906,0.919,0.981,1.016,1.065,0.857,1.057,1.131,0.938,1.152,1.106,0.955,1.11,1.009,1.076,0.942,1.004,1.12,1.051,1.054,1.068,0.997,0.93,1.125,0.977,1.3,1.014,0.987,0.962 +NM_198216,0.532,0.625,0.993,0.596,1.066,0.897,0.625,0.421,1.272,1.235,0.675,1.038,0.469,0.535,0.877,1.167,0.896,0.924,1.301,1.169,0.446,0.656,1.805,1.157,0.328,0.737,1.328,1.084,0.416,1.284,0.859,1.258,3.205,1.025,0.177,2.329,0.962,0.75,1.227,1.773,1.176,0.837,0.766,1.912,1.206,0.922,1.148,0.565,1.273,0.62,0.848,1.36,1.171,2.156 +NM_198217,1.565,1.9969999999999999,2.045,1.744,1.821,2.621,2.146,1.87,2.024,1.733,2.05,1.8639999999999999,1.847,1.5510000000000002,2.205,2.796,1.672,2.035,1.909,2.159,1.588,1.923,2.3,1.951,1.766,1.388,2.057,1.78,1.911,2.787,1.878,2.544,2.629,2.238,1.616,1.6989999999999998,2.2510000000000003,2.145,2.3689999999999998,2.293,1.751,2.286,2.016,1.733,1.8699999999999999,2.593,2.184,1.953,2.144,1.861,2.134,1.926,1.824,2.542 +NM_198219,0.747,0.882,0.995,1.071,1.019,0.921,0.955,1.033,0.737,1.157,1.009,1.032,0.978,0.934,0.815,0.873,1.149,1.054,0.931,1.02,1.219,1.101,0.79,1.099,0.98,0.87,1.069,0.809,1.252,0.967,1.197,0.934,1.064,1.105,0.979,1.06,1.007,0.943,0.925,0.826,1.074,1.022,1.105,1.156,0.995,0.939,0.82,1.07,0.866,1.164,0.99,0.763,1.19,0.853 +NM_198220,0.555,0.796,1.055,0.69,0.885,1.139,0.745,0.569,1.085,0.878,0.846,0.663,0.633,0.63,1.113,1.687,0.69,0.836,0.991,1.207,0.698,0.63,1.631,0.992,0.584,0.629,1.36,0.787,0.597,1.355,0.914,1.514,4.139,1.425,0.475,0.787,1.036,0.795,1.108,1.273,0.959,1.086,0.717,1.076,0.894,1.087,0.956,0.617,1.388,0.621,1.165,0.965,0.699,2.947 +NM_198225,1.9060000000000001,2.164,1.901,1.7850000000000001,1.916,2.317,1.9509999999999998,1.988,1.78,1.964,2.0919999999999996,2.062,1.991,1.822,1.8639999999999999,2.167,1.8599999999999999,2.164,1.935,2.144,1.896,1.934,1.995,1.862,1.9899999999999998,1.974,1.833,2.05,1.7189999999999999,1.956,1.992,2.64,2.114,2.2670000000000003,1.9,2.03,2.194,1.847,2.509,1.934,2.151,2.2279999999999998,1.94,2.031,1.991,2.208,1.951,1.896,2.393,1.9580000000000002,2.152,1.7610000000000001,1.956,1.96 +NM_198227,0.904,1.063,0.876,0.845,1.13,1.078,1.016,1.18,0.953,1.046,1.016,1.109,0.893,0.842,0.96,1.054,0.946,0.909,0.952,0.942,0.995,1.019,0.996,1.085,0.914,0.908,0.889,1.169,0.941,1.062,1.014,1.085,1.051,0.966,0.948,1.123,1.008,0.949,0.996,0.943,0.871,1.061,1.439,1.19,0.953,0.973,0.898,1.076,0.897,0.967,1.047,0.95,0.912,0.947 +NM_198230,1.036,1.085,0.951,1.23,0.958,1.107,1.274,0.974,0.927,0.926,1.005,0.998,0.993,0.978,0.921,0.913,1.092,1.157,1.005,1.028,0.922,1.148,1.032,0.963,1.103,1.096,0.924,1.064,0.848,1.099,0.971,1.175,0.96,1.055,0.852,1.207,0.931,1.091,1.029,1.092,0.899,1.004,1.086,1.066,0.931,1.03,0.961,1.194,1.018,0.864,0.987,0.896,0.944,0.962 +NM_198232,1.08,0.84,0.834,1.204,0.873,0.974,1.086,1.157,1.257,1.014,1.16,0.988,0.986,1.064,0.795,1.126,0.95,0.911,0.99,0.928,1.199,0.997,1.084,1.041,1.035,1.003,0.845,0.998,0.945,1.018,0.922,1.069,0.945,1.026,1.227,0.956,0.809,1.005,1.118,1.083,0.964,0.878,0.948,1.113,0.98,0.995,1.091,1.106,0.927,1.008,0.973,1.04,1.085,0.987 +NM_198236,0.983,0.968,0.997,0.968,0.936,1.1,0.937,1.121,1.005,0.94,1.014,1.002,1.004,0.86,0.982,0.923,0.97,0.948,0.98,0.996,1.194,1.049,1.074,1.035,0.983,1.015,1.119,0.902,0.808,1.019,0.906,0.917,0.937,1.031,1.02,1.036,1.084,0.963,0.958,1.132,0.945,0.929,0.826,1.011,0.983,0.996,1.055,0.997,0.982,0.977,0.969,0.988,1.013,0.929 +NM_198239,1.019,1.006,0.963,0.94,0.973,1.068,1.031,0.937,0.991,0.948,0.966,0.881,1.068,1.018,0.885,0.972,1.057,1.081,0.841,1.068,0.881,0.962,1.159,0.965,0.922,0.903,0.948,0.844,0.938,1.022,0.985,0.932,0.972,1.084,1.057,0.89,0.864,0.935,1.008,0.879,0.945,0.995,1.31,1.102,1.029,1.096,0.938,0.969,1.056,1.035,0.981,1.068,0.972,1.084 +NM_198240,1.089,0.966,1.178,1.031,1.213,0.816,0.835,0.991,1.325,1.017,0.922,0.924,0.934,0.961,1.134,1.051,1.114,1.074,1.099,0.83,0.809,1.031,1.13,1.051,0.861,1.037,1.145,1.043,0.983,1.044,1.12,0.96,0.972,0.957,0.953,1.024,0.89,1.055,1.0,0.976,1.203,1.056,1.001,0.769,1.248,1.02,1.014,0.973,1.088,1.153,0.994,0.814,1.108,1.1 +NM_198243,0.891,0.985,0.99,1.052,0.96,1.143,1.116,0.731,1.009,0.939,0.976,1.063,0.836,1.013,0.994,1.224,0.898,1.056,1.067,0.913,0.961,1.069,1.087,0.858,1.096,0.866,1.029,1.085,1.039,0.908,1.208,0.972,0.997,1.03,1.117,0.946,1.154,1.13,1.113,0.971,1.215,1.052,1.259,0.877,0.945,0.99,0.99,0.978,0.793,1.068,1.1,0.964,1.072,1.025 +NM_198252,1.9889999999999999,2.019,2.287,1.905,2.044,2.65,1.957,1.415,2.274,2.03,1.595,1.4929999999999999,1.4849999999999999,1.7029999999999998,1.888,2.234,1.94,2.1390000000000002,2.372,2.768,1.693,2.397,2.3979999999999997,2.0060000000000002,1.732,2.945,2.013,1.9500000000000002,1.5459999999999998,2.373,1.9889999999999999,1.947,1.845,3.121,1.4009999999999998,1.799,1.8399999999999999,2.19,3.4299999999999997,1.7639999999999998,1.96,2.807,1.581,1.7690000000000001,2.122,1.712,1.5070000000000001,2.267,1.741,1.9829999999999999,2.294,1.52,1.669,2.176 +NM_198254,1.171,0.834,0.96,0.959,1.097,0.986,1.002,1.104,0.962,0.977,0.992,1.008,0.986,0.926,1.005,1.071,0.948,0.883,1.026,0.99,1.044,0.896,0.894,0.93,1.146,1.109,1.153,1.063,0.989,1.057,1.123,0.996,1.158,1.105,0.975,0.951,0.932,1.139,1.08,0.967,0.957,0.988,0.973,0.923,1.204,0.917,0.941,1.018,1.019,1.0,1.023,1.0,0.983,0.992 +NM_198265,1.184,0.988,1.058,0.95,1.097,0.951,0.736,0.94,1.055,1.034,0.99,1.159,1.08,0.931,0.906,0.916,1.061,1.057,1.003,1.04,0.97,0.904,0.996,1.109,1.079,1.132,1.105,1.033,0.846,0.905,1.006,0.954,0.932,0.994,1.113,0.992,1.046,0.909,1.016,0.955,0.914,1.03,0.881,1.071,0.952,0.995,1.199,1.026,1.01,1.197,1.09,0.929,0.926,0.984 +NM_198267,1.909,1.9469999999999998,2.016,1.874,2.065,2.175,2.073,1.955,2.034,1.971,2.088,2.173,2.1310000000000002,1.901,2.14,1.9329999999999998,1.996,2.1550000000000002,1.96,2.1,2.0949999999999998,2.059,2.162,2.032,2.003,1.6869999999999998,2.114,2.075,1.8210000000000002,2.218,2.134,2.029,2.178,1.883,1.908,2.053,1.958,1.85,2.012,1.9789999999999999,1.988,1.9619999999999997,1.853,1.831,2.0300000000000002,2.129,2.137,1.7389999999999999,1.842,1.913,1.976,2.0949999999999998,1.9929999999999999,2.239 +NM_198269,1.04,1.071,1.001,0.944,0.997,0.982,0.943,0.902,0.773,1.015,1.02,1.026,0.907,1.117,0.888,1.059,1.096,1.16,0.95,1.134,1.152,1.052,1.093,0.918,1.112,1.029,0.84,0.984,1.093,1.097,0.98,0.894,0.973,0.934,1.042,1.169,0.938,1.11,0.895,0.977,0.957,0.975,1.147,0.999,0.969,0.998,1.162,1.018,0.987,0.986,0.979,1.031,0.939,1.111 +NM_198270,0.83,0.99,0.821,0.775,0.997,1.42,1.0,0.88,1.113,0.803,1.634,1.046,0.82,1.0,0.944,1.218,0.839,0.944,0.9,1.32,0.729,1.025,1.232,0.731,0.815,0.883,1.013,0.983,0.815,1.295,0.932,1.213,1.86,1.228,0.702,1.146,1.099,1.121,1.656,1.168,0.764,1.276,0.911,0.868,0.725,1.351,1.163,0.921,1.084,0.713,1.493,0.919,0.811,0.955 +NM_198271,1.023,1.057,0.995,1.046,1.108,0.985,0.998,0.902,0.945,0.895,0.986,0.964,1.008,1.161,0.877,1.059,0.987,1.034,1.17,1.106,0.919,1.016,0.955,0.886,0.863,1.133,1.02,1.0,1.049,1.063,0.977,0.916,1.167,0.934,1.0,0.996,0.961,1.088,1.002,0.956,1.192,1.067,0.907,1.306,0.977,1.063,1.025,1.047,1.11,0.994,1.005,1.001,1.069,0.987 +NM_198272,0.234,0.992,0.315,0.659,0.243,2.499,1.436,0.248,0.221,0.213,2.102,0.243,0.217,0.298,1.344,1.901,0.224,0.875,0.214,1.859,0.273,0.258,1.928,0.252,0.716,0.249,0.267,0.253,1.218,2.971,0.245,1.189,0.888,2.005,0.273,0.793,1.887,0.22,1.447,1.269,0.272,1.736,1.206,1.2,0.246,1.621,0.566,0.231,1.29,0.227,1.276,0.501,0.245,1.386 +NM_198274,0.956,0.944,0.931,0.989,0.975,1.167,0.859,1.313,1.165,0.911,1.072,1.053,0.965,0.874,0.918,0.857,0.912,1.057,1.261,0.897,0.956,0.993,1.053,0.992,1.134,0.937,1.066,0.688,0.934,0.812,1.115,1.076,1.132,0.964,1.03,1.144,0.977,1.101,0.92,0.818,1.106,0.947,1.194,1.186,0.826,1.091,1.298,0.994,0.994,0.943,1.214,0.902,1.24,1.167 +NM_198275,1.726,0.723,1.79,1.028,4.162,0.872,0.764,2.465,3.674,2.167,0.833,1.643,1.658,1.425,1.766,1.299,1.658,1.675,2.883,0.754,1.342,2.159,0.694,1.922,0.753,1.617,1.977,2.421,0.605,0.754,2.608,0.734,1.414,0.844,4.228,0.883,0.724,2.136,0.724,1.026,2.011,0.833,1.067,0.763,2.58,0.796,2.164,2.807,0.9,1.561,0.789,0.768,2.15,0.816 +NM_198277,1.22,0.727,1.252,0.902,1.93,0.694,0.678,1.155,1.874,1.835,0.695,1.375,1.083,1.073,1.015,1.016,1.336,1.544,1.499,0.718,0.999,1.948,0.787,2.339,0.618,1.308,1.376,1.282,0.82,0.589,1.218,1.138,1.036,0.709,1.987,0.811,0.685,1.299,0.831,0.981,1.352,0.769,0.593,0.685,1.826,0.671,1.487,1.77,0.69,1.586,0.819,1.212,1.682,1.047 +NM_198278,0.694,0.917,0.908,0.57,0.774,1.131,0.594,0.516,0.679,0.83,1.974,0.538,0.538,0.551,1.238,1.908,1.005,0.756,0.765,2.209,0.789,0.58,2.184,0.771,0.793,0.747,1.205,0.717,0.666,1.658,0.711,2.93,0.83,1.565,0.526,0.732,1.785,0.744,1.814,0.611,0.743,1.906,1.243,1.46,0.723,1.862,1.667,0.659,1.493,0.798,2.643,1.667,0.628,2.036 +NM_198279,0.848,1.13,1.037,0.932,0.948,1.139,1.195,0.927,1.141,0.92,0.933,0.864,0.945,0.864,1.195,1.492,0.915,0.891,0.935,1.14,0.843,1.018,1.08,1.278,0.81,0.822,1.055,1.051,1.074,1.094,1.178,1.029,1.435,1.075,1.017,1.03,0.925,0.912,1.069,0.809,0.903,1.009,0.694,0.911,0.953,1.172,0.904,1.031,0.971,1.031,1.058,0.965,0.858,0.952 +NM_198280,1.075,1.094,0.941,0.891,0.915,0.869,1.022,0.854,1.033,1.122,1.07,1.015,0.998,0.869,0.884,0.952,1.049,0.952,1.102,0.999,0.697,0.853,0.966,0.865,0.92,1.119,1.135,1.022,1.107,0.958,0.928,1.061,0.823,1.113,1.052,0.945,0.928,1.079,1.235,1.046,0.952,1.021,1.02,1.094,1.033,0.87,0.984,1.064,1.076,1.205,0.953,0.798,1.047,1.119 +NM_198281,0.843,0.902,1.002,0.828,0.887,1.215,0.781,0.923,0.966,0.843,1.132,1.017,0.827,0.809,0.86,1.244,0.96,0.896,0.902,1.071,0.837,0.888,1.248,1.015,0.962,0.992,1.192,0.866,0.736,1.058,1.059,1.193,1.359,1.28,0.825,1.033,0.905,1.001,1.099,1.019,0.89,1.042,1.019,0.958,1.005,0.924,0.996,0.889,1.086,0.91,1.051,1.061,0.952,1.168 +NM_198282,0.947,0.964,1.44,0.955,0.992,0.934,0.815,0.922,0.96,1.001,0.987,0.917,1.065,1.121,0.993,0.879,1.418,0.899,1.129,0.937,0.999,0.91,0.91,0.898,0.937,0.99,2.107,1.008,1.215,0.934,0.859,1.085,1.733,0.903,0.966,1.03,1.025,0.905,1.254,0.948,1.28,1.115,0.842,0.898,1.131,0.951,0.975,0.862,0.953,1.477,0.98,1.322,1.445,1.113 +NM_198283,0.944,0.962,0.966,0.928,0.991,0.882,0.937,0.951,1.218,0.936,1.012,1.017,0.953,0.98,1.229,0.957,1.022,1.041,0.998,0.939,0.923,0.934,1.055,1.079,0.969,0.943,1.012,1.036,1.024,0.943,1.17,1.066,1.002,1.024,1.01,0.934,1.007,1.146,1.185,0.853,1.064,1.083,1.22,1.013,0.984,1.007,1.307,1.014,1.042,0.983,0.933,1.052,0.884,0.993 +NM_198284,1.339,0.653,2.418,1.141,1.615,0.874,0.787,0.702,3.328,1.557,0.559,1.22,0.707,1.546,1.023,0.628,3.473,0.801,0.984,1.35,0.762,1.018,0.991,2.482,0.611,1.351,3.07,1.738,0.681,0.868,1.931,1.54,1.315,0.798,2.204,2.264,0.712,0.997,0.834,1.718,1.394,0.715,0.868,0.753,1.537,0.747,1.006,1.001,0.761,1.216,0.726,0.851,1.079,1.879 +NM_198285,0.933,1.269,0.898,0.876,0.953,0.904,0.797,0.938,0.99,0.967,0.965,0.893,0.863,0.881,0.898,0.966,1.003,0.907,0.88,1.067,0.875,1.029,1.014,0.982,1.086,1.043,1.113,1.057,0.514,1.4,0.947,5.838,0.873,1.19,0.954,0.898,0.864,1.12,1.188,1.674,0.837,1.208,0.907,0.956,0.991,1.021,1.222,1.05,0.922,0.881,0.995,0.913,0.935,1.044 +NM_198289,0.995,0.924,0.967,0.986,0.945,1.028,1.081,1.061,1.189,0.972,0.96,0.957,0.907,1.028,0.911,1.005,1.172,1.074,0.9,1.166,1.016,1.035,0.954,1.196,0.994,1.217,1.245,1.061,0.853,1.001,1.024,0.96,1.035,0.999,1.121,0.972,1.002,1.045,1.124,1.109,1.053,1.031,1.043,0.965,0.9,0.945,1.014,0.959,1.089,1.176,0.97,1.006,0.989,0.981 +NM_198291,0.529,1.039,0.632,0.928,0.455,1.856,0.899,0.367,0.581,0.611,1.398,0.426,0.467,0.471,0.818,1.157,0.646,0.962,0.667,0.997,0.541,0.595,1.6,0.489,0.85,0.642,0.852,0.419,0.972,1.929,0.502,1.476,1.114,1.655,0.379,0.522,1.342,0.596,2.267,1.249,0.549,1.506,0.85,1.326,0.541,0.991,0.791,0.611,1.036,0.488,1.103,1.02,0.522,1.482 +NM_198313,2.123,1.986,2.01,1.9820000000000002,1.934,2.05,2.0540000000000003,2.116,1.976,2.079,2.124,2.1069999999999998,1.834,1.8599999999999999,2.472,1.9889999999999999,1.883,1.8599999999999999,2.094,1.9769999999999999,1.983,1.8399999999999999,2.029,1.8969999999999998,1.975,1.885,1.9249999999999998,1.8969999999999998,2.0389999999999997,2.076,2.202,1.851,2.162,2.09,1.9849999999999999,1.9809999999999999,2.011,2.0149999999999997,1.924,1.9929999999999999,2.167,2.006,2.323,1.967,1.874,2.168,1.916,2.146,2.083,2.056,1.9619999999999997,1.855,2.0869999999999997,2.21 +NM_198315,1.007,1.181,1.111,0.998,1.026,1.164,1.038,0.616,0.837,0.914,1.099,0.866,0.812,0.716,0.839,1.459,1.077,1.184,0.885,1.105,0.913,0.936,1.134,0.84,0.889,0.836,1.032,0.734,0.647,1.351,0.892,1.286,0.909,1.13,0.888,1.229,1.17,0.871,1.254,0.908,1.021,1.159,0.895,0.812,1.066,1.099,0.897,0.837,1.208,0.918,1.102,1.088,0.8,1.107 +NM_198318,0.72,0.877,0.773,0.835,0.653,0.992,0.433,0.422,1.158,1.133,0.623,1.151,0.954,0.534,0.679,1.292,0.899,0.915,1.131,0.595,0.653,0.945,1.637,1.58,0.661,1.057,1.375,0.595,0.358,0.899,0.803,1.336,1.974,1.141,0.173,0.941,0.89,0.937,2.394,1.524,0.959,0.936,0.584,2.387,1.258,0.678,1.245,1.046,1.006,0.983,0.787,1.023,1.12,1.357 +NM_198319,1.099,1.038,1.057,0.953,1.185,1.161,1.197,1.042,1.0,1.212,0.968,0.847,1.037,0.924,0.818,0.898,0.827,1.058,0.97,0.961,0.939,1.104,1.072,0.961,0.975,1.098,1.133,0.97,0.907,1.023,0.846,1.103,0.973,1.014,1.122,1.038,0.893,0.919,1.167,0.929,0.995,0.938,0.978,1.3,1.147,0.885,1.043,0.961,0.996,0.915,1.045,0.823,1.053,0.988 +NM_198321,0.986,0.945,0.94,0.787,1.137,1.02,1.014,0.917,1.014,0.892,0.91,0.949,1.11,1.014,1.236,0.936,1.025,0.878,1.04,1.053,1.11,0.984,0.927,1.034,1.077,0.985,1.035,0.891,0.873,0.955,0.964,1.06,0.987,0.966,1.01,1.057,0.957,0.994,1.02,0.903,1.028,1.059,1.128,0.874,1.014,0.866,1.001,0.796,1.149,1.119,1.055,0.956,0.92,0.946 +NM_198324,1.046,0.917,1.067,1.08,1.036,1.004,0.838,0.972,0.953,0.957,1.008,0.988,0.961,1.236,0.818,0.989,0.854,1.116,0.867,0.989,1.187,0.924,1.024,0.911,1.153,0.974,1.183,0.924,1.159,0.991,0.971,0.936,0.877,0.954,1.232,1.035,0.934,1.042,0.987,1.051,0.905,1.159,1.224,1.029,1.032,1.178,1.021,0.94,0.987,1.029,0.885,1.042,0.924,1.052 +NM_198327,0.92,1.022,1.01,1.035,1.074,0.999,0.826,0.988,1.053,0.811,1.063,0.943,0.993,1.11,1.005,0.763,1.09,1.051,1.126,1.037,0.971,1.01,1.016,0.916,1.073,0.99,0.989,0.928,0.896,1.11,1.166,0.958,0.94,1.047,1.172,0.963,1.132,1.066,1.001,1.073,0.888,1.031,1.101,0.962,1.027,0.887,0.848,0.961,0.959,1.054,1.034,0.998,1.018,1.11 +NM_198329,0.977,0.952,0.984,0.93,1.067,1.059,1.062,0.841,1.058,1.009,1.17,1.141,1.024,0.938,1.087,1.09,1.06,0.885,0.953,0.794,0.933,0.939,0.976,1.049,0.921,1.026,1.114,0.966,1.081,0.918,1.049,1.029,1.044,1.033,0.771,0.915,0.932,0.846,1.024,0.933,0.923,1.086,1.047,1.053,0.881,0.913,0.977,0.915,0.957,0.987,0.96,1.026,0.94,1.169 +NM_198330,0.866,0.867,0.972,0.953,1.063,0.935,0.851,0.822,0.925,1.094,0.869,1.0,1.06,0.85,0.862,0.985,0.962,0.971,1.052,1.088,0.868,1.062,0.867,0.991,0.906,1.03,1.118,1.007,0.885,1.011,1.046,1.047,0.904,0.881,0.89,1.073,0.981,1.035,1.117,0.837,0.964,0.879,1.022,1.165,1.118,0.912,1.059,1.01,1.092,1.108,1.027,1.074,0.979,0.907 +NM_198331,1.808,2.128,2.191,1.937,2.298,2.284,1.718,1.896,2.415,2.132,1.8,2.117,1.85,1.842,2.2190000000000003,2.234,2.077,2.367,1.9780000000000002,2.375,1.625,2.042,2.137,2.325,1.6440000000000001,1.88,2.374,2.0599999999999996,1.5499999999999998,2.163,1.9929999999999999,2.447,1.786,1.9849999999999999,1.5790000000000002,1.822,1.936,2.1079999999999997,2.2359999999999998,1.774,1.9769999999999999,1.9789999999999999,1.7080000000000002,1.651,2.274,1.853,2.29,1.8399999999999999,1.873,1.9009999999999998,2.2030000000000003,1.786,2.0460000000000003,1.943 +NM_198333,0.877,1.017,1.045,1.038,0.998,0.949,0.984,0.801,0.896,0.874,0.867,1.011,0.858,0.867,0.892,1.007,1.013,1.024,0.924,1.011,0.885,1.028,0.898,0.752,0.989,0.938,1.06,1.141,1.019,1.057,0.913,1.079,1.0,0.944,1.007,1.122,1.058,0.97,0.924,1.071,0.967,1.114,1.079,1.051,1.082,1.01,1.146,0.973,0.896,0.998,1.051,1.002,0.969,1.136 +NM_198334,0.69,1.046,0.752,0.738,0.633,0.911,0.467,0.263,0.76,0.755,1.026,0.434,0.39,0.487,0.642,1.11,0.853,0.962,1.08,0.643,0.525,0.986,1.264,0.774,0.977,0.709,1.31,0.398,0.724,1.352,0.472,1.539,2.088,1.141,0.161,1.041,1.239,1.027,2.327,1.175,0.737,1.367,0.634,1.676,0.641,0.862,1.02,0.695,1.098,0.769,1.098,0.892,0.702,1.141 +NM_198336,0.725,0.847,1.309,0.878,0.875,1.406,0.921,0.932,0.801,0.853,1.508,0.926,0.926,0.868,0.724,1.988,1.191,1.162,1.44,0.869,0.938,0.793,2.045,1.084,0.856,0.727,0.977,0.767,0.752,1.471,0.805,1.039,1.2,1.004,0.938,1.014,1.178,1.118,1.565,1.025,1.106,0.819,1.128,1.016,1.138,1.573,1.363,0.795,0.923,1.36,1.334,0.994,1.238,0.921 +NM_198337,0.418,1.157,0.976,0.818,0.682,1.788,1.105,0.309,0.584,0.644,1.907,0.427,0.371,0.476,0.814,3.324,0.761,1.305,1.144,1.379,0.451,0.406,4.143,0.681,1.066,0.398,1.141,0.553,0.594,3.714,0.434,1.244,1.33,1.672,0.297,0.911,2.655,0.405,1.19,1.624,0.996,1.149,1.468,0.796,0.671,4.866,1.359,0.402,1.598,0.504,3.273,0.619,0.665,0.832 +NM_198353,1.117,0.943,1.151,1.037,0.852,1.002,0.932,0.879,1.074,0.967,1.086,0.945,1.029,1.078,0.869,1.048,0.905,1.072,1.068,1.072,0.988,1.002,1.041,0.999,1.238,1.076,0.953,1.008,1.331,0.935,1.078,0.989,1.058,1.086,0.995,1.05,0.903,0.922,0.835,1.001,0.999,1.118,1.163,1.167,0.924,0.937,0.922,1.015,1.141,1.079,0.911,0.988,1.029,1.003 +NM_198381,0.921,0.917,1.068,1.053,1.139,1.189,0.841,0.993,0.989,0.888,0.889,1.023,0.968,1.193,0.916,0.8,1.048,0.978,0.978,1.11,0.921,1.176,0.948,1.101,0.883,1.038,1.007,1.004,1.018,1.02,0.989,0.845,1.075,0.984,1.114,0.989,1.112,1.161,0.879,1.23,0.932,1.08,0.986,0.856,0.961,1.198,0.83,1.082,0.828,0.91,1.02,1.19,1.082,1.016 +NM_198389,1.137,0.846,1.721,0.841,1.069,0.945,0.686,0.971,0.961,1.171,0.737,1.074,0.765,0.76,0.824,0.849,1.585,0.991,1.236,1.019,0.905,0.878,1.251,1.521,0.678,1.213,2.237,0.887,0.608,1.152,0.843,8.266,1.434,0.854,0.699,0.881,0.704,0.862,1.802,2.473,1.309,1.008,0.947,0.834,1.358,1.077,1.275,1.15,0.952,1.138,0.907,2.628,1.594,1.557 +NM_198390,1.108,0.856,0.802,1.091,0.986,1.024,1.085,0.976,1.171,1.039,1.003,0.909,1.054,0.929,1.082,0.942,0.869,0.914,0.945,1.029,0.788,1.014,0.929,0.986,1.042,0.96,0.9,1.087,0.89,1.081,1.064,1.123,0.943,0.924,1.132,0.913,1.057,1.083,1.196,0.919,1.036,1.009,0.933,1.36,0.882,1.039,1.14,0.886,0.999,0.973,1.053,0.962,0.763,0.932 +NM_198391,0.859,1.032,1.069,0.759,1.004,1.017,0.922,1.054,1.161,1.049,0.919,0.999,0.964,0.865,0.965,1.047,1.037,0.936,1.003,0.87,1.028,1.001,1.028,0.925,1.015,1.038,1.048,0.986,0.676,0.948,0.956,1.03,0.935,1.049,0.98,0.92,1.032,0.938,0.92,0.992,0.892,1.082,0.973,0.984,0.896,1.077,1.021,0.852,0.913,1.038,1.109,1.119,0.971,0.931 +NM_198393,0.939,1.15,1.124,0.912,0.792,0.921,0.934,0.99,0.96,1.144,1.022,1.077,0.984,1.157,0.951,1.047,0.909,1.012,1.121,1.005,1.133,1.0,1.148,1.018,0.988,1.026,1.021,0.878,1.241,1.031,1.086,0.954,1.023,0.979,1.03,0.987,0.894,1.05,0.873,1.024,0.922,1.173,1.171,0.867,1.01,0.999,0.913,0.94,0.981,0.989,0.978,0.92,0.978,1.211 +NM_198395,0.631,0.989,1.178,0.546,0.931,1.073,0.69,0.496,1.164,1.147,0.876,1.384,0.621,0.558,0.69,1.423,0.852,0.903,1.007,0.926,0.476,0.913,1.242,1.228,0.479,0.71,1.718,0.948,0.458,1.064,0.951,1.062,2.625,1.038,0.0678,0.921,1.173,1.119,1.456,1.141,1.158,0.979,0.611,0.78,1.246,0.947,1.105,0.853,1.052,0.901,1.131,1.141,0.752,1.871 +NM_198396,1.003,1.014,1.038,1.007,1.066,0.939,1.121,1.086,0.927,0.878,1.104,0.971,1.182,1.021,1.069,0.911,0.91,0.883,1.028,0.947,1.158,0.892,0.976,0.923,1.075,0.97,1.076,0.912,1.1,1.054,1.111,1.15,0.915,0.987,0.92,0.968,1.102,0.954,0.922,1.031,1.061,0.902,1.081,0.934,1.114,0.965,0.948,1.037,0.919,1.027,1.029,1.12,0.998,1.073 +NM_198397,1.012,1.06,1.071,0.955,0.955,1.031,0.944,1.234,0.958,1.002,0.932,1.059,1.121,0.974,1.108,0.962,1.061,1.101,1.131,1.069,1.074,1.061,0.963,0.985,0.984,1.045,0.964,1.154,1.113,0.984,1.051,0.99,0.993,0.973,0.976,0.941,0.953,1.138,1.047,0.96,1.037,0.968,1.196,1.064,0.981,0.886,1.153,0.94,1.106,0.95,0.955,0.908,0.982,0.972 +NM_198399,2.068,1.9749999999999999,2.109,2.038,1.942,1.818,2.2039999999999997,2.335,1.959,1.9740000000000002,2.2190000000000003,1.99,2.2169999999999996,2.128,1.927,2.005,2.113,1.9609999999999999,2.182,2.067,2.053,2.0949999999999998,1.9609999999999999,1.948,1.897,1.986,1.7810000000000001,2.038,1.588,1.9699999999999998,2.2960000000000003,1.893,1.9209999999999998,1.849,2.184,2.126,2.028,1.9780000000000002,1.943,1.767,2.2110000000000003,1.7719999999999998,1.789,1.9,2.034,2.091,2.12,2.027,2.099,2.277,2.029,1.9989999999999999,1.972,2.058 +NM_198400,1.041,1.015,0.881,1.03,1.135,0.967,0.945,1.104,0.987,1.005,0.884,0.971,0.98,1.052,1.145,1.058,0.96,1.028,1.191,0.984,1.127,0.855,1.105,0.998,0.927,1.083,1.057,1.025,1.101,0.964,0.975,1.042,0.898,0.972,0.947,1.036,1.065,0.987,1.093,1.144,1.109,0.958,1.062,1.019,0.921,0.875,1.025,0.978,1.04,0.98,1.082,0.953,0.968,0.847 +NM_198401,0.846,1.103,1.2,0.807,0.911,0.932,0.847,0.954,1.28,0.915,0.999,1.069,0.968,0.73,0.987,1.482,0.772,1.025,1.38,0.932,0.79,1.072,1.151,1.036,0.848,1.038,0.828,1.074,0.678,1.154,1.25,1.111,1.708,1.301,0.526,1.093,0.973,1.075,0.882,0.943,0.993,1.178,0.706,0.887,0.936,0.997,0.786,0.973,0.773,1.001,0.815,0.794,0.833,1.654 +NM_198402,0.485,1.161,1.457,0.573,0.96,1.793,0.626,0.685,1.078,0.999,0.926,0.741,0.571,0.413,0.925,2.401,0.721,1.099,1.227,1.142,0.453,1.001,1.289,1.171,0.441,0.56,1.325,0.994,0.538,1.222,0.733,1.252,2.443,1.649,0.222,0.535,1.146,0.967,1.838,0.659,0.953,1.215,0.472,1.007,0.982,1.079,0.821,0.652,0.993,0.795,1.124,0.609,0.789,1.496 +NM_198404,0.861,1.07,0.867,0.913,0.903,0.967,1.066,1.012,1.094,0.999,0.95,1.077,0.953,1.007,1.183,1.177,1.036,0.893,1.085,1.135,1.036,0.993,0.972,0.977,0.941,1.159,1.069,1.048,0.94,0.924,0.807,1.001,0.971,1.076,0.986,1.004,0.885,0.907,0.915,0.913,1.083,0.939,0.819,0.932,0.911,1.064,0.889,1.084,1.114,0.862,0.922,1.138,1.012,0.85 +NM_198407,0.933,1.0,0.939,1.064,1.138,1.083,1.236,0.881,0.82,0.972,0.984,1.071,1.088,0.98,1.148,0.97,1.01,0.925,1.024,0.926,1.047,1.045,0.93,0.98,1.116,1.044,1.007,1.064,0.829,1.051,1.098,1.037,1.016,1.029,0.953,1.019,1.074,0.981,0.947,1.0,1.101,0.91,1.165,0.942,1.123,0.952,0.883,0.97,0.915,0.945,1.011,0.831,1.016,1.04 +NM_198427,2.04,2.036,1.992,1.79,2.075,2.008,1.859,1.9859999999999998,2.278,1.771,2.024,1.9940000000000002,2.023,2.0629999999999997,2.071,1.9529999999999998,2.128,1.873,1.645,1.955,2.093,1.9909999999999999,2.1189999999999998,1.9489999999999998,2.019,1.916,1.8609999999999998,1.956,2.066,1.919,1.8279999999999998,1.7610000000000001,2.3739999999999997,1.8559999999999999,2.124,2.101,2.145,2.153,1.88,1.9989999999999999,1.911,1.909,1.814,2.053,1.8010000000000002,1.956,2.028,2.008,2.027,2.106,2.0700000000000003,1.916,1.911,1.722 +NM_198428,0.984,1.061,1.072,1.037,0.969,1.057,0.891,1.043,0.94,1.011,1.002,1.098,1.131,0.95,1.37,0.902,1.162,0.833,1.041,1.153,1.006,1.019,1.161,0.751,0.942,1.097,1.057,1.275,0.962,0.976,0.961,1.096,1.077,1.202,0.895,0.972,0.83,0.967,0.925,0.901,1.13,0.965,0.985,0.816,1.066,1.051,1.029,0.964,0.931,1.055,0.998,1.069,1.198,0.964 +NM_198431,1.068,1.018,1.152,0.989,1.135,0.823,0.811,1.202,1.173,1.33,1.006,1.049,0.799,0.949,0.831,1.089,1.15,0.963,1.087,0.824,0.982,0.919,1.041,1.11,0.969,1.045,1.308,0.996,0.686,0.974,1.344,0.953,1.173,0.928,0.805,0.814,0.815,1.062,1.099,0.844,1.201,0.883,0.788,0.98,1.261,0.872,1.01,0.97,1.012,0.982,0.975,1.175,1.024,1.064 +NM_198437,0.683,1.206,0.885,1.24,0.614,1.121,0.934,0.491,0.719,0.758,1.054,0.786,0.66,0.562,0.756,1.558,0.643,0.931,1.02,0.924,0.69,0.63,2.479,0.874,0.751,0.675,1.354,0.632,0.674,1.334,0.661,0.942,3.218,0.913,0.344,2.123,1.273,0.627,2.408,1.548,0.915,0.766,0.797,2.621,0.92,1.233,1.177,0.7,1.799,0.763,1.334,2.225,0.773,3.031 +NM_198439,0.881,1.114,1.069,0.935,0.915,1.202,0.855,1.031,0.997,0.966,1.003,0.931,0.961,1.198,1.32,1.023,1.033,0.999,1.011,1.106,0.975,0.933,0.891,0.887,0.923,0.85,1.133,1.041,0.747,1.103,0.965,1.013,0.87,1.103,0.986,1.152,1.116,1.108,0.941,0.987,1.04,0.935,1.021,0.985,0.998,0.958,0.85,0.941,0.923,0.849,0.949,0.861,1.028,1.011 +NM_198440,0.82,1.508,0.966,1.079,0.923,1.476,1.402,0.918,0.846,0.863,1.009,0.877,0.95,0.989,0.821,1.15,0.812,1.017,0.905,1.126,0.836,0.836,1.221,0.908,1.492,0.848,0.848,0.898,1.098,1.118,0.924,1.919,1.181,1.812,0.864,1.001,1.194,0.883,1.355,0.904,0.779,1.987,0.908,0.994,0.901,0.995,1.011,0.858,0.857,0.825,1.291,0.876,0.998,1.547 +NM_198442,1.181,1.012,1.114,0.896,0.93,1.001,0.782,1.119,1.063,2.276,0.906,1.079,0.946,0.711,0.8,1.109,0.993,0.988,1.312,1.047,1.217,0.919,1.206,1.377,0.944,1.102,1.964,1.049,1.072,0.851,1.035,0.956,1.598,0.728,0.89,1.109,1.06,1.032,0.963,0.945,1.189,0.976,0.854,0.982,2.079,1.076,1.527,0.892,0.964,2.007,0.959,1.207,1.813,0.999 +NM_198443,1.111,0.998,1.049,0.982,0.958,1.063,0.903,1.062,0.934,0.963,1.021,0.929,1.0,0.944,0.921,1.04,1.045,0.846,0.987,0.959,1.083,1.039,0.943,0.972,1.045,1.01,1.055,0.973,1.055,1.051,1.073,1.086,1.046,0.994,0.874,1.062,1.191,0.976,0.904,1.135,0.998,1.007,0.792,1.044,1.069,0.993,1.026,0.972,1.043,0.879,0.937,0.923,0.913,0.924 +NM_198444,0.912,0.999,1.018,1.108,0.984,0.957,0.883,1.006,1.029,0.905,0.882,1.029,0.98,0.92,1.123,0.968,0.977,0.994,1.15,1.049,1.1,0.866,0.786,0.96,0.926,0.965,1.081,1.047,1.004,0.899,0.859,0.85,0.885,1.023,1.134,1.126,1.072,1.05,0.982,0.982,0.998,1.02,1.078,1.022,1.051,0.946,1.019,0.945,1.291,0.986,0.922,0.969,1.023,1.074 +NM_198446,0.609,1.18,1.053,0.612,1.073,1.12,0.542,0.49,0.988,1.252,1.111,0.997,0.556,0.451,0.696,1.212,0.962,1.017,1.093,1.241,0.364,0.615,0.98,1.373,0.679,0.75,0.925,0.937,0.405,1.338,0.694,1.555,1.377,1.232,0.16,0.855,1.223,0.987,1.181,0.652,1.313,1.061,0.793,1.648,1.061,1.34,1.291,0.729,1.008,0.734,1.219,0.937,0.884,1.417 +NM_198447,0.551,1.181,0.549,0.818,0.554,2.165,0.886,0.569,0.599,0.511,2.995,0.473,0.625,0.592,1.017,3.511,0.498,0.768,0.575,1.346,0.557,0.573,1.739,0.557,0.874,0.64,0.593,0.558,0.76,1.783,0.568,0.981,1.48,1.525,0.585,0.881,2.727,0.595,1.963,3.185,0.519,2.412,1.59,1.868,0.564,3.066,2.0,0.625,1.916,0.495,1.626,0.628,0.516,2.187 +NM_198448,0.887,0.977,1.179,62.46,0.816,1.053,1.129,1.027,1.057,1.08,0.877,0.908,1.063,1.284,0.971,0.814,0.733,1.019,0.69,0.916,0.886,0.894,0.752,0.969,1.03,1.174,0.981,1.084,1.442,1.102,0.846,1.005,4.67,1.259,1.112,0.979,1.132,1.158,0.861,2.588,1.042,0.977,1.314,1.027,1.066,0.849,0.847,0.927,1.406,0.87,0.924,1.335,0.989,0.934 +NM_198449,0.97,1.026,1.041,0.993,1.003,1.544,1.121,0.911,0.906,0.778,1.246,0.853,0.879,0.652,0.868,1.269,0.843,0.941,0.961,1.304,0.985,0.856,1.114,0.898,1.031,1.077,1.136,0.878,0.703,1.055,0.938,1.358,3.162,0.843,0.831,1.067,1.268,0.964,1.749,0.96,0.814,1.095,1.097,1.73,0.852,1.908,0.911,0.821,1.469,0.874,1.262,0.888,0.898,1.165 +NM_198450,1.088,0.842,1.118,0.862,1.02,1.034,0.848,0.845,1.26,1.013,1.053,1.193,0.824,0.966,0.881,1.075,1.122,1.052,1.357,0.873,0.866,1.084,0.733,1.113,0.767,0.951,1.278,1.251,0.7,0.88,1.204,0.897,1.693,1.197,1.204,0.993,0.935,1.05,1.149,0.804,1.252,1.03,0.813,1.083,1.244,1.114,1.194,1.03,0.904,0.919,0.908,0.909,1.07,1.161 +NM_198451,0.891,1.034,1.177,1.021,0.942,1.064,0.989,1.022,0.88,0.867,1.012,0.936,1.082,0.861,0.867,0.965,0.946,1.034,1.17,0.975,0.94,1.028,1.032,0.949,1.044,0.952,0.956,1.11,0.799,0.997,1.0,1.149,1.055,0.993,0.985,1.024,0.979,0.983,1.02,1.001,0.935,1.042,0.992,0.813,1.0,1.132,0.912,1.076,0.964,0.884,1.024,0.931,0.914,0.972 +NM_198452,0.926,0.868,0.975,1.134,1.122,1.022,1.077,0.987,1.019,0.963,1.296,0.999,1.008,0.791,0.828,1.059,0.99,0.877,1.029,1.055,1.061,0.826,1.152,1.035,0.865,1.045,1.085,1.104,0.839,1.001,1.035,1.002,1.063,1.253,1.056,0.946,1.029,0.997,0.867,1.018,1.593,1.188,0.931,0.896,1.037,0.992,1.045,0.854,0.932,0.895,1.18,1.024,1.007,0.965 +NM_198459,1.02,0.87,1.014,0.847,0.984,1.112,0.922,1.26,0.953,0.966,0.856,0.955,0.871,1.218,1.134,1.126,1.138,0.979,1.046,0.78,1.027,0.973,0.902,0.871,0.99,0.996,0.987,1.119,0.818,0.987,1.004,0.989,1.07,1.006,1.094,0.909,1.062,1.057,0.863,0.985,1.129,0.905,1.198,1.013,0.942,0.92,1.05,0.908,1.02,1.011,1.009,0.999,1.061,1.068 +NM_198461,0.973,1.062,1.163,0.897,1.043,0.998,0.892,0.881,0.825,0.946,1.173,1.007,1.008,1.247,0.952,1.146,1.188,1.037,1.05,0.951,1.026,1.108,0.999,1.063,0.929,1.126,1.044,0.916,0.997,1.003,1.039,1.018,1.089,0.901,1.015,1.134,1.002,0.942,0.887,1.048,1.059,1.036,0.985,0.974,1.014,0.911,1.012,0.947,0.882,0.885,1.008,0.991,0.92,0.974 +NM_198463,1.054,0.796,1.226,0.994,1.318,0.921,0.76,1.179,1.204,1.044,0.87,1.081,1.221,1.074,1.052,1.004,1.087,1.012,1.143,1.003,0.827,1.291,1.078,1.123,0.865,0.861,1.547,1.164,0.62,0.799,1.269,0.81,1.449,0.856,1.734,0.924,0.887,1.537,1.179,1.018,1.014,0.827,1.028,0.854,1.114,0.783,0.964,1.28,0.733,1.038,1.196,0.924,1.079,0.951 +NM_198464,1.087,1.072,0.937,0.882,1.355,1.0,0.885,1.013,0.991,0.941,0.914,1.127,1.077,0.942,1.23,1.046,1.422,0.936,0.993,0.915,0.907,1.087,0.921,0.945,1.048,0.987,1.062,1.081,0.859,0.891,1.047,0.965,0.916,0.961,1.333,0.82,0.967,1.17,0.937,1.042,1.232,0.856,0.874,0.801,1.067,1.106,1.021,1.107,0.947,1.196,0.93,0.848,0.887,0.975 +NM_198465,1.095,0.854,0.939,0.938,0.851,0.974,0.857,0.993,1.148,0.945,1.007,1.097,1.064,1.119,1.011,0.942,1.035,1.053,0.934,0.975,1.051,0.948,1.014,1.026,1.074,0.939,1.108,0.99,0.93,0.955,1.065,1.031,0.923,1.05,1.015,1.093,1.013,0.995,1.078,0.936,1.033,1.179,0.794,1.237,1.053,0.832,1.106,1.182,0.982,1.015,0.938,1.04,0.999,0.967 +NM_198467,0.905,1.074,1.213,0.78,0.953,1.119,0.77,0.783,1.124,0.905,0.966,0.809,0.844,0.964,1.103,1.134,0.926,0.892,1.073,0.951,0.826,0.88,1.326,0.972,0.874,1.074,1.164,1.003,0.579,1.205,1.002,0.998,1.668,1.03,0.846,0.89,0.935,0.933,1.04,0.873,1.018,1.094,0.681,1.178,0.917,1.11,0.987,0.882,1.014,0.976,0.933,0.846,1.105,1.169 +NM_198468,1.101,1.067,1.069,0.965,0.93,1.129,0.986,0.854,0.88,1.079,0.971,0.986,0.873,1.209,0.944,0.938,1.025,1.076,1.146,0.963,0.813,1.012,1.0,0.974,0.858,0.932,1.164,1.041,0.709,1.147,0.99,1.132,1.814,0.941,0.809,0.959,0.966,1.177,1.426,0.877,0.959,0.842,0.787,1.008,1.004,1.012,1.023,0.945,1.005,1.084,1.065,0.912,0.835,1.26 +NM_198469,1.013,1.027,0.881,0.988,0.974,1.037,0.968,1.139,0.913,0.947,0.956,0.951,1.016,1.056,0.999,1.126,1.169,1.018,0.94,1.066,0.892,0.903,0.943,0.999,0.998,0.887,1.018,0.997,1.113,0.909,0.968,1.254,1.027,1.023,1.04,0.991,1.0,1.004,1.029,0.982,1.11,1.018,1.043,1.025,1.141,1.047,0.968,0.892,1.028,1.067,1.02,0.981,0.934,1.013 +NM_198472,0.885,0.946,0.876,0.837,0.567,0.902,0.833,0.724,0.739,0.738,2.083,0.787,1.086,0.71,1.81,4.211,0.643,0.991,1.258,2.007,0.514,0.866,1.186,0.805,0.614,0.927,0.666,0.915,0.791,1.33,0.771,1.387,1.62,1.284,0.671,2.547,2.261,0.537,1.708,1.177,0.864,1.606,0.997,1.908,0.786,2.98,2.213,0.998,1.693,0.776,1.846,0.997,0.92,0.658 +NM_198473,0.964,0.981,1.113,0.953,1.098,1.029,1.281,0.793,0.87,1.034,0.913,1.189,1.197,0.98,0.979,1.102,1.068,0.976,1.062,1.075,0.973,0.844,1.102,1.001,0.923,1.053,0.868,0.93,0.621,0.997,0.908,0.897,1.163,1.071,1.128,1.01,0.973,1.054,0.839,1.199,0.945,0.92,0.839,0.975,0.933,0.831,1.007,0.951,1.004,1.081,1.062,1.226,1.008,0.952 +NM_198474,0.908,1.198,1.124,0.952,0.794,1.084,1.107,0.922,0.923,0.92,0.935,0.966,1.032,0.821,0.93,1.145,0.736,0.873,0.889,1.067,0.783,0.927,1.39,1.02,0.931,0.883,0.714,1.014,0.832,1.379,0.594,4.095,1.201,1.618,0.797,0.802,1.075,1.045,1.064,1.047,1.022,1.431,0.956,1.08,0.937,1.17,0.974,0.923,0.91,0.873,0.954,0.945,0.816,0.95 +NM_198475,1.132,0.925,0.992,0.986,1.202,1.003,0.96,1.078,0.915,1.132,0.928,0.894,0.98,0.939,1.02,1.076,1.15,1.337,1.133,1.003,1.182,1.011,1.114,1.147,1.097,1.03,0.986,1.052,0.996,0.87,1.132,0.927,1.104,1.038,0.995,0.939,1.052,0.972,0.969,0.957,1.086,1.036,1.13,0.969,1.058,1.049,1.078,0.954,1.028,1.212,1.014,0.901,1.365,1.153 +NM_198476,0.835,1.115,0.943,0.861,0.906,1.122,0.795,0.842,0.795,0.897,1.034,0.88,0.855,0.993,1.065,1.229,0.988,1.008,0.811,1.338,0.746,0.849,1.318,0.911,0.957,0.841,1.143,0.835,0.853,1.282,0.98,0.803,1.073,1.087,0.671,0.943,1.084,0.872,0.879,1.028,0.959,1.002,1.072,1.009,0.917,1.013,0.923,0.725,1.143,0.884,1.207,0.969,1.095,1.286 +NM_198477,1.368,1.31,1.311,1.89,0.845,2.257,1.733,1.324,1.474,0.73,0.71,1.092,1.881,0.965,0.824,0.306,1.3,1.484,0.96,1.446,0.453,1.202,0.799,0.855,5.473,1.485,1.223,0.937,0.78,2.607,0.934,1.363,0.581,2.437,1.132,0.222,1.337,0.962,0.892,0.237,1.671,1.203,0.406,0.285,1.637,0.281,0.68,1.713,0.305,1.473,1.722,0.681,0.882,0.363 +NM_198478,1.173,0.908,1.276,0.897,1.533,0.9,0.931,0.851,1.281,1.663,1.045,1.427,1.019,0.841,1.119,0.987,1.181,1.215,0.989,0.997,1.039,1.061,0.864,1.524,1.055,1.1,1.056,0.93,0.9,0.998,1.083,0.921,0.971,1.028,1.079,0.911,0.953,1.332,0.88,0.979,0.992,0.876,0.937,0.947,1.341,0.985,1.113,1.021,0.923,0.921,1.097,0.949,1.093,0.981 +NM_198481,0.937,0.891,1.016,1.033,0.996,1.004,0.939,1.133,0.962,1.049,1.006,0.879,0.928,1.215,0.879,0.793,1.002,0.794,0.917,0.822,0.97,0.99,1.022,0.835,1.016,0.952,1.117,0.942,1.034,0.959,1.01,0.901,0.971,0.941,0.994,0.996,1.081,1.025,0.96,1.008,0.824,0.989,0.978,0.997,1.056,1.043,0.984,1.009,0.904,0.93,0.963,0.901,0.886,1.049 +NM_198482,1.025,1.033,0.966,0.953,1.035,0.979,1.124,0.871,0.899,0.988,1.009,0.944,1.084,0.942,0.98,1.049,1.05,0.984,0.967,0.896,1.192,0.909,0.971,1.039,1.082,0.961,0.999,0.951,0.741,1.027,1.031,0.97,1.062,0.97,1.18,0.968,1.178,1.035,1.032,1.0,0.978,1.02,1.047,1.029,0.882,1.029,0.917,0.923,0.996,0.992,0.973,1.012,1.075,0.987 +NM_198483,0.993,1.001,0.995,1.091,0.947,0.885,0.924,0.918,1.064,0.952,0.884,0.975,0.917,0.9,0.906,1.218,0.913,1.081,1.029,1.04,0.994,0.909,0.851,0.968,1.14,1.055,1.039,1.028,1.618,1.071,0.973,0.953,1.038,1.041,1.03,0.962,1.026,1.052,0.98,1.041,1.011,0.956,1.08,1.069,0.945,1.064,0.838,0.915,0.991,0.883,1.005,1.1,0.91,1.201 +NM_198484,0.832,1.048,1.074,0.778,0.931,1.13,0.849,0.87,1.057,0.82,0.971,0.873,0.909,0.911,0.947,1.214,0.94,0.899,0.842,1.008,0.814,0.868,1.178,1.022,0.804,0.864,0.998,0.938,0.772,1.098,0.96,1.144,1.009,1.246,0.705,0.859,0.985,0.875,0.985,0.995,1.065,1.156,0.818,0.985,1.085,1.002,1.037,0.756,1.183,0.819,1.202,0.975,0.973,1.711 +NM_198486,0.945,0.786,1.37,0.982,0.955,0.887,0.671,0.567,1.336,1.122,0.933,0.608,0.627,0.798,0.922,0.93,0.811,0.738,0.763,0.878,0.68,0.589,1.064,1.012,0.783,0.94,0.95,0.736,0.42,1.154,0.935,1.684,1.97,1.08,0.422,1.148,0.787,0.665,1.632,1.054,1.293,1.204,0.816,1.624,1.21,0.976,0.838,0.553,0.985,0.813,1.112,0.729,0.826,2.177 +NM_198488,0.731,0.809,1.379,0.559,1.043,0.721,0.401,0.462,1.098,1.114,0.656,0.863,0.408,0.602,0.837,1.266,1.22,0.78,1.713,0.653,0.974,1.122,0.955,1.019,0.31,1.017,1.307,0.796,0.391,0.892,0.917,0.999,2.001,0.901,0.342,1.326,0.606,1.059,1.217,1.321,1.102,0.721,0.692,1.366,1.406,1.165,0.904,1.051,1.236,1.117,0.843,0.764,1.801,1.27 +NM_198489,0.992,0.981,1.058,0.967,0.997,0.906,0.885,0.886,1.234,0.893,0.958,0.975,0.895,0.945,1.34,0.867,0.954,1.068,0.98,0.878,0.949,1.014,0.986,1.132,0.839,1.019,1.094,1.14,0.939,0.965,1.054,1.301,1.277,1.205,1.148,1.279,1.169,0.905,1.109,1.158,1.132,0.931,0.857,0.818,1.066,1.091,0.972,0.985,0.903,0.931,1.052,0.974,0.938,1.501 +NM_198491,1.017,1.053,0.952,1.072,0.961,1.034,0.845,1.01,1.025,0.825,1.079,1.006,1.112,0.907,0.772,1.011,1.031,1.025,0.905,0.978,0.92,1.017,1.021,0.986,1.01,0.941,0.859,1.051,0.849,1.013,0.953,0.895,0.937,1.094,1.101,0.948,1.013,1.071,0.976,0.963,1.005,1.175,0.871,0.951,0.995,0.995,1.011,0.872,1.148,0.948,0.968,0.936,1.1,1.054 +NM_198492,0.977,1.114,0.862,0.922,1.077,1.105,0.948,0.956,0.723,0.989,1.054,0.938,0.815,1.228,0.876,1.029,0.949,0.949,0.982,0.966,1.122,1.02,1.235,0.934,0.967,0.943,1.03,0.917,0.954,1.068,0.858,1.123,1.16,1.119,0.977,0.873,0.946,0.974,1.069,1.086,0.952,0.88,0.886,0.946,1.148,1.068,1.002,1.134,1.017,1.056,1.071,1.163,0.99,0.88 +NM_198494,0.916,0.99,1.139,1.068,0.966,1.164,0.915,0.867,1.047,1.03,1.107,1.029,0.874,0.922,0.9,1.022,0.966,0.976,1.05,1.024,1.107,0.77,1.042,1.145,1.035,0.915,1.167,0.948,0.956,1.003,1.096,1.112,1.144,1.056,1.065,1.013,0.98,0.938,0.972,0.937,1.019,0.903,0.844,1.157,0.94,1.073,1.0,1.07,0.962,1.171,1.031,0.98,0.893,1.04 +NM_198495,0.599,0.489,1.029,1.176,1.359,0.721,0.898,0.687,1.524,1.016,1.465,0.594,0.493,0.714,1.083,1.652,0.95,1.1,0.797,1.739,0.794,0.582,0.547,0.571,0.517,0.577,1.421,0.673,0.91,2.155,1.261,1.992,0.803,2.003,0.716,0.78,1.601,0.732,0.716,0.529,1.22,0.924,1.055,1.18,0.48,0.776,0.934,0.539,1.342,1.041,1.535,1.52,1.48,2.217 +NM_198498,0.807,1.166,0.872,1.049,0.856,1.213,0.983,0.911,0.897,0.782,1.525,0.871,0.791,1.028,1.076,1.343,0.973,0.822,1.006,0.988,0.922,1.036,1.301,0.88,0.993,0.763,0.815,0.872,1.182,1.638,0.873,1.085,0.824,1.34,1.013,1.419,1.273,0.804,1.362,0.953,0.694,1.195,1.133,1.962,0.907,1.144,0.978,0.816,1.108,0.936,1.15,1.111,0.756,0.957 +NM_198499,1.032,0.971,1.047,1.032,1.112,0.944,0.958,1.098,0.922,1.127,0.918,1.168,1.037,0.906,0.973,1.014,0.947,1.06,0.91,1.143,0.872,1.215,0.94,0.975,0.955,0.939,1.028,0.902,0.746,1.034,1.255,0.993,1.019,1.029,1.144,1.101,0.991,1.028,1.034,0.903,1.224,1.0,0.914,0.978,0.933,1.135,1.087,0.957,1.022,0.941,1.044,1.085,0.917,1.009 +NM_198501,1.071,0.968,0.925,0.991,1.371,1.117,1.156,0.817,1.224,0.932,1.066,1.036,0.996,1.321,1.065,0.946,1.079,0.974,0.887,0.978,0.913,0.947,0.852,1.031,0.93,1.126,0.966,1.109,1.183,0.906,1.158,0.979,1.413,0.943,1.21,0.966,0.98,1.165,1.125,0.917,1.113,1.266,1.576,1.0,1.039,1.046,1.152,0.905,0.865,0.936,0.991,0.891,1.02,1.049 +NM_198504,0.876,1.045,0.985,0.969,0.905,1.058,0.985,1.006,0.826,1.0,1.188,0.948,0.914,1.153,1.068,1.034,0.967,0.935,0.973,0.979,1.093,0.941,0.962,1.014,1.14,0.96,1.089,1.061,0.767,1.003,0.927,0.969,0.961,1.1,1.133,1.115,1.072,1.122,0.981,1.076,0.934,0.955,1.051,0.939,1.124,0.969,0.959,0.992,1.045,0.887,0.983,1.081,0.982,1.135 +NM_198507,0.975,1.037,1.38,0.863,1.081,0.782,0.752,0.652,1.36,1.068,1.005,0.682,0.759,0.949,1.028,1.371,1.099,0.988,1.477,1.074,1.054,0.734,0.994,1.043,0.853,1.133,1.226,1.195,0.569,0.935,1.277,1.216,1.214,1.395,0.614,0.707,0.966,0.969,1.076,0.599,1.366,1.124,0.748,0.794,1.413,0.995,0.905,0.941,0.817,1.127,0.927,0.99,1.523,1.3 +NM_198511,0.856,1.015,0.947,1.011,0.99,1.16,0.846,1.085,0.974,0.886,0.923,0.931,0.965,1.234,1.137,0.965,1.007,0.837,1.022,1.144,1.035,0.913,0.942,1.01,1.057,0.999,0.928,1.153,0.941,1.084,1.055,1.123,1.023,0.948,1.027,0.983,1.1,0.952,1.029,0.853,1.194,1.01,1.002,0.967,1.058,0.938,0.984,1.013,0.894,0.968,0.906,1.157,0.92,1.154 +NM_198512,0.962,0.965,0.944,1.11,1.083,1.061,0.841,1.206,1.054,0.854,0.97,1.053,1.013,1.071,1.056,1.013,1.027,1.261,1.006,0.969,1.033,1.066,1.136,1.127,1.058,0.98,0.873,1.147,1.499,1.042,1.0,1.022,0.914,0.843,1.101,1.054,1.002,1.052,0.907,0.874,1.037,1.044,1.145,0.925,0.907,1.046,0.946,0.955,0.938,1.0,0.962,1.097,0.998,1.06 +NM_198514,0.834,0.924,1.195,0.995,0.995,1.18,0.764,0.829,0.907,1.137,1.127,0.952,0.824,1.031,0.916,1.182,0.985,1.097,1.017,1.131,0.718,0.939,1.14,1.0,0.827,0.971,1.005,0.918,0.816,0.994,0.992,0.99,1.715,0.949,0.728,1.477,1.116,0.948,1.37,0.769,0.996,0.921,1.136,1.237,1.237,1.143,0.987,0.942,1.139,0.909,1.079,0.927,1.06,1.193 +NM_198515,0.963,0.941,1.2,1.074,1.002,1.012,0.856,1.19,1.106,1.101,0.92,0.976,1.034,0.978,1.016,1.049,0.94,0.942,0.979,1.091,0.949,0.888,1.003,0.948,1.005,0.987,1.065,1.079,0.822,0.9,1.001,1.034,1.002,1.215,0.942,1.009,0.819,1.179,1.039,1.052,1.005,1.015,0.87,0.813,0.957,1.034,1.148,0.926,0.962,0.991,0.95,1.007,0.989,0.983 +NM_198516,0.954,0.925,1.011,1.001,0.913,0.929,0.953,0.832,1.123,0.922,0.909,0.947,0.854,0.829,0.703,0.878,0.866,0.997,1.07,1.011,0.953,1.007,0.986,0.977,0.953,1.033,1.38,1.063,0.802,0.943,0.928,1.363,2.08,1.011,0.875,1.139,0.887,0.967,1.013,1.343,1.13,1.046,0.914,0.903,1.201,0.904,1.252,0.998,0.999,1.343,0.904,1.173,1.454,0.986 +NM_198517,1.035,0.954,1.227,1.174,0.954,0.951,1.016,0.865,0.985,0.829,0.888,0.932,1.038,1.041,0.872,0.905,1.103,0.974,0.976,0.862,1.123,0.932,0.963,1.086,1.2,1.053,1.689,0.948,0.901,1.209,0.841,1.155,1.063,1.129,0.798,0.902,0.981,0.886,1.193,1.286,0.87,1.24,0.825,0.932,0.906,0.962,0.89,0.909,0.975,0.976,0.878,0.919,1.421,1.559 +NM_198520,1.045,1.033,0.813,0.943,0.842,1.023,1.054,1.154,0.989,1.105,0.959,0.985,0.968,0.962,0.894,1.02,0.941,1.162,1.026,1.192,0.881,0.917,1.091,1.198,0.982,0.998,1.111,0.936,1.149,0.998,0.927,0.941,1.344,1.018,0.954,0.936,1.167,1.018,0.952,0.99,0.987,1.034,1.2,1.194,1.138,0.93,0.93,1.12,0.93,0.997,1.047,1.048,1.277,0.94 +NM_198521,0.924,0.941,0.858,0.943,0.911,1.046,1.088,0.966,1.001,1.017,0.945,0.931,1.016,0.938,0.98,0.976,0.926,1.018,1.059,1.022,1.056,0.899,1.056,1.1,0.99,0.98,0.917,1.066,2.244,0.952,0.854,0.934,1.038,1.014,1.159,1.023,1.075,0.98,1.035,0.969,1.028,0.864,1.202,1.113,0.97,0.856,1.023,0.984,0.951,0.92,0.987,1.151,0.951,1.1 +NM_198524,0.944,1.167,0.902,0.842,0.982,1.698,0.997,0.907,0.931,1.004,1.077,1.067,0.873,0.796,0.987,1.588,1.002,0.904,0.901,1.0,0.838,0.782,1.291,1.014,0.93,0.887,1.065,1.006,0.904,1.265,0.922,1.052,1.436,1.185,0.804,0.89,1.074,0.89,1.094,0.888,1.143,1.101,1.222,1.066,0.844,1.146,0.98,0.821,1.048,1.033,1.002,0.761,0.909,0.988 +NM_198525,0.958,1.008,0.894,0.844,0.766,0.934,0.792,0.735,0.984,0.835,1.011,0.934,0.91,0.861,0.932,1.027,0.833,0.819,0.936,1.007,1.022,0.908,1.114,0.975,0.92,0.951,0.95,0.923,1.014,1.246,0.963,2.451,1.43,1.615,0.899,0.955,0.873,1.033,1.133,1.174,0.854,1.419,0.934,0.948,1.079,1.055,0.911,0.759,0.835,0.877,1.048,1.155,0.929,1.425 +NM_198526,1.097,0.998,0.939,1.0,1.085,0.952,0.868,1.083,0.932,0.969,1.059,1.03,0.867,0.991,1.076,0.902,1.111,0.955,1.015,1.025,1.061,0.841,1.036,0.946,1.079,1.021,1.048,0.981,0.683,1.037,1.037,0.893,0.935,0.957,0.888,1.096,1.101,1.176,1.0,1.107,1.059,0.854,1.006,0.977,0.9,1.083,1.062,1.006,1.06,0.96,0.902,0.85,0.835,0.99 +NM_198527,0.638,1.44,0.987,0.827,0.742,1.31,0.807,0.567,0.795,0.786,1.385,0.98,0.809,0.583,0.865,1.599,0.731,0.883,1.135,1.221,0.507,0.672,1.894,0.896,1.106,0.769,0.957,0.662,0.639,1.515,0.642,0.809,1.639,1.778,0.295,1.589,1.258,0.78,2.002,0.994,0.975,1.286,0.862,0.814,0.901,1.154,0.937,0.744,0.932,0.712,1.244,0.925,0.813,1.239 +NM_198529,0.92,0.973,1.047,0.93,1.03,1.025,0.979,0.905,1.084,0.944,0.968,0.998,0.965,0.86,1.076,0.966,1.014,0.947,1.073,0.979,1.072,1.143,1.04,0.953,1.0,0.908,0.996,0.937,1.161,0.987,0.981,1.064,1.068,0.883,1.018,0.965,1.157,1.066,0.888,1.02,0.96,1.032,0.995,1.002,1.147,1.029,1.188,1.026,0.997,0.971,0.999,0.926,0.963,0.968 +NM_198530,0.587,1.577,0.726,0.683,1.209,0.723,0.599,0.506,0.962,0.705,0.891,0.529,0.704,0.569,1.09,1.035,1.005,0.585,0.915,0.785,0.638,0.597,1.204,0.752,0.869,0.885,1.04,1.222,0.382,1.252,0.821,4.054,1.241,2.303,0.46,0.659,0.577,1.151,1.081,2.279,1.23,2.099,0.591,2.257,0.995,0.679,0.866,0.766,0.443,0.74,1.005,1.37,1.03,1.562 +NM_198531,0.783,1.244,0.884,1.51,0.831,1.687,1.508,0.709,0.999,1.073,1.129,0.76,0.701,0.818,0.898,1.529,0.886,1.233,0.745,1.193,0.733,0.823,1.495,0.825,1.269,0.928,0.72,0.984,0.941,2.315,0.851,1.231,0.857,2.022,0.692,1.581,1.589,0.858,1.342,0.871,0.815,1.155,1.534,1.087,0.926,1.071,0.906,0.789,1.28,0.787,1.184,0.978,0.845,1.047 +NM_198534,0.992,0.893,1.058,0.949,0.866,1.12,0.876,0.851,0.853,1.112,1.335,0.998,0.893,0.938,1.043,1.092,0.921,0.92,1.0,1.04,0.959,1.064,1.094,0.994,0.933,1.079,1.131,0.91,1.095,1.017,1.018,0.842,0.966,0.976,0.996,0.925,0.932,0.782,0.983,1.07,0.863,1.041,1.036,1.097,0.903,0.969,0.99,0.872,0.913,0.891,1.066,1.113,0.986,0.981 +NM_198537,0.977,1.104,1.003,1.01,1.105,0.972,0.826,1.114,1.008,1.071,0.871,0.98,1.026,1.056,1.074,0.909,0.948,0.951,1.206,0.931,1.092,0.953,0.886,0.829,1.051,0.931,0.905,0.97,0.951,1.006,0.94,0.983,0.979,1.033,0.936,1.007,1.118,0.824,1.019,0.985,1.138,1.152,0.93,0.913,1.0,0.897,0.966,1.014,1.017,0.982,0.986,0.886,0.914,1.164 +NM_198538,4.023,0.0268,5.603,1.236,5.127,0.0236,0.0229,2.876,4.186,5.162,0.0238,3.415,2.97,1.947,1.914,1.823,2.641,2.967,5.378,0.0276,2.528,3.158,0.0252,3.318,0.0275,3.054,5.564,2.813,0.0269,0.0312,4.186,0.0282,1.375,0.0272,2.256,0.0241,0.0273,4.445,0.04,0.0356,4.197,0.027,0.0234,0.0234,6.14,0.0222,3.085,3.772,0.44,6.921,0.965,1.19,5.664,0.272 +NM_198540,2.443,0.531,1.417,1.039,1.633,0.917,0.547,3.685,1.514,1.291,0.835,1.652,1.888,1.219,1.335,2.148,1.206,1.121,3.101,0.746,1.448,2.94,0.846,1.575,0.586,2.627,1.149,1.378,0.624,1.043,1.678,0.609,1.001,0.509,6.12,0.689,0.999,2.725,0.746,0.844,1.31,0.686,0.595,0.624,1.289,0.978,1.196,5.41,0.784,1.726,0.6,0.667,1.582,0.549 +NM_198541,6.243,0.711,1.273,1.403,14.39,0.742,0.808,9.242,13.35,10.43,0.881,7.215,4.008,3.959,4.514,3.795,0.9,4.569,4.703,0.817,1.405,5.87,0.723,6.361,0.762,3.944,1.175,3.773,0.768,0.752,7.975,0.732,2.334,0.784,6.516,0.797,0.703,12.46,0.7,0.719,1.114,0.721,0.731,0.674,3.705,0.755,5.452,15.36,0.654,2.943,1.002,1.74,4.328,0.827 +NM_198543,0.895,1.612,0.922,1.17,0.898,1.735,1.326,0.927,0.788,0.807,1.067,0.98,0.762,0.949,1.129,0.952,0.904,1.072,0.823,1.13,0.819,0.706,0.952,0.858,3.322,0.812,0.922,0.803,1.463,1.674,0.833,0.882,1.038,2.002,0.969,0.893,1.46,0.837,1.462,1.016,0.825,1.332,1.015,1.108,0.889,0.791,0.822,0.865,1.014,0.745,1.006,1.003,0.987,1.149 +NM_198544,0.875,1.16,1.09,0.839,1.073,1.06,0.97,0.784,1.14,1.131,0.865,0.881,0.954,0.711,0.913,1.179,0.853,1.097,1.005,1.05,0.855,0.913,1.272,0.997,0.891,0.925,1.359,0.991,0.702,1.0,0.958,0.94,1.394,1.02,0.862,1.105,1.027,1.038,1.325,0.921,0.958,0.818,1.129,1.262,1.031,0.905,0.916,0.918,1.207,0.859,0.982,0.816,0.927,1.165 +NM_198545,1.035,0.916,0.899,1.038,1.239,1.011,0.95,0.998,0.849,0.994,0.929,1.01,0.914,0.746,1.024,1.055,1.01,1.026,1.073,0.963,0.875,1.113,1.002,0.961,1.179,0.896,0.954,0.922,1.106,1.084,0.999,0.984,0.933,0.955,1.136,0.893,1.051,0.813,1.087,1.118,0.874,0.962,1.286,0.939,1.002,0.99,0.99,0.987,1.109,0.905,1.041,0.865,1.007,1.018 +NM_198546,1.06,0.979,1.099,0.935,1.171,1.187,0.985,0.973,1.153,0.917,1.078,0.916,0.987,1.202,0.909,1.066,0.986,0.956,1.08,1.086,1.025,1.087,0.907,1.066,1.087,0.92,0.988,1.083,1.357,1.064,0.926,1.073,1.04,0.977,1.061,0.934,1.052,1.01,1.021,0.962,0.956,1.112,0.998,1.019,0.951,1.009,1.012,1.03,0.906,1.049,0.975,0.952,0.936,1.039 +NM_198547,1.153,1.074,0.972,1.091,0.989,0.998,0.98,0.899,1.013,1.014,0.987,0.962,0.892,1.193,0.95,1.041,1.189,1.003,0.936,0.954,0.952,0.963,0.926,0.948,1.148,1.11,1.148,0.985,0.993,0.915,0.967,1.145,1.13,1.029,1.084,1.061,0.967,0.963,1.06,0.969,1.099,1.0,0.712,1.057,0.983,0.942,0.987,0.972,1.058,1.061,1.038,0.969,1.174,1.0 +NM_198552,0.957,0.878,1.393,0.69,0.933,0.896,0.699,0.769,0.803,1.122,0.958,1.199,0.811,0.647,0.908,1.164,1.182,0.786,1.141,0.768,1.088,0.723,1.001,1.018,0.829,0.858,1.317,0.752,0.668,1.277,0.842,1.563,2.417,1.025,0.696,0.934,0.826,1.277,1.198,1.782,0.951,0.882,0.861,2.035,1.095,0.822,1.285,0.783,0.977,1.376,0.957,1.094,1.733,2.628 +NM_198553,0.995,0.9,1.069,0.995,0.948,0.964,0.887,1.11,1.021,1.01,1.034,1.027,1.051,0.969,1.0,0.909,1.031,0.732,0.966,1.069,1.056,1.074,0.938,0.958,0.955,1.239,1.067,0.87,0.664,0.984,0.96,1.164,0.974,0.998,1.062,1.043,1.032,0.892,1.055,1.163,1.117,0.926,0.847,1.636,0.97,1.0,0.846,0.966,1.077,0.88,1.045,1.099,1.14,1.023 +NM_198554,0.787,1.295,1.199,0.652,1.071,0.841,0.643,0.567,0.991,0.896,0.703,0.768,0.644,0.71,0.806,1.008,0.925,0.849,1.08,0.974,0.701,0.915,1.489,1.033,0.732,0.775,1.287,0.816,0.659,1.122,0.844,1.402,3.182,1.239,0.45,0.877,0.908,1.023,1.275,1.039,1.134,1.288,0.732,1.179,0.935,0.904,0.974,0.901,0.982,0.755,1.033,0.912,0.969,1.347 +NM_198560,0.868,0.864,0.961,1.052,1.033,0.914,0.961,1.084,1.022,0.965,0.946,1.028,1.008,0.933,1.054,0.992,1.101,0.99,1.011,1.014,1.224,0.942,1.0,0.968,0.961,0.971,0.858,0.92,0.928,1.063,1.094,1.123,1.131,0.913,0.919,1.087,1.146,1.178,1.066,0.854,1.017,0.883,1.02,1.039,1.043,1.006,0.909,1.057,0.915,1.032,0.9,0.916,0.903,0.955 +NM_198563,1.054,0.755,1.06,1.065,1.009,0.964,0.991,0.928,0.931,1.017,1.111,0.971,1.043,1.018,0.805,1.009,1.082,0.909,1.021,0.837,0.882,0.929,0.891,0.946,1.004,1.081,1.297,0.885,0.946,0.903,0.9,0.926,1.171,1.014,0.918,1.106,0.929,0.984,1.205,0.991,0.899,1.099,0.881,0.941,1.094,0.979,0.996,1.07,0.893,1.133,0.974,1.034,1.022,1.103 +NM_198564,0.891,1.013,0.951,1.04,0.964,0.982,1.001,1.025,0.925,0.812,1.072,1.038,0.871,0.851,0.77,1.14,0.98,0.941,1.043,1.087,0.981,1.016,1.001,1.079,1.021,0.956,1.027,0.958,0.698,0.901,1.02,0.922,1.037,0.982,1.086,0.976,0.982,0.952,0.86,0.918,0.875,1.019,0.927,1.195,1.032,1.011,0.917,0.918,1.12,0.88,1.04,1.032,0.984,0.895 +NM_198565,1.019,0.963,0.889,0.851,0.909,0.973,1.201,0.856,0.881,0.883,0.901,0.928,0.96,0.953,0.839,1.026,0.955,0.957,0.838,0.981,0.96,0.883,0.919,0.952,1.003,0.901,1.077,1.054,1.145,1.022,1.083,1.155,1.009,1.259,0.931,1.005,1.098,0.963,1.152,1.056,0.807,1.155,1.011,0.985,1.03,0.877,0.932,1.019,0.967,0.865,0.882,1.025,1.019,1.545 +NM_198566,0.885,0.946,1.03,0.978,0.998,1.051,0.961,1.062,1.109,1.02,0.941,0.879,1.13,0.983,0.953,0.786,1.011,0.925,1.179,0.948,0.856,0.856,1.196,0.894,1.176,0.909,1.026,1.082,1.377,1.062,0.902,1.009,1.816,0.99,0.812,1.07,1.12,0.926,0.964,1.116,1.01,0.944,0.89,1.301,1.0,1.0,0.998,0.969,1.016,1.077,0.94,1.155,1.103,1.065 +NM_198567,0.817,1.088,0.982,1.017,0.635,1.526,1.168,0.691,0.879,0.817,1.071,0.779,0.821,0.741,1.091,1.39,0.773,0.901,0.77,1.144,0.829,0.738,1.679,0.71,0.984,0.714,0.884,0.805,0.994,1.522,0.789,1.523,2.763,1.245,0.632,0.745,1.315,0.657,1.303,0.896,0.788,1.114,1.175,0.9,0.818,1.192,0.872,0.678,1.209,0.733,1.203,0.985,0.798,1.892 +NM_198568,1.086,1.018,0.904,0.986,0.926,0.917,1.013,1.145,1.111,1.044,0.969,0.967,0.951,0.9,0.809,1.114,0.955,0.979,0.855,1.116,0.899,1.006,1.004,1.019,1.089,1.037,1.003,0.807,1.237,0.926,0.894,0.841,1.419,0.916,1.064,1.077,1.038,1.025,1.123,1.071,0.854,1.098,0.881,0.872,0.998,1.017,1.006,0.931,1.018,0.949,1.09,0.967,0.92,0.9 +NM_198570,0.92,1.053,1.146,1.027,0.945,1.053,1.078,1.013,0.987,1.074,0.926,1.153,0.955,0.803,1.12,0.893,1.004,1.285,0.956,1.057,0.942,1.056,1.09,1.013,1.078,0.976,0.818,0.892,0.858,0.961,1.174,1.065,1.014,0.947,0.936,1.046,1.0,1.125,1.109,0.947,1.01,1.118,0.934,0.975,0.933,0.867,1.046,1.081,0.96,1.055,0.988,0.856,1.165,1.109 +NM_198571,0.93,0.71,1.146,1.118,1.117,0.872,0.905,1.113,0.933,1.025,1.06,1.107,0.965,1.098,0.992,1.174,1.02,0.886,0.987,0.927,0.994,1.293,0.914,0.901,1.101,1.261,0.896,0.986,1.091,1.061,1.224,1.218,0.924,0.998,1.085,0.951,1.001,0.776,0.977,0.877,0.932,1.21,0.997,0.999,0.985,0.917,1.01,1.073,1.137,1.14,0.865,0.944,1.306,1.081 +NM_198572,1.065,0.954,0.982,0.997,1.099,1.028,0.819,0.903,0.971,1.03,0.998,1.034,1.07,0.677,0.813,1.0,1.075,0.913,0.88,1.075,1.038,0.987,0.938,0.973,0.877,0.967,1.157,1.021,0.772,1.029,0.923,1.041,1.065,0.93,1.075,1.115,0.957,1.077,1.03,1.033,0.982,0.948,0.979,1.041,0.991,0.846,1.054,1.028,0.983,1.077,1.018,1.08,0.968,1.065 +NM_198573,1.023,1.106,0.969,0.962,1.04,1.041,0.749,0.969,0.9,0.96,1.126,0.885,1.042,1.066,1.012,1.03,1.026,0.95,0.998,0.902,0.901,0.882,1.06,0.978,1.049,0.952,0.928,0.93,0.969,1.367,0.848,0.982,0.947,1.148,1.03,0.969,0.967,0.887,1.181,0.89,1.005,1.182,0.973,1.068,1.022,1.118,0.996,0.976,1.146,0.863,1.036,1.028,0.917,1.16 +NM_198577,1.05,1.112,0.914,1.07,0.944,0.959,0.801,0.93,1.023,1.025,0.901,1.02,1.071,0.892,0.978,1.116,1.022,0.954,0.99,0.876,0.837,1.083,1.05,0.965,1.101,1.022,0.997,1.01,0.827,1.091,0.906,1.018,1.028,1.043,0.935,1.016,1.036,0.992,1.176,1.043,1.119,1.058,0.915,0.978,0.923,0.947,1.094,0.997,1.095,0.947,0.918,0.97,0.981,1.042 +NM_198578,0.971,0.88,1.032,1.137,0.958,1.042,0.934,1.176,0.96,0.99,0.875,1.191,1.144,1.034,1.252,1.112,1.064,1.151,0.887,0.998,1.076,0.999,0.954,1.185,1.017,0.991,0.826,1.066,1.094,0.962,1.059,1.09,1.032,1.073,0.908,1.017,0.929,0.99,0.912,1.043,1.086,0.968,0.932,0.977,0.986,0.959,1.061,0.929,0.93,1.09,1.149,1.152,1.154,0.948 +NM_198580,0.876,1.676,0.843,1.041,0.806,1.067,0.87,0.748,0.817,0.938,0.99,0.733,0.95,0.857,0.815,1.053,0.777,1.175,1.137,1.177,0.964,0.774,1.098,0.908,1.194,1.01,0.75,0.772,0.78,1.283,0.924,1.889,1.2,1.963,0.827,0.855,1.031,0.845,1.238,1.06,0.938,1.416,0.772,1.401,0.885,0.847,0.81,0.925,0.791,0.864,0.976,0.916,1.127,1.068 +NM_198581,0.954,0.975,0.95,0.99,0.949,1.083,0.912,0.941,0.954,0.947,0.947,1.22,0.92,0.974,0.906,0.934,1.085,0.94,0.927,1.128,0.946,1.064,0.8,0.908,0.962,0.998,0.925,1.014,1.429,0.945,1.038,0.921,1.03,0.98,1.098,1.009,1.049,1.003,1.072,1.243,0.966,0.955,0.894,1.081,0.967,0.992,1.047,1.051,1.001,1.155,1.072,1.01,1.151,1.003 +NM_198582,1.086,1.002,0.899,0.987,0.883,1.126,0.789,0.976,1.027,1.018,0.875,1.031,0.943,1.14,0.916,0.919,0.999,0.917,0.974,0.905,1.1,1.002,0.994,0.991,0.98,0.953,0.987,0.979,0.915,1.024,1.019,1.046,1.03,1.169,0.906,0.912,1.001,1.0,0.98,1.023,0.792,1.089,1.051,0.845,1.028,1.052,1.076,0.994,0.899,0.972,1.044,0.977,0.956,1.123 +NM_198584,1.028,0.844,0.925,0.882,1.124,2.223,0.756,1.014,1.394,0.733,1.867,0.887,0.992,0.786,1.33,2.338,0.667,1.039,0.932,0.877,0.485,1.127,1.27,1.08,0.655,0.87,1.129,1.08,0.634,1.289,1.069,1.073,1.352,1.048,0.663,0.897,2.156,1.055,1.246,0.688,1.028,1.29,1.02,0.929,0.945,1.865,0.969,1.116,1.866,0.722,1.632,0.835,0.791,0.645 +NM_198585,0.622,1.026,0.568,1.069,0.739,1.53,0.918,0.703,0.825,0.718,1.793,0.737,0.813,1.025,1.699,2.879,0.59,1.419,0.548,1.41,0.814,0.581,1.189,0.758,1.449,0.636,0.805,0.736,1.464,1.787,0.71,1.232,0.881,1.428,0.687,1.665,2.061,0.593,1.786,0.815,0.694,1.871,1.662,0.997,0.766,1.877,0.859,0.569,1.149,0.63,1.179,1.059,0.608,0.621 +NM_198587,0.925,0.762,0.768,1.111,1.066,0.896,1.124,1.225,1.001,1.046,0.95,0.948,1.238,1.122,2.074,1.173,0.922,0.899,0.862,0.957,1.007,0.946,1.02,1.017,1.167,0.877,1.046,0.937,1.098,1.098,1.044,0.92,1.259,0.907,1.431,1.199,1.263,1.146,1.16,0.94,1.094,0.927,0.933,0.897,1.082,0.963,1.116,0.961,0.929,0.875,1.05,1.153,0.966,0.941 +NM_198591,0.747,1.14,0.595,1.147,0.459,1.501,0.647,0.441,0.427,0.696,3.474,0.418,0.772,0.474,1.072,4.508,0.521,0.909,1.209,0.926,0.948,0.379,1.867,0.596,1.062,0.938,0.783,0.392,0.565,1.685,0.672,1.968,3.908,2.019,0.559,0.947,1.388,0.442,3.042,1.057,0.418,1.498,0.784,3.017,0.658,0.908,0.669,0.948,0.799,1.87,1.417,0.676,0.892,1.553 +NM_198593,1.9020000000000001,2.034,2.0,1.8940000000000001,2.23,2.049,1.806,2.122,1.8690000000000002,1.845,2.0789999999999997,2.005,1.876,1.78,1.694,2.569,1.83,1.863,1.842,1.94,1.845,2.016,2.4619999999999997,2.0919999999999996,2.036,1.825,1.873,2.072,2.475,1.972,1.898,2.282,2.489,2.042,1.8559999999999999,2.1159999999999997,1.846,1.807,2.041,2.408,1.8419999999999999,2.03,1.815,2.5,1.9689999999999999,1.832,2.003,1.889,2.053,1.9169999999999998,2.105,2.146,2.045,2.0540000000000003 +NM_198595,1.167,0.97,1.048,1.177,1.035,1.057,0.851,0.871,1.05,1.017,1.04,1.086,1.035,0.975,0.791,1.107,0.973,0.935,1.001,1.038,1.246,0.853,0.978,1.051,1.032,1.065,0.965,0.956,1.361,0.997,0.903,1.104,1.057,0.984,1.07,1.051,1.123,0.917,1.052,0.985,0.98,0.974,0.979,1.079,0.781,0.942,0.815,1.048,0.926,1.003,1.05,0.848,1.083,0.96 +NM_198596,1.211,0.347,1.494,0.443,0.619,0.445,0.209,0.937,1.996,0.998,0.682,1.117,0.937,1.102,0.976,1.406,1.364,0.649,1.231,1.0,0.464,1.778,2.038,0.906,0.192,1.329,1.299,1.758,0.0741,0.877,1.312,3.029,1.0,0.485,1.275,0.598,0.673,2.109,0.811,1.45,1.451,0.908,0.763,0.905,1.314,1.003,1.67,1.667,0.713,1.253,1.202,1.869,0.367,2.501 +NM_198597,1.597,0.567,1.287,0.959,1.093,0.754,0.493,1.023,3.248,1.136,0.671,0.846,1.163,0.894,1.132,1.129,1.543,1.153,1.295,0.64,0.595,2.16,0.862,0.969,0.614,2.381,1.248,1.535,0.42,0.939,2.281,0.669,1.446,0.961,3.128,0.794,0.839,0.927,1.416,0.519,1.32,0.79,0.606,1.094,1.209,0.751,0.863,1.929,0.934,1.08,0.768,0.867,1.476,1.737 +NM_198679,1.058,0.978,0.97,0.959,1.069,1.107,0.973,0.917,1.075,0.976,1.166,0.961,1.263,1.022,0.944,0.931,0.917,1.027,0.977,0.96,0.99,0.941,1.223,0.908,0.989,1.013,0.932,0.828,1.163,1.104,1.185,0.998,1.174,0.929,1.103,0.979,0.961,1.076,0.987,0.914,0.987,1.066,1.236,0.991,1.011,0.97,1.012,0.985,0.911,0.97,1.132,1.002,1.093,1.063 +NM_198681,0.935,1.077,0.992,0.932,0.958,0.972,1.396,1.033,0.944,0.987,1.01,0.947,0.884,0.991,0.959,1.079,0.926,1.053,0.907,0.988,1.063,1.012,0.898,0.985,1.033,1.033,0.951,0.919,1.022,0.887,1.049,0.994,0.993,1.01,1.033,0.983,0.947,1.001,0.954,0.923,1.017,0.972,1.195,0.961,1.122,1.013,0.923,0.964,1.07,1.087,1.158,0.992,1.026,0.942 +NM_198686,0.575,1.694,0.774,0.939,0.523,1.09,0.777,0.604,0.618,0.622,1.209,0.653,0.646,0.564,1.251,1.599,0.547,0.69,0.688,1.152,0.711,0.509,1.613,0.588,0.997,0.7,0.647,0.577,0.693,1.403,0.649,2.222,1.993,1.752,0.61,1.492,1.101,0.644,1.446,1.741,0.662,1.441,0.958,5.121,0.684,0.967,1.16,0.602,1.346,0.6,1.11,0.829,0.611,3.083 +NM_198697,0.912,0.971,1.032,1.156,1.149,1.131,0.969,1.065,1.0,0.951,0.966,0.948,0.94,1.118,0.989,0.969,1.058,0.851,1.008,0.805,0.987,0.945,0.899,0.903,0.958,0.97,0.921,1.08,1.163,1.007,1.094,1.056,0.951,0.874,1.037,1.104,0.941,0.926,1.048,0.995,0.963,0.965,1.287,0.942,1.097,1.164,1.071,1.038,1.054,1.01,1.063,0.969,1.142,1.024 +NM_198698,1.024,1.006,1.051,0.822,0.962,1.386,0.997,1.001,0.951,0.976,0.837,1.018,0.998,1.229,1.428,1.218,0.941,1.079,1.256,0.889,0.845,0.955,1.112,0.875,1.157,1.033,1.078,1.017,1.299,0.957,1.168,0.94,0.994,1.057,0.885,1.177,0.908,0.862,0.93,0.907,1.074,1.016,1.077,0.972,1.041,0.945,0.847,1.021,1.056,0.894,0.973,0.957,1.019,0.987 +NM_198700,1.026,1.0,1.05,0.927,0.984,1.014,1.031,1.047,0.982,0.988,1.069,1.043,1.041,1.183,0.81,1.001,0.983,0.942,1.193,1.032,0.95,1.027,0.835,1.039,1.053,0.907,1.101,1.053,1.013,1.039,1.005,0.993,0.94,0.921,0.902,1.017,1.007,0.967,1.0,1.042,0.933,1.014,1.059,0.999,0.987,0.99,1.007,0.977,1.117,0.912,0.975,0.925,1.006,0.955 +NM_198704,0.991,1.219,0.873,0.838,0.93,0.987,0.704,0.84,1.016,0.9,1.027,1.143,1.009,0.882,1.0,0.969,0.981,0.96,0.933,0.973,0.959,0.922,1.09,1.013,1.013,1.029,0.975,0.889,0.998,0.972,1.02,1.707,1.39,1.271,0.861,0.772,0.917,0.944,0.993,1.116,1.014,0.971,1.022,1.003,1.031,0.766,0.85,1.0,0.847,1.015,0.927,0.844,0.962,0.916 +NM_198709,1.135,1.062,0.964,1.128,1.017,1.068,0.788,1.158,0.844,1.076,1.164,0.917,0.986,0.955,0.991,1.051,1.019,0.926,0.906,0.977,0.883,0.992,0.987,1.014,1.039,0.852,0.985,0.919,1.583,1.085,0.893,1.013,0.995,0.899,0.915,1.281,0.937,1.014,0.987,0.89,0.928,0.983,1.048,1.044,1.023,1.159,1.151,1.026,1.07,0.98,1.032,0.971,0.862,1.14 +NM_198715,0.882,1.219,0.896,1.118,1.086,1.112,1.024,0.943,0.973,0.93,1.029,0.962,0.966,0.943,1.062,1.064,0.95,0.967,0.937,0.907,1.083,0.922,0.937,0.93,0.999,1.018,1.061,1.11,1.019,1.048,1.046,1.158,0.988,1.017,1.133,0.996,0.975,1.062,0.926,1.006,0.937,1.055,0.954,1.138,0.987,1.09,0.991,1.06,0.973,1.021,0.955,1.001,1.02,1.165 +NM_198719,0.923,1.444,1.033,1.012,0.908,1.106,0.871,1.177,0.993,0.764,1.143,0.981,0.97,1.033,0.896,0.973,0.875,1.049,0.971,1.03,1.02,0.949,0.836,1.016,1.326,0.972,1.091,0.942,0.856,0.999,1.135,1.583,1.121,1.097,0.906,1.046,1.006,1.118,1.017,0.983,1.098,0.945,1.13,1.027,1.127,0.945,0.998,1.014,0.952,0.806,1.018,0.914,1.056,1.051 +NM_198721,0.957,1.039,1.092,0.976,1.001,0.986,1.102,0.96,0.931,0.976,1.024,0.887,0.955,1.094,0.839,1.13,1.007,1.032,0.959,1.151,0.947,0.95,0.9,0.938,1.066,0.999,0.875,1.1,1.094,0.943,0.997,0.96,0.948,1.085,1.112,0.939,1.047,0.988,1.006,1.039,1.187,1.07,1.206,1.169,1.019,0.985,1.024,1.122,0.964,1.049,1.051,1.167,1.085,1.098 +NM_198722,0.856,0.976,0.886,1.09,1.172,1.139,1.177,1.128,0.921,0.963,1.095,0.928,1.02,0.903,0.877,0.964,1.047,0.853,0.921,1.004,1.084,0.963,0.891,1.024,0.931,1.04,0.833,1.038,0.896,1.016,0.994,0.941,0.882,1.099,1.058,1.101,0.906,1.118,0.984,1.041,0.928,1.085,0.922,0.848,0.986,1.006,1.102,1.024,0.98,1.179,0.955,0.874,1.059,0.938 +NM_198795,0.9,1.131,1.004,1.005,1.233,1.08,0.976,1.047,1.15,0.99,1.097,0.964,0.888,0.906,0.922,1.014,0.956,0.941,0.944,1.096,1.102,0.974,0.951,0.937,1.035,1.254,0.948,1.049,1.199,0.975,0.925,0.962,1.172,0.86,1.026,3.289,0.881,0.895,0.985,1.015,1.116,0.946,0.833,1.012,0.977,0.993,1.21,0.966,1.021,1.067,0.938,0.959,1.277,1.002 +NM_198822,1.137,1.192,1.039,0.882,1.048,0.906,0.868,0.845,0.907,1.042,1.03,1.068,1.008,0.994,0.973,1.093,1.016,1.056,0.932,0.936,1.029,0.959,0.795,0.963,1.073,1.15,1.267,0.986,1.1,0.933,1.041,1.12,0.963,0.963,0.97,1.076,0.914,1.067,1.064,1.069,1.0,0.893,0.941,1.177,0.888,0.984,0.916,1.048,1.1,0.936,1.034,1.087,0.867,1.063 +NM_198827,1.097,1.053,1.035,0.974,0.988,0.9,0.976,0.984,1.076,0.954,0.936,1.184,1.03,0.988,1.106,1.172,0.953,1.047,1.011,0.901,0.998,0.914,1.073,1.094,0.953,0.973,1.085,1.035,1.113,0.951,0.94,0.997,1.121,0.962,0.997,0.999,1.112,1.127,1.07,0.932,1.199,1.08,0.953,1.007,1.038,1.073,0.819,1.092,0.932,1.143,1.001,1.066,0.926,1.166 +NM_198829,1.151,0.842,0.959,0.999,1.078,0.977,1.101,0.957,0.987,1.101,1.118,1.113,0.948,0.91,1.016,0.79,0.913,0.956,1.012,1.137,1.033,0.947,1.037,0.928,1.074,1.131,0.934,1.077,0.955,0.92,1.132,0.899,0.926,1.078,1.01,0.89,1.079,1.1,0.886,1.029,0.933,0.973,0.914,0.946,1.132,1.005,0.968,1.043,1.116,1.145,1.058,1.048,1.029,0.992 +NM_198839,1.064,1.026,1.029,1.057,0.862,0.998,0.95,1.188,1.034,0.943,0.93,0.951,0.919,1.227,1.136,0.928,1.121,1.075,1.012,1.055,1.03,0.859,0.982,1.027,0.952,0.909,0.977,1.046,1.688,0.792,1.006,0.871,1.415,1.148,1.129,1.083,0.994,1.003,0.961,1.155,0.984,0.966,1.153,0.991,0.867,0.933,0.942,1.017,1.153,0.853,0.843,1.188,0.914,1.194 +NM_198841,0.743,1.265,1.059,0.94,0.708,1.904,0.675,0.765,1.173,0.783,1.287,0.705,0.661,0.814,1.092,1.14,0.854,0.911,0.993,1.02,0.706,0.617,0.968,1.005,0.802,0.763,0.871,0.942,0.557,1.539,0.995,1.864,1.707,2.028,0.805,0.647,0.909,0.922,1.42,0.576,1.161,1.359,0.8,0.973,0.715,1.222,0.858,0.668,0.962,0.714,1.185,0.591,0.766,1.428 +NM_198843,0.902,1.011,0.856,1.07,0.857,1.134,1.06,1.087,1.218,1.076,0.966,0.86,1.077,0.664,0.944,1.048,0.957,1.02,1.147,1.215,1.163,0.844,0.943,1.016,0.925,1.001,0.87,1.303,1.143,0.838,1.013,1.011,0.974,1.024,1.16,1.181,0.793,0.981,1.044,0.938,0.95,1.075,1.002,0.917,0.835,1.086,0.944,1.025,1.084,0.972,1.286,0.945,0.977,1.024 +NM_198852,0.963,0.961,0.998,0.898,0.917,1.095,0.812,1.102,0.84,0.964,0.905,0.974,1.056,0.994,1.327,1.022,0.954,0.914,0.951,0.957,1.068,1.161,0.986,1.058,1.014,1.065,1.066,1.041,0.861,1.009,1.13,1.013,0.927,0.985,0.831,0.94,1.081,0.952,0.926,1.094,0.978,0.948,1.185,0.846,1.011,0.933,0.953,1.152,1.154,1.101,1.039,1.137,1.252,0.905 +NM_198859,0.882,0.907,1.113,0.857,1.043,0.928,0.908,0.939,0.909,0.748,0.964,0.959,0.91,0.857,1.083,0.91,1.079,0.909,0.959,1.059,1.006,1.037,1.169,1.02,0.948,1.001,1.586,1.127,0.858,1.165,1.005,1.668,1.203,1.14,0.781,0.792,0.91,1.258,1.063,1.096,1.244,1.197,0.89,0.797,0.925,0.833,0.992,0.901,0.797,0.973,1.082,1.022,1.093,0.953 +NM_198881,0.811,0.952,0.953,0.97,0.9,0.885,0.961,0.784,0.9,0.872,1.041,0.989,0.777,0.887,0.991,1.173,1.055,1.026,0.757,1.207,0.89,0.861,1.085,0.843,0.955,0.958,1.18,1.07,1.131,1.042,0.74,1.064,1.014,0.998,1.022,1.175,1.092,0.985,1.045,0.859,0.903,1.035,1.211,1.12,0.787,1.161,1.073,0.964,1.155,0.907,0.927,1.017,0.829,1.014 +NM_198892,1.219,0.935,0.859,0.924,1.01,1.032,0.894,0.998,1.01,1.119,0.943,0.931,0.965,1.085,0.879,1.091,1.24,0.907,0.955,1.191,1.038,1.141,0.975,0.953,1.022,1.0,0.827,0.992,1.053,1.039,1.022,0.94,1.185,1.031,1.054,1.045,0.825,1.086,0.957,1.138,0.888,1.114,1.088,1.074,0.898,0.984,0.946,0.946,0.863,0.863,0.987,1.069,1.166,0.913 +NM_198893,0.923,0.949,0.899,1.096,0.856,0.91,0.94,0.854,0.902,0.993,0.954,1.007,0.997,0.866,0.962,0.84,1.112,1.064,1.081,1.003,1.023,0.891,1.046,1.069,1.134,1.173,0.996,1.152,0.748,1.062,0.955,1.013,0.963,0.82,0.926,1.037,1.02,1.06,1.07,0.967,0.973,1.054,1.075,1.004,1.076,1.014,0.939,1.16,0.964,0.98,0.999,1.031,1.118,0.968 +NM_198896,1.163,0.987,1.082,0.907,1.17,0.913,0.867,0.842,1.163,1.139,0.948,1.004,1.02,1.037,0.87,1.045,0.926,1.044,1.097,0.903,0.827,1.069,0.991,0.867,0.947,1.292,1.109,1.131,0.962,1.05,1.106,0.881,1.167,0.953,1.242,0.995,1.069,1.171,1.073,1.145,1.122,1.088,0.937,0.83,1.131,0.948,1.229,1.006,1.003,1.004,1.006,0.999,1.15,1.102 +NM_198901,0.877,0.911,0.902,1.045,0.862,1.372,1.147,0.883,0.893,0.946,1.49,0.932,0.912,1.05,1.739,1.996,0.965,1.117,0.904,1.867,0.931,0.94,1.491,0.942,0.946,1.036,0.911,1.04,1.053,1.025,0.9,0.919,1.015,1.135,1.042,0.882,1.633,0.998,1.009,0.992,0.926,1.241,1.165,0.904,0.808,1.947,1.323,0.933,1.787,0.915,1.3,1.002,0.87,0.902 +NM_198904,1.125,0.984,0.939,0.931,0.886,0.832,1.0,1.076,0.992,1.109,0.992,0.922,1.059,1.0,1.018,0.798,1.178,1.048,1.155,1.217,1.126,0.88,1.021,0.795,1.023,0.934,0.773,1.025,1.019,0.962,1.025,1.078,1.125,0.97,1.09,0.941,1.011,0.961,1.055,0.866,0.882,0.915,1.154,0.999,1.027,1.073,0.952,1.023,1.075,1.029,0.97,0.921,1.356,1.069 +NM_198907,1.081,1.02,0.85,1.125,0.949,1.046,1.08,0.891,1.105,1.014,1.144,1.079,0.957,1.043,1.0,0.978,0.905,0.914,0.947,0.971,0.984,0.908,0.984,1.079,0.977,0.944,0.933,0.936,0.966,0.962,0.927,1.232,1.087,0.965,1.094,1.083,1.01,1.135,0.996,1.049,1.001,1.024,1.042,1.066,1.046,1.104,1.085,1.031,0.939,1.059,1.0,1.032,0.979,0.907 +NM_198920,0.913,1.131,0.926,0.826,1.163,0.926,0.987,0.918,0.92,1.01,0.99,1.103,1.024,0.852,0.994,1.038,0.928,1.048,1.021,1.048,0.971,1.098,1.115,1.185,0.897,1.05,1.087,1.025,1.016,0.955,1.006,1.022,1.047,1.105,0.98,1.106,0.93,1.231,0.992,0.822,1.044,0.932,1.201,1.006,1.141,0.866,1.123,0.918,0.905,1.04,0.887,0.964,0.929,0.956 +NM_198923,0.961,5.333,1.078,0.998,1.126,1.149,1.154,0.977,1.41,0.959,0.987,0.909,1.186,0.913,1.586,0.979,1.017,0.98,1.015,1.112,1.123,1.013,1.123,1.049,8.631,0.858,0.972,0.926,1.158,1.251,0.829,0.936,1.015,1.176,1.011,0.927,1.079,0.9,0.915,0.966,0.966,0.95,1.066,1.11,0.892,0.848,1.083,0.946,0.887,1.115,0.964,1.017,0.888,1.002 +NM_198925,1.023,1.129,1.011,0.997,1.163,0.89,1.005,0.937,0.928,1.165,1.069,1.074,0.989,0.91,0.864,0.951,0.954,0.959,0.966,0.974,0.869,1.084,1.01,0.957,1.007,0.83,0.987,0.915,1.493,0.965,0.95,0.975,0.848,0.935,0.815,0.999,1.151,1.12,0.806,0.988,1.032,0.928,0.945,1.084,0.983,1.009,1.018,1.086,1.085,0.872,1.068,0.996,0.858,0.918 +NM_198926,0.855,0.994,1.027,1.012,0.957,1.019,0.82,1.009,1.052,0.951,1.071,0.897,1.02,1.088,0.816,1.129,0.981,1.201,1.058,1.051,1.06,1.025,1.025,0.945,1.071,0.865,0.994,0.971,0.741,0.906,1.057,1.076,0.857,0.989,1.11,0.949,0.929,0.978,0.999,1.032,0.887,0.945,1.208,1.05,1.133,1.017,1.102,1.003,1.014,0.94,0.976,0.96,1.086,0.922 +NM_198935,1.02,1.119,1.07,0.887,1.167,0.939,0.931,0.988,1.061,1.08,0.944,1.004,0.964,0.821,0.965,1.043,1.018,0.986,1.007,0.967,0.885,1.046,0.991,1.188,1.043,1.035,1.034,0.86,1.098,0.86,1.093,1.002,0.902,0.829,0.972,0.938,0.946,1.024,1.255,0.994,1.08,0.908,0.752,1.169,0.927,1.258,1.036,0.917,1.021,1.07,0.948,0.964,1.137,0.99 +NM_198941,0.937,0.97,0.935,0.794,0.886,0.953,0.762,0.903,0.914,0.841,0.939,0.922,0.903,0.812,0.912,1.232,0.869,0.991,1.029,0.863,0.933,0.932,1.006,0.915,1.025,0.97,1.099,0.88,0.997,1.268,0.877,1.57,1.091,1.057,0.848,0.949,1.056,1.122,1.221,1.207,0.879,1.096,0.848,0.868,1.128,0.852,0.994,0.912,1.017,0.927,1.059,1.022,0.939,1.491 +NM_198944,1.092,0.865,1.009,1.062,1.059,1.133,0.95,0.963,0.992,0.998,0.931,1.135,1.008,0.828,1.09,1.031,1.087,1.106,0.948,0.928,1.018,0.94,0.933,1.085,1.002,1.009,0.927,1.041,0.913,0.994,1.132,1.018,0.905,0.898,0.899,1.04,0.939,0.977,0.857,0.902,0.981,1.072,0.821,0.896,1.012,0.93,0.994,0.899,1.018,0.968,1.012,0.87,0.975,1.004 +NM_198946,1.085,1.332,1.057,1.135,0.925,1.026,1.009,0.871,1.049,1.073,1.069,1.081,0.929,1.071,1.106,0.934,1.15,1.19,0.998,0.74,0.983,0.962,1.281,0.994,0.997,1.259,0.996,0.978,0.851,0.966,1.08,1.147,1.503,1.078,0.997,1.108,1.118,1.091,0.998,0.863,0.882,0.996,0.878,0.901,0.908,1.095,1.016,0.917,0.989,0.941,0.987,1.129,1.019,1.002 +NM_198955,0.999,1.07,1.024,0.987,1.074,0.941,0.814,0.948,1.041,1.111,0.922,1.06,1.031,1.11,1.1,0.96,1.114,1.112,0.901,1.108,0.889,1.153,0.907,0.972,1.046,0.984,0.963,0.947,0.941,1.001,0.898,0.967,0.938,1.007,1.228,0.908,1.038,0.979,0.942,1.009,0.987,1.109,1.058,1.032,1.084,0.997,0.962,1.035,0.954,0.846,1.022,0.871,1.012,0.919 +NM_198956,0.91,0.915,0.807,1.11,0.984,1.095,0.945,1.033,0.995,0.873,0.997,1.014,1.062,1.03,0.981,1.047,1.014,1.05,1.016,0.949,0.914,0.939,1.06,0.924,0.99,0.932,0.992,0.999,0.9,1.024,1.034,1.105,1.085,0.991,1.095,1.046,0.942,1.0,1.039,0.997,0.919,0.966,1.064,1.043,0.94,1.064,0.922,0.914,0.91,1.021,1.048,1.038,1.123,0.966 +NM_198963,1.088,1.101,1.019,0.943,0.922,1.081,0.999,0.944,1.044,0.938,0.941,1.001,1.058,0.897,1.053,0.936,1.023,0.923,0.993,1.046,1.16,1.042,0.89,0.998,0.973,1.036,1.141,1.028,0.903,1.024,1.091,1.027,0.939,0.942,1.111,1.048,0.862,0.962,0.893,0.943,1.1,0.98,1.036,1.007,1.039,1.079,1.029,1.005,0.879,1.095,1.192,1.021,0.868,1.031 +NM_198968,1.058,0.935,0.981,1.156,1.033,0.959,0.952,0.873,0.984,1.029,1.017,0.87,1.094,0.919,1.24,1.029,1.037,0.982,0.824,0.889,1.111,0.817,0.932,1.018,1.025,0.862,0.87,1.187,1.064,0.979,0.914,0.929,0.897,1.003,1.09,1.076,1.146,0.922,1.017,1.106,1.282,0.935,1.088,0.905,1.157,1.074,0.92,0.948,1.016,1.128,1.075,1.194,0.99,0.915 +NM_198976,0.985,0.817,1.178,0.782,0.935,0.785,0.459,0.468,1.543,1.116,0.695,1.179,0.794,0.834,1.033,1.123,1.029,0.837,1.507,0.771,0.747,0.826,1.258,1.263,0.567,0.935,1.457,0.983,0.299,1.201,1.052,1.021,2.249,1.118,0.149,0.875,0.747,0.988,1.368,1.277,1.225,0.912,0.627,1.546,1.428,0.656,0.941,0.816,0.784,0.946,0.799,1.218,1.235,2.2 +NM_198988,0.908,0.968,1.051,0.902,1.0,1.21,1.203,0.892,1.004,0.94,0.901,0.985,1.235,0.919,0.981,1.068,1.136,0.984,0.933,1.104,0.941,1.145,0.985,0.938,0.902,0.894,1.207,0.936,0.787,1.224,1.067,1.026,0.96,1.065,0.943,0.968,1.045,1.0,1.258,0.716,1.124,1.148,0.804,0.925,1.156,1.048,0.942,1.021,1.042,0.953,1.174,0.987,0.849,0.855 +NM_198989,0.965,1.193,0.995,1.07,0.946,0.981,1.079,0.976,0.956,0.903,1.047,1.091,1.057,1.086,0.916,1.019,0.997,0.943,1.057,1.024,1.282,0.866,0.943,0.957,1.018,1.028,1.072,0.925,1.048,1.034,1.028,1.061,0.978,0.949,1.003,0.983,1.019,0.938,1.019,0.913,0.911,0.988,0.845,1.009,0.978,0.96,0.942,1.037,1.137,0.907,0.919,0.986,1.302,1.052 +NM_198992,1.092,1.069,0.92,0.976,0.953,1.046,0.995,1.071,0.898,1.146,1.003,0.968,0.965,0.932,1.029,1.212,1.087,1.054,0.96,1.082,1.037,1.191,1.32,0.906,0.941,1.059,0.804,1.09,1.006,1.033,0.882,1.031,0.914,0.968,1.043,1.003,0.987,0.834,0.914,1.042,0.96,0.956,0.734,0.797,1.071,0.979,1.04,1.05,1.003,1.081,1.125,1.088,1.09,0.986 +NM_198993,1.113,0.94,1.241,1.033,1.024,1.075,1.017,1.275,0.986,1.165,0.955,1.068,0.923,1.163,0.872,0.886,1.173,0.896,1.07,0.966,1.179,0.979,1.264,0.905,0.833,1.088,1.488,0.889,1.172,1.078,0.849,0.9,1.006,1.078,1.003,0.925,1.0,1.245,1.106,1.018,0.858,0.904,1.169,1.002,1.063,0.971,1.031,1.058,1.074,1.182,0.919,0.881,1.192,0.898 +NM_198994,0.962,0.973,1.113,1.04,0.99,0.97,1.037,1.075,1.035,0.851,0.805,0.932,0.923,1.214,0.946,0.973,0.959,0.968,0.882,0.987,1.063,0.986,0.99,0.974,0.853,0.975,0.978,1.055,0.935,0.919,0.956,0.905,1.033,1.029,0.955,0.905,1.058,0.912,1.086,1.149,1.048,0.997,1.342,1.01,1.149,1.048,1.027,1.108,0.985,0.963,0.959,1.038,1.13,1.043 +NM_198995,1.086,1.125,1.041,0.95,0.871,1.144,0.93,1.012,0.924,0.882,1.086,0.947,1.244,1.117,1.049,1.107,0.946,0.937,0.825,0.929,0.999,0.897,1.124,1.066,0.972,0.85,1.176,1.036,0.95,1.13,1.043,0.901,1.046,1.135,0.946,0.952,1.038,0.991,0.954,0.978,0.916,1.151,0.987,0.832,0.966,1.106,0.994,1.021,1.075,0.93,0.988,0.798,1.008,0.938 +NM_198996,1.012,0.969,0.96,0.937,0.918,1.009,0.886,1.119,1.076,1.207,0.852,1.08,0.939,1.108,0.864,0.841,1.099,0.992,1.106,0.949,1.086,0.935,0.884,0.966,1.018,1.235,1.011,1.054,0.905,0.954,0.958,1.03,0.869,0.989,1.001,1.032,0.998,1.064,0.979,1.079,0.923,0.937,0.879,1.009,0.97,1.109,1.017,0.953,0.868,0.869,0.98,1.058,0.955,0.98 +NM_198998,1.135,0.992,1.085,0.988,1.012,1.035,1.051,0.976,1.224,0.892,1.051,1.012,0.963,1.203,0.934,1.064,0.955,1.17,0.997,0.896,0.911,1.032,1.039,0.97,1.004,1.054,1.106,0.86,1.251,0.883,1.168,0.833,0.936,0.913,0.961,0.935,1.044,1.032,1.002,1.001,0.921,0.914,0.997,0.954,0.934,0.92,0.987,0.942,1.069,0.983,1.049,0.956,0.92,1.026 +NM_198999,1.009,0.961,0.972,0.982,0.949,1.028,0.935,1.114,0.808,0.959,1.035,0.907,1.015,1.304,0.873,1.004,0.9,1.153,0.837,0.936,1.001,1.076,0.913,1.027,1.033,1.069,1.017,0.839,1.385,1.046,0.812,0.876,0.868,0.927,1.178,1.002,0.994,0.97,0.923,0.906,0.936,1.137,1.198,0.864,1.007,1.006,1.067,0.915,1.142,1.071,1.075,1.208,1.127,0.835 +NM_199000,0.966,1.011,1.0,0.991,0.864,1.003,1.418,1.222,1.11,1.014,0.951,0.895,1.089,1.0,0.865,1.034,1.034,1.016,1.019,0.97,0.889,1.021,0.857,1.076,1.056,0.99,1.052,0.997,1.284,0.923,0.915,0.898,0.872,1.02,1.115,1.126,0.901,0.941,1.033,0.992,1.003,1.105,1.0,0.903,1.032,0.907,1.093,0.895,0.968,1.098,1.01,1.109,0.999,0.897 +NM_199001,5.511,0.138,4.313,1.381,6.541,0.12,0.158,6.944,6.939,5.703,0.117,3.555,4.513,3.027,4.449,1.639,4.654,3.112,6.198,0.122,2.32,5.367,0.123,5.831,0.12,7.484,2.468,7.12,0.12,0.25,6.598,0.159,1.598,0.146,11.58,0.182,0.167,5.686,0.213,0.156,6.038,0.109,0.12,0.131,6.957,0.141,3.055,9.145,0.377,3.678,0.79,1.066,5.852,0.561 +NM_199005,0.868,1.219,1.223,0.77,1.022,1.151,0.972,1.019,1.085,1.149,0.875,1.16,0.985,1.07,0.765,1.237,0.868,0.983,1.034,1.071,0.892,0.917,1.187,1.133,0.798,1.003,0.972,0.983,0.81,1.251,0.993,1.001,1.51,1.009,0.71,1.077,1.018,1.163,0.999,1.108,1.28,1.173,1.156,0.809,1.188,0.775,0.928,0.899,0.903,0.965,0.963,1.053,1.166,1.411 +NM_199037,1.08,0.941,0.966,1.066,1.152,1.008,0.988,0.929,0.799,0.976,0.924,0.996,1.187,0.99,1.327,0.915,1.189,1.163,1.232,0.963,1.058,0.937,1.144,0.939,0.868,0.981,1.122,0.962,0.817,1.1,0.721,1.077,0.815,1.084,1.102,1.219,1.36,1.286,1.073,1.023,0.912,0.994,0.823,1.008,1.122,1.048,0.861,1.008,0.935,1.06,0.991,1.096,1.006,1.046 +NM_199039,0.865,0.962,1.256,0.756,0.807,0.801,0.939,0.697,1.143,0.828,1.104,0.769,0.975,0.836,0.912,0.997,0.811,0.85,0.894,0.801,0.806,0.849,1.025,0.989,0.924,0.681,2.012,1.065,0.56,1.26,1.055,3.064,2.837,1.488,0.585,0.817,0.842,0.797,2.2,2.61,1.132,1.569,0.748,2.106,0.927,0.771,0.873,0.833,0.62,0.978,1.033,1.949,1.125,2.035 +NM_199044,0.999,1.131,1.118,0.931,0.896,1.086,0.929,0.78,0.775,0.904,0.903,0.987,0.851,0.931,1.149,1.32,0.995,0.938,0.874,1.125,0.827,0.916,1.158,0.981,0.8,0.772,1.269,0.759,1.082,0.946,1.089,1.558,1.629,1.338,1.094,1.051,0.993,1.121,1.052,0.97,0.857,0.984,0.798,0.941,1.11,1.001,0.898,0.833,0.871,1.137,1.064,0.975,0.895,1.33 +NM_199046,1.239,1.004,0.925,1.018,1.098,1.169,1.026,0.966,0.947,0.891,1.051,1.023,0.895,0.914,1.056,0.952,1.0,0.859,0.838,1.037,0.906,1.073,0.93,0.983,1.058,0.969,0.956,1.069,0.852,0.983,1.127,1.083,1.051,1.035,0.949,1.07,1.06,0.928,1.027,1.02,0.883,1.02,0.97,0.952,1.037,0.937,0.872,0.969,1.032,1.074,0.9,0.938,0.942,0.892 +NM_199047,0.983,0.931,1.182,1.027,1.133,1.013,0.909,0.898,0.95,1.022,1.026,1.014,0.989,0.926,1.094,1.04,0.963,0.91,1.034,0.946,1.05,0.984,0.922,1.136,1.135,1.005,0.992,0.955,1.014,0.92,1.007,1.002,0.872,0.991,1.009,0.981,0.867,1.058,1.093,1.09,0.961,0.954,0.942,0.916,1.0,1.203,0.964,1.037,0.963,1.013,1.069,1.06,1.027,0.876 +NM_199050,1.031,1.116,1.282,0.732,1.09,0.652,0.474,0.491,1.579,0.942,0.644,0.784,0.555,0.966,0.985,0.936,1.014,0.923,1.169,0.859,0.784,1.159,1.002,1.063,0.71,1.07,0.9,1.068,0.514,0.978,1.252,2.131,1.544,1.046,0.623,0.518,0.781,1.163,0.955,1.168,1.316,1.087,0.636,0.952,1.024,0.692,0.871,1.155,0.485,0.827,0.882,0.841,0.877,1.574 +NM_199051,0.935,0.948,1.015,1.176,0.884,1.003,0.954,1.141,1.014,0.987,0.99,1.007,0.901,0.939,0.856,1.093,1.018,1.002,1.003,1.126,1.025,0.948,1.037,1.003,1.154,1.091,0.977,1.078,1.906,0.979,1.139,1.308,0.883,1.01,0.99,0.956,1.049,0.976,1.075,0.896,0.957,0.973,0.965,1.104,0.933,1.039,0.978,0.945,0.923,0.943,1.013,1.121,0.923,1.05 +NM_199054,1.141,0.707,1.461,0.821,0.917,1.205,0.715,1.559,1.251,0.885,0.892,1.094,1.242,0.895,1.437,1.746,1.122,0.987,1.803,1.111,1.189,1.253,1.03,1.105,0.763,1.94,0.923,1.162,0.708,1.056,1.717,0.76,1.493,1.361,1.657,0.546,0.812,1.619,1.201,0.623,0.997,0.982,0.515,1.0,1.058,0.723,0.847,1.455,0.648,1.799,0.758,0.601,1.239,0.779 +NM_199071,1.101,1.064,0.947,1.21,1.036,0.905,1.02,1.039,1.047,0.963,0.988,1.065,0.957,0.965,1.216,1.049,1.027,0.915,0.876,1.027,1.082,0.894,0.912,0.973,0.961,1.053,1.008,0.784,1.094,0.95,0.952,1.125,0.92,0.944,1.07,0.928,1.072,1.025,0.957,0.887,1.158,0.965,1.119,0.918,1.025,1.074,1.077,1.102,0.929,1.018,1.009,0.928,0.926,1.131 +NM_199073,1.015,0.992,1.085,0.967,0.89,0.904,1.053,1.075,0.985,0.904,1.041,0.92,1.04,1.059,1.128,1.004,0.933,1.075,1.06,1.096,1.009,0.781,1.039,1.102,0.863,0.977,1.077,0.882,0.939,1.033,0.964,1.022,1.054,0.818,1.064,1.009,1.024,1.212,1.034,0.819,0.901,0.877,1.024,1.006,0.907,1.028,0.818,1.0,1.12,0.85,0.913,0.871,0.933,0.838 +NM_199074,0.956,0.978,0.999,1.079,1.064,0.849,1.009,0.998,1.019,0.99,1.068,1.084,1.102,0.987,0.944,0.961,1.127,0.963,0.977,1.043,0.989,0.91,1.044,0.958,0.949,0.937,1.069,1.066,0.946,1.02,0.987,0.807,0.997,1.034,1.163,1.051,1.105,0.832,1.02,0.859,1.039,0.951,0.916,0.931,0.933,1.027,0.878,0.973,1.021,1.059,1.034,0.98,1.002,0.995 +NM_199124,0.851,1.159,1.003,0.923,0.955,0.918,0.919,1.028,1.077,1.087,0.971,0.997,0.959,0.87,0.838,1.172,1.117,0.953,0.972,1.05,0.988,1.029,0.951,0.908,0.975,1.137,1.208,1.063,0.771,0.935,0.892,1.025,0.977,0.98,1.077,1.006,0.904,1.104,1.136,0.987,0.913,0.946,0.78,0.948,0.977,0.927,0.96,1.07,1.097,1.001,1.03,0.801,0.994,0.927 +NM_199127,1.207,1.099,0.953,0.992,0.989,1.02,0.929,0.973,0.994,0.99,1.084,0.94,1.083,1.002,0.935,1.104,0.977,1.151,1.072,0.986,0.872,1.002,1.032,0.878,1.031,0.979,0.992,1.045,1.163,0.976,1.047,0.938,1.262,0.893,1.12,1.014,0.905,1.076,1.021,1.038,1.059,0.98,1.334,0.961,0.965,1.002,0.922,0.959,0.891,0.99,0.979,0.964,0.963,1.04 +NM_199131,0.951,1.059,1.094,0.969,1.064,0.98,1.015,0.988,1.038,0.905,0.929,1.106,1.098,1.313,1.006,1.108,1.013,1.041,1.044,0.89,0.776,0.97,0.986,0.974,1.093,0.884,0.883,1.052,1.078,1.021,0.982,1.016,0.928,0.916,1.052,1.155,0.989,1.094,1.031,0.957,0.988,1.0,1.096,0.948,0.969,0.987,1.058,1.025,1.103,0.976,0.928,1.005,0.938,0.81 +NM_199136,0.831,1.458,0.937,0.833,1.092,0.975,0.881,1.07,1.556,0.839,1.169,0.68,0.871,0.811,1.297,1.492,0.829,0.933,1.191,1.116,0.693,0.891,1.397,0.806,0.737,1.011,0.99,1.079,1.331,1.005,1.036,1.191,1.123,1.343,1.598,0.934,0.991,0.842,0.877,0.875,1.035,0.845,1.027,1.172,0.873,1.073,1.162,0.863,0.995,0.782,0.821,0.932,0.873,1.944 +NM_199141,0.864,0.823,1.595,0.441,1.279,0.869,0.456,0.61,1.234,1.486,0.689,1.294,0.596,0.767,0.841,1.14,1.118,0.941,1.537,1.002,0.764,1.05,1.583,1.591,0.333,1.143,1.374,1.261,0.369,0.941,0.959,1.156,1.07,0.5,0.346,1.075,0.885,1.644,0.839,1.44,1.486,0.951,0.853,1.191,1.436,0.922,1.097,0.998,1.19,0.977,1.032,1.037,1.303,1.264 +NM_199162,0.851,0.984,1.042,0.963,0.914,1.082,0.841,0.79,1.048,0.807,1.131,1.083,0.88,0.982,0.979,1.448,0.941,1.035,0.962,1.068,0.998,0.753,0.92,0.948,1.101,0.893,0.996,0.831,0.987,1.013,1.005,1.371,1.091,1.438,0.87,1.023,1.064,0.931,1.124,0.979,0.858,1.025,0.795,1.272,0.873,1.111,0.88,1.0,1.02,0.982,1.03,0.956,0.934,1.373 +NM_199163,1.079,0.811,0.88,1.054,0.817,1.196,0.641,0.667,1.123,0.762,0.826,0.952,0.771,0.769,1.084,0.946,1.252,0.82,1.1,1.022,0.769,1.441,0.982,1.232,0.776,1.232,1.213,0.787,0.533,1.138,0.913,1.512,1.768,1.171,0.74,1.232,0.729,1.039,1.236,1.627,0.833,0.976,0.761,1.013,0.831,0.69,0.702,1.079,0.836,0.85,0.804,0.758,0.825,1.815 +NM_199165,1.0,1.094,1.0,0.916,1.055,0.952,1.521,1.068,0.91,0.993,0.968,1.029,0.905,1.037,0.946,0.993,0.907,0.991,1.112,0.868,1.023,1.023,1.073,0.939,1.032,0.953,1.032,1.034,0.945,0.938,1.057,1.125,0.707,0.979,0.851,0.894,0.92,1.034,1.197,1.043,0.962,1.034,1.064,1.056,0.944,1.035,1.039,0.866,1.007,0.889,1.017,0.935,0.939,1.152 +NM_199167,0.948,0.897,1.096,1.321,1.07,1.078,0.831,0.887,1.039,0.961,1.008,0.978,1.088,1.231,0.859,1.181,1.101,0.954,0.95,1.205,1.102,1.047,0.782,0.999,1.016,0.951,0.663,1.025,1.04,1.0,1.093,0.996,0.959,0.965,1.126,0.924,1.015,0.915,0.921,0.881,1.08,1.083,1.123,0.935,1.058,0.92,1.011,0.98,0.933,1.164,1.108,0.955,1.074,1.08 +NM_199168,0.749,2.273,0.807,1.206,0.84,1.751,1.603,0.855,0.782,0.855,1.437,0.828,0.853,0.723,1.238,1.7,0.923,0.86,0.814,1.177,1.315,0.781,1.458,0.893,1.725,0.744,0.741,1.662,0.833,2.933,0.734,2.431,0.835,6.742,0.674,0.988,1.669,1.524,0.987,0.916,1.797,4.808,1.318,0.814,0.793,1.465,0.874,0.867,0.915,0.874,1.154,0.9,0.886,1.377 +NM_199171,1.133,0.982,0.848,1.034,0.887,0.956,1.186,0.902,0.981,1.153,0.918,1.034,1.013,1.123,1.106,0.928,0.923,0.939,0.956,1.056,1.152,0.98,1.031,0.992,0.993,1.095,0.844,1.196,1.191,0.948,1.069,0.851,1.038,1.065,0.973,1.005,0.969,0.955,0.94,1.023,1.032,0.991,1.285,0.961,0.948,0.942,1.232,0.943,1.003,0.95,0.934,1.109,0.901,0.932 +NM_199173,0.912,1.081,1.087,0.895,0.986,0.882,0.979,1.066,1.132,1.077,0.879,1.076,0.975,0.97,1.01,0.963,0.969,0.934,1.043,0.995,1.0,1.099,0.989,1.058,0.994,1.05,1.097,0.974,1.032,0.961,1.047,1.042,0.949,1.02,0.966,1.017,0.917,1.164,1.005,0.908,1.0,1.064,0.992,1.058,0.992,0.976,0.975,0.991,0.926,0.954,1.0,0.984,0.874,0.989 +NM_199175,1.049,0.948,1.045,1.016,1.045,0.988,0.924,1.076,1.001,1.104,1.043,1.045,0.96,0.837,1.081,0.942,0.841,1.041,0.955,1.048,1.071,0.912,1.008,0.948,1.013,0.981,0.822,0.971,1.063,1.047,1.042,1.065,0.947,1.093,1.018,0.928,1.016,0.968,1.047,1.072,0.952,0.935,0.947,1.001,0.966,1.049,1.016,1.057,0.992,0.988,0.949,0.936,1.028,0.973 +NM_199180,0.857,0.915,1.093,0.985,1.1,0.97,0.843,0.921,0.808,1.118,1.034,1.016,1.154,0.857,1.027,0.999,0.99,1.02,0.965,0.969,1.066,1.154,1.067,1.01,1.059,0.899,1.047,0.977,0.776,1.145,0.893,1.02,0.985,0.966,1.037,0.939,0.834,0.989,1.236,1.149,1.108,1.0,0.942,1.012,0.936,1.0,1.006,1.021,0.875,1.052,0.959,1.04,1.072,1.256 +NM_199181,0.992,0.947,0.967,0.949,0.774,1.049,0.911,0.892,0.928,0.991,0.906,0.897,1.012,1.095,0.878,0.935,0.989,0.861,1.043,1.105,1.028,1.018,0.963,1.015,1.083,1.071,1.097,1.043,1.113,1.013,1.009,1.063,1.042,0.976,1.042,0.954,0.98,1.043,1.072,1.026,0.945,1.049,1.147,0.909,1.067,1.037,0.864,0.918,0.945,1.056,0.964,0.923,0.96,0.999 +NM_199182,0.631,0.85,0.837,0.783,0.759,1.848,0.874,0.686,1.225,1.54,1.358,1.103,0.554,0.64,1.179,1.497,0.675,1.29,1.218,0.835,0.755,0.721,1.437,1.522,0.771,0.571,0.9,0.851,0.542,1.59,0.928,1.605,2.661,1.508,0.251,0.934,1.282,0.939,2.424,1.19,1.455,0.819,0.892,2.013,0.966,1.574,1.269,0.828,1.829,0.776,1.228,0.853,1.208,4.535 +NM_199183,0.997,0.941,1.039,0.962,0.935,1.037,1.072,0.986,0.895,0.944,0.819,1.071,0.903,1.172,0.884,1.017,0.976,0.924,0.842,0.939,1.082,0.991,1.042,0.938,1.028,0.799,0.902,1.076,1.561,1.014,0.873,1.096,1.158,1.048,1.021,1.108,0.871,0.938,1.079,0.898,1.065,1.117,1.024,1.149,1.097,1.149,1.071,0.975,1.082,1.002,1.044,1.004,0.998,1.141 +NM_199184,1.04,0.981,0.973,0.884,0.901,1.017,1.029,1.053,1.099,0.961,1.142,1.075,0.841,1.058,1.151,1.045,0.993,1.008,1.065,1.009,0.907,0.975,0.991,0.963,1.0,1.046,1.012,0.895,1.015,1.059,1.095,0.982,1.114,0.842,0.801,0.91,0.979,1.142,0.97,0.969,1.055,1.057,1.049,0.992,1.015,0.957,0.952,1.124,1.19,0.973,1.156,0.98,0.976,0.945 +NM_199186,1.203,0.953,1.019,0.892,1.078,1.057,0.898,1.019,0.966,1.009,0.827,1.022,0.927,0.911,0.906,0.96,1.013,0.91,1.084,0.982,1.186,1.071,0.774,1.028,0.986,1.158,1.073,1.03,0.716,1.03,1.1,1.073,1.008,0.92,0.924,0.805,1.174,1.025,0.865,1.051,0.954,0.824,1.071,0.934,1.076,0.913,0.946,1.045,1.01,1.136,1.052,0.963,0.9,0.952 +NM_199203,0.961,1.022,1.09,0.86,0.972,0.997,0.834,0.933,0.908,0.947,0.87,0.959,0.905,1.212,0.943,1.075,0.947,1.104,1.074,0.965,1.077,0.903,1.114,0.889,0.917,1.021,0.969,0.998,0.999,1.023,1.153,1.037,0.985,0.913,1.205,0.903,1.033,1.016,1.122,0.923,1.15,0.998,1.043,1.26,0.998,0.791,1.224,1.029,0.973,0.829,1.174,0.9,0.908,0.897 +NM_199204,1.674,0.467,1.34,1.115,2.137,0.67,0.602,2.306,2.85,0.686,0.979,0.964,1.585,1.462,1.513,0.879,2.825,0.802,1.491,0.892,0.867,1.014,0.722,0.916,0.576,1.508,1.206,1.781,0.713,0.608,3.126,0.444,1.311,0.773,5.015,1.44,0.663,1.781,1.317,0.489,2.528,0.775,0.88,1.406,1.505,0.93,1.823,2.346,1.308,1.513,0.954,1.059,1.483,1.1 +NM_199205,1.052,0.877,0.922,0.854,1.015,0.967,1.046,1.127,0.935,1.158,1.062,1.079,0.861,0.941,0.897,1.089,1.063,1.066,1.063,0.959,0.909,0.982,1.105,1.033,1.008,1.067,1.05,1.043,1.331,1.048,1.118,0.898,0.932,0.907,0.993,1.113,1.0,1.085,1.032,1.078,0.912,0.991,1.295,1.146,1.115,1.0,0.932,0.966,0.934,0.989,1.016,1.007,1.04,1.071 +NM_199206,1.04,1.027,0.894,0.807,1.148,0.907,0.99,1.056,0.903,0.97,0.924,1.079,0.932,1.035,1.148,0.997,1.025,0.935,1.055,1.042,0.998,0.891,0.947,1.001,1.047,1.074,1.174,0.999,0.782,0.994,1.027,0.978,0.951,1.045,1.039,0.961,0.903,1.074,1.032,0.943,1.005,1.076,0.76,1.075,0.995,1.021,1.051,1.085,1.049,1.081,0.948,0.959,0.99,0.904 +NM_199227,0.931,0.985,0.954,0.997,1.098,0.954,0.923,1.093,1.006,1.052,0.936,1.009,0.975,1.257,0.882,0.882,0.96,0.969,0.941,0.983,0.83,0.964,0.933,1.134,0.996,1.137,1.012,1.142,0.798,1.065,0.952,1.141,0.883,1.069,0.974,0.978,0.9,1.09,1.066,1.153,1.0,0.899,0.878,0.941,1.068,1.076,1.086,1.042,1.013,0.957,1.036,0.901,0.969,1.071 +NM_199231,1.056,0.986,1.109,1.037,1.089,0.965,0.892,1.057,1.009,1.028,0.975,1.168,1.183,0.815,0.997,0.974,1.013,1.096,1.051,0.929,1.145,0.986,1.084,0.939,0.959,1.02,0.977,1.22,0.948,0.993,0.988,1.013,0.908,0.922,1.037,1.005,0.925,1.078,0.935,0.991,0.959,0.915,1.164,0.998,1.113,0.999,0.985,1.001,1.076,0.931,1.024,1.132,0.98,0.854 +NM_199235,1.045,1.107,1.074,0.882,1.022,0.908,1.156,0.889,0.867,1.081,1.075,0.924,0.914,1.109,1.143,0.787,0.884,0.943,0.989,1.14,1.075,0.867,1.02,0.893,1.278,0.973,0.924,1.063,1.467,0.955,0.816,0.979,1.039,1.061,1.028,0.916,0.938,1.033,1.033,0.898,0.924,0.926,1.022,0.976,1.048,0.981,0.866,1.09,1.118,0.911,1.098,0.866,1.051,1.003 +NM_199243,1.105,1.038,0.957,0.894,1.094,0.919,0.981,0.97,0.994,0.944,0.986,0.971,1.138,1.036,0.956,0.819,0.96,0.987,0.887,1.072,1.242,0.85,1.1,1.001,0.995,1.155,1.09,1.008,1.223,1.079,1.071,1.06,0.919,0.978,0.94,0.831,0.961,0.87,1.072,1.066,0.802,1.018,0.914,0.934,1.103,1.138,0.922,0.986,1.171,0.981,1.013,0.832,0.989,1.025 +NM_199245,0.976,0.97,0.994,0.958,1.046,0.969,0.935,0.929,0.995,1.244,1.012,0.962,0.874,1.095,0.99,1.064,1.032,0.924,1.048,0.944,0.979,1.029,1.01,1.069,1.08,1.057,0.98,0.954,1.116,0.995,1.012,1.018,0.885,1.012,0.856,0.971,1.014,0.896,1.033,1.102,0.941,0.879,1.08,1.062,0.906,0.864,1.087,1.049,1.082,1.088,0.886,0.88,0.967,1.185 +NM_199247,1.092,0.886,1.041,1.052,1.087,0.962,0.821,1.189,1.082,0.972,0.941,0.843,1.08,0.842,1.264,0.997,0.938,0.916,0.861,0.967,0.97,1.054,1.033,1.001,1.033,1.093,0.985,0.946,0.948,1.02,1.217,1.058,1.166,1.019,0.908,1.038,0.973,0.949,1.056,0.99,1.066,1.143,1.046,0.914,0.976,1.004,0.964,1.038,0.841,0.976,0.949,1.036,1.05,1.135 +NM_199254,0.98,0.809,1.036,0.863,0.946,1.145,1.113,0.944,1.061,1.2,0.916,1.149,1.05,0.947,0.999,1.32,1.122,1.146,1.037,1.043,1.017,1.082,1.056,0.992,1.069,1.013,0.916,0.951,0.875,0.972,0.87,0.915,1.092,0.98,0.991,0.989,0.92,0.984,1.085,0.885,0.925,0.949,1.135,1.127,0.883,1.169,0.836,0.99,0.969,0.842,0.87,1.074,1.241,0.846 +NM_199262,1.124,0.89,0.939,0.951,1.009,1.0,0.944,0.93,0.988,1.169,0.879,1.045,0.992,1.114,1.159,1.185,1.007,1.018,0.953,0.787,0.899,1.003,0.986,1.126,0.916,1.085,1.118,1.081,0.77,0.947,1.093,0.946,0.927,0.796,1.061,1.02,1.06,0.935,1.109,1.015,1.049,1.018,0.947,1.036,0.998,0.867,1.237,1.167,1.064,1.152,0.958,1.019,1.027,1.121 +NM_199265,0.936,0.913,1.058,0.95,1.003,0.916,0.911,0.889,0.931,0.851,1.034,1.161,1.024,0.971,1.008,1.038,1.063,0.971,1.096,0.959,1.072,0.987,0.924,1.036,0.925,1.017,0.987,1.099,1.279,0.948,1.146,0.872,0.958,1.01,0.844,1.026,0.948,0.904,1.039,1.074,1.034,1.05,0.868,1.022,1.071,0.855,1.013,0.959,0.941,0.976,1.15,0.997,1.057,0.976 +NM_199280,1.144,1.092,0.914,0.982,0.927,1.044,1.017,0.885,0.936,1.015,0.898,1.091,1.038,1.051,0.918,1.174,1.087,1.125,1.074,0.921,0.96,0.985,0.94,0.97,1.11,1.024,1.151,1.035,0.829,1.123,0.94,1.108,0.951,0.999,0.946,0.919,0.934,1.035,1.182,1.011,0.977,1.076,1.084,1.15,1.072,1.089,1.0,1.053,0.935,1.028,0.937,0.936,0.982,0.948 +NM_199286,0.881,1.219,0.887,0.97,0.957,1.027,1.093,0.922,1.11,0.864,0.861,0.934,0.927,0.935,0.983,0.976,0.945,1.01,1.062,1.258,1.17,1.064,1.041,1.095,0.981,0.974,1.074,0.987,0.741,1.058,1.066,0.913,0.983,0.989,1.062,1.106,0.924,0.872,1.165,0.977,1.034,0.901,0.898,1.044,0.891,0.996,0.933,1.056,0.935,0.921,0.928,0.95,1.012,1.153 +NM_199290,0.859,0.867,0.875,1.052,1.149,1.019,1.012,1.037,1.099,0.989,0.988,1.059,0.981,0.837,1.041,1.007,1.071,0.986,0.918,1.049,0.869,0.875,1.018,1.056,0.946,0.982,0.864,0.927,0.867,0.936,1.205,1.04,1.292,1.094,1.065,0.95,1.153,1.1,1.135,0.917,1.083,1.063,0.841,0.916,1.111,1.135,0.879,0.983,1.068,1.005,0.926,1.065,0.975,1.09 +NM_199320,0.997,1.085,1.083,1.005,1.101,1.017,1.028,0.925,1.226,1.107,0.967,1.006,0.935,0.994,0.892,1.087,1.036,0.957,0.83,0.947,0.965,1.036,0.975,1.115,0.856,0.969,0.896,1.106,0.762,0.985,1.068,1.089,1.158,0.936,1.245,1.026,0.926,1.11,1.074,0.918,0.915,1.056,0.814,1.014,0.988,0.988,1.145,0.973,1.027,0.938,0.836,1.018,1.202,1.118 +NM_199321,1.062,1.208,1.075,0.948,0.963,0.975,1.146,1.004,0.951,0.942,0.81,0.956,1.086,0.898,0.938,0.892,1.031,0.897,0.989,0.81,1.065,1.004,1.006,0.996,1.133,0.905,1.087,1.161,0.877,1.035,1.164,0.997,1.138,0.979,1.008,0.963,0.968,1.149,1.114,1.005,1.107,0.992,0.751,0.927,0.991,0.923,1.012,1.032,0.933,0.905,1.088,1.017,0.929,0.996 +NM_199324,0.793,0.958,1.623,0.658,0.939,0.901,0.739,0.667,1.099,1.008,0.967,0.673,0.667,0.856,1.139,1.132,1.071,0.932,1.456,1.096,0.752,0.83,1.212,1.004,0.61,0.865,1.372,0.918,0.556,0.87,1.106,1.414,1.467,0.957,0.579,0.708,0.936,0.948,1.149,1.016,1.075,1.005,0.686,1.105,1.161,0.908,0.969,0.799,1.014,1.053,1.012,0.929,1.052,1.898 +NM_199326,0.927,0.865,1.04,1.0,1.24,0.943,0.912,1.263,1.025,1.025,0.966,0.94,0.962,1.299,1.212,1.087,1.276,0.971,0.904,0.879,0.895,0.978,0.962,1.12,1.063,0.993,1.072,0.901,1.001,0.992,1.105,0.968,1.056,0.836,0.789,1.071,1.008,0.985,0.931,1.084,0.98,0.94,1.085,0.93,1.122,1.026,1.078,0.993,0.964,1.023,0.929,0.983,1.088,1.03 +NM_199327,0.66,1.145,0.96,0.769,0.84,1.63,0.67,0.681,1.323,0.726,0.965,0.728,1.395,0.782,1.17,1.186,1.114,0.799,0.794,1.256,0.567,1.012,1.319,0.943,0.667,0.733,0.744,0.942,0.473,1.69,1.08,2.76,1.248,1.458,0.539,0.704,0.925,1.383,1.8,2.303,0.94,1.921,0.799,1.013,0.824,1.391,0.907,0.783,1.308,0.762,1.196,1.183,0.57,1.192 +NM_199328,1.075,1.07,1.075,1.041,0.866,0.965,0.817,1.023,0.993,1.052,1.107,1.007,1.042,0.95,1.089,0.986,1.076,1.144,0.8,0.926,1.03,0.936,0.938,1.167,1.069,1.098,0.945,1.079,0.702,1.089,0.893,1.067,1.042,1.044,0.998,1.044,1.061,1.099,0.949,0.941,0.943,0.903,1.116,1.186,1.054,1.102,0.947,1.165,0.934,1.037,1.099,0.875,1.019,0.916 +NM_199329,0.978,0.917,1.021,0.979,0.963,1.054,0.946,1.041,1.001,1.017,0.998,0.852,0.898,0.962,1.094,0.982,1.013,0.977,1.116,1.231,0.919,1.032,0.93,1.098,0.991,0.967,1.164,1.194,1.139,0.878,1.132,0.992,1.065,0.993,0.871,0.911,1.151,1.051,0.895,1.095,1.003,0.959,1.388,1.036,0.978,1.019,1.002,1.138,0.923,0.995,0.987,1.029,0.926,1.03 +NM_199334,0.905,1.032,0.983,0.908,1.046,1.061,1.122,0.8,0.961,0.997,0.945,0.925,1.027,0.919,1.117,0.936,0.901,0.981,1.058,0.961,0.946,1.002,0.915,1.005,0.929,0.838,0.967,0.913,1.295,0.883,0.836,0.97,1.117,1.012,0.93,1.128,1.016,1.038,0.972,1.025,0.849,0.956,1.333,1.123,1.084,1.042,0.991,1.014,0.988,0.89,0.933,0.935,1.057,1.208 +NM_199336,0.928,1.164,0.951,0.956,0.883,1.146,1.109,0.871,1.042,0.947,0.828,0.825,1.097,0.893,0.938,1.022,0.992,0.985,1.013,1.062,0.785,0.982,1.044,0.964,1.176,0.83,1.044,0.932,1.229,1.125,0.854,1.175,1.513,1.565,0.923,1.028,1.139,0.977,1.114,0.862,0.978,1.127,1.061,1.039,0.9,1.021,0.892,0.954,1.038,0.945,1.025,0.962,1.047,0.974 +NM_199337,0.59,1.275,0.828,0.798,0.615,1.584,0.615,0.471,0.653,0.706,1.31,0.562,0.64,0.49,0.779,1.499,0.747,1.071,1.091,0.841,0.702,0.878,1.14,0.811,0.786,0.744,0.835,0.491,0.776,1.404,0.569,1.664,1.731,1.834,0.199,1.337,1.366,0.761,2.253,0.984,0.702,1.413,0.755,1.371,0.655,0.994,0.922,0.779,1.074,0.583,1.006,0.604,0.626,1.101 +NM_199338,1.018,1.048,0.895,0.926,0.916,1.114,0.865,0.91,1.016,0.964,1.092,0.839,0.884,0.909,0.988,1.102,0.898,1.088,1.0,1.021,1.071,1.042,0.987,1.007,0.984,0.911,1.089,1.074,0.904,1.011,1.001,1.176,0.859,1.081,0.922,0.883,0.854,1.028,1.046,1.02,1.072,0.934,1.175,0.941,0.898,1.019,1.0,0.996,0.885,0.852,0.918,1.001,0.959,1.0 +NM_199339,0.988,1.056,1.075,0.99,1.001,1.14,0.977,1.127,0.847,1.013,1.016,1.001,0.957,1.156,1.023,0.985,1.164,0.989,0.955,1.234,0.953,1.144,1.097,1.117,0.936,0.823,0.76,0.999,1.055,1.093,0.922,0.863,0.978,1.184,1.058,1.039,1.049,0.832,1.179,0.951,0.838,1.135,1.356,1.089,0.997,1.094,0.9,1.02,0.98,1.146,0.845,1.012,0.939,0.954 +NM_199342,0.514,1.31,0.985,0.822,0.727,1.516,0.685,0.607,0.823,0.745,1.794,0.9,0.86,0.517,0.76,1.698,0.592,0.686,0.885,1.206,0.581,0.562,1.467,0.732,0.692,0.821,1.129,0.952,0.522,1.128,0.614,1.997,2.755,1.959,0.303,0.974,1.051,0.73,1.48,1.191,0.814,1.25,0.692,1.701,0.698,0.958,0.752,0.566,0.953,0.675,1.205,0.915,0.793,1.831 +NM_199344,0.954,0.988,1.008,0.956,1.328,0.891,0.658,1.186,1.201,1.256,0.819,1.009,1.134,1.114,1.119,1.039,1.033,1.204,1.155,0.87,1.076,1.133,0.83,1.149,0.987,1.159,0.971,1.224,1.358,0.76,1.254,0.859,1.028,0.746,1.88,0.929,0.97,1.157,0.887,0.886,1.196,0.977,0.898,0.953,1.367,0.784,1.135,1.388,0.898,1.176,0.822,1.037,1.019,1.138 +NM_199345,0.99,1.112,0.997,0.876,1.017,0.962,1.161,1.04,1.154,1.047,0.89,0.904,1.089,0.88,0.894,0.983,1.05,0.978,0.907,1.047,1.378,0.979,1.09,1.057,0.993,0.97,0.994,1.128,1.02,1.112,1.042,0.951,1.008,0.912,0.855,1.073,0.962,0.915,1.006,1.127,0.999,1.047,1.092,0.967,1.158,1.087,1.023,1.083,1.0,1.102,0.958,1.035,0.981,0.925 +NM_199346,1.07,1.134,0.964,1.018,1.046,0.906,0.854,0.826,1.068,1.122,0.905,1.01,1.065,1.026,1.019,0.956,1.048,0.957,1.023,0.846,0.882,0.963,0.897,1.048,0.955,1.083,1.026,1.048,0.696,1.009,0.985,1.177,0.892,0.952,1.155,0.993,0.929,1.085,0.931,0.999,0.944,1.055,0.898,0.999,0.994,0.96,1.02,1.024,1.061,0.931,0.995,1.026,0.964,0.967 +NM_199349,1.038,0.785,1.535,1.058,1.044,0.925,0.861,1.021,1.26,1.341,1.002,1.363,1.155,0.809,0.967,0.87,1.247,1.15,1.21,0.844,1.055,1.265,0.812,1.112,0.926,1.547,1.121,1.043,0.901,0.962,1.018,0.893,1.234,0.957,0.987,1.064,0.887,1.319,0.891,0.857,1.091,0.918,0.737,0.89,1.519,0.884,1.01,1.225,0.995,1.618,0.852,1.115,1.421,1.012 +NM_199350,1.005,1.143,0.921,0.925,1.034,1.089,0.924,0.947,0.984,1.039,1.041,1.097,1.054,0.993,1.285,1.043,0.986,1.132,1.218,1.066,1.134,0.972,1.023,0.884,0.967,1.106,0.977,1.046,0.967,0.964,1.015,0.943,1.022,1.038,0.921,0.984,0.994,1.103,0.966,1.033,0.911,0.947,0.912,1.186,0.981,0.925,1.1,0.979,1.01,1.025,0.969,1.092,0.966,0.822 +NM_199351,1.001,1.067,0.968,0.956,0.945,0.954,0.958,0.924,1.003,0.944,0.974,0.936,1.029,0.994,0.926,0.837,1.065,1.222,1.134,1.041,1.064,0.931,1.006,0.932,1.012,0.975,1.0,1.05,0.876,0.974,1.157,1.109,0.963,0.922,1.19,1.154,1.168,0.886,1.011,1.0,0.973,0.959,1.108,1.048,1.075,0.945,1.136,0.895,1.143,1.067,0.95,0.973,1.055,1.105 +NM_199355,1.148,0.805,0.964,1.013,1.061,1.017,1.064,1.071,1.188,0.819,1.068,1.055,0.988,1.123,1.137,1.041,1.035,1.036,1.042,1.341,1.042,1.074,1.127,0.876,0.93,0.931,1.06,0.911,1.309,0.928,0.905,1.508,0.959,0.879,1.187,0.943,1.063,1.038,0.873,1.035,0.978,0.77,1.114,0.779,1.097,1.018,0.99,0.949,1.086,1.158,0.973,0.891,1.291,1.141 +NM_199357,1.102,1.004,1.013,0.83,1.077,1.058,0.786,1.003,0.817,1.017,0.919,1.009,0.972,1.001,1.137,0.977,1.027,0.985,1.129,1.113,1.097,1.085,0.999,1.007,1.065,0.946,0.927,1.029,0.797,0.945,1.004,0.958,0.897,0.925,1.049,0.915,1.053,1.1,1.011,1.121,0.909,0.893,1.418,0.987,0.935,0.99,0.898,1.163,0.93,0.99,1.114,0.922,1.086,0.957 +NM_199358,0.954,0.891,1.167,1.039,0.961,1.05,0.985,1.007,0.985,1.018,1.052,0.983,0.946,0.846,0.954,1.047,1.064,0.96,1.101,1.009,0.95,0.979,1.079,0.984,1.024,1.05,0.896,0.955,0.856,1.018,1.007,1.003,1.029,0.758,1.031,0.986,0.965,0.92,1.02,1.044,1.055,1.025,1.042,1.008,1.025,0.933,1.042,1.065,0.977,1.012,1.119,1.048,1.067,1.111 +NM_199367,0.835,0.845,0.978,0.977,1.122,1.181,0.949,0.971,0.972,0.781,1.23,1.096,1.075,1.166,1.003,1.136,0.9,1.038,0.971,0.937,1.078,0.879,0.942,1.099,0.997,1.091,0.968,0.903,0.983,0.993,0.931,1.043,1.139,0.954,0.875,0.883,1.151,1.13,1.249,0.928,0.973,0.992,1.149,1.058,1.115,1.164,0.827,1.009,1.03,1.048,0.969,1.03,0.926,0.892 +NM_199417,0.993,0.862,0.846,0.888,0.89,0.954,1.0,0.929,0.989,0.969,1.063,0.993,1.111,1.002,1.045,0.869,1.031,0.902,0.971,1.001,1.208,1.026,1.03,1.071,0.999,0.964,0.972,1.02,1.067,0.828,1.004,0.959,1.115,1.15,1.141,1.048,0.966,1.046,0.962,0.918,1.048,0.976,0.809,1.048,1.025,0.946,1.05,1.15,0.97,1.169,1.12,0.954,1.052,1.074 +NM_199421,0.928,0.934,1.026,1.126,1.067,1.169,0.905,0.861,0.882,0.972,0.922,0.998,0.923,1.042,0.949,1.091,0.859,0.868,0.977,0.938,1.188,0.87,1.001,0.95,1.041,1.031,0.793,0.851,1.158,1.056,0.932,1.067,0.94,1.065,0.959,1.048,1.121,0.959,1.23,0.911,1.066,0.984,1.075,1.211,0.886,0.936,1.099,0.947,1.192,0.902,0.793,0.853,0.947,1.299 +NM_199424,1.112,1.095,0.952,1.113,0.915,1.007,0.907,1.078,0.982,0.923,1.012,0.941,0.926,0.965,1.175,1.05,0.949,0.804,1.141,1.061,0.965,1.085,1.021,1.056,1.002,0.926,1.1,1.039,1.295,1.022,0.973,1.081,1.003,0.993,1.054,0.951,1.064,1.181,0.991,1.082,1.119,0.979,1.055,1.134,0.977,0.849,0.883,1.034,0.895,0.967,1.034,1.038,1.12,1.01 +NM_199425,1.0,1.027,0.981,0.917,0.912,0.994,0.846,1.057,0.883,1.09,1.009,1.056,1.045,0.803,1.216,1.098,0.964,1.052,1.043,0.898,0.919,0.886,1.056,1.012,0.994,0.987,0.874,0.956,1.116,0.934,0.933,1.029,0.918,0.911,0.932,0.962,1.041,1.01,1.15,1.004,1.15,0.986,1.01,0.927,0.915,0.953,1.093,1.054,1.044,1.037,1.038,0.804,0.973,1.103 +NM_199440,1.074,0.952,1.012,1.021,1.033,0.988,0.881,0.869,1.164,0.868,1.019,0.97,1.108,1.11,0.944,1.042,1.208,1.038,0.831,1.089,1.091,0.943,1.023,0.974,1.107,0.991,0.92,0.856,0.744,0.98,0.973,0.894,1.094,0.992,1.251,1.135,1.072,0.895,1.031,1.041,1.072,1.124,0.811,1.012,0.945,1.134,1.109,0.945,1.031,1.117,0.975,1.066,0.863,1.09 +NM_199450,1.242,0.856,1.034,1.212,1.539,1.103,1.061,1.148,1.162,0.936,1.188,1.011,1.04,1.107,1.184,1.025,0.917,1.165,1.175,0.884,1.092,1.17,0.939,1.122,0.965,0.868,1.005,1.586,1.442,0.889,1.156,0.877,0.927,0.883,1.822,0.965,0.92,1.243,0.988,0.905,0.978,1.027,1.139,1.098,1.132,0.992,0.971,1.177,1.034,1.119,0.961,0.989,1.098,0.928 +NM_199451,1.115,0.969,0.872,1.006,0.88,0.886,1.06,1.054,0.959,1.008,0.937,1.169,1.05,0.937,1.038,0.946,1.154,0.923,1.084,1.016,0.874,1.021,0.929,0.979,1.037,1.003,1.068,0.968,0.924,1.062,0.893,1.092,0.88,0.842,0.911,1.036,0.996,1.0,0.856,1.058,0.97,0.939,0.811,0.954,0.943,1.212,0.914,1.018,0.902,1.024,1.015,1.053,1.061,0.942 +NM_199452,1.137,1.146,1.001,1.127,1.157,0.985,0.75,0.812,1.001,0.862,1.056,1.052,1.096,0.716,0.863,1.105,0.95,0.89,0.944,0.84,0.791,1.097,0.917,0.931,1.039,1.072,1.069,1.03,1.427,0.996,0.999,1.004,1.001,0.866,1.292,1.028,0.962,0.929,1.14,1.039,1.072,0.864,0.977,1.018,1.124,1.097,1.035,1.084,0.83,0.985,0.905,0.923,1.02,0.972 +NM_199453,0.937,1.14,1.002,1.085,0.979,0.96,1.049,0.966,0.987,1.097,0.886,1.025,1.179,0.996,0.922,1.099,1.061,0.951,1.009,1.031,0.854,0.769,0.994,0.968,0.954,1.125,0.93,1.087,0.824,1.233,0.956,1.054,1.042,1.019,0.968,0.862,0.905,0.952,1.086,0.898,1.055,1.163,1.315,0.969,0.807,1.142,0.946,1.016,1.147,1.077,1.027,0.958,1.041,0.987 +NM_199459,1.101,1.061,0.979,1.019,0.947,1.067,1.162,1.256,0.931,1.043,0.95,0.934,1.007,0.911,1.449,0.985,0.987,0.954,1.022,1.034,0.935,1.001,0.967,0.998,0.978,0.989,1.072,0.901,1.466,1.101,0.923,1.027,0.844,0.89,0.914,0.972,0.992,0.969,1.037,1.059,0.966,1.126,1.155,1.134,0.986,1.078,0.854,1.058,1.012,0.945,1.018,0.935,0.906,1.012 +NM_199460,0.964,1.097,1.061,0.92,1.071,1.01,1.058,0.933,1.017,1.017,0.901,0.973,1.028,0.981,0.839,0.981,0.951,0.94,1.217,1.065,1.065,0.925,0.933,1.095,0.954,0.923,0.91,1.016,0.933,0.978,1.004,0.985,1.01,1.055,1.124,1.071,1.008,1.132,1.049,1.094,1.031,0.996,1.056,1.052,1.197,0.961,0.985,1.073,0.9,0.957,0.974,0.912,1.015,1.032 +NM_199461,1.176,0.913,1.189,0.987,0.893,0.962,1.242,1.008,0.987,0.986,0.982,1.048,0.998,1.196,0.873,0.971,1.141,1.002,0.942,0.918,0.918,1.129,0.998,1.036,0.966,1.022,1.051,1.075,1.402,1.082,0.964,1.084,0.981,0.873,1.104,0.998,1.162,0.941,0.889,0.901,1.231,1.052,1.172,0.923,0.997,1.068,0.855,0.918,0.921,1.057,0.845,1.019,1.313,0.93 +NM_199482,1.119,0.886,0.985,0.96,1.038,1.113,0.807,1.348,0.94,1.0,0.927,1.106,0.885,0.856,1.316,0.851,0.937,0.979,1.051,0.938,1.079,1.039,0.951,0.907,1.046,1.027,1.079,1.027,0.726,1.12,1.079,1.308,0.962,1.028,0.956,1.018,0.934,1.064,0.928,1.093,1.062,1.002,1.083,1.079,0.889,0.932,0.938,0.942,1.219,1.012,1.012,0.996,1.028,1.057 +NM_199511,0.97,0.906,0.959,0.887,1.099,0.945,0.976,1.084,0.89,0.93,0.956,1.031,0.99,0.812,0.913,1.02,1.023,0.931,1.029,0.839,1.054,1.025,1.01,1.017,1.089,1.065,0.895,0.928,0.862,0.955,1.101,1.142,1.091,0.943,1.076,1.139,0.986,0.946,1.047,1.055,1.197,1.128,0.873,1.003,1.04,0.882,1.014,0.954,1.053,1.001,1.042,0.966,1.016,0.946 +NM_201222,1.106,0.968,0.843,0.974,1.048,0.952,1.24,1.195,1.08,0.904,1.07,1.043,1.13,0.916,0.793,0.918,0.999,1.029,1.01,1.04,1.147,1.121,0.988,0.936,1.057,0.896,1.043,1.001,1.166,1.029,0.983,1.048,0.986,1.112,0.948,0.921,0.953,1.032,0.936,0.983,1.066,1.076,1.06,0.962,1.001,1.003,0.885,1.022,0.985,0.961,1.003,0.937,0.929,0.953 +NM_201262,0.942,0.97,0.9,0.891,0.896,0.996,1.05,1.087,0.895,0.923,1.293,0.909,0.852,1.097,1.078,0.966,0.909,0.964,1.014,1.218,1.1,0.912,1.31,0.952,0.837,0.966,0.943,1.107,0.809,0.913,0.884,1.129,1.035,1.035,0.924,1.195,0.932,0.917,1.133,1.111,0.956,1.007,1.108,1.39,0.972,1.176,1.0,0.896,0.985,0.914,1.235,0.997,1.03,0.982 +NM_201264,1.037,1.029,1.125,1.003,1.143,0.932,1.016,1.133,1.012,1.242,0.874,0.933,0.939,0.982,0.938,1.076,1.051,1.128,0.897,1.022,0.979,0.943,0.834,1.066,0.95,0.92,1.021,0.965,1.224,0.947,0.966,1.129,1.38,1.026,0.998,1.009,0.956,0.816,0.97,1.508,1.0,0.937,1.281,1.256,0.965,0.872,0.91,1.041,0.983,1.085,0.913,0.987,0.929,1.108 +NM_201269,0.918,1.147,1.001,0.851,0.925,1.195,0.932,0.733,1.054,0.999,1.052,0.966,0.788,0.818,0.805,0.961,0.891,0.911,0.877,1.013,0.685,0.898,1.106,1.137,0.999,0.907,1.166,1.087,0.838,1.353,0.912,1.119,1.307,1.168,0.873,1.025,1.061,0.983,1.438,1.059,0.988,1.182,1.098,0.883,1.033,1.252,1.166,0.855,1.143,0.79,1.043,0.976,0.935,1.16 +NM_201280,0.703,1.857,1.04,0.928,0.691,1.703,0.814,0.719,0.937,0.6,1.332,1.01,0.819,0.76,1.125,1.552,0.677,1.032,0.874,1.263,0.581,0.765,1.038,0.896,0.976,0.694,1.056,0.8,0.769,2.0,0.907,1.173,2.05,1.719,0.372,0.603,1.258,0.792,1.054,1.124,0.863,1.116,0.667,1.018,0.766,0.884,0.759,0.723,0.764,0.707,1.099,0.761,0.603,1.376 +NM_201282,1.013,1.005,1.014,1.035,0.896,1.024,1.075,0.985,0.944,1.012,0.935,1.049,0.981,1.139,0.953,1.103,1.07,1.094,1.136,1.057,0.936,1.032,0.985,0.968,1.154,1.147,1.185,0.928,1.491,1.003,0.894,1.017,0.913,0.953,1.102,0.961,0.948,1.106,1.05,1.336,0.96,0.985,1.084,1.037,1.012,0.92,0.914,1.109,1.01,0.987,1.007,0.967,0.96,1.008 +NM_201283,1.029,0.822,1.121,1.014,0.983,0.855,0.913,1.105,1.062,1.044,1.055,0.95,0.981,0.967,1.208,0.86,0.981,0.974,1.135,1.095,0.919,1.03,0.808,0.979,1.161,0.965,1.081,0.997,0.949,1.029,0.982,1.136,1.062,1.002,0.851,1.126,1.072,1.018,1.054,0.981,0.895,0.892,1.191,1.094,0.88,0.915,1.025,1.069,1.281,0.933,1.165,0.985,0.877,0.975 +NM_201284,1.203,0.872,0.949,1.057,1.035,0.992,0.952,1.058,1.09,0.972,0.902,0.984,1.091,0.989,0.844,0.881,1.004,0.969,1.225,0.933,1.299,1.007,0.93,0.975,0.954,0.856,1.093,1.109,0.778,1.068,0.888,1.07,1.121,0.883,1.015,1.096,1.105,0.919,0.992,1.848,0.945,0.965,0.977,1.087,0.855,1.01,0.986,1.07,0.935,1.157,0.968,1.064,1.014,1.145 +NM_201286,0.848,1.105,0.977,0.927,0.933,1.095,0.902,0.959,0.973,1.123,1.078,1.049,0.952,1.12,0.899,0.961,0.885,0.926,1.01,0.937,1.003,1.047,1.079,0.975,1.029,1.147,1.01,0.996,0.984,0.993,1.007,0.916,1.029,0.959,0.902,0.945,0.979,1.068,1.107,0.914,1.052,1.133,0.838,1.057,0.991,0.893,1.048,1.04,0.934,1.005,0.862,1.01,1.117,0.9 +NM_201378,1.052,0.996,1.055,1.034,1.072,1.087,1.1,0.924,1.2,1.093,0.974,1.024,0.989,0.97,1.172,1.018,0.904,0.926,0.995,1.043,1.047,1.06,1.007,0.985,0.922,0.902,0.89,0.994,1.076,0.929,1.022,1.085,1.05,0.785,1.17,1.0,1.001,1.1,0.951,1.015,0.968,1.004,0.933,1.035,1.047,1.076,1.038,1.038,0.906,1.119,0.994,1.149,1.009,1.0 +NM_201379,1.001,1.001,1.025,0.879,1.129,0.983,0.825,0.905,0.989,0.991,0.967,1.072,0.916,0.999,0.852,0.942,0.993,0.976,1.118,1.094,0.857,0.997,0.966,0.999,0.999,1.031,1.002,0.96,0.864,1.101,0.981,1.041,0.933,0.893,1.115,1.03,0.969,1.148,1.045,1.011,0.914,1.034,0.989,0.999,0.998,0.945,1.097,1.104,1.043,1.159,1.142,0.969,1.07,0.998 +NM_201380,1.038,0.945,1.028,1.096,1.07,1.028,1.047,0.92,1.089,1.035,0.981,0.873,0.85,1.059,1.035,0.9,0.868,1.043,0.953,1.066,1.034,0.807,0.975,0.899,1.09,0.936,0.999,0.909,1.164,0.873,1.08,0.975,0.878,0.986,1.05,1.016,1.049,0.968,1.174,0.873,1.067,1.097,1.289,1.125,0.86,1.12,0.932,1.084,0.993,0.968,1.017,1.083,0.959,0.957 +NM_201381,1.006,1.277,0.832,1.082,0.94,0.937,1.318,1.06,0.862,0.877,1.147,1.001,0.903,1.141,0.945,0.933,1.127,0.976,1.022,1.182,1.138,1.14,1.044,0.881,0.98,1.077,0.966,0.961,1.039,1.16,1.042,1.172,0.928,0.859,1.116,1.003,0.807,1.098,0.894,0.894,0.98,1.011,1.46,1.155,0.968,0.872,1.172,1.254,1.004,1.069,0.864,1.042,1.012,0.755 +NM_201382,1.081,1.203,0.949,1.055,1.03,1.104,0.969,0.874,0.869,1.078,1.016,1.021,1.11,0.843,0.815,0.898,1.04,1.027,1.103,1.023,1.137,0.958,1.029,1.009,0.965,1.008,0.994,1.055,0.841,1.105,0.861,1.007,0.835,0.872,0.972,1.059,1.031,1.002,1.1,0.954,1.031,0.984,0.941,0.91,0.951,0.968,1.002,1.183,0.974,1.061,1.003,1.036,0.957,1.001 +NM_201383,0.949,1.03,1.007,1.11,1.019,0.941,0.998,0.788,0.995,1.064,1.0,1.048,1.059,0.927,0.853,1.18,1.048,0.953,0.898,0.895,0.904,0.956,1.036,1.109,0.987,1.108,0.947,1.01,0.865,1.024,1.0,0.984,0.989,0.929,0.922,1.094,0.948,1.031,0.878,1.145,0.967,1.04,1.017,0.919,1.067,1.009,1.027,1.023,0.909,0.911,1.081,1.019,0.949,0.98 +NM_201384,1.113,1.007,1.092,0.871,0.966,1.013,0.99,1.004,1.011,1.103,1.044,1.099,0.865,1.056,0.83,1.077,1.032,1.007,0.947,1.123,1.033,0.914,0.973,1.029,1.023,1.132,0.921,0.994,0.973,1.088,1.058,1.085,1.144,0.925,1.08,1.106,1.067,0.902,0.918,1.087,0.846,0.984,0.958,1.03,1.0,0.867,1.0,1.015,0.941,0.868,1.081,0.958,0.93,0.874 +NM_201397,1.0,1.187,1.089,0.805,1.071,1.05,0.886,1.263,0.823,0.973,1.01,0.999,1.014,0.871,0.796,0.969,1.011,1.064,1.029,0.961,1.034,1.014,1.055,0.938,0.937,1.076,1.076,0.982,0.688,0.975,1.122,0.985,0.985,1.016,0.936,1.017,1.005,0.928,0.982,1.109,1.072,0.858,1.09,0.887,0.992,1.089,1.091,0.948,1.018,0.965,0.942,1.087,1.004,1.138 +NM_201400,0.801,0.892,1.096,0.894,0.897,1.061,0.996,1.083,0.869,1.031,0.907,1.001,0.939,0.715,0.996,0.941,0.926,0.915,1.292,0.926,1.056,0.93,1.061,0.959,0.933,1.064,1.144,1.105,1.016,1.062,1.094,1.043,1.179,0.989,0.832,0.924,0.878,1.011,1.264,1.039,1.101,1.052,1.201,1.092,0.95,0.974,1.001,1.011,0.811,0.87,0.992,1.122,0.97,1.129 +NM_201403,0.928,0.926,1.164,1.117,0.976,1.081,1.011,1.004,0.967,1.087,0.943,1.2,0.995,0.851,0.843,1.062,1.079,0.874,1.096,0.889,1.016,0.916,0.897,1.108,0.955,1.078,1.072,0.911,0.833,0.936,1.065,0.994,1.134,1.073,0.999,0.954,1.04,0.996,0.993,1.002,0.905,0.988,1.162,1.057,1.006,0.981,1.172,0.964,0.974,0.93,1.025,0.969,1.027,0.917 +NM_201428,1.156,0.948,1.076,0.922,0.901,1.069,1.059,1.113,1.002,0.94,0.946,1.064,0.82,1.097,1.068,0.96,0.966,1.08,0.969,0.979,1.193,1.042,1.174,0.946,0.993,1.053,0.99,0.97,1.639,1.003,1.019,0.885,1.089,1.002,1.14,1.187,0.88,1.196,1.045,0.949,0.965,1.152,0.968,0.994,1.045,0.948,1.069,0.923,0.962,0.998,1.014,1.007,0.975,1.028 +NM_201429,1.11,1.013,0.999,1.101,1.069,0.957,1.221,1.006,1.128,1.093,1.0,1.139,0.942,1.238,0.981,1.052,0.986,1.099,1.135,1.104,0.995,0.989,1.025,1.071,1.012,1.024,1.0,0.846,1.189,1.051,1.042,0.918,1.049,0.777,0.888,0.988,1.142,1.022,0.829,0.96,1.071,0.965,0.965,1.025,1.024,1.036,1.154,0.849,0.991,1.071,1.007,1.174,1.018,0.904 +NM_201431,1.024,0.872,1.161,0.965,0.93,1.011,0.826,1.082,0.898,1.005,0.954,0.916,0.944,1.104,1.314,0.961,1.007,0.991,1.081,0.989,0.971,1.023,1.052,0.951,1.047,0.964,1.11,0.963,0.716,0.99,0.88,0.94,1.026,0.955,1.201,1.019,0.989,1.036,0.897,0.966,1.13,0.965,0.955,0.984,0.927,1.055,1.078,1.021,1.013,0.865,0.866,1.008,1.014,0.98 +NM_201432,0.974,1.041,0.976,0.925,0.891,1.061,0.955,1.169,0.916,1.147,0.929,1.019,0.916,1.024,0.872,1.011,1.088,1.095,1.004,1.0,1.047,1.018,1.048,0.939,0.977,1.021,0.984,0.926,1.119,0.961,0.968,0.973,1.028,1.091,0.937,1.0,1.181,1.036,0.817,0.97,0.952,0.961,0.779,0.932,0.962,1.054,0.889,1.156,0.83,1.045,1.0,0.896,1.052,0.91 +NM_201433,1.04,1.022,0.976,1.097,1.086,0.925,1.175,1.097,0.914,1.013,1.047,1.178,0.983,1.062,0.851,0.988,0.961,0.955,0.89,0.907,0.902,0.943,0.926,1.017,1.113,1.05,1.066,0.917,1.695,1.062,0.966,0.899,0.911,0.957,0.965,0.902,0.936,0.932,0.997,1.198,1.257,0.95,1.182,0.922,0.925,1.146,1.024,0.977,0.975,0.936,0.895,0.987,0.882,1.105 +NM_201438,1.041,1.051,1.005,1.199,1.03,0.898,1.082,1.008,1.029,0.975,0.991,0.865,0.881,1.175,1.011,0.992,1.017,0.983,1.032,0.86,0.934,0.973,0.811,1.111,1.036,0.935,1.002,1.041,0.946,1.068,1.089,1.016,0.972,1.008,1.085,0.895,0.989,1.038,0.971,1.028,1.125,0.821,0.93,0.992,0.987,1.097,0.929,0.935,1.12,0.997,1.049,1.073,0.86,0.904 +NM_201442,0.923,0.919,0.946,0.933,1.015,0.9,0.955,1.102,1.032,0.931,1.046,1.002,1.014,0.962,0.951,1.019,1.024,1.119,1.015,1.038,1.033,0.942,1.043,1.024,0.967,0.966,1.187,0.886,0.808,0.994,1.093,1.213,0.997,0.823,0.917,0.87,1.009,1.042,1.137,0.912,0.955,0.985,0.948,0.938,0.985,1.077,1.004,1.032,1.069,1.028,1.055,1.154,0.972,1.037 +NM_201444,1.036,0.953,1.113,1.018,0.817,0.973,0.909,1.141,0.894,0.917,0.981,0.99,1.01,0.947,0.972,0.936,0.974,0.942,1.047,1.099,1.025,0.998,0.938,0.961,0.953,1.005,1.015,0.965,1.081,1.012,0.857,0.859,1.032,0.968,0.971,1.056,0.915,0.932,0.905,1.025,0.974,0.922,1.114,1.055,1.02,0.872,0.899,0.991,1.01,1.03,1.029,1.026,1.068,0.964 +NM_201453,0.551,0.88,1.385,0.49,1.102,1.299,0.488,0.909,1.694,1.08,0.917,1.18,1.179,0.445,1.109,3.579,0.858,1.035,1.01,1.161,0.358,1.315,1.286,1.309,0.396,0.47,1.775,1.18,0.392,0.837,1.493,1.291,4.261,1.096,0.265,0.595,0.887,1.278,1.644,1.129,1.306,1.057,0.407,0.916,1.305,0.799,1.002,1.107,1.639,0.922,1.009,0.653,0.523,1.934 +NM_201520,0.916,1.004,1.107,0.856,0.855,0.937,0.894,1.084,1.071,0.96,0.807,1.021,0.914,1.082,0.99,1.051,0.836,0.885,0.845,1.013,0.986,0.931,0.939,0.962,1.083,0.996,1.118,1.098,0.898,1.179,1.043,0.973,1.012,0.955,0.911,0.991,1.023,0.991,1.024,1.081,0.948,1.092,0.855,0.945,0.977,1.043,0.953,0.91,1.101,0.905,1.017,0.855,0.96,1.24 +NM_201522,0.967,1.092,1.178,0.971,0.926,1.025,0.957,0.906,1.004,1.104,0.961,1.012,0.953,1.014,0.959,0.974,1.026,0.95,0.952,1.032,1.03,0.968,0.962,1.079,1.027,1.043,0.997,1.018,0.725,1.064,0.997,1.003,0.953,1.173,0.969,0.952,0.996,1.024,0.928,1.049,0.929,1.071,0.956,1.018,0.955,1.095,1.085,1.0,1.103,1.045,0.985,0.934,1.022,0.914 +NM_201533,1.126,0.94,1.163,1.13,0.951,1.158,1.425,0.83,0.883,0.956,0.911,1.104,1.113,1.04,1.017,1.011,1.016,1.033,1.065,0.999,0.946,0.94,0.929,1.082,0.978,1.001,1.218,0.9,1.246,1.099,0.952,1.093,0.968,0.979,1.141,1.004,1.118,0.983,0.927,0.791,0.985,1.044,1.001,0.973,0.908,0.992,1.236,0.928,1.065,0.949,0.97,1.135,1.113,0.953 +NM_201544,0.936,1.001,1.011,0.917,1.082,1.093,1.02,1.012,0.989,1.041,1.193,0.987,1.066,0.956,0.824,1.054,0.978,1.101,1.044,1.056,0.921,0.963,1.029,0.976,0.965,0.891,1.03,0.944,1.112,0.975,0.933,0.851,1.002,0.986,0.993,1.032,1.048,0.973,1.005,0.999,1.03,1.011,0.917,1.026,1.001,0.963,1.106,0.915,0.964,1.053,0.988,0.936,0.949,1.039 +NM_201545,0.869,1.067,0.934,0.992,1.132,0.896,1.062,0.905,1.073,0.978,0.943,1.054,0.959,0.97,1.196,1.039,0.999,0.944,0.999,0.918,1.155,0.987,1.001,1.08,0.887,1.044,0.858,0.949,1.014,1.182,1.065,0.828,1.077,0.834,0.932,0.995,0.898,0.968,1.019,1.075,1.047,1.004,1.019,0.817,1.086,0.879,1.096,1.033,0.991,0.943,0.966,1.108,0.952,0.919 +NM_201546,1.187,0.997,1.044,1.123,0.993,1.004,0.979,0.904,0.997,0.925,0.936,1.019,1.004,1.037,0.922,1.066,0.926,0.96,1.097,0.847,1.135,1.025,0.975,0.999,1.108,0.993,1.05,1.063,0.965,1.005,0.963,0.939,0.931,0.866,1.159,0.898,0.956,0.894,1.083,1.051,0.949,0.976,1.482,0.967,1.093,0.908,0.93,0.998,0.993,1.236,0.971,0.931,1.027,1.051 +NM_201547,0.974,0.97,1.096,0.997,0.949,0.965,1.012,1.092,0.884,0.955,1.158,1.126,0.936,1.436,0.868,0.97,1.06,0.993,1.105,0.975,1.094,0.884,1.126,0.949,1.115,0.899,1.072,1.054,1.263,1.12,1.024,1.056,1.145,0.846,0.983,0.897,1.059,0.896,1.062,1.012,1.025,0.844,1.037,1.131,0.978,0.903,1.13,1.003,0.939,0.903,0.964,0.974,1.016,1.04 +NM_201548,0.976,1.004,1.076,0.974,0.942,1.072,0.84,1.074,1.088,0.945,0.949,0.749,0.983,1.016,1.196,1.045,0.954,0.949,1.074,1.092,1.215,0.988,0.932,1.057,1.028,0.968,1.027,0.96,1.088,0.968,0.964,0.933,1.018,1.038,1.117,1.003,1.222,1.251,0.893,1.105,1.028,1.02,1.364,1.133,1.012,0.989,1.116,0.865,0.952,0.962,0.936,1.003,1.042,0.948 +NM_201550,0.992,0.932,0.929,0.984,1.103,1.022,0.915,0.937,1.104,0.95,0.848,1.082,1.041,0.856,0.978,0.98,0.996,0.888,1.0,1.016,0.985,0.921,0.981,0.97,0.95,1.12,1.103,0.977,0.873,0.926,0.961,0.915,1.135,1.026,1.049,0.916,1.031,1.059,0.908,0.934,1.108,1.023,0.805,0.906,1.016,1.076,1.072,1.022,1.054,1.002,0.999,1.015,0.932,1.026 +NM_201557,1.041,1.185,0.831,0.942,1.079,0.939,0.858,0.893,0.834,0.95,1.123,0.946,1.214,1.057,0.811,0.977,1.07,1.016,1.083,0.991,1.207,0.901,0.996,0.938,1.178,0.97,1.113,1.07,1.146,0.994,0.995,0.926,0.982,1.101,1.081,1.2,0.956,0.945,1.024,0.897,0.904,1.199,1.163,1.016,0.905,0.977,1.147,1.041,1.155,1.0,0.99,0.992,1.155,1.008 +NM_201559,0.913,1.02,0.991,1.007,1.153,0.947,0.873,0.975,1.011,0.982,0.975,0.957,1.051,1.015,1.052,1.046,1.013,0.868,1.03,0.985,1.002,1.04,0.991,1.1,0.918,1.003,0.929,1.036,1.031,1.05,1.133,1.043,1.08,1.076,1.063,1.015,1.027,0.812,0.942,1.012,0.991,0.938,0.911,1.036,0.973,0.883,1.088,0.994,0.992,0.911,0.903,0.932,0.998,1.056 +NM_201566,0.831,0.978,1.037,0.912,1.133,0.91,0.961,0.996,0.894,1.124,0.938,0.979,1.023,1.209,1.126,1.059,1.01,1.143,0.91,1.063,1.077,0.97,1.072,0.877,1.01,0.995,1.098,0.98,0.748,1.101,1.037,0.804,1.036,0.926,1.015,1.023,0.984,0.946,0.951,1.169,0.987,0.93,0.864,0.794,1.098,0.933,1.029,0.965,0.992,1.015,0.925,1.18,0.847,0.982 +NM_201570,0.962,0.938,0.99,1.086,0.997,1.035,0.958,0.961,0.991,1.132,0.854,0.986,1.007,1.028,1.014,1.015,1.046,0.978,1.083,1.127,0.937,1.026,0.934,1.04,1.045,1.113,0.95,1.014,0.755,0.964,1.01,0.952,0.922,1.122,1.104,1.046,1.022,0.937,1.007,1.112,0.997,1.048,1.039,1.03,0.977,0.993,1.044,1.037,1.006,0.895,0.948,0.997,1.1,1.127 +NM_201574,1.052,0.816,1.001,0.958,0.937,0.923,0.968,0.973,0.944,0.955,0.873,1.034,1.092,1.028,0.885,0.984,1.031,1.078,1.149,1.062,1.037,0.83,1.007,0.894,0.955,1.066,0.967,1.129,1.044,1.024,0.881,0.946,1.011,1.086,1.003,1.002,1.087,0.834,1.019,0.889,0.828,1.023,0.986,1.022,0.837,0.891,1.11,0.933,0.911,0.985,0.927,1.016,1.012,0.933 +NM_201575,0.994,1.027,1.111,0.895,0.968,1.049,0.877,1.1,1.037,0.897,0.909,1.079,1.016,0.99,0.923,1.038,0.984,0.863,0.959,0.991,1.017,0.961,0.989,1.084,1.062,1.123,1.055,1.011,0.854,1.084,0.908,0.986,1.0,1.12,0.953,1.046,0.999,0.992,1.0,1.172,0.995,0.959,0.965,1.016,1.02,0.977,1.037,1.002,0.985,0.852,1.0,0.933,0.995,1.05 +NM_201589,0.88,1.141,0.964,1.034,1.14,0.997,0.774,1.0,0.93,1.014,1.098,1.039,0.88,1.12,1.202,0.955,1.06,0.819,0.899,0.928,0.856,1.075,1.017,0.936,1.07,0.947,0.997,1.04,1.36,1.032,1.14,1.116,1.03,0.908,1.05,1.143,0.929,0.905,1.162,0.921,0.937,1.109,0.934,1.105,0.986,0.929,0.972,0.955,0.999,1.051,0.905,1.108,1.075,1.034 +NM_201590,0.972,1.083,1.052,1.023,1.045,1.066,0.727,0.977,0.998,1.132,1.108,1.076,0.967,1.0,0.883,1.023,0.966,0.973,0.932,0.985,1.031,1.006,1.015,1.098,0.974,1.0,1.009,1.102,0.897,1.097,1.103,0.992,1.022,0.89,1.023,1.059,1.102,1.127,0.997,0.936,1.091,0.887,0.93,1.052,1.143,0.917,1.131,1.071,0.948,1.0,0.903,1.143,0.841,1.154 +NM_201594,0.905,1.092,0.955,1.0,1.064,0.958,1.092,1.01,1.103,1.162,1.048,1.009,0.968,1.086,0.745,1.011,1.068,1.149,1.013,1.186,0.991,0.974,0.996,1.003,1.057,1.007,0.979,1.018,0.901,0.842,1.008,1.096,1.115,0.913,1.142,0.991,1.131,0.96,0.873,0.875,1.004,0.987,0.817,1.0,0.991,1.056,0.882,1.009,1.008,1.034,1.0,1.006,1.243,1.017 +NM_201595,1.05,1.077,0.918,1.197,1.017,0.968,1.041,0.989,1.281,0.921,1.101,1.122,0.899,0.994,0.952,0.986,0.954,0.88,0.909,0.927,0.974,0.933,0.97,0.966,1.051,1.019,1.007,1.017,1.141,1.064,1.001,0.936,0.833,0.91,1.101,1.022,1.015,1.003,1.084,0.999,0.971,0.941,1.019,0.909,0.928,0.986,0.889,1.013,0.897,1.023,1.036,1.065,1.001,1.128 +NM_201599,0.956,1.118,1.153,0.933,0.971,0.882,0.908,0.821,1.048,0.985,1.079,0.898,1.121,0.772,0.805,0.832,1.061,1.094,0.98,0.979,0.793,1.075,1.19,0.915,0.84,1.185,1.143,0.952,1.098,0.966,0.89,1.096,0.999,0.889,1.243,1.222,0.923,1.001,1.057,0.988,0.997,0.893,1.285,1.204,0.856,1.156,1.197,1.007,1.124,1.158,1.009,1.101,1.336,0.945 +NM_201612,0.932,1.021,0.868,1.068,0.898,0.963,1.055,0.928,1.007,0.977,1.001,0.983,1.122,0.963,1.192,1.022,1.035,1.062,1.145,0.94,1.071,1.041,0.967,1.001,1.026,0.933,0.85,0.943,1.144,0.962,1.146,0.997,1.079,0.882,1.136,1.029,1.077,1.031,0.945,0.886,0.932,0.934,1.144,0.912,1.008,0.977,1.001,1.028,1.117,0.999,1.076,0.899,1.149,1.121 +NM_201625,1.026,0.978,1.031,0.915,1.01,1.045,0.93,1.017,0.989,1.033,0.996,0.989,0.965,0.813,1.094,1.082,0.96,0.988,1.026,1.035,1.013,0.926,1.113,1.038,0.965,1.028,0.966,0.958,0.674,1.181,1.065,0.937,1.064,0.888,0.943,0.938,1.018,1.028,0.803,1.001,0.977,0.914,0.955,1.157,0.999,0.98,0.999,1.024,1.145,0.915,1.059,1.059,1.025,0.919 +NM_201630,0.926,0.923,0.967,0.941,1.15,1.107,1.144,1.118,0.88,1.056,0.837,1.03,1.119,1.106,0.957,1.027,0.97,0.976,1.084,0.987,1.037,1.0,1.152,1.031,0.946,0.912,1.026,1.102,0.967,0.906,0.956,1.028,1.037,1.019,1.003,0.988,1.023,0.946,0.877,1.046,1.075,0.959,1.082,0.899,0.888,1.001,0.856,1.088,0.953,1.047,1.019,0.94,0.98,1.019 +NM_201631,0.991,1.022,0.899,0.847,1.117,1.042,0.986,1.009,1.103,1.067,0.911,1.019,1.001,0.935,1.12,1.081,1.126,0.933,1.053,0.817,1.168,1.113,1.048,1.033,0.885,1.069,1.049,0.907,1.069,0.994,0.928,0.946,0.918,1.011,0.951,1.088,1.178,1.067,0.922,0.949,0.967,0.995,0.792,0.963,0.979,0.894,0.948,0.918,0.854,1.014,0.995,0.931,1.063,1.0 +NM_201636,1.044,0.928,0.854,0.919,0.968,1.036,0.924,0.833,0.944,0.957,0.924,1.009,0.956,0.916,0.926,0.955,0.949,1.035,0.934,0.863,0.806,0.878,1.02,0.872,1.058,0.929,1.097,1.129,0.909,1.098,0.963,1.482,1.043,1.109,1.052,1.002,0.859,1.033,1.057,1.176,1.108,1.093,1.02,0.943,1.06,1.097,0.949,1.015,0.921,0.963,0.904,0.975,0.957,0.915 +NM_201648,0.963,1.025,1.001,0.934,1.201,1.028,1.074,0.989,1.124,0.942,0.992,1.023,1.039,0.905,0.965,1.062,0.934,0.866,0.919,1.134,1.084,1.115,0.768,0.933,1.046,1.022,0.989,1.036,0.792,0.89,0.988,0.999,0.922,0.907,0.931,0.876,0.984,1.029,1.002,1.045,0.973,1.183,1.084,0.978,1.001,1.052,1.021,1.031,1.092,0.987,1.164,0.949,1.052,0.893 +NM_201651,1.101,1.121,0.815,1.0,1.149,0.852,1.025,1.12,1.107,1.0,1.067,0.949,1.012,0.87,1.27,0.943,0.926,0.99,0.864,1.059,0.857,1.002,0.894,0.978,0.973,0.873,0.963,0.94,1.256,1.0,0.922,1.009,0.999,1.082,0.98,1.024,1.257,0.884,1.008,0.846,1.05,0.922,1.281,0.964,0.838,1.197,0.997,1.135,1.049,1.201,0.981,0.893,0.896,1.113 +NM_201653,1.021,8.984,0.935,1.01,0.934,1.148,1.176,0.989,0.89,0.948,0.929,1.017,1.058,1.027,1.129,0.874,1.0,0.997,0.955,0.949,0.854,0.984,0.965,1.114,37.94,1.071,1.11,1.012,1.132,1.069,1.064,0.954,0.953,6.575,1.09,0.953,5.66,0.939,1.01,1.006,0.979,0.841,1.015,0.902,1.06,0.926,0.958,1.0,1.062,0.927,1.028,0.904,0.942,0.947 +NM_201994,0.978,1.08,0.98,0.842,1.0,1.177,0.887,1.042,1.073,0.907,1.077,0.852,0.863,0.98,0.961,1.064,0.802,0.922,0.838,1.137,0.807,0.934,1.123,1.033,0.91,0.96,1.097,0.872,0.948,1.13,1.003,1.452,1.055,1.2,0.818,1.206,1.057,0.898,1.047,1.036,0.922,0.956,0.893,0.943,0.832,0.976,0.947,0.822,0.859,0.763,0.941,0.819,1.031,1.203 +NM_201997,0.928,0.999,0.997,0.803,0.935,1.076,1.083,0.958,1.29,0.915,1.061,1.033,0.99,0.944,1.137,0.996,0.9,0.904,0.988,1.013,1.017,0.966,0.903,1.003,0.974,0.813,1.048,0.858,0.724,1.13,0.973,1.102,1.0,0.845,1.026,0.896,0.95,0.963,0.836,1.287,1.147,0.937,0.933,0.991,1.061,0.924,1.0,0.986,1.077,0.793,1.158,1.102,1.035,0.854 +NM_201999,1.021,0.92,1.25,0.903,1.137,1.101,1.034,0.927,1.172,0.946,0.974,0.987,1.027,0.812,1.043,0.837,0.817,0.961,0.979,1.013,1.017,1.07,1.083,1.013,0.998,1.036,0.957,0.956,0.757,0.884,0.922,1.111,1.328,1.063,1.015,0.951,0.913,0.98,1.019,0.985,1.133,1.006,0.933,0.983,1.058,0.898,1.079,1.034,1.212,1.029,0.918,1.007,0.966,0.998 +NM_202000,0.814,1.039,0.936,0.968,0.919,1.143,0.82,0.934,0.857,0.867,1.195,0.974,0.931,0.941,0.973,1.002,0.936,0.972,0.913,1.08,0.878,0.977,1.422,0.769,1.092,0.998,0.88,1.118,0.883,1.241,0.817,1.042,0.947,1.055,0.769,1.087,1.079,1.009,1.089,0.874,0.889,0.969,0.796,0.847,0.971,1.338,1.021,0.882,1.147,0.915,1.087,1.047,0.95,1.387 +NM_202001,1.047,0.994,1.065,1.05,1.056,0.996,0.998,0.93,1.006,1.125,0.903,1.018,0.973,0.973,0.93,1.023,0.963,0.896,0.957,0.91,0.914,0.967,1.057,1.044,1.048,1.0,1.164,1.051,1.011,0.98,0.94,1.109,1.067,0.957,0.814,0.878,0.919,1.073,1.27,0.988,1.19,0.979,0.95,1.228,1.09,0.908,0.957,1.024,0.864,0.944,1.08,0.828,0.994,1.134 +NM_203281,1.005,0.996,1.048,0.996,1.07,1.024,0.955,1.0,0.985,0.93,0.925,0.855,1.069,0.739,1.133,1.159,1.117,0.936,1.177,1.055,0.866,0.837,1.029,0.987,1.084,1.095,0.986,1.036,1.032,0.923,1.027,0.832,0.986,0.926,1.082,0.851,1.218,1.036,1.207,0.966,1.07,0.936,0.99,0.905,0.844,1.065,0.977,1.139,1.206,1.07,1.033,0.918,0.897,1.134 +NM_203282,0.948,0.895,1.267,1.035,1.229,1.026,0.987,1.208,1.035,0.893,0.999,1.097,1.004,0.955,0.86,1.261,1.049,1.121,1.062,1.084,1.015,1.255,1.137,1.169,0.942,0.928,1.001,1.106,1.079,1.062,1.174,1.042,1.249,1.132,0.923,1.08,1.13,1.152,0.821,1.05,1.138,0.885,0.768,0.817,1.131,1.13,0.983,1.013,0.84,0.91,0.946,0.927,0.908,1.017 +NM_203285,1.19,0.955,1.102,0.95,1.237,0.952,1.014,0.836,0.997,1.169,1.234,0.989,1.019,1.024,0.804,0.937,1.155,0.86,0.875,0.961,0.811,1.055,1.011,1.027,1.012,1.091,1.03,1.188,0.746,0.982,0.874,1.047,0.815,1.058,1.043,1.007,0.876,1.04,1.119,0.963,0.912,0.964,0.837,1.06,0.885,1.072,1.127,1.045,1.054,1.101,0.926,0.893,0.993,0.913 +NM_203286,0.904,0.927,1.082,0.857,1.026,0.896,0.904,1.076,1.284,1.108,0.945,1.258,0.932,0.877,0.973,1.267,1.128,1.103,1.492,1.048,0.992,1.603,1.109,1.526,0.936,1.136,1.541,0.972,0.927,1.257,0.95,1.178,1.458,0.885,0.804,0.872,0.91,1.182,1.201,0.901,1.285,1.009,0.922,0.73,1.176,0.877,0.896,1.188,0.721,1.45,0.946,0.728,1.345,0.936 +NM_203288,0.642,0.943,1.26,0.552,0.835,1.194,0.847,0.598,1.302,0.913,0.861,0.828,0.763,0.705,1.017,1.377,0.9,0.787,0.687,1.237,0.464,0.932,1.672,0.97,0.887,0.606,1.251,0.881,0.589,1.598,0.93,2.257,2.831,1.455,0.398,0.896,1.001,1.055,1.31,1.244,1.026,1.225,0.706,0.927,0.999,0.961,1.451,0.546,1.076,0.775,1.13,1.298,0.672,2.383 +NM_203289,0.966,1.208,1.182,0.97,1.012,1.088,0.91,0.806,0.823,0.958,0.863,0.983,0.906,0.89,0.993,0.922,1.015,0.977,0.964,1.031,0.885,1.072,1.075,1.049,1.072,1.096,0.924,0.9,1.368,1.107,1.049,1.137,1.167,0.978,0.936,0.967,0.941,0.969,1.024,1.082,1.172,0.952,1.029,1.115,1.089,1.136,0.972,1.012,0.978,0.916,0.994,0.921,0.942,1.052 +NM_203290,0.625,1.331,0.762,0.739,0.826,1.162,0.594,0.392,0.935,1.127,0.944,0.953,0.602,0.462,0.693,1.157,0.779,0.635,0.792,0.991,0.633,0.706,1.659,0.957,0.642,0.889,1.073,0.76,0.498,1.229,0.669,1.565,1.939,1.054,0.252,1.762,1.065,0.689,1.562,1.066,0.846,1.065,1.104,1.922,0.913,1.078,0.987,0.542,1.301,0.687,1.036,0.876,0.911,2.432 +NM_203292,1.069,1.0,1.032,0.839,1.011,0.979,1.123,1.334,0.993,0.977,0.909,1.024,0.968,1.003,1.152,0.916,1.018,1.144,0.994,0.947,0.978,1.006,0.863,0.958,0.941,1.048,1.048,0.967,1.11,1.07,1.041,1.104,0.883,0.952,0.96,1.005,1.017,1.07,0.9,0.99,1.076,0.97,1.119,1.061,1.014,1.071,0.884,0.983,0.954,0.967,1.0,0.951,1.088,0.817 +NM_203296,1.092,1.091,1.048,1.006,0.982,0.969,0.775,0.924,0.998,1.014,0.882,0.984,0.927,0.965,0.938,0.845,1.053,1.225,1.087,1.005,1.045,0.957,0.961,0.956,1.017,0.966,1.154,1.095,1.048,0.977,1.018,1.179,1.119,1.034,1.133,1.033,1.013,0.968,1.005,1.114,0.934,1.087,1.519,0.855,1.016,0.913,1.006,0.938,1.161,0.99,1.164,0.962,0.994,0.966 +NM_203297,1.061,1.005,0.925,0.894,1.056,1.015,1.095,1.204,1.137,1.018,0.99,1.003,0.958,1.012,1.412,1.043,0.936,0.916,1.024,0.954,1.178,1.026,1.067,0.956,0.983,1.055,0.77,1.022,0.856,1.018,1.072,1.159,0.987,0.966,0.922,0.985,0.938,0.948,0.975,1.064,0.967,0.914,0.994,1.04,1.084,0.989,1.055,1.06,0.998,0.879,1.034,0.96,0.843,1.021 +NM_203298,0.772,0.961,1.102,0.916,0.969,1.353,0.791,0.862,1.244,0.95,1.203,0.956,0.915,0.641,1.089,1.824,1.057,1.257,1.058,1.051,0.605,1.135,1.126,1.142,0.693,0.821,1.158,0.814,0.586,1.057,1.087,0.837,2.237,1.377,0.576,0.965,1.169,0.898,1.56,0.637,1.038,0.918,0.699,0.934,0.966,0.809,1.193,1.074,0.998,0.878,0.991,0.888,0.859,1.86 +NM_203299,0.947,1.041,1.038,1.07,1.08,1.078,0.881,0.842,0.901,1.048,1.066,1.061,0.94,1.01,1.023,1.094,1.141,1.006,0.917,1.007,0.899,1.059,0.905,1.011,0.991,1.059,0.95,0.983,0.875,0.966,0.925,1.034,1.209,0.944,0.977,0.966,0.989,1.155,1.016,0.877,1.021,1.04,0.905,0.97,0.912,0.941,1.034,0.954,0.889,0.937,0.97,0.97,0.997,1.077 +NM_203301,0.652,1.429,0.966,0.762,0.852,1.029,0.835,0.641,1.17,0.852,1.182,0.854,0.663,0.651,1.002,1.462,0.886,1.03,0.96,1.273,0.665,0.682,1.022,0.935,0.756,0.838,1.202,0.871,0.453,1.107,0.952,1.239,1.333,1.211,0.545,0.693,1.11,0.826,1.037,1.071,1.014,1.01,0.924,1.646,0.787,1.164,1.174,0.712,0.87,0.821,0.939,0.865,1.043,1.738 +NM_203302,0.979,0.946,0.913,0.97,1.018,1.005,0.818,0.937,1.156,1.028,0.889,1.134,0.966,0.921,1.042,1.077,0.916,0.891,1.054,0.908,0.844,0.929,0.944,0.946,0.938,1.148,1.092,1.091,0.956,1.032,1.247,1.062,1.103,1.063,1.85,1.051,0.953,1.073,1.011,1.063,0.993,0.843,0.849,1.069,1.008,1.127,1.0,0.998,1.052,0.993,1.052,0.982,1.035,0.955 +NM_203303,1.163,0.95,0.978,0.91,0.998,1.09,0.934,1.14,0.904,0.961,0.949,0.979,0.867,0.896,1.095,1.036,0.963,1.039,1.025,1.097,0.998,0.929,0.742,1.162,0.939,1.055,1.043,1.046,0.904,0.998,1.203,0.977,0.91,0.972,1.003,1.032,1.045,1.04,1.178,1.096,1.085,1.159,0.957,0.893,1.082,0.904,1.09,0.956,0.938,1.051,1.012,1.014,1.023,0.825 +NM_203304,1.087,1.117,1.058,0.945,1.113,1.044,0.801,0.829,0.924,1.139,0.964,1.093,1.028,0.678,0.974,0.94,0.933,0.938,0.985,0.995,0.744,1.011,1.208,1.068,0.933,0.965,1.104,1.011,0.77,1.006,0.947,1.605,1.577,0.834,0.823,0.751,0.978,1.143,1.155,1.134,0.985,0.888,0.98,1.293,0.927,1.011,0.856,0.991,0.915,1.115,0.906,0.989,0.9,1.147 +NM_203305,0.874,1.053,1.14,0.892,1.117,2.343,1.24,1.105,0.938,1.006,1.003,0.668,0.73,0.629,0.938,1.096,1.256,1.313,1.14,0.791,0.876,1.104,0.709,0.943,0.899,1.052,0.887,0.997,1.396,1.556,1.079,0.904,0.811,1.707,2.336,0.935,0.974,1.41,1.631,0.543,1.075,1.29,0.977,1.236,1.139,0.791,0.692,1.542,0.608,1.021,0.851,0.539,0.807,0.854 +NM_203308,0.919,0.971,1.074,1.036,1.123,0.974,1.255,0.912,0.865,1.081,1.074,1.058,1.011,0.845,1.016,1.132,1.012,0.954,0.974,0.988,1.001,1.016,0.93,1.084,0.987,1.033,0.851,1.014,0.991,1.038,0.947,1.024,0.993,1.005,1.088,1.035,1.072,1.09,0.935,0.971,1.063,1.01,0.997,0.876,0.974,0.911,0.98,1.041,0.93,0.949,0.973,0.996,1.049,0.831 +NM_203309,0.92,1.086,0.948,0.837,0.97,1.024,1.025,0.995,1.029,1.076,0.963,1.05,1.001,0.865,0.788,1.015,1.098,1.061,0.999,1.028,1.036,0.944,0.877,1.05,1.15,0.948,1.119,1.077,0.678,0.949,1.124,0.998,0.898,0.981,0.956,0.954,1.051,1.013,0.991,1.067,1.02,0.857,0.866,1.101,1.13,0.931,1.077,0.837,1.025,0.834,1.141,0.869,0.915,1.071 +NM_203314,0.933,1.001,0.987,1.11,1.082,1.023,1.138,1.153,1.14,0.938,0.949,0.935,0.972,0.851,0.89,1.049,1.038,0.939,1.041,0.912,0.87,1.056,0.994,1.06,1.038,0.969,1.198,1.033,1.041,1.058,1.048,1.035,1.278,0.977,1.149,1.036,1.084,1.045,1.029,1.003,0.953,0.971,1.089,0.914,1.072,1.054,1.06,1.144,0.993,0.92,1.098,1.013,0.902,0.992 +NM_203315,0.975,1.032,1.181,1.06,1.066,1.094,0.704,1.01,1.125,1.099,0.945,1.085,0.948,0.811,1.019,1.004,1.0,1.088,1.172,1.171,0.935,0.932,1.0,1.047,1.088,1.122,1.016,0.934,0.974,0.945,0.889,1.033,1.057,0.938,0.934,1.039,1.012,0.958,0.925,1.144,1.141,0.981,1.173,0.976,1.067,0.959,0.939,0.983,1.008,1.048,0.99,0.957,0.807,0.849 +NM_203326,0.882,0.969,1.144,1.007,0.954,1.151,0.876,1.081,1.066,0.896,0.914,1.137,1.167,0.969,0.823,1.101,1.084,0.983,0.902,0.958,0.884,1.102,0.949,1.107,0.887,1.086,1.077,0.923,1.192,1.11,0.915,1.13,1.227,0.937,0.915,0.886,1.068,1.157,1.045,0.893,0.96,0.988,1.04,0.979,0.901,1.096,0.824,1.017,1.093,0.927,0.947,0.996,0.952,1.119 +NM_203344,1.096,0.92,1.043,0.936,1.079,0.927,1.027,0.994,0.926,1.06,1.082,1.022,0.987,0.939,1.17,1.04,1.015,0.996,1.021,0.981,0.942,1.071,1.143,0.966,1.054,1.041,0.922,1.046,0.956,0.963,1.004,0.996,0.974,0.875,1.158,1.169,1.049,1.054,0.983,1.028,1.134,1.073,0.882,1.059,0.987,0.9,0.986,0.959,0.945,1.054,0.98,1.068,1.0,0.861 +NM_203347,1.086,0.953,0.988,1.054,1.109,1.194,1.028,0.905,0.968,0.905,1.189,0.932,1.074,1.073,0.888,1.067,0.981,0.974,0.964,1.168,1.019,1.054,1.069,0.995,1.021,0.918,0.951,0.983,0.9,1.054,1.069,1.118,0.867,1.007,1.125,1.009,0.942,0.968,1.021,0.943,1.102,1.221,1.112,0.932,1.151,0.954,0.88,1.013,0.884,0.914,1.115,0.875,1.072,0.983 +NM_203349,1.132,0.983,0.988,0.91,1.004,1.101,0.913,1.03,1.203,0.918,1.044,1.002,1.102,1.116,1.026,0.99,0.87,0.93,0.973,0.962,0.908,0.956,1.148,1.016,0.967,0.967,1.183,1.011,1.707,0.983,0.969,1.165,1.176,0.942,1.032,0.914,1.006,1.088,0.929,1.134,1.024,0.954,0.984,0.986,1.099,1.086,1.015,1.022,1.08,0.996,0.957,0.893,1.112,1.068 +NM_203351,1.019,0.914,0.974,0.905,0.926,1.066,0.958,0.944,1.122,1.067,0.901,1.023,0.845,1.018,0.903,0.882,0.969,1.078,0.921,1.025,1.035,1.096,0.979,1.165,1.029,1.08,1.022,0.946,1.26,1.023,0.919,1.079,0.974,1.094,1.014,0.985,0.87,1.102,1.101,0.98,0.966,0.921,0.877,1.192,0.989,0.992,0.947,1.031,1.027,0.992,1.074,0.934,1.048,1.012 +NM_203354,1.094,1.141,0.891,1.03,0.999,1.017,0.883,0.997,1.009,1.12,0.998,0.993,1.005,1.074,0.998,0.94,0.957,1.052,0.974,0.95,1.015,1.087,1.027,0.909,0.992,1.038,1.04,0.886,1.23,1.031,1.097,0.979,1.145,1.001,1.075,0.838,0.979,0.955,1.054,0.851,0.958,0.991,1.019,0.946,1.067,0.959,1.129,1.121,1.004,0.999,0.951,1.026,0.97,0.964 +NM_203356,1.086,0.892,1.163,1.041,1.124,0.902,0.952,1.092,0.849,1.013,0.977,1.109,1.094,0.838,0.843,1.053,1.031,1.251,1.053,0.976,0.959,1.1,1.112,1.112,0.922,1.017,0.985,0.78,1.078,0.813,0.951,0.982,1.11,1.037,1.003,1.084,1.066,0.944,1.032,1.008,1.04,1.033,0.98,1.033,1.022,0.971,1.066,0.957,0.922,1.194,1.082,1.046,1.084,1.144 +NM_203365,1.019,0.849,1.118,0.851,1.008,0.928,1.14,1.069,1.108,1.118,1.003,1.006,0.999,0.935,1.069,1.1,1.007,0.843,1.165,0.921,1.066,0.865,0.972,1.039,0.946,0.997,1.124,1.047,0.842,1.01,1.013,0.845,0.962,1.014,1.117,0.99,1.02,0.903,1.162,0.979,1.045,0.986,1.051,0.966,1.154,0.884,1.054,1.034,0.945,1.027,0.915,0.818,1.079,1.058 +NM_203370,1.85,0.684,4.394,0.94,2.947,0.535,0.501,1.501,3.151,2.592,0.498,3.191,2.244,1.332,1.878,0.999,2.999,1.684,3.265,0.644,1.331,1.988,0.539,3.435,0.591,2.86,3.201,2.774,0.512,0.677,2.407,1.217,1.049,0.689,0.404,0.592,0.539,3.608,0.69,0.734,3.617,0.776,0.46,0.532,4.123,0.526,1.889,2.725,0.49,2.47,0.826,1.201,2.303,0.802 +NM_203374,0.814,1.083,1.118,0.761,0.958,0.84,0.772,0.668,0.93,1.141,1.127,0.99,0.812,0.661,0.777,0.991,0.895,1.02,0.796,1.473,0.75,0.986,1.373,0.956,0.872,0.908,0.988,1.004,0.708,1.068,0.864,1.231,0.962,1.05,0.631,1.556,0.87,0.943,1.082,1.03,1.038,0.985,1.065,1.086,0.989,1.301,0.937,0.94,1.073,0.918,1.005,0.919,0.936,0.896 +NM_203375,1.037,1.295,0.942,1.236,0.812,1.079,1.16,0.905,1.083,1.116,0.981,1.019,1.162,0.852,1.207,0.893,1.017,1.019,0.822,0.934,0.732,1.086,0.943,0.859,0.981,1.118,0.991,1.075,1.077,0.899,0.927,1.264,1.029,1.079,0.919,0.942,1.319,1.059,0.816,0.978,1.16,0.949,1.712,0.717,0.914,0.905,0.715,1.137,0.831,0.823,1.303,1.189,0.85,0.889 +NM_203376,0.959,1.006,0.966,1.037,1.001,0.854,0.946,0.999,1.067,1.014,0.897,1.043,1.063,0.996,0.816,0.989,1.026,0.91,0.935,1.076,0.983,0.886,0.944,1.055,0.946,0.87,0.966,0.953,0.922,0.943,0.971,0.873,0.999,1.051,1.069,0.998,1.039,0.983,1.116,0.92,1.102,1.014,1.169,0.944,1.083,0.934,1.047,1.038,1.035,0.916,0.895,1.026,1.124,0.99 +NM_203379,0.975,0.874,1.098,0.789,1.024,1.002,1.079,1.256,0.875,0.922,0.956,1.069,0.917,0.982,1.228,1.189,0.888,1.044,0.771,0.997,0.915,1.164,1.154,1.018,0.895,1.038,1.167,1.113,1.098,0.967,0.958,0.956,0.793,0.926,0.814,0.81,1.208,0.935,1.084,0.921,0.963,1.173,1.028,0.961,1.065,1.056,1.122,1.081,1.04,0.861,0.947,1.038,1.04,1.123 +NM_203380,1.036,1.058,1.044,0.872,1.057,0.963,1.028,1.076,1.048,0.924,0.883,1.045,1.027,1.154,0.928,0.994,1.121,0.813,0.854,0.89,1.05,0.854,0.876,1.112,1.127,1.136,0.917,1.025,1.097,1.021,0.932,1.108,0.943,0.917,1.057,0.962,0.94,1.087,1.001,1.027,0.868,1.161,1.12,0.838,1.14,1.036,0.995,0.964,1.135,0.942,1.041,1.051,0.975,0.89 +NM_203392,1.039,0.924,1.08,1.011,1.082,0.919,0.974,1.03,1.025,1.076,0.798,0.982,0.909,0.965,0.851,1.162,0.973,1.184,0.826,1.128,1.217,1.01,0.936,0.985,0.97,1.043,1.083,0.994,0.956,1.124,1.003,0.937,1.066,0.852,0.931,1.108,1.003,1.044,0.848,1.119,1.01,0.981,0.99,1.016,1.104,1.051,1.044,1.15,0.945,1.039,0.885,0.953,1.104,0.857 +NM_203393,0.931,1.086,1.029,0.988,1.173,1.003,1.058,1.048,1.311,1.042,0.985,1.009,1.056,0.886,0.998,0.982,1.053,1.118,0.999,1.057,0.917,1.043,1.02,0.928,1.033,1.022,0.781,0.963,1.048,0.967,0.957,1.013,0.936,1.068,1.101,1.038,1.032,1.126,1.042,0.926,0.998,0.981,0.944,1.038,0.932,1.109,1.03,1.09,0.989,0.853,0.851,0.961,1.188,1.218 +NM_203394,0.949,0.894,1.162,0.773,1.002,0.971,0.779,0.875,1.018,0.861,0.82,1.057,0.875,0.866,0.971,1.102,1.009,1.013,1.015,0.856,1.017,0.966,1.143,1.079,0.938,0.976,1.496,0.906,1.09,0.871,0.954,1.128,1.408,0.98,0.777,1.094,0.876,1.002,1.156,1.102,0.958,0.866,0.771,1.178,1.153,0.936,0.915,0.959,1.034,1.029,1.059,1.137,1.02,1.593 +NM_203395,0.88,1.084,1.273,1.028,0.97,1.102,0.978,0.875,0.851,0.907,1.561,0.791,0.779,0.833,1.068,1.214,0.969,0.952,0.863,1.464,0.958,0.85,1.477,0.816,0.934,0.932,0.868,0.991,1.521,1.055,1.054,0.916,1.027,1.259,1.0,1.064,1.045,0.977,1.092,1.074,0.78,1.383,1.208,0.79,0.949,1.311,0.932,0.867,1.084,0.968,1.066,0.861,0.903,1.047 +NM_203399,1.098,1.049,0.974,0.816,0.907,1.005,0.893,1.121,1.016,0.944,0.851,1.042,0.981,1.018,1.049,1.056,1.028,1.07,0.926,0.986,1.031,0.909,0.974,1.081,1.009,0.94,0.953,0.915,0.997,1.112,0.996,0.988,0.897,1.03,0.994,0.966,1.038,1.065,1.089,1.072,0.992,0.949,1.037,0.904,0.96,1.038,1.188,1.052,0.95,1.072,0.97,1.106,1.065,0.988 +NM_203400,0.972,0.862,0.988,1.006,0.965,1.078,0.98,1.056,0.976,0.948,1.13,1.13,0.879,1.029,1.02,0.96,1.07,0.963,0.826,0.953,0.999,0.976,0.907,1.144,0.946,1.018,1.033,1.113,0.768,0.957,1.114,1.048,0.941,1.05,1.028,0.97,1.003,1.096,0.985,0.938,1.005,0.956,0.871,0.892,0.965,0.937,0.948,1.027,1.026,1.245,0.936,0.868,1.105,1.033 +NM_203401,1.015,1.079,1.088,1.142,1.054,0.943,1.02,1.345,1.049,1.137,1.021,1.125,0.97,1.209,1.08,0.929,1.002,0.978,0.975,1.088,0.953,0.866,0.948,1.128,0.918,0.92,0.802,0.965,0.948,0.959,0.961,1.035,0.957,1.018,1.063,1.088,0.899,1.189,0.915,0.944,1.11,0.921,1.275,0.979,1.068,0.944,0.981,1.031,0.906,1.01,1.127,0.864,0.904,1.067 +NM_203402,0.953,1.046,1.057,1.054,0.923,1.052,0.946,1.018,1.121,1.012,0.941,0.981,0.998,1.126,1.168,1.035,1.018,1.008,0.947,0.992,0.915,0.977,1.077,0.974,1.034,0.92,0.878,1.076,1.45,0.949,1.106,1.076,1.017,0.966,1.1,1.051,1.021,0.982,0.909,0.974,0.872,0.997,1.045,1.147,1.033,1.013,0.966,0.845,1.113,0.991,1.015,0.92,0.932,1.017 +NM_203403,0.845,1.032,0.878,0.86,0.856,1.288,0.974,0.794,0.892,0.867,1.353,0.838,0.752,0.854,0.962,1.419,0.768,0.877,0.887,1.225,1.015,0.886,1.404,0.824,0.845,0.872,1.583,0.947,0.841,1.214,0.839,1.099,0.98,1.475,0.889,0.93,1.173,0.826,1.188,1.021,0.743,1.582,1.054,1.247,0.994,1.24,0.914,0.816,1.594,0.827,1.063,0.965,0.803,0.979 +NM_203405,0.942,0.99,0.92,0.938,1.188,0.962,1.488,0.918,1.1,0.82,1.178,1.052,0.962,1.038,1.067,1.058,1.131,1.055,1.069,1.053,0.97,0.981,1.104,1.139,1.042,1.034,0.843,0.933,1.147,0.848,0.955,0.983,1.032,1.081,1.112,1.08,0.958,1.126,1.088,0.998,0.982,0.943,1.054,0.92,0.962,1.001,0.831,0.917,1.101,0.97,1.038,0.971,0.913,0.93 +NM_203406,1.155,0.929,1.376,0.929,0.978,0.957,0.839,1.041,1.27,1.04,0.927,0.98,1.136,1.075,1.382,1.191,1.008,1.016,1.384,0.9,0.91,1.026,0.974,1.069,0.882,1.142,1.24,1.119,0.864,0.971,1.282,0.947,1.289,1.155,0.774,0.85,1.086,1.09,0.919,0.857,1.223,1.046,0.793,0.802,0.999,1.002,0.873,0.889,0.924,1.212,1.017,0.97,0.888,1.2 +NM_203407,0.91,0.959,1.037,0.957,1.064,0.993,1.03,0.899,1.138,0.999,1.035,0.999,1.084,1.019,0.744,1.232,1.142,1.091,0.928,1.048,1.074,1.105,1.032,1.067,0.972,0.943,0.914,1.013,0.886,1.008,1.147,0.932,0.98,1.007,0.973,1.001,1.08,1.014,1.042,0.991,0.906,1.008,0.887,1.027,1.166,1.02,0.968,1.047,0.995,1.1,1.166,1.037,1.163,0.929 +NM_203408,0.963,0.91,0.98,0.843,1.027,0.99,1.001,1.2,0.984,0.937,0.987,0.909,0.945,0.992,0.986,0.959,0.964,1.098,1.036,0.993,1.126,0.831,0.875,1.049,1.021,0.897,1.065,1.019,0.943,1.059,1.234,1.031,1.038,0.983,1.017,0.995,0.981,0.982,1.09,1.092,0.994,0.893,1.177,1.065,1.041,1.004,1.064,1.098,1.102,0.829,1.081,0.965,0.866,0.938 +NM_203411,0.883,1.069,0.794,0.961,0.817,0.956,0.963,1.014,0.884,0.911,1.044,0.87,0.769,0.885,1.064,0.981,1.043,1.007,0.949,0.959,0.93,0.862,1.037,1.012,1.091,0.822,1.046,0.915,0.914,1.035,0.919,1.152,0.836,1.143,0.965,1.009,1.065,0.988,1.221,1.283,0.94,1.04,0.914,0.863,0.955,0.985,1.144,0.886,0.935,0.973,1.071,0.951,1.078,0.964 +NM_203412,0.998,1.018,0.912,0.99,1.114,0.955,0.995,1.06,1.323,1.053,1.002,1.086,1.078,0.813,0.896,0.865,1.192,0.989,1.062,1.197,1.051,0.945,1.07,1.013,0.964,1.024,1.09,1.107,0.856,0.979,1.021,0.947,0.943,1.041,1.024,0.934,1.034,1.126,0.93,1.034,0.888,0.913,0.907,1.112,0.956,1.078,0.915,1.056,1.039,1.111,0.957,0.896,0.992,0.917 +NM_203413,0.972,0.91,1.01,1.044,0.984,1.019,0.993,0.952,0.887,1.013,1.107,0.894,1.039,0.921,0.865,1.087,1.001,0.931,1.128,0.972,0.981,1.202,0.887,1.014,1.093,1.046,1.099,0.953,0.806,1.118,1.097,1.088,0.937,1.01,0.883,0.981,1.026,1.01,0.922,1.049,0.943,0.956,0.836,1.02,0.994,0.908,0.968,1.047,1.041,1.074,0.928,0.913,0.936,1.357 +NM_203414,0.926,0.926,1.0,1.052,0.942,1.176,0.871,0.966,1.053,0.809,1.022,0.908,0.891,0.938,1.084,0.879,1.034,1.085,0.811,1.103,1.016,1.03,1.133,1.055,0.926,0.841,1.154,0.956,0.865,1.015,0.985,1.166,1.178,1.072,1.209,1.038,0.928,0.914,1.002,1.055,1.068,0.982,0.913,0.964,0.976,1.015,1.016,1.07,1.023,1.028,1.066,0.859,1.062,1.043 +NM_203419,0.787,0.717,1.818,0.58,1.466,0.995,0.779,0.95,1.557,1.671,0.535,1.457,1.036,0.384,0.971,1.661,1.209,1.569,0.715,1.266,0.327,1.366,1.194,2.041,0.444,0.712,1.648,1.675,0.448,0.989,1.176,0.946,1.811,0.703,0.573,0.87,0.94,1.609,1.723,1.521,1.421,0.936,0.641,0.79,1.666,1.005,1.84,1.389,1.653,1.134,1.233,0.948,0.565,0.887 +NM_203423,1.012,0.975,1.105,0.999,0.954,1.108,0.926,0.95,0.89,1.028,1.074,0.972,1.0,0.909,0.634,1.2,1.039,1.178,1.098,1.012,1.126,1.018,1.07,0.932,0.893,0.944,0.908,1.014,1.02,0.997,1.185,0.916,0.888,0.876,1.106,1.102,1.031,0.819,1.019,0.96,0.908,1.0,1.296,0.937,0.928,0.828,1.095,1.083,0.81,1.092,1.022,1.157,0.802,0.949 +NM_203424,0.863,1.138,1.002,0.987,1.107,0.948,1.113,1.037,1.062,1.008,1.119,1.154,0.883,0.8,1.076,0.891,1.219,0.976,0.95,0.968,1.198,1.107,0.965,1.041,0.996,0.912,1.071,1.004,0.97,0.955,0.858,0.902,1.126,0.798,1.164,1.03,1.085,1.006,1.035,0.997,1.023,0.957,1.114,1.058,1.187,1.012,1.125,1.076,0.925,1.073,1.124,0.919,0.983,1.118 +NM_203425,1.054,0.884,1.061,1.034,0.938,0.967,1.142,1.07,0.931,1.061,0.936,0.939,0.936,1.124,0.885,0.874,1.071,0.923,1.003,0.974,0.946,1.046,0.937,0.965,1.018,1.074,1.123,1.011,0.985,1.138,0.979,1.069,0.822,1.006,0.824,0.911,1.104,1.02,1.034,0.968,0.944,1.05,0.986,1.09,0.989,0.871,1.001,0.812,1.16,1.006,1.17,1.008,0.833,0.999 +NM_203429,0.966,1.018,1.065,0.988,0.924,0.965,1.032,0.989,0.954,1.018,1.003,1.049,1.024,0.934,0.842,0.982,1.078,0.992,1.215,1.093,0.972,1.105,1.011,1.017,1.142,0.991,1.011,0.978,0.999,0.969,0.942,1.028,1.018,0.992,0.864,1.088,0.985,0.984,1.263,0.926,0.945,0.941,1.001,1.008,0.926,1.017,0.98,1.02,0.952,1.005,0.933,1.117,0.89,1.049 +NM_203430,0.999,1.0,1.178,0.917,0.956,0.967,0.674,0.712,1.082,0.902,1.189,0.825,0.874,0.862,1.067,1.08,0.909,0.979,1.071,0.832,1.019,0.801,1.313,1.185,0.823,1.01,1.092,1.0,0.781,1.154,1.161,1.233,1.744,1.144,0.741,1.255,0.791,0.916,1.118,0.969,1.355,0.886,0.701,2.409,0.915,0.939,1.147,0.944,0.919,0.863,0.94,1.214,0.967,2.579 +NM_203434,0.894,0.838,1.292,0.841,0.818,1.029,0.763,0.775,0.92,1.039,1.012,0.856,0.998,0.867,0.888,1.025,1.373,1.042,1.231,0.937,0.967,1.147,0.845,0.995,0.751,0.969,0.911,0.988,0.84,0.97,0.799,2.436,1.623,0.957,0.881,1.009,1.002,0.966,1.589,1.726,0.931,1.257,0.724,1.622,1.034,0.837,0.979,0.992,0.755,1.389,0.936,1.49,1.044,2.13 +NM_203436,1.046,1.046,0.936,0.879,0.997,0.948,1.086,1.014,0.993,0.912,0.877,0.981,0.958,0.86,0.965,0.957,0.983,0.822,1.122,0.983,1.085,1.013,0.988,0.97,1.028,0.896,0.971,0.915,0.802,1.2,1.092,0.962,0.906,0.924,0.951,0.963,1.053,1.072,0.976,1.054,0.95,1.051,0.97,0.94,1.082,1.196,1.037,1.033,0.916,1.106,1.144,0.987,0.925,0.923 +NM_203444,1.1,1.099,1.005,0.92,1.117,1.017,1.061,1.073,0.97,0.851,1.017,1.035,1.095,0.929,0.939,1.198,0.957,0.902,0.981,0.99,1.053,1.062,1.153,1.066,0.832,0.961,1.098,0.992,1.257,0.95,1.012,1.215,1.084,0.988,1.022,1.058,0.972,0.999,0.887,0.976,1.014,0.945,1.229,0.982,0.954,0.895,1.015,0.932,1.034,0.972,0.948,0.892,1.283,0.962 +NM_203446,1.075,0.939,1.05,1.005,1.251,1.001,1.005,0.887,0.888,1.062,0.993,0.922,1.171,0.841,1.23,0.918,0.92,0.994,1.098,1.039,1.057,0.975,0.924,0.95,1.18,0.954,1.085,1.148,0.96,0.876,0.956,0.984,1.104,0.939,1.15,0.965,1.113,0.989,1.057,1.01,0.937,0.948,1.009,1.02,1.082,1.123,1.068,1.12,1.09,0.883,1.111,1.145,0.949,0.941 +NM_203447,0.821,0.921,1.536,0.738,1.101,1.11,1.162,0.908,1.139,0.927,0.837,0.885,0.861,0.974,1.203,1.468,1.044,1.009,0.99,1.104,0.889,1.052,0.859,1.022,0.671,0.977,1.277,1.101,0.808,1.326,1.082,1.229,1.31,1.147,0.721,0.942,0.924,1.116,0.97,1.344,1.152,1.208,0.874,0.763,1.14,0.869,0.921,0.955,0.907,0.9,0.986,0.952,0.88,1.717 +NM_203451,1.133,1.03,1.132,1.001,1.102,0.935,1.027,1.071,0.987,0.753,0.992,1.035,0.982,1.051,1.124,0.98,1.089,0.9,0.825,0.968,1.029,0.923,0.851,0.908,0.924,0.777,1.071,0.824,0.923,0.921,1.01,1.0,1.044,1.0,0.892,1.025,1.051,1.088,1.017,0.991,0.994,0.919,1.266,0.825,1.404,1.034,0.936,1.044,0.931,0.969,0.829,1.286,0.871,1.046 +NM_203453,0.818,0.952,1.287,1.001,0.993,1.466,0.909,0.9,1.194,1.02,1.28,0.966,0.766,0.94,1.276,1.601,0.785,0.924,1.225,1.097,0.718,0.639,1.317,0.927,0.817,0.688,1.074,0.855,0.686,1.537,1.117,1.075,1.072,1.937,0.652,0.783,1.35,0.824,0.932,0.708,1.152,1.187,0.686,0.847,1.022,1.18,0.822,0.784,0.976,0.817,1.199,0.984,0.92,1.721 +NM_203454,1.066,1.039,1.044,1.058,1.017,1.109,0.969,1.0,1.163,0.974,0.895,1.001,0.868,0.947,1.205,1.0,0.96,0.957,1.071,1.052,0.884,1.19,0.897,1.026,1.01,1.009,1.015,0.981,1.253,0.898,1.076,0.941,0.963,1.048,1.084,0.968,1.033,1.042,1.104,1.027,1.168,0.929,0.935,1.027,0.981,0.955,0.932,1.088,0.968,1.104,1.074,0.959,1.152,1.119 +NM_203456,0.941,1.456,1.161,0.872,1.051,1.005,0.831,0.79,1.295,1.077,1.009,0.906,0.94,0.796,0.745,1.054,0.917,0.949,0.775,1.416,0.81,0.858,1.08,0.968,0.988,0.985,0.755,1.127,0.65,1.132,0.897,2.545,2.266,1.324,0.652,1.724,0.874,1.053,1.21,1.239,1.081,1.236,0.903,1.076,0.968,1.024,0.978,0.923,0.976,0.864,0.935,0.846,0.946,1.287 +NM_203458,0.953,1.049,2.349,0.446,1.437,0.944,0.872,2.251,2.338,1.162,0.618,1.385,2.371,1.14,1.959,1.83,1.959,1.009,0.937,0.909,0.573,2.839,0.996,2.292,0.381,0.836,2.149,2.547,0.348,0.616,3.218,2.163,1.684,0.801,1.333,0.453,0.587,2.539,1.129,0.811,1.277,0.848,0.519,0.387,1.464,0.653,1.798,2.018,0.585,1.416,1.019,0.622,0.594,1.011 +NM_203459,0.864,0.825,1.31,0.571,1.447,0.799,0.588,1.026,1.499,1.091,0.736,1.781,0.806,0.804,0.809,0.917,0.923,0.993,1.318,0.838,0.815,1.268,0.864,1.574,0.6,0.931,1.663,1.084,0.532,0.911,1.231,1.866,1.86,1.017,0.65,0.68,0.704,1.162,0.87,1.238,1.277,1.056,0.46,1.036,1.178,0.647,1.151,1.108,0.542,1.056,0.782,1.166,1.132,1.092 +NM_203463,0.601,1.354,0.972,0.914,0.567,1.439,1.017,0.4,0.68,0.533,2.482,0.452,0.538,0.461,0.918,2.874,0.401,1.347,0.749,2.006,0.285,0.606,2.456,0.71,1.153,0.58,1.119,0.492,0.845,1.665,0.672,1.269,1.544,2.217,0.127,0.918,2.18,0.493,1.926,1.158,0.531,2.241,1.425,1.823,0.718,1.216,0.879,0.474,1.324,0.596,1.821,0.924,0.601,0.998 +NM_203471,0.905,1.256,1.026,0.831,1.052,1.029,1.0,0.86,0.979,1.192,1.081,0.828,0.992,0.917,0.947,1.043,0.943,1.186,0.871,0.974,0.992,0.948,0.966,1.217,0.953,0.919,1.037,1.012,0.943,0.903,0.98,0.911,0.822,1.04,1.107,0.939,1.001,1.006,0.954,0.964,1.028,1.006,1.072,1.02,1.076,1.144,1.063,0.869,1.14,0.882,1.126,0.987,0.931,0.924 +NM_203472,0.941,1.248,0.975,0.945,0.75,1.095,0.988,0.861,0.894,1.059,0.998,0.886,0.838,0.976,1.051,1.012,0.905,0.89,0.861,1.14,1.026,0.959,1.398,0.87,0.915,0.837,0.894,0.836,0.848,1.097,0.845,1.088,0.982,1.075,1.06,1.048,1.04,1.035,1.111,0.983,0.835,1.072,1.063,1.069,0.981,1.063,0.99,0.932,1.119,0.825,0.999,0.889,0.952,1.168 +NM_203487,0.934,0.988,0.948,1.098,1.059,0.957,1.119,0.961,1.127,1.157,1.087,1.014,1.073,1.013,0.825,0.944,1.013,1.181,1.1,0.918,0.987,0.911,0.905,1.1,1.16,1.146,1.034,1.118,1.072,1.027,1.19,1.123,0.925,1.108,0.99,0.852,0.969,0.861,1.074,0.866,0.943,1.024,0.827,0.86,1.043,0.906,0.893,1.004,1.037,0.927,0.89,1.033,0.983,1.023 +NM_203488,0.949,0.959,0.927,0.771,1.065,1.175,0.952,1.249,1.09,0.9,0.875,0.935,1.001,0.956,0.897,1.065,0.872,0.999,1.039,0.974,1.032,0.856,0.932,1.106,0.986,1.025,1.128,0.996,0.687,1.074,1.123,0.932,1.147,0.963,0.909,0.923,0.993,1.12,1.153,0.995,1.021,1.138,0.841,0.909,1.217,1.052,0.988,1.176,1.024,0.973,1.056,0.98,0.898,1.568 +NM_203494,0.97,0.979,0.84,1.047,1.044,0.897,0.854,0.937,0.978,1.072,0.984,0.754,0.926,1.073,1.002,1.042,1.159,0.913,0.927,1.148,0.887,0.938,1.192,1.084,1.146,0.998,0.951,1.033,0.856,1.037,0.926,1.139,1.0,1.126,1.021,1.237,1.093,0.893,1.069,0.968,0.865,0.951,0.964,0.986,1.106,1.071,1.099,1.0,1.084,1.119,1.083,1.14,1.148,0.822 +NM_203498,1.046,1.066,0.929,1.024,0.963,1.044,1.232,1.071,1.001,1.009,0.876,1.059,1.064,1.004,0.879,0.996,0.918,0.98,0.912,0.995,1.074,1.026,0.832,1.03,0.985,1.153,1.058,0.969,0.663,0.976,1.001,1.134,0.843,0.886,0.84,0.836,0.979,1.01,0.924,0.906,0.881,0.917,1.145,0.926,1.017,1.06,0.935,0.853,0.974,1.053,1.143,0.919,1.004,0.959 +NM_203500,0.94,1.103,0.993,1.019,1.114,1.009,1.044,1.137,1.03,1.125,1.011,0.93,0.984,1.041,0.885,0.97,0.98,0.876,1.013,1.041,1.094,1.21,1.035,0.915,0.992,0.974,0.938,0.96,0.815,0.935,0.997,1.016,1.073,0.983,1.093,0.986,1.04,0.954,0.945,0.921,0.963,0.903,1.164,1.133,0.925,0.951,1.019,0.967,1.056,1.021,1.09,0.904,1.029,0.961 +NM_205545,9.071,0.287,3.366,1.737,5.01,0.247,0.297,11.39,7.4,1.618,0.27,2.75,11.72,6.859,4.08,1.398,4.506,1.248,11.8,1.051,6.141,6.05,0.208,4.878,0.246,12.61,1.772,4.542,0.395,0.398,11.2,7.304,4.359,0.313,15.55,0.264,0.287,4.716,1.184,0.336,6.618,0.289,0.206,0.282,5.222,0.219,1.696,13.37,0.412,5.375,0.885,1.371,5.522,1.497 +NM_205767,0.893,1.147,0.896,0.841,0.787,1.078,0.527,0.632,0.996,0.91,1.152,0.679,0.954,0.573,0.872,1.862,0.953,1.079,1.324,0.902,0.56,0.962,1.818,1.061,0.841,0.983,1.048,0.786,0.47,1.088,0.809,1.092,1.259,1.335,0.169,0.955,1.226,1.052,1.674,0.581,1.045,1.274,0.656,1.377,0.967,0.873,0.851,1.105,1.134,0.805,1.013,0.672,0.672,1.117 +NM_205768,0.937,1.052,0.949,1.02,0.928,1.039,1.009,1.327,1.182,1.0,0.968,1.089,0.929,0.888,0.829,1.253,1.173,1.032,1.015,1.022,0.96,0.979,0.91,0.999,0.905,1.106,0.983,1.0,0.904,1.035,0.945,1.111,0.952,1.027,1.015,0.993,0.926,1.029,0.991,1.021,1.105,1.014,1.194,0.849,1.086,1.065,0.909,0.87,0.893,1.049,0.916,1.0,1.003,0.93 +NM_205834,1.02,0.938,0.834,1.007,0.987,0.98,0.796,0.936,0.967,1.039,0.83,0.968,1.159,0.943,1.211,0.883,1.003,1.163,0.882,0.99,0.928,1.055,0.9,1.101,1.009,1.089,1.069,0.83,0.916,1.058,1.009,0.841,1.062,0.967,1.087,1.131,1.01,1.284,0.981,0.804,0.903,1.092,0.986,0.996,1.019,0.88,0.961,1.122,0.922,1.025,1.05,1.046,1.023,1.262 +NM_205836,1.051,0.948,0.97,1.002,1.045,1.061,1.017,1.034,1.039,1.112,0.958,1.007,1.119,1.082,0.983,1.017,0.985,0.973,1.027,0.845,1.01,0.981,1.02,1.027,0.97,1.038,1.063,0.993,0.925,0.982,1.068,1.014,0.929,1.004,0.986,0.951,0.959,1.066,1.045,0.963,0.945,0.96,1.164,0.939,1.055,0.788,1.007,1.031,1.048,1.003,0.937,0.975,0.963,1.023 +NM_205837,1.039,0.99,1.036,0.966,1.053,1.058,1.186,0.955,0.893,1.023,0.952,0.988,1.006,0.882,1.07,0.876,1.022,1.029,0.98,0.943,0.978,1.042,1.176,1.187,0.962,0.951,0.868,0.874,1.19,0.958,1.135,1.045,0.88,0.948,1.227,1.071,0.964,0.915,1.019,0.964,0.99,0.876,0.908,1.06,0.906,1.073,0.962,0.998,0.928,1.012,1.015,0.936,0.988,1.025 +NM_205843,1.119,0.936,1.173,0.854,0.878,1.084,0.874,0.879,0.964,1.022,0.834,0.896,1.064,0.863,0.808,0.905,0.877,1.07,1.112,0.902,1.243,1.231,0.968,1.029,1.259,1.006,1.143,0.929,0.889,1.188,1.028,1.304,1.149,1.274,0.811,0.846,0.925,1.237,1.541,0.738,1.059,1.358,0.895,1.34,1.264,0.756,0.747,0.943,0.825,0.926,1.04,0.848,1.009,1.102 +NM_205847,0.986,1.032,1.01,0.996,0.974,0.906,0.878,0.895,0.885,1.0,1.067,0.952,0.978,0.875,1.025,0.996,1.047,1.114,0.811,1.053,0.97,1.086,1.03,1.009,1.005,1.065,1.107,0.937,1.146,1.009,0.951,0.911,0.915,0.88,0.993,0.943,0.928,1.105,1.191,1.003,0.932,0.923,0.965,1.127,0.959,1.015,1.028,0.997,1.011,1.04,0.961,0.853,0.995,1.03 +NM_205848,1.126,1.011,0.894,1.006,0.968,1.031,0.785,0.953,0.906,1.047,0.898,1.08,1.01,0.793,1.125,0.965,1.122,1.072,0.904,1.074,0.95,1.031,1.034,0.866,1.061,0.901,0.899,1.013,0.727,1.069,0.977,0.999,1.154,1.01,1.021,0.834,0.911,1.048,0.942,1.062,0.963,1.057,0.991,1.093,0.871,0.941,1.096,0.967,0.895,0.893,1.061,0.989,0.985,1.088 +NM_205849,1.153,1.02,0.977,1.023,0.78,0.938,0.937,1.013,1.011,0.979,1.004,1.004,1.12,0.938,1.17,1.046,1.089,1.117,0.94,0.978,1.104,0.937,1.04,0.985,0.948,0.981,0.772,1.006,1.736,1.132,1.068,0.938,0.881,0.96,0.987,1.061,1.091,1.1,0.91,1.007,0.953,1.0,0.898,1.18,1.022,0.869,0.981,1.064,0.936,1.162,0.978,1.063,1.005,1.033 +NM_205850,1.047,0.969,0.986,0.975,1.038,0.953,0.947,0.92,1.13,1.008,1.026,0.989,1.054,1.005,1.043,1.024,1.019,1.06,1.106,1.048,0.835,0.933,0.896,1.025,0.971,0.948,0.982,0.994,0.756,1.062,0.993,1.042,0.986,0.906,1.179,0.973,1.044,1.07,1.133,1.132,1.039,1.028,0.828,0.985,1.087,1.171,1.05,0.974,1.124,1.001,0.973,1.084,1.075,0.976 +NM_205852,0.959,0.891,0.967,1.068,0.951,0.945,0.904,1.162,0.95,1.035,1.049,1.085,1.075,0.982,1.028,0.961,1.066,1.126,0.979,0.917,0.996,1.048,0.952,0.955,0.972,0.971,1.092,1.245,0.786,0.989,1.139,1.063,1.089,0.967,0.989,0.961,1.039,1.035,1.01,1.145,1.122,0.948,0.926,1.026,0.934,0.843,0.992,1.118,1.074,0.944,1.006,1.014,0.981,0.928 +NM_205854,2.002,0.692,0.886,1.283,6.762,0.822,0.76,3.263,1.998,0.994,0.757,3.321,2.924,1.599,1.749,0.722,0.735,1.681,1.293,1.445,0.839,2.134,0.506,1.608,0.559,2.219,0.471,4.59,0.54,1.771,3.336,3.014,5.69,0.979,4.564,0.789,0.736,3.688,1.868,1.13,1.155,0.58,0.403,0.682,1.259,0.641,0.842,2.553,0.403,0.949,0.944,1.105,0.653,1.62 +NM_205856,1.153,1.215,0.973,1.084,1.147,1.051,0.9,0.956,1.041,1.007,0.962,1.17,0.984,0.948,1.138,0.971,0.956,1.138,1.075,1.038,0.994,0.989,0.98,1.051,1.04,0.946,0.764,1.068,1.029,0.949,1.005,0.853,1.081,1.114,1.125,0.981,0.995,0.975,0.915,1.032,0.819,0.834,1.042,1.123,0.918,1.151,0.855,0.973,0.983,0.942,1.013,1.002,0.97,1.196 +NM_205857,1.046,0.96,1.007,0.91,1.116,1.153,1.016,0.918,1.209,0.769,0.988,0.954,0.884,0.991,0.86,1.125,0.899,0.975,1.022,0.832,1.045,0.972,1.074,0.944,0.88,0.922,0.97,1.262,0.917,1.049,1.037,1.09,0.844,0.984,1.051,1.047,1.126,0.91,0.934,1.043,1.02,1.025,1.194,1.013,0.869,0.984,1.024,0.922,0.895,0.925,1.057,0.865,1.05,1.038 +NM_205859,1.019,0.977,1.005,0.992,1.126,0.997,0.931,1.325,0.948,0.971,0.914,1.009,1.041,0.999,0.918,0.82,1.064,1.021,0.937,0.972,0.946,0.927,1.026,0.882,1.033,0.944,0.985,1.024,0.994,1.011,1.027,0.967,0.973,0.878,1.195,0.96,0.993,0.965,1.015,1.057,0.987,1.157,1.053,1.02,1.076,1.04,0.846,0.892,1.005,1.1,1.083,1.104,0.993,0.969 +NM_205860,0.906,1.091,1.276,0.985,1.233,0.98,1.091,1.001,1.246,1.088,1.047,1.01,1.088,0.924,1.316,1.009,0.904,0.939,0.973,1.005,0.906,0.984,1.128,1.118,1.138,1.082,1.028,1.044,1.8,0.899,0.927,0.833,0.915,0.964,1.182,1.078,1.182,0.975,1.042,0.902,1.039,0.895,1.477,0.933,0.935,1.062,1.056,1.0,1.041,1.075,1.019,0.847,1.127,0.975 +NM_205864,1.0,1.002,1.091,1.015,0.922,0.92,1.17,1.078,0.936,0.99,1.094,1.087,0.911,0.981,1.056,0.921,0.984,1.037,0.922,0.906,1.022,0.921,0.943,1.0,1.094,0.943,0.913,1.032,1.194,0.907,1.003,1.022,0.901,1.186,1.041,1.124,0.92,0.917,1.049,1.021,1.089,1.009,0.918,1.122,1.073,1.016,1.022,1.037,1.019,0.999,1.001,0.901,0.953,0.894 +NM_206539,1.036,0.945,1.013,1.005,0.98,1.003,1.102,1.15,0.91,1.062,1.247,0.982,1.097,0.947,0.89,1.234,1.079,1.03,0.793,0.999,1.073,0.921,1.056,1.025,1.028,0.918,0.812,0.99,0.891,0.897,0.985,0.958,1.007,0.847,1.019,1.001,1.142,1.091,0.949,0.924,1.077,0.909,0.794,0.875,0.999,1.034,1.067,0.928,0.939,0.985,0.949,1.016,1.083,1.013 +NM_206594,1.24,1.085,0.904,1.036,0.884,0.993,1.019,0.957,0.997,0.88,1.077,1.046,1.194,1.037,0.829,1.182,1.06,1.067,1.16,0.961,0.925,1.183,1.056,0.934,1.057,1.167,1.024,0.987,0.974,1.131,1.051,0.943,0.912,0.93,1.187,1.052,1.121,0.901,0.976,0.884,1.021,0.942,0.875,1.045,0.962,0.955,0.908,1.069,1.119,0.993,1.076,1.486,1.252,1.081 +NM_206808,0.703,1.101,0.982,0.818,0.945,1.656,0.576,0.666,1.094,0.779,1.699,1.345,0.704,0.761,1.358,3.415,0.992,0.686,1.579,1.31,0.512,1.131,1.006,1.148,0.587,0.884,1.317,1.284,0.468,0.937,0.968,1.185,1.396,1.67,0.438,1.034,1.377,0.922,0.809,0.643,0.964,1.583,1.071,1.035,0.944,1.672,1.218,0.846,1.43,0.771,1.577,0.661,0.967,0.965 +NM_206827,1.009,0.982,1.001,0.882,0.804,0.897,0.941,0.997,0.801,0.882,1.289,0.918,0.941,1.004,1.114,1.123,1.004,0.889,0.962,0.983,0.919,0.835,0.958,1.067,1.025,0.909,0.917,0.89,1.042,1.033,0.944,1.182,1.165,1.007,0.849,1.299,1.366,1.006,1.025,1.001,1.024,1.64,1.051,1.102,0.892,0.944,0.939,0.972,1.33,0.885,1.102,0.914,0.802,1.431 +NM_206831,0.769,0.726,0.985,0.759,1.053,0.987,0.836,0.712,1.013,1.152,1.077,0.857,0.797,0.758,1.193,2.109,1.055,1.1,1.348,0.745,0.739,0.721,1.169,1.254,0.575,0.734,1.012,0.944,0.538,1.001,1.211,0.733,1.401,1.048,0.637,1.26,1.166,0.841,1.275,0.921,1.026,0.873,0.732,1.096,1.133,1.055,1.118,0.832,1.213,0.914,0.924,0.999,1.182,1.676 +NM_206832,0.937,0.846,0.945,1.216,0.881,1.007,1.147,0.888,1.01,0.922,1.049,0.994,1.055,1.095,1.272,0.975,1.047,0.839,1.174,1.194,1.086,0.981,0.865,1.014,1.042,0.891,0.878,1.004,1.019,1.036,0.998,1.048,0.984,0.911,0.944,0.905,1.075,0.989,0.923,0.894,0.892,1.061,0.974,1.081,1.1,0.897,1.337,0.98,0.931,0.899,0.895,1.028,1.05,1.167 +NM_206834,1.075,0.984,0.878,1.001,0.947,0.966,0.987,1.0,1.069,0.993,1.108,1.069,1.015,1.048,0.812,1.005,0.97,1.074,0.952,1.03,1.052,0.84,1.054,1.107,0.953,1.143,1.009,0.983,1.162,0.945,1.071,1.081,0.953,0.862,1.033,1.108,1.101,1.052,0.97,0.954,1.053,0.952,0.921,0.777,0.996,1.091,0.967,1.021,1.076,1.106,0.991,1.071,1.256,0.972 +NM_206836,0.995,0.889,0.939,0.955,1.038,0.973,0.998,1.019,0.964,1.101,0.996,1.097,0.898,1.256,0.797,1.005,1.095,0.944,1.063,0.958,1.015,1.082,0.879,1.009,1.099,0.91,0.954,1.109,1.185,1.118,0.958,0.929,0.946,1.018,1.267,1.036,1.002,0.887,0.812,0.913,0.888,1.079,0.946,1.106,0.924,1.121,1.047,1.095,1.02,1.058,0.836,0.901,0.958,1.016 +NM_206837,0.928,0.92,0.968,0.964,1.071,0.945,0.916,1.117,1.204,0.904,0.986,0.983,0.776,0.773,0.935,1.174,0.935,1.013,1.14,1.02,0.758,0.958,1.418,0.927,0.803,1.029,1.031,0.922,0.793,1.027,0.948,1.972,1.392,1.114,0.811,0.888,1.056,0.929,0.928,0.777,1.043,0.932,0.752,1.074,0.999,1.504,1.0,0.95,1.03,0.977,0.919,1.028,1.251,1.171 +NM_206839,0.876,1.048,1.1,1.038,1.102,1.075,1.012,0.834,0.994,0.887,1.038,0.99,1.017,0.991,0.981,1.374,0.907,1.038,1.106,0.945,0.885,0.881,1.021,0.99,0.947,0.781,0.943,0.963,1.053,1.112,0.918,0.946,1.016,0.979,0.958,0.957,0.957,1.155,1.125,0.892,0.825,0.925,0.834,0.982,0.834,0.858,1.027,0.982,1.05,0.836,0.959,0.861,1.105,1.038 +XM_013127,0.755,0.812,1.203,0.782,0.95,1.022,0.454,0.635,1.212,1.122,1.078,1.21,0.957,0.54,0.757,1.445,0.89,1.125,1.486,0.921,0.684,0.925,1.456,1.018,0.529,1.117,1.306,0.9,0.324,1.204,0.772,0.865,1.266,1.19,0.152,1.308,0.94,1.201,1.33,0.58,1.038,1.091,0.468,0.932,1.015,0.769,0.897,0.992,1.108,0.962,0.989,0.938,1.039,1.356 +XM_016909,0.998,0.996,0.833,1.154,0.935,0.877,0.768,0.913,0.781,1.035,1.103,0.965,1.104,1.01,1.309,1.107,1.029,1.019,1.401,0.814,0.919,0.87,1.017,1.029,0.99,0.987,1.002,0.974,0.934,1.053,0.966,1.13,1.515,1.016,0.943,1.14,0.946,0.902,1.076,0.909,0.982,1.005,1.512,1.097,1.052,0.917,0.891,0.994,0.865,0.957,0.962,0.992,0.969,1.212 +XM_018487,0.988,1.086,1.047,1.186,1.054,0.945,0.905,0.999,0.956,1.039,1.117,1.031,0.955,0.992,0.931,1.075,0.944,0.959,0.99,1.133,1.071,1.001,1.002,0.998,0.956,1.011,0.903,0.971,0.836,1.01,0.876,0.879,1.139,0.877,1.05,1.012,0.981,0.955,0.96,1.063,1.012,0.915,1.009,1.142,0.846,0.974,0.882,0.996,1.167,0.992,0.928,1.095,1.184,0.937 +XM_026998,0.796,0.603,1.796,0.719,0.932,0.911,0.604,0.508,1.619,1.985,0.839,0.634,0.763,0.828,1.073,0.952,0.864,1.141,1.1,0.999,0.768,0.909,0.676,1.391,0.408,0.986,2.003,0.943,0.391,1.126,1.253,1.659,1.367,1.046,0.221,0.813,0.775,0.88,1.442,0.766,1.466,0.889,1.145,0.992,1.516,0.994,1.228,0.854,0.669,0.943,1.018,1.23,1.611,1.434 +XM_027012,1.084,0.959,0.925,1.003,0.915,1.061,1.007,0.923,0.918,0.884,0.973,0.859,1.045,1.044,0.969,1.039,1.044,0.951,0.948,0.961,0.95,1.044,0.998,1.094,0.932,0.977,0.897,0.891,1.015,0.874,1.033,1.26,1.161,1.164,0.95,0.962,1.022,1.12,1.018,1.041,1.07,1.106,0.968,0.996,1.008,0.921,0.898,0.925,0.985,1.097,1.064,0.887,0.959,1.079 +XM_027045,1.034,1.122,0.888,1.001,1.031,1.024,1.029,0.99,1.098,1.139,0.998,1.107,1.008,1.102,0.894,1.037,0.951,1.062,1.129,0.967,0.954,1.088,1.119,0.926,0.942,0.812,0.996,1.231,1.13,1.127,0.986,1.001,1.0,0.909,1.066,0.95,1.036,1.04,1.05,1.043,0.923,0.933,1.12,1.007,1.164,0.956,1.028,1.183,1.177,1.064,1.035,0.819,1.045,0.946 +XM_027074,0.931,0.946,1.054,0.969,0.863,1.115,1.001,0.905,1.009,0.935,1.053,0.931,0.932,0.776,0.89,1.261,0.918,0.929,0.978,1.247,0.903,0.982,1.134,0.911,0.961,0.871,0.916,0.867,0.804,1.227,0.912,1.721,1.404,1.259,0.826,0.92,1.072,0.865,0.999,1.034,1.123,1.134,0.844,0.912,0.86,0.996,0.99,0.816,1.032,0.999,1.047,0.976,0.821,1.743 +XM_027105,0.779,1.047,1.281,0.811,0.715,1.535,0.742,0.487,0.794,0.709,1.571,0.648,0.578,0.737,1.36,2.216,0.96,1.014,1.01,1.262,0.562,0.698,1.51,0.826,0.837,0.741,1.183,0.728,0.423,1.689,0.934,1.202,0.724,2.148,0.388,0.857,1.385,0.79,1.583,1.027,0.862,1.519,0.866,0.789,0.835,1.144,0.819,0.658,1.072,0.835,1.844,0.558,0.896,0.925 +XM_027162,0.885,1.025,0.944,0.949,0.902,1.066,1.019,0.893,1.012,1.027,1.035,0.926,1.027,0.938,0.842,0.995,1.099,0.903,1.055,1.069,1.136,0.96,0.922,0.89,1.061,0.98,1.11,0.998,0.888,1.017,1.163,0.969,1.068,0.949,1.032,0.973,0.909,1.017,0.958,0.98,0.908,0.927,0.837,0.935,1.184,0.966,1.022,0.936,1.15,0.853,1.014,0.828,1.05,1.025 +XM_027172,0.816,1.096,0.921,1.199,0.936,1.633,0.791,0.684,0.881,1.02,1.708,0.643,0.629,0.615,1.204,1.814,0.807,1.277,1.077,1.295,0.765,0.828,1.796,0.903,0.978,0.836,0.846,0.913,0.827,1.451,0.842,0.772,0.771,1.781,0.716,0.745,1.304,0.719,1.577,0.841,0.857,1.375,1.053,1.102,0.954,1.511,0.858,0.706,1.22,0.863,1.391,0.945,0.979,1.082 +XM_027236,2.257,0.776,1.657,0.964,2.192,0.806,0.928,1.299,2.22,1.213,0.798,1.4,1.541,2.035,1.349,1.033,1.849,1.169,1.63,0.81,1.447,1.096,0.799,1.357,0.851,2.352,1.706,2.369,0.745,0.88,2.451,0.876,1.097,0.867,4.169,0.846,0.937,1.67,0.869,0.896,2.009,0.871,0.954,0.916,1.473,0.831,1.398,1.803,0.818,1.506,1.006,0.881,1.263,0.853 +XM_027237,2.18,0.646,1.534,1.045,1.735,0.958,0.518,1.286,2.505,1.69,0.796,0.924,1.278,1.343,1.348,0.868,1.845,1.233,2.398,0.739,1.549,2.077,0.868,1.575,0.697,1.951,1.686,1.687,0.665,0.967,2.032,0.884,1.07,0.755,5.544,0.809,0.664,2.453,1.049,0.768,2.173,0.804,0.695,1.268,1.706,0.658,1.292,2.382,0.85,2.344,0.861,0.753,1.299,0.982 +XM_027307,0.955,0.976,1.122,0.985,0.994,0.996,0.86,0.971,1.209,1.071,0.887,0.956,0.824,1.071,0.984,1.146,1.024,0.974,1.102,1.008,0.936,0.844,1.073,0.939,0.802,0.918,1.015,0.904,0.914,1.066,1.187,1.441,1.014,1.135,0.774,0.782,0.942,0.82,1.076,0.901,1.014,0.911,0.917,1.06,0.948,1.106,1.039,0.909,0.996,1.063,0.977,1.004,0.929,1.037 +XM_027330,0.706,1.054,1.315,0.697,0.853,1.125,0.763,0.58,1.273,0.962,0.703,1.042,0.693,0.541,0.894,1.388,0.783,0.901,0.895,1.314,0.472,1.129,1.453,1.228,0.597,0.659,1.466,0.95,0.558,0.844,1.094,1.097,1.838,1.18,0.347,0.758,1.066,0.968,1.388,1.166,1.109,1.132,0.601,0.849,1.186,1.022,0.881,0.767,1.249,0.94,1.182,0.849,0.595,1.976 +XM_027396,0.952,1.04,0.899,1.058,0.963,0.991,1.259,1.052,1.027,0.978,0.981,0.815,0.942,0.955,0.883,0.892,0.969,1.033,1.077,1.172,1.054,1.008,1.038,1.008,0.969,1.039,0.9,0.868,1.171,1.11,0.965,3.189,0.92,1.086,1.031,1.121,0.952,0.89,1.128,0.853,0.975,0.983,1.037,1.058,1.082,0.981,0.971,0.881,0.966,0.877,1.053,1.147,1.03,1.025 +XM_027658,1.048,1.138,1.091,0.954,0.891,0.907,0.998,0.93,1.096,0.996,0.945,1.017,0.979,1.086,1.056,1.027,0.823,1.071,1.018,1.052,0.998,0.887,1.194,1.088,0.898,0.884,0.974,0.953,0.852,0.984,0.984,4.344,1.239,1.096,0.962,1.143,0.939,0.942,0.947,1.331,0.964,0.822,0.958,1.009,0.966,1.024,1.068,0.94,0.923,0.919,1.116,1.007,1.023,1.055 +XM_027915,0.962,0.904,0.923,1.043,0.919,0.992,0.969,1.13,1.102,0.931,0.915,1.137,1.143,0.972,1.047,1.006,1.003,0.98,1.175,0.904,1.057,0.909,0.935,1.004,1.09,1.142,0.985,0.935,0.949,1.067,0.981,0.943,0.968,0.897,0.987,0.923,1.09,1.044,0.926,1.102,1.018,1.071,0.915,1.09,1.034,1.001,0.992,1.073,0.893,0.969,1.062,1.205,0.9,0.852 +XM_028067,0.746,0.796,1.648,0.663,1.038,0.912,0.846,0.574,0.988,1.385,0.617,0.839,0.737,0.542,0.803,1.017,1.602,1.397,1.154,0.711,0.658,0.896,1.297,1.112,0.686,1.001,1.115,0.978,0.48,1.159,0.961,1.123,0.585,0.714,0.449,1.077,0.886,1.304,1.549,2.3,1.807,0.957,1.41,1.322,1.826,1.132,1.133,0.614,1.063,1.203,0.878,1.046,1.714,0.612 +XM_028217,0.991,1.275,0.99,1.004,0.921,1.044,1.21,0.993,0.979,0.874,1.023,0.882,1.077,0.896,0.981,0.93,0.957,0.872,1.059,1.016,0.911,0.851,1.212,0.861,1.025,0.936,1.039,0.914,1.038,1.031,0.92,1.154,1.064,1.008,1.083,1.175,0.957,0.836,1.131,0.83,0.957,0.994,1.429,1.246,0.934,0.889,1.028,0.828,0.86,0.959,1.051,0.874,0.953,0.877 +XM_028253,1.146,1.012,1.11,0.939,0.986,1.21,0.898,1.2,0.994,0.816,1.017,0.895,0.902,0.985,0.958,0.848,0.933,0.921,1.147,1.047,1.166,0.906,0.986,1.091,1.039,1.033,0.941,0.974,0.944,1.096,1.064,1.112,1.048,0.861,1.084,1.152,1.123,1.058,1.007,0.933,0.877,1.113,1.676,0.916,0.923,0.943,0.95,0.779,1.033,1.069,0.96,1.161,0.956,0.978 +XM_028395,1.133,1.11,1.021,1.039,0.917,0.92,0.812,1.185,0.952,0.895,0.869,1.028,1.011,0.758,0.782,0.967,0.974,1.037,0.964,1.062,1.045,0.889,1.02,1.047,0.982,0.984,1.02,1.002,1.003,1.001,0.962,0.888,0.948,1.224,0.946,0.983,0.98,0.978,0.98,1.048,0.999,0.903,1.08,1.079,1.042,1.009,1.036,1.063,0.903,0.94,1.015,1.038,0.991,0.826 +XM_028522,0.915,0.922,1.077,0.976,1.016,0.872,0.913,1.101,0.76,0.964,0.955,0.908,1.123,0.982,1.033,0.846,0.903,1.148,1.096,1.107,0.996,1.082,0.876,1.044,0.948,1.107,1.101,0.929,1.029,1.157,1.01,1.01,0.918,1.045,0.896,1.081,0.926,0.953,0.823,1.063,0.913,1.057,0.883,0.917,0.934,0.789,0.841,1.063,0.915,0.88,0.914,1.002,1.002,0.923 +XM_028834,1.064,1.069,0.815,1.007,1.064,0.997,0.938,0.951,1.067,0.942,0.856,0.935,0.952,1.096,0.92,1.006,0.937,0.942,1.003,1.081,0.982,0.998,1.003,0.987,1.002,0.883,0.804,1.063,1.088,0.888,1.044,0.859,0.973,1.08,1.023,1.335,0.972,0.883,0.915,1.021,0.957,0.91,1.14,1.022,1.147,1.169,1.034,1.125,0.941,1.108,1.008,1.156,0.968,0.985 +XM_028966,1.3,0.847,1.198,0.971,1.602,0.879,0.738,1.406,1.245,0.965,0.893,1.095,1.416,1.072,1.035,1.079,1.267,1.138,1.275,0.876,1.146,1.44,0.8,1.182,0.799,1.703,0.871,1.406,0.684,0.914,1.383,0.887,1.09,0.84,2.823,0.849,0.857,1.347,1.0,0.879,1.154,0.92,0.723,1.138,1.144,0.756,0.997,2.185,0.974,1.436,0.812,1.017,1.25,0.896 +XM_029046,0.764,1.228,1.244,0.665,0.859,1.007,0.702,0.66,0.906,0.632,0.806,0.764,0.668,0.851,1.115,0.928,0.894,0.895,1.003,1.394,0.654,0.937,1.162,0.753,0.787,0.833,1.398,0.937,0.362,1.279,0.943,1.907,1.254,1.394,0.709,0.711,1.131,1.209,1.044,1.211,1.054,1.224,0.495,0.914,0.736,1.053,0.865,0.758,0.69,0.904,1.075,0.868,0.795,1.264 +XM_029084,0.749,1.037,1.842,0.792,1.05,0.889,1.18,0.57,1.16,0.857,0.737,0.836,0.835,0.698,0.974,0.669,1.418,0.838,0.796,0.9,0.852,0.814,0.982,1.112,1.076,0.899,2.083,0.958,0.597,1.458,0.866,2.029,0.785,1.156,0.582,0.685,0.908,0.865,1.233,1.386,1.259,1.413,0.798,0.864,1.195,0.705,0.948,0.792,0.819,0.792,0.901,1.221,1.134,2.261 +XM_029101,0.695,0.915,1.383,0.547,0.79,0.888,0.632,0.448,1.178,1.014,1.02,0.734,0.555,0.765,1.149,1.189,0.775,0.815,1.002,1.111,0.557,0.81,1.348,0.956,0.586,0.654,1.377,0.77,0.586,1.169,0.748,1.822,3.431,1.198,0.259,1.286,1.026,0.885,0.996,1.286,1.034,0.982,1.019,1.428,0.987,0.924,0.899,0.684,0.79,0.773,0.973,1.32,0.977,2.62 +XM_029353,0.805,1.228,1.331,0.832,0.632,1.211,0.623,0.38,0.799,0.7,2.182,0.513,0.62,0.746,1.163,2.077,0.717,0.689,0.921,1.441,0.523,0.758,1.75,0.566,0.819,0.916,1.074,0.577,0.532,1.428,0.715,0.976,1.289,1.588,0.346,0.646,1.456,0.817,2.186,1.171,0.775,1.791,1.079,1.578,0.944,1.36,0.708,0.677,1.254,1.137,1.697,0.607,0.717,1.253 +XM_029429,0.872,0.973,1.166,0.997,0.993,1.071,0.933,1.006,1.016,0.881,0.927,1.106,1.005,1.03,0.983,0.957,0.99,0.907,1.126,1.087,1.09,1.123,1.443,1.034,0.881,1.133,1.038,0.948,0.676,1.092,0.976,1.205,1.021,1.097,0.915,0.883,0.937,1.182,0.98,0.899,1.028,0.911,0.842,1.052,0.901,1.172,1.006,0.964,0.978,0.905,1.005,0.998,0.97,1.54 +XM_029438,1.271,0.865,1.235,1.103,0.91,0.992,0.644,0.79,1.658,0.85,0.934,0.719,0.848,1.358,1.244,0.952,1.074,0.77,1.628,0.924,0.655,1.008,0.848,1.249,0.908,1.214,1.22,0.991,0.539,1.131,1.294,2.072,1.127,1.759,0.525,0.469,0.815,0.995,0.833,0.728,0.94,1.219,0.581,0.992,1.01,0.786,0.695,1.084,0.687,1.203,0.897,0.712,1.117,1.938 +XM_029589,1.03,0.979,0.926,1.025,0.959,0.975,0.958,0.901,0.987,0.942,1.095,0.977,1.047,0.969,0.913,1.026,0.949,0.932,1.023,1.024,1.0,1.148,1.037,1.06,0.989,1.029,0.928,0.98,0.895,0.99,1.044,1.053,0.976,0.88,1.122,0.929,0.928,1.032,0.992,0.955,1.111,0.967,0.927,1.027,0.937,1.002,1.114,1.049,1.157,0.978,0.985,0.916,0.886,0.973 +XM_029703,0.323,1.918,0.564,0.636,0.407,1.915,0.934,0.212,0.498,0.439,1.073,0.407,0.277,0.34,0.828,1.435,0.409,1.049,0.485,1.832,0.283,0.413,1.186,0.47,1.044,0.321,0.676,0.364,1.053,2.221,0.477,1.211,0.96,2.882,0.147,0.67,1.593,0.409,1.293,1.021,0.521,1.994,0.732,0.873,0.422,1.533,0.694,0.297,0.975,0.327,1.249,0.655,0.382,1.333 +XM_029741,1.069,0.929,1.033,1.047,0.881,0.939,0.966,1.382,1.022,0.965,0.993,1.106,1.086,0.901,1.457,1.384,0.833,0.886,1.348,0.866,1.003,0.96,0.889,0.947,0.985,1.108,0.98,1.1,0.723,1.039,0.937,1.037,0.988,1.017,0.843,1.096,1.1,0.894,0.901,0.997,0.989,1.053,0.929,0.935,0.968,1.022,1.037,0.925,1.055,1.236,1.029,1.079,1.051,0.915 +XM_029962,1.045,0.88,0.989,1.106,1.099,0.929,1.289,1.049,1.113,0.99,1.007,0.846,1.032,0.872,1.099,0.982,0.989,0.978,0.967,1.171,0.924,0.951,0.934,0.977,1.005,1.048,1.08,1.006,0.968,1.022,0.985,0.949,0.889,0.898,1.191,1.079,0.889,1.033,1.106,1.067,1.004,0.973,0.933,1.005,1.015,1.004,0.984,1.193,1.135,1.218,1.003,1.07,0.933,0.951 +XM_030075,1.022,0.945,0.956,1.106,1.167,0.995,1.001,0.896,0.957,1.039,0.854,0.985,0.961,1.026,0.915,1.164,0.973,1.008,1.042,0.929,0.815,1.027,0.934,0.858,1.172,1.075,0.939,0.859,1.109,0.882,1.196,1.013,1.334,1.06,0.955,1.001,1.089,0.979,0.897,1.024,1.016,0.95,1.074,1.053,0.974,1.149,1.074,1.269,1.019,1.064,0.941,0.979,1.149,0.997 +XM_030300,1.027,0.936,1.098,0.901,0.895,1.029,0.839,0.957,0.92,0.979,1.106,0.984,0.891,0.995,0.839,0.9,0.939,1.059,1.078,0.897,0.984,0.98,0.939,1.064,0.987,1.071,1.021,1.02,0.79,1.082,0.944,1.019,0.951,0.918,0.971,1.024,1.029,1.055,0.832,0.958,1.032,1.069,1.13,1.217,1.06,1.052,1.052,1.011,0.981,0.963,1.1,1.0,1.028,1.011 +XM_030378,1.025,1.072,0.999,0.865,0.984,0.92,0.927,1.07,0.965,0.978,1.005,1.004,0.943,1.055,0.913,0.917,0.952,1.011,0.896,0.945,1.019,0.993,0.968,1.036,1.035,1.04,0.941,1.012,0.9,1.045,1.0,1.359,1.084,1.068,1.011,0.892,1.027,1.166,0.952,0.953,0.934,1.03,1.04,0.89,1.046,1.059,1.021,0.92,0.798,0.898,1.042,0.945,1.01,1.202 +XM_030524,1.085,1.195,1.248,1.065,0.792,0.773,0.812,0.726,1.174,0.821,0.897,0.704,0.731,0.919,1.056,1.043,1.099,0.889,1.208,0.811,0.918,1.252,1.085,0.931,0.9,1.126,1.013,0.982,0.759,1.152,0.882,2.173,1.528,1.315,0.529,1.042,0.831,1.006,1.305,1.029,1.12,1.039,0.76,1.25,0.957,0.832,0.91,0.894,0.889,1.051,0.991,0.981,0.866,1.032 +XM_030559,1.058,0.92,1.072,0.894,1.022,1.046,0.888,1.001,1.068,1.049,1.027,1.062,1.149,1.034,0.835,1.03,0.989,0.938,0.956,1.006,1.117,1.032,0.945,1.049,1.011,0.925,1.056,0.973,0.824,1.036,1.05,0.999,1.044,0.937,1.027,0.992,1.132,0.991,1.002,0.841,1.065,1.022,0.972,0.888,1.042,1.094,0.998,0.926,1.064,0.951,1.091,1.097,1.163,1.094 +XM_030669,1.001,0.952,1.07,0.931,1.081,1.076,0.932,0.922,1.099,1.038,1.032,1.034,0.931,0.898,0.961,1.047,0.923,0.934,0.999,0.973,1.116,0.985,0.936,1.066,1.066,0.99,0.916,0.992,0.771,0.981,0.941,0.977,1.01,1.132,0.995,0.987,1.025,1.057,1.019,1.13,1.102,0.966,0.968,1.051,1.11,0.928,0.996,0.971,0.895,1.009,1.007,0.92,1.023,0.902 +XM_030729,1.069,1.168,0.863,0.847,1.07,0.911,1.049,0.784,0.807,1.003,0.851,0.99,0.966,0.783,0.969,0.952,1.164,0.986,0.897,0.986,0.958,1.068,0.96,0.897,0.931,1.012,1.039,1.037,1.142,0.997,0.997,1.023,1.092,1.028,1.001,0.977,1.021,1.098,0.964,0.982,1.057,1.023,1.055,0.912,1.08,1.035,1.078,1.028,0.895,0.953,1.01,0.999,0.943,1.189 +XM_030838,1.035,0.982,1.038,1.02,0.985,1.071,1.013,0.948,0.956,1.021,0.929,1.017,1.049,1.129,1.173,1.002,1.108,1.046,0.857,1.105,1.17,0.904,0.975,0.984,1.023,1.019,1.132,0.88,0.989,0.936,1.094,0.984,0.943,1.121,1.019,0.988,0.948,1.056,1.067,0.969,0.927,1.03,0.954,0.896,0.88,1.006,1.059,1.018,0.94,1.044,0.986,0.958,0.949,1.018 +XM_030896,0.89,1.175,1.182,0.868,0.946,1.09,0.919,0.75,1.032,0.874,0.939,0.694,0.7,0.947,0.844,1.147,0.952,0.895,0.903,1.081,0.864,0.98,1.222,0.962,0.918,0.843,1.156,1.04,0.62,1.286,1.005,1.093,2.058,1.313,0.718,1.072,0.902,1.055,1.252,1.027,1.052,1.284,0.779,1.151,0.94,0.971,0.954,0.857,0.828,0.817,1.029,0.836,0.815,1.448 +XM_031009,1.036,0.973,1.066,0.974,0.919,1.022,0.929,1.051,1.097,1.239,1.176,0.991,0.886,1.109,0.993,1.032,1.073,1.119,1.023,1.07,0.936,0.963,1.09,0.942,0.982,1.006,1.108,1.001,0.878,0.909,1.026,0.934,0.875,0.896,1.075,1.19,0.961,0.91,0.857,0.997,1.041,0.951,1.084,0.97,1.069,1.016,1.041,0.952,0.956,0.977,1.055,1.001,1.035,0.999 +XM_031104,0.93,0.966,1.069,0.985,0.951,0.901,1.048,0.958,0.884,1.037,0.987,0.829,1.139,1.166,1.049,1.061,0.95,0.909,0.931,0.864,1.127,1.091,1.355,1.012,1.073,0.875,0.975,1.085,1.034,1.024,0.981,0.997,1.155,1.264,1.014,0.992,0.933,0.861,1.177,1.046,0.971,1.102,0.916,0.817,1.0,1.056,1.008,1.022,1.022,0.997,0.986,1.015,1.009,1.079 +XM_031246,1.136,0.97,1.276,1.028,1.133,0.95,0.904,0.932,1.261,1.048,0.868,1.127,1.15,1.069,0.96,1.178,0.999,0.766,0.958,0.857,1.011,1.167,1.009,1.054,0.99,0.899,1.153,1.01,1.068,0.997,1.251,1.981,1.278,1.033,0.832,0.992,0.924,1.169,0.962,0.77,0.986,0.902,0.848,0.922,1.114,1.026,1.104,1.002,0.956,1.101,0.988,0.975,0.895,1.145 +XM_031342,1.75,0.666,1.665,0.737,1.617,0.542,0.486,1.829,1.953,1.376,0.525,1.275,1.368,1.773,1.359,0.721,1.789,1.076,2.304,0.772,0.981,1.369,0.652,1.453,0.491,1.879,1.66,2.128,0.561,0.671,2.303,1.456,1.376,0.636,3.826,0.568,0.474,1.801,0.832,2.128,2.741,0.625,0.512,0.84,1.962,0.473,1.132,1.889,0.598,1.311,0.692,1.42,1.804,1.251 +XM_031357,0.843,0.99,0.998,0.864,1.014,1.063,1.002,0.643,0.754,0.761,1.417,0.848,0.763,1.068,1.159,1.296,0.866,0.836,0.917,1.098,1.019,0.767,1.092,0.932,0.862,0.818,1.236,0.758,0.679,0.923,0.788,1.32,1.634,1.013,0.65,1.105,0.807,0.807,1.467,0.857,0.974,1.287,0.789,1.404,0.953,1.035,1.11,0.735,1.01,1.076,1.191,0.8,1.297,1.837 +XM_031401,1.0,1.04,1.855,1.14,1.277,1.067,0.507,0.627,1.487,1.213,0.964,0.903,0.88,0.976,1.107,1.137,1.103,0.936,1.053,1.055,0.618,0.935,0.788,1.481,0.712,1.075,1.443,0.998,0.388,0.744,1.115,4.825,1.173,1.022,0.736,1.109,0.614,1.4,0.762,1.73,1.084,1.037,0.728,1.201,1.044,1.072,1.0,0.895,0.593,0.782,2.013,0.95,1.085,1.513 +XM_031553,0.921,1.016,1.081,0.874,0.939,0.987,0.816,0.699,1.343,0.906,0.85,0.881,0.659,0.969,0.923,1.055,0.797,0.888,0.807,1.192,0.705,0.975,1.214,0.945,0.636,0.75,1.626,0.892,0.511,1.223,0.953,1.641,1.111,1.105,0.537,1.014,1.115,0.841,1.347,0.899,1.084,1.203,0.73,0.917,1.158,0.953,1.027,0.8,1.096,0.796,1.241,1.274,1.135,1.808 +XM_031561,0.571,1.11,1.138,0.971,0.833,1.367,0.868,0.584,0.962,1.077,0.913,1.206,0.676,0.623,0.883,1.195,0.698,0.951,0.986,0.84,0.563,0.684,2.06,1.453,0.714,0.596,1.917,0.88,0.617,1.087,0.726,1.345,2.011,0.9,0.319,2.157,1.155,0.744,1.9,1.153,1.14,0.914,0.722,1.388,1.08,0.965,1.289,0.548,1.361,0.713,1.394,1.29,0.873,3.936 +XM_031689,0.857,0.92,1.172,0.938,1.048,0.969,1.015,0.787,1.239,0.975,0.937,1.217,0.907,0.863,0.976,0.943,0.831,1.007,1.046,0.926,0.924,1.025,1.192,1.168,0.818,0.952,1.046,1.016,0.766,1.064,1.096,1.281,1.602,1.029,0.887,0.998,0.922,1.061,1.188,1.228,0.875,0.933,0.925,0.974,0.956,0.815,1.025,1.115,0.981,1.017,0.947,0.875,0.84,1.996 +XM_031706,1.039,0.928,1.232,1.125,1.117,0.885,0.999,1.054,1.181,1.068,0.794,0.93,1.023,0.977,1.04,1.014,1.314,0.929,1.065,0.884,1.251,1.076,0.882,0.993,1.029,1.176,1.36,0.947,0.947,0.936,1.092,1.022,1.14,0.823,1.28,1.031,0.871,1.104,1.019,0.842,1.096,0.861,1.012,0.994,1.053,0.854,0.859,1.097,0.922,1.309,0.866,0.992,1.376,1.085 +XM_031744,0.937,1.022,1.034,0.976,1.112,0.998,1.077,0.939,0.995,1.025,1.107,1.13,1.088,0.978,0.875,1.009,1.023,1.066,1.223,1.04,1.129,1.016,0.909,0.954,1.039,0.923,0.989,0.949,0.905,1.058,1.015,1.338,1.179,0.988,0.965,0.96,1.01,0.903,0.944,0.995,1.003,1.195,0.91,0.91,1.024,1.069,1.019,1.002,1.001,1.047,0.965,1.031,0.953,0.993 +XM_031975,0.804,0.983,0.962,1.01,0.991,0.99,0.699,0.823,0.961,1.078,0.97,0.751,0.87,0.792,0.801,1.236,1.114,1.183,1.002,0.878,0.883,0.771,1.099,0.948,0.876,1.03,0.998,0.961,0.641,1.059,1.002,1.033,1.186,1.121,0.767,1.03,1.119,0.891,1.208,1.111,1.013,0.914,0.892,1.546,1.03,0.965,1.077,0.843,1.083,0.954,0.957,0.915,0.926,2.225 +XM_032059,0.99,0.868,1.028,1.049,0.981,1.069,0.878,0.883,1.0,1.14,0.945,1.065,1.018,0.874,0.942,1.153,1.017,0.995,1.144,0.943,0.998,0.926,0.927,0.962,0.877,1.038,1.132,0.956,0.884,0.983,0.938,1.015,0.934,1.032,1.067,1.053,1.154,0.862,1.12,0.943,0.925,1.145,0.972,0.998,1.018,1.01,1.227,1.019,0.979,0.976,0.975,0.963,1.02,0.927 +XM_032166,1.089,1.052,1.069,0.989,1.001,0.887,0.743,0.914,1.022,0.894,0.89,1.083,0.966,1.069,0.841,0.966,1.004,1.042,1.019,1.068,0.904,1.116,1.004,1.05,1.111,1.007,0.969,0.998,0.855,1.015,0.991,1.109,0.929,1.024,1.121,0.972,1.06,1.128,0.989,0.915,1.021,0.996,0.805,0.961,0.973,1.086,1.054,1.036,1.027,0.999,0.948,0.896,0.988,0.963 +XM_032181,1.013,1.171,0.923,1.108,1.053,0.988,0.968,0.812,0.772,1.027,0.897,0.869,0.954,0.782,0.819,1.059,1.006,0.963,1.235,1.061,1.02,1.079,1.15,0.939,1.112,0.911,0.969,0.99,0.913,1.111,0.838,1.449,0.926,1.362,0.959,0.996,1.013,0.927,1.063,1.014,1.229,1.232,0.963,0.953,0.904,0.996,0.942,0.891,0.988,0.874,0.959,1.063,1.024,0.935 +XM_032244,1.065,1.054,0.949,1.058,0.971,0.985,0.837,0.959,1.085,1.069,0.991,0.966,1.058,1.039,0.944,0.972,1.029,0.953,0.941,1.02,1.091,1.017,1.035,0.974,1.007,1.037,0.902,1.015,0.89,1.113,0.955,1.083,1.063,0.905,0.953,0.977,0.959,0.968,0.978,1.002,0.88,1.043,0.848,1.065,1.007,0.933,1.034,1.042,1.027,1.029,1.021,0.912,0.966,0.945 +XM_032249,1.034,0.984,1.053,0.872,0.93,0.85,0.774,1.155,0.953,1.036,1.045,1.08,1.02,0.912,0.824,1.037,0.958,1.052,1.05,0.821,0.874,1.151,1.035,1.093,0.985,1.069,0.925,0.998,1.252,0.873,1.12,0.981,1.018,0.924,1.017,0.986,0.972,1.001,1.066,1.018,1.009,0.972,1.136,0.938,0.917,1.05,1.114,0.907,1.079,1.006,0.906,1.028,0.998,1.053 +XM_032278,0.963,1.012,0.958,1.07,1.056,0.888,0.94,0.91,1.043,1.114,0.968,1.078,1.032,0.994,0.989,0.969,1.053,1.004,0.915,1.05,0.844,0.995,0.87,1.042,1.009,1.019,0.931,1.023,1.392,0.979,0.939,1.087,0.91,1.099,0.95,1.042,0.924,1.022,1.002,1.002,1.08,0.939,1.111,1.044,1.012,0.937,1.057,1.068,0.982,0.911,1.067,0.88,0.927,1.012 +XM_032304,1.001,1.085,1.152,1.075,1.073,1.078,1.102,0.949,0.996,1.012,1.005,0.935,0.915,1.053,0.922,1.144,0.99,0.866,0.945,1.168,0.932,0.999,1.051,0.965,0.9,0.935,1.031,1.062,0.736,0.954,0.945,1.227,1.042,1.024,1.072,1.095,0.913,1.153,0.978,1.039,0.97,0.924,0.899,0.907,0.923,0.944,1.074,0.992,1.034,0.866,1.03,0.965,0.893,0.996 +XM_032397,1.01,0.988,1.034,0.947,0.964,1.048,1.052,0.848,1.131,1.066,0.95,1.028,0.89,1.082,0.846,0.966,0.988,1.208,0.883,1.092,0.936,1.034,1.096,0.932,0.931,1.074,1.058,0.999,0.966,0.958,0.966,1.065,1.177,0.966,1.061,1.093,0.857,0.915,1.038,1.003,0.93,1.043,1.075,1.047,1.079,0.945,1.094,1.107,1.015,1.031,1.045,1.026,1.001,1.033 +XM_032571,1.084,0.97,0.923,0.881,1.082,0.919,0.869,0.736,1.041,0.995,1.05,0.898,0.973,1.205,1.027,0.834,0.996,1.064,0.991,0.981,1.02,1.054,1.049,0.877,1.102,1.001,1.07,0.99,0.908,0.99,0.962,0.952,1.009,1.081,1.083,0.971,1.065,1.022,0.94,1.052,0.882,0.986,0.973,0.929,0.971,1.059,1.027,1.006,0.957,1.091,1.041,1.048,1.029,1.038 +XM_032901,0.858,0.816,1.238,0.487,1.301,1.006,0.63,0.744,1.604,1.611,0.64,0.729,0.55,1.151,1.053,1.055,0.911,0.876,1.018,0.881,0.639,1.066,0.966,1.192,0.404,1.146,1.431,0.994,0.342,1.064,1.826,1.768,2.2,1.102,1.038,0.623,0.664,1.01,1.131,0.83,1.008,0.953,0.735,1.029,0.979,0.731,1.082,1.247,0.836,0.793,0.861,0.936,1.392,2.197 +XM_032996,0.684,0.808,1.152,0.84,0.85,1.122,0.815,1.0,0.964,0.755,1.11,0.827,0.729,0.717,1.194,1.266,1.032,0.85,0.905,1.17,0.893,0.857,1.435,0.909,0.851,0.944,1.099,0.826,0.758,1.076,0.876,1.113,1.321,1.051,0.694,0.76,1.062,0.992,1.333,1.172,1.086,1.162,0.908,0.915,0.885,1.065,1.107,0.768,0.997,0.983,1.325,1.0,1.008,1.253 +XM_033113,0.957,1.153,0.998,0.826,1.15,1.181,0.938,0.859,0.914,1.004,1.017,0.985,0.916,0.872,0.836,0.904,0.977,0.806,1.019,0.907,0.83,1.057,1.022,0.938,1.098,1.02,0.933,1.125,0.717,1.166,0.947,0.924,0.824,1.235,0.865,1.086,1.071,1.165,1.085,1.029,0.897,1.066,0.845,1.004,1.039,0.908,0.96,1.259,0.948,1.075,1.003,0.839,0.938,1.102 +XM_033173,0.811,0.911,0.87,1.088,0.726,1.089,1.128,0.967,1.085,0.947,1.0,1.062,1.096,0.793,0.973,1.121,0.997,1.09,0.862,1.118,0.998,0.989,1.097,1.041,1.064,1.024,0.98,0.969,1.0,1.201,0.923,1.305,1.053,1.119,1.016,0.91,0.885,1.074,0.943,0.954,1.073,1.255,0.921,0.856,0.901,1.164,0.983,0.943,0.93,1.117,0.896,1.065,0.988,0.93 +XM_033352,1.074,0.949,0.961,1.033,1.001,1.053,1.006,1.002,1.012,1.081,0.943,1.058,1.103,1.086,0.829,1.064,0.955,1.07,0.789,0.994,1.003,1.03,1.024,1.039,0.983,0.999,0.916,0.986,1.14,1.048,0.963,1.029,1.136,0.978,1.048,0.973,1.068,0.928,1.033,0.876,0.966,1.016,0.865,0.932,0.97,0.982,0.918,0.903,0.996,1.024,0.985,1.048,1.013,1.052 +XM_033370,0.957,1.103,1.016,0.956,0.953,1.129,0.913,1.081,0.925,1.05,1.082,0.988,0.989,1.004,0.793,1.037,0.979,0.924,0.89,1.056,1.024,0.94,1.163,1.012,0.914,0.976,0.921,0.887,0.968,1.03,1.002,1.028,1.158,1.116,0.871,1.002,1.069,1.044,1.035,0.987,1.028,0.998,0.855,0.902,0.96,0.963,1.027,0.959,0.969,0.997,1.021,0.871,0.991,0.989 +XM_033371,0.62,1.061,1.187,0.743,0.848,0.9,0.632,0.461,1.133,1.052,0.798,0.666,0.656,0.63,0.885,1.528,0.905,0.826,1.097,0.995,0.633,0.986,1.17,1.133,0.596,0.768,1.461,0.795,0.458,1.145,0.979,1.388,2.049,1.529,0.301,0.964,1.018,1.028,1.243,0.722,1.238,1.149,0.637,1.46,0.974,0.871,1.206,0.728,1.069,0.729,0.94,0.756,0.775,2.215 +XM_033704,0.853,0.944,1.092,1.007,1.093,1.158,1.084,1.075,0.975,0.933,0.958,1.05,0.93,1.195,1.289,0.976,1.056,0.99,0.927,1.176,0.985,0.941,0.985,0.987,0.887,0.91,1.008,1.101,1.251,0.926,1.081,1.036,1.02,0.875,1.211,0.997,0.916,1.039,0.855,1.082,1.003,0.808,0.928,0.882,1.144,0.931,1.022,0.833,0.859,0.948,1.16,0.788,1.013,0.884 +XM_033853,0.964,1.119,1.096,1.118,0.927,1.548,1.067,0.891,1.065,0.949,1.161,0.994,1.016,0.966,0.946,1.399,0.923,1.195,0.962,1.237,0.857,1.058,1.08,1.082,0.911,0.954,1.15,0.985,1.156,1.676,0.854,1.081,1.316,1.677,0.842,0.917,0.918,0.961,1.178,0.787,1.043,1.173,0.722,0.862,0.855,0.917,0.939,0.933,0.774,0.899,1.158,0.957,0.86,1.181 +XM_033868,0.938,0.972,1.028,0.952,0.948,0.909,1.051,0.824,0.915,1.025,0.988,0.841,0.933,0.966,0.889,1.077,0.977,0.954,0.847,0.998,1.002,0.85,0.96,1.132,0.944,0.926,1.564,0.91,0.806,0.96,1.037,1.917,1.315,1.05,0.938,0.992,0.865,1.039,1.083,1.178,1.139,1.085,0.729,0.906,1.054,0.892,1.126,0.923,0.828,1.031,1.106,1.065,1.084,1.22 +XM_034000,0.939,1.097,0.947,0.86,0.88,0.913,1.006,0.937,0.952,0.88,1.071,0.79,0.907,0.83,0.93,0.996,0.881,1.009,0.782,0.88,1.006,0.885,1.054,0.881,1.07,0.794,1.032,0.895,0.736,1.11,0.912,3.436,1.076,1.045,1.07,1.099,0.982,0.878,1.163,1.815,0.925,1.053,0.967,1.174,0.841,1.101,0.8,0.839,0.716,0.989,0.968,1.88,1.052,1.267 +XM_034086,0.877,0.902,0.952,1.034,0.836,1.07,0.947,1.003,1.004,1.002,1.129,1.004,1.021,1.088,0.824,0.959,0.914,0.839,0.929,1.017,1.01,0.96,0.994,1.027,1.06,0.789,1.033,0.792,0.839,1.069,0.87,0.98,1.312,1.1,0.877,0.954,1.085,1.042,1.014,0.921,0.897,1.005,0.924,1.031,0.964,1.123,0.82,0.993,0.928,0.911,0.881,0.99,1.016,1.209 +XM_034127,1.021,1.042,1.017,0.901,1.065,1.049,1.237,1.033,0.969,0.866,0.998,0.995,1.049,0.967,0.939,1.128,1.012,1.104,1.14,1.055,1.014,0.935,0.97,1.032,1.055,0.996,0.93,0.915,0.822,0.911,0.976,0.919,0.922,0.946,1.004,0.984,1.011,1.007,0.939,1.015,1.034,0.957,0.962,0.988,0.962,0.995,1.071,1.019,0.913,1.007,0.84,1.136,0.967,1.057 +XM_034128,1.091,0.961,1.005,1.038,0.928,0.991,1.034,1.052,0.929,1.081,0.857,1.011,1.018,0.855,1.071,1.06,1.048,0.878,1.02,0.9,0.951,1.122,1.069,1.073,1.053,1.023,1.06,1.051,1.036,0.997,0.982,0.983,0.933,0.991,1.081,1.012,0.992,1.004,1.061,1.093,1.018,0.913,0.939,1.074,1.036,0.993,0.89,0.941,1.07,0.88,0.964,1.068,1.031,0.901 +XM_034274,0.942,0.978,0.995,1.097,0.888,0.956,0.907,1.125,0.913,0.994,1.09,1.001,1.032,1.183,1.031,0.973,1.013,1.006,1.013,0.938,0.968,0.989,0.969,1.043,1.001,1.0,0.907,0.922,1.072,1.011,1.027,1.004,1.318,0.947,1.005,0.891,1.101,1.011,0.968,1.046,1.12,1.01,0.933,0.863,1.058,1.141,0.974,1.02,0.997,1.089,0.92,0.914,0.976,1.128 +XM_034427,0.995,1.02,1.063,0.899,1.035,0.877,1.153,0.906,1.102,0.959,0.935,0.964,0.82,1.014,1.094,0.958,1.006,0.963,1.053,0.918,0.85,1.041,0.976,1.066,1.031,1.063,1.155,1.102,0.807,1.064,1.033,1.143,1.147,0.879,0.784,0.994,0.983,1.052,1.022,1.007,1.023,0.942,1.004,1.075,1.0,0.995,0.949,1.058,0.766,1.016,1.021,0.994,0.971,1.098 +XM_034570,0.921,0.962,1.173,0.865,0.862,1.12,0.921,0.892,1.024,1.072,0.893,0.974,0.792,1.001,1.137,1.06,1.052,0.987,0.976,0.965,0.995,0.82,0.968,1.052,0.948,1.093,1.062,1.095,0.83,0.946,0.982,1.459,1.122,0.885,0.833,0.918,0.834,0.895,1.039,1.177,1.054,1.013,0.873,1.064,1.156,0.932,0.918,0.925,0.951,1.044,0.94,0.791,1.017,1.118 +XM_034594,0.844,0.976,1.111,0.831,1.02,1.083,0.862,1.08,1.213,1.128,0.86,1.016,0.969,1.006,1.015,1.11,0.998,0.919,0.942,0.936,0.927,1.233,1.118,1.145,0.804,0.763,1.555,1.006,1.163,0.961,1.23,1.263,2.097,0.958,0.933,0.792,1.019,1.251,1.104,1.174,0.817,1.007,1.001,0.752,1.162,0.861,0.994,1.157,1.078,1.005,0.999,0.857,1.024,1.535 +XM_034640,0.71,1.012,2.857,0.426,1.3,1.817,0.744,1.691,1.784,0.988,0.703,1.388,1.699,0.654,1.764,2.486,1.624,0.895,0.613,0.934,0.244,1.983,1.781,2.692,0.471,0.266,3.661,1.016,0.286,1.116,2.71,1.396,2.831,1.185,0.312,0.258,0.8,3.968,2.548,0.615,1.352,1.277,0.414,0.276,1.401,0.739,1.415,0.97,1.593,0.973,1.545,0.567,0.293,1.733 +XM_034819,1.155,1.029,0.955,1.098,0.978,1.05,0.966,1.041,0.984,1.073,1.121,0.986,0.92,0.968,1.374,1.171,0.953,1.031,0.907,0.941,1.026,0.9,0.997,1.008,1.092,0.875,0.942,1.043,1.093,1.09,1.12,0.963,0.949,1.048,0.936,1.063,1.08,0.967,0.976,0.879,1.164,1.006,0.948,0.898,0.91,0.943,1.116,1.171,1.015,1.015,0.987,1.029,0.992,1.048 +XM_034823,0.938,0.974,1.132,1.03,1.127,1.097,0.893,0.823,0.914,0.986,1.019,0.887,0.978,1.043,0.973,1.059,0.888,1.033,0.988,1.092,1.11,1.004,0.978,1.17,0.84,0.901,0.904,1.12,1.265,1.014,1.058,0.941,0.994,0.994,1.043,0.927,1.015,0.845,0.956,1.044,1.107,1.194,1.094,1.104,1.056,1.016,1.007,0.971,1.121,0.885,0.919,0.749,1.037,0.885 +XM_034872,0.924,0.942,0.934,0.981,0.878,1.13,1.006,1.018,0.939,0.906,0.899,0.966,0.88,0.995,0.851,1.364,0.878,0.898,0.967,1.023,1.008,0.87,1.185,0.987,0.92,0.924,1.04,0.94,0.91,1.202,1.031,1.251,0.946,1.177,0.939,1.051,1.128,1.039,1.088,1.033,0.981,1.219,0.906,0.961,0.922,0.997,0.877,0.968,0.99,0.924,1.113,0.963,0.919,0.845 +XM_034904,1.054,1.127,1.223,1.046,1.0,1.067,0.965,0.939,0.916,0.842,1.185,0.992,0.869,0.928,0.932,1.225,1.106,1.04,0.863,0.879,0.934,0.945,0.82,1.011,0.962,1.086,1.168,1.271,1.365,1.095,0.983,0.998,1.017,1.047,0.984,0.872,0.972,1.315,0.949,0.793,0.819,1.0,0.765,1.094,1.103,1.106,0.883,1.072,0.989,1.121,1.036,0.881,1.148,1.122 +XM_035037,1.132,0.959,0.999,1.134,0.967,0.962,0.966,1.25,0.963,0.859,1.068,1.198,1.042,0.864,0.895,1.076,0.917,0.977,1.017,1.002,1.038,1.026,0.863,1.021,1.012,1.022,1.219,0.979,0.766,1.035,0.848,0.974,1.016,0.924,0.853,0.919,1.008,0.993,0.992,0.985,0.938,1.026,1.026,0.981,1.065,0.978,1.09,1.096,1.012,1.004,1.167,0.839,0.879,1.036 +XM_035299,1.209,0.926,0.956,1.038,1.117,1.001,1.202,0.866,1.238,0.894,0.951,1.094,0.962,0.9,1.003,1.006,0.909,0.805,0.773,1.065,0.873,0.841,1.095,0.882,0.867,0.968,0.95,1.068,0.879,0.94,0.999,1.092,1.191,0.954,1.038,0.886,0.989,1.244,1.259,1.083,0.954,1.152,1.005,0.85,0.897,1.089,0.955,0.949,1.067,1.101,0.949,1.018,1.046,0.91 +XM_035313,0.722,0.782,1.223,0.813,0.893,1.106,0.718,0.826,1.12,0.817,1.301,0.978,0.733,0.642,1.157,1.719,0.749,0.975,0.963,1.247,0.433,1.027,1.362,0.961,0.601,0.792,1.507,0.809,0.58,1.108,0.87,1.077,1.139,1.136,0.715,1.203,1.347,1.018,1.006,1.295,0.781,1.26,0.913,0.736,0.884,1.016,0.869,0.761,1.33,0.865,1.067,1.241,0.899,1.446 +XM_035405,0.949,0.959,0.975,0.946,0.946,1.053,0.965,1.043,1.025,0.979,1.036,1.059,0.981,1.089,1.226,1.088,1.069,0.98,1.043,1.03,0.911,0.966,1.033,0.888,1.191,0.977,1.0,0.845,0.923,1.081,1.053,1.188,0.725,0.994,0.841,0.985,0.974,1.139,0.958,1.0,1.031,1.011,0.994,0.928,0.895,1.025,0.994,1.031,0.986,1.113,1.152,0.927,0.949,0.946 +XM_035497,0.971,0.872,0.934,1.003,0.958,1.066,1.112,1.062,0.927,1.048,0.883,0.923,0.978,0.802,1.259,1.083,1.033,0.999,0.836,0.964,1.234,1.012,0.953,1.026,0.878,1.013,1.134,0.874,0.93,1.027,0.813,0.969,0.805,1.036,0.917,0.972,1.001,1.054,1.002,1.005,0.989,0.92,1.077,0.881,0.911,0.962,1.009,0.943,1.195,0.932,0.896,0.96,1.025,0.891 +XM_035527,2.581,0.909,2.448,1.01,3.863,0.821,0.706,2.026,5.533,0.983,0.785,1.29,1.647,1.153,1.959,1.352,2.199,1.81,3.564,0.904,1.037,2.209,1.009,1.312,0.753,2.129,2.942,2.374,0.521,0.874,2.635,0.776,1.755,0.86,6.788,0.539,0.868,3.519,0.999,0.597,2.142,0.769,0.671,0.626,1.904,0.903,1.474,3.03,0.842,2.028,0.931,0.939,1.778,1.209 +XM_035572,0.634,0.862,1.165,0.59,0.929,0.786,0.496,0.448,1.224,1.338,0.816,1.061,0.508,0.737,0.892,1.149,0.804,0.639,1.099,0.873,0.623,0.808,1.361,1.286,0.443,0.709,0.966,0.806,0.397,1.008,0.933,1.093,2.157,1.052,0.217,1.002,0.859,1.042,1.164,1.246,1.165,1.065,0.82,1.128,1.157,1.02,1.069,0.651,1.345,0.777,1.02,0.911,1.307,1.758 +XM_035622,1.056,0.993,1.007,0.966,0.913,0.985,0.951,1.012,0.923,0.907,1.037,0.96,1.003,1.108,0.824,0.969,0.949,1.076,1.135,1.037,1.059,0.968,1.147,0.973,1.084,0.996,1.148,1.086,1.247,0.948,1.051,0.968,0.974,0.938,1.245,0.914,0.857,0.947,0.999,0.983,0.923,1.013,0.851,1.029,1.069,0.899,1.007,0.975,1.058,1.077,0.941,0.973,1.026,1.002 +XM_035825,0.571,1.07,1.053,0.803,0.777,1.129,0.784,0.475,1.074,0.849,1.062,0.809,0.562,0.549,0.919,1.724,0.722,0.969,1.016,1.297,0.565,0.551,1.138,0.841,0.665,0.738,1.103,0.877,0.518,0.744,0.834,1.179,1.688,1.472,0.449,1.67,1.1,0.724,1.508,1.039,0.739,1.301,0.764,1.161,0.992,1.487,0.951,0.587,1.538,0.699,1.07,0.729,0.913,1.15 +XM_035863,1.069,0.908,1.015,0.866,0.967,0.935,0.971,1.021,0.934,1.029,1.008,0.999,1.013,1.002,0.778,0.848,0.899,0.902,1.042,0.956,1.06,0.952,0.866,0.967,1.031,1.023,0.951,0.853,0.698,1.104,0.969,0.977,0.975,1.028,1.099,1.166,0.933,0.992,0.879,0.955,1.076,0.807,1.16,0.918,0.901,1.013,1.179,0.988,1.159,1.059,1.021,0.972,1.24,0.984 +XM_035946,1.024,1.024,0.907,1.024,1.025,0.92,1.05,0.876,1.104,0.961,0.961,1.064,1.032,0.949,0.932,0.929,0.966,1.046,0.88,0.961,1.011,1.086,0.907,0.999,0.976,1.052,1.085,0.964,1.247,1.087,0.942,1.041,0.894,0.993,1.162,0.96,0.936,1.147,0.969,1.062,0.933,0.914,1.01,1.001,1.03,1.22,1.02,1.026,0.932,1.029,0.911,0.847,1.06,0.947 +XM_035953,0.982,0.918,0.894,1.073,0.937,0.937,0.794,0.914,0.999,1.084,0.891,1.127,1.036,1.075,0.982,1.041,0.972,0.952,0.958,1.053,1.052,0.986,0.893,0.974,1.166,0.932,1.054,1.089,0.724,1.013,0.958,0.97,0.987,1.017,1.073,0.927,1.032,0.887,0.861,1.0,1.058,1.006,0.907,1.014,1.013,1.182,1.066,0.946,0.986,1.082,0.933,1.181,0.968,0.943 +XM_036115,0.811,0.983,1.611,0.916,1.248,0.85,0.731,0.686,1.613,1.099,0.796,0.931,0.748,0.958,0.951,0.955,1.182,0.94,1.186,1.031,0.833,1.191,1.085,1.203,0.636,1.073,1.432,1.27,0.606,1.04,1.097,1.583,0.923,0.913,0.643,0.827,0.845,1.168,1.044,1.043,1.431,1.103,0.764,1.183,1.247,0.91,1.077,1.084,0.89,0.98,0.967,0.786,1.012,1.278 +XM_036218,1.026,1.166,1.042,1.08,0.917,0.801,0.981,0.962,1.048,0.919,1.18,0.868,1.004,0.902,1.091,1.243,0.942,0.923,1.015,1.0,1.026,0.877,1.144,0.949,0.883,0.942,0.922,1.131,0.919,1.173,1.025,1.145,1.188,1.054,0.944,0.991,0.995,0.971,1.026,1.133,1.181,1.053,0.914,1.111,0.842,1.092,0.962,0.965,0.885,0.96,0.974,1.007,1.109,0.936 +XM_036408,0.795,0.942,1.081,0.727,0.778,1.084,0.538,0.633,1.031,0.8,0.976,0.819,0.746,0.654,0.958,1.58,0.718,0.84,1.124,1.269,0.678,0.823,1.662,0.744,0.804,1.038,0.831,0.923,0.478,0.994,0.898,1.761,1.242,1.353,0.463,0.864,0.812,1.131,1.464,0.888,0.834,1.42,0.723,1.071,0.819,0.957,0.892,0.927,0.85,0.83,1.289,0.775,0.907,3.567 +XM_036448,0.663,3.021,0.637,3.165,0.692,3.425,7.306,0.695,0.714,0.578,0.87,0.598,0.633,0.689,0.967,0.816,0.562,0.995,0.598,3.14,0.65,0.707,2.92,0.675,3.185,0.668,0.663,0.615,0.892,3.35,0.601,0.921,0.796,11.16,0.691,1.186,4.213,0.627,8.729,0.715,0.684,12.33,0.717,0.682,0.552,2.582,1.018,0.591,0.705,0.703,6.679,2.166,0.772,14.74 +XM_036454,1.057,0.973,1.101,0.868,0.956,1.002,0.877,1.022,0.911,0.916,0.975,1.039,1.002,0.981,1.001,0.963,1.073,1.064,0.983,0.862,1.002,1.014,1.051,0.903,1.013,1.068,1.157,0.919,0.9,1.003,0.909,1.544,1.297,1.185,1.057,1.051,1.016,0.996,0.957,1.265,0.945,1.014,1.095,0.992,0.933,0.996,0.979,1.004,0.983,1.005,1.088,1.029,1.009,1.086 +XM_036589,0.918,0.881,1.578,0.657,1.763,0.748,0.511,0.993,1.553,1.101,0.769,1.928,0.797,0.948,0.932,0.977,0.919,1.015,1.296,0.804,0.76,1.137,0.936,1.603,0.709,0.91,1.621,1.246,0.415,0.934,1.178,1.997,1.845,1.053,0.658,0.686,0.667,1.232,0.912,1.382,1.242,1.102,0.437,1.024,1.198,0.682,1.375,0.983,0.543,1.094,0.809,1.259,1.152,1.136 +XM_036708,0.96,0.982,1.003,0.982,0.879,1.135,1.205,0.966,1.153,0.928,0.839,1.116,0.988,1.055,1.135,1.069,1.103,0.91,0.893,1.137,0.998,0.943,0.963,1.003,1.0,1.11,0.872,1.186,1.111,1.052,1.01,0.919,0.848,1.088,0.928,1.005,1.061,0.976,1.018,0.787,1.0,1.054,0.882,1.074,1.074,1.04,0.937,0.889,1.023,0.871,1.061,0.952,0.92,1.024 +XM_036740,1.008,1.031,0.964,0.934,0.888,1.002,0.85,1.125,0.936,0.984,1.073,1.043,1.013,1.019,0.872,1.023,1.097,1.062,1.039,0.947,1.143,0.888,0.861,0.926,1.106,0.836,1.005,1.0,1.181,1.091,1.084,1.104,0.912,1.006,0.943,0.963,1.001,0.965,1.168,0.991,0.954,0.912,0.927,1.003,0.823,0.815,0.863,1.101,1.067,0.935,1.053,1.007,0.996,1.128 +XM_036942,0.946,1.254,1.013,0.918,1.033,0.906,1.016,0.941,1.046,0.862,0.892,1.158,0.768,0.897,0.998,1.044,1.005,1.117,1.095,0.887,1.015,0.922,1.054,1.161,0.877,0.873,1.052,1.019,0.777,1.039,1.005,1.433,1.176,0.935,0.959,1.153,1.055,1.079,0.981,1.832,1.076,1.229,0.798,0.846,1.016,1.06,0.955,1.007,0.996,0.969,0.94,1.123,0.93,1.756 +XM_037493,1.128,1.15,1.071,0.86,0.976,0.908,1.072,1.124,1.023,0.978,0.994,1.004,1.028,0.916,0.996,1.137,0.892,1.026,0.984,1.082,1.11,1.065,0.787,0.947,0.959,0.864,1.093,0.939,1.562,1.151,1.058,0.973,0.938,1.086,1.162,1.12,1.026,1.002,1.089,0.954,0.965,0.927,0.928,1.033,1.092,0.936,0.957,0.892,0.867,0.854,0.974,1.027,0.899,0.992 +XM_037523,1.022,0.931,1.43,0.998,1.09,0.847,0.804,0.669,1.181,1.049,1.057,0.877,0.805,1.185,1.053,1.0,1.422,0.947,1.16,0.914,0.94,0.727,0.932,0.863,0.92,1.039,1.295,1.054,0.739,0.947,1.079,1.405,1.372,1.023,0.949,0.778,0.854,0.844,1.159,1.007,1.217,1.114,1.039,0.962,1.303,0.827,1.012,0.939,0.913,1.211,0.956,0.9,0.943,1.155 +XM_037557,0.948,0.972,0.878,0.93,1.049,0.989,1.225,0.971,1.06,1.047,0.975,0.891,1.119,1.052,0.856,1.068,0.894,1.029,0.963,1.132,0.926,0.96,1.226,0.972,1.151,0.845,0.933,1.034,0.924,1.031,0.884,1.047,1.137,1.057,0.89,0.981,0.976,0.883,1.06,0.998,0.897,1.265,0.933,1.275,0.912,1.126,0.933,0.987,1.102,1.008,1.043,0.985,0.997,1.048 +XM_037759,1.047,0.804,1.034,1.013,1.0,1.012,1.035,0.96,1.0,0.925,1.081,1.03,1.112,0.924,1.372,1.035,0.951,1.077,1.004,0.974,1.001,0.952,0.872,0.86,0.934,1.054,1.036,1.179,0.961,0.927,1.009,0.994,0.982,0.905,1.181,1.04,0.958,0.947,0.878,1.082,1.161,1.077,1.325,0.933,0.89,1.03,0.99,1.019,0.967,1.064,1.092,0.899,0.954,1.198 +XM_038063,0.872,1.112,0.888,0.988,0.857,0.899,0.865,0.995,0.97,0.904,0.912,0.954,0.975,1.179,1.016,0.868,0.871,0.832,0.984,0.801,0.977,0.975,0.892,1.093,1.093,1.056,1.232,0.762,0.955,1.14,1.002,1.501,1.136,1.011,0.821,1.153,0.885,0.985,1.284,1.565,0.986,0.954,1.191,1.409,1.092,0.703,0.911,0.874,0.888,1.099,0.927,1.129,0.847,1.259 +XM_038288,0.846,0.92,1.258,1.009,0.958,0.889,0.804,0.82,1.267,1.105,0.992,0.927,0.967,1.037,1.302,0.987,0.945,0.891,0.884,0.921,0.876,0.802,1.062,0.961,1.023,0.97,1.229,0.924,0.659,0.988,1.267,1.216,2.306,0.981,0.867,0.819,0.888,1.001,0.994,1.066,1.034,1.066,0.856,1.039,1.025,0.909,0.958,0.84,0.94,0.866,1.042,0.95,1.051,1.47 +XM_038291,0.712,0.964,1.15,0.626,1.126,1.324,0.739,0.933,1.159,0.845,0.899,1.07,0.684,0.756,0.949,1.338,0.642,1.14,1.219,1.019,0.618,0.906,1.139,1.185,0.72,0.93,1.486,0.959,0.631,1.151,0.987,1.555,1.404,1.065,0.715,0.575,1.12,1.107,1.115,1.08,1.117,1.15,0.661,0.445,1.0,0.958,0.701,0.975,1.0,0.871,1.171,1.08,0.909,1.454 +XM_038362,0.571,1.145,0.947,0.83,0.901,1.36,0.823,0.596,1.074,0.962,0.836,0.836,0.625,0.694,0.958,1.345,0.933,0.896,0.821,1.392,0.54,1.043,1.351,1.059,0.656,0.766,1.237,0.858,0.565,1.195,0.861,2.079,2.478,1.129,0.553,0.843,0.892,0.842,2.045,1.307,0.917,1.002,0.542,1.025,0.942,1.079,1.205,0.77,1.422,0.732,1.28,0.871,0.674,2.948 +XM_038436,0.989,0.852,1.086,1.045,1.003,1.104,1.183,1.125,1.042,0.974,1.037,0.917,1.142,0.897,0.954,1.006,1.217,0.892,1.073,0.981,1.029,1.059,1.05,1.031,0.94,1.05,0.955,0.969,1.006,0.952,1.119,1.07,0.99,1.103,1.116,0.988,0.988,1.057,0.938,0.901,0.918,1.014,0.885,1.074,0.987,0.983,1.04,0.957,0.964,0.982,1.0,0.902,0.917,0.975 +XM_038515,1.002,0.964,1.006,0.967,1.04,1.121,1.068,1.081,0.977,0.962,0.978,1.069,0.927,1.192,1.134,0.964,1.051,1.02,1.07,0.982,0.976,1.0,0.988,1.1,0.976,1.105,1.03,1.018,0.929,1.004,1.055,0.966,0.975,0.999,1.038,0.962,1.025,0.976,1.101,0.98,0.999,1.127,0.937,0.953,1.005,0.982,0.956,1.016,0.989,1.011,1.055,0.934,1.016,1.194 +XM_038520,0.904,1.001,0.964,1.011,0.926,1.008,0.917,0.813,0.879,0.897,1.203,0.987,0.933,1.003,1.034,1.054,0.873,0.95,0.845,1.214,0.962,1.006,1.026,0.883,0.984,0.946,0.998,0.856,0.955,1.092,0.902,0.98,1.08,0.951,0.885,1.072,0.907,0.944,1.423,1.117,0.986,1.01,1.065,1.167,0.852,1.097,0.887,0.977,1.049,0.901,0.945,0.868,0.901,0.999 +XM_038567,0.626,1.046,1.39,0.726,0.994,1.244,0.496,0.586,1.251,0.888,1.091,1.108,0.71,0.692,1.082,1.098,0.877,0.985,1.029,1.077,0.517,0.775,1.181,1.087,0.66,0.858,1.15,1.128,0.456,1.11,1.096,1.019,1.602,1.284,0.823,0.792,0.88,0.889,1.071,0.916,0.85,0.924,0.663,1.533,1.044,1.08,1.013,0.869,0.951,0.818,0.785,0.771,1.099,1.585 +XM_038576,0.731,1.687,0.636,0.838,0.698,1.594,0.803,0.763,0.731,0.766,1.794,0.737,0.779,0.791,1.306,2.137,0.815,0.791,0.554,1.427,0.75,0.768,3.157,0.674,0.802,0.881,0.822,0.65,1.016,1.281,0.761,2.283,5.825,1.031,0.65,1.943,1.125,0.797,2.064,1.267,0.683,2.122,1.151,2.456,0.853,1.585,1.376,0.769,0.961,0.705,2.082,2.093,0.742,2.422 +XM_038604,1.012,1.043,0.987,0.996,0.932,0.956,1.192,0.883,0.983,1.035,1.009,0.937,1.112,1.027,0.92,0.9,1.077,0.942,1.097,0.93,1.039,0.932,1.1,1.03,1.202,1.022,1.124,1.074,0.99,1.065,0.95,0.938,1.034,0.923,1.004,1.079,0.92,1.0,0.983,1.026,1.086,1.139,0.871,1.076,1.031,1.089,0.926,1.055,1.052,0.978,1.094,1.238,1.065,0.906 +XM_038664,0.919,1.229,1.126,0.809,0.831,0.984,0.803,0.748,1.168,0.865,0.976,0.816,0.802,0.948,0.86,1.484,0.829,0.823,1.012,1.233,0.674,0.722,1.397,0.906,0.886,0.869,1.084,0.89,0.722,1.06,0.822,1.078,1.621,1.18,0.609,1.183,1.099,1.114,1.118,1.208,0.894,1.155,1.14,1.372,0.844,1.132,1.097,0.951,1.076,0.898,1.063,0.884,1.052,1.208 +XM_038864,0.958,0.904,1.276,1.082,1.616,0.93,0.964,0.846,1.711,0.787,0.878,0.893,0.862,1.062,1.071,0.988,0.989,0.937,1.19,1.018,1.015,1.024,0.974,1.084,0.97,0.887,1.267,1.255,0.87,1.102,1.477,1.031,1.398,1.079,1.88,0.836,0.905,1.156,0.864,0.856,1.31,0.999,0.885,1.095,1.164,1.036,1.019,1.002,0.95,1.094,0.952,0.986,0.821,1.001 +XM_038920,1.001,0.897,0.939,1.123,1.075,1.131,0.967,0.928,1.19,1.275,0.805,1.006,0.999,0.908,0.9,1.13,0.983,1.062,1.038,0.86,0.965,1.171,0.867,1.145,0.979,1.188,0.785,0.923,1.171,0.93,1.027,1.022,1.054,0.943,0.996,1.035,0.954,1.205,1.074,1.099,0.932,0.845,1.077,0.947,1.001,0.975,1.054,1.171,0.967,0.975,1.012,0.927,1.142,1.05 +XM_038999,1.012,0.742,1.512,0.803,1.369,0.747,0.881,1.206,1.654,1.236,0.721,1.015,1.072,1.783,1.406,1.16,1.075,1.144,2.124,0.794,1.007,1.726,0.816,1.313,0.842,1.547,1.214,1.525,0.829,0.731,1.562,1.122,1.326,0.905,0.768,0.897,0.708,1.449,0.993,1.695,1.412,0.849,0.792,0.856,1.124,0.687,0.849,1.193,0.795,1.137,0.982,1.222,1.072,0.957 +XM_039093,0.992,1.008,0.994,0.983,0.914,1.058,0.952,0.915,1.04,0.964,1.003,1.031,0.992,1.086,1.045,0.999,0.973,0.972,1.12,0.9,1.076,0.924,1.038,1.045,1.021,1.007,0.881,1.025,0.979,1.077,0.926,1.09,1.077,1.033,1.02,1.053,0.906,0.991,0.954,1.054,1.114,0.923,1.129,1.011,1.009,0.991,1.024,1.127,0.997,1.091,1.028,0.912,1.021,1.019 +XM_039114,0.812,0.967,1.057,0.886,1.075,0.98,0.671,0.79,1.133,1.105,0.921,1.002,0.784,0.978,1.147,1.047,0.95,0.985,1.1,0.878,0.816,0.777,1.103,1.073,0.691,0.906,1.022,1.003,0.774,0.971,1.064,0.832,1.253,1.069,1.028,1.161,1.024,1.026,1.284,0.89,1.179,0.795,0.863,0.853,1.025,1.066,1.254,0.847,1.097,0.927,0.918,0.996,1.029,1.04 +XM_039169,0.955,0.896,1.111,0.932,0.973,1.052,0.991,0.996,0.953,0.973,1.159,1.097,0.908,1.131,0.889,0.997,0.919,0.916,1.127,0.942,0.93,0.978,0.862,1.006,1.251,1.003,1.119,1.127,0.852,1.0,1.034,0.943,0.909,0.926,0.899,0.979,0.988,1.09,0.988,0.942,0.963,0.992,0.849,1.053,0.955,0.958,0.956,1.005,0.988,1.187,1.084,0.817,1.017,0.92 +XM_039385,0.972,1.094,1.288,0.834,0.944,1.058,1.162,0.641,0.866,0.81,1.1,0.697,0.709,0.818,0.825,1.024,0.818,0.928,1.1,0.898,0.824,0.794,1.144,0.767,0.963,0.992,0.942,0.815,0.775,1.064,0.79,1.022,1.315,1.022,0.545,0.783,1.31,0.881,1.466,1.078,0.912,1.352,0.784,1.123,0.874,1.187,0.807,0.654,1.024,1.048,1.173,0.953,0.925,1.461 +XM_039515,0.901,0.927,0.918,1.043,0.924,0.963,1.076,0.866,1.027,1.101,1.06,1.04,0.857,1.04,0.77,0.894,0.901,1.097,1.03,1.0,0.859,1.016,1.007,1.17,1.108,1.031,0.993,1.008,0.91,0.988,1.041,0.93,0.939,0.88,1.004,0.969,1.032,1.084,1.026,0.927,0.909,0.969,1.085,0.976,1.045,0.985,0.999,0.867,0.986,1.161,0.988,0.867,0.982,1.015 +XM_039548,0.91,0.999,1.032,0.893,0.998,0.921,1.112,1.169,1.135,1.014,0.957,1.022,1.141,1.128,1.194,1.055,0.815,0.931,0.921,1.014,0.978,1.074,1.019,1.012,0.951,0.924,1.0,1.0,0.926,0.939,0.946,1.002,1.156,0.999,1.037,1.05,0.91,0.907,1.043,0.981,0.977,0.84,0.901,1.155,1.005,0.931,0.95,1.061,0.976,0.877,0.966,0.967,1.033,1.361 +XM_039570,0.735,0.701,1.822,0.667,1.51,1.346,0.535,1.065,1.483,1.503,0.968,1.425,0.555,0.898,1.261,1.941,0.858,1.116,2.041,0.809,0.741,1.412,0.737,1.085,0.491,0.86,1.373,1.132,0.809,1.124,1.22,0.741,1.629,1.389,0.537,0.528,1.234,1.245,0.642,0.303,1.189,0.914,0.641,0.437,1.212,0.995,1.071,1.132,1.005,1.036,0.746,0.83,1.3,0.811 +XM_039627,1.098,1.005,1.084,0.912,0.995,0.912,0.929,0.906,1.077,0.864,1.013,0.99,0.961,1.074,0.801,0.984,0.915,0.875,1.083,1.001,0.992,1.0,0.937,1.018,0.975,0.984,1.074,1.056,1.01,1.258,0.899,0.944,1.029,1.115,1.132,0.966,1.083,0.967,1.061,1.081,0.892,0.939,0.978,0.907,1.01,0.981,1.079,1.008,1.016,0.984,1.0,0.973,0.852,0.956 +XM_039676,1.002,0.834,1.088,1.056,1.06,1.138,0.877,0.831,1.102,1.163,1.096,0.963,0.939,0.968,1.493,0.852,0.953,0.948,1.118,0.936,0.999,0.95,1.056,1.128,0.914,0.998,0.784,1.1,0.743,1.081,0.93,0.988,1.135,0.872,0.927,0.945,1.273,1.046,0.998,1.082,1.185,0.922,0.927,1.125,0.987,1.234,1.171,1.012,1.064,1.001,1.12,1.051,1.002,0.967 +XM_039701,1.103,0.93,0.97,1.074,1.039,1.023,0.757,0.846,0.938,1.092,1.114,0.928,0.938,0.836,0.969,1.101,1.068,1.0,1.026,0.972,0.947,0.966,1.067,0.883,0.901,1.013,1.056,1.014,0.919,1.07,1.092,1.07,1.109,0.917,0.998,1.023,0.98,0.933,0.87,1.002,1.066,0.986,1.015,1.05,0.937,1.052,1.191,0.884,0.834,1.108,1.007,0.984,1.164,1.202 +XM_039733,0.937,1.002,0.973,1.011,0.992,0.95,1.089,1.051,1.067,0.823,0.927,1.131,0.933,1.136,0.925,0.923,1.055,0.86,0.942,0.988,0.978,0.908,0.99,1.038,0.998,0.856,1.06,1.039,1.047,1.024,0.891,1.005,1.043,1.21,0.947,1.0,1.057,0.996,0.997,0.977,1.111,1.018,1.084,0.864,1.047,0.999,1.046,0.993,1.098,0.915,1.18,0.92,1.099,1.016 +XM_039762,0.949,0.963,0.905,1.014,0.992,0.97,1.129,0.961,0.939,0.95,1.186,1.001,1.023,1.005,1.131,0.879,0.886,0.821,0.969,0.919,0.989,0.925,1.08,1.044,0.913,1.018,0.955,1.187,0.907,0.947,1.149,0.878,1.117,1.073,1.06,1.046,1.041,1.016,1.008,0.929,0.855,0.838,1.109,1.198,1.091,1.03,0.859,1.065,1.083,1.134,1.075,1.079,1.291,0.979 +XM_039796,0.845,1.035,0.851,0.901,0.891,0.993,0.872,0.926,0.896,0.926,1.063,0.872,0.885,0.724,1.023,1.229,0.826,0.947,1.013,1.099,0.895,0.885,1.078,0.774,0.888,0.872,0.938,1.056,0.565,1.185,0.946,0.978,1.626,1.14,0.895,0.978,1.213,1.107,1.096,1.025,0.9,0.997,0.94,1.263,0.938,1.094,0.988,0.834,1.045,1.008,1.232,0.926,0.957,1.269 +XM_039877,0.816,0.92,0.756,2.55,0.927,1.413,1.006,1.036,0.726,0.706,0.94,0.788,0.951,0.894,1.196,1.218,0.85,2.051,0.813,2.368,0.805,0.829,1.352,0.891,1.144,0.742,0.834,0.891,1.257,1.766,0.762,2.244,0.867,1.549,0.882,1.508,0.907,0.843,1.806,1.346,0.812,13.76,1.401,3.333,0.757,0.96,0.868,0.835,0.809,0.855,1.418,1.693,0.796,0.733 +XM_039908,1.04,0.959,1.26,1.001,0.898,0.984,0.817,1.151,0.987,0.952,0.935,1.109,0.924,0.882,1.055,1.104,0.951,0.912,1.012,0.959,0.974,0.922,1.083,1.076,1.015,0.913,1.212,0.922,0.92,1.059,0.972,1.069,1.037,1.031,0.902,0.987,1.021,0.87,0.9,1.091,1.046,0.822,1.315,0.874,0.952,0.9,0.964,0.996,1.045,1.043,1.115,0.936,1.032,1.015 +XM_039922,1.184,1.022,1.093,0.994,0.981,0.997,1.045,1.129,1.072,0.942,0.995,0.889,0.924,0.862,0.925,1.001,1.126,0.866,1.021,0.929,1.138,1.067,1.027,1.159,1.056,0.965,0.964,1.102,1.588,0.903,1.036,0.916,0.917,1.004,0.985,1.045,0.914,1.006,0.979,0.996,0.927,0.901,1.26,1.144,0.997,0.922,1.124,1.062,1.011,1.079,1.102,1.041,0.921,1.021 +XM_039929,1.394,0.898,1.92,1.069,1.67,0.894,0.839,0.874,1.887,1.575,0.883,0.822,1.103,1.422,1.22,0.975,2.118,1.137,2.217,0.925,1.028,1.004,0.874,1.426,0.905,1.418,2.336,1.135,0.808,0.999,1.664,1.017,1.418,0.952,1.258,0.81,0.77,1.298,0.995,0.772,2.159,0.83,0.68,0.878,1.494,0.804,1.435,1.324,0.931,1.552,1.041,1.03,1.712,0.83 +XM_040100,1.008,1.036,0.945,1.033,0.987,1.08,0.961,0.892,1.05,1.02,1.063,1.014,0.977,1.233,0.846,0.998,0.999,1.042,0.899,1.021,1.001,0.938,1.033,1.052,0.976,1.008,0.96,0.957,1.136,0.985,1.044,0.901,0.883,1.094,1.02,0.933,0.986,0.931,1.251,0.932,1.11,1.002,0.819,1.045,1.057,1.086,0.98,1.094,1.077,1.103,0.925,0.936,0.84,1.036 +XM_040158,0.834,1.254,0.821,0.82,0.858,1.079,0.771,0.812,0.96,0.761,1.135,0.766,0.692,0.72,0.883,1.009,0.778,0.837,0.846,0.969,0.78,0.68,1.193,0.888,0.821,0.706,0.91,0.765,1.068,1.102,0.894,1.073,1.739,1.174,0.679,1.141,1.176,0.877,1.567,1.009,0.833,1.019,1.096,1.421,0.951,1.283,0.841,0.676,1.081,0.853,1.006,0.925,0.827,1.251 +XM_040265,0.935,1.076,1.076,0.935,0.933,1.116,1.061,0.845,1.237,1.016,0.94,1.086,0.935,0.911,0.855,0.994,0.988,1.023,0.948,0.92,0.966,1.042,0.926,0.959,1.004,1.044,1.043,1.034,1.266,0.994,1.011,0.923,1.209,0.94,1.002,0.998,0.962,0.979,1.068,0.939,1.059,0.916,1.021,1.506,0.994,1.075,0.993,1.048,1.139,0.988,1.021,0.92,1.032,1.006 +XM_040383,1.109,0.949,0.943,0.884,0.986,0.928,1.036,0.936,1.03,0.99,0.99,1.071,0.965,1.008,1.11,0.829,0.902,0.877,0.941,1.015,1.11,0.919,0.943,1.026,0.877,1.01,1.006,0.928,1.104,1.098,0.954,0.96,1.156,0.899,0.832,1.108,0.944,1.046,1.067,0.878,1.136,0.914,1.068,1.055,0.933,0.968,1.036,0.947,0.871,0.877,0.926,1.041,0.957,0.88 +XM_040486,1.056,1.051,1.1,1.076,1.069,0.996,0.961,1.047,1.139,1.075,0.947,1.032,1.011,0.885,1.032,0.985,1.065,0.999,1.051,1.029,1.075,0.965,1.105,1.105,0.964,0.989,1.133,1.029,0.905,0.921,0.924,0.943,1.094,1.07,1.016,1.035,1.088,0.943,1.05,0.983,0.847,0.948,0.975,0.988,0.952,0.993,1.115,1.112,0.88,1.027,0.931,0.93,0.884,1.081 +XM_040527,0.947,1.023,0.956,1.089,1.096,1.042,1.116,1.092,0.973,0.937,0.885,0.893,1.02,1.147,1.376,1.037,0.954,0.962,0.779,0.907,0.867,1.086,0.937,0.918,1.105,1.147,1.003,1.107,1.013,0.994,1.034,1.006,1.02,1.001,0.965,0.948,0.909,1.182,0.987,0.783,1.006,1.025,1.145,0.906,0.928,1.047,1.118,0.965,0.881,1.033,1.056,0.966,0.873,1.057 +XM_040592,0.955,0.855,0.938,0.959,0.937,1.207,0.943,0.934,1.035,0.953,0.887,1.116,0.913,0.908,0.959,0.998,0.947,1.083,1.106,1.018,1.094,0.929,0.954,1.044,1.008,1.141,1.115,0.939,0.856,1.033,1.146,0.978,0.931,1.035,0.835,1.001,1.099,1.064,1.017,1.053,1.032,0.917,0.953,0.935,0.97,1.056,1.061,1.052,1.07,0.917,1.056,1.097,0.877,1.024 +XM_040709,0.826,0.872,1.384,0.75,0.845,0.959,0.873,0.507,0.954,0.963,1.055,0.7,0.66,0.589,0.851,1.417,0.857,0.89,0.935,1.193,0.838,0.639,1.292,0.738,0.748,0.892,1.195,0.742,0.531,1.284,0.87,1.36,1.684,1.254,0.393,0.732,0.986,0.862,1.238,0.832,0.921,1.179,0.767,0.943,0.994,1.075,0.875,0.62,1.015,0.996,1.25,1.028,1.219,1.103 +XM_040866,1.045,0.978,0.956,1.039,0.968,1.088,1.045,1.005,1.114,1.004,1.056,1.143,0.997,1.239,0.722,0.876,1.107,0.849,1.119,0.98,1.053,1.001,1.11,1.063,0.872,1.186,1.122,1.163,0.856,1.019,1.109,1.031,0.882,0.995,1.066,0.99,0.92,1.095,0.963,1.034,0.998,1.027,0.9,0.931,0.906,0.896,0.962,0.99,0.964,1.033,1.155,1.138,1.179,0.984 +XM_040910,0.922,1.02,0.95,1.258,0.858,1.387,0.92,0.804,0.892,0.93,1.357,0.849,0.919,0.93,1.017,1.556,0.884,0.935,0.907,1.234,0.878,0.868,1.078,0.941,1.207,0.932,0.912,0.975,1.038,1.065,0.99,1.375,1.015,0.973,0.979,0.988,1.083,0.765,1.152,0.895,0.824,1.205,1.511,0.969,0.97,1.418,0.944,0.971,1.344,0.928,1.217,0.973,0.922,1.18 +XM_041018,1.082,0.946,0.875,0.897,0.915,1.079,0.948,0.862,0.799,0.856,1.026,0.834,0.85,0.858,1.035,1.201,0.957,0.925,0.872,1.056,1.015,0.897,1.252,0.941,1.017,0.919,0.935,0.796,1.164,1.219,0.842,1.083,1.101,1.315,1.01,0.93,0.983,1.087,1.001,0.968,1.17,1.396,1.075,1.036,0.947,0.918,0.873,0.906,1.383,0.822,1.062,1.011,0.759,1.027 +XM_041116,0.88,1.029,1.005,1.052,1.021,1.028,0.986,0.786,1.004,0.998,1.019,0.955,0.844,0.917,0.789,0.952,1.053,1.013,1.006,1.093,0.893,0.92,0.937,1.0,0.977,1.103,1.054,1.135,0.649,1.125,0.906,1.015,0.911,1.095,1.062,0.912,0.993,1.004,1.038,1.003,0.972,0.834,0.745,1.012,1.084,1.062,1.032,0.941,0.957,1.058,0.835,1.032,0.995,0.867 +XM_041126,0.982,1.015,1.111,0.995,1.073,0.996,1.058,1.05,1.149,0.964,0.968,0.864,1.013,0.979,1.671,0.994,1.044,1.067,0.971,0.914,1.047,1.086,0.997,0.958,0.951,1.124,1.002,0.798,1.226,0.911,1.313,1.023,0.817,1.197,0.952,0.964,0.924,1.103,1.055,0.955,0.878,0.906,0.882,0.972,0.984,1.093,1.167,1.021,1.061,1.023,1.092,1.132,1.063,1.149 +XM_041162,1.267,0.619,1.309,1.102,1.594,0.88,0.631,1.045,2.062,0.966,1.311,0.702,1.227,1.292,1.637,1.557,1.049,0.99,1.159,0.879,0.995,0.67,0.891,0.99,0.674,1.392,1.095,1.911,0.548,0.815,2.79,0.678,1.832,0.79,4.365,1.04,0.971,1.072,0.851,0.837,1.724,0.919,0.733,1.014,1.162,0.836,1.402,1.056,0.886,1.031,0.972,0.744,1.442,1.264 +XM_041191,0.883,1.04,0.707,0.933,0.712,1.14,0.822,0.727,0.695,0.863,1.207,0.914,0.717,0.989,3.087,3.609,0.742,0.932,0.733,2.358,0.682,0.842,2.027,0.893,0.815,0.833,0.82,0.842,0.812,0.954,0.771,1.328,2.648,1.191,0.686,1.058,3.219,0.852,1.112,1.008,0.843,1.54,1.352,1.157,0.766,1.624,1.506,0.835,1.707,0.799,1.507,0.878,0.942,1.007 +XM_041363,0.961,0.914,1.171,0.902,1.105,0.912,0.935,1.002,1.081,1.139,0.945,0.953,0.93,1.057,1.167,1.221,1.062,0.903,1.119,1.023,1.026,1.173,1.049,1.123,0.917,0.898,1.2,1.037,0.912,1.002,1.025,1.249,1.129,0.978,0.86,0.873,0.878,1.098,0.998,1.035,1.046,1.074,0.983,0.855,1.173,0.984,0.949,1.038,1.004,1.178,0.858,0.99,0.975,0.86 +XM_041723,1.072,0.995,1.009,0.983,1.028,1.019,1.246,0.924,1.003,1.134,1.095,0.964,0.977,0.998,1.173,1.084,1.024,1.007,0.866,0.941,1.129,0.934,1.14,1.081,1.052,1.01,1.114,0.938,0.975,1.021,0.967,1.041,0.959,1.015,1.023,0.961,0.915,1.009,0.937,0.967,0.984,0.957,0.917,0.998,1.017,1.008,0.936,1.118,0.982,1.058,0.974,0.98,1.018,0.984 +XM_041843,0.99,1.112,0.784,1.026,1.041,0.93,1.013,1.173,0.949,1.142,1.017,0.99,0.912,0.856,1.172,1.0,1.064,1.072,0.916,1.034,1.053,1.067,1.045,0.958,1.038,0.97,0.965,0.963,1.1,1.003,0.999,1.06,0.964,0.978,1.026,0.923,0.882,1.062,1.119,0.952,0.939,0.957,0.991,0.984,0.922,0.944,0.969,0.975,1.089,1.035,1.048,0.947,1.026,1.065 +XM_041964,1.082,1.078,0.924,0.932,1.089,0.973,0.989,0.895,0.884,0.964,1.021,0.95,0.945,0.896,0.884,0.75,1.057,0.969,0.856,0.817,0.992,1.013,1.009,0.956,1.003,1.055,1.037,0.98,0.8,0.983,0.987,1.045,0.837,0.96,1.134,1.153,0.906,1.001,0.97,1.187,0.983,0.999,0.876,1.08,1.021,1.029,1.149,1.081,0.982,1.102,1.012,0.902,1.111,0.955 +XM_042012,0.881,1.234,0.936,0.832,0.989,1.023,1.01,0.922,0.903,0.993,1.089,0.897,1.057,0.758,0.926,1.088,0.981,0.981,1.098,1.262,0.831,0.885,1.452,1.057,0.854,0.963,0.946,0.793,1.347,0.997,0.851,1.478,1.099,1.022,0.849,1.054,0.988,0.973,1.181,1.017,0.957,1.003,1.054,1.178,1.14,1.134,0.823,1.04,1.009,1.003,0.957,0.926,0.878,1.23 +XM_042066,0.749,0.741,2.259,0.561,1.421,0.98,0.7,1.165,2.041,1.006,0.713,1.938,1.085,0.843,1.161,1.249,1.2,1.27,1.405,1.125,0.501,1.704,1.046,1.605,0.481,0.694,1.691,1.574,0.408,1.007,1.543,0.842,2.007,1.029,0.507,0.449,0.814,1.58,0.961,1.268,1.631,1.229,0.53,0.514,1.279,0.64,0.849,1.15,0.657,1.155,0.885,0.825,0.561,1.358 +XM_042087,0.925,1.073,1.31,0.779,1.129,1.12,1.005,1.053,1.018,0.947,1.266,1.179,0.944,0.844,0.958,1.113,1.035,0.927,0.941,1.111,0.984,1.074,1.134,0.977,0.911,0.819,1.255,0.992,0.689,1.152,1.164,1.334,1.67,1.273,0.783,1.0,0.826,0.929,1.0,0.912,1.213,0.959,0.929,1.117,0.829,0.985,0.947,0.89,0.93,0.905,1.033,1.03,1.029,1.736 +XM_042323,0.938,1.719,1.024,0.82,0.801,0.985,0.818,0.941,0.843,0.897,0.959,0.998,0.989,1.011,1.197,0.925,0.965,1.187,0.967,1.114,0.961,0.914,1.229,0.841,1.074,0.822,0.784,0.96,1.263,0.983,1.064,0.926,2.165,1.127,1.005,1.062,1.01,1.083,1.202,1.419,1.28,1.14,1.104,1.103,1.015,1.059,0.992,0.924,0.937,0.911,1.045,1.145,1.001,1.031 +XM_042684,0.967,1.067,0.91,1.017,1.005,0.956,1.05,0.826,1.011,0.922,0.999,1.063,1.005,1.103,1.17,1.02,1.084,1.028,0.906,0.958,0.938,0.98,0.951,1.032,1.019,1.026,0.958,1.079,1.151,0.94,1.037,1.032,1.012,1.0,1.077,0.956,1.044,0.935,0.901,1.078,1.006,0.943,0.951,1.031,1.146,1.093,1.023,0.895,0.97,1.0,0.976,1.101,1.033,1.028 +XM_042685,0.912,0.988,1.12,0.855,0.939,1.102,0.763,0.775,1.153,1.006,0.931,1.001,0.748,0.8,0.988,0.972,0.99,0.911,0.956,1.052,0.865,0.827,1.135,0.943,0.956,0.936,1.149,1.026,0.644,1.182,1.044,0.977,1.144,1.309,0.639,0.9,0.977,0.97,1.013,0.933,1.13,1.13,1.027,0.923,0.99,0.942,1.021,0.846,1.073,0.868,1.196,0.72,0.877,1.181 +XM_042698,0.601,0.927,1.08,0.596,0.785,0.843,0.586,0.323,1.007,1.008,0.946,0.576,0.357,0.59,0.826,1.313,0.872,0.946,0.809,1.417,0.584,0.614,1.347,0.7,0.668,0.646,1.018,0.798,0.452,1.163,0.817,1.759,1.16,1.328,0.339,1.217,0.928,0.767,0.982,1.219,1.024,1.247,1.078,1.637,0.949,1.324,0.875,0.505,1.046,0.671,1.296,0.791,0.922,1.581 +XM_042708,0.724,0.882,1.337,0.609,0.955,0.975,0.661,0.508,1.382,1.225,0.866,0.723,0.499,0.61,0.872,1.192,1.104,0.785,1.048,1.18,0.592,0.917,1.131,1.149,0.552,0.644,1.358,0.886,0.478,1.17,0.969,1.288,1.393,1.052,0.451,0.569,0.99,0.963,1.006,0.72,1.046,1.206,0.721,0.657,1.049,1.115,1.027,0.736,0.951,0.755,1.098,0.758,0.976,1.562 +XM_042833,0.85,1.01,0.972,0.987,0.863,1.202,0.837,0.831,1.126,0.882,0.987,0.786,0.775,0.889,0.889,1.16,1.003,1.046,0.972,1.04,0.947,0.848,1.316,0.959,1.041,1.06,0.936,0.974,0.999,1.094,0.856,1.285,1.284,1.423,0.77,0.817,0.846,0.85,1.289,0.959,0.761,1.351,0.934,1.081,0.826,1.037,0.879,0.804,0.82,0.942,1.094,0.855,0.984,1.333 +XM_042860,0.945,1.032,1.158,0.922,0.951,1.046,0.879,0.859,1.024,1.009,1.001,0.999,0.988,0.878,0.901,1.124,0.877,0.947,1.051,0.947,0.889,0.964,1.002,0.865,1.043,0.982,1.052,0.906,0.742,1.076,0.883,1.041,1.164,1.166,0.835,0.884,1.037,0.94,1.11,1.08,1.012,1.067,1.038,0.951,0.858,0.981,0.953,0.948,1.027,0.947,1.019,0.902,0.996,1.025 +XM_043069,0.976,0.982,1.141,0.947,1.07,0.971,0.695,0.825,1.14,0.971,0.913,0.818,0.786,1.07,1.092,1.035,1.199,1.07,0.974,0.889,1.015,1.268,0.895,1.045,0.86,1.025,1.338,0.967,0.849,0.819,0.997,1.206,1.502,1.099,0.672,0.745,0.926,1.164,1.137,0.82,1.156,0.91,0.625,1.128,1.063,0.966,1.009,0.978,0.9,1.085,0.912,0.87,0.878,1.747 +XM_043106,1.025,0.982,0.955,1.007,0.981,0.898,0.931,1.079,1.041,0.823,1.004,1.086,0.914,0.947,0.879,1.022,0.882,1.034,0.968,0.835,1.119,0.989,0.991,0.949,1.017,1.002,1.09,0.996,0.933,0.971,1.026,1.102,1.009,1.02,1.124,0.955,1.006,1.026,0.891,0.954,1.126,1.019,1.14,1.013,1.025,0.94,0.91,1.058,1.016,0.958,1.214,0.866,0.993,0.979 +XM_043118,1.1,0.857,1.0,0.995,1.005,1.133,1.012,1.034,0.853,0.896,0.952,1.067,1.121,0.947,1.033,1.022,0.906,0.961,1.071,0.929,1.024,0.943,1.034,0.858,1.072,0.976,1.067,1.172,0.749,0.977,1.112,0.904,0.931,1.045,0.961,0.948,1.065,1.014,0.939,1.139,0.968,1.047,0.978,0.969,0.97,0.928,0.92,1.023,1.039,1.031,0.973,0.958,1.069,1.005 +XM_043272,1.046,1.126,0.912,1.077,0.946,0.928,0.968,0.945,0.895,1.106,0.933,0.938,0.932,1.056,0.762,1.145,1.034,0.944,0.881,0.896,0.883,1.061,0.956,1.059,0.943,0.908,1.055,0.887,0.918,0.883,0.915,1.03,1.104,0.922,0.9,1.031,1.013,0.955,1.198,1.343,1.066,1.061,1.078,1.025,0.972,1.072,0.976,0.98,1.119,1.194,0.933,0.891,0.878,0.866 +XM_043492,1.018,0.76,1.432,0.85,1.221,0.849,0.605,0.651,1.735,1.132,0.973,0.802,0.709,1.06,0.996,1.215,1.072,1.064,1.54,0.852,0.752,1.05,1.197,1.463,0.662,1.133,1.401,1.128,0.594,1.022,1.095,0.93,1.173,0.815,0.763,0.74,0.99,1.126,1.13,0.996,1.261,0.948,0.66,1.127,1.257,0.898,0.881,0.998,1.171,1.193,1.051,0.907,0.905,1.256 +XM_043493,0.978,1.041,1.045,1.237,1.093,0.983,0.752,1.148,1.052,0.983,0.942,1.041,0.978,1.087,0.915,0.918,0.954,0.964,0.969,1.157,0.985,0.938,0.883,0.895,0.993,1.143,1.057,1.032,0.978,1.177,1.083,1.073,0.902,0.966,1.094,1.053,1.054,0.995,1.035,1.17,0.962,1.048,1.133,1.159,0.875,0.861,0.891,1.021,1.008,0.945,0.959,1.012,1.064,1.103 +XM_043500,6.157,0.228,8.911,2.573,8.267,0.23,0.215,6.009,11.76,7.732,0.184,10.63,7.557,6.349,6.214,0.998,4.766,4.07,13.21,0.738,3.581,9.108,0.177,7.637,0.195,6.125,9.13,8.752,0.151,0.58,11.8,0.163,1.433,0.323,0.236,0.223,0.194,10.68,0.208,0.187,7.658,0.316,0.176,0.195,5.583,0.207,2.8,6.49,0.187,3.79,1.36,0.698,5.705,0.402 +XM_043624,0.853,1.018,0.984,0.987,1.009,1.196,0.979,0.828,0.957,0.993,1.04,1.119,0.932,0.94,1.0,1.012,0.969,1.036,0.923,1.084,1.129,0.927,1.0,0.927,1.014,1.077,0.876,0.962,0.851,0.997,0.906,0.928,1.168,1.272,0.892,1.019,0.95,0.908,0.909,1.006,1.029,0.954,0.995,0.982,0.957,0.974,1.066,1.072,0.882,0.978,1.052,0.879,0.799,1.087 +XM_043739,1.091,1.026,0.946,1.205,1.017,1.07,1.155,0.934,0.834,1.115,0.939,0.89,0.959,0.831,0.933,2.258,1.027,0.922,0.952,0.964,0.97,0.979,1.208,1.014,1.018,0.867,0.849,0.886,1.282,1.009,1.088,0.98,1.117,1.072,1.154,1.246,1.021,1.233,0.882,0.96,0.944,0.959,1.139,1.005,1.283,2.593,1.141,0.974,0.984,1.046,0.85,1.621,1.044,2.492 +XM_043826,0.878,0.942,0.996,0.86,1.127,0.977,0.862,1.097,1.307,0.848,1.016,0.863,0.879,1.062,1.027,1.201,1.036,1.039,1.09,1.04,1.004,0.981,0.956,1.057,0.941,0.966,0.986,0.922,0.886,0.943,1.125,1.053,0.884,1.143,1.116,1.016,1.043,1.049,1.078,0.905,0.862,0.892,0.977,0.961,0.994,1.049,1.0,0.982,0.996,0.951,0.979,0.867,1.058,1.05 +XM_043863,0.998,0.953,1.007,0.887,1.169,0.891,0.956,1.108,0.854,0.989,1.035,0.896,0.982,0.889,0.879,1.35,1.144,1.12,1.143,0.96,1.051,0.926,0.962,0.935,0.925,1.069,1.004,0.916,0.948,1.088,1.001,1.059,1.412,1.021,0.786,1.004,1.068,1.071,1.012,0.977,1.028,0.995,0.886,0.971,1.006,0.945,1.019,0.931,1.005,1.077,1.05,0.959,0.826,1.065 +XM_043979,0.984,0.985,0.938,0.982,1.039,1.097,0.9,1.022,1.066,0.985,0.94,1.046,0.978,1.069,1.048,1.007,1.103,0.981,1.216,1.146,0.927,1.058,0.9,1.122,0.968,1.078,1.055,1.024,0.847,0.931,0.893,0.876,0.933,0.848,0.989,1.072,0.948,0.961,1.062,1.039,1.018,0.978,0.906,1.025,1.099,1.019,1.043,0.941,0.939,1.068,0.96,0.988,0.961,0.811 +XM_043989,1.013,0.958,0.98,0.982,1.097,1.163,0.979,1.049,1.041,1.082,1.057,0.936,1.012,1.093,1.121,0.98,0.99,0.906,1.023,1.144,1.1,0.976,1.2,1.079,1.047,1.116,0.943,0.952,1.02,0.98,0.903,0.998,1.147,1.082,0.979,1.109,0.985,1.047,1.051,1.028,0.995,0.977,0.925,0.982,1.053,0.984,0.816,0.889,1.002,1.11,1.008,0.88,0.974,0.959 +XM_044062,0.947,0.864,1.092,1.022,0.93,1.027,1.087,0.965,1.025,0.973,0.984,0.838,0.959,0.991,1.052,0.894,1.03,1.039,0.904,0.936,0.947,1.014,1.026,1.029,1.042,0.986,0.982,0.962,1.241,1.015,0.939,1.065,0.919,1.134,1.002,0.843,0.997,1.106,1.032,0.903,1.052,1.064,1.117,1.119,1.04,0.968,0.93,1.193,0.898,1.057,1.066,1.016,0.995,0.993 +XM_044166,1.085,1.04,1.011,0.999,0.918,0.989,1.048,1.009,0.923,0.927,1.012,1.013,1.061,0.718,0.877,1.161,0.893,0.887,1.235,0.974,1.026,1.017,1.082,1.027,0.946,1.031,0.882,0.896,0.913,0.963,0.884,1.107,1.672,0.953,0.979,0.974,1.098,1.043,0.964,1.686,0.875,1.025,0.833,1.235,0.985,0.884,0.998,0.911,0.975,1.098,0.953,0.939,1.009,1.204 +XM_044178,1.014,1.1,0.822,1.122,0.775,1.465,1.044,0.789,0.813,0.878,1.43,0.838,0.783,0.789,1.235,1.843,0.852,1.068,0.876,1.654,0.806,0.883,1.68,0.854,0.873,0.78,0.725,0.937,0.791,1.407,0.909,1.251,1.009,1.296,0.9,1.085,1.59,0.803,1.271,0.901,0.986,1.387,2.68,0.897,0.944,2.135,0.944,0.814,1.983,0.93,1.509,0.994,0.882,0.999 +XM_044196,1.128,1.023,1.102,0.811,1.379,1.09,0.703,0.835,2.118,1.292,0.835,1.04,0.888,0.946,0.903,0.892,1.112,0.92,1.094,1.019,0.896,1.273,0.963,1.25,0.759,0.943,1.385,1.406,0.695,1.094,1.386,1.134,1.634,0.716,1.714,0.874,0.788,1.407,1.252,0.896,1.506,0.843,0.901,0.999,1.077,1.102,1.128,1.001,1.332,1.084,1.004,0.918,0.851,1.323 +XM_044212,0.956,1.349,1.379,0.879,1.397,0.873,0.908,0.985,1.509,1.162,0.765,1.123,0.797,1.044,1.163,0.782,1.019,0.996,1.325,0.874,0.841,1.041,0.807,1.063,0.767,1.004,1.273,0.93,0.951,1.067,0.898,1.979,1.254,1.032,0.69,0.762,0.797,1.448,1.04,1.134,1.231,0.881,0.844,0.664,0.993,0.833,1.114,0.961,0.865,1.122,0.735,1.032,1.183,0.853 +XM_044334,0.98,1.115,1.121,0.931,0.955,1.091,0.999,0.832,0.976,0.933,1.447,1.037,0.92,1.029,0.903,1.215,0.809,0.98,0.891,1.435,0.877,0.915,0.97,0.982,1.052,0.945,1.067,0.91,1.313,0.859,0.881,1.04,0.929,1.63,0.873,0.895,1.226,1.023,0.784,0.962,0.909,1.122,1.415,1.133,0.885,1.592,1.13,0.834,1.277,0.977,1.124,0.936,1.198,0.856 +XM_044347,1.304,0.741,1.276,0.888,1.004,0.883,0.489,0.864,1.428,1.137,0.813,1.055,0.89,0.836,0.924,0.826,1.508,1.115,1.837,0.626,1.056,2.934,0.77,1.608,0.77,1.337,1.964,0.84,0.854,0.718,1.094,0.951,1.057,0.799,1.168,0.562,0.772,2.064,1.175,0.846,1.109,0.881,0.711,0.869,1.183,0.66,1.009,1.805,0.693,1.533,0.665,0.733,1.075,1.047 +XM_044434,1.12,0.907,1.063,0.933,1.379,1.186,0.703,0.729,2.086,1.369,0.933,1.231,0.994,0.777,0.853,0.936,0.84,0.774,0.861,1.073,0.771,0.868,0.866,1.413,1.003,0.739,0.954,1.835,0.736,1.239,0.977,0.981,1.382,0.907,1.019,0.943,0.687,1.006,1.296,0.71,1.801,0.973,1.448,1.11,0.86,1.843,2.071,0.615,1.42,0.953,1.03,0.752,0.869,0.925 +XM_044461,1.06,0.972,1.412,1.007,0.992,0.843,0.899,0.881,1.038,1.006,1.034,0.987,0.865,0.991,0.959,0.92,1.202,1.215,1.281,0.889,0.938,1.006,0.967,1.442,0.892,0.989,0.835,1.092,0.863,1.176,1.253,1.119,0.946,1.082,1.142,1.056,0.879,1.179,0.942,0.844,1.492,1.009,0.828,1.331,1.165,0.962,1.089,1.001,0.976,1.375,1.111,0.828,1.027,0.721 +XM_044580,0.923,1.02,0.999,0.907,1.014,0.966,0.979,0.962,1.133,1.078,1.073,0.95,0.975,1.068,0.887,1.059,0.936,0.992,1.111,0.945,1.025,0.93,1.16,1.026,0.969,0.937,1.082,1.165,0.811,1.019,1.091,1.184,1.225,0.96,0.976,1.112,0.971,0.957,0.98,1.032,1.091,1.105,0.928,1.122,0.969,0.893,0.98,1.037,0.99,1.001,0.894,1.01,0.899,0.867 +XM_044622,0.99,1.136,0.994,1.026,1.155,1.021,1.016,0.915,0.862,1.017,1.002,1.03,1.09,0.956,0.91,0.915,0.975,0.971,0.95,0.997,1.122,0.961,1.089,1.08,0.922,1.093,1.092,1.067,0.952,1.012,1.159,0.855,0.967,1.012,1.077,1.273,0.978,1.049,1.06,0.945,1.074,0.937,1.038,0.915,0.946,1.015,1.171,1.141,0.939,1.058,0.971,0.885,1.034,1.046 +XM_044632,0.928,0.946,1.062,0.958,0.846,1.015,0.824,0.698,1.067,0.739,1.019,0.829,0.743,0.836,0.927,0.988,0.978,0.765,0.932,1.285,0.91,1.026,0.976,0.822,0.939,0.941,1.165,0.888,0.787,1.128,0.998,1.345,2.053,1.693,0.728,0.896,0.86,0.991,1.215,1.053,0.904,1.068,0.968,0.99,1.035,0.905,0.94,0.917,0.865,0.81,1.005,0.856,1.002,3.707 +XM_044727,1.036,0.95,0.948,0.989,1.224,1.162,0.948,0.919,1.091,1.119,0.919,1.008,1.058,1.038,0.903,0.902,1.085,1.003,0.932,0.962,0.972,1.007,0.872,0.955,0.976,1.115,1.077,1.162,0.881,1.084,0.943,1.244,0.827,1.092,1.052,0.923,0.999,1.085,1.135,0.963,1.08,1.005,0.857,0.908,1.096,1.029,1.04,0.948,1.157,1.106,0.915,0.898,0.891,0.971 +XM_044836,0.829,1.002,1.097,0.678,0.863,0.888,0.912,0.686,1.029,0.937,0.814,0.962,0.822,0.803,1.065,1.11,0.742,0.764,0.962,0.94,0.892,0.961,1.329,1.149,0.837,0.776,1.281,0.933,1.041,1.127,0.886,1.828,2.52,1.349,0.513,1.235,0.998,1.098,1.325,1.332,1.163,1.224,0.722,0.712,0.941,0.803,0.906,0.734,0.713,0.801,1.091,1.193,1.039,1.387 +XM_044921,0.885,1.011,0.972,0.842,0.876,1.039,1.063,0.932,0.94,0.822,0.899,1.034,0.982,0.93,1.192,0.909,1.019,0.998,0.88,0.98,0.944,0.727,0.964,1.062,1.159,0.92,1.002,0.877,0.673,1.099,1.043,2.592,1.372,1.835,0.759,0.794,0.958,1.022,1.288,1.184,0.962,1.274,1.094,1.139,1.087,0.942,0.885,0.971,0.888,0.921,0.988,0.951,1.011,1.389 +XM_045113,1.041,1.06,0.912,1.007,1.043,1.075,1.05,0.903,1.106,1.095,1.085,0.96,1.085,0.904,1.152,1.137,1.056,1.013,0.949,0.879,1.074,0.879,1.015,0.945,0.902,0.983,1.034,1.073,1.033,1.005,0.939,0.838,1.089,1.032,1.105,1.01,0.994,0.884,0.99,0.955,0.955,0.925,1.207,1.096,0.937,0.776,1.092,1.005,1.111,0.987,0.88,0.812,1.053,0.969 +XM_045271,1.054,1.016,1.031,1.031,0.892,0.969,1.146,1.192,0.92,0.965,0.86,0.944,1.055,0.931,1.131,0.991,1.028,0.966,1.127,0.923,1.167,0.923,0.959,1.043,1.003,1.094,1.092,1.125,0.992,0.993,1.041,0.914,1.018,0.992,0.865,1.075,1.106,1.052,1.065,0.903,1.118,0.967,0.899,0.86,0.923,1.192,0.909,0.987,1.054,0.904,0.98,0.805,0.899,1.01 +XM_045308,0.935,0.997,0.956,1.091,1.005,0.983,0.95,0.742,1.009,1.006,1.022,0.97,1.139,0.957,0.763,1.034,0.967,0.79,1.263,1.092,1.121,1.068,0.927,1.012,0.985,0.915,1.216,1.023,0.811,1.099,0.931,1.261,1.669,1.093,0.81,0.988,0.842,0.917,1.196,0.956,0.98,1.003,0.975,1.513,0.974,1.088,1.074,1.178,0.927,0.932,0.94,0.849,1.032,1.106 +XM_045421,1.002,1.128,0.991,0.921,1.018,1.064,0.939,0.897,0.972,0.855,0.767,1.08,0.908,1.115,0.895,0.756,1.029,1.025,0.851,1.051,0.633,1.148,1.079,1.077,0.967,1.088,1.091,0.983,0.95,1.361,0.876,1.693,0.772,1.372,0.794,0.711,0.986,1.16,1.225,1.626,0.907,1.176,0.725,0.964,0.86,0.713,0.913,0.833,0.79,0.996,0.907,1.021,1.147,0.923 +XM_045423,0.774,0.928,1.137,0.93,0.992,1.1,0.861,0.827,0.864,0.901,0.986,0.945,0.785,0.823,0.907,1.442,0.924,0.91,0.963,1.002,0.818,0.91,1.034,0.942,0.959,0.946,1.212,0.971,0.684,1.05,1.015,1.166,1.049,1.19,0.865,0.976,1.119,0.931,1.216,1.116,0.925,0.983,0.998,0.966,1.062,1.119,0.922,0.93,1.073,0.912,1.021,0.931,0.995,1.274 +XM_045450,0.954,1.028,0.989,0.97,1.082,0.874,1.301,1.063,0.966,1.105,0.953,0.996,0.995,0.878,0.91,0.955,1.009,0.954,1.077,0.998,1.019,0.914,1.018,1.172,1.004,1.052,1.018,0.997,0.956,0.921,1.055,1.205,1.078,0.947,1.215,1.069,0.927,0.971,1.085,1.001,1.054,1.043,0.963,0.793,1.054,0.962,0.967,0.958,0.883,0.974,0.876,1.048,0.896,0.974 +XM_045581,1.078,1.065,1.13,1.139,1.039,0.907,1.04,0.822,1.003,0.933,0.899,1.068,1.026,0.863,0.897,1.078,0.98,1.055,0.881,0.882,1.098,0.889,0.996,0.958,1.101,0.924,0.97,1.023,0.941,1.092,0.96,1.06,1.031,1.074,1.035,0.957,0.981,0.861,1.004,1.062,0.932,0.933,0.894,1.164,1.011,0.993,1.073,0.955,0.947,0.984,1.016,0.981,0.995,1.17 +XM_045705,0.921,1.012,1.062,1.094,0.947,0.934,0.947,0.913,0.988,0.896,0.977,1.071,0.804,0.929,1.065,1.027,0.964,1.098,1.078,0.967,1.026,0.993,1.048,1.084,0.998,1.196,1.027,0.946,0.733,1.014,0.965,1.026,1.064,1.154,0.922,0.948,1.081,1.123,0.948,0.913,0.994,1.027,1.085,0.897,0.92,0.887,0.845,0.982,1.051,0.992,0.882,1.145,1.067,1.002 +XM_045712,1.039,0.967,1.108,0.893,1.063,1.135,1.139,1.18,1.104,0.972,0.984,1.092,0.942,0.984,1.021,0.908,0.857,1.031,1.099,1.09,1.022,1.048,0.978,1.009,0.887,1.012,1.089,1.047,0.996,0.899,1.06,0.943,1.004,0.953,0.878,0.929,0.982,0.98,1.182,1.055,0.857,1.075,0.858,0.955,1.105,0.873,1.168,0.938,1.185,0.995,0.945,0.941,1.001,1.182 +XM_045787,1.117,1.12,1.029,1.038,1.275,1.016,0.885,0.858,1.036,1.096,1.011,1.184,1.096,0.986,0.728,0.885,1.126,0.864,0.796,1.036,0.657,0.967,1.012,1.0,0.885,1.128,1.289,1.258,1.059,0.99,1.031,1.122,0.946,0.888,1.129,1.038,0.801,1.362,1.203,0.86,1.102,0.894,1.02,1.021,0.985,0.848,1.032,1.052,1.081,1.046,0.864,0.881,0.868,0.972 +XM_045792,0.943,0.931,1.163,0.822,0.88,0.786,0.708,0.452,1.045,0.698,0.858,0.673,0.481,0.61,0.839,1.016,0.952,1.051,1.086,0.971,0.596,0.993,1.166,0.932,0.894,0.96,1.052,0.72,0.76,1.119,0.987,1.066,1.193,1.152,0.972,1.114,1.208,0.948,1.635,1.202,1.028,1.117,0.664,1.117,1.082,0.888,0.915,1.033,1.103,0.88,1.151,0.989,0.974,1.768 +XM_045911,1.055,0.898,1.045,1.015,1.146,1.07,0.893,1.079,0.976,0.878,1.147,1.0,1.0,0.976,0.95,0.998,1.109,0.858,1.032,1.029,0.983,1.013,1.118,0.943,1.259,0.939,0.989,1.017,0.589,0.956,1.035,1.134,0.862,1.038,0.903,0.891,0.923,1.069,0.929,1.081,1.014,0.924,1.17,0.96,0.875,1.069,1.207,1.052,1.15,0.878,1.079,0.92,1.005,1.075 +XM_046017,1.22,1.034,0.959,0.963,0.96,0.945,0.973,0.911,1.042,0.947,0.935,0.968,0.893,1.017,0.963,1.061,1.117,1.045,0.971,0.876,0.993,0.993,0.914,1.069,1.04,0.891,0.877,0.885,1.143,0.891,1.086,1.085,0.861,1.077,1.051,0.95,0.89,0.99,1.032,0.923,1.087,1.036,1.075,1.057,1.048,1.001,1.04,1.0,0.936,0.932,1.134,1.041,0.969,0.917 +XM_046264,1.039,0.922,1.069,1.165,0.85,0.902,1.037,1.017,0.986,0.968,1.101,0.98,0.966,1.116,0.981,0.793,1.127,1.09,1.012,1.124,0.83,0.954,0.94,0.998,0.919,1.051,0.909,1.077,1.193,1.04,0.946,1.295,1.292,1.039,1.16,0.993,1.002,0.884,0.875,1.038,0.994,1.032,0.967,0.91,1.024,0.901,0.854,1.108,1.039,1.139,0.898,1.041,1.103,0.954 +XM_046305,0.912,0.904,0.971,0.97,0.954,0.933,0.961,1.03,1.046,1.011,1.041,1.054,0.92,1.091,0.981,1.051,1.009,1.048,0.992,0.97,1.014,1.003,0.883,1.065,0.914,1.04,0.987,0.974,0.991,1.113,0.916,1.027,1.174,1.123,1.138,1.024,0.977,1.069,1.065,0.97,1.011,1.001,1.053,1.006,0.942,1.054,1.026,1.161,0.86,0.953,1.026,0.943,1.053,0.971 +XM_046390,0.861,0.931,0.888,0.997,0.982,1.009,0.732,0.874,0.791,0.878,1.064,0.962,1.032,0.882,0.827,0.93,0.889,0.89,0.839,0.968,0.886,0.866,1.344,1.0,1.089,1.067,1.073,0.962,1.176,1.184,0.933,1.153,1.482,1.1,0.841,0.941,0.832,0.906,1.319,0.921,1.08,0.983,1.393,1.086,0.95,0.983,1.116,0.844,1.0,0.884,0.941,1.045,0.896,1.312 +XM_046437,1.181,0.893,1.089,0.817,0.997,1.004,1.07,1.013,1.008,1.04,0.94,1.08,0.983,1.01,0.99,0.905,0.844,1.026,0.958,1.114,1.172,0.952,0.933,1.048,0.949,1.086,1.004,0.987,1.281,0.963,1.09,0.899,0.943,0.972,0.915,0.905,0.943,1.161,1.051,1.028,0.933,0.965,0.983,0.949,0.937,0.874,1.032,0.859,0.997,0.987,1.003,1.062,1.092,1.309 +XM_046581,0.954,1.063,1.069,0.838,0.908,1.018,0.801,0.788,0.857,1.013,1.557,0.852,0.863,0.837,1.264,2.229,0.851,0.821,1.097,1.087,0.805,0.936,1.604,0.941,0.906,0.976,1.048,0.987,0.698,0.937,0.847,0.998,1.383,1.003,0.792,1.621,1.399,0.927,1.081,0.844,0.935,1.128,1.128,1.618,0.846,1.332,1.372,0.87,1.437,0.826,1.169,0.981,0.975,1.677 +XM_046600,0.899,0.919,1.063,1.105,1.083,1.045,1.012,1.085,0.952,1.027,0.931,0.94,1.085,0.728,0.997,0.966,0.941,1.066,0.937,0.988,1.069,0.827,1.068,0.987,1.046,0.955,1.076,0.958,1.104,1.047,0.986,0.901,0.824,1.062,0.828,1.075,0.942,1.093,1.046,1.045,0.802,0.903,0.985,1.148,1.036,0.935,1.004,0.926,0.905,0.985,1.069,0.91,0.991,0.997 +XM_046677,0.157,1.188,0.165,1.02,0.162,1.367,1.074,0.144,0.151,0.173,1.86,0.134,0.147,0.131,0.689,1.936,0.163,0.854,0.182,1.46,0.179,0.151,1.596,0.172,1.49,0.181,0.165,0.134,0.787,2.384,0.161,1.082,1.506,1.963,0.159,0.484,1.613,0.161,2.25,0.784,0.17,1.797,0.858,0.89,0.179,2.129,0.615,0.149,1.576,0.207,1.228,0.512,0.179,2.651 +XM_046685,0.936,0.949,0.963,0.976,0.988,1.125,0.884,0.991,0.959,0.9,1.075,0.973,0.993,0.93,0.986,1.11,1.018,0.944,1.08,1.016,1.121,1.032,1.108,0.961,0.926,1.001,0.77,0.959,1.095,1.094,1.032,0.985,0.996,1.14,0.824,1.027,1.105,0.884,0.979,1.002,1.04,0.95,0.937,1.131,0.93,0.945,0.848,1.004,1.133,1.009,0.861,0.932,1.039,0.852 +XM_046751,0.969,1.056,0.825,1.153,1.019,1.087,1.082,1.086,1.026,1.022,0.869,1.082,1.204,0.856,0.967,0.891,1.088,1.018,0.898,1.055,0.997,0.833,1.277,0.936,1.051,1.13,0.935,0.803,1.09,0.946,0.827,1.062,1.09,0.966,0.999,0.887,0.92,1.022,0.939,1.065,1.232,1.052,0.987,1.055,1.017,1.067,0.988,1.067,1.049,0.986,1.068,0.912,1.08,0.918 +XM_046808,1.039,1.085,1.35,0.814,1.458,0.945,0.811,1.015,0.943,1.364,0.899,1.182,0.945,0.948,0.932,0.869,1.178,1.071,1.401,1.13,1.07,1.07,1.075,1.075,0.887,1.204,1.211,1.141,0.655,0.937,1.083,0.833,1.026,0.923,0.954,0.873,0.911,1.175,0.857,0.987,1.232,0.923,1.125,0.955,1.262,0.959,0.982,1.157,0.978,0.945,0.878,0.947,1.243,0.841 +XM_046811,1.068,1.114,1.137,1.079,0.956,1.012,0.934,1.028,1.013,0.885,1.116,0.946,0.907,0.906,1.025,1.054,0.959,0.921,1.047,0.924,0.977,1.02,0.975,1.024,1.086,1.109,0.955,1.033,1.192,1.008,1.017,0.945,0.998,0.865,0.91,0.933,1.075,0.986,0.98,1.017,0.91,0.975,1.111,1.063,0.961,1.004,0.995,0.927,1.088,0.941,0.974,1.184,1.026,1.048 +XM_046861,0.837,1.01,0.978,0.741,0.794,1.11,0.856,0.884,0.895,0.847,1.061,1.048,0.924,0.843,1.055,1.087,0.828,1.007,1.015,1.063,0.824,0.878,0.998,0.919,0.948,0.845,1.22,0.851,1.591,1.074,0.951,1.189,1.078,1.256,0.776,1.045,1.114,0.896,1.124,1.182,0.787,1.062,0.877,0.982,0.953,1.043,0.847,0.872,0.909,0.914,1.011,0.928,0.901,1.202 +XM_047025,0.909,1.047,1.152,0.901,1.061,0.942,0.881,0.78,1.064,1.03,0.889,0.976,0.813,0.964,0.933,0.852,0.972,1.113,1.126,1.196,0.908,0.898,0.942,1.095,0.732,1.021,1.229,1.065,0.865,1.097,1.064,1.604,1.098,1.079,0.859,0.959,0.888,0.963,1.039,0.844,1.003,1.019,0.891,0.821,0.948,0.975,0.935,1.013,0.822,0.994,0.923,0.949,1.071,1.089 +XM_047083,0.962,0.926,1.221,0.709,0.848,1.381,0.862,0.783,0.969,0.972,0.784,1.0,0.991,0.554,0.907,1.165,1.248,0.972,0.824,0.728,0.745,1.358,1.079,1.411,0.825,0.73,1.398,0.802,1.082,0.905,1.035,1.538,3.347,0.985,0.633,0.628,0.787,1.515,3.161,1.026,1.029,0.869,0.865,0.995,1.179,0.834,1.016,0.983,1.36,1.057,1.044,0.669,0.627,1.384 +XM_047214,0.962,1.048,1.517,0.566,1.459,1.054,0.695,0.691,1.55,1.381,0.64,1.372,0.899,0.743,0.862,1.056,1.612,1.063,1.192,0.72,0.59,1.391,1.035,1.67,0.591,1.001,2.001,1.005,0.606,1.292,1.336,1.934,1.044,0.952,0.389,0.586,0.799,1.894,1.057,0.988,1.469,1.016,0.637,0.581,1.463,0.849,1.431,1.19,0.839,1.28,1.013,0.977,0.964,1.276 +XM_047325,0.79,0.999,1.303,0.829,0.895,0.928,0.773,0.76,1.362,1.025,1.023,0.826,0.686,0.761,1.045,1.252,0.931,0.99,0.923,0.982,0.864,0.706,1.324,0.99,0.776,0.798,1.212,0.889,0.663,0.96,1.063,1.125,2.704,1.129,0.705,1.153,0.922,0.822,1.185,1.117,1.322,0.976,1.019,1.852,1.089,1.181,1.178,0.711,1.066,0.785,1.091,1.243,1.136,1.895 +XM_047357,0.758,0.826,1.012,1.039,0.72,1.591,1.551,0.642,0.791,0.785,1.543,0.725,0.754,0.75,1.531,1.598,0.834,1.087,0.746,1.74,0.796,0.807,1.213,0.705,1.029,0.719,0.845,0.882,0.939,1.407,0.754,1.123,0.916,1.742,0.705,0.949,1.423,0.723,1.654,1.057,0.779,1.433,0.977,0.947,0.873,1.501,0.868,0.708,1.263,0.758,1.323,0.897,0.867,1.627 +XM_047499,0.965,1.0,1.237,0.751,1.124,0.888,1.003,0.889,1.071,0.939,0.865,0.878,0.94,0.923,0.906,1.007,1.072,1.111,1.241,0.868,1.113,0.879,1.016,1.077,0.933,1.249,1.261,0.967,0.869,0.915,0.931,1.07,1.061,1.001,0.725,0.768,0.991,1.231,1.258,0.896,1.183,0.983,1.034,1.001,0.919,0.899,0.915,1.131,0.859,1.152,1.001,0.917,0.955,1.003 +XM_047610,1.049,1.119,0.891,1.018,0.942,0.956,1.275,1.035,1.029,0.908,1.056,0.936,1.046,1.216,0.758,0.822,1.095,0.921,1.032,0.971,0.995,1.155,1.086,1.026,0.938,1.062,0.974,1.096,1.356,0.975,1.044,1.039,1.033,1.15,0.994,0.828,0.977,0.848,1.082,0.924,1.044,1.025,0.874,1.08,0.998,1.081,0.94,0.973,0.781,0.946,1.052,1.081,1.165,0.964 +XM_047617,1.076,1.187,1.094,1.109,1.04,0.911,0.908,0.965,0.942,1.008,1.077,0.925,0.968,0.942,0.804,0.921,1.156,0.954,0.983,0.886,0.875,0.896,1.076,0.976,1.007,0.955,0.985,1.115,1.131,1.011,0.922,0.995,0.987,0.93,0.936,0.93,0.925,1.013,1.121,0.933,1.046,1.057,1.138,1.077,1.078,1.032,0.974,1.048,1.1,0.968,1.038,0.959,1.068,0.925 +XM_047707,0.883,1.154,1.042,0.893,0.94,1.081,0.859,0.839,0.9,0.974,1.147,0.868,0.91,0.786,1.062,1.69,0.773,0.954,0.954,0.935,0.784,0.902,1.349,1.012,0.88,0.871,1.25,0.964,0.716,1.056,0.832,1.912,4.06,1.161,0.773,1.338,0.943,0.789,1.997,3.921,0.972,0.997,0.762,2.432,0.887,0.916,1.038,0.8,1.004,0.891,0.946,1.363,0.99,1.512 +XM_047871,0.978,1.353,1.269,1.623,1.423,0.997,1.144,0.944,1.133,1.158,1.094,1.626,1.523,0.738,0.938,1.138,1.001,1.035,1.665,1.23,0.913,1.397,1.565,1.478,0.898,1.271,1.067,1.56,0.737,0.953,1.074,0.915,1.517,1.174,0.391,0.779,0.908,1.166,0.895,0.525,1.16,1.1,0.599,0.698,1.278,0.998,0.809,0.898,0.834,0.861,1.022,1.014,1.166,1.231 +XM_048070,1.177,0.919,0.964,1.033,1.024,0.93,0.823,1.044,1.197,0.966,0.738,0.946,0.919,1.151,0.913,0.955,0.956,1.0,1.05,0.936,1.195,0.902,1.05,0.958,0.987,0.999,0.926,1.094,0.988,1.038,1.002,1.012,0.84,0.812,1.077,0.964,1.193,1.024,1.006,0.977,0.964,1.096,1.132,0.943,0.937,1.031,0.923,1.064,0.979,1.013,1.015,1.135,0.988,1.137 +XM_048119,0.838,0.912,0.919,0.957,0.961,1.038,0.987,1.025,0.91,0.956,1.083,1.091,0.999,0.946,1.189,0.946,0.891,0.942,0.961,0.915,1.07,1.046,0.867,0.936,1.088,0.973,1.061,0.958,0.839,1.028,0.966,1.019,0.952,1.068,0.958,1.0,1.029,1.033,1.154,1.006,0.932,0.926,0.966,1.139,0.992,0.891,0.952,1.034,1.0,0.868,1.15,0.935,0.799,0.978 +XM_048128,0.9,1.082,0.965,0.917,1.107,1.116,0.894,1.116,1.049,0.879,0.988,1.045,0.878,0.986,0.86,0.977,0.951,0.982,0.97,1.105,1.043,0.964,0.993,1.08,1.031,1.046,1.139,0.943,0.803,1.006,0.923,1.097,0.848,1.004,1.075,1.03,0.92,1.103,1.126,1.064,1.0,1.095,0.951,0.906,1.015,0.928,1.11,1.096,0.884,1.025,1.024,1.192,0.926,0.959 +XM_048235,1.018,0.863,0.88,0.982,0.939,0.968,0.925,1.13,1.031,0.878,1.05,1.002,0.95,1.082,1.315,1.03,1.053,0.977,1.118,1.027,0.985,0.91,0.996,1.009,1.032,0.952,0.946,1.009,0.853,0.966,0.976,0.925,0.969,0.935,0.968,1.061,0.915,1.178,1.073,0.99,1.047,0.987,0.998,1.002,1.07,0.889,0.87,0.927,1.107,0.92,1.021,0.862,0.931,0.961 +XM_048362,1.574,0.804,1.029,1.135,0.957,1.159,0.653,0.833,1.205,0.799,0.82,0.814,0.873,0.966,1.166,1.188,1.337,1.14,1.545,0.858,1.348,2.483,0.99,1.231,0.9,1.789,0.895,0.938,0.927,1.042,1.26,0.615,0.94,0.91,1.683,0.571,0.917,1.465,1.509,0.96,1.237,0.905,0.857,1.282,1.134,0.802,0.87,2.575,1.004,1.383,0.883,0.568,0.764,0.694 +XM_048457,0.971,0.82,1.477,0.722,1.023,0.911,0.546,0.871,1.449,1.017,0.889,0.779,0.709,0.999,1.143,0.949,1.293,0.888,1.209,0.892,0.82,1.067,1.082,1.155,0.722,1.164,1.723,0.945,0.529,0.969,1.226,1.093,1.226,1.082,0.918,0.861,0.861,1.195,1.256,0.983,1.276,0.897,0.721,1.001,1.169,0.869,0.913,0.997,0.718,0.948,0.961,0.828,1.032,1.463 +XM_048462,1.567,0.925,0.873,0.913,1.385,1.007,0.802,1.744,1.252,0.926,0.816,0.988,1.216,1.144,1.346,0.986,1.053,0.898,1.105,0.779,1.114,1.84,0.961,1.07,1.017,1.481,1.154,1.275,0.755,0.927,1.392,1.212,0.963,1.11,4.393,0.968,0.882,1.555,1.104,0.897,0.957,1.008,0.864,0.949,1.097,0.796,0.939,2.236,0.968,1.088,0.941,0.834,0.822,0.86 +XM_048592,1.061,1.125,0.916,0.982,0.983,1.129,1.17,1.004,0.922,0.849,0.824,0.96,0.886,0.862,1.155,0.892,0.991,0.96,1.031,0.984,1.053,0.902,0.856,0.919,1.438,1.0,1.031,0.933,0.969,1.066,0.981,0.959,0.774,1.073,1.0,0.904,0.997,1.009,0.911,1.152,1.01,0.899,1.034,0.939,1.077,0.786,0.948,1.027,0.928,0.946,0.982,0.942,0.955,1.143 +XM_048721,1.357,1.016,1.919,0.834,1.468,0.787,0.638,1.005,1.566,1.12,0.737,1.458,1.19,1.202,1.268,0.807,1.282,1.092,1.665,0.888,1.14,1.837,0.722,1.647,1.02,1.443,1.601,1.558,0.599,0.97,1.327,1.352,0.938,0.881,0.811,0.606,0.821,1.644,0.734,0.832,1.545,1.001,0.683,0.795,1.449,0.616,0.9,1.279,0.584,1.117,0.808,1.052,1.248,1.516 +XM_048747,0.941,0.968,1.193,0.94,0.925,0.995,0.784,0.697,0.998,1.126,1.029,0.956,0.921,0.84,1.015,1.002,0.972,0.831,1.097,1.079,0.838,0.787,1.024,1.107,1.054,0.93,1.288,1.042,0.63,1.121,0.889,1.312,0.885,0.958,0.534,0.902,0.941,1.054,1.22,0.715,0.947,1.148,0.688,1.266,1.122,1.031,0.928,0.823,0.76,1.057,1.17,1.012,1.388,0.892 +XM_048774,1.046,0.844,1.645,0.831,1.06,1.06,0.709,1.184,1.288,0.954,0.976,0.885,0.897,1.022,1.185,0.966,1.205,0.935,1.152,0.981,0.827,1.237,0.998,1.25,0.839,1.208,1.306,1.047,0.605,0.988,1.367,1.17,0.965,1.012,1.182,0.746,1.112,1.441,1.14,0.976,1.196,0.989,0.769,0.838,1.214,0.824,1.002,1.197,0.793,1.223,1.074,0.86,1.117,1.427 +XM_048786,1.059,1.098,0.961,1.062,1.018,1.217,1.088,1.01,1.113,1.009,0.927,0.896,0.897,1.09,1.323,1.044,0.868,1.018,1.061,0.949,1.047,1.021,0.984,0.98,0.87,1.008,1.006,0.854,0.873,0.991,1.131,0.886,0.971,0.812,1.049,1.027,0.969,1.007,0.975,1.135,0.913,1.168,0.898,1.057,0.983,1.104,1.129,1.127,1.08,0.974,1.08,0.986,1.206,0.99 +XM_048825,1.796,0.829,1.154,1.056,1.386,1.045,0.868,1.223,1.616,1.249,0.986,1.0,1.427,1.112,0.89,0.988,1.566,1.156,1.444,0.929,1.07,1.341,0.894,1.224,0.896,1.343,1.134,1.235,0.911,0.874,1.307,0.916,0.981,1.013,1.6,0.744,0.917,1.227,0.945,0.889,1.607,0.767,1.0,1.054,1.33,1.018,1.076,1.414,0.911,1.448,0.842,0.929,1.239,0.83 +XM_048898,0.711,1.042,1.045,0.848,0.877,0.962,1.068,0.679,0.993,0.896,0.903,0.957,0.9,0.796,0.906,1.082,0.841,0.92,0.705,0.871,0.938,0.845,1.121,1.083,1.028,0.789,0.977,1.011,1.072,1.243,1.014,1.997,1.43,1.32,0.771,1.544,0.997,1.213,1.049,1.602,1.287,1.361,0.778,0.824,1.019,0.867,0.819,0.872,0.948,1.022,0.912,0.877,1.044,1.23 +XM_049037,0.725,1.145,0.722,1.069,0.746,2.962,1.662,0.716,0.807,0.688,1.3,0.78,0.666,0.904,1.046,1.956,0.808,1.406,0.691,2.126,0.956,0.771,1.562,0.816,1.1,0.707,0.597,0.742,1.471,1.548,0.803,1.19,1.888,1.337,0.834,0.79,1.452,0.673,1.968,1.077,0.851,1.732,0.742,0.916,0.69,1.369,1.089,0.696,1.765,0.857,1.812,0.835,0.91,1.153 +XM_049068,0.963,0.981,1.074,0.965,1.097,1.067,1.116,0.972,1.141,1.17,1.098,1.03,0.99,0.903,1.067,0.983,1.178,0.992,0.844,0.976,0.958,0.863,0.947,1.029,1.016,0.959,0.838,0.92,0.982,0.95,0.959,0.973,1.003,1.004,0.956,0.936,0.947,0.917,1.195,1.13,0.796,1.002,0.932,0.827,1.092,1.131,1.094,1.138,0.975,0.984,1.014,0.987,1.001,1.136 +XM_049078,1.093,0.929,1.02,0.984,0.957,0.924,1.114,1.07,0.953,0.906,0.988,1.031,0.978,1.054,1.072,1.1,1.042,1.056,0.974,1.236,1.0,1.008,0.936,0.986,0.995,1.071,0.828,1.105,1.272,1.111,1.016,0.981,1.085,1.001,0.972,1.177,1.052,0.934,0.946,1.171,1.003,0.963,1.2,0.846,1.03,1.089,1.011,0.949,0.975,0.893,1.075,0.866,0.916,0.82 +XM_049237,1.024,0.974,1.043,1.148,1.189,0.949,0.967,0.953,0.864,1.057,0.971,1.043,0.885,1.021,1.081,0.844,0.964,0.905,0.924,0.921,1.013,0.991,1.143,0.934,0.882,1.169,1.052,0.96,1.123,0.999,0.999,1.007,0.957,0.833,1.157,1.125,0.983,1.049,0.98,0.898,0.962,1.036,1.306,1.091,1.019,0.854,0.987,0.866,0.927,1.053,0.925,0.875,1.22,1.001 +XM_049351,0.59,1.092,1.138,0.864,0.644,1.319,0.979,0.538,0.876,0.681,0.993,0.767,0.615,0.838,0.972,1.083,0.708,1.071,0.664,1.378,0.521,0.722,1.277,0.909,0.952,0.685,1.32,0.753,0.673,1.404,0.854,1.752,1.375,1.419,0.66,1.05,1.52,0.688,1.224,1.037,0.842,1.657,0.763,0.711,0.695,1.201,0.809,0.662,1.117,0.68,1.104,1.041,0.802,1.464 +XM_049380,0.974,1.08,0.941,1.015,0.905,0.959,0.85,0.86,1.0,0.97,0.913,1.056,0.87,0.829,0.782,1.159,1.007,1.04,1.007,0.882,0.834,1.065,0.917,0.835,1.039,1.177,0.98,1.175,0.933,0.992,0.897,1.166,1.166,0.933,0.854,0.896,0.95,1.155,1.318,1.0,0.999,0.97,1.019,1.24,1.079,0.925,0.96,1.1,0.933,1.124,0.858,0.876,1.045,1.136 +XM_049568,0.642,3.88,0.92,0.799,0.844,2.644,1.005,0.474,1.062,0.654,1.824,0.942,0.617,0.594,2.82,6.192,0.701,0.679,0.75,0.735,0.475,0.652,4.42,0.904,3.822,0.691,2.688,0.611,0.284,1.409,0.725,0.749,2.195,1.989,0.393,1.997,0.893,0.967,0.844,2.872,1.152,2.791,0.301,3.776,0.962,2.081,1.743,0.582,1.474,0.666,2.668,0.805,0.646,3.201 +XM_049619,0.954,1.135,0.883,0.899,0.992,1.114,1.02,1.192,0.994,1.051,0.867,0.979,0.931,1.007,1.046,1.33,0.78,1.273,0.893,1.185,0.99,0.964,1.025,0.92,1.096,0.957,1.044,0.918,1.45,1.185,0.924,0.874,0.983,1.12,1.041,1.049,1.075,0.901,0.967,0.997,1.066,1.236,1.04,0.8,0.817,1.167,0.918,1.006,1.066,0.879,0.966,1.138,0.89,1.037 +XM_049695,1.064,1.096,1.583,0.861,1.172,0.646,0.64,0.628,1.278,1.15,0.702,0.806,0.871,1.105,0.972,1.039,1.206,1.044,1.291,1.124,1.209,1.167,0.93,1.304,0.858,1.14,1.511,0.95,0.599,0.648,1.191,1.673,1.0,1.086,0.585,0.691,0.801,1.411,0.628,0.748,1.077,0.796,0.537,0.8,1.27,0.943,1.099,1.113,0.617,1.412,0.757,0.809,1.378,0.693 +XM_049838,1.063,1.216,1.067,1.124,0.996,0.994,1.102,1.075,1.135,0.988,1.175,0.975,0.958,0.902,0.906,1.048,0.984,0.912,1.075,1.016,1.084,1.044,0.943,1.034,0.989,0.959,0.972,1.017,1.26,1.026,1.01,0.903,0.969,0.983,1.074,0.997,1.055,0.996,0.892,1.046,0.952,0.939,0.964,0.956,1.025,0.907,0.966,0.87,0.945,1.102,0.983,0.954,0.984,1.073 +XM_049952,0.967,0.971,1.065,0.947,0.95,1.001,0.912,1.052,1.065,0.944,1.016,0.97,1.142,0.93,0.882,0.936,0.87,0.952,0.799,0.956,1.042,0.945,0.971,1.006,0.992,1.01,0.877,0.939,0.882,1.008,0.929,1.052,1.032,0.948,0.9,0.999,1.041,0.959,0.861,0.966,0.994,1.033,0.852,0.892,0.981,1.004,0.927,0.896,1.045,1.013,0.989,1.001,0.904,1.163 +XM_050041,0.985,1.124,1.125,0.985,0.988,0.956,1.231,0.781,1.119,1.005,1.038,1.058,0.886,1.065,1.163,1.299,0.982,0.843,1.001,1.231,1.014,0.896,1.048,0.982,0.791,1.169,0.974,0.952,0.977,1.091,0.975,0.86,0.959,0.95,0.912,0.99,0.935,0.95,1.056,0.931,1.049,1.03,0.835,0.971,1.158,1.038,1.043,1.028,0.997,0.988,1.082,0.928,1.011,0.931 +XM_050105,0.977,0.918,0.931,1.009,1.012,1.017,0.929,1.023,0.915,0.87,1.01,0.927,1.006,0.919,0.846,1.0,1.06,1.059,1.062,0.968,1.037,0.982,1.083,0.963,1.097,0.952,0.889,0.894,0.688,1.129,0.803,1.098,1.007,1.215,0.896,1.002,1.0,0.962,1.28,1.211,0.788,1.059,0.817,0.949,0.994,1.003,1.03,0.894,1.034,0.982,0.985,1.184,0.867,1.122 +XM_050219,1.07,1.158,1.036,1.166,1.035,1.225,1.041,0.888,0.966,0.841,1.967,0.968,1.002,0.897,1.242,1.349,0.862,0.999,1.037,1.131,0.962,0.842,1.615,1.014,1.104,0.889,0.88,1.671,0.872,1.784,0.997,1.239,0.939,2.377,1.053,0.904,1.001,1.216,0.992,0.935,1.771,3.058,0.873,0.97,0.973,1.081,0.902,0.962,0.901,1.05,1.684,0.91,0.853,0.945 +XM_050278,0.862,1.506,0.968,0.781,0.958,0.91,0.96,1.017,0.894,0.821,1.013,0.963,0.835,0.888,0.8,0.931,0.764,0.96,1.006,0.952,1.182,0.936,1.111,0.848,1.565,1.146,0.96,0.946,0.811,1.082,0.88,1.348,1.449,1.186,1.13,3.072,0.847,1.236,1.22,1.148,1.044,0.976,0.925,0.887,0.972,1.098,1.046,0.912,0.97,1.043,0.926,1.089,0.856,1.381 +XM_050325,0.695,1.162,0.824,1.126,0.594,1.396,0.992,0.692,0.851,0.758,1.232,0.606,0.83,0.85,0.965,0.958,0.663,1.137,0.821,1.101,0.68,0.623,1.285,0.724,1.174,0.762,1.045,0.55,0.981,1.649,0.75,1.219,1.142,1.889,0.578,0.747,1.033,0.645,2.014,0.97,0.751,1.194,0.826,1.082,0.792,1.002,0.718,0.677,1.122,0.823,1.048,0.662,0.746,0.977 +XM_050561,0.883,1.26,1.214,0.834,1.029,0.922,0.795,0.699,1.315,0.975,0.901,0.686,0.665,0.995,0.948,0.894,1.151,0.905,1.237,0.961,0.679,0.961,1.279,1.21,0.869,0.916,1.256,0.809,0.704,1.293,0.955,1.992,1.031,1.145,0.649,0.845,0.97,0.98,1.125,1.328,1.236,1.154,1.091,1.077,0.998,1.046,0.908,0.82,0.942,0.716,0.825,1.108,0.971,2.177 +XM_050564,0.851,1.136,0.876,1.067,0.904,1.06,0.882,0.734,0.931,1.094,1.087,0.997,0.936,0.883,0.984,1.158,0.965,0.915,0.748,0.998,0.703,0.842,1.086,1.049,0.925,0.972,1.255,0.901,1.002,0.907,1.005,1.214,1.474,1.264,0.752,1.084,0.822,0.941,1.103,1.061,1.036,0.914,1.015,1.07,0.956,0.775,1.089,0.899,1.131,0.95,1.08,1.188,0.852,1.382 +XM_050625,0.959,0.878,1.126,1.007,0.955,1.144,0.81,0.931,1.047,1.034,0.973,0.936,0.922,0.739,1.014,1.011,0.916,0.978,1.041,1.291,1.338,0.903,1.043,1.044,0.948,1.008,0.923,1.102,0.669,0.868,0.95,5.921,0.939,1.831,1.079,0.864,1.071,1.135,1.014,1.452,1.049,1.507,0.855,0.906,1.086,0.89,1.05,1.084,0.92,0.944,1.041,0.943,0.874,0.904 +XM_050644,1.012,0.865,1.167,0.999,1.01,0.97,0.775,1.439,1.296,1.09,0.866,0.918,0.927,1.5,1.138,1.179,1.208,1.012,1.681,0.756,1.194,1.186,1.185,0.954,0.77,1.079,1.093,1.154,1.076,0.845,1.263,0.996,1.085,0.92,1.397,0.855,0.753,1.066,1.058,1.022,1.113,0.764,0.948,0.818,1.118,0.878,1.007,1.326,0.678,1.271,0.886,0.927,1.067,0.866 +XM_050793,0.539,1.074,1.308,0.723,0.957,1.133,0.59,0.408,1.116,1.115,0.638,0.807,0.76,0.44,0.927,1.803,0.799,1.074,1.142,0.998,0.485,0.778,1.854,1.234,0.502,0.726,1.478,0.801,0.39,1.02,0.984,1.157,2.218,1.329,0.114,0.996,0.931,0.818,1.648,0.615,1.216,1.132,0.632,1.462,1.002,0.793,1.178,0.642,1.189,0.822,1.242,0.875,0.741,1.851 +XM_050846,0.776,0.917,0.725,1.042,0.729,1.729,0.872,0.885,0.762,0.739,1.222,0.861,0.849,0.686,1.059,1.379,0.809,1.019,0.878,1.178,0.732,0.73,1.476,0.796,1.316,0.946,0.775,0.711,1.109,1.583,0.729,0.867,0.838,1.341,0.905,0.991,1.492,0.762,1.844,0.957,0.803,1.304,0.926,1.583,0.77,1.079,1.045,0.816,0.935,0.914,1.009,0.755,0.779,1.268 +XM_051017,1.048,0.992,0.958,0.857,0.963,0.921,0.858,0.998,0.939,0.987,0.985,1.021,0.998,1.02,1.023,0.951,0.937,1.002,0.898,1.064,1.091,0.938,0.951,1.039,0.999,1.06,1.108,1.002,0.741,1.037,0.945,0.899,0.897,1.051,0.923,1.026,0.981,1.032,0.938,1.229,0.93,1.096,1.021,1.052,0.938,1.035,0.969,1.017,1.093,0.985,1.085,1.052,0.985,0.933 +XM_051081,0.982,0.959,1.11,1.117,1.06,0.982,0.816,0.853,1.031,0.996,0.95,0.983,0.944,1.105,0.766,0.962,0.984,1.053,1.021,1.003,0.942,0.917,1.106,0.917,1.06,0.951,1.031,0.901,1.065,1.099,0.93,1.055,0.929,0.913,1.238,1.102,0.997,0.855,1.113,0.994,0.949,1.017,1.146,0.973,0.936,1.138,0.969,0.997,0.98,0.902,1.023,0.948,0.956,1.065 +XM_051091,1.07,0.976,0.966,0.954,0.862,1.048,1.246,1.09,1.032,0.9,1.036,0.8,0.954,0.847,0.966,1.083,0.976,1.058,0.93,1.117,0.996,0.96,0.967,1.03,1.075,1.033,0.896,1.145,0.977,1.065,1.066,1.137,0.938,1.118,0.911,0.899,1.158,1.173,1.16,1.008,0.915,1.093,1.077,0.897,1.044,1.008,0.861,0.953,1.234,0.898,1.029,0.928,1.16,1.277 +XM_051093,1.02,1.131,1.05,1.075,0.864,0.88,0.879,1.027,1.033,0.883,0.98,0.94,0.826,0.903,0.97,1.024,1.001,0.93,0.852,0.996,0.999,1.012,1.091,0.966,1.019,0.922,0.934,0.951,0.932,1.21,1.146,1.215,0.9,0.95,0.997,0.973,1.013,0.985,1.069,0.96,1.03,1.011,0.914,1.102,0.92,0.864,0.838,1.061,1.096,0.877,1.145,1.024,0.886,0.991 +XM_051146,0.819,1.086,1.319,0.93,0.827,1.016,0.86,0.799,1.277,0.95,0.877,0.84,0.889,0.959,1.187,0.907,0.876,0.91,0.931,1.419,0.865,0.749,1.161,0.927,0.916,0.862,1.341,0.935,0.628,1.14,1.085,1.314,1.973,1.167,0.751,0.975,0.904,0.873,1.216,1.275,1.011,1.037,0.675,1.125,1.047,0.999,0.894,0.859,0.911,0.982,0.958,0.991,0.934,1.661 +XM_051160,0.974,0.841,1.361,0.896,1.354,0.902,0.825,0.855,1.312,1.216,0.908,0.847,0.747,1.128,1.106,0.989,1.076,1.096,1.28,1.009,0.943,1.184,1.03,1.101,0.778,1.155,1.226,1.197,0.711,0.936,1.165,0.959,1.071,0.977,0.786,0.925,0.873,1.153,1.184,1.107,1.329,0.891,0.644,1.166,1.29,0.976,0.899,1.074,0.949,1.103,0.982,0.932,1.1,1.278 +XM_051197,0.871,1.085,1.019,1.024,0.978,1.256,0.987,1.115,1.061,0.901,1.084,0.881,0.934,1.027,1.057,1.031,1.28,0.835,0.936,1.017,1.112,1.079,0.884,0.974,1.017,0.884,1.082,0.832,1.063,1.113,1.207,1.056,1.0,1.0,1.036,0.857,0.91,0.871,1.011,1.018,0.862,0.974,1.218,1.006,0.925,1.031,1.198,1.032,1.071,0.918,1.01,1.02,0.922,1.109 +XM_051264,1.0,1.026,1.068,1.127,1.176,0.968,0.892,0.768,1.235,1.0,0.976,1.005,0.927,1.105,1.116,0.888,1.043,1.024,1.138,0.933,1.016,1.122,1.004,1.07,0.993,1.069,1.148,1.023,0.789,0.871,1.094,1.024,1.117,1.055,0.92,1.029,0.873,1.099,0.923,0.941,1.105,0.849,0.866,0.997,0.992,1.009,0.928,1.066,0.947,1.15,0.904,0.895,1.18,0.923 +XM_051528,1.025,0.993,0.978,1.051,0.915,0.968,1.068,0.883,0.881,1.05,0.943,1.035,0.907,1.022,1.022,0.935,1.022,1.085,1.072,1.028,0.969,1.01,0.905,0.969,0.951,1.011,0.963,0.984,1.005,1.058,1.022,0.946,0.848,1.009,0.966,1.003,1.053,0.9,1.0,1.12,1.032,1.018,0.95,1.036,1.048,0.923,0.99,0.941,1.025,1.091,0.95,0.968,0.969,0.961 +XM_051692,0.89,1.0,1.078,1.046,0.81,0.969,1.111,0.684,0.965,0.895,1.198,0.879,0.94,0.908,1.037,1.014,0.826,1.022,0.959,0.898,0.962,0.778,1.23,0.997,0.925,0.805,0.87,0.861,1.036,1.03,0.774,0.99,0.947,1.091,0.698,0.9,1.207,1.021,1.133,1.118,0.773,1.106,1.008,1.052,1.028,1.162,1.002,0.87,0.933,0.932,1.278,1.088,0.953,1.068 +XM_051699,1.002,0.947,0.957,0.932,0.976,0.932,0.926,0.911,0.914,1.031,0.83,0.996,0.914,0.905,0.927,0.97,1.055,0.991,0.964,0.981,0.922,1.003,0.967,0.96,0.986,1.004,1.084,1.064,0.815,1.03,1.051,1.012,0.823,1.035,0.948,0.913,1.033,1.105,1.046,0.985,1.137,1.101,1.002,1.037,1.029,0.891,1.126,1.097,1.044,0.968,1.015,0.951,0.808,0.947 +XM_051970,1.064,0.931,1.026,0.851,0.971,1.004,1.151,1.064,0.983,0.928,1.117,0.997,1.091,0.952,0.956,0.987,1.09,0.958,0.932,0.928,1.108,1.086,1.022,0.9,0.979,1.088,0.842,1.076,0.904,1.056,0.925,1.045,0.899,1.003,1.081,0.996,0.999,0.966,0.96,1.075,0.919,0.991,1.022,0.925,1.056,0.841,1.057,0.944,1.111,1.058,1.066,0.938,1.094,1.111 +XM_052386,0.673,1.014,1.507,0.545,0.862,1.189,0.662,0.491,1.22,0.873,0.891,0.86,0.664,0.59,0.823,1.009,1.158,0.9,0.75,1.13,0.488,0.826,1.119,1.097,0.64,0.57,1.134,0.996,0.438,1.94,0.756,2.576,0.976,1.233,0.745,1.149,0.771,0.778,1.287,1.147,1.085,1.243,0.7,1.052,0.808,0.919,1.014,0.513,0.689,0.735,1.15,0.925,0.896,1.046 +XM_052561,0.998,1.09,1.092,0.74,1.024,0.961,0.779,1.119,0.988,1.011,1.176,1.176,0.925,1.154,1.112,1.038,0.894,0.947,0.882,0.925,1.104,1.017,1.001,0.974,1.04,1.023,0.989,1.069,0.999,1.001,0.982,1.052,1.009,0.894,1.021,1.013,1.058,0.986,1.017,1.029,1.023,1.07,0.987,0.966,1.035,1.118,1.139,0.876,0.95,0.965,1.101,1.032,0.932,0.872 +XM_052597,1.099,1.067,0.9,0.982,0.944,0.948,0.85,0.997,1.149,0.835,1.002,0.915,0.897,0.937,1.45,1.129,0.924,1.008,1.079,0.994,0.962,1.087,0.991,1.144,0.999,0.908,1.047,1.059,1.235,0.968,1.076,1.037,1.15,0.783,1.151,0.888,1.025,0.879,0.786,0.867,1.169,1.067,0.913,1.026,0.947,1.028,1.194,1.044,1.064,0.996,1.04,0.963,1.101,1.12 +XM_053966,0.757,1.525,0.852,1.092,0.706,1.716,1.082,0.842,0.95,0.683,1.723,0.798,0.892,0.745,1.008,1.918,0.691,1.164,0.791,1.69,0.618,0.791,1.826,0.762,1.265,0.782,0.715,0.857,0.946,1.439,1.006,0.993,1.354,1.913,0.888,0.806,1.128,0.865,2.283,1.002,0.688,1.739,0.795,1.296,0.766,1.117,0.701,0.764,0.769,0.828,1.375,0.71,0.778,0.856 +XM_054869,0.981,1.158,0.984,1.057,0.896,0.938,0.957,1.043,1.026,1.168,0.82,0.853,0.92,1.193,0.915,1.079,1.013,0.991,0.94,1.111,0.935,0.925,0.948,0.976,1.173,1.073,1.063,0.984,0.999,1.016,0.894,0.995,1.183,1.237,0.938,1.092,0.854,1.398,0.988,0.97,1.086,1.422,1.277,1.089,0.967,0.895,0.894,0.958,0.984,1.05,0.898,0.915,1.083,0.959 +XM_054983,0.826,1.046,0.836,0.972,0.835,1.316,0.94,0.838,1.075,0.941,1.083,0.817,0.814,0.745,0.975,0.96,0.758,0.938,0.925,0.943,0.955,0.822,1.435,0.864,1.094,0.881,1.137,0.822,0.839,1.334,0.945,1.605,1.631,1.391,0.765,0.921,1.082,0.726,1.356,1.166,1.071,1.346,0.762,1.114,0.836,1.096,0.884,0.863,0.965,0.813,1.124,1.293,0.973,1.702 +XM_055095,1.213,0.995,0.984,1.075,1.108,1.018,1.053,1.089,1.106,0.935,0.972,0.954,1.024,0.954,0.84,1.001,0.931,1.04,0.982,1.044,0.845,1.067,1.033,1.065,0.866,1.093,1.088,1.085,1.045,1.069,0.987,0.942,0.887,0.85,1.062,1.01,0.904,1.036,1.081,1.001,1.016,0.968,1.116,0.931,1.023,1.054,0.91,0.993,0.98,1.027,0.97,1.083,0.778,0.927 +XM_055195,0.66,0.824,1.162,0.759,0.751,0.85,0.59,0.306,1.13,1.072,0.825,0.73,0.478,0.618,0.789,1.177,0.873,0.776,0.926,0.974,0.421,0.646,1.458,1.076,0.533,0.889,0.988,0.638,0.44,1.016,0.86,1.405,1.59,1.045,0.16,0.871,0.998,0.743,1.538,1.939,1.1,1.213,0.883,1.684,1.267,0.976,1.309,0.657,1.03,0.811,1.243,1.256,0.907,4.339 +XM_055481,1.01,1.04,0.866,0.976,1.026,0.907,1.145,0.936,0.874,0.919,0.98,0.956,0.925,0.894,1.051,1.09,1.025,1.033,0.966,0.937,0.954,1.089,1.048,1.064,0.956,1.032,1.037,0.961,1.212,1.001,1.026,1.094,0.979,0.976,1.157,1.089,1.083,0.946,0.965,1.045,0.971,0.947,1.047,0.945,0.995,1.108,0.999,0.935,1.029,0.988,1.018,1.113,0.965,1.022 +XM_055514,1.049,1.018,1.1,0.971,1.058,0.961,1.078,1.067,0.863,0.996,1.0,1.227,1.0,1.189,1.158,1.058,1.097,1.026,0.865,1.038,1.212,1.042,0.884,1.019,0.991,0.979,0.888,0.845,0.813,1.047,1.093,1.017,0.954,0.985,1.09,0.994,0.975,1.104,1.022,0.96,1.051,0.95,0.913,0.993,0.957,0.962,0.898,1.035,0.932,0.979,0.939,0.897,1.029,1.081 +XM_055636,0.978,0.895,0.894,0.958,0.925,0.971,0.855,0.83,1.034,0.977,0.862,0.922,1.027,1.163,1.099,0.999,1.053,1.056,1.005,1.087,0.947,0.858,0.948,0.96,1.009,0.902,1.067,0.963,1.02,0.96,0.991,1.013,1.046,1.097,1.011,1.089,0.979,1.103,0.871,1.187,0.934,1.099,0.784,1.041,1.031,0.85,0.892,0.911,0.97,1.014,0.982,1.061,1.008,0.959 +XM_055725,0.308,1.929,0.877,0.552,0.528,1.165,0.842,0.182,0.905,0.682,1.196,0.44,0.269,0.338,0.63,1.525,0.552,1.07,0.469,1.653,0.152,0.458,1.495,0.593,0.431,0.416,0.816,0.505,0.656,3.633,0.427,2.251,1.175,1.346,0.124,2.594,1.628,0.622,1.6,0.931,0.639,1.23,1.075,1.673,0.593,1.569,1.478,0.393,1.116,0.368,1.106,1.602,0.338,1.026 +XM_055866,1.09,0.751,1.228,0.615,0.708,1.976,0.581,0.604,1.399,1.187,1.58,0.607,0.598,0.689,1.009,1.71,0.755,0.714,1.787,0.893,0.531,0.709,1.446,0.872,0.391,0.746,1.25,0.632,0.432,1.092,0.928,1.239,2.347,0.704,1.199,0.653,0.993,0.684,1.947,1.119,0.792,0.601,0.528,3.807,0.953,1.639,1.6,0.869,1.027,0.953,1.508,1.254,0.957,1.646 +XM_056082,0.893,0.96,0.989,0.953,0.948,1.125,0.884,0.811,1.056,0.971,1.013,0.995,0.846,0.948,0.852,1.172,0.99,0.921,1.069,1.163,0.901,0.936,1.009,0.915,0.878,0.904,1.104,0.93,1.049,1.305,0.944,1.127,1.186,1.149,0.835,0.924,0.98,0.999,0.94,1.052,0.91,1.154,0.955,1.198,0.914,1.057,1.112,0.933,1.042,0.99,0.945,0.808,0.94,1.156 +XM_056254,0.983,0.945,1.015,1.001,1.04,1.156,0.85,0.8,1.016,0.944,0.973,1.127,0.835,1.056,1.095,1.153,0.854,0.946,1.113,1.083,1.111,0.875,1.219,0.806,0.996,0.917,1.255,0.914,0.966,0.955,1.224,0.789,1.013,0.917,1.105,0.927,0.967,1.03,0.937,1.0,0.938,0.857,0.977,0.848,1.104,0.837,1.04,0.949,0.91,1.148,1.081,0.934,1.0,0.98 +XM_056282,0.888,1.075,0.956,0.969,0.953,1.059,1.002,0.984,1.012,1.181,0.97,1.138,1.073,1.055,0.892,0.978,1.127,1.094,0.942,0.976,1.044,0.966,0.966,0.968,0.889,0.961,1.145,1.006,0.859,0.951,1.124,0.998,0.968,0.941,1.086,0.964,1.032,1.191,0.933,1.086,1.077,0.956,1.048,0.913,1.083,1.028,0.882,1.018,0.973,1.05,0.936,0.846,1.041,0.811 +XM_056298,1.288,0.885,0.894,1.039,1.072,0.979,0.947,1.07,1.025,1.002,1.121,0.98,0.967,0.963,0.919,0.884,0.829,0.908,1.063,0.916,1.063,1.171,1.078,1.051,1.106,1.132,1.051,0.934,1.256,1.093,1.036,1.109,0.737,1.394,1.073,1.057,0.899,1.023,0.935,1.319,0.923,1.056,1.239,1.07,0.983,0.952,0.97,0.997,1.0,0.9,1.077,0.863,0.879,1.096 +XM_056434,1.095,0.948,0.902,0.976,0.958,1.034,0.964,1.002,0.841,1.076,0.976,1.006,0.905,1.14,0.956,1.047,1.027,1.074,0.999,1.016,1.247,1.018,1.073,1.118,0.959,1.156,1.27,1.008,0.625,1.05,0.986,1.133,1.01,0.936,0.937,0.947,0.994,0.963,0.964,1.036,0.827,0.907,1.12,1.074,0.903,0.96,0.9,0.896,1.123,1.005,0.968,1.039,1.019,0.982 +XM_056455,0.627,1.107,0.667,0.713,0.654,0.806,1.048,0.625,0.562,0.591,0.942,0.579,0.565,0.669,1.033,0.905,0.631,0.715,0.616,0.945,0.641,0.586,1.691,0.653,0.863,0.612,0.778,0.618,0.517,2.771,0.62,6.796,2.29,1.796,0.779,1.417,1.087,0.638,3.081,6.223,0.705,2.063,1.208,0.934,0.713,1.826,1.281,0.657,0.982,0.676,1.405,4.069,0.852,1.744 +XM_056680,1.096,0.98,1.039,0.906,1.198,0.913,0.827,1.168,1.219,1.089,0.794,1.138,1.091,1.036,1.129,0.743,1.22,1.012,1.28,0.926,0.852,1.102,0.894,1.134,0.856,0.941,1.15,0.902,0.866,0.91,1.083,0.909,1.448,1.047,1.85,0.838,0.819,1.339,1.318,0.739,1.223,0.827,0.801,0.873,0.896,0.872,1.157,1.074,1.0,1.109,1.129,0.852,1.183,1.058 +XM_057107,0.988,1.092,1.04,0.9,0.88,0.842,0.871,1.168,1.079,1.025,1.027,1.17,1.086,1.163,0.856,0.847,1.03,1.124,1.021,0.981,0.91,0.741,1.014,0.996,0.875,0.993,0.946,1.103,1.242,1.111,0.998,1.032,1.135,0.973,1.075,1.002,1.165,1.014,1.062,0.985,0.915,0.93,0.961,1.047,1.035,1.226,1.03,0.962,1.002,0.989,1.106,1.122,0.905,0.933 +XM_057296,1.096,1.046,0.941,0.932,0.901,0.98,0.963,1.148,1.048,0.951,0.921,1.016,0.901,0.835,1.058,0.98,1.061,0.839,1.027,1.103,0.971,0.967,0.997,0.949,1.092,1.059,0.904,0.994,1.065,0.982,0.91,0.905,1.395,0.995,1.094,0.875,1.113,1.116,1.039,1.047,0.958,1.102,0.877,1.025,1.004,1.058,1.0,0.938,1.098,1.015,1.011,0.857,1.0,0.862 +XM_058097,0.878,1.205,1.268,0.667,1.102,1.129,0.723,0.649,1.255,1.151,1.138,0.951,0.942,0.741,0.941,0.851,1.185,0.954,0.822,1.248,0.54,1.012,1.529,1.172,0.822,0.967,1.479,1.182,0.694,1.275,0.917,1.068,0.659,1.17,0.483,0.831,0.895,1.128,1.131,1.03,1.224,1.142,0.829,1.077,1.065,1.287,0.893,0.859,0.886,0.736,1.075,0.704,0.938,0.937 +XM_058332,0.955,1.143,0.966,0.965,1.022,1.127,1.284,0.957,0.924,1.025,0.956,1.117,0.986,1.044,1.093,1.023,1.021,1.031,0.913,0.976,1.007,1.121,0.984,0.855,1.02,0.891,0.822,0.863,0.881,0.942,1.051,0.862,1.101,0.9,1.13,1.229,1.175,0.856,0.946,1.087,0.999,0.839,0.957,1.015,1.008,1.12,1.063,1.086,0.894,1.046,1.051,1.059,1.099,1.117 +XM_058404,1.496,0.881,0.941,1.201,1.652,0.878,0.958,1.591,0.879,1.113,0.826,1.203,1.151,1.024,1.022,1.307,2.383,1.064,1.308,1.015,1.086,1.202,0.782,1.473,0.874,1.301,1.136,1.453,0.954,0.955,1.94,0.93,1.202,0.86,4.215,0.924,0.988,1.467,0.881,0.923,0.975,0.822,0.862,0.809,1.373,0.959,1.511,1.474,0.799,1.826,1.13,1.113,1.235,0.968 +XM_058409,0.969,1.057,1.025,0.959,1.04,0.931,1.215,0.948,0.974,1.133,0.957,1.083,1.071,0.98,0.975,1.091,1.062,0.95,1.07,1.084,1.026,0.96,1.046,0.924,0.941,1.01,1.099,1.141,0.804,1.065,1.155,1.251,1.088,0.985,1.019,0.97,0.943,1.039,1.131,0.937,1.052,1.089,1.297,0.979,1.002,0.998,0.897,0.841,0.859,0.956,1.0,1.016,0.894,1.028 +XM_058460,0.755,0.899,1.081,0.892,0.887,1.036,0.621,0.682,1.586,1.185,1.052,0.986,0.708,0.712,1.074,1.423,0.833,0.912,0.978,0.923,0.589,0.973,1.263,1.533,0.657,0.733,1.59,1.003,0.629,1.311,1.04,0.87,1.803,0.97,0.384,1.79,1.095,0.997,1.225,0.96,1.308,1.051,0.782,1.158,1.345,1.066,1.213,0.855,1.223,0.872,0.878,1.412,0.98,1.893 +XM_058581,0.901,1.02,0.966,0.875,0.951,0.808,0.95,1.193,0.96,1.053,0.985,0.987,1.067,0.927,0.908,0.932,0.879,0.869,0.922,0.854,0.826,0.942,1.377,0.961,0.926,0.936,0.989,0.9,0.836,1.045,0.998,1.158,1.29,1.105,0.698,1.342,1.086,1.008,1.15,0.907,1.017,1.097,0.881,1.019,0.981,0.978,0.958,1.014,0.967,0.994,0.96,0.822,1.123,1.804 +XM_058628,0.613,1.319,0.97,0.918,0.731,1.395,0.728,0.55,0.818,0.855,1.489,0.936,0.706,0.695,0.918,1.541,0.625,0.96,1.075,1.117,0.803,0.789,1.318,0.8,0.797,0.684,0.993,0.836,0.59,1.272,0.85,1.272,1.555,1.742,0.434,0.937,1.316,0.87,1.161,0.928,0.935,1.135,0.755,1.532,0.762,1.057,0.913,0.663,0.961,0.615,1.09,0.752,0.79,1.069 +XM_058661,0.819,1.102,1.1,0.797,1.036,0.947,0.848,0.704,1.107,1.165,1.093,1.031,0.899,0.935,0.986,1.314,0.939,1.028,0.925,0.903,0.779,1.036,1.151,0.93,0.725,0.892,1.165,0.9,0.869,0.92,1.198,0.877,1.177,1.183,0.759,0.891,1.03,0.931,1.208,0.766,0.997,1.087,0.969,1.186,1.216,1.152,1.09,0.961,1.003,0.977,1.027,0.819,0.821,1.332 +XM_058681,1.229,0.672,0.641,1.327,1.043,1.716,0.538,0.87,1.123,1.014,1.617,0.967,1.046,0.822,0.974,2.716,0.576,1.085,1.733,0.854,0.94,1.744,1.63,1.088,0.976,1.979,0.474,0.798,0.775,1.031,1.044,0.579,1.059,1.617,1.059,0.535,1.054,0.71,2.085,0.269,0.54,1.452,0.699,2.096,1.2,0.848,0.963,1.87,0.493,1.185,0.982,0.364,0.678,0.639 +XM_058719,0.82,1.138,0.92,0.842,1.04,1.093,0.766,0.844,0.955,1.059,1.345,1.038,0.873,0.895,0.897,1.487,0.981,0.887,1.336,0.995,0.945,0.91,1.648,0.95,0.813,1.114,0.945,0.999,0.875,1.322,1.061,1.007,1.003,1.311,1.08,1.293,1.153,0.967,1.103,0.665,1.178,1.089,0.898,0.931,0.97,0.985,0.875,0.913,0.818,0.884,0.876,1.002,1.227,1.483 +XM_058720,0.961,0.958,1.205,0.924,0.863,1.06,0.765,0.698,1.113,0.877,0.991,0.889,0.85,0.99,1.252,1.245,1.05,0.815,1.254,1.032,1.061,0.983,1.405,0.932,0.868,1.139,1.446,0.987,0.744,1.124,1.123,0.98,1.337,1.199,0.978,1.047,1.127,0.997,1.189,0.891,1.131,0.965,0.774,0.941,0.991,0.867,0.909,0.823,1.078,0.995,1.104,0.948,0.977,1.145 +XM_058721,1.035,0.94,0.925,0.982,0.963,0.938,0.806,1.032,1.075,1.007,1.153,0.935,1.08,1.067,0.939,1.023,1.087,0.913,0.951,1.134,1.066,1.062,1.056,1.09,1.026,1.097,1.003,1.008,1.612,1.159,0.97,0.955,1.041,0.968,1.097,0.934,1.04,0.919,0.952,1.136,1.12,1.022,0.907,0.909,0.978,1.001,0.93,0.973,1.044,1.024,0.864,0.85,1.149,0.944 +XM_058775,0.999,1.007,1.038,0.967,0.844,0.963,0.929,0.977,1.103,0.968,1.081,0.993,0.965,1.223,1.117,0.905,1.02,0.935,1.052,0.993,0.996,0.758,0.985,1.025,1.073,1.0,1.045,1.036,0.932,1.061,1.005,1.035,1.063,1.115,0.907,0.956,1.093,0.913,1.02,1.018,1.031,1.023,1.029,1.0,0.965,1.218,1.03,0.955,1.047,0.987,1.04,0.978,1.029,0.993 +XM_058800,0.8,1.201,0.995,0.885,0.866,1.102,0.794,0.726,1.21,0.902,0.803,0.845,0.714,0.868,1.024,1.075,1.069,0.864,0.825,1.202,0.732,0.905,1.084,1.085,0.905,0.83,1.046,0.918,0.713,1.38,1.045,3.296,1.68,1.189,0.826,0.929,0.94,0.932,1.144,1.285,1.023,1.097,0.817,0.85,0.954,0.933,1.027,0.795,0.918,0.899,1.178,0.764,0.874,1.217 +XM_058804,1.076,1.058,0.82,0.926,0.935,0.881,1.055,0.928,0.999,0.887,1.026,1.088,0.996,1.037,0.79,0.947,0.987,1.249,1.071,1.034,0.957,0.928,1.105,0.938,1.002,1.205,1.087,1.176,0.8,1.022,1.214,0.834,1.086,0.85,0.934,1.002,0.98,0.9,0.981,0.902,0.901,0.967,1.015,1.133,0.884,0.959,0.943,0.93,1.047,0.916,1.071,1.137,1.001,0.9 +XM_058813,0.595,1.332,1.282,0.726,0.935,1.418,0.767,0.728,0.909,0.812,0.869,1.015,0.958,0.722,1.154,1.407,0.922,0.879,1.065,1.138,0.462,1.021,1.329,1.003,0.747,0.55,1.26,0.707,0.207,1.328,1.051,1.593,1.766,1.596,0.348,0.897,1.142,0.965,1.577,1.049,0.934,1.226,0.169,1.546,0.958,0.953,0.993,0.665,1.058,0.668,1.193,0.981,0.624,2.126 +XM_058857,0.975,0.995,0.876,1.007,1.109,0.86,0.945,0.999,0.926,1.036,0.981,0.998,0.878,1.105,2.047,0.894,0.911,0.927,1.007,1.087,1.014,0.949,0.943,0.896,0.976,1.097,0.96,1.009,1.199,1.1,1.045,0.936,0.944,1.177,1.069,0.958,1.154,1.118,1.063,0.987,0.953,1.31,1.074,0.993,0.844,0.82,1.096,1.071,1.071,1.179,0.863,0.833,0.984,0.968 +XM_058879,1.254,0.737,1.092,0.882,1.233,0.837,1.106,1.064,1.389,1.02,0.985,1.007,1.442,0.958,0.918,0.837,1.479,1.246,1.338,0.744,0.972,1.05,1.048,1.097,0.862,1.365,1.147,0.997,1.132,1.035,1.02,0.935,0.907,0.982,1.736,0.975,0.989,1.242,1.389,0.872,1.088,0.852,1.059,1.028,1.158,0.948,0.855,1.871,1.077,1.199,0.838,0.753,0.823,1.051 +XM_058889,0.779,1.184,1.056,0.963,0.928,1.303,0.792,0.734,1.015,0.831,1.118,0.887,0.955,0.759,0.872,1.141,1.051,1.024,1.106,0.852,0.893,0.771,1.181,0.99,1.047,1.098,1.094,0.801,0.85,1.108,0.96,1.477,0.953,1.209,0.637,0.818,1.025,0.926,1.376,0.776,0.96,1.147,0.903,1.353,0.854,0.844,0.975,0.754,0.958,0.956,1.09,0.827,0.834,1.51 +XM_058908,0.835,1.014,0.962,1.002,0.964,0.924,0.98,1.338,1.041,0.999,1.033,0.94,1.096,1.185,1.011,1.051,0.999,1.093,0.995,0.977,1.085,1.005,1.061,0.97,0.969,0.97,1.04,1.027,1.125,0.932,1.03,0.949,0.982,0.916,1.022,0.947,1.082,0.999,0.998,0.975,1.033,0.982,1.021,0.972,1.09,1.216,1.015,0.982,0.944,0.967,0.997,1.019,1.111,0.966 +XM_058931,1.156,1.086,1.151,1.192,1.216,0.85,1.209,1.108,0.875,1.358,1.482,1.006,1.105,1.075,0.738,0.899,0.77,1.289,1.184,0.793,0.97,0.974,0.92,1.046,1.161,0.949,0.893,1.041,1.387,1.03,1.005,1.062,0.807,1.012,1.194,1.15,0.949,1.51,1.104,0.982,0.938,1.352,1.064,1.07,0.921,0.799,0.926,1.178,1.123,0.909,0.868,0.919,1.035,0.967 +XM_058956,0.907,0.957,1.09,1.117,1.01,1.024,0.888,0.954,0.976,0.949,1.095,0.953,1.094,0.848,0.889,0.903,1.1,0.948,1.037,0.887,1.068,0.865,1.009,1.094,1.055,1.024,0.915,0.866,0.798,1.086,0.924,0.936,1.087,0.992,1.079,0.949,0.971,1.007,0.884,0.928,0.962,1.029,0.897,0.869,1.042,1.23,1.042,0.963,1.091,0.927,0.926,1.088,1.054,0.981 +XM_058961,0.701,0.98,1.309,0.799,1.11,0.961,0.684,0.589,1.085,1.033,1.645,1.032,1.065,0.54,0.684,1.62,1.013,1.29,1.722,0.965,0.711,1.002,1.594,1.275,0.612,1.178,1.175,0.998,0.55,0.879,0.913,0.907,0.986,1.476,0.528,0.807,0.96,1.145,1.099,0.828,1.197,1.028,0.565,1.171,1.235,0.835,1.097,1.485,0.868,0.988,0.842,0.699,0.98,0.999 +XM_058964,0.948,1.015,0.995,0.952,0.978,1.068,1.283,0.994,1.073,0.94,0.905,1.041,0.948,0.979,0.99,1.0,0.969,0.901,0.882,0.97,0.92,0.888,1.098,1.073,0.978,1.02,1.0,0.966,0.914,1.019,0.95,0.985,1.013,1.01,0.953,0.967,0.906,1.041,1.086,1.034,0.786,0.924,0.994,1.08,1.032,1.059,1.073,1.101,0.925,1.036,0.87,1.027,1.041,0.998 +XM_058999,0.71,1.01,0.725,1.251,0.688,2.127,0.764,0.764,1.009,0.96,1.493,0.984,1.128,0.643,1.009,1.153,1.518,0.834,0.901,0.83,0.983,0.991,0.971,0.905,1.006,0.9,1.18,0.729,0.923,1.441,0.727,1.003,1.47,1.429,0.631,0.851,1.337,1.002,3.165,0.891,0.949,0.795,1.113,2.005,0.812,0.739,0.77,1.169,0.767,0.942,0.81,1.098,0.998,1.099 +XM_059037,1.08,1.174,1.08,0.934,0.973,0.982,0.995,1.101,1.118,0.961,1.103,0.926,0.857,0.82,0.959,0.881,1.03,0.876,1.057,0.967,1.115,1.11,0.979,0.987,0.957,0.773,0.895,1.106,1.0,0.954,1.076,1.032,1.133,0.965,1.036,1.079,1.076,0.978,0.862,0.933,1.089,0.968,1.099,0.869,1.002,0.97,1.051,0.899,1.001,1.137,0.901,1.036,1.137,1.081 +XM_059047,0.72,3.019,0.979,1.141,0.924,1.411,0.934,0.95,0.926,0.98,1.195,0.902,0.822,0.715,0.941,1.4,0.901,1.089,0.945,1.54,0.781,0.919,1.279,0.888,0.852,0.854,0.91,0.922,0.912,1.339,0.947,0.941,1.729,1.739,0.828,2.78,0.913,1.026,1.32,0.973,0.856,0.989,0.781,1.079,0.963,1.36,1.113,0.949,0.885,0.851,1.183,0.735,0.937,1.472 +XM_059051,1.09,1.033,0.925,0.909,0.951,1.006,0.892,0.999,0.984,1.016,1.049,0.923,1.07,0.977,0.963,1.059,1.028,1.073,0.982,1.075,0.988,1.175,1.044,0.97,0.964,0.882,0.932,1.042,1.097,0.984,1.021,0.968,1.038,1.021,0.994,1.108,0.904,1.053,1.001,1.036,1.045,1.136,0.772,0.96,0.972,0.973,1.056,1.112,1.182,1.024,1.032,1.083,0.901,1.037 +XM_059061,0.974,0.966,1.082,0.869,1.087,0.955,0.914,1.158,0.858,0.851,0.817,0.972,0.968,1.101,0.899,0.929,1.008,0.924,0.907,0.988,1.095,1.005,0.894,1.106,0.975,1.119,0.994,1.097,0.703,0.971,1.091,0.932,0.932,0.956,0.832,0.871,1.055,1.004,1.037,0.99,1.013,0.969,1.052,0.935,1.064,0.925,1.06,1.053,0.936,0.907,1.067,0.978,1.046,0.892 +XM_059074,1.045,0.881,0.992,1.057,1.137,0.974,0.95,1.0,1.137,1.188,1.09,0.983,0.991,0.929,0.865,0.934,1.036,1.034,1.051,0.939,1.226,1.148,1.04,1.068,1.116,0.972,1.033,0.985,1.031,1.036,0.99,0.98,1.088,1.0,1.154,1.164,0.93,1.03,0.99,0.962,1.067,1.181,0.935,1.069,0.977,0.932,1.046,0.937,1.004,1.066,1.023,1.001,1.069,1.174 +XM_059095,0.971,1.207,1.71,0.699,1.635,0.85,0.831,0.731,1.302,1.128,0.666,0.949,0.668,1.169,0.947,0.764,1.147,1.141,1.435,0.978,0.701,1.075,1.028,1.125,0.669,1.129,1.455,1.167,0.521,1.065,1.302,2.124,1.849,0.929,0.561,0.919,0.841,1.191,1.088,1.347,1.198,0.784,0.616,1.631,1.265,0.682,0.813,0.925,0.675,1.041,1.002,0.847,0.873,1.248 +XM_059132,0.946,0.897,0.924,0.846,0.945,0.897,0.852,1.151,0.971,0.986,1.102,1.101,1.006,0.956,1.044,0.946,1.036,0.824,1.004,0.948,1.101,0.975,0.951,1.091,0.98,0.997,1.174,1.037,0.683,1.083,1.054,0.88,0.902,1.004,0.919,0.869,0.982,1.116,0.958,0.899,0.889,1.061,0.862,0.996,0.981,1.061,0.968,0.884,0.817,1.004,1.222,0.96,1.005,0.914 +XM_059140,0.988,0.892,0.879,1.169,0.883,1.064,1.064,1.13,1.07,1.026,0.962,0.95,0.924,0.927,1.034,1.008,1.085,0.981,0.882,0.924,1.045,0.956,0.975,0.923,0.98,1.027,1.023,0.983,0.821,1.035,0.963,1.022,1.182,0.857,1.061,0.936,1.148,0.937,0.914,0.958,1.06,1.012,1.043,1.007,1.25,0.979,1.055,0.998,1.02,1.066,0.991,1.12,1.029,0.986 +XM_059184,1.113,0.969,0.991,1.007,0.96,1.051,0.97,1.051,1.084,1.107,1.048,0.981,1.075,1.051,0.973,0.984,0.937,1.021,1.047,1.066,1.014,1.062,1.06,0.965,1.003,1.013,0.897,0.987,0.86,0.99,1.11,0.93,0.986,1.17,1.031,0.862,1.007,0.911,1.074,0.97,1.023,0.997,0.972,0.949,1.02,1.102,0.915,0.921,0.994,1.017,0.999,1.001,1.034,0.948 +XM_059267,1.006,0.949,1.107,0.82,0.979,1.2,0.821,0.904,1.192,0.97,0.889,0.975,0.891,1.043,0.655,0.959,0.883,0.85,1.026,1.376,0.843,0.952,1.154,1.13,0.926,0.782,1.065,0.967,0.67,1.47,0.94,0.949,1.542,1.065,0.746,0.97,1.009,1.089,1.317,1.119,0.971,1.181,0.805,1.154,0.867,1.082,1.108,0.716,1.17,0.804,1.104,0.939,0.888,1.259 +XM_059318,1.124,0.951,0.922,1.069,0.992,1.181,0.9,0.892,0.914,0.957,0.999,0.935,1.021,0.896,1.028,1.08,1.01,0.945,1.248,1.193,1.082,1.11,1.049,1.012,1.189,0.938,0.838,0.903,0.905,0.896,0.92,1.016,0.964,0.985,1.016,1.063,0.913,0.979,0.999,0.931,0.94,0.891,0.887,1.022,1.059,0.927,1.045,0.932,0.947,0.906,0.951,1.115,0.872,1.007 +XM_059341,0.862,0.988,0.966,0.971,0.852,1.573,0.998,0.885,0.992,0.82,1.6,0.753,0.759,0.759,1.814,4.107,0.864,0.933,0.826,1.624,0.906,0.895,2.823,0.862,0.89,0.796,0.887,0.973,1.027,1.866,0.818,0.898,4.525,0.984,0.753,1.535,1.707,1.054,1.166,2.416,0.835,1.612,1.398,1.806,0.977,1.791,1.552,0.722,1.98,0.811,1.555,1.029,0.882,1.002 +XM_059384,0.986,1.151,1.067,1.113,0.879,0.958,1.067,1.007,0.986,1.213,1.069,1.034,0.957,0.842,0.886,0.89,1.148,1.0,1.208,0.966,1.016,0.964,0.99,0.985,1.071,0.948,0.913,1.003,0.844,1.103,1.003,0.974,1.259,1.026,1.001,0.965,1.006,0.895,1.099,0.95,1.244,1.015,1.049,0.985,1.109,1.222,0.932,0.97,1.064,0.934,0.945,0.895,1.09,1.053 +XM_059396,0.961,1.194,1.179,0.912,1.008,1.101,0.953,0.871,0.974,0.977,1.119,1.014,0.96,0.989,0.979,0.94,0.823,1.068,0.969,0.993,0.951,1.047,1.089,1.075,0.913,0.941,1.009,1.006,0.906,1.052,0.881,0.962,1.073,1.174,0.795,0.968,0.992,0.999,0.862,1.164,1.046,0.976,1.14,0.904,0.972,1.053,1.015,1.079,0.95,0.932,1.011,0.939,0.901,0.919 +XM_059399,1.119,1.078,1.047,1.064,0.934,1.106,1.043,0.936,0.971,0.917,1.263,0.91,0.838,0.927,0.794,1.106,0.925,0.987,1.02,0.88,0.994,1.037,1.281,1.037,0.915,0.93,0.922,0.998,0.738,1.031,0.947,0.973,0.987,0.874,1.141,1.152,1.084,1.001,0.884,1.0,0.97,1.178,0.918,1.202,0.993,1.037,1.135,0.999,0.956,1.045,1.078,0.931,1.14,1.002 +XM_059415,1.02,1.04,1.092,0.991,0.946,0.998,1.033,0.985,1.046,0.859,0.948,0.947,0.997,1.075,0.996,0.999,0.811,0.856,0.92,1.071,0.864,0.929,0.941,0.932,0.884,0.972,1.007,1.075,0.818,1.111,1.078,1.336,0.982,1.326,0.86,0.95,0.964,1.013,1.16,1.222,1.008,1.249,0.939,1.113,1.137,1.12,0.829,1.0,0.927,1.021,1.127,0.893,0.843,1.23 +XM_059438,0.929,1.107,1.032,0.846,0.923,1.006,0.945,0.986,1.186,0.844,1.033,0.974,0.889,0.953,1.36,1.124,1.042,0.863,0.905,1.08,0.86,1.025,0.986,0.851,1.005,0.844,1.077,0.995,1.058,1.001,0.919,1.039,1.305,1.142,0.914,0.857,1.035,0.936,0.892,1.126,0.991,1.122,1.02,0.884,0.885,1.015,1.022,1.012,0.992,0.839,1.061,1.089,0.981,1.173 +XM_059449,1.055,1.064,1.014,0.976,1.422,1.096,1.241,1.088,1.115,0.978,1.017,0.949,0.91,1.172,0.997,0.972,1.069,1.112,1.036,1.099,0.852,0.947,1.168,1.124,1.044,0.9,0.933,0.961,1.65,1.055,1.01,1.169,1.059,0.826,0.963,1.027,0.989,0.983,1.011,0.905,0.987,0.905,0.953,0.987,1.044,1.077,1.019,1.009,1.034,0.884,1.026,1.013,1.001,0.966 +XM_059461,0.967,0.942,1.098,0.924,0.839,1.101,0.955,0.874,0.97,0.929,1.102,0.956,0.976,0.789,1.06,1.024,1.02,0.878,0.947,1.079,0.958,0.927,1.366,1.185,1.055,1.021,0.827,0.98,0.967,0.921,0.894,1.269,1.239,0.988,1.084,1.06,1.247,1.001,0.992,1.571,1.05,1.031,0.882,1.214,0.999,0.998,1.535,0.923,0.914,1.054,1.017,0.983,0.873,1.552 +XM_059462,1.0,1.045,0.904,0.965,0.993,0.948,0.933,0.981,0.979,1.086,1.085,0.973,0.891,0.79,1.025,1.071,0.987,1.089,0.93,0.998,0.885,0.943,1.068,1.136,0.889,1.036,1.202,0.982,0.937,0.893,0.876,1.024,0.967,1.004,1.132,1.123,0.953,1.107,1.005,0.899,1.107,1.026,0.943,1.069,0.936,1.018,1.014,1.018,1.012,1.12,1.032,1.044,1.122,1.014 +XM_059482,0.956,0.935,0.876,1.078,0.936,0.925,0.899,0.95,0.909,1.002,0.901,0.909,1.037,1.21,0.88,0.973,0.998,1.05,0.904,0.887,1.065,0.894,1.241,0.957,1.029,1.145,1.032,0.942,0.892,1.072,0.801,3.316,0.972,1.045,0.95,0.872,0.985,1.085,1.102,0.929,0.882,1.294,0.952,1.189,0.965,1.093,0.9,1.086,0.932,1.004,1.106,1.008,0.923,1.116 +XM_059548,0.903,0.977,0.859,1.155,1.143,1.038,0.97,0.982,0.957,0.941,1.069,1.039,1.122,0.832,0.961,1.056,1.007,0.986,0.877,0.911,1.075,1.122,0.922,0.867,0.887,0.984,0.894,0.989,1.157,0.999,0.928,0.923,1.005,0.987,1.05,0.847,0.929,1.084,1.003,0.929,0.897,1.117,0.845,1.09,0.997,1.118,0.931,0.978,0.996,1.028,0.839,1.049,0.845,0.985 +XM_059578,1.035,0.974,0.969,1.166,0.97,1.01,1.068,1.122,1.029,0.938,0.984,0.88,1.005,0.799,1.057,1.067,0.999,0.876,0.929,0.932,1.097,1.066,1.061,1.056,1.07,0.959,1.117,1.02,1.275,0.994,1.018,0.937,1.044,1.017,0.917,0.994,1.047,1.035,0.968,0.963,0.966,1.001,0.903,0.852,0.997,0.942,0.891,1.032,0.85,0.982,1.055,1.014,1.09,0.958 +XM_059598,0.949,0.991,1.143,0.936,1.009,1.072,0.972,0.972,0.932,1.024,1.017,0.978,1.05,1.105,1.145,1.103,1.061,0.782,1.199,1.092,1.018,1.109,0.902,0.911,0.981,1.001,0.963,0.923,0.985,1.013,0.902,1.193,1.136,1.011,0.958,1.05,1.015,1.224,1.263,1.052,0.95,0.965,0.864,0.948,0.926,1.064,0.975,0.964,1.214,0.94,1.025,0.876,1.033,0.907 +XM_059608,1.094,1.012,1.048,0.943,0.883,0.924,1.188,1.058,0.944,1.002,1.032,1.023,0.843,1.231,1.124,1.12,0.898,1.001,1.112,1.015,0.988,1.012,1.004,1.03,1.005,0.896,1.011,0.954,1.123,1.022,1.0,0.968,1.189,1.003,1.062,0.955,0.98,0.973,0.955,0.903,0.922,0.838,0.972,0.95,1.002,0.973,0.951,1.035,1.046,1.104,1.066,0.97,0.997,0.949 +XM_059617,0.958,1.008,0.964,0.877,0.859,1.224,0.831,1.007,0.858,1.085,1.202,0.916,0.896,0.948,1.029,0.887,0.937,1.035,1.002,1.161,1.035,0.922,0.928,1.015,0.886,0.928,1.083,0.999,0.584,0.942,0.817,1.396,1.766,1.078,0.896,0.754,1.101,1.019,0.885,1.161,0.988,1.051,0.998,0.967,0.914,1.446,0.995,1.008,1.115,0.994,1.065,0.842,0.972,1.486 +XM_059664,0.987,1.045,1.054,1.118,0.999,1.022,0.957,0.897,0.992,1.096,1.254,0.882,1.015,0.891,1.064,1.023,0.916,0.983,1.035,1.079,0.938,1.029,1.134,1.018,0.921,0.984,0.976,0.875,1.041,0.99,1.106,1.101,1.04,1.203,0.999,0.973,0.991,0.888,1.048,0.919,1.054,1.0,0.994,1.109,1.109,1.026,0.936,1.026,0.926,1.019,0.962,1.141,0.961,1.063 +XM_059672,0.897,0.948,1.121,0.945,0.935,1.023,1.027,1.112,1.019,1.067,1.021,0.922,1.002,0.918,0.892,0.905,0.968,1.112,0.926,1.083,1.074,1.054,1.043,0.939,0.934,0.98,0.965,1.066,1.007,1.004,1.001,0.974,1.028,0.902,1.018,1.158,1.024,0.989,1.126,1.163,0.891,1.094,0.79,0.874,1.052,0.973,1.0,1.224,0.926,0.962,0.984,1.0,0.937,0.822 +XM_059682,1.086,0.846,0.891,1.086,1.059,0.964,0.944,1.002,0.929,1.059,0.811,1.031,1.008,0.912,1.079,0.849,0.968,0.948,1.131,1.051,1.043,0.971,0.88,0.937,1.015,0.951,1.024,0.994,0.991,0.947,1.004,1.042,0.835,0.979,0.973,1.155,0.968,1.108,1.045,0.839,1.001,0.99,0.892,1.192,1.024,1.081,1.076,1.07,0.943,0.984,1.048,0.994,0.98,1.188 +XM_059689,0.908,1.354,1.035,0.957,1.07,1.073,1.338,0.975,0.956,1.0,0.957,1.02,0.91,1.121,0.952,0.977,1.044,0.966,1.016,1.048,0.974,0.899,0.889,1.104,1.454,0.963,0.995,0.995,0.959,0.96,0.965,1.165,0.878,1.575,1.142,1.113,1.28,1.012,0.939,1.008,1.01,1.1,0.969,1.012,0.862,0.845,0.998,1.012,1.089,1.059,1.034,1.058,1.081,1.041 +XM_059729,0.939,0.993,0.973,0.996,1.11,1.042,0.82,0.805,1.164,0.963,1.041,1.08,0.904,0.829,0.858,0.977,0.956,0.978,1.0,1.136,1.059,0.823,1.115,1.073,0.905,0.804,1.128,0.923,0.82,1.072,0.938,0.867,1.407,1.128,0.802,1.331,0.967,1.055,1.017,0.899,1.034,1.121,0.757,1.288,0.921,1.114,1.008,0.769,1.072,0.964,1.068,0.936,1.118,1.136 +XM_059730,0.963,0.977,1.03,0.968,0.939,0.806,0.95,0.968,0.783,0.723,1.145,0.943,1.086,0.925,0.823,0.992,0.966,1.035,0.991,1.032,0.996,0.954,1.002,1.003,0.87,1.082,0.855,0.963,1.291,1.111,1.086,0.903,1.072,0.913,1.089,0.963,1.055,1.042,1.0,1.027,0.823,1.065,0.973,1.028,1.018,0.911,1.077,1.046,1.043,1.048,1.004,0.835,1.06,0.784 +XM_059743,1.015,1.08,1.055,0.977,0.972,1.073,1.066,1.023,0.973,0.909,0.824,0.966,0.982,0.903,1.107,0.984,0.86,0.89,1.195,1.027,0.922,0.921,0.962,0.985,0.987,0.897,1.052,1.002,1.058,0.965,1.063,0.998,0.97,1.025,1.014,0.975,1.076,1.012,0.971,1.119,1.13,1.047,1.002,1.065,1.085,1.068,1.044,0.963,0.911,1.085,0.975,0.989,0.857,0.971 +XM_059929,0.991,1.044,1.017,1.099,0.987,0.978,1.046,0.942,1.085,0.935,1.183,0.976,0.891,1.051,0.806,0.963,1.121,1.042,0.948,1.052,0.951,1.092,0.894,0.95,0.887,0.895,0.968,0.943,0.871,0.928,1.178,0.994,1.349,1.212,0.955,0.969,0.967,0.99,1.151,1.0,1.079,1.017,0.943,0.989,0.937,1.053,1.018,0.972,1.081,1.063,0.987,1.008,0.994,1.036 +XM_059954,1.037,0.885,0.941,1.113,1.007,1.001,0.923,1.051,1.159,0.954,0.946,1.044,0.95,0.982,0.946,0.986,1.039,0.855,1.062,0.923,1.175,0.975,0.999,1.02,0.963,1.076,1.149,0.967,1.31,1.042,1.001,1.055,1.05,0.995,1.062,0.95,0.944,1.003,1.016,0.928,0.841,0.848,0.838,0.898,1.094,1.061,0.974,1.166,0.898,0.921,0.937,0.905,0.956,1.018 +XM_059956,0.958,1.029,0.884,0.907,0.9,1.0,0.832,0.961,0.978,0.882,1.174,0.901,0.979,1.073,1.186,1.188,0.909,0.964,1.022,1.029,1.06,1.063,1.014,0.912,1.02,1.006,1.029,1.002,0.976,1.12,0.94,1.05,1.04,1.084,1.062,0.941,0.991,0.915,0.961,1.074,0.958,1.011,0.8,0.991,1.13,0.862,0.913,0.978,1.03,0.994,1.186,1.037,1.014,1.255 +XM_059972,0.684,1.451,0.951,0.846,0.812,0.956,0.954,0.749,0.949,1.052,0.971,1.036,0.796,0.541,0.775,1.042,0.959,1.003,0.857,1.072,0.706,0.785,1.473,0.97,0.88,0.78,0.893,0.761,0.595,1.234,0.702,1.607,1.282,1.294,0.531,1.745,0.997,0.782,1.278,1.118,0.911,1.052,0.885,1.389,1.033,1.106,0.96,0.727,0.949,0.761,1.015,1.245,1.005,1.971 +XM_059987,1.078,1.017,0.976,1.026,1.041,1.193,1.031,0.934,0.952,1.021,1.066,0.919,0.941,1.187,1.326,0.971,0.946,0.969,0.96,1.048,1.075,1.064,1.043,1.003,1.045,0.965,0.871,1.095,1.515,0.939,1.015,0.992,0.84,1.053,0.975,0.908,1.117,0.96,0.883,1.022,0.932,1.051,1.283,1.011,1.049,1.116,0.812,1.0,0.888,0.881,1.103,0.942,0.937,1.056 +XM_059997,1.003,0.932,1.21,1.002,1.148,0.978,1.091,1.017,0.914,1.084,0.903,0.96,1.039,0.835,0.879,0.914,0.913,1.112,1.013,1.065,1.122,1.121,1.309,1.061,1.06,0.991,0.955,1.096,1.361,0.96,1.026,0.825,1.215,0.964,1.084,0.957,0.91,1.046,0.958,0.968,1.046,1.056,1.383,0.923,1.194,0.958,0.816,0.954,1.047,1.031,1.072,0.909,0.92,1.121 +XM_060001,1.101,0.965,0.922,0.908,1.013,1.0,1.049,0.936,0.975,1.109,1.034,0.995,0.803,1.074,1.099,1.104,0.996,1.028,1.058,1.133,0.891,0.919,0.997,0.881,1.009,0.926,0.907,0.84,0.979,1.024,0.954,0.97,0.919,1.119,1.028,0.879,1.043,1.071,1.033,0.889,1.028,1.12,1.067,0.933,0.953,0.881,1.011,0.956,1.064,0.822,1.051,0.935,0.861,0.877 +XM_060020,0.674,1.14,1.335,0.631,0.924,1.671,0.976,0.881,1.009,0.959,0.903,0.694,0.835,0.724,1.067,2.019,0.907,1.069,0.91,1.037,0.61,1.117,1.197,1.353,0.66,0.619,1.147,0.91,1.311,1.16,1.104,1.186,3.098,1.131,0.686,0.603,1.084,0.907,1.756,0.867,0.969,0.981,0.828,0.795,1.171,1.141,1.122,0.874,1.791,0.854,1.212,0.854,0.577,1.275 +XM_060087,1.138,0.989,0.958,1.056,0.99,1.088,0.817,1.093,0.943,0.836,0.976,0.993,0.995,1.046,0.913,1.162,0.967,0.917,0.91,1.085,0.92,1.008,1.0,0.94,1.003,0.918,1.18,0.898,1.01,0.926,0.983,0.949,1.0,1.074,0.961,0.884,0.949,1.033,1.062,0.931,1.063,1.01,1.066,0.984,1.048,1.078,1.147,0.945,1.051,1.044,1.059,0.923,0.971,1.003 +XM_060301,1.095,1.009,0.934,1.109,0.999,1.039,1.118,1.016,0.787,1.282,1.111,1.056,1.048,1.061,0.972,1.117,1.009,0.994,1.038,1.171,0.86,1.077,0.962,1.043,1.011,0.837,1.081,1.122,1.087,0.994,0.914,0.917,1.375,1.095,0.935,0.96,1.082,1.066,1.08,0.879,0.884,1.088,0.955,1.002,1.001,0.958,0.933,0.984,1.196,0.911,0.832,1.134,0.899,1.123 +XM_060303,1.1,0.944,1.013,1.068,0.961,1.118,0.908,0.939,1.152,0.834,0.965,0.921,0.913,1.001,1.011,0.934,1.088,0.994,0.906,0.959,0.978,1.113,1.037,0.794,0.99,1.015,0.878,1.049,0.982,0.977,1.222,0.943,1.365,0.969,1.187,1.196,0.852,1.166,1.04,0.956,1.096,0.967,0.964,0.922,1.001,1.012,0.942,1.085,0.878,1.032,1.127,1.057,1.08,0.809 +XM_060307,1.016,1.011,1.043,0.948,0.939,1.025,0.94,0.85,1.033,0.964,1.084,1.039,1.024,1.171,0.905,1.102,0.966,1.015,0.991,1.07,1.085,0.868,1.159,1.097,0.976,0.958,1.153,0.967,1.053,0.999,0.936,1.037,0.933,1.137,0.983,0.908,1.018,1.121,1.095,1.012,0.854,0.977,1.249,0.915,0.979,1.035,0.937,0.998,1.008,1.045,0.946,1.095,1.15,1.043 +XM_060310,1.224,0.992,0.997,0.879,0.932,1.064,0.98,0.889,0.961,0.915,0.837,1.009,1.06,1.161,0.917,1.103,0.967,1.112,1.021,1.05,0.881,1.154,0.959,0.977,1.101,0.95,1.012,1.016,1.146,1.013,0.906,0.968,1.131,1.041,1.117,0.892,1.039,1.038,0.997,1.156,0.991,1.072,1.094,1.106,0.976,1.091,0.956,0.944,0.789,0.957,1.144,0.996,1.047,0.927 +XM_060315,1.129,0.976,1.039,1.085,1.074,0.876,0.928,0.996,0.944,1.057,0.949,1.071,0.938,1.053,0.828,0.958,1.034,1.206,0.952,0.91,1.139,0.986,0.974,1.141,1.155,0.95,0.891,1.13,1.178,0.945,0.997,1.007,0.775,0.952,1.213,0.925,1.0,1.03,1.104,0.99,1.033,1.105,1.158,0.94,1.022,0.925,1.067,0.996,1.045,0.866,0.922,0.928,1.027,1.112 +XM_060316,0.91,1.022,0.99,0.946,0.942,0.96,0.78,1.04,0.988,1.007,0.916,1.068,0.944,1.099,1.054,1.19,0.979,0.977,0.988,1.032,0.926,0.936,1.004,0.965,0.998,1.009,0.999,1.187,0.829,1.065,1.165,0.865,0.938,1.054,0.893,0.936,1.043,0.937,0.854,1.061,0.862,0.943,0.906,0.916,1.061,0.884,1.134,0.891,1.024,0.929,1.178,0.879,1.013,0.997 +XM_060458,1.056,1.039,1.025,1.038,0.945,0.993,0.936,1.16,1.246,1.01,0.957,1.014,0.924,1.006,0.851,0.851,0.996,1.029,0.929,1.029,0.973,1.061,1.0,0.9,1.031,0.96,1.109,0.946,0.892,1.045,0.866,1.026,1.079,1.047,0.961,0.967,1.016,1.064,1.153,0.966,0.95,0.971,0.953,1.0,0.984,1.007,1.061,0.95,1.045,1.013,1.02,1.205,1.174,0.828 +XM_060509,0.962,1.12,1.01,1.039,0.913,0.987,1.012,1.376,1.013,0.939,0.922,1.133,1.03,1.063,1.186,1.232,1.035,1.015,0.839,1.271,1.142,1.262,1.179,1.014,0.986,1.015,0.88,1.031,1.09,0.942,0.964,1.307,0.979,1.126,1.058,1.187,1.093,0.986,0.988,0.96,1.031,0.999,1.07,0.967,0.975,0.942,0.967,0.937,0.994,0.971,1.07,1.066,1.082,1.169 +XM_060535,0.523,1.12,2.6,0.537,0.786,2.126,1.257,1.661,1.207,0.85,0.729,1.922,1.623,0.404,1.053,2.014,1.421,1.085,0.504,1.487,0.273,1.535,1.724,1.966,0.47,0.373,1.855,1.062,0.558,1.375,1.591,1.326,1.398,1.327,0.24,0.42,0.922,2.21,1.458,0.868,0.939,1.379,0.548,0.375,1.411,0.706,1.104,0.873,1.57,0.928,1.42,0.775,0.355,1.231 +XM_060537,0.928,1.0,1.045,0.943,1.019,0.923,1.004,1.071,1.024,0.862,1.022,1.024,1.116,1.006,1.348,1.019,1.018,0.968,0.973,1.098,1.056,1.006,0.871,1.042,1.025,0.895,0.896,0.936,0.962,0.895,1.105,1.09,1.032,0.88,0.982,1.07,1.089,0.898,0.958,1.002,0.889,1.087,0.923,0.965,1.116,1.115,0.977,0.95,1.025,0.972,1.0,1.082,1.122,0.883 +XM_060569,1.081,0.834,0.878,1.148,0.987,0.983,1.164,1.174,1.048,1.063,1.05,0.943,1.05,0.87,0.97,1.043,1.192,1.023,0.968,1.048,0.998,1.016,1.039,1.033,1.03,0.919,1.026,1.041,1.337,0.999,0.965,0.982,1.037,0.963,1.051,1.038,1.083,0.98,1.07,0.992,0.858,0.818,1.358,1.07,1.078,0.875,0.88,1.007,1.012,0.928,1.141,1.049,0.997,0.818 +XM_060580,0.884,0.994,0.969,1.055,1.107,0.921,1.043,1.097,0.931,0.942,0.891,0.991,1.165,0.789,0.904,0.864,0.914,1.08,1.217,0.993,1.093,0.999,1.09,1.028,0.943,1.198,1.074,0.972,1.426,1.019,1.179,0.999,1.001,0.92,1.189,0.864,1.008,0.946,0.879,1.161,1.113,1.119,0.998,0.941,1.043,1.002,1.139,1.031,0.999,1.106,0.997,1.005,1.167,0.91 +XM_060597,1.133,1.045,1.113,1.099,0.962,1.07,0.952,1.202,1.033,0.974,0.961,0.979,1.179,1.038,1.021,1.069,0.995,1.016,0.941,1.094,1.013,0.982,1.064,0.996,0.975,1.126,0.892,0.925,1.382,1.056,0.982,0.997,1.16,0.948,1.114,0.914,0.956,1.011,1.103,1.076,1.03,0.94,0.935,0.918,1.062,1.0,0.868,0.932,0.945,1.142,0.975,1.099,0.947,1.043 +XM_060887,0.944,0.981,0.991,1.252,1.07,1.074,0.889,1.305,1.11,0.978,1.001,1.106,0.894,1.223,1.106,0.948,0.964,0.95,0.909,1.032,0.987,1.003,0.877,1.079,0.981,0.946,0.99,0.916,1.526,0.974,1.003,1.073,0.982,1.003,0.873,1.056,1.061,1.014,0.979,1.193,1.123,0.918,0.941,1.099,1.02,1.104,0.92,1.049,1.193,0.943,0.962,1.092,0.956,0.967 +XM_060945,1.037,1.012,1.031,1.06,1.048,0.943,0.984,0.882,0.942,0.992,0.973,0.837,0.963,1.013,0.769,1.026,0.927,0.913,1.123,1.183,1.047,0.96,0.901,0.967,1.136,0.967,0.877,1.049,0.845,1.08,0.957,0.821,1.074,0.929,1.044,1.061,1.0,1.125,1.091,0.867,0.867,1.041,1.121,0.991,0.946,1.177,1.064,1.095,0.865,1.024,1.007,1.09,0.895,0.887 +XM_060952,1.007,0.92,1.168,1.003,0.947,0.929,1.252,1.109,1.143,1.057,1.055,0.941,1.035,1.178,1.1,1.066,1.168,0.87,0.89,0.939,1.119,1.091,1.143,0.94,0.999,0.862,0.919,1.083,1.365,1.044,0.894,0.936,0.941,1.075,1.053,1.083,1.093,0.926,0.804,1.134,1.022,1.199,1.027,0.946,1.159,0.906,0.98,0.961,1.001,1.052,0.923,1.032,1.101,0.962 +XM_060953,1.117,0.98,1.032,1.031,0.99,0.923,0.951,1.092,0.745,0.949,1.12,1.189,1.047,1.098,1.101,1.076,1.173,1.057,1.069,0.938,1.015,0.96,1.032,0.923,1.043,1.021,0.976,0.967,1.236,1.038,0.981,0.99,0.98,0.95,0.923,1.019,1.015,0.944,0.964,1.114,1.163,1.125,1.015,0.974,0.997,0.94,1.063,1.114,1.237,0.968,1.037,1.042,1.043,0.977 +XM_060956,1.017,0.985,0.974,1.058,0.881,1.062,1.02,1.204,0.956,0.927,0.919,0.959,0.872,0.846,0.759,0.905,1.069,1.072,0.945,1.041,1.119,0.9,0.955,1.069,1.086,0.98,1.112,1.013,1.058,1.044,0.874,0.927,0.96,1.163,0.973,0.906,0.957,0.975,0.946,1.036,0.917,0.772,0.975,0.883,1.105,1.101,1.0,1.12,0.975,1.055,1.044,0.986,0.974,1.033 +XM_060957,0.961,1.086,1.031,0.785,1.003,0.931,1.106,1.002,1.106,0.846,0.975,0.859,1.031,0.992,0.973,1.17,0.968,0.952,1.253,1.098,0.993,0.928,1.167,1.056,1.03,0.91,1.08,0.93,1.106,1.033,1.007,0.863,1.005,0.996,1.112,1.062,1.004,0.972,0.958,0.964,1.016,0.95,0.991,1.126,1.028,1.191,1.1,1.029,0.856,0.898,0.901,1.056,0.936,1.03 +XM_060969,0.925,0.826,1.102,1.002,0.872,1.046,0.867,1.275,1.111,0.954,0.993,0.945,1.017,0.859,1.025,1.082,1.09,1.092,0.875,1.056,0.98,0.953,1.005,1.132,1.037,0.978,0.934,0.965,0.968,1.016,1.014,0.983,0.965,1.061,1.026,1.007,1.012,1.026,1.06,1.058,1.081,0.813,0.974,0.897,0.87,0.921,0.969,0.911,1.1,1.005,0.94,0.882,1.086,1.078 +XM_061055,0.939,1.12,1.013,1.018,0.938,1.01,0.942,1.113,0.909,0.912,1.003,1.013,0.991,0.98,1.119,1.233,0.996,0.88,0.967,1.084,0.978,0.941,1.071,0.967,1.032,1.028,0.974,1.06,1.001,0.979,0.946,0.888,1.015,0.912,0.971,1.035,0.859,1.053,1.131,1.096,1.055,0.901,1.219,0.968,0.952,1.029,0.901,1.051,1.132,0.961,1.071,0.977,1.052,1.077 +XM_061542,0.973,1.009,1.071,0.798,1.294,0.969,0.946,1.1,0.923,0.872,1.165,0.929,1.181,0.822,0.939,0.893,1.095,0.921,0.977,0.954,1.075,1.027,1.058,1.01,0.958,0.94,1.059,1.249,1.0,1.051,1.246,0.908,0.855,0.917,1.02,1.017,0.997,1.158,1.021,1.077,1.101,1.038,1.002,0.916,0.977,0.965,1.111,1.003,0.949,0.919,0.994,0.941,1.015,0.972 +XM_061562,1.054,0.962,1.245,1.146,1.272,1.115,0.818,0.998,1.256,0.981,0.925,1.035,0.873,1.027,0.981,0.969,1.092,1.024,1.136,0.941,1.121,0.866,0.964,1.009,0.953,0.966,0.95,0.992,1.023,1.053,0.913,0.832,0.959,0.853,1.088,1.062,0.927,0.783,1.03,1.001,0.943,1.061,0.974,0.974,1.012,0.817,1.141,1.022,0.904,0.977,0.984,1.275,1.02,0.958 +XM_061610,1.063,1.058,0.901,1.09,0.984,1.055,1.055,0.794,0.931,1.065,0.913,0.93,1.285,1.031,0.98,1.242,1.205,1.141,0.978,1.297,0.898,1.172,0.944,1.002,1.095,0.998,0.952,1.102,1.155,0.962,1.002,0.947,1.089,0.921,1.193,1.049,0.966,0.901,1.149,1.004,0.862,1.049,1.023,1.194,0.939,1.029,1.03,1.141,0.981,1.141,1.034,0.934,1.101,0.986 +XM_061611,0.972,1.043,1.06,1.034,1.009,0.934,0.975,0.984,0.912,0.949,0.885,0.811,1.048,0.927,0.792,0.972,1.019,1.119,1.202,1.002,1.041,0.913,0.984,0.985,1.161,1.015,0.987,1.076,1.126,1.073,0.942,0.884,0.954,0.873,1.037,1.006,1.093,0.986,1.019,1.097,0.948,0.761,1.205,1.249,1.052,1.103,1.224,1.113,1.024,0.922,0.963,0.973,1.01,0.904 +XM_061614,0.925,1.13,1.069,0.88,0.836,0.897,1.059,1.03,0.939,0.901,0.927,0.971,0.944,1.082,0.991,0.999,0.949,0.979,1.07,0.973,1.016,1.024,1.045,0.881,0.957,0.977,1.279,1.088,1.161,0.967,1.076,0.964,0.873,0.986,0.999,1.168,0.964,1.087,1.076,1.022,1.127,0.974,1.134,0.976,1.097,0.874,0.99,0.929,1.011,0.836,1.103,0.875,1.133,0.908 +XM_061616,0.964,1.03,1.072,1.224,1.007,0.968,1.154,1.026,1.033,0.897,0.94,1.114,1.033,1.089,1.03,1.092,0.911,1.005,0.934,1.107,1.087,0.891,0.863,1.056,1.084,0.916,1.032,1.024,1.474,0.944,0.892,1.098,0.972,0.92,1.022,0.984,0.936,1.164,0.882,0.894,0.977,1.109,1.159,0.919,1.022,1.137,0.983,0.959,1.111,0.919,1.018,0.923,0.925,1.077 +XM_061619,1.032,0.993,1.061,0.984,0.981,1.081,1.037,0.949,1.08,0.878,1.092,1.011,1.057,0.978,1.259,0.946,0.97,0.928,0.924,0.948,0.996,0.977,1.007,1.036,1.052,0.858,0.967,1.079,1.228,0.975,1.177,0.987,0.878,0.999,0.965,1.049,1.039,0.979,1.022,1.1,0.793,0.901,0.985,0.926,1.162,0.925,1.049,0.979,0.882,0.979,0.919,1.034,0.944,0.977 +XM_061621,1.052,1.155,1.056,1.139,0.927,1.135,1.426,0.898,0.915,0.979,0.981,1.009,1.151,0.849,0.972,0.84,0.925,0.914,1.131,1.028,0.989,1.065,0.974,0.966,1.029,0.921,0.799,1.01,1.144,0.806,0.967,0.947,0.98,0.929,1.118,0.991,0.981,0.944,0.949,0.963,0.953,1.146,1.144,0.973,1.095,0.934,1.081,1.042,0.93,0.959,1.153,1.203,1.059,0.932 +XM_061624,0.894,1.184,0.915,0.962,1.106,0.902,1.004,1.292,0.918,1.022,0.811,0.945,1.003,0.929,1.299,0.909,0.979,1.106,1.095,1.086,1.144,0.84,1.203,0.951,0.997,1.038,1.084,1.032,1.212,1.037,0.934,0.948,0.92,0.938,0.826,0.99,0.886,0.984,1.129,0.982,0.917,0.91,1.031,0.783,0.946,0.949,1.1,1.082,1.056,0.937,0.941,1.026,1.084,1.068 +XM_061626,1.043,0.897,1.206,0.995,1.133,1.274,0.795,0.955,1.039,1.051,0.914,0.907,1.174,1.157,0.953,0.886,1.13,0.995,1.132,1.036,0.989,0.844,1.002,1.094,1.116,1.129,0.986,1.097,0.931,0.911,1.171,0.903,0.862,0.987,1.08,0.926,1.074,1.026,0.896,1.028,0.963,0.917,0.983,1.065,1.063,0.943,1.14,0.96,0.88,0.973,1.097,0.951,0.945,0.95 +XM_061627,0.901,1.144,0.854,1.119,1.002,0.97,1.484,0.878,1.119,1.02,1.102,0.949,1.008,1.085,1.02,1.273,0.972,0.92,1.189,0.955,0.946,0.862,1.238,1.055,0.949,0.869,1.002,0.83,1.319,1.111,1.138,1.085,1.028,0.791,1.014,1.0,1.088,1.236,0.877,0.759,1.082,0.965,1.434,0.921,1.147,0.901,1.021,1.022,0.784,1.114,0.878,1.04,1.125,0.924 +XM_061656,0.938,0.968,1.034,1.071,1.0,0.954,0.994,0.949,0.998,1.098,1.111,1.199,1.011,1.488,0.91,0.815,0.885,1.151,1.196,0.954,1.094,0.948,1.096,0.932,0.955,0.912,0.872,0.849,0.967,0.975,1.159,0.991,0.887,1.039,0.975,1.008,1.061,0.903,0.843,0.983,0.934,1.003,1.078,1.071,1.04,1.086,1.222,1.01,1.021,0.918,0.944,1.059,0.863,1.037 +XM_061666,1.086,0.947,0.988,1.017,0.962,1.09,0.867,0.876,0.916,0.992,1.13,1.053,0.993,0.898,0.955,1.075,0.987,0.917,1.025,0.963,1.028,1.16,0.92,0.94,1.113,0.989,1.095,1.0,1.092,0.851,1.111,1.04,1.065,0.96,1.035,0.953,1.112,1.028,0.967,0.987,1.025,1.011,0.974,0.983,1.054,0.958,0.916,1.034,0.901,0.843,0.945,0.989,0.9,1.149 +XM_061676,1.048,0.854,0.896,1.109,0.982,1.006,1.175,0.982,0.943,1.0,0.958,1.039,0.929,1.084,0.881,0.908,0.987,1.204,1.05,0.942,1.021,0.999,0.853,1.142,1.103,0.915,0.973,1.012,0.872,1.054,0.938,0.985,0.833,0.978,1.026,0.99,0.941,0.85,0.987,1.077,1.097,0.928,1.053,0.972,1.061,0.965,0.957,0.975,0.86,0.999,0.95,1.127,1.004,1.052 +XM_061849,0.954,1.111,0.983,0.947,1.086,0.935,1.174,0.875,0.976,1.236,1.026,0.972,0.979,0.88,1.001,0.898,0.968,1.063,1.026,1.069,1.021,1.047,1.004,0.979,0.974,1.135,0.821,1.055,1.332,1.116,1.111,1.015,1.155,0.965,0.864,0.947,0.893,1.135,1.133,0.975,1.029,0.83,1.183,0.83,1.033,0.931,0.925,1.02,1.0,0.907,0.967,1.028,0.997,0.916 +XM_061864,0.982,0.968,1.141,0.882,0.944,0.965,0.883,0.964,1.012,0.934,1.003,1.069,0.887,1.086,0.954,0.906,1.002,0.948,0.846,0.934,1.159,0.949,0.906,0.874,1.109,1.081,1.025,1.001,0.761,1.107,1.057,0.99,0.879,1.168,1.066,1.044,1.077,0.941,1.035,1.077,0.984,0.902,0.925,1.021,0.942,0.945,0.969,1.072,0.941,1.063,1.051,1.094,0.974,0.887 +XM_061871,0.933,0.992,0.938,0.871,1.135,0.98,1.0,0.921,0.968,0.877,1.014,1.18,0.933,1.069,1.074,1.091,0.913,1.075,1.051,0.943,1.097,1.049,1.065,0.893,1.098,0.978,0.995,0.997,1.061,1.022,1.16,1.002,1.202,1.081,1.037,0.998,1.022,0.95,0.978,1.062,1.1,0.997,0.9,0.943,1.02,1.22,0.985,1.118,0.918,1.103,1.051,1.056,1.127,0.941 +XM_061880,0.98,1.009,0.941,1.161,1.075,1.166,0.952,1.124,1.047,1.075,0.886,0.987,0.885,1.043,1.046,1.166,0.952,0.816,0.953,1.015,1.045,1.186,0.884,0.965,0.953,0.94,1.033,1.079,0.806,1.08,1.104,0.826,1.006,0.991,1.107,0.894,0.966,0.973,1.088,1.006,1.031,1.009,1.041,1.005,0.926,1.083,0.967,1.12,0.964,0.898,0.942,0.938,1.13,0.893 +XM_061930,1.086,0.984,0.961,0.997,1.006,1.032,0.783,1.049,1.058,0.854,0.894,1.183,1.145,1.054,0.861,0.995,0.954,1.058,0.961,0.964,0.915,0.879,0.838,0.965,0.97,0.893,1.076,1.03,1.202,1.059,1.044,0.953,1.117,0.981,0.994,1.002,1.072,1.017,0.872,0.915,1.055,0.883,0.989,0.996,1.035,1.017,1.086,1.206,1.002,1.11,1.01,1.109,1.089,1.1 +XM_062025,0.999,0.923,1.038,0.984,0.955,1.129,0.989,0.768,1.027,0.949,0.896,1.059,1.019,0.81,0.882,1.215,0.957,0.894,1.036,1.043,0.899,0.941,1.23,1.018,1.036,0.959,0.981,1.027,0.937,0.967,0.961,0.993,1.083,1.052,1.072,1.034,0.975,0.999,1.037,1.083,1.087,0.921,1.037,1.053,1.03,0.952,1.089,1.097,1.048,0.903,0.905,0.857,0.977,1.114 +XM_062162,1.168,0.979,1.013,1.107,0.902,0.966,0.956,0.828,1.002,1.13,0.905,0.951,0.955,1.049,0.91,1.155,0.884,1.134,1.027,1.164,1.013,0.932,1.123,1.004,1.16,1.041,1.009,0.989,1.106,1.057,1.109,1.081,1.103,1.042,1.029,1.018,0.964,0.943,0.939,0.952,0.955,0.993,1.012,0.931,1.047,1.197,1.115,1.073,1.023,0.907,0.975,1.035,1.219,1.037 +XM_062263,0.935,0.997,1.015,0.988,1.033,0.911,0.968,1.192,0.845,1.039,0.986,1.059,1.039,0.977,1.487,1.027,0.936,1.085,0.977,0.92,1.122,0.966,0.908,0.935,0.984,0.967,0.996,1.069,1.233,1.14,0.965,0.914,1.018,1.0,1.03,1.135,1.027,0.943,0.982,1.029,0.947,1.041,0.904,1.0,0.934,1.015,0.973,1.032,1.012,0.87,0.972,0.975,0.936,0.999 +XM_062269,1.083,1.021,1.11,0.919,0.981,0.939,1.05,1.263,0.935,1.021,0.89,1.046,1.098,1.123,1.124,1.055,1.088,0.831,1.201,0.882,1.076,0.824,0.88,1.119,0.955,0.951,0.976,1.047,0.921,0.921,0.89,1.02,0.868,1.007,0.994,0.945,1.159,1.026,1.001,1.139,0.991,0.956,0.858,0.883,0.987,1.022,0.932,0.967,1.039,0.97,1.124,1.085,1.042,1.04 +XM_062272,0.916,0.968,0.942,0.833,0.901,0.978,1.07,1.115,1.021,0.905,0.87,1.091,1.102,1.174,0.931,0.999,0.933,0.989,0.997,0.941,1.222,1.006,1.086,1.151,1.086,1.01,0.961,1.008,0.962,1.069,1.086,1.002,1.002,0.97,0.997,0.919,0.993,0.984,0.921,1.155,1.059,1.048,0.954,0.953,1.104,1.025,1.053,0.886,1.038,1.024,0.963,0.987,0.911,1.057 +XM_062285,0.982,0.994,1.068,0.958,0.934,1.045,1.173,1.069,0.979,0.972,1.085,0.921,1.061,1.144,1.019,1.047,0.947,1.032,1.024,0.955,0.991,1.066,0.9,0.96,1.076,1.02,1.118,1.104,1.154,1.058,1.114,1.009,1.125,1.114,0.874,0.918,1.06,0.955,1.123,1.032,1.028,0.873,0.972,0.834,0.977,0.997,0.915,1.03,1.026,1.026,1.094,1.069,0.935,0.99 +XM_062286,0.914,1.121,0.974,1.023,1.084,1.031,0.955,0.987,1.128,0.945,0.913,1.087,0.974,0.954,1.01,1.13,1.023,1.063,0.924,0.802,1.058,0.947,1.081,1.156,0.948,0.964,0.882,1.076,0.841,0.931,0.978,1.0,1.143,0.943,1.03,1.044,0.985,1.043,0.967,0.884,0.899,1.031,0.797,1.029,1.109,0.999,1.007,0.941,1.147,1.015,0.983,0.872,1.006,1.0 +XM_062468,0.967,0.866,1.009,0.743,1.13,0.932,0.991,1.028,0.57,1.025,1.193,0.864,0.8,0.942,0.886,0.785,1.004,0.968,1.132,0.651,0.885,1.068,1.295,0.755,1.08,0.873,0.857,1.12,1.74,1.056,1.107,0.793,1.137,1.235,1.153,0.876,1.09,0.736,0.9,0.892,1.121,1.132,1.175,1.072,1.227,0.9,0.779,0.911,0.968,0.929,1.081,0.97,0.924,0.761 +XM_062545,1.018,1.231,1.018,0.987,1.015,1.021,0.93,0.974,0.946,0.959,1.017,0.944,0.992,0.913,0.945,0.967,1.114,0.93,1.043,0.993,1.106,1.006,1.004,0.98,1.055,0.943,1.063,0.996,0.801,0.966,0.926,0.913,1.016,1.008,1.101,0.963,0.964,0.947,0.991,0.99,0.965,1.005,0.827,0.806,1.183,0.921,1.0,1.033,0.866,0.888,0.983,1.058,1.105,1.166 +XM_062553,0.824,0.936,0.901,0.929,1.036,1.009,0.886,1.137,0.984,0.833,0.901,1.188,0.932,1.018,0.901,0.895,0.947,0.875,1.074,0.902,1.078,1.097,1.027,0.897,0.994,1.066,1.005,0.959,1.1,1.002,1.174,1.101,0.905,0.897,1.04,0.985,1.015,1.07,1.183,0.897,0.945,0.98,1.001,0.857,0.875,0.93,1.052,1.027,1.063,0.966,1.146,0.999,1.133,0.89 +XM_062598,1.052,1.109,1.0,0.958,0.914,0.964,0.958,1.181,1.072,0.905,1.014,0.987,1.026,1.05,1.043,0.879,0.928,1.021,1.111,1.005,0.987,1.046,0.926,1.02,0.988,0.937,1.051,1.147,1.189,1.012,1.034,0.897,1.071,0.999,1.164,1.065,0.972,1.077,1.029,0.953,1.012,1.064,1.072,1.047,0.949,1.008,0.884,0.893,1.018,0.983,0.875,0.958,1.106,0.958 +XM_062690,0.871,1.129,1.017,0.865,1.078,1.031,0.901,0.719,1.07,0.861,0.882,0.975,0.986,0.998,1.007,1.169,1.061,0.958,1.001,0.971,0.978,0.966,1.123,1.186,1.052,1.017,1.142,0.86,0.868,1.158,1.42,0.917,1.129,1.104,0.974,1.039,0.974,0.95,1.086,1.083,0.851,1.061,0.943,0.86,0.853,1.015,0.855,0.912,0.972,1.083,0.907,1.022,0.964,1.064 +XM_062735,1.006,1.065,0.866,1.093,1.112,1.025,0.894,0.979,0.948,0.99,1.031,1.024,0.97,0.834,0.982,0.797,0.967,1.091,1.021,1.005,0.988,1.019,1.156,0.957,1.048,1.003,0.923,0.974,0.928,0.848,0.974,1.015,0.948,0.897,1.086,1.12,1.023,1.082,1.066,0.908,0.981,0.962,0.786,1.057,0.95,1.044,1.036,1.111,0.921,0.881,0.938,1.05,0.895,0.944 +XM_062871,0.926,1.009,0.964,1.082,0.959,1.073,0.899,0.956,0.931,0.923,1.001,1.166,1.114,1.173,0.928,0.909,1.072,1.058,1.01,1.013,1.054,0.988,0.92,1.034,1.098,0.97,1.174,0.914,0.611,0.945,1.082,0.989,0.947,1.012,0.946,1.113,0.949,1.051,1.013,1.043,0.962,0.835,0.943,0.979,1.059,1.092,1.046,1.084,0.94,1.075,1.056,1.045,1.091,0.917 +XM_062872,1.085,0.943,0.963,1.095,1.034,0.932,0.915,1.169,1.061,0.992,0.981,1.107,1.211,1.149,1.07,1.034,0.956,0.922,1.084,0.94,1.055,1.075,1.125,1.055,1.006,0.897,0.956,1.058,0.652,0.968,0.945,1.129,0.862,1.013,1.172,1.234,1.153,0.966,0.995,1.009,0.928,0.93,0.882,1.077,1.046,1.031,1.059,0.99,1.068,1.038,1.112,1.118,0.944,0.998 +XM_062890,0.939,0.913,1.032,0.865,0.989,0.932,0.979,0.828,0.975,1.036,0.993,0.958,1.086,1.011,0.889,0.826,0.879,1.059,0.951,1.044,0.934,0.916,1.145,1.004,1.05,1.094,1.174,1.017,1.244,1.046,0.963,0.953,1.127,0.897,0.932,0.99,1.037,1.119,0.865,1.107,1.046,1.069,1.048,0.734,1.078,0.928,1.02,1.02,1.008,1.002,0.928,0.922,0.95,1.053 +XM_062912,1.038,0.857,0.913,1.067,0.839,1.051,0.897,1.116,1.142,0.977,0.992,0.958,1.002,0.798,1.136,0.93,1.015,0.978,0.929,0.806,1.089,1.054,0.854,0.908,1.002,0.98,0.966,1.013,1.145,0.971,1.136,1.026,0.86,1.097,1.153,1.01,1.039,0.948,0.958,1.069,1.093,1.105,1.311,1.07,0.958,0.944,0.986,0.935,1.003,1.056,0.969,0.833,0.92,0.827 +XM_063202,0.591,0.934,1.775,0.464,1.128,1.543,0.648,1.286,1.401,0.863,0.744,1.558,1.392,0.476,1.056,1.923,0.974,0.987,1.017,1.268,0.261,1.468,1.465,1.619,0.464,0.507,1.727,0.993,0.356,1.085,1.583,1.517,2.355,1.54,0.248,0.507,0.948,1.591,1.86,0.579,1.067,1.382,0.385,0.718,1.275,0.656,1.026,0.987,1.111,0.88,1.162,0.61,0.547,1.38 +XM_063287,1.118,1.155,0.988,1.093,0.97,0.879,1.118,1.051,0.916,1.176,0.938,1.024,1.098,0.926,1.128,1.152,0.98,1.136,0.876,0.991,0.926,1.004,1.047,0.786,0.824,0.925,0.952,0.866,1.934,1.058,0.889,1.114,1.114,0.915,1.137,0.867,0.855,1.2,1.063,1.023,1.026,1.121,1.02,0.983,0.994,1.127,1.122,1.044,0.923,0.913,0.846,0.879,1.152,1.024 +XM_063308,1.077,0.925,0.98,0.975,0.958,0.916,1.028,1.087,0.908,1.073,1.041,0.956,1.028,0.928,1.152,1.095,0.948,0.907,0.996,0.882,1.006,1.086,1.074,0.894,1.092,0.971,1.163,0.94,1.336,1.048,1.116,1.007,1.102,0.946,0.913,0.849,1.036,1.068,0.898,0.908,1.007,1.09,0.781,1.049,0.997,1.087,0.957,1.015,1.021,1.012,0.992,0.987,0.892,1.032 +XM_063310,0.992,0.939,1.162,0.94,1.014,0.94,0.989,1.162,0.937,0.929,1.009,1.011,0.979,0.837,1.19,0.907,0.864,0.972,1.056,1.138,0.951,0.954,1.156,1.003,0.951,1.065,0.817,1.124,0.83,1.058,1.095,1.09,0.951,0.963,1.358,0.989,0.954,0.905,1.164,1.055,0.929,0.924,0.933,1.063,1.019,1.03,0.867,1.026,0.839,1.2,0.911,1.099,1.162,0.99 +XM_063315,1.166,0.964,0.926,0.917,1.033,0.981,0.959,0.941,1.064,1.046,1.018,1.008,1.035,0.911,0.917,0.777,0.938,1.08,1.049,1.095,0.968,0.976,0.996,1.154,1.084,0.909,0.981,0.988,0.768,1.019,1.089,1.059,1.066,1.084,0.975,0.924,0.996,0.904,1.075,1.136,1.064,0.962,0.878,0.869,1.02,0.92,1.033,1.005,1.024,1.087,0.912,0.864,1.244,1.294 +XM_063481,0.938,1.043,1.03,0.849,0.983,0.945,1.256,1.003,0.983,1.215,0.928,1.034,0.944,1.062,0.943,0.942,1.112,1.029,0.94,1.15,1.106,0.953,0.944,0.976,1.088,1.156,1.03,0.933,1.588,0.993,0.989,1.089,1.039,1.059,1.005,0.954,0.875,0.893,1.153,0.987,0.949,0.965,1.041,0.971,1.079,0.93,1.061,1.119,0.936,0.903,1.115,1.029,1.135,1.015 +XM_063609,0.923,1.001,1.044,0.946,1.003,1.166,0.999,0.994,1.005,1.012,0.987,1.042,1.021,1.152,0.84,1.026,0.964,0.996,1.032,0.949,1.007,0.923,0.925,1.043,1.047,1.061,1.003,1.044,1.311,1.027,1.16,1.087,1.031,1.09,0.956,0.969,1.031,1.047,1.032,0.902,0.91,0.964,0.963,1.049,1.093,1.031,1.067,0.972,1.001,1.07,1.003,0.983,0.972,0.992 +XM_063630,0.914,1.008,1.015,1.083,0.916,0.967,0.957,0.983,0.856,0.924,0.942,1.001,1.11,1.079,0.81,1.042,1.016,0.931,1.043,0.975,0.946,0.919,0.959,0.893,1.001,1.041,1.082,0.972,0.9,0.872,0.959,0.946,0.901,0.946,1.091,0.973,1.019,0.928,1.061,1.009,0.918,0.915,0.974,1.088,1.072,1.072,0.99,0.914,1.034,0.909,1.029,1.042,1.012,1.034 +XM_063871,0.957,0.948,1.105,0.96,0.944,0.923,0.974,1.053,1.209,1.166,1.071,0.888,0.777,0.923,0.833,1.007,0.938,1.001,0.945,0.74,0.96,0.996,1.031,1.06,1.122,1.09,0.923,0.864,0.581,1.023,1.011,0.898,0.901,1.057,0.899,1.202,0.947,1.024,0.89,0.999,1.057,1.012,0.874,0.968,1.047,0.93,0.924,0.777,1.064,1.082,1.03,1.045,0.952,1.003 +XM_064003,0.971,0.938,1.07,1.068,0.999,1.275,1.039,0.984,0.932,0.981,1.127,1.016,0.951,0.949,1.006,1.022,0.891,1.103,1.064,0.904,0.975,1.051,0.942,1.048,1.054,0.971,0.931,0.86,1.262,0.989,1.086,1.021,0.943,0.937,1.306,0.993,1.026,1.1,0.908,1.069,0.912,1.084,1.17,1.172,0.986,1.02,0.891,1.042,1.002,1.017,0.914,0.881,1.011,1.107 +XM_064062,0.963,1.082,0.981,0.851,1.041,1.122,0.961,0.94,1.026,0.909,0.869,0.992,0.956,1.096,0.798,1.036,1.023,1.064,1.026,0.914,1.048,0.936,1.279,0.996,0.999,1.011,0.852,1.107,0.997,0.905,1.004,1.053,0.914,0.933,1.148,1.069,0.95,1.068,0.993,0.903,1.113,0.948,0.909,0.943,1.006,0.995,0.946,1.005,1.038,1.001,1.121,0.89,1.134,0.988 +XM_064152,0.982,1.16,1.056,1.111,0.912,0.794,1.01,1.048,0.99,0.843,1.019,0.99,1.063,0.936,1.022,0.999,0.907,1.053,1.056,1.104,0.942,0.98,1.184,0.969,1.108,1.016,0.906,1.139,0.92,1.035,1.038,1.095,0.995,1.013,1.177,0.887,0.987,0.974,0.98,1.064,0.873,0.941,0.992,0.932,0.903,0.951,1.085,1.068,0.865,1.064,1.089,1.042,1.256,0.976 +XM_064177,1.163,0.944,0.966,0.907,1.014,1.051,0.772,0.964,0.966,1.155,0.982,0.873,0.96,1.237,0.805,1.082,0.981,0.912,1.07,0.964,1.1,0.93,1.082,1.049,1.001,0.936,0.868,0.962,1.013,0.976,1.063,0.977,1.045,0.961,0.986,1.086,0.994,1.064,0.925,0.948,0.915,1.05,0.92,1.171,1.046,1.026,1.072,0.819,1.07,1.119,1.0,1.051,0.958,1.029 +XM_064190,0.919,0.776,0.836,1.107,0.999,0.957,0.842,1.161,1.288,0.99,1.044,0.904,0.914,0.812,0.812,0.966,1.02,0.977,1.077,0.86,1.01,1.1,1.058,1.142,0.973,0.996,1.153,0.984,1.139,1.043,1.081,1.046,0.942,0.8,0.999,0.957,0.949,0.961,0.916,0.988,1.035,0.915,1.051,1.038,1.036,1.013,1.08,1.134,1.125,0.944,0.962,0.824,0.879,1.01 +XM_064298,1.063,1.0,0.963,0.91,1.106,0.994,1.016,1.104,0.977,1.052,0.937,1.022,1.001,1.307,1.164,0.901,0.925,0.876,1.051,0.945,0.987,1.156,0.997,1.015,1.016,0.912,1.007,0.902,0.809,0.911,1.053,1.033,1.0,0.931,1.0,1.039,1.023,0.996,0.92,0.888,0.959,1.06,0.99,0.91,1.006,1.05,1.023,0.968,1.049,1.054,1.059,0.941,0.803,0.995 +XM_064333,1.006,0.953,1.224,1.015,1.018,0.876,1.344,1.061,1.028,0.893,0.936,1.104,0.946,0.856,0.995,1.08,1.004,0.989,0.99,1.093,1.017,1.064,1.022,0.832,1.038,1.03,1.035,0.951,1.265,0.962,1.045,1.052,1.088,0.951,1.097,1.062,1.027,0.988,0.942,1.019,1.132,0.982,0.804,0.88,0.994,0.921,0.96,1.025,1.033,0.978,1.007,0.795,0.938,0.892 +XM_064858,0.887,0.996,0.986,1.007,1.141,1.093,1.07,0.838,0.954,0.989,0.878,1.069,0.838,0.961,1.105,1.082,1.044,1.036,1.08,0.975,1.054,0.886,1.136,1.079,0.995,1.082,0.999,1.01,0.999,1.01,0.981,1.068,0.877,1.123,1.042,1.023,1.016,0.851,0.989,0.925,1.038,0.921,1.02,0.89,0.959,1.019,1.06,0.927,1.109,1.016,1.045,0.965,1.031,0.973 +XM_064865,1.017,0.995,0.927,0.873,0.966,0.996,1.091,0.969,0.83,0.96,1.078,1.06,0.952,0.93,0.743,1.096,0.971,1.071,1.005,0.897,0.988,0.932,0.946,0.891,1.029,1.027,0.868,1.068,0.861,0.918,1.114,0.957,1.178,0.953,1.047,1.175,1.017,1.014,0.914,0.95,0.872,1.098,0.974,1.083,0.984,1.183,0.929,1.008,0.944,1.284,0.931,1.09,1.028,0.925 +XM_064879,1.022,1.143,0.97,1.216,1.129,0.986,1.035,1.032,1.013,1.015,1.002,1.063,0.999,1.134,0.902,1.202,0.896,0.83,1.133,1.008,1.081,0.919,0.964,0.902,1.03,1.06,0.751,1.096,1.011,1.12,1.087,1.089,1.22,0.883,0.959,1.001,1.147,1.039,0.85,1.024,0.919,0.947,0.945,1.003,1.131,1.056,0.958,0.884,0.98,0.944,0.92,0.96,0.89,0.987 +XM_064883,0.934,1.067,1.027,1.202,0.937,1.056,1.045,0.961,0.837,1.023,1.028,1.043,0.922,0.84,0.95,0.991,0.975,1.046,0.996,1.103,0.903,1.026,0.968,1.113,0.971,0.962,1.058,0.969,1.151,0.953,0.984,1.052,0.964,0.844,1.066,1.182,0.929,0.89,1.027,0.983,1.08,1.087,1.054,0.945,0.987,0.992,1.08,1.094,1.055,1.095,0.875,1.098,1.065,1.003 +XM_064884,1.057,0.908,0.98,0.913,1.027,0.998,0.982,0.875,1.121,0.991,0.897,0.998,1.057,0.976,0.757,0.976,0.981,1.06,0.925,0.941,1.069,1.012,1.121,1.029,1.18,0.967,1.038,0.996,0.807,1.0,1.072,1.133,0.883,1.064,0.858,1.057,1.05,0.938,1.07,0.891,0.996,1.052,1.34,0.954,1.025,0.934,1.074,1.031,0.993,0.964,1.002,0.826,0.989,1.032 +XM_065006,0.994,1.086,1.019,0.949,1.229,0.977,1.035,1.07,1.011,0.987,1.023,1.036,1.115,0.83,0.869,0.978,0.955,0.989,0.81,1.014,0.894,1.033,1.061,1.142,0.926,0.978,1.088,0.874,0.974,0.972,1.151,1.12,1.138,1.157,0.972,0.884,1.114,0.906,1.107,0.933,1.124,1.01,0.836,1.152,1.077,0.903,1.116,1.041,1.072,0.978,1.078,1.139,0.96,0.985 +XM_065026,1.058,1.051,0.901,1.134,0.996,0.924,1.211,0.897,1.165,0.981,0.892,1.036,1.108,0.86,0.945,0.973,0.993,0.983,0.963,0.923,0.996,0.998,1.053,1.021,0.969,0.973,0.898,0.975,1.437,1.022,0.946,0.823,0.831,1.051,1.081,1.07,0.941,1.215,0.974,0.943,0.929,0.884,1.124,0.926,1.073,1.039,0.887,1.085,1.102,1.064,1.075,0.819,1.174,0.976 +XM_065050,0.905,1.025,1.037,1.123,1.112,0.902,1.036,1.034,0.975,0.881,1.014,0.84,1.034,1.076,0.825,1.055,1.036,1.021,0.875,1.043,1.153,1.048,0.921,1.117,0.96,1.107,0.849,0.986,1.547,1.161,1.07,0.976,0.993,0.949,1.05,0.958,1.069,1.165,1.056,0.973,0.996,1.116,1.109,0.842,1.102,0.93,1.101,1.018,0.994,0.852,0.943,0.839,0.977,1.111 +XM_065166,0.965,0.95,0.976,1.035,0.838,1.021,1.002,1.028,0.961,1.054,1.065,0.968,0.839,0.902,0.884,1.182,1.027,1.003,1.04,1.05,1.044,1.049,1.088,0.916,1.032,0.877,0.954,0.948,0.946,1.036,0.988,0.941,1.115,0.929,0.996,0.972,1.009,1.092,1.033,1.375,0.98,0.955,1.161,1.165,0.957,1.11,1.035,0.926,0.998,1.102,1.093,0.966,1.1,1.005 +XM_065237,1.074,0.635,1.034,1.112,1.053,0.748,0.396,0.335,1.546,1.361,0.614,0.376,0.473,0.734,0.959,1.372,0.849,0.975,1.012,0.491,0.573,0.295,1.277,0.732,0.533,1.039,0.864,0.939,0.259,1.039,1.245,1.166,1.853,1.137,0.929,0.45,0.899,0.876,2.795,1.056,1.287,0.829,0.719,1.804,1.1,0.795,1.443,0.74,1.635,1.15,1.071,0.638,0.934,1.432 +XM_065555,0.948,1.151,1.09,0.988,0.843,0.873,1.012,1.237,1.018,1.35,1.034,1.036,0.971,1.243,1.08,0.95,0.997,0.978,0.968,1.11,0.939,0.982,1.021,0.961,1.004,1.091,1.047,0.98,1.293,1.008,0.977,1.054,0.859,1.029,1.053,1.098,0.994,0.933,0.972,0.968,1.011,1.018,0.946,1.005,0.953,1.074,1.055,1.041,1.197,1.098,0.977,0.922,0.949,0.877 +XM_065828,0.7,0.713,2.344,0.4,1.33,1.148,0.883,2.263,1.129,0.922,0.723,1.761,2.221,0.491,1.008,2.191,1.273,1.122,0.785,0.974,0.328,2.124,1.753,1.891,0.485,0.565,2.106,1.219,0.54,0.762,2.058,1.135,1.719,1.07,0.335,0.462,0.622,2.736,2.185,0.653,0.97,1.124,0.371,0.402,1.548,0.495,1.043,1.787,1.166,1.115,1.124,0.573,0.451,1.159 +XM_066058,0.915,0.897,0.946,1.071,1.013,1.089,1.218,1.065,0.985,1.041,1.089,1.001,1.16,0.955,0.952,1.137,0.974,1.031,0.92,0.931,0.972,1.356,0.972,0.995,1.06,1.007,1.015,1.026,1.129,0.974,1.091,0.896,1.005,0.974,0.949,0.86,1.029,0.978,1.024,0.959,1.016,0.965,1.143,0.911,1.19,0.956,0.978,1.045,0.981,1.043,0.944,0.948,1.165,0.991 +XM_066069,1.079,0.974,1.104,0.992,1.106,0.915,1.015,1.03,1.062,1.122,0.881,0.936,1.072,1.065,0.955,0.974,1.064,0.988,0.755,1.006,0.88,0.989,0.993,1.008,1.103,1.094,1.021,0.998,1.154,0.887,0.973,1.071,1.058,0.962,1.005,0.994,0.943,1.065,0.918,0.993,1.001,1.005,1.099,1.026,1.015,1.013,1.137,0.942,1.069,1.045,1.043,1.017,0.923,1.036 +XM_066177,0.911,0.967,1.078,1.037,0.997,0.985,0.941,0.907,0.886,0.924,1.018,1.132,0.915,0.851,0.952,0.988,1.014,0.962,0.918,0.963,0.899,0.881,1.144,1.043,1.165,0.966,1.027,1.116,0.753,1.038,1.0,1.079,0.952,1.02,0.987,0.904,0.935,1.069,1.08,0.937,0.95,0.93,0.912,1.054,1.07,1.192,1.092,1.049,1.142,1.036,0.98,1.036,1.031,1.102 +XM_066443,1.121,0.884,0.939,0.959,0.97,1.095,0.844,0.955,1.006,1.156,1.036,0.954,0.999,0.975,0.834,0.896,1.163,1.003,1.085,1.092,1.043,0.934,0.975,1.04,1.017,0.967,1.128,0.988,0.701,1.013,1.06,0.833,0.747,1.033,1.037,0.933,1.163,0.966,1.121,1.031,0.948,0.989,0.9,1.137,0.956,1.143,0.984,1.053,1.2,0.997,1.088,1.037,1.068,1.018 +XM_066457,1.088,1.214,1.013,1.232,0.971,1.052,0.932,0.838,1.15,1.073,1.207,1.049,1.021,0.852,0.821,0.792,1.139,1.001,0.976,0.948,1.083,1.084,0.982,0.984,1.15,1.113,1.041,1.063,0.841,1.108,0.79,1.073,1.082,0.985,1.032,0.991,1.272,0.974,1.26,0.874,1.092,1.219,0.79,0.78,0.953,0.915,1.046,1.031,1.041,0.859,0.942,0.904,0.966,0.904 +XM_066685,0.979,1.085,0.97,1.026,0.97,0.967,0.996,1.09,0.923,1.058,1.085,1.026,1.007,1.275,0.844,1.019,0.945,0.896,1.04,1.006,0.931,0.99,0.955,0.961,0.879,1.011,0.987,1.122,0.909,1.005,1.0,0.933,0.851,0.913,1.006,1.032,1.18,1.044,1.036,0.927,1.061,1.037,0.93,1.033,1.007,1.0,1.022,1.145,1.133,0.918,0.887,0.898,1.019,0.951 +XM_066690,0.869,1.001,1.015,1.074,0.976,0.883,1.077,1.032,1.168,0.921,0.919,1.301,0.96,0.927,1.047,1.017,0.995,1.033,0.974,1.106,1.094,0.929,0.983,0.96,1.055,1.025,1.0,1.194,1.396,1.073,0.996,0.953,1.039,0.959,0.964,1.023,0.953,1.09,0.99,0.985,1.128,0.901,0.893,0.796,0.894,0.942,0.923,0.845,0.805,0.902,0.975,0.984,0.903,1.215 +XM_066695,1.018,0.984,1.158,0.967,1.143,1.043,1.024,1.128,1.045,0.932,1.016,1.012,0.913,1.184,0.976,1.024,1.028,0.99,1.035,1.03,1.006,0.876,1.014,0.914,0.937,0.983,0.926,1.005,0.78,1.033,0.992,0.851,1.169,0.944,1.104,0.943,0.961,1.116,0.969,0.947,1.173,0.979,0.945,1.083,1.002,1.054,0.962,1.12,0.947,1.109,1.008,1.052,1.178,0.985 +XM_066701,0.999,0.923,0.932,1.048,1.167,0.927,1.104,0.975,1.107,1.114,1.125,0.942,0.92,0.998,0.941,0.933,0.931,1.054,0.859,1.098,0.862,1.063,0.918,0.882,0.843,1.042,1.004,1.073,1.155,1.097,0.839,0.907,1.068,0.994,0.917,0.949,0.973,1.179,0.971,1.054,1.129,1.028,1.487,0.939,1.041,1.016,1.001,1.052,1.091,0.981,0.888,0.918,0.901,1.042 +XM_066765,1.055,0.899,1.032,1.098,1.002,0.96,1.036,1.217,1.076,1.005,1.043,0.958,1.057,0.824,0.881,1.114,0.919,0.971,0.945,1.115,1.114,0.98,1.037,0.987,0.956,1.033,0.92,1.043,1.058,1.102,1.047,1.033,0.911,1.103,1.021,1.256,1.19,1.021,0.98,1.198,1.023,0.989,0.868,1.013,0.998,0.927,1.117,1.091,0.971,0.954,1.124,0.971,0.914,1.034 +XM_066859,0.999,1.031,0.928,1.028,1.071,0.905,0.747,1.049,1.088,1.11,1.099,1.124,0.939,1.041,0.841,1.1,1.017,1.129,1.143,1.083,1.061,0.873,0.95,0.984,0.981,0.989,1.014,1.115,1.035,1.04,1.17,0.94,1.018,0.907,0.991,1.118,1.007,0.974,0.991,1.189,0.972,1.027,0.94,1.156,0.824,0.907,1.104,1.014,0.956,1.032,0.99,0.85,1.121,0.953 +XM_066946,1.065,0.952,0.896,0.882,1.052,0.776,0.98,0.982,1.063,1.094,0.856,0.976,0.922,0.967,0.859,0.904,1.072,1.046,1.025,1.02,1.027,1.007,1.015,1.04,1.001,0.909,1.108,1.021,0.906,0.971,0.992,0.955,0.973,0.986,1.13,0.972,0.974,1.068,0.985,1.034,0.933,1.114,0.974,0.984,0.996,0.987,1.026,1.114,0.961,1.188,1.006,0.874,0.939,0.994 +XM_067176,1.046,1.051,1.028,1.04,1.059,0.962,1.111,1.1,0.929,0.993,1.067,0.945,0.891,1.14,0.919,1.181,0.854,0.825,1.009,0.928,0.964,0.913,1.021,0.793,1.093,0.926,1.017,1.085,0.814,1.011,0.958,0.999,0.917,0.881,0.904,0.989,0.94,1.091,0.834,1.132,1.152,1.015,1.008,1.003,0.947,1.129,0.983,0.912,0.982,0.938,1.11,1.19,1.062,1.104 +XM_067228,0.884,1.025,0.991,0.936,1.026,0.966,1.066,1.048,1.116,1.049,1.087,0.881,1.038,1.104,1.017,1.067,0.913,1.037,1.109,0.87,0.86,0.846,0.964,0.925,0.996,0.962,1.038,1.095,1.049,0.935,0.97,0.915,1.063,1.097,0.889,0.938,0.994,0.926,1.087,1.149,0.966,0.861,0.865,1.076,1.014,1.042,1.035,1.083,1.007,0.866,0.975,0.926,0.979,0.936 +XM_067369,0.908,0.926,0.948,0.898,0.965,1.003,1.034,1.079,1.066,0.889,1.206,1.054,1.007,0.829,0.988,0.998,1.002,1.161,0.883,0.959,1.076,0.874,0.949,1.0,1.069,0.981,1.178,0.918,0.828,0.966,1.131,0.914,0.921,1.013,0.95,0.994,1.011,1.042,1.037,1.135,0.98,0.889,0.961,1.026,1.025,1.102,0.961,1.082,1.026,0.961,1.114,0.856,0.938,0.92 +XM_067605,1.095,1.012,0.937,1.0,0.915,0.984,1.065,0.862,1.036,1.007,1.054,1.067,0.91,1.135,0.785,1.091,1.049,0.848,0.946,1.0,1.019,0.861,0.999,1.117,1.026,1.074,0.827,0.86,1.088,1.097,1.122,1.085,1.083,0.909,0.981,0.998,1.102,0.979,0.93,0.981,1.136,0.991,1.106,0.993,1.052,1.095,0.911,0.993,0.954,1.026,1.032,0.957,0.939,1.035 +XM_068602,0.986,1.143,0.913,0.973,1.214,0.907,1.275,1.333,1.092,1.092,0.827,0.929,0.963,0.856,0.856,1.056,0.897,1.192,1.066,1.036,0.884,0.979,1.044,0.988,0.971,1.034,1.114,0.997,0.824,1.119,1.088,1.03,0.96,1.023,1.067,0.986,1.115,1.134,1.077,1.048,1.007,0.982,1.088,1.096,0.901,0.986,1.153,1.064,1.113,0.993,0.983,1.066,0.997,0.868 +XM_068632,0.95,0.927,0.96,1.008,0.952,1.085,1.023,1.061,1.002,0.894,0.982,0.993,1.084,0.913,0.888,0.947,0.98,1.051,0.987,0.928,1.055,1.084,0.799,1.002,1.099,1.116,1.022,1.077,0.79,1.195,1.067,1.051,0.859,1.239,0.928,1.019,1.068,0.927,0.935,0.965,0.806,1.108,1.042,0.951,1.016,1.004,1.081,1.012,0.876,1.059,0.993,0.808,0.984,0.849 +XM_068682,1.026,1.089,1.037,0.949,0.919,1.074,1.025,0.952,0.962,1.026,1.089,0.981,0.95,0.982,0.944,1.039,1.09,1.068,0.991,1.023,0.907,0.952,0.94,1.01,0.886,1.043,0.924,0.969,0.893,0.945,1.07,1.012,0.916,1.08,0.929,0.875,1.0,1.062,0.798,0.91,0.995,1.021,0.953,1.0,0.915,1.049,0.891,0.958,0.98,1.013,0.981,0.876,1.075,1.075 +XM_068864,0.773,0.893,1.041,0.727,1.138,0.702,0.44,0.373,1.649,1.973,0.605,0.407,0.619,0.656,0.766,1.059,1.343,1.012,1.436,0.547,0.835,0.661,0.756,1.174,0.66,1.221,1.112,1.118,0.514,0.839,1.361,1.18,0.973,1.175,2.771,0.641,0.779,1.287,2.246,0.778,1.697,0.803,0.748,1.18,1.412,0.814,1.068,1.048,1.053,0.828,0.9,0.604,1.426,1.091 +XM_068903,1.098,1.019,1.03,1.022,0.914,0.942,0.855,1.13,1.057,1.126,0.97,1.097,1.038,0.986,0.952,1.028,1.025,0.997,1.015,1.053,1.025,1.145,0.952,0.956,1.055,0.995,0.981,1.027,0.963,0.933,0.851,0.899,1.007,1.047,0.988,0.888,1.121,1.054,1.147,1.022,0.905,0.883,0.854,1.016,1.145,0.926,0.882,1.106,0.994,0.886,1.074,0.99,0.891,0.923 +XM_069035,0.987,1.085,0.941,0.936,1.14,0.84,1.019,1.072,1.047,0.954,0.902,1.13,0.896,0.852,0.803,1.031,0.997,1.087,0.864,0.977,0.945,0.887,0.939,1.057,0.955,1.008,1.204,0.957,1.228,1.019,1.012,0.995,0.924,1.04,0.921,0.927,0.999,1.078,1.112,0.992,1.064,1.026,1.262,0.875,0.998,0.934,1.073,1.037,1.145,0.978,1.149,0.921,0.874,1.013 +XM_069189,0.965,1.008,1.497,0.924,1.053,1.002,0.959,0.824,0.915,0.998,0.98,1.047,1.155,0.903,0.86,0.971,1.096,1.0,1.038,1.026,0.919,1.042,0.868,1.138,0.984,0.964,1.418,1.147,0.801,1.299,0.923,0.916,0.877,1.072,0.893,0.951,1.144,1.016,0.996,0.942,1.199,1.075,1.08,0.906,1.014,0.784,0.937,0.928,0.914,1.108,0.958,0.987,1.132,1.189 +XM_069609,1.022,0.937,1.096,0.938,1.015,1.025,1.034,1.074,1.009,1.003,1.004,1.049,0.958,0.961,1.115,0.973,0.95,0.977,0.936,0.974,0.929,0.995,0.959,0.961,0.98,1.047,1.009,1.047,0.881,0.908,1.037,0.912,0.899,1.143,0.95,0.997,0.883,1.114,0.917,1.057,0.946,0.907,0.891,1.079,1.057,1.056,0.894,0.962,0.982,0.997,1.099,0.81,1.06,1.158 +XM_069612,1.114,0.972,0.994,0.941,1.091,0.956,0.976,0.969,0.944,1.049,1.035,1.029,1.114,0.909,0.929,1.053,0.947,1.018,1.073,0.98,1.042,1.102,0.959,0.945,1.09,0.912,0.967,0.93,0.946,0.964,1.018,1.003,1.034,0.915,1.241,0.999,0.936,0.964,1.02,0.89,0.946,0.936,0.913,1.004,1.047,0.971,0.994,1.032,1.049,0.941,1.03,0.978,1.079,0.951 +XM_069616,0.995,0.923,0.947,1.019,1.016,0.942,0.979,0.992,1.057,0.956,1.127,1.042,0.885,0.969,1.2,1.002,1.016,0.986,1.045,1.002,1.084,1.137,1.131,0.998,1.006,0.916,0.99,0.983,0.785,0.976,1.024,1.168,0.769,1.017,1.017,1.017,0.84,1.015,1.011,1.078,1.033,0.979,1.018,0.974,1.097,1.023,0.876,0.912,1.131,1.002,0.979,0.976,1.11,0.951 +XM_069621,0.977,1.006,1.034,0.934,0.931,1.065,1.037,1.036,0.996,0.974,0.975,0.979,0.951,0.825,1.093,0.866,1.006,1.039,0.902,1.052,1.022,0.99,1.041,0.942,1.143,1.016,0.942,0.981,0.865,0.986,0.95,1.049,1.052,0.999,0.953,1.131,1.014,1.153,0.932,1.02,0.98,1.07,1.295,0.929,0.985,1.074,0.829,0.938,0.85,0.928,1.075,1.001,0.897,0.903 +XM_070613,9.195,0.234,3.546,1.833,4.89,0.2,0.232,8.385,7.348,1.83,0.228,2.651,11.64,5.69,3.218,1.102,4.555,1.298,10.74,1.13,5.401,6.805,0.235,4.588,0.214,12.38,1.911,4.502,0.273,0.371,9.532,7.269,3.324,0.268,17.15,0.254,0.23,4.635,1.224,0.249,6.902,0.249,0.155,0.219,5.791,0.196,1.582,14.25,0.34,5.397,0.853,1.676,5.461,1.325 +XM_070619,1.046,0.904,0.997,1.015,0.902,0.931,0.931,1.003,1.009,0.969,0.965,0.974,1.0,0.924,1.219,1.16,0.923,1.22,1.056,0.972,1.131,0.878,1.0,0.903,1.017,0.897,1.0,1.028,1.601,0.948,1.012,0.995,0.936,1.063,0.966,1.182,1.115,0.86,1.046,0.981,1.029,0.976,1.148,1.026,1.017,1.091,0.898,0.925,1.073,1.031,0.996,0.942,0.943,1.066 +XM_071013,1.187,0.967,1.117,0.888,1.011,0.98,0.948,0.942,1.094,0.943,1.108,1.089,0.917,0.987,1.31,1.152,1.002,1.145,1.076,0.868,1.162,0.876,1.038,1.018,0.968,1.029,0.783,0.85,1.128,0.916,0.987,0.912,1.098,0.821,0.998,0.917,1.12,1.066,0.912,1.04,1.032,1.045,0.865,1.046,1.199,1.011,0.974,0.995,1.121,0.985,0.956,0.873,0.819,1.008 +XM_071061,0.898,1.056,1.067,0.957,1.086,1.048,0.942,0.761,0.955,1.015,0.832,1.02,0.796,1.104,1.154,1.013,1.036,0.934,0.845,0.973,0.86,1.029,1.182,1.06,0.883,0.948,1.016,0.943,1.018,1.062,1.189,1.097,1.07,1.039,1.084,1.06,0.783,0.925,1.253,0.945,0.975,1.243,0.76,1.017,0.837,0.863,0.979,1.048,0.995,1.079,1.128,0.829,1.032,1.135 +XM_071093,1.002,1.096,0.966,0.915,1.001,0.969,0.899,1.05,1.1,1.114,0.994,0.943,0.984,1.105,1.048,1.014,1.089,1.037,0.91,0.985,1.138,0.964,1.04,0.991,1.139,1.068,0.945,0.966,1.015,0.971,0.879,0.973,0.972,1.03,1.209,0.941,1.019,0.937,0.824,0.994,0.971,1.028,1.161,1.122,0.979,1.107,1.074,0.911,1.004,0.846,1.013,1.086,1.016,0.862 +XM_071096,1.049,1.062,1.057,0.894,1.099,1.045,0.763,0.946,0.981,0.997,1.082,0.978,1.044,1.076,0.981,0.986,0.979,1.049,0.906,0.851,1.101,1.023,0.902,1.122,1.056,1.109,0.975,1.067,0.846,1.037,1.015,0.984,1.006,0.99,0.91,0.967,1.151,1.039,1.067,0.959,0.989,1.035,0.971,1.03,1.053,0.922,0.89,0.918,1.035,1.118,1.01,0.922,0.99,0.967 +XM_071097,1.028,1.006,1.013,1.057,1.055,0.986,1.004,0.874,1.041,1.004,0.936,0.973,0.81,1.083,0.822,0.997,1.092,1.152,0.973,1.054,0.936,1.0,0.993,1.022,1.061,1.099,0.994,1.096,0.816,1.042,0.91,0.905,1.1,0.974,1.03,0.894,1.059,1.0,1.049,0.928,0.976,0.976,1.102,1.039,0.911,1.056,0.915,0.979,0.952,1.025,0.966,0.85,1.038,1.001 +XM_071098,0.897,0.93,0.911,0.93,1.191,0.907,1.088,1.03,0.971,0.876,1.274,0.977,0.939,0.96,0.925,1.036,0.98,0.866,0.921,1.206,0.984,1.019,1.021,0.903,1.09,1.076,0.869,0.982,1.196,0.987,1.075,0.993,0.968,0.982,0.994,1.083,1.151,1.019,1.064,1.011,0.912,1.028,0.896,1.012,1.1,1.161,1.086,0.957,0.957,1.0,0.915,0.974,0.833,1.004 +XM_071099,0.968,1.016,0.95,1.053,0.956,0.929,0.884,0.969,1.14,0.78,1.098,1.008,1.06,1.073,0.852,0.922,0.907,1.153,0.901,0.847,0.836,0.95,0.925,1.206,1.037,1.022,1.033,1.05,1.266,1.025,0.975,0.945,1.012,0.998,1.064,1.047,0.994,1.011,1.079,1.128,0.971,1.093,1.238,1.001,1.028,0.837,1.009,0.981,0.995,0.955,1.082,1.042,0.999,1.078 +XM_071150,1.036,0.929,0.956,0.958,0.999,0.977,1.024,1.061,1.049,1.083,1.043,0.942,1.071,1.184,0.8,1.129,1.029,1.034,1.039,0.988,1.001,0.976,0.928,0.936,0.936,0.957,0.906,0.931,1.402,1.15,0.887,1.07,0.835,0.931,0.975,0.975,0.882,0.873,0.904,0.978,1.069,0.931,1.046,0.81,1.075,1.128,1.065,1.021,1.081,0.988,1.037,0.958,0.9,1.013 +XM_071151,0.947,0.985,0.951,1.119,0.927,0.983,1.218,1.242,1.005,1.092,1.099,0.964,0.973,1.017,1.027,0.91,1.064,1.114,0.86,0.935,0.96,1.058,0.947,1.012,0.879,1.094,1.012,1.036,1.478,0.909,1.088,0.939,0.819,1.068,1.086,0.983,1.04,1.022,0.976,0.865,0.945,0.921,1.271,0.962,0.925,1.164,1.0,1.037,0.971,0.989,1.073,0.931,1.018,1.002 +XM_071152,0.962,0.948,1.121,0.965,0.925,0.899,1.173,0.832,0.998,1.136,1.073,0.982,1.027,1.166,0.952,1.112,0.934,1.0,0.915,1.104,0.91,1.008,1.125,1.135,1.018,0.924,0.843,0.921,1.375,1.061,1.131,1.065,0.841,0.969,0.881,1.032,1.026,0.929,0.967,1.133,1.03,1.006,1.358,1.142,1.05,0.995,1.082,0.925,0.998,1.146,1.016,1.03,1.195,0.986 +XM_071712,0.456,1.293,1.261,0.772,0.507,2.056,0.712,0.37,0.624,0.453,2.623,0.616,0.543,0.447,0.928,1.537,1.398,0.733,0.713,1.487,0.394,0.45,1.631,0.562,0.768,0.533,1.603,0.502,0.995,2.511,0.451,1.005,0.537,1.938,0.311,2.523,1.249,0.549,1.223,0.302,0.717,1.307,0.653,1.298,0.662,1.196,0.918,0.444,0.678,0.66,1.958,0.895,0.671,1.516 +XM_071793,0.654,1.122,1.296,0.864,0.941,1.379,0.926,0.949,1.053,0.953,1.127,1.159,0.918,0.743,1.043,1.315,0.89,0.991,1.029,1.239,0.744,0.961,1.202,1.042,0.78,0.767,0.909,1.086,0.922,1.145,0.943,1.182,1.248,1.413,0.827,0.971,1.076,0.966,1.013,0.801,1.166,1.451,0.877,0.873,0.952,1.072,1.103,0.942,0.949,0.865,1.041,0.619,0.863,1.057 +XM_071866,0.433,1.337,0.584,0.74,0.483,1.528,1.002,0.471,0.476,0.526,0.893,0.472,0.555,0.476,0.856,1.096,0.589,0.81,0.501,1.419,0.451,0.519,1.795,0.48,0.709,0.461,0.578,0.487,0.856,1.263,0.568,2.217,2.886,1.139,0.447,1.221,1.329,0.536,1.956,1.029,0.596,1.638,1.194,1.002,0.558,1.424,1.506,0.427,1.159,0.459,1.497,0.817,0.636,1.286 +XM_072302,1.062,1.012,1.011,0.91,1.089,1.159,1.04,0.895,0.988,0.953,0.842,0.918,0.992,0.995,1.623,0.973,0.978,1.042,0.905,1.049,1.052,0.96,1.031,1.002,1.032,1.004,1.073,0.99,0.978,1.122,1.0,0.961,0.961,1.027,1.015,0.962,1.109,0.918,1.087,1.011,0.934,0.962,0.861,0.926,0.977,0.954,1.086,1.078,1.035,0.951,0.995,0.992,1.0,0.953 +XM_072402,1.101,0.889,1.105,1.101,1.043,0.972,1.044,1.001,0.993,1.007,1.0,1.083,0.889,0.93,1.225,1.16,0.946,0.921,1.062,0.874,0.98,1.091,0.893,1.086,0.897,1.103,0.998,1.066,0.952,0.958,1.02,0.813,1.223,0.927,0.869,0.981,0.91,1.068,0.867,0.952,0.97,0.956,1.339,1.14,1.041,1.049,1.006,0.964,1.007,0.984,0.996,0.943,1.116,1.239 +XM_072554,0.872,0.968,1.097,0.96,1.114,1.112,0.938,1.026,1.034,0.945,1.019,1.119,1.042,0.866,0.932,1.105,1.106,0.827,1.042,1.075,1.149,0.898,1.109,0.937,0.998,0.896,0.89,1.227,0.785,1.101,0.999,0.95,1.139,1.064,0.905,1.094,0.853,1.104,1.038,1.001,1.015,0.937,1.093,1.002,1.059,0.998,1.046,0.999,0.9,0.966,1.02,1.117,0.871,0.855 +XM_084337,0.997,1.003,1.041,1.0,0.896,1.038,1.148,1.033,0.938,0.942,1.042,0.955,1.034,0.886,1.202,0.978,0.99,0.862,1.006,0.913,1.035,1.041,0.914,0.963,1.069,0.921,1.075,1.029,1.074,1.036,0.866,0.983,0.998,1.0,0.974,0.954,1.103,0.96,1.083,0.944,0.848,1.018,1.032,1.002,1.032,1.038,1.014,1.008,1.004,1.115,0.959,0.963,1.047,0.929 +XM_084357,1.152,1.02,1.061,1.044,1.054,0.912,1.098,1.161,0.875,0.91,0.912,0.95,0.968,0.927,1.0,0.953,0.889,1.191,0.972,1.047,0.887,1.009,0.949,1.045,1.067,1.02,1.001,1.011,1.155,1.02,0.962,1.03,0.971,1.138,0.965,0.977,1.046,0.87,0.904,1.0,1.043,1.097,1.16,0.953,0.964,1.099,0.958,0.97,1.115,0.935,1.108,0.926,0.884,0.952 +XM_084376,0.905,0.961,0.847,0.922,0.95,1.008,1.091,1.093,1.004,0.925,0.838,0.996,1.025,1.057,0.861,1.1,0.941,1.069,1.04,0.891,0.965,0.967,1.001,0.942,0.989,1.098,0.856,1.003,1.154,1.012,0.978,1.066,1.035,1.012,1.04,1.129,1.036,1.082,1.052,1.02,1.202,1.084,1.1,0.999,1.033,0.94,0.974,0.985,1.086,0.954,1.08,1.122,1.17,0.963 +XM_084377,0.923,1.0,0.954,0.989,1.177,0.943,0.94,1.005,1.144,0.949,1.021,1.174,1.052,1.174,1.055,0.977,0.917,0.942,1.01,0.999,1.183,1.082,1.053,1.069,0.963,0.887,0.814,0.872,0.87,0.991,0.877,1.128,0.985,0.918,1.071,0.98,1.014,1.039,1.096,1.083,1.015,1.129,0.965,0.929,1.026,1.103,1.087,1.012,1.152,1.101,1.016,0.902,1.052,0.816 +XM_084482,0.908,1.076,1.036,1.067,1.145,0.783,1.417,0.992,0.849,0.907,0.678,0.933,1.102,1.302,0.874,0.815,0.744,1.037,0.866,1.107,1.033,0.99,0.971,0.937,0.981,1.012,1.1,1.067,0.897,0.892,0.893,1.044,1.286,0.792,0.971,1.044,1.285,0.969,0.905,0.851,0.818,0.976,1.005,1.119,1.176,0.998,0.995,1.026,1.108,1.043,0.89,0.893,0.743,0.889 +XM_084485,0.916,1.026,0.836,1.011,1.012,1.059,0.98,0.972,1.017,0.979,0.999,1.027,1.066,1.203,1.221,0.964,0.876,0.903,0.853,1.035,0.872,1.065,0.873,1.024,1.013,1.023,0.878,1.015,1.076,0.916,1.01,0.9,0.926,1.164,0.931,1.017,1.17,0.988,0.978,1.045,0.97,1.069,1.032,0.959,1.017,1.029,0.932,0.944,1.033,1.027,0.969,1.006,1.004,0.887 +XM_084501,0.931,0.985,0.972,0.945,0.976,1.011,0.916,0.863,1.034,0.944,0.933,1.024,0.998,0.88,1.157,1.017,0.924,0.954,0.84,1.101,1.017,0.962,0.93,1.018,1.198,0.916,0.915,1.054,0.808,1.482,0.87,0.954,1.05,1.691,0.918,0.914,1.12,1.105,1.066,0.985,1.037,2.292,1.07,0.99,0.998,0.824,0.989,0.887,0.969,0.87,0.956,1.013,1.034,0.988 +XM_084529,0.868,1.043,1.236,0.97,0.996,0.997,0.917,0.75,1.21,0.748,0.852,0.975,0.956,1.23,1.101,1.247,1.006,0.979,0.905,1.026,0.896,1.037,0.9,1.022,0.968,1.083,1.042,0.889,0.969,1.499,0.977,1.12,1.058,0.976,0.736,1.327,0.979,1.0,0.987,1.24,1.197,1.039,0.839,0.981,1.061,0.972,0.863,0.739,1.023,0.801,0.969,1.069,0.988,1.182 +XM_084530,0.752,0.777,1.36,0.79,0.88,1.149,0.577,0.438,1.27,0.865,1.297,0.72,0.564,0.786,1.093,1.642,0.899,1.107,1.168,1.328,0.455,0.974,1.179,0.806,0.858,0.858,1.272,0.798,0.654,1.541,0.982,0.88,1.026,1.486,0.335,1.245,1.198,0.781,1.025,0.685,0.967,1.189,1.0,0.764,0.953,1.529,1.067,0.735,0.938,0.902,1.292,0.591,0.833,1.661 +XM_084578,0.58,1.069,1.253,0.717,0.956,1.894,1.022,0.48,1.449,0.827,1.019,0.753,0.386,0.66,0.981,1.379,0.656,1.24,1.092,1.429,0.397,0.972,1.169,1.35,0.716,0.883,0.97,1.079,0.836,2.742,0.968,0.559,0.758,1.604,0.203,0.651,1.224,1.296,0.851,0.395,1.144,1.357,0.39,0.415,0.842,0.768,0.782,0.745,0.855,0.796,1.286,0.434,0.518,1.173 +XM_084654,0.888,1.218,0.89,0.96,0.939,1.098,0.965,0.843,1.059,0.924,1.026,0.912,0.874,0.957,0.954,0.967,0.996,0.956,0.896,1.169,0.884,0.97,1.387,0.887,2.104,0.951,1.055,0.959,0.867,1.638,0.947,1.689,0.852,1.784,0.881,0.87,1.162,0.978,1.077,0.865,1.222,1.516,0.811,0.937,1.0,1.227,0.951,0.958,0.949,0.881,1.024,0.909,0.993,1.076 +XM_084664,1.015,0.911,0.946,1.176,1.034,0.865,1.362,0.967,0.925,1.072,0.96,1.0,0.96,1.0,0.889,1.01,0.969,0.957,0.964,1.03,0.974,1.003,1.15,0.869,0.982,1.034,0.923,1.004,1.233,0.981,1.153,1.002,1.06,0.985,1.063,0.992,1.003,1.138,0.941,1.012,1.11,0.955,1.216,0.9,1.03,0.922,1.066,1.047,1.069,0.98,0.912,0.961,1.017,1.044 +XM_084672,1.01,0.952,0.991,0.961,0.884,0.866,0.875,1.315,0.989,0.99,1.36,1.023,1.115,0.817,0.958,2.102,1.001,0.809,0.859,1.505,0.916,1.05,0.98,1.043,0.98,1.152,1.052,0.977,0.797,0.919,1.137,0.96,0.798,1.018,1.052,0.986,1.669,1.018,1.022,0.856,1.018,1.231,1.222,0.889,0.945,1.07,1.027,1.045,0.907,0.942,1.139,0.964,0.932,0.882 +XM_084736,0.808,0.998,1.159,1.002,1.012,1.164,0.987,0.871,1.328,0.938,0.992,1.016,0.872,0.775,0.871,1.144,1.071,1.066,1.021,1.035,0.773,0.918,1.138,1.11,0.913,0.927,0.969,0.857,0.853,1.29,0.895,0.976,1.172,1.125,0.837,1.123,0.942,1.02,2.087,0.874,0.955,1.017,0.915,0.982,1.009,1.222,0.985,0.858,1.272,0.884,0.992,0.946,0.992,1.136 +XM_084743,1.005,1.122,1.092,1.01,0.972,0.852,1.053,1.075,0.965,1.11,0.937,0.914,1.011,1.044,0.955,1.039,0.98,1.075,0.98,1.023,0.993,1.051,0.936,1.041,1.091,1.045,1.011,1.14,0.96,0.975,0.972,0.958,1.008,0.948,0.988,1.066,0.973,0.983,0.986,1.006,1.017,1.044,1.369,0.91,0.916,1.009,1.033,0.877,0.981,0.973,1.064,0.968,0.923,1.152 +XM_084786,1.134,0.929,1.014,1.087,0.909,0.97,0.952,0.994,1.059,0.925,1.0,1.017,1.013,1.04,1.059,1.144,0.978,1.021,0.917,1.014,1.078,1.035,1.065,0.993,1.126,0.961,1.016,1.151,1.041,1.032,0.893,0.851,1.03,0.868,0.982,1.037,1.025,0.969,1.04,1.049,0.895,1.061,1.086,0.841,0.932,1.103,1.001,1.045,1.021,1.015,0.909,0.921,0.98,0.935 +XM_084860,0.827,0.969,1.062,0.769,0.821,1.078,0.693,0.618,1.14,0.873,1.011,0.938,0.72,0.912,0.963,1.062,0.994,0.812,1.008,1.074,0.707,0.939,1.054,1.149,0.806,0.8,1.379,0.856,0.435,1.124,1.004,1.509,1.439,1.154,0.631,1.035,0.986,0.854,1.191,1.398,1.016,1.034,0.497,1.314,0.898,0.996,0.873,0.759,1.022,0.891,1.089,0.89,0.826,1.806 +XM_084868,1.014,0.95,0.95,0.901,0.98,1.037,0.963,1.034,0.898,1.027,0.992,0.867,1.04,0.821,0.946,1.382,1.015,1.081,0.904,1.102,0.851,1.076,0.872,0.996,1.004,1.066,0.817,0.935,1.217,0.955,0.864,1.094,1.007,0.877,0.876,0.979,1.198,0.97,0.801,0.905,0.962,0.834,0.919,1.063,1.081,1.144,0.967,1.022,0.931,1.018,1.1,0.937,1.041,0.937 +XM_085028,0.907,0.908,1.069,0.89,0.933,0.966,0.913,0.815,0.951,0.918,0.977,0.985,0.972,0.937,0.926,0.969,0.993,1.003,1.0,0.841,0.869,0.863,0.939,1.053,0.962,0.936,1.158,0.878,1.14,1.112,0.834,1.6,1.303,0.924,1.004,1.258,1.058,0.922,1.19,1.348,0.89,0.851,0.931,1.249,1.073,0.95,1.186,0.933,1.011,1.001,0.916,0.991,1.065,0.986 +XM_085127,1.049,0.854,1.048,1.088,1.086,0.865,1.148,1.001,1.007,0.944,0.991,1.151,0.909,1.168,1.279,0.978,0.932,0.946,1.021,1.038,1.002,0.923,0.927,1.061,1.017,1.177,1.038,0.945,0.879,1.05,0.999,0.943,0.726,1.009,0.857,1.061,1.074,1.03,0.978,1.057,0.931,0.982,0.868,1.029,0.994,1.038,1.137,0.933,0.871,1.032,0.899,0.875,0.768,0.898 +XM_085128,0.947,1.056,1.037,0.966,0.933,0.984,1.192,1.165,1.047,1.094,1.064,0.99,1.136,1.009,0.926,1.031,1.001,1.002,1.121,0.98,1.077,0.916,0.921,1.09,0.934,1.008,0.94,1.043,1.098,0.999,0.928,0.994,1.023,1.042,1.172,1.06,1.028,1.101,0.951,0.962,0.991,0.902,0.995,0.979,1.051,1.004,0.956,1.002,0.97,0.92,0.889,0.934,1.062,0.963 +XM_085147,0.858,1.0,0.976,0.973,0.975,1.139,0.969,1.1,0.988,1.177,0.997,0.977,1.074,0.939,0.995,0.896,1.0,1.0,0.955,1.076,1.066,0.956,0.913,1.017,1.096,1.015,0.962,1.026,1.009,0.965,1.068,0.898,1.125,0.96,0.95,0.869,0.942,0.961,0.976,1.194,0.892,1.019,0.996,1.005,0.875,0.901,0.994,1.037,1.05,0.955,0.967,1.016,0.901,1.005 +XM_085151,0.748,1.086,1.513,0.763,1.0,0.833,0.773,0.474,1.177,1.156,0.933,0.697,0.637,0.841,0.875,0.9,1.083,0.779,1.041,1.093,0.713,0.739,1.359,0.875,0.741,0.86,1.333,0.798,0.56,1.35,1.011,1.293,1.831,1.143,0.5,0.901,0.88,0.931,1.56,1.126,1.015,1.501,0.858,1.767,1.062,1.044,0.92,0.782,1.101,0.92,1.095,0.878,0.905,1.317 +XM_085175,0.897,1.018,1.081,0.843,0.89,0.885,0.78,1.005,0.895,0.908,0.921,0.969,0.833,0.981,0.893,1.019,0.975,0.725,1.021,0.754,1.064,0.958,0.913,1.02,1.465,1.047,1.048,0.91,0.91,1.051,0.946,1.548,1.184,1.263,0.927,0.941,1.006,1.015,1.107,1.027,0.956,1.187,0.771,0.979,1.101,0.873,1.08,1.027,0.906,0.933,0.995,1.0,1.263,1.07 +XM_085186,1.048,0.884,1.035,1.009,1.15,0.986,0.971,1.115,1.038,1.063,1.061,1.021,1.036,0.865,0.916,1.004,1.07,1.111,1.01,1.01,0.933,0.987,0.924,1.118,1.046,1.102,1.079,1.09,1.107,1.172,1.102,0.916,1.035,1.028,0.852,0.923,1.022,0.882,0.902,0.879,1.009,0.948,1.254,1.048,1.021,0.957,1.047,1.015,1.085,1.06,0.958,0.927,1.074,1.074 +XM_085210,1.031,0.989,0.987,0.985,1.029,1.017,0.897,0.888,0.837,1.011,0.962,1.008,0.886,1.009,1.282,0.979,0.952,1.065,0.888,1.107,0.912,1.051,0.959,0.888,1.038,1.05,1.105,1.027,0.759,1.008,0.963,1.041,0.943,0.925,0.885,1.052,1.016,1.009,1.025,0.916,0.971,0.967,0.94,0.957,1.065,1.06,1.003,1.01,0.988,1.154,0.95,0.963,1.074,0.937 +XM_085225,1.057,0.866,0.999,1.133,1.194,0.965,0.938,1.216,1.108,0.813,0.825,0.943,0.924,0.787,1.119,1.11,1.078,0.979,0.948,0.975,1.067,0.976,0.997,1.104,1.079,1.034,1.066,1.149,1.008,0.915,1.127,0.925,1.066,1.027,0.959,0.995,0.875,1.029,1.014,0.972,0.974,1.013,0.924,1.042,0.966,1.111,1.09,1.032,0.914,1.001,0.937,1.027,0.941,0.931 +XM_085227,1.163,1.036,0.912,0.984,1.027,1.009,0.877,1.011,0.955,1.009,1.088,0.965,1.038,0.879,0.985,1.023,1.051,0.969,0.949,0.86,1.025,0.947,0.936,0.937,1.083,1.159,1.043,1.049,0.952,1.137,0.891,1.026,0.957,0.926,0.986,1.063,0.996,1.135,1.072,0.968,1.114,0.965,0.957,0.933,1.0,0.963,1.013,1.048,0.997,0.976,0.992,1.118,0.948,0.943 +XM_085234,0.905,1.006,1.041,1.138,1.072,0.874,1.316,1.053,1.027,1.07,0.944,1.237,0.911,1.146,1.06,1.039,0.866,1.161,0.976,1.014,0.98,1.122,0.98,0.939,0.934,0.903,1.062,1.02,0.901,0.87,1.091,0.978,0.89,0.889,0.959,1.023,1.064,0.975,0.935,0.99,0.967,1.166,1.1,0.795,0.837,1.191,1.107,0.98,1.097,1.099,0.931,1.037,0.958,1.042 +XM_085236,0.702,1.968,0.85,1.067,0.893,1.676,0.935,0.777,0.762,0.796,1.927,0.788,0.836,0.865,1.151,1.26,0.888,1.098,0.82,1.728,0.747,0.679,1.728,0.757,1.349,0.726,0.774,0.786,0.811,1.323,0.689,1.008,1.352,1.887,0.735,1.117,1.395,0.877,1.571,0.819,0.829,1.394,0.91,0.964,0.743,1.627,0.953,0.777,0.974,0.756,1.414,0.928,0.868,1.152 +XM_085261,0.876,0.968,0.926,0.974,1.109,1.001,0.88,0.929,0.937,0.9,1.009,1.384,1.018,0.744,0.971,0.978,0.99,1.005,0.946,1.12,0.817,1.004,1.128,0.93,0.976,1.028,0.992,0.96,0.858,1.115,0.976,1.014,1.003,1.085,1.063,0.98,0.961,1.002,1.032,0.9,1.069,0.987,0.993,0.909,1.037,0.959,1.111,1.082,0.956,0.997,0.93,0.98,0.962,1.039 +XM_085316,0.0816,1.369,0.0753,4.887,0.0718,13.76,4.892,0.0787,0.0974,0.0873,15.97,0.0932,0.0779,0.0658,9.216,18.42,0.0953,4.406,0.071,8.78,0.0821,0.0782,11.5,0.101,2.871,0.112,0.086,0.0874,3.269,5.636,0.0709,0.111,0.376,10.18,0.0878,6.737,12.51,0.082,3.286,0.316,0.0761,9.221,5.479,0.63,0.0982,9.128,2.61,0.0821,8.23,0.0761,6.931,0.144,0.134,0.531 +XM_085347,0.876,1.038,0.882,0.884,1.013,0.974,1.013,1.006,1.082,0.945,1.039,1.012,1.013,1.103,1.017,0.93,0.956,0.971,1.031,0.995,0.997,0.987,1.009,1.079,0.988,0.999,0.951,1.038,0.885,0.878,0.969,0.941,1.058,0.916,0.918,0.96,0.932,1.004,1.165,0.993,0.833,0.955,1.108,1.031,0.985,0.975,1.122,1.099,0.956,0.957,0.922,0.908,1.001,0.904 +XM_085354,1.08,0.901,0.924,1.031,0.908,1.009,0.974,1.102,1.044,1.137,1.009,0.948,1.042,1.021,0.883,1.056,1.002,0.965,0.952,1.029,1.109,0.968,0.95,1.013,0.98,0.924,0.94,1.127,1.394,1.009,0.928,1.037,1.042,1.065,1.039,0.934,0.997,1.028,0.937,1.034,1.041,0.931,0.883,0.973,0.909,1.098,1.107,0.906,1.066,1.057,1.016,1.106,0.985,0.962 +XM_085367,0.887,0.854,1.173,0.913,1.094,0.863,0.858,1.276,0.866,0.934,0.945,1.071,1.06,1.148,0.848,1.107,1.021,0.984,0.824,1.038,0.912,0.915,0.876,1.151,1.016,0.906,0.919,1.088,1.068,0.878,0.973,0.901,1.033,0.997,0.876,0.925,0.947,0.927,0.91,0.961,1.125,0.877,1.156,0.94,0.933,1.053,1.044,0.819,1.098,0.88,1.012,1.204,1.106,1.03 +XM_085374,1.167,1.063,0.99,0.987,0.983,0.971,1.06,0.945,1.073,1.06,1.082,0.912,1.142,0.983,0.984,0.985,1.069,0.921,1.076,0.93,0.981,0.989,0.871,1.0,0.984,0.918,1.073,1.005,0.884,1.061,0.975,1.005,1.046,1.092,1.116,1.171,1.05,1.027,1.044,1.028,1.032,0.958,0.935,1.104,0.997,1.09,1.025,1.036,0.836,0.961,0.966,1.0,0.937,1.182 +XM_085375,1.133,0.837,1.032,0.958,0.876,1.005,1.124,1.161,0.822,1.029,0.987,1.146,1.015,1.107,0.92,1.034,0.955,1.009,0.961,0.999,0.867,0.979,0.866,0.875,1.045,0.866,0.982,0.952,1.044,1.034,1.006,1.145,1.018,1.035,0.72,1.128,0.998,0.967,1.001,0.77,0.887,1.027,1.216,1.041,0.991,0.912,1.026,0.909,1.04,1.04,1.051,0.955,0.91,1.073 +XM_085383,1.003,1.052,1.056,0.966,1.139,0.929,0.886,0.849,0.964,0.858,1.09,0.996,0.882,1.112,0.89,0.926,1.06,1.026,1.009,0.989,1.198,1.238,0.885,0.92,0.941,0.989,0.982,0.873,0.594,0.944,1.061,0.855,1.038,0.933,1.075,0.932,0.981,1.053,0.904,1.169,1.002,0.906,0.991,0.96,0.958,0.999,0.863,1.02,0.863,0.976,1.048,0.991,1.116,1.076 +XM_085430,0.561,1.222,1.331,0.568,0.661,0.734,0.614,0.343,0.68,0.685,1.084,0.439,0.377,0.619,0.914,1.091,0.599,0.875,0.699,1.55,0.529,0.675,2.414,0.538,0.828,0.584,1.039,0.665,0.286,1.235,0.706,2.257,2.069,1.693,0.252,1.295,1.249,0.801,1.429,1.331,0.72,2.028,0.245,1.32,0.853,1.204,0.828,0.543,1.014,0.555,1.792,1.397,0.677,1.005 +XM_085461,1.008,0.992,0.975,0.969,0.865,0.989,1.017,0.899,1.04,0.94,0.854,0.969,0.881,0.835,0.926,1.032,1.013,0.885,1.072,0.994,0.998,0.911,1.047,1.028,0.965,1.023,0.954,0.977,1.003,1.035,0.947,1.075,1.0,1.048,0.946,1.099,1.008,0.951,1.012,0.969,1.0,0.889,0.948,1.012,1.064,0.985,0.939,1.046,0.903,1.04,0.897,1.113,1.096,1.087 +XM_085463,2.079,0.782,1.752,1.125,1.715,0.749,0.422,0.733,2.455,1.506,0.985,0.8,1.152,1.442,1.57,1.017,3.173,1.531,3.53,0.68,1.424,1.251,0.62,2.389,0.546,3.523,1.675,1.228,0.461,0.77,1.631,0.882,0.823,0.822,1.375,0.53,0.951,2.36,1.083,0.58,2.261,1.002,0.628,0.986,1.472,0.953,1.563,2.626,0.905,2.5,0.762,0.614,1.274,0.718 +XM_085492,1.052,1.096,1.035,0.998,1.066,0.981,0.839,1.014,0.945,0.874,1.126,0.898,0.891,0.948,1.005,0.922,1.055,0.898,0.89,1.093,1.013,0.984,1.064,0.945,1.088,1.062,0.998,1.068,0.959,1.084,0.968,0.893,0.943,1.033,1.128,0.941,1.025,1.16,0.951,0.972,1.08,1.068,1.062,0.959,0.983,1.015,1.003,0.986,0.959,1.059,0.939,0.937,1.062,1.007 +XM_085507,0.846,1.002,0.996,0.964,1.011,0.978,1.07,0.944,1.016,0.912,1.096,1.145,1.048,1.074,1.073,1.11,0.867,1.173,0.956,1.13,0.932,0.896,1.067,0.913,1.159,0.767,0.952,0.981,1.473,1.162,0.841,1.072,1.214,0.964,1.053,1.07,0.949,0.817,0.956,1.08,0.809,0.859,1.059,0.937,0.895,1.113,0.943,1.066,0.827,0.92,1.077,0.984,0.913,1.054 +XM_085578,1.017,0.898,0.865,0.876,1.051,0.914,0.99,1.027,0.888,1.213,0.988,0.797,0.853,1.031,0.91,1.213,1.288,1.171,1.016,0.986,1.05,1.004,1.023,1.213,0.919,0.943,1.063,0.855,1.55,0.969,1.005,1.038,0.912,0.981,0.97,1.08,0.922,0.876,1.057,1.159,1.074,0.913,1.148,1.045,0.888,1.151,1.066,0.874,1.169,0.978,1.065,0.92,0.973,0.976 +XM_085596,0.862,0.858,1.147,0.885,1.022,1.067,0.761,0.715,1.061,1.103,0.963,0.902,0.72,0.825,1.052,1.162,1.113,0.966,1.145,1.041,0.77,1.029,1.02,1.075,0.67,1.013,1.221,0.898,0.708,0.999,0.978,1.043,1.349,1.266,0.592,0.857,0.9,1.001,0.858,0.765,1.228,1.002,0.643,0.991,1.097,0.684,0.716,1.012,0.849,0.879,0.963,0.699,1.174,1.26 +XM_085634,1.041,0.979,1.139,1.104,1.056,0.953,0.929,0.97,1.0,0.977,1.048,1.029,0.979,0.965,1.032,0.811,1.015,1.066,1.2,0.994,0.998,0.974,0.857,1.173,0.974,0.979,1.004,0.974,1.06,1.085,1.012,0.958,0.965,0.99,1.015,0.995,0.983,1.101,1.028,1.053,1.103,1.023,0.923,0.951,1.012,0.933,0.871,1.023,0.991,1.028,1.085,0.914,0.908,1.067 +XM_085659,1.158,1.122,1.025,1.04,1.092,1.038,0.983,0.848,0.862,0.975,1.122,0.991,1.216,1.106,0.876,1.07,0.912,1.193,0.867,1.01,0.953,0.912,0.968,0.928,0.966,1.13,1.104,1.036,1.0,1.076,0.962,0.98,1.048,0.943,1.166,0.927,0.928,1.0,1.118,0.978,1.001,0.937,0.951,1.029,0.812,0.911,1.007,0.978,1.067,0.86,1.103,0.899,0.851,1.095 +XM_085689,1.028,1.023,0.951,0.991,1.052,0.982,0.965,1.018,1.072,0.962,0.902,1.063,0.963,1.091,1.058,0.984,0.941,0.977,1.155,1.061,0.927,1.028,0.935,0.976,0.879,0.886,1.021,1.063,1.222,1.086,1.033,0.898,1.14,0.849,1.019,1.087,0.928,1.02,0.941,1.009,0.968,0.999,0.955,0.921,0.911,1.063,0.995,1.04,0.91,1.001,0.925,0.983,1.233,1.034 +XM_085777,0.999,0.945,0.93,0.894,1.1,1.065,0.731,1.135,0.875,0.949,1.007,0.987,1.058,1.028,1.088,1.06,0.974,1.035,0.902,0.957,1.08,1.018,1.045,1.049,1.009,0.923,1.132,1.041,1.162,0.991,1.095,1.058,0.934,1.082,1.034,1.079,0.964,0.877,0.925,1.045,0.927,0.989,0.914,0.869,1.059,1.121,0.95,0.973,0.964,0.948,0.987,1.15,0.966,0.845 +XM_085817,0.952,0.969,1.037,1.001,0.908,0.964,1.01,1.022,1.043,1.099,0.851,0.918,1.041,0.914,0.798,1.033,1.025,0.988,0.923,0.965,1.145,1.042,0.98,0.928,1.006,0.964,0.953,0.991,0.992,1.109,0.986,0.983,0.999,1.011,0.975,1.046,1.065,0.968,1.009,1.041,1.019,0.886,1.076,1.014,1.059,0.956,1.113,0.991,0.877,1.051,0.996,0.927,1.007,1.001 +XM_085824,1.033,1.032,0.985,1.169,1.057,0.981,0.942,0.929,0.96,1.0,0.883,1.074,1.012,0.899,1.048,0.848,1.025,1.075,0.993,0.892,0.889,1.092,0.94,1.019,1.003,0.997,0.956,1.026,1.152,0.989,1.002,1.015,1.0,1.046,1.078,1.027,0.868,1.051,0.937,0.99,1.007,0.945,1.149,0.969,1.021,0.916,1.027,0.978,1.026,0.939,1.024,0.941,1.006,0.834 +XM_085830,0.983,0.983,1.003,1.006,1.066,0.955,0.889,1.022,0.891,1.042,1.062,0.996,0.957,0.927,0.954,0.899,1.14,0.972,0.901,1.045,1.01,1.019,1.067,0.999,1.015,0.934,0.936,0.991,0.888,0.958,1.039,0.992,1.023,0.995,0.988,1.09,1.003,1.15,1.146,0.913,0.981,1.045,0.907,0.914,0.943,1.065,1.049,0.972,0.955,1.125,1.087,1.043,0.942,0.966 +XM_085833,1.069,1.065,0.938,1.047,0.997,1.059,1.094,1.129,1.05,0.997,0.917,0.895,1.0,1.517,0.849,1.121,0.837,1.022,1.045,1.022,0.936,0.993,1.108,1.11,1.073,0.916,0.999,0.927,1.166,1.054,0.931,0.982,1.079,1.035,1.034,0.798,1.022,1.0,1.097,1.013,1.061,0.977,1.047,0.972,1.075,1.034,0.94,0.906,1.016,1.126,1.039,0.961,1.075,0.889 +XM_085836,1.101,0.919,0.964,0.911,1.061,0.992,0.903,0.953,1.188,1.137,1.045,1.05,1.015,1.176,1.4,0.864,0.973,1.179,0.921,1.041,0.823,1.083,1.033,1.035,0.989,1.007,1.184,1.095,0.779,0.919,0.953,0.839,1.198,0.96,1.266,1.001,0.903,0.965,0.908,0.979,0.936,1.045,0.791,0.817,1.248,0.875,1.12,0.979,0.958,1.117,0.881,0.943,1.19,1.153 +XM_085851,1.075,0.895,0.961,1.042,1.242,0.887,0.978,0.964,1.076,0.845,1.08,1.037,1.135,1.164,1.031,0.931,0.959,1.002,0.906,1.105,1.136,0.89,0.986,0.991,1.017,1.078,0.947,1.041,1.07,1.094,1.135,0.998,0.985,1.236,0.904,1.004,0.941,1.077,0.978,0.898,1.02,0.822,0.964,1.058,1.009,0.968,0.877,0.892,1.009,1.066,1.022,0.787,0.982,0.945 +XM_085870,1.065,1.02,1.095,1.116,0.914,1.025,0.893,0.991,1.044,0.708,0.935,1.006,0.889,0.977,1.086,0.934,0.946,0.957,1.07,0.918,0.958,0.95,0.91,0.942,0.92,0.87,0.978,1.03,0.96,1.127,0.876,0.978,1.045,0.874,0.967,0.995,1.072,0.967,0.985,1.067,0.735,0.995,1.143,1.156,1.034,0.976,1.138,1.04,0.945,1.012,1.01,0.971,1.062,2.787 +XM_085932,0.919,1.003,1.008,0.848,1.073,1.081,0.95,1.231,0.862,1.051,0.791,1.285,0.99,1.073,1.114,0.897,0.92,1.137,1.074,0.824,1.027,0.995,1.099,1.03,1.036,0.975,0.991,0.99,1.25,0.901,1.059,0.942,1.254,0.921,0.959,1.081,1.166,1.508,0.91,1.023,0.947,0.872,1.283,0.936,1.03,0.94,1.117,1.008,0.899,0.906,0.875,1.116,1.153,1.017 +XM_085967,0.999,0.933,1.211,0.952,1.14,0.984,1.135,0.942,0.998,0.946,1.3,0.947,1.171,0.94,0.966,0.975,1.079,0.844,1.1,1.16,1.032,1.006,0.998,1.035,0.884,0.986,1.017,1.174,0.939,0.884,0.902,1.0,0.883,0.988,1.053,0.884,0.873,0.968,1.004,1.096,0.985,1.132,1.126,0.84,0.954,1.0,1.062,1.103,1.062,1.05,1.056,0.923,0.902,0.969 +XM_086001,1.114,0.947,1.062,1.047,1.112,0.867,1.052,1.215,0.863,0.91,1.0,1.036,0.974,0.893,0.828,1.035,0.84,1.114,0.957,0.964,1.07,0.994,0.965,1.016,0.984,1.2,1.011,1.137,1.187,1.01,1.013,1.112,1.09,1.003,1.138,1.0,1.045,1.124,0.936,0.975,1.081,0.957,1.018,0.962,0.94,1.008,1.057,1.01,1.074,0.984,0.978,1.062,0.822,0.975 +XM_086025,1.014,1.037,1.149,1.087,0.938,1.043,0.993,0.952,0.969,0.909,1.083,0.927,0.984,1.162,1.063,1.005,0.918,1.028,1.05,0.946,1.052,1.069,1.088,0.95,0.996,1.08,1.06,1.078,1.04,0.986,1.11,1.062,1.028,1.003,0.967,0.993,1.077,1.004,0.927,0.923,1.018,1.015,0.927,0.882,0.927,0.939,1.02,1.109,0.941,1.088,0.98,1.101,1.017,0.85 +XM_086046,1.033,1.015,0.843,1.118,1.127,1.073,0.834,1.127,1.017,0.938,1.04,0.915,1.046,1.106,0.78,0.915,0.88,1.138,0.955,1.009,1.128,1.029,1.107,0.924,0.978,0.931,0.919,0.934,1.174,0.91,1.043,0.973,0.945,1.006,1.003,1.157,0.937,1.15,0.995,1.06,0.975,1.068,0.936,1.057,1.065,1.109,0.925,0.913,0.982,0.972,0.921,1.051,0.856,0.948 +XM_086103,1.079,0.95,1.041,1.121,1.022,0.887,0.914,0.794,0.887,0.917,0.906,0.968,1.046,1.117,0.887,1.016,0.968,0.969,1.016,1.009,1.15,0.884,0.816,0.97,0.978,1.009,0.787,0.921,1.388,1.009,0.958,1.03,0.946,1.07,1.012,0.962,0.998,1.084,1.016,1.149,1.002,1.104,1.254,0.951,0.933,1.083,0.962,0.949,1.005,1.076,0.995,1.253,1.118,0.955 +XM_086176,0.832,1.0,1.001,0.891,0.978,1.02,1.089,0.837,0.921,0.997,0.94,1.005,0.924,0.888,0.881,1.082,0.961,0.889,0.936,0.995,0.875,0.905,1.008,0.998,0.95,0.977,1.026,1.004,0.732,1.149,0.922,1.0,1.298,1.289,0.799,1.161,1.017,1.115,1.046,1.089,1.041,1.047,1.182,1.034,0.939,0.971,0.971,0.922,0.708,0.905,1.017,0.967,0.971,0.954 +XM_086188,0.617,1.751,0.694,0.722,0.698,3.064,0.946,0.675,0.765,0.53,4.322,0.682,0.856,0.631,1.343,3.751,0.695,1.119,0.637,4.331,0.457,0.623,2.249,0.49,1.277,0.59,0.711,0.644,0.914,2.027,0.61,0.6,1.025,2.537,0.478,0.98,2.612,0.649,1.637,0.578,0.702,2.264,0.872,1.124,0.603,3.175,1.143,0.59,0.942,0.474,2.177,0.648,0.508,2.448 +XM_086287,1.034,1.024,0.995,0.942,0.872,0.909,0.83,1.08,1.091,0.991,1.136,1.052,1.047,0.942,1.124,1.108,1.0,1.042,1.055,1.056,1.009,0.917,1.082,1.06,1.049,1.125,1.073,1.069,1.077,0.865,0.936,1.033,0.913,0.96,0.925,0.992,1.023,0.964,1.086,0.954,0.988,1.068,0.959,0.997,1.032,1.144,1.0,0.931,0.922,0.921,1.042,0.966,0.914,0.897 +XM_086344,1.142,0.937,0.991,1.218,1.209,0.898,0.998,0.998,0.856,0.946,1.11,0.948,0.961,1.215,1.102,1.078,0.977,1.011,1.159,0.903,1.042,1.047,1.065,1.046,1.072,0.942,0.937,1.023,1.02,1.057,0.968,0.975,0.999,0.947,0.937,1.0,0.943,1.093,1.029,0.915,0.961,1.064,0.966,1.029,1.039,1.051,1.052,0.971,0.964,1.239,1.17,0.994,1.074,1.02 +XM_086361,2.256,0.56,4.521,0.94,3.384,0.467,0.312,2.137,3.308,2.834,0.357,1.938,1.22,2.841,1.976,0.889,2.763,1.37,3.187,0.576,1.403,3.956,0.469,3.228,0.276,3.228,4.062,4.117,0.152,0.579,3.03,0.521,1.49,0.528,2.184,0.343,0.325,4.072,0.588,1.68,3.633,0.448,0.146,0.437,3.195,0.629,1.486,3.581,0.37,2.395,0.783,0.965,2.647,1.102 +XM_086385,0.952,1.004,0.963,0.894,0.972,1.102,1.053,0.947,0.989,0.957,0.953,1.014,0.964,1.141,0.996,0.978,1.035,1.118,0.978,0.981,0.911,1.108,0.94,1.03,0.894,0.994,0.985,1.009,0.909,1.03,0.97,1.083,1.327,0.927,1.205,0.932,0.973,0.996,1.012,1.14,1.006,0.879,0.966,1.06,1.047,1.011,0.967,1.019,0.964,1.067,0.892,0.966,1.106,1.014 +XM_086402,1.017,1.081,0.904,0.975,0.932,1.106,0.885,0.947,0.838,1.036,0.941,1.023,0.963,0.919,1.019,1.077,1.054,1.064,0.868,0.995,0.92,1.046,0.891,1.059,0.941,1.049,1.029,1.002,1.322,1.077,0.953,0.945,1.42,0.977,1.118,1.028,0.999,1.076,1.01,1.055,0.971,0.905,1.103,0.98,0.952,0.912,0.954,1.02,0.991,0.939,0.979,0.891,1.044,1.134 +XM_086409,1.057,0.994,1.023,0.84,1.123,1.022,1.007,0.951,1.001,1.0,0.97,0.973,1.072,1.012,0.91,1.014,1.016,0.977,1.008,1.023,1.015,0.965,1.184,1.033,0.97,0.882,0.904,1.053,1.034,1.054,1.001,1.089,1.054,0.961,1.2,1.221,0.999,0.704,0.951,0.966,0.999,0.862,1.097,1.134,1.065,1.131,0.959,0.975,1.063,1.06,0.967,0.936,1.042,0.95 +XM_086502,1.009,1.559,0.801,1.045,0.796,1.162,1.022,0.913,0.719,0.86,1.145,0.857,0.981,0.898,0.747,1.18,0.697,0.935,0.991,1.0,0.876,0.816,0.993,0.887,1.056,0.832,0.931,0.898,1.273,1.841,0.86,3.77,1.096,2.425,0.824,1.04,1.021,0.938,1.608,1.837,0.905,1.162,0.904,2.003,0.852,0.976,0.869,0.88,0.813,0.863,0.975,1.193,0.99,1.37 +XM_086503,0.938,0.986,0.971,0.939,1.016,1.024,0.89,0.983,0.992,0.905,0.921,1.023,0.986,0.768,0.898,1.036,0.973,1.081,0.974,1.033,1.03,0.991,0.984,0.998,1.05,0.99,0.973,0.955,0.883,0.964,0.939,0.897,0.943,1.085,0.996,1.003,0.974,1.077,1.065,1.028,0.999,1.021,1.065,1.056,0.988,0.951,1.145,1.075,1.064,1.059,0.966,1.083,1.027,1.178 +XM_086580,0.714,1.222,1.247,0.779,1.074,0.782,0.619,0.858,1.184,1.084,0.869,1.076,0.983,1.244,1.013,1.064,0.92,0.877,1.284,0.976,0.782,1.062,0.944,0.998,0.623,1.039,1.35,1.404,0.449,0.809,1.314,1.125,1.754,1.283,1.185,0.674,0.702,1.166,0.837,1.193,1.366,0.963,0.697,0.769,0.988,1.061,0.854,0.918,0.751,0.888,0.858,0.856,1.049,0.942 +XM_086604,1.112,1.008,0.954,0.954,1.214,0.95,0.857,0.942,1.1,1.104,1.054,1.062,1.188,0.731,0.881,0.937,0.943,0.979,0.937,0.899,0.846,1.101,0.892,0.993,0.89,0.941,1.064,1.017,1.079,1.032,0.838,1.002,0.743,1.125,0.942,1.001,0.906,1.08,0.932,1.051,0.972,0.926,0.972,1.03,1.039,1.082,1.091,0.907,1.06,1.053,0.846,0.968,0.92,1.01 +XM_086616,0.982,0.931,1.057,1.112,1.043,0.967,1.06,1.004,0.939,1.043,1.039,1.049,1.049,1.04,0.83,1.069,0.917,1.091,1.009,0.926,0.986,1.123,1.035,0.904,1.099,1.08,1.008,0.896,0.736,1.062,0.994,1.031,0.878,0.947,1.098,1.014,1.091,1.157,1.021,0.938,1.034,0.921,1.264,1.26,0.969,1.0,0.997,0.913,0.965,0.797,0.96,0.962,0.922,1.04 +XM_086628,1.031,1.056,1.086,0.93,0.964,0.956,0.965,1.074,1.073,1.052,1.111,0.934,1.038,1.048,1.283,1.001,0.889,0.895,0.877,1.009,1.01,0.954,0.934,1.086,1.037,1.02,1.1,1.01,1.06,0.985,1.016,0.905,1.063,0.934,1.007,1.007,0.999,1.065,0.877,0.996,0.968,0.959,1.152,0.939,0.982,1.046,0.781,1.006,0.894,0.971,0.97,1.044,1.031,0.928 +XM_086637,1.057,0.994,0.863,0.984,1.023,0.851,0.963,0.919,1.005,1.236,0.958,1.127,1.059,1.021,0.764,1.028,1.062,1.003,1.079,0.832,1.049,0.977,0.926,1.089,0.964,1.196,1.047,1.019,0.945,0.949,1.0,0.864,1.133,0.923,0.978,1.063,1.075,1.099,1.191,0.877,1.054,1.001,1.142,1.002,1.056,0.915,1.001,0.835,1.119,1.134,1.123,1.007,1.279,1.158 +XM_086648,1.01,0.892,0.956,1.05,0.897,0.952,0.945,1.022,1.052,0.95,1.064,1.099,0.919,1.051,0.88,0.966,0.993,1.02,1.034,0.954,1.014,0.93,1.028,1.082,1.1,1.024,0.938,1.01,0.833,1.032,0.985,0.906,1.006,1.036,1.135,1.085,1.084,1.02,0.924,0.843,0.952,1.07,1.042,0.918,0.962,1.09,1.085,0.984,0.822,1.061,1.053,1.021,0.919,0.948 +XM_086650,1.048,0.99,1.039,0.898,1.03,1.018,1.069,0.957,0.912,0.938,0.938,1.001,0.923,0.996,1.097,0.935,1.056,1.138,0.999,1.023,1.133,1.041,1.084,0.933,0.979,1.039,1.007,1.043,1.123,1.056,1.078,1.1,1.042,1.157,1.007,0.921,1.078,1.063,1.143,0.959,0.961,0.99,0.914,1.054,0.935,0.991,0.919,0.93,0.927,0.959,0.896,0.95,1.065,1.068 +XM_086659,1.145,0.897,0.928,0.889,1.024,0.944,0.811,1.041,0.939,1.05,0.852,1.133,0.907,0.876,1.029,0.905,1.166,0.915,0.703,0.913,1.074,1.088,0.935,1.011,1.049,0.881,1.215,1.014,0.706,0.923,1.06,1.037,0.757,0.991,1.011,0.959,1.089,0.994,1.018,1.083,0.926,1.032,1.055,0.968,1.038,0.973,1.127,1.118,1.119,1.039,0.969,0.83,0.807,1.013 +XM_086666,0.976,1.062,1.079,1.061,0.936,0.968,0.98,1.014,1.033,0.897,0.934,1.005,1.038,0.866,0.972,0.936,1.036,0.967,0.929,0.945,0.959,0.964,0.919,1.056,1.093,0.971,1.071,1.01,1.02,0.979,0.888,0.884,0.943,0.829,1.01,0.96,1.004,1.13,1.028,0.989,0.99,1.011,1.137,0.884,0.969,1.062,1.063,1.04,1.099,1.0,0.995,1.086,1.009,0.939 +XM_086694,1.03,1.103,0.87,1.002,1.035,1.05,0.971,0.938,1.032,1.099,0.918,1.06,1.081,0.92,0.74,0.959,1.073,0.87,0.939,0.989,0.812,0.965,1.02,0.926,0.974,1.157,1.039,0.883,0.912,1.014,1.041,1.017,0.908,0.998,0.974,0.95,0.969,0.876,0.968,1.023,0.905,1.046,0.827,0.927,0.949,1.042,1.028,0.969,0.998,1.061,1.03,1.01,0.986,1.088 +XM_086699,1.062,0.961,0.949,1.028,1.089,1.034,0.878,0.86,0.95,0.941,0.96,1.083,0.967,1.013,1.248,0.93,0.933,1.015,1.023,1.157,1.197,1.052,0.91,1.053,0.973,1.069,1.116,0.972,0.797,1.03,1.045,1.025,0.945,0.992,0.964,1.004,0.963,1.171,0.933,0.962,1.026,1.007,1.155,0.959,0.967,0.98,0.995,1.053,0.981,0.948,0.953,1.026,0.955,0.948 +XM_086728,2.517,0.586,1.715,0.923,2.253,0.901,0.504,2.025,2.608,1.893,0.811,0.886,2.303,2.201,1.625,1.182,3.073,1.289,1.347,0.829,0.857,1.968,1.069,1.201,0.628,3.141,1.537,1.92,0.481,0.843,2.621,0.843,0.845,0.697,5.986,0.491,0.787,1.989,1.011,1.006,2.101,0.905,0.347,0.679,2.146,0.885,1.671,3.717,0.762,1.342,1.12,0.936,1.378,0.72 +XM_086761,0.942,0.989,1.004,1.152,0.916,1.19,1.031,0.86,0.782,1.096,1.152,1.061,0.996,0.825,0.877,1.086,1.036,0.883,0.996,1.269,1.004,1.014,1.051,0.984,0.977,0.96,0.858,0.95,0.828,0.988,0.864,1.03,1.134,1.348,1.087,0.936,0.987,1.035,0.814,0.964,0.95,0.992,0.862,1.015,0.959,1.132,1.099,1.064,1.103,1.07,1.042,0.919,1.01,0.967 +XM_086823,1.15,0.995,1.034,0.903,1.022,1.051,0.898,0.941,0.944,0.999,1.011,1.039,1.067,1.024,0.898,1.029,1.076,0.906,0.927,0.969,0.99,0.929,0.967,1.049,1.007,1.135,0.925,1.104,1.136,0.992,1.086,0.975,0.951,0.978,1.067,1.019,1.015,0.999,0.991,0.97,1.116,0.937,0.965,0.93,0.954,0.938,1.074,1.052,1.069,0.927,1.033,0.951,1.003,0.975 +XM_086826,0.814,1.015,0.805,1.161,0.712,1.436,1.007,0.711,0.896,0.842,0.879,0.809,0.808,0.814,0.951,0.94,0.766,0.997,0.718,1.111,0.801,0.912,1.155,0.973,1.019,0.829,1.034,0.89,1.17,1.248,0.918,1.604,1.207,1.353,0.744,0.901,1.067,0.901,1.55,0.942,0.859,0.95,0.888,1.007,0.788,0.86,0.851,0.939,0.961,0.747,1.111,0.821,0.737,1.295 +XM_086852,1.029,1.054,0.99,1.055,1.045,0.983,0.897,0.933,0.968,0.937,0.96,0.992,0.995,1.202,1.027,0.947,0.993,0.983,1.027,0.983,1.077,1.037,0.954,0.98,1.147,1.15,1.121,0.987,1.086,1.042,1.091,0.94,1.054,1.098,1.04,0.932,0.94,0.781,0.939,0.983,1.112,1.141,0.894,1.01,1.088,1.29,1.054,0.99,1.093,1.037,1.064,0.921,1.06,1.116 +XM_086879,1.289,1.324,1.654,0.759,2.241,0.728,0.474,1.239,2.172,1.775,0.669,1.925,1.991,1.397,1.468,0.905,1.029,1.457,1.175,1.034,0.777,1.885,0.933,2.056,0.63,1.46,1.463,2.034,0.302,0.95,2.194,0.57,1.28,1.101,0.437,0.733,0.613,2.682,0.719,1.123,1.722,1.356,0.553,0.76,1.44,0.949,0.801,1.58,0.588,0.922,0.798,1.386,1.285,1.531 +XM_086894,0.844,1.023,0.931,0.973,1.026,1.053,1.047,0.937,0.991,1.01,0.963,1.014,0.928,1.084,1.136,1.111,0.988,0.931,0.969,0.942,1.043,0.819,0.877,0.961,1.038,0.919,0.985,0.964,1.215,0.882,1.065,0.951,1.004,0.989,1.069,1.121,1.028,0.879,0.955,0.943,0.991,1.032,0.934,0.978,1.037,0.929,0.956,1.019,0.92,1.12,1.026,1.0,1.014,0.82 +XM_086905,1.104,0.982,0.917,0.93,0.997,0.854,1.02,0.943,1.001,1.005,0.927,0.855,1.049,1.142,0.806,1.021,0.927,0.986,1.105,1.216,1.031,0.915,0.902,0.945,0.967,0.83,1.026,1.03,1.022,1.037,0.94,0.949,0.967,1.121,1.156,0.96,1.234,0.932,1.071,0.863,1.116,1.056,1.076,0.841,0.978,1.032,1.023,0.995,1.117,1.028,0.967,0.923,1.032,0.995 +XM_086906,0.917,1.114,0.991,0.874,0.957,0.945,0.96,0.999,0.982,1.046,0.886,1.035,0.988,1.343,0.872,1.009,0.994,1.051,0.927,1.006,0.953,1.053,1.004,0.978,0.928,1.01,1.101,1.173,0.917,0.942,1.055,1.033,1.163,0.993,1.179,1.015,0.871,1.061,1.053,1.009,1.035,0.931,0.811,0.94,1.092,0.936,0.965,1.025,1.115,0.948,0.982,0.984,0.831,1.143 +XM_086931,1.0,0.975,1.088,1.0,0.958,0.973,1.21,0.991,0.947,0.949,1.136,0.923,1.022,1.017,1.24,1.273,0.917,0.868,0.988,0.963,0.888,0.88,0.931,0.961,0.93,0.824,0.951,1.206,0.782,1.077,1.117,0.944,1.751,1.027,0.999,0.902,1.035,0.879,1.076,0.942,1.148,0.972,1.009,1.148,1.167,0.929,1.027,0.943,0.975,0.909,1.019,1.005,0.96,1.164 +XM_086942,0.936,0.97,1.072,1.045,1.014,0.975,0.833,1.075,0.885,1.101,0.919,1.044,1.066,1.14,0.987,1.069,0.928,1.01,0.923,0.959,1.069,1.063,0.938,0.968,1.03,1.063,0.914,0.993,1.175,1.009,1.049,0.989,1.018,0.963,1.005,0.955,1.079,1.073,0.968,0.985,0.935,0.946,0.86,0.945,1.069,1.021,0.973,1.088,0.969,1.045,0.995,1.025,0.936,0.977 +XM_086996,0.974,1.214,1.067,1.033,0.933,0.913,0.984,0.869,0.975,0.962,1.102,0.976,0.99,1.234,1.025,0.938,1.007,1.152,1.063,1.113,0.926,0.995,1.056,0.896,1.013,1.035,1.121,0.987,0.964,1.01,0.993,1.357,0.981,1.057,0.987,0.943,0.98,0.931,1.03,0.893,0.876,1.08,1.015,0.914,0.984,0.987,1.026,1.063,0.969,0.812,1.005,1.012,1.116,1.018 +XM_087056,0.869,1.001,0.923,0.86,0.905,0.884,1.098,0.96,0.812,1.216,1.275,1.073,0.932,0.842,1.034,1.11,1.032,1.058,0.948,0.968,1.032,1.008,1.13,1.051,0.899,0.978,1.087,0.916,1.013,0.9,1.041,0.916,1.154,0.939,1.021,0.901,0.921,0.972,1.176,0.9,0.793,1.033,0.882,0.836,0.888,1.185,0.85,0.982,1.052,1.124,1.014,0.836,0.913,1.123 +XM_087062,0.854,0.985,1.261,0.672,1.089,0.896,0.475,0.878,1.175,0.98,0.988,1.405,1.343,0.564,0.705,1.03,0.976,0.999,1.48,0.993,0.699,1.272,1.692,1.141,0.813,1.389,1.28,1.308,0.371,0.89,1.011,0.972,0.829,1.205,0.443,1.285,0.875,1.354,1.296,0.572,1.136,1.118,0.53,0.818,1.236,0.724,0.984,1.191,0.897,0.985,0.868,0.879,0.958,1.17 +XM_087065,1.042,0.911,1.044,0.975,0.917,0.955,1.023,0.908,1.011,1.038,1.06,0.915,0.89,1.142,0.971,0.911,0.938,1.117,1.06,1.013,1.085,1.154,0.947,0.948,1.061,0.983,0.975,0.987,1.133,1.018,0.999,0.975,1.012,0.919,0.966,0.98,1.032,1.01,0.999,1.048,1.03,1.009,1.215,1.012,0.959,1.012,0.991,0.908,0.904,1.105,1.034,1.115,1.018,0.928 +XM_087089,0.77,0.998,1.404,0.681,1.165,0.868,0.726,0.657,1.468,1.663,0.805,1.218,0.843,0.792,0.943,1.273,0.718,0.838,1.401,0.937,0.934,1.003,1.395,1.322,0.53,0.979,1.222,1.107,0.499,0.941,1.218,0.814,3.018,1.057,0.319,1.122,0.917,0.977,0.918,1.35,1.079,1.08,0.746,1.277,1.383,0.841,0.936,0.796,1.036,1.069,0.863,1.369,1.341,1.844 +XM_087097,0.842,1.157,0.909,1.033,0.881,0.902,0.934,0.848,1.364,0.997,0.928,1.022,0.946,1.005,0.949,0.942,0.945,0.961,0.817,1.047,0.817,1.058,1.161,0.871,0.96,0.893,1.07,0.973,1.123,1.112,0.989,1.111,1.14,0.875,1.05,1.071,1.108,1.023,0.807,1.02,1.037,1.012,0.865,1.107,0.904,0.842,1.145,0.967,0.957,1.086,0.995,1.049,1.108,0.881 +XM_087116,0.992,0.994,0.937,1.067,1.088,1.046,1.147,1.017,0.867,0.954,1.124,0.936,1.02,1.033,0.889,1.055,1.015,1.023,0.935,0.902,1.073,0.992,1.021,0.972,0.957,0.988,0.906,1.128,1.144,1.033,0.965,0.968,0.967,0.985,1.098,1.05,0.912,0.929,1.047,0.911,1.043,1.009,1.145,1.023,1.116,1.029,0.984,1.047,0.936,1.018,1.091,0.999,1.007,1.095 +XM_087136,0.968,1.055,1.107,1.166,0.88,1.063,1.125,0.97,1.097,1.015,0.964,1.142,1.004,0.938,0.809,1.017,0.852,0.968,0.956,1.025,1.014,0.911,0.966,1.063,1.088,1.023,1.064,0.947,0.99,1.103,0.976,0.994,1.003,1.019,1.065,1.012,0.97,0.878,0.951,0.999,1.001,0.926,1.305,0.904,1.002,0.963,0.975,0.958,1.11,1.012,1.037,0.885,0.897,1.087 +XM_087137,0.965,0.988,0.968,0.954,1.182,1.11,1.009,0.956,1.08,1.026,0.973,0.944,1.005,0.954,1.027,1.04,0.931,1.092,0.866,1.028,0.979,0.987,0.832,0.984,1.013,1.0,0.921,0.92,1.022,1.055,1.071,1.053,1.102,1.062,0.987,1.025,0.894,1.049,1.201,1.007,0.97,1.024,0.894,1.001,1.104,1.05,1.017,1.036,1.004,0.914,1.0,0.983,0.947,1.167 +XM_087154,1.0,0.887,1.637,0.92,1.047,0.874,0.964,1.0,1.252,0.963,0.889,1.022,0.915,1.016,0.872,1.03,1.075,0.773,1.203,0.845,0.961,0.863,1.065,0.995,0.963,0.951,1.183,0.993,0.897,1.062,0.954,1.065,1.216,1.273,0.883,0.984,0.918,0.894,1.018,0.816,1.041,0.97,0.898,0.942,1.269,0.876,1.17,0.939,0.778,1.051,0.992,0.936,1.032,1.123 +XM_087182,1.042,1.06,0.952,0.947,0.779,1.064,1.135,1.071,0.976,1.087,0.849,1.137,0.992,1.045,0.738,0.793,1.025,0.925,0.974,0.957,1.018,1.106,0.839,0.951,1.143,1.12,1.071,0.982,0.932,0.993,1.003,0.877,1.007,0.951,1.115,1.099,1.037,0.93,0.863,1.048,0.932,0.865,1.183,1.248,0.991,1.167,1.022,0.97,1.089,1.003,1.122,0.896,1.02,0.977 +XM_087200,0.859,0.997,0.905,1.07,1.168,0.959,1.217,0.87,1.063,0.889,0.927,0.913,0.903,0.936,1.003,0.964,1.056,1.128,0.988,0.999,0.987,1.035,0.967,0.964,0.925,0.984,0.928,1.001,1.14,0.975,1.074,0.992,1.024,0.916,0.969,1.135,1.078,1.006,1.078,1.009,1.13,1.006,1.061,0.892,1.095,0.976,1.037,0.926,0.991,1.021,0.819,1.027,1.059,0.904 +XM_087223,0.945,0.883,0.949,0.999,0.988,1.001,1.017,1.159,1.114,0.962,1.159,1.086,0.971,1.09,0.997,1.089,1.044,1.006,0.963,0.901,0.966,1.011,1.043,0.964,1.017,0.947,1.042,0.944,1.006,1.004,0.948,0.982,0.978,0.934,0.927,0.936,0.969,0.936,0.981,0.972,1.059,1.119,0.885,1.01,1.028,0.973,0.993,0.906,1.174,1.055,1.063,1.045,0.932,1.053 +XM_087225,0.948,1.135,1.135,1.047,1.012,1.126,1.128,1.331,0.892,0.971,1.0,0.918,0.784,0.951,1.156,1.023,0.927,1.056,0.834,0.946,0.916,0.832,0.98,1.031,1.036,0.881,0.942,1.044,1.106,0.903,1.054,1.033,1.069,1.081,0.96,0.921,1.044,0.93,0.917,0.974,1.132,1.023,1.57,1.237,0.911,0.966,0.936,0.855,0.921,1.058,0.943,1.049,1.101,1.062 +XM_087254,0.986,1.123,1.134,0.831,1.151,1.087,0.691,0.771,1.622,1.112,0.941,0.727,0.66,0.937,1.172,1.218,1.011,0.947,1.359,1.033,0.895,0.739,1.068,1.198,0.824,0.82,1.221,1.067,0.406,1.584,1.407,1.295,1.0,1.378,0.494,0.657,0.938,0.826,0.875,0.648,1.247,0.878,0.591,0.825,1.236,1.078,0.922,0.708,0.865,0.759,0.951,0.597,0.962,1.139 +XM_087329,0.984,0.979,1.1,0.905,0.879,1.119,0.927,1.031,0.925,0.972,0.951,0.966,1.141,1.144,1.131,0.981,1.023,0.909,1.103,1.075,0.955,1.049,0.905,1.073,1.156,1.175,0.906,0.866,0.818,1.076,0.973,0.973,0.997,0.925,0.967,0.87,1.064,1.139,0.979,1.063,1.038,0.978,0.763,0.865,0.894,0.956,0.933,0.927,1.008,0.944,0.895,1.02,0.915,1.032 +XM_087353,1.042,0.967,1.445,0.749,1.132,0.782,0.725,0.656,1.293,1.174,0.95,0.705,0.69,1.009,0.905,1.03,0.927,1.093,1.367,0.916,1.01,0.957,0.881,0.918,0.977,0.894,1.334,0.979,0.799,0.984,1.146,1.278,1.241,0.972,0.721,0.776,0.975,1.038,0.993,0.858,1.058,1.03,1.352,1.189,0.992,1.017,1.102,0.854,0.799,1.063,1.043,0.956,0.966,1.442 +XM_087384,0.925,1.083,1.094,0.999,0.983,1.007,0.983,0.926,0.999,1.116,1.186,1.056,0.867,0.855,1.039,1.1,1.041,1.154,1.199,1.081,1.09,0.98,0.907,0.98,1.02,1.122,1.065,0.943,0.968,1.018,1.083,1.107,0.846,1.014,0.928,1.028,1.08,1.053,0.844,0.98,0.949,1.052,0.874,0.974,0.975,0.941,1.01,0.981,0.881,0.995,0.97,0.992,0.788,0.928 +XM_087483,0.94,0.835,1.302,0.767,1.417,1.183,1.11,1.29,1.711,1.172,0.857,1.065,0.986,0.984,0.922,1.136,0.849,1.221,0.866,0.974,0.801,1.607,1.156,1.954,0.817,0.831,1.273,1.194,0.971,1.279,1.573,0.944,0.783,1.174,0.823,0.719,1.146,1.347,1.195,0.821,1.158,0.928,1.038,0.851,1.31,1.03,1.077,0.912,1.105,1.039,1.089,0.866,0.955,0.857 +XM_087518,0.921,1.03,0.976,1.053,1.056,0.993,0.896,0.851,1.072,1.042,1.052,0.925,0.958,1.229,1.024,0.926,1.064,1.047,1.01,0.978,1.024,1.042,1.0,0.909,1.033,1.051,1.026,1.0,0.997,1.063,0.935,1.058,0.895,1.08,0.879,1.041,0.948,0.975,0.935,1.006,0.987,0.962,0.915,0.866,1.044,1.095,0.951,1.028,0.972,1.014,0.997,1.012,1.028,1.101 +XM_087519,0.869,1.01,1.018,1.007,0.927,1.08,1.102,1.167,0.948,0.986,0.982,0.984,0.895,1.0,1.118,0.991,0.973,0.961,1.023,1.021,1.011,1.026,1.037,1.021,0.989,1.085,1.04,1.07,1.123,1.013,1.047,0.979,0.984,1.029,1.026,0.942,0.973,1.092,0.937,1.011,1.041,1.073,0.916,0.914,1.07,0.871,1.077,1.044,0.982,1.029,0.922,1.058,0.982,1.067 +XM_087532,0.974,0.973,1.004,1.142,0.892,0.986,0.878,1.068,0.925,1.063,1.191,0.946,0.882,1.048,1.385,0.992,0.926,1.035,0.962,0.987,0.935,1.085,0.993,1.147,0.965,1.172,0.927,0.989,1.08,0.968,0.907,1.057,1.078,1.08,0.974,0.952,1.137,1.025,0.96,1.028,0.976,1.038,0.936,0.934,1.037,1.006,1.117,1.002,0.942,0.931,1.064,0.962,0.994,1.024 +XM_087561,0.955,1.03,0.849,0.955,1.143,0.981,0.965,1.004,1.08,0.978,0.92,0.904,1.077,0.928,0.897,1.012,0.941,1.041,0.879,1.103,1.089,0.917,0.985,0.967,1.058,0.914,0.979,1.117,1.066,1.028,1.006,0.983,0.92,0.88,1.099,0.98,0.966,0.946,0.922,1.024,0.873,0.825,1.101,1.015,1.021,0.993,1.024,1.05,0.996,0.823,1.027,1.046,1.022,0.971 +XM_087593,0.8,1.093,1.584,0.582,1.053,1.184,1.098,0.876,1.169,1.124,0.831,1.293,1.092,0.708,0.935,1.461,0.803,0.954,0.808,1.056,0.497,1.102,1.099,1.491,0.683,0.601,1.475,0.927,0.836,1.007,1.283,1.441,1.87,0.964,0.476,0.455,0.792,1.36,1.448,0.9,1.072,1.229,0.561,0.792,1.292,0.762,0.727,0.981,1.031,1.065,0.949,0.909,0.669,1.753 +XM_087642,1.035,1.135,1.202,0.978,1.025,0.853,0.776,0.894,1.052,1.135,0.987,1.104,1.056,1.031,0.93,0.926,1.098,0.917,1.201,0.931,0.897,0.948,0.93,1.011,0.966,1.09,1.029,1.062,0.955,1.03,0.879,0.959,0.858,0.869,0.992,1.229,0.992,1.153,0.882,1.019,0.925,0.905,1.171,1.018,0.928,1.165,1.084,0.885,0.909,0.984,1.018,1.026,1.15,0.915 +XM_087657,1.094,1.141,1.0,0.877,1.168,0.904,0.976,0.933,0.985,1.006,1.079,0.975,0.972,0.833,0.902,1.015,1.167,1.093,1.078,1.19,1.073,1.0,0.922,1.006,1.078,0.948,1.051,0.959,0.807,1.019,1.071,0.903,0.83,1.004,0.979,0.898,1.167,1.06,1.079,1.039,0.981,0.948,0.961,1.084,0.986,1.032,0.967,1.02,0.951,1.075,0.952,1.134,1.04,0.96 +XM_087671,1.027,1.012,0.9,0.784,0.974,0.942,0.854,1.009,0.939,0.926,0.915,0.954,0.877,0.925,0.893,1.072,0.981,0.975,1.074,0.999,1.116,1.009,1.044,0.997,1.019,1.027,1.137,0.952,0.882,1.053,1.097,1.171,0.959,0.946,1.034,1.014,1.036,1.069,1.005,0.893,1.041,1.014,0.954,1.074,0.934,1.084,0.996,1.018,1.019,1.038,1.016,0.996,0.956,1.042 +XM_087672,0.995,1.219,0.86,1.012,1.009,0.955,1.029,1.028,0.991,0.919,1.134,0.878,1.1,0.951,0.894,1.161,0.955,1.028,0.957,1.0,0.999,1.075,1.023,1.074,0.943,0.987,1.004,0.987,0.97,1.061,1.111,1.033,0.982,1.041,0.967,0.908,0.843,1.025,1.057,1.048,1.101,1.002,0.867,1.036,1.079,1.093,0.806,1.039,0.952,1.179,1.043,1.046,1.086,0.972 +XM_087715,0.82,1.143,1.061,0.999,0.929,1.102,0.828,0.825,1.015,0.784,1.425,0.993,1.284,1.05,1.381,1.344,0.919,0.917,1.192,0.962,0.863,1.101,2.26,1.164,0.851,0.989,1.288,1.155,0.681,1.72,0.975,1.017,3.095,1.15,0.799,1.097,1.2,0.846,1.06,0.851,1.162,1.23,0.71,1.473,1.096,1.206,1.442,0.981,1.362,0.869,1.346,0.942,0.823,0.716 +XM_087761,1.02,1.049,0.972,1.091,0.802,1.1,0.899,1.001,0.85,0.921,0.988,1.077,0.933,1.065,1.052,1.019,0.994,1.078,1.036,1.066,0.922,0.999,0.954,0.988,0.974,1.091,0.887,0.993,1.051,1.025,0.916,0.981,1.109,1.127,1.023,1.051,1.146,1.071,0.962,1.066,0.987,0.943,1.572,0.959,0.889,1.201,0.854,1.133,0.965,1.062,1.087,1.032,0.9,1.159 +XM_087762,1.026,0.94,1.197,1.235,1.096,1.074,1.027,0.896,0.963,0.928,1.131,1.036,0.894,1.206,1.098,1.067,1.074,0.951,0.996,1.156,0.983,0.904,0.908,0.943,1.012,1.197,1.112,1.08,1.591,1.013,0.984,0.945,1.164,0.899,1.054,1.012,0.889,0.93,0.949,0.927,0.834,0.998,0.916,1.095,0.788,1.1,1.137,0.932,0.987,1.176,1.045,0.964,1.039,0.94 +XM_087788,1.097,0.844,1.093,1.011,1.081,1.051,0.84,1.002,1.043,1.092,1.014,1.168,1.254,0.951,0.895,0.946,1.012,0.952,1.125,0.962,1.117,1.202,1.142,1.097,1.041,1.243,1.097,1.063,1.032,0.972,1.129,1.089,0.984,0.98,0.962,1.029,0.891,1.221,0.969,0.951,1.198,0.967,0.906,1.055,1.067,0.886,0.926,1.052,0.973,1.012,0.91,0.982,1.207,1.006 +XM_087800,1.046,0.935,0.944,1.129,1.08,0.933,1.117,1.118,1.042,1.18,0.984,1.03,0.905,1.251,0.918,0.881,0.886,0.948,1.045,1.028,1.216,1.043,0.918,1.041,1.101,1.051,1.044,1.033,0.966,0.939,0.95,1.147,0.977,0.924,1.048,1.071,0.906,1.165,1.019,0.939,0.847,1.146,0.801,0.943,0.887,0.993,0.913,0.914,1.037,1.06,1.008,0.909,1.103,1.055 +XM_087804,0.985,1.14,1.303,0.829,1.056,0.908,1.035,0.816,1.008,0.875,0.778,1.036,0.894,0.946,0.925,0.836,1.118,0.894,1.118,0.807,0.884,1.04,0.841,1.008,1.198,1.013,1.129,1.203,0.796,1.058,0.953,1.433,0.798,0.981,0.722,0.859,0.905,1.004,0.959,1.158,1.15,1.116,0.877,0.821,1.029,0.977,0.992,0.958,0.911,0.955,0.951,1.095,1.019,1.318 +XM_087901,1.001,0.973,1.02,0.941,1.08,0.89,1.11,0.965,0.993,1.002,1.03,1.018,1.012,0.869,0.999,0.999,1.038,0.993,1.071,1.01,0.911,0.859,1.117,0.989,0.967,0.886,0.921,0.901,1.151,1.026,1.155,1.089,1.087,0.974,1.105,1.035,1.082,0.916,1.091,0.943,0.943,0.912,0.945,1.025,1.072,0.969,1.021,1.007,0.964,0.838,0.924,0.914,1.089,1.084 +XM_088072,1.05,0.984,1.099,0.903,1.004,0.988,0.956,0.997,1.055,1.037,0.84,0.919,0.997,1.055,0.893,0.967,0.942,1.025,1.18,0.969,0.939,0.889,0.973,0.948,1.015,1.0,1.084,1.01,0.71,0.972,1.112,1.029,1.033,1.015,1.054,0.881,0.991,0.979,1.055,0.952,1.117,0.953,0.887,1.085,0.953,1.054,0.946,1.003,1.0,0.998,0.925,0.907,1.074,0.986 +XM_088103,0.687,1.034,1.429,0.518,1.112,1.128,0.436,1.213,1.33,1.02,1.455,0.998,1.12,0.563,1.086,2.752,0.754,0.961,2.125,0.817,0.541,1.012,1.298,1.71,0.418,0.589,1.518,1.06,0.255,0.899,1.44,1.063,2.507,1.312,0.195,0.55,0.978,1.642,0.966,0.403,1.3,1.159,0.382,0.598,0.968,0.704,1.176,1.014,1.097,0.935,0.941,0.522,0.622,1.63 +XM_088143,0.864,0.987,1.09,0.805,1.07,0.95,0.896,1.123,1.008,0.923,0.87,1.013,0.966,0.915,0.945,1.07,0.937,1.024,1.042,0.972,0.993,1.075,0.996,1.062,0.875,1.006,1.101,1.11,0.583,1.051,1.094,0.986,1.003,1.12,0.844,0.989,1.059,1.123,1.037,0.969,1.016,0.957,0.728,0.872,0.972,0.839,1.121,1.002,1.125,1.08,1.029,0.813,1.04,1.246 +XM_088257,0.971,1.053,1.04,1.007,0.909,1.003,0.846,0.99,1.221,0.961,1.002,0.947,0.845,0.976,1.082,1.01,1.132,0.943,0.856,1.152,0.85,1.057,1.005,1.063,0.922,1.089,1.194,0.976,0.918,0.99,1.019,1.245,0.995,1.007,0.957,0.913,0.836,0.923,0.995,1.344,0.919,0.945,0.871,1.021,0.976,1.033,1.032,0.934,1.006,0.98,1.005,0.948,0.893,1.274 +XM_088315,0.618,0.943,0.782,1.014,0.626,1.243,1.029,0.667,0.658,0.734,1.046,0.732,0.745,0.639,1.024,0.88,0.657,1.019,0.647,1.001,0.724,0.626,0.924,0.668,1.003,0.673,0.843,0.623,0.974,1.284,0.718,2.287,0.897,1.579,0.545,0.821,0.796,0.667,1.464,1.504,0.715,1.132,0.773,1.158,0.628,1.218,0.596,0.646,0.984,0.704,1.072,0.846,0.748,1.791 +XM_088331,0.998,1.162,0.91,0.974,1.022,1.033,0.871,0.904,1.091,0.959,1.03,0.975,0.951,0.97,1.05,0.911,0.988,0.865,0.976,1.037,1.017,1.049,1.015,1.097,1.024,0.972,1.064,0.938,0.821,1.06,0.999,1.003,1.184,0.958,0.932,1.22,0.934,0.913,1.232,0.978,1.015,0.927,1.348,1.246,0.807,1.128,1.019,0.968,1.047,0.934,1.068,0.881,1.026,1.244 +XM_088347,0.99,0.983,1.028,1.056,1.144,0.947,0.997,1.023,0.967,1.024,0.908,1.035,1.07,0.983,0.907,0.97,0.914,0.936,1.023,1.043,1.006,1.085,1.126,0.968,0.904,0.965,1.167,0.956,0.898,1.058,0.932,0.894,1.004,1.016,1.039,1.073,1.04,0.984,1.04,1.098,0.94,1.026,1.081,1.038,0.952,0.904,1.091,1.017,1.066,0.956,1.177,0.887,1.02,1.087 +XM_088366,0.968,1.038,0.976,0.959,0.988,1.019,0.979,1.065,1.012,0.946,1.078,0.942,1.142,0.993,0.992,0.917,1.046,1.119,0.98,1.045,0.903,1.061,1.041,1.1,1.098,1.093,1.036,1.098,1.162,0.967,0.966,0.993,0.993,0.915,1.077,1.03,1.118,0.994,1.026,0.961,0.996,1.002,1.237,1.003,0.947,0.976,1.092,1.07,0.963,1.009,1.081,1.099,1.088,0.981 +XM_088367,1.054,0.984,0.854,1.071,1.121,1.021,1.001,1.304,0.919,0.949,1.03,0.913,1.01,1.111,1.199,0.985,1.051,0.996,1.013,1.013,1.021,1.112,1.051,0.941,1.024,0.992,1.047,1.097,1.079,1.018,1.066,0.959,0.878,1.056,0.963,1.046,1.106,1.094,0.962,1.064,0.997,0.902,1.168,0.955,1.039,0.895,1.025,1.049,1.033,1.034,0.997,0.834,0.995,0.983 +XM_088376,1.004,1.093,1.011,0.98,1.159,0.948,1.085,1.18,1.092,1.05,0.996,0.999,0.99,0.978,0.947,0.805,1.046,0.932,1.1,1.073,0.928,0.88,1.069,0.914,0.897,0.895,1.012,1.084,0.979,1.107,1.001,0.955,1.007,1.109,0.987,0.921,1.05,1.061,0.99,0.939,0.894,1.011,1.208,0.957,1.188,1.14,0.934,1.08,0.887,0.911,0.869,0.965,0.992,1.092 +XM_088459,0.519,1.478,0.783,0.779,0.616,1.314,0.685,0.387,0.731,0.638,1.117,0.497,0.358,0.477,0.945,1.239,0.632,0.898,0.817,0.988,0.497,0.508,1.433,0.656,1.576,0.604,0.867,0.445,0.667,1.659,0.622,1.578,1.859,1.742,0.408,2.483,1.37,0.623,1.957,0.894,0.629,1.824,0.772,1.185,0.65,1.431,0.647,0.504,1.122,0.615,1.443,0.828,0.785,1.443 +XM_088476,0.621,1.198,0.931,0.647,0.752,1.344,0.752,0.416,1.039,0.786,1.18,0.5,0.411,0.39,0.816,1.72,0.684,1.004,0.887,1.103,0.349,0.677,1.164,0.897,0.933,0.697,0.997,0.788,0.645,1.485,0.704,1.299,1.235,1.407,0.353,0.733,1.445,0.706,1.594,0.88,1.024,1.295,0.775,0.903,0.982,1.241,1.071,0.649,1.278,0.767,1.419,0.719,0.81,1.396 +XM_088492,1.006,1.171,0.869,0.935,1.017,0.996,1.013,1.295,0.932,1.083,1.353,1.034,0.962,1.016,1.088,0.918,0.887,0.99,0.896,0.999,1.206,1.128,1.138,1.048,0.914,1.044,1.014,1.043,1.568,0.91,0.942,1.003,1.046,0.993,0.952,0.997,1.029,1.015,1.068,1.04,0.888,1.109,1.044,0.997,0.934,0.905,0.972,0.96,1.167,1.13,0.963,1.041,0.96,0.911 +XM_088516,1.121,1.234,1.218,1.011,0.985,1.068,1.105,0.887,1.048,0.998,0.916,0.963,0.988,1.03,0.758,0.978,0.947,1.082,0.776,1.076,0.971,1.065,1.0,0.994,1.052,1.115,1.07,0.963,0.955,1.066,0.968,0.919,0.914,1.005,1.046,0.846,0.933,0.953,1.084,1.143,0.982,1.028,0.912,1.066,0.971,1.007,1.02,1.172,1.141,0.957,0.991,1.083,0.899,1.031 +XM_088517,0.999,1.023,1.006,0.996,0.991,0.976,1.029,0.993,1.095,1.326,0.956,1.056,1.121,0.843,0.888,1.014,1.03,0.965,1.101,0.931,0.936,1.013,0.883,1.055,0.913,1.042,1.067,1.022,0.932,1.021,1.058,0.976,0.927,1.119,1.263,0.823,1.012,1.101,0.961,1.119,0.905,0.875,1.004,1.212,1.074,0.982,0.863,1.0,0.995,1.046,1.0,1.034,0.905,0.9 +XM_088525,0.913,0.887,0.873,1.007,0.934,1.034,1.109,0.892,0.898,0.889,1.08,0.963,0.91,0.873,0.906,1.12,1.112,1.1,1.232,1.038,1.007,0.899,0.999,1.053,0.951,0.936,1.081,0.833,0.951,0.932,0.83,0.865,0.986,1.253,1.219,1.039,0.973,1.001,1.113,0.92,0.973,0.881,1.056,0.872,0.927,1.149,1.031,1.08,0.89,1.234,0.824,0.957,1.06,1.094 +XM_088551,1.087,0.892,1.085,0.941,0.982,0.974,0.841,0.637,1.172,0.879,1.045,0.848,0.847,0.871,1.003,0.863,0.997,0.809,0.938,1.062,0.886,0.836,1.07,0.898,0.872,0.98,1.024,0.954,1.025,1.047,0.948,1.337,0.945,1.218,0.841,0.836,0.991,0.943,0.929,0.973,1.147,1.123,0.886,1.122,0.912,0.947,1.084,0.944,0.895,1.11,1.033,0.926,1.023,1.322 +XM_088565,1.039,1.046,1.161,0.815,0.968,1.07,1.181,0.932,0.944,0.935,1.093,1.034,0.916,0.886,0.851,1.021,1.121,1.114,0.879,0.942,0.883,0.952,1.213,0.986,1.013,1.027,1.036,1.0,1.023,1.004,1.016,0.883,1.018,1.049,1.126,0.968,1.042,0.96,1.035,1.035,1.178,1.083,0.95,0.929,0.986,0.868,1.214,0.961,1.035,1.056,0.967,1.019,1.192,1.198 +XM_088566,1.101,0.915,1.047,0.879,0.896,1.044,0.929,1.048,1.02,0.94,0.894,0.981,1.075,0.979,1.002,1.091,1.016,1.006,0.915,1.069,1.035,1.166,1.063,1.003,0.985,1.032,0.901,0.993,0.962,1.154,1.052,1.055,0.951,1.005,1.153,1.016,0.949,1.088,0.861,0.996,1.072,0.932,1.244,1.038,0.975,0.829,0.939,1.064,0.925,1.051,1.053,1.011,0.835,1.14 +XM_088567,1.009,1.022,0.955,0.956,1.043,0.902,1.009,0.971,0.939,1.069,1.035,1.081,1.019,0.889,0.846,1.073,0.968,0.994,0.834,0.956,0.932,0.952,0.935,0.995,1.01,1.019,1.025,1.023,1.405,1.151,0.987,1.078,0.98,1.112,0.963,0.906,0.948,1.099,1.059,1.005,1.014,1.012,1.14,0.92,0.998,0.861,1.071,1.11,0.813,1.049,0.998,0.943,0.864,0.91 +XM_088578,1.078,0.941,1.077,0.996,1.249,0.996,0.832,0.87,0.995,1.041,1.063,1.013,1.061,1.059,1.088,1.138,1.064,1.08,0.882,1.024,0.977,1.018,0.937,0.999,1.162,0.987,0.931,1.046,0.807,0.95,1.128,0.914,1.021,0.951,1.169,1.019,1.13,0.913,0.951,0.94,1.058,1.1,0.984,0.911,0.971,0.945,1.079,1.022,1.147,0.897,1.019,1.163,1.034,1.097 +XM_088580,0.988,0.993,0.941,0.993,0.976,0.971,0.984,0.94,1.109,0.991,1.001,1.022,1.155,0.918,1.216,1.028,1.005,1.005,1.0,1.055,0.982,0.971,0.978,1.075,0.999,1.065,1.013,1.086,0.993,0.996,1.061,1.007,0.964,0.959,0.956,1.03,1.096,0.82,0.979,1.023,0.896,1.0,0.975,1.021,0.995,1.012,0.992,0.959,1.006,0.98,1.013,0.966,1.0,1.002 +XM_088593,1.005,0.991,0.974,1.01,1.035,0.962,0.879,0.952,1.302,1.005,0.995,0.917,1.083,1.153,0.926,1.016,1.044,0.882,0.968,0.93,0.963,1.081,1.006,0.96,1.059,0.875,1.243,0.979,0.958,0.919,1.139,1.159,1.309,1.08,0.969,1.027,1.033,0.984,0.912,0.974,0.939,0.999,0.842,1.074,0.986,1.06,0.991,1.042,1.1,0.984,0.98,1.064,1.0,1.191 +XM_088594,1.023,0.99,1.085,0.886,0.943,1.035,0.946,1.182,1.152,1.047,0.963,0.946,1.03,1.133,0.886,0.877,1.163,0.972,1.0,0.922,0.91,1.086,0.868,1.007,0.936,1.17,0.775,1.018,1.385,0.915,1.001,0.89,1.0,1.066,1.028,0.891,1.134,1.02,1.181,0.882,0.902,0.88,0.947,0.86,0.932,0.966,1.086,0.915,1.034,0.975,1.006,1.019,1.188,0.964 +XM_088608,1.049,0.993,0.967,0.903,0.922,1.01,1.095,0.915,1.085,0.937,0.997,1.036,1.013,0.761,0.949,0.971,0.876,0.917,1.084,0.974,0.986,1.123,1.026,1.043,1.045,1.005,1.161,1.145,0.893,1.023,1.082,1.109,1.124,0.988,1.012,1.189,0.954,0.913,0.988,1.055,0.974,0.999,0.884,0.965,1.052,0.933,1.0,0.954,0.994,1.126,1.013,1.0,0.905,0.985 +XM_088636,0.881,1.049,1.128,0.874,0.74,0.879,1.358,0.996,1.047,0.856,1.095,0.895,1.035,1.141,0.843,0.961,0.952,1.071,1.061,0.965,1.024,0.881,1.031,1.052,0.976,1.054,0.889,1.21,0.944,0.939,1.002,0.918,1.053,0.925,0.992,1.011,1.079,1.152,1.016,0.925,1.009,0.986,1.124,1.048,1.241,0.992,0.997,1.172,0.917,0.987,0.953,0.952,1.063,1.086 +XM_088677,1.004,0.856,0.957,1.024,0.758,1.002,1.053,1.003,0.968,1.128,1.061,0.901,0.843,1.112,1.066,1.078,0.961,0.962,0.887,1.089,1.039,0.928,0.943,0.925,0.934,0.996,1.072,1.0,0.897,0.953,0.945,1.077,0.93,1.226,1.042,0.939,1.049,1.004,1.011,0.941,1.126,0.825,0.96,1.224,1.092,0.984,0.987,1.135,0.988,0.893,0.99,1.012,0.915,1.231 +XM_088683,1.055,0.927,0.97,0.972,1.094,1.009,1.039,1.089,0.935,0.752,0.96,0.956,0.931,1.179,0.965,0.98,0.981,1.058,1.06,1.121,1.169,1.064,1.003,1.038,0.91,0.884,0.994,1.045,0.923,1.091,1.002,1.046,0.83,0.982,0.963,1.038,1.145,0.956,0.944,1.146,0.996,0.94,1.005,0.955,0.943,0.922,1.135,0.961,0.942,0.879,0.982,1.124,1.052,0.975 +XM_088691,1.197,1.002,0.901,0.891,0.943,1.129,1.465,0.975,1.062,0.953,0.941,1.042,0.992,1.17,1.153,0.985,1.012,1.02,0.996,1.085,1.029,1.031,0.923,0.813,0.949,1.066,0.985,1.04,0.829,0.849,1.068,1.048,1.074,0.957,1.108,0.998,0.961,0.944,0.963,0.888,1.025,0.961,1.207,1.008,1.086,0.975,0.839,0.915,0.901,1.074,0.957,0.974,0.994,0.869 +XM_088735,1.025,0.984,0.937,1.041,0.922,0.997,1.033,1.086,0.993,1.067,0.996,0.961,0.955,0.967,0.991,1.089,1.003,1.156,0.944,1.088,1.041,0.952,0.944,0.95,1.109,0.995,1.088,1.079,0.937,0.921,1.017,0.95,0.874,1.058,1.06,0.978,1.072,1.111,1.115,0.959,1.027,1.028,0.849,1.086,0.971,0.995,1.048,1.071,0.934,0.964,0.926,1.131,0.922,1.437 +XM_088864,1.005,0.915,1.004,1.213,1.002,1.121,1.128,1.072,1.071,0.757,1.146,0.958,0.953,0.932,1.259,1.12,0.908,0.992,0.979,0.99,1.103,0.921,0.973,1.091,1.044,1.121,0.961,1.006,1.084,1.049,1.012,1.023,0.998,1.101,1.107,0.93,0.987,1.009,0.979,0.852,0.981,0.998,1.094,0.908,1.123,1.045,1.079,0.906,0.845,0.967,0.944,1.191,0.999,1.188 +XM_088951,0.95,1.001,1.004,1.012,1.045,0.943,1.178,0.831,0.917,0.943,0.88,0.976,1.026,1.151,0.911,1.003,0.978,0.942,0.9,0.858,1.111,1.122,0.978,1.1,0.996,0.967,0.958,0.914,1.018,1.045,0.963,1.022,1.032,1.032,1.071,1.095,0.987,0.97,1.004,1.053,0.978,1.111,1.03,0.964,1.093,0.932,1.01,1.043,0.934,0.932,0.909,1.061,0.982,1.115 +XM_089081,0.945,0.888,0.885,0.978,0.94,1.046,0.991,1.085,0.958,0.996,0.964,0.993,1.051,1.068,1.109,1.043,1.019,0.999,0.888,0.965,0.946,1.011,1.058,1.114,0.993,1.097,0.941,1.073,1.629,0.923,0.845,1.272,1.07,1.051,0.892,1.095,1.13,1.014,0.944,1.11,0.856,0.991,1.041,1.012,1.154,1.044,0.82,1.132,0.787,0.998,0.925,1.047,1.177,1.236 +XM_089243,0.956,1.032,1.062,1.036,1.055,0.947,0.956,0.947,0.977,1.106,0.998,0.971,0.949,0.902,0.959,1.153,1.09,1.013,1.001,0.97,1.012,0.973,1.011,0.924,1.015,0.987,0.895,1.086,0.903,1.129,0.981,0.996,1.003,1.005,0.932,1.121,1.098,1.012,0.994,1.008,1.021,0.98,0.996,0.998,1.091,0.922,0.977,0.993,1.005,1.023,0.884,1.077,1.049,1.026 +XM_089281,1.14,1.15,1.089,0.83,1.119,0.876,1.215,0.867,1.043,0.856,1.175,1.084,1.146,0.815,0.884,0.978,1.006,0.842,0.853,1.014,1.192,0.979,1.053,1.113,0.874,1.04,1.007,0.916,1.109,0.869,1.091,1.106,1.055,1.121,0.945,1.048,1.012,1.088,1.081,0.925,0.986,1.022,0.89,0.837,0.953,0.912,1.005,0.979,1.086,1.051,0.981,1.026,0.991,0.907 +XM_089318,0.994,1.14,1.009,0.989,0.819,0.999,0.872,1.044,0.914,1.008,1.025,1.093,1.109,0.959,0.979,0.85,1.026,0.934,0.89,1.098,1.074,0.892,1.058,1.008,1.053,1.034,0.949,0.911,0.923,1.168,0.966,0.891,1.02,0.876,1.036,1.007,1.067,0.978,1.042,1.079,0.945,1.02,0.825,1.052,0.934,1.094,0.962,1.014,0.907,1.033,0.997,1.011,1.22,1.033 +XM_089384,1.04,0.976,1.101,1.031,0.954,1.047,1.106,1.162,0.975,0.992,0.945,1.095,1.117,1.228,1.096,0.863,0.931,1.029,1.071,1.122,1.017,1.128,1.05,0.976,0.96,1.004,1.096,0.948,1.348,0.945,1.121,1.137,0.869,0.952,0.9,1.104,1.0,0.98,0.993,0.931,1.07,0.911,1.088,0.883,1.073,1.101,0.915,0.92,0.866,0.946,1.094,0.893,0.816,1.04 +XM_089415,1.024,0.994,0.944,1.089,0.94,0.915,0.897,0.939,0.878,0.896,1.04,1.083,0.923,0.96,0.884,0.914,1.067,1.115,1.138,0.897,1.099,1.015,0.853,0.95,1.001,0.931,0.999,0.96,0.694,1.191,1.016,0.969,0.993,0.923,1.009,0.919,1.139,1.1,0.95,1.079,0.965,1.026,0.994,0.945,0.895,1.027,0.989,0.972,1.119,1.197,1.063,0.746,1.002,1.009 +XM_089747,1.15,1.12,0.959,1.069,0.997,1.002,1.067,0.975,0.935,1.047,1.213,0.918,1.103,0.907,1.268,1.0,1.164,1.047,1.064,0.93,0.908,1.058,0.99,0.953,0.914,0.971,1.022,0.828,0.932,0.994,0.889,0.982,0.937,1.107,1.189,1.187,0.963,0.918,1.013,1.094,0.915,1.018,0.807,1.206,1.012,1.123,0.966,1.181,1.108,1.038,1.04,1.033,0.882,0.976 +XM_089858,0.871,1.029,0.983,0.962,1.012,0.852,1.169,1.093,0.884,1.011,0.879,1.066,1.089,0.999,0.577,0.879,1.104,1.011,0.987,1.185,1.049,1.065,1.017,0.878,1.094,1.038,0.977,0.893,0.861,0.979,1.187,0.964,1.18,0.929,1.041,0.997,0.919,0.966,0.978,0.939,0.941,1.087,0.798,1.093,1.122,0.886,1.05,1.108,0.844,0.952,1.102,0.93,1.107,0.865 +XM_089863,1.048,1.003,1.081,1.006,0.936,0.935,0.936,1.016,0.986,1.135,0.948,1.039,1.012,1.12,1.395,0.993,0.991,0.962,1.006,0.998,1.12,0.932,0.987,0.958,0.946,1.01,0.988,1.082,1.149,1.058,0.989,0.953,0.944,1.132,1.093,1.074,1.1,1.018,0.979,1.008,1.107,1.012,1.01,1.061,0.977,1.114,0.975,0.998,1.063,1.011,1.056,1.199,1.209,0.947 +XM_090203,1.059,0.921,1.136,0.998,1.155,0.827,0.988,0.938,0.896,1.12,1.021,1.092,0.951,1.233,1.285,1.144,0.99,0.899,0.885,0.77,1.112,1.143,1.004,1.055,1.161,0.943,1.013,1.041,1.122,0.985,0.868,0.945,0.901,1.066,1.075,0.989,1.062,1.097,0.944,0.982,1.304,0.982,1.041,1.07,0.913,1.05,1.123,0.984,0.965,0.851,1.001,0.893,1.148,1.019 +XM_090294,0.957,0.904,1.053,0.876,0.994,1.003,1.164,1.005,1.08,1.0,0.879,0.969,0.92,1.041,0.912,1.021,1.028,1.16,0.939,1.033,1.039,0.995,1.212,0.991,0.91,0.928,1.033,0.943,0.789,0.97,1.031,0.97,0.94,0.918,1.047,1.074,0.834,0.935,1.01,1.053,0.972,0.874,0.959,1.078,0.927,1.194,0.915,0.986,1.026,1.154,1.066,0.945,0.975,0.956 +XM_090844,0.426,1.227,0.772,0.833,0.648,2.131,1.011,0.612,0.774,0.763,2.059,0.603,0.528,0.51,1.179,2.985,0.43,1.121,0.962,1.55,0.321,0.655,1.282,0.769,1.021,0.663,0.865,0.635,0.701,1.776,0.671,0.615,0.699,2.415,0.275,0.955,2.055,0.705,1.842,0.694,0.686,1.729,1.278,1.187,0.68,1.857,1.135,0.767,1.499,0.581,1.462,0.531,0.655,1.358 +XM_090885,1.079,1.047,0.93,1.206,1.039,0.983,0.952,0.96,1.038,1.064,0.891,1.038,0.96,1.033,0.959,0.779,1.051,0.988,0.866,1.11,0.951,0.857,0.976,1.056,1.068,1.026,1.103,1.074,1.077,1.017,1.041,0.96,0.992,0.916,1.041,0.98,1.023,0.95,0.933,0.958,1.239,1.005,1.044,1.052,0.852,1.043,0.914,1.021,1.012,0.991,0.972,0.826,1.016,0.899 +XM_090897,0.988,0.961,1.026,1.03,0.948,1.013,0.876,0.922,0.946,1.024,0.955,0.968,0.966,1.164,1.067,0.968,0.985,1.101,0.942,0.983,1.068,0.977,1.067,1.012,1.074,0.957,0.993,1.079,1.241,1.047,0.963,1.04,0.906,1.133,1.125,1.061,1.045,0.982,1.039,0.882,0.919,0.897,0.894,1.081,1.055,0.93,1.026,1.121,0.913,0.941,1.04,1.018,0.982,1.119 +XM_090970,1.23,0.914,0.918,0.937,0.635,0.783,1.148,1.056,1.002,1.203,1.157,0.816,0.964,1.118,1.256,1.056,1.044,0.909,0.975,1.056,1.16,1.168,0.935,0.972,1.028,0.931,0.816,1.0,0.959,0.858,0.884,0.884,1.122,1.071,1.002,1.239,0.964,0.889,1.176,0.881,1.001,1.013,1.085,0.981,0.895,0.87,0.882,1.068,0.92,1.146,1.033,1.017,1.286,0.863 +XM_091331,1.173,0.836,0.955,1.024,0.98,1.102,0.874,1.015,1.357,0.807,0.853,1.081,1.412,0.845,0.835,0.863,1.291,0.904,0.964,0.942,0.873,1.302,0.841,1.079,0.986,1.3,1.589,1.091,0.783,0.982,1.057,1.208,1.411,0.916,1.667,0.967,0.802,1.386,1.543,0.909,1.131,0.87,0.999,1.194,1.153,0.846,1.167,1.081,0.838,1.112,0.977,1.114,0.87,1.137 +XM_091830,1.0,0.988,0.982,1.041,1.118,0.956,1.031,1.016,0.964,0.886,0.963,0.938,0.973,1.104,0.921,1.032,0.91,1.099,1.236,0.951,0.984,1.069,1.0,1.041,0.959,1.017,0.975,0.92,1.102,0.969,0.984,1.092,1.05,0.844,1.019,0.961,0.936,0.978,0.939,0.983,0.949,0.944,1.01,1.17,0.993,0.988,0.984,0.938,0.985,1.071,1.069,1.052,1.033,1.102 +XM_091888,0.969,0.948,1.009,0.914,0.831,1.035,0.798,0.839,1.097,0.912,1.047,0.87,0.893,0.977,0.986,1.407,0.886,1.0,1.111,1.117,0.874,0.842,1.032,0.927,0.868,0.875,1.067,0.992,0.654,1.236,1.032,1.04,1.704,1.167,0.86,0.973,1.057,1.028,1.021,1.022,0.914,1.153,1.433,0.858,1.059,1.056,1.087,0.754,0.953,0.804,1.083,0.9,0.941,1.231 +XM_092019,1.011,1.066,1.021,1.108,0.811,0.928,0.829,0.718,1.129,0.906,1.07,0.946,0.996,0.805,1.135,1.016,1.009,1.091,1.097,1.054,1.132,0.825,1.019,0.88,0.822,1.182,0.994,1.054,0.957,0.966,0.911,1.144,0.995,0.958,0.931,0.889,1.021,1.032,1.073,0.987,0.908,1.035,0.987,0.945,1.106,1.129,0.919,1.006,0.979,0.96,0.982,0.872,0.816,0.983 +XM_092241,1.102,1.136,0.986,1.002,1.058,0.959,1.121,1.153,0.964,1.035,0.953,1.049,0.964,0.842,0.999,1.097,0.953,1.095,1.019,1.077,0.841,0.932,1.022,1.001,0.935,0.963,0.98,1.019,0.823,0.979,0.98,0.801,1.032,0.965,1.309,1.033,1.136,1.01,1.187,0.966,1.076,0.885,0.883,1.098,1.09,1.014,1.048,1.012,1.198,0.994,0.991,0.878,1.039,1.012 +XM_092342,1.076,1.028,1.127,0.886,1.092,1.006,0.85,1.181,0.907,0.919,0.846,1.043,0.971,0.957,1.078,1.033,1.055,0.915,0.9,1.003,0.947,0.963,0.984,1.107,1.002,0.974,1.031,1.05,0.744,0.966,1.064,0.938,0.984,0.902,1.079,1.019,1.012,1.092,1.063,1.05,1.022,0.893,0.831,1.116,0.842,0.953,1.032,1.016,1.078,0.861,1.077,1.135,1.046,0.881 +XM_092995,1.003,0.983,1.032,0.906,0.858,1.065,0.95,0.892,0.897,0.964,1.056,0.949,0.973,0.825,1.008,0.929,1.005,1.043,0.925,0.926,1.105,0.982,0.935,1.125,0.951,0.983,1.175,0.914,0.639,0.973,1.048,1.065,1.172,1.028,0.917,0.982,0.999,1.001,1.014,0.976,0.979,0.981,1.165,0.98,1.094,0.887,1.021,0.956,1.051,0.912,1.015,1.032,0.891,1.077 +XM_093087,0.945,1.087,1.019,1.091,0.937,1.017,0.958,1.045,1.017,0.999,0.976,1.033,1.078,0.952,0.968,1.004,0.922,0.933,0.96,0.977,0.916,1.038,0.944,1.021,1.076,1.05,1.036,0.985,1.0,1.026,0.888,1.049,1.164,1.068,0.951,0.942,1.044,0.918,1.149,1.081,0.919,1.134,0.971,1.111,0.974,0.982,0.96,1.001,0.847,0.947,1.0,0.992,1.0,0.989 +XM_093644,0.852,0.982,0.946,1.025,1.039,0.955,0.969,0.951,1.175,0.877,1.033,1.193,0.819,0.874,0.825,1.047,0.978,1.06,0.947,0.964,1.142,0.963,1.023,1.07,1.143,1.009,1.14,0.954,0.77,1.038,0.967,1.018,0.821,0.854,0.787,0.943,0.962,0.967,0.911,1.009,0.962,0.974,1.25,0.908,1.098,0.921,0.941,1.133,1.023,0.884,0.954,0.96,0.999,1.134 +XM_093799,1.057,0.903,1.371,0.831,1.094,0.882,0.714,1.028,1.077,0.739,0.793,0.902,0.837,0.83,1.07,0.832,1.214,0.742,0.883,1.049,0.889,1.12,1.052,0.989,1.001,0.78,2.126,1.115,0.778,1.314,1.029,2.363,1.08,1.288,0.601,0.745,0.766,1.418,1.037,1.249,1.331,1.343,0.857,0.661,0.903,0.745,0.774,0.992,0.722,1.03,1.232,1.05,1.389,0.845 +XM_093813,0.976,0.963,0.912,0.931,1.092,1.051,0.827,0.898,1.001,1.052,1.279,1.18,1.134,0.809,0.827,1.013,1.065,1.102,0.999,1.081,1.16,0.968,0.868,1.029,1.044,1.004,1.019,0.968,1.024,0.918,0.86,0.944,1.237,1.044,0.915,0.991,0.884,1.184,1.005,1.133,0.896,0.878,0.815,0.834,0.969,0.822,0.891,0.929,0.887,1.021,1.423,0.925,0.895,1.021 +XM_093895,0.753,1.449,1.09,0.835,0.871,1.558,0.967,0.941,0.958,0.781,0.901,1.001,0.936,0.865,1.05,0.873,0.945,1.144,0.874,1.528,0.661,0.799,0.929,1.075,1.055,0.796,1.506,0.927,0.798,1.414,1.09,1.947,1.462,1.458,0.97,0.868,0.944,0.888,1.197,1.054,1.093,1.11,1.008,0.834,0.832,0.799,0.949,0.843,0.857,0.863,1.042,1.099,0.9,1.732 +XM_094074,1.051,1.056,0.997,0.906,1.042,0.949,0.995,0.868,1.216,0.976,1.089,0.997,1.144,1.009,0.978,0.991,1.17,0.837,1.3,0.981,1.172,0.976,1.111,1.037,0.985,1.033,0.781,1.065,1.393,0.918,1.013,0.981,1.228,0.816,1.079,1.057,1.16,0.925,0.931,0.894,0.937,1.036,0.787,1.229,0.865,0.9,0.869,1.002,0.977,1.074,0.953,1.032,0.991,1.148 +XM_094496,0.603,1.109,1.05,0.572,0.964,1.786,0.561,0.59,0.631,0.736,1.93,1.071,0.621,0.615,1.039,1.291,0.632,0.765,1.089,1.408,0.619,0.591,1.579,0.884,0.584,0.689,1.115,0.729,0.451,0.706,0.567,1.236,1.337,1.578,0.612,2.447,1.125,0.91,1.546,0.714,0.855,1.523,0.514,2.084,0.827,1.828,1.291,0.558,1.119,0.607,1.836,1.106,0.788,2.528 +XM_094565,1.065,1.119,0.966,0.996,1.148,1.029,1.013,0.979,0.963,1.043,1.018,0.974,0.833,0.929,1.011,0.922,0.956,1.058,1.163,1.067,1.03,1.052,1.057,1.047,0.967,0.886,1.116,0.92,0.895,1.059,1.095,1.001,1.142,1.022,0.898,0.988,0.973,1.034,1.062,1.029,1.16,0.998,0.841,0.968,0.983,1.123,0.98,1.117,1.021,0.995,1.047,1.185,0.991,0.943 +XM_094581,0.769,0.841,1.194,0.995,1.189,0.924,0.924,0.822,1.168,0.932,0.898,0.809,0.844,0.767,0.999,1.189,1.119,1.035,1.103,0.965,0.757,0.848,0.957,0.959,0.791,0.896,1.16,0.994,0.787,0.926,0.957,0.816,1.233,1.034,1.844,0.861,1.107,0.956,1.373,0.815,0.99,0.907,1.189,0.799,1.282,1.111,1.039,0.899,1.023,1.071,1.038,1.047,1.13,1.034 +XM_094794,1.021,0.943,1.317,1.016,0.992,1.03,1.065,0.969,0.889,0.894,1.016,1.066,0.93,0.937,0.923,0.974,0.986,1.091,1.028,1.14,1.002,1.403,0.964,0.997,1.027,1.059,0.853,1.008,1.302,1.023,0.979,0.96,1.028,1.036,1.219,1.073,1.061,1.053,0.825,0.892,1.024,0.98,1.429,1.182,1.126,1.001,0.983,1.092,1.065,1.003,0.932,1.011,0.999,1.018 +XM_095123,0.99,0.949,1.251,0.945,1.142,0.997,0.842,0.906,1.321,1.029,0.835,0.962,0.865,0.99,1.021,0.82,1.012,0.817,0.921,1.155,0.88,1.289,0.996,1.099,0.994,1.185,1.451,1.021,0.799,1.16,1.163,1.401,1.574,1.082,0.807,1.111,0.885,0.932,0.87,2.058,1.115,0.97,0.743,0.847,1.094,1.03,0.897,0.912,0.732,0.925,0.964,0.883,0.996,1.317 +XM_095568,0.987,1.001,0.937,0.975,0.915,0.962,0.842,1.036,0.893,0.892,1.024,1.015,0.931,1.183,1.052,1.049,0.885,0.729,1.018,0.985,1.005,1.047,0.926,0.993,1.044,0.925,0.905,1.032,0.959,0.882,0.887,0.996,1.102,1.076,1.037,1.029,1.043,0.935,1.127,0.979,1.061,0.904,0.922,1.055,1.082,1.053,1.094,0.971,0.924,0.949,1.044,1.057,0.886,0.963 +XM_095961,0.968,1.023,0.886,0.878,1.078,0.992,1.148,0.94,1.114,0.939,0.937,1.119,1.104,1.013,0.931,0.919,0.971,0.999,1.027,1.046,1.046,1.028,1.098,1.061,1.078,1.041,0.97,1.052,1.639,1.028,1.249,1.014,0.845,1.056,1.06,0.963,1.059,0.983,0.982,0.942,0.977,0.968,0.782,0.996,0.944,0.887,1.001,1.029,1.016,0.817,0.954,0.941,1.017,0.918 +XM_095964,1.002,1.063,0.981,1.057,1.0,0.991,1.03,1.121,1.141,0.945,1.155,1.013,0.979,1.035,1.046,1.073,1.036,0.974,1.118,1.0,0.974,1.033,1.123,1.149,1.064,0.788,0.95,0.937,1.018,1.099,1.025,0.98,1.182,0.887,1.023,1.066,0.917,1.092,1.25,0.8,0.903,1.04,0.918,0.87,1.026,0.959,0.852,1.149,1.12,0.974,0.937,0.888,1.237,0.914 +XM_095965,1.112,0.951,1.034,1.134,1.104,1.0,0.802,1.17,1.315,0.964,0.74,0.938,0.926,0.736,0.948,1.225,0.993,0.887,0.986,0.878,0.966,0.954,0.84,0.978,0.748,0.899,0.885,0.961,0.84,0.981,1.088,1.004,0.912,1.078,1.114,1.216,0.885,1.131,0.939,0.705,0.848,1.113,0.768,0.928,1.165,0.963,0.848,0.952,1.025,1.114,0.835,1.238,1.122,1.013 +XM_095991,1.029,0.939,0.958,0.95,0.876,0.927,0.865,0.914,1.101,1.059,0.962,1.105,0.983,1.073,0.858,0.958,0.932,0.957,0.964,0.978,0.846,1.041,1.254,0.954,0.792,0.917,1.092,0.962,0.88,0.968,1.05,1.133,1.333,1.002,0.907,1.287,0.947,0.909,1.193,0.95,1.012,0.987,0.885,1.379,0.964,1.016,0.999,0.983,1.09,0.911,1.083,1.034,0.89,1.512 +XM_096317,0.953,0.993,1.015,0.962,0.979,0.969,0.88,0.822,1.144,1.033,1.031,0.966,1.134,1.277,0.924,0.865,1.044,1.01,0.941,0.938,0.81,1.002,0.951,0.91,0.938,0.997,0.942,1.07,0.656,1.012,0.897,1.011,0.923,0.97,0.989,0.995,1.014,1.005,1.019,1.041,1.026,1.06,0.8,1.051,0.975,1.074,0.997,1.125,1.073,1.123,0.997,1.026,0.953,0.924 +XM_096330,1.04,1.032,1.057,0.953,0.987,0.976,1.223,1.002,0.998,0.982,1.026,1.021,0.982,0.932,1.048,0.977,1.024,0.99,1.082,0.996,1.025,0.919,0.889,1.027,1.085,1.051,1.078,1.033,1.023,0.944,0.976,0.943,1.024,0.918,0.938,0.929,0.945,0.826,0.93,1.051,1.128,0.973,1.111,0.926,0.972,0.904,1.145,0.912,1.133,1.033,0.948,0.998,0.963,1.072 +XM_096387,1.004,0.898,1.056,0.906,0.772,1.068,1.047,1.343,0.927,1.063,0.925,0.998,0.966,1.014,0.914,1.042,1.055,0.949,0.872,1.042,1.062,0.996,1.009,1.002,0.942,1.126,1.001,1.013,1.029,1.031,0.952,0.995,1.171,0.911,0.986,1.007,1.034,0.929,0.957,0.991,1.013,0.922,0.946,1.088,0.943,0.892,0.893,0.956,0.86,0.959,1.008,1.025,1.07,1.106 +XM_096472,0.961,1.086,1.089,0.918,1.183,0.996,0.837,0.825,1.082,0.852,1.035,0.947,0.985,0.908,0.873,1.097,0.96,1.099,1.014,0.916,1.036,0.872,1.163,1.149,1.007,0.967,1.078,1.03,1.189,0.95,0.875,1.032,1.111,0.835,1.069,1.022,1.005,0.866,0.913,0.983,0.991,1.064,0.896,1.04,0.952,0.923,1.01,0.925,0.926,1.009,1.043,1.064,1.068,1.043 +XM_096516,0.999,1.138,1.067,1.087,1.085,0.912,0.9,0.91,0.936,1.109,0.883,1.109,1.059,1.03,1.028,0.854,1.062,1.021,0.873,0.988,0.932,1.036,1.054,1.028,0.953,1.018,1.004,1.009,1.001,0.968,1.001,0.963,1.075,0.995,1.069,1.196,0.902,0.941,0.964,0.884,0.894,1.113,1.039,1.047,1.081,1.012,1.043,0.986,0.93,1.141,0.957,0.907,1.014,0.874 +XM_096548,1.005,0.888,0.989,1.002,0.93,0.982,1.019,0.966,0.96,1.018,1.109,1.052,1.022,1.106,1.051,1.083,0.924,0.951,0.928,0.931,1.16,1.123,0.948,0.898,0.989,1.012,0.985,1.018,1.4,1.008,1.057,0.909,1.084,0.884,0.9,1.032,1.046,1.0,0.999,0.996,1.006,0.978,0.981,1.034,1.014,1.116,0.952,0.873,0.945,1.06,1.03,0.991,1.012,0.863 +XM_096576,0.966,0.969,0.962,0.966,1.027,0.966,0.838,1.071,1.013,1.029,0.988,1.033,1.168,0.975,1.007,1.048,0.95,0.973,0.79,1.123,1.0,1.189,0.957,0.964,1.164,0.934,1.065,0.995,0.751,0.989,1.015,0.96,0.906,1.161,0.99,1.169,1.001,1.151,0.889,0.945,0.992,1.022,0.773,1.048,0.988,1.124,0.908,0.921,1.189,1.164,1.007,1.105,0.962,1.029 +XM_096608,1.016,0.992,0.977,1.159,1.018,1.026,1.115,1.048,0.951,1.035,1.063,0.997,1.017,0.835,0.982,1.042,0.965,0.937,1.072,1.069,0.969,0.843,1.076,0.933,1.074,0.932,0.946,0.987,0.968,1.019,0.951,0.919,0.94,0.964,0.869,1.048,1.011,0.977,0.973,1.035,0.943,0.98,1.181,1.012,0.845,0.925,0.939,1.019,0.937,0.997,1.021,1.044,0.975,1.019 +XM_096630,0.958,1.083,0.901,0.976,1.04,0.947,1.011,1.001,0.882,1.025,1.032,0.952,1.123,0.843,0.981,1.006,0.986,0.913,1.145,1.132,1.013,0.885,1.023,1.018,0.98,1.006,0.976,1.095,0.856,1.172,0.92,1.257,1.022,1.015,1.065,0.943,1.039,0.926,0.922,0.982,1.061,1.123,0.906,1.066,0.995,0.973,1.006,0.887,0.905,0.849,1.033,1.003,1.043,0.898 +XM_096656,0.948,0.985,1.054,0.94,0.948,1.028,0.839,0.959,1.031,0.985,0.911,1.027,1.095,0.951,1.087,0.926,0.953,0.911,1.001,0.962,1.022,1.021,1.04,1.015,0.96,1.059,0.994,0.961,1.042,1.075,1.044,0.98,0.987,0.888,1.024,1.1,0.929,0.929,0.867,1.014,0.816,0.96,1.064,1.01,1.077,0.88,1.062,1.017,0.958,1.014,0.99,1.075,0.989,1.037 +XM_096676,1.015,0.997,0.952,0.936,0.944,1.012,0.851,1.192,1.028,0.895,1.006,0.912,1.044,0.873,0.833,1.174,0.96,1.153,1.176,0.937,0.987,0.91,1.054,1.086,1.093,1.054,0.948,0.936,0.786,1.193,0.977,0.957,0.883,1.06,0.981,0.771,0.898,0.925,1.018,1.123,1.058,0.952,1.129,0.788,1.135,0.903,0.864,1.025,1.023,0.95,1.055,1.072,1.031,0.983 +XM_096688,0.96,0.873,0.982,0.957,1.055,0.97,0.917,1.121,0.926,0.934,0.995,1.028,0.956,0.919,1.118,0.949,0.946,0.928,0.922,1.111,1.084,0.992,1.018,1.009,1.064,1.078,0.993,1.034,1.067,1.135,0.964,1.217,0.971,1.064,1.065,0.983,1.017,1.073,1.015,0.934,1.027,1.017,1.094,1.034,1.092,0.981,0.974,0.95,1.163,0.895,1.015,0.985,0.908,1.093 +XM_096699,1.072,0.998,1.039,0.89,1.066,0.965,0.785,1.282,1.015,1.017,0.965,0.968,0.888,0.802,0.966,0.996,1.035,0.999,0.833,1.032,0.89,1.038,0.908,1.11,0.995,1.111,0.988,1.081,1.299,1.033,1.063,1.089,0.893,1.06,1.011,0.969,0.983,1.152,1.106,1.135,1.004,0.935,0.824,0.992,1.093,0.88,1.017,0.986,0.907,0.999,0.999,0.903,0.933,0.895 +XM_096713,1.029,0.971,1.021,0.918,1.049,1.01,1.436,1.005,0.965,1.214,0.831,0.924,1.125,1.009,0.983,1.042,1.009,1.02,0.895,0.888,1.018,0.91,0.956,1.043,0.941,1.011,0.941,1.002,1.058,1.007,1.007,0.971,0.911,0.886,1.028,0.956,1.044,0.863,1.011,1.082,0.962,1.049,1.068,0.94,0.95,1.055,1.013,1.08,0.982,1.038,0.95,0.912,1.087,0.968 +XM_096722,1.0,1.05,1.084,1.012,1.007,0.968,0.868,0.895,0.885,1.022,1.004,1.066,0.929,0.981,0.901,0.956,0.97,0.835,0.894,0.979,0.945,1.034,0.975,0.972,1.013,0.962,0.957,1.112,0.986,1.041,0.995,1.014,0.93,0.895,1.029,0.99,1.038,1.1,0.977,1.023,1.046,1.064,1.107,0.951,1.075,1.123,1.072,0.966,0.881,0.994,1.004,1.118,1.036,0.982 +XM_096734,1.008,1.126,1.086,1.183,0.864,1.184,1.082,1.437,0.863,0.976,1.109,0.772,0.916,1.256,1.113,1.104,0.917,0.853,1.047,1.08,1.069,0.877,0.857,0.993,0.975,0.998,1.036,0.996,1.416,0.996,0.926,1.12,0.782,0.88,1.178,1.305,0.964,1.106,1.037,0.971,0.99,0.952,0.961,0.865,0.891,1.05,0.974,0.965,1.046,1.129,1.215,1.026,1.067,0.996 +XM_096791,1.014,0.979,1.033,1.043,1.208,0.942,0.89,1.005,0.977,1.039,0.921,0.984,0.969,1.024,0.973,0.999,1.078,0.941,0.929,0.893,1.097,1.129,1.02,1.027,0.925,1.025,1.017,0.912,1.121,1.016,0.974,0.946,0.937,0.956,1.079,1.103,1.013,1.013,0.964,1.084,0.958,1.125,0.81,0.922,0.966,1.027,0.955,1.051,0.908,1.034,1.039,1.074,1.026,1.149 +XM_096816,0.927,0.944,1.109,1.034,1.044,0.995,0.902,1.016,0.972,0.996,1.079,1.015,0.885,1.032,0.961,1.061,0.962,1.051,0.881,1.151,1.032,1.143,0.956,1.026,0.963,1.033,1.04,0.886,0.861,1.117,0.971,0.992,0.995,1.2,1.084,1.067,1.086,0.973,0.983,1.088,0.996,1.058,0.987,0.83,1.153,1.058,1.007,0.973,0.991,1.059,0.992,0.981,1.055,1.087 +XM_096838,0.963,0.928,0.983,0.875,1.006,0.974,0.825,1.287,1.0,0.902,0.901,0.962,0.928,0.97,0.959,1.008,1.017,0.855,1.067,0.962,0.986,1.011,0.992,1.003,0.946,1.039,1.02,1.05,1.125,0.998,0.987,1.055,1.03,1.014,0.937,1.048,1.076,1.009,1.012,1.084,1.045,0.975,1.053,1.015,1.001,0.953,1.107,0.963,1.01,0.953,1.035,0.952,0.922,0.966 +XM_096852,0.6,3.619,0.651,0.838,0.579,1.095,0.628,0.446,0.555,0.463,1.089,0.502,0.59,0.473,0.989,1.488,0.712,0.62,0.505,1.242,0.455,0.507,2.494,0.567,1.146,0.589,0.517,0.54,0.539,1.056,0.594,1.283,0.935,1.353,0.478,0.518,1.53,0.565,1.411,2.855,0.643,1.342,2.659,1.309,0.766,3.117,1.896,0.538,3.842,0.68,1.092,0.957,0.453,5.422 +XM_096868,0.955,1.029,1.129,0.863,0.967,1.014,1.019,1.109,1.112,0.936,0.999,1.13,0.995,1.189,0.969,0.959,0.922,1.137,0.931,0.938,0.939,0.997,0.964,1.124,1.057,1.056,0.92,1.003,1.01,1.018,0.885,1.061,1.048,0.967,0.987,1.001,1.08,0.993,1.079,0.986,0.984,0.89,1.294,1.029,0.954,1.03,1.071,1.018,0.932,0.987,0.972,0.921,1.168,0.915 +XM_096873,1.0,1.132,1.088,1.049,0.919,0.891,1.254,1.111,0.961,1.051,0.956,0.965,0.934,0.85,0.921,0.999,0.892,0.965,0.916,1.034,1.098,0.959,1.009,0.946,1.095,1.012,1.094,1.088,1.023,0.926,0.885,0.932,0.947,1.039,1.076,0.972,0.86,1.025,1.056,1.003,1.101,0.964,1.028,1.007,0.953,1.104,1.016,1.038,1.035,1.14,0.989,1.122,0.882,0.912 +XM_096879,1.034,0.877,1.027,1.013,1.026,1.079,1.021,1.018,1.113,1.036,1.071,1.009,1.191,0.977,0.977,0.979,0.892,1.107,1.156,1.187,1.037,0.954,1.133,1.082,1.046,1.043,1.236,0.834,1.381,1.168,1.031,1.216,0.921,0.93,0.766,0.867,1.1,0.967,0.88,1.181,0.905,1.03,0.994,0.97,0.999,0.923,0.924,0.963,0.925,0.936,1.021,1.227,0.985,1.206 +XM_096885,0.934,1.169,0.959,0.91,0.788,1.301,0.688,0.866,0.831,0.801,1.21,0.841,0.836,0.738,0.965,1.19,0.683,0.886,0.924,1.252,0.818,0.783,1.827,0.925,1.191,0.983,0.895,0.819,0.65,0.993,0.909,1.258,1.198,1.519,0.575,1.1,1.017,1.008,1.504,0.703,0.857,1.133,0.697,0.895,0.821,0.942,0.828,0.774,0.894,0.817,1.075,0.748,0.723,1.658 +XM_096912,0.933,0.929,1.013,1.002,1.033,1.083,0.799,0.914,0.913,0.914,1.033,1.043,1.145,0.968,1.002,0.947,1.046,0.985,0.972,1.173,1.055,0.953,0.933,1.026,1.062,1.191,1.052,0.973,0.846,0.885,1.05,0.986,0.95,1.023,1.012,1.041,1.037,0.92,1.042,1.023,0.881,0.876,0.807,0.998,1.08,0.929,1.055,0.992,1.082,1.052,1.085,1.145,0.956,1.049 +XM_096914,1.067,0.948,1.057,0.948,0.993,0.908,1.134,1.017,1.08,1.073,0.916,1.043,1.057,1.045,0.907,1.085,0.919,0.97,1.049,0.99,1.077,1.101,0.967,1.071,1.032,1.005,1.102,0.912,1.143,1.009,0.96,1.078,1.026,0.845,0.986,0.96,1.109,0.947,0.944,0.961,1.005,1.06,0.911,0.936,1.193,0.999,1.051,0.977,0.872,0.951,0.996,0.941,0.97,1.194 +XM_096919,1.032,1.052,0.901,0.989,1.041,1.069,1.114,1.117,1.024,0.993,1.012,0.959,1.118,1.127,0.935,1.085,0.892,1.046,1.007,0.888,0.965,1.012,1.03,1.018,0.893,0.941,0.919,1.093,1.169,0.983,1.078,1.047,1.064,0.948,1.033,0.851,1.002,1.003,1.092,0.934,0.868,0.921,1.019,0.97,1.014,0.951,0.997,0.977,1.022,0.858,1.129,0.967,0.948,0.998 +XM_096985,1.056,0.997,0.916,0.906,0.769,0.991,0.982,0.763,0.949,0.888,0.964,1.02,1.086,1.127,0.977,1.027,1.005,1.026,1.178,0.922,0.956,1.015,0.941,1.062,1.074,0.823,1.046,1.005,0.945,0.941,1.091,0.992,0.965,0.895,1.009,0.923,0.938,0.883,0.995,0.959,1.024,0.906,1.036,1.121,1.14,1.008,0.993,1.028,1.066,1.041,0.921,1.049,1.079,0.987 +XM_097076,1.055,1.016,1.11,1.008,0.91,0.995,1.15,1.016,0.998,1.079,0.977,1.009,1.076,1.037,1.049,0.966,0.985,0.952,1.126,0.989,0.934,0.964,0.947,0.936,0.973,0.871,0.933,0.935,1.045,0.982,1.107,1.067,1.081,0.888,0.978,1.003,1.092,1.103,0.913,1.171,1.044,0.919,1.061,0.992,1.029,0.994,0.985,1.081,0.863,1.065,1.063,0.874,0.973,1.084 +XM_097120,0.853,0.948,0.97,1.022,0.952,1.017,1.061,0.973,1.042,0.905,1.007,0.863,1.0,1.084,1.103,1.072,0.947,0.97,0.868,0.9,1.006,0.892,1.008,0.986,1.146,1.071,1.161,0.904,1.129,0.995,0.96,0.895,1.025,1.067,1.016,1.025,0.999,0.897,1.07,0.968,0.915,0.963,0.887,1.112,1.139,0.965,0.907,1.175,0.919,1.086,0.877,0.923,0.999,1.098 +XM_097149,0.927,1.061,0.94,0.916,1.007,1.029,0.912,0.908,0.843,0.857,1.024,0.973,0.919,0.963,1.105,1.13,0.949,1.041,0.977,1.167,1.03,1.164,1.019,0.985,0.935,0.993,1.095,0.891,1.007,1.006,0.971,1.388,0.882,1.007,0.937,1.001,0.94,0.949,1.064,1.235,0.923,0.926,0.968,1.181,1.028,0.994,0.998,0.902,1.073,0.985,1.072,0.919,1.012,1.015 +XM_097225,0.981,1.023,0.937,1.039,1.006,0.942,1.087,0.921,1.076,0.965,1.028,0.978,1.109,1.076,1.117,0.969,1.012,1.068,0.931,1.011,0.993,0.976,0.925,1.005,0.992,1.155,1.075,0.953,0.714,1.068,1.077,0.98,1.042,0.846,1.0,0.948,1.089,0.813,1.052,0.909,1.003,1.081,0.935,0.945,1.015,1.072,0.975,1.002,0.977,0.985,0.973,1.008,1.013,0.934 +XM_097255,0.991,0.92,1.083,0.996,1.009,1.029,0.944,1.07,0.947,0.992,0.892,0.991,0.976,0.984,1.494,1.129,0.997,1.093,1.0,1.024,1.181,0.99,1.0,1.072,1.051,1.003,1.066,1.042,0.99,1.094,1.004,0.927,1.038,0.995,1.028,1.068,0.98,0.875,0.972,0.999,0.93,1.013,0.844,0.954,1.124,1.095,0.957,1.053,1.039,1.0,1.034,1.006,1.091,0.913 +XM_097265,1.107,1.058,0.989,1.058,1.02,1.097,0.834,1.201,0.93,1.04,1.033,1.08,0.848,1.164,0.964,0.908,0.963,0.969,0.847,1.05,1.087,0.955,0.936,0.951,0.952,0.965,1.017,0.92,1.082,0.954,1.061,1.056,0.885,1.01,0.981,0.997,1.136,1.019,0.976,1.08,0.99,0.947,1.207,0.989,1.117,0.996,1.167,1.05,1.103,1.112,1.137,1.072,0.899,0.841 +XM_097347,1.189,1.041,0.953,0.934,0.932,0.956,1.034,1.101,1.066,0.959,1.014,1.018,0.936,0.99,0.915,1.075,1.011,0.863,0.931,1.067,1.082,1.147,0.962,0.982,0.954,0.918,0.916,0.978,1.209,0.961,1.087,0.981,0.96,0.972,0.877,1.057,0.965,1.131,0.801,0.928,0.911,0.989,0.894,1.009,1.097,1.099,1.028,1.003,1.107,1.063,0.978,1.073,1.16,1.15 +XM_097351,1.078,0.976,1.12,0.972,0.966,1.048,1.065,0.977,1.094,1.065,0.899,0.986,0.939,1.234,1.064,1.043,1.086,0.849,1.02,1.005,1.024,0.994,0.982,1.026,0.933,0.984,1.005,1.002,1.204,0.998,0.959,0.972,1.082,0.927,1.117,0.929,1.022,1.022,1.107,0.961,0.975,0.945,0.9,1.108,1.064,1.067,0.885,1.034,0.928,0.906,0.936,0.954,0.964,0.967 +XM_097380,1.063,1.022,0.95,1.023,1.052,1.022,1.12,1.105,1.099,1.052,0.953,1.003,0.98,0.908,0.893,1.016,1.091,0.984,0.889,1.077,1.032,1.035,1.003,1.005,1.053,0.969,0.854,1.01,1.071,0.995,1.028,1.001,0.998,1.081,0.97,0.9,0.97,0.986,0.937,1.005,0.982,0.926,1.138,0.95,1.079,0.973,1.049,0.972,0.955,1.064,0.997,1.118,1.039,0.924 +XM_097410,1.007,0.951,0.983,0.927,0.923,1.013,1.066,0.977,0.877,0.987,1.133,1.131,1.02,0.819,1.014,0.946,0.964,1.093,0.942,1.026,1.051,0.938,1.062,1.002,1.057,0.966,0.91,0.962,1.394,0.91,0.964,1.064,1.044,0.992,1.027,0.904,1.027,0.895,0.931,0.996,1.027,1.097,1.089,1.017,0.984,0.945,0.896,1.16,0.923,1.001,1.061,0.874,1.011,0.955 +XM_097480,0.898,1.006,0.906,0.982,0.991,1.04,0.848,0.877,1.145,0.949,0.977,0.98,1.012,0.935,0.944,1.093,1.058,0.909,1.007,0.888,1.005,0.94,1.233,0.964,1.14,0.915,0.986,1.033,0.847,1.138,0.968,1.311,1.017,1.271,0.972,0.89,1.126,0.92,1.09,1.069,1.008,1.036,0.928,0.93,0.922,0.931,1.068,0.988,0.975,1.018,1.016,0.979,0.942,1.249 +XM_097505,0.977,0.979,1.128,1.054,0.939,1.048,0.991,1.056,0.964,0.897,1.078,0.996,1.077,0.859,0.902,1.002,1.035,1.045,1.051,1.064,0.988,1.059,0.954,0.94,1.009,0.964,1.025,1.034,1.146,0.956,1.055,0.899,0.957,1.062,0.815,0.984,1.012,0.881,1.009,1.044,1.062,1.004,1.363,0.9,0.96,1.01,0.962,0.955,0.888,0.998,1.032,0.947,1.134,0.907 +XM_097506,1.025,0.998,1.013,0.991,1.045,0.973,0.971,0.845,1.094,1.015,0.998,0.989,1.028,0.985,1.109,0.944,1.072,0.921,0.882,1.028,0.845,1.046,0.935,0.999,1.006,1.067,1.137,0.967,1.012,1.024,0.99,1.063,0.852,0.894,1.119,1.053,0.92,1.127,0.995,0.976,1.02,0.948,0.631,1.1,0.946,1.067,0.989,0.997,1.044,0.938,1.019,0.926,1.04,0.888 +XM_097508,1.073,0.983,0.865,1.006,0.971,0.968,0.839,0.952,1.161,1.099,1.112,1.02,1.373,1.101,0.915,1.047,0.97,0.982,1.043,1.036,1.185,1.06,1.115,1.06,0.993,1.192,0.82,1.098,0.971,1.029,0.971,0.94,4.258,0.99,0.978,1.191,0.963,1.198,0.866,0.951,0.955,1.295,0.834,3.621,0.853,1.056,1.137,1.069,0.875,0.904,1.006,0.897,1.322,0.971 +XM_097516,1.012,1.078,1.028,1.069,1.09,1.036,0.922,0.961,0.984,0.998,1.169,1.036,1.04,0.971,0.952,1.05,1.002,1.056,0.895,1.114,0.99,1.011,0.959,1.027,1.054,0.966,1.046,1.074,1.016,0.883,1.189,1.065,0.904,0.912,1.06,1.033,1.01,0.918,0.923,0.89,1.071,1.061,0.98,1.099,0.965,0.925,1.006,1.057,1.011,1.021,1.078,1.003,0.961,1.064 +XM_097541,1.058,0.954,0.967,1.003,1.045,0.976,0.806,1.025,1.092,1.024,1.13,0.931,1.02,1.034,0.982,0.999,1.029,1.017,1.078,0.953,0.901,1.048,1.065,1.154,0.979,1.094,1.095,1.036,0.993,1.005,1.016,0.986,1.129,0.929,0.953,0.976,1.071,1.063,0.93,0.919,0.963,0.929,0.863,0.959,1.03,1.048,0.845,1.031,1.009,0.975,0.94,1.001,1.019,0.953 +XM_097549,0.963,0.994,0.977,1.012,0.951,1.077,1.029,0.987,0.881,0.914,1.007,1.002,0.958,0.898,1.11,0.987,0.885,0.968,0.972,1.0,1.044,1.102,1.064,1.164,0.934,1.042,1.088,1.028,1.119,1.096,0.983,0.922,0.983,0.939,0.915,1.08,1.017,1.074,1.0,0.982,0.837,1.047,0.987,1.081,1.057,0.899,0.931,1.061,0.928,1.017,1.021,0.993,1.009,0.932 +XM_097594,0.963,1.021,1.034,0.942,1.086,0.983,1.064,0.95,1.024,1.14,0.998,0.964,1.025,1.063,1.02,0.913,0.935,1.054,0.911,1.051,0.925,0.89,0.956,1.002,0.981,0.875,0.918,1.042,1.043,0.952,0.995,1.051,0.924,1.18,0.986,0.978,1.128,0.924,0.958,1.097,0.878,1.174,0.929,0.994,1.035,1.012,1.07,0.943,1.006,1.0,0.95,1.05,1.102,1.018 +XM_097599,0.955,0.992,0.952,0.854,1.037,1.028,0.785,1.091,1.089,0.914,0.919,1.01,0.95,0.96,1.148,0.91,0.989,1.007,0.833,0.933,0.972,1.1,0.945,0.964,1.014,1.135,1.087,1.048,0.875,1.06,0.945,0.927,0.982,0.978,0.937,1.105,0.991,0.961,1.05,0.989,1.076,1.002,0.91,0.967,0.954,0.987,1.035,1.085,1.012,0.956,1.0,1.01,0.965,1.109 +XM_097605,1.079,0.97,0.968,1.009,0.896,1.054,1.078,0.933,0.993,0.961,0.901,1.036,1.061,0.94,0.92,0.977,0.93,1.004,1.044,0.978,1.052,0.998,1.028,1.036,1.013,1.033,1.014,1.019,1.284,0.948,0.887,1.05,1.005,0.927,1.063,0.959,1.005,0.978,1.004,1.007,1.058,0.944,1.109,0.897,0.961,0.965,1.0,1.003,0.983,1.032,0.946,0.973,1.021,0.971 +XM_097622,0.84,0.985,1.083,0.891,0.982,0.763,0.892,0.954,0.914,1.069,0.914,0.674,0.839,1.013,0.978,0.898,1.065,1.132,0.856,0.946,1.079,0.871,1.228,0.931,0.876,0.847,1.129,0.818,1.143,0.932,0.994,1.207,1.183,1.058,1.394,1.202,1.04,1.177,1.051,1.094,0.903,0.909,1.452,0.947,1.104,1.049,1.09,1.164,0.959,0.773,0.899,0.892,1.269,1.15 +XM_097725,0.956,0.95,1.103,1.102,1.066,0.985,0.969,0.955,1.033,1.104,1.037,1.062,1.055,0.879,0.926,0.982,0.973,1.008,0.995,1.034,1.06,0.912,1.241,1.144,1.119,1.157,0.968,0.904,0.771,0.961,1.092,0.958,0.951,0.939,0.94,1.109,1.029,1.039,0.912,1.051,0.907,1.011,0.912,1.008,1.052,1.029,1.118,1.082,1.0,0.875,0.997,0.992,0.983,0.942 +XM_097733,0.882,0.855,1.101,0.916,0.913,0.992,0.828,0.902,0.815,0.904,0.882,0.791,0.802,1.028,1.014,1.203,0.942,0.807,0.945,1.068,0.998,0.902,1.27,0.843,0.953,0.928,1.027,0.833,0.969,1.351,0.996,1.385,1.192,1.43,0.794,1.002,0.928,0.853,1.094,1.067,0.946,1.217,0.751,0.985,0.92,0.976,0.825,0.762,0.994,0.888,0.993,0.873,0.961,1.387 +XM_097735,0.906,1.027,0.917,1.079,1.159,0.949,0.9,0.892,0.988,1.067,1.058,1.024,1.04,0.871,1.065,1.0,0.976,0.981,0.863,1.022,0.928,0.892,0.99,1.067,0.881,0.902,0.898,1.1,0.795,0.949,0.936,1.004,0.942,0.851,0.981,1.056,0.987,1.062,1.059,1.079,0.991,0.999,0.87,0.957,1.082,0.925,1.094,1.041,1.063,1.082,0.938,1.006,0.904,1.0 +XM_097736,1.101,1.027,0.954,1.034,0.995,1.015,1.165,1.016,1.006,1.076,1.094,0.935,0.919,1.036,0.907,0.939,0.979,1.091,1.047,1.089,1.125,1.018,1.132,0.989,0.917,1.039,1.124,1.155,0.921,0.948,1.056,1.034,0.866,0.958,0.957,0.924,1.108,1.156,1.071,0.956,1.018,1.002,0.969,0.897,1.047,1.039,1.074,1.089,1.122,0.95,1.0,0.878,0.993,1.07 +XM_097797,1.064,1.004,1.059,1.007,0.873,1.024,1.123,1.007,0.933,1.063,0.999,1.0,1.089,1.009,0.786,0.977,0.974,1.143,0.925,1.055,0.975,1.011,0.974,0.975,1.097,1.074,1.0,0.999,0.817,1.008,1.069,0.956,1.059,1.09,1.026,1.135,1.021,1.159,1.05,1.101,1.076,1.01,1.278,0.91,0.965,1.032,0.922,0.938,1.103,1.005,0.996,0.94,1.006,0.997 +XM_097820,0.886,1.954,0.938,1.014,0.774,1.594,1.001,0.76,0.908,0.978,1.008,0.839,0.932,0.934,1.521,0.889,0.891,1.493,0.835,1.123,0.834,0.784,1.065,0.793,1.146,0.984,0.912,0.83,0.885,1.967,0.864,1.838,1.061,2.228,1.072,0.86,1.38,0.893,1.65,1.055,0.944,1.588,0.745,0.9,0.854,0.934,0.985,0.889,0.891,0.822,1.132,0.92,0.854,1.15 +XM_097869,1.065,1.094,0.85,1.032,1.044,1.028,0.854,1.105,1.103,0.967,0.925,1.0,1.131,0.951,0.841,1.047,0.956,0.948,0.954,0.969,0.986,1.03,0.936,1.013,1.015,1.056,1.024,0.942,0.896,0.972,1.119,0.935,0.982,1.01,1.164,1.009,0.924,0.976,1.102,0.999,1.054,0.996,1.224,0.923,0.876,0.881,1.003,0.954,0.941,0.998,1.048,1.085,1.037,0.854 +XM_097886,0.784,1.283,0.909,0.768,0.751,1.117,0.935,0.635,0.758,0.858,1.196,0.931,0.904,0.582,0.879,1.503,0.77,0.717,1.141,1.021,0.84,0.804,1.031,1.028,0.903,0.908,0.96,0.639,0.9,1.068,0.748,1.347,3.345,1.516,0.355,1.485,0.942,0.677,2.009,0.915,0.834,0.986,0.674,2.457,0.794,0.759,0.975,0.8,1.024,0.875,1.021,0.71,0.888,1.726 +XM_097894,1.176,1.066,1.1,0.98,0.839,0.975,1.109,1.104,1.074,0.908,0.961,1.022,0.773,1.133,1.071,1.023,0.956,0.899,0.966,1.019,0.913,1.253,0.875,1.035,0.953,1.047,0.934,0.946,1.056,1.084,0.869,0.967,1.03,1.043,1.073,0.908,1.102,0.971,1.019,1.006,0.961,1.074,1.123,0.956,0.894,1.244,1.2,0.952,0.963,1.028,1.06,1.11,0.988,1.072 +XM_097975,1.085,1.014,1.012,0.913,0.89,1.07,1.009,0.872,1.129,0.953,0.853,1.046,0.911,1.247,1.307,1.0,0.954,1.015,0.88,1.008,0.991,0.998,1.031,0.952,0.903,1.011,1.087,1.024,1.134,1.042,1.012,1.039,0.908,0.926,0.955,0.964,0.989,1.044,0.978,0.995,1.084,0.977,1.137,0.969,0.987,1.0,1.043,1.133,1.022,0.901,1.024,0.906,0.959,0.984 +XM_097977,0.825,1.147,0.842,1.09,0.798,1.843,1.241,0.807,0.812,0.988,1.031,0.766,0.856,0.7,1.011,1.496,0.766,1.169,0.913,0.997,0.87,0.707,1.179,0.859,0.946,0.78,0.791,0.81,1.444,3.653,0.744,1.588,1.198,2.771,0.905,0.955,1.127,0.899,1.395,1.048,0.82,1.431,1.011,1.344,0.995,1.304,0.91,0.81,0.858,0.85,1.168,0.915,0.928,1.471 +XM_097998,1.031,0.999,0.955,1.052,1.053,0.967,1.002,0.893,1.079,1.076,0.773,0.953,1.05,0.924,0.948,1.016,0.985,1.06,1.053,1.062,0.915,0.966,1.018,0.961,0.991,0.911,0.93,1.059,0.845,1.055,1.001,1.079,1.001,1.043,1.099,0.936,0.867,1.087,0.984,1.092,1.179,1.046,1.066,0.999,1.024,1.026,1.009,1.005,1.003,0.944,0.983,1.063,1.007,0.854 +XM_098000,1.025,1.018,1.006,0.954,1.14,1.034,1.071,0.972,0.917,1.027,1.107,1.048,0.99,0.951,0.96,1.001,1.167,1.01,1.078,0.984,1.176,1.051,1.016,1.05,1.091,0.944,1.048,0.922,0.915,0.945,0.964,1.015,1.029,0.927,1.025,1.149,0.902,1.054,1.012,0.955,0.907,0.979,1.219,1.074,0.98,0.977,0.82,1.083,0.999,0.992,0.949,1.143,1.094,0.915 +XM_098012,0.355,1.455,0.572,0.523,0.519,1.401,0.91,0.352,0.549,0.448,1.122,0.342,0.339,0.28,0.786,1.565,0.444,0.756,0.484,1.575,0.241,0.422,1.584,0.396,0.758,0.334,0.749,0.348,0.0635,1.964,0.45,1.901,1.565,1.8,0.347,1.013,1.359,0.484,2.145,1.059,0.463,1.33,0.0731,1.408,0.547,1.404,0.699,0.457,1.001,0.425,1.734,0.632,0.413,1.641 +XM_098022,1.113,1.086,1.026,0.995,1.176,1.07,1.301,0.933,1.102,0.96,1.129,1.083,0.972,1.197,1.143,0.951,1.017,0.932,1.205,1.008,1.064,0.903,1.047,0.92,0.996,0.856,0.982,0.971,1.198,0.965,0.923,0.9,0.999,0.969,0.968,0.935,1.034,0.979,0.976,1.122,0.963,1.026,0.903,1.099,1.011,1.024,0.843,1.142,0.96,1.011,0.917,1.02,0.919,1.067 +XM_098030,1.056,0.902,1.014,1.189,1.114,1.075,0.916,1.008,1.056,1.057,1.065,1.035,0.991,0.913,0.834,0.948,1.072,0.998,1.016,1.089,1.058,0.936,1.037,1.033,1.011,1.003,1.099,0.987,0.866,0.975,0.966,1.186,0.914,0.921,0.987,1.045,1.026,0.943,0.999,1.04,0.862,0.933,1.081,0.88,1.016,1.045,1.127,1.139,0.915,1.03,1.001,1.029,1.064,0.939 +XM_098060,0.934,1.032,0.977,0.98,1.005,0.999,0.994,1.1,1.04,0.974,1.197,0.946,0.942,0.902,0.948,0.961,1.008,1.081,0.809,1.04,1.035,0.92,0.946,1.03,1.086,0.939,1.089,0.998,1.068,1.042,0.957,0.906,0.941,1.198,1.056,0.942,0.904,0.936,0.894,0.957,1.017,0.951,1.141,1.014,1.038,1.076,0.993,0.975,1.055,1.002,1.001,1.062,1.071,1.036 +XM_098117,1.049,0.997,0.923,1.113,1.0,1.12,0.857,0.983,1.035,1.02,1.094,1.073,1.127,0.928,1.032,1.143,1.035,0.984,0.966,1.047,1.041,0.909,0.99,0.952,1.099,1.047,0.861,1.044,0.755,1.067,0.967,1.137,1.041,1.086,0.97,1.144,0.937,0.844,0.978,1.043,0.871,0.932,0.998,0.952,0.978,1.173,0.957,0.933,0.962,0.898,0.911,1.096,0.906,1.049 +XM_098132,1.042,0.906,1.079,0.965,1.104,1.073,1.015,1.235,0.992,0.996,0.958,0.838,0.972,1.171,1.078,1.015,0.959,0.988,0.908,0.998,1.107,0.975,0.961,0.995,1.009,1.015,0.733,1.021,1.11,1.047,1.047,0.915,0.909,1.018,1.001,0.964,1.085,1.037,1.02,0.941,1.109,1.0,1.126,0.982,1.057,1.053,0.912,0.896,1.055,1.11,0.972,0.99,1.0,1.007 +XM_098156,0.986,1.09,0.933,0.939,0.901,1.034,0.901,1.074,0.94,1.043,0.971,1.073,0.878,0.952,1.019,1.037,1.009,0.902,0.812,0.934,1.126,0.963,0.933,0.954,0.957,0.95,1.034,0.965,1.062,1.003,1.062,1.032,1.033,0.911,0.917,0.979,1.032,0.924,1.0,1.083,0.996,1.026,1.073,0.967,0.967,1.0,0.936,1.016,0.917,0.99,0.972,1.053,1.003,0.851 +XM_098163,0.923,0.963,1.021,0.954,0.959,0.967,1.08,1.11,1.308,1.19,0.945,1.129,1.046,1.132,0.873,1.003,0.884,0.995,1.167,0.988,0.917,1.048,0.936,1.053,1.022,0.999,1.0,1.106,0.898,1.068,1.04,0.834,0.926,1.094,0.995,0.994,0.998,1.147,1.027,0.974,1.135,0.975,1.05,1.058,1.011,0.885,1.044,0.947,1.026,1.111,0.98,1.084,1.027,0.997 +XM_098174,1.074,0.93,1.027,1.099,1.151,1.091,1.037,0.954,1.019,0.878,1.013,0.999,1.022,1.094,1.092,0.992,1.0,1.02,1.078,1.079,0.967,0.957,0.93,1.103,1.021,1.029,0.877,0.985,0.94,1.009,1.268,1.003,1.062,0.926,1.278,0.966,0.958,0.858,0.943,0.946,0.976,0.966,1.002,0.862,0.907,0.924,0.995,1.008,0.986,1.0,0.993,1.097,0.981,1.027 +XM_098225,0.866,1.009,1.039,0.968,0.938,1.001,1.305,1.09,0.975,1.025,0.885,1.099,1.013,0.961,0.928,1.071,1.024,1.17,1.017,0.958,1.01,0.987,0.908,0.988,0.899,1.156,1.084,0.957,0.956,1.096,0.906,0.925,1.029,0.983,0.967,0.996,0.991,1.146,0.959,0.991,1.051,0.971,0.96,1.025,0.943,1.005,1.021,1.036,1.04,0.977,1.101,0.996,1.034,0.976 +XM_098229,1.048,1.045,1.057,0.921,0.887,0.964,0.78,0.999,0.949,0.984,0.876,0.846,0.925,0.828,0.995,1.112,0.895,0.995,1.039,1.033,0.843,0.984,1.077,0.976,0.882,1.039,1.016,1.131,0.848,1.15,1.095,1.216,1.108,1.213,0.92,0.849,0.91,1.04,1.108,1.133,0.991,0.979,0.714,1.037,0.994,0.89,0.905,1.077,1.004,0.935,1.071,0.921,0.964,0.984 +XM_098238,0.605,1.048,1.388,0.702,1.298,1.637,0.834,0.967,1.092,0.842,1.082,0.657,0.552,0.672,1.143,1.995,0.88,1.211,1.05,1.329,0.438,0.964,1.646,0.773,0.519,0.755,1.055,1.121,0.603,1.249,1.037,1.011,1.805,1.641,1.339,0.427,1.311,1.118,1.246,0.426,1.017,1.284,0.628,1.024,1.056,1.391,1.038,1.031,1.147,0.871,1.216,0.564,0.544,0.767 +XM_098290,0.987,1.036,0.93,0.979,0.955,0.991,1.17,0.975,0.941,0.942,1.062,0.906,1.053,0.945,0.896,0.989,0.961,0.878,1.039,1.0,0.958,0.868,1.201,0.98,1.107,0.909,0.91,1.047,0.868,1.275,0.884,2.022,1.166,1.251,1.037,0.936,1.013,0.889,1.057,0.856,0.915,1.257,0.714,0.971,0.966,1.186,0.896,0.847,0.92,0.93,1.029,1.091,0.947,1.0 +XM_098317,0.955,1.061,1.056,1.049,1.041,0.921,0.916,1.164,1.057,0.922,1.077,1.016,0.981,0.973,1.17,1.01,0.882,1.012,1.094,1.059,1.009,0.977,1.17,0.994,0.889,0.95,1.204,1.089,0.938,0.952,1.034,0.926,1.001,0.983,1.087,0.862,0.944,0.873,0.952,1.012,0.96,1.019,1.035,1.019,1.047,0.851,0.995,1.206,0.982,0.879,1.153,0.884,1.054,0.92 +XM_098320,1.051,0.923,1.3,0.912,0.893,0.914,0.898,0.895,1.011,1.064,0.892,1.17,1.028,1.026,0.943,0.846,1.174,1.058,0.941,0.829,1.186,0.944,0.818,0.951,0.889,1.371,1.264,0.844,1.219,0.904,1.062,1.086,1.076,1.001,0.884,0.972,0.881,1.147,1.019,0.961,1.046,1.71,1.055,0.997,1.098,0.919,1.182,1.003,0.976,1.221,1.01,1.278,0.97,1.069 +XM_098350,1.09,1.058,1.038,0.965,0.893,0.852,0.919,0.936,1.094,0.955,0.994,0.941,1.102,1.277,0.888,0.941,0.964,0.998,0.921,1.031,0.985,0.924,0.871,1.004,1.071,0.929,0.944,0.966,0.906,0.933,1.101,0.924,0.966,0.874,0.916,0.984,1.095,1.032,1.081,1.001,0.925,1.018,1.109,1.038,1.046,1.027,1.133,0.956,1.014,1.113,0.93,1.053,1.039,1.036 +XM_098368,0.965,1.025,1.198,0.931,0.842,1.025,0.891,0.874,1.067,0.877,1.043,1.009,0.97,0.72,0.9,0.899,0.904,0.976,1.093,0.677,0.951,1.014,1.095,0.88,1.104,0.874,1.112,0.871,0.85,1.09,1.056,0.906,1.033,0.95,0.98,1.083,1.0,1.149,1.016,1.038,1.117,0.954,0.975,1.406,0.995,1.01,0.957,0.961,1.007,1.213,1.038,1.038,1.187,0.972 +XM_098406,0.944,0.95,0.954,0.74,0.898,0.993,1.262,0.971,0.999,0.897,1.016,0.953,0.91,0.889,0.733,1.07,0.913,1.057,0.945,0.921,1.041,0.924,1.072,1.043,1.029,1.096,1.001,1.076,1.489,1.082,0.967,0.977,1.058,1.195,1.112,1.039,1.017,1.122,1.073,1.005,0.889,0.918,0.892,1.009,0.892,1.107,0.95,0.984,1.093,1.081,1.13,0.89,0.979,0.948 +XM_098450,1.13,0.963,0.968,1.177,0.992,1.062,1.072,1.027,1.067,0.923,1.02,0.946,0.979,1.047,0.997,0.939,1.015,1.041,0.915,1.204,0.971,1.074,0.91,1.032,1.167,0.97,0.798,1.016,0.732,1.062,0.945,0.968,0.928,1.08,1.058,0.975,0.92,0.906,0.921,0.999,0.986,1.039,1.055,0.981,0.782,0.968,0.979,1.079,1.031,1.086,1.014,1.012,1.27,1.159 +XM_098468,0.72,1.02,1.082,1.014,0.874,1.184,0.894,0.804,1.058,0.675,1.034,0.763,0.834,0.843,1.124,1.433,0.823,1.077,1.085,1.479,0.618,0.748,1.283,0.898,0.775,0.893,0.909,0.878,0.863,1.09,0.912,1.227,0.879,1.669,0.639,0.873,1.081,0.777,1.128,0.81,0.997,1.114,0.498,0.804,0.9,0.974,0.94,0.774,0.929,0.772,1.183,0.664,0.745,2.136 +XM_098497,1.308,0.914,1.705,1.057,1.893,0.855,0.976,1.762,3.274,1.247,0.921,1.005,1.221,1.544,1.137,1.123,1.639,1.196,1.862,0.836,1.152,2.009,0.852,1.58,0.989,1.311,1.476,1.273,0.881,0.83,1.535,0.876,1.263,0.815,3.427,0.879,0.898,1.138,0.909,0.874,1.3,0.783,0.866,0.993,1.821,0.85,1.73,1.71,0.924,1.85,0.973,0.93,1.583,1.041 +XM_098625,0.949,0.957,0.968,1.217,1.03,1.016,1.234,0.955,0.964,0.931,0.969,0.903,0.954,1.412,0.948,1.043,0.971,1.093,0.952,0.969,0.93,1.053,1.093,1.028,1.038,1.002,0.856,0.877,1.559,1.01,0.963,0.854,1.039,0.94,1.035,0.932,0.945,1.078,0.848,0.961,1.091,0.955,0.899,0.893,1.065,0.883,0.836,1.187,1.077,0.829,0.974,1.141,1.06,1.17 +XM_098762,0.949,0.907,1.046,0.866,1.002,0.985,0.871,0.862,0.999,1.037,0.94,0.9,0.896,0.912,0.767,0.891,1.056,0.913,0.939,1.02,1.044,0.901,0.925,1.027,0.946,1.001,0.997,0.954,0.906,1.088,0.979,0.902,1.258,0.958,0.901,0.997,0.934,0.916,1.248,1.224,1.066,0.983,0.973,1.228,0.843,1.11,1.084,0.936,1.244,1.071,0.97,0.929,1.009,1.003 +XM_098767,0.937,1.002,1.086,0.844,0.96,1.011,0.913,1.037,0.998,0.896,0.954,0.982,1.043,1.146,1.132,1.033,1.015,1.018,0.972,1.04,0.946,1.017,1.073,1.034,1.062,0.999,0.94,0.994,1.117,1.069,0.966,1.07,0.963,1.129,0.958,0.91,1.016,1.012,0.909,0.981,0.959,1.132,1.135,0.973,0.971,0.954,1.05,0.915,0.929,1.079,1.022,0.969,0.969,1.083 +XM_098779,0.969,1.02,1.06,0.965,0.889,0.9,1.106,0.937,1.026,0.867,0.977,0.947,1.014,0.941,0.901,1.011,0.902,0.929,1.036,0.981,1.029,1.02,0.931,1.015,1.042,0.946,1.012,0.924,0.812,1.034,0.996,1.216,2.025,1.114,0.929,0.998,0.975,1.074,0.954,1.394,1.137,1.142,0.908,0.917,0.902,1.035,1.014,0.942,1.053,1.054,0.97,0.996,0.968,1.105 +XM_098819,0.994,1.028,1.046,0.948,0.923,1.0,0.963,0.917,1.025,0.954,1.044,1.033,1.025,0.944,0.91,1.021,0.89,1.041,0.929,0.884,1.107,0.959,0.946,1.035,1.046,0.844,0.958,0.977,1.359,1.036,1.003,1.087,1.011,0.992,0.892,1.11,0.919,0.994,1.07,0.948,0.998,1.052,0.874,0.984,0.956,1.053,0.99,1.049,0.932,0.947,0.966,1.085,1.028,0.967 +XM_098828,0.974,1.074,1.187,0.808,0.956,0.904,1.134,1.014,0.904,0.933,0.988,0.847,0.905,1.015,0.891,0.911,0.935,1.14,0.888,0.9,1.022,0.941,1.042,1.09,0.947,0.918,0.972,0.834,1.121,1.028,1.018,1.046,1.007,1.137,0.928,0.894,0.921,0.944,1.117,0.981,0.903,0.886,1.076,1.01,0.973,1.103,1.106,0.914,0.874,0.974,0.985,1.11,1.083,1.115 +XM_098832,0.932,0.969,0.933,1.031,1.006,1.023,0.904,0.913,1.007,0.919,1.012,1.022,1.124,0.913,0.925,0.979,0.942,0.903,0.957,1.063,0.961,1.007,1.329,0.968,0.964,1.082,0.843,0.928,0.813,1.005,0.953,1.025,0.955,1.117,1.017,1.113,1.011,0.863,0.931,1.47,0.903,1.149,1.016,0.938,0.939,1.089,1.169,0.897,0.94,1.064,1.026,0.983,0.923,1.294 +XM_098838,1.048,1.214,1.099,1.112,0.988,0.855,0.907,1.202,0.839,1.098,0.996,0.91,0.868,0.861,0.965,1.004,1.03,0.988,1.096,0.97,1.107,0.943,1.06,1.091,0.994,0.938,1.207,1.063,0.741,1.235,1.09,1.03,1.106,1.104,0.934,0.999,1.063,0.97,0.961,0.952,0.982,1.031,1.151,0.937,1.008,1.158,1.218,1.142,0.968,1.166,0.972,1.092,0.949,0.867 +XM_098845,0.97,0.891,1.009,0.935,1.091,1.025,0.963,0.968,0.946,1.007,1.017,1.059,1.107,1.029,0.981,0.922,0.954,0.837,0.969,0.988,1.078,0.877,0.972,1.028,1.057,0.945,0.899,1.002,0.939,1.05,1.051,1.044,1.009,1.04,1.005,0.906,1.016,0.95,1.13,1.027,1.0,1.043,0.984,0.995,1.005,0.997,1.032,1.126,1.027,1.007,0.953,1.062,0.983,1.009 +XM_098859,1.007,1.063,0.959,1.015,1.019,1.084,0.941,0.857,0.909,1.02,0.902,0.992,1.046,1.096,0.922,0.978,0.977,1.023,0.984,0.98,0.924,0.955,1.036,0.932,0.966,0.95,0.938,0.966,1.227,1.047,1.085,1.011,1.039,1.073,1.048,1.0,1.026,0.936,0.973,1.071,0.934,1.009,1.017,1.043,0.939,1.091,1.075,0.958,1.067,1.031,0.924,0.908,1.008,0.963 +XM_098908,1.006,0.994,1.126,1.045,0.991,1.013,1.087,0.94,0.956,0.99,0.963,1.074,1.068,0.936,1.094,0.968,0.949,1.047,0.919,1.004,1.098,1.06,1.082,0.952,0.996,1.032,1.126,1.069,1.026,1.035,1.003,0.964,0.972,0.922,1.015,0.903,0.967,1.006,0.943,0.896,1.038,1.148,1.037,0.989,0.994,0.953,1.061,0.944,0.903,1.015,0.987,0.885,0.96,0.927 +XM_098919,1.006,0.992,0.937,0.982,0.987,0.97,0.987,0.849,1.013,1.146,1.046,1.135,1.026,0.95,1.044,0.934,0.924,0.937,1.006,0.869,1.038,0.959,0.902,0.924,0.953,0.986,0.919,0.935,1.028,0.969,1.041,0.975,1.027,1.0,0.976,1.132,0.884,0.999,1.036,0.973,0.913,1.0,0.843,0.993,0.856,0.88,1.131,1.012,1.091,0.952,1.004,0.978,1.006,1.083 +XM_098936,1.022,1.014,0.945,0.946,1.06,1.028,1.053,0.888,0.94,1.004,1.131,0.938,0.963,0.824,1.043,1.058,1.066,1.02,1.085,1.004,0.957,0.967,0.93,0.981,1.118,0.966,0.915,0.884,0.756,1.061,0.951,1.119,1.159,1.018,1.024,0.888,1.187,0.938,1.135,1.064,1.028,0.998,1.136,1.016,0.919,1.011,1.053,0.942,0.92,0.963,0.947,1.076,0.995,1.019 +XM_098940,1.001,0.963,1.02,1.031,0.918,1.071,0.923,0.993,1.062,0.948,1.08,0.994,1.076,1.133,0.962,1.108,1.116,0.985,1.09,1.119,0.96,0.966,0.899,1.067,0.942,0.887,0.963,1.042,0.745,1.01,0.96,0.999,1.086,1.035,1.208,0.939,0.922,1.029,1.053,1.028,1.06,1.079,0.904,1.191,1.069,1.264,0.88,0.862,0.979,1.002,1.001,0.94,1.189,0.917 +XM_098981,1.16,1.04,0.998,0.952,1.132,1.029,0.849,0.848,0.944,0.99,1.182,1.009,1.058,1.086,0.918,1.006,1.009,1.117,1.121,1.163,1.157,1.153,1.029,1.003,1.003,0.937,1.028,0.988,0.877,0.941,0.939,1.142,0.922,0.954,0.88,1.088,0.983,0.966,1.111,1.0,0.975,0.911,1.148,1.056,1.064,1.026,0.994,0.971,0.93,0.947,0.982,0.985,1.072,0.974 +XM_098999,1.039,1.054,0.941,0.995,0.877,1.045,0.96,1.003,0.995,1.016,0.925,0.909,1.047,0.953,0.962,0.939,1.067,0.922,0.895,1.027,1.005,0.984,1.048,0.953,1.045,1.072,0.997,1.032,1.113,0.995,0.972,0.953,1.01,1.086,0.958,1.14,1.025,1.105,0.86,0.982,0.99,0.964,1.0,1.032,0.895,1.132,1.047,0.987,1.04,0.986,0.988,0.955,0.993,0.91 +XM_099004,1.037,1.071,0.967,0.965,1.013,0.907,0.889,0.922,1.043,1.059,0.961,0.881,1.058,0.899,1.082,0.881,1.026,0.925,0.899,0.936,0.966,1.036,0.97,1.018,0.89,0.991,0.982,0.921,1.055,0.954,0.929,1.015,0.934,0.983,1.033,0.937,1.067,0.975,1.056,0.939,1.111,0.982,0.834,1.199,0.967,1.147,1.025,1.099,0.894,0.988,0.936,1.072,0.902,0.864 +XM_102109,1.222,0.905,0.996,0.873,0.931,1.017,1.071,0.926,1.02,1.07,0.995,1.069,0.983,0.947,0.819,1.008,1.013,1.093,1.138,1.162,1.006,1.107,0.993,0.873,1.091,1.012,1.058,0.997,1.657,0.936,1.106,0.962,0.97,0.943,1.011,1.007,0.991,0.948,0.958,0.991,0.964,0.954,1.036,0.925,1.007,1.0,0.974,1.067,0.976,0.983,0.928,1.027,1.073,1.062 +XM_106386,0.933,1.215,0.944,0.889,0.982,1.107,1.022,0.98,1.005,0.988,1.085,0.995,0.963,0.866,0.82,1.206,0.85,0.915,0.976,1.018,0.983,0.837,1.169,1.139,0.948,0.909,1.13,0.811,0.924,1.078,0.891,1.619,0.965,1.48,0.865,0.905,1.071,1.026,1.031,0.848,0.939,1.123,0.829,1.23,0.839,0.941,1.065,0.792,0.926,1.006,1.327,0.914,1.069,1.417 +XM_113594,1.149,1.089,1.054,1.033,0.918,0.988,0.954,1.154,0.852,0.804,0.823,1.003,0.918,1.01,1.028,1.083,1.042,1.08,0.887,1.046,1.03,1.116,0.929,0.977,1.115,0.928,1.132,0.788,1.419,0.991,1.031,0.864,1.01,1.026,1.156,0.814,0.988,0.883,1.001,0.998,0.788,0.989,0.953,0.973,0.999,0.914,0.869,0.967,0.946,0.93,1.204,0.953,1.174,1.225 +XM_113596,1.017,0.984,0.886,1.023,1.125,0.917,0.876,0.967,1.138,1.133,0.908,0.984,0.951,1.007,1.012,1.064,1.04,0.996,0.926,1.061,1.01,1.042,1.085,0.992,1.02,1.063,0.956,1.011,0.875,1.13,0.998,0.892,0.952,1.062,1.072,1.006,1.141,1.017,1.04,0.842,1.07,0.873,1.379,0.91,1.046,1.008,0.976,0.971,1.191,0.97,0.989,1.054,0.92,0.954 +XM_113641,1.063,1.031,0.762,0.945,0.992,0.998,0.904,0.924,1.113,0.967,1.018,0.851,0.906,1.101,1.131,0.918,0.781,1.495,0.893,1.015,1.067,1.0,1.035,0.925,1.067,1.187,1.062,0.947,1.164,1.017,1.058,1.295,0.899,1.059,0.861,1.018,0.897,1.073,1.115,0.917,0.967,1.12,1.054,1.028,1.027,0.957,0.917,1.077,1.048,1.055,0.951,0.902,0.853,1.094 +XM_113678,0.769,0.957,1.478,0.767,0.855,0.89,0.494,0.657,1.156,1.041,0.826,0.659,0.589,0.781,0.948,1.088,0.898,0.835,1.237,0.931,0.759,0.898,1.168,0.964,0.66,0.771,1.474,0.846,0.739,1.168,0.808,1.271,2.241,0.972,0.402,1.179,1.07,1.006,1.312,1.035,1.133,1.054,0.674,1.278,1.187,1.013,1.001,0.728,1.045,0.852,0.96,0.999,0.95,1.9 +XM_113688,1.066,0.83,1.112,0.964,1.011,1.016,0.919,1.05,0.993,0.965,0.858,0.958,0.843,0.826,0.845,1.091,0.915,1.105,1.097,1.098,0.983,1.171,1.053,1.042,0.814,1.03,1.055,1.061,1.57,0.977,1.082,1.01,0.912,1.08,0.929,1.021,0.927,1.105,0.925,0.921,1.019,0.99,0.833,1.021,1.107,0.893,1.006,0.791,0.938,1.043,0.877,0.932,0.957,1.076 +XM_113696,0.939,0.961,0.978,1.062,0.896,1.149,0.972,1.145,0.995,0.935,1.126,0.884,0.975,1.035,0.888,0.976,1.007,0.991,1.085,0.928,1.006,1.008,0.828,1.06,1.012,1.104,1.067,1.144,1.351,1.021,1.154,0.975,1.118,1.011,1.043,0.926,1.024,1.018,1.011,1.123,0.932,1.121,0.931,0.954,1.085,0.986,1.0,1.108,0.873,1.072,0.987,0.881,1.033,1.084 +XM_113706,1.015,1.005,0.99,1.084,1.279,1.063,0.878,0.906,0.841,1.142,1.001,1.042,0.993,0.868,1.161,0.994,0.92,0.882,0.884,1.183,0.754,0.976,0.88,0.906,0.971,1.0,0.909,1.035,0.953,1.048,1.03,1.076,0.988,1.022,1.126,1.044,1.052,1.035,1.142,1.124,1.064,0.924,0.858,1.075,0.976,0.917,0.891,0.987,0.96,1.072,1.152,1.087,0.853,1.011 +XM_113708,0.965,1.175,0.999,1.018,0.97,0.986,0.858,1.022,0.945,0.877,0.975,0.882,0.912,1.001,0.911,1.051,0.938,0.789,1.138,0.931,0.966,1.127,0.977,1.048,0.969,0.879,1.163,0.964,0.941,1.073,0.919,0.941,1.219,1.061,1.025,1.038,1.08,0.999,1.038,0.978,0.967,1.065,0.811,1.034,0.933,1.051,1.011,0.972,0.982,0.939,0.915,1.011,0.952,1.178 +XM_113743,0.605,1.031,1.003,0.662,0.684,1.058,0.85,0.532,0.83,0.596,1.493,0.521,0.527,0.629,0.922,1.899,0.604,0.702,0.711,1.347,0.645,0.487,1.499,0.627,0.732,0.57,0.794,0.732,0.476,1.335,0.712,1.742,1.837,1.454,0.432,0.997,1.429,0.619,1.299,1.269,0.755,1.35,0.892,1.573,0.696,1.516,1.031,0.489,1.11,0.622,1.287,1.05,0.887,1.347 +XM_113776,0.93,0.977,1.188,1.13,0.865,0.944,0.893,0.936,0.968,1.061,1.142,1.005,0.82,1.008,0.994,1.034,0.997,0.834,0.866,0.984,1.009,0.967,0.926,1.032,0.919,1.141,1.034,1.023,0.809,1.029,0.997,0.952,0.884,1.047,1.026,1.075,0.97,0.895,1.021,0.962,1.089,0.991,1.058,1.001,1.096,0.907,1.075,0.994,1.029,1.072,0.839,0.957,1.03,0.893 +XM_113796,1.037,1.154,0.969,1.0,1.081,0.953,0.976,0.907,0.828,0.939,1.032,0.899,1.018,1.358,0.981,0.989,1.109,1.125,0.892,0.881,0.963,1.099,0.978,0.89,0.857,0.817,0.935,0.972,0.959,0.939,1.131,0.899,1.058,0.974,1.032,0.987,1.056,0.901,1.062,1.317,1.085,0.924,1.073,1.0,1.045,1.085,1.103,0.898,1.353,0.877,1.302,1.074,1.078,1.001 +XM_113825,1.014,1.032,1.014,1.058,1.0,0.93,1.654,1.245,1.273,1.066,0.911,1.014,1.011,1.07,1.045,1.085,1.063,0.98,0.918,1.359,1.097,0.922,1.048,0.956,0.824,0.944,0.991,0.989,1.226,0.965,0.875,0.931,0.824,1.083,1.103,1.086,0.927,1.072,0.966,0.928,0.947,0.997,1.142,0.886,0.945,0.934,0.889,1.023,1.113,0.859,0.872,0.975,0.976,1.281 +XM_113871,0.968,0.995,0.935,0.928,0.982,0.998,1.001,0.949,0.848,0.894,1.323,0.854,0.984,0.924,1.342,2.077,1.005,0.968,1.0,1.077,0.86,0.891,1.1,0.964,0.933,1.048,1.016,1.003,0.785,0.965,0.825,0.983,0.947,1.128,0.871,0.894,1.321,0.94,1.012,1.027,0.96,1.114,1.413,1.075,1.001,1.717,1.215,1.037,1.082,0.9,1.016,1.026,0.979,0.9 +XM_113900,1.038,1.108,0.85,1.033,1.064,1.001,0.923,0.945,1.073,1.015,0.996,0.871,0.97,1.061,0.947,0.94,0.909,1.138,0.96,1.109,1.116,0.857,0.96,0.977,0.982,1.12,1.039,0.888,1.171,0.963,0.918,0.861,1.079,0.94,1.167,1.091,0.997,0.93,0.945,0.989,0.956,1.056,1.116,0.838,1.084,0.926,0.932,1.032,1.157,0.93,0.987,1.041,0.992,1.044 +XM_113912,0.978,0.985,0.925,1.172,1.171,1.074,0.856,1.071,1.031,1.04,1.081,1.088,0.87,1.042,1.018,0.954,0.979,0.945,1.046,0.985,1.083,0.962,1.136,0.981,1.067,0.953,1.087,0.976,0.906,0.956,1.013,1.172,1.118,0.984,1.051,1.042,1.004,0.994,1.008,0.964,0.976,1.212,0.803,0.985,1.022,1.066,0.922,0.982,1.064,1.024,0.993,1.013,0.925,1.049 +XM_113916,0.988,0.918,1.217,1.095,0.995,0.994,0.983,1.099,1.146,1.106,1.004,0.867,0.96,0.783,1.235,1.154,1.063,0.999,1.031,0.848,1.219,1.009,0.987,1.077,1.106,1.083,1.066,0.931,1.849,0.966,0.981,0.941,1.008,0.952,0.971,0.95,0.973,0.995,0.974,1.073,0.923,1.056,0.864,0.873,0.969,1.17,0.937,0.876,1.067,1.001,0.869,1.155,1.199,1.147 +XM_113925,0.952,1.194,0.81,0.961,0.819,1.133,1.016,0.974,0.937,0.934,1.216,0.919,0.949,0.872,0.931,0.992,0.87,1.0,0.858,1.044,0.978,1.008,0.942,0.919,1.136,1.014,1.025,0.905,0.961,1.223,0.97,1.449,1.31,1.192,0.85,0.918,1.058,0.964,1.051,0.933,0.978,1.068,0.863,1.026,1.038,0.98,0.855,0.92,0.899,0.939,0.929,0.902,1.11,1.076 +XM_113950,0.762,0.665,1.126,0.718,0.914,1.034,0.538,0.945,1.511,0.734,0.647,0.868,0.665,0.555,1.085,1.798,1.015,0.879,1.512,0.788,0.543,0.918,0.838,1.183,0.454,1.126,1.077,0.867,0.345,1.342,0.905,0.719,1.451,0.964,0.77,3.297,0.615,0.895,2.986,1.269,1.107,0.584,0.576,1.872,0.954,0.909,0.914,1.021,1.563,1.087,1.064,1.161,1.17,2.266 +XM_113967,0.881,1.096,1.161,0.91,1.165,1.009,0.907,0.999,1.557,1.537,0.86,0.882,0.991,1.002,0.95,1.335,0.89,1.023,1.137,0.909,0.876,1.007,1.076,1.061,0.866,1.014,1.044,0.934,1.34,1.04,1.161,1.045,1.439,0.999,0.896,0.92,0.92,0.933,1.073,0.872,1.171,0.889,0.992,1.077,1.022,1.012,0.983,0.799,0.821,1.196,0.919,0.957,0.956,1.09 +XM_113971,1.023,0.992,1.082,1.072,0.976,0.984,0.863,1.027,0.996,1.03,0.928,1.126,0.977,0.804,1.051,1.002,1.005,0.849,0.978,0.997,0.947,1.02,0.975,0.975,1.036,1.091,1.05,0.983,1.056,1.093,1.118,0.982,0.999,0.972,0.976,1.011,0.932,0.919,1.041,0.997,1.039,0.961,0.916,0.873,1.024,0.943,0.997,1.108,0.907,0.932,0.956,1.024,0.986,1.034 +XM_113978,0.978,1.075,1.009,0.856,0.852,1.131,1.008,0.826,1.094,1.051,0.964,1.01,1.017,0.86,0.864,0.992,0.978,0.997,1.081,0.883,1.078,1.078,0.936,1.094,1.093,0.893,1.142,1.009,0.85,0.977,0.997,1.098,1.041,1.081,0.883,0.886,1.017,1.019,1.035,1.012,1.081,1.067,0.809,1.017,0.919,1.018,0.993,1.089,0.997,1.059,1.039,0.964,0.919,1.07 +XM_113991,1.117,0.975,1.026,0.984,0.919,0.996,1.136,1.155,0.992,0.901,0.921,0.934,1.066,1.025,0.926,1.029,1.018,0.98,0.964,1.053,1.015,1.039,0.979,0.888,0.994,1.108,1.08,1.039,1.034,0.908,1.024,1.01,1.019,1.026,1.057,1.056,1.139,1.073,1.013,0.999,0.949,0.998,0.96,0.977,0.978,1.008,1.045,1.062,1.0,1.056,0.999,0.88,0.911,1.0 +XM_114000,0.938,1.071,0.991,1.053,0.93,1.078,1.116,1.047,1.244,1.05,0.785,0.981,0.984,1.008,0.765,1.17,0.914,1.062,0.983,1.104,0.839,0.943,1.09,0.983,1.081,0.945,0.933,0.862,0.92,1.075,1.002,0.955,1.101,1.114,0.869,1.123,0.999,1.066,0.978,1.229,0.956,1.057,1.086,0.989,1.044,0.963,1.156,0.964,1.095,0.955,0.924,0.991,1.124,1.011 +XM_114002,0.987,1.04,1.007,0.919,0.908,1.023,0.677,0.858,0.93,0.925,0.843,0.843,0.883,0.707,0.886,1.053,1.133,0.804,0.985,0.991,0.942,1.128,1.355,0.979,1.027,0.984,1.167,0.796,0.647,1.131,0.923,1.148,1.476,1.127,0.685,1.006,0.9,0.841,1.28,1.165,0.998,0.973,0.808,1.38,1.167,0.896,0.893,0.967,0.858,0.943,1.021,0.944,0.975,1.356 +XM_114047,1.018,1.228,0.912,0.953,0.961,0.919,1.157,0.935,1.1,1.036,0.826,1.079,0.989,0.834,1.056,1.005,1.073,0.999,1.074,0.994,1.067,1.085,1.011,1.03,0.993,1.03,0.956,0.888,0.733,0.843,0.905,1.047,0.952,0.925,0.944,1.044,1.057,0.962,0.918,1.002,0.931,0.956,1.287,0.93,0.971,1.086,0.976,1.083,0.966,1.079,1.056,0.997,1.024,0.993 +XM_114067,1.142,1.009,0.961,0.844,1.062,0.95,1.017,0.853,0.937,1.047,0.939,0.955,1.057,0.897,0.982,1.009,1.066,1.074,1.076,0.942,1.153,1.013,1.004,1.031,0.843,0.902,1.168,0.91,0.857,0.842,0.918,0.962,1.338,0.887,0.962,1.031,0.909,1.091,1.124,0.892,1.052,0.899,1.044,1.213,1.046,0.848,0.973,1.001,1.025,1.086,0.822,1.009,1.127,1.253 +XM_114087,0.94,0.924,1.171,0.811,1.032,1.003,0.673,0.896,1.024,1.055,0.963,0.941,0.8,0.67,0.92,1.211,1.134,1.039,1.342,0.888,0.942,1.154,1.049,1.23,0.797,1.09,1.146,0.699,1.335,1.111,1.057,1.045,1.212,1.05,0.696,0.944,0.894,1.026,1.414,0.806,0.952,0.971,0.803,0.979,0.887,0.841,0.82,1.362,0.992,1.181,0.988,0.783,1.155,1.223 +XM_114152,0.798,1.036,1.044,0.945,0.77,1.145,0.984,0.753,0.874,0.857,1.191,0.908,0.845,0.508,0.94,1.427,0.75,1.318,1.19,1.04,0.614,0.773,1.239,0.967,1.009,0.785,1.22,0.877,0.877,1.247,0.825,0.922,1.695,1.738,0.577,0.797,1.162,0.803,1.712,0.992,0.901,1.347,0.707,0.793,0.944,0.999,0.901,0.823,0.948,0.933,1.346,0.681,0.964,1.036 +XM_114166,1.081,1.007,0.855,0.985,0.907,0.888,0.825,1.111,0.986,0.9,1.085,1.058,1.075,0.94,0.758,1.095,0.895,1.014,0.885,1.109,0.965,1.098,0.897,1.042,0.955,1.006,0.867,1.0,0.728,0.926,0.915,0.927,0.915,1.013,0.945,1.026,0.949,1.032,1.206,1.031,0.929,0.94,0.84,0.929,1.046,0.878,1.111,0.956,0.993,1.038,0.985,1.06,0.861,0.881 +XM_114200,1.04,0.844,1.028,0.833,0.976,0.982,0.888,1.006,1.25,0.886,1.121,1.019,1.123,0.967,1.015,1.139,1.017,1.025,1.097,0.945,1.182,0.871,1.093,0.91,0.961,1.121,1.045,0.99,1.381,0.996,0.789,0.938,0.852,0.863,1.05,1.018,1.04,0.955,0.901,0.932,1.051,1.152,0.813,1.078,0.897,1.181,1.056,1.068,0.872,1.128,0.964,0.976,1.035,0.987 +XM_114222,0.934,1.008,0.981,0.952,0.99,0.922,1.011,0.975,0.887,0.885,1.022,0.996,1.013,1.042,1.317,0.866,0.961,0.901,0.933,1.041,1.017,0.973,0.937,1.018,1.042,0.948,0.963,0.998,1.412,1.003,1.0,1.11,0.807,1.06,1.061,0.97,0.943,1.058,1.171,1.104,0.916,1.025,0.889,1.043,0.999,1.207,0.846,1.167,0.93,1.028,0.99,1.005,0.903,1.099 +XM_114272,0.287,1.621,0.506,0.723,0.348,1.984,0.928,0.264,0.404,0.356,2.146,0.354,0.322,0.309,0.999,1.896,0.326,1.176,0.319,3.023,0.26,0.336,1.815,0.328,0.817,0.325,0.316,0.312,0.704,1.817,0.317,0.767,1.266,2.162,0.247,2.582,2.174,0.356,1.296,1.643,0.392,2.335,1.681,1.33,0.342,2.419,1.252,0.305,1.756,0.315,2.029,0.597,0.33,0.626 +XM_114297,1.001,0.962,1.051,0.976,0.918,1.058,0.999,1.131,0.915,0.899,0.845,0.969,0.979,0.841,0.984,0.938,0.909,0.947,1.133,0.981,0.981,0.904,0.975,1.007,1.177,0.822,0.946,0.854,0.971,1.013,0.784,0.901,1.232,1.077,1.095,0.956,0.889,1.205,1.025,1.025,0.976,0.986,1.195,1.008,1.036,0.649,1.077,0.965,0.991,0.86,1.122,1.016,0.946,1.606 +XM_114301,0.892,1.343,1.002,0.948,0.878,0.976,1.006,0.875,0.857,0.835,0.957,0.878,0.923,0.849,0.976,1.092,0.905,0.917,0.998,0.987,0.847,0.811,1.086,0.921,0.904,0.917,1.005,0.856,1.291,2.071,0.791,2.237,2.236,1.094,0.877,1.105,1.041,0.74,1.618,1.133,0.947,1.286,1.286,2.843,0.763,1.316,1.03,0.894,1.067,0.931,1.187,1.021,0.876,1.474 +XM_114303,1.078,1.0,0.997,0.798,1.093,0.966,0.78,1.107,1.078,0.948,0.95,1.02,1.075,0.931,0.864,0.983,1.016,0.913,0.959,0.829,0.957,0.943,0.773,1.082,0.883,1.066,1.196,1.158,0.51,1.014,1.215,0.829,0.996,0.898,1.125,1.07,0.941,1.113,1.061,1.076,1.087,0.851,0.904,0.949,1.007,0.808,1.004,1.018,0.986,1.105,1.015,0.899,1.016,0.848 +XM_114317,0.495,0.604,1.37,0.585,1.048,1.278,0.4,0.897,1.461,1.39,1.107,2.218,0.54,0.613,1.172,2.614,0.599,0.795,1.693,1.123,0.612,0.786,1.178,2.55,0.26,0.671,1.739,0.917,0.161,0.999,1.085,1.288,1.807,1.209,0.105,0.6,0.674,0.95,0.6,0.366,1.223,1.141,0.627,0.534,1.196,0.952,1.343,0.665,0.952,0.684,1.162,0.753,2.101,2.222 +XM_114355,0.922,0.86,0.926,1.055,1.0,1.093,1.197,1.207,0.882,0.881,1.778,0.894,0.928,1.239,0.988,1.777,0.885,0.976,0.961,1.2,0.868,0.997,0.968,0.889,0.896,0.799,0.927,0.872,0.949,1.471,0.784,0.874,0.95,0.977,1.005,0.902,1.135,0.945,1.247,0.824,0.829,1.038,1.732,0.947,1.008,1.624,1.237,0.88,1.096,0.862,1.271,0.95,0.876,1.859 +XM_114418,1.067,0.76,1.478,0.95,1.057,0.594,0.799,0.859,1.26,1.33,0.752,0.895,1.042,0.855,1.103,0.819,0.999,1.029,1.316,0.967,1.055,0.948,0.842,0.917,0.843,1.061,1.364,1.001,0.704,1.149,1.167,1.564,4.138,1.139,0.74,1.074,0.89,1.044,0.774,2.219,1.059,1.272,1.03,0.759,1.343,0.892,0.858,0.935,1.098,1.104,0.933,1.035,1.538,0.979 +XM_114430,1.028,1.218,1.071,0.997,1.071,0.962,1.026,0.938,0.985,1.324,1.033,1.029,1.054,0.907,1.178,1.093,1.019,0.972,1.032,1.034,0.901,1.096,1.097,1.148,0.929,1.034,0.993,1.136,0.898,0.956,0.904,1.142,1.402,0.874,0.937,0.905,0.9,1.115,1.186,0.854,1.048,0.88,0.924,0.993,1.043,1.035,0.913,1.191,0.924,0.955,0.974,1.025,1.037,0.914 +XM_114432,0.886,0.998,0.923,0.829,0.982,1.437,0.751,0.985,0.961,0.949,1.202,0.955,0.868,0.933,1.059,1.216,0.934,1.133,0.908,1.203,0.955,0.949,1.213,1.036,0.835,0.863,0.927,0.892,0.784,1.202,1.027,1.186,1.255,1.045,0.841,0.861,1.134,0.962,1.372,1.0,0.936,1.288,0.987,1.07,0.998,0.971,1.11,0.911,1.033,0.852,1.505,0.953,0.874,1.0 +XM_114447,0.902,1.02,0.892,0.993,1.093,1.006,1.04,1.158,0.991,1.086,1.13,0.975,0.908,0.922,0.927,0.935,0.965,1.013,1.065,1.054,0.931,0.989,1.121,1.067,0.937,1.001,0.985,1.072,1.107,1.086,1.047,0.96,1.011,0.976,1.087,1.018,0.862,1.049,1.091,1.078,1.055,1.122,0.866,1.055,0.912,0.96,1.081,1.079,1.062,0.92,0.941,1.023,0.968,1.002 +XM_114475,1.077,0.965,0.862,0.853,0.986,1.06,0.898,0.933,1.067,1.302,0.936,1.08,0.988,0.88,0.974,0.97,1.013,0.811,1.098,1.091,0.856,0.869,0.866,0.914,1.008,1.048,0.889,0.961,1.03,1.003,0.989,1.052,0.962,0.902,0.89,0.958,1.004,1.009,1.133,0.979,1.052,0.983,0.853,0.987,1.042,1.1,1.065,0.908,0.924,1.03,0.979,0.968,0.767,1.144 +XM_114481,1.017,1.016,0.883,0.991,0.943,1.167,1.053,0.995,1.016,1.083,0.88,1.115,0.967,0.935,0.99,0.955,1.099,1.041,1.023,0.993,1.04,0.968,1.125,1.007,1.097,0.882,1.05,1.029,0.974,1.071,0.981,0.847,1.071,0.915,1.087,1.049,1.137,0.943,0.942,1.078,1.105,0.963,0.788,0.876,1.055,1.076,0.949,1.016,0.879,1.076,1.035,0.98,1.067,0.912 +XM_114617,0.67,0.995,1.019,0.84,0.666,1.005,0.445,0.396,0.83,1.062,0.566,1.135,0.747,0.508,0.712,1.07,0.848,0.844,1.368,0.562,0.826,0.781,1.333,1.239,0.641,1.045,1.412,0.556,0.0309,0.785,0.639,1.502,2.953,1.432,0.0887,1.143,0.789,0.993,2.388,1.367,1.053,0.757,0.0418,2.163,1.193,0.787,0.911,0.885,0.924,1.121,1.047,1.029,1.336,1.875 +XM_114618,0.839,1.04,0.812,0.984,0.823,1.229,0.759,0.62,0.893,0.853,1.159,0.871,0.996,0.764,0.797,1.024,0.835,0.922,0.955,0.898,0.887,1.01,1.114,1.101,1.022,0.881,1.107,0.836,0.728,1.255,0.676,1.741,1.289,1.442,0.574,0.78,1.115,0.894,1.606,0.713,0.86,1.177,0.995,1.009,0.816,1.113,0.95,0.909,0.993,0.846,0.947,1.057,0.827,1.353 +XM_114619,1.01,1.031,0.957,0.833,0.995,0.992,0.964,1.132,0.955,0.907,0.849,0.927,1.028,1.259,1.224,1.119,0.992,0.936,0.947,0.901,1.019,0.978,0.972,1.017,1.041,0.997,0.944,0.961,1.027,1.069,0.946,1.01,1.013,0.936,0.987,1.246,1.116,0.988,0.982,0.879,0.919,1.073,1.003,0.902,1.245,0.946,1.09,1.112,1.191,1.147,1.121,1.07,0.97,0.973 +XM_114621,0.95,0.911,1.102,0.908,1.054,0.832,0.801,1.007,1.038,0.845,0.984,1.041,1.141,0.987,0.947,0.928,0.918,1.031,0.953,1.164,1.039,0.972,0.93,0.953,0.964,1.254,0.922,1.029,0.993,0.963,1.064,0.99,0.905,1.025,1.121,1.016,1.026,1.118,1.074,0.995,0.92,0.973,0.833,1.121,1.016,1.022,1.016,1.043,1.036,1.1,1.0,0.892,0.937,0.895 +XM_114723,1.131,1.311,0.864,1.076,0.961,1.1,1.046,0.949,0.884,1.135,1.05,1.118,0.994,1.024,1.306,1.029,1.065,0.904,0.976,0.872,0.993,0.936,1.138,0.886,0.937,0.895,1.023,1.097,0.932,1.068,0.997,1.001,0.883,0.887,1.222,1.099,0.952,0.987,1.003,1.022,1.034,0.841,1.389,0.983,0.977,0.922,0.992,0.937,1.079,0.984,1.04,0.784,1.013,0.911 +XM_114735,1.015,1.036,0.934,0.841,1.012,1.035,0.974,1.234,0.995,0.906,0.947,1.238,0.901,0.907,0.887,0.969,1.168,0.862,0.894,1.045,1.012,1.025,0.982,0.97,0.945,1.072,1.116,0.938,0.607,0.911,1.067,0.961,0.914,0.959,0.864,1.154,1.107,0.895,0.914,1.192,0.994,0.985,1.095,0.944,0.987,1.081,0.99,1.093,1.065,1.048,1.121,0.895,0.841,1.022 +XM_114973,1.036,0.94,0.928,0.969,1.029,0.967,0.941,0.794,1.053,1.108,1.124,0.916,1.028,0.824,0.901,0.928,0.95,1.065,1.127,1.144,1.025,1.141,0.899,1.005,1.178,0.896,0.908,1.062,0.891,1.056,1.061,1.106,0.957,0.941,0.992,0.973,1.001,0.992,1.267,1.113,1.178,1.144,1.112,1.071,1.015,0.963,1.048,1.046,0.911,0.954,0.972,0.88,0.942,0.983 +XM_115009,0.75,1.208,0.885,1.09,0.824,1.278,0.978,0.784,0.796,0.797,1.628,0.973,0.866,0.753,1.053,1.768,0.837,1.008,0.884,1.728,0.812,0.803,1.55,0.961,1.177,0.777,0.981,0.906,1.054,1.161,0.895,1.009,1.0,1.581,0.769,1.026,1.366,0.827,1.494,0.706,0.854,1.296,0.993,0.772,0.822,1.443,0.943,0.808,1.021,0.93,1.492,0.957,1.037,1.737 +XM_115092,1.03,0.945,0.942,1.085,0.878,0.956,1.227,1.139,1.058,1.114,0.88,0.962,0.948,0.948,0.916,1.03,0.843,1.066,0.965,1.205,0.962,0.909,0.913,1.141,0.863,0.996,1.054,0.92,1.012,0.947,0.966,1.068,1.029,0.86,1.092,1.123,0.994,0.961,0.875,0.971,0.923,0.994,1.239,1.29,0.993,0.995,1.163,0.981,0.906,0.935,1.057,0.872,1.016,1.094 +XM_115100,0.978,1.07,1.059,0.921,0.908,1.021,0.953,0.938,1.029,0.877,0.924,1.052,0.941,0.914,0.884,1.01,0.902,0.938,0.902,0.968,1.043,0.99,0.937,1.069,0.885,1.049,0.899,1.053,0.941,1.07,1.061,0.989,0.952,0.833,1.046,1.032,0.988,1.002,0.951,1.055,0.965,1.037,0.97,1.065,1.077,0.917,1.08,0.955,0.977,1.032,0.994,0.952,1.043,0.99 +XM_115306,1.024,1.105,1.197,1.146,0.997,0.934,1.09,1.172,0.954,0.875,0.953,0.96,0.995,0.98,1.162,1.041,0.967,0.889,1.032,1.12,1.021,1.121,1.288,0.979,0.99,1.026,0.902,1.099,1.166,1.081,0.934,0.847,1.057,0.907,1.297,0.99,1.016,0.966,1.085,0.963,0.982,0.979,0.929,1.138,1.034,0.986,1.182,0.975,0.88,1.149,0.947,1.088,0.882,0.916 +XM_115484,1.032,0.969,1.005,1.171,0.793,0.996,1.036,0.876,1.084,0.952,0.991,0.919,1.086,0.76,0.788,1.001,1.111,1.049,1.11,1.014,1.113,0.884,1.005,0.984,0.966,0.969,0.983,0.974,1.015,1.062,1.072,0.914,0.941,1.019,1.154,1.017,0.905,1.021,1.029,1.147,1.079,0.896,0.901,1.128,1.049,1.023,0.932,0.971,0.881,1.05,0.954,0.947,1.012,0.916 +XM_115715,1.04,1.058,1.034,0.858,1.082,0.923,0.947,0.944,1.142,0.948,1.063,1.12,0.898,0.912,0.85,0.948,1.047,1.061,1.179,1.067,1.001,0.899,1.148,1.007,0.918,0.94,1.0,1.12,0.912,0.961,0.975,1.041,0.931,0.955,1.041,0.973,0.92,1.167,0.952,1.008,0.931,1.023,0.879,0.993,1.013,1.016,0.942,1.034,1.046,0.979,1.028,0.918,0.848,0.933 +XM_115769,1.088,1.086,0.974,1.007,1.006,1.166,0.973,1.075,1.059,0.956,0.895,1.018,0.969,0.996,0.952,0.965,0.901,0.864,1.023,1.086,1.0,0.944,1.021,0.965,1.077,0.848,0.992,1.076,0.825,0.972,1.023,1.06,0.969,0.992,1.083,1.001,1.003,0.996,1.03,0.959,0.996,1.043,1.129,1.044,1.087,0.824,0.914,0.973,1.064,0.973,1.023,0.919,1.079,1.09 +XM_116036,0.989,1.039,1.194,0.88,1.0,0.981,0.984,0.858,1.07,0.956,0.987,1.105,1.13,0.848,0.936,1.02,1.056,0.914,1.026,0.954,0.998,1.008,1.068,1.022,1.061,1.068,0.959,1.134,0.775,0.985,1.171,1.053,1.169,0.927,0.997,0.985,0.988,1.02,0.946,0.803,1.053,0.824,0.938,0.945,0.994,0.988,1.18,1.117,1.076,1.169,1.036,1.053,0.902,0.926 +XM_116497,1.036,1.105,0.922,0.886,1.007,1.046,1.066,0.998,1.003,0.991,0.924,0.853,1.005,0.906,0.875,0.893,1.028,0.851,0.831,0.953,1.04,0.872,0.967,1.007,0.923,0.965,1.101,0.873,0.941,1.059,0.842,1.067,0.955,1.078,1.022,0.973,0.9,1.084,1.151,1.058,0.916,0.989,0.737,0.965,0.945,0.979,0.97,1.024,1.104,0.866,1.11,0.873,0.887,1.003 +XM_116623,0.986,0.979,1.04,1.117,1.088,1.106,1.078,1.035,0.886,0.901,1.151,0.88,0.977,0.959,1.334,0.908,0.924,1.008,0.918,0.845,1.177,1.095,1.109,1.044,0.993,0.836,0.877,0.969,0.949,0.949,1.109,1.033,1.011,0.979,1.111,1.052,1.02,1.015,0.928,0.941,0.872,1.167,0.959,0.903,1.018,0.913,0.855,0.9,1.014,0.976,1.136,1.135,1.156,0.957 +XM_116816,0.796,1.634,0.966,0.91,0.847,0.786,0.798,0.666,1.034,1.106,0.9,0.839,0.805,0.819,0.909,1.14,0.974,0.855,1.02,1.194,0.903,0.827,0.918,1.167,0.926,1.01,1.305,0.845,0.559,0.919,0.804,1.908,1.734,1.168,0.645,2.845,0.756,1.031,1.302,1.497,0.952,1.566,0.585,1.318,1.589,0.991,1.0,0.867,0.866,0.935,0.801,1.098,1.145,1.37 +XM_116910,0.99,1.014,0.948,0.998,1.06,0.947,1.032,0.948,0.998,0.962,1.011,1.042,1.091,1.035,1.065,0.956,0.984,1.015,1.158,1.112,1.107,1.093,1.006,0.982,1.058,1.055,0.986,1.014,0.926,0.991,1.001,0.934,1.11,0.938,1.001,0.958,1.015,0.928,0.964,0.892,0.96,1.012,1.024,0.947,1.027,1.133,0.99,1.05,0.887,1.036,0.907,1.079,1.108,0.962 +XM_116933,1.056,0.996,0.848,0.979,0.87,1.11,0.96,0.866,0.989,0.935,1.001,1.047,0.994,1.034,0.949,0.991,1.075,1.066,0.885,0.982,1.01,1.016,1.159,1.008,0.994,1.047,0.904,0.97,0.753,1.033,1.043,0.958,1.0,0.918,1.116,1.193,0.989,1.09,0.979,0.974,1.003,0.98,1.024,1.119,1.027,0.984,0.968,1.053,0.964,1.054,0.963,1.019,0.915,1.048 +XM_116936,1.04,1.002,0.918,1.085,1.026,0.994,0.883,1.056,1.104,0.921,0.878,1.091,1.136,0.99,0.989,1.01,0.971,0.949,0.941,1.019,1.064,0.858,0.878,0.969,1.062,0.977,1.06,1.022,0.83,1.041,0.838,0.969,1.055,1.048,1.023,0.978,0.918,0.831,1.06,0.92,1.025,1.04,0.933,1.069,0.963,1.035,1.049,1.045,1.063,0.945,0.935,1.097,1.17,0.975 +XM_116970,1.004,0.921,0.974,0.875,1.034,0.978,0.877,1.025,0.869,1.078,1.006,1.001,0.87,1.027,0.781,1.007,0.955,1.014,0.958,0.944,1.007,0.895,1.044,0.986,1.004,1.014,1.019,1.191,0.98,1.067,0.988,0.975,0.779,0.937,1.041,1.027,1.028,1.034,1.022,0.994,1.11,0.932,0.974,0.916,1.052,0.946,1.193,1.172,1.062,0.977,0.98,0.957,1.012,0.935 +XM_116971,0.975,1.088,1.036,1.051,1.051,1.032,0.957,1.278,1.11,1.034,0.978,1.024,0.913,1.161,0.984,0.962,0.988,1.055,0.839,0.834,0.86,1.179,0.993,0.83,1.102,1.104,1.044,1.024,1.16,1.051,1.077,0.986,1.137,0.911,0.953,0.884,0.916,0.995,1.109,0.904,0.955,0.979,0.987,0.893,1.068,1.052,1.182,1.001,0.995,1.062,0.991,0.889,0.958,0.913 +XM_117030,0.99,1.012,1.119,1.007,0.889,0.992,0.968,1.088,1.048,1.12,1.009,1.263,1.109,0.842,1.076,0.948,0.843,0.81,0.928,0.952,1.058,1.105,0.972,0.955,0.978,1.017,0.959,0.985,0.876,1.068,1.0,1.009,0.854,1.006,0.972,1.0,1.122,1.195,1.09,0.898,0.955,0.886,1.054,0.959,1.077,0.973,0.997,0.987,0.987,0.862,1.095,0.819,1.006,1.12 +XM_117044,0.929,1.009,0.963,1.091,0.932,0.996,0.996,1.006,0.917,0.952,1.019,1.045,0.989,0.957,1.027,1.096,0.923,0.953,0.999,1.02,0.864,1.057,1.142,0.969,1.129,1.005,1.007,0.954,1.023,1.205,1.146,1.065,0.943,1.015,0.904,0.925,0.947,1.0,1.042,1.039,0.846,0.931,0.964,0.934,0.976,1.117,1.224,1.058,1.104,1.025,1.076,0.976,1.011,0.956 +XM_117100,0.854,3.798,0.766,1.35,0.753,2.068,2.178,0.886,0.851,0.83,1.205,0.903,0.838,0.786,0.855,1.033,0.81,1.452,0.79,1.61,0.764,0.79,1.109,0.812,3.452,0.827,0.84,0.772,1.485,3.873,0.754,1.938,1.317,3.855,0.829,0.928,1.996,0.743,1.531,0.981,0.955,1.465,0.8,1.083,0.871,1.163,0.861,0.851,0.927,0.847,0.999,0.807,0.78,1.016 +XM_117112,0.866,0.883,1.159,0.894,0.98,1.038,1.146,0.888,0.995,0.885,0.928,1.125,0.926,1.077,1.162,1.233,1.076,1.083,1.164,0.994,1.04,0.977,1.035,0.86,1.1,1.182,1.119,1.042,1.178,0.998,0.951,1.046,0.978,0.77,1.026,1.129,0.992,1.017,1.078,1.019,1.011,0.969,1.459,0.898,0.973,1.282,1.066,1.064,0.963,1.064,0.989,1.027,1.052,0.967 +XM_117117,1.004,1.028,0.953,1.016,1.026,0.982,1.062,0.935,1.023,0.848,1.019,0.926,1.02,1.077,0.823,0.972,0.947,0.968,0.938,1.233,1.126,1.091,0.939,0.962,0.995,1.049,1.019,0.956,1.004,1.072,1.051,0.946,0.894,1.007,1.158,0.916,0.991,1.015,0.963,0.934,0.767,0.923,1.02,0.999,0.98,0.859,0.956,1.027,0.867,0.918,0.882,0.901,0.978,0.898 +XM_117119,1.055,1.069,1.074,1.222,1.053,1.067,0.894,1.089,0.935,1.014,0.995,0.966,0.924,1.02,1.157,1.117,1.026,0.982,1.091,0.914,1.115,1.073,0.983,0.992,0.902,0.867,0.888,0.913,0.927,0.96,0.954,0.928,0.96,1.061,0.946,1.014,0.875,1.09,1.012,1.042,1.088,0.974,1.025,0.979,1.06,1.06,0.96,1.017,1.229,1.003,0.964,0.933,0.934,1.108 +XM_117144,0.954,1.005,1.02,0.898,0.86,1.073,0.761,1.035,0.924,1.183,0.964,1.016,0.954,1.218,1.074,0.951,1.029,0.887,0.878,1.081,1.029,0.991,1.141,1.122,0.967,1.073,1.046,0.952,1.329,0.958,0.881,0.997,0.95,1.017,1.107,1.025,0.894,1.09,0.986,1.046,0.911,1.017,1.101,0.85,0.951,1.0,1.079,0.982,1.098,1.044,1.011,1.065,0.899,1.036 +XM_117152,0.952,1.114,0.93,0.872,1.033,0.961,0.853,0.753,1.0,1.297,0.859,0.99,1.0,1.044,0.882,1.118,1.155,0.94,0.896,0.938,0.772,1.015,0.919,1.029,0.967,1.092,1.07,1.199,0.804,1.073,0.883,0.942,0.734,1.077,1.016,0.922,0.928,1.043,1.12,0.974,1.075,0.907,0.911,0.973,0.96,0.945,1.125,1.091,1.072,1.125,1.108,0.879,0.828,1.149 +XM_117171,1.05,0.965,1.033,0.999,0.965,1.095,1.21,1.085,1.004,1.157,0.957,0.92,1.038,0.905,0.965,0.972,0.951,0.999,1.004,1.057,1.106,1.048,0.939,0.899,0.975,1.017,0.865,0.978,1.029,1.008,1.009,1.015,0.941,1.118,1.141,0.979,0.964,0.976,1.052,0.903,1.065,1.035,1.1,1.006,1.237,0.899,0.989,1.031,1.011,0.943,0.882,0.989,1.021,0.934 +XM_117174,1.016,1.155,0.937,0.997,1.083,0.992,1.118,0.921,1.061,1.103,0.936,1.058,1.132,0.98,0.982,1.096,1.065,0.898,1.001,1.186,1.047,1.02,0.983,1.075,0.974,0.924,0.991,0.874,0.947,0.952,0.986,0.998,1.064,0.989,0.971,1.006,1.004,1.14,0.912,0.911,0.936,0.9,0.939,1.143,1.023,1.073,0.955,1.099,1.079,0.864,0.99,1.081,1.073,1.065 +XM_117190,1.032,0.958,0.92,0.91,1.033,1.002,1.017,1.088,1.089,1.013,1.109,0.906,0.986,0.909,1.018,0.917,1.219,1.139,1.078,0.979,0.961,1.019,0.948,0.999,0.922,0.989,0.819,0.945,1.254,0.965,1.177,0.979,0.989,1.062,1.01,1.083,1.041,0.998,1.025,0.967,1.112,1.117,0.977,0.995,0.84,0.927,0.879,1.042,1.144,1.173,1.088,0.981,1.103,0.89 +XM_117213,0.994,1.043,0.91,0.941,0.941,0.966,0.966,0.871,0.85,0.982,0.942,1.088,0.956,0.963,0.946,0.994,1.019,0.965,1.055,0.931,1.009,1.141,0.96,1.012,1.069,0.999,0.956,1.056,1.046,1.028,1.051,1.187,0.921,0.848,0.982,1.019,1.144,0.975,0.979,0.993,0.981,0.989,0.991,0.918,0.972,0.952,0.971,0.936,1.036,0.963,1.08,1.106,0.972,1.119 +XM_117224,0.918,1.157,1.094,0.87,1.041,1.082,0.901,1.041,0.972,0.969,0.964,1.01,0.888,0.817,0.833,1.039,0.981,1.025,1.044,0.975,0.994,0.909,0.939,0.994,0.985,1.056,0.988,0.972,1.185,1.022,0.959,1.046,1.068,1.042,0.991,0.999,0.935,0.836,1.106,1.08,0.872,1.036,0.84,0.966,1.031,0.983,0.858,1.086,0.903,1.092,0.955,0.89,0.941,1.001 +XM_117236,1.021,0.944,0.92,0.98,0.945,1.035,0.82,0.93,1.032,0.986,0.989,0.91,0.998,0.923,1.044,0.97,1.002,0.893,0.958,0.93,1.087,1.019,1.001,1.067,1.136,1.027,1.082,1.001,0.758,1.084,1.141,1.118,0.931,1.07,0.912,1.006,0.991,0.944,1.043,1.073,0.954,1.12,0.81,0.993,1.13,0.912,1.088,1.059,0.901,0.976,1.04,0.999,1.121,0.955 +XM_117257,0.989,1.015,1.004,0.968,0.996,0.992,1.029,1.075,1.133,0.952,1.185,1.018,0.944,1.143,0.906,1.033,1.086,0.873,1.012,1.069,1.05,0.973,0.979,0.963,0.972,1.063,0.913,1.014,0.962,0.841,1.199,0.827,1.147,0.961,1.15,1.109,1.217,0.963,1.008,0.881,1.045,0.938,1.008,1.009,0.931,0.92,1.029,0.925,1.029,1.151,1.001,0.964,1.157,0.938 +XM_117260,1.076,0.933,0.91,0.948,0.871,0.914,1.059,0.901,1.076,1.048,0.979,0.938,1.016,0.992,0.931,1.029,1.109,0.954,1.077,1.14,1.109,0.95,0.934,1.058,0.918,0.927,0.917,1.005,0.864,1.012,1.075,1.04,1.068,1.026,0.975,1.054,1.11,1.038,1.046,0.965,1.176,0.965,1.027,0.896,1.011,1.029,0.997,1.074,1.063,0.908,0.987,0.943,0.97,1.07 +XM_117294,1.013,0.866,1.127,0.846,0.949,0.847,0.956,0.877,0.952,1.156,1.059,0.956,0.89,0.802,1.077,1.009,1.039,0.984,1.138,0.872,0.877,0.953,1.107,1.088,0.809,0.963,1.167,0.984,0.928,0.911,1.054,1.102,1.117,0.957,0.889,0.908,0.908,1.118,1.061,1.017,0.95,0.988,1.222,1.284,1.147,0.97,1.009,0.934,1.053,0.95,1.041,1.016,1.045,1.15 +XM_117315,1.023,1.114,1.0,0.872,0.975,0.927,1.01,0.978,0.863,1.014,1.082,1.004,1.039,1.198,1.107,0.952,0.948,0.907,1.085,0.928,1.07,0.996,0.868,0.99,1.077,1.01,0.876,0.99,1.634,1.018,0.911,0.929,0.966,1.064,0.928,0.992,1.044,0.842,0.868,0.976,0.981,1.0,1.061,1.011,0.97,0.987,1.029,0.912,1.089,1.026,0.878,0.931,0.953,1.039 +XM_117345,0.924,1.005,0.959,1.028,1.126,0.999,0.956,1.086,0.915,0.896,1.05,0.977,0.955,0.875,1.028,1.049,0.98,0.888,0.804,0.97,0.911,0.881,0.991,1.001,1.007,1.011,0.953,0.887,1.18,1.067,1.137,0.955,0.854,1.129,0.932,1.065,1.196,0.947,1.012,1.124,0.875,1.06,1.173,0.937,1.079,1.084,1.054,1.069,1.057,0.989,0.9,0.97,1.036,1.0 +XM_117353,0.913,1.179,0.894,0.875,0.947,1.044,0.962,1.001,1.03,0.988,1.108,1.15,0.954,0.863,0.881,1.042,0.983,0.997,1.119,1.037,1.125,0.977,0.984,0.903,0.962,0.935,1.047,1.074,1.04,1.013,0.999,1.013,0.883,0.895,1.144,1.027,0.991,1.169,1.163,1.081,1.033,1.1,0.99,0.914,1.085,1.0,1.043,0.972,0.994,1.05,0.912,1.093,1.1,1.0 +XM_117354,1.009,0.988,0.931,0.99,0.919,1.019,0.849,1.046,0.955,1.05,1.037,1.047,1.054,0.842,1.012,0.953,0.945,0.884,0.977,1.025,1.044,1.005,1.065,1.004,0.991,0.925,0.953,0.957,0.844,0.99,0.958,0.935,1.089,1.006,1.022,1.043,0.92,0.886,0.983,1.031,0.997,1.051,0.816,1.055,1.03,1.107,0.962,0.967,0.937,1.053,0.913,1.063,1.024,0.955 +XM_117385,1.073,0.99,1.132,1.014,1.063,0.917,1.103,1.001,0.937,1.132,0.953,0.91,1.023,1.004,0.924,0.941,0.831,0.999,1.105,0.923,0.975,1.134,1.007,1.198,0.966,0.929,0.906,0.916,0.965,1.083,0.999,1.079,1.213,1.055,1.003,0.976,1.015,1.011,0.977,0.924,0.958,1.04,1.181,1.005,1.034,1.115,1.046,1.038,0.946,1.059,1.016,1.01,1.089,0.958 +XM_117477,1.098,1.082,1.006,0.98,1.072,1.07,1.021,1.015,0.938,1.042,1.082,0.94,0.994,1.117,1.104,1.063,0.95,0.842,0.961,1.042,1.21,0.986,0.914,1.013,0.906,0.874,1.02,0.873,1.029,0.94,1.079,0.946,1.087,1.135,1.107,1.051,1.086,1.085,1.065,0.845,0.908,0.985,1.097,0.994,1.022,1.0,1.026,0.931,0.948,0.999,0.964,1.183,0.969,1.073 +XM_117514,0.93,0.756,0.846,1.021,0.874,0.991,0.981,1.158,1.001,0.973,1.058,0.94,0.946,1.035,1.198,1.124,1.065,0.998,0.881,0.97,0.966,1.155,0.947,1.002,1.04,1.013,1.017,1.054,0.76,0.953,1.029,0.997,0.931,0.955,0.969,1.001,1.025,0.999,0.992,1.046,0.893,0.944,1.14,0.958,1.154,0.898,0.866,0.955,0.991,1.009,0.958,0.919,1.007,1.148 +XM_117548,0.831,1.236,0.9,0.909,1.007,0.885,0.789,0.905,0.805,1.133,3.06,1.057,0.986,0.806,1.272,0.925,0.894,1.009,0.973,0.962,0.874,0.832,3.039,0.983,0.946,1.013,1.046,0.926,0.809,0.845,0.924,1.432,2.127,0.981,1.104,1.967,1.084,0.987,2.773,1.184,0.873,2.045,1.107,2.556,0.899,0.948,0.956,1.143,0.93,0.922,1.787,2.069,0.891,3.907 +XM_117587,1.098,1.063,1.186,0.93,0.94,0.995,0.827,0.976,0.94,0.845,1.022,1.073,0.934,0.935,0.977,0.967,1.043,0.942,1.119,0.933,1.084,0.982,1.021,1.002,1.068,1.082,1.075,0.992,1.866,1.059,1.032,0.936,1.024,0.923,0.943,1.004,1.036,0.972,0.974,1.055,1.057,0.966,1.34,0.919,1.011,0.939,0.987,0.986,1.011,1.005,1.065,0.978,1.065,0.885 +XM_165534,0.742,1.09,1.02,0.857,0.919,0.982,0.806,0.806,0.89,1.08,0.938,1.038,0.947,0.768,1.056,1.073,1.002,0.764,1.092,0.8,0.867,0.798,1.181,1.086,1.064,0.973,1.157,0.791,0.83,0.829,1.018,1.242,1.729,0.984,0.686,1.249,1.079,0.866,1.487,1.185,1.178,1.249,0.884,1.947,1.336,0.98,0.954,0.853,1.102,1.005,1.037,1.173,1.067,1.795 +XM_165973,0.832,1.095,1.138,0.682,0.969,1.038,0.978,0.563,1.008,0.827,0.766,0.81,0.565,0.704,1.021,1.02,0.846,1.022,0.859,1.093,0.757,0.769,1.121,0.943,0.988,0.818,1.086,0.793,0.666,1.323,0.952,1.362,2.049,1.288,0.497,0.729,1.165,1.008,1.281,1.06,0.911,1.176,0.672,0.808,0.915,0.965,0.92,0.723,0.911,0.798,1.075,0.954,0.937,1.968 +XM_166086,0.929,0.897,0.868,0.893,0.892,1.023,0.984,0.89,0.999,1.032,1.002,1.122,1.046,0.891,1.029,0.978,1.001,1.08,0.798,0.946,1.03,0.978,1.144,1.043,1.031,0.943,0.945,0.995,1.1,0.949,0.902,1.046,1.073,0.95,1.001,1.006,0.994,0.937,1.133,1.005,0.949,1.009,1.086,1.005,1.081,0.966,1.091,1.201,0.868,1.105,0.929,0.924,0.996,0.916 +XM_166103,0.955,1.106,0.98,0.907,0.988,0.929,1.111,0.904,0.975,0.995,0.897,1.122,0.997,0.942,0.873,0.995,0.945,0.949,0.846,0.843,0.891,0.839,1.232,1.068,0.912,0.934,1.04,0.871,0.928,1.042,1.009,1.04,1.366,0.997,0.839,1.156,1.037,1.212,1.203,0.949,0.97,0.958,1.027,1.07,0.909,0.887,1.063,1.113,1.347,0.959,1.115,1.17,0.879,1.537 +XM_166110,1.045,1.081,0.888,1.086,0.9,1.0,0.814,1.003,0.977,1.126,1.015,0.91,0.993,0.818,1.132,1.152,0.83,0.955,0.959,1.033,1.024,0.983,1.173,0.915,1.025,0.89,0.844,0.937,0.803,1.242,0.838,0.871,0.945,0.909,1.044,0.911,0.868,0.946,1.042,1.014,0.735,0.909,0.962,1.451,1.0,1.019,1.119,1.002,0.991,0.879,1.006,0.871,1.061,0.829 +XM_166132,1.113,1.096,0.975,1.066,1.03,0.983,0.898,1.039,1.037,0.983,1.027,1.046,0.967,0.877,1.012,1.019,0.995,1.083,1.013,1.078,1.117,1.05,1.16,0.948,1.088,0.978,1.028,1.006,0.931,1.042,0.971,1.082,0.973,0.822,0.871,1.21,0.996,0.992,0.971,0.96,1.149,0.882,0.862,1.115,1.032,1.183,0.916,1.045,0.984,1.088,0.967,0.957,0.916,0.971 +XM_166164,0.887,1.201,1.08,1.018,0.989,0.994,1.012,0.84,1.057,1.03,1.073,0.825,0.823,0.822,0.825,1.28,1.0,1.013,1.185,0.957,0.709,0.894,1.085,0.966,0.909,0.871,1.048,1.005,0.913,1.168,0.913,1.262,1.139,1.314,0.694,1.199,1.057,0.832,0.921,0.765,1.14,1.001,1.026,0.932,0.959,0.892,0.797,0.773,0.904,0.965,0.986,0.836,1.002,1.284 +XM_166178,1.025,1.067,0.957,0.923,0.956,0.954,1.052,0.936,1.002,1.07,0.871,1.066,0.921,0.988,1.173,1.004,0.929,0.982,0.861,1.02,1.152,1.044,0.911,0.9,1.046,1.02,1.038,0.96,1.151,0.978,1.013,0.967,0.99,0.899,1.007,0.978,1.082,0.964,0.997,0.997,1.104,0.982,0.93,0.954,1.018,1.002,0.916,1.084,1.054,1.142,0.991,1.073,0.991,1.038 +XM_166201,0.933,1.059,1.073,0.986,1.0,0.872,0.757,0.736,1.137,1.05,0.834,0.921,0.929,1.061,0.899,1.093,1.064,0.936,1.001,0.842,0.978,0.92,1.317,0.911,0.912,0.938,1.319,0.822,0.705,0.867,0.92,1.097,2.117,0.958,0.762,1.621,1.04,0.907,1.431,1.219,0.944,0.949,0.706,1.53,0.955,0.969,1.028,0.909,1.165,1.127,0.912,1.023,1.154,1.614 +XM_166203,0.926,1.012,0.962,0.892,1.073,0.983,0.981,0.995,0.985,0.915,0.982,1.103,0.955,0.875,1.039,1.123,1.016,1.046,0.922,0.922,1.182,1.077,1.003,1.068,0.963,1.1,1.011,1.263,0.69,1.078,0.956,1.063,0.767,1.043,1.067,1.121,0.922,1.069,1.033,1.043,0.918,1.075,0.861,1.053,1.011,1.072,0.989,1.0,1.114,1.094,0.976,0.956,0.928,0.824 +XM_166213,0.921,1.248,1.063,1.022,1.006,1.06,0.89,0.861,0.923,0.924,1.144,0.915,0.967,0.857,0.934,0.971,0.933,1.083,0.958,1.197,0.976,0.914,1.106,0.967,1.032,0.951,1.01,0.93,1.055,1.177,1.051,1.03,0.932,0.899,1.071,0.884,0.973,1.129,1.194,0.994,0.99,1.109,0.788,1.173,1.059,0.989,1.07,0.939,0.973,1.035,1.022,0.897,1.075,0.853 +XM_166227,0.829,1.189,1.36,0.995,0.818,0.981,1.362,0.541,0.844,0.893,0.936,0.572,0.705,0.644,1.044,0.934,0.883,0.751,0.68,0.785,0.745,0.619,1.546,0.955,0.986,0.71,1.519,0.694,0.785,1.983,0.675,1.556,0.896,1.719,0.525,0.723,1.168,0.641,1.334,1.406,1.107,1.67,0.765,0.676,1.089,0.963,0.726,0.727,0.709,0.727,1.03,2.252,1.348,2.288 +XM_166254,1.093,0.937,1.056,1.019,1.113,0.91,0.945,0.905,1.001,1.043,0.939,0.984,0.917,1.226,0.931,0.908,0.911,1.144,1.082,0.955,0.906,1.013,1.041,1.042,0.961,1.0,1.11,1.086,0.912,1.046,0.812,0.992,0.995,0.998,1.103,0.966,1.039,1.002,0.957,1.07,1.106,0.939,1.019,1.025,0.887,1.168,0.98,1.0,0.97,0.846,1.002,0.975,1.224,0.844 +XM_166270,1.072,0.917,0.896,1.014,0.978,1.002,0.823,1.107,0.874,0.937,1.055,0.892,0.97,1.002,1.051,0.994,1.081,0.995,1.053,1.029,1.197,1.117,0.881,1.052,1.024,1.012,1.152,1.174,0.674,0.873,0.996,1.007,0.966,1.052,0.851,0.904,1.148,1.032,1.1,1.12,0.968,1.12,0.976,0.889,0.994,1.04,1.001,1.155,1.11,0.908,1.207,0.92,1.039,0.935 +XM_166276,0.807,0.924,1.022,0.878,0.987,1.2,0.51,0.525,1.192,0.876,1.453,0.736,0.728,0.767,1.024,1.808,0.967,0.958,1.53,0.739,0.74,0.79,1.133,1.074,0.765,0.965,1.442,0.898,0.496,1.13,0.962,0.986,2.611,1.377,0.43,0.747,1.088,1.01,1.424,0.612,1.183,1.124,0.812,1.153,0.924,1.092,1.057,0.7,1.261,0.904,0.978,0.65,1.063,2.738 +XM_166300,1.499,0.231,2.623,0.739,2.348,1.053,0.356,1.224,2.881,1.82,0.709,1.398,0.837,1.398,1.34,1.776,1.799,1.306,2.912,0.8,1.159,2.261,1.281,1.62,0.24,2.314,2.087,2.241,0.205,0.51,2.361,0.165,0.96,0.809,2.515,0.238,0.958,2.284,0.832,0.418,1.949,0.985,0.497,0.415,1.923,0.778,1.25,2.326,0.887,1.949,1.487,0.54,1.488,0.909 +XM_166320,0.986,1.057,0.987,1.033,0.909,1.057,0.929,0.982,1.049,0.974,0.935,1.013,1.072,1.102,0.91,1.082,1.031,1.082,0.854,0.908,1.134,0.941,1.082,1.056,1.049,0.926,0.946,0.881,0.904,0.988,1.0,1.096,1.011,0.967,1.006,0.98,0.911,0.929,1.008,0.915,0.892,1.044,0.921,0.965,0.995,0.999,1.088,1.079,1.027,0.868,0.892,1.207,1.02,1.037 +XM_166325,0.656,1.527,1.277,0.612,1.228,1.009,0.593,0.363,1.187,1.126,0.979,0.492,0.48,0.9,0.785,1.22,0.811,0.974,1.55,0.991,0.757,0.748,1.341,0.9,0.681,1.057,1.648,0.92,0.151,1.244,1.122,0.86,1.026,1.502,0.621,0.533,1.183,1.077,1.234,0.588,1.126,1.169,0.164,0.748,1.01,0.948,0.942,0.717,0.951,0.836,0.901,0.645,1.079,1.67 +XM_166346,0.774,0.765,1.067,1.069,1.009,1.128,0.743,0.667,1.064,1.035,1.072,1.353,1.088,0.573,0.642,1.176,1.057,1.351,1.579,0.849,0.642,0.962,1.029,0.924,0.862,0.967,1.247,0.834,0.504,1.009,0.737,1.491,1.656,1.293,0.37,0.96,1.072,0.763,1.745,1.028,1.198,0.898,0.709,1.669,1.019,0.9,1.154,1.066,0.863,1.034,1.0,0.9,1.115,1.425 +XM_166372,1.152,1.088,0.923,1.07,1.099,0.913,0.939,1.135,1.247,0.946,0.924,1.337,1.121,0.872,0.958,1.001,1.069,1.06,1.358,1.029,1.083,1.12,0.72,1.095,0.969,1.319,1.204,1.161,0.973,1.114,1.296,0.837,0.985,1.049,0.849,0.892,1.02,1.102,0.979,0.962,1.058,0.961,0.995,0.928,1.09,0.989,1.011,1.257,0.896,1.08,1.003,0.868,0.867,0.924 +XM_166376,0.866,1.116,1.275,1.0,1.08,0.875,0.739,0.867,0.825,1.02,0.874,0.822,0.847,0.85,0.862,0.882,1.133,0.829,0.907,0.881,1.032,0.858,0.987,1.012,0.895,0.953,1.549,0.788,0.639,0.954,1.108,2.489,1.226,1.165,0.765,1.346,0.84,0.952,1.419,3.187,1.031,1.285,0.784,1.23,1.186,0.766,0.889,0.847,0.74,1.073,0.791,1.233,1.32,1.656 +XM_166383,1.045,1.001,1.01,0.958,0.944,1.025,0.777,1.08,0.978,1.036,1.066,0.945,1.052,1.149,0.986,1.036,0.975,1.1,0.994,0.826,0.928,1.141,1.074,1.01,1.0,1.025,1.002,1.061,0.681,1.098,0.948,1.069,0.932,1.154,0.932,0.918,0.97,0.957,1.14,0.997,1.069,1.064,1.053,0.962,1.038,0.986,0.954,0.916,0.997,1.164,1.008,0.903,1.049,1.139 +XM_166420,0.934,1.039,0.89,1.02,0.95,0.858,0.949,0.944,0.971,1.033,0.926,0.944,0.998,1.199,0.961,1.087,1.069,0.965,0.984,0.986,1.099,0.976,1.031,1.048,1.054,0.956,1.073,0.867,1.358,1.042,1.06,1.144,1.005,0.949,1.111,0.933,0.98,0.925,0.971,1.577,1.046,0.925,1.273,0.983,1.012,1.038,1.033,0.965,0.924,0.911,0.847,0.989,1.19,1.077 +XM_166432,1.004,1.043,0.817,0.778,1.189,0.974,0.965,0.916,1.089,0.858,0.992,0.898,1.108,1.207,1.085,1.135,0.881,1.145,0.835,1.069,0.853,0.889,1.011,0.989,1.069,1.0,0.91,1.032,1.179,1.006,1.155,0.981,1.063,0.81,1.094,0.93,1.092,0.914,1.405,0.855,1.101,0.864,1.187,0.723,0.891,1.034,0.832,1.005,0.881,1.022,1.067,1.127,0.917,0.998 +XM_166450,0.663,1.165,1.066,0.62,0.7,0.973,0.604,0.399,0.815,0.652,1.009,0.568,0.456,0.705,0.963,1.169,0.783,0.73,0.588,1.484,0.447,0.583,1.326,0.73,0.832,0.639,1.108,0.689,0.473,1.326,0.71,2.297,1.79,1.376,0.621,0.852,1.334,0.795,1.146,1.182,0.782,1.542,0.891,1.143,0.549,1.64,1.089,0.535,1.198,0.64,1.363,0.689,0.648,1.917 +XM_166453,0.971,1.149,0.93,0.958,1.015,0.905,0.808,0.871,0.993,1.103,1.039,1.204,0.943,1.143,1.334,1.023,0.961,0.905,1.141,1.121,1.236,1.049,0.943,0.953,1.006,1.232,0.849,1.029,0.983,0.958,0.97,0.937,0.988,0.929,1.048,1.071,0.964,0.844,0.924,0.962,0.93,0.966,1.132,1.085,1.027,1.211,1.316,0.909,1.23,0.985,0.904,1.114,0.915,1.001 +XM_166479,0.646,1.192,1.392,0.641,0.907,1.097,0.689,0.643,0.972,0.764,0.854,0.835,0.692,0.775,1.058,1.213,0.734,0.889,1.003,1.467,0.6,0.763,1.284,1.103,0.706,0.643,1.175,0.833,0.475,1.302,0.882,1.613,1.84,1.56,0.455,0.943,1.114,0.917,1.208,1.145,0.982,1.604,0.656,0.933,0.79,1.116,0.93,0.667,0.959,0.709,1.212,0.726,0.829,1.66 +XM_166563,0.937,1.041,1.029,0.986,0.885,1.125,0.911,0.676,1.053,0.938,1.06,0.949,0.841,0.94,0.819,0.984,0.808,0.986,0.936,1.055,0.808,0.823,1.298,0.813,0.88,0.864,1.091,0.873,0.727,1.298,0.907,1.449,1.726,1.339,0.703,1.329,0.921,0.936,1.077,1.1,1.006,1.067,0.761,1.393,1.073,1.024,1.232,0.912,0.905,0.87,0.915,1.138,1.051,1.703 +XM_166659,0.924,1.003,1.038,1.041,1.107,0.914,1.075,0.828,1.027,0.855,1.03,0.994,0.965,0.929,0.993,0.934,0.876,1.067,0.962,0.958,0.873,0.939,0.949,0.884,0.975,0.983,0.993,1.151,1.249,1.101,0.993,1.002,1.087,1.102,1.136,0.995,0.832,1.021,1.164,0.898,0.989,1.064,1.224,1.122,1.108,0.974,0.928,1.211,1.226,0.915,0.917,1.116,0.942,1.097 +XM_166707,0.992,0.929,1.116,1.176,0.943,0.994,0.906,0.979,0.997,0.925,0.949,0.989,1.101,0.963,1.0,1.121,1.025,1.02,1.059,1.056,0.874,1.119,0.893,1.07,0.964,1.088,1.034,1.018,0.776,1.015,1.099,0.952,1.042,1.052,1.127,0.965,1.111,0.945,0.989,0.971,1.08,1.006,0.883,0.99,0.896,0.81,1.085,0.919,0.959,0.902,1.069,1.08,1.087,1.229 +XM_166757,1.067,0.967,1.112,1.011,0.993,1.134,0.8,1.022,1.045,1.001,1.006,0.991,0.992,0.996,1.13,0.97,1.0,1.104,0.983,1.061,1.013,0.896,1.019,0.995,1.16,0.931,0.988,1.071,0.902,1.135,0.998,0.984,0.932,1.108,0.954,0.995,1.098,1.041,0.897,1.178,0.939,0.981,0.967,0.891,0.944,1.011,1.153,0.99,0.992,0.963,1.175,1.0,0.987,0.976 +XM_166767,0.951,0.956,1.042,1.057,0.968,0.928,0.951,1.105,0.91,1.027,1.164,0.976,0.954,0.967,0.845,1.015,1.0,1.033,0.996,0.896,1.079,1.038,0.86,1.031,0.962,1.071,1.071,0.941,0.825,1.062,1.093,1.126,0.898,0.991,1.087,1.0,1.01,1.151,0.879,1.017,0.941,0.967,0.98,0.962,0.948,1.095,1.036,0.961,1.065,1.074,1.116,1.068,1.042,0.907 +XM_166776,0.961,1.002,1.06,0.932,0.938,0.936,0.925,1.051,0.901,1.076,0.934,1.104,1.16,0.939,1.073,1.268,0.827,0.94,1.114,1.212,0.935,0.911,0.971,0.788,0.996,1.007,0.971,0.946,0.937,0.978,1.12,0.901,0.955,0.981,1.102,1.063,1.024,1.009,1.023,0.992,1.225,1.186,1.168,0.91,0.959,0.999,0.925,0.895,1.11,1.045,0.915,1.007,0.898,0.803 +XM_166777,1.052,0.947,1.094,0.893,0.846,1.037,1.021,1.116,0.989,0.993,0.863,1.157,1.06,0.941,0.999,0.905,0.927,1.001,1.036,1.01,1.023,1.127,0.85,0.958,1.064,0.855,1.095,0.925,1.068,1.073,0.925,1.047,1.02,1.004,0.99,1.061,1.03,0.979,0.859,1.014,1.018,1.029,0.99,0.911,1.045,0.917,1.01,0.928,0.957,1.096,0.969,0.941,0.96,1.004 +XM_166780,1.043,1.062,0.909,1.086,1.213,0.833,0.934,0.817,1.03,1.012,1.062,1.039,1.173,0.952,0.973,1.065,1.091,1.158,0.999,0.887,1.01,0.997,0.882,1.093,1.034,0.905,0.982,1.026,0.783,0.965,0.895,1.028,0.908,1.106,1.095,1.0,0.958,1.085,0.965,1.025,1.099,0.943,0.997,0.959,0.943,0.997,1.005,0.962,1.065,1.154,0.941,1.016,1.149,0.924 +XM_166781,0.989,0.922,0.949,0.978,1.094,1.288,0.767,0.819,1.061,0.904,1.144,1.008,0.946,1.273,1.0,1.005,0.896,1.014,0.874,1.143,1.127,1.078,0.986,1.078,0.939,0.906,0.971,0.996,0.965,1.01,1.168,1.005,1.055,1.071,1.002,0.946,0.983,0.924,0.885,1.022,1.077,1.106,0.851,0.921,0.869,0.965,0.925,1.179,0.99,0.954,0.887,0.993,1.171,0.845 +XM_166782,1.008,1.084,0.951,0.994,1.229,0.95,1.1,0.955,1.169,0.991,0.982,1.086,0.974,1.084,0.853,1.13,1.06,1.156,1.051,0.941,0.954,1.032,0.99,1.085,1.019,0.937,0.964,0.976,1.065,1.021,0.905,1.046,0.819,1.065,1.181,1.12,0.972,1.018,0.946,1.101,1.067,1.007,1.083,1.035,0.919,1.037,1.066,1.227,1.005,0.931,0.955,0.95,0.981,0.996 +XM_166805,0.974,1.083,0.935,1.103,1.069,1.078,1.02,0.966,1.011,0.95,1.039,0.927,0.926,0.937,1.021,0.982,1.027,1.022,1.031,1.049,1.067,0.851,0.953,1.008,0.947,0.952,1.075,1.019,1.244,0.979,0.993,0.936,1.216,0.981,0.974,0.961,0.932,1.148,1.121,1.015,0.986,0.929,0.943,0.953,0.998,1.161,1.03,1.052,0.944,1.139,1.081,0.918,0.864,1.035 +XM_166813,1.161,1.191,1.098,1.143,1.154,0.953,1.158,1.219,1.037,0.922,0.963,0.867,0.971,1.064,1.028,1.076,0.909,1.15,0.958,0.822,0.769,0.997,0.843,1.058,1.223,0.845,1.001,1.033,1.175,0.923,0.899,0.85,0.949,1.045,0.916,1.005,1.215,0.929,0.991,0.993,0.844,1.043,1.049,0.772,0.929,1.105,1.01,0.971,1.213,0.911,1.143,0.934,1.109,1.1 +XM_166820,1.189,0.989,0.988,0.965,1.2,1.122,1.118,0.944,1.021,1.127,0.934,0.881,1.079,1.049,1.068,1.122,1.033,1.202,0.989,0.969,0.872,0.913,1.152,1.039,0.959,1.092,1.164,0.94,0.868,0.906,1.057,1.213,1.134,1.091,1.027,1.027,1.135,0.877,0.829,1.098,1.039,0.976,0.926,1.053,0.926,0.857,0.956,0.964,1.041,0.942,0.925,1.142,1.023,0.987 +XM_166823,0.93,1.065,0.818,0.918,0.957,0.962,1.166,1.193,1.115,0.978,0.961,0.984,1.1,0.898,0.907,0.876,0.954,0.966,1.054,1.12,1.091,1.243,1.081,1.004,1.168,0.974,1.057,1.031,1.205,0.998,1.11,1.022,0.989,1.031,0.989,1.054,0.967,1.006,1.007,0.964,0.983,0.909,1.263,1.021,1.175,0.958,0.968,1.135,0.974,1.117,1.053,1.015,0.936,0.852 +XM_166825,0.975,1.203,1.116,0.971,0.968,0.902,1.2,1.061,0.963,1.169,0.948,1.09,0.923,0.98,0.969,0.809,0.891,1.1,1.053,1.155,1.03,0.835,0.97,1.056,1.113,1.076,1.061,1.002,1.279,0.956,0.946,0.918,1.122,0.81,1.081,1.078,1.013,1.258,1.044,0.789,0.95,1.107,1.217,0.807,1.07,0.946,0.815,0.872,0.931,1.007,1.02,0.932,1.066,1.118 +XM_166831,0.928,0.856,0.96,1.013,1.051,1.013,1.046,1.074,0.89,0.836,1.094,1.068,1.01,0.933,0.835,0.928,1.14,0.983,1.139,1.037,1.035,0.869,1.059,1.16,1.162,0.965,0.92,1.005,1.036,0.996,1.03,0.959,1.01,0.876,0.885,1.165,1.134,1.01,1.089,0.898,0.878,1.034,0.864,0.924,0.837,1.23,0.943,1.088,0.999,1.013,0.851,0.929,1.188,1.057 +XM_166834,1.077,0.957,0.931,1.022,0.929,0.92,0.852,1.032,0.976,0.825,1.06,0.969,1.067,1.006,0.973,1.104,1.034,0.909,1.006,1.051,1.103,1.073,0.964,1.062,1.044,1.03,0.968,1.091,0.783,1.018,1.087,0.885,0.979,0.912,0.991,1.044,1.175,1.14,0.881,1.096,1.017,1.003,0.812,1.151,0.95,1.08,0.904,1.01,1.002,1.094,0.966,1.039,0.978,0.971 +XM_166835,0.946,0.837,0.965,1.114,0.947,1.045,0.899,1.047,0.981,0.914,1.101,1.143,1.089,1.007,1.165,1.116,0.983,1.064,1.055,1.049,0.894,0.873,1.023,0.957,1.13,1.043,0.98,1.06,1.139,1.025,0.949,0.859,0.963,0.865,0.956,0.983,0.966,0.924,0.89,0.938,1.065,0.905,1.022,1.078,1.063,0.978,0.968,1.063,1.236,1.062,0.974,0.953,1.082,1.024 +XM_166845,1.057,0.931,0.99,1.083,0.797,0.867,0.845,1.037,1.027,0.939,1.074,1.141,1.145,0.976,1.088,1.037,0.985,0.969,0.781,0.991,1.056,1.007,1.211,0.995,1.148,1.046,0.911,1.027,0.77,0.969,1.043,0.965,0.924,0.937,0.953,1.136,1.077,1.002,1.029,0.975,0.813,0.893,0.937,1.088,0.912,1.027,1.163,0.99,0.948,1.045,0.929,1.07,1.082,0.982 +XM_166856,1.026,1.056,1.007,1.235,0.966,0.911,0.861,1.07,0.926,1.064,0.932,1.068,1.032,1.019,0.843,0.864,1.057,1.046,1.014,1.151,0.803,0.878,0.953,0.871,1.025,0.915,0.89,1.088,0.986,0.972,1.035,0.885,0.953,1.001,1.161,1.037,1.069,1.105,1.14,1.125,0.975,0.912,0.996,1.056,0.93,1.166,0.923,1.014,0.857,1.025,0.902,0.956,0.93,0.969 +XM_166868,1.136,0.899,0.994,0.986,0.92,0.976,0.814,0.935,1.101,0.95,1.013,1.156,0.97,0.925,0.958,1.104,1.123,1.162,1.116,0.939,0.998,0.924,1.073,0.953,0.964,1.123,0.998,1.05,1.119,0.96,0.976,1.155,0.998,0.896,1.162,0.949,0.917,1.012,1.122,1.083,0.967,0.935,0.994,0.989,0.936,0.904,1.077,0.938,1.162,1.049,0.992,1.059,0.889,0.974 +XM_166869,0.957,1.109,1.11,0.862,1.073,1.008,0.861,0.728,1.084,1.015,0.995,1.131,0.911,1.091,1.255,1.131,0.913,1.144,0.911,0.912,0.982,0.923,1.385,0.982,1.087,1.021,0.973,0.989,1.319,0.978,0.941,0.978,1.002,0.968,1.035,0.9,1.256,1.061,0.905,1.109,0.982,0.998,1.569,1.01,0.965,1.051,1.188,1.063,0.94,0.906,1.15,0.969,0.964,0.934 +XM_166871,0.982,1.001,1.022,1.054,1.068,0.93,1.0,1.076,0.923,1.011,0.997,0.888,0.952,1.149,0.911,1.064,0.974,1.064,0.942,1.138,1.024,1.047,0.896,0.925,1.084,1.083,1.035,0.993,0.835,0.997,1.037,0.946,0.991,0.905,0.977,1.112,1.099,0.925,0.856,1.223,1.063,0.956,1.237,1.013,0.977,0.989,1.09,0.972,1.035,1.026,1.047,0.991,1.02,0.906 +XM_166872,0.961,0.871,0.897,1.178,0.859,1.147,0.892,0.953,1.004,1.054,1.087,1.192,1.137,0.937,0.995,0.924,1.111,0.983,1.131,1.053,1.108,0.953,1.129,1.057,1.093,0.876,0.979,1.276,1.135,0.994,1.151,0.999,1.121,0.956,0.859,0.975,1.014,1.063,0.983,0.959,0.931,0.964,0.873,1.062,1.121,0.97,1.001,0.956,1.032,1.249,1.039,0.996,0.949,0.922 +XM_166877,1.154,0.934,1.022,0.978,0.938,0.891,0.953,1.092,0.887,1.063,0.953,1.171,0.948,1.131,1.075,1.027,1.0,0.909,0.947,1.083,0.973,0.893,1.028,1.015,1.074,0.943,0.82,0.968,1.058,0.939,0.914,0.97,0.877,0.836,1.021,1.024,1.092,0.97,1.07,1.089,1.004,0.933,1.404,1.026,1.055,0.909,1.298,1.007,1.161,0.949,1.04,1.015,1.251,1.103 +XM_166878,1.092,1.072,1.014,1.054,1.212,0.991,1.306,0.909,0.933,0.93,1.01,1.103,1.06,1.074,1.065,1.064,0.997,0.827,1.082,1.098,0.951,1.04,0.945,0.97,1.012,0.976,1.032,1.067,1.147,1.145,0.969,1.085,0.966,0.952,1.153,0.955,0.789,1.176,0.876,1.056,0.948,0.842,0.836,1.072,0.984,0.893,0.926,0.97,0.987,1.065,0.876,0.961,1.027,0.985 +XM_166879,1.047,0.969,1.032,0.942,1.038,0.97,1.034,0.925,0.83,0.956,0.858,1.11,1.013,1.113,1.07,0.953,0.992,0.977,1.07,1.018,0.965,0.957,0.843,1.006,1.053,0.975,0.998,1.078,1.34,0.924,1.019,1.179,1.011,0.937,1.051,1.02,0.985,1.004,0.75,1.074,1.037,1.039,0.925,1.134,1.092,1.135,0.905,0.914,0.946,1.002,0.908,0.941,0.944,1.044 +XM_166898,1.073,0.988,1.032,0.999,1.006,0.947,1.046,0.992,1.008,0.894,1.039,1.0,0.913,0.925,0.863,0.932,0.917,0.973,0.925,0.979,1.011,0.893,0.767,0.869,0.993,1.072,1.163,1.108,0.733,1.085,1.0,1.054,0.829,0.888,0.991,1.018,0.975,1.132,1.114,0.998,0.943,1.008,0.945,1.001,1.107,1.041,0.963,1.012,1.061,0.893,0.977,0.939,1.02,0.921 +XM_166899,1.0,0.864,1.094,0.888,0.936,0.977,0.844,0.999,1.143,1.177,1.083,1.044,1.0,1.021,0.849,1.044,0.997,1.028,1.103,0.936,1.018,0.995,1.012,1.018,0.986,1.0,1.032,0.904,0.859,1.055,1.0,1.042,0.803,1.072,1.005,0.999,1.035,0.965,0.818,1.033,1.083,0.981,1.114,0.907,0.878,0.917,1.028,1.042,1.176,0.998,1.008,1.153,1.275,1.056 +XM_166903,1.038,0.853,0.955,1.15,0.896,1.098,0.878,1.01,1.191,1.11,1.147,1.135,0.847,1.077,0.978,0.97,1.008,1.024,1.0,0.99,0.919,1.18,0.975,1.002,1.143,1.117,0.942,0.963,1.007,0.987,0.945,1.121,1.017,1.024,1.042,0.896,0.996,0.875,0.919,1.05,1.015,0.981,1.139,1.165,0.982,0.873,1.019,1.024,0.821,0.948,0.953,0.863,0.991,0.948 +XM_166910,1.121,0.76,1.155,0.998,0.919,0.805,1.031,0.795,1.116,1.074,0.812,0.924,0.95,0.855,1.115,0.85,1.05,1.11,0.993,0.864,0.991,0.982,1.095,0.888,0.948,1.054,0.985,0.916,1.856,1.07,0.99,1.162,1.02,0.917,0.98,0.906,1.06,1.192,1.039,0.985,0.88,1.001,0.952,0.979,1.2,1.288,1.302,1.214,1.006,1.095,0.896,1.182,0.816,0.918 +XM_166912,1.01,1.018,1.005,1.047,0.857,0.918,1.025,1.064,1.004,0.881,0.979,0.943,1.063,1.051,0.983,1.023,1.156,1.027,1.206,0.816,1.144,1.066,1.016,1.154,0.915,1.022,1.062,1.001,0.882,0.934,0.976,0.891,0.976,0.938,1.096,0.944,1.061,1.075,0.915,0.926,1.083,0.911,0.774,1.015,1.002,1.052,0.954,0.96,0.827,1.15,1.064,0.989,1.101,0.941 +XM_166914,0.892,1.024,0.891,1.06,0.878,0.984,0.737,0.958,0.841,0.926,1.006,0.984,1.032,1.051,1.081,1.111,1.022,0.866,0.819,1.0,1.016,0.992,0.85,1.014,1.012,1.026,1.024,0.972,1.614,1.201,1.016,1.065,0.868,0.936,0.927,1.08,1.023,1.103,0.921,0.943,0.933,1.053,1.128,1.037,1.075,1.107,0.91,1.002,0.94,0.935,1.018,0.949,1.049,1.248 +XM_166915,1.083,1.033,1.088,0.99,1.049,1.074,1.05,0.997,0.838,1.021,0.972,0.956,0.984,1.224,1.052,0.846,1.03,1.024,0.939,0.997,1.16,1.007,0.898,0.938,1.03,1.011,1.108,1.057,0.823,1.074,1.054,0.897,0.947,1.051,1.047,1.112,0.948,0.988,1.106,1.038,0.969,0.919,0.88,1.03,0.923,1.024,0.96,1.022,0.975,0.999,1.002,1.036,1.025,0.876 +XM_166917,1.103,1.012,1.066,1.155,1.004,0.949,0.969,0.888,1.033,0.895,0.969,0.946,1.113,1.094,1.184,1.074,1.122,0.907,1.056,1.016,0.97,1.059,1.05,0.999,1.036,1.076,0.915,0.932,0.798,1.071,1.099,1.01,1.037,1.047,1.18,0.957,0.937,0.963,1.037,1.04,0.876,1.067,1.052,0.868,1.131,1.055,1.049,0.945,0.895,0.935,0.897,0.983,1.006,0.947 +XM_166918,1.101,0.971,0.991,1.001,0.931,1.098,0.947,1.018,1.029,1.054,0.954,1.074,0.9,1.025,1.038,1.142,0.913,1.02,0.827,0.879,1.073,0.877,1.105,1.031,0.986,0.952,0.891,1.038,1.34,0.926,1.148,0.861,0.894,0.93,1.073,1.07,0.978,0.909,1.001,0.983,0.873,1.1,0.999,0.993,0.949,1.008,1.101,1.09,0.884,1.043,0.971,0.966,0.862,1.024 +XM_166923,0.969,1.049,0.948,0.972,0.9,1.103,1.165,1.327,1.007,1.018,0.889,0.844,0.877,1.128,0.685,1.154,0.979,0.994,1.012,1.081,1.089,1.02,1.044,0.911,1.032,0.943,1.1,0.995,1.135,0.886,1.088,1.025,1.001,1.097,1.003,0.98,0.965,1.101,0.894,1.002,0.981,0.945,0.914,1.077,1.054,1.051,1.046,1.072,0.893,0.985,1.165,0.959,0.945,0.877 +XM_166926,1.061,1.085,1.05,1.018,0.895,1.029,0.854,1.114,0.985,0.978,1.107,0.979,1.039,0.998,1.091,0.975,1.047,0.948,1.061,0.984,1.26,1.144,0.926,0.979,1.184,1.001,1.063,1.338,0.981,1.068,1.071,0.952,0.994,1.072,0.875,1.044,1.086,0.928,0.925,1.055,0.85,0.958,0.992,0.947,1.143,1.012,1.003,1.053,0.974,1.021,0.924,1.105,1.053,1.114 +XM_166971,1.143,0.952,1.139,1.114,1.051,1.019,0.919,0.974,0.887,1.05,1.048,0.945,1.08,0.845,0.664,1.012,0.922,1.086,0.996,1.086,0.909,0.954,0.987,1.153,0.977,1.021,1.073,1.278,1.628,1.052,1.117,0.948,0.833,0.854,1.206,0.943,1.147,1.108,1.015,0.975,0.939,0.986,0.961,1.172,1.045,1.116,0.895,1.063,1.019,0.74,0.972,1.017,1.337,0.962 +XM_167044,1.017,0.951,0.982,0.811,1.131,1.025,1.167,1.113,1.081,0.979,1.027,1.08,0.96,1.285,0.969,0.916,1.038,0.972,0.975,0.863,1.013,1.096,1.032,0.985,1.04,0.963,0.993,0.973,1.133,1.063,1.059,0.911,0.951,0.982,0.895,0.984,1.129,1.005,1.028,0.981,1.05,1.048,0.883,1.015,0.949,0.916,0.93,1.002,0.961,0.882,1.04,1.027,0.941,0.948 +XM_167072,1.055,1.121,0.934,1.269,0.925,0.931,1.209,0.833,1.02,0.959,1.121,0.976,1.116,1.11,1.068,1.12,0.916,0.937,1.168,0.943,1.002,0.926,1.022,0.863,0.998,0.955,0.803,0.928,0.943,1.063,1.047,1.087,1.038,1.174,0.936,1.31,1.03,0.927,0.989,0.972,0.92,0.871,1.063,1.122,0.929,1.034,1.137,0.998,0.965,0.897,0.909,1.04,1.07,0.86 +XM_167149,0.98,0.838,0.979,0.891,0.936,0.967,1.149,1.273,0.987,0.825,0.918,1.02,1.072,1.105,0.994,1.0,1.142,0.971,1.0,0.981,1.111,1.054,0.93,1.014,0.955,1.213,0.928,0.891,1.017,1.02,1.03,1.014,0.921,1.089,1.093,0.883,1.191,1.092,0.989,0.984,0.951,1.077,0.965,0.817,1.057,1.004,0.904,1.06,1.004,0.944,1.047,0.948,0.9,0.951 +XM_167152,0.954,0.931,0.996,1.032,1.05,1.004,1.035,1.161,0.975,1.111,1.032,0.965,0.96,1.103,1.093,0.819,0.892,1.022,1.111,1.087,0.993,0.982,1.01,1.01,1.022,0.998,1.109,0.941,0.957,1.051,0.983,1.09,1.057,0.929,1.039,0.992,1.077,1.026,0.912,0.884,1.026,1.057,0.913,1.047,1.006,1.083,1.013,0.905,0.941,0.899,0.943,1.03,1.08,0.999 +XM_167562,0.943,1.19,1.079,1.028,0.882,1.037,1.25,0.93,0.915,0.838,1.063,1.078,1.125,1.11,0.911,0.89,1.007,0.989,1.184,1.0,1.036,1.262,1.117,1.031,0.966,0.997,0.973,0.932,1.061,1.066,0.932,0.948,0.933,1.091,1.174,0.94,1.03,0.915,0.961,1.043,1.143,1.083,0.964,0.96,1.063,1.023,0.948,0.975,1.01,1.138,1.133,0.951,0.959,0.871 +XM_167570,0.802,1.012,1.67,0.808,1.205,1.277,0.986,0.634,1.163,1.191,1.087,0.924,0.642,0.962,0.911,0.982,1.083,1.239,0.841,1.423,0.664,0.925,0.972,0.974,0.782,1.144,1.133,0.983,0.477,1.348,0.963,1.823,0.928,1.217,0.544,1.829,0.901,1.497,1.216,0.855,1.381,1.178,0.466,1.014,1.164,0.854,0.978,0.826,0.672,1.184,1.02,1.081,0.797,0.674 +XM_167593,1.101,0.948,1.012,0.981,0.923,1.063,0.979,1.017,0.968,0.956,0.944,1.088,1.024,1.088,0.951,0.998,0.958,1.013,1.028,0.969,0.94,1.075,0.974,0.993,1.009,0.938,0.991,0.998,1.0,0.938,0.985,1.01,1.0,0.969,0.975,0.926,0.995,1.045,0.994,1.079,1.003,1.048,0.934,1.01,0.994,1.005,0.905,1.091,0.907,1.022,0.972,0.999,1.003,0.91 +XM_167629,0.98,0.909,1.147,0.979,1.04,0.968,0.761,0.975,1.098,0.971,1.143,1.137,0.979,0.831,1.058,1.014,1.019,0.969,1.011,1.003,0.972,1.0,1.017,0.897,1.142,1.071,0.967,0.958,1.553,0.935,1.005,0.944,0.906,0.936,1.009,1.0,1.061,0.978,0.959,1.023,0.988,1.102,1.054,1.062,1.018,0.902,0.964,1.047,1.032,1.014,0.933,1.056,1.031,0.997 +XM_167709,0.309,2.048,0.478,0.778,0.335,1.844,0.774,0.341,0.512,0.354,2.242,0.34,0.306,0.311,1.387,2.314,0.304,0.91,0.332,2.503,0.271,0.441,2.769,0.436,0.806,0.408,0.486,0.337,0.704,2.164,0.426,2.726,1.798,1.939,0.234,0.865,2.226,0.463,1.347,0.59,0.432,2.231,1.709,1.288,0.474,2.664,0.883,0.341,1.677,0.433,2.608,0.493,0.458,1.904 +XM_167711,1.015,0.898,0.94,0.89,0.881,1.163,1.102,0.888,0.872,1.04,1.066,0.966,0.945,0.915,1.062,1.193,0.993,0.957,0.951,1.162,0.916,0.919,1.463,0.883,0.945,0.97,0.86,1.04,1.004,1.2,0.92,1.135,1.076,1.15,0.913,0.933,1.032,1.125,1.086,0.943,0.995,1.341,0.8,0.941,0.946,0.898,1.005,0.876,1.009,0.902,1.424,0.995,1.07,0.976 +XM_167745,1.05,0.961,0.963,0.981,1.018,0.993,0.961,0.853,0.961,1.164,1.028,1.135,0.918,1.043,1.102,0.995,1.024,1.033,0.918,0.915,1.098,0.987,0.921,0.986,0.963,1.034,0.935,0.99,0.774,0.958,0.948,1.144,0.887,1.007,1.11,0.968,0.963,0.994,1.041,1.091,1.094,0.983,0.879,1.013,1.0,0.959,1.044,1.062,0.927,1.074,1.166,0.977,0.962,0.905 +XM_167867,1.014,0.895,1.029,1.005,1.03,0.997,1.053,1.001,1.134,1.107,0.938,1.028,1.087,1.027,0.959,1.089,1.098,1.001,1.12,0.993,1.036,0.908,1.052,0.976,1.036,1.162,0.909,1.078,0.931,0.92,0.983,1.11,0.994,0.97,1.062,0.984,0.962,0.927,0.961,0.979,0.977,0.993,0.954,1.121,1.017,1.022,1.063,0.99,0.924,1.086,0.939,1.134,1.031,1.07 +XM_168030,0.743,1.065,1.577,0.811,0.768,0.975,0.755,0.698,1.03,0.869,0.823,0.699,0.753,0.939,0.932,1.186,1.117,0.802,1.116,1.038,0.76,0.771,1.109,0.776,0.901,0.875,1.033,0.891,0.737,1.031,1.198,1.764,1.839,1.305,0.896,0.939,0.967,0.963,1.091,1.035,1.057,1.153,0.984,0.905,0.879,0.749,1.057,0.792,0.697,1.077,0.961,1.011,1.177,2.178 +XM_168048,0.891,0.974,1.005,1.009,1.033,0.959,1.134,0.899,1.12,1.068,1.027,0.912,0.999,0.93,0.994,1.193,0.969,1.036,0.971,0.959,0.914,0.839,0.994,1.012,1.053,0.923,0.953,1.09,1.212,0.948,0.933,1.058,1.176,0.883,1.12,1.073,1.073,1.019,1.034,1.008,0.897,1.019,1.075,1.137,1.024,1.024,0.97,0.943,0.922,0.985,0.991,1.061,1.004,1.013 +XM_168053,0.988,1.002,0.86,1.05,1.057,0.878,0.848,0.805,1.043,1.108,1.151,0.991,0.919,1.04,0.986,1.381,1.014,1.026,0.949,1.296,0.994,1.171,1.127,1.029,1.105,1.028,0.92,0.947,0.902,1.061,0.964,1.065,0.857,0.912,1.084,1.027,0.984,0.916,1.079,1.02,0.958,0.944,1.139,1.058,0.976,1.115,1.116,0.94,1.026,0.992,1.02,0.898,0.914,0.954 +XM_168055,1.098,0.947,1.057,1.013,0.876,0.985,1.007,1.209,0.965,0.93,1.096,0.917,0.946,0.993,1.061,1.021,0.888,0.859,1.158,1.003,1.097,0.913,0.887,0.917,1.037,0.954,0.938,0.875,0.817,1.009,0.808,1.025,0.882,1.095,1.0,1.14,1.05,0.904,0.845,1.163,0.892,0.929,1.164,0.99,0.946,0.955,1.037,0.983,0.845,0.973,1.044,0.96,1.041,0.969 +XM_168060,0.898,1.053,0.985,0.977,0.817,0.996,0.896,0.692,0.886,0.97,0.985,1.075,1.008,0.888,0.895,1.205,0.992,1.017,0.923,0.985,0.869,0.892,1.17,0.927,0.983,0.939,0.902,0.794,1.166,1.202,0.935,2.437,1.114,1.141,0.829,0.958,1.152,0.853,1.032,1.069,1.036,1.113,1.104,1.121,0.987,1.148,1.099,0.846,0.789,0.854,1.088,1.137,0.947,0.964 +XM_168073,1.147,1.014,0.993,0.968,1.084,1.031,1.026,0.888,0.982,1.102,0.909,1.117,1.002,0.784,1.145,0.959,1.091,0.943,1.073,0.997,0.988,1.049,1.114,1.201,0.967,1.232,1.114,1.083,0.974,0.965,1.073,1.043,0.94,0.978,0.956,1.059,0.902,0.947,1.025,0.933,1.059,0.864,1.037,0.947,1.122,1.064,1.481,0.969,0.96,1.621,1.05,0.918,1.108,1.019 +XM_168093,0.979,0.944,0.988,0.916,0.984,1.03,1.028,1.001,0.98,0.867,1.339,0.895,1.07,1.214,1.007,0.965,0.938,0.942,0.989,1.065,1.044,0.926,1.137,1.027,1.084,1.042,1.02,0.999,1.09,1.543,0.957,0.905,1.098,1.073,0.969,1.074,0.959,0.891,0.88,0.99,0.922,1.044,0.928,0.897,0.942,1.099,0.953,1.024,0.994,1.024,0.958,0.985,0.842,1.223 +XM_168137,0.981,0.969,0.954,0.998,0.938,0.939,1.081,0.972,1.005,0.906,1.033,1.007,0.94,1.036,0.901,0.882,1.099,0.929,0.944,0.982,0.909,1.066,0.897,1.164,1.02,1.075,0.905,1.024,0.935,1.051,1.081,1.017,0.868,0.969,1.046,1.034,0.969,0.967,1.035,1.032,1.064,1.096,1.278,0.927,0.952,0.833,1.014,1.007,0.977,1.068,0.926,0.909,1.027,1.015 +XM_168215,0.926,1.159,1.023,0.926,0.98,1.047,1.005,1.078,1.036,1.107,0.916,0.979,1.029,1.121,0.908,0.906,1.109,0.91,0.975,1.011,1.013,0.944,1.089,1.137,0.992,0.908,1.085,1.108,0.793,0.965,0.971,0.999,1.212,0.849,0.971,0.999,0.966,1.035,0.8,1.028,1.067,1.101,0.979,1.003,1.016,0.99,0.95,0.92,0.985,1.067,1.038,1.037,1.019,0.918 +XM_168220,1.087,0.963,1.195,0.91,1.0,0.958,0.931,1.197,0.987,1.055,0.871,0.956,1.045,1.067,0.911,0.957,1.012,0.992,1.01,0.9,1.039,0.917,1.026,1.126,1.075,1.007,1.095,0.975,1.038,0.959,1.045,1.075,0.951,0.823,1.171,0.983,1.02,1.074,1.024,0.988,1.02,0.96,1.231,0.924,0.913,1.053,0.961,0.995,1.021,0.952,0.982,0.897,0.96,1.056 +XM_168302,0.72,1.117,1.102,0.698,0.927,1.008,0.536,0.557,0.965,0.734,1.003,0.464,0.616,0.831,0.987,1.108,0.692,0.847,0.813,1.201,0.594,0.462,1.252,0.774,0.826,0.919,0.91,0.854,0.701,1.836,0.86,1.105,1.006,1.588,0.497,0.549,1.053,0.774,1.257,0.983,0.975,1.314,0.712,1.387,0.701,1.03,0.777,0.612,0.812,0.801,1.046,0.924,0.582,0.787 +XM_168348,1.075,1.067,0.974,0.998,1.038,0.957,0.991,0.966,0.993,1.011,1.106,0.884,1.112,1.015,0.947,1.003,1.037,0.968,1.133,1.035,1.119,0.956,0.885,1.027,1.02,1.033,1.007,0.948,0.949,0.963,1.033,0.938,1.005,0.927,1.013,1.008,0.977,1.033,1.145,1.116,0.946,0.997,0.929,1.095,0.919,0.989,0.888,1.165,0.919,1.002,1.101,1.002,0.96,1.04 +XM_168371,0.946,0.972,0.961,0.902,1.135,0.941,0.972,1.115,1.06,1.018,0.889,1.049,1.005,1.031,0.892,1.017,0.856,1.16,1.053,1.012,0.944,1.086,1.005,0.942,0.945,1.033,0.878,0.872,0.849,1.098,0.944,0.948,0.971,0.942,0.936,1.05,1.039,0.99,0.987,1.025,1.111,1.046,1.195,1.042,0.981,1.064,0.907,0.998,0.869,1.002,1.07,1.03,1.044,0.93 +XM_168382,1.035,0.985,1.075,1.111,0.957,0.975,1.052,0.855,1.038,1.023,1.031,0.967,1.03,1.177,1.152,1.004,0.951,0.911,1.023,0.957,0.951,1.017,1.044,1.082,0.999,0.867,1.001,1.015,1.085,0.998,0.974,0.932,0.943,0.853,1.063,0.972,0.988,0.937,0.918,0.943,1.062,1.07,1.069,1.063,1.058,0.966,0.983,1.065,0.872,0.992,0.978,1.16,0.995,0.976 +XM_168431,0.977,0.986,1.008,1.041,1.005,1.059,0.971,1.169,1.008,0.941,1.014,0.97,1.006,0.932,0.954,0.991,0.94,0.833,0.994,1.008,0.884,1.078,1.051,1.018,1.013,0.91,0.932,0.954,0.852,1.083,0.923,0.953,1.098,0.816,1.005,1.098,0.993,1.011,0.938,1.165,1.161,0.964,0.926,0.937,0.975,0.969,1.046,0.941,0.952,1.023,0.946,0.912,1.024,1.023 +XM_168432,1.031,1.162,1.008,0.976,0.924,1.067,0.914,1.16,0.984,1.056,0.987,1.012,0.94,1.062,0.831,1.018,1.124,1.067,0.887,0.981,0.988,0.984,1.064,1.022,1.054,1.003,0.986,0.969,0.996,1.071,0.999,0.911,1.062,1.124,1.118,0.915,0.951,0.945,0.933,0.976,0.976,0.924,1.08,0.91,0.999,1.067,1.079,1.041,1.022,1.107,0.999,1.014,1.067,0.969 +XM_168583,1.083,1.087,0.916,1.139,0.976,1.026,1.118,0.896,0.942,1.09,0.94,1.108,1.08,0.881,0.986,1.104,0.955,1.04,1.014,1.266,0.877,0.962,0.972,0.866,1.079,0.923,1.008,0.955,1.34,0.936,0.921,0.96,1.075,0.972,0.918,0.965,1.165,0.929,1.177,1.044,1.047,0.921,1.031,0.917,1.035,1.106,1.015,1.035,0.942,0.944,1.057,1.023,1.042,1.057 +XM_168585,0.948,0.985,1.129,0.977,0.87,0.937,0.943,1.103,0.868,0.803,0.884,0.858,1.25,1.266,1.155,1.067,1.048,1.223,0.93,0.938,0.874,1.203,0.861,1.002,0.915,1.02,0.994,1.062,1.269,1.035,0.939,0.935,1.187,0.94,1.062,1.058,1.049,1.134,1.193,0.936,0.922,1.101,1.071,0.898,0.934,1.104,0.93,0.992,1.059,1.061,1.08,0.988,1.094,1.215 +XM_168590,0.902,0.89,1.048,0.994,1.073,1.011,0.964,0.877,0.917,1.035,1.02,0.94,1.074,1.027,1.126,0.916,0.867,0.946,1.006,0.989,0.868,1.044,0.954,0.977,1.065,0.995,1.065,0.964,0.879,0.984,0.944,0.84,0.956,1.056,0.891,1.169,1.0,0.961,0.961,1.031,0.86,0.737,0.992,0.971,0.931,1.035,1.039,1.073,1.001,0.889,0.889,1.012,1.09,1.017 +XM_168636,0.95,1.127,1.028,1.027,0.889,1.031,0.956,1.04,1.066,1.027,1.078,1.076,0.962,0.92,0.837,1.011,0.897,0.931,0.836,0.978,0.975,0.928,0.932,0.952,1.011,1.022,1.041,1.128,0.973,0.878,0.93,0.924,1.031,0.946,0.989,0.991,1.051,0.977,1.025,1.22,1.084,1.033,0.861,0.957,0.976,1.097,1.0,1.066,1.096,0.914,1.002,1.034,1.038,1.107 +XM_169026,0.749,1.018,0.872,1.029,0.914,1.214,0.886,0.803,0.935,0.926,0.883,0.855,1.006,1.027,0.968,1.084,0.923,1.141,0.911,0.969,1.042,1.106,1.129,1.023,0.998,0.917,1.016,0.848,1.351,1.058,0.819,0.806,0.897,0.955,1.034,1.322,0.821,0.913,1.229,0.868,1.135,0.995,1.227,0.89,1.009,1.083,0.792,1.019,1.073,0.881,0.99,1.269,0.843,1.147 +XM_169258,1.113,0.896,0.993,0.95,0.997,0.994,0.996,0.912,1.092,0.888,0.769,0.98,1.067,1.092,0.867,0.969,0.933,0.981,0.962,1.005,0.939,1.021,1.047,1.064,1.125,0.972,1.217,1.057,0.981,1.209,1.157,1.061,1.105,0.926,0.911,0.946,1.086,0.993,0.999,0.998,0.881,1.064,1.066,1.041,1.041,0.936,1.039,0.909,1.006,1.09,1.187,1.014,0.931,0.794 +XM_169434,1.056,0.921,0.99,0.982,0.818,1.049,1.07,0.912,0.997,1.044,0.961,1.087,0.912,0.794,1.113,0.9,0.997,1.001,1.019,0.986,0.894,0.97,1.202,1.034,0.894,1.104,0.983,1.032,1.505,1.02,1.006,1.035,1.198,1.029,0.972,0.991,0.98,1.025,1.151,0.936,1.091,0.969,1.236,0.975,0.973,1.044,1.22,0.994,1.129,0.878,1.009,1.043,1.081,1.092 +XM_170658,0.63,0.716,1.326,0.674,0.931,0.869,0.752,0.282,1.311,1.522,0.778,0.641,0.302,0.582,0.923,1.089,1.084,1.055,1.039,0.935,0.254,0.641,0.784,1.018,0.395,0.671,1.327,0.779,0.524,1.141,0.831,2.131,0.921,1.063,0.392,1.166,0.939,1.299,1.521,1.222,1.237,0.889,1.043,1.043,1.568,1.072,1.336,0.868,1.122,1.066,1.056,1.067,0.921,1.191 +XM_170659,0.87,0.877,0.853,2.206,0.904,3.33,1.236,0.826,1.0,0.814,3.225,0.842,1.047,0.869,2.548,5.832,0.799,1.452,0.87,1.634,0.927,0.829,2.053,0.849,1.052,0.923,0.889,0.823,0.723,2.648,0.788,0.782,0.828,2.192,0.9,1.369,4.345,0.874,2.535,1.0,0.8,3.156,3.8,1.142,0.874,2.804,1.876,0.88,5.431,0.736,2.87,1.157,0.963,0.793 +XM_170667,0.861,1.274,0.874,0.876,0.989,1.029,0.936,0.947,0.962,0.879,1.109,0.927,0.939,0.833,0.889,1.022,0.871,0.934,0.78,1.186,0.956,0.968,1.133,0.997,0.903,1.005,1.031,1.001,1.227,1.553,0.888,1.892,0.936,1.32,0.897,1.051,0.967,1.009,1.009,1.307,0.908,1.084,0.9,1.08,0.926,0.987,0.795,0.937,0.929,0.873,0.986,0.906,0.786,1.335 +XM_170681,1.08,1.22,1.073,0.979,1.141,0.99,0.852,0.973,0.967,1.201,0.889,1.032,1.048,0.931,1.01,0.992,0.968,0.879,0.966,1.076,0.919,0.977,0.99,1.137,0.9,0.86,0.878,0.947,1.112,0.892,0.991,0.973,1.082,0.942,0.864,0.989,1.091,1.113,1.024,1.127,0.856,0.899,1.044,0.963,1.013,0.893,1.064,1.009,0.803,1.019,1.05,1.157,0.942,1.027 +XM_170708,1.046,1.406,0.982,1.016,0.861,1.121,0.835,0.865,0.815,0.9,1.008,0.991,0.902,0.898,0.89,1.05,0.941,0.897,0.971,1.154,1.149,1.03,0.956,1.037,1.031,0.935,0.96,1.064,1.065,1.506,0.964,1.191,1.09,1.321,1.016,1.427,0.978,0.914,1.105,0.868,1.015,0.992,0.766,1.015,1.0,1.055,0.942,0.868,0.914,0.959,1.036,0.888,0.901,1.073 +XM_170736,0.943,1.047,1.159,0.74,1.025,0.916,0.812,0.751,1.035,0.94,0.82,1.104,0.749,0.854,0.942,0.908,0.852,0.965,1.083,0.978,0.862,0.794,0.813,1.108,0.917,1.042,1.41,1.046,0.608,1.235,0.949,1.603,1.155,1.179,0.511,0.772,0.885,0.853,0.998,1.614,1.12,1.106,0.755,1.128,0.97,0.838,1.067,0.774,0.732,1.01,0.939,1.097,0.948,1.608 +XM_170749,0.684,1.044,1.435,0.754,0.982,1.131,0.782,0.638,1.458,0.988,0.853,1.008,0.595,0.816,1.262,1.287,0.798,0.827,0.987,1.31,0.605,1.037,1.348,1.078,0.636,0.697,1.165,0.894,0.705,1.553,1.194,1.109,1.391,1.485,0.359,0.625,1.132,1.287,1.256,0.719,1.09,1.474,0.838,1.083,0.961,1.428,1.005,0.896,1.248,0.777,1.017,0.772,0.738,1.758 +XM_170754,1.192,0.938,1.189,0.941,1.291,0.975,0.942,1.269,1.128,1.205,0.887,1.727,1.286,1.134,1.016,0.912,0.978,0.895,1.125,0.961,0.997,1.39,0.978,1.352,0.892,1.063,0.972,1.155,1.041,0.961,0.98,1.003,0.918,0.944,0.963,1.013,0.807,1.394,0.879,1.033,1.249,2.324,0.888,2.729,1.046,0.889,0.864,1.259,1.105,1.2,0.932,0.899,1.071,0.87 +XM_170892,1.02,0.946,1.05,1.024,0.938,0.88,0.928,0.988,1.047,1.058,1.079,1.022,0.94,0.902,0.878,1.052,0.944,0.99,1.017,1.029,0.935,0.967,0.881,1.002,0.949,1.104,1.047,1.001,1.179,1.182,0.985,0.982,1.243,1.044,1.152,0.959,1.074,0.904,1.015,0.966,0.921,0.965,1.174,1.064,0.9,0.946,0.944,0.871,1.027,0.906,0.986,0.969,1.041,1.034 +XM_170901,0.983,1.123,0.888,0.965,0.917,1.011,1.253,1.364,1.085,0.831,1.059,0.994,1.067,0.84,0.984,1.099,0.982,0.948,1.026,1.064,0.895,0.941,1.121,0.996,1.041,0.989,1.058,1.076,0.789,1.011,1.019,0.956,1.019,0.971,0.968,0.893,0.912,0.843,0.893,0.983,0.896,0.907,1.343,1.069,1.092,1.018,1.075,1.09,0.984,0.924,0.843,1.263,0.97,0.909 +XM_170909,1.013,0.805,1.026,1.125,0.869,0.899,1.233,1.316,0.902,1.033,0.995,1.019,0.98,1.083,0.948,0.995,0.926,0.991,0.948,0.907,1.062,1.034,0.856,0.977,1.119,1.021,1.005,0.935,0.85,0.993,0.997,1.054,1.032,0.967,0.923,1.172,0.884,1.155,1.016,1.017,0.88,0.838,1.074,0.951,1.028,0.902,1.03,0.998,1.04,1.095,1.015,1.024,0.909,1.023 +XM_170994,0.974,1.024,1.01,1.056,1.071,0.9,0.929,1.018,1.076,0.857,0.996,0.856,0.965,1.025,0.967,1.001,0.94,0.904,1.013,1.047,0.811,0.969,1.048,0.766,1.224,1.109,1.084,0.989,1.115,1.159,1.123,1.002,0.806,1.106,0.892,1.039,1.124,0.844,0.961,1.035,0.805,1.419,1.038,1.183,1.092,0.989,0.902,0.956,1.031,0.848,0.949,1.076,1.095,1.208 +XM_171008,1.124,0.927,1.048,0.839,1.045,1.064,0.823,0.93,1.078,0.826,0.877,1.013,1.133,0.853,0.963,0.984,1.009,0.947,1.097,0.881,1.148,0.902,0.977,1.036,1.065,1.279,0.786,1.013,1.055,1.037,1.057,1.049,1.042,0.923,1.513,1.046,1.031,0.906,1.285,0.928,0.933,1.031,1.036,1.387,1.07,0.935,0.916,1.298,1.021,1.122,1.06,0.84,1.048,1.021 +XM_171023,0.893,1.161,1.003,0.985,0.882,1.1,0.933,0.738,0.946,0.951,1.114,0.827,0.83,0.842,0.997,1.295,0.89,0.919,1.045,1.048,0.895,0.878,1.055,0.832,0.941,0.885,1.16,0.885,0.627,0.989,0.937,0.994,1.235,1.237,0.8,0.898,1.093,0.823,1.179,0.872,0.923,0.979,0.678,1.156,0.879,1.24,1.003,0.775,1.085,0.839,1.08,0.924,0.97,1.05 +XM_171024,1.023,0.98,1.059,0.901,1.157,1.008,0.9,1.002,1.057,0.984,1.083,1.04,1.057,0.906,1.158,0.939,0.937,1.009,1.111,1.055,1.033,1.13,1.007,1.064,1.03,0.932,0.98,0.96,0.878,1.022,1.081,1.126,0.966,0.958,1.026,0.949,1.017,0.948,0.973,0.8,0.947,1.078,1.063,1.108,1.039,1.08,0.911,0.918,1.047,0.979,1.147,0.942,0.959,1.027 +XM_171032,0.877,0.811,1.212,0.888,0.874,1.084,1.023,1.248,0.983,0.923,1.1,0.924,1.122,0.98,1.098,1.208,1.193,0.963,1.019,1.048,1.22,1.014,1.072,1.002,0.917,1.008,1.042,1.002,1.013,0.946,1.133,0.966,1.088,0.837,1.223,0.99,0.928,1.098,0.899,1.108,1.145,1.106,1.081,0.937,0.861,0.867,1.084,0.905,1.202,1.102,1.04,1.092,0.852,1.129 +XM_171054,1.008,1.134,0.936,0.942,0.996,0.973,0.895,0.937,0.944,0.949,0.971,1.244,0.975,1.063,0.997,0.939,1.078,0.941,0.929,1.032,0.808,1.08,0.825,1.01,0.968,1.194,1.123,1.038,0.969,1.079,1.07,0.972,0.983,1.081,0.893,0.975,1.099,1.08,1.126,1.055,1.149,1.044,0.996,0.939,0.995,1.05,0.945,1.063,1.108,1.092,0.916,1.053,1.114,1.004 +XM_171078,1.688,0.729,1.403,0.998,2.796,0.722,0.688,2.218,2.871,2.823,0.854,1.942,1.747,1.694,2.01,2.326,1.419,1.862,3.581,0.829,1.693,2.068,0.843,4.254,0.903,1.781,1.031,2.852,0.612,0.727,2.453,0.67,1.757,0.851,0.733,0.706,0.738,2.404,0.761,0.821,3.254,0.79,0.874,0.82,3.113,0.745,2.576,1.971,0.748,1.39,1.037,1.129,2.771,0.818 +XM_171080,1.002,0.905,0.91,1.161,0.908,0.983,1.084,1.028,0.984,1.069,1.073,1.008,0.94,1.038,1.04,1.059,0.894,0.978,0.918,1.035,1.134,0.94,1.0,1.174,0.933,1.109,0.879,1.191,1.199,1.03,1.096,1.111,1.012,0.835,0.988,0.919,0.794,0.906,0.892,0.969,1.156,0.97,1.112,1.21,1.109,1.026,1.013,1.101,0.866,1.05,0.939,0.991,1.102,1.024 +XM_171094,1.202,0.975,1.04,0.883,0.959,1.004,1.072,1.034,0.93,0.948,0.917,1.007,0.936,1.128,0.893,1.064,1.006,1.032,0.908,0.952,1.073,0.992,1.055,0.933,1.106,0.942,1.059,0.853,0.588,0.969,0.921,0.947,0.952,1.001,0.902,0.962,1.023,1.05,0.903,1.042,1.029,0.886,0.838,1.059,1.027,1.064,0.976,0.903,1.028,0.934,0.924,0.891,1.015,0.962 +XM_171105,1.049,0.938,0.915,0.937,1.092,1.068,0.774,0.934,0.889,1.025,0.933,1.015,1.06,0.892,0.924,1.149,1.225,0.932,0.992,1.187,1.016,1.116,0.897,1.064,0.983,0.825,0.981,0.993,0.997,1.052,1.063,0.967,0.986,0.998,1.002,1.012,1.008,0.926,0.949,0.884,1.026,1.044,1.184,0.888,1.156,1.022,1.046,0.972,0.961,0.826,0.974,0.998,0.911,1.14 +XM_171150,1.055,1.006,0.879,0.913,0.867,1.019,0.731,1.14,1.013,0.858,0.898,0.981,0.878,0.752,1.056,1.127,0.953,0.93,1.027,1.202,1.076,1.014,1.012,0.917,1.109,1.167,1.129,0.939,0.993,1.046,1.008,0.999,0.996,1.111,1.17,1.188,0.962,1.014,0.981,1.161,0.975,0.871,1.356,1.025,1.143,0.9,0.912,1.057,0.93,0.924,1.186,0.937,0.951,0.955 +XM_171166,0.887,0.984,0.97,0.994,0.934,1.157,0.894,0.891,1.109,0.862,0.969,0.85,0.857,1.016,0.969,0.863,0.944,1.175,0.937,1.089,0.914,0.853,1.083,0.985,0.918,0.985,1.026,0.878,0.899,1.118,1.0,1.035,1.152,1.087,0.969,1.015,1.14,0.901,1.05,0.868,0.852,1.137,0.77,0.898,0.861,1.027,1.0,1.01,0.809,0.91,0.916,0.907,0.869,1.028 +XM_171207,0.996,1.026,0.944,0.97,0.784,1.025,0.925,1.005,0.937,0.982,0.977,0.977,0.975,1.009,1.124,1.13,0.852,1.002,0.827,0.882,1.023,0.973,0.971,0.975,0.919,1.013,1.019,0.988,1.068,0.976,1.057,0.937,1.088,0.987,0.941,0.938,1.093,1.096,0.932,0.998,0.992,1.034,1.027,1.049,0.945,1.031,1.019,0.899,1.101,0.94,1.101,0.929,1.047,1.108 +XM_171224,1.015,1.093,0.888,0.926,0.945,1.018,0.852,1.041,0.991,0.946,0.909,0.939,0.965,0.914,1.561,0.999,0.96,0.999,0.993,0.896,1.048,0.988,1.134,0.923,0.917,1.047,0.874,1.105,1.382,1.113,0.885,2.257,1.249,1.155,0.908,0.927,0.965,1.051,1.177,1.409,0.867,0.999,1.028,0.904,1.028,0.994,0.922,0.988,0.989,0.906,1.053,1.072,0.905,1.095 +XM_171370,0.96,0.93,1.007,1.115,0.911,1.053,0.975,0.933,1.089,0.995,1.027,0.981,0.912,1.09,0.793,0.998,0.996,0.989,1.151,1.112,1.019,1.076,1.013,0.96,1.033,1.095,0.927,1.053,1.026,1.059,0.954,1.009,1.018,0.95,1.033,0.987,0.997,1.02,1.147,0.918,1.01,0.839,0.915,1.11,1.064,0.951,0.954,0.999,1.027,0.955,0.956,1.122,1.15,0.983 +XM_171410,1.21,0.959,0.969,1.07,1.035,1.167,0.817,0.994,1.118,0.91,1.016,0.974,0.952,1.124,0.847,0.911,1.059,0.965,0.979,1.042,0.959,1.077,1.034,0.9,0.941,1.037,0.923,1.098,0.98,1.125,1.127,1.243,1.0,0.901,1.204,0.992,0.853,0.918,1.047,0.931,0.926,0.84,1.215,1.0,0.842,1.108,1.124,1.013,0.999,1.024,0.938,0.999,1.144,1.201 +XM_171424,0.961,1.052,0.98,0.849,1.157,0.971,1.383,1.088,0.958,1.1,0.915,1.063,1.015,0.762,0.932,0.991,0.985,1.034,1.115,1.138,0.915,0.715,1.021,0.928,0.865,1.067,0.934,0.907,0.85,1.04,0.971,0.868,0.822,0.951,0.98,0.992,1.086,0.914,0.887,1.005,1.048,0.934,0.984,1.136,1.083,1.034,1.014,0.915,1.095,0.974,0.975,1.049,1.033,1.018 +XM_171489,0.869,1.135,0.861,1.01,0.985,0.895,1.041,1.031,0.855,1.069,0.937,1.07,0.901,1.207,1.155,1.108,1.084,0.953,0.976,1.273,0.882,1.03,1.185,1.015,0.937,0.963,1.193,0.992,1.102,0.948,0.981,1.076,1.178,1.056,0.965,1.019,1.037,1.093,0.982,1.027,1.1,0.966,0.991,1.001,0.947,1.093,0.925,0.909,0.934,1.029,0.971,1.066,0.947,1.12 +XM_171490,0.957,1.006,1.052,1.092,1.25,0.966,1.066,0.998,1.112,1.103,0.972,1.103,1.028,0.916,1.073,1.169,1.044,0.993,1.093,0.954,0.993,0.965,1.04,0.938,1.049,0.991,0.881,0.945,1.433,0.972,1.018,1.054,1.067,0.987,1.145,0.948,1.063,0.976,1.075,0.96,0.967,1.035,1.224,1.165,1.013,1.049,1.02,1.141,0.993,0.933,0.95,0.962,0.959,0.906 +XM_171495,0.977,0.962,0.995,0.975,1.061,1.008,1.088,1.004,0.98,1.003,1.011,0.881,0.999,1.167,0.798,0.899,0.913,0.917,0.957,0.992,1.017,1.033,1.042,0.994,1.028,0.977,1.006,0.98,0.875,1.151,1.006,0.904,1.05,1.083,0.907,0.993,0.969,0.928,1.133,0.923,0.963,0.987,1.004,0.954,0.934,0.785,0.917,1.033,1.105,0.933,1.002,0.877,0.948,1.125 +XM_171528,1.029,0.992,0.947,0.863,1.047,1.022,1.027,1.035,1.167,0.976,1.205,1.008,1.078,1.086,0.922,1.007,0.923,1.001,0.886,1.108,0.877,1.029,1.01,1.106,1.019,1.017,1.052,0.881,1.08,1.128,0.966,0.874,1.134,0.929,1.06,0.941,1.002,0.933,1.031,1.076,1.021,1.041,0.979,1.03,1.002,1.042,1.037,1.017,1.035,1.058,0.952,1.082,0.949,0.845 +XM_171536,0.921,1.042,1.122,0.995,1.079,1.165,1.064,0.945,0.839,1.016,1.1,0.979,0.995,1.112,1.185,0.896,0.999,0.983,0.933,1.092,1.144,0.966,1.082,0.92,0.942,0.967,1.01,0.939,1.314,0.835,1.011,0.884,0.95,0.98,1.039,0.916,1.0,1.121,0.977,1.06,1.003,0.967,0.942,1.047,0.972,1.034,0.76,1.035,1.06,1.028,1.046,0.932,0.917,1.019 +XM_171578,0.994,0.98,0.989,1.018,0.943,1.025,1.265,1.134,0.827,0.94,0.94,1.145,0.904,1.066,0.758,1.057,0.942,0.992,1.213,0.86,1.136,0.897,0.994,1.046,0.987,0.938,1.133,1.107,0.888,1.073,1.026,1.05,1.008,0.993,0.937,0.991,1.005,0.95,1.049,0.825,1.195,1.134,1.119,1.005,1.113,0.92,1.068,1.102,1.071,1.167,1.03,1.007,0.922,0.922 +XM_171581,0.856,0.91,1.239,0.876,0.941,0.901,1.175,1.194,0.867,0.969,1.148,1.032,0.967,1.179,1.163,1.005,0.96,1.272,0.873,1.051,0.985,1.063,1.063,0.921,1.085,1.002,0.996,1.22,0.939,0.917,0.927,0.95,0.925,1.105,1.132,0.986,1.011,0.949,1.028,1.025,1.054,1.193,1.148,0.972,0.943,0.881,1.045,0.989,0.924,1.051,1.106,0.855,1.188,1.075 +XM_171724,1.042,1.07,0.955,1.164,0.953,1.132,0.828,1.103,1.015,1.008,0.986,1.042,0.982,1.033,0.887,1.135,1.038,1.002,1.035,1.097,0.99,1.041,1.095,1.073,1.045,0.953,0.745,0.873,0.924,1.01,1.056,1.072,0.964,1.103,0.916,0.919,1.041,0.966,0.97,0.845,1.067,0.924,1.102,1.014,1.107,0.984,0.943,0.989,0.949,1.214,0.994,1.039,1.004,0.958 +XM_171855,0.981,0.925,0.952,0.955,1.001,1.083,1.141,0.961,0.951,1.072,1.078,0.936,1.017,1.057,1.07,1.137,0.825,0.982,1.088,1.123,0.918,0.933,0.975,1.115,0.933,1.07,1.033,0.899,1.118,0.911,1.007,1.094,0.911,1.088,0.995,0.981,0.928,1.024,0.942,0.977,0.977,1.094,1.146,1.099,0.977,0.974,0.965,0.961,1.004,1.1,1.09,1.023,1.087,1.035 +XM_171892,1.035,0.799,0.943,0.841,1.055,1.26,0.941,1.1,1.19,1.044,1.2,1.015,1.139,1.024,1.075,1.378,0.897,0.94,1.085,0.978,1.036,0.932,0.987,1.144,1.053,0.884,1.081,0.945,0.974,1.026,1.068,0.942,1.333,1.029,1.075,1.052,0.968,1.232,1.061,0.921,1.02,0.886,0.899,0.993,1.03,0.871,0.9,0.877,0.896,0.955,0.926,1.068,1.1,0.916 +XM_171973,0.971,1.124,0.966,1.001,1.007,1.031,1.047,1.003,0.977,1.046,1.011,1.038,0.985,0.897,0.968,0.962,1.05,0.996,1.078,1.016,1.055,0.93,0.899,1.127,1.016,0.928,1.025,1.031,0.999,1.041,0.994,1.04,1.035,0.994,0.982,0.988,1.17,0.825,1.088,1.135,1.087,0.939,0.988,1.083,1.058,1.105,1.004,1.194,1.116,1.077,1.092,1.037,0.849,0.915 +XM_172341,0.713,1.07,0.928,0.756,0.736,0.994,1.002,0.692,0.932,0.612,1.231,0.636,0.58,0.717,0.945,1.591,0.715,0.779,0.816,1.06,0.81,0.726,1.294,0.747,0.846,0.575,0.783,0.832,0.543,1.304,0.791,2.111,0.998,1.689,0.521,0.72,1.287,0.832,1.135,1.552,0.915,2.018,1.073,1.259,0.89,1.141,0.874,0.507,0.992,0.774,1.408,1.041,0.8,1.061 +XM_172581,1.049,0.9,0.995,0.981,1.017,1.108,0.912,1.094,0.885,0.99,0.882,1.006,0.983,0.843,2.022,1.087,1.044,1.188,1.033,0.902,0.955,1.043,1.024,0.949,1.045,0.994,0.96,0.903,1.213,0.93,1.005,0.915,0.969,1.131,1.184,1.06,1.048,1.148,0.957,1.012,1.029,0.935,0.954,1.109,1.003,0.989,1.047,0.889,0.965,1.072,1.14,1.048,1.003,0.859 +XM_172794,0.925,0.998,0.979,1.147,1.086,0.901,1.233,1.016,0.987,0.907,1.157,0.997,1.2,1.051,0.908,1.078,1.037,0.978,0.892,0.977,1.028,0.976,1.042,1.079,1.062,0.855,1.078,0.919,1.025,1.011,1.161,1.072,0.947,1.096,0.942,1.089,1.084,0.923,1.018,0.851,1.063,1.201,1.127,1.101,0.943,1.014,0.982,0.97,0.957,0.953,1.113,0.953,1.087,0.882 +XM_172801,0.901,1.05,1.01,0.917,0.993,0.979,0.943,0.92,1.032,0.949,1.035,1.239,0.887,1.097,1.161,1.01,0.956,0.918,0.991,1.059,1.047,0.957,0.933,0.879,0.939,1.018,1.057,0.92,1.095,0.97,0.961,1.0,1.032,1.058,1.052,1.169,0.986,0.93,1.026,1.023,0.972,1.041,1.017,0.96,0.969,1.016,1.087,0.841,0.947,1.009,1.018,1.029,1.028,0.994 +XM_172825,1.004,1.35,1.08,1.001,0.755,1.123,0.933,0.987,0.934,0.831,1.145,1.19,1.094,0.805,0.825,1.319,1.067,0.99,1.084,0.951,1.093,1.122,1.009,0.943,1.062,1.223,1.124,0.994,1.009,1.102,0.932,1.075,0.938,0.898,1.29,0.988,0.983,0.999,0.968,0.813,1.042,1.102,0.78,1.03,0.935,0.876,1.074,1.226,0.903,1.076,0.965,1.033,0.962,0.987 +XM_172831,1.056,0.935,1.105,1.179,1.105,0.903,1.512,0.882,0.877,0.965,0.976,0.977,1.042,0.922,1.103,1.086,1.031,0.981,1.05,1.22,1.003,0.982,0.929,0.997,0.974,1.035,0.819,1.055,0.815,0.871,1.071,1.016,1.099,0.89,1.141,0.957,0.921,0.915,1.039,1.086,1.036,0.978,0.825,0.926,1.027,0.938,0.932,1.048,1.076,1.033,1.101,0.995,1.077,0.938 +XM_172839,1.207,1.053,0.952,0.982,0.997,1.0,1.026,1.011,0.985,1.096,1.111,1.124,0.981,1.0,0.901,0.972,1.017,0.952,1.126,1.088,0.953,1.003,1.022,0.954,0.988,1.135,0.911,0.995,1.23,1.017,1.083,0.884,1.038,1.079,1.1,1.071,0.98,1.075,0.942,1.06,0.95,1.022,0.958,0.956,0.936,1.048,1.047,0.946,1.034,0.932,0.955,0.963,0.994,0.965 +XM_172847,1.069,1.157,1.125,0.931,1.052,0.951,0.919,1.055,1.119,0.882,0.959,0.835,0.85,1.007,1.357,0.953,0.993,1.052,0.951,1.19,1.088,0.974,0.973,0.893,0.891,0.954,1.18,0.962,0.73,1.229,1.064,1.251,1.289,1.043,0.853,0.969,0.959,1.024,1.031,0.951,1.046,0.993,0.759,1.024,0.88,1.036,0.847,0.963,0.925,0.957,0.978,1.0,0.965,1.283 +XM_172853,1.013,0.999,1.045,0.943,0.993,0.967,0.963,1.036,1.034,0.962,0.952,1.08,0.997,0.943,0.893,0.941,0.942,1.015,1.134,1.016,1.137,0.852,0.905,1.081,1.041,0.979,1.052,1.002,0.82,1.101,1.006,1.009,1.02,0.992,0.905,1.058,1.06,0.938,0.962,1.055,0.951,1.002,1.004,1.09,0.982,1.107,0.968,0.985,0.927,0.968,1.087,1.055,1.042,0.873 +XM_172855,0.948,0.954,0.995,0.866,1.057,0.953,0.949,1.035,1.015,0.942,1.023,1.009,0.956,0.986,1.001,0.866,0.926,1.086,0.931,1.06,0.921,0.987,1.099,1.112,0.935,0.998,1.157,1.136,0.483,0.995,0.92,2.274,1.006,1.091,0.986,0.899,0.982,1.253,1.132,1.025,1.268,1.016,0.867,1.079,0.994,0.941,0.983,1.044,0.96,0.913,0.972,1.048,0.88,0.955 +XM_172857,0.867,1.101,1.028,1.068,0.997,0.973,1.028,0.965,1.129,0.981,1.04,0.908,0.966,1.095,1.074,0.956,1.118,0.914,0.887,1.046,0.95,0.882,1.078,0.992,1.002,0.784,1.029,0.997,1.399,0.963,0.926,1.988,1.097,0.93,0.929,2.154,0.943,0.879,0.973,1.431,0.908,1.07,0.933,0.978,0.989,1.016,1.252,1.039,0.903,0.981,0.842,1.389,1.028,1.029 +XM_172858,1.07,0.967,1.066,1.023,1.032,1.039,1.013,1.095,1.036,0.994,0.979,1.097,0.93,0.962,0.906,1.011,1.158,1.092,0.953,0.94,1.016,1.011,0.967,0.982,0.949,0.945,1.175,0.985,0.876,1.008,1.015,0.987,0.986,0.999,1.131,0.955,1.054,0.972,0.99,0.985,1.072,0.893,1.075,0.837,1.288,0.882,1.129,1.075,0.987,1.243,0.93,0.974,1.003,0.983 +XM_172861,0.991,1.063,0.934,0.947,1.146,1.02,1.086,0.966,1.017,1.003,1.31,0.923,0.934,0.847,0.903,1.092,0.964,0.957,0.984,0.916,0.891,0.974,1.209,0.938,1.062,0.839,0.869,0.993,1.154,1.361,0.885,1.026,0.967,1.366,0.985,0.918,1.026,1.022,1.165,1.045,0.969,1.074,0.953,1.11,0.943,0.926,0.995,1.034,0.936,1.081,1.054,0.944,1.068,0.952 +XM_172871,0.992,1.108,0.967,1.003,1.082,1.077,0.946,1.021,1.159,1.151,0.984,0.975,0.909,1.03,1.0,1.003,0.979,1.062,1.257,0.976,0.913,1.021,0.793,1.121,1.017,1.066,1.028,0.947,0.854,0.991,1.035,1.022,0.98,0.999,0.934,0.997,1.006,1.087,1.0,0.924,0.997,0.98,1.189,0.971,0.994,1.015,1.048,1.061,1.126,1.001,1.045,1.079,1.096,1.039 +XM_172874,1.033,0.872,1.185,1.065,0.91,1.093,0.93,0.984,0.969,0.851,0.869,1.151,1.053,1.111,1.08,1.018,0.909,1.019,0.988,0.96,1.064,1.02,0.917,0.904,1.0,1.135,1.002,1.031,0.865,1.045,0.931,1.071,0.884,0.992,1.019,0.973,0.989,1.0,0.943,1.051,0.991,0.926,0.9,1.014,1.002,1.028,1.03,0.976,1.011,1.038,1.078,0.944,0.967,1.017 +XM_172881,0.979,1.034,1.07,0.978,0.827,1.04,0.936,1.016,0.984,1.2,1.03,1.014,1.01,0.964,1.043,1.046,1.024,0.967,1.0,1.117,1.074,0.961,1.027,1.02,0.982,1.018,0.967,1.05,1.223,0.989,1.065,0.996,0.955,0.925,1.056,1.134,1.04,0.896,1.022,0.976,1.072,0.995,1.154,1.201,1.129,1.08,0.968,0.895,0.914,1.119,0.958,1.091,0.98,1.112 +XM_172887,1.0,1.071,0.927,1.007,0.871,0.924,0.839,1.186,0.852,1.03,1.055,0.993,1.05,1.014,0.89,0.991,0.841,1.087,1.184,0.935,0.965,0.951,1.145,1.052,1.096,0.952,1.007,1.184,1.128,0.995,0.961,0.985,0.995,0.964,1.024,1.097,1.113,0.851,1.04,1.105,1.043,1.021,1.007,0.951,1.205,1.075,0.981,1.125,0.994,1.076,0.985,0.956,0.983,0.906 +XM_172905,0.909,1.076,0.978,0.875,1.037,0.976,1.215,0.813,0.905,0.853,1.421,1.002,0.918,0.852,1.061,0.949,1.007,0.885,0.899,0.786,0.961,0.937,1.009,1.121,0.945,0.964,1.005,0.854,1.684,1.242,0.912,1.628,0.91,1.067,0.757,1.581,1.73,0.927,1.154,1.363,1.141,2.399,0.862,0.921,0.923,0.799,1.007,0.919,1.67,0.828,1.145,0.98,0.858,1.95 +XM_172910,0.982,1.079,1.062,1.079,0.888,1.18,1.044,0.918,0.862,1.133,0.89,0.922,1.041,0.899,1.029,1.068,1.012,1.088,1.012,1.018,0.94,1.0,1.003,1.005,0.908,1.027,0.859,0.905,0.868,0.87,0.987,1.176,0.91,0.997,1.034,1.155,0.925,0.973,1.04,1.026,0.873,0.924,0.859,1.065,0.924,0.917,0.915,0.962,1.01,1.265,0.865,1.089,1.129,1.099 +XM_172920,1.082,0.885,1.062,0.887,1.046,1.063,0.958,0.855,1.053,1.048,0.998,0.977,1.073,0.851,1.153,1.044,0.953,1.017,0.852,1.003,1.031,1.034,0.894,1.13,0.976,0.92,1.003,0.995,0.982,1.092,0.885,1.085,0.926,0.918,1.036,1.087,1.088,0.931,0.937,1.032,1.044,1.062,0.957,1.008,1.106,1.059,0.954,1.032,0.941,1.014,1.018,1.099,1.033,1.05 +XM_172921,1.012,1.089,1.104,0.934,1.003,1.077,0.796,0.896,0.912,0.956,1.039,1.073,0.974,0.991,0.991,0.997,1.142,1.021,0.977,0.905,0.846,1.039,0.95,0.967,1.028,1.049,1.121,1.067,0.951,0.927,0.997,1.017,0.921,1.079,0.904,0.942,1.014,0.885,1.021,1.108,1.073,0.888,1.037,0.933,0.956,0.981,1.097,1.099,0.973,1.1,1.014,1.008,1.006,0.916 +XM_172924,1.068,0.956,0.976,1.035,0.944,0.981,0.89,1.018,0.949,0.975,1.082,0.988,1.004,1.113,1.236,0.94,0.996,1.009,1.056,1.064,1.069,1.043,1.096,0.962,0.969,1.052,1.014,1.0,0.938,0.97,1.1,1.031,0.968,1.066,1.003,1.009,0.989,0.912,0.935,1.046,0.893,0.878,1.029,1.06,0.946,0.993,1.021,0.919,0.999,0.987,0.946,1.008,1.0,0.995 +XM_172928,0.661,1.033,1.53,0.514,1.323,1.142,0.629,1.14,1.218,0.861,0.762,1.285,0.827,0.835,0.777,1.095,1.03,0.905,1.255,1.034,0.587,1.574,1.356,1.144,0.523,0.794,1.541,1.054,0.231,1.105,1.084,1.205,1.364,1.219,0.361,0.533,0.757,1.705,1.011,0.873,1.58,1.096,0.252,0.513,1.113,0.717,0.882,1.167,0.692,0.837,0.817,0.878,0.606,1.38 +XM_172929,0.892,1.125,0.925,1.005,1.02,0.939,0.928,0.974,0.95,1.0,1.044,1.073,1.018,0.974,1.081,1.008,0.995,0.982,0.797,0.857,1.116,0.905,1.079,1.006,0.964,0.832,0.891,0.924,1.295,1.043,1.07,1.717,0.941,0.883,0.95,0.924,0.918,1.051,1.011,1.114,1.061,1.02,1.043,0.987,1.012,1.058,0.959,1.027,1.006,0.895,1.006,0.974,1.183,0.99 +XM_172931,0.991,1.134,0.985,0.892,0.901,0.926,1.289,0.918,1.094,0.911,1.017,1.19,1.024,0.942,0.893,1.011,1.02,0.921,1.088,1.115,1.042,1.029,1.051,0.999,0.893,0.825,1.013,0.942,0.9,0.993,1.001,0.996,1.071,1.07,1.152,0.889,0.957,1.111,0.879,0.986,1.061,1.168,0.917,1.006,1.094,1.076,0.759,0.841,1.08,1.276,0.98,1.024,0.894,0.884 +XM_172950,1.104,1.024,1.095,1.142,1.037,1.048,0.947,1.097,0.918,0.916,1.101,0.932,1.037,1.066,0.939,1.108,1.06,0.999,0.884,0.947,0.957,0.998,1.104,0.974,1.031,1.025,1.002,0.949,0.91,1.13,1.033,0.986,0.916,1.046,1.019,1.044,0.945,1.097,0.899,0.947,1.066,1.097,1.115,0.934,0.938,1.013,0.998,0.927,0.937,0.974,1.078,0.997,1.061,0.936 +XM_172968,1.057,0.922,1.015,0.829,1.043,1.08,1.119,1.121,1.189,0.944,1.156,0.852,0.948,0.972,0.925,1.112,1.054,0.905,0.992,0.947,0.96,0.964,1.002,0.97,1.035,1.237,0.975,1.037,1.065,0.923,0.962,1.009,0.918,0.933,0.971,0.959,1.091,0.899,1.1,0.989,0.956,0.953,1.319,1.076,1.022,1.046,0.979,0.912,1.035,0.92,1.039,1.026,1.005,0.906 +XM_172995,1.01,1.039,1.031,1.004,1.05,0.957,0.961,0.905,1.064,0.939,0.981,0.948,1.057,0.967,0.923,1.065,1.12,1.013,1.018,0.998,0.938,1.003,0.931,1.006,1.012,0.968,1.089,1.1,0.864,0.981,0.991,0.946,1.062,0.955,0.967,0.869,1.038,1.059,1.037,1.118,1.069,0.978,0.797,1.02,0.972,0.863,0.879,1.0,0.903,1.032,1.013,0.956,1.017,0.896 +XM_173008,1.034,0.936,1.035,0.97,0.938,1.07,1.374,1.281,0.975,0.87,1.018,0.841,1.061,0.871,0.923,0.99,1.01,1.043,0.918,1.105,0.897,1.051,1.074,1.249,0.997,0.921,0.95,0.943,1.419,1.124,0.924,1.216,0.97,0.867,1.128,1.022,0.922,0.962,1.157,0.973,1.019,1.12,1.01,0.959,1.03,0.914,1.158,1.105,0.921,0.99,0.87,1.04,1.099,0.914 +XM_173012,0.912,1.053,0.908,1.078,0.961,0.925,0.822,1.111,1.013,0.996,1.02,0.973,1.008,0.703,1.072,0.942,1.01,1.009,0.902,1.008,0.945,1.09,0.947,0.996,0.952,0.961,1.0,0.893,0.736,1.052,0.967,0.893,0.881,0.925,0.871,0.983,1.162,1.075,1.06,1.199,0.997,0.974,0.901,0.986,1.046,1.06,1.053,1.149,1.005,1.074,0.962,0.998,1.089,1.089 +XM_173015,1.036,1.005,1.012,0.99,1.133,1.004,1.024,0.943,1.0,0.921,0.987,0.876,1.093,0.927,1.031,0.979,1.086,0.888,0.962,1.061,0.979,1.087,1.021,0.926,0.979,0.923,0.923,1.02,1.214,0.987,0.859,0.923,1.009,0.888,1.01,1.008,1.08,0.978,0.917,0.872,1.106,0.909,1.219,1.116,0.973,1.063,0.997,1.096,0.987,0.92,0.977,1.114,0.822,0.952 +XM_173031,1.047,1.024,0.968,0.934,1.031,1.072,0.963,1.059,1.046,0.997,1.022,0.886,1.075,0.937,1.169,1.035,0.994,1.122,1.071,0.904,1.042,0.888,1.001,1.029,1.056,0.972,0.918,1.049,1.054,1.106,1.1,0.9,0.992,0.943,1.25,0.876,1.006,0.986,0.939,1.056,1.074,0.896,1.33,1.094,0.971,0.993,0.927,1.08,0.888,1.044,0.886,0.951,0.984,0.978 +XM_173059,1.049,0.921,1.062,1.078,0.964,1.037,1.256,0.898,0.962,0.934,1.06,0.91,0.949,1.113,0.85,1.034,1.038,1.077,0.998,0.929,0.992,0.894,0.924,0.921,1.161,1.077,1.055,1.078,0.898,0.993,1.07,0.976,0.969,0.962,0.909,1.074,1.057,1.023,0.928,1.018,0.906,1.075,1.06,0.877,1.012,0.939,0.977,1.115,0.88,1.077,1.089,1.088,1.062,0.981 +XM_173078,0.733,1.092,0.607,0.973,0.596,2.125,0.751,0.561,0.657,0.635,2.942,0.608,0.638,0.729,1.604,3.093,0.682,0.994,0.714,1.666,0.666,0.641,2.819,0.654,0.981,0.687,0.629,0.705,0.718,1.566,0.695,1.283,1.465,2.109,0.662,1.177,2.272,0.585,1.388,0.789,0.645,1.832,0.533,2.496,0.665,1.984,0.996,0.666,1.525,0.614,1.484,0.874,0.739,2.6 +XM_173084,1.091,1.087,1.135,0.96,1.041,0.97,0.922,0.946,0.904,0.957,0.902,1.084,1.092,1.035,0.99,1.131,1.141,0.922,1.007,1.049,1.065,0.965,0.997,1.1,1.001,0.879,1.145,0.937,0.706,0.992,1.137,0.946,0.953,0.951,0.889,1.047,0.949,1.172,1.041,1.071,1.009,0.985,1.166,0.99,1.036,1.012,0.992,0.931,0.969,1.112,1.033,0.95,0.977,0.938 +XM_173105,1.172,0.989,0.88,1.18,0.939,0.961,1.193,0.953,1.048,0.89,0.901,0.753,0.952,0.944,1.09,0.951,0.935,0.986,0.941,1.055,1.094,1.02,1.002,0.936,1.272,0.918,1.042,0.982,1.405,0.984,0.99,1.013,1.019,1.024,0.98,1.094,1.254,0.963,1.081,0.946,1.241,1.085,0.962,0.997,0.937,1.191,1.154,1.177,1.039,1.181,0.952,1.125,1.238,1.068 +XM_173110,1.041,0.965,0.956,0.943,0.978,1.013,0.889,0.948,0.925,1.021,0.909,0.978,0.989,0.898,1.153,0.956,0.955,0.888,0.97,0.974,1.054,1.104,1.024,0.897,1.106,1.02,0.971,0.935,0.856,0.937,1.071,1.046,0.99,1.21,1.031,1.041,1.002,1.049,0.87,0.856,0.905,0.965,0.954,1.113,0.921,1.109,0.985,1.148,0.914,1.041,1.022,1.07,1.081,0.906 +XM_173124,0.941,1.036,1.029,0.953,0.962,1.018,0.909,1.02,1.084,1.061,0.918,0.928,0.929,0.933,0.964,0.855,1.058,0.949,1.106,0.93,1.083,1.103,0.957,0.991,0.974,0.997,1.046,1.089,0.921,1.017,0.95,0.971,1.015,0.871,1.022,1.005,0.978,1.058,0.89,0.903,0.924,0.976,1.0,1.157,0.888,0.986,0.989,0.899,0.973,1.042,1.018,0.945,0.982,0.952 +XM_173140,0.993,0.903,1.149,0.999,0.955,0.984,0.963,0.903,1.09,0.982,0.95,1.032,0.967,0.876,1.274,0.978,1.051,0.879,0.915,1.039,0.901,0.958,1.184,0.907,0.906,1.011,0.978,1.155,1.246,1.033,1.122,0.985,1.072,0.848,1.045,1.001,0.991,0.941,1.025,0.937,0.919,0.855,1.015,1.036,1.077,1.109,1.072,1.007,1.065,1.026,1.048,0.951,1.156,1.274 +XM_173156,1.012,1.033,1.003,0.912,1.128,1.053,1.07,0.893,0.951,0.996,1.016,0.958,1.102,0.835,1.17,0.972,1.002,0.994,1.111,0.969,0.979,1.056,0.925,1.116,1.058,1.075,0.97,0.935,0.949,1.069,0.969,0.953,1.021,0.933,1.031,1.123,1.043,0.988,0.935,0.987,1.051,1.094,0.804,1.039,1.087,1.028,0.957,1.02,1.129,0.972,1.043,1.019,0.946,1.026 +XM_173158,0.967,1.117,0.891,0.952,1.017,1.067,0.882,1.126,0.999,0.989,1.005,1.059,0.873,1.1,0.886,0.992,0.972,1.014,1.124,1.043,1.025,1.026,1.055,0.907,1.052,1.058,0.869,0.962,1.178,0.993,1.005,0.95,1.03,0.9,1.03,0.962,1.112,1.216,1.068,0.92,1.056,0.996,1.086,0.94,1.059,0.984,0.937,1.048,1.068,1.106,1.146,1.0,1.013,0.973 +XM_173160,1.091,1.215,1.001,1.086,0.892,0.992,0.904,0.98,1.17,0.979,0.959,1.022,1.002,1.009,1.054,0.934,1.114,1.292,1.073,1.142,1.01,1.141,0.972,0.989,1.147,1.032,1.19,1.044,0.968,0.994,0.876,1.165,0.989,0.919,1.046,0.973,0.985,0.941,1.0,0.968,1.089,1.065,0.986,0.96,1.036,0.988,1.054,1.031,1.084,1.01,0.877,1.0,1.219,1.074 +XM_173164,0.93,1.087,0.947,0.953,0.971,0.935,1.077,1.002,0.866,1.061,1.011,1.088,1.1,0.789,0.949,0.924,1.001,1.163,1.17,1.165,0.969,0.975,1.011,1.01,1.118,1.046,0.777,0.961,1.345,1.035,1.105,1.067,1.07,1.07,1.018,0.96,0.893,0.938,0.964,1.221,1.065,1.039,1.022,0.991,1.107,0.977,1.069,0.912,1.047,0.989,0.962,0.916,0.861,1.172 +XM_173166,0.988,1.039,0.958,1.119,0.967,0.977,0.985,1.11,0.89,0.907,0.994,0.906,0.884,0.99,1.005,0.939,0.913,1.079,1.001,0.914,0.963,1.008,0.905,0.937,1.106,1.138,1.051,0.898,0.893,0.982,1.109,0.923,0.888,1.099,0.979,0.905,0.994,0.995,1.02,1.015,0.917,0.938,1.114,1.02,0.952,1.196,0.915,1.053,1.023,1.081,0.945,1.173,0.913,0.963 +XM_173173,1.052,1.055,1.024,0.91,0.966,1.067,0.947,1.076,0.939,0.987,1.104,1.003,1.028,0.922,1.086,1.016,1.029,1.181,1.028,0.989,1.091,1.034,0.999,0.952,1.014,0.951,1.063,0.997,1.029,0.903,1.072,0.729,0.979,1.093,1.146,0.945,0.985,0.985,0.99,1.069,0.932,0.9,0.885,0.904,0.893,1.119,0.993,1.108,0.957,0.925,1.014,1.064,1.027,1.101 +XM_173222,1.061,1.124,0.933,0.922,0.935,0.996,0.735,0.791,1.018,0.966,1.176,0.974,1.033,1.002,0.909,0.979,1.116,0.88,1.01,1.043,0.919,0.944,1.07,1.023,0.977,1.088,1.009,1.005,0.932,0.969,1.008,1.067,0.831,0.897,1.038,0.914,0.911,1.127,0.984,1.051,1.118,1.001,1.004,0.981,1.03,1.161,1.041,1.106,0.948,0.929,1.042,0.998,0.961,0.866 +XM_175125,1.023,1.108,1.083,1.014,1.068,0.982,1.141,1.032,0.992,1.02,0.93,1.069,1.006,1.279,0.881,0.98,0.961,0.919,0.939,0.968,0.944,0.931,0.927,0.983,0.946,0.986,0.888,1.037,0.928,0.911,1.109,1.022,0.996,1.062,1.201,1.166,0.98,1.127,1.027,0.928,0.957,1.011,1.05,1.092,0.942,1.02,1.072,0.999,1.009,1.112,0.863,1.043,0.917,0.995 +XM_208058,0.997,1.001,0.986,0.898,1.125,0.882,0.981,0.855,1.12,1.126,0.948,1.009,1.145,0.942,0.868,0.825,1.11,1.039,0.905,0.918,0.874,0.934,0.99,1.004,0.957,0.999,1.214,1.006,1.207,1.078,0.914,1.075,0.8,0.871,1.06,0.986,0.872,1.034,1.154,0.933,0.967,1.007,0.908,1.019,0.979,1.041,0.947,1.225,0.965,1.094,0.926,1.09,1.022,0.959 +XM_208108,0.859,1.357,0.84,1.234,0.596,0.957,0.536,0.321,0.775,0.579,1.269,0.343,0.625,0.614,0.698,1.29,0.714,1.094,1.195,0.663,0.581,0.33,1.418,0.569,0.708,0.892,0.886,0.528,0.379,1.564,0.59,1.769,0.913,1.5,0.366,0.825,1.174,0.734,2.98,0.672,0.98,1.404,0.839,3.287,0.654,0.857,1.103,0.597,1.273,0.781,0.994,1.018,0.792,1.918 +XM_208312,0.527,1.358,0.891,0.613,0.548,1.331,0.937,0.603,0.752,0.57,0.972,0.551,0.561,0.445,0.937,2.885,0.603,1.109,0.795,1.235,0.439,0.621,1.571,0.623,0.601,0.561,0.668,0.556,0.754,2.356,0.728,2.429,3.203,1.781,0.382,1.583,1.117,0.607,2.901,1.168,0.57,1.407,0.678,1.889,0.73,0.867,1.137,0.657,0.971,0.531,1.034,1.358,0.531,1.401 +XM_208319,0.971,0.869,1.015,1.057,0.916,0.961,0.788,0.897,0.885,0.991,1.131,1.051,0.992,1.089,0.954,0.925,0.941,1.083,1.024,0.929,1.215,0.965,0.992,1.038,0.975,1.025,0.986,1.193,0.943,0.945,0.89,0.964,0.925,1.03,0.946,1.109,1.242,0.984,1.054,1.052,1.058,1.104,1.014,1.012,0.99,1.008,0.974,1.048,0.994,1.0,1.005,0.932,0.98,0.91 +XM_208476,0.914,0.974,0.963,1.171,0.987,1.068,0.924,1.174,1.016,0.95,1.002,1.057,0.845,0.839,1.084,0.879,0.895,1.043,1.155,0.897,0.855,0.977,0.97,1.091,0.943,1.168,0.77,1.022,1.061,1.081,0.937,0.942,1.023,0.907,0.872,1.112,1.088,1.002,1.068,0.896,1.074,0.979,0.971,1.104,1.122,0.945,1.026,1.059,1.018,0.861,1.095,1.014,1.213,0.988 +XM_208489,1.018,1.101,0.968,0.979,1.074,0.971,1.242,0.934,1.047,0.941,0.958,1.02,0.813,0.95,1.0,1.025,1.037,0.89,0.932,1.044,0.979,0.991,0.815,1.032,1.011,0.935,1.039,1.099,1.058,1.0,0.973,1.028,1.004,1.098,0.908,1.051,0.95,1.009,0.92,1.061,0.974,1.004,1.199,1.003,0.981,0.802,0.93,0.915,1.081,1.066,0.959,0.934,1.055,0.856 +XM_208502,0.771,1.252,1.009,0.7,1.047,1.038,0.928,0.809,0.99,1.004,0.997,0.884,0.927,0.988,1.046,1.091,0.976,0.975,0.982,0.974,1.075,0.964,1.115,0.916,0.881,0.864,1.118,1.108,0.774,0.974,1.121,1.005,1.494,1.248,0.895,0.843,1.157,1.003,1.121,1.037,0.778,1.032,0.914,1.063,1.046,0.926,1.083,0.892,0.768,0.93,1.07,1.135,1.01,1.005 +XM_208504,1.044,1.069,1.077,1.058,0.949,0.994,0.962,0.931,0.926,1.068,0.969,1.028,0.968,0.968,1.006,1.011,1.047,0.888,1.002,1.001,1.043,1.035,1.026,1.053,0.943,0.952,0.914,1.014,0.973,0.925,1.033,0.972,0.998,0.98,1.058,1.014,0.994,1.02,1.004,1.091,1.01,0.907,1.099,0.978,1.021,1.031,0.973,1.051,0.964,0.963,0.913,1.087,0.976,0.946 +XM_208522,0.914,0.872,1.016,0.961,1.152,1.08,1.092,1.096,0.969,0.918,0.947,0.944,1.05,0.964,0.823,0.982,1.042,1.11,0.899,0.972,1.133,1.056,0.907,0.912,0.981,1.006,1.016,1.092,1.003,1.068,0.964,1.086,1.066,1.146,0.844,0.887,1.012,0.961,1.089,0.865,1.136,1.022,0.99,1.003,0.917,1.033,1.0,1.118,0.985,0.984,0.984,1.118,0.998,1.069 +XM_208524,0.959,0.899,0.913,1.078,0.989,0.942,1.13,1.063,1.099,1.014,0.866,0.996,1.04,1.029,0.888,1.142,0.918,0.976,0.951,1.175,0.896,1.202,0.89,0.91,0.996,0.96,1.026,0.959,1.459,1.081,1.036,1.722,1.268,1.009,0.887,0.959,1.02,1.038,1.29,0.97,0.878,0.826,0.867,0.926,0.928,0.967,0.892,1.011,0.936,1.079,1.083,0.974,0.996,0.954 +XM_208529,0.735,1.015,1.301,0.793,0.808,1.195,0.786,0.716,0.898,0.878,1.033,0.923,0.743,0.771,0.938,1.08,0.828,0.845,1.157,1.18,0.835,0.939,1.205,0.936,0.937,0.754,1.27,0.896,0.664,1.593,0.871,1.364,1.613,1.236,0.538,1.203,1.008,0.816,1.128,1.077,1.053,1.201,0.685,0.88,0.852,0.939,0.894,0.697,1.083,0.785,0.971,0.901,1.019,1.081 +XM_208530,1.001,1.037,1.053,1.05,1.018,0.965,1.099,0.803,0.934,1.136,1.039,0.879,1.012,1.07,0.879,1.202,1.026,1.072,1.102,1.097,0.958,1.092,0.896,0.913,0.971,0.951,1.04,0.956,0.78,0.908,0.966,1.084,1.0,0.821,1.06,1.115,1.021,1.032,0.913,0.933,1.078,1.065,1.168,1.131,1.094,1.134,0.957,0.902,0.935,0.872,1.003,1.113,0.834,1.064 +XM_208535,1.005,1.009,0.992,1.062,1.041,1.082,0.883,0.942,1.029,0.989,0.98,0.996,1.143,0.922,0.953,0.951,0.889,0.937,0.944,0.981,0.863,0.999,1.038,1.04,1.01,0.979,1.188,1.026,1.06,1.023,0.969,0.955,0.944,0.88,0.981,1.026,1.098,0.955,0.987,0.984,1.155,1.055,1.011,0.897,0.892,0.915,1.02,1.058,1.027,1.047,1.036,0.974,0.965,1.012 +XM_208541,0.877,1.068,1.049,1.015,1.013,1.025,1.083,1.096,0.886,0.916,0.912,1.011,0.928,0.875,0.972,1.08,0.975,1.03,0.939,1.104,0.949,1.03,1.046,0.907,0.882,1.062,1.022,0.994,1.081,0.904,0.929,1.026,0.985,1.093,1.06,1.018,1.012,1.12,0.965,0.971,1.0,0.998,1.122,0.848,1.08,1.056,0.914,0.918,1.0,1.065,1.049,1.061,0.889,0.928 +XM_208543,1.049,0.963,0.976,1.003,1.035,0.9,1.277,0.988,0.905,1.049,0.958,1.075,1.001,1.181,0.968,1.003,0.999,1.195,0.968,1.075,1.182,0.989,0.93,0.926,0.944,0.967,1.046,1.125,1.168,1.036,0.979,0.861,0.937,1.028,1.121,0.964,1.023,1.008,0.881,0.983,1.065,0.942,1.2,0.928,1.1,1.038,0.998,0.921,0.987,0.95,0.997,1.028,0.954,1.036 +XM_208568,0.912,0.939,0.963,1.0,1.145,1.002,1.054,1.093,0.977,1.002,1.007,1.013,0.895,1.122,1.255,0.958,1.156,1.311,0.963,0.985,0.858,0.884,1.03,0.979,0.985,1.094,0.882,1.002,1.073,0.857,1.094,1.076,1.088,1.247,1.013,0.896,0.935,1.003,0.985,1.085,0.951,1.016,1.102,0.881,0.998,1.001,0.849,0.964,1.071,1.091,1.13,0.988,0.984,1.085 +XM_208604,1.029,0.94,1.056,0.996,0.934,1.058,1.116,1.282,0.977,1.123,0.993,1.0,0.891,0.997,1.134,0.951,1.03,1.008,0.941,0.961,1.034,1.175,0.812,1.11,1.026,1.031,0.977,0.999,1.042,1.055,1.031,0.824,0.819,1.052,0.915,1.065,0.98,0.884,1.037,1.006,1.184,0.891,1.014,0.904,1.101,0.917,0.974,0.982,1.111,0.968,1.046,0.975,0.966,0.891 +XM_208612,1.021,0.923,0.929,1.077,1.023,1.022,1.089,0.966,1.216,1.023,0.91,1.122,1.071,1.037,1.001,1.102,0.984,0.966,1.023,1.076,1.025,1.048,1.062,1.013,1.071,1.018,1.103,0.972,1.066,0.886,1.13,0.837,0.966,0.847,1.166,0.878,1.043,0.939,1.067,0.925,1.015,1.031,0.986,0.917,0.949,1.014,0.943,0.975,0.917,0.986,1.074,1.033,0.899,0.887 +XM_208635,0.944,0.837,0.962,0.996,1.017,1.033,0.822,1.026,1.001,0.984,1.171,1.106,1.057,1.063,1.19,0.894,1.047,0.849,0.904,0.971,0.977,0.998,0.956,1.003,1.068,1.16,1.049,1.032,0.802,0.992,0.883,1.038,1.07,0.908,0.995,0.883,1.11,1.044,0.902,0.955,1.002,0.964,0.797,1.03,1.066,1.029,1.158,1.045,1.0,0.999,0.947,1.004,1.045,1.025 +XM_208647,0.869,0.922,1.137,0.923,1.032,0.835,0.82,0.715,1.087,0.992,1.2,0.875,0.911,0.626,0.892,1.615,0.926,1.075,1.568,0.872,0.905,0.845,1.077,1.05,0.84,1.021,1.394,0.921,0.563,0.972,0.89,0.827,1.105,1.348,0.632,1.052,0.854,0.927,1.167,0.991,1.047,0.996,0.837,1.323,1.276,0.887,1.018,0.906,1.058,1.165,0.787,0.779,1.501,1.249 +XM_208656,0.989,0.837,1.042,0.942,0.988,1.131,0.908,1.087,1.11,1.0,0.937,0.944,1.071,0.854,0.936,0.895,0.972,0.933,1.032,0.99,0.984,0.931,0.955,1.046,0.986,1.027,1.063,1.072,0.935,1.066,1.048,1.249,1.088,1.056,0.887,0.939,1.039,1.043,1.031,1.162,0.872,0.906,1.035,0.988,0.96,1.006,1.043,0.941,0.914,0.896,0.931,0.87,0.945,1.144 +XM_208658,0.581,1.822,1.109,0.783,0.824,2.773,1.703,0.867,0.91,0.607,1.25,0.907,0.872,0.587,1.361,2.773,0.863,1.612,0.447,2.013,0.19,1.088,1.824,1.028,1.548,0.308,1.51,0.653,0.17,2.735,0.856,1.042,1.278,2.462,0.322,0.298,2.221,0.881,2.759,0.681,0.81,1.79,0.18,0.288,0.857,1.862,1.032,0.766,1.581,0.542,2.104,0.595,0.234,1.55 +XM_208665,0.881,1.131,1.056,0.893,0.967,0.934,1.065,1.078,0.964,0.98,1.077,1.092,1.035,0.954,0.74,0.943,1.087,1.028,0.984,0.971,0.933,0.993,0.967,0.981,0.998,0.901,0.927,1.116,1.006,1.058,1.009,0.917,1.053,0.895,0.976,1.008,0.907,1.133,0.758,1.033,1.036,1.178,1.136,0.871,0.935,1.071,0.917,0.947,1.002,1.03,1.037,1.033,0.976,1.125 +XM_208667,0.887,1.0,0.988,1.01,0.947,0.984,0.958,0.989,0.809,1.084,0.893,1.038,0.962,0.806,1.019,1.041,1.039,1.026,1.065,1.095,0.984,1.003,0.949,0.924,1.02,0.828,0.995,1.035,0.874,1.07,1.088,0.964,0.922,1.001,1.198,0.971,0.931,1.028,0.835,0.917,0.968,1.09,0.99,1.053,1.035,0.997,1.013,1.057,1.0,0.934,0.926,1.03,0.795,0.976 +XM_208731,0.99,0.992,1.145,1.055,0.939,0.925,1.117,0.87,1.227,0.999,0.987,0.961,0.949,0.942,0.933,1.018,0.991,0.867,1.002,0.99,0.988,1.112,1.017,0.917,1.026,1.003,0.813,0.946,0.907,1.068,1.001,0.935,0.96,1.057,1.029,1.014,1.087,0.948,0.924,1.103,1.096,1.022,1.039,0.96,0.969,0.922,1.079,0.98,0.968,1.075,1.165,1.09,1.002,0.997 +XM_208746,1.086,1.008,1.003,1.015,0.954,1.024,1.173,0.958,1.129,1.0,1.157,0.922,0.974,1.11,0.95,0.903,0.969,0.975,0.855,1.13,1.103,1.012,1.065,1.05,1.025,1.095,1.008,0.955,1.09,0.902,0.884,1.054,1.047,0.889,1.149,0.974,0.984,0.912,1.074,1.094,0.978,0.983,0.986,1.032,1.04,1.017,0.964,0.994,1.089,1.114,0.968,1.012,1.036,1.0 +XM_208748,1.083,1.062,1.0,1.007,1.136,0.978,0.923,0.882,1.02,1.125,0.995,0.884,0.914,1.0,1.029,0.948,1.126,0.962,0.871,1.005,0.939,0.91,0.976,0.957,0.969,1.03,1.087,1.064,0.97,1.091,1.116,1.08,0.903,0.986,0.963,0.992,0.991,0.94,1.061,0.975,1.096,1.034,0.892,1.033,1.002,0.969,1.042,0.972,1.029,0.943,0.972,0.953,1.017,0.98 +XM_208766,0.709,0.914,1.031,0.675,0.889,1.068,0.577,0.356,1.257,1.014,1.096,0.534,0.349,0.596,0.9,1.259,0.903,0.899,0.92,1.278,0.566,0.739,1.253,1.127,0.517,0.732,1.012,0.754,0.49,1.313,0.842,1.63,1.336,1.21,0.281,0.917,1.046,1.0,1.54,0.594,1.111,1.085,0.89,1.765,1.0,1.232,1.113,0.795,1.076,0.696,1.255,0.61,0.987,0.752 +XM_208773,1.549,0.979,1.117,1.133,1.938,0.905,0.75,2.623,2.324,0.987,0.882,1.178,1.108,1.242,1.771,0.984,1.376,0.935,1.255,0.931,0.891,1.372,1.042,0.952,0.933,1.224,1.197,1.953,0.934,1.003,2.576,0.914,1.252,0.984,5.447,0.997,0.873,1.547,0.883,0.963,2.157,0.89,0.794,0.911,1.536,0.968,1.253,2.258,0.871,1.053,0.963,1.057,0.901,0.97 +XM_208776,0.869,1.096,0.984,1.002,1.017,1.021,1.058,1.131,1.068,0.999,0.863,1.026,0.955,1.078,0.988,1.085,0.954,0.875,0.943,1.024,1.0,1.064,0.946,1.024,1.118,0.869,0.92,0.95,1.184,0.999,0.919,0.859,1.089,0.98,1.082,0.957,1.032,1.065,0.93,1.059,1.029,0.965,1.122,1.031,1.175,0.926,1.07,0.956,0.992,1.014,1.064,0.962,1.006,0.974 +XM_208778,0.852,0.931,0.883,1.172,1.05,1.122,1.066,1.006,0.92,1.012,1.165,1.068,1.041,1.048,0.779,1.058,0.986,0.949,0.944,0.947,0.972,0.913,1.245,0.968,1.013,1.103,0.924,1.033,0.867,0.898,0.939,1.08,1.079,1.057,0.997,0.933,1.12,0.952,1.055,0.991,1.008,1.127,1.127,1.025,1.039,1.051,1.062,0.85,1.113,1.004,1.03,1.091,1.073,0.943 +XM_208800,1.005,0.939,0.989,0.986,0.941,1.056,1.135,0.976,0.925,1.04,0.968,0.986,1.06,1.104,0.999,0.98,0.979,1.048,0.904,0.962,1.076,1.051,1.062,1.038,0.989,0.932,1.102,0.923,0.934,0.926,1.082,0.858,0.97,0.954,1.052,1.075,1.026,0.968,1.009,1.022,1.134,1.045,0.955,0.974,1.097,0.848,0.967,0.97,1.027,0.979,1.026,0.988,1.042,1.098 +XM_208806,1.023,0.849,0.995,0.902,0.99,0.969,1.011,0.973,0.88,0.985,1.044,1.046,0.914,1.185,1.093,1.059,1.116,0.951,0.957,1.057,1.046,0.974,1.044,1.067,0.954,0.957,0.906,1.066,1.3,1.036,1.074,1.017,1.121,1.048,0.893,0.954,0.996,1.047,1.018,0.951,0.962,1.074,1.092,0.885,1.101,1.029,1.019,0.9,1.11,1.069,0.96,1.02,0.929,0.922 +XM_208809,1.0,1.121,1.079,1.134,0.984,1.021,1.082,1.028,1.112,0.911,0.843,0.97,0.948,0.935,1.02,1.039,1.058,1.203,1.019,1.057,0.896,0.992,1.205,0.995,1.065,0.931,1.017,1.015,0.906,0.923,0.839,1.079,0.9,1.081,1.043,1.157,0.93,1.102,1.055,1.024,0.99,1.032,0.822,0.971,1.042,0.97,1.047,0.993,0.915,1.095,1.033,0.953,1.043,0.906 +XM_208847,0.959,1.112,0.948,0.997,0.994,0.943,0.976,0.888,1.028,1.061,0.862,1.024,1.016,1.022,0.812,1.032,0.938,0.814,1.016,1.096,1.081,1.183,0.984,0.901,0.985,1.019,1.068,1.091,0.916,0.934,1.021,0.944,1.037,0.951,1.104,0.942,0.906,0.921,0.912,0.964,1.158,0.91,0.945,1.058,0.966,0.948,1.065,0.987,0.998,1.053,0.922,1.058,1.028,1.005 +XM_208859,0.89,1.042,1.063,1.072,0.872,1.017,0.967,1.083,0.972,0.964,0.854,0.885,1.071,0.957,1.046,0.951,1.047,0.988,0.962,1.044,0.915,0.973,0.971,0.969,1.028,1.022,1.035,1.046,0.976,1.004,1.221,1.187,0.942,1.03,0.87,1.008,0.965,1.004,1.045,1.002,0.889,1.0,0.971,0.893,1.136,0.956,0.928,1.096,1.078,0.959,0.936,0.964,1.0,1.103 +XM_208880,0.889,6.403,0.879,0.973,1.3,4.46,1.201,0.701,1.149,1.0,0.857,1.219,0.793,0.73,0.815,0.803,1.004,1.619,1.013,2.464,0.815,0.886,0.804,1.176,1.53,0.81,1.197,0.879,0.661,1.348,0.885,1.016,1.046,4.345,0.796,1.196,1.162,0.864,7.352,1.339,0.746,1.666,0.643,0.793,1.898,0.986,2.034,0.813,0.815,1.0,0.844,1.017,0.874,2.016 +XM_208887,0.951,0.985,1.002,1.015,1.021,1.028,0.865,0.838,0.813,0.99,1.053,0.949,0.919,0.862,1.099,1.332,0.844,1.106,0.982,0.953,0.987,0.909,1.0,1.03,1.203,1.063,0.923,0.93,1.151,1.016,1.029,1.023,1.374,0.932,0.958,1.081,1.087,0.951,1.165,1.04,1.113,0.853,0.939,1.235,0.873,0.942,1.07,0.959,0.949,0.792,1.027,0.989,1.006,0.99 +XM_208927,0.958,0.955,1.032,1.019,1.123,1.046,0.963,0.924,1.055,1.0,1.036,1.056,0.982,0.942,0.905,0.98,1.078,0.951,0.891,0.93,0.92,0.939,0.944,0.888,1.067,1.039,0.959,1.035,1.434,1.041,0.972,1.005,0.984,1.04,1.051,1.037,1.001,0.968,1.031,0.989,1.041,0.863,0.931,1.008,0.978,1.014,1.017,1.036,1.102,1.083,1.08,1.092,0.895,0.985 +XM_208930,0.831,0.87,0.995,0.829,0.99,1.023,0.823,1.083,1.067,0.937,1.085,1.022,1.046,1.028,0.905,1.032,0.905,0.943,1.1,0.977,0.964,1.047,0.875,1.176,0.846,0.887,1.086,1.265,0.976,0.973,0.881,2.081,1.333,0.973,1.018,1.042,0.803,1.122,1.026,1.046,1.119,1.111,1.043,0.981,0.926,0.996,0.963,1.055,0.99,1.05,1.229,0.941,1.122,0.966 +XM_208937,1.164,0.959,1.042,1.091,1.018,1.006,1.098,0.914,0.855,1.098,1.001,0.985,0.945,0.871,0.804,1.246,1.017,0.874,0.909,1.168,1.14,1.062,1.208,0.97,1.117,1.153,1.113,0.999,1.781,0.981,1.076,0.93,0.899,1.002,0.872,1.031,1.018,1.082,1.167,0.887,1.107,1.011,0.927,1.005,1.011,0.949,0.949,0.967,1.123,0.993,0.992,1.074,1.109,0.835 +XM_208941,1.018,1.027,0.993,0.977,1.011,1.092,0.852,1.029,1.121,0.813,0.966,0.928,1.022,0.941,0.966,0.985,1.033,0.926,0.937,1.04,1.107,1.075,0.872,0.972,0.977,1.074,0.985,1.0,0.999,1.131,1.058,1.073,1.002,0.9,0.941,1.009,1.097,0.959,0.91,1.173,0.914,1.141,0.971,0.936,1.092,1.016,0.907,1.007,0.92,0.938,0.971,0.926,0.854,0.938 +XM_208944,0.826,1.047,0.861,1.039,1.031,1.125,0.811,0.749,0.869,0.866,1.118,1.013,0.772,0.743,0.849,1.302,0.878,1.047,1.067,0.94,0.962,0.962,1.015,0.939,0.872,1.079,0.956,0.791,1.001,1.169,0.794,1.252,1.546,1.16,0.678,1.326,0.999,0.867,1.639,1.03,0.858,0.988,0.908,2.23,0.881,1.003,0.827,0.882,0.911,1.012,0.977,0.96,0.966,1.43 +XM_208990,1.019,0.987,1.065,0.889,0.987,0.97,1.026,1.001,0.973,1.205,0.9,1.067,0.947,1.006,1.106,0.996,1.046,0.891,0.977,1.052,0.918,0.95,0.917,0.943,0.918,1.03,1.164,0.945,0.998,1.046,0.852,1.097,0.916,0.95,1.078,0.995,1.048,1.053,1.112,0.963,0.995,1.14,0.952,0.951,1.038,0.935,1.075,1.235,1.016,0.882,0.953,1.042,0.854,0.932 +XM_209041,1.186,0.952,1.036,1.024,0.986,0.861,1.0,1.051,1.115,1.124,0.79,0.978,0.95,0.821,0.993,0.943,1.03,0.889,0.922,0.966,0.991,0.99,1.035,0.909,0.998,1.072,1.039,1.128,1.135,1.08,1.23,0.959,0.987,1.021,0.948,1.035,0.979,1.23,1.068,1.0,1.173,1.078,1.395,0.915,0.859,0.911,1.099,1.049,0.919,0.912,1.18,0.948,1.116,1.067 +XM_209046,0.967,0.989,1.127,0.885,0.94,1.055,0.847,0.942,1.034,0.882,0.938,0.955,0.934,0.917,1.106,0.986,0.995,0.95,0.873,1.055,0.778,0.891,1.069,1.006,0.982,0.968,0.892,1.01,1.024,1.213,0.937,1.019,0.914,1.127,0.938,1.061,0.985,0.95,1.074,1.059,1.008,1.073,0.904,1.04,0.938,0.986,1.058,0.913,1.085,1.038,1.041,0.903,0.946,1.033 +XM_209059,1.029,0.974,0.992,0.94,1.049,1.029,1.371,0.982,1.083,0.952,0.957,1.054,1.006,0.994,1.19,1.017,0.997,0.926,1.061,0.965,1.066,1.009,0.887,1.094,1.046,0.991,0.947,1.104,1.052,0.926,1.002,1.025,0.881,1.028,1.089,0.981,0.965,1.06,0.978,0.999,1.04,0.931,0.85,0.969,1.053,0.909,1.106,0.989,1.091,1.01,1.044,1.053,1.076,1.107 +XM_209073,1.445,0.644,1.632,0.735,1.169,0.973,0.511,1.011,1.66,1.059,1.254,0.991,1.295,1.091,1.124,1.542,1.194,0.86,2.156,0.574,0.871,1.263,0.774,1.369,0.554,1.209,1.426,1.178,0.487,0.858,1.57,1.292,1.304,1.318,0.775,0.39,0.896,1.089,1.38,0.736,1.502,0.947,0.634,1.233,1.532,0.847,1.084,1.627,0.913,1.534,0.707,0.676,1.566,1.344 +XM_209100,1.057,0.948,0.992,1.041,1.126,0.994,1.273,0.98,0.86,0.918,1.021,0.908,0.92,1.247,1.059,0.954,0.913,1.09,1.02,1.068,1.079,0.895,0.917,1.039,1.039,1.08,0.937,1.087,1.1,1.048,0.987,0.932,0.86,0.928,0.99,1.105,1.043,0.921,1.014,0.985,0.947,1.052,1.0,0.962,0.98,1.097,0.951,1.069,1.005,1.127,0.98,1.079,1.149,0.98 +XM_209104,0.894,1.06,1.038,1.146,1.055,0.974,0.936,1.036,0.876,0.982,0.926,0.93,1.071,1.014,1.08,0.978,1.008,1.013,1.227,0.898,1.061,0.942,1.038,1.186,1.018,1.1,0.963,1.075,0.837,0.898,1.119,1.145,1.147,1.037,0.989,1.291,1.054,1.135,1.036,0.935,0.958,0.883,0.915,1.328,0.996,0.97,0.999,0.976,0.892,1.115,1.031,0.85,1.13,0.932 +XM_209108,1.032,1.208,0.901,1.208,0.834,1.068,1.076,0.926,1.116,0.881,1.106,0.819,0.952,1.071,1.35,1.066,0.998,1.001,0.882,0.968,0.887,1.298,1.277,1.037,1.057,0.901,1.159,0.919,1.548,0.995,1.019,0.927,0.964,1.196,1.102,1.131,0.963,1.109,1.086,0.975,0.938,1.175,1.261,0.903,1.033,0.848,1.025,1.088,0.99,1.145,0.971,0.998,0.961,1.18 +XM_209111,1.0,1.08,1.028,0.928,0.971,0.959,1.151,1.113,1.094,1.094,0.916,0.962,1.035,0.917,1.079,0.978,1.049,1.215,0.949,0.973,0.943,1.061,1.049,1.028,1.121,0.961,0.801,1.039,1.032,1.08,0.984,0.969,2.163,0.972,0.908,0.867,1.094,0.963,1.0,1.022,1.063,1.011,0.86,0.999,1.092,0.958,0.93,0.99,0.905,1.002,0.953,1.11,1.132,0.934 +XM_209120,1.183,0.896,1.307,0.955,1.102,0.838,0.858,1.138,1.116,1.31,0.88,1.161,1.317,0.853,0.947,0.878,1.237,1.506,1.208,1.035,1.122,1.255,0.834,1.536,0.838,1.243,1.409,1.151,0.638,0.91,1.124,1.253,1.057,0.992,0.922,0.692,0.861,1.621,0.997,0.878,1.186,1.014,0.752,0.768,1.286,0.953,1.239,1.198,0.819,1.222,0.987,0.873,1.289,1.079 +XM_209138,2.877,0.721,1.795,1.168,1.855,0.649,0.711,1.86,2.824,2.223,0.678,1.69,2.234,1.709,1.33,1.185,1.09,1.162,3.961,0.675,1.813,2.833,0.704,2.335,0.722,2.64,1.686,1.498,0.558,0.72,2.557,0.928,1.598,0.862,2.242,0.729,0.642,1.319,0.677,0.859,1.81,0.774,0.574,0.938,2.607,0.709,1.41,2.596,0.703,1.884,0.792,0.892,2.191,0.765 +XM_209140,1.013,0.936,1.086,1.144,0.993,1.048,0.918,1.041,0.97,1.106,0.924,0.934,0.985,1.024,0.906,1.049,0.971,1.016,0.965,0.945,1.227,0.989,1.112,1.125,1.051,1.111,1.051,0.888,0.871,1.073,1.039,0.929,0.883,0.945,0.972,0.976,1.013,0.966,1.042,0.931,1.088,0.907,0.816,1.011,0.954,0.963,1.057,1.009,1.033,1.088,1.005,1.0,0.914,1.052 +XM_209145,0.976,0.844,0.856,1.149,1.007,1.013,0.965,0.827,0.804,0.984,1.12,0.948,0.951,0.87,1.015,0.882,1.195,1.083,0.988,0.914,1.0,1.034,1.009,1.01,1.015,1.081,1.0,1.042,1.355,0.922,1.055,0.845,0.906,0.862,0.963,0.967,1.152,0.986,1.091,1.154,0.892,1.069,0.778,0.979,1.146,1.164,0.988,1.06,1.134,1.008,0.945,1.075,1.084,0.949 +XM_209149,1.084,1.068,1.081,0.98,0.988,0.914,1.003,1.03,1.068,1.146,0.89,1.092,0.941,0.869,1.104,0.925,1.042,1.015,1.068,1.035,0.989,0.915,1.002,0.977,1.034,0.875,1.034,1.016,0.713,1.04,1.006,0.998,1.021,0.993,0.991,1.028,0.979,1.134,0.962,0.971,0.971,1.061,1.165,1.05,0.884,0.972,1.056,0.985,1.029,1.011,1.035,0.943,0.908,0.986 +XM_209154,1.02,0.83,1.23,1.021,0.958,0.844,0.907,0.783,0.925,0.997,0.95,1.003,1.103,0.999,1.042,1.087,1.031,1.03,0.978,1.15,1.025,0.91,1.031,1.005,0.95,1.018,0.92,0.941,1.555,0.976,1.03,1.022,1.06,0.972,1.147,1.027,0.946,0.976,0.887,1.036,0.939,0.981,0.994,1.004,1.051,0.993,1.036,1.046,1.063,0.934,0.868,1.049,1.106,0.949 +XM_209155,1.12,1.013,1.097,0.986,1.163,0.969,0.883,0.879,1.072,1.049,0.867,1.01,0.922,0.987,1.182,1.135,0.953,0.931,0.968,1.017,1.109,0.84,0.966,0.944,0.871,0.94,1.186,1.02,0.923,1.067,1.083,0.973,1.01,1.013,1.062,0.882,1.001,0.984,0.993,1.017,1.04,0.95,1.202,1.059,1.018,0.988,1.001,0.999,0.958,0.891,0.987,0.885,0.946,1.109 +XM_209163,1.273,0.863,0.837,0.958,0.946,1.08,1.117,0.955,1.133,0.958,1.012,0.967,1.065,0.779,0.872,1.004,1.04,0.961,1.307,1.097,1.066,0.943,1.028,0.882,1.106,1.066,0.886,1.188,0.983,0.909,0.957,0.729,0.923,1.12,0.927,1.095,1.012,1.116,0.924,1.126,1.033,0.882,1.077,1.004,0.989,0.955,1.008,1.038,1.009,0.934,0.911,1.196,1.103,0.977 +XM_209183,1.113,1.02,1.131,0.897,1.005,0.965,0.984,1.168,1.031,0.975,0.989,0.957,1.234,1.131,1.022,1.03,1.011,0.992,0.821,0.858,0.935,1.022,1.068,0.986,1.097,1.091,1.019,1.003,1.08,1.009,0.976,0.998,1.27,1.058,0.913,1.009,0.993,1.048,0.944,1.051,0.984,1.055,1.341,0.971,1.002,0.85,0.993,0.997,0.921,1.012,1.034,1.121,1.266,1.002 +XM_209187,0.939,0.926,0.827,1.081,0.914,1.078,1.012,1.183,0.915,0.912,0.963,0.991,1.078,1.146,0.926,1.086,0.91,0.977,1.022,0.905,0.905,0.953,0.963,0.949,1.007,1.007,1.109,0.939,1.249,1.034,0.843,0.915,0.98,0.889,1.032,0.996,0.908,1.003,1.077,0.9,0.963,0.943,1.174,1.004,0.972,0.94,0.988,0.91,1.228,0.972,1.143,1.064,0.948,0.988 +XM_209196,0.124,2.574,0.118,1.795,0.129,3.483,1.097,0.12,0.114,0.121,5.083,0.152,0.107,0.118,2.137,10.03,0.118,0.513,0.101,4.001,0.137,0.114,0.897,0.122,2.695,0.147,0.135,0.15,1.807,4.65,0.112,1.04,0.173,3.104,0.16,0.887,4.171,0.12,3.763,0.399,0.111,5.196,2.871,0.581,0.113,3.947,1.648,0.107,1.272,0.115,2.519,0.265,0.119,0.123 +XM_209204,0.885,1.424,1.068,0.905,0.998,1.243,0.975,0.667,1.071,0.689,1.394,0.749,0.812,1.022,0.984,1.089,0.999,1.095,1.099,1.229,0.668,0.87,1.121,0.88,0.945,1.001,0.911,1.039,0.811,1.759,0.941,1.465,0.832,1.371,0.546,0.69,1.204,0.942,1.18,0.84,1.006,1.523,0.705,0.786,0.708,0.995,1.048,0.912,0.696,0.782,1.092,0.869,0.826,1.129 +XM_209216,1.007,0.905,1.391,1.108,0.975,1.006,0.917,0.9,1.576,0.971,0.889,1.43,0.972,1.445,1.305,0.868,1.12,0.875,0.904,0.943,0.815,0.994,0.883,1.421,0.76,1.049,1.442,0.903,0.585,0.941,1.16,1.508,1.192,0.814,1.033,1.02,0.782,1.052,1.1,3.476,0.984,0.855,0.629,1.036,1.125,0.796,0.975,0.931,0.918,0.949,0.873,1.119,0.963,2.214 +XM_209224,0.965,1.046,0.921,0.924,1.091,0.953,1.153,1.05,1.062,0.921,0.938,0.93,1.013,1.179,1.056,0.974,1.176,1.011,1.013,0.991,0.944,1.028,1.039,0.992,1.005,1.024,0.979,1.048,0.963,0.912,0.934,1.055,0.944,0.85,1.009,1.046,1.084,0.911,0.982,0.997,1.008,0.913,1.014,0.94,0.94,1.029,0.998,1.098,0.896,1.039,0.953,0.873,1.019,0.868 +XM_209237,0.936,0.938,0.927,0.846,1.016,0.927,1.204,1.067,0.989,1.086,1.005,0.957,0.982,1.142,0.941,1.091,1.022,0.89,0.875,0.962,1.039,0.872,0.924,1.018,0.937,1.069,1.059,1.047,1.186,1.017,1.114,1.133,1.002,1.032,0.978,1.081,0.957,1.116,1.025,1.017,1.015,0.994,1.156,1.0,0.935,0.903,1.042,0.998,1.044,0.981,1.072,1.032,1.078,1.021 +XM_209252,0.933,0.966,0.957,1.01,0.829,0.999,1.095,1.042,1.051,1.011,0.9,1.148,0.948,1.066,0.903,1.023,0.917,0.93,0.824,1.027,1.011,1.041,1.042,0.974,0.953,1.041,0.973,1.029,1.648,1.044,1.02,1.115,1.033,1.188,1.014,1.041,1.099,1.028,0.952,1.12,1.012,1.0,0.884,1.039,0.966,0.975,0.896,1.0,0.966,1.058,0.91,1.114,0.939,1.032 +XM_209254,1.029,1.016,1.038,0.898,1.042,0.999,1.103,0.986,0.953,0.974,0.944,0.892,0.93,0.971,0.885,1.071,0.961,1.03,0.877,1.164,1.138,1.087,1.083,0.978,1.012,0.973,0.792,1.065,1.673,0.98,0.986,1.029,1.046,1.03,1.05,0.93,1.041,0.969,1.043,0.909,1.139,1.135,0.955,0.823,0.918,0.967,1.044,1.052,0.966,0.864,1.076,0.832,1.005,0.94 +XM_209256,1.104,0.959,1.024,0.978,0.998,1.121,0.88,1.046,1.0,0.985,0.881,1.104,1.028,0.945,0.896,0.931,1.11,1.136,1.074,1.003,1.031,1.03,1.014,0.989,1.066,0.926,1.086,0.977,0.787,1.02,1.018,0.974,1.038,0.962,1.035,1.011,0.966,0.916,1.046,0.918,0.936,0.959,1.124,1.001,0.985,1.094,1.06,0.994,0.923,0.997,1.04,0.959,1.034,0.935 +XM_209312,0.962,1.163,0.98,1.015,0.919,0.999,1.017,1.03,0.971,1.066,0.828,1.136,0.898,0.872,1.14,1.008,0.928,1.011,0.892,1.021,1.035,0.942,1.092,0.98,1.062,1.024,0.951,1.001,0.87,0.967,0.891,1.087,1.01,1.174,1.004,1.029,0.814,1.166,1.023,1.022,1.061,1.042,0.968,1.084,0.991,0.832,0.896,1.065,1.017,1.185,0.939,1.032,1.096,0.924 +XM_209313,0.94,1.147,1.126,1.045,0.929,1.035,0.954,0.939,0.931,1.037,0.912,0.976,1.007,0.887,0.948,0.936,0.805,1.028,1.057,0.984,0.991,1.166,0.993,1.009,1.045,1.039,1.079,1.0,0.762,0.916,1.06,0.964,0.911,0.831,0.882,0.961,1.041,0.942,0.967,1.089,0.874,0.935,1.047,1.036,1.03,1.05,0.807,1.073,1.084,1.042,1.094,1.029,1.032,0.999 +XM_209322,0.958,0.949,0.993,1.002,1.015,0.974,1.013,1.188,0.982,0.951,0.934,0.898,0.893,1.077,1.041,1.041,0.996,0.993,1.038,1.015,1.035,0.893,0.91,1.012,1.031,0.957,1.029,1.018,1.058,1.107,0.98,0.987,0.998,1.041,1.042,1.023,0.994,1.069,0.955,1.129,0.937,1.017,0.999,0.971,1.109,0.842,1.036,1.03,0.863,0.889,0.961,0.883,1.028,1.049 +XM_209327,0.927,0.974,1.078,1.059,0.985,1.022,0.866,1.027,0.979,0.923,1.014,1.013,0.983,0.809,1.009,1.031,0.94,1.021,1.043,0.984,0.888,1.018,0.978,1.044,1.009,1.113,1.074,1.027,0.901,1.07,1.065,0.933,1.035,1.019,1.028,1.063,0.974,0.954,0.998,0.976,0.893,0.941,1.157,0.928,1.022,1.016,1.018,1.015,0.938,1.086,0.983,1.017,1.091,0.996 +XM_209337,0.836,0.941,1.363,0.764,0.718,1.437,1.167,1.012,0.943,0.985,1.024,1.181,1.243,0.838,1.161,1.744,1.085,1.13,0.734,1.34,0.662,1.323,1.132,1.659,0.825,0.744,1.69,0.857,0.698,1.626,1.204,1.584,1.699,0.939,0.696,0.857,1.084,1.439,1.275,1.181,0.955,0.929,0.588,0.74,0.973,1.226,1.561,0.939,1.711,0.853,1.324,0.882,0.699,1.559 +XM_209363,1.09,0.858,1.03,1.007,1.014,0.971,1.094,0.886,0.967,1.006,1.016,1.007,1.063,0.829,0.905,1.042,1.14,0.98,0.95,0.94,0.937,1.001,1.0,1.133,1.078,0.865,0.988,1.098,0.912,1.021,1.071,1.165,0.969,0.959,1.128,0.804,0.932,0.987,0.985,1.084,0.931,1.07,0.919,1.197,1.024,0.762,0.866,0.855,0.884,1.067,1.047,1.059,1.138,1.088 +XM_209386,1.055,1.04,0.986,1.033,0.87,1.001,0.984,1.004,1.014,1.044,0.988,0.854,0.944,1.003,0.92,1.014,1.0,1.057,0.93,1.084,0.931,1.062,0.945,1.053,1.05,1.106,1.027,0.94,0.919,0.99,0.936,0.945,1.045,0.98,0.995,0.854,1.127,0.966,0.993,0.939,0.968,0.94,1.023,1.038,1.0,1.032,1.014,0.975,0.988,1.044,1.172,1.069,1.085,1.106 +XM_209397,0.895,1.014,1.064,1.089,1.145,1.045,0.918,1.02,1.05,1.085,0.931,1.042,1.039,0.99,0.982,1.094,0.999,1.03,1.024,0.984,0.848,0.949,0.934,0.952,1.0,0.996,0.856,1.032,1.065,0.987,0.94,1.059,0.996,1.009,0.979,1.009,1.011,1.081,1.026,0.995,0.924,1.008,0.971,1.0,0.95,1.027,1.026,1.148,1.099,0.905,0.967,1.069,0.878,1.033 +XM_209408,1.105,0.889,1.009,1.074,0.955,0.977,0.93,0.951,0.918,0.886,0.979,1.069,1.047,1.093,0.798,1.009,1.219,1.018,0.899,1.025,1.108,0.996,0.968,0.961,1.007,0.98,0.873,0.929,0.81,1.076,0.989,1.03,0.944,1.032,0.957,0.997,0.912,1.201,0.874,0.977,0.959,1.055,0.929,1.051,1.132,0.897,1.0,0.89,0.931,1.092,1.001,1.065,1.115,0.902 +XM_209415,0.759,1.089,1.417,0.56,1.48,1.495,0.909,1.985,1.694,0.876,0.754,1.341,1.181,0.787,1.194,1.542,1.287,0.993,0.553,1.105,0.446,1.74,1.093,1.587,0.556,0.546,1.297,1.429,0.557,1.056,1.681,2.239,2.029,0.977,1.928,0.388,0.787,2.376,1.642,1.014,1.062,0.812,0.607,0.414,1.004,0.813,1.29,1.336,0.854,0.682,1.16,0.699,0.464,1.597 +XM_209417,0.978,0.948,0.984,0.994,1.034,1.004,0.861,0.787,0.96,1.139,1.032,1.03,0.95,0.805,0.966,0.971,1.053,0.878,0.885,0.977,0.947,0.99,0.879,1.098,0.966,1.092,1.121,1.054,0.964,1.036,1.07,1.051,0.865,1.1,0.886,0.997,0.958,1.123,1.115,0.992,0.991,0.904,1.003,1.166,1.084,1.074,1.0,1.059,1.035,0.938,1.026,0.987,0.88,1.096 +XM_209478,1.001,1.146,1.058,1.006,0.885,0.996,0.913,1.05,1.072,1.0,0.965,0.992,0.884,1.064,1.052,0.946,0.906,0.996,0.884,1.05,1.039,1.087,1.003,0.929,1.013,0.985,0.967,1.006,0.923,1.091,1.109,0.934,1.002,1.183,0.986,1.068,0.95,0.981,0.967,0.905,0.986,1.082,1.3,1.041,1.11,1.156,1.029,1.064,1.093,1.077,0.957,1.086,1.038,0.916 +XM_209489,0.917,0.93,1.016,0.977,1.068,1.042,1.106,0.922,1.144,0.953,1.008,1.052,1.108,1.086,0.873,1.082,1.026,0.975,1.062,0.953,1.019,0.984,1.212,0.958,0.972,1.064,0.842,0.869,1.173,1.05,0.914,1.117,0.869,0.803,0.969,1.011,1.067,1.035,0.951,1.004,1.054,0.894,0.98,0.897,1.089,0.863,0.941,1.027,1.033,1.028,0.938,0.991,1.009,0.877 +XM_209490,0.558,1.106,1.406,0.599,0.83,1.431,0.563,0.735,1.305,1.083,0.789,1.001,0.794,0.645,1.12,2.578,0.801,0.972,1.211,1.372,0.426,0.965,2.066,1.249,0.466,0.703,1.446,0.904,0.349,1.032,1.099,1.576,2.553,0.966,0.273,1.133,1.186,0.818,1.13,1.043,1.011,1.18,0.818,0.934,0.946,1.37,1.269,0.674,0.892,0.616,1.215,0.968,0.743,1.997 +XM_209505,1.003,0.96,1.158,0.958,0.933,0.976,0.853,0.743,1.089,0.918,1.241,0.927,1.086,1.126,1.3,0.945,0.834,0.948,1.103,0.952,1.05,0.998,1.1,1.031,1.12,1.144,0.974,1.015,1.114,1.123,0.821,1.044,1.08,1.002,1.007,1.018,0.992,0.923,0.946,1.035,1.009,0.911,0.957,1.033,1.01,0.934,0.874,1.017,0.887,0.992,0.945,0.982,1.108,1.136 +XM_209550,0.987,0.967,0.971,0.873,1.064,1.004,1.342,0.935,0.938,0.949,1.018,1.135,1.088,0.856,1.157,1.208,1.149,1.033,0.955,0.967,1.083,0.965,1.049,1.15,0.996,0.935,0.967,0.912,0.889,1.06,0.935,0.922,1.094,0.861,1.271,0.974,1.093,0.967,0.983,1.119,1.152,1.061,0.853,0.943,0.935,1.013,1.04,1.023,0.982,1.12,0.967,1.042,1.084,0.936 +XM_209554,1.152,0.981,1.069,0.986,1.157,1.09,0.874,1.021,1.044,0.916,0.9,1.071,1.016,0.945,0.957,0.978,0.956,1.04,0.94,1.184,1.014,1.051,0.967,1.046,0.986,0.962,0.872,0.911,0.986,0.883,1.02,0.894,1.034,0.942,1.066,1.066,1.094,1.053,0.995,1.062,1.054,1.016,1.011,1.048,1.034,1.073,1.048,0.937,0.942,1.067,0.913,1.157,1.07,0.938 +XM_209563,0.906,1.049,1.055,0.988,0.874,1.041,1.157,0.939,1.012,1.003,1.005,1.112,1.069,1.216,0.952,0.935,0.91,0.943,1.132,0.918,0.995,0.855,1.033,1.095,1.062,0.977,0.966,1.125,1.156,1.044,1.009,1.054,0.951,0.974,1.145,1.041,0.99,1.022,0.899,0.937,1.093,0.836,1.129,0.946,1.035,0.814,0.922,1.049,1.086,1.049,0.928,0.902,1.009,0.985 +XM_209579,1.08,1.206,1.132,1.06,0.956,0.923,0.999,1.014,1.018,1.01,1.073,0.986,1.073,0.837,0.831,1.194,0.995,1.014,0.898,0.97,1.131,1.074,1.047,0.894,1.072,1.205,0.879,0.949,1.155,0.998,1.037,0.968,1.002,0.929,1.103,1.047,1.061,1.042,1.037,0.97,0.927,0.941,1.069,0.997,0.953,1.001,1.086,0.979,1.038,0.943,1.108,1.078,0.966,1.054 +XM_209597,0.982,1.072,1.136,1.025,1.002,0.969,0.82,0.91,1.01,0.992,0.942,0.899,1.091,0.982,1.058,1.044,0.969,1.016,0.997,1.01,0.991,0.979,0.954,0.896,0.957,1.145,0.931,0.834,0.857,1.079,1.016,0.995,0.921,0.777,1.017,1.071,1.041,0.988,0.977,0.88,1.093,0.847,0.948,0.947,1.045,1.045,1.069,1.018,1.05,1.044,1.01,0.901,1.1,0.899 +XM_209604,0.953,0.987,0.969,1.079,0.928,1.041,1.078,0.909,0.902,0.916,1.008,1.0,1.078,1.019,1.051,1.024,1.022,0.896,1.019,0.958,0.998,1.037,0.97,0.982,0.913,0.933,0.936,1.013,0.899,0.984,1.068,0.872,1.15,1.024,1.072,1.029,1.045,0.966,1.0,1.028,1.024,1.054,0.825,0.85,0.976,1.099,0.921,0.927,0.988,1.057,1.067,1.027,0.977,0.885 +XM_209607,0.973,0.941,1.134,0.939,1.029,0.975,0.822,0.919,1.1,1.103,1.048,0.929,1.054,1.059,1.279,0.936,1.12,1.059,0.877,1.067,1.018,1.029,1.009,0.948,1.026,1.007,1.091,0.985,0.984,0.979,1.009,1.022,0.962,0.997,0.928,1.045,0.985,1.022,0.974,1.159,1.034,0.93,0.895,0.9,1.003,1.135,0.998,1.031,0.9,0.974,1.067,0.977,1.01,0.973 +XM_209609,0.938,0.998,0.961,0.862,0.945,1.035,0.795,0.97,1.048,0.929,1.082,1.065,0.895,1.077,1.127,1.009,1.022,0.981,0.9,0.939,1.047,0.851,0.904,0.873,1.057,1.021,0.989,1.04,0.778,1.095,1.024,0.982,1.0,1.132,1.019,1.005,0.979,1.094,1.068,1.0,0.96,1.193,0.917,0.938,0.994,0.914,1.019,0.972,0.994,0.984,0.933,0.886,0.943,0.853 +XM_209612,0.914,0.964,0.913,0.99,0.993,1.029,1.224,0.994,0.982,0.918,0.975,0.898,0.947,0.861,0.838,1.045,1.0,0.708,0.918,0.875,0.958,0.957,0.898,1.107,1.044,0.999,1.18,0.926,0.894,1.081,1.007,0.941,1.058,0.986,0.992,1.06,1.087,1.094,0.973,1.07,0.954,0.844,0.872,0.91,1.099,0.946,0.936,1.017,1.03,0.954,1.083,0.953,0.959,1.021 +XM_209615,1.048,1.015,1.036,0.908,0.98,1.06,0.918,0.983,1.009,0.95,0.986,0.989,0.87,0.865,1.014,0.981,1.053,0.965,1.062,1.013,1.062,0.884,0.939,1.064,1.097,1.112,0.958,0.935,1.232,1.04,1.11,1.047,0.972,0.878,1.022,1.016,1.061,0.827,1.001,1.118,0.999,1.067,1.004,0.949,0.924,0.941,1.085,1.091,1.028,1.044,0.917,0.883,1.098,1.013 +XM_209633,1.062,0.945,1.007,0.917,1.002,1.123,0.964,1.136,0.987,1.081,0.994,0.997,0.933,0.994,1.124,0.976,0.989,0.98,0.95,1.03,1.045,1.006,1.026,1.114,0.999,0.923,0.877,0.934,1.17,1.027,1.137,1.045,0.997,0.914,1.05,1.034,1.09,0.942,0.991,1.033,1.02,0.982,1.02,0.914,1.0,0.97,1.06,0.917,0.943,1.067,1.021,0.968,0.961,0.99 +XM_209639,0.99,0.964,1.009,1.028,0.963,0.934,1.021,0.921,1.057,0.986,1.083,0.981,0.98,0.976,1.289,1.003,0.93,1.007,1.025,0.981,0.987,1.038,1.037,1.039,1.13,1.041,0.902,1.025,1.055,0.98,0.992,0.95,1.026,0.945,0.995,0.974,1.02,1.096,1.021,0.938,1.055,1.061,1.135,0.985,0.988,0.86,0.966,1.033,1.012,1.022,0.968,1.05,1.032,0.991 +XM_209640,0.932,0.989,0.966,1.057,0.883,1.101,0.996,0.871,1.038,0.952,0.927,1.056,0.847,0.787,0.955,0.925,1.172,1.017,1.011,1.04,0.942,1.05,1.065,0.903,1.026,0.964,1.069,1.053,0.867,1.041,0.974,1.124,0.837,0.976,1.117,1.116,1.028,0.928,1.081,1.003,1.049,0.915,1.093,1.078,1.002,1.041,1.093,1.059,0.974,0.909,1.023,1.127,1.0,0.917 +XM_209643,0.998,1.133,0.905,1.122,1.025,1.134,0.973,0.843,1.002,0.864,1.186,0.852,0.903,0.872,1.305,1.017,0.995,0.931,0.878,0.938,0.853,0.952,0.921,0.913,1.054,0.939,0.842,1.05,1.144,1.161,1.009,0.914,1.332,0.91,0.961,0.902,0.962,0.814,1.143,0.852,1.053,1.045,0.945,1.22,0.909,0.948,0.966,0.881,1.163,0.914,0.966,0.912,1.012,1.477 +XM_209649,1.083,0.999,0.986,0.95,0.986,0.935,0.848,0.792,1.14,0.881,1.156,1.066,1.089,1.093,0.868,1.083,0.89,0.993,0.931,1.032,1.094,1.095,0.967,0.945,1.025,0.874,0.96,0.99,0.984,1.001,0.957,1.095,0.872,0.79,0.985,0.933,0.996,1.025,1.033,1.035,0.871,1.04,0.967,0.907,0.957,1.078,1.014,1.102,1.017,0.977,1.02,0.966,1.008,0.974 +XM_209668,1.084,1.037,0.899,0.964,1.23,1.052,1.058,1.082,1.106,1.052,0.957,1.048,1.135,0.935,0.883,0.977,1.29,1.158,0.933,1.032,1.035,1.094,1.046,1.041,1.168,1.016,0.953,1.136,0.842,0.997,1.024,0.89,1.15,1.008,1.09,1.019,0.874,0.864,1.016,0.95,0.837,1.0,1.015,0.914,0.997,0.97,0.923,1.022,1.105,0.929,1.111,1.243,0.911,1.003 +XM_209669,1.024,0.973,1.016,0.952,1.025,0.923,0.846,0.988,0.993,0.978,0.951,0.959,0.973,0.896,1.004,1.014,1.053,1.146,1.093,1.003,0.867,1.03,0.938,0.988,1.026,1.077,0.886,1.133,1.066,0.992,1.024,1.06,0.928,1.015,1.044,0.96,0.939,1.042,0.992,0.962,1.113,1.055,0.813,1.0,1.018,1.028,0.954,1.102,1.128,1.025,1.02,0.96,1.011,0.971 +XM_209693,1.097,0.951,1.031,1.029,0.997,1.097,0.784,1.055,1.059,1.058,0.955,1.056,0.902,0.892,0.871,1.019,0.993,0.95,1.149,0.96,0.976,0.938,0.862,1.0,1.0,1.016,1.035,1.053,1.111,1.083,1.047,0.891,0.929,0.919,1.033,0.832,0.956,0.989,1.053,1.012,1.038,0.906,1.149,1.073,0.945,1.064,0.975,0.959,1.133,1.095,0.998,1.046,1.059,0.931 +XM_209700,1.043,0.882,1.095,0.872,1.112,1.005,0.85,0.913,1.067,0.947,1.022,0.985,0.838,1.333,0.93,1.011,0.965,1.067,0.899,1.043,0.978,0.896,1.059,0.939,0.874,1.082,1.097,1.118,0.989,1.06,1.052,0.965,1.017,0.898,1.13,0.902,1.172,1.106,1.039,1.003,0.961,0.967,0.879,1.023,1.002,0.989,1.054,0.94,0.952,0.95,0.981,0.89,1.046,1.069 +XM_209719,1.096,1.057,1.184,1.189,1.183,1.119,1.134,0.924,0.884,1.097,0.989,1.009,0.892,1.105,0.892,1.006,1.042,1.049,0.887,1.046,0.943,1.003,0.999,0.995,1.077,0.811,0.797,1.0,0.659,1.091,1.002,1.077,1.121,0.99,0.961,0.986,1.036,0.965,0.946,1.038,0.944,0.936,1.348,0.963,1.071,0.883,1.028,0.978,1.067,1.088,1.047,1.12,0.935,0.986 +XM_209729,1.02,0.95,1.117,0.855,1.039,1.068,0.877,0.878,0.894,1.076,1.043,1.147,0.985,0.871,1.091,1.093,1.025,0.909,1.143,1.003,0.942,1.049,0.887,1.006,1.033,0.949,1.149,0.959,0.901,1.146,1.114,0.972,1.016,0.876,1.102,0.972,0.945,0.899,1.075,1.028,1.007,0.934,1.087,1.039,1.083,1.031,1.042,1.004,0.933,1.147,1.081,1.082,1.058,1.489 +XM_209743,0.963,1.0,0.909,1.017,0.969,0.93,1.08,0.967,1.026,1.05,0.905,0.987,1.252,0.808,0.914,1.08,0.932,1.031,1.065,0.907,0.96,1.053,1.121,1.096,0.96,0.939,0.933,1.031,1.012,0.974,1.054,0.946,0.835,1.034,1.05,0.969,1.026,1.043,0.986,1.024,1.101,0.889,0.781,0.993,1.026,1.062,1.086,1.085,0.977,0.931,0.924,0.973,0.976,0.991 +XM_209753,1.02,0.931,0.952,0.928,0.861,1.11,0.998,1.017,0.989,1.017,1.108,1.174,1.053,0.789,0.756,1.105,0.877,0.983,1.162,0.964,1.092,0.987,0.943,0.969,1.105,1.027,0.932,0.809,0.957,1.01,0.972,0.958,0.917,1.231,0.946,1.052,0.964,1.06,1.043,0.989,0.987,1.106,0.737,1.032,0.977,0.966,0.933,0.897,1.141,1.019,0.997,0.823,1.203,1.109 +XM_209754,1.0,0.958,1.008,0.919,0.861,0.976,1.118,1.075,1.035,1.104,1.048,1.0,0.989,1.204,1.156,1.027,0.889,1.063,1.021,0.946,0.997,1.181,1.087,1.094,0.997,0.929,1.07,0.963,0.958,0.964,0.941,0.93,1.011,1.157,1.013,1.111,0.929,1.058,0.986,0.937,0.963,0.944,1.053,1.022,0.946,1.023,0.98,1.0,0.998,1.025,1.026,1.004,1.058,1.029 +XM_209755,0.945,1.052,1.029,0.904,0.952,0.987,0.883,0.882,1.106,1.003,1.014,1.013,1.001,0.999,1.068,1.026,0.961,0.955,0.984,0.962,0.992,1.033,1.028,0.953,0.986,1.043,1.024,0.936,0.985,1.05,1.051,0.99,1.045,0.973,0.882,0.962,0.987,0.963,1.03,0.981,0.874,0.971,0.997,0.953,1.022,1.068,1.004,0.946,1.011,1.125,1.075,1.046,1.065,0.995 +XM_209777,1.019,0.961,1.046,1.01,0.975,0.988,1.089,1.07,1.102,1.026,1.116,0.869,0.968,1.228,1.246,1.027,1.017,0.921,1.102,1.048,1.215,0.995,1.103,0.945,0.901,0.979,0.863,0.937,0.817,0.89,0.951,0.982,1.065,1.003,1.042,1.21,0.958,0.948,1.038,0.95,1.041,1.077,1.344,1.124,0.964,1.04,0.988,0.981,0.859,1.122,0.922,1.173,1.051,1.013 +XM_209778,0.923,1.074,0.966,1.038,1.076,1.093,0.859,0.903,0.943,0.902,1.033,0.953,1.039,1.214,1.017,1.018,0.991,0.995,1.063,0.987,1.002,1.114,1.095,1.038,0.907,1.059,1.0,1.044,0.928,1.104,0.995,1.016,0.994,0.951,0.927,1.052,1.04,0.995,0.945,1.056,1.038,0.999,1.062,0.894,1.028,1.043,1.029,0.969,1.068,1.055,1.105,0.952,0.998,1.115 +XM_209832,1.097,0.994,1.016,0.948,0.973,1.001,1.028,0.895,1.284,1.01,0.828,1.047,0.977,1.093,1.11,0.982,1.042,0.914,0.956,1.092,1.008,1.301,0.931,1.266,0.837,1.156,1.104,1.063,0.909,0.985,0.95,0.933,1.134,0.805,1.073,0.884,0.925,1.258,1.055,0.832,0.907,1.017,0.741,0.969,0.885,0.997,1.062,1.193,0.951,1.164,0.928,0.986,0.905,1.003 +XM_209857,0.819,0.945,1.109,1.075,0.958,1.041,1.009,0.992,0.973,1.019,1.089,0.961,0.854,0.999,0.612,0.975,1.074,0.871,1.182,1.187,1.071,0.946,1.024,1.074,1.069,0.961,0.932,1.0,1.314,0.979,1.021,0.976,1.198,1.029,1.143,0.802,1.018,0.966,1.03,1.198,1.112,0.81,1.278,0.892,1.034,0.868,1.124,0.904,0.944,0.997,1.0,1.004,1.046,1.117 +XM_209865,0.999,0.935,0.998,0.893,1.058,0.937,0.87,0.989,1.011,0.966,1.104,1.029,0.99,1.12,1.135,0.891,1.105,0.931,0.923,0.965,0.926,0.885,0.965,1.071,1.022,1.176,1.025,1.072,1.047,1.078,1.068,1.132,0.945,1.141,0.919,0.939,0.894,1.108,1.003,1.05,1.036,0.896,0.941,0.942,0.948,1.087,1.007,0.98,0.995,1.033,1.092,1.003,0.9,0.827 +XM_209866,1.031,1.119,1.055,1.09,1.007,0.939,0.912,1.022,0.896,0.901,0.928,1.053,1.012,1.036,1.01,1.013,1.113,0.909,0.998,1.085,1.0,1.038,0.909,1.031,1.067,1.016,1.128,1.011,0.977,0.972,0.963,1.011,0.911,0.989,0.998,1.129,0.965,0.831,1.09,0.914,1.084,1.071,0.958,1.051,1.067,0.951,0.955,1.016,1.011,1.002,0.952,0.931,1.078,0.94 +XM_209889,0.953,1.041,0.95,1.007,1.029,1.008,0.975,0.975,1.0,0.995,1.084,1.195,0.934,1.179,1.005,1.132,1.019,0.952,0.949,0.986,1.096,0.998,0.952,0.979,1.075,1.075,1.019,1.008,1.069,0.96,0.968,1.106,1.048,0.991,0.947,0.975,0.923,1.128,0.835,0.984,1.0,0.956,0.959,1.031,1.076,0.987,1.025,0.969,1.021,0.965,0.958,0.96,0.924,1.143 +XM_209893,1.002,1.013,0.967,1.079,1.171,0.898,1.086,0.957,1.344,1.065,1.041,0.876,0.963,1.131,1.25,1.21,0.893,1.029,1.101,0.886,1.061,0.989,1.024,1.006,0.994,1.255,0.854,0.931,0.981,1.063,1.114,1.17,1.112,1.089,0.953,0.825,0.894,1.028,0.957,0.979,1.094,0.907,0.656,0.991,0.965,0.98,0.991,1.039,1.053,1.027,0.938,0.84,0.936,1.034 +XM_209902,1.156,0.946,0.982,1.151,0.993,1.072,1.048,0.98,0.987,1.213,1.114,1.112,0.971,0.793,0.983,1.135,1.05,0.906,1.058,0.953,1.044,0.971,0.925,0.928,1.004,0.904,1.104,0.944,0.933,0.967,1.054,0.894,0.879,1.042,1.006,0.983,1.024,0.931,1.069,1.003,0.903,0.986,1.312,1.124,0.997,0.957,1.067,0.928,1.026,1.055,1.036,1.034,0.792,1.009 +XM_209918,1.08,0.955,0.968,1.183,1.001,0.924,0.882,0.974,1.041,1.023,1.033,1.057,1.138,0.971,1.003,1.01,0.998,1.08,0.942,1.048,0.999,1.021,0.995,0.962,1.033,0.945,0.959,0.94,0.969,0.992,1.01,0.972,1.148,0.889,1.237,0.947,0.984,0.986,0.907,1.092,1.023,1.039,0.932,1.147,0.926,0.97,0.922,1.068,1.061,0.935,0.967,1.062,0.88,1.252 +XM_209920,0.71,1.284,1.212,0.695,0.829,1.76,0.504,0.574,1.041,0.699,0.756,0.657,0.779,0.615,0.989,1.376,0.968,0.859,0.85,0.939,0.43,1.155,1.249,1.411,0.808,0.561,2.962,0.792,0.566,1.316,1.111,1.505,1.593,1.842,0.594,0.491,1.137,1.505,1.695,0.505,1.052,1.814,0.603,1.166,0.804,0.737,1.067,0.755,1.065,0.774,1.126,0.514,0.422,0.852 +XM_209936,1.034,0.862,0.999,0.93,1.198,0.966,1.137,1.057,0.925,1.032,1.051,0.991,1.074,1.038,1.03,0.908,1.077,0.955,1.061,1.071,1.051,1.005,1.134,0.962,0.936,1.06,1.001,0.981,1.178,0.92,1.098,1.11,1.123,0.965,1.112,0.993,1.101,0.991,0.99,0.991,0.958,1.022,1.014,0.923,0.895,1.075,0.99,0.942,1.175,0.955,1.124,1.193,0.958,0.922 +XM_209941,1.06,0.971,0.938,0.976,1.053,0.887,1.034,0.881,0.901,1.025,0.995,1.066,0.975,1.193,1.034,0.907,1.108,0.88,0.798,0.822,1.02,0.965,0.945,0.951,1.006,1.048,1.033,0.958,1.078,1.037,0.899,1.055,1.124,0.999,1.023,1.023,0.989,1.154,1.018,0.966,1.09,0.924,0.858,1.081,1.005,0.959,1.216,1.128,1.119,1.127,1.023,0.892,1.134,1.025 +XM_209945,1.058,0.954,1.018,0.989,1.015,0.951,0.947,1.034,1.015,1.064,1.103,0.949,0.973,0.818,1.084,1.027,1.076,0.971,1.021,1.124,0.941,0.937,1.033,1.019,0.913,1.0,1.039,1.038,0.751,0.981,1.052,0.974,0.929,0.962,1.115,0.961,1.026,0.979,0.946,0.921,0.978,0.861,0.961,1.003,0.996,1.079,0.978,1.113,0.974,1.038,0.929,0.939,0.954,1.04 +XM_209955,1.095,1.038,1.182,0.777,1.019,0.998,0.915,1.01,0.987,0.978,0.742,1.26,0.884,1.057,0.838,0.825,1.251,0.816,1.073,1.031,1.18,1.061,1.222,1.283,0.91,0.806,1.244,0.882,1.084,0.909,1.114,1.082,1.231,1.07,1.07,1.594,0.919,0.955,0.933,0.796,1.125,1.155,1.006,0.979,1.191,0.991,0.974,0.916,0.98,1.119,0.944,0.995,1.072,1.018 +XM_209959,0.808,0.746,1.286,0.8,0.886,1.409,0.998,0.988,0.869,0.755,0.891,1.048,1.051,0.648,1.123,2.104,1.002,1.028,0.764,0.981,0.608,1.143,1.167,1.487,0.765,0.625,1.31,0.847,0.783,1.309,1.079,1.272,2.658,1.086,0.601,0.599,1.032,1.363,1.638,1.219,0.938,0.989,0.617,0.715,0.968,1.058,1.365,0.92,1.49,0.864,1.176,0.937,0.565,1.557 +XM_209971,0.676,1.243,0.918,0.862,0.736,1.243,0.635,0.554,1.021,0.952,0.934,1.064,0.807,0.586,1.045,1.227,0.823,0.817,1.076,1.264,0.402,0.63,1.196,1.207,0.773,0.732,1.03,0.711,0.364,1.199,0.856,2.013,2.138,1.457,0.179,3.914,0.869,0.647,1.788,0.967,1.031,1.112,0.821,1.552,0.965,0.899,0.894,0.651,0.799,0.77,1.24,1.024,0.897,2.735 +XM_210009,0.879,0.932,1.045,1.106,0.98,0.941,0.927,1.052,0.969,0.887,1.077,0.832,1.036,0.86,0.998,1.327,0.948,1.088,0.893,0.905,0.958,0.874,1.067,1.074,0.918,1.053,0.933,1.011,1.406,1.056,0.914,1.06,1.085,1.176,1.021,0.879,1.128,0.997,0.924,0.988,0.886,1.046,0.876,0.925,1.094,0.852,0.846,1.152,0.996,1.002,1.051,0.907,1.124,1.182 +XM_210019,0.459,0.995,0.676,0.715,0.567,1.518,0.875,0.575,0.62,0.563,1.733,0.649,0.53,0.522,0.745,1.369,0.584,0.732,0.56,1.403,0.574,0.55,1.865,0.594,0.709,0.583,2.469,0.574,0.571,1.184,0.508,2.082,1.077,1.624,0.61,0.804,1.108,0.68,1.439,1.2,0.576,1.964,0.872,2.213,0.605,1.384,0.809,0.498,1.093,0.655,1.625,1.028,0.587,0.963 +XM_210050,0.904,0.97,1.044,0.842,0.897,1.119,0.883,0.854,1.008,0.894,1.0,0.871,0.895,0.848,1.104,0.976,0.95,0.891,0.814,1.247,0.973,0.989,1.063,0.82,1.067,0.826,0.996,0.907,0.893,1.176,0.902,1.226,1.146,1.349,0.775,1.0,1.001,0.901,0.94,1.091,0.943,1.261,0.771,0.942,0.873,0.931,1.005,0.897,0.955,0.842,1.006,1.064,0.85,1.356 +XM_210055,1.107,1.027,0.894,1.039,1.075,0.9,1.022,0.986,0.991,1.028,0.875,1.014,1.089,0.976,0.885,1.047,0.926,1.019,1.04,0.925,1.08,0.931,0.965,0.988,1.169,0.922,0.932,1.067,1.102,0.978,1.029,0.922,1.006,1.009,1.082,1.026,0.977,0.963,0.888,1.029,0.986,1.041,0.962,1.14,0.995,1.06,0.99,0.895,1.148,0.99,1.011,1.011,1.042,0.998 +XM_210119,0.92,0.874,1.135,0.953,1.031,1.041,0.923,1.065,0.96,1.222,1.009,1.025,0.977,0.906,0.971,0.988,0.981,0.912,0.791,1.028,0.935,1.063,1.026,1.025,1.034,0.984,1.022,0.941,1.029,1.067,0.889,1.078,1.003,1.042,1.042,0.855,1.102,0.936,0.99,0.925,0.966,1.047,1.093,0.966,1.004,0.869,0.962,1.053,0.896,0.901,1.055,1.004,0.988,0.945 +XM_210122,0.928,0.979,1.045,1.074,0.936,1.066,0.924,1.163,0.965,0.922,0.986,0.96,0.971,0.916,1.019,1.162,0.99,1.031,1.048,1.051,1.057,0.909,1.128,0.985,1.124,0.986,1.081,1.04,0.693,1.038,0.95,0.998,0.964,1.058,0.97,1.09,1.004,0.988,1.121,0.936,0.952,0.967,1.033,1.01,0.974,1.013,1.126,0.979,0.93,0.925,0.992,1.088,0.951,0.974 +XM_210168,1.022,0.945,0.997,1.046,0.841,0.922,0.87,0.965,1.026,1.207,0.822,0.977,0.995,1.131,1.432,0.953,0.927,1.238,1.12,1.183,0.888,1.122,1.044,0.962,0.886,0.989,1.094,0.957,1.052,0.907,0.977,0.955,1.017,0.995,1.158,0.98,0.936,1.092,0.926,0.949,1.043,1.061,1.207,1.188,1.056,0.866,0.917,0.886,1.018,1.081,1.06,1.052,0.915,0.923 +XM_210169,1.046,1.055,0.99,1.102,1.014,0.975,0.934,1.007,1.026,1.062,0.982,0.917,1.027,1.044,0.96,0.961,1.008,0.952,1.034,1.025,1.018,1.04,0.951,1.057,1.001,0.954,0.959,1.201,1.155,1.036,1.154,1.063,0.941,0.971,1.076,1.02,0.929,1.095,0.899,1.015,0.962,0.931,1.168,0.912,0.878,1.177,1.113,0.994,0.957,1.099,0.927,0.914,1.147,0.947 +XM_210177,0.822,0.948,1.197,0.863,1.081,1.088,0.984,1.023,1.004,0.957,1.032,1.006,0.957,1.098,1.264,1.106,0.986,0.961,1.033,1.085,1.036,0.968,0.982,1.015,0.997,0.955,0.991,0.995,0.662,1.047,1.061,1.018,0.952,1.057,1.021,0.994,0.96,1.068,1.049,1.086,0.92,0.971,0.82,0.917,1.104,0.953,1.05,1.055,0.899,1.02,1.004,1.053,1.09,0.886 +XM_210181,1.01,1.107,0.913,0.994,1.035,1.135,1.0,1.083,0.876,0.981,0.993,0.964,1.161,1.009,0.932,1.065,0.956,1.064,1.042,0.916,1.237,1.007,1.03,1.056,1.001,0.915,0.911,1.01,1.155,0.894,1.103,1.008,1.073,0.886,1.046,1.121,1.046,1.006,1.083,0.978,1.039,0.886,1.139,0.994,1.031,0.972,0.96,1.041,0.975,1.133,1.0,1.103,1.016,0.918 +XM_210186,1.093,0.908,1.0,0.942,0.826,0.946,1.034,0.878,0.974,0.922,1.002,1.019,0.961,0.809,0.895,0.935,1.053,1.063,0.976,0.96,1.027,1.138,1.009,1.026,1.128,1.022,1.012,0.962,0.788,1.035,1.025,1.045,0.934,1.023,1.074,0.779,1.0,0.961,1.038,0.99,0.989,0.945,0.9,0.932,0.935,0.99,1.053,1.043,0.985,0.956,1.043,0.767,1.002,0.919 +XM_210193,1.07,1.01,0.969,1.019,1.09,0.915,0.955,1.152,0.986,1.162,0.996,1.018,1.005,1.091,0.985,0.946,1.029,1.121,0.961,0.996,0.99,1.082,1.09,0.999,1.199,0.943,1.061,1.019,0.84,1.1,0.988,1.181,1.115,1.001,1.204,0.968,0.995,0.988,0.919,1.065,0.839,0.921,0.96,0.898,1.072,1.012,1.068,1.03,0.954,1.224,0.943,0.959,1.074,0.914 +XM_210242,1.102,1.015,0.989,0.981,1.021,1.083,0.973,1.038,1.017,0.944,1.078,0.863,0.927,0.97,1.163,0.875,0.845,1.123,0.888,1.127,0.979,0.9,1.138,0.963,1.019,0.989,0.923,0.939,1.319,0.899,1.33,0.983,1.094,0.847,1.001,0.908,1.067,1.064,0.985,1.029,1.062,1.111,0.896,1.046,0.876,1.146,1.057,1.019,0.802,1.061,1.132,0.857,0.908,0.926 +XM_210264,1.073,0.983,1.093,1.112,1.019,1.078,0.951,0.805,0.998,1.033,1.211,0.948,1.043,0.978,1.115,1.091,1.068,1.005,1.122,0.951,1.203,0.886,0.97,1.13,0.98,0.983,1.039,1.101,0.886,1.05,0.925,1.06,1.027,1.051,1.203,0.922,1.072,1.081,1.039,0.992,1.014,1.0,1.349,1.007,0.901,1.057,1.0,0.848,1.107,0.967,0.993,0.998,1.101,0.894 +XM_210282,0.959,0.974,0.924,0.92,0.999,0.961,1.046,1.119,1.138,0.964,1.037,1.04,0.994,0.927,0.812,1.042,0.987,1.1,1.026,0.982,1.034,1.002,0.906,0.931,1.043,0.992,0.905,1.03,1.04,0.935,1.153,0.987,1.034,1.189,1.081,1.05,0.998,1.096,0.97,1.068,1.086,1.045,0.921,1.021,1.007,0.941,1.03,1.018,0.801,1.0,1.13,0.89,1.053,1.034 +XM_210334,0.625,0.887,2.249,0.577,1.082,1.664,0.785,1.468,1.184,0.934,0.701,1.51,1.507,0.572,1.232,1.935,1.478,1.064,0.548,1.07,0.419,1.47,1.356,1.898,0.445,0.48,2.1,0.999,0.41,1.225,1.768,1.226,1.605,1.11,0.425,0.361,0.762,2.303,2.184,0.644,0.994,1.425,0.561,0.395,1.477,0.708,1.087,1.119,1.271,1.095,1.131,0.498,0.348,1.393 +XM_210382,1.101,0.892,0.906,0.816,0.912,1.039,0.837,1.229,1.411,1.143,0.887,1.241,0.986,0.998,1.478,0.99,1.23,1.08,0.803,1.062,1.016,0.859,0.86,1.099,1.51,0.886,0.99,0.877,1.505,1.011,1.044,0.953,1.042,1.098,0.924,0.966,0.87,0.953,1.1,1.013,1.165,0.951,1.263,1.035,0.823,0.959,0.842,1.192,0.886,1.145,0.925,0.959,1.0,0.986 +XM_210501,0.87,1.215,1.284,0.853,0.997,0.972,0.702,0.666,1.088,1.242,0.836,1.039,0.783,0.666,0.835,1.052,1.184,0.984,1.253,0.853,0.764,0.915,1.125,1.216,0.651,1.172,1.178,1.065,0.603,1.119,1.066,1.003,1.79,1.276,0.696,0.81,0.853,1.201,1.276,0.764,1.301,1.08,0.712,0.98,1.25,0.738,1.039,1.037,0.934,1.128,0.863,0.904,1.012,1.367 +XM_210581,1.027,0.987,1.083,0.899,1.057,1.045,1.039,0.966,1.101,0.954,0.906,1.085,0.964,1.306,0.986,0.991,0.966,1.073,0.944,1.026,0.845,0.963,0.943,1.073,1.004,0.933,1.081,0.985,1.135,0.949,1.061,1.022,0.935,1.118,1.08,0.943,0.928,1.027,1.105,0.881,0.966,1.104,1.381,0.972,1.032,0.942,0.987,0.964,0.893,0.898,1.012,0.924,1.1,0.933 +XM_210637,0.999,0.885,1.066,1.127,0.781,0.891,1.021,0.992,1.012,0.834,1.001,1.092,0.856,0.992,1.182,1.0,1.071,1.082,1.128,1.028,1.054,0.973,1.118,1.088,1.008,0.95,1.058,1.006,0.978,1.033,0.846,1.078,0.939,1.134,0.971,0.982,0.969,0.906,1.086,1.13,0.974,0.938,1.189,0.865,0.943,0.832,0.983,0.987,1.182,1.123,1.025,1.003,0.96,1.001 +XM_210642,0.962,0.96,1.045,1.085,1.09,1.185,0.991,0.998,1.135,0.993,0.99,0.948,0.841,1.28,0.941,0.99,1.044,1.094,1.169,0.973,0.933,1.086,0.944,0.993,1.018,0.995,0.916,1.2,1.25,1.101,0.924,0.981,1.045,0.844,0.825,0.932,1.027,0.879,1.1,1.046,0.94,1.102,0.92,0.97,0.931,1.106,0.989,1.005,0.805,0.967,1.135,1.189,0.949,0.76 +XM_210752,1.117,0.969,0.976,1.061,0.948,0.986,0.999,1.223,1.014,1.043,1.202,0.984,1.034,1.141,1.336,0.983,1.069,1.174,0.926,1.019,1.003,1.118,0.929,1.053,1.018,1.015,1.008,0.989,1.26,0.999,1.025,0.986,0.959,0.978,1.05,1.093,1.065,1.068,0.925,1.192,0.939,0.887,1.113,0.925,0.991,1.254,1.06,1.001,1.034,1.027,0.933,1.048,0.981,0.887 +XM_210755,0.985,1.017,1.037,0.999,1.056,0.978,0.795,0.898,1.117,0.901,0.878,0.926,1.103,0.914,0.705,1.033,0.936,0.901,0.883,0.995,1.002,1.101,1.015,1.002,1.156,1.083,1.148,0.906,0.942,0.988,1.065,0.982,1.204,0.939,1.116,0.998,1.041,0.907,0.989,0.946,1.116,1.015,0.984,1.076,0.953,0.89,1.059,1.002,1.304,0.98,1.001,0.956,0.985,0.869 +XM_210837,0.997,0.858,1.029,0.985,0.964,0.971,1.263,0.947,0.954,1.069,1.008,1.072,0.935,0.916,0.908,0.961,1.029,1.088,0.915,1.06,1.023,0.967,0.949,1.064,0.934,1.106,1.0,1.035,0.904,0.993,1.1,1.077,0.956,1.016,0.913,1.002,1.083,1.03,0.976,1.0,0.979,1.036,0.84,0.947,1.004,1.066,1.049,0.971,1.077,0.954,1.071,1.101,0.99,0.996 +XM_210855,0.951,1.016,1.065,0.886,0.949,1.056,0.765,1.001,1.052,0.998,1.051,0.993,0.867,1.059,0.968,1.002,1.01,1.013,1.044,0.904,0.975,1.062,1.018,1.054,1.121,1.136,1.083,1.072,0.904,1.09,0.996,0.945,0.964,0.874,0.988,0.918,1.053,1.176,0.975,1.002,0.911,0.976,0.977,0.986,0.964,0.964,1.005,0.947,0.968,1.099,1.03,0.917,1.056,0.98 +XM_210856,0.95,0.996,1.086,1.003,0.838,1.005,0.979,1.141,0.997,1.155,1.054,0.96,1.12,1.109,0.849,1.11,0.936,0.9,0.985,0.932,1.026,0.999,0.952,0.954,0.95,0.982,1.068,0.875,0.722,0.936,0.983,1.061,0.961,1.123,0.892,0.917,0.939,1.153,1.036,0.915,1.111,1.036,1.011,1.071,0.942,0.912,1.164,1.15,1.101,0.823,1.007,0.804,0.982,0.954 +XM_210858,1.026,0.972,0.969,0.93,1.022,0.989,0.877,1.156,0.973,0.989,0.983,1.014,0.944,0.878,1.043,1.004,0.963,0.907,1.118,1.049,1.048,1.01,1.018,1.062,1.004,0.9,0.941,0.994,0.966,1.051,0.998,1.099,0.995,0.962,1.041,1.021,1.017,1.0,0.924,1.047,0.991,0.945,1.029,0.988,0.956,0.96,1.107,1.096,1.0,0.955,0.986,0.978,1.101,0.97 +XM_210876,1.03,0.853,0.837,0.981,1.025,0.952,0.897,1.053,0.938,1.018,1.056,1.051,1.106,1.068,0.883,0.935,1.019,1.061,0.932,1.046,1.117,0.87,1.133,0.87,1.023,1.071,1.004,1.093,1.218,1.014,1.022,0.851,0.891,1.005,1.166,1.034,0.977,0.984,0.953,1.058,0.965,0.869,0.942,1.094,1.044,0.963,0.874,0.994,0.947,0.907,0.993,0.965,1.081,0.909 +XM_210877,0.671,0.999,1.251,0.662,0.865,1.024,0.784,0.758,1.02,0.962,0.812,0.832,0.887,0.729,1.055,1.351,0.893,1.071,0.998,1.083,0.782,1.049,1.243,1.069,0.63,0.787,1.359,0.853,0.439,1.168,1.099,1.364,1.683,1.224,0.671,0.896,0.892,1.033,1.246,0.874,0.954,1.033,0.554,1.042,1.117,0.785,0.978,0.911,0.911,0.848,0.957,0.969,0.8,2.087 +XM_210888,1.1,0.968,1.197,1.092,1.028,0.993,0.851,0.981,0.973,0.971,1.071,1.054,1.001,1.377,0.864,0.982,1.014,1.16,0.974,0.979,1.125,1.192,0.988,0.775,1.031,0.964,0.94,1.029,0.836,0.996,1.22,1.017,1.089,1.001,0.995,0.968,0.999,1.119,0.957,1.106,0.949,1.069,0.831,1.023,1.219,0.837,1.102,0.936,1.198,1.069,0.981,1.087,1.028,0.928 +XM_210900,0.917,0.997,0.955,1.049,1.047,0.957,1.136,1.012,0.975,0.982,1.05,0.985,1.047,0.903,0.915,0.961,0.96,0.946,0.939,0.891,0.812,0.947,0.97,0.88,1.061,0.937,0.851,0.965,1.17,1.044,1.099,1.084,0.892,1.043,0.949,0.968,0.982,1.025,1.072,1.025,0.941,0.981,1.017,0.999,1.004,0.921,0.931,0.945,0.955,0.937,1.034,0.96,1.089,0.918 +XM_210908,1.077,0.906,0.98,1.06,0.949,1.142,1.211,1.153,1.002,1.15,0.894,0.896,0.895,1.234,0.968,1.233,0.953,1.054,1.017,1.02,1.073,1.028,1.017,0.934,0.966,0.895,1.128,0.99,0.966,0.91,1.095,1.097,0.935,1.011,0.915,0.945,0.966,0.958,1.041,1.012,1.063,0.98,0.99,1.078,1.037,1.09,0.995,0.992,1.14,1.037,0.953,1.192,0.958,1.14 +XM_210923,0.892,1.075,1.017,0.94,1.015,0.932,0.985,1.01,0.993,1.036,0.95,1.046,1.004,1.039,0.802,0.985,0.922,0.999,0.925,1.001,1.095,0.998,0.959,1.056,1.086,1.08,1.102,0.983,0.979,0.943,1.06,1.038,0.939,0.941,0.973,1.04,0.977,1.075,1.155,1.182,0.97,0.891,1.138,0.995,1.035,0.952,0.997,0.977,1.007,1.009,0.972,0.918,1.048,1.079 +XM_210930,1.035,1.12,0.928,0.975,1.012,1.027,0.953,1.046,0.982,1.031,0.942,0.967,0.928,0.969,1.015,0.899,0.953,1.039,1.187,1.044,1.033,0.966,1.08,0.995,0.939,1.116,0.905,0.994,1.018,1.002,0.956,1.083,0.974,1.104,1.011,0.964,0.992,1.162,1.047,1.044,1.038,1.066,0.909,0.958,1.003,1.016,0.931,1.078,1.063,1.027,0.986,0.936,0.934,0.947 +XM_210933,1.084,1.082,0.978,0.995,1.001,1.007,0.952,0.939,0.889,0.971,0.973,0.962,1.18,0.931,1.196,0.986,1.115,0.946,1.1,0.988,0.965,1.078,0.855,0.933,1.089,1.108,1.098,1.105,1.251,0.94,0.987,1.004,1.0,0.953,1.015,1.107,0.997,1.073,0.91,1.001,1.027,0.908,0.844,1.034,0.939,0.83,0.998,1.042,1.004,0.959,1.091,1.04,1.123,1.19 +XM_210935,1.102,0.945,1.164,1.16,1.188,0.91,1.038,0.987,1.086,1.086,0.869,1.053,1.171,1.06,1.193,1.011,1.245,1.141,1.456,0.901,1.242,1.11,1.087,1.303,0.974,1.429,1.233,1.017,0.997,0.931,1.223,1.099,0.984,0.948,0.964,1.013,0.858,1.173,0.979,0.956,1.184,0.958,0.852,1.057,1.174,0.831,1.115,1.19,0.951,1.104,1.006,0.977,1.04,1.001 +XM_210938,0.985,1.009,0.92,1.008,0.891,0.966,0.728,0.931,0.953,0.96,0.985,1.036,1.073,0.908,1.045,0.903,0.965,1.058,1.052,1.082,1.075,0.988,0.939,1.03,0.996,0.776,1.026,1.075,0.865,1.1,1.029,1.096,1.027,0.985,1.001,0.734,1.031,1.026,1.002,0.953,0.894,0.884,0.85,1.246,0.97,0.962,1.028,0.925,0.933,1.019,1.016,0.94,0.998,0.985 +XM_210939,1.08,1.016,0.918,1.084,1.002,0.991,0.986,0.968,0.843,1.066,1.11,0.997,1.103,0.971,0.948,1.031,0.961,0.968,0.896,1.086,1.047,1.032,0.995,0.998,1.088,0.882,0.921,0.943,0.982,0.888,1.016,1.03,0.957,1.105,1.032,1.041,0.947,1.007,0.958,0.982,1.06,1.016,0.844,0.886,0.866,1.021,0.961,0.974,0.873,0.889,1.023,1.105,0.903,0.914 +XM_210940,0.98,1.801,1.119,0.989,1.031,0.967,0.947,0.997,0.982,1.208,0.964,1.018,1.008,0.82,0.926,0.983,0.957,0.972,0.957,1.024,0.748,0.903,1.024,0.997,0.933,1.052,1.07,1.061,0.617,1.216,1.01,1.183,1.38,1.158,0.972,1.046,0.901,0.909,0.936,0.976,1.091,1.097,0.789,0.85,1.058,1.075,0.964,0.954,0.9,0.857,1.024,1.033,0.972,0.966 +XM_210942,0.993,0.998,1.115,0.984,1.024,1.01,0.974,1.032,1.048,0.926,0.902,1.096,1.057,1.23,1.068,1.025,1.022,0.954,0.901,0.971,1.105,0.901,1.119,1.097,0.993,1.126,1.131,1.045,0.998,1.034,1.061,1.105,0.951,1.024,1.078,0.912,0.942,1.026,0.899,1.039,0.941,0.929,1.206,0.95,1.034,0.946,1.019,0.963,1.209,1.008,0.943,0.977,1.09,1.009 +XM_210945,1.079,0.926,0.987,1.133,1.097,0.959,0.885,1.04,1.012,0.955,1.012,1.105,1.007,0.887,0.881,0.977,1.072,1.008,1.004,1.142,0.924,1.061,1.024,1.058,1.061,1.059,1.005,0.963,1.026,1.019,1.021,1.133,0.968,0.999,0.961,0.957,0.981,0.923,0.878,0.894,1.004,0.896,0.817,1.189,0.963,0.931,0.929,0.99,1.01,1.019,0.96,0.995,0.958,1.064 +XM_210949,1.067,0.997,1.025,0.979,0.97,1.01,1.065,1.013,0.951,0.924,1.135,1.144,0.991,1.004,1.057,1.089,1.016,0.961,1.017,0.974,1.02,1.075,1.057,1.023,0.965,0.869,0.934,0.93,0.901,1.121,1.031,1.08,1.056,0.962,0.994,0.894,1.06,0.987,0.976,1.066,1.012,1.043,1.067,1.134,0.907,1.017,0.962,1.063,0.919,0.892,1.005,0.976,0.964,0.995 +XM_210951,1.029,1.112,0.987,1.0,1.173,0.941,1.033,1.117,0.959,0.976,1.115,1.103,1.03,0.985,0.992,0.962,0.976,1.077,0.988,0.961,1.038,1.045,1.042,1.052,0.994,0.908,1.0,0.916,0.94,1.117,1.043,0.94,0.924,0.898,1.002,1.068,1.026,1.105,0.974,0.929,0.931,1.012,1.171,0.983,1.075,0.99,1.012,0.987,0.962,1.093,0.981,1.049,0.986,0.972 +XM_210961,0.955,0.784,1.598,0.79,0.938,1.215,0.843,0.777,1.736,0.999,0.941,0.719,0.783,0.975,1.357,1.202,1.184,0.986,1.157,1.205,0.697,1.472,1.24,1.064,0.664,1.235,1.473,1.314,0.506,1.014,1.354,0.737,1.028,0.995,0.593,0.771,0.898,1.0,1.093,0.596,1.46,1.064,0.424,0.728,1.4,0.995,1.039,1.159,1.203,0.892,1.153,0.741,0.697,1.362 +XM_210988,1.085,1.035,1.063,0.978,1.07,0.937,1.075,0.889,0.932,1.015,1.006,0.975,0.996,0.928,0.916,1.001,1.138,1.07,1.203,1.063,1.061,1.002,0.996,1.014,0.951,0.9,1.061,1.052,1.394,1.056,1.058,1.038,0.919,1.012,1.036,1.012,1.037,1.026,1.071,1.045,0.969,1.047,0.965,1.113,0.912,0.985,1.048,0.955,0.958,0.94,1.013,0.896,1.05,0.908 +XM_211002,1.084,0.903,0.93,0.967,0.984,0.995,1.052,0.932,1.033,1.115,1.013,0.956,1.001,1.072,0.81,0.951,0.917,1.13,1.2,0.898,1.012,1.054,1.058,1.04,0.97,1.015,1.067,0.934,0.916,0.88,0.965,0.935,1.073,0.897,1.074,1.051,0.979,0.958,1.087,1.03,0.875,0.935,0.861,1.025,0.995,1.11,1.001,1.032,1.002,0.994,0.988,1.011,0.975,0.927 +XM_211003,1.002,1.012,1.0,0.913,0.929,0.973,0.969,0.956,1.187,1.037,1.011,1.019,0.976,0.984,0.851,0.995,1.021,1.109,0.899,1.037,0.89,1.057,1.005,0.986,0.89,1.059,1.087,1.038,0.894,1.097,0.891,1.047,0.94,1.082,1.0,0.969,1.005,1.174,1.082,0.96,0.976,0.925,0.913,0.932,1.033,0.941,1.014,1.02,1.133,0.93,0.88,0.877,1.05,1.027 +XM_211009,1.08,1.017,0.984,1.086,0.998,0.978,1.104,1.148,1.028,0.957,0.887,1.003,0.977,0.88,0.823,1.002,1.04,0.857,1.055,1.047,0.986,1.073,1.036,1.091,0.744,0.966,0.736,0.868,0.846,0.854,0.961,1.118,1.084,0.997,1.047,0.993,1.155,0.935,1.035,1.031,1.067,1.012,1.182,1.018,1.035,1.129,0.905,0.981,0.969,1.203,0.914,1.0,0.894,0.939 +XM_211021,0.929,1.121,0.945,0.98,1.085,1.046,1.019,1.079,0.971,0.963,0.931,0.953,0.923,1.057,1.074,0.976,0.933,0.951,1.164,1.081,0.946,1.054,0.928,0.95,1.179,1.018,1.073,1.039,0.923,0.97,1.025,1.011,0.981,1.03,0.975,1.026,0.953,0.955,1.08,0.989,1.015,1.05,0.979,0.886,1.0,1.077,0.973,1.04,1.041,0.924,1.098,0.983,0.958,1.037 +XM_211028,0.983,1.033,0.936,1.1,1.046,0.923,0.895,0.906,1.054,0.867,0.839,1.029,0.946,1.042,0.882,1.104,1.163,0.92,0.966,1.053,1.056,1.04,0.981,1.034,1.096,1.114,1.034,1.043,1.035,1.025,0.924,0.982,1.067,1.025,0.915,1.073,0.94,0.935,0.961,0.907,1.206,0.905,1.112,0.91,0.957,0.932,1.083,1.032,0.925,0.975,0.964,0.977,0.955,0.883 +XM_211032,0.953,1.118,1.025,0.968,1.034,1.001,1.593,1.312,0.959,0.974,1.055,0.988,0.907,1.045,0.958,0.949,0.979,1.055,0.836,1.093,1.004,1.057,0.919,0.956,1.049,1.022,1.035,0.969,1.089,1.001,0.982,0.833,0.959,0.996,1.0,0.786,0.96,0.957,1.126,1.079,0.961,0.974,1.201,0.93,0.922,0.941,0.945,1.044,1.101,1.011,0.929,1.156,1.1,1.053 +XM_211034,1.063,1.05,0.994,1.086,1.005,0.898,1.027,1.155,0.974,0.933,1.002,1.055,0.868,0.825,0.978,0.924,1.0,1.011,0.849,0.864,0.921,1.0,0.979,0.975,1.016,0.993,1.096,1.02,0.866,0.922,0.965,1.021,0.882,0.844,0.961,1.133,1.03,0.955,1.001,0.907,0.868,0.956,0.976,1.043,1.026,1.2,0.973,1.084,0.963,0.98,0.883,1.021,0.939,1.009 +XM_211035,0.99,1.106,1.05,1.059,1.018,1.018,0.924,1.232,0.972,1.011,0.944,0.956,0.984,1.07,1.085,0.984,1.004,1.03,1.039,0.953,1.077,0.958,1.02,0.963,0.985,1.107,0.997,1.081,1.038,1.134,0.951,0.932,0.959,0.884,1.029,0.986,0.982,0.991,0.93,0.92,1.193,1.07,1.106,0.919,0.95,0.898,1.012,0.942,0.895,0.94,1.067,1.152,1.019,1.069 +XM_211040,0.894,1.028,1.051,1.119,1.204,1.077,0.996,0.999,0.987,0.896,1.017,0.978,0.957,0.83,0.835,1.004,0.937,0.911,1.081,1.155,1.02,1.063,0.998,0.954,0.997,1.005,0.986,1.046,1.245,1.077,0.85,0.965,1.226,1.013,1.183,1.312,0.851,1.036,1.072,0.911,0.927,1.027,1.013,1.031,1.053,0.94,0.982,1.331,1.02,0.732,0.985,1.213,1.038,0.953 +XM_211049,0.929,0.943,1.067,0.996,0.944,0.916,0.698,0.955,0.992,0.986,1.013,1.053,1.016,0.957,0.997,0.908,1.207,0.936,0.925,1.048,0.931,1.066,0.962,1.17,1.041,0.919,1.084,1.017,0.915,0.883,1.014,0.951,1.07,1.062,1.037,0.954,0.962,1.034,0.919,1.009,1.03,0.943,0.955,1.086,1.003,1.008,1.029,0.969,0.944,0.974,1.017,0.951,1.054,1.008 +XM_211056,1.003,0.997,0.941,0.943,1.002,1.023,0.971,0.977,1.058,0.976,1.035,1.039,0.991,0.872,0.922,0.975,1.04,0.98,0.991,0.956,1.024,1.037,0.952,0.969,1.013,0.983,0.896,0.972,1.074,1.006,0.925,0.966,1.016,0.852,1.062,0.994,0.831,0.977,1.053,1.117,0.974,1.112,0.914,1.052,0.906,0.993,0.996,1.024,1.063,0.978,0.987,0.956,1.04,1.015 +XM_211057,0.997,0.991,0.986,1.026,1.082,0.92,1.108,0.929,1.064,1.02,0.926,1.111,0.994,1.041,1.132,1.053,1.045,1.066,1.144,1.035,0.959,0.927,0.932,0.997,0.994,0.993,0.997,1.091,0.967,1.033,1.068,1.151,1.01,1.247,0.911,0.959,1.03,0.985,0.959,0.928,1.202,1.114,0.968,0.963,0.982,0.928,0.953,0.949,0.955,1.058,0.967,0.916,1.021,0.918 +XM_211060,0.983,0.993,1.03,0.84,1.066,1.016,0.994,1.079,1.077,0.883,0.933,1.091,0.987,0.996,1.117,0.926,1.025,0.998,1.027,0.978,0.999,1.022,1.014,0.921,1.161,0.901,1.087,0.847,1.281,1.057,1.026,0.895,0.999,1.025,1.007,0.967,1.017,0.911,0.976,0.994,0.991,0.978,1.178,1.012,0.97,0.956,1.026,1.055,0.897,1.011,1.01,0.962,0.955,1.048 +XM_211068,0.98,0.938,1.032,0.962,0.841,0.866,1.063,1.005,1.005,0.919,0.88,0.956,0.954,0.93,1.149,0.963,1.02,1.082,1.002,0.983,1.01,0.984,1.011,0.969,0.955,1.034,1.02,1.086,0.953,0.992,1.039,1.017,0.906,0.85,0.841,0.965,1.031,0.912,1.022,0.957,0.984,0.996,0.934,0.971,1.083,1.04,0.909,1.068,1.22,1.032,0.976,1.049,1.036,1.093 +XM_211071,1.432,0.93,1.563,1.007,1.183,0.815,0.75,0.861,1.322,1.286,0.877,1.028,1.001,1.115,0.989,0.976,1.239,1.184,1.514,0.883,1.01,1.264,0.808,1.07,1.244,1.705,1.303,1.303,0.647,0.837,1.235,1.114,0.915,0.932,0.799,0.767,0.798,1.484,1.053,0.889,1.123,0.966,0.727,0.973,1.521,0.749,0.911,1.5,0.732,1.446,0.914,1.058,1.167,0.862 +XM_211077,1.055,0.998,1.057,1.074,1.108,1.027,0.955,1.002,0.993,0.974,0.997,0.963,0.981,0.949,1.076,0.988,1.005,0.967,0.851,1.052,0.853,1.002,0.919,1.062,0.936,1.04,1.028,1.143,0.856,1.09,0.983,1.02,0.919,1.049,1.053,0.994,1.073,1.062,1.106,1.073,1.062,0.933,0.998,0.954,1.045,1.018,1.08,1.124,1.104,0.993,0.995,0.926,0.969,1.144 +XM_211082,1.071,1.051,0.93,0.987,0.846,1.137,0.911,1.01,1.038,0.975,1.036,1.006,1.073,0.825,0.93,1.007,0.993,0.85,1.055,1.001,1.101,1.161,1.04,1.072,0.981,0.964,0.94,1.082,1.029,0.914,0.977,1.021,1.089,1.025,0.896,1.022,1.001,1.0,0.939,0.987,0.945,0.909,1.318,1.088,1.134,0.872,0.891,0.967,0.941,0.915,1.007,1.058,0.954,0.981 +XM_211092,0.976,1.032,1.028,1.107,0.929,0.964,0.812,0.964,0.967,0.976,1.101,0.925,1.157,1.087,0.933,0.953,0.911,0.968,1.081,1.276,1.112,1.188,0.999,0.961,1.039,1.005,0.953,0.868,1.224,0.811,1.005,0.975,1.045,1.131,0.904,1.063,1.133,0.975,0.924,1.038,0.958,1.008,1.139,1.347,0.987,0.806,0.828,0.968,0.996,1.109,1.048,0.851,0.929,1.011 +XM_211095,1.001,1.066,0.969,0.958,1.165,0.996,0.907,0.991,1.003,1.07,0.842,0.996,1.079,1.131,0.811,0.918,1.072,1.002,0.916,1.02,0.948,1.088,0.991,0.982,1.008,1.044,0.991,1.067,0.818,1.058,0.949,1.008,0.981,1.105,0.996,0.947,0.957,1.046,0.967,1.027,1.017,0.923,0.959,0.962,0.948,1.011,0.979,0.91,1.059,0.999,0.965,1.034,1.145,0.949 +XM_211096,1.026,0.906,1.124,0.945,0.964,1.004,0.994,0.934,0.983,1.045,1.116,1.04,1.017,0.96,1.313,0.993,1.093,1.05,1.147,0.938,0.964,1.104,0.943,1.041,0.93,0.916,1.016,1.019,0.921,1.018,0.946,1.007,1.026,1.117,1.028,1.172,0.94,0.854,1.007,1.047,1.03,1.018,1.191,1.073,0.961,1.012,0.916,1.009,0.902,0.965,1.014,1.023,1.13,0.952 +XM_211116,1.154,0.936,0.996,0.977,0.985,0.956,0.883,0.993,0.972,1.107,1.105,1.001,1.027,0.971,0.887,0.929,1.002,0.955,0.927,0.855,1.138,0.977,1.083,1.016,1.1,0.942,1.039,1.084,1.097,0.936,0.87,0.91,1.056,0.96,0.991,1.041,1.038,1.135,0.958,0.937,1.073,1.023,0.946,0.935,0.881,1.088,1.015,0.966,0.933,1.001,0.99,1.025,1.089,0.934 +XM_211118,1.002,0.988,1.046,0.987,0.936,1.013,1.018,0.985,1.072,0.883,1.077,1.014,0.943,0.961,1.073,0.911,1.11,1.085,0.977,1.034,1.044,1.097,0.97,0.947,0.924,1.007,0.987,1.103,1.317,0.817,0.982,1.004,1.066,0.833,1.049,0.99,0.953,0.904,0.93,0.993,1.241,1.091,0.838,1.037,0.888,0.913,1.004,0.992,0.963,0.981,1.008,0.985,0.99,0.988 +XM_211129,1.155,1.077,0.957,0.961,1.095,0.956,0.884,1.081,1.028,1.064,0.951,1.023,1.101,0.985,1.319,0.921,1.0,1.052,1.086,1.007,0.961,1.095,1.02,1.046,0.988,0.976,0.928,0.944,1.036,1.005,1.179,1.02,0.973,1.005,1.106,1.01,1.037,0.946,0.939,0.91,0.988,1.038,0.891,1.037,1.039,1.056,1.085,1.103,1.049,0.978,0.961,1.007,1.085,1.043 +XM_211153,1.078,0.988,1.07,1.004,1.032,0.961,0.862,0.898,0.921,0.97,0.957,1.053,1.164,0.969,1.123,0.98,1.027,0.926,0.904,0.943,1.037,0.906,0.921,1.044,0.903,1.156,1.154,1.021,1.064,0.954,0.926,1.202,0.93,1.146,1.076,1.051,1.009,1.009,1.029,0.913,0.98,1.037,0.907,1.026,1.059,0.996,0.933,1.028,0.993,1.038,0.984,0.981,0.957,0.897 +XM_211155,1.027,1.057,1.005,0.923,1.093,0.992,0.83,0.815,1.079,1.107,1.01,0.977,1.041,1.036,1.088,0.968,1.116,0.954,0.961,1.103,0.93,0.991,0.952,1.016,1.122,0.98,1.043,1.205,1.001,1.012,1.182,0.923,0.932,1.092,1.264,1.087,0.967,1.128,1.067,1.074,0.922,0.99,0.844,0.991,0.867,0.931,1.022,1.087,1.035,1.103,0.938,0.923,0.97,1.175 +XM_211158,0.88,0.959,1.125,0.864,0.841,0.998,0.804,0.718,1.14,0.953,0.86,0.83,0.806,0.816,1.214,0.817,1.129,0.939,1.062,0.98,0.861,1.223,1.144,1.24,0.92,0.935,1.372,0.86,0.858,1.135,1.187,1.241,1.438,1.037,0.727,0.869,0.903,1.067,1.248,1.292,1.053,0.866,0.629,0.992,0.895,0.891,0.9,0.937,0.87,0.954,0.982,0.822,0.963,1.611 +XM_211164,1.005,0.948,0.954,0.94,1.057,1.05,1.106,0.967,1.065,0.912,0.926,1.084,0.903,1.078,1.192,1.03,0.955,1.094,1.129,0.987,1.005,1.074,0.946,1.065,1.012,0.974,1.072,0.949,1.195,0.89,1.064,0.948,1.003,1.02,1.066,1.194,1.039,1.018,0.996,0.99,0.936,0.95,1.054,0.961,0.96,0.952,0.914,1.049,0.966,1.122,1.039,0.961,0.96,1.198 +XM_211168,1.056,0.987,0.93,0.956,1.031,0.936,0.836,1.048,1.053,0.866,0.961,1.036,0.926,0.962,1.136,1.06,0.947,1.032,0.881,1.042,0.913,1.034,0.975,0.97,1.04,1.12,1.065,0.972,0.854,1.042,1.072,1.017,0.891,1.031,1.074,0.9,1.017,1.018,1.04,0.967,0.992,1.021,0.92,1.052,1.038,0.956,1.036,1.07,0.958,0.951,1.054,1.019,1.063,0.989 +XM_211173,0.96,1.099,1.098,1.093,0.922,1.084,0.934,1.039,0.878,0.93,0.854,0.959,1.01,1.084,0.872,0.997,0.991,0.997,1.014,0.981,0.972,0.843,0.991,0.9,1.063,0.891,0.919,1.003,1.012,0.968,1.071,1.019,0.912,0.998,1.009,1.019,1.089,0.918,0.97,1.079,1.059,1.001,0.901,1.152,0.885,0.975,1.003,0.985,0.965,0.946,0.975,1.042,1.048,1.009 +XM_211185,0.96,0.94,1.089,1.157,1.046,0.957,1.055,1.122,0.959,0.947,0.994,0.938,0.888,1.021,0.941,1.037,1.046,0.941,1.077,1.022,0.975,0.988,1.068,0.972,0.979,1.014,1.032,1.075,1.031,0.921,1.013,1.081,0.891,0.983,0.912,1.062,1.051,1.093,0.912,0.882,1.019,0.933,1.417,0.968,0.942,0.943,0.9,1.119,1.014,0.911,0.982,0.966,1.014,0.909 +XM_211188,1.052,1.019,0.943,0.918,0.959,1.01,0.899,1.126,1.023,1.088,0.897,1.1,1.162,0.93,0.902,0.993,1.031,0.94,0.914,1.055,1.222,1.033,1.025,1.071,1.007,0.815,0.873,1.106,0.897,0.927,0.94,0.97,1.046,0.992,1.052,1.052,1.045,0.862,0.953,1.11,0.976,0.959,0.876,0.931,1.043,0.947,1.032,0.971,1.112,0.996,0.962,1.055,0.941,1.132 +XM_211197,0.979,0.936,1.002,1.114,1.0,1.162,0.998,0.959,1.153,0.842,1.007,0.997,0.95,0.878,1.072,1.044,1.177,1.099,0.971,1.048,0.984,1.165,1.061,1.088,1.132,1.119,0.838,1.064,1.271,0.998,1.014,0.966,1.054,0.953,1.066,1.068,1.135,0.968,1.032,0.98,1.11,0.948,1.141,1.031,1.069,1.0,0.839,1.021,0.906,0.991,1.008,1.031,1.15,0.984 +XM_211198,0.955,1.012,1.087,0.998,1.039,1.017,1.025,1.173,0.987,1.098,0.962,1.029,1.036,1.256,1.101,0.922,1.145,1.081,0.925,1.029,0.897,1.028,1.001,1.068,1.08,1.054,0.867,1.002,0.847,0.879,1.005,0.943,0.973,1.07,1.049,1.094,1.003,0.816,0.977,0.936,0.949,1.089,1.094,0.931,0.921,0.947,0.937,1.023,1.017,0.947,0.995,0.94,1.105,0.991 +XM_211219,0.959,1.001,1.063,1.103,1.089,1.008,0.773,0.77,1.124,1.095,1.034,0.737,0.759,0.903,0.95,0.989,0.888,0.902,0.947,1.175,0.865,0.937,1.194,1.105,0.743,1.204,0.924,1.038,0.816,1.201,1.053,1.303,1.327,1.159,0.924,0.841,1.008,1.101,0.985,0.92,1.199,1.06,0.602,1.177,1.145,1.118,0.908,0.871,0.847,0.953,1.101,0.768,0.999,0.979 +XM_211223,1.001,1.115,1.01,0.988,1.067,1.118,0.964,0.916,0.976,0.94,1.036,0.898,1.169,0.878,0.922,0.981,1.073,0.863,0.946,0.966,1.094,1.125,1.019,1.02,1.076,1.003,1.024,1.019,1.034,0.926,1.012,1.057,0.95,0.956,1.096,1.058,0.93,1.073,0.967,1.138,0.984,0.99,1.127,0.992,1.058,0.956,0.915,0.995,0.979,1.085,1.047,1.043,1.013,0.878 +XM_211224,1.012,1.028,1.026,1.012,1.005,0.921,1.103,1.037,0.972,0.984,0.987,0.972,1.06,1.03,0.899,1.072,1.176,0.921,1.042,1.092,0.961,0.917,1.021,0.936,1.0,1.043,1.028,1.094,0.89,1.016,1.037,0.95,0.961,0.925,0.969,0.979,0.963,1.097,0.957,1.036,0.95,0.907,1.188,1.092,1.088,1.111,1.02,1.156,0.896,1.037,0.887,1.007,1.026,0.874 +XM_211225,1.036,0.983,0.962,0.955,1.176,1.022,1.026,0.932,1.031,0.938,0.959,1.047,1.106,0.918,1.061,1.0,1.104,0.839,0.937,0.977,0.891,0.991,0.945,0.907,0.945,1.127,1.028,1.133,0.757,1.108,0.919,0.966,0.835,1.118,1.07,0.888,0.938,1.116,0.952,0.968,0.98,1.041,0.739,1.063,1.015,0.999,1.037,0.992,1.028,0.949,0.982,0.976,1.003,1.064 +XM_211229,0.907,1.05,1.397,0.869,1.021,1.124,0.768,0.783,0.979,0.871,0.831,0.953,0.828,0.834,1.114,1.234,0.884,0.854,1.239,1.025,0.784,1.036,1.277,0.987,0.817,0.909,1.335,0.976,0.682,1.202,0.939,1.45,2.375,1.301,0.634,0.807,0.963,1.127,1.117,0.9,1.109,1.315,0.589,0.743,0.991,1.0,0.902,0.92,0.924,1.0,1.21,0.91,0.912,1.499 +XM_211239,1.115,1.009,1.009,0.938,1.057,0.948,0.76,0.961,0.999,0.955,0.876,1.054,0.931,0.985,1.018,1.018,1.008,0.894,1.067,1.042,0.922,1.018,0.898,0.959,1.033,1.122,1.107,1.042,1.09,0.985,0.92,1.133,0.955,1.154,0.937,1.01,0.93,1.077,0.961,1.058,1.089,0.863,1.099,0.956,0.928,0.982,0.956,0.987,0.91,1.005,1.074,0.904,1.055,1.024 +XM_211251,1.024,0.941,1.027,0.976,0.867,0.933,0.963,1.087,1.146,0.927,1.2,0.958,1.147,1.022,0.764,1.293,1.016,1.034,0.985,1.038,0.908,1.162,0.939,0.916,1.066,0.921,1.017,1.15,1.049,0.988,1.009,1.062,1.11,0.831,1.009,0.948,0.977,0.912,0.969,0.918,1.147,1.039,0.801,1.007,1.052,0.894,1.082,0.998,0.986,0.961,0.968,1.05,0.877,1.068 +XM_211254,1.027,0.987,0.991,1.081,1.073,0.999,1.057,0.891,1.126,0.9,1.057,0.99,1.051,0.977,1.123,1.065,1.004,1.095,0.889,0.961,0.93,0.963,0.907,0.978,1.069,0.972,1.086,0.95,0.955,1.077,0.955,0.929,0.95,1.13,0.984,1.005,1.055,0.981,1.035,0.992,0.833,0.968,1.084,0.948,1.098,0.996,1.014,0.982,1.019,1.107,1.027,1.05,1.011,1.001 +XM_211261,0.991,0.998,1.036,0.901,0.928,0.988,0.877,0.984,1.0,0.948,1.0,1.026,0.941,1.052,0.978,0.992,0.996,1.082,0.888,0.903,1.065,1.147,1.028,1.062,0.975,0.968,1.047,1.154,1.038,0.963,0.976,0.951,1.011,0.938,0.984,1.054,0.993,1.093,0.959,1.022,1.042,1.055,1.4,0.987,1.029,0.922,1.035,0.924,1.01,1.031,0.941,1.05,0.99,1.028 +XM_211272,1.043,1.025,1.05,0.897,0.898,0.984,0.805,1.025,0.983,0.971,0.983,1.081,0.874,0.869,1.002,1.06,0.993,1.029,0.938,0.878,0.945,0.961,0.964,1.029,1.106,0.939,0.898,0.985,1.094,1.049,0.992,0.961,0.914,1.09,1.02,1.002,1.097,0.919,1.047,0.952,0.851,0.909,1.103,0.934,1.037,1.064,0.97,1.011,0.959,1.039,1.176,0.906,0.978,0.963 +XM_211287,1.016,0.962,0.994,0.902,1.001,1.041,1.228,0.937,1.107,0.971,0.797,0.987,0.945,0.952,0.879,0.951,0.994,1.134,0.947,0.873,0.999,0.941,0.847,1.056,0.893,0.947,1.261,0.922,1.119,1.007,0.894,1.015,0.928,1.078,1.156,1.035,0.989,1.045,1.128,1.065,1.007,0.866,1.141,0.952,0.812,0.962,0.98,1.019,0.988,1.133,1.007,0.958,1.133,0.922 +XM_211291,1.021,1.154,1.144,0.995,1.15,0.968,0.965,0.953,0.917,1.099,0.956,0.957,0.931,1.235,0.937,1.073,0.909,0.943,0.939,1.211,0.939,0.934,1.019,0.973,0.975,1.111,1.067,0.924,1.045,1.203,0.903,1.082,0.991,1.054,0.983,0.91,0.941,1.048,0.941,0.959,0.988,0.845,1.058,1.121,0.956,1.067,1.137,1.012,0.981,0.964,1.002,1.048,0.811,0.906 +XM_211305,0.922,0.946,0.959,1.061,1.031,1.11,1.084,0.989,0.981,0.876,1.016,1.1,1.06,1.06,1.0,0.82,1.112,1.004,1.003,1.097,1.093,1.019,1.016,0.851,0.837,1.029,1.162,0.883,0.862,0.918,0.953,1.053,1.07,1.191,1.089,0.94,0.904,1.114,1.193,0.954,1.003,0.911,0.903,1.003,0.913,1.018,0.996,0.96,0.976,0.937,1.01,1.188,0.996,0.957 +XM_211312,1.017,0.99,0.996,0.824,0.876,1.117,1.0,1.117,1.001,0.982,1.079,0.913,0.982,0.989,1.085,0.966,1.014,0.882,0.975,1.04,1.031,1.012,0.943,0.997,1.039,1.107,0.985,1.019,1.005,1.063,1.134,0.993,1.089,0.908,0.982,1.055,1.019,0.918,0.975,0.994,0.928,1.003,1.206,0.961,1.063,1.027,1.007,0.967,0.88,1.015,0.962,0.898,1.007,0.942 +XM_211319,0.938,1.074,1.055,1.005,0.929,1.017,1.069,0.901,0.897,0.887,0.939,0.975,1.055,0.982,0.895,1.025,0.992,0.921,0.974,1.058,1.068,0.953,0.964,0.976,1.042,1.0,0.995,0.965,0.851,1.041,1.042,0.955,1.06,1.006,1.025,1.046,0.968,0.802,0.926,0.874,0.901,1.059,0.87,0.98,0.938,1.069,1.016,0.962,0.872,1.016,1.088,1.041,1.083,1.044 +XM_211322,1.181,1.029,1.052,1.08,0.975,1.042,0.856,1.148,0.971,0.982,0.957,0.892,0.952,1.13,0.97,1.088,1.017,0.979,0.988,0.942,1.128,0.963,0.96,0.919,0.995,1.104,1.064,1.062,0.839,1.021,1.117,0.993,0.988,0.981,1.122,0.968,1.079,1.036,1.022,1.049,0.902,1.004,0.827,0.967,1.025,1.009,0.948,1.0,0.99,0.991,1.057,1.074,1.096,1.094 +XM_211345,1.038,0.98,1.028,1.152,0.986,1.036,1.05,0.899,1.082,0.986,1.05,0.876,0.947,0.927,0.918,0.985,0.871,0.975,0.849,1.035,1.073,1.026,0.904,1.016,0.89,1.162,0.953,0.996,1.114,0.977,1.131,0.839,1.095,1.07,0.924,1.057,0.969,1.095,0.958,1.112,1.054,1.122,0.947,1.095,0.895,1.27,1.123,0.998,1.094,1.004,1.006,1.102,0.971,1.009 +XM_211363,0.93,1.071,0.955,0.957,0.927,1.053,1.289,0.787,0.999,0.928,1.051,1.092,0.983,1.116,0.883,1.021,0.985,1.012,1.095,0.909,1.001,0.984,0.896,0.917,1.023,0.966,0.932,1.032,0.98,1.102,1.018,0.963,0.961,0.922,1.082,0.857,0.98,1.129,1.012,1.021,0.926,1.028,1.011,1.093,1.014,0.967,1.07,0.954,1.002,0.999,1.001,1.021,0.99,1.009 +XM_211365,1.001,0.934,0.964,1.017,1.066,1.028,1.17,1.014,1.023,0.895,1.088,1.058,1.034,1.109,0.91,0.914,0.924,0.894,1.043,0.988,1.041,0.848,0.948,1.033,1.009,1.194,0.844,0.954,1.14,1.035,0.904,1.06,1.014,0.99,0.958,1.119,1.055,1.08,0.952,1.091,1.048,0.979,0.938,1.019,1.044,1.039,1.067,0.96,1.092,0.998,0.953,0.909,1.052,0.951 +XM_211399,0.986,1.126,0.986,0.898,0.939,0.994,0.921,0.919,0.955,1.094,1.113,0.982,0.99,1.097,0.843,1.009,1.067,0.972,1.064,0.999,0.951,1.038,1.004,0.97,1.057,1.04,1.061,0.956,0.995,1.03,1.115,1.011,0.985,0.92,0.942,0.937,0.968,1.041,1.041,0.866,1.0,1.048,0.876,1.06,0.983,1.022,1.022,1.07,0.992,0.948,0.947,0.969,1.12,0.96 +XM_211400,1.063,1.079,1.031,0.939,1.162,1.03,1.149,0.835,1.116,1.032,0.886,1.046,1.006,0.913,0.975,1.007,1.115,1.031,1.075,1.124,0.926,1.04,0.984,1.017,0.958,1.096,0.878,0.958,1.344,0.935,1.087,0.947,0.969,1.004,0.994,0.954,1.024,1.174,0.94,1.109,1.014,0.869,0.923,1.176,0.997,1.003,1.058,1.048,1.061,0.961,1.017,1.026,0.996,0.985 +XM_211408,1.008,0.869,1.022,1.133,0.969,0.991,0.866,1.0,0.945,1.052,0.95,1.025,0.98,0.877,1.111,0.906,1.056,1.011,1.002,0.899,1.195,1.045,0.972,0.961,0.992,0.995,1.169,1.048,1.17,1.141,1.129,0.948,0.947,0.869,1.1,0.997,0.953,1.162,0.926,1.15,0.969,1.051,0.841,0.971,0.975,0.969,1.261,0.985,0.985,1.067,1.085,0.908,0.958,0.965 +XM_211421,0.966,0.968,1.07,0.949,1.03,0.99,0.929,1.099,1.145,0.969,1.063,1.012,1.078,1.059,1.354,0.907,0.93,1.009,1.063,0.935,0.854,1.011,0.968,0.995,1.016,0.93,0.975,1.119,0.975,0.961,1.077,1.039,1.109,0.857,1.017,0.864,1.093,0.953,0.939,0.965,1.02,1.017,1.054,1.013,0.995,0.914,0.932,0.951,1.049,1.025,0.969,1.02,0.981,0.947 +XM_211423,0.966,1.195,1.088,0.905,0.904,1.138,0.979,0.852,0.926,0.938,1.084,0.92,0.931,0.929,0.842,0.972,0.858,1.095,0.988,1.089,1.005,0.927,1.141,0.971,1.122,0.851,0.893,1.029,1.028,1.297,0.911,2.544,1.407,1.528,0.914,0.99,1.004,0.963,1.099,1.389,0.997,1.376,0.908,1.008,0.912,0.878,0.925,0.857,0.991,1.008,0.978,1.012,0.96,0.955 +XM_211432,0.957,0.87,1.147,0.854,1.076,0.869,0.879,1.094,1.031,1.005,1.081,1.095,0.842,0.983,1.004,1.001,1.001,0.985,1.024,1.058,0.926,1.058,0.979,0.989,0.963,0.882,1.076,1.03,1.304,0.965,0.989,1.017,0.951,1.043,1.368,0.977,0.974,1.118,1.019,1.056,0.943,0.855,1.095,0.781,1.0,1.048,1.085,1.35,1.01,0.95,1.012,0.892,1.083,0.796 +XM_211435,1.03,0.979,1.009,1.084,0.962,1.013,0.951,0.946,0.893,0.981,1.065,0.919,1.024,0.808,0.85,0.969,0.978,0.962,1.153,1.007,0.952,1.112,0.98,0.983,0.956,1.049,1.013,0.909,1.112,0.959,1.04,1.065,0.863,1.014,0.912,0.988,1.018,0.971,1.007,0.86,1.044,1.127,0.787,0.924,1.034,1.076,0.916,0.905,0.83,1.044,0.898,1.04,0.965,1.19 +XM_211454,0.944,0.995,1.087,0.915,0.975,1.038,0.921,1.045,0.962,0.935,0.985,0.973,1.124,0.948,0.915,0.924,0.994,1.033,1.172,0.987,1.018,0.919,0.932,1.001,1.085,1.016,0.929,1.022,0.92,1.0,0.93,0.932,0.986,0.965,1.024,0.925,1.061,0.958,1.071,1.012,0.954,0.937,0.939,1.065,1.005,0.907,0.879,1.04,0.984,1.009,0.993,0.887,0.995,1.035 +XM_211459,1.005,0.998,1.082,0.939,1.081,1.012,0.853,0.954,1.157,1.004,0.931,1.058,0.919,1.019,1.023,0.932,1.132,0.937,1.04,0.884,1.092,1.161,0.897,1.101,0.935,1.176,1.05,1.152,0.759,0.96,0.988,1.028,0.866,1.047,1.27,0.973,0.967,1.151,0.956,0.874,1.042,1.073,0.851,0.948,1.012,0.902,0.976,1.173,0.732,1.11,0.859,0.775,1.012,1.055 +XM_211465,1.026,1.09,1.003,0.903,0.927,0.942,0.933,1.046,0.888,1.032,0.933,1.019,0.996,1.126,1.082,1.023,1.052,1.144,0.928,1.008,1.006,0.951,1.005,1.013,0.941,0.958,0.954,0.998,1.225,1.052,0.932,0.926,0.96,0.945,0.928,0.997,1.033,0.868,0.99,1.066,0.952,0.839,1.105,0.959,1.022,0.98,1.034,1.013,0.982,0.993,1.001,1.003,0.939,1.167 +XM_211473,1.187,1.012,0.999,1.0,0.843,1.027,0.829,1.069,1.001,0.98,0.992,0.936,1.05,0.969,0.87,0.97,0.945,0.966,1.092,0.956,1.071,1.038,0.902,0.953,1.019,0.967,1.071,1.017,0.968,0.977,1.033,0.909,1.077,0.944,1.023,1.008,1.054,1.003,0.923,1.033,1.125,1.054,1.056,1.001,0.933,0.911,1.075,0.953,1.046,1.081,1.017,0.935,0.935,0.968 +XM_211475,1.0,0.892,1.09,0.989,1.04,1.026,0.862,0.927,1.051,0.999,0.84,1.177,1.068,0.909,1.006,0.985,0.989,0.971,1.068,1.0,1.103,1.059,1.007,1.043,0.981,1.027,1.064,0.975,0.812,0.994,1.02,0.931,0.995,0.94,1.0,1.007,1.03,0.952,1.023,1.069,1.014,0.866,0.954,1.179,1.019,1.026,1.015,0.97,0.955,0.986,1.018,0.98,1.059,0.93 +XM_211476,1.142,1.085,1.024,0.978,1.029,0.898,0.818,0.943,1.035,1.105,1.085,0.906,0.901,1.143,1.126,1.11,1.019,0.989,0.851,1.048,1.0,0.98,0.946,1.019,0.917,1.031,0.946,0.974,1.052,0.885,0.999,1.072,1.045,0.856,0.876,0.941,0.951,0.973,0.892,1.016,1.044,1.134,1.377,1.075,1.084,1.04,0.861,0.985,0.969,0.983,0.896,1.052,0.969,1.0 +XM_211485,0.985,1.077,0.902,0.973,0.973,1.031,1.016,0.908,1.059,1.011,1.068,0.98,1.112,1.046,0.87,1.055,1.006,1.131,0.89,1.031,0.945,1.008,0.986,0.971,0.93,0.937,0.88,0.966,1.184,1.106,1.024,0.927,1.135,1.013,1.001,1.001,0.944,1.027,1.087,1.006,0.919,0.979,1.146,1.034,0.967,1.045,1.064,0.976,1.085,0.964,1.111,1.181,0.925,0.995 +XM_211502,0.983,0.949,0.923,0.941,1.087,0.927,1.07,0.796,0.989,1.048,1.073,0.993,0.968,1.039,0.949,0.877,0.984,0.925,1.076,0.921,1.146,1.034,1.084,1.01,1.043,0.976,1.164,1.0,0.778,1.056,0.954,0.987,0.917,1.03,1.059,1.017,0.981,1.187,1.034,1.055,1.063,0.972,0.927,0.974,1.005,1.053,1.042,0.987,0.867,1.049,0.864,0.909,0.97,1.071 +XM_211509,0.97,0.98,1.073,1.111,0.974,0.988,0.98,1.016,1.063,1.051,1.077,0.943,0.923,1.021,0.97,1.033,0.898,1.167,1.002,1.08,0.921,0.993,1.016,1.051,1.141,0.842,1.129,1.121,0.762,1.31,0.957,1.035,1.017,0.992,0.901,1.109,0.994,0.966,1.081,0.867,0.944,1.049,1.082,1.053,1.027,0.979,0.939,0.895,0.922,1.147,0.991,0.962,1.124,1.087 +XM_211512,1.007,1.051,1.105,0.974,0.938,0.954,1.396,1.222,0.991,1.024,0.994,0.979,0.901,0.84,0.944,1.078,0.932,0.961,0.896,1.072,1.014,0.962,1.12,0.911,0.973,1.003,1.053,1.04,1.126,0.993,1.001,1.033,0.996,0.773,0.979,1.004,0.975,1.062,1.029,0.972,0.944,0.959,1.057,1.775,1.047,0.97,1.115,0.973,1.189,1.018,1.063,0.93,0.974,1.003 +XM_211529,0.993,1.011,0.934,1.023,1.194,1.038,1.081,0.938,1.064,1.019,0.989,0.932,0.972,0.897,0.904,1.189,0.898,0.881,0.985,1.024,1.003,0.99,1.079,1.03,0.967,0.939,0.934,0.911,1.334,0.921,1.055,0.909,1.076,0.855,0.955,1.019,0.989,0.869,0.993,1.005,1.052,0.955,1.045,1.086,1.081,0.989,1.071,0.962,0.879,1.049,0.932,0.992,1.062,0.983 +XM_211538,1.026,0.97,1.042,0.932,1.124,0.998,1.018,1.453,1.199,0.997,1.024,1.066,1.051,1.102,1.241,1.015,1.047,1.087,1.036,1.034,0.88,1.237,0.99,0.974,0.864,0.888,1.177,1.157,0.775,0.986,1.447,0.937,1.139,0.827,1.416,0.85,0.974,1.491,0.961,0.952,1.046,1.026,0.937,1.179,1.024,0.983,1.017,1.049,1.087,1.018,1.009,0.977,1.029,1.028 +XM_211554,1.012,1.0,0.94,1.055,0.932,1.013,1.036,0.99,0.981,0.962,0.963,1.113,0.967,1.064,1.115,0.975,0.958,0.99,1.108,1.104,1.113,1.062,1.086,0.989,1.023,0.968,0.962,0.895,1.103,1.028,1.057,1.027,0.958,0.934,0.999,1.002,1.109,0.884,1.097,1.017,1.023,1.018,1.099,1.016,0.859,0.962,0.98,1.077,0.934,1.007,1.02,1.023,0.906,1.025 +XM_211562,1.062,0.906,1.041,1.111,1.081,1.143,1.103,0.954,0.923,1.036,0.951,0.948,1.098,0.915,0.969,0.934,0.991,0.937,1.088,0.987,0.988,0.929,0.973,1.154,0.991,0.966,0.906,0.962,0.752,1.065,1.011,0.987,0.994,1.136,1.147,1.064,0.966,0.992,0.979,0.995,1.016,1.144,1.003,1.06,0.822,0.988,0.966,0.783,1.048,1.129,1.012,0.953,1.014,1.075 +XM_211571,1.081,0.946,1.122,0.995,0.919,1.032,0.972,1.03,0.946,1.042,1.003,0.977,1.002,0.869,0.926,0.992,1.081,1.015,0.964,1.002,1.066,0.985,0.921,1.041,1.008,0.968,0.966,0.852,0.913,1.059,1.035,1.09,1.077,0.996,0.977,0.953,1.123,0.946,1.077,1.013,1.025,0.935,0.952,0.931,1.051,1.091,0.969,0.929,0.881,1.032,1.015,1.062,0.97,1.025 +XM_211573,1.148,1.024,0.909,1.07,1.066,0.999,1.003,1.082,0.985,0.839,1.007,1.13,0.83,1.158,0.999,1.061,1.195,1.041,1.245,0.987,0.916,0.918,0.811,0.934,1.066,0.977,1.181,1.048,0.838,0.996,1.019,0.88,1.123,1.018,1.023,1.063,0.918,0.947,0.969,0.96,0.92,0.836,1.237,1.132,0.8,0.963,0.973,0.889,1.066,1.082,1.037,0.87,1.029,0.83 +XM_211583,0.997,1.079,1.0,0.906,0.784,0.928,0.925,1.055,1.037,1.09,1.026,0.96,1.08,0.805,1.205,1.135,1.064,1.129,1.053,0.966,1.211,1.127,1.041,1.047,0.84,1.257,0.966,1.084,0.884,0.792,1.178,1.1,1.535,0.853,0.958,1.1,0.989,1.165,1.097,0.945,1.206,0.809,0.903,1.004,1.26,0.962,0.857,1.23,0.9,1.029,1.08,1.007,1.013,1.149 +XM_211587,0.984,0.998,1.012,0.963,0.91,0.921,1.011,0.782,0.967,1.046,0.889,1.001,0.926,1.08,0.98,0.923,0.949,0.889,1.012,0.936,1.119,0.971,1.104,1.045,0.98,0.929,0.989,1.024,0.943,0.965,0.978,1.029,1.187,0.913,1.031,0.995,0.996,1.022,1.002,1.062,1.04,1.118,1.391,1.061,1.1,0.925,0.945,1.013,0.927,0.932,1.011,1.001,0.983,1.127 +XM_211602,0.85,1.248,0.88,1.1,0.865,2.565,1.007,0.755,0.967,0.984,2.819,0.818,0.925,0.943,2.126,7.367,0.946,1.059,0.889,5.566,0.88,0.981,2.76,0.925,1.003,0.982,0.909,0.848,0.777,3.213,0.899,0.988,0.834,1.632,0.816,0.997,2.94,1.063,1.447,0.955,0.886,4.257,0.64,0.916,0.949,2.446,2.108,0.841,1.974,0.806,2.077,0.877,0.878,0.841 +XM_211604,0.979,1.039,0.966,1.106,0.996,0.999,1.077,0.939,0.96,0.973,1.004,0.939,0.974,0.882,0.956,0.988,0.99,1.007,1.043,0.977,0.876,0.924,0.928,1.108,0.967,0.997,1.197,0.969,0.985,1.078,0.968,1.036,0.873,0.949,0.923,1.013,1.002,0.978,1.009,0.991,1.026,0.943,0.919,1.004,1.052,1.03,1.043,1.018,0.99,0.972,0.965,1.085,0.91,0.893 +XM_211627,0.905,1.101,1.079,1.046,1.022,1.003,0.843,1.019,0.886,0.88,0.877,1.109,1.023,1.042,0.931,0.999,0.984,1.014,1.049,1.068,1.005,0.997,0.949,1.028,0.923,1.171,1.036,0.964,0.833,1.005,1.068,0.949,1.247,0.947,0.998,0.996,1.001,1.211,1.037,0.942,0.953,1.049,0.935,1.075,0.956,1.14,0.975,1.034,0.967,1.137,0.99,1.034,1.166,0.881 +XM_211634,0.952,1.192,1.052,0.925,1.019,1.056,1.114,0.992,0.982,0.969,1.109,0.956,0.939,0.985,0.883,1.128,1.077,1.11,1.094,1.037,1.024,0.952,0.96,1.02,1.032,0.949,0.929,0.96,0.939,1.156,0.976,0.964,1.15,1.019,1.037,1.139,0.984,0.908,0.969,0.924,1.083,0.916,0.829,1.037,0.946,1.134,0.926,0.904,0.995,0.999,1.047,0.944,0.995,0.962 +XM_211636,0.887,0.917,0.979,0.911,0.975,1.072,0.651,0.683,1.445,0.987,1.375,0.766,0.847,0.738,0.929,1.274,0.92,0.812,0.984,1.285,0.828,0.834,1.761,0.996,0.87,0.991,1.179,0.916,0.561,1.559,1.202,1.339,2.031,1.352,0.818,0.835,0.974,0.842,1.155,1.274,1.217,1.122,0.647,1.187,0.857,1.186,0.911,0.784,1.053,0.952,1.138,0.877,0.849,2.621 +XM_211643,0.999,0.96,0.896,1.08,0.997,1.001,0.984,1.058,0.971,1.013,1.039,0.997,0.828,0.941,1.055,1.019,1.036,1.057,0.855,0.981,0.933,0.944,1.025,0.935,0.944,0.849,1.1,0.982,0.935,1.103,1.018,1.023,1.101,1.111,1.017,1.039,0.975,1.143,0.961,0.959,1.095,1.019,0.995,0.916,0.902,1.054,0.962,0.957,0.992,1.046,0.999,0.934,1.037,1.02 +XM_211665,1.032,1.002,1.019,0.94,0.912,1.004,1.201,1.014,1.066,1.032,0.969,1.004,0.919,0.97,0.781,1.044,0.991,1.015,0.875,0.994,0.976,0.965,1.0,1.115,1.044,0.967,0.965,1.04,1.064,0.963,1.016,0.959,0.867,1.159,0.923,0.935,1.101,0.989,1.019,1.105,1.014,1.004,1.032,0.988,1.065,0.919,0.912,0.978,0.988,1.029,1.058,0.924,1.022,1.041 +XM_211671,0.871,0.93,0.884,1.009,0.88,1.018,1.102,1.037,0.952,0.947,1.019,0.962,1.077,1.032,0.873,1.097,0.998,0.872,0.999,1.158,0.998,0.957,1.034,0.941,1.022,0.896,1.022,1.014,1.385,1.182,0.938,0.973,1.136,0.942,1.091,1.04,0.988,1.022,0.986,1.089,1.049,0.947,0.977,0.925,1.217,0.794,1.006,0.967,1.039,1.056,0.956,0.937,0.884,1.084 +XM_211700,1.023,0.946,1.052,0.887,1.082,1.033,1.037,0.872,0.931,1.001,1.133,1.025,1.039,1.033,0.889,0.999,0.897,0.989,1.134,0.999,1.006,1.059,0.967,1.088,1.083,1.054,0.982,0.976,0.922,1.031,1.125,0.997,1.037,0.937,1.032,1.039,1.056,1.145,0.995,0.903,0.978,1.002,0.904,1.052,0.968,1.039,0.99,0.907,1.037,0.992,1.009,1.042,1.014,1.043 +XM_211702,0.961,1.054,1.057,1.031,0.997,0.944,1.129,0.986,1.028,0.948,1.103,0.996,1.029,0.907,0.922,1.061,1.012,1.003,0.951,1.117,0.996,1.063,1.024,1.036,0.993,1.001,0.894,1.023,1.156,0.945,1.004,1.049,0.911,0.916,1.014,1.015,0.862,0.96,1.073,0.996,0.955,1.034,0.945,0.844,0.815,1.032,1.058,1.035,0.977,0.987,1.033,0.904,0.927,0.949 +XM_211704,1.03,1.033,1.057,0.969,0.997,1.059,1.052,0.92,1.209,0.992,0.976,1.072,0.946,0.967,0.953,0.935,1.031,0.944,1.102,0.976,0.969,0.937,1.009,0.985,0.94,1.01,1.076,1.116,0.722,1.01,0.943,1.099,0.937,1.042,0.906,0.968,0.992,0.933,1.048,1.108,0.98,1.014,1.264,1.05,1.002,1.054,1.092,1.138,0.864,0.992,0.953,0.988,1.068,1.096 +XM_211708,1.145,0.926,1.005,1.01,1.05,1.096,1.169,0.871,0.957,1.081,0.995,1.082,1.204,0.965,1.149,1.096,0.924,0.983,0.895,1.033,1.049,0.896,1.034,0.976,0.982,0.901,1.07,0.956,1.116,0.957,1.037,0.892,0.966,0.944,1.039,0.991,1.036,0.931,0.998,1.029,1.17,1.002,1.017,0.993,0.94,1.005,1.054,1.112,0.876,1.018,1.039,0.995,1.054,0.999 +XM_211711,1.041,1.01,1.018,0.977,0.885,1.03,0.892,0.886,1.014,1.056,1.029,0.994,0.999,1.043,0.922,1.007,1.092,0.991,0.948,1.073,1.048,1.072,1.082,0.985,1.048,0.892,0.921,0.999,0.962,1.056,0.988,1.036,0.897,0.911,1.008,1.012,0.974,0.967,0.987,1.008,1.012,0.934,0.955,0.949,0.964,1.026,1.041,0.935,0.915,0.932,1.027,1.09,1.052,1.001 +XM_211728,0.96,1.0,1.04,1.004,0.948,1.05,0.863,0.937,0.868,1.081,1.052,1.016,1.118,0.989,0.92,0.893,1.013,0.952,1.0,0.978,0.933,1.116,0.976,0.957,0.957,1.119,0.981,1.014,0.951,1.03,0.964,0.909,0.92,0.939,1.06,0.919,0.96,1.08,1.021,0.966,1.052,1.014,1.033,1.031,1.101,1.015,1.064,1.05,0.914,1.044,1.034,1.164,0.913,0.949 +XM_211729,1.042,0.994,1.08,0.938,0.961,1.0,1.259,1.043,0.932,1.261,1.07,1.045,1.029,0.918,1.066,1.156,0.955,0.923,1.056,1.099,1.004,1.096,0.932,1.025,1.002,1.077,0.939,0.96,0.867,0.952,1.01,0.91,0.986,0.902,1.171,0.988,0.991,1.015,0.928,0.974,1.043,1.093,1.204,1.105,0.875,1.083,0.975,0.968,0.914,0.948,0.939,1.098,1.0,0.874 +XM_211735,0.954,0.99,0.877,1.027,1.011,0.906,0.903,1.163,0.976,1.098,1.035,0.905,0.883,1.199,0.922,1.049,1.218,1.152,0.987,1.063,1.135,1.023,1.051,1.047,1.003,1.06,1.265,0.958,1.008,0.921,1.188,0.94,1.069,1.003,1.043,0.948,0.951,0.982,0.89,1.055,1.097,1.006,0.78,0.92,0.993,0.869,0.938,0.997,0.898,0.978,0.964,1.028,1.094,0.923 +XM_211736,0.849,1.108,1.066,0.898,0.81,1.081,0.972,1.288,0.888,0.997,1.065,0.911,0.892,1.015,0.83,1.003,0.802,0.936,0.767,0.987,0.942,0.957,1.443,0.939,0.883,0.863,0.812,0.903,0.994,1.563,0.935,1.043,1.085,1.322,0.937,1.028,1.029,0.888,0.748,1.32,0.828,1.115,0.853,1.032,0.789,1.509,0.922,1.135,0.832,1.008,1.118,1.135,1.104,1.233 +XM_211750,0.927,0.943,0.928,0.904,0.999,1.075,1.488,0.934,0.86,1.136,0.989,1.018,0.854,1.126,1.054,0.985,1.18,0.89,1.188,0.997,0.979,1.01,1.028,0.926,0.936,1.051,1.021,0.98,1.022,1.014,0.876,1.05,1.095,1.073,0.966,1.008,1.007,0.923,0.85,1.067,0.93,1.074,1.106,1.044,0.899,0.956,1.007,1.019,1.096,0.991,1.095,0.943,1.09,0.976 +XM_211758,0.995,0.934,0.961,1.09,0.876,1.03,0.846,1.095,1.027,0.999,1.088,0.96,1.055,0.955,1.024,1.027,0.974,1.03,0.923,1.061,1.087,1.004,1.07,1.101,0.975,1.078,0.964,1.037,1.238,1.004,0.996,0.942,0.995,1.008,0.869,1.048,1.012,1.044,0.954,0.983,1.01,0.943,1.086,0.911,1.163,0.919,1.026,0.991,0.866,0.919,0.999,0.935,1.033,0.989 +XM_211759,1.074,0.993,0.859,1.165,0.954,1.026,0.935,1.079,1.008,1.015,0.984,1.011,1.004,0.965,1.066,1.004,1.082,0.909,1.063,1.068,0.991,0.914,0.978,1.017,0.977,1.085,0.996,0.999,0.872,0.898,0.913,0.941,0.943,1.066,1.081,0.877,1.013,0.951,1.067,0.968,1.068,1.122,0.818,1.058,1.136,0.962,0.996,0.999,0.959,0.934,1.001,1.104,0.984,1.018 +XM_211761,0.974,0.884,0.935,1.18,1.03,1.086,0.955,1.163,0.907,0.967,1.004,1.035,0.951,1.129,0.991,1.039,0.907,0.987,0.939,0.979,1.031,0.994,0.973,1.108,1.056,0.976,0.956,1.017,1.277,1.067,0.967,1.041,1.052,1.158,1.127,0.964,0.946,1.023,1.04,1.014,0.925,0.925,1.008,0.844,0.96,1.113,1.016,0.949,0.98,1.042,1.058,1.063,0.966,1.0 +XM_211764,0.982,0.9,1.049,1.2,1.036,0.985,1.148,1.228,1.258,0.998,1.086,0.916,1.09,1.074,1.36,0.949,0.973,0.962,1.059,1.144,1.128,0.903,0.868,1.091,1.024,1.049,1.019,1.051,0.883,0.956,0.958,1.029,1.048,0.931,0.947,1.033,1.046,1.024,0.858,0.957,1.024,0.956,0.818,0.862,1.05,0.996,0.943,0.972,0.85,0.867,0.961,1.106,0.983,1.005 +XM_211766,1.049,1.026,0.95,1.029,0.888,1.044,0.849,0.881,0.954,1.202,1.176,1.062,0.968,1.044,0.929,0.95,1.165,1.028,0.888,1.079,0.933,0.929,1.061,1.064,1.048,0.872,1.063,0.945,1.142,0.966,1.052,1.033,0.904,0.978,1.014,1.083,0.982,0.867,1.027,1.026,0.892,1.014,1.189,1.042,1.032,0.947,1.08,0.954,1.025,1.046,1.002,0.978,1.001,1.264 +XM_211768,0.754,0.863,1.09,1.096,1.194,1.031,1.051,0.992,0.998,1.158,1.033,0.975,0.925,0.911,0.905,0.98,0.916,0.888,0.798,1.104,1.236,0.91,1.002,0.941,0.874,0.91,1.099,1.101,1.736,1.158,1.052,1.04,0.683,1.01,1.043,0.821,0.947,0.862,1.004,1.031,1.049,0.955,1.15,1.025,0.842,0.907,0.974,0.923,0.889,1.155,0.944,0.958,1.212,1.046 +XM_211775,1.096,0.979,0.928,0.997,1.052,1.064,1.003,0.97,0.983,1.024,0.979,1.05,1.026,1.036,0.931,0.985,1.024,0.929,0.94,0.99,1.002,0.924,1.067,1.084,0.959,0.999,1.014,1.053,0.895,1.014,1.027,0.899,1.035,0.991,1.049,1.008,0.966,0.985,1.012,0.997,1.036,0.922,0.939,1.066,1.087,1.001,0.97,1.059,0.884,0.973,1.006,0.981,1.029,0.904 +XM_211781,1.05,1.007,0.977,1.088,1.035,0.978,0.912,0.98,0.982,1.045,1.094,0.987,0.945,0.899,1.044,0.914,1.071,0.984,1.037,0.985,0.996,1.003,0.975,1.099,1.069,1.026,1.139,0.977,0.947,1.012,0.858,0.938,0.949,1.082,1.034,0.96,1.108,0.972,1.001,0.998,0.975,1.054,1.152,1.013,1.066,1.066,0.962,1.004,1.026,0.959,1.032,0.977,1.028,1.027 +XM_211782,1.027,1.033,1.07,1.072,1.042,1.032,0.947,1.041,0.996,0.894,1.002,1.089,0.998,1.171,1.369,0.919,0.998,1.032,0.992,0.959,0.99,0.998,1.032,0.985,1.076,0.955,1.0,1.01,1.034,1.064,0.881,0.966,1.062,1.013,1.145,0.955,0.929,1.093,1.004,0.954,0.928,1.026,1.22,0.952,0.964,1.069,1.109,0.99,0.869,1.05,1.06,0.985,1.0,1.037 +XM_211783,1.057,1.062,0.992,1.157,1.067,0.996,1.166,0.975,0.894,1.019,0.954,1.081,1.157,0.962,1.012,0.957,0.932,0.98,1.034,1.071,0.934,0.973,0.98,1.066,1.056,0.861,1.057,1.045,1.056,0.949,1.158,1.015,1.032,1.184,1.068,0.997,0.951,1.074,1.041,1.011,0.991,0.927,0.936,1.077,0.989,0.893,0.987,1.049,0.899,1.05,0.981,0.998,1.067,0.868 +XM_211797,0.779,1.428,0.923,0.89,0.898,1.621,0.756,0.859,0.895,0.835,1.341,0.979,0.907,0.93,1.311,1.445,0.945,1.048,1.0,1.816,0.947,0.885,1.831,0.883,0.87,0.946,0.946,0.971,0.985,1.261,0.941,1.081,2.391,0.961,0.995,1.195,1.323,0.893,1.178,1.984,1.095,1.389,0.795,1.158,0.998,1.637,1.216,0.919,1.394,1.032,1.285,0.963,0.957,2.693 +XM_211802,0.927,0.863,1.193,0.993,1.138,0.948,1.165,0.994,1.064,0.935,1.077,1.0,1.036,1.054,1.0,1.071,1.021,0.953,0.954,0.961,0.934,0.955,1.005,1.069,0.998,0.976,0.906,1.007,1.162,1.05,0.982,1.039,0.955,0.913,0.928,0.892,0.96,1.034,0.951,1.218,0.962,1.078,0.937,1.078,0.973,0.933,1.013,1.023,1.026,1.103,1.054,0.959,0.981,0.977 +XM_211805,0.966,0.883,0.934,0.932,0.922,1.01,0.92,1.006,0.995,1.054,0.976,0.998,1.029,1.182,1.088,1.036,1.002,1.024,1.093,1.005,0.886,0.936,1.07,1.049,1.068,0.984,1.116,0.966,0.676,0.844,0.908,1.011,1.059,0.852,0.994,1.081,0.938,1.084,1.059,0.958,0.893,0.877,0.921,0.886,0.995,1.088,0.989,1.042,0.972,1.078,0.894,1.093,1.121,0.958 +XM_211816,0.991,1.055,1.057,0.837,0.983,1.063,1.113,1.081,1.009,1.081,0.992,1.075,1.011,0.96,0.759,1.076,0.979,0.931,1.037,0.963,0.942,1.002,1.001,1.085,0.925,1.25,1.034,1.0,1.018,1.0,0.921,1.008,0.823,0.973,1.081,0.901,0.966,1.017,1.095,1.0,1.037,1.069,1.137,0.98,0.855,1.038,1.013,1.02,0.932,1.022,0.972,0.903,1.013,1.054 +XM_211835,0.937,1.111,0.988,1.007,0.893,0.935,1.123,1.127,1.023,1.17,0.889,0.973,0.986,0.851,1.003,1.039,0.999,0.905,0.961,0.985,1.045,1.037,0.979,1.142,0.998,0.96,0.927,0.961,0.806,0.939,0.981,0.856,1.004,0.987,1.008,1.001,0.92,0.983,0.976,1.028,1.064,0.943,1.099,0.96,1.028,1.059,1.088,0.952,1.048,0.937,0.91,1.049,1.124,0.988 +XM_211853,1.061,1.267,0.677,0.992,0.997,0.928,0.977,0.869,1.048,0.975,0.976,0.875,1.108,0.751,0.951,1.053,0.985,1.066,0.853,1.099,0.975,1.023,1.05,1.043,0.862,0.909,0.709,0.865,0.93,1.087,0.818,0.926,0.978,0.884,1.214,1.104,1.01,1.084,0.891,1.185,1.003,1.227,1.259,1.095,0.774,0.92,0.851,0.846,1.073,0.869,1.027,1.065,1.08,0.896 +XM_211865,0.939,1.038,1.1,0.988,0.961,1.043,1.037,1.11,1.036,0.997,0.978,0.972,0.874,0.929,0.986,0.951,1.029,1.054,1.126,0.983,0.957,1.038,1.076,1.012,1.035,1.04,0.998,1.045,0.934,1.076,0.915,0.947,1.169,0.941,0.973,1.099,0.949,0.905,1.037,0.913,0.986,1.047,0.957,1.003,0.933,0.925,0.944,1.025,0.994,0.979,1.071,1.125,1.096,1.037 +XM_211870,0.969,1.076,1.02,0.964,0.914,1.024,1.079,0.963,0.998,0.942,1.079,1.013,1.022,0.989,1.119,0.956,0.958,1.013,1.082,0.914,1.213,0.981,0.92,0.984,0.955,1.008,0.989,0.969,0.996,0.951,0.991,1.011,0.934,1.061,1.054,0.963,0.955,0.95,0.906,1.062,0.957,0.997,1.002,0.92,1.011,0.931,1.022,1.038,0.848,1.035,0.948,0.921,1.004,1.066 +XM_211871,0.946,0.976,0.985,1.03,1.048,0.996,1.178,1.013,1.001,0.953,0.976,1.101,0.901,0.995,0.867,0.971,0.976,0.909,0.952,1.012,0.94,0.981,0.956,1.004,1.088,0.884,1.156,1.101,0.77,1.128,1.01,1.111,0.93,0.945,0.99,1.033,0.937,0.94,1.078,0.926,0.95,0.946,1.039,0.903,1.078,0.998,0.969,1.058,1.068,1.048,1.062,1.002,1.206,0.943 +XM_211873,0.972,0.927,1.03,0.927,0.931,0.941,0.868,0.938,0.972,1.016,0.913,0.913,0.934,1.013,1.164,1.048,1.073,1.003,1.01,0.919,1.062,0.983,0.946,0.921,0.999,0.869,1.047,1.045,1.178,1.014,1.107,1.027,1.051,0.973,1.024,0.989,0.903,1.043,1.021,1.106,0.906,0.977,0.886,0.959,0.963,0.915,0.925,0.977,0.997,1.035,1.136,0.938,0.995,1.113 +XM_211884,1.042,1.006,1.147,0.942,1.005,1.044,0.777,0.934,1.043,1.0,1.005,1.031,0.988,0.901,1.233,1.082,1.008,1.125,1.007,0.962,0.992,1.1,0.849,1.049,1.082,1.084,0.94,0.991,0.977,0.992,1.01,1.003,0.832,0.981,0.932,0.938,1.109,1.18,0.987,0.988,0.991,0.963,1.18,0.994,0.97,1.071,0.98,1.011,0.987,0.994,0.945,0.951,1.035,0.998 +XM_211890,0.969,0.985,1.044,0.951,0.909,1.108,0.845,1.013,0.927,0.975,0.983,0.936,1.008,1.001,1.038,0.907,1.034,1.022,0.911,1.03,1.038,0.971,0.966,0.966,0.993,0.992,1.022,0.926,1.546,1.032,0.959,0.923,0.919,0.897,1.024,0.96,1.015,0.946,1.063,0.999,0.94,0.947,1.029,1.032,0.987,0.96,1.034,1.126,0.98,0.98,1.008,1.02,1.003,1.114 +XM_211919,0.952,0.924,0.989,1.004,0.997,0.932,0.992,1.009,1.042,1.102,1.003,0.996,1.06,0.981,0.937,1.085,1.055,1.015,1.056,0.937,1.018,0.953,1.044,0.908,1.037,1.063,0.984,0.899,1.099,0.922,1.017,1.133,1.001,0.936,1.076,1.0,1.044,0.934,0.98,1.0,1.076,0.938,0.902,1.025,1.048,1.06,1.016,1.02,0.992,0.989,0.904,0.956,1.041,1.051 +XM_211929,0.917,0.994,1.032,0.936,1.015,0.903,1.161,1.009,0.942,1.023,0.985,0.854,1.01,1.101,1.115,0.861,1.023,0.9,1.085,0.846,0.841,1.033,1.125,1.039,1.03,1.023,0.923,1.024,0.996,0.944,0.973,1.0,1.117,0.906,1.112,0.988,0.945,0.989,1.043,1.061,1.081,1.061,0.873,1.054,1.012,1.033,0.957,0.953,1.052,1.006,1.023,0.939,0.988,1.111 +XM_211930,1.19,1.013,1.757,0.88,1.415,1.081,0.869,1.11,2.373,1.274,0.792,0.938,0.845,2.777,2.184,0.983,1.67,0.915,1.519,1.309,1.691,2.234,0.857,1.436,0.849,1.252,2.624,1.405,0.88,1.392,1.769,1.344,1.297,0.881,0.689,0.681,0.819,1.301,0.703,0.725,2.433,1.061,0.695,0.762,1.491,0.783,1.029,1.388,0.728,0.879,0.936,1.04,1.052,0.987 +XM_211950,1.026,0.947,0.963,1.012,0.963,0.966,1.098,1.106,1.179,1.065,1.04,0.982,1.071,0.976,1.227,0.884,1.109,0.981,0.893,1.07,0.95,0.859,1.066,1.086,1.007,0.963,1.014,0.989,0.955,0.902,0.913,1.03,0.813,0.993,1.051,0.983,1.025,0.953,0.947,0.866,1.058,0.993,0.981,1.051,0.933,1.026,0.975,1.018,0.972,1.025,1.032,1.021,0.906,0.972 +XM_211951,0.986,0.964,1.032,1.06,0.947,0.977,1.183,0.922,0.876,0.934,1.042,1.051,0.92,0.894,1.193,0.96,0.933,1.08,0.91,1.15,0.95,0.975,0.958,0.967,0.918,1.048,1.129,0.997,0.927,1.055,1.026,1.031,0.841,0.938,1.117,0.929,0.986,0.936,0.955,1.044,0.926,0.993,1.258,1.057,1.054,0.965,0.988,0.996,1.036,1.023,0.91,1.021,0.978,1.172 +XM_211981,0.396,1.67,0.921,0.422,0.773,1.407,1.098,0.635,0.634,0.655,1.11,0.808,0.635,0.468,1.057,2.063,0.463,1.306,0.552,1.845,0.397,0.811,1.408,0.819,0.972,0.505,1.425,0.507,0.197,1.823,0.9,1.766,2.106,2.189,0.232,0.57,1.954,0.872,1.254,1.031,0.777,1.823,0.174,0.563,0.762,0.91,0.458,0.587,1.322,0.575,1.374,1.133,0.478,1.463 +XM_211984,0.967,0.965,1.011,0.944,0.993,0.955,1.059,1.092,1.004,0.965,1.054,1.092,1.075,0.903,0.857,1.061,0.966,1.141,0.969,0.977,0.984,1.134,0.986,1.047,0.959,1.023,0.985,1.021,1.077,1.074,1.003,1.017,1.0,1.016,1.253,0.897,1.133,1.062,1.004,1.036,1.045,0.96,1.082,1.112,1.051,1.03,1.069,1.029,0.89,0.99,0.98,0.972,1.05,0.972 +XM_211985,0.827,1.009,1.11,0.914,0.953,1.144,0.818,1.019,1.031,0.83,0.947,0.958,0.886,0.989,0.996,0.991,1.004,0.89,1.104,1.129,0.849,0.882,1.136,1.176,0.764,0.924,1.283,0.954,0.793,1.088,0.87,1.549,1.605,1.065,0.725,1.145,0.871,0.976,0.95,0.965,1.113,0.925,1.047,1.116,0.995,0.96,0.962,0.852,1.014,0.888,0.892,0.965,0.918,2.218 +XM_211995,1.011,0.915,0.908,0.928,0.977,1.026,1.095,1.111,1.074,1.02,1.029,0.956,0.923,1.098,1.083,0.938,0.951,0.968,1.137,0.948,0.999,0.962,0.911,1.033,1.066,0.952,0.914,0.969,1.098,0.998,1.064,0.886,0.96,1.033,0.946,0.965,0.921,0.962,1.029,0.892,1.001,0.909,0.887,1.075,1.037,1.006,1.024,0.954,0.968,0.966,1.055,0.964,1.052,1.036 +XM_211998,1.012,1.327,0.949,0.965,0.929,1.223,0.97,0.905,0.952,0.958,0.985,1.001,1.016,1.263,0.837,0.948,1.024,0.964,0.987,0.987,1.062,0.96,1.036,1.074,1.291,0.928,1.133,1.107,0.985,1.463,0.997,0.94,0.975,1.696,0.977,1.133,1.086,1.026,0.986,0.936,0.879,0.995,0.981,0.884,0.989,1.014,1.013,1.001,1.085,0.932,0.949,1.002,0.915,0.937 +XM_212001,1.046,0.879,1.024,0.862,0.964,1.012,0.983,1.003,0.975,1.064,1.082,0.967,1.134,0.9,1.336,0.918,1.066,0.99,0.983,1.049,1.114,0.987,0.958,0.964,1.025,1.088,0.9,1.021,1.109,1.008,1.175,1.028,0.914,0.935,0.937,1.105,1.038,0.978,1.012,1.019,1.09,1.05,0.923,0.985,1.138,0.899,0.948,1.004,1.002,0.942,1.016,1.0,0.956,1.0 +XM_212017,0.954,1.014,0.984,1.054,1.091,0.976,0.971,1.154,0.983,0.977,1.063,0.961,0.958,0.748,1.246,0.988,0.95,1.001,0.993,1.173,0.906,0.966,0.955,1.041,1.004,1.037,1.114,0.924,1.092,1.055,0.877,1.188,1.023,1.082,0.921,0.916,1.026,0.952,1.037,1.037,0.938,0.939,1.173,0.989,0.885,1.036,1.058,1.023,1.101,1.009,1.061,1.1,1.043,0.986 +XM_212022,0.938,1.043,0.971,0.974,0.844,1.087,0.922,1.068,1.116,0.734,1.11,1.037,0.976,1.007,0.975,1.03,0.882,0.837,1.109,1.0,1.009,1.112,0.986,1.064,1.146,1.084,0.986,1.131,1.279,0.928,1.102,0.848,1.016,0.938,1.165,1.038,0.94,1.07,0.956,0.965,1.084,0.869,0.908,0.936,0.998,0.859,0.963,1.03,0.944,0.983,1.04,1.153,0.946,1.079 +XM_212029,1.045,1.02,1.02,0.965,1.035,1.056,1.047,1.257,1.012,1.0,0.962,0.977,0.888,0.835,0.935,0.973,1.041,0.95,0.876,1.029,0.914,1.102,0.989,0.957,1.025,1.041,1.0,0.98,1.028,1.078,0.911,1.033,0.967,0.965,1.022,0.91,0.89,1.063,1.027,1.086,1.048,0.991,0.918,0.933,0.994,0.886,1.006,1.091,1.068,0.971,0.941,0.883,0.954,0.989 +XM_212033,0.881,0.981,0.98,1.067,0.989,0.975,1.088,1.116,1.043,1.074,1.052,1.041,0.956,0.96,1.172,0.97,0.999,1.078,0.969,1.072,1.072,1.108,0.963,1.14,0.905,1.087,0.955,0.881,0.97,1.082,1.014,1.026,1.052,0.924,0.882,0.869,0.877,0.986,0.98,1.093,0.927,0.989,1.139,0.959,0.99,1.035,0.936,1.019,0.965,1.026,0.993,0.9,1.06,0.943 +XM_212034,1.01,1.043,1.095,1.074,1.068,0.913,0.982,0.925,0.984,1.037,1.003,1.112,0.907,0.803,0.876,1.034,1.0,0.948,0.824,0.91,0.97,0.827,0.986,0.992,0.892,1.07,1.052,1.118,1.305,1.109,0.933,1.112,1.066,1.099,0.925,0.953,1.015,1.036,1.081,0.965,1.055,1.019,1.083,0.967,1.003,0.92,1.012,0.963,1.004,1.0,0.993,0.807,0.963,1.041 +XM_212037,1.096,1.014,1.151,1.076,0.987,0.966,0.932,1.147,0.948,0.839,1.021,0.983,1.074,1.185,0.953,0.99,0.959,1.044,1.014,0.882,0.993,0.957,1.029,0.949,1.171,0.972,0.967,1.016,1.25,1.064,1.08,0.966,0.921,0.871,0.987,1.012,0.994,0.75,1.029,1.1,0.992,1.015,1.043,1.0,1.033,1.001,1.039,1.011,0.897,1.086,0.975,0.967,0.984,0.911 +XM_212039,1.049,0.998,1.022,0.969,1.122,1.1,1.084,0.924,0.873,0.929,0.905,0.978,1.111,0.862,1.094,1.011,0.981,0.909,1.116,0.997,1.148,1.003,0.912,0.867,0.974,0.998,0.895,0.904,1.14,0.932,1.009,0.947,0.997,0.929,1.014,1.042,1.029,0.895,1.022,0.957,1.048,1.022,1.06,1.046,0.968,0.991,0.973,1.028,1.009,0.95,0.941,0.885,0.976,0.891 +XM_212041,1.144,0.925,0.923,0.968,1.114,0.964,0.926,0.876,1.065,0.994,0.931,0.917,1.065,0.911,1.011,0.995,0.994,1.082,1.05,1.173,0.985,1.173,1.027,1.052,1.111,1.032,0.943,0.941,0.959,0.934,0.98,1.064,1.001,0.851,1.032,1.035,1.062,1.116,1.056,0.974,1.078,1.091,0.809,0.992,1.023,1.064,0.997,1.015,0.943,0.995,0.877,1.099,1.123,1.094 +XM_212042,0.95,1.016,0.862,0.994,1.247,1.032,1.043,0.949,1.132,0.904,0.99,1.014,0.961,0.992,0.82,1.009,0.915,1.177,1.042,1.07,0.997,0.987,0.955,1.082,0.988,0.947,1.067,1.013,1.275,0.962,0.876,1.01,1.033,1.007,0.895,0.887,1.12,1.085,0.928,1.004,1.231,1.006,0.928,0.984,0.952,0.909,0.88,1.005,1.002,0.96,1.072,0.934,1.019,1.068 +XM_212055,0.95,0.98,1.815,0.71,1.104,0.854,0.863,0.818,1.67,1.691,0.718,1.008,0.813,0.909,0.98,0.784,1.716,0.998,1.122,1.575,0.78,1.057,0.855,1.193,0.654,1.093,1.634,1.157,0.814,0.782,1.167,1.46,1.195,1.001,0.578,0.816,0.802,1.265,0.748,0.801,1.641,1.035,0.633,0.88,1.822,0.84,1.267,0.916,0.728,1.661,0.923,1.125,1.527,0.937 +XM_212062,1.045,0.963,1.022,0.84,1.061,0.984,0.88,1.042,0.928,1.078,1.01,0.995,0.867,1.02,1.062,1.045,0.866,0.918,1.017,1.057,1.028,0.876,1.035,1.027,1.072,0.961,0.831,0.965,1.176,0.962,0.991,1.048,0.987,0.999,1.123,0.978,1.094,0.985,1.04,0.923,1.03,0.889,1.036,1.135,0.958,0.961,1.105,0.999,1.033,0.97,0.942,1.007,0.994,0.887 +XM_212064,0.985,1.04,0.852,1.046,0.978,1.149,1.269,0.933,1.046,0.995,1.201,0.951,0.953,0.882,0.997,1.295,1.045,1.105,0.798,1.174,0.85,1.058,1.534,0.967,1.04,0.952,0.867,0.968,1.019,2.72,0.932,0.963,0.931,1.54,1.002,0.998,1.129,0.873,0.867,0.926,0.999,1.116,0.809,0.801,0.961,1.494,0.958,1.007,1.027,1.02,1.125,0.89,0.92,0.876 +XM_212075,0.995,0.984,0.991,1.021,1.011,0.96,0.894,1.014,1.109,0.987,1.136,0.99,0.987,0.989,1.127,0.931,1.038,0.974,0.884,1.032,1.007,1.086,0.958,1.001,1.068,1.122,1.045,0.999,0.865,0.981,0.996,0.969,0.931,0.911,0.952,0.983,1.051,0.921,1.069,1.069,0.956,0.978,1.206,1.074,0.988,0.99,1.093,1.043,0.999,1.002,0.912,0.945,0.987,0.827 +XM_212085,1.086,1.001,1.084,1.035,0.979,1.004,0.985,1.038,1.156,0.938,0.981,0.9,0.955,0.975,0.982,0.987,0.935,1.035,0.943,0.974,1.141,1.058,0.994,1.077,0.781,0.996,0.975,0.981,0.959,0.911,0.924,0.969,1.033,0.997,1.183,0.997,1.114,1.083,0.938,1.026,1.017,1.04,1.119,1.067,1.018,0.936,0.965,1.088,1.047,0.986,0.991,1.189,1.065,1.075 +XM_212087,1.267,1.067,0.911,0.982,1.094,1.009,1.132,2.085,1.548,1.171,1.041,1.498,1.371,1.541,1.355,1.112,0.872,1.071,1.901,0.95,1.002,2.12,0.867,2.416,0.84,0.915,1.079,1.009,0.896,0.928,1.433,0.961,1.0,0.971,1.012,1.039,0.94,1.953,1.121,0.998,0.979,0.94,0.897,0.968,1.207,1.013,0.979,0.92,0.939,1.087,1.041,0.866,1.082,0.963 +XM_212102,0.906,1.006,0.874,0.835,0.941,1.449,0.917,0.89,0.824,0.92,1.124,0.881,0.904,0.868,1.078,1.213,0.987,1.218,1.014,1.235,0.933,0.997,1.106,0.992,0.965,0.942,0.921,0.939,0.934,1.002,0.94,1.1,1.126,1.081,0.919,1.446,1.067,0.838,1.094,1.06,0.872,1.105,0.903,0.853,1.045,1.193,1.088,0.986,0.984,0.989,1.122,1.318,1.058,1.278 +XM_212107,0.973,0.981,0.965,0.989,0.99,1.1,1.039,1.004,0.996,1.239,0.919,1.013,0.911,1.245,0.987,0.977,1.028,0.965,1.042,1.062,0.969,0.861,1.02,1.015,0.978,1.065,0.978,0.969,0.96,1.088,0.943,0.99,0.981,1.025,0.998,1.054,1.081,1.017,0.883,1.06,0.99,0.975,1.093,0.972,0.951,1.104,0.979,0.978,0.965,1.06,0.935,0.979,1.082,0.9 +XM_212117,0.988,1.066,0.994,1.033,0.939,0.938,1.096,0.969,1.002,0.929,0.948,1.024,0.976,1.041,0.991,0.955,1.089,0.88,0.991,0.972,1.002,1.108,1.125,0.984,1.05,1.02,1.013,1.032,0.988,1.061,0.916,1.003,0.941,1.056,0.973,0.874,1.028,0.941,0.958,1.021,1.15,1.006,1.121,1.062,1.116,1.016,1.055,1.099,1.043,0.985,0.963,1.019,0.983,0.905 +XM_212123,1.053,0.971,0.983,0.92,0.982,0.967,1.109,1.134,1.145,0.872,0.97,1.094,1.046,1.075,1.008,1.167,0.917,0.985,1.006,0.986,1.004,1.117,1.081,0.913,0.914,1.086,0.945,0.896,1.145,0.963,0.965,0.878,1.152,0.962,0.9,0.793,0.91,1.133,0.941,0.881,0.868,0.978,1.243,1.073,1.081,0.869,1.032,1.148,1.125,0.993,1.154,0.959,1.063,1.117 +XM_212130,0.883,1.022,0.954,1.071,0.964,1.013,1.185,1.028,1.039,0.998,1.074,1.033,1.073,1.084,1.095,1.08,0.995,1.007,1.086,1.0,0.98,0.988,1.059,1.165,0.974,1.188,0.924,1.103,1.045,0.886,1.097,1.014,1.032,0.953,1.115,1.047,1.062,0.927,0.99,0.961,0.937,1.062,1.045,0.942,0.86,1.032,1.096,0.98,0.911,1.071,0.939,1.07,0.987,0.97 +XM_212134,0.979,1.024,1.014,1.049,0.843,0.924,1.081,0.955,1.071,1.053,0.933,0.992,1.055,0.985,1.06,1.081,1.014,0.968,0.803,0.955,1.093,0.97,1.22,0.883,0.973,0.895,1.024,0.95,0.889,0.94,0.979,0.876,1.022,0.993,1.024,1.046,1.012,0.998,1.027,1.031,1.047,0.957,1.218,0.908,1.084,1.006,1.052,0.981,0.957,1.048,0.908,0.99,0.975,0.976 +XM_212151,1.016,0.894,0.996,1.021,0.982,0.905,1.034,1.064,0.932,1.046,1.045,0.88,1.039,0.861,1.019,1.067,0.933,0.971,1.012,1.01,0.963,1.06,1.096,0.938,1.014,1.124,1.096,0.93,0.994,0.906,1.035,0.932,0.938,0.977,1.041,0.959,1.053,1.023,1.068,0.937,0.959,1.086,0.928,0.903,1.096,1.011,1.012,0.978,1.156,1.172,1.025,0.944,1.098,0.953 +XM_212156,1.008,1.042,1.115,0.978,1.009,1.019,0.971,1.044,0.951,1.08,0.977,0.964,1.104,0.991,0.993,0.941,0.953,0.871,1.057,1.115,0.95,0.99,0.933,0.936,1.096,1.06,0.981,0.992,1.073,1.046,0.978,0.856,1.002,0.951,0.99,1.19,0.994,1.056,0.967,0.993,1.043,0.918,0.806,1.001,0.965,1.053,1.002,1.03,0.958,0.963,1.036,1.026,1.052,1.077 +XM_212158,1.012,1.014,1.047,1.082,0.897,1.154,0.916,0.844,1.007,1.052,1.049,1.084,0.981,1.051,1.116,1.058,0.988,0.958,1.086,1.0,1.069,1.057,1.007,1.217,1.047,1.084,1.028,1.035,1.206,0.938,1.06,0.954,0.961,0.916,0.993,0.984,1.064,1.003,0.968,1.154,0.949,0.977,1.428,0.926,1.0,0.976,0.977,0.981,0.984,0.985,0.988,0.884,1.108,0.995 +XM_212161,1.078,0.971,1.116,0.947,0.923,1.041,0.949,0.994,1.048,0.994,1.001,0.918,0.959,1.079,0.9,0.992,1.082,0.969,0.995,0.962,1.026,0.959,1.109,1.09,0.943,0.899,1.012,1.013,1.444,1.057,0.998,0.997,0.918,1.068,0.883,0.999,1.057,1.076,1.029,0.984,1.003,1.009,1.058,0.93,1.032,0.996,0.889,1.078,0.955,1.154,1.07,1.046,0.982,0.922 +XM_212162,1.086,0.935,0.942,1.181,0.973,0.912,1.147,0.899,0.902,1.141,0.904,0.971,1.091,0.92,0.96,1.029,0.986,0.974,0.923,0.939,1.055,1.18,0.994,0.894,0.917,1.041,1.04,0.983,0.777,1.038,1.116,1.148,0.932,1.212,0.906,0.973,1.047,1.019,1.115,1.063,0.931,0.926,1.081,1.017,1.071,1.113,1.07,0.877,0.852,1.06,1.062,0.97,0.941,0.951 +XM_212167,0.914,1.061,0.989,0.939,1.07,1.034,1.059,1.092,1.023,1.001,0.981,0.92,0.96,1.034,0.968,1.061,0.894,1.037,1.032,0.943,0.939,0.976,0.96,1.076,0.943,0.936,1.071,1.044,1.1,0.945,0.928,1.045,0.992,1.096,1.015,0.989,1.043,1.027,1.098,0.963,0.979,0.991,0.963,0.843,1.146,0.988,0.933,1.027,1.03,0.985,1.015,1.018,1.043,0.94 +XM_212178,1.132,1.07,0.839,0.909,0.963,0.844,0.912,1.013,0.866,0.947,0.95,0.94,0.984,1.211,0.92,1.016,0.979,0.927,0.998,0.982,1.003,0.889,0.799,0.887,0.816,1.041,1.104,1.058,0.964,0.958,0.94,0.954,1.003,1.0,1.111,1.159,0.985,1.072,1.005,1.059,0.974,1.11,1.087,0.915,1.029,0.873,1.044,0.962,1.04,0.979,1.0,1.001,1.043,1.015 +XM_212184,0.931,0.965,1.093,0.938,0.884,1.014,0.865,1.315,1.087,0.979,0.853,0.978,1.023,0.911,1.189,0.973,0.889,1.017,1.004,0.884,0.937,0.985,0.909,0.908,1.073,0.911,1.039,0.977,0.896,1.078,1.075,0.995,1.045,1.046,0.897,1.03,0.978,0.936,0.989,1.009,0.967,1.112,0.999,0.95,1.031,0.944,1.117,1.028,1.17,1.043,1.086,0.94,0.945,1.128 +XM_212195,0.966,0.933,0.955,0.942,1.013,1.078,0.968,0.926,0.835,0.906,1.041,1.037,1.002,1.098,0.753,0.984,1.001,1.003,0.885,0.959,1.061,1.008,1.008,1.011,1.047,0.926,0.992,1.026,1.084,0.983,0.991,1.034,0.932,0.859,0.937,0.932,0.98,0.93,0.93,0.993,1.005,0.901,1.019,1.046,0.876,1.056,1.121,0.961,0.927,0.962,0.983,1.009,1.108,0.955 +XM_212209,0.903,1.095,1.026,1.072,1.043,0.999,1.081,1.11,0.951,0.963,1.075,0.885,1.118,1.13,0.926,0.888,0.973,1.024,1.047,0.972,0.972,1.197,1.0,0.955,1.023,1.037,1.0,0.947,0.899,0.983,0.966,0.982,0.999,0.872,0.927,0.987,1.043,1.05,1.006,0.941,0.924,0.92,0.935,1.002,0.998,0.909,1.027,1.099,1.049,0.962,1.033,1.118,0.873,0.995 +XM_212227,0.918,1.042,1.016,0.905,0.916,0.946,1.13,1.001,1.117,0.929,0.889,0.952,0.972,0.887,1.023,1.001,0.96,1.043,0.978,0.966,0.961,1.066,1.12,0.953,0.981,1.027,0.961,1.185,0.988,0.951,1.073,1.018,0.93,0.973,1.069,0.91,1.023,1.036,1.03,0.918,0.949,0.998,1.136,0.929,1.062,1.063,0.994,1.147,1.035,1.021,0.939,0.853,0.994,1.035 +XM_212233,1.049,0.976,1.046,0.847,1.135,0.979,1.06,1.019,1.154,0.895,0.874,1.037,1.073,0.976,0.961,0.952,1.155,1.048,1.208,1.035,0.92,1.004,1.074,1.033,1.052,1.179,0.725,0.951,0.774,0.818,0.977,0.987,1.105,0.866,0.954,1.044,1.118,0.908,1.085,1.008,1.046,1.025,1.287,0.837,0.973,1.015,0.884,1.034,1.069,1.025,0.997,0.939,0.929,0.869 +XM_212238,1.095,1.026,1.038,1.081,0.99,1.019,1.065,0.988,1.036,1.044,0.963,1.127,1.069,0.96,1.099,0.996,1.027,0.823,1.009,1.026,1.163,1.044,1.092,0.965,1.068,0.982,1.069,0.961,0.931,0.918,0.993,1.0,0.98,0.995,0.951,1.06,0.993,0.926,1.084,0.996,0.969,0.991,0.896,1.0,1.206,0.961,0.931,1.064,0.939,0.996,0.992,1.03,1.14,0.994 +XM_212257,1.05,1.018,0.99,0.975,0.995,1.069,0.99,1.02,0.991,1.047,1.156,0.99,0.986,1.064,0.995,1.011,0.981,0.987,0.978,1.13,0.906,1.052,1.02,1.064,1.059,0.935,0.928,0.945,0.964,0.985,0.989,1.025,0.892,0.947,1.048,0.959,0.961,1.061,0.91,0.917,0.996,1.048,0.941,0.892,1.063,1.102,1.016,0.893,1.139,0.979,0.916,0.89,1.055,0.985 +XM_212287,1.022,0.894,0.898,0.908,0.957,0.98,0.788,0.842,0.989,0.888,1.001,0.926,0.958,0.957,0.792,0.962,0.977,0.963,1.11,1.037,1.001,1.103,0.951,0.975,1.004,0.953,1.105,0.987,0.773,0.993,1.016,1.163,1.101,1.175,1.031,1.004,0.958,0.971,0.968,1.015,1.036,1.106,1.304,0.993,1.061,0.993,0.986,1.078,1.127,0.959,1.021,0.979,0.928,0.919 +XM_212290,0.979,0.889,0.951,0.99,0.976,1.019,0.826,0.889,1.123,0.896,0.958,0.974,1.082,0.99,0.989,0.9,1.012,0.921,0.905,1.046,1.088,1.108,1.014,1.019,1.004,0.969,0.998,1.069,0.785,0.917,1.068,1.55,1.257,1.08,0.969,0.916,0.873,1.053,0.907,1.0,1.095,1.057,0.936,1.115,1.048,0.933,1.066,0.987,0.951,0.989,1.056,0.937,1.144,1.021 +XM_212297,0.639,1.401,1.135,0.63,0.844,1.114,0.654,0.538,0.947,0.705,0.848,0.612,0.48,0.67,1.134,1.259,0.669,0.833,0.953,1.109,0.699,0.756,1.465,0.781,0.672,0.766,1.377,0.75,0.425,1.466,0.73,2.551,2.785,1.545,0.383,1.059,1.012,0.957,1.277,1.377,1.004,1.232,0.417,1.257,0.83,0.935,0.754,0.632,0.807,0.732,1.167,0.883,0.696,1.84 +XM_212304,0.961,0.961,0.951,0.956,1.07,0.971,1.074,0.987,1.052,1.089,1.161,1.03,1.007,0.992,1.166,1.003,0.968,1.025,0.886,0.934,0.992,1.014,0.956,1.066,0.89,0.879,0.909,1.017,1.029,0.975,1.033,0.928,0.903,0.933,1.12,0.956,1.041,0.997,0.991,0.952,1.164,1.019,0.936,0.954,0.895,1.087,1.098,1.136,0.881,0.971,1.037,0.987,1.003,1.023 +XM_212318,1.169,0.972,1.384,0.869,1.403,0.744,0.765,1.06,1.528,1.071,0.72,1.041,0.975,1.388,1.111,0.791,1.063,1.069,1.334,0.877,0.959,1.33,0.811,1.223,0.95,1.435,1.358,1.396,0.817,0.969,1.305,2.063,0.951,1.088,0.605,0.801,0.755,1.512,0.742,1.008,1.729,1.299,0.498,0.707,1.2,0.701,0.871,1.287,0.612,1.148,0.806,0.937,1.22,1.003 +XM_212319,1.135,1.115,1.095,0.915,0.971,1.055,1.085,1.14,0.838,1.015,1.018,1.099,1.046,0.895,0.815,0.973,0.916,1.07,0.942,0.862,0.937,1.01,0.968,1.057,0.874,0.981,1.02,0.956,1.086,1.088,1.019,1.029,1.055,0.913,0.986,1.039,0.849,1.011,1.009,0.987,1.213,1.004,1.233,0.85,0.942,0.948,1.065,0.961,1.045,1.038,1.065,0.979,1.041,1.094 +XM_212321,0.974,1.115,1.039,0.95,0.939,0.799,1.109,0.955,0.948,0.987,1.031,0.778,0.828,0.878,1.086,1.154,0.827,0.999,0.855,0.813,0.924,0.963,1.024,0.993,0.828,0.91,1.003,0.932,1.22,0.913,0.903,1.089,1.109,1.043,0.772,0.899,0.999,1.002,1.149,1.003,0.849,0.924,1.408,1.239,0.76,0.93,1.02,0.823,1.173,0.87,1.0,0.885,0.815,0.953 +XM_212326,1.172,0.989,0.981,0.93,0.902,1.045,0.969,1.061,1.422,1.063,0.917,1.014,0.865,1.172,1.013,1.0,1.031,0.985,0.96,0.97,1.122,0.852,1.016,0.938,1.024,1.263,1.045,1.135,1.191,0.996,0.974,0.981,1.068,0.945,0.97,0.925,0.761,0.966,1.034,1.043,1.25,0.928,1.002,1.058,0.986,1.183,1.004,1.141,1.14,0.97,0.888,0.959,1.051,0.869 +XM_212332,1.114,1.102,0.997,1.049,0.987,1.016,0.974,0.925,1.054,0.992,0.949,1.096,1.018,1.272,0.923,0.996,1.132,1.082,0.995,1.111,0.821,1.046,1.033,1.085,0.984,1.052,1.063,1.085,0.893,1.054,0.994,1.06,0.919,1.016,1.086,1.059,0.968,0.976,1.074,0.945,0.992,0.944,0.985,0.991,1.013,1.013,1.057,1.047,0.916,0.984,0.947,0.948,0.99,0.97 +XM_212581,1.005,0.868,1.027,1.002,0.726,1.135,0.821,1.149,0.892,1.225,0.879,1.127,0.945,1.012,0.937,1.173,1.019,1.05,0.961,0.972,1.157,0.922,1.031,0.89,1.032,0.816,1.051,1.197,0.932,0.911,1.052,1.188,1.067,0.983,0.85,1.014,1.04,0.96,0.893,0.998,1.092,0.942,1.051,0.951,1.083,1.008,0.933,0.996,0.962,0.872,0.946,0.9,1.05,0.951 +XM_212645,1.044,1.026,1.116,1.037,0.922,1.072,0.824,1.189,1.029,0.93,1.043,0.966,0.989,0.972,1.258,0.997,0.915,0.983,1.097,0.997,0.944,1.102,1.041,1.088,0.938,1.036,0.973,1.057,1.519,1.003,1.012,1.009,1.02,1.128,0.972,0.937,1.061,0.964,0.972,1.041,0.893,0.994,1.012,1.032,0.994,0.948,0.983,1.058,0.917,1.046,0.986,1.042,0.978,0.936 +XM_212649,0.914,1.323,1.068,1.026,0.825,0.97,1.179,1.022,1.037,0.871,1.114,0.889,0.912,0.9,0.998,1.002,0.946,0.924,1.177,0.959,0.91,0.836,1.154,0.912,1.067,0.898,0.962,0.941,0.962,0.906,0.937,1.129,1.102,1.113,0.988,1.054,1.038,0.989,1.224,0.823,0.778,1.028,1.058,0.975,0.883,0.997,1.021,0.933,0.989,1.043,1.084,0.964,0.968,1.014 +XM_290462,0.782,1.324,0.765,0.918,0.924,1.203,0.947,0.738,0.87,0.962,1.086,1.028,0.881,0.839,0.997,1.109,0.939,0.984,0.822,1.476,0.724,0.805,0.963,0.825,1.008,0.99,0.881,0.914,1.088,1.093,0.88,1.516,0.784,1.382,0.8,0.906,0.957,1.006,1.07,0.861,1.014,1.076,0.977,0.876,0.864,1.137,0.945,0.842,0.848,0.931,0.93,0.934,0.958,1.034 +XM_290465,0.982,1.005,0.946,1.142,0.993,1.087,0.998,0.923,0.915,1.057,1.048,0.919,1.055,0.992,0.91,1.008,1.004,1.012,1.093,0.894,1.038,0.832,0.923,1.024,1.0,0.965,0.947,0.885,1.743,1.078,0.97,1.134,0.943,1.216,0.833,1.006,0.995,0.907,0.992,0.942,1.004,0.956,1.007,1.002,1.007,0.975,0.963,0.879,1.04,0.946,0.988,1.012,1.025,1.18 +XM_290496,1.061,0.958,0.997,0.944,0.946,1.016,0.83,0.893,0.972,1.002,1.132,0.935,1.114,1.287,0.956,1.058,0.973,0.964,0.963,1.001,1.133,1.072,1.114,1.021,1.105,1.069,1.02,1.085,0.911,1.03,0.986,1.002,1.203,1.079,0.925,0.999,1.196,0.866,0.829,1.003,0.797,1.089,1.054,0.923,1.143,0.987,1.014,0.919,1.123,0.946,0.967,1.004,1.058,0.985 +XM_290501,1.021,0.934,0.963,0.971,1.002,0.956,0.973,0.993,0.933,0.835,0.951,1.081,0.933,1.33,1.117,0.867,0.916,1.113,1.02,0.952,1.063,1.074,0.926,1.097,1.062,0.979,1.25,0.988,0.758,1.007,1.008,0.954,1.0,0.9,1.045,0.894,1.131,0.976,0.991,1.103,1.027,0.943,0.8,1.106,0.932,1.051,0.971,0.941,0.952,0.989,0.969,0.927,0.967,1.025 +XM_290502,0.999,0.937,0.94,0.935,0.889,0.927,1.07,0.804,0.875,0.833,1.234,1.011,0.923,1.194,1.07,1.04,0.995,1.027,1.01,1.15,1.1,0.883,0.859,0.963,1.025,0.894,0.935,0.907,0.984,1.02,1.148,1.088,0.964,1.006,0.97,1.17,1.022,1.236,1.043,0.843,0.841,0.935,1.116,0.871,0.912,0.943,1.013,1.01,0.97,0.956,0.94,1.006,1.169,1.008 +XM_290506,0.563,1.044,1.074,0.738,0.807,1.102,0.681,0.318,0.954,0.963,0.803,0.691,0.477,0.459,0.765,1.304,0.843,1.015,0.992,1.05,0.606,0.923,1.493,0.965,0.677,0.862,1.181,0.722,0.582,1.047,0.823,1.588,2.344,1.223,0.355,1.765,0.913,1.071,1.925,1.152,0.937,1.279,0.674,1.664,0.881,0.879,1.053,0.813,1.157,0.828,1.069,0.808,0.949,1.258 +XM_290508,0.76,1.141,1.133,0.799,0.736,1.011,0.868,0.764,0.781,0.971,1.05,0.974,0.753,0.63,0.916,0.98,1.085,0.81,1.006,0.914,0.816,0.991,1.145,0.795,0.823,0.902,0.998,0.767,0.698,1.086,0.978,2.327,2.384,0.872,0.853,1.437,1.053,0.778,1.114,2.119,1.021,0.927,1.0,1.448,0.756,0.953,1.129,0.831,1.021,0.964,1.0,1.172,0.993,1.919 +XM_290509,0.975,0.912,1.9,0.819,1.383,1.008,0.658,0.96,2.058,1.326,0.61,1.465,0.902,0.875,1.041,0.962,1.4,1.006,1.098,0.97,0.519,1.269,0.799,2.08,0.58,1.005,1.868,1.537,0.491,1.24,1.367,1.972,1.456,0.981,0.943,1.041,0.643,1.357,1.011,1.948,1.709,0.796,0.515,0.807,1.491,0.627,1.36,1.132,0.701,0.971,0.823,0.802,0.849,1.897 +XM_290517,0.821,0.958,1.085,0.806,0.849,0.95,0.704,0.616,0.782,0.85,0.957,0.634,0.661,0.848,1.24,1.296,0.821,0.772,1.073,1.073,0.68,0.679,1.002,0.702,0.854,0.978,0.998,0.666,0.606,1.123,1.086,1.566,2.628,1.225,0.966,1.062,0.986,0.721,1.576,1.369,0.726,1.077,0.709,1.516,1.015,0.827,0.939,0.931,0.919,1.13,0.992,0.916,1.126,1.458 +XM_290519,0.765,1.098,0.898,0.805,0.853,1.019,0.737,0.574,0.876,1.037,1.046,0.903,0.79,0.685,0.883,1.017,0.928,0.862,1.243,0.852,0.956,0.926,1.048,0.861,0.782,0.944,1.266,0.712,0.93,1.117,0.79,1.475,2.315,1.251,0.55,1.293,0.854,0.849,1.566,1.119,0.824,1.239,0.799,1.546,0.934,0.799,0.923,0.856,0.922,1.022,0.892,0.874,1.11,1.157 +XM_290527,1.055,0.884,1.101,1.004,1.073,1.146,0.875,0.95,1.003,1.135,1.182,0.97,0.926,1.062,1.226,1.206,0.933,1.025,0.998,1.01,1.003,1.074,0.973,1.047,0.94,0.847,1.079,0.956,1.123,1.049,0.966,1.157,1.402,1.137,0.96,0.934,1.038,1.004,0.97,1.073,0.845,1.001,1.062,0.854,0.914,1.066,0.986,0.872,0.907,1.026,0.946,0.986,1.106,1.268 +XM_290536,0.907,0.935,1.011,0.937,0.948,0.923,0.828,0.81,1.124,1.048,0.939,0.83,0.796,0.83,1.018,1.062,0.992,0.895,0.987,0.97,0.937,0.914,1.146,0.878,0.945,0.997,0.876,0.923,0.757,1.157,1.06,1.079,0.968,0.895,0.716,1.381,1.135,0.927,1.085,1.083,1.037,0.993,1.073,1.056,1.002,0.985,1.109,0.953,1.12,1.143,0.949,0.927,0.96,0.973 +XM_290540,0.236,38.93,0.255,20.16,0.278,14.36,7.762,0.26,0.253,0.251,7.787,0.269,0.21,0.247,1.117,2.519,0.271,6.237,0.265,18.07,0.217,0.271,14.45,0.28,25.02,0.302,0.223,0.273,0.881,24.02,0.22,1.976,0.233,43.31,0.266,0.311,18.06,0.248,4.598,0.25,0.221,32.21,5.223,0.502,0.216,3.61,0.5,0.273,0.943,0.235,22.91,1.712,0.271,8.511 +XM_290546,0.902,0.789,1.263,0.612,1.1,0.798,0.384,0.53,1.56,1.18,1.423,0.579,0.673,0.882,1.21,1.568,0.687,0.68,1.241,0.883,0.612,0.742,1.286,1.085,0.493,1.077,1.053,1.097,0.353,1.059,1.297,1.529,1.685,0.973,0.28,1.24,0.911,1.344,0.892,0.403,1.315,1.049,0.722,0.837,1.129,1.219,0.924,0.692,0.878,0.908,1.006,0.677,1.208,0.851 +XM_290552,1.07,1.091,1.173,0.912,1.178,1.082,1.099,0.906,0.991,0.943,1.088,1.021,0.936,0.93,0.654,1.078,1.028,1.039,0.864,1.134,0.987,1.029,0.934,0.93,1.089,1.043,0.919,1.15,1.086,1.23,1.004,1.222,0.89,1.046,1.068,1.07,1.109,1.082,0.916,1.006,0.964,1.028,2.098,1.077,1.075,0.865,0.84,1.026,0.871,0.906,0.987,0.858,0.793,0.915 +XM_290555,0.998,1.224,1.185,1.092,0.998,0.941,0.99,0.91,1.163,1.061,0.808,1.037,1.031,0.968,0.845,0.952,0.947,0.874,1.09,0.973,1.074,0.814,1.022,0.937,1.058,0.982,1.054,1.155,0.828,0.927,0.909,1.118,0.937,0.934,0.915,1.086,0.859,0.948,1.094,1.147,0.897,0.897,1.31,1.029,1.159,0.95,1.097,1.101,0.982,1.03,0.995,1.029,1.294,0.909 +XM_290556,1.006,0.878,1.334,0.991,1.036,0.949,0.722,0.972,0.822,0.915,1.117,1.195,1.002,0.794,0.657,1.052,0.998,1.143,0.994,1.197,1.028,0.92,1.06,0.941,1.027,1.035,1.202,1.041,0.822,0.97,1.138,1.099,1.06,0.873,1.028,1.011,0.844,1.073,1.038,1.045,1.179,0.873,1.001,1.098,1.088,0.964,0.87,1.165,1.044,0.854,0.959,1.011,0.911,1.082 +XM_290558,1.053,0.917,1.001,0.923,0.994,0.936,0.992,1.095,0.849,0.876,1.072,1.017,0.969,0.889,0.905,0.991,1.13,0.926,0.999,0.923,1.089,0.995,1.003,1.098,0.907,1.045,1.039,0.872,0.801,1.073,1.062,0.985,1.032,1.024,0.962,0.976,0.866,1.071,0.98,1.085,0.888,0.996,0.875,0.914,0.921,1.0,1.108,1.163,1.101,0.957,1.06,0.941,0.974,1.046 +XM_290559,1.119,0.885,1.158,1.008,0.967,0.87,1.105,1.128,1.189,0.979,1.083,0.974,1.047,1.073,1.02,1.133,0.956,0.821,0.811,1.053,1.12,0.871,1.038,1.048,1.02,0.962,0.908,0.995,1.091,0.948,1.01,0.936,1.037,0.865,0.96,0.986,1.004,0.983,0.955,1.058,1.037,1.0,0.957,1.111,0.976,1.028,0.964,0.822,1.01,0.92,1.004,0.825,1.005,1.021 +XM_290579,1.096,0.926,0.991,0.989,1.15,1.035,0.85,1.093,1.232,0.925,0.993,0.965,1.092,0.916,0.883,0.987,0.976,1.223,1.058,1.205,0.892,1.111,0.973,1.065,1.036,0.915,1.012,1.096,1.159,1.078,1.05,1.017,0.981,0.88,1.023,1.023,0.94,1.002,0.962,0.829,1.049,1.03,0.944,1.088,0.975,0.962,1.066,0.946,0.981,0.998,0.979,1.028,0.937,1.038 +XM_290582,1.159,1.053,0.903,0.905,1.014,1.028,0.945,1.106,0.873,0.999,0.967,1.162,1.066,0.884,1.109,0.939,0.99,0.934,1.113,0.885,1.077,1.104,0.955,0.957,1.083,1.067,1.181,0.975,0.792,1.006,1.002,0.9,1.239,0.982,0.931,1.112,1.064,1.152,0.854,1.039,0.935,1.038,0.95,1.047,1.133,0.89,0.861,0.925,0.919,1.082,0.985,0.947,1.09,0.887 +XM_290597,1.096,0.954,0.979,1.041,1.065,1.079,1.235,1.022,1.127,0.997,1.059,0.961,1.005,0.956,1.142,1.023,0.99,1.033,0.941,0.902,0.973,1.118,0.947,0.898,0.964,0.887,1.087,1.072,0.871,0.844,0.904,1.019,0.972,0.972,1.026,1.008,1.036,1.066,0.944,1.11,0.97,0.878,1.105,0.921,0.981,0.988,1.204,1.036,1.258,0.963,1.043,1.08,1.063,0.994 +XM_290615,1.092,1.009,0.96,1.159,0.995,0.878,0.963,0.749,0.966,0.946,1.335,1.171,1.013,1.445,1.115,0.987,0.972,1.068,0.902,1.017,1.131,0.975,1.022,0.992,0.967,1.016,0.872,0.955,1.363,1.007,1.06,1.232,0.921,0.962,1.051,0.879,1.057,0.876,0.971,1.016,0.918,1.024,0.947,1.021,0.917,0.998,0.929,1.255,0.803,1.082,0.95,0.967,0.931,1.191 +XM_290626,1.091,1.066,0.91,1.06,1.022,0.999,0.994,1.087,0.963,1.03,1.059,1.067,0.912,0.973,0.895,1.061,1.08,1.271,0.913,1.02,1.119,1.005,0.967,0.884,1.129,1.078,0.893,0.939,0.816,0.977,1.123,1.01,1.077,1.029,1.063,1.11,0.867,0.962,1.008,0.977,1.205,0.779,0.958,1.071,1.028,1.048,1.006,1.047,0.951,0.924,1.003,1.047,1.017,0.909 +XM_290629,1.064,1.002,1.214,1.042,1.215,0.895,0.941,0.881,1.118,1.117,0.91,0.883,0.925,0.894,0.981,0.99,1.136,1.259,1.162,1.073,0.968,1.029,1.096,0.972,0.855,1.02,1.094,1.188,0.731,0.964,1.167,0.853,1.256,0.928,1.134,0.996,0.923,1.069,1.033,1.025,1.324,0.868,0.892,1.113,1.077,0.928,1.098,1.038,0.865,1.187,0.936,0.954,0.943,1.027 +XM_290631,0.778,1.017,1.237,0.872,0.861,1.481,0.891,0.714,0.928,0.851,1.703,0.918,0.798,0.894,1.308,1.792,0.785,0.918,1.225,1.864,0.595,0.68,1.664,0.813,0.936,0.678,1.199,1.005,0.677,1.365,0.998,0.804,1.686,1.548,0.472,0.661,1.242,1.059,1.293,0.708,0.883,1.254,1.056,0.712,0.759,1.241,0.774,0.565,0.901,0.841,1.033,0.913,0.787,0.935 +XM_290643,1.094,0.879,1.064,1.013,0.845,0.933,0.804,0.794,1.007,0.968,0.75,0.981,1.182,1.0,1.14,0.951,0.962,0.971,0.937,0.868,0.993,0.934,1.09,1.06,1.015,1.022,1.167,1.08,1.047,0.937,1.01,0.883,1.154,1.042,1.041,1.11,1.019,0.963,1.077,1.208,1.0,0.962,0.887,0.949,0.822,1.027,0.908,0.968,1.022,1.022,0.989,0.983,0.964,1.227 +XM_290645,0.965,0.979,0.929,0.98,0.959,1.122,0.889,0.944,0.964,0.832,1.079,1.032,1.072,0.791,1.12,0.94,1.038,0.89,0.882,0.914,0.858,0.812,0.914,1.014,1.079,0.861,1.117,0.882,1.067,1.067,0.825,1.575,1.135,1.108,0.985,1.032,0.916,0.949,0.928,1.041,1.006,1.05,1.054,1.007,1.049,1.003,0.975,0.939,0.912,1.024,1.023,0.928,1.067,0.982 +XM_290667,0.832,0.732,1.449,0.687,1.002,0.938,0.665,0.451,1.232,1.248,0.762,0.677,0.541,0.86,1.04,1.225,1.008,0.959,0.892,0.876,0.613,0.646,1.129,1.1,0.63,0.833,1.391,0.833,0.403,1.084,0.954,1.29,1.968,0.939,0.438,0.86,1.069,0.914,1.246,1.256,1.079,1.117,0.83,1.144,1.251,0.981,1.19,0.709,1.068,1.09,1.055,0.992,0.973,1.247 +XM_290670,0.952,0.774,1.567,0.909,0.623,1.335,0.401,0.3,1.698,0.604,0.732,0.552,0.513,0.69,1.337,0.759,1.171,0.376,0.747,1.659,0.51,1.5,0.78,1.423,1.397,1.097,2.001,0.513,0.358,1.095,0.994,3.937,3.889,0.826,0.275,1.787,0.543,0.725,1.108,4.409,0.841,0.943,1.004,1.003,0.887,0.477,0.867,0.449,0.585,0.7,0.784,0.963,0.902,3.542 +XM_290681,0.757,1.149,1.059,0.856,0.866,0.966,0.76,0.847,1.123,1.025,0.716,0.939,0.776,0.798,1.071,1.12,0.944,0.825,1.167,1.015,0.845,0.764,1.342,1.083,0.815,0.875,1.192,0.941,0.441,0.945,0.983,1.42,2.162,1.139,0.496,1.085,0.892,0.816,1.734,0.999,1.022,0.982,0.534,1.475,1.034,0.854,1.006,0.713,1.185,0.814,1.035,0.906,0.828,1.606 +XM_290684,0.891,1.04,1.039,1.021,1.02,0.92,1.085,0.927,1.254,0.965,0.948,1.003,0.952,1.13,1.112,0.89,0.921,0.816,1.077,0.937,0.869,1.005,1.165,1.013,0.823,0.988,1.122,0.999,0.882,0.884,1.051,1.424,4.279,0.986,0.938,0.938,0.948,0.833,1.114,1.409,1.106,0.961,1.105,1.293,1.104,0.979,1.089,0.92,0.882,0.97,0.885,0.771,1.089,2.982 +XM_290697,0.988,0.977,0.98,1.091,0.939,0.956,1.094,1.04,0.989,0.989,0.977,1.057,0.938,0.895,1.259,0.931,1.016,1.012,0.989,0.928,1.035,0.981,0.921,0.964,0.993,0.985,1.006,0.933,1.409,1.002,1.101,0.991,1.022,1.063,0.975,0.975,0.964,1.053,1.03,1.093,0.992,0.927,0.939,1.025,1.132,1.024,0.98,0.979,1.059,0.924,0.921,1.064,1.006,0.928 +XM_290702,0.935,0.888,0.956,0.93,0.898,1.017,1.032,0.817,0.858,0.973,0.997,0.912,0.966,0.873,1.086,1.246,0.861,1.036,0.985,1.103,0.903,0.92,0.964,0.987,0.861,0.972,0.982,0.82,1.237,1.046,1.019,0.889,1.377,1.198,0.828,0.881,1.134,0.769,1.209,1.082,0.816,1.112,0.949,1.077,0.897,0.906,1.103,0.955,1.07,0.974,1.078,0.927,0.932,1.124 +XM_290704,1.004,0.852,1.245,0.766,0.924,1.092,0.603,0.603,1.361,0.967,0.88,0.852,0.615,1.089,1.219,1.361,0.944,0.712,1.385,0.943,0.702,1.131,0.974,1.005,0.699,1.115,1.313,0.785,0.517,1.169,1.113,1.165,1.497,1.432,0.992,0.679,0.945,0.863,1.095,0.684,0.993,1.122,0.677,1.244,0.954,0.879,0.761,1.117,0.665,0.889,0.877,0.655,1.127,1.241 +XM_290706,1.044,0.98,1.029,0.94,1.144,1.013,0.936,0.923,1.002,1.014,0.947,0.957,1.085,1.055,0.922,0.984,0.98,1.033,0.982,0.966,0.894,0.959,0.945,0.949,0.929,1.056,0.94,1.027,0.838,0.911,0.961,1.08,1.062,0.995,1.009,0.984,0.998,0.923,1.075,1.025,1.122,1.007,0.746,0.931,1.026,0.99,0.957,1.154,1.071,1.077,1.057,0.969,0.967,1.103 +XM_290712,0.883,0.839,0.867,0.927,1.099,0.954,1.64,1.358,1.166,0.863,0.958,1.087,0.981,0.913,1.144,0.996,1.109,0.992,1.077,0.88,1.1,0.96,0.97,0.998,1.027,1.169,1.07,1.183,1.466,0.955,1.218,0.969,0.871,1.075,1.325,1.064,1.01,1.223,1.055,0.934,0.938,0.971,1.116,0.885,1.035,0.923,0.892,0.981,1.106,1.03,1.0,1.103,1.059,1.286 +XM_290714,0.938,0.816,0.885,1.03,0.919,1.364,0.827,0.937,0.833,0.77,1.286,0.99,0.961,1.053,0.986,1.232,1.099,0.896,1.09,0.922,0.836,0.869,0.836,0.925,1.096,1.033,0.941,1.005,0.904,1.19,0.877,1.065,1.042,1.114,1.22,0.853,1.115,0.826,1.225,0.953,0.939,0.868,0.936,1.31,0.872,0.934,0.955,1.072,1.025,1.052,1.033,0.923,1.091,1.102 +XM_290722,1.218,0.864,1.124,1.116,0.958,1.123,0.886,1.095,1.019,0.994,1.009,0.978,0.988,0.837,1.053,1.041,1.186,1.165,1.282,0.9,0.92,0.992,1.01,1.056,0.983,1.311,1.093,0.999,1.035,1.133,0.978,1.101,1.069,1.001,0.861,0.923,0.93,1.168,1.243,1.04,0.99,0.938,1.029,1.088,0.929,0.852,0.986,1.176,0.922,1.019,0.896,0.897,1.113,0.885 +XM_290733,0.888,0.981,1.062,1.061,0.998,1.029,1.404,0.922,1.02,0.949,1.037,0.958,0.944,0.941,0.84,1.034,1.034,0.991,0.908,0.964,1.087,1.013,0.933,1.153,0.969,1.05,1.027,0.99,1.12,1.049,0.981,0.98,1.003,0.866,1.053,1.035,1.1,1.119,0.962,1.125,0.948,0.97,1.311,0.86,1.049,1.009,0.907,0.952,1.06,1.034,0.904,1.02,1.015,0.973 +XM_290737,0.877,1.132,1.052,0.946,0.859,0.908,0.793,0.823,1.029,0.861,1.094,0.893,0.897,0.782,0.884,0.968,1.026,1.048,1.153,0.969,1.02,0.976,1.07,0.955,0.902,0.915,0.983,0.785,1.063,1.001,1.003,1.213,1.555,1.082,1.001,0.89,1.185,0.977,0.815,1.062,1.012,0.997,0.99,1.111,0.844,0.963,1.045,0.909,0.954,0.999,1.069,1.042,0.949,1.332 +XM_290755,0.892,1.018,0.906,1.15,0.958,0.978,0.862,1.214,1.032,0.847,0.915,1.075,1.0,1.016,0.872,1.026,1.056,0.791,1.283,0.832,1.082,0.981,1.054,0.96,0.827,1.04,0.916,1.133,0.835,0.971,1.023,0.967,0.979,1.03,1.053,1.002,0.992,0.944,1.014,0.953,1.064,0.955,0.822,0.985,1.0,1.018,1.055,0.964,0.974,1.014,1.06,1.033,0.975,1.003 +XM_290758,1.064,0.984,0.873,0.975,1.15,1.088,0.996,0.962,0.913,1.027,0.883,1.009,0.936,1.263,1.076,0.935,0.91,0.972,1.024,0.876,1.137,1.059,1.007,1.047,1.037,1.061,0.889,0.972,1.087,1.04,1.046,0.944,0.967,1.036,0.996,1.066,1.031,1.073,0.955,0.967,1.05,1.049,1.237,0.93,0.961,1.038,0.943,1.065,0.96,1.017,0.889,1.067,0.812,0.833 +XM_290759,0.978,0.968,1.138,0.861,1.046,0.988,0.866,1.116,0.934,0.942,0.976,0.988,0.999,1.008,0.939,1.078,1.01,0.898,0.986,0.98,0.926,1.043,0.887,0.922,0.978,1.018,1.075,0.975,1.273,0.968,1.012,1.124,0.984,0.979,1.022,1.041,0.924,0.896,0.988,1.066,0.933,0.915,0.899,1.031,1.047,1.005,1.052,1.061,0.889,1.04,1.009,1.065,1.12,1.107 +XM_290768,1.01,1.082,0.999,0.906,1.006,0.853,1.179,1.111,0.874,1.023,0.909,1.047,0.97,1.095,1.152,1.02,1.011,1.113,1.112,0.919,0.965,0.879,0.985,0.974,1.114,0.932,1.152,0.943,1.411,0.926,0.92,0.989,1.022,1.057,0.938,0.929,1.033,1.001,0.908,1.007,1.193,1.004,1.05,0.963,1.215,0.905,0.893,0.909,0.917,1.043,1.077,0.983,0.95,1.082 +XM_290771,0.991,0.934,0.883,1.119,0.956,1.012,1.023,0.862,1.025,1.249,0.985,1.052,0.992,0.959,1.132,1.03,0.997,0.927,0.948,0.861,1.3,0.984,0.909,1.075,1.067,0.975,1.188,0.998,0.856,0.907,0.963,1.077,1.145,0.993,0.845,1.031,0.905,0.919,0.994,1.065,1.07,0.988,1.359,1.318,0.983,0.835,1.051,0.989,0.904,1.065,0.726,0.937,1.05,1.124 +XM_290782,1.148,0.99,1.218,0.853,0.972,0.951,0.822,1.118,0.969,1.38,0.904,0.972,0.988,0.821,0.986,1.156,1.135,1.028,0.972,0.965,0.981,1.088,0.835,1.115,1.021,1.037,1.489,1.069,0.943,1.03,1.072,0.997,1.499,1.164,1.146,0.887,1.055,1.292,0.931,0.925,1.116,0.825,1.061,1.006,0.997,0.906,1.448,1.111,0.949,1.548,0.993,1.153,1.256,1.131 +XM_290799,1.131,0.907,1.057,1.031,1.259,0.942,0.971,1.152,0.959,1.128,1.117,1.048,0.875,1.051,1.006,1.092,1.026,1.036,1.083,1.006,0.933,0.835,0.926,1.101,1.022,0.943,1.073,0.912,1.165,1.078,0.884,0.84,0.975,1.135,0.899,1.249,1.085,0.918,1.034,0.868,0.959,1.145,1.082,1.019,0.987,0.979,0.903,1.011,0.956,1.013,1.045,0.821,0.956,1.126 +XM_290806,0.9,1.011,0.983,0.856,1.034,0.999,1.272,0.987,1.031,1.02,1.032,1.004,0.934,0.821,1.113,1.006,1.08,0.98,0.978,1.017,0.951,1.028,0.959,0.909,1.038,0.951,0.896,1.052,1.026,0.919,1.087,0.889,0.922,1.033,0.913,1.023,0.92,0.93,1.085,1.072,1.005,0.924,0.866,1.034,0.966,0.938,1.003,1.001,0.991,0.981,1.053,1.108,0.894,1.019 +XM_290809,0.853,1.196,1.169,0.637,0.867,1.056,1.072,0.991,1.296,1.103,0.85,1.115,1.08,0.922,0.992,1.085,1.032,1.053,0.773,1.256,0.905,1.18,1.082,1.307,0.827,0.809,1.443,1.012,0.495,0.894,1.103,1.152,2.039,1.079,0.72,0.884,1.051,0.894,1.347,1.214,1.117,1.293,0.675,0.753,0.993,0.912,0.877,0.809,0.966,0.896,0.854,1.192,0.998,4.833 +XM_290811,1.071,1.028,0.829,1.015,0.88,1.214,0.756,0.929,0.999,1.091,0.897,0.908,1.023,1.021,1.239,1.089,0.911,0.935,1.022,1.011,1.099,0.878,0.822,0.873,1.135,1.0,0.93,1.062,1.23,1.1,0.902,1.063,0.816,1.012,0.887,0.907,1.132,1.039,1.055,1.014,1.029,1.067,0.883,1.036,1.01,1.001,0.923,1.064,0.854,0.898,0.922,0.873,0.946,0.901 +XM_290817,1.045,1.005,1.03,1.009,0.824,1.162,1.022,0.966,0.722,1.049,1.176,0.978,0.942,0.997,1.222,1.248,0.936,1.017,1.054,1.079,1.082,0.975,0.985,0.872,0.978,1.108,1.14,0.947,0.795,1.074,0.955,1.003,0.885,1.082,0.898,0.85,1.016,0.939,1.144,0.906,0.93,1.029,1.06,0.953,1.019,1.069,1.153,0.813,1.059,1.072,1.124,0.994,0.848,0.868 +XM_290818,1.045,1.039,1.093,0.86,1.025,1.0,0.894,1.193,1.085,1.137,0.995,0.957,0.975,0.955,0.963,1.159,1.11,1.124,1.159,0.848,1.083,0.947,1.076,0.97,1.032,0.941,1.036,1.176,0.922,0.927,1.086,1.091,0.91,0.887,1.344,1.186,0.884,1.082,1.073,0.959,1.037,1.064,0.966,1.122,0.959,0.936,1.123,1.183,0.948,1.093,1.075,0.88,1.029,1.101 +XM_290820,1.047,0.833,1.029,0.864,1.068,1.014,0.698,1.616,0.902,1.111,0.677,0.991,1.056,0.885,0.895,1.047,1.094,0.992,1.194,0.737,1.064,1.754,0.819,1.447,0.711,1.337,1.153,0.874,0.751,0.934,1.104,1.241,1.638,0.955,1.953,0.813,0.81,1.436,1.688,1.353,1.066,0.912,0.754,1.213,1.156,0.826,0.927,1.538,0.719,1.168,0.879,0.887,0.897,1.174 +XM_290821,1.0,1.03,1.042,1.082,1.021,0.987,1.043,0.945,0.973,0.958,1.012,0.932,0.924,0.868,1.066,0.944,1.094,0.871,1.009,0.984,0.849,1.102,0.935,0.988,1.099,1.065,1.136,1.112,1.172,1.042,0.934,0.879,1.01,0.962,0.924,0.973,1.027,1.065,0.926,0.938,0.918,0.98,1.046,1.004,1.011,1.047,0.87,0.931,1.048,1.095,0.88,1.073,1.07,1.006 +XM_290828,0.727,0.841,1.805,0.863,0.977,0.991,0.733,0.741,0.79,1.076,0.772,0.808,0.953,0.705,0.814,0.99,2.383,0.807,1.43,0.805,0.866,0.703,1.188,1.003,0.664,0.59,1.942,0.724,0.446,1.102,0.88,2.49,1.737,0.911,1.24,0.803,0.756,0.718,1.203,2.826,1.848,0.859,0.996,1.693,1.217,0.925,1.797,0.851,0.938,1.745,1.006,1.276,1.988,2.026 +XM_290829,0.925,0.999,1.188,0.92,0.956,0.907,1.032,1.09,0.877,1.004,1.07,0.88,0.921,0.836,0.977,0.979,1.137,1.087,0.985,1.048,0.912,0.997,1.184,0.944,0.855,1.02,0.95,0.813,0.903,1.001,0.963,1.212,2.004,1.204,1.163,0.979,0.933,0.919,1.117,0.886,1.053,1.123,0.697,1.238,1.071,0.842,1.054,1.194,0.766,0.986,0.94,1.083,0.962,1.321 +XM_290831,1.074,0.912,1.416,0.93,1.278,0.878,0.696,1.106,1.428,1.32,1.219,1.61,1.221,0.932,0.941,0.991,1.113,0.977,1.446,1.142,0.865,1.348,1.148,1.156,0.858,1.29,1.036,1.319,0.445,0.907,1.209,0.797,1.113,0.984,0.722,0.972,0.774,1.606,0.903,0.831,1.275,0.938,0.826,0.829,1.078,1.09,0.897,1.458,0.751,1.28,1.059,0.846,1.075,0.755 +XM_290835,0.948,0.856,0.934,0.969,0.871,1.062,0.967,0.972,0.991,1.042,1.016,1.046,0.972,0.851,1.015,0.959,0.965,1.001,1.07,1.006,1.093,1.037,1.11,0.982,1.0,1.178,1.013,1.011,0.936,1.029,0.879,0.946,1.006,0.893,1.013,1.116,1.002,1.132,1.015,0.961,0.934,1.008,0.874,0.92,1.027,0.983,1.02,0.942,0.945,1.049,0.954,0.969,0.94,0.948 +XM_290838,1.012,0.927,0.956,0.973,0.892,0.963,0.922,1.034,1.034,0.923,1.091,0.951,1.021,1.051,0.807,1.082,0.999,1.003,0.903,1.051,0.984,0.795,1.006,1.103,1.205,1.18,0.979,0.982,0.822,0.855,0.932,0.924,1.022,1.096,0.996,1.036,1.064,0.873,0.907,1.001,1.071,0.973,0.879,0.899,0.965,1.128,0.948,1.037,1.027,1.114,0.875,1.144,1.074,0.92 +XM_290846,1.016,0.878,1.057,0.97,1.042,1.065,0.941,1.145,1.087,1.056,0.94,0.978,0.945,0.937,0.929,1.064,0.856,1.011,1.217,1.26,1.088,0.902,1.169,1.009,0.998,0.908,0.978,0.973,1.017,0.982,1.065,1.009,1.108,1.094,1.069,1.175,1.086,0.864,1.053,1.02,1.003,0.969,0.983,1.103,0.966,1.084,0.969,0.964,1.006,1.005,1.047,1.116,0.91,0.977 +XM_290848,0.805,1.089,1.368,0.724,0.91,1.229,0.822,0.535,0.922,0.802,1.258,0.912,0.616,0.743,1.006,1.108,1.028,0.823,0.977,1.264,0.56,0.852,1.675,0.94,0.719,0.951,1.191,0.838,0.695,1.246,0.875,1.397,1.976,1.575,0.454,0.782,1.03,0.93,1.534,0.927,0.879,1.17,0.647,1.499,0.967,0.988,0.844,0.861,0.89,1.059,1.015,0.785,0.823,1.28 +XM_290850,0.99,1.104,1.059,1.146,1.067,1.016,0.954,0.98,0.956,1.111,1.01,0.963,0.883,1.188,0.803,0.967,0.997,1.091,0.873,1.22,1.104,1.071,0.967,0.963,1.028,1.015,0.981,1.003,0.832,1.032,0.959,0.909,1.047,1.02,0.978,0.978,1.092,1.167,1.024,1.032,0.994,0.945,0.83,0.801,0.989,1.052,0.938,1.076,1.165,0.988,1.045,1.012,0.872,0.921 +XM_290852,0.859,0.863,1.799,0.654,1.103,0.909,0.626,0.613,1.38,0.793,0.768,0.724,0.54,0.849,1.045,1.283,1.182,1.05,1.161,1.179,0.559,1.133,1.469,0.897,0.637,1.059,1.192,1.08,0.558,1.438,1.195,1.336,1.183,1.149,0.68,0.695,0.911,1.26,1.078,1.434,1.13,1.236,0.69,0.807,0.989,0.907,0.827,1.171,0.951,1.102,0.971,0.675,0.804,0.882 +XM_290865,1.145,1.054,1.092,0.937,1.031,0.998,1.262,1.05,0.991,0.983,0.977,0.986,0.915,0.995,1.1,0.954,1.054,1.046,1.087,1.155,1.197,1.034,0.936,0.908,0.933,0.996,0.994,1.034,0.938,0.903,1.156,0.859,1.167,0.846,1.017,1.034,0.96,0.917,0.957,0.975,1.078,0.908,1.093,0.906,0.944,1.152,1.052,0.986,1.039,0.978,1.007,1.141,0.976,1.115 +XM_290866,1.081,0.889,1.01,0.916,1.081,1.061,0.912,0.842,1.04,0.991,1.077,0.995,0.914,1.09,1.308,0.943,0.978,1.044,1.116,0.931,0.959,0.939,0.955,0.945,0.974,1.09,1.095,1.099,0.763,1.049,1.018,0.949,0.976,0.908,1.522,0.946,1.035,1.026,1.045,1.088,0.855,1.005,1.119,0.877,1.074,1.243,0.883,1.105,0.851,0.9,1.091,1.182,0.865,0.974 +XM_290867,0.839,1.573,0.816,0.926,0.884,1.612,1.12,0.891,0.916,0.831,1.101,0.902,0.816,1.001,0.846,0.812,0.852,0.967,0.856,1.312,0.917,0.909,1.221,0.801,1.072,0.891,0.898,0.85,0.935,1.808,0.857,1.567,0.774,1.406,0.928,0.993,1.027,0.94,1.026,1.284,0.862,0.999,0.845,1.39,0.815,1.23,0.886,1.034,0.88,0.747,1.026,1.158,0.71,1.968 +XM_290868,1.017,0.803,1.264,0.939,0.904,0.999,0.826,0.885,1.237,1.083,1.01,0.891,0.925,1.031,1.164,1.114,0.934,0.834,1.181,0.838,0.916,0.786,1.071,1.088,0.955,0.919,1.126,1.107,0.797,0.968,1.202,0.996,1.268,1.092,0.922,0.905,0.965,0.966,1.0,0.899,1.124,1.028,0.984,1.122,1.019,0.994,0.94,0.87,1.051,0.944,1.158,0.862,0.872,1.214 +XM_290875,1.032,0.988,1.067,1.079,1.034,1.001,0.801,1.139,0.982,1.107,0.947,1.045,0.914,1.023,0.966,0.992,1.087,0.907,1.163,0.742,1.046,0.962,1.013,1.106,1.095,0.986,1.272,1.081,0.856,1.152,1.079,1.034,0.856,0.928,0.864,0.917,1.037,0.975,0.977,0.946,1.039,0.99,0.928,0.935,1.216,0.904,0.931,1.033,1.08,0.916,0.964,0.92,1.076,0.92 +XM_290879,1.612,0.453,2.651,0.851,1.661,0.578,0.547,1.05,2.129,1.424,0.752,1.574,1.52,1.404,1.455,1.093,2.117,1.066,2.153,0.714,1.065,2.433,0.517,1.642,0.488,1.725,2.77,1.438,0.488,0.626,2.126,0.495,1.788,0.45,0.502,0.676,0.516,2.179,0.572,1.369,1.815,0.642,0.536,0.566,1.8,1.039,1.221,1.428,0.709,2.105,0.691,1.471,1.847,1.159 +XM_290898,1.142,0.947,1.527,0.936,1.032,0.833,0.728,0.782,1.306,1.071,0.864,1.19,0.94,1.327,1.002,0.962,1.051,0.894,1.229,0.992,0.929,1.463,0.857,1.208,0.836,1.1,1.151,0.942,0.815,1.064,1.191,1.517,1.739,1.051,0.803,0.983,0.817,1.223,1.038,0.924,1.276,1.05,0.696,0.934,1.075,0.824,0.852,1.248,0.713,1.061,0.886,0.906,0.998,1.138 +XM_290902,0.553,1.183,1.058,0.531,0.844,1.429,0.727,0.475,0.964,0.947,1.078,1.055,0.571,0.592,0.917,1.529,0.74,0.904,0.967,1.247,0.647,0.73,1.53,0.873,0.57,0.577,1.359,0.863,0.537,1.271,0.76,1.334,2.289,1.39,0.298,1.308,1.323,0.684,1.06,0.974,1.058,1.347,0.754,1.191,0.822,1.272,1.137,0.548,1.129,0.493,1.245,0.885,0.795,2.144 +XM_290905,1.069,0.978,1.081,1.026,1.035,0.922,1.015,0.924,1.033,0.977,1.153,1.028,1.057,0.97,0.753,0.926,1.02,1.064,0.966,1.247,0.952,1.074,1.045,1.054,1.021,1.095,0.973,0.988,0.836,1.042,0.967,0.961,0.935,0.935,1.191,0.963,0.901,1.273,1.11,0.973,1.026,1.021,0.934,1.062,1.109,0.978,0.928,1.102,1.029,0.997,0.941,1.021,0.927,0.976 +XM_290919,1.016,1.021,0.924,1.001,0.901,1.1,0.968,0.922,0.839,0.949,1.038,1.122,0.988,1.037,1.31,1.096,0.947,1.155,0.902,1.088,0.999,1.12,1.109,1.008,0.851,1.065,0.991,1.061,1.052,0.974,0.955,1.033,1.059,0.851,0.986,1.152,1.048,0.94,1.098,0.831,1.055,0.98,0.991,1.062,1.107,1.003,1.075,1.043,0.944,1.054,0.9,1.15,0.992,0.987 +XM_290923,1.09,1.009,1.051,0.932,1.226,0.858,0.806,0.823,1.214,1.178,0.943,1.052,0.917,1.087,1.131,0.87,1.086,0.919,0.81,0.912,0.879,0.946,1.01,1.053,0.831,0.994,0.999,1.081,1.074,1.057,0.948,1.407,3.125,1.081,0.99,1.737,0.859,1.111,1.314,7.54,0.903,1.117,0.981,1.314,1.001,1.014,1.048,0.997,0.892,1.067,0.924,1.977,0.825,1.961 +XM_290936,1.064,0.981,1.002,1.232,1.09,1.181,0.793,0.914,0.972,0.984,0.981,1.074,1.18,1.006,0.97,1.073,1.036,1.004,1.116,1.002,0.991,1.075,1.166,1.039,0.949,1.087,0.919,1.107,0.963,0.93,1.025,0.904,0.956,0.958,0.974,1.114,1.086,0.959,0.998,0.923,0.929,1.058,1.145,1.072,0.914,1.013,0.881,0.908,1.0,0.942,1.003,0.988,1.113,1.032 +XM_290941,0.907,0.833,0.69,1.293,1.034,0.993,1.024,0.919,1.23,0.876,1.189,0.889,0.937,0.826,1.07,1.086,0.845,0.969,1.021,1.024,0.932,0.936,1.185,0.925,1.009,1.332,0.989,0.881,1.357,0.991,0.924,1.01,2.474,1.11,0.718,0.885,0.892,0.952,1.443,0.745,0.966,0.899,1.127,1.46,0.979,0.975,0.928,1.026,1.034,1.004,1.064,0.706,0.906,1.205 +XM_290944,1.025,1.027,1.084,0.837,0.991,1.008,0.878,1.015,0.934,0.907,0.902,0.831,0.825,1.314,1.069,0.859,1.088,0.846,1.15,0.948,1.058,1.003,1.004,0.986,1.021,1.162,1.216,0.834,1.342,1.105,0.871,1.059,1.001,0.9,1.015,0.97,0.93,1.219,1.199,0.801,1.109,1.004,1.056,1.036,0.994,0.762,0.939,1.02,0.899,1.037,0.936,0.83,0.94,0.909 +XM_290945,0.97,1.053,0.956,1.0,1.021,1.013,0.82,0.816,0.955,0.966,1.094,0.896,1.019,0.985,1.182,0.982,1.048,1.019,0.948,0.985,0.983,0.955,0.987,0.942,1.086,0.986,0.96,0.983,0.765,1.003,0.941,1.059,1.048,0.909,0.998,1.069,0.955,0.869,0.987,0.968,0.981,0.956,1.04,1.034,0.95,0.994,1.088,1.028,1.05,1.018,1.044,1.089,0.992,1.022 +XM_290973,0.848,1.548,0.97,0.713,1.082,0.906,0.797,0.727,1.012,1.302,0.921,0.774,0.615,0.869,1.058,1.352,0.798,0.661,0.898,0.863,0.638,0.723,1.743,0.95,0.919,0.913,0.798,0.999,1.351,0.791,0.97,1.843,2.191,0.752,0.507,2.263,0.665,1.046,1.229,1.877,0.922,1.494,1.329,3.24,1.428,0.846,1.299,0.942,0.913,1.086,1.178,1.918,1.204,1.938 +XM_290989,0.642,1.149,1.253,0.53,0.858,0.846,0.534,0.505,0.73,1.196,0.714,0.909,0.618,0.513,0.726,1.148,1.23,0.875,0.801,1.087,0.59,0.465,2.058,1.243,0.521,0.553,1.568,0.602,0.291,0.905,0.936,1.989,1.591,0.862,0.621,1.353,0.731,0.668,1.195,1.862,1.285,1.123,0.736,0.725,1.223,1.004,1.362,0.613,1.856,1.012,1.177,1.816,1.156,1.847 +XM_290994,0.88,1.028,1.151,0.924,1.04,1.192,0.991,0.861,1.083,0.932,0.789,0.886,0.955,0.868,0.861,1.017,1.069,0.982,1.045,1.064,0.934,0.945,0.985,0.958,0.953,0.931,0.949,0.972,0.875,0.977,1.083,0.914,1.109,0.985,1.324,0.883,0.837,1.086,1.079,1.106,0.903,0.919,0.75,1.068,1.109,0.954,1.011,1.097,1.118,0.93,0.969,0.82,0.811,1.003 +XM_291005,0.859,1.099,0.953,0.874,1.161,1.088,1.13,0.937,1.007,1.072,0.75,1.189,1.005,1.077,0.708,0.853,0.954,1.176,0.964,1.018,1.024,1.014,0.86,0.96,1.024,1.013,0.86,1.047,0.994,0.986,0.911,1.085,1.02,0.887,1.317,0.984,0.688,0.974,0.975,1.048,1.008,1.284,0.902,1.036,0.867,1.013,0.697,0.849,0.999,1.115,0.837,1.277,0.918,0.912 +XM_291007,0.972,0.992,1.116,0.907,0.929,0.895,0.829,0.958,1.096,0.96,0.966,1.044,0.956,0.846,0.917,0.823,1.061,0.975,1.07,0.923,1.033,1.096,0.88,1.172,1.473,1.199,0.97,0.932,0.637,1.03,0.999,0.905,0.848,0.899,0.993,1.013,0.959,1.244,1.04,0.853,1.086,0.946,1.072,1.316,1.064,1.047,0.946,1.112,1.001,0.973,1.004,0.787,1.267,0.926 +XM_291015,0.734,0.846,1.373,0.714,1.025,1.028,0.594,0.584,1.145,0.883,1.067,0.661,0.546,0.866,1.076,1.47,0.755,0.84,1.397,0.964,0.66,0.68,1.305,0.905,0.551,0.733,1.163,0.972,0.404,1.001,1.065,1.229,2.353,1.434,0.574,0.664,1.016,0.882,0.996,0.754,0.995,1.163,0.602,0.999,0.874,1.027,0.797,0.865,0.929,0.802,1.115,0.764,0.955,1.331 +XM_291016,0.931,2.632,1.843,0.844,1.215,1.547,1.142,0.844,1.079,1.317,0.811,0.889,0.948,0.902,1.212,1.017,1.104,1.116,0.914,1.063,0.801,0.959,1.062,0.919,1.098,0.91,1.704,0.938,0.781,2.102,0.754,1.403,2.896,1.639,0.816,0.856,0.807,1.071,1.673,0.894,1.61,0.929,0.763,0.72,0.885,0.821,1.257,0.877,0.72,0.944,0.934,0.774,0.864,0.916 +XM_291019,1.038,1.19,1.085,1.069,1.052,0.899,0.88,0.879,1.155,0.953,1.022,1.159,1.069,0.915,0.901,1.167,0.966,0.994,1.043,0.918,0.972,0.94,0.952,1.113,1.087,0.812,1.188,0.951,1.436,1.042,0.949,1.047,1.578,0.924,1.037,0.964,0.895,0.872,0.961,0.864,0.955,0.831,1.04,1.1,1.033,1.059,1.057,0.93,1.104,0.995,1.064,0.834,0.981,1.108 +XM_291028,1.023,1.008,1.19,1.015,1.172,0.976,1.381,1.0,0.926,0.986,1.081,1.027,0.947,1.035,0.92,0.912,1.05,1.152,0.955,0.958,0.946,1.189,1.083,1.012,1.041,1.141,1.029,0.913,0.924,1.019,0.978,0.895,0.927,0.988,0.975,0.996,0.806,1.058,0.774,1.001,1.104,1.015,0.989,1.013,1.049,1.083,1.016,1.041,0.942,0.965,1.021,0.931,0.926,0.921 +XM_291029,1.142,1.033,1.005,1.014,0.996,0.916,0.976,0.792,0.982,0.995,0.947,1.051,0.961,0.957,0.796,0.936,1.074,1.06,1.073,1.093,0.84,0.953,0.994,0.958,1.001,0.969,1.009,1.063,0.74,1.074,0.905,1.066,1.007,0.948,0.911,0.958,1.004,1.14,1.055,1.035,1.136,1.198,1.007,0.797,0.918,1.026,0.994,1.008,1.085,1.05,1.056,0.91,0.999,1.079 +XM_291032,1.044,1.04,1.071,0.989,0.908,1.004,0.928,0.922,1.123,0.924,0.964,0.956,0.937,0.913,0.893,1.038,0.865,0.959,0.955,0.855,1.089,0.941,1.088,1.012,0.92,1.007,0.985,0.992,1.051,0.992,0.939,1.074,0.955,1.012,1.087,1.012,0.973,0.974,0.928,1.026,1.009,0.965,0.974,0.956,0.95,1.07,1.131,0.991,1.117,1.0,0.944,0.958,0.941,0.922 +XM_291044,1.057,0.978,0.985,0.886,1.082,1.018,0.864,1.259,0.989,0.881,1.018,0.999,0.994,0.968,0.962,0.954,0.927,1.031,1.007,0.932,0.954,0.98,1.007,1.084,0.935,0.99,1.02,0.993,1.238,1.041,0.993,0.993,0.903,0.972,1.108,0.995,0.955,1.081,1.06,1.044,0.949,1.004,1.049,0.942,0.96,0.955,1.031,1.027,0.91,1.007,0.988,1.008,1.006,1.013 +XM_291055,0.588,1.01,1.243,0.758,0.587,1.069,1.327,0.452,0.643,0.654,1.608,0.505,0.476,0.584,1.226,1.154,0.862,0.741,0.728,1.27,0.597,0.512,1.54,0.639,0.662,0.553,1.029,0.549,0.852,0.99,0.588,1.76,2.304,1.177,0.472,1.164,1.554,0.592,1.346,1.217,0.721,1.205,0.936,2.444,0.634,1.238,0.771,0.518,1.462,0.646,1.417,1.293,1.204,3.402 +XM_291057,0.86,0.96,1.17,1.087,0.962,0.988,0.712,0.803,1.126,1.018,1.052,0.888,0.878,1.041,1.22,1.051,1.019,0.868,1.04,0.817,0.869,0.772,1.13,0.979,0.853,0.963,1.021,0.962,1.081,1.114,0.998,1.046,1.256,1.064,0.857,0.918,1.019,0.91,1.037,0.894,1.074,0.907,0.735,0.908,0.792,1.118,1.107,0.894,1.084,0.936,1.032,0.904,0.985,1.478 +XM_291059,0.948,1.017,1.046,0.895,0.948,1.071,0.931,1.075,0.856,0.885,1.0,1.007,1.112,0.966,0.991,1.034,0.965,0.98,1.113,0.887,1.028,1.05,1.011,1.025,0.915,1.084,1.105,0.988,1.662,0.943,0.956,1.147,0.961,0.953,0.909,1.029,0.932,0.976,1.029,1.039,0.985,0.977,1.046,1.041,0.992,0.981,1.059,1.051,0.947,0.913,1.183,1.022,0.799,0.89 +XM_291063,1.209,0.968,1.077,0.963,1.057,0.923,1.248,1.262,1.61,0.887,0.966,1.047,1.128,1.154,1.3,1.022,0.967,0.828,1.272,1.012,1.259,1.094,2.039,1.044,0.993,1.07,1.529,1.254,1.054,1.03,1.007,1.039,0.957,1.016,0.84,1.004,1.102,0.982,0.938,0.96,1.43,0.935,0.739,0.899,1.546,0.989,0.976,0.966,0.892,1.034,0.905,1.142,0.798,0.955 +XM_291067,0.937,1.051,1.153,1.082,0.936,0.874,1.007,0.939,0.989,1.088,1.16,0.84,1.19,1.127,1.048,0.997,1.187,1.049,1.001,0.971,1.024,1.053,0.879,0.954,0.982,1.027,0.858,0.999,0.805,1.069,0.992,0.89,0.976,0.939,1.102,1.097,1.151,0.888,0.814,1.033,1.051,0.981,1.021,0.871,0.964,1.02,1.035,1.028,1.126,1.003,1.052,0.969,0.963,1.128 +XM_291074,1.137,1.336,1.308,0.772,1.47,0.925,0.835,1.2,2.093,1.255,0.8,0.998,1.163,2.552,1.036,0.918,1.6,1.247,1.192,1.024,0.921,1.257,0.954,1.366,0.684,1.28,1.389,1.843,0.94,1.887,2.208,1.284,0.954,0.921,1.882,0.764,0.832,1.115,0.803,0.889,1.695,1.014,0.654,0.946,1.339,0.892,1.598,1.88,0.712,1.117,0.887,0.845,1.108,0.867 +XM_291077,1.014,1.111,1.277,1.123,1.062,0.9,0.996,1.051,1.048,1.043,1.041,1.118,1.018,0.96,0.925,1.025,0.988,1.07,0.973,1.061,0.963,1.038,0.9,0.805,0.933,1.113,0.848,0.813,1.001,1.026,0.888,0.961,1.006,1.148,1.048,1.007,0.949,0.93,0.855,0.915,0.809,0.957,1.089,1.123,1.01,1.018,0.879,1.088,0.852,1.017,0.985,0.863,0.954,0.895 +XM_291080,0.808,1.012,1.321,0.755,0.966,1.062,0.742,0.733,1.186,1.054,0.912,0.935,0.643,0.703,0.889,1.064,1.043,0.901,1.099,1.187,0.777,0.951,1.201,1.073,0.574,0.987,1.0,1.049,0.748,1.184,0.981,1.242,1.086,1.083,0.568,0.876,0.895,1.039,1.098,0.899,1.091,0.96,0.948,1.075,0.992,0.989,0.93,0.867,0.982,0.782,0.924,0.844,1.003,1.236 +XM_291085,1.128,0.915,1.047,1.02,0.729,1.063,1.0,0.895,0.894,1.076,0.813,0.934,0.879,1.248,0.991,0.947,0.838,1.088,1.05,0.907,0.93,1.142,1.043,1.191,0.961,0.868,1.0,1.012,0.932,1.01,1.012,1.193,1.015,0.953,0.926,1.129,0.97,1.104,1.099,1.008,1.086,1.017,0.778,1.008,1.1,1.006,0.94,0.896,0.927,1.03,0.888,1.048,1.074,0.848 +XM_291086,1.05,0.983,1.012,1.04,0.927,1.036,1.067,1.066,1.059,1.091,1.102,0.996,0.957,0.893,0.994,0.961,1.011,1.082,1.139,0.954,1.056,0.999,1.005,0.928,1.056,1.033,0.944,0.991,0.854,1.096,1.026,0.976,0.926,0.851,1.058,1.034,1.133,0.932,0.968,1.029,0.983,1.046,0.828,1.095,0.974,1.035,0.981,1.091,0.915,0.966,0.993,1.058,1.099,0.985 +XM_291090,1.085,0.968,1.12,1.062,0.97,1.006,0.932,0.917,0.957,1.07,1.088,1.02,1.131,0.956,0.754,1.061,0.92,1.033,1.076,1.061,0.967,0.871,0.952,1.144,1.201,0.993,0.914,1.164,1.038,1.099,0.995,0.989,1.257,0.941,0.962,1.128,1.05,0.999,0.99,0.947,1.032,0.87,1.213,1.239,0.978,1.119,1.08,1.055,1.06,0.9,0.913,1.01,1.027,1.007 +XM_291099,0.96,1.283,0.912,1.139,0.868,1.081,0.972,0.742,0.934,0.92,1.018,0.956,0.841,1.006,0.832,1.359,1.043,1.013,1.151,1.112,0.997,1.064,1.33,0.924,0.997,0.901,0.727,0.763,0.938,1.148,1.023,0.872,0.97,1.201,0.861,0.969,1.096,0.931,1.272,0.932,0.89,1.244,1.006,0.977,0.929,1.245,1.06,0.906,1.287,0.974,0.956,0.96,0.94,0.873 +XM_291105,0.884,1.072,1.419,0.774,0.947,1.023,0.769,0.839,1.077,0.957,0.875,0.988,0.925,0.854,0.919,1.022,1.403,1.014,1.118,1.093,0.745,0.824,1.126,1.034,0.731,0.905,1.057,1.135,0.566,1.041,1.022,1.295,0.999,1.077,1.105,0.799,0.942,1.083,1.187,0.838,1.342,0.991,0.808,1.084,1.182,0.834,1.036,0.994,0.94,0.972,1.012,0.702,1.001,1.072 +XM_291106,1.124,0.969,1.145,1.059,1.048,0.97,0.826,0.953,1.234,0.895,1.059,0.874,0.824,1.049,0.955,1.117,1.067,0.854,1.024,1.053,0.995,0.998,1.027,1.158,0.95,1.049,1.261,1.086,0.704,1.035,1.106,1.016,0.9,1.017,0.817,0.852,1.022,1.052,0.954,1.079,1.083,0.962,0.802,0.992,1.051,1.021,0.915,0.835,0.999,0.804,1.064,1.001,0.955,1.074 +XM_291107,0.92,1.277,1.142,0.783,0.987,1.027,0.931,0.92,1.046,1.037,0.833,1.029,0.929,0.891,0.987,1.404,1.016,0.952,1.05,1.119,0.744,1.206,1.085,0.97,0.869,0.796,1.196,0.978,0.941,1.121,1.177,1.675,1.545,1.347,0.795,0.865,1.125,1.118,1.099,0.818,1.079,1.136,0.928,0.835,0.971,0.958,0.994,0.936,0.784,0.797,1.107,0.957,0.834,1.325 +XM_291111,0.886,1.401,0.778,0.896,0.82,0.979,0.83,0.775,0.78,0.875,1.077,0.817,0.798,0.957,0.952,1.402,0.814,0.74,0.83,1.176,0.919,0.869,1.468,0.896,1.016,0.827,1.007,0.908,0.593,0.916,0.96,1.399,1.741,1.293,0.615,0.927,0.987,0.835,1.161,1.104,0.964,1.291,1.294,1.016,1.005,1.188,1.107,0.84,1.003,0.83,0.981,0.964,0.862,1.48 +XM_291114,0.905,0.98,1.014,0.885,1.072,1.016,1.023,1.008,0.985,0.947,0.929,1.09,0.973,1.188,1.019,1.036,1.076,0.974,0.932,0.975,0.857,1.08,1.007,0.915,1.008,0.928,1.108,0.874,1.105,0.921,1.041,1.02,1.093,0.95,1.02,1.019,0.972,1.098,1.037,1.05,0.976,1.023,0.871,1.037,0.994,1.068,1.178,1.052,0.948,0.958,1.017,0.957,0.953,0.996 +XM_291120,0.995,1.092,0.969,1.01,0.994,0.956,0.958,0.92,1.054,0.999,1.005,1.136,0.921,0.941,0.877,0.944,1.014,0.942,1.148,0.946,0.953,0.952,1.013,0.959,0.917,0.94,1.082,0.961,0.833,1.143,1.078,0.969,0.941,0.974,0.949,0.916,1.006,1.156,1.133,0.836,0.997,0.923,0.833,1.028,0.916,0.961,1.089,1.023,0.886,0.899,1.048,0.877,1.028,1.045 +XM_291128,0.493,1.019,0.997,0.77,0.716,1.372,0.924,0.552,0.981,0.934,1.166,0.794,0.71,0.665,1.105,1.513,0.725,1.067,0.886,1.314,0.531,0.76,1.522,0.896,0.689,0.777,1.206,0.756,0.631,1.649,0.916,1.296,3.738,1.366,0.408,0.964,1.297,0.75,1.441,1.115,0.912,1.59,0.972,1.079,0.993,0.939,0.774,0.582,1.29,0.679,1.264,1.098,0.618,1.633 +XM_291137,0.994,0.952,0.935,1.072,1.005,0.991,1.148,0.908,1.017,0.884,1.026,0.961,1.047,1.01,1.202,1.059,1.05,0.881,0.972,1.01,1.041,0.969,1.086,1.068,1.075,0.93,0.923,0.985,1.071,0.893,0.957,0.884,1.15,0.995,1.026,1.249,1.043,1.042,0.962,1.052,1.005,1.02,0.974,1.114,0.925,1.007,1.027,1.007,0.897,1.049,1.052,0.943,1.037,1.085 +XM_291139,0.985,0.97,1.12,0.981,1.037,0.954,0.943,0.938,0.951,0.923,0.893,0.997,1.054,0.686,0.988,1.011,1.065,1.059,0.919,1.063,1.067,1.059,0.902,0.946,1.041,0.884,0.93,1.027,1.043,1.039,0.997,1.008,1.036,0.944,1.158,0.949,0.942,1.118,1.059,0.873,0.88,0.916,0.813,0.962,1.105,1.003,1.003,1.049,0.886,1.066,1.08,1.131,1.104,1.07 +XM_291142,0.785,0.77,1.853,0.598,1.59,1.428,0.738,2.155,1.956,1.037,0.84,1.469,1.446,0.807,1.297,1.945,1.683,1.544,1.061,1.064,0.422,1.592,1.013,1.649,0.532,0.543,2.126,1.147,0.538,0.936,1.97,0.871,1.384,1.099,1.34,0.472,0.984,1.493,1.262,0.489,1.524,1.037,0.582,0.426,1.54,0.987,1.192,1.27,1.17,1.014,1.13,0.639,0.514,0.925 +XM_291159,1.014,0.906,1.064,1.15,0.938,1.111,0.869,0.859,1.06,0.89,1.272,1.094,0.929,0.798,0.911,0.948,0.961,1.046,1.013,0.995,0.923,1.012,1.186,1.014,1.024,0.857,0.807,0.88,1.208,1.115,0.908,1.009,0.999,0.959,1.154,0.958,1.075,0.928,1.08,0.968,0.909,1.012,0.81,1.063,0.872,0.923,0.961,1.011,1.036,1.01,1.098,0.814,1.054,0.89 +XM_291161,0.961,0.983,1.033,1.057,1.068,1.251,1.074,1.008,0.95,0.973,1.093,1.046,1.041,0.867,1.202,0.943,0.964,1.026,1.09,0.919,0.986,1.044,0.895,0.949,1.27,0.899,0.93,0.943,1.479,0.983,0.881,1.159,0.932,1.014,1.112,1.021,0.925,0.999,1.002,1.167,0.951,1.027,1.05,0.91,1.035,0.955,1.03,0.92,1.189,1.017,1.018,0.928,0.962,0.975 +XM_291169,1.108,1.004,0.889,1.811,1.084,0.922,0.92,0.937,1.022,0.893,1.063,0.931,1.179,0.925,0.803,1.064,0.9,0.978,1.082,0.927,1.029,0.983,0.936,0.927,0.976,1.024,0.95,0.987,1.089,0.995,1.021,1.37,1.041,0.87,0.878,1.089,1.046,0.994,0.933,1.01,0.961,1.083,0.897,0.987,0.966,0.904,0.891,1.185,1.092,1.05,1.027,0.996,1.08,1.058 +XM_291190,0.975,0.841,1.366,0.816,1.011,0.838,0.778,0.797,1.233,0.839,0.722,1.042,0.825,1.051,0.96,0.873,0.983,0.864,1.334,0.894,0.94,1.062,1.142,1.268,0.632,1.051,1.309,0.952,0.698,0.838,1.051,1.113,1.734,1.005,0.582,1.101,0.841,1.007,1.071,1.018,1.068,1.04,0.779,0.985,0.924,0.77,0.927,1.037,0.821,0.938,0.936,0.773,1.107,1.93 +XM_291208,1.058,1.013,0.967,0.988,0.942,0.949,1.321,1.102,0.977,0.974,0.989,0.957,0.965,0.966,1.436,0.894,0.89,0.926,1.091,0.985,1.081,0.942,0.904,1.047,1.021,0.991,1.03,0.991,1.348,1.116,0.965,1.067,1.01,0.983,0.944,0.926,1.129,0.969,0.926,1.006,1.117,0.943,1.066,0.994,1.019,1.112,0.981,0.996,1.045,0.973,1.008,0.99,1.021,1.1 +XM_291214,0.977,1.045,0.981,1.005,1.029,1.004,0.926,0.96,1.048,1.099,0.946,0.95,1.005,1.011,1.056,0.95,0.938,0.919,0.955,1.049,1.033,1.019,0.875,1.157,0.898,1.024,1.015,0.923,1.088,0.878,1.079,0.824,0.892,0.98,1.021,1.165,0.98,1.012,0.989,0.924,0.999,0.973,1.114,1.009,0.875,1.009,0.846,1.011,1.056,0.95,1.028,1.034,0.995,0.986 +XM_291221,1.033,1.101,1.039,1.056,1.051,1.014,1.002,1.019,1.004,1.072,0.973,1.082,1.025,0.916,1.106,1.032,1.048,1.017,0.964,0.97,1.031,1.013,0.952,1.038,0.957,1.002,0.947,0.957,0.903,0.859,0.991,0.943,1.053,0.955,1.106,1.047,1.095,1.078,1.024,1.001,0.892,1.034,1.074,0.937,1.026,1.011,1.044,1.064,1.023,0.945,0.901,1.04,1.046,0.949 +XM_291223,0.943,1.093,1.017,0.966,1.026,1.097,1.003,1.057,1.229,1.022,0.965,0.94,1.13,0.936,1.191,0.932,0.989,0.817,0.995,0.983,1.048,0.937,0.972,0.984,0.916,1.053,1.086,0.993,0.997,0.971,0.966,0.927,1.017,1.131,0.994,1.065,0.95,1.09,1.14,1.098,0.991,0.972,0.996,0.886,1.076,0.945,0.908,0.931,0.942,1.035,0.938,1.138,0.968,1.13 +XM_291239,0.935,0.974,1.008,1.013,1.048,0.979,0.94,0.935,1.095,0.963,1.261,1.022,0.877,0.887,1.187,0.99,0.952,0.939,0.825,1.078,1.061,1.013,1.117,1.043,1.005,0.966,1.073,1.047,0.838,1.014,0.92,0.914,1.025,1.016,1.121,0.979,0.963,1.013,1.024,1.059,1.001,1.085,0.88,1.083,1.106,0.978,1.067,1.01,1.07,1.054,0.973,1.054,0.949,0.871 +XM_291253,1.204,1.07,1.003,1.123,1.102,1.058,0.733,0.94,1.235,1.014,0.946,0.724,0.845,0.905,0.948,1.035,1.114,0.84,0.989,0.806,0.779,0.804,0.991,1.144,0.87,1.249,0.797,0.923,0.731,1.058,0.959,1.239,1.229,1.119,0.629,0.847,0.898,0.916,1.241,0.966,0.855,1.048,0.836,1.021,1.046,0.955,1.178,1.144,0.875,1.124,0.903,0.704,1.06,1.118 +XM_291261,1.035,0.971,0.952,1.035,1.016,1.011,0.856,0.947,0.978,1.016,1.028,1.012,0.968,0.914,0.937,0.892,1.012,1.041,0.965,0.912,1.122,0.97,1.0,1.045,0.898,1.052,1.178,1.057,0.759,0.976,0.971,0.956,1.04,0.866,1.079,1.036,0.995,1.013,0.998,0.926,0.99,0.921,1.014,0.98,1.089,1.013,1.059,0.992,1.14,0.965,0.879,0.96,1.048,0.886 +XM_291262,0.999,1.042,0.917,0.974,0.975,1.018,0.877,0.962,1.036,1.042,0.984,1.061,0.962,0.911,0.929,1.063,0.988,1.0,1.048,0.977,1.046,1.075,1.002,1.006,1.017,0.931,1.045,1.055,0.985,1.064,0.985,1.103,1.114,1.131,1.067,0.922,1.094,1.033,0.911,1.131,0.998,0.98,1.144,1.112,0.96,1.036,1.0,1.015,0.901,0.958,0.998,1.041,0.968,1.163 +XM_291266,1.001,1.028,1.069,1.075,0.932,1.254,0.762,0.733,0.964,0.836,1.08,0.677,0.689,0.746,1.076,1.464,1.068,1.008,1.032,0.917,0.76,1.022,1.057,0.944,0.976,1.14,1.067,1.045,0.876,1.092,0.834,1.036,1.463,1.059,0.674,0.978,1.032,0.882,1.375,1.036,0.967,1.07,0.805,1.003,0.923,1.274,0.796,1.145,1.156,0.934,1.117,0.792,0.916,0.917 +XM_291268,1.209,0.97,1.056,1.059,0.859,1.004,0.768,0.69,1.02,0.918,0.921,0.93,0.929,0.992,0.928,0.973,1.351,0.87,1.03,0.829,1.125,0.781,0.951,0.911,0.923,1.438,0.924,0.825,0.689,0.948,0.891,1.253,2.13,0.918,0.782,0.834,0.996,0.889,1.793,1.914,0.962,0.933,1.12,2.214,0.93,0.956,1.097,1.12,1.439,1.246,0.847,0.929,1.094,1.106 +XM_291270,1.198,0.939,1.014,0.994,0.937,1.14,1.073,1.181,0.98,0.931,1.056,0.954,1.038,0.935,1.021,1.165,1.244,1.08,0.974,0.998,0.968,1.029,1.022,0.954,0.876,1.006,1.018,0.95,0.749,1.112,0.989,0.918,1.042,1.113,0.984,0.985,1.024,1.073,1.036,1.021,1.012,0.848,0.983,1.035,0.924,0.913,1.172,1.059,0.907,0.951,0.961,1.064,1.064,1.027 +XM_291277,0.567,0.701,0.908,0.513,0.715,1.312,0.461,0.353,0.825,0.728,1.297,0.488,0.381,0.759,1.045,1.661,0.599,0.662,0.619,1.318,0.488,0.449,1.846,0.562,0.557,0.651,0.972,1.013,0.484,1.305,0.806,2.459,1.707,1.18,1.149,0.74,1.154,0.767,1.365,0.677,0.972,1.41,1.336,0.964,0.89,1.847,0.902,0.601,1.34,0.602,1.419,1.254,1.32,1.594 +XM_291285,0.995,0.963,0.98,1.106,1.012,1.329,1.208,0.778,0.938,0.935,1.109,0.997,0.927,0.85,1.142,1.558,1.014,0.948,0.954,1.174,0.832,0.929,1.238,0.836,0.969,0.968,0.952,0.941,0.708,1.016,1.021,0.985,0.88,1.427,1.0,1.132,1.262,0.859,1.155,1.006,0.828,1.245,0.804,0.959,0.869,1.442,1.169,0.985,1.561,0.934,1.21,0.945,0.897,1.121 +XM_291291,0.831,1.092,1.226,0.993,0.897,1.087,0.89,0.88,1.011,0.99,1.036,0.896,0.899,0.943,1.086,1.322,0.859,0.923,1.173,0.909,0.863,0.887,1.047,0.978,0.938,0.985,1.041,0.931,0.658,1.093,0.936,1.255,1.541,1.169,0.685,0.958,1.13,1.051,0.968,0.897,0.933,0.958,1.002,0.916,1.151,1.045,0.981,0.839,1.218,0.855,0.979,0.977,1.079,1.412 +XM_291304,1.178,0.966,1.226,1.148,1.215,0.958,0.784,1.108,1.007,1.021,1.02,1.117,0.869,0.922,0.887,1.146,1.041,1.036,1.076,0.914,1.165,1.053,1.179,1.08,0.999,1.162,0.961,0.811,0.853,1.027,1.011,1.02,0.844,1.291,1.027,1.082,1.0,0.879,1.157,1.008,1.179,0.888,0.935,0.965,0.901,1.008,0.794,1.188,1.006,1.006,0.805,0.909,0.909,0.934 +XM_291311,0.874,1.016,1.473,0.933,1.023,0.873,0.885,1.083,1.199,1.083,1.085,1.089,1.035,0.975,1.102,0.885,1.149,1.11,1.387,0.989,0.898,0.846,0.747,0.932,0.966,1.095,1.288,1.147,0.941,1.199,1.188,0.935,0.912,1.198,0.831,0.784,1.336,1.069,0.916,0.801,1.142,1.279,0.866,1.018,1.214,0.713,0.944,0.987,0.653,1.196,1.079,0.79,1.042,0.798 +XM_291313,0.948,1.026,1.024,0.961,0.927,1.024,0.981,1.157,1.043,0.941,0.855,0.991,1.068,1.03,1.098,0.981,0.979,0.938,1.096,0.974,1.026,1.051,1.073,1.03,0.903,0.992,1.078,0.978,0.946,1.012,1.035,1.046,0.947,0.966,1.027,0.966,1.007,1.118,0.997,1.144,0.9,0.98,0.956,1.148,0.968,0.922,0.995,0.962,0.983,1.048,1.0,1.013,1.025,0.978 +XM_291314,1.098,1.008,1.155,0.989,1.132,0.923,0.867,0.996,0.97,1.083,1.056,1.035,0.932,0.827,0.811,0.846,1.046,1.013,1.197,0.944,0.964,1.067,1.0,1.16,1.105,0.976,1.066,1.095,0.824,0.957,1.076,1.169,0.967,1.003,1.014,0.986,0.956,1.049,1.092,0.991,1.122,0.963,0.987,0.932,0.963,0.996,1.154,0.911,0.952,1.072,0.983,0.9,1.075,1.065 +XM_291315,0.952,0.775,1.325,0.593,1.451,0.807,0.49,0.66,1.793,1.189,0.728,0.752,0.61,1.003,0.748,1.221,1.218,1.127,2.333,1.061,0.726,1.434,1.088,1.288,0.634,1.383,1.719,1.11,0.449,1.212,1.373,0.735,0.61,1.087,0.369,0.498,0.99,1.574,0.751,0.35,1.645,0.887,0.5,1.288,1.272,0.921,0.859,1.316,0.721,1.064,0.965,1.196,1.076,1.862 +XM_291321,1.138,1.071,0.89,0.923,1.156,1.07,0.906,1.0,1.014,1.129,0.995,0.992,1.152,1.089,1.113,0.98,1.079,0.999,1.081,1.026,1.083,0.917,1.148,0.966,0.971,1.182,1.11,0.918,0.967,1.06,1.072,1.01,1.06,0.93,0.903,0.954,1.105,1.071,1.042,0.933,0.985,0.966,0.871,0.984,0.878,0.979,1.019,1.025,1.039,0.932,1.075,0.961,1.006,0.971 +XM_291322,0.954,0.968,0.973,0.873,0.949,1.089,0.947,1.076,0.916,0.956,1.033,0.982,0.955,0.968,1.357,1.059,0.982,0.878,0.84,0.977,0.898,0.913,0.928,1.08,0.984,1.031,1.064,0.812,1.428,0.881,1.154,0.861,1.009,1.063,0.939,1.006,1.103,0.937,0.907,1.045,0.98,0.958,1.2,0.935,1.094,0.963,1.013,0.954,1.02,0.985,1.002,1.063,1.012,1.01 +XM_291326,1.118,1.105,0.931,1.016,0.962,0.864,0.836,0.859,0.952,0.999,1.002,0.969,1.073,1.142,0.957,0.962,1.034,1.032,1.061,1.029,1.025,0.912,1.063,0.971,1.091,0.985,0.922,1.018,0.78,1.018,0.879,0.948,1.066,1.01,1.024,0.899,0.933,0.859,0.932,0.995,0.937,1.081,0.801,1.112,0.976,0.916,1.047,0.978,1.022,1.017,1.084,1.069,1.01,0.952 +XM_291335,1.053,1.337,1.104,1.191,1.01,0.916,1.083,1.216,1.164,1.004,0.918,0.988,1.016,0.76,0.921,1.272,1.037,0.957,0.927,1.381,0.937,0.977,0.959,0.955,1.067,0.959,1.049,1.097,0.816,1.291,0.99,1.18,0.809,1.75,0.89,1.065,1.08,0.803,1.226,0.831,1.133,1.688,0.757,0.968,1.113,0.916,1.139,0.976,1.163,1.057,1.088,0.936,0.906,1.028 +XM_291339,1.087,0.948,1.094,1.049,1.176,0.976,0.878,1.14,1.088,1.119,0.917,0.994,1.196,0.964,0.869,1.036,1.051,0.881,0.915,1.051,1.06,0.956,0.999,0.969,0.961,1.08,1.076,1.061,1.15,1.0,0.985,1.12,1.027,0.896,0.93,1.191,1.049,0.921,1.092,1.063,0.827,0.946,0.981,1.172,0.919,0.954,1.165,1.032,0.985,0.968,1.04,1.032,1.021,1.006 +XM_291345,1.034,0.967,0.997,0.9,0.961,0.834,1.039,0.988,0.947,1.032,0.911,1.067,1.236,0.868,1.168,1.114,1.01,1.024,0.954,1.104,1.137,1.074,0.963,0.949,1.105,1.061,0.972,0.847,1.016,1.044,0.996,1.024,0.89,0.94,1.05,1.269,0.967,0.925,0.942,0.799,0.939,0.941,1.143,0.874,0.982,1.125,0.991,1.031,1.094,1.094,1.114,1.044,1.188,0.999 +XM_291352,1.028,1.045,1.086,0.923,0.954,1.229,0.98,0.973,1.04,0.983,0.849,0.971,1.001,1.164,1.139,0.977,0.915,1.072,1.042,1.011,0.924,0.908,1.317,0.945,1.011,0.903,0.946,1.078,0.995,0.979,0.859,1.112,0.885,0.856,0.964,1.025,1.019,1.065,0.951,0.911,1.037,0.862,1.28,1.019,0.931,1.025,1.022,1.056,1.087,0.924,1.012,0.981,1.106,0.937 +XM_291387,1.001,0.959,1.212,1.061,0.963,0.968,1.01,1.078,0.836,0.931,0.83,0.932,1.003,1.028,1.105,0.805,1.0,1.121,1.051,1.097,1.125,0.957,0.958,0.968,0.953,1.073,0.889,0.885,1.07,1.069,0.984,1.008,0.94,0.93,0.948,0.973,1.27,0.841,0.986,1.002,0.945,1.067,1.068,0.995,1.024,1.046,0.9,0.936,0.866,1.055,1.119,1.005,0.873,0.923 +XM_291392,1.01,1.022,0.916,1.047,1.209,0.82,0.84,1.16,0.942,0.9,1.053,1.007,1.159,0.929,0.944,1.099,1.04,1.257,0.98,0.911,1.049,0.959,1.002,1.059,0.944,0.976,1.067,1.098,0.965,0.995,1.04,0.898,1.044,0.999,1.096,1.022,1.029,0.955,0.946,0.916,1.035,0.943,1.073,0.948,1.042,0.977,1.021,1.025,1.005,1.093,0.968,1.19,0.929,1.081 +XM_291395,1.097,1.05,0.887,1.091,0.995,0.985,1.043,1.052,1.1,1.174,1.015,1.0,1.119,1.038,1.077,0.938,1.088,0.946,1.085,0.967,1.048,0.953,0.892,0.984,1.016,1.129,0.909,1.068,0.869,0.962,0.987,0.966,0.991,0.893,0.955,0.956,1.014,0.964,1.07,0.991,0.979,0.969,1.031,1.139,1.081,0.99,1.026,1.1,0.944,1.122,0.906,0.873,0.998,0.991 +XM_291400,0.896,1.544,0.91,1.056,1.067,1.981,1.216,0.839,0.859,0.752,1.359,0.825,1.028,0.771,0.869,1.011,0.838,1.28,0.878,1.572,0.794,1.066,1.008,0.908,1.019,0.904,0.873,0.892,0.95,1.536,0.816,0.895,0.967,2.036,0.869,0.949,1.203,0.964,1.284,0.77,0.829,1.303,0.865,0.992,1.054,1.264,0.927,1.021,1.13,0.787,1.177,0.851,0.816,0.868 +XM_291428,1.168,0.987,1.08,1.043,1.049,1.011,0.884,1.128,1.14,1.186,1.035,1.042,1.044,1.02,0.957,0.991,0.965,0.937,0.987,1.056,1.032,0.973,1.011,0.93,1.039,1.09,1.027,1.19,0.807,0.926,1.086,1.082,0.95,0.842,1.078,1.081,0.836,0.898,1.001,0.98,1.042,0.974,0.944,1.104,1.087,0.934,1.018,1.018,0.986,0.985,1.05,0.906,0.981,1.016 +XM_291435,1.02,0.982,1.09,1.091,0.973,1.141,0.926,1.223,0.975,0.961,1.107,1.032,0.989,0.946,0.922,1.007,0.975,1.007,0.974,1.197,0.973,1.03,1.236,1.075,1.041,1.053,1.005,0.922,0.92,1.096,1.042,0.939,0.906,1.087,1.116,1.123,1.058,0.937,1.033,0.955,1.038,1.128,0.919,0.978,1.147,1.054,0.951,1.002,0.948,1.016,1.056,0.938,1.006,0.989 +XM_291436,1.07,1.001,1.009,1.014,0.896,0.957,1.166,1.017,0.964,1.204,1.108,1.133,1.031,0.871,0.919,1.044,1.007,1.055,0.933,1.329,1.039,1.031,0.943,0.977,1.026,0.923,0.835,1.122,0.922,1.059,0.907,0.928,1.002,0.968,0.991,0.947,1.051,1.118,0.939,0.962,0.966,0.997,1.148,1.0,1.099,0.993,0.906,0.999,0.951,1.115,0.916,1.037,0.995,0.972 +XM_291437,1.029,1.048,1.097,1.062,1.059,0.957,0.93,0.932,1.046,1.046,1.011,0.974,0.927,1.08,0.982,1.079,0.986,1.117,0.941,0.912,0.946,0.877,0.984,1.025,0.996,1.044,1.02,1.056,0.825,1.083,1.069,1.026,1.09,0.935,0.979,1.052,1.035,0.995,1.054,0.965,0.842,0.939,0.951,0.888,0.983,0.971,0.983,1.014,1.008,0.961,1.046,0.994,1.158,1.123 +XM_291438,1.04,1.099,0.929,0.952,1.07,0.905,1.118,1.127,1.161,0.879,0.963,1.023,0.93,1.105,1.013,0.949,0.979,0.882,1.04,1.141,1.065,1.088,1.083,0.922,0.989,1.056,0.986,1.068,1.094,0.999,0.942,1.066,0.918,1.014,1.016,1.06,0.919,1.008,0.975,0.812,1.053,1.001,0.963,0.916,1.143,0.944,0.973,0.994,0.902,0.929,1.011,0.888,1.035,1.17 +XM_291439,0.911,1.088,0.909,1.121,1.004,1.04,1.007,1.087,0.842,1.142,0.906,0.941,0.884,1.089,0.837,1.023,1.019,0.99,1.118,0.919,0.935,0.857,0.914,1.069,0.974,0.971,0.88,0.951,1.041,1.139,1.087,0.845,1.08,1.091,1.061,1.087,0.879,1.111,1.115,0.944,0.949,0.896,0.877,1.009,0.985,0.994,0.942,1.042,1.134,0.993,1.05,0.914,0.967,0.96 +XM_291485,0.94,0.993,1.157,0.998,0.876,0.949,0.953,1.091,1.119,0.97,1.115,1.015,0.973,1.06,1.012,0.933,1.115,1.021,1.032,0.936,0.994,1.028,1.026,1.092,1.004,0.986,0.894,1.014,1.371,0.978,1.004,0.816,0.942,1.06,0.875,0.984,1.025,0.916,0.913,0.999,0.971,0.91,1.121,0.865,1.016,0.919,1.207,0.913,0.977,1.172,1.127,1.051,0.974,0.932 +XM_291533,0.859,0.744,2.002,0.559,1.04,2.264,0.981,1.753,1.214,0.801,0.837,1.324,1.278,0.827,1.407,2.956,1.446,0.948,0.756,1.088,0.471,1.739,0.917,1.988,0.696,0.539,1.947,0.875,0.794,1.215,1.975,1.047,3.059,1.292,0.626,0.429,1.085,2.079,1.594,0.536,1.175,1.145,0.925,0.445,1.085,0.884,0.928,0.953,1.293,0.953,1.586,0.577,0.567,1.145 +XM_291544,0.662,0.595,2.821,0.557,1.152,1.234,0.531,0.676,1.6,1.341,0.439,0.597,0.991,0.475,1.339,3.048,1.812,0.965,0.478,1.009,0.147,1.053,1.721,2.249,0.365,0.282,3.826,0.765,0.292,1.314,2.064,2.198,4.039,1.067,0.151,0.188,0.699,1.63,3.089,0.582,1.264,0.823,0.39,0.482,1.524,0.709,1.255,0.724,1.732,1.149,1.59,0.728,0.241,2.249 +XM_291548,1.013,1.012,0.893,0.947,1.081,0.898,0.899,1.085,1.022,1.0,1.117,1.013,0.943,0.84,0.8,0.946,1.083,0.944,0.958,0.86,0.81,1.009,1.066,1.091,0.989,0.977,1.091,1.092,0.935,1.02,1.016,1.003,0.802,0.954,1.073,0.871,0.966,0.951,1.078,1.051,0.998,0.942,0.864,1.043,1.029,0.986,0.956,1.016,0.947,0.925,1.035,0.911,1.12,0.887 +XM_291569,1.127,1.032,1.098,1.025,0.839,0.955,0.906,1.174,0.897,1.025,0.994,1.045,1.115,0.938,0.912,0.903,1.015,0.896,1.247,0.923,0.995,1.11,1.057,1.078,0.912,1.021,1.017,0.945,1.038,0.839,1.004,0.96,0.971,1.012,1.069,0.979,0.968,0.987,1.105,1.025,0.995,0.992,1.115,0.937,1.165,0.883,1.118,0.983,0.893,0.995,1.026,1.001,1.116,1.019 +XM_291574,0.995,0.962,0.943,1.007,0.928,0.984,0.948,1.031,0.896,1.0,1.065,1.012,1.025,1.079,1.309,0.884,1.135,1.098,0.888,0.973,0.955,1.105,1.229,0.94,0.962,0.987,1.067,1.041,1.099,0.935,1.033,1.087,0.924,1.031,0.993,1.095,0.835,1.003,0.958,1.124,0.887,1.024,0.812,0.928,0.983,0.81,1.066,1.031,1.145,0.999,0.808,0.893,0.995,0.919 +XM_291577,0.932,1.059,0.949,0.96,1.03,0.943,0.899,1.093,0.919,0.971,0.899,1.056,0.881,0.886,0.833,0.917,0.948,1.201,0.937,1.008,1.014,0.918,0.957,0.954,0.904,1.008,1.116,1.057,1.498,1.046,1.086,1.063,1.092,1.013,0.897,1.11,1.039,0.989,1.018,1.041,0.971,0.905,1.058,0.91,0.965,0.906,1.084,1.04,0.937,0.943,1.112,0.902,1.032,0.869 +XM_291583,1.143,1.012,0.896,0.964,1.13,0.987,0.977,0.955,1.087,0.921,0.829,0.989,1.04,1.045,1.02,1.008,0.898,1.072,1.135,0.899,0.911,1.042,1.027,1.008,0.804,0.969,0.88,1.016,0.961,1.063,0.864,1.203,1.227,0.99,0.955,0.969,1.175,0.904,1.135,1.062,0.944,1.054,1.041,1.057,0.985,1.155,1.138,0.924,1.095,1.079,1.056,0.946,0.933,0.968 +XM_291607,0.969,1.035,1.045,0.999,0.95,1.034,1.121,1.268,0.986,0.978,1.116,1.037,1.001,1.153,1.119,0.902,0.985,0.925,1.008,1.028,1.012,1.084,1.001,1.005,1.036,1.194,1.042,1.001,0.736,0.898,1.069,0.93,0.843,0.911,1.081,1.135,0.983,1.065,0.967,1.07,0.883,1.026,0.93,0.966,0.949,0.965,0.987,0.88,1.096,0.979,0.975,0.85,1.372,0.965 +XM_291623,0.97,1.136,0.933,1.028,0.918,0.94,1.075,1.121,0.876,0.885,0.951,1.001,0.931,1.177,0.929,1.018,0.906,1.061,0.927,0.917,1.0,1.184,1.112,0.89,1.015,0.861,0.918,0.986,1.196,0.98,1.088,1.014,1.207,1.037,1.115,0.916,1.051,0.912,1.096,1.071,0.983,1.024,1.383,0.924,1.001,1.029,0.902,1.06,1.133,0.941,1.054,0.974,0.911,1.235 +XM_291625,0.891,1.003,1.008,1.051,1.169,0.948,0.939,1.065,0.927,0.95,0.939,1.054,0.978,0.982,0.862,1.042,1.08,0.932,0.871,1.025,0.834,0.916,0.958,0.981,0.893,1.075,1.252,0.996,0.964,1.091,1.018,1.076,0.901,1.037,1.125,0.945,1.069,1.001,0.995,0.922,1.048,0.923,0.993,0.837,1.007,1.012,0.999,1.097,1.134,1.039,0.962,0.875,0.988,0.888 +XM_291627,2.112,0.943,1.769,1.187,1.684,0.868,0.853,1.252,1.762,1.38,1.02,1.084,1.341,1.606,1.213,1.006,2.12,1.084,2.487,0.821,1.269,1.083,0.846,1.459,0.82,2.787,1.378,1.656,0.855,0.875,1.43,0.839,1.036,0.994,2.39,0.771,0.903,1.478,0.946,0.713,2.079,0.889,0.96,0.899,1.682,0.854,1.305,1.852,0.881,1.863,0.939,0.912,1.646,0.908 +XM_291663,1.133,1.023,1.038,1.116,1.109,0.868,0.942,0.929,0.945,1.203,1.076,0.98,1.117,1.009,0.833,0.755,0.942,1.014,1.109,1.14,0.883,1.003,0.967,0.997,1.016,1.104,0.981,1.071,1.159,0.883,1.045,0.932,0.954,1.03,1.089,1.114,0.893,0.909,1.04,1.033,0.959,0.976,1.024,0.981,1.012,0.917,1.225,1.097,0.998,1.157,1.088,0.98,0.803,0.789 +XM_291716,1.079,1.075,1.123,0.925,1.039,1.01,0.92,1.061,0.939,1.073,1.048,1.046,0.919,1.025,1.053,1.134,0.901,0.942,0.971,0.957,1.289,0.89,0.975,1.001,1.112,1.02,1.048,0.957,0.938,1.066,1.032,0.997,0.922,0.962,0.945,0.857,0.962,0.979,1.11,1.06,0.841,0.986,1.111,0.953,1.113,1.074,0.947,1.049,1.215,0.911,0.884,0.954,1.03,1.228 +XM_291725,0.807,0.914,1.136,0.968,0.984,1.044,0.918,1.085,0.87,1.161,0.924,1.079,0.957,1.051,0.856,1.134,1.001,1.039,1.087,1.001,1.128,1.033,1.095,1.032,1.083,1.044,1.127,1.065,1.062,0.998,0.986,0.924,0.931,1.197,1.071,1.007,1.092,1.125,1.005,0.959,1.023,0.934,0.754,0.91,1.061,1.195,1.027,1.125,0.932,1.132,1.11,0.846,0.963,0.928 +XM_291745,1.142,0.979,0.988,1.034,0.893,1.024,1.018,1.12,0.775,1.037,0.827,0.933,0.939,1.011,0.867,0.886,0.965,1.011,1.028,1.221,0.925,1.016,1.058,1.126,0.953,1.095,0.967,0.935,1.061,0.895,0.86,0.796,1.082,0.959,1.029,1.042,0.77,0.826,0.907,0.884,0.995,0.889,1.046,0.951,0.978,0.977,0.96,0.911,0.861,1.008,0.838,1.185,0.955,1.024 +XM_291757,1.019,1.044,1.063,0.931,0.962,1.012,0.961,0.936,1.051,0.932,1.022,1.087,0.913,0.961,0.893,0.888,0.846,0.965,1.046,1.01,1.075,0.95,0.921,0.957,1.057,0.924,0.975,0.874,1.205,0.953,0.994,0.928,0.965,0.989,0.9,1.039,1.009,1.081,0.985,1.001,1.017,1.16,0.949,0.972,1.018,1.121,0.961,1.09,1.084,1.102,1.023,1.003,0.963,0.888 +XM_291763,0.975,0.945,0.966,1.063,1.024,0.999,1.138,0.969,0.914,1.186,1.116,1.096,1.083,0.972,1.022,1.069,0.871,1.177,0.991,1.096,0.97,0.886,1.183,1.066,0.946,1.011,1.112,1.008,0.784,1.017,1.024,1.176,0.934,0.922,1.137,1.105,1.034,0.919,0.991,0.939,0.941,0.93,0.819,0.94,0.978,0.88,0.914,0.913,1.029,0.893,0.96,0.921,0.999,0.94 +XM_291767,0.933,0.869,0.988,1.006,1.094,1.06,0.994,1.029,1.028,1.089,0.866,0.978,0.961,0.973,0.914,0.968,1.209,1.136,0.709,1.1,1.094,0.937,1.102,1.051,0.931,1.041,0.989,1.12,0.793,1.033,1.018,0.938,0.992,1.023,1.043,1.033,1.095,1.0,1.027,1.169,1.01,1.016,0.975,0.969,1.131,1.066,0.963,1.034,1.0,0.964,0.968,1.082,1.102,1.036 +XM_291782,0.939,0.943,0.989,1.013,1.02,0.969,1.044,0.957,0.968,0.817,0.863,0.978,1.176,1.161,0.951,1.121,0.922,1.006,1.072,1.001,0.996,0.906,1.185,0.98,1.04,0.956,1.061,1.007,1.16,1.027,1.022,1.003,1.062,0.846,1.03,1.038,1.038,0.982,1.077,0.985,1.06,1.085,1.073,1.08,1.043,1.013,1.012,0.966,0.92,0.979,1.101,0.972,0.961,0.879 +XM_291806,0.974,0.925,1.228,0.977,1.062,1.005,1.261,0.866,0.993,0.902,1.011,0.947,0.953,1.065,0.877,0.993,0.945,0.921,0.765,0.812,1.03,0.935,1.047,0.901,1.205,0.845,1.041,0.886,1.606,1.132,1.1,0.921,1.157,0.946,1.126,1.032,1.096,0.903,0.94,0.985,1.015,0.972,1.159,0.861,0.881,1.125,1.043,0.938,0.961,0.893,0.959,0.999,1.025,0.959 +XM_291819,1.061,0.982,0.974,1.01,0.938,0.997,0.959,0.998,1.084,1.071,1.033,0.98,1.125,1.087,1.123,1.037,1.024,0.977,1.035,0.893,0.939,1.127,1.028,0.935,1.02,1.053,0.948,0.923,0.853,0.908,0.994,0.987,1.091,1.157,1.005,1.049,0.999,1.031,1.011,0.941,0.928,0.987,0.875,0.973,1.0,0.965,0.978,0.986,0.936,1.009,1.014,0.931,1.008,1.058 +XM_291838,1.225,0.972,0.932,1.006,0.91,1.065,0.982,1.011,0.913,1.074,0.993,1.12,1.073,0.985,1.282,0.892,0.924,0.978,1.156,0.965,1.111,1.099,1.097,0.987,0.995,1.062,0.977,1.197,1.349,1.015,0.986,0.967,1.121,0.996,1.153,1.041,0.999,0.895,0.935,0.945,0.935,1.014,0.851,1.04,0.905,1.34,0.911,1.105,1.079,1.047,0.969,1.112,0.954,1.084 +XM_291851,1.056,1.013,0.924,1.076,0.993,1.003,0.821,1.07,1.132,1.045,1.112,1.023,0.975,1.019,0.977,0.978,1.043,0.914,1.02,0.898,0.999,1.14,1.01,0.983,0.967,0.987,0.929,1.075,0.95,1.053,0.931,0.991,1.041,1.181,0.956,1.016,1.074,0.893,0.875,1.042,1.163,1.05,0.822,0.919,0.951,1.033,0.988,1.058,0.903,0.975,0.944,0.966,1.078,0.981 +XM_291859,1.007,1.202,0.995,0.945,1.146,0.959,0.839,1.22,1.05,1.009,0.909,1.026,0.83,0.99,0.835,1.099,0.939,0.86,1.121,0.92,0.871,1.047,0.871,1.123,0.976,0.996,1.082,0.931,0.844,1.124,1.105,1.11,0.967,1.011,1.116,1.093,0.96,1.031,1.021,1.119,0.981,1.033,1.004,1.102,1.012,1.04,0.942,0.839,0.896,0.973,0.992,1.118,0.998,0.905 +XM_291862,1.093,1.116,0.993,0.972,0.95,1.083,0.916,1.024,1.004,0.959,0.973,1.061,0.935,1.055,0.872,1.171,0.961,1.016,0.925,1.052,1.084,1.043,0.884,0.962,0.956,0.906,0.977,1.176,1.116,0.892,1.235,1.018,0.953,1.128,1.063,0.962,1.153,1.099,1.028,0.986,1.071,0.89,0.983,0.89,0.933,0.992,1.012,1.036,1.076,1.009,1.071,0.998,1.108,1.016 +XM_291885,0.989,1.002,1.039,1.026,1.125,1.06,1.096,1.187,0.938,1.026,0.942,1.007,0.928,1.22,0.8,0.851,1.047,0.986,0.881,0.953,1.055,0.998,0.953,0.914,1.131,1.031,1.153,0.978,1.105,1.063,1.003,1.038,1.014,0.899,1.085,0.971,0.975,0.868,0.936,1.008,1.225,0.983,0.832,0.944,1.054,1.079,0.815,0.929,0.92,1.049,1.025,0.897,0.976,0.731 +XM_291890,0.881,0.883,0.896,1.032,1.049,1.105,0.974,1.029,1.123,1.111,1.029,0.958,0.962,0.892,0.937,1.027,0.886,1.027,0.91,1.019,1.336,1.108,0.967,1.045,1.081,0.961,0.849,0.945,0.632,1.008,1.127,0.889,1.132,0.995,1.101,0.975,1.004,0.997,1.064,0.986,0.971,1.018,1.012,1.056,0.998,0.865,1.053,0.977,0.828,1.224,0.943,0.881,0.993,0.844 +XM_291892,1.061,0.917,0.913,0.985,1.097,0.96,0.962,0.985,0.929,1.131,1.176,0.944,0.972,0.923,1.035,0.94,1.097,1.012,1.002,0.903,1.216,0.932,1.034,0.881,1.053,0.914,0.947,1.075,0.953,0.987,0.973,0.906,0.937,0.99,1.025,1.018,1.067,0.948,1.028,0.812,1.066,1.053,0.91,0.929,0.93,1.019,1.064,1.068,1.028,1.039,0.93,1.057,1.055,0.987 +XM_291947,1.013,1.131,1.399,0.946,1.17,0.893,0.974,0.921,1.059,0.93,1.043,1.023,1.038,0.97,1.007,0.981,1.266,1.209,1.436,0.967,0.981,0.884,1.046,1.009,0.904,1.01,1.88,1.058,1.294,0.941,0.894,0.915,1.295,0.997,1.178,1.07,0.95,0.956,0.864,0.971,1.498,0.9,1.12,0.935,1.152,0.929,1.259,1.002,1.093,2.088,0.93,1.089,1.214,0.96 +XM_291977,1.03,0.957,1.072,1.158,1.029,1.097,0.934,0.96,1.1,1.031,1.028,1.185,1.098,0.94,0.913,1.196,0.975,0.971,0.839,0.849,1.095,1.07,1.061,0.918,0.979,0.93,1.251,1.007,0.737,1.046,0.991,0.952,1.041,1.109,1.004,1.016,0.993,0.936,0.96,0.962,0.911,1.083,1.078,0.945,1.011,1.026,1.004,1.031,0.998,0.984,1.023,0.977,0.986,0.941 +XM_291980,0.964,1.114,1.026,0.962,1.165,0.987,0.885,0.676,1.167,1.11,1.04,1.15,0.999,0.912,0.885,0.864,1.045,0.846,0.859,0.895,0.916,1.031,0.958,0.83,0.92,0.906,1.105,1.02,0.899,1.04,0.782,1.001,0.873,0.998,1.188,1.052,0.856,1.155,1.224,0.951,1.056,1.045,1.018,1.1,1.049,1.038,1.086,1.074,1.014,1.088,0.989,0.954,0.723,0.971 +XM_291986,0.957,1.105,1.056,1.026,0.938,0.988,0.827,0.971,0.795,0.976,0.97,1.131,1.136,0.859,0.967,1.022,1.008,0.989,1.03,1.081,0.92,0.972,1.02,1.24,1.008,0.996,0.968,1.123,0.937,1.014,1.065,1.075,0.968,0.999,0.947,1.074,1.018,1.092,1.015,1.034,1.026,1.007,1.142,1.113,1.024,0.998,1.025,0.988,1.062,1.08,1.061,1.104,0.977,1.089 +XM_291991,1.003,0.812,0.898,0.983,0.956,0.974,1.314,0.961,0.877,1.026,1.034,1.071,1.034,1.022,0.887,1.148,0.96,1.002,1.15,1.059,1.164,0.996,0.89,0.973,1.0,1.153,1.17,1.022,1.129,0.987,1.002,0.954,0.987,1.003,0.952,0.908,1.1,1.046,1.13,1.035,1.117,0.945,0.991,1.015,0.945,1.08,0.915,1.057,0.999,1.044,0.911,0.897,1.137,1.057 +XM_292012,0.973,0.849,2.555,0.425,2.113,1.373,0.545,2.366,2.243,1.009,0.476,1.457,1.807,0.536,1.233,1.4,1.983,0.949,0.688,1.048,0.206,2.666,1.32,2.022,0.304,0.349,2.567,1.825,0.409,0.837,2.431,1.205,3.326,0.697,2.029,0.252,0.505,2.643,1.729,1.236,1.524,0.88,0.359,0.333,1.507,0.745,1.272,1.286,1.678,1.147,1.175,0.448,0.326,2.061 +XM_292021,0.99,0.932,1.129,0.985,0.94,0.958,0.921,1.072,1.078,0.902,0.872,1.175,1.065,1.217,1.16,0.939,0.96,0.905,0.993,0.909,0.989,1.029,1.0,0.984,1.033,1.036,0.849,1.01,0.865,1.002,1.027,1.034,0.99,1.018,1.169,1.046,1.056,0.968,0.948,1.128,0.864,1.065,0.977,1.047,1.018,0.935,1.001,1.012,0.957,1.077,0.988,1.009,1.008,0.908 +XM_292025,0.979,1.023,1.013,0.942,0.972,0.988,0.948,1.0,0.931,0.867,0.829,1.102,1.187,0.868,0.86,1.113,1.159,0.997,0.918,1.069,1.115,1.023,0.907,0.993,1.013,0.981,0.984,0.991,1.008,0.94,1.004,0.997,1.002,1.005,0.885,1.02,1.113,0.967,0.923,0.859,0.925,1.06,0.803,1.019,0.956,0.879,0.974,1.014,0.941,1.029,1.021,0.971,0.996,0.895 +XM_292029,1.037,0.993,0.957,0.815,0.958,0.939,1.181,1.27,0.922,0.947,0.884,1.067,0.979,0.97,0.986,0.881,1.029,0.942,0.853,0.954,1.097,1.001,1.122,1.015,1.04,1.127,1.042,0.978,1.056,0.983,1.068,0.906,0.976,1.03,1.03,1.111,1.122,1.042,1.097,0.982,1.026,1.05,1.031,0.984,1.129,0.983,0.861,0.929,1.118,1.036,0.982,0.941,0.963,1.056 +XM_292035,1.015,0.96,1.134,0.968,0.921,1.019,1.058,0.973,0.907,1.122,1.084,1.248,0.99,0.955,0.953,1.121,0.918,0.963,1.05,1.089,0.984,0.919,0.86,0.924,0.885,0.978,1.076,1.203,1.059,1.062,1.072,1.075,1.011,1.071,1.059,1.003,0.928,0.985,0.927,1.057,1.185,0.971,1.226,0.959,0.903,1.125,1.096,0.813,0.969,0.968,1.089,1.029,1.127,0.867 +XM_292049,0.81,0.969,1.043,1.258,0.983,0.977,0.799,1.061,0.881,0.913,1.079,0.881,1.115,0.781,1.001,1.204,0.801,1.06,0.976,1.06,0.878,1.249,0.839,1.053,1.075,1.252,1.144,0.982,1.179,1.031,0.995,0.897,1.039,1.095,1.256,0.989,1.051,0.827,1.066,1.029,1.225,0.972,0.93,0.868,1.062,1.074,1.025,1.024,0.815,1.229,0.925,1.159,1.03,0.964 +XM_292051,0.982,1.147,1.044,1.021,0.906,0.969,0.97,1.006,0.915,1.007,1.085,0.961,1.072,0.943,1.14,1.07,0.949,1.149,1.023,1.007,1.0,0.998,1.037,0.949,1.158,1.051,0.978,0.873,0.861,1.019,1.041,0.933,1.055,0.954,1.017,0.962,0.972,0.779,0.899,0.845,0.724,0.913,0.983,1.011,1.009,1.125,0.895,0.959,1.081,1.034,0.94,1.03,0.994,1.1 +XM_292056,1.142,1.107,1.045,0.874,0.879,0.999,1.107,1.196,0.948,0.917,0.984,0.9,0.874,1.091,0.835,0.918,1.138,0.869,1.03,0.976,1.038,0.927,0.947,0.979,1.062,1.05,1.02,0.961,0.7,0.964,0.962,0.988,1.019,1.093,0.998,1.187,1.103,0.857,0.987,1.089,0.973,0.967,1.384,1.036,1.02,1.06,1.031,0.939,0.825,0.98,0.953,0.98,0.877,0.88 +XM_292093,1.104,0.936,1.011,1.023,1.053,1.01,1.588,1.447,1.022,1.037,0.952,1.058,0.926,0.948,1.077,1.026,1.034,0.905,0.941,1.044,1.013,1.084,1.083,1.044,0.99,0.884,1.04,0.98,1.084,1.036,1.009,0.878,0.88,1.225,1.136,1.002,1.107,1.108,0.879,0.904,0.991,0.921,1.285,1.088,0.909,1.214,1.051,1.02,0.924,0.827,0.95,1.311,1.067,1.006 +XM_292122,0.98,1.079,0.942,0.943,1.121,1.045,1.03,1.212,1.153,1.084,1.338,1.169,0.812,1.172,1.905,1.188,0.914,1.116,0.943,0.959,1.102,0.969,1.021,0.96,1.045,0.976,0.826,1.164,0.997,1.003,1.037,0.818,1.066,0.97,0.995,0.967,1.021,0.94,1.0,1.029,0.882,1.074,1.148,0.926,0.891,0.918,1.042,1.02,0.991,0.989,0.944,1.116,0.974,1.104 +XM_292136,1.044,1.032,0.958,0.848,1.072,1.07,1.163,0.961,1.155,1.063,0.969,1.061,0.953,1.239,0.921,0.987,0.793,0.886,0.944,1.1,1.042,1.22,0.92,1.024,1.039,1.012,0.979,0.961,1.182,0.84,0.985,1.081,0.979,1.127,1.021,1.086,0.995,0.995,1.01,0.931,0.842,0.999,1.235,0.943,1.113,1.127,0.975,0.937,0.954,0.917,1.11,1.107,0.811,1.038 +XM_292160,1.06,0.924,0.992,0.921,1.073,0.956,0.887,0.953,0.961,0.965,1.065,1.003,1.054,1.193,0.977,0.92,1.022,0.983,0.919,1.04,1.062,0.992,0.881,0.987,0.95,1.013,0.806,0.963,0.847,0.907,1.151,0.863,0.821,1.023,0.949,0.927,0.828,1.027,1.01,1.047,1.066,0.883,1.489,1.003,0.924,0.974,1.113,1.001,1.036,1.024,1.08,0.926,1.14,0.922 +XM_292184,1.072,1.013,0.988,1.028,0.987,0.989,0.966,1.15,1.172,0.883,1.018,1.085,0.974,0.914,0.916,1.156,0.847,0.919,1.236,1.224,1.129,1.038,1.209,1.076,0.991,1.004,0.979,0.963,0.963,0.932,0.919,1.061,1.087,1.085,1.02,1.046,0.991,0.855,0.962,1.031,1.005,1.122,0.823,1.131,1.114,0.995,1.223,1.034,1.056,1.073,1.008,1.041,0.98,1.047 +XM_292193,1.041,0.955,0.979,1.009,0.958,1.001,1.175,1.015,0.973,1.093,0.964,0.974,0.993,0.933,1.01,1.013,1.108,0.766,1.012,1.075,0.908,1.042,0.861,1.104,1.083,1.135,0.892,0.967,1.071,1.047,1.019,1.117,1.061,0.92,1.013,0.829,1.028,0.944,0.943,1.05,0.858,0.978,1.229,1.212,0.987,1.012,0.919,1.016,0.985,0.92,0.975,1.11,0.984,1.081 +XM_292225,0.901,0.956,1.057,0.783,0.928,0.902,1.075,1.303,1.108,1.023,0.896,0.896,0.847,1.004,0.795,0.963,1.02,0.882,1.208,1.076,1.017,0.871,1.087,0.996,1.018,1.11,0.956,1.05,0.867,1.045,1.16,1.081,1.099,0.776,0.94,0.988,1.011,0.92,1.068,1.176,0.922,0.945,0.818,1.029,1.027,1.045,0.919,0.985,1.104,1.082,0.955,1.181,1.253,0.887 +XM_292227,0.973,0.901,1.062,1.009,0.959,0.875,1.126,1.08,0.922,0.853,0.974,1.078,1.086,1.029,1.022,1.111,0.952,1.272,1.01,0.867,1.117,1.02,1.023,0.982,1.139,1.155,1.023,1.016,1.466,1.038,1.027,0.999,0.917,0.941,0.963,0.883,0.96,1.037,0.954,1.009,1.033,0.989,0.924,0.995,0.968,1.023,0.804,0.949,0.898,1.009,1.024,0.838,0.989,0.937 +XM_292250,0.959,0.957,1.029,1.154,1.022,0.977,0.976,0.894,0.998,1.071,1.045,1.079,0.967,0.828,0.981,0.983,1.078,1.024,1.009,0.987,1.039,0.942,1.085,1.009,0.928,1.097,0.933,0.927,1.566,1.036,0.989,0.965,1.071,0.915,1.01,1.07,0.996,0.931,0.941,1.032,0.817,1.052,0.888,1.202,0.961,1.06,1.016,1.062,0.998,0.864,1.071,1.022,0.976,1.054 +XM_292260,0.922,1.027,0.995,1.008,0.967,0.958,1.053,1.016,0.953,1.035,1.022,1.011,0.979,1.103,1.012,1.063,0.885,0.909,0.988,0.949,0.939,0.928,0.991,1.041,0.978,0.929,1.053,0.905,1.187,0.883,0.94,1.144,0.948,0.94,1.157,0.976,0.939,1.074,0.869,0.957,0.943,0.955,0.881,1.073,0.932,1.038,0.944,0.962,1.018,1.039,1.03,1.025,1.061,1.004 +XM_292354,0.891,0.974,1.048,0.981,1.109,1.027,0.957,0.958,0.934,1.053,1.053,1.009,1.073,1.007,1.206,1.096,0.914,1.083,0.927,0.958,0.967,0.963,1.068,1.016,1.105,0.992,0.997,1.035,0.943,1.026,1.116,0.933,0.858,0.931,1.027,1.094,1.015,0.913,0.968,0.998,0.976,0.991,1.314,1.046,0.926,0.941,1.013,1.048,0.897,1.105,1.035,0.975,0.907,1.048 +XM_292384,1.027,1.074,1.007,1.062,0.967,1.055,0.958,0.971,1.028,0.961,0.918,1.026,0.954,0.918,1.093,1.08,0.994,0.955,0.925,0.924,1.058,0.989,0.95,0.945,1.052,1.047,0.994,0.889,0.843,1.007,1.0,1.029,1.14,1.028,0.92,1.01,1.052,1.159,0.919,0.995,0.933,0.957,0.842,1.151,0.904,0.951,0.889,1.011,0.986,0.994,1.042,0.926,1.027,1.103 +XM_292504,0.956,1.001,0.922,0.81,1.239,0.967,0.855,0.967,0.935,0.942,0.998,1.019,1.145,0.912,0.872,0.898,0.996,1.007,1.041,0.987,0.899,0.895,0.889,1.018,1.022,0.975,0.905,0.941,1.142,0.976,0.998,0.879,0.965,1.058,0.964,0.969,1.038,1.069,1.023,0.892,1.077,0.935,1.043,1.038,0.96,1.122,0.924,0.959,1.021,0.904,0.999,0.875,1.021,0.985 +XM_292512,1.097,1.001,1.057,1.074,1.003,1.076,1.359,0.989,1.105,0.982,0.944,0.826,0.999,0.995,1.163,1.041,0.934,1.149,0.9,1.18,1.111,1.029,0.96,1.058,1.078,1.033,0.885,1.128,0.958,1.19,0.795,1.164,1.002,0.956,1.12,0.972,0.964,0.802,0.956,0.915,0.967,1.022,0.867,0.953,0.964,1.068,1.04,1.181,0.997,1.049,0.94,1.106,1.071,0.897 +XM_292562,1.672,0.821,0.852,1.267,1.338,0.949,1.118,1.544,1.203,1.085,1.044,1.118,1.299,1.535,1.551,0.993,0.901,1.093,1.087,0.979,1.514,1.791,1.032,1.351,1.033,1.933,0.909,1.247,1.05,1.077,1.707,0.884,0.78,0.979,3.093,1.082,0.97,1.391,0.993,0.899,1.08,1.016,0.854,0.91,0.956,0.895,0.894,2.271,0.988,1.037,0.903,1.034,1.084,0.95 +XM_292621,0.74,0.898,0.894,0.952,1.184,1.002,0.768,1.031,0.943,1.019,1.105,0.991,0.984,0.841,0.824,0.837,0.82,0.905,0.99,0.942,0.967,1.019,1.145,1.124,0.866,0.955,0.865,0.968,0.855,1.016,1.112,0.789,0.802,1.097,1.072,0.859,1.029,0.888,1.063,1.069,1.135,0.984,1.083,1.048,1.025,0.885,0.923,1.294,1.094,1.015,1.126,1.261,0.887,0.932 +XM_292627,1.032,1.088,1.0,0.847,1.013,1.018,1.123,1.086,0.977,0.876,1.084,1.092,0.903,0.944,0.86,0.953,0.99,0.887,1.137,1.103,1.037,1.051,1.038,0.988,1.076,0.944,1.131,1.067,0.844,1.084,0.973,0.936,1.048,1.085,1.076,0.88,1.13,1.02,0.93,0.969,0.958,0.992,1.045,0.996,0.958,0.905,1.079,1.137,0.867,1.101,0.966,0.969,1.055,0.924 +XM_292673,1.186,1.045,0.99,1.128,0.957,1.033,0.978,1.203,1.027,0.971,1.233,1.103,1.076,1.106,0.876,1.01,0.937,0.927,1.024,0.827,1.111,1.128,0.886,1.056,1.074,0.868,1.06,1.05,0.997,1.036,1.02,0.917,1.13,0.894,0.912,1.025,1.195,0.899,0.894,0.999,0.946,1.19,0.827,1.032,1.075,0.924,1.052,0.907,0.928,1.125,0.99,0.985,0.901,0.882 +XM_292674,0.914,1.018,1.094,0.951,1.112,1.059,0.968,1.017,1.177,0.884,1.029,0.954,0.999,0.963,0.857,0.875,0.98,1.142,1.175,0.961,1.147,0.934,1.031,0.976,0.957,1.073,0.949,1.019,1.216,1.069,1.11,0.84,0.763,0.942,1.037,0.995,1.009,0.907,1.018,1.163,0.859,0.993,1.123,0.936,1.142,0.913,1.082,1.031,0.862,1.044,0.998,1.011,1.162,1.004 +XM_292678,0.963,0.927,1.046,0.861,1.048,1.143,0.923,1.262,1.109,1.038,0.908,0.994,0.943,0.935,1.187,0.851,1.005,1.036,0.988,1.007,1.092,0.895,0.942,1.001,1.3,1.059,0.972,0.982,1.166,1.102,0.998,1.058,0.876,1.043,0.987,0.893,1.05,1.081,1.028,0.949,0.883,1.022,1.131,0.924,0.982,1.054,1.042,1.075,1.0,0.991,0.895,1.034,1.015,0.998 +XM_292717,0.967,0.983,1.069,0.95,1.096,1.039,0.939,0.947,0.926,1.058,1.03,0.905,0.946,0.964,0.916,0.898,1.045,0.976,1.093,1.011,1.11,1.004,1.072,1.02,1.057,0.993,1.025,1.013,1.019,0.993,0.971,1.0,1.155,0.959,1.041,1.233,1.05,1.017,0.977,0.899,0.919,0.882,0.882,0.967,0.956,0.953,1.003,0.99,0.994,1.075,1.006,1.028,1.087,0.94 +XM_292729,1.042,1.0,0.936,1.108,1.043,0.938,1.066,1.034,0.959,1.045,1.018,0.941,1.015,1.145,0.824,1.002,1.081,0.941,1.04,1.14,1.119,1.053,0.985,1.026,1.062,0.951,0.987,0.872,0.973,0.939,0.961,1.044,0.999,0.898,1.067,1.058,1.002,1.075,0.953,0.918,0.902,0.99,1.056,0.992,0.969,0.976,1.011,1.082,0.968,0.987,1.034,1.063,1.075,1.188 +XM_292740,0.896,0.915,0.827,1.07,0.873,0.938,1.119,0.962,0.997,0.979,1.015,0.99,1.023,1.003,1.123,1.078,0.934,1.041,1.031,1.082,0.964,0.937,1.055,1.088,1.018,0.913,1.008,0.784,1.018,1.033,1.026,0.931,1.147,0.931,0.939,1.133,1.04,0.968,0.919,0.922,0.975,1.09,0.736,1.139,0.917,0.914,1.013,0.997,0.861,1.02,0.881,0.99,1.287,1.161 +XM_292745,5.974,0.451,4.179,2.257,4.159,0.476,0.521,2.466,4.605,2.319,0.473,1.569,4.204,4.137,2.539,1.008,5.73,1.947,6.742,0.575,3.457,2.166,0.478,3.257,0.493,7.708,2.517,3.191,0.584,0.485,3.943,0.446,1.862,0.476,7.733,0.578,0.509,2.512,0.46,0.49,4.388,0.361,0.416,0.484,3.593,0.447,2.183,5.025,0.609,5.16,0.786,1.158,3.923,0.726 +XM_292778,0.976,1.094,0.948,0.962,0.891,1.061,1.086,1.097,0.849,0.889,0.999,1.072,0.898,1.096,0.99,0.845,1.062,1.042,1.09,1.063,0.965,0.965,0.959,1.086,0.964,1.072,0.988,1.177,1.024,1.001,1.042,0.85,0.876,0.864,0.977,1.002,1.148,1.013,0.966,1.007,0.959,0.989,0.99,1.175,0.99,1.094,0.989,0.953,0.981,0.994,1.125,0.973,0.989,0.968 +XM_292779,1.013,0.95,1.052,1.082,1.017,1.068,0.964,0.921,0.94,0.89,1.113,1.075,0.942,0.898,0.997,1.053,1.064,1.049,1.042,0.849,0.977,1.06,0.913,0.926,0.909,1.037,0.989,1.032,0.908,1.116,1.145,1.087,1.153,1.036,0.998,0.94,1.058,1.094,1.058,1.126,0.917,1.002,0.932,1.028,1.005,0.888,1.059,1.082,1.043,0.816,1.02,1.009,0.936,0.866 +XM_292785,1.157,1.071,0.926,1.0,0.986,1.0,1.135,1.022,0.856,1.156,1.144,0.976,1.01,0.837,1.097,0.97,0.962,0.965,1.033,1.046,1.198,1.063,1.065,0.958,1.073,0.978,0.991,1.179,0.829,1.042,1.002,0.925,0.991,1.036,0.986,0.889,0.988,0.889,1.014,1.077,0.927,0.985,1.043,0.948,1.061,0.887,0.958,0.941,0.895,1.03,1.055,1.086,0.956,0.98 +XM_292803,1.192,0.952,1.174,0.831,0.849,1.123,0.906,0.898,1.047,1.055,0.979,0.97,1.062,0.906,1.056,0.906,1.258,0.922,0.998,1.008,1.002,0.931,1.02,1.052,1.115,0.917,0.866,1.055,0.693,1.033,1.016,1.022,1.117,1.138,1.091,0.785,1.026,0.842,0.921,1.064,1.016,0.945,0.985,0.974,1.147,1.033,0.879,1.123,0.948,0.913,1.054,0.991,1.073,0.971 +XM_292813,0.941,1.055,1.137,0.905,1.048,1.267,0.88,0.898,1.132,1.026,0.878,0.807,0.91,0.966,1.05,1.115,1.03,0.936,1.037,1.127,0.891,0.913,1.119,1.001,0.899,0.892,1.045,0.998,0.857,1.266,1.2,1.443,1.198,1.229,0.935,0.827,0.945,1.083,0.912,0.929,0.993,1.145,0.89,0.85,0.969,0.881,1.077,0.916,0.886,0.799,0.934,0.922,1.097,1.323 +XM_292819,0.987,1.214,1.096,0.992,1.032,1.016,1.01,0.872,0.959,1.076,1.23,1.062,0.901,0.81,0.847,1.113,0.887,1.149,0.907,1.134,0.948,0.952,0.935,0.935,0.918,1.119,0.948,0.909,1.359,1.167,1.047,0.87,1.045,1.097,1.021,1.076,1.19,1.044,1.119,1.047,0.969,1.006,1.257,0.963,1.144,1.008,0.928,1.029,1.2,1.098,1.094,0.978,0.965,0.904 +XM_292820,0.918,0.921,1.037,0.961,0.878,0.984,1.046,1.072,0.967,1.116,1.062,0.886,0.83,0.894,0.834,1.156,1.037,1.033,0.963,1.016,0.883,1.006,1.004,1.165,0.917,0.834,1.025,0.877,1.033,1.022,1.127,0.959,1.103,1.01,1.048,1.044,0.909,1.112,1.029,0.974,0.968,0.91,0.925,0.797,0.945,1.054,1.091,0.995,1.093,1.001,1.019,1.092,0.967,0.917 +XM_292824,2.891,0.552,3.083,1.232,5.325,0.563,0.645,4.26,4.773,1.53,0.528,4.359,3.443,2.723,2.992,1.97,4.686,2.06,4.228,0.687,1.206,2.268,0.516,3.253,0.64,3.6,2.389,2.062,0.632,0.561,4.244,0.483,1.95,0.553,7.626,0.566,0.573,3.144,0.58,0.58,4.013,0.635,0.543,0.537,2.339,0.61,3.399,5.607,0.806,1.838,1.111,1.394,2.913,1.465 +XM_292832,1.04,1.162,0.96,1.01,0.953,1.043,0.893,1.038,1.116,1.068,0.833,0.977,0.914,1.087,1.169,1.019,1.018,1.094,1.039,0.941,1.073,1.068,0.948,1.031,0.967,0.885,0.946,1.023,0.768,0.961,1.111,0.914,0.938,0.967,1.035,1.061,0.922,0.956,1.112,1.064,0.891,1.155,0.939,0.999,0.992,1.125,1.181,1.0,0.847,0.926,1.054,1.326,1.213,0.959 +XM_292850,0.828,0.87,1.032,1.207,0.901,0.964,0.928,1.055,0.919,0.961,1.12,1.072,1.189,1.26,0.857,1.345,0.974,0.898,1.135,0.952,0.891,1.124,0.971,1.337,1.05,1.025,0.942,0.75,0.833,0.966,1.056,1.166,0.875,0.934,1.179,1.076,0.988,1.155,0.914,0.959,1.127,1.178,0.718,1.161,1.026,0.927,0.982,1.037,1.133,1.263,1.044,1.127,0.999,0.85 +XM_292873,0.616,1.023,2.43,0.603,1.628,1.387,0.572,1.445,1.952,0.844,0.768,1.629,0.893,1.076,1.457,1.669,1.139,1.149,0.963,1.488,0.578,1.971,1.321,1.432,0.663,0.846,1.508,1.806,0.59,0.895,1.72,1.128,2.245,1.12,0.497,0.643,0.718,2.285,1.081,0.778,1.706,1.156,0.528,0.699,0.971,0.974,1.111,1.28,0.955,0.885,1.375,0.652,0.615,1.895 +XM_292886,0.993,0.954,0.946,0.951,0.951,1.018,1.007,1.242,1.083,0.976,0.987,1.007,1.052,0.843,1.07,0.972,1.056,1.042,1.004,0.841,0.986,1.028,0.955,1.002,1.004,1.032,0.963,1.047,1.281,1.118,0.955,1.033,0.992,1.0,0.997,1.016,0.932,1.094,1.114,0.996,0.893,0.994,1.048,1.057,0.848,0.905,0.991,0.963,1.0,1.144,0.986,0.988,1.007,1.042 +XM_292889,0.994,0.979,1.107,1.107,1.049,1.053,0.978,1.118,0.851,0.927,1.007,1.055,1.074,0.966,0.987,1.002,0.982,1.0,0.987,1.053,1.148,0.882,1.044,1.018,1.008,1.058,1.047,0.928,0.932,1.113,1.049,1.055,0.963,0.935,0.977,1.03,1.036,1.122,1.174,0.933,0.916,0.966,1.027,1.006,1.042,0.893,0.916,0.948,1.088,0.981,0.997,1.111,1.017,0.871 +XM_292895,1.096,0.999,1.017,1.005,0.937,0.93,1.267,0.979,0.955,1.037,1.011,0.947,0.971,1.215,1.15,1.042,1.083,0.929,1.034,1.112,0.957,1.0,0.892,0.937,0.943,0.91,0.91,1.033,1.332,1.006,1.09,0.849,0.978,1.013,1.26,1.0,0.847,0.992,0.938,0.862,1.02,1.029,1.034,0.837,0.928,0.955,1.05,1.101,1.054,0.794,1.045,0.863,0.981,0.869 +XM_292942,0.983,0.962,1.103,0.803,1.016,0.992,0.844,1.198,1.204,1.004,0.909,0.986,1.14,1.023,0.868,1.038,1.048,0.893,0.984,1.25,0.936,1.039,0.95,0.995,0.945,1.052,0.976,0.977,0.954,1.003,1.124,1.109,1.088,1.08,0.881,1.211,1.051,1.019,1.017,0.929,0.994,0.914,1.142,0.878,1.03,0.997,1.019,0.986,0.896,0.998,0.876,1.072,1.125,0.932 +XM_292958,1.05,1.001,0.935,1.173,1.054,0.944,0.95,0.937,0.982,1.07,1.001,1.022,1.01,1.071,0.709,0.929,0.938,0.86,0.986,1.111,0.829,0.922,0.964,1.083,0.96,0.899,0.919,1.095,0.805,1.02,0.885,1.047,0.864,0.872,1.007,1.113,0.889,1.0,1.081,0.896,1.011,0.804,1.186,1.05,1.063,0.934,0.954,1.156,0.908,1.221,0.995,1.033,1.025,0.968 +XM_292963,0.913,0.697,1.838,0.797,1.096,1.039,0.789,0.831,1.119,1.164,0.73,0.795,1.047,0.802,0.897,1.766,1.487,1.089,0.719,1.049,0.578,1.04,1.165,1.206,0.63,0.565,2.152,0.946,0.542,1.01,1.293,1.567,1.951,1.042,0.556,0.586,0.785,1.298,2.556,0.805,1.032,0.736,0.715,0.85,1.45,0.753,1.162,1.0,1.526,1.064,1.353,0.886,0.659,1.334 +XM_292968,1.224,0.966,0.973,0.895,0.999,1.014,1.058,0.985,0.998,0.892,0.969,0.904,1.188,0.968,1.002,0.946,0.984,0.999,1.126,0.972,1.028,1.124,1.086,0.968,1.123,0.889,1.012,1.006,0.984,0.975,1.014,0.949,1.061,1.109,1.001,1.035,0.898,1.164,0.906,1.025,0.997,1.009,0.864,1.024,0.907,0.934,1.023,1.015,0.909,0.984,0.995,1.092,1.102,0.997 +XM_292982,0.975,0.912,1.246,0.745,1.04,1.113,0.843,0.914,1.063,1.252,0.864,0.805,0.969,0.857,1.439,1.444,1.207,1.187,0.788,0.764,0.545,0.963,0.981,1.142,0.825,0.975,1.282,0.891,1.166,1.031,1.339,1.111,1.256,1.001,1.054,0.65,0.963,1.288,2.505,1.041,1.042,0.95,1.026,0.809,1.386,0.972,1.07,0.939,1.254,1.048,1.142,0.761,0.846,1.108 +XM_292989,0.933,0.949,0.972,1.0,1.057,1.107,1.094,0.97,1.098,1.085,1.055,1.108,0.84,0.926,0.868,1.017,0.98,1.026,0.882,1.106,1.185,1.098,0.883,1.014,0.987,0.988,0.857,1.068,0.894,1.048,0.974,1.022,0.966,1.086,1.162,1.048,0.952,1.042,0.978,1.013,1.009,0.947,1.052,0.967,1.13,0.918,0.933,0.949,0.946,0.922,1.034,0.901,0.935,1.103 +XM_293026,0.755,0.876,1.187,0.732,0.946,1.21,0.892,0.958,1.174,1.055,0.952,0.913,0.964,0.918,0.973,1.488,1.089,0.985,1.16,1.023,0.819,1.153,1.104,1.462,1.011,0.797,1.513,1.067,0.653,0.971,1.376,1.054,3.102,1.137,0.886,0.872,1.006,1.253,1.397,0.862,1.055,1.045,0.761,0.805,1.129,1.007,0.956,0.988,1.304,0.956,1.044,0.902,0.726,1.226 +XM_293029,1.046,0.936,1.02,0.939,0.954,0.92,1.019,0.976,0.992,0.908,1.034,1.141,1.102,0.831,0.866,0.942,1.062,1.074,0.935,0.871,1.07,0.997,1.042,0.982,0.946,1.077,1.039,1.095,0.897,0.856,1.026,1.05,1.061,0.892,1.001,0.938,0.858,0.845,1.031,1.186,0.983,0.967,1.03,0.863,0.917,0.974,1.052,0.942,0.95,1.032,0.971,0.995,1.006,1.088 +XM_293032,1.007,0.911,0.979,0.997,0.886,1.042,0.941,0.999,1.043,0.986,0.912,0.94,1.001,0.929,1.008,0.949,1.013,1.042,0.955,0.97,0.947,0.905,1.05,1.068,0.947,0.942,1.09,1.008,1.02,1.077,1.175,0.965,1.032,1.029,0.974,1.014,1.076,1.006,1.173,0.956,0.972,0.87,0.932,1.117,1.007,1.026,0.963,1.011,0.896,0.887,1.044,0.926,0.955,1.025 +XM_293034,0.916,1.08,0.993,1.048,0.999,1.087,0.802,0.943,0.984,0.869,1.064,0.934,0.972,1.092,0.86,1.053,1.062,0.999,0.802,0.974,1.005,1.024,1.032,0.935,1.027,0.871,1.09,1.078,0.784,0.988,0.923,0.934,1.087,1.094,1.028,0.99,1.042,0.958,1.033,0.983,0.898,0.956,0.882,0.83,0.993,0.991,1.004,0.974,0.757,1.14,1.005,1.03,1.119,0.961 +XM_293042,1.028,1.023,1.049,1.029,1.101,0.899,0.914,0.96,0.931,1.143,1.215,1.03,0.957,0.906,0.963,0.947,0.93,1.084,0.918,0.948,1.0,0.963,0.946,0.985,1.08,0.95,0.924,1.095,0.918,0.987,1.012,1.061,0.997,1.0,1.003,1.153,0.947,0.878,1.083,1.036,1.008,1.082,1.058,0.871,0.967,1.125,0.887,1.196,0.995,0.936,0.917,1.006,0.966,0.984 +XM_293092,0.931,0.894,1.025,0.927,1.03,0.953,1.175,0.955,0.866,0.941,0.944,1.058,1.002,0.971,1.003,1.215,0.993,0.812,0.972,0.959,0.988,0.946,0.94,1.121,1.063,0.962,1.075,1.056,0.717,1.049,1.112,1.194,1.048,0.907,0.968,1.038,1.123,1.059,1.01,0.958,1.003,0.907,0.816,0.904,1.023,1.168,1.054,1.059,0.973,0.982,1.072,0.877,0.952,0.92 +XM_293104,0.816,0.999,0.979,1.091,0.894,1.043,1.532,1.332,1.193,0.982,0.939,0.94,1.016,1.187,0.875,1.423,1.112,0.858,0.873,0.964,1.143,1.053,0.862,0.829,0.962,0.876,0.857,0.967,0.815,1.099,0.882,1.163,1.237,0.962,1.063,1.163,1.106,0.973,0.941,0.954,1.189,0.973,2.023,0.719,1.154,0.985,0.895,1.039,1.096,0.987,1.267,1.188,1.159,1.238 +XM_293106,1.052,1.042,0.959,0.923,1.223,1.0,0.984,1.441,1.169,0.926,1.094,1.025,0.982,1.107,1.161,1.156,1.133,0.974,0.872,0.969,1.075,0.992,1.221,0.929,1.054,1.097,0.894,1.269,1.529,1.047,1.015,0.981,1.028,0.882,1.055,1.03,0.9,1.061,0.9,0.95,0.978,0.992,1.221,0.923,0.948,0.976,1.061,0.89,0.99,0.975,0.948,1.035,0.812,0.955 +XM_293160,0.987,1.122,0.927,1.036,0.858,1.035,0.99,1.092,1.125,0.916,1.084,1.025,0.918,1.211,1.41,0.97,1.033,1.026,0.931,1.034,1.038,0.993,1.007,1.074,0.956,0.819,1.238,1.024,0.665,1.072,1.053,0.887,1.216,0.927,0.963,1.036,1.041,1.009,1.033,1.057,0.979,1.302,0.857,0.885,0.985,0.896,0.923,1.047,0.945,0.812,1.083,0.944,1.205,0.974 +XM_293177,1.068,0.916,0.949,1.025,0.864,0.975,0.821,0.96,0.915,1.073,0.991,1.06,0.868,1.135,0.882,1.024,0.952,0.994,0.896,0.985,1.105,1.077,1.079,1.071,1.135,1.035,0.893,1.021,1.47,1.004,0.999,1.043,1.016,0.881,1.09,0.946,0.975,1.083,1.083,0.94,1.068,1.118,0.913,1.075,1.134,1.069,0.904,0.964,1.009,0.976,1.1,0.986,1.056,0.917 +XM_293220,0.965,1.03,1.049,0.998,0.895,1.034,0.858,0.835,1.079,0.88,1.016,1.047,0.898,0.813,0.888,0.966,0.98,1.163,1.015,1.15,1.196,0.984,1.063,0.981,0.886,1.026,0.975,1.007,0.807,1.026,1.081,0.955,0.94,0.665,0.991,0.928,1.039,1.127,1.109,0.977,0.873,1.126,0.818,0.812,0.948,1.011,1.033,0.94,0.989,0.852,1.068,0.929,1.187,1.318 +XM_293284,1.096,1.105,1.003,1.076,0.947,0.917,0.937,1.094,0.943,0.904,1.024,1.03,0.913,0.873,1.144,0.859,0.908,1.171,1.13,1.155,1.097,0.957,0.995,1.064,0.929,1.036,0.867,1.035,0.772,0.933,0.925,1.057,1.06,1.002,1.016,0.961,0.943,1.006,1.129,1.033,1.069,0.961,0.805,1.239,0.923,1.391,1.078,0.9,0.954,1.107,0.894,0.951,1.174,1.028 +XM_293293,1.058,1.051,1.013,1.19,1.028,1.022,1.098,1.087,1.001,1.044,1.078,0.907,0.915,1.084,0.849,1.058,1.003,1.029,0.892,0.989,0.939,1.06,1.099,0.997,1.026,0.983,1.076,1.032,0.958,1.001,1.032,1.117,0.929,1.014,0.919,1.013,0.874,0.985,0.826,1.07,1.039,0.963,0.944,1.066,0.951,1.009,0.892,0.971,0.973,0.93,1.092,1.163,1.115,0.988 +XM_293320,1.003,1.123,1.088,1.089,1.059,1.03,0.984,0.968,0.897,1.125,1.022,1.044,0.869,1.021,0.991,1.217,0.934,0.976,1.07,0.977,0.859,1.077,1.069,1.102,0.929,0.913,0.999,0.986,1.105,1.012,0.914,1.015,1.067,1.003,1.075,0.95,0.944,0.924,1.059,0.956,0.985,0.896,0.913,1.0,0.937,0.971,0.992,1.039,0.869,0.944,0.989,1.172,1.172,0.949 +XM_293325,1.01,1.116,1.011,1.0,1.106,0.942,0.973,0.95,0.959,0.941,0.89,0.915,1.224,0.961,0.87,1.083,0.953,1.156,1.08,0.95,0.959,0.993,0.881,0.993,0.962,1.019,0.918,0.933,0.97,0.964,0.936,1.003,1.016,1.06,0.959,1.007,0.848,0.969,0.947,0.98,1.036,1.229,0.846,1.159,1.04,0.965,1.124,1.014,0.987,1.065,1.088,0.961,1.189,1.048 +XM_293334,1.173,0.964,1.044,0.998,0.828,1.18,0.919,0.96,0.91,0.928,0.971,1.061,0.974,1.011,1.029,1.007,0.948,0.976,1.175,0.903,1.06,0.968,0.968,1.042,1.034,1.001,1.051,1.106,0.911,0.95,1.004,0.911,0.933,1.111,1.056,0.994,1.248,0.969,0.902,1.147,1.034,1.032,1.031,1.132,1.074,1.096,1.067,0.949,0.986,0.999,1.139,1.156,0.963,0.936 +XM_293341,1.047,0.966,1.01,1.147,1.089,1.189,1.0,0.859,0.993,1.07,1.002,0.935,0.95,1.237,0.981,1.101,1.156,0.921,1.101,0.795,1.086,0.883,0.937,0.995,1.07,0.912,1.088,1.065,0.971,0.92,1.101,0.874,1.055,0.936,0.824,1.008,0.932,1.101,1.063,0.997,0.992,1.01,1.004,1.101,0.885,0.986,1.119,1.015,0.981,1.108,0.968,0.817,0.826,1.025 +XM_293352,1.006,1.129,0.967,1.184,1.064,1.083,0.874,1.021,0.928,0.957,1.182,0.861,1.076,0.85,0.957,1.065,0.992,0.913,1.065,1.01,0.915,0.985,0.981,0.988,0.972,1.009,1.103,1.045,0.733,0.957,0.958,1.021,1.074,0.984,1.083,1.046,0.988,0.968,1.063,1.021,0.895,0.947,0.989,1.119,1.095,1.009,1.011,0.987,0.976,1.011,1.102,1.085,0.993,0.915 +XM_293354,1.011,0.935,1.007,1.137,0.89,0.957,0.99,1.022,1.046,1.106,0.969,1.02,0.978,0.82,1.119,1.121,1.008,1.059,0.945,1.033,1.169,1.006,0.924,0.933,0.967,0.977,1.033,1.089,1.118,0.975,1.04,0.918,1.016,0.878,0.944,0.959,1.107,1.027,1.028,0.892,0.979,0.943,1.038,1.117,0.951,0.893,1.093,0.938,1.05,0.945,0.759,1.133,1.008,0.866 +XM_293366,0.853,1.006,0.96,1.146,0.956,0.94,0.925,0.884,1.038,0.936,0.942,1.024,1.063,0.922,0.873,0.922,1.088,0.964,0.94,1.024,1.25,1.016,0.933,1.035,0.95,1.003,0.908,1.07,0.928,0.92,0.961,0.999,1.055,1.196,1.024,1.009,0.999,0.916,0.921,1.14,1.018,0.893,0.891,1.062,1.018,0.947,1.041,1.01,0.974,1.011,0.892,1.059,1.001,0.962 +XM_293380,1.086,0.964,1.01,1.016,1.142,0.953,1.15,1.081,0.934,1.004,0.993,0.944,0.963,1.125,1.026,1.056,0.974,1.058,1.059,0.967,1.044,1.065,0.958,1.063,1.08,0.892,1.114,0.914,1.054,0.869,0.968,0.926,1.091,0.851,0.826,1.105,1.035,0.971,1.18,0.976,0.939,0.981,1.27,0.92,0.881,0.89,1.172,1.009,1.065,0.879,0.941,0.957,0.891,0.993 +XM_293396,0.924,1.012,0.797,1.112,0.747,1.029,0.997,1.002,1.194,0.984,0.909,0.964,0.998,1.171,0.692,1.08,0.969,0.952,1.059,1.15,1.061,0.826,0.85,1.12,0.96,1.162,1.053,1.331,1.62,0.953,1.268,1.172,1.025,1.085,1.484,0.983,0.972,0.996,1.074,1.019,0.983,0.879,0.828,1.157,0.82,0.951,1.206,0.896,0.937,1.201,1.103,0.814,0.94,0.992 +XM_293398,0.895,1.051,0.986,0.967,0.935,0.953,0.988,0.995,0.967,1.075,1.036,1.0,1.231,1.053,1.033,1.034,1.025,0.99,1.03,1.011,1.164,1.051,0.929,1.006,0.899,0.989,0.976,1.09,1.139,1.03,0.904,0.975,0.948,1.017,0.951,1.0,0.907,1.035,1.027,1.032,0.941,0.91,1.08,0.947,0.971,1.03,1.015,1.003,0.877,0.882,1.13,0.978,1.08,0.957 +XM_293401,0.958,1.001,1.131,0.95,0.983,0.994,0.87,1.097,1.064,1.011,1.042,1.007,0.951,1.207,0.937,0.939,0.865,1.071,1.07,0.997,1.095,1.157,0.981,0.984,1.06,0.986,0.96,1.022,1.18,0.94,1.016,1.099,1.072,0.835,0.993,1.143,1.103,0.893,0.992,0.961,1.161,0.957,1.072,1.172,1.161,0.98,1.033,0.984,0.915,1.071,0.999,1.071,0.971,1.054 +XM_293405,0.955,0.997,1.072,1.008,1.055,0.986,0.819,0.893,1.016,1.033,0.942,1.035,1.028,1.027,0.895,1.087,1.009,1.077,1.075,0.901,0.968,0.989,1.125,1.074,1.028,1.133,0.933,1.088,0.891,0.93,1.048,0.879,1.003,0.977,0.888,0.951,0.966,0.924,0.956,0.937,0.986,1.132,0.811,1.084,0.951,1.005,0.988,1.039,1.176,0.901,1.024,1.157,1.043,1.103 +XM_293407,1.053,1.132,0.929,1.057,1.02,1.118,0.988,1.13,1.017,0.994,1.085,0.998,0.943,0.906,1.047,0.897,1.013,0.978,0.99,0.836,0.933,1.013,0.952,1.052,0.977,1.019,1.095,1.019,0.85,1.029,1.129,0.877,0.981,1.123,0.863,0.985,1.06,1.117,1.04,0.974,1.022,1.019,0.969,0.98,1.028,0.914,1.129,0.978,0.996,0.94,0.963,0.908,1.114,1.024 +XM_293416,1.032,0.92,0.942,0.973,0.823,1.223,0.968,0.844,0.814,0.916,1.138,1.057,0.929,0.995,1.072,1.071,0.991,0.954,1.045,0.869,1.21,0.952,1.052,0.794,0.965,1.125,0.86,1.034,1.151,1.065,0.945,0.877,1.178,1.12,0.94,1.048,1.064,0.914,0.94,1.021,0.8,1.051,1.098,1.15,1.012,1.029,1.093,0.966,1.043,0.982,0.98,0.938,0.936,1.031 +XM_293529,0.904,1.013,1.078,0.935,1.049,1.341,0.837,0.988,0.95,0.965,1.214,0.981,0.847,0.941,1.325,1.219,0.968,0.972,0.997,1.083,0.998,0.984,1.145,0.905,0.945,0.933,0.973,0.891,0.811,0.951,1.008,1.219,1.04,1.056,0.962,1.169,0.908,1.167,1.264,1.2,0.824,1.142,1.039,1.052,0.971,1.291,1.014,1.023,1.141,0.919,1.264,0.899,0.907,0.993 +XM_293577,0.926,1.094,0.912,0.871,1.537,0.998,0.931,0.984,1.117,1.051,1.126,1.118,1.177,1.004,0.861,0.839,1.109,1.007,1.186,1.2,1.005,1.052,1.03,1.137,1.005,0.939,1.09,1.247,0.817,0.999,0.967,1.009,0.937,0.954,1.072,0.954,0.807,0.982,0.927,0.97,0.893,0.925,0.904,0.944,1.219,1.16,1.106,1.059,0.933,1.039,1.094,0.907,1.115,1.008 +XM_293580,1.103,0.877,1.058,1.175,0.856,1.075,1.042,1.308,0.935,1.132,0.902,1.042,0.884,1.033,0.904,1.037,0.957,1.083,1.017,1.023,1.107,1.078,1.063,1.029,1.192,1.029,0.975,1.082,1.123,1.12,0.987,0.952,0.954,1.1,0.997,1.079,1.069,1.059,0.996,1.144,1.022,0.947,1.01,1.042,1.084,1.136,0.891,0.98,0.988,1.133,0.997,1.055,0.979,1.035 +XM_293599,0.937,0.918,1.132,1.067,0.973,0.999,0.989,0.927,0.907,0.926,1.06,1.046,1.17,0.985,1.033,0.927,0.902,1.038,0.923,1.041,0.911,0.954,1.028,1.046,0.917,0.772,0.924,0.855,1.009,1.208,0.924,1.015,1.078,1.251,0.995,0.957,1.052,1.001,0.838,0.877,0.915,0.917,0.974,0.895,0.873,1.13,1.15,1.009,1.027,1.163,0.922,1.08,0.91,0.977 +XM_293670,2.412,0.423,2.362,1.066,3.253,0.673,0.346,2.98,3.741,1.98,0.729,2.309,2.157,2.399,2.209,1.539,2.303,1.597,3.571,0.624,1.51,1.757,0.48,2.693,0.234,3.51,1.738,3.935,0.0388,0.46,3.661,0.668,1.396,0.754,4.835,0.243,0.653,2.458,0.51,0.475,2.466,0.688,0.0429,0.648,2.315,0.497,1.762,2.341,0.633,2.242,1.013,0.683,2.507,0.638 +XM_293680,1.038,0.96,0.861,0.803,1.16,0.906,0.988,1.03,0.892,0.877,0.973,1.108,1.079,0.909,0.966,1.023,1.024,1.211,1.039,1.171,1.106,1.03,0.861,1.067,1.023,1.094,1.041,1.012,0.948,1.152,1.045,0.851,0.939,0.899,0.989,0.967,0.968,0.948,0.985,1.199,0.872,1.013,0.908,1.114,0.955,1.141,1.076,0.967,0.975,1.079,1.09,0.814,1.116,0.843 +XM_293687,1.067,0.954,0.964,1.052,1.068,1.135,1.078,1.145,0.993,1.123,1.13,1.025,0.992,0.881,0.764,0.985,1.028,1.123,0.966,0.804,0.901,1.072,1.056,0.942,0.96,1.062,1.234,1.098,0.934,1.043,0.955,0.923,0.893,1.053,1.021,0.936,0.955,1.173,0.97,0.996,0.982,0.985,1.154,1.024,1.126,1.026,0.988,0.954,0.943,0.941,0.997,0.905,0.881,1.086 +XM_293745,0.998,0.89,0.979,1.053,0.959,0.929,1.038,0.964,1.11,1.05,1.016,1.055,0.762,0.989,0.892,0.967,0.981,1.155,0.984,0.845,1.08,0.829,1.182,0.825,1.104,1.047,1.008,0.905,0.909,1.072,0.963,0.914,1.041,1.021,1.07,1.039,1.141,1.111,0.867,1.01,1.001,1.101,0.995,1.013,1.006,0.926,0.818,1.061,1.017,0.936,0.91,0.895,0.964,0.943 +XM_293802,1.003,0.921,0.913,1.026,0.938,1.119,0.996,1.019,0.984,1.172,0.842,1.102,0.91,1.091,1.042,1.097,0.942,1.023,1.096,1.021,1.016,0.995,1.083,0.932,0.937,1.073,1.0,0.95,1.005,1.042,0.972,1.003,0.914,0.955,1.017,0.962,1.131,1.136,0.914,0.947,1.061,0.968,1.012,0.954,1.085,0.979,1.058,1.028,0.987,1.059,1.046,0.893,1.16,0.897 +XM_293828,1.099,1.006,0.985,0.909,1.161,0.941,0.999,0.998,1.104,0.993,1.065,1.031,1.054,1.006,0.922,1.03,0.981,1.204,0.931,0.898,0.959,0.943,1.088,1.021,0.966,0.942,1.072,1.061,0.923,0.982,1.132,0.974,1.06,1.093,1.005,1.087,1.08,1.074,1.085,1.017,1.275,0.971,0.901,0.994,1.134,1.057,0.913,0.971,1.001,0.854,0.957,0.967,0.953,0.99 +XM_293875,1.078,1.004,0.957,0.93,0.927,0.966,0.892,1.064,1.051,0.9,0.981,1.089,0.919,1.354,1.065,0.979,1.075,0.915,1.039,0.877,1.121,1.003,0.987,0.89,1.179,1.019,0.845,1.008,0.955,1.019,1.076,1.096,0.855,1.066,0.885,1.069,0.997,1.01,0.957,1.025,1.008,0.862,1.057,1.062,0.972,1.013,1.02,0.915,0.843,0.861,0.999,0.898,1.077,0.989 +XM_293893,1.024,0.933,0.995,1.142,1.203,0.966,0.973,0.963,0.854,1.107,1.049,1.195,1.035,0.996,0.953,0.793,0.856,1.152,1.009,1.189,1.184,0.895,0.957,1.108,0.869,1.09,1.158,1.005,1.033,0.755,0.869,0.962,0.891,1.144,1.161,1.0,1.005,1.018,1.076,1.002,0.967,1.006,1.034,1.151,1.138,1.159,1.087,0.962,0.906,1.03,1.149,1.071,1.222,1.134 +XM_293903,1.137,1.231,0.924,1.109,0.966,0.879,1.065,1.113,1.029,0.961,1.087,1.138,0.909,0.947,0.948,1.126,1.107,1.005,1.255,1.125,0.998,0.832,1.138,1.002,1.111,0.887,1.048,1.068,1.066,1.001,0.945,1.126,0.997,1.0,1.048,0.987,0.972,1.038,1.036,0.934,1.241,1.051,1.044,1.112,0.914,1.121,1.084,0.922,0.903,0.969,0.976,0.926,0.944,0.893 +XM_293911,1.139,0.96,1.031,1.167,1.126,0.945,1.096,1.098,0.968,1.07,1.08,1.038,1.122,0.852,1.12,1.159,0.973,1.02,1.05,1.038,1.057,0.972,0.915,0.873,0.962,0.94,1.019,1.002,0.789,0.938,1.102,0.959,0.812,0.834,1.081,1.125,1.006,1.101,0.968,1.174,0.917,0.981,1.129,0.829,0.907,0.777,1.11,0.985,1.001,1.052,1.118,0.924,1.025,1.039 +XM_293918,1.161,0.866,1.112,1.123,0.802,0.893,1.047,1.051,0.985,0.995,1.179,1.041,0.956,0.962,0.831,1.147,0.818,1.061,1.206,1.158,0.824,1.078,0.965,0.979,0.93,1.059,0.894,0.966,0.861,0.98,1.0,0.998,1.109,1.008,1.045,0.942,1.091,1.101,0.955,0.932,1.039,1.001,0.951,1.157,1.053,1.116,0.863,1.1,1.001,1.111,1.04,1.054,1.084,0.906 +XM_293924,1.036,1.076,0.935,0.935,0.787,0.923,0.888,0.872,0.863,1.015,1.037,0.988,1.073,0.944,1.063,1.118,1.01,0.897,0.816,0.798,1.131,0.9,1.166,0.955,1.28,1.231,1.012,1.005,1.13,0.914,0.957,1.003,1.16,0.924,1.048,1.115,0.898,1.055,0.88,1.002,0.862,0.928,1.025,0.895,0.91,0.895,1.087,1.012,1.109,0.92,0.894,1.001,0.93,0.841 +XM_293937,0.988,1.084,0.969,0.955,0.821,1.125,0.963,1.019,1.238,0.966,1.093,1.018,0.878,1.14,0.892,0.867,0.906,0.953,1.163,0.961,1.025,1.161,1.026,1.104,0.96,1.096,1.04,1.081,0.867,1.039,0.973,0.971,0.963,1.144,0.966,1.073,1.08,1.0,0.975,1.119,0.919,0.939,0.968,0.947,0.891,1.0,1.066,1.164,0.98,0.951,1.014,0.929,0.96,0.944 +XM_293971,0.943,0.998,0.924,1.102,0.934,1.04,0.851,0.884,1.035,0.887,0.987,1.183,0.959,1.015,1.103,1.049,0.935,0.881,0.878,1.037,1.178,1.174,1.017,1.185,1.057,1.015,0.975,1.025,0.896,0.982,0.915,1.031,1.027,1.057,1.089,1.072,1.119,0.946,0.899,1.083,1.078,1.087,0.861,1.055,0.888,0.987,1.195,0.897,0.89,1.174,0.934,0.948,1.284,1.12 +XM_294017,1.023,0.985,0.898,1.1,0.871,0.912,1.189,0.927,1.385,0.919,1.126,1.06,0.89,1.011,0.974,0.96,1.144,0.969,0.841,1.003,1.11,0.887,1.022,0.869,1.057,1.045,1.123,0.992,0.875,1.181,0.822,0.905,0.999,0.881,0.898,0.969,1.001,0.909,1.033,0.983,0.928,0.889,1.082,1.068,1.051,1.133,1.213,1.011,1.072,1.095,0.982,0.955,1.212,0.991 +XM_294019,0.914,1.084,1.178,0.994,1.101,1.057,0.912,0.851,1.063,1.122,1.055,0.915,0.997,0.968,0.843,1.027,1.066,1.056,0.973,0.979,0.916,1.06,0.977,0.904,0.916,0.878,1.093,0.934,0.812,1.029,0.96,0.937,1.067,1.152,1.044,1.046,0.918,0.966,0.951,0.945,1.138,1.068,0.998,1.08,1.081,0.835,1.101,1.058,1.06,1.16,0.986,1.094,1.119,1.005 +XM_294077,1.014,0.988,0.928,0.829,0.964,1.095,1.047,1.048,0.966,0.927,0.839,0.953,1.041,0.985,0.967,1.063,1.061,1.117,0.987,0.923,1.084,1.08,1.067,0.977,0.852,1.037,1.053,0.933,1.01,0.999,1.062,0.881,0.975,0.992,1.011,0.961,1.062,1.004,1.067,0.979,0.948,1.084,1.029,0.969,0.94,1.099,0.835,0.967,1.101,0.991,1.014,1.064,1.186,1.032 +XM_294113,0.909,1.193,1.056,0.952,1.082,1.084,0.82,0.819,1.023,0.971,0.969,1.015,0.927,0.756,0.819,1.133,0.9,0.984,1.041,0.938,0.892,0.832,1.055,0.917,1.064,0.993,0.909,0.877,0.764,1.086,0.852,1.305,1.233,1.246,0.88,1.027,0.984,1.067,1.146,0.871,1.039,0.951,0.78,0.943,1.143,0.836,0.858,0.922,0.957,0.98,0.993,0.84,1.116,0.963 +XM_294117,1.017,1.051,0.935,0.93,0.891,0.979,1.123,0.889,0.993,0.979,1.012,1.094,1.019,0.886,0.985,1.004,0.941,0.931,1.015,1.013,0.993,1.037,1.049,1.062,0.908,1.133,1.067,0.919,1.041,1.098,0.956,1.011,1.018,0.949,1.056,1.074,1.023,1.103,1.167,0.845,1.069,1.051,0.785,0.902,1.086,1.025,0.968,1.04,1.062,1.086,1.077,1.103,0.912,0.984 +XM_294139,0.9,0.885,1.21,0.755,1.074,1.084,0.663,0.998,1.095,1.402,0.873,1.025,0.885,0.87,0.998,1.068,1.084,0.95,1.101,0.861,0.827,1.219,1.092,1.251,0.724,0.929,1.384,0.942,0.616,0.907,1.056,0.759,0.945,0.791,0.659,0.941,1.013,1.242,1.027,0.931,1.103,0.903,1.301,0.849,1.245,0.973,1.04,0.952,1.008,1.385,0.914,0.841,1.159,1.109 +XM_294209,1.031,1.044,1.118,0.934,0.98,1.271,1.01,1.097,0.914,0.917,0.971,1.014,1.086,0.982,0.876,0.853,1.048,1.02,0.97,0.989,1.164,1.161,1.067,0.934,0.905,1.006,1.037,1.053,1.01,0.951,1.043,0.963,1.064,1.125,1.101,0.963,1.007,0.916,0.955,1.024,0.966,0.926,0.938,1.024,1.235,1.269,0.89,0.982,0.924,1.042,0.882,0.917,0.984,0.856 +XM_294219,1.114,0.997,0.968,0.932,1.054,1.096,0.706,0.979,1.085,0.988,1.034,1.015,1.095,0.928,0.871,1.098,1.05,1.137,1.005,1.065,1.001,1.185,0.767,1.005,0.89,1.002,1.086,1.191,0.741,1.126,0.936,0.966,0.923,0.914,1.319,1.054,1.077,1.105,0.914,1.15,0.967,0.975,1.055,1.028,1.036,0.888,0.97,0.945,1.083,1.207,1.03,0.894,0.902,1.135 +XM_294249,1.035,1.027,0.95,1.009,1.12,1.081,0.935,1.028,1.166,1.015,1.031,1.132,1.019,0.893,0.946,1.011,1.079,0.939,0.935,0.953,0.878,0.834,0.973,0.923,0.988,0.797,1.165,1.093,1.653,0.932,0.925,1.091,0.947,1.053,1.193,1.071,1.065,1.021,0.927,1.157,1.1,0.972,1.012,0.949,0.982,0.957,0.953,1.128,0.802,0.901,1.015,0.851,1.203,0.919 +XM_294310,1.001,1.023,0.925,1.073,1.124,0.853,1.294,1.031,1.062,1.061,0.933,0.986,0.915,1.123,1.01,1.342,1.152,1.069,0.944,0.861,1.111,0.956,0.938,1.069,0.929,0.924,0.958,1.078,1.046,1.01,0.908,0.962,1.046,0.974,1.117,0.909,1.063,0.93,0.871,1.018,0.922,1.095,0.945,0.946,0.952,0.981,1.111,0.992,0.968,1.062,1.051,1.042,1.018,0.872 +XM_294316,1.068,1.225,0.994,1.114,1.077,0.985,1.177,0.882,0.928,0.945,1.173,1.042,1.029,1.148,1.049,1.003,1.202,0.828,1.032,1.027,1.053,1.043,1.026,0.965,1.207,1.247,1.106,1.003,0.856,1.007,0.977,0.925,1.028,0.96,0.907,0.998,1.086,1.203,0.918,1.207,0.831,1.013,1.037,0.902,0.88,1.167,0.932,0.989,0.995,1.087,0.96,1.108,1.162,0.978 +XM_294318,0.967,1.113,0.975,1.04,0.979,0.98,0.918,0.987,1.006,0.982,1.092,0.941,0.897,1.01,0.832,1.028,1.063,0.932,0.861,0.977,0.926,0.963,0.943,1.15,1.137,0.878,1.088,0.965,1.032,1.001,1.045,1.115,1.064,0.966,1.008,1.102,0.945,1.076,1.034,1.061,0.939,1.024,0.869,1.098,0.961,0.906,0.951,1.096,0.97,1.08,1.047,1.125,1.326,1.042 +XM_294319,1.016,1.014,0.934,0.87,0.92,0.892,1.033,1.039,1.103,0.973,0.992,1.025,0.903,0.786,0.933,0.933,0.991,0.972,1.012,0.997,1.013,0.893,0.995,1.01,1.047,0.889,0.902,1.037,1.086,1.079,0.945,0.911,0.872,0.984,0.969,1.035,1.008,1.276,1.055,1.018,0.94,1.018,0.918,1.094,0.979,1.014,1.151,1.079,1.198,1.02,1.013,0.907,1.044,0.932 +XM_294331,1.074,1.098,0.983,1.013,0.828,1.034,1.058,0.931,0.965,1.205,0.936,1.021,1.11,1.049,0.813,0.821,0.992,0.944,0.969,0.969,1.018,1.077,1.019,0.975,0.969,1.003,1.133,1.041,0.757,1.092,0.862,1.099,0.917,1.059,0.907,0.935,0.947,1.054,1.102,0.961,0.99,0.994,0.775,1.034,1.011,0.939,0.996,1.23,0.927,1.12,1.074,1.067,1.045,0.882 +XM_294353,1.015,1.074,0.994,1.049,0.907,0.993,0.887,0.991,0.901,0.958,1.041,0.91,0.978,1.047,0.842,1.201,0.94,1.042,0.963,1.049,0.983,0.896,1.044,1.013,1.048,1.05,0.85,0.989,0.815,1.033,0.952,0.823,1.093,0.925,1.143,0.927,1.043,0.862,0.999,0.969,1.061,1.059,1.058,1.111,0.915,0.938,0.823,1.058,1.047,0.975,0.955,0.98,1.065,1.009 +XM_294383,1.037,0.929,1.056,0.85,1.003,1.03,0.899,1.155,1.104,1.081,1.038,0.954,1.043,1.003,1.052,0.887,0.98,1.125,0.895,0.997,1.014,1.003,0.965,0.991,1.015,0.955,1.147,0.909,0.944,0.885,1.135,0.997,1.059,1.055,1.145,1.111,1.147,1.121,0.852,0.954,1.042,0.98,1.245,1.005,1.005,0.943,0.969,0.874,0.921,1.014,1.022,0.872,1.161,1.027 +XM_294387,0.88,0.975,0.911,1.179,0.846,0.888,1.131,1.023,0.973,1.038,1.028,0.925,0.997,1.023,0.909,0.835,1.031,0.865,1.001,0.994,1.009,1.21,1.154,1.095,1.07,1.093,0.899,0.939,1.288,0.971,1.102,0.993,0.925,0.922,1.109,1.166,1.063,0.996,0.925,0.926,0.932,0.828,0.987,1.028,0.996,1.033,0.759,0.917,0.943,1.203,1.066,1.041,0.987,1.064 +XM_294450,0.946,0.972,1.041,1.051,0.95,0.852,0.797,1.137,1.006,1.021,0.772,1.078,0.92,1.016,1.18,1.042,1.098,0.808,1.055,0.947,1.005,1.017,0.927,1.058,0.786,1.104,0.979,1.07,0.667,1.013,1.23,1.41,1.209,1.039,1.635,1.033,0.766,1.158,0.992,0.998,1.015,1.036,0.877,1.245,1.01,0.888,0.995,1.233,0.923,0.963,0.95,0.827,1.03,0.992 +XM_294521,0.949,1.056,1.05,0.857,0.984,0.994,0.852,1.122,0.998,1.074,1.067,1.08,1.005,1.002,1.092,0.908,0.987,1.03,0.945,1.092,0.947,1.037,1.046,1.004,0.971,0.973,1.055,0.979,0.863,1.027,1.028,0.981,0.865,0.963,1.1,0.961,0.969,0.983,0.977,1.073,1.164,0.943,1.049,1.103,0.948,0.969,1.124,1.063,0.965,0.973,1.083,0.989,0.944,0.86 +XM_294531,0.881,0.948,0.847,0.936,0.951,1.096,0.899,0.919,1.045,0.965,1.018,0.884,0.965,1.064,1.129,1.15,0.982,1.192,0.923,1.092,0.93,0.936,1.052,1.094,1.007,1.012,1.001,0.867,1.195,1.122,0.967,0.938,1.101,0.962,0.994,1.068,1.048,0.743,0.876,0.959,1.103,0.998,1.136,0.961,0.942,0.872,0.809,0.921,1.022,1.07,1.195,1.0,1.139,0.897 +XM_294533,0.928,1.122,1.231,0.961,0.979,1.161,1.19,0.972,1.12,1.15,1.058,0.84,1.127,0.943,0.981,0.974,1.111,1.004,0.965,1.11,1.099,1.036,1.061,1.108,0.925,0.934,0.961,0.947,0.909,0.901,1.171,0.857,0.896,1.08,0.99,1.006,1.027,0.944,1.026,0.841,0.935,0.852,0.991,1.065,1.024,1.3,1.01,1.122,0.997,1.03,0.869,1.088,1.245,0.84 +XM_294534,1.061,1.313,0.96,1.106,1.159,1.277,1.14,1.011,1.138,1.156,0.72,1.113,1.124,1.159,0.971,1.046,0.976,1.046,0.848,0.989,1.054,0.951,1.018,0.964,0.938,0.996,1.045,0.849,1.011,0.916,0.95,1.294,0.998,1.192,0.992,0.875,1.018,1.039,0.939,0.985,0.965,1.078,1.144,0.961,1.108,1.072,0.973,1.003,1.019,0.997,1.0,0.909,1.108,0.92 +XM_294540,0.87,1.076,0.904,1.119,0.973,1.109,0.906,1.007,1.085,0.994,1.239,1.11,1.187,1.058,1.25,1.055,0.946,1.162,0.834,0.981,0.977,1.123,0.962,1.216,1.027,1.087,0.929,1.043,1.415,1.396,1.136,0.966,0.714,1.184,0.978,0.886,1.121,1.017,1.313,0.929,0.848,1.055,0.893,1.053,0.955,1.048,0.936,1.003,0.662,1.083,1.096,1.016,0.933,0.926 +XM_294592,1.038,0.92,1.121,0.903,0.977,1.062,0.919,1.102,0.959,0.963,0.914,1.039,1.0,0.903,0.91,1.046,1.017,1.019,0.96,0.994,0.894,1.058,1.069,0.933,0.973,0.991,1.006,1.112,0.75,1.022,0.93,1.017,1.039,0.991,0.925,0.999,0.85,1.142,1.131,0.892,0.975,0.836,0.897,1.026,0.884,0.978,1.048,1.021,1.075,1.011,1.087,0.888,1.022,1.059 +XM_294656,1.003,0.982,0.968,0.974,1.008,1.049,1.016,1.123,1.033,1.083,1.0,1.081,1.068,1.072,0.954,0.928,0.904,1.091,0.925,0.954,0.935,0.923,0.989,0.904,0.989,1.058,0.924,1.069,1.058,0.989,1.035,0.936,0.979,0.986,1.009,0.881,1.024,1.091,0.947,0.951,0.814,0.963,1.222,0.994,0.968,1.001,1.021,0.91,0.992,1.02,0.989,1.011,1.053,1.053 +XM_294660,1.032,1.001,1.021,0.947,0.99,0.957,0.756,0.937,1.008,0.915,0.937,0.98,0.848,0.968,0.928,1.003,0.974,1.015,0.944,0.929,1.057,1.062,1.008,0.996,1.069,1.042,0.823,0.982,1.204,1.087,1.025,0.988,0.985,0.978,0.945,1.071,1.026,1.004,0.909,1.009,0.962,0.924,1.289,0.895,1.049,0.871,1.008,0.999,0.971,1.069,1.089,0.974,0.964,0.935 +XM_294664,1.098,1.068,0.937,0.873,1.073,0.91,0.88,1.023,0.923,1.004,0.949,0.946,0.96,0.963,0.904,0.993,0.992,0.975,0.981,0.993,0.937,1.061,0.97,1.011,1.061,0.993,1.053,1.017,1.092,1.006,0.934,1.031,0.878,1.041,1.161,0.976,0.969,1.097,0.976,1.075,1.023,1.067,0.902,1.008,1.052,1.005,1.032,1.116,1.093,0.946,1.023,1.028,0.961,0.947 +XM_294668,0.866,0.997,1.004,0.922,1.069,0.938,0.93,1.026,0.965,0.999,1.088,1.065,1.01,1.174,0.917,0.938,1.032,0.972,1.011,1.019,1.032,1.047,0.965,0.977,0.994,1.049,1.009,0.973,1.007,0.935,1.036,1.002,1.07,1.002,1.108,1.102,0.974,1.017,0.946,1.116,0.953,0.93,0.836,0.964,1.043,1.031,1.058,1.09,0.951,0.969,0.887,1.093,1.06,0.877 +XM_294675,0.85,1.022,0.976,1.027,1.033,1.115,0.701,0.794,0.977,0.887,1.129,1.021,0.963,1.029,0.879,1.14,1.033,0.937,0.914,1.166,1.098,0.924,0.746,1.101,0.791,1.046,0.98,1.003,0.872,1.055,0.978,0.863,1.083,0.833,1.034,1.065,1.004,1.058,1.123,0.846,1.051,0.89,0.877,0.846,0.93,0.809,0.946,1.065,0.869,0.963,0.879,1.068,1.066,0.991 +XM_294688,0.797,1.585,0.922,0.981,1.012,1.178,0.793,1.128,0.726,0.91,1.13,0.96,0.785,0.927,1.011,1.037,0.851,1.059,0.788,1.025,1.064,0.831,1.076,0.95,0.864,0.86,0.877,1.072,0.828,1.076,1.063,0.95,0.852,1.203,0.883,0.958,1.046,0.916,0.939,1.031,0.965,1.284,1.165,0.95,0.795,1.076,0.976,0.868,0.925,0.9,1.114,0.889,0.998,0.982 +XM_294692,1.094,1.131,0.915,1.117,0.95,1.041,1.04,0.941,1.036,0.964,1.045,0.978,0.983,1.203,0.906,0.894,1.028,0.954,0.955,0.902,1.045,0.974,0.987,0.957,1.029,0.996,1.008,0.999,1.036,0.902,1.102,0.925,0.917,0.935,1.013,1.043,1.011,0.903,1.044,0.926,0.893,0.871,1.151,1.027,0.988,1.097,1.056,0.941,0.967,1.028,1.112,0.957,0.849,0.807 +XM_294713,1.037,0.955,0.994,0.887,1.091,0.982,0.798,1.276,1.276,0.922,1.03,1.001,0.743,1.065,0.889,0.985,0.919,0.949,0.976,0.87,1.071,1.026,1.184,1.048,1.072,1.06,0.962,0.984,0.79,1.003,0.92,1.102,0.964,1.001,0.999,1.049,1.029,0.966,1.069,1.173,1.013,0.987,1.025,1.249,1.031,0.956,0.796,1.036,0.936,0.941,1.078,0.948,0.84,0.866 +XM_294715,1.071,1.0,0.951,1.062,0.995,1.017,1.012,1.056,1.049,1.053,1.03,0.989,0.942,1.004,1.154,1.014,1.006,1.019,1.041,1.0,1.0,1.017,0.934,1.125,0.919,1.134,1.023,0.924,1.068,1.08,0.986,0.927,0.963,0.875,1.057,1.084,1.037,0.965,0.972,0.913,1.054,0.939,0.823,1.032,1.002,1.004,0.932,1.069,0.955,0.886,0.939,1.078,1.042,0.89 +XM_294730,0.959,1.066,1.018,0.94,0.798,1.066,1.123,1.003,1.074,0.981,1.044,0.967,1.043,1.023,0.908,1.067,0.971,1.045,0.984,0.998,0.91,0.897,0.987,1.098,1.025,0.931,0.775,1.035,0.852,1.027,1.096,0.975,0.906,1.046,1.127,1.024,1.014,1.135,1.145,1.053,1.024,1.051,1.156,1.018,0.931,1.071,0.956,1.02,0.911,1.097,0.907,0.966,0.988,1.025 +XM_294731,0.947,1.019,1.028,0.936,1.072,0.998,0.919,0.808,0.972,1.174,0.943,1.054,0.988,1.152,0.926,0.992,1.123,0.983,0.93,0.959,0.854,1.098,0.965,0.977,0.897,0.964,1.007,1.099,1.156,0.871,1.073,1.316,0.889,1.01,1.127,0.949,0.988,1.172,1.035,1.024,1.033,0.884,1.005,0.967,1.054,1.12,0.964,0.965,0.983,1.011,0.966,0.837,0.989,1.064 +XM_294743,1.019,0.978,1.065,0.941,1.072,1.081,0.984,0.89,0.969,1.151,0.995,0.875,1.075,0.948,0.908,0.949,1.06,0.971,0.884,1.091,0.882,0.963,0.942,0.968,0.997,1.023,1.021,1.043,0.947,0.935,0.898,0.989,1.044,0.924,1.079,1.057,1.01,1.023,1.024,1.077,0.842,0.96,0.825,0.937,1.066,0.853,1.099,1.005,1.012,1.016,1.008,0.935,0.938,1.002 +XM_294748,0.939,0.981,1.027,0.966,1.001,1.082,1.002,0.973,0.98,1.244,1.063,1.038,1.088,1.003,1.078,0.95,0.998,0.866,1.066,0.995,1.076,0.979,1.075,0.921,1.109,0.999,0.945,1.033,1.086,0.936,0.968,0.995,1.013,1.008,1.015,0.965,0.941,1.013,0.971,0.972,0.925,1.007,1.009,0.973,1.027,1.052,0.946,0.986,0.927,0.94,1.008,0.96,1.022,0.948 +XM_294751,0.994,1.072,0.962,1.005,0.88,0.97,0.984,0.921,1.088,1.138,0.99,1.068,1.044,0.999,1.151,0.759,0.949,0.953,0.966,1.053,1.055,0.951,0.964,1.043,0.945,0.983,1.049,0.931,1.149,0.967,0.993,1.041,0.978,1.016,1.149,0.937,1.012,1.035,1.033,1.102,0.792,0.886,1.07,0.97,1.11,0.917,1.144,1.13,1.006,1.001,1.001,0.877,1.17,0.844 +XM_294758,0.965,1.109,0.981,1.016,0.976,1.014,0.89,0.776,1.019,0.925,1.107,1.108,0.981,1.323,1.121,1.205,0.87,1.011,0.902,0.971,0.828,1.117,0.903,0.969,1.037,1.071,1.015,1.128,1.1,1.001,0.954,0.992,0.941,1.03,1.002,1.112,1.024,0.943,0.952,1.03,0.881,1.037,1.008,1.009,0.947,0.92,0.995,1.151,0.985,1.006,0.928,0.924,1.02,1.181 +XM_294759,1.008,1.002,1.112,1.105,1.135,1.018,0.898,0.907,0.91,1.082,0.9,0.998,1.08,1.086,0.752,0.89,1.084,0.988,0.925,1.015,0.954,1.121,1.044,1.059,1.016,1.047,0.911,1.063,0.837,1.008,0.968,1.11,0.917,1.031,1.074,0.99,0.959,0.897,0.996,0.935,1.012,1.074,0.859,1.045,0.963,1.198,0.965,0.981,1.014,1.025,0.95,0.905,0.925,1.038 +XM_294775,0.976,0.876,1.005,1.09,0.943,0.955,1.021,1.078,1.008,1.196,0.845,1.077,0.897,0.879,0.938,1.266,0.934,0.954,1.342,1.066,0.932,1.078,1.053,0.878,1.021,0.986,1.066,0.984,0.814,0.966,1.007,0.74,0.992,0.788,0.897,0.812,1.008,1.186,1.018,0.932,0.835,0.91,1.22,0.934,1.013,0.999,1.149,1.028,1.117,1.014,1.031,0.957,0.993,1.209 +XM_294794,0.898,0.969,0.977,0.854,0.905,1.011,1.076,1.19,0.874,1.006,0.984,0.991,1.018,1.022,0.838,0.845,1.023,1.078,0.916,1.016,1.003,1.111,0.847,0.986,0.876,1.037,1.053,0.909,1.154,0.908,1.021,0.843,1.032,0.901,1.048,1.048,1.004,1.048,0.921,0.99,1.058,1.017,1.085,0.917,0.938,1.088,0.867,0.919,0.975,1.017,0.962,0.931,1.015,0.943 +XM_294807,1.071,1.061,1.027,1.004,1.01,0.964,0.98,0.788,1.066,1.032,1.053,0.994,0.994,1.001,0.906,0.946,0.926,0.998,0.708,0.965,0.881,1.066,0.916,0.991,1.015,1.009,1.027,1.051,1.378,0.92,0.907,1.069,0.856,0.978,1.001,1.018,1.001,1.094,1.002,1.016,1.093,0.894,1.003,0.919,0.976,0.861,1.027,0.994,1.027,1.057,1.041,0.872,0.966,1.047 +XM_294822,1.021,1.095,0.941,0.893,0.941,0.861,1.054,1.013,1.143,1.172,0.991,0.997,0.931,0.966,1.096,1.03,1.012,0.937,0.829,1.071,0.849,0.919,1.056,0.999,1.005,1.015,1.048,1.02,1.329,1.007,0.946,1.048,0.928,0.945,1.036,0.953,0.944,1.183,1.028,0.926,1.08,0.941,0.818,1.072,0.967,1.016,0.913,1.051,0.815,1.059,0.896,1.044,0.851,0.956 +XM_294835,0.953,1.056,0.99,1.092,1.117,1.018,1.007,1.031,1.092,0.952,0.986,1.068,1.162,0.874,1.26,1.043,0.966,0.917,0.987,0.92,0.879,0.961,1.153,0.995,0.964,0.988,1.117,1.136,0.971,0.988,0.987,1.003,0.98,0.996,1.085,0.996,1.01,1.071,0.909,1.018,1.066,0.96,1.027,0.998,1.043,0.959,0.937,0.882,1.022,0.993,1.005,1.091,1.061,0.938 +XM_294836,0.892,1.017,1.021,0.947,0.964,0.926,0.951,0.92,1.115,0.945,1.071,1.019,1.099,1.041,0.978,1.006,1.004,1.012,1.289,1.052,0.905,0.942,1.179,0.932,0.968,0.998,0.933,0.984,0.929,1.043,1.065,1.017,0.982,0.854,1.04,1.11,1.082,0.9,0.954,1.083,0.908,0.864,1.204,1.07,0.979,1.122,1.002,1.01,0.965,0.953,0.935,1.177,1.084,1.08 +XM_294854,1.101,0.928,0.949,0.879,1.023,1.018,1.049,1.076,0.93,0.999,0.878,0.929,0.976,1.012,0.949,1.076,0.948,1.041,1.049,0.925,1.059,0.97,0.994,0.964,1.078,0.985,1.092,1.025,0.937,1.028,1.016,0.82,0.892,0.961,1.075,1.213,1.05,0.959,0.968,0.949,1.033,1.025,1.141,0.995,1.018,1.093,0.921,1.041,1.069,0.879,1.046,0.978,0.874,0.933 +XM_294867,1.112,0.932,0.898,0.973,1.11,0.845,0.829,1.105,1.076,0.931,0.969,0.989,0.962,0.838,1.0,1.054,1.007,1.176,0.977,0.956,1.071,0.935,0.797,0.936,0.982,1.085,0.846,1.015,0.717,1.083,1.106,1.03,0.909,1.003,1.0,0.958,1.086,1.007,1.071,1.048,0.988,0.969,0.996,1.006,1.044,1.126,1.141,1.09,0.96,0.97,1.018,1.016,1.013,0.874 +XM_294894,1.0,0.975,0.964,0.938,1.147,0.961,0.941,0.95,1.057,1.178,0.986,0.932,1.077,0.808,0.964,0.98,0.952,1.002,0.87,0.874,1.043,0.986,0.957,1.103,0.953,0.917,1.017,1.05,0.809,1.033,1.042,1.072,0.879,1.03,0.915,1.055,0.922,0.85,1.0,0.953,1.084,0.929,0.888,1.033,0.949,1.141,1.017,1.079,0.908,1.025,0.97,1.08,1.095,1.134 +XM_294910,0.993,2.284,1.056,1.068,0.816,1.147,1.03,0.816,0.991,0.943,0.682,0.94,0.937,0.754,1.029,0.806,0.996,1.145,0.934,1.71,0.818,0.883,1.152,0.813,1.159,0.847,1.027,0.86,1.041,2.66,0.824,0.818,0.79,1.866,0.634,0.97,1.133,1.028,0.758,0.867,1.012,1.678,0.638,1.007,0.847,0.902,0.731,0.874,0.817,0.815,1.235,0.748,1.004,0.798 +XM_294919,1.131,0.79,0.993,0.961,1.03,1.102,0.94,1.053,1.201,0.864,0.993,0.897,0.999,1.271,0.679,1.108,0.96,0.921,1.073,1.035,1.065,0.815,1.004,0.99,1.001,1.009,0.862,0.948,0.839,0.939,1.141,0.982,1.002,1.03,0.98,1.041,0.988,0.963,1.093,1.003,1.056,0.954,0.923,1.007,1.156,1.149,1.093,1.007,0.949,0.931,1.135,1.015,1.064,0.923 +XM_294922,1.095,1.046,0.941,0.997,0.891,0.994,0.985,1.075,1.135,1.113,1.162,1.076,1.143,0.942,1.565,0.853,0.983,1.091,1.095,0.948,1.028,1.035,0.983,1.11,1.084,1.189,1.135,0.958,0.862,1.066,0.946,1.208,0.975,0.945,1.06,0.97,0.923,0.973,0.872,0.969,0.893,1.018,0.96,1.0,1.016,1.183,1.076,0.985,0.899,0.98,0.991,1.037,1.104,0.878 +XM_294924,1.073,1.01,1.132,1.012,1.064,1.037,0.866,0.938,1.048,0.991,1.044,1.019,1.001,0.94,1.045,1.126,1.055,1.059,0.995,0.997,0.968,0.872,0.957,1.0,0.967,0.984,1.054,1.047,0.999,0.992,0.977,0.989,1.034,0.955,1.026,1.02,0.968,1.09,1.052,0.957,1.023,1.042,0.936,1.043,1.093,1.023,1.13,1.002,0.96,0.93,0.952,1.09,0.953,1.06 +XM_294932,1.066,1.051,1.025,1.078,1.159,1.057,0.916,1.103,0.973,0.938,1.068,1.04,0.99,1.004,0.986,0.981,1.033,1.071,0.983,0.995,0.854,0.941,0.884,1.029,0.988,1.091,0.98,0.963,1.203,1.003,0.954,0.955,1.022,0.877,1.091,0.947,1.049,1.004,1.034,1.107,1.042,0.981,0.906,1.039,0.962,1.137,1.067,0.977,1.018,0.89,0.957,1.028,0.992,1.016 +XM_294960,0.932,1.082,1.023,0.996,1.006,0.851,1.116,1.167,0.929,0.981,1.063,0.962,1.002,0.979,1.063,0.995,0.908,0.991,1.074,0.84,0.876,1.074,0.985,1.101,1.125,1.071,1.007,0.755,1.228,0.958,1.056,0.888,1.047,0.96,1.092,0.942,0.917,1.034,1.081,0.9,0.992,1.158,1.18,0.89,1.136,1.167,0.912,0.846,1.083,0.974,0.974,1.141,0.884,1.041 +XM_294974,0.948,0.917,0.998,0.945,0.93,1.034,0.924,1.325,0.994,1.029,1.001,1.039,0.853,0.936,0.92,1.047,1.025,1.097,1.039,0.949,0.954,1.086,1.009,1.1,0.913,1.138,0.962,1.154,1.006,0.959,1.033,0.917,0.986,1.093,1.015,1.021,0.946,1.134,1.073,0.961,0.957,0.961,0.949,0.983,0.979,1.05,1.047,0.989,1.008,1.126,0.97,0.992,0.934,0.929 +XM_294975,0.895,0.994,1.028,0.97,1.104,0.926,0.838,0.908,1.062,1.124,1.05,1.022,0.946,0.967,0.866,0.999,1.011,1.001,0.959,0.947,0.981,1.18,0.953,0.998,0.95,1.023,1.013,0.965,1.225,1.039,1.013,0.957,0.857,1.108,0.978,0.909,0.971,1.009,1.057,1.02,1.053,1.09,1.09,1.054,1.017,1.064,1.056,1.064,1.157,1.051,1.004,1.115,1.112,0.911 +XM_294983,0.981,1.104,0.984,0.915,0.971,0.919,0.98,1.177,1.081,1.07,1.101,1.124,0.939,1.072,0.926,0.997,0.96,0.993,1.015,1.0,0.992,1.014,1.038,1.042,0.996,1.058,0.883,0.962,0.89,1.075,0.897,0.959,1.066,0.868,1.017,0.997,1.071,1.045,0.982,0.936,1.016,0.959,1.055,0.955,1.088,0.978,1.04,1.022,1.039,1.04,0.88,0.941,0.97,0.964 +XM_294985,1.01,0.997,0.983,1.015,1.107,0.991,0.925,0.951,0.986,0.976,0.899,0.975,0.904,0.937,0.998,0.982,1.011,1.08,1.071,0.841,1.063,1.001,1.002,1.039,0.993,0.991,1.033,0.985,0.81,1.06,1.076,1.226,0.925,0.977,1.195,0.988,0.908,1.044,1.171,1.025,0.98,0.943,0.86,0.983,0.992,0.934,0.947,0.978,0.998,1.056,0.966,0.919,1.053,1.125 +XM_294986,1.112,0.857,0.996,1.02,0.863,0.988,0.917,1.003,0.962,1.05,1.026,0.918,1.021,0.794,1.017,0.959,0.984,0.95,1.057,1.021,0.904,1.0,1.03,0.969,0.872,1.027,1.072,0.88,0.956,0.909,0.96,0.986,1.067,1.028,0.997,0.93,1.109,1.302,0.914,0.996,1.002,1.045,0.922,1.099,0.934,0.951,1.045,0.959,1.001,1.226,1.031,1.083,1.079,1.02 +XM_294993,1.022,0.98,1.136,1.227,1.104,0.982,1.088,1.105,1.029,0.964,1.067,1.115,0.996,1.086,0.884,1.014,1.007,0.995,0.95,0.933,0.99,1.072,1.022,1.082,1.051,1.005,0.97,0.959,1.696,1.044,0.914,1.059,1.009,0.915,0.989,1.033,1.058,1.016,1.038,0.966,0.983,0.85,0.912,0.967,0.891,1.1,1.083,0.88,0.922,1.199,0.987,0.806,0.877,1.004 +XM_294997,1.011,0.918,1.1,1.094,1.103,0.986,0.961,0.975,1.105,1.111,0.999,0.895,1.002,0.959,0.946,1.002,0.985,0.996,1.052,0.971,0.917,1.005,1.033,1.043,0.948,0.984,1.117,0.936,0.851,0.951,1.068,1.015,0.847,0.983,0.991,1.008,1.102,0.961,1.061,1.062,1.003,0.943,1.246,0.974,1.059,1.022,0.878,0.936,1.053,0.862,1.034,1.026,0.981,0.904 +XM_295007,1.023,1.117,1.051,0.966,1.05,1.059,1.095,0.87,0.978,0.949,1.013,0.946,1.036,1.093,0.947,1.123,1.104,1.11,1.055,0.983,1.157,0.995,0.975,1.135,0.855,0.892,1.01,0.847,0.849,0.982,1.072,0.889,1.03,0.826,1.038,0.984,1.059,0.972,1.034,1.054,0.999,1.093,1.046,1.114,0.96,0.898,0.948,0.926,0.983,1.013,0.967,1.09,0.975,1.001 +XM_295008,0.971,0.942,0.952,0.952,1.003,1.06,1.003,0.954,0.975,1.102,0.981,1.005,0.976,0.996,1.277,0.966,1.143,1.057,1.109,0.854,1.092,1.031,0.932,1.145,1.023,1.022,0.934,0.978,1.087,0.957,0.915,0.971,0.986,0.988,0.948,1.093,1.136,1.131,1.071,0.897,1.225,0.986,0.906,1.017,1.037,1.06,0.956,0.985,0.972,1.088,0.977,1.154,0.894,1.091 +XM_295022,1.135,0.992,0.97,0.976,1.119,0.932,0.861,1.018,0.908,0.962,1.122,0.954,1.006,1.028,1.004,0.999,1.008,0.993,1.078,0.959,1.114,1.011,0.917,1.038,1.054,0.943,0.972,0.906,0.908,1.108,0.941,1.043,0.895,1.006,1.042,0.941,1.01,0.956,0.979,1.014,1.044,0.965,0.912,0.984,1.045,1.035,1.027,0.974,1.036,1.005,1.079,1.052,0.903,1.042 +XM_295024,0.902,1.03,1.03,1.062,0.852,0.983,1.013,1.013,1.024,1.043,1.043,0.909,0.914,1.106,1.16,0.905,1.024,1.004,1.024,0.924,1.076,0.91,0.911,0.891,1.033,0.949,1.006,0.994,1.382,0.94,0.975,1.054,1.005,0.982,1.081,1.048,0.991,0.807,1.03,1.116,1.043,0.939,0.962,1.137,0.94,1.107,0.944,1.112,0.91,1.048,1.057,0.917,0.977,0.974 +XM_295032,1.008,0.92,0.958,0.921,1.042,1.043,1.114,1.09,0.917,0.873,0.991,0.935,0.944,0.955,0.902,0.916,1.059,0.987,0.936,1.03,1.089,1.056,1.075,1.079,0.904,0.884,0.913,1.041,0.849,1.043,1.036,1.044,0.982,1.175,1.048,1.036,0.892,0.989,1.084,0.934,0.992,0.958,0.819,1.053,0.997,1.001,1.034,1.069,1.031,1.004,0.974,1.019,1.013,0.958 +XM_295035,1.01,0.965,1.001,0.952,0.988,1.074,0.794,1.095,0.918,1.012,0.99,0.917,0.96,1.206,0.799,1.002,0.94,1.04,1.119,1.035,0.994,0.994,0.939,1.034,0.994,1.064,1.037,0.962,1.412,0.946,0.971,0.893,0.915,1.104,1.076,1.009,1.03,0.921,0.995,1.067,1.018,1.01,1.267,1.044,0.903,1.019,0.983,0.987,1.007,0.954,1.03,0.931,1.066,0.951 +XM_295048,1.097,0.986,1.084,1.257,0.891,1.049,1.086,1.208,0.944,0.974,0.966,1.048,1.036,0.96,0.917,0.994,0.902,1.046,0.973,1.053,1.015,1.024,0.99,0.948,1.054,0.937,0.881,0.988,1.094,0.987,0.954,0.978,0.941,0.99,1.024,0.997,0.982,1.001,0.959,1.0,1.034,1.032,0.927,1.133,1.02,1.0,1.028,1.001,0.924,1.052,1.092,0.843,0.987,0.973 +XM_295053,0.847,1.039,1.002,0.869,0.951,1.155,0.799,0.976,1.015,0.989,1.267,1.025,0.905,1.056,0.895,1.23,0.974,1.022,0.975,1.082,1.153,1.004,1.071,0.935,0.915,1.034,0.867,0.967,0.975,0.993,1.115,1.904,0.998,0.888,0.905,0.966,1.058,0.948,1.094,1.171,0.937,1.044,0.981,0.983,1.024,1.105,1.017,1.011,0.942,0.96,1.337,1.104,1.037,1.381 +XM_295070,1.017,1.088,1.046,0.922,1.145,1.032,1.271,0.935,0.967,0.991,1.054,0.902,1.069,0.763,1.083,1.03,1.134,0.885,1.112,1.118,1.142,1.151,0.97,0.984,1.004,1.178,0.942,1.199,0.979,1.024,0.909,1.055,0.964,1.134,1.088,0.966,1.104,0.929,0.974,0.941,1.041,1.001,0.881,0.964,0.94,1.211,0.978,1.003,0.922,0.999,0.965,1.085,1.012,1.07 +XM_295071,1.062,1.014,1.032,1.162,0.906,1.085,1.087,0.905,1.062,1.027,1.013,0.915,1.017,1.03,1.012,1.058,1.169,0.915,0.807,1.019,1.111,1.03,0.96,0.971,1.064,0.887,1.081,1.018,0.873,0.867,0.982,1.008,0.982,1.066,1.005,0.96,1.038,0.97,1.007,0.917,0.921,0.974,0.908,1.03,0.977,1.036,1.051,1.022,1.026,1.058,0.999,0.971,1.031,0.916 +XM_295079,1.06,0.91,1.057,0.948,0.936,0.907,1.052,0.989,1.004,1.023,0.91,0.97,0.986,1.161,0.937,1.049,0.971,1.154,0.953,0.991,1.051,1.052,0.914,1.032,1.084,0.948,0.797,1.006,1.08,1.045,1.009,0.926,1.051,1.019,1.035,1.007,0.849,1.001,0.951,0.987,1.018,1.041,0.98,0.997,0.906,0.936,0.889,1.103,1.026,1.018,1.032,1.019,1.055,0.974 +XM_295084,1.119,0.979,0.968,0.971,0.92,1.035,0.82,0.967,0.992,0.916,1.059,0.98,0.999,1.054,1.074,1.106,0.949,1.051,0.887,0.994,1.0,1.048,0.979,0.923,0.986,0.953,0.956,1.128,0.85,1.123,1.032,1.34,0.966,1.342,0.887,0.978,0.989,0.942,0.955,1.021,1.275,1.103,0.905,0.912,0.958,0.971,1.01,0.947,1.0,0.946,0.955,1.008,0.949,0.997 +XM_295088,0.999,0.992,1.085,0.87,0.999,0.979,1.129,0.961,1.052,0.911,1.054,0.977,1.075,1.133,0.845,1.017,0.952,1.088,1.024,0.961,0.981,0.994,1.111,0.893,0.98,1.036,0.923,1.11,1.079,0.921,0.919,0.956,0.991,0.835,1.085,0.913,1.004,0.991,0.925,0.948,1.037,1.05,1.23,1.046,0.966,0.847,0.974,0.981,1.064,1.037,0.955,1.099,1.026,0.97 +XM_295091,1.102,0.993,1.007,1.068,0.823,1.165,1.08,0.968,1.052,1.241,1.118,1.013,0.966,0.941,0.961,0.862,1.023,1.018,1.182,0.892,1.136,0.931,0.898,1.141,1.02,1.044,1.15,0.983,0.902,0.991,1.034,1.018,0.928,1.125,1.013,1.028,1.001,1.076,1.013,0.969,0.847,0.987,0.971,0.933,0.974,0.896,1.19,0.998,0.879,0.96,0.97,0.966,1.018,1.03 +XM_295096,1.068,1.011,0.97,0.911,0.932,0.977,0.906,0.92,1.03,1.181,0.902,1.112,1.066,0.778,0.917,1.034,0.997,1.037,1.141,0.914,0.828,1.096,1.074,0.991,0.944,0.936,1.062,1.029,0.983,1.061,0.929,0.986,1.029,0.934,0.974,1.063,1.026,1.034,0.923,0.916,0.997,1.009,0.973,0.911,1.018,0.932,1.002,0.98,1.058,1.062,1.01,1.062,1.038,0.983 +XM_295097,1.001,0.984,1.066,0.811,0.995,0.901,0.848,0.989,0.942,1.09,1.001,1.159,0.953,0.978,1.124,1.006,0.944,0.964,0.991,0.997,1.066,1.069,0.854,0.966,0.939,1.058,0.906,0.963,1.062,1.064,0.905,1.043,1.002,0.992,0.83,0.834,1.007,1.046,0.938,1.011,0.954,0.935,0.931,0.894,1.059,0.834,1.018,0.999,1.02,1.048,1.092,1.004,0.853,1.074 +XM_295102,1.013,1.016,1.02,1.218,0.846,1.012,1.072,1.016,0.961,0.977,0.976,0.939,1.033,0.904,1.035,0.911,1.031,0.93,0.896,1.052,1.013,0.929,0.96,1.003,0.998,0.984,0.933,0.965,1.079,0.961,0.974,1.01,1.135,0.938,0.938,0.967,1.028,0.921,0.983,0.945,1.098,1.06,0.969,0.942,0.951,1.016,0.969,1.067,0.982,0.989,0.949,0.967,1.015,1.092 +XM_295105,1.015,0.935,0.947,1.106,0.787,1.001,0.991,1.014,0.871,0.925,0.929,0.909,0.972,1.293,1.011,0.965,0.985,1.102,0.966,1.0,0.979,0.927,1.064,0.935,0.949,0.867,0.895,0.931,0.935,0.975,0.933,1.098,0.936,1.096,0.903,0.897,1.065,0.884,1.05,0.954,1.093,1.019,0.92,0.953,1.0,0.987,0.926,0.961,1.078,1.03,0.939,1.117,0.963,1.09 +XM_295120,0.955,1.142,1.012,0.972,0.87,1.0,0.95,0.9,0.931,0.999,0.97,1.02,1.138,1.121,0.823,1.012,1.067,1.104,1.029,0.86,0.986,0.809,0.986,0.927,1.075,1.006,0.888,1.006,0.928,1.0,1.031,0.938,0.937,0.94,0.979,0.983,1.131,1.077,1.079,1.006,0.918,1.087,0.911,1.05,0.944,0.98,0.849,1.014,0.998,1.025,1.035,0.916,1.016,1.07 +XM_295126,0.996,0.97,1.029,0.96,1.041,1.054,1.074,1.017,0.921,1.011,0.971,0.952,0.961,0.874,1.188,1.025,1.103,1.045,1.006,0.923,1.003,0.9,1.095,0.94,1.033,0.994,1.023,1.072,1.086,0.987,0.909,0.91,1.028,1.027,0.948,0.979,1.033,1.027,1.092,0.914,1.08,0.955,1.073,1.04,0.97,1.04,1.008,1.015,1.015,0.843,1.022,0.886,1.069,0.934 +XM_295134,1.024,0.932,0.925,1.034,0.955,1.016,1.034,0.894,1.078,1.064,0.92,0.967,1.014,0.918,0.902,0.928,0.985,1.127,1.253,0.914,1.01,1.025,1.014,0.994,1.102,1.029,0.968,1.016,0.93,0.955,0.971,0.898,0.952,0.894,1.114,0.976,1.044,0.939,0.929,1.019,1.035,1.021,0.994,1.131,0.944,0.988,0.863,1.01,0.9,0.91,1.119,1.037,0.9,0.896 +XM_295135,0.867,1.005,1.151,0.849,1.098,0.875,0.676,0.841,0.998,0.943,0.75,0.831,1.052,0.82,0.928,0.999,1.043,0.965,1.081,0.793,0.802,1.123,1.09,0.994,0.742,1.001,1.266,1.099,0.53,1.108,1.145,1.589,4.824,0.994,1.066,0.875,0.857,1.339,1.045,1.182,1.356,1.022,0.492,0.774,1.123,0.877,1.177,1.112,0.842,0.942,1.059,0.919,0.789,1.107 +XM_295153,0.957,1.017,1.028,0.986,0.91,0.983,0.784,0.988,1.0,0.914,1.005,0.98,0.924,0.82,0.972,0.954,0.996,1.059,1.147,1.01,1.017,0.952,0.831,0.958,1.054,0.98,1.0,1.003,1.021,1.075,1.092,0.989,0.985,1.026,1.019,1.042,1.063,0.974,0.968,1.096,1.009,1.193,1.205,1.051,0.94,0.894,0.987,0.983,0.98,1.022,1.108,1.048,0.937,0.922 +XM_295155,1.023,1.056,0.82,0.982,0.921,0.949,1.123,1.032,0.992,1.086,1.115,0.936,1.031,1.097,1.143,1.249,0.924,1.119,0.889,1.195,0.892,1.057,0.968,1.136,1.049,0.994,0.952,1.055,1.302,1.094,1.053,1.069,0.979,0.957,0.984,1.071,1.001,0.964,0.926,0.894,0.966,0.825,1.003,0.943,0.995,1.097,0.991,1.071,1.206,0.99,0.967,0.902,1.046,1.002 +XM_295158,1.126,1.034,0.975,0.965,1.086,0.94,0.873,1.106,0.891,0.943,1.002,1.089,1.062,0.882,0.973,0.948,1.009,0.93,0.822,0.998,0.947,0.96,0.926,0.9,1.018,1.091,1.037,1.021,1.059,1.02,0.903,1.101,0.878,1.101,0.977,1.055,1.006,1.042,1.013,0.972,1.109,1.022,1.025,1.123,0.959,1.043,1.073,1.061,0.925,1.069,0.977,0.921,0.931,1.01 +XM_295167,1.028,1.062,1.011,1.032,0.969,1.002,0.877,1.288,1.053,1.038,0.914,1.003,0.982,0.776,0.843,0.945,1.047,1.016,0.99,0.923,0.954,0.988,0.963,1.033,1.052,1.037,0.948,1.001,1.039,0.953,1.034,1.016,0.959,0.934,1.029,1.029,0.982,0.991,1.041,1.187,1.054,0.906,0.995,0.927,0.976,0.997,0.947,1.026,0.869,0.995,1.048,0.95,0.935,0.926 +XM_295169,0.996,1.039,1.167,1.014,0.993,1.063,1.024,0.953,0.988,0.82,1.044,0.975,0.952,0.955,0.901,1.06,1.121,0.937,0.836,1.02,0.999,1.055,0.864,0.972,0.983,1.197,0.946,0.97,0.919,0.943,1.0,1.09,1.137,1.057,1.096,0.945,1.016,0.985,0.914,1.276,0.958,1.095,1.098,1.169,0.928,0.982,1.049,0.962,0.899,1.065,1.054,1.221,1.206,0.982 +XM_295178,1.201,0.956,0.914,0.967,1.11,0.987,1.09,1.189,1.173,1.02,0.945,0.996,1.014,1.039,1.151,0.915,1.114,1.059,1.068,0.939,1.238,1.016,0.965,1.173,0.979,1.076,0.906,1.169,0.893,0.93,1.003,1.021,1.058,0.932,1.147,1.107,0.926,1.252,0.99,0.915,1.065,1.066,0.867,0.867,1.194,0.963,0.993,1.087,1.227,0.952,0.924,0.954,1.116,0.967 +XM_295181,1.01,1.185,0.98,0.942,0.857,0.949,0.988,0.959,0.932,1.033,1.102,0.961,1.057,0.924,0.993,1.0,0.947,1.094,0.952,1.082,0.975,1.062,0.919,1.065,1.084,1.093,0.862,1.027,0.973,1.011,0.956,0.884,1.06,0.892,1.076,1.018,1.09,1.037,0.939,0.969,1.036,0.958,1.001,1.01,1.0,1.006,1.135,1.028,1.053,0.947,0.98,1.026,1.068,0.926 +XM_295190,1.119,1.022,0.982,0.905,1.052,0.995,0.97,0.955,0.957,0.947,1.009,1.134,0.945,1.23,0.921,0.986,0.947,0.905,0.907,1.039,0.927,0.96,0.946,0.911,0.944,0.882,1.004,1.11,1.236,1.107,0.952,1.06,0.926,0.981,0.939,0.972,0.923,1.047,1.044,1.055,1.105,1.003,1.082,0.969,0.834,1.133,1.054,1.042,1.086,0.949,0.899,1.033,0.958,0.962 +XM_295202,0.997,1.108,1.025,0.918,1.057,0.988,1.286,0.945,1.071,0.996,0.964,0.961,1.139,1.007,1.051,1.043,0.965,0.949,0.885,0.999,0.943,1.094,1.072,0.929,0.955,0.903,0.926,0.995,1.038,1.031,0.95,1.007,1.007,0.931,1.098,0.956,0.994,1.023,1.024,1.011,1.007,0.948,1.292,0.936,0.87,0.907,1.027,1.019,0.982,1.04,1.006,1.037,1.022,0.98 +XM_295204,1.155,1.003,1.044,0.972,0.984,0.941,0.958,0.907,1.009,0.904,0.969,0.937,0.857,0.926,1.119,1.005,1.069,0.963,1.07,1.021,1.015,1.035,0.947,1.008,1.04,1.034,0.956,0.936,1.082,0.972,1.063,1.096,1.077,1.07,0.996,0.975,0.99,1.0,0.921,1.008,0.967,0.97,0.805,0.955,0.939,0.915,0.939,1.001,0.946,1.111,1.036,1.003,1.121,1.057 +XM_295206,1.014,0.939,0.976,1.006,1.063,1.111,1.078,0.908,1.015,1.012,0.953,1.041,0.843,1.09,0.895,1.056,1.025,0.968,0.96,1.075,0.935,0.952,1.108,0.999,0.828,0.979,1.053,0.928,1.417,1.161,0.991,1.07,0.85,1.007,0.965,1.057,0.907,0.919,1.06,1.0,1.016,1.038,0.947,1.071,0.946,1.049,1.087,1.067,0.946,1.074,0.967,1.05,1.029,1.036 +XM_295212,0.968,0.977,1.0,1.057,1.101,1.072,1.061,0.946,1.062,1.121,1.09,0.952,0.953,1.006,1.186,1.006,1.0,1.105,1.006,1.062,1.046,0.958,0.919,1.101,0.987,0.957,1.045,1.115,0.901,0.89,1.036,1.142,0.974,1.026,0.894,1.08,1.011,0.975,1.027,0.899,1.028,0.945,0.813,1.191,1.062,0.968,0.859,1.002,0.925,0.953,1.048,1.151,0.962,1.022 +XM_295216,0.994,0.969,0.913,1.076,1.049,1.07,1.05,0.853,0.944,0.996,0.951,1.141,1.019,1.118,1.124,1.06,0.908,0.968,1.038,0.954,0.847,1.104,0.947,0.928,0.973,0.942,1.035,0.989,1.058,0.985,1.19,0.969,0.962,1.119,0.99,0.98,0.958,1.056,0.978,1.13,0.962,1.017,0.915,0.953,0.943,1.008,1.047,0.989,1.04,1.013,0.947,1.151,0.947,1.056 +XM_295222,1.1,0.988,1.028,0.989,0.918,1.066,0.984,1.077,1.051,1.031,0.961,0.947,1.017,0.745,0.864,1.092,0.979,1.205,0.855,0.951,1.105,1.041,0.887,1.064,1.078,0.953,1.057,1.004,1.189,0.906,1.038,1.016,0.973,0.98,1.105,0.952,1.022,0.861,0.935,1.068,1.055,0.996,0.99,0.941,1.02,0.856,0.954,1.026,1.075,1.083,0.958,1.05,1.071,0.958 +XM_295235,0.966,1.024,1.024,0.98,1.111,1.049,1.089,1.024,1.081,1.072,1.232,1.047,0.993,0.933,0.862,0.859,1.037,1.05,0.805,0.942,1.009,1.115,1.203,1.014,0.99,1.035,0.983,1.036,1.086,0.983,0.967,0.967,0.982,1.0,1.015,0.957,0.915,0.919,1.006,0.952,1.057,1.004,0.77,1.011,0.964,0.942,1.067,1.093,1.025,1.045,0.977,0.997,0.934,0.952 +XM_295258,1.082,1.059,0.97,0.928,0.859,1.02,1.059,1.086,1.022,1.038,1.043,0.98,1.015,1.046,1.399,0.978,1.17,1.179,1.031,0.969,0.966,1.022,0.987,0.918,0.955,1.047,1.074,0.997,1.076,1.0,0.983,0.988,1.208,1.105,0.997,0.88,1.148,1.084,1.043,0.978,0.93,1.025,1.198,0.894,0.853,0.962,0.918,0.914,0.893,1.087,0.954,0.912,0.946,1.123 +XM_295262,1.0,1.021,1.123,1.025,0.973,1.035,0.858,1.02,1.128,0.963,1.04,0.978,1.024,0.966,0.858,0.966,1.013,0.928,0.966,0.898,0.952,1.031,0.946,1.006,0.917,1.107,1.053,0.991,1.137,0.993,0.949,1.037,0.992,1.02,0.99,0.889,1.014,1.046,1.087,1.097,0.971,0.974,1.036,1.105,1.005,0.994,1.047,1.047,1.139,0.978,1.001,0.987,0.934,0.977 +XM_295263,1.21,1.15,0.973,0.853,1.055,0.922,1.005,0.911,0.942,0.897,0.841,1.11,1.094,1.254,1.041,0.92,1.125,1.196,1.195,0.93,0.933,0.89,0.802,1.074,1.127,1.146,1.09,1.055,1.248,0.919,0.95,1.066,1.107,1.038,1.286,1.156,1.101,0.94,0.913,0.991,1.234,1.087,1.091,1.116,0.932,0.891,0.989,1.001,0.933,0.963,1.021,0.997,1.169,0.944 +XM_295269,1.008,0.988,1.029,1.041,0.969,1.048,0.82,0.853,1.012,0.94,0.874,0.925,0.985,1.008,0.994,0.991,1.095,0.929,1.02,1.019,1.012,1.116,0.963,0.962,1.089,0.925,1.021,0.906,0.864,1.032,0.97,0.945,1.0,1.022,0.932,1.062,1.013,0.966,1.062,1.126,0.945,1.059,1.019,0.949,0.909,0.969,0.96,1.044,0.905,1.054,1.079,1.091,0.999,0.896 +XM_295270,0.975,1.049,1.002,1.008,0.897,0.96,1.113,0.966,0.961,0.926,1.084,1.058,1.016,1.016,1.127,1.082,0.968,0.948,0.994,0.962,0.993,1.118,0.879,0.923,1.032,1.052,1.162,0.971,0.902,1.009,1.214,0.996,1.055,0.849,0.994,0.925,1.091,0.883,0.971,0.959,1.001,0.991,1.031,1.128,0.972,1.028,0.976,1.023,0.999,0.963,1.023,1.063,1.186,1.124 +XM_295283,1.014,0.936,1.042,0.962,0.934,0.949,1.011,1.188,1.046,1.013,0.997,1.047,1.068,1.16,1.05,0.95,0.938,1.081,0.951,1.008,1.198,1.031,1.099,1.007,0.973,0.951,0.935,0.993,1.09,1.01,1.083,1.034,1.142,0.986,0.94,0.972,0.975,1.146,0.917,0.959,1.108,1.138,1.05,0.882,0.848,1.048,0.974,0.903,1.044,1.056,0.961,0.933,0.963,0.994 +XM_295309,1.051,1.062,1.169,0.982,0.993,0.966,1.126,1.047,1.032,0.926,0.979,1.038,1.022,1.046,0.98,1.11,1.111,1.011,1.024,1.012,0.981,1.053,0.888,1.101,1.064,0.999,0.996,0.97,1.326,0.934,1.107,0.943,1.075,0.874,1.142,1.054,0.998,1.013,0.91,1.059,0.922,0.993,1.019,0.86,0.959,0.978,0.817,1.128,1.018,0.95,1.08,1.005,1.025,0.941 +XM_295348,1.008,1.029,1.053,1.034,0.977,0.896,1.03,0.984,0.957,0.907,1.079,0.974,1.072,0.995,0.889,0.921,0.933,1.076,1.167,1.014,1.01,1.088,1.015,1.15,0.99,0.9,0.988,0.975,1.217,1.008,1.023,1.044,1.052,1.027,0.916,1.084,0.921,0.898,1.029,1.038,1.042,1.022,1.047,0.936,0.939,1.03,1.005,1.031,1.0,0.905,1.134,1.059,0.972,1.056 +XM_295580,0.998,0.936,1.157,0.948,1.16,0.933,1.097,1.047,0.949,0.942,0.929,0.895,1.024,0.857,0.919,1.043,1.038,0.999,0.894,0.957,1.01,1.025,0.991,0.885,1.028,1.151,0.961,1.034,1.345,1.008,1.107,1.037,0.997,1.001,0.976,0.973,0.945,0.952,1.001,0.987,0.965,0.874,1.15,0.887,1.009,0.946,0.967,1.02,1.072,0.903,1.018,1.085,1.003,0.972 +XM_295629,1.071,1.238,1.047,1.11,0.988,0.901,0.939,0.951,0.942,1.049,0.955,0.971,1.031,1.143,1.083,0.942,1.055,1.098,0.955,1.008,0.943,1.028,0.913,0.961,0.946,1.047,1.168,0.943,0.863,0.957,0.983,0.952,1.0,1.098,0.955,1.067,1.06,0.944,1.004,1.004,1.055,1.009,1.002,0.986,1.014,1.048,1.009,0.955,0.982,1.058,1.006,1.08,0.869,1.109 +XM_295746,0.984,0.923,0.946,0.967,0.835,1.038,0.929,0.946,1.012,1.082,0.835,1.02,0.902,0.86,0.869,0.935,1.144,0.868,0.92,1.021,0.878,1.044,0.887,1.02,0.995,1.034,1.032,1.047,0.811,0.986,0.975,0.955,1.001,1.022,1.021,1.086,0.985,0.912,0.964,1.11,0.916,1.051,0.847,1.025,0.882,1.027,0.948,1.028,1.028,0.998,0.951,1.049,1.008,0.996 +XM_295754,1.037,1.033,0.961,0.975,0.971,0.975,1.18,0.944,1.0,0.885,1.142,0.952,1.071,1.171,1.035,0.969,0.988,1.042,0.983,1.01,1.069,0.967,1.068,1.077,1.091,0.999,0.895,1.045,1.015,1.075,1.127,1.057,0.918,0.947,0.915,0.964,1.007,0.938,0.927,1.068,0.992,1.107,0.905,1.005,0.986,1.008,1.029,0.979,0.964,1.039,1.0,1.058,0.98,0.918 +XM_295834,0.998,1.187,0.967,0.973,0.871,0.993,0.965,1.171,1.058,1.079,0.986,1.043,1.008,0.934,0.867,0.913,1.105,1.163,1.065,0.953,0.92,0.935,1.082,1.195,1.058,1.065,1.007,1.02,0.924,0.93,0.972,1.066,1.099,0.983,1.233,0.978,0.913,0.829,1.044,1.118,0.977,1.013,0.855,1.097,0.925,0.974,1.046,1.132,1.079,1.002,1.014,0.944,0.902,0.961 +XM_295865,1.078,0.971,0.935,1.14,1.013,0.972,0.944,0.847,0.89,0.987,1.025,1.006,0.924,0.836,0.896,1.244,1.09,1.157,1.067,0.979,1.105,1.086,0.99,1.128,1.142,1.032,1.117,0.906,1.31,0.964,0.965,1.06,0.922,0.882,0.977,0.977,1.027,0.991,1.103,0.942,0.934,1.057,0.918,1.036,0.838,1.076,0.906,0.923,1.111,1.006,1.061,0.98,1.123,0.957 +XM_295995,1.097,1.0,1.059,0.996,1.083,0.986,1.001,1.22,1.052,1.046,0.91,1.098,0.96,1.11,0.919,0.984,0.992,1.05,0.904,1.026,1.083,0.985,1.081,1.002,1.0,1.098,0.931,0.994,0.982,0.853,0.962,1.077,0.889,1.115,0.991,0.937,0.98,1.11,0.932,0.958,1.082,0.966,1.045,1.02,0.98,0.911,1.052,1.094,0.902,0.989,1.101,1.005,1.087,0.847 +XM_296568,1.034,0.939,0.913,0.974,0.893,1.12,1.1,0.843,1.006,1.162,1.017,0.945,1.13,1.058,1.063,0.942,0.931,1.011,0.995,0.994,1.018,1.081,1.035,1.023,1.139,0.999,0.997,0.952,1.22,1.012,1.066,0.939,1.054,0.94,1.11,1.05,1.012,0.974,0.963,0.979,0.962,1.099,0.975,0.857,1.018,0.962,0.893,1.216,1.008,1.057,0.961,0.994,1.016,1.056 +XM_296570,1.092,1.109,1.111,0.94,0.998,0.997,0.818,1.108,0.973,0.98,0.856,0.958,1.004,1.007,1.058,1.015,1.085,0.97,1.059,0.927,0.912,1.11,1.009,1.014,0.993,1.053,1.035,0.848,0.887,1.017,1.016,0.964,0.975,1.048,1.022,1.044,1.003,0.853,1.041,0.93,0.925,0.91,1.169,1.002,0.959,1.002,0.974,1.104,0.95,1.061,0.998,1.008,1.048,0.964 +XM_296641,1.056,1.034,1.163,1.059,0.968,1.113,1.128,0.979,1.083,0.989,1.101,0.971,0.899,1.047,1.098,1.223,0.928,1.004,1.024,0.968,1.088,0.959,1.078,1.084,1.035,1.023,0.967,0.96,1.083,1.178,1.069,0.96,0.951,0.898,1.001,0.902,0.992,0.887,1.0,0.865,0.976,0.9,1.212,1.014,0.962,1.099,1.031,1.09,1.039,1.024,0.959,1.0,1.055,1.004 +XM_296758,1.036,1.009,1.045,1.025,0.967,0.982,0.946,1.033,0.993,0.931,1.132,0.942,1.117,0.982,1.231,1.086,0.975,0.991,0.928,1.092,1.017,0.855,0.883,0.997,1.083,0.958,0.936,1.036,1.142,1.004,0.944,1.02,0.995,0.978,1.067,0.955,1.076,1.109,0.99,0.981,1.037,0.969,1.08,1.076,0.934,0.961,1.031,0.981,1.017,0.92,1.065,1.008,0.936,0.974 +XM_296817,1.044,0.956,0.992,1.149,0.829,1.053,0.961,1.07,1.04,1.024,1.054,0.976,0.975,1.059,0.85,0.983,1.088,0.991,0.939,0.944,0.934,0.937,0.942,0.879,1.001,1.17,1.137,1.127,1.05,0.951,1.075,0.894,1.079,1.092,1.014,1.165,1.05,1.102,0.955,1.039,0.997,1.099,1.024,1.092,0.983,1.247,1.056,1.142,1.079,1.001,0.98,1.002,0.958,1.029 +XM_296821,0.944,1.278,0.967,0.968,0.879,1.089,1.049,1.271,0.977,1.015,1.136,0.939,1.05,1.063,0.995,1.006,0.986,1.031,0.992,1.075,1.109,0.925,1.004,0.979,0.952,0.982,1.164,1.058,0.947,1.113,0.905,0.993,1.453,1.151,0.899,0.865,1.001,0.965,1.059,0.994,0.872,1.025,0.875,1.144,1.034,0.881,0.958,0.91,0.994,0.995,1.019,1.006,0.931,1.001 +XM_296990,1.06,1.026,1.016,1.038,0.992,0.982,1.008,0.924,0.985,0.855,1.06,1.077,1.028,0.926,1.154,1.056,1.0,0.948,1.1,0.953,0.97,0.975,0.974,1.046,0.972,0.991,0.956,0.96,0.834,1.023,0.991,0.964,0.948,1.058,1.056,0.96,0.996,1.017,0.899,1.067,1.057,0.971,1.009,1.066,1.036,0.959,1.112,1.005,1.058,1.028,1.006,1.11,1.043,0.93 +XM_297135,0.903,0.925,0.939,1.071,1.022,0.958,0.979,1.022,1.006,1.076,1.001,1.044,1.107,0.962,0.935,0.925,1.061,0.875,0.991,1.001,0.885,1.021,0.96,0.948,0.981,1.15,0.911,1.167,0.768,1.157,0.949,1.117,0.948,0.998,1.142,0.985,1.002,1.056,1.005,0.88,1.031,0.894,1.117,1.104,1.112,0.984,0.975,0.965,0.981,1.043,0.946,0.927,0.957,0.89 +XM_297260,0.954,0.792,0.959,1.03,1.001,1.043,1.047,1.018,1.049,1.019,0.959,0.979,1.007,0.904,0.931,0.918,1.03,1.092,0.941,0.971,1.146,0.988,1.039,1.079,1.002,0.951,1.075,1.008,1.218,1.06,1.075,1.008,1.039,1.017,1.024,0.999,0.999,0.996,1.008,1.024,1.043,1.152,0.92,0.945,1.061,1.027,0.862,1.112,1.131,1.029,0.952,1.053,0.957,0.993 +XM_297687,0.789,1.719,0.716,1.39,0.733,1.592,1.322,0.623,0.772,0.742,1.322,0.669,0.731,0.624,1.117,0.947,0.621,1.316,0.606,1.59,0.67,0.717,1.119,0.688,1.839,0.741,0.708,0.709,2.03,1.941,0.654,1.14,1.09,2.492,0.69,0.668,1.032,0.669,2.096,0.908,0.625,2.343,1.127,1.091,0.793,1.068,0.751,0.737,0.92,0.718,1.194,0.747,0.757,1.518 +XM_297701,0.944,0.955,1.005,0.978,1.012,1.011,1.065,0.976,1.072,0.987,0.937,0.957,1.03,1.046,0.79,1.04,1.082,0.927,0.975,0.936,0.993,0.944,0.984,0.968,1.106,0.926,0.897,1.027,0.889,1.02,1.053,1.084,0.971,1.018,1.07,1.06,0.936,0.986,1.035,0.911,1.136,0.957,1.11,1.086,1.05,0.883,1.001,1.01,1.032,0.944,1.034,0.991,1.048,0.905 +XM_297763,1.002,0.983,1.054,0.945,1.003,1.08,1.095,0.802,1.108,1.003,1.0,0.911,0.979,1.008,1.021,1.097,0.964,0.978,0.921,1.042,1.05,1.163,0.928,1.106,1.048,0.887,1.032,1.046,1.081,0.965,1.026,1.095,1.118,1.083,0.908,0.893,0.921,0.942,0.978,0.953,1.207,0.927,1.113,1.051,0.97,1.126,1.03,0.998,0.906,0.989,0.952,0.971,0.957,0.917 +XM_297976,0.889,1.087,0.992,1.016,0.916,1.022,1.025,0.989,1.149,1.009,1.044,0.939,0.894,1.175,0.952,1.015,0.983,1.002,0.929,0.978,1.226,1.0,1.053,1.158,1.035,0.987,1.053,0.836,0.895,0.915,0.978,1.08,1.067,0.992,1.061,0.98,0.965,1.024,1.011,0.968,0.982,1.017,0.824,1.014,1.047,1.033,0.942,0.993,1.125,0.843,0.924,0.999,0.961,1.096 +XM_298053,1.212,1.074,0.95,0.989,0.963,0.953,1.039,1.177,0.925,1.238,0.914,0.919,0.987,1.091,0.945,1.09,0.969,0.99,1.14,0.958,1.066,0.956,0.893,0.956,1.077,0.941,0.891,1.028,0.822,1.009,1.134,0.883,0.866,0.951,0.96,0.98,0.925,0.938,1.238,1.009,1.164,0.978,0.931,0.919,1.165,1.089,1.051,1.041,0.899,0.981,0.97,0.95,1.056,1.276 +XM_298151,1.174,1.066,1.088,0.963,1.01,0.853,1.094,0.983,1.067,1.044,0.972,0.956,0.864,1.185,1.008,0.985,0.942,0.918,0.905,0.994,1.172,1.004,1.055,0.969,1.01,0.952,0.818,1.135,1.182,0.882,0.978,0.915,1.064,0.961,0.987,0.968,0.972,0.975,1.021,0.946,1.064,1.12,1.006,0.774,1.14,1.001,1.04,1.288,0.933,1.207,0.921,0.986,0.962,1.067 +XM_298450,0.942,0.963,1.074,1.072,0.963,0.925,1.013,0.827,0.867,1.018,1.129,1.011,1.06,1.379,1.036,1.181,0.945,1.082,1.154,1.078,1.0,0.971,1.01,1.034,1.042,0.972,0.904,0.98,0.998,0.919,1.11,0.979,0.874,0.966,1.042,1.011,0.973,0.943,1.041,1.093,0.974,1.008,0.916,0.904,0.86,1.154,0.889,1.031,0.996,1.063,1.008,0.93,0.941,1.107 +XM_298479,0.965,1.17,0.91,0.936,1.005,0.932,1.198,0.866,0.936,1.034,0.975,0.963,1.071,0.824,0.893,0.881,1.112,0.947,0.916,0.877,0.879,1.1,1.037,0.926,1.066,0.989,1.0,1.027,0.831,1.019,1.102,1.061,0.936,1.002,0.964,1.056,0.963,1.067,1.014,0.937,1.098,0.876,0.806,0.973,1.033,0.896,0.98,1.073,0.958,1.004,1.026,0.934,1.026,0.96 +XM_298643,0.84,0.935,1.077,0.979,1.014,0.928,0.829,1.0,1.024,1.033,1.102,1.064,0.965,0.959,1.078,0.971,1.062,0.919,0.985,1.075,0.91,1.004,1.084,0.98,0.941,0.878,0.978,1.0,1.036,1.016,0.945,1.063,0.939,1.019,0.83,0.924,0.995,0.989,1.022,1.065,0.977,1.068,1.432,0.924,1.048,1.062,0.923,0.971,0.924,1.077,0.995,0.956,1.128,0.948 +XM_298673,0.971,1.01,1.008,1.02,1.025,1.009,0.982,0.874,1.054,0.985,0.991,1.035,0.977,1.044,0.765,0.955,1.026,1.055,1.125,1.028,0.95,1.029,0.999,1.06,0.921,1.102,0.974,1.009,0.718,0.943,1.117,0.932,0.981,0.968,0.93,1.063,1.026,0.918,1.08,0.979,1.034,0.904,0.864,0.938,1.114,1.009,1.1,0.986,1.019,1.014,1.001,0.928,1.001,1.011 +XM_298759,1.075,1.037,0.886,1.058,1.038,0.976,1.072,1.069,1.039,0.965,1.058,0.972,1.011,0.876,0.973,0.868,0.98,0.956,0.83,0.919,1.002,1.109,0.991,0.878,1.097,1.06,0.985,0.889,0.825,1.013,0.885,1.061,0.985,0.959,0.946,0.919,1.024,0.993,1.135,0.923,1.158,0.896,0.889,0.97,1.094,1.036,0.968,1.073,1.017,1.04,1.054,0.965,0.835,0.939 +XM_298875,0.925,0.963,1.106,0.933,0.931,0.949,0.885,0.961,1.122,0.98,0.971,1.047,0.883,1.033,1.0,1.031,1.042,0.936,1.122,0.961,0.862,1.052,0.93,1.003,1.076,1.073,0.99,0.988,0.999,1.036,0.959,1.011,0.983,0.878,1.125,1.029,0.993,1.049,1.017,1.056,0.935,0.908,0.935,1.136,0.977,0.984,1.044,1.035,0.962,1.0,1.196,0.922,0.976,1.094 +XM_298990,0.854,1.02,1.143,0.917,0.911,0.965,1.328,1.132,0.876,0.866,1.083,1.0,1.083,1.482,0.867,0.98,1.021,0.905,0.921,0.98,1.233,0.962,0.963,1.055,0.943,1.097,0.987,1.076,1.642,1.027,0.897,1.001,1.07,1.024,1.035,0.942,0.983,1.047,1.005,0.973,0.939,1.05,1.125,0.962,0.836,1.078,1.074,0.978,0.94,0.925,1.044,1.015,1.013,0.96 +XM_299035,0.975,0.98,0.993,1.08,1.201,1.002,1.073,0.99,0.933,0.913,1.0,1.04,1.097,0.898,1.053,1.024,0.939,0.925,1.074,0.977,0.961,1.01,1.009,1.05,1.067,1.063,1.135,0.958,1.181,1.132,1.026,1.049,1.073,1.052,0.951,1.143,0.999,0.987,1.03,1.01,1.013,0.952,1.038,1.022,1.003,1.093,0.895,0.991,0.993,0.973,0.995,0.987,0.939,0.893 +XM_299058,1.12,0.969,1.021,0.933,1.029,1.06,1.075,1.155,0.997,1.069,1.037,1.015,1.083,0.887,1.258,1.011,0.935,0.911,0.909,0.975,1.091,1.163,0.946,0.936,1.004,0.944,0.955,1.026,1.357,0.97,0.977,0.926,0.925,0.788,1.056,0.971,0.966,0.972,1.083,1.081,0.954,0.905,0.949,0.971,1.043,1.0,0.927,1.024,1.001,1.055,1.012,1.087,0.945,1.033 +XM_299180,1.052,1.087,0.987,1.061,1.159,1.046,0.885,0.873,0.911,1.03,0.93,1.124,1.071,1.035,0.903,1.071,1.146,0.948,1.064,0.987,1.157,0.961,0.948,0.949,0.911,1.001,0.996,1.088,0.746,0.945,1.005,0.928,1.023,0.996,0.941,1.036,0.966,1.113,0.932,1.058,1.034,1.117,0.875,0.889,0.969,1.023,1.059,0.927,1.047,0.986,1.008,1.027,0.934,0.964 +XM_299507,1.062,1.068,0.982,1.058,0.931,1.045,0.941,1.007,0.93,1.006,1.018,1.021,0.951,0.986,1.025,1.026,1.009,0.992,0.895,1.069,1.005,1.071,1.096,0.957,0.944,1.138,0.974,0.979,0.87,0.986,1.049,0.86,1.081,0.966,0.948,1.172,1.1,0.91,0.956,1.039,1.038,0.99,0.946,0.98,0.974,0.959,1.051,1.0,1.038,0.983,0.97,0.963,0.999,1.004 +XM_299526,1.066,1.087,1.173,0.978,0.958,1.009,1.125,0.949,0.968,0.954,1.038,1.0,1.091,1.129,0.948,0.924,1.0,0.91,1.054,0.865,0.992,0.991,0.967,0.941,1.038,1.06,0.928,1.024,1.107,1.026,0.964,0.984,0.905,0.895,1.04,0.873,0.979,1.03,0.933,1.049,0.962,0.985,1.011,1.036,1.028,1.035,1.013,1.029,0.926,1.073,0.951,0.951,1.015,0.967 +XM_299541,1.043,0.978,1.085,0.938,1.063,0.947,1.059,1.057,1.065,1.2,0.93,1.099,1.073,0.933,1.011,0.885,1.073,0.927,1.123,0.964,0.961,0.995,1.042,1.026,0.937,1.021,0.96,0.99,0.896,1.022,0.978,0.927,1.041,1.005,0.987,1.013,0.999,0.919,1.068,0.951,1.018,1.085,0.982,0.964,0.925,1.013,0.99,1.024,0.922,0.987,1.06,0.9,1.075,1.0 +XM_299549,1.023,1.07,1.078,1.005,1.058,1.02,0.896,0.922,0.969,0.814,1.069,1.014,0.964,0.839,1.074,0.998,0.944,0.928,0.976,0.968,1.035,1.078,0.92,0.979,0.948,1.14,1.014,1.075,1.151,0.945,1.04,0.973,1.033,1.225,1.015,0.96,0.951,0.981,0.999,0.915,0.895,1.066,1.157,1.007,1.054,0.961,1.047,0.93,0.982,0.96,1.028,0.992,1.049,0.998 +XM_299667,1.129,0.901,1.084,0.928,1.064,0.992,1.199,1.056,0.987,1.159,1.039,0.907,0.988,1.072,0.981,0.999,1.005,0.87,1.0,0.893,0.981,0.934,0.942,1.008,1.091,1.01,0.92,0.991,1.207,1.025,0.914,0.938,0.992,1.02,1.065,1.026,1.036,0.986,0.934,0.897,1.035,0.949,1.009,1.0,1.099,1.011,1.032,0.971,0.959,1.136,0.898,0.972,1.025,1.049 +XM_299791,0.914,0.948,1.023,1.086,0.963,1.033,0.88,0.977,1.058,0.994,1.05,1.171,1.024,1.061,1.056,1.023,1.039,1.025,0.943,0.988,1.1,0.996,1.085,1.031,0.994,0.961,1.094,1.023,0.999,0.998,0.956,1.093,0.949,0.939,1.058,1.091,0.947,1.029,0.911,1.056,1.075,0.975,1.009,0.877,0.974,1.03,0.965,1.053,1.063,1.047,1.193,0.905,0.977,0.949 +XM_299909,1.067,0.945,0.92,0.959,0.882,0.987,0.954,1.158,1.004,1.124,0.953,0.938,0.935,1.046,0.897,1.056,0.92,1.168,0.907,1.09,1.237,1.065,1.039,0.998,1.045,1.078,0.835,1.036,1.389,1.019,1.013,0.925,0.967,1.032,0.923,1.081,1.013,0.864,0.996,0.959,1.035,0.981,0.94,0.92,1.082,0.988,1.002,0.921,0.977,1.135,1.081,1.06,1.046,1.102 +XM_300075,0.977,0.999,0.958,1.077,0.876,1.045,0.997,0.962,0.988,1.044,0.943,1.021,1.065,0.998,0.908,0.972,1.07,1.132,1.082,0.98,0.929,1.009,1.111,0.983,1.063,1.106,0.917,0.896,0.947,0.994,0.974,0.901,1.012,1.186,1.072,1.072,0.936,0.962,0.944,1.028,1.011,0.896,1.056,0.997,1.043,1.058,1.034,0.977,1.071,0.956,1.021,1.077,0.965,1.102 +XM_300555,0.955,0.94,0.896,0.965,1.041,1.103,0.857,1.018,1.012,1.17,0.967,1.008,1.076,1.12,0.812,1.037,0.919,0.931,0.904,0.947,1.08,0.954,1.011,0.96,1.052,0.952,1.094,1.047,1.337,1.098,1.043,1.08,1.007,0.876,1.094,1.052,0.923,0.989,1.02,0.977,0.979,1.059,0.923,0.893,1.007,0.98,1.04,1.082,1.088,1.029,1.075,1.052,1.034,1.036 +XM_300591,0.926,0.962,1.115,1.013,0.958,0.955,1.38,1.018,1.112,1.026,0.983,0.903,0.882,0.834,1.024,0.974,0.953,0.953,0.895,0.928,0.96,1.064,1.056,0.94,1.085,0.803,0.9,1.003,1.374,1.076,0.989,1.0,0.978,0.983,0.986,1.0,1.051,1.072,0.941,0.949,1.016,0.992,1.099,0.956,0.923,1.052,0.996,1.036,0.975,0.907,1.003,1.16,0.927,0.92 +XM_300594,0.821,1.026,1.071,1.002,0.905,0.966,1.163,0.801,0.981,1.061,0.961,1.042,1.023,1.081,1.066,0.97,1.03,0.978,1.055,1.036,0.886,0.904,1.022,1.054,0.943,0.779,1.02,0.938,0.989,0.947,0.985,0.992,1.022,1.044,1.163,0.916,0.991,1.08,1.153,0.995,0.987,1.013,1.069,1.2,1.177,0.869,0.995,1.099,0.897,0.995,0.972,0.84,1.045,1.035 +XM_300674,1.069,1.091,0.939,1.067,1.045,0.956,0.869,1.093,1.005,1.083,0.883,0.992,1.031,1.142,0.999,1.024,0.985,0.994,0.979,1.044,1.0,1.011,0.987,1.044,0.789,1.029,0.992,0.948,0.843,1.042,0.99,1.076,0.943,1.048,0.975,1.023,0.975,0.945,1.035,1.148,1.148,1.006,0.93,0.992,1.112,1.118,0.921,1.038,0.896,1.079,0.907,0.912,0.924,1.007 +XM_300713,0.94,1.006,1.008,0.857,0.937,0.943,0.861,0.929,1.035,0.977,1.041,0.994,1.093,1.116,0.959,1.122,0.92,1.022,1.011,0.986,1.014,1.057,1.012,1.011,0.984,1.06,1.06,0.991,0.81,1.022,1.072,1.152,1.005,1.053,1.052,0.978,0.952,1.082,1.03,1.173,0.896,1.051,0.933,0.888,0.932,0.932,0.953,0.999,1.04,0.927,0.962,0.844,0.925,0.998 +XM_300772,0.955,1.039,1.009,0.953,1.102,1.005,0.932,0.91,0.91,1.075,1.077,1.07,1.059,1.128,0.9,1.018,0.865,0.966,0.895,1.039,0.988,1.116,0.961,1.024,1.146,1.043,0.912,1.014,1.001,0.931,1.087,1.047,0.998,0.87,1.077,1.076,0.935,1.011,0.989,0.972,0.9,0.977,1.295,0.937,1.085,0.973,0.949,0.936,1.007,0.975,1.009,1.004,1.094,1.006 +XM_300804,1.037,1.1,0.994,0.98,1.208,0.911,0.787,0.851,0.895,1.007,1.047,1.091,0.99,0.904,0.934,1.009,1.061,1.108,1.083,0.95,0.851,1.16,1.051,0.976,0.971,1.002,0.969,1.016,0.81,1.024,0.993,1.032,0.879,0.905,1.013,0.962,0.787,1.052,0.943,1.057,1.005,1.047,0.752,1.065,0.922,0.995,1.036,1.092,1.011,1.018,0.845,0.973,0.967,0.876 +XM_301047,0.919,1.095,0.999,1.094,0.948,1.059,1.452,0.987,1.046,0.903,1.156,0.943,0.94,0.975,1.449,0.957,1.002,1.027,0.84,1.116,1.008,0.919,1.0,0.992,1.118,0.966,1.025,1.073,1.463,0.982,0.925,1.218,1.175,1.034,0.993,1.04,1.126,1.066,0.932,0.903,1.07,0.807,1.271,0.925,0.941,0.949,1.057,1.048,1.045,1.041,1.0,0.973,1.119,1.025 +XM_301493,1.11,1.07,1.043,1.043,1.0,0.954,0.921,1.145,1.063,0.971,1.049,0.973,0.959,0.878,0.907,1.055,1.001,1.064,0.881,1.05,0.919,1.05,0.992,1.067,1.026,1.027,0.884,1.02,1.173,0.988,1.036,0.972,0.999,0.992,1.228,0.98,1.044,1.067,0.9,1.019,0.999,0.966,1.198,0.958,1.082,0.956,0.92,1.021,0.914,1.047,0.993,1.177,1.013,1.043 +XM_301544,1.083,1.067,0.934,0.98,0.953,1.016,1.107,1.328,0.964,0.926,0.956,1.128,1.041,1.061,1.032,0.992,0.932,1.039,0.869,1.035,0.985,1.149,0.936,0.878,1.069,1.057,0.954,0.882,1.266,0.999,1.004,0.85,0.943,1.168,0.985,0.983,1.037,0.906,1.048,1.038,0.984,1.036,1.048,0.914,0.941,1.067,1.005,0.916,1.007,1.048,1.116,0.906,1.049,1.016 +XM_301580,1.099,0.968,1.014,0.945,0.916,0.953,1.006,0.974,0.997,1.086,1.09,0.992,1.1,1.118,1.027,1.063,0.996,0.937,1.039,0.959,0.98,1.101,0.969,1.006,1.028,1.055,1.1,1.036,0.982,1.08,1.104,1.089,1.021,1.042,0.947,1.029,1.097,0.888,1.048,0.939,0.903,0.945,0.946,1.037,1.051,1.002,0.998,0.994,0.962,0.914,1.079,0.966,0.92,0.968 +XM_302607,0.899,1.062,1.028,0.946,1.005,0.973,1.413,1.289,1.052,1.127,0.972,0.955,0.912,0.953,0.795,0.994,0.891,0.911,0.987,1.116,0.964,1.004,0.935,1.063,0.993,1.084,1.103,1.043,0.86,0.942,1.096,1.024,0.89,1.051,1.045,1.075,1.032,0.974,0.922,0.997,0.816,1.002,1.147,1.009,1.104,0.899,1.06,1.109,1.041,0.928,0.998,0.896,0.968,0.949 +XM_302617,0.526,1.874,0.763,0.804,0.661,1.063,1.117,0.591,0.649,0.627,1.073,0.64,0.559,0.585,0.826,1.265,0.652,0.844,0.6,1.442,0.547,0.641,1.789,0.605,0.953,0.598,0.745,0.672,0.638,1.519,0.658,1.53,0.766,1.778,0.591,1.468,0.981,0.635,1.842,1.636,0.684,1.216,0.476,1.006,0.706,0.994,0.994,0.604,0.957,0.666,1.316,0.871,0.686,1.198 +XM_302657,1.035,1.028,1.068,1.11,1.119,0.963,0.945,1.104,1.098,0.833,1.007,0.959,0.912,1.186,0.938,0.976,0.952,1.072,0.802,1.103,1.191,0.922,0.997,1.023,0.985,1.001,0.983,0.964,1.135,1.115,0.962,0.925,0.967,0.936,0.888,1.149,1.063,1.043,1.055,1.032,1.053,0.955,1.168,1.021,0.994,0.985,0.893,1.048,0.995,1.056,1.033,0.979,1.267,1.109 +XM_302683,0.968,1.111,1.122,0.865,0.996,0.994,0.818,0.72,1.077,0.961,0.848,1.043,0.843,0.888,0.982,0.965,1.007,0.97,1.256,1.003,0.816,0.978,1.246,0.946,0.791,1.197,1.255,0.997,0.543,1.077,0.824,2.265,0.899,1.268,0.735,1.196,0.881,0.897,1.069,1.059,0.957,1.084,0.633,1.159,1.028,0.897,1.034,0.989,0.846,0.955,0.953,0.859,0.93,1.17 +XM_302701,1.041,1.021,0.988,1.011,1.091,0.981,1.251,0.916,0.968,0.953,0.975,0.907,0.99,1.034,1.206,0.89,0.981,1.059,1.029,1.024,0.845,0.965,0.917,0.917,1.02,1.299,1.044,1.023,1.321,0.948,1.125,1.054,0.998,1.09,0.91,0.982,0.905,1.063,1.045,0.919,1.035,0.871,1.22,0.887,0.954,1.046,0.978,1.014,1.251,0.967,0.87,1.046,0.948,1.09 +XM_302731,0.953,0.999,0.964,1.0,1.005,1.029,1.106,0.969,1.11,0.832,0.944,1.038,0.975,0.994,1.188,1.027,1.117,0.949,0.949,1.093,1.015,1.063,0.922,1.061,0.978,0.967,0.874,1.014,0.896,1.158,1.004,1.06,0.953,0.91,1.043,0.986,1.007,1.06,0.98,0.968,1.088,1.024,1.357,0.894,1.007,1.087,1.071,0.958,0.932,1.081,1.008,1.031,1.026,0.917 +XM_302732,1.138,0.94,0.954,1.0,0.986,1.04,1.231,1.003,1.003,1.068,1.101,1.014,0.887,1.04,0.924,1.041,1.037,0.935,0.91,0.94,0.868,1.076,0.976,1.067,0.918,0.949,1.053,1.072,1.175,0.955,1.075,0.934,1.0,0.996,0.95,1.043,0.945,1.018,0.985,0.996,0.87,1.021,1.055,0.906,0.983,0.902,1.031,0.933,0.969,0.998,0.997,1.046,1.053,0.96 +XM_302809,1.026,1.128,0.936,1.088,1.107,0.979,1.162,1.043,1.009,1.086,1.0,0.956,1.133,0.972,0.994,0.985,1.11,1.072,0.958,0.959,0.907,1.049,1.004,0.993,0.985,1.05,0.999,0.976,1.277,0.908,0.952,0.934,1.002,1.019,0.986,0.956,1.069,0.89,0.948,0.951,1.03,0.966,1.176,1.024,1.021,0.978,0.921,1.084,0.888,0.981,1.005,0.952,1.029,1.019 +XM_302835,1.0,0.994,1.078,1.035,0.943,0.98,1.031,1.009,0.95,1.049,1.079,1.03,0.94,1.069,1.025,0.949,1.125,0.948,1.056,0.994,1.027,1.012,0.903,0.941,1.018,1.122,0.986,1.123,0.889,0.898,1.078,0.902,1.182,0.995,1.094,1.002,0.99,0.92,0.894,0.928,1.113,0.985,0.841,0.949,1.102,1.02,1.29,1.002,1.076,1.121,1.005,1.036,1.078,0.931 +XM_302858,1.007,0.982,0.965,0.989,0.955,1.01,1.089,0.904,0.988,0.933,1.132,1.054,1.009,1.129,1.416,0.923,0.977,0.997,1.045,1.132,0.949,1.022,1.085,1.138,1.107,0.974,0.97,0.934,1.188,1.113,1.056,1.108,1.055,0.838,1.003,0.924,0.997,1.017,0.8,0.919,1.13,0.983,1.022,1.108,1.157,1.134,1.043,0.985,1.024,1.098,1.03,0.938,0.973,0.904 +XM_302902,1.028,0.943,1.004,0.986,1.077,0.955,1.168,1.202,0.956,0.883,0.982,0.991,0.965,1.031,0.853,0.992,0.986,1.037,1.019,1.11,1.089,0.941,1.013,1.041,0.973,1.032,1.046,1.074,1.635,1.036,1.024,0.98,1.155,1.07,0.984,1.015,0.997,0.995,0.948,0.957,0.893,0.919,1.152,0.994,0.991,1.008,1.03,1.15,1.138,1.006,1.089,1.03,1.013,0.944 +XM_302913,0.891,1.055,1.015,1.048,0.982,0.983,0.793,0.884,0.988,0.829,0.985,0.953,1.016,0.809,0.913,0.981,1.022,1.025,1.023,1.191,1.017,0.909,0.998,0.963,0.93,0.917,0.9,1.079,0.757,0.964,0.952,1.314,1.025,1.253,0.974,1.069,0.992,0.925,1.405,1.167,0.878,1.005,0.93,1.042,0.931,1.041,0.973,0.997,1.05,1.048,0.929,0.88,0.89,0.948 +XM_302915,1.005,1.041,0.993,0.996,0.903,1.084,1.022,0.96,0.925,0.983,1.002,1.025,1.013,0.83,0.961,0.976,0.984,0.991,0.839,1.02,1.075,0.994,0.963,1.036,1.035,1.016,0.908,1.053,0.96,1.01,0.912,1.12,1.051,0.91,1.039,1.026,0.954,1.124,0.982,0.998,0.994,1.019,1.026,1.018,1.028,1.057,1.038,1.076,0.898,0.894,0.957,0.962,0.958,1.015 +XM_302956,1.012,1.135,0.933,0.949,0.94,1.059,1.263,1.026,1.02,0.939,0.985,0.941,0.96,1.126,0.962,1.065,1.055,0.896,0.918,1.126,0.948,0.945,1.108,1.001,1.142,1.037,0.997,0.993,0.964,0.978,1.019,0.838,1.03,0.993,0.981,1.047,1.022,0.989,1.068,0.954,0.983,0.971,0.919,1.127,0.971,0.876,1.049,1.041,1.037,1.071,1.027,0.978,0.958,0.913 +XM_302993,0.936,1.0,1.043,0.952,0.996,0.958,0.87,1.048,1.006,0.976,0.988,1.11,1.036,1.04,0.882,0.953,1.121,0.983,1.0,0.906,1.032,1.146,1.03,0.943,1.036,1.029,1.201,1.093,0.974,1.033,1.079,1.03,1.001,0.982,1.105,0.981,0.978,0.937,1.002,1.057,0.99,0.93,0.855,1.104,0.992,0.953,1.017,1.003,1.035,0.987,1.088,0.957,0.893,1.041 +XM_303746,1.061,1.019,0.982,1.055,1.018,1.066,1.196,1.116,1.031,1.009,1.068,0.997,0.889,0.982,1.053,0.984,0.886,0.934,0.918,0.921,1.106,0.928,1.11,0.958,1.021,1.04,0.924,1.032,1.299,0.996,0.975,1.042,0.978,1.013,1.002,1.01,0.999,0.919,0.973,1.19,1.136,0.967,1.291,0.982,0.933,0.945,1.056,0.919,0.902,1.008,1.009,0.983,0.978,0.998 +XM_303839,0.884,0.984,1.041,0.978,1.037,0.963,1.117,1.075,0.958,0.904,1.114,0.992,0.877,1.18,1.044,1.035,1.085,1.078,0.857,0.952,0.884,1.075,0.931,0.986,0.972,0.976,0.99,1.096,0.882,1.073,0.974,1.009,0.927,1.021,0.989,0.976,0.99,0.906,0.981,0.905,1.011,0.989,1.031,1.001,0.951,0.996,1.021,1.036,0.871,1.077,0.973,1.034,1.059,1.054 +XM_304365,1.028,0.954,0.912,1.034,1.023,0.999,0.927,1.01,1.058,1.029,1.098,1.019,0.893,1.035,1.13,0.891,0.961,0.913,0.943,0.979,1.05,1.0,0.976,0.941,1.022,0.972,1.0,0.993,1.074,0.99,0.954,0.965,0.902,0.898,1.002,0.991,1.034,1.012,1.0,0.965,0.876,1.041,1.182,0.955,1.059,1.043,1.026,1.046,0.872,0.985,0.929,1.069,1.153,0.928 +XM_304482,0.978,1.051,1.054,0.923,0.951,1.028,0.87,1.128,0.989,0.946,1.143,0.957,1.001,0.977,0.986,0.993,0.96,0.999,0.98,0.978,0.99,0.87,1.013,1.003,0.99,0.951,0.939,1.143,0.821,1.06,1.003,1.09,1.289,0.874,0.882,1.017,1.08,0.963,1.049,1.259,1.035,0.925,1.244,1.015,0.923,1.002,1.001,0.877,0.874,0.899,1.094,0.907,0.961,1.002 +XM_304519,0.931,1.052,1.03,0.989,0.976,1.068,0.966,0.988,1.077,1.055,1.022,0.922,0.98,1.074,1.079,0.968,0.917,1.022,1.083,1.035,1.037,0.959,0.968,0.988,0.973,1.055,1.035,0.972,0.883,1.019,1.014,1.088,0.918,1.156,1.048,1.007,1.09,1.017,1.071,0.935,0.884,1.009,1.115,0.926,1.073,0.993,0.998,0.97,0.943,0.995,0.98,0.861,1.107,1.052 +XM_304531,0.925,0.983,1.068,0.955,0.922,0.981,1.195,1.194,1.008,0.906,0.994,1.01,1.093,1.012,1.213,0.956,0.88,1.101,0.959,0.944,0.985,0.844,1.111,0.964,1.002,1.049,0.923,1.023,1.43,0.907,0.973,0.96,0.975,0.877,0.942,1.065,1.049,1.056,1.006,1.077,1.047,1.01,1.167,1.035,0.825,0.938,1.022,1.148,0.969,1.018,1.0,0.993,1.012,1.035 +XM_304548,1.096,1.06,1.062,1.038,0.879,1.139,0.805,1.158,1.089,1.066,0.905,1.121,0.998,0.934,0.823,0.99,0.984,0.974,0.89,0.973,0.921,0.976,0.911,0.984,0.964,0.98,1.004,1.015,1.008,1.021,0.986,0.977,0.97,0.945,0.892,0.98,0.965,1.048,1.122,1.009,0.88,0.954,1.015,0.929,0.965,1.008,1.153,1.045,1.021,0.972,1.033,0.992,0.941,1.02 +XM_304573,0.983,0.997,1.011,0.956,0.949,1.04,1.058,1.01,0.98,1.146,0.933,0.981,0.924,0.92,0.89,0.971,1.065,0.943,0.831,1.081,1.123,0.942,0.993,1.017,0.938,0.945,0.898,0.96,0.983,0.964,1.042,0.933,0.911,1.019,1.049,1.049,1.098,1.122,0.863,1.111,0.979,0.924,1.225,1.009,1.068,0.892,1.006,0.878,1.082,1.003,1.128,1.106,1.005,1.033 +XM_304829,1.019,1.004,1.111,0.98,1.014,0.977,0.971,0.929,1.042,1.135,0.924,1.058,1.003,1.048,0.949,0.974,0.933,1.055,1.161,0.897,0.947,0.963,1.019,0.977,1.11,1.072,0.96,1.016,0.927,0.954,0.914,1.081,0.987,1.018,1.144,0.947,1.067,0.933,0.955,1.031,0.913,0.915,1.089,1.019,1.03,1.021,0.946,1.069,0.928,1.126,1.035,1.029,1.021,1.005 +XM_304834,0.933,1.121,1.026,0.921,0.841,0.99,1.029,0.966,1.043,1.014,1.11,0.933,0.942,0.976,1.0,0.988,0.986,1.03,0.836,1.018,0.93,1.019,0.972,1.159,1.106,0.965,1.013,0.973,1.286,1.053,0.957,1.078,0.961,1.012,1.16,0.913,1.01,1.045,1.053,1.009,1.04,0.872,1.702,0.923,0.957,1.065,0.994,0.837,0.986,1.083,1.009,1.046,0.992,1.002 +XM_305358,1.062,1.081,1.015,1.165,1.148,0.98,0.833,0.98,0.925,0.948,0.918,1.001,0.935,0.991,1.01,0.861,1.026,0.873,1.088,0.932,0.89,1.096,1.027,1.061,0.959,0.983,1.015,0.977,0.83,0.974,0.937,1.128,0.883,0.899,0.949,1.046,0.928,1.136,1.126,1.05,0.98,0.919,0.854,1.078,1.028,1.142,1.101,1.106,1.053,0.996,1.023,0.927,0.989,1.039 +XM_305883,0.891,0.926,1.089,1.05,0.975,0.904,0.725,1.093,1.007,0.993,0.954,1.004,1.007,0.984,0.961,1.019,1.0,1.074,1.017,0.952,0.956,1.054,0.981,0.923,0.972,1.046,0.929,1.053,1.034,0.982,1.009,0.857,0.945,1.019,0.921,0.973,1.156,1.041,0.929,1.111,0.893,1.049,1.101,0.977,1.073,0.851,1.014,0.914,0.915,1.022,1.062,1.019,1.056,1.0 +XM_305947,0.987,0.983,0.939,0.998,0.898,1.142,1.246,0.95,0.938,1.055,0.968,1.054,1.143,0.995,0.913,1.038,0.969,0.953,1.09,1.045,1.023,0.958,1.085,0.958,0.994,0.943,0.885,0.936,0.942,1.089,1.006,0.979,1.0,1.063,0.941,0.896,1.062,1.0,1.072,0.953,0.853,0.997,0.97,1.012,0.914,0.977,0.97,0.935,1.058,0.956,0.994,1.017,0.88,1.033 +XM_350775,1.071,0.964,0.89,1.002,1.03,1.023,1.008,1.08,0.971,0.921,1.173,0.953,0.961,1.306,0.903,1.157,1.016,1.11,1.004,1.118,0.955,0.884,0.998,1.027,0.895,1.013,0.983,1.09,0.985,1.053,0.906,0.872,0.955,0.85,1.074,0.902,1.092,0.99,0.882,1.107,1.048,0.936,0.875,1.052,0.97,1.005,1.118,0.985,1.165,0.98,0.927,1.003,1.063,1.236 +XM_350795,1.03,0.914,0.909,0.925,1.024,1.038,0.854,0.901,0.942,0.884,1.049,1.076,1.02,0.833,0.951,0.933,1.039,0.951,1.119,0.911,1.108,1.02,0.872,0.985,1.086,1.065,1.075,1.024,0.826,1.008,1.065,0.919,0.938,0.954,0.935,0.899,0.937,1.07,1.015,1.11,0.952,0.823,0.804,0.976,1.026,0.98,1.038,1.07,0.979,0.928,1.046,0.97,0.913,0.979 +XM_350798,1.001,0.952,0.991,1.072,1.098,0.953,0.972,1.06,0.924,0.955,0.903,1.016,0.972,1.105,1.187,1.171,1.036,1.005,0.983,0.809,1.047,0.953,1.02,1.0,1.061,0.964,0.975,1.048,0.984,0.966,0.993,1.093,0.961,0.872,0.953,0.953,1.1,0.977,1.021,0.925,0.945,1.098,1.168,1.023,0.962,1.016,0.998,1.053,1.074,0.931,0.961,1.009,0.985,1.066 +XM_350800,0.925,1.098,0.972,0.991,1.042,1.041,0.999,1.111,0.922,0.975,0.985,1.039,1.0,1.105,0.989,1.072,1.004,0.968,1.03,0.944,0.98,1.077,0.779,1.056,1.178,1.039,1.1,0.956,0.928,0.955,0.98,0.961,0.894,1.038,1.011,0.982,1.068,0.92,1.103,1.051,0.97,1.0,1.153,1.031,1.01,0.99,0.902,1.06,0.975,1.026,1.002,0.957,1.054,1.021 +XM_350801,0.817,0.93,1.461,0.772,1.206,0.858,0.556,0.628,1.197,1.075,1.138,0.902,1.196,0.61,0.788,1.191,0.848,1.025,1.253,1.278,0.519,0.847,2.073,1.078,0.536,1.249,1.272,1.252,0.187,0.987,1.059,1.118,1.178,1.2,0.362,1.188,0.884,1.216,0.98,0.69,1.103,1.137,0.515,1.031,1.061,0.726,0.946,1.055,0.689,1.057,0.947,0.766,1.152,1.133 +XM_350802,0.772,1.133,0.821,1.037,0.81,1.154,0.705,0.701,0.831,0.737,1.305,0.803,0.835,0.885,0.814,1.592,0.679,1.028,1.118,1.049,0.795,0.839,1.157,0.835,0.907,1.085,0.899,0.848,0.947,1.065,0.876,1.172,0.858,1.379,0.545,1.259,1.001,1.071,1.45,0.847,0.868,1.431,0.788,1.31,0.891,1.001,0.958,1.0,0.87,0.877,1.017,0.758,0.835,1.026 +XM_350808,1.029,0.997,1.17,1.125,1.17,0.94,1.108,0.972,1.001,1.011,1.041,0.968,1.01,1.081,0.981,1.108,1.055,0.96,0.912,0.951,0.968,0.879,1.033,1.048,0.965,0.917,1.01,0.97,0.808,1.018,1.055,0.946,1.172,0.884,1.183,1.083,0.965,1.13,1.155,1.088,0.999,1.148,0.919,0.84,1.131,0.997,1.025,0.976,1.015,0.931,0.979,1.311,0.896,0.927 +XM_350818,0.944,1.087,0.958,0.927,1.068,1.188,0.921,1.119,0.896,0.922,0.922,0.908,1.033,1.001,0.77,1.003,1.015,0.948,0.962,0.995,0.988,1.011,0.907,1.047,0.898,1.117,0.911,0.961,0.749,1.069,0.937,0.893,1.193,1.055,0.999,0.938,0.981,1.01,1.017,1.095,1.045,0.961,0.878,1.042,1.049,0.832,1.079,1.034,0.958,0.973,0.988,1.08,0.99,0.925 +XM_350819,1.016,1.13,1.065,1.085,1.068,0.859,0.823,0.925,1.12,1.196,1.048,1.019,1.018,1.055,1.161,0.968,0.923,0.812,1.069,1.024,1.029,1.113,1.036,1.005,0.943,0.992,0.89,1.133,1.089,1.038,1.146,1.205,1.084,0.883,1.307,1.006,1.021,0.915,1.001,0.915,0.993,1.035,1.117,0.874,0.94,0.927,0.955,1.018,0.943,0.967,1.192,0.886,0.999,1.144 +XM_350825,0.968,0.958,0.882,1.053,0.857,1.112,1.452,0.965,0.946,0.872,1.15,0.98,0.922,1.076,0.998,0.969,1.06,1.004,0.815,0.959,1.069,0.849,1.046,0.891,1.053,1.07,1.006,0.859,0.856,1.212,0.977,1.021,0.945,1.243,1.043,0.999,1.041,0.873,1.219,1.067,0.899,1.129,1.123,1.097,0.888,1.043,1.005,1.001,1.005,1.015,1.017,0.924,0.999,0.874 +XM_350826,1.064,1.03,1.129,0.863,0.939,1.109,1.002,1.078,1.05,1.038,0.908,0.799,1.005,0.845,0.958,1.142,0.907,0.892,1.01,1.292,0.96,0.853,0.976,1.069,0.862,0.935,0.913,0.996,1.341,0.97,0.902,0.963,0.957,1.082,1.026,1.054,1.13,1.006,1.07,1.021,1.031,1.073,1.015,0.936,0.96,0.984,1.131,1.007,1.034,0.936,1.166,0.884,0.883,1.161 +XM_350830,1.058,0.929,1.039,1.007,0.839,1.023,0.916,0.928,0.995,0.906,0.95,0.953,1.066,1.131,1.025,1.019,1.111,1.073,0.965,0.963,1.028,0.921,1.072,0.997,1.028,1.066,1.073,1.08,1.08,0.914,1.123,1.066,0.902,1.014,1.054,0.927,1.04,1.177,1.057,1.03,1.153,0.965,0.948,1.015,1.105,0.955,0.992,1.032,0.991,0.928,0.962,1.006,1.007,0.957 +XM_350831,0.866,1.052,1.063,0.912,0.941,1.028,0.965,1.078,1.095,0.998,0.876,1.156,0.945,0.882,1.33,1.044,0.993,1.011,0.944,1.062,1.003,1.194,0.88,0.949,0.961,1.03,1.006,0.924,0.746,0.969,0.847,0.906,1.137,0.949,1.016,1.109,0.907,1.003,1.182,0.968,1.001,1.087,0.983,1.162,0.922,1.072,0.94,0.974,1.026,0.901,1.074,0.924,0.975,1.147 +XM_350833,0.664,1.333,0.785,0.997,0.595,1.568,0.57,0.438,0.705,0.683,1.434,0.504,0.578,0.556,0.776,1.349,0.788,1.073,0.978,0.966,0.601,0.677,1.288,0.683,0.985,0.801,0.739,0.565,0.751,1.527,0.586,1.574,1.444,1.997,0.27,1.288,1.458,0.71,2.363,1.003,0.697,1.335,0.844,1.663,0.664,1.091,0.899,0.648,1.136,0.706,1.063,0.677,0.725,1.17 +XM_350834,1.165,1.017,1.063,1.098,0.944,1.074,0.901,1.001,1.026,0.795,1.074,1.016,0.999,0.934,0.923,1.032,1.09,1.061,0.988,0.987,1.052,1.068,0.919,1.004,1.126,0.936,1.072,0.996,1.219,1.048,1.013,0.917,1.028,1.077,0.914,0.858,1.061,1.106,0.939,0.963,1.048,0.873,0.938,0.934,1.111,0.984,1.046,1.046,1.063,1.079,0.996,0.991,0.929,0.949 +XM_350835,1.038,0.898,0.831,1.005,0.959,1.051,0.906,1.012,0.983,1.153,1.11,1.039,1.276,1.0,0.903,1.073,0.981,1.031,1.045,0.943,0.974,0.975,1.131,0.998,0.996,0.941,1.0,0.965,0.899,0.988,1.055,0.934,0.879,0.923,1.168,1.047,1.104,0.957,0.934,0.928,1.035,1.019,0.785,1.052,1.036,1.003,0.998,0.922,0.993,1.009,0.955,1.022,1.009,0.993 +XM_350837,0.999,1.055,1.068,1.052,1.073,1.131,0.929,1.097,0.996,1.031,0.944,1.065,0.978,0.972,0.851,0.953,0.992,0.978,1.107,1.231,0.994,1.114,1.125,1.092,1.076,0.921,1.104,1.182,0.968,1.095,0.956,1.092,0.999,0.939,0.998,1.243,0.908,1.093,1.042,1.002,1.006,1.005,1.18,1.052,0.965,0.984,0.927,1.017,1.119,1.113,0.952,1.086,0.954,0.948 +XM_350838,1.114,0.929,0.964,0.979,1.043,1.015,0.857,1.185,0.918,0.859,1.021,0.872,1.075,1.016,0.84,1.062,0.992,0.923,1.042,1.034,0.881,0.975,0.876,1.02,1.053,1.012,0.968,0.995,0.666,0.895,0.98,0.949,0.891,1.019,0.974,1.06,0.909,0.906,0.968,1.023,0.913,0.996,0.86,0.952,1.033,0.953,0.989,1.025,0.878,1.067,1.027,0.978,1.182,1.054 +XM_350844,1.0,1.035,1.08,0.986,0.994,1.182,1.019,1.149,0.883,0.907,0.905,0.951,0.966,0.942,1.114,1.069,0.915,1.104,0.898,1.09,1.037,0.89,1.161,0.839,1.0,0.966,0.869,0.85,1.011,1.154,1.139,1.114,0.934,1.008,0.978,0.975,0.952,1.021,0.909,1.029,0.972,1.09,1.156,0.992,0.93,0.966,0.927,1.05,1.036,1.022,0.892,1.054,0.871,0.98 +XM_350845,1.087,1.04,0.929,1.065,1.102,1.139,1.08,0.958,1.027,0.998,1.072,0.923,1.039,1.189,0.893,0.921,1.094,1.056,1.131,1.139,1.008,1.001,0.952,0.925,1.116,1.14,0.876,0.916,0.999,0.948,0.929,1.045,1.046,0.994,1.023,1.111,1.056,0.901,0.931,1.085,0.79,0.935,0.974,0.973,0.971,0.919,1.283,1.156,1.026,0.967,1.039,1.116,0.938,0.938 +XM_350854,1.115,1.048,0.964,1.118,0.99,0.93,0.889,1.151,0.937,1.122,0.956,1.014,1.107,1.107,0.823,0.969,0.985,1.004,1.006,0.997,0.957,0.926,1.196,0.855,0.93,0.976,1.124,1.014,1.104,0.969,1.005,0.958,1.067,1.089,0.96,0.972,1.08,0.939,0.969,1.13,1.029,1.072,1.166,0.974,0.969,1.106,0.909,1.071,1.097,1.038,0.964,1.104,0.944,1.114 +XM_350855,0.764,1.039,1.328,0.998,0.936,1.017,1.006,0.836,1.209,0.849,1.096,0.98,0.883,0.866,0.833,1.307,0.925,0.874,0.909,1.151,0.744,1.12,1.221,1.119,0.733,0.706,1.357,0.855,1.152,1.112,0.976,1.276,2.429,0.947,0.866,0.91,0.949,1.125,1.256,1.084,0.918,0.965,1.063,0.927,0.939,0.929,0.976,0.868,1.013,0.835,1.077,0.961,0.846,1.636 +XM_350856,1.001,1.118,0.989,0.97,0.993,0.9,0.968,0.938,0.961,0.926,0.986,1.052,0.983,1.277,1.371,0.874,0.95,1.102,1.017,1.015,1.038,1.015,0.981,1.024,1.026,0.939,0.957,1.037,1.32,0.937,0.929,1.057,1.031,0.894,0.991,1.249,1.198,0.953,0.958,1.044,1.106,1.001,1.128,0.949,1.056,0.954,0.937,0.922,0.879,1.157,1.003,1.036,1.209,0.984 +XM_350857,1.088,1.016,1.059,0.789,0.944,1.041,1.174,0.989,0.968,0.912,1.011,1.0,0.985,0.891,1.074,1.091,0.813,0.866,1.096,1.111,0.939,0.972,0.904,0.973,1.059,1.069,1.202,0.855,0.899,1.185,0.93,0.919,0.939,1.063,1.013,1.025,0.984,0.957,1.017,0.966,1.041,0.884,0.987,0.845,1.056,0.91,0.93,0.957,0.976,1.053,1.009,1.058,1.201,0.905 +XM_350858,0.998,0.852,1.066,1.062,0.916,1.07,0.921,0.981,0.982,0.894,1.063,0.935,0.917,1.082,0.996,1.097,1.097,1.007,0.997,1.101,1.052,0.944,0.971,1.059,1.104,1.08,0.88,1.045,1.087,0.972,1.089,1.14,1.109,0.888,1.206,0.97,0.943,0.863,1.096,0.918,1.056,1.089,1.018,0.977,1.053,1.284,1.105,0.986,0.929,0.845,0.995,1.019,0.902,0.961 +XM_350862,1.068,0.852,0.932,1.13,1.061,1.081,1.12,0.92,0.89,1.042,1.056,0.97,0.948,1.059,0.746,1.063,0.975,1.053,1.067,0.997,1.037,0.992,1.194,0.931,1.046,0.925,0.741,0.908,1.223,1.034,1.104,0.889,1.097,0.857,1.216,0.954,0.954,0.957,1.016,1.15,1.191,0.79,1.176,1.125,0.962,0.888,0.939,0.913,1.142,0.978,1.058,1.078,1.129,0.997 +XM_350874,0.972,1.096,0.885,1.132,0.981,0.837,1.199,0.927,1.11,0.91,1.12,1.004,0.857,0.963,1.059,0.84,0.926,1.066,1.015,1.143,0.94,1.071,0.89,1.06,1.069,1.045,1.063,1.154,1.132,0.943,1.058,1.023,1.486,1.029,0.859,1.123,0.914,1.089,0.967,1.054,0.984,1.16,0.889,1.003,1.159,0.999,0.894,0.987,0.831,0.947,0.896,1.122,1.241,1.138 +XM_350879,1.089,1.04,1.099,0.934,1.117,0.871,0.922,1.073,0.917,0.975,1.013,1.069,0.964,1.093,0.962,1.078,0.934,1.126,0.972,0.961,0.877,0.907,1.169,1.124,0.985,1.073,0.961,1.068,0.982,1.112,0.975,0.926,0.935,0.92,1.096,0.978,0.913,1.069,1.187,1.035,0.926,0.956,1.271,1.052,1.105,1.019,0.911,1.246,0.952,0.984,1.029,1.018,0.983,0.978 +XM_350880,0.973,1.023,1.054,0.873,0.893,1.011,1.157,1.254,0.898,0.777,0.991,0.901,0.817,1.1,0.955,0.825,0.976,1.016,1.153,0.948,1.012,1.002,0.917,1.056,0.92,0.966,1.038,0.954,1.22,0.969,1.015,1.033,1.256,0.88,1.0,0.946,0.977,1.099,0.963,0.972,0.984,1.149,0.883,0.941,1.0,1.142,0.919,1.191,0.929,0.96,0.872,1.016,0.943,0.969 +XM_350882,0.875,1.073,1.173,0.933,0.94,1.106,0.98,1.092,1.203,0.976,0.985,1.113,1.156,1.17,0.82,1.016,1.132,1.042,0.945,0.849,1.139,0.991,0.939,1.035,0.956,1.156,1.189,1.044,1.184,1.074,0.882,1.022,1.002,0.911,0.988,1.142,0.984,0.895,1.073,1.09,0.971,1.055,0.864,1.019,0.924,1.122,0.963,1.137,1.104,0.945,0.89,1.081,0.915,1.04 +XM_350896,1.077,0.944,0.914,0.857,1.183,0.961,0.991,1.518,1.3,0.904,0.915,0.944,1.016,1.576,1.132,1.015,1.098,0.882,1.031,0.909,1.158,1.108,0.979,0.954,0.986,1.288,1.338,1.605,0.871,0.979,0.953,1.035,0.975,0.91,1.211,0.982,0.992,1.54,0.966,1.185,1.124,0.779,0.758,0.94,1.037,0.814,0.916,1.366,0.976,1.068,1.077,0.942,0.905,1.006 +XM_350897,0.721,0.973,1.572,0.644,0.945,1.007,0.462,0.77,1.474,1.164,1.053,0.892,1.254,0.673,1.027,1.807,0.962,1.047,1.443,0.993,0.298,1.327,1.449,1.437,0.553,0.803,1.679,1.233,0.23,0.767,1.27,1.148,2.196,1.014,0.258,0.776,1.165,2.182,1.007,0.875,1.286,1.149,0.492,0.866,1.183,0.763,1.147,0.85,1.065,0.919,1.054,0.836,0.549,1.361 +XM_350901,1.06,0.918,1.022,1.022,0.943,1.003,0.905,0.998,0.954,1.06,1.014,1.015,0.977,1.01,0.847,0.943,0.957,1.179,0.824,0.967,0.852,0.947,0.923,1.05,1.088,0.968,0.95,1.075,1.083,1.035,0.948,0.998,1.232,1.009,1.009,0.927,0.91,1.066,1.161,0.936,1.095,0.894,1.044,0.918,0.873,1.098,0.995,0.998,0.967,1.002,0.953,0.852,1.017,1.126 +XM_350908,0.937,1.118,0.958,1.056,1.167,1.123,1.063,0.87,0.927,1.049,1.051,0.983,1.005,0.785,1.14,0.889,0.927,0.967,0.908,1.031,0.744,0.951,1.203,0.891,0.989,0.928,0.862,0.982,1.071,1.01,0.997,1.994,0.976,1.007,0.926,1.044,0.975,0.946,1.125,1.017,0.912,1.001,1.093,2.318,1.108,0.944,1.071,1.011,0.992,0.949,0.977,0.924,1.03,1.367 +XM_350930,1.105,0.996,0.908,0.978,1.128,1.041,1.048,1.338,1.145,1.11,1.088,0.87,0.977,0.946,0.933,1.071,1.127,0.963,1.019,1.0,0.992,1.006,1.053,1.124,1.101,0.976,1.019,1.013,0.906,1.028,0.987,0.935,0.885,1.011,0.925,1.144,1.061,1.131,1.015,0.902,0.923,0.911,1.072,0.866,0.931,1.175,0.884,0.918,1.082,0.956,0.974,1.002,1.007,1.046 +XM_350931,0.935,0.853,1.159,0.885,0.966,1.0,0.712,0.873,1.331,1.009,1.068,1.077,0.856,1.072,1.001,1.161,1.122,0.914,1.194,0.993,0.738,1.034,0.902,1.008,0.879,0.941,0.992,1.596,0.807,0.896,1.437,0.862,1.145,0.936,1.979,1.42,0.995,0.935,1.19,0.921,1.082,0.959,0.768,1.199,1.092,0.896,0.996,1.025,0.976,0.882,0.874,1.034,1.141,1.376 +XM_350932,1.096,0.986,0.997,1.012,1.012,0.998,0.891,1.254,1.084,0.915,1.143,0.97,1.156,1.053,1.062,1.041,0.925,0.92,1.178,1.131,0.941,0.985,0.981,0.992,0.889,1.032,1.093,1.009,0.873,1.03,0.935,0.926,1.136,0.988,1.04,1.031,0.972,0.976,1.02,1.055,0.987,1.118,0.973,1.105,0.894,0.983,0.984,1.004,0.935,0.993,0.967,0.998,0.849,0.801 +XM_350939,0.937,1.104,1.197,0.995,0.992,1.125,1.062,0.999,0.887,0.946,1.146,0.946,0.946,0.948,1.084,0.921,0.956,1.053,0.988,0.929,0.893,0.989,0.93,0.968,0.92,1.049,0.928,0.937,0.96,1.06,0.907,1.1,0.937,1.04,1.139,0.99,1.114,1.022,1.052,1.065,0.833,0.949,0.98,0.999,1.034,1.042,1.053,1.06,1.017,0.859,0.977,1.093,1.01,1.022 +XM_350945,1.175,0.812,2.202,0.993,1.662,0.927,0.92,0.847,1.354,1.327,0.971,1.188,0.885,1.297,1.01,0.939,1.166,1.029,1.333,0.851,1.529,0.94,0.94,1.159,0.902,1.381,1.29,1.555,0.863,0.998,1.315,0.917,1.159,0.857,1.264,1.184,0.892,1.255,0.853,0.955,1.621,0.893,1.008,1.048,1.327,0.843,1.132,1.219,0.906,1.687,0.898,1.054,1.466,1.176 +XM_350946,0.0329,4.412,0.324,2.427,0.0582,4.346,5.607,0.182,0.61,0.0526,0.878,0.0433,0.32,0.0491,1.819,2.781,0.0725,1.714,0.0299,4.275,0.102,0.0408,2.774,0.637,3.187,0.0831,0.0381,0.254,0.414,4.481,0.0324,0.496,0.229,6.859,0.032,0.732,4.04,0.444,9.754,0.139,0.207,7.494,0.275,0.0765,0.0953,2.055,1.122,0.0643,0.294,0.036,7.763,0.35,0.0673,6.683 +XM_350947,0.944,0.979,0.983,0.915,0.895,1.068,0.894,1.001,0.937,1.121,1.04,1.011,1.027,1.082,1.036,0.956,1.014,0.999,1.036,0.987,0.965,1.094,0.93,0.99,0.938,0.923,0.879,0.993,0.825,0.917,1.097,1.09,1.217,1.07,1.074,1.156,1.007,1.015,1.3,0.935,1.026,1.111,0.943,0.945,0.903,0.886,1.147,0.92,1.056,1.053,1.029,0.95,1.032,1.01 +XM_350967,0.579,1.001,2.32,0.404,1.478,1.204,0.728,1.441,1.475,0.999,0.502,1.721,1.769,0.397,0.981,2.036,1.298,1.265,0.688,1.265,0.209,1.663,1.319,1.585,0.428,0.506,1.689,1.381,0.336,0.829,1.965,1.661,1.602,1.119,0.397,0.318,0.592,2.203,2.021,0.699,1.206,1.143,0.389,0.449,1.67,0.69,1.27,1.494,1.411,1.303,0.974,0.47,0.357,1.353 +XM_350977,0.998,0.934,1.018,1.06,1.089,1.204,0.752,1.45,1.018,0.982,0.9,1.102,0.793,0.832,1.178,1.056,0.857,0.982,1.058,1.064,0.896,0.961,0.905,0.91,0.982,0.977,0.917,1.11,0.87,1.035,1.044,1.357,0.877,1.227,0.881,0.983,1.132,0.982,1.232,1.254,1.007,0.964,1.193,0.869,1.069,0.839,1.3,0.931,1.042,0.839,1.098,1.255,0.743,0.837 +XM_350984,0.974,1.121,0.979,1.065,1.055,0.901,1.056,1.113,0.918,0.942,1.066,1.085,1.117,1.079,0.885,1.034,0.984,0.986,0.936,0.928,1.125,1.027,1.0,1.075,1.074,0.941,1.114,1.077,1.068,1.038,1.047,0.951,0.942,0.957,0.911,1.004,0.977,1.088,1.0,0.99,0.858,1.086,1.108,0.91,1.01,1.079,0.873,0.989,1.011,0.99,0.92,1.047,0.92,1.022 +XM_351012,1.053,1.014,0.965,0.831,1.016,0.996,1.0,1.0,1.012,1.073,1.07,0.916,0.891,0.915,1.152,1.003,1.148,1.061,0.948,0.973,0.909,0.935,1.042,0.882,1.023,1.088,1.096,0.958,0.793,1.213,0.915,1.129,0.785,0.913,0.959,1.064,1.054,0.942,1.229,0.879,0.858,1.055,1.053,1.097,0.963,0.972,1.093,1.095,1.057,1.004,0.978,0.915,0.959,0.947 +XM_351035,0.87,1.259,0.976,0.834,0.925,1.172,0.992,0.708,0.82,0.747,1.041,0.77,0.822,0.82,0.816,0.932,0.771,0.849,0.91,1.003,0.683,0.839,1.49,0.844,1.058,0.784,0.964,0.869,0.831,1.573,0.925,1.946,1.803,1.085,0.795,0.905,1.067,0.827,1.566,1.349,0.814,1.291,0.893,1.562,0.818,1.192,1.091,0.665,0.98,0.831,1.13,1.043,0.846,1.26 +XM_351038,0.918,1.055,1.126,1.117,0.909,1.03,1.232,1.059,1.179,0.951,1.043,1.009,0.954,1.094,1.351,0.979,0.876,1.057,0.994,1.209,0.944,1.054,0.901,0.888,1.047,0.901,0.954,0.959,1.19,0.971,0.936,0.918,0.911,1.219,1.099,0.98,1.056,0.983,1.083,1.001,0.847,0.979,1.007,1.069,0.882,0.939,0.91,1.003,0.953,1.122,1.004,0.898,1.236,0.958 +XM_351045,1.026,1.046,0.946,1.041,0.849,1.064,0.933,0.84,0.912,0.982,0.971,1.086,0.959,0.966,0.772,0.871,0.99,1.135,1.051,1.045,0.85,1.126,0.973,0.898,1.058,0.991,1.137,1.032,1.124,1.02,0.984,0.938,0.808,1.002,1.013,0.933,0.992,1.21,1.085,0.901,0.893,0.964,1.128,0.979,0.966,0.964,0.971,0.967,0.941,0.944,0.803,1.058,1.006,0.909 +XM_351070,1.026,0.892,0.779,0.956,0.897,1.148,1.025,1.018,1.104,0.939,1.067,0.904,0.879,1.142,1.085,1.178,1.394,0.858,0.992,0.962,1.142,1.2,0.864,1.016,0.862,1.23,1.052,0.925,0.989,1.043,1.141,0.773,0.827,0.863,1.694,0.89,1.272,1.589,1.327,0.981,1.098,1.007,1.049,1.549,0.883,0.897,1.173,1.609,1.341,0.971,1.063,0.824,0.837,0.851 +XM_351071,0.967,0.909,1.07,1.114,0.894,0.973,1.159,1.08,0.997,0.953,0.889,1.021,1.021,0.943,1.358,0.914,0.968,1.04,1.265,1.05,1.044,1.042,0.935,0.996,1.001,1.048,1.062,1.015,1.607,1.026,1.046,1.228,0.91,1.125,0.982,0.917,1.007,1.069,1.014,0.818,1.086,1.007,1.092,0.999,1.122,0.894,0.956,1.182,0.886,1.088,0.861,0.98,0.91,1.003 +XM_351072,0.989,1.015,1.086,1.051,1.245,0.96,0.978,1.23,1.044,0.934,0.908,1.012,1.026,0.856,0.949,1.05,0.992,0.968,1.053,0.991,1.012,0.952,0.872,0.962,1.101,1.09,1.059,1.051,0.971,0.984,1.12,0.969,0.982,1.046,1.076,0.915,1.066,0.698,0.949,0.851,1.146,0.921,1.001,0.892,1.055,0.915,0.984,1.018,0.905,1.034,1.006,1.002,0.993,1.049 +XM_351073,1.105,1.047,0.858,1.062,0.964,1.045,1.019,1.046,1.054,1.047,0.915,1.113,0.983,1.087,1.251,1.067,0.942,1.089,0.879,0.818,1.176,1.065,0.906,1.096,0.868,0.907,1.027,0.948,1.046,1.035,0.996,0.997,1.094,0.984,1.003,1.051,0.856,0.963,0.961,1.155,0.984,1.052,0.966,1.037,0.845,0.899,1.008,0.952,1.128,1.055,1.043,0.88,0.999,1.0 +XM_351076,0.894,1.142,0.924,1.064,0.925,1.055,0.929,0.956,1.05,1.084,1.093,1.065,1.163,1.037,0.964,0.962,0.994,1.03,0.965,1.059,0.946,1.029,0.851,0.985,1.011,0.879,0.838,0.932,0.798,0.927,1.073,0.879,1.082,0.96,1.147,0.88,1.025,0.929,0.964,0.929,1.039,0.964,1.11,0.908,1.041,0.994,1.001,1.063,1.0,1.062,1.043,0.978,0.966,0.95 +XM_351077,0.98,1.001,0.988,0.772,0.906,0.9,0.806,1.161,1.029,0.981,1.012,0.978,0.966,1.042,0.884,1.061,1.012,0.842,0.921,0.975,1.139,1.05,0.948,1.126,1.19,0.977,1.186,1.07,0.596,1.101,0.967,0.96,1.02,1.131,0.85,0.894,1.136,0.993,1.054,1.04,0.938,0.999,0.765,0.862,0.929,0.953,1.0,1.034,0.968,1.026,1.123,0.965,0.846,1.001 +XM_351078,0.922,0.938,1.589,0.765,1.006,1.401,0.887,1.228,1.177,1.068,1.0,1.26,1.293,0.688,0.921,1.615,1.26,1.129,0.691,1.145,0.708,1.389,1.157,1.335,0.744,0.687,1.353,0.908,0.945,1.161,1.218,0.991,1.456,0.971,0.533,0.695,0.892,1.67,1.634,0.933,1.0,1.122,0.85,0.66,1.063,0.889,1.034,0.999,1.295,1.012,1.219,0.836,0.781,1.16 +XM_351082,0.935,0.998,1.316,1.012,1.042,0.976,0.665,0.908,1.08,0.84,1.238,1.057,1.01,0.962,1.135,1.451,0.961,0.866,1.124,1.262,0.833,0.902,0.986,0.917,0.976,0.935,1.067,1.111,0.615,1.184,1.021,0.884,1.413,1.209,0.771,0.871,1.002,1.029,0.814,0.902,1.042,0.86,0.892,1.143,0.962,1.012,0.879,0.832,1.126,0.922,1.139,0.795,1.005,0.761 +XM_351083,0.938,0.964,1.123,0.905,0.98,1.007,0.916,1.0,0.958,0.808,0.99,0.871,0.997,0.956,0.892,0.901,0.924,1.031,0.89,1.02,1.068,1.009,1.067,1.021,1.121,0.972,0.993,0.793,1.275,0.967,0.923,0.966,1.952,1.14,0.922,1.029,1.02,0.935,0.973,1.076,1.003,0.961,0.913,1.094,0.978,1.026,0.998,0.888,0.858,1.01,1.016,0.882,1.0,0.985 +XM_351089,0.848,0.88,0.851,0.976,0.925,1.156,0.892,0.956,1.0,1.021,1.162,0.895,0.99,0.943,1.243,1.106,1.112,0.825,1.042,1.106,1.157,0.982,1.007,0.925,0.908,0.827,0.933,0.951,0.71,1.108,1.1,1.021,1.211,1.037,0.89,0.851,1.127,0.939,1.262,0.829,1.162,1.028,0.972,0.894,0.959,1.008,0.831,1.033,1.079,0.971,0.976,0.743,0.939,1.08 +XM_351092,0.949,0.867,0.902,0.955,1.024,1.233,0.962,1.232,0.86,0.924,0.981,0.94,0.895,0.879,1.319,1.179,0.949,0.822,0.875,0.994,1.119,1.042,0.872,1.042,0.917,1.011,1.171,0.905,0.956,1.149,1.061,1.099,0.946,0.972,0.885,0.876,1.047,0.929,0.991,1.048,0.961,1.13,0.995,0.977,1.143,0.971,0.95,0.945,1.005,1.082,0.961,0.916,1.019,1.031 +XM_351093,0.895,0.909,0.984,1.093,1.023,0.938,1.3,0.937,1.008,0.87,0.893,0.9,0.888,0.717,0.857,1.045,0.977,0.843,0.938,0.978,0.913,0.954,1.021,1.0,1.008,0.979,0.963,0.96,0.863,1.116,1.187,2.051,1.347,1.758,0.816,0.962,0.928,1.097,1.205,1.059,1.057,1.048,0.903,0.825,1.01,0.884,0.89,0.913,0.936,0.921,1.042,0.852,0.975,1.141 +XM_351095,1.005,0.883,1.108,0.925,0.875,0.937,0.636,0.747,1.138,1.081,0.843,1.01,0.953,0.722,0.779,0.876,1.077,0.905,1.353,0.858,0.909,0.984,1.26,1.062,0.791,1.096,1.445,0.884,0.564,0.941,1.013,1.487,1.445,1.255,0.71,0.84,0.747,0.978,1.17,1.219,1.188,0.924,0.678,1.2,1.15,0.735,0.936,0.946,0.767,0.917,0.81,0.759,1.384,1.338 +XM_351098,0.912,0.841,1.13,1.156,1.071,1.038,1.141,1.025,0.996,1.033,1.043,0.925,1.025,1.058,0.98,0.996,1.021,1.051,0.828,1.325,0.921,1.004,0.982,0.858,1.0,0.959,0.997,0.852,1.157,1.013,1.004,0.862,1.09,1.111,1.024,0.878,1.08,1.0,1.029,1.076,0.956,0.94,1.219,0.987,0.98,0.985,0.922,0.865,0.945,0.928,1.046,0.924,1.118,0.956 +XM_351100,1.003,1.127,0.999,0.973,0.89,1.072,0.887,0.962,0.781,1.004,1.211,0.916,0.89,0.832,0.92,1.085,0.9,1.043,0.999,1.123,0.966,0.973,0.962,1.029,1.048,1.014,1.205,0.977,1.08,0.99,0.913,0.896,0.915,1.059,1.019,1.046,1.121,1.023,0.97,0.956,0.986,1.002,1.166,0.864,0.813,1.108,0.928,0.945,1.013,0.953,1.166,0.949,0.923,1.053 +XM_351127,1.043,1.03,0.992,1.02,1.052,0.984,1.19,0.847,0.914,1.021,0.907,0.939,1.019,1.063,1.257,1.047,0.943,1.062,1.021,1.112,0.922,1.077,0.951,1.073,0.922,0.954,1.132,0.996,1.509,1.037,1.006,0.971,1.044,0.939,0.744,0.999,0.993,1.079,0.948,1.08,1.155,1.115,1.174,0.958,0.96,0.975,1.194,1.009,0.984,0.977,1.197,0.905,0.889,0.972 +XM_351130,1.837,0.617,1.05,0.939,1.391,1.023,0.634,1.291,1.984,0.938,0.803,0.881,1.43,1.391,1.448,1.087,1.745,0.974,1.663,0.714,0.967,2.165,0.826,1.398,0.582,2.461,1.188,1.282,0.569,0.873,1.839,0.659,1.26,0.895,2.962,0.762,0.79,1.858,1.323,0.834,1.487,0.815,0.712,1.09,1.256,0.793,1.147,2.02,0.822,1.1,0.845,0.628,0.958,1.025 +XM_351136,0.724,0.936,2.38,0.589,1.006,1.635,0.703,1.508,1.144,0.872,0.701,1.195,1.43,0.644,1.327,3.04,1.226,0.856,0.68,1.123,0.372,1.312,1.161,2.11,0.549,0.524,2.895,0.996,0.428,0.966,2.188,1.419,4.567,1.035,0.316,0.465,0.878,2.195,1.757,1.224,0.982,1.286,0.662,0.439,1.169,0.936,0.997,0.838,2.136,1.019,1.339,0.486,0.466,1.22 +XM_351143,1.059,0.964,0.863,0.968,0.939,1.128,0.833,1.24,0.96,0.968,0.944,0.989,1.068,0.933,1.051,0.868,0.959,0.939,0.919,0.983,0.914,0.926,0.961,1.089,0.859,0.884,1.047,0.933,0.74,1.078,1.069,1.003,1.003,1.031,1.072,0.903,1.296,0.863,0.93,1.05,0.853,1.134,1.199,1.055,0.988,1.006,0.914,0.974,1.086,1.05,1.032,0.876,0.97,1.049 +XM_351146,0.926,1.038,0.956,1.047,0.868,0.921,0.944,1.164,1.136,0.82,1.142,1.002,1.014,1.04,0.818,0.935,0.953,0.834,0.98,1.121,0.948,0.984,1.002,1.0,0.891,0.971,1.108,1.076,0.92,0.912,0.973,0.904,1.029,1.1,1.09,1.146,1.031,1.101,0.972,1.129,1.051,0.976,0.814,1.057,1.034,1.143,0.972,1.023,0.996,1.09,1.008,1.018,0.942,1.013 +XM_351147,1.02,0.972,1.095,0.977,1.066,0.961,1.032,0.949,0.986,0.94,1.043,1.12,0.985,1.0,1.045,1.183,1.011,0.977,1.053,1.025,0.996,1.247,0.886,0.938,1.145,0.884,1.098,0.986,1.021,1.167,1.238,1.093,1.158,0.965,1.17,1.041,1.148,0.837,0.982,1.01,0.999,0.954,0.955,1.074,0.914,0.943,0.977,1.065,0.948,1.044,1.014,0.917,0.967,0.917 +XM_351157,0.865,1.293,1.01,1.014,0.891,0.982,1.024,0.955,0.908,0.938,1.073,1.004,1.067,0.974,0.823,1.003,1.006,0.902,0.931,0.928,1.016,1.116,1.044,0.949,1.006,1.057,1.084,0.904,0.729,0.943,0.97,1.347,1.209,1.302,0.893,0.907,0.944,0.897,1.479,1.036,0.971,1.12,0.692,1.246,0.887,0.942,0.917,0.903,0.886,1.012,0.986,0.877,0.968,1.08 +XM_351164,0.999,0.818,0.934,1.072,0.99,0.957,0.974,0.998,1.034,0.895,0.861,0.981,1.076,1.253,0.824,0.959,0.897,1.117,1.09,1.075,1.121,1.054,0.922,0.843,1.023,1.019,1.162,1.043,1.16,1.022,0.996,0.969,1.038,0.982,1.118,1.13,1.123,0.92,0.9,0.909,1.251,1.072,1.048,1.086,0.988,0.866,0.966,0.889,0.984,1.011,1.045,1.048,0.98,0.96 +XM_351166,0.959,1.095,1.088,0.913,1.038,1.36,1.004,1.009,1.19,1.071,0.93,0.828,0.984,0.717,1.033,2.051,0.875,1.257,0.73,1.278,0.941,0.987,1.432,1.089,0.832,0.821,1.08,0.951,1.432,1.608,0.999,0.977,1.059,1.245,0.859,0.833,1.129,0.885,1.59,0.728,1.0,1.261,1.129,0.882,0.823,1.129,0.911,0.893,1.6,1.003,1.37,1.065,0.839,1.018 +XM_351168,0.899,1.031,0.936,1.373,0.864,1.284,0.999,0.78,1.001,0.905,0.936,1.002,0.821,0.897,0.98,1.345,0.939,1.123,0.872,0.921,0.914,0.849,1.12,0.998,1.141,0.961,1.035,0.886,1.003,1.669,0.835,1.055,0.994,1.445,1.032,1.008,1.267,1.193,1.406,0.869,0.826,1.158,0.992,1.107,0.806,0.899,0.949,0.974,1.089,0.799,1.019,0.953,0.953,0.926 +XM_351176,1.042,0.861,0.985,1.066,1.039,0.997,1.153,1.176,1.092,1.01,1.018,0.974,0.899,1.013,0.959,0.994,1.108,0.852,1.024,0.913,1.046,1.052,0.916,0.938,1.025,0.944,0.991,1.037,0.767,1.009,1.053,0.951,1.048,0.837,0.902,1.014,1.069,0.818,0.942,1.167,1.092,1.03,1.147,1.031,1.059,0.927,0.895,1.003,0.947,1.042,1.015,0.985,0.976,1.228 +XM_351179,0.811,1.191,1.334,0.931,1.113,0.807,0.991,0.994,1.29,0.859,0.754,1.418,1.045,1.285,1.359,0.843,1.047,1.101,1.061,1.14,0.776,1.214,0.859,1.305,1.008,1.004,1.559,1.091,0.997,1.025,1.203,1.322,0.947,1.535,0.703,0.734,1.066,1.307,0.809,1.328,1.293,0.955,0.904,0.694,0.96,0.703,0.914,1.053,0.757,0.862,0.891,0.804,0.999,0.898 +XM_351182,0.876,1.222,0.898,0.987,1.164,1.02,0.875,0.849,1.075,0.939,1.057,0.864,0.929,1.309,0.939,0.961,0.864,0.955,0.87,1.087,0.945,0.964,1.167,1.009,0.915,0.966,0.946,1.369,1.137,1.063,1.046,1.105,0.728,1.023,1.22,1.1,1.046,1.148,0.902,0.95,0.988,0.913,0.936,1.072,1.001,0.989,1.017,0.99,1.051,1.028,1.068,0.897,0.994,1.271 +XM_351202,0.858,1.381,1.122,0.968,1.028,1.176,0.96,1.053,1.017,1.026,1.081,1.085,0.932,1.11,0.873,0.916,0.903,1.099,1.023,0.852,0.956,0.854,1.114,0.951,1.23,1.004,0.857,0.994,0.991,1.329,1.039,1.032,1.099,1.252,0.903,1.012,1.089,0.929,0.993,0.99,0.936,0.836,1.003,0.944,0.858,0.972,0.831,1.134,1.044,1.007,0.994,1.02,1.0,0.829 +XM_351203,1.182,0.984,0.982,0.959,0.933,0.962,1.224,1.042,1.161,0.983,1.019,0.97,0.98,0.967,0.884,1.213,1.113,1.122,1.114,1.075,1.005,1.133,0.937,1.024,1.035,1.004,0.896,0.973,0.955,0.969,0.989,0.992,0.955,0.989,1.179,1.238,1.172,1.014,0.95,0.975,0.899,0.996,0.839,0.988,1.015,1.137,0.914,1.075,0.895,1.206,1.006,1.052,0.942,0.973 +XM_351215,0.566,1.417,0.879,0.942,0.602,1.488,0.613,0.751,0.832,0.636,1.431,0.663,0.942,0.501,0.869,1.992,0.477,0.888,1.501,1.391,0.475,0.532,2.368,0.837,0.709,1.127,0.793,0.582,0.428,1.5,0.711,0.78,2.114,2.087,0.316,1.679,1.004,0.675,2.082,1.028,0.721,1.653,0.604,2.496,0.861,0.784,0.872,1.147,0.924,0.882,1.186,0.516,0.807,1.633 +XM_351216,1.03,0.921,1.024,1.0,1.1,1.042,1.094,0.887,0.974,0.825,1.081,0.916,1.091,1.153,1.007,1.141,0.996,1.018,1.021,0.937,1.156,0.863,0.91,1.02,0.917,0.981,1.006,0.974,0.937,1.161,0.923,1.001,0.907,0.951,1.058,1.073,0.95,1.039,1.0,0.92,1.119,0.905,0.883,0.989,1.009,0.848,1.03,1.013,1.034,0.936,0.99,1.093,0.999,1.182 +XM_351222,1.023,1.067,1.064,0.91,0.975,0.896,1.049,1.066,0.93,0.979,0.994,0.786,1.049,0.795,1.021,1.0,1.0,1.034,1.136,0.977,0.82,0.971,1.043,0.992,1.019,0.96,0.907,1.131,1.126,1.072,0.838,1.137,1.16,0.947,0.951,1.01,0.996,0.795,0.845,0.893,0.884,0.972,0.829,1.363,1.116,1.201,0.897,1.058,1.033,0.958,0.92,0.955,1.022,1.043 +XM_351223,0.946,0.892,0.839,0.943,0.985,1.216,0.847,0.914,0.893,1.003,1.441,1.075,0.91,0.896,0.96,1.277,1.021,1.004,0.729,1.121,0.893,0.993,1.165,0.901,0.907,0.847,0.859,1.03,0.813,1.107,0.925,0.709,1.137,1.108,0.97,1.117,1.392,1.066,0.991,1.461,0.906,1.088,1.124,1.042,1.002,1.357,0.893,0.892,0.942,0.964,1.102,0.977,0.915,0.94 +XM_351227,0.94,0.902,1.045,1.075,1.13,1.001,0.955,0.982,1.07,1.081,0.949,0.971,1.096,1.018,1.273,1.022,0.987,0.997,1.088,0.82,1.009,0.979,0.998,0.985,0.992,0.924,1.095,1.086,1.02,1.07,0.996,0.967,1.017,1.081,1.054,1.09,1.14,1.165,1.08,0.952,0.957,0.933,0.899,1.045,1.041,1.007,1.052,1.051,0.943,1.082,0.934,1.043,1.158,0.974 +XM_351232,1.009,0.989,1.085,0.915,1.055,1.077,1.083,0.935,0.956,1.031,1.019,0.99,0.948,0.903,1.275,1.207,1.075,0.983,1.131,1.115,1.009,0.979,1.009,1.095,0.84,1.204,0.964,1.047,1.025,0.928,0.981,1.048,0.947,1.039,0.927,1.125,0.951,1.091,1.121,0.973,1.143,0.952,0.995,1.139,1.093,1.036,0.908,1.122,1.027,0.973,0.909,0.898,0.889,1.14 +XM_351240,1.165,1.11,1.077,0.957,0.871,0.939,0.941,0.843,1.087,0.932,0.91,0.941,0.981,1.032,1.0,0.943,1.026,0.994,0.942,0.974,1.036,1.164,0.963,0.995,0.94,1.179,1.184,0.903,0.916,0.999,0.976,1.514,1.048,1.062,0.9,0.876,0.87,1.026,1.0,1.05,1.099,1.024,0.878,0.993,1.037,1.044,0.933,0.991,0.915,1.049,0.89,0.962,0.862,1.088 +XM_351244,0.598,1.179,1.564,1.041,0.326,2.327,0.822,0.609,1.113,0.526,1.207,0.569,0.829,0.996,0.848,0.867,1.514,1.439,1.051,1.557,0.552,0.414,0.577,0.736,0.719,0.785,0.805,0.627,0.726,1.357,1.047,0.981,0.674,1.783,0.678,0.298,0.937,0.602,2.406,0.329,1.576,1.152,0.965,1.846,0.953,1.224,0.679,0.754,1.174,0.899,1.479,0.288,0.756,1.027 +XM_351247,0.897,0.96,1.086,0.964,1.152,1.196,1.025,1.11,1.028,0.985,0.882,0.938,1.107,0.873,0.979,1.151,1.033,0.943,0.951,0.975,0.882,1.081,1.037,0.96,0.841,1.219,1.172,1.037,1.57,0.959,0.813,0.907,1.166,1.102,0.965,1.037,0.935,1.011,1.006,1.121,1.0,0.968,1.067,1.053,0.971,1.006,0.997,1.085,1.08,1.128,0.955,0.893,1.162,0.878 +XM_351251,0.916,0.959,1.003,1.024,1.008,1.069,1.077,1.026,1.082,0.986,0.982,0.986,1.012,0.983,1.028,1.024,0.99,0.977,1.005,1.012,0.97,0.992,0.941,0.921,1.034,0.948,0.916,1.08,1.183,1.053,1.184,0.878,0.883,1.005,1.045,1.091,0.998,0.849,0.936,0.997,1.067,0.932,1.018,0.97,1.078,1.053,1.024,0.961,0.99,1.076,1.074,1.003,1.015,0.938 +XM_351253,1.197,0.934,1.58,0.893,1.426,0.843,0.819,1.521,1.405,1.321,0.887,1.427,1.272,0.952,1.22,1.018,1.319,1.175,1.546,1.02,1.143,1.231,0.865,1.205,0.846,1.257,1.489,1.142,0.861,0.968,1.465,0.908,0.902,0.961,0.958,0.898,0.772,1.442,0.922,0.831,1.22,1.259,1.124,0.908,1.376,0.892,1.185,1.195,0.815,1.567,1.0,0.827,1.427,0.815 +XM_351254,1.023,0.939,1.031,0.992,0.824,1.02,1.025,1.006,1.0,1.056,0.968,1.107,1.026,1.043,0.904,0.82,0.895,1.111,0.889,0.913,0.987,1.014,0.964,1.113,0.952,1.002,1.004,1.051,1.139,0.959,0.932,0.97,0.967,0.931,1.071,1.114,1.146,0.95,1.007,1.026,1.044,0.879,0.917,1.039,1.043,0.99,1.077,0.948,1.012,1.143,1.082,0.894,1.045,0.939 +XM_351255,0.892,1.019,1.083,0.959,0.968,1.028,1.101,0.928,1.061,0.817,1.007,1.025,1.066,0.933,0.975,1.023,0.981,1.07,0.988,1.205,1.082,0.848,0.87,0.908,1.052,1.0,0.979,1.0,0.811,0.967,1.022,1.107,1.092,1.043,1.021,1.053,1.035,1.017,0.954,0.971,1.073,0.838,0.819,0.996,1.024,0.892,0.981,1.015,0.961,0.853,0.954,0.964,0.891,1.195 +XM_351256,1.045,0.988,0.978,0.932,0.949,1.142,1.099,1.036,1.176,1.015,0.939,1.01,0.913,1.109,1.041,1.068,1.0,0.951,0.984,0.945,1.097,0.855,1.01,1.035,1.13,1.114,0.986,1.035,0.926,1.036,1.05,0.785,0.913,0.991,1.06,0.916,0.922,0.871,0.905,0.98,0.961,1.144,0.897,1.083,1.022,0.98,1.208,1.016,1.082,1.168,1.085,1.179,0.894,0.999 +XM_351265,0.796,1.15,0.774,1.039,0.969,1.062,0.871,0.951,0.942,0.951,1.24,0.894,0.808,0.831,1.053,1.044,0.829,0.921,0.986,0.809,0.842,0.873,1.11,0.819,1.011,0.849,0.862,0.836,1.265,1.483,0.851,1.552,1.291,1.271,1.047,1.137,1.137,0.855,1.338,1.427,1.017,1.328,0.962,0.944,0.948,1.192,1.126,0.828,1.002,0.956,0.924,1.576,0.911,1.002 +XM_351266,1.017,1.087,0.911,0.867,0.932,0.951,0.942,0.996,0.823,0.823,1.145,1.006,0.842,0.961,1.095,0.736,1.05,1.025,0.853,0.819,0.955,0.987,1.111,0.9,0.991,0.966,1.094,1.043,0.87,1.022,0.922,1.015,1.063,0.924,0.871,0.953,1.134,0.934,0.875,0.918,0.874,1.079,1.065,1.004,1.02,1.025,1.044,0.969,0.863,0.92,0.919,0.919,1.034,1.264 +XM_351267,0.988,0.976,1.054,0.957,1.04,1.085,1.023,1.113,0.938,0.948,1.017,0.921,1.05,0.965,0.926,1.083,0.967,1.0,0.967,0.986,1.055,0.998,1.084,1.125,1.028,0.989,0.949,1.037,1.19,1.148,1.025,1.126,1.028,0.952,1.027,0.941,1.021,1.027,1.001,1.006,0.963,0.981,0.957,0.972,0.991,1.109,0.927,1.144,1.058,0.934,1.118,1.115,1.134,1.091 +XM_351272,0.885,0.95,0.962,1.067,0.925,1.25,0.969,0.941,0.875,1.061,1.142,1.051,0.872,0.812,0.938,1.409,0.885,1.055,0.858,1.05,0.807,0.885,1.214,0.827,0.955,0.84,0.894,1.005,0.963,1.189,1.005,1.166,0.999,1.098,0.984,0.882,0.933,1.012,1.226,0.853,0.837,1.077,0.803,1.039,0.894,1.215,0.973,1.104,1.139,0.93,1.161,0.922,0.923,1.051 +XM_351278,1.041,0.983,0.963,1.008,1.138,0.938,0.965,0.932,1.082,0.996,1.057,1.009,0.885,0.867,0.83,1.008,0.988,0.963,0.974,1.062,0.973,1.095,1.18,0.974,0.943,1.079,0.995,0.944,0.93,0.903,0.945,1.004,0.921,1.042,1.046,1.006,1.05,0.926,0.96,1.07,1.207,0.949,0.876,1.003,1.002,0.98,0.839,0.97,1.13,0.867,1.086,0.951,1.02,0.961 +XM_351280,0.98,0.975,1.019,1.07,1.031,1.032,0.952,1.044,1.0,1.006,0.936,1.0,1.001,0.946,1.071,1.081,0.98,1.07,1.0,1.015,1.057,0.961,1.075,1.018,0.901,0.885,0.986,0.972,1.05,1.023,0.973,0.937,0.915,0.897,0.922,1.013,1.028,0.879,1.011,1.006,0.958,1.037,0.974,0.946,1.032,0.886,1.034,1.054,1.016,0.995,1.076,0.82,0.889,0.945 +XM_351281,0.941,1.077,0.987,0.965,0.859,1.09,1.112,1.064,0.992,1.021,1.136,0.951,0.983,0.981,0.892,0.941,1.009,1.07,1.287,0.992,1.217,1.045,0.833,1.139,0.991,1.067,0.972,0.965,1.093,0.967,0.951,1.042,1.144,0.928,1.041,1.036,1.041,1.068,0.881,1.118,0.945,1.047,0.849,0.976,0.965,1.022,1.105,0.979,1.029,0.978,1.037,0.947,1.047,0.972 +XM_351295,0.864,1.028,1.068,0.942,1.098,0.965,1.091,0.816,0.967,0.953,0.935,0.958,1.086,1.075,1.04,1.095,0.874,0.917,0.821,0.985,0.945,1.043,1.06,0.973,0.837,0.966,0.967,0.92,1.258,0.834,0.983,1.092,1.096,1.147,1.027,1.01,0.859,1.004,1.035,1.066,1.061,1.097,1.195,1.034,0.969,0.854,0.975,1.064,1.086,0.935,0.949,1.017,1.128,1.165 +XM_351296,1.079,0.944,0.923,0.995,0.914,1.062,1.004,1.094,0.941,1.072,1.064,1.012,0.968,0.96,0.891,0.938,0.962,0.92,0.988,1.133,1.09,1.156,1.203,0.951,1.012,0.991,0.924,0.982,0.777,0.96,1.031,1.209,0.905,1.005,0.977,0.993,1.007,0.993,0.903,1.022,0.949,0.934,0.996,1.071,1.019,1.093,0.957,0.986,0.936,1.164,1.085,1.022,0.843,1.02 +XM_351297,0.999,1.069,0.945,0.991,1.242,0.916,1.051,1.207,0.98,1.043,1.115,0.967,1.027,1.128,0.966,1.035,0.946,1.011,0.89,1.044,0.942,0.993,0.852,1.15,0.929,1.232,1.099,0.946,0.973,1.066,0.849,1.069,0.993,1.167,1.167,1.104,0.903,1.155,0.99,0.977,1.001,0.982,0.903,0.947,1.057,1.083,1.117,1.016,0.954,0.987,0.917,0.881,0.955,0.971 +XM_351299,1.045,1.199,0.984,0.982,1.05,1.041,0.956,1.063,1.112,0.933,1.054,0.992,1.018,0.92,1.007,0.984,0.96,0.921,1.014,0.956,1.088,1.005,1.001,0.929,0.999,1.014,1.043,0.983,0.9,1.024,1.106,1.069,1.011,0.999,1.013,0.973,0.993,0.995,1.0,1.269,1.035,0.997,1.06,1.084,1.054,1.032,1.154,1.063,0.954,0.804,1.113,0.948,0.901,0.921 +XM_351303,0.929,0.883,1.109,0.949,0.91,1.005,1.345,0.86,1.073,1.001,0.915,0.963,0.933,0.875,0.952,0.933,1.019,0.909,0.821,0.949,1.049,1.002,1.045,0.879,0.965,0.947,1.096,1.026,1.073,1.039,1.093,0.818,0.88,1.135,1.02,0.965,0.928,1.024,1.038,0.991,0.904,0.834,1.032,0.951,1.03,1.075,0.912,0.948,1.018,0.939,1.074,0.829,0.877,1.009 +XM_351307,0.976,0.957,1.079,1.1,1.034,1.197,0.937,1.297,1.043,1.145,0.953,1.105,0.916,1.367,1.017,0.943,0.916,1.026,0.871,1.119,0.828,1.131,1.018,1.133,0.974,0.915,0.984,0.962,0.803,0.981,0.971,1.024,0.884,0.905,1.058,1.084,0.924,0.928,0.877,1.056,1.167,0.93,1.0,1.055,1.021,0.998,0.894,0.857,0.997,0.976,0.951,1.119,0.99,1.08 +XM_351311,0.693,1.599,0.939,0.756,0.801,1.214,0.686,0.832,0.941,0.909,2.213,1.062,0.814,0.774,0.924,1.913,0.92,0.841,1.333,1.305,0.765,0.801,1.319,1.194,0.629,0.876,1.097,0.888,0.733,1.024,0.821,1.131,2.171,1.371,0.542,1.717,1.289,1.014,1.158,0.716,1.248,1.245,0.625,1.487,1.032,1.167,1.029,0.671,0.848,0.863,1.077,0.733,1.003,1.957 +XM_351317,1.07,1.034,1.601,1.039,1.074,0.914,1.006,0.868,0.871,1.066,0.938,1.034,1.036,0.827,0.85,0.959,0.934,0.929,0.954,1.129,0.984,0.847,0.93,1.007,0.913,1.051,1.029,0.943,0.677,1.0,1.059,3.519,14.45,0.797,1.0,1.321,1.07,1.014,0.989,1.212,0.975,0.939,1.186,5.573,0.889,0.85,1.133,0.838,0.958,0.925,0.853,1.17,1.046,1.071 +XM_351320,0.772,1.014,1.027,0.938,0.903,1.048,0.896,0.867,1.07,0.844,1.017,0.84,0.784,1.461,0.85,0.942,0.86,0.95,1.029,0.967,0.916,0.826,1.056,0.815,0.941,0.924,1.195,0.899,0.861,1.307,0.963,1.053,1.342,1.154,0.917,0.938,0.972,0.888,1.143,0.869,0.99,1.036,0.866,1.279,0.933,1.029,0.996,0.85,0.808,0.858,1.038,1.064,1.142,1.111 +XM_351327,0.853,1.0,0.984,1.0,0.9,1.106,0.901,0.746,0.944,0.916,1.294,0.905,0.955,0.79,0.94,1.778,0.977,0.955,0.946,1.01,0.801,0.897,0.971,0.935,0.99,0.972,1.124,0.79,0.817,1.046,1.014,1.097,1.799,1.123,0.722,1.456,1.016,0.936,1.329,1.081,0.898,0.995,0.86,1.311,1.073,0.959,0.962,0.912,1.029,0.896,0.992,0.925,1.028,1.489 +XM_351359,1.024,0.926,0.99,0.951,1.067,1.088,1.274,1.052,0.876,1.066,1.198,0.931,1.052,1.129,1.232,1.201,0.824,0.973,1.258,0.935,0.989,0.969,1.116,0.842,1.226,0.965,1.03,0.982,0.771,0.999,1.005,1.094,1.023,0.915,1.186,0.971,0.959,1.053,0.967,1.103,0.924,1.05,0.871,1.071,0.992,1.037,1.008,0.992,1.094,1.038,0.94,0.984,1.124,0.94 +XM_351361,0.998,0.916,0.93,0.994,1.025,0.863,0.883,0.948,1.095,1.095,0.997,1.01,0.94,0.956,0.849,1.106,1.056,0.969,1.212,1.052,0.974,0.941,1.016,0.997,1.026,0.85,0.676,0.98,0.881,0.981,0.981,0.984,1.082,0.963,0.963,1.017,0.904,1.016,0.972,1.18,1.09,0.982,0.731,1.129,1.029,1.024,1.122,1.045,0.995,0.98,0.953,0.938,1.064,1.154 +XM_351363,1.004,1.037,0.978,1.082,1.077,1.055,1.176,1.053,1.14,1.006,0.895,1.069,0.99,1.105,0.847,0.995,1.036,0.871,1.188,1.032,0.863,1.187,0.841,0.956,0.995,1.071,0.877,1.089,0.961,0.985,0.996,1.214,0.967,0.89,1.115,1.034,1.07,0.963,0.958,0.806,1.076,0.923,1.228,1.007,0.972,1.051,0.951,1.095,1.027,1.161,0.941,0.991,1.17,0.911 +XM_351364,1.12,1.082,1.065,1.044,1.072,0.938,0.828,1.023,0.917,0.94,1.138,0.931,0.971,1.173,0.966,1.261,0.936,1.248,1.151,0.881,0.991,1.019,1.045,1.079,1.094,0.98,0.94,1.085,0.943,0.975,1.04,1.11,0.898,0.839,0.869,0.936,1.149,0.948,1.037,0.989,0.932,0.82,1.031,1.122,1.18,0.953,0.973,1.001,0.933,1.041,0.984,1.044,1.004,0.994 +XM_351365,1.057,1.109,1.15,1.124,0.914,1.024,1.083,0.919,1.035,0.912,1.017,0.924,1.012,0.995,1.068,0.892,1.049,0.906,0.974,0.951,1.04,0.947,0.955,0.995,1.153,1.052,1.017,1.026,1.084,1.007,0.922,1.044,1.145,0.977,1.111,1.0,1.18,0.986,1.067,0.934,0.948,0.893,0.994,0.98,1.125,1.035,0.941,1.098,0.917,1.072,1.021,1.07,0.817,1.061 +XM_351366,1.178,1.018,1.108,0.972,1.226,0.986,0.992,0.898,1.038,1.04,0.996,0.982,0.898,1.067,1.086,0.909,0.924,0.897,0.935,1.148,0.992,1.171,1.017,1.046,0.996,1.041,1.097,0.955,0.937,0.941,0.946,0.975,1.171,1.13,0.94,1.085,1.039,1.162,1.02,0.996,1.011,1.009,1.101,1.037,1.109,1.02,1.029,1.067,0.968,1.157,1.021,0.924,1.036,0.998 +XM_351367,1.008,0.963,1.014,0.861,1.123,0.929,1.11,1.031,0.938,0.899,1.05,0.999,0.963,0.917,1.065,0.852,1.034,1.011,1.157,1.066,1.035,0.961,0.956,1.004,1.001,1.032,1.05,0.959,1.022,1.104,1.053,0.926,0.988,1.117,1.073,1.025,0.987,1.145,0.949,0.91,0.822,0.916,1.048,1.168,0.935,1.073,0.922,1.023,1.084,0.912,0.973,0.965,0.835,0.914 +XM_351368,1.002,1.149,0.893,1.043,0.736,0.977,0.962,1.336,1.044,0.96,0.839,1.022,0.972,1.144,0.917,1.15,1.03,1.12,1.066,0.976,0.955,0.969,0.902,0.925,1.027,0.971,0.857,1.018,1.26,1.114,1.131,1.029,1.005,1.023,0.964,1.015,1.042,1.276,0.963,1.027,0.898,0.844,1.143,1.09,1.019,0.908,0.999,0.927,1.01,1.0,1.056,0.868,1.044,0.835 +XM_351371,1.041,1.045,0.961,0.946,1.079,1.034,1.049,0.984,0.956,1.154,1.018,1.006,0.85,1.167,0.975,1.042,0.991,0.877,1.143,0.984,1.077,0.996,1.035,1.081,0.977,1.128,1.174,1.017,0.899,0.924,0.995,0.944,0.927,1.031,1.063,0.83,1.139,1.09,1.001,1.158,0.984,0.923,1.176,1.083,0.931,0.952,1.061,0.99,1.023,0.972,1.052,0.945,1.121,0.991 +XM_351372,1.241,0.927,1.025,1.092,0.955,0.967,1.139,0.86,0.89,1.079,1.13,1.041,0.992,1.251,0.967,0.911,0.921,0.989,0.986,0.868,0.968,0.924,1.076,1.163,1.11,1.029,0.782,0.933,1.044,1.071,1.045,1.044,1.033,0.901,1.045,0.919,0.96,0.928,1.105,0.962,0.993,0.798,1.053,1.187,0.924,1.094,1.144,1.223,0.966,1.145,1.0,1.106,0.975,1.0 +XM_351378,1.228,1.186,0.809,0.848,0.923,1.1,0.976,0.97,0.847,0.942,1.119,0.975,0.776,0.949,1.702,1.154,0.878,1.043,0.98,1.233,0.921,0.858,1.095,0.961,0.859,0.899,1.029,0.819,1.427,1.021,0.999,1.131,1.163,1.193,1.194,1.274,1.159,0.874,1.125,1.139,0.983,1.26,1.238,1.07,1.045,0.832,0.952,1.001,1.154,1.175,1.033,0.862,0.845,1.091 +XM_351388,1.069,0.938,1.079,0.939,1.118,0.925,0.95,0.959,0.969,0.893,0.949,1.083,1.058,0.984,0.938,1.026,0.94,0.889,0.939,0.985,0.903,0.86,1.02,1.064,0.978,0.983,1.217,1.005,0.825,1.053,1.198,1.137,1.064,0.964,1.002,0.758,0.879,0.951,0.944,1.333,0.923,0.893,1.075,1.126,1.023,0.963,0.97,1.023,0.969,1.053,1.056,1.097,0.979,1.112 +XM_351406,1.01,1.125,0.974,1.015,0.944,1.066,0.909,0.959,0.963,0.813,0.839,0.931,1.13,1.07,0.784,0.876,1.016,0.987,0.864,1.001,0.905,1.075,0.928,1.007,0.99,1.026,1.082,1.138,1.015,1.064,0.964,1.056,0.91,0.919,0.913,1.037,0.948,1.354,1.111,0.98,0.918,1.159,0.887,1.065,0.988,0.962,1.09,1.127,1.053,1.114,0.997,0.879,1.024,0.867 +XM_351413,1.106,0.946,1.083,0.908,0.922,1.056,0.926,1.042,1.04,0.954,1.012,1.098,0.925,1.237,1.03,1.046,0.957,1.021,0.819,0.916,1.025,0.96,1.081,1.099,1.054,0.991,0.979,0.995,0.97,1.074,0.89,0.922,0.982,1.128,1.099,1.039,1.117,0.985,1.021,1.027,1.071,1.141,1.206,0.943,1.005,0.984,1.005,0.913,1.073,0.997,1.013,0.92,0.979,0.991 +XM_351416,1.012,0.851,1.426,0.864,1.099,1.434,0.8,1.346,1.002,0.98,1.062,1.078,1.222,1.037,1.206,1.794,1.171,1.075,0.932,0.918,0.72,1.301,0.977,1.514,0.877,0.75,1.562,1.048,0.757,1.105,1.47,1.22,3.169,1.071,0.699,0.705,0.997,1.712,1.147,0.923,1.176,1.181,0.802,0.723,1.006,0.883,0.93,0.917,1.125,0.904,0.994,0.817,0.7,1.26 +XM_351422,0.994,0.972,1.052,0.983,1.143,1.018,1.167,1.046,0.991,0.922,0.954,1.061,1.011,1.141,1.171,1.133,0.946,1.145,1.022,0.966,1.038,1.014,1.122,1.04,0.899,0.956,1.065,0.975,0.964,0.972,1.033,0.991,0.933,1.165,0.969,1.083,1.141,1.092,1.013,1.122,0.996,1.209,1.274,0.904,1.113,1.125,0.945,1.081,0.999,0.966,1.052,0.917,0.902,0.873 +XM_351426,0.857,1.201,0.938,1.093,0.729,1.205,1.202,0.871,0.773,0.838,1.092,0.883,0.72,0.868,0.797,0.959,0.969,1.024,0.879,0.955,0.989,0.859,1.579,0.764,1.106,0.911,0.785,0.881,0.992,1.542,0.721,0.791,1.279,1.682,0.964,1.326,1.16,0.854,1.063,1.316,0.825,1.324,0.893,1.636,0.802,1.019,0.824,0.759,0.988,0.846,1.057,1.031,0.819,1.81 +XM_351435,1.085,0.998,1.013,1.017,0.968,1.048,0.946,1.269,0.977,0.907,1.053,0.947,0.968,1.057,1.129,0.975,0.972,0.882,1.051,0.832,1.059,1.006,0.908,0.973,1.021,1.091,1.014,0.973,0.773,0.982,1.064,1.026,1.012,1.0,0.929,0.982,1.004,0.995,0.885,0.917,0.95,0.94,1.212,0.986,1.012,0.928,0.949,1.087,0.88,1.011,1.075,0.989,0.889,0.959 +XM_351441,1.065,1.072,1.016,1.05,0.958,0.939,1.182,0.946,0.88,1.193,0.784,0.977,0.963,1.13,1.167,1.099,0.967,0.999,0.986,1.026,1.105,0.975,1.082,0.997,0.945,1.07,0.982,0.993,1.088,0.948,1.19,0.955,1.004,0.937,0.911,0.846,1.028,1.078,0.957,1.103,1.14,1.042,1.066,0.981,0.903,0.923,1.06,0.994,0.896,1.154,1.001,0.984,1.005,0.998 +XM_351443,1.005,1.008,0.962,0.969,0.977,1.096,0.959,1.045,0.917,0.995,0.83,1.006,0.922,0.863,0.766,0.856,1.014,0.961,0.911,0.883,0.918,0.979,0.836,0.99,1.087,1.176,1.185,1.007,1.054,1.216,1.004,1.123,0.957,1.035,1.048,0.948,0.894,1.086,1.071,1.051,1.034,1.039,1.029,0.953,0.951,0.971,1.09,1.009,1.197,1.015,1.016,0.97,0.867,0.962 +XM_351473,0.847,4.454,0.865,1.346,0.96,0.99,1.579,0.765,0.965,0.818,0.994,0.879,1.032,0.918,0.78,1.13,1.007,1.519,0.969,1.269,0.743,0.976,0.935,0.912,1.099,0.927,0.94,0.895,0.829,1.738,0.988,6.617,0.883,2.077,0.815,1.379,1.379,0.97,1.048,1.125,0.802,1.005,0.784,0.909,1.179,1.003,0.897,0.832,0.909,0.877,1.75,1.047,0.765,0.944 +XM_351475,0.809,0.966,0.982,1.105,0.912,2.194,1.532,0.835,1.154,0.945,0.856,0.972,1.244,0.875,1.037,1.008,1.065,1.082,0.819,1.368,0.96,0.872,1.074,1.184,1.078,0.945,1.471,1.01,1.054,1.564,0.974,2.465,2.287,0.93,1.431,0.919,0.998,0.953,1.071,0.972,1.224,1.059,0.952,0.865,0.938,0.904,0.978,0.898,0.991,0.952,0.934,0.827,0.886,1.539 +XM_351477,0.614,1.077,1.24,0.798,0.72,1.049,0.652,0.283,0.782,0.737,1.341,0.479,0.335,0.827,1.092,1.498,0.587,0.878,0.946,1.214,0.439,0.466,1.588,0.627,0.895,0.632,1.055,0.61,0.582,1.551,0.682,1.253,1.52,1.902,0.294,0.527,1.322,0.732,1.562,0.628,0.672,1.384,0.863,1.169,0.712,1.237,0.668,0.558,0.822,0.76,1.299,0.586,0.826,1.166 +XM_351478,0.889,0.967,0.959,0.987,0.91,1.043,0.86,1.115,1.077,0.99,0.899,0.874,1.05,0.86,1.0,1.113,0.898,1.055,0.864,1.083,1.017,1.1,0.989,1.009,1.006,0.955,1.038,1.045,1.131,1.077,0.889,1.006,0.976,0.983,0.941,0.953,0.854,1.017,1.05,1.01,0.962,0.881,1.032,0.966,1.043,0.969,0.985,1.106,1.053,0.986,1.044,1.032,0.957,1.062 +XM_351479,0.864,1.432,0.767,1.156,1.108,0.9,1.131,1.281,0.904,0.889,1.032,1.164,1.011,1.022,0.858,0.961,0.886,1.156,0.862,1.018,0.949,1.036,0.772,0.996,1.106,1.323,0.845,1.015,1.123,1.226,1.028,0.901,1.043,1.5,0.948,0.916,1.186,1.03,1.15,0.867,1.048,1.065,0.637,0.948,0.987,0.792,1.106,1.018,0.883,0.892,0.937,0.916,1.005,0.817 +XM_351489,1.113,1.122,1.055,1.0,0.958,1.087,1.079,0.88,0.963,1.217,0.836,1.081,0.919,0.907,1.1,1.104,1.221,1.0,1.093,1.011,1.135,0.915,1.13,1.027,0.924,1.108,1.017,0.951,0.656,1.006,0.947,0.969,1.066,0.933,0.987,1.077,1.005,0.963,0.99,0.991,1.03,1.034,0.928,0.964,0.899,1.055,1.08,0.95,0.927,1.203,0.934,0.879,1.087,1.201 +XM_351498,1.04,0.956,1.015,1.05,1.031,1.115,0.912,0.89,0.909,1.027,1.04,0.994,0.923,1.044,0.966,0.973,0.882,0.96,0.958,0.945,1.117,1.051,0.958,1.013,0.981,0.917,0.985,1.063,0.698,1.1,0.992,0.994,0.949,0.886,1.16,0.982,0.895,0.953,1.077,0.974,1.092,1.107,1.052,0.998,0.931,1.014,1.052,1.042,0.928,1.176,1.07,1.013,1.207,0.967 +XM_351505,0.89,0.89,1.001,1.06,0.995,1.113,0.916,1.037,1.013,0.835,1.054,1.008,0.894,0.902,0.968,0.92,1.014,1.003,0.929,1.026,0.984,0.819,0.969,0.971,1.023,1.024,0.996,0.963,0.859,0.977,0.995,0.989,0.999,0.934,0.911,1.231,0.996,0.917,1.019,1.017,0.994,0.887,0.994,1.035,1.061,1.096,0.937,0.935,0.998,0.892,1.062,1.011,1.235,1.13 +XM_351506,0.9,1.22,0.942,0.962,0.937,1.113,0.909,0.937,0.887,0.927,1.099,0.987,1.03,0.974,0.737,0.997,0.987,1.035,0.935,0.933,0.987,0.78,1.149,1.01,1.046,0.97,0.847,0.818,0.868,0.981,0.833,1.037,1.511,1.032,0.828,0.974,1.007,0.988,1.137,1.12,0.867,0.901,1.099,1.569,0.968,1.168,0.972,1.009,0.903,0.904,0.978,0.885,0.952,1.085 +XM_351507,1.134,0.838,1.093,1.04,0.888,1.149,1.11,0.972,1.058,0.936,1.207,1.1,0.985,0.919,0.935,0.938,0.897,0.954,1.147,0.894,1.219,0.95,1.189,1.221,1.114,1.023,1.05,1.112,1.129,0.867,1.164,0.864,0.849,0.802,0.921,0.838,1.026,0.961,0.879,0.867,1.005,1.046,0.912,0.928,1.029,0.906,0.796,1.043,1.05,1.196,1.098,0.952,1.047,0.821 +XM_351512,0.925,0.968,1.006,1.14,0.959,1.261,1.041,0.849,0.868,1.089,0.971,1.103,0.998,1.168,0.933,1.002,1.087,0.959,0.931,1.062,0.968,0.973,0.882,0.856,1.004,0.952,1.056,0.967,0.956,1.146,0.864,1.069,1.133,1.032,0.967,1.08,1.033,1.052,1.002,0.955,0.857,1.104,1.036,1.023,0.883,1.071,0.898,0.882,0.949,0.872,1.058,0.997,1.092,0.823 +XM_351515,1.11,1.037,1.066,1.169,1.045,0.971,0.955,0.773,0.928,1.06,1.109,1.042,1.031,1.006,0.93,0.927,0.993,0.999,0.861,0.898,1.014,0.96,0.919,1.125,0.968,0.957,1.166,1.165,0.748,0.998,1.001,0.967,0.964,1.078,0.986,1.057,1.016,0.937,0.913,1.02,1.012,1.037,0.846,0.953,1.056,1.057,0.906,0.901,1.032,1.062,1.112,1.06,1.11,0.873 +XM_351520,0.918,0.927,0.876,0.93,0.87,1.181,0.795,0.751,1.041,0.888,1.573,0.948,0.865,0.925,1.125,1.875,0.843,1.065,0.98,1.41,0.734,0.87,4.035,0.826,0.912,0.859,0.905,1.005,0.908,0.859,0.778,0.919,2.44,1.001,0.79,2.292,1.448,0.967,1.309,1.586,0.923,1.725,1.679,1.688,0.892,2.205,0.95,0.858,2.636,0.872,1.706,0.803,0.883,5.762 +XM_351525,1.045,1.089,0.87,1.043,0.881,0.964,1.304,0.96,0.902,1.051,0.99,0.908,1.034,0.899,1.153,0.907,1.088,1.056,1.0,1.101,1.001,1.063,0.909,0.934,1.153,0.965,0.959,0.935,0.999,0.963,0.991,0.893,1.067,1.084,1.1,1.029,0.936,1.002,0.986,1.073,1.057,0.973,1.052,1.124,0.947,1.019,1.013,0.943,1.059,1.038,1.07,1.02,1.013,1.004 +XM_351535,0.918,1.04,0.858,0.997,0.958,0.957,0.929,1.162,0.951,1.08,1.105,0.945,0.908,1.007,0.832,0.963,0.905,0.987,0.977,1.223,0.997,1.041,1.04,0.873,1.101,0.987,1.084,1.126,0.96,0.888,0.989,1.413,0.985,1.219,0.937,1.005,1.124,1.042,1.07,0.918,1.031,1.23,0.968,1.044,0.986,1.087,0.857,0.982,0.926,1.044,0.834,0.958,1.232,1.018 +XM_351538,1.131,0.998,1.117,1.024,0.928,0.939,1.115,0.948,0.969,0.87,1.025,1.049,0.907,1.048,1.038,1.061,0.937,0.999,1.066,0.982,1.064,1.026,1.004,1.0,1.086,0.987,0.92,0.95,0.909,0.979,0.996,1.095,1.039,1.089,1.007,1.044,0.878,0.889,1.01,0.94,1.006,0.959,1.063,1.05,0.975,1.076,1.11,1.0,0.927,0.902,1.005,1.065,0.949,0.809 +XM_351544,0.948,0.907,0.9,1.166,1.038,1.064,1.019,1.014,0.96,0.923,0.955,1.06,0.903,1.156,1.152,0.897,1.05,0.961,1.06,0.937,1.047,0.966,0.88,1.029,1.068,1.096,0.972,0.922,0.924,1.108,0.925,0.973,0.973,1.022,1.077,1.118,0.907,1.01,0.961,0.935,1.167,1.119,1.098,0.971,1.022,1.0,0.989,1.1,1.248,0.917,0.973,0.893,1.024,1.052 +XM_351549,0.767,1.028,0.925,0.956,0.751,1.202,0.659,0.523,0.866,0.904,1.131,0.822,0.803,0.489,0.893,1.381,0.844,0.939,1.242,0.997,0.572,0.857,1.217,0.947,1.071,1.13,0.736,0.838,0.505,1.278,0.723,1.233,1.389,1.614,0.315,1.117,0.917,0.782,1.654,0.795,0.925,1.383,0.737,1.029,0.918,1.141,0.853,0.99,0.911,0.806,1.079,0.969,1.12,2.191 +XM_351551,1.012,0.961,1.038,0.959,1.045,0.973,0.903,0.895,0.931,0.939,1.119,1.004,0.979,1.126,1.187,0.955,0.908,1.11,0.993,0.911,1.04,0.965,0.904,1.016,1.027,0.987,1.003,0.984,0.81,0.899,1.001,1.166,1.008,0.999,1.052,1.038,1.09,1.119,1.004,1.064,1.163,1.204,0.986,1.212,0.961,0.949,0.9,1.011,0.955,0.92,0.94,0.821,0.913,1.069 +XM_351553,1.051,1.072,1.042,1.075,1.006,1.131,0.958,0.879,1.024,0.963,0.994,0.968,1.026,0.898,0.919,1.032,0.967,0.976,0.981,1.111,1.112,1.043,0.879,0.944,0.983,0.962,0.972,0.874,1.354,0.997,1.046,0.95,0.873,0.955,1.067,0.961,1.021,1.027,1.011,1.102,0.906,0.977,1.118,1.019,0.924,0.953,0.987,0.948,0.928,0.991,1.049,1.08,0.963,1.103 +XM_351558,0.972,1.148,0.885,1.089,0.981,1.008,1.002,0.931,0.895,1.006,1.174,0.972,0.926,0.925,0.818,1.087,0.898,1.058,0.954,1.073,0.979,0.847,1.056,0.954,1.124,0.809,1.076,0.83,0.642,1.253,0.982,2.724,1.433,1.181,0.996,0.976,0.951,0.941,0.997,1.41,1.081,1.539,0.739,1.085,0.954,1.136,0.925,0.995,0.968,0.913,0.904,1.272,1.065,1.161 +XM_351563,0.998,0.875,1.035,1.016,0.934,1.03,0.811,1.1,1.12,1.056,1.126,1.028,0.987,1.013,0.966,1.168,0.921,0.923,0.988,1.042,1.085,0.903,1.002,0.965,0.984,1.066,1.006,1.034,0.948,1.004,1.047,0.885,1.016,1.058,0.976,1.031,0.918,1.194,1.0,0.938,1.09,1.012,1.156,0.995,1.042,1.074,0.951,0.905,0.979,0.904,0.994,1.025,0.921,1.041 +XM_351569,1.158,1.01,0.906,1.138,0.921,1.008,0.972,1.198,0.989,0.955,0.94,0.966,0.997,1.092,0.943,1.134,0.942,0.904,0.817,1.039,1.015,0.908,0.988,1.014,0.891,0.984,1.14,1.015,0.933,0.942,1.043,1.088,1.013,1.055,1.034,0.926,1.014,0.978,1.1,0.955,1.056,0.866,1.099,1.029,0.879,1.018,1.074,0.998,1.001,0.888,0.933,1.156,0.983,1.036 +XM_351571,0.833,1.254,0.955,1.169,0.792,2.574,1.307,0.8,0.746,0.951,1.509,0.931,0.869,1.012,0.942,1.025,0.933,1.199,0.96,1.006,0.865,0.813,1.088,0.903,0.928,1.119,0.769,0.885,1.199,1.595,0.886,1.064,0.811,2.235,0.92,1.123,1.449,0.8,1.4,0.916,0.981,1.204,1.055,1.243,0.745,1.307,0.777,0.851,1.027,0.795,1.258,0.915,0.878,1.304 +XM_351572,1.161,1.092,0.898,1.0,0.827,1.099,0.985,0.993,0.914,0.957,1.037,1.0,1.046,1.125,1.068,1.024,0.992,1.064,0.982,1.031,0.98,1.06,0.892,1.111,0.958,0.982,0.831,1.057,1.092,0.926,0.963,0.995,1.058,1.032,1.235,1.066,1.064,0.893,0.9,0.97,0.889,1.093,0.84,0.942,1.072,1.22,0.903,1.081,1.005,1.077,1.02,0.988,0.914,1.022 +XM_351581,1.14,0.996,0.873,0.993,0.919,0.91,0.933,1.146,0.941,1.078,1.073,0.972,0.898,1.036,0.848,1.022,0.968,1.062,1.071,1.01,1.138,1.027,0.954,0.968,0.971,0.982,1.031,1.026,0.979,0.986,0.994,0.919,1.069,0.95,1.164,1.036,1.052,0.945,1.049,1.014,0.941,0.813,0.859,1.087,0.945,1.025,0.86,1.032,1.039,1.001,0.918,1.121,1.101,0.954 +XM_351589,0.929,0.871,0.908,0.882,1.037,1.001,0.93,1.103,1.077,0.961,0.938,0.986,1.126,1.011,1.011,0.963,1.007,0.976,0.953,1.01,0.938,1.069,0.999,1.054,1.02,1.049,1.139,1.072,1.139,0.881,0.982,0.919,1.035,0.917,0.902,1.062,0.99,1.057,1.187,0.897,0.971,1.044,1.108,1.136,1.018,0.921,1.015,1.055,0.898,1.019,0.985,0.843,1.05,1.071 +XM_351591,0.665,1.198,1.673,0.52,1.199,1.079,0.639,1.035,1.21,1.246,0.549,1.33,1.085,0.396,0.878,1.349,1.133,1.17,0.738,1.146,0.281,1.257,1.31,1.312,0.554,0.616,1.358,1.171,0.306,0.908,1.331,1.353,1.174,1.018,0.352,0.547,0.691,1.737,1.476,0.883,1.178,1.123,0.431,0.492,1.414,0.7,1.003,1.082,1.194,1.037,1.037,0.673,0.433,1.249 +XM_351593,0.955,1.008,1.127,0.822,1.119,1.017,1.068,0.838,1.0,0.869,0.997,1.101,0.932,0.953,0.976,1.07,0.864,0.889,1.007,1.051,0.95,1.036,0.989,1.031,0.969,0.934,0.953,1.107,0.985,0.87,1.051,0.957,1.151,0.942,1.221,0.953,0.978,1.001,1.141,0.985,1.064,0.957,0.941,1.082,0.911,0.893,1.112,0.915,0.969,0.946,0.969,0.887,1.071,1.114 +XM_351595,1.029,1.03,0.863,1.157,1.009,0.955,0.853,0.797,0.982,1.057,0.942,0.986,0.986,0.802,0.938,1.091,0.97,1.163,1.074,0.914,0.901,1.053,0.963,0.921,0.89,0.979,0.94,1.027,0.918,1.0,0.934,0.999,1.087,0.78,1.394,1.093,0.972,1.004,1.04,0.966,1.068,1.007,1.199,0.887,1.012,1.074,1.05,1.146,0.904,1.059,0.935,0.991,1.191,0.91 +XM_351596,0.936,0.942,0.832,1.033,1.005,1.02,0.997,1.028,1.005,1.079,1.006,0.855,1.029,1.324,1.001,0.969,0.939,0.951,0.971,1.197,0.984,0.915,0.933,0.993,1.009,0.953,1.105,1.059,1.048,1.008,0.974,1.094,0.955,0.892,1.076,0.942,1.281,0.847,1.008,0.957,1.017,1.042,1.094,1.136,0.962,0.988,0.861,0.997,1.047,1.041,1.016,1.042,1.008,0.848 +XM_351599,1.057,1.002,1.03,0.964,0.996,1.012,0.963,1.082,0.996,1.12,1.012,1.06,1.005,0.961,0.861,0.926,0.999,0.995,1.028,0.972,0.94,0.982,1.081,0.905,1.064,1.014,1.368,0.996,1.044,0.993,1.016,1.028,1.701,0.917,1.017,0.874,0.901,0.986,1.083,0.832,0.885,0.908,1.054,0.932,0.984,0.864,0.968,1.063,1.007,1.119,0.892,1.215,1.059,1.121 +XM_351606,1.167,0.965,0.977,0.864,1.077,0.98,1.136,1.037,0.893,1.102,1.084,1.021,0.838,0.948,1.017,1.152,0.969,1.048,1.028,1.036,0.978,0.881,0.964,0.992,1.032,1.03,1.043,1.087,0.719,1.064,0.939,0.994,1.07,1.017,0.85,1.052,1.244,1.176,0.993,1.023,0.818,0.936,0.683,1.045,1.086,1.105,1.029,0.971,1.065,0.953,0.953,0.892,0.976,0.938 +XM_351624,0.924,1.031,1.01,1.207,1.099,1.04,1.018,1.066,1.045,1.061,0.898,1.185,0.948,0.916,0.958,1.023,1.069,1.283,1.212,1.147,0.935,0.929,0.918,1.002,1.083,0.93,0.967,0.866,0.913,0.9,0.948,0.953,1.123,0.953,1.025,1.114,1.028,1.01,1.106,1.005,1.065,1.05,0.992,1.067,0.962,0.835,1.011,1.031,1.037,0.987,0.809,1.152,0.864,0.929 +XM_351628,1.072,1.014,1.078,0.985,1.0,0.908,1.049,0.893,1.072,0.864,1.097,0.947,0.979,1.136,0.82,1.032,1.158,0.921,0.927,1.266,1.113,0.951,0.987,1.078,0.93,0.938,0.917,0.851,0.882,0.962,1.081,1.003,1.019,0.848,0.989,0.964,1.065,1.135,0.951,0.992,0.962,0.998,0.932,1.256,1.1,1.274,1.27,1.039,0.973,1.166,0.922,1.073,1.117,0.96 +XM_351629,0.827,1.04,1.012,1.198,0.667,1.713,1.041,0.685,0.761,0.696,1.29,0.819,0.9,0.768,1.316,1.173,0.868,0.888,0.667,1.266,0.753,0.757,1.14,0.8,1.229,0.713,0.905,0.819,1.003,1.344,0.747,1.702,1.114,1.862,0.702,0.763,1.109,0.795,1.399,0.909,0.885,1.167,0.838,1.018,0.706,0.951,0.852,0.738,1.009,0.729,1.173,0.931,0.786,1.819 +XM_351631,1.007,1.084,0.978,0.966,0.949,1.024,0.861,0.928,1.212,0.888,0.975,1.035,0.904,0.922,0.959,0.999,0.92,0.961,0.962,0.911,0.895,1.013,0.897,0.92,0.987,1.048,0.996,1.062,0.938,1.107,0.993,1.05,0.955,0.872,1.065,1.043,0.955,0.957,1.011,1.121,0.999,1.017,0.957,0.984,0.992,1.044,1.015,1.006,1.078,1.003,1.074,1.039,0.989,0.996 +XM_351632,1.949,0.8,2.0,0.914,1.509,0.746,0.731,1.111,1.847,2.652,0.866,2.125,1.501,0.978,1.116,1.074,1.663,1.197,2.171,0.724,1.392,1.404,0.811,1.942,0.883,1.3,2.023,1.214,0.893,0.74,1.547,0.716,1.637,0.825,0.777,0.815,0.827,1.958,0.685,0.807,1.667,0.737,0.936,0.78,2.779,0.769,1.501,1.432,0.872,2.891,1.055,1.348,1.893,1.626 +XM_351633,1.014,0.985,1.088,0.854,0.992,1.021,0.878,0.921,0.939,0.986,0.966,1.153,1.21,1.095,1.003,0.988,1.066,1.053,0.997,1.078,0.867,0.88,1.159,0.872,1.027,0.939,1.086,0.917,1.132,1.126,1.002,0.941,1.152,1.327,1.147,0.992,1.001,0.896,0.975,0.846,1.152,0.971,0.832,0.971,1.041,0.989,1.078,1.113,0.978,0.963,1.222,1.008,1.182,1.028 +XM_351659,1.01,0.98,0.983,1.05,1.081,1.019,1.02,0.847,0.991,0.98,0.931,0.926,1.052,0.877,1.2,1.134,0.91,1.104,0.925,0.878,0.917,1.021,1.007,0.925,1.004,0.884,0.96,1.105,0.992,0.917,1.094,1.005,1.0,0.923,1.142,1.129,1.011,1.055,0.99,1.128,1.174,0.909,0.862,1.02,0.916,1.017,1.023,1.173,0.975,1.022,0.974,0.871,0.908,1.056 +XM_351660,0.893,1.011,1.01,0.946,1.146,0.969,1.03,0.985,1.141,1.064,1.001,1.085,1.113,0.823,0.984,0.975,0.924,1.129,0.994,1.128,1.176,0.918,1.068,1.036,1.094,0.99,0.925,1.016,0.913,0.989,1.151,0.954,1.092,0.858,0.968,1.025,1.103,1.047,0.88,0.902,1.002,0.831,0.987,1.071,1.042,0.854,0.995,0.936,1.095,1.005,1.0,0.972,1.057,0.932 +XM_351668,0.937,1.253,1.179,0.806,0.949,1.099,0.835,0.912,0.903,1.07,1.304,1.106,0.891,0.892,0.925,1.287,0.91,1.039,1.014,1.322,0.748,0.958,1.102,1.019,0.837,0.841,1.033,0.955,0.557,1.097,0.975,1.086,1.018,1.133,0.685,1.08,1.082,1.015,0.939,0.634,1.023,0.953,1.021,1.087,0.914,1.087,1.082,0.78,0.944,0.781,1.104,0.762,1.027,1.214 +XM_351669,0.972,1.082,1.029,0.918,0.904,0.917,0.701,1.072,0.917,1.05,1.091,0.976,1.032,0.965,1.032,1.04,0.881,0.985,1.004,0.972,0.932,0.898,1.03,1.132,1.165,1.05,0.963,1.063,0.593,0.916,1.028,1.031,0.996,1.114,0.929,0.976,0.966,1.069,1.085,1.004,1.023,0.958,0.919,0.927,1.209,0.92,0.95,1.092,1.083,1.086,0.939,1.111,0.918,0.909 +XM_351673,1.03,0.792,0.904,1.085,1.006,1.039,1.064,0.996,0.897,1.031,0.815,0.817,0.991,1.022,1.26,1.096,0.908,0.866,1.158,0.831,1.123,1.061,1.112,0.944,1.049,1.092,1.202,1.168,0.861,1.071,1.357,0.908,0.925,0.861,0.887,0.992,0.893,1.043,0.924,1.156,0.87,0.967,0.852,0.926,1.139,1.052,1.065,1.069,0.96,0.898,1.021,0.985,0.929,0.766 +XM_351674,0.852,24.62,0.76,12.01,0.935,1.914,6.11,0.856,0.882,1.01,0.892,1.051,1.445,0.88,1.13,1.137,0.975,2.137,0.699,10.4,0.971,0.992,0.952,0.913,2.273,0.955,0.879,0.789,1.022,8.033,0.94,0.831,0.897,32.78,0.993,0.872,5.993,1.014,0.922,0.842,0.737,49.9,1.405,1.035,0.813,6.426,0.843,0.839,1.151,0.86,10.34,0.833,0.956,0.754 +XM_351675,0.488,0.78,1.31,0.84,0.684,1.44,0.463,0.343,0.759,0.749,2.261,0.432,0.529,0.749,1.241,2.136,1.181,0.885,1.145,1.366,0.404,0.461,1.291,0.686,0.549,0.742,1.388,0.539,0.462,1.249,0.781,0.822,1.456,2.083,0.647,0.634,1.624,0.506,1.089,0.893,0.763,1.112,0.984,1.404,0.746,1.465,0.98,0.673,1.05,0.656,1.32,0.688,1.049,1.253 +XM_351689,1.016,0.868,1.016,1.183,0.944,1.035,0.933,1.171,1.129,0.929,1.023,1.086,0.895,0.908,0.905,0.988,0.926,1.017,1.078,1.155,1.039,0.982,1.042,0.994,1.015,1.064,0.973,0.966,1.104,1.043,1.013,0.968,0.898,0.947,0.952,1.028,1.004,1.01,0.997,0.997,0.957,1.063,1.005,1.007,0.986,1.207,1.011,1.06,0.958,0.992,1.077,1.082,0.993,0.96 +XM_351694,0.637,1.025,1.177,0.605,0.795,1.286,0.743,0.585,1.173,0.872,0.973,0.876,0.726,0.639,1.044,1.299,0.773,0.705,0.677,1.214,0.48,0.843,1.602,0.979,0.818,0.461,1.21,0.841,0.442,1.867,0.899,3.179,2.988,1.419,0.318,1.065,0.843,1.072,1.226,1.691,1.239,1.348,0.578,1.082,0.951,0.945,1.462,0.55,1.01,0.623,1.042,1.552,0.65,2.394 +XM_351695,0.89,1.08,0.949,0.959,0.973,1.007,1.06,0.959,0.932,0.901,1.079,0.916,0.887,0.913,0.98,1.409,0.994,0.949,0.95,1.013,0.795,0.91,1.151,1.013,1.013,0.924,0.823,0.962,0.777,0.814,1.012,1.116,1.024,1.082,1.036,2.3,0.84,0.897,1.115,1.086,0.932,1.188,0.993,1.034,1.038,0.862,0.936,0.944,1.05,1.066,0.988,1.106,0.925,2.397 +XM_351713,1.166,1.03,1.014,0.94,0.842,1.065,1.001,1.219,0.998,1.021,1.099,1.004,1.037,0.97,0.883,1.125,0.984,1.011,0.923,1.026,1.082,0.945,0.988,0.959,1.127,0.966,1.063,1.045,0.991,1.089,1.062,1.011,1.094,0.884,0.947,0.906,0.991,0.991,0.994,0.984,1.069,1.033,0.995,0.939,0.945,0.955,0.993,1.054,0.996,1.059,0.925,1.071,0.995,0.991 +XM_351729,0.875,1.223,0.879,1.012,0.828,2.019,1.141,0.825,1.194,0.712,1.376,0.876,0.648,1.021,0.865,0.851,0.746,1.04,0.903,1.05,0.666,0.736,0.784,0.898,0.944,1.028,0.829,0.81,1.962,3.679,1.171,0.975,0.91,1.925,2.016,1.192,1.275,1.044,1.884,1.092,0.797,1.153,0.841,1.012,0.725,1.11,1.231,1.157,0.709,0.799,1.084,0.947,0.7,1.711 +XM_351733,1.079,1.001,0.92,1.045,1.021,1.068,0.997,1.027,1.003,0.813,1.198,0.87,1.259,1.168,1.251,1.05,1.087,0.983,1.35,1.199,0.892,0.904,1.054,0.949,1.128,0.988,0.937,0.885,0.98,1.177,0.966,0.948,0.938,0.999,0.993,1.078,1.085,0.996,1.122,0.978,1.017,1.093,0.966,0.877,1.005,1.04,0.899,0.864,0.932,0.872,1.017,1.018,1.096,1.144 +XM_351742,1.002,1.065,0.852,0.991,0.884,1.078,0.971,0.853,0.877,0.908,1.245,1.116,1.033,0.937,0.929,1.024,0.987,0.845,1.099,0.721,0.912,0.938,0.991,1.09,0.988,1.045,1.058,0.997,0.76,1.077,0.932,0.998,0.818,1.16,0.918,0.941,1.084,0.856,0.914,0.999,0.882,1.001,1.174,1.006,1.046,0.895,0.871,0.889,0.957,0.898,1.067,0.998,1.089,0.969 +XM_351744,0.836,0.941,0.876,0.966,0.939,0.997,0.962,1.054,0.985,0.985,0.983,1.085,1.074,0.979,1.005,0.942,0.906,1.057,1.105,1.175,1.028,1.137,0.899,1.001,1.071,0.965,1.054,1.015,0.851,0.99,0.973,1.002,0.91,1.014,1.044,1.14,1.035,1.02,0.955,0.972,1.013,0.972,1.087,1.028,1.024,1.118,0.9,0.939,0.95,1.016,0.959,1.055,1.159,0.979 +XM_351751,0.999,0.996,0.913,1.052,1.209,1.147,0.934,0.97,1.074,1.038,1.126,0.99,1.076,0.928,1.001,1.038,1.037,1.033,1.098,1.017,1.131,0.979,0.945,0.841,0.97,1.043,1.073,1.012,0.761,0.943,1.036,1.024,0.889,0.998,0.972,1.11,0.929,0.982,1.107,1.078,0.849,0.804,0.862,0.949,1.063,1.094,1.059,0.983,1.018,0.977,0.984,1.022,0.912,0.897 +XM_351772,0.972,0.975,0.946,0.963,1.104,0.914,0.94,0.959,1.002,0.996,1.183,1.141,0.951,1.008,0.869,0.9,1.051,0.952,0.991,0.99,1.035,1.016,0.926,0.937,1.261,0.886,1.094,1.004,0.966,1.021,0.992,1.077,1.173,0.999,1.097,1.051,0.842,0.973,0.882,1.054,1.07,1.038,0.942,1.061,1.007,1.054,0.921,0.999,0.895,1.02,0.968,1.143,0.942,1.133 +XM_351774,0.931,0.907,0.991,1.023,0.932,1.042,0.885,1.004,0.926,0.947,1.08,0.925,0.885,0.829,0.81,1.065,0.938,1.031,1.048,0.854,0.895,0.814,1.389,1.031,0.893,0.862,1.57,0.983,0.614,1.041,0.934,0.955,1.905,0.996,0.719,1.303,1.116,1.021,1.503,1.047,0.94,0.868,0.906,1.102,0.913,0.936,0.989,0.809,1.303,0.929,1.293,0.951,0.872,2.005 +XM_351775,1.024,1.162,1.038,0.97,1.084,1.013,0.991,1.032,0.904,0.974,0.985,1.072,0.913,1.065,0.866,0.989,1.107,0.985,0.93,0.993,0.943,0.964,1.052,0.949,1.139,0.989,0.9,1.126,0.998,0.931,1.016,1.046,1.029,1.107,1.011,1.001,0.92,0.966,1.012,1.005,1.041,1.068,0.925,0.955,1.15,1.094,0.908,1.02,1.008,0.851,0.961,1.046,0.914,0.88 +XM_351780,0.701,0.976,0.781,0.886,0.733,1.7,1.527,0.424,0.797,0.969,2.194,0.829,0.599,0.537,0.697,1.1,0.67,0.986,0.804,0.943,0.716,0.708,1.908,1.943,1.497,1.473,0.938,0.647,1.221,0.813,0.619,1.532,4.829,1.248,0.433,1.4,1.069,0.771,2.868,1.539,1.013,1.242,0.689,4.057,0.912,1.336,1.626,0.784,0.78,0.759,1.055,1.546,0.932,2.208 +XM_351781,0.939,0.974,0.949,1.137,0.996,1.019,0.879,1.1,1.094,1.019,0.962,1.174,1.001,1.096,0.741,1.07,0.845,1.073,0.893,1.128,1.132,0.982,0.897,1.005,1.095,1.13,0.929,0.987,0.896,0.968,1.198,1.009,1.185,1.173,0.991,0.964,1.08,0.962,0.973,1.059,1.052,1.067,0.992,0.955,0.947,0.941,0.983,0.923,1.083,0.968,1.106,0.982,0.999,0.894 +XM_351784,1.04,0.917,1.0,0.995,0.973,1.028,0.961,1.078,1.051,0.965,1.045,0.964,0.965,0.812,1.091,1.077,1.112,1.021,1.014,0.917,0.958,1.243,1.088,0.981,0.967,0.943,0.987,0.984,0.812,1.05,1.038,1.109,1.07,1.0,0.92,0.975,1.039,0.858,0.979,0.957,1.01,0.943,1.116,0.979,1.043,1.096,1.026,0.955,1.018,1.026,1.02,1.048,1.18,0.932 +XM_351785,0.981,0.879,1.0,0.947,1.23,0.897,0.992,1.087,1.079,1.218,0.718,1.339,1.189,1.094,0.954,1.0,0.95,0.932,1.269,0.88,1.185,0.993,1.052,1.158,0.872,1.049,1.088,1.276,1.291,0.915,1.061,0.905,1.053,0.86,0.944,0.857,0.86,1.079,0.94,0.948,1.238,1.034,1.143,0.9,1.023,0.855,0.966,1.084,0.976,1.056,1.092,1.001,0.986,0.665 +XM_351787,1.147,0.942,1.034,1.185,1.024,1.032,1.012,0.944,0.866,0.89,1.093,1.049,0.962,1.094,0.816,1.066,0.951,1.003,1.067,0.854,0.907,1.09,1.044,0.975,1.032,1.06,1.059,0.978,0.76,0.957,0.986,0.944,1.038,0.813,1.101,0.923,1.054,0.92,1.056,1.083,1.028,0.966,1.496,1.096,1.102,0.817,1.003,0.992,0.997,1.132,1.011,1.074,0.971,0.905 +XM_351807,1.056,0.946,0.922,1.052,1.015,1.042,0.936,1.221,1.093,1.095,1.147,1.055,0.866,0.76,1.065,1.106,1.071,0.914,0.94,0.982,1.058,0.898,0.965,1.003,1.115,1.125,0.977,1.058,1.159,0.91,0.975,1.05,0.987,1.014,0.941,1.081,1.176,1.006,0.973,0.989,0.961,1.043,1.189,1.068,0.969,0.918,1.156,1.0,0.898,1.049,0.997,0.912,1.066,1.021 +XM_351809,1.102,1.104,0.934,1.005,1.196,1.002,0.94,0.891,0.862,1.034,1.011,1.175,1.077,0.886,0.76,1.199,1.063,0.911,1.089,1.072,1.024,1.12,0.986,1.004,0.97,1.098,0.928,0.875,1.38,1.088,1.088,0.898,1.084,0.993,0.924,1.134,1.059,0.996,1.057,0.965,0.986,1.005,0.938,1.094,0.938,0.958,0.909,0.914,0.853,0.947,0.918,0.948,1.068,0.953 +XM_351827,0.935,0.963,1.061,0.877,1.109,0.904,0.991,0.848,1.208,0.957,0.798,0.865,0.843,1.135,0.925,1.014,1.034,0.909,1.039,0.891,0.869,1.028,1.033,1.263,0.963,0.856,0.931,1.077,1.079,0.982,1.146,1.443,2.284,0.811,1.388,0.912,0.845,0.883,1.249,1.173,1.065,1.031,0.886,1.208,0.999,0.873,1.174,1.334,1.039,0.988,0.92,0.948,1.263,1.563 +XM_351834,1.094,0.922,1.133,1.039,1.218,0.951,1.048,1.151,0.994,0.9,1.116,1.043,0.845,1.128,0.936,0.944,0.944,0.943,1.096,0.934,0.879,0.856,1.024,0.97,0.926,0.942,1.073,1.027,1.463,1.05,0.889,0.854,1.181,0.979,1.094,1.114,0.94,1.083,1.05,0.982,1.05,1.052,1.293,0.939,1.016,1.05,0.843,1.008,0.9,1.09,0.989,0.982,1.179,1.045 +XM_351837,0.936,0.95,1.277,0.693,1.389,1.217,0.898,0.819,1.785,1.352,0.988,1.342,0.945,0.879,0.835,0.969,0.811,0.913,0.854,0.902,0.82,1.0,0.927,1.338,0.751,0.674,1.479,1.355,0.862,1.0,1.23,1.025,1.222,0.872,0.993,1.255,0.922,1.12,1.072,1.772,1.611,1.047,1.142,0.793,1.048,1.136,1.419,0.651,1.301,0.862,0.994,0.991,0.864,1.208 +XM_351842,0.285,1.242,0.891,0.916,0.53,2.805,0.857,0.418,0.643,0.538,1.765,0.569,0.486,0.481,1.304,3.083,0.66,1.25,0.734,1.83,0.391,0.584,2.121,0.65,0.732,0.458,0.713,0.481,0.817,2.26,0.602,1.768,1.165,2.295,0.318,0.609,2.234,0.563,2.192,0.985,0.791,2.144,1.129,1.209,0.539,1.804,1.35,0.519,1.982,0.44,1.561,0.559,0.493,1.847 +XM_351844,0.949,1.161,1.007,0.998,1.086,1.14,1.133,0.996,1.098,0.962,1.019,1.028,0.98,0.829,1.001,1.02,1.088,1.057,0.974,1.099,1.027,1.007,1.059,1.035,0.975,0.896,0.951,1.104,0.909,1.002,1.088,0.918,1.011,0.93,1.007,1.064,0.996,0.839,1.146,1.008,1.227,0.86,0.97,1.065,1.08,0.956,0.969,0.971,1.18,0.987,0.95,1.003,0.993,1.0 +XM_351845,1.033,1.091,1.031,0.907,0.946,0.91,1.032,1.073,1.108,1.055,1.101,1.045,1.008,1.227,1.207,1.02,1.077,0.894,0.917,1.057,1.065,1.032,0.922,1.031,1.095,1.019,1.044,1.27,1.074,1.004,0.904,1.201,1.149,0.936,0.883,1.045,0.866,1.057,0.93,0.897,1.071,0.956,0.897,0.923,0.892,0.874,0.9,1.007,0.915,0.983,0.923,0.993,1.029,1.005 +XM_351848,1.1,1.152,0.892,0.998,0.977,1.013,0.893,1.093,1.128,1.121,1.07,1.069,1.119,0.862,0.882,0.813,0.897,0.974,1.076,0.988,1.034,0.921,0.944,0.902,1.095,1.049,1.009,1.236,0.912,1.1,1.117,0.907,1.198,0.911,0.982,1.069,1.079,1.062,1.069,0.971,1.051,0.958,0.949,1.057,0.884,1.023,1.133,0.853,1.132,1.046,1.064,0.982,1.08,0.964 +XM_351851,0.897,1.069,1.218,0.807,1.009,0.912,0.572,0.896,1.192,1.173,0.847,1.155,0.876,0.797,0.854,1.331,0.825,0.956,1.791,0.797,0.837,1.03,0.881,1.236,0.674,1.356,1.167,0.951,0.462,0.986,1.137,1.132,2.217,1.242,0.654,0.892,0.747,1.046,1.167,0.922,0.998,0.903,0.504,1.348,1.138,0.579,0.824,1.292,0.584,1.059,0.887,1.011,1.077,1.459 +XM_351852,1.01,1.002,0.954,1.131,1.078,1.089,0.954,0.948,1.203,1.059,0.863,0.904,0.96,0.87,0.947,0.995,0.964,1.102,1.031,0.874,1.083,0.954,1.091,0.885,0.999,1.049,1.101,0.928,0.873,0.983,1.027,0.928,1.045,0.999,1.001,1.058,1.077,1.02,1.053,0.945,1.01,1.042,1.18,1.092,1.114,0.92,1.001,1.003,0.957,1.092,1.077,0.869,1.119,1.073 +XM_351854,0.91,1.175,0.947,0.993,0.942,0.929,0.979,1.004,0.931,0.85,0.92,0.761,0.908,0.796,1.398,0.993,0.971,0.84,0.882,1.265,0.73,0.881,1.173,0.942,0.858,0.933,0.844,0.863,0.704,1.17,0.9,1.408,0.863,1.132,0.868,1.737,1.004,1.033,1.11,1.08,1.176,1.187,1.105,0.948,0.956,1.184,2.8,0.949,1.481,0.894,1.207,1.068,0.911,1.876 +XM_351857,1.146,0.744,1.965,0.791,1.991,0.74,0.616,1.243,2.383,1.775,0.62,1.4,0.887,1.482,1.449,0.846,1.73,1.154,2.293,0.664,1.144,1.523,0.729,1.884,0.594,1.306,1.778,1.882,0.473,0.814,1.709,1.098,1.605,0.761,1.655,1.185,0.743,1.888,0.73,0.862,2.094,0.752,0.745,0.854,1.547,0.712,1.303,1.422,0.65,1.314,0.787,0.891,1.604,1.233 +XM_351859,1.0,1.053,0.894,1.081,1.095,0.928,1.14,1.056,0.98,0.978,1.062,1.059,1.052,1.086,0.838,0.964,1.05,1.029,0.99,1.007,0.984,0.86,0.971,0.909,1.021,1.006,1.061,0.978,0.886,0.967,1.015,0.892,0.915,0.915,1.063,1.003,0.927,0.95,0.917,0.971,1.134,1.062,0.951,0.941,0.942,0.916,0.967,1.015,1.134,1.11,1.105,1.126,1.265,0.945 +XM_351860,1.081,0.953,0.885,0.979,0.949,0.773,1.074,0.954,1.143,0.948,0.975,1.009,1.043,0.918,1.009,1.098,1.104,1.183,0.892,0.985,0.946,0.966,0.919,1.056,1.017,0.963,1.029,0.977,1.092,0.986,0.888,1.135,0.994,1.047,1.001,0.995,0.964,1.068,1.08,1.004,1.041,0.811,0.852,0.979,1.082,1.039,1.046,0.999,1.047,1.103,1.056,1.046,0.929,0.918 +XM_351868,0.833,1.026,1.155,0.936,0.913,1.385,1.093,0.92,0.937,1.035,1.247,0.66,0.956,0.722,1.272,1.57,0.906,1.134,0.933,1.325,0.67,1.045,0.999,0.874,0.93,0.958,0.966,0.995,0.848,1.19,1.011,1.421,1.082,1.365,0.981,1.087,1.044,1.0,1.416,0.791,0.906,1.161,0.904,0.955,0.962,1.435,0.907,0.976,0.891,0.749,1.173,0.605,0.804,1.056 +XM_351882,1.06,1.106,1.035,1.01,0.976,1.059,1.196,0.855,0.931,1.025,0.966,0.908,0.929,0.982,0.943,0.906,0.9,0.943,0.803,1.019,0.923,0.97,0.884,0.943,0.875,1.013,1.088,0.958,1.092,1.042,0.837,1.124,2.286,0.919,1.055,1.034,1.129,0.923,1.326,1.032,1.018,0.993,0.979,0.987,0.94,1.285,0.961,1.063,1.148,1.211,1.0,0.893,1.092,2.17 +XM_351884,1.077,1.057,0.962,0.964,0.967,0.934,1.119,1.048,1.134,1.124,0.948,1.057,0.957,0.845,0.868,1.089,0.956,0.913,0.945,0.934,0.958,1.061,1.001,0.92,0.992,0.899,1.061,1.031,0.794,1.029,1.076,1.156,0.836,1.029,0.92,1.007,0.977,1.123,1.071,1.06,1.043,0.878,0.884,1.042,0.962,1.129,1.152,1.132,1.109,0.99,1.122,1.061,0.854,0.857 +XM_351885,0.725,1.292,0.865,0.937,0.684,1.067,0.592,0.616,0.644,0.729,1.105,0.555,0.564,0.729,0.913,1.206,0.784,0.928,0.864,1.201,0.969,0.68,0.977,0.584,0.698,0.97,1.048,0.55,0.494,1.325,0.828,2.51,4.426,1.402,1.074,1.0,0.946,0.614,4.569,1.827,0.64,1.096,0.567,4.232,0.757,0.864,0.882,0.929,0.587,0.959,1.238,1.096,1.041,1.423 +XM_351887,0.965,1.068,0.935,1.308,0.884,0.888,0.969,1.171,0.838,0.873,0.83,0.925,0.961,1.054,0.725,1.028,1.124,0.966,1.009,1.027,0.787,0.947,0.85,0.94,0.992,1.097,0.766,0.998,1.213,0.968,0.892,1.176,1.03,0.952,1.238,0.912,1.022,1.036,1.229,0.905,1.037,0.908,1.435,1.027,1.045,0.934,0.915,1.024,1.08,1.082,1.088,1.097,1.054,1.139 +XM_351892,1.209,1.076,0.99,1.069,1.029,0.92,0.971,0.857,1.008,1.077,1.145,0.905,0.985,0.958,0.871,0.996,0.922,0.887,0.961,0.91,1.199,0.909,0.978,0.836,1.066,0.906,1.269,0.928,1.048,1.036,1.067,1.003,1.009,0.973,1.201,1.148,1.027,0.952,0.847,0.998,0.99,0.985,1.174,1.055,1.187,0.871,0.953,1.1,0.979,1.196,0.899,0.955,0.996,1.051 +XM_351895,1.006,0.772,1.089,0.842,0.926,0.863,1.073,0.831,1.159,0.997,0.858,1.082,0.996,1.133,1.084,1.0,1.065,0.937,1.171,0.773,1.079,1.126,1.046,1.021,0.816,1.0,1.043,0.966,0.912,0.783,1.084,1.616,0.906,0.867,1.044,0.99,0.905,0.948,1.133,0.826,1.003,1.036,0.905,1.164,1.022,1.097,0.918,1.155,0.826,1.154,1.067,1.068,0.978,1.196 +XM_351906,0.996,1.05,1.006,1.127,1.046,1.023,0.846,0.866,1.134,1.009,0.972,1.105,1.097,0.873,0.839,1.152,1.021,1.086,0.829,0.94,1.034,0.869,0.96,1.093,1.0,1.075,0.941,0.981,0.807,1.012,0.983,0.895,0.968,0.953,1.007,1.173,1.035,1.093,0.974,0.983,0.989,1.037,0.673,0.972,0.987,0.934,1.049,1.056,0.87,1.166,0.998,1.042,1.009,1.021 +XM_351912,0.996,1.008,1.1,1.081,1.08,0.933,1.071,1.008,1.201,1.184,1.066,1.004,0.871,0.955,0.894,1.005,0.97,0.983,1.068,0.942,0.921,0.929,0.981,0.828,0.834,1.075,0.977,1.02,0.878,1.039,0.954,0.997,0.91,1.123,0.954,0.974,1.036,1.142,0.929,0.968,1.088,0.813,0.801,1.082,1.047,0.926,0.999,1.123,0.798,1.04,1.101,0.868,0.887,1.001 +XM_351913,1.018,1.022,1.121,1.062,1.05,1.079,1.035,1.08,1.11,0.933,0.972,1.054,0.963,1.346,1.061,0.981,0.853,1.076,0.953,0.899,0.981,0.967,0.845,0.999,1.047,0.949,0.956,1.19,0.907,1.016,0.824,0.881,1.117,0.916,0.839,0.943,1.087,1.074,0.923,1.278,0.971,1.091,1.011,0.928,0.929,1.067,1.158,1.003,0.869,0.924,0.992,0.959,0.886,0.79 +XM_351915,0.968,0.914,0.952,0.988,0.976,1.019,0.954,1.11,1.011,0.947,0.966,1.008,0.96,0.965,1.111,0.919,1.03,0.966,0.894,1.035,0.831,1.2,0.921,1.085,0.984,1.178,0.893,1.07,0.867,0.97,1.005,0.926,1.041,0.973,0.967,1.133,0.955,1.059,0.939,0.968,0.867,1.024,1.005,0.857,1.003,0.947,0.973,0.976,1.054,0.909,1.066,0.781,1.047,1.049 +XM_351919,1.049,0.879,0.989,0.948,1.01,0.898,0.96,0.922,0.951,0.866,0.944,1.0,0.912,1.102,0.842,1.007,0.962,0.931,0.854,0.962,1.128,0.975,1.017,0.946,1.066,0.921,0.917,0.971,1.199,1.047,1.095,1.027,0.923,1.042,0.97,0.919,1.126,0.876,0.96,0.896,1.056,1.056,1.019,1.074,0.971,1.212,1.033,1.036,1.006,0.879,0.997,1.037,1.057,1.005 +XM_351929,0.706,0.957,1.313,0.655,1.078,0.9,0.501,0.558,1.411,1.338,0.652,1.08,0.803,0.52,0.715,1.309,0.899,0.928,1.203,0.833,0.575,0.976,1.413,1.356,0.586,0.779,1.488,0.806,0.494,0.891,1.074,1.411,1.837,1.048,0.327,0.99,0.801,1.145,1.666,0.925,1.201,1.119,0.549,1.383,1.319,0.866,1.134,0.863,1.088,1.01,0.958,1.023,0.784,1.688 +XM_351930,0.67,0.852,1.129,0.713,0.8,0.784,0.499,0.418,1.04,1.257,0.594,1.075,0.614,0.422,0.808,1.565,0.827,1.012,1.739,0.858,0.704,0.73,1.217,0.969,0.616,1.517,1.014,0.904,0.394,0.775,0.919,0.829,1.866,1.234,0.237,1.164,0.693,0.884,1.777,0.924,0.978,1.02,0.573,1.46,1.386,0.602,0.73,0.985,1.037,1.111,0.878,0.761,1.334,1.856 +XM_351934,1.082,1.095,1.013,0.999,1.047,0.979,1.236,0.901,0.961,1.04,1.107,1.087,0.925,0.89,1.091,0.843,0.932,0.91,1.013,1.028,1.033,1.09,1.012,1.087,1.017,1.13,0.992,0.962,1.026,1.055,1.022,0.961,1.032,1.011,1.0,1.025,0.922,0.901,0.97,1.014,0.976,1.069,0.959,0.982,1.047,0.965,0.947,1.024,1.014,0.948,0.97,0.846,1.113,0.843 +XM_351948,1.114,0.911,1.032,0.945,0.905,0.9,0.987,1.054,1.04,1.124,0.937,1.012,0.971,0.857,0.882,0.921,0.889,1.109,1.053,0.946,1.063,0.979,0.909,0.863,1.01,1.087,1.015,0.901,1.125,1.007,1.045,0.938,1.032,0.94,0.91,0.872,1.002,0.985,0.968,1.097,0.943,1.036,1.13,1.069,1.019,1.113,0.956,0.953,1.041,0.976,1.05,1.015,0.746,1.082 +XM_351950,1.022,0.897,1.165,1.019,0.895,1.128,0.694,0.785,1.223,1.186,1.212,0.86,1.006,0.91,0.913,1.574,0.98,0.929,1.005,1.0,0.917,1.099,1.094,1.122,1.253,0.915,0.935,0.962,0.674,0.949,0.987,0.927,1.086,1.057,0.981,1.039,1.183,1.205,1.166,0.875,1.137,0.996,0.962,0.929,1.087,1.173,1.126,1.02,0.985,1.004,0.949,0.833,1.043,1.068 +XM_351954,1.072,0.985,1.034,1.007,1.074,0.95,0.909,0.985,0.991,0.902,0.917,1.044,0.953,0.924,0.882,1.033,1.008,0.878,0.913,0.977,0.982,1.062,0.89,1.019,1.012,1.144,1.06,1.035,0.876,0.99,0.916,1.028,1.001,1.036,0.933,0.952,1.095,0.994,0.939,1.092,0.995,0.979,1.207,0.988,0.952,0.996,1.069,1.026,1.116,0.964,0.916,0.952,1.05,0.985 +XM_351961,0.992,1.254,0.974,0.972,1.012,0.954,0.856,0.898,1.169,1.011,1.134,1.154,1.064,0.866,1.033,0.949,1.202,1.145,0.971,0.971,0.956,1.006,1.073,1.007,1.006,1.143,0.893,0.94,0.964,1.092,1.085,0.988,0.986,0.943,0.836,1.052,1.012,0.952,1.089,0.977,1.112,1.009,0.926,1.102,1.132,1.125,1.047,1.131,0.955,0.978,0.974,0.972,1.13,1.246 +XM_351963,1.091,0.976,0.97,1.1,1.07,0.98,0.825,0.958,1.017,0.914,1.151,1.11,1.072,0.983,1.091,1.031,1.053,1.127,0.969,1.01,1.031,0.957,1.006,0.988,0.949,0.94,0.88,0.933,0.897,1.116,0.956,0.818,1.081,0.945,1.12,1.035,1.064,0.919,0.94,1.125,0.848,1.125,0.953,1.133,0.911,0.927,1.115,0.968,1.108,1.063,0.955,1.037,1.08,1.041 +XM_351971,1.093,0.954,1.139,0.992,0.971,1.013,1.013,0.93,1.033,0.939,1.038,1.157,0.945,0.892,1.028,0.827,1.033,0.904,0.967,0.941,1.12,0.982,0.944,0.868,0.931,1.1,0.919,0.898,1.0,0.898,0.865,1.055,0.925,0.92,1.006,0.95,1.024,1.156,1.027,1.145,1.273,1.06,0.959,1.184,0.9,1.102,0.938,1.006,0.93,0.969,0.918,0.963,1.039,0.909 +XM_351988,0.827,0.804,1.01,0.719,1.19,0.91,0.679,0.754,1.294,1.238,0.81,1.091,0.826,0.639,0.876,1.386,1.076,1.141,1.444,0.965,0.817,1.042,1.38,1.236,0.489,1.055,0.86,1.142,0.432,0.936,0.96,1.001,1.912,1.078,0.443,0.899,0.942,1.14,1.366,0.591,1.137,0.875,0.67,1.266,0.99,0.983,1.106,0.86,0.82,0.877,1.074,0.793,1.16,1.284 +XM_351991,0.95,0.864,1.87,0.887,1.274,0.955,0.931,0.945,1.154,1.257,0.756,0.858,1.037,1.004,1.053,1.611,1.31,1.022,0.731,1.016,0.681,1.055,1.481,1.346,0.831,0.848,2.184,0.911,0.62,1.02,1.434,1.445,2.151,1.053,0.675,0.751,0.85,1.115,2.197,0.838,1.211,0.909,0.945,0.857,1.178,0.806,1.102,0.879,1.278,1.112,1.287,0.876,0.701,1.576 +XM_351994,0.957,1.039,0.979,0.901,0.986,1.001,0.936,1.212,1.039,0.976,0.969,1.03,0.896,1.241,0.913,0.952,1.106,0.852,0.941,1.011,1.104,1.069,0.834,0.975,1.008,1.052,1.113,1.08,0.835,0.976,1.044,0.909,1.113,0.914,1.044,0.972,0.931,1.082,0.913,1.116,1.027,1.155,0.93,0.969,0.902,1.038,0.916,1.067,1.014,1.034,1.028,1.09,1.184,0.819 +XM_351996,0.953,1.067,1.027,1.004,1.091,1.15,1.399,0.882,1.008,0.996,0.99,0.994,1.16,0.812,0.971,1.097,0.787,0.962,0.796,1.02,0.948,1.013,1.184,0.941,1.208,1.017,1.075,0.934,1.014,0.902,0.982,0.954,1.086,0.849,0.974,1.016,1.102,0.96,0.93,1.026,1.0,1.05,1.114,1.105,0.86,1.053,0.924,1.315,0.921,1.183,0.79,0.689,1.043,0.93 +XM_352003,1.033,0.924,1.088,0.955,1.092,1.057,1.216,1.127,0.944,0.774,0.984,1.021,0.97,1.055,0.939,0.962,0.969,1.02,1.095,0.956,1.122,0.898,1.081,1.005,0.931,1.017,1.004,1.02,1.089,0.955,0.978,0.945,1.103,1.062,0.913,0.914,0.878,1.026,0.979,1.09,0.919,1.037,1.087,0.959,0.967,1.112,0.956,0.998,0.947,1.058,0.911,1.049,1.013,0.86 +XM_352007,0.867,1.203,0.897,0.974,1.02,0.936,1.043,1.388,0.994,0.947,0.882,0.964,0.931,1.053,0.808,1.101,0.981,0.937,0.959,1.042,0.943,1.153,1.127,1.025,1.012,1.147,0.929,1.291,1.317,1.072,1.147,0.946,1.087,0.963,0.995,1.186,1.12,1.027,1.036,0.994,1.052,1.283,1.191,1.148,0.925,1.269,0.968,0.926,1.112,0.982,0.977,0.97,0.91,0.884 +XM_352008,1.012,0.915,0.962,0.908,1.072,1.067,0.994,0.97,1.059,0.874,0.925,0.886,1.119,0.975,0.966,1.035,1.007,0.902,0.968,0.947,1.093,1.113,0.991,0.944,1.062,0.914,1.223,1.046,1.134,0.904,1.019,1.076,1.071,1.016,1.115,1.023,0.942,0.916,1.077,0.931,1.05,0.994,1.082,0.993,0.975,1.104,0.875,1.043,1.094,1.069,0.942,0.999,0.997,0.959 +XM_352009,0.967,0.934,1.007,0.86,1.054,0.998,1.022,0.968,0.884,0.929,1.002,1.063,1.125,0.962,1.049,0.789,1.006,0.986,1.055,1.039,0.973,1.075,0.887,1.024,0.89,1.06,1.159,1.127,1.197,1.073,1.033,0.97,0.92,0.992,1.202,0.968,1.01,1.151,1.048,1.003,1.032,1.106,0.995,0.994,0.959,0.83,0.906,1.031,1.0,1.058,1.011,0.877,0.984,1.036 +XM_352011,0.973,0.927,0.962,0.82,0.903,1.033,1.187,1.169,1.08,0.921,1.015,0.894,1.07,0.909,0.927,0.954,1.054,0.92,1.195,0.974,0.94,1.044,1.058,1.196,0.998,1.008,1.078,1.032,1.121,1.042,0.89,1.122,1.151,0.83,1.066,1.087,0.959,0.949,1.162,0.998,0.968,0.947,1.59,0.982,0.965,0.844,0.947,0.932,0.949,1.027,0.972,1.147,0.99,1.232 +XM_352012,1.075,1.001,1.126,1.008,1.076,0.945,1.053,1.217,1.18,1.041,0.97,1.043,1.127,1.117,1.144,0.96,1.127,1.165,1.096,0.956,1.019,1.18,1.002,0.997,0.918,1.198,0.933,0.995,0.808,0.924,1.177,0.984,1.029,0.766,1.24,1.081,0.929,1.253,0.96,0.964,1.097,1.016,1.039,0.784,1.004,0.919,1.159,1.216,1.09,1.141,0.836,0.97,1.109,0.956 +XM_352013,1.068,0.993,0.933,1.034,1.031,1.053,1.074,0.997,0.991,1.177,1.258,0.885,1.083,1.057,0.77,1.074,0.982,1.025,1.1,1.049,0.895,0.959,0.918,1.001,1.221,0.918,0.827,0.934,1.322,0.985,0.903,0.927,1.18,0.879,1.093,0.935,0.942,1.062,1.078,0.943,0.896,1.041,1.328,1.165,0.896,1.018,0.996,1.03,0.913,0.997,1.077,1.05,1.0,0.841 +XM_352014,1.02,0.961,0.973,0.95,1.078,0.98,1.081,0.92,0.957,0.985,1.102,0.847,0.922,1.054,1.102,0.938,0.887,1.133,1.019,1.064,1.049,1.0,0.938,0.977,0.958,1.06,1.0,1.12,1.509,0.941,1.398,1.026,0.976,1.003,1.005,1.105,0.987,0.961,1.025,0.959,1.054,0.992,1.254,1.113,0.848,0.954,0.867,0.973,0.847,1.077,0.982,1.039,1.021,0.943 +XM_352015,0.981,1.044,0.943,0.914,1.155,1.002,0.99,0.997,1.067,1.128,0.948,1.011,1.128,1.23,1.012,0.97,0.925,0.98,0.953,0.976,1.063,1.089,1.033,0.932,0.946,1.065,1.073,1.058,0.907,1.06,0.884,1.055,1.064,0.97,1.061,0.928,1.047,0.993,0.98,1.078,0.951,0.924,1.061,0.986,0.999,1.059,1.12,0.977,1.144,0.997,0.863,1.019,0.958,0.97 +XM_352017,1.168,1.079,0.997,1.087,1.0,1.019,0.851,1.061,0.893,0.937,0.921,0.96,1.076,1.058,1.407,1.053,1.018,0.978,1.026,1.025,0.879,0.931,0.904,1.006,0.911,0.99,0.984,0.849,1.259,0.968,1.119,1.269,0.862,0.87,1.119,0.954,0.882,1.065,1.114,0.991,0.944,1.018,0.982,1.01,1.04,0.901,1.069,0.988,1.056,0.881,0.963,1.032,1.052,1.0 +XM_352029,0.907,1.103,0.846,1.154,0.914,0.866,0.896,1.07,0.99,1.014,1.085,0.996,0.929,0.825,1.006,0.96,1.103,1.087,0.851,1.027,0.966,1.145,1.134,0.953,1.04,1.02,1.002,0.96,1.017,0.988,1.037,0.985,0.971,1.074,1.194,1.046,0.987,0.992,1.055,1.016,1.085,0.963,1.137,1.074,1.013,1.011,1.014,0.913,0.788,0.921,0.973,1.043,0.953,1.014 +XM_352034,1.114,0.96,0.954,0.995,0.995,1.062,1.031,0.932,0.92,0.97,1.033,0.925,1.008,1.129,1.179,1.001,0.913,1.002,1.006,0.999,1.055,1.031,0.878,0.971,1.049,0.972,1.019,0.98,0.882,1.089,0.937,0.947,1.113,1.085,1.102,0.939,1.034,0.956,1.127,1.099,1.011,0.894,0.915,1.101,0.919,1.029,1.112,1.043,1.003,0.899,0.983,1.163,0.925,0.97 +XM_352035,1.063,0.822,1.06,0.987,0.851,1.039,0.922,0.908,0.936,1.001,1.043,1.004,0.961,0.964,0.9,1.011,0.895,0.914,1.068,0.904,1.083,1.052,1.008,1.009,1.006,1.066,0.903,0.948,0.923,1.089,1.015,1.086,1.025,1.03,1.074,1.128,1.063,0.973,1.054,0.94,1.043,1.073,1.24,0.997,1.017,0.999,1.038,1.014,1.008,1.114,1.074,0.902,0.991,0.858 +XM_352040,0.937,0.959,0.981,0.985,1.065,0.993,1.151,1.015,1.242,0.997,1.094,1.04,1.006,0.961,1.221,0.954,0.97,1.14,0.983,0.989,1.171,1.066,1.132,1.101,0.908,0.966,0.865,1.013,1.117,1.033,1.05,0.941,1.17,1.003,1.054,0.872,1.09,1.082,1.185,1.061,0.977,0.95,1.212,0.931,0.915,1.08,0.886,1.062,1.046,0.958,1.087,1.07,1.215,0.989 +XM_352041,1.111,1.064,1.006,0.999,0.993,1.235,0.955,1.04,0.935,0.955,1.149,1.112,0.984,0.991,0.961,1.212,0.978,0.848,1.039,0.919,1.149,0.973,1.098,0.936,0.918,1.095,1.063,1.139,0.823,0.909,0.946,0.872,0.989,1.032,0.904,1.095,0.956,0.937,1.043,0.996,1.046,0.964,0.86,0.94,1.035,0.934,1.039,1.023,1.058,0.975,1.055,1.076,1.136,0.893 +XM_352043,0.962,0.87,1.054,0.974,0.95,0.899,0.938,1.002,1.043,0.962,0.971,0.915,1.146,1.009,1.163,1.057,1.023,1.028,0.935,1.073,1.088,0.973,1.057,0.961,1.073,1.141,0.935,1.012,0.924,0.935,1.044,1.111,1.058,1.048,1.109,0.957,1.106,1.004,1.025,0.997,1.02,1.026,1.153,0.901,1.024,0.972,0.955,0.893,1.058,0.914,0.934,1.082,0.944,1.044 +XM_352045,0.87,1.162,1.099,1.113,1.033,1.058,0.909,1.181,1.013,0.94,1.071,1.143,1.051,1.149,0.972,1.039,1.033,0.96,1.0,0.975,1.023,0.965,1.274,0.998,0.955,1.003,0.915,0.979,1.656,1.02,0.974,1.076,1.047,0.822,0.943,1.2,1.108,0.974,0.856,0.99,0.933,1.02,1.166,1.282,1.095,1.178,0.953,1.08,1.215,1.048,1.116,0.863,1.031,1.217 +XM_352054,1.099,1.069,1.007,1.089,0.863,1.017,0.86,0.947,1.105,1.171,0.922,0.916,1.103,0.984,1.057,0.936,1.071,0.931,0.979,1.028,1.051,0.996,1.043,0.93,0.885,0.955,0.995,1.058,1.113,0.952,1.021,0.957,1.079,1.003,1.097,0.986,0.982,0.9,1.083,1.044,1.003,1.083,0.884,0.966,0.92,1.058,0.916,1.048,1.063,0.999,1.059,0.935,0.87,1.167 +XM_352056,1.025,0.969,1.055,0.919,1.189,1.079,1.025,0.929,1.196,1.045,1.002,1.02,0.897,1.022,1.014,0.915,1.119,1.093,0.938,1.057,0.943,0.965,1.028,0.984,0.931,1.078,0.938,0.963,1.053,1.066,1.073,0.909,1.055,0.938,1.01,0.954,1.001,0.896,1.083,0.911,0.88,1.22,0.917,0.969,0.881,0.975,1.025,0.979,1.043,1.055,0.958,0.986,0.921,1.026 +XM_352058,1.274,1.263,0.968,0.991,0.877,1.083,1.039,0.851,0.965,0.961,1.2,1.058,1.138,1.182,1.146,0.781,0.953,0.97,1.023,0.842,1.09,0.988,0.913,1.031,0.955,0.887,0.958,0.876,1.052,0.898,1.015,0.935,1.079,1.007,0.97,1.001,1.052,0.886,1.106,0.959,0.885,1.031,1.129,0.995,1.013,0.992,1.025,0.869,1.0,1.062,1.094,0.961,1.138,0.992 +XM_352062,0.79,1.114,1.068,0.973,0.992,0.942,0.986,1.018,0.95,1.104,0.997,0.995,1.077,1.098,1.078,1.085,1.039,0.964,1.152,1.017,1.174,1.008,1.154,1.016,1.11,0.983,0.869,0.94,0.739,1.008,0.981,1.003,0.974,0.814,1.009,1.148,0.909,1.007,0.878,0.979,1.11,1.02,1.076,1.055,1.035,1.037,0.924,0.795,0.926,1.013,0.945,0.937,0.879,0.913 +XM_352068,0.434,0.994,1.166,0.478,1.018,1.339,0.566,0.454,1.415,1.089,0.909,0.556,0.546,0.443,0.937,2.01,0.816,0.917,1.072,1.369,0.405,0.792,1.494,1.114,0.402,0.61,1.05,1.144,0.365,1.148,1.178,1.396,2.02,1.372,0.276,0.77,0.799,1.016,1.093,0.619,1.374,1.068,0.494,0.872,0.794,1.091,1.162,0.53,1.08,0.653,1.001,0.638,0.69,1.96 +XM_352075,0.957,0.999,0.996,0.909,1.0,0.976,0.983,1.085,1.052,1.184,1.055,1.029,0.98,0.954,1.107,0.914,1.175,0.991,1.05,0.928,1.049,0.971,0.855,0.93,0.937,0.936,0.894,0.937,0.946,0.978,1.112,1.066,0.874,0.909,0.979,0.896,1.108,0.986,0.949,1.046,1.012,0.821,0.881,1.118,1.13,1.091,0.964,0.963,0.988,0.975,0.946,1.056,0.788,1.009 +XM_352076,1.237,0.897,0.94,0.964,1.054,1.165,0.847,1.017,0.915,0.887,1.008,1.011,1.058,0.828,0.903,0.913,1.074,1.031,0.998,0.873,1.0,1.035,0.92,0.942,1.075,1.136,0.954,0.909,0.733,1.033,1.115,0.883,1.056,0.982,1.06,1.066,1.214,1.064,0.907,0.949,1.084,0.976,1.524,0.925,0.888,0.969,1.124,0.978,0.901,1.154,1.024,1.066,1.138,0.979 +XM_352080,1.133,0.963,1.071,1.01,1.024,1.067,0.926,0.954,0.934,1.045,1.154,1.045,1.044,1.109,1.035,1.005,0.966,1.045,0.963,1.034,1.024,1.112,1.008,1.158,0.973,0.945,1.148,1.019,1.045,0.996,1.134,0.978,1.167,0.955,1.031,0.96,0.939,0.874,0.81,0.999,0.901,0.837,0.887,1.005,0.933,0.968,0.953,0.997,1.169,1.077,1.001,1.007,0.818,0.907 +XM_352084,0.114,1.149,1.93,0.177,1.107,1.419,0.314,0.342,1.334,0.925,0.696,1.542,1.704,0.435,0.977,1.693,1.138,0.114,0.806,1.166,0.091,1.332,1.562,1.841,0.645,0.0801,1.633,1.103,0.225,1.112,1.382,1.842,1.287,1.374,0.324,0.392,0.802,1.635,1.866,0.55,1.165,0.121,0.443,0.809,1.407,0.701,1.296,1.208,0.102,1.04,1.231,0.691,0.461,0.0902 +XM_352098,1.039,1.104,1.067,1.12,1.091,0.962,1.217,0.948,1.042,0.999,1.058,0.948,0.951,0.815,0.973,1.153,0.963,1.063,1.178,0.959,1.003,0.905,0.972,1.097,1.122,0.938,1.017,1.099,0.921,1.013,1.292,0.85,1.014,0.981,1.111,1.01,1.047,0.918,0.896,1.017,1.027,0.934,0.909,0.957,1.027,1.117,1.054,0.92,0.905,0.964,0.859,1.026,1.051,1.045 +XM_352105,0.869,0.968,1.012,0.945,1.17,0.867,0.962,0.997,1.167,0.994,1.083,0.946,0.95,1.039,0.875,1.063,1.004,1.079,1.021,1.237,1.187,1.061,0.919,1.107,0.983,1.039,0.917,1.037,1.104,1.007,0.903,0.997,0.999,0.992,0.99,0.953,1.054,0.901,0.987,1.145,0.872,0.967,0.898,0.825,1.011,1.207,1.136,1.034,1.03,0.991,0.949,1.022,1.127,1.028 +XM_352106,0.87,0.923,0.98,0.915,0.907,1.078,0.818,0.777,1.031,0.965,0.992,0.992,0.893,0.912,0.93,1.009,0.931,0.992,0.981,0.949,0.859,0.962,1.033,0.94,0.873,1.012,0.991,0.837,0.829,1.122,0.93,1.205,1.287,1.001,0.898,0.907,1.051,0.893,1.056,1.445,0.965,0.872,0.869,1.06,0.959,1.113,1.024,0.885,1.025,0.7,1.087,1.211,0.863,1.172 +XM_352115,0.989,0.997,0.986,1.099,1.021,1.019,0.936,0.974,0.96,1.137,0.965,0.944,1.023,0.917,0.982,1.033,0.958,1.006,0.969,1.035,0.925,1.049,1.014,1.144,1.146,0.895,0.896,1.003,0.89,0.953,0.988,1.065,0.923,0.845,1.049,1.016,1.047,1.165,0.886,1.083,0.911,1.029,0.866,0.899,1.13,1.049,1.144,1.012,1.063,1.063,0.916,0.915,0.958,1.019 +XM_352119,1.054,0.941,0.913,0.996,0.945,0.991,0.94,1.06,0.956,1.013,0.913,0.94,1.05,1.099,1.11,0.989,0.978,0.956,1.138,1.087,1.078,0.991,1.015,1.05,1.126,1.001,1.009,0.926,1.283,0.951,1.008,0.865,0.982,0.914,0.956,1.148,1.042,0.928,0.911,1.036,1.043,1.097,1.213,0.991,1.089,1.047,0.993,0.925,1.096,1.049,0.935,0.979,0.987,1.006 +XM_352120,1.133,1.021,1.131,1.026,0.92,0.991,0.903,0.863,0.992,1.055,0.995,1.077,1.042,0.917,1.052,0.917,1.019,0.932,1.1,1.064,1.018,1.12,0.929,0.958,1.033,0.869,1.001,1.161,1.027,1.028,0.947,0.842,1.089,1.014,1.078,0.923,0.802,1.061,1.034,0.944,0.94,1.04,0.838,0.936,0.989,1.238,1.024,0.999,0.803,1.136,0.898,0.942,1.003,0.941 +XM_352121,1.084,1.021,1.042,1.031,1.105,1.039,1.07,1.224,1.018,1.043,1.015,0.894,0.947,1.006,0.932,0.918,0.942,1.147,0.934,1.157,0.92,0.988,1.097,0.958,0.967,1.047,0.807,0.984,1.15,1.19,1.035,1.003,1.157,0.818,0.991,0.804,0.855,1.023,0.804,0.989,0.934,0.884,0.941,0.923,1.009,1.051,1.074,0.961,1.029,0.978,1.015,0.874,1.018,0.955 +XM_352142,0.991,1.12,0.973,1.055,1.056,0.906,1.083,1.105,1.002,1.053,1.08,0.962,0.994,0.967,1.009,0.864,0.943,1.053,0.902,0.9,0.995,0.926,0.935,1.083,0.986,1.06,0.899,1.058,1.01,1.018,1.11,1.084,0.998,1.018,1.142,0.986,1.003,1.013,0.868,1.123,1.042,0.835,1.159,0.933,0.851,1.083,0.963,0.83,0.932,1.078,0.862,1.057,1.11,1.016 +XM_352144,0.889,1.124,0.879,1.078,0.959,0.894,1.049,0.883,1.009,1.059,1.019,1.145,0.979,1.309,0.939,0.927,1.024,1.107,0.793,0.943,0.951,1.002,1.118,1.121,1.03,0.996,1.131,0.998,0.692,0.978,0.974,0.942,1.065,0.811,0.927,1.026,0.997,1.091,1.038,0.933,0.923,0.962,0.868,1.036,0.902,1.129,1.104,0.957,0.98,0.849,0.91,1.061,0.855,1.011 +XM_352146,1.057,0.914,0.968,1.006,0.881,1.057,1.08,0.904,1.049,1.074,1.017,0.973,0.98,0.956,0.809,0.789,1.107,0.921,0.959,0.984,1.036,1.028,0.909,1.037,0.959,1.028,0.966,0.834,0.769,1.012,1.002,1.045,1.029,1.038,0.973,1.081,0.978,0.932,0.84,1.105,1.018,0.939,0.864,0.953,0.967,1.05,0.816,1.054,0.909,1.04,0.943,1.073,0.966,1.048 +XM_352153,1.153,1.041,1.033,0.915,0.842,1.002,0.998,0.952,1.033,0.912,0.949,1.091,1.047,0.83,0.842,0.945,0.947,0.996,0.909,0.974,1.174,0.978,0.98,1.074,1.15,1.04,1.052,0.988,0.851,0.921,0.992,0.979,1.039,1.111,1.132,1.071,1.13,0.981,1.021,0.97,0.996,0.953,0.793,1.055,1.028,1.076,1.049,0.945,1.05,1.09,0.936,1.034,1.127,0.846 +XM_352154,1.076,0.823,0.852,1.258,0.969,0.894,1.187,0.944,0.927,1.186,0.976,0.979,0.961,1.032,0.87,1.08,0.982,1.071,0.924,1.07,1.128,0.979,0.919,0.839,0.968,1.048,1.048,1.046,1.062,0.974,0.92,1.181,0.796,0.91,1.022,1.002,0.864,1.132,1.019,1.018,0.99,1.034,1.16,0.991,1.075,1.032,0.984,1.224,1.161,1.281,1.123,1.041,0.722,0.855 +XM_352155,1.105,0.899,1.049,1.066,0.994,1.0,0.994,1.05,0.905,0.907,1.056,0.92,1.007,0.911,1.205,1.033,0.954,1.107,0.989,0.897,1.02,1.013,1.04,0.999,1.056,0.867,1.004,0.965,1.201,0.961,0.948,0.974,0.99,0.985,1.079,0.927,0.971,0.926,0.945,1.039,1.051,1.03,0.948,1.062,0.903,0.848,0.936,1.068,1.029,0.933,0.964,0.997,1.148,0.952 +XM_352158,1.099,0.858,0.92,0.979,0.894,0.926,0.827,0.869,0.974,1.157,1.279,0.88,0.81,0.998,0.974,1.148,0.895,0.929,0.927,0.999,1.02,0.812,1.111,0.968,0.952,1.029,0.912,1.041,0.679,0.944,0.906,1.044,1.322,1.301,1.006,0.998,1.052,1.032,1.102,0.932,0.97,1.077,1.019,1.007,1.06,1.12,0.921,0.944,1.187,0.875,1.134,0.92,0.839,1.098 +XM_352161,0.978,0.926,1.127,0.986,1.138,0.845,0.882,1.159,0.873,0.97,0.956,1.059,0.984,0.942,0.858,0.901,0.971,0.936,1.057,0.842,1.056,0.961,1.093,1.019,0.988,1.081,1.005,1.192,1.219,0.972,1.016,1.034,1.025,1.035,1.035,0.979,1.095,0.977,1.049,1.047,1.05,0.917,0.875,0.97,0.994,1.036,0.926,1.142,0.867,1.035,1.011,0.955,1.091,1.077 +XM_352171,1.046,1.13,1.034,0.958,0.91,1.024,1.186,1.073,0.931,1.108,1.032,0.982,0.97,0.895,1.156,1.13,0.965,1.018,1.059,0.977,0.862,1.12,1.044,0.975,1.177,0.944,0.99,0.93,1.026,1.018,0.925,0.912,1.051,0.974,0.975,0.921,1.022,1.167,1.028,1.088,0.979,1.076,1.163,0.863,1.034,1.012,1.045,1.022,1.162,0.93,0.965,0.878,1.027,1.127 +XM_352181,0.97,1.021,1.091,1.044,1.115,1.005,0.855,1.291,1.151,0.905,0.846,1.039,1.125,0.976,0.936,1.014,0.981,0.898,0.837,1.171,1.304,1.014,1.028,1.132,1.137,0.989,1.066,1.031,0.996,0.913,1.14,0.915,1.051,0.945,0.96,0.936,0.926,0.966,0.886,1.126,0.9,0.936,1.007,1.022,0.993,0.922,1.123,1.121,0.964,0.917,0.894,1.119,1.103,1.067 +XM_352185,0.836,0.961,0.983,0.93,0.843,0.911,0.858,0.762,0.951,0.92,1.168,0.97,0.898,0.724,0.91,1.112,0.898,0.989,1.067,0.876,0.862,0.75,0.965,1.015,0.965,1.018,0.805,0.868,0.92,1.023,1.015,1.391,1.791,1.239,0.883,1.165,1.014,0.824,1.388,0.835,0.905,1.0,0.864,1.637,1.094,1.055,0.971,1.133,0.92,1.0,1.041,1.089,1.081,1.133 +XM_352186,1.039,0.995,0.97,1.117,1.053,1.051,1.099,0.996,1.0,0.893,1.059,1.026,1.066,1.05,1.008,0.952,0.953,1.078,0.995,0.877,1.005,1.032,0.946,0.89,1.0,0.925,0.932,0.937,0.983,1.042,0.958,1.031,1.199,1.084,1.074,1.263,1.099,0.92,1.095,0.962,0.976,0.893,1.078,0.976,0.877,1.074,1.072,1.029,1.089,1.019,0.937,1.015,1.03,0.954 +XM_352188,1.123,0.908,0.883,0.958,0.897,1.077,1.245,0.985,1.122,0.999,1.005,1.118,1.119,1.181,1.021,1.015,0.789,1.013,0.931,1.123,1.02,0.987,0.926,1.002,1.033,0.966,0.939,0.943,1.106,1.135,1.024,0.993,0.856,0.935,0.896,1.056,1.02,1.098,1.009,0.974,1.093,0.915,1.039,0.959,1.025,0.989,0.971,0.985,1.041,0.918,1.065,1.065,0.884,1.016 +XM_352189,0.95,0.953,0.967,1.105,0.941,1.087,0.917,1.042,0.995,1.045,0.959,1.065,0.991,0.892,0.963,0.865,1.002,0.847,0.961,0.961,1.054,1.084,0.867,1.052,0.959,1.069,1.038,0.96,1.003,1.094,0.962,1.1,0.871,1.092,1.043,0.927,0.956,1.032,1.006,0.929,1.067,1.079,1.146,1.09,0.969,0.944,0.888,1.129,1.149,1.023,0.906,1.042,1.003,0.993 +XM_352191,1.097,0.951,1.077,0.781,0.959,0.937,1.179,0.922,0.963,0.996,1.099,1.076,0.965,1.085,0.865,1.037,1.061,0.995,1.096,0.998,1.0,0.862,0.965,0.94,0.937,1.034,0.854,1.013,1.23,1.025,1.017,0.875,1.02,0.998,1.074,1.064,0.96,1.006,0.876,1.108,0.946,1.101,1.027,0.912,0.875,0.947,1.071,1.075,1.049,1.047,1.004,0.906,1.0,1.003 +XM_352192,1.008,1.105,1.048,1.008,1.198,0.869,1.071,0.934,0.99,1.065,1.085,0.896,1.133,0.967,0.807,1.0,0.944,1.103,1.178,1.186,1.022,0.832,1.091,1.0,1.06,0.815,0.861,1.081,1.323,0.899,0.975,0.907,0.883,0.781,1.186,0.827,0.932,1.013,0.957,0.97,1.081,0.86,0.898,1.04,1.134,1.022,1.017,1.215,0.984,1.032,1.152,1.103,1.005,0.897 +XM_352203,1.026,0.981,1.018,0.988,0.948,1.068,0.9,1.018,1.028,0.976,0.857,1.069,0.922,0.928,0.925,1.199,0.88,0.944,1.105,0.939,0.969,0.956,0.939,1.046,0.984,0.994,1.01,1.043,0.869,0.952,0.977,1.028,1.205,1.016,1.018,0.917,1.116,0.959,0.936,0.983,0.999,0.971,1.049,1.005,1.004,0.94,1.27,0.967,0.998,0.881,1.032,0.906,1.119,0.92 +XM_352207,1.134,0.963,0.971,0.981,0.928,0.969,0.964,0.962,1.048,0.89,1.093,1.035,1.103,0.969,0.82,0.954,0.929,1.135,0.948,1.036,0.943,1.013,1.035,0.898,1.076,1.111,1.115,1.223,0.868,0.92,0.976,1.021,1.09,0.985,0.924,1.157,0.828,1.135,1.047,1.139,0.979,0.98,1.04,1.132,1.079,1.12,0.964,1.061,1.126,0.891,1.017,1.035,1.069,1.098 +XM_352228,0.868,0.873,1.05,0.817,0.939,0.987,1.028,0.898,1.099,1.102,0.982,0.942,0.831,0.803,0.963,1.209,1.058,1.026,0.84,1.022,0.843,0.934,1.179,1.107,0.912,0.972,0.983,1.002,0.952,1.171,1.178,0.943,1.365,1.066,0.988,0.776,0.974,1.016,1.28,0.904,1.073,1.086,0.88,1.004,1.071,0.856,1.104,1.035,1.084,1.007,1.099,1.121,0.838,1.211 +XM_352236,1.079,0.99,1.034,0.893,0.989,0.972,0.977,1.139,1.227,1.021,0.879,1.038,0.862,1.035,1.226,0.953,1.01,1.058,1.075,0.946,0.941,0.91,1.079,1.054,0.993,0.965,1.034,0.927,0.896,0.931,1.101,0.961,1.155,1.074,1.298,0.943,1.026,1.007,0.83,0.958,1.227,1.06,1.21,1.086,0.986,1.024,1.083,0.988,1.237,1.105,1.042,0.899,0.957,0.939 +XM_352239,1.072,1.048,1.062,1.031,1.059,1.012,0.876,1.023,1.011,1.059,1.146,1.091,0.923,0.92,1.115,1.077,0.912,1.117,1.025,1.059,1.194,0.901,0.86,0.988,0.97,0.962,0.776,1.173,1.612,0.89,1.067,0.983,1.159,0.973,0.982,1.138,0.993,1.031,1.098,0.933,0.738,0.94,0.866,1.11,0.983,1.014,1.071,0.846,0.913,1.015,1.046,0.898,1.321,1.032 +XM_352243,1.058,1.072,0.986,0.931,0.937,1.037,0.929,1.251,1.024,0.888,1.038,1.08,1.004,1.119,0.99,1.125,0.957,0.984,0.93,0.853,1.21,1.191,0.789,1.106,0.968,0.8,1.074,1.057,1.193,1.101,0.95,1.058,1.001,1.171,0.994,1.086,0.935,1.158,0.972,1.049,0.822,0.922,1.154,1.122,0.88,0.924,0.81,0.929,0.998,0.999,1.012,0.93,1.069,0.948 +XM_352250,1.092,1.088,0.978,1.086,0.955,1.114,0.889,0.971,1.007,1.171,1.208,0.989,1.105,0.996,0.988,1.186,1.001,1.194,0.997,1.233,1.118,0.876,1.068,1.05,1.034,0.974,0.978,1.094,0.95,0.995,0.991,0.994,1.05,1.02,0.975,0.906,1.056,1.094,0.999,1.115,0.959,0.94,0.976,0.963,1.08,1.07,1.021,1.046,1.043,1.048,0.907,1.088,1.035,0.808 +XM_352251,0.904,0.975,0.923,0.929,0.964,0.876,0.832,1.009,0.982,1.024,1.025,1.133,0.974,0.913,1.009,1.023,1.171,1.098,0.958,0.889,1.027,0.909,0.957,0.97,1.024,1.104,0.962,0.867,0.536,1.013,1.151,0.94,0.927,1.018,0.935,0.986,0.971,1.048,0.976,1.028,1.012,0.998,0.963,1.049,1.086,1.028,1.054,1.166,0.931,1.028,0.968,0.989,1.005,1.022 +XM_352252,0.974,1.041,0.865,1.016,1.194,1.073,0.984,1.212,0.959,0.911,0.883,1.12,1.045,0.988,1.087,1.07,0.948,0.82,0.944,0.993,1.289,1.258,1.04,1.094,1.024,1.041,1.11,0.817,1.053,1.062,1.158,0.898,1.134,0.963,0.914,1.035,0.94,0.998,0.922,1.054,0.895,1.022,1.017,1.148,0.893,1.248,1.132,0.999,0.88,0.977,1.033,0.961,1.077,0.917 +XM_352258,1.031,1.003,0.941,1.001,1.176,1.034,1.128,0.985,1.208,1.162,1.003,0.998,1.203,0.908,0.796,0.884,1.001,0.96,0.885,1.012,0.951,0.978,1.126,0.999,1.087,1.058,1.054,1.071,0.902,0.951,1.126,0.931,1.132,1.043,0.932,0.77,1.055,1.108,1.004,0.911,1.063,0.745,0.953,1.021,1.035,1.248,0.984,0.998,0.988,1.057,0.923,1.084,1.138,1.033 +XM_352262,1.019,1.066,1.074,0.882,0.95,0.87,1.068,0.829,1.03,0.927,0.959,0.984,1.001,0.877,0.998,1.067,1.128,0.924,1.106,1.115,1.083,0.943,0.963,1.019,1.1,0.971,0.943,0.896,1.01,1.059,0.947,1.08,0.976,0.941,0.952,0.968,0.967,0.996,0.979,0.907,0.854,1.082,0.875,1.179,0.919,1.11,1.134,0.992,1.018,0.953,1.018,1.055,0.962,1.061 +XM_352263,1.093,0.802,1.003,1.113,1.093,1.022,0.862,1.123,1.106,0.908,1.19,1.076,1.075,1.0,1.063,1.111,1.11,1.222,1.024,1.062,1.11,0.992,1.077,0.967,0.981,1.009,1.088,0.964,0.867,0.87,1.17,1.121,1.106,1.189,1.024,0.865,1.002,1.01,0.893,1.0,0.99,1.07,0.826,0.995,0.999,1.036,0.92,0.966,0.943,1.021,1.008,0.982,1.084,1.087 +XM_352267,1.129,1.154,0.864,0.984,0.981,1.08,1.033,1.152,0.917,0.913,1.026,1.328,0.9,0.852,0.879,0.842,1.035,0.959,1.043,0.907,0.951,0.979,1.102,1.037,1.077,1.152,0.932,0.951,0.689,1.155,0.873,0.868,0.995,1.341,1.0,1.035,0.943,0.927,1.073,1.015,0.87,0.911,0.837,0.818,1.09,1.106,0.964,1.052,1.229,1.23,1.061,1.056,0.868,1.125 +XM_352271,1.082,1.064,0.965,1.189,0.824,0.993,0.936,0.96,1.047,0.785,0.934,0.831,0.974,0.948,1.054,1.27,0.999,0.931,1.016,1.157,1.071,1.007,0.898,0.826,0.898,1.236,1.024,1.053,1.292,1.073,1.073,0.851,0.999,1.184,1.072,0.973,0.951,0.952,1.34,0.786,0.914,1.1,1.079,0.969,0.892,1.047,0.987,1.064,0.829,0.992,1.214,0.912,1.011,0.808 +XM_352276,1.002,0.939,0.991,1.031,1.196,1.031,0.937,0.896,0.943,0.885,1.171,1.163,0.923,1.07,0.882,1.074,1.009,1.08,1.003,0.951,0.906,0.995,0.87,1.016,1.013,0.965,0.954,1.147,0.859,0.929,1.08,0.985,1.013,1.201,1.015,0.93,1.03,1.094,1.016,0.949,0.879,1.003,1.081,1.056,0.905,0.944,0.892,1.044,1.134,0.905,0.916,1.068,1.013,1.218 +XM_352279,1.006,0.969,1.013,1.035,0.938,1.042,0.935,1.302,0.984,0.97,0.949,1.004,0.93,0.963,1.505,0.948,1.036,0.904,1.078,1.1,1.118,0.997,1.179,1.12,1.009,1.002,1.087,1.036,1.038,1.018,0.986,1.023,1.075,0.944,0.996,0.851,0.892,1.05,0.918,0.865,0.942,1.093,0.922,1.125,0.975,1.006,1.041,0.941,0.932,1.084,0.89,0.877,1.036,1.073 +XM_352285,1.005,0.977,1.031,0.972,1.01,1.067,1.233,0.917,0.98,0.966,1.057,0.994,0.925,0.913,0.872,1.082,1.049,0.994,0.84,1.116,0.977,0.966,1.123,1.013,1.213,1.021,1.116,0.956,1.218,0.85,1.176,0.901,1.013,0.992,1.1,0.889,1.089,0.997,0.972,0.992,1.17,0.899,0.973,1.048,1.033,0.965,0.938,1.053,1.157,0.999,0.932,1.079,1.036,1.001 +XM_352287,1.072,0.877,1.121,0.77,0.903,0.968,0.998,0.93,0.965,1.009,1.032,0.933,1.025,0.977,0.781,1.079,1.124,1.051,1.006,0.946,0.996,0.91,0.981,1.043,0.991,1.021,1.065,1.003,0.775,1.057,0.887,0.935,1.02,1.091,0.892,0.987,1.186,1.111,0.991,1.075,0.896,0.983,0.866,0.97,0.941,0.889,0.952,0.932,1.041,1.082,0.942,1.032,1.019,1.026 +XM_352291,0.997,0.977,1.042,0.933,0.879,0.933,1.045,0.869,1.067,1.029,1.143,0.945,1.017,1.022,0.823,1.027,1.072,0.893,1.26,0.916,1.225,0.978,0.999,0.877,1.001,1.037,1.056,1.084,1.164,1.078,1.087,0.956,0.893,0.924,0.995,0.961,1.076,1.017,0.97,0.997,0.992,1.021,0.974,1.128,1.067,1.066,0.965,1.087,0.927,0.94,0.9,1.094,1.121,0.884 +XM_352295,1.122,0.991,0.891,0.82,1.001,1.11,0.918,1.088,1.133,1.017,0.946,0.941,0.987,1.238,1.062,1.075,0.949,1.079,0.949,0.928,0.987,0.982,0.866,1.152,0.9,1.011,0.966,1.191,1.249,0.909,1.075,0.973,0.965,1.124,0.896,0.998,0.947,0.854,0.908,1.083,1.056,1.041,1.147,0.825,1.09,0.819,0.987,1.054,0.942,1.023,0.88,1.141,1.07,1.035 +XM_352299,0.396,0.991,0.911,1.019,0.773,0.995,0.664,0.443,1.074,0.987,1.043,0.469,0.538,0.606,0.918,1.431,0.733,1.032,1.139,1.428,0.65,0.555,1.497,0.682,0.724,0.684,0.887,0.721,0.334,1.243,0.754,1.68,1.497,1.492,0.316,1.101,1.124,0.594,1.191,0.59,0.938,1.152,0.903,1.7,0.727,1.293,0.841,0.536,1.239,0.754,1.391,0.703,1.195,1.202 +XM_352309,0.936,0.855,1.118,1.131,1.058,1.124,1.048,1.143,0.973,1.101,0.933,1.0,1.033,0.832,0.833,0.87,0.98,1.219,1.049,0.883,0.919,1.143,1.045,1.086,0.939,0.986,0.937,1.051,1.139,1.111,1.012,0.877,1.197,0.989,1.058,1.047,0.978,1.041,0.925,1.05,0.94,1.095,1.144,0.985,1.0,0.978,0.915,0.912,0.993,1.171,0.956,0.996,0.925,1.188 +XM_352323,0.96,1.152,1.021,0.938,0.94,1.01,1.011,1.014,1.121,1.088,0.938,0.974,1.024,1.395,1.383,1.138,1.044,1.047,0.953,0.954,0.983,0.974,0.844,1.034,0.909,0.826,1.025,0.986,1.222,1.137,1.15,1.023,1.107,0.936,0.961,1.015,1.029,0.97,1.048,0.886,0.992,1.029,1.008,1.081,1.012,1.095,0.929,0.95,1.131,0.883,0.944,0.961,0.986,0.99 +XM_352326,1.026,0.941,1.012,1.126,1.035,0.984,0.937,0.954,0.961,0.935,1.146,0.882,0.937,1.049,0.8,0.822,0.923,0.882,1.21,0.98,1.03,1.039,0.952,0.956,1.105,1.027,0.877,1.072,0.932,0.912,1.113,1.044,0.955,1.094,1.099,1.046,0.952,0.987,1.1,1.002,1.029,1.045,1.196,0.899,0.971,0.957,1.212,0.985,1.034,0.899,0.814,1.082,1.057,0.962 +XM_352327,0.939,1.059,1.027,1.037,1.017,0.979,0.999,1.042,1.006,0.912,1.031,0.957,1.053,1.026,1.066,1.04,0.861,1.189,1.002,0.938,1.272,1.044,0.974,1.151,0.988,0.954,0.893,1.11,0.857,0.988,1.044,0.925,1.012,1.027,0.981,1.126,0.929,1.021,1.071,0.989,1.138,1.012,0.893,1.205,1.08,1.2,0.96,0.97,0.982,1.132,1.156,0.836,1.188,1.048 +XM_352330,1.032,1.07,1.009,0.95,1.044,0.942,0.904,1.046,1.151,0.943,0.851,1.027,1.026,1.201,0.881,0.842,1.074,1.042,0.954,0.901,1.001,0.939,0.974,1.037,0.972,1.138,0.953,1.102,0.714,0.986,1.007,1.057,0.914,0.966,1.04,1.09,0.994,1.268,1.001,0.927,1.047,1.007,0.788,1.011,0.944,1.001,1.038,1.015,0.977,1.023,1.073,1.098,1.21,1.129 +XM_352338,1.016,1.067,0.939,0.891,1.053,1.064,1.028,1.002,0.957,1.036,0.988,0.884,1.112,1.008,0.954,0.915,1.066,1.055,0.979,1.032,1.062,0.862,0.981,0.944,1.014,0.875,1.0,0.901,0.872,1.01,1.062,1.042,1.081,0.791,1.038,1.055,1.112,0.96,1.014,0.894,0.963,1.033,0.8,1.009,0.92,0.944,1.042,0.855,0.901,1.058,0.946,0.977,1.049,1.083 +XM_352342,0.982,0.876,0.89,1.049,1.04,0.977,0.929,1.139,0.868,1.093,0.961,1.162,0.945,0.847,0.821,0.915,1.024,0.941,1.218,1.142,0.955,1.034,1.029,1.031,0.952,1.057,1.126,1.062,1.146,0.89,1.09,1.132,1.091,0.929,1.066,0.986,1.044,0.949,1.027,0.992,1.021,0.992,1.006,1.009,0.972,0.957,0.946,1.026,1.029,0.979,1.028,1.07,0.965,1.019 +XM_352343,0.896,1.446,0.779,1.515,0.708,1.39,1.314,0.721,0.894,0.803,1.646,0.727,0.83,0.701,0.95,1.401,0.754,1.498,0.775,1.196,0.811,0.769,1.35,0.748,1.101,0.781,0.972,0.84,0.891,1.602,0.853,0.993,1.042,1.809,0.879,0.926,1.547,0.829,1.752,0.873,0.881,1.698,1.272,1.431,0.812,1.711,1.136,0.807,1.332,0.721,1.065,0.799,0.76,1.024 +XM_352345,0.939,0.938,1.061,1.001,1.11,0.956,1.006,0.944,1.077,0.922,1.0,0.98,0.946,1.031,1.006,0.982,0.799,0.988,0.948,0.997,1.009,0.944,1.087,0.998,0.948,0.994,0.813,1.148,1.105,0.954,0.862,0.939,1.114,0.907,1.126,1.014,1.035,1.025,1.008,1.006,1.033,0.929,1.032,1.124,1.0,1.065,0.925,1.017,0.961,1.028,0.877,0.806,1.03,0.939 +XM_352348,0.892,0.949,0.942,1.025,0.961,1.021,1.04,1.006,0.905,1.124,1.051,0.982,1.111,0.947,1.2,0.974,0.89,1.077,0.999,1.078,0.909,1.022,0.918,0.935,1.043,1.062,0.947,1.073,0.975,1.071,0.936,0.944,1.019,1.046,1.092,1.129,0.98,0.966,1.022,0.934,1.094,1.007,0.991,0.956,0.945,0.996,0.913,0.996,1.112,0.949,0.917,1.01,1.217,0.908 +XM_352352,1.143,1.027,0.97,1.002,0.947,1.028,0.713,1.095,1.007,1.073,0.865,1.105,1.061,0.939,0.914,1.11,0.967,1.048,1.005,0.978,0.995,0.944,1.037,1.227,1.028,1.061,1.245,1.041,1.265,0.977,1.076,0.918,1.093,0.994,0.778,1.111,1.027,1.0,1.07,0.976,0.913,1.108,0.916,1.017,1.078,1.035,0.887,1.029,0.999,1.007,0.989,0.914,1.047,0.936 +XM_352361,0.95,1.182,0.914,0.972,1.164,1.073,0.867,1.052,1.056,1.114,1.083,0.933,0.967,1.109,1.125,0.971,1.09,0.833,1.063,1.058,1.047,0.978,1.136,1.0,0.96,0.967,1.129,0.898,0.909,0.969,0.927,0.984,1.005,0.941,1.108,1.006,1.001,0.944,0.974,0.965,1.281,1.033,0.982,0.999,1.112,1.036,0.914,1.039,0.874,1.146,0.861,0.839,0.913,1.039 +XM_352364,0.999,0.972,0.887,0.855,0.967,1.036,0.848,1.251,1.008,0.904,0.915,0.941,0.97,0.891,0.988,1.076,1.062,0.823,0.914,0.871,1.062,0.95,0.968,0.94,1.03,1.167,1.065,1.067,0.969,1.125,1.099,1.039,0.857,1.002,0.951,1.124,1.003,1.012,1.018,0.96,0.97,0.937,1.089,0.974,0.986,0.874,1.052,1.007,0.918,1.09,1.067,0.891,0.968,0.987 +XM_352365,0.943,0.915,1.057,1.06,1.13,0.986,0.868,0.887,1.018,1.189,1.073,0.984,0.881,0.831,0.896,0.939,1.063,1.025,0.81,1.081,0.885,1.155,1.116,1.096,0.928,0.952,0.929,1.068,1.168,1.027,1.077,1.043,0.858,0.94,1.151,1.004,0.93,1.05,0.96,0.937,1.104,1.016,1.116,0.966,0.835,1.149,1.006,1.11,0.978,1.037,1.066,1.005,1.046,0.932 +XM_352375,0.995,0.963,1.117,1.107,1.109,1.02,1.014,1.007,0.913,0.999,1.188,1.003,1.064,0.971,0.921,1.03,1.089,1.069,0.934,0.981,1.023,1.01,1.036,1.013,0.964,0.978,1.15,1.225,0.99,0.964,0.986,0.958,1.009,1.003,1.061,1.109,1.076,0.827,0.929,1.013,1.081,0.944,0.899,0.979,1.191,1.001,0.97,1.061,1.08,0.838,0.961,0.98,0.827,0.936 +XM_352378,0.972,0.952,0.929,0.892,0.963,1.017,0.767,0.878,0.935,0.944,0.982,0.936,1.064,1.016,0.998,1.021,0.929,1.189,1.158,0.983,1.079,1.143,0.891,1.077,0.954,0.881,0.902,1.083,1.132,0.975,0.868,0.919,0.974,0.894,0.902,0.98,1.084,1.094,0.995,0.937,1.103,0.894,1.093,1.054,0.91,0.961,1.026,1.063,1.24,0.991,0.852,0.846,1.19,0.941 +XM_352381,0.967,1.042,1.04,1.033,1.076,0.989,0.972,1.031,0.957,0.937,0.936,0.929,0.957,0.991,0.992,1.036,1.017,1.0,1.055,1.166,1.023,1.037,0.864,0.949,1.08,1.085,1.07,1.033,1.282,1.006,0.975,1.294,0.966,0.926,1.008,1.012,0.989,1.027,1.039,0.901,1.095,0.903,0.968,0.862,1.11,1.092,1.01,0.986,1.056,0.902,0.909,0.912,1.118,0.843 +XM_352391,1.002,1.01,1.022,1.164,1.015,0.878,0.896,1.085,0.975,0.964,1.016,1.15,1.0,1.224,0.819,1.036,0.943,0.988,0.86,0.994,1.025,0.911,0.999,0.978,0.953,1.004,1.063,1.061,1.002,0.978,0.937,0.898,1.015,0.868,1.089,1.0,0.999,0.984,1.0,1.121,1.006,0.949,0.93,0.94,0.987,0.908,0.87,0.941,1.07,1.102,1.037,1.052,1.147,1.027 +XM_352401,0.948,0.971,0.953,1.003,0.896,1.039,0.87,0.962,1.097,1.006,0.97,1.055,1.029,1.075,0.936,0.771,1.028,0.924,0.952,1.177,0.977,0.947,1.147,0.889,1.003,0.99,0.929,1.086,0.724,1.037,1.023,0.934,1.076,0.875,1.163,0.961,1.05,1.075,0.879,1.014,1.012,0.962,0.8,0.995,1.094,1.074,1.133,1.078,0.983,1.014,0.99,0.983,0.979,0.968 +XM_352403,1.067,1.018,0.882,1.068,1.042,0.923,1.129,1.099,1.101,1.063,0.853,1.064,1.038,1.19,1.261,0.973,0.946,0.864,1.06,0.958,0.919,1.067,0.899,1.123,1.115,1.171,1.03,0.964,1.105,0.971,1.182,0.981,0.999,1.076,1.002,0.823,1.12,1.018,1.081,1.111,0.999,0.984,1.009,0.942,1.017,1.037,1.159,0.939,0.927,0.961,0.937,0.928,1.137,1.121 +XM_352436,1.059,1.07,1.082,1.079,0.886,0.992,1.027,0.97,0.851,1.145,0.934,0.949,1.072,0.943,0.992,1.124,0.94,1.169,1.095,1.086,1.099,0.969,0.964,0.991,0.888,1.123,0.968,0.978,1.007,0.999,0.837,0.995,0.926,1.045,1.058,0.951,1.047,1.046,0.869,1.145,0.73,0.944,0.897,0.933,1.024,1.051,0.925,1.001,0.987,0.919,1.074,1.05,1.1,1.005 +XM_352441,0.36,1.003,1.249,0.433,0.997,1.673,0.59,0.814,1.22,1.031,0.841,1.301,0.741,0.399,1.084,2.986,0.961,1.066,1.141,1.022,0.312,1.008,1.611,1.366,0.369,0.496,1.214,0.919,0.382,1.007,1.196,1.442,3.093,1.419,0.227,0.613,1.08,1.581,2.017,0.454,1.074,1.159,0.498,0.96,0.988,0.812,1.229,0.914,1.62,0.796,1.169,0.576,0.472,2.267 +XM_352442,0.874,0.995,1.117,1.017,1.04,0.96,0.858,0.874,0.994,1.002,0.968,0.971,0.976,1.062,0.937,0.812,0.966,1.18,0.91,1.272,0.912,1.069,1.073,0.974,0.934,1.106,0.828,1.001,0.774,0.999,1.052,1.109,1.088,0.972,1.166,0.844,1.084,0.968,1.046,1.023,1.14,0.946,0.912,0.985,0.999,1.073,0.962,0.876,1.14,0.942,1.082,1.195,0.936,0.951 +XM_352443,1.689,0.708,3.099,0.902,2.061,0.58,0.383,0.759,2.62,2.224,0.6,0.681,0.913,1.507,1.378,1.008,2.5,1.14,2.951,0.775,1.589,1.301,0.739,1.602,0.459,2.165,2.871,1.909,0.346,0.971,1.807,0.843,2.348,1.017,0.468,0.722,0.616,1.835,1.073,0.525,2.215,0.729,0.5,0.98,2.361,0.593,1.194,1.504,0.8,2.101,0.877,0.771,2.228,0.736 +XM_352463,1.079,0.875,1.011,0.974,0.989,1.026,1.306,1.224,1.074,0.923,0.993,1.086,0.889,0.971,1.08,0.914,0.999,1.026,0.896,0.883,1.075,0.974,0.846,1.229,0.951,0.987,0.907,1.042,1.167,0.914,0.961,1.052,0.875,0.958,1.018,1.031,1.033,1.063,0.989,0.946,0.914,0.872,1.338,1.134,1.112,0.944,0.958,1.052,0.999,1.111,1.02,1.049,0.936,1.001 +XM_352466,1.11,0.929,1.078,0.941,1.097,1.025,0.882,1.067,1.052,1.097,0.972,1.146,0.977,0.963,0.985,1.082,1.041,0.897,0.858,1.296,1.107,0.925,0.865,1.13,0.993,0.972,0.942,1.118,0.947,1.014,1.039,0.983,0.925,0.819,1.065,0.966,1.261,0.929,1.038,1.068,0.894,0.969,0.779,0.881,0.899,1.058,0.928,1.101,0.979,0.999,1.12,1.088,0.832,1.212 +XM_352469,1.116,0.993,0.896,1.158,0.942,1.031,1.009,0.935,0.97,0.94,0.905,1.064,0.909,0.986,1.101,0.953,1.095,1.002,1.093,1.097,1.039,0.893,1.194,0.954,1.138,0.994,1.033,0.871,0.8,1.036,1.075,0.987,1.092,1.013,1.013,0.798,1.029,1.025,0.953,0.965,1.142,0.906,1.134,1.007,1.064,1.021,0.923,1.0,0.99,1.051,0.993,1.007,0.849,0.974 +XM_352480,1.108,0.998,1.08,1.242,0.982,0.898,1.01,1.103,0.961,0.957,1.174,1.078,1.055,1.147,1.103,0.834,1.088,1.208,1.062,0.987,0.928,1.123,1.043,0.947,1.071,0.98,0.948,0.979,0.834,1.041,0.975,0.854,1.132,0.861,1.036,0.947,1.002,0.979,0.893,0.951,1.043,0.929,1.239,1.149,0.997,1.061,0.998,0.966,0.928,1.112,0.905,0.926,0.957,0.889 +XM_352487,0.993,1.037,0.964,0.871,0.985,1.025,1.117,1.178,0.912,1.18,0.964,1.061,1.037,1.262,0.956,1.025,0.913,1.108,1.016,0.876,1.053,0.905,0.948,0.994,0.967,1.116,0.871,1.039,1.156,1.137,0.999,1.017,0.918,1.009,0.898,0.97,1.044,1.113,0.997,1.076,0.991,1.059,1.07,0.927,1.064,1.308,0.998,1.143,0.918,0.996,1.025,0.966,0.926,0.971 +XM_352490,1.052,1.065,1.105,0.976,0.958,0.978,0.844,1.127,0.947,0.881,1.048,0.945,1.168,1.056,1.016,0.949,1.065,0.985,0.914,1.012,0.909,0.996,0.835,1.032,0.893,0.96,0.977,0.932,0.889,0.93,1.037,1.086,0.926,0.854,0.968,0.942,0.96,1.118,0.914,1.211,0.979,0.762,1.052,1.026,1.045,0.985,1.114,0.9,1.162,1.062,1.03,1.058,0.87,1.051 +XM_352512,0.973,0.892,1.08,1.003,1.164,0.966,0.928,0.842,1.069,1.159,1.002,1.106,1.031,1.063,1.042,1.006,0.953,1.146,0.917,0.887,1.101,0.932,1.138,1.047,0.951,0.962,0.917,0.862,0.842,1.027,1.037,1.153,0.935,0.998,1.043,1.099,1.023,1.294,1.143,0.953,1.036,0.86,0.879,1.039,1.156,0.957,0.995,0.95,1.118,1.035,1.195,0.885,1.14,1.032 +XM_352513,1.069,1.021,0.887,0.978,1.013,1.064,1.079,1.002,1.122,0.961,1.08,1.224,0.879,1.335,0.975,1.022,0.972,0.859,0.947,1.031,0.998,1.031,1.15,1.03,1.106,1.111,1.017,1.037,1.069,1.054,0.865,0.982,0.898,0.828,1.079,0.986,0.972,0.949,1.141,1.028,0.989,0.88,0.827,1.126,0.875,0.782,0.893,0.973,0.952,1.102,1.038,0.825,1.038,0.909 +XM_352516,1.029,0.956,1.038,0.953,1.032,0.929,1.154,1.117,1.047,0.918,0.966,1.083,0.96,0.922,1.114,0.972,0.875,1.105,1.086,1.093,1.137,0.886,0.901,0.996,0.981,0.815,1.113,1.105,1.201,1.02,1.297,0.976,1.0,0.923,0.997,1.129,1.091,1.09,0.953,1.052,0.846,1.001,1.098,0.95,1.093,1.028,0.975,0.976,1.009,1.028,0.985,1.036,0.957,1.09 +XM_352521,1.025,0.964,1.166,0.898,1.04,0.893,0.951,1.019,1.092,1.025,0.966,1.174,0.998,1.039,0.995,1.056,1.003,0.909,1.059,0.983,0.97,1.024,0.974,0.941,1.044,1.058,0.994,1.064,0.708,1.013,1.046,1.071,1.074,0.967,0.998,1.021,0.997,1.066,1.054,1.069,0.879,1.003,1.016,0.969,1.117,0.94,0.954,1.058,1.045,0.963,0.949,1.052,1.012,0.928 +XM_352544,0.983,1.042,1.127,1.025,0.91,1.084,1.008,0.923,0.995,0.88,1.08,1.039,0.925,0.958,0.882,1.119,1.003,1.12,1.134,1.035,1.045,1.054,0.941,1.116,0.934,1.038,0.852,0.936,1.171,0.939,1.017,0.896,0.894,1.125,1.151,0.863,1.072,0.996,1.004,1.043,0.769,0.887,0.918,1.147,0.99,1.082,1.005,1.049,1.006,1.053,1.009,1.053,0.986,1.092 +XM_352547,1.082,1.033,0.966,0.977,1.104,0.955,1.158,1.049,1.022,1.031,0.867,0.949,0.867,0.831,0.935,0.87,0.981,0.959,1.023,1.07,0.995,0.949,1.024,1.022,1.027,0.851,0.956,1.036,1.147,0.889,1.052,0.911,0.908,0.848,0.94,0.94,1.052,1.066,1.122,0.961,1.065,1.07,0.886,1.012,1.102,1.007,1.265,0.913,0.871,0.99,0.977,0.909,0.943,0.921 +XM_352555,1.001,1.237,1.145,0.978,1.024,1.068,1.023,1.58,0.967,0.815,1.061,0.935,1.287,0.952,1.283,0.816,0.974,1.157,0.883,1.186,0.875,0.777,1.004,1.076,0.981,0.943,0.95,0.942,1.561,0.824,0.939,1.001,1.197,1.137,1.001,0.981,0.963,0.958,1.09,0.873,0.984,1.026,1.16,0.833,0.895,1.095,0.913,1.035,1.23,1.012,0.93,1.018,0.996,1.122 +XM_352557,0.959,1.036,1.073,1.122,0.926,0.819,0.973,0.957,1.016,0.975,0.935,1.004,0.862,1.014,0.816,1.124,0.87,1.072,0.963,1.108,1.076,0.928,1.127,1.036,0.952,1.036,0.897,0.958,1.098,1.025,1.176,1.138,1.031,1.093,1.017,0.977,0.938,0.993,1.068,1.001,0.944,1.127,0.823,1.036,1.105,1.012,1.025,1.025,0.967,1.003,0.918,1.019,0.981,0.999 +XM_352563,1.028,0.947,0.983,1.172,0.954,0.94,0.869,1.046,0.953,0.979,0.991,1.016,1.007,0.854,1.169,0.977,1.011,0.939,0.975,0.889,0.957,1.04,0.884,0.984,0.987,0.949,1.156,0.96,0.991,1.059,0.991,1.081,0.978,1.103,0.904,1.02,1.085,1.006,1.163,0.953,1.058,1.089,0.898,1.141,1.125,0.913,1.064,1.05,0.923,0.968,1.097,0.938,0.86,0.97 +XM_352571,0.974,0.928,0.986,0.981,1.011,0.996,1.008,0.939,0.983,1.026,1.101,0.922,0.894,1.253,0.867,1.054,0.943,0.864,0.932,1.041,1.078,1.019,0.958,0.982,1.02,1.023,1.159,1.033,0.986,1.023,1.035,1.038,1.031,0.971,0.935,1.016,0.931,1.09,0.979,0.963,0.824,1.05,0.988,1.008,0.885,0.96,0.884,0.801,0.871,0.923,1.027,0.902,0.916,0.995 +XM_352579,0.993,0.994,0.942,0.962,1.026,0.971,0.798,1.12,0.991,0.986,0.964,0.969,1.043,0.903,0.96,1.165,1.03,1.14,1.037,0.912,0.976,0.857,0.986,1.036,0.845,1.047,0.993,1.141,0.723,1.0,1.017,0.949,1.059,1.023,1.0,0.813,1.09,0.95,1.075,1.146,0.987,0.898,1.27,1.045,0.952,0.849,1.023,0.991,1.019,1.009,0.953,1.029,1.001,0.93 +XM_352583,0.841,0.897,0.784,1.079,1.019,1.013,1.096,1.018,0.966,0.988,1.002,0.893,0.956,1.329,0.954,1.057,1.019,0.998,0.873,1.074,1.026,0.891,1.027,0.753,0.928,0.9,0.907,1.049,1.002,0.981,0.853,0.858,1.074,0.914,1.088,0.882,0.85,1.109,1.0,1.009,1.015,1.075,0.906,1.148,1.0,1.081,0.886,1.078,0.824,0.928,0.84,1.031,0.899,1.016 +XM_352599,1.039,0.79,1.048,1.076,0.922,1.008,0.822,0.879,1.033,0.902,1.007,0.941,1.021,1.022,0.923,1.044,1.105,0.958,1.035,1.041,0.997,1.1,0.996,0.873,0.902,1.008,0.951,0.941,0.765,1.066,0.912,1.101,1.073,0.878,1.058,1.04,1.071,0.948,0.946,0.997,0.898,0.938,1.077,0.971,0.997,1.108,1.112,0.991,0.979,1.028,0.951,1.159,1.052,1.009 +XM_352600,1.051,1.037,1.094,0.917,1.118,0.933,1.061,1.186,1.075,0.852,0.938,1.0,0.942,0.973,0.932,1.056,0.896,0.757,0.963,1.05,0.956,1.091,0.905,0.93,0.959,0.925,0.94,0.882,0.933,1.054,1.095,1.205,1.238,0.837,1.01,1.164,1.057,0.907,1.037,1.243,0.811,0.972,1.019,0.927,1.076,1.188,0.923,1.078,1.129,1.017,1.016,0.926,1.145,0.994 +XM_352637,1.0,1.109,0.971,1.063,0.942,1.039,1.07,0.927,1.013,1.03,0.957,1.052,0.927,0.987,0.797,0.986,0.87,1.126,0.876,1.067,1.092,1.016,0.951,0.887,0.928,0.882,0.91,1.085,1.235,1.088,0.943,0.969,1.045,0.988,1.139,1.136,0.91,1.066,1.063,0.925,1.067,1.02,1.038,0.861,1.166,1.037,0.939,0.925,1.022,0.976,1.039,1.035,0.952,0.932 +XM_352651,1.049,1.03,1.036,1.29,1.0,0.981,1.042,1.09,0.928,1.018,0.828,1.112,1.114,0.905,0.937,1.091,1.141,1.097,0.996,1.078,0.831,0.996,1.012,1.028,0.963,1.056,0.948,0.911,1.084,1.027,0.953,0.904,1.052,0.954,1.061,0.906,0.973,1.027,0.964,0.943,0.989,0.94,1.088,0.999,1.13,1.153,0.892,1.022,1.097,1.044,0.869,1.126,0.869,0.918 +XM_352660,0.665,0.727,2.911,0.664,1.142,1.264,0.683,0.782,1.483,1.437,0.653,0.644,0.977,0.755,1.731,3.164,1.755,1.108,0.671,0.947,0.446,1.178,1.691,2.475,0.51,0.488,4.172,0.952,0.533,1.069,1.867,2.504,6.997,0.886,0.355,0.512,0.829,1.481,3.629,0.631,1.331,0.812,0.72,0.657,1.322,0.727,1.274,0.73,2.192,0.994,1.738,0.823,0.609,2.455 +XM_352668,1.056,1.073,0.91,1.034,1.037,0.996,1.089,1.069,1.111,0.857,1.204,0.991,1.133,0.874,0.913,1.069,1.178,0.877,1.07,0.898,1.245,0.974,1.026,1.019,1.06,0.99,0.95,1.034,0.787,0.972,0.905,1.035,1.022,0.954,1.183,0.9,0.974,0.979,1.038,0.946,0.851,0.955,0.908,1.162,1.082,1.02,0.997,0.96,0.991,0.907,1.046,1.085,0.994,0.917 +XM_352669,0.839,0.974,0.931,0.958,0.948,1.045,0.916,0.744,0.867,0.879,1.337,0.962,0.966,1.378,0.667,1.475,0.873,0.998,1.003,0.968,0.767,0.91,1.023,1.002,1.173,1.131,0.87,0.836,1.495,1.076,0.832,0.883,0.994,1.219,0.979,1.165,0.993,1.091,0.846,1.106,0.822,1.774,1.468,1.614,0.915,0.825,1.164,0.864,1.043,0.723,0.915,1.0,1.003,0.868 +XM_352673,0.956,1.008,0.926,0.979,1.103,0.966,0.986,0.962,0.96,0.928,1.119,0.874,0.901,1.231,0.987,0.975,0.998,0.929,1.077,1.061,0.976,1.104,1.187,1.041,0.985,1.008,0.88,1.015,1.359,1.047,0.881,1.03,1.138,1.076,1.01,0.882,1.083,1.027,0.977,1.015,0.979,1.002,1.26,1.147,1.013,0.906,0.913,0.888,1.114,0.877,1.154,0.879,0.981,1.165 +XM_352676,1.138,0.963,1.027,1.019,1.218,1.06,1.004,1.207,1.173,1.02,1.091,1.093,1.097,0.991,1.348,1.029,0.86,0.903,0.948,0.916,0.986,0.893,0.884,0.892,0.964,0.933,0.946,0.824,1.517,1.08,1.097,0.943,0.938,0.975,0.976,1.067,0.782,0.959,1.026,1.147,1.003,1.042,1.009,0.974,0.966,0.849,0.988,1.102,1.026,0.924,1.077,0.926,0.996,0.759 +XM_352677,0.968,1.086,1.076,1.121,1.109,0.925,0.924,0.983,1.068,0.971,1.035,1.046,0.968,1.081,0.926,1.102,0.94,0.959,0.832,0.967,0.973,0.894,0.978,0.959,0.927,0.983,0.977,1.029,0.811,1.042,1.005,1.043,1.028,1.016,1.176,0.973,1.062,0.969,0.993,0.932,1.066,1.051,0.945,0.935,1.076,0.962,0.977,1.03,1.101,1.044,1.037,0.995,1.199,0.992 +XM_352694,1.021,0.889,0.93,1.192,1.193,1.119,0.866,1.003,0.956,1.071,0.962,0.975,1.07,0.99,0.933,0.968,1.105,0.953,0.9,0.999,0.938,0.914,1.085,1.149,0.973,1.018,1.026,0.945,0.964,0.928,1.181,0.958,1.008,1.095,0.954,0.983,1.04,0.887,0.948,1.013,1.101,0.976,1.07,0.9,1.032,1.053,1.173,1.008,1.111,0.981,1.066,0.992,0.869,1.075 +XM_352697,0.986,1.05,0.965,0.942,0.998,1.016,0.896,0.848,0.965,1.086,1.013,1.211,1.049,1.271,0.865,0.953,1.002,1.015,1.118,0.957,1.086,1.028,1.011,0.988,1.045,0.982,0.846,1.115,1.059,0.949,0.962,1.063,0.882,0.871,1.012,1.08,0.964,1.034,0.894,1.109,1.129,0.92,0.983,1.113,0.953,1.048,0.958,0.985,0.823,1.058,0.951,0.978,1.094,1.055 +XM_352699,1.037,1.03,1.041,0.932,1.155,1.042,1.258,0.972,1.05,1.0,1.007,0.987,1.087,0.791,0.978,1.195,1.077,0.879,0.916,1.049,0.954,0.977,0.93,0.974,1.142,0.994,1.208,0.939,0.807,1.282,1.077,0.955,0.932,1.017,0.856,1.005,1.055,0.951,0.959,0.985,0.913,0.916,0.939,1.056,0.997,0.976,0.945,1.006,1.06,0.99,1.119,0.99,0.967,1.026 +XM_352720,0.96,0.903,0.881,1.108,0.975,0.976,0.88,0.906,1.01,0.97,0.893,1.017,0.933,1.072,0.804,0.95,0.927,1.007,1.034,0.933,1.063,0.965,0.859,0.972,1.025,0.872,1.077,1.016,0.722,1.025,0.947,0.98,0.805,0.981,0.91,1.088,1.03,0.992,0.991,0.967,0.997,1.076,0.802,1.029,1.013,0.915,1.025,0.997,0.9,0.959,1.031,0.961,1.038,0.923 +XM_352724,0.956,0.929,0.967,1.092,1.059,0.996,0.991,1.05,0.939,1.012,0.924,1.051,1.076,1.111,0.871,0.979,1.009,1.112,0.885,0.899,1.073,1.093,1.069,0.919,1.0,0.844,0.841,1.026,1.108,0.841,0.894,0.784,1.014,1.042,1.042,1.077,0.9,1.071,1.025,0.976,1.035,0.969,0.886,1.03,1.096,1.027,1.068,0.823,0.995,1.097,0.939,0.969,1.044,1.183 +XM_352737,1.088,0.956,1.077,0.974,0.952,1.008,0.963,1.303,1.031,0.954,1.161,1.086,1.033,1.108,1.109,1.085,1.092,1.01,0.915,1.071,1.035,1.07,1.049,1.062,1.04,0.847,0.843,0.98,0.744,0.974,1.022,0.819,1.063,0.98,1.016,1.072,0.973,0.869,0.873,1.007,1.064,0.938,1.298,1.155,0.932,0.747,0.89,1.217,1.092,1.038,1.15,1.003,1.102,0.888 +XM_352738,1.133,0.964,1.0,0.903,1.058,1.027,0.986,1.095,1.071,1.033,1.197,0.946,0.999,0.991,1.134,0.973,0.939,1.006,0.982,0.99,1.095,1.035,0.904,1.058,0.898,0.916,1.164,1.045,0.955,1.014,1.057,1.033,0.969,1.009,0.925,0.934,1.038,0.993,1.048,0.936,1.0,0.947,0.917,1.091,1.018,1.166,0.949,1.128,0.941,1.034,1.107,0.926,0.937,0.961 +XM_352747,1.014,1.035,1.006,0.995,1.005,0.871,1.077,1.043,0.959,1.023,1.036,0.982,0.929,0.983,0.795,0.95,0.912,1.008,1.081,0.959,1.069,0.998,1.174,1.043,1.023,0.956,0.747,0.96,0.997,0.915,0.967,0.944,1.041,0.909,0.879,1.235,0.922,1.11,1.002,1.084,1.044,1.054,0.819,1.112,0.912,0.941,0.955,0.94,1.06,1.163,0.959,0.966,1.125,1.016 +XM_352749,0.995,1.04,0.95,0.939,1.086,1.039,0.846,0.938,1.057,1.06,1.303,0.878,0.857,0.835,0.882,1.187,0.942,1.058,0.954,0.968,1.049,0.846,0.998,0.966,0.819,0.852,1.002,0.951,0.82,1.011,1.265,0.91,1.033,1.021,0.993,1.029,1.006,0.96,1.094,1.038,1.066,1.086,0.989,1.161,0.893,1.099,1.153,0.936,1.211,0.946,1.082,0.902,0.949,0.954 +XM_352750,0.944,1.033,0.944,0.915,0.944,1.018,0.878,1.009,1.026,0.961,1.122,1.047,0.947,0.919,1.127,1.107,1.088,0.948,0.968,0.954,1.107,0.937,0.844,1.046,1.089,1.106,1.042,1.147,0.722,1.082,0.976,1.297,0.915,0.969,0.989,0.918,0.983,0.95,0.925,0.96,0.838,1.091,0.867,1.082,1.003,0.965,1.089,0.927,0.934,0.939,0.938,0.984,0.983,0.908 +XM_352752,1.124,0.999,0.981,0.821,0.911,1.003,0.933,1.03,1.069,0.931,0.965,1.092,1.001,1.022,1.057,1.053,1.017,1.006,0.931,0.86,1.109,0.976,0.877,1.105,0.947,1.029,0.994,1.029,0.611,0.944,1.004,0.948,0.866,1.008,0.963,1.073,0.995,1.063,0.853,1.017,0.929,1.076,1.032,0.948,1.06,0.97,1.101,0.913,0.974,0.866,1.165,1.036,1.077,1.139 +XM_352773,1.083,1.018,0.977,0.906,1.096,1.031,1.085,1.094,1.191,0.875,1.026,0.951,1.006,0.98,0.909,0.98,0.871,0.961,1.057,1.018,0.981,0.968,1.073,1.062,1.039,1.048,1.063,0.994,1.071,0.973,0.962,1.009,1.088,1.181,1.077,0.912,1.059,1.112,0.951,1.101,0.97,0.928,1.288,0.942,0.869,1.134,0.984,1.017,0.976,0.985,1.035,0.908,1.071,1.012 +XM_352798,1.016,1.016,1.015,0.87,0.988,0.978,0.952,1.114,0.948,0.959,0.958,1.024,0.982,0.915,0.865,0.872,0.935,1.004,0.94,0.842,0.923,0.985,1.03,0.983,1.209,1.198,1.033,0.939,1.178,0.994,0.911,1.117,0.953,0.933,1.031,1.009,1.016,0.958,1.035,0.952,1.16,1.027,1.086,1.0,1.108,1.065,1.021,1.043,1.018,1.061,0.917,0.907,0.964,1.135 +XM_352801,1.009,1.065,1.021,0.983,1.097,1.092,0.992,0.964,1.01,1.04,1.026,0.978,1.089,1.106,0.719,1.053,0.959,1.04,1.016,0.942,1.076,1.049,0.938,0.933,0.992,0.953,0.981,0.973,1.308,1.077,0.985,0.989,1.007,0.975,1.004,0.894,1.032,1.024,0.965,1.002,1.158,0.85,0.95,0.942,0.921,0.912,1.159,1.014,0.884,0.958,0.96,1.176,1.017,1.016 +XM_352802,0.986,1.098,0.999,0.913,1.06,0.941,0.983,1.041,0.945,1.008,0.92,1.057,1.069,0.837,1.184,1.028,0.983,1.0,0.881,0.98,0.996,0.977,1.058,0.948,0.889,1.156,1.154,1.002,0.908,1.034,0.993,1.119,0.902,1.045,1.101,1.068,0.986,0.966,1.087,1.025,0.953,1.158,0.951,1.011,1.066,1.016,1.005,1.079,1.168,1.005,1.003,0.904,0.995,0.962 +XM_352803,0.981,0.908,0.974,1.131,0.891,0.943,0.985,0.99,1.044,1.133,0.953,0.967,1.178,1.177,0.856,1.146,1.087,0.977,1.127,0.877,0.989,0.967,1.084,1.014,1.001,0.937,0.995,1.13,0.974,1.05,1.035,0.942,1.03,1.036,0.983,1.427,0.982,0.892,1.143,0.887,0.999,0.962,0.77,0.948,1.009,1.039,1.04,1.006,0.985,1.069,1.054,0.965,1.089,1.071 +XM_352805,0.935,0.994,1.046,1.023,0.904,0.983,1.095,0.904,1.012,1.078,0.876,1.112,1.029,0.845,0.849,1.277,0.957,0.984,1.098,0.907,0.873,1.099,1.063,1.072,0.843,0.995,1.08,1.07,0.697,0.884,1.062,1.024,0.963,1.073,0.924,0.92,0.967,1.034,1.038,1.096,0.951,0.872,0.756,1.046,1.102,0.983,1.141,0.976,0.94,0.982,0.973,0.934,1.031,1.112 +XM_352814,1.075,1.039,0.991,0.992,1.093,0.814,0.943,0.862,0.909,0.841,0.996,1.042,1.068,0.923,0.81,0.929,0.983,1.125,0.854,0.983,0.928,1.009,0.898,1.044,1.002,1.174,0.982,1.047,1.284,1.006,0.894,1.073,0.799,1.063,0.908,1.084,0.974,0.988,0.98,0.952,0.916,1.029,0.803,1.014,1.059,0.902,1.139,0.998,0.981,1.19,0.981,1.087,1.005,1.002 +XM_352815,1.444,1.063,1.1,0.999,1.021,0.956,0.887,0.951,1.146,0.957,1.093,0.899,1.302,0.958,1.086,0.924,1.176,0.945,1.206,0.978,1.376,0.871,0.81,1.103,1.03,1.598,0.96,1.063,1.013,0.957,0.861,0.934,1.103,1.049,1.256,0.856,1.024,1.049,1.124,0.91,0.955,1.01,1.049,0.975,1.151,0.901,0.969,1.249,0.912,1.139,1.029,0.845,0.978,1.011 +XM_352829,0.888,1.094,1.146,1.011,0.946,0.951,1.354,1.014,1.109,0.957,1.144,1.216,0.884,0.94,1.101,0.983,1.105,1.033,1.05,1.041,0.968,0.827,0.854,0.969,1.034,0.948,0.868,0.822,1.18,1.013,0.962,0.867,1.183,1.098,1.01,0.977,0.967,0.946,1.053,0.923,1.009,1.14,1.297,1.038,0.895,0.949,1.059,1.023,1.058,0.918,1.027,1.097,0.991,1.037 +XM_352832,1.038,0.969,0.981,0.996,0.997,1.027,0.846,0.975,0.95,1.105,0.99,0.983,0.919,0.965,0.887,1.013,1.007,0.926,0.919,0.991,1.007,1.132,0.946,1.173,1.077,1.001,1.003,0.951,0.841,0.915,1.023,1.092,0.973,0.956,1.044,1.113,0.979,1.235,1.035,0.976,1.007,0.984,1.346,1.01,1.141,1.033,1.047,0.928,1.034,0.973,0.791,1.02,1.079,0.84 +XM_352833,1.054,0.988,1.065,1.066,0.87,1.09,0.893,0.948,0.99,1.007,1.059,0.881,0.918,1.09,1.366,0.963,1.092,1.06,0.901,1.015,0.923,1.212,0.908,0.901,0.908,1.082,1.036,1.129,0.902,0.964,1.046,0.915,1.225,1.128,1.026,0.975,0.866,1.014,0.936,0.985,1.055,1.023,1.177,1.025,0.926,0.854,1.055,1.141,1.035,0.971,0.968,1.065,1.053,0.937 +XM_352834,0.917,0.929,0.849,0.994,0.955,1.02,0.816,0.942,0.893,1.037,0.985,0.996,0.982,0.787,0.994,1.104,0.931,0.963,1.047,1.151,0.899,0.887,1.197,0.926,0.964,1.021,0.985,1.031,0.908,1.022,0.906,1.057,0.934,1.079,0.843,1.01,1.256,0.887,1.124,0.871,0.975,1.088,1.025,1.036,1.05,1.0,1.123,0.99,1.04,0.897,1.15,0.893,0.803,1.107 +XM_352835,1.052,1.141,1.119,0.982,1.0,0.99,0.987,0.904,1.11,1.02,1.195,0.969,0.931,1.085,0.99,0.902,0.894,1.152,1.012,0.934,0.962,0.968,1.077,1.039,0.955,0.99,0.916,0.978,0.981,0.97,0.917,1.003,1.132,1.002,0.831,1.004,0.949,0.885,1.106,1.004,1.039,1.093,0.928,0.946,0.919,1.097,0.892,1.048,1.015,0.894,1.013,1.036,1.103,0.868 +XM_352841,0.91,1.124,1.079,0.868,1.057,0.937,0.961,0.848,1.137,0.892,1.055,0.931,0.985,0.988,0.949,1.071,0.914,0.964,0.961,0.936,1.061,1.063,0.944,1.137,0.857,0.979,1.093,1.091,1.122,0.919,0.921,1.161,0.918,0.978,0.948,1.014,1.006,1.15,1.048,1.107,1.115,1.058,0.997,0.966,0.916,1.06,0.922,1.074,0.945,0.958,1.059,0.897,1.012,1.098 +XM_352856,0.978,1.14,1.137,0.917,1.209,0.997,1.003,0.858,1.141,1.15,0.855,1.008,0.849,1.092,1.139,1.094,1.098,1.025,1.048,1.014,0.919,1.133,1.016,1.065,1.056,0.941,0.988,1.047,1.681,0.976,1.074,0.877,1.367,0.784,0.927,0.928,0.954,0.881,0.968,0.935,1.095,0.948,1.082,0.886,0.924,1.191,1.013,0.855,1.151,0.789,0.891,0.903,0.957,1.345 +XM_352864,0.974,0.968,1.002,1.145,1.038,1.002,0.933,0.861,0.992,0.939,0.975,1.035,0.953,0.944,1.079,1.03,1.041,1.042,1.165,0.888,0.984,1.04,0.97,0.927,0.96,1.067,0.918,1.045,1.01,1.087,0.877,0.9,0.983,1.021,0.919,0.925,0.992,1.013,0.922,0.932,0.939,0.927,0.938,1.036,0.997,1.223,0.958,1.062,1.058,1.16,0.939,0.968,1.025,0.965 +XM_352865,1.133,1.012,0.975,1.094,1.047,0.926,1.166,0.953,0.948,0.975,1.03,0.898,0.984,0.832,1.371,1.005,0.909,1.018,1.025,0.944,0.94,0.958,1.2,0.969,1.128,1.093,0.948,1.1,1.014,0.995,0.958,0.882,1.075,0.915,1.176,0.99,1.059,1.086,0.973,0.945,0.949,1.129,1.091,1.098,1.012,1.086,0.986,0.859,0.996,0.998,0.862,1.088,1.346,1.008 +XM_352869,1.144,0.931,1.023,0.895,0.986,1.021,1.371,1.106,0.929,1.1,1.118,1.075,0.952,0.862,0.911,0.95,0.96,0.926,0.943,1.112,0.948,1.011,0.855,1.033,0.939,0.937,0.997,1.063,0.835,0.966,1.009,1.042,1.065,1.058,1.025,1.056,0.911,1.003,1.097,0.966,0.984,0.919,0.978,1.073,1.13,1.09,0.916,1.08,1.117,1.038,0.884,0.932,1.025,0.827 +XM_352873,1.054,1.008,1.025,1.051,0.926,0.87,1.063,0.786,0.857,1.091,0.92,0.992,1.005,1.102,0.798,1.105,0.992,1.005,0.891,1.072,0.825,0.855,1.082,1.003,1.131,1.048,0.955,0.988,1.077,1.09,0.917,1.023,1.01,0.916,1.17,0.937,1.022,1.048,1.025,0.967,0.943,0.969,1.01,0.96,1.038,0.945,0.936,1.195,1.024,1.056,0.949,1.028,0.961,0.874 +XM_352890,1.009,1.137,1.046,1.118,0.937,1.025,0.989,0.938,1.032,0.969,1.018,1.01,0.887,1.114,0.855,1.062,0.984,1.129,0.925,0.973,0.978,0.943,1.182,0.984,0.988,0.843,0.91,0.901,0.916,1.071,0.962,1.002,1.223,1.137,1.015,0.941,1.052,1.062,1.053,0.879,0.972,0.999,1.033,1.466,1.042,1.101,0.941,0.921,1.133,1.04,1.007,1.001,0.919,1.045 +XM_352901,1.102,1.062,1.062,0.989,1.104,1.062,0.964,0.931,1.166,0.891,0.951,0.909,0.942,0.895,0.817,1.092,1.103,0.909,0.952,1.125,0.831,1.066,1.093,0.987,0.892,1.041,0.981,0.969,1.197,1.092,0.887,1.452,0.936,1.038,0.977,0.891,0.789,0.904,0.978,0.977,1.207,0.881,0.971,1.099,1.142,0.932,0.849,1.05,0.932,1.007,1.008,0.961,0.851,0.932 +XM_352911,0.54,1.565,0.578,1.346,0.488,1.32,0.73,0.441,0.595,0.497,1.663,0.583,0.607,0.599,1.029,1.581,0.548,1.091,0.392,1.219,0.524,0.53,1.378,0.559,1.052,0.524,0.568,0.515,1.078,2.007,0.473,0.991,1.092,2.031,0.677,0.937,1.319,0.516,2.805,0.627,0.586,1.708,1.044,1.782,0.563,1.567,0.925,0.579,0.905,0.478,1.267,0.632,0.529,0.784 +XM_352913,0.79,1.215,1.236,0.877,0.927,2.103,0.916,0.84,0.794,0.721,1.624,0.741,0.764,0.75,1.219,1.737,1.144,1.169,0.782,2.032,0.674,0.7,1.518,0.859,1.197,0.712,1.018,0.797,0.876,2.135,0.901,1.838,1.149,1.491,0.833,0.797,1.427,0.632,1.068,0.817,0.722,1.938,2.725,0.933,0.762,1.707,1.095,0.797,1.717,0.775,1.632,0.72,0.836,0.766 +XM_352919,2.017,0.863,3.003,1.126,4.206,0.899,0.893,0.997,1.107,7.811,0.819,1.041,0.894,0.993,1.0,1.704,1.197,4.169,2.34,1.042,1.134,0.924,0.911,2.381,0.937,1.013,1.268,0.852,0.837,0.925,1.135,0.904,1.472,1.02,0.957,0.961,0.981,1.71,1.066,0.982,1.342,0.846,0.84,0.817,1.985,0.942,1.836,1.06,0.739,2.377,2.267,2.31,3.451,1.18 +XM_352921,0.986,1.113,1.07,1.007,1.238,1.121,1.006,1.145,0.908,1.131,1.043,0.975,0.926,1.068,0.914,1.012,0.933,1.062,0.842,1.034,0.996,0.969,0.914,1.068,0.972,1.006,1.075,0.893,1.269,1.19,0.917,0.974,1.038,0.962,0.95,0.943,0.896,0.996,0.979,0.943,0.93,0.96,1.301,0.98,1.002,1.002,1.0,1.055,0.908,0.961,1.063,0.919,0.865,0.998 +XM_352922,0.972,0.99,1.135,0.973,0.986,0.857,0.903,1.099,1.197,1.046,0.819,1.062,0.956,1.107,1.036,0.869,0.814,0.895,0.95,0.96,1.033,1.09,0.977,1.117,0.968,0.999,1.001,1.003,1.739,1.095,1.009,1.439,1.22,0.944,0.925,1.053,0.985,1.122,1.019,1.116,1.055,1.127,1.078,0.841,1.021,0.977,0.951,1.044,0.97,0.911,0.927,1.047,1.06,0.874 +XM_352924,1.094,1.069,0.866,0.987,1.145,0.89,0.839,1.15,0.971,1.017,1.012,1.176,0.946,0.906,0.731,1.068,0.956,1.067,1.109,0.965,0.898,0.968,1.003,1.0,0.992,1.13,0.946,1.054,1.675,0.896,1.057,0.977,1.119,0.95,0.984,0.996,0.964,0.854,1.087,1.02,0.994,1.299,0.876,1.005,1.056,1.044,1.031,0.961,0.984,1.014,0.809,0.988,1.061,0.982 +XM_352931,1.241,0.879,1.048,0.927,0.929,1.062,0.781,1.013,1.142,0.829,0.919,1.003,0.932,0.931,1.104,0.943,1.05,1.0,1.121,1.02,0.991,1.099,0.915,1.192,1.064,1.179,1.172,1.018,0.638,1.065,1.033,0.982,1.002,0.973,0.905,0.986,0.984,1.044,0.907,1.086,0.967,1.006,0.925,1.186,0.948,0.99,1.066,0.956,0.828,1.083,1.0,0.912,1.098,0.975 +XM_352938,0.898,0.978,0.923,1.033,0.997,1.167,1.154,1.045,1.041,1.067,0.96,1.191,1.124,0.895,0.761,0.88,0.977,0.935,1.17,1.03,0.977,0.977,0.904,1.019,0.971,1.078,1.124,0.926,0.805,1.021,1.033,1.196,0.987,1.017,1.031,1.0,1.052,1.084,0.91,1.0,0.948,1.006,0.962,1.065,0.979,1.031,1.081,1.052,0.966,1.001,1.101,1.021,1.12,1.027 +XM_352939,0.896,1.16,0.961,1.069,0.848,1.073,0.853,0.926,1.016,0.816,0.874,0.947,0.95,0.817,0.818,0.877,0.874,0.979,0.833,1.02,0.864,0.913,0.897,1.024,1.019,0.97,0.976,0.962,1.047,1.171,0.882,4.561,1.465,1.036,0.878,1.027,0.98,1.129,1.264,1.421,0.979,0.995,1.181,1.931,0.987,1.005,1.137,1.035,0.951,1.015,0.978,1.112,0.832,1.083 +XM_352945,0.955,0.899,0.793,0.759,1.043,0.972,0.856,1.14,1.128,0.934,0.973,0.916,0.903,1.164,0.992,0.947,0.889,1.072,0.891,0.989,0.985,0.82,0.866,1.027,0.969,0.946,0.977,0.895,0.709,1.042,0.865,1.27,1.165,0.858,0.936,0.866,1.069,1.022,1.096,1.316,0.982,0.999,0.741,1.229,0.854,0.889,1.09,0.933,1.093,1.006,1.075,1.056,0.823,1.973 +XM_352946,0.889,1.081,1.038,0.861,1.009,0.867,1.114,1.018,1.095,1.095,0.984,0.918,1.003,1.081,1.076,0.84,0.997,1.173,1.104,0.914,1.008,0.926,0.946,0.949,0.91,0.921,0.996,1.043,0.764,0.985,1.0,1.094,1.028,1.061,1.162,0.93,0.863,0.934,0.993,1.0,1.07,0.962,0.819,0.908,0.947,1.036,1.024,0.931,0.925,1.009,1.022,1.016,1.299,1.183 +XM_352951,0.882,0.935,1.14,1.007,0.854,0.787,0.674,0.621,1.185,0.895,0.873,0.732,0.807,0.796,1.015,1.075,1.191,0.853,1.189,0.759,0.728,0.936,1.04,0.856,0.828,1.165,1.353,0.948,0.748,1.1,0.909,1.62,1.961,1.214,0.537,1.053,0.995,0.963,1.097,0.991,1.011,1.008,0.874,1.236,0.907,0.88,0.654,0.868,1.085,1.082,1.035,0.987,1.131,1.487 +XM_352954,1.051,0.994,0.938,1.012,0.978,1.04,0.95,0.934,0.945,1.014,0.901,1.028,1.036,0.87,0.902,1.133,0.939,0.997,0.932,0.972,1.067,0.941,1.018,1.025,1.0,1.011,0.816,0.97,0.931,1.0,0.972,1.021,1.04,0.97,0.991,0.998,0.921,1.061,0.96,1.101,1.112,1.15,1.228,0.907,1.002,1.005,1.064,0.926,0.956,0.982,1.118,0.898,0.986,1.033 +XM_352956,1.118,0.963,0.947,1.032,0.999,0.916,0.883,0.85,1.125,1.141,0.844,0.991,1.05,0.838,0.994,0.826,1.144,1.034,0.974,1.055,1.028,0.941,0.976,0.951,0.955,0.938,1.159,1.044,0.665,1.028,1.031,2.057,0.973,1.018,1.04,0.955,0.962,1.043,1.003,1.134,0.994,0.818,0.883,1.056,0.964,1.108,0.965,1.152,1.046,1.034,0.909,0.984,0.989,1.028 +XM_352957,0.997,0.891,0.987,0.907,0.945,0.97,0.979,1.133,1.172,1.016,1.033,1.104,0.917,0.715,1.135,1.0,0.979,1.1,0.829,0.936,1.092,1.078,1.006,0.964,0.946,1.161,0.933,0.903,1.14,1.066,0.966,0.986,0.964,1.02,0.972,0.993,1.004,1.015,0.938,1.031,0.771,1.01,0.939,1.0,0.987,0.795,0.95,0.994,1.107,1.039,1.078,1.001,1.163,1.169 +XM_352960,1.056,1.103,0.966,1.053,1.105,0.978,0.916,0.84,0.988,1.112,0.975,1.099,0.96,0.931,0.947,0.999,1.104,0.887,0.908,1.019,0.956,0.94,0.973,1.011,0.948,0.99,0.877,1.067,0.796,0.997,0.851,1.038,1.167,1.092,1.044,0.997,0.961,1.351,1.028,0.98,1.061,1.019,0.976,1.037,1.015,0.966,1.017,1.02,1.01,0.985,0.883,0.963,0.925,1.032 +XM_352962,0.738,2.617,1.566,1.006,0.921,2.04,1.063,0.654,0.867,0.633,1.0,0.753,0.728,0.738,0.842,0.886,0.717,1.376,0.922,1.792,0.611,1.023,1.346,0.694,1.633,0.835,0.969,1.126,0.766,2.231,0.698,0.886,0.731,2.44,0.547,0.688,1.529,1.179,1.269,0.656,0.964,1.698,0.725,0.864,0.729,1.125,0.752,0.671,0.75,0.829,1.182,0.757,0.88,0.738 +XM_352963,0.929,1.174,1.001,1.014,0.973,0.952,0.853,0.84,1.074,0.886,0.984,0.992,1.016,0.916,0.903,0.976,1.126,0.885,0.943,0.975,0.999,0.986,0.964,1.132,1.025,0.85,1.025,1.09,0.752,1.089,0.974,1.075,0.987,1.017,1.016,0.951,0.975,1.122,1.171,0.965,0.921,0.975,0.963,0.985,1.073,0.977,0.896,0.967,0.913,1.001,0.996,1.007,0.974,1.123 +XM_352965,0.774,1.111,1.221,0.956,1.028,0.754,0.871,0.569,1.21,1.437,0.706,0.91,0.785,0.844,0.827,0.942,0.913,1.082,1.167,0.744,0.883,0.896,1.69,1.032,0.616,0.835,1.855,0.798,0.547,0.913,0.847,1.171,2.912,0.783,0.459,2.72,0.982,0.981,1.796,1.478,1.291,0.776,0.715,1.885,1.028,0.861,1.081,0.878,1.226,0.793,1.282,1.146,1.007,1.857 +XM_352976,0.977,0.975,1.046,1.075,0.91,1.032,0.984,0.977,1.078,0.961,1.017,0.94,0.894,0.995,1.0,1.031,1.08,1.06,1.141,1.044,0.927,0.96,0.962,1.029,0.942,1.065,1.02,0.925,0.991,0.996,0.895,0.899,1.045,1.077,1.055,1.003,0.986,0.904,1.052,1.063,1.001,0.979,0.992,1.0,1.038,1.134,0.962,1.078,1.112,0.98,1.033,1.155,0.994,1.095 +XM_352978,0.959,0.831,0.992,0.889,0.943,1.113,0.845,1.056,1.022,1.156,1.038,0.951,0.776,0.814,1.076,1.036,1.02,0.942,0.888,0.983,0.953,1.051,1.251,0.954,0.974,1.092,1.013,0.944,0.852,0.844,1.007,0.934,0.927,1.058,1.005,0.911,0.975,1.056,0.778,0.97,1.083,1.129,0.885,0.939,0.937,1.038,0.9,1.114,1.005,0.926,0.953,1.069,1.098,0.981 +XM_352985,1.073,1.007,1.012,0.998,1.126,1.088,1.029,1.216,1.057,1.002,1.155,0.865,1.036,0.999,0.892,1.05,1.045,0.982,1.034,1.121,1.102,0.958,1.032,0.968,0.972,0.962,0.849,1.17,1.001,1.033,0.973,1.037,0.948,1.003,1.005,1.044,1.096,1.146,1.106,0.932,0.986,0.98,0.846,0.886,0.98,1.073,0.93,0.977,0.838,0.982,1.092,0.997,1.032,1.06 +XM_352986,0.97,1.074,1.262,1.118,0.993,1.036,0.877,0.851,1.007,1.139,0.911,0.961,1.084,0.864,1.13,1.053,1.042,1.037,1.177,0.964,1.085,0.872,0.887,1.023,1.109,0.827,0.955,0.901,1.168,0.963,1.117,1.048,0.969,0.914,1.129,1.291,1.08,0.919,1.007,0.92,0.884,0.852,1.055,1.286,0.942,0.922,0.823,0.959,1.071,1.087,0.813,1.302,1.2,0.82 +XM_352991,0.933,0.971,1.088,1.147,1.038,0.915,1.098,1.135,0.997,0.966,0.92,0.974,0.967,1.042,1.09,1.003,1.0,0.964,0.888,1.058,1.151,0.905,0.979,1.027,0.995,0.912,0.844,1.064,1.078,1.069,1.102,1.011,1.068,1.041,1.032,0.929,0.865,0.755,1.167,0.977,0.874,0.852,0.84,1.051,1.197,1.077,0.936,1.157,0.994,0.931,1.023,1.048,0.946,0.937 +XM_353002,1.052,1.085,0.97,1.048,1.143,1.082,1.245,0.866,1.039,1.056,1.04,0.936,1.084,0.948,0.92,1.066,0.984,1.141,1.064,1.013,0.904,0.993,1.012,1.08,0.984,1.08,0.967,0.927,1.289,1.064,0.938,0.971,1.121,0.99,0.989,0.886,0.959,1.0,1.042,1.023,0.937,1.051,1.037,0.885,0.976,0.955,1.016,1.014,1.061,0.943,1.062,0.865,1.154,1.016 +XM_353016,0.999,0.94,0.958,1.033,0.864,1.069,1.147,0.803,1.003,0.956,0.993,1.222,0.919,1.014,1.168,0.928,1.05,0.903,1.026,0.977,1.01,0.939,1.01,0.927,1.106,0.936,1.144,1.034,1.035,1.096,1.045,1.022,1.046,0.95,0.818,0.988,0.978,0.922,0.957,1.057,1.022,0.868,1.165,1.012,1.024,1.001,1.047,1.023,0.925,0.968,0.973,1.001,1.068,0.885 +XM_353017,1.001,1.205,1.011,0.984,0.883,0.945,0.973,0.956,0.982,1.134,1.094,1.121,0.938,0.934,0.934,0.941,0.927,1.014,0.955,0.883,0.995,1.102,0.908,0.929,0.893,1.017,1.07,1.025,0.961,1.154,0.975,1.372,0.976,1.206,0.894,0.931,0.897,1.017,1.133,0.972,1.012,0.97,0.85,1.088,0.947,0.958,1.157,0.945,1.046,0.901,0.98,0.896,0.951,1.131 +XM_353021,0.87,1.142,1.056,0.812,0.905,1.058,1.272,0.909,1.048,1.12,0.89,0.977,0.878,0.825,1.004,0.99,1.002,1.194,0.959,0.956,0.889,0.932,1.106,1.205,0.953,0.94,0.857,1.032,0.992,0.976,1.096,0.899,0.949,1.026,1.195,0.986,0.905,0.956,1.05,1.037,1.047,0.9,1.17,1.014,0.998,1.019,0.883,1.012,1.062,0.939,1.05,0.927,1.022,0.998 +XM_353023,0.913,0.927,0.967,1.057,0.943,0.998,0.721,1.297,0.891,0.976,0.972,0.973,1.039,0.969,1.077,0.998,1.024,0.926,1.047,0.881,1.173,1.013,0.835,0.961,1.001,1.004,1.165,0.983,0.606,0.931,0.916,0.993,0.947,1.093,1.063,1.109,0.977,1.094,1.089,0.915,1.003,1.124,1.001,1.121,1.093,1.231,1.148,0.918,1.054,0.989,1.059,0.845,0.979,0.938 +XM_353032,0.97,0.98,1.12,1.074,0.872,1.078,1.018,0.964,0.921,1.116,1.051,0.91,0.988,1.044,1.034,1.083,0.881,1.184,0.928,0.949,1.167,1.024,1.01,1.032,0.951,0.995,0.959,0.994,1.365,1.043,1.048,0.832,1.112,0.949,1.026,0.917,0.962,1.03,1.092,1.086,0.964,0.868,1.157,0.988,1.073,0.984,1.067,1.011,0.995,1.006,0.942,1.027,0.946,1.212 +XM_353035,0.924,1.01,1.252,0.926,1.023,1.052,0.916,1.044,1.023,0.835,1.112,1.076,0.96,1.323,1.128,1.105,1.158,0.986,1.079,0.871,1.077,0.983,1.042,0.88,0.972,1.05,1.082,0.936,1.032,0.956,1.013,0.965,0.95,1.003,0.89,1.112,1.126,1.165,0.937,0.982,0.855,1.008,1.013,0.866,0.958,0.959,1.015,1.041,0.965,1.049,0.983,1.192,1.078,0.912 +XM_353037,1.056,0.883,0.958,1.008,1.041,1.044,1.123,0.969,1.101,0.927,1.221,0.927,1.038,1.056,0.852,1.107,0.956,0.957,0.923,0.946,0.933,1.07,0.906,1.023,1.04,1.022,1.034,1.077,0.656,0.986,0.967,0.913,1.01,1.156,1.046,0.888,0.934,1.056,1.064,0.963,1.042,0.963,0.918,0.965,1.0,0.904,0.889,1.057,1.048,1.032,0.935,1.054,0.772,0.929 +XM_353051,1.093,1.14,1.164,1.149,0.88,0.976,1.02,1.046,0.857,1.031,0.913,1.08,1.088,0.924,0.977,0.935,1.029,1.187,0.967,1.042,0.978,1.068,1.023,1.144,0.989,0.881,0.917,0.97,1.009,1.01,1.054,0.939,0.973,1.009,1.153,1.047,0.862,0.939,1.015,0.965,1.141,0.92,1.067,0.784,0.864,1.023,0.913,0.917,0.931,1.236,1.015,0.998,1.027,0.91 +XM_353055,1.006,1.085,0.918,1.03,0.922,1.042,1.004,0.888,0.909,0.984,0.865,0.963,0.999,0.995,1.005,1.053,0.98,1.031,0.952,0.923,1.02,0.931,0.87,1.006,0.871,1.036,1.073,0.905,0.775,1.065,1.094,1.019,1.022,1.03,1.043,0.981,0.97,0.893,0.986,1.113,1.005,0.978,0.995,1.211,0.959,0.968,1.116,1.046,0.952,1.044,0.831,0.897,1.039,1.129 +XM_353056,1.001,1.004,0.976,1.144,1.045,1.172,0.989,0.892,0.824,0.913,1.171,0.898,0.798,0.909,1.358,3.26,1.102,0.902,0.934,1.265,0.851,0.987,1.07,0.962,0.837,0.874,0.959,0.957,0.973,0.989,0.94,0.791,1.044,0.864,0.831,1.379,1.71,0.985,0.98,0.87,0.946,1.397,1.198,0.75,1.137,1.824,1.208,0.868,1.559,1.144,1.306,0.827,0.868,1.062 +XM_353063,1.09,1.097,0.914,0.941,0.953,1.082,1.041,1.139,0.931,1.066,1.028,0.869,1.095,0.946,1.08,1.091,1.001,1.115,0.993,1.078,0.991,0.976,0.907,1.074,1.101,1.064,0.974,1.186,0.885,1.012,0.924,1.115,0.956,0.971,1.049,1.045,1.013,0.955,1.122,0.854,0.931,0.926,0.97,1.086,1.041,1.046,1.034,1.016,0.907,1.116,0.948,0.978,1.046,0.868 +XM_353066,1.075,0.98,0.894,1.016,0.929,0.937,1.043,0.966,0.875,0.958,1.046,1.095,1.113,0.986,0.91,0.88,1.094,0.966,1.072,1.039,1.0,1.12,0.995,1.007,0.974,0.882,1.059,0.972,1.075,1.099,1.087,0.936,1.084,0.992,0.947,0.915,0.967,1.026,0.915,0.99,0.836,1.143,0.743,1.222,0.953,1.012,1.018,0.937,1.262,0.838,0.946,0.813,0.951,0.894 +XM_353069,0.918,0.944,1.07,0.894,1.042,1.042,1.053,0.998,1.061,1.05,0.915,0.889,0.936,0.749,1.232,0.948,1.02,0.94,0.926,1.047,0.961,1.002,1.039,1.07,1.041,0.933,0.977,1.082,1.146,1.086,0.991,1.239,1.046,1.016,0.854,0.932,0.804,0.854,1.01,0.884,1.143,1.26,1.333,1.01,0.995,0.862,0.965,1.049,0.908,1.082,0.996,1.038,1.033,0.974 +XM_353072,0.937,0.973,1.144,1.07,1.028,1.036,1.039,1.032,0.923,0.956,1.209,0.99,1.034,1.257,1.069,1.169,0.95,0.91,0.944,1.15,1.164,0.927,1.076,1.023,0.888,1.275,1.01,1.0,1.429,0.859,0.958,1.071,0.981,0.908,1.054,0.996,0.944,0.923,0.983,0.872,0.894,1.082,1.08,1.075,1.163,1.181,0.851,0.862,0.951,0.896,1.142,1.071,1.003,0.897 +XM_353082,1.027,0.861,1.139,1.06,1.012,1.07,0.975,0.838,0.992,1.113,1.013,0.955,0.98,0.996,0.966,1.171,0.954,1.022,1.048,1.184,1.181,1.002,0.98,1.004,1.066,1.055,1.109,1.046,1.275,0.965,0.982,1.027,0.916,0.974,1.071,1.066,0.962,0.939,1.072,1.154,0.866,0.993,1.233,0.886,1.14,1.069,0.903,0.953,0.998,0.841,1.007,0.919,0.979,1.046 +XM_353083,0.994,0.958,0.993,1.043,1.093,1.008,1.058,0.97,0.971,1.066,1.092,1.076,1.045,0.869,1.0,1.0,0.982,1.029,1.085,0.938,1.046,1.099,1.113,0.953,1.065,1.08,0.905,0.982,1.488,0.972,0.997,1.032,1.185,0.893,1.034,0.817,1.129,0.914,0.964,0.901,1.069,1.047,1.109,0.897,0.996,1.202,1.083,1.025,0.984,1.027,0.949,0.854,1.054,0.892 +XM_353085,0.952,1.096,0.862,0.969,0.867,0.947,1.029,0.986,0.887,0.983,0.92,1.001,0.992,0.935,1.172,1.155,0.982,0.957,1.186,1.145,1.195,0.934,1.048,0.983,1.141,0.99,0.98,1.029,1.056,0.999,1.066,0.999,1.055,1.255,1.125,1.023,1.01,0.944,0.931,0.97,1.016,0.905,1.006,0.949,0.994,1.123,1.065,0.991,1.023,0.95,1.061,1.007,0.933,0.855 +XM_353087,0.988,1.097,0.97,0.839,1.177,0.894,0.785,1.196,1.043,0.927,1.049,1.011,1.098,0.708,1.059,1.005,1.044,0.944,1.013,1.143,1.155,0.991,1.139,1.128,1.088,0.872,1.043,1.05,0.824,0.908,1.064,0.884,1.2,1.132,1.327,0.857,0.853,1.007,1.054,0.883,1.129,1.225,1.275,0.889,0.976,0.967,1.012,0.806,0.746,0.963,1.038,0.929,1.003,1.203 +XM_353093,1.203,0.752,1.025,1.018,0.934,0.974,1.085,1.059,0.915,1.056,1.108,0.897,0.94,0.971,0.99,1.065,0.977,1.086,1.186,1.001,0.954,0.883,0.946,0.907,1.09,0.861,1.021,1.034,1.007,0.943,0.881,1.044,0.94,0.944,0.957,0.972,0.955,1.014,1.133,0.983,1.008,1.068,1.076,1.016,0.945,0.98,0.996,0.982,0.921,0.984,0.949,1.132,0.838,0.839 +XM_353096,1.053,1.18,0.974,0.959,0.955,0.98,1.108,0.861,0.906,0.944,0.941,1.045,0.972,1.054,1.045,0.952,0.926,1.066,0.935,1.014,1.132,0.892,1.012,0.773,1.056,0.945,1.019,1.071,1.013,0.954,0.969,1.097,1.131,0.98,0.984,1.02,1.026,0.994,1.079,0.927,1.059,0.973,1.074,1.064,1.107,0.913,0.917,1.01,1.151,0.939,0.982,0.976,1.022,0.883 +XM_353103,1.035,0.92,1.023,0.882,0.944,1.009,0.732,1.282,0.92,1.274,0.885,0.92,0.963,0.772,0.925,0.874,0.949,0.885,1.142,1.003,1.067,1.106,1.045,1.125,1.0,0.997,1.093,1.068,0.833,1.022,0.858,0.872,1.071,1.092,0.936,1.215,0.991,0.944,1.088,0.987,0.874,0.871,1.041,0.914,0.972,0.835,1.118,1.115,0.916,1.043,0.987,1.011,1.141,1.091 +XM_353104,2.1,1.002,1.24,1.075,1.727,0.794,0.828,1.913,2.905,0.976,0.722,1.724,1.471,1.175,2.201,1.163,1.08,1.047,1.226,0.961,1.469,1.364,0.771,1.18,0.855,1.765,0.958,2.454,0.747,0.754,1.665,1.023,1.254,0.911,6.739,0.812,0.799,2.454,0.935,1.086,1.617,0.93,0.886,1.001,1.106,0.822,1.191,2.554,0.895,1.263,0.81,0.986,1.276,0.833 +XM_353109,0.936,0.884,0.933,1.198,1.085,0.773,0.983,1.009,0.942,0.838,1.016,1.033,0.99,1.104,0.999,0.929,0.971,1.044,1.129,0.958,1.035,0.89,1.086,0.938,0.95,0.916,0.839,1.084,0.638,1.209,1.091,1.19,1.796,1.039,1.07,0.946,0.972,1.013,1.037,1.052,0.836,0.921,1.145,0.919,0.899,1.072,0.751,0.95,0.934,0.813,0.966,1.119,1.014,0.997 +XM_353111,1.018,1.035,0.979,0.837,1.051,1.083,0.978,0.846,0.956,0.915,0.91,0.906,0.975,1.192,1.057,0.983,0.983,1.106,1.093,0.934,0.982,0.986,0.954,1.019,0.987,0.953,0.948,0.991,0.878,1.051,1.023,0.962,0.908,1.04,0.986,0.977,1.085,1.077,0.882,1.05,1.016,0.994,0.787,0.944,1.137,1.078,1.029,0.966,0.884,0.976,1.082,0.806,0.884,0.884 +XM_353113,0.89,1.125,1.38,0.893,0.913,1.004,0.943,1.16,1.139,1.201,1.047,0.838,0.976,0.942,0.867,1.003,0.976,1.231,0.872,1.072,1.262,0.871,1.163,1.303,0.868,0.732,0.98,1.13,0.994,1.004,1.213,0.974,0.918,0.859,1.103,0.903,1.0,0.985,0.892,1.012,0.805,1.416,0.998,0.904,0.99,1.245,1.016,1.057,0.94,1.011,0.976,0.889,0.908,1.035 +XM_353115,0.954,1.042,0.946,1.036,0.895,1.022,0.901,1.012,0.947,1.006,1.056,0.957,1.096,0.682,1.071,0.942,1.075,0.97,0.959,1.098,1.151,1.037,0.972,1.003,0.986,1.051,0.968,0.939,1.256,1.067,1.03,0.953,0.9,0.916,1.086,0.948,1.035,0.947,0.96,0.965,1.071,1.064,0.825,1.021,1.028,0.96,0.964,0.812,0.962,0.918,1.04,1.038,0.974,1.066 +XM_353123,0.96,0.989,0.994,1.113,0.975,1.136,1.236,0.814,1.036,0.991,1.059,1.077,1.169,1.046,0.846,1.031,1.016,0.896,1.057,1.071,0.966,0.943,1.097,1.01,1.173,1.047,1.015,1.09,0.833,1.021,1.062,0.941,0.987,0.993,1.09,1.021,0.954,1.034,0.939,0.993,0.922,1.014,0.889,0.946,1.121,1.104,0.9,0.891,1.017,1.019,0.975,0.964,1.114,0.931 +XM_353130,1.023,0.993,0.979,1.235,0.81,1.16,1.03,0.995,1.005,0.86,1.296,0.931,0.94,0.954,1.184,2.231,0.866,0.991,0.989,1.115,1.046,0.998,0.986,0.914,0.945,0.817,0.955,0.957,0.923,1.147,0.93,1.155,0.904,1.219,0.956,1.143,1.274,1.015,0.979,1.052,0.949,0.997,1.25,0.877,0.852,1.265,0.926,0.937,1.469,1.064,1.228,0.989,1.115,0.948 +XM_353131,1.09,0.791,1.035,0.924,1.004,0.962,0.786,1.031,1.505,1.088,0.921,0.848,0.933,1.318,1.053,1.037,1.125,0.92,1.248,0.86,0.916,0.888,0.879,1.055,0.774,1.117,1.571,1.059,0.864,0.81,1.3,0.958,1.328,1.087,1.832,0.908,0.788,0.985,1.047,1.182,1.102,0.969,0.786,0.853,1.044,0.834,0.84,0.913,0.788,1.132,0.879,0.8,1.218,1.18 +XM_353136,0.997,0.897,0.996,1.273,1.025,1.032,1.102,0.791,1.015,1.12,1.018,1.067,0.936,1.126,0.871,1.001,1.159,1.005,0.995,1.063,0.946,0.883,0.977,1.026,1.068,1.064,0.846,1.032,1.234,1.133,1.087,0.971,1.078,1.016,1.072,0.93,1.007,0.96,1.041,1.124,0.893,0.87,1.059,1.112,0.977,1.056,0.945,0.954,0.824,1.051,0.984,0.998,0.922,1.044 +XM_353145,1.047,1.007,0.943,1.139,0.969,0.978,0.809,1.001,0.897,1.049,0.995,1.007,1.129,0.927,0.961,0.883,1.041,0.9,1.036,1.043,1.102,0.978,0.912,1.044,1.113,1.062,0.934,0.925,0.676,1.092,1.112,0.974,0.962,1.004,0.892,0.905,1.038,1.105,1.089,0.937,0.955,0.996,1.089,0.997,1.059,0.937,1.074,0.936,0.966,0.899,0.986,0.952,1.049,1.061 +XM_353153,0.993,1.011,0.945,1.079,1.194,0.964,0.904,0.976,0.84,1.009,1.201,0.909,0.938,0.813,0.902,0.927,0.953,1.061,0.913,0.938,1.008,1.045,0.985,1.005,1.072,1.031,1.063,0.948,0.949,0.939,0.959,1.049,1.041,1.047,0.921,0.909,0.982,1.134,1.12,1.134,1.08,0.886,1.099,1.1,1.032,0.953,0.962,1.028,1.005,0.916,0.936,1.007,0.924,1.073 +XM_353164,1.065,0.892,1.034,0.976,1.018,0.91,1.004,1.001,0.859,0.963,0.937,1.081,1.028,1.263,0.877,0.973,1.17,0.958,0.963,1.074,0.998,0.987,0.877,1.018,1.005,1.115,1.086,1.13,1.59,0.871,0.954,0.956,1.11,0.891,1.109,0.977,0.999,0.865,1.047,0.899,0.895,0.932,0.904,1.335,1.039,1.223,0.94,0.997,1.09,1.003,0.989,1.121,1.015,1.067 +XM_353165,1.041,0.833,0.934,1.018,0.915,1.058,1.005,0.991,0.987,1.168,1.053,0.952,1.007,1.014,0.843,1.068,0.998,0.866,0.92,0.924,1.054,0.978,1.025,0.903,0.934,1.179,1.021,1.001,0.998,0.967,1.031,1.14,0.946,1.056,0.985,1.125,1.003,0.823,0.762,0.991,1.111,0.893,0.887,0.947,0.983,0.933,1.064,0.983,0.926,1.033,0.964,0.994,1.062,1.01 +XM_353166,0.81,1.065,0.902,1.78,0.737,1.813,1.679,0.55,0.714,0.818,1.111,0.599,0.579,0.598,0.902,2.042,0.731,1.292,0.817,1.281,0.602,0.723,1.896,0.79,1.016,0.895,0.846,0.786,1.044,2.536,0.732,1.127,1.068,2.319,0.481,2.04,1.707,0.745,1.945,0.707,0.726,1.424,1.431,1.36,0.768,1.188,0.599,0.879,1.352,0.704,1.486,1.321,0.82,1.284 +XM_353172,1.066,0.983,1.04,0.848,0.858,0.901,0.905,0.99,1.011,1.031,0.945,0.883,1.113,0.979,0.652,1.011,0.977,1.044,1.267,0.749,1.198,0.965,0.991,0.885,1.033,1.186,1.414,0.861,0.795,1.006,1.087,1.037,0.99,1.187,0.902,1.01,0.949,1.227,1.383,1.012,0.904,1.015,0.809,1.712,0.968,1.02,0.842,0.979,0.858,1.136,0.984,0.915,1.152,1.006 +XM_353174,1.0,1.022,0.968,0.943,0.925,1.001,0.755,1.14,0.96,1.055,0.913,0.971,0.89,1.03,1.231,0.864,1.085,1.011,0.98,0.897,1.035,1.014,0.887,1.039,0.964,1.051,1.055,0.989,0.834,1.113,1.225,1.043,0.763,1.034,0.928,0.942,0.921,0.908,0.96,1.03,0.902,1.022,1.245,0.991,0.939,0.916,1.072,1.053,0.957,0.932,0.969,0.876,1.145,1.042 +XM_353180,1.052,0.988,0.891,1.079,1.085,0.954,0.812,0.778,1.096,1.041,0.748,1.098,1.07,0.933,0.994,1.144,1.005,0.967,0.806,0.915,1.04,0.911,0.962,1.075,0.917,0.807,1.341,1.052,0.715,0.902,1.267,1.125,1.127,1.108,1.425,0.816,0.714,1.129,0.999,0.982,1.259,1.099,0.86,0.975,1.008,0.978,0.978,1.041,0.998,1.26,0.944,0.885,1.155,1.001 +XM_353182,0.872,1.151,0.866,0.808,0.872,1.083,0.924,0.815,0.874,0.977,0.957,0.909,0.853,0.946,0.963,0.977,0.729,0.959,1.007,0.973,0.896,0.92,1.037,0.799,1.104,0.788,0.995,0.976,0.891,1.301,0.95,2.025,1.16,1.541,0.763,1.224,1.099,0.968,1.036,2.182,1.044,1.282,0.818,1.186,0.939,0.978,1.065,0.861,0.806,0.771,1.319,1.479,1.035,1.161 +XM_353188,0.945,0.954,1.135,1.066,1.013,1.046,0.924,0.956,1.057,1.018,0.935,0.951,0.937,0.993,0.909,0.911,1.074,0.989,0.926,1.042,1.037,1.011,1.097,1.0,0.953,1.087,1.121,1.02,1.088,1.065,0.915,1.056,1.18,1.008,1.23,1.08,0.957,0.854,1.081,0.948,0.949,0.906,1.113,0.966,1.0,0.974,1.037,1.033,0.939,1.222,0.994,0.955,1.188,1.122 +XM_353192,0.911,2.296,1.221,0.962,0.9,1.136,1.147,1.017,0.979,0.922,1.035,0.897,0.862,0.978,0.954,0.918,0.92,1.166,1.039,1.24,0.817,0.869,0.868,0.879,1.991,0.764,1.013,0.972,1.091,1.354,1.04,2.291,1.124,1.836,0.845,0.804,1.157,0.991,1.001,2.779,0.926,2.145,0.722,0.961,0.948,0.957,1.06,0.877,0.871,0.76,0.927,1.066,0.934,1.808 +XM_353193,0.991,1.058,0.899,1.031,0.914,0.883,1.005,1.001,0.94,0.941,0.972,0.951,0.915,1.061,1.044,1.011,0.99,1.068,1.124,1.051,0.988,0.889,1.02,1.075,0.999,1.003,0.997,0.968,0.879,1.03,1.092,1.037,1.024,1.018,1.045,0.886,1.017,0.832,0.962,0.962,1.077,0.856,0.831,1.117,0.894,0.901,0.921,0.965,1.057,0.838,1.161,0.854,1.295,0.951 +XM_353200,1.016,1.105,0.857,1.105,0.904,1.003,0.897,1.063,0.938,0.976,1.213,1.016,1.033,0.954,0.936,1.022,0.986,0.975,1.116,1.12,1.253,0.983,1.155,1.012,1.044,0.947,1.048,1.114,1.047,1.063,0.936,0.951,1.019,0.843,1.007,0.896,1.08,1.125,0.955,1.097,0.96,0.875,0.883,0.942,0.932,0.851,1.022,0.943,0.959,1.02,1.069,0.918,1.05,0.945 +XM_353207,1.061,0.901,0.967,0.914,1.065,1.164,1.133,1.079,1.218,0.985,1.123,1.098,1.079,1.089,0.81,1.175,0.988,1.088,0.903,1.022,0.954,1.016,1.008,0.996,1.009,0.941,0.977,0.795,1.164,0.902,1.046,1.065,1.015,0.893,1.009,1.193,0.906,1.0,1.01,1.04,0.923,0.9,1.071,0.897,1.02,1.004,1.081,0.95,1.068,1.061,1.002,0.911,1.061,0.935 +XM_353211,1.099,1.092,0.972,0.894,0.995,1.184,0.869,0.97,1.017,0.973,1.058,0.928,0.935,0.869,1.046,1.025,1.088,1.115,0.949,0.965,1.026,0.945,1.057,1.024,1.02,0.928,0.898,1.018,1.234,0.969,0.943,1.015,0.813,0.951,1.015,0.924,1.074,0.941,1.0,1.089,1.0,0.961,0.838,0.937,0.913,1.025,0.998,0.899,0.976,1.062,1.018,0.926,1.052,1.015 +XM_353212,0.965,1.083,1.121,1.02,1.025,0.958,0.952,0.961,1.082,0.953,0.999,1.041,1.023,0.977,1.09,1.158,0.961,0.978,1.022,1.112,1.027,0.943,1.129,1.107,1.064,0.994,1.107,0.97,1.096,0.933,1.02,0.953,1.111,0.939,1.056,1.026,1.047,0.92,1.012,1.013,0.965,1.016,1.174,1.056,1.07,0.986,1.03,0.994,1.033,1.071,1.033,0.864,1.192,1.008 +XM_353231,1.077,0.938,0.922,1.073,0.882,1.045,1.128,0.97,1.184,0.975,1.21,0.992,1.136,0.891,0.951,0.92,1.089,1.121,1.036,0.942,1.04,0.81,1.045,0.888,0.916,0.96,0.957,1.032,0.651,1.029,1.109,0.912,1.148,0.938,0.945,1.058,1.023,0.919,1.005,0.888,0.915,1.001,1.059,1.145,1.08,1.038,0.92,0.894,1.166,1.045,0.965,1.03,1.05,0.98 +XM_353241,1.226,1.158,0.756,0.683,0.758,1.376,0.665,0.59,1.124,1.9,0.949,1.645,1.147,0.75,0.854,0.745,1.198,0.721,1.89,0.975,1.516,0.888,1.025,2.059,0.649,0.87,0.756,0.783,0.44,1.675,0.746,1.179,1.873,1.546,0.569,1.439,0.677,1.608,1.044,1.35,1.475,1.459,1.094,1.182,0.777,0.662,0.803,0.726,1.251,0.735,0.695,0.81,1.597,4.344 +XM_353252,0.913,0.886,1.152,0.878,0.915,0.873,0.991,0.954,0.947,1.082,0.79,1.115,0.984,0.992,1.055,1.065,0.999,1.008,1.026,0.969,0.981,0.75,0.972,0.894,0.962,1.001,1.07,1.011,0.75,1.084,1.031,1.065,0.954,1.098,1.001,0.979,0.949,1.029,1.01,0.955,1.044,0.912,0.964,1.035,1.08,0.942,0.995,1.102,0.855,0.853,1.05,1.023,0.869,1.06 +XM_353254,0.965,1.056,0.988,0.91,1.113,0.939,1.002,1.013,1.107,1.031,0.873,1.123,0.988,0.99,1.231,1.065,1.017,1.064,0.937,0.872,0.85,0.953,0.855,1.031,0.914,1.078,1.067,0.959,0.903,0.978,0.921,1.142,0.824,0.862,1.046,1.033,0.947,0.992,1.002,1.052,0.93,0.866,1.067,0.892,1.129,0.967,1.001,1.075,0.918,1.115,0.998,0.99,1.055,1.041 +XM_353255,1.075,0.889,0.945,0.963,1.14,1.069,1.055,1.004,0.985,0.943,0.92,0.975,0.878,0.977,1.097,1.074,1.064,1.028,1.019,0.977,1.074,1.047,1.0,0.954,1.072,0.958,1.075,1.085,0.852,0.95,1.065,0.772,0.983,1.025,1.006,0.926,1.066,1.024,1.097,1.009,1.0,0.939,0.881,1.117,0.988,0.972,1.05,0.98,0.893,1.008,1.03,1.05,0.92,1.004 +XM_353256,0.872,1.068,1.148,0.861,1.137,1.037,0.863,0.959,1.104,1.021,1.084,1.082,1.007,1.005,0.939,0.969,1.056,0.935,1.042,0.885,0.982,0.817,0.942,0.984,1.068,1.105,1.1,1.063,0.701,0.934,1.121,1.047,0.896,1.003,0.991,0.983,0.938,1.04,0.97,1.09,1.079,1.067,0.911,1.041,1.041,1.002,0.945,0.904,0.992,1.067,0.883,0.918,1.239,0.94 +XM_353258,0.901,1.044,0.951,1.083,1.093,0.89,0.917,1.022,1.08,1.014,0.807,0.91,1.094,1.092,1.202,1.089,1.021,0.973,0.885,0.993,1.065,0.923,0.946,1.046,1.004,0.921,1.019,0.976,1.268,0.984,1.002,0.987,1.049,0.839,1.054,1.008,0.984,0.964,1.026,0.97,1.031,0.936,1.084,0.951,0.991,0.958,0.99,0.967,1.037,1.072,1.03,1.065,1.057,0.979 +XM_353264,0.923,1.038,1.035,0.924,1.088,0.909,0.902,1.176,0.885,0.983,1.11,0.966,0.892,1.116,0.985,0.871,1.066,1.016,1.03,0.995,1.043,1.028,0.976,1.089,1.0,1.017,0.896,1.003,1.125,0.93,0.866,0.976,0.938,1.089,0.978,0.926,0.892,1.002,0.976,1.012,1.028,1.118,0.893,0.956,1.207,0.987,1.072,0.985,0.916,1.134,0.945,1.127,1.055,0.958 +XM_353276,0.981,0.967,1.05,0.768,0.953,0.982,1.0,1.074,0.961,1.059,1.212,1.092,1.095,0.889,0.752,0.991,1.062,0.832,0.949,1.05,0.958,1.062,0.935,0.994,1.065,0.98,1.056,0.974,0.743,1.087,1.081,1.148,1.119,1.106,1.002,0.964,1.016,1.047,1.077,1.019,0.919,1.101,1.185,1.024,0.976,0.988,1.044,1.063,1.08,1.014,0.994,1.075,0.989,0.956 +XM_353278,1.082,1.013,1.083,1.04,0.891,1.067,1.297,0.893,1.03,1.117,1.044,0.908,1.005,1.054,1.032,0.92,1.039,1.05,0.997,0.948,0.973,0.902,1.018,0.991,1.297,0.937,1.013,1.125,0.893,0.938,0.955,0.939,1.067,1.129,1.003,1.103,0.895,1.069,0.927,0.897,0.913,1.131,0.979,0.982,1.069,0.876,0.854,1.061,0.967,0.929,1.087,0.909,0.963,0.957 +XM_353279,0.977,1.047,0.952,1.035,1.001,1.002,0.948,1.149,0.938,1.009,1.009,1.013,0.917,1.015,0.915,1.096,0.971,0.981,0.906,0.964,1.031,0.955,0.927,1.064,0.95,0.935,1.05,0.907,0.675,0.975,1.11,0.95,0.997,0.993,1.05,0.897,1.12,1.048,0.958,1.056,0.917,0.995,0.968,0.917,0.922,1.105,1.008,1.024,1.068,0.958,1.109,0.864,1.053,0.912 +XM_353281,0.927,1.112,1.16,0.919,0.948,1.079,0.989,0.95,0.982,0.865,1.148,0.942,1.034,0.997,1.001,1.012,1.084,0.948,1.036,0.875,0.908,0.973,1.025,0.994,1.036,0.958,1.1,1.097,1.051,1.093,0.981,0.893,1.128,0.949,1.159,1.112,0.956,1.016,1.166,0.948,1.014,0.98,0.906,0.952,1.014,0.933,1.006,1.096,0.962,0.972,0.954,1.151,1.062,1.038 +XM_353282,0.981,1.075,1.106,0.923,0.943,0.91,1.146,1.076,1.109,0.863,0.967,0.89,0.932,0.881,1.265,1.003,0.916,1.072,1.034,1.014,0.891,0.954,1.034,1.056,0.967,0.901,1.008,0.931,1.449,0.963,0.871,0.966,1.115,1.065,0.859,0.931,0.984,1.011,0.894,0.963,0.985,0.937,0.983,0.964,1.013,0.923,1.01,1.012,0.892,1.212,1.072,0.968,0.892,0.931 +XM_353286,0.936,1.025,1.065,1.102,1.056,1.062,0.975,0.931,0.968,0.982,0.922,0.983,0.895,1.202,1.027,0.957,0.901,0.927,1.003,0.871,1.009,1.064,1.04,1.004,0.919,0.994,1.053,1.001,0.788,1.117,0.891,1.144,0.955,1.069,1.023,0.87,0.935,1.152,1.003,1.187,1.065,0.951,1.16,0.997,1.022,0.869,0.938,0.851,1.046,0.841,0.995,1.088,0.774,0.868 +XM_353289,1.025,1.037,1.174,0.939,1.028,0.912,1.194,0.848,1.063,0.981,1.039,1.019,0.904,0.953,1.118,0.976,0.924,0.928,1.064,0.943,0.996,0.92,1.016,1.004,0.921,0.973,1.108,0.886,0.944,0.99,0.964,0.964,1.072,0.999,1.03,1.066,0.986,1.052,1.047,1.11,1.024,0.944,0.999,1.006,1.087,0.982,1.028,0.9,0.953,1.082,1.001,1.042,1.054,1.068 +XM_353291,1.196,1.072,1.071,0.894,1.027,0.95,1.184,0.914,0.962,0.976,1.012,0.874,1.012,1.116,0.878,0.897,1.012,0.926,0.992,0.903,1.047,0.875,0.979,1.138,0.992,0.983,0.884,1.096,0.838,1.092,1.047,1.096,1.165,0.984,0.979,0.918,1.051,1.045,1.059,1.03,0.983,1.123,1.191,0.848,1.17,0.946,1.101,1.043,0.983,0.982,0.979,0.989,1.004,0.855 +XM_353292,1.0,1.014,0.979,1.022,1.046,1.042,0.797,0.941,0.981,1.091,0.883,1.125,0.912,1.013,0.986,1.122,1.042,0.923,1.009,1.161,0.844,1.049,1.145,1.05,1.061,0.926,0.974,1.056,0.8,1.069,1.01,1.006,1.002,0.959,0.918,0.951,0.959,1.068,0.899,0.94,0.943,1.034,0.784,0.952,1.007,1.045,0.947,1.174,1.094,0.999,0.966,1.011,1.1,0.996 +XM_353294,0.975,1.053,1.096,0.885,1.034,0.882,0.82,1.236,0.948,0.979,1.223,1.035,1.011,0.957,0.956,0.971,1.05,1.066,1.068,1.036,1.08,0.978,0.939,0.986,0.895,0.961,0.948,1.028,0.907,1.082,1.037,1.065,0.941,1.019,1.039,1.074,1.018,1.094,0.997,0.959,1.078,0.925,0.877,0.985,1.074,1.145,1.071,1.012,1.04,1.109,0.944,1.002,1.036,0.873 +XM_353297,0.937,1.139,0.928,1.013,0.891,1.099,0.936,1.001,1.056,1.218,0.86,1.008,0.973,1.131,0.939,0.963,0.993,1.116,0.93,0.999,1.261,1.114,0.901,0.92,0.962,1.178,1.125,0.876,0.749,0.897,0.956,1.023,0.995,1.067,1.062,1.086,1.061,0.929,1.072,0.932,1.049,1.011,1.077,0.915,1.008,0.962,1.025,0.976,1.154,0.931,0.959,0.871,0.922,1.044 +XM_353303,0.861,1.282,0.985,1.189,0.9,1.149,1.163,0.816,0.87,0.926,0.951,1.015,0.987,0.959,0.826,0.966,0.983,0.985,0.951,1.126,1.126,0.889,1.306,1.069,1.194,0.93,0.981,0.894,0.936,1.2,1.084,1.166,1.906,1.517,0.938,0.895,1.026,0.95,1.023,1.052,0.925,1.001,0.961,1.429,1.065,0.953,0.767,0.912,0.857,0.939,0.909,0.938,1.145,1.281 +XM_353305,1.181,0.902,1.031,0.958,0.904,0.93,0.973,0.846,1.135,0.831,0.923,1.006,0.922,1.11,0.976,1.151,1.023,0.996,0.916,0.995,1.026,0.91,1.043,0.934,1.023,0.914,0.984,0.985,1.133,0.812,1.042,0.853,1.108,0.851,1.02,1.009,1.044,0.933,1.0,0.933,1.017,1.133,1.057,0.99,1.134,1.038,1.023,0.932,0.963,0.946,1.027,0.996,1.182,0.982 +XM_353306,0.972,1.034,1.014,0.996,0.878,0.972,1.253,1.186,0.854,0.908,0.937,1.02,1.148,1.035,0.878,1.144,0.874,0.854,0.95,0.965,1.182,1.021,1.19,1.079,0.822,0.996,0.951,1.074,1.223,0.96,0.956,1.056,0.989,1.146,0.982,0.986,1.04,0.913,0.879,0.885,1.13,0.888,1.141,1.061,1.124,0.94,0.824,1.066,1.004,1.19,1.043,0.883,0.932,1.214 +XM_353310,1.078,1.167,1.072,1.196,0.975,0.945,0.854,1.011,0.965,0.995,0.976,0.963,0.936,1.054,0.904,0.913,0.946,1.077,1.159,1.15,0.943,0.957,1.053,1.063,1.003,1.088,1.043,0.977,0.79,0.986,1.11,1.073,1.147,0.894,1.078,0.943,0.882,1.116,0.948,1.105,1.145,0.955,0.965,1.114,1.077,1.08,0.864,1.003,0.988,1.087,0.996,1.131,0.96,0.922 +XM_353316,0.904,0.989,1.045,1.119,0.982,0.881,1.131,0.93,1.076,1.037,1.199,1.0,1.055,0.873,0.995,0.878,1.156,0.906,1.0,0.931,0.987,0.856,0.931,0.875,1.059,0.917,1.093,1.147,0.923,1.162,0.946,1.071,0.936,0.906,1.033,0.963,0.945,1.12,1.077,1.022,1.098,0.837,0.797,1.028,0.941,0.979,1.013,0.946,1.051,1.069,0.867,1.079,0.921,0.983 +XM_353319,1.036,1.016,0.971,1.113,0.989,1.111,0.835,1.072,0.957,0.811,1.006,1.225,0.825,1.139,0.946,0.807,0.974,1.12,1.092,0.98,1.109,1.02,0.985,0.97,1.097,1.058,0.989,0.949,1.286,0.94,1.022,0.949,0.97,1.055,1.027,0.862,1.017,1.05,0.975,0.934,0.929,0.806,0.938,0.979,0.992,1.023,1.069,1.024,0.939,1.075,0.979,0.938,0.978,1.017 +XM_353325,0.959,0.996,1.036,1.034,1.086,1.186,0.825,0.903,1.163,0.712,0.949,0.886,1.17,0.715,1.052,1.117,0.89,0.982,1.045,1.007,0.895,1.003,1.027,1.111,1.022,1.027,1.035,0.838,0.724,1.094,0.898,1.112,1.064,0.822,1.075,0.902,0.923,0.947,0.94,1.175,0.803,0.947,0.955,0.878,0.891,0.952,1.066,0.932,1.124,1.058,0.995,1.027,0.787,1.203 +XM_353328,0.973,0.85,1.056,0.97,1.079,0.933,1.13,1.069,0.837,0.924,1.025,1.05,0.864,1.091,0.906,0.926,1.008,1.146,0.868,0.923,0.911,0.827,0.925,1.013,0.927,0.96,0.917,0.958,1.151,1.036,0.919,0.942,1.038,1.028,0.995,1.0,1.079,0.876,0.996,0.917,0.993,1.015,1.02,1.047,0.999,1.048,1.066,1.197,1.086,1.051,1.153,0.906,0.919,1.012 +XM_353329,1.036,1.024,1.014,1.004,1.001,0.954,0.936,1.454,0.891,1.014,1.161,0.924,1.098,0.781,1.619,1.039,0.984,1.192,0.924,0.865,0.939,1.152,1.106,0.962,1.069,1.077,1.113,1.245,0.834,0.963,0.809,0.758,0.921,0.843,1.011,0.93,1.092,0.98,0.793,0.774,1.112,1.053,1.086,0.996,0.896,1.064,1.012,1.01,1.011,0.954,1.028,0.926,0.918,1.056 +XM_353332,1.068,0.908,0.939,0.994,1.068,0.987,1.247,1.067,1.166,0.909,1.161,0.982,0.865,1.071,1.103,0.901,0.947,0.968,1.213,1.051,1.058,0.95,1.044,0.942,1.006,0.922,1.014,1.001,1.401,1.13,1.121,1.0,1.055,1.034,0.915,1.084,1.041,1.164,1.151,0.974,0.997,0.954,1.229,0.939,1.094,1.165,0.997,1.057,1.125,0.864,1.056,0.938,1.007,0.9 +XM_353345,0.252,2.579,0.756,0.459,0.519,0.904,0.872,0.177,0.464,0.682,1.143,0.749,0.33,0.201,0.884,6.46,0.775,0.571,0.747,2.633,0.267,0.245,2.697,0.737,1.371,0.248,1.692,0.438,0.276,1.209,0.274,4.466,4.062,1.238,0.229,5.686,1.412,0.294,1.617,9.083,0.607,0.937,0.779,3.964,0.898,6.294,6.934,0.27,3.524,0.553,1.694,3.159,1.061,3.313 +XM_353347,1.049,0.954,1.057,1.013,0.937,1.055,1.007,0.908,1.032,0.951,1.011,0.865,0.967,1.157,1.13,0.981,0.947,1.126,0.984,1.043,1.156,1.124,0.957,1.117,1.1,0.842,1.172,1.009,0.966,1.082,1.27,1.002,0.977,1.039,1.015,0.928,0.934,1.129,1.121,0.918,0.98,1.006,0.905,1.01,1.057,1.086,1.05,0.963,0.927,1.092,1.082,0.929,1.119,0.982 +XM_353349,0.901,0.944,0.968,1.106,1.027,1.198,0.842,1.133,1.055,0.922,1.053,1.009,1.04,1.002,0.937,1.037,0.889,0.998,1.103,1.036,0.927,1.127,1.063,1.032,1.021,1.038,1.052,0.938,1.25,1.062,1.008,0.922,0.913,0.935,1.079,0.934,1.035,1.023,1.024,1.141,1.073,0.995,0.956,1.14,0.905,1.023,1.004,0.953,1.122,1.009,1.012,1.006,1.03,0.962 +XM_353350,1.023,1.11,1.013,1.023,1.14,1.142,0.847,1.35,1.166,0.89,0.948,0.991,1.0,1.258,1.566,1.039,0.941,0.979,1.05,0.89,0.888,1.021,1.173,1.009,0.885,1.009,0.965,0.906,1.454,0.95,1.13,0.971,1.017,1.121,0.973,0.94,0.983,1.215,1.013,1.038,1.08,0.974,0.821,0.934,0.886,1.039,0.967,0.944,1.12,0.97,0.968,1.049,1.093,1.073 +XM_353358,1.073,0.931,1.047,0.987,0.834,1.0,0.882,0.872,1.005,0.975,0.871,1.049,0.884,1.088,1.058,1.049,0.926,0.958,0.862,0.975,0.932,0.96,1.041,0.932,1.099,1.002,1.055,1.073,1.072,0.93,0.884,0.913,0.858,1.048,1.148,0.947,1.101,0.901,1.114,0.885,0.921,0.931,0.942,1.006,1.032,1.025,1.202,1.085,1.028,1.073,1.012,0.888,0.852,1.016 +XM_353363,1.141,1.009,1.081,0.909,1.02,0.899,0.945,0.866,0.976,1.198,0.806,1.004,1.166,0.805,1.155,1.061,0.96,1.038,1.061,0.943,0.856,0.999,0.918,1.032,1.131,1.013,0.918,0.996,1.245,0.969,1.041,0.932,1.055,1.041,0.873,1.087,0.851,1.126,0.904,0.974,0.986,0.961,0.976,0.852,0.872,1.044,0.886,0.93,1.055,0.851,1.058,0.957,1.166,1.077 +XM_353364,1.013,0.951,0.908,1.254,1.122,0.817,1.144,1.136,0.915,0.988,0.909,1.018,0.978,1.039,1.65,0.952,1.018,1.001,0.889,0.891,1.053,1.145,0.915,1.056,1.135,0.854,1.007,0.881,1.207,0.934,0.856,0.978,1.161,1.004,0.977,1.111,0.987,1.002,0.865,0.918,1.075,0.954,0.988,1.043,0.966,1.075,0.989,0.971,0.952,0.919,1.045,1.121,1.108,1.037 +XM_353367,1.095,1.017,1.101,0.915,0.833,0.953,1.048,1.136,0.907,0.96,1.059,1.138,1.057,1.299,0.762,0.995,0.991,0.892,0.737,0.998,1.031,1.264,0.921,1.094,1.123,1.001,1.039,1.16,0.837,0.985,1.279,0.748,0.958,0.986,0.978,1.037,0.931,0.955,0.857,1.04,0.935,0.823,0.993,0.905,1.132,0.906,1.186,0.933,0.938,0.914,1.049,0.989,1.075,1.044 +XM_353369,0.939,1.073,0.969,0.879,0.917,1.037,0.976,1.046,1.078,1.0,1.003,0.955,0.872,1.075,0.919,1.07,1.049,1.227,1.061,0.921,1.001,1.048,0.981,0.92,0.983,0.998,0.939,1.027,0.973,0.965,1.03,0.928,1.124,1.066,0.999,0.996,0.987,0.987,0.982,1.055,1.112,1.0,0.925,0.989,0.867,1.036,1.017,1.0,1.04,1.006,0.934,1.063,1.217,0.94 +XM_353370,0.963,0.666,1.175,1.005,1.032,1.01,1.165,1.008,1.105,0.95,1.117,1.001,1.048,1.184,0.999,1.037,0.863,0.892,0.855,0.943,1.018,1.128,0.902,1.001,1.013,1.109,1.055,1.015,1.176,1.001,1.099,0.989,0.849,0.977,0.937,0.983,1.118,1.279,0.914,0.847,0.919,0.89,0.713,1.158,0.917,1.09,1.167,0.864,1.02,0.931,1.037,1.168,0.908,0.987 +XM_353371,0.914,0.919,1.088,0.909,1.012,0.993,1.009,0.846,0.864,0.943,0.906,0.995,0.974,1.077,0.975,0.968,0.89,0.933,0.838,1.139,0.9,0.891,1.084,1.041,0.936,1.092,1.004,0.849,0.862,1.085,0.977,1.03,1.252,1.124,0.803,1.15,1.01,0.975,0.994,0.937,1.015,1.015,1.437,1.233,0.855,0.954,0.891,0.919,1.003,0.993,1.001,0.987,0.811,1.036 +XM_353375,1.194,0.86,0.888,1.023,1.231,0.952,0.81,0.779,1.707,1.528,0.884,0.913,0.933,0.832,0.863,0.93,1.051,0.844,1.169,1.607,1.047,0.854,1.268,1.153,0.808,1.084,1.084,1.424,0.5,1.128,1.019,0.971,1.126,1.106,0.949,0.83,0.828,0.963,1.027,0.728,1.249,0.813,0.864,1.196,1.015,1.335,1.279,0.842,1.071,1.203,1.122,1.024,1.206,1.041 +XM_353383,1.022,1.027,0.993,0.812,1.014,0.996,1.173,1.109,1.037,0.941,0.966,1.027,1.006,0.963,0.932,0.923,1.014,1.024,0.993,0.878,0.982,1.0,1.066,0.956,1.07,0.993,1.057,0.975,1.308,1.069,1.049,0.988,1.016,1.066,0.833,1.001,1.09,1.068,0.976,0.987,1.008,0.913,1.147,0.977,1.068,0.754,0.891,0.938,1.037,1.003,1.002,0.926,1.02,1.102 +XM_353384,1.041,0.985,1.122,0.928,0.895,1.038,0.855,1.177,0.976,0.905,1.072,1.085,1.017,1.196,0.85,1.108,0.98,1.077,0.91,0.984,1.045,0.941,1.102,0.956,0.982,1.002,1.185,1.025,1.194,1.09,1.091,0.962,0.882,0.927,1.027,1.074,0.959,1.039,1.035,0.946,0.972,0.971,1.426,0.983,0.905,0.871,0.992,0.947,1.069,0.808,1.026,0.918,0.891,0.99 +XM_353387,1.015,1.229,0.944,1.04,0.952,1.023,0.792,1.0,0.96,0.978,1.159,0.841,1.09,0.907,1.038,1.102,1.114,0.907,0.976,0.964,0.763,0.996,0.962,0.973,0.95,1.092,0.85,1.01,0.749,1.014,0.929,1.068,1.547,1.042,1.101,0.964,1.0,0.841,1.079,0.863,1.026,0.954,1.097,1.033,0.991,0.907,0.972,1.018,0.941,1.01,0.953,0.964,0.916,1.035 +XM_353393,0.39,1.493,0.895,0.63,0.634,1.702,0.746,0.656,1.09,0.674,1.778,0.857,0.532,0.547,1.241,2.38,0.731,0.804,0.937,1.382,0.514,0.671,1.348,1.188,0.527,0.512,0.982,0.845,0.41,1.94,0.878,1.475,3.294,2.136,0.205,0.789,1.63,0.88,1.053,0.805,1.197,1.276,0.761,0.961,0.839,1.198,1.041,0.454,1.473,0.404,1.533,1.103,0.771,2.519 +XM_353394,1.078,1.057,0.901,0.964,1.063,1.108,0.934,1.111,1.133,0.968,0.923,1.069,1.027,0.885,0.891,0.806,1.093,1.152,1.102,1.192,0.935,0.96,1.108,1.166,1.088,0.989,0.977,0.798,0.926,1.057,0.953,0.967,1.055,0.991,0.958,1.141,0.917,0.861,1.038,1.031,1.005,0.963,0.979,1.011,0.929,1.056,0.951,0.954,1.068,0.925,1.102,1.199,1.081,1.065 +XM_353396,10.05,0.341,4.16,3.215,8.257,0.416,0.473,5.537,7.882,6.048,0.379,3.158,5.055,3.671,5.129,1.682,7.024,4.103,5.937,0.383,4.153,7.379,0.376,5.861,0.419,13.51,1.454,9.056,0.47,0.398,8.441,0.454,1.715,0.446,29.46,0.366,0.457,10.85,0.497,0.35,5.478,0.358,0.362,0.391,5.964,0.453,2.454,12.54,0.553,5.353,1.305,0.565,4.341,0.507 +XM_353398,0.941,1.007,1.159,1.093,0.924,1.082,1.009,1.079,0.966,0.915,1.036,0.932,0.842,0.888,0.876,1.146,0.852,0.875,0.908,1.068,0.98,0.848,1.206,0.945,1.015,0.956,1.057,0.898,1.019,1.065,0.861,1.247,1.111,1.097,0.825,1.121,0.995,1.081,0.932,1.079,0.999,1.046,1.001,0.859,0.972,0.888,0.892,1.076,1.029,0.873,1.048,1.004,0.983,1.098 +XM_353401,1.103,0.959,0.875,0.931,0.949,0.986,1.326,0.97,0.923,0.874,0.995,0.938,0.932,1.309,0.828,0.932,1.003,0.939,0.973,0.957,1.013,0.935,0.855,1.068,0.953,0.969,0.995,1.134,1.264,1.049,0.943,1.058,1.073,1.041,1.118,1.0,1.13,0.932,1.14,1.076,1.241,0.817,1.203,0.982,1.003,0.911,1.099,1.047,1.044,1.193,0.931,1.03,0.954,1.056 +XM_353402,0.729,1.019,1.126,1.028,0.894,1.162,1.079,0.888,1.045,1.037,1.085,0.925,0.923,0.851,0.72,1.075,0.866,1.033,0.847,0.813,0.863,0.845,0.87,0.986,0.811,0.983,1.106,0.885,0.991,1.015,0.774,0.976,1.363,1.004,0.796,0.87,0.968,0.901,1.184,0.973,0.79,1.047,0.839,1.105,1.085,1.003,1.103,0.841,0.921,1.133,1.079,1.024,1.18,0.946 +XM_353405,1.004,1.011,0.943,1.078,0.941,0.934,0.928,1.033,1.022,1.154,1.081,0.979,1.084,1.067,0.907,0.992,0.846,0.891,1.105,0.972,0.941,1.054,0.984,1.072,0.968,1.085,0.86,0.944,1.543,1.056,1.006,1.01,0.885,1.153,1.077,0.961,1.003,1.002,1.061,1.0,0.978,1.042,1.003,1.096,1.152,1.174,0.958,0.943,0.92,0.92,0.952,0.936,1.284,1.031 +XM_353406,1.478,0.94,1.184,0.845,1.294,0.914,0.633,1.015,1.335,1.103,0.677,1.578,1.116,1.072,0.947,1.005,1.016,1.071,0.982,0.93,0.924,1.087,1.007,1.543,0.862,1.315,1.18,1.417,0.697,0.932,1.311,1.21,0.938,1.011,1.296,1.002,0.852,1.068,0.86,0.822,1.233,0.866,0.838,0.948,1.165,0.767,1.16,1.146,0.842,1.082,0.892,0.945,1.053,0.97 +XM_353407,1.031,1.046,1.1,1.067,0.993,1.117,0.983,1.01,0.956,0.982,1.163,1.153,0.999,0.971,0.667,0.935,0.891,1.071,1.169,0.874,1.099,1.022,0.932,1.111,1.085,0.958,0.918,1.016,1.017,1.022,0.87,0.991,1.208,0.908,0.969,0.957,1.084,0.925,0.863,0.96,1.058,1.045,0.803,0.919,1.098,1.124,1.27,0.967,0.902,1.113,0.899,0.894,1.147,1.0 +XM_353408,1.098,1.102,0.999,0.898,1.057,1.068,0.994,1.029,0.985,1.042,1.087,0.942,0.838,1.06,0.945,1.004,1.004,0.965,0.881,1.022,0.881,0.984,0.984,0.979,0.949,0.844,1.029,1.086,1.134,1.029,1.037,0.92,1.15,0.937,1.016,0.845,1.091,1.068,1.105,1.042,1.034,0.901,1.032,1.011,0.892,1.105,1.044,1.067,0.995,0.93,0.952,1.008,0.954,1.138 +XM_353410,0.977,1.055,0.946,0.885,0.981,1.012,0.969,0.907,0.994,0.852,1.003,1.028,0.938,1.038,0.976,0.902,0.924,0.897,0.875,1.006,0.876,1.018,1.071,1.006,1.005,0.952,0.948,1.056,0.915,0.91,1.037,1.081,1.075,0.962,1.008,0.972,0.92,0.938,1.173,0.917,0.96,0.867,0.852,0.895,1.164,0.878,1.065,1.044,0.936,0.997,1.084,1.051,0.841,1.007 +XM_353411,1.016,0.958,0.931,1.082,1.073,0.972,1.274,0.856,0.925,0.875,1.12,0.991,1.027,1.076,1.016,1.084,0.967,1.2,0.966,0.978,1.029,0.976,1.01,1.005,1.003,0.974,1.014,1.032,1.158,1.01,0.894,1.092,1.036,0.873,1.177,1.067,1.035,0.966,1.038,0.983,0.933,0.999,0.855,1.179,1.071,1.011,1.061,0.868,1.022,1.048,1.1,1.019,1.08,0.966 +XM_353413,1.132,1.0,1.067,0.957,1.142,0.907,1.014,1.013,0.881,0.932,0.988,1.013,0.971,1.086,1.135,0.874,0.87,1.041,1.027,0.869,0.972,0.939,0.823,1.045,1.003,0.972,1.261,0.985,0.948,1.058,1.263,1.056,1.082,0.868,1.004,0.951,0.852,1.087,0.956,0.982,1.04,0.941,1.038,1.105,0.995,1.01,1.051,0.938,1.049,0.939,0.915,0.93,1.051,0.894 +XM_353416,1.095,1.12,1.084,1.081,0.948,0.919,1.281,1.057,1.008,0.994,1.028,0.962,0.943,1.122,0.969,0.878,0.976,0.927,1.045,1.068,1.084,0.94,1.129,0.995,1.03,0.945,0.923,0.947,0.88,1.056,0.982,0.939,1.062,0.867,1.035,1.186,1.011,0.963,1.045,1.106,0.966,0.971,1.036,0.94,1.035,0.977,0.864,0.963,0.827,0.868,1.071,0.985,0.99,0.946 +XM_353419,1.0,0.807,0.999,1.006,0.997,1.021,1.035,1.039,0.991,0.963,0.808,1.131,1.029,1.152,0.836,0.998,0.935,1.018,1.13,1.055,0.984,1.031,1.041,0.969,1.014,0.989,0.919,1.075,0.86,0.971,0.98,0.889,0.838,0.942,1.003,1.137,0.917,1.222,0.979,0.869,1.132,0.941,0.977,0.927,1.013,0.973,1.044,0.94,0.922,0.962,0.938,0.743,1.151,0.878 +XM_353422,1.077,1.127,0.902,1.088,0.895,1.083,1.065,0.876,1.019,1.053,0.858,0.925,0.934,1.213,0.921,0.839,1.053,1.033,1.015,0.997,1.155,0.891,0.865,0.961,1.135,1.044,1.009,1.035,0.888,1.055,0.917,0.979,0.872,1.028,0.944,1.089,0.998,0.954,0.934,1.14,1.01,0.901,1.134,0.949,0.929,1.076,1.058,0.954,1.017,1.14,1.002,0.88,0.854,0.984 +XM_353424,0.982,1.026,0.98,0.912,1.021,0.963,0.969,1.122,1.006,1.004,0.952,1.016,1.243,1.124,0.982,1.083,1.054,0.956,1.098,0.941,1.022,1.039,0.908,1.021,0.953,1.015,1.187,1.106,0.908,1.017,1.025,1.048,0.897,1.199,1.003,0.96,0.891,0.928,0.912,1.047,0.877,0.955,1.02,0.943,1.217,1.08,0.922,0.996,0.96,1.041,0.968,1.046,1.063,1.091 +XM_353426,0.952,1.055,1.01,1.113,1.104,1.003,0.981,0.758,1.103,0.894,1.146,0.991,1.204,1.12,1.182,1.026,0.96,0.906,0.927,1.049,0.942,1.115,1.085,1.073,1.173,0.966,0.9,0.995,1.114,0.924,0.963,0.96,0.997,0.962,1.095,1.025,1.094,1.052,1.144,0.973,0.949,0.968,1.151,1.072,0.943,1.039,1.059,1.05,0.981,0.939,0.864,1.01,1.15,1.061 +XM_353428,1.016,1.041,0.918,0.941,1.185,0.912,1.02,1.278,1.026,1.011,0.923,0.817,0.891,0.871,0.815,0.924,1.186,1.099,0.869,1.08,1.036,1.06,1.063,1.023,1.12,0.987,1.063,1.003,0.727,0.965,1.08,1.29,1.037,1.009,0.868,1.015,0.972,0.868,1.018,1.012,1.023,1.002,0.879,1.017,0.99,0.901,1.12,0.981,1.085,1.033,0.94,0.993,1.185,1.059 +XM_353433,1.063,1.095,1.063,1.052,1.072,0.974,1.159,1.032,0.955,0.993,0.918,0.931,1.003,1.147,1.08,0.974,0.984,0.995,0.977,1.027,1.0,1.025,1.07,1.137,0.959,1.109,0.834,0.947,0.886,0.969,1.068,0.997,1.093,0.995,1.163,0.96,1.07,0.999,1.029,1.041,1.02,1.153,0.994,0.987,1.0,1.111,1.109,0.967,0.961,1.062,1.008,0.941,1.078,1.125 +XM_353434,0.965,1.069,1.0,0.835,0.942,1.012,0.961,0.888,1.025,0.887,1.048,0.977,0.964,0.836,0.919,1.065,1.011,1.041,0.982,0.972,1.077,1.008,1.101,0.937,1.005,0.942,1.088,0.988,0.974,1.017,1.044,1.182,0.971,0.96,0.874,0.967,1.018,1.121,1.168,1.009,1.133,0.97,1.063,0.998,1.044,1.014,1.0,0.998,1.136,1.143,1.013,0.982,0.934,1.071 +XM_353435,1.02,0.983,0.98,1.069,0.922,0.966,0.886,1.162,0.938,0.901,1.068,1.009,0.925,1.154,1.226,0.843,0.926,1.049,0.909,1.122,0.887,1.053,1.005,1.073,1.035,1.035,1.0,0.834,0.996,0.841,0.872,0.953,0.935,0.991,0.989,1.043,0.985,1.033,1.104,1.028,0.823,0.98,1.086,1.035,1.058,1.042,1.084,1.207,1.017,1.037,1.006,0.96,1.028,1.359 +XM_353438,1.038,0.898,1.178,0.793,1.006,0.981,1.197,1.024,1.085,0.906,0.953,1.082,1.004,1.16,0.998,0.931,1.176,1.06,0.824,1.234,1.004,1.132,1.074,0.977,1.087,1.104,0.937,1.032,1.245,0.886,1.063,0.913,0.934,1.081,1.162,0.969,0.944,0.741,0.959,1.106,0.956,0.876,0.783,1.008,1.072,0.933,1.056,0.94,1.098,1.002,0.972,1.149,1.018,0.919 +XM_353439,1.01,0.974,0.97,0.921,1.095,1.022,1.015,1.275,0.989,0.824,0.899,1.002,0.86,1.026,0.94,1.077,1.164,0.967,1.069,0.942,0.981,0.959,0.966,1.03,1.158,0.986,1.126,1.047,1.326,1.101,0.909,1.094,0.957,0.998,0.807,0.957,0.999,1.068,1.142,1.008,0.873,0.979,0.911,0.985,1.225,1.013,0.978,1.051,1.157,0.992,1.037,0.963,0.964,0.927 +XM_353442,1.02,0.937,1.059,1.207,1.047,0.903,0.914,0.832,1.101,0.939,1.196,1.159,1.0,0.942,0.966,1.013,1.112,1.012,0.882,1.044,1.133,1.035,1.131,0.93,0.791,0.988,1.034,1.11,1.056,1.022,1.046,1.005,0.878,0.969,1.133,0.953,0.954,0.96,1.072,1.14,1.045,0.875,1.041,0.956,1.018,0.967,0.996,1.129,0.831,1.013,1.056,0.998,0.901,1.029 +XM_353445,0.971,1.018,1.022,1.007,1.14,0.96,1.002,0.86,0.943,1.067,1.064,0.96,1.202,0.957,1.077,0.876,1.048,0.822,1.027,1.086,0.881,1.082,1.24,0.963,1.02,1.024,1.106,1.048,0.866,0.895,0.881,1.048,1.22,0.915,0.913,0.822,1.199,0.961,1.029,0.933,0.928,0.887,0.935,1.086,1.048,0.927,1.123,0.918,0.961,1.086,0.92,1.074,1.011,1.114 +XM_353447,1.003,0.978,0.944,1.007,1.043,1.004,1.036,1.072,0.852,0.934,1.072,1.075,0.953,1.044,0.936,1.196,1.028,1.051,1.028,1.001,1.027,1.058,1.139,0.978,1.021,0.941,1.068,0.947,1.277,1.035,0.927,1.142,0.79,0.989,0.942,0.93,1.037,0.918,1.046,1.049,0.971,0.844,0.955,1.122,1.025,1.017,0.95,1.002,0.988,1.019,1.089,0.888,0.922,1.083 +XM_353448,1.066,1.11,1.034,0.852,0.898,1.02,0.759,1.176,1.073,0.967,0.928,1.024,1.025,1.039,1.03,1.103,0.991,1.019,1.025,1.0,1.073,0.809,0.996,0.908,0.994,0.835,1.014,0.981,1.257,0.879,0.893,0.882,0.844,1.082,1.01,0.946,0.899,1.137,1.011,1.006,0.996,1.089,0.975,0.904,0.868,1.02,0.929,0.865,0.935,0.942,1.144,0.912,1.136,0.821 +XM_353450,0.893,0.99,0.943,0.943,1.036,1.053,1.256,1.154,1.036,0.95,0.993,1.03,0.913,0.932,0.939,1.048,0.958,1.079,0.841,1.023,0.84,0.969,0.999,1.057,0.926,1.229,0.969,0.796,1.175,0.992,1.048,0.991,1.01,1.167,0.819,0.841,1.063,1.005,1.159,1.001,1.04,0.987,1.006,0.971,1.047,0.953,0.874,0.961,1.058,0.949,0.94,0.769,0.962,1.269 +XM_353452,1.02,0.958,0.945,0.967,1.297,0.856,0.857,1.086,0.93,1.061,0.928,1.092,1.008,1.341,0.905,1.085,0.976,1.075,0.849,1.157,1.056,0.866,0.984,1.055,0.894,1.122,1.124,1.003,0.774,0.981,1.234,1.077,0.895,0.991,0.949,1.083,0.893,0.988,1.056,1.005,1.078,0.913,0.903,0.803,0.998,1.246,1.15,1.031,1.037,1.049,1.046,1.133,1.019,1.054 +XM_353455,1.073,1.053,1.025,0.951,0.985,0.849,0.811,0.982,0.947,0.991,1.195,1.018,0.966,1.029,0.865,1.222,0.974,0.992,1.089,1.012,0.929,1.097,1.211,0.932,0.922,0.953,1.058,0.998,1.522,1.099,0.971,0.932,1.01,1.103,1.132,1.011,1.027,0.929,1.106,1.006,0.924,1.024,0.956,0.849,1.065,0.976,0.977,1.128,1.044,1.052,1.164,0.941,0.897,1.074 +XM_353458,1.158,1.041,1.032,0.842,1.077,1.0,0.885,1.038,0.869,1.188,1.011,0.96,0.963,0.862,0.983,1.374,0.944,1.007,1.251,0.916,0.928,1.136,1.012,1.003,1.035,0.961,0.922,0.996,1.034,1.092,1.045,1.0,1.078,1.127,0.779,0.957,0.966,0.895,1.179,1.169,1.01,1.08,0.953,1.089,0.941,1.001,1.008,0.859,0.959,0.998,0.966,1.008,0.866,1.038 +XM_353459,1.137,1.214,0.961,0.994,1.017,1.02,0.906,1.19,0.947,0.942,0.932,1.038,1.049,1.03,1.01,0.923,0.93,0.99,0.981,1.021,1.037,1.102,0.902,0.969,1.002,0.87,0.959,1.157,0.818,0.899,1.218,1.012,1.076,1.087,1.043,0.99,0.952,1.101,0.92,1.035,1.09,0.949,1.102,0.974,1.017,0.88,1.204,1.058,0.935,0.998,0.975,0.877,0.996,0.826 +XM_353460,1.021,1.073,0.886,0.996,0.872,0.916,0.928,1.043,1.024,0.807,1.239,0.853,0.935,1.202,1.011,1.13,0.938,1.031,1.007,0.9,0.933,1.192,1.231,0.895,0.97,0.902,0.834,0.895,1.19,1.032,0.89,1.166,1.576,0.944,1.023,0.953,0.917,1.048,1.174,0.795,0.977,0.965,1.213,0.874,0.865,1.062,1.02,0.854,1.252,0.981,1.215,1.0,1.034,0.877 +XM_353461,1.011,0.97,1.02,0.923,0.967,0.96,0.916,0.968,0.912,1.037,1.01,1.181,1.067,1.079,0.941,1.103,0.978,1.092,0.987,1.011,1.026,1.052,1.015,1.077,0.939,0.949,0.745,0.95,1.067,1.056,0.962,1.063,0.974,0.992,1.018,0.901,0.99,0.983,1.003,0.983,1.152,1.017,0.962,0.885,1.077,1.084,1.031,0.907,1.086,1.029,1.039,0.997,0.981,1.081 +XM_353462,0.961,1.092,0.902,0.911,1.052,0.906,0.895,1.098,1.032,0.925,1.049,0.998,0.978,1.048,0.769,1.075,0.995,1.06,0.96,0.988,1.09,0.853,1.111,1.089,1.076,1.105,0.933,0.991,0.937,1.067,1.039,1.059,1.104,1.042,1.147,1.028,0.816,0.9,0.857,0.945,0.994,0.832,1.016,1.036,1.075,0.965,0.826,0.795,1.133,1.109,1.035,1.001,1.034,1.076 +XM_353463,1.066,1.018,1.069,1.124,0.829,1.066,0.962,0.977,1.159,0.952,0.913,1.1,0.894,0.819,0.916,1.117,1.039,1.117,0.932,1.198,1.157,0.89,1.13,1.041,1.028,0.976,1.026,1.043,0.925,1.061,0.989,0.959,0.985,0.877,1.212,0.992,1.069,0.872,0.916,0.918,1.085,0.877,0.877,1.057,1.055,1.128,0.969,1.035,0.984,0.979,1.109,1.029,1.144,0.923 +XM_353467,1.053,0.982,1.181,0.846,0.935,0.982,0.934,0.975,1.045,1.136,0.988,0.877,0.91,1.152,1.097,1.117,1.018,0.967,0.934,0.937,0.973,0.898,0.999,0.907,1.027,1.056,1.129,1.045,0.825,0.914,1.193,1.655,1.362,0.984,0.854,1.135,0.946,1.032,1.054,1.266,1.149,0.882,0.943,1.411,1.017,0.965,1.05,0.878,0.944,1.014,0.937,1.106,1.186,1.119 +XM_353468,0.947,0.959,1.019,0.953,0.97,1.047,1.209,1.307,0.989,0.999,0.978,1.085,1.082,1.024,1.053,0.969,0.92,1.001,0.98,0.921,1.251,0.993,1.085,1.013,1.015,1.043,0.995,0.968,0.902,1.03,0.954,1.179,0.942,1.042,0.967,1.073,0.806,1.049,1.053,1.112,1.032,1.072,1.297,0.782,1.118,0.867,0.994,0.949,1.019,0.903,0.982,0.872,1.018,1.261 +XM_353474,1.035,1.051,0.884,1.016,0.952,1.017,1.085,1.026,0.984,0.999,1.049,0.93,0.926,1.157,0.911,0.919,0.968,1.098,0.916,0.97,1.043,1.064,1.131,1.071,1.059,1.002,0.944,1.08,1.035,0.987,1.012,0.92,1.079,0.936,0.953,1.061,0.936,0.987,1.009,1.012,1.033,0.913,1.287,0.952,0.96,0.988,1.02,1.013,0.992,0.958,1.06,1.038,1.071,0.993 +XM_353475,1.142,0.967,1.023,0.945,1.023,1.05,1.002,1.123,1.077,1.099,0.917,0.985,0.893,0.973,1.053,1.073,0.977,0.829,1.016,0.889,1.143,0.954,0.937,0.98,1.049,1.045,1.029,0.966,1.263,1.038,1.001,0.998,1.17,0.951,0.916,1.098,0.932,1.004,1.096,0.989,0.939,0.964,1.1,0.939,0.991,0.931,0.967,1.072,0.883,0.999,1.093,1.007,0.894,1.009 +XM_353482,0.929,1.061,0.914,1.118,1.13,1.062,1.374,0.935,0.994,1.159,1.018,0.948,1.188,1.111,0.804,0.952,1.075,1.056,0.865,1.02,0.802,1.122,0.96,0.986,0.944,0.949,0.947,0.951,0.862,0.994,0.976,1.039,0.967,0.891,0.988,0.993,0.971,0.984,1.083,1.041,1.031,0.938,0.924,1.016,0.993,0.964,1.071,1.009,0.996,1.129,0.838,1.023,0.916,0.977 +XM_353486,0.972,1.0,1.072,0.929,0.95,1.016,0.813,1.14,0.952,1.123,1.003,0.925,1.134,1.039,1.0,0.925,0.994,0.964,1.023,1.014,0.993,0.921,0.927,1.035,1.09,0.902,0.969,1.159,0.887,0.907,1.065,0.951,0.99,1.103,0.914,1.082,1.045,0.958,1.07,0.945,1.043,1.017,1.118,1.138,1.014,1.019,1.047,0.899,0.922,0.96,1.027,1.003,0.956,0.989 +XM_353489,1.028,0.984,1.026,1.04,1.006,0.899,1.104,1.171,1.039,1.132,0.922,1.023,1.052,0.921,0.977,1.052,0.878,0.986,1.03,0.984,0.934,0.942,0.951,1.005,0.89,0.901,1.108,0.997,1.037,0.999,1.031,1.011,0.952,1.001,1.203,1.021,0.956,1.032,0.985,0.97,1.057,1.038,0.971,1.102,1.174,0.933,1.088,0.863,0.902,1.044,0.93,1.039,0.833,0.94 +XM_353491,0.76,1.01,1.498,0.602,1.096,0.884,0.601,0.426,1.019,1.128,1.008,0.952,0.733,0.546,0.927,1.172,1.167,1.046,1.196,0.926,0.414,0.882,1.266,1.158,0.456,0.948,1.267,1.056,0.508,0.817,0.833,1.319,0.689,1.077,0.145,1.737,0.996,0.903,1.327,1.208,1.251,1.022,0.623,1.394,1.417,0.815,1.164,0.84,0.982,0.997,1.023,0.915,0.904,1.153 +XM_353493,0.906,0.97,1.051,0.87,0.804,0.915,1.286,1.067,0.954,0.779,1.008,0.988,0.975,1.075,0.947,0.997,0.851,0.946,0.839,1.359,1.067,1.013,1.253,0.927,0.998,0.939,0.866,0.924,1.156,0.862,1.155,0.93,1.037,0.951,1.199,0.977,1.051,1.013,1.116,1.092,1.041,0.933,0.868,1.161,1.025,0.869,0.91,1.231,1.044,0.927,0.945,0.969,1.057,0.926 +XM_353496,1.046,1.044,1.153,1.362,1.123,0.764,0.889,0.822,0.99,0.805,1.104,0.881,0.846,0.756,0.841,1.322,0.868,0.963,0.945,1.074,0.89,0.792,1.105,1.019,1.045,0.964,0.835,0.939,0.606,0.977,0.814,1.062,1.251,2.05,0.89,1.07,1.285,0.884,0.949,0.902,0.917,1.092,1.121,1.108,0.841,1.408,1.008,0.796,0.97,0.967,0.882,0.97,0.982,1.976 +XM_353497,1.0,1.076,1.124,1.088,0.948,0.92,0.929,0.799,1.028,1.073,1.033,1.044,0.994,1.059,1.021,0.932,1.023,0.937,0.946,1.174,0.939,0.934,0.93,0.907,0.968,1.115,1.034,0.871,1.363,1.096,0.923,0.957,0.977,0.957,1.148,1.035,1.094,1.056,1.007,1.001,1.009,1.134,0.976,0.946,1.021,0.978,0.978,0.999,0.894,0.932,0.979,0.996,0.944,0.999 +XM_353502,0.852,0.99,0.914,1.051,0.932,0.902,1.086,0.86,0.906,1.0,0.911,0.964,0.995,1.038,1.145,1.011,1.022,0.915,1.026,1.242,0.986,1.163,0.993,1.032,1.136,1.116,0.938,0.801,1.098,0.861,1.202,1.021,1.241,1.093,0.979,0.918,0.746,1.139,0.841,0.916,0.926,0.874,1.066,1.21,0.867,1.096,0.998,0.996,1.083,0.988,0.927,1.006,0.892,1.079 +XM_353504,1.106,1.045,1.074,1.056,0.921,1.082,1.07,1.058,1.015,0.849,1.123,0.98,0.977,1.084,0.844,1.055,1.105,1.093,0.988,0.99,0.919,1.069,0.928,0.886,0.996,1.105,0.998,1.09,0.913,0.797,0.96,0.938,0.949,0.949,1.022,0.887,1.053,1.016,0.978,1.02,0.955,0.978,1.108,0.885,0.981,1.014,1.054,0.957,1.116,1.078,1.064,0.833,0.961,1.133 +XM_353505,1.06,0.988,0.947,0.903,1.037,0.921,0.951,1.017,0.909,0.955,1.12,0.97,0.954,1.047,1.035,1.033,1.016,0.944,1.149,1.146,1.011,0.986,1.022,0.996,0.946,1.201,0.846,1.04,1.222,1.011,0.907,0.946,0.938,1.055,1.059,0.988,0.985,1.059,1.043,0.979,1.044,1.001,0.86,0.917,0.997,1.009,1.031,0.91,1.04,0.945,0.92,0.811,1.249,1.121 +XM_353506,0.963,1.339,1.057,0.935,1.175,0.943,0.947,1.063,0.996,1.189,0.949,1.105,1.025,0.861,0.847,0.882,1.418,1.217,0.88,1.47,0.78,1.081,0.932,1.128,0.932,1.058,1.082,0.958,1.119,1.133,0.981,1.502,0.852,1.063,1.084,1.118,1.0,1.015,1.271,0.969,0.995,1.115,0.954,1.014,1.227,1.043,1.028,1.136,0.981,1.101,0.965,1.013,0.982,1.091 +XM_353513,1.096,0.958,1.027,0.955,1.109,1.033,0.937,1.07,0.966,1.04,0.972,1.016,0.993,1.072,1.207,0.971,0.957,0.988,1.004,1.01,0.899,0.954,0.948,0.938,0.985,1.041,1.094,1.063,1.146,1.009,0.962,1.13,0.951,1.017,0.991,1.057,1.11,1.012,1.005,0.965,0.923,1.031,0.768,0.955,1.065,0.99,1.106,0.974,0.96,1.157,0.952,0.965,0.909,1.137 +XM_353524,0.958,1.05,1.087,0.8,1.016,1.012,0.941,0.861,1.035,1.295,1.084,1.114,1.147,0.841,1.087,0.926,0.983,1.006,1.013,0.978,0.931,0.935,1.057,1.028,0.949,0.975,0.878,0.968,0.907,1.029,0.944,0.999,0.961,0.878,0.99,1.101,1.024,1.004,0.883,0.954,0.93,1.162,0.88,0.816,1.016,1.013,1.199,0.924,1.023,0.989,1.022,0.994,1.186,0.992 +XM_353595,0.844,1.603,1.394,1.605,1.15,0.651,1.68,0.947,1.213,0.905,1.195,1.072,0.849,0.794,1.136,0.704,0.758,1.533,1.224,1.554,0.966,0.856,0.958,1.347,2.062,0.931,0.857,0.788,0.972,0.991,0.847,2.167,0.772,0.997,0.833,1.488,1.209,1.092,0.747,64.19,0.901,1.817,1.114,1.216,1.412,0.7,1.29,0.828,1.157,1.173,0.767,0.741,1.202,1.154 +XM_353602,1.048,0.977,0.949,0.796,1.1,0.97,1.005,0.943,1.122,1.019,0.982,0.967,0.999,0.954,0.83,0.985,1.034,1.016,0.992,0.982,0.943,0.963,1.133,0.971,0.847,0.966,0.964,0.984,1.145,1.031,1.097,1.255,1.088,0.941,1.169,0.987,1.005,0.981,1.173,1.048,0.966,1.039,1.14,0.93,0.985,0.967,1.04,0.937,1.001,0.929,0.934,1.098,0.962,0.833 +XM_353648,0.992,0.98,0.953,0.876,0.929,0.894,0.942,1.016,0.892,0.975,1.043,1.064,1.059,1.022,0.931,0.748,1.001,0.933,1.23,1.103,0.93,1.025,0.912,1.044,1.008,1.033,1.021,0.975,0.646,0.999,0.956,1.088,1.076,1.139,1.235,0.871,0.949,1.093,0.9,0.971,0.898,1.029,0.924,1.016,1.017,1.021,1.136,1.048,0.94,0.907,0.953,0.897,0.962,1.12 +XM_353658,1.793,0.653,8.293,1.407,2.306,0.621,0.39,4.865,4.457,4.056,0.433,2.251,3.741,1.417,2.62,0.671,4.659,2.001,2.904,1.07,0.901,12.01,0.607,6.905,0.539,3.497,3.105,1.446,0.512,0.651,4.095,0.917,1.824,0.677,2.102,0.442,0.676,6.841,0.655,0.596,4.106,0.629,0.551,0.624,4.056,0.526,2.967,2.262,0.462,1.658,2.246,2.967,2.448,1.878 +XM_353702,1.096,1.005,1.024,1.219,0.935,1.047,1.037,1.075,0.952,0.997,1.181,1.177,1.173,0.952,0.835,1.031,0.963,1.083,0.956,0.956,1.064,1.017,0.842,0.846,1.031,1.008,0.942,1.042,0.822,1.005,0.968,1.108,0.98,1.043,0.996,1.012,0.992,0.848,0.999,1.031,1.001,0.909,0.792,1.064,1.019,0.859,0.99,1.01,0.954,0.946,0.956,0.998,1.035,0.905 +XM_353734,0.956,0.998,0.954,0.861,1.167,0.998,1.129,1.053,1.12,1.048,0.978,0.913,0.963,1.245,0.904,0.989,0.847,1.084,1.005,1.157,0.922,1.081,1.1,0.827,0.995,0.973,1.008,1.009,1.308,1.042,0.973,1.029,0.932,1.029,0.965,1.02,1.055,0.972,0.96,0.87,0.953,0.857,1.017,1.053,1.017,0.904,0.935,0.962,1.033,1.092,1.052,1.028,0.906,1.086 +XM_353836,0.892,1.712,0.823,0.886,0.921,1.413,0.864,0.977,0.897,0.938,2.446,0.874,0.997,0.928,1.741,1.993,1.111,1.014,0.905,4.073,0.829,0.881,4.286,0.878,0.969,0.959,1.02,0.931,0.656,0.991,0.975,1.065,1.679,0.86,0.861,1.382,1.383,0.94,1.064,1.41,0.922,1.539,2.006,1.37,0.977,3.95,2.002,0.864,2.929,0.955,2.678,1.509,0.821,1.438 +XM_353843,0.979,0.923,1.072,1.009,0.956,1.079,0.957,1.013,1.062,1.084,0.994,1.137,0.935,0.872,0.961,0.908,1.0,1.112,0.888,0.979,1.045,0.909,1.157,1.081,1.029,0.981,1.02,1.035,1.013,1.029,1.029,1.064,1.122,0.934,0.793,1.157,0.896,1.026,0.926,0.927,1.077,0.853,0.842,1.029,1.012,0.966,1.157,0.917,1.048,1.169,0.901,1.011,0.906,1.02 +XM_353869,0.878,1.034,1.073,0.867,1.017,0.883,0.889,1.024,0.923,1.146,0.979,1.004,0.842,1.0,0.972,1.064,1.082,0.93,1.166,1.13,0.999,1.157,0.986,1.046,0.941,1.047,1.196,0.978,0.804,1.011,1.198,1.109,1.185,1.09,1.032,1.087,1.014,0.923,1.142,0.913,0.888,1.037,0.922,1.018,1.193,0.785,0.982,0.921,0.915,0.955,0.881,0.968,0.933,0.931 +XM_370534,1.056,0.919,1.11,0.916,1.138,0.877,0.778,1.049,1.28,0.932,0.936,1.129,1.074,1.07,1.282,1.002,0.868,1.053,1.117,0.781,0.933,1.41,0.809,1.115,0.866,1.171,0.907,1.468,1.074,1.075,1.083,1.037,0.984,0.945,0.815,1.007,0.858,1.464,0.997,0.928,1.122,1.076,0.94,0.752,0.955,0.764,1.027,1.069,0.912,0.939,1.036,0.823,0.876,0.965 +XM_370537,0.956,1.014,0.891,0.91,0.943,0.844,0.976,1.02,1.079,1.114,1.112,0.9,0.882,1.17,0.945,0.933,1.186,1.051,0.988,1.294,0.929,0.933,0.998,0.941,0.834,1.058,0.838,1.105,0.932,0.889,1.022,1.055,1.007,0.991,1.018,0.889,1.041,0.918,1.107,1.034,1.186,1.009,1.231,1.013,0.98,0.9,1.12,1.014,1.15,1.16,1.02,0.863,0.834,0.852 +XM_370542,1.122,0.893,1.459,0.883,1.192,0.839,0.905,0.921,1.466,0.758,0.905,0.896,0.868,1.086,0.98,0.983,1.168,0.809,1.055,0.947,1.138,0.821,1.06,1.112,0.895,0.975,1.091,1.219,0.704,0.858,1.149,1.31,1.242,1.145,0.858,0.919,0.847,1.083,0.945,1.062,1.152,1.166,0.671,0.818,1.06,0.939,1.004,0.873,0.94,1.218,1.095,0.912,1.425,1.339 +XM_370555,1.099,1.184,1.095,0.901,0.977,1.066,1.039,0.839,0.944,0.97,1.002,0.895,0.942,0.924,0.907,0.847,0.891,1.034,0.898,0.989,0.93,0.907,0.939,1.051,1.029,0.889,1.02,1.04,1.14,1.051,0.868,1.073,1.054,1.181,1.045,0.962,0.925,1.138,1.134,0.968,0.993,0.863,0.88,0.984,0.928,0.923,1.06,1.129,1.126,1.127,0.987,0.946,1.083,1.154 +XM_370562,0.934,1.169,0.9,0.819,0.922,1.043,1.023,1.148,1.033,1.013,0.907,0.863,0.975,0.897,0.918,1.254,0.918,1.004,0.907,0.89,1.07,1.06,0.964,1.047,1.0,1.001,1.018,0.981,1.02,1.219,1.04,1.247,1.226,1.23,0.739,0.978,0.875,0.83,1.0,0.983,0.992,0.995,0.784,1.075,0.914,1.084,1.028,1.076,0.899,0.803,1.035,1.124,0.858,0.975 +XM_370564,1.025,0.944,1.1,1.041,1.051,0.969,0.949,0.881,1.051,1.088,1.165,0.938,0.997,0.97,0.938,0.951,1.058,0.914,1.015,0.926,0.923,1.089,0.944,1.007,0.998,0.994,0.942,1.009,0.801,1.035,1.05,1.069,0.876,1.019,1.096,0.936,0.915,1.028,1.021,1.031,1.144,0.924,0.98,0.942,1.01,0.993,0.979,0.963,1.002,1.044,0.955,0.91,0.99,0.948 +XM_370565,1.097,1.034,0.971,1.017,1.048,0.862,1.102,0.923,1.025,0.927,0.973,1.013,0.997,1.101,1.034,1.225,0.905,1.215,1.037,1.071,1.124,1.075,1.01,0.922,0.958,0.963,1.07,0.921,0.976,0.916,1.13,1.036,0.974,0.982,1.016,0.944,1.001,1.079,0.98,1.082,1.137,0.92,0.992,0.844,0.989,0.999,1.049,0.962,1.023,0.919,1.202,0.938,0.98,0.845 +XM_370566,3.077,0.213,9.983,0.877,3.85,0.25,0.3,2.38,2.958,5.225,0.248,5.927,3.856,2.232,2.49,1.378,7.533,1.719,10.53,0.392,3.427,2.55,0.235,2.981,0.251,3.381,4.489,2.534,0.256,0.213,3.361,0.211,2.625,0.228,0.31,0.348,0.251,5.646,0.255,0.295,6.185,0.225,0.208,0.22,6.563,0.254,2.031,3.829,0.32,14.26,0.781,0.821,7.489,0.867 +XM_370569,0.935,0.785,1.067,0.997,0.945,0.947,0.933,1.156,0.981,0.981,0.954,0.944,1.103,0.853,0.927,1.013,0.97,1.123,1.025,0.907,1.151,0.953,1.096,0.994,1.051,0.866,1.122,0.958,1.173,1.006,1.007,1.029,0.947,1.027,1.028,1.078,1.097,1.063,1.037,0.895,0.936,0.997,1.077,0.95,1.04,1.042,1.014,0.97,0.984,0.873,0.949,1.029,0.957,0.967 +XM_370577,0.953,0.969,1.026,0.893,0.967,0.821,1.106,1.063,0.81,1.063,1.1,1.028,1.042,1.142,1.081,1.075,1.073,1.122,0.928,0.955,0.82,1.049,1.004,0.994,1.166,1.187,1.024,0.993,0.981,1.094,1.127,1.133,0.873,0.974,0.984,0.99,0.974,1.147,0.876,1.058,1.025,1.077,0.871,0.87,1.045,0.951,0.902,0.966,0.87,0.939,0.882,1.037,0.997,0.842 +XM_370582,0.98,0.9,0.927,0.98,1.006,0.966,0.956,1.048,1.016,1.021,0.891,1.018,0.938,0.882,1.096,1.053,1.086,0.933,0.938,0.999,1.065,1.072,1.018,1.033,1.068,0.898,1.077,1.073,0.877,1.043,0.976,0.89,1.116,0.988,0.995,0.994,0.933,1.013,1.001,0.957,0.979,0.958,1.04,1.037,1.031,0.918,0.949,1.085,1.062,0.991,0.896,0.903,0.971,0.906 +XM_370584,1.12,0.916,0.877,1.023,1.021,1.117,0.981,1.009,1.066,1.013,0.998,0.993,1.123,0.884,0.973,1.066,0.996,1.006,0.907,1.019,0.89,1.156,0.884,1.029,1.134,0.93,0.941,1.073,0.89,1.089,0.885,0.955,1.046,0.924,1.093,0.99,0.968,0.947,0.963,1.101,1.163,0.929,0.978,1.036,0.979,1.019,0.979,1.003,1.036,0.95,0.889,1.004,1.158,0.954 +XM_370585,1.003,1.057,1.024,1.011,0.957,0.975,0.969,0.94,0.758,1.057,1.121,1.028,1.087,1.04,1.033,0.946,0.926,0.957,0.934,0.963,1.015,1.009,0.963,0.948,0.989,1.125,0.928,1.055,0.986,0.992,1.008,0.985,0.94,0.863,1.115,0.968,1.064,0.935,1.024,0.993,1.044,0.958,0.913,1.001,1.06,1.0,0.905,0.874,0.988,0.892,1.03,1.007,0.978,1.087 +XM_370586,0.98,1.202,0.902,1.004,1.038,0.971,1.073,1.02,0.875,0.992,0.97,0.971,1.067,1.165,0.958,0.896,0.976,0.988,1.094,1.192,0.93,0.97,0.943,1.011,0.982,1.111,0.935,1.066,0.785,1.147,1.008,0.973,0.949,1.08,1.002,1.016,1.041,0.973,1.051,1.131,0.996,1.077,0.884,0.978,1.08,0.975,1.131,1.021,1.117,0.917,1.094,1.089,0.997,0.98 +XM_370597,1.123,1.021,0.986,1.029,1.014,1.104,1.083,1.071,1.025,0.911,0.869,0.916,1.026,0.946,0.999,0.958,0.989,1.03,0.983,1.044,1.122,0.891,1.004,1.045,0.914,0.982,1.056,1.073,1.743,0.983,0.975,0.968,1.002,1.122,1.055,1.017,0.976,1.08,0.971,0.989,1.003,0.835,0.925,1.105,1.083,0.902,0.987,0.87,1.09,1.048,1.053,0.941,1.058,0.936 +XM_370603,0.741,1.098,0.849,0.687,0.881,1.059,0.692,0.669,0.955,1.013,0.979,1.057,0.792,0.702,0.859,1.073,0.923,0.818,1.111,1.014,0.708,0.66,1.247,1.139,0.687,0.765,1.048,0.94,0.531,1.125,0.9,1.251,1.89,1.097,0.47,1.217,0.945,0.89,1.267,0.891,1.103,0.893,0.514,1.282,1.083,1.035,1.361,0.749,0.972,0.762,1.043,0.988,1.056,1.538 +XM_370606,1.128,0.951,0.974,1.021,0.893,0.978,1.258,0.985,1.124,1.013,0.993,1.029,1.055,0.948,1.049,0.98,1.021,1.006,0.915,0.974,0.973,0.915,0.967,1.046,1.097,1.011,0.9,1.0,0.914,1.004,0.918,0.996,0.95,0.857,0.984,1.014,1.025,0.979,1.056,1.027,0.967,0.895,1.298,1.072,0.916,0.814,0.995,1.086,1.021,0.928,0.921,0.952,1.072,1.065 +XM_370618,0.872,0.834,1.358,0.724,1.139,1.025,0.799,1.157,1.173,0.951,0.813,0.872,0.908,0.721,1.107,1.13,1.259,1.102,1.068,0.967,0.737,1.016,1.16,1.125,0.718,0.915,1.317,0.793,0.701,1.165,1.254,1.156,1.067,1.002,1.448,0.919,0.947,1.187,1.165,1.302,1.158,1.139,0.844,0.837,1.241,0.872,1.2,1.249,1.223,1.001,0.998,0.867,0.939,1.128 +XM_370635,0.485,1.48,0.985,0.513,0.751,1.349,0.66,0.591,0.765,0.723,1.011,0.634,0.466,0.621,0.845,1.215,0.656,0.828,0.867,1.403,0.61,0.704,1.543,0.826,0.849,0.596,1.117,0.76,0.464,2.12,0.758,2.677,2.003,1.781,0.317,0.797,1.168,0.777,1.179,1.018,0.729,1.853,0.725,0.769,0.726,1.002,0.812,0.508,0.873,0.63,1.279,0.902,0.768,1.207 +XM_370639,0.717,0.967,1.195,0.821,0.97,0.903,0.7,0.811,1.209,1.152,0.994,0.796,0.939,0.726,0.926,1.043,0.758,1.1,1.173,0.979,0.821,1.009,1.184,0.993,0.682,0.876,1.036,0.881,0.68,0.892,0.95,1.242,2.069,1.238,0.603,1.272,1.011,1.072,1.212,0.993,1.017,1.129,0.781,1.247,0.954,1.092,0.905,0.772,0.94,0.959,0.868,0.832,1.0,1.536 +XM_370649,0.714,0.655,1.39,0.514,1.189,1.523,0.543,0.869,1.472,0.946,0.772,1.051,0.893,0.523,0.849,1.673,1.409,1.092,1.257,1.06,0.487,1.35,1.069,1.177,0.379,0.935,1.595,1.149,0.381,0.983,1.214,1.027,0.999,1.363,1.065,0.885,0.97,1.291,1.078,0.812,1.454,0.966,0.534,0.546,1.006,0.881,1.165,1.144,1.026,1.117,1.001,0.686,0.914,1.189 +XM_370652,0.919,0.937,0.865,0.845,1.025,1.057,0.847,1.018,0.967,0.906,0.903,0.924,1.083,0.926,1.117,0.964,1.033,0.985,1.031,1.047,1.063,0.828,1.008,1.013,0.94,1.055,1.048,1.027,0.853,0.972,1.018,1.284,1.13,0.974,0.975,1.064,0.885,0.957,1.013,0.929,1.078,0.966,0.873,1.089,0.957,0.908,1.092,1.05,0.976,1.073,0.983,1.122,1.0,1.043 +XM_370653,0.735,1.404,1.081,0.751,0.896,1.147,0.762,0.703,0.845,0.866,1.396,0.878,0.706,0.778,1.004,1.656,0.715,0.862,0.989,1.052,0.717,0.761,1.101,0.871,0.842,0.874,0.781,0.841,0.76,1.338,0.824,1.892,1.447,1.269,0.656,2.063,1.185,0.887,1.204,0.927,0.877,1.293,0.767,1.101,0.745,0.997,0.909,0.82,1.044,0.756,1.003,1.023,0.805,1.593 +XM_370657,1.04,1.063,0.89,1.0,1.167,0.973,0.759,1.341,1.211,0.967,1.02,1.053,0.811,1.336,0.71,1.123,1.038,1.007,1.164,0.976,1.077,1.185,0.873,0.954,0.971,1.005,1.043,0.816,1.397,0.827,0.963,0.788,0.926,1.052,0.978,1.026,1.169,0.929,0.959,0.864,1.144,1.362,1.11,0.93,1.094,0.954,0.973,1.09,0.932,1.098,1.116,0.995,0.981,1.322 +XM_370660,0.938,0.875,1.113,1.017,1.198,1.008,1.046,1.245,1.076,0.988,1.015,0.982,1.184,0.936,0.925,0.982,1.043,1.006,0.905,0.997,0.981,1.018,1.05,0.964,1.002,1.184,1.03,0.962,0.795,1.034,1.036,0.947,1.021,0.907,0.953,0.983,0.977,0.949,1.212,0.973,0.997,1.025,1.009,1.143,1.111,0.961,0.933,1.141,0.988,0.982,0.987,1.033,0.976,1.047 +XM_370661,1.011,0.983,1.023,1.115,1.077,0.983,0.968,0.979,0.879,1.014,0.997,0.989,1.17,1.011,1.042,1.087,1.016,1.042,0.828,1.064,1.017,0.95,1.059,1.019,0.998,0.882,0.968,1.024,1.216,0.899,1.137,1.041,1.02,0.934,1.139,1.088,1.105,0.946,1.038,0.957,0.973,1.117,0.969,1.05,1.005,0.882,0.954,1.019,0.974,0.887,0.916,1.064,0.997,0.851 +XM_370662,1.071,0.882,0.961,0.87,1.034,0.928,1.086,0.929,1.002,0.928,1.057,0.885,0.963,1.032,1.009,1.023,0.94,1.07,1.052,0.917,1.011,1.074,1.012,1.04,0.976,0.902,1.009,0.948,1.106,1.036,0.907,1.002,1.035,0.989,0.96,0.946,1.064,0.907,0.89,0.913,1.033,1.029,1.068,0.909,1.148,1.039,0.931,0.901,1.114,1.015,0.938,1.122,1.059,0.929 +XM_370666,0.955,0.97,1.11,1.136,1.04,1.041,0.973,1.041,1.095,1.011,1.113,0.992,1.069,0.993,0.955,1.084,1.081,1.018,1.026,1.094,1.094,1.097,1.047,1.032,1.015,0.921,1.019,1.098,0.787,1.158,1.01,0.943,0.977,0.957,1.05,1.057,1.0,0.923,0.882,0.824,1.057,1.163,0.938,0.975,1.284,1.025,1.293,1.091,0.997,1.063,0.917,0.937,0.931,1.019 +XM_370667,0.984,0.987,0.939,0.84,0.984,0.975,1.022,1.031,0.968,0.911,1.005,0.974,0.971,0.954,1.152,1.069,1.059,0.886,0.974,1.12,0.934,0.968,1.095,1.07,1.01,1.029,0.985,0.924,0.834,1.122,1.132,0.996,0.936,0.925,0.91,1.0,1.108,1.045,1.022,0.866,1.152,0.933,1.103,1.042,0.993,0.901,0.954,1.091,1.075,0.909,1.16,1.17,1.017,0.935 +XM_370672,0.945,0.965,1.03,0.975,0.928,1.025,1.158,0.963,1.138,1.002,1.107,1.072,1.005,0.877,1.18,1.055,0.908,0.935,0.941,0.952,1.001,1.088,1.027,0.926,0.956,1.056,0.953,0.925,1.148,1.005,0.93,0.994,1.075,1.008,0.975,1.005,0.94,1.046,1.096,0.988,1.022,1.121,1.246,0.927,0.959,0.878,0.974,1.053,1.015,1.059,1.046,1.039,0.987,1.269 +XM_370675,0.919,0.974,1.115,1.015,1.035,1.109,1.148,1.013,0.949,0.921,0.979,1.07,0.974,1.133,0.959,0.991,0.986,1.004,0.806,0.983,1.009,0.931,0.941,0.908,0.973,0.949,0.927,1.095,1.046,1.005,1.044,0.86,1.298,1.039,1.025,0.963,1.102,1.007,1.024,0.979,1.102,0.919,1.19,0.935,0.911,1.016,0.948,1.021,1.117,0.972,1.025,0.965,1.032,1.017 +XM_370682,1.032,0.988,1.014,0.991,1.108,0.909,0.979,1.24,1.11,1.005,0.955,0.874,0.9,0.898,1.145,0.955,0.933,1.005,1.059,0.947,1.01,0.934,0.915,0.951,1.011,0.944,1.033,1.149,0.939,0.968,1.096,1.198,1.013,0.918,0.995,1.006,0.956,1.032,1.005,1.174,1.058,0.93,1.05,1.073,1.027,1.022,0.989,0.992,0.993,1.003,0.988,1.026,1.062,1.042 +XM_370685,0.614,1.188,1.619,0.663,0.936,1.905,0.779,1.018,1.185,0.855,1.813,1.361,0.977,0.781,1.24,1.9,0.834,0.978,1.453,1.106,0.615,1.041,1.031,0.959,0.799,0.691,1.234,0.907,0.528,1.288,0.932,1.052,1.685,2.008,0.355,0.749,1.428,1.081,1.047,0.451,1.073,1.262,0.523,7.23,0.934,1.219,0.824,0.808,0.836,0.675,0.87,0.687,1.036,1.142 +XM_370686,0.805,3.193,0.804,2.679,0.888,3.113,3.23,0.772,0.74,0.863,2.195,0.781,0.893,0.788,1.665,1.512,0.757,3.642,0.832,2.877,0.819,0.757,1.443,0.844,2.591,0.927,0.824,0.681,2.179,2.149,0.718,1.015,0.948,7.537,0.759,0.892,2.745,0.72,2.005,0.697,0.873,3.501,1.409,0.87,0.688,2.35,0.842,0.72,1.626,0.785,1.996,0.946,0.821,0.749 +XM_370687,0.953,0.974,1.014,1.153,0.883,0.941,1.027,0.955,0.992,0.983,0.95,1.023,1.132,1.023,1.042,0.966,1.043,1.098,1.0,0.984,0.926,1.065,0.96,0.894,1.046,0.962,0.948,0.916,0.956,1.041,0.957,0.954,1.151,0.98,0.99,1.125,0.918,1.033,0.93,1.069,1.069,1.052,0.868,1.06,0.984,1.045,0.901,0.886,1.088,1.074,1.06,1.034,0.981,0.86 +XM_370690,0.903,0.925,1.376,0.697,1.071,1.015,0.716,0.653,1.301,0.948,1.043,1.241,0.589,0.823,0.94,1.027,0.713,0.903,1.052,1.305,0.785,0.997,1.087,1.213,0.731,0.865,1.554,1.075,0.576,1.015,1.09,0.845,1.398,1.027,0.478,1.003,1.158,1.074,0.885,1.095,1.008,1.068,0.596,1.048,1.129,1.071,0.943,0.908,0.987,0.902,1.176,0.863,0.831,1.611 +XM_370691,1.017,1.028,0.993,0.995,0.884,0.938,0.999,0.827,1.014,0.946,0.851,0.971,1.006,1.102,1.143,0.82,0.869,1.061,1.205,0.873,1.027,0.742,0.991,1.215,1.056,0.92,1.089,1.052,0.93,1.078,1.134,1.292,1.19,0.925,1.121,0.913,0.643,1.047,0.76,1.079,0.827,1.033,1.314,1.001,1.161,0.96,1.048,1.066,1.084,1.097,0.853,1.444,1.292,1.062 +XM_370696,1.067,0.988,1.077,0.917,0.938,1.057,1.117,0.945,1.042,1.116,0.89,1.09,1.032,1.0,0.84,0.931,1.024,0.947,1.033,0.995,0.959,0.986,1.024,0.938,0.989,0.981,1.0,0.877,1.105,0.852,0.892,1.016,1.116,1.071,1.034,1.024,1.045,0.966,0.926,1.04,1.101,0.877,1.275,0.97,1.0,0.981,1.001,0.986,1.08,0.927,0.993,1.013,1.009,0.927 +XM_370711,1.007,0.962,0.989,1.092,1.035,0.953,0.948,1.063,1.212,0.971,1.082,0.872,1.106,0.949,0.876,0.99,1.033,1.055,1.035,1.015,1.033,1.046,0.96,1.002,0.933,1.149,0.886,1.158,0.932,1.025,1.001,1.05,1.09,1.037,1.181,1.038,1.009,1.185,0.904,0.939,1.109,0.83,0.871,0.933,0.999,0.833,0.941,1.137,0.833,1.032,0.998,0.968,1.019,0.999 +XM_370718,0.99,1.018,0.956,0.965,1.072,0.9,1.092,1.342,0.973,0.956,1.085,1.101,1.052,0.953,0.947,0.868,0.926,1.091,0.91,0.99,0.977,0.973,0.971,1.016,1.0,1.139,0.997,1.129,0.993,0.965,0.903,1.037,0.943,1.069,0.916,0.99,1.1,1.125,0.933,1.252,1.192,0.882,1.075,0.978,1.152,1.026,0.824,0.933,1.007,1.001,1.063,1.141,0.895,0.95 +XM_370722,0.553,1.363,0.88,0.704,0.603,2.219,0.969,0.641,0.772,0.537,1.143,0.569,0.6,0.724,1.149,2.359,0.693,1.258,0.652,1.529,0.497,0.825,1.795,0.824,0.814,0.544,1.105,0.63,0.429,2.272,0.752,2.043,1.206,2.49,0.492,0.677,1.401,0.705,1.481,3.309,0.646,1.447,0.406,1.036,0.642,1.65,0.866,0.603,1.006,0.567,1.653,0.757,0.61,3.8 +XM_370723,1.003,1.05,1.011,0.973,0.994,0.969,1.049,0.955,1.001,0.889,0.959,0.988,1.047,1.025,0.977,1.062,0.929,0.911,0.911,1.097,1.063,1.01,1.122,1.029,1.087,1.009,1.0,0.836,1.003,1.055,1.014,1.121,1.14,0.91,0.929,1.107,1.184,1.018,1.079,1.0,0.965,0.938,0.902,0.993,1.004,1.113,1.03,0.967,1.03,1.011,1.15,1.059,0.979,1.122 +XM_370726,1.069,1.065,1.069,0.932,0.911,0.869,0.922,1.014,1.111,0.973,0.967,0.913,0.883,0.942,0.913,1.128,1.064,0.921,0.982,0.907,0.897,0.925,0.995,1.072,0.842,0.868,0.888,1.056,0.752,1.055,1.078,1.052,1.033,0.873,1.23,1.072,0.938,1.097,1.1,1.029,1.112,0.916,0.833,1.264,1.052,0.977,0.939,1.073,0.994,1.029,0.958,1.029,1.093,1.179 +XM_370732,0.918,1.032,1.093,0.993,1.129,1.06,0.899,1.042,0.969,0.952,1.037,0.949,0.878,0.882,0.854,0.878,0.871,1.16,0.861,0.986,0.991,0.993,0.995,1.024,1.083,1.057,0.835,1.054,0.777,1.044,0.997,1.104,0.931,0.981,0.935,0.928,0.941,0.971,1.15,0.971,0.91,0.96,0.936,1.37,0.922,1.134,1.063,0.951,0.933,1.035,1.084,0.987,1.021,1.119 +XM_370738,0.9,1.22,1.468,0.718,1.146,0.916,0.767,0.601,1.111,1.174,0.789,0.901,0.566,0.829,0.9,0.786,0.937,0.979,1.031,1.226,0.678,1.079,1.19,1.054,0.742,0.965,1.412,0.799,0.627,0.965,0.95,1.91,1.181,0.913,0.419,1.133,0.948,0.846,1.117,1.221,1.114,1.084,0.662,1.459,1.246,0.851,0.979,1.001,0.841,1.074,1.08,1.035,0.975,1.568 +XM_370756,1.114,0.846,1.508,0.775,0.959,1.141,0.684,0.691,1.788,1.076,0.797,0.894,0.773,1.119,0.833,0.944,0.772,1.421,1.765,1.254,0.842,1.595,1.174,0.83,0.703,1.317,1.151,1.014,0.647,1.91,1.551,1.334,1.189,1.462,0.555,0.434,0.871,1.353,1.365,0.999,0.869,0.928,0.519,0.952,0.946,0.613,0.837,1.172,0.529,1.226,1.041,0.946,0.928,1.201 +XM_370758,0.965,1.086,0.976,0.989,1.147,1.005,0.988,1.133,1.01,1.045,1.049,0.968,0.962,1.081,1.055,0.939,1.0,1.071,1.03,1.124,1.032,1.003,1.061,0.939,0.977,1.02,1.1,1.011,0.945,0.983,0.973,1.044,0.99,0.986,1.045,1.021,0.998,1.036,1.01,1.059,0.878,0.975,0.98,1.004,0.873,1.042,0.934,1.008,0.949,0.952,1.0,0.983,1.032,1.093 +XM_370765,0.909,0.992,1.109,1.014,0.936,1.008,0.873,1.035,0.882,1.026,1.048,1.061,1.012,1.0,0.976,1.096,1.1,0.989,0.99,1.028,1.015,0.994,1.052,1.012,1.007,1.047,0.992,0.833,0.92,1.051,0.917,0.898,1.103,0.951,1.059,0.995,1.02,0.938,0.926,1.08,0.989,1.019,0.798,0.956,1.058,1.087,0.97,0.956,1.061,1.018,0.951,1.236,0.95,0.827 +XM_370772,1.045,0.843,0.941,1.089,1.036,0.993,0.978,0.941,1.057,1.032,0.995,1.058,1.211,0.943,1.04,1.171,1.0,0.961,1.005,0.855,0.956,0.871,1.037,1.047,1.174,1.018,1.035,0.996,0.972,1.071,1.087,1.062,1.108,1.142,1.005,1.107,0.939,1.016,1.082,1.134,0.891,0.896,1.072,1.084,0.938,0.905,0.903,1.22,1.0,0.944,0.981,1.052,1.093,0.987 +XM_370777,1.619,0.804,1.613,1.133,1.489,0.863,0.981,1.086,2.299,1.267,0.855,1.236,1.438,1.345,1.341,1.185,1.418,1.164,1.918,0.866,1.473,1.755,0.977,2.049,0.856,2.28,1.183,1.955,0.855,0.907,1.822,0.872,1.17,0.862,1.491,0.888,0.884,2.243,0.928,0.828,2.105,0.913,0.785,0.91,1.551,0.829,1.213,1.858,0.838,1.756,0.94,0.914,1.237,0.992 +XM_370779,0.631,0.972,0.658,1.008,0.636,2.175,1.649,0.596,0.737,0.884,2.05,0.606,0.549,0.534,1.426,1.91,0.574,0.992,0.637,1.723,0.585,0.671,2.008,0.628,0.962,0.538,0.656,0.593,0.988,1.778,0.726,2.047,1.442,1.131,0.579,1.512,2.21,0.783,2.232,0.793,0.681,1.571,3.076,1.736,0.747,2.76,1.216,0.741,2.982,0.665,2.292,0.76,0.673,1.6 +XM_370782,0.953,1.002,1.778,1.144,1.038,0.842,1.037,0.869,1.017,1.531,1.042,1.201,0.995,0.925,1.054,0.929,1.033,1.222,1.398,0.936,0.921,0.845,0.903,0.91,1.055,0.9,0.912,0.966,1.139,1.037,0.899,1.205,0.881,1.004,0.941,1.044,0.995,0.948,0.95,1.063,0.953,1.574,1.161,0.953,1.273,0.981,1.006,0.944,0.935,1.009,0.997,0.886,1.862,1.008 +XM_370834,0.931,1.136,1.058,1.183,0.846,1.049,1.792,0.948,1.037,1.007,0.976,1.042,1.048,0.992,0.836,0.862,0.916,1.041,0.959,1.12,0.958,0.932,0.996,0.994,0.927,0.958,1.006,1.014,0.808,1.09,0.975,0.98,0.986,1.014,1.012,0.947,1.251,1.084,1.019,0.868,1.14,1.157,0.897,0.896,0.989,0.894,0.937,0.845,1.07,0.942,0.984,0.87,1.101,1.585 +XM_370858,0.939,1.016,0.894,0.957,0.995,1.142,0.885,1.008,0.891,0.978,0.999,0.895,1.223,0.912,1.061,0.879,0.967,0.965,1.244,1.067,0.872,0.954,1.115,0.922,0.964,0.999,1.049,0.993,0.913,1.001,1.039,1.042,1.067,0.962,1.023,0.99,0.917,1.096,1.112,0.979,1.063,1.036,0.771,0.996,0.958,0.852,1.045,0.965,0.959,1.004,0.947,1.006,0.945,1.075 +XM_370864,3.016,0.715,1.895,0.986,3.825,0.731,0.639,5.267,3.097,3.577,0.791,4.221,2.29,1.809,1.861,1.155,1.321,1.734,2.513,0.644,1.664,3.105,0.737,3.569,0.609,2.651,1.679,3.866,0.49,0.824,3.636,0.939,1.465,1.005,2.284,0.615,0.67,4.633,0.879,0.711,2.693,0.873,0.663,0.779,3.574,0.627,1.394,3.839,0.854,1.864,0.983,1.04,1.757,0.786 +XM_370868,0.394,4.02,0.638,0.94,0.326,1.116,0.75,0.413,0.368,0.353,1.311,0.341,0.347,0.348,0.964,1.323,0.407,0.43,0.354,1.387,0.363,0.323,1.879,0.307,1.893,0.409,0.38,0.373,0.439,1.597,0.345,1.582,0.905,1.855,0.332,0.34,1.756,0.297,1.103,2.81,0.588,1.682,2.276,1.138,0.706,2.901,1.193,0.305,3.856,0.54,1.202,0.738,0.296,5.526 +XM_370870,0.671,1.02,0.852,1.118,0.824,2.197,0.998,0.552,0.794,1.0,3.173,0.691,0.646,0.589,1.727,3.221,0.681,0.995,0.55,2.039,0.648,0.698,2.643,0.684,0.7,0.629,0.687,0.776,0.819,1.558,0.557,1.056,1.037,1.368,0.539,1.683,2.381,0.773,2.009,1.014,0.879,1.639,2.647,0.952,0.733,2.62,0.921,0.676,2.126,0.692,2.232,1.172,0.683,1.635 +XM_370878,0.533,0.963,0.778,0.689,0.631,1.255,0.827,0.396,0.646,0.735,1.483,0.62,0.475,0.533,0.958,1.667,0.584,0.898,0.679,1.694,0.551,0.522,2.18,0.66,0.671,0.569,0.645,0.647,0.557,1.434,0.524,2.485,1.758,1.573,0.363,0.809,1.461,0.632,1.861,1.222,0.602,2.013,1.056,0.81,0.61,1.376,1.008,0.555,1.496,0.65,1.602,1.281,0.524,1.027 +XM_370879,0.563,0.957,1.266,0.475,1.202,1.103,0.546,1.242,1.211,1.055,0.541,1.401,1.255,0.565,0.792,1.426,0.935,0.98,1.045,1.009,0.28,1.172,1.452,1.335,0.542,0.863,1.484,1.093,0.0105,1.039,1.098,1.22,1.24,1.228,0.281,0.944,0.812,1.144,0.986,1.297,1.107,1.124,0.0121,0.577,1.166,0.588,1.027,1.053,1.074,0.799,0.964,0.839,0.51,1.691 +XM_370906,0.931,0.913,0.997,0.947,1.044,0.935,1.165,0.919,1.014,1.048,0.855,1.141,1.015,1.201,0.924,1.071,1.016,0.995,0.966,1.001,1.007,1.0,0.971,0.984,0.989,0.835,0.951,1.028,1.473,0.919,0.87,0.932,0.986,0.949,1.056,0.966,0.912,0.943,0.957,1.072,0.919,1.045,1.411,0.894,1.067,1.058,1.008,0.976,0.945,0.973,0.942,0.914,1.022,1.239 +XM_370908,0.949,1.043,0.896,0.941,1.052,0.894,0.99,0.982,0.968,1.003,0.971,0.967,0.918,0.896,1.02,1.032,0.975,1.058,1.093,1.159,0.901,0.878,1.048,0.963,0.961,1.051,1.103,0.946,0.887,1.005,1.051,1.138,1.303,0.965,0.957,1.007,0.985,1.025,1.163,0.947,0.999,0.959,0.885,0.944,0.848,1.127,0.94,0.918,1.052,1.006,1.125,0.906,0.924,1.021 +XM_370909,1.079,0.95,1.136,1.112,0.968,1.042,1.3,0.921,1.042,0.961,0.94,1.187,0.991,0.966,1.119,1.103,1.048,0.98,0.831,1.0,0.852,0.962,1.056,1.165,1.178,1.067,1.125,1.017,1.088,0.974,1.062,0.982,1.072,1.076,1.004,1.07,1.066,0.933,1.041,1.001,0.958,1.176,0.914,0.914,1.209,0.975,1.014,0.909,0.904,0.931,1.041,1.104,0.916,1.04 +XM_370911,1.016,1.16,1.086,0.916,1.015,1.051,1.224,0.901,0.988,0.992,1.061,0.933,0.883,0.993,0.932,0.906,0.945,0.967,1.079,1.044,0.978,0.968,1.062,1.0,0.963,1.051,1.017,1.003,0.886,1.016,0.965,0.943,1.128,1.212,0.957,1.072,0.975,1.031,0.957,0.959,1.166,0.924,0.985,1.196,1.008,1.033,0.999,0.893,0.999,0.952,1.061,0.928,1.04,0.988 +XM_370918,0.978,0.992,1.01,0.994,0.933,0.955,0.771,0.94,0.972,0.974,1.029,1.102,1.03,1.027,0.968,1.011,0.994,0.918,1.083,1.031,1.027,1.043,0.95,1.101,0.991,0.998,1.017,1.071,0.964,1.051,1.089,1.08,1.008,0.953,0.856,0.93,1.077,0.989,1.07,1.104,1.02,0.992,0.931,1.13,0.97,1.02,1.045,0.977,0.894,0.971,0.987,0.873,0.997,0.889 +XM_370924,0.906,0.934,0.96,0.943,0.87,0.921,1.004,0.997,0.828,1.0,1.088,1.134,0.966,0.924,0.853,1.004,0.866,0.934,0.933,1.082,1.072,1.008,0.833,1.121,1.042,0.934,0.954,0.919,1.295,0.947,1.022,0.897,1.153,1.009,1.007,1.098,0.983,1.107,0.885,1.053,0.926,1.101,1.165,1.014,0.941,1.083,0.828,1.02,1.044,1.007,0.983,0.922,1.093,1.105 +XM_370925,0.9,0.875,1.069,0.918,0.896,0.856,0.724,0.638,1.09,1.065,1.361,0.95,0.988,0.76,0.904,1.637,0.898,0.848,1.25,0.79,0.656,0.862,1.052,1.136,0.737,1.059,1.018,0.88,0.581,0.935,0.865,1.397,2.532,1.181,0.448,1.034,1.095,0.848,1.401,0.742,0.962,0.91,0.929,1.563,1.051,0.907,1.212,0.931,0.972,1.161,0.985,0.866,1.147,1.46 +XM_370928,0.788,1.22,0.976,0.887,0.928,1.109,0.987,0.95,0.944,0.854,0.99,0.762,0.832,1.126,0.926,1.091,0.867,0.916,0.981,1.152,0.84,0.941,1.219,0.875,1.083,0.832,0.904,0.842,1.142,1.157,0.928,1.548,1.602,1.222,0.775,0.834,1.014,0.824,1.337,1.114,0.832,1.252,0.75,0.989,0.797,1.113,0.881,0.894,1.042,0.899,0.998,1.035,0.843,1.379 +XM_370932,0.972,0.902,1.028,0.885,1.017,0.835,0.882,0.985,1.112,0.93,1.148,1.015,1.085,1.058,1.075,1.07,0.932,1.241,1.01,0.975,0.988,0.993,1.057,0.922,0.965,1.136,1.078,0.856,1.055,1.119,1.021,0.982,0.911,1.057,0.959,1.014,0.958,0.861,1.063,0.991,0.958,1.041,1.129,1.016,1.091,1.068,0.929,1.153,0.885,1.024,1.175,0.966,1.142,1.045 +XM_370944,0.985,1.016,1.01,1.381,0.975,1.027,0.989,1.024,1.109,0.98,1.095,0.993,0.942,1.202,1.016,0.941,0.946,1.017,1.009,1.01,0.997,1.077,0.995,1.023,1.046,1.023,0.986,1.0,0.812,0.925,1.057,1.02,0.971,0.964,0.989,1.073,1.052,0.942,1.126,0.961,0.984,1.036,1.035,1.022,0.927,0.969,0.945,1.071,1.129,1.06,1.053,1.068,1.071,0.935 +XM_370947,1.038,1.071,0.914,1.133,1.074,1.068,0.88,0.968,0.95,1.043,0.988,1.026,1.064,1.055,0.997,1.065,0.994,1.183,0.898,0.99,0.912,0.888,1.062,0.955,0.891,1.051,0.887,0.963,0.842,1.009,0.87,0.951,0.949,1.049,1.109,1.041,1.065,0.921,1.229,1.094,0.913,0.995,1.169,1.172,0.96,0.957,1.005,1.136,0.956,1.175,0.975,0.943,1.06,0.993 +XM_370967,1.093,1.062,1.036,1.011,0.905,1.041,0.846,0.901,1.111,1.025,1.039,0.978,0.882,0.91,0.841,1.039,0.989,1.018,0.886,0.999,0.818,0.889,0.942,0.908,1.017,1.274,1.041,0.966,0.893,0.964,1.035,1.034,0.901,1.168,1.0,1.059,1.052,0.944,0.996,1.009,0.934,1.146,0.935,0.861,1.074,1.11,1.114,1.0,1.0,0.991,0.978,1.006,1.013,0.97 +XM_370975,1.062,1.112,1.137,1.036,1.121,1.086,0.882,0.965,0.946,0.963,0.997,0.901,1.055,0.922,0.997,1.04,0.981,1.051,0.986,0.969,1.032,1.126,1.049,1.065,0.975,1.118,0.973,1.199,0.909,1.044,1.046,0.992,0.927,0.974,1.161,0.991,0.972,1.072,0.986,0.951,1.004,0.998,1.007,1.175,1.077,0.977,1.035,1.064,0.901,1.011,0.968,0.991,0.94,0.98 +XM_370981,0.955,0.885,1.036,1.147,0.969,0.966,0.878,0.724,1.467,1.464,0.802,0.95,0.962,1.123,0.799,1.044,1.099,1.013,0.895,0.932,0.792,0.977,0.85,0.967,0.878,0.992,1.049,1.085,1.054,0.918,1.257,1.104,1.401,1.127,1.418,0.919,0.859,0.928,1.134,1.007,1.307,1.009,1.114,0.878,1.002,1.072,1.492,0.943,1.102,1.047,1.072,1.096,1.16,1.38 +XM_370984,1.058,1.078,1.002,1.017,1.024,1.061,1.064,0.86,1.09,1.165,0.886,1.007,1.015,0.962,0.973,1.004,0.965,0.983,1.039,0.934,0.917,1.021,0.774,1.0,1.035,0.966,1.01,0.991,1.042,1.002,1.046,1.286,0.955,1.11,0.989,0.922,1.11,0.99,1.031,0.92,1.001,0.978,1.069,0.911,1.007,0.987,0.837,1.011,0.917,0.992,1.028,1.008,1.017,1.017 +XM_370987,1.059,0.969,1.226,0.949,0.983,0.966,1.103,1.054,0.974,0.994,1.017,0.981,1.06,1.049,0.868,0.934,1.024,0.921,1.078,0.927,0.977,0.992,0.935,0.97,1.053,1.024,0.85,1.113,1.032,0.966,1.013,0.91,0.999,0.896,1.011,1.007,0.946,1.04,1.004,1.224,1.046,0.858,1.007,0.945,0.9,1.099,0.937,1.034,0.986,1.14,1.052,1.021,0.98,1.027 +XM_370993,1.002,1.004,1.266,1.027,0.952,1.064,0.968,0.848,0.984,0.957,1.117,0.864,0.882,1.056,1.226,1.37,0.972,0.854,1.072,1.119,0.859,0.931,1.139,0.977,0.936,0.921,1.048,0.932,1.095,1.065,0.953,0.826,1.371,1.17,0.776,0.95,1.092,0.91,0.862,0.818,1.087,0.88,0.819,1.075,0.944,0.863,0.935,0.854,1.011,0.947,1.038,0.914,1.101,0.822 +XM_371007,0.874,1.064,0.962,0.949,0.908,0.964,1.024,0.922,1.143,0.887,0.799,0.988,1.037,0.83,1.074,0.96,0.996,0.956,1.034,0.917,1.179,0.899,1.086,1.039,1.022,0.996,1.01,0.912,0.801,0.926,0.907,1.268,0.992,1.001,1.003,0.986,1.111,1.02,1.136,1.011,0.994,1.148,0.794,1.088,0.993,0.974,0.978,0.854,0.89,0.875,1.051,1.06,1.176,1.507 +XM_371008,0.927,0.952,1.025,0.969,1.019,0.998,0.959,1.0,0.935,0.825,0.881,1.015,0.999,0.939,0.954,0.978,0.947,0.861,0.954,1.103,0.957,1.004,1.0,1.045,1.004,0.893,1.109,0.967,0.984,1.103,1.148,1.54,1.007,1.33,0.914,0.966,0.909,0.843,1.174,1.133,0.94,0.993,0.878,1.045,0.918,0.927,0.998,0.947,0.908,0.961,0.929,0.878,1.079,1.216 +XM_371010,1.039,0.701,1.119,1.026,0.891,0.968,0.53,0.72,0.924,0.955,0.833,1.014,1.048,0.746,0.818,0.9,0.976,0.8,1.638,0.89,0.919,0.868,1.303,1.032,0.76,1.49,1.422,0.847,0.186,1.005,0.938,1.455,1.406,1.55,0.481,0.906,0.694,0.794,1.133,1.436,0.957,1.005,0.199,1.46,1.355,0.676,0.888,1.081,0.518,1.073,0.855,0.735,1.462,1.259 +XM_371012,0.905,1.034,0.868,0.943,1.039,1.021,1.373,1.037,0.85,0.983,1.049,1.07,1.021,1.093,1.146,1.072,0.891,1.067,0.997,0.847,1.134,1.051,1.093,1.022,1.059,0.906,0.863,1.277,0.796,0.948,1.101,1.012,0.963,1.044,1.003,0.988,1.158,0.959,1.048,1.043,0.987,0.973,0.924,0.989,1.136,0.994,1.074,1.086,0.902,1.073,0.927,1.0,0.879,1.26 +XM_371015,1.031,0.957,1.211,0.935,1.092,1.073,1.135,1.017,1.192,1.199,0.986,1.083,0.994,1.073,0.878,1.067,1.032,1.236,0.986,0.929,1.061,1.207,0.927,0.947,0.901,1.251,1.01,1.046,0.949,0.942,1.08,0.967,1.061,0.898,1.051,0.994,0.904,1.081,0.935,0.875,1.052,0.925,0.912,0.998,1.071,1.015,1.189,1.089,0.953,1.091,0.888,1.001,1.024,1.105 +XM_371016,0.8,1.43,1.243,1.134,0.701,4.078,0.798,0.907,0.894,0.927,1.655,1.221,1.237,0.654,1.006,2.964,1.16,1.242,1.186,1.559,0.751,0.955,1.478,1.475,1.001,0.743,0.892,0.741,0.595,0.944,1.401,1.157,0.792,3.843,0.84,0.737,2.601,0.871,0.834,0.797,0.821,2.013,0.801,0.656,1.011,1.308,0.757,0.866,1.612,0.8,2.21,0.705,0.904,2.138 +XM_371017,0.934,0.981,0.976,1.029,1.085,0.985,0.805,1.091,1.02,1.013,0.865,1.045,0.933,1.159,0.826,0.88,0.945,1.003,0.981,1.012,1.03,1.012,1.088,0.873,0.964,0.925,1.1,0.972,1.015,0.982,0.918,0.989,1.069,0.964,1.02,0.942,1.08,1.065,0.967,1.027,0.905,1.18,0.93,0.954,1.166,1.047,0.95,1.137,0.978,1.059,0.995,0.86,0.944,1.131 +XM_371020,0.918,1.036,0.874,0.992,0.969,1.707,0.89,1.032,0.876,0.933,1.399,1.004,0.915,0.795,1.183,3.099,0.869,0.956,0.83,1.365,0.998,0.905,1.602,0.83,0.88,0.801,0.878,0.822,0.62,1.51,0.938,1.26,1.125,1.136,0.97,1.104,1.563,0.776,1.191,1.282,0.774,1.127,1.283,1.125,0.895,1.177,1.346,0.86,1.548,0.839,1.295,0.95,0.839,1.32 +XM_371026,0.979,1.036,1.088,1.015,1.015,1.046,0.984,1.028,0.932,0.94,1.023,0.928,1.05,1.002,1.084,0.983,1.04,0.938,0.869,0.985,1.121,1.062,1.03,0.948,0.963,0.968,0.98,1.081,1.065,0.972,1.001,1.044,0.97,0.895,1.062,0.915,0.961,0.999,0.998,1.088,1.013,0.971,0.963,0.916,0.894,1.018,0.935,0.926,0.876,0.964,1.019,0.923,0.963,0.997 +XM_371028,1.331,1.014,1.041,1.125,1.286,0.788,0.928,1.164,0.99,0.981,0.982,1.139,0.906,1.22,1.002,0.961,1.153,1.022,1.064,1.002,1.136,1.286,0.921,1.319,0.829,1.291,1.147,1.1,1.11,1.032,1.051,0.998,0.891,0.874,1.037,0.945,0.934,0.995,0.943,0.835,1.144,0.954,0.936,0.898,0.958,1.044,1.023,1.124,0.909,1.06,0.949,0.959,1.082,1.098 +XM_371036,0.737,1.304,0.905,0.798,0.782,1.164,0.624,0.451,0.84,0.824,1.129,0.74,0.597,0.67,0.736,1.325,0.729,0.88,0.962,0.821,0.696,0.723,1.454,0.897,0.89,0.919,0.968,0.696,0.651,1.477,0.725,1.333,1.757,1.277,0.415,1.047,1.177,0.954,1.674,1.031,1.04,1.306,0.705,1.934,0.758,1.096,0.899,0.804,0.904,0.762,1.111,0.842,0.78,1.006 +XM_371052,0.984,1.064,0.865,0.965,1.169,0.947,0.934,1.03,0.946,1.007,0.989,1.016,0.954,0.887,0.823,0.985,0.996,1.095,0.891,0.986,1.181,1.14,1.118,1.035,0.978,0.965,1.059,1.094,1.21,1.016,1.065,1.219,0.957,1.167,0.987,1.215,0.843,1.081,0.893,0.936,1.062,1.049,0.863,0.883,0.872,1.002,0.918,0.945,0.976,1.02,1.147,1.01,0.937,1.111 +XM_371070,0.889,1.04,1.096,0.945,0.834,1.045,0.818,0.881,1.012,0.964,1.067,0.976,0.907,0.951,1.169,0.828,1.05,0.867,1.094,1.112,0.934,0.866,1.092,0.902,0.983,1.046,1.0,0.962,1.063,1.094,0.941,1.044,0.869,1.098,1.102,0.948,0.785,0.832,1.051,1.033,0.976,1.013,0.916,0.989,0.745,0.927,0.93,1.114,0.945,1.076,0.909,0.922,0.78,1.178 +XM_371074,0.869,0.989,1.23,0.811,0.85,1.13,0.755,0.844,0.992,0.967,0.782,0.71,0.78,0.882,1.011,0.989,1.397,1.066,0.96,1.147,0.903,0.935,1.058,0.932,0.809,0.859,0.993,0.92,0.68,1.235,1.128,1.796,1.239,1.075,1.065,0.681,0.904,1.061,1.276,0.874,1.008,1.022,0.757,0.87,1.071,0.844,0.932,0.975,0.927,0.963,1.038,0.983,1.045,1.227 +XM_371077,0.901,0.978,1.086,0.95,0.991,0.94,1.086,1.037,0.98,1.033,1.024,1.036,0.865,1.002,0.885,0.936,1.026,1.081,0.965,0.916,0.906,0.893,1.043,0.95,1.045,0.996,0.931,1.034,1.088,1.012,0.98,1.021,1.04,0.975,0.98,0.838,1.063,1.013,1.0,1.003,1.011,0.851,0.891,1.111,1.033,0.966,0.944,0.94,1.012,1.047,1.069,0.993,0.902,0.932 +XM_371082,0.845,1.076,1.122,1.132,1.11,1.141,1.0,1.037,0.884,1.096,0.934,1.196,1.145,0.919,1.134,1.073,1.032,0.89,1.292,0.918,1.137,1.126,1.071,0.988,0.995,0.994,1.138,0.952,1.063,1.0,1.032,1.011,1.154,0.908,1.056,0.973,0.946,0.868,1.008,1.1,0.903,0.93,1.008,1.056,1.082,0.941,0.992,1.073,1.051,1.069,1.01,0.936,1.219,0.927 +XM_371083,1.009,1.131,0.869,0.974,0.957,1.019,0.881,1.017,1.146,1.178,1.082,1.045,0.949,0.932,1.015,0.933,1.084,0.986,0.907,1.002,1.005,1.048,1.016,0.989,0.954,0.832,1.112,1.04,0.911,0.944,1.028,1.028,0.913,0.919,0.936,1.115,0.997,1.061,1.054,0.89,1.064,1.014,1.056,0.934,1.128,1.041,0.892,1.072,1.001,0.99,1.092,1.043,0.936,1.068 +XM_371085,0.989,1.119,0.924,0.82,0.862,1.219,0.663,0.787,1.03,0.793,1.179,0.898,1.018,0.718,0.904,1.409,0.993,0.929,1.157,0.937,0.755,0.972,0.803,1.03,0.939,0.886,1.051,0.741,0.841,1.172,0.809,1.241,1.661,1.625,0.684,1.083,1.03,0.922,1.875,0.833,0.971,1.048,0.599,1.759,0.858,0.859,0.923,1.158,0.706,0.805,0.918,0.7,0.924,0.876 +XM_371089,0.99,0.928,0.903,1.065,1.22,1.086,0.92,0.972,1.097,1.223,0.867,1.018,0.857,1.008,0.954,1.016,1.087,0.988,0.826,0.915,1.046,0.939,0.856,1.091,0.966,1.045,1.023,1.051,1.012,1.053,1.065,0.938,0.798,1.02,1.037,1.034,0.962,1.202,0.999,1.055,1.001,1.09,0.806,1.049,0.88,1.048,0.995,0.998,0.949,1.158,1.162,0.887,1.112,0.998 +XM_371098,0.539,1.829,0.893,0.746,0.742,1.039,0.872,0.593,0.748,0.741,1.006,0.872,0.59,0.552,0.666,0.733,0.763,0.866,0.751,1.064,0.545,0.553,1.611,0.707,1.027,0.637,1.042,0.821,0.421,1.146,0.586,4.013,0.858,1.724,0.476,1.11,0.924,0.695,1.197,2.048,0.955,1.493,0.364,1.517,0.719,0.982,1.101,0.664,0.754,0.599,0.923,1.178,0.913,1.624 +XM_371105,0.94,0.985,1.072,0.834,0.965,1.141,1.118,1.266,1.063,0.915,1.025,1.023,0.894,1.212,1.281,0.935,0.984,1.065,0.854,1.099,0.97,0.999,0.921,0.967,0.933,1.067,0.98,1.03,1.32,1.124,0.97,1.001,1.054,0.929,0.955,0.891,1.035,0.966,1.038,1.09,0.968,0.969,0.968,1.049,1.006,0.97,1.041,0.954,1.144,0.994,0.989,0.976,1.049,1.054 +XM_371114,0.997,1.071,1.07,0.905,1.061,0.882,1.136,0.986,1.0,1.021,0.997,0.964,0.838,1.063,1.031,0.909,0.913,0.932,0.944,0.96,1.179,1.036,0.968,1.023,1.068,0.998,0.997,1.107,1.134,1.135,1.011,1.542,1.029,1.011,1.047,0.908,1.077,1.01,0.937,0.981,1.024,0.937,1.641,0.973,0.919,0.941,0.936,0.987,1.0,0.984,0.955,0.996,1.133,1.05 +XM_371117,0.659,1.022,1.374,0.614,0.836,1.465,0.538,0.682,1.589,0.863,0.789,0.933,1.005,0.781,1.153,2.263,0.948,0.754,0.837,1.065,0.262,0.646,1.181,1.361,0.475,0.542,1.773,1.022,0.128,1.227,1.452,1.274,3.211,1.676,0.294,0.242,0.948,0.932,1.346,0.873,1.209,1.101,0.114,0.558,1.116,0.88,1.104,0.65,0.699,0.759,1.343,0.564,0.449,2.367 +XM_371139,0.962,1.009,1.49,0.998,1.248,0.909,0.986,1.493,1.554,1.038,0.839,1.262,1.002,1.106,1.116,1.079,1.005,1.005,1.497,1.03,1.117,1.553,0.821,1.389,0.949,0.996,1.286,1.482,0.78,0.965,1.367,0.975,1.159,1.161,1.29,0.843,0.926,1.52,0.843,0.958,1.344,0.872,0.815,0.876,1.115,0.856,1.076,1.233,0.865,1.174,0.959,0.991,0.984,1.246 +XM_371140,1.05,1.076,1.138,1.119,0.944,1.029,0.937,1.168,0.909,1.097,0.925,0.927,0.953,1.078,1.206,0.933,0.942,1.087,0.996,0.891,0.923,1.031,1.025,0.889,0.954,1.002,1.034,1.1,0.896,1.022,0.944,1.03,0.845,1.123,1.127,0.971,1.027,0.876,0.97,1.008,1.113,0.917,0.94,1.051,0.952,0.995,0.972,1.037,1.062,0.994,0.952,1.093,0.91,0.948 +XM_371146,1.033,1.1,0.954,0.979,0.867,1.041,0.802,1.04,0.981,1.019,1.133,1.017,0.974,0.932,1.082,0.993,1.017,0.944,0.946,1.092,0.971,0.975,1.06,0.994,1.033,0.974,0.988,0.988,0.885,0.999,1.015,0.989,0.955,1.106,1.036,1.036,1.101,1.09,0.98,1.121,0.937,0.966,1.135,1.019,0.947,0.884,1.031,0.943,1.05,0.943,1.07,0.982,1.014,1.106 +XM_371147,0.989,1.089,0.933,0.936,0.913,0.978,0.879,0.997,1.12,1.128,0.908,0.973,1.029,1.0,0.927,0.937,0.966,0.953,0.931,0.936,1.094,0.876,0.957,0.932,1.01,1.191,1.096,1.082,1.103,1.079,1.043,1.19,0.946,0.965,0.984,0.877,0.974,1.105,1.004,1.066,1.105,0.997,1.076,1.043,1.0,1.065,0.938,1.118,0.989,0.948,0.988,0.916,0.961,0.908 +XM_371158,0.95,1.049,0.984,1.039,0.828,0.972,0.73,0.829,0.979,1.004,0.975,0.999,1.01,0.891,0.945,0.919,0.96,1.16,1.1,0.885,1.056,0.925,1.072,0.984,1.179,1.036,0.973,1.046,1.18,0.921,0.875,0.913,1.063,0.893,1.072,0.878,1.024,0.94,0.886,1.001,0.981,1.129,1.088,1.201,1.005,1.034,0.876,1.07,1.096,1.105,0.927,1.049,0.782,0.917 +XM_371160,0.521,0.797,1.638,0.454,1.244,1.269,0.735,1.469,1.393,0.993,0.571,1.436,1.527,0.551,0.783,1.643,1.09,0.966,0.575,1.607,0.174,1.499,1.261,1.459,0.49,0.398,1.714,1.034,0.0516,1.237,1.38,1.506,1.433,1.137,0.22,0.477,0.859,1.761,1.39,1.275,1.097,1.148,0.0508,0.296,1.346,0.575,1.227,0.88,1.223,0.878,1.038,0.791,0.269,1.658 +XM_371164,1.067,0.934,1.037,1.125,0.999,1.054,1.015,0.982,1.044,1.21,1.166,0.923,0.951,1.184,0.988,0.905,0.932,1.08,0.92,1.002,1.203,0.978,0.913,0.97,1.127,1.235,1.103,1.104,1.056,1.021,0.978,1.159,1.029,1.034,1.06,0.896,0.992,0.975,0.975,0.894,1.113,0.981,0.995,0.969,1.022,0.999,0.964,1.043,1.023,0.993,0.893,1.01,1.06,1.132 +XM_371165,1.113,0.967,0.943,1.113,1.012,0.996,0.996,0.89,0.906,0.939,0.99,0.919,0.934,0.901,1.119,0.943,0.931,1.065,1.009,1.081,0.997,1.062,0.98,0.889,1.038,1.037,0.94,1.008,0.887,0.912,1.008,1.023,1.112,0.986,1.067,0.926,1.059,1.039,1.034,1.005,1.008,0.953,1.304,0.944,1.003,0.877,1.123,0.879,1.117,1.159,1.048,0.997,1.004,1.047 +XM_371167,0.936,1.108,0.844,7.139,0.904,1.016,0.978,1.002,0.896,0.95,0.899,1.095,0.939,0.733,0.799,1.04,1.076,1.079,0.91,1.251,0.948,0.865,0.878,1.115,0.937,0.938,0.838,1.114,1.19,0.964,1.014,0.928,0.838,1.024,1.171,0.901,1.277,1.064,0.959,1.069,0.838,1.047,1.049,0.895,0.968,1.179,1.0,1.11,0.817,1.011,1.049,0.693,1.286,1.266 +XM_371174,0.989,1.16,1.071,0.962,1.027,0.932,0.697,0.854,0.967,0.931,0.867,0.996,0.97,0.839,0.925,0.849,0.836,1.057,0.936,0.934,0.987,0.984,1.023,1.049,0.945,1.12,1.237,1.009,0.822,1.025,0.985,1.035,1.275,1.078,0.923,1.058,0.969,1.022,1.088,1.007,1.016,0.942,0.934,1.089,1.139,1.0,1.02,1.036,0.871,1.067,1.038,0.958,0.911,1.191 +XM_371176,0.917,0.94,0.817,1.177,1.055,1.103,1.032,0.969,1.216,1.105,1.252,0.959,0.963,0.928,1.063,0.812,1.11,0.849,0.901,1.072,0.999,0.955,1.116,1.017,1.051,1.07,1.071,1.135,1.416,1.022,1.012,0.934,1.202,0.966,0.911,1.047,0.99,0.956,0.868,0.868,1.049,1.031,1.018,1.079,1.124,1.0,1.107,0.901,0.963,1.057,0.959,1.072,0.941,1.105 +XM_371178,0.979,0.916,0.9,1.192,1.007,1.023,0.943,0.995,1.022,1.022,1.083,0.856,0.973,1.146,0.882,1.002,0.86,1.09,1.004,0.897,0.836,0.969,1.031,0.825,1.012,1.023,1.069,0.991,0.677,0.954,1.228,0.933,1.115,1.084,0.867,0.996,1.053,0.932,0.914,1.051,1.01,0.986,1.056,1.035,1.212,0.984,1.005,1.159,1.064,1.046,1.152,0.947,1.055,0.853 +XM_371181,0.981,1.054,0.97,0.98,1.145,1.005,1.202,1.042,0.895,1.047,1.082,0.908,0.867,1.014,0.941,0.853,1.095,1.042,0.993,0.979,0.931,1.072,0.844,1.011,0.946,1.13,1.159,1.093,0.837,0.97,1.024,1.139,1.004,1.023,0.844,0.989,0.968,1.06,1.029,0.971,0.999,1.081,1.151,0.952,1.029,1.072,1.066,0.917,1.049,0.985,0.987,1.001,0.898,0.977 +XM_371182,1.024,1.02,1.033,1.118,0.829,0.963,0.938,0.848,1.024,1.031,1.033,0.929,1.044,1.111,0.902,0.983,1.062,1.025,1.292,0.927,0.953,0.999,1.138,0.959,1.095,1.034,0.908,0.919,1.0,1.035,0.928,0.975,1.097,1.042,0.801,0.878,1.008,0.98,1.278,0.989,0.982,1.004,0.856,1.065,1.033,0.941,0.931,1.077,0.896,0.949,1.034,0.891,0.997,0.872 +XM_371184,1.015,1.11,0.901,0.947,1.02,0.925,1.011,1.006,0.986,1.123,1.17,1.004,0.923,1.149,1.217,1.084,1.07,0.933,1.078,1.037,0.843,1.056,1.049,0.966,0.999,1.074,0.933,0.994,0.932,1.084,0.909,1.211,1.088,1.152,1.073,0.986,1.048,0.947,0.976,1.09,0.968,0.961,1.095,1.038,0.968,0.98,0.996,1.03,1.055,1.004,0.918,0.875,0.941,1.035 +XM_371187,0.985,0.93,1.17,1.051,1.007,0.977,1.0,1.065,1.027,1.038,1.011,1.004,1.11,0.895,0.901,0.825,0.926,0.975,1.18,0.883,0.963,1.118,1.002,0.854,0.896,1.18,1.046,0.972,0.863,1.08,1.045,1.033,0.94,1.097,0.986,0.892,1.028,0.88,1.032,1.137,0.997,1.048,0.965,0.945,1.164,1.259,0.855,1.037,0.872,0.996,0.903,0.928,0.822,0.824 +XM_371192,0.984,1.01,0.894,1.011,1.064,1.272,1.166,1.254,0.917,1.129,1.134,0.956,1.224,1.023,0.878,1.11,0.827,1.064,0.987,1.018,1.031,0.806,0.928,1.062,1.158,1.05,0.81,0.863,1.103,1.044,1.034,0.909,1.005,1.012,0.904,1.258,0.987,1.056,0.961,1.101,0.97,0.801,1.01,0.978,0.847,1.138,0.921,0.988,1.04,1.149,0.935,0.859,1.042,1.262 +XM_371195,0.926,0.987,1.009,1.102,0.961,0.939,0.973,0.897,0.966,1.032,0.986,0.955,0.971,0.981,1.299,0.948,1.03,1.128,0.971,1.025,0.948,1.096,1.072,1.034,1.089,1.007,1.051,1.019,1.109,0.938,0.866,0.885,0.987,0.99,1.061,1.024,1.0,1.032,0.913,1.012,0.913,1.035,1.058,0.967,0.892,0.902,1.008,1.016,1.0,1.021,1.005,0.986,1.021,1.04 +XM_371197,0.968,0.868,0.948,0.834,0.977,1.145,0.89,1.044,0.984,0.914,0.94,0.923,1.077,0.918,1.071,0.81,1.109,1.003,1.153,0.987,1.04,0.944,0.913,1.029,1.146,1.016,1.203,0.981,0.8,1.006,1.09,0.961,0.975,1.027,1.017,1.045,1.101,1.057,1.276,1.026,1.005,0.967,0.834,1.022,1.027,1.025,0.886,1.02,0.935,0.963,1.062,0.942,0.86,0.787 +XM_371200,0.858,0.968,0.924,0.806,0.915,1.07,1.161,1.07,1.013,1.022,1.082,1.032,0.799,1.005,0.999,0.902,1.403,0.924,1.062,0.982,0.713,0.768,1.056,1.003,0.926,1.012,1.184,0.997,1.485,0.984,1.123,1.055,1.117,0.882,0.942,0.935,0.938,0.927,0.92,1.141,1.077,0.798,1.225,0.867,0.949,1.253,0.881,1.347,0.546,1.057,1.136,0.803,1.076,1.055 +XM_371210,0.96,1.035,1.047,1.021,0.948,0.996,0.902,1.155,0.95,0.949,0.93,0.997,1.061,1.07,1.137,1.015,0.96,1.056,1.007,0.951,1.0,0.975,0.952,1.072,1.002,1.169,1.053,0.977,0.859,0.946,0.974,0.954,0.968,1.222,1.142,1.076,0.901,0.923,1.031,0.929,1.058,0.981,0.999,0.976,0.946,0.965,1.021,1.108,1.029,1.026,1.141,1.017,1.085,1.005 +XM_371214,1.111,0.686,1.819,1.052,1.483,0.71,0.683,0.819,2.441,1.552,1.016,1.223,0.989,1.217,1.269,0.91,1.804,1.127,1.522,0.942,1.064,1.427,0.792,1.52,0.712,1.211,1.93,1.18,0.495,0.785,1.409,0.746,0.913,0.828,0.741,0.826,0.874,1.559,0.744,0.668,1.519,1.079,0.896,0.763,1.249,1.423,1.334,1.191,0.766,1.123,1.023,0.892,1.663,1.042 +XM_371222,0.923,1.115,0.954,0.972,0.95,0.987,0.951,0.915,1.065,0.909,0.95,1.013,0.989,0.946,1.096,1.129,1.011,0.93,1.072,1.007,0.891,0.934,0.993,0.94,1.063,1.099,0.969,1.051,0.936,1.141,0.943,1.008,1.079,1.107,1.082,0.991,0.977,1.091,1.083,0.954,0.997,1.127,1.111,0.904,0.971,0.987,0.989,1.083,1.062,1.017,0.999,0.927,1.022,1.012 +XM_371223,0.46,0.978,1.305,0.486,1.043,1.091,0.566,0.921,0.974,0.816,0.689,1.288,1.278,0.439,0.946,1.702,0.942,0.94,1.152,1.206,0.343,0.987,1.932,1.158,0.393,0.843,1.391,0.803,0.0204,1.047,1.067,1.031,2.337,1.472,0.19,0.752,0.871,1.233,1.545,0.803,1.049,1.134,0.0245,0.842,1.18,0.598,1.157,1.04,1.148,0.978,1.042,0.543,0.579,1.573 +XM_371237,1.122,0.951,0.986,0.725,1.215,0.862,1.064,1.291,0.82,0.907,1.058,0.813,0.998,0.977,1.671,1.158,0.923,1.056,1.206,0.949,1.103,0.796,0.842,1.144,0.851,1.039,0.991,1.031,0.972,0.936,0.859,1.118,0.992,1.021,1.07,0.877,0.86,0.912,1.086,1.039,0.923,1.266,1.481,0.989,0.833,0.748,0.81,1.092,1.161,1.009,1.002,0.87,1.382,1.155 +XM_371241,0.895,1.118,1.152,0.858,1.013,1.012,0.73,0.8,1.082,0.826,0.781,0.949,0.895,0.922,0.822,1.294,1.13,1.061,0.878,0.981,0.829,0.947,1.048,1.196,1.056,0.838,1.074,1.016,1.275,0.987,1.054,1.144,1.273,0.899,0.861,0.901,1.001,1.078,1.103,0.927,1.05,0.977,0.694,0.856,1.029,0.976,1.008,0.849,1.049,1.088,1.04,0.951,0.842,1.143 +XM_371246,0.847,0.768,0.899,1.042,0.732,1.463,0.83,0.686,0.724,0.713,1.736,0.753,0.664,0.762,1.252,2.897,0.808,0.876,1.198,1.282,0.971,0.681,1.534,0.801,0.818,1.033,0.943,0.646,0.702,1.191,0.786,0.861,1.362,1.502,0.466,0.917,1.42,0.715,1.661,0.698,0.788,1.555,1.028,1.532,0.903,1.5,0.76,0.746,0.977,0.909,1.28,0.665,1.071,0.94 +XM_371248,0.987,0.958,0.966,1.017,0.973,1.127,1.111,0.85,1.018,1.083,1.059,1.024,0.916,0.957,1.293,1.022,1.014,1.084,1.095,1.119,1.038,1.018,0.987,1.0,0.999,1.056,1.039,1.033,1.024,1.028,1.029,0.99,1.038,0.853,1.065,1.043,0.894,0.94,0.988,0.955,1.013,1.035,1.039,1.132,1.011,0.958,0.963,1.14,0.928,1.052,1.032,0.997,0.986,1.105 +XM_371258,0.77,1.083,0.958,0.958,0.826,1.992,0.99,0.756,0.882,0.698,1.571,0.878,0.885,0.867,1.436,2.226,0.687,1.058,0.869,1.387,0.623,0.899,1.443,0.855,0.821,1.01,0.831,0.772,0.817,1.286,0.976,0.958,1.028,1.828,0.575,0.59,1.878,1.03,1.322,0.521,0.897,1.634,1.238,0.94,0.767,1.196,0.779,0.892,1.316,0.718,1.213,0.679,0.763,1.168 +XM_371259,0.982,0.933,0.931,1.056,1.034,1.007,1.002,0.926,0.943,1.059,0.962,0.91,1.011,0.844,0.844,0.94,1.076,0.976,1.016,0.924,0.97,0.957,0.91,0.983,0.909,1.149,0.845,0.92,1.218,1.061,0.944,1.024,0.888,0.97,0.924,0.868,1.064,1.02,1.091,0.997,0.886,1.021,1.049,0.992,1.06,0.982,0.972,1.039,0.977,1.038,1.012,1.02,0.881,0.997 +XM_371262,0.868,1.135,0.925,0.9,0.981,0.97,1.111,1.113,0.895,0.928,0.999,0.9,0.962,0.996,0.96,1.011,0.845,0.884,1.014,0.883,0.893,0.996,1.094,0.871,0.961,0.892,0.949,0.96,1.127,1.14,0.909,1.454,1.21,1.19,0.877,1.23,0.958,0.916,1.197,1.517,1.001,1.264,0.86,1.039,0.959,1.08,1.009,0.881,0.908,1.015,1.09,1.335,0.892,1.016 +XM_371265,0.949,0.895,0.947,0.974,1.052,1.045,1.048,0.921,0.976,0.964,1.042,1.004,0.875,0.893,1.156,0.846,0.999,1.239,0.921,0.873,0.907,1.053,0.922,1.004,0.998,0.986,0.996,0.953,1.213,1.01,0.99,1.067,0.994,1.03,1.001,0.984,0.984,1.034,0.994,1.069,1.024,0.918,1.036,1.027,1.076,1.08,1.016,1.011,1.008,1.072,0.912,1.014,0.963,1.049 +XM_371268,1.021,0.936,1.061,1.076,1.08,1.019,1.067,0.998,1.002,0.966,1.154,1.015,0.97,0.967,1.078,1.067,0.996,1.033,1.068,0.964,1.057,0.856,1.061,1.163,0.842,1.129,1.112,0.998,1.021,1.035,1.022,1.001,1.078,1.047,0.876,0.978,1.076,1.028,0.971,0.934,0.818,1.0,1.029,0.905,1.012,0.849,0.992,1.008,0.952,1.193,0.981,0.909,1.04,1.177 +XM_371270,1.029,1.001,1.037,0.847,0.99,1.157,0.9,1.02,1.056,1.008,0.994,0.824,0.892,0.935,1.14,1.017,0.915,0.925,0.945,1.025,1.005,0.924,1.155,1.17,0.828,0.873,1.029,0.853,0.928,1.126,0.879,0.787,1.287,1.089,0.809,1.098,0.938,1.02,0.976,0.954,1.06,0.89,1.357,0.981,0.911,1.013,1.112,1.15,0.948,0.994,0.948,1.165,0.826,1.073 +XM_371277,1.075,0.975,1.006,1.014,0.948,1.03,1.233,1.171,1.047,0.943,0.943,1.006,0.866,1.174,1.155,1.059,0.938,1.051,0.98,1.0,1.054,0.9,0.863,0.848,1.069,1.002,0.951,0.891,1.27,0.846,0.841,0.977,1.094,0.968,0.992,1.039,1.1,1.059,0.953,1.149,1.167,1.084,0.956,1.096,0.96,1.057,1.026,1.034,0.954,0.949,0.889,1.057,1.083,0.938 +XM_371278,1.104,1.024,1.029,0.936,0.861,0.971,0.928,0.959,0.987,1.051,0.864,1.024,1.019,0.93,0.882,0.997,0.983,1.041,0.977,0.981,1.039,0.962,0.94,1.015,1.072,1.087,0.98,1.012,1.007,0.971,1.134,1.018,0.91,1.05,0.918,1.065,1.077,0.977,1.041,0.957,0.978,1.101,0.848,1.076,1.037,0.915,1.011,1.079,1.044,0.956,0.874,0.984,0.994,1.042 +XM_371284,0.886,1.116,1.211,1.28,1.094,1.124,0.889,0.892,1.082,0.984,0.926,0.936,0.916,1.325,0.719,1.036,0.959,0.935,1.028,0.969,0.866,1.105,1.016,0.956,0.933,1.071,0.815,0.85,1.083,0.975,1.049,1.133,1.014,0.954,0.987,0.935,0.963,0.972,1.083,1.017,0.869,0.949,1.016,0.941,0.893,1.023,1.002,0.989,1.008,0.894,1.125,1.04,1.337,1.048 +XM_371286,0.975,1.023,1.029,1.043,1.031,0.923,1.112,0.926,1.059,1.014,0.991,1.089,0.957,1.097,1.025,1.002,0.913,0.915,0.906,0.99,0.927,0.921,1.123,0.928,1.056,1.069,0.999,1.015,1.161,1.0,1.047,1.071,0.865,0.85,1.019,0.944,0.911,0.986,1.033,0.9,1.016,0.863,0.986,1.04,0.863,0.957,1.024,0.993,1.091,1.008,0.922,0.978,1.09,1.033 +XM_371291,1.012,1.021,0.964,1.122,1.053,1.02,1.047,0.89,0.954,0.914,0.991,1.113,0.993,1.095,0.872,0.949,1.035,0.965,1.011,0.899,0.888,0.945,0.907,0.947,0.963,1.076,0.967,1.025,0.921,0.981,1.006,1.067,0.984,0.916,0.926,0.985,1.0,1.101,1.079,1.111,1.135,0.891,0.894,1.017,0.925,0.914,0.973,0.934,1.004,0.779,1.088,1.063,1.032,1.01 +XM_371299,1.058,1.16,0.98,0.982,0.977,0.961,1.031,1.022,0.864,1.034,0.988,1.005,1.096,0.842,1.113,1.052,1.032,0.94,0.919,1.123,1.05,0.942,1.066,0.954,1.03,0.913,0.931,1.037,1.026,0.879,0.997,1.153,1.122,0.916,1.024,1.127,0.862,1.037,1.103,0.819,1.133,1.007,0.964,1.013,1.074,0.986,0.885,1.089,0.927,1.027,0.921,1.014,1.045,0.927 +XM_371310,0.866,1.126,0.971,0.87,0.97,1.018,0.886,0.904,1.033,0.948,0.979,0.969,0.89,0.861,1.076,1.035,0.957,1.057,0.823,1.121,0.868,1.039,1.03,1.018,0.978,1.008,0.986,0.987,0.749,1.059,1.007,1.104,1.113,1.082,0.961,1.035,1.001,0.91,1.155,1.066,0.934,1.08,1.266,1.01,1.072,0.99,0.873,0.923,0.885,0.969,0.959,1.017,0.942,1.14 +XM_371315,1.137,0.999,1.02,0.95,0.991,0.913,0.989,1.168,1.062,0.865,0.908,1.09,1.017,0.996,1.061,1.015,1.108,1.002,1.076,0.919,1.078,0.927,0.885,1.085,0.96,0.956,1.147,0.935,1.029,0.929,0.939,0.97,0.998,1.14,1.127,0.954,1.017,1.084,1.003,1.073,1.023,1.025,0.936,1.004,0.992,0.984,1.09,1.001,1.053,0.946,0.981,1.016,0.986,1.036 +XM_371328,0.881,0.864,1.115,0.783,1.065,1.171,1.049,0.818,1.009,1.081,1.189,1.059,1.026,0.879,0.969,1.091,0.881,0.916,0.911,1.057,0.802,1.065,1.353,1.258,0.92,0.764,1.602,0.97,0.735,1.055,1.061,1.114,2.348,0.908,0.781,0.992,1.027,0.998,1.441,1.076,1.04,0.903,0.778,1.087,0.816,0.917,1.065,1.019,1.024,0.801,1.133,1.062,0.901,1.587 +XM_371336,1.03,0.875,1.039,0.935,0.842,0.948,0.995,1.019,0.982,1.0,0.828,0.857,0.943,1.055,0.847,1.012,1.109,0.998,1.043,1.039,0.944,0.944,1.032,0.973,0.857,1.081,0.964,0.902,0.762,0.847,1.012,0.903,1.009,1.098,0.915,1.049,0.995,0.942,0.953,1.161,0.963,1.015,1.007,1.192,1.05,1.019,1.022,1.06,0.961,0.961,0.982,0.981,1.047,1.105 +XM_371338,0.973,0.942,1.203,0.924,0.867,0.956,0.783,0.943,0.957,1.099,0.934,1.006,1.009,0.992,1.241,1.102,0.972,0.908,1.036,0.965,0.921,1.043,0.934,1.059,0.843,0.95,1.001,0.897,1.0,0.929,0.998,2.209,11.06,0.875,1.047,1.212,0.977,1.033,0.977,1.123,1.0,0.95,0.926,4.026,1.001,1.006,1.27,0.946,0.845,0.945,0.994,1.105,1.06,0.931 +XM_371340,0.93,1.042,1.024,1.019,0.861,0.996,0.918,1.137,0.978,0.895,0.956,1.164,0.997,0.939,0.951,1.086,1.08,0.911,1.049,0.956,0.951,1.1,0.894,1.049,0.988,0.968,1.006,0.985,1.069,1.025,0.951,1.002,1.127,0.867,1.133,0.922,0.942,1.203,1.006,1.09,0.921,1.03,0.786,1.056,1.083,0.939,1.03,1.04,0.998,1.069,0.977,0.915,0.987,1.137 +XM_371352,1.0,0.873,0.914,1.047,0.971,0.992,1.158,0.989,0.982,1.199,1.008,0.953,0.97,1.009,1.207,1.065,0.995,0.931,0.955,1.111,1.155,0.989,1.063,1.001,0.924,1.015,1.158,1.027,1.456,0.983,0.99,1.003,0.906,1.019,0.996,1.003,1.12,0.784,1.022,1.067,0.976,1.055,1.041,1.121,0.93,0.872,1.069,1.088,1.026,0.93,1.09,0.938,0.997,0.882 +XM_371357,1.065,1.013,0.91,1.016,0.983,1.069,1.096,0.921,1.015,0.958,1.017,0.869,1.044,0.92,0.852,1.012,0.933,1.033,1.051,1.034,1.101,0.954,1.08,1.066,1.027,0.956,1.017,0.951,1.225,0.973,0.985,0.965,1.128,1.127,0.964,0.944,1.035,1.043,1.077,0.996,1.029,0.964,1.138,0.954,0.927,0.948,0.962,1.05,1.001,0.954,1.084,0.987,1.07,0.978 +XM_371358,0.997,1.091,1.005,1.006,1.16,1.12,1.098,1.127,0.906,0.942,0.98,1.003,0.952,1.03,1.206,1.054,0.95,0.971,1.027,1.076,1.23,1.063,1.121,1.113,0.996,0.9,0.923,1.003,1.118,1.028,0.94,1.105,0.895,0.917,1.221,0.983,0.973,0.937,0.973,1.057,1.026,1.074,1.275,0.982,1.083,1.091,1.064,0.969,0.973,0.944,1.1,0.951,0.993,0.934 +XM_371359,0.967,1.075,0.985,0.973,1.139,0.985,1.041,0.882,1.133,1.093,0.936,0.92,1.118,1.006,0.988,0.83,1.173,0.996,0.932,0.997,1.003,0.978,0.959,0.962,0.973,1.088,1.36,1.062,0.787,1.017,0.928,1.112,0.846,1.157,0.926,1.005,1.064,0.977,0.948,1.032,1.006,1.035,0.908,0.917,0.98,0.943,0.989,1.065,1.015,0.96,1.025,0.981,1.056,1.018 +XM_371380,0.74,0.718,0.932,0.71,0.985,0.993,0.424,0.67,1.367,0.938,1.6,0.745,0.85,0.936,0.741,1.772,0.669,1.26,1.499,1.08,0.633,1.023,1.043,0.927,0.469,1.27,0.984,1.18,0.229,0.996,0.923,1.639,1.483,1.493,1.062,2.909,0.893,1.051,1.052,0.964,1.0,1.294,0.385,2.535,0.799,0.978,1.577,1.168,0.672,0.642,1.068,1.263,0.769,1.317 +XM_371397,1.099,0.984,0.945,0.922,1.081,1.144,1.184,0.809,1.063,0.977,0.921,0.988,1.018,0.996,1.101,0.965,1.037,1.0,1.121,0.899,1.044,0.985,1.041,1.08,1.048,1.041,1.055,0.911,0.806,0.972,1.042,1.097,0.951,0.88,1.13,0.941,1.026,0.944,0.948,0.958,0.922,0.956,0.857,1.063,1.058,0.972,1.033,0.943,1.025,0.936,1.027,1.124,0.902,0.966 +XM_371398,0.957,1.036,0.944,1.072,0.975,0.978,1.001,1.016,0.966,1.007,1.112,0.974,1.048,0.955,1.185,0.907,0.911,1.049,1.042,1.137,1.053,0.962,1.151,0.993,1.159,1.018,1.198,1.088,2.423,1.2,1.062,0.938,1.096,1.103,0.919,1.105,1.043,1.053,1.098,1.055,1.058,0.965,1.359,1.052,1.131,1.039,1.093,0.997,1.004,1.008,0.897,0.903,0.815,0.981 +XM_371401,0.921,0.935,0.98,0.885,0.939,1.028,1.029,1.06,1.097,0.916,1.011,0.933,1.0,0.987,0.958,0.92,0.954,0.979,0.974,0.937,1.0,1.007,0.928,0.967,1.032,1.04,0.963,1.004,1.284,0.935,1.014,1.011,0.993,0.974,1.055,1.028,1.116,0.86,0.984,1.033,1.051,0.942,1.125,0.987,1.122,1.047,1.012,0.869,0.911,0.999,1.001,1.002,0.988,1.02 +XM_371402,1.011,1.052,1.008,1.02,0.912,1.032,1.069,0.981,1.001,0.953,0.899,0.822,0.953,1.004,1.752,0.987,0.967,1.005,0.969,1.023,1.016,1.092,0.957,1.0,0.99,1.021,0.985,1.023,1.241,1.024,1.019,0.964,0.932,0.956,1.009,0.96,0.925,1.034,1.095,0.967,1.054,0.991,1.056,1.028,0.936,0.946,0.929,0.948,1.004,0.952,1.015,0.966,1.059,1.275 +XM_371411,0.82,0.834,0.93,0.755,0.866,1.012,0.905,0.946,1.0,0.776,0.832,1.009,0.867,0.772,0.841,1.068,0.837,0.925,1.126,1.288,0.919,0.894,1.004,1.012,0.838,0.974,1.28,0.855,1.06,1.009,0.908,1.025,1.097,1.362,1.023,1.023,1.158,1.055,1.195,1.189,0.879,0.998,0.934,0.821,1.168,0.766,0.952,0.851,1.0,0.939,1.057,0.852,1.058,1.369 +XM_371414,0.937,0.834,1.143,0.841,0.981,0.752,0.73,0.797,1.229,1.199,0.816,0.884,0.749,0.943,0.758,0.873,1.137,0.987,0.959,0.925,0.856,0.974,1.094,1.126,0.901,0.946,1.248,0.919,0.527,0.95,1.072,1.312,1.205,1.005,0.579,0.99,1.011,0.899,1.103,1.446,1.201,1.085,0.962,0.997,1.168,0.911,0.804,0.858,0.8,0.841,1.124,0.914,0.817,1.295 +XM_371415,1.125,0.999,1.043,1.073,1.094,1.049,1.07,1.062,0.961,0.958,1.121,0.889,0.913,1.001,0.932,1.112,1.084,1.019,0.866,1.043,0.94,1.027,1.14,1.045,1.217,0.976,0.967,1.072,0.748,0.971,1.075,1.275,0.938,1.048,0.982,0.842,0.889,0.915,0.94,0.887,1.067,0.911,0.99,0.967,1.103,0.966,1.028,0.902,0.9,1.064,1.176,0.996,1.014,1.022 +XM_371418,0.924,0.903,1.079,1.021,0.926,0.897,0.949,0.986,1.006,0.88,1.027,0.891,0.867,1.019,0.906,0.972,1.048,0.946,1.01,1.039,0.993,0.885,0.966,1.182,0.973,1.014,0.969,1.022,1.121,1.059,1.022,1.039,0.951,1.037,0.978,0.969,1.001,0.989,1.007,0.902,1.105,0.953,1.219,1.039,0.997,1.02,1.021,0.97,0.857,1.048,0.947,1.066,0.983,0.945 +XM_371459,0.426,1.303,0.768,0.745,0.61,2.424,0.943,0.374,0.702,0.629,2.174,0.513,0.471,0.421,1.169,2.088,0.503,1.216,0.754,1.517,0.321,0.615,1.84,0.643,0.716,0.656,0.834,0.664,0.831,1.88,0.682,1.057,0.749,1.685,0.434,0.847,1.879,0.549,1.393,0.823,0.706,1.805,1.074,1.18,0.624,1.543,0.995,0.674,1.707,0.587,1.411,0.751,0.62,0.972 +XM_371460,0.832,0.896,0.935,0.969,0.864,1.49,0.949,0.789,1.072,1.103,1.182,0.769,0.961,1.02,0.913,1.537,0.839,0.954,0.998,1.102,0.906,0.984,0.981,0.91,1.044,1.009,0.916,0.895,0.982,1.137,1.055,1.47,1.27,1.337,0.843,0.79,1.053,0.85,0.927,1.077,0.799,1.361,1.036,1.133,0.918,1.014,1.019,1.055,1.007,0.76,0.971,0.798,0.862,0.94 +XM_371463,1.099,0.897,1.006,1.143,0.937,0.958,1.027,0.915,0.899,0.903,1.142,0.951,0.939,1.071,1.095,1.033,1.06,1.013,0.932,1.017,0.952,0.945,1.014,0.978,0.99,1.031,1.071,1.023,0.968,0.95,0.949,1.061,0.961,1.074,1.15,0.96,1.002,0.996,0.904,0.998,1.054,0.947,1.087,1.063,1.044,0.863,0.923,0.966,0.994,1.041,0.922,1.048,1.079,1.001 +XM_371468,1.047,1.071,0.865,1.061,0.935,1.053,1.116,0.81,0.963,0.991,0.964,0.974,0.926,0.982,0.865,0.945,0.979,0.973,1.09,1.049,0.951,0.923,1.018,0.992,1.033,0.905,0.919,0.942,1.04,1.027,0.87,0.999,1.015,1.098,1.049,1.089,1.031,0.975,1.109,0.912,0.94,1.126,0.871,0.99,0.95,0.918,0.999,0.958,1.082,0.922,1.048,0.976,0.95,1.215 +XM_371469,1.074,1.156,1.028,0.88,1.0,1.024,0.812,0.903,1.038,0.899,0.964,1.058,0.96,1.022,1.181,1.012,0.947,1.056,1.043,0.858,0.796,0.963,1.202,1.054,0.972,1.329,1.006,1.098,1.296,0.905,0.944,1.095,0.917,0.973,0.916,0.976,1.0,0.99,1.022,1.021,1.028,1.159,1.178,0.902,0.974,0.949,1.1,1.013,1.046,0.872,1.036,0.968,0.847,1.153 +XM_371474,0.737,1.14,0.964,1.005,0.665,1.265,0.841,0.403,0.815,0.493,1.112,0.441,0.438,0.425,0.736,1.431,0.866,1.316,1.095,1.228,0.65,1.048,1.997,0.606,1.123,0.86,0.986,0.488,1.09,1.603,0.605,1.261,1.06,1.575,0.728,1.364,1.078,0.77,2.948,0.654,0.703,1.171,0.543,1.067,0.67,0.826,0.583,0.935,0.726,0.781,1.165,0.666,0.595,1.025 +XM_371477,0.934,1.022,0.997,0.957,0.97,0.965,0.935,1.088,0.94,1.079,0.979,0.917,0.937,1.062,0.916,1.113,0.97,0.998,1.035,0.985,1.011,1.04,1.025,0.983,1.099,0.849,0.989,1.024,0.932,1.112,0.906,1.07,0.914,0.942,1.119,0.964,1.015,1.011,0.986,0.978,0.864,1.006,0.985,0.929,0.962,0.837,1.068,0.907,1.049,1.167,0.993,1.061,1.058,0.985 +XM_371480,0.902,1.014,0.912,1.053,0.886,1.039,1.04,1.115,0.853,1.081,1.073,1.047,1.047,0.947,1.045,0.922,1.011,0.98,0.952,0.961,0.941,1.0,1.036,1.098,0.967,0.873,1.103,0.959,0.815,0.949,0.953,0.959,0.922,1.073,1.078,0.867,0.966,0.967,0.937,1.035,1.04,0.996,1.105,1.022,0.944,1.102,0.985,1.009,1.007,1.049,1.023,1.112,1.119,0.846 +XM_371488,1.09,0.932,0.998,1.01,0.867,1.023,1.086,1.048,1.076,1.121,1.099,1.014,0.965,0.993,0.855,1.003,0.989,1.062,1.032,1.002,1.053,1.01,0.971,0.985,1.002,1.037,0.851,1.069,0.978,0.91,0.954,1.066,0.919,0.894,1.041,1.037,0.919,0.957,1.02,1.045,0.954,1.012,0.899,1.135,0.942,1.109,0.944,0.979,0.914,1.106,0.872,1.085,0.973,0.895 +XM_371494,1.021,0.925,0.927,1.047,1.099,1.018,0.989,0.846,0.945,1.102,0.993,0.918,1.028,0.895,0.818,1.315,1.022,1.087,1.064,1.171,0.977,1.146,1.074,1.067,1.018,0.887,0.967,1.021,0.795,0.977,0.959,1.003,0.94,1.075,1.118,0.966,1.062,1.031,1.074,0.972,1.062,1.134,0.892,1.002,0.984,1.094,0.954,1.004,0.925,0.964,0.983,0.93,0.962,1.115 +XM_371497,1.231,0.899,0.854,0.917,1.038,1.127,0.755,0.839,1.199,1.008,0.883,0.93,0.99,0.887,0.833,0.803,1.027,0.756,0.776,1.058,0.798,1.081,0.86,1.053,1.08,0.9,1.155,1.032,0.953,1.215,1.01,1.225,1.42,0.69,0.984,0.994,0.807,1.09,1.27,0.895,1.058,0.907,1.097,1.135,0.998,1.04,0.957,0.905,0.985,0.994,0.767,0.826,0.699,1.087 +XM_371500,1.068,1.149,1.178,1.027,1.022,1.027,1.108,1.064,1.031,1.074,1.024,1.02,0.964,0.969,0.883,0.932,1.124,0.943,1.013,0.993,1.11,1.029,0.936,1.056,0.95,1.016,1.015,0.958,0.912,1.015,0.956,0.951,1.016,0.967,1.021,0.965,0.989,0.95,0.943,0.969,0.887,0.842,0.95,1.018,1.089,1.084,1.104,1.094,0.982,1.028,1.009,1.038,1.025,0.993 +XM_371506,1.072,0.949,1.162,0.879,1.11,1.25,0.898,0.676,0.871,0.969,0.999,1.456,1.07,0.679,0.783,0.964,0.813,1.21,1.088,0.939,0.533,1.109,0.686,1.156,0.994,1.228,1.005,1.037,0.935,0.948,0.848,1.148,1.422,1.382,0.507,0.913,0.868,0.865,1.426,1.193,0.982,1.013,0.548,1.644,1.187,0.78,1.104,1.326,0.503,1.273,0.918,0.79,0.882,0.755 +XM_371515,1.131,1.069,0.925,0.967,0.96,1.062,1.133,0.989,1.184,1.009,0.846,0.881,0.852,0.774,0.885,1.051,1.108,1.033,0.919,1.068,1.318,0.904,0.936,1.117,1.104,1.112,0.78,1.081,1.526,1.003,1.058,1.032,0.928,1.18,0.875,1.093,0.995,1.042,0.95,0.933,1.026,1.074,1.148,1.057,1.059,0.851,0.986,0.984,0.991,1.029,1.119,0.966,0.889,0.934 +XM_371517,0.483,4.701,0.451,3.86,0.477,2.789,6.108,0.441,0.59,0.429,0.596,0.421,0.492,0.398,0.97,2.114,0.389,0.644,0.445,2.527,0.522,0.421,3.525,0.502,2.78,0.419,0.401,0.48,0.504,3.233,0.388,0.57,0.922,14.38,0.483,0.593,6.055,0.534,8.442,0.536,0.475,14.99,0.368,0.637,0.43,1.657,0.917,0.411,0.513,0.465,7.867,3.202,0.467,13.77 +XM_371540,0.883,0.948,0.975,0.995,0.899,1.221,1.419,1.063,1.166,0.953,1.103,1.006,0.998,1.045,0.807,0.833,0.896,0.937,1.113,0.946,0.941,0.898,0.999,0.942,1.002,0.909,1.031,0.991,1.322,1.323,0.932,1.773,1.598,1.023,0.905,1.827,0.994,0.882,0.98,1.202,1.034,0.983,1.282,0.913,0.991,0.94,0.933,1.053,0.812,1.182,0.992,1.001,1.069,1.261 +XM_371561,0.856,0.811,0.876,1.031,1.139,1.032,0.869,0.98,1.023,1.235,0.871,1.151,0.976,1.007,0.796,1.034,1.043,0.941,0.957,1.02,0.959,1.015,1.0,1.0,1.019,1.047,0.959,1.079,0.872,0.895,1.167,1.02,1.804,0.917,1.262,0.951,0.996,1.054,1.217,1.188,0.874,0.878,0.939,1.362,0.939,0.949,1.027,1.209,0.946,0.988,0.795,0.948,0.905,1.196 +XM_371576,0.998,0.954,1.082,1.012,1.044,1.141,0.904,1.018,0.92,1.047,0.991,0.958,1.03,0.921,1.523,1.001,0.931,0.988,1.028,0.924,1.088,1.021,1.001,0.956,1.021,1.087,0.873,1.065,0.91,0.946,1.031,0.882,1.088,1.019,0.955,1.042,1.03,0.928,1.026,1.127,0.936,1.007,0.872,0.981,0.969,1.092,1.042,0.961,0.951,0.879,1.007,1.026,1.015,0.999 +XM_371577,0.904,0.967,1.196,0.943,1.101,1.032,1.017,1.098,0.942,1.091,0.974,1.105,1.093,0.948,1.125,1.024,1.107,1.018,1.083,1.022,0.815,1.159,0.931,1.141,0.883,0.96,1.304,1.013,0.917,0.971,1.149,0.967,1.364,1.053,1.097,0.855,1.046,1.108,1.155,1.049,0.89,0.948,0.818,1.006,0.986,0.866,0.889,0.947,0.946,1.073,1.033,0.944,0.987,1.059 +XM_371581,0.854,0.991,0.965,0.927,0.996,0.974,0.803,1.15,1.002,0.868,0.877,0.981,0.885,0.925,0.964,1.068,1.06,0.942,0.875,0.977,0.891,0.944,0.908,1.024,1.05,1.01,0.976,1.041,1.314,1.008,1.013,1.006,1.188,0.888,0.954,0.952,0.947,1.003,1.038,1.246,0.991,0.955,1.038,1.084,1.057,1.081,1.066,0.953,0.914,0.904,1.005,0.919,0.988,1.004 +XM_371586,1.039,1.155,0.785,0.909,0.937,1.071,0.925,0.995,1.046,1.01,0.939,1.005,0.977,0.947,0.929,1.084,0.857,1.044,0.886,1.079,0.87,1.034,0.967,1.062,0.947,0.943,0.982,0.998,0.907,1.094,1.019,1.006,1.08,1.191,0.951,0.92,0.983,1.042,0.982,0.954,0.814,1.11,1.012,0.82,0.948,1.097,0.947,1.012,1.092,0.958,0.968,0.968,0.905,1.324 +XM_371592,1.197,0.978,1.027,0.974,1.087,1.033,0.88,0.997,1.007,0.946,1.001,0.926,0.988,1.112,0.945,1.028,0.967,0.922,1.005,0.918,0.996,1.046,1.07,1.058,0.979,1.015,1.004,0.898,1.024,1.0,0.912,0.999,1.049,0.896,1.195,0.945,0.999,1.188,0.94,1.029,1.035,1.013,0.924,1.042,1.005,0.934,1.081,1.039,0.968,1.005,1.077,1.036,0.999,0.931 +XM_371595,0.95,0.934,1.093,0.957,0.908,0.965,0.989,0.912,1.015,1.016,1.12,0.953,1.027,1.043,0.965,0.978,1.037,0.893,0.925,1.112,0.889,0.966,0.97,1.076,1.0,1.08,1.0,1.032,1.214,0.908,0.945,1.094,1.056,0.811,0.879,1.098,0.947,1.082,0.993,0.87,1.13,1.132,0.858,0.871,0.936,1.004,0.918,0.963,1.014,1.029,1.002,0.965,1.032,1.104 +XM_371604,0.875,0.926,0.963,0.933,1.038,0.965,0.903,0.944,0.907,0.827,0.933,0.947,1.066,0.96,1.422,0.943,1.028,0.98,0.975,1.078,0.93,0.893,1.125,0.94,0.871,1.007,1.02,0.942,1.244,1.104,0.905,1.363,1.093,1.055,1.038,0.962,1.095,1.037,1.261,1.552,0.891,1.013,0.941,1.212,0.965,0.971,0.928,0.958,0.988,0.988,1.032,1.25,0.991,2.019 +XM_371605,1.026,1.036,0.989,1.105,1.044,1.13,1.126,1.01,0.956,1.002,1.034,0.979,1.0,1.051,0.846,1.026,0.926,1.057,0.932,0.998,1.061,0.95,1.046,0.931,1.067,1.0,0.986,0.979,0.896,0.965,1.137,0.9,0.963,1.028,1.107,0.949,0.92,0.914,1.083,1.067,0.949,0.957,0.884,0.991,1.007,1.089,0.923,0.999,1.096,0.987,1.004,1.08,1.01,1.097 +XM_371614,0.957,0.844,1.07,0.725,0.822,1.098,0.744,0.686,0.96,0.889,0.839,0.711,0.719,0.882,0.956,1.002,0.945,0.797,1.076,0.923,0.828,1.125,0.959,0.946,1.039,1.222,1.397,0.699,0.757,1.315,1.118,1.363,1.22,1.33,0.73,0.652,0.967,1.02,1.559,1.688,0.828,1.143,0.64,1.064,0.984,0.764,0.95,0.923,0.777,1.075,0.92,0.888,0.906,1.267 +XM_371619,1.01,1.253,0.795,0.931,0.961,0.998,0.951,0.999,0.935,0.784,1.028,0.692,0.711,0.777,0.817,1.548,0.786,0.787,0.798,1.384,0.743,0.792,1.114,1.042,1.045,0.774,0.865,0.926,1.178,1.424,0.837,2.605,1.111,1.496,0.847,3.343,1.096,0.92,1.301,1.571,0.951,1.381,0.767,0.881,0.767,0.951,0.879,0.819,1.152,0.79,1.056,1.398,1.003,1.189 +XM_371622,0.613,1.083,1.261,0.609,1.021,1.213,0.473,0.747,1.311,0.9,0.629,0.933,0.896,0.616,0.893,1.291,0.9,0.876,1.373,1.065,0.61,0.732,1.393,1.141,0.536,0.989,1.35,0.974,0.0164,1.035,1.105,1.229,1.919,1.427,0.339,1.148,0.791,1.145,1.118,0.602,1.144,1.274,0.0135,1.163,1.163,0.762,1.023,0.838,0.904,0.88,0.973,0.659,0.788,1.278 +XM_371623,0.925,1.022,0.958,1.106,1.087,1.08,0.819,0.943,0.961,1.021,1.12,1.106,1.118,0.901,0.97,1.023,1.001,1.003,0.826,0.906,1.114,0.929,1.002,1.074,0.999,0.976,0.916,1.006,0.795,1.018,1.079,1.063,1.068,0.891,0.978,1.035,1.0,1.0,0.938,0.87,0.966,0.978,0.895,0.864,1.102,0.855,1.041,0.99,1.12,1.022,0.956,1.0,0.985,1.021 +XM_371625,1.031,0.983,0.978,0.983,1.147,1.047,1.092,0.948,1.063,1.053,0.989,1.045,0.936,1.017,0.829,0.94,0.964,1.113,0.959,1.038,1.127,1.037,1.039,1.129,1.014,0.949,1.117,0.979,1.214,1.059,1.015,1.122,1.002,0.925,1.094,1.161,1.082,1.095,1.003,0.981,0.866,1.034,1.184,1.128,1.116,1.045,1.035,1.073,0.888,0.962,1.077,1.148,0.923,0.969 +XM_371629,0.94,0.812,1.061,0.998,1.039,0.932,0.978,0.973,0.992,1.001,1.005,1.003,0.966,1.002,0.749,0.836,0.989,1.04,1.096,0.966,1.093,1.085,0.861,0.981,1.047,0.993,0.988,1.055,0.935,0.984,0.978,1.02,1.091,0.892,0.938,1.046,0.908,0.893,0.972,0.862,1.178,1.105,1.077,1.062,1.03,1.107,1.017,0.989,0.99,0.908,1.044,0.987,0.993,0.924 +XM_371643,1.176,0.895,1.009,0.97,0.933,0.94,1.124,0.993,0.915,0.95,1.079,1.015,0.972,1.079,0.927,0.99,0.928,0.937,1.042,0.974,1.066,0.996,0.942,1.073,0.928,1.043,0.997,1.065,0.953,0.981,1.135,1.039,1.002,1.033,0.979,1.045,1.0,0.891,0.985,1.123,0.988,1.064,1.006,0.931,0.96,1.099,1.039,1.008,1.081,1.116,1.002,1.027,1.045,1.072 +XM_371672,0.611,1.099,1.508,0.516,0.986,0.872,0.559,0.6,1.229,1.124,0.804,0.757,0.847,0.512,0.983,1.716,0.811,0.992,1.165,0.631,0.547,0.668,1.44,1.47,0.484,0.623,1.705,0.818,0.289,0.951,1.178,1.59,2.67,1.166,0.227,0.783,0.998,1.003,2.063,1.177,1.238,1.324,0.39,1.088,1.402,0.702,1.021,0.869,0.999,0.935,1.191,1.016,0.787,1.662 +XM_371678,1.149,0.903,1.024,0.796,0.826,1.024,0.969,1.255,1.111,0.851,1.021,0.983,0.975,0.928,0.808,0.77,0.998,1.055,0.986,0.931,1.093,0.855,0.982,1.002,0.861,1.051,1.059,1.062,0.697,1.0,1.072,0.95,0.975,0.818,0.896,0.994,0.893,1.031,0.902,1.084,0.947,0.948,1.043,1.018,1.113,0.93,1.121,1.109,0.975,1.084,1.041,1.137,0.952,0.888 +XM_371687,0.967,1.13,1.04,0.977,1.063,1.009,1.057,1.121,0.961,0.931,0.987,0.991,0.843,1.053,1.404,0.986,0.979,1.082,0.931,0.953,1.086,1.016,0.917,0.979,0.984,0.987,0.938,1.077,0.989,0.888,0.962,1.08,0.867,0.999,1.001,0.949,1.048,0.963,0.954,0.934,1.041,1.139,1.075,0.892,1.061,1.09,0.919,0.924,0.896,1.123,0.936,1.047,1.034,1.137 +XM_371690,0.914,0.993,0.984,1.041,0.997,1.018,0.939,0.908,0.985,1.004,0.984,1.033,0.965,0.962,0.994,1.066,0.968,0.957,0.911,1.021,1.051,0.951,0.895,0.935,1.077,1.12,0.967,0.984,1.233,1.015,1.146,0.918,0.917,0.865,1.047,1.04,0.977,1.02,1.059,1.124,0.944,1.076,1.003,0.931,1.03,1.082,0.903,1.05,1.053,1.006,1.018,1.01,1.075,0.938 +XM_371691,0.504,1.568,0.918,0.627,0.475,1.394,0.67,0.403,0.768,0.617,1.827,0.673,0.459,0.443,0.977,1.711,0.564,0.854,0.643,1.62,0.456,0.459,1.46,0.746,0.974,0.494,1.0,0.669,0.603,1.795,0.494,1.415,0.949,1.859,0.242,1.178,1.607,0.744,1.963,0.919,0.955,1.45,1.022,1.496,0.639,1.585,1.111,0.511,0.989,0.382,1.479,0.744,0.675,1.759 +XM_371693,1.0,0.956,1.007,0.966,0.975,1.043,1.004,0.944,1.007,1.112,0.956,1.175,1.117,0.9,0.905,0.926,1.059,1.013,0.914,0.961,1.1,1.046,1.038,0.919,0.94,1.067,0.956,0.977,0.83,0.964,0.888,0.988,1.061,1.049,0.991,1.055,0.999,1.046,0.912,1.012,0.924,0.99,0.908,1.099,1.018,1.094,0.957,1.091,1.024,0.989,0.995,0.99,1.176,1.05 +XM_371694,1.061,1.141,0.929,0.976,0.987,0.989,1.253,1.056,0.998,0.995,0.947,0.935,0.973,0.953,1.196,0.953,1.007,1.144,1.088,1.07,1.073,1.02,0.94,1.042,1.112,1.037,0.961,0.991,0.952,0.992,0.913,0.965,1.021,0.987,1.045,1.03,1.165,1.027,1.018,0.905,0.982,1.081,0.916,1.003,0.986,0.945,0.892,0.97,1.089,1.035,1.007,1.033,1.001,1.04 +XM_371695,1.315,1.035,1.744,1.087,1.663,0.944,0.993,0.985,1.676,1.278,0.976,1.155,1.649,0.996,1.017,1.003,1.187,1.19,1.147,1.033,1.053,1.24,0.911,1.177,0.981,0.917,1.273,1.266,0.78,0.753,1.417,0.897,1.117,0.88,1.214,0.924,0.822,0.889,0.907,1.026,1.455,0.932,0.909,0.831,1.22,1.003,1.605,1.059,1.009,1.387,0.885,0.985,1.028,0.989 +XM_371701,0.979,1.027,0.852,0.927,1.073,0.963,1.031,1.109,1.036,1.014,0.994,1.045,0.957,1.004,0.96,0.961,0.996,0.983,1.072,0.975,0.886,1.023,1.024,1.014,0.987,1.127,0.911,1.162,0.825,0.968,0.954,1.045,0.983,0.932,1.049,0.897,1.006,1.151,1.13,1.016,0.999,1.022,0.862,1.031,1.019,0.938,1.009,1.178,1.018,1.111,1.001,1.011,1.01,0.912 +XM_371705,1.251,0.801,1.529,1.202,1.037,0.885,0.799,0.964,1.762,0.909,0.733,0.901,0.786,1.135,1.239,0.876,1.362,0.789,0.882,1.175,0.777,0.992,0.838,1.499,0.791,0.909,2.262,1.409,0.838,0.842,1.333,1.357,1.35,0.85,1.589,1.18,0.827,0.851,1.092,1.228,1.072,0.874,0.903,0.788,0.909,0.935,0.777,0.881,0.994,1.045,0.848,0.951,0.978,1.574 +XM_371706,0.694,1.382,1.217,0.971,1.074,1.136,0.896,0.778,1.028,0.895,1.298,0.768,0.716,0.78,0.95,1.423,0.998,0.801,0.941,1.537,0.782,0.885,1.063,0.909,0.81,0.641,1.18,0.781,0.762,1.379,0.915,1.528,1.353,1.278,0.585,0.679,1.086,0.768,0.977,1.045,1.024,1.412,0.996,0.792,0.918,1.298,0.997,0.669,1.062,0.766,1.04,1.029,0.828,1.161 +XM_371732,1.036,1.001,0.882,0.949,0.953,0.981,0.984,1.005,0.996,1.024,1.101,0.876,1.053,1.115,0.915,1.03,0.952,0.972,0.988,1.061,0.916,1.013,1.006,0.936,0.937,1.057,0.986,0.865,1.269,0.99,1.025,0.929,1.32,0.965,0.918,1.085,0.898,1.014,1.111,0.962,1.062,0.952,1.036,1.023,1.033,1.128,0.929,1.108,0.892,0.855,1.003,1.005,0.945,1.184 +XM_371738,0.801,0.947,1.202,0.998,0.819,1.128,0.66,0.812,0.841,0.905,1.454,0.92,0.8,0.882,1.012,0.975,0.832,0.786,1.243,0.956,0.86,0.869,1.164,0.885,0.927,0.797,0.79,0.885,1.047,0.963,0.933,1.634,0.914,0.99,0.822,2.211,1.128,1.321,1.143,1.066,0.956,1.24,1.362,2.472,0.905,0.944,1.097,0.783,0.794,0.749,1.037,1.661,1.056,1.933 +XM_371740,1.041,0.954,0.925,0.81,1.263,0.847,0.641,0.614,0.836,0.927,0.997,0.904,0.793,0.587,0.833,2.9,1.241,1.253,1.035,0.804,0.605,0.63,1.483,1.365,0.735,0.792,1.69,0.841,0.615,0.975,0.789,1.36,3.307,0.8,0.794,1.253,1.956,0.95,1.445,0.99,1.023,1.064,1.016,1.19,1.233,1.591,1.515,0.687,1.508,1.502,1.912,0.946,1.076,2.573 +XM_371754,0.969,0.9,1.079,1.201,1.026,0.904,1.046,0.915,0.954,0.956,0.962,1.297,0.943,0.992,0.991,1.379,0.955,1.007,1.032,1.152,1.078,1.1,0.862,1.07,0.963,0.969,0.982,0.94,1.166,1.047,1.009,0.901,0.954,1.123,1.2,1.053,1.016,1.082,1.011,0.963,1.106,0.987,1.083,0.945,0.902,0.999,0.939,0.946,0.87,1.001,0.92,0.982,0.844,0.958 +XM_371768,0.984,1.045,0.937,1.061,1.023,1.044,1.024,1.05,0.958,1.11,0.98,1.016,1.076,1.007,0.934,1.012,1.136,1.061,1.002,1.133,0.968,1.049,1.094,1.028,1.004,1.04,0.947,0.94,0.814,1.03,1.119,0.974,1.007,0.899,0.985,1.08,1.045,1.059,0.98,1.033,0.995,1.039,1.016,1.015,0.988,0.822,0.994,0.963,0.949,0.996,1.064,0.941,0.998,0.976 +XM_371770,0.892,0.94,1.007,1.062,0.982,0.968,1.308,1.039,1.114,0.986,1.035,0.937,1.145,1.005,1.038,0.977,1.012,0.963,0.928,0.998,0.867,0.955,0.941,0.992,1.032,0.936,1.117,1.037,0.828,0.926,1.0,1.102,0.999,0.943,0.98,0.987,0.959,1.013,1.073,0.993,1.084,0.95,0.918,0.851,1.172,0.868,1.019,1.009,0.977,0.993,0.973,1.059,1.071,1.09 +XM_371772,0.888,1.166,0.917,1.079,0.937,1.155,1.145,0.904,0.918,0.861,1.052,0.877,0.956,0.829,1.075,1.186,0.909,1.025,0.944,1.149,0.988,0.957,1.009,0.84,1.008,0.877,1.03,0.987,0.969,1.103,0.937,1.433,1.091,1.337,0.983,0.9,1.078,0.909,1.221,0.977,0.841,1.136,0.918,0.993,0.853,1.048,1.006,0.821,0.969,0.875,0.933,0.867,0.971,1.411 +XM_371776,0.839,1.267,1.402,0.96,1.121,1.569,1.043,0.666,1.18,0.875,0.993,0.807,0.636,1.0,1.002,0.869,0.949,1.15,1.043,1.7,0.645,0.973,0.922,1.08,1.201,0.882,2.072,0.921,0.41,1.603,0.947,1.242,1.877,1.933,0.622,0.764,0.952,1.041,1.012,0.448,1.213,1.074,0.457,0.63,1.083,0.967,1.219,0.867,0.588,0.826,1.053,0.91,0.915,0.938 +XM_371796,0.92,1.107,1.089,0.895,0.926,1.026,0.811,0.943,0.909,0.988,1.141,1.11,1.096,0.85,1.032,1.119,1.125,1.099,0.997,0.988,0.988,1.229,0.962,1.092,0.876,1.115,1.062,0.997,1.215,0.892,0.957,0.925,1.077,0.956,1.169,0.961,1.014,1.041,0.881,1.062,1.004,1.005,0.994,1.034,1.095,1.129,0.986,1.04,1.141,1.09,1.0,1.029,1.208,0.875 +XM_371798,0.931,1.022,0.967,0.953,0.989,1.042,0.947,0.871,0.871,1.06,1.012,1.165,1.004,0.878,0.972,1.043,0.933,0.998,1.099,1.027,1.026,1.026,1.068,1.088,1.0,0.883,0.979,0.865,0.746,0.943,0.966,0.935,1.852,1.176,0.952,1.055,1.041,0.964,1.067,0.974,0.936,0.961,0.846,1.047,0.933,1.053,0.971,0.924,0.963,0.936,0.97,0.989,0.939,1.517 +XM_371812,6.936,0.956,0.942,2.481,8.059,7.157,1.109,2.933,0.86,3.78,0.873,0.84,0.93,3.995,0.991,3.246,0.884,0.836,0.894,1.077,1.111,0.967,7.018,7.218,2.311,0.805,0.827,4.494,1.361,0.844,0.845,0.875,5.737,0.887,1.121,1.379,0.824,0.816,5.93,0.899,0.848,0.817,2.215,2.767,0.841,4.3,0.854,3.922,0.808,0.899,4.992,0.82,12.99,1.009 +XM_371817,1.063,0.939,0.852,0.883,0.777,1.143,1.003,0.71,1.071,0.925,0.868,0.849,0.762,0.722,0.814,0.901,0.965,0.703,0.713,1.161,0.748,0.77,0.997,0.933,0.931,0.811,1.011,0.87,0.579,1.219,0.819,1.193,1.295,1.007,0.61,1.027,0.97,0.849,1.825,1.006,0.969,1.069,1.11,1.755,0.78,1.287,1.244,0.797,1.816,0.869,0.95,0.88,0.813,1.708 +XM_371818,0.897,1.013,0.966,0.877,1.001,1.109,1.007,0.837,0.95,1.018,1.032,0.855,0.816,0.761,1.036,1.282,1.041,0.838,0.877,0.943,0.827,0.978,1.146,0.96,0.874,0.807,1.271,1.003,0.616,0.971,1.007,1.101,1.7,0.989,0.836,0.854,1.101,1.036,1.639,0.964,1.045,1.012,0.652,0.92,0.974,0.94,1.048,0.884,1.614,0.882,1.102,1.021,0.813,1.621 +XM_371822,0.777,1.281,0.861,0.973,0.847,2.012,0.745,0.974,0.917,0.864,0.984,0.774,0.787,0.644,0.874,1.44,1.186,1.187,1.032,0.894,1.006,1.291,0.933,0.94,0.827,0.947,1.054,0.771,1.205,1.316,0.825,1.233,1.145,1.208,0.954,0.865,0.965,1.243,2.563,0.82,0.893,1.154,0.717,1.103,0.757,0.868,0.966,1.172,1.069,0.817,0.969,0.689,0.816,0.979 +XM_371825,0.788,1.1,0.993,1.145,0.746,1.125,1.058,0.914,0.902,0.959,1.021,0.931,1.152,0.965,0.965,1.06,0.852,1.073,0.842,1.006,1.045,0.91,1.035,0.918,0.931,0.907,0.947,1.135,1.1,0.77,1.068,0.678,1.155,1.067,1.249,0.982,0.796,1.128,0.953,1.001,1.116,1.149,0.986,1.007,0.885,0.797,0.797,0.92,1.036,1.072,0.899,1.219,1.081,0.921 +XM_371826,0.921,1.094,1.003,0.918,0.883,1.114,0.977,1.182,0.954,1.031,0.811,1.142,0.836,0.992,0.922,0.877,1.004,1.028,0.942,1.013,1.134,1.086,1.014,0.991,0.993,0.92,0.949,1.081,1.134,0.871,0.907,0.964,1.046,0.975,1.039,1.037,0.982,1.032,0.948,1.091,1.011,0.822,1.028,0.973,1.056,1.079,0.942,0.94,1.033,0.898,0.941,0.982,0.905,0.962 +XM_371832,0.758,0.677,2.231,0.571,1.174,1.334,0.573,1.631,1.798,1.248,0.687,1.541,1.244,0.775,1.166,2.359,1.549,1.07,0.998,1.245,0.38,1.702,1.085,1.973,0.407,0.599,2.773,1.111,0.326,0.787,1.998,0.461,1.43,0.615,0.487,0.371,0.84,1.123,0.999,1.001,1.306,0.862,0.344,0.42,1.78,1.176,1.092,1.209,1.552,1.553,1.064,0.491,0.464,1.166 +XM_371843,0.456,0.939,1.644,0.273,1.203,1.294,0.71,1.303,1.196,0.86,0.318,1.307,1.067,0.498,0.871,1.368,1.252,0.863,0.597,1.196,0.199,1.297,1.253,1.482,0.353,0.273,1.833,1.003,0.0298,1.082,1.593,1.259,1.767,1.218,0.188,0.266,0.585,1.722,1.484,1.059,1.029,0.97,0.0344,0.266,1.271,0.667,1.104,0.796,1.22,0.804,1.161,0.493,0.252,1.596 +XM_371848,0.329,0.959,1.217,0.481,0.812,2.42,0.518,0.603,0.769,0.649,1.045,0.714,0.624,0.734,1.428,2.516,1.004,0.801,0.972,1.739,0.291,0.583,1.554,1.006,0.425,0.486,1.629,0.559,0.0839,1.278,0.918,0.856,1.572,2.332,0.494,0.531,1.431,0.596,1.026,1.058,0.752,1.176,0.084,0.778,0.699,1.552,1.119,0.583,1.289,0.48,1.551,0.617,0.615,1.557 +XM_371849,1.046,0.999,1.083,0.866,0.929,0.958,1.091,0.938,0.984,0.902,0.955,0.977,0.883,0.984,0.938,0.865,0.938,1.011,0.904,1.038,1.067,0.986,0.935,0.921,0.892,1.001,1.001,1.03,1.501,1.105,0.815,1.047,0.964,1.034,0.965,0.963,0.972,1.061,1.069,0.989,1.018,1.232,1.095,0.831,1.069,1.038,0.937,0.981,1.055,1.038,0.968,0.939,0.958,1.024 +XM_371856,1.086,0.977,0.91,1.054,0.964,0.955,0.877,0.957,1.004,0.971,1.005,0.876,1.171,0.947,0.858,0.92,1.152,1.273,0.964,1.003,0.922,0.928,0.959,1.099,1.007,1.042,1.272,1.082,0.956,0.865,0.861,1.072,0.871,0.964,1.065,0.915,1.011,1.038,1.057,1.173,0.99,1.091,1.079,1.013,1.002,0.946,1.038,1.068,1.016,1.12,0.951,1.076,1.111,0.967 +XM_371857,0.84,0.961,1.266,0.696,1.17,0.908,0.528,0.823,1.236,1.103,1.02,1.622,1.259,0.591,0.83,1.333,0.72,1.0,1.197,0.98,0.344,0.98,1.385,1.23,0.74,1.009,1.331,1.238,0.204,1.12,0.991,1.214,0.984,1.144,0.251,1.248,0.899,1.169,0.908,1.382,1.115,1.309,0.574,0.752,1.103,0.725,1.021,1.083,0.943,0.982,0.924,1.157,0.857,1.354 +XM_371891,0.571,0.815,0.797,0.879,0.613,0.995,0.92,0.524,0.654,0.759,0.953,0.513,0.617,0.551,0.881,1.735,0.733,0.833,0.715,1.15,0.629,0.68,1.626,0.635,0.667,0.543,1.119,0.599,0.514,1.14,0.562,2.28,1.897,1.281,0.493,1.328,1.16,0.635,1.822,0.892,0.708,0.994,1.181,2.379,0.64,1.039,1.506,0.507,1.351,0.75,1.222,1.722,0.747,2.521 +XM_371897,0.816,1.054,1.072,0.804,0.876,0.893,0.763,0.74,1.08,0.867,0.769,0.817,0.838,0.988,1.039,1.082,1.061,0.83,0.872,0.967,0.805,0.966,1.552,1.028,0.847,0.927,0.94,1.063,1.049,1.054,1.008,1.557,1.859,0.897,0.71,0.926,1.017,1.132,1.069,1.45,1.016,0.961,0.833,1.528,1.038,0.89,0.907,0.924,0.879,0.979,0.857,0.995,0.758,2.652 +XM_371917,0.904,1.167,0.916,1.093,1.044,1.079,0.999,1.115,1.088,0.933,1.098,0.931,1.001,0.983,1.126,0.984,0.912,1.003,0.915,1.027,1.139,0.898,0.987,1.002,1.025,1.054,0.952,1.141,1.183,1.133,0.979,0.998,0.937,0.885,1.02,0.991,1.009,0.974,0.993,0.979,0.951,1.078,0.951,0.928,1.042,1.009,0.956,0.912,0.96,1.026,0.982,1.102,0.987,1.034 +XM_371948,0.881,1.084,1.089,0.954,1.122,1.065,1.158,0.912,1.028,0.978,0.825,1.023,0.984,1.021,1.071,1.022,0.984,0.965,1.025,0.978,1.002,0.97,1.166,0.988,0.915,0.912,0.93,0.998,1.309,1.022,1.019,1.126,0.928,0.97,1.166,1.026,1.045,0.882,0.924,1.012,1.102,1.047,0.888,1.039,0.895,0.95,1.0,1.021,0.893,0.988,0.941,0.901,1.002,0.921 +XM_371949,0.886,1.219,0.982,1.071,0.934,1.012,0.924,1.071,1.052,1.118,0.929,1.102,1.122,1.118,1.074,0.988,1.007,0.963,0.955,0.927,1.019,0.975,1.004,0.977,1.104,1.072,1.199,1.029,0.951,0.918,1.111,0.922,1.037,0.953,1.188,1.072,0.977,1.144,0.931,1.025,0.972,1.008,1.183,0.984,0.962,0.984,1.009,1.019,1.146,1.0,1.028,1.06,0.974,0.967 +XM_372027,0.912,1.048,0.933,1.128,0.973,0.939,0.919,1.022,0.955,0.95,1.125,0.989,1.108,0.861,0.882,0.761,0.951,0.934,0.978,0.876,0.982,0.987,1.017,0.885,1.015,0.985,1.044,1.021,0.941,0.931,0.998,1.067,1.038,0.886,1.138,1.038,1.006,1.035,0.81,1.041,1.023,1.068,0.913,1.084,1.1,1.014,1.0,0.847,1.008,1.09,0.891,0.949,1.131,0.892 +XM_372031,0.63,1.057,1.027,0.744,0.796,1.316,0.646,0.658,0.924,0.563,1.432,0.578,0.594,0.629,1.1,1.636,0.603,0.896,0.948,1.483,0.48,0.798,1.492,0.664,0.94,0.57,1.125,0.821,0.617,1.733,0.834,1.278,1.078,1.74,1.251,0.441,1.216,0.928,1.543,0.497,0.79,1.517,0.973,0.603,0.695,2.229,0.722,0.754,1.671,0.583,1.642,0.817,0.561,1.492 +XM_372037,0.946,0.999,0.936,1.024,1.052,1.025,1.165,1.015,1.111,1.027,0.909,0.881,1.01,1.31,0.87,0.881,0.912,0.948,1.07,1.022,1.005,1.035,0.808,1.083,1.066,0.912,1.079,1.072,1.05,1.061,0.967,1.003,0.947,0.976,0.948,1.117,1.037,0.858,0.948,0.987,1.051,0.866,0.993,1.139,1.122,0.928,1.002,1.058,0.883,1.071,1.04,0.949,0.966,0.898 +XM_372038,1.155,0.82,0.959,1.0,0.971,0.935,0.962,0.855,0.871,0.987,0.877,1.048,0.764,0.975,1.01,0.915,0.938,1.158,1.104,1.027,0.952,0.848,0.989,0.925,0.937,1.0,1.021,1.088,1.355,0.927,0.875,1.02,0.962,1.055,0.839,0.915,1.143,0.957,1.08,0.975,1.187,0.852,1.201,1.149,0.954,1.116,0.976,0.972,0.95,1.389,0.984,0.938,0.968,0.975 +XM_372060,0.974,0.973,0.96,0.978,1.073,0.978,0.968,1.017,1.085,1.074,1.049,1.014,1.026,0.917,0.932,0.915,1.02,0.851,1.1,0.986,1.099,0.928,0.981,1.015,1.15,0.949,1.027,1.129,1.111,1.018,0.92,1.071,1.026,0.994,1.051,1.085,1.037,0.885,0.999,1.072,1.002,0.915,1.218,0.814,1.017,0.947,1.013,0.937,1.078,1.013,1.093,1.143,1.111,1.064 +XM_372063,0.78,1.371,1.281,0.958,0.717,0.975,0.946,0.659,0.673,0.974,1.122,0.835,0.793,0.6,1.053,1.472,1.182,0.774,1.013,0.767,0.783,0.59,0.949,0.836,0.745,0.705,1.125,0.63,0.898,1.077,0.746,1.486,1.676,0.881,0.876,1.87,1.42,0.88,2.584,4.367,0.744,0.991,1.539,1.747,0.891,1.152,1.063,0.885,1.808,1.788,1.009,1.178,1.726,1.346 +XM_372110,1.115,0.824,1.042,1.025,0.982,1.008,0.903,0.905,0.972,0.993,1.131,1.006,0.7,1.018,1.075,0.986,0.99,1.0,1.0,1.033,0.948,0.883,0.923,1.199,0.933,1.048,0.95,1.089,1.258,1.091,1.103,1.067,0.932,1.04,1.03,0.911,0.955,1.079,1.052,0.839,1.082,0.948,0.969,1.047,1.015,1.027,1.079,1.966,0.827,1.117,1.008,1.027,0.957,0.982 +XM_372120,1.03,1.005,0.994,0.977,0.923,0.973,1.055,1.099,0.893,1.004,0.881,1.021,1.158,0.811,0.927,0.998,1.095,1.187,0.932,0.899,0.994,0.94,0.847,0.995,0.988,1.011,1.049,0.992,0.713,1.139,1.029,1.026,0.939,1.04,0.999,1.042,0.988,1.12,1.082,0.993,1.115,0.978,0.853,1.052,1.015,1.047,0.993,1.105,0.999,0.971,1.016,0.971,1.113,0.934 +XM_372123,0.974,1.006,0.945,0.865,1.11,0.996,0.935,1.164,1.047,0.968,0.954,1.107,1.001,1.083,0.801,1.091,0.952,0.989,0.876,0.894,1.047,0.956,0.875,1.07,0.946,1.004,1.148,1.028,0.947,1.094,1.003,0.932,0.796,0.961,1.18,1.001,0.961,1.029,1.072,0.99,1.128,0.924,0.94,0.886,1.012,0.898,0.993,1.018,0.921,0.977,0.999,0.943,0.879,1.029 +XM_372124,1.085,0.909,1.583,0.718,1.773,0.854,0.61,1.097,1.71,1.639,0.611,1.366,0.77,1.045,1.171,0.961,1.017,1.106,1.584,1.001,0.78,1.293,1.041,1.272,0.606,1.347,1.82,1.274,0.184,0.955,1.416,0.971,0.999,1.068,1.052,0.683,0.788,1.358,0.905,1.271,1.462,0.78,0.202,0.672,1.526,0.852,0.879,1.548,0.879,1.307,0.922,0.742,1.204,1.365 +XM_372137,0.897,1.163,1.064,0.978,0.984,1.005,0.947,0.919,1.19,1.157,0.899,0.919,1.173,1.024,0.812,0.995,0.827,0.872,1.059,1.152,1.232,0.977,1.054,1.061,1.022,0.976,0.908,0.84,1.054,1.067,1.087,1.179,1.43,1.14,1.091,0.996,1.045,0.926,0.906,1.144,0.861,0.925,0.838,0.834,1.014,0.919,1.05,0.953,1.129,0.888,0.939,0.772,0.965,0.898 +XM_372140,0.815,1.009,0.94,1.361,1.054,0.874,0.967,1.034,0.941,0.912,1.13,0.861,1.001,1.109,0.836,0.884,1.068,1.095,1.099,1.084,1.217,0.891,1.081,1.016,1.016,0.829,1.224,0.923,0.949,0.972,1.068,0.91,1.038,0.98,0.908,0.881,0.892,1.004,0.98,1.082,1.014,0.944,0.912,1.099,1.081,0.999,0.979,1.132,0.84,0.976,1.071,1.018,0.979,0.892 +XM_372148,1.027,1.005,1.124,1.046,0.903,0.959,1.109,0.995,1.049,1.007,0.967,1.078,1.182,0.962,1.059,1.016,1.032,0.923,0.949,0.998,0.946,1.193,1.164,0.999,1.076,1.026,0.961,1.129,0.913,0.954,1.067,1.079,1.045,1.007,0.917,1.139,0.828,0.943,0.889,1.123,1.099,0.948,0.835,1.075,0.967,1.03,1.059,0.89,1.098,1.125,0.945,0.998,1.121,1.001 +XM_372150,1.067,0.908,0.966,1.056,0.93,1.003,0.889,1.054,1.075,0.924,1.036,0.98,0.911,0.967,0.973,0.938,0.97,1.057,0.941,1.328,1.1,1.123,0.998,1.023,1.025,0.968,0.881,1.002,0.99,0.995,0.926,0.887,0.962,1.039,1.012,1.193,1.029,0.917,1.043,0.925,0.991,0.934,0.904,1.075,1.0,0.975,1.025,1.137,1.06,0.947,0.996,1.008,0.992,0.968 +XM_372159,0.933,1.04,0.981,1.123,0.932,1.123,0.964,1.089,0.946,1.008,1.026,0.968,1.064,0.988,0.901,1.0,0.944,0.996,1.057,1.126,0.93,0.984,0.985,1.003,1.003,1.072,0.882,1.053,1.041,1.078,1.106,0.97,1.022,0.998,0.973,1.048,0.955,1.044,0.986,1.022,1.026,0.877,0.942,0.965,0.911,0.984,0.945,0.999,1.028,1.05,0.991,1.075,0.963,1.047 +XM_372161,0.696,1.812,0.745,0.937,0.663,1.715,0.72,0.66,0.825,0.787,1.783,0.617,0.695,0.638,2.362,4.18,1.095,0.738,0.826,3.339,0.622,0.676,2.215,0.59,1.654,1.052,0.589,0.817,0.637,1.798,0.851,0.655,2.455,1.182,0.578,2.764,1.745,0.957,2.448,1.112,0.703,9.259,2.705,2.284,0.727,2.038,0.636,0.632,3.166,0.738,2.686,0.738,0.551,0.882 +XM_372162,1.028,1.145,0.9,1.013,1.126,0.945,0.859,0.811,1.243,1.014,1.06,0.988,0.912,0.936,1.106,1.071,0.98,0.94,1.13,1.065,1.091,1.029,0.996,0.966,0.916,0.998,0.94,0.999,0.676,0.926,1.045,1.119,0.882,1.066,1.049,0.999,1.026,0.992,0.955,0.935,1.074,0.958,0.859,1.135,1.156,0.836,0.961,0.883,0.976,1.028,1.023,1.041,1.106,1.075 +XM_372181,0.951,1.104,1.007,0.958,1.013,0.945,0.935,1.018,0.968,0.868,1.088,1.016,1.083,1.021,0.976,0.908,0.891,1.011,1.0,0.98,0.797,0.93,1.049,0.968,1.003,1.019,0.887,1.052,0.957,0.971,0.919,0.982,1.026,0.946,0.993,0.936,1.111,1.156,1.028,1.132,0.832,0.993,0.98,1.02,1.087,1.022,0.883,0.998,1.047,1.106,1.002,1.072,0.882,0.965 +XM_372186,1.111,0.996,1.018,0.818,0.994,0.904,1.008,0.909,1.021,1.142,0.996,1.07,1.209,1.223,1.013,0.967,1.09,1.056,1.068,1.075,1.027,1.021,1.018,0.961,1.12,0.928,1.023,0.767,1.118,1.116,0.961,1.034,0.956,0.96,1.017,0.985,1.036,1.052,0.934,0.947,1.06,0.98,0.953,1.174,0.972,0.966,1.02,1.109,0.807,1.17,0.964,0.96,1.141,0.931 +XM_372194,1.026,0.983,0.926,1.022,1.249,0.992,1.094,0.885,0.946,0.967,0.984,0.932,1.022,1.061,1.064,1.122,0.934,1.011,0.877,1.203,1.141,0.968,1.091,0.965,1.097,1.17,0.825,0.962,1.303,0.949,1.018,1.061,1.148,1.107,0.94,0.972,1.169,1.004,1.009,1.111,0.939,1.06,1.218,0.98,1.055,0.994,0.929,1.03,1.109,1.175,0.927,1.069,0.92,1.117 +XM_372197,1.06,0.954,0.905,0.959,0.868,1.021,0.894,0.965,0.956,1.161,1.077,0.922,1.021,0.907,1.025,0.905,1.068,1.051,0.932,1.095,0.986,0.979,0.987,1.007,1.332,0.905,1.008,0.969,1.153,0.916,1.029,0.961,1.012,0.93,0.981,1.008,1.036,1.19,1.059,1.015,0.986,0.923,1.025,0.983,1.099,1.002,0.94,1.034,1.061,0.874,1.01,0.952,1.083,0.893 +XM_372199,1.029,0.915,1.014,1.04,0.969,1.088,0.918,1.082,0.97,0.866,0.992,1.072,0.943,0.964,1.15,1.016,0.997,1.03,1.066,0.965,1.065,0.916,0.986,0.979,0.968,0.939,1.009,1.068,0.877,1.081,0.875,0.94,0.999,1.056,1.006,0.948,1.048,0.957,1.049,0.946,1.01,0.993,0.974,1.033,1.039,0.868,0.944,1.018,1.061,1.089,1.0,0.917,1.087,0.917 +XM_372231,1.062,1.055,1.037,0.901,0.84,1.105,0.949,1.056,0.942,0.96,0.936,0.878,0.957,1.173,0.885,1.022,0.994,1.094,0.794,0.84,0.924,0.933,0.99,0.982,0.955,0.918,1.102,0.923,1.018,1.063,1.077,0.916,1.431,1.011,1.003,1.046,1.064,0.906,1.064,0.921,0.869,0.914,0.955,1.039,0.924,1.029,1.099,0.981,0.927,0.853,1.018,0.943,0.991,1.27 +XM_372233,0.783,1.07,1.115,0.919,1.003,1.132,0.997,0.83,1.113,1.011,0.845,0.863,0.868,0.999,1.414,1.432,0.945,0.91,0.983,1.07,0.678,0.998,1.171,1.153,0.882,0.812,1.248,0.955,1.094,1.104,0.861,1.827,2.505,1.335,0.766,0.8,1.09,0.782,1.077,0.889,1.036,1.011,0.95,0.995,0.888,0.869,0.942,0.79,1.116,0.706,1.048,0.731,0.857,1.494 +XM_372247,1.167,0.881,2.079,0.873,1.457,0.734,0.761,1.071,1.54,1.511,0.659,1.649,1.223,1.338,1.07,0.885,1.284,1.113,2.004,0.775,1.117,1.367,0.752,1.493,0.746,1.379,1.452,1.705,0.681,0.869,1.383,1.439,1.493,1.103,0.66,0.671,0.737,1.614,0.858,0.943,1.77,0.924,0.544,0.86,1.511,0.801,0.99,1.316,0.589,1.449,0.784,0.988,1.961,0.743 +XM_372253,0.996,1.084,0.988,0.986,0.946,1.016,0.928,1.114,1.021,0.909,1.071,0.948,0.869,0.845,0.914,1.003,0.966,1.068,0.993,1.077,1.021,0.983,1.067,1.086,0.989,1.03,1.02,1.069,1.046,1.019,0.979,1.095,1.115,1.21,0.874,1.1,1.069,0.886,0.952,1.001,0.877,0.969,1.039,1.424,1.012,0.955,0.954,0.965,0.933,0.971,0.985,0.965,1.022,1.012 +XM_372257,0.597,0.673,1.173,0.649,1.045,1.401,0.761,1.04,1.275,1.055,0.671,1.134,0.972,0.842,1.107,1.966,1.087,0.972,0.963,0.88,0.591,1.133,1.232,1.579,0.525,0.755,1.769,1.0,0.387,0.736,1.214,0.942,1.987,1.177,0.612,0.6,0.999,1.18,1.517,0.986,1.151,0.917,0.409,0.762,1.323,0.97,1.005,0.96,1.427,0.84,1.124,0.818,0.677,1.749 +XM_372261,1.051,1.004,0.955,0.96,0.937,1.015,0.777,1.033,0.973,0.949,0.99,1.044,0.956,1.042,0.918,0.973,1.048,0.839,0.974,1.061,1.045,1.049,1.046,1.062,1.046,1.028,0.948,1.03,0.872,1.008,0.963,0.961,0.932,1.06,0.99,0.992,1.021,0.902,0.989,1.161,0.857,0.981,1.067,0.959,1.028,0.981,1.052,0.947,0.948,0.972,1.018,1.014,0.953,0.922 +XM_372267,0.747,1.246,0.845,0.959,0.738,1.189,0.884,0.711,0.86,0.827,1.068,0.802,0.774,0.709,0.885,1.033,0.811,0.959,0.866,0.989,0.813,0.805,1.186,0.862,0.952,0.853,0.997,0.707,0.814,1.363,0.79,1.879,1.444,1.575,0.693,0.951,1.175,0.847,1.106,1.092,0.87,1.497,0.711,1.169,0.83,1.125,0.919,0.783,0.915,0.754,1.317,1.04,0.893,1.439 +XM_372314,0.891,1.005,1.173,0.998,1.171,0.953,0.888,0.827,1.084,0.971,0.894,1.161,1.076,0.658,0.991,1.693,0.973,1.048,1.075,1.229,0.852,0.914,1.267,1.228,0.865,0.759,1.093,0.968,1.055,1.124,0.937,0.862,2.076,0.823,0.921,0.85,0.822,1.188,1.264,0.986,1.083,0.941,0.851,1.094,1.097,0.988,1.192,1.172,0.791,0.915,0.855,0.857,1.03,1.012 +XM_372316,0.904,0.843,0.978,1.0,1.005,1.012,0.934,1.236,1.244,1.006,1.243,0.944,1.185,0.969,0.81,0.889,0.897,0.973,1.166,1.0,1.004,1.005,1.165,0.989,0.887,1.075,0.955,1.015,0.994,1.005,0.926,0.963,1.025,0.899,1.059,1.075,1.02,1.152,1.039,1.159,0.981,0.951,0.957,1.01,0.96,0.969,0.974,1.066,1.035,0.879,1.03,0.976,1.035,0.915 +XM_372324,0.981,0.921,1.026,1.053,1.083,1.037,0.865,0.929,0.872,1.045,0.925,1.108,0.956,0.961,0.961,0.871,1.013,0.864,1.021,1.005,0.885,0.897,0.911,0.943,1.037,0.942,1.099,1.019,0.932,1.127,0.891,0.952,1.094,0.912,0.855,0.97,0.905,0.999,0.904,1.054,1.072,1.009,0.916,1.001,1.015,1.147,1.218,1.07,0.962,1.213,0.897,0.869,1.016,1.022 +XM_372328,0.992,1.012,0.978,0.945,0.915,1.068,1.186,0.979,0.961,0.954,0.921,0.978,0.985,1.084,0.892,0.943,1.018,1.097,0.916,1.166,1.049,1.082,1.038,1.073,0.971,0.936,0.962,1.007,0.923,0.965,1.003,1.013,1.036,1.055,1.025,1.073,1.066,0.959,1.009,0.954,0.916,1.104,1.189,0.991,1.141,1.105,1.033,0.879,0.975,0.997,0.942,0.991,0.999,0.96 +XM_372352,0.978,1.161,0.939,0.866,1.204,0.828,1.068,0.877,0.895,0.858,0.893,1.0,1.017,1.069,1.068,0.918,1.074,0.895,0.954,0.905,0.985,0.99,1.116,0.919,1.127,0.922,1.162,0.874,0.887,1.0,1.111,0.903,1.041,1.032,1.015,0.967,0.973,1.093,1.028,0.818,0.965,1.121,0.871,1.113,1.038,0.899,1.169,1.007,1.122,0.989,1.041,0.917,1.0,0.992 +XM_372353,0.926,0.995,1.128,0.915,1.033,0.999,1.115,1.02,0.968,0.916,1.122,1.017,1.067,1.066,0.997,1.058,0.93,0.916,1.181,0.987,0.955,1.078,0.927,0.997,0.983,0.951,1.04,1.0,1.359,0.97,1.008,1.054,1.044,1.105,1.002,0.944,0.885,1.08,1.091,1.086,0.913,0.926,1.49,0.992,0.887,1.005,0.828,1.15,1.131,0.938,1.008,1.154,0.936,0.987 +XM_372354,0.977,0.968,1.069,0.953,0.881,1.069,0.768,1.218,0.886,1.063,1.155,0.987,0.716,0.842,0.876,1.122,1.076,1.006,1.12,1.076,1.04,0.921,0.816,0.903,0.969,1.081,1.04,1.172,0.881,0.934,0.942,0.933,1.062,0.9,1.072,1.07,1.101,1.027,1.121,0.978,1.108,1.036,1.075,1.016,0.924,0.993,0.957,1.005,1.094,0.977,0.977,1.082,0.992,1.034 +XM_372356,1.099,1.106,1.056,0.856,1.184,0.977,0.826,1.013,1.0,0.901,0.851,1.167,0.911,0.922,1.022,0.938,1.008,0.997,0.981,0.967,0.932,1.0,0.939,1.132,0.941,1.143,1.058,1.066,0.786,1.035,1.035,0.997,0.93,0.999,0.826,1.186,1.016,0.972,0.915,1.054,1.123,0.917,0.88,0.955,1.017,0.806,0.967,0.96,0.915,1.051,1.176,0.893,0.896,0.744 +XM_372359,1.048,0.923,1.116,0.972,0.972,1.151,1.09,0.92,1.04,1.024,0.901,1.005,0.971,1.153,0.968,0.775,0.953,1.061,1.259,0.736,0.843,1.018,0.917,1.029,1.147,1.096,1.099,1.105,1.19,1.114,1.008,0.921,1.303,0.983,0.949,0.951,0.93,1.001,1.11,0.885,1.005,0.864,0.921,1.0,0.995,1.149,1.025,0.966,1.027,1.085,0.929,1.036,0.925,0.931 +XM_372360,1.013,1.056,1.093,0.973,1.255,1.189,0.94,1.508,0.931,0.951,1.026,0.984,0.884,0.975,1.112,0.966,0.982,0.958,0.985,0.953,1.005,0.816,1.002,1.06,0.943,1.059,0.963,0.967,0.91,1.006,1.012,1.051,0.912,1.005,1.066,1.056,1.143,1.028,0.906,0.935,1.006,0.983,0.918,1.24,0.995,1.036,1.073,0.928,1.018,1.044,1.087,1.034,1.156,1.171 +XM_372366,1.0,1.115,0.931,1.112,0.963,1.009,1.012,0.905,1.11,1.063,0.997,1.015,1.095,0.916,0.934,1.019,0.901,0.992,0.973,0.943,0.931,0.949,1.038,0.967,0.986,0.982,1.01,1.122,0.859,1.059,1.058,1.004,1.064,0.817,1.115,0.935,0.936,1.018,1.216,1.104,0.902,0.918,1.194,1.067,0.996,1.08,1.01,1.014,0.98,1.128,1.082,1.058,0.981,1.031 +XM_372367,1.071,1.025,1.012,0.851,0.935,0.956,1.045,0.894,1.074,1.007,1.095,0.993,0.977,1.279,1.18,1.035,0.858,0.949,0.926,1.05,1.093,1.087,0.977,1.058,1.166,0.875,1.049,0.891,0.945,1.006,0.91,0.968,1.039,0.915,1.138,0.919,0.979,0.93,0.921,0.761,0.897,1.028,1.627,0.918,1.052,1.133,0.924,1.053,1.03,0.948,0.981,1.202,0.927,1.262 +XM_372368,0.838,1.115,0.949,0.91,0.872,1.342,0.965,1.229,0.877,0.763,0.955,0.869,1.108,0.766,0.814,1.213,1.109,1.001,0.862,1.319,0.697,1.058,1.122,0.834,1.108,0.893,0.999,0.773,0.586,1.316,1.016,1.026,1.058,1.317,0.757,0.82,0.794,1.065,1.144,1.127,0.895,1.221,0.656,0.881,0.834,0.893,1.018,1.092,0.818,0.996,1.023,0.866,0.777,0.955 +XM_372369,1.204,1.016,0.976,1.117,0.982,0.947,0.853,0.84,0.958,1.081,1.084,0.998,1.008,0.817,1.031,1.028,1.022,1.144,1.035,0.911,1.117,0.984,1.056,1.054,1.017,1.117,0.929,0.894,0.806,1.016,1.096,0.975,0.976,0.962,0.972,1.038,1.004,0.986,1.006,1.116,0.993,1.029,0.842,0.958,1.041,0.918,0.949,1.032,1.11,1.024,1.083,0.883,1.032,1.023 +XM_372370,1.031,0.993,1.108,0.989,0.989,1.026,1.101,1.213,0.991,0.961,1.01,0.968,0.971,1.056,1.02,1.041,0.921,1.105,1.08,0.963,1.043,0.872,1.041,0.885,1.027,0.975,0.965,0.946,1.402,1.016,1.059,1.027,0.933,0.913,1.001,0.978,1.052,0.856,0.966,0.896,1.07,0.978,1.207,1.123,1.044,0.961,1.017,1.068,1.132,0.887,0.975,0.954,0.917,1.028 +XM_372371,0.855,0.857,1.097,0.729,0.933,1.108,0.77,1.126,0.977,1.101,0.885,1.116,0.993,0.804,0.83,0.979,0.926,1.009,0.997,1.006,0.937,1.042,1.019,1.089,0.869,0.94,1.095,1.065,0.721,0.974,1.189,1.001,1.075,0.904,0.969,0.87,0.995,1.115,1.114,1.025,0.971,1.096,0.907,0.762,1.058,0.954,0.938,1.009,0.929,0.95,0.988,0.897,0.876,1.117 +XM_372373,1.047,0.969,1.046,1.063,1.043,1.071,0.858,0.912,1.104,1.115,1.12,0.916,1.071,0.98,1.208,0.979,1.035,1.061,1.07,0.909,0.929,1.06,1.028,0.918,1.005,1.034,0.877,0.983,0.76,0.922,0.955,1.034,1.073,0.999,0.977,0.995,1.062,0.878,0.873,0.96,1.16,1.067,0.866,1.163,1.017,1.07,0.908,0.946,1.05,0.952,1.014,0.918,0.845,1.058 +XM_372375,0.99,0.961,0.882,0.988,0.902,0.984,1.213,1.035,0.985,1.094,0.996,1.092,0.947,1.025,0.989,0.969,1.08,0.985,1.136,0.864,0.84,0.897,0.86,1.0,0.937,0.982,1.031,0.901,1.082,1.02,1.048,1.0,1.099,1.006,0.913,1.088,1.029,0.907,0.963,1.012,1.098,1.075,0.881,1.153,0.989,1.121,0.946,1.005,0.883,0.888,0.905,1.147,1.211,1.159 +XM_372376,0.861,0.792,1.351,0.893,1.014,1.127,1.018,0.902,1.155,1.093,0.755,1.264,0.934,0.894,1.04,1.321,0.93,1.082,0.946,1.067,0.801,0.891,1.159,1.147,0.757,1.023,1.06,1.108,0.661,0.965,1.102,1.006,1.103,1.131,0.82,0.867,0.98,1.113,1.398,0.838,1.027,1.209,0.811,0.869,1.277,0.852,0.989,1.108,0.908,0.952,1.023,0.682,0.946,1.015 +XM_372387,1.04,0.916,0.954,0.917,1.033,1.008,0.849,0.999,0.893,1.118,0.873,1.016,1.154,1.004,1.185,1.096,1.141,0.995,0.887,1.011,0.997,1.026,1.047,1.029,1.007,0.927,0.974,1.079,0.797,0.983,1.052,0.925,1.02,0.976,0.948,1.111,0.987,1.046,0.924,0.932,0.88,1.105,1.057,0.933,0.97,0.874,0.963,1.058,1.112,1.058,0.967,1.11,1.059,0.945 +XM_372388,0.964,0.869,0.968,0.914,1.035,1.005,1.154,1.057,1.146,1.054,1.114,0.988,0.939,1.039,0.819,1.05,1.078,0.892,1.043,0.979,0.996,1.108,0.922,1.076,0.884,1.038,0.869,1.035,1.002,1.033,1.077,0.859,1.124,0.974,1.234,1.066,1.077,0.988,1.023,0.882,0.948,0.887,1.041,0.964,1.013,0.908,1.023,0.979,0.93,0.995,0.966,1.065,1.115,0.921 +XM_372389,1.152,0.949,1.037,1.152,0.932,1.13,0.814,1.001,0.872,1.127,0.964,1.057,1.032,1.059,1.167,0.878,1.017,1.091,0.839,0.825,1.125,0.929,1.181,1.007,0.934,0.975,1.009,0.916,1.036,0.911,1.043,0.872,0.98,0.913,1.155,1.07,1.056,1.085,1.04,0.992,1.112,0.909,0.837,1.113,0.99,1.223,1.127,0.996,1.02,0.978,1.023,0.93,1.192,0.94 +XM_372391,1.027,1.006,1.166,0.975,0.907,1.128,0.876,0.926,0.945,1.0,1.028,1.028,0.985,0.978,0.966,0.891,1.086,0.935,0.939,0.906,1.085,0.982,1.118,1.019,0.897,1.036,0.966,0.998,0.931,1.024,0.942,1.063,1.065,1.169,1.094,1.069,0.915,1.024,1.014,1.008,0.913,0.938,0.966,0.991,0.849,0.965,0.913,1.008,0.925,1.124,0.987,0.976,0.969,0.972 +XM_372395,1.169,1.061,0.988,1.043,1.067,0.988,0.934,1.008,1.062,1.179,0.878,0.935,1.075,0.985,1.004,1.035,1.129,1.14,1.151,1.183,1.037,1.021,1.025,0.843,0.943,1.031,1.011,1.093,1.041,0.976,0.968,1.04,1.136,0.944,1.047,1.093,1.051,0.912,0.908,0.942,1.042,1.0,1.132,1.029,1.024,0.815,1.103,1.048,0.967,0.962,0.953,0.995,0.928,1.037 +XM_372397,1.011,0.932,1.107,0.955,0.894,1.005,0.749,0.887,0.968,0.913,0.972,1.018,1.002,1.032,0.917,1.01,1.012,0.86,1.038,0.91,1.025,1.057,0.754,1.056,1.154,1.023,1.126,1.045,1.012,1.01,0.949,0.997,0.935,0.854,1.004,0.908,1.05,1.021,1.044,0.915,1.091,0.917,0.98,1.007,1.084,0.925,0.926,0.959,0.932,1.108,1.051,0.976,0.845,1.0 +XM_372403,1.003,1.119,0.953,0.949,0.858,0.956,1.314,0.996,0.926,0.945,1.067,1.083,1.056,1.169,0.891,1.043,0.964,0.991,0.884,1.032,1.093,0.902,1.027,1.098,1.045,0.912,0.914,0.976,0.911,1.069,1.086,0.875,1.159,0.879,1.021,0.966,1.017,0.979,0.97,1.043,1.087,0.981,1.104,0.924,1.078,0.937,0.998,0.99,0.912,1.073,0.998,0.972,1.071,0.927 +XM_372409,1.07,1.097,1.002,1.059,1.061,1.019,0.989,0.927,0.92,0.928,0.985,1.12,0.923,1.05,1.153,0.984,1.093,0.985,0.962,0.994,1.052,1.02,0.881,0.972,0.821,1.076,0.981,1.043,0.846,0.972,0.995,1.028,1.072,0.866,1.024,0.873,0.869,1.323,1.134,1.012,1.056,1.112,0.916,0.975,1.056,0.919,0.989,0.948,1.083,1.184,1.032,0.966,1.049,1.071 +XM_372411,0.966,0.939,1.007,0.861,0.96,1.2,0.95,1.025,1.088,0.903,0.895,0.964,1.115,1.199,0.994,0.918,0.991,0.972,1.071,0.937,1.163,1.008,1.014,1.048,1.07,0.941,0.971,0.9,0.892,0.87,0.905,1.061,1.072,1.037,1.124,0.873,1.018,0.979,0.897,0.931,0.98,0.885,0.885,0.895,1.048,0.922,0.992,1.041,1.187,0.984,1.019,1.147,0.933,0.906 +XM_372413,1.043,0.866,0.877,0.833,1.167,1.014,0.944,1.093,1.051,0.874,1.04,1.127,1.015,1.036,1.033,1.068,1.121,1.106,1.175,1.034,0.911,1.185,0.994,0.962,0.961,0.967,0.879,1.03,0.924,0.935,0.998,1.024,1.077,0.892,1.102,1.069,1.031,0.976,0.988,0.85,1.161,0.96,0.886,0.979,0.899,0.99,0.986,1.09,1.106,0.982,1.148,1.113,1.03,0.898 +XM_372416,1.02,1.055,0.859,1.121,0.998,1.044,1.034,0.956,1.024,0.885,1.147,1.09,1.0,1.162,1.05,1.064,0.91,1.027,1.075,1.076,1.047,0.943,1.05,0.986,1.0,0.938,0.929,0.951,1.262,0.966,1.127,1.028,0.981,0.852,0.881,1.083,0.946,0.976,1.017,1.029,0.981,0.877,1.05,1.051,1.066,0.965,0.961,0.959,1.028,0.991,0.986,1.028,1.023,0.906 +XM_372423,1.034,1.099,0.903,0.976,1.104,0.923,1.159,0.972,1.075,1.114,0.976,0.956,1.051,0.903,0.97,1.232,1.148,1.064,0.994,1.016,0.969,0.92,0.842,1.021,0.965,1.031,0.879,0.957,1.001,0.992,0.994,1.066,0.952,1.056,0.901,1.037,0.944,1.081,0.938,1.017,1.058,0.991,1.018,1.015,0.973,1.11,1.022,1.076,1.011,0.965,1.056,0.972,0.957,0.845 +XM_372434,1.016,1.014,0.993,1.064,1.039,1.089,1.164,1.161,0.986,0.893,1.087,1.027,0.919,1.065,0.843,1.043,0.853,1.103,1.1,1.037,1.104,0.941,1.031,0.806,0.949,0.892,0.967,0.931,1.031,1.127,1.13,0.877,1.001,0.964,0.912,0.957,1.1,0.914,0.948,1.036,1.071,1.007,1.366,0.935,1.084,0.972,0.995,1.081,1.011,1.126,0.959,0.934,1.018,0.937 +XM_372436,1.04,0.936,0.88,0.829,1.069,0.852,0.935,1.037,1.024,0.951,1.017,0.882,0.946,1.288,0.82,0.954,1.154,0.986,1.062,0.87,0.939,0.931,0.923,1.012,1.018,1.05,1.026,0.952,0.837,0.953,1.155,1.163,1.057,1.148,1.148,0.905,1.03,1.134,0.928,0.947,1.101,0.788,0.982,1.071,1.011,1.009,0.834,1.013,1.049,1.176,0.996,0.848,1.05,0.945 +XM_372437,1.12,0.762,1.021,0.944,1.118,1.024,1.115,1.088,1.154,0.924,0.968,1.159,0.922,0.99,1.075,0.902,0.998,0.999,1.015,1.09,0.988,0.944,1.094,0.952,0.985,0.984,0.994,0.975,1.128,0.917,0.999,0.933,0.945,0.925,0.971,1.024,1.04,0.988,0.872,1.038,1.223,0.915,1.154,1.066,1.186,1.096,0.983,0.903,1.013,1.001,1.185,1.03,0.962,0.99 +XM_372441,0.914,1.03,1.037,1.069,0.977,1.08,1.005,1.009,0.996,0.938,1.132,0.953,1.068,1.04,1.22,0.953,1.05,1.042,0.896,1.09,0.957,0.986,1.189,0.975,0.999,1.097,1.06,1.105,1.023,0.994,0.998,0.873,1.149,0.998,1.039,1.004,1.008,1.052,0.959,0.942,0.852,0.97,1.051,0.898,0.988,1.046,0.976,0.943,1.025,0.946,0.92,1.06,0.94,0.994 +XM_372443,1.008,0.977,0.904,1.014,1.087,0.949,1.227,1.07,0.949,0.992,1.177,0.976,1.032,0.831,0.975,1.046,1.146,1.06,0.975,1.044,0.947,0.976,1.011,0.927,0.949,1.062,0.96,0.977,1.067,1.107,1.136,0.885,0.971,1.184,1.155,1.038,0.993,1.035,1.095,0.885,0.95,1.001,0.974,0.91,0.993,0.89,0.914,1.063,0.999,0.885,0.903,0.96,1.111,0.932 +XM_372448,0.976,0.96,1.041,1.019,0.936,0.932,0.995,0.883,0.933,0.98,0.95,1.052,1.057,1.155,0.994,0.967,0.994,0.97,0.972,1.245,0.92,0.989,1.016,1.079,1.078,0.886,0.976,1.03,1.176,1.002,1.006,0.991,0.91,1.124,1.054,1.006,1.038,0.914,0.992,1.134,0.989,0.992,1.326,0.879,0.953,1.167,1.122,1.041,0.993,1.047,0.968,0.97,0.99,0.967 +XM_372460,0.877,0.922,0.965,1.116,1.0,1.127,0.911,1.038,1.033,0.907,1.0,1.088,1.033,1.208,0.993,0.779,1.077,0.999,1.05,1.171,0.879,1.019,1.121,0.974,1.038,1.028,0.998,1.015,1.019,0.938,1.074,1.048,1.003,0.914,1.014,1.064,1.186,0.976,1.046,0.884,0.928,0.949,1.374,1.199,1.109,0.998,0.916,0.816,0.992,0.989,0.946,1.016,1.082,1.063 +XM_372462,0.983,1.046,0.978,1.024,0.978,1.037,0.985,0.93,0.874,0.964,0.923,1.047,1.017,0.994,1.132,0.975,1.068,1.147,0.975,0.936,1.0,0.928,0.971,1.046,0.98,0.981,0.899,0.93,1.211,1.025,1.053,0.88,0.949,0.877,1.002,0.94,1.041,0.975,1.003,0.997,0.953,1.072,1.667,1.025,0.967,0.841,1.046,1.049,0.915,0.951,1.057,1.215,1.0,1.064 +XM_372463,0.993,0.953,1.115,1.025,0.84,0.894,1.006,1.053,1.003,0.985,1.044,1.089,1.001,0.973,0.996,0.884,0.964,0.965,0.962,1.003,1.096,0.881,1.005,0.991,0.947,1.08,0.987,1.074,1.035,0.963,1.045,1.161,0.965,1.099,0.958,1.023,1.053,0.984,1.09,0.908,1.007,1.004,0.978,1.085,1.046,0.943,0.991,1.053,1.239,0.945,1.08,1.144,1.046,0.834 +XM_372464,1.029,1.035,0.956,1.039,0.926,0.885,0.88,0.998,0.899,1.089,0.907,1.118,0.79,0.792,1.086,1.165,1.107,0.969,1.03,0.982,1.152,1.04,0.914,1.072,0.955,1.019,0.992,0.987,0.59,1.076,1.066,0.973,0.879,1.12,1.1,0.909,0.967,1.016,0.954,1.016,1.046,1.059,0.988,1.067,1.076,0.858,0.994,0.815,0.942,1.037,0.916,0.979,1.115,0.958 +XM_372496,1.089,0.918,1.019,0.98,1.183,1.004,1.261,1.017,1.042,0.848,0.923,0.919,0.994,1.127,0.938,1.011,1.008,0.923,0.895,1.019,0.99,1.009,1.029,0.95,0.966,0.951,0.858,0.978,1.301,1.012,1.053,1.102,0.912,1.025,0.922,0.922,0.96,0.984,1.001,1.052,1.006,0.984,0.995,1.016,0.97,0.954,1.003,1.04,0.997,1.018,0.926,1.029,0.921,1.042 +XM_372500,1.032,1.192,0.886,0.958,1.075,1.031,1.034,0.854,1.009,1.068,0.974,1.006,0.98,0.794,1.087,0.901,1.087,0.891,0.99,0.96,0.914,0.964,0.991,0.951,1.016,1.016,1.162,1.011,0.814,0.93,0.907,1.071,0.871,1.015,1.142,0.954,0.962,0.986,1.011,0.954,1.0,0.964,0.83,1.038,0.921,1.03,1.011,1.051,1.018,0.924,1.081,0.924,1.006,1.014 +XM_372501,0.877,1.034,1.082,1.051,1.084,0.936,1.146,0.819,1.101,1.101,1.028,0.996,0.933,1.154,0.775,0.932,0.95,1.083,1.021,1.146,1.133,1.172,1.048,1.092,1.086,1.22,0.868,1.168,2.104,0.935,1.103,0.951,0.89,0.802,1.022,0.948,0.999,1.316,0.973,0.87,0.935,0.919,1.234,0.898,1.018,0.978,0.896,1.017,1.291,1.232,0.837,1.046,0.993,0.959 +XM_372503,1.085,1.092,1.045,1.108,0.998,1.095,1.022,1.021,0.934,0.997,1.044,0.947,0.915,1.277,1.393,1.012,0.891,0.932,1.063,0.99,0.883,1.005,0.974,1.134,1.086,0.997,0.94,1.085,1.171,1.243,0.975,0.96,0.924,1.038,1.006,0.991,1.068,1.16,0.997,0.941,1.041,0.976,1.384,1.064,1.08,0.991,1.018,1.035,1.028,1.134,0.938,1.061,0.922,0.978 +XM_372506,1.066,1.001,1.178,0.898,0.981,1.005,0.939,1.07,1.009,1.136,0.961,1.006,1.078,0.964,0.886,1.03,1.064,0.937,1.003,1.035,0.983,0.993,0.917,1.11,0.951,1.162,1.042,0.823,1.071,1.093,0.978,1.042,0.939,0.983,1.034,1.041,0.909,1.079,0.964,0.983,1.053,1.097,1.073,0.957,0.978,0.946,1.08,1.041,1.118,0.977,0.898,1.058,1.077,0.98 +XM_372507,1.108,0.999,1.095,0.931,1.236,0.989,0.855,1.116,0.989,0.923,1.016,1.032,0.933,0.98,0.968,0.981,1.03,1.054,0.831,1.018,0.951,0.92,0.911,1.05,1.035,1.102,1.036,1.027,0.97,1.123,1.009,1.002,0.991,1.081,1.073,0.995,0.999,0.983,0.907,1.11,1.052,0.918,1.086,0.929,0.93,0.968,0.913,1.179,1.102,0.99,1.156,1.137,0.975,1.012 +XM_372547,0.945,1.055,0.952,1.002,1.036,1.08,1.211,1.048,0.943,0.937,1.006,0.972,1.035,0.806,0.87,1.047,0.955,1.039,0.873,1.08,0.855,1.122,0.924,0.989,0.999,1.12,0.977,0.931,0.813,1.001,1.069,0.786,1.037,0.898,1.194,1.078,1.023,0.875,0.906,1.07,0.833,1.055,0.893,1.075,0.958,0.959,1.001,1.022,1.023,0.933,1.065,1.089,1.03,0.952 +XM_372548,1.055,0.933,0.951,1.028,0.965,1.038,0.97,1.02,1.02,1.118,1.033,1.162,0.851,1.044,0.958,1.0,1.043,0.978,1.176,1.018,0.957,0.881,0.96,0.842,0.953,1.283,0.936,1.053,1.232,0.954,0.88,1.075,1.171,0.977,1.013,1.008,1.066,0.906,1.066,1.181,1.07,0.993,1.252,1.111,0.988,1.118,1.091,0.847,1.039,0.936,0.878,1.05,0.929,0.804 +XM_372559,1.055,1.006,0.906,1.094,0.977,0.999,0.963,0.937,1.007,1.159,0.986,1.0,0.995,1.192,0.974,1.006,1.0,1.057,0.909,0.81,1.06,0.901,1.169,1.01,1.029,1.1,0.954,1.047,1.011,0.924,1.07,0.944,1.081,1.013,1.073,1.071,0.921,1.035,1.077,1.135,0.974,0.926,0.929,0.992,1.0,1.018,1.068,1.157,0.95,1.032,0.877,1.018,0.844,0.928 +XM_372573,0.934,0.757,0.793,1.153,1.143,0.953,0.728,1.216,0.929,1.191,1.096,0.937,0.955,0.958,1.055,1.043,0.894,0.973,0.862,1.201,1.027,1.154,0.95,0.962,0.802,1.117,1.135,1.009,0.89,1.08,1.319,0.977,1.001,1.044,0.87,0.942,1.177,1.039,1.018,1.044,0.906,1.088,0.951,1.05,0.922,0.973,1.255,1.072,1.001,0.993,0.92,1.02,1.092,1.035 +XM_372581,1.101,1.085,0.973,0.959,0.936,0.986,0.916,1.118,1.108,0.987,0.908,0.993,1.242,1.053,1.367,1.089,0.981,0.949,1.363,1.09,0.852,0.962,1.012,0.978,1.006,1.088,1.016,0.853,0.785,0.995,0.826,0.92,1.014,1.069,1.022,0.915,1.113,0.972,1.021,0.961,1.038,0.856,0.999,0.921,0.978,0.904,0.893,1.168,0.91,0.822,1.029,0.869,1.161,1.172 +XM_372584,1.003,1.033,0.913,1.022,1.122,0.993,0.965,0.86,1.057,0.862,1.189,0.985,0.916,1.06,0.959,1.023,0.951,0.988,1.037,1.028,0.954,1.009,1.129,1.115,0.913,1.052,0.983,1.041,0.99,0.951,1.053,0.842,1.227,0.952,1.023,1.136,1.171,0.99,0.9,1.04,0.912,0.969,1.012,0.847,0.984,0.82,0.969,1.049,0.93,1.057,0.942,1.064,1.064,0.963 +XM_372592,0.916,0.988,1.038,0.95,0.97,1.042,0.892,1.094,1.158,0.851,0.949,1.009,1.073,1.066,0.87,1.093,1.04,1.007,1.001,1.067,0.883,1.054,0.891,1.051,1.032,1.081,1.017,1.018,0.89,0.941,1.094,0.894,1.087,0.882,0.977,1.031,0.969,0.962,0.949,1.057,1.03,1.108,0.919,1.057,0.993,0.989,0.991,0.876,1.044,1.058,0.971,0.99,0.914,1.052 +XM_372597,1.061,0.89,1.008,1.006,0.987,1.039,0.834,0.934,1.011,0.966,0.936,0.846,0.944,1.087,1.029,1.012,1.003,0.991,0.98,1.038,1.041,0.952,1.081,1.106,1.093,1.177,0.916,1.08,1.017,1.037,0.801,0.968,1.275,0.966,1.121,1.182,1.237,1.092,1.108,1.161,1.116,0.847,0.987,1.045,1.127,0.91,0.961,1.13,0.881,1.225,1.092,1.069,1.245,0.962 +XM_372599,1.039,0.973,1.093,1.226,1.187,1.01,1.182,1.1,1.087,1.018,0.972,1.044,0.951,0.915,1.005,1.147,1.036,1.06,0.779,1.06,1.093,1.044,0.876,1.024,0.899,0.897,1.012,1.013,0.836,0.924,0.986,1.002,1.094,0.899,0.991,0.947,1.088,1.025,0.877,0.975,0.963,1.081,0.848,0.904,1.009,0.984,0.978,0.978,1.029,1.045,0.98,0.941,0.986,0.896 +XM_372606,1.076,1.003,1.006,1.126,1.185,1.01,0.926,0.965,0.942,0.992,0.903,1.059,1.095,1.112,1.01,1.08,1.005,0.973,1.115,0.956,1.067,1.065,0.994,0.972,0.993,0.925,0.893,0.95,0.837,1.061,0.999,0.938,0.936,1.026,1.115,0.883,1.015,1.023,0.972,1.012,1.07,1.027,1.019,1.082,1.015,1.129,0.992,0.999,0.896,1.014,0.963,1.039,1.058,1.009 +XM_372615,1.086,1.171,0.909,1.062,1.104,1.025,0.992,1.065,0.838,1.096,1.02,0.995,0.946,1.052,0.854,1.065,0.959,0.834,0.918,1.094,1.023,1.021,1.137,1.109,0.802,1.048,0.975,0.996,0.865,0.869,1.045,1.066,1.072,1.011,1.002,0.965,1.151,0.863,1.121,1.134,1.067,0.939,0.822,0.884,1.054,1.086,1.034,0.934,0.919,1.002,0.954,1.006,0.881,0.912 +XM_372669,1.208,1.007,1.073,1.05,1.19,1.007,0.929,1.03,0.951,0.941,1.063,0.928,1.168,0.948,1.088,1.223,0.991,1.034,1.037,1.167,1.115,0.868,1.049,0.933,1.144,0.9,0.998,0.978,1.186,1.213,1.004,0.994,0.986,0.981,1.036,0.937,0.945,1.124,0.973,0.96,1.083,0.922,1.173,1.012,1.116,0.987,0.84,1.084,0.965,0.854,1.133,1.024,1.046,0.957 +XM_372679,0.973,1.001,0.895,1.084,0.929,0.991,1.044,1.069,0.914,1.102,1.079,0.957,1.063,1.157,0.776,0.993,1.046,0.981,0.928,0.932,1.039,0.898,0.979,1.099,1.017,0.997,1.176,0.959,1.001,1.013,0.936,1.07,0.924,0.88,0.797,0.89,1.02,0.99,1.051,1.039,0.911,1.161,0.896,1.032,1.074,0.908,1.076,0.898,0.948,1.103,1.102,0.847,0.931,1.088 +XM_372682,1.0,1.033,0.948,1.021,1.042,1.078,0.978,1.026,0.998,1.017,1.102,1.014,1.006,0.812,0.825,0.85,1.156,0.965,0.967,0.961,0.905,0.982,0.982,0.942,0.93,0.979,1.041,1.013,1.431,0.896,1.033,0.94,1.083,1.091,0.96,1.0,1.081,1.028,1.026,0.939,1.058,1.123,0.986,1.002,1.013,1.025,0.914,1.064,1.1,1.003,1.06,1.062,0.99,1.0 +XM_372693,1.023,0.92,0.975,1.07,0.969,1.046,0.931,1.041,1.003,1.013,1.037,0.93,1.041,0.97,1.143,0.925,1.053,0.945,1.01,0.947,1.045,1.148,1.024,0.984,1.058,1.064,1.039,1.057,0.844,0.995,1.002,0.964,0.986,0.988,1.075,0.999,1.086,0.999,1.037,0.905,0.91,1.019,1.246,0.933,0.876,1.013,0.983,1.048,0.957,1.017,0.919,0.997,0.957,1.055 +XM_372708,0.905,0.98,0.976,1.034,1.056,1.007,1.074,0.891,0.953,1.028,0.972,0.864,0.977,0.912,1.177,1.045,1.011,1.063,1.007,0.957,1.072,0.938,1.044,1.026,0.895,1.047,0.974,1.076,0.964,1.057,1.042,0.972,0.985,1.036,1.003,0.971,0.961,1.007,1.062,0.926,0.892,0.904,0.794,1.052,1.009,0.908,1.121,0.984,0.936,0.932,1.05,0.892,0.93,1.085 +XM_372712,1.06,1.149,0.939,1.042,1.103,1.021,1.058,1.025,1.041,1.022,1.015,0.907,1.016,0.907,0.939,0.966,1.079,0.935,0.973,1.089,0.915,1.053,0.964,0.935,1.098,0.911,1.039,1.01,0.9,0.983,1.026,0.984,0.87,0.902,1.12,1.121,1.008,0.976,0.922,0.946,0.952,1.018,1.133,1.012,1.047,0.962,0.945,1.162,1.122,0.972,1.064,0.935,0.981,1.041 +XM_372719,0.963,1.043,1.078,0.916,1.011,1.007,0.949,0.936,1.0,0.961,0.925,0.994,0.977,0.921,0.897,0.99,0.992,0.955,0.972,0.985,0.989,0.863,0.941,1.01,0.961,1.001,1.004,1.235,1.095,1.118,0.956,0.977,1.033,1.06,0.993,1.002,1.041,1.0,1.054,1.0,0.952,0.957,1.145,1.006,1.128,0.941,1.057,0.954,0.943,1.036,1.074,0.941,1.0,1.133 +XM_372745,1.087,1.009,1.021,1.189,1.051,1.026,1.039,0.945,1.105,0.923,0.987,0.974,0.989,1.017,1.091,0.952,0.972,1.018,0.819,1.11,0.978,0.929,1.034,0.929,0.93,0.94,0.941,1.031,1.074,1.066,0.96,1.015,1.111,1.118,0.91,1.009,1.025,0.925,1.029,1.13,0.973,0.91,1.083,0.959,1.06,0.952,1.015,0.975,0.932,1.019,0.914,1.053,0.935,0.895 +XM_372749,0.985,1.18,1.026,0.948,1.138,0.917,0.812,0.884,0.845,1.115,1.004,0.95,1.068,1.181,0.968,1.02,1.135,1.239,1.103,0.986,1.369,0.998,0.872,0.91,0.897,1.06,0.883,1.015,1.067,0.889,0.816,1.009,1.106,1.095,1.217,1.025,1.002,1.182,0.928,0.881,1.041,1.195,0.781,0.977,1.002,0.795,0.982,0.985,1.075,1.101,0.978,1.069,0.996,0.935 +XM_372751,1.102,0.997,1.071,0.915,0.956,0.958,1.006,1.153,0.943,0.886,0.998,1.118,1.01,0.958,1.113,1.088,0.993,0.937,0.921,1.018,0.986,0.955,0.992,1.1,0.938,0.978,1.106,0.993,1.277,0.97,1.044,0.806,0.929,1.007,0.932,1.059,1.059,1.111,1.034,1.026,1.107,1.012,1.056,0.955,1.064,0.985,0.918,1.046,1.171,1.125,0.987,1.054,1.092,1.211 +XM_372753,0.948,0.857,1.148,1.019,0.993,0.961,1.056,0.911,1.074,1.073,0.928,1.162,0.947,0.866,1.168,1.114,1.001,1.117,1.051,0.94,0.991,0.87,1.0,1.029,0.969,0.944,1.151,1.049,0.959,0.869,1.226,0.96,1.214,1.034,1.091,0.9,1.032,1.013,1.034,0.908,1.064,1.018,0.878,0.962,1.085,0.916,1.014,0.946,0.938,1.041,0.915,0.991,1.06,1.113 +XM_372758,1.0,1.044,1.21,0.998,0.987,1.089,0.933,1.053,1.078,0.845,0.878,0.951,1.013,0.838,0.971,0.918,0.923,1.082,0.994,0.976,0.987,1.043,0.983,1.001,1.08,1.041,1.027,1.004,1.016,1.083,0.991,1.003,1.007,1.01,1.078,0.96,0.925,1.022,0.953,1.011,1.005,1.023,1.112,1.029,1.072,1.087,1.059,0.951,0.921,0.922,0.92,0.946,0.993,1.048 +XM_372760,1.022,0.836,0.947,0.819,0.867,0.952,1.0,1.166,0.898,1.09,0.863,0.957,1.175,1.206,0.878,0.869,0.918,0.961,1.064,1.143,1.03,1.165,0.812,0.902,0.926,1.028,1.045,1.095,0.996,0.931,1.109,0.81,1.009,0.811,0.954,1.17,0.896,1.029,1.068,0.942,0.895,1.034,0.935,0.813,0.905,1.034,0.836,0.883,1.082,1.005,0.938,0.93,1.012,0.793 +XM_372761,1.025,0.998,0.929,0.864,1.003,0.913,1.004,1.212,1.127,0.883,1.013,0.958,0.906,0.965,0.978,1.311,0.947,1.061,0.893,1.155,1.042,1.119,0.981,0.915,0.942,1.05,1.163,1.028,1.231,0.975,1.089,1.022,0.992,1.172,0.95,1.062,1.169,0.984,0.826,1.051,1.024,0.934,0.859,1.102,0.981,0.921,0.967,0.93,1.095,0.866,0.918,0.964,1.036,1.196 +XM_372762,1.017,1.014,0.985,0.875,0.981,0.965,0.773,0.918,1.128,0.911,0.957,1.155,0.997,1.082,0.88,1.04,0.977,1.204,1.051,0.902,0.932,0.98,0.917,1.057,1.045,0.978,1.042,0.93,1.199,0.91,0.94,1.056,0.913,1.018,0.969,1.001,0.89,1.157,1.121,1.055,1.024,1.051,0.972,0.848,1.119,1.042,0.915,1.037,1.13,0.941,1.036,1.015,0.907,1.129 +XM_372765,0.994,1.04,0.923,0.985,1.007,1.033,0.875,1.014,0.992,1.093,1.013,1.049,1.052,0.991,1.028,0.996,0.974,0.846,0.913,0.921,0.863,1.068,1.06,0.896,1.017,0.998,1.112,0.993,0.535,1.064,1.097,0.999,0.936,1.066,0.893,0.927,1.055,0.901,0.932,1.001,0.983,0.991,0.995,0.873,0.967,1.075,0.91,0.986,0.964,1.115,1.129,0.887,0.946,1.085 +XM_372774,1.637,0.692,1.481,0.982,1.042,0.914,1.006,1.162,1.355,1.056,0.926,0.706,0.982,1.361,1.301,1.141,1.114,1.084,1.922,0.842,2.076,1.188,0.852,0.993,0.802,1.354,1.101,1.057,1.124,0.821,1.958,0.956,1.458,1.265,1.435,0.847,0.831,1.102,1.349,0.832,1.206,0.963,0.828,1.005,1.554,0.747,0.868,1.048,0.724,1.399,1.05,0.738,1.599,0.702 +XM_372778,0.651,0.965,1.343,0.451,1.069,1.335,0.518,1.25,1.207,0.877,0.712,1.395,1.184,0.627,0.939,1.431,1.019,0.907,1.004,0.941,0.41,1.294,1.15,1.426,0.482,0.602,1.823,1.081,0.0123,1.051,1.097,1.25,2.06,1.233,0.164,0.435,0.855,1.651,1.068,0.771,1.12,1.086,0.0174,0.433,1.1,0.774,1.174,0.956,1.037,0.701,1.074,0.625,0.451,1.167 +XM_372797,0.96,1.067,1.14,1.067,1.083,0.94,1.14,1.062,0.96,1.079,0.966,0.983,0.843,1.158,1.016,1.056,0.969,0.949,1.021,1.038,1.035,1.005,1.17,0.91,1.228,0.85,0.944,0.896,1.146,0.954,1.01,0.94,1.051,0.942,1.014,0.97,0.83,1.103,0.965,0.976,1.168,0.874,1.171,1.021,1.049,0.879,0.951,1.023,1.007,0.908,1.034,1.115,1.042,1.05 +XM_372804,0.917,1.102,0.996,1.174,1.163,1.0,0.86,0.97,1.049,0.967,0.935,0.973,0.92,0.942,1.004,0.944,1.122,1.116,0.975,1.019,0.923,1.072,1.014,1.213,1.04,0.915,0.985,1.098,0.915,1.002,0.967,0.935,1.216,0.948,1.022,0.982,0.968,0.929,1.052,0.982,1.088,0.961,1.06,1.037,0.92,0.998,0.995,1.127,1.136,1.017,1.017,1.14,1.146,1.063 +XM_372810,0.939,1.032,1.003,1.002,1.028,1.048,0.847,0.857,1.049,0.961,0.879,0.949,0.931,0.917,0.788,0.919,1.16,1.179,0.912,0.927,0.973,1.111,0.961,0.968,1.09,1.163,1.126,1.098,0.914,1.012,0.944,1.061,0.891,1.049,0.911,0.907,0.929,1.084,1.26,0.888,1.175,1.026,1.012,1.125,0.941,1.15,1.057,1.06,0.941,0.899,1.004,0.774,0.827,0.939 +XM_372814,0.882,1.055,1.015,0.953,0.942,0.914,1.085,0.967,0.994,1.171,1.048,0.924,1.001,1.067,0.988,0.981,1.031,0.981,1.032,1.123,1.063,0.955,1.078,0.913,1.048,0.985,0.992,0.998,0.965,0.922,1.121,1.097,1.098,1.022,0.89,1.1,0.968,1.032,0.926,1.049,0.974,1.135,0.926,0.986,1.047,0.992,0.891,1.052,0.903,0.922,0.998,0.984,1.134,0.95 +XM_372822,1.057,1.013,0.859,1.094,0.936,1.023,1.007,0.899,0.972,1.07,0.925,0.944,1.059,1.097,0.881,1.007,1.015,0.867,1.156,0.921,1.122,1.093,0.982,1.003,0.855,0.865,1.073,0.914,0.991,0.974,0.964,0.934,1.119,0.875,1.101,1.034,0.965,1.013,1.029,0.965,1.012,1.013,1.156,0.938,1.114,1.009,1.021,1.049,0.966,1.141,0.975,1.131,1.079,0.947 +XM_372826,0.965,1.031,0.801,1.075,1.038,0.907,0.848,0.949,1.011,0.835,0.925,1.022,1.026,1.168,1.081,1.007,1.04,0.991,1.05,1.266,0.958,0.969,1.015,1.062,0.881,0.917,1.005,1.047,1.185,1.043,1.056,0.932,0.957,1.021,0.959,1.08,0.969,0.938,1.008,0.929,0.904,0.978,0.888,0.929,1.025,0.871,0.847,0.956,1.026,1.022,1.019,0.935,1.023,0.903 +XM_372833,1.087,1.126,0.973,0.89,1.034,0.986,0.965,0.895,1.143,1.029,0.982,0.963,0.955,1.179,1.017,0.975,1.103,0.911,0.841,1.087,0.877,0.958,0.988,0.929,1.172,1.113,0.965,0.974,1.087,1.05,1.088,0.961,1.218,1.288,0.979,1.023,1.025,0.921,1.082,0.935,0.981,0.989,1.182,0.912,1.013,0.942,0.941,0.929,1.054,0.951,1.0,1.088,0.869,1.157 +XM_372838,1.068,1.002,1.022,0.88,1.078,1.04,0.934,1.041,0.964,1.213,0.935,1.036,1.037,0.954,1.086,1.093,1.026,1.115,0.805,1.153,1.022,0.991,0.987,0.994,0.935,1.01,1.029,1.13,0.944,1.071,1.116,1.021,0.897,0.98,0.948,0.919,0.975,0.91,1.014,0.969,0.973,1.086,1.027,0.906,0.927,0.901,1.019,0.91,1.061,0.954,1.003,1.033,1.001,0.997 +XM_372840,1.047,0.925,1.177,0.904,1.122,1.011,0.805,1.25,0.968,0.935,0.977,1.162,1.017,1.138,1.02,1.11,0.897,0.924,1.178,1.039,0.904,1.132,1.064,1.043,0.906,0.942,1.124,1.075,1.077,1.045,0.991,0.962,1.222,0.939,0.952,0.979,0.994,1.016,1.063,0.942,1.029,0.981,0.947,0.982,1.05,0.925,1.002,0.982,1.037,1.0,1.021,0.967,0.901,1.076 +XM_372876,1.005,0.924,0.936,0.996,0.963,0.979,1.228,0.967,1.069,1.036,0.794,1.206,1.138,1.155,0.911,1.079,1.03,1.043,0.979,0.81,1.014,1.114,0.998,1.056,0.928,0.989,1.017,1.132,0.798,1.152,1.103,0.92,0.949,1.022,0.98,0.902,0.992,0.976,0.887,0.997,1.012,0.971,1.1,0.905,1.042,0.951,1.035,0.967,1.033,1.01,1.072,0.916,1.008,0.87 +XM_372878,0.712,0.986,1.446,0.609,1.052,1.214,0.574,0.753,1.379,0.924,0.703,1.052,1.015,0.471,0.943,1.525,0.98,0.96,1.17,1.138,0.349,0.933,1.418,1.395,0.506,0.644,1.299,1.011,0.238,0.989,1.319,1.503,2.436,1.269,0.283,0.677,0.903,1.41,1.429,0.589,1.058,1.418,0.41,0.894,1.097,0.683,1.089,0.878,1.126,0.896,1.097,0.685,0.688,1.311 +XM_372884,1.083,0.87,0.996,1.013,1.048,1.148,0.809,1.067,1.042,1.024,0.964,1.099,1.049,1.015,0.928,1.054,1.002,0.991,1.057,0.981,1.091,0.989,1.064,0.997,0.941,0.928,1.0,1.041,1.372,0.913,0.944,1.017,0.949,1.006,1.02,1.067,1.03,0.977,1.029,1.007,1.094,0.99,0.926,1.053,0.952,0.986,0.977,1.02,1.075,1.031,1.0,0.974,1.086,0.944 +XM_372894,0.919,0.971,0.962,0.929,1.021,1.077,1.012,1.172,0.872,1.144,0.931,0.986,0.978,1.078,0.9,0.965,0.872,1.073,0.973,0.885,0.975,1.067,0.931,1.024,1.155,1.066,1.338,1.013,0.711,1.025,0.96,1.068,0.997,0.917,0.764,0.896,1.076,1.045,1.094,0.919,0.823,0.979,1.347,1.106,0.971,0.968,1.034,1.017,1.049,1.088,1.09,0.937,1.194,0.856 +XM_372911,1.113,1.014,0.965,1.224,0.944,0.973,0.971,1.067,0.82,1.025,1.038,1.006,1.076,0.85,0.899,0.973,1.025,0.863,0.978,1.055,0.971,0.98,1.196,0.938,1.078,1.118,0.934,1.018,1.143,1.111,1.042,0.895,0.918,0.91,1.173,1.117,1.148,0.914,0.914,1.063,1.096,0.92,0.969,1.197,0.984,1.002,0.887,0.881,0.968,0.996,0.934,1.053,0.998,0.881 +XM_372918,1.071,1.003,0.931,1.078,1.05,0.963,0.855,1.045,1.056,1.003,1.033,1.027,0.966,1.121,0.926,1.026,0.943,1.058,0.953,1.148,1.014,1.046,1.033,0.916,0.925,1.067,0.976,1.056,0.783,1.059,0.958,0.976,1.003,0.886,1.068,0.973,0.985,0.999,0.935,1.0,1.009,0.995,0.878,0.945,1.119,1.065,1.031,0.962,0.985,1.105,0.965,0.992,1.082,0.911 +XM_372927,0.925,1.001,1.038,0.999,1.006,1.115,0.856,1.017,1.033,0.912,0.976,0.941,0.928,0.781,0.896,1.21,0.978,1.108,1.061,0.897,0.88,1.16,1.182,0.921,0.961,0.985,1.066,0.98,0.921,0.942,0.99,1.096,1.005,0.912,0.921,1.029,1.017,0.981,1.087,1.044,1.011,1.129,0.903,0.964,0.988,1.018,1.023,1.164,1.115,1.13,0.949,0.866,0.979,0.895 +XM_372933,0.792,1.449,0.922,0.939,0.807,1.844,4.617,0.773,1.017,0.979,1.036,0.842,0.859,0.883,1.0,0.938,0.876,0.934,0.86,1.622,0.818,0.973,1.588,0.884,1.339,0.78,0.813,0.906,1.177,2.267,0.887,1.122,0.984,6.673,0.908,0.756,2.051,0.904,4.417,1.008,0.922,6.675,0.959,0.83,0.816,0.984,0.954,0.843,0.87,0.741,4.203,1.619,0.724,3.521 +XM_372997,1.057,1.128,1.031,1.009,1.122,0.93,0.956,1.128,0.834,1.039,0.932,0.988,1.108,0.995,0.816,0.835,1.175,0.91,0.987,0.946,1.193,1.018,1.107,0.987,0.982,0.936,0.998,1.056,1.098,1.014,1.173,0.982,0.892,0.773,1.073,0.995,0.988,0.922,0.998,1.012,1.111,0.813,1.006,1.035,0.946,1.031,1.051,0.939,0.957,1.022,0.983,1.049,0.793,1.031 +XM_373030,0.957,0.98,0.979,0.988,0.91,0.947,0.889,0.931,1.048,1.074,1.102,0.941,1.018,0.873,1.137,0.787,0.869,1.018,1.143,0.888,1.107,1.063,1.06,0.999,0.986,0.923,1.152,0.997,1.109,1.014,0.934,0.963,0.932,1.032,1.01,0.987,1.022,0.991,1.016,0.969,1.06,0.93,0.873,1.029,1.039,1.006,1.11,1.006,1.197,1.045,0.988,0.906,0.967,1.05 +XM_373038,0.831,1.216,1.1,1.003,0.973,1.099,1.03,0.915,1.099,0.961,0.808,1.031,0.904,0.935,0.902,0.912,1.076,1.088,1.069,1.004,0.965,0.843,0.964,1.113,0.971,0.898,1.137,0.937,0.783,1.197,1.072,1.091,0.988,0.864,1.098,1.034,0.797,0.966,0.98,1.053,0.977,1.053,0.982,0.77,1.099,1.023,1.06,0.927,1.048,0.899,0.971,0.905,0.952,1.065 +XM_373043,1.094,1.013,1.14,0.91,1.009,0.986,0.857,1.009,0.897,0.995,1.006,0.939,1.035,1.081,0.918,1.047,0.869,0.892,0.897,1.004,1.021,0.886,1.071,1.077,1.02,0.962,1.112,0.913,0.918,1.096,0.911,1.103,0.893,1.034,0.974,1.013,0.986,1.002,0.981,0.971,0.913,0.967,1.173,1.019,0.937,0.907,1.087,0.959,1.119,1.085,0.957,0.88,1.167,1.053 +XM_373078,1.002,1.105,0.883,1.059,0.995,1.033,0.911,0.831,0.917,0.908,1.286,0.951,0.988,1.161,0.934,1.024,0.949,0.989,0.923,0.903,0.998,0.997,1.037,1.026,1.104,1.013,0.9,1.098,0.944,0.974,1.002,1.132,0.962,1.195,1.166,0.99,0.992,1.007,1.048,1.062,0.992,1.102,1.047,0.989,1.03,0.869,1.096,0.984,0.973,0.984,0.966,1.147,1.155,1.085 +XM_373109,0.962,0.952,0.992,0.911,0.991,1.042,1.0,0.967,1.082,0.921,1.121,1.045,0.928,0.992,0.96,1.013,0.986,1.039,0.985,1.09,1.139,1.043,0.983,1.032,0.927,1.0,1.06,1.047,1.253,1.037,0.996,0.948,1.005,0.963,0.929,0.99,1.024,1.004,1.041,1.051,0.994,1.047,1.256,1.005,0.932,1.019,1.035,0.961,0.925,0.899,1.089,0.959,1.061,1.153 +XM_373255,1.107,0.909,0.991,1.06,1.033,1.076,0.813,0.945,1.139,1.046,0.981,1.038,0.915,0.932,0.861,0.904,0.996,1.043,0.736,0.998,0.935,1.021,0.87,1.011,1.061,1.016,1.027,1.081,0.89,1.065,1.051,1.135,0.974,1.004,0.949,0.92,0.886,1.049,1.005,0.949,1.009,0.999,1.081,1.021,0.983,0.987,0.909,1.048,1.005,0.987,1.063,0.94,1.09,1.106 +XM_373260,1.045,1.03,0.996,0.893,1.024,1.095,0.95,0.97,1.003,1.179,0.94,1.041,1.117,1.144,1.046,1.035,0.898,1.086,0.995,1.025,1.052,1.038,0.988,0.994,1.055,0.964,0.956,0.925,1.075,1.143,1.139,0.971,1.059,0.874,1.02,1.029,0.983,0.946,0.873,0.758,1.033,1.182,1.102,1.008,1.076,1.05,1.009,0.991,0.882,1.106,0.924,0.969,0.962,0.85 +XM_373281,1.005,1.121,0.957,0.887,0.958,1.099,0.949,0.928,0.873,1.119,1.011,1.033,1.02,1.042,1.1,1.051,0.98,1.0,0.986,0.972,1.024,0.999,0.904,0.964,1.099,0.965,1.035,0.921,0.786,1.038,0.975,0.971,0.972,0.945,0.926,0.991,1.025,1.028,0.951,1.01,1.039,0.97,1.018,1.038,0.991,1.012,1.0,1.049,0.933,1.104,1.077,1.045,0.881,0.984 +XM_373288,0.958,0.999,0.857,1.017,0.822,0.999,0.921,0.855,1.107,1.119,0.928,0.94,0.997,0.919,1.071,0.869,1.071,1.037,0.857,1.098,1.078,0.968,0.963,0.982,0.97,0.975,1.358,0.925,0.912,1.05,0.965,0.96,1.139,1.094,0.94,0.852,0.881,1.108,1.025,0.941,0.988,0.925,1.147,1.131,1.048,0.94,0.958,1.001,1.043,1.131,0.972,0.812,0.834,1.231 +XM_373311,1.006,0.912,1.026,0.947,0.96,0.952,1.076,0.991,0.97,0.945,0.958,1.084,1.002,0.942,0.836,1.063,0.916,1.098,1.021,0.9,1.053,1.022,1.071,1.036,1.046,1.056,0.948,0.892,0.756,0.967,1.025,0.978,0.985,1.026,0.971,1.072,1.048,1.098,1.015,0.861,1.056,0.976,0.886,1.039,1.122,0.987,1.079,1.065,0.976,1.018,1.12,1.072,1.123,1.093 +XM_373312,1.006,1.119,1.097,1.047,0.97,1.003,1.216,0.994,1.038,1.016,0.875,0.898,0.971,1.259,0.824,1.001,1.0,1.097,0.956,0.964,0.977,1.054,0.877,0.945,0.986,0.969,0.953,1.048,1.0,1.05,0.904,1.06,1.012,1.021,1.01,1.066,0.969,1.06,1.043,1.057,1.213,0.921,0.974,1.089,0.895,0.972,0.945,0.955,0.918,0.905,0.993,0.852,1.016,1.1 +XM_373315,1.051,0.857,0.991,1.113,1.118,0.967,1.027,0.844,1.016,0.993,0.992,0.984,1.023,1.186,0.933,0.946,0.973,1.113,1.008,0.973,1.06,0.989,1.086,1.012,1.008,1.107,0.976,1.046,0.971,1.062,1.064,0.948,0.966,0.97,0.965,1.0,1.059,0.902,1.042,1.119,1.125,1.002,1.034,0.973,0.975,0.971,0.971,0.954,1.053,1.107,1.031,0.99,1.005,0.913 +XM_373320,0.974,0.91,0.97,1.06,0.971,1.076,0.82,1.06,1.023,1.092,0.843,0.985,1.011,0.989,1.159,1.004,0.925,0.961,1.047,0.949,0.991,0.94,1.042,0.993,1.007,1.073,0.961,1.031,1.006,1.048,1.164,0.969,0.942,0.978,1.125,0.999,0.992,1.09,1.084,0.897,0.902,1.03,0.944,0.945,1.098,0.991,0.948,1.109,0.935,1.001,1.173,0.994,1.062,0.983 +XM_373347,0.989,0.973,0.897,0.967,1.067,1.14,1.187,0.922,0.902,0.934,1.167,0.919,0.935,0.982,0.968,1.124,0.999,0.977,0.882,1.134,0.98,0.89,0.99,0.914,0.98,0.96,0.99,0.993,0.91,0.956,0.939,0.997,0.919,1.071,1.036,1.001,1.284,1.008,0.971,1.008,1.044,1.211,0.878,0.896,0.956,1.118,1.052,1.013,1.08,0.895,1.083,0.931,0.823,0.898 +XM_373350,0.935,1.128,0.982,0.966,1.105,1.005,0.802,1.312,1.023,1.016,0.978,0.973,1.12,1.337,0.883,1.106,1.025,0.867,1.113,1.073,0.956,1.028,1.031,0.872,1.031,0.996,0.812,0.96,1.214,1.189,0.997,0.871,1.081,0.905,1.121,1.086,1.023,1.091,0.854,1.218,0.941,0.997,1.204,0.874,1.031,0.913,0.931,1.097,1.04,1.08,1.003,0.776,0.959,0.953 +XM_373358,1.091,1.076,1.062,0.905,0.97,1.019,0.951,1.04,0.97,1.003,0.959,0.976,0.93,1.071,0.997,1.046,1.098,0.913,1.0,0.996,1.016,0.972,0.99,1.003,0.947,1.025,1.039,1.084,0.98,1.115,1.051,0.967,1.115,1.008,1.017,0.915,1.051,1.011,0.983,0.974,0.87,0.946,1.325,1.003,0.955,0.942,0.953,0.988,1.019,0.97,1.022,0.976,0.909,0.981 +XM_373381,1.103,1.083,0.929,1.002,0.968,0.966,0.921,0.989,1.015,0.917,0.905,1.069,1.005,0.941,0.983,1.049,0.995,1.09,1.149,1.097,1.071,1.02,0.934,0.977,0.942,0.886,0.89,0.989,1.189,1.073,1.067,0.976,0.906,0.957,1.014,0.972,1.019,1.038,1.156,0.999,1.025,0.962,0.851,1.112,1.029,1.001,0.994,1.044,0.963,1.086,1.015,1.034,1.028,0.969 +XM_373407,0.616,1.019,0.846,1.041,0.56,2.029,0.728,0.539,0.764,0.754,1.56,0.548,0.703,0.647,1.029,1.743,0.887,1.263,1.4,1.15,0.663,0.679,1.523,0.67,0.835,1.45,0.828,0.666,0.143,1.633,0.673,0.696,0.638,2.499,0.546,1.018,1.512,0.609,2.28,0.915,0.697,1.307,0.135,1.357,0.715,1.22,0.647,1.172,0.925,0.754,1.193,0.634,0.665,1.196 +XM_373433,0.811,0.96,1.206,0.749,0.943,1.027,0.614,0.713,1.4,1.166,0.911,0.923,0.686,0.858,1.009,1.033,0.997,0.889,1.2,1.055,0.676,0.962,1.239,1.329,0.648,0.843,1.759,0.909,0.708,1.191,1.0,1.178,1.341,1.065,0.482,1.237,0.849,0.932,1.333,1.492,1.207,0.841,0.389,1.121,1.1,0.904,0.922,0.712,1.0,0.792,0.997,1.06,1.001,1.588 +XM_373444,0.993,1.058,0.954,0.972,1.077,0.914,1.125,1.234,0.886,0.907,1.055,1.032,0.892,0.863,0.973,1.09,0.933,0.907,1.012,1.075,1.057,1.073,0.794,0.941,0.935,0.925,0.999,1.005,1.423,0.98,0.998,1.015,0.953,0.949,1.05,1.028,1.094,0.912,1.007,0.963,1.113,1.033,1.244,0.916,0.973,0.931,0.992,0.932,1.054,0.93,0.955,0.709,0.982,0.974 +XM_373448,1.095,1.0,1.11,0.899,0.956,0.926,0.982,1.112,1.228,0.941,1.128,0.984,0.957,0.868,2.388,3.927,0.898,0.847,1.303,1.042,0.924,1.043,0.953,0.904,0.954,0.99,1.091,0.842,1.134,1.07,0.935,0.93,1.331,1.033,0.903,0.903,1.972,1.025,0.902,0.88,0.889,0.995,1.284,1.0,0.877,1.009,1.211,1.028,0.86,0.987,1.299,1.005,0.833,0.977 +XM_373449,1.024,1.025,0.997,0.901,0.832,0.922,0.985,1.153,1.008,1.036,1.02,0.973,0.991,0.917,0.855,0.994,0.921,1.071,1.004,1.013,1.006,0.954,0.973,1.015,0.969,1.051,0.859,0.979,1.301,1.078,1.01,0.858,0.968,0.929,1.009,0.931,0.918,1.059,1.038,0.982,0.957,1.074,1.009,0.965,0.958,1.009,0.944,1.036,1.12,1.103,1.045,1.052,0.922,1.004 +XM_373451,0.98,0.847,1.283,0.93,1.053,1.053,0.788,1.0,0.883,1.255,0.89,0.945,0.903,1.031,0.975,1.027,0.94,1.196,1.074,1.029,0.833,0.945,0.966,1.241,0.884,0.903,0.921,1.194,1.066,0.902,1.127,1.037,1.154,0.885,0.865,0.865,1.002,1.075,0.907,0.903,1.189,0.904,1.435,0.87,1.152,0.864,1.129,0.985,1.078,1.064,1.061,0.981,0.983,1.019 +XM_373452,1.066,0.895,0.994,0.939,0.932,1.151,0.922,1.201,1.084,0.911,1.046,0.976,1.004,1.135,0.953,0.996,1.086,0.98,0.91,1.019,1.022,1.109,1.175,1.031,1.003,1.037,1.138,1.018,0.873,1.032,1.171,0.91,0.901,0.958,0.936,0.962,1.039,1.041,0.943,0.961,1.0,0.997,0.964,0.849,1.002,0.982,1.068,1.188,1.05,0.943,0.958,1.104,1.176,1.085 +XM_373479,0.96,0.899,0.875,1.139,1.227,1.103,0.986,1.032,0.924,1.0,0.914,1.05,0.972,1.105,1.024,0.971,0.918,0.952,1.048,0.967,1.045,1.045,0.952,1.208,1.197,1.14,0.828,1.106,0.793,1.099,1.094,1.112,1.19,1.089,0.908,1.137,0.868,1.051,0.916,1.019,0.974,1.018,0.755,1.035,0.929,0.986,1.057,1.076,1.144,1.0,0.912,1.094,0.976,0.92 +XM_373481,1.065,0.875,0.966,1.089,0.83,0.993,1.018,1.125,1.128,1.038,0.997,0.978,1.092,0.964,0.95,1.041,0.895,0.93,0.997,1.066,1.065,0.819,1.068,1.207,1.003,1.028,0.966,1.158,0.961,1.14,0.837,0.866,0.995,0.882,1.021,1.016,1.092,1.0,1.023,0.961,1.096,1.066,0.77,1.193,0.885,1.048,0.955,0.848,1.098,1.172,0.929,0.992,1.046,1.0 +XM_373484,0.982,1.074,0.992,1.089,1.082,1.063,1.103,0.982,0.87,1.002,0.945,0.935,1.248,0.83,1.259,1.149,1.032,0.91,0.908,1.003,1.091,1.038,1.091,1.087,0.993,0.975,0.863,0.975,1.343,0.972,0.937,1.042,0.972,1.019,1.024,1.021,0.895,0.985,0.95,0.897,0.902,1.092,1.011,1.175,0.963,0.958,1.153,1.109,0.977,0.994,1.096,1.013,0.847,1.006 +XM_373494,0.976,1.037,0.904,1.174,1.077,1.089,1.084,0.983,1.106,0.985,1.019,1.007,0.933,0.982,1.08,1.118,1.013,1.03,1.041,0.931,1.184,1.032,0.805,0.868,0.901,1.055,0.882,1.202,0.633,1.094,0.982,1.086,1.106,0.997,1.065,1.083,0.89,0.865,0.896,0.963,1.025,0.883,1.165,1.106,0.957,1.035,0.963,0.887,1.169,0.867,1.09,0.898,0.922,0.999 +XM_373496,1.13,1.116,0.832,0.921,0.889,1.073,0.967,0.813,1.114,1.024,1.023,0.956,1.026,1.077,1.304,0.948,1.027,0.88,0.891,1.135,0.938,1.175,0.956,0.895,0.999,1.175,1.14,1.11,0.97,1.151,0.941,1.02,0.857,0.876,0.923,0.888,1.067,1.167,1.062,0.784,0.981,0.919,0.844,1.026,0.911,1.004,1.161,1.004,1.015,1.185,1.018,0.922,1.114,0.95 +XM_373497,0.52,1.124,0.564,0.754,0.588,1.288,0.847,0.595,0.53,0.545,1.188,0.568,0.547,0.535,1.1,1.061,0.665,0.518,0.64,0.771,0.696,0.483,1.389,0.522,1.117,0.491,0.518,1.044,0.504,2.147,0.521,6.903,1.852,1.858,0.508,0.778,0.881,0.811,5.188,8.27,1.363,2.205,3.368,0.801,0.626,3.253,0.824,0.492,0.749,0.627,1.116,1.788,0.872,1.041 +XM_373502,0.923,1.115,0.921,0.963,1.168,1.024,1.078,1.124,1.092,1.274,1.074,0.891,0.871,1.023,1.142,0.965,1.057,0.993,0.96,0.963,0.961,1.036,1.267,1.095,0.939,1.026,1.034,1.052,1.155,1.097,0.871,0.95,0.958,0.958,1.089,0.984,1.049,0.962,0.884,0.967,1.131,1.004,0.983,0.838,0.994,0.836,0.961,1.062,0.973,0.861,0.921,0.949,0.918,0.952 +XM_373505,1.182,1.04,0.78,0.854,0.941,0.889,0.841,1.174,0.958,0.905,0.911,1.0,1.002,1.088,0.98,0.806,0.957,0.862,1.13,0.944,0.935,0.946,0.892,1.033,0.961,0.969,1.015,0.962,1.036,1.027,1.004,1.001,1.0,0.973,1.026,0.798,0.977,1.024,0.95,1.029,0.999,0.924,1.007,1.027,0.981,0.999,0.846,0.931,0.953,1.134,1.008,1.124,1.165,1.104 +XM_373509,1.085,1.125,0.851,0.949,1.07,1.108,1.015,0.929,1.051,1.086,1.02,0.969,0.956,1.069,0.977,0.958,0.903,1.118,0.958,1.026,1.153,0.853,0.978,0.851,0.97,1.109,0.945,1.051,1.247,0.905,1.175,0.988,1.081,0.895,0.91,1.056,0.983,0.946,1.018,0.904,0.973,1.008,1.242,1.122,1.067,0.985,1.018,1.1,0.921,0.952,0.938,1.118,1.049,1.187 +XM_373511,1.022,1.228,1.116,1.035,0.913,1.055,1.01,1.132,1.237,0.919,1.079,1.101,0.919,0.912,0.894,0.854,1.025,1.051,1.035,1.013,1.031,0.952,0.877,1.183,0.947,1.019,1.077,1.039,0.917,1.147,1.053,1.082,0.875,0.993,1.034,0.964,0.988,1.029,0.992,0.966,1.125,0.936,1.0,1.054,0.921,0.856,0.952,1.031,1.141,1.01,1.054,0.98,1.031,0.939 +XM_373515,1.056,0.99,1.157,0.948,0.858,0.927,0.891,0.832,0.907,0.972,1.206,0.969,0.965,1.066,1.167,0.879,0.993,1.047,1.157,1.047,0.943,0.968,1.01,1.02,1.008,0.991,1.069,0.978,0.883,0.993,1.151,0.907,0.936,0.948,1.077,1.1,1.096,0.986,1.058,0.87,1.119,1.044,0.892,1.112,1.11,1.221,1.042,0.951,0.899,1.064,0.94,1.119,1.101,0.951 +XM_373518,0.948,0.936,1.139,1.11,1.079,1.055,0.91,0.976,0.955,1.096,1.074,0.953,0.958,0.858,1.155,0.943,1.025,1.129,1.249,0.901,1.031,0.873,0.931,0.953,1.12,0.988,1.016,0.967,0.949,0.987,0.989,0.937,0.959,1.058,1.172,0.988,0.971,0.989,0.933,1.143,1.063,1.005,0.716,1.129,0.97,0.973,1.089,1.037,0.959,1.188,0.928,1.024,0.964,0.98 +XM_373519,0.981,0.987,0.984,0.986,0.97,0.96,1.025,0.875,1.011,1.037,1.041,0.936,0.993,0.858,1.083,1.121,0.888,1.0,1.008,1.023,1.047,1.031,1.098,1.01,0.941,1.123,1.055,0.979,0.796,0.915,1.074,1.071,0.912,0.919,1.127,1.099,0.984,0.99,0.924,1.141,1.161,1.1,0.969,1.052,0.958,1.1,0.944,1.1,1.008,1.043,1.054,0.931,1.043,0.936 +XM_373522,0.948,0.972,0.95,1.01,0.897,0.904,1.025,0.933,1.019,0.958,1.051,0.941,0.974,1.062,0.943,1.03,1.041,1.067,0.884,0.866,1.007,0.982,0.944,0.959,1.058,1.065,0.883,0.88,0.735,1.002,1.019,1.019,0.973,0.891,1.061,1.191,1.021,0.916,0.903,0.998,1.009,1.101,0.953,1.015,1.003,0.959,0.948,1.072,0.951,1.129,0.951,1.08,1.017,1.069 +XM_373524,0.976,1.085,0.838,1.13,1.107,1.079,1.061,1.037,1.007,1.077,0.924,1.058,1.137,1.351,1.156,1.0,0.978,1.029,0.978,0.864,1.088,1.015,0.941,1.04,0.952,1.046,0.954,1.002,0.998,1.122,1.013,1.068,1.167,0.838,0.951,1.22,0.872,1.126,1.1,0.94,1.06,1.062,1.041,0.871,1.059,0.933,0.924,0.916,1.035,1.086,1.127,0.926,1.197,0.793 +XM_373529,1.078,1.004,1.043,0.977,0.861,0.955,0.878,1.018,1.087,1.053,0.983,0.906,0.886,1.116,0.798,0.967,0.998,0.91,1.045,0.942,0.906,1.065,0.937,1.117,1.0,0.978,1.022,0.971,0.79,1.07,1.076,0.967,0.903,1.056,0.961,1.003,1.153,0.972,1.054,0.968,0.997,0.964,0.852,1.621,1.117,1.234,0.97,0.959,1.065,0.975,1.063,1.042,1.011,0.885 +XM_373541,0.868,0.968,1.011,1.066,1.117,0.986,1.19,1.135,0.862,0.961,0.948,0.935,1.106,0.95,0.968,1.004,0.959,1.199,0.947,0.921,1.07,0.975,0.912,0.996,1.001,1.061,0.878,1.047,0.966,1.132,0.999,0.813,1.11,0.952,1.018,0.966,0.952,1.246,1.011,1.008,0.854,1.015,1.009,0.887,1.109,0.903,0.939,1.024,1.012,1.156,0.926,0.958,0.911,0.914 +XM_373542,1.007,0.941,0.884,1.081,0.89,1.026,0.971,0.933,1.009,1.026,0.895,0.889,1.02,0.958,0.833,1.055,1.021,0.9,1.022,0.979,1.101,1.02,1.071,0.976,1.05,0.909,0.925,0.968,0.899,1.066,1.035,0.973,1.031,1.046,1.012,1.081,0.999,0.936,1.002,0.963,1.132,1.001,1.265,0.961,1.035,1.06,0.979,1.047,1.027,1.175,0.893,1.011,0.99,1.021 +XM_373553,1.135,0.935,1.021,0.951,0.941,0.876,0.932,1.074,0.899,1.032,0.937,0.98,1.055,0.93,1.021,1.039,0.935,1.042,0.973,0.931,1.026,0.949,0.936,1.018,1.002,0.903,1.074,0.861,1.006,0.997,1.026,0.855,1.685,0.966,1.072,1.171,1.01,1.028,0.933,0.839,0.828,1.099,1.213,1.163,1.0,0.918,1.143,0.951,1.106,1.001,0.942,1.027,1.0,1.127 +XM_373557,0.94,0.934,0.857,1.086,0.935,1.119,1.065,0.962,1.2,1.188,0.93,1.177,0.998,0.943,1.039,1.086,1.042,1.074,1.044,0.994,1.016,0.923,0.979,1.055,0.956,1.054,0.953,0.948,0.863,0.972,0.963,1.146,1.094,1.031,0.965,1.054,1.066,1.188,0.874,1.04,0.934,0.951,1.12,0.97,1.205,1.229,0.955,1.067,1.084,0.938,0.85,1.166,0.986,0.966 +XM_373561,0.845,1.039,0.759,1.223,1.01,1.261,0.949,1.003,0.844,0.869,1.007,0.852,0.868,0.959,1.223,1.421,0.895,1.098,0.814,1.396,0.966,0.854,1.469,0.855,0.976,0.886,0.83,0.855,0.875,1.468,0.831,1.063,0.919,1.09,0.922,1.07,1.314,0.939,1.108,1.388,0.875,1.25,1.059,0.817,0.832,1.588,1.089,0.863,1.046,0.807,1.263,0.939,0.73,1.256 +XM_373564,0.902,1.056,1.018,0.996,1.105,1.029,1.051,0.864,0.989,0.967,0.867,0.948,1.053,0.978,0.882,0.952,0.984,0.954,0.856,0.967,0.85,0.963,1.121,1.071,0.901,1.008,0.891,1.009,1.081,1.066,1.094,0.882,0.987,1.07,1.084,1.002,1.017,1.065,0.988,0.955,0.972,0.864,1.036,0.991,0.97,0.975,1.11,1.16,1.124,1.082,0.971,1.067,1.102,0.885 +XM_373572,0.975,1.015,0.927,0.935,0.945,1.001,0.829,0.906,0.888,0.99,1.065,0.98,0.901,0.84,0.955,0.997,0.977,0.922,0.936,0.91,1.08,0.965,0.899,1.017,1.022,1.083,1.014,1.066,0.876,1.004,1.011,1.012,0.969,0.967,1.016,1.032,0.983,1.071,1.087,1.118,1.087,1.153,0.775,1.053,1.127,1.042,1.044,0.999,0.977,0.968,0.895,0.999,1.036,0.892 +XM_373575,1.051,1.095,0.852,1.132,1.085,0.998,0.853,1.004,1.05,0.875,1.007,1.048,0.987,0.911,0.9,1.123,0.94,0.925,1.033,0.803,1.084,0.954,1.006,0.926,0.958,1.036,0.952,0.984,1.041,0.849,0.898,1.056,1.042,1.038,0.926,0.828,1.021,0.955,0.932,0.929,1.263,1.071,0.939,1.025,1.051,1.099,0.996,0.936,1.026,1.03,1.061,0.984,0.947,0.904 +XM_373587,0.892,1.128,0.842,1.12,0.98,1.263,1.154,0.704,0.948,0.873,1.504,0.864,1.008,0.853,0.955,1.253,1.03,0.977,1.05,1.42,0.987,0.892,1.307,0.918,0.867,0.882,0.791,0.864,0.702,1.162,0.92,0.894,0.953,1.307,0.949,1.417,1.119,0.925,0.96,1.094,0.919,1.295,0.774,1.225,0.937,1.238,1.107,0.874,1.209,0.917,1.442,1.023,0.95,0.962 +XM_373595,0.875,1.091,0.918,1.064,0.858,1.389,0.913,1.092,0.964,1.158,0.923,0.965,1.044,0.891,0.991,1.324,1.033,0.821,1.041,1.242,1.055,0.987,1.191,1.017,1.045,0.877,0.792,1.002,0.998,1.03,0.946,0.93,1.407,1.023,1.021,1.065,1.094,0.854,0.92,0.99,1.034,1.044,1.177,1.02,0.887,1.03,0.981,0.829,1.019,1.051,1.096,0.934,0.989,0.945 +XM_373596,0.9,0.964,1.092,0.903,1.066,0.969,0.771,0.828,0.978,1.056,1.105,1.073,0.968,0.82,0.982,1.019,1.033,1.071,1.025,0.99,0.945,0.912,1.104,1.015,0.909,1.057,1.043,1.018,0.807,1.068,0.931,1.026,0.915,0.948,0.894,0.95,0.956,1.048,1.05,0.989,0.953,0.992,0.919,1.153,1.025,1.121,1.071,1.074,1.023,0.937,0.996,0.909,0.894,0.997 +XM_373603,1.054,0.887,1.027,0.853,1.048,0.982,0.894,0.91,1.039,1.15,0.991,0.977,1.035,1.031,0.872,1.039,1.122,1.015,0.867,0.942,0.919,0.857,0.876,1.037,0.978,0.934,0.945,1.27,1.159,0.952,0.915,1.024,0.78,1.077,1.088,0.898,0.877,1.071,1.178,0.995,1.1,1.02,0.773,1.015,1.046,0.891,1.167,0.917,0.916,0.921,0.981,1.057,1.059,0.923 +XM_373609,0.962,0.962,1.155,1.039,0.946,0.99,0.89,0.95,1.078,0.951,0.873,1.026,0.996,0.927,1.119,1.024,0.884,0.935,1.089,1.148,1.202,0.927,0.861,1.0,0.975,0.962,1.011,1.044,1.335,1.055,0.961,1.086,1.15,0.974,1.066,1.026,0.961,0.833,0.977,0.917,1.068,1.004,0.955,1.024,1.137,1.134,0.994,1.0,1.187,1.037,0.967,1.147,1.093,0.995 +XM_373611,0.978,1.052,0.94,1.133,1.095,1.043,1.191,0.912,1.045,1.0,0.979,1.003,1.032,1.187,0.934,1.003,0.922,1.086,1.152,0.936,0.982,1.0,1.053,1.02,0.988,0.953,1.031,0.884,1.241,0.995,1.086,1.066,1.064,1.011,1.003,1.083,1.185,0.913,1.077,0.981,1.056,1.005,0.995,0.888,1.064,0.955,0.896,0.949,0.974,0.91,1.148,1.076,1.063,1.051 +XM_373624,0.813,0.967,0.777,0.83,0.728,2.084,1.001,0.791,0.788,0.811,1.976,0.896,0.795,0.792,1.101,2.174,0.813,1.062,0.822,1.739,0.813,0.781,2.318,0.821,0.989,0.83,0.832,0.833,0.77,1.262,0.757,1.118,1.035,1.594,0.781,0.905,1.748,0.949,2.253,0.97,0.804,2.615,1.19,0.959,0.807,1.107,1.263,0.79,0.832,0.94,1.297,0.988,0.837,2.878 +XM_373627,0.955,0.975,1.01,1.001,0.982,1.001,1.007,0.996,1.088,1.013,0.951,1.002,1.004,0.845,0.979,0.995,1.032,1.001,1.1,1.019,0.882,1.09,1.049,1.054,1.002,0.936,0.826,1.081,0.727,1.001,1.002,1.025,0.95,0.973,1.046,1.156,0.888,0.941,0.981,0.925,0.881,1.005,0.757,1.057,0.963,1.006,1.071,0.987,1.082,0.942,1.035,0.996,1.01,1.03 +XM_373628,0.916,1.114,0.997,1.088,1.02,1.228,0.929,0.797,0.967,0.926,1.129,0.998,1.101,1.106,0.883,1.245,1.0,0.914,1.031,1.033,0.934,1.12,0.955,1.109,0.971,1.121,0.96,0.894,0.763,1.129,0.875,1.002,0.968,0.995,1.002,1.063,1.067,0.99,1.006,0.931,0.875,0.984,1.165,1.085,0.852,1.281,0.912,1.124,1.046,0.829,1.016,0.971,1.019,1.098 +XM_373633,0.904,1.239,0.98,1.064,0.902,1.043,1.068,0.989,0.898,0.937,0.953,1.012,0.891,1.043,0.969,1.043,1.0,1.097,0.874,1.143,0.922,1.08,1.097,1.048,1.172,0.903,0.991,0.931,0.993,1.084,1.068,1.031,1.047,1.147,0.893,0.957,1.015,0.963,1.027,1.024,0.929,0.879,0.861,0.835,0.881,0.924,0.937,1.067,1.089,1.039,1.024,1.202,0.821,1.02 +XM_373636,1.07,1.14,0.98,1.214,0.945,1.159,1.106,0.87,0.988,1.03,1.101,0.981,0.977,0.982,0.927,1.012,0.909,1.068,0.965,1.004,1.069,0.854,1.267,0.847,0.932,0.966,0.961,0.887,1.06,1.154,0.863,0.982,0.926,1.078,0.885,0.938,1.092,0.961,1.143,0.937,1.043,1.401,1.066,1.089,0.962,1.186,1.012,0.915,0.961,0.926,0.941,0.864,0.945,0.765 +XM_373649,0.919,1.024,0.963,1.067,1.171,0.878,0.89,1.012,1.012,0.873,0.953,1.092,0.876,1.038,0.951,0.871,1.156,0.933,1.096,0.888,0.892,0.947,0.954,0.966,0.919,1.06,1.077,1.042,0.718,1.144,0.984,1.129,0.918,1.016,0.947,0.939,0.944,1.045,0.98,1.06,1.072,0.844,0.926,0.932,1.112,1.157,0.974,1.047,0.871,0.919,1.063,1.001,0.954,0.912 +XM_373653,0.983,1.072,0.981,1.033,0.868,0.984,0.928,0.961,0.996,0.93,1.071,1.002,0.97,1.126,1.054,1.012,0.981,1.014,0.931,1.018,1.017,0.908,0.995,0.988,1.042,1.02,1.084,1.024,0.996,1.001,1.029,0.904,0.958,0.974,0.959,1.131,0.971,0.99,0.944,0.997,0.97,1.058,0.991,0.905,0.839,1.097,1.004,0.923,0.986,1.019,0.894,0.976,0.987,1.095 +XM_373660,1.051,1.107,1.03,1.19,1.051,1.211,1.011,1.121,0.999,1.013,0.832,0.983,0.99,1.145,1.422,1.199,0.871,0.844,1.012,1.003,0.946,1.117,0.957,0.917,0.817,1.071,0.974,0.96,0.896,0.989,0.727,1.136,0.966,0.885,1.098,1.065,1.217,0.941,1.06,0.969,0.922,0.991,1.199,1.097,0.977,1.016,0.995,0.906,1.058,0.957,1.105,0.917,1.002,1.052 +XM_373666,1.131,0.93,1.099,1.014,1.549,0.964,1.042,1.623,2.333,1.044,0.988,1.682,1.194,1.163,1.734,1.074,1.022,1.004,1.088,0.949,1.075,1.222,0.972,1.132,0.964,1.087,1.126,1.618,0.899,0.947,1.649,0.978,1.202,0.953,3.407,0.889,0.868,2.232,0.874,0.984,1.254,0.935,0.962,0.939,1.124,0.857,1.101,1.471,1.022,1.128,0.92,0.879,1.102,1.07 +XM_373670,0.891,1.624,0.955,0.895,1.02,1.152,0.912,0.96,1.098,1.059,0.944,0.974,0.948,1.063,0.904,1.105,0.916,0.831,1.162,1.298,0.895,1.012,1.13,1.164,1.057,0.908,1.018,1.006,0.757,1.123,1.092,1.09,1.609,0.99,1.003,1.141,0.962,0.867,0.951,1.028,0.952,1.001,0.701,0.983,0.976,0.999,0.918,0.852,0.9,0.908,0.899,1.048,1.122,1.178 +XM_373681,1.199,0.985,0.953,0.958,0.983,1.02,1.039,0.984,1.021,0.914,1.01,0.959,0.908,0.922,0.975,1.038,1.101,0.91,0.961,0.977,1.293,1.073,1.084,0.995,0.895,1.067,0.955,1.061,0.859,1.052,1.031,1.044,0.942,1.018,1.04,1.01,0.953,1.033,0.967,0.965,0.99,0.999,0.984,0.999,0.952,1.135,1.108,1.033,1.027,1.113,0.932,1.146,0.993,0.933 +XM_373687,1.009,1.024,0.959,0.986,0.9,0.986,0.909,1.052,0.915,1.01,0.928,0.986,1.065,1.296,0.935,1.099,0.91,1.067,0.947,1.12,0.909,1.037,0.994,0.897,0.999,1.089,0.972,1.16,1.346,0.965,1.001,1.163,0.903,0.871,0.953,1.004,1.009,0.995,0.934,1.128,0.951,1.026,1.073,0.985,1.085,1.045,0.897,1.058,0.969,0.908,1.059,0.948,0.948,1.06 +XM_373692,1.021,1.0,0.96,0.838,0.967,0.924,1.015,0.85,1.004,0.946,1.146,1.089,1.082,0.946,1.311,1.137,1.002,1.059,0.949,1.015,1.169,1.018,1.003,1.07,1.021,1.024,0.842,0.945,1.536,1.034,1.17,1.0,0.921,0.944,0.883,0.893,0.898,1.024,1.17,0.923,1.132,0.937,0.902,1.117,0.712,0.961,1.016,1.017,0.869,1.103,0.964,0.848,0.798,0.961 +XM_373693,1.039,0.983,1.108,1.181,0.972,1.094,0.999,0.864,0.944,1.111,1.091,1.046,1.02,0.815,0.998,1.098,0.935,1.017,1.018,1.13,0.98,0.985,0.956,1.186,1.043,0.918,0.8,0.839,0.926,1.112,0.933,0.873,0.986,0.868,1.043,0.972,1.12,1.036,1.04,0.94,0.954,1.206,0.931,0.966,1.049,0.837,0.966,1.158,0.878,1.155,0.875,0.966,0.953,0.917 +XM_373699,1.124,0.94,0.927,1.038,0.989,0.954,1.089,0.903,1.013,0.957,1.01,1.04,1.015,1.021,0.845,1.165,0.938,1.137,0.901,1.067,1.215,0.989,0.927,1.051,1.073,1.11,1.098,0.992,1.07,1.195,0.935,1.017,1.054,0.943,1.022,1.005,1.095,0.86,0.991,1.08,1.073,1.062,1.226,1.026,1.014,1.006,1.041,0.993,0.958,0.901,1.022,1.0,0.889,1.089 +XM_373707,1.032,0.962,1.136,0.951,1.136,1.114,0.986,1.015,1.033,0.982,1.032,0.883,0.996,1.165,1.22,1.16,0.94,1.101,1.015,1.028,0.875,0.968,1.088,0.986,0.924,0.999,0.859,0.999,1.265,0.979,1.108,0.91,0.789,0.886,0.973,1.121,1.023,1.076,1.12,0.939,0.964,1.091,1.025,0.871,1.086,0.957,0.994,1.053,0.879,1.049,1.029,1.037,0.968,0.992 +XM_373709,0.994,1.066,0.994,1.0,1.109,1.031,0.992,0.88,1.074,0.994,0.942,0.914,0.943,1.071,1.0,1.249,1.015,0.944,0.945,0.998,0.847,1.081,0.828,0.96,0.95,1.021,0.965,1.112,1.005,1.06,0.907,1.034,0.947,1.048,1.161,1.037,0.962,1.016,1.036,0.841,1.054,1.042,1.011,1.108,0.901,1.054,1.035,1.014,1.083,1.023,0.977,0.934,1.003,0.971 +XM_373721,0.977,0.861,1.086,1.051,0.993,1.016,1.108,1.345,1.025,0.97,0.973,1.004,0.939,0.887,1.046,1.128,0.865,0.903,1.205,1.056,0.944,0.864,0.917,1.015,0.945,1.016,1.05,1.091,0.864,0.947,1.023,0.913,0.994,0.968,1.0,1.032,1.112,0.914,1.059,0.97,0.976,1.051,1.149,1.076,0.955,0.946,1.038,1.053,1.064,1.136,0.887,0.885,0.877,0.918 +XM_373723,1.167,1.103,0.872,1.084,1.08,1.043,1.148,1.353,1.062,0.985,0.988,1.1,0.911,1.047,0.967,1.081,1.052,0.964,0.955,1.069,0.972,1.084,1.107,0.964,1.027,0.982,1.004,1.088,0.828,0.977,1.001,0.868,0.96,1.013,1.053,1.108,0.981,1.019,0.897,1.026,1.003,0.845,1.314,1.136,1.077,1.021,0.979,0.996,0.922,0.979,0.93,1.065,1.006,0.889 +XM_373728,1.297,0.851,1.719,0.998,1.147,0.903,0.854,0.961,1.527,1.194,0.828,0.874,1.309,0.975,0.885,0.803,1.846,1.248,1.612,0.98,1.358,1.308,0.716,1.501,0.835,1.19,1.501,1.123,0.962,0.863,1.17,0.938,1.756,0.853,0.81,1.362,0.909,1.166,0.948,0.937,1.908,0.778,0.925,0.972,1.587,0.839,1.064,1.208,0.861,1.871,0.89,1.046,1.165,1.453 +XM_373730,1.143,1.009,0.972,0.844,1.064,1.033,0.973,1.128,0.975,1.079,0.944,1.09,1.059,1.045,1.031,0.946,0.907,1.008,1.162,0.926,0.953,0.964,0.972,1.159,0.935,1.053,0.976,0.932,0.851,1.006,0.93,0.939,0.878,1.068,0.825,1.038,1.058,1.174,0.943,1.027,1.11,0.971,1.311,1.101,1.079,0.998,0.915,1.138,0.89,1.016,0.971,0.858,0.918,1.123 +XM_373731,1.021,1.143,0.948,0.965,1.009,1.119,0.886,1.019,1.059,0.962,0.993,0.981,1.039,0.915,1.072,0.876,0.946,1.043,1.012,1.008,0.94,1.125,1.056,0.933,0.994,1.189,1.081,0.893,1.397,0.992,1.09,1.01,0.916,1.156,1.048,0.989,0.915,1.027,1.017,1.037,0.962,1.04,1.013,0.965,1.053,1.053,1.062,0.994,1.057,1.028,0.926,1.03,0.952,0.902 +XM_373733,1.069,1.318,1.03,0.995,0.997,0.983,0.856,1.089,0.99,1.105,0.973,1.127,0.923,1.076,1.19,1.171,0.947,0.956,1.026,0.979,0.999,1.037,1.003,0.939,1.503,0.956,1.07,0.895,0.972,0.971,0.956,1.129,0.989,1.191,1.035,0.953,0.919,1.017,0.964,0.96,0.979,1.088,1.107,1.048,1.341,0.913,0.955,0.925,0.959,0.995,0.897,1.097,0.983,0.94 +XM_373734,0.958,0.938,0.949,0.971,0.931,1.089,1.222,1.119,1.064,0.96,0.881,0.988,1.098,1.074,0.979,0.899,1.077,1.0,0.885,1.009,0.968,0.94,0.959,1.078,1.023,1.203,1.026,1.055,1.013,1.13,1.072,0.898,0.904,0.978,0.887,0.968,1.034,0.784,0.94,0.92,0.852,0.976,0.857,0.932,0.944,1.156,1.016,1.0,1.056,0.941,1.044,1.052,0.88,1.006 +XM_373754,1.094,0.998,0.957,0.981,1.103,0.947,1.198,1.214,1.194,1.021,0.968,0.977,1.022,0.92,0.864,0.95,1.06,1.182,0.978,1.144,0.944,0.965,1.016,0.985,1.041,0.924,0.995,0.965,0.874,0.838,1.003,0.991,0.975,0.903,1.155,1.014,1.03,1.107,0.93,0.99,1.021,0.824,1.176,0.923,1.004,0.836,0.9,1.072,1.058,0.947,1.091,0.901,1.168,0.963 +XM_373758,1.12,1.0,1.006,0.989,1.1,0.985,0.945,0.95,1.079,1.084,0.941,1.076,1.039,0.943,1.07,1.098,0.877,0.968,0.935,1.0,0.922,1.04,1.026,1.083,0.98,0.876,0.998,1.053,1.145,1.082,1.016,0.897,0.96,0.966,1.079,1.022,0.979,1.142,0.906,0.998,0.981,1.091,0.997,0.91,1.056,1.101,0.91,0.998,1.006,1.251,1.099,0.876,1.072,1.07 +XM_373761,1.06,1.04,0.865,1.014,1.014,0.945,1.151,0.928,1.071,1.1,1.007,0.972,0.967,1.153,1.1,0.91,0.935,1.173,1.181,1.116,0.929,0.953,0.882,0.941,0.948,0.949,0.942,0.9,0.971,0.976,0.971,0.964,1.044,0.945,1.011,1.087,0.932,1.029,1.013,0.916,0.97,1.023,1.217,1.001,1.149,1.041,1.067,0.994,0.957,1.075,0.905,1.012,0.993,1.159 +XM_373771,1.023,1.044,1.147,0.946,1.105,1.063,1.011,1.203,1.071,1.056,0.999,0.917,1.042,1.078,0.996,1.112,1.079,1.149,1.112,0.849,0.982,1.082,0.912,1.127,0.835,0.908,1.21,1.015,0.984,1.002,1.093,0.928,0.97,0.934,0.961,0.966,0.995,1.089,1.132,1.001,1.002,0.952,0.961,0.966,1.412,0.976,1.093,0.959,0.881,1.064,1.014,0.915,0.954,0.877 +XM_373783,0.947,0.992,1.03,0.972,0.843,0.969,0.956,0.937,1.062,1.107,1.04,1.054,1.041,0.962,1.004,1.061,0.958,1.028,0.947,1.08,1.036,1.068,0.966,1.025,0.973,1.017,1.248,0.876,0.783,0.992,1.087,0.972,0.836,1.03,1.225,1.1,0.988,1.067,0.979,0.834,1.143,0.992,1.267,0.965,0.947,1.087,1.108,0.975,0.98,1.019,0.976,0.908,1.035,0.794 +XM_373787,1.015,1.012,0.976,1.056,1.013,0.974,1.089,1.011,0.901,0.846,1.018,1.098,0.963,0.989,1.086,1.011,1.0,1.004,0.982,1.0,1.177,0.962,0.99,0.992,0.881,0.928,1.017,0.938,0.842,0.947,1.091,1.067,1.163,1.081,0.974,0.948,0.974,1.09,1.02,0.94,0.819,0.947,0.888,0.988,0.962,1.097,1.053,1.018,0.903,1.015,1.015,0.988,0.953,0.813 +XM_373792,0.768,0.967,1.065,1.021,0.966,1.12,1.116,0.963,1.062,1.067,0.946,0.924,0.974,0.849,1.216,1.097,1.111,0.882,1.015,0.994,0.969,1.112,0.958,1.024,1.028,1.105,0.972,1.022,0.739,1.088,1.041,1.026,0.91,0.992,1.266,0.948,1.018,0.977,1.239,0.924,0.896,1.162,1.045,1.017,0.975,0.975,0.893,1.159,1.042,1.037,0.985,1.067,0.976,1.073 +XM_373796,0.753,1.434,0.702,1.344,0.901,2.253,1.519,0.847,0.971,0.685,2.375,0.827,0.794,0.812,1.017,1.657,0.804,1.423,0.801,1.482,0.819,0.797,2.332,0.876,0.983,0.853,0.809,0.812,1.489,2.155,0.785,0.73,0.759,2.109,0.901,1.984,1.574,0.877,1.857,0.687,0.848,1.6,1.32,1.392,0.819,2.314,0.879,0.96,1.786,0.733,2.001,1.218,0.683,0.706 +XM_373803,0.983,1.08,0.973,0.926,1.154,0.942,0.813,0.983,0.933,1.083,1.042,1.195,0.88,0.957,0.932,0.975,1.022,0.86,0.876,0.834,0.854,1.037,0.887,0.866,0.933,1.119,1.037,1.107,1.021,1.155,0.947,1.062,0.807,1.088,0.988,0.976,0.943,1.175,1.051,1.111,0.991,0.955,0.984,1.096,0.945,0.95,1.183,0.971,0.885,0.915,1.066,1.035,0.95,0.944 +XM_373811,1.167,0.937,0.999,0.989,1.021,0.955,0.987,0.908,0.846,1.047,0.927,0.707,1.097,1.057,1.065,0.919,1.042,1.161,0.909,1.061,0.95,0.965,1.176,1.13,1.188,0.936,0.926,1.064,0.656,1.034,0.926,0.748,1.136,1.047,1.205,1.071,1.045,1.038,0.941,0.843,1.106,0.938,0.994,1.043,1.054,1.18,1.085,1.045,1.087,1.024,1.03,0.915,1.067,1.296 +XM_373818,1.066,0.973,0.983,0.99,1.198,1.021,1.157,0.983,0.969,1.004,0.868,1.043,1.094,1.038,0.91,0.844,1.03,0.952,1.099,1.099,1.079,1.064,1.011,1.023,0.957,1.198,0.881,1.132,1.549,1.023,0.995,0.973,1.087,0.856,1.072,0.851,0.936,0.959,1.076,0.92,1.041,0.862,1.111,1.081,0.998,1.026,1.079,1.078,1.061,0.949,1.002,1.015,0.923,1.101 +XM_373821,0.866,1.087,0.924,0.961,1.103,1.052,0.94,0.914,1.006,1.005,1.045,0.915,0.911,1.069,0.994,1.017,0.953,1.027,1.087,0.948,0.976,0.963,0.929,0.946,0.961,0.971,1.099,1.094,0.899,1.142,0.978,1.107,1.021,0.982,0.994,0.873,0.977,0.971,0.933,1.246,1.129,1.08,0.957,1.076,0.851,0.892,0.955,1.018,0.864,1.029,1.024,0.903,1.182,1.025 +XM_373828,1.022,1.041,0.982,0.965,0.95,0.879,0.836,1.113,1.081,1.036,1.057,1.088,0.787,1.047,1.103,0.919,0.869,0.835,0.99,0.897,1.177,1.078,0.967,1.073,1.016,0.83,1.121,1.085,1.149,0.967,1.029,1.041,1.014,1.014,1.079,1.018,1.101,0.892,0.996,0.975,1.076,0.998,1.192,1.022,0.945,0.99,0.971,0.932,0.967,0.981,0.895,1.194,1.25,0.802 +XM_373831,1.088,0.954,1.065,1.019,1.009,1.005,0.879,0.934,0.904,1.019,1.046,0.949,0.984,0.865,1.117,1.109,1.145,1.033,1.142,0.882,0.987,0.999,0.972,1.081,0.994,0.977,0.886,0.953,0.925,0.933,0.962,0.956,1.132,0.964,0.884,1.015,0.899,0.948,1.13,0.892,0.998,0.823,1.412,0.981,1.063,0.863,0.966,0.992,0.993,1.137,0.852,0.924,1.054,1.093 +XM_373836,0.863,1.019,0.949,1.166,1.029,0.975,1.016,1.154,1.042,1.02,0.979,1.068,1.232,0.974,0.91,0.969,1.052,1.022,1.053,0.871,1.076,1.044,1.009,1.026,1.061,1.129,1.043,1.197,1.231,1.02,0.983,1.01,1.089,0.893,1.16,1.024,1.021,0.963,1.155,0.965,0.922,0.914,0.828,1.123,0.972,0.987,1.062,1.081,1.142,0.839,1.014,0.986,0.922,1.012 +XM_373850,1.056,0.928,0.986,0.883,0.959,0.961,0.839,0.849,1.004,1.019,1.108,0.988,1.108,0.939,0.952,1.162,1.01,0.924,0.913,0.938,1.019,1.027,1.079,1.046,1.057,1.0,1.096,0.914,1.043,0.964,0.953,1.067,1.094,0.967,0.904,1.055,0.991,1.053,1.08,1.083,1.082,0.958,0.919,1.191,1.108,1.038,0.987,1.067,1.059,0.937,0.979,1.098,1.002,0.967 +XM_373868,0.984,1.058,1.024,1.046,1.052,1.015,1.06,0.923,0.981,0.925,1.025,1.025,0.942,1.382,0.947,1.04,0.869,0.823,0.952,1.021,0.965,1.028,1.076,0.94,1.107,1.03,1.001,1.004,0.976,0.95,1.0,1.01,1.027,1.167,0.914,1.093,1.0,1.114,0.931,1.065,0.941,0.971,1.15,1.006,0.974,0.926,0.982,0.935,1.042,0.981,1.067,1.055,0.971,1.051 +XM_373877,1.096,1.115,1.188,1.202,0.94,1.088,1.208,1.048,1.028,0.945,0.968,1.012,0.915,1.054,0.799,0.935,1.019,1.051,1.103,1.123,0.865,0.898,0.993,1.03,1.146,0.993,0.998,0.868,1.003,1.007,0.925,1.023,1.017,0.831,1.188,1.076,0.998,1.079,1.09,0.902,0.913,0.974,0.938,1.068,0.864,1.005,0.971,1.028,0.836,0.926,0.953,1.037,0.953,1.046 +XM_373884,0.956,0.976,1.018,1.109,0.964,0.887,1.013,1.067,0.86,0.997,0.973,1.085,0.975,1.044,1.224,1.001,0.965,0.91,0.862,0.963,0.953,1.0,0.92,1.005,1.009,1.016,0.823,0.932,1.013,1.032,1.064,1.026,0.943,1.019,0.994,1.053,1.036,0.965,0.958,0.986,1.028,1.072,0.879,0.957,0.969,1.045,1.016,1.053,1.208,1.04,0.924,0.853,1.023,0.907 +XM_373893,0.951,1.083,1.147,0.971,1.149,1.069,1.008,1.176,0.949,0.959,0.911,0.872,1.015,1.006,1.193,0.981,0.952,1.051,0.932,0.969,0.905,0.973,1.096,0.999,1.083,0.867,0.919,0.982,1.427,0.94,0.936,1.052,1.169,1.099,0.973,1.04,1.062,1.003,1.061,1.01,0.979,0.935,1.002,0.936,1.021,0.993,1.032,1.093,0.909,1.097,0.973,0.975,0.854,1.069 +XM_373907,0.941,1.015,0.975,0.989,0.953,1.013,1.054,0.919,0.892,1.002,0.984,1.077,0.801,1.197,0.961,0.93,1.014,1.075,0.909,1.014,1.049,1.0,0.949,1.169,0.846,0.979,0.984,1.034,1.028,1.041,0.936,1.074,0.9,0.965,1.064,0.881,0.854,1.084,1.052,1.208,0.972,1.033,1.135,0.906,1.107,1.073,0.968,1.01,1.01,1.058,0.951,0.991,1.074,1.019 +XM_373909,1.0,0.849,0.997,0.957,0.942,0.943,0.997,0.979,1.042,0.954,1.047,1.075,0.988,1.034,0.974,0.962,1.085,1.079,0.812,1.019,1.03,0.917,0.894,1.009,1.059,1.134,1.057,1.166,0.868,0.976,0.979,1.129,0.936,0.984,0.996,0.865,1.078,1.086,1.046,1.144,1.056,1.019,0.962,0.967,1.11,0.995,1.019,1.113,1.016,0.939,0.995,0.851,0.925,0.978 +XM_373915,0.934,1.001,1.124,1.035,1.115,1.09,0.987,1.028,0.963,0.988,0.975,1.012,1.114,0.884,0.838,1.147,0.951,1.182,0.965,0.88,1.008,1.006,1.087,1.105,0.811,0.979,0.88,0.899,0.954,1.013,0.973,1.154,0.911,1.076,0.856,1.004,0.923,1.013,1.004,0.904,0.984,0.905,1.059,0.946,1.0,1.077,0.998,0.92,0.937,1.102,1.197,0.956,0.978,0.942 +XM_373917,1.056,1.015,1.072,1.097,0.987,1.025,0.981,0.942,1.0,0.964,1.097,0.99,1.065,1.277,1.112,1.015,0.912,1.219,0.92,1.077,0.945,1.078,1.149,1.102,0.983,1.098,0.916,1.035,0.842,1.006,1.022,0.961,1.332,0.92,1.114,0.917,1.002,0.981,1.096,0.956,0.944,0.985,1.071,1.091,1.021,1.058,0.966,1.052,0.979,0.928,1.078,0.974,0.883,0.896 +XM_373921,1.039,1.099,1.034,1.008,1.118,1.05,0.864,0.939,1.025,0.999,0.982,1.014,0.978,0.782,1.067,1.104,1.01,0.893,1.025,0.855,1.005,0.994,0.941,1.076,0.944,1.109,0.94,1.223,0.926,0.983,1.007,1.0,0.913,0.93,1.12,1.037,0.906,1.106,0.947,0.989,0.862,0.958,1.17,0.936,1.047,0.938,1.047,1.098,1.101,1.065,0.972,0.978,0.96,0.891 +XM_373924,0.868,0.924,1.075,1.044,1.031,1.059,0.974,0.908,1.027,1.05,1.013,1.005,0.99,1.063,0.873,0.958,0.975,1.04,1.118,0.9,0.911,0.944,1.089,1.043,1.022,1.042,0.98,0.884,0.764,1.044,0.944,1.133,1.024,0.996,1.071,0.997,0.978,1.318,1.028,1.076,0.98,1.014,1.234,1.009,0.93,0.943,1.029,0.828,1.045,0.941,1.035,0.925,1.036,1.081 +XM_373927,1.302,0.943,2.543,0.879,2.006,0.936,0.731,1.748,1.687,2.062,0.783,2.155,1.44,1.34,1.818,0.993,1.372,1.397,1.958,0.776,1.434,1.667,0.799,1.569,0.777,1.453,1.902,1.998,0.768,0.977,1.5,4.646,0.996,1.01,0.77,0.771,0.709,2.728,0.954,0.785,1.73,1.212,0.823,0.672,1.519,0.764,1.225,1.838,0.687,1.392,0.933,0.908,1.874,0.92 +XM_373939,1.073,1.049,1.027,0.958,1.062,1.04,0.947,0.955,0.926,0.958,0.986,0.981,1.067,0.762,0.985,0.98,1.043,0.897,1.095,0.901,0.897,0.991,1.13,1.019,1.126,0.946,1.169,0.967,1.361,0.987,1.156,1.035,1.063,0.931,0.987,0.991,0.881,1.023,1.038,0.925,1.05,0.991,1.257,1.046,0.944,0.973,0.97,1.052,1.057,0.98,0.94,0.982,1.056,1.058 +XM_373950,1.033,1.013,0.966,0.882,0.995,1.017,0.88,1.184,0.997,1.033,1.015,0.933,1.075,0.899,0.993,0.946,1.018,1.028,1.166,1.092,0.939,1.093,1.024,1.035,1.082,0.963,1.071,1.063,0.977,0.872,0.991,0.991,1.021,1.104,0.998,1.112,1.095,1.017,0.999,1.041,1.053,0.855,0.884,0.978,1.081,1.124,0.994,1.029,0.893,0.933,0.973,1.03,0.983,0.921 +XM_373957,1.064,1.069,1.145,1.086,1.036,1.07,0.957,1.153,1.039,1.033,1.207,0.981,0.987,1.355,1.012,1.099,0.978,0.967,0.862,1.17,0.945,1.03,0.928,0.959,1.086,1.039,0.963,0.879,0.889,0.988,1.011,0.935,0.978,0.972,1.068,1.061,1.054,1.055,0.943,1.017,1.015,1.086,1.269,0.925,1.026,1.001,0.844,0.97,1.063,1.038,0.997,0.964,0.987,1.05 +XM_373968,1.036,0.967,1.062,1.174,0.879,1.083,1.003,1.036,1.07,0.842,0.825,1.005,1.107,0.937,0.891,0.988,1.074,0.972,1.018,1.112,0.931,1.083,0.882,0.992,0.992,1.006,0.974,1.027,0.931,0.96,0.956,0.989,0.958,1.091,1.066,1.007,1.018,1.07,0.988,0.972,1.058,1.081,1.035,0.932,1.012,1.088,0.971,0.974,0.932,0.882,1.03,1.02,1.03,0.975 +XM_373971,0.965,0.881,1.106,1.059,1.101,1.002,0.816,0.875,1.12,0.896,1.338,0.95,1.062,0.914,1.012,0.972,0.963,0.978,0.919,1.057,1.136,1.1,0.991,0.987,0.944,0.943,1.112,0.864,0.579,1.296,1.102,1.106,0.917,1.253,0.952,0.959,1.138,0.97,1.013,1.516,0.998,0.976,0.927,1.461,1.102,0.916,0.962,1.085,1.063,0.884,0.899,0.927,1.176,0.976 +XM_373977,0.984,0.954,0.93,0.886,0.905,1.051,0.988,1.041,1.034,1.057,0.903,0.992,1.025,0.863,0.941,0.989,1.097,0.908,0.914,0.95,0.947,0.876,1.0,1.095,0.808,1.022,0.965,1.051,0.761,1.084,0.94,1.03,0.875,1.009,1.023,0.874,1.042,0.941,1.089,1.058,0.95,0.965,0.781,1.039,0.981,0.835,1.082,0.925,1.083,1.059,0.992,1.046,1.082,1.066 +XM_373980,0.992,0.894,0.94,1.09,0.806,0.994,1.079,1.046,0.817,0.94,0.84,1.033,1.081,1.027,0.947,0.979,1.03,1.02,1.002,0.925,1.092,1.018,0.904,1.057,1.017,0.898,1.149,0.876,1.297,1.016,0.815,0.789,0.95,1.095,1.097,0.989,0.968,0.973,1.1,1.096,1.067,1.051,0.926,0.942,1.028,0.851,1.01,0.907,0.981,1.001,0.951,0.878,1.078,0.869 +XM_373981,1.04,1.063,0.96,0.969,1.009,1.021,0.989,0.899,1.001,0.985,1.027,0.97,0.972,0.85,0.693,0.96,1.062,1.093,1.036,0.918,0.942,0.986,1.027,0.882,0.843,0.933,1.0,1.076,0.699,1.002,1.045,0.92,0.968,0.827,0.992,1.13,1.041,1.046,0.926,0.905,1.032,1.009,0.954,0.991,1.01,1.097,0.986,1.079,1.065,0.989,1.058,1.023,0.935,0.921 +XM_373998,0.947,1.001,0.988,0.976,0.98,0.939,0.884,0.984,0.913,0.899,0.873,1.035,1.065,1.006,1.091,0.946,1.041,0.922,1.107,1.155,1.109,0.991,0.92,0.919,0.908,0.95,1.031,0.921,0.841,0.977,1.074,1.022,1.085,1.064,1.132,1.144,0.951,0.96,1.074,1.213,1.142,0.947,0.875,0.995,0.859,1.032,1.003,0.962,1.009,1.052,0.99,1.003,1.034,1.024 +XM_374009,1.035,1.062,1.007,1.109,0.906,0.988,0.933,0.824,1.027,0.962,0.978,0.927,0.92,1.019,0.881,1.001,0.888,0.895,0.977,1.135,1.098,0.934,0.838,1.06,0.947,1.071,1.189,1.093,0.855,1.027,0.968,0.885,0.936,0.998,1.026,1.013,1.017,1.023,1.0,0.993,0.946,0.959,0.874,1.079,1.022,0.98,1.138,0.939,0.852,1.022,0.993,1.051,1.016,1.053 +XM_374012,0.949,0.961,0.986,0.776,0.854,0.971,1.097,0.976,1.092,1.062,0.98,0.938,0.96,0.859,1.163,1.033,1.005,0.98,1.008,1.059,1.098,0.963,0.939,1.0,0.989,1.16,0.978,1.037,1.089,0.95,1.034,0.958,1.054,0.905,1.099,1.012,0.973,1.02,1.021,0.986,1.078,1.012,0.931,1.013,1.047,1.024,0.943,0.914,0.973,1.101,0.919,1.018,0.938,1.15 +XM_374020,1.173,0.981,0.921,1.009,1.234,0.999,0.979,1.001,1.033,1.164,0.931,1.005,0.961,1.167,1.166,0.936,1.003,1.044,0.988,0.902,0.984,0.841,0.948,1.033,0.944,0.884,1.004,1.116,0.91,0.994,0.887,1.633,1.095,0.993,0.963,0.986,0.867,0.874,1.092,3.059,1.146,0.961,0.962,1.052,1.085,1.163,1.129,0.953,0.821,0.978,0.983,0.995,0.962,1.061 +XM_374021,1.066,1.06,1.037,0.974,0.999,1.008,0.913,0.948,1.016,1.039,0.943,0.901,0.943,0.989,0.96,0.917,1.034,0.964,1.055,0.962,0.838,0.866,0.904,0.905,1.033,1.047,1.048,1.03,1.062,0.955,0.962,0.922,0.94,0.909,1.044,0.901,0.945,1.101,1.022,1.042,0.923,0.961,0.832,1.097,1.078,1.017,0.944,1.123,1.015,0.989,0.983,1.033,0.897,1.065 +XM_374029,0.998,1.124,1.229,1.062,0.842,1.034,1.071,0.965,1.021,1.041,1.094,1.052,1.054,1.15,1.105,1.036,1.227,0.912,1.185,0.988,0.956,1.008,0.887,0.931,0.993,1.028,0.98,1.035,1.224,1.083,0.968,0.98,1.074,1.048,1.114,0.941,1.027,1.141,1.146,0.913,1.185,0.86,0.99,1.059,1.036,1.039,0.918,1.051,0.951,0.956,0.969,1.111,1.103,1.137 +XM_374036,1.038,0.926,1.08,1.038,0.957,0.956,1.088,1.043,0.988,0.969,1.0,0.997,0.941,0.849,0.995,0.964,0.988,0.916,0.848,1.008,1.135,1.03,1.096,0.967,1.101,1.009,0.996,0.987,1.168,0.968,0.987,0.989,0.959,1.054,0.969,1.102,0.96,0.999,1.04,0.951,1.017,0.976,1.115,0.967,0.851,0.924,0.973,0.935,1.055,1.01,1.091,0.95,0.985,1.284 +XM_374037,0.909,1.163,1.116,1.107,0.968,0.969,1.025,1.117,0.801,1.054,1.125,0.907,0.977,0.96,0.913,1.021,1.027,1.012,1.06,1.148,1.07,1.085,1.268,1.038,0.962,0.924,1.167,1.41,0.97,0.927,0.96,0.929,1.103,0.972,1.21,1.043,0.981,1.0,0.978,0.845,1.019,1.05,0.948,0.966,0.934,0.941,0.906,0.942,0.922,1.189,1.085,0.998,0.99,0.865 +XM_374057,1.015,0.952,1.028,1.011,0.896,0.977,0.849,1.042,1.042,1.096,1.051,1.13,0.945,1.016,1.043,1.097,1.07,1.058,0.932,1.074,1.014,0.968,1.026,0.996,1.02,0.948,0.891,0.967,0.885,0.931,0.941,1.128,0.895,1.046,0.989,1.059,0.95,1.119,0.803,1.007,1.047,1.034,1.177,1.046,0.988,0.926,1.088,0.844,0.934,1.045,0.966,0.838,0.985,1.064 +XM_374058,1.026,0.987,1.006,1.042,1.014,1.09,1.23,1.11,0.993,0.909,1.099,1.006,0.976,0.975,0.906,1.05,0.869,0.921,1.057,1.171,1.154,0.927,0.948,0.981,1.024,0.928,0.967,0.991,0.98,1.099,1.127,0.912,0.981,0.876,0.952,1.015,1.068,0.999,1.059,1.017,1.057,1.129,1.082,1.074,0.962,0.99,1.068,0.977,0.925,1.136,0.986,0.998,1.003,0.99 +XM_374062,1.061,0.937,1.031,1.023,0.957,1.0,0.943,1.088,0.984,1.091,0.964,1.012,1.007,0.989,0.979,1.072,1.079,0.964,0.979,1.107,0.933,0.981,1.07,1.006,1.035,1.093,1.002,1.03,0.941,1.011,1.091,0.878,0.904,1.009,1.144,0.996,0.942,1.032,0.875,0.934,1.026,0.888,0.882,0.952,0.978,1.0,1.128,1.057,0.955,0.945,0.884,1.056,1.138,0.94 +XM_374067,0.957,1.204,0.98,1.132,1.002,0.926,1.152,1.05,1.054,0.97,1.068,1.015,1.092,1.168,0.842,0.957,1.147,1.009,0.904,0.952,1.072,1.056,1.03,1.033,0.929,0.91,0.969,1.198,0.805,0.925,1.061,0.941,0.984,1.015,0.96,1.079,1.09,0.897,0.872,1.037,0.868,1.165,1.136,0.908,0.975,1.007,1.077,1.095,1.053,0.936,0.881,1.057,1.097,1.09 +XM_374068,1.056,1.031,0.933,0.907,1.062,0.971,1.201,0.956,0.98,0.878,0.911,1.008,0.906,1.177,1.079,1.202,1.122,1.037,0.926,1.066,0.901,0.978,1.05,1.027,0.984,1.076,1.243,1.107,1.215,1.004,0.932,1.043,0.961,0.936,1.156,0.946,0.886,0.888,1.107,0.967,1.035,0.926,0.95,0.973,1.184,0.914,0.978,1.101,0.938,1.021,1.154,0.974,0.872,1.021 +XM_374070,1.019,1.028,0.921,1.11,1.008,0.941,1.031,1.195,1.072,1.084,0.987,0.827,0.998,0.962,0.985,1.211,1.028,1.007,1.001,1.038,1.144,0.929,1.054,1.026,0.973,0.956,1.056,0.847,1.427,0.982,0.935,0.859,1.062,1.023,1.091,0.906,0.933,1.061,1.202,0.957,0.936,0.885,1.205,1.087,1.196,0.969,1.029,0.981,1.181,1.216,1.115,0.881,0.919,0.808 +XM_374078,1.155,0.992,1.135,1.021,1.031,1.071,1.128,0.92,0.868,1.243,1.173,0.957,1.024,0.948,1.103,0.963,1.004,1.169,0.997,0.913,1.008,1.013,1.143,0.715,1.004,1.025,1.134,1.041,0.844,0.945,0.897,1.02,0.98,1.063,0.82,1.043,0.878,1.108,1.052,1.073,0.87,0.906,0.671,1.061,0.979,0.951,1.149,0.879,1.038,0.937,0.821,0.821,0.994,1.118 +XM_374082,0.969,1.012,0.943,1.17,0.908,1.021,1.058,0.983,0.987,0.977,1.025,0.93,0.993,1.046,0.993,0.968,1.107,0.974,1.021,1.094,1.066,0.77,0.959,0.976,1.008,1.037,0.944,1.074,0.902,1.049,0.93,1.05,1.032,1.048,1.036,0.963,1.0,1.007,0.948,0.932,0.869,0.934,0.945,0.961,0.893,0.893,1.103,0.852,0.865,1.049,0.909,1.047,1.006,1.033 +XM_374088,0.996,0.873,0.988,1.001,1.007,0.996,1.028,1.009,1.022,0.976,0.819,0.964,1.049,0.97,0.956,1.026,0.994,1.0,0.906,0.945,0.893,1.016,1.104,0.979,1.003,0.971,0.996,1.017,0.795,0.942,0.886,0.873,1.0,0.828,0.989,1.222,0.957,0.941,0.984,1.023,1.088,0.915,1.318,1.112,1.077,0.882,1.046,0.952,1.009,0.968,1.217,0.925,1.131,0.962 +XM_374090,1.036,0.974,0.991,0.998,1.096,0.978,0.762,1.044,0.839,1.189,1.02,0.989,0.932,0.945,1.006,0.899,1.048,0.895,0.851,1.027,0.911,0.954,0.851,0.946,1.008,0.962,1.051,1.096,0.905,0.987,0.865,0.994,0.958,0.838,1.083,0.936,0.969,1.051,1.102,1.057,1.029,0.887,1.008,0.937,1.095,0.938,1.0,1.09,1.021,0.985,0.93,0.99,1.012,0.902 +XM_374092,0.994,0.918,1.065,0.881,0.95,1.008,1.121,0.901,0.974,0.961,0.955,0.994,0.968,0.968,0.89,1.0,0.975,1.107,0.938,1.081,1.162,0.985,1.017,0.995,1.123,0.972,0.983,1.027,0.807,1.027,0.916,1.001,0.967,1.04,1.151,1.107,1.006,0.985,1.1,0.945,1.06,1.026,0.965,1.038,0.99,1.058,0.95,0.977,0.962,0.997,0.995,0.921,1.128,1.098 +XM_374094,0.991,0.881,1.127,1.121,0.981,1.0,1.009,0.96,0.997,1.03,1.151,0.988,1.087,1.052,0.879,0.892,0.94,1.014,1.094,0.959,1.08,0.944,1.105,1.035,1.028,0.887,1.088,0.874,0.749,1.089,1.095,1.113,0.878,1.162,0.996,1.059,1.062,1.096,0.902,0.954,1.024,0.887,1.088,0.935,1.058,1.263,1.163,0.949,1.002,1.031,0.989,1.022,1.002,1.015 +XM_374101,0.885,0.983,0.931,0.885,1.148,1.135,0.977,0.991,0.804,0.964,1.259,1.159,1.09,0.85,0.858,1.022,0.956,0.994,0.958,0.956,1.214,0.964,1.266,0.894,0.96,1.082,1.176,0.993,0.998,1.122,1.039,0.942,1.061,1.003,1.024,1.09,1.102,1.008,0.98,0.995,1.085,1.06,1.003,0.897,1.114,1.144,1.092,1.118,0.93,0.98,1.019,0.994,1.286,0.893 +XM_374106,1.036,1.026,1.079,0.96,0.883,1.11,0.934,0.941,0.912,1.019,0.919,1.049,1.077,0.953,0.831,1.061,0.906,1.103,0.945,0.893,0.943,0.988,1.148,1.119,1.05,1.017,0.965,0.99,0.839,1.04,1.057,1.012,0.999,1.095,1.045,0.982,1.063,1.086,1.031,1.06,1.088,0.998,1.049,0.959,1.069,1.146,1.132,0.864,1.016,1.013,1.043,0.931,1.138,0.991 +XM_374110,0.97,0.99,1.021,0.966,0.917,1.03,1.069,0.914,0.985,0.953,0.833,0.992,0.988,0.949,0.951,0.984,0.992,1.155,1.137,1.043,0.924,0.989,1.029,1.004,1.082,1.041,0.813,1.007,0.886,0.923,1.051,0.968,1.091,0.871,1.069,1.008,1.095,0.958,1.074,0.951,0.98,1.056,0.946,0.985,0.996,0.98,0.816,1.016,0.953,1.017,1.049,1.015,1.076,0.967 +XM_374124,1.005,1.003,0.968,1.002,1.022,0.969,0.88,0.934,1.048,1.0,1.061,1.059,0.935,0.958,1.003,1.122,0.963,1.014,0.982,1.017,1.143,0.931,0.869,1.0,1.117,0.961,0.973,0.994,0.877,0.949,1.021,0.96,1.089,0.923,1.075,1.072,1.1,0.824,0.943,0.921,0.984,0.924,1.119,0.941,1.026,0.946,1.049,0.966,1.084,1.058,1.084,0.961,0.936,1.001 +XM_374125,0.96,0.949,0.997,0.952,0.987,1.017,0.92,0.912,1.105,0.991,0.94,0.893,0.944,0.948,0.992,0.869,0.941,0.99,0.96,0.988,0.969,0.993,1.056,1.067,1.111,1.044,0.992,0.97,1.056,1.117,0.938,0.943,0.974,1.092,1.029,1.12,1.035,1.086,1.089,1.018,1.18,0.989,1.144,1.002,1.014,0.868,0.999,1.054,0.99,1.015,1.093,1.105,1.166,1.007 +XM_374127,0.992,1.083,1.023,1.044,0.913,0.763,0.837,1.052,0.979,1.028,0.973,0.961,0.992,0.951,1.467,1.002,1.009,1.159,1.055,0.974,1.011,1.042,1.094,1.124,0.943,1.058,0.833,1.191,1.109,0.959,1.029,0.814,0.948,0.83,0.942,0.962,1.023,1.118,1.041,1.04,0.972,1.166,0.853,1.046,0.851,0.962,1.163,1.045,1.091,1.084,1.11,0.983,1.027,1.031 +XM_374135,1.071,0.953,1.001,0.975,1.014,1.017,1.044,0.996,1.07,0.984,0.97,0.949,0.903,1.003,0.914,0.95,1.013,1.005,0.888,1.194,1.053,0.949,1.022,1.003,0.992,1.099,0.93,0.921,0.935,1.025,1.039,0.961,1.019,1.064,1.022,1.053,0.981,1.178,0.999,1.012,0.986,1.047,0.856,1.063,0.989,1.017,1.052,0.98,1.029,1.038,1.155,0.988,0.919,0.918 +XM_374141,0.955,1.023,1.124,1.205,0.996,1.049,1.045,0.939,0.972,1.053,1.029,1.154,1.014,0.976,0.821,1.012,0.987,1.035,0.881,0.913,1.036,1.047,1.297,0.996,0.999,0.792,1.007,1.079,0.875,1.041,0.979,0.911,1.078,0.947,1.025,1.014,1.142,0.918,0.934,1.099,0.984,1.058,0.882,1.063,0.897,1.028,1.081,0.986,1.003,0.966,0.993,0.922,0.944,0.952 +XM_374143,0.995,1.193,1.125,0.989,0.993,1.013,0.865,0.885,0.949,0.963,1.019,1.079,1.048,1.098,1.135,1.048,1.045,0.944,0.981,0.929,1.15,1.037,0.866,0.924,0.955,1.071,0.941,1.19,1.154,0.965,1.071,0.903,0.926,1.034,1.235,1.12,1.002,1.061,0.84,0.858,0.965,0.98,1.19,0.959,0.954,0.952,1.016,0.941,1.037,0.996,1.012,1.03,0.866,0.968 +XM_374148,0.953,1.026,1.102,0.991,1.027,0.985,0.837,1.075,1.001,0.929,0.926,1.097,1.002,0.803,0.914,0.971,1.01,0.959,1.028,0.947,1.022,0.862,1.122,0.995,0.902,0.983,0.967,1.037,1.15,1.022,1.004,0.986,1.015,1.1,0.945,1.047,1.002,1.131,1.017,1.031,1.177,1.057,0.96,0.946,0.972,0.786,1.098,1.089,1.039,0.863,0.966,1.013,1.013,1.02 +XM_374149,0.939,1.019,0.977,1.084,0.808,0.945,1.249,1.045,1.017,0.97,1.017,1.101,0.991,0.854,0.85,0.902,1.059,0.999,0.914,0.922,1.001,1.028,1.083,1.051,1.009,1.165,0.86,1.04,0.943,1.001,0.863,1.082,1.062,0.99,1.116,1.032,1.007,1.013,1.117,0.982,1.025,1.028,1.035,0.998,0.947,0.912,1.048,0.872,0.849,1.024,0.947,1.092,1.01,0.919 +XM_374151,0.999,1.038,0.964,1.111,0.991,0.986,1.158,0.846,1.054,1.065,1.105,1.158,1.101,1.151,0.806,0.973,1.035,1.006,1.024,1.095,1.063,1.037,1.141,0.884,1.148,1.09,0.879,1.001,1.014,0.908,1.093,0.942,1.048,0.97,1.117,0.944,0.976,1.111,1.084,0.98,1.031,0.858,1.136,0.987,1.146,0.933,0.984,1.072,0.95,1.099,0.929,0.947,1.027,1.01 +XM_374152,0.874,0.993,0.961,0.993,1.036,1.066,1.017,1.067,0.902,0.995,0.965,1.066,1.021,1.067,0.911,1.012,0.957,1.01,1.005,0.918,1.126,0.897,1.055,0.963,0.874,1.007,0.937,1.127,0.775,1.037,1.0,0.984,0.909,1.015,0.981,1.037,1.036,0.924,1.114,0.961,1.012,0.889,1.145,1.093,0.886,0.904,0.919,1.034,1.053,0.798,0.962,0.9,0.918,1.044 +XM_374155,1.12,0.964,0.965,1.015,1.035,1.038,0.931,1.015,0.836,1.073,0.883,1.087,0.967,0.863,1.262,0.794,1.074,1.051,0.85,1.009,0.982,0.905,1.038,0.978,1.004,1.016,1.245,0.927,0.906,0.956,1.048,1.105,1.072,1.001,1.048,0.945,1.021,1.043,1.065,1.124,0.973,0.931,1.034,0.999,1.125,0.928,0.99,0.958,1.162,1.107,0.999,1.102,0.962,0.948 +XM_374158,1.074,0.952,1.03,0.857,0.901,0.994,1.022,1.049,0.977,0.846,0.847,0.985,0.994,0.836,0.849,1.144,1.071,0.876,1.013,0.976,0.981,0.955,1.035,0.966,1.049,0.928,1.03,1.05,0.733,1.056,1.197,1.183,1.251,0.907,0.965,1.06,1.039,1.216,1.075,1.002,0.992,1.015,0.996,0.908,1.022,1.03,1.012,0.961,1.123,0.88,1.032,1.109,0.764,1.103 +XM_374159,0.801,1.052,1.078,0.778,0.931,1.16,1.024,0.795,0.955,0.928,1.061,0.953,0.867,0.797,0.989,1.462,0.863,1.03,0.839,1.005,0.83,0.979,1.107,0.892,0.851,0.809,0.986,0.977,0.951,1.162,0.908,1.183,1.82,1.067,0.739,0.968,1.042,0.917,1.08,0.831,0.913,1.137,0.757,1.042,0.874,1.082,0.911,0.89,1.369,0.93,1.189,1.019,0.981,1.359 +XM_374161,0.994,1.003,1.02,0.943,1.03,0.948,1.044,1.005,1.046,1.031,1.007,1.067,0.997,1.155,1.02,0.985,1.046,0.986,1.104,0.966,0.986,1.107,0.856,0.966,0.876,0.999,0.912,0.892,0.72,0.916,1.07,0.93,1.123,0.916,1.42,0.918,0.882,0.997,1.082,0.924,1.049,1.044,0.891,0.969,1.105,0.93,0.983,1.09,1.143,1.068,0.933,1.017,0.942,1.077 +XM_374167,1.121,1.013,1.137,0.981,1.089,0.957,0.842,1.032,1.125,1.131,1.01,0.99,0.977,1.185,0.972,0.865,1.18,0.938,1.083,0.842,0.879,1.013,1.016,1.028,1.099,1.074,1.068,1.022,0.862,0.983,1.019,1.019,0.941,0.896,1.115,0.938,0.92,1.088,0.985,1.034,1.119,1.009,0.948,0.979,1.075,0.964,1.09,0.94,1.007,1.069,0.971,1.002,0.97,0.951 +XM_374169,0.914,1.03,0.935,1.043,1.132,1.132,1.019,0.899,0.926,0.881,0.941,0.965,1.035,0.955,0.94,1.012,1.016,0.964,0.901,0.919,1.057,1.059,1.095,0.944,1.2,0.943,0.944,0.937,1.182,1.315,1.076,0.793,0.952,1.255,0.99,0.999,0.989,1.051,0.857,1.112,0.964,0.926,0.987,1.07,0.903,0.831,0.948,1.008,0.892,1.098,1.089,1.091,0.999,1.106 +XM_374171,0.968,1.083,1.007,0.971,0.953,0.932,0.862,0.845,0.928,1.085,1.022,0.906,0.876,1.06,0.917,0.891,1.004,0.964,1.071,0.855,1.094,1.077,1.202,1.02,1.068,1.157,0.959,1.003,1.049,1.044,0.887,1.197,0.869,1.141,0.837,0.901,1.033,1.002,0.849,1.015,0.903,1.071,0.803,0.849,1.037,0.929,0.973,0.943,0.877,1.03,0.892,1.133,0.957,0.934 +XM_374172,1.03,0.968,0.997,1.067,1.012,0.959,0.93,1.15,1.03,0.984,0.909,0.831,1.116,0.959,1.153,1.034,0.997,1.13,0.976,1.052,0.99,0.976,0.966,1.047,1.184,1.005,0.945,0.99,1.042,0.93,0.968,1.012,0.972,0.9,1.03,1.051,1.03,1.011,1.088,1.008,0.955,1.068,1.05,0.94,1.041,1.102,0.961,1.065,1.038,0.938,0.951,0.876,1.043,0.992 +XM_374173,1.017,1.048,1.05,1.002,0.96,0.993,1.067,1.013,1.017,1.053,1.104,1.04,0.886,1.028,1.0,0.938,1.04,0.958,0.924,1.086,0.922,1.017,1.068,0.952,0.942,1.026,0.999,1.038,0.886,0.989,0.876,0.98,1.062,0.925,1.055,0.979,1.033,1.086,0.967,1.053,1.102,0.999,1.082,0.915,0.968,0.962,0.924,1.045,1.054,0.968,0.912,0.958,0.971,0.943 +XM_374174,1.01,1.124,0.826,1.011,0.943,1.046,0.929,1.046,0.86,1.057,0.946,0.891,1.028,1.057,1.092,1.063,1.116,1.013,1.109,0.957,1.121,0.904,0.972,0.96,0.977,0.991,0.888,0.89,1.001,1.056,1.095,1.029,1.01,0.978,0.898,0.968,0.878,0.934,1.112,0.965,0.901,0.895,1.148,0.852,0.966,1.06,0.966,1.013,1.012,0.983,0.97,1.015,1.161,0.92 +XM_374181,0.915,1.012,1.046,1.125,0.859,0.991,0.96,0.964,1.042,0.934,1.007,1.205,0.847,0.991,1.223,1.051,1.028,1.056,1.067,0.975,0.995,0.798,0.988,0.958,1.063,0.962,1.076,0.899,0.833,1.085,1.025,1.132,1.175,1.054,0.971,0.996,0.848,0.887,1.079,0.804,0.971,0.734,0.898,1.121,1.226,0.85,0.886,1.025,0.994,1.035,0.898,0.895,1.075,0.948 +XM_374200,1.009,1.245,0.948,0.938,0.955,1.078,1.259,1.208,0.913,0.993,1.116,0.93,0.957,1.102,1.149,0.992,0.949,1.061,1.013,1.109,0.996,0.824,0.979,0.949,0.944,0.875,0.817,1.101,1.26,1.142,1.163,1.064,1.004,1.103,1.071,1.223,1.045,0.876,0.953,1.096,1.041,0.876,1.047,0.943,1.005,0.981,1.01,0.894,1.009,1.056,0.988,0.981,1.021,1.106 +XM_374232,0.988,0.949,1.025,0.863,0.937,0.999,0.896,1.021,0.883,0.951,1.021,1.212,0.962,1.093,0.889,0.994,0.909,1.025,1.052,0.963,1.123,0.896,1.006,0.918,1.024,0.99,0.872,1.085,1.179,1.043,1.148,1.036,0.909,0.909,1.125,1.188,1.019,1.061,0.99,0.942,0.891,1.127,0.989,1.057,1.106,0.993,0.992,1.005,0.895,0.927,0.972,0.89,0.802,0.804 +XM_374244,1.048,0.987,1.063,1.065,0.989,0.968,0.914,0.978,0.885,0.879,1.044,0.995,0.929,0.983,1.051,0.994,1.122,1.018,1.12,1.053,0.988,1.04,0.937,0.991,0.881,1.046,0.931,0.956,1.235,1.04,0.95,1.004,0.967,1.028,1.186,0.936,1.048,0.987,1.018,1.129,1.027,1.007,1.012,1.073,0.987,1.104,1.019,0.966,0.966,1.024,1.054,1.012,1.159,0.939 +XM_374270,0.979,1.013,1.061,0.908,1.146,1.0,0.864,1.103,0.968,1.092,1.05,1.054,0.991,1.194,0.733,1.064,1.011,1.085,0.98,1.084,1.021,0.914,1.007,0.876,0.923,0.875,0.954,0.914,1.305,1.062,1.004,1.093,0.912,1.193,1.004,1.056,1.063,1.047,0.997,0.918,0.933,1.043,1.316,0.886,0.901,0.907,1.036,0.943,0.998,1.111,0.989,1.055,1.088,0.986 +XM_374272,0.958,0.917,1.027,0.912,1.057,1.07,0.812,0.953,1.201,0.893,0.988,1.02,0.979,1.08,0.808,0.971,1.157,0.974,1.12,0.895,1.136,1.049,0.996,0.991,0.958,1.039,0.872,0.916,0.998,0.909,0.989,1.056,1.04,0.964,1.015,1.051,1.04,0.988,1.119,1.119,1.028,0.92,0.991,1.056,0.987,0.926,0.983,1.134,0.91,0.993,1.07,0.89,0.831,0.951 +XM_374283,1.155,1.054,0.911,0.945,1.018,0.903,0.933,1.023,1.129,1.001,1.196,1.021,0.82,0.972,0.97,0.876,0.976,1.054,0.922,1.043,0.915,0.982,0.977,0.999,1.034,0.981,1.0,0.921,1.13,0.96,1.025,1.084,0.924,0.905,1.166,1.033,1.062,0.959,1.093,1.054,1.056,1.044,1.085,1.035,0.996,0.944,0.974,0.981,1.062,0.963,0.913,0.934,0.93,1.081 +XM_374292,0.993,1.04,0.873,0.982,1.089,1.021,1.173,1.033,1.024,1.137,1.023,1.058,1.021,1.064,0.935,1.016,1.01,0.929,0.851,1.107,1.036,0.98,0.977,1.08,1.126,0.934,0.932,0.997,1.254,1.057,0.961,0.955,1.065,0.893,1.068,0.94,1.003,1.069,1.169,1.065,1.032,0.938,1.212,0.911,0.976,0.874,0.957,1.018,1.028,1.021,0.999,0.977,0.991,1.009 +XM_374294,1.06,1.015,0.927,0.838,0.985,0.961,0.883,1.017,0.969,0.974,1.042,0.965,0.799,0.792,0.775,1.06,0.987,1.033,0.922,0.929,0.929,0.952,1.06,0.948,1.02,1.044,1.027,1.181,1.063,1.101,0.86,1.061,0.873,1.06,0.972,0.887,1.032,1.139,1.095,0.954,0.932,0.903,0.764,0.933,1.0,1.006,1.033,1.051,1.052,1.032,1.083,0.959,1.028,1.093 +XM_374296,1.104,0.911,0.924,1.002,1.067,0.982,1.027,1.091,0.926,1.087,0.938,0.97,0.898,1.003,0.994,0.923,1.053,0.936,1.186,0.978,1.029,1.032,1.076,0.935,1.069,1.021,0.947,1.053,0.988,0.938,0.908,0.937,1.102,0.837,1.092,1.001,1.007,0.942,0.923,1.003,1.003,1.153,0.904,1.09,1.076,1.075,1.015,0.999,0.902,1.062,1.024,0.894,0.907,1.006 +XM_374299,0.933,1.038,1.002,0.942,1.166,1.029,0.888,1.038,0.953,0.952,0.975,1.087,0.981,0.955,1.192,0.959,0.957,0.967,0.962,0.961,1.064,1.074,0.956,1.018,1.023,1.007,1.012,1.048,1.025,0.942,0.956,0.985,0.938,1.068,0.864,1.05,0.94,1.019,1.031,0.986,1.027,1.06,1.005,1.005,1.127,0.952,0.922,1.04,1.074,1.007,1.004,1.021,0.932,1.127 +XM_374301,1.139,1.161,0.985,1.012,0.934,1.029,1.02,1.11,1.258,0.92,0.872,1.273,1.072,1.189,1.133,0.948,0.851,0.937,1.073,1.079,1.045,0.967,0.669,0.93,1.057,0.916,1.048,1.008,1.047,1.033,0.796,1.054,1.057,0.94,0.97,0.891,0.923,0.934,1.107,0.962,0.955,1.148,0.862,0.832,1.105,0.956,1.207,1.033,0.926,1.035,1.011,1.413,1.118,0.961 +XM_374304,0.94,1.033,1.047,0.974,0.862,0.949,1.145,0.977,1.118,1.096,1.024,1.013,0.955,0.987,0.999,1.0,1.038,1.043,1.13,0.946,1.052,1.113,0.962,0.938,1.071,0.977,0.815,1.002,0.851,1.006,0.909,1.003,1.149,0.891,1.088,1.084,0.97,1.024,0.989,0.947,0.853,1.052,1.108,0.97,0.924,1.205,0.915,1.031,0.987,0.97,1.047,1.145,1.036,1.053 +XM_374308,0.89,1.084,0.994,1.019,1.015,0.851,0.845,1.052,1.037,1.046,0.96,1.154,0.995,1.269,0.961,1.249,0.981,1.079,0.957,1.104,0.96,1.04,0.977,1.016,0.886,1.013,1.049,1.249,1.112,0.944,0.868,1.194,1.057,0.917,1.004,1.002,1.058,0.893,0.902,1.136,1.069,1.037,0.772,1.008,0.942,0.965,1.041,0.97,0.809,1.098,0.971,1.075,0.884,1.219 +XM_374309,1.1,1.08,0.91,1.15,1.086,1.162,0.902,1.002,1.034,0.936,1.116,0.962,1.036,1.002,0.994,1.002,1.156,0.988,1.031,0.854,1.093,1.083,0.949,0.891,0.901,1.053,0.885,0.957,1.077,0.855,1.082,0.906,0.97,0.867,1.241,1.011,0.933,1.15,0.996,0.947,1.11,1.055,0.758,0.851,0.948,1.018,0.977,1.173,1.054,1.128,1.018,1.077,1.045,0.968 +XM_374318,1.079,0.976,0.972,0.831,0.991,0.999,0.975,0.936,1.045,1.031,0.88,1.091,0.964,1.128,0.918,0.924,0.955,1.028,0.828,0.981,0.982,1.052,0.865,0.88,1.041,1.118,1.032,0.945,1.175,0.961,1.026,1.021,0.94,1.097,1.071,1.018,1.018,0.852,0.941,0.978,1.011,1.103,1.019,1.016,1.058,0.902,0.892,0.824,0.988,1.023,1.068,1.046,0.959,1.033 +XM_374319,1.155,1.026,0.925,0.912,1.036,1.023,1.003,0.961,0.945,0.999,0.955,1.011,1.051,0.937,1.027,0.987,0.93,0.983,1.17,0.924,1.15,0.82,1.019,0.944,1.033,0.978,0.95,1.018,1.121,0.982,0.918,1.014,1.021,0.985,1.001,1.059,1.111,1.101,0.945,0.831,0.969,0.889,0.946,1.089,0.839,0.993,0.935,0.989,0.937,0.969,0.977,1.041,1.171,0.878 +XM_374326,1.023,1.023,1.057,1.118,1.005,0.965,1.029,1.143,0.964,1.012,0.985,0.985,0.924,1.097,1.05,0.941,1.029,0.869,0.985,1.024,0.979,1.04,0.942,1.071,1.006,1.037,1.004,1.024,1.161,1.027,1.002,0.913,0.991,0.926,0.946,0.932,0.984,0.99,0.957,1.007,1.045,0.934,1.165,1.052,0.919,1.01,1.065,1.05,1.003,1.006,0.962,1.117,1.027,0.954 +XM_374327,1.008,1.016,1.019,1.011,1.111,1.027,0.992,0.932,1.151,0.912,0.97,0.955,0.972,0.947,0.965,1.073,1.027,1.048,0.93,1.021,1.005,1.055,1.025,0.971,0.989,0.978,0.96,1.018,1.097,1.0,0.966,1.04,1.036,1.063,1.02,0.972,0.943,0.871,1.027,1.061,1.023,1.079,0.949,1.068,0.948,1.045,1.01,1.052,1.049,1.034,0.982,0.947,0.889,0.914 +XM_374328,0.679,1.064,0.854,0.755,0.846,1.303,1.003,0.556,0.861,0.889,1.238,0.661,0.69,0.679,1.123,1.22,0.789,0.987,0.908,1.348,0.662,0.802,1.615,0.776,0.836,0.809,1.028,0.839,0.67,1.309,0.824,1.744,1.269,1.342,0.594,1.051,1.086,0.814,1.431,0.99,0.853,1.097,0.731,1.676,0.853,1.377,1.166,0.749,1.23,0.761,1.075,1.003,0.907,1.261 +XM_374329,0.831,0.955,0.935,1.599,1.038,1.113,1.16,0.969,0.973,0.909,1.019,0.882,1.046,0.897,0.889,0.915,0.994,0.976,0.907,1.034,0.941,0.84,1.017,1.002,1.112,1.102,1.048,0.874,1.033,0.944,0.998,1.203,0.973,1.024,0.906,0.954,1.016,1.034,1.282,2.453,0.9,1.163,0.913,1.059,1.1,1.121,0.875,0.796,1.038,0.944,0.974,1.652,1.086,1.093 +XM_374336,1.059,1.017,0.989,1.152,1.028,1.01,1.112,0.953,0.992,0.997,1.018,1.002,1.108,1.045,0.987,1.094,1.03,1.014,1.055,0.926,1.147,0.948,1.046,0.972,0.923,0.863,1.046,0.908,0.75,0.962,1.057,1.005,0.965,0.988,1.063,0.98,0.978,1.091,0.963,1.041,1.127,1.087,0.88,1.034,0.95,1.009,0.965,0.994,0.958,1.211,1.031,0.915,1.019,1.013 +XM_374339,0.949,1.081,1.013,1.019,1.195,1.081,0.9,1.035,0.823,1.053,0.961,0.982,1.039,1.005,0.953,1.116,0.909,1.066,0.963,1.048,1.066,1.006,0.944,1.031,1.008,1.085,0.851,1.132,1.096,0.953,1.012,0.995,1.053,0.884,0.935,0.975,1.047,1.037,0.897,0.985,1.019,1.004,0.936,1.113,1.023,0.959,1.05,1.046,1.05,0.98,0.985,0.875,1.12,1.039 +XM_374340,1.124,0.996,1.062,1.042,1.06,1.022,0.878,0.914,0.987,0.931,1.044,1.066,0.983,1.135,1.091,0.93,0.993,0.937,1.024,1.082,1.159,0.973,1.012,1.039,1.005,0.935,0.976,1.057,1.049,0.959,1.102,0.942,1.055,1.217,0.897,0.972,0.98,0.987,1.063,1.049,0.989,0.926,1.135,1.058,1.026,1.02,0.981,1.04,1.07,1.087,1.056,1.019,0.903,0.994 +XM_374358,1.079,0.986,0.987,0.973,1.031,1.068,0.891,1.152,0.879,1.018,0.928,0.998,0.858,0.791,0.991,0.967,1.118,0.997,0.949,0.923,1.051,1.071,0.923,1.046,0.929,0.949,0.992,1.026,0.954,1.019,1.06,0.935,0.96,1.18,0.837,0.958,1.025,1.011,0.925,0.93,0.878,0.934,1.645,0.944,1.007,1.068,0.939,0.95,0.982,1.088,1.01,0.964,0.95,0.991 +XM_374386,1.023,1.08,0.953,1.13,1.062,0.987,1.057,1.005,0.979,1.075,0.99,0.942,1.111,1.168,1.315,1.09,0.954,1.01,0.804,1.135,1.135,1.048,0.864,0.991,0.975,1.15,0.951,1.019,0.716,1.086,0.999,0.874,0.931,0.857,1.039,1.06,1.161,0.823,0.96,1.025,0.915,0.944,0.877,1.063,1.01,0.882,1.163,0.819,1.05,1.048,1.024,1.001,0.881,0.917 +XM_374404,0.917,1.054,0.97,0.874,0.994,0.868,0.854,1.174,0.814,0.913,1.029,0.979,0.936,0.767,1.04,1.004,0.95,0.948,0.875,0.977,0.865,0.881,1.021,1.1,1.029,1.016,0.942,1.011,0.935,1.093,1.058,1.058,0.944,1.024,1.109,0.879,1.114,0.875,0.995,0.985,0.955,0.998,0.858,1.084,1.005,0.914,1.008,1.002,0.946,0.966,1.042,1.081,0.882,1.085 +XM_374405,0.988,0.907,0.998,0.955,1.034,1.06,1.004,0.957,1.095,0.923,1.044,0.985,1.022,0.944,0.985,1.014,0.915,0.951,1.216,1.053,0.928,0.909,0.979,0.862,1.041,1.046,0.956,1.002,1.282,1.034,1.119,0.921,1.072,1.015,0.971,0.896,1.119,0.972,0.959,1.092,0.935,1.158,0.877,1.237,0.959,0.924,0.979,1.019,1.035,1.137,1.069,0.977,1.023,0.907 +XM_374406,0.835,0.901,0.9,0.968,0.931,2.47,0.916,0.838,0.785,0.89,4.203,0.878,0.752,0.807,1.362,9.415,0.9,0.835,0.908,2.768,0.911,0.975,1.843,0.895,0.975,0.808,0.936,0.759,0.838,0.886,0.824,0.908,1.06,2.329,0.986,1.026,7.031,0.954,2.075,0.8,0.837,2.63,3.051,1.422,0.803,1.771,2.431,0.844,1.751,0.894,3.291,0.966,0.888,0.95 +XM_374428,1.065,1.051,0.967,0.929,0.974,1.104,0.977,0.999,1.105,1.08,0.968,0.983,1.114,1.11,0.99,1.03,1.063,0.957,1.162,0.909,1.063,0.95,0.962,0.942,1.035,0.97,1.17,1.124,0.966,0.871,0.983,1.019,0.881,0.94,0.835,0.999,1.017,0.981,0.785,1.012,0.966,1.02,0.964,1.042,1.106,1.011,0.939,0.88,0.906,1.047,0.939,0.964,0.958,1.059 +XM_374461,1.093,0.904,1.002,0.804,0.956,1.031,0.953,0.883,1.035,0.971,1.071,1.057,1.057,0.919,0.885,0.939,0.933,0.908,0.917,1.125,0.957,0.967,0.97,1.084,0.896,0.907,1.057,1.071,1.144,1.148,1.056,1.073,1.146,0.999,1.03,0.932,0.946,1.032,1.15,1.015,1.054,0.96,0.802,0.929,1.129,0.964,0.874,1.019,1.048,1.007,1.001,0.882,0.895,0.956 +XM_374484,0.974,1.044,1.177,0.908,0.932,0.988,0.92,0.934,1.134,0.956,1.284,0.931,0.962,1.063,1.28,0.963,0.942,0.933,1.112,1.212,1.047,0.986,1.567,0.998,1.116,0.924,1.063,1.018,0.857,0.903,0.972,1.022,0.946,1.05,1.004,0.94,0.977,1.093,0.928,0.939,1.027,0.934,0.891,1.011,1.028,1.051,1.003,1.009,0.964,0.988,0.926,0.977,0.957,0.881 +XM_374491,0.942,0.959,0.934,1.061,0.962,1.095,0.922,0.98,0.91,0.95,1.113,0.892,0.928,1.085,0.889,1.082,0.961,0.865,0.951,1.076,0.902,0.931,1.093,0.958,1.008,1.0,0.936,1.103,1.602,1.083,0.866,0.941,1.253,1.009,1.11,1.03,1.033,1.077,1.02,1.117,0.946,1.036,0.933,0.971,0.855,0.994,1.044,0.923,1.141,1.002,1.033,0.992,1.048,1.239 +XM_374498,0.522,1.111,0.944,0.826,0.705,1.653,0.763,0.579,0.592,0.724,1.41,0.967,0.83,0.45,1.005,2.583,0.56,1.03,0.952,1.296,0.525,0.765,1.629,0.905,0.898,0.961,0.728,0.684,0.75,1.635,0.717,1.711,1.298,2.064,0.275,0.926,1.209,0.772,2.181,1.485,0.651,1.648,0.756,1.854,0.721,0.966,0.853,0.971,0.995,0.568,1.083,1.357,0.952,0.902 +XM_374501,0.952,1.015,1.011,1.065,0.956,1.178,1.03,0.901,0.984,1.089,1.06,1.05,1.018,0.972,1.227,0.956,0.959,0.898,1.075,0.888,0.864,0.899,1.055,0.954,1.158,0.994,0.913,0.979,1.081,1.119,1.016,0.951,1.015,0.951,0.985,0.839,1.059,0.862,1.021,1.077,0.976,1.066,0.991,1.082,0.917,1.101,1.085,0.989,1.026,0.874,1.045,1.172,1.081,0.999 +XM_374502,0.116,1.884,0.128,0.679,0.133,3.606,0.505,0.118,0.129,0.111,4.92,0.141,0.127,0.14,3.496,5.541,0.135,0.876,0.117,5.164,0.118,0.126,10.04,0.125,0.239,0.134,0.131,0.126,0.137,3.007,0.115,0.901,4.585,1.645,0.192,1.859,3.822,0.124,4.694,5.492,0.12,3.71,0.118,3.519,0.405,5.683,2.702,0.137,4.094,0.124,5.91,6.814,0.148,4.848 +XM_374530,0.822,0.747,1.525,0.69,0.769,0.795,0.55,0.454,1.292,1.0,0.699,0.957,0.604,0.92,1.013,1.0,1.046,0.932,1.501,0.807,0.799,1.014,1.816,1.145,0.694,0.826,1.782,0.721,0.595,1.136,0.92,0.891,2.193,1.063,0.348,0.967,1.045,1.155,1.504,0.95,1.072,0.927,0.64,1.834,1.132,0.822,1.048,0.875,1.147,1.33,0.997,1.164,1.226,1.943 +XM_374585,0.974,1.22,0.939,1.146,0.995,0.94,1.052,0.994,1.043,0.932,1.056,1.009,0.967,0.96,0.885,0.99,1.057,1.076,0.986,0.946,0.942,1.035,1.279,1.008,0.897,0.917,0.94,0.979,1.009,0.892,1.049,1.097,1.144,1.123,1.11,0.971,0.981,1.081,1.0,1.009,1.078,1.038,0.816,1.022,0.959,0.857,0.996,1.081,1.068,1.116,0.968,1.082,1.09,1.057 +XM_374589,0.721,1.741,0.701,1.022,0.744,2.03,0.888,0.661,0.735,0.756,1.916,0.752,0.72,0.645,1.037,1.653,0.794,0.915,0.748,1.999,0.672,0.734,2.101,0.708,0.844,0.805,0.79,0.728,1.399,2.303,0.805,0.766,0.883,1.476,0.695,0.987,1.388,0.82,1.738,1.172,0.69,1.879,2.382,0.94,0.794,2.38,1.305,0.774,1.258,0.69,1.634,0.911,0.864,1.122 +XM_374590,0.94,0.886,1.045,0.868,0.935,0.849,0.793,0.779,1.003,1.14,0.89,0.961,0.859,1.088,0.745,0.969,1.058,1.022,1.002,0.769,0.95,0.859,1.235,1.09,0.913,1.07,1.093,0.888,0.509,1.039,0.953,1.085,0.992,1.064,0.736,1.088,0.881,0.893,1.077,1.677,0.917,1.136,0.936,1.223,1.179,0.919,1.198,0.935,1.013,0.979,0.922,1.007,0.888,1.026 +XM_374591,0.926,1.022,0.997,0.837,0.965,0.973,0.854,0.982,1.056,0.915,1.128,1.054,1.009,0.952,1.269,1.087,1.253,0.999,0.957,0.907,1.054,1.044,0.972,1.098,1.095,0.942,1.056,1.03,0.838,1.054,1.117,1.069,1.05,1.086,1.015,0.996,1.07,0.973,0.896,0.993,1.028,1.07,1.248,1.061,1.168,0.949,0.908,0.96,1.04,0.965,1.063,0.844,0.979,0.863 +XM_374600,0.877,1.093,1.075,1.076,1.088,0.986,0.968,0.956,1.168,1.053,1.061,1.092,0.969,0.989,0.948,1.148,0.939,1.068,1.013,0.966,1.03,0.969,0.976,1.104,0.866,1.009,0.954,1.011,0.892,0.999,1.101,1.066,1.001,0.987,1.079,0.895,0.889,1.068,1.036,0.917,1.077,0.982,0.799,1.06,1.023,1.006,0.923,1.12,1.125,1.027,0.961,0.89,1.08,0.985 +XM_374604,0.96,1.202,1.55,0.907,1.052,0.986,1.22,0.876,1.154,0.941,0.945,0.958,0.994,1.11,0.832,0.946,0.894,1.0,0.875,1.373,0.968,1.012,1.048,1.054,1.05,0.836,0.947,0.998,0.785,1.362,0.864,1.222,0.964,1.087,0.845,1.029,1.074,0.959,0.891,1.159,0.93,1.054,0.79,1.05,1.108,0.866,0.954,0.96,0.892,0.894,0.809,1.206,1.0,1.753 +XM_374608,0.887,1.038,0.995,1.034,0.819,1.118,1.129,0.921,0.821,0.846,1.132,0.961,1.09,0.866,0.931,1.089,0.989,1.017,1.047,1.129,0.941,0.974,1.027,1.091,1.079,0.998,0.999,1.035,1.009,1.096,1.072,1.021,1.128,1.052,0.917,1.001,1.06,1.076,0.899,0.952,1.068,1.038,1.218,0.979,0.974,1.052,0.908,0.99,0.979,1.034,0.998,0.977,1.027,0.962 +XM_374627,1.044,1.014,0.983,1.106,1.008,0.998,0.986,1.22,0.932,1.054,0.955,1.032,1.158,0.921,1.146,0.977,0.872,1.032,1.02,1.024,1.035,0.953,0.988,1.006,0.99,1.076,1.037,0.958,1.133,1.042,1.204,0.92,0.973,0.993,1.069,1.068,1.016,1.016,0.967,1.071,0.902,0.973,1.055,0.973,0.976,0.88,0.983,0.938,0.976,1.047,0.999,1.04,0.989,1.094 +XM_374646,1.045,0.956,0.989,1.07,1.023,1.03,1.019,1.09,0.903,1.12,1.077,0.988,1.007,0.972,0.887,1.072,1.018,1.11,0.972,0.993,0.968,1.0,1.088,0.997,1.046,1.006,0.981,1.001,0.905,1.13,1.033,0.885,1.067,1.0,1.011,1.099,0.927,0.918,1.055,1.01,1.077,0.902,1.033,0.971,0.889,0.911,1.026,1.103,1.02,1.144,1.021,0.988,1.066,1.037 +XM_374650,0.942,0.925,1.054,0.959,0.99,0.989,0.947,0.976,1.046,0.955,0.914,0.988,1.074,0.892,0.908,1.04,0.927,1.065,1.175,0.972,1.09,1.081,0.934,1.047,0.935,0.951,0.972,0.972,1.087,0.95,0.912,1.008,0.947,1.046,0.973,0.918,0.962,1.081,1.006,0.969,1.1,1.096,0.72,0.95,1.151,1.037,1.047,0.959,0.965,0.917,1.008,1.033,1.042,0.841 +XM_374682,0.939,0.905,0.911,0.962,0.996,1.15,1.074,0.802,1.265,0.902,1.223,0.893,0.922,1.167,0.973,1.058,0.898,0.906,1.09,1.151,0.866,1.178,1.003,0.948,1.003,1.098,1.174,0.938,1.302,1.029,1.025,1.126,0.862,0.868,1.02,1.217,1.049,1.19,1.254,0.968,1.11,1.17,1.353,0.975,1.046,1.062,0.979,0.904,1.016,0.918,0.93,1.017,1.099,0.953 +XM_374683,1.005,1.066,1.085,1.01,1.052,0.983,1.127,0.968,1.024,0.886,1.122,0.931,0.978,0.853,1.09,1.061,1.028,1.054,0.943,0.981,1.112,1.025,1.028,0.964,1.028,0.843,1.048,1.026,1.262,1.086,0.999,0.885,0.994,0.962,0.897,0.934,1.083,0.998,1.036,1.044,0.937,0.92,1.09,1.056,0.918,0.976,0.965,1.04,0.971,1.114,1.058,1.005,1.008,0.994 +XM_374687,1.039,1.094,0.987,0.884,1.027,1.071,1.323,1.263,1.111,0.918,1.035,0.951,1.067,1.095,1.389,0.995,1.083,0.972,0.972,0.971,0.913,0.941,1.086,0.983,1.055,0.968,0.9,0.986,1.21,1.08,1.12,1.04,0.953,0.998,1.153,0.917,1.082,0.97,0.979,1.053,1.073,0.81,1.091,0.955,1.099,1.268,0.978,0.952,0.964,0.988,0.988,0.984,1.094,0.934 +XM_374702,0.789,0.934,0.975,1.004,1.082,1.019,1.194,0.897,0.833,1.064,0.885,1.082,0.943,0.865,1.05,1.005,0.868,1.332,1.082,0.923,0.998,1.038,0.977,0.975,1.012,1.1,0.659,0.871,0.974,1.028,0.853,0.983,1.134,1.048,0.941,1.142,1.016,1.098,1.041,0.884,0.905,0.952,0.955,0.943,1.003,0.916,0.937,1.076,0.878,1.092,0.924,0.883,1.116,1.01 +XM_374713,0.987,0.978,1.058,1.166,1.038,1.127,1.128,1.28,0.926,0.885,0.979,0.898,0.795,0.868,1.23,1.11,1.064,0.991,0.937,1.104,0.941,1.01,1.145,0.948,0.982,1.053,1.007,1.041,0.8,1.153,0.933,0.989,0.973,0.838,0.999,0.983,1.027,1.004,0.951,1.054,0.967,1.04,0.846,0.859,1.007,1.057,0.991,1.094,0.91,1.001,0.98,1.117,1.133,0.802 +XM_374752,1.063,0.958,0.938,1.049,1.117,0.977,1.021,0.867,1.098,0.926,1.029,1.029,1.047,0.999,0.933,1.149,0.835,0.979,0.953,1.07,1.12,0.908,1.056,0.895,0.942,0.866,0.965,0.934,0.758,0.953,0.885,1.07,1.001,0.998,1.031,1.025,1.099,1.075,1.039,1.111,0.988,0.918,1.316,0.961,1.006,1.118,1.031,1.127,0.996,0.954,1.038,1.093,1.067,1.017 +XM_374768,1.577,0.7,1.54,0.892,2.449,0.962,0.641,1.352,3.099,1.852,0.711,1.202,1.706,1.351,1.296,1.128,1.437,1.23,2.473,0.757,0.971,1.562,0.751,1.59,0.497,1.806,1.753,2.092,0.512,0.822,2.553,1.005,2.056,0.918,2.62,0.539,0.811,1.647,0.89,0.538,1.925,0.822,1.018,1.056,2.056,0.76,1.144,1.968,0.774,2.055,0.726,0.756,1.791,1.387 +XM_374781,0.872,1.102,1.25,0.737,1.067,1.259,0.85,0.927,1.107,1.034,0.863,1.174,0.908,0.87,1.165,1.4,0.968,0.924,1.101,0.981,0.807,1.129,0.988,1.17,0.849,0.799,1.357,0.925,0.673,0.79,1.228,1.299,2.283,1.183,0.957,0.826,0.916,1.104,1.255,1.051,1.102,1.044,0.909,0.717,0.939,0.776,1.079,0.852,0.97,0.804,1.067,0.905,0.894,1.493 +XM_374787,1.107,0.981,0.958,0.986,1.084,0.903,1.192,0.86,1.004,1.037,1.159,1.071,1.01,1.017,0.883,0.941,1.031,0.985,0.917,1.0,0.9,1.022,0.957,1.073,1.119,1.057,1.028,1.125,0.774,1.09,1.314,0.978,0.878,0.845,0.928,1.153,1.05,1.162,1.042,1.064,1.128,1.093,0.885,0.972,1.062,1.004,0.87,0.842,1.198,0.915,0.967,0.926,1.032,0.853 +XM_374817,1.031,1.066,1.026,0.906,0.877,1.018,1.152,0.836,0.938,0.942,0.912,1.047,0.951,0.928,0.863,0.941,1.046,1.05,1.068,0.957,0.903,0.982,0.866,1.138,0.981,1.056,1.061,0.919,1.705,1.119,0.996,1.029,0.976,0.987,1.041,0.84,1.064,1.004,1.012,0.969,0.939,0.966,1.029,0.934,0.986,1.049,0.923,0.857,0.968,1.156,1.004,0.956,1.007,1.018 +XM_374829,0.943,0.913,1.207,0.597,0.832,0.811,0.828,0.665,1.305,1.261,0.883,0.991,0.821,0.792,1.003,0.899,1.166,0.842,1.38,0.784,0.946,1.048,1.327,1.119,0.711,1.05,1.283,0.79,0.596,0.776,1.197,1.204,2.133,0.858,0.485,1.221,0.919,1.13,1.539,1.112,0.935,0.994,1.296,1.769,1.171,0.928,0.89,0.949,0.971,0.955,1.046,0.972,0.932,1.617 +XM_374832,1.037,1.112,0.866,0.97,1.278,1.079,0.792,1.086,1.224,1.034,0.981,1.14,0.96,0.875,0.949,1.103,0.857,0.908,0.894,1.043,1.154,0.839,1.138,1.012,1.093,0.981,1.1,0.914,1.073,0.99,1.102,0.961,0.786,0.842,0.984,0.978,1.212,0.908,0.975,0.879,0.936,0.915,0.983,0.938,0.943,1.458,1.022,1.069,0.984,0.997,0.909,1.248,1.086,1.048 +XM_374836,1.09,0.934,0.974,1.16,0.99,1.112,0.983,0.91,1.037,0.889,0.947,0.995,1.067,0.93,0.91,0.946,1.026,0.968,1.072,0.996,1.036,0.955,1.064,1.025,0.883,0.942,0.904,0.904,0.896,1.041,0.929,0.997,1.215,1.104,0.996,1.087,1.061,1.023,1.065,1.044,0.847,0.924,0.892,1.195,0.98,0.927,0.997,1.061,1.0,1.02,1.075,1.003,1.105,1.191 +XM_374844,1.202,0.828,1.058,1.055,1.182,0.997,1.062,1.048,1.221,1.244,0.996,1.12,1.125,1.169,1.178,0.926,0.963,1.084,1.08,1.011,1.03,1.301,1.038,1.247,0.877,1.422,1.018,1.391,1.219,0.868,1.134,0.929,0.898,0.903,1.0,0.959,0.845,1.052,1.123,0.988,1.295,0.968,1.21,0.81,1.257,0.986,0.952,1.312,0.965,1.0,0.99,1.046,1.037,0.96 +XM_374873,0.819,1.178,0.857,1.288,0.785,1.728,1.377,0.85,0.909,0.858,1.887,0.829,0.873,0.907,1.265,1.2,0.869,1.024,0.931,1.086,0.77,0.789,1.191,0.935,0.983,0.734,0.842,0.82,0.717,2.172,0.898,0.947,1.024,2.379,0.964,0.867,1.145,0.799,1.804,0.831,0.945,1.358,0.964,1.044,0.862,1.11,0.88,0.934,1.623,0.862,1.423,1.086,0.899,0.887 +XM_374877,0.996,1.065,1.04,0.953,0.99,1.094,1.03,1.058,1.034,1.051,0.916,0.947,1.051,0.914,1.212,0.845,1.066,0.919,0.905,1.024,1.083,0.994,1.095,1.012,0.877,1.014,1.057,0.912,1.524,1.024,1.032,0.927,0.878,0.853,1.135,1.21,1.086,1.01,1.098,1.044,1.101,1.212,1.041,1.079,1.121,1.049,0.879,1.046,1.145,0.961,0.941,0.995,0.952,0.988 +XM_374879,0.676,1.205,1.204,0.836,0.768,1.232,0.791,0.547,1.146,0.954,0.924,0.752,0.702,0.539,0.845,1.347,0.797,0.985,1.123,1.191,0.685,0.694,1.463,0.925,0.837,0.872,1.312,0.797,0.482,1.347,0.996,1.396,1.75,1.324,0.325,1.966,0.968,0.907,1.366,0.896,0.967,0.837,0.588,1.351,1.052,0.895,0.978,0.669,1.024,0.844,1.027,1.003,1.108,2.209 +XM_374880,1.015,1.004,0.985,1.006,1.042,0.981,0.997,0.906,0.892,0.996,1.059,0.954,1.026,1.026,1.031,0.971,0.96,1.052,0.92,1.025,0.968,0.978,0.863,1.038,0.949,1.209,1.036,1.043,1.081,0.994,0.855,0.9,1.025,0.871,1.098,1.041,0.955,1.02,1.037,0.921,0.926,0.793,1.032,0.761,1.1,0.978,1.074,1.09,1.002,1.011,1.003,0.953,0.956,1.099 +XM_374885,0.991,0.991,0.948,0.943,0.872,1.115,0.975,1.079,0.938,1.029,0.958,0.95,1.018,1.048,0.995,0.862,0.97,0.948,0.983,0.988,1.147,0.941,0.945,1.167,1.067,0.951,1.105,0.938,0.935,0.865,1.072,1.037,1.055,0.955,0.993,0.945,1.004,0.901,1.002,1.283,0.749,1.037,1.018,0.896,1.079,1.018,1.0,0.995,1.002,0.949,1.005,1.041,1.148,0.982 +XM_374893,1.088,0.979,1.219,1.056,1.048,0.964,1.102,1.087,1.001,0.792,1.024,0.954,0.961,1.075,0.884,0.94,0.97,0.85,0.949,0.964,1.072,1.11,0.914,0.877,1.093,0.96,0.957,0.989,1.412,1.13,0.896,0.921,0.964,0.99,0.91,0.941,1.06,0.953,0.961,1.122,0.936,1.172,1.033,1.018,1.025,1.18,0.985,0.996,1.045,0.845,0.994,0.996,0.995,1.113 +XM_374898,0.932,0.968,0.827,1.175,0.857,1.115,0.645,0.737,0.839,0.789,0.985,0.85,0.806,0.723,0.73,1.33,0.853,0.968,1.172,0.845,1.03,1.296,0.855,0.912,1.097,1.077,0.901,0.673,1.174,1.047,0.669,1.308,1.684,1.182,0.725,1.077,0.939,1.026,2.125,1.124,0.902,0.901,0.742,1.982,0.941,0.82,0.912,1.124,0.914,1.184,0.877,0.727,0.966,1.093 +XM_374904,0.913,0.937,0.872,0.944,1.027,1.035,0.963,0.965,0.823,1.043,1.182,1.099,0.995,0.924,0.852,1.042,1.105,0.988,1.011,1.026,1.046,0.833,0.996,0.833,0.853,0.988,0.945,0.907,0.999,0.932,1.187,1.003,1.042,1.063,1.115,0.895,0.955,1.094,1.157,0.928,1.068,1.103,0.982,1.047,0.884,1.005,0.793,1.083,1.032,1.295,0.943,1.156,1.057,1.008 +XM_374905,1.072,1.014,1.084,0.833,1.109,1.006,0.891,1.076,0.991,1.019,1.044,0.913,0.997,0.963,1.011,1.095,1.005,1.105,1.076,1.08,1.097,1.037,1.023,0.999,0.922,0.971,0.979,1.024,0.944,1.108,0.94,1.026,1.068,1.027,0.929,0.999,1.006,1.153,0.995,1.156,0.828,1.091,0.988,1.137,0.954,0.942,1.086,1.034,1.007,1.013,1.021,0.972,1.168,1.121 +XM_374909,0.964,1.099,1.006,0.986,0.857,1.084,0.854,0.854,0.939,0.805,1.032,0.886,0.796,0.812,0.868,1.098,0.92,0.832,0.854,1.044,0.962,0.984,1.176,1.006,1.007,0.909,1.049,0.99,0.843,1.147,0.887,1.203,1.538,1.012,0.803,1.222,0.94,0.945,1.276,1.061,0.973,0.987,0.856,1.105,0.909,1.021,0.997,0.846,0.998,0.914,1.112,0.955,1.002,1.263 +XM_374912,0.936,1.001,0.862,1.007,0.98,1.372,1.061,0.71,0.891,0.956,1.019,0.963,0.903,1.001,0.938,1.014,0.859,0.971,0.953,1.261,0.765,0.961,1.131,0.933,0.814,0.864,1.001,0.868,0.98,1.157,0.999,1.033,1.439,1.106,0.943,0.912,1.021,0.809,1.179,1.101,0.808,1.02,1.145,1.105,1.028,1.115,0.915,0.82,0.933,0.93,1.076,0.975,0.893,1.015 +XM_374915,1.046,0.865,1.082,0.84,1.032,1.063,0.683,1.091,1.138,1.02,0.993,1.05,0.937,1.1,1.138,1.226,1.059,0.967,1.606,0.974,0.978,1.079,0.975,1.05,0.849,1.355,1.283,1.077,0.708,0.876,1.297,1.066,1.544,1.039,1.087,0.861,0.895,1.078,0.979,0.846,0.994,0.954,0.592,0.822,1.13,0.894,1.012,1.058,0.85,1.157,0.952,0.849,1.192,0.876 +XM_374927,0.991,1.047,0.889,0.998,0.81,1.131,0.837,0.975,1.118,0.835,1.069,0.964,0.862,1.004,1.12,1.004,1.002,0.977,0.929,1.093,0.866,0.943,1.059,1.026,0.981,1.027,0.914,0.906,0.988,1.162,0.892,1.073,1.255,1.023,0.92,0.989,0.956,0.883,1.054,0.998,1.037,1.104,1.322,0.988,0.92,0.883,0.961,0.956,1.009,0.816,1.102,1.112,1.019,0.965 +XM_374932,1.027,2.112,1.351,1.193,1.013,1.753,1.328,0.67,0.765,0.905,1.029,0.736,0.824,0.848,0.797,1.311,1.224,1.262,0.859,1.679,0.791,0.751,1.414,0.787,1.678,0.737,1.263,0.829,1.152,2.699,0.823,0.994,0.936,3.126,0.759,0.851,1.499,0.775,0.899,0.671,0.94,1.959,0.889,0.787,0.942,1.025,0.976,0.851,1.007,0.843,0.908,0.877,0.788,1.175 +XM_374933,1.062,0.982,0.874,1.029,0.943,1.025,0.979,1.039,1.011,1.046,1.137,0.992,0.982,1.021,0.971,0.95,0.975,0.93,0.872,1.001,0.953,0.959,1.129,0.891,1.111,1.126,0.988,1.026,1.209,1.053,1.028,1.051,0.981,0.957,1.03,0.951,1.079,0.947,1.004,1.048,1.022,0.91,1.099,0.999,0.912,0.956,1.043,0.961,1.016,0.945,0.982,0.975,1.023,0.991 +XM_374948,1.077,0.959,1.006,1.223,0.897,1.044,0.926,0.876,1.041,1.027,1.227,0.931,0.912,1.524,0.992,1.314,0.947,0.973,0.821,1.089,0.994,1.008,0.868,1.001,0.999,0.944,0.973,0.964,1.121,1.002,1.224,0.937,0.99,0.955,1.272,0.966,1.062,0.98,1.046,0.863,0.914,0.994,1.056,1.104,1.049,1.199,0.916,1.01,0.897,1.044,0.955,0.866,1.143,1.012 +XM_374949,0.504,1.053,1.129,0.685,0.964,1.179,0.826,0.366,1.069,0.963,0.998,0.412,0.549,0.557,0.98,1.359,0.917,0.977,0.776,1.631,0.508,0.614,1.741,0.999,0.657,0.62,0.952,0.803,0.523,1.175,1.074,1.802,1.864,1.564,0.343,1.051,1.0,0.741,1.18,0.987,0.941,1.632,0.665,0.676,1.186,1.178,0.758,0.524,1.05,0.702,0.794,0.762,0.901,1.788 +XM_374972,0.997,1.199,0.916,1.013,0.88,0.973,0.906,1.105,0.999,0.905,1.11,0.859,1.001,1.097,0.836,0.843,1.045,1.041,1.005,1.109,0.941,1.092,0.868,0.939,1.01,0.981,0.964,1.031,1.351,1.017,1.036,0.976,0.98,0.899,0.977,1.056,0.943,0.983,0.964,1.061,0.993,1.088,1.225,1.101,0.928,0.868,0.937,1.035,1.043,1.128,0.822,1.122,1.316,0.973 +XM_374985,0.977,0.94,1.141,1.005,0.927,1.045,1.048,0.87,1.001,0.93,1.044,1.029,0.984,1.103,0.952,0.902,1.037,0.932,1.026,0.996,1.042,1.057,1.063,1.047,1.138,0.884,0.988,0.956,0.919,0.91,0.983,1.088,0.96,1.03,0.986,0.9,0.96,1.127,1.022,0.975,0.937,1.022,0.918,1.037,1.025,0.907,0.955,0.912,1.058,0.925,1.014,1.029,0.906,1.047 +XM_374997,0.855,0.991,1.166,0.903,0.931,1.1,0.983,0.809,1.008,0.91,1.046,0.932,1.033,0.854,0.864,0.994,1.008,0.918,0.873,1.102,0.957,0.946,1.058,1.118,0.925,0.937,1.216,0.933,0.74,1.119,0.993,1.324,1.065,1.17,0.873,1.032,0.911,0.916,0.977,1.193,0.974,1.115,0.864,0.871,0.942,0.947,0.949,0.94,0.93,0.813,0.952,1.041,0.925,1.236 +XM_375000,1.011,1.011,0.882,1.211,1.041,0.954,0.97,1.146,1.055,1.026,0.891,1.001,1.152,0.93,1.494,0.981,0.998,1.101,1.102,0.999,1.13,1.028,0.993,1.066,1.061,1.125,0.842,0.984,1.078,1.071,0.985,1.053,0.869,1.02,1.056,1.206,0.999,1.126,0.917,0.903,0.993,1.002,1.022,0.903,1.09,0.996,0.932,1.038,1.041,1.079,1.02,0.931,1.022,0.881 +XM_375004,0.915,1.026,0.961,1.09,0.891,1.152,0.971,1.04,0.976,1.104,1.054,0.938,0.893,0.914,1.049,1.068,1.009,1.034,1.041,1.062,1.024,0.868,1.0,0.994,1.0,0.862,0.971,1.031,1.403,1.09,1.022,0.862,1.217,1.136,1.064,0.96,0.985,0.865,1.002,0.938,0.868,0.949,1.054,1.017,1.026,1.045,0.882,1.256,0.935,1.15,1.053,1.111,0.958,1.098 +XM_375005,1.077,1.035,0.962,1.178,1.034,1.013,0.979,1.051,0.978,0.858,1.105,1.089,0.946,0.914,0.852,1.135,0.911,0.955,1.215,1.125,1.293,0.987,0.975,0.972,1.036,0.944,0.898,0.972,0.851,1.011,1.046,0.842,1.032,0.939,0.949,1.19,1.138,1.0,1.0,0.934,0.957,0.954,0.957,1.112,0.985,0.936,1.118,0.937,0.992,1.001,1.019,1.058,1.058,0.939 +XM_375032,0.935,0.905,1.106,0.844,1.177,0.808,0.839,1.127,1.313,1.053,0.836,1.031,0.857,0.974,0.913,1.277,0.908,0.967,1.264,0.872,0.968,1.07,0.965,1.128,1.129,1.015,1.395,0.977,0.79,1.015,1.202,0.946,2.424,1.029,0.558,1.146,1.002,1.162,0.875,1.099,1.147,0.898,0.744,1.016,0.971,0.796,1.047,0.894,0.848,0.953,0.983,0.823,0.923,1.183 +XM_375033,1.004,1.009,1.014,1.081,1.178,1.032,0.752,1.017,1.221,1.038,1.073,1.069,0.9,1.002,1.01,1.092,1.0,1.101,0.948,0.99,0.888,1.056,1.128,1.004,0.927,1.015,1.068,1.117,0.872,1.0,0.931,1.036,1.059,0.963,0.946,0.995,1.003,0.863,1.039,1.02,0.97,0.995,1.65,0.925,1.044,0.969,0.983,0.992,1.069,1.037,1.078,0.967,1.095,0.931 +XM_375039,1.074,1.041,1.003,1.016,1.072,1.07,1.186,0.776,1.137,0.991,1.56,1.08,1.043,0.703,0.879,0.839,0.997,0.946,1.14,0.961,0.954,0.974,0.942,1.032,1.139,1.132,0.947,0.98,0.759,0.976,1.048,1.015,0.924,0.924,0.981,0.972,1.026,0.962,1.208,1.164,1.092,1.06,0.93,0.942,1.118,1.091,0.979,1.142,0.996,0.941,0.99,1.114,1.172,1.036 +XM_375041,0.984,1.031,0.987,0.961,0.968,1.024,1.065,1.02,1.107,0.94,1.01,1.067,1.022,1.049,0.895,0.887,1.004,0.962,1.032,0.841,1.038,0.914,1.045,0.967,0.879,1.125,0.955,0.987,1.085,0.992,0.961,0.884,0.951,1.1,1.046,0.973,1.038,0.928,1.056,0.938,1.005,1.041,1.005,0.811,1.042,1.021,1.011,0.942,1.047,0.917,0.946,1.049,0.885,0.897 +XM_375042,0.942,0.955,1.162,1.025,0.932,0.946,1.023,0.967,0.961,0.987,0.971,1.012,1.06,0.995,0.85,0.952,0.949,1.109,1.036,1.002,0.985,0.952,0.863,0.909,1.15,0.99,0.942,1.12,1.045,0.937,0.971,1.03,1.081,0.944,1.072,0.971,1.06,0.914,0.969,0.934,1.083,1.046,0.844,1.108,1.124,1.045,1.045,1.002,0.964,0.949,0.978,1.055,1.153,1.168 +XM_375074,0.886,0.998,0.974,1.021,0.954,0.952,1.072,0.873,0.955,0.971,1.029,0.952,0.922,1.034,0.96,1.01,0.933,0.951,1.003,1.003,0.955,1.165,1.105,0.976,1.081,0.95,1.075,0.921,1.004,1.18,0.913,1.081,1.058,0.818,0.949,1.022,0.947,1.031,0.952,0.904,1.09,0.968,1.218,1.121,1.079,0.87,1.063,0.942,1.016,1.024,0.983,1.036,1.02,0.994 +XM_375076,0.952,1.07,0.978,1.042,0.963,0.993,1.204,1.057,1.004,1.137,1.052,0.952,0.97,0.98,1.129,0.921,1.003,1.1,0.952,1.135,1.256,1.001,0.903,1.035,1.093,1.019,0.905,1.18,1.291,0.854,1.132,1.064,1.098,0.844,1.025,0.913,0.977,1.072,1.071,0.925,1.02,0.975,1.353,0.975,0.977,0.87,1.072,0.94,1.069,0.926,1.056,1.047,0.914,1.055 +XM_375080,0.747,1.207,1.159,0.709,0.922,1.118,0.789,0.795,1.07,0.835,1.111,0.832,0.804,0.937,1.095,1.019,1.003,0.831,1.124,1.113,0.828,0.668,1.099,1.017,0.827,0.906,1.14,1.02,0.527,1.286,0.941,1.241,1.056,1.175,0.866,0.98,0.932,1.037,0.998,0.666,0.961,1.209,0.827,1.053,0.843,1.233,1.056,0.732,0.988,0.998,0.959,0.841,0.925,1.34 +XM_375084,1.043,0.92,0.914,1.027,0.95,1.0,1.046,1.363,0.887,0.954,1.036,1.193,0.974,1.027,1.072,0.832,1.074,0.875,0.939,1.072,0.951,1.071,1.051,1.019,1.032,0.998,0.982,0.896,1.079,1.031,0.935,1.102,1.018,0.972,0.897,1.081,1.082,1.008,1.011,0.962,0.941,0.804,1.168,0.891,0.987,1.02,0.974,0.968,0.993,0.984,1.059,1.09,0.984,0.874 +XM_375085,0.91,1.115,1.021,0.89,0.835,1.046,0.838,0.767,1.037,1.07,1.0,0.816,0.928,0.945,1.185,1.113,0.901,0.991,1.022,1.014,0.872,0.986,1.272,0.882,1.018,1.008,0.842,0.98,1.182,1.08,0.919,1.107,1.157,0.932,0.888,0.946,0.937,1.003,1.026,1.056,0.99,1.039,1.039,1.084,0.99,0.917,0.927,0.898,1.049,0.894,1.022,0.941,0.866,1.04 +XM_375086,0.928,1.019,0.999,1.001,0.92,1.192,1.198,1.325,0.778,1.192,0.846,1.023,1.105,1.044,1.298,0.733,1.19,0.984,0.848,1.028,1.158,0.893,0.782,0.922,0.928,0.984,0.889,1.025,1.229,0.941,0.994,1.136,0.898,1.096,0.982,0.876,0.997,1.177,1.299,0.715,0.916,1.131,1.202,0.844,0.947,1.041,1.127,1.02,1.08,0.942,0.941,0.978,0.797,1.035 +XM_375087,0.87,1.211,0.829,1.022,0.96,1.548,1.267,0.904,0.888,0.834,1.468,0.855,0.772,0.998,1.175,1.939,0.926,1.151,0.921,1.347,0.76,0.821,1.478,0.842,1.037,0.846,0.988,0.904,0.968,1.372,0.896,0.853,1.095,1.43,0.987,0.9,1.282,0.912,1.308,0.927,0.816,1.255,1.072,0.839,0.87,1.227,0.905,0.838,1.483,1.05,1.437,0.726,0.732,1.178 +XM_375088,0.806,1.042,0.965,0.934,0.986,0.961,1.008,0.918,1.029,1.096,0.927,1.046,0.975,0.832,0.853,1.064,1.096,0.981,0.925,1.09,0.982,0.852,0.924,0.952,0.964,1.046,1.058,1.028,0.88,1.128,0.878,1.069,0.854,0.929,1.181,0.886,0.944,1.097,1.034,1.127,0.911,0.982,0.942,1.001,1.013,1.057,1.055,1.093,1.031,0.962,1.006,0.889,1.06,1.058 +XM_375090,1.021,1.03,1.049,0.79,0.901,0.87,1.107,0.907,1.081,0.97,0.944,0.988,1.067,0.91,1.474,0.785,0.996,0.923,0.884,0.877,0.857,0.97,1.014,1.0,1.113,1.007,0.886,0.931,1.114,1.088,1.0,0.911,1.191,0.81,1.082,1.013,1.017,1.003,1.035,1.177,1.087,1.049,1.648,0.954,1.055,0.924,1.073,1.195,0.924,0.911,0.968,0.845,0.994,0.908 +XM_375108,0.957,1.141,0.868,0.841,0.929,1.369,1.005,0.937,0.967,1.003,1.375,1.03,0.972,1.02,0.932,0.984,1.081,1.162,0.953,1.073,1.088,1.118,0.977,0.888,0.95,1.114,0.86,0.94,1.584,0.866,0.855,0.944,0.997,1.34,1.064,0.874,1.039,1.04,1.105,1.016,1.127,1.179,1.227,0.937,0.911,1.19,0.945,1.118,1.093,0.85,1.04,1.188,1.236,0.876 +XM_375187,0.905,1.015,0.931,1.087,0.956,0.974,1.023,1.028,1.152,0.971,0.95,1.0,1.06,1.177,1.168,0.905,0.992,1.063,1.087,1.113,1.05,1.119,0.909,1.173,0.954,1.093,0.883,1.043,0.915,1.032,0.963,0.911,1.162,1.227,1.055,1.002,0.999,0.928,1.049,0.975,1.132,0.923,1.0,0.962,0.955,1.049,1.023,1.005,1.026,0.948,0.982,1.116,1.064,0.996 +XM_375190,0.952,1.114,0.945,1.028,1.017,0.986,1.018,0.84,1.056,1.028,0.997,1.017,0.947,1.046,0.774,0.925,1.152,0.988,1.036,1.012,1.008,0.867,1.063,0.972,0.826,1.149,1.294,1.163,0.907,0.927,1.261,0.996,1.091,1.074,0.98,1.058,0.997,1.039,1.032,1.04,0.976,1.014,1.036,0.931,1.078,1.045,0.969,0.992,0.976,1.309,0.994,0.968,1.055,1.034 +XM_375210,0.882,1.124,0.939,1.0,0.947,0.945,0.834,0.963,1.044,1.057,1.05,0.983,0.855,0.951,0.877,0.984,0.993,0.986,0.992,0.96,0.975,0.98,1.059,0.881,0.984,1.041,1.102,1.028,0.884,1.03,1.047,1.122,0.721,1.082,1.047,0.943,1.052,0.948,1.158,1.045,0.98,0.927,0.949,0.987,0.944,0.973,0.996,1.006,1.139,1.045,1.03,1.0,1.004,1.116 +XM_375260,0.832,1.303,0.495,1.061,0.747,2.306,1.086,0.906,1.355,0.489,1.392,0.528,0.843,0.644,0.996,1.237,0.346,1.666,0.787,1.853,0.474,0.949,1.712,0.541,1.46,1.109,0.304,0.754,1.594,2.397,0.681,1.428,0.653,3.829,2.048,1.109,1.409,0.684,1.758,0.825,0.664,2.174,0.913,0.954,0.596,1.004,0.491,0.801,0.683,0.635,1.559,0.382,0.336,0.828 +XM_375266,1.138,1.036,0.968,1.013,0.933,1.021,1.085,1.028,1.046,1.047,0.984,1.139,1.102,1.223,0.861,1.073,0.999,1.053,0.927,1.075,0.988,0.991,0.959,0.971,0.976,0.972,0.935,0.905,1.672,1.096,0.953,0.839,1.18,1.03,0.897,1.096,0.953,1.059,0.95,0.972,0.904,1.062,0.995,0.947,0.973,1.021,0.9,1.08,1.057,1.101,1.148,1.108,1.032,0.885 +XM_375269,1.04,0.991,0.941,0.973,1.17,1.057,1.285,1.101,0.924,1.041,1.023,1.062,0.938,0.9,0.838,1.0,0.925,0.965,0.989,1.032,0.933,0.949,1.123,1.013,1.079,1.052,0.949,0.971,1.016,1.124,1.063,0.902,0.929,1.053,0.998,1.114,0.975,1.087,0.949,1.027,1.01,1.111,1.015,1.092,0.974,0.937,0.913,0.919,0.99,0.986,1.074,1.009,0.908,1.015 +XM_375298,0.98,1.026,0.98,1.177,1.084,1.1,0.93,0.948,0.996,1.016,1.115,1.044,0.963,0.979,1.266,1.022,1.116,0.979,0.91,1.059,1.029,1.079,0.887,1.039,0.978,1.146,1.006,1.179,0.82,0.99,0.955,0.851,0.987,1.038,1.181,0.976,1.033,1.077,0.925,1.188,1.237,1.05,1.032,1.058,0.958,0.961,0.969,0.956,0.928,1.061,0.876,0.992,0.945,0.887 +XM_375302,0.914,0.855,1.014,1.007,1.018,0.995,0.882,1.099,1.09,1.053,1.016,1.1,0.878,1.08,1.043,0.983,0.872,1.102,0.984,1.026,1.114,0.974,0.945,1.053,0.985,1.027,0.984,1.028,0.73,0.98,0.966,0.96,0.908,0.867,1.057,1.042,1.025,0.999,0.958,0.976,0.92,1.094,1.064,1.1,0.954,1.114,0.971,0.922,0.95,0.982,0.932,0.981,1.058,1.014 +XM_375307,0.97,1.016,0.974,0.978,1.078,0.969,0.928,0.898,0.914,1.043,1.241,1.009,1.016,1.129,1.117,0.995,0.927,1.044,0.925,1.141,1.095,0.914,0.985,0.971,1.083,1.005,0.976,1.075,1.4,0.973,1.125,1.005,0.906,1.081,0.92,1.016,1.035,1.094,1.02,1.023,1.05,0.947,1.016,1.054,0.992,1.123,0.979,0.972,0.947,1.026,1.015,1.038,0.946,1.044 +XM_375349,0.897,1.138,0.905,0.956,0.944,1.011,1.068,1.013,1.054,1.166,0.925,1.084,1.102,0.972,0.933,0.897,1.102,1.071,1.196,0.917,1.1,0.999,0.844,1.102,0.994,1.149,1.177,0.972,0.893,1.001,1.009,0.954,0.769,1.044,1.124,0.985,1.092,0.921,1.002,0.907,1.163,1.029,1.036,1.008,1.007,0.959,0.976,1.035,1.083,0.993,0.994,1.142,0.935,0.895 +XM_375353,1.039,0.875,0.832,1.015,0.849,0.996,1.007,0.902,1.291,0.883,0.999,0.903,0.991,0.929,1.097,1.047,1.058,1.004,0.96,1.037,1.158,0.924,1.018,0.987,1.017,0.938,0.892,1.12,1.095,0.975,1.028,0.967,1.06,0.978,1.054,0.934,0.996,0.926,1.003,0.985,1.05,0.942,0.911,1.019,1.172,0.949,1.0,0.966,0.997,1.101,0.926,1.309,1.065,1.116 +XM_375364,0.981,1.087,1.174,0.907,0.908,1.025,0.918,0.983,1.052,1.048,0.936,0.939,0.986,1.111,0.91,0.822,1.087,0.963,0.878,0.953,0.866,0.995,1.056,1.084,0.889,0.979,1.051,0.909,1.01,0.934,0.942,1.019,1.19,1.003,0.845,0.938,1.138,0.769,1.112,1.129,0.97,0.937,0.946,1.042,0.903,1.125,0.959,0.909,1.046,1.079,1.038,1.183,1.132,1.025 +XM_375373,0.998,1.134,0.91,0.922,1.052,0.923,0.824,1.012,1.125,1.022,1.002,0.974,1.15,0.922,0.978,0.999,0.893,1.104,1.188,0.991,1.06,1.084,0.986,1.246,0.978,0.984,1.191,0.956,0.687,1.006,1.046,1.54,1.078,1.05,1.114,0.939,0.974,1.268,0.878,1.028,1.059,1.041,1.0,0.744,1.175,1.178,0.955,1.114,1.025,1.051,0.946,1.015,1.056,0.9 +XM_375375,0.882,0.963,1.431,0.824,1.332,0.972,0.616,1.056,1.344,1.157,0.804,0.909,0.991,0.928,1.048,1.108,1.094,1.07,1.207,0.998,0.761,0.97,1.115,1.27,0.809,1.023,1.38,1.332,0.647,0.971,1.496,1.247,1.464,0.991,0.888,0.709,0.895,1.073,0.994,0.727,1.321,1.008,0.77,0.761,1.367,0.89,0.929,1.151,0.822,1.013,0.892,0.762,0.893,1.217 +XM_375379,1.096,1.104,1.009,0.858,0.966,0.945,1.0,1.147,0.912,0.978,1.105,1.057,1.023,0.878,0.913,0.998,1.045,0.977,0.937,1.008,0.879,0.969,0.917,0.914,1.004,0.975,0.998,1.074,0.865,1.178,1.059,0.852,0.821,1.027,1.126,1.011,0.969,0.934,0.953,0.939,0.986,1.03,1.316,1.095,0.968,0.897,1.059,0.958,0.838,1.003,1.112,1.052,1.012,1.053 +XM_375384,0.927,0.951,1.076,1.113,1.031,0.924,0.919,1.294,1.187,0.969,1.091,0.964,1.033,0.983,1.043,0.993,1.157,0.88,1.026,1.104,1.194,0.992,1.077,0.966,1.08,0.958,0.801,0.906,1.125,1.055,0.87,1.156,1.056,1.073,0.865,0.921,0.96,1.17,0.916,1.015,0.928,0.869,0.874,0.967,0.874,0.919,0.917,1.053,0.94,1.094,0.91,0.935,1.053,1.047 +XM_375386,1.048,0.978,0.957,0.935,0.932,1.125,1.029,0.996,0.829,1.121,1.106,0.997,0.944,1.008,0.91,0.999,1.04,0.96,0.985,0.999,1.096,1.037,1.152,0.933,1.072,0.803,0.903,0.998,0.924,0.889,1.052,0.975,0.958,0.983,1.004,1.025,0.921,0.881,1.046,1.112,0.932,1.004,0.908,1.038,1.036,1.138,1.007,0.927,1.062,1.041,1.023,1.001,0.989,0.851 +XM_375387,0.721,0.996,0.922,0.786,1.344,2.03,1.29,0.697,1.559,1.208,1.626,0.882,0.967,0.775,1.985,1.76,1.408,0.793,0.961,1.694,1.044,0.702,1.135,0.769,0.76,0.753,0.865,0.796,0.499,2.62,0.778,1.054,2.453,1.37,0.536,0.724,1.543,0.816,1.415,0.632,2.398,1.135,0.491,0.825,0.833,1.387,0.787,0.965,2.913,0.818,1.305,0.689,1.296,1.502 +XM_375392,0.916,0.89,1.041,0.814,0.987,1.18,0.904,0.985,0.912,1.015,1.035,1.094,0.904,0.727,0.94,1.655,1.151,0.88,1.064,1.06,0.927,0.972,0.96,1.109,0.911,0.958,1.024,1.116,0.763,1.167,1.09,1.207,1.137,1.265,0.834,0.901,0.841,1.051,1.035,0.878,1.077,1.042,0.699,0.928,1.057,0.943,0.914,0.984,0.965,1.065,0.968,0.876,1.119,0.95 +XM_375399,1.059,0.772,1.122,0.815,0.969,1.004,0.814,0.927,1.517,0.996,0.782,0.947,0.857,0.961,0.906,1.081,1.183,0.975,1.372,0.97,0.904,0.806,1.005,1.108,0.817,1.24,1.403,1.147,1.166,0.906,1.356,1.041,1.106,1.15,1.787,0.863,0.895,0.906,1.029,1.115,1.07,0.952,0.772,0.81,1.137,1.025,0.97,0.986,0.829,1.157,1.045,0.847,1.197,1.199 +XM_375404,0.957,0.857,0.951,1.031,0.937,1.139,0.859,0.923,1.023,0.912,1.033,0.939,0.986,1.034,0.924,0.914,1.103,1.061,1.093,1.002,1.0,0.978,0.973,0.916,0.976,0.985,0.945,1.213,1.084,1.005,1.038,0.979,0.816,1.028,1.0,0.948,1.073,0.994,1.015,0.92,1.004,1.012,0.955,1.044,0.995,0.86,1.049,1.027,1.008,0.889,1.116,1.115,1.206,0.934 +XM_375443,1.009,1.01,0.939,1.103,0.976,1.069,1.149,1.089,1.042,0.928,1.0,1.081,1.0,1.358,0.928,1.026,0.846,0.875,1.076,0.923,1.089,0.972,0.964,0.957,1.097,1.012,0.981,1.013,0.885,0.836,0.875,0.868,0.979,1.173,1.204,1.001,0.975,0.979,0.927,1.03,0.997,0.997,0.895,0.955,0.978,1.107,0.837,0.893,1.078,1.067,1.002,1.097,1.145,1.019 +XM_375453,1.042,1.008,1.002,1.183,1.074,0.879,0.889,1.019,1.146,1.067,0.937,0.967,1.035,0.811,1.484,1.004,0.917,0.992,0.9,1.078,1.042,0.939,1.005,1.071,1.034,0.913,0.954,0.86,1.218,1.012,1.003,1.076,0.916,1.028,1.028,0.963,1.023,1.06,1.039,1.031,0.943,1.203,0.98,0.91,0.998,1.029,0.944,0.976,0.871,0.925,1.032,0.985,1.246,1.018 +XM_375456,1.23,1.027,0.905,1.197,0.921,0.927,0.93,0.784,1.098,0.946,1.047,0.733,1.068,0.967,0.863,0.858,0.988,0.946,1.148,0.807,1.216,0.897,1.123,1.059,1.018,1.304,1.296,0.933,0.84,0.878,0.889,1.009,0.992,1.097,0.92,0.875,0.906,1.218,1.243,0.968,1.193,0.955,1.035,1.427,0.998,0.946,0.997,1.147,0.902,1.156,0.865,1.056,1.005,1.099 +XM_375469,1.06,1.049,1.036,0.911,0.95,0.907,0.924,0.944,0.996,0.904,0.906,0.981,1.022,1.033,0.852,1.018,1.125,1.089,1.098,0.916,1.028,1.258,1.094,0.932,1.131,1.243,0.967,0.945,0.835,0.962,1.066,1.043,1.034,1.013,1.096,0.929,1.086,1.053,0.889,1.019,1.057,0.991,0.896,1.003,1.148,1.051,0.821,1.19,0.959,0.973,0.916,1.025,1.059,1.003 +XM_375475,0.83,1.009,0.98,0.974,0.942,1.046,1.041,1.04,1.011,1.113,0.915,0.891,0.955,0.951,0.813,0.994,1.064,0.859,1.005,1.039,0.972,1.01,1.032,1.0,0.914,0.967,1.122,0.827,0.623,0.945,0.929,1.376,1.093,0.953,0.987,0.809,1.089,1.031,1.008,1.095,0.945,0.925,0.976,1.055,0.907,1.047,0.84,0.921,0.944,1.001,1.002,0.814,0.941,1.037 +XM_375478,3.961,0.196,5.998,0.74,6.048,0.135,0.209,5.635,2.773,0.818,0.138,10.09,5.534,0.727,0.824,0.684,6.419,1.541,7.49,0.807,4.364,0.857,0.18,1.54,0.111,0.471,12.94,2.059,0.286,0.165,1.866,0.449,5.401,0.147,1.552,0.43,0.151,3.484,0.44,0.152,14.72,0.201,0.248,0.172,7.697,0.118,5.692,1.147,0.971,5.112,0.94,2.979,7.804,3.093 +XM_375482,1.078,0.894,0.975,0.953,1.025,1.196,0.976,1.216,0.866,0.974,1.14,0.974,0.844,1.143,0.957,0.858,0.936,0.845,0.975,0.962,1.219,0.964,0.874,0.891,1.013,0.977,1.072,1.007,0.563,1.048,1.012,0.915,1.037,0.953,0.946,0.984,1.018,0.934,1.151,1.028,0.954,1.084,1.217,1.016,1.153,1.102,0.927,0.972,0.931,0.887,1.091,1.12,0.92,1.199 +XM_375485,0.762,1.071,1.123,0.824,0.828,1.039,0.884,0.676,0.911,0.753,0.919,0.744,0.714,0.777,0.934,1.069,0.827,0.992,0.919,1.062,0.719,0.835,1.277,0.873,0.937,0.894,1.202,0.702,0.617,1.03,0.853,1.476,1.232,1.105,0.737,0.845,1.083,0.918,1.576,1.177,0.875,1.112,0.599,1.469,0.923,0.937,0.84,0.791,0.913,0.866,1.005,0.98,0.91,1.426 +XM_375495,0.889,1.039,0.971,0.917,0.898,0.914,0.994,0.859,1.057,0.932,0.974,0.943,1.063,1.0,1.13,0.991,1.062,1.08,0.879,0.914,0.862,1.086,0.948,1.046,1.178,1.106,0.897,1.018,1.17,1.035,0.921,1.056,0.879,1.022,1.026,0.925,1.016,0.995,1.052,0.952,1.008,0.989,1.17,0.962,1.121,0.982,1.001,0.967,1.162,1.082,1.042,0.986,0.835,1.096 +XM_375496,1.099,0.989,1.124,0.947,0.978,1.134,0.919,0.889,0.918,0.93,0.971,0.96,1.091,1.085,1.15,1.069,1.07,1.197,0.837,0.873,0.944,1.041,1.02,0.894,1.028,0.931,1.01,0.854,0.851,0.893,0.958,0.987,0.9,0.858,1.17,1.023,1.043,1.28,1.062,1.06,1.025,0.966,0.885,0.98,1.186,1.008,0.981,0.855,1.069,1.001,1.076,0.965,1.066,0.916 +XM_375500,1.02,0.973,0.995,0.883,0.924,1.005,1.004,1.07,1.007,1.078,0.827,1.04,0.928,1.084,0.951,0.941,1.197,0.944,1.141,0.989,1.08,0.978,0.999,1.045,0.879,0.956,1.174,1.041,0.949,0.916,0.925,0.982,1.217,0.934,0.925,1.028,0.902,1.009,1.302,1.094,1.116,0.859,0.989,1.063,0.874,0.947,1.036,0.999,0.902,1.109,0.884,1.034,0.968,1.055 +XM_375502,1.067,1.0,0.944,0.865,0.929,0.993,0.844,0.959,1.02,0.971,0.985,1.091,0.985,0.907,1.08,0.938,1.13,0.927,0.962,0.993,0.876,1.054,0.898,1.073,0.894,1.012,1.0,1.053,0.638,1.15,0.905,1.028,0.877,1.031,1.031,1.012,1.117,1.0,1.231,1.133,1.014,0.911,0.912,0.993,0.952,0.902,1.196,0.943,1.139,1.033,0.972,0.959,0.967,0.929 +XM_375545,1.067,1.145,0.97,1.099,0.948,0.97,0.951,1.064,1.0,0.871,0.981,0.962,0.935,0.989,1.094,0.908,1.083,1.19,0.925,0.917,1.125,1.084,1.126,0.902,0.96,0.916,0.992,0.972,1.437,0.919,0.869,0.832,0.879,0.917,1.135,1.145,0.979,1.029,1.073,0.907,0.881,0.967,1.064,0.951,1.161,1.136,1.106,0.873,1.057,1.131,1.115,1.005,1.067,1.028 +XM_375552,1.133,0.953,0.807,1.005,1.024,1.069,1.206,1.067,0.999,0.977,1.143,0.964,0.923,0.868,0.957,0.882,1.151,0.943,1.03,1.109,1.032,0.984,0.93,1.031,0.958,1.055,0.991,1.151,1.127,0.864,1.024,1.13,0.992,1.034,0.951,1.033,0.965,1.017,0.892,0.932,0.984,0.897,1.069,0.92,1.213,0.897,1.042,1.004,1.037,1.016,1.105,1.004,0.922,0.951 +XM_375557,0.906,1.008,1.042,0.808,0.884,1.011,0.832,0.729,0.87,0.922,1.047,0.874,1.051,0.833,0.944,1.234,0.932,0.824,1.013,0.96,0.913,1.024,1.146,1.007,0.897,0.888,1.124,1.009,0.886,1.064,0.976,0.961,1.43,1.079,0.943,1.019,0.959,0.922,1.12,1.019,0.959,1.108,1.0,1.235,0.969,0.997,0.874,1.017,0.878,0.902,0.968,1.029,0.924,1.05 +XM_375558,0.863,1.358,0.965,0.896,0.999,1.079,1.056,0.857,1.028,0.899,1.034,0.906,0.828,0.961,0.921,0.94,1.005,0.978,0.978,1.007,1.052,1.031,1.081,0.968,1.126,0.827,1.156,1.111,1.185,1.532,1.008,0.97,0.935,1.592,0.906,0.95,1.028,1.117,1.194,0.962,1.384,1.507,1.055,0.814,0.861,0.859,0.956,1.029,0.967,0.959,0.894,0.977,0.947,0.948 +XM_375569,0.805,0.852,1.083,1.039,0.978,1.174,0.75,0.971,1.273,0.853,1.036,1.105,0.878,1.081,1.122,1.219,0.843,0.963,1.245,0.987,0.744,1.117,1.208,1.028,0.939,0.851,1.27,0.855,0.892,1.195,1.028,1.038,1.313,1.269,0.6,1.002,1.092,0.915,0.943,1.119,0.993,1.036,0.801,0.815,0.96,0.917,0.741,0.913,0.831,0.812,0.968,0.911,0.926,1.76 +XM_375604,1.03,1.052,0.97,1.07,1.002,0.999,1.013,0.936,1.016,1.026,1.048,1.057,0.901,0.885,0.873,1.034,1.0,0.988,0.972,1.085,1.143,0.954,1.085,0.949,0.938,1.012,0.837,0.962,1.051,1.138,0.975,1.115,1.21,1.142,0.919,1.074,0.981,1.046,0.925,1.055,0.993,1.193,0.82,1.009,0.96,1.064,1.007,0.902,1.07,0.959,1.0,0.986,0.847,1.02 +XM_375618,0.945,0.99,0.974,1.005,0.885,1.064,0.853,1.052,1.001,1.017,0.886,1.006,1.015,0.82,0.889,0.98,0.879,1.09,0.986,0.963,1.054,1.086,0.917,0.88,1.067,1.104,0.936,1.001,0.839,0.962,0.928,1.057,0.938,1.038,1.028,0.982,1.065,0.964,0.938,0.919,1.04,0.932,0.871,0.966,1.062,1.158,1.004,1.136,1.027,0.941,0.997,1.014,0.922,0.947 +XM_375631,1.081,0.972,0.934,0.819,0.883,0.976,1.127,1.058,0.843,0.805,0.99,1.076,0.967,0.924,0.986,1.084,0.998,0.981,1.175,1.06,1.063,1.139,1.012,1.0,1.052,1.145,1.004,0.891,1.054,1.033,1.107,1.077,0.921,0.984,0.919,0.902,1.02,0.951,1.004,1.181,0.883,0.951,0.775,1.073,1.024,1.002,1.126,1.043,0.937,0.937,0.931,0.946,0.939,0.948 +XM_375633,1.058,1.127,1.034,1.08,0.872,0.983,1.042,1.01,0.937,1.036,0.928,1.061,1.032,1.066,1.148,1.122,1.076,1.122,1.047,0.987,1.228,0.997,0.85,0.983,0.973,0.96,0.995,0.958,1.374,1.095,1.012,1.066,1.075,0.921,0.997,1.21,0.997,0.954,0.966,0.966,0.99,0.989,1.061,0.91,1.007,1.101,0.991,0.981,0.963,1.022,1.028,0.983,1.151,1.009 +XM_375646,1.005,1.057,1.015,0.828,1.062,0.856,1.109,0.953,0.988,0.913,0.943,1.001,0.965,0.843,0.891,1.149,1.036,0.864,0.973,1.016,0.939,0.963,0.865,1.035,0.874,1.068,1.052,0.992,0.888,1.026,1.071,0.992,1.009,0.993,0.88,1.112,0.92,0.993,0.905,0.88,0.859,1.042,1.243,0.951,0.991,0.872,1.134,0.968,0.854,1.024,1.037,1.069,1.041,1.085 +XM_375654,1.004,0.951,1.002,0.963,0.941,0.997,1.23,0.876,1.032,0.873,1.023,1.017,1.041,1.099,0.99,1.041,0.892,0.994,0.934,1.044,0.97,0.776,1.136,0.997,0.999,0.935,0.966,1.042,0.988,0.911,1.011,1.077,0.882,0.97,1.015,1.105,1.018,0.958,1.032,1.037,0.951,0.992,1.023,1.164,1.015,0.971,0.925,0.994,0.816,0.955,0.991,1.018,1.076,0.991 +XM_375655,0.922,0.975,0.933,1.053,0.912,0.982,0.908,0.965,1.064,0.918,1.142,1.082,0.9,1.037,0.98,0.981,1.024,1.101,1.004,1.056,1.078,0.98,0.999,0.928,1.006,1.167,0.909,0.963,0.851,1.037,0.924,1.078,0.825,1.015,1.122,1.035,1.072,0.925,1.164,1.004,1.026,0.933,0.978,0.853,1.048,1.004,1.001,1.058,1.028,1.306,1.028,1.044,0.999,1.008 +XM_375656,0.703,1.121,0.89,1.031,0.773,1.215,0.944,0.824,0.708,0.882,1.337,0.953,0.896,0.854,1.097,0.904,0.852,0.703,0.955,1.234,0.948,0.855,1.476,0.856,1.304,0.825,0.767,0.93,0.619,2.692,0.746,5.711,1.151,1.777,0.759,0.757,1.177,1.095,1.3,1.915,1.239,2.032,0.987,0.926,0.83,1.122,0.887,0.804,0.894,0.72,1.454,1.167,0.844,0.913 +XM_375685,1.123,1.207,2.31,0.79,1.412,0.486,0.6,0.771,1.496,1.254,0.471,0.999,1.014,1.288,1.009,0.598,1.557,0.942,1.001,0.779,0.522,1.246,0.846,1.394,0.682,1.546,2.481,1.63,0.287,0.797,1.381,1.519,1.019,0.872,1.136,0.883,0.493,1.859,1.206,1.607,1.497,0.981,0.396,1.175,1.679,0.493,1.105,1.327,0.572,1.391,0.767,1.085,1.399,1.501 +XM_375697,0.902,0.952,1.033,0.841,1.007,0.952,0.861,1.006,1.236,0.855,0.899,0.992,0.984,0.967,0.948,1.118,0.972,1.087,1.057,1.069,0.987,1.017,0.929,1.073,1.066,1.038,0.986,0.982,0.871,0.915,0.975,0.996,1.142,1.033,1.041,0.986,0.995,1.032,1.066,1.01,1.026,0.915,0.931,0.96,0.989,0.966,1.046,1.031,0.942,1.079,1.026,0.966,1.115,1.074 +XM_375698,1.001,0.93,0.959,0.854,1.062,1.094,0.813,0.935,1.044,0.938,0.985,0.924,1.103,0.966,0.856,0.957,1.022,0.999,0.948,1.045,1.163,1.032,1.211,1.033,1.085,1.005,1.025,1.004,1.017,0.961,0.927,0.937,0.953,1.061,1.097,0.888,1.012,0.968,0.958,1.023,1.067,1.02,0.758,0.942,0.935,0.918,0.846,1.008,0.879,1.03,0.981,1.026,1.14,1.814 +XM_375707,0.869,1.057,1.032,1.047,0.891,0.996,0.98,0.986,1.294,0.911,0.974,1.04,1.205,1.039,1.114,1.083,0.888,1.081,1.077,1.155,1.019,0.876,0.934,1.015,0.935,0.973,1.177,0.88,0.68,1.154,0.814,0.972,1.157,0.901,0.825,1.136,0.919,1.129,0.89,0.842,1.035,1.116,0.878,1.132,0.96,1.008,0.976,1.027,1.031,0.994,0.911,1.097,1.132,1.113 +XM_375713,0.857,1.002,0.927,0.86,1.022,1.096,1.035,0.939,0.87,1.2,0.968,0.877,0.95,0.887,1.205,1.097,0.968,0.979,0.904,1.038,1.212,1.011,1.067,0.977,0.939,1.163,1.028,0.914,1.738,1.095,1.027,1.012,0.977,0.973,1.035,1.071,1.002,0.981,0.913,0.984,1.009,0.952,1.039,0.946,1.066,0.944,0.89,1.098,1.103,1.074,1.048,0.847,1.058,0.876 +XM_375714,0.809,1.259,0.95,0.929,0.747,0.945,0.872,0.669,1.119,0.908,1.075,0.805,0.691,0.797,1.044,0.904,0.858,0.883,0.867,1.5,0.757,0.79,1.566,0.886,0.877,0.807,0.959,0.887,1.01,0.928,0.89,1.793,1.785,1.174,0.736,1.05,1.038,0.9,1.13,1.241,0.938,1.219,1.056,1.799,0.857,1.055,0.826,0.762,0.942,0.807,1.084,0.997,0.82,1.772 +XM_375729,0.649,1.469,0.935,1.104,0.892,2.935,1.114,0.534,0.902,0.883,2.247,0.668,0.511,0.436,1.204,2.577,0.673,1.954,1.121,2.469,0.487,0.733,2.668,1.101,0.886,0.727,0.892,0.776,0.216,2.341,0.699,0.627,0.492,3.128,0.297,0.599,2.065,0.656,1.901,0.813,1.166,1.914,0.19,0.751,1.381,2.536,0.897,0.749,1.857,0.761,2.738,0.65,0.708,0.909 +XM_375737,0.915,1.017,1.065,0.918,0.952,0.951,0.996,1.123,1.057,0.982,0.932,1.013,1.025,1.007,0.962,0.974,0.972,0.99,1.025,1.165,1.033,0.943,1.002,0.96,1.081,1.18,0.968,1.044,1.173,0.961,1.047,0.848,1.083,0.967,1.111,1.092,1.035,0.766,1.043,1.041,0.956,1.09,0.928,1.198,1.024,0.962,1.022,1.002,1.008,0.958,0.991,1.041,1.163,0.948 +XM_375744,1.028,0.956,1.073,0.94,1.047,1.0,0.957,0.832,0.923,1.006,1.057,0.999,1.039,1.007,0.983,1.105,0.985,1.052,1.094,1.118,1.062,1.13,0.917,0.935,1.018,1.074,0.832,0.957,0.76,0.989,0.974,0.878,1.037,1.04,1.1,1.027,1.029,0.994,0.972,0.964,0.942,1.051,1.026,0.99,0.981,1.062,1.021,0.993,1.114,1.077,0.993,1.067,1.066,0.994 +XM_375746,1.089,0.95,1.083,0.846,0.996,0.933,1.054,1.033,1.08,0.864,1.12,1.108,1.037,0.894,0.974,1.008,1.024,1.017,1.028,0.933,1.006,1.108,1.083,1.039,0.965,1.009,1.11,0.979,1.019,1.016,1.099,1.016,0.946,0.981,0.962,0.978,0.94,1.112,0.998,0.835,1.123,0.951,0.867,0.95,1.216,1.038,0.923,0.956,1.098,1.053,1.002,0.948,0.929,1.387 +XM_375754,0.935,1.036,0.998,1.071,0.975,0.958,0.988,0.894,1.025,0.922,0.983,1.171,0.935,1.133,1.123,1.01,0.921,0.988,1.013,1.006,1.135,0.952,0.959,0.835,0.914,1.071,1.113,0.991,1.254,1.032,0.934,1.119,0.962,0.925,1.088,0.956,1.148,1.044,0.97,0.924,0.968,0.914,1.028,1.002,0.989,0.82,0.886,1.078,0.945,0.932,0.968,0.917,0.955,0.964 +XM_375756,0.939,1.044,0.937,0.895,1.031,1.15,0.949,1.001,1.064,1.048,0.998,0.99,0.897,0.968,1.018,1.127,0.995,0.988,0.871,1.114,1.179,1.112,1.143,1.005,1.018,0.961,1.025,1.036,1.151,0.972,0.965,0.881,1.045,1.041,1.236,1.084,1.051,0.976,1.045,1.148,1.194,0.904,0.949,1.049,0.98,1.18,0.982,0.985,1.029,0.899,0.993,0.969,1.06,0.912 +XM_375761,1.144,0.784,1.017,0.931,0.998,0.964,0.808,1.077,1.065,1.134,1.098,0.898,1.085,1.088,1.014,1.08,1.007,1.099,0.969,0.934,1.027,1.047,1.012,1.104,1.0,1.102,0.855,1.012,1.05,1.032,0.966,1.043,0.932,0.91,1.027,0.949,0.966,1.036,0.988,0.962,0.948,0.991,1.023,1.047,0.978,0.965,0.838,0.992,0.865,1.041,0.888,1.124,0.99,1.056 +XM_375762,1.113,0.964,1.1,1.018,0.992,1.063,1.198,0.938,1.057,0.924,1.026,1.162,0.961,1.084,0.842,0.967,1.018,1.015,1.096,1.004,0.939,0.962,1.018,1.0,0.874,1.096,0.913,0.866,0.846,1.018,1.036,1.068,0.996,1.076,1.088,1.023,1.025,0.863,1.038,0.913,1.034,1.054,1.377,0.966,1.094,1.038,0.94,0.944,0.997,0.927,1.072,1.011,1.023,0.916 +XM_375779,0.983,0.979,1.011,0.756,0.871,1.021,0.918,1.214,1.144,0.759,1.083,1.114,1.004,0.832,1.065,0.948,1.115,0.954,0.88,0.926,1.007,1.119,1.027,0.767,1.03,1.106,0.99,0.858,1.205,0.916,0.915,0.948,1.136,1.059,1.045,1.018,0.897,1.092,0.855,0.836,0.951,1.059,1.072,0.982,1.05,1.035,1.146,1.071,0.902,1.125,1.001,0.973,0.997,0.934 +XM_375809,0.994,0.897,0.919,0.826,1.08,1.008,0.99,1.071,0.983,1.217,0.884,0.941,0.94,1.324,0.711,1.082,0.861,1.243,0.97,0.931,0.986,0.941,1.084,1.051,1.037,0.942,1.045,0.943,1.015,1.001,1.008,1.039,1.317,1.129,1.189,0.961,1.087,1.027,0.962,0.979,0.989,1.072,0.909,1.121,0.854,1.1,0.98,0.975,0.961,1.082,1.062,1.058,1.083,0.932 +XM_375810,1.058,1.047,0.848,1.384,1.031,0.946,1.018,1.139,0.908,1.01,1.093,0.923,1.072,1.011,0.803,1.169,0.884,0.951,0.998,0.838,0.924,0.984,1.088,0.978,1.082,1.199,0.844,1.158,1.629,0.956,1.073,0.985,0.723,1.063,0.993,0.982,1.025,0.909,1.075,1.002,1.073,1.034,1.099,1.168,0.979,0.846,1.09,1.143,0.996,0.845,0.949,0.956,1.217,0.988 +XM_375816,1.125,1.087,0.983,0.942,1.181,1.026,1.002,0.867,1.02,1.104,1.115,1.016,1.056,1.108,0.955,0.942,1.112,0.943,0.852,1.061,0.759,1.089,0.98,1.006,0.969,1.091,1.018,1.027,0.822,1.009,0.942,1.042,0.779,0.987,0.944,1.018,0.814,1.207,1.038,1.036,0.997,0.906,0.874,0.976,1.129,0.985,0.923,1.147,1.177,1.022,0.997,0.94,0.939,0.998 +XM_375834,0.899,0.951,1.512,1.092,1.048,1.101,0.983,0.785,1.111,0.838,0.899,0.883,1.074,1.236,0.818,1.11,1.14,1.009,1.533,0.966,0.861,1.095,0.918,0.863,0.686,0.881,1.782,0.814,0.799,1.109,0.911,0.832,1.288,1.111,0.547,1.323,0.803,1.152,1.393,1.242,1.059,0.784,0.726,0.917,1.277,0.756,0.772,1.065,0.715,1.299,0.891,0.994,1.36,1.066 +XM_375837,0.77,1.013,1.02,0.881,0.894,0.959,0.707,0.927,0.795,0.794,1.167,0.704,0.859,1.102,1.16,1.612,0.92,0.776,0.861,1.062,0.764,0.808,1.377,0.878,0.789,0.9,1.144,0.951,0.614,0.949,0.931,1.471,2.024,1.024,0.718,1.357,1.291,0.758,1.12,1.664,0.901,1.2,0.921,1.405,0.927,1.335,1.136,0.758,1.256,0.895,1.184,0.906,0.858,1.184 +XM_375848,0.7,1.299,0.664,1.041,0.639,1.259,0.888,0.674,0.756,0.707,1.109,0.704,0.748,0.737,0.874,1.382,0.753,1.003,0.73,1.111,0.686,0.702,1.703,0.697,1.148,0.751,0.776,0.601,0.584,1.134,0.669,1.087,1.827,1.418,0.656,0.955,1.118,0.763,2.143,1.196,0.685,1.149,0.596,1.484,0.682,0.985,0.821,0.703,0.989,0.68,1.078,1.025,0.706,1.077 +XM_375850,1.387,0.764,0.879,0.884,1.316,1.485,0.848,3.962,1.962,0.596,1.105,1.195,1.192,1.042,1.976,1.88,0.955,0.767,0.963,1.223,0.598,2.894,1.198,1.44,0.894,0.904,1.205,1.803,0.831,0.997,3.353,1.309,1.814,1.011,3.698,0.737,1.105,2.386,1.265,1.569,0.793,0.915,0.852,0.684,0.825,1.068,1.388,1.688,0.905,0.768,1.327,0.981,0.575,2.535 +XM_375851,0.975,1.117,0.949,0.967,0.972,0.992,1.013,1.018,1.037,1.034,0.95,1.047,0.993,0.922,1.182,1.08,1.024,0.847,1.016,0.913,0.83,0.941,1.079,0.961,0.932,0.916,0.941,1.001,0.999,0.909,1.049,1.181,1.412,0.926,0.833,1.184,0.993,0.839,1.212,1.285,0.912,1.111,0.96,1.255,0.973,0.959,1.104,1.03,1.162,1.0,0.973,0.962,0.99,1.479 +XM_375853,0.946,0.996,1.175,0.835,0.835,0.811,0.697,0.738,1.378,1.232,0.939,0.862,0.66,0.801,0.823,0.917,0.977,0.915,1.162,0.934,0.962,0.711,1.291,1.144,0.841,0.953,1.234,0.865,0.711,0.906,0.963,1.196,1.972,1.083,0.627,1.534,0.961,0.982,1.453,1.341,1.184,0.983,0.883,1.937,1.166,0.935,1.059,0.797,1.102,1.039,1.08,0.934,1.087,2.286 +XM_375882,0.584,5.779,0.578,2.474,0.595,7.124,3.601,0.578,0.538,0.478,2.387,0.611,0.522,0.456,1.542,1.168,0.545,4.549,0.593,3.6,0.511,0.559,1.739,0.576,3.1,0.552,0.492,0.646,3.655,5.378,0.571,0.994,0.564,8.66,0.518,1.677,3.03,0.508,3.898,0.55,0.525,4.009,1.256,0.587,0.501,3.04,0.621,0.589,1.594,0.501,3.784,0.655,0.569,0.591 +XM_375897,0.915,0.965,0.951,1.203,0.947,0.977,1.033,1.0,0.98,0.939,0.963,1.002,1.044,0.885,0.901,1.293,1.066,0.954,1.129,0.963,0.84,1.131,1.133,1.03,0.976,0.999,0.965,1.007,0.839,1.015,1.081,1.008,1.199,1.085,1.009,1.04,0.941,0.912,0.913,1.11,0.901,0.92,0.934,0.928,0.894,0.873,0.983,0.862,0.998,0.97,0.999,1.022,0.95,0.911 +XM_375902,1.103,1.004,0.827,0.884,1.015,0.952,1.092,0.842,0.779,0.943,0.918,0.985,1.059,1.176,0.966,0.895,1.218,1.031,1.088,0.919,0.916,1.081,1.066,0.864,0.936,1.026,0.909,0.914,1.203,1.0,0.943,0.808,1.075,1.04,1.099,1.205,1.02,1.045,0.989,0.977,1.13,0.925,0.839,1.028,0.941,1.093,0.889,1.173,1.151,0.969,0.958,1.147,0.993,0.988 +XM_375904,1.0,0.983,1.048,0.934,1.044,0.944,1.079,1.001,0.939,0.978,0.983,0.996,0.982,0.904,1.014,0.986,1.097,0.966,0.919,1.062,0.947,0.969,1.018,1.053,0.968,1.017,1.013,0.946,0.879,0.983,1.001,1.073,0.944,1.046,1.06,1.029,0.982,0.98,0.994,1.024,1.029,1.005,1.03,1.04,1.021,1.0,1.038,1.003,1.005,0.892,0.99,0.985,1.081,1.006 +XM_375928,1.148,1.08,0.974,1.046,0.964,1.066,0.982,0.968,0.848,1.141,1.254,1.125,0.982,1.095,1.101,0.837,0.961,1.136,1.109,1.027,0.999,1.045,0.97,0.943,1.055,0.991,0.857,1.0,0.875,0.982,0.952,1.054,1.111,0.985,0.98,1.051,1.019,0.91,1.009,0.96,0.909,0.782,0.859,1.065,1.008,1.052,1.134,1.326,1.052,0.912,0.897,1.172,0.932,1.016 +XM_375935,0.946,0.956,1.009,1.069,0.97,0.894,0.869,1.029,1.055,0.889,1.036,1.024,0.931,0.981,1.045,0.998,1.006,1.242,1.083,0.983,0.925,1.005,1.031,0.961,1.081,1.075,0.935,0.955,0.997,0.908,1.08,0.938,0.966,1.037,0.981,1.011,0.948,0.975,1.187,1.025,1.071,0.832,0.997,1.013,0.986,0.979,1.065,0.926,0.935,1.096,0.935,0.97,0.947,1.072 +XM_375966,1.044,0.993,1.031,0.992,0.92,0.959,0.895,0.883,1.035,1.061,0.977,1.022,0.946,1.157,0.939,0.946,1.005,0.928,0.993,0.925,1.124,1.02,0.999,0.987,1.029,0.989,0.986,1.096,0.87,1.022,1.028,0.957,0.876,0.967,0.855,0.869,0.968,0.911,1.053,1.002,0.955,0.917,0.819,0.96,1.107,0.977,0.978,0.973,1.006,0.922,1.009,0.879,1.012,0.986 +XM_376001,1.05,0.987,1.052,0.992,0.921,0.917,0.933,0.881,1.056,1.142,1.049,1.066,1.057,0.892,0.782,1.051,1.107,0.746,0.961,0.932,0.985,0.97,1.031,1.067,0.976,1.059,1.004,0.956,0.914,0.985,0.974,1.092,0.99,1.009,1.022,0.998,1.095,1.001,0.949,1.066,0.938,0.922,1.006,0.978,0.892,0.901,0.96,0.964,0.9,0.945,0.909,0.999,1.18,1.03 +XM_376003,0.906,1.131,1.228,0.951,0.982,1.049,0.913,0.787,1.13,0.941,1.159,0.819,0.89,1.057,0.881,0.967,1.064,1.013,1.115,0.817,0.861,0.824,0.859,1.02,1.021,1.009,1.135,0.987,0.998,1.047,1.07,1.087,1.121,1.087,0.869,0.834,0.999,1.061,1.094,0.926,1.042,0.998,0.77,0.838,1.012,0.948,1.041,1.049,0.847,0.906,1.007,0.883,0.949,1.026 +XM_376008,1.019,0.994,0.951,0.944,0.929,1.051,0.864,1.06,1.056,0.957,0.996,0.988,0.998,0.975,1.365,1.08,0.896,1.013,0.903,1.008,0.876,1.015,0.99,0.979,0.997,0.962,1.022,1.18,0.655,0.924,0.853,1.05,1.229,1.031,0.885,0.885,1.217,0.876,1.14,3.117,0.931,1.039,0.931,0.865,0.977,1.533,1.675,0.922,1.294,0.877,0.938,0.907,1.031,0.885 +XM_376010,1.084,0.938,0.972,1.068,1.045,0.955,0.889,0.909,1.022,1.032,1.14,1.102,1.053,0.96,0.918,0.957,0.992,0.945,0.91,1.088,1.042,0.89,0.955,1.058,1.018,0.928,1.155,1.05,0.916,0.988,1.053,1.025,1.034,1.138,1.229,1.027,0.981,0.878,1.003,0.992,1.115,0.889,1.148,0.996,1.094,1.103,0.948,0.927,0.949,0.905,0.997,1.021,1.066,1.157 +XM_376018,0.878,0.934,0.946,0.907,0.981,1.158,0.985,0.931,1.036,0.829,2.273,0.941,0.983,0.793,1.104,1.244,0.835,1.012,0.792,2.197,0.755,0.876,1.113,0.799,0.864,0.998,0.835,0.928,0.993,1.285,0.857,1.28,1.019,1.068,0.899,0.954,1.859,0.898,1.515,1.204,0.897,1.179,1.516,0.977,0.879,1.212,1.002,0.928,1.302,0.918,1.185,1.948,0.889,1.041 +XM_376020,1.018,1.021,1.052,1.105,1.165,1.195,0.978,0.947,1.053,0.986,0.963,0.924,1.147,0.979,1.001,0.873,1.023,0.99,0.979,0.985,0.993,1.088,0.974,1.107,0.964,1.268,0.978,0.942,1.383,1.094,0.922,1.069,1.072,0.943,1.042,0.934,0.964,0.99,1.14,0.922,0.998,1.003,0.877,1.059,0.949,0.887,1.062,0.933,0.909,0.967,0.91,0.919,0.947,0.911 +XM_376049,0.953,0.976,0.824,0.957,1.038,0.887,1.136,1.109,0.968,1.005,0.976,1.05,1.056,0.844,0.947,1.072,0.937,0.962,1.106,1.0,0.892,1.119,0.889,1.161,1.036,1.048,0.962,1.039,0.884,0.967,1.061,0.93,1.011,0.96,1.021,0.956,1.042,0.987,0.974,1.127,0.839,1.0,0.905,0.973,0.975,1.004,1.054,0.874,1.124,0.998,0.981,0.983,0.961,0.942 +XM_376056,0.923,0.935,1.029,1.075,0.952,0.91,0.865,1.056,1.005,1.062,1.037,0.951,1.051,1.192,1.028,1.05,0.975,0.967,1.104,0.912,1.061,0.998,1.01,1.003,0.999,1.094,1.001,0.979,1.275,1.028,1.136,1.019,0.997,0.995,0.861,1.005,0.923,0.888,0.979,0.996,1.036,0.908,0.939,1.019,0.956,1.077,1.002,1.093,0.886,0.98,1.031,1.049,0.954,1.09 +XM_376060,0.845,0.938,1.155,1.153,0.996,0.98,0.85,0.96,1.056,0.993,0.846,1.037,0.871,0.831,0.877,0.809,1.133,0.901,1.011,0.925,1.037,0.887,0.987,1.032,0.942,0.808,1.445,0.853,0.886,1.135,0.865,1.202,1.142,1.14,0.815,0.889,0.901,0.941,1.339,1.886,1.127,1.247,0.666,1.04,1.064,0.854,0.934,0.905,0.946,0.991,0.915,1.198,1.099,1.685 +XM_376062,1.234,1.077,2.262,0.878,1.852,0.863,1.014,1.399,2.111,1.503,0.712,1.509,1.451,1.099,1.203,0.914,1.305,1.348,1.544,0.821,1.304,2.422,0.904,1.771,1.099,1.306,1.582,1.482,0.899,0.893,1.862,0.98,1.883,1.222,0.835,0.824,0.776,2.043,0.955,0.844,1.412,0.975,0.628,0.742,1.276,0.86,0.966,1.35,0.747,1.089,1.046,0.858,0.905,0.783 +XM_376072,1.053,1.109,0.991,0.922,0.945,1.042,0.961,0.909,1.048,1.022,0.949,0.945,0.959,1.1,0.909,0.922,1.073,0.951,0.993,0.929,0.985,1.079,0.908,0.972,0.936,1.007,1.044,0.872,1.132,1.049,0.937,1.017,0.894,1.102,0.894,0.939,1.1,1.09,1.095,1.049,1.009,1.051,0.988,0.821,1.019,0.912,1.153,0.907,1.11,1.075,1.022,0.96,1.019,0.949 +XM_376101,0.801,1.045,0.948,1.044,0.951,1.881,1.743,0.998,1.171,1.017,0.891,1.181,1.149,0.835,0.92,0.926,1.009,1.049,0.769,1.519,1.018,1.011,0.971,1.108,1.008,0.952,1.216,0.992,0.961,1.631,0.983,1.794,1.491,1.059,1.278,1.317,0.956,1.015,0.968,1.169,1.045,1.004,0.843,0.924,0.847,0.916,0.927,0.871,1.037,0.911,1.027,1.164,0.938,1.414 +XM_376125,1.153,0.89,0.988,1.089,0.859,0.951,0.85,0.864,0.892,0.928,1.006,0.864,0.979,0.829,0.832,1.256,1.025,1.002,0.963,1.018,1.138,0.922,0.963,0.976,1.294,1.215,0.949,1.094,0.781,0.979,1.065,1.097,1.623,1.144,1.15,0.767,0.969,1.015,1.235,0.877,0.936,0.971,0.737,1.079,0.957,1.018,0.998,1.112,0.955,1.008,1.063,0.797,0.904,0.829 +XM_376139,0.949,1.045,1.013,1.097,0.993,0.898,1.417,1.21,1.029,1.058,0.994,1.055,0.999,0.911,1.215,0.991,0.966,1.046,1.042,0.942,0.969,0.981,0.876,0.978,1.011,0.974,0.941,0.975,0.928,0.96,0.984,1.025,1.147,0.872,1.14,0.971,1.049,1.06,0.987,0.967,0.954,1.015,1.285,0.988,0.971,1.121,1.026,0.955,1.032,1.008,0.975,1.036,1.098,1.054 +XM_376144,0.829,1.258,0.936,0.973,1.002,1.166,0.889,0.948,0.809,0.841,1.357,0.852,0.836,0.768,0.988,1.223,0.857,1.05,0.928,0.987,0.872,0.811,1.3,0.854,0.897,0.766,0.92,0.979,0.764,1.283,0.896,1.298,1.128,1.501,0.776,0.864,1.286,0.792,1.199,1.133,0.854,1.012,0.739,1.01,0.897,1.18,0.958,0.824,1.189,0.924,1.155,0.956,0.865,1.207 +XM_376150,0.432,0.988,1.701,0.375,1.087,1.905,0.704,2.377,1.202,0.666,0.723,1.754,1.601,0.628,1.204,2.448,1.063,0.88,0.77,1.35,0.278,1.833,1.465,1.864,0.433,0.379,1.94,1.069,0.176,1.222,2.082,1.313,2.031,1.273,0.29,0.312,0.947,2.227,1.4,0.756,1.026,1.057,0.225,0.338,1.073,0.635,1.129,0.811,1.375,0.686,1.132,0.396,0.308,1.223 +XM_376160,0.96,1.081,1.053,0.994,1.158,1.149,1.135,0.906,1.017,0.934,1.201,0.958,1.012,0.834,0.916,0.968,1.039,1.128,0.957,1.094,1.04,1.08,0.835,0.99,1.008,0.955,1.072,1.05,1.765,0.938,1.051,0.988,1.002,0.936,1.091,0.949,0.957,0.967,1.003,0.918,0.883,0.928,1.081,1.054,0.968,1.055,1.052,1.012,1.082,0.965,0.936,1.025,0.863,1.311 +XM_376161,0.947,1.139,0.901,1.08,1.041,1.088,1.039,1.005,0.9,0.99,1.109,0.97,0.968,1.07,0.953,1.095,0.98,1.196,0.948,0.932,0.978,0.845,1.134,0.919,1.068,0.934,1.03,1.121,1.01,1.024,0.999,0.94,0.974,0.849,0.95,0.915,0.949,0.944,0.992,0.94,1.038,0.955,1.112,1.011,1.041,0.946,0.902,1.07,1.069,1.054,1.022,0.983,0.952,0.935 +XM_376162,0.827,1.016,1.04,0.875,1.124,1.155,1.05,1.143,1.028,0.886,0.867,0.987,0.954,0.93,1.034,1.523,1.004,0.939,0.889,0.991,0.792,1.202,1.031,1.187,1.011,0.851,1.359,1.03,1.093,0.926,1.124,1.012,2.441,1.0,0.882,0.949,1.111,1.362,1.282,0.843,1.028,0.907,1.069,0.899,0.983,1.024,1.038,1.029,1.207,0.962,1.191,0.868,0.863,1.1 +XM_376172,0.76,0.919,1.225,0.747,0.999,1.088,0.709,0.605,1.103,1.165,0.771,0.91,0.687,0.847,0.827,0.924,1.117,0.835,1.116,1.013,0.781,0.954,1.432,0.983,0.689,0.964,1.664,0.871,0.638,1.235,0.875,1.675,2.255,1.366,0.497,1.164,0.844,1.019,1.182,1.592,0.989,1.148,0.556,1.395,1.006,0.845,0.879,0.711,0.817,0.851,0.926,0.898,0.983,3.227 +XM_376178,0.721,0.745,1.532,0.619,0.968,0.892,0.632,0.482,1.404,1.045,0.74,0.575,0.499,0.738,0.915,0.976,1.112,0.77,1.367,0.608,0.635,0.966,1.043,1.168,0.583,0.843,1.951,0.915,0.125,1.041,1.239,0.921,2.248,1.104,0.805,0.816,0.83,1.074,1.464,0.877,1.361,0.876,0.123,1.358,1.317,0.781,1.031,0.871,1.026,0.823,1.174,0.882,1.023,2.867 +XM_376179,0.984,1.048,1.068,0.833,0.991,0.94,0.908,0.936,0.874,0.847,1.032,0.996,0.905,1.138,1.162,0.872,1.006,1.223,1.116,1.083,0.906,0.985,1.147,1.003,1.018,0.923,0.894,0.855,0.796,0.966,0.914,0.783,0.933,0.972,1.047,1.155,1.05,0.985,0.984,0.954,1.015,1.139,0.984,0.987,0.938,1.099,0.981,1.016,1.028,0.856,0.885,0.997,0.972,1.057 +XM_376180,0.894,1.056,1.126,0.93,0.93,1.22,0.882,1.096,0.962,1.073,1.081,1.211,0.996,0.943,0.94,1.351,0.981,1.225,0.877,0.973,0.832,1.041,1.084,0.969,0.897,0.907,1.157,1.011,0.888,1.018,0.97,1.024,1.34,1.032,0.955,0.951,0.981,0.965,1.252,1.033,1.017,1.03,1.108,1.067,0.966,0.89,1.07,0.966,1.001,0.857,1.04,0.866,0.879,1.462 +XM_376189,0.979,1.094,0.943,0.938,1.046,1.036,1.064,1.088,0.969,1.099,1.118,0.929,1.056,0.943,0.916,1.019,1.109,1.156,0.986,1.062,1.081,0.94,0.801,0.957,0.936,0.925,0.909,0.988,1.308,0.979,0.86,1.057,0.958,1.136,0.954,0.965,0.931,0.981,1.047,0.962,1.146,0.909,0.962,1.0,0.99,0.957,0.922,1.109,1.128,1.08,0.99,1.005,1.062,1.099 +XM_376191,1.036,1.089,0.934,1.015,0.946,0.953,0.913,0.97,1.09,1.041,0.977,0.926,1.001,1.012,1.005,1.053,0.939,0.856,0.965,1.054,1.013,1.011,1.014,1.056,1.041,0.905,1.034,0.927,1.044,1.025,1.026,1.057,0.93,0.948,1.122,0.895,0.969,1.012,1.089,0.942,1.005,0.937,0.898,1.021,0.933,0.886,0.903,1.036,0.94,1.096,1.033,0.988,1.071,1.139 +XM_376203,0.761,1.055,1.109,0.758,0.857,1.209,0.733,0.508,0.861,1.105,0.681,0.838,0.604,0.587,0.815,1.017,0.916,0.932,1.02,0.902,0.798,0.963,1.224,1.109,0.795,0.963,1.149,0.826,0.616,1.631,0.819,1.464,1.256,1.217,0.34,0.632,1.017,0.998,1.734,1.222,1.104,1.16,0.663,0.911,1.073,0.888,0.93,0.819,1.068,1.072,0.94,0.901,0.946,1.633 +XM_376227,0.915,1.042,0.958,1.063,0.924,1.052,0.902,0.882,1.063,0.929,1.105,0.913,0.881,1.038,0.975,1.019,0.927,1.142,1.06,1.03,1.014,0.941,1.03,0.877,0.983,0.855,0.938,1.168,0.806,1.148,0.989,0.924,1.125,1.194,0.958,1.06,1.045,1.082,0.916,1.025,1.062,0.978,0.822,1.031,0.917,1.005,0.934,0.964,0.999,1.003,0.826,0.97,1.25,1.042 +XM_376238,0.875,1.081,1.048,1.0,0.886,1.049,1.061,0.878,1.0,1.008,0.992,0.846,1.085,0.894,1.262,0.996,1.053,0.884,1.013,0.976,0.867,0.975,1.218,1.071,0.941,0.975,1.142,0.908,0.697,0.931,1.054,1.178,1.213,1.048,0.876,0.949,1.026,0.972,1.076,1.001,1.054,1.15,1.439,0.941,0.922,1.073,0.929,0.89,1.074,0.993,0.985,0.961,0.934,1.361 +XM_376247,0.914,1.111,0.97,0.953,1.05,0.944,0.786,0.994,1.101,1.115,1.168,0.99,0.988,1.0,0.972,0.879,1.128,1.067,1.04,0.947,0.929,1.129,0.948,0.938,1.009,1.027,1.104,0.929,0.653,1.028,1.021,1.001,0.824,1.043,1.089,0.967,0.973,1.359,1.065,0.998,1.129,1.055,1.007,0.985,0.996,0.822,0.993,0.976,0.923,1.083,0.92,0.995,0.871,1.034 +XM_376249,0.26,0.895,1.241,0.4,1.143,1.584,0.667,0.788,1.093,0.928,0.391,0.779,0.483,0.373,1.0,1.846,1.19,1.208,0.882,1.137,0.303,0.937,1.407,1.099,0.288,0.511,1.648,0.82,0.0761,1.116,1.269,1.094,1.848,1.339,0.871,0.633,0.928,1.0,1.746,1.391,1.102,1.097,0.0769,0.755,1.243,0.926,1.266,0.543,1.86,0.729,1.262,0.605,0.507,1.639 +XM_376280,1.053,1.089,1.123,1.029,0.878,1.189,1.028,0.839,1.039,0.953,1.104,0.966,0.912,1.031,0.844,0.96,0.858,0.96,0.972,1.018,1.005,0.989,1.027,0.918,0.996,0.936,0.978,1.058,0.949,1.017,0.92,0.881,1.109,1.155,0.98,1.194,0.943,0.876,1.151,0.992,0.895,1.06,0.922,1.124,0.939,1.052,1.052,1.034,1.007,0.96,1.033,1.05,1.0,0.993 +XM_376281,0.986,0.962,0.978,1.03,0.966,1.164,0.993,0.911,0.925,1.01,0.999,1.011,1.01,0.816,0.907,1.097,1.118,1.056,1.017,0.954,0.874,0.979,1.031,1.149,1.045,1.144,1.014,1.005,1.55,0.992,1.05,1.05,1.042,1.013,1.068,0.905,0.914,1.212,1.106,0.961,1.0,0.934,1.09,1.006,1.15,1.188,0.844,0.964,0.906,1.011,1.048,0.954,0.913,0.921 +XM_376290,0.985,0.969,1.048,0.946,0.938,1.1,0.866,0.95,0.971,0.738,0.946,1.008,0.938,1.011,0.891,1.118,1.025,0.956,0.889,1.099,1.096,1.038,0.908,1.018,0.999,0.957,0.976,1.051,0.806,1.012,1.095,1.022,0.942,1.078,1.023,1.015,0.999,1.057,0.992,0.921,1.119,1.033,0.923,0.964,0.903,1.001,1.091,0.837,0.853,0.897,1.001,0.938,1.074,1.099 +XM_376292,1.098,0.871,1.104,0.936,1.041,1.021,0.928,0.857,1.226,1.163,0.935,1.159,1.088,0.982,1.007,1.148,0.908,1.148,1.064,0.94,0.937,0.892,1.052,0.884,0.985,0.931,0.775,1.107,0.976,0.96,1.134,1.093,0.975,0.848,1.071,0.899,0.967,1.013,1.054,1.059,0.968,1.014,0.983,1.048,1.13,0.993,1.155,1.092,1.05,0.956,0.991,1.012,1.04,0.91 +XM_376299,0.951,1.042,1.176,0.916,0.872,0.986,1.033,0.961,0.956,1.013,0.936,1.081,0.946,0.84,1.016,1.087,1.131,0.876,1.025,0.956,1.073,0.925,0.968,0.988,1.032,1.043,0.929,0.933,0.83,1.048,1.003,1.1,1.078,0.999,0.917,1.021,1.089,0.909,0.813,1.033,0.97,1.035,0.849,1.032,1.077,1.143,0.965,0.905,0.925,1.003,0.994,1.021,1.055,0.872 +XM_376306,0.979,0.914,1.1,0.985,0.951,0.92,0.958,1.07,1.03,1.239,0.991,1.058,1.24,1.281,0.92,1.097,0.92,0.993,1.103,1.146,1.043,1.043,1.083,1.065,0.936,1.127,0.976,1.001,0.928,0.849,1.073,0.935,1.099,0.927,1.018,1.043,0.965,0.843,1.05,0.877,0.931,0.928,1.016,1.094,0.937,1.002,0.937,0.951,0.999,1.063,1.075,1.012,0.997,1.171 +XM_376322,1.068,0.979,0.927,1.178,0.835,1.099,1.213,0.961,1.253,0.99,0.93,1.029,1.012,0.831,1.02,0.987,1.04,1.015,1.211,1.097,0.99,1.205,0.84,1.119,1.082,0.966,0.979,1.049,1.0,0.962,1.054,0.915,1.135,0.839,0.997,1.037,1.029,0.997,0.986,1.166,1.026,0.885,0.959,1.068,1.07,0.825,1.005,1.084,0.98,1.131,1.016,1.056,1.155,0.945 +XM_376349,1.076,1.019,1.029,1.089,0.955,1.005,0.931,0.806,1.111,1.082,0.946,0.973,0.882,0.922,0.796,1.066,0.84,0.898,0.935,0.788,0.864,0.948,1.044,0.95,0.979,0.861,1.126,1.036,0.691,1.114,0.93,1.216,1.316,0.967,0.906,1.079,0.915,0.861,1.273,1.235,1.142,0.913,0.963,1.198,0.91,1.025,1.131,0.933,1.026,0.853,1.035,0.968,1.033,1.339 +XM_376353,1.015,0.956,0.903,1.009,1.031,1.084,0.829,0.817,0.947,1.058,1.255,0.953,0.868,1.04,1.076,1.163,1.037,1.014,0.959,1.018,1.087,0.971,0.976,0.874,0.96,0.933,0.858,1.011,0.851,1.186,1.009,1.017,1.114,1.148,0.902,0.96,1.062,0.899,0.94,0.973,0.994,0.87,1.303,1.186,0.988,1.215,1.147,0.888,1.23,0.876,0.997,0.831,1.108,1.291 +XM_376355,1.027,0.981,0.967,0.973,0.99,1.013,0.946,0.924,1.076,0.958,1.035,1.001,1.046,1.102,1.012,1.009,0.993,1.053,0.9,0.967,1.049,1.095,1.003,0.963,1.106,1.013,1.125,1.077,1.095,0.971,1.024,1.175,1.07,0.959,1.074,1.108,1.06,1.056,0.993,0.979,0.915,1.021,1.128,0.898,1.103,0.988,1.067,0.984,1.059,1.159,1.178,0.954,1.074,0.936 +XM_376386,0.992,0.973,1.001,0.947,1.159,0.994,1.054,1.018,0.934,0.969,1.011,0.975,0.943,0.853,0.998,0.895,1.052,1.035,0.985,0.987,1.155,1.002,0.98,0.998,1.118,1.064,1.025,1.142,1.222,1.063,1.061,1.144,0.981,1.039,1.033,1.01,1.039,1.107,0.938,1.088,0.961,1.124,0.892,1.023,0.999,0.958,0.982,0.939,0.863,0.957,0.953,0.902,0.961,1.024 +XM_376403,0.929,0.989,0.984,1.025,0.909,0.898,0.922,1.114,1.046,1.057,0.899,0.979,0.979,0.883,0.956,1.01,0.906,0.995,0.992,1.068,1.026,1.042,0.937,0.87,0.967,1.066,1.032,1.106,0.78,1.088,1.051,1.09,1.019,0.899,1.199,0.846,0.97,0.829,0.977,1.201,0.946,0.953,0.918,1.013,0.943,0.899,0.905,1.013,1.089,0.874,1.01,1.101,1.104,1.019 +XM_376405,1.014,0.997,0.981,0.823,0.956,1.097,0.936,1.051,0.95,1.067,1.061,0.967,1.015,0.925,1.191,0.966,1.004,0.989,0.996,0.995,1.219,0.984,0.902,1.009,0.994,1.008,1.071,1.006,0.726,1.041,0.973,1.021,0.943,0.959,1.04,1.029,1.126,1.153,0.963,0.933,1.012,1.029,1.054,0.993,1.058,1.088,0.897,0.901,0.958,0.9,1.003,0.914,1.054,0.934 +XM_376427,1.031,1.067,1.032,0.982,1.099,1.117,0.867,1.043,1.104,0.846,0.986,1.107,1.15,0.882,0.73,0.977,1.103,0.996,0.941,0.923,1.205,0.928,0.944,1.008,0.916,1.191,1.144,0.973,0.97,0.954,1.137,1.059,0.923,0.771,0.944,1.002,1.09,1.028,0.758,1.074,0.866,0.779,0.998,0.944,1.013,0.953,1.259,0.953,0.962,0.971,1.21,0.937,1.072,0.924 +XM_376433,1.04,1.112,0.866,1.346,0.877,1.965,2.827,0.847,1.014,0.933,1.027,0.834,1.067,0.922,0.998,0.982,0.939,1.152,1.04,2.068,0.964,0.903,0.966,0.83,2.307,0.938,0.834,1.098,2.676,1.924,0.954,0.983,1.054,2.813,0.894,0.893,1.204,0.892,1.16,0.865,0.896,1.207,0.91,0.898,0.9,1.005,0.923,1.216,1.145,1.104,0.948,3.041,1.144,0.917 +XM_376436,1.052,0.859,1.18,1.211,1.152,1.001,0.815,1.051,1.05,0.961,0.971,1.148,0.883,1.195,0.963,1.007,0.919,1.0,1.224,1.135,1.032,0.937,0.896,0.989,0.985,0.961,0.932,1.045,0.87,1.137,1.034,1.098,0.994,1.02,0.966,1.111,0.968,0.978,1.053,0.972,1.026,0.934,0.95,0.891,0.914,1.141,1.091,0.997,1.088,1.087,0.981,0.952,1.022,0.98 +XM_376453,0.993,0.871,1.046,1.026,0.893,1.03,1.046,0.944,0.951,0.858,1.142,0.91,0.955,0.963,0.999,0.945,1.026,0.87,1.041,0.998,1.075,1.082,0.978,1.152,0.98,0.948,1.038,1.047,0.874,0.933,0.953,0.965,0.878,0.874,0.906,1.056,1.027,0.91,0.915,1.165,0.943,1.067,0.859,1.001,1.069,1.042,0.953,0.982,1.049,1.077,1.162,0.889,0.955,0.924 +XM_376463,1.19,1.233,1.372,1.041,1.071,0.982,0.898,0.949,1.565,1.333,0.817,0.907,1.098,0.999,1.128,1.002,1.122,0.99,0.878,1.005,1.112,0.905,0.889,0.949,0.955,1.25,0.914,1.173,1.11,0.902,1.057,0.991,1.226,0.959,1.722,1.036,0.982,1.195,0.867,0.927,1.464,1.052,0.933,0.987,0.827,0.974,0.966,1.201,0.977,1.12,0.864,1.031,1.357,1.351 +XM_376469,1.006,0.863,0.931,1.027,1.024,0.931,1.105,0.948,0.975,0.923,0.857,0.942,1.057,0.838,1.088,1.097,0.915,1.002,0.94,1.117,0.933,1.07,0.882,0.825,0.991,1.109,0.909,1.308,1.051,1.041,0.962,1.461,0.964,1.016,1.006,1.066,0.998,1.06,1.099,1.022,1.028,1.054,1.019,1.042,0.96,1.013,0.949,0.985,0.97,1.11,0.972,1.015,1.057,0.766 +XM_376498,0.839,0.943,0.903,0.795,0.994,1.074,0.849,1.108,0.894,0.924,0.922,0.995,1.182,1.109,1.104,0.963,0.919,0.969,1.212,1.047,1.036,1.113,0.921,1.159,1.066,0.986,1.0,0.969,0.657,1.055,0.996,1.502,1.943,1.125,0.811,0.972,0.989,0.93,0.989,1.108,1.057,1.006,0.894,0.816,1.002,0.931,1.041,1.09,0.857,0.891,1.023,1.04,0.925,0.854 +XM_376499,1.045,1.081,0.93,1.021,0.941,0.898,0.928,0.894,1.027,1.105,1.001,1.107,0.953,1.019,1.015,1.157,1.065,1.09,0.982,0.884,0.958,1.131,0.892,0.953,0.944,1.062,0.985,1.017,1.22,0.933,1.02,1.082,1.028,0.963,1.049,1.123,0.974,0.95,0.88,1.032,0.914,0.969,0.94,0.865,0.899,1.096,0.975,1.072,1.061,1.041,0.953,1.052,1.071,0.929 +XM_376519,1.085,1.036,1.154,0.933,1.112,0.902,0.877,1.171,1.358,1.135,0.992,1.12,0.992,1.012,1.547,1.035,1.448,0.986,0.929,0.899,0.963,1.48,0.899,1.346,0.854,0.878,1.181,1.036,0.784,0.91,1.348,1.593,1.314,1.073,0.986,0.795,1.041,1.228,1.028,0.85,1.236,0.927,0.806,0.877,1.136,0.858,1.167,0.979,0.874,1.154,1.048,0.994,0.931,1.003 +XM_376522,0.951,1.073,0.821,0.965,1.054,1.092,0.962,1.02,0.913,1.052,0.973,1.149,1.055,0.83,0.94,0.944,0.994,0.95,0.908,1.059,0.91,1.1,1.001,1.111,0.929,0.934,0.999,1.036,1.052,1.064,0.983,0.891,1.026,1.08,1.157,0.999,1.073,1.036,1.018,0.933,1.029,0.906,0.955,0.932,0.956,1.128,1.029,1.027,1.031,1.059,1.024,0.987,0.94,1.063 +XM_376527,0.968,0.892,0.959,1.076,0.996,0.932,0.955,0.969,0.969,0.865,0.993,1.06,0.872,1.175,0.743,0.99,1.015,1.26,1.141,1.065,1.134,1.139,0.953,0.982,0.98,0.964,1.129,1.169,0.884,1.073,0.986,0.977,0.995,1.058,0.825,0.824,0.922,1.172,1.033,0.941,1.035,1.043,0.873,1.099,1.083,1.104,1.088,1.075,1.04,0.95,1.095,0.957,0.957,0.999 +XM_376533,0.85,1.104,1.056,1.085,1.058,1.064,1.129,0.964,1.015,0.975,1.073,0.937,1.101,0.983,1.014,1.076,1.017,1.044,0.934,1.031,0.888,1.001,0.988,1.055,0.927,0.908,0.99,1.094,0.883,1.058,0.988,1.074,0.997,1.009,0.983,1.03,1.02,0.984,0.974,0.946,1.155,1.169,0.919,0.819,0.879,0.89,1.122,0.964,1.04,0.937,1.112,0.985,0.938,0.898 +XM_376547,0.721,1.172,1.203,0.824,0.968,0.891,0.736,0.731,1.396,1.089,0.773,0.726,0.844,0.951,1.168,1.083,0.965,0.858,0.87,1.026,0.826,0.789,1.264,1.006,0.782,0.786,1.31,0.955,0.7,1.061,1.042,1.132,1.792,1.139,0.754,0.768,0.851,0.805,1.057,1.101,0.97,1.013,0.611,0.974,0.964,0.892,0.96,0.75,1.041,0.902,1.06,0.93,0.87,1.376 +XM_376557,1.013,0.883,1.069,0.979,0.936,1.0,1.009,0.876,1.127,0.924,1.066,0.874,1.028,0.879,1.039,1.053,0.909,1.153,1.084,1.017,0.951,1.063,0.944,1.032,0.992,1.003,1.057,0.949,0.857,1.153,0.991,1.082,1.173,0.993,1.077,1.025,0.97,0.925,0.97,1.085,0.92,0.998,0.878,0.975,1.036,0.991,0.937,0.996,0.985,1.036,0.898,0.946,0.995,0.964 +XM_376571,1.02,0.853,0.927,0.955,1.134,0.982,0.884,0.96,0.945,0.859,0.999,0.986,0.931,1.212,0.999,1.161,0.967,0.873,1.068,0.869,1.045,0.997,1.062,1.015,0.987,1.011,0.936,1.022,1.265,1.023,1.04,0.978,1.108,1.116,1.056,0.973,0.987,0.997,1.043,1.047,0.899,1.119,1.013,0.974,1.001,0.959,1.128,0.967,0.982,1.114,0.929,0.981,1.117,1.012 +XM_376722,0.916,1.037,1.132,1.077,0.82,1.17,0.855,0.669,0.794,0.836,1.323,0.969,0.938,0.986,1.031,1.126,0.9,0.862,0.902,1.306,0.758,0.899,1.389,0.973,1.371,0.891,1.0,0.925,0.995,1.367,0.818,1.213,1.478,1.348,0.791,0.937,1.027,0.866,1.051,1.05,1.011,1.219,0.717,0.859,0.909,1.063,0.899,0.97,0.952,0.795,0.978,0.924,1.173,1.431 +XM_376761,0.666,0.987,0.77,1.666,0.747,1.489,0.678,0.527,0.618,0.583,1.632,0.578,0.621,0.627,1.073,3.609,0.71,0.918,0.777,1.003,0.628,0.637,1.008,0.856,0.816,0.596,0.974,0.622,0.819,1.663,0.655,1.679,1.131,1.535,0.374,0.722,2.142,0.613,1.502,1.701,0.745,1.563,1.08,0.673,0.671,1.609,0.668,0.485,1.653,0.606,1.336,0.997,0.677,1.566 +XM_376776,0.906,1.237,0.807,0.82,1.07,1.153,0.911,0.958,0.899,0.824,1.099,1.014,0.832,0.865,0.979,1.201,0.852,0.908,0.853,1.246,0.84,0.817,1.362,0.945,1.133,0.796,0.922,0.925,0.946,1.217,0.913,1.212,0.847,1.396,0.997,0.95,1.165,0.818,1.128,0.888,0.962,1.539,1.23,0.983,0.905,1.192,0.901,0.952,1.373,1.165,1.154,1.095,1.026,1.087 +XM_376781,0.966,1.018,0.916,1.057,0.963,1.063,0.999,0.872,0.983,1.074,1.004,0.987,1.092,0.865,1.067,1.004,1.013,1.054,0.982,0.934,0.996,0.897,0.983,1.031,1.067,0.95,0.951,1.082,0.884,0.938,1.018,0.905,1.073,0.892,1.098,1.0,0.946,1.049,0.898,1.005,1.008,0.957,0.902,0.965,1.0,1.12,1.044,1.016,1.073,1.024,1.0,1.026,1.127,0.915 +XM_376785,1.122,1.069,0.914,1.016,0.961,1.07,1.158,0.858,0.999,0.953,1.132,0.965,0.931,0.981,1.081,1.004,0.929,1.006,1.147,0.991,1.077,0.902,0.991,0.919,0.952,1.015,0.856,0.945,0.963,0.897,0.85,0.96,1.139,1.002,0.942,0.919,1.098,0.944,0.969,1.082,0.84,1.135,0.917,1.249,0.973,0.953,1.07,0.979,1.013,0.919,0.911,1.082,1.033,1.345 +XM_376791,0.845,0.991,1.086,0.984,1.0,0.879,0.702,0.945,1.086,1.206,1.086,1.155,0.882,0.849,1.011,1.056,1.109,0.954,0.896,0.98,0.82,0.9,1.007,0.995,0.862,0.938,1.057,0.958,1.161,1.109,0.999,1.044,1.012,0.982,1.027,1.134,1.082,0.978,0.93,1.822,0.982,0.83,0.873,1.007,0.906,1.098,0.984,1.017,1.176,1.039,0.932,1.033,1.052,1.54 +XM_376797,0.972,0.889,1.093,0.91,1.0,0.968,1.024,1.117,0.995,0.992,1.137,0.952,0.962,1.054,0.852,1.067,1.036,1.005,1.092,1.039,1.022,1.024,1.084,0.897,1.015,0.99,0.946,1.087,1.106,1.169,1.014,0.906,1.012,0.98,0.92,1.02,1.083,1.016,1.005,1.028,1.168,1.0,0.929,1.016,1.02,1.067,0.953,1.06,0.974,1.013,1.011,0.991,0.913,0.987 +XM_376809,0.908,1.116,1.024,1.009,0.966,0.937,0.965,0.994,1.194,0.939,1.037,1.001,0.973,0.973,1.056,0.877,1.023,1.092,0.89,0.836,0.931,1.002,0.96,0.932,0.866,1.011,1.143,1.01,1.228,1.045,1.037,1.076,0.98,1.018,1.16,0.876,0.986,1.044,0.944,0.893,1.053,1.015,0.922,1.111,0.971,1.064,1.047,0.958,1.054,1.064,0.963,0.944,0.858,1.004 +XM_376814,1.04,0.981,0.904,1.041,0.985,0.988,1.021,1.115,1.093,0.969,1.146,0.986,1.091,0.897,0.921,1.06,0.979,1.125,1.134,1.068,0.937,0.806,0.907,1.019,1.021,1.021,0.863,0.949,1.2,0.985,0.845,0.889,1.038,1.112,1.061,1.183,0.996,0.885,0.856,1.036,0.936,1.028,1.372,0.948,0.96,0.987,0.986,1.088,1.199,1.096,0.992,0.928,0.986,1.005 +XM_376821,1.207,1.092,1.016,0.995,1.175,0.97,0.812,1.17,0.942,1.123,1.069,0.891,1.119,1.139,1.129,1.097,0.883,0.958,0.815,0.965,1.087,1.012,0.924,0.935,0.909,1.002,0.963,1.192,1.069,0.968,0.754,1.061,1.109,0.926,1.071,0.972,0.964,0.936,1.089,0.878,1.026,1.098,1.014,1.069,1.02,1.045,1.09,0.972,0.987,1.168,1.01,0.929,0.968,0.949 +XM_376824,0.916,0.994,0.851,1.191,1.128,0.912,1.05,1.125,0.9,1.082,1.072,0.985,0.954,1.027,0.925,0.956,0.962,1.048,0.925,0.981,0.902,1.115,1.027,1.053,1.081,0.768,0.972,0.991,1.087,1.058,1.03,0.917,0.905,0.973,1.057,1.087,1.019,0.969,0.902,1.046,1.046,0.973,1.098,1.021,1.122,1.04,1.09,0.997,0.934,1.071,0.938,0.995,1.111,1.018 +XM_376829,0.902,1.052,0.982,0.953,1.137,1.022,1.0,0.976,0.871,0.959,0.898,1.007,0.855,1.356,0.953,1.017,0.985,1.03,1.014,0.931,1.002,0.98,1.053,1.037,1.034,0.978,1.014,1.085,0.922,1.007,1.093,1.06,0.944,0.9,1.018,1.001,1.03,0.968,1.021,1.076,0.898,1.016,1.065,0.976,1.036,1.071,1.112,1.015,1.019,0.991,1.023,0.958,0.961,0.974 +XM_376830,1.079,0.996,0.941,0.905,1.038,0.951,1.168,1.058,1.142,1.024,0.892,1.2,1.169,1.084,1.135,0.911,1.105,1.052,1.012,0.9,0.953,1.146,0.911,1.108,1.114,0.978,1.111,0.999,1.359,1.032,1.069,0.996,0.969,1.049,1.052,0.91,1.025,0.793,1.087,0.976,1.057,1.006,1.369,0.953,1.121,1.113,1.0,1.024,1.258,0.979,1.016,1.031,0.955,0.962 +XM_376833,0.655,0.808,0.948,0.921,0.715,1.466,0.685,0.589,1.24,0.941,1.515,1.158,0.787,0.719,1.015,1.82,0.85,0.745,0.95,0.873,0.524,0.689,1.331,1.411,0.685,0.728,1.409,0.847,0.536,1.254,0.932,1.05,1.847,1.677,0.103,0.806,1.451,0.812,1.395,0.884,1.055,1.139,0.779,2.191,1.123,1.106,0.956,0.642,1.196,0.612,1.34,1.795,0.863,3.395 +XM_376888,1.084,1.011,1.226,0.875,1.003,1.124,0.991,0.894,0.879,0.988,0.906,1.032,1.043,0.938,1.027,1.355,1.289,0.946,1.058,1.056,0.941,1.409,0.968,1.282,0.964,0.907,1.254,0.737,0.811,1.12,1.274,0.971,1.135,0.949,0.972,0.774,0.85,1.25,1.342,1.022,0.99,0.791,0.72,0.912,1.085,0.983,0.97,1.008,1.015,1.083,1.157,1.125,0.909,0.838 +XM_376898,1.008,1.013,1.05,0.971,0.91,1.032,1.035,1.018,1.012,1.001,1.015,1.067,0.993,0.903,0.836,0.902,0.961,1.006,1.0,1.003,0.87,0.93,0.962,1.057,1.07,0.962,0.92,0.985,0.981,0.965,1.025,0.998,0.972,1.029,1.021,0.99,1.001,0.921,1.028,1.023,1.0,1.03,0.831,0.958,1.041,0.995,0.895,0.936,0.997,1.119,1.013,0.919,0.919,0.96 +XM_376899,0.287,2.331,0.15,1.059,0.201,2.032,1.137,0.218,0.476,0.172,2.056,0.222,0.369,0.256,1.433,2.121,0.145,1.086,0.192,2.336,0.186,0.329,2.3,0.277,1.183,0.278,0.135,0.349,0.122,2.531,0.346,0.975,1.98,2.816,0.138,1.469,1.791,0.23,2.255,0.621,0.258,1.901,0.137,1.545,0.209,1.838,0.489,0.27,0.905,0.138,2.388,0.41,0.142,0.422 +XM_376902,0.873,0.994,1.134,0.863,0.966,0.96,1.072,0.885,1.056,1.089,0.903,0.665,0.822,0.911,1.08,1.428,0.9,1.01,1.042,1.039,0.867,0.825,1.057,0.923,0.843,0.833,0.91,0.944,1.009,1.14,0.999,1.366,1.631,1.319,0.7,0.932,1.141,0.872,1.069,1.135,1.102,0.958,1.033,1.02,1.006,0.899,0.874,0.807,1.009,1.0,1.019,1.027,1.306,1.179 +XM_376903,0.899,0.904,1.3,0.862,1.216,1.107,0.587,0.886,1.168,0.945,0.799,0.766,0.742,0.912,1.018,1.004,1.189,0.979,1.349,0.872,0.837,0.982,1.029,1.033,0.737,1.034,1.248,0.999,0.722,0.961,0.933,1.319,1.615,0.934,0.848,0.716,0.859,1.235,1.327,0.889,1.024,0.982,0.945,1.248,1.057,1.006,0.877,0.92,0.931,0.941,0.961,0.927,1.113,1.465 +XM_376905,1.097,0.954,1.439,0.839,1.474,1.101,0.744,1.669,1.469,0.935,0.936,1.063,1.014,0.949,1.156,1.41,1.004,1.021,1.25,1.082,0.782,1.434,1.002,1.233,0.857,0.789,1.274,1.123,0.651,0.943,1.371,1.071,1.263,0.996,1.626,0.827,0.937,1.737,1.022,0.836,1.03,1.057,0.603,0.805,1.279,0.892,0.987,0.998,0.988,0.942,0.991,0.842,0.723,1.003 +XM_376917,0.802,0.808,1.172,0.841,0.919,0.933,0.635,0.357,1.133,0.967,1.135,0.605,0.508,0.82,1.065,1.41,0.666,0.797,0.997,1.086,0.511,0.533,1.179,0.869,0.594,0.746,1.202,0.907,0.374,1.002,0.933,1.301,1.8,1.27,0.258,0.718,1.055,0.766,1.259,0.997,0.964,1.123,0.829,1.289,1.099,1.175,0.715,0.635,1.057,0.856,1.194,0.865,1.044,2.159 +XM_376924,0.973,0.881,0.956,0.953,1.086,1.019,0.95,0.874,1.168,0.95,1.024,1.002,1.02,0.965,0.886,0.864,0.93,0.885,0.991,1.013,1.087,0.952,0.898,1.031,1.096,0.834,0.872,0.892,0.752,0.865,0.925,1.177,1.097,0.952,1.106,0.998,0.913,0.862,1.094,1.152,0.972,1.086,1.161,0.919,1.043,0.84,0.913,0.835,0.944,0.83,1.038,0.786,1.178,0.858 +XM_376925,0.823,1.364,1.028,0.885,1.021,0.894,1.015,1.027,1.037,1.145,0.952,1.029,0.984,0.786,0.93,1.077,0.933,1.025,0.992,1.203,0.944,0.901,0.984,1.013,0.846,0.906,1.158,0.897,0.759,0.974,0.99,1.358,1.276,0.915,0.839,2.128,0.837,1.007,1.185,1.279,0.983,1.381,0.927,1.172,1.519,0.81,1.007,0.856,0.937,1.001,0.916,1.034,1.139,1.233 +XM_376930,0.91,0.996,0.898,0.959,1.002,0.991,1.229,0.823,1.03,0.861,0.902,0.998,0.955,1.11,0.992,1.18,1.041,1.065,0.879,1.046,0.989,1.012,1.118,0.983,0.976,0.906,0.935,0.835,1.028,0.944,0.883,1.105,0.926,1.066,1.059,0.938,0.957,0.953,1.088,0.786,1.041,1.078,0.98,0.938,1.104,0.896,0.923,1.002,1.1,0.998,1.109,1.022,0.832,1.021 +XM_376931,0.922,1.092,0.995,0.882,0.988,0.938,0.967,0.916,1.108,1.014,1.072,0.96,0.896,0.908,0.91,0.909,0.92,0.913,0.904,1.046,0.902,1.048,0.892,1.119,1.031,1.209,1.147,1.049,1.438,1.114,0.99,1.061,0.804,1.076,0.821,0.905,1.007,1.059,1.152,1.061,1.005,0.999,1.225,0.98,1.046,0.895,1.08,1.017,0.926,0.917,1.114,0.956,0.804,1.001 +XM_376939,0.892,1.011,1.087,0.902,0.977,1.134,1.123,0.955,0.891,0.956,1.016,0.91,1.115,1.078,0.892,0.854,0.856,0.876,0.928,1.079,1.315,1.116,1.182,1.084,0.993,1.168,1.014,0.867,1.185,1.027,1.173,0.866,0.778,1.132,0.855,1.014,1.017,0.784,0.889,1.164,1.018,0.895,0.884,1.06,0.988,1.0,1.057,0.854,0.967,1.092,0.907,0.914,0.835,1.116 +XM_376950,1.092,1.06,1.071,0.976,0.847,0.994,1.111,0.93,1.078,0.976,1.054,1.185,1.052,0.874,0.879,0.941,0.914,1.054,0.918,1.002,1.038,1.029,0.975,0.927,1.069,1.017,1.04,1.172,1.024,1.05,0.919,1.09,1.119,1.202,1.249,1.027,0.944,1.023,1.024,1.03,1.033,0.943,0.927,1.106,1.028,0.984,1.046,0.834,1.114,1.078,0.915,1.175,0.957,0.958 +XM_376965,1.041,1.002,0.93,1.046,1.033,1.12,1.447,0.875,0.952,1.196,1.052,1.007,1.007,1.012,0.901,1.005,1.0,1.092,0.89,1.011,1.11,0.95,0.961,1.08,0.862,1.146,1.003,1.018,0.85,1.018,1.05,1.045,1.001,0.925,0.92,1.073,1.031,1.014,1.011,1.005,1.0,0.938,0.906,0.965,0.943,0.978,0.93,1.009,0.939,0.939,1.018,0.905,1.02,1.07 +XM_376986,1.065,0.957,0.932,1.124,1.088,0.943,0.838,1.089,1.079,0.89,1.006,1.086,0.984,0.982,1.08,1.032,1.044,0.911,1.163,1.009,1.097,1.018,1.123,1.018,0.986,1.011,1.067,1.049,1.248,0.931,0.912,0.933,0.855,0.916,0.971,1.012,0.949,0.996,0.957,1.044,0.931,0.909,1.044,1.092,0.931,1.021,1.054,1.046,1.022,1.051,0.887,0.929,1.056,0.823 +XM_377024,0.946,1.05,0.949,0.939,1.041,0.948,0.8,0.903,0.873,0.972,1.002,1.013,0.991,0.869,1.046,1.141,0.986,0.894,0.789,1.082,1.06,0.86,1.052,0.953,1.201,1.087,1.068,1.0,1.031,0.971,1.001,0.922,0.944,1.128,1.081,0.911,1.029,0.887,1.018,1.032,0.912,0.934,0.812,0.971,0.972,1.008,0.895,1.016,0.949,0.912,1.052,0.829,1.026,1.001 +XM_377027,0.698,0.894,1.233,0.678,1.017,1.508,1.135,1.069,1.078,0.92,0.745,1.087,1.036,0.753,0.942,1.582,1.161,0.655,0.726,1.045,0.564,1.242,1.027,1.335,0.726,0.637,1.74,0.898,0.398,1.259,1.364,1.179,2.34,1.186,0.686,0.524,0.817,1.501,1.836,0.82,1.123,1.119,0.419,0.546,0.986,0.831,0.909,0.961,1.403,1.022,1.172,0.728,0.474,1.82 +XM_377031,0.997,1.122,0.851,1.003,1.066,1.143,1.22,0.936,0.953,0.884,0.942,1.04,0.96,1.059,0.983,1.037,1.037,1.097,0.971,1.051,1.142,1.098,0.881,0.915,0.927,0.978,0.805,1.003,1.343,0.949,0.952,1.044,1.172,0.886,1.066,0.969,1.018,0.962,0.988,0.916,1.159,1.038,1.175,1.042,0.927,1.028,0.993,1.026,0.921,1.143,0.992,0.756,0.98,0.985 +XM_377060,0.724,1.231,1.185,0.591,0.946,0.964,0.526,0.59,1.193,1.042,1.059,1.058,0.718,0.716,0.847,1.311,0.973,0.917,1.165,0.893,0.565,0.766,1.259,1.199,0.57,0.841,1.769,0.939,0.374,1.067,0.943,1.348,1.116,1.124,0.178,0.761,1.14,1.11,1.228,0.73,1.316,1.152,0.721,0.602,1.032,0.936,1.003,0.748,0.711,0.764,0.933,1.309,0.963,2.029 +XM_377076,0.994,1.107,1.0,1.058,0.993,0.965,0.894,1.005,1.035,0.917,0.909,0.981,1.068,1.165,0.915,0.898,0.912,0.936,0.998,0.963,1.086,1.018,1.025,1.207,1.009,0.991,0.993,1.06,1.028,0.99,0.981,1.168,0.851,1.014,0.868,0.919,1.027,1.053,1.003,1.061,0.972,0.876,1.013,0.969,1.023,1.042,1.18,0.897,0.955,1.06,0.967,0.846,1.093,0.965 +XM_377129,0.9,1.012,1.097,1.074,0.952,0.986,0.916,0.93,0.886,1.099,0.979,0.901,1.06,1.11,1.093,0.952,0.908,1.011,0.813,0.774,0.804,1.009,1.027,0.936,0.829,1.034,0.874,1.275,1.066,1.06,1.158,1.201,1.076,0.839,0.972,1.043,0.815,1.059,1.089,1.088,0.984,0.925,0.9,0.866,1.148,0.972,0.985,0.959,1.022,1.044,0.962,1.116,0.887,0.896 +XM_377142,1.067,1.045,0.963,1.019,0.926,1.035,0.792,1.032,0.982,0.999,0.949,1.054,0.895,1.066,0.864,0.961,1.028,0.988,0.908,0.95,1.001,1.059,0.908,0.958,1.056,1.057,1.018,0.999,1.506,1.018,1.013,1.006,1.001,1.096,0.971,0.94,1.007,1.183,1.063,1.037,0.979,0.987,1.3,0.95,0.98,1.021,0.95,1.071,1.017,0.983,1.087,1.026,0.987,1.008 +XM_377159,0.94,1.016,0.915,1.138,0.901,1.07,0.94,1.186,1.024,0.981,0.898,1.01,1.039,1.198,1.143,1.125,0.997,1.084,1.041,0.944,0.957,1.016,1.107,1.046,1.002,0.704,0.824,1.092,0.685,0.867,1.171,0.941,0.972,0.941,1.032,1.152,0.99,1.084,1.086,0.974,0.984,0.877,1.062,0.995,1.117,1.255,0.851,0.892,1.134,1.036,0.827,0.946,1.028,0.689 +XM_377240,0.538,0.647,1.918,0.494,1.472,1.736,0.723,1.481,1.387,1.092,0.441,1.455,1.518,0.592,1.07,2.078,1.637,1.137,0.705,0.967,0.239,2.073,1.44,2.195,0.336,0.372,2.794,0.927,0.0509,1.308,1.531,1.543,2.894,1.124,0.217,0.275,0.832,1.85,2.207,0.804,1.333,0.767,0.0691,0.502,1.442,0.851,1.414,0.985,1.594,1.019,1.326,0.843,0.293,1.692 +XM_377262,0.934,0.907,0.95,0.921,0.975,0.947,0.892,1.007,0.837,0.995,1.182,1.057,0.823,1.017,1.127,1.034,0.923,1.193,1.056,1.093,1.144,1.052,1.011,0.996,1.044,1.104,0.895,1.029,1.167,1.053,0.987,0.973,1.014,0.814,0.973,0.92,0.977,1.023,0.968,1.033,0.985,0.823,0.941,0.872,0.987,1.132,0.956,0.864,0.8,1.106,1.053,1.093,0.957,0.91 +XM_377337,1.092,0.892,1.093,1.031,0.974,0.947,1.161,1.023,1.014,0.997,1.065,0.913,0.948,0.927,0.845,1.007,0.921,0.99,0.981,1.085,1.025,0.819,1.029,0.993,1.04,0.923,1.004,0.986,1.152,1.099,1.017,0.93,1.011,1.003,0.947,0.931,0.963,0.963,1.142,1.027,1.05,0.968,1.015,0.925,1.03,1.061,0.972,1.149,1.106,1.107,0.972,0.98,1.066,1.06 +XM_377338,0.961,0.906,1.075,1.016,1.014,1.018,0.913,0.803,0.892,1.042,1.009,0.847,0.82,0.773,0.748,0.963,0.931,0.98,1.035,0.996,0.956,1.058,0.927,1.043,0.859,1.094,1.03,0.884,0.724,1.129,0.793,0.958,0.88,1.04,1.026,0.808,1.044,0.919,1.06,0.916,1.095,0.884,0.868,0.932,0.989,0.976,1.259,0.937,1.159,0.897,1.034,0.958,0.878,1.012 +XM_377343,0.936,0.995,1.097,0.998,0.926,1.09,0.949,0.961,0.941,1.015,1.002,1.184,0.984,1.019,0.903,1.016,1.023,1.03,0.784,1.037,1.103,0.97,0.988,1.032,0.995,0.896,1.041,0.936,0.959,0.924,1.016,1.055,1.221,0.983,1.186,1.033,0.932,1.065,0.916,0.962,0.844,0.969,1.108,1.021,1.081,1.017,0.923,0.948,1.129,0.93,1.087,1.006,0.915,1.108 +XM_377355,1.065,1.114,1.082,0.957,1.096,0.928,1.074,0.971,0.824,0.946,0.905,0.973,0.956,1.103,1.021,0.988,1.024,1.269,0.883,1.07,0.985,1.013,1.02,0.842,0.974,0.954,1.005,1.069,0.842,1.102,1.129,0.971,0.977,0.971,0.916,1.054,0.892,1.019,0.987,0.97,0.892,1.025,0.981,1.013,0.927,0.981,0.915,0.966,1.011,0.969,0.999,0.887,0.988,1.023 +XM_377377,0.993,1.069,1.083,1.217,0.884,1.049,1.052,1.01,1.002,0.998,1.004,1.088,0.971,0.907,1.109,1.074,0.971,1.121,1.054,0.997,0.929,1.034,1.08,1.037,0.98,0.961,1.015,0.919,1.256,0.972,0.973,1.009,1.033,0.885,1.036,1.089,0.96,0.964,1.113,0.866,0.973,1.072,0.984,1.068,1.142,0.893,1.026,0.921,0.982,1.13,0.97,1.041,1.074,1.174 +XM_377476,1.209,0.966,1.125,1.116,1.35,0.881,1.049,1.086,1.296,1.041,0.867,1.066,1.018,1.137,0.899,1.08,1.172,1.007,1.027,0.906,1.084,0.92,1.173,1.173,0.866,1.336,0.963,1.087,1.594,0.895,1.164,0.855,0.995,0.969,1.549,1.025,0.903,1.174,0.982,0.946,1.015,0.866,0.933,1.058,1.033,0.861,1.094,1.259,0.877,0.989,0.997,0.871,1.062,1.021 +XM_377488,0.951,0.977,0.942,0.952,0.919,1.06,0.95,1.141,1.068,1.019,1.285,1.007,0.96,0.811,0.906,1.018,1.001,0.949,1.081,0.981,0.913,0.904,0.804,1.003,0.983,1.045,1.146,1.032,0.954,1.085,0.928,1.131,0.958,1.097,0.901,0.983,0.988,1.084,1.025,1.106,0.914,0.904,1.125,1.09,0.93,0.937,0.946,1.004,1.045,0.936,1.157,0.888,0.965,0.865 +XM_377506,1.121,0.852,0.941,0.928,1.023,0.969,0.895,1.148,1.074,1.106,1.233,1.095,1.027,0.929,0.98,0.923,0.922,0.975,1.057,0.994,0.994,0.907,0.98,0.943,1.028,0.989,1.065,0.936,0.76,0.972,0.923,1.095,0.799,0.961,1.0,0.96,1.031,0.936,0.931,1.08,0.924,0.976,0.929,1.11,1.019,0.983,1.149,1.078,0.99,1.128,1.0,1.071,1.053,0.864 +XM_377537,0.994,1.054,1.022,0.965,1.063,1.03,1.044,1.098,1.035,0.887,1.005,1.015,0.99,1.066,1.031,0.966,0.96,1.145,1.045,1.028,1.023,0.919,0.959,0.904,0.969,1.141,1.175,0.997,1.014,1.065,1.026,0.978,0.817,1.049,1.107,0.982,0.964,1.049,0.965,1.109,1.029,1.002,1.019,0.98,1.002,0.997,0.865,1.078,1.03,0.963,0.977,0.92,0.92,0.957 +XM_377538,1.083,1.07,1.017,0.982,0.882,1.076,0.799,1.003,0.999,0.926,0.997,0.989,1.055,1.107,0.967,1.008,0.939,0.929,1.12,0.973,1.001,1.171,1.013,1.025,1.06,1.046,1.036,0.95,0.989,0.802,0.918,0.988,0.84,1.09,1.061,0.923,0.941,0.99,0.947,0.961,1.068,1.008,0.854,1.032,0.865,1.002,1.024,0.952,1.027,0.961,0.931,0.909,1.009,0.919 +XM_377553,1.064,0.958,0.962,0.875,0.986,0.98,1.011,1.023,1.01,0.948,1.168,1.141,0.938,1.027,1.03,0.837,1.001,1.263,0.856,1.06,0.869,1.18,1.129,0.961,0.92,0.956,1.091,0.912,1.146,0.905,0.86,1.157,1.19,0.931,1.062,0.909,1.0,0.945,1.01,1.13,1.087,1.118,1.408,1.037,0.942,1.027,1.063,1.03,0.948,1.065,0.993,0.885,1.002,0.978 +XM_377554,1.118,1.127,0.968,1.07,0.804,1.069,1.308,1.048,1.094,1.038,1.042,1.102,0.984,0.865,0.952,1.043,0.952,1.148,0.936,0.975,1.217,0.989,0.929,1.018,0.842,1.022,0.963,0.909,0.927,1.025,0.929,0.943,0.882,0.987,1.123,1.098,1.137,0.96,1.044,1.01,0.918,0.988,1.001,1.065,0.989,0.926,1.112,1.071,0.871,1.105,1.013,1.222,1.2,0.957 +XM_377566,0.925,1.101,0.99,0.874,1.009,1.012,1.273,0.877,0.925,1.155,0.863,0.984,1.005,0.948,0.835,1.001,1.222,0.971,0.843,0.924,0.79,0.9,0.938,0.972,0.9,1.11,1.132,1.02,0.841,1.142,0.812,1.216,1.059,1.063,1.023,0.882,1.018,0.93,1.123,1.12,1.141,0.942,1.071,0.901,1.127,1.003,1.123,1.011,0.936,0.951,0.987,0.984,0.972,0.936 +XM_377618,1.1,1.007,1.01,0.916,0.901,0.96,1.03,0.962,1.005,1.031,1.072,1.067,1.063,1.207,0.992,1.116,0.984,1.047,0.999,1.016,0.859,1.014,0.892,1.006,1.048,1.017,0.986,0.998,1.014,0.908,1.04,0.933,0.908,1.12,0.962,0.996,1.016,0.929,0.994,0.999,1.038,1.071,1.064,1.002,1.001,1.033,0.981,1.136,1.063,0.881,0.989,1.034,1.076,1.047 +XM_377633,0.971,1.032,1.053,1.022,0.914,1.033,0.951,1.071,1.059,1.038,0.9,1.038,0.841,0.915,0.757,0.949,0.924,0.915,0.83,1.066,0.953,0.945,0.837,0.915,0.959,1.039,0.999,1.038,0.899,1.018,1.068,0.97,1.073,0.992,1.035,0.955,1.074,1.055,0.928,1.151,0.984,0.98,1.058,1.006,1.022,1.015,0.928,0.896,1.019,1.024,0.984,0.921,0.894,0.969 +XM_377661,1.024,0.956,1.004,0.998,1.182,0.99,1.067,0.985,0.945,1.122,1.09,0.989,1.03,0.986,1.179,1.103,1.039,1.035,1.085,1.144,0.99,1.099,0.915,0.93,1.047,1.091,1.057,0.901,1.056,0.982,0.987,1.027,0.988,1.034,1.029,1.017,1.072,1.039,0.955,1.009,1.033,0.919,1.015,1.028,0.959,0.947,0.982,0.888,0.943,0.912,0.953,0.992,1.01,0.943 +XM_377662,0.957,1.0,1.003,0.952,0.996,1.042,1.089,1.026,1.105,1.018,1.061,1.0,1.069,1.154,1.411,1.015,1.125,1.026,0.859,0.857,1.006,1.028,1.006,1.043,0.994,0.863,1.007,1.11,0.906,0.951,1.197,0.986,0.959,1.089,0.991,0.951,1.048,1.017,0.982,0.925,1.017,0.937,0.867,0.86,1.123,1.077,0.939,1.006,1.302,0.964,0.96,0.97,1.028,1.073 +XM_377663,1.027,0.958,1.019,0.927,0.899,0.969,1.23,1.047,0.979,0.892,1.006,1.043,0.966,0.978,1.128,1.012,1.026,0.921,1.15,0.952,0.972,1.102,1.058,0.906,1.03,1.078,0.942,0.994,0.962,0.957,0.921,0.925,0.974,1.036,1.041,1.022,0.999,0.903,0.981,1.089,0.975,1.07,1.023,0.965,0.972,0.915,1.061,1.101,1.081,0.946,0.963,1.058,0.98,1.028 +XM_377665,1.053,0.963,0.981,1.018,1.0,1.041,0.925,0.974,1.083,0.991,0.961,0.961,0.829,0.898,0.991,0.961,1.015,0.926,0.983,1.047,1.079,0.959,0.949,1.006,1.023,1.096,0.998,0.924,1.097,1.065,0.978,0.931,0.979,1.136,1.01,1.061,0.901,1.038,1.096,1.125,0.873,0.972,1.196,1.032,0.995,1.002,1.252,1.01,1.064,1.057,1.124,1.013,0.991,0.761 +XM_377666,1.033,1.042,0.913,1.12,1.026,1.029,0.954,1.232,0.936,1.095,0.977,0.942,0.865,1.273,0.964,0.989,0.963,1.012,1.066,0.882,1.016,1.026,0.965,1.01,1.042,0.9,0.919,0.922,1.146,1.087,0.945,0.963,1.034,0.972,1.064,0.786,0.992,0.991,0.971,0.924,1.003,0.993,1.045,1.107,0.999,0.962,0.989,1.019,0.958,1.083,0.927,1.033,0.964,1.043 +XM_377687,1.016,1.033,1.027,0.881,1.019,1.068,0.958,0.86,1.166,0.987,0.867,1.0,1.028,0.982,0.896,0.995,1.01,0.974,0.884,1.012,0.993,0.994,0.873,1.02,1.16,1.016,1.102,1.223,1.155,1.034,0.957,1.046,0.881,0.858,0.98,0.954,1.028,1.073,1.031,0.828,1.005,0.937,1.037,1.081,1.028,1.003,1.065,1.025,1.047,1.056,0.893,0.873,1.019,0.952 +XM_377696,0.977,1.056,1.08,1.086,1.132,1.027,1.065,0.97,0.957,0.99,0.979,0.987,0.893,1.085,1.152,0.938,0.936,1.075,0.915,1.052,0.878,1.136,0.892,1.123,1.054,1.031,0.967,1.013,0.985,0.989,1.066,1.082,0.946,0.923,1.044,1.017,1.083,1.005,1.108,1.066,1.169,1.001,0.976,0.98,0.979,1.002,1.024,1.098,0.913,0.947,1.031,0.961,1.044,1.17 +XM_377720,1.116,1.046,1.199,0.856,0.992,1.088,1.096,0.955,1.04,0.963,0.999,1.04,1.171,0.981,0.865,0.999,1.138,0.956,1.013,0.9,0.961,1.121,1.011,0.899,0.901,1.113,1.237,0.962,0.763,1.026,0.846,0.972,0.926,1.191,0.847,1.025,0.969,1.106,0.958,1.018,0.952,1.398,1.156,0.935,1.005,0.902,0.856,1.093,0.869,0.989,1.05,0.909,1.095,0.897 +XM_377742,0.93,0.944,1.026,1.272,0.992,1.005,1.013,0.918,1.061,0.992,0.808,1.054,0.957,1.061,1.047,0.945,0.99,0.936,0.975,1.037,0.978,0.916,0.889,0.907,1.019,0.995,0.889,0.94,0.95,1.079,1.097,1.115,1.025,0.966,1.018,0.926,0.986,1.035,0.982,0.885,1.008,1.05,0.87,0.962,1.081,0.88,1.029,1.087,1.069,1.046,1.071,0.962,1.079,0.968 +XM_377754,0.967,0.885,1.0,0.841,0.925,1.015,1.008,1.193,0.983,0.944,0.936,1.018,1.032,0.976,1.05,0.874,1.124,0.93,1.049,0.889,0.94,1.037,1.044,0.991,0.999,1.009,1.056,0.891,1.016,1.036,1.004,1.113,0.891,1.079,0.995,1.008,1.002,1.0,0.989,1.071,0.988,0.884,0.999,0.927,1.082,0.908,1.093,1.081,0.883,1.071,0.919,1.016,1.071,0.948 +XM_377761,0.587,0.763,2.142,0.348,1.219,1.772,0.652,1.48,1.298,0.989,0.768,1.497,1.082,0.622,1.201,2.084,1.217,0.811,0.76,1.178,0.311,1.645,1.248,1.896,0.34,0.336,2.272,1.138,0.352,1.182,2.005,1.421,3.37,1.272,0.222,0.275,0.73,2.323,1.528,1.072,1.264,1.165,0.45,0.392,1.011,0.77,1.307,0.809,1.364,0.773,1.195,0.61,0.432,1.648 +XM_377774,1.149,1.097,0.893,0.959,0.981,1.03,0.83,0.911,1.062,0.924,0.928,1.025,0.979,0.91,0.859,0.919,1.012,1.076,1.042,1.044,1.046,1.139,0.966,0.957,1.116,1.035,0.965,1.095,0.748,0.939,0.954,1.149,0.96,0.949,1.1,0.935,0.962,1.245,1.037,0.997,1.097,1.027,0.897,1.045,1.04,0.978,0.978,1.025,1.162,1.057,1.027,1.137,1.049,1.07 +XM_377828,0.979,1.002,1.004,1.039,0.862,0.985,0.858,0.956,0.975,0.991,0.951,0.934,1.096,1.052,1.017,1.004,1.092,0.919,1.023,1.057,1.093,0.87,1.011,1.116,1.029,1.046,1.034,1.002,0.912,1.042,1.03,1.012,0.931,1.013,1.022,1.108,1.075,0.987,0.976,1.014,1.06,0.887,0.997,1.169,0.974,0.921,1.046,1.03,0.851,1.052,0.963,0.995,1.086,0.907 +XM_377841,0.657,0.989,1.723,0.552,1.295,1.001,0.712,0.885,1.094,1.202,0.703,1.738,1.53,0.414,0.806,1.511,1.069,1.134,0.613,1.003,0.159,1.344,1.403,1.485,0.619,0.551,1.121,1.323,0.263,1.01,1.172,1.372,0.889,1.074,0.21,0.665,0.721,1.557,1.064,1.708,1.141,1.488,0.573,0.421,1.334,0.609,1.165,1.065,1.129,0.947,1.136,0.999,0.426,1.362 +XM_377904,0.959,0.9,1.094,1.057,1.134,1.052,0.819,0.944,0.991,0.953,0.923,0.942,0.916,0.919,0.937,1.155,1.192,1.021,0.973,0.95,0.849,0.861,0.964,1.057,1.033,0.88,0.973,0.903,0.814,1.001,1.121,1.138,1.111,0.93,1.091,0.917,1.046,0.978,1.443,1.068,1.01,0.964,0.885,1.027,1.12,1.083,0.997,0.954,1.083,0.98,1.009,0.95,0.987,1.083 +XM_377959,1.057,1.037,0.953,0.992,1.059,1.013,1.023,0.992,1.043,1.059,1.26,1.023,0.9,1.057,1.064,1.0,1.045,0.956,1.106,0.973,0.996,0.963,0.968,1.008,0.963,1.008,0.918,1.103,0.871,1.034,1.092,1.052,1.061,0.91,1.129,0.957,0.893,1.043,0.872,0.986,1.025,0.861,0.969,1.13,0.911,0.98,0.969,1.011,0.975,0.999,1.065,1.067,1.0,0.957 +XM_378033,0.99,0.874,1.076,0.991,1.038,1.002,0.894,0.925,1.01,1.053,1.131,0.914,0.891,0.973,1.102,1.08,1.023,1.034,1.056,0.97,1.066,0.954,1.046,0.857,0.946,1.077,1.001,1.064,1.161,0.99,0.981,1.016,0.884,1.03,0.954,0.969,0.929,1.048,1.028,0.904,0.939,0.948,1.06,1.109,1.073,0.986,0.986,0.987,0.965,1.042,1.104,1.007,0.942,1.022 +XM_378035,1.0,1.176,1.067,1.083,1.036,1.066,0.907,0.919,0.954,1.027,1.006,1.161,0.918,0.778,0.963,0.909,1.019,1.015,1.075,1.044,0.96,1.233,0.994,1.097,0.992,0.991,0.882,0.892,0.763,0.957,1.034,0.98,0.987,1.093,1.0,1.115,0.976,0.989,1.139,0.925,1.115,0.923,0.961,1.045,1.045,0.991,1.051,0.946,0.977,0.926,1.035,0.838,0.909,1.089 +XM_378044,0.955,0.971,0.911,1.067,0.89,1.146,0.605,0.702,1.006,0.899,0.983,0.82,0.774,0.983,0.946,1.065,0.996,1.03,1.209,0.956,0.872,1.219,1.014,0.931,0.987,1.307,0.987,0.854,0.678,1.099,0.897,1.089,1.033,1.243,0.849,1.056,1.055,1.252,1.336,1.194,0.729,1.047,0.718,1.401,0.896,1.004,0.842,1.181,0.835,1.068,0.932,0.77,0.998,1.022 +XM_378063,0.956,1.077,1.04,0.94,1.047,1.001,1.03,1.368,1.04,1.008,1.044,0.984,1.019,1.082,0.997,1.028,1.037,1.164,0.958,0.868,0.927,1.153,1.256,1.008,1.147,1.111,1.071,1.1,1.066,1.085,1.066,0.906,1.044,0.974,0.955,0.994,0.979,0.97,1.053,0.921,1.206,0.993,0.892,1.026,1.015,0.987,0.997,1.008,0.886,0.977,1.002,0.974,1.134,0.904 +XM_378080,0.934,1.0,1.03,0.979,1.11,0.94,1.235,1.133,1.084,1.011,0.924,1.029,1.088,0.851,0.891,1.003,0.95,0.913,0.904,1.044,0.948,0.906,0.951,0.967,0.977,0.988,0.997,1.047,0.981,1.025,1.1,0.979,1.047,0.988,0.909,1.061,1.071,0.938,0.921,0.928,0.923,0.991,1.165,1.031,1.134,0.914,0.975,0.989,1.099,0.866,0.942,0.928,0.931,1.009 +XM_378089,1.092,0.876,0.941,0.99,0.993,0.936,0.995,0.947,1.019,1.038,0.98,1.02,0.995,1.061,0.92,0.989,0.986,1.092,0.988,0.98,1.037,0.839,1.044,0.984,0.933,0.999,0.985,1.015,1.06,1.057,0.919,0.944,0.901,1.041,1.013,1.1,1.061,0.988,1.265,1.014,1.254,0.952,1.0,0.841,1.187,1.01,0.861,0.921,1.081,1.036,1.057,0.905,0.901,0.888 +XM_378090,1.048,1.024,1.141,0.994,1.21,1.013,0.87,1.035,1.08,1.001,0.949,1.016,1.074,0.878,0.923,1.18,0.982,0.843,0.871,1.029,1.131,1.103,0.955,0.983,1.062,1.071,1.056,0.837,0.879,0.979,1.016,1.047,1.151,0.914,1.049,0.989,1.25,1.137,1.237,0.748,0.937,1.02,0.863,0.978,0.853,1.108,1.134,1.02,1.043,0.918,0.965,1.004,0.926,1.185 +XM_378125,1.052,0.881,1.098,0.997,1.143,0.996,0.899,1.012,1.047,1.181,0.809,1.04,1.051,1.026,1.107,1.015,0.964,1.02,1.037,1.08,1.118,0.896,0.91,1.084,0.993,1.029,1.1,1.053,0.842,1.071,1.137,1.009,0.94,0.909,0.999,1.019,0.936,0.976,0.923,0.939,1.08,0.872,0.903,1.098,1.019,0.934,1.007,1.01,0.92,1.062,0.967,0.966,0.93,1.012 +XM_378173,0.884,1.648,1.557,0.814,1.014,0.84,0.772,0.682,1.083,0.854,0.742,0.611,0.679,0.966,0.95,0.836,0.924,0.985,1.067,1.17,0.731,0.837,1.252,0.825,1.252,0.902,1.728,0.977,0.909,0.84,1.319,1.35,1.327,1.441,0.642,0.74,0.846,0.828,0.914,1.555,1.294,1.267,0.621,0.957,1.296,0.658,0.995,0.833,0.608,1.107,1.064,1.005,0.922,1.805 +XM_378175,0.698,1.43,0.786,0.783,0.754,1.696,0.665,0.629,0.815,0.658,1.127,0.689,0.876,0.694,0.854,1.39,0.967,1.064,1.054,1.204,0.667,0.837,1.011,0.908,1.186,1.007,0.997,0.666,0.2,1.436,0.803,1.476,2.606,2.339,0.45,0.769,1.042,0.931,2.121,1.061,0.915,1.344,0.187,1.173,0.816,0.883,1.003,0.885,0.894,0.769,0.888,0.642,0.743,1.467 +XM_378199,1.06,0.982,0.875,0.799,0.937,1.06,0.908,0.902,1.039,0.961,0.921,1.054,0.787,1.17,1.017,0.869,1.036,1.233,0.917,0.919,1.082,0.922,1.232,0.898,0.908,1.121,0.997,0.991,1.361,0.936,1.009,1.118,0.901,1.026,0.859,0.902,1.184,1.071,1.091,1.029,1.088,0.957,1.129,0.865,1.022,0.839,0.902,0.879,1.167,0.913,1.087,1.297,1.04,0.934 +XM_378201,1.058,1.14,0.93,1.047,0.998,1.022,0.989,0.982,1.143,0.899,1.365,1.172,1.084,1.169,0.874,0.879,0.932,1.02,0.997,1.091,1.062,0.957,0.995,0.913,1.076,1.169,0.996,1.137,1.061,0.972,0.847,1.01,0.955,0.96,1.105,1.075,1.037,1.112,1.13,0.99,1.213,0.974,0.972,0.959,1.106,1.081,0.968,0.983,0.919,0.977,0.959,0.993,1.047,0.887 +XM_378203,1.012,1.03,1.088,0.98,0.952,0.984,1.141,1.12,0.957,0.866,0.89,0.976,0.896,1.057,0.992,1.009,1.072,1.091,0.903,0.964,1.089,0.768,1.18,1.095,0.866,0.991,0.831,0.909,1.003,0.896,1.02,0.905,1.038,1.1,0.956,1.092,1.066,1.015,0.918,1.025,0.935,1.141,0.914,0.915,1.039,0.883,1.144,1.114,0.943,1.146,1.015,0.984,1.018,1.013 +XM_378210,1.073,1.168,1.004,0.887,1.058,1.082,1.203,0.862,0.92,1.157,0.907,1.185,0.999,0.847,1.152,1.056,0.979,0.998,1.039,1.286,1.018,1.049,0.87,0.899,0.957,0.962,1.038,0.989,1.009,1.039,1.114,0.96,1.03,1.041,1.072,0.911,0.994,0.953,0.942,1.178,1.155,0.983,1.064,1.158,0.964,1.128,0.991,1.104,0.926,0.949,0.925,1.068,1.015,1.074 +XM_378211,0.996,0.996,0.94,1.233,1.03,0.825,1.086,0.973,1.321,1.155,0.964,1.499,1.164,1.05,0.87,0.971,0.98,1.06,1.103,0.931,1.135,1.05,1.08,0.935,0.832,0.96,0.968,0.802,1.128,1.037,0.963,1.041,0.976,0.977,0.996,0.941,1.13,1.069,0.885,1.109,1.044,0.999,0.882,0.932,1.455,1.091,0.938,0.96,1.002,0.974,1.001,1.038,0.963,0.849 +XM_378226,0.678,1.444,1.228,0.781,0.882,1.171,0.903,0.824,0.877,0.814,1.268,0.871,0.838,0.78,0.887,1.137,0.982,0.77,0.855,0.949,0.834,0.815,1.071,0.931,0.987,0.738,1.59,0.939,0.646,1.802,0.792,1.895,0.901,1.698,0.614,1.077,1.26,0.993,1.28,1.958,1.076,2.057,0.706,0.732,0.889,1.069,0.908,0.737,0.69,0.814,1.044,1.434,1.217,2.94 +XM_378232,0.931,0.995,0.916,1.02,0.903,0.941,1.209,1.038,0.962,0.931,0.912,0.928,1.042,0.957,1.163,0.969,1.0,0.931,1.167,1.0,1.058,0.906,1.061,1.089,0.896,0.976,1.045,0.829,1.067,1.008,0.967,1.121,1.101,1.098,1.206,1.026,1.023,1.068,0.933,0.929,1.034,1.08,1.084,0.99,1.043,1.052,0.862,1.025,1.063,1.024,1.056,1.055,1.031,1.068 +XM_378236,1.109,0.929,1.056,1.016,0.989,1.04,0.956,1.007,1.215,1.118,1.036,0.915,0.96,1.023,0.841,1.013,0.993,1.014,0.955,0.889,0.838,1.13,0.989,1.024,1.192,0.93,0.991,0.945,0.938,1.014,1.085,0.864,0.974,1.146,1.047,0.974,0.978,1.102,0.867,0.894,0.994,1.101,0.852,0.93,1.057,1.06,1.011,0.989,1.087,1.07,1.009,1.039,1.067,0.959 +XM_378251,1.059,1.037,0.872,0.939,1.051,0.996,1.044,1.122,0.923,1.076,1.117,1.106,0.986,1.502,1.136,1.131,0.976,1.144,0.889,1.146,1.019,1.052,1.012,1.0,0.996,0.899,1.053,1.09,1.188,0.985,0.98,0.949,1.032,0.979,1.061,1.002,1.059,0.969,0.892,0.932,0.909,0.886,1.13,0.927,0.879,0.917,1.027,0.994,0.909,0.904,0.953,0.991,0.831,1.023 +XM_378261,0.962,0.935,1.394,1.016,1.058,1.02,0.724,0.939,1.262,1.188,0.945,1.015,1.104,1.094,0.937,0.998,1.176,0.951,1.14,0.936,0.985,0.948,1.024,0.973,0.924,1.035,1.263,1.227,0.863,0.946,1.238,1.108,1.363,1.052,1.095,1.081,0.98,1.303,0.923,0.973,1.228,0.867,0.871,1.073,1.185,0.88,1.024,1.049,0.907,1.082,1.152,1.16,1.049,0.895 +XM_378266,1.002,0.975,0.993,0.972,0.895,0.997,1.244,0.954,0.975,1.081,1.099,1.213,0.992,0.814,0.914,0.856,0.951,1.162,1.023,1.025,1.021,1.129,1.067,0.912,0.941,0.954,1.005,1.039,1.041,1.219,0.823,1.02,0.964,1.076,1.053,1.081,0.949,1.051,0.947,0.953,0.96,0.971,1.197,0.961,0.884,1.039,0.964,1.148,0.859,1.058,0.948,0.936,1.007,1.067 +XM_378271,0.833,0.96,0.833,0.853,0.801,0.928,1.283,0.743,0.872,0.81,1.616,0.773,0.773,1.004,1.242,1.321,0.886,0.879,0.808,0.993,1.135,0.94,2.232,0.822,1.137,0.848,0.767,1.247,0.968,2.066,0.849,7.195,1.396,3.324,0.938,0.964,0.84,1.111,1.16,1.047,1.684,2.685,1.003,0.851,0.847,0.877,0.901,0.8,0.853,0.856,1.481,1.089,1.01,1.187 +XM_378272,0.954,0.984,0.933,0.972,0.959,1.1,1.034,1.051,0.854,0.981,0.876,1.09,1.051,1.169,1.116,0.946,0.98,0.868,0.998,0.85,1.056,0.95,0.929,0.92,1.13,1.078,1.087,1.242,0.839,1.044,0.968,1.156,0.936,0.761,1.002,1.189,1.045,0.929,0.969,1.147,1.005,1.079,0.998,1.019,1.234,0.984,1.111,0.972,1.043,1.105,1.025,1.134,1.062,1.123 +XM_378276,1.126,0.995,1.02,0.991,1.056,1.004,0.968,0.909,1.018,1.001,1.015,1.082,1.016,0.96,1.04,1.15,0.885,0.958,1.128,0.922,0.926,0.898,1.11,0.997,0.989,1.336,0.991,1.065,0.767,0.905,1.107,0.968,1.026,1.078,0.958,0.876,1.042,1.001,0.999,0.889,1.072,0.959,0.789,0.94,1.122,1.044,0.922,1.043,0.942,0.986,1.019,0.773,1.143,0.868 +XM_378286,1.032,1.062,0.937,0.938,0.957,1.023,1.099,1.098,0.91,0.981,0.991,1.063,0.949,0.964,1.034,1.03,0.968,1.126,0.888,1.017,0.886,1.126,1.12,0.989,1.055,1.091,1.115,0.902,1.597,1.013,1.081,0.947,0.758,0.98,1.081,0.905,0.922,0.982,1.063,0.955,0.979,0.977,1.141,1.014,0.966,0.921,0.917,1.126,0.99,0.994,0.994,0.9,1.118,0.988 +XM_378297,0.993,1.048,0.925,0.941,1.044,0.969,1.368,0.949,0.984,1.079,1.05,0.927,1.038,0.898,0.915,0.91,0.921,0.958,0.977,1.114,1.048,1.046,0.84,0.833,1.078,0.99,0.886,0.884,1.095,1.123,1.028,1.055,0.975,0.935,1.083,1.101,0.995,1.092,1.144,3.62,0.938,0.88,1.043,0.832,0.913,0.883,0.943,1.053,0.942,0.859,0.891,0.856,1.03,0.938 +XM_378300,0.932,1.003,0.978,1.036,0.887,1.024,0.89,0.908,1.037,0.907,1.004,0.848,1.008,0.902,1.02,1.105,0.808,1.108,1.179,0.969,0.942,0.989,1.096,1.023,1.025,0.886,0.948,1.001,1.111,0.905,1.017,1.025,1.042,0.865,1.124,1.023,0.869,0.949,1.091,0.884,0.978,1.037,1.06,0.956,1.063,0.953,0.865,1.031,1.194,0.911,0.899,0.988,1.091,0.897 +XM_378304,1.075,1.139,0.987,1.019,1.092,0.943,1.006,1.185,1.031,1.088,1.051,0.973,1.034,0.836,1.041,1.11,1.001,0.988,0.953,1.038,1.101,1.016,1.003,1.0,1.047,0.98,0.795,1.075,0.933,1.004,1.113,0.971,1.164,0.982,1.03,1.038,1.049,0.961,0.977,0.93,0.955,0.91,0.96,1.113,1.051,1.072,0.944,1.054,0.924,0.954,1.01,0.984,1.052,0.92 +XM_378311,1.17,0.993,1.177,0.994,0.951,0.972,0.971,0.895,0.942,0.985,1.006,0.964,0.968,1.333,0.932,1.125,0.928,1.223,0.997,0.991,0.939,0.962,0.945,0.99,1.146,0.967,0.897,1.1,1.042,1.089,0.895,1.154,1.121,0.981,1.187,1.01,1.043,0.987,1.064,0.97,1.064,0.974,1.232,0.965,1.004,1.009,1.069,1.011,1.108,1.036,0.926,0.971,0.958,1.119 +XM_378312,0.873,0.94,0.983,1.051,1.145,0.939,1.179,1.024,1.135,1.051,1.053,1.001,1.045,1.307,0.921,0.932,0.971,1.09,0.978,1.036,0.872,1.052,1.113,1.098,1.115,1.012,0.864,1.033,1.292,1.02,1.138,0.956,0.846,1.108,0.79,0.988,1.078,0.892,1.091,0.999,0.863,1.052,1.168,0.941,1.021,0.992,0.935,1.091,1.036,0.91,0.879,0.881,1.091,0.976 +XM_378313,1.157,0.943,0.887,1.005,0.863,1.111,1.305,1.053,1.024,1.122,1.058,0.897,1.139,0.855,1.101,1.085,1.003,1.264,1.104,0.974,1.06,0.947,0.897,1.033,0.969,0.938,1.112,1.104,1.148,0.878,0.905,1.014,0.971,0.964,1.168,1.069,0.835,1.014,0.988,0.969,0.789,0.878,0.877,1.184,0.825,0.917,1.008,0.945,0.998,0.928,1.099,1.027,1.161,0.879 +XM_378316,0.896,1.028,1.076,0.938,1.041,1.115,0.777,0.886,0.998,0.92,1.325,0.962,0.871,1.136,0.998,1.133,0.841,0.824,0.995,0.862,0.959,0.976,1.27,1.021,0.945,0.865,1.201,1.071,0.769,1.508,0.934,2.456,1.109,1.6,0.777,0.976,0.977,1.006,1.0,1.077,1.453,1.412,0.876,0.994,0.873,0.921,0.946,0.902,0.856,1.042,1.05,0.883,1.189,0.978 +XM_378317,1.068,1.023,1.017,0.986,0.922,0.898,1.013,1.116,0.846,0.909,1.145,1.001,0.986,1.073,0.916,1.093,1.042,1.04,1.041,1.143,1.018,0.985,1.025,1.046,0.912,0.844,0.915,0.927,1.299,1.067,1.135,1.027,1.111,0.999,1.011,0.919,0.99,0.94,1.014,0.853,1.016,1.152,0.924,0.945,1.086,1.111,1.085,1.107,0.961,0.991,1.084,0.897,0.958,0.981 +XM_378330,0.991,1.066,0.972,0.922,1.008,1.083,1.215,0.829,0.965,0.988,0.956,0.925,1.048,0.996,0.877,0.988,1.025,0.962,1.076,0.955,1.044,1.103,1.144,1.103,0.911,1.085,1.052,0.875,1.302,1.079,1.094,0.984,0.969,1.092,1.14,1.055,0.95,0.952,0.956,0.932,0.994,0.874,1.063,1.084,0.98,1.003,0.947,1.016,1.023,1.02,1.026,0.794,1.343,1.088 +XM_378331,0.995,1.08,1.07,1.094,0.926,1.002,1.069,0.927,1.117,1.047,0.983,1.169,1.022,1.094,0.954,0.906,1.0,0.911,0.896,1.006,0.983,0.969,0.979,0.955,1.012,1.078,0.885,1.024,0.958,1.161,0.948,0.954,1.135,0.978,1.122,0.966,1.124,1.023,1.063,0.938,0.939,1.071,1.02,0.948,1.067,1.013,1.068,0.997,1.006,1.209,1.032,0.97,1.055,0.948 +XM_378332,0.987,1.09,1.021,0.988,1.017,0.921,1.243,0.855,0.938,0.878,1.098,0.963,1.025,0.877,0.86,1.233,1.001,0.998,0.76,0.976,1.014,1.14,1.071,0.942,1.042,1.011,0.912,0.987,1.226,1.038,1.322,1.08,0.911,0.919,1.112,1.011,1.015,1.011,1.059,1.025,0.983,1.042,1.079,0.942,1.043,0.911,0.967,1.066,1.081,1.142,0.934,1.106,0.96,0.97 +XM_378350,0.834,1.255,1.414,0.728,1.117,0.964,0.464,0.747,1.435,1.064,0.922,1.201,0.867,0.844,0.979,1.084,0.922,0.782,1.316,1.414,0.63,1.269,1.136,1.293,0.655,0.892,1.261,1.38,0.378,0.856,1.054,0.97,1.61,1.424,0.542,0.869,1.0,1.287,0.899,1.118,1.288,0.929,0.72,0.793,1.185,1.09,0.924,0.99,0.687,0.764,1.085,0.611,0.827,1.059 +XM_378353,1.001,1.031,1.021,0.828,0.915,0.955,1.038,1.095,0.967,1.125,1.065,1.035,1.018,0.887,1.152,1.011,0.935,0.971,0.881,0.977,0.992,0.966,0.778,1.137,1.018,1.042,0.966,0.979,1.025,0.94,0.933,0.97,0.875,0.953,1.028,1.145,1.12,0.998,0.948,0.82,1.011,0.965,0.886,1.056,0.889,0.984,1.078,1.097,1.016,1.049,0.993,1.074,0.926,1.131 +XM_378356,0.964,0.982,1.11,0.904,0.862,1.075,0.943,1.064,0.962,0.912,1.023,0.946,1.094,0.878,0.995,0.854,0.939,0.927,1.002,1.172,1.064,0.979,1.082,1.003,1.065,0.854,0.989,0.93,0.875,1.243,0.982,1.01,1.127,1.186,0.857,1.074,0.973,1.072,1.116,0.782,0.923,1.23,1.02,1.094,0.819,1.075,1.023,0.859,1.152,1.06,1.16,1.106,0.882,0.818 +XM_378358,0.981,0.976,1.036,0.933,0.996,1.088,1.035,0.97,1.004,1.081,1.131,0.861,1.008,0.97,0.845,0.936,1.036,0.889,1.076,1.018,1.037,1.121,1.001,0.981,1.016,0.942,1.05,0.984,0.852,0.997,1.035,1.041,1.046,0.959,0.933,1.039,0.945,0.929,1.065,1.089,0.944,1.004,1.267,1.672,0.957,0.973,0.935,1.103,0.992,0.947,1.163,1.017,0.973,1.036 +XM_378360,0.819,4.448,0.862,2.807,1.056,5.671,2.953,0.84,1.309,0.872,1.757,1.036,0.801,0.758,0.973,0.728,0.568,3.455,0.795,3.376,0.634,0.949,0.734,1.303,4.572,0.813,0.905,0.985,3.001,6.87,1.183,4.84,0.725,9.339,0.479,1.671,2.303,0.848,6.239,1.001,0.736,2.526,0.62,2.137,0.73,0.525,0.887,0.719,0.491,0.609,1.856,0.654,0.775,2.098 +XM_378366,1.141,1.011,1.014,1.124,0.979,0.985,1.108,0.914,0.874,1.175,1.153,1.002,0.998,0.927,0.999,0.982,1.033,0.9,1.189,0.949,1.03,1.053,0.993,1.031,0.972,1.033,0.948,1.186,0.95,1.116,1.112,1.051,0.896,0.986,1.084,0.987,1.066,0.945,1.015,0.911,0.938,1.04,0.988,0.9,1.024,1.051,0.964,1.005,1.046,1.003,1.011,1.369,1.088,0.973 +XM_378372,0.829,1.107,0.978,1.113,0.908,1.146,0.892,1.237,0.997,0.945,1.102,0.962,0.891,1.023,1.268,0.9,0.984,1.056,1.059,1.071,0.939,1.06,0.909,1.022,1.055,0.975,1.016,0.978,0.94,1.028,0.923,1.077,1.022,1.138,0.937,1.012,0.973,0.985,0.991,1.008,0.841,1.0,0.938,1.025,1.022,1.041,1.124,1.09,1.0,0.966,0.896,0.952,0.939,1.148 +XM_378374,1.004,1.131,0.978,0.901,1.143,0.997,0.916,0.863,1.048,1.055,1.045,1.03,1.11,0.996,1.199,1.032,1.109,1.089,1.047,1.144,1.098,1.006,1.042,0.921,1.019,0.97,1.142,1.046,1.082,0.976,1.047,0.951,1.21,0.972,1.061,0.992,1.025,0.927,0.923,0.994,0.973,0.93,0.755,1.105,1.122,0.958,1.064,0.896,0.999,1.111,0.883,1.265,0.92,0.954 +XM_378390,0.946,1.066,1.024,1.018,0.804,1.052,0.922,0.918,1.014,0.984,1.205,0.945,0.945,1.153,1.117,0.905,1.047,1.008,1.037,1.169,1.112,1.084,1.068,0.983,1.037,0.992,1.066,1.002,0.787,0.934,1.222,0.988,1.21,1.108,1.057,1.101,1.015,0.984,0.93,0.954,0.898,0.938,1.04,0.883,0.971,1.088,1.054,0.967,1.112,1.055,1.077,0.88,0.906,1.035 +XM_378399,1.032,0.934,0.884,1.027,1.036,0.96,1.03,1.115,1.171,0.947,1.111,0.821,1.044,0.808,0.983,1.092,1.018,1.013,1.043,0.991,0.921,1.009,1.045,0.981,0.833,0.925,1.118,1.023,1.103,0.947,0.996,0.997,1.074,1.058,1.066,1.222,1.031,0.952,0.768,0.95,0.882,1.049,1.16,0.981,0.892,0.901,0.992,1.014,1.029,0.921,1.0,1.101,0.984,1.215 +XM_378411,1.145,0.977,0.859,1.051,1.044,1.039,0.89,0.953,0.883,0.907,0.883,1.009,1.043,0.894,1.023,0.966,1.046,0.954,1.174,0.825,1.126,1.006,0.955,0.995,1.049,1.033,1.259,1.01,1.041,0.916,1.116,0.953,0.971,0.966,0.944,1.028,1.011,1.015,0.987,1.002,0.918,1.058,0.719,1.025,1.101,1.027,0.987,0.995,1.046,0.898,1.08,0.978,0.975,1.105 +XM_378419,0.957,1.189,1.023,1.04,1.024,0.956,0.985,0.992,0.797,1.176,0.95,1.002,1.235,0.996,0.763,0.87,1.057,1.029,0.975,1.178,0.896,1.014,0.893,1.011,1.143,0.928,1.062,0.992,0.712,0.944,0.943,0.959,1.053,0.976,0.859,0.944,1.291,1.004,0.949,0.91,1.049,1.171,0.814,0.93,1.006,1.006,1.034,1.071,0.909,0.96,0.988,0.968,0.98,0.905 +XM_378434,0.993,1.003,1.037,0.944,1.152,0.991,1.079,0.845,0.796,0.99,0.982,1.04,1.148,0.982,1.116,0.965,0.939,1.025,0.934,1.098,0.997,0.921,0.89,0.942,0.933,1.211,0.831,1.093,1.431,1.117,0.958,1.022,0.92,1.059,0.981,0.987,0.913,0.872,1.064,0.998,0.957,1.038,1.339,0.866,0.894,1.161,0.946,1.133,1.042,1.213,1.005,1.135,1.034,0.834 +XM_378436,1.089,0.999,0.919,0.906,1.085,0.99,0.995,1.094,1.015,1.228,0.944,1.13,1.231,1.15,1.097,0.958,1.096,1.126,1.0,1.129,1.102,0.923,1.029,1.075,0.91,0.887,0.935,1.015,0.842,0.939,1.042,0.848,1.059,0.948,0.991,1.003,0.999,1.06,1.029,1.052,0.868,0.804,1.001,0.922,0.992,1.036,0.931,1.01,1.051,1.003,1.039,0.967,0.848,0.954 +XM_378453,1.032,1.131,1.102,1.146,1.062,1.101,0.866,0.896,1.065,1.016,0.992,0.886,0.99,1.0,1.102,0.904,1.004,1.116,1.0,0.954,1.097,0.957,1.045,1.06,1.034,1.025,0.907,1.217,1.065,0.997,1.121,1.016,1.196,1.067,1.248,0.906,1.109,1.149,1.012,0.915,0.983,1.054,0.896,0.809,0.84,0.967,1.078,1.03,1.0,0.875,1.004,1.017,1.133,0.921 +XM_378460,1.0,0.957,1.082,0.948,1.037,0.935,0.951,1.212,1.014,0.966,1.009,0.983,0.96,1.219,0.987,1.045,0.932,0.924,1.049,1.062,0.947,0.904,0.971,0.992,1.11,0.944,1.192,1.108,0.912,0.935,1.124,1.063,0.958,0.999,1.106,1.005,0.955,0.963,1.099,0.988,1.086,1.133,0.866,1.014,0.855,1.121,1.039,1.047,0.993,1.017,1.146,0.968,1.1,1.367 +XM_378462,0.998,1.025,1.212,0.911,0.977,0.969,0.827,1.02,1.037,0.999,0.99,1.068,1.013,0.931,0.96,0.989,0.993,1.001,1.049,0.98,1.002,0.949,0.975,1.022,1.053,1.013,0.973,1.05,0.889,0.997,1.139,1.082,1.053,1.176,1.065,0.998,1.022,0.95,1.014,0.999,0.971,1.012,0.996,0.918,0.928,0.976,1.074,1.043,1.019,1.033,1.055,0.979,1.05,0.985 +XM_378470,1.047,0.89,0.97,1.014,1.054,1.065,0.889,0.901,0.926,0.981,1.201,0.956,0.898,0.914,1.028,1.068,1.018,0.812,1.019,0.956,1.1,0.957,0.792,1.004,1.032,0.911,1.17,1.043,0.807,1.008,1.046,0.968,0.908,0.935,0.906,0.985,1.112,0.818,1.167,1.057,0.951,1.0,1.008,0.971,1.124,0.75,0.962,0.969,1.031,1.055,1.251,1.029,0.963,1.019 +XM_378472,1.059,1.136,1.209,0.994,1.115,1.022,0.877,1.06,1.034,0.871,1.066,1.093,1.05,0.824,0.94,0.877,1.031,0.937,1.092,1.049,0.992,0.916,1.006,1.036,0.864,1.062,1.108,0.989,0.786,1.022,0.995,1.056,1.167,1.071,1.039,0.94,1.022,1.02,0.953,0.99,0.971,0.935,0.929,0.982,1.004,0.913,0.976,1.146,0.962,1.014,1.028,1.081,0.99,0.961 +XM_378473,1.068,1.005,1.069,1.037,1.097,0.813,0.934,1.042,1.07,1.083,1.019,0.93,1.075,0.986,0.956,1.104,1.023,1.046,0.996,0.964,0.992,1.017,1.09,1.111,1.028,1.022,0.81,0.947,0.787,0.925,1.057,0.933,0.889,1.052,1.025,1.212,0.881,0.996,0.989,0.932,0.923,1.001,0.951,1.103,0.881,1.186,0.934,1.001,1.001,1.023,0.943,1.029,0.902,1.111 +XM_378482,1.007,0.871,1.105,1.009,0.966,0.931,0.856,1.067,1.106,1.003,1.004,1.0,0.894,0.912,1.012,1.01,0.88,0.974,0.877,0.993,1.01,1.0,1.078,1.144,1.036,1.005,1.039,1.029,1.058,0.916,1.103,1.045,1.077,0.902,1.091,0.974,1.104,1.009,1.147,0.968,0.947,1.046,0.958,0.862,1.162,0.951,0.965,1.002,1.157,0.997,0.89,0.864,0.923,0.973 +XM_378496,0.995,0.999,1.069,1.036,1.112,0.939,0.878,0.853,1.137,0.877,0.849,1.086,1.047,1.155,0.827,0.987,0.979,1.047,0.885,0.921,0.997,0.853,0.893,1.126,0.97,1.006,0.874,1.279,1.375,1.1,0.953,0.848,0.973,1.026,0.866,1.069,0.987,1.021,1.004,1.137,0.942,0.958,1.022,0.787,0.966,1.117,1.041,0.887,0.916,1.04,1.031,1.045,1.009,1.052 +XM_378506,0.965,0.984,0.938,0.863,1.043,1.075,1.086,0.846,0.927,0.89,1.038,1.025,0.949,1.005,0.994,1.045,0.995,1.017,0.939,1.002,1.14,1.039,0.929,1.082,0.904,1.013,1.112,1.026,1.368,1.003,1.01,1.099,1.069,1.012,0.845,0.898,0.989,0.946,1.024,0.985,0.989,0.995,1.058,1.005,1.0,0.957,0.991,1.012,1.145,0.958,1.01,0.859,1.055,0.905 +XM_378512,1.025,1.047,0.977,1.136,0.925,1.1,1.005,0.886,0.975,1.066,0.901,1.112,1.016,1.091,0.955,1.033,1.04,0.974,0.92,1.151,0.993,1.135,0.994,1.008,1.196,0.93,0.943,0.906,1.069,1.158,1.086,0.954,0.979,0.936,1.149,1.05,1.008,1.074,0.848,0.983,1.128,1.026,0.967,0.947,0.979,1.118,0.966,0.998,1.057,1.005,0.977,1.155,1.123,1.164 +XM_378514,0.674,1.402,0.718,1.015,0.709,2.036,0.991,0.696,0.799,0.646,4.034,0.677,0.598,0.663,1.833,3.683,0.751,0.685,0.757,3.097,0.657,0.732,4.089,0.834,0.696,0.739,0.77,0.694,0.727,1.853,0.678,1.262,1.219,0.839,0.68,2.225,2.19,0.766,1.286,0.811,0.616,1.775,1.75,2.128,0.744,3.223,2.79,0.727,1.934,0.664,1.728,1.375,0.734,1.713 +XM_378532,1.048,1.003,0.953,0.897,0.847,1.018,0.943,1.003,0.935,1.067,0.928,0.96,1.01,1.011,1.072,0.903,0.961,1.124,0.971,0.974,0.803,0.94,0.96,0.965,1.049,1.092,1.072,1.047,1.022,1.048,0.897,0.964,1.057,1.05,0.914,0.935,0.938,0.979,0.944,1.033,1.007,0.916,1.194,0.992,1.0,0.792,1.05,0.965,0.956,0.928,1.083,1.025,0.941,1.085 +XM_378535,0.988,0.925,0.909,0.904,1.056,0.942,1.191,0.9,0.851,1.063,1.15,1.037,0.907,0.971,1.097,0.967,0.92,1.078,0.902,1.006,0.848,0.964,0.904,1.056,1.043,0.966,1.225,1.0,0.839,1.106,0.887,0.912,1.128,1.094,0.936,1.16,0.86,1.119,1.062,0.971,0.894,1.097,1.174,0.98,1.004,0.993,1.07,0.971,1.0,0.796,0.885,1.222,0.871,0.974 +XM_378542,0.969,0.836,0.855,0.765,0.856,1.023,1.256,0.931,1.212,0.793,0.885,0.865,0.996,1.137,0.924,1.012,1.001,1.156,1.066,0.966,1.024,1.053,1.115,1.011,1.029,1.076,1.088,0.93,0.963,1.07,1.174,1.22,0.952,1.046,1.107,1.009,0.799,1.215,1.04,0.971,1.212,0.969,1.123,0.999,1.028,1.125,1.308,0.911,1.103,0.783,0.863,0.914,1.004,1.13 +XM_378544,1.047,0.875,1.125,0.825,1.045,0.988,0.987,0.957,0.893,1.15,1.02,1.129,0.985,1.083,0.991,1.103,0.992,1.1,0.982,1.083,0.867,1.181,0.873,1.068,0.965,1.36,1.097,1.061,0.786,0.987,1.053,0.897,1.054,0.903,1.087,0.948,1.037,0.964,1.056,0.959,1.031,0.983,0.945,0.891,0.832,0.92,1.01,0.974,0.869,1.106,1.093,1.134,0.757,0.863 +XM_378545,1.049,1.01,0.905,0.863,0.948,0.98,1.104,0.896,0.972,0.977,1.003,1.136,1.024,1.338,0.913,0.938,1.117,1.151,0.93,1.017,1.098,0.917,0.969,0.993,0.959,0.97,0.976,0.966,0.754,1.027,1.051,1.005,0.832,0.885,1.064,1.026,1.1,0.895,1.112,1.048,0.886,1.04,1.353,1.065,1.047,1.012,1.16,0.969,0.936,0.939,1.039,1.018,0.974,0.942 +XM_378558,1.061,0.949,0.913,0.971,0.986,1.068,0.865,0.893,0.888,0.879,0.986,1.014,0.885,1.186,0.959,1.133,0.871,0.966,0.976,0.954,1.058,1.002,1.137,0.893,0.97,1.025,0.931,0.892,1.612,0.999,0.877,1.08,1.092,1.096,0.925,0.941,1.064,1.104,1.101,0.892,0.962,0.944,1.069,0.962,0.872,1.015,1.055,1.014,0.98,0.951,1.039,0.948,1.061,1.096 +XM_378562,1.079,1.031,0.999,1.2,1.021,1.03,0.973,1.195,0.947,1.032,1.13,0.997,0.99,0.807,0.828,0.906,0.947,0.946,1.058,1.029,1.044,0.963,0.971,1.03,0.949,0.915,0.999,0.988,1.297,1.067,0.945,0.929,1.056,1.067,1.138,1.174,0.997,1.027,1.055,0.965,0.956,0.995,0.866,0.988,0.955,0.918,1.016,1.041,1.002,1.166,0.88,1.004,1.099,1.179 +XM_378578,0.98,0.954,0.964,0.976,1.017,1.017,0.899,0.778,1.004,0.928,1.034,1.068,0.995,1.019,1.386,1.009,0.93,0.95,1.037,1.016,1.183,0.945,0.93,0.895,1.063,0.93,0.931,0.917,0.835,1.005,0.919,1.053,1.135,0.961,0.957,1.03,1.025,0.934,0.975,0.967,1.169,1.097,0.865,0.945,0.907,0.998,1.017,0.928,0.996,0.881,0.976,0.934,1.014,0.873 +XM_378586,1.022,0.909,1.087,0.861,1.119,0.994,0.972,1.001,0.941,1.046,0.938,1.006,1.021,1.326,0.938,1.226,0.999,0.927,0.914,0.891,1.079,1.067,1.049,1.07,1.081,0.969,0.977,0.857,1.11,1.135,0.996,0.93,1.112,0.857,1.021,0.985,1.214,1.098,1.1,1.138,1.006,0.992,1.019,0.961,0.928,0.868,0.937,1.068,1.131,0.921,1.094,0.875,1.061,0.923 +XM_378588,0.839,1.033,1.059,1.124,1.142,0.884,1.09,0.898,1.063,0.98,1.104,0.973,1.078,0.984,0.902,1.192,0.962,1.0,0.978,1.093,0.892,1.054,1.062,1.024,0.936,1.013,1.095,0.963,0.974,1.034,0.972,0.845,0.97,0.954,0.856,1.046,1.034,1.016,1.036,1.024,1.095,0.828,0.846,1.017,1.079,0.971,1.054,0.943,0.843,1.0,0.903,0.844,0.944,0.913 +XM_378601,0.941,1.03,1.125,1.202,0.938,1.006,1.148,0.99,0.998,0.984,1.062,0.947,1.125,0.968,0.953,0.99,0.898,1.023,1.207,1.2,0.948,1.237,0.93,1.017,1.137,0.951,1.295,1.014,0.95,1.053,0.938,0.909,1.066,1.121,1.015,0.979,1.014,1.067,1.095,0.976,1.001,0.989,1.298,1.108,0.889,1.182,1.042,1.105,1.02,1.049,1.027,0.91,1.047,0.93 +XM_378609,0.882,1.074,0.943,0.88,0.747,1.07,0.916,0.804,0.864,0.87,1.026,0.892,0.922,0.677,0.927,1.254,0.969,0.903,0.901,0.883,0.966,0.856,1.395,0.81,0.848,0.782,1.127,0.986,0.795,1.098,0.83,2.528,1.831,1.138,0.868,1.124,1.223,1.028,1.28,2.285,0.985,1.394,0.885,1.681,0.93,0.91,1.544,0.846,0.812,0.807,1.199,1.461,0.941,1.587 +XM_378628,0.96,1.042,1.041,0.931,0.987,1.027,0.937,1.018,0.949,1.088,1.107,0.942,0.797,0.998,1.137,1.185,0.982,0.95,0.921,0.991,1.01,0.957,0.953,0.911,1.067,0.981,0.983,0.956,0.816,1.025,0.906,1.156,0.853,0.947,0.876,0.982,1.119,0.955,1.053,1.068,0.854,1.105,1.074,0.977,1.065,1.146,1.049,1.082,1.068,0.903,1.085,1.001,1.005,1.044 +XM_378629,0.94,1.086,0.972,0.951,1.06,1.031,0.914,1.038,0.797,1.149,1.128,0.841,1.098,0.897,0.904,0.989,0.908,1.139,1.021,0.996,1.048,1.063,0.951,0.972,0.864,1.032,0.889,0.984,1.1,0.995,0.938,0.991,0.894,0.87,1.188,1.095,1.141,0.858,1.025,1.018,0.821,1.015,1.017,1.004,0.936,0.936,1.07,1.079,0.978,0.966,0.995,0.978,1.037,0.891 +XM_378631,0.941,0.922,0.967,0.826,0.905,0.982,0.911,0.994,0.955,0.892,0.826,1.141,0.976,0.907,1.03,1.097,1.037,1.052,0.87,1.08,1.04,1.1,0.915,0.951,0.873,0.956,1.115,0.992,0.776,0.994,0.973,1.249,0.955,0.972,0.775,1.119,0.947,1.213,1.081,1.099,0.966,0.809,1.008,0.915,1.106,0.846,0.964,0.863,0.962,1.032,0.944,0.888,1.09,1.0 +XM_378639,1.09,0.935,0.923,0.967,0.96,0.906,0.885,1.075,1.086,1.113,0.899,1.077,1.035,0.904,0.906,0.893,1.031,0.926,0.964,0.933,0.962,0.953,1.022,0.977,1.041,1.093,1.002,1.038,0.803,0.965,1.069,0.925,0.993,0.916,0.962,0.981,0.98,1.093,1.13,1.214,0.969,0.963,0.849,0.959,1.038,1.082,1.004,1.022,1.016,0.873,0.949,0.914,1.023,0.863 +XM_378642,0.997,1.046,0.969,0.973,1.136,1.101,1.136,1.078,0.987,0.928,0.995,1.059,1.049,1.127,1.038,0.933,1.098,0.858,1.034,1.053,0.984,0.971,0.93,1.017,1.105,0.915,1.117,0.965,1.41,0.917,1.005,1.118,0.99,0.957,0.975,1.12,0.998,0.867,0.916,0.964,1.038,1.016,0.9,0.895,1.049,0.89,0.862,0.963,0.949,1.038,1.055,1.001,0.918,1.021 +XM_378643,1.17,0.974,1.03,1.049,1.061,0.936,1.009,0.967,1.035,0.903,0.936,1.102,0.95,1.081,0.844,1.082,0.979,1.093,1.063,0.872,1.119,0.974,0.979,1.0,1.167,1.022,0.862,1.068,0.977,0.979,0.999,0.962,1.071,1.025,1.02,0.875,0.889,0.933,1.018,0.957,0.924,0.954,1.116,1.055,1.123,0.988,0.964,1.055,0.869,1.163,0.965,1.012,0.974,0.943 +XM_378646,0.944,1.012,1.063,0.944,1.051,0.941,0.957,0.871,1.021,0.941,1.002,1.027,0.787,1.034,0.873,0.921,0.976,1.001,0.882,0.984,0.906,0.908,0.835,1.04,0.984,1.162,1.041,0.779,1.158,1.002,0.891,0.852,1.166,0.969,1.046,0.963,0.932,0.872,0.934,1.18,0.983,1.007,0.957,1.047,1.028,1.18,0.979,1.159,0.9,0.961,1.081,0.841,0.859,0.896 +XM_378650,0.99,1.011,0.901,0.825,1.004,1.036,0.857,1.085,0.999,0.999,1.015,1.013,0.862,0.943,0.957,0.959,1.035,0.94,0.937,0.929,1.08,0.984,0.873,1.002,1.002,1.078,1.155,1.083,0.966,1.131,1.084,1.139,0.946,1.017,0.952,1.203,1.032,1.029,1.099,1.074,1.014,0.99,1.015,0.926,0.967,0.894,1.044,0.888,0.967,1.041,1.015,0.973,0.866,0.992 +XM_378664,1.059,0.843,0.992,0.928,1.054,1.026,0.983,0.881,1.241,0.986,0.934,1.098,1.02,1.037,1.072,0.948,1.196,0.974,1.064,0.869,0.938,0.96,1.037,1.079,0.902,1.111,1.191,1.072,0.818,0.999,1.011,1.192,1.055,0.878,1.067,1.002,0.87,1.03,1.097,1.037,1.091,0.965,0.839,0.892,1.045,0.957,1.05,1.077,1.084,0.982,0.996,0.952,0.868,0.981 +XM_378667,1.113,1.06,1.116,0.839,1.081,0.951,0.921,1.062,0.992,0.938,0.978,1.029,0.91,0.804,1.058,1.095,0.943,1.115,1.118,1.046,1.04,0.956,1.008,0.863,0.982,0.988,0.975,0.978,0.831,0.967,1.031,0.973,0.973,0.862,1.174,1.009,1.118,1.003,0.972,0.932,1.078,0.963,1.078,1.104,0.956,1.167,0.863,0.927,1.073,0.93,0.843,0.866,0.892,1.148 +XM_378676,1.005,0.994,0.999,0.953,1.102,1.027,0.931,0.934,1.05,0.963,0.938,0.892,0.992,1.226,1.153,1.068,1.045,0.946,1.104,1.043,1.042,1.104,0.94,1.023,1.002,1.159,0.889,1.001,0.794,1.029,1.082,0.953,1.047,0.921,1.028,0.843,1.005,1.18,0.912,1.017,0.933,0.898,1.021,1.182,1.033,0.959,0.918,1.133,1.057,1.09,1.037,1.009,0.97,1.156 +XM_378683,0.971,0.846,1.167,0.955,0.962,0.932,1.203,1.117,0.879,0.953,0.912,1.058,1.043,1.097,1.13,1.05,0.999,0.996,0.978,1.013,0.875,0.983,1.161,1.041,0.99,0.999,0.971,1.036,1.301,0.972,0.983,0.995,1.044,1.061,0.979,1.148,1.02,0.938,1.022,0.851,1.064,1.102,1.094,1.034,1.009,1.048,1.004,1.001,0.957,0.984,1.012,1.036,1.028,1.098 +XM_378684,0.978,1.142,0.888,0.917,0.984,1.083,0.903,1.041,0.879,0.986,1.053,1.021,0.938,1.062,0.922,1.013,0.866,1.037,0.951,0.966,1.052,0.913,1.083,0.984,1.002,0.998,1.001,0.923,0.843,1.016,0.935,1.033,0.89,1.103,1.085,1.078,0.986,1.002,0.958,0.923,1.173,1.0,1.064,1.026,0.954,0.87,1.079,1.087,0.891,0.903,0.959,0.906,1.112,0.925 +XM_378687,1.021,0.948,1.07,1.111,1.055,0.937,0.934,0.925,0.992,1.076,0.998,0.994,1.032,0.871,1.1,0.979,0.955,1.03,1.075,1.036,0.893,0.95,1.004,1.014,0.999,1.027,1.048,1.084,0.847,0.938,1.111,0.97,0.887,1.032,1.046,1.068,1.094,0.959,1.144,1.002,0.947,0.959,0.846,0.943,0.925,0.893,0.914,0.839,0.978,1.009,1.111,1.098,1.076,0.944 +XM_378694,0.471,1.313,0.609,0.757,0.521,1.302,0.819,0.464,0.574,0.557,1.665,0.505,0.587,0.55,0.768,1.519,0.489,0.946,0.572,1.183,0.545,0.511,1.064,0.555,0.797,0.473,0.733,0.517,0.564,1.09,0.524,4.292,1.164,1.304,0.531,1.061,1.755,0.584,2.598,0.953,0.587,1.835,1.057,1.711,0.579,1.132,0.82,0.519,1.14,0.564,1.148,1.067,0.685,1.729 +XM_378700,1.026,1.008,0.972,0.984,0.981,1.116,0.992,1.071,1.009,1.049,1.023,0.93,0.972,0.843,0.929,1.178,0.949,0.975,0.955,1.037,0.977,1.118,1.001,1.095,1.134,0.962,0.796,1.051,0.914,0.897,0.906,0.993,0.981,0.901,1.031,1.011,1.069,0.838,0.935,1.239,0.989,0.969,1.088,0.987,0.954,1.086,1.034,1.033,1.062,1.06,1.013,1.01,0.897,1.002 +XM_378701,1.016,0.97,0.98,0.947,1.031,1.003,0.925,1.104,1.107,1.173,0.999,1.075,1.003,1.01,0.955,1.144,0.94,1.027,0.913,0.951,1.035,0.919,0.931,1.138,1.034,1.036,1.089,1.017,1.17,0.996,1.04,0.975,1.057,0.976,0.853,0.905,1.009,0.866,0.987,0.856,0.989,0.911,0.901,0.848,0.738,1.229,1.091,0.854,1.113,1.026,1.047,1.024,1.087,0.872 +XM_378705,0.748,1.208,0.903,0.991,1.176,1.198,0.901,0.91,0.997,0.985,0.932,1.039,0.914,0.896,0.749,1.169,0.919,1.078,0.988,1.108,0.953,0.969,1.131,1.083,1.293,0.871,1.205,0.864,1.116,1.04,0.957,1.163,1.058,1.016,1.114,0.923,0.921,1.098,0.924,0.729,0.792,1.033,0.949,1.054,1.019,0.886,0.999,1.194,1.032,0.786,0.916,0.841,0.958,1.339 +XM_378708,0.985,1.019,0.992,1.012,0.995,1.013,0.955,0.999,0.916,0.862,1.024,0.882,0.899,1.207,1.003,1.024,0.963,0.986,0.931,0.963,1.064,1.001,1.119,0.886,1.038,1.007,0.935,1.109,1.043,1.159,1.057,1.116,0.916,1.262,0.947,0.97,0.983,0.983,1.059,0.88,1.149,1.141,1.209,0.956,0.972,1.049,0.832,0.984,1.094,1.008,1.039,0.868,0.866,1.041 +XM_378712,0.997,0.953,0.932,1.041,1.247,1.041,1.481,1.03,0.964,0.957,0.957,0.95,1.028,0.868,0.908,1.022,0.956,0.984,0.9,0.98,1.054,1.083,1.045,0.922,1.011,0.987,0.916,1.009,1.421,1.002,0.96,0.985,1.049,0.923,1.172,0.909,1.036,0.991,1.025,0.947,1.036,0.925,1.163,1.013,1.12,0.947,0.96,1.075,0.97,0.984,0.941,1.171,1.149,0.916 +XM_378738,0.938,0.903,0.97,1.093,0.969,1.073,1.019,0.96,0.94,0.925,1.149,0.949,0.863,0.828,1.113,1.001,0.904,0.925,0.907,1.625,0.917,0.856,4.61,0.909,1.044,0.937,1.033,0.927,1.253,0.972,0.996,1.07,2.019,0.9,0.926,5.696,1.344,1.028,1.006,0.927,1.047,0.868,1.192,0.922,0.873,1.062,4.359,0.937,5.073,0.885,1.571,0.946,1.069,0.964 +XM_378743,0.982,0.99,0.977,1.231,1.062,0.973,1.088,1.057,1.037,0.838,0.962,1.017,1.133,1.364,0.883,1.01,1.044,1.039,0.967,0.974,1.003,1.186,0.997,0.915,0.942,1.124,1.071,0.965,1.39,1.018,0.984,1.011,1.011,0.951,1.015,0.884,0.988,1.012,1.009,1.107,1.01,0.972,1.524,0.971,1.008,1.029,1.037,0.909,1.156,1.04,0.925,1.065,0.852,0.91 +XM_378746,1.014,0.827,1.107,0.966,0.83,0.922,0.872,1.106,0.925,0.941,0.926,1.13,0.893,1.04,0.893,1.099,0.953,1.079,1.017,1.015,1.031,0.983,1.021,1.007,0.978,0.85,1.041,0.986,0.971,1.093,0.993,1.03,1.142,1.074,0.918,0.934,1.147,1.177,0.924,1.0,1.232,1.389,1.075,0.954,0.876,0.813,1.147,0.907,1.403,1.034,1.067,0.857,0.998,0.965 +XM_378747,1.035,0.962,0.894,0.991,0.957,1.049,0.779,0.996,1.021,1.091,0.981,1.046,0.893,0.867,1.047,0.967,0.877,0.966,1.115,1.035,1.067,1.167,1.137,1.334,0.983,0.913,0.978,1.065,0.895,1.109,0.921,1.433,1.002,1.006,0.968,1.007,0.963,1.013,0.982,0.974,1.012,1.103,0.723,1.315,1.084,1.035,1.183,0.995,1.107,1.153,0.976,0.894,0.957,1.005 +XM_378750,0.988,1.079,1.171,0.868,1.039,0.969,1.007,0.7,0.901,0.873,1.129,1.033,1.025,0.9,0.924,1.076,1.057,0.924,1.008,0.984,0.97,0.901,0.982,1.0,1.014,0.856,0.966,1.073,0.781,1.068,1.027,0.923,0.892,1.042,0.902,0.978,1.032,1.023,1.068,0.986,0.815,0.924,0.959,1.095,1.01,0.888,1.028,1.014,0.921,0.974,1.004,0.979,0.982,1.049 +XM_378751,0.872,1.008,0.996,0.936,0.952,1.102,0.934,1.018,0.879,0.933,0.961,1.002,1.089,1.078,0.903,0.945,1.047,0.966,1.159,1.012,1.057,0.919,1.028,0.932,1.05,1.0,1.03,1.039,1.02,1.01,0.953,0.887,1.121,1.098,1.022,1.027,0.959,0.888,0.991,1.111,0.899,1.049,1.233,1.168,1.058,0.882,0.935,0.987,0.948,1.022,0.945,0.976,0.956,0.886 +XM_378754,1.052,1.039,0.964,1.055,0.967,1.018,0.853,0.941,0.916,1.123,1.057,0.878,1.021,1.215,0.859,1.078,0.984,1.01,0.99,1.126,1.031,1.051,1.109,1.089,1.158,1.011,0.94,1.024,2.136,1.134,1.011,0.871,0.971,0.914,1.002,0.99,1.036,1.007,1.01,1.109,0.984,1.101,1.081,0.969,1.003,1.228,0.983,1.01,0.945,1.04,1.016,1.192,0.99,0.865 +XM_378757,1.038,1.083,1.175,0.92,1.012,0.997,1.05,0.9,1.044,0.917,1.083,0.972,1.006,1.12,1.539,0.913,1.029,0.977,0.973,1.01,0.959,1.108,1.009,0.967,0.949,0.839,1.021,1.067,1.178,1.053,0.908,1.013,0.867,0.965,1.053,1.061,0.949,1.039,1.023,0.918,1.073,0.921,1.162,1.024,0.955,0.903,1.117,1.006,0.926,0.928,1.084,0.943,1.13,1.026 +XM_378760,0.954,1.298,0.823,0.807,1.038,1.064,1.073,1.069,0.99,1.0,1.133,0.84,1.341,1.265,1.061,0.917,1.004,0.863,0.923,1.046,0.885,0.936,0.998,1.134,0.853,0.919,0.933,1.089,1.04,1.046,0.863,1.033,1.206,0.879,1.142,0.901,0.941,0.879,0.888,1.01,1.035,1.039,0.994,0.863,1.175,0.966,0.955,1.1,1.03,0.892,1.253,1.0,0.881,1.001 +XM_378763,1.084,1.125,0.961,0.891,1.118,0.989,0.968,1.044,0.954,1.164,1.073,0.973,1.048,0.97,0.963,1.019,0.885,1.149,1.067,0.829,1.113,0.854,1.132,1.162,0.961,0.99,0.96,1.091,0.926,1.051,1.014,0.931,1.243,0.982,1.326,1.065,1.135,0.918,1.038,1.183,0.992,1.025,0.932,1.075,1.116,0.904,0.931,1.065,0.977,0.983,1.109,0.934,0.952,1.188 +XM_378765,0.986,0.951,0.958,0.912,0.991,1.007,0.832,1.046,0.989,1.002,1.105,1.078,1.012,0.925,0.877,0.97,1.034,0.933,0.889,1.092,0.857,0.986,0.894,0.971,0.954,1.063,0.837,1.056,0.853,1.028,1.075,1.078,1.103,1.001,1.028,1.021,1.115,0.957,0.916,1.04,1.137,0.972,0.919,0.876,0.928,1.017,0.993,1.022,1.018,1.003,1.01,0.862,1.05,1.044 +XM_378766,1.056,0.955,0.911,0.988,0.902,0.992,1.021,1.004,0.879,1.002,0.929,0.873,0.89,1.186,0.92,1.036,0.9,0.981,0.952,1.017,1.035,0.918,0.989,0.994,0.932,1.093,1.061,1.103,0.997,1.074,1.132,1.165,0.882,0.951,1.062,1.075,0.944,0.985,0.943,1.029,1.001,0.879,0.855,0.892,0.967,1.057,1.019,1.117,1.06,0.885,1.05,0.896,0.99,0.987 +XM_378780,1.122,0.981,1.089,0.92,0.91,1.007,0.944,0.957,0.917,0.982,0.893,1.027,0.994,1.023,0.953,0.972,1.087,0.98,1.119,0.891,0.855,0.974,1.08,1.132,0.97,1.039,0.946,1.021,1.098,0.867,1.002,0.825,0.875,1.096,1.168,1.081,1.053,0.918,1.128,1.054,1.09,1.095,1.126,1.309,1.039,0.9,1.097,1.078,0.85,0.984,0.921,1.026,0.761,0.945 +XM_378791,1.057,1.065,0.905,0.904,0.951,1.075,1.012,1.044,0.967,1.091,1.03,1.111,0.969,1.05,0.868,1.063,0.858,1.019,1.181,1.001,0.986,0.877,1.073,1.003,1.006,0.97,0.925,1.031,0.977,1.06,0.895,0.931,0.926,1.179,1.138,1.036,1.007,0.832,1.002,1.063,0.898,0.885,0.977,1.107,0.835,1.072,1.124,1.094,1.033,1.044,1.084,0.98,0.998,0.986 +XM_378793,1.078,0.924,0.904,0.988,1.04,0.925,1.06,0.981,0.928,1.054,0.967,1.025,0.892,1.031,0.837,0.875,0.923,1.017,1.041,0.934,0.921,1.024,1.066,1.0,0.96,0.969,1.098,0.931,1.043,0.979,0.852,0.894,1.243,0.908,0.83,0.876,1.05,0.9,0.929,0.996,1.023,0.943,0.915,0.896,1.022,1.097,1.029,0.933,1.057,0.847,0.894,1.015,1.004,1.045 +XM_378794,0.949,1.148,0.916,0.946,0.914,1.031,1.143,0.999,0.959,0.904,0.89,1.009,1.12,1.047,0.865,1.003,0.968,1.153,1.008,1.004,1.022,1.013,0.807,0.912,1.063,0.947,1.022,1.021,0.815,0.995,0.892,0.981,0.961,1.048,1.038,1.0,1.021,1.084,1.0,1.054,1.064,0.969,0.991,0.843,1.056,1.016,1.104,0.922,0.913,1.058,0.901,0.913,1.094,1.074 +XM_378795,0.958,1.039,0.927,0.95,1.029,1.009,1.089,0.993,0.939,0.96,0.914,0.974,0.919,1.041,1.077,0.945,1.114,0.962,1.058,0.865,0.951,0.951,1.052,0.987,1.07,0.926,0.9,1.106,0.999,1.16,1.039,0.87,1.067,1.002,1.026,1.002,1.001,0.938,1.032,1.047,0.91,0.981,1.015,1.057,1.008,1.116,0.925,1.069,0.946,1.136,1.041,0.92,1.042,1.054 +XM_378801,0.92,1.037,1.008,0.982,0.944,0.993,0.938,1.008,0.979,0.946,1.072,1.08,1.003,0.987,1.364,0.904,0.797,0.931,1.007,1.082,1.216,0.988,1.064,0.989,1.148,1.0,0.968,0.929,0.717,0.912,1.053,1.054,0.929,0.834,0.961,1.066,1.104,1.069,1.047,1.057,0.923,1.047,1.131,1.043,1.035,1.07,0.977,0.99,0.993,0.933,0.851,0.994,1.036,0.995 +XM_378806,0.919,1.036,1.01,1.012,1.046,1.045,0.803,0.995,1.04,1.086,1.103,1.069,0.996,0.988,0.944,1.096,1.166,0.962,0.954,0.978,1.078,1.02,0.988,0.92,0.968,1.081,1.063,0.96,1.288,1.004,0.98,0.841,1.112,0.997,1.016,0.829,0.916,0.938,0.864,0.916,1.034,0.873,0.985,1.081,1.039,1.013,1.005,0.957,0.985,1.09,1.026,1.049,1.004,1.017 +XM_378831,1.022,0.942,0.954,1.011,0.999,1.087,1.062,0.953,0.909,1.007,1.068,0.912,1.217,1.153,0.969,1.032,0.958,1.0,1.053,0.94,0.979,1.048,0.97,1.039,1.094,0.939,1.016,1.011,1.279,0.948,1.011,1.002,1.095,0.993,1.143,0.921,1.0,1.114,0.995,1.004,0.89,0.843,0.984,0.96,1.003,1.014,1.195,1.028,0.951,0.882,1.028,1.017,0.927,0.933 +XM_378835,1.032,0.958,1.133,1.055,1.048,1.104,0.83,0.963,0.982,0.955,0.905,0.972,0.899,0.781,0.877,0.979,1.153,0.997,1.056,0.897,1.027,1.106,1.139,1.037,1.066,0.88,1.036,0.874,0.751,1.067,0.85,0.995,0.983,0.986,0.99,0.987,1.077,1.06,0.987,0.949,1.16,0.932,1.057,1.052,1.067,1.127,0.858,1.121,0.988,1.006,0.969,0.998,0.976,1.061 +XM_378848,0.928,1.067,1.087,1.783,0.859,1.074,0.686,0.931,2.503,0.862,0.985,0.991,0.95,1.298,2.231,0.972,1.308,0.872,0.957,1.072,0.76,0.97,1.13,1.535,0.784,0.871,1.323,0.919,0.791,0.982,1.277,1.708,1.473,1.291,6.216,1.338,0.918,1.001,1.063,1.347,0.885,0.967,0.959,0.917,0.945,0.859,1.038,1.004,0.9,0.895,0.892,0.959,0.901,2.062 +XM_378852,0.975,1.027,0.971,1.093,0.934,1.0,0.929,1.104,0.937,1.107,1.126,0.991,1.082,1.002,0.955,0.991,1.11,0.891,1.013,0.982,1.016,1.032,0.995,0.913,1.168,1.114,1.121,1.013,1.234,1.072,0.934,0.939,0.904,0.985,1.131,0.985,0.863,0.86,0.905,1.028,1.01,1.01,0.872,1.043,1.205,0.914,1.029,1.089,0.938,0.904,0.952,1.0,1.098,0.977 +XM_378861,0.936,0.974,1.096,0.998,1.252,1.014,0.895,0.96,0.914,1.016,1.098,1.105,1.07,0.996,1.188,1.013,1.05,1.194,1.07,1.096,1.094,0.966,1.241,1.084,0.998,1.012,0.998,1.16,1.171,0.947,1.075,0.965,1.174,1.056,1.074,0.976,1.046,1.203,0.962,0.959,1.127,1.004,0.84,0.927,1.004,1.144,1.053,0.92,1.143,0.876,1.152,0.796,0.954,1.036 +XM_378862,0.89,0.996,0.921,1.016,0.825,1.139,0.861,0.798,1.007,0.896,1.057,1.105,0.926,0.938,1.188,1.055,1.072,1.027,0.924,1.04,0.968,0.889,0.888,1.044,0.826,1.029,0.936,1.062,0.767,0.958,1.066,0.979,1.471,1.008,1.108,1.058,0.974,1.007,0.913,1.084,0.967,0.895,0.9,0.997,0.978,0.817,0.922,0.99,0.988,0.975,1.016,0.966,1.006,0.99 +XM_378865,1.006,1.033,0.876,0.926,1.049,1.17,1.085,0.981,0.726,0.985,1.122,1.139,0.976,1.281,1.16,0.864,1.002,1.112,0.883,0.911,1.164,0.93,0.916,0.984,0.933,1.03,1.068,1.007,1.142,0.979,0.916,1.125,0.986,1.02,1.079,1.029,0.897,1.067,1.132,1.097,0.921,1.096,1.129,0.881,0.968,1.037,0.982,0.962,1.066,1.058,0.973,0.914,0.852,1.039 +XM_378876,1.03,1.198,0.992,0.888,1.081,0.934,1.169,1.136,0.892,0.994,0.923,1.023,0.856,0.918,1.052,1.11,1.077,0.915,1.052,0.961,0.921,1.129,0.951,0.946,1.081,1.084,0.878,1.129,0.946,0.936,1.002,0.826,0.874,1.066,1.04,1.043,0.926,1.058,1.052,0.784,1.076,1.11,0.966,1.131,1.216,1.019,0.974,0.876,0.987,0.932,1.176,1.047,1.118,1.101 +XM_378886,0.936,0.931,1.015,0.964,0.964,1.033,1.057,0.932,0.907,1.043,1.133,1.021,1.038,0.975,1.02,0.904,1.024,1.031,1.006,1.075,0.983,0.863,0.974,1.058,0.959,1.06,0.889,0.998,0.886,1.057,0.953,1.008,0.986,0.941,0.961,1.027,1.011,0.981,0.951,1.0,0.921,0.947,1.007,0.996,0.951,1.136,1.07,0.904,1.009,0.949,0.931,0.9,1.005,1.101 +XM_378892,0.836,1.047,0.866,1.091,1.01,1.195,0.956,0.802,0.919,0.888,1.268,0.8,0.89,0.929,1.079,1.079,0.814,0.983,0.957,1.051,0.938,0.81,1.233,0.903,0.98,0.876,0.782,0.867,0.841,1.013,0.921,1.039,1.538,1.123,0.805,0.926,1.049,0.868,1.242,1.456,0.927,1.102,1.126,1.892,0.939,1.05,1.187,0.914,0.936,0.86,1.056,0.844,0.836,1.116 +XM_378901,2.795,0.839,1.656,1.331,9.895,1.016,0.847,3.941,9.856,1.132,0.85,1.617,1.397,2.662,6.205,2.125,1.173,1.601,1.38,0.939,1.323,3.013,0.987,1.493,0.896,1.441,1.58,9.203,0.817,0.952,11.59,0.849,0.754,0.782,21.38,0.813,0.954,7.006,0.984,0.791,5.059,0.881,0.833,0.786,1.212,0.833,1.513,8.319,0.91,2.685,1.04,1.038,0.994,0.851 +XM_378912,0.95,1.149,0.917,1.058,1.107,1.069,1.202,0.969,1.004,1.102,0.955,1.103,0.944,0.914,0.861,1.041,0.972,1.052,0.97,0.927,1.014,0.915,0.989,1.009,0.971,1.028,1.006,1.078,1.291,0.983,0.918,0.897,1.024,0.962,0.986,1.063,1.104,1.123,0.946,1.081,0.993,0.837,1.088,0.892,1.091,0.964,0.961,0.971,1.047,1.224,1.027,0.928,1.029,0.912 +XM_378917,1.056,1.041,1.099,0.911,0.92,0.936,0.885,1.058,1.113,1.007,0.974,0.941,0.957,0.824,1.006,0.91,0.941,1.013,1.096,0.898,0.886,0.949,1.007,0.899,0.849,0.839,1.074,0.999,1.604,1.102,0.88,0.859,0.964,0.999,0.952,1.096,1.051,0.979,1.078,0.934,0.954,0.888,0.813,1.004,1.01,0.968,0.867,0.873,0.974,0.973,0.989,1.215,1.127,0.943 +XM_378930,0.908,0.89,0.895,1.056,1.168,0.898,1.152,1.136,1.118,0.875,1.051,1.025,0.885,1.066,1.099,0.984,0.915,0.997,1.082,1.072,0.996,0.82,1.012,0.959,1.149,1.11,1.002,0.947,0.985,0.943,0.996,0.992,1.098,0.92,1.0,1.106,1.024,0.948,0.986,0.984,1.165,1.148,1.425,1.079,1.0,0.962,0.987,1.034,0.996,0.904,0.999,0.879,1.087,0.861 +XM_378933,0.872,1.402,0.921,1.164,0.764,1.037,1.001,0.837,0.858,0.814,1.161,0.927,0.894,0.73,0.804,0.96,1.024,1.051,0.83,1.069,1.023,0.885,1.34,0.985,1.046,1.003,0.873,0.934,0.882,1.249,1.05,1.659,1.311,1.477,0.933,1.112,1.134,0.936,1.088,0.842,0.996,1.281,0.948,0.994,0.965,0.875,0.814,0.76,0.924,1.005,1.071,1.105,1.207,0.84 +XM_378976,0.744,1.046,0.641,0.862,0.763,1.817,0.852,0.833,0.877,0.618,1.538,0.795,0.812,0.754,1.041,1.272,0.685,1.004,0.786,1.218,0.725,0.855,1.648,0.758,0.729,0.967,0.839,0.871,1.151,1.576,0.881,1.269,1.143,1.675,0.884,0.855,1.121,0.78,1.501,1.033,0.614,1.171,0.924,0.952,0.693,1.507,0.825,1.061,1.221,0.687,1.115,0.756,0.631,0.848 +XM_378983,1.017,0.988,0.993,0.864,1.149,1.013,0.805,1.004,0.938,0.832,1.099,0.962,0.967,1.039,0.94,0.834,0.831,1.01,0.926,1.116,0.922,1.372,0.833,1.037,1.059,0.893,0.909,1.046,0.815,0.994,1.021,1.183,0.932,1.001,1.203,0.928,0.974,0.901,0.851,0.953,0.882,0.927,0.815,1.212,0.87,0.872,1.021,0.964,0.94,0.957,1.001,1.0,1.013,1.006 +XM_378988,1.015,0.961,0.98,1.102,0.899,1.058,0.929,0.953,1.016,0.898,0.906,1.05,0.944,1.107,0.975,0.961,1.058,0.946,0.86,0.911,0.864,0.925,0.994,0.817,0.978,0.99,1.103,0.976,0.743,1.042,0.968,0.963,0.839,0.983,0.989,1.049,0.913,1.181,1.101,1.007,1.045,1.056,0.942,1.015,1.107,0.803,0.998,1.114,0.977,1.075,0.958,1.191,1.007,0.882 +XM_378993,1.062,1.004,1.068,0.984,0.943,0.918,0.983,0.969,1.053,1.018,1.03,0.948,1.134,1.198,0.979,1.027,0.849,1.193,0.762,1.019,1.161,0.985,0.989,1.087,1.039,1.047,1.005,0.98,2.123,0.978,1.174,1.095,0.906,0.94,1.018,0.963,1.009,1.005,0.923,0.951,0.976,0.91,0.852,0.972,1.168,0.963,0.98,1.01,1.004,0.94,0.958,1.061,1.172,0.998 +XM_379009,1.109,1.099,1.072,1.01,0.926,0.932,0.986,0.917,0.891,0.969,0.95,0.983,0.986,0.949,1.052,1.188,0.999,0.9,0.909,1.067,0.966,0.919,1.118,1.057,1.107,1.127,0.936,0.848,1.008,0.979,0.979,0.861,0.928,0.866,1.003,0.981,1.02,1.027,0.887,0.871,0.831,0.975,1.254,0.899,0.963,0.977,1.03,1.055,1.059,0.976,0.952,0.933,0.914,1.01 +XM_379011,1.004,1.025,1.019,1.081,1.044,0.971,1.038,1.024,1.027,1.14,0.936,0.944,1.099,1.078,1.054,1.028,0.972,0.998,0.853,0.926,0.98,0.951,0.964,1.036,0.964,0.982,1.039,1.022,1.465,1.043,1.02,1.0,0.943,0.94,1.035,1.082,0.975,1.129,1.04,1.0,1.174,1.032,1.227,1.091,1.073,0.911,0.943,0.936,1.136,0.998,1.149,0.946,0.875,1.046 +XM_379016,0.947,1.054,0.841,0.938,0.884,1.113,0.855,0.943,1.151,0.925,1.012,1.099,1.07,1.062,0.964,1.223,0.909,1.026,1.259,0.999,1.03,0.961,1.099,1.053,0.984,0.937,1.028,1.124,0.958,1.15,1.015,1.044,1.023,1.068,1.114,0.924,1.042,0.812,0.937,1.065,1.019,0.989,1.039,1.008,0.972,0.846,0.888,0.992,0.947,0.933,0.973,1.009,0.941,0.921 +XM_379018,1.065,0.924,0.982,0.855,0.964,0.982,0.896,1.0,0.855,0.948,0.943,0.956,0.851,0.907,1.023,1.246,1.009,1.0,0.986,0.933,0.953,0.966,0.978,1.074,0.982,1.011,1.072,0.998,0.768,1.094,1.018,1.179,1.01,1.075,0.866,0.978,1.013,1.056,0.942,1.057,1.031,0.863,0.831,0.903,1.074,1.107,0.986,0.918,0.939,0.931,1.022,0.943,1.008,1.024 +XM_379022,0.968,0.994,1.014,0.994,0.941,0.866,1.045,1.134,0.932,0.963,0.959,1.08,0.871,1.023,0.88,1.031,1.115,1.037,0.993,0.881,1.001,1.019,0.837,1.112,1.004,0.995,1.072,1.026,0.996,0.946,1.131,1.057,0.944,1.018,0.952,0.939,0.903,1.006,1.143,1.056,0.939,0.975,0.975,1.039,0.968,0.898,0.926,0.953,1.036,0.971,0.868,1.039,1.138,1.041 +XM_379023,1.052,1.047,0.97,1.061,1.051,0.903,0.873,0.911,1.008,1.352,1.023,1.081,0.967,1.147,0.85,0.967,1.018,0.927,0.992,1.036,1.065,1.014,1.026,0.961,0.945,0.936,0.777,0.891,0.999,0.877,1.14,0.918,1.074,1.033,1.066,0.951,0.925,1.102,1.096,1.065,0.922,1.173,0.941,0.913,0.896,1.067,1.099,0.967,1.016,1.025,1.167,0.987,0.893,1.007 +XM_379030,1.058,1.139,0.991,1.047,1.019,0.971,0.831,1.135,0.906,1.1,0.933,1.207,1.042,0.993,0.935,0.946,0.983,0.937,0.931,1.154,0.998,1.101,1.042,1.057,0.894,1.194,1.166,0.959,1.295,1.065,1.013,0.95,1.053,0.987,1.027,0.933,1.141,0.942,1.044,0.911,0.96,1.018,0.944,1.004,1.141,0.964,0.964,1.11,1.082,1.045,1.044,1.057,1.084,0.905 +XM_379036,0.77,1.411,0.984,1.004,0.812,1.613,0.903,0.841,0.804,0.719,1.809,0.675,0.831,0.786,0.938,1.866,0.887,0.956,0.795,1.503,0.751,0.742,1.307,0.839,0.837,0.823,1.129,0.849,0.822,1.565,0.755,0.868,1.056,1.817,0.945,0.945,1.397,0.725,1.054,0.716,0.791,1.411,0.956,1.021,0.753,1.409,0.889,0.782,1.025,0.778,1.254,0.844,0.872,1.069 +XM_379055,0.934,1.005,0.927,0.99,1.102,0.928,0.958,0.897,1.035,0.975,0.859,1.132,0.968,0.963,0.931,1.168,0.866,1.05,1.115,0.941,1.059,1.063,1.13,0.999,1.027,1.034,0.954,1.121,0.68,0.849,0.954,0.924,1.02,1.022,1.145,1.016,1.096,0.925,1.094,1.018,1.001,0.97,1.206,0.878,1.111,1.014,1.005,1.045,1.021,0.928,0.959,1.046,1.168,0.937 +XM_379064,0.962,0.949,0.994,0.96,0.949,1.16,0.877,0.993,0.986,0.892,1.057,0.937,1.08,0.879,0.996,0.892,0.917,1.135,1.114,1.002,0.949,1.094,0.916,0.848,0.909,1.13,1.061,1.05,1.11,1.059,1.045,1.074,1.038,1.039,0.994,1.105,0.966,1.039,1.074,0.962,1.061,1.036,1.003,0.974,0.998,0.855,1.075,0.93,0.927,0.973,1.039,0.993,0.98,0.981 +XM_379065,1.015,1.077,0.994,1.102,0.914,1.031,0.79,1.057,0.999,0.942,1.113,0.909,0.977,1.058,1.045,1.016,1.001,0.878,1.006,1.002,1.095,0.929,0.909,1.027,1.033,0.901,1.01,1.038,0.818,0.93,0.969,1.026,0.883,1.001,1.141,1.041,0.981,0.917,0.968,0.921,0.887,0.901,1.151,0.92,1.096,1.151,0.874,1.061,0.982,0.854,1.083,0.899,1.218,1.086 +XM_379073,1.163,0.951,1.131,1.103,1.171,1.275,1.319,1.04,1.167,0.931,0.847,0.93,1.014,1.119,0.585,0.795,1.095,1.231,0.834,0.82,0.941,0.876,0.908,1.063,0.858,0.932,1.007,1.152,1.439,0.864,0.816,1.1,0.996,0.819,1.026,1.235,0.887,0.769,1.361,1.015,0.736,1.05,0.926,0.791,0.878,1.121,1.059,0.919,1.169,1.208,0.956,1.034,0.903,1.069 +XM_379078,0.989,1.085,1.053,0.826,1.012,0.825,0.775,0.969,0.985,1.023,0.939,1.118,1.053,0.862,0.798,1.009,0.936,0.972,0.943,0.948,1.083,1.018,0.87,0.961,0.946,1.061,1.039,1.087,0.754,1.105,1.033,0.996,1.209,0.878,1.026,1.12,0.97,0.986,0.997,1.07,0.943,1.011,1.017,1.053,1.033,0.82,1.174,0.909,1.023,0.965,0.982,0.901,1.008,1.016 +XM_379079,1.14,1.017,1.202,1.264,1.116,1.057,1.221,0.95,0.831,1.044,0.878,0.986,0.979,1.138,1.2,1.014,0.916,0.878,1.052,0.86,0.946,1.094,0.842,1.26,1.127,0.824,0.893,0.894,1.28,0.977,0.961,0.784,1.099,1.14,1.001,0.718,0.913,1.09,1.143,1.207,0.85,0.835,1.356,0.975,1.033,0.9,1.002,1.045,0.904,1.037,0.963,0.923,1.077,0.977 +XM_379085,1.002,1.071,0.987,0.957,0.851,1.038,1.087,0.932,0.958,1.029,0.878,0.917,1.171,1.007,1.027,1.134,0.853,1.117,1.117,0.916,1.076,1.027,0.934,0.934,0.939,0.961,0.944,1.047,1.08,0.985,1.055,0.851,1.042,1.182,1.066,0.94,1.04,0.887,0.957,1.027,0.998,0.822,0.953,1.141,1.017,0.985,0.945,1.053,0.882,0.898,0.971,1.156,0.956,0.91 +XM_379086,0.98,0.914,1.102,1.021,1.077,1.142,1.157,1.003,1.059,1.102,0.955,0.968,1.165,0.984,0.988,1.025,0.894,0.981,0.862,0.999,1.043,1.035,1.053,1.191,0.959,0.961,0.924,1.014,0.933,1.033,0.963,1.203,0.887,1.074,1.106,0.888,0.973,0.959,1.098,1.087,0.993,0.962,1.182,1.128,0.983,0.872,0.911,0.946,1.085,1.081,1.138,0.872,0.943,0.973 +XM_379098,0.823,1.029,1.17,1.046,1.016,1.032,0.825,1.052,1.042,0.942,0.871,0.953,1.072,0.841,1.06,1.143,0.889,0.842,0.988,1.004,0.886,0.987,1.06,0.94,1.059,1.178,1.001,0.884,0.845,1.0,1.013,0.938,1.008,0.905,0.91,0.939,0.967,0.983,1.012,1.023,1.16,1.021,0.807,0.896,1.032,0.869,1.14,1.043,0.929,0.976,0.928,0.827,1.038,0.914 +XM_379102,1.185,0.862,0.968,0.971,1.046,0.948,0.904,1.022,0.879,0.855,0.873,1.019,1.071,0.98,0.961,1.034,1.106,0.994,1.127,1.047,1.052,0.953,0.921,1.013,1.046,0.908,0.908,1.072,0.835,1.028,1.125,0.955,1.075,1.018,1.057,0.839,0.872,0.987,0.955,0.994,0.961,1.078,1.013,0.919,1.133,1.017,0.967,1.025,1.022,1.271,1.038,1.014,0.989,1.008 +XM_379113,0.892,0.958,0.975,0.867,1.021,1.022,1.051,1.077,1.183,1.1,1.029,0.946,1.015,0.92,0.917,1.03,1.021,0.999,0.888,0.925,0.934,0.976,1.084,0.976,1.031,1.132,1.016,0.995,1.041,0.963,0.97,1.018,1.084,1.071,1.052,0.985,1.051,1.076,0.919,0.942,0.977,1.006,0.978,0.996,0.899,0.935,1.065,0.982,1.072,1.144,1.02,1.119,1.081,0.899 +XM_379123,0.957,0.923,1.003,1.016,1.024,1.084,1.042,0.95,0.989,1.06,0.97,0.996,0.866,1.016,0.925,1.055,1.025,0.959,0.927,0.982,0.795,0.861,1.034,0.932,0.98,0.937,1.007,0.968,0.807,1.0,1.115,1.019,1.07,1.002,0.989,1.131,1.07,0.911,0.999,1.031,0.921,1.201,0.885,1.071,1.049,1.037,1.041,1.005,0.958,0.934,0.952,0.994,0.998,1.004 +XM_379141,1.188,0.914,0.946,1.003,0.945,0.878,1.271,1.175,1.067,1.06,1.102,0.988,0.957,0.972,0.98,0.959,0.974,1.005,1.024,0.922,0.99,0.93,0.925,1.091,1.051,1.126,0.998,1.088,0.845,0.905,1.021,0.94,1.0,0.979,0.989,1.069,0.926,1.118,0.989,1.155,0.987,0.987,1.076,0.876,1.041,1.036,0.98,0.979,0.974,0.927,0.998,1.044,1.064,0.996 +XM_379145,0.962,1.234,1.157,1.026,0.974,1.156,1.062,0.92,1.13,1.303,1.134,0.982,0.975,1.121,1.135,0.909,0.886,1.142,0.995,1.004,0.964,0.929,0.968,0.937,1.083,1.007,0.902,0.969,1.335,0.935,1.087,0.954,1.049,0.985,1.196,0.976,1.149,0.848,0.806,0.88,1.062,1.143,0.896,0.96,1.013,1.185,1.177,0.913,1.05,1.046,0.964,0.979,1.174,0.892 +XM_379146,0.928,1.075,1.058,1.051,0.898,1.026,1.292,1.015,0.994,0.93,1.153,0.961,1.142,1.117,1.139,1.172,1.2,0.962,0.904,1.119,1.088,0.936,0.896,1.084,0.912,0.988,1.028,0.941,0.948,1.108,1.129,1.0,0.972,0.873,0.981,0.965,1.0,1.082,1.013,1.048,0.944,1.218,0.954,0.898,1.178,1.042,1.145,1.051,1.001,1.152,1.069,1.086,0.889,0.937 +XM_379147,0.892,1.002,1.011,0.83,1.056,1.124,0.974,1.079,1.095,1.074,1.058,1.118,0.989,0.911,0.915,0.838,1.127,0.876,1.022,0.721,1.109,0.952,1.188,0.877,0.936,0.984,0.924,1.082,0.78,0.89,0.822,1.111,1.113,1.052,0.969,0.965,1.075,1.01,0.981,1.216,1.046,1.218,1.104,0.852,0.993,1.173,0.901,0.924,0.989,0.949,1.065,0.97,0.93,0.998 +XM_379158,1.044,0.864,1.067,1.057,0.965,1.0,0.732,0.879,0.876,1.023,1.017,1.021,1.035,0.975,0.974,0.863,1.112,1.071,0.986,0.85,1.038,1.058,0.98,0.982,0.932,1.126,0.86,1.046,0.69,0.949,0.906,1.046,0.872,0.899,1.026,0.86,0.921,1.028,1.105,0.973,0.911,0.937,0.961,1.133,0.955,0.93,0.943,1.13,0.95,1.069,0.879,1.065,0.964,1.12 +XM_379166,0.99,1.061,0.833,0.906,1.089,1.001,1.134,1.111,1.023,0.909,0.919,1.039,0.993,0.912,1.014,1.048,1.023,1.026,0.936,1.001,1.057,0.934,0.972,1.05,1.07,1.049,0.877,0.971,1.075,1.018,1.072,0.956,0.981,0.964,1.068,1.036,0.913,1.111,0.941,0.937,1.085,0.936,1.328,0.909,1.036,0.989,1.037,1.016,0.927,1.054,0.957,0.94,0.96,1.117 +XM_379171,0.918,1.158,0.964,0.847,0.839,1.173,0.841,0.978,0.994,1.001,1.158,1.001,0.959,1.139,0.998,0.99,0.953,1.052,0.912,0.999,1.07,1.005,0.975,0.902,0.962,0.902,1.041,1.051,1.365,0.997,0.89,0.98,1.02,1.041,0.914,0.936,1.162,1.039,1.01,1.095,0.926,0.883,1.083,1.001,1.037,1.069,1.081,1.075,0.95,1.003,0.997,0.837,0.883,1.037 +XM_379179,1.017,0.973,0.995,0.892,0.886,0.941,0.926,1.266,0.95,0.889,0.92,1.066,0.998,1.065,1.113,1.026,0.972,0.957,0.973,0.983,1.06,0.999,1.0,0.99,1.0,0.919,0.978,0.969,1.031,1.146,1.019,1.012,0.777,1.007,0.855,0.921,1.089,1.115,1.057,0.927,0.979,0.911,1.072,0.966,0.935,0.977,0.86,1.0,1.057,0.979,1.006,1.013,1.094,0.963 +XM_379184,0.728,1.207,0.946,0.768,0.79,1.385,0.789,0.842,0.852,0.921,1.283,0.804,0.836,0.827,1.168,0.739,0.838,0.849,0.994,1.502,0.786,0.725,1.428,1.054,1.148,0.793,0.928,1.071,0.908,1.635,0.864,0.873,1.024,1.445,0.686,0.774,1.288,0.801,1.172,1.647,0.885,1.438,0.831,0.94,0.883,0.899,1.066,0.653,1.14,0.881,1.053,0.763,0.897,1.112 +XM_379189,1.022,0.884,1.062,1.014,0.993,0.953,1.008,0.884,1.155,0.861,1.02,0.971,0.951,0.889,0.975,1.168,0.847,1.02,1.002,0.903,1.111,1.022,0.95,1.029,1.023,1.026,1.083,0.926,1.702,1.075,0.905,0.965,0.912,0.775,1.041,1.043,1.064,0.946,1.033,1.054,1.137,1.004,1.048,0.92,0.932,1.004,1.011,0.865,1.053,0.999,1.141,0.905,1.092,0.976 +XM_379205,1.073,1.078,0.96,0.933,1.157,1.154,0.924,0.993,1.062,0.959,1.16,0.996,1.066,1.041,0.793,1.136,0.921,1.072,0.973,1.039,1.106,0.892,0.954,1.039,1.01,1.046,1.095,0.887,1.309,0.963,0.914,1.001,0.919,1.106,0.993,1.081,0.941,1.161,1.059,1.204,0.957,1.121,0.957,0.978,0.866,1.065,1.103,1.057,1.116,1.091,0.962,0.969,1.045,0.888 +XM_379215,1.016,1.002,1.098,1.003,0.903,1.059,1.073,0.961,1.136,0.951,0.822,1.006,1.009,1.092,1.023,0.871,1.034,0.932,1.07,1.023,1.053,1.023,0.955,0.887,1.127,0.973,1.064,1.069,0.83,1.006,0.889,0.952,1.046,0.995,1.054,0.992,0.975,1.065,1.026,0.889,1.076,1.029,0.924,0.945,0.977,0.979,1.043,1.038,0.994,0.964,0.89,0.983,0.881,0.978 +XM_379228,0.98,0.801,1.222,0.908,1.034,0.946,0.688,0.867,1.068,1.045,0.942,0.899,0.936,0.88,0.966,1.376,1.052,0.899,1.03,0.975,1.041,1.242,1.049,1.121,0.913,0.963,0.951,1.104,0.955,1.107,0.875,1.848,1.245,1.114,0.914,0.866,0.937,1.184,1.079,0.961,1.106,1.015,1.131,0.8,0.953,0.825,0.979,0.974,0.943,0.969,1.079,0.901,1.426,1.048 +XM_379234,0.862,1.049,1.028,1.07,0.924,1.07,1.07,0.93,0.966,1.039,1.17,1.015,0.94,1.069,0.86,1.118,0.885,0.95,1.007,1.008,1.14,0.901,1.234,0.965,0.934,0.956,0.888,1.202,0.877,1.264,0.889,1.687,0.92,1.191,1.099,1.0,1.036,1.0,1.021,0.958,1.138,1.213,1.024,0.943,0.947,0.933,0.886,0.994,1.067,1.016,1.043,1.103,0.953,0.978 +XM_379235,1.089,1.118,0.994,1.049,0.93,1.138,0.902,1.272,1.157,1.159,1.063,1.076,0.886,0.918,0.999,1.291,0.995,0.976,0.988,0.946,0.878,1.18,1.006,1.144,0.964,0.974,1.005,0.996,1.256,1.013,0.898,0.906,0.999,1.326,1.093,1.015,0.894,0.974,1.006,0.828,1.091,1.093,1.066,1.002,1.234,0.938,1.081,1.042,1.026,0.944,0.906,0.924,0.963,0.943 +XM_379243,0.889,0.961,1.114,0.968,1.054,1.094,0.927,0.872,1.01,0.96,0.95,0.962,1.023,0.914,1.047,1.227,1.046,0.951,1.124,1.043,0.978,1.068,0.939,0.915,0.917,1.044,1.065,0.949,1.128,0.927,0.963,0.907,0.941,1.122,0.987,0.925,0.914,1.103,0.976,1.032,1.136,0.974,0.794,0.942,0.956,0.873,1.034,1.074,0.967,1.074,1.008,1.09,1.254,1.098 +XM_379248,1.031,1.036,1.037,0.928,1.045,0.856,1.051,1.103,0.941,1.06,0.857,0.964,1.008,0.697,0.877,0.857,0.997,1.02,0.814,1.06,0.954,0.987,1.023,1.112,1.023,0.942,1.062,0.957,0.972,0.98,0.914,1.003,0.961,1.014,1.041,0.9,0.983,1.084,0.919,0.876,1.024,1.148,1.039,0.97,0.798,0.983,0.945,0.989,0.961,1.005,0.93,0.925,0.898,1.23 +XM_379249,1.099,0.914,1.084,1.099,1.185,1.011,1.128,0.982,0.884,0.954,1.064,1.084,0.925,1.125,1.08,0.87,0.969,1.005,0.965,1.031,0.931,1.006,1.061,0.907,0.968,0.887,1.02,1.057,1.115,0.917,0.975,1.029,0.812,0.967,1.007,1.078,0.961,0.941,0.992,0.979,0.92,1.027,1.007,0.926,0.99,0.967,0.972,1.164,1.002,1.103,0.968,1.102,1.067,1.062 +XM_379260,1.018,1.025,1.018,1.168,1.143,1.052,0.809,1.021,1.159,0.989,0.914,1.015,1.203,1.627,0.891,0.871,0.937,0.961,1.046,0.908,1.317,1.039,0.905,0.896,1.057,0.838,0.887,1.013,1.179,0.948,0.953,0.854,1.211,1.063,0.998,1.232,0.852,0.956,1.158,1.008,1.055,1.084,0.955,1.181,0.971,1.109,0.99,0.92,1.094,0.92,0.942,1.023,0.815,1.155 +XM_379262,1.063,0.989,1.005,0.852,1.132,0.931,0.891,1.247,0.885,1.098,0.984,0.876,1.086,0.914,0.892,0.968,0.973,1.095,1.072,1.05,1.068,0.928,1.275,1.031,1.04,0.905,0.969,0.986,1.163,0.965,0.902,1.027,1.049,1.048,1.051,0.951,1.015,0.968,1.089,1.166,1.014,0.967,1.012,1.315,0.955,1.01,0.98,0.917,0.918,1.003,1.001,1.016,1.047,0.999 +XM_379273,1.038,0.926,0.919,1.069,1.074,0.925,0.883,0.974,1.09,0.934,1.025,0.979,0.981,1.35,0.958,1.002,0.986,0.961,1.047,0.992,1.011,0.946,0.979,1.026,0.954,1.098,1.065,0.961,0.908,0.99,1.004,1.029,0.958,0.954,1.053,1.058,0.977,1.001,0.933,1.004,1.192,0.93,0.812,0.955,1.009,0.931,0.928,1.14,0.902,0.999,0.841,1.024,1.071,1.041 +XM_379274,1.117,0.847,1.078,0.722,1.447,1.049,0.706,1.719,1.572,0.888,0.841,0.922,1.065,0.964,1.564,1.156,0.953,1.209,0.964,0.987,1.043,1.0,0.883,0.933,0.833,1.028,0.789,1.089,1.046,0.89,1.517,0.754,0.944,1.038,2.93,0.844,0.855,1.435,1.013,1.381,1.831,0.948,0.948,1.06,1.054,0.786,1.11,1.608,0.981,0.757,0.906,0.706,1.189,0.818 +XM_379294,1.015,0.912,1.039,0.782,1.01,1.004,0.86,1.079,1.216,1.042,0.881,1.033,0.873,1.024,0.968,1.01,0.973,1.035,0.914,0.906,1.16,1.023,0.815,1.032,1.02,1.125,1.572,1.181,0.938,1.139,1.2,1.109,0.903,1.022,0.99,0.904,0.901,0.998,1.01,1.034,1.2,1.009,0.875,0.914,1.024,0.819,0.936,0.995,0.782,0.954,1.023,0.94,0.962,1.129 +XM_379298,0.907,1.086,0.901,1.019,1.087,1.145,1.128,0.819,1.196,1.192,1.036,0.944,0.86,0.892,1.208,1.09,0.926,1.037,0.828,0.98,1.076,0.914,1.075,0.909,1.02,0.998,1.023,1.121,1.859,1.144,0.903,0.996,0.847,1.232,1.014,0.965,1.032,0.886,1.019,0.912,1.056,0.849,1.354,0.859,0.969,0.996,0.88,0.897,0.96,0.899,0.93,0.933,0.923,0.948 +XM_379309,1.066,1.145,1.103,0.833,0.921,1.042,0.919,1.02,1.021,1.083,0.943,0.978,1.101,0.948,1.062,1.019,0.997,0.977,1.054,1.012,1.106,1.021,0.953,0.971,0.951,0.897,0.887,1.09,0.845,0.997,0.979,0.925,0.965,1.01,0.971,0.842,0.858,1.092,0.89,0.799,1.076,1.092,1.109,1.025,1.039,1.07,1.204,1.06,0.959,1.051,1.068,1.016,1.035,0.976 +XM_379313,0.87,0.983,1.015,0.946,0.951,1.072,0.939,0.959,1.216,0.966,1.038,1.011,1.009,0.821,1.103,0.946,0.935,0.942,0.943,0.866,1.013,1.086,1.012,0.984,1.097,0.962,1.038,1.036,0.913,0.943,0.912,1.13,0.986,0.931,1.13,0.968,1.049,0.883,1.139,0.937,1.078,0.977,1.106,0.92,0.961,0.973,0.925,0.863,1.068,1.051,1.066,1.001,1.048,1.01 +XM_379320,0.902,1.033,0.971,0.891,0.997,1.055,1.077,0.983,1.029,0.882,1.038,1.048,0.977,1.098,0.759,1.108,1.063,1.114,0.952,0.954,0.942,1.051,1.037,1.02,0.843,1.015,0.969,1.294,1.107,1.187,1.089,0.856,1.157,0.942,1.054,0.907,0.951,1.014,0.881,0.997,0.95,0.885,0.996,0.948,1.107,1.054,1.168,0.915,1.19,1.062,1.052,0.97,1.056,1.025 +XM_379331,1.056,1.046,1.03,0.966,1.024,0.992,1.015,1.009,1.074,0.964,1.021,1.002,1.046,0.944,1.034,0.903,0.991,1.12,1.087,0.968,1.029,0.999,0.996,0.979,1.088,0.959,1.041,0.99,0.937,1.009,0.991,1.033,1.034,0.981,1.063,0.956,1.001,1.092,0.828,0.928,1.027,0.961,1.024,1.022,1.021,0.895,0.966,0.947,0.877,0.918,0.959,0.927,0.992,0.986 +XM_379343,0.948,1.058,0.927,1.075,0.972,0.877,0.936,0.843,0.878,0.933,0.989,1.03,0.998,0.807,0.758,1.097,0.941,0.912,1.002,0.985,0.872,1.058,1.044,0.904,0.873,1.04,0.981,0.977,0.727,0.96,0.928,1.581,1.151,0.99,0.861,0.913,1.14,1.037,1.012,1.07,1.15,0.976,1.031,0.91,0.911,1.087,1.035,1.082,1.088,1.105,1.014,1.195,1.009,0.958 +XM_379355,0.992,1.058,0.903,1.007,1.092,0.92,0.901,1.032,1.028,0.993,0.872,1.084,0.945,1.201,0.825,0.884,1.033,1.118,1.094,0.92,1.078,0.961,1.05,0.893,0.961,1.053,1.0,1.159,0.971,0.965,0.951,0.976,0.911,0.972,0.88,1.129,0.949,1.202,1.001,0.968,0.973,0.892,1.183,0.972,0.955,0.944,1.027,1.06,0.897,1.157,1.033,0.897,0.863,1.014 +XM_379371,1.114,1.057,0.899,1.047,0.998,0.952,0.972,1.04,0.932,0.969,1.053,1.242,1.029,0.981,1.008,0.908,1.077,0.99,0.927,1.069,0.89,0.976,1.116,0.974,1.028,1.0,1.186,1.095,0.868,1.016,0.965,1.032,0.93,0.91,1.024,0.856,1.059,1.023,1.078,0.842,0.906,0.846,0.887,1.063,1.027,1.02,1.012,0.958,0.986,0.949,0.959,0.908,1.059,1.069 +XM_379373,1.023,0.953,1.013,0.902,0.821,1.061,0.741,1.114,0.871,1.159,0.935,1.001,1.163,0.875,0.887,1.047,0.951,0.864,0.963,0.882,0.99,0.893,1.047,0.874,0.97,0.99,1.164,0.976,0.716,1.089,0.904,0.941,1.002,1.059,0.999,1.004,0.896,0.904,1.006,1.059,1.008,1.1,1.032,1.102,1.097,1.023,1.002,1.066,1.031,0.954,1.112,0.902,0.937,1.049 +XM_379382,1.079,1.12,0.983,0.95,1.09,1.114,0.907,1.065,1.01,1.056,1.088,1.036,1.079,0.851,1.049,1.062,0.866,1.037,1.007,0.955,1.045,1.044,1.175,1.001,1.026,1.107,0.945,1.002,0.862,0.939,1.005,1.03,0.946,0.992,1.031,1.106,1.211,0.992,0.976,0.939,1.022,0.894,0.941,1.001,1.174,1.268,0.929,0.954,0.973,0.966,1.132,0.827,0.901,1.141 +XM_379386,0.994,0.925,1.202,0.941,1.087,1.078,1.019,0.955,0.997,0.881,1.076,1.098,1.163,0.849,0.881,0.978,0.91,1.065,0.947,1.041,1.111,1.015,1.069,1.056,1.007,0.875,1.034,1.015,0.983,0.971,1.097,0.973,1.068,1.004,1.081,0.965,0.946,0.941,0.942,0.891,1.013,1.012,1.102,1.008,0.976,1.056,0.959,1.057,0.942,1.069,0.91,0.94,1.01,1.021 +XM_379391,1.135,0.97,1.006,1.098,1.043,0.993,0.858,0.853,0.967,1.127,1.105,0.92,1.01,1.069,0.849,0.948,0.968,0.969,0.869,1.091,0.844,1.036,0.892,1.039,1.033,1.001,1.051,0.897,1.489,0.964,0.991,1.073,1.006,0.988,1.028,1.142,1.061,0.948,1.069,1.111,0.958,1.015,0.965,0.918,0.994,1.074,1.049,1.071,0.918,0.962,1.083,1.101,1.158,1.11 +XM_379392,0.95,1.036,0.906,1.025,0.898,1.064,1.05,1.1,1.014,1.38,1.113,0.981,0.923,1.065,1.213,0.945,1.115,1.211,1.187,1.042,1.062,0.909,0.933,0.916,0.988,1.027,0.878,0.923,1.005,1.046,0.906,0.988,1.054,0.837,1.134,1.043,0.957,0.808,1.011,1.024,0.926,0.909,0.909,1.245,1.063,0.902,0.861,0.984,1.043,0.934,0.926,0.93,0.928,1.055 +XM_379398,0.98,0.948,0.994,1.039,0.969,1.044,0.878,1.028,0.965,1.05,1.108,0.857,0.894,0.881,0.925,0.987,0.907,0.94,0.947,0.998,1.067,0.867,0.996,0.883,0.941,0.993,0.886,0.948,0.796,1.178,0.992,1.854,1.005,1.268,0.987,1.065,1.143,0.855,1.182,2.167,0.924,1.019,0.996,1.108,0.949,0.943,1.083,0.88,1.057,0.965,1.092,1.209,1.095,1.023 +XM_379404,0.953,0.906,1.059,0.901,0.945,0.981,0.727,1.208,0.984,0.98,0.797,1.005,0.889,1.031,0.963,1.133,1.071,0.939,0.999,0.821,0.827,0.998,0.947,1.195,0.945,0.913,1.001,1.091,0.791,1.161,1.312,1.466,2.352,1.136,1.263,0.907,0.853,1.019,1.051,1.104,1.202,0.998,0.837,0.907,1.061,0.908,1.007,0.971,0.877,1.029,0.922,0.921,1.064,1.788 +XM_379409,1.01,0.861,0.929,0.972,1.01,1.009,0.899,1.074,1.017,0.923,0.975,0.926,1.013,0.906,0.968,0.951,0.904,0.949,1.024,1.013,0.918,0.938,0.944,0.974,1.076,1.041,1.103,0.981,1.132,1.023,1.081,1.032,0.994,0.958,1.087,1.068,1.075,0.972,0.946,1.144,1.007,1.102,1.085,1.08,1.01,0.969,1.103,0.952,1.12,0.844,1.008,1.085,0.937,0.923 +XM_379410,0.933,1.045,1.1,1.091,0.873,0.939,1.139,0.989,1.001,0.935,0.969,1.044,1.024,0.916,1.007,1.13,0.918,1.167,1.085,0.97,0.9,0.929,0.945,1.115,0.944,0.962,1.0,0.888,1.052,0.963,0.973,1.022,1.055,0.903,1.11,1.1,0.988,0.88,1.097,0.931,1.008,1.182,1.086,1.012,0.994,1.16,0.958,0.903,0.961,0.982,1.165,0.845,0.964,0.927 +XM_379411,1.034,0.97,0.886,0.913,1.005,1.057,1.307,0.909,0.911,0.885,0.971,1.08,0.825,0.781,0.939,0.952,1.036,0.977,0.87,1.104,0.804,0.973,0.985,0.937,0.975,0.923,1.09,1.079,0.942,1.121,1.086,1.068,0.938,0.954,1.003,1.001,1.013,1.103,1.054,1.031,1.028,0.907,0.954,1.018,1.01,0.875,1.06,0.99,0.993,0.906,0.873,0.882,0.939,1.015 +XM_379413,0.986,0.891,1.083,1.037,1.107,0.973,0.957,0.997,1.006,0.902,1.027,0.947,0.977,0.909,1.104,1.016,0.988,0.98,0.97,0.993,0.905,0.886,1.042,0.972,1.001,1.006,1.06,1.003,0.876,1.125,1.033,1.076,1.039,1.155,1.005,1.046,0.999,1.011,0.867,1.01,1.044,1.008,1.229,1.124,1.068,1.061,0.962,1.01,0.912,0.954,1.075,1.038,0.898,1.094 +XM_379433,0.927,1.069,1.098,0.799,1.141,1.027,1.088,1.031,0.921,1.028,0.999,0.992,0.925,1.085,0.824,0.822,1.069,0.945,0.837,1.059,1.106,0.958,1.024,0.895,0.943,1.17,0.836,1.016,0.772,1.038,0.995,1.031,0.893,0.972,0.968,0.918,1.128,0.908,1.013,1.11,1.106,0.913,0.7,1.001,0.962,0.88,0.99,0.946,1.013,1.093,0.977,1.03,0.882,0.901 +XM_379434,0.973,0.903,1.214,1.044,0.79,0.896,0.92,0.936,0.846,1.069,0.962,1.023,0.929,0.872,0.952,0.863,1.024,0.85,1.094,0.937,1.002,0.973,0.957,0.871,1.001,0.844,1.328,0.989,1.007,1.038,0.948,0.894,1.02,1.02,0.91,0.938,1.106,0.968,0.961,1.087,0.966,1.173,1.005,1.006,1.197,1.072,1.101,0.966,0.964,1.024,0.901,0.94,1.213,1.048 +XM_379441,0.983,1.028,1.136,1.003,0.895,0.988,0.781,0.915,0.925,0.993,1.132,1.007,0.864,1.123,1.03,1.008,1.046,0.898,1.03,1.102,1.032,1.084,0.925,1.08,0.974,0.937,1.018,1.132,0.95,0.945,0.999,0.95,1.119,1.075,1.038,0.972,0.986,1.079,0.934,0.859,1.187,0.815,0.825,1.005,1.028,0.814,1.144,1.021,0.954,1.122,1.03,0.906,1.052,0.942 +XM_379453,1.098,1.046,1.03,0.976,0.949,1.032,1.013,0.823,0.926,1.141,0.889,0.979,1.095,0.967,1.058,0.983,0.876,1.003,0.899,1.041,0.929,1.049,0.985,1.037,0.944,0.97,1.156,1.067,1.011,1.015,1.032,1.021,0.999,0.835,0.974,1.024,0.928,0.96,1.122,1.086,1.028,0.991,0.938,0.944,0.971,1.089,0.947,1.209,1.02,0.963,1.061,1.115,1.18,1.19 +XM_379458,1.095,0.987,1.039,1.013,1.025,0.969,0.828,0.996,0.983,1.109,0.996,1.172,1.032,1.035,1.087,0.938,0.926,0.802,0.933,0.989,1.067,1.031,0.95,0.949,0.994,1.087,0.967,1.023,1.07,0.844,0.898,1.453,1.397,0.873,1.141,1.116,1.003,1.087,0.942,1.128,0.926,0.838,0.9,1.11,1.008,1.037,1.003,0.912,0.995,0.884,0.878,1.089,0.954,1.038 +XM_379460,1.016,0.921,1.096,1.078,1.007,1.114,1.011,1.054,1.027,1.062,1.032,0.992,0.954,1.004,1.019,1.004,0.938,0.897,1.176,1.145,1.061,0.894,1.125,1.074,1.016,0.909,0.923,1.011,1.066,0.965,1.004,0.998,0.871,1.002,0.948,1.222,1.039,0.973,0.976,1.083,1.027,1.003,0.97,1.059,1.035,1.001,0.975,1.022,0.971,0.96,0.876,1.047,0.979,0.993 +XM_379462,1.119,1.057,1.022,0.888,1.06,0.933,0.893,0.96,0.931,1.004,1.06,0.969,0.974,0.916,1.082,1.004,0.848,1.0,1.091,1.097,0.833,0.89,1.041,0.9,1.096,0.982,0.97,0.99,1.12,0.962,1.015,0.907,0.886,0.992,0.997,1.044,1.118,0.965,1.083,0.942,0.956,1.049,0.958,1.249,1.058,1.063,0.924,1.049,1.029,1.089,1.0,0.926,1.043,0.878 +XM_379463,1.886,0.874,2.612,1.171,2.942,0.812,0.797,3.061,5.313,1.581,0.904,1.434,1.741,1.841,1.611,1.452,2.432,1.472,3.001,0.907,1.255,3.156,0.977,2.188,0.982,1.781,2.162,2.038,0.75,0.957,2.117,0.939,1.683,0.901,6.054,0.938,0.952,1.483,0.805,0.955,1.761,0.995,0.998,0.904,2.254,0.947,2.158,3.473,0.948,3.182,0.927,0.877,2.203,0.94 +XM_379543,1.038,0.93,0.999,0.973,0.929,0.953,0.867,0.966,0.993,1.032,0.896,1.093,1.059,1.011,0.881,0.992,1.015,1.036,1.043,1.031,1.073,0.997,1.011,0.976,1.066,0.943,0.96,0.947,0.916,1.001,1.05,1.007,1.001,0.965,1.037,1.004,0.975,1.067,1.003,1.011,0.939,0.855,1.192,1.099,0.948,0.976,1.028,1.043,1.08,1.006,0.996,0.988,0.993,0.899 +XM_379551,1.136,0.995,1.118,1.071,0.893,1.054,1.027,1.124,1.136,0.994,0.993,0.974,0.985,1.101,1.458,1.067,1.118,0.944,0.903,1.144,1.063,0.934,1.067,1.054,1.03,0.996,0.934,1.072,1.021,0.999,0.86,1.245,0.816,1.061,0.891,0.991,1.086,0.824,0.898,1.023,1.032,0.876,1.042,0.929,1.183,0.981,0.862,1.003,1.02,0.893,1.137,0.909,0.917,0.88 +XM_379553,0.972,0.974,1.124,0.863,0.993,1.238,1.113,0.946,1.053,1.002,1.089,0.935,0.894,0.921,0.858,0.953,0.966,0.806,0.859,1.159,0.957,0.948,0.925,0.915,1.053,1.044,0.993,0.917,0.756,1.199,0.998,1.048,1.109,0.936,1.066,1.079,1.013,0.884,1.053,1.092,0.966,1.088,1.114,0.909,0.931,0.911,1.041,0.976,1.002,1.029,1.075,1.028,1.109,1.028 +XM_379583,0.971,1.047,0.929,0.927,0.976,1.068,0.924,1.034,1.014,1.161,1.089,1.123,1.082,0.977,0.813,1.193,1.103,1.014,1.034,0.985,0.999,1.005,0.926,0.936,1.053,1.057,1.066,0.998,0.946,1.023,1.092,0.951,1.067,0.903,1.158,0.973,1.005,0.948,0.888,1.016,0.996,0.914,1.076,0.929,0.985,1.187,1.14,1.091,0.988,1.0,1.05,1.191,0.835,0.874 +XM_379597,1.045,0.899,0.883,1.084,1.079,0.977,1.147,0.997,0.867,1.071,1.066,1.017,1.046,0.881,0.821,0.914,1.068,1.02,0.947,0.842,0.882,1.117,0.898,1.007,0.963,0.989,0.878,1.039,1.153,0.953,0.889,1.0,1.046,0.957,1.163,1.038,0.981,0.872,1.066,0.977,0.994,1.04,1.071,1.097,0.975,1.058,0.907,1.067,1.131,1.124,1.02,0.911,1.019,1.093 +XM_379622,1.013,1.072,1.168,0.953,1.004,1.003,0.848,0.814,1.068,1.04,1.014,1.053,0.909,1.066,1.112,0.905,1.018,0.944,0.893,1.059,1.035,0.995,1.004,1.051,1.004,0.955,0.92,0.984,0.975,1.017,0.944,0.977,0.778,1.121,1.03,1.091,0.966,0.971,1.072,0.98,1.121,0.924,0.91,0.969,1.06,0.946,0.972,1.036,1.023,1.081,0.977,0.823,1.002,0.941 +XM_379623,1.004,0.899,0.958,1.019,0.895,1.266,0.914,1.05,1.21,1.023,1.013,0.903,1.054,0.963,0.865,1.138,0.954,0.957,0.996,0.84,1.023,0.839,1.073,0.865,1.132,1.069,1.005,0.982,0.71,1.105,0.893,0.945,0.903,1.042,0.851,1.241,1.062,0.895,0.976,1.151,0.843,1.062,0.869,0.986,0.963,0.995,0.959,1.041,0.885,0.893,1.078,1.087,0.92,0.964 +XM_379630,1.062,1.058,0.969,0.903,0.837,0.993,1.012,1.053,1.067,1.017,1.259,1.047,1.101,0.892,1.055,0.94,1.0,1.097,1.035,1.146,0.992,0.811,0.927,0.956,1.133,0.942,0.852,0.985,1.43,1.166,0.86,0.899,1.038,0.872,0.958,1.059,1.165,0.847,1.018,0.85,1.243,0.946,0.807,0.884,0.932,1.154,0.933,0.883,1.027,1.049,0.918,1.043,0.944,1.21 +XM_379632,0.949,0.984,1.111,1.247,0.927,1.028,1.378,1.279,1.009,1.002,0.972,1.0,1.077,1.232,1.066,1.01,0.968,1.048,0.937,0.952,1.134,0.924,1.006,0.963,0.846,1.021,0.801,0.88,1.584,1.174,1.038,1.076,1.032,0.939,1.148,1.05,1.066,0.847,1.0,0.986,1.037,1.255,1.166,0.972,0.964,1.07,0.988,1.007,1.08,0.957,1.002,1.135,0.85,0.881 +XM_379640,0.935,1.151,1.083,0.953,0.863,0.994,1.024,1.121,0.979,1.068,1.009,0.913,0.961,1.167,1.072,0.934,1.021,0.966,0.943,1.049,0.986,0.936,1.015,1.033,1.023,0.974,0.939,0.963,0.839,0.88,0.981,0.94,1.063,0.995,1.108,1.042,0.898,0.971,1.009,0.978,1.085,0.998,0.975,0.974,1.063,1.09,1.023,0.95,1.025,1.078,1.064,0.938,0.986,1.034 +XM_379656,1.046,0.999,1.009,0.923,1.041,1.023,0.967,0.892,0.981,0.95,0.989,0.979,0.888,0.975,1.101,1.125,1.016,1.031,1.065,0.964,0.923,0.998,1.031,0.979,1.005,0.901,1.097,1.079,0.641,1.014,1.046,1.125,1.05,0.973,1.009,0.982,1.061,1.101,1.004,0.946,1.004,0.97,1.021,1.051,0.953,0.98,1.08,0.967,1.054,0.929,1.001,1.019,0.986,0.948 +XM_379665,1.123,1.0,1.119,0.874,1.04,0.941,0.998,0.944,0.839,1.005,0.958,0.977,0.838,1.204,0.859,0.891,1.055,1.112,1.069,1.054,0.978,0.915,0.929,0.998,0.93,1.016,0.971,0.941,0.719,0.911,0.902,1.11,0.749,0.88,1.253,1.045,0.915,1.043,1.165,1.035,1.068,1.15,1.175,1.071,1.001,0.931,0.943,1.118,1.044,1.128,0.95,1.053,0.938,1.006 +XM_379667,1.053,1.098,1.06,1.12,1.147,0.939,1.127,1.014,0.993,0.984,0.867,1.138,1.019,1.17,0.935,1.127,0.917,1.064,0.819,0.987,1.193,0.991,1.008,1.05,0.956,1.08,0.917,0.927,1.1,0.922,1.027,1.136,1.146,0.97,1.098,1.127,1.135,0.946,0.916,0.987,0.924,0.915,0.947,0.866,1.065,0.97,1.079,0.944,1.008,0.793,1.015,0.927,1.074,1.035 +XM_379676,0.955,1.114,1.174,0.97,1.266,0.95,0.811,0.769,0.946,1.098,0.929,1.013,0.972,0.925,0.768,0.947,1.103,1.064,0.81,1.046,0.98,0.942,0.938,1.021,0.899,0.931,0.886,1.004,0.958,0.987,1.011,1.09,1.025,1.129,1.167,0.978,0.851,0.932,1.127,1.087,1.032,1.137,1.042,1.005,1.038,0.832,1.013,1.155,1.001,1.119,0.806,0.941,1.082,1.063 +XM_379677,0.927,0.916,0.984,0.986,1.033,1.122,1.544,1.057,1.343,1.066,0.982,1.007,0.917,1.169,1.081,0.961,0.93,1.163,0.959,1.108,0.978,1.064,0.913,0.981,1.046,1.082,0.926,1.033,1.43,1.103,1.011,1.028,0.872,1.09,1.204,0.714,1.098,1.005,0.925,1.062,0.986,0.933,1.027,0.918,0.948,1.211,0.85,0.864,0.812,0.841,0.94,1.007,1.076,1.07 +XM_379680,0.944,0.917,1.086,0.861,0.829,1.134,0.466,0.663,0.968,0.877,1.111,1.044,0.996,0.763,1.12,1.156,1.448,0.88,1.65,0.559,1.102,1.195,0.945,1.263,0.703,1.042,1.393,0.699,0.781,0.92,0.749,1.192,1.023,1.142,0.388,0.987,0.958,1.327,1.469,0.937,1.26,1.122,0.627,1.391,0.904,0.777,1.035,1.153,0.943,1.12,0.832,0.793,0.911,1.338 +XM_379686,1.008,0.862,0.961,1.113,1.078,0.973,0.816,0.86,1.07,1.081,1.072,0.973,0.985,1.085,1.19,1.008,1.175,1.344,1.12,0.951,0.933,0.901,1.051,0.973,1.047,0.877,1.204,1.052,0.91,0.999,0.834,1.106,1.073,0.921,1.085,0.992,1.126,0.834,1.019,0.954,1.079,1.001,0.936,1.099,1.087,0.886,1.005,1.053,1.119,1.015,1.081,1.067,0.886,0.957 +XM_379688,0.908,1.039,1.003,1.021,0.943,1.092,0.903,1.015,0.874,1.01,1.016,1.004,0.946,1.131,0.862,0.996,0.924,0.968,1.084,0.935,0.953,1.209,0.991,0.969,1.033,0.994,1.228,0.988,0.753,1.112,0.941,1.103,1.086,0.922,0.961,1.078,1.02,1.059,0.992,1.219,0.828,0.976,0.948,1.111,0.978,0.937,1.032,1.017,0.995,1.016,0.97,1.066,1.089,0.885 +XM_379696,1.034,0.972,0.888,1.123,0.903,0.922,1.211,1.051,0.898,1.102,0.897,0.828,1.047,0.97,1.029,0.821,1.043,1.067,0.926,1.152,1.056,0.953,0.971,1.01,1.224,1.022,0.839,0.974,1.078,1.128,1.082,0.995,1.018,1.074,1.09,1.005,1.006,1.016,0.907,1.021,0.965,1.132,0.844,0.956,1.013,0.968,0.9,1.01,1.081,1.151,0.946,0.979,0.967,1.054 +XM_379699,1.06,1.104,0.958,0.91,1.034,0.956,1.049,1.106,1.05,0.999,0.934,0.942,0.94,0.919,1.152,0.998,1.145,0.965,1.004,1.07,1.036,1.107,1.032,1.165,0.954,0.975,1.275,1.006,0.821,1.022,0.954,0.985,1.087,0.948,0.957,1.116,0.924,1.013,0.933,1.027,1.021,0.988,1.058,1.005,0.942,0.96,0.834,1.012,0.909,0.918,0.924,0.944,1.086,0.994 +XM_379702,0.978,1.043,1.058,1.069,1.018,1.006,1.019,0.926,0.885,1.072,0.945,0.942,0.942,0.943,0.859,0.979,1.06,0.947,1.068,0.832,1.045,0.959,0.905,1.156,0.97,1.044,1.301,0.979,0.841,0.908,1.157,0.886,1.136,1.099,0.915,1.059,1.104,0.928,1.283,0.92,1.13,0.878,1.018,0.973,1.166,0.938,1.041,0.944,0.962,1.089,0.921,0.972,0.937,1.157 +XM_379717,1.046,1.054,1.059,0.942,0.908,1.064,0.996,0.887,1.108,0.962,0.929,0.974,1.124,0.94,1.27,0.947,1.008,1.012,0.918,1.113,0.904,1.012,0.979,1.017,0.982,1.054,1.196,1.033,0.831,1.012,0.911,1.169,0.904,1.081,0.937,0.848,1.007,1.113,1.105,1.093,0.887,0.937,1.083,1.104,0.93,0.892,1.017,0.91,0.955,1.009,1.053,0.91,0.94,1.115 +XM_379723,1.107,0.931,0.973,1.0,0.929,0.979,1.022,1.11,0.845,0.977,1.067,0.991,1.022,1.042,0.835,1.075,0.92,0.995,0.97,1.09,0.904,1.028,0.968,1.111,0.953,0.934,1.03,0.965,0.859,0.993,1.058,0.871,0.941,1.033,0.995,0.944,1.052,0.955,1.07,1.031,1.0,0.963,1.261,0.958,1.051,1.117,0.861,0.953,0.952,0.905,1.063,1.026,1.052,1.002 +XM_379730,0.969,1.017,0.864,0.935,0.999,0.972,0.908,1.007,0.991,0.988,1.052,1.033,0.913,1.018,1.05,0.869,0.951,0.902,0.895,1.142,0.94,1.048,0.913,1.012,0.895,1.004,0.881,1.089,0.913,1.0,1.063,0.97,0.968,1.013,1.077,1.061,0.879,1.047,1.036,1.002,1.113,0.968,0.907,0.959,1.003,0.965,1.012,1.172,1.074,1.144,0.827,1.028,1.037,1.045 +XM_379766,0.685,1.002,1.264,0.955,0.972,0.868,0.715,0.374,1.063,0.863,1.011,0.394,0.509,0.69,0.892,1.073,0.725,0.896,0.841,1.087,0.521,0.584,1.43,0.596,0.644,0.764,1.004,0.774,0.571,2.001,0.938,1.284,1.635,1.658,0.668,1.784,0.835,0.759,1.546,1.11,0.919,1.13,0.65,2.05,0.752,0.966,1.062,0.792,1.248,0.772,1.079,0.966,0.67,2.02 +XM_379775,1.101,1.074,1.1,1.005,0.941,0.933,1.08,0.923,0.99,0.896,0.864,0.956,0.915,0.958,0.946,1.058,0.774,1.044,0.955,1.011,0.978,0.923,1.105,0.958,0.991,1.011,0.951,0.882,1.069,1.242,0.983,1.2,1.347,0.97,1.002,0.986,0.867,1.029,0.916,1.043,0.985,0.942,1.001,1.26,1.032,0.975,1.0,0.981,0.867,1.048,1.009,0.794,1.12,1.244 +XM_379776,1.085,0.778,0.993,0.882,1.043,0.861,0.723,0.678,0.931,1.05,0.88,0.766,0.803,0.808,0.898,0.945,1.087,0.893,1.016,0.769,1.03,0.905,1.354,0.862,0.842,1.167,1.347,0.868,0.611,0.921,0.977,1.772,2.633,0.989,0.954,1.112,0.7,1.062,1.442,1.05,1.004,0.808,0.611,1.72,1.013,0.911,1.003,1.094,0.851,1.251,1.001,1.142,1.121,1.299 +XM_379780,0.945,1.025,1.07,1.042,0.972,1.059,1.003,0.911,1.056,1.142,1.069,0.915,0.973,1.096,0.98,1.144,0.971,1.1,0.936,0.913,1.03,1.089,1.013,0.902,0.999,0.926,0.919,0.941,0.942,1.092,0.943,1.105,1.3,1.153,1.019,1.006,1.005,0.931,1.195,1.101,0.898,1.036,0.931,1.092,1.026,0.903,0.916,0.99,1.035,0.941,0.957,0.991,0.997,1.025 +XM_379781,1.105,1.04,1.079,0.811,0.938,1.037,0.75,0.924,0.98,0.954,0.994,1.125,0.823,0.908,0.84,1.603,1.174,1.057,0.951,0.922,0.95,0.846,0.908,0.876,1.063,0.997,0.982,0.869,0.665,1.222,0.97,1.017,1.239,0.939,0.929,1.071,1.06,1.019,1.302,1.066,0.879,1.057,1.037,1.118,0.968,0.881,0.829,0.906,1.005,0.916,1.191,1.052,1.017,0.902 +XM_379784,0.94,0.955,0.973,1.061,0.934,1.068,0.956,0.891,0.945,0.896,1.015,0.933,0.881,1.06,1.016,0.981,0.793,0.858,0.953,1.148,0.914,1.105,0.982,0.926,0.956,0.949,1.024,0.939,0.793,1.032,0.979,1.03,1.208,1.115,0.887,0.929,1.001,0.866,1.128,1.004,0.976,1.167,0.94,1.092,0.942,0.993,1.001,0.912,0.998,0.927,1.027,0.883,1.015,1.151 +XM_379792,0.679,0.921,1.298,0.556,0.901,0.725,0.712,0.685,1.372,1.177,0.895,1.166,0.798,0.583,0.893,1.251,0.943,0.867,1.069,1.066,0.597,0.934,1.811,1.288,0.63,0.69,1.376,1.016,0.489,1.251,0.95,2.419,2.896,0.968,0.3,2.078,0.97,0.92,1.584,1.569,1.192,1.112,0.764,2.452,1.134,0.821,1.317,0.532,1.155,0.644,0.973,1.99,1.044,2.398 +XM_379809,0.976,1.137,0.873,0.941,0.973,1.02,0.988,1.116,0.926,0.923,0.98,1.035,0.985,1.363,1.026,1.158,1.006,0.884,1.103,1.005,1.035,0.905,1.133,1.094,0.959,0.916,1.094,1.007,1.278,1.019,0.995,1.019,1.105,1.037,0.895,1.151,1.058,1.058,1.058,1.025,1.075,0.942,1.06,0.938,1.032,1.196,0.931,0.895,0.938,0.872,1.059,0.96,1.031,1.016 +XM_379812,0.993,1.034,1.056,1.096,1.003,0.912,0.891,0.881,1.063,1.077,0.868,0.928,1.14,0.909,1.037,1.021,0.934,0.958,1.057,0.932,1.076,0.969,1.036,0.946,1.026,1.003,0.971,0.896,0.775,1.015,1.146,0.965,0.96,0.962,1.0,1.15,1.038,0.969,0.878,0.972,0.778,1.081,0.749,0.978,0.979,1.029,0.987,1.017,0.963,1.127,0.954,1.034,0.897,0.96 +XM_379818,2.297,0.696,5.341,1.928,1.725,0.643,0.65,2.122,3.091,2.692,0.632,1.128,2.807,1.784,1.876,0.723,3.313,1.76,3.671,0.695,1.714,6.892,0.634,3.231,0.78,5.605,2.727,0.98,0.595,0.723,2.544,0.765,1.271,0.651,2.416,0.632,0.719,4.629,0.777,0.623,2.836,0.716,0.657,1.009,2.645,0.622,1.863,1.981,0.59,2.163,1.443,1.792,5.992,1.168 +XM_379827,1.073,0.997,0.949,0.992,0.923,1.047,0.876,1.09,0.938,0.879,0.88,0.965,1.037,1.091,1.254,0.966,1.028,0.927,0.931,0.937,0.864,0.991,1.092,1.039,0.913,1.07,1.026,0.854,1.006,1.119,1.012,1.077,0.935,0.933,0.768,1.0,1.056,1.043,0.999,0.91,0.842,1.039,1.101,0.947,0.966,0.969,1.0,1.151,1.198,0.919,1.149,0.923,0.971,1.017 +XM_379830,0.77,1.065,0.751,0.798,0.827,1.007,0.798,0.648,0.723,0.754,1.14,0.813,0.674,0.853,0.804,1.099,0.773,0.783,0.63,1.152,0.751,0.703,1.341,0.844,1.09,0.743,0.909,0.885,0.792,1.327,0.789,2.164,1.662,1.183,0.793,1.612,1.14,0.784,1.282,1.908,0.769,1.286,0.982,1.794,0.886,1.093,1.367,0.783,0.993,0.884,0.918,1.254,0.847,1.241 +XM_379836,1.018,0.957,1.027,1.025,1.022,0.949,0.989,1.037,1.041,1.119,0.92,1.012,1.042,0.99,0.956,0.937,1.019,0.848,1.066,1.059,1.1,1.05,0.947,0.969,1.125,0.983,1.001,0.994,0.869,0.893,1.06,0.87,1.029,1.004,0.906,1.07,1.038,0.901,1.059,0.981,0.979,0.968,0.897,1.079,1.078,0.958,1.065,0.95,1.04,1.003,1.007,0.979,1.016,1.025 +XM_379841,1.065,1.018,0.967,0.869,0.992,1.027,1.038,1.188,1.08,1.048,1.016,1.012,0.834,1.026,1.0,1.068,0.978,0.929,0.874,1.001,0.975,0.951,0.963,0.935,0.949,0.927,1.136,1.085,1.136,1.1,1.037,1.058,0.977,0.854,1.08,1.068,0.984,1.034,1.022,0.937,0.996,1.008,0.95,0.996,0.967,1.026,1.026,1.005,0.978,1.01,0.962,1.047,1.089,1.038 +XM_379844,1.021,1.095,1.036,1.087,1.094,1.037,1.062,1.166,1.103,1.05,0.89,1.075,0.924,0.993,1.178,0.948,1.012,1.209,1.023,1.106,0.975,0.94,0.967,1.097,1.01,0.962,1.02,1.044,0.942,0.954,1.067,0.94,0.875,0.962,0.931,1.137,0.785,1.078,1.038,0.987,1.017,0.937,1.15,0.952,0.994,0.991,1.029,1.132,0.85,0.907,1.044,0.927,0.942,0.919 +XM_379845,1.021,1.017,0.968,1.088,1.093,1.005,0.843,1.134,0.993,1.079,0.995,1.028,1.037,0.878,1.066,0.923,1.106,0.942,0.974,0.978,0.855,1.036,0.929,0.912,0.997,1.02,0.938,0.967,0.769,1.0,0.952,1.016,0.93,0.957,1.023,0.99,0.985,1.079,1.008,1.048,1.051,0.963,0.881,1.215,0.944,1.039,0.967,1.084,1.077,0.939,0.969,1.072,1.008,1.018 +XM_379846,0.93,1.086,0.939,0.936,0.779,0.932,0.833,1.094,0.984,0.946,0.965,1.037,0.841,1.029,0.854,0.809,1.082,0.987,0.93,0.927,1.083,1.038,0.789,0.89,0.992,1.061,1.081,0.957,0.943,0.992,1.1,1.008,0.99,1.007,1.093,0.883,1.222,0.993,1.03,1.058,0.96,1.012,0.84,0.967,1.289,0.948,0.873,0.932,1.006,0.931,1.03,1.016,0.976,1.013 +XM_379847,1.04,0.917,1.067,0.973,0.993,0.908,0.922,1.052,0.969,1.185,0.876,1.025,1.001,0.95,0.987,1.013,0.93,1.009,0.969,0.867,1.092,0.997,1.128,1.063,1.038,1.138,0.948,1.076,0.843,0.967,0.992,0.936,0.933,0.978,0.985,0.902,1.043,0.93,1.084,0.89,1.05,1.0,0.952,1.029,0.985,1.106,1.111,1.038,1.008,1.003,0.941,1.054,0.877,0.975 +XM_379850,1.033,1.084,1.055,0.821,0.895,0.935,0.994,1.12,1.12,1.036,0.918,0.927,0.9,1.037,0.811,0.991,1.036,0.92,0.959,0.865,1.029,1.036,0.948,1.001,1.087,1.065,0.916,1.097,1.408,0.927,0.974,0.997,0.965,0.938,1.014,0.924,0.948,0.974,1.011,0.973,1.08,1.041,1.073,0.938,1.008,1.024,1.007,0.926,0.958,1.039,1.021,0.85,1.008,0.959 +XM_379881,1.045,1.329,0.929,1.027,0.89,1.06,1.127,0.844,1.032,1.105,0.981,0.792,0.998,0.87,0.974,1.009,1.035,0.941,0.898,1.082,0.868,0.944,1.122,0.961,0.905,0.813,0.938,0.955,1.142,0.99,1.085,0.991,1.288,1.112,1.107,0.907,1.15,0.93,1.096,1.179,1.126,0.944,0.777,1.184,1.076,1.059,0.864,0.904,0.983,0.749,0.907,0.82,1.041,1.135 +XM_379883,1.004,0.968,1.006,1.11,1.073,0.988,0.938,0.95,0.991,0.892,0.917,1.042,1.002,1.041,0.934,1.012,1.038,1.028,0.948,0.893,1.024,0.982,1.107,1.014,1.044,0.993,0.951,1.015,0.94,1.151,1.051,1.042,1.025,0.894,1.007,0.999,1.107,0.964,0.972,0.898,1.083,0.974,0.864,0.851,0.979,0.939,1.013,1.054,1.06,0.923,1.019,0.955,1.069,0.959 +XM_379893,0.805,0.966,1.267,0.776,1.102,0.834,0.582,0.966,1.011,0.899,0.804,1.12,1.035,0.778,1.175,1.104,1.21,1.235,1.256,0.712,0.858,1.152,1.174,1.436,0.708,1.225,1.232,1.043,0.672,0.988,0.995,1.306,1.743,0.767,0.79,0.939,0.848,1.054,1.335,0.989,1.288,0.889,0.747,1.067,1.234,0.808,1.476,1.145,1.127,1.193,0.977,1.1,0.943,1.223 +XM_379896,0.962,1.008,0.951,0.944,0.94,1.04,0.814,1.16,1.007,0.871,1.223,0.91,1.061,1.031,1.238,1.083,0.926,0.937,0.889,0.966,0.853,0.953,1.019,1.046,1.158,1.011,1.02,0.949,1.263,1.223,1.069,1.202,1.667,0.915,0.789,1.008,1.161,0.855,1.106,1.319,0.913,1.11,0.926,1.033,0.792,0.98,0.813,0.866,1.045,1.0,1.166,1.182,0.934,1.556 +XM_379899,0.934,1.013,1.063,0.858,0.84,1.07,1.043,1.01,0.968,1.061,0.94,1.136,1.034,0.857,1.216,1.037,1.02,0.98,1.151,0.787,1.116,1.08,1.076,1.124,0.904,1.101,0.951,1.13,0.978,1.047,1.082,1.083,1.048,0.998,1.075,0.945,0.878,1.169,0.963,0.88,1.053,0.903,0.964,0.797,1.061,0.916,1.014,1.058,0.837,0.982,0.961,1.108,1.07,0.927 +XM_379901,0.911,1.131,1.058,1.008,1.082,0.915,0.908,0.897,0.996,1.021,1.154,0.986,1.023,0.866,0.911,0.951,1.161,1.018,0.91,0.941,0.89,1.014,0.938,0.921,0.908,1.038,1.03,0.992,0.684,0.957,1.002,1.161,0.916,0.896,1.062,1.055,0.972,1.016,1.194,1.191,1.009,1.033,0.952,1.046,0.979,0.859,1.048,1.012,1.108,0.953,0.829,1.075,0.877,1.086 +XM_379904,1.016,0.991,1.005,0.885,0.999,0.952,1.056,0.962,0.962,1.003,1.026,0.928,0.92,0.984,1.52,1.378,1.001,0.907,0.96,1.332,0.973,0.93,2.128,0.888,0.931,0.905,0.991,0.893,0.97,1.006,0.844,1.031,1.434,0.962,0.943,1.017,0.89,0.992,1.062,1.517,0.894,0.897,0.845,1.009,1.149,0.998,1.139,0.9,2.351,0.91,1.096,3.242,0.912,2.657 +XM_379905,0.4,1.301,0.42,1.587,0.367,7.161,0.985,0.388,0.421,0.418,9.017,0.483,0.451,0.498,8.1,8.396,0.4,0.841,0.401,7.404,0.415,0.442,11.65,0.388,0.475,0.4,0.424,0.414,0.385,6.176,0.373,0.397,2.147,1.865,0.648,4.932,8.366,0.426,10.75,1.148,0.488,6.313,0.317,2.848,0.405,12.07,7.942,0.403,10.58,0.415,12.98,8.954,0.447,1.331 +XM_379909,0.587,1.106,1.15,0.629,0.907,1.468,0.699,0.639,1.235,1.122,0.742,0.845,0.682,0.647,0.982,1.44,0.951,0.72,0.744,1.116,0.594,1.008,1.554,1.218,0.616,0.592,1.522,0.782,0.517,1.557,1.105,1.498,3.082,1.234,0.414,0.696,0.908,0.992,1.353,1.173,1.054,0.95,0.454,0.9,1.02,0.915,1.2,0.664,1.225,0.704,1.199,1.085,0.617,2.218 +XM_379917,0.96,0.958,0.897,1.055,0.972,1.041,0.94,1.122,0.906,1.092,0.893,1.072,1.085,1.158,1.006,0.915,0.983,1.165,1.022,1.174,0.837,1.108,0.996,1.135,1.008,1.073,0.858,0.8,1.097,0.999,1.026,1.002,0.865,1.081,0.994,0.882,1.01,1.133,1.114,0.984,0.96,1.103,1.4,0.753,0.918,0.945,0.946,1.132,1.091,0.902,0.927,0.813,0.845,0.982 +XM_379920,1.241,0.742,1.849,1.346,1.203,0.919,0.725,0.876,2.388,0.938,0.766,1.031,0.727,1.523,1.162,0.663,2.412,0.891,1.156,1.166,0.841,1.018,0.927,1.797,0.726,1.613,3.128,1.294,0.511,0.865,1.777,1.222,1.445,1.002,3.281,2.009,0.726,0.781,0.845,1.757,1.112,0.817,0.773,0.888,1.122,0.673,0.81,1.099,0.719,1.341,0.81,0.823,1.21,2.041 +XM_379921,1.062,1.032,1.052,0.978,1.046,1.0,0.883,0.857,1.155,1.221,1.025,1.005,0.88,0.849,0.856,1.045,0.966,0.948,0.906,1.036,0.898,0.939,1.054,0.916,0.916,0.955,1.09,1.016,1.452,0.941,0.948,1.021,1.09,1.071,1.021,1.002,0.896,1.079,1.19,1.117,1.059,1.105,1.044,1.042,1.03,0.986,0.957,1.061,1.097,0.961,0.806,0.877,0.986,0.978 +XM_379931,0.92,0.96,0.967,0.885,1.286,1.036,0.932,1.332,1.074,0.957,0.907,0.987,0.98,1.029,0.842,0.896,0.951,1.145,1.023,1.149,0.96,0.856,0.956,0.973,1.019,1.074,1.044,1.027,1.426,1.061,0.989,1.008,0.957,0.992,0.911,1.028,1.017,1.049,0.892,1.003,0.983,1.0,1.181,1.131,0.917,0.956,1.103,0.899,1.01,1.001,1.135,1.146,1.11,0.895 +XM_379932,0.723,1.074,0.733,0.908,0.7,1.278,0.883,0.72,0.724,0.754,1.347,0.783,0.805,0.848,0.92,1.037,0.804,0.989,0.682,1.459,0.696,0.694,1.524,0.738,1.054,0.759,0.717,0.759,0.976,1.33,0.754,1.064,1.21,1.172,0.677,1.693,1.01,0.808,1.368,1.105,0.768,1.234,1.191,1.961,0.836,1.061,0.99,0.731,0.956,0.659,1.373,1.079,0.618,1.166 +XM_379933,1.157,0.868,1.182,0.937,1.081,1.088,0.866,0.926,1.219,0.871,1.026,1.061,1.052,0.83,0.826,0.778,1.134,0.985,0.953,1.055,0.962,1.166,1.179,1.002,0.91,0.831,1.064,1.021,0.895,1.168,0.938,1.102,1.175,0.925,0.954,0.993,1.042,1.018,0.982,0.933,1.102,1.121,0.834,0.944,0.94,0.939,1.263,0.812,1.12,1.047,0.986,0.995,1.027,1.111 +XM_379938,0.655,1.58,0.754,0.941,0.829,1.651,0.999,0.477,1.113,0.631,1.39,0.635,0.463,0.763,1.001,1.035,0.427,1.238,0.692,1.95,0.404,0.69,1.51,1.017,1.31,0.946,0.843,0.985,1.149,2.838,1.053,0.862,1.37,3.261,0.373,0.583,1.201,0.781,1.152,0.696,0.804,1.868,0.531,0.754,0.529,1.107,0.793,0.739,0.582,0.509,1.071,0.632,0.468,1.17 +XM_379939,1.034,1.005,1.145,0.968,0.894,1.018,1.234,1.101,1.031,0.918,0.905,1.0,0.906,0.929,1.321,1.009,0.973,1.05,1.032,0.941,1.038,1.001,1.085,1.066,1.103,0.977,0.944,1.03,0.876,1.01,1.011,0.911,0.965,0.822,1.007,0.915,0.983,0.956,1.021,1.067,0.989,0.897,1.142,0.908,1.003,0.933,1.07,1.024,0.93,1.008,0.928,1.028,0.933,0.996 +XM_379940,1.039,1.029,0.876,0.851,0.902,0.953,1.0,1.058,0.985,0.91,0.958,1.012,1.031,1.152,0.978,1.114,0.918,1.012,0.954,0.967,1.046,1.086,0.832,0.932,1.0,0.921,0.814,1.101,1.481,1.023,0.945,1.068,1.102,0.892,0.966,1.01,1.03,0.914,0.957,1.006,1.037,1.005,1.01,0.935,0.938,1.148,1.182,1.03,0.937,0.956,1.047,0.949,0.945,0.968 +XM_379959,1.177,0.942,1.568,0.43,1.043,1.019,0.828,0.594,1.208,1.496,1.071,0.875,0.888,0.798,1.24,1.03,1.264,1.036,0.439,1.202,0.98,0.772,1.464,0.677,0.758,0.999,0.912,0.891,0.777,1.759,1.22,0.758,1.477,0.99,0.962,1.013,0.818,1.021,1.32,0.428,1.368,0.965,1.042,1.383,0.88,1.333,0.865,1.177,1.001,1.144,0.852,1.258,2.011,1.097 +XM_379966,1.059,1.059,1.092,0.926,0.892,0.934,1.142,1.015,0.94,0.966,1.014,1.015,1.068,1.079,0.87,0.908,0.92,1.075,0.953,1.036,1.038,1.11,0.882,0.949,0.909,1.059,1.002,1.052,0.839,1.014,0.957,0.924,0.979,0.895,1.133,1.107,1.003,1.054,0.915,0.906,0.986,0.956,0.85,1.07,1.188,1.259,0.988,0.963,0.969,0.897,1.007,0.948,1.087,0.988 +XM_379967,1.315,0.87,1.232,1.058,1.076,0.916,0.961,1.068,0.979,1.082,0.842,1.019,1.009,1.04,0.98,0.952,0.999,0.962,1.021,1.036,0.951,1.173,0.954,1.05,0.824,1.428,1.111,1.047,0.845,0.917,1.218,1.047,0.862,0.991,0.927,0.982,0.878,1.486,0.978,0.938,1.348,0.947,0.873,0.926,1.064,1.051,1.044,1.31,1.009,1.014,0.995,0.942,1.092,1.035 +XM_379974,0.86,0.85,0.897,0.915,0.785,0.903,0.977,0.692,1.003,0.963,1.115,0.781,0.684,0.786,1.006,1.059,0.698,0.98,1.031,0.89,0.877,0.691,1.349,0.928,1.014,0.862,0.884,0.9,1.412,1.25,0.854,1.382,1.173,1.116,0.651,1.047,1.056,0.706,1.337,1.123,0.736,1.178,1.03,1.34,0.933,0.991,0.941,0.799,1.004,0.806,1.134,1.015,1.109,1.186 +XM_379976,1.773,0.788,3.829,1.042,1.98,0.714,0.781,1.329,1.952,2.527,0.791,1.489,1.316,1.273,2.524,1.781,1.27,2.152,3.496,0.715,1.747,0.848,0.776,2.293,0.795,1.627,2.716,1.941,0.667,0.85,2.76,0.699,1.562,0.923,0.708,0.727,0.848,1.195,0.759,0.677,2.24,0.739,0.688,0.813,2.602,0.791,1.566,1.599,0.85,3.476,1.243,0.925,2.602,0.915 +XM_379977,0.942,1.031,1.127,1.088,1.066,0.97,1.057,1.024,0.932,1.082,0.982,0.998,0.922,0.925,0.92,0.991,0.9,0.884,1.122,0.994,0.758,0.968,1.012,0.986,1.069,0.98,0.975,1.172,1.205,1.01,1.002,1.08,0.931,0.942,1.127,1.175,1.048,1.009,0.965,0.884,1.065,1.088,0.923,1.098,0.872,1.081,0.882,0.864,0.824,1.036,1.024,0.716,1.155,1.043 +XM_379979,1.106,1.19,0.984,0.972,1.05,0.963,1.15,0.917,0.82,1.005,1.006,1.029,0.89,0.926,0.813,0.941,0.98,0.943,0.92,1.037,1.09,1.057,0.999,1.066,1.135,1.1,1.141,1.007,0.987,1.155,0.999,0.807,0.924,1.022,1.175,0.947,0.963,1.057,0.841,1.007,0.935,0.987,0.88,0.911,1.033,1.186,1.1,0.956,1.106,0.944,1.104,1.262,1.054,0.992 +XM_379980,1.081,0.918,1.141,1.057,1.039,0.94,0.869,1.143,0.96,0.943,0.992,0.936,0.949,0.8,0.992,0.851,0.938,0.919,0.909,0.925,1.001,1.08,0.914,0.92,1.123,0.995,1.056,1.12,0.664,1.118,1.097,1.156,0.744,1.001,0.931,0.99,1.155,0.944,1.011,1.16,0.822,1.0,0.878,0.995,0.989,1.027,1.061,0.96,1.183,0.973,1.051,1.019,0.854,1.046 +XM_379994,0.893,1.173,0.96,0.997,1.014,1.063,0.79,0.833,1.039,0.943,1.071,0.981,1.018,0.796,0.998,0.997,0.934,1.023,0.877,1.014,1.015,0.844,1.007,0.959,1.086,1.005,0.886,0.883,0.886,1.071,0.831,0.957,1.466,1.336,0.823,0.974,1.228,0.987,1.054,0.932,0.869,1.041,0.927,0.99,0.863,1.042,1.002,0.897,0.906,0.906,1.049,0.836,1.063,0.98 +XM_379999,0.96,0.936,1.161,1.016,0.933,1.032,1.178,1.023,1.04,1.308,1.089,0.958,0.909,1.048,0.811,1.017,0.954,1.031,1.048,0.823,0.988,1.052,1.006,0.94,1.046,1.123,0.872,1.009,1.015,1.039,1.065,1.045,0.928,0.957,0.987,0.938,1.01,1.06,0.902,1.17,0.904,0.98,0.935,1.114,1.051,0.963,0.838,0.993,1.061,1.13,0.982,0.915,0.909,1.015 +XM_380015,0.532,0.78,1.778,0.677,1.146,0.859,0.357,0.449,1.499,1.546,0.497,0.437,0.695,0.533,1.127,1.872,1.211,0.95,1.273,0.894,0.295,0.676,1.879,1.479,0.317,0.673,2.636,0.842,0.0274,0.999,1.305,1.583,2.958,1.196,0.16,0.547,0.697,0.958,2.176,0.507,1.437,0.76,0.0333,1.303,1.328,0.762,1.244,0.736,1.451,1.108,1.157,0.754,0.579,2.164 +XM_380018,0.691,0.984,1.235,0.702,0.883,1.364,0.723,0.66,1.124,0.826,0.93,0.774,0.649,0.982,0.77,1.126,0.822,1.071,1.057,0.874,0.748,0.88,1.548,1.173,0.801,0.671,1.133,0.683,0.457,1.525,0.9,1.564,1.962,1.342,0.407,0.715,1.209,1.007,1.178,0.949,0.949,1.313,0.711,1.87,0.865,0.834,0.977,0.54,0.888,0.672,1.013,1.579,0.976,1.499 +XM_380019,1.088,1.085,0.999,1.063,0.955,1.066,1.068,1.062,0.919,0.991,0.968,0.989,0.978,1.248,0.965,1.016,1.057,1.101,0.878,1.019,1.019,1.109,1.049,0.945,1.093,1.024,0.958,1.055,1.185,1.149,1.128,0.916,1.066,1.064,1.05,0.947,0.948,0.885,1.023,0.932,1.128,0.971,0.903,1.065,0.983,0.965,0.987,1.01,1.071,0.944,1.206,1.014,0.995,0.969 +XM_380026,0.937,0.913,0.899,0.98,1.112,1.044,0.737,0.941,0.884,1.046,1.079,0.928,1.114,0.936,0.87,1.11,0.879,0.939,0.982,1.021,1.008,1.036,1.203,1.003,1.059,1.104,1.007,0.928,0.851,0.985,1.159,1.088,1.01,1.025,0.942,1.029,0.894,0.889,1.057,1.032,0.95,0.977,0.831,1.035,1.058,0.95,0.903,1.101,0.941,0.951,1.1,1.04,0.984,0.963 +XM_380042,0.479,1.254,1.453,0.404,1.319,1.09,0.638,1.294,1.346,1.095,0.636,1.677,1.441,0.349,0.843,1.83,0.997,1.207,0.971,1.131,0.289,1.13,1.499,1.463,0.396,0.676,1.544,1.337,0.276,0.747,1.239,1.057,1.326,1.027,0.534,0.679,0.664,1.167,1.332,0.728,1.239,1.352,0.322,0.59,1.375,0.505,1.205,1.145,1.003,1.053,0.866,0.587,0.49,1.186 +XM_380048,0.911,0.939,1.084,0.903,1.032,1.058,1.06,0.969,0.994,1.085,0.925,1.016,0.955,0.928,1.027,1.163,1.084,0.97,0.964,1.011,0.896,0.864,1.03,0.952,0.928,0.914,1.238,0.996,0.856,0.909,0.985,1.17,1.028,1.051,1.322,0.911,0.871,0.941,1.097,0.957,0.931,1.059,0.885,0.998,1.053,0.897,0.999,1.081,0.943,1.077,0.994,0.943,0.919,1.067 +XM_380055,1.02,1.036,0.931,0.855,1.017,0.981,0.944,1.111,0.958,0.904,0.965,0.962,1.155,0.965,0.931,0.849,1.075,0.878,1.159,0.95,0.969,0.817,1.035,0.884,0.972,1.012,1.024,1.189,0.643,1.022,0.885,0.971,0.876,1.037,0.906,0.982,1.038,0.999,1.059,1.09,1.101,0.964,0.831,1.085,0.99,0.921,0.987,1.114,0.993,0.981,1.079,0.936,0.997,1.06 +XM_380056,1.015,0.956,1.033,0.954,0.95,1.032,1.042,0.94,0.984,0.917,1.038,0.992,0.994,1.07,1.092,1.093,0.951,1.004,1.026,1.11,1.064,1.017,0.996,0.887,0.976,0.995,1.06,1.03,1.093,1.088,1.035,0.911,0.993,0.848,1.026,1.03,1.042,0.933,1.172,1.006,1.156,1.079,1.147,1.017,0.91,1.123,1.104,0.928,1.061,1.025,0.94,1.085,0.887,1.004 +XM_380057,1.022,0.965,1.041,1.181,0.924,1.059,0.838,0.961,1.08,1.013,1.04,1.08,1.104,0.943,1.041,1.173,0.984,0.993,1.107,1.049,1.124,1.066,1.052,0.962,0.973,0.943,0.996,1.0,0.715,1.027,1.116,1.009,0.95,0.954,1.046,1.167,0.966,0.909,1.022,1.001,1.076,0.876,1.077,1.119,0.923,1.051,0.864,0.931,0.979,1.095,1.109,1.046,0.964,0.904 +XM_380059,1.072,1.03,1.002,1.162,1.015,0.999,1.123,1.12,1.022,1.017,0.969,1.079,1.057,1.084,1.025,1.202,0.926,0.945,0.982,1.006,1.133,0.962,1.11,1.172,1.041,0.855,1.065,0.861,1.087,0.974,0.898,0.878,1.016,1.061,1.074,0.921,1.162,0.894,0.94,1.015,0.937,0.944,1.214,1.145,1.039,1.042,0.826,0.936,1.044,1.019,0.943,0.945,1.001,1.08 +XM_380063,0.913,1.068,1.05,0.941,0.856,1.065,0.875,1.087,0.864,1.057,0.958,1.022,0.976,0.851,0.984,1.067,0.994,0.919,1.24,1.12,0.947,1.092,1.041,1.106,0.932,0.977,0.97,1.049,0.805,1.13,1.059,1.166,0.999,0.948,1.116,0.968,0.881,1.308,1.036,0.993,1.22,1.005,1.074,0.932,0.978,1.007,1.065,1.01,1.032,1.001,1.026,1.048,0.93,0.966 +XM_380070,1.033,1.093,1.101,1.042,0.994,0.965,0.952,0.944,0.996,1.003,0.927,0.934,0.937,1.076,1.099,1.078,0.949,1.009,1.16,0.974,1.101,0.977,0.992,0.935,1.033,1.05,0.896,0.968,1.367,1.128,1.013,0.942,0.946,0.937,0.94,0.944,1.147,1.007,0.956,0.969,1.028,0.928,1.011,1.058,0.983,0.998,1.015,0.98,1.112,0.992,1.108,1.065,1.052,1.045 +XM_380087,1.027,0.998,1.04,1.011,0.95,0.907,0.867,0.994,1.095,1.051,1.01,1.021,0.956,1.116,1.059,1.037,1.06,1.042,1.022,0.907,0.927,1.089,0.973,0.896,0.994,0.994,1.017,1.02,0.871,0.958,0.899,1.085,0.83,0.968,1.073,1.061,0.986,0.865,0.843,1.019,1.074,0.919,1.068,1.051,0.98,1.122,0.999,0.958,0.94,0.994,1.013,0.947,1.02,0.882 +XM_380091,1.063,1.024,1.097,1.009,0.932,1.025,0.837,1.162,1.049,0.985,0.888,1.062,0.974,1.091,1.027,0.913,0.919,1.081,1.153,1.034,0.978,0.975,0.996,0.996,1.005,1.046,0.996,0.959,0.927,1.108,1.092,0.861,0.995,0.897,0.937,1.008,1.04,0.98,0.945,0.964,1.003,0.97,0.91,1.118,1.02,0.743,0.892,0.992,0.898,1.017,1.154,1.004,0.94,1.022 +XM_380092,0.959,0.97,1.001,0.785,0.928,1.035,1.012,0.931,0.929,0.981,0.975,1.074,0.91,1.112,0.983,0.755,1.196,0.856,1.043,1.075,0.944,0.93,0.991,0.994,0.994,1.058,1.0,1.116,0.68,1.041,0.95,0.947,1.125,0.971,1.033,1.082,1.068,1.013,0.971,0.986,0.839,1.075,1.15,1.066,1.121,1.135,0.967,0.869,0.939,1.025,0.996,0.927,1.056,1.002 +XM_380093,0.845,1.234,1.012,0.944,0.939,1.08,0.998,0.802,0.985,0.985,1.828,0.961,0.985,0.929,1.19,1.546,0.902,1.0,0.744,2.908,0.848,0.909,3.207,0.885,0.928,0.983,0.896,1.003,1.198,0.913,0.761,1.024,1.395,0.955,0.907,1.155,1.169,1.068,0.916,1.165,0.883,1.191,0.916,1.117,1.003,2.807,1.479,0.947,1.88,1.026,1.804,1.277,0.88,1.125 +XM_380094,1.026,0.925,0.999,0.87,1.039,0.904,1.125,0.859,1.005,1.003,0.913,1.072,0.915,0.995,1.143,0.966,1.003,1.022,0.937,1.027,0.845,0.951,0.912,0.993,0.964,1.061,1.157,0.964,0.767,1.055,1.005,0.994,0.925,0.965,1.013,0.95,1.121,1.0,1.049,1.015,0.985,0.952,1.078,0.965,1.019,0.991,1.028,0.989,1.099,0.872,0.95,0.942,0.932,0.918 +XM_380095,1.0,1.022,0.912,1.053,0.859,1.072,1.15,0.771,0.927,0.957,0.844,1.016,1.088,0.957,1.049,1.172,1.027,0.916,0.907,1.008,1.037,1.167,0.983,1.008,0.964,0.925,0.76,1.226,0.777,0.98,1.024,0.948,0.864,1.007,1.17,1.038,0.914,0.934,1.057,1.261,1.019,1.072,1.059,1.1,0.906,0.948,0.886,0.943,1.291,1.163,1.111,0.92,1.186,0.81 +XM_380096,1.043,1.042,0.947,0.996,1.001,0.999,0.914,1.028,0.974,0.975,1.051,1.076,0.973,0.976,1.176,0.967,1.043,0.865,1.077,0.967,1.164,0.964,0.792,0.953,1.083,1.063,1.061,0.913,0.659,0.922,1.021,0.904,1.03,0.892,0.891,0.941,1.04,1.073,1.036,0.948,0.88,0.872,1.05,1.057,0.989,0.982,0.959,1.117,0.853,0.912,1.039,0.969,0.99,0.906 +XM_380099,0.855,1.08,1.127,1.096,1.023,1.135,1.009,1.109,0.897,1.099,1.05,0.917,1.095,1.196,0.939,1.173,0.944,0.983,0.923,1.244,0.978,1.149,1.046,0.996,0.915,0.866,1.026,0.855,0.745,1.143,0.954,0.985,1.07,1.177,1.115,0.832,0.916,0.948,1.131,1.051,0.86,1.159,0.746,0.938,0.899,0.857,0.805,0.945,1.009,0.968,0.828,1.06,1.012,1.078 +XM_380100,0.856,0.776,0.991,1.128,0.886,1.133,1.2,1.098,0.948,1.012,0.956,1.115,1.024,1.004,1.263,1.013,0.967,0.962,0.821,1.192,1.031,1.162,1.057,1.108,1.14,0.892,0.916,0.986,0.735,1.01,0.973,0.989,1.03,1.019,1.079,0.96,0.974,1.145,0.951,0.972,0.918,0.979,1.025,1.086,0.978,0.899,0.955,1.036,0.997,1.089,0.941,1.05,1.06,1.071 +XM_380104,1.102,0.908,1.042,0.952,1.123,0.961,0.876,1.019,1.038,0.992,0.96,1.007,0.969,0.941,1.017,0.977,1.002,1.143,0.939,0.978,1.002,0.986,0.957,0.99,1.013,1.077,0.944,1.007,1.184,1.112,0.997,1.234,0.905,0.945,1.031,1.024,0.913,1.014,1.054,0.885,0.92,1.007,1.024,0.946,0.952,1.018,0.919,0.971,1.236,0.998,1.005,0.821,0.983,0.981 +XM_380105,0.837,0.889,0.988,0.799,1.001,0.938,0.629,0.718,1.255,1.474,0.815,1.101,0.901,0.777,0.95,0.963,1.06,0.785,1.197,0.799,0.834,0.993,1.727,1.381,0.675,0.895,1.125,0.957,0.785,0.96,1.236,1.878,2.047,0.951,0.623,2.36,0.968,0.898,1.175,1.865,0.968,0.881,1.047,2.15,1.388,0.774,1.337,0.782,1.005,1.165,0.958,1.587,1.498,3.404 +XM_380113,0.943,0.977,1.062,0.984,1.114,0.946,1.079,1.186,0.867,1.015,0.965,0.992,1.026,1.001,0.909,1.004,0.994,1.004,1.125,1.054,1.036,1.084,1.029,1.118,0.981,0.97,0.911,0.961,0.966,0.884,1.01,1.059,0.944,1.17,1.034,1.012,1.026,0.973,0.87,1.005,1.088,1.07,1.228,1.024,0.94,0.999,0.986,0.985,1.259,0.926,0.883,1.03,1.006,0.928 +XM_380117,1.023,0.966,0.944,0.922,0.978,1.013,0.774,0.826,0.856,1.046,0.968,0.989,0.985,0.852,1.244,1.042,0.915,0.976,1.186,0.939,1.005,1.047,1.102,0.978,1.035,0.952,0.936,1.012,1.01,0.937,0.935,0.971,1.11,1.093,1.172,1.049,0.91,1.078,1.129,0.912,1.009,1.006,0.887,1.075,1.034,0.906,0.939,1.0,1.093,0.94,1.078,0.887,0.896,1.087 +XM_380131,1.003,1.01,1.042,1.062,1.074,1.066,0.893,0.971,0.892,1.07,0.912,0.951,1.081,0.957,0.878,1.0,1.076,0.963,0.976,0.963,1.003,0.934,1.132,1.116,0.891,0.929,0.949,1.0,1.106,1.01,0.957,1.102,0.989,0.983,1.118,0.996,0.884,0.998,1.007,0.88,0.996,0.986,0.826,0.976,0.977,1.118,0.779,1.054,0.921,1.004,1.121,0.982,1.005,1.086 +XM_380134,0.916,0.889,1.031,0.989,1.033,0.943,0.713,1.025,0.964,0.993,0.92,0.958,1.14,0.911,1.182,0.961,0.948,0.982,1.043,0.935,1.114,0.933,1.133,1.036,0.897,1.001,1.065,1.02,0.786,1.019,0.967,0.943,1.119,1.049,1.016,0.995,0.938,0.947,0.85,1.022,1.066,1.033,0.883,1.049,1.0,0.93,1.01,0.985,1.064,0.937,1.056,1.206,0.954,1.017 +XM_380137,0.856,0.992,0.781,1.087,0.939,1.203,0.905,0.868,0.904,0.866,1.121,1.032,1.114,0.868,0.966,1.001,1.166,1.03,0.873,0.996,0.954,1.002,0.917,1.004,1.002,0.94,0.926,1.025,0.867,0.912,0.991,1.098,1.042,0.858,0.999,0.907,0.977,0.838,1.278,1.042,0.962,1.102,1.554,0.912,1.003,1.103,1.277,0.931,2.059,0.976,1.097,1.303,0.98,0.993 +XM_380138,0.971,0.868,1.011,0.9,0.949,1.025,0.867,1.013,1.056,1.102,1.009,0.875,0.994,0.875,1.001,0.985,0.941,0.828,1.04,1.032,1.045,0.955,1.055,0.962,0.978,1.005,1.084,1.039,0.79,0.967,1.006,0.961,1.011,0.944,0.983,1.013,1.097,0.928,0.909,0.988,1.034,1.001,1.156,0.983,1.062,0.984,1.013,1.121,1.053,1.032,0.954,0.989,1.011,1.043 +XM_380139,0.591,1.033,1.436,0.509,0.9,1.401,0.541,0.863,1.395,0.997,1.053,0.905,0.642,0.602,1.056,1.773,0.841,0.905,1.26,1.201,0.41,0.906,1.419,1.046,0.436,0.543,1.132,1.009,0.428,1.407,1.103,1.25,1.591,1.67,0.216,0.531,1.078,0.92,1.073,0.561,1.093,1.036,0.438,0.752,0.822,0.86,1.063,0.639,0.598,0.624,1.084,0.697,0.821,1.017 +XM_380143,1.04,1.126,0.916,1.179,1.057,0.914,0.854,1.05,0.908,0.931,0.928,1.054,1.006,1.011,0.951,1.004,0.877,0.957,1.178,0.9,0.96,0.934,1.049,0.917,0.999,1.037,1.029,0.953,0.954,1.014,1.081,1.112,0.999,0.965,0.899,1.111,1.001,1.008,1.058,0.864,1.012,1.088,1.348,1.141,0.941,1.07,0.931,1.153,1.04,0.974,0.99,1.016,1.027,1.073 +XM_380146,0.952,1.059,1.015,1.011,0.937,0.999,0.93,0.847,0.949,0.921,0.992,0.968,0.969,1.081,0.732,0.978,0.99,0.882,0.897,1.032,1.048,0.975,0.93,1.025,1.004,0.991,0.935,0.996,0.99,0.996,0.983,1.028,1.082,1.065,1.211,1.019,1.029,1.056,0.986,1.012,0.981,1.059,0.747,1.001,0.993,1.087,1.009,0.954,1.016,0.897,1.029,1.066,1.019,1.119 +XM_380149,0.867,0.934,1.231,1.152,1.065,0.964,1.009,0.859,1.181,0.988,0.98,1.032,1.049,1.075,0.979,0.992,1.001,0.941,0.905,1.129,1.043,0.815,1.14,0.985,1.001,1.003,1.0,1.123,0.89,1.028,1.004,1.159,1.293,1.15,0.857,0.936,0.988,1.122,1.075,1.069,0.979,1.012,0.78,0.921,0.845,1.088,0.905,0.911,0.929,0.925,0.966,0.996,0.97,1.426 +XM_380150,1.063,0.931,1.056,0.999,0.912,0.892,0.9,0.843,0.915,0.971,1.0,1.096,1.09,0.864,1.258,0.89,1.01,1.1,1.004,1.091,0.846,0.955,1.008,1.078,1.008,1.23,0.973,0.97,1.029,0.932,0.954,1.216,0.995,0.948,0.992,0.904,1.069,1.122,1.0,1.066,1.022,1.092,1.106,0.996,1.16,1.167,1.088,0.99,0.95,0.95,1.014,0.926,1.055,0.998 +XM_380151,0.605,0.993,1.158,0.676,0.841,1.136,0.742,0.559,0.753,1.004,0.996,0.78,0.478,0.858,0.857,1.176,0.895,0.865,0.983,1.316,0.655,0.728,1.323,0.968,0.513,0.655,1.053,0.819,0.519,1.528,0.766,1.798,1.345,1.166,0.437,0.727,1.113,0.793,1.22,1.727,1.14,1.266,1.412,0.957,0.821,1.266,1.084,0.733,0.693,0.756,1.462,1.311,1.213,1.165 +XM_380152,0.989,1.138,1.052,1.032,0.989,1.035,0.882,1.243,1.018,0.954,0.83,1.063,1.03,0.823,1.001,0.859,0.927,0.901,1.074,0.941,1.129,1.034,0.978,0.963,0.955,0.969,0.979,1.088,0.79,0.975,1.037,0.97,0.999,1.071,0.899,1.075,1.133,1.092,0.891,1.148,0.971,1.053,0.929,1.045,0.956,0.815,0.998,0.96,0.924,1.006,1.072,1.165,1.023,1.084 +XM_380156,0.917,1.004,1.058,1.099,0.917,1.024,1.04,0.986,1.003,0.998,1.057,0.979,0.955,1.055,0.931,1.084,1.02,1.136,1.006,0.956,1.131,1.003,0.997,0.986,0.931,0.933,0.92,1.016,1.178,0.953,0.994,0.952,0.926,1.066,0.949,0.958,1.077,1.122,0.993,1.025,1.002,0.999,0.861,1.127,1.01,0.92,0.979,1.031,1.025,1.063,0.93,1.065,0.917,0.982 +XM_380159,1.004,1.057,0.877,1.054,0.855,0.992,1.026,0.95,0.877,0.831,0.92,0.995,0.953,0.739,0.834,1.083,1.09,0.874,0.923,1.044,1.121,0.989,1.055,1.047,1.105,1.125,1.073,0.972,1.108,0.968,0.894,0.929,0.954,1.132,0.932,1.007,1.064,1.024,1.165,1.169,1.04,1.009,0.851,1.037,1.205,0.904,0.788,1.051,1.05,0.947,1.051,1.097,1.004,0.913 +XM_380160,1.047,1.01,0.842,1.092,0.919,1.003,0.849,0.882,1.023,0.932,0.867,0.97,1.364,0.972,1.063,0.973,0.981,1.11,1.151,0.977,1.117,0.959,1.02,1.058,1.105,1.015,0.966,0.949,1.172,0.98,1.006,0.992,0.793,0.893,0.91,1.026,1.026,1.13,0.974,1.036,1.24,0.946,1.087,1.239,1.036,1.076,1.065,1.101,1.095,0.886,1.026,0.908,0.81,0.993 +XM_380162,0.867,1.043,0.959,0.857,0.935,0.902,1.036,1.017,1.067,0.97,0.974,1.201,1.033,1.071,0.873,0.926,1.042,0.823,0.849,0.867,0.952,1.042,1.116,0.949,0.958,0.997,1.012,0.925,0.757,1.027,0.825,1.059,1.001,1.065,0.921,1.186,0.977,1.069,1.042,1.045,1.061,1.068,0.819,0.977,0.992,1.049,1.134,0.921,1.074,0.847,1.137,1.178,1.042,0.873 diff --git a/output/preprocess/Gaucher_Disease/clinical_data/GSE124283.csv b/output/preprocess/Gaucher_Disease/clinical_data/GSE124283.csv index 2cd4ee78faaf15e5b6dc712a353e5a0b2fae3dd3..569fda85af03cd558d4444fdfc20afcd71515ea0 100644 --- a/output/preprocess/Gaucher_Disease/clinical_data/GSE124283.csv +++ b/output/preprocess/Gaucher_Disease/clinical_data/GSE124283.csv @@ -1,3 +1,3 @@ -0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -0.0,,,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,, -1.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,GSM3526881,GSM3526882,GSM3526883,GSM3526884,GSM3526885,GSM3526886,GSM3526887,GSM3526888,GSM3526889,GSM3526890,GSM3526891,GSM3526892,GSM3526893,GSM3526894,GSM3526895,GSM3526896,GSM3526897,GSM3526898,GSM3526899,GSM3526900,GSM3526901,GSM3526902,GSM3526903,GSM3526904,GSM3526905,GSM3526906,GSM3526907,GSM3526908,GSM3526909,GSM3526910,GSM3526911,GSM3526912,GSM3526913,GSM3526914,GSM3526915,GSM3526916,GSM3526917,GSM3526918,GSM3526919,GSM3526920,GSM3526921,GSM3526922,GSM3526923,GSM3526924,GSM3526925,GSM3526926,GSM3526927,GSM3526928,GSM3526929,GSM3526930,GSM3526931,GSM3526932,GSM3526933,GSM3526934,GSM3526935,GSM3526936,GSM3526937,GSM3526938,GSM3526939,GSM3526940,GSM3526941,GSM3526942,GSM3526943,GSM3526944,GSM3526945,GSM3526946,GSM3526947,GSM3526948,GSM3526949,GSM3526950,GSM3526951,GSM3526952,GSM3526953,GSM3526954,GSM3526955,GSM3526956,GSM3526957,GSM3526958,GSM3526959,GSM3526960,GSM3526961,GSM3526962,GSM3526963,GSM3526964,GSM3526965,GSM3526966,GSM3526967,GSM3526968,GSM3526969,GSM3526970,GSM3526971,GSM3526972,GSM3526973,GSM3526974,GSM3526975,GSM3526976,GSM3526977,GSM3526978,GSM3526979,GSM3526980,GSM3526981,GSM3526982,GSM3526983,GSM3526984,GSM3526985,GSM3526986,GSM3526987,GSM3526988,GSM3526989,GSM3526990,GSM3526991,GSM3526992,GSM3526993,GSM3526994,GSM3526995,GSM3526996,GSM3526997,GSM3526998,GSM3526999,GSM3527000,GSM3527001,GSM3527002,GSM3527003,GSM3527004,GSM3527005,GSM3527006,GSM3527007,GSM3527008,GSM3527009,GSM3527010,GSM3527011,GSM3527012,GSM3527013,GSM3527014,GSM3527015,GSM3527016,GSM3527017,GSM3527018,GSM3527019,GSM3527020,GSM3527021,GSM3527022,GSM3527023,GSM3527024 +Gaucher_Disease,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Gender,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0 diff --git a/output/preprocess/Gaucher_Disease/code/GSE124283.py b/output/preprocess/Gaucher_Disease/code/GSE124283.py new file mode 100644 index 0000000000000000000000000000000000000000..3f03ff84251bc35f2ff845abd099604650d781b5 --- /dev/null +++ b/output/preprocess/Gaucher_Disease/code/GSE124283.py @@ -0,0 +1,183 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gaucher_Disease" +cohort = "GSE124283" + +# Input paths +in_trait_dir = "../DATA/GEO/Gaucher_Disease" +in_cohort_dir = "../DATA/GEO/Gaucher_Disease/GSE124283" + +# Output paths +out_data_file = "./output/z3/preprocess/Gaucher_Disease/GSE124283.csv" +out_gene_data_file = "./output/z3/preprocess/Gaucher_Disease/gene_data/GSE124283.csv" +out_clinical_data_file = "./output/z3/preprocess/Gaucher_Disease/clinical_data/GSE124283.csv" +json_path = "./output/z3/preprocess/Gaucher_Disease/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re +import pandas as pd + +# 1) Gene expression availability +is_gene_available = True # Illumina whole-genome microarray on fibroblasts -> gene expression data is available + +# 2) Variable availability +trait_row = 2 # 'condition' contains Gaucher vs others +age_row = None # No age field present in the characteristics +gender_row = 3 # 'gender' field + +# 2.2) Converters +def _extract_value(x): + if x is None or (isinstance(x, float) and pd.isna(x)): + return None + s = str(x) + if ':' in s: + s = s.split(':', 1)[1] + return s.strip() + +def convert_trait(x): + val = _extract_value(x) + if val is None: + return None + v = val.lower() + if 'gaucher' in v: + return 1 + if v in {'n/a', 'na', ''}: + return None + # All other specified conditions here are non-Gaucher (e.g., Control, NPC variants) + return 0 + +def convert_age(x): + val = _extract_value(x) + if val is None or val.lower() in {'n/a', 'na', ''}: + return None + # Extract the first number that looks like age + m = re.search(r'[-+]?\d*\.?\d+', val) + if not m: + return None + try: + age = float(m.group()) + if 0 <= age <= 120: + return age + return None + except Exception: + return None + +def convert_gender(x): + val = _extract_value(x) + if val is None: + return None + v = val.strip().lower() + # Map female to 0, male to 1. 'K' (Polish 'kobieta') -> female. + if v in {'female', 'f', 'kobieta', 'k'}: + return 0 + if v in {'male', 'm', 'mężczyzna', 'mezczyzna'}: + return 1 + if v in {'n/a', 'na', '', 'unknown'}: + return None + # Fallback heuristics + if v.startswith('f'): + return 0 + if v.startswith('m'): + return 1 + return None + +# 3) Initial filtering metadata +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction and save +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df) + print("Preview of selected clinical features:", preview) + + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file, index=True) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +requires_gene_mapping = False +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias check and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +note = ( + f"INFO: Genes before/after normalization: {gene_data.shape[0]}/{normalized_gene_data.shape[0]}; " + f"Samples after filtering: {unbiased_linked_data.shape[0]}; " + f"Features after filtering: {unbiased_linked_data.shape[1]}." +) +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=True, + is_trait_available=True, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note=note +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Gaucher_Disease/code/TCGA.py b/output/preprocess/Gaucher_Disease/code/TCGA.py new file mode 100644 index 0000000000000000000000000000000000000000..ff090cbcf5e28d01ecd27c3b4c08ea4755c66207 --- /dev/null +++ b/output/preprocess/Gaucher_Disease/code/TCGA.py @@ -0,0 +1,65 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Gaucher_Disease" + +# Input paths +tcga_root_dir = "../DATA/TCGA" + +# Output paths +out_data_file = "./output/z3/preprocess/Gaucher_Disease/TCGA.csv" +out_gene_data_file = "./output/z3/preprocess/Gaucher_Disease/gene_data/TCGA.csv" +out_clinical_data_file = "./output/z3/preprocess/Gaucher_Disease/clinical_data/TCGA.csv" +json_path = "./output/z3/preprocess/Gaucher_Disease/cohort_info.json" + + +# Step 1: Initial Data Loading +import os +import pandas as pd + +# Step 1: Identify the most relevant TCGA cohort for Gaucher disease (likely none) +subdirs = [d for d in os.listdir(tcga_root_dir) if os.path.isdir(os.path.join(tcga_root_dir, d))] + +# Synonyms/related terms for Gaucher disease; conservative to avoid false matches +synonyms = [ + "gaucher", "lysosomal", "sphingolipid", "glucocerebrosid", "gba", "glucosylceramide", "acid beta-glucosidase" +] + +def score_dir(name: str, keys): + lname = name.lower() + return sum(1 for k in keys if k in lname) + +scored = [(d, score_dir(d, synonyms)) for d in subdirs] +scored.sort(key=lambda x: x[1], reverse=True) + +selected_tcga_subdir = None +if scored and scored[0][1] > 0: + selected_tcga_subdir = scored[0][0] + +clinical_df = None +genetic_df = None + +if selected_tcga_subdir is None: + print(f"No suitable TCGA cohort found for trait '{trait}'. Skipping this trait.") + # Record metadata as not available and mark completed + _ = validate_and_save_cohort_info( + is_final=False, + cohort="TCGA", + info_path=json_path, + is_gene_available=False, + is_trait_available=False + ) +else: + cohort_dir = os.path.join(tcga_root_dir, selected_tcga_subdir) + clinical_path, genetic_path = tcga_get_relevant_filepaths(cohort_dir) + + def read_any(path): + compression = 'gzip' if path.endswith('.gz') else None + return pd.read_csv(path, sep='\t', index_col=0, low_memory=False, compression=compression) + + clinical_df = read_any(clinical_path) + genetic_df = read_any(genetic_path) + + print("Clinical data columns:") + print(clinical_df.columns.tolist()) \ No newline at end of file diff --git a/output/preprocess/Gaucher_Disease/cohort_info.json b/output/preprocess/Gaucher_Disease/cohort_info.json index bfad2ecba87eebaa7912c400bb25a64b2c02c6cf..4f0c29f7b53ba8f005b3213447b82307a96326bd 100644 --- a/output/preprocess/Gaucher_Disease/cohort_info.json +++ b/output/preprocess/Gaucher_Disease/cohort_info.json @@ -1,22 +1 @@ -{ - "GSE124283": { - "is_usable": false, - "is_gene_available": false, - "is_trait_available": false, - "is_available": false, - "is_biased": null, - "has_age": null, - "has_gender": null, - "sample_size": null - }, - "TCGA": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 423 - } -} \ No newline at end of file +{"GSE124283": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": false, "has_gender": true, "sample_size": 143, "note": "INFO: Genes before/after normalization: 31424/20747; Samples after filtering: 143; Features after filtering: 20749."}, "TCGA": {"is_usable": false, "is_gene_available": false, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}} \ No newline at end of file diff --git a/output/preprocess/Generalized_Anxiety_Disorder/clinical_data/GSE61672.csv b/output/preprocess/Generalized_Anxiety_Disorder/clinical_data/GSE61672.csv index b253210a937d30e5ec645bf670a8980f1814cc5d..4b22ff42292e06e3e46870df39aa3a11fdc8a1d9 100644 --- a/output/preprocess/Generalized_Anxiety_Disorder/clinical_data/GSE61672.csv +++ b/output/preprocess/Generalized_Anxiety_Disorder/clinical_data/GSE61672.csv @@ -1,4 +1,4 @@ ,GSM1510561,GSM1510562,GSM1510563,GSM1510564,GSM1510565,GSM1510566,GSM1510567,GSM1510568,GSM1510569,GSM1510570,GSM1510571,GSM1510572,GSM1510573,GSM1510574,GSM1510575,GSM1510576,GSM1510577,GSM1510578,GSM1510579,GSM1510580,GSM1510581,GSM1510582,GSM1510583,GSM1510584,GSM1510585,GSM1510586,GSM1510587,GSM1510588,GSM1510589,GSM1510590,GSM1510591,GSM1510592,GSM1510593,GSM1510594,GSM1510595,GSM1510596,GSM1510597,GSM1510598,GSM1510599,GSM1510600,GSM1510601,GSM1510602,GSM1510603,GSM1510604,GSM1510605,GSM1510606,GSM1510607,GSM1510608,GSM1510609,GSM1510610,GSM1510611,GSM1510612,GSM1510613,GSM1510614,GSM1510615,GSM1510616,GSM1510617,GSM1510618,GSM1510619,GSM1510620,GSM1510621,GSM1510622,GSM1510623,GSM1510624,GSM1510625,GSM1510626,GSM1510627,GSM1510628,GSM1510629,GSM1510630,GSM1510631,GSM1510632,GSM1510633,GSM1510634,GSM1510635,GSM1510636,GSM1510637,GSM1510638,GSM1510639,GSM1510640,GSM1510641,GSM1510642,GSM1510643,GSM1510644,GSM1510645,GSM1510646,GSM1510647,GSM1510648,GSM1510649,GSM1510650,GSM1510651,GSM1510652,GSM1510653,GSM1510654,GSM1510655,GSM1510656,GSM1510657,GSM1510658,GSM1510659,GSM1510660,GSM1510661,GSM1510662,GSM1510663,GSM1510664,GSM1510665,GSM1510666,GSM1510667,GSM1510668,GSM1510669,GSM1510670,GSM1510671,GSM1510672,GSM1510673,GSM1510674,GSM1510675,GSM1510676,GSM1510677,GSM1510678,GSM1510679,GSM1510680,GSM1510681,GSM1510682,GSM1510683,GSM1510684,GSM1510685,GSM1510686,GSM1510687,GSM1510688,GSM1510689,GSM1510690,GSM1510691,GSM1510692,GSM1510693,GSM1510694,GSM1510695,GSM1510696,GSM1510697,GSM1510698,GSM1510699,GSM1510700,GSM1510701,GSM1510702,GSM1510703,GSM1510704,GSM1510705,GSM1510706,GSM1510707,GSM1510708,GSM1510709,GSM1510710,GSM1510711,GSM1510712,GSM1510713,GSM1510714,GSM1510715,GSM1510716,GSM1510717,GSM1510718,GSM1510719,GSM1510720,GSM1510721,GSM1510722,GSM1510723,GSM1510724,GSM1510725,GSM1510726,GSM1510727,GSM1510728,GSM1510729,GSM1510730,GSM1510731,GSM1510732,GSM1510733,GSM1510734,GSM1510735,GSM1510736,GSM1510737,GSM1510738,GSM1510739,GSM1510740,GSM1510741,GSM1510742,GSM1510743,GSM1510744,GSM1510745,GSM1510746,GSM1510747,GSM1510748,GSM1510749,GSM1510750,GSM1510751,GSM1510752,GSM1510753,GSM1510754,GSM1510755,GSM1510756,GSM1510757,GSM1510758,GSM1510759,GSM1510760,GSM1510761,GSM1510762,GSM1510763,GSM1510764,GSM1510765,GSM1510766,GSM1510767,GSM1510768,GSM1510769,GSM1510770,GSM1510771,GSM1510772,GSM1510773,GSM1510774,GSM1510775,GSM1510776,GSM1510777,GSM1510778,GSM1510779,GSM1510780,GSM1510781,GSM1510782,GSM1510783,GSM1510784,GSM1510785,GSM1510786,GSM1510787,GSM1510788,GSM1510789,GSM1510790,GSM1510791,GSM1510792,GSM1510793,GSM1510794,GSM1510795,GSM1510796,GSM1510797,GSM1510798,GSM1510799,GSM1510800,GSM1510801,GSM1510802,GSM1510803,GSM1510804,GSM1510805,GSM1510806,GSM1510807,GSM1510808,GSM1510809,GSM1510810,GSM1510811,GSM1510812,GSM1510813,GSM1510814,GSM1510815,GSM1510816,GSM1510817,GSM1510818,GSM1510819,GSM1510820,GSM1510821,GSM1510822,GSM1510823,GSM1510824,GSM1510825,GSM1510826,GSM1510827,GSM1510828,GSM1510829,GSM1510830,GSM1510831,GSM1510832,GSM1510833,GSM1510834,GSM1510835,GSM1510836,GSM1510837,GSM1510838,GSM1510839,GSM1510840,GSM1510841,GSM1510842,GSM1510843,GSM1510844,GSM1510845,GSM1510846,GSM1510847,GSM1510848,GSM1510849,GSM1510850,GSM1510851,GSM1510852,GSM1510853,GSM1510854,GSM1510855,GSM1510856,GSM1510857,GSM1510858,GSM1510859,GSM1510860,GSM1510861,GSM1510862,GSM1510863,GSM1510864,GSM1510865,GSM1510866,GSM1510867,GSM1510868,GSM1510869,GSM1510870,GSM1510871,GSM1510872,GSM1510873,GSM1510874,GSM1510875,GSM1510876,GSM1510877,GSM1510878,GSM1510879,GSM1510880,GSM1510881,GSM1510882,GSM1510883,GSM1510884,GSM1510885,GSM1510886,GSM1510887,GSM1510888,GSM1510889,GSM1510890,GSM1510891,GSM1510892,GSM1510893,GSM1510894,GSM1510895,GSM1510896,GSM1510897,GSM1510898,GSM1510899,GSM1510900,GSM1510901,GSM1510902,GSM1510903,GSM1510904,GSM1510905,GSM1510906,GSM1510907,GSM1510908,GSM1510909,GSM1510910,GSM1510911,GSM1510912,GSM1510913,GSM1510914,GSM1510915,GSM1510916,GSM1510917,GSM1510918,GSM1510919,GSM1510920,GSM1510921,GSM1510922,GSM1510923,GSM1510924,GSM1510925,GSM1510926,GSM1510927,GSM1510928,GSM1510929,GSM1510930,GSM1510931,GSM1510932,GSM1510933,GSM1510934,GSM1510935,GSM1510936,GSM1510937,GSM1510938,GSM1510939,GSM1510940,GSM1510941,GSM1510942,GSM1510943,GSM1510944,GSM1510945,GSM1510946,GSM1510947,GSM1510948,GSM1510949,GSM1510950,GSM1510951,GSM1510952,GSM1510953,GSM1510954,GSM1510955,GSM1510956,GSM1510957,GSM1510958,GSM1510959,GSM1510960,GSM1510961,GSM1510962,GSM1510963,GSM1510964,GSM1510965,GSM1510966,GSM1510967,GSM1510968,GSM1510969,GSM1510970,GSM1510971,GSM1510972,GSM1510973,GSM1510974,GSM1510975,GSM1510976,GSM1510977,GSM1510978,GSM1510979,GSM1510980,GSM1510981,GSM1510982,GSM1510983,GSM1510984,GSM1510985,GSM1510986,GSM1510987,GSM1510988,GSM1510989,GSM1510990,GSM1510991,GSM1510992,GSM1510993,GSM1510994,GSM1510995,GSM1510996,GSM1510997,GSM1510998,GSM1510999,GSM1511000,GSM1511001,GSM1511002,GSM1511003,GSM1511004,GSM1511005,GSM1511006,GSM1511007,GSM1511008,GSM1511009,GSM1511010,GSM1511011,GSM1511012,GSM1511013,GSM1511014,GSM1511015,GSM1511016,GSM1511017,GSM1511018,GSM1511019,GSM1511020,GSM1511021,GSM1511022,GSM1511023,GSM1511024,GSM1511025,GSM1511026,GSM1511027,GSM1511028,GSM1511029,GSM1511030,GSM1511031,GSM1511032,GSM1511033,GSM1511034,GSM1511035,GSM1511036,GSM1511037,GSM1511038,GSM1511039,GSM1511040,GSM1511041,GSM1511042,GSM1511043,GSM1511044,GSM1511045,GSM1511046,GSM1511047,GSM1511048,GSM1511049,GSM1511050,GSM1511051,GSM1511052,GSM1511053,GSM1511054,GSM1511055,GSM1511056,GSM1511057,GSM1511058,GSM1511059,GSM1511060,GSM1511061,GSM1511062,GSM1511063,GSM1511064,GSM1511065,GSM1511066,GSM1511067,GSM1511068,GSM1511069,GSM1511070,GSM1511071,GSM1511072,GSM1511073,GSM1511074,GSM1511075,GSM1511076,GSM1511077,GSM1511078,GSM1511079,GSM1511080,GSM1511081,GSM1511082,GSM1511083,GSM1511084,GSM1511085,GSM1511086,GSM1511087,GSM1511088,GSM1511089,GSM1511090,GSM1511091,GSM1511092,GSM1511093,GSM1511094,GSM1511095,GSM1511096,GSM1511097,GSM1511098,GSM1511099,GSM1511100,GSM1511101,GSM1511102,GSM1511103,GSM1511104,GSM1511105,GSM1511106 -Generalized_Anxiety_Disorder,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,0.0,0.0,,,,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,,1.0,,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,1.0,0.0,1.0,,,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,,,,,,1.0,0.0,1.0,1.0,0.0,,,0.0,0.0,1.0,,,0.0,1.0,1.0,,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,,0.0,1.0,1.0,,0.0,0.0,1.0,,,,1.0,0.0,0.0,,0.0,0.0,,0.0,1.0,0.0,,,1.0,0.0,1.0,,1.0,,0.0,,,1.0,1.0,0.0,,0.0,1.0,0.0,1.0,,,0.0,1.0,0.0,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,1.0,,,,0.0,1.0,,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,,,0.0,,,1.0,,,0.0,,1.0,0.0,1.0,,,0.0,0.0,0.0,0.0,1.0,,1.0,,,0.0,0.0,,,1.0,1.0,0.0,,1.0,,1.0,1.0,1.0,,1.0 +Generalized_Anxiety_Disorder,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,,,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,,1.0,,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,1.0,0.0,1.0,,,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,,,,,,1.0,0.0,1.0,1.0,0.0,,,0.0,0.0,1.0,,,0.0,1.0,1.0,,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,,0.0,1.0,1.0,,0.0,0.0,1.0,,,,1.0,0.0,0.0,,0.0,0.0,,0.0,1.0,0.0,,,1.0,0.0,1.0,,1.0,,0.0,,,1.0,1.0,0.0,,0.0,1.0,0.0,1.0,,,0.0,1.0,0.0,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,1.0,,,,0.0,1.0,,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,,,0.0,,,1.0,,,0.0,,1.0,0.0,1.0,,,0.0,0.0,0.0,0.0,1.0,,1.0,,,0.0,0.0,,,1.0,1.0,0.0,,1.0,,1.0,1.0,1.0,,1.0 Age,44.0,59.0,44.0,39.0,64.0,58.0,45.0,37.0,40.0,39.0,57.0,52.0,59.0,57.0,62.0,62.0,55.0,55.0,53.0,47.0,48.0,49.0,35.0,58.0,46.0,54.0,67.0,47.0,51.0,34.0,58.0,58.0,57.0,64.0,55.0,60.0,62.0,41.0,53.0,47.0,44.0,53.0,38.0,54.0,37.0,44.0,73.0,28.0,56.0,34.0,71.0,41.0,51.0,47.0,35.0,45.0,55.0,50.0,50.0,55.0,38.0,57.0,57.0,57.0,48.0,52.0,51.0,42.0,51.0,51.0,65.0,31.0,44.0,50.0,58.0,64.0,49.0,52.0,46.0,53.0,45.0,32.0,50.0,63.0,52.0,54.0,28.0,55.0,59.0,56.0,39.0,46.0,60.0,61.0,45.0,44.0,41.0,56.0,53.0,50.0,56.0,78.0,62.0,47.0,40.0,63.0,55.0,55.0,53.0,34.0,48.0,46.0,58.0,52.0,47.0,62.0,45.0,51.0,38.0,38.0,51.0,59.0,56.0,39.0,29.0,58.0,57.0,45.0,33.0,46.0,35.0,57.0,55.0,66.0,51.0,59.0,61.0,56.0,65.0,37.0,65.0,45.0,45.0,74.0,50.0,39.0,26.0,44.0,49.0,52.0,47.0,37.0,40.0,39.0,40.0,31.0,48.0,59.0,39.0,37.0,59.0,54.0,49.0,57.0,50.0,55.0,50.0,68.0,43.0,67.0,47.0,45.0,56.0,62.0,48.0,39.0,39.0,41.0,63.0,51.0,48.0,50.0,61.0,35.0,50.0,52.0,44.0,45.0,33.0,61.0,58.0,38.0,36.0,50.0,45.0,60.0,55.0,53.0,52.0,47.0,43.0,41.0,47.0,59.0,54.0,52.0,64.0,41.0,46.0,38.0,48.0,43.0,63.0,53.0,60.0,58.0,53.0,52.0,25.0,60.0,27.0,56.0,47.0,40.0,35.0,50.0,56.0,35.0,18.0,52.0,41.0,45.0,54.0,64.0,35.0,48.0,57.0,73.0,46.0,52.0,34.0,19.0,56.0,54.0,46.0,54.0,44.0,19.0,61.0,29.0,48.0,34.0,50.0,39.0,62.0,25.0,18.0,60.0,51.0,58.0,61.0,33.0,50.0,52.0,52.0,59.0,54.0,31.0,60.0,43.0,28.0,34.0,46.0,51.0,43.0,53.0,51.0,48.0,43.0,69.0,48.0,53.0,58.0,57.0,54.0,47.0,60.0,56.0,45.0,35.0,44.0,53.0,43.0,50.0,53.0,69.0,35.0,45.0,57.0,50.0,36.0,33.0,42.0,68.0,57.0,32.0,47.0,54.0,54.0,54.0,41.0,59.0,66.0,29.0,60.0,41.0,53.0,49.0,56.0,59.0,50.0,60.0,53.0,44.0,41.0,56.0,52.0,38.0,47.0,32.0,44.0,39.0,60.0,54.0,50.0,31.0,43.0,58.0,47.0,52.0,44.0,53.0,55.0,38.0,47.0,58.0,30.0,51.0,48.0,54.0,63.0,34.0,36.0,55.0,60.0,53.0,52.0,51.0,36.0,53.0,51.0,55.0,50.0,40.0,43.0,42.0,64.0,71.0,30.0,39.0,60.0,39.0,49.0,56.0,46.0,55.0,34.0,64.0,26.0,59.0,46.0,50.0,20.0,53.0,47.0,46.0,37.0,18.0,37.0,47.0,55.0,41.0,56.0,48.0,51.0,54.0,59.0,53.0,41.0,42.0,42.0,35.0,58.0,41.0,58.0,32.0,31.0,60.0,36.0,78.0,22.0,42.0,35.0,51.0,54.0,39.0,40.0,18.0,47.0,49.0,34.0,49.0,46.0,58.0,44.0,36.0,62.0,59.0,58.0,44.0,52.0,36.0,46.0,51.0,37.0,55.0,63.0,44.0,36.0,51.0,40.0,62.0,41.0,42.0,49.0,63.0,73.0,43.0,49.0,53.0,44.0,30.0,61.0,41.0,41.0,57.0,30.0,50.0,41.0,49.0,37.0,54.0,41.0,37.0,44.0,58.0,39.0,54.0,57.0,36.0,37.0,56.0,37.0,59.0,41.0,48.0,41.0,35.0,52.0,54.0,47.0,57.0,48.0,67.0,55.0,55.0,36.0,55.0,35.0,56.0,48.0,50.0,43.0,59.0,35.0,82.0,51.0,34.0,48.0,58.0,58.0,52.0,59.0,26.0,42.0,55.0,58.0,46.0,44.0,55.0,48.0,50.0,49.0,57.0,30.0,43.0,62.0,42.0,36.0,48.0,38.0,50.0,29.0,53.0,53.0,40.0,36.0,57.0,44.0,41.0,59.0,28.0,35.0,53.0,56.0,44.0,58.0,58.0,57.0,56.0,54.0,59.0,57.0,56.0,56.0,37.0 Gender,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/output/preprocess/Generalized_Anxiety_Disorder/code/GSE61672.py b/output/preprocess/Generalized_Anxiety_Disorder/code/GSE61672.py new file mode 100644 index 0000000000000000000000000000000000000000..598165fc78cd060141bd0bc5268a4eb0d128451c --- /dev/null +++ b/output/preprocess/Generalized_Anxiety_Disorder/code/GSE61672.py @@ -0,0 +1,199 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Generalized_Anxiety_Disorder" +cohort = "GSE61672" + +# Input paths +in_trait_dir = "../DATA/GEO/Generalized_Anxiety_Disorder" +in_cohort_dir = "../DATA/GEO/Generalized_Anxiety_Disorder/GSE61672" + +# Output paths +out_data_file = "./output/z3/preprocess/Generalized_Anxiety_Disorder/GSE61672.csv" +out_gene_data_file = "./output/z3/preprocess/Generalized_Anxiety_Disorder/gene_data/GSE61672.csv" +out_clinical_data_file = "./output/z3/preprocess/Generalized_Anxiety_Disorder/clinical_data/GSE61672.csv" +json_path = "./output/z3/preprocess/Generalized_Anxiety_Disorder/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +# 1) Gene expression availability +is_gene_available = True # Based on series title/summary: blood genome-wide gene expression + +# 2) Identify rows in the Sample Characteristics Dictionary +trait_row = 4 # contains 'anxiety case/control: case/control' and gad7 scores +age_row = 0 # contains 'age: ' +gender_row = 1 # contains 'Sex: F/M' + +# 2.2) Converters +def _after_colon(x): + if x is None: + return None + try: + parts = str(x).split(":", 1) + if len(parts) == 2: + return parts[0].strip().lower(), parts[1].strip() + else: + return "", str(x).strip() + except Exception: + return "", None + +def convert_trait(x): + key, val = _after_colon(x) + if val is None or val in {"", ".", "na", "n/a", "nan", "none", "unknown"}: + return None + vlow = val.strip().lower() + # Prefer explicit case/control if present + if "anxiety case/control" in key: + if vlow in {"case", "cases", "gad", "anxiety", "patient"}: + return 1 + if vlow in {"control", "controls", "healthy", "non-anxiety", "non anxiety", "no anxiety"}: + return 0 + return None + # If only GAD7 score is present in this row, infer binary using a common clinical threshold (>=10 -> likely GAD) + if "gad7" in key: + try: + score = float(vlow) + return 1 if score >= 10 else 0 + except Exception: + return None + return None + +def convert_age(x): + key, val = _after_colon(x) + if val is None: + return None + if "age" in key: + v = val.replace("years", "").replace("year", "").strip() + try: + return float(v) + except Exception: + return None + return None + +def convert_gender(x): + key, val = _after_colon(x) + if val is None: + return None + if "sex" in key or "gender" in key: + v = val.strip().lower() + if v in {"f", "female", "woman", "girl"}: + return 0 + if v in {"m", "male", "man", "boy"}: + return 1 + return None + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical Feature Extraction (only if clinical data available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + preview = preview_df(selected_clinical_df, n=5) + print("Preview of selected clinical features:", preview) + # Save clinical data + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# Illumina probe IDs (e.g., ILMN_1343291) are not human gene symbols and require mapping. +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Identify appropriate columns for mapping +# Probe IDs in expression data are 'ILMN_...' and match the 'ID' column in annotation. +# Gene symbols are stored in the 'Symbol' column. +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='Symbol') + +# Apply mapping to convert probe-level data to gene-level expression +probe_data = gene_data # from previous step +gene_data = apply_gene_mapping(expression_df=probe_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +# 1. Normalize gene symbols and save gene expression data +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +# Load clinical data from saved file to ensure availability +selected_clinical_df = pd.read_csv(out_clinical_data_file, index_col=0) +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Assess bias and remove biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +is_gene_available_flag = (normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0) +is_trait_available_flag = (trait in linked_data.columns) and (not linked_data[trait].isna().all()) + +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available_flag, + is_trait_available=is_trait_available_flag, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: Illumina probe IDs mapped to gene symbols; trait from case/control with GAD7>=10 fallback." +) + +# 6. Save linked dataset if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Generalized_Anxiety_Disorder/code/TCGA.py b/output/preprocess/Generalized_Anxiety_Disorder/code/TCGA.py new file mode 100644 index 0000000000000000000000000000000000000000..7c87ce9cdf1f29045eeff9cd58f32fbda360c2da --- /dev/null +++ b/output/preprocess/Generalized_Anxiety_Disorder/code/TCGA.py @@ -0,0 +1,14 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Generalized_Anxiety_Disorder" + +# Input paths +tcga_root_dir = "../DATA/TCGA" + +# Output paths +out_data_file = "./output/z3/preprocess/Generalized_Anxiety_Disorder/TCGA.csv" +out_gene_data_file = "./output/z3/preprocess/Generalized_Anxiety_Disorder/gene_data/TCGA.csv" +out_clinical_data_file = "./output/z3/preprocess/Generalized_Anxiety_Disorder/clinical_data/TCGA.csv" +json_path = "./output/z3/preprocess/Generalized_Anxiety_Disorder/cohort_info.json" diff --git a/output/preprocess/Generalized_Anxiety_Disorder/cohort_info.json b/output/preprocess/Generalized_Anxiety_Disorder/cohort_info.json index b2f2cee682dfad4bc7a216fae793cfe73516652e..536562e42c5efc3f1c43228be4645473682def6b 100644 --- a/output/preprocess/Generalized_Anxiety_Disorder/cohort_info.json +++ b/output/preprocess/Generalized_Anxiety_Disorder/cohort_info.json @@ -1,22 +1 @@ -{ - "GSE61672": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": false, - "sample_size": 141 - }, - "TCGA": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 1218 - } -} \ No newline at end of file +{"GSE61672": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": true, "has_gender": true, "sample_size": 467, "note": "INFO: Illumina probe IDs mapped to gene symbols; trait from case/control with GAD7>=10 fallback."}} \ No newline at end of file diff --git a/output/preprocess/Glioblastoma/clinical_data/GSE134470.csv b/output/preprocess/Glioblastoma/clinical_data/GSE134470.csv index 23a6144cd6e00f4e786aa4328accb060eb02a62e..492d22181546c1ce6a8b7580f33c6122ea45d8be 100644 --- a/output/preprocess/Glioblastoma/clinical_data/GSE134470.csv +++ b/output/preprocess/Glioblastoma/clinical_data/GSE134470.csv @@ -1,2 +1,2 @@ ,GSM3949211,GSM3949212,GSM3949213,GSM3949214,GSM3949215,GSM3949216,GSM3949217,GSM3949218,GSM3949219,GSM3949220,GSM3949221,GSM3949222,GSM3949223,GSM3949224,GSM3949225,GSM3949226,GSM3949227,GSM3949228,GSM3949229,GSM3949230,GSM3949231,GSM3949232,GSM3949233,GSM3949234,GSM3949235,GSM3949236,GSM3949237,GSM3949238,GSM3949239,GSM3949240,GSM3949241,GSM3949242,GSM3949243,GSM3949244,GSM3949245,GSM3949246,GSM3949247,GSM3949248,GSM3949249,GSM3949250,GSM3949251,GSM3949252,GSM3949253,GSM3949254,GSM3949255,GSM3949256,GSM3949257,GSM3949258,GSM3949259,GSM3949260,GSM3949261,GSM3949262,GSM3949263,GSM3949264,GSM3949265,GSM3949266,GSM3949267,GSM3949268 -Glioblastoma,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +Glioblastoma,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 diff --git a/output/preprocess/Glioblastoma/clinical_data/GSE39144.csv b/output/preprocess/Glioblastoma/clinical_data/GSE39144.csv index 1cf59eec23da511c54eacb85d3dcc7f576ffcaee..2eabd6fb5e2e46f7bbbc6f4d65ac43cade290110 100644 --- a/output/preprocess/Glioblastoma/clinical_data/GSE39144.csv +++ b/output/preprocess/Glioblastoma/clinical_data/GSE39144.csv @@ -1,78 +1,3 @@ -,Glioblastoma -GSM956840,0 -GSM956841,0 -GSM956842,0 -GSM956843,0 -GSM956844,0 -GSM956845,0 -GSM956846,0 -GSM956847,0 -GSM956848,0 -GSM956849,0 -GSM956850,0 -GSM956851,0 -GSM956852,0 -GSM956853,0 -GSM956854,0 -GSM956855,0 -GSM956856,0 -GSM956857,0 -GSM956858,0 -GSM956859,0 -GSM956860,0 -GSM956861,0 -GSM956862,0 -GSM956863,0 -GSM956864,0 -GSM956865,0 -GSM956866,0 -GSM956867,0 -GSM956868,0 -GSM956869,0 -GSM956870,0 -GSM956871,0 -GSM956872,0 -GSM956873,0 -GSM956874,0 -GSM956875,0 -GSM956876,0 -GSM956877,0 -GSM956878,0 -GSM956879,0 -GSM956880,0 -GSM956881,0 -GSM956882,0 -GSM956883,0 -GSM956884,0 -GSM956885,0 -GSM956886,0 -GSM956887,0 -GSM956888,0 -GSM956889,0 -GSM956890,0 -GSM956891,0 -GSM956892,0 -GSM956893,0 -GSM956894,0 -GSM956895,0 -GSM956896,0 -GSM956897,0 -GSM956898,0 -GSM956899,0 -GSM956900,0 -GSM956901,0 -GSM956902,0 -GSM956903,0 -GSM956904,0 -GSM956905,0 -GSM956906,0 -GSM956907,0 -GSM956908,0 -GSM956909,0 -GSM956910,0 -GSM956911,0 -GSM956912,0 -GSM956913,0 -GSM956914,0 -GSM956915,0 -GSM956916,0 +,GSM956840,GSM956841,GSM956842,GSM956843,GSM956844,GSM956845,GSM956846,GSM956847,GSM956848,GSM956849,GSM956850,GSM956851,GSM956852,GSM956853,GSM956854,GSM956855,GSM956856,GSM956857,GSM956858,GSM956859,GSM956860,GSM956861,GSM956862,GSM956863,GSM956864,GSM956865,GSM956866,GSM956867,GSM956868,GSM956869,GSM956870,GSM956871,GSM956872,GSM956873,GSM956874,GSM956875,GSM956876,GSM956877,GSM956878,GSM956879,GSM956880,GSM956881,GSM956882,GSM956883,GSM956884,GSM956885,GSM956886,GSM956887,GSM956888,GSM956889,GSM956890,GSM956891,GSM956892,GSM956893,GSM956894,GSM956895,GSM956896,GSM956897,GSM956898,GSM956899,GSM956900,GSM956901,GSM956902,GSM956903,GSM956904,GSM956905,GSM956906,GSM956907,GSM956908,GSM956909,GSM956910,GSM956911,GSM956912,GSM956913,GSM956914,GSM956915,GSM956916 +Glioblastoma,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Gender,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,,,,,,,,,,1.0,,,,,,,1.0,,,,0.0 diff --git a/output/preprocess/Glioblastoma/code/GSE129978.py b/output/preprocess/Glioblastoma/code/GSE129978.py new file mode 100644 index 0000000000000000000000000000000000000000..68c73d4451d2742e35d1e73af025397ce582b227 --- /dev/null +++ b/output/preprocess/Glioblastoma/code/GSE129978.py @@ -0,0 +1,116 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Glioblastoma" +cohort = "GSE129978" + +# Input paths +in_trait_dir = "../DATA/GEO/Glioblastoma" +in_cohort_dir = "../DATA/GEO/Glioblastoma/GSE129978" + +# Output paths +out_data_file = "./output/z3/preprocess/Glioblastoma/GSE129978.csv" +out_gene_data_file = "./output/z3/preprocess/Glioblastoma/gene_data/GSE129978.csv" +out_clinical_data_file = "./output/z3/preprocess/Glioblastoma/clinical_data/GSE129978.csv" +json_path = "./output/z3/preprocess/Glioblastoma/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import re + +# 1) Gene expression availability +# Background indicates "gene expression analysis"; this is likely gene expression (not miRNA-only or methylation-only). +is_gene_available = True + +# 2) Variable availability and converters +# From the sample characteristics, there is no explicit human disease status, age, or gender. +# The samples are glioblastoma cell lines (no variation in trait), hence not usable for association. +trait_row = None +age_row = None +gender_row = None + +def _parse_after_colon(x): + if x is None: + return None + if isinstance(x, str) and ':' in x: + return x.split(':', 1)[1].strip() + return x + +def convert_trait(x): + # Not used because trait_row is None; kept for interface completeness. + v = _parse_after_colon(x) + if v is None: + return None + # Heuristic: map known GBM indicators to 1; others to None. This would be constant (not useful) in this dataset. + v_low = str(v).lower() + gbm_markers = ['glioblastoma', 'gbm', 'u-87mg', 'u87', 'u-87', 'cas-1', 'cas1'] + if any(tok in v_low for tok in gbm_markers): + return 1 + return None + +def convert_age(x): + # Not available; generic numeric extractor in case of future use + v = _parse_after_colon(x) + if v is None: + return None + m = re.search(r'(\d+(\.\d+)?)', str(v)) + return float(m.group(1)) if m else None + +def convert_gender(x): + # Not available; generic M/F mapper + v = _parse_after_colon(x) + if v is None: + return None + v_low = str(v).lower() + if 'female' in v_low or v_low == 'f': + return 0 + if 'male' in v_low or v_low == 'm': + return 1 + return None + +# 3) Save metadata (initial filtering) +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4) Clinical feature extraction (skip because trait_row is None) +# If trait_row were available: +if trait_row is not None: + selected = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait, + age_row=age_row, + convert_age=convert_age, + gender_row=gender_row, + convert_gender=convert_gender + ) + _ = preview_df(selected) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected.to_csv(out_clinical_data_file, index=True) \ No newline at end of file diff --git a/output/preprocess/Glioblastoma/code/GSE134470.py b/output/preprocess/Glioblastoma/code/GSE134470.py new file mode 100644 index 0000000000000000000000000000000000000000..d4646f0d40dd1dc29e2cfd65c58796cd09c6bd2f --- /dev/null +++ b/output/preprocess/Glioblastoma/code/GSE134470.py @@ -0,0 +1,185 @@ +# Path Configuration +from tools.preprocess import * + +# Processing context +trait = "Glioblastoma" +cohort = "GSE134470" + +# Input paths +in_trait_dir = "../DATA/GEO/Glioblastoma" +in_cohort_dir = "../DATA/GEO/Glioblastoma/GSE134470" + +# Output paths +out_data_file = "./output/z3/preprocess/Glioblastoma/GSE134470.csv" +out_gene_data_file = "./output/z3/preprocess/Glioblastoma/gene_data/GSE134470.csv" +out_clinical_data_file = "./output/z3/preprocess/Glioblastoma/clinical_data/GSE134470.csv" +json_path = "./output/z3/preprocess/Glioblastoma/cohort_info.json" + + +# Step 1: Initial Data Loading +from tools.preprocess import * +# 1. Identify the paths to the SOFT file and the matrix file +soft_file, matrix_file = geo_get_relevant_filepaths(in_cohort_dir) + +# 2. Read the matrix file to obtain background information and sample characteristics data +background_prefixes = ['!Series_title', '!Series_summary', '!Series_overall_design'] +clinical_prefixes = ['!Sample_geo_accession', '!Sample_characteristics_ch1'] +background_info, clinical_data = get_background_and_clinical_data(matrix_file, background_prefixes, clinical_prefixes) + +# 3. Obtain the sample characteristics dictionary from the clinical dataframe +sample_characteristics_dict = get_unique_values_by_row(clinical_data) + +# 4. Explicitly print out all the background information and the sample characteristics dictionary +print("Background Information:") +print(background_info) +print("Sample Characteristics Dictionary:") +print(sample_characteristics_dict) + +# Step 2: Dataset Analysis and Clinical Feature Extraction +import os +import re + +# 1. Gene expression data availability +is_gene_available = True # Human Gene 1.0 ST microarray => gene expression data present. + +# 2. Variable availability and conversion functions + +# Based on the provided Sample Characteristics Dictionary, trait information can be inferred from key 1 +trait_row = 1 +age_row = None +gender_row = None + +def _after_colon(x): + if x is None: + return None + s = str(x) + if ':' in s: + return s.split(':', 1)[1].strip() + return s.strip() + +def convert_trait(x): + v = _after_colon(x) + if v is None or v == '': + return None + vl = v.lower() + # Positive indicators for GBM/tumor-related samples + positive_keywords = ['gbm', 'glioblastoma', 'tumor', 'xenograft', 'pdox'] + # Negative indicators for controls + negative_keywords = ['control', 'normal'] + if any(k in vl for k in positive_keywords): + return 1 + if any(k in vl for k in negative_keywords): + return 0 + return None + +def convert_age(x): + v = _after_colon(x) + if v is None or v == '': + return None + # Extract first numeric value as age + m = re.search(r'(\d+\.?\d*)', str(v)) + if not m: + return None + try: + age_val = float(m.group(1)) + if 0 < age_val < 120: + return age_val + except Exception: + pass + return None + +def convert_gender(x): + v = _after_colon(x) + if v is None or v == '': + return None + vl = v.strip().lower() + if vl in ['male', 'm']: + return 1 + if vl in ['female', 'f']: + return 0 + return None + +# 3. Save initial metadata +is_trait_available = trait_row is not None +_ = validate_and_save_cohort_info( + is_final=False, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available +) + +# 4. Clinical Feature Extraction (only if trait_row is available) +if trait_row is not None: + selected_clinical_df = geo_select_clinical_features( + clinical_df=clinical_data, + trait=trait, + trait_row=trait_row, + convert_trait=convert_trait + ) + clinical_preview = preview_df(selected_clinical_df) + os.makedirs(os.path.dirname(out_clinical_data_file), exist_ok=True) + selected_clinical_df.to_csv(out_clinical_data_file) + +# Step 3: Gene Data Extraction +# 1. Use the get_genetic_data function from the library to get the gene_data from the matrix_file previously defined. +gene_data = get_genetic_data(matrix_file) + +# 2. Print the first 20 row IDs (gene or probe identifiers) for future observation. +print(gene_data.index[:20]) + +# Step 4: Gene Identifier Review +# The identifiers are numeric probe IDs, not human gene symbols. +requires_gene_mapping = True +print(f"requires_gene_mapping = {requires_gene_mapping}") + +# Step 5: Gene Annotation +# 1. Use the 'get_gene_annotation' function from the library to get gene annotation data from the SOFT file. +gene_annotation = get_gene_annotation(soft_file) + +# 2. Use the 'preview_df' function from the library to preview the data and print out the results. +print("Gene annotation preview:") +print(preview_df(gene_annotation)) + +# Step 6: Gene Identifier Mapping +# Determine appropriate columns: probe IDs are in 'ID', gene symbols embedded in 'gene_assignment' +mapping_df = get_gene_mapping(gene_annotation, prob_col='ID', gene_col='gene_assignment') + +# Apply mapping to convert probe-level data to gene-level expression +gene_data = apply_gene_mapping(expression_df=gene_data, mapping_df=mapping_df) + +# Step 7: Data Normalization and Linking +import os + +# 1. Normalize gene symbols and save +normalized_gene_data = normalize_gene_symbols_in_index(gene_data) +os.makedirs(os.path.dirname(out_gene_data_file), exist_ok=True) +normalized_gene_data.to_csv(out_gene_data_file) + +# 2. Link clinical and genetic data +linked_data = geo_link_clinical_genetic_data(selected_clinical_df, normalized_gene_data) + +# 3. Handle missing values +linked_data = handle_missing_values(linked_data, trait) + +# 4. Bias assessment and removal of biased demographic features +is_trait_biased, unbiased_linked_data = judge_and_remove_biased_features(linked_data, trait) + +# 5. Final validation and save cohort info +is_trait_available = (trait in linked_data.columns) and (len(linked_data) > 0) +is_gene_available = (normalized_gene_data.shape[0] > 0) and (normalized_gene_data.shape[1] > 0) +is_usable = validate_and_save_cohort_info( + is_final=True, + cohort=cohort, + info_path=json_path, + is_gene_available=is_gene_available, + is_trait_available=is_trait_available, + is_biased=is_trait_biased, + df=unbiased_linked_data, + note="INFO: Gene mapping applied from probe IDs using gene_assignment; symbols normalized via NCBI synonym table." +) + +# 6. Save linked data if usable +if is_usable: + os.makedirs(os.path.dirname(out_data_file), exist_ok=True) + unbiased_linked_data.to_csv(out_data_file) \ No newline at end of file diff --git a/output/preprocess/Glioblastoma/cohort_info.json b/output/preprocess/Glioblastoma/cohort_info.json index a582ff7c80583ecc04cfbea7a7a4cef752a4a079..845cc555128c9cef541dcfe406218179a56f4e06 100644 --- a/output/preprocess/Glioblastoma/cohort_info.json +++ b/output/preprocess/Glioblastoma/cohort_info.json @@ -1,112 +1 @@ -{ - "GSE39144": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 77 - }, - "GSE279426": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 33 - }, - "GSE249289": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": true, - "has_gender": true, - "sample_size": 47 - }, - "GSE226976": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 47 - }, - "GSE178236": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": true, - "has_gender": true, - "sample_size": 113 - }, - "GSE175700": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 36 - }, - "GSE159000": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": true, - "has_gender": true, - "sample_size": 34 - }, - "GSE148949": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 54 - }, - "GSE134470": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 58 - }, - "GSE129978": { - "is_usable": false, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": true, - "has_age": false, - "has_gender": false, - "sample_size": 76 - }, - "TCGA": { - "is_usable": true, - "is_gene_available": true, - "is_trait_available": true, - "is_available": true, - "is_biased": false, - "has_age": true, - "has_gender": true, - "sample_size": 702 - } -} \ No newline at end of file +{"GSE39144": {"is_usable": false, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": true, "has_age": false, "has_gender": true, "sample_size": 77, "note": "INFO: Age not available; gender partially missing/pooled; trait inferred from cell type keywords."}, "GSE279426": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE249289": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE226976": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": "INFO: Trait not available in sample characteristics; saved normalized gene expression only."}, "GSE178236": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE175700": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE159000": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": "INFO: Trait not available; clinical linking skipped."}, "GSE148949": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "GSE134470": {"is_usable": false, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": true, "has_age": false, "has_gender": false, "sample_size": 58, "note": "INFO: Gene mapping applied from probe IDs using gene_assignment; symbols normalized via NCBI synonym table."}, "GSE129978": {"is_usable": false, "is_gene_available": true, "is_trait_available": false, "is_available": false, "is_biased": null, "has_age": null, "has_gender": null, "sample_size": null, "note": null}, "TCGA_lower_grade_glioma_and_glioblastoma_(GBMLGG)": {"is_usable": true, "is_gene_available": true, "is_trait_available": true, "is_available": true, "is_biased": false, "has_age": true, "has_gender": true, "sample_size": 172, "note": "INFO: Cohort=TCGA_lower_grade_glioma_and_glioblastoma_(GBMLGG); age_col=age_at_initial_pathologic_diagnosis; gender_col=gender; linked_samples=172; final_samples=172; covariates=['Age', 'Gender']; final_gene_count=19848."}} \ No newline at end of file